diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a29cf7d360..ed94643dbe 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -24,8 +24,14 @@ /tools/docker/ @Fira /Dockerfile @Fira +# Nanu + +/maps @Nanu308 + # Zonespace +/code/datums/tutorial/ @Zonespace27 /code/modules/admin/verbs/SDQL2/ @Zonespace27 +/maps/tutorial/ @Zonespace27 # MULTIPLE OWNERS diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index c66b16031c..cfe94738ee 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -159,6 +159,10 @@ There is no strict process when it comes to merging pull requests. Pull requests * After leaving reviews on an open pull request, maintainers should convert it to a draft. Once you have addressed all their comments to the best of your ability, feel free to mark the pull as `Ready for Review` again. +* We ask that you refrain from pinging staff about getting your pull request reviewed until after it is automatically marked stale pending review. If it ends up stale exempt, give it a week, but usually this situation will be explained such as when a relevant maintainer is currently unavailable. + +* Whenever sprites are added, please include screenshots or video(s) of them in game in the pull request description. + ### A note on balance impacting PRs Certain PRs, such as those which directly change number values (i.e. health, recoil, damage) or add large pieces of content to the game (i.e. a new gun, a new dropship weapon, or a new xeno structure) can have the potential to highly impact game balance or gameflow. @@ -174,7 +178,7 @@ If you are porting features/tools from other codebases, you must give them credi Regarding sprites & sounds, you must credit the artist and possibly the codebase. ## Things you can work on -The following list is non-exhaustive, but should give you a good idea of what the dev team would like to see in Pull Requests. +The following list is non-exhaustive, but should give you a good idea of what we would like to see in Pull Requests. ### Spriting @@ -199,7 +203,7 @@ The following list is non-exhaustive, but should give you a good idea of what th - Bug fixes and inconsistency fixes **A note on new maps.** -Entirely new maps are generally considered to be stepping stones into the Development team’s mapping dept. proper. However, making a new map is a months long process that requires dedication and constant communication and oversight from mappers on the Maintainer team. Mapping, like spriting and coding is an acquired skill, and it is highly likely your first map is going to suck. Maps are fluid entities that are never absolutely complete, don’t wed yourself to your initial layout, always be prepared to remap half the project when going in. +Entirely new maps are generally considered to be stepping stones into the maintainers’ mapping dept. proper. However, making a new map is a months long process that requires dedication and constant communication and oversight from mappers on the Maintainer team. Mapping, like spriting and coding is an acquired skill, and it is highly likely your first map is going to suck. Maps are fluid entities that are never absolutely complete, don’t wed yourself to your initial layout, always be prepared to remap half the project when going in. ### Coding @@ -216,7 +220,7 @@ Entirely new maps are generally considered to be stepping stones into the Develo - New TGUI ## What we don't want -The following list is non-exhaustive, but should give you a good idea of what the dev team don't want to see in Pull Requests. +The following list is non-exhaustive, but should give you a good idea of what we don't want to see in Pull Requests. ### Spriting - Resprites of recently updated content, such as uniforms, guns, marine armor @@ -236,7 +240,10 @@ The following list is non-exhaustive, but should give you a good idea of what th - Player-facing HTML UIs - Prior denied content/PRs (without approval) -Remember that the following lists are not exhaustive. And you can freely contribute an PR with content that can be shuffled into the “What we don’t want” category, and still get it merged. It is just unlikely without prior talk/approval from a maintainer. +### Frozen +- See pinned [issues](https://github.com/cmss13-devs/cmss13/issues) for anything that requires explicit permission. + +Remember that the list is not exhaustive. And you can freely contribute an PR with content that can be shuffled into the “What we don’t want” category, and still get it merged. It is just unlikely without prior talk/approval from a maintainer. ## Banned content Do not add any of the following in a Pull Request or risk getting the PR closed: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index cb17900537..14cf600105 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -16,6 +16,9 @@ Remember: something that is self-evident to you might not be to others. Explain # Testing Photographs and Procedure + + +
Screenshots & Videos diff --git a/.github/add_labels.py b/.github/add_labels.py index 3e903c362d..764f90df0c 100644 --- a/.github/add_labels.py +++ b/.github/add_labels.py @@ -1,19 +1,19 @@ import os, re -from github import Github +from github import Github, GithubException # Format - Key: Array[Label, [StringsToIgnore]] changelogToPrefix = { - 'fix': ["Fix", ["fixed a few things"]], - 'qol': ["Quality of Life", ["made something easier to use"]], - 'add': ["Feature", ["Added new mechanics or gameplay changes", "Added more things"]], - 'del': ["Removal", ["Removed old things"]], - 'spellcheck': ["Grammar and Formatting", ["fixed a few typos"]], - 'balance': ["Balance", ["rebalanced something"]], - 'code': ["Code Improvement", ["changed some code"]], - 'refactor': ["Refactor", ["refactored some code"]], - 'config': ["Config", ["changed some config setting"]], - 'admin': ["Admin", ["messed with admin stuff"]], - 'server': ["Server", ["something server ops should know"]], + 'fix': ["Fix", ["fixed a few things"]], + 'qol': ["Quality of Life", ["made something easier to use"]], + 'add': ["Feature", ["Added new mechanics or gameplay changes", "Added more things"]], + 'del': ["Removal", ["Removed old things"]], + 'spellcheck': ["Grammar and Formatting", ["fixed a few typos"]], + 'balance': ["Balance", ["rebalanced something"]], + 'code': ["Code Improvement", ["changed some code"]], + 'refactor': ["Refactor", ["refactored some code"]], + 'config': ["Config", ["changed some config setting"]], + 'admin': ["Admin", ["messed with admin stuff"]], + 'server': ["Server", ["something server ops should know"]], 'soundadd': ["Sound", ["added a new sound thingy"]], 'sounddel': ["Sound", ["removed an old sound thingy"]], 'imageadd': ["Sprites", ["added some icons and images"]], @@ -24,78 +24,96 @@ } fileToPrefix = { - 'wav': 'Sound', - 'ogg': 'Sound', + 'wav': 'Sound', + 'ogg': 'Sound', 'mp3': 'Sound', ## Can't believe they forgot about the best sound format - 'dmm': 'Mapping', + 'dmm': 'Mapping', - 'js': 'UI', - 'tsx': 'UI', - 'ts': 'UI', - 'jsx': 'UI', - 'scss': 'UI', + 'js': 'UI', + 'tsx': 'UI', + 'ts': 'UI', + 'jsx': 'UI', + 'scss': 'UI', - 'dmi': "Sprites", + 'dmi': "Sprites", } githubLabel = "Github" +missingLogLabel = "Missing Changelog" def get_labels(pr): - labels = {} - - files = pr.get_files() - for file in files: - prefix = file.filename.split(".")[-1] - if file.filename.startswith(".github"): - labels[githubLabel] = True - if not prefix in fileToPrefix: - continue - labels[fileToPrefix[prefix]] = True - - changelog_match = re.search(r"🆑(.*)/🆑", pr.body, re.S | re.M) - if changelog_match is None: - changelog_match = re.search(r":cl:(.*)/:cl:", pr.body, re.S | re.M) - if changelog_match is None: - return labels - lines = changelog_match.group(1).split('\n') - for line in lines: - line = line.strip() - if not line: - continue - - contentSplit = line.split(":") - - key = contentSplit.pop(0).strip() - content = ":".join(contentSplit).strip() - - if not key in changelogToPrefix: - continue - - if content in changelogToPrefix[key][1]: - continue - - labels[changelogToPrefix[key][0]] = True - - return list(labels) + labels = {} + failed = False + + files = pr.get_files() + for file in files: + prefix = file.filename.split(".")[-1] + if file.filename.startswith(".github"): + labels[githubLabel] = True + if not prefix in fileToPrefix: + continue + labels[fileToPrefix[prefix]] = True + + changelog_match = re.search(r"🆑(.*)/🆑", pr.body, re.S | re.M) + if changelog_match is None: + changelog_match = re.search(r":cl:(.*)/:cl:", pr.body, re.S | re.M) + if changelog_match is None: + print("::warning ::No changelog detected.") + labels[missingLogLabel] = True + return labels, False + + lines = changelog_match.group(1).split('\n') + failed = len(lines) <= 2 # Make sure its not an empty changelog + if failed: + print("::error ::Empty changelog.") + + for line in lines[1:-1]: # Skip first line with authors and last + line = line.strip() + if not line: + continue + + contentSplit = line.split(":") + + key = contentSplit.pop(0).strip() + content = ":".join(contentSplit).strip() + + if not key in changelogToPrefix: # Some key that we didn't expect + print(f"::error ::Invalid changelog entry: {line}") + failed = True + continue + + if content in changelogToPrefix[key][1]: # They left the template entry in + print(f"::error ::Invalid changelog entry: {line}") + failed = True + continue + + labels[changelogToPrefix[key][0]] = True + + return list(labels), failed def main(): - g = Github(os.environ["TOKEN"]) - repo = g.get_repo(os.environ['REPO']) + g = Github(os.environ["TOKEN"]) + repo = g.get_repo(os.environ['REPO']) - pr = repo.get_pull(int(os.environ["PR_NUMBER"])) - if not pr: - print("Not a PR.") - return + pr = repo.get_pull(int(os.environ["PR_NUMBER"])) + if not pr: + print("::warning ::Not a PR.") + return - labels = get_labels(pr) + labels, failed = get_labels(pr) - if labels is None: # no labels to add - print("No labels to add.") - return + if not missingLogLabel in labels: + try: + pr.remove_from_labels(missingLogLabel) + except GithubException as e: + if e.status == 404: + pass # 404 if we try to remove a label that isn't set - for label in labels: - pr.add_to_labels(label) + for label in labels: + pr.add_to_labels(label) + if failed: + exit(1) if __name__ == '__main__': - main() + main() diff --git a/.github/assets/discord-dark.png b/.github/assets/discord-dark.png new file mode 100644 index 0000000000..cd5fc2aadb Binary files /dev/null and b/.github/assets/discord-dark.png differ diff --git a/.github/assets/discord-light.png b/.github/assets/discord-light.png new file mode 100644 index 0000000000..2094d01a47 Binary files /dev/null and b/.github/assets/discord-light.png differ diff --git a/.github/assets/docs-dark.png b/.github/assets/docs-dark.png new file mode 100644 index 0000000000..8efc14d0ba Binary files /dev/null and b/.github/assets/docs-dark.png differ diff --git a/.github/assets/docs-light.png b/.github/assets/docs-light.png new file mode 100644 index 0000000000..25ad91545a Binary files /dev/null and b/.github/assets/docs-light.png differ diff --git a/.github/assets/logo.png b/.github/assets/logo.png new file mode 100644 index 0000000000..78036c2601 Binary files /dev/null and b/.github/assets/logo.png differ diff --git a/.github/assets/website-dark.png b/.github/assets/website-dark.png new file mode 100644 index 0000000000..c80cd0e90f Binary files /dev/null and b/.github/assets/website-dark.png differ diff --git a/.github/assets/website-light.png b/.github/assets/website-light.png new file mode 100644 index 0000000000..96dee1b838 Binary files /dev/null and b/.github/assets/website-light.png differ diff --git a/.github/assets/wiki-dark.png b/.github/assets/wiki-dark.png new file mode 100644 index 0000000000..a1438c4d1b Binary files /dev/null and b/.github/assets/wiki-dark.png differ diff --git a/.github/assets/wiki-light.png b/.github/assets/wiki-light.png new file mode 100644 index 0000000000..89e6972fd6 Binary files /dev/null and b/.github/assets/wiki-light.png differ diff --git a/.github/guides/AUTODOC.md b/.github/guides/AUTODOC.md index dd2f30627b..90e5b2d1ac 100644 --- a/.github/guides/AUTODOC.md +++ b/.github/guides/AUTODOC.md @@ -1,9 +1,9 @@ # dmdoc -[DOCUMENTATION]: **PUT DOCUMENTATION LINK HERE** +[DOCUMENTATION]: https://docs.cm-ss13.com/ [BYOND]: https://secure.byond.com/ -[DMDOC]: https://github.com/SpaceManiac/SpacemanDMM/tree/master/src/dmdoc +[DMDOC]: https://github.com/SpaceManiac/SpacemanDMM/tree/master/crates/dmdoc [DMDOC] is a documentation generator for DreamMaker, the scripting language of the [BYOND] game engine. It produces simple static HTML files based on @@ -13,9 +13,9 @@ We use **dmdoc** to generate [DOCUMENTATION] for our code, and that documentatio is automatically generated and built on every new commit to the master branch This gives new developers a clickable reference [DOCUMENTATION] they can browse to better help -gain understanding of the /tg/station codebase structure and api reference. +gain understanding of the CM-SS13 codebase structure and api reference. -## Documenting code on /tg/station +## Documenting code on CM-SS13 We use block comments to document procs and classes, and we use `///` line comments when documenting individual variables. diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 8a688f207f..fb924fe250 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -1,7 +1,7 @@ -name: Labeling +name: Labeling and Verification on: pull_request_target: - types: [opened] + types: [opened, reopened, synchronize, edited] jobs: label: runs-on: ubuntu-latest @@ -13,7 +13,7 @@ jobs: run: | unset SECRET_EXISTS if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi - echo "::set-output name=ACTIONS_ENABLED::$SECRET_EXISTS" + echo "ACTIONS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT - name: Get The Script if: steps.value_holder.outputs.ACTIONS_ENABLED run: | @@ -29,7 +29,7 @@ jobs: python -m pip install --upgrade pip python -m pip install pygithub sudo apt-get install dos2unix - - name: Add Labels + - name: Add and verify labels if: steps.value_holder.outputs.ACTIONS_ENABLED run: | python add_labels.py diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 8d7b413384..e2390c9fe8 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -89,6 +89,19 @@ ], "group": "build", "label": "tgui: sonar" + }, + { + "type": "shell", + "command": "bin/tgfont", + "windows": { + "command": ".\\bin\\tgfont.cmd" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: rebuild tgfont" } ] } diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 6b3d081017..0000000000 --- a/LICENSE +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - ColonialMarines - Copyright (C) 2020 CM Devs - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/LICENSE-AGPL3 b/LICENSE-AGPLv3.txt similarity index 100% rename from LICENSE-AGPL3 rename to LICENSE-AGPLv3.txt diff --git a/LICENSE-CC-BY-NC-SA-3.0.txt b/LICENSE-CC-BY-NC-SA-3.0.txt new file mode 100644 index 0000000000..a50eacf98c --- /dev/null +++ b/LICENSE-CC-BY-NC-SA-3.0.txt @@ -0,0 +1,360 @@ +Creative Commons Legal Code + +Attribution-NonCommercial-ShareAlike 3.0 Unported + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR + DAMAGES RESULTING FROM ITS USE. + +License + +THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE +COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY +COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS +AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE +TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY +BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS +CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND +CONDITIONS. + +1. Definitions + + a. "Adaptation" means a work based upon the Work, or upon the Work and + other pre-existing works, such as a translation, adaptation, + derivative work, arrangement of music or other alterations of a + literary or artistic work, or phonogram or performance and includes + cinematographic adaptations or any other form in which the Work may be + recast, transformed, or adapted including in any form recognizably + derived from the original, except that a work that constitutes a + Collection will not be considered an Adaptation for the purpose of + this License. For the avoidance of doubt, where the Work is a musical + work, performance or phonogram, the synchronization of the Work in + timed-relation with a moving image ("synching") will be considered an + Adaptation for the purpose of this License. + b. "Collection" means a collection of literary or artistic works, such as + encyclopedias and anthologies, or performances, phonograms or + broadcasts, or other works or subject matter other than works listed + in Section 1(g) below, which, by reason of the selection and + arrangement of their contents, constitute intellectual creations, in + which the Work is included in its entirety in unmodified form along + with one or more other contributions, each constituting separate and + independent works in themselves, which together are assembled into a + collective whole. A work that constitutes a Collection will not be + considered an Adaptation (as defined above) for the purposes of this + License. + c. "Distribute" means to make available to the public the original and + copies of the Work or Adaptation, as appropriate, through sale or + other transfer of ownership. + d. "License Elements" means the following high-level license attributes + as selected by Licensor and indicated in the title of this License: + Attribution, Noncommercial, ShareAlike. + e. "Licensor" means the individual, individuals, entity or entities that + offer(s) the Work under the terms of this License. + f. "Original Author" means, in the case of a literary or artistic work, + the individual, individuals, entity or entities who created the Work + or if no individual or entity can be identified, the publisher; and in + addition (i) in the case of a performance the actors, singers, + musicians, dancers, and other persons who act, sing, deliver, declaim, + play in, interpret or otherwise perform literary or artistic works or + expressions of folklore; (ii) in the case of a phonogram the producer + being the person or legal entity who first fixes the sounds of a + performance or other sounds; and, (iii) in the case of broadcasts, the + organization that transmits the broadcast. + g. "Work" means the literary and/or artistic work offered under the terms + of this License including without limitation any production in the + literary, scientific and artistic domain, whatever may be the mode or + form of its expression including digital form, such as a book, + pamphlet and other writing; a lecture, address, sermon or other work + of the same nature; a dramatic or dramatico-musical work; a + choreographic work or entertainment in dumb show; a musical + composition with or without words; a cinematographic work to which are + assimilated works expressed by a process analogous to cinematography; + a work of drawing, painting, architecture, sculpture, engraving or + lithography; a photographic work to which are assimilated works + expressed by a process analogous to photography; a work of applied + art; an illustration, map, plan, sketch or three-dimensional work + relative to geography, topography, architecture or science; a + performance; a broadcast; a phonogram; a compilation of data to the + extent it is protected as a copyrightable work; or a work performed by + a variety or circus performer to the extent it is not otherwise + considered a literary or artistic work. + h. "You" means an individual or entity exercising rights under this + License who has not previously violated the terms of this License with + respect to the Work, or who has received express permission from the + Licensor to exercise rights under this License despite a previous + violation. + i. "Publicly Perform" means to perform public recitations of the Work and + to communicate to the public those public recitations, by any means or + process, including by wire or wireless means or public digital + performances; to make available to the public Works in such a way that + members of the public may access these Works from a place and at a + place individually chosen by them; to perform the Work to the public + by any means or process and the communication to the public of the + performances of the Work, including by public digital performance; to + broadcast and rebroadcast the Work by any means including signs, + sounds or images. + j. "Reproduce" means to make copies of the Work by any means including + without limitation by sound or visual recordings and the right of + fixation and reproducing fixations of the Work, including storage of a + protected performance or phonogram in digital form or other electronic + medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, +limit, or restrict any uses free from copyright or rights arising from +limitations or exceptions that are provided for in connection with the +copyright protection under copyright law or other applicable laws. + +3. License Grant. Subject to the terms and conditions of this License, +Licensor hereby grants You a worldwide, royalty-free, non-exclusive, +perpetual (for the duration of the applicable copyright) license to +exercise the rights in the Work as stated below: + + a. to Reproduce the Work, to incorporate the Work into one or more + Collections, and to Reproduce the Work as incorporated in the + Collections; + b. to create and Reproduce Adaptations provided that any such Adaptation, + including any translation in any medium, takes reasonable steps to + clearly label, demarcate or otherwise identify that changes were made + to the original Work. For example, a translation could be marked "The + original work was translated from English to Spanish," or a + modification could indicate "The original work has been modified."; + c. to Distribute and Publicly Perform the Work including as incorporated + in Collections; and, + d. to Distribute and Publicly Perform Adaptations. + +The above rights may be exercised in all media and formats whether now +known or hereafter devised. The above rights include the right to make +such modifications as are technically necessary to exercise the rights in +other media and formats. Subject to Section 8(f), all rights not expressly +granted by Licensor are hereby reserved, including but not limited to the +rights described in Section 4(e). + +4. Restrictions. The license granted in Section 3 above is expressly made +subject to and limited by the following restrictions: + + a. You may Distribute or Publicly Perform the Work only under the terms + of this License. You must include a copy of, or the Uniform Resource + Identifier (URI) for, this License with every copy of the Work You + Distribute or Publicly Perform. You may not offer or impose any terms + on the Work that restrict the terms of this License or the ability of + the recipient of the Work to exercise the rights granted to that + recipient under the terms of the License. You may not sublicense the + Work. You must keep intact all notices that refer to this License and + to the disclaimer of warranties with every copy of the Work You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Work, You may not impose any effective technological + measures on the Work that restrict the ability of a recipient of the + Work from You to exercise the rights granted to that recipient under + the terms of the License. This Section 4(a) applies to the Work as + incorporated in a Collection, but this does not require the Collection + apart from the Work itself to be made subject to the terms of this + License. If You create a Collection, upon notice from any Licensor You + must, to the extent practicable, remove from the Collection any credit + as required by Section 4(d), as requested. If You create an + Adaptation, upon notice from any Licensor You must, to the extent + practicable, remove from the Adaptation any credit as required by + Section 4(d), as requested. + b. You may Distribute or Publicly Perform an Adaptation only under: (i) + the terms of this License; (ii) a later version of this License with + the same License Elements as this License; (iii) a Creative Commons + jurisdiction license (either this or a later license version) that + contains the same License Elements as this License (e.g., + Attribution-NonCommercial-ShareAlike 3.0 US) ("Applicable License"). + You must include a copy of, or the URI, for Applicable License with + every copy of each Adaptation You Distribute or Publicly Perform. You + may not offer or impose any terms on the Adaptation that restrict the + terms of the Applicable License or the ability of the recipient of the + Adaptation to exercise the rights granted to that recipient under the + terms of the Applicable License. You must keep intact all notices that + refer to the Applicable License and to the disclaimer of warranties + with every copy of the Work as included in the Adaptation You + Distribute or Publicly Perform. When You Distribute or Publicly + Perform the Adaptation, You may not impose any effective technological + measures on the Adaptation that restrict the ability of a recipient of + the Adaptation from You to exercise the rights granted to that + recipient under the terms of the Applicable License. This Section 4(b) + applies to the Adaptation as incorporated in a Collection, but this + does not require the Collection apart from the Adaptation itself to be + made subject to the terms of the Applicable License. + c. You may not exercise any of the rights granted to You in Section 3 + above in any manner that is primarily intended for or directed toward + commercial advantage or private monetary compensation. The exchange of + the Work for other copyrighted works by means of digital file-sharing + or otherwise shall not be considered to be intended for or directed + toward commercial advantage or private monetary compensation, provided + there is no payment of any monetary compensation in con-nection with + the exchange of copyrighted works. + d. If You Distribute, or Publicly Perform the Work or any Adaptations or + Collections, You must, unless a request has been made pursuant to + Section 4(a), keep intact all copyright notices for the Work and + provide, reasonable to the medium or means You are utilizing: (i) the + name of the Original Author (or pseudonym, if applicable) if supplied, + and/or if the Original Author and/or Licensor designate another party + or parties (e.g., a sponsor institute, publishing entity, journal) for + attribution ("Attribution Parties") in Licensor's copyright notice, + terms of service or by other reasonable means, the name of such party + or parties; (ii) the title of the Work if supplied; (iii) to the + extent reasonably practicable, the URI, if any, that Licensor + specifies to be associated with the Work, unless such URI does not + refer to the copyright notice or licensing information for the Work; + and, (iv) consistent with Section 3(b), in the case of an Adaptation, + a credit identifying the use of the Work in the Adaptation (e.g., + "French translation of the Work by Original Author," or "Screenplay + based on original Work by Original Author"). The credit required by + this Section 4(d) may be implemented in any reasonable manner; + provided, however, that in the case of a Adaptation or Collection, at + a minimum such credit will appear, if a credit for all contributing + authors of the Adaptation or Collection appears, then as part of these + credits and in a manner at least as prominent as the credits for the + other contributing authors. For the avoidance of doubt, You may only + use the credit required by this Section for the purpose of attribution + in the manner set out above and, by exercising Your rights under this + License, You may not implicitly or explicitly assert or imply any + connection with, sponsorship or endorsement by the Original Author, + Licensor and/or Attribution Parties, as appropriate, of You or Your + use of the Work, without the separate, express prior written + permission of the Original Author, Licensor and/or Attribution + Parties. + e. For the avoidance of doubt: + + i. Non-waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme cannot be waived, the Licensor + reserves the exclusive right to collect such royalties for any + exercise by You of the rights granted under this License; + ii. Waivable Compulsory License Schemes. In those jurisdictions in + which the right to collect royalties through any statutory or + compulsory licensing scheme can be waived, the Licensor reserves + the exclusive right to collect such royalties for any exercise by + You of the rights granted under this License if Your exercise of + such rights is for a purpose or use which is otherwise than + noncommercial as permitted under Section 4(c) and otherwise waives + the right to collect royalties through any statutory or compulsory + licensing scheme; and, + iii. Voluntary License Schemes. The Licensor reserves the right to + collect royalties, whether individually or, in the event that the + Licensor is a member of a collecting society that administers + voluntary licensing schemes, via that society, from any exercise + by You of the rights granted under this License that is for a + purpose or use which is otherwise than noncommercial as permitted + under Section 4(c). + f. Except as otherwise agreed in writing by the Licensor or as may be + otherwise permitted by applicable law, if You Reproduce, Distribute or + Publicly Perform the Work either by itself or as part of any + Adaptations or Collections, You must not distort, mutilate, modify or + take other derogatory action in relation to the Work which would be + prejudicial to the Original Author's honor or reputation. Licensor + agrees that in those jurisdictions (e.g. Japan), in which any exercise + of the right granted in Section 3(b) of this License (the right to + make Adaptations) would be deemed to be a distortion, mutilation, + modification or other derogatory action prejudicial to the Original + Author's honor and reputation, the Licensor will waive or not assert, + as appropriate, this Section, to the fullest extent permitted by the + applicable national law, to enable You to reasonably exercise Your + right under Section 3(b) of this License (right to make Adaptations) + but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING AND TO THE +FULLEST EXTENT PERMITTED BY APPLICABLE LAW, LICENSOR OFFERS THE WORK AS-IS +AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE +WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT +LIMITATION, WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, +ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT +DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED +WARRANTIES, SO THIS EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE +LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR +ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES +ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +7. Termination + + a. This License and the rights granted hereunder will terminate + automatically upon any breach by You of the terms of this License. + Individuals or entities who have received Adaptations or Collections + from You under this License, however, will not have their licenses + terminated provided such individuals or entities remain in full + compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will + survive any termination of this License. + b. Subject to the above terms and conditions, the license granted here is + perpetual (for the duration of the applicable copyright in the Work). + Notwithstanding the above, Licensor reserves the right to release the + Work under different license terms or to stop distributing the Work at + any time; provided, however that any such election will not serve to + withdraw this License (or any other license that has been, or is + required to be, granted under the terms of this License), and this + License will continue in full force and effect unless terminated as + stated above. + +8. Miscellaneous + + a. Each time You Distribute or Publicly Perform the Work or a Collection, + the Licensor offers to the recipient a license to the Work on the same + terms and conditions as the license granted to You under this License. + b. Each time You Distribute or Publicly Perform an Adaptation, Licensor + offers to the recipient a license to the original Work on the same + terms and conditions as the license granted to You under this License. + c. If any provision of this License is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this License, and without further action + by the parties to this agreement, such provision shall be reformed to + the minimum extent necessary to make such provision valid and + enforceable. + d. No term or provision of this License shall be deemed waived and no + breach consented to unless such waiver or consent shall be in writing + and signed by the party to be charged with such waiver or consent. + e. This License constitutes the entire agreement between the parties with + respect to the Work licensed here. There are no understandings, + agreements or representations with respect to the Work not specified + here. Licensor shall not be bound by any additional provisions that + may appear in any communication from You. This License may not be + modified without the mutual written agreement of the Licensor and You. + f. The rights granted under, and the subject matter referenced, in this + License were drafted utilizing the terminology of the Berne Convention + for the Protection of Literary and Artistic Works (as amended on + September 28, 1979), the Rome Convention of 1961, the WIPO Copyright + Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 + and the Universal Copyright Convention (as revised on July 24, 1971). + These rights and subject matter take effect in the relevant + jurisdiction in which the License terms are sought to be enforced + according to the corresponding provisions of the implementation of + those treaty provisions in the applicable national law. If the + standard suite of rights granted under applicable copyright law + includes additional rights not granted under this License, such + additional rights are deemed to be included in the License; this + License is not intended to restrict the license of any rights under + applicable law. + + +Creative Commons Notice + + Creative Commons is not a party to this License, and makes no warranty + whatsoever in connection with the Work. Creative Commons will not be + liable to You or any party on any legal theory for any damages + whatsoever, including without limitation any general, special, + incidental or consequential damages arising in connection to this + license. Notwithstanding the foregoing two (2) sentences, if Creative + Commons has expressly identified itself as the Licensor hereunder, it + shall have all rights and obligations of Licensor. + + Except for the limited purpose of indicating to the public that the + Work is licensed under the CCPL, Creative Commons does not authorize + the use by either party of the trademark "Creative Commons" or any + related trademark or logo of Creative Commons without the prior + written consent of Creative Commons. Any permitted use will be in + compliance with Creative Commons' then-current trademark usage + guidelines, as may be published on its website or otherwise made + available upon request from time to time. For the avoidance of doubt, + this trademark restriction does not form part of this License. + + Creative Commons may be contacted at https://creativecommons.org/. diff --git a/LICENSE-GPL3 b/LICENSE-GPLv3.txt similarity index 100% rename from LICENSE-GPL3 rename to LICENSE-GPLv3.txt diff --git a/README.md b/README.md index e02929ee4f..808248c93c 100644 --- a/README.md +++ b/README.md @@ -1,44 +1,85 @@ -## CM-SS13 codebase - - [![forinfinityandbyond](https://user-images.githubusercontent.com/5211576/29499758-4efff304-85e6-11e7-8267-62919c3688a9.gif)](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a) - -[![Build Status](https://github.com/PvE-CMSS13/PvE-CMSS13/workflows/CI%20Suite/badge.svg)](https://github.com/PvE-CMSS13/PvE-CMSS13/actions?query=workflow%3A%22CI+Suite%22) -* **Code:** https://github.com/PvE-CMSS13/PvE-CMSS13 -* **Discord:** https://discord.gg/pve-cmss13 - -This is the codebase for the PvE CM-SS13 fork of CM-SS13 flavoured fork of SpaceStation 13 - -Code from: - -https://github.com/Watermelon914/cw-ss13 - -https://github.com/cmss13-devs/cmss13 - -And contributors. - -Space Station 13 is a paranoia-laden round-based roleplaying game set against the backdrop of a nonsensical, metal death trap masquerading as a space station, with charming spritework designed to represent the sci-fi setting and its dangerous undertones. Have fun, and survive! CM-SS13 has wildly adapted this idea into a strategic roleplay-based team deathmatch game. - -## :exclamation: How to compile :exclamation: - -On **2022-04-06** we have changed the way to compile the codebase. - -**The quick way**. Find `bin/server.cmd` in this folder and double click it to automatically build and host the server on port 1337. - -**The long way**. Find `bin/build.cmd` in this folder, and double click it to initiate the build. It consists of multiple steps and might take around 1-5 minutes to compile. If it closes, it means it has finished its job. You can then set up the server normally by opening `colonialmarines.dmb` in DreamDaemon. - -**Building colonialmarines in DreamMaker directly is now deprecated and might produce errors**, such as `'tgui.bundle.js': cannot find file`. - -**[How to compile in VSCode and other build options](tools/build/README.md).** - -## Contributors -[Guides for Contributors](.github/CONTRIBUTING.md) - -[Setting up a Development Environment](https://cm-ss13.com/wiki/Guide_to_Git) - -## LICENSE - -The code for CM-SS13 is licensed under the [GNU Affero General Public License v3](http://www.gnu.org/licenses/agpl.html), which can be found in full in [/LICENSE-AGPL3](/LICENSE-AGPL3). - -Assets including icons and sound are under the [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) unless otherwise indicated. Authorship for assets including art and sound under the CC BY-SA license is defined as the active development team of CM-SS13 unless stated otherwise (by author of the commit). - -All code is assumed to be licensed under AGPL v3 unless stated otherwise by file header. Commits before 9a001bf520f889b434acd295253a1052420860af are assumed to be licensed under GPLv3 and can be used in closed source repo. +

+ CM-SS13 +

+
+ +

+ + +

+ +

+ + + +

+ +

+ + + + + Discord + + + + + + + Code docs + + + + + + + Website + + + + + + + Game Wiki + + +

+
+ +> [!IMPORTANT] +> CM-SS13-PVE cannot be compiled exclusively using BYOND - **you must use our build tool**. +> Firstly, you need to install [BYOND](https://www.byond.com/download/), and run the `bin/server.cmd` file to start the server. +> You can learn more in our [Installation Guide](tools/build/README.md). **Building colonialmarines in DreamMaker directly is now deprecated and will cause errors.** + +CM-SS13-PVE is a fork of [CM-SS13](https://github.com/cmss13-devs/cmss13) based on [Space Station 13](https://spacestation13.com), made in [BYOND](https://www.byond.com). CM-SS13-PVE has wildly adapted the SS13 model into a tactical roleplay-based players-versus-AI game. AI code from: https://github.com/Watermelon914/cw-ss13 + +# Useful Links + +- ## [Setting up a Development Environment](https://cm-ss13.com/wiki/Guide_to_Git) +> [!TIP] +> Want to contribute for the first time but unsure where to start? Take a look at our community maintained [Guide to Contributing](https://cm-ss13.com/wiki/Contributing_to_the_Game)! + +This guide will get you set up with a Visual Studio Code development environment, complete with BYOND debugger, which will allow you to contribute back to this repository. + +- ## [Contributing Rules](.github/CONTRIBUTING.md) +This is our canonical, maintainer-maintained contributing guide, which contains information on our maintainer team structure and pull request rules. + +- ## [Code Standards](.github/guides/STANDARDS.md) +Our standards documents details how to structure your code to comply with CM-SS13 code standards, and provides some information on DreamMaker quirks. + +- ## [Code Style](.github/guides/STYLES.md) +The styles document tells you how to style your code to match the rest of the code in our codebase. + +- ## [tgui README](tgui/README.md) +All new interfaces in CM must be created using tgui - this document will help get you set up for tgui development. + +# Licenses + +### AGPLv3 license +> The code for CM-SS13-PVE is licensed under the [GNU Affero General Public License v3](http://www.gnu.org/licenses/agpl.html). All code is assumed to be licensed under AGPL v3 unless stated otherwise by file header, or this document. + +### Creative Commons 3.0 BY-SA +> Assets including icons and sound are under the [Creative Commons 3.0 BY-SA license](https://creativecommons.org/licenses/by-sa/3.0/) unless otherwise indicated. Authorship for assets including art and sound under the CC BY-SA license is defined as the active development team of CM-SS13-PVE unless stated otherwise (by author of the commit). + +### GPLv3 license +> Commits before [9a001bf520f889b434acd295253a1052420860af on Mon, 14 Sep 2020 09:13:32 +0000](https://github.com/cmss13-devs/cmss13/commit/9a001bf520f889b434acd295253a1052420860af) are assumed to be licensed under [GNU General Public License v3](https://www.gnu.org/licenses/gpl-3.0.html) and can be used in closed source repositories. diff --git a/bin/tgfont.cmd b/bin/tgfont.cmd new file mode 100644 index 0000000000..b768c81d65 --- /dev/null +++ b/bin/tgfont.cmd @@ -0,0 +1,2 @@ +@echo off +call "%~dp0\..\tools\build\build.bat" --wait-on-error tg-font %* diff --git a/code/__DEFINES/ARES.dm b/code/__DEFINES/ARES.dm index a1b82af258..55aa68f973 100644 --- a/code/__DEFINES/ARES.dm +++ b/code/__DEFINES/ARES.dm @@ -1,21 +1,22 @@ +#define ARES_ACCESS_LOGOUT 0 /// Generic access for 1:1 conversations with ARES and unrestricted commands. -#define ARES_ACCESS_BASIC 0 +#define ARES_ACCESS_BASIC 1 /// Secure Access, can read ARES Announcements and Bioscans. -#define ARES_ACCESS_COMMAND 1 -#define ARES_ACCESS_JOE 2 +#define ARES_ACCESS_COMMAND 2 +#define ARES_ACCESS_JOE 3 /// CL, can read Apollo Log and also Delete Announcements. -#define ARES_ACCESS_CORPORATE 3 +#define ARES_ACCESS_CORPORATE 4 /// Senior Command, can Delete Bioscans. -#define ARES_ACCESS_SENIOR 4 +#define ARES_ACCESS_SENIOR 5 /// Synth, CE & Commanding Officer, can read the access log. -#define ARES_ACCESS_CE 5 -#define ARES_ACCESS_SYNTH 6 -#define ARES_ACCESS_CO 7 +#define ARES_ACCESS_CE 6 +#define ARES_ACCESS_SYNTH 7 +#define ARES_ACCESS_CO 8 /// High Command, can read the deletion log. -#define ARES_ACCESS_HIGH 8 -#define ARES_ACCESS_WY_COMMAND 9 -/// Debugging. Allows me to view everything without using a high command rank. Unlikely to stay in a full merge. -#define ARES_ACCESS_DEBUG 10 +#define ARES_ACCESS_HIGH 9 +#define ARES_ACCESS_WY_COMMAND 10 +/// Debugging. Allows me to view everything without using a high command rank. +#define ARES_ACCESS_DEBUG 11 #define ARES_RECORD_ANNOUNCE "Announcement Record" #define ARES_RECORD_ANTIAIR "AntiAir Control Log" @@ -27,6 +28,7 @@ #define ARES_RECORD_MAINTENANCE "Maintenance Ticket" #define ARES_RECORD_ACCESS "Access Ticket" #define ARES_RECORD_FLIGHT "Flight Record" +#define ARES_RECORD_TECH "Tech Control Record" /// Not by ARES logged through marine_announcement() #define ARES_LOG_NONE 0 @@ -67,6 +69,16 @@ #define TICKET_OPEN "OPEN" #define TICKET_CLOSED "CLOSED" +// Priority status changes. +/// Upgraded to Priority +#define TICKET_PRIORITY "priority" +/// Downgraded from Priority +#define TICKET_NON_PRIORITY "non-priority" + /// Cooldowns #define COOLDOWN_ARES_SENSOR 60 SECONDS #define COOLDOWN_ARES_ACCESS_CONTROL 20 SECONDS +#define COOLDOWN_ARES_VENT 60 SECONDS + +/// Time until someone can respawn as Working Joe +#define JOE_JOIN_DEAD_TIME (15 MINUTES) diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 67b97d7815..9a2c68e0d5 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -83,6 +83,8 @@ #define SEE_INVISIBLE_LEVEL_TWO 45 //Used by some other stuff in code. It's really poorly organized. #define INVISIBILITY_LEVEL_TWO 45 //Used by some other stuff in code. It's really poorly organized. +#define HIDE_INVISIBLE_OBSERVER 59 // define for when we want to hide all observer mobs. + #define INVISIBILITY_OBSERVER 60 #define SEE_INVISIBLE_OBSERVER 60 @@ -107,6 +109,8 @@ #define SOUND_ADMIN_MEME (1<<6) #define SOUND_ADMIN_ATMOSPHERIC (1<<7) #define SOUND_ARES_MESSAGE (1<<8) +#define SOUND_OBSERVER_ANNOUNCEMENTS (1<<9) +#define SOUND_FAX_MACHINE (1<<10) //toggles_chat #define CHAT_OOC (1<<0) @@ -123,6 +127,7 @@ #define CHAT_FFATTACKLOGS (1<<11) #define CHAT_GHOSTHIVEMIND (1<<12) #define CHAT_NICHELOGS (1<<13) +#define CHAT_LISTENINGBUG (1<<14) //toggles_ghost #define GHOST_HEALTH_SCAN (1<<0) @@ -150,6 +155,7 @@ //toggles_admin /// Splits admin tabs in Statpanel #define SPLIT_ADMIN_TABS (1<<0) +#define ADMIN_STEALTHMODE (1<<1) //================================================= @@ -159,7 +165,7 @@ #define TOGGLES_LANGCHAT_DEFAULT (LANGCHAT_SEE_EMOTES) -#define TOGGLES_SOUND_DEFAULT (SOUND_ADMINHELP|SOUND_MIDI|SOUND_AMBIENCE|SOUND_LOBBY|SOUND_INTERNET|SOUND_ADMIN_MEME|SOUND_ADMIN_ATMOSPHERIC) +#define TOGGLES_SOUND_DEFAULT (SOUND_ADMINHELP|SOUND_MIDI|SOUND_AMBIENCE|SOUND_LOBBY|SOUND_INTERNET|SOUND_ADMIN_MEME|SOUND_ADMIN_ATMOSPHERIC|SOUND_OBSERVER_ANNOUNCEMENTS|SOUND_FAX_MACHINE) #define TOGGLES_FLASHING_DEFAULT (FLASH_ROUNDSTART|FLASH_ROUNDEND|FLASH_CORPSEREVIVE|FLASH_ADMINPM|FLASH_UNNEST) @@ -280,7 +286,7 @@ // Helpers /// Only use the CEILING_PROTECTION_TIER_X defines for `protection_level` -#define CEILING_IS_PROTECTED(ceiling, protection_level) (ceiling >= protection_level) +#define CEILING_IS_PROTECTED(ceiling, protection_level) ((ceiling) >= (protection_level)) // Default font settings #define FONT_SIZE "5pt" @@ -534,7 +540,7 @@ /// `amount` - The number to get per time /// `time` - The time period in which to gain this amount /// To be used with delta_time. Multiplied by 10 to convert from deciseconds to seconds -#define AMOUNT_PER_TIME(amount, time) ((amount / (time))*10) +#define AMOUNT_PER_TIME(amount, time) (((amount) / (time))*10) // Local message mode. Used to decide wheter message should be dispatched on the radio. #define MESSAGE_MODE_LOCAL 1 diff --git a/code/__DEFINES/_math.dm b/code/__DEFINES/_math.dm index e16f769c3c..3cec85e607 100644 --- a/code/__DEFINES/_math.dm +++ b/code/__DEFINES/_math.dm @@ -9,50 +9,26 @@ #define CARDINAL_DIRS list(1,2,4,8) #define CARDINAL_ALL_DIRS list(1,2,4,5,6,8,9,10) -//some colors -#define COLOR_RED "#FF0000" -#define COLOR_GREEN "#00FF00" -#define COLOR_BLUE "#0000FF" -#define COLOR_PURPLE "#800080" -#define COLOR_CYAN "#00FFFF" -#define COLOR_PINK "#FF00FF" -#define COLOR_YELLOW "#FFFF00" -#define COLOR_ORANGE "#FF9900" -#define COLOR_WHITE "#FFFFFF" -#define COLOR_BLACK "#000000" -#define COLOR_OIL "#030303" - -//Grass Colors -#define COLOR_G_ICE "#C7EDDE" //faded cyan -#define COLOR_G_DES "#FF7C1C" //bright orange -#define COLOR_G_JUNG "#64AA6E" //faded green - #define LEFT 1 #define RIGHT 2 -#define CEILING(x, y) ( -round(-(x) / (y)) * (y) ) - -#define ROUND_UP(x) ( -round(-(x))) +#define CEILING(x, y) ( ceil((x) / (y)) * (y) ) // round() acts like floor(x, 1) by default but can't handle other values -#define FLOOR(x, y) ( round((x) / (y)) * (y) ) - -// Real modulus that handles decimals -#define MODULUS(x, y) ( (x) - (y) * round((x) / (y)) ) +#define FLOOR(x, y) ( floor((x) / (y)) * (y) ) // Returns true if val is from min to max, inclusive. -#define ISINRANGE(val, min, max) (min <= val && val <= max) +#define ISINRANGE(val, min, max) ((min) <= (val) && (val) <= (max)) // Same as above, exclusive. -#define ISINRANGE_EX(val, min, max) (min < val && val < max) - -// Will filter out extra rotations and negative rotations -// E.g: 540 becomes 180. -180 becomes 180. -#define SIMPLIFY_DEGREES(degrees) (MODULUS((degrees), 360)) +#define ISINRANGE_EX(val, min, max) ((min) < (val) && (val) < (max)) /// Gets the sign of x, returns -1 if negative, 0 if 0, 1 if positive #define SIGN(x) ( ((x) > 0) - ((x) < 0) ) +/// Performs a linear interpolation between a and b. Note that amount=0 returns a, amount=1 returns b, and amount=0.5 returns the mean of a and b. +#define LERP(a, b, amount) ( (amount) ? ((a) + ((b) - (a)) * (amount)) : (a) ) + /// Converts a probability/second chance to probability/delta_time chance /// For example, if you want an event to happen with a 10% per second chance, but your proc only runs every 5 seconds, do `if(prob(100*DT_PROB_RATE(0.1, 5)))` #define DT_PROB_RATE(prob_per_second, delta_time) (1 - (1 - (prob_per_second)) ** (delta_time)) diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 0947ec5e8a..75b7bd65ed 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -91,7 +91,7 @@ most of them are tied into map-placed objects. This should be reworked in the fu #define ACCESS_WY_ARMORY 212 ///Secret research or other projects with highly restricted access #define ACCESS_WY_SECRETS 213 - +#define ACCESS_WY_DATABASE 214 #define ACCESS_WY_LEADERSHIP 215 ///Senior leadership, the highest ranks #define ACCESS_WY_SENIOR_LEAD 216 @@ -161,6 +161,8 @@ most of them are tied into map-placed objects. This should be reworked in the fu /// Ancients only #define ACCESS_YAUTJA_ANCIENT 392 +/// Anything in a tutorial sequence that shouldn't be accessed +#define ACCESS_TUTORIAL_LOCKED 998 ///Temporary, just so I can flag places I need to change #define ACCESS_COME_BACK_TO_ME 999 diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm index 6844721cd7..2989508820 100644 --- a/code/__DEFINES/admin.dm +++ b/code/__DEFINES/admin.dm @@ -17,12 +17,10 @@ #define NOTE_ADMIN 1 ///This note is used by staff for positive record keeping. #define NOTE_MERIT 2 -///These notes are used by respective whitelist councils for record keeping. -#define NOTE_COMMANDER 3 -#define NOTE_SYNTHETIC 4 -#define NOTE_YAUTJA 5 +///These notes are automatically applied by the Whitelist Panel. +#define NOTE_WHITELIST 3 ///Note categories in text form, in order of their numerical #defines. -var/global/list/note_categories = list("Admin", "Merit", "Commanding Officer", "Synthetic", "Yautja") +GLOBAL_LIST_INIT(note_categories, list("Admin", "Merit", "Whitelist")) #define ADMIN_FLW(user) "(FLW)" #define ADMIN_PP(user) "(PP)" @@ -50,6 +48,7 @@ var/global/list/note_categories = list("Admin", "Merit", "Commanding Officer", " #define OBSERVER_JMP(observer, atom) atom ? "(JMP)" : "" #define ARES_MARK(user) "(MARK)" #define ARES_REPLY(user, ref) "(RPLY)" +#define ADMIN_VIEW_BUG_REPORT(datum) "VIEW REPORT" /atom/proc/Admin_Coordinates_Readable(area_name, admin_jump_ref) var/turf/T = get_turf(src) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index b466475222..82d4435b9a 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -37,9 +37,6 @@ #define GAS_TYPE_PHORON "phoron" #define GAS_TYPE_CO2 "carbon dioxyde" -/// This was a define, but I changed it to a variable so it can be changed in-game.(kept the all-caps definition because... code...) -Errorage -var/MAX_EXPLOSION_RANGE = 14 - /// Used in /obj/structure/pipes/vents/proc/create_gas #define VENT_GAS_SMOKE "Smoke" #define VENT_GAS_CN20 "CN20 Nerve Gas" diff --git a/code/__DEFINES/autofire.dm b/code/__DEFINES/autofire.dm index 934cdcd7dc..f276f487b6 100644 --- a/code/__DEFINES/autofire.dm +++ b/code/__DEFINES/autofire.dm @@ -1,4 +1,4 @@ // Controls how many buckets should be kept, each representing a tick. Max is ten seconds, to have better perf. #define AUTOFIRE_BUCKET_LEN (world.fps * 10) /// Helper for getting the correct bucket -#define AUTOFIRE_BUCKET_POS(next_fire) (((round((next_fire - SSautomatedfire.head_offset) / world.tick_lag) + 1) % AUTOFIRE_BUCKET_LEN) || AUTOFIRE_BUCKET_LEN) +#define AUTOFIRE_BUCKET_POS(next_fire) (((floor((next_fire - SSautomatedfire.head_offset) / world.tick_lag) + 1) % AUTOFIRE_BUCKET_LEN) || AUTOFIRE_BUCKET_LEN) diff --git a/code/__DEFINES/autowiki.dm b/code/__DEFINES/autowiki.dm new file mode 100644 index 0000000000..4edf385bcc --- /dev/null +++ b/code/__DEFINES/autowiki.dm @@ -0,0 +1,7 @@ +#ifdef AUTOWIKI + #define AUTOWIKI_SKIP(skip) autowiki_skip = skip + #define IS_AUTOWIKI_SKIP(datum) datum.autowiki_skip +#else + #define AUTOWIKI_SKIP(skip) + #define IS_AUTOWIKI_SKIP(datum) UNLINT(FALSE) +#endif diff --git a/code/__DEFINES/camera.dm b/code/__DEFINES/camera.dm index bd5e8f42fb..552fe4b46c 100644 --- a/code/__DEFINES/camera.dm +++ b/code/__DEFINES/camera.dm @@ -4,8 +4,10 @@ #define CAMERA_NET_CONTAINMENT "Containment" #define CAMERA_NET_CONTAINMENT_HIDDEN "Containment Hidden" #define CAMERA_NET_RESEARCH "Research" +#define CAMERA_NET_BRIG "Brig" #define CAMERA_NET_ALAMO "Alamo" #define CAMERA_NET_NORMANDY "Normandy" +#define CAMERA_NET_SAIPAN "Saipan" #define CAMERA_NET_MIDWAY "Midway" #define CAMERA_NET_CYCLONE "Cyclone" #define CAMERA_NET_TORNADO "Tornado" @@ -22,6 +24,7 @@ #define CAMERA_NET_VEHICLE "Vehicle" #define CAMERA_NET_LANDING_ZONES "Landing Zones" #define CAMERA_NET_LASER_TARGETS "Laser Targets" +#define CAMERA_NET_CORRESPONDENT "Combat Correspondent Live" #define CAMERA_NET_POWER_ALARMS "Power Alarms" #define CAMERA_NET_ATMOSPHERE_ALARMS "Atmosphere Alarms" diff --git a/code/__DEFINES/chat.dm b/code/__DEFINES/chat.dm index 85966e4032..1edc2bd7b5 100644 --- a/code/__DEFINES/chat.dm +++ b/code/__DEFINES/chat.dm @@ -6,6 +6,7 @@ #define MESSAGE_TYPE_SYSTEM "system" #define MESSAGE_TYPE_LOCALCHAT "localchat" #define MESSAGE_TYPE_RADIO "radio" +#define MESSAGE_TYPE_HIVEMIND "hivemind" #define MESSAGE_TYPE_INFO "info" #define MESSAGE_TYPE_WARNING "warning" #define MESSAGE_TYPE_DEADCHAT "deadchat" @@ -20,6 +21,7 @@ #define MESSAGE_TYPE_ADMINLOG "adminlog" #define MESSAGE_TYPE_ATTACKLOG "attacklog" #define MESSAGE_TYPE_DEBUG "debug" +#define MESSAGE_TYPE_NICHE "niche" /// Adds a generic box around whatever message you're sending in chat. Really makes things stand out. #define examine_block(str) ("
" + str + "
") diff --git a/code/__DEFINES/chemistry.dm b/code/__DEFINES/chemistry.dm index b99013f8a0..ab5500c306 100644 --- a/code/__DEFINES/chemistry.dm +++ b/code/__DEFINES/chemistry.dm @@ -2,8 +2,10 @@ * Chemistry defines */ +/// Amount of bottle icon variations in total +#define BOTTLE_ICON_CHOICES 4 /// Amount of random icon variations for pills in total -#define PILL_ICON_CHOICES 21 +#define PILL_ICON_CHOICES 22 /* Pill icon classes to generate mappings for */ #define PILL_ICON_CLASSES list("bica", "kelo", "dex", "para", "tram", "atox", "tox", "inap", "peri", "spac", "drug", "stim", "alky", "imi", "qc", "tric", "psych", "oxy") @@ -187,6 +189,7 @@ #define PROPERTY_NEUROSHIELDING "neuroshielding" #define PROPERTY_ANTIADDICTIVE "anti-addictive" #define PROPERTY_ADDICTIVE "addictive" +#define PROPERTY_ENCEPHALOPHRASIVE "encephalophrasive" //Legendary, only in gen_tier 3+ #define PROPERTY_HYPERGENETIC "hypergenetic" #define PROPERTY_BOOSTING "boosting" diff --git a/code/__DEFINES/clans.dm b/code/__DEFINES/clans.dm index 1b95d11c03..576bbf6b76 100644 --- a/code/__DEFINES/clans.dm +++ b/code/__DEFINES/clans.dm @@ -49,26 +49,6 @@ /// Scales with clan size #define CLAN_LIMIT_SIZE 2 -var/global/list/datum/yautja_rank/clan_ranks = list( - CLAN_RANK_UNBLOODED = new /datum/yautja_rank/unblooded(), - CLAN_RANK_YOUNG = new /datum/yautja_rank/young(), - CLAN_RANK_BLOODED = new /datum/yautja_rank/blooded(), - CLAN_RANK_ELITE = new /datum/yautja_rank/elite(), - CLAN_RANK_ELDER = new /datum/yautja_rank/elder(), - CLAN_RANK_LEADER = new /datum/yautja_rank/leader(), - CLAN_RANK_ADMIN = new /datum/yautja_rank/ancient() -) - -var/global/list/clan_ranks_ordered = list( - CLAN_RANK_UNBLOODED = CLAN_RANK_UNBLOODED_INT, - CLAN_RANK_YOUNG = CLAN_RANK_YOUNG_INT, - CLAN_RANK_BLOODED = CLAN_RANK_BLOODED_INT, - CLAN_RANK_ELITE = CLAN_RANK_ELITE_INT, - CLAN_RANK_ELDER = CLAN_RANK_ELDER_INT, - CLAN_RANK_LEADER = CLAN_RANK_LEADER_INT, - CLAN_RANK_ADMIN = CLAN_RANK_ADMIN_INT -) - #define CLAN_HREF "clan_href" #define CLAN_TARGET_HREF "clan_target_href" diff --git a/code/__DEFINES/client_prefs.dm b/code/__DEFINES/client_prefs.dm index 3e922d98e6..f316a5339c 100644 --- a/code/__DEFINES/client_prefs.dm +++ b/code/__DEFINES/client_prefs.dm @@ -15,7 +15,7 @@ #define TOGGLE_AUTOMATIC_PUNCTUATION (1<<7) // Whether your sentences will automatically be punctuated with a period #define TOGGLE_COMBAT_CLICKDRAG_OVERRIDE (1<<8) // Whether disarm/harm intents cause clicks to trigger immediately when the mouse button is depressed. #define TOGGLE_ALTERNATING_DUAL_WIELD (1<<9) // Whether dual-wielding fires both guns at once or swaps between them, OUTDATED, used to update savefiles, now dual_wield_pref -#define TOGGLE_FULLSCREEN (1<<10) // See /client/proc/toggle_fullscreen in client_procs.dm +#define TOGGLE_FULLSCREEN (1<<10) // See /client/proc/update_fullscreen in client_procs.dm #define TOGGLE_MEMBER_PUBLIC (1<<11) //determines if you get a byond logo by your name in ooc if you're a member or not #define TOGGLE_OOC_FLAG (1<<12) // determines if your country flag appears by your name in ooc chat #define TOGGLE_MIDDLE_MOUSE_SWAP_HANDS (1<<13) //Toggle whether middle click swaps your hands @@ -24,6 +24,7 @@ #define TOGGLE_START_JOIN_CURRENT_SLOT (1<<16) // Whether joining at roundstart ignores assigned character slot for the job and uses currently selected slot. #define TOGGLE_LATE_JOIN_CURRENT_SLOT (1<<17) //Whether joining during the round ignores assigned character slot for the job and uses currently selected slot. #define TOGGLE_ABILITY_DEACTIVATION_OFF (1<<18) // This toggles whether selecting the same ability again can toggle it off +#define TOGGLE_AMMO_DISPLAY_TYPE (1<<19)/// limit how often the ammo is displayed when using semi-automatic fire #define JOB_SLOT_RANDOMISED_SLOT -1 #define JOB_SLOT_CURRENT_SLOT 0 diff --git a/code/__DEFINES/colours.dm b/code/__DEFINES/colours.dm index 5fa106715f..309dd7bcff 100644 --- a/code/__DEFINES/colours.dm +++ b/code/__DEFINES/colours.dm @@ -1,214 +1,159 @@ // tg port thing -//different types of atom colourations -/// Only used by rare effects like greentext colouring mobs and when admins varedit color -#define ADMIN_COLOUR_PRIORITY 1 +//different types of atom colorations +/// Only used by rare effects like greentext coloring mobs and when admins varedit color +#define ADMIN_COLOR_PRIORITY 1 /// e.g. purple effect of the revenant on a mob, black effect when mob electrocuted -#define TEMPORARY_COLOUR_PRIORITY 2 -/// Colour splashed onto an atom (e.g. paint on turf) -#define WASHABLE_COLOUR_PRIORITY 3 -/// Colour inherent to the atom (e.g. blob color) -#define FIXED_COLOUR_PRIORITY 4 +#define TEMPORARY_COLOR_PRIORITY 2 +/// Color splashed onto an atom (e.g. paint on turf) +#define WASHABLE_COLOR_PRIORITY 3 +/// Color inherent to the atom (e.g. blob color) +#define FIXED_COLOR_PRIORITY 4 ///how many color priority levels there are. -#define COLOUR_PRIORITY_AMOUNT 4 - -#define COLOUR_DARKMODE_BACKGROUND "#202020" -#define COLOUR_DARKMODE_DARKBACKGROUND "#171717" -#define COLOUR_DARKMODE_TEXT "#a4bad6" - -#define COLOUR_WHITE "#FFFFFF" -#define COLOUR_VERY_LIGHT_GRAY "#EEEEEE" -#define COLOUR_SILVER "#C0C0C0" -#define COLOUR_GRAY "#808080" -#define COLOUR_FLOORTILE_GRAY "#8D8B8B" -#define COLOUR_DARK "#454545" -#define COLOUR_ALMOST_BLACK "#333333" -#define COLOUR_BLACK "#000000" -#define COLOUR_HALF_TRANSPARENT_BLACK "#0000007A" - -#define COLOUR_RED "#FF0000" -#define COLOUR_MOSTLY_PURE_RED "#FF3300" -#define COLOUR_DARK_RED "#A50824" -#define COLOUR_RED_LIGHT "#FF3333" -#define COLOUR_MAROON "#800000" -#define COLOUR_VIVID_RED "#FF3232" -#define COLOUR_LIGHT_GRAYISH_RED "#E4C7C5" -#define COLOUR_SOFT_RED "#FA8282" -#define COLOUR_CULT_RED "#960000" -#define COLOUR_BUBBLEGUM_RED "#950A0A" - -#define COLOUR_YELLOW "#FFFF00" -#define COLOUR_VIVID_YELLOW "#FBFF23" -#define COLOUR_VERY_SOFT_YELLOW "#FAE48E" - -#define COLOUR_OLIVE "#808000" -#define COLOUR_VIBRANT_LIME "#00FF00" -#define COLOUR_LIME "#32CD32" -#define COLOUR_DARK_LIME "#00aa00" -#define COLOUR_VERY_PALE_LIME_GREEN "#DDFFD3" -#define COLOUR_VERY_DARK_LIME_GREEN "#003300" -#define COLOUR_GREEN "#008000" -#define COLOUR_DARK_MODERATE_LIME_GREEN "#44964A" - -#define COLOUR_CYAN "#00FFFF" -#define COLOUR_DARK_CYAN "#00A2FF" -#define COLOUR_TEAL "#008080" -#define COLOUR_BLUE "#0000FF" -#define COLOUR_STRONG_BLUE "#1919c8" -#define COLOUR_BRIGHT_BLUE "#2CB2E8" -#define COLOUR_MODERATE_BLUE "#555CC2" -#define COLOUR_AMETHYST "#822BFF" -#define COLOUR_BLUE_LIGHT "#33CCFF" -#define COLOUR_NAVY "#000080" -#define COLOUR_BLUE_GRAY "#75A2BB" - -#define COLOUR_PINK "#FFC0CB" -#define COLOUR_LIGHT_PINK "#ff3cc8" -#define COLOUR_MOSTLY_PURE_PINK "#E4005B" -#define COLOUR_BLUSH_PINK "#DE5D83" -#define COLOUR_MAGENTA "#FF00FF" -#define COLOUR_STRONG_MAGENTA "#B800B8" -#define COLOUR_PURPLE "#800080" -#define COLOUR_VIOLET "#B900F7" -#define COLOUR_STRONG_VIOLET "#6927c5" - -#define COLOUR_ORANGE "#FF9900" -#define COLOUR_MOSTLY_PURE_ORANGE "#ff8000" -#define COLOUR_TAN_ORANGE "#FF7B00" -#define COLOUR_BRIGHT_ORANGE "#E2853D" -#define COLOUR_LIGHT_ORANGE "#ffc44d" -#define COLOUR_PALE_ORANGE "#FFBE9D" -#define COLOUR_BEIGE "#CEB689" -#define COLOUR_DARK_ORANGE "#C3630C" -#define COLOUR_DARK_MODERATE_ORANGE "#8B633B" - -#define COLOUR_BROWN "#BA9F6D" -#define COLOUR_DARK_BROWN "#997C4F" -#define COLOUR_ORANGE_BROWN "#a9734f" - -//Colour defines used by the soapstone (based on readability against grey tiles) -#define COLOUR_SOAPSTONE_PLASTIC "#a19d94" -#define COLOUR_SOAPSTONE_IRON "#b2b2b2" -#define COLOUR_SOAPSTONE_BRONZE "#FE8001" -#define COLOUR_SOAPSTONE_SILVER "#FFFFFF" -#define COLOUR_SOAPSTONE_GOLD "#FFD900" -#define COLOUR_SOAPSTONE_DIAMOND "#00ffee" - -#define COLOUR_GREEN_GRAY "#99BB76" -#define COLOUR_RED_GRAY "#B4696A" -#define COLOUR_PALE_BLUE_GRAY "#98C5DF" -#define COLOUR_PALE_GREEN_GRAY "#B7D993" -#define COLOUR_PALE_RED_GRAY "#D59998" -#define COLOUR_PALE_PURPLE_GRAY "#CBB1CA" -#define COLOUR_PURPLE_GRAY "#AE8CA8" - -//Colour defines used by the assembly detailer. -#define COLOUR_ASSEMBLY_BLACK "#545454" -#define COLOUR_ASSEMBLY_BGRAY "#9497AB" -#define COLOUR_ASSEMBLY_WHITE "#E2E2E2" -#define COLOUR_ASSEMBLY_RED "#CC4242" -#define COLOUR_ASSEMBLY_ORANGE "#E39751" -#define COLOUR_ASSEMBLY_BEIGE "#AF9366" -#define COLOUR_ASSEMBLY_BROWN "#97670E" -#define COLOUR_ASSEMBLY_GOLD "#AA9100" -#define COLOUR_ASSEMBLY_YELLOW "#CECA2B" -#define COLOUR_ASSEMBLY_GURKHA "#999875" -#define COLOUR_ASSEMBLY_LGREEN "#789876" -#define COLOUR_ASSEMBLY_GREEN "#44843C" -#define COLOUR_ASSEMBLY_LBLUE "#5D99BE" -#define COLOUR_ASSEMBLY_BLUE "#38559E" -#define COLOUR_ASSEMBLY_PURPLE "#6F6192" - -///Colours for xenobiology vatgrowing -#define COLOUR_SAMPLE_YELLOW "#c0b823" -#define COLOUR_SAMPLE_PURPLE "#342941" -#define COLOUR_SAMPLE_GREEN "#98b944" -#define COLOUR_SAMPLE_BROWN "#91542d" -#define COLOUR_SAMPLE_GRAY "#5e5856" - -///Main colours for UI themes -#define COLOUR_THEME_MIDNIGHT "#6086A0" -#define COLOUR_THEME_PLASMAFIRE "#FFB200" -#define COLOUR_THEME_RETRO "#24CA00" -#define COLOUR_THEME_SLIMECORE "#4FB259" -#define COLOUR_THEME_OPERATIVE "#B8221F" -#define COLOUR_THEME_GLASS "#75A4C4" -#define COLOUR_THEME_CLOCKWORK "#CFBA47" - -///Colours for eigenstates -#define COLOUR_PERIWINKLEE "#9999FF" +#define COLOR_PRIORITY_AMOUNT 4 + +// BLACK AND WHITE COLOR DEFINE. + +/// White rgb(255, 255, 255) +#define COLOR_WHITE "#FFFFFF" +/// Black rgb(0, 0, 0) +#define COLOR_BLACK "#000000" + +// THE THREE PRIMARIES COLORS DEFINES. + +/// Red rgb(255, 0, 0) +#define COLOR_RED "#FF0000" +/// Green rgb(0, 255, 0) +#define COLOR_GREEN "#00FF00" +/// Blue rgb(0, 0, 255) +#define COLOR_BLUE "#0000FF" + +//mix of two full primary colors + +/// Cyan rgb(0, 255, 255) B + G +#define COLOR_CYAN "#00FFFF" +/// Magenta rgb(255, 0, 255) R+B +#define COLOR_MAGENTA "#FF00FF" +/// Yellow rgb(255, 255, 0) R+G +#define COLOR_YELLOW "#FFFF00" + +// colors define in use bellow + +/// Olive rgb(128, 128, 0) +#define COLOR_OLIVE "#808000" +/// Silver rgb(192, 192, 192) shade of grey +#define COLOR_SILVER "#C0C0C0" +/// Gray rgb(128, 128, 128) +#define COLOR_GRAY "#808080" + +#define COLOR_FLOORTILE_GRAY "#8D8B8B" + +#define COLOR_HALF_TRANSPARENT_BLACK "#0000007A" + +#define COLOR_DARK_RED "#A50824" + +/// Maroon rgb(128, 0, 0) shade of red +#define COLOR_MAROON "#800000" + +#define COLOR_VIVID_RED "#FF3232" +#define COLOR_LIGHT_GRAYISH_RED "#E4C7C5" +#define COLOR_SOFT_RED "#FA8282" + +#define COLOR_VERY_SOFT_YELLOW "#FAE48E" + +///light green rgb( 0, 128, 0) +#define COLOR_LIGHT_GREEN "#008000" +#define COLOR_DARK_MODERATE_LIME_GREEN "#44964A" + +#define COLOR_TEAL "#008080" + +#define COLOR_MODERATE_BLUE "#555CC2" +/// Purple rgb( 128, 0, 128) +#define COLOR_PURPLE "#800080" +#define COLOR_STRONG_VIOLET "#6927c5" + +#define LIGHT_BEIGE "#CEB689" +#define COLOR_DARK_MODERATE_ORANGE "#8B633B" + +#define COLOR_BROWN "#BA9F6D" +#define COLOR_DARK_BROWN "#997C4F" + /** - * Some defines to generalise colours used in lighting. + * Some defines to generalise Colors used in lighting. * - * Important note: colours can end up significantly different from the basic html picture, especially when saturated + * Important note: Colors can end up significantly different from the basic html picture, especially when saturated */ -/// Full white. rgb(255, 255, 255) -#define LIGHT_COLOR_WHITE "#FFFFFF" /// Bright but quickly dissipating neon green. rgb(100, 200, 100) -#define LIGHT_COLOUR_GREEN "#64C864" -/// Electric green. rgb(0, 255, 0) -#define LIGHT_COLOUR_ELECTRIC_GREEN "#00FF00" +#define LIGHT_COLOR_GREEN "#64C864" /// Cold, diluted blue. rgb(100, 150, 250) -#define LIGHT_COLOUR_BLUE "#6496FA" +#define LIGHT_COLOR_BLUE "#6496FA" /// Light blueish green. rgb(125, 225, 175) -#define LIGHT_COLOUR_BLUEGREEN "#7DE1AF" +#define LIGHT_COLOR_BLUEGREEN "#7DE1AF" /// Diluted cyan. rgb(125, 225, 225) -#define LIGHT_COLOUR_CYAN "#7DE1E1" -/// Electric cyan rgb(0, 255, 255) -#define LIGHT_COLOUR_ELECTRIC_CYAN "#00FFFF" +#define LIGHT_COLOR_CYAN "#7DE1E1" /// More-saturated cyan. rgb(64, 206, 255) -#define LIGHT_COLOUR_LIGHT_CYAN "#40CEFF" +#define LIGHT_COLOR_LIGHT_CYAN "#40CEFF" /// Saturated blue. rgb(51, 117, 248) -#define LIGHT_COLOUR_DARK_BLUE "#6496FA" +#define LIGHT_COLOR_DARK_BLUE "#3375F8" /// Diluted, mid-warmth pink. rgb(225, 125, 225) -#define LIGHT_COLOUR_PINK "#E17DE1" +#define LIGHT_COLOR_PINK "#E17DE1" /// Dimmed yellow, leaning kaki. rgb(225, 225, 125) -#define LIGHT_COLOUR_YELLOW "#E1E17D" +#define LIGHT_COLOR_YELLOW "#E1E17D" /// Clear brown, mostly dim. rgb(150, 100, 50) -#define LIGHT_COLOUR_BROWN "#966432" +#define LIGHT_COLOR_BROWN "#966432" /// Mostly pure orange. rgb(250, 150, 50) -#define LIGHT_COLOUR_ORANGE "#FA9632" +#define LIGHT_COLOR_ORANGE "#FA9632" /// Light Purple. rgb(149, 44, 244) -#define LIGHT_COLOUR_PURPLE "#952CF4" +#define LIGHT_COLOR_PURPLE "#952CF4" /// Less-saturated light purple. rgb(155, 81, 255) -#define LIGHT_COLOUR_LAVENDER "#9B51FF" +#define LIGHT_COLOR_LAVENDER "#9B51FF" ///slightly desaturated bright yellow. -#define LIGHT_COLOUR_HOLY_MAGIC "#FFF743" +#define LIGHT_COLOR_HOLY_MAGIC "#FFF743" /// deep crimson -#define LIGHT_COLOUR_BLOOD_MAGIC "#D00000" +#define LIGHT_COLOR_BLOOD_MAGIC "#D00000" +/// Warm red color rgb(250, 66, 66) +#define LIGHT_COLOR_RED "#ff3b3b" /* These ones aren't a direct color like the ones above, because nothing would fit */ /// Warm orange color, leaning strongly towards yellow. rgb(250, 160, 25) -#define LIGHT_COLOUR_FIRE "#FAA019" +#define LIGHT_COLOR_FIRE "#FAA019" /// Very warm yellow, leaning slightly towards orange. rgb(196, 138, 24) -#define LIGHT_COLOUR_LAVA "#C48A18" +#define LIGHT_COLOR_LAVA "#C48A18" /// Bright, non-saturated red. Leaning slightly towards pink for visibility. rgb(250, 100, 75) -#define LIGHT_COLOUR_FLARE "#FA644B" +#define LIGHT_COLOR_FLARE "#FA644B" /// Weird color, between yellow and green, very slimy. rgb(175, 200, 75) -#define LIGHT_COLOUR_SLIME_LAMP "#AFC84B" +#define LIGHT_COLOR_SLIME_LAMP "#AFC84B" /// Extremely diluted yellow, close to skin color (for some reason). rgb(250, 225, 175) -#define LIGHT_COLOUR_TUNGSTEN "#FAE1AF" +#define LIGHT_COLOR_TUNGSTEN "#FAE1AF" /// Barely visible cyan-ish hue, as the doctor prescribed. rgb(240, 250, 250) -#define LIGHT_COLOUR_HALOGEN "#F0FAFA" - -//The GAGS greyscale_colours for each department's computer/machine circuits -#define CIRCUIT_COLOUR_GENERIC "#1A7A13" -#define CIRCUIT_COLOUR_COMMAND "#1B4594" -#define CIRCUIT_COLOUR_SECURITY "#9A151E" -#define CIRCUIT_COLOUR_SCIENCE "#BC4A9B" -#define CIRCUIT_COLOUR_SERVICE "#92DCBA" -#define CIRCUIT_COLOUR_MEDICAL "#00CCFF" -#define CIRCUIT_COLOUR_ENGINEERING "#F8D700" -#define CIRCUIT_COLOUR_SUPPLY "#C47749" +#define LIGHT_COLOR_HALOGEN "#F0FAFA" /// The default color for admin say, used as a fallback when the preference is not enabled -#define DEFAULT_ASAY_COLOUR COLOUR_MOSTLY_PURE_RED -#define DEFAULT_HEX_COLOUR_LEN 6 +#define COLOR_MOSTLY_PURE_RED "#FF3300" +#define DEFAULT_ASAY_COLOR COLOR_MOSTLY_PURE_RED + +#define DEFAULT_HEX_COLOR_LEN 6 -// Colour filters +// Color filters /// Icon filter that creates ambient occlusion #define AMBIENT_OCCLUSION filter(type="drop_shadow", x=0, y=-2, size=4, border=4, color="#04080FAA") /// Icon filter that creates gaussian blur #define GAUSSIAN_BLUR(filter_size) filter(type="blur", size=filter_size) + +//some colors coming from _math.dm + +#define COLOR_ORANGE "#FF9900" +#define COLOR_OIL "#030303" + +//Grass Colors coming from _math.dm + +#define COLOR_G_ICE "#C7EDDE" //faded cyan +#define COLOR_G_DES "#FF7C1C" //bright orange +#define COLOR_G_JUNG "#64AA6E" //faded green + +/// Gun muzzle colors +#define COLOR_LASER_RED "#FF8D8D" +#define COLOR_MUZZLE_BLUE "#2CB2E8" + diff --git a/code/__DEFINES/conflict.dm b/code/__DEFINES/conflict.dm index d69f0891ff..17fd8b32c2 100644 --- a/code/__DEFINES/conflict.dm +++ b/code/__DEFINES/conflict.dm @@ -54,24 +54,25 @@ #define GUN_TRIGGER_SAFETY (1<<1) #define GUN_UNUSUAL_DESIGN (1<<2) #define GUN_SILENCED (1<<3) +#define GUN_CANT_EXECUTE (1<<4) ///If checking for ammo with current.mag you have to check it against numerical values, as booleans will not trigger. -#define GUN_INTERNAL_MAG (1<<4) -#define GUN_AUTO_EJECTOR (1<<5) -#define GUN_AMMO_COUNTER (1<<6) -#define GUN_BURST_FIRING (1<<7) -#define GUN_FLASHLIGHT_ON (1<<8) -#define GUN_WY_RESTRICTED (1<<9) -#define GUN_SPECIALIST (1<<10) -#define GUN_WIELDED_FIRING_ONLY (1<<11) +#define GUN_INTERNAL_MAG (1<<5) +#define GUN_AUTO_EJECTOR (1<<6) +#define GUN_AMMO_COUNTER (1<<7) +#define GUN_BURST_FIRING (1<<8) +#define GUN_FLASHLIGHT_ON (1<<9) +#define GUN_WY_RESTRICTED (1<<10) +#define GUN_SPECIALIST (1<<11) +#define GUN_WIELDED_FIRING_ONLY (1<<12) /// removes unwielded accuracy and scatter penalties (not recoil) -#define GUN_ONE_HAND_WIELDED (1<<12) -#define GUN_ANTIQUE (1<<13) +#define GUN_ONE_HAND_WIELDED (1<<13) +#define GUN_ANTIQUE (1<<14) /// Whether the gun has been fired by its current user (reset upon `dropped()`) -#define GUN_RECOIL_BUILDUP (1<<14) +#define GUN_RECOIL_BUILDUP (1<<15) /// support weapon, bipod will grant autofire -#define GUN_SUPPORT_PLATFORM (1<<15) +#define GUN_SUPPORT_PLATFORM (1<<16) /// No gun description, only base desc -#define GUN_NO_DESCRIPTION (1<<16) +#define GUN_NO_DESCRIPTION (1<<17) // NOTE: Don't add flags past 1<<23, it'll break things due to BYOND limitations. You can usually use a Component instead. #define USES_STREAKS (1<<0) @@ -141,8 +142,8 @@ #define WIELD_DELAY_VERY_SLOW 10 #define WIELD_DELAY_HORRIBLE 12 -///This is how long you must wait after throwing something to throw again -#define THROW_DELAY (0.4 SECONDS) +///This is how long you must wait to throw again after throwing two things +#define THROW_DELAY (1.5 SECONDS) //Explosion level thresholds. Upper bounds #define EXPLOSION_THRESHOLD_VLOW 50 diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm index 1d7a727232..e2e2bb3a1d 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_human.dm @@ -68,6 +68,9 @@ /// From /mob/living/carbon/human/proc/get_flags_cold_protection() #define COMSIG_HUMAN_COLD_PROTECTION_APPLY_MODIFIERS "human_cold_protection_apply_modifiers" +/// From /obj/item/proc/dig_out_shrapnel() : () +#define COMSIG_HUMAN_SHRAPNEL_REMOVED "human_shrapnel_removed" + /// From /mob/living/carbon/human/UnarmedAttack() #define COMSIG_HUMAN_BEFORE_ATTACK_HAND "human_before_attack_hand" #define COMPONENT_CANCEL_HUMAN_ATTACK_HAND (1<<0) diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm index 89f3951e7c..cea905dd10 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_living.dm @@ -29,7 +29,19 @@ #define COMSIG_LIVING_PRE_COLLIDE "living_pre_collide" #define COMPONENT_LIVING_COLLIDE_HANDLED (1<<0) +/// From /mob/living/proc/do_ghost() : (mob/dead/observer/ghost) +#define COMSIG_LIVING_GHOSTED "living_ghosted" + +/// From /mob/living/carbon/human/attack_hand() : (mob/living/carbon/human/attacked_mob) +#define COMSIG_LIVING_ATTACKHAND_HUMAN "living_attackhand_human" + +/// From /obj/item/reagent_container/hypospray/attack() : (obj/item/reagent_container/hypospray/injector) +#define COMSIG_LIVING_HYPOSPRAY_INJECTED "living_hypospray_injected" + ///from base of mob/living/set_buckled(): (new_buckled) #define COMSIG_LIVING_SET_BUCKLED "living_set_buckled" ///from base of mob/living/set_body_position() #define COMSIG_LIVING_SET_BODY_POSITION "living_set_body_position" + +/// from base of /mob/living/apply_status_effect(): (datum/status_effect/new_effect) +#define COMSIG_LIVING_APPLY_EFFECT "living_apply_effect" diff --git a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm index 0027e6700b..18273c4ac2 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/living/signals_xeno.dm @@ -52,6 +52,10 @@ /// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) #define COMSIG_XENO_ACTION_USED "xeno_action_used" +/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) +#define COMSIG_XENO_PRE_ACTION_USED "xeno_pre_action_used" +/// From /datum/action/xeno_action/proc/use_ability_wrapper(): (mob/owner) +#define COMSIG_XENO_FAILED_ACTION_USED "xeno_failed_action_used" /// From /mob/living/carbon/xenomorph/proc/check_blood_splash() #define COMSIG_XENO_DEAL_ACID_DAMAGE "xeno_deal_acid_damage" /// From /mob/living/carbon/xenomorph/proc/recalculate_speed() @@ -65,8 +69,24 @@ /// For any additional things that should happen when a xeno's melee_attack_additional_effects_self() proc is called #define COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF "xeno_slash_additional_effects_self" +/// From /datum/action/xeno_action/onclick/plant_weeds/use_ability(): (atom/A) +#define COMSIG_XENO_PLANT_RESIN_NODE "xeno_plant_resin_node" + +/// From //mob/living/carbon/xenomorph/proc/emit_pheromones(): (pheromone, emit_cost) +#define COMSIG_XENO_START_EMIT_PHEROMONES "xeno_start_emit_pheromones" + +/// From /obj/effect/alien/resin/special/eggmorph/attack_alien: (mob/living/carbon/xenomorph/M) +#define COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER "xeno_take_hugger_from_morpher" + /// From /mob/living/carbon/xenomorph/proc/handle_crit() -#define COMSIG_XENO_HANDLE_CRIT "xeno_handle_crit" +#define COMSIG_XENO_ENTER_CRIT "xeno_entering_critical" + +/// From /mob/living/carbon/xenomorph/proc/hivemind_talk(): (message) +#define COMSIG_XENO_TRY_HIVEMIND_TALK "xeno_try_hivemind_talk" + #define COMPONENT_OVERRIDE_HIVEMIND_TALK (1<<0) + +/// used in /datum/component/status_effect/cleanse() +#define COMSIG_XENO_DEBUFF_CLEANSE "xeno_debuff_cleanse" /// From /datum/action/xeno_action/activable/pounce/use_ability() #define COMSIG_XENO_USED_POUNCE "xeno_used_pounce" diff --git a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm index dd995ba864..fa50103e08 100644 --- a/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm +++ b/code/__DEFINES/dcs/signals/atom/mob/signals_mob.dm @@ -59,6 +59,9 @@ #define COMSIG_MOB_WEED_SLOWDOWN "mob_weeds_slowdown" #define COMSIG_MOB_TAKE_DAMAGE "mob_take_damage" // TODO: move COMSIG_XENO_TAKE_DAMAGE & COMSIG_HUMAN_TAKE_DAMAGE to this + +///From /mob/living/carbon/human/attack_alien(): (mob/living/carbon/xenomorph/M, dam_bonus) +#define COMSIG_MOB_TACKLED_DOWN "mob_tackled_down" ///called in /client/change_view() #define COMSIG_MOB_CHANGE_VIEW "mob_change_view" #define COMPONENT_OVERRIDE_VIEW (1<<0) @@ -81,6 +84,9 @@ /// From base of /mob/Logout(): () #define COMSIG_MOB_LOGOUT "mob_logout" +/// From /mob/proc/change_real_name(): (old_name, new_name) +#define COMSIG_MOB_REAL_NAME_CHANGED "mob_real_name_changed" + //from /mob/proc/on_deafness_gain() #define COMSIG_MOB_DEAFENED "mob_deafened" //from /mob/proc/on_deafness_loss() @@ -107,6 +113,12 @@ #define COMSIG_MOB_EMOTED(emote_key) "mob_emoted_[emote_key]" +#define COMSIG_MOB_TRY_EMOTE "mob_try_emote" + #define COMPONENT_OVERRIDE_EMOTE (1<<0) + +#define COMSIG_MOB_TRY_POINT "mob_try_point" + #define COMPONENT_OVERRIDE_POINT (1<<0) + //from /mob/living/set_stat() #define COMSIG_MOB_STAT_SET_ALIVE "mob_stat_set_alive" //from /mob/living/set_stat() @@ -132,9 +144,48 @@ /// From /obj/item/proc/pickup() : (obj/item/picked_up) #define COMSIG_MOB_PICKUP_ITEM "mob_pickup_item" +/// From /obj/item/proc/attack_self() : (obj/item/used) +#define COMSIG_MOB_ITEM_ATTACK_SELF "mob_item_attack_self" + +/// From /obj/item/proc/dropped() : (obj/item/dropped) +#define COMSIG_MOB_ITEM_DROPPED "mob_item_dropped" + + +/// From /obj/item/reagent_container/food/snacks/proc/on_Consume() : (obj/item/reagent_container/food/snacks/eaten_food) +#define COMSIG_MOB_EATEN_SNACK "mob_eaten_snack" + +/// From /atom/proc/attackby() : (atom/attacked, obj/item/attacked_with) +#define COMSIG_MOB_PARENT_ATTACKBY "mob_parent_attackby" + +/// From /obj/item/weapon/gun/proc/reload_into_chamber() : (obj/item/weapon/gun/empty_gun) +#define COMSIG_MOB_GUN_EMPTY "mob_gun_empty" + +/// From /obj/item/weapon/gun/proc/reload() : (obj/item/weapon/gun/reloaded) +#define COMSIG_MOB_RELOADED_GUN "mob_reloaded_gun" + +/// From /mob/proc/get_status_tab_items() : (list/status_list) +#define COMSIG_MOB_GET_STATUS_TAB_ITEMS "mob_get_status_tab_items" + +/// From /datum/tutorial/proc/update_objective() : (new_objective) +#define COMSIG_MOB_TUTORIAL_UPDATE_OBJECTIVE "mob_tutorial_update_objective" + +/// From /mob/proc/swap_hand() : () +#define COMSIG_MOB_SWAPPED_HAND "mob_swapped_hand" + +/// From /mob/proc/a_intent_change() : (new_intent) +#define COMSIG_MOB_INTENT_CHANGE "mob_intent_change" + +/// From /obj/item/grab/proc/progress_passive() : (mob/living/carbon/human/grabber) +#define COMSIG_MOB_AGGRESSIVELY_GRABBED "mob_aggressively_grabbed" + #define COMSIG_MOB_AGGRESIVE_GRAB_CANCEL (1<<0) + /// From /mob/proc/say_dead(message) #define COMSIG_DEAD_SPEAK "comsig_dead_speak" #define COMPONENT_OVERRIDE_DEAD_SPEAK (1<<0) /// Cancels all running cloaking effects on target #define COMSIG_MOB_EFFECT_CLOAK_CANCEL "mob_effect_cloak_cancel" + +#define COMSIG_MOB_END_TUTORIAL "mob_end_tutorial" + +#define COMSIG_MOB_NESTED "mob_nested" diff --git a/code/__DEFINES/dcs/signals/atom/signals_item.dm b/code/__DEFINES/dcs/signals/atom/signals_item.dm index d24cf55976..569feba0c7 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_item.dm +++ b/code/__DEFINES/dcs/signals/atom/signals_item.dm @@ -29,6 +29,11 @@ #define COMSIG_ITEM_PICKUP "item_pickup" +///from /obj/item/device/camera/broadcasting +#define COMSIG_BROADCAST_GO_LIVE "broadcast_live" +#define COMSIG_BROADCAST_HEAR_TALK "broadcast_hear_talk" +#define COMSIG_BROADCAST_SEE_EMOTE "broadcast_see_emote" + /// from /obj/item/proc/mob_can_equip #define COMSIG_ITEM_ATTEMPTING_EQUIP "item_attempting_equip" ///Return this in response if you don't want items equipped @@ -51,3 +56,5 @@ #define COMSIG_CAMERA_SET_AREA "camera_manager_set_area" #define COMSIG_CAMERA_CLEAR "camera_manager_clear_target" #define COMSIG_CAMERA_REFRESH "camera_manager_refresh" + +#define COMSIG_PRED_BRACER_DECLOAKED "pred_bracer_decloaked" diff --git a/code/__DEFINES/dcs/signals/atom/signals_movable.dm b/code/__DEFINES/dcs/signals/atom/signals_movable.dm index 923c2cc60f..2b18c4771c 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_movable.dm +++ b/code/__DEFINES/dcs/signals/atom/signals_movable.dm @@ -15,6 +15,9 @@ /// From /turf/open/gm/river/Entered(): (turf/open/gm/river/river, covered) #define COMSIG_MOVABLE_ENTERED_RIVER "movable_entered_river" +/// From /atom/movable/proc/doMove: I think it only works with forceMove so watch out +#define COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED "movable_forcemove_pre_crossed" + #define COMPONENT_IGNORE_CROSS (1<<0) ///from /mob/living/carbon/xenomorph/start_pulling(): (mob/living/carbon/xenomorph/X) #define COMSIG_MOVABLE_XENO_START_PULLING "movable_xeno_start_pulling" diff --git a/code/__DEFINES/dcs/signals/atom/signals_obj.dm b/code/__DEFINES/dcs/signals/atom/signals_obj.dm index 7ca874bc34..c850b2a52e 100644 --- a/code/__DEFINES/dcs/signals/atom/signals_obj.dm +++ b/code/__DEFINES/dcs/signals/atom/signals_obj.dm @@ -22,11 +22,34 @@ #define COMSIG_SENTRY_EMPTY_AMMO_ALERT "signal_sentry_empty_ammo" #define COMSIG_SENTRY_DESTROYED_ALERT "signal_sentry_destroyed" +/// from /obj/structure/transmitter/update_icon() +#define COMSIG_TRANSMITTER_UPDATE_ICON "transmitter_update_icon" + +#define COMSIG_STRUCTURE_WRENCHED "structure_wrenched" +#define COMSIG_STRUCTURE_UNWRENCHED "structure_unwrenched" #define COMSIG_TENT_COLLAPSING "tent_collapsing" /// from /obj/proc/afterbuckle() -#define COSMIG_OBJ_AFTER_BUCKLE "signal_obj_after_buckle" +#define COMSIG_OBJ_AFTER_BUCKLE "signal_obj_after_buckle" + +/// from /datum/cm_objective/retrieve_data/disk/process() +#define COMSIG_INTEL_DISK_LOST_POWER "intel_disk_lost_power" + +/// from /datum/cm_objective/retrieve_data/disk/complete() +#define COMSIG_INTEL_DISK_COMPLETED "intel_disk_completed" + +/// from /obj/vehicle/multitile/arc/toggle_antenna() +#define COMSIG_ARC_ANTENNA_TOGGLED "arc_antenna_toggled" +/// from /obj/structure/machinery/cryopod/go_out() +#define COMSIG_CRYOPOD_GO_OUT "cryopod_go_out" + +/// from /proc/vendor_successful_vend() : (obj/structure/machinery/cm_vending/vendor, list/itemspec, mob/living/carbon/human/user) +#define COMSIG_VENDOR_SUCCESSFUL_VEND "vendor_successful_vend" + +/// from /obj/limb/proc/remove_all_bleeding() : (external, internal) +#define COMSIG_LIMB_STOP_BLEEDING "limb_stop_bleeding" #define COMSIG_DROPSHIP_ADD_EQUIPMENT "dropship_add_equipment" #define COMSIG_DROPSHIP_REMOVE_EQUIPMENT "dropship_remove_equipment" + #define COMSIG_STRUCTURE_CRATE_SQUAD_LAUNCHED "structure_crate_squad_launched" diff --git a/code/__DEFINES/dcs/signals/signals_client.dm b/code/__DEFINES/dcs/signals/signals_client.dm index e7e74771fc..36a60c153d 100644 --- a/code/__DEFINES/dcs/signals/signals_client.dm +++ b/code/__DEFINES/dcs/signals/signals_client.dm @@ -27,6 +27,3 @@ /// Called when something is removed from a client's screen : /client/proc/remove_from_screen(screen_remove) #define COMSIG_CLIENT_SCREEN_REMOVE "client_screen_remove" - -/// When a mind is transfered to another mob at /datum/mind/proc/transfer_to() -#define COMSIG_CLIENT_MIND_TRANSFER "mind_transfer" diff --git a/code/__DEFINES/dcs/signals/signals_datum.dm b/code/__DEFINES/dcs/signals/signals_datum.dm index 8251eb4d78..f163165412 100644 --- a/code/__DEFINES/dcs/signals/signals_datum.dm +++ b/code/__DEFINES/dcs/signals/signals_datum.dm @@ -34,6 +34,8 @@ #define COMSIG_ACTION_HIDDEN "action_hidden" /// From base of /datum/action/proc/unhide_from(): (mob/owner) #define COMSIG_ACTION_UNHIDDEN "action_unhidden" +/// From base of /datum/action/proc/action_activate() : () +#define COMSIG_ACTION_ACTIVATED "action_activated" ///from /datum/component/bonus_damage_stack #define COMSIG_BONUS_DAMAGE "bonus_damage" @@ -65,5 +67,8 @@ // from /proc/update_living_queens() : /mob/living/carbon/xenomorph/queen #define COMSIG_HIVE_NEW_QUEEN "hive_new_queen" +/// Fired on the lazy template datum when the template is finished loading. (list/loaded_atom_movables, list/loaded_turfs, list/loaded_areas) +#define COMSIG_LAZY_TEMPLATE_LOADED "lazy_template_loaded" + /// From /datum/game_master_submenu/vents/proc/setup_ambush() #define COMSIG_GAME_MASTER_AMBUSH_SET "game_master_ambush_set" diff --git a/code/__DEFINES/dcs/signals/signals_global.dm b/code/__DEFINES/dcs/signals/signals_global.dm index 825f427695..2ae2a28fb2 100644 --- a/code/__DEFINES/dcs/signals/signals_global.dm +++ b/code/__DEFINES/dcs/signals/signals_global.dm @@ -69,9 +69,18 @@ /// From /proc/biohazard_lockdown() #define COMSIG_GLOB_RESEARCH_LOCKDOWN "!research_lockdown_closed" #define COMSIG_GLOB_RESEARCH_LIFT "!research_lockdown_opened" +/// From /proc/aicore_lockdown() +#define COMSIG_GLOB_AICORE_LOCKDOWN "!aicore_lockdown_closed" +#define COMSIG_GLOB_AICORE_LIFT "!aicore_lockdown_opened" -/// From /obj/structure/machinery/power/fusion_engine/proc/set_overloading() : (set_overloading) +/// From /obj/structure/machinery/power/reactor/proc/set_overloading() : (set_overloading) #define COMSIG_GLOB_GENERATOR_SET_OVERLOADING "!generator_set_overloading" +#define COMSIG_GLOB_HIJACK_IMPACTED "!hijack_impacted" +#define COMSIG_GLOB_HIJACK_LANDED "!hijack_landed" + +/// From /datum/controller/subsystem/hijack/fire() +#define COMSIG_GLOB_FUEL_PUMP_UPDATE "!fuel_pump_update" + /// From /client/proc/rename_platoon() #define COMSIG_GLOB_PLATOON_NAME_CHANGE "platoon_name_change" diff --git a/code/__DEFINES/defenses.dm b/code/__DEFINES/defenses.dm index db615c2a0c..a45802bc3f 100644 --- a/code/__DEFINES/defenses.dm +++ b/code/__DEFINES/defenses.dm @@ -22,6 +22,12 @@ #define DEFENSE_BELL_TOWER 4 #define DEFENSE_TESLA_COIL 5 +// Defines for /obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone +#define TURRET_BATTERY_STATE_OK 0 +#define TURRET_BATTERY_STATE_LOW 1 +#define TURRET_BATTERY_STATE_CRITICAL 2 +#define TURRET_BATTERY_STATE_DEAD 3 + // What range the generator has to be in or defenses has to be in. #define GEN_SEARCH_RANGE 5 #define GEN_PLASTEEL_COST 10 diff --git a/code/__DEFINES/equipment.dm b/code/__DEFINES/equipment.dm index 10894c4cdb..5d5b81bf8c 100644 --- a/code/__DEFINES/equipment.dm +++ b/code/__DEFINES/equipment.dm @@ -44,6 +44,10 @@ #define USES_HEARING (1<<17) /// Should we use the initial icon for display? Mostly used by overlay only objects #define HTML_USE_INITAL_ICON (1<<18) +// Whether or not the object sees emotes +#define USES_SEEING (1<<19) +// Can be quick drawn +#define QUICK_DRAWABLE (1<<20) //========================================================================================== @@ -198,11 +202,11 @@ //=========================================================================================== //Marine armor only, use for flags_marine_armor. -#define ARMOR_SQUAD_OVERLAY 1 -#define ARMOR_LAMP_OVERLAY 2 -#define ARMOR_LAMP_ON 4 -#define ARMOR_IS_REINFORCED 8 -#define SYNTH_ALLOWED 16 +#define ARMOR_SQUAD_OVERLAY (1<<0) +#define ARMOR_LAMP_OVERLAY (1<<1) +#define ARMOR_LAMP_ON (1<<2) +#define ARMOR_IS_REINFORCED (1<<3) +#define SYNTH_ALLOWED (1<<4) //=========================================================================================== //=========================================================================================== @@ -497,7 +501,7 @@ GLOBAL_LIST_INIT(slot_to_contained_sprite_shorthand, list( #define UNIFORM_VEND_DRESS_EXTRA "dress extra" -var/global/list/uniform_categories = list( +GLOBAL_LIST_INIT(uniform_categories, list( "UTILITY" = list(UNIFORM_VEND_UTILITY_UNIFORM, UNIFORM_VEND_UTILITY_JACKET, UNIFORM_VEND_UTILITY_HEAD, UNIFORM_VEND_UTILITY_GLOVES, UNIFORM_VEND_UTILITY_SHOES), "UTILITY EXTRAS" = list(UNIFORM_VEND_UTILITY_EXTRA), "SERVICE" = list(UNIFORM_VEND_SERVICE_UNIFORM, UNIFORM_VEND_SERVICE_JACKET, UNIFORM_VEND_SERVICE_GLOVES, UNIFORM_VEND_SERVICE_SHOES), @@ -506,7 +510,7 @@ var/global/list/uniform_categories = list( "DRESS" = list(UNIFORM_VEND_DRESS_UNIFORM, UNIFORM_VEND_DRESS_JACKET, UNIFORM_VEND_DRESS_GLOVES, UNIFORM_VEND_DRESS_SHOES), "DRESS HEADWEAR" = list(UNIFORM_VEND_DRESS_HEAD), "DRESS EXTRAS" = list(UNIFORM_VEND_DRESS_EXTRA) -) +)) //================================================= diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm index e790bddb23..fc3772e66f 100644 --- a/code/__DEFINES/flags.dm +++ b/code/__DEFINES/flags.dm @@ -33,3 +33,9 @@ #define EMOTE_IMPORTANT (1<<2) /// Does the emote not have a message? #define EMOTE_NO_MESSAGE (1<<3) + +// Bitflags for Working Joe emotes +/// Working Joe emote +#define WORKING_JOE_EMOTE (1<<0) +/// Hazard Joe emote +#define HAZARD_JOE_EMOTE (1<<1) diff --git a/code/__DEFINES/human.dm b/code/__DEFINES/human.dm index 4eab3d8592..7d8a717641 100644 --- a/code/__DEFINES/human.dm +++ b/code/__DEFINES/human.dm @@ -181,11 +181,12 @@ //Synthetic Defines #define SYNTH_COLONY "Third Generation Colonial Synthetic" -#define SYNTH_COLONY_GEN_TWO "First Generation Colonial Synthetic" -#define SYNTH_COLONY_GEN_ONE "Second Generation Colonial Synthetic" +#define SYNTH_COLONY_GEN_TWO "Second Generation Colonial Synthetic" +#define SYNTH_COLONY_GEN_ONE "First Generation Colonial Synthetic" #define SYNTH_COMBAT "Combat Synthetic" #define SYNTH_INFILTRATOR "Infiltrator Synthetic" #define SYNTH_WORKING_JOE "Working Joe" +#define SYNTH_HAZARD_JOE "Hazard Joe" #define SYNTH_GEN_ONE "First Generation Synthetic" #define SYNTH_GEN_TWO "Second Generation Synthetic" #define SYNTH_GEN_THREE "Third Generation Synthetic" diff --git a/code/__DEFINES/job.dm b/code/__DEFINES/job.dm index 18afc56b7c..e1896e0d02 100644 --- a/code/__DEFINES/job.dm +++ b/code/__DEFINES/job.dm @@ -1,6 +1,6 @@ #define get_job_playtime(client, job) (client.player_data? LAZYACCESS(client.player_data.playtimes, job)? client.player_data.playtimes[job].total_minutes MINUTES_TO_DECISECOND : 0 : 0) -#define GET_MAPPED_ROLE(title) (RoleAuthority?.role_mappings[title] ? RoleAuthority.role_mappings[title] : RoleAuthority.roles_by_name[title]) -#define GET_DEFAULT_ROLE(title) (RoleAuthority?.default_roles[title] ? RoleAuthority.default_roles[title] : title) +#define GET_MAPPED_ROLE(title) (GLOB.RoleAuthority?.role_mappings[title] ? GLOB.RoleAuthority.role_mappings[title] : GLOB.RoleAuthority.roles_by_name[title]) +#define GET_DEFAULT_ROLE(title) (GLOB.RoleAuthority?.default_roles[title] ? GLOB.RoleAuthority.default_roles[title] : title) // Squad name defines #define SQUAD_MARINE_1 "Sun Riders" @@ -12,6 +12,8 @@ #define SQUAD_MARINE_INTEL "Intel" #define SQUAD_SOF "SOF" #define SQUAD_CBRN "CBRN" +#define SQUAD_FORECON "FORECON" +#define SQUAD_SOLAR "Solar Devils" #define SQUAD_UPP "Red Dawn" #define SQUAD_LRRP "Snake Eaters" @@ -40,7 +42,7 @@ #define JOB_SQUAD_MARINE_FORECON "FORECON Rifleman" #define JOB_SQUAD_SMARTGUN_FORECON "FORECON Smartgunner" -var/global/list/job_squad_roles = JOB_SQUAD_ROLES_LIST +GLOBAL_LIST_INIT(job_squad_roles, JOB_SQUAD_ROLES_LIST) #define JOB_COLONIST "Colonist" #define JOB_PASSENGER "Passenger" @@ -88,17 +90,18 @@ var/global/list/job_squad_roles = JOB_SQUAD_ROLES_LIST #define JOB_SO "Platoon Commander" #define JOB_COMMAND_ROLES /datum/timelock/command #define JOB_COMMAND_ROLES_LIST list(JOB_CO, JOB_XO, JOB_SO) -var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST +GLOBAL_LIST_INIT(job_command_roles, JOB_COMMAND_ROLES_LIST) #define JOB_AUXILIARY_OFFICER "Auxiliary Support Officer" -#define JOB_PILOT "Pilot Officer" +#define JOB_CAS_PILOT "Gunship Pilot" +#define JOB_DROPSHIP_PILOT "Dropship Pilot" +#define JOB_TANK_CREW "Tank Crew" #define JOB_DROPSHIP_CREW_CHIEF "Dropship Crew Chief" -#define JOB_CREWMAN "Vehicle Crewman" #define JOB_INTEL "Intelligence Officer" #define JOB_DROPSHIP_ROLES /datum/timelock/dropship -#define JOB_DROPSHIP_ROLES_LIST list(JOB_DROPSHIP_CREW_CHIEF, JOB_PILOT) +#define JOB_DROPSHIP_ROLES_LIST list(JOB_DROPSHIP_CREW_CHIEF, JOB_CAS_PILOT, JOB_DROPSHIP_PILOT) #define JOB_AUXILIARY_ROLES /datum/timelock/auxiliary -#define JOB_AUXILIARY_ROLES_LIST list(JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_CREWMAN, JOB_INTEL) +#define JOB_AUXILIARY_ROLES_LIST list(JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_INTEL, JOB_TANK_CREW) #define JOB_POLICE "Military Police" #define JOB_WARDEN "Military Warden" @@ -134,9 +137,13 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_MARINE "USCM Marine" //generic marine #define JOB_COLONEL "USCM Colonel" +#define JOB_USCM_OBSV "USCM Observer" #define JOB_GENERAL "USCM General" #define JOB_ACMC "Assistant Commandant of the Marine Corps" #define JOB_CMC "Commandant of the Marine Corps" +#define JOB_PLT_MED "Platoon Corpsman" +#define JOB_PLT_SL "Platoon Squad Leader" +#define JOB_SQUAD_TECH "Reconnaissance Support Technician" // Used to add a timelock to a job. Will be passed onto derivatives #define AddTimelock(Path, timelockList) \ @@ -186,25 +193,25 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST //------------------------------------ //-------- PMC --------// -#define JOB_PMC_STANDARD "Weyland-Yutani PMC (Standard)" +#define JOB_PMC_STANDARD "PMC Operator" #define JOB_PMC_ENGINEER "PMC Corporate Technician" #define JOB_PMC_MEDIC "PMC Corporate Medic" #define JOB_PMC_DOCTOR "PMC Trauma Surgeon" #define JOB_PMC_INVESTIGATOR "PMC Medical Investigator" -#define JOB_PMC_DETAINER "Weyland-Yutani PMC (Detainer)" -#define JOB_PMC_ELITE "PMC Elite" +#define JOB_PMC_DETAINER "PMC Security Enforcer" #define JOB_PMC_GUNNER "PMC Support Weapons Specialist" //Renamed from Specialist to Support Specialist as it only has SG skills. #define JOB_PMC_SNIPER "PMC Weapons Specialist" //Renamed from Sharpshooter to specialist as it uses specialist skills. -#define JOB_PMC_CREWMAN "Weyland-Yutani PMC (Crewman)" -#define JOB_PMC_NINJA "PMC Ninja" +#define JOB_PMC_CREWMAN "PMC Vehicle Crewman" #define JOB_PMC_XENO_HANDLER "PMC Xeno Handler" -#define JOB_PMC_COMMANDO "PMC Commando" #define JOB_PMC_LEADER "PMC Leader" #define JOB_PMC_LEAD_INVEST "PMC Lead Investigator" #define JOB_PMC_DIRECTOR "PMC Site Director" #define JOB_PMC_SYNTH "PMC Support Synthetic" -#define JOB_PMC_GRUNT_LIST list(JOB_PMC_STANDARD, JOB_PMC_ENGINEER, JOB_PMC_MEDIC, JOB_PMC_INVESTIGATOR, JOB_PMC_DETAINER, JOB_PMC_ELITE, JOB_PMC_GUNNER, JOB_PMC_SNIPER, JOB_PMC_CREWMAN, JOB_PMC_NINJA, JOB_PMC_XENO_HANDLER, JOB_PMC_COMMANDO, JOB_PMC_LEADER, JOB_PMC_LEAD_INVEST) +#define ROLES_WY_PMC list(JOB_PMC_LEADER, JOB_PMC_SNIPER, JOB_PMC_GUNNER, JOB_PMC_ENGINEER, JOB_PMC_MEDIC, JOB_PMC_STANDARD) +#define ROLES_WY_PMC_AUX list(JOB_PMC_SYNTH, JOB_PMC_CREWMAN, JOB_PMC_XENO_HANDLER, JOB_PMC_DOCTOR) +#define ROLES_WY_PMC_INSPEC list(JOB_PMC_LEAD_INVEST, JOB_PMC_INVESTIGATOR, JOB_PMC_DETAINER) +#define ROLES_WY_PMC_ALL ROLES_WY_PMC + ROLES_WY_PMC_AUX + ROLES_WY_PMC_INSPEC //-------- WY --------// @@ -219,12 +226,16 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_CHIEF_EXECUTIVE "Corporate Chief Executive" #define JOB_DIRECTOR "W-Y Director" +#define ROLES_WY_CORPORATE list(JOB_EXECUTIVE_SUPERVISOR, JOB_EXECUTIVE_SPECIALIST, JOB_SENIOR_EXECUTIVE, JOB_EXECUTIVE, JOB_JUNIOR_EXECUTIVE, JOB_TRAINEE) +#define ROLES_WY_LEADERSHIP list(JOB_DIRECTOR, JOB_PMC_DIRECTOR, JOB_CHIEF_EXECUTIVE, JOB_DIVISION_MANAGER, JOB_ASSISTANT_MANAGER) + //-------- WY Goons --------// #define JOB_WY_GOON "WY Corporate Security" +#define JOB_WY_GOON_TECH "WY Corporate Security Technician" #define JOB_WY_GOON_LEAD "WY Corporate Security Lead" #define JOB_WY_GOON_RESEARCHER "WY Research Consultant" -#define JOB_WY_GOON_LIST list(JOB_WY_GOON, JOB_WY_GOON_LEAD) +#define ROLES_WY_GOONS list(JOB_WY_GOON_LEAD, JOB_WY_GOON_TECH, JOB_WY_GOON) //---- Contractors ----// #define JOB_CONTRACTOR "VAIPO Mercenary" @@ -272,6 +283,7 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_UPP_SPECIALIST "UPP Serzhant" #define JOB_UPP_LEADER "UPP Master Serzhant" #define JOB_UPP_POLICE "UPP Politsiya" +#define JOB_UPP_SUPPLY "UPP Logistics Technician" #define JOB_UPP_LT_OFFICER "UPP Leytenant" #define JOB_UPP_LT_DOKTOR "UPP Leytenant Doktor" #define JOB_UPP_SRLT_OFFICER "UPP Senior Leytenant" @@ -299,6 +311,8 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_UPP_CREWMAN "UPP Tank Crewman" +#define JOB_UPP_COMMISSAR "UPP Political Commissar" + //-------- CLF --------// #define JOB_CLF "CLF Guerilla" #define JOB_CLF_ENGI "CLF Field Technician" @@ -340,11 +354,15 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_PROVOST_TML "Provost Team Leader" #define JOB_PROVOST_ADVISOR "Provost Advisor" #define JOB_PROVOST_INSPECTOR "Provost Inspector" +#define JOB_PROVOST_CINSPECTOR "Provost Chief Inspector" +#define JOB_PROVOST_UNDERCOVER "Provost Undercover Inspector" + +#define JOB_PROVOST_DMARSHAL "Provost Deputy Marshal" #define JOB_PROVOST_MARSHAL "Provost Marshal" #define JOB_PROVOST_SMARSHAL "Provost Sector Marshal" #define JOB_PROVOST_CMARSHAL "Provost Chief Marshal" -#define PROVOST_JOB_LIST list(JOB_PROVOST_ENFORCER, JOB_PROVOST_TML, JOB_PROVOST_ADVISOR, JOB_PROVOST_INSPECTOR, JOB_PROVOST_MARSHAL, JOB_PROVOST_SMARSHAL, JOB_PROVOST_CMARSHAL) +#define PROVOST_JOB_LIST list(JOB_PROVOST_ENFORCER, JOB_PROVOST_TML, JOB_PROVOST_ADVISOR, JOB_PROVOST_INSPECTOR, JOB_PROVOST_CINSPECTOR, JOB_PROVOST_DMARSHAL, JOB_PROVOST_MARSHAL, JOB_PROVOST_SMARSHAL, JOB_PROVOST_CMARSHAL) #define JOB_RIOT "Riot Control" #define JOB_RIOT_CHIEF "Chief Riot Control" @@ -369,6 +387,7 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST #define JOB_XENOMORPH_QUEEN "Queen" // For coloring the ranks in the statistics menu +#define JOB_PLAYTIME_TIER_0 (0 HOURS) #define JOB_PLAYTIME_TIER_1 (10 HOURS) #define JOB_PLAYTIME_TIER_2 (25 HOURS) #define JOB_PLAYTIME_TIER_3 (70 HOURS) @@ -398,4 +417,4 @@ var/global/list/job_command_roles = JOB_COMMAND_ROLES_LIST ///For denying certain traits being applied to people. ie. bad leg ///'Grunt' lists are for people who wouldn't logically get the bad leg trait, ie. UPP marine counterparts. -#define JOB_ERT_GRUNT_LIST list(DUTCH_JOB_LIST, RIOT_JOB_LIST, PROVOST_JOB_LIST, CMB_GRUNT_LIST, CLF_JOB_LIST, UPP_JOB_GRUNT_LIST, UPP_COMMANDO_JOB_LIST, CONTRACTOR_JOB_LIST, JOB_WY_GOON_LIST, JOB_PMC_GRUNT_LIST) +#define JOB_ERT_GRUNT_LIST list(DUTCH_JOB_LIST, RIOT_JOB_LIST, PROVOST_JOB_LIST, CMB_GRUNT_LIST, CLF_JOB_LIST, UPP_JOB_GRUNT_LIST, UPP_COMMANDO_JOB_LIST, CONTRACTOR_JOB_LIST, ROLES_WY_GOONS, ROLES_WY_PMC_ALL) diff --git a/code/__DEFINES/keybinding.dm b/code/__DEFINES/keybinding.dm index 764282d597..3f4c90eaf7 100644 --- a/code/__DEFINES/keybinding.dm +++ b/code/__DEFINES/keybinding.dm @@ -33,6 +33,7 @@ //Client #define COMSIG_KB_CLIENT_GETHELP_DOWN "keybinding_client_gethelp_down" #define COMSIG_KB_CLIENT_SCREENSHOT_DOWN "keybinding_client_screenshot_down" +#define COMSIG_KB_CLIENT_TOGGLEFULLSCREEN_DOWN "keybinding_client_togglefullscreen_down" #define COMSIG_KB_CLIENT_MINIMALHUD_DOWN "keybinding_client_minimalhud_down" //Communication @@ -165,13 +166,14 @@ #define COMSIG_KB_XENO_HIVE_STATUS "keybinding_hive_status" #define COMSIG_KB_XENO_HIDE "keybinding_hide" #define COMSIG_KB_XENO_EVOLVE "keybinding_evolve" +#define COMSIG_KB_XENO_PURCHASE_STRAIN "keybinding_purchase_strain" + // Yautja #define COMSIG_KB_YAUTJA_BUTCHER "keybinding_yautja_butcher" #define COMSIG_KB_YAUTJA_PRED_BUY "keybinding_yautja_pred_buy" #define COMSIG_KB_YAUTJA_MARK_PANEL "keybinding_yautja_mark_panel" -#define COMSIG_KB_YAUTJA_MARK_FOR_HUNT "keybinding_yautja_mark_for_hunt" -#define COMSIG_KB_YAUTJA_REMOVE_FROM_HUNT "keybinding_yautja_remove_from_hunt" +#define COMSIG_KB_YAUTJA_TOGGLE_MARK_FOR_HUNT "keybinding_yautja_toggle_mark_for_hunt" // Yautja Bracer #define COMSIG_KB_YAUTJA_TOGGLE_NOTIFICATION_SOUND "keybinding_yautja_toggle_notification_sound" @@ -192,6 +194,7 @@ #define COMSIG_KB_YAUTJA_BRACERNAME "keybinding_yautja_bracername" #define COMSIG_KB_YAUTJA_IDCHIP "keybinding_yautja_idchip" #define COMSIG_KB_YAUTJA_LINK_BRACER "keybinding_yautja_link_bracer" +#define COMSIG_KB_YAUTJA_CONTROL_FALCON "keybinding_yautja_control_falcon" //mask #define COMSIG_KB_YAUTJA_MASK_TOGGLE_ZOOM "keybinding_yautja_mask_toggle_zoom" diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index 31b1dd810d..ee958d87f5 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -222,6 +222,8 @@ #define FLOOR_PLANE -7 /// Game Plane, where most of the game objects reside #define GAME_PLANE -6 +/// Above Game Plane. For things which are above game objects, but below screen effects. +#define ABOVE_GAME_PLANE -5 /// Roof plane, disappearing when entering buildings #define ROOF_PLANE -4 diff --git a/code/__DEFINES/lighting.dm b/code/__DEFINES/lighting.dm index 097a0f5d5e..3fd2e3caa6 100644 --- a/code/__DEFINES/lighting.dm +++ b/code/__DEFINES/lighting.dm @@ -49,7 +49,7 @@ GLOBAL_LIST_INIT(emissive_color, EMISSIVE_COLOR) GLOBAL_LIST_INIT(em_block_color, EM_BLOCK_COLOR) /// A set of appearance flags applied to all emissive and emissive blocker overlays. #define EMISSIVE_APPEARANCE_FLAGS (KEEP_APART|KEEP_TOGETHER|RESET_COLOR|RESET_TRANSFORM) -/// The color matrix used to mask out emissive blockers on the emissive plane. Alpha should default to zero, be solely dependent on the RGB value of [EMISSIVE_COLOR], and be independant of the RGB value of [EM_BLOCK_COLOR]. +/// The color matrix used to mask out emissive blockers on the emissive plane. Alpha should default to zero, be solely dependent on the RGB value of [EMISSIVE_COLOR], and be independent of the RGB value of [EM_BLOCK_COLOR]. #define EM_MASK_MATRIX list(0,0,0,1/3, 0,0,0,1/3, 0,0,0,1/3, 0,0,0,0, 1,1,1,0) /// A globaly cached version of [EM_MASK_MATRIX] for quick access. GLOBAL_LIST_INIT(em_mask_matrix, EM_MASK_MATRIX) diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm index a3fdbe2f29..ef3d17572f 100644 --- a/code/__DEFINES/maps.dm +++ b/code/__DEFINES/maps.dm @@ -32,6 +32,7 @@ require only minor tweaks. #define ZTRAIT_FOG "Fog" #define ZTRAIT_LOCKDOWN "Lockdown" #define ZTRAIT_BASIC_RT "BasicRT" +#define ZTRAIT_IN_SPACE "InSpace" // Is our ground_level considered in space or on a space station // boolean - weather types that occur on the level #define ZTRAIT_SNOWSTORM "weather_snowstorm" diff --git a/code/__DEFINES/minimap.dm b/code/__DEFINES/minimap.dm index 9ab037abc0..c3af8b53c9 100644 --- a/code/__DEFINES/minimap.dm +++ b/code/__DEFINES/minimap.dm @@ -72,7 +72,6 @@ GLOBAL_LIST_INIT(all_minimap_flags, bitfield2list(MINIMAP_FLAG_ALL)) #define MINIMAP_ICON_COLOR_COMMANDER "#c6fcfc" #define MINIMAP_ICON_COLOR_HEAD "#F0C542" -#define MINIMAP_ICON_COLOR_SILVER "#c0c0c0" #define MINIMAP_ICON_COLOR_BRONZE "#eb9545" #define MINIMAP_ICON_COLOR_DOCTOR "#b83737" diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index b024f22ebf..2ab36d51d2 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -25,6 +25,7 @@ #define SMOKE_RANK_MED 3 #define SMOKE_RANK_HIGH 4 #define SMOKE_RANK_BOILER 5 +#define SMOKE_RANK_MAX 6 // What kind of function to use for Explosions falling off. @@ -98,13 +99,13 @@ #define INTERRUPT_MIDDLECLICK (1<<15) #define INTERRUPT_DAZED (1<<16) #define INTERRUPT_EMOTE (1<<17) -// By default not in INTERRUPT_ALL (too niche) #define INTERRUPT_CHANGED_LYING (1<<18) -#define INTERRUPT_ALL (INTERRUPT_DIFF_LOC|INTERRUPT_DIFF_TURF|INTERRUPT_UNCONSCIOUS|INTERRUPT_KNOCKED_DOWN|INTERRUPT_STUNNED|INTERRUPT_NEEDHAND|INTERRUPT_RESIST) +#define INTERRUPT_ALL (INTERRUPT_DIFF_LOC|INTERRUPT_DIFF_TURF|INTERRUPT_UNCONSCIOUS|INTERRUPT_KNOCKED_DOWN|INTERRUPT_STUNNED|INTERRUPT_NEEDHAND|INTERRUPT_RESIST|INTERRUPT_CHANGED_LYING) #define INTERRUPT_ALL_OUT_OF_RANGE (INTERRUPT_ALL & (~INTERRUPT_DIFF_TURF)|INTERRUPT_OUT_OF_RANGE) #define INTERRUPT_MOVED (INTERRUPT_DIFF_LOC|INTERRUPT_DIFF_TURF|INTERRUPT_RESIST) #define INTERRUPT_NO_NEEDHAND (INTERRUPT_ALL & (~INTERRUPT_NEEDHAND)) +#define INTERRUPT_NO_FLOORED (INTERRUPT_ALL & (~INTERRUPT_KNOCKED_DOWN)) #define INTERRUPT_INCAPACITATED (INTERRUPT_UNCONSCIOUS|INTERRUPT_KNOCKED_DOWN|INTERRUPT_STUNNED|INTERRUPT_RESIST) #define INTERRUPT_CLICK (INTERRUPT_LCLICK|INTERRUPT_RCLICK|INTERRUPT_SHIFTCLICK|INTERRUPT_ALTCLICK|INTERRUPT_CTRLCLICK|INTERRUPT_MIDDLECLICK|INTERRUPT_RESIST) @@ -124,7 +125,6 @@ #define MATERIAL_METAL "metal" #define MATERIAL_PLASTEEL "plasteel" #define MATERIAL_WOOD "wood plank" -#define MATERIAL_CRYSTAL "plasmagas" // SIZES FOR ITEMS, use it for w_class @@ -157,11 +157,38 @@ #define ASSEMBLY_UNLOCKED 1 #define ASSEMBLY_LOCKED 2 +// RESEARCH UPGRADES DEFINES // + // Matrix CAS Upgrades #define MATRIX_DEFAULT 0 #define MATRIX_NVG 1 #define MATRIX_WIDE 2 +#define RESEARCH_UPGRADE_NOTHING_TO_PASS null +#define RESEARCH_UPGRADE_EXCLUDE_BUY -2 +#define RESEARCH_UPGRADE_CATEGORY -1 //lord forgive me +#define RESEARCH_UPGRADE_ITEM 1 +#define RESEARCH_UPGRADE_TIER_1 1 +#define RESEARCH_UPGRADE_TIER_2 2 +#define RESEARCH_UPGRADE_TIER_3 3 +#define RESEARCH_UPGRADE_TIER_4 4 +#define RESEARCH_UPGRADE_TIER_5 5 +//Value define + +#define ITEM_MACHINERY_UPGRADE "Machinery" //*must* be same as category name. +#define ITEM_ACCESSORY_UPGRADE "Items" +#define ITEM_ARMOR_UPGRADE "Armor" + +//injector plate stuff +#define EMERGENCY_PLATE_OD_PROTECTION_OFF 0 +#define EMERGENCY_PLATE_OD_PROTECTION_STRICT 1 +#define EMERGENCY_PLATE_OD_PROTECTION_DYNAMIC 2 +#define EMERGENCY_PLATE_OD_WARNING 1 +#define EMERGENCY_PLATE_ADJUSTED_WARNING 2 + + +// RESEARCH UPGRADES DEFINES END + // Statistics defines #define STATISTIC_XENO "xeno" #define STATISTIC_HUMAN "human" diff --git a/code/__DEFINES/mob.dm b/code/__DEFINES/mob.dm new file mode 100644 index 0000000000..7f9f33ea48 --- /dev/null +++ b/code/__DEFINES/mob.dm @@ -0,0 +1 @@ +#define DEFAULT_MOB_STATUS_FLAGS CANKNOCKDOWN|CANPUSH|STATUS_FLAGS_DEBILITATE diff --git a/code/__DEFINES/mob_hud.dm b/code/__DEFINES/mob_hud.dm index 271aeaebff..3fc35633e0 100644 --- a/code/__DEFINES/mob_hud.dm +++ b/code/__DEFINES/mob_hud.dm @@ -13,6 +13,7 @@ #define XENO_HOSTILE_SLOW "13" // xeno-inflicted slow. used by a bunch of MOBA xenos stuff #define XENO_HOSTILE_TAG "14" // dancer prae 'tag' #define XENO_HOSTILE_FREEZE "15" // Any xeno-inflifcted root +#define XENO_EXECUTE "28" // Execute thershold, vampire #define HEALTH_HUD_XENO "16" // health HUD for xenos #define PLASMA_HUD "17" // indicates the plasma level of xenos. @@ -36,7 +37,7 @@ #define MOB_HUD_XENO_INFECTION 6 #define MOB_HUD_XENO_STATUS 7 #define MOB_HUD_XENO_HOSTILE 8 -#define MOB_HUD_FACTION_USCM 9 +#define MOB_HUD_FACTION_MARINE 9 #define MOB_HUD_FACTION_OBSERVER 10 #define MOB_HUD_FACTION_UPP 11 #define MOB_HUD_FACTION_WY 12 @@ -45,6 +46,7 @@ #define MOB_HUD_FACTION_PMC 15 #define MOB_HUD_HUNTER 16 #define MOB_HUD_HUNTER_CLAN 17 +#define MOB_HUD_EXECUTE 18 //for SL/FTL/LZ targeting on locator huds #define TRACKER_SL "track_sl" @@ -52,6 +54,7 @@ #define TRACKER_LZ "track_lz" #define TRACKER_CO "track_co" #define TRACKER_XO "track_xo" +#define TRACKER_CMP "track_cmp" #define TRACKER_CL "track_cl" #define TRACKER_PLTCO "track_pltco" diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index 93a4e1507d..94d509d66e 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -89,6 +89,8 @@ #define DAZE "daze" #define SLOW "slow" #define SUPERSLOW "superslow" +#define ROOT "root" + //================================================= //I hate adding defines like this but I'd much rather deal with bitflags than lists and string searches @@ -100,7 +102,7 @@ //Bitflags defining which status effects could be or are inflicted on a mob -#define STATUS_FLAGS_DEBILITATE (CANSTUN|CANKNOCKOUT|CANDAZE|CANSLOW) +#define STATUS_FLAGS_DEBILITATE (CANSTUN|CANKNOCKOUT|CANDAZE|CANSLOW|CANROOT) #define CANSTUN (1<<0) #define CANKNOCKDOWN (1<<1) @@ -108,15 +110,17 @@ #define CANPUSH (1<<3) #define LEAPING (1<<4) #define PASSEMOTES (1<<5) //holders inside of mob that need to see emotes. +#define CANROOT (1<<6) #define GODMODE (1<<12) #define FAKEDEATH (1<<13) //Replaces stuff like changeling.changeling_fakedeath -#define DISFIGURED (1<<14) //I'll probably move this elsewhere if I ever get wround to writing a bitflag mob-damage system +//#define DISFIGURED (1<<14) //unused #define XENO_HOST (1<<15) //Tracks whether we're gonna be a baby alien's mummy. #define IMMOBILE_ACTION (1<<16) // If you are performing an action that prevents you from being pushed by your own people. #define PERMANENTLY_DEAD (1<<17) #define CANDAZE (1<<18) #define CANSLOW (1<<19) #define NO_PERMANENT_DAMAGE (1<<20) +#define CORRUPTED_ALLY (1<<21) // ============================= // hive types @@ -134,7 +138,9 @@ #define XENO_HIVE_YAUTJA "xeno_hive_yautja" #define XENO_HIVE_RENEGADE "xeno_hive_renegade" -#define ALL_XENO_HIVES list(XENO_HIVE_NORMAL, XENO_HIVE_CORRUPTED, XENO_HIVE_ALPHA, XENO_HIVE_BRAVO, XENO_HIVE_CHARLIE, XENO_HIVE_DELTA, XENO_HIVE_FERAL, XENO_HIVE_TAMED, XENO_HIVE_MUTATED, XENO_HIVE_FORSAKEN, XENO_HIVE_YAUTJA, XENO_HIVE_RENEGADE) +#define XENO_HIVE_TUTORIAL "xeno_hive_tutorial" + +#define ALL_XENO_HIVES list(XENO_HIVE_NORMAL, XENO_HIVE_CORRUPTED, XENO_HIVE_ALPHA, XENO_HIVE_BRAVO, XENO_HIVE_CHARLIE, XENO_HIVE_DELTA, XENO_HIVE_FERAL, XENO_HIVE_TAMED, XENO_HIVE_MUTATED, XENO_HIVE_FORSAKEN, XENO_HIVE_YAUTJA, XENO_HIVE_RENEGADE, XENO_HIVE_TUTORIAL) //================================================= @@ -160,8 +166,9 @@ #define ORGAN_ROBOT 2 #define ORGAN_HEALTHY 0 -#define ORGAN_BRUISED 1 -#define ORGAN_BROKEN 2 +#define ORGAN_LITTLE_BRUISED 1 //used by stethoscopes and penlights +#define ORGAN_BRUISED 2 +#define ORGAN_BROKEN 3 //================================================= @@ -196,22 +203,22 @@ //================================================= //Species flags. -#define NO_BLOOD (1<<0) -#define NO_BREATHE (1<<1) +#define NO_BLOOD (1<<0) +#define NO_BREATHE (1<<1) #define NO_CLONE_LOSS (1<<2) -#define NO_SLIP (1<<3) +#define NO_SLIP (1<<3) #define NO_POISON (1<<4) -#define NO_CHEM_METABOLIZATION (1<<5) //Prevents reagents from acting on_mob_life(). +#define NO_CHEM_METABOLIZATION (1<<5) //Prevents reagents from acting on_mob_life(). #define HAS_SKIN_TONE (1<<6) -#define HAS_SKIN_COLOR (1<<7) -#define HAS_LIPS (1<<8) +#define HAS_SKIN_COLOR (1<<7) +#define HAS_LIPS (1<<8) #define HAS_UNDERWEAR (1<<9) -#define IS_WHITELISTED (1<<10) -#define IS_SYNTHETIC (1<<11) -#define NO_NEURO (1<<12) +#define IS_WHITELISTED (1<<10) +#define IS_SYNTHETIC (1<<11) +#define NO_NEURO (1<<12) #define SPECIAL_BONEBREAK (1<<13) //species do not get their bonebreak chance modified by endurance -#define NO_SHRAPNEL (1<<14) -#define HAS_HARDCRIT (1<<15) +#define NO_SHRAPNEL (1<<14) +#define HAS_HARDCRIT (1<<15) //================================================= @@ -305,78 +312,7 @@ #define CAN_HOLD_TWO_HANDS 1 #define CAN_HOLD_ONE_HAND 2 -// ------------ // -// STRAIN FLAGS // -// ------------ // - -// Queen strain flags -#define QUEEN_NORMAL "Normal" - -// Facehugger strain flags -#define FACEHUGGER_NORMAL "Normal" -#define FACEHUGGER_WATCHER "Watcher" - -// Drone strain flags -#define DRONE_NORMAL "Normal" -#define DRONE_HEALER "Healer" -#define DRONE_GARDENER "Gardener" - -// Hivelord strain flags -#define HIVELORD_NORMAL "Normal" -#define HIVELORD_RESIN_WHISPERER "Resin Whisperer" - -// Carrier strain flags -#define CARRIER_NORMAL "Normal" -#define CARRIER_EGGSAC "Eggsac" - -// Burrower strain flags -#define BURROWER_NORMAL "Normal" -#define BURROWER_TREMOR "Tremor" - -// Sentinel strain flags -#define SENTINEL_NORMAL "Normal" - -// Spitter strain flags -#define SPITTER_NORMAL "Normal" - -// Boiler strain flags -#define BOILER_NORMAL "Normal" -#define BOILER_TRAPPER "Trapper" - -// Runner strain flags -#define RUNNER_NORMAL "Normal" -#define RUNNER_ACIDER "Acider" - -// Lurker strain flags -#define LURKER_NORMAL "Normal" -#define LURKER_VAMPIRE "Vampire" -// Ravager strain flags -#define RAVAGER_NORMAL "Normal" -#define RAVAGER_HEDGEHOG "Hedgehog" -#define RAVAGER_BERSERKER "Berserker" - -// Defender strain flags -#define DEFENDER_NORMAL "Normal" -#define DEFENDER_STEELCREST "Steelcrest" - -// Warrior strain flags -#define WARRIOR_NORMAL "Normal" - -// Crusher strain flags -#define CRUSHER_NORMAL "Normal" -#define CRUSHER_CHARGER "Charger" - -// Praetorian strain flags -#define PRAETORIAN_NORMAL "Normal" -#define PRAETORIAN_VANGUARD "Vanguard" -#define PRAETORIAN_DANCER "Dancer" -#define PRAETORIAN_WARDEN "Warden" -#define PRAETORIAN_OPPRESSOR "Oppressor" - -// Hellhound strain flags -#define HELLHOUND_NORMAL "Normal" - -var/list/default_onmob_icons = list( +GLOBAL_LIST_INIT(default_onmob_icons, list( WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_0.dmi', WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_0.dmi', WEAR_WAIST = 'icons/mob/humans/onmob/belt.dmi', @@ -395,9 +331,9 @@ var/list/default_onmob_icons = list( WEAR_HANDS = 'icons/mob/humans/onmob/hands.dmi', WEAR_J_STORE = 'icons/mob/humans/onmob/suit_slot.dmi', WEAR_ACCESSORIES = 'icons/mob/humans/onmob/ties.dmi' - ) + )) -var/list/default_xeno_onmob_icons = list( +GLOBAL_LIST_INIT(default_xeno_onmob_icons, list( /mob/living/carbon/xenomorph/runner = 'icons/mob/xenos/onmob/runner.dmi', /mob/living/carbon/xenomorph/praetorian = 'icons/mob/xenos/onmob/praetorian.dmi', /mob/living/carbon/xenomorph/drone = 'icons/mob/xenos/onmob/drone.dmi', @@ -405,7 +341,7 @@ var/list/default_xeno_onmob_icons = list( /mob/living/carbon/xenomorph/defender = 'icons/mob/xenos/onmob/defender.dmi', /mob/living/carbon/xenomorph/sentinel = 'icons/mob/xenos/onmob/sentinel.dmi', /mob/living/carbon/xenomorph/spitter = 'icons/mob/xenos/onmob/spitter.dmi' - ) + )) // species names #define SPECIES_HUMAN "Human" @@ -446,6 +382,7 @@ var/list/default_xeno_onmob_icons = list( #define MOBILITY_LIEDOWN (1<<8) #define MOBILITY_FLAGS_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND) +#define MOBILITY_FLAGS_LYING_CAPABLE_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_LIEDOWN) #define MOBILITY_FLAGS_CARBON_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN) #define MOBILITY_FLAGS_REST_CAPABLE_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN) diff --git a/code/__DEFINES/mode.dm b/code/__DEFINES/mode.dm index af2bfe3994..f9e1bbc70b 100644 --- a/code/__DEFINES/mode.dm +++ b/code/__DEFINES/mode.dm @@ -73,11 +73,13 @@ #define MODE_HARDCORE_PERMA (1<<9) /// Toggles Hardcore for all marines, meaning they instantly perma upon death #define MODE_DISPOSABLE_MOBS (1<<10) // Toggles if mobs fit in disposals or not. Off by default. #define MODE_BYPASS_JOE (1<<11) // Toggles if ghosts can bypass Working Joe spawn limitations, does NOT bypass WL requirement. Off by default. -#define MODE_NO_JOIN_AS_XENO (1<<12) // Toggles if players can join as xeno +#define MODE_DISABLE_JOE_RESPAWN (1<<12) // Toggles if ghosts can respawn as Working Joes after dying as one when 15 minutes have passed. Off by default +#define MODE_NO_JOIN_AS_XENO (1<<13) // Toggles if players can join as xeno #define ROUNDSTATUS_FOG_DOWN 1 #define ROUNDSTATUS_PODDOORS_OPEN 2 +#define LATEJOIN_MARINES_PER_LATEJOIN_LARVA_EARLY 4 #define LATEJOIN_MARINES_PER_LATEJOIN_LARVA 2.5 //================================================= @@ -92,9 +94,18 @@ #define PAIN_OVERLAY_LEGACY 2 //Creates a legacy blurring effect over your screen if you have any eye_blur at all. Not recommended. //================================================= +//================================================= +#define FLASH_OVERLAY_WHITE 0 //Flashes your screen white. +#define FLASH_OVERLAY_DARK 1 //Flashes your screen a dark grey. +//================================================= + +//================================================= +#define CRIT_OVERLAY_WHITE 0 //Overlays your screen white. +#define CRIT_OVERLAY_DARK 1 //Overlays your screen a dark grey. +//================================================= -//Number of marine players against which the Marine's gear scales -#define MARINE_GEAR_SCALING_NORMAL 30 +/// Number of weighted marine players for 1 gear_scale. gear_scale is clamped to 1 minimum +#define MARINE_GEAR_SCALING_NORMAL 50 #define RESOURCE_NODE_SCALE 95 //How many players minimum per extra set of resource nodes #define RESOURCE_NODE_QUANTITY_PER_POP 11 //How many resources total per pop @@ -111,43 +122,43 @@ //================================================= //Role defines, specifically lists of roles for job bans, crew manifests and the like. -var/global/list/ROLES_COMMAND = list(JOB_CO, JOB_XO, JOB_SO, JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_CREWMAN, JOB_POLICE, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_CHIEF_REQUISITION, JOB_CHIEF_ENGINEER, JOB_CMO, JOB_CHIEF_POLICE, JOB_SEA, JOB_SYNTH, JOB_WARDEN) +GLOBAL_LIST_INIT(ROLES_COMMAND, list(JOB_CO, JOB_XO, JOB_SO, JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_TANK_CREW, JOB_DROPSHIP_CREW_CHIEF, JOB_POLICE, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_CHIEF_REQUISITION, JOB_CHIEF_ENGINEER, JOB_CMO, JOB_CHIEF_POLICE, JOB_SEA, JOB_SYNTH, JOB_WARDEN)) //Marine roles -#define ROLES_OFFICERS list(JOB_CO, JOB_XO, JOB_SO, JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_SEA, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_SYNTH, JOB_CHIEF_POLICE, JOB_WARDEN, JOB_POLICE) -var/global/list/ROLES_CIC = list(JOB_CO, JOB_XO, JOB_SO, JOB_WO_CO, JOB_WO_XO) -var/global/list/ROLES_AUXIL_SUPPORT = list(JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_WO_CHIEF_POLICE, JOB_WO_SO, JOB_WO_CREWMAN, JOB_WO_POLICE, JOB_WO_PILOT) -var/global/list/ROLES_MISC = list(JOB_SYNTH, JOB_WORKING_JOE, JOB_SEA, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_MESS_SERGEANT, JOB_WO_CORPORATE_LIAISON, JOB_WO_SYNTH) -var/global/list/ROLES_POLICE = list(JOB_CHIEF_POLICE, JOB_WARDEN, JOB_POLICE) -var/global/list/ROLES_ENGINEERING = list(JOB_CHIEF_ENGINEER, JOB_ORDNANCE_TECH, JOB_MAINT_TECH, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH) -var/global/list/ROLES_REQUISITION = list(JOB_CHIEF_REQUISITION, JOB_CARGO_TECH, JOB_WO_CHIEF_REQUISITION, JOB_WO_REQUISITION) -var/global/list/ROLES_MEDICAL = list(JOB_CMO, JOB_RESEARCHER, JOB_DOCTOR, JOB_NURSE, JOB_WO_CMO, JOB_WO_RESEARCHER, JOB_WO_DOCTOR) -var/global/list/ROLES_MARINES = list(JOB_SQUAD_LEADER, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_MARINE, JOB_SQUAD_RTO) -var/global/list/ROLES_SQUAD_ALL = list(SQUAD_MARINE_1, SQUAD_MARINE_2, SQUAD_MARINE_3, SQUAD_MARINE_4, SQUAD_MARINE_5, SQUAD_MARINE_CRYO, SQUAD_MARINE_INTEL, SQUAD_UPP, SQUAD_LRRP) +#define ROLES_OFFICERS list(JOB_CO, JOB_XO, JOB_SO, JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_TANK_CREW, JOB_DROPSHIP_CREW_CHIEF, JOB_SEA, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_SYNTH, JOB_CHIEF_POLICE, JOB_WARDEN, JOB_POLICE) +GLOBAL_LIST_INIT(ROLES_CIC, list(JOB_CO, JOB_XO, JOB_SO, JOB_WO_CO, JOB_WO_XO)) +GLOBAL_LIST_INIT(ROLES_AUXIL_SUPPORT, list(JOB_AUXILIARY_OFFICER, JOB_INTEL, JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_TANK_CREW, JOB_WO_CHIEF_POLICE, JOB_WO_SO, JOB_WO_CREWMAN, JOB_WO_POLICE, JOB_WO_PILOT)) +GLOBAL_LIST_INIT(ROLES_MISC, list(JOB_SYNTH, JOB_WORKING_JOE, JOB_SEA, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_MESS_SERGEANT, JOB_WO_CORPORATE_LIAISON, JOB_WO_SYNTH)) +GLOBAL_LIST_INIT(ROLES_POLICE, list(JOB_CHIEF_POLICE, JOB_WARDEN, JOB_POLICE)) +GLOBAL_LIST_INIT(ROLES_ENGINEERING, list(JOB_CHIEF_ENGINEER, JOB_ORDNANCE_TECH, JOB_MAINT_TECH, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH)) +GLOBAL_LIST_INIT(ROLES_REQUISITION, list(JOB_CHIEF_REQUISITION, JOB_CARGO_TECH, JOB_WO_CHIEF_REQUISITION, JOB_WO_REQUISITION)) +GLOBAL_LIST_INIT(ROLES_MEDICAL, list(JOB_CMO, JOB_RESEARCHER, JOB_DOCTOR, JOB_NURSE, JOB_WO_CMO, JOB_WO_RESEARCHER, JOB_WO_DOCTOR)) +GLOBAL_LIST_INIT(ROLES_MARINES, list(JOB_SQUAD_LEADER, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_MARINE, JOB_SQUAD_RTO)) +GLOBAL_LIST_INIT(ROLES_SQUAD_ALL, list(SQUAD_MARINE_1, SQUAD_MARINE_2, SQUAD_MARINE_3, SQUAD_MARINE_4, SQUAD_MARINE_5, SQUAD_MARINE_CRYO, SQUAD_MARINE_INTEL, SQUAD_UPP, SQUAD_LRRP)) +GLOBAL_LIST_INIT(ROLES_WO, list(JOB_WO_CO, JOB_WO_XO, JOB_WO_CORPORATE_LIAISON, JOB_WO_SYNTH, JOB_WO_CHIEF_POLICE, JOB_WO_SO, JOB_WO_CREWMAN, JOB_WO_POLICE, JOB_WO_PILOT, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH, JOB_WO_CHIEF_REQUISITION, JOB_WO_REQUISITION, JOB_WO_CMO, JOB_WO_DOCTOR, JOB_WO_RESEARCHER, JOB_WO_SQUAD_MARINE, JOB_WO_SQUAD_MEDIC, JOB_WO_SQUAD_ENGINEER, JOB_WO_SQUAD_SMARTGUNNER, JOB_WO_SQUAD_SPECIALIST, JOB_WO_SQUAD_LEADER)) //Groundside roles -var/global/list/ROLES_XENO = list(JOB_XENOMORPH_QUEEN, JOB_XENOMORPH) -var/global/list/ROLES_WHITELISTED = list(JOB_SYNTH_SURVIVOR, JOB_CO_SURVIVOR, JOB_PREDATOR) -var/global/list/ROLES_SPECIAL = list(JOB_SURVIVOR) +GLOBAL_LIST_INIT(ROLES_XENO, list(JOB_XENOMORPH_QUEEN, JOB_XENOMORPH)) +GLOBAL_LIST_INIT(ROLES_WHITELISTED, list(JOB_SYNTH_SURVIVOR, JOB_CO_SURVIVOR, JOB_PREDATOR)) +GLOBAL_LIST_INIT(ROLES_SPECIAL, list(JOB_SURVIVOR)) -var/global/list/ROLES_USCM = ROLES_CIC + ROLES_POLICE + ROLES_AUXIL_SUPPORT + ROLES_MISC + ROLES_ENGINEERING + ROLES_REQUISITION + ROLES_MEDICAL + ROLES_MARINES - ROLES_WO -var/global/list/ROLES_GROUND = ROLES_XENO + ROLES_SPECIAL + ROLES_WHITELISTED +GLOBAL_LIST_INIT(ROLES_USCM, ROLES_CIC + GLOB.ROLES_POLICE + GLOB.ROLES_AUXIL_SUPPORT + GLOB.ROLES_MISC + GLOB.ROLES_ENGINEERING + GLOB.ROLES_REQUISITION + GLOB.ROLES_MEDICAL + GLOB.ROLES_MARINES - ROLES_WO) +GLOBAL_LIST_INIT(ROLES_GROUND, GLOB.ROLES_XENO + ROLES_SPECIAL + ROLES_WHITELISTED) -var/global/list/ROLES_DISTRESS_SIGNAL = ROLES_USCM + ROLES_GROUND -var/global/list/ROLES_FACTION_CLASH = ROLES_USCM + JOB_PREDATOR +GLOBAL_LIST_INIT(ROLES_DISTRESS_SIGNAL, GLOB.ROLES_USCM + GLOB.ROLES_GROUND) +GLOBAL_LIST_INIT(ROLES_FACTION_CLASH, ROLES_USCM + JOB_PREDATOR) -var/global/list/ROLES_UNASSIGNED = list(JOB_SQUAD_MARINE) -var/global/list/ROLES_AI = list(JOB_SO, JOB_SQUAD_LEADER, JOB_SQUAD_MEDIC, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE) -var/global/list/ROLES_AI_UPP = list(JOB_SO_UPP, JOB_SQUAD_LEADER_UPP, JOB_SQUAD_MEDIC_UPP, JOB_SQUAD_TEAM_LEADER_UPP, JOB_SQUAD_SMARTGUN_UPP, JOB_SQUAD_MARINE_UPP) -var/global/list/ROLES_AI_FORECON = list(JOB_SQUAD_LEADER_FORECON, JOB_SQUAD_MEDIC_FORECON, JOB_SQUAD_TEAM_LEADER_FORECON, JOB_SQUAD_SMARTGUN_FORECON, JOB_SQUAD_MARINE_FORECON, JOB_SQUAD_RTO) -var/global/list/ROLES_WO = list(JOB_WO_CO, JOB_WO_XO, JOB_WO_CORPORATE_LIAISON, JOB_WO_SYNTH, JOB_WO_CHIEF_POLICE, JOB_WO_SO, JOB_WO_CREWMAN, JOB_WO_POLICE, JOB_WO_PILOT, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH, JOB_WO_CHIEF_REQUISITION, JOB_WO_REQUISITION, JOB_WO_CMO, JOB_WO_DOCTOR, JOB_WO_RESEARCHER, JOB_WO_SQUAD_MARINE, JOB_WO_SQUAD_MEDIC, JOB_WO_SQUAD_ENGINEER, JOB_WO_SQUAD_SMARTGUNNER, JOB_WO_SQUAD_SPECIALIST, JOB_WO_SQUAD_LEADER) +GLOBAL_LIST_INIT(ROLES_UNASSIGNED, list(JOB_SQUAD_MARINE)) +GLOBAL_LIST_INIT(ROLES_AI, list(JOB_SO, JOB_SQUAD_LEADER, JOB_SQUAD_MEDIC, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE)) +GLOBAL_LIST_INIT(ROLES_AI_UPP, list(JOB_SO_UPP, JOB_SQUAD_LEADER_UPP, JOB_SQUAD_MEDIC_UPP, JOB_SQUAD_TEAM_LEADER_UPP, JOB_SQUAD_SMARTGUN_UPP, JOB_SQUAD_MARINE_UPP)) +GLOBAL_LIST_INIT(ROLES_AI_FORECON, list(JOB_SQUAD_LEADER_FORECON, JOB_SQUAD_MEDIC_FORECON, JOB_SQUAD_TEAM_LEADER_FORECON, JOB_SQUAD_SMARTGUN_FORECON, JOB_SQUAD_MARINE_FORECON, JOB_SQUAD_RTO)) //Role lists used for switch() checks in show_blurb_uscm(). Cosmetic, determines ex. "Engineering, USS Almayer", "2nd Bat. 'Falling Falcons'" etc. #define BLURB_USCM_COMBAT JOB_CO, JOB_XO, JOB_SO, JOB_WO_CO, JOB_WO_XO, JOB_WO_CHIEF_POLICE, JOB_WO_SO, JOB_WO_CREWMAN, JOB_WO_POLICE, JOB_SEA,\ JOB_SQUAD_LEADER, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_MARINE -#define BLURB_USCM_FLIGHT JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF +#define BLURB_USCM_FLIGHT JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF #define BLURB_USCM_MP JOB_CHIEF_POLICE, JOB_WARDEN, JOB_POLICE -#define BLURB_USCM_ENGI JOB_CHIEF_ENGINEER, JOB_ORDNANCE_TECH, JOB_MAINT_TECH, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH, JOB_WO_PILOT +#define BLURB_USCM_ENGI JOB_CHIEF_ENGINEER, JOB_ORDNANCE_TECH, JOB_MAINT_TECH, JOB_WO_CHIEF_ENGINEER, JOB_WO_ORDNANCE_TECH, JOB_TANK_CREW, JOB_WO_PILOT #define BLURB_USCM_MEDICAL JOB_CMO, JOB_RESEARCHER, JOB_DOCTOR, JOB_NURSE, JOB_WO_CMO, JOB_WO_RESEARCHER, JOB_WO_DOCTOR #define BLURB_USCM_REQ JOB_CHIEF_REQUISITION, JOB_CARGO_TECH, JOB_WO_CHIEF_REQUISITION, JOB_WO_REQUISITION #define BLURB_USCM_WY JOB_CORPORATE_LIAISON @@ -158,9 +169,10 @@ var/global/list/ROLES_WO = list(JOB_WO_CO, JOB_WO_XO, JOB_WO_CORPORATE_LIAISON, #define WHITELIST_COUNCIL "Council" #define WHITELIST_LEADER "Leader" -var/global/list/whitelist_hierarchy = list(WHITELIST_NORMAL, WHITELIST_COUNCIL, WHITELIST_LEADER) +GLOBAL_LIST_INIT(whitelist_hierarchy, list(WHITELIST_NORMAL, WHITELIST_COUNCIL, WHITELIST_LEADER)) //================================================= + #define WHITELIST_YAUTJA (1<<0) ///Old holders of YAUTJA_ELDER #define WHITELIST_YAUTJA_LEGACY (1<<1) @@ -175,15 +187,20 @@ var/global/list/whitelist_hierarchy = list(WHITELIST_NORMAL, WHITELIST_COUNCIL, ///Old holders of COMMANDER_COUNCIL for 3 months #define WHITELIST_COMMANDER_COUNCIL_LEGACY (1<<7) #define WHITELIST_COMMANDER_LEADER (1<<8) +///Former CO senator/whitelist overseer award +#define WHITELIST_COMMANDER_COLONEL (1<<9) -#define WHITELIST_JOE (1<<9) -#define WHITELIST_SYNTHETIC (1<<10) -#define WHITELIST_SYNTHETIC_COUNCIL (1<<11) +#define WHITELIST_JOE (1<<10) +#define WHITELIST_SYNTHETIC (1<<11) +#define WHITELIST_SYNTHETIC_COUNCIL (1<<12) ///Old holders of SYNTHETIC_COUNCIL for 3 months -#define WHITELIST_SYNTHETIC_COUNCIL_LEGACY (1<<12) -#define WHITELIST_SYNTHETIC_LEADER (1<<13) +#define WHITELIST_SYNTHETIC_COUNCIL_LEGACY (1<<13) +#define WHITELIST_SYNTHETIC_LEADER (1<<14) + +///Senior Enlisted Advisor, auto granted by R_MENTOR +#define WHITELIST_MENTOR (1<<15) + -#define WHITELIST_MENTOR (1<<14) #define WHITELISTS_GENERAL (WHITELIST_YAUTJA|WHITELIST_COMMANDER|WHITELIST_SYNTHETIC|WHITELIST_MENTOR|WHITELIST_JOE) #define WHITELISTS_COUNCIL (WHITELIST_YAUTJA_COUNCIL|WHITELIST_COMMANDER_COUNCIL|WHITELIST_SYNTHETIC_COUNCIL) #define WHITELISTS_LEGACY_COUNCIL (WHITELIST_YAUTJA_COUNCIL_LEGACY|WHITELIST_COMMANDER_COUNCIL_LEGACY|WHITELIST_SYNTHETIC_COUNCIL_LEGACY) @@ -191,7 +208,29 @@ var/global/list/whitelist_hierarchy = list(WHITELIST_NORMAL, WHITELIST_COUNCIL, #define WHITELIST_EVERYTHING (WHITELISTS_GENERAL|WHITELISTS_COUNCIL|WHITELISTS_LEADER) -#define isCouncil(A) (RoleAuthority.roles_whitelist[A.ckey] & WHITELIST_YAUTJA_COUNCIL) || (RoleAuthority.roles_whitelist[A.ckey] & WHITELIST_SYNTHETIC_COUNCIL) || (RoleAuthority.roles_whitelist[A.ckey] & WHITELIST_COMMANDER_COUNCIL) +#define COUNCIL_LIST list(WHITELIST_COMMANDER_COUNCIL, WHITELIST_SYNTHETIC_COUNCIL, WHITELIST_YAUTJA_COUNCIL) +#define SENATOR_LIST list(WHITELIST_COMMANDER_LEADER, WHITELIST_SYNTHETIC_LEADER, WHITELIST_YAUTJA_LEADER) +#define isCouncil(A) (A.check_whitelist_status_list(COUNCIL_LIST)) +#define isSenator(A) (A.check_whitelist_status_list(SENATOR_LIST)) + +DEFINE_BITFIELD(whitelist_status, list( + "WHITELIST_YAUTJA" = WHITELIST_YAUTJA, + "WHITELIST_YAUTJA_LEGACY" = WHITELIST_YAUTJA_LEGACY, + "WHITELIST_YAUTJA_COUNCIL" = WHITELIST_YAUTJA_COUNCIL, + "WHITELIST_YAUTJA_COUNCIL_LEGACY" = WHITELIST_YAUTJA_COUNCIL_LEGACY, + "WHITELIST_YAUTJA_LEADER" = WHITELIST_YAUTJA_LEADER, + "WHITELIST_COMMANDER" = WHITELIST_COMMANDER, + "WHITELIST_COMMANDER_COUNCIL" = WHITELIST_COMMANDER_COUNCIL, + "WHITELIST_COMMANDER_COUNCIL_LEGACY" = WHITELIST_COMMANDER_COUNCIL_LEGACY, + "WHITELIST_COMMANDER_COLONEL" = WHITELIST_COMMANDER_COLONEL, + "WHITELIST_COMMANDER_LEADER" = WHITELIST_COMMANDER_LEADER, + "WHITELIST_JOE" = WHITELIST_JOE, + "WHITELIST_SYNTHETIC" = WHITELIST_SYNTHETIC, + "WHITELIST_SYNTHETIC_COUNCIL" = WHITELIST_SYNTHETIC_COUNCIL, + "WHITELIST_SYNTHETIC_COUNCIL_LEGACY" = WHITELIST_SYNTHETIC_COUNCIL_LEGACY, + "WHITELIST_SYNTHETIC_LEADER" = WHITELIST_SYNTHETIC_LEADER, + "WHITELIST_MENTOR" = WHITELIST_MENTOR, +)) //================================================= @@ -246,8 +285,18 @@ var/global/list/whitelist_hierarchy = list(WHITELIST_NORMAL, WHITELIST_COUNCIL, #define FACTION_LIST_MARINE list(FACTION_MARINE) #define FACTION_LIST_HUMANOID list(FACTION_MARINE, FACTION_PMC, FACTION_WY, FACTION_WY_DEATHSQUAD, FACTION_CLF, FACTION_CONTRACTOR, FACTION_MARSHAL, FACTION_UPP, FACTION_FREELANCER, FACTION_SURVIVOR, FACTION_NEUTRAL, FACTION_COLONIST, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_YAUTJA, FACTION_ZOMBIE, FACTION_TWE) -#define FACTION_LIST_ERT list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_CLF, FACTION_CONTRACTOR, FACTION_UPP, FACTION_FREELANCER, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_MARSHAL, FACTION_TWE) +#define FACTION_LIST_ERT_OTHER list(FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO) +#define FACTION_LIST_ERT_ALL list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY, FACTION_CLF, FACTION_CONTRACTOR, FACTION_UPP, FACTION_FREELANCER, FACTION_MERCENARY, FACTION_DUTCH, FACTION_HEFA, FACTION_GLADIATOR, FACTION_PIRATE, FACTION_PIZZA, FACTION_SOUTO, FACTION_MARSHAL, FACTION_TWE) #define FACTION_LIST_WY list(FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY) +#define FACTION_LIST_UPP list(FACTION_UPP) +#define FACTION_LIST_CLF list(FACTION_CLF) +#define FACTION_LIST_TWE list(FACTION_TWE) +#define FACTION_LIST_FREELANCER list(FACTION_FREELANCER) +#define FACTION_LIST_CONTRACTOR list(FACTION_CONTRACTOR) +#define FACTION_LIST_MERCENARY list(FACTION_MERCENARY) +#define FACTION_LIST_MARSHAL list(FACTION_MARSHAL) +#define FACTION_LIST_DUTCH list(FACTION_DUTCH) +#define FACTION_LIST_SURVIVOR_WY list(FACTION_SURVIVOR, FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY) #define FACTION_LIST_MARINE_WY list(FACTION_MARINE, FACTION_PMC, FACTION_WY_DEATHSQUAD, FACTION_WY) #define FACTION_LIST_MARINE_UPP list(FACTION_MARINE, FACTION_UPP) #define FACTION_LIST_MARINE_TWE list(FACTION_MARINE, FACTION_TWE) @@ -270,6 +319,6 @@ var/global/list/whitelist_hierarchy = list(WHITELIST_NORMAL, WHITELIST_COUNCIL, // global vars to prevent spam of the "one xyz alive" messages -var/global/last_ares_callout +GLOBAL_VAR(last_ares_callout) -var/global/last_qm_callout +GLOBAL_VAR(last_qm_callout) diff --git a/code/__DEFINES/objects.dm b/code/__DEFINES/objects.dm index 5160e334ff..26db2f3d22 100644 --- a/code/__DEFINES/objects.dm +++ b/code/__DEFINES/objects.dm @@ -54,6 +54,8 @@ #define SHOCK 8 #define SAFE 16 +#define CLOSED 2 + //metal, glass, rod stacks #define MAX_STACK_AMOUNT_METAL 50 #define MAX_STACK_AMOUNT_GLASS 50 @@ -77,14 +79,15 @@ #define GETPULSE_HAND 0 //less accurate (hand) #define GETPULSE_TOOL 1 //more accurate (med scanner, sleeper, etc) -var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accessed by preexisting terminals. AIs and new terminals can't use them. +GLOBAL_LIST_INIT(RESTRICTED_CAMERA_NETWORKS, list( //Those networks can only be accessed by preexisting terminals. AIs and new terminals can't use them.) "thunder", "ERT", "NUKE", CAMERA_NET_LADDER, CAMERA_NET_COLONY, CAMERA_NET_OVERWATCH, - ) + CAMERA_NET_ARES, + )) #define STASIS_IN_BAG 1 #define STASIS_IN_CRYO_CELL 2 @@ -153,7 +156,9 @@ var/list/RESTRICTED_CAMERA_NETWORKS = list( //Those networks can only be accesse #define RESULT_REQUIRES_SNOW (1<<0) +/// Reaction type from touching it #define TOUCH 1 +/// Reaction type from eating it #define INGEST 2 /// Marks an object as organic. Used for alien structures and any other organic material diff --git a/code/__DEFINES/paygrade_defs/civilian.dm b/code/__DEFINES/paygrade_defs/civilian.dm new file mode 100644 index 0000000000..ed25a3f50a --- /dev/null +++ b/code/__DEFINES/paygrade_defs/civilian.dm @@ -0,0 +1,38 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// Civilians +/// CIV, Civilian +#define PAY_SHORT_CIV "CIV" + +/// CNUR, Nurse +#define PAY_SHORT_CNUR "CNUR" + +/// CDOC, Doctor +#define PAY_SHORT_CDOC "CDOC" + +/// CCMO, Professor +#define PAY_SHORT_CCMO "CCMO" + +/// CREP, Representative +#define PAY_SHORT_CREP "CREP" + +/// SYN, Synthetic +#define PAY_SHORT_SYN "SYN" + +/// OPR, Operator +#define PAY_SHORT_OPR "OPR" + +/// CDNM, Operative (intended for codenamed people IE Operative Theta) +#define PAY_SHORT_CDNM "CDNM" + +/// CPO, Officer +#define PAY_SHORT_CPO "CPO" + +/// CSPO, Senior Officer +#define PAY_SHORT_CSPO "CSPO" + +/// REB, Rebel +#define PAY_SHORT_REB "REB" + +/// REBC, Rebel Commander "REBC" +#define PAY_SHORT_REBC "REBC" diff --git a/code/__DEFINES/paygrade_defs/cmb.dm b/code/__DEFINES/paygrade_defs/cmb.dm new file mode 100644 index 0000000000..8ebd7902db --- /dev/null +++ b/code/__DEFINES/paygrade_defs/cmb.dm @@ -0,0 +1,20 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// Colonial Marshal Bureau +/// IHRO, Interstellar Human Rights Observer +#define PAY_SHORT_IHRO "IHRO" + +/// ICCL, Interstellar Commerce Commission Corporate Liaison +#define PAY_SHORT_ICCL "ICCL" + +/// ICCA, Interstellar Commerce Commission Agent +#define PAY_SHORT_ICCA "ICCA" + +/// CMBM, CMB Marshal +#define PAY_SHORT_CMBM "CMBM" + +/// CMBD, CMB Deputy +#define PAY_SHORT_CMBD "CMBD" + +/// CMBS, CMB Synthetic +#define PAY_SHORT_CMBS "CMBS" diff --git a/code/__DEFINES/paygrade_defs/dutch.dm b/code/__DEFINES/paygrade_defs/dutch.dm new file mode 100644 index 0000000000..299096060f --- /dev/null +++ b/code/__DEFINES/paygrade_defs/dutch.dm @@ -0,0 +1,17 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// Dutches Dozen +/// DTC, Dutch's Dozen Standard Mercenary +#define PAY_SHORT_DTC "DTC" + +/// DTCM, Dutch's Dozen Medic +#define PAY_SHORT_DTCM "DTCM" + +/// DTCF, Dutch's Dozen Flamethrower Specialist +#define PAY_SHORT_DTCF "DTCF" + +/// DTCMG, Dutch's Dozen Machinegunner +#define PAY_SHORT_DTCMG "DTCMG" + +/// DTCA, Arnold +#define PAY_SHORT_DTCA "DTCA" diff --git a/code/__DEFINES/paygrade_defs/marines.dm b/code/__DEFINES/paygrade_defs/marines.dm new file mode 100644 index 0000000000..74b6596308 --- /dev/null +++ b/code/__DEFINES/paygrade_defs/marines.dm @@ -0,0 +1,80 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// USCM MARINES +/// ME1, Private +#define PAY_SHORT_ME1 "ME1" + +/// ME2, Private First Class +#define PAY_SHORT_ME2 "ME2" + +/// ME3, Lance Corporal +#define PAY_SHORT_ME3 "ME3" + +/// ME4, Corporal +#define PAY_SHORT_ME4 "ME4" + +/// ME5, Sergeant +#define PAY_SHORT_ME5 "ME5" + +/// ME6, Staff Sergeant +#define PAY_SHORT_ME6 "ME6" + +/// ME7, Gunnery Sergeant +#define PAY_SHORT_ME7 "ME7" + +/// ME8, Master Sergeant +#define PAY_SHORT_ME8 "ME8" + +/// ME8E, First Sergeant +#define PAY_SHORT_ME8E "ME8E" + +/// ME9, Master Gunnery Sergeant +#define PAY_SHORT_ME9 "ME9" + +/// ME9E, Sergeant Major +#define PAY_SHORT_ME9E "ME9E" + +/// ME9C, Sergeant Major of the Colonial Marine Corps +#define PAY_SHORT_ME9C "ME9C" + +/// MO1, Second Lieutenant +#define PAY_SHORT_MO1 "MO1" + +/// MO2, First Lieutenant +#define PAY_SHORT_MO2 "MO2" +/// MO3, Captain + +#define PAY_SHORT_MO3 "MO3" +/// MO4, Major + +#define PAY_SHORT_MO4 "MO4" +/// MO5, Lieutenant Colonel + +#define PAY_SHORT_MO5 "MO5" +/// MO6, Colonel + +#define PAY_SHORT_MO6 "MO6" +/// MO6E, Senior Colonel + +#define PAY_SHORT_MO6E "MO6E" +/// MO6C, Division Colonel + +#define PAY_SHORT_MO6C "MO6C" +/// MO7, Brigadier General + +#define PAY_SHORT_MO7 "MO7" +/// MO8, Major General + +#define PAY_SHORT_MO8 "MO8" +/// MO9, Lieutenant General + +#define PAY_SHORT_MO9 "MO9" +/// MO10, General + +#define PAY_SHORT_MO10 "MO10" + +/// MO10C, Assistant Commandant of the Marine Corps +#define PAY_SHORT_MO10C "MO10C" + +/// MO10S, Commandant of the Marine Corps +#define PAY_SHORT_MO10S "MO10S" diff --git a/code/__DEFINES/paygrade_defs/mercs.dm b/code/__DEFINES/paygrade_defs/mercs.dm new file mode 100644 index 0000000000..4cad90496e --- /dev/null +++ b/code/__DEFINES/paygrade_defs/mercs.dm @@ -0,0 +1,45 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// MERCENARIES +/// FL-S, Standard +#define PAY_SHORT_FL_S "FL-S" + +/// FL-M, Medic +#define PAY_SHORT_FL_M "FL-M" + +/// FL-WL, Warlord +#define PAY_SHORT_FL_WL "FL-WL" + +/// EFL-S, Elite Standard +#define PAY_SHORT_EFL_S "EFL-S" + +/// EFL-M, Elite Medic +#define PAY_SHORT_EFL_M "EFL-M" + +/// EFL-E, Elite Engineer +#define PAY_SHORT_EFL_E "EFL-E" + +/// EFL-H, Elite Heavy +#define PAY_SHORT_EFL_H "EFL-H" + +/// EFL-WL, Elite Warlord +#define PAY_SHORT_EFL_TL "EFL-TL" + +// VANGUARD'S ARROW INC +/// VAI-S, Standard +#define PAY_SHORT_VAI_S "VAI-S" + +/// VAI-M, Medic +#define PAY_SHORT_VAI_M "VAI-M" + +/// VAI-E, Engineer +#define PAY_SHORT_VAI_E "VAI-E" + +/// VAI-G, Machinegunner +#define PAY_SHORT_VAI_G "VAI-G" + +/// VAI-SN, Synthetic +#define PAY_SHORT_VAI_SN "VAI-SN" + +/// VAI-L, Team Leader +#define PAY_SHORT_VAI_L "VAI-L" diff --git a/code/__DEFINES/paygrade_defs/navy.dm b/code/__DEFINES/paygrade_defs/navy.dm new file mode 100644 index 0000000000..d51cccb8fe --- /dev/null +++ b/code/__DEFINES/paygrade_defs/navy.dm @@ -0,0 +1,74 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// USCM NAVY +/// NE1, Seaman Recruit +#define PAY_SHORT_NE1 "NE1" + +/// NE2M, Seaman Apprentice +#define PAY_SHORT_NE2 "NE2" + +/// NE3, Seaman +#define PAY_SHORT_NE3 "NE3" + +/// NE4, Petty Officer 3rd Class +#define PAY_SHORT_NE4 "NE4" + +/// NE5, Petty Officer 2nd Class +#define PAY_SHORT_NE5 "NE5" + +/// NE6, Petty Officer 1st Class +#define PAY_SHORT_NE6 "N36" + +/// NE7, Chief Petty Officer +#define PAY_SHORT_NE7 "NE7" + +/// NE8, Senior Chief Petty Officer +#define PAY_SHORT_NE8 "NE8" + +/// NE8C, Command Senior Chief Petty Officer +#define PAY_SHORT_NE8C "NE8C" + +/// NE9, Master Chief Petty Officer +#define PAY_SHORT_NE9 "NE9" + +/// NE9C, Command Master Chief Petty Officer +#define PAY_SHORT_NE9C "NE9C" + +/// NO1, Ensign +#define PAY_SHORT_NO1 "NO1" + +/// NO2, Lieutenant Junior Grade +#define PAY_SHORT_NO2 "NO2" + +/// NO3, Lieutenant +#define PAY_SHORT_NO3 "NO3" + +/// NO4, Lieutenant Commander +#define PAY_SHORT_NO4 "NO4" + +/// NO5, Commander +#define PAY_SHORT_NO5 "NO5" + +/// NO6, Captain +#define PAY_SHORT_NO6 "NO6" + +/// NO6E, Commodore +#define PAY_SHORT_NO6E "NO6E" + +/// NO6C, Senior Commodore +#define PAY_SHORT_NO6C "NO6C" + +/// NO7, Rear Admiral (Lower Half) +#define PAY_SHORT_NO7 "NO7" + +/// NO8, Rear Admiral (Upper Half) +#define PAY_SHORT_NO8 "NO8" + +/// NO9, Vice Admiral +#define PAY_SHORT_NO9 "NO9" + +/// NO10, Admiral +#define PAY_SHORT_NO10 "NO10" + +/// NO10C, Chief of Naval Operations +#define PAY_SHORT_NO10C "NO10C" diff --git a/code/__DEFINES/paygrade_defs/paygrade.dm b/code/__DEFINES/paygrade_defs/paygrade.dm new file mode 100644 index 0000000000..5bf9a58d74 --- /dev/null +++ b/code/__DEFINES/paygrade_defs/paygrade.dm @@ -0,0 +1,6 @@ +/// Paygrade is equivalent to or is an enlisted position. +#define GRADE_ENLISTED 0 +/// Paygrade is equivalent to or is an officer. +#define GRADE_OFFICER 1 +/// Paygrade is for high command or senior leadership. Military flag officers. +#define GRADE_FLAG 2 diff --git a/code/__DEFINES/paygrade_defs/provost.dm b/code/__DEFINES/paygrade_defs/provost.dm new file mode 100644 index 0000000000..c85fabc27b --- /dev/null +++ b/code/__DEFINES/paygrade_defs/provost.dm @@ -0,0 +1,23 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// PROVOST OFFICE +/// PvI, Provost Advisor +#define PAY_SHORT_PVA"PvA" + +/// PvI, Provost Inspector +#define PAY_SHORT_PVI "PvI" + +/// PvCI, Provost Chief Inspector +#define PAY_SHORT_PVCI "PvCI" + +/// PvDM, Provost Deputy Marshal +#define PAY_SHORT_PVDM "PvDM" + +/// PvM, Provost Marshal +#define PAY_SHORT_PVM "PvM" + +/// PvSM, Provost Sector Marshal +#define PAY_SHORT_PVSM "PvSM" + +/// PvCM, Provost Chief Marshal +#define PAY_SHORT_PVCM "PvCM" diff --git a/code/__DEFINES/paygrade_defs/twe.dm b/code/__DEFINES/paygrade_defs/twe.dm new file mode 100644 index 0000000000..da1c6a5fa4 --- /dev/null +++ b/code/__DEFINES/paygrade_defs/twe.dm @@ -0,0 +1,38 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// THREE WORLD EMPIRE +/// RMC1, Heitai-Marine +#define PAY_SHORT_RMC1 "RMC1" + +/// RMC2, Santo-Lance Corporal +#define PAY_SHORT_RMC2 "RMC2" + +/// RMC3, Nito-Corporal +#define PAY_SHORT_RMC3 "RMC3" + +/// RMC4, Itto-Sergeant +#define PAY_SHORT_RMC4 "RMC4" + +/// RNOW, Warrant Officer +#define PAY_SHORT_RNOW "RNOW" + +/// RNO1, Second Lieutenant +#define PAY_SHORT_RNO1 "RNO1" + +/// RNO2, First Lieutenant +#define PAY_SHORT_RNO2 "RNO2" + +/// RNO3, Standing Officer +#define PAY_SHORT_RNO3 "RNO3" + +/// RNO4, Captain +#define PAY_SHORT_RNO4 "RNO4" + +/// RNO5, Admiral +#define PAY_SHORT_RNO5 "RNO5" + +/// RNO6, Grand Admiral +#define PAY_SHORT_RNO6 "RNO6" + +/// EMP, Emperor +#define PAY_SHORT_EMP "EMP" diff --git a/code/__DEFINES/paygrade_defs/upp.dm b/code/__DEFINES/paygrade_defs/upp.dm new file mode 100644 index 0000000000..d753d531b6 --- /dev/null +++ b/code/__DEFINES/paygrade_defs/upp.dm @@ -0,0 +1,62 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// Union of Progressive Peoples +/// UE, +#define PAY_SHORT_UEC "UEC" + +/// UE1, Private +#define PAY_SHORT_UE1 "UE1" + +/// UE2, Private First Class +#define PAY_SHORT_UE2 "UE2" + +/// UE3, Korporal +#define PAY_SHORT_UE3 "UE3" + +/// UE4, unior Serzhant +#define PAY_SHORT_UE4 "UE4" + +/// UE5, Serzhant +#define PAY_SHORT_UE5 "UE5" + +/// UE6, Master Serzhant +#define PAY_SHORT_UE6 "UE6" + +/// UC1, Junior Kommando +#define PAY_SHORT_UC1 "UC1" + +/// UC2, 2nd Kommando +#define PAY_SHORT_UC2 "UC2" + +/// UC3, 1st Kommando +#define PAY_SHORT_UC3 "UC3" + +/// UO1, Leytenant +#define PAY_SHORT_UO1 "UO1" + +/// UO2, Senior Leytenant +#define PAY_SHORT_UO2 "UO2" + +/// UO3, Kapitan +#define PAY_SHORT_UO3 "UO3" + +/// UO4, Mayjor +#define PAY_SHORT_UO4 "UO4" + +/// UO4P, Political Commissar +#define PAY_SHORT_UO4P "UO4P" + +/// UO5, Leytenant Kolonel +#define PAY_SHORT_UO5 "UO5" + +/// UO6, Kolonel +#define PAY_SHORT_UO6 "UO6" + +/// UO7, Mayjor General +#define PAY_SHORT_UO7 "UO7" + +/// UO8, Leytenant General +#define PAY_SHORT_UO8 "UO8" + +/// UO9, Army General +#define PAY_SHORT_UO9 "UO9" diff --git a/code/__DEFINES/paygrade_defs/weyland.dm b/code/__DEFINES/paygrade_defs/weyland.dm new file mode 100644 index 0000000000..dd65caa6db --- /dev/null +++ b/code/__DEFINES/paygrade_defs/weyland.dm @@ -0,0 +1,78 @@ +// Paygrade shorthand defines, to allow clearer designation. + +// Weyland Yutani Corporate +/// WYC1, Trainee +#define PAY_SHORT_WYC1 "WYC1" + +/// WYC2, Junior Executive +#define PAY_SHORT_WYC2 "WYC2" + +/// WYC3, Executive +#define PAY_SHORT_WYC3 "WYC3" + +/// WYC4, Senior Executive +#define PAY_SHORT_WYC4 "WYC4" + +/// WYC5, Executive Specialist +#define PAY_SHORT_WYC5 "WYC5" + +/// WYC6, Executive Supervisor +#define PAY_SHORT_WYC6 "WYC6" + +/// WYC7, Assistant Manager +#define PAY_SHORT_WYC7 "WYC7" + +/// WYC8, Division Manager +#define PAY_SHORT_WYC8 "WYC8" + +/// WYC9, Chief Executive +#define PAY_SHORT_WYC9 "WYC9" + +/// WYC10, Director +#define PAY_SHORT_WYC10 "WYC10" + +// Weyland Yutani Private Military +/// PMC-OP, Operator, standard PMC. +#define PAY_SHORT_PMC_OP "PMC-OP" + +/// PMC-EN, Enforcer +#define PAY_SHORT_PMC_EN "PMC-EN" + +/// PMC-SS, Support Specialist +#define PAY_SHORT_PMC_SS "PMC-SS" + +/// PMC-MS, Medical Specialist +#define PAY_SHORT_PMC_MS "PMC-MS" + +/// PMC-WS, Weapons Specialist +#define PAY_SHORT_PMC_WS "PMC-WS" + +/// PMC-VS, Vehicle Specialist +#define PAY_SHORT_PMC_VS "PMC-VS" + +/// PMC-XS, Xeno Specialist (Handler) +#define PAY_SHORT_PMC_XS "PMC-XS" + +/// PMC-TL, Team Leader +#define PAY_SHORT_PMC_TL "PMC-TL" + +/// PMC-DOC, Trauma Surgeon +#define PAY_SHORT_PMC_DOC "PMC-DOC" + +/// PMC-ENG, Technician +#define PAY_SHORT_PMC_TEC "PMC-TEC" + +/// PMC-ELR, Elite Responder +#define PAY_SHORT_PMC_ELR "PMC-ELR" + +/// PMC-ELM, Elite Medic +#define PAY_SHORT_PMC_ELM "PMC-ELM" + +/// PMC-ELG, Elite Gunner +#define PAY_SHORT_PMC_ELG "PMC-ELG" + +/// PMC-ETL, Elite Team Leader +#define PAY_SHORT_PMC_ETL "PMC-ETL" + +/// PMC-DIR, PMC Director +#define PAY_SHORT_PMC_DIR "PMC-DIR" diff --git a/code/__DEFINES/radio.dm b/code/__DEFINES/radio.dm index e2bd155fcb..367c35be56 100644 --- a/code/__DEFINES/radio.dm +++ b/code/__DEFINES/radio.dm @@ -33,6 +33,7 @@ #define RADIO_CHANNEL_MEDSCI "MedSci" #define RADIO_CHANNEL_MP "MP" #define RADIO_CHANNEL_NORMANDY "Normandy" +#define RADIO_CHANNEL_SAIPAN "Saipan" #define RADIO_CHANNEL_REQ "Req" #define RADIO_CHANNEL_SENTRY "Sentry Network" #define RADIO_CHANNEL_SPECIAL "special" @@ -61,6 +62,10 @@ #define RADIO_CHANNEL_PMC_CCT "PMC CCT" #define RADIO_CHANNEL_WY_WO "SpecOps" +//Listening Devices +#define RADIO_CHANNEL_BUG_A "Listening Device A" +#define RADIO_CHANNEL_BUG_B "Listening Device B" + //1-Channel ERTs #define RADIO_CHANNEL_DUTCH_DOZEN "DD" #define RADIO_CHANNEL_VAI "VAI" diff --git a/code/__DEFINES/regex.dm b/code/__DEFINES/regex.dm index f56871ec83..a0d9c9a732 100644 --- a/code/__DEFINES/regex.dm +++ b/code/__DEFINES/regex.dm @@ -6,38 +6,38 @@ // The lazy URL finder. Lazy in that it matches the bare minimum // Replicates BYOND's own URL parser in functionality. -var/global/regex/url_find_lazy +GLOBAL_DATUM(url_find_lazy, /regex) // REGEX datums used for process_chat_markup. -var/global/regex/markup_bold -var/global/regex/markup_italics -var/global/regex/markup_strike -var/global/regex/markup_underline +GLOBAL_DATUM(markup_bold, /regex) +GLOBAL_DATUM(markup_italics, /regex) +GLOBAL_DATUM(markup_strike, /regex) +GLOBAL_DATUM(markup_underline, /regex) // Global list for mark-up REGEX datums. // Initialized in the hook, to avoid passing by null value. -var/global/list/markup_regex = list() +GLOBAL_LIST_EMPTY(markup_regex) // Global list for mark-up REGEX tag collection. -var/global/list/markup_tags = list("/" = list("", ""), +GLOBAL_LIST_INIT(markup_tags, list("/" = list("", ""), "*" = list("", ""), "~" = list("", ""), - "_" = list("", "")) + "_" = list("", ""))) /proc/initialize_global_regex() - url_find_lazy = new(@"((https?|byond):\/\/[^\s]*)", "g") + GLOB.url_find_lazy = new(@"((https?|byond):\/\/[^\s]*)", "g") - markup_bold = new("((\\W|^)\\*)(\[^\\*\]*)(\\*(\\W|$))", "g") - markup_italics = new("((\\W|^)\\/)(\[^\\/\]*)(\\/(\\W|$))", "g") - markup_strike = new("((\\W|^)\\~)(\[^\\~\]*)(\\~(\\W|$))", "g") - markup_underline = new("((\\W|^)\\_)(\[^\\_\]*)(\\_(\\W|$))", "g") + GLOB.markup_bold = new("((\\W|^)\\*)(\[^\\*\]*)(\\*(\\W|$))", "g") + GLOB.markup_italics = new("((\\W|^)\\/)(\[^\\/\]*)(\\/(\\W|$))", "g") + GLOB.markup_strike = new("((\\W|^)\\~)(\[^\\~\]*)(\\~(\\W|$))", "g") + GLOB.markup_underline = new("((\\W|^)\\_)(\[^\\_\]*)(\\_(\\W|$))", "g") // List needs to be initialized here, due to DM mixing and matching pass-by-value and -reference as it chooses. - markup_regex = list( - "/" = markup_italics, - "*" = markup_bold, - "~" = markup_strike, - "_" = markup_underline, + GLOB.markup_regex = list( + "/" = GLOB.markup_italics, + "*" = GLOB.markup_bold, + "~" = GLOB.markup_strike, + "_" = GLOB.markup_underline, ) return 1 diff --git a/code/__DEFINES/sentry_laptop_configurations.dm b/code/__DEFINES/sentry_laptop_configurations.dm index 8626ba2cfa..86c7e646c3 100644 --- a/code/__DEFINES/sentry_laptop_configurations.dm +++ b/code/__DEFINES/sentry_laptop_configurations.dm @@ -1,7 +1,6 @@ -#define FACTION_USCM "USCM" -#define FACTION_WEYLAND "WY" -#define FACTION_HUMAN "HUMAN" -#define FACTION_COLONY "COLONY" +#define SENTRY_FACTION_WEYLAND "WY" +#define SENTRY_FACTION_HUMAN "HUMAN" +#define SENTRY_FACTION_COLONY "COLONY" #define ROF_SINGLE "SINGLE" #define ROF_BURST "BURST" diff --git a/code/__DEFINES/shuttles.dm b/code/__DEFINES/shuttles.dm index a6d383e771..2d39d0dbd2 100644 --- a/code/__DEFINES/shuttles.dm +++ b/code/__DEFINES/shuttles.dm @@ -96,8 +96,8 @@ #define MOBILE_SHUTTLE_ID_ERT2 "ert_pmc_shuttle" #define MOBILE_SHUTTLE_ID_ERT3 "ert_upp_shuttle" #define MOBILE_SHUTTLE_ID_ERT4 "ert_twe_shuttle" -#define MOBILE_SHUTTLE_ID_ERT_SMALL "ert_rescue_shuttle" -#define MOBILE_SHUTTLE_ID_ERT_BIG "ert_boarding_shuttle" +#define MOBILE_SHUTTLE_ID_ERT_SMALL "ert_small_shuttle_north" +#define MOBILE_SHUTTLE_ID_ERT_BIG "ert_shuttle_big" #define MOBILE_TRIJENT_ELEVATOR "trijentshuttle2" #define STAT_TRIJENT_EMPTY "trijent_empty" @@ -115,6 +115,7 @@ #define DROPSHIP_MIDWAY "dropship_midway" #define DROPSHIP_ALAMO "dropship_alamo" #define DROPSHIP_NORMANDY "dropship_normandy" +#define DROPSHIP_SAIPAN "dropship_saipan" #define DROPSHIP_UPP "dropship_upp" #define DROPSHIP_CYCLONE "dropship_cyclone" #define DROPSHIP_TORNADO "dropship_tornado" @@ -144,6 +145,14 @@ #define ESCAPE_SHUTTLE_DOCK_PREFIX "almayer-hangar-escape-shuttle-" +#define ERT_SHUTTLE_DEFAULT_RECHARGE 90 SECONDS + +#define ADMIN_LANDING_PAD_1 "base-ert1" +#define ADMIN_LANDING_PAD_2 "base-ert2" +#define ADMIN_LANDING_PAD_3 "base-ert3" +#define ADMIN_LANDING_PAD_4 "base-ert4" +#define ADMIN_LANDING_PAD_5 "base-ert5" + #define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_ONE "garrow_vehicle_elevator_one" #define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_TWO "garrow_vehicle_elevator_two" #define MOBILE_SHUTTLE_SHIPMAP_ELEVATOR_CARGO "garrow_cargo_elevator" diff --git a/code/__DEFINES/skills.dm b/code/__DEFINES/skills.dm index 57c19d02f8..a80f894118 100644 --- a/code/__DEFINES/skills.dm +++ b/code/__DEFINES/skills.dm @@ -42,6 +42,8 @@ #define SKILL_SPEC_DEFAULT 7 /// Is trained to use specialist gear, but hasn't picked a kit. #define SKILL_SPEC_TRAINED 1 +/// Is trained to use specialist gear & HAS picked a kit. (Functionally same as SPEC_ROCKET) +#define SKILL_SPEC_KITTED 2 /// Can use RPG #define SKILL_SPEC_ROCKET 2 /// Can use thermal cloaks and custom M4RA rifle @@ -68,10 +70,11 @@ // engineer skill #define SKILL_ENGINEER_DEFAULT 2 -#define SKILL_ENGINEER_TRAINED 1 //barricade repair && c4 use (mini-engis, specs) -#define SKILL_ENGINEER_ENGI 2 //plasteel barricade deconstruction, hacking&&planet engine fixing&&apc building, Telecomms fixing (Combat Engi, OT, etc.) -#define SKILL_ENGINEER_MASTER 3 //Synths -#define SKILL_ENGINEER_MAX 3 +#define SKILL_ENGINEER_NOVICE 1 //barricade repair && c4 use (mini-engis, specs) +#define SKILL_ENGINEER_TRAINED 2 //plasteel barricade deconstruction, hacking&&planet engine fixing&&apc building, Telecomms fixing (OT, etc.) +#define SKILL_ENGINEER_ENGI 3 // Slightly faster at everything (Combat Technicians) +#define SKILL_ENGINEER_MASTER 4 //Synths +#define SKILL_ENGINEER_MAX 4 //medical skill #define SKILL_MEDICAL_DEFAULT 0 diff --git a/code/__DEFINES/sounds.dm b/code/__DEFINES/sounds.dm index ffa94f0425..2d715f5918 100644 --- a/code/__DEFINES/sounds.dm +++ b/code/__DEFINES/sounds.dm @@ -32,6 +32,28 @@ #define SOUND_CHANNEL_LOBBY 1023 #define SOUND_CHANNEL_Z 1024 + +//default byond sound echo list index positions. +//ECHO_DIRECT and ECHO_ROOM are the only two that actually appear to do anything, and represent the dry and wet channels of the environment effects, respectively. +#define ECHO_DIRECT 1 +#define ECHO_DIRECTHF 2 +#define ECHO_ROOM 3 +#define ECHO_ROOMHF 4 +#define ECHO_OBSTRUCTION 5 +#define ECHO_OBSTRUCTIONLFRATIO 6 +#define ECHO_OCCLUSION 7 +#define ECHO_OCCLUSIONLFRATIO 8 +#define ECHO_OCCLUSIONROOMRATIO 9 +#define ECHO_OCCLUSIONDIRECTRATIO 10 +#define ECHO_EXCLUSION 11 +#define ECHO_EXCLUSIONLFRATIO 12 +#define ECHO_OUTSIDEVOLUMEHF 13 +#define ECHO_DOPPLERFACTOR 14 +#define ECHO_ROLLOFFFACTOR 15 +#define ECHO_ROOMROLLOFFFACTOR 16 +#define ECHO_AIRABSORPTIONFACTOR 17 +#define ECHO_FLAGS 18 + //default byond sound environments #define SOUND_ENVIRONMENT_NONE -1 #define SOUND_ENVIRONMENT_GENERIC 0 diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm index c4734498c9..989c39cd7d 100644 --- a/code/__DEFINES/subsystems.dm +++ b/code/__DEFINES/subsystems.dm @@ -89,13 +89,13 @@ //! ### SS initialization hints /** * Negative values incidate a failure or warning of some kind, positive are good. - * 0 and 1 are unused so that TRUE and FALSE are guarenteed to be invalid values. + * 0 and 1 are unused so that TRUE and FALSE are guaranteed to be invalid values. */ /// Subsystem failed to initialize entirely. Print a warning, log, and disable firing. #define SS_INIT_FAILURE -2 -/// The default return value which must be overriden. Will succeed with a warning. +/// The default return value which must be overridden. Will succeed with a warning. #define SS_INIT_NONE -1 /// Subsystem initialized sucessfully. @@ -123,6 +123,7 @@ #define SS_INIT_NIGHTMARE 21.5 #define SS_INIT_TIMETRACK 21.1 #define SS_INIT_HUMANS 21 +#define SS_INIT_WHO 20 #define SS_INIT_POWER 19 #define SS_INIT_INFLUXMCSTATS 12 #define SS_INIT_INFLUXSTATS 11 diff --git a/code/__DEFINES/supply.dm b/code/__DEFINES/supply.dm new file mode 100644 index 0000000000..0369b27120 --- /dev/null +++ b/code/__DEFINES/supply.dm @@ -0,0 +1,17 @@ +//We use the cost to determine the spawn chance this equals out the crates that spawn later in the round. +#define ASRS_HIGHEST_WEIGHT 0 //warning this weight wont change. +#define ASRS_VERY_HIGH_WEIGHT 5 +#define ASRS_HIGH_WEIGHT 15 +#define ASRS_MEDIUM_WEIGHT 25 +#define ASRS_LOW_WEIGHT 35 +#define ASRS_VERY_LOW_WEIGHT 50 +#define ASRS_LOWEST_WEIGHT 100 + +// List of pools of supply packs, rolled individually by the ASRS system +/// Main pool of ASRS supplies, dispensing military supplies such as ammo +#define ASRS_POOL_MAIN "Main" +/// Secondary ASRS pool dispening food related items for MessTech +#define ASRS_POOL_FOOD "Food" + +/// Divider to the amount of xeno forces on the planet to ASRS provided crates. It is used as such sqrt(xenos/ASRS_XENO_CRATES_DIVIDER)) +#define ASRS_XENO_CRATES_DIVIDER 4 diff --git a/code/__DEFINES/surgery.dm b/code/__DEFINES/surgery.dm index 9257172eee..d63c6da26a 100644 --- a/code/__DEFINES/surgery.dm +++ b/code/__DEFINES/surgery.dm @@ -38,6 +38,15 @@ unless the surgical tool is completely unsuited to what it's being used for.*/ ///A tool that's perfect for the surgery. #define SURGERY_TOOL_MULT_IDEAL 1 +///The (no) chance of failure for surgery because the correct tools/conditions are used or skill compensates +#define SURGERY_FAILURE_IMPOSSIBLE 0 +///The chance of failure for surgery because the the tool/ground is SURGERY_TOOL_MULT_BAD_SUBSTITUTE/SURGERY_SURFACE_MULT_UNSUITED and skill can't compensate enough +#define SURGERY_FAILURE_UNLIKELY 5 +///The chance of failure for surgery because the the tool/ground is SURGERY_TOOL_MULT_AWFUL/SURGERY_SURFACE_MULT_AWFUL and skill can't compensate enough +#define SURGERY_FAILURE_POSSIBLE 25 +///The chance of failure for surgery because the the tool and ground is some combination worse than awful and skill can't compensate enough +#define SURGERY_FAILURE_LIKELY 50 + //When initiating surgeries, these define their order when listed in initiation selector or 'you can't use this tool for anything, but could x, y, or z' messages. ///Appears first in lists. Ex. larva surgery, opening incision. Immediately life-threatening or initiation surgeries. #define SURGERY_PRIORITY_MAXIMUM 5 diff --git a/code/__DEFINES/text.dm b/code/__DEFINES/text.dm index e3724e65f6..3eb5b8e61b 100644 --- a/code/__DEFINES/text.dm +++ b/code/__DEFINES/text.dm @@ -17,3 +17,10 @@ #define SHOW_MESSAGE_VISIBLE 1 #define SHOW_MESSAGE_AUDIBLE 2 + +//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam +#define MAX_MESSAGE_LEN 1024 +#define MAX_EMOTE_LEN 1024 +#define MAX_PAPER_MESSAGE_LEN 3072 +#define MAX_BOOK_MESSAGE_LEN 9216 +#define MAX_NAME_LEN 28 diff --git a/code/__DEFINES/tgs.config.dm b/code/__DEFINES/tgs.config.dm index e0d5f1baac..bd30a67079 100644 --- a/code/__DEFINES/tgs.config.dm +++ b/code/__DEFINES/tgs.config.dm @@ -8,5 +8,5 @@ #define TGS_WARNING_LOG(message) log_world("TGS Warn: [##message]") #define TGS_ERROR_LOG(message) log_world("TGS Error: [##message]") #define TGS_NOTIFY_ADMINS(event) message_admins(##event) -#define TGS_CLIENT_COUNT GLOB.clients.len +#define TGS_CLIENT_COUNT length(GLOB.clients) #define TGS_PROTECT_DATUM(Path) GENERAL_PROTECT_DATUM(##Path) diff --git a/code/__DEFINES/traits.dm b/code/__DEFINES/traits.dm index 1e6e5cc60b..a7e78e2c26 100644 --- a/code/__DEFINES/traits.dm +++ b/code/__DEFINES/traits.dm @@ -159,6 +159,10 @@ #define TRAIT_DAZED "dazed" /// Apply this to identify a mob as merged with weeds #define TRAIT_MERGED_WITH_WEEDS "merged_with_weeds" +/// Apply this to identify a mob as temporarily muted +#define TRAIT_TEMPORARILY_MUTED "temporarily_muted" +/// Mob wont get hit by stray projectiles +#define TRAIT_NO_STRAY "trait_no_stray" // SPECIES TRAITS /// Knowledge of Yautja technology @@ -169,7 +173,7 @@ #define TRAIT_FOREIGN_BIO "t_foreign_bio" /// Eye color changes on intent. (G1 Synths and WJs) #define TRAIT_INTENT_EYES "t_intent_eyes" -/// Masked synthetic biology. Basic medHUDs will percieve the mob as human. (Infiltrator Synths) +/// Masked synthetic biology. Basic medHUDs will perceive the mob as human. (Infiltrator Synths) #define TRAIT_INFILTRATOR_SYNTH "t_infiltrator_synth" /// Makes it impossible to strip the inventory of this mob. #define TRAIT_UNSTRIPPABLE "t_unstrippable" @@ -177,7 +181,11 @@ // HIVE TRAITS /// If the Hive is a Xenonid Hive #define TRAIT_XENONID "t_xenonid" -/// If the Hive delays round end (this is overriden for some hives). Does not occur naturally. Must be applied in events. +/// if the xeno's connection to the hivemind is cut +#define TRAIT_HIVEMIND_INTERFERENCE "t_interference" +/// If the hive or xeno can use objects. +#define TRAIT_OPPOSABLE_THUMBS "t_thumbs" +/// If the Hive delays round end (this is overridden for some hives). Does not occur naturally. Must be applied in events. #define TRAIT_NO_HIVE_DELAY "t_no_hive_delay" /// If the Hive uses it's colors on the mobs. Does not occur naturally, excepting the Mutated hive. #define TRAIT_NO_COLOR "t_no_color" @@ -223,8 +231,18 @@ #define TRAIT_HARDCORE "t_hardcore" /// If the mob is able to use the vulture rifle or spotting scope #define TRAIT_VULTURE_USER "t_vulture_user" +/// If the mob is currently loading a tutorial +#define TRAIT_IN_TUTORIAL "t_in_tutorial" /// If the mob is cloaked in any form #define TRAIT_CLOAKED "t_cloaked" +/// If the mob claimed a specialist set from a vendor +#define TRAIT_SPEC_VENDOR "t_spec_vendor" +/// If the mob claimed a specialist set from a kit +#define TRAIT_SPEC_KIT "t_spec_kit" +/// What spec set the mob has claimed, if any +#define TRAIT_SPEC(spec_type) "t_spec_[spec_type]" +/// If the mob won't drop items held in face slot when downed +#define TRAIT_IRON_TEETH "t_iron_teeth" // -- ability traits -- /// Xenos with this trait cannot have plasma transfered to them @@ -261,7 +279,10 @@ #define TRAIT_GUN_BIPODDED "t_gun_bipodded" -#define TRAIT_GUN_LIGHT_DEACTIVATED "t_gun_light_deactivated" +#define TRAIT_GUN_LIGHT_FORCE_DEACTIVATED "t_gun_light_deactivated" + +/// If this ID belongs to an ERT member +#define TRAIT_ERT_ID "ert_id" // Miscellaneous item traits. // Do NOT bloat this category, if needed make a new category (like shoe traits, xeno item traits...) @@ -299,6 +320,9 @@ GLOBAL_LIST_INIT(mob_traits, list( TRAIT_REAGENT_SCANNER, TRAIT_ABILITY_BURROWED, TRAIT_VULTURE_USER, + TRAIT_IN_TUTORIAL, + TRAIT_SPEC_KIT, + TRAIT_SPEC_VENDOR, )) /* @@ -338,12 +362,16 @@ GLOBAL_LIST_INIT(traits_by_type, list( "TRAIT_CANNOT_EAT" = TRAIT_CANNOT_EAT, "TRAIT_VULTURE_USER" = TRAIT_VULTURE_USER, "TRAIT_CLOAKED" = TRAIT_CLOAKED, + "TRAIT_SPEC_KIT" = TRAIT_SPEC_KIT, + "TRAIT_SPEC_VENDOR" = TRAIT_SPEC_VENDOR, ), // /mob/living/carbon/human = list( // ), /mob/living/carbon/xenomorph = list( "TRAIT_ABILITY_NO_PLASMA_TRANSFER" = TRAIT_ABILITY_NO_PLASMA_TRANSFER, "TRAIT_ABILITY_OVIPOSITOR" = TRAIT_ABILITY_OVIPOSITOR, + "TRAIT_OPPOSABLE_THUMBS" = TRAIT_OPPOSABLE_THUMBS, + "TRAIT_INTERFERENCE" = TRAIT_HIVEMIND_INTERFERENCE, ), /datum/hive_status = list( "TRAIT_XENONID" = TRAIT_XENONID, @@ -408,6 +436,8 @@ GLOBAL_LIST(trait_name_map) #define TRAIT_SOURCE_JOB "t_s_job" ///Status trait forced by staff #define TRAIT_SOURCE_ADMIN "t_s_admin" +/// Status trait coming from a tutorial +#define TRAIT_SOURCE_TUTORIAL "t_s_tutorials" ///Status trait coming from equipment #define TRAIT_SOURCE_EQUIPMENT(slot) "t_s_equipment_[slot]" ///Status trait coming from skill @@ -417,10 +447,16 @@ GLOBAL_LIST(trait_name_map) ///Status trait coming from ability #define TRAIT_SOURCE_ABILITY(ability) "t_s_ability_[ability]" #define TRAIT_SOURCE_LIMB(limb) "t_s_limb_[limb]" +///Status trait coming from temporary_mute +#define TRAIT_SOURCE_TEMPORARY_MUTE "t_s_temporary_mute" ///Status trait forced by the xeno action charge #define TRAIT_SOURCE_XENO_ACTION_CHARGE "t_s_xeno_action_charge" +///Status trait coming from hivemind interference +#define TRAIT_SOURCE_HIVEMIND_INTERFERENCE "t_s_hivemind_interference" ///Status trait coming from a xeno nest #define XENO_NEST_TRAIT "xeno_nest" +///Status trait from a generic throw by xeno abilities +#define XENO_THROW_TRAIT "xeno_throw_trait" //-- structure traits -- ///Status trait coming from being flipped or unflipped. #define TRAIT_SOURCE_FLIP_TABLE "t_s_flip_table" diff --git a/code/__DEFINES/turfs.dm b/code/__DEFINES/turfs.dm index b9a80d4ab2..1b549440de 100644 --- a/code/__DEFINES/turfs.dm +++ b/code/__DEFINES/turfs.dm @@ -1,23 +1,28 @@ -#define RANGE_TURFS(RADIUS, CENTER) \ -block( \ - locate(max(CENTER.x-(RADIUS),1), max(CENTER.y-(RADIUS),1), CENTER.z), \ - locate(min(CENTER.x+(RADIUS),world.maxx), min(CENTER.y+(RADIUS),world.maxy), CENTER.z) \ -) - +/// Returns a list of turfs within H_RADIUS tiles horizontally and V_RADIUS tiles vertically of CENTER. #define RECT_TURFS(H_RADIUS, V_RADIUS, CENTER) \ block( \ - locate(max((CENTER).x-(H_RADIUS),1), max((CENTER).y-(V_RADIUS),1), (CENTER).z), \ - locate(min((CENTER).x+(H_RADIUS),world.maxx), min((CENTER).y+(V_RADIUS),world.maxy), (CENTER).z) \ + (CENTER).x-(H_RADIUS), (CENTER).y-(V_RADIUS), (CENTER).z, \ + (CENTER).x+(H_RADIUS), (CENTER).y+(V_RADIUS), (CENTER).z \ ) +/// Returns a list of turfs within Dist tiles of Center. When Dist >= 5 faster than a `range()` filtered to `/turf`s. +#define RANGE_TURFS(Dist, Center) RECT_TURFS(Dist, Dist, Center) + +/// Returns a list of turfs within Dist tiles of Center, excluding Center. When Dist >= 5 faster than an `orange()` filtered to `/turf`s. +#define ORANGE_TURFS(Dist, Center) (RANGE_TURFS(Dist, Center) - Center) + ///Returns all turfs in a zlevel -#define Z_TURFS(ZLEVEL) block(locate(1,1,ZLEVEL), locate(world.maxx, world.maxy, ZLEVEL)) +#define Z_TURFS(ZLEVEL) block(1, 1, (ZLEVEL), world.maxx, world.maxy, (ZLEVEL)) -/// Returns a list of turfs in the rectangle specified by BOTTOM LEFT corner and height/width, checks for being outside the world border for you +/// Returns a list of turfs in the rectangle specified by BOTTOM LEFT corner and height/width #define CORNER_BLOCK(corner, width, height) CORNER_BLOCK_OFFSET(corner, width, height, 0, 0) /// Returns a list of turfs similar to CORNER_BLOCK but with offsets -#define CORNER_BLOCK_OFFSET(corner, width, height, offset_x, offset_y) ((block(locate(corner.x + offset_x, corner.y + offset_y, corner.z), locate(min(corner.x + (width - 1) + offset_x, world.maxx), min(corner.y + (height - 1) + offset_y, world.maxy), corner.z)))) +#define CORNER_BLOCK_OFFSET(corner, width, height, offset_x, offset_y) \ + block( \ + (corner).x + (offset_x), (corner).y + (offset_y), (corner).z, \ + (corner).x + ((width) - 1) + (offset_x), (corner).y + ((height) - 1) + (offset_y), (corner).z \ + ) /// Returns an outline (neighboring turfs) of the given block #define CORNER_OUTLINE(corner, width, height) ( \ diff --git a/code/__DEFINES/tutorial.dm b/code/__DEFINES/tutorial.dm new file mode 100644 index 0000000000..75dc7f6da2 --- /dev/null +++ b/code/__DEFINES/tutorial.dm @@ -0,0 +1,6 @@ +#define TUTORIAL_ATOM_FROM_TRACKING(path, varname) var##path/##varname = tracking_atoms[##path] + +#define TUTORIAL_CATEGORY_BASE "Base" // Shouldn't be used outside of base types +#define TUTORIAL_CATEGORY_SS13 "Space Station 13" +#define TUTORIAL_CATEGORY_MARINE "Marine" +#define TUTORIAL_CATEGORY_XENO "Xenomorph" diff --git a/code/__DEFINES/typecheck/humanoids.dm b/code/__DEFINES/typecheck/humanoids.dm index 7076cf67c9..76f561e5fa 100644 --- a/code/__DEFINES/typecheck/humanoids.dm +++ b/code/__DEFINES/typecheck/humanoids.dm @@ -14,7 +14,8 @@ #define isSEA(A) (ishuman(A) && A.job == "Senior Enlisted Advisor") #define issynth(A) (ishuman(A) && istype(A?:species, /datum/species/synthetic)) #define iscolonysynthetic(A) (ishuman(A) && istype(A?:species, /datum/species/synthetic/colonial)) -#define isworkingjoe(A) (iscolonysynthetic(A) && A.job == JOB_WORKING_JOE) +#define isworkingjoe(A) (ishuman(A) && istype(A?:species, /datum/species/synthetic/colonial/working_joe)) +#define ishazardjoe(A) (ishuman(A) && istype(A?:species, /datum/species/synthetic/colonial/working_joe/hazard)) #define isinfiltratorsynthetic(A) (ishuman(A) && istype(A?:species, /datum/species/synthetic/infiltrator)) //Specic group checks, use instead of typechecks (but use traits instead) diff --git a/code/__DEFINES/typecheck/items.dm b/code/__DEFINES/typecheck/items.dm index 09153cde25..5c4d099b81 100644 --- a/code/__DEFINES/typecheck/items.dm +++ b/code/__DEFINES/typecheck/items.dm @@ -1,10 +1,10 @@ #define iswelder(O) (istype(O, /obj/item/tool/weldingtool)) #define iscoil(O) (istype(O, /obj/item/stack/cable_coil)) #define iswire(O) (istype(O, /obj/item/stack/cable_coil)) -#define isweapon(O) (O && is_type_in_list(O, weapons)) +#define isweapon(O) (O && is_type_in_list(O, GLOB.weapons)) #define isgun(O) (istype(O, /obj/item/weapon/gun)) #define isbanana(O) (istype(O, /obj/item/reagent_container/food/snacks/grown/banana)) -#define istool(O) (O && is_type_in_list(O, common_tools)) +#define istool(O) (O && is_type_in_list(O, GLOB.common_tools)) #define ispowerclamp(O) (istype(O, /obj/item/powerloader_clamp)) #define isstorage(O) (istype(O, /obj/item/storage)) #define isclothing(O) (istype(O, /obj/item/clothing)) @@ -12,13 +12,13 @@ #define isdefenses(O) (istype(O, /obj/structure/machinery/defenses)) //Quick type checks for weapons -var/global/list/weapons = list( +GLOBAL_LIST_INIT(weapons, list( /obj/item/weapon, /obj/item/attachable/bayonet -) +)) //Quick type checks for some tools -var/global/list/common_tools = list( +GLOBAL_LIST_INIT(common_tools, list( /obj/item/stack/cable_coil, /obj/item/tool/wrench, /obj/item/tool/weldingtool, @@ -26,7 +26,7 @@ var/global/list/common_tools = list( /obj/item/tool/wirecutters, /obj/item/device/multitool, /obj/item/tool/crowbar -) +)) /obj/item/proc/can_pry() if(pry_capable > IS_PRY_CAPABLE_SIMPLE || HAS_TRAIT(src, TRAIT_TOOL_CROWBAR)) diff --git a/code/__DEFINES/typecheck/mobs_generic.dm b/code/__DEFINES/typecheck/mobs_generic.dm index 1d848decda..aed270cdca 100644 --- a/code/__DEFINES/typecheck/mobs_generic.dm +++ b/code/__DEFINES/typecheck/mobs_generic.dm @@ -1,11 +1,8 @@ -#define isAI(A) (istype(A, /mob/living/silicon/ai)) #define isARES(A) (istype(A, /mob/living/silicon/decoy/ship_ai)) #define isSilicon(A) (istype(A, /mob/living/silicon)) #define isRemoteControlling(M) (M && M.client && M.client.remote_control) -#define isRemoteControllingOrAI(M) ((M && M.client && M.client.remote_control) || (istype(M, /mob/living/silicon/ai))) #define isbrain(A) (istype(A, /mob/living/brain)) -#define isrobot(A) (istype(A, /mob/living/silicon/robot)) #define isanimal(A) (istype(A, /mob/living/simple_animal)) #define isanimalhostile(A) (istype(A, /mob/living/simple_animal/hostile)) #define isanimalretaliate(A) (istype(A, /mob/living/simple_animal/hostile/retaliate)) @@ -17,12 +14,9 @@ #define iscarp(A) (istype(A, /mob/living/simple_animal/hostile/carp)) #define isclown(A) (istype(A, /mob/living/simple_animal/hostile/retaliate/clown)) #define iscarbon(A) (istype(A, /mob/living/carbon)) -#define isborg(A) (isrobot(A) && !ismaintdrone(A)) -#define ishighersilicon(A) (isborg(A) || isRemoteControllingOrAI(A)) #define isliving(A) (istype(A, /mob/living)) #define isobserver(A) (istype(A, /mob/dead/observer)) #define isorgan(A) (istype(A, /obj/limb)) #define isnewplayer(A) (istype(A, /mob/new_player)) -#define ismaintdrone(A) (istype(A,/mob/living/silicon/robot/drone)) #define isHellhound(A) (istype(A, /mob/living/carbon/xenomorph/hellhound)) #define isaghost(A) (copytext(A.key, 1, 2) == "@") diff --git a/code/__DEFINES/vehicle.dm b/code/__DEFINES/vehicle.dm index 8a16172299..5eb6a824d8 100644 --- a/code/__DEFINES/vehicle.dm +++ b/code/__DEFINES/vehicle.dm @@ -7,7 +7,7 @@ #define HDPT_TURRET "turret" #define HDPT_SPECIAL "special" //special pre-installed hardpoints with unique behaviour -#define HDPT_LAYER_WHEELS 1 +#define HDPT_LAYER_WHEELS 0.01 // so it appears below xenomorphs and other mobs #define HDPT_LAYER_SUPPORT 2 #define HDPT_LAYER_ARMOR 3 #define HDPT_LAYER_TURRET 4 diff --git a/code/__DEFINES/vendors.dm b/code/__DEFINES/vendors.dm index 04ee5ffef2..70e30edddf 100644 --- a/code/__DEFINES/vendors.dm +++ b/code/__DEFINES/vendors.dm @@ -19,6 +19,8 @@ #define MARINE_CAN_BUY_COMBAT_ARMOR "combat_armor" #define MARINE_CAN_BUY_KIT "kit" #define MARINE_CAN_BUY_DRESS "dress" +#define CIVILIAN_CAN_BUY_BACKPACK "civilian_backpack" +#define CIVILIAN_CAN_BUY_UTILITY "civilian_utility" #define MARINE_CAN_BUY_ALL list(MARINE_CAN_BUY_UNIFORM = 1, MARINE_CAN_BUY_SHOES = 1, MARINE_CAN_BUY_HELMET = 1, MARINE_CAN_BUY_ARMOR = 1, MARINE_CAN_BUY_GLOVES = 1, MARINE_CAN_BUY_EAR = 1, MARINE_CAN_BUY_BACKPACK = 1, MARINE_CAN_BUY_POUCH = 2, MARINE_CAN_BUY_BELT = 1, MARINE_CAN_BUY_GLASSES = 1, MARINE_CAN_BUY_MASK = 1, MARINE_CAN_BUY_ESSENTIALS = 1, MARINE_CAN_BUY_SECONDARY = 1, MARINE_CAN_BUY_ATTACHMENT = 1, MARINE_CAN_BUY_MRE = 1, MARINE_CAN_BUY_ACCESSORY = 1, MARINE_CAN_BUY_COMBAT_SHOES = 1, MARINE_CAN_BUY_COMBAT_HELMET = 1, MARINE_CAN_BUY_COMBAT_ARMOR = 1, MARINE_CAN_BUY_KIT = 1, MARINE_CAN_BUY_DRESS = 99) @@ -67,3 +69,15 @@ //Whether or not to load ammo boxes depending on ammo loaded into the vendor //Only relevant in big vendors, like Requisitions or Squad Prep #define VEND_LOAD_AMMO_BOXES (1<<9) +/// Vendors with this flag will fill retroactively based on latejoining players, +/// and expect a scale multiplier instead of amount of items +#define VEND_STOCK_DYNAMIC (1<<10) +/// Vends props looking like the items instead of the actual items. Basically for tutorials. +#define VEND_PROPS (1<<11) + +// Redemption Tokens +#define VEND_TOKEN_ENGINEER "Engineer" +#define VEND_TOKEN_SPEC "Specialist" +#define VEND_TOKEN_SYNTH "Synthetic" +/// Token invalid/unrecognised. +#define VEND_TOKEN_VOID "Void" diff --git a/code/__DEFINES/weapon_stats.dm b/code/__DEFINES/weapon_stats.dm index 4816fa38e5..4a6c05435a 100644 --- a/code/__DEFINES/weapon_stats.dm +++ b/code/__DEFINES/weapon_stats.dm @@ -18,17 +18,17 @@ Accuracy determines if your bullets will hit whatever you're shooting at. Think It DOES NOT control where your bullets go, that's scatter and projectile variance. .../update_projectiles/guns/code.dm -var/accuracy_mult //Base firearm accuracy when firing from a 2-hand, "secure", wielded, etc, whatever grip. -var/accuracy_mult_unwielded //Base firearm accuracy when firing from hip. Both of these default to 1, with additions or subtractions from the mult vars. + var/accuracy_mult //Base firearm accuracy when firing from a 2-hand, "secure", wielded, etc, whatever grip. + var/accuracy_mult_unwielded //Base firearm accuracy when firing from hip. Both of these default to 1, with additions or subtractions from the mult vars. .../updated_projectiles/ammo_datums.dm -var/accuracy //This is added to the firearm's base accuracy when the specific ammo is shot. -var/accuracy_var_low //These two vars are used for the upper and lower bounds of accuracy variance when a bullet is fired. Bullet 'wobble' if you will. -var/accuracy_var_high + var/accuracy //This is added to the firearm's base accuracy when the specific ammo is shot. + var/accuracy_var_low //These two vars are used for the upper and lower bounds of accuracy variance when a bullet is fired. Bullet 'wobble' if you will. + var/accuracy_var_high .../updated_projectiles/gun_attachables.dm -var/accuracy_mult //Attachments ADD an additional multiplier to the base config value. Only ever use accuracy_mult config references. -var/accuracy_mult_unwielded + var/accuracy_mult //Attachments ADD an additional multiplier to the base config value. Only ever use accuracy_mult config references. + var/accuracy_mult_unwielded */ #define HIT_ACCURACY_TIER_1 5 @@ -136,7 +136,9 @@ As such, don't expect any values assigned to common firearms to even consider ho //How many ticks you have to wait between firing. Burst delay uses the same variable! */ +#define FIRE_DELAY_TIER_AMR 30 #define FIRE_DELAY_TIER_VULTURE 20 +#define FIRE_DELAY_TIER_SNIPER 15 #define FIRE_DELAY_TIER_1 10 #define FIRE_DELAY_TIER_2 9 #define FIRE_DELAY_TIER_3 8 diff --git a/code/__DEFINES/xeno.dm b/code/__DEFINES/xeno.dm index 0f2454105c..7e30291260 100644 --- a/code/__DEFINES/xeno.dm +++ b/code/__DEFINES/xeno.dm @@ -63,6 +63,9 @@ #define ACID_SPRAY_LINE 0 #define ACID_SPRAY_CONE 1 +/// Defines for Abomination ability /datum/action/xeno_action/activable/feralfrenzy +#define SINGLETARGETGUT 0 +#define AOETARGETGUT 1 #define WARDEN_HEAL_SHIELD 0 #define WARDEN_HEAL_HP 1 @@ -178,6 +181,20 @@ /// The time until you can re-corrupt a comms relay after the last pylon was destroyed #define XENO_PYLON_DESTRUCTION_DELAY (5 MINUTES) +/// Evolution boost during hijack +#define XENO_HIJACK_EVILUTION_BUFF 10 + +/// For how long the buff lasts +#define XENO_HIJACK_EVILUTION_TIME (3 MINUTES) + +/// If this is marine to xeno ratio during hijack, xenos see marines on tacmap +#define HIJACK_RATIO_FOR_TACMAP 0.8 + +/// Xenos need to have their number to marines ratio lower than this to get larvae from pylons +#define ENDGAME_LARVA_CAP_MULTIPLIER 0.5 + +/// What percent of their numbers xeno get from pylons +#define LARVA_ADDITION_MULTIPLIER 0.10 /// The time against away_timer when an AFK xeno larva can be replaced #define XENO_LEAVE_TIMER_LARVA 80 //80 seconds @@ -252,11 +269,6 @@ #define XENO_PLASMA_TIER_8 800 * XENO_UNIVERSAL_PLASMAMULT #define XENO_PLASMA_TIER_10 1000 * XENO_UNIVERSAL_PLASMAMULT -// Resource stockpile bands -#define XENO_CRYSTAL_LOW 50 -#define XENO_CRYSTAL_MEDIUM 100 -#define XENO_CRYSTAL_HIGH 150 - // Plasma gain bands #define XENO_PLASMA_GAIN_TIER_1 1 #define XENO_PLASMA_GAIN_TIER_2 1.5 @@ -354,6 +366,48 @@ #define RESIN_CONSTRUCTION_NO_MAX -1 +// -------------- // +// STRAIN DEFINES // +// -------------- // + +// Facehugger strain flags +#define FACEHUGGER_WATCHER "Watcher" + +// Drone strain flags +#define DRONE_HEALER "Healer" +#define DRONE_GARDENER "Gardener" + +// Hivelord strain flags +#define HIVELORD_RESIN_WHISPERER "Resin Whisperer" + +// Carrier strain flags +#define CARRIER_EGGSAC "Eggsac" + +// Boiler strain flags +#define BOILER_TRAPPER "Trapper" + +// Runner strain flags +#define RUNNER_ACIDER "Acider" + +// Lurker strain flags +#define LURKER_VAMPIRE "Vampire" + +// Ravager strain flags +#define RAVAGER_HEDGEHOG "Hedgehog" +#define RAVAGER_BERSERKER "Berserker" + +// Defender strain flags +#define DEFENDER_STEELCREST "Steelcrest" + +// Crusher strain flags +#define CRUSHER_CHARGER "Charger" + +// Praetorian strain flags +#define PRAETORIAN_VANGUARD "Vanguard" +#define PRAETORIAN_DANCER "Dancer" +#define PRAETORIAN_WARDEN "Warden" +#define PRAETORIAN_OPPRESSOR "Oppressor" + ///////////////////////////////////////////////////////////////////////////////////// // // Modifiers @@ -583,9 +637,7 @@ #define XENO_STRUCTURE_CORE "hive core" #define XENO_STRUCTURE_CLUSTER "hive cluster" #define XENO_STRUCTURE_PYLON "hive pylon" -#define XENO_STRUCTURE_POOL "spawn pool" #define XENO_STRUCTURE_EGGMORPH "egg morpher" -#define XENO_STRUCTURE_EVOPOD "evolution pod" #define XENO_STRUCTURE_RECOVERY "recovery node" #define XENO_STRUCTURE_NEST "thick resin nest" @@ -658,14 +710,15 @@ // PARAMETERS: // source_hive integer the hive to check the alliance of // target_hive integer the target hive to see if the source_hive is allied to it. -#define HIVE_ALLIED_TO_HIVE(source_hive, target_hive) (source_hive == target_hive || GLOB.hive_datum[source_hive]?.faction_is_ally(GLOB.hive_datum[target_hive]?.internal_faction)) +#define HIVE_ALLIED_TO_HIVE(source_hive, target_hive) ((source_hive) == (target_hive) || GLOB.hive_datum[source_hive]?.faction_is_ally(GLOB.hive_datum[target_hive]?.internal_faction)) -#define QUEEN_SPAWN_TIMEOUT (2 MINUTES) +#define QUEEN_SPAWN_TIMEOUT (1 MINUTES) #define FIRE_IMMUNITY_NONE 0 #define FIRE_IMMUNITY_NO_DAMAGE (1<<0) #define FIRE_IMMUNITY_NO_IGNITE (1<<1) #define FIRE_IMMUNITY_XENO_FRENZY (1<<2) +#define FIRE_VULNERABILITY (1<<3) #define FIRE_MULTIPLIER_BASE 1 #define FIRE_MULTIPLIER_LOW 1.25 diff --git a/code/__HELPERS/#maths.dm b/code/__HELPERS/#maths.dm index 5419b9cd96..076d96e012 100644 --- a/code/__HELPERS/#maths.dm +++ b/code/__HELPERS/#maths.dm @@ -1,72 +1,50 @@ // Credits to Nickr5 for the useful procs I've taken from his library resource. -var/const/E = 2.71828183 -var/const/Sqrt2 = 1.41421356 - // List of square roots for the numbers 1-100. -var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, +GLOBAL_LIST_INIT(sqrtTable, list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, - 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10) + 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10)) // MATH DEFINES -#define Atan2(x, y) (!x && !y ? 0 : \ - (y >= 0 ? \ - arccos(x / sqrt(x*x + y*y)) : \ - -(arccos(x / sqrt(x*x + y*y))) \ - ) \ - ) -#define Ceiling(x) (-round(-x)) -#define Clamp(val, min_val, max_val) (max(min_val, min(val, max_val))) -#define CLAMP01(x) (clamp(x, 0, 1)) +#define CLAMP01(x) (clamp((x), 0, 1)) // cotangent -#define Cot(x) (1 / Tan(x)) +#define Cot(x) (1 / tan(x)) // cosecant #define Csc(x) (1 / sin(x)) -#define Default(a, b) (a ? a : b) -#define Floor(x) (round(x)) - -//Finds nearest integer to x, above or below -//something.5 or higher, round up, else round down -#define roundNearest(x) (((Ceiling(x) - x) <= (x - Floor(x))) ? Ceiling(x) : Floor(x)) +#define Default(a, b) ((a) ? (a) : (b)) // Greatest Common Divisor - Euclid's algorithm -#define Gcd(a, b) (b ? Gcd(b, a % b) : a) +#define Gcd(a, b) ((b) ? Gcd((b), (a) % (b)) : (a)) -#define Inverse(x) (1 / x) -#define IsEven(x) (x % 2 == 0) +#define Inverse(x) (1 / (x)) +#define IsEven(x) ((x) % 2 == 0) -// Returns true if val is from min to max, inclusive. -#define IsInRange(val, min, max) (min <= val && val <= max) - -#define IsInteger(x) (Floor(x) == x) +#define IsInteger(x) (floor(x) == (x)) #define IsOdd(x) (!IsEven(x)) -#define IsMultiple(x, y) (x % y == 0) +#define IsMultiple(x, y) ((x) % (y) == 0) // Least Common Multiple -#define Lcm(a, b) (abs(a) / Gcd(a, b) * abs(b)) +#define Lcm(a, b) (abs(a) / Gcd((a), (b)) * abs(b)) // Returns the nth root of x. -#define Root(n, x) (x ** (1 / n)) +#define NRoot(n, x) ((x) ** (1 / (n))) // secant #define Sec(x) (1 / cos(x)) -// tangent -#define Tan(x) (sin(x) / cos(x)) - // 57.2957795 = 180 / Pi -#define ToDegrees(radians) (radians * 57.2957795) +#define ToDegrees(radians) ((radians) * 57.2957795) // 0.0174532925 = Pi / 180 -#define ToRadians(degrees) (degrees * 0.0174532925) +#define ToRadians(degrees) ((degrees) * 0.0174532925) // min is inclusive, max is exclusive -#define WRAP(val, min, max) clamp(( min == max ? min : (val) - (round(((val) - (min))/((max) - (min))) * ((max) - (min))) ),min,max) +#define WRAP(val, min, max) clamp(( (min) == (max) ? (min) : (val) - (floor(((val) - (min))/((max) - (min))) * ((max) - (min))) ),(min),(max)) // MATH PROCS @@ -81,7 +59,7 @@ var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, // Convert to polar coordinates var/radius = sqrt(relative_coords[1]**2 + relative_coords[2]**2) - var/phi = Atan2(relative_coords[1], relative_coords[2]) + var/phi = arctan(relative_coords[1], relative_coords[2]) // Rotate the point around the axis phi += degrees @@ -94,11 +72,6 @@ var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, return rotated_point -// Round up -/proc/n_ceil(num) - if(isnum(num)) - return round(num)+1 - ///Format a power value in W, kW, MW, or GW. /proc/display_power(powerused) if(powerused < 1000) //Less than a kW @@ -109,89 +82,6 @@ var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, return "[round((powerused * 0.000001),0.001)] MW" return "[round((powerused * 0.000000001),0.0001)] GW" -///Calculate the angle between two movables and the west|east coordinate -/proc/get_angle(atom/movable/start, atom/movable/end)//For beams. - if(!start || !end) - return 0 - var/dy =(32 * end.y + end.pixel_y) - (32 * start.y + start.pixel_y) - var/dx =(32 * end.x + end.pixel_x) - (32 * start.x + start.pixel_x) - if(!dy) - return (dx >= 0) ? 90 : 270 - . = arctan(dx/dy) - if(dy < 0) - . += 180 - else if(dx < 0) - . += 360 - -/// Angle between two arbitrary points and horizontal line same as [/proc/get_angle] -/proc/get_angle_raw(start_x, start_y, start_pixel_x, start_pixel_y, end_x, end_y, end_pixel_x, end_pixel_y) - var/dy = (32 * end_y + end_pixel_y) - (32 * start_y + start_pixel_y) - var/dx = (32 * end_x + end_pixel_x) - (32 * start_x + start_pixel_x) - if(!dy) - return (dx >= 0) ? 90 : 270 - . = arctan(dx/dy) - if(dy < 0) - . += 180 - else if(dx < 0) - . += 360 - -///for getting the angle when animating something's pixel_x and pixel_y -/proc/get_pixel_angle(y, x) - if(!y) - return (x >= 0) ? 90 : 270 - . = arctan(x/y) - if(y < 0) - . += 180 - else if(x < 0) - . += 360 - -/** - * Get a list of turfs in a line from `starting_atom` to `ending_atom`. - * - * Uses the ultra-fast [Bresenham Line-Drawing Algorithm](https://en.wikipedia.org/wiki/Bresenham%27s_line_algorithm). - */ -/proc/get_line(atom/starting_atom, atom/ending_atom) - var/current_x_step = starting_atom.x//start at x and y, then add 1 or -1 to these to get every turf from starting_atom to ending_atom - var/current_y_step = starting_atom.y - var/starting_z = starting_atom.z - - var/list/line = list(get_turf(starting_atom))//get_turf(atom) is faster than locate(x, y, z) - - var/x_distance = ending_atom.x - current_x_step //x distance - var/y_distance = ending_atom.y - current_y_step - - var/abs_x_distance = abs(x_distance)//Absolute value of x distance - var/abs_y_distance = abs(y_distance) - - var/x_distance_sign = SIGN(x_distance) //Sign of x distance (+ or -) - var/y_distance_sign = SIGN(y_distance) - - var/x = abs_x_distance >> 1 //Counters for steps taken, setting to distance/2 - var/y = abs_y_distance >> 1 //Bit-shifting makes me l33t. It also makes get_line() unnessecarrily fast. - - if(abs_x_distance >= abs_y_distance) //x distance is greater than y - for(var/distance_counter in 0 to (abs_x_distance - 1))//It'll take abs_x_distance steps to get there - y += abs_y_distance - - if(y >= abs_x_distance) //Every abs_y_distance steps, step once in y direction - y -= abs_x_distance - current_y_step += y_distance_sign - - current_x_step += x_distance_sign //Step on in x direction - line += locate(current_x_step, current_y_step, starting_z)//Add the turf to the list - else - for(var/distance_counter in 0 to (abs_y_distance - 1)) - x += abs_x_distance - - if(x >= abs_y_distance) - x -= abs_y_distance - current_x_step += x_distance_sign - - current_y_step += y_distance_sign - line += locate(current_x_step, current_y_step, starting_z) - return line - - ///chances are 1:value. anyprob(1) will always return true /proc/anyprob(value) return (rand(1,value)==value) @@ -207,7 +97,7 @@ var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, var/static/list/units_prefix = list("", "un", "duo", "tre", "quattuor", "quin", "sex", "septen", "octo", "novem") var/static/list/tens_prefix = list("", "decem", "vigin", "trigin", "quadragin", "quinquagin", "sexagin", "septuagin", "octogin", "nongen") var/static/list/one_to_nine = list("monuple", "double", "triple", "quadruple", "quintuple", "sextuple", "septuple", "octuple", "nonuple") - number = round(number) + number = floor(number) switch(number) if(0) return "empty tuple" @@ -216,7 +106,7 @@ var/list/sqrtTable = list(1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, if(10 to 19) return "[units_prefix[(number%10)+1]]decuple" if(20 to 99) - return "[units_prefix[(number%10)+1]][tens_prefix[round((number % 100)/10)+1]]tuple" + return "[units_prefix[(number%10)+1]][tens_prefix[floor((number % 100)/10)+1]]tuple" if(100) return "centuple" else //It gets too tedious to use latin prefixes from here. diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm index ff63e33beb..936be4aaef 100644 --- a/code/__HELPERS/_lists.dm +++ b/code/__HELPERS/_lists.dm @@ -103,7 +103,7 @@ /proc/bitfield_to_list(bitfield = 0, list/wordlist) var/list/return_list = list() if(islist(wordlist)) - var/max = min(wordlist.len, 24) + var/max = min(length(wordlist), 24) var/bit = 1 for(var/i in 1 to max) if(bitfield & bit) @@ -128,17 +128,23 @@ * You should only pass integers in. */ /proc/pick_weight(list/list_to_pick) + if(length(list_to_pick) == 0) + return null + var/total = 0 - var/item - for(item in list_to_pick) + for(var/item in list_to_pick) if(!list_to_pick[item]) list_to_pick[item] = 0 total += list_to_pick[item] - total = rand(0, total) - for(item in list_to_pick) - total -= list_to_pick[item] - if(total <= 0 && list_to_pick[item]) + total = rand(1, total) + for(var/item in list_to_pick) + var/item_weight = list_to_pick[item] + if(item_weight == 0) + continue + + total -= item_weight + if(total <= 0) return item return null @@ -185,10 +191,10 @@ * Returns TRUE if the list had nulls, FALSE otherwise **/ /proc/list_clear_nulls(list/list_to_clear) - var/start_len = list_to_clear.len + var/start_len = length(list_to_clear) var/list/new_list = new(start_len) list_to_clear -= new_list - return list_to_clear.len < start_len + return length(list_to_clear) < start_len ///Return a list with no duplicate entries /proc/unique_list(list/inserted_list) @@ -211,5 +217,6 @@ if(!inserted_list) return - for(var/i in 1 to inserted_list.len - 1) - inserted_list.Swap(i, rand(i, inserted_list.len)) + for(var/i in 1 to length(inserted_list) - 1) + inserted_list.Swap(i, rand(i, length(inserted_list))) + diff --git a/code/__HELPERS/_time.dm b/code/__HELPERS/_time.dm index b929ae8636..5ed4fbcb7d 100644 --- a/code/__HELPERS/_time.dm +++ b/code/__HELPERS/_time.dm @@ -15,19 +15,19 @@ #define DECISECONDS_TO_HOURS /36000 -var/midnight_rollovers = 0 -var/rollovercheck_last_timeofday = 0 +GLOBAL_VAR_INIT(midnight_rollovers, 0) +GLOBAL_VAR_INIT(rollovercheck_last_timeofday, 0) // Real time that is still reliable even when the round crosses over midnight time reset. #define REALTIMEOFDAY (world.timeofday + (864000 * MIDNIGHT_ROLLOVER_CHECK)) -#define MIDNIGHT_ROLLOVER_CHECK ( rollovercheck_last_timeofday != world.timeofday ? update_midnight_rollover() : midnight_rollovers ) +#define MIDNIGHT_ROLLOVER_CHECK ( GLOB.rollovercheck_last_timeofday != world.timeofday ? update_midnight_rollover() : GLOB.midnight_rollovers ) /proc/update_midnight_rollover() - if(world.timeofday < rollovercheck_last_timeofday) - midnight_rollovers++ + if(world.timeofday < GLOB.rollovercheck_last_timeofday) + GLOB.midnight_rollovers++ - rollovercheck_last_timeofday = world.timeofday - return midnight_rollovers + GLOB.rollovercheck_last_timeofday = world.timeofday + return GLOB.midnight_rollovers ///Returns the world time in english. Do not use to get date information - starts at 0 + a random time offset from 10 minutes to 24 hours. /proc/worldtime2text(format = "hh:mm", time = world.time) @@ -48,7 +48,7 @@ var/rollovercheck_last_timeofday = 0 return gameTimestamp("mm:ss", time) /proc/time_left_until(target_time, current_time, time_unit) - return CEILING(target_time - current_time, 1) / time_unit + return ceil(target_time - current_time) / time_unit /proc/text2duration(text = "00:00") // Attempts to convert time text back to time value var/split_text = splittext(text, ":") @@ -91,22 +91,22 @@ var/rollovercheck_last_timeofday = 0 return "right now" if(second < 60) return "[second] second[(second != 1)? "s":""]" - var/minute = FLOOR(second / 60, 1) - second = FLOOR(MODULUS(second, 60), round_seconds_to) + var/minute = floor(second / 60) + second = FLOOR(second %% 60, round_seconds_to) var/secondT if(second) secondT = " and [second] second[(second != 1)? "s":""]" if(minute < 60) return "[minute] minute[(minute != 1)? "s":""][secondT]" - var/hour = FLOOR(minute / 60, 1) - minute = MODULUS(minute, 60) + var/hour = floor(minute / 60) + minute %%= 60 var/minuteT if(minute) minuteT = " and [minute] minute[(minute != 1)? "s":""]" if(hour < 24) return "[hour] hour[(hour != 1)? "s":""][minuteT][secondT]" - var/day = FLOOR(hour / 24, 1) - hour = MODULUS(hour, 24) + var/day = floor(hour / 24) + hour %%= 24 var/hourT if(hour) hourT = " and [hour] hour[(hour != 1)? "s":""]" diff --git a/code/__HELPERS/chat.dm b/code/__HELPERS/chat.dm index f7382e1518..4629c69963 100644 --- a/code/__HELPERS/chat.dm +++ b/code/__HELPERS/chat.dm @@ -1,11 +1,12 @@ /** - * Sends a message to TGS chat channels. + * Asynchronously sends a message to TGS chat channels. * - * message - The message to send. + * message - The [/datum/tgs_message_content] to send. * channel_tag - Required. If "", the message with be sent to all connected (Game-type for TGS3) channels. Otherwise, it will be sent to TGS4 channels with that tag (Delimited by ','s). * admin_only - Determines if this communication can only be sent to admin only channels. */ -/proc/send2chat(message, channel_tag, admin_only = FALSE) +/proc/send2chat(datum/tgs_message_content/message, channel_tag, admin_only = FALSE) + set waitfor = FALSE if(channel_tag == null || !world.TgsAvailable()) return @@ -21,7 +22,7 @@ if((!admin_only || channel.is_admin_channel) && (channel_tag in applicable_tags)) channels_to_use += channel - if(channels_to_use.len) + if(length(channels_to_use)) world.TgsChatBroadcast(message, channels_to_use) /** diff --git a/code/__HELPERS/cmp.dm b/code/__HELPERS/cmp.dm index ff8e31ad3e..e27add2c96 100644 --- a/code/__HELPERS/cmp.dm +++ b/code/__HELPERS/cmp.dm @@ -16,12 +16,12 @@ /proc/cmp_name_dsc(atom/a, atom/b) return sorttext(a.name, b.name) -var/cmp_field = "name" +GLOBAL_LIST_INIT(cmp_field, "name") /proc/cmp_records_asc(datum/data/record/a, datum/data/record/b) - return sorttext((b ? b.fields[cmp_field] : ""), (a ? a.fields[cmp_field] : a)) + return sorttext((b ? b.fields[GLOB.cmp_field] : ""), (a ? a.fields[GLOB.cmp_field] : a)) /proc/cmp_records_dsc(datum/data/record/a, datum/data/record/b) - return sorttext(a.fields[cmp_field], b.fields[cmp_field]) + return sorttext(a.fields[GLOB.cmp_field], b.fields[GLOB.cmp_field]) /proc/cmp_ckey_asc(client/a, client/b) return sorttext(b.ckey, a.ckey) @@ -53,11 +53,13 @@ var/cmp_field = "name" if (!.) . = B.qdels - A.qdels -var/atom/cmp_dist_origin=null /proc/cmp_typepaths_asc(A, B) return sorttext("[B]","[A]") +/proc/cmp_typepaths_name_asc(atom/A, atom/B) + return sorttext(initial(A.name), initial(B.name)) + /// Compares mobs based on their timeofdeath value in ascending order /proc/cmp_mob_deathtime_asc(mob/A, mob/B) return A.timeofdeath - B.timeofdeath diff --git a/code/__HELPERS/files.dm b/code/__HELPERS/files.dm index f88fe7168f..c974980bbe 100644 --- a/code/__HELPERS/files.dm +++ b/code/__HELPERS/files.dm @@ -46,11 +46,11 @@ PLEASE USE RESPONSIBLY, Some log files canr each sizes of 4MB! */ /client/proc/file_spam_check() - var/time_to_wait = fileaccess_timer - world.time + var/time_to_wait = GLOB.fileaccess_timer - world.time if(time_to_wait > 0) - to_chat(src, "Error: file_spam_check(): Spam. Please wait [round(time_to_wait/10)] seconds.") + to_chat(src, "Error: file_spam_check(): Spam. Please wait [floor(time_to_wait/10)] seconds.") return 1 - fileaccess_timer = world.time + FTPDELAY + GLOB.fileaccess_timer = world.time + FTPDELAY return 0 #undef FTPDELAY diff --git a/code/__HELPERS/filters.dm b/code/__HELPERS/filters.dm index aa8d77c81d..29e3ec9efb 100644 --- a/code/__HELPERS/filters.dm +++ b/code/__HELPERS/filters.dm @@ -46,7 +46,7 @@ GLOBAL_LIST_INIT(master_filter_info, list( "y" = -1, "size" = 1, "offset" = 0, - "color" = COLOUR_HALF_TRANSPARENT_BLACK + "color" = COLOR_HALF_TRANSPARENT_BLACK ) ), "blur" = list( diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index 37c623bc32..ba27d4192d 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -45,23 +45,20 @@ var/list/turfs = new/list() var/rsq = radius * (radius+0.5) - for(var/turf/T in range(radius, centerturf)) + for(var/turf/T as anything in RANGE_TURFS(radius, centerturf)) var/dx = T.x - centerturf.x var/dy = T.y - centerturf.y if(dx*dx + dy*dy <= rsq) turfs += T return turfs - -//var/debug_mob = 0 - // Will recursively loop through an atom's contents and check for mobs, then it will loop through every atom in that atom's contents. // It will keep doing this until it checks every content possible. This will fix any problems with mobs, that are inside objects, // being unable to hear people due to being in a box within a bag. /proc/recursive_mob_check(atom/O, list/L = list(), recursion_limit = 3, client_check = 1, sight_check = 1, include_radio = 1) - //debug_mob += O.contents.len + //debug_mob += length(O.contents) if(!recursion_limit) return L for(var/atom/A in O.contents) @@ -154,16 +151,6 @@ var/list/speaker_coverage = list() for(var/obj/item/device/radio/R in radios) if(R) - //Cyborg checks. Receiving message uses a bit of cyborg's charge. - var/obj/item/device/radio/borg/BR = R - if(istype(BR) && BR.myborg) - var/mob/living/silicon/robot/borg = BR.myborg - var/datum/robot_component/CO = borg.get_component("radio") - if(!CO) - continue //No radio component (Shouldn't happen) - if(!borg.is_component_functioning("radio") || !borg.cell_use_power(CO.active_usage)) - continue //No power. - var/turf/speaker = get_turf(R) if(speaker) for(var/turf/T in hear(R.canhear_range,speaker)) @@ -203,7 +190,7 @@ if(X1 1 || swapped) swapped = 0 if(gap > 1) - gap = round(gap / 1.3) // 1.3 is the emperic comb sort coefficient + gap = floor(gap / 1.3) // 1.3 is the emperic comb sort coefficient if(gap < 1) gap = 1 - for(var/i = 1; gap + i <= result.len; i++) + for(var/i = 1; gap + i <= length(result); i++) var/atom/l = result[i] //Fucking hate var/atom/r = result[gap+i] //how lists work here if(l.layer > r.layer) //no "result[i].layer" for me diff --git a/code/__HELPERS/job.dm b/code/__HELPERS/job.dm index 220236c6f7..51cc496fee 100644 --- a/code/__HELPERS/job.dm +++ b/code/__HELPERS/job.dm @@ -31,8 +31,10 @@ JOB_XO, JOB_SO, JOB_INTEL, - JOB_PILOT, + JOB_CAS_PILOT, + JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF, + JOB_TANK_CREW, JOB_CORPORATE_LIAISON, JOB_COMBAT_REPORTER, JOB_CHIEF_ENGINEER, diff --git a/code/__HELPERS/lazy_templates.dm b/code/__HELPERS/lazy_templates.dm new file mode 100644 index 0000000000..1a5dcf27f9 --- /dev/null +++ b/code/__HELPERS/lazy_templates.dm @@ -0,0 +1,10 @@ +GLOBAL_LIST_INIT(lazy_templates, generate_lazy_template_map()) + +/** + * Iterates through all lazy template datums that exist and returns a list of them as an associative list of type -> instance. + * */ +/proc/generate_lazy_template_map() + . = list() + for(var/datum/lazy_template/template as anything in subtypesof(/datum/lazy_template)) + .[template] = new template + return . diff --git a/code/__HELPERS/level_traits.dm b/code/__HELPERS/level_traits.dm index 01a972485f..8b3d1b0a38 100644 --- a/code/__HELPERS/level_traits.dm +++ b/code/__HELPERS/level_traits.dm @@ -1,4 +1,3 @@ - #define is_admin_level(z) SSmapping.level_trait(z, ZTRAIT_ADMIN) #define is_ground_level(z) SSmapping.level_trait(z, ZTRAIT_GROUND) diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/lists.dm index 2fc4fee95c..32ea0f5ec3 100644 --- a/code/__HELPERS/lists.dm +++ b/code/__HELPERS/lists.dm @@ -12,7 +12,7 @@ //Returns a list in plain english as a string /proc/english_list(list/input, nothing_text = "nothing", and_text = " and ", comma_text = ", ", final_comma_text = "" ) - var/total = input.len + var/total = length(input) if (!total) return "[nothing_text]" else if (total == 1) @@ -33,9 +33,9 @@ //Returns list element or null. Should prevent "index out of bounds" error. /proc/listgetindex(list/list,index) - if(istype(list) && list.len) + if(istype(list) && length(list)) if(isnum(index)) - if(InRange(index,1,list.len)) + if(ISINRANGE(index,1,length(list))) return list[index] else if(list[index]) return list[index] @@ -87,54 +87,38 @@ result = first ^ second return result -//Pretends to pick an element based on its weight but really just seems to pick a random element. -/proc/pickweight(list/L) - var/total = 0 - var/item - for (item in L) - if (!L[item]) - L[item] = 1 - total += L[item] - - total = rand(1, total) - for (item in L) - total -=L [item] - if (total <= 0) - return item - return null - /// Pick a random element from the list and remove it from the list. /proc/pick_n_take(list/L) RETURN_TYPE(L[_].type) - if(L.len) - var/picked = rand(1,L.len) + if(length(L)) + var/picked = rand(1,length(L)) . = L[picked] L.Cut(picked,picked+1) //Cut is far more efficient that Remove() //Returns the top(last) element from the list and removes it from the list (typical stack function) /proc/pop(list/L) - if(L.len) - . = L[L.len] + if(length(L)) + . = L[length(L)] L.len-- /proc/popleft(list/L) - if(L.len) + if(length(L)) . = L[1] L.Cut(1,2) //Returns the next element in parameter list after first appearance of parameter element. If it is the last element of the list or not present in list, returns first element. /proc/next_in_list(element, list/L) - for(var/i=1, i1, i--) + for(var/i=length(L), i>1, i--) if(L[i] == element) return L[i-1] - return L[L.len] + return L[length(L)] /* * Sorting @@ -144,7 +128,7 @@ /proc/reverselist(list/L) var/list/output = list() if(L) - for(var/i = L.len; i >= 1; i--) + for(var/i = length(L); i >= 1; i--) output += L[i] return output @@ -155,7 +139,7 @@ . = L_n var/L_o[] = L.Copy() var/i - while(L_o.len) + while(length(L_o)) i = pick(L_o) if(!ref) L_n += i else L_n[i] = L_o[i] @@ -171,9 +155,9 @@ //Mergesort: divides up the list into halves to begin the sort /proc/sortKey(list/client/L, order = 1) - if(isnull(L) || L.len < 2) + if(isnull(L) || length(L) < 2) return L - var/middle = L.len / 2 + 1 + var/middle = length(L) / 2 + 1 return mergeKey(sortKey(L.Copy(0,middle)), sortKey(L.Copy(middle)), order) //Mergsort: does the actual sorting and returns the results back to sortAtom @@ -181,7 +165,7 @@ var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) var/client/rL = L[Li] var/client/rR = R[Ri] if(sorttext(rL.ckey, rR.ckey) == order) @@ -189,20 +173,20 @@ else result += R[Ri++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) // Quicksort implementation /proc/sortAtom(list/atom/L, order = 1) - if(isnull(L) || L.len < 2) + if(isnull(L) || length(L) < 2) return L var/startIndex = 1 var/list/atom/M = new/list() for(var/atom/mob in L) if(istype(mob)) M.Add(mob) - var/endIndex = M.len - 1 + var/endIndex = length(M) - 1 var/top = 0 var/list/stack[endIndex*2] stack[++top] = startIndex @@ -241,9 +225,9 @@ /proc/sortRecord(list/datum/data/record/L, field = "name", order = 1) if(isnull(L)) return list() - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 + var/middle = length(L) / 2 + 1 return mergeRecordLists(sortRecord(L.Copy(0, middle), field, order), sortRecord(L.Copy(middle), field, order), field, order) //Mergsort: does the actual sorting and returns the results back to sortRecord @@ -252,7 +236,7 @@ var/Ri=1 var/list/result = new() if(!isnull(L) && !isnull(R)) - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) var/datum/data/record/rL = L[Li] if(isnull(rL)) L -= rL @@ -266,7 +250,7 @@ else result += R[Ri++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) @@ -285,9 +269,9 @@ RETURN_TYPE(/list) if(!istype(L)) return - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 // Copy is first,second-1 + var/middle = length(L) / 2 + 1 // Copy is first,second-1 return mergeLists(sortList(L.Copy(0,middle)), sortList(L.Copy(middle))) //second parameter null = to end of list //Mergsorge: uses sortList() but uses the var's name specifically. This should probably be using mergeAtom() instead @@ -301,13 +285,13 @@ var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) if(sorttext(L[Li], R[Ri]) < 1) result += R[Ri++] else result += L[Li++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) @@ -322,68 +306,68 @@ // List of lists, sorts by element[key] - for things like crew monitoring computer sorting records by name. /proc/sortByKey(list/L, key) - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 + var/middle = length(L) / 2 + 1 return mergeKeyedLists(sortByKey(L.Copy(0, middle), key), sortByKey(L.Copy(middle), key), key) /proc/mergeKeyedLists(list/L, list/R, key) var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) if(sorttext(L[Li][key], R[Ri][key]) < 1) // Works around list += list2 merging lists; it's not pretty but it works result += "temp item" - result[result.len] = R[Ri++] + result[length(result)] = R[Ri++] else result += "temp item" - result[result.len] = L[Li++] + result[length(result)] = L[Li++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) //Mergesort: any value in a list, preserves key=value structure /proc/sortAssoc(list/L) - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 // Copy is first,second-1 + var/middle = length(L) / 2 + 1 // Copy is first,second-1 return mergeAssoc(sortAssoc(L.Copy(0,middle)), sortAssoc(L.Copy(middle))) //second parameter null = to end of list /proc/mergeAssoc(list/L, list/R) var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) if(sorttext(L[Li], R[Ri]) < 1) result += R&R[Ri++] else result += L&L[Li++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) // Same as sortAssoc but rather than creating a whole new list keeps the original list ref and just returns that list modified /proc/sortAssocKeepList(list/L) - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 // Copy is first,second-1 + var/middle = length(L) / 2 + 1 // Copy is first,second-1 return mergeAssocKeepList(sortAssoc(L.Copy(0,middle)), sortAssoc(L.Copy(middle)), L) //second parameter null = to end of list /proc/mergeAssocKeepList(list/L, list/R, list/original) var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) if(sorttext(L[Li], R[Ri]) < 1) result += R&R[Ri++] else result += L&L[Li++] - if(Li <= L.len) + if(Li <= length(L)) result += L.Copy(Li, 0) else result += R.Copy(Ri, 0) @@ -391,11 +375,24 @@ original += result return original +/// Returns a list of atoms sorted by each entry's distance to `target`. +/proc/sort_list_dist(list/atom/list_to_sort, atom/target) + var/list/distances = list() + for(var/atom/A as anything in list_to_sort) + // Just in case this happens anyway. + if(!istype(A)) + stack_trace("sort_list_dist() was called with a list containing a non-atom object. ([A.type])") + return list_to_sort + + distances[A] = get_dist_sqrd(A, target) + + return sortTim(distances, GLOBAL_PROC_REF(cmp_numeric_asc), TRUE) + //Converts a bitfield to a list of numbers (or words if a wordlist is provided) /proc/bitfield2list(bitfield = 0, list/wordlist) var/list/r = list() if(islist(wordlist)) - var/max = min(wordlist.len,16) + var/max = min(length(wordlist),16) var/bit = 1 for(var/i=1, i<=max, i++) if(bitfield & bit) @@ -417,9 +414,9 @@ //Move a single element from position fromIndex within a list, to position toIndex //All elements in the range [1,toIndex) before the move will be before the pivot afterwards -//All elements in the range [toIndex, L.len+1) before the move will be after the pivot afterwards +//All elements in the range [toIndex, length(L)+1) before the move will be after the pivot afterwards //In other words, it's as if the range [fromIndex,toIndex) have been rotated using a <<< operation common to other languages. -//fromIndex and toIndex must be in the range [1,L.len+1] +//fromIndex and toIndex must be in the range [1,length(L)+1] //This will preserve associations ~Carnie /proc/moveElement(list/L, fromIndex, toIndex) if(fromIndex == toIndex || fromIndex+1 == toIndex) //no need to move @@ -480,13 +477,13 @@ //replaces reverseList ~Carnie /proc/reverseRange(list/L, start=1, end=0) - if(L.len) - start = start % L.len - end = end % (L.len+1) + if(length(L)) + start = start % length(L) + end = end % (length(L)+1) if(start <= 0) - start += L.len + start += length(L) if(end <= 0) - end += L.len + 1 + end += length(L) + 1 --end while(start < end) @@ -505,13 +502,13 @@ ///replaces reverseList ~Carnie /proc/reverse_range(list/inserted_list, start = 1, end = 0) - if(inserted_list.len) - start = start % inserted_list.len - end = end % (inserted_list.len + 1) + if(length(inserted_list)) + start = start % length(inserted_list) + end = end % (length(inserted_list) + 1) if(start <= 0) - start += inserted_list.len + start += length(inserted_list) if(end <= 0) - end += inserted_list.len + 1 + end += length(inserted_list) + 1 --end while(start < end) @@ -561,7 +558,7 @@ var/list/found = list() for(var/atom/A in contents) found += A - if(A.contents.len) + if(length(A.contents)) found += A.contents_recursive() return found @@ -569,7 +566,7 @@ var/list/found = list() for(var/atom/A in contents) found += A - if(A.contents.len) + if(length(A.contents)) found += A.contents return found @@ -581,15 +578,15 @@ if(!sort) return L - if(L.len <= 1) + if(length(L) <= 1) return L - var/middle = Floor(L.len / 2) + var/middle = floor(length(L) / 2) var/list/left = custom_mergesort(L.Copy(1, middle + 1)) var/list/right = custom_mergesort(L.Copy(middle + 1)) var/list/result = list() - while(left.len > 0 && right.len > 0) + while(length(left) > 0 && length(right) > 0) var/a = left[1] var/b = right[1] @@ -600,11 +597,11 @@ result += b right.Cut(1,2) - while(left.len > 0) + while(length(left) > 0) result += left[1] left.Cut(1,2) - while(right.len > 0) + while(length(right) > 0) result += right[1] right.Cut(1,2) diff --git a/code/__HELPERS/logging.dm b/code/__HELPERS/logging.dm index faf28a9ef6..7075b4084f 100644 --- a/code/__HELPERS/logging.dm +++ b/code/__HELPERS/logging.dm @@ -35,27 +35,27 @@ // will get logs that are one big line if the system is Linux and they are using notepad. This solves it by adding CR to every line ending // in the logs. ascii character 13 = CR -/var/global/log_end= world.system_type == UNIX ? ascii2text(13) : "" +GLOBAL_VAR_INIT(log_end, world.system_type == UNIX ? ascii2text(13) : "") /proc/error(msg) - world.log << "## ERROR: [msg][log_end]" + world.log << "## ERROR: [msg][GLOB.log_end]" GLOB.STUI.debug.Add("\[[time_stamp()]]DEBUG: [msg]") GLOB.STUI.processing |= STUI_LOG_DEBUG #define WARNING(MSG) warning("[MSG] in [__FILE__] at line [__LINE__] src: [src] usr: [usr].") //print a warning message to world.log /proc/warning(msg) - world.log << "## WARNING: [msg][log_end]" + world.log << "## WARNING: [msg][GLOB.log_end]" GLOB.STUI.debug.Add("\[[time_stamp()]]WARNING: [msg]") GLOB.STUI.processing |= STUI_LOG_DEBUG //print a testing-mode debug message to world.log /proc/testing(msg) - world.log << "## TESTING: [msg][log_end]" + world.log << "## TESTING: [msg][GLOB.log_end]" GLOB.STUI.debug.Add("\[[time_stamp()]]TESTING: [msg]") GLOB.STUI.processing |= STUI_LOG_DEBUG /proc/log_admin(text) var/time = time_stamp() - admin_log.Add(text) + GLOB.admin_log.Add(text) if (CONFIG_GET(flag/log_admin)) WRITE_LOG(GLOB.world_game_log, "ADMIN: [text]") LOG_REDIS("admin", "\[[time]\] [text]") @@ -63,14 +63,14 @@ GLOB.STUI.processing |= STUI_LOG_ADMIN /proc/log_asset(text) - asset_log.Add(text) + GLOB.asset_log.Add(text) if (CONFIG_GET(flag/log_asset)) var/time = time_stamp() WRITE_LOG(GLOB.world_game_log, "ASSET: [text]") LOG_REDIS("asset", "\[[time]\] [text]") /proc/log_adminpm(text) - admin_log.Add(text) + GLOB.admin_log.Add(text) if (CONFIG_GET(flag/log_admin)) WRITE_LOG(GLOB.world_game_log, "ADMIN: [text]") GLOB.STUI.staff.Add("\[[time_stamp()]]ADMIN: [text]") @@ -90,9 +90,10 @@ GLOB.STUI?.debug.Add("\[[time]]DEBUG: [text]") GLOB.STUI?.processing |= STUI_LOG_DEBUG - for(var/client/C in GLOB.admins) - if(C.prefs.toggles_chat & CHAT_DEBUGLOGS) - to_chat(C, "DEBUG: [text]", type = MESSAGE_TYPE_DEBUG) + for(var/client/client in GLOB.admins) + if(CLIENT_IS_STAFF(client)) + if(client.prefs.toggles_chat & CHAT_DEBUGLOGS) + to_chat(client, "DEBUG: [text]", type = MESSAGE_TYPE_DEBUG) /proc/log_game(text) @@ -125,11 +126,11 @@ GLOB.STUI.admin.Add("\[[time]]OVERWATCH: [text]") GLOB.STUI.processing |= STUI_LOG_ADMIN -/proc/log_idmod(obj/item/card/id/target_id, msg) +/proc/log_idmod(obj/item/card/id/target_id, msg, changer) var/time = time_stamp() if (CONFIG_GET(flag/log_idmod)) - WRITE_LOG(GLOB.world_game_log, "ID MOD: [msg]") - LOG_REDIS("idmod", "\[[time]\] [msg]") + WRITE_LOG(GLOB.world_game_log, "ID MOD: ([changer]) [msg]") + LOG_REDIS("idmod", "\[[time]\] ([changer]) [msg]") target_id.modification_log += "\[[time]]: [msg]" /proc/log_vote(text) @@ -209,10 +210,10 @@ WRITE_LOG(GLOB.world_game_log, "MISC: [text]") GLOB.STUI?.debug.Add("\[[time]]MISC: [text]") -/proc/log_mutator(text) - if(!GLOB.mutator_logs) +/proc/log_strain(text) + if(!GLOB.strain_logs) return - WRITE_LOG(GLOB.mutator_logs, "[text]") + WRITE_LOG(GLOB.strain_logs, "[text]") /proc/log_hiveorder(text) var/time = time_stamp() diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 38d84c2922..1d123b3a8e 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -26,7 +26,7 @@ continue valid_hairstyles[hairstyle] = GLOB.hair_styles_list[hairstyle] - if(valid_hairstyles.len) + if(length(valid_hairstyles)) h_style = pick(valid_hairstyles) return h_style @@ -48,14 +48,16 @@ continue valid_facialhairstyles[facialhairstyle] = GLOB.facial_hair_styles_list[facialhairstyle] - if(valid_facialhairstyles.len) + if(length(valid_facialhairstyles)) f_style = pick(valid_facialhairstyles) return f_style /proc/random_name(gender, species = "Human") - if(gender==FEMALE) return capitalize(pick(first_names_female)) + " " + capitalize(pick(last_names)) - else return capitalize(pick(first_names_male)) + " " + capitalize(pick(last_names)) + if(gender==FEMALE) + return capitalize(pick(GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) + else + return capitalize(pick(GLOB.first_names_male)) + " " + capitalize(pick(GLOB.last_names)) /proc/has_species(mob/M, species) if(!M || !istype(M,/mob/living/carbon/human)) @@ -74,6 +76,7 @@ /mob/proc/change_real_name(mob/M, new_name) if(!new_name) return FALSE + var/old_name = M.real_name M.real_name = new_name M.name = new_name @@ -84,6 +87,7 @@ // If we are humans, we need to update our voice as well M.change_mob_voice(new_name) + SEND_SIGNAL(src, COMSIG_MOB_REAL_NAME_CHANGED, old_name, new_name) return TRUE /mob/proc/change_mind_name(new_mind_name) diff --git a/code/__HELPERS/sanitize_values.dm b/code/__HELPERS/sanitize_values.dm index decec60d36..291246e621 100644 --- a/code/__HELPERS/sanitize_values.dm +++ b/code/__HELPERS/sanitize_values.dm @@ -1,7 +1,7 @@ //general stuff /proc/sanitize_integer(number, min=0, max=1, default=0) if(isnum(number)) - number = round(number) + number = floor(number) if(min <= number && number <= max) return number return default @@ -20,7 +20,7 @@ /proc/sanitize_inlist(value, list/List, default) if(value in List) return value if(default) return default - if(List && List.len)return List[1] + if(LAZYLEN(List))return List[1] /proc/sanitize_list(list/List, list/filter = list(null), default = list()) if(!islist(List)) diff --git a/code/__HELPERS/shell.dm b/code/__HELPERS/shell.dm index 35a8e4635b..a165a7981f 100644 --- a/code/__HELPERS/shell.dm +++ b/code/__HELPERS/shell.dm @@ -20,7 +20,7 @@ shelleo_id = "[seo_id]" break if(!shelleo_id) - shelleo_id = "[shelleo_ids.len + 1]" + shelleo_id = "[length(shelleo_ids) + 1]" shelleo_ids += shelleo_id shelleo_ids[shelleo_id] = TRUE out_file = "[SHELLEO_NAME][shelleo_id][SHELLEO_OUT]" diff --git a/code/__HELPERS/sorts/TimSort.dm b/code/__HELPERS/sorts/TimSort.dm index cfa55f0dfa..89a93802ed 100644 --- a/code/__HELPERS/sorts/TimSort.dm +++ b/code/__HELPERS/sorts/TimSort.dm @@ -1,17 +1,21 @@ //TimSort interface /proc/sortTim(list/L, cmp=/proc/cmp_numeric_asc, associative, fromIndex=1, toIndex=0) - if(L && L.len >= 2) - fromIndex = fromIndex % L.len - toIndex = toIndex % (L.len+1) + if(length(L) >= 2) + fromIndex = fromIndex % length(L) + toIndex = toIndex % (length(L)+1) if(fromIndex <= 0) - fromIndex += L.len + fromIndex += length(L) if(toIndex <= 0) - toIndex += L.len + 1 + toIndex += length(L) + 1 - sortInstance.L = L - sortInstance.cmp = cmp - sortInstance.associative = associative + var/datum/sortInstance/sort_instance = GLOB.sortInstance + if(!sort_instance) + sort_instance = new() - sortInstance.timSort(fromIndex, toIndex) + sort_instance.L = L + sort_instance.cmp = cmp + sort_instance.associative = associative + + sort_instance.timSort(fromIndex, toIndex) return L diff --git a/code/__HELPERS/sorts/_Main.dm b/code/__HELPERS/sorts/_Main.dm index 7bc906be7e..4caf2c4c06 100644 --- a/code/__HELPERS/sorts/_Main.dm +++ b/code/__HELPERS/sorts/_Main.dm @@ -8,8 +8,8 @@ //When we get into galloping mode, we stay there until both runs win less often than MIN_GALLOP consecutive times. #define MIN_GALLOP 7 - //This is a global instance to allow much of this code to be reused. The interfaces are kept separately -var/datum/sortInstance/sortInstance = new() +//This is a global instance to allow much of this code to be reused. The interfaces are kept separately +GLOBAL_DATUM_INIT(sortInstance, /datum/sortInstance, new()) /datum/sortInstance //The array being sorted. var/list/L @@ -76,7 +76,7 @@ var/datum/sortInstance/sortInstance = new() //Merge all remaining runs to complete sort //ASSERT(start == end) mergeForceCollapse(); - //ASSERT(runBases.len == 1) + //ASSERT(length(runBases) == 1) //reset minGallop, for successive calls minGallop = MIN_GALLOP @@ -113,7 +113,7 @@ var/datum/sortInstance/sortInstance = new() //[lo, left) elements <= pivot < [right, start) elements //in other words, find where the pivot element should go using bisection search while(left < right) - var/mid = (left + right) >> 1 //round((left+right)/2) + var/mid = (left + right) >> 1 //floor((left+right)/2) if(call(cmp)(fetchElement(L,mid), pivot) > 0) right = mid else @@ -178,8 +178,8 @@ var/datum/sortInstance/sortInstance = new() //This method is called each time a new run is pushed onto the stack. //So the invariants are guaranteed to hold for i= 2) - var/n = runBases.len - 1 + while(length(runBases) >= 2) + var/n = length(runBases) - 1 if(n > 1 && runLens[n-1] <= runLens[n] + runLens[n+1]) if(runLens[n-1] < runLens[n+1]) --n @@ -193,8 +193,8 @@ var/datum/sortInstance/sortInstance = new() //Merges all runs on the stack until only one remains. //Called only once, to finalise the sort /datum/sortInstance/proc/mergeForceCollapse() - while(runBases.len >= 2) - var/n = runBases.len - 1 + while(length(runBases) >= 2) + var/n = length(runBases) - 1 if(n > 1 && runLens[n-1] < runLens[n+1]) --n mergeAt(n) @@ -204,9 +204,9 @@ var/datum/sortInstance/sortInstance = new() //Run i must be the penultimate or antepenultimate run on the stack //In other words, i must be equal to stackSize-2 or stackSize-3 /datum/sortInstance/proc/mergeAt(i) - //ASSERT(runBases.len >= 2) + //ASSERT(length(runBases) >= 2) //ASSERT(i >= 1) - //ASSERT(i == runBases.len - 1 || i == runBases.len - 2) + //ASSERT(i == length(runBases) - 1 || i == length(runBases) - 2) var/base1 = runBases[i] var/base2 = runBases[i+1] @@ -393,7 +393,7 @@ var/datum/sortInstance/sortInstance = new() var/count1 = 0 //# of times in a row that first run won var/count2 = 0 // " " " " " " second run won - //do the straightfoward thin until one run starts winning consistently + //do the straightforward thin until one run starts winning consistently do //ASSERT(len1 > 1 && len2 > 0) @@ -493,7 +493,7 @@ var/datum/sortInstance/sortInstance = new() var/count1 = 0 //# of times in a row that first run won var/count2 = 0 // " " " " " " second run won - //do the straightfoward thing until one run starts winning consistently + //do the straightforward thing until one run starts winning consistently do //ASSERT(len1 > 0 && len2 > 1) if(call(cmp)(fetchElement(L,cursor2), fetchElement(L,cursor1)) < 0) @@ -596,8 +596,8 @@ var/datum/sortInstance/sortInstance = new() while(remaining > 0) - while(runBases.len >= 2) - var/n = runBases.len - 1 + while(length(runBases) >= 2) + var/n = length(runBases) - 1 if(n > 1 && runLens[n-1] <= runLens[n] + runLens[n+1]) if(runLens[n-1] < runLens[n+1]) --n @@ -607,8 +607,8 @@ var/datum/sortInstance/sortInstance = new() else break //Invariant is established - while(runBases.len >= 2) - var/n = runBases.len - 1 + while(length(runBases) >= 2) + var/n = length(runBases) - 1 if(n > 1 && runLens[n-1] < runLens[n+1]) --n mergeAt2(n) diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index bde59bab86..7396e8624b 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -30,6 +30,11 @@ text = replacetext(text, char, repl_chars[char]) return text +///Helper for only alphanumeric characters plus common punctuation, spaces, underscore and hyphen _ -. +/proc/replace_non_alphanumeric_plus(text) + var/regex/alphanumeric = regex(@{"[^a-z0-9 ,.?!\-_&]"}, "gi") + return alphanumeric.Replace(text, "") + /proc/readd_quotes(text) var/list/repl_chars = list(""" = "\"", "'" = "'") for(var/char in repl_chars) @@ -359,8 +364,8 @@ // ---Begin URL caching. var/list/urls = list() var/i = 1 - while (url_find_lazy.Find_char(message)) - urls["\ref[urls]-[i]"] = url_find_lazy.match + while (GLOB.url_find_lazy.Find_char(message)) + urls["\ref[urls]-[i]"] = GLOB.url_find_lazy.match i++ for (var/ref in urls) @@ -368,9 +373,9 @@ // ---End URL caching var/regex/tag_markup - for (var/tag in (markup_tags - ignore_tags)) - tag_markup = markup_regex[tag] - message = tag_markup.Replace_char(message, "$2[markup_tags[tag][1]]$3[markup_tags[tag][2]]$5") + for (var/tag in (GLOB.markup_tags - ignore_tags)) + tag_markup = GLOB.markup_regex[tag] + message = tag_markup.Replace_char(message, "$2[GLOB.markup_tags[tag][1]]$3[GLOB.markup_tags[tag][2]]$5") // ---Unload URL cache for (var/ref in urls) @@ -394,3 +399,7 @@ if(.) return return 0 + +/// Check if the string `haystack` begins with the string `needle`. +/proc/string_starts_with(haystack, needle) + return (copytext(haystack, 1, length(needle) + 1) == needle) diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm index 5d0d113b0c..e1d53e0a81 100644 --- a/code/__HELPERS/type2type.dm +++ b/code/__HELPERS/type2type.dm @@ -60,7 +60,7 @@ var/power = null power = i - 1 while(power >= 0) - var/val = round(num / 16 ** power) + var/val = floor(num / 16 ** power) num -= val * 16 ** power switch(val) if(9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 0.0) diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 944d9428b1..b9a9f276c6 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -3,8 +3,6 @@ */ // GLOBAL DEFINES // -#define is_hot(I) (I?:heat_source) - //Whether or not the given item counts as sharp in terms of dealing damage #define is_sharp(I) (isitem(I) && I?:sharp && I?:edge) @@ -17,38 +15,35 @@ HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER) || istype(W, /obj/item/tool/pen ) || istype(W, /obj/item/tool/shovel)) \ ) -//Makes sure MIDDLE is between LOW and HIGH. If not, it adjusts it. Returns the adjusted value. -#define between(low, middle, high) (max(min(middle, high), low)) - //Offuscate x for coord system -#define obfuscate_x(x) (x + GLOB.obfs_x) +#define obfuscate_x(x) ((x) + GLOB.obfs_x) //Offuscate y for coord system -#define obfuscate_y(y) (y + GLOB.obfs_y) +#define obfuscate_y(y) ((y) + GLOB.obfs_y) //Deoffuscate x for coord system -#define deobfuscate_x(x) (x - GLOB.obfs_x) +#define deobfuscate_x(x) ((x) - GLOB.obfs_x) //Deoffuscate y for coord system -#define deobfuscate_y(y) (y - GLOB.obfs_y) +#define deobfuscate_y(y) ((y) - GLOB.obfs_y) #define can_xeno_build(T) (!T.density && !(locate(/obj/structure/fence) in T) && !(locate(/obj/structure/tunnel) in T) && (locate(/obj/effect/alien/weeds) in T)) // For the purpose of a skillcheck, not having a skillset counts as being skilled in everything (!user.skills check) // Note that is_skilled() checks if the skillset contains the skill internally, so a has_skill check is unnecessary -#define skillcheck(user, skill, req_level) ((!user.skills || user.skills.is_skilled(skill, req_level))) -#define skillcheckexplicit(user, skill, req_level) ((!user.skills || user.skills.is_skilled(skill, req_level, TRUE))) +#define skillcheck(user, skill, req_level) ((!user.skills || user.skills.is_skilled((skill), (req_level)))) +#define skillcheckexplicit(user, skill, req_level) ((!user.skills || user.skills.is_skilled((skill), (req_level), TRUE))) // Ensure the frequency is within bounds of what it should be sending/receiving at -// Sets f within bounds via `Clamp(round(f), 1441, 1489)` +// Sets f within bounds via `clamp(floor(f), 1441, 1489)` // If f is even, adds 1 to its value to make it odd -#define sanitize_frequency(f) ((Clamp(round(f), 1441, 1489) % 2) == 0 ? \ - Clamp(round(f), 1441, 1489) + 1 : \ - Clamp(round(f), 1441, 1489) \ +#define sanitize_frequency(f) ((clamp(floor(f), 1441, 1489) % 2) == 0 ? \ + clamp(floor(f), 1441, 1489) + 1 : \ + clamp(floor(f), 1441, 1489) \ ) //Turns 1479 into 147.9 -#define format_frequency(f) "[round(f / 10)].[f % 10]" +#define format_frequency(f) "[floor((f) / 10)].[(f) % 10]" #define reverse_direction(direction) ( \ ( dir & (NORTH|SOUTH) ? ~dir & (NORTH|SOUTH) : 0 ) | \ @@ -61,16 +56,6 @@ // GLOBAL PROCS // -//Returns the middle-most value -/proc/dd_range(low, high, num) - return max(low,min(high,num)) - -//Returns whether or not A is the middle most value -/proc/InRange(A, lower, upper) - if(A < lower) return 0 - if(A > upper) return 0 - return 1 - /// Gives X position on pixel grid of an object, accounting for offsets /proc/get_pixel_position_x(atom/subject, relative = FALSE) . = subject.pixel_x + subject.base_pixel_x @@ -99,38 +84,29 @@ var/atom/movable/big_subject = subject . += (big_subject.bound_height - world.icon_size) / 2 -/proc/Get_Angle(atom/start,atom/end, tile_bound = FALSE)//For beams. - if(!start || !end) return 0 - if(!start.z || !end.z) return 0 //Atoms are not on turfs. - var/dx - var/dy - if(tile_bound) - dy=end.y-start.y - dx=end.x-start.x - else - dy = get_pixel_position_y(end) - get_pixel_position_y(start) - dx = get_pixel_position_x(end) - get_pixel_position_x(start) - if(!dy) - return (dx>=0)?90:270 - .=arctan(dx/dy) - if(dy<0) - .+=180 - else if(dx<0) - .+=360 - -/proc/Get_Compass_Dir(atom/start,atom/end)//get_dir() only considers an object to be north/south/east/west if there is zero deviation. This uses rounding instead. - if(!start || !end) return 0 - if(!start.z || !end.z) return 0 //Atoms are not on turfs. - var/dy=end.y-start.y - var/dx=end.x-start.x - if(!dy) - return (dx>=0)?4:8 - var/angle=arctan(dx/dy) - if(dy<0) - angle+=180 - else if(dx<0) - angle+=360 - +/// Calculate the angle between two atoms. Uses north-clockwise convention: NORTH = 0, EAST = 90, etc. +/proc/Get_Angle(atom/start, atom/end)//For beams. + if(!start || !end) + return 0 + if(!start.z) + start = get_turf(start) + if(!start) + return 0 //Atoms are not on turfs. + if(!end.z) + end = get_turf(end) + if(!end) + return 0 //Atoms are not on turfs. + var/dy = get_pixel_position_y(end) - get_pixel_position_y(start) + var/dx = get_pixel_position_x(end) - get_pixel_position_x(start) + return delta_to_angle(dx, dy) + +/// Calculate the angle produced by a pair of x and y deltas. Uses north-clockwise convention: NORTH = 0, EAST = 90, etc. +/proc/delta_to_angle(dx, dy) + . = arctan(dy, dx) //y-then-x results in north-clockwise convention: https://en.wikipedia.org/wiki/Atan2#East-counterclockwise,_north-clockwise_and_south-clockwise_conventions,_etc. + if(. < 0) + . += 360 + +/proc/angle_to_dir(angle) switch(angle) //diagonal directions get priority over straight directions in edge cases if (22.5 to 67.5) return NORTHEAST @@ -151,6 +127,8 @@ else return NORTH +/proc/Get_Compass_Dir(atom/start, atom/end)//get_dir() only considers an object to be north/south/east/west if there is zero deviation. This uses rounding instead. + return angle_to_dir(Get_Angle(get_turf(start), get_turf(end))) // Among other things, used by flamethrower and boiler spray to calculate if flame/spray can pass through. // Returns an atom for specific effects (primarily flames and acid spray) that damage things upon contact @@ -274,9 +252,6 @@ -/proc/sign(x) - return x!=0?x/abs(x):0 - //Returns whether or not a player is a guest using their ckey as an input /proc/IsGuestKey(key) if (findtext(key, "Guest-", 1, 7) != 1) //was findtextEx @@ -303,9 +278,10 @@ //update the datacore records! This is goig to be a bit costly. var/mob_ref = WEAKREF(src) for(var/list/L in list(GLOB.data_core.general, GLOB.data_core.medical, GLOB.data_core.security, GLOB.data_core.locked)) - for(var/datum/data/record/R in L) - if(R.fields["ref"] == mob_ref) - R.fields["name"] = newname + for(var/datum/data/record/record_entry in L) + if(record_entry.fields["ref"] == mob_ref) + record_entry.fields["name"] = newname + record_entry.name = newname break //update our pda and id if we have them on our person @@ -323,101 +299,6 @@ search_id = 0 return 1 - - -//Generalised helper proc for letting mobs rename themselves. Used to be clname() and ainame() -//Last modified by Carn -/mob/proc/rename_self(role, allow_numbers=0) - var/oldname = real_name - var/time_passed = world.time - - var/newname - for(var/i=1,i<=3,i++) //we get 3 attempts to pick a suitable name. - newname = input(src,"You are a [role]. Would you like to change your name to something else?", "Name change",oldname) as text - if((world.time-time_passed)>300) - return //took too long - newname = reject_bad_name(newname,allow_numbers) //returns null if the name doesn't meet some basic requirements. Tidies up a few other things like bad-characters. - for(var/mob/living/M in GLOB.alive_mob_list) - if(M == src) - continue - - if(!newname || M.real_name == newname) - newname = null - break - - if(newname) - break //That's a suitable name! - to_chat(src, "Sorry, that [role]-name wasn't appropriate, please try another. It's possibly too long/short, has bad characters or is already taken.") - - if(!newname) //we'll stick with the oldname then - return - - if(cmptext("ai",role)) - if(isAI(src)) - var/mob/living/silicon/ai/A = src - oldname = null//don't bother with the records update crap - A.SetName(newname) - - fully_replace_character_name(oldname,newname) - - - -//When a borg is activated, it can choose which AI it wants to be slaved to -/proc/active_ais() - . = list() - for(var/mob/living/silicon/ai/A in GLOB.alive_mob_list) - if(A.stat == DEAD) - continue - if(A.control_disabled == 1) - continue - . += A - return . - -//Find an active ai with the least borgs. VERBOSE PROCNAME HUH! -/proc/select_active_ai_with_fewest_borgs() - var/mob/living/silicon/ai/selected - var/list/active = active_ais() - for(var/mob/living/silicon/ai/A in active) - if(!selected || (selected.connected_robots > A.connected_robots)) - selected = A - - return selected - -/proc/select_active_ai(mob/user) - var/list/ais = active_ais() - if(ais.len) - if(user) . = tgui_input_list(usr,"AI signals detected:", "AI selection", ais) - else . = pick(ais) - return . - -/proc/get_sorted_mobs() - var/list/old_list = getmobs() - var/list/AI_list = list() - var/list/Dead_list = list() - var/list/keyclient_list = list() - var/list/key_list = list() - var/list/logged_list = list() - for(var/named in old_list) - var/mob/M = old_list[named] - if(isSilicon(M)) - AI_list |= M - else if(isobserver(M) || M.stat == 2) - Dead_list |= M - else if(M.key && M.client) - keyclient_list |= M - else if(M.key) - key_list |= M - else - logged_list |= M - old_list.Remove(named) - var/list/new_list = list() - new_list += AI_list - new_list += keyclient_list - new_list += key_list - new_list += logged_list - new_list += Dead_list - return new_list - //Returns a list of all mobs with their name /proc/getmobs() var/list/mobs = sortmobs() @@ -446,150 +327,6 @@ return creatures -/proc/getxenos() - var/list/mobs = sortxenos() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if(isobserver(M)) - name += " \[ghost\]" - else if(M.stat == DEAD) - name += " \[dead\]" - creatures[name] = M - return creatures - -/proc/getpreds() - var/list/mobs = sortpreds() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - if(!isyautja(M)) continue - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if (M.real_name && M.real_name != M.name) - name += " \[[M.real_name]\]" - if (M.stat == 2) - name += " \[dead\]" - if(istype(M, /mob/dead/observer/)) - name += " \[ghost\]" - creatures[name] = M - - return creatures - -/proc/gethumans() - var/list/mobs = sorthumans() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - if(isyautja(M)) continue - if(iszombie(M)) continue - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if (M.real_name && M.real_name != M.name) - name += " \[[M.real_name]\]" - if (M.stat == 2) - name += " \[dead\]" - if(istype(M, /mob/dead/observer/)) - name += " \[ghost\]" - creatures[name] = M - - return creatures - -/proc/getsurvivors() - var/list/mobs = sortsurvivors() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - if(isyautja(M)) continue - if(iszombie(M)) continue - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if (M.real_name && M.real_name != M.name) - name += " \[[M.real_name]\]" - if (M.stat == 2) - name += " \[dead\]" - if(istype(M, /mob/dead/observer/)) - name += " \[ghost\]" - creatures[name] = M - - return creatures - -/proc/getertmembers() - var/list/mobs = sortertmembers() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - if(isyautja(M)) continue - if(iszombie(M)) continue - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if (M.real_name && M.real_name != M.name) - name += " \[[M.real_name]\]" - if (M.stat == 2) - name += " \[dead\]" - if(istype(M, /mob/dead/observer/)) - name += " \[ghost\]" - creatures[name] = M - - return creatures - -/proc/getsynths() - var/list/mobs = sortsynths() - var/list/names = list() - var/list/creatures = list() - var/list/namecounts = list() - for(var/mob/M in mobs) - if(isyautja(M)) continue - if(iszombie(M)) continue - var/name = M.name - if (name in names) - namecounts[name]++ - name = "[name] ([namecounts[name]])" - else - names.Add(name) - namecounts[name] = 1 - if (M.real_name && M.real_name != M.name) - name += " \[[M.real_name]\]" - if (M.stat == 2) - name += " \[dead\]" - if(istype(M, /mob/dead/observer/)) - name += " \[ghost\]" - creatures[name] = M - - return creatures - /proc/get_multi_vehicles() var/list/multi_vehicles = GLOB.all_multi_vehicles.Copy() var/list/names = list() @@ -616,22 +353,6 @@ return vehicles -/proc/get_holograms() - var/list/holograms = list() - var/list/namecounts = list() - for(var/i in GLOB.hologram_list) - var/mob/hologram/H = i - var/name = H.name - if(name in namecounts) - namecounts[name]++ - name = "[name] #([namecounts[name]])" - else - namecounts[name] = 1 - - holograms[name] = H - - return holograms - //Orders mobs by type then by name /proc/sortmobs() var/list/moblist = list() @@ -658,62 +379,6 @@ moblist += friend return moblist -/proc/sortxenos() - var/list/xenolist = list() - var/list/sortmob = sortAtom(GLOB.xeno_mob_list) - for(var/mob/living/carbon/xenomorph/M in sortmob) - if(!M.client) - continue - xenolist.Add(M) - return xenolist - -/proc/sortpreds() - var/list/predlist = list() - var/list/sortmob = sortAtom(GLOB.human_mob_list) - for(var/mob/living/carbon/human/M in sortmob) - if(!M.client || !M.species.name == "Yautja") - continue - predlist.Add(M) - return predlist - -/proc/sorthumans() - var/list/humanlist = list() - var/list/sortmob = sortAtom(GLOB.human_mob_list) - for(var/mob/living/carbon/human/M in sortmob) - if(!M.client || M.species.name == "Yautja") - continue - humanlist.Add(M) - return humanlist - -/proc/sortsurvivors() - var/list/survivorlist = list() - var/list/sortmob = sortAtom(GLOB.human_mob_list) - for(var/mob/living/carbon/human/M in sortmob) - if(!M.client || M.species.name == "Yautja") - continue - if(M.faction == FACTION_SURVIVOR) - survivorlist.Add(M) - return survivorlist - -/proc/sortertmembers() - var/list/ertmemberlist = list() - var/list/sortmob = sortAtom(GLOB.human_mob_list) - for(var/mob/living/carbon/human/M in sortmob) - if(!M.client) - continue - if(M.faction in FACTION_LIST_ERT) - ertmemberlist.Add(M) - return ertmemberlist - -/proc/sortsynths() - var/list/synthlist = list() - var/list/sortmob = sortAtom(GLOB.human_mob_list) - for(var/mob/living/carbon/human/M in sortmob) - if(!M.client || !issynth(M)) - continue - synthlist.Add(M) - return synthlist - /proc/key_name(whom, include_link = null, include_name = 1, highlight_special_characters = 1) var/mob/M var/client/C @@ -797,8 +462,7 @@ if(orange) turfs -= get_turf(center) . = list() - for(var/V in turfs) - var/turf/T = V + for(var/turf/T as anything in turfs) . += T . += T.contents if(areas) @@ -892,7 +556,7 @@ /atom/proc/GetAllContents(searchDepth = 5, list/toReturn = list()) for(var/atom/part as anything in contents) toReturn += part - if(part.contents.len && searchDepth) + if(length(part.contents) && searchDepth) part.GetAllContents(searchDepth - 1, toReturn) return toReturn @@ -913,7 +577,7 @@ if(part.loc != src) // That's a multitile atom, and it's not actually here stricto sensu continue toReturn += part - if(part.contents.len && searchDepth) + if(length(part.contents) && searchDepth) part.GetAllContents(searchDepth - 1, toReturn) return toReturn @@ -948,110 +612,127 @@ return FALSE -var/global/image/busy_indicator_clock -var/global/image/busy_indicator_medical -var/global/image/busy_indicator_build -var/global/image/busy_indicator_friendly -var/global/image/busy_indicator_hostile -var/global/image/emote_indicator_highfive -var/global/image/emote_indicator_fistbump -var/global/image/emote_indicator_headbutt -var/global/image/emote_indicator_tailswipe -var/global/image/emote_indicator_rock_paper_scissors -var/global/image/emote_indicator_rock -var/global/image/emote_indicator_paper -var/global/image/emote_indicator_scissors -var/global/image/action_red_power_up -var/global/image/action_green_power_up -var/global/image/action_blue_power_up -var/global/image/action_purple_power_up +GLOBAL_DATUM(busy_indicator_clock, /image) +GLOBAL_DATUM(busy_indicator_medical, /image) +GLOBAL_DATUM(busy_indicator_build, /image) +GLOBAL_DATUM(busy_indicator_friendly, /image) +GLOBAL_DATUM(busy_indicator_hostile, /image) +GLOBAL_DATUM(emote_indicator_highfive, /image) +GLOBAL_DATUM(emote_indicator_fistbump, /image) +GLOBAL_DATUM(emote_indicator_headbutt, /image) +GLOBAL_DATUM(emote_indicator_tailswipe, /image) +GLOBAL_DATUM(emote_indicator_rock_paper_scissors, /image) +GLOBAL_DATUM(emote_indicator_rock, /image) +GLOBAL_DATUM(emote_indicator_paper, /image) +GLOBAL_DATUM(emote_indicator_scissors, /image) +GLOBAL_DATUM(action_red_power_up, /image) +GLOBAL_DATUM(action_green_power_up, /image) +GLOBAL_DATUM(action_blue_power_up, /image) +GLOBAL_DATUM(action_purple_power_up, /image) /proc/get_busy_icon(busy_type) if(busy_type == BUSY_ICON_GENERIC) - if(!busy_indicator_clock) - busy_indicator_clock = image('icons/mob/mob.dmi', null, "busy_generic", "pixel_y" = 22) - busy_indicator_clock.layer = FLY_LAYER - return busy_indicator_clock + if(!GLOB.busy_indicator_clock) + GLOB.busy_indicator_clock = image('icons/mob/mob.dmi', null, "busy_generic", "pixel_y" = 22) + GLOB.busy_indicator_clock.layer = FLY_LAYER + GLOB.busy_indicator_clock.plane = ABOVE_GAME_PLANE + return GLOB.busy_indicator_clock else if(busy_type == BUSY_ICON_MEDICAL) - if(!busy_indicator_medical) - busy_indicator_medical = image('icons/mob/mob.dmi', null, "busy_medical", "pixel_y" = 0) //This shows directly on top of the mob, no offset! - busy_indicator_medical.layer = FLY_LAYER - return busy_indicator_medical + if(!GLOB.busy_indicator_medical) + GLOB.busy_indicator_medical = image('icons/mob/mob.dmi', null, "busy_medical", "pixel_y" = 0) //This shows directly on top of the mob, no offset! + GLOB.busy_indicator_medical.layer = FLY_LAYER + GLOB.busy_indicator_medical.plane = ABOVE_GAME_PLANE + return GLOB.busy_indicator_medical else if(busy_type == BUSY_ICON_BUILD) - if(!busy_indicator_build) - busy_indicator_build = image('icons/mob/mob.dmi', null, "busy_build", "pixel_y" = 22) - busy_indicator_build.layer = FLY_LAYER - return busy_indicator_build + if(!GLOB.busy_indicator_build) + GLOB.busy_indicator_build = image('icons/mob/mob.dmi', null, "busy_build", "pixel_y" = 22) + GLOB.busy_indicator_build.layer = FLY_LAYER + GLOB.busy_indicator_build.plane = ABOVE_GAME_PLANE + return GLOB.busy_indicator_build else if(busy_type == BUSY_ICON_FRIENDLY) - if(!busy_indicator_friendly) - busy_indicator_friendly = image('icons/mob/mob.dmi', null, "busy_friendly", "pixel_y" = 22) - busy_indicator_friendly.layer = FLY_LAYER - return busy_indicator_friendly + if(!GLOB.busy_indicator_friendly) + GLOB.busy_indicator_friendly = image('icons/mob/mob.dmi', null, "busy_friendly", "pixel_y" = 22) + GLOB.busy_indicator_friendly.layer = FLY_LAYER + GLOB.busy_indicator_friendly.plane = ABOVE_GAME_PLANE + return GLOB.busy_indicator_friendly else if(busy_type == BUSY_ICON_HOSTILE) - if(!busy_indicator_hostile) - busy_indicator_hostile = image('icons/mob/mob.dmi', null, "busy_hostile", "pixel_y" = 22) - busy_indicator_hostile.layer = FLY_LAYER - return busy_indicator_hostile + if(!GLOB.busy_indicator_hostile) + GLOB.busy_indicator_hostile = image('icons/mob/mob.dmi', null, "busy_hostile", "pixel_y" = 22) + GLOB.busy_indicator_hostile.layer = FLY_LAYER + GLOB.busy_indicator_hostile.plane = ABOVE_GAME_PLANE + return GLOB.busy_indicator_hostile else if(busy_type == EMOTE_ICON_HIGHFIVE) - if(!emote_indicator_highfive) - emote_indicator_highfive = image('icons/mob/mob.dmi', null, "emote_highfive", "pixel_y" = 22) - emote_indicator_highfive.layer = FLY_LAYER - return emote_indicator_highfive + if(!GLOB.emote_indicator_highfive) + GLOB.emote_indicator_highfive = image('icons/mob/mob.dmi', null, "emote_highfive", "pixel_y" = 22) + GLOB.emote_indicator_highfive.layer = FLY_LAYER + GLOB.emote_indicator_highfive.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_highfive else if(busy_type == EMOTE_ICON_FISTBUMP) - if(!emote_indicator_fistbump) - emote_indicator_fistbump = image('icons/mob/mob.dmi', null, "emote_fistbump", "pixel_y" = 22) - emote_indicator_fistbump.layer = FLY_LAYER - return emote_indicator_fistbump + if(!GLOB.emote_indicator_fistbump) + GLOB.emote_indicator_fistbump = image('icons/mob/mob.dmi', null, "emote_fistbump", "pixel_y" = 22) + GLOB.emote_indicator_fistbump.layer = FLY_LAYER + GLOB.emote_indicator_fistbump.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_fistbump else if(busy_type == EMOTE_ICON_ROCK_PAPER_SCISSORS) - if(!emote_indicator_rock_paper_scissors) - emote_indicator_rock_paper_scissors = image('icons/mob/mob.dmi', null, "emote_rps", "pixel_y" = 22) - emote_indicator_rock_paper_scissors.layer = FLY_LAYER - return emote_indicator_rock_paper_scissors + if(!GLOB.emote_indicator_rock_paper_scissors) + GLOB.emote_indicator_rock_paper_scissors = image('icons/mob/mob.dmi', null, "emote_rps", "pixel_y" = 22) + GLOB.emote_indicator_rock_paper_scissors.layer = FLY_LAYER + GLOB.emote_indicator_rock_paper_scissors.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_rock_paper_scissors else if(busy_type == EMOTE_ICON_ROCK) - if(!emote_indicator_rock) - emote_indicator_rock = image('icons/mob/mob.dmi', null, "emote_rock", "pixel_y" = 22) - emote_indicator_rock.layer = FLY_LAYER - return emote_indicator_rock + if(!GLOB.emote_indicator_rock) + GLOB.emote_indicator_rock = image('icons/mob/mob.dmi', null, "emote_rock", "pixel_y" = 22) + GLOB.emote_indicator_rock.layer = FLY_LAYER + GLOB.emote_indicator_rock.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_rock else if(busy_type == EMOTE_ICON_PAPER) - if(!emote_indicator_paper) - emote_indicator_paper = image('icons/mob/mob.dmi', null, "emote_paper", "pixel_y" = 22) - emote_indicator_paper.layer = FLY_LAYER - return emote_indicator_paper + if(!GLOB.emote_indicator_paper) + GLOB.emote_indicator_paper = image('icons/mob/mob.dmi', null, "emote_paper", "pixel_y" = 22) + GLOB.emote_indicator_paper.layer = FLY_LAYER + GLOB.emote_indicator_paper.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_paper else if(busy_type == EMOTE_ICON_SCISSORS) - if(!emote_indicator_scissors) - emote_indicator_scissors = image('icons/mob/mob.dmi', null, "emote_scissors", "pixel_y" = 22) - emote_indicator_scissors.layer = FLY_LAYER - return emote_indicator_scissors + if(!GLOB.emote_indicator_scissors) + GLOB.emote_indicator_scissors = image('icons/mob/mob.dmi', null, "emote_scissors", "pixel_y" = 22) + GLOB.emote_indicator_scissors.layer = FLY_LAYER + GLOB.emote_indicator_scissors.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_scissors else if(busy_type == EMOTE_ICON_HEADBUTT) - if(!emote_indicator_headbutt) - emote_indicator_headbutt = image('icons/mob/mob.dmi', null, "emote_headbutt", "pixel_y" = 22) - emote_indicator_headbutt.layer = FLY_LAYER - return emote_indicator_headbutt + if(!GLOB.emote_indicator_headbutt) + GLOB.emote_indicator_headbutt = image('icons/mob/mob.dmi', null, "emote_headbutt", "pixel_y" = 22) + GLOB.emote_indicator_headbutt.layer = FLY_LAYER + GLOB.emote_indicator_headbutt.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_headbutt else if(busy_type == EMOTE_ICON_TAILSWIPE) - if(!emote_indicator_tailswipe) - emote_indicator_tailswipe = image('icons/mob/mob.dmi', null, "emote_tailswipe", "pixel_y" = 22) - emote_indicator_tailswipe.layer = FLY_LAYER - return emote_indicator_tailswipe + if(!GLOB.emote_indicator_tailswipe) + GLOB.emote_indicator_tailswipe = image('icons/mob/mob.dmi', null, "emote_tailswipe", "pixel_y" = 22) + GLOB.emote_indicator_tailswipe.layer = FLY_LAYER + GLOB.emote_indicator_tailswipe.plane = ABOVE_GAME_PLANE + return GLOB.emote_indicator_tailswipe else if(busy_type == ACTION_RED_POWER_UP) - if(!action_red_power_up) - action_red_power_up = image('icons/effects/effects.dmi', null, "anger", "pixel_x" = 16) - action_red_power_up.layer = FLY_LAYER - return action_red_power_up + if(!GLOB.action_red_power_up) + GLOB.action_red_power_up = image('icons/effects/effects.dmi', null, "anger", "pixel_x" = 16) + GLOB.action_red_power_up.layer = FLY_LAYER + GLOB.action_red_power_up.plane = ABOVE_GAME_PLANE + return GLOB.action_red_power_up else if(busy_type == ACTION_GREEN_POWER_UP) - if(!action_green_power_up) - action_green_power_up = image('icons/effects/effects.dmi', null, "vitality", "pixel_x" = 16) - action_green_power_up.layer = FLY_LAYER - return action_green_power_up + if(!GLOB.action_green_power_up) + GLOB.action_green_power_up = image('icons/effects/effects.dmi', null, "vitality", "pixel_x" = 16) + GLOB.action_green_power_up.layer = FLY_LAYER + GLOB.action_green_power_up.plane = ABOVE_GAME_PLANE + return GLOB.action_green_power_up else if(busy_type == ACTION_BLUE_POWER_UP) - if(!action_blue_power_up) - action_blue_power_up = image('icons/effects/effects.dmi', null, "shock", "pixel_x" = 16) - action_blue_power_up.layer = FLY_LAYER - return action_blue_power_up + if(!GLOB.action_blue_power_up) + GLOB.action_blue_power_up = image('icons/effects/effects.dmi', null, "shock", "pixel_x" = 16) + GLOB.action_blue_power_up.layer = FLY_LAYER + GLOB.action_blue_power_up.plane = ABOVE_GAME_PLANE + return GLOB.action_blue_power_up else if(busy_type == ACTION_PURPLE_POWER_UP) - if(!action_purple_power_up) - action_purple_power_up = image('icons/effects/effects.dmi', null, "pain", "pixel_x" = 16) - action_purple_power_up.layer = FLY_LAYER - return action_purple_power_up + if(!GLOB.action_purple_power_up) + GLOB.action_purple_power_up = image('icons/effects/effects.dmi', null, "pain", "pixel_x" = 16) + GLOB.action_purple_power_up.layer = FLY_LAYER + GLOB.action_purple_power_up.plane = ABOVE_GAME_PLANE + return GLOB.action_purple_power_up /* @@ -1111,7 +792,7 @@ var/global/image/action_purple_power_up var/cur_user_zone_sel = busy_user.zone_selected var/cur_target_zone_sel - var/delayfraction = Ceiling(delay/numticks) + var/delayfraction = ceil(delay/numticks) var/user_orig_loc = busy_user.loc var/user_orig_turf = get_turf(busy_user) var/target_orig_loc @@ -1423,7 +1104,7 @@ var/global/image/action_purple_power_up var/list/doors = new/list() - if(toupdate.len) + if(length(toupdate)) for(var/turf/T1 in toupdate) for(var/obj/structure/machinery/door/D2 in T1) doors += D2 @@ -1432,7 +1113,7 @@ var/global/image/action_purple_power_up else air_master.tiles_to_update += T1*/ - if(fromupdate.len) + if(length(fromupdate)) for(var/turf/T2 in fromupdate) for(var/obj/structure/machinery/door/D2 in T2) doors += D2 @@ -1441,11 +1122,17 @@ var/global/image/action_purple_power_up else air_master.tiles_to_update += T2*/ -/proc/get_cardinal_dir(atom/A, atom/B) - var/dx = abs(B.x - A.x) - var/dy = abs(B.y - A.y) - return get_dir(A, B) & (rand() * (dx+dy) < dy ? 3 : 12) +/// Returns the nearest cardinal dir between two atoms. Favors NORTH/SOUTH on perfect diagonals. Consistent and reversible. +/proc/get_cardinal_dir(atom/start, atom/end) as num + var/dx = end.x - start.x + var/dy = end.y - start.y + if(!(dx || dy)) + return 0 //returns 0 when on same x/y, consistent with get_dir() + if(abs(dx) > abs(dy)) + return dx < 0 ? WEST : EAST + else + return dy < 0 ? SOUTH : NORTH //Returns the 2 dirs perpendicular to the arg /proc/get_perpen_dir(dir) @@ -1497,7 +1184,7 @@ var/global/image/action_purple_power_up /* Checks if that loc and dir has a item on the wall */ -var/list/WALLITEMS = list( +GLOBAL_LIST_INIT(WALLITEMS, list( /obj/structure/machinery/power/apc, /obj/structure/machinery/alarm, /obj/item/device/radio/intercom, @@ -1518,10 +1205,11 @@ var/list/WALLITEMS = list( /obj/structure/mirror, /obj/structure/closet/fireaxecabinet, /obj/structure/machinery/computer/cameras/telescreen/entertainment, - ) + )) + /proc/gotwallitem(loc, dir) for(var/obj/O in loc) - for(var/item in WALLITEMS) + for(var/item in GLOB.WALLITEMS) if(istype(O, item)) //Direction works sometimes if(O.dir == dir) @@ -1545,7 +1233,7 @@ var/list/WALLITEMS = list( //Some stuff is placed directly on the wallturf (signs) for(var/obj/O in get_step(loc, dir)) - for(var/item in WALLITEMS) + for(var/item in GLOB.WALLITEMS) if(istype(O, item)) if(O.pixel_x == 0 && O.pixel_y == 0) return 1 @@ -1554,88 +1242,47 @@ var/list/WALLITEMS = list( /proc/format_text(text) return replacetext(replacetext(text,"\proper ",""),"\improper ","") -/proc/getline(atom/M, atom/N, include_from_atom = TRUE)//Ultra-Fast Bresenham Line-Drawing Algorithm - var/px=M.x //starting x - var/py=M.y - var/line[] = list(locate(px,py,M.z)) - var/dx=N.x-px //x distance - var/dy=N.y-py - var/dxabs=abs(dx)//Absolute value of x distance - var/dyabs=abs(dy) - var/sdx=sign(dx) //Sign of x distance (+ or -) - var/sdy=sign(dy) - var/x=dxabs>>1 //Counters for steps taken, setting to distance/2 - var/y=dyabs>>1 //Bit-shifting makes me l33t. It also makes getline() unnessecarrily fast. - var/j //Generic integer for counting - if(dxabs>=dyabs) //x distance is greater than y - for(j=0;j=dxabs) //Every dyabs steps, step once in y direction - y-=dxabs - py+=sdy - px+=sdx //Step on in x direction - if(j > 0 || include_from_atom) - line+=locate(px,py,M.z)//Add the turf to the list - else - for(j=0;j=dyabs) - x-=dyabs - px+=sdx - py+=sdy - if(j > 0 || include_from_atom) - line+=locate(px,py,M.z) - return line +/** + * Get a list of turfs in a line from `start_atom` to `end_atom`. + * + * Based on a linear interpolation method from [Red Blob Games](https://www.redblobgames.com/grids/line-drawing/#optimization). + * + * Arguments: + * * start_atom - starting point of the line + * * end_atom - ending point of the line + * * include_start_atom - when truthy includes start_atom in the list, default TRUE + * + * Returns: + * list - turfs from start_atom (in/exclusive) to end_atom (inclusive) + */ +/proc/get_line(atom/start_atom, atom/end_atom, include_start_atom = TRUE) + var/turf/start_turf = get_turf(start_atom) + var/turf/end_turf = get_turf(end_atom) + var/start_z = start_turf.z -//Bresenham's algorithm. This one deals efficiently with all 8 octants. -//Just don't ask me how it works. -/proc/getline2(atom/from_atom, atom/to_atom, include_from_atom = TRUE) - if(!from_atom || !to_atom) return 0 - var/list/turf/turfs = list() - - var/cur_x = from_atom.x - var/cur_y = from_atom.y - - var/w = to_atom.x - from_atom.x - var/h = to_atom.y - from_atom.y - var/dx1 = 0 - var/dx2 = 0 - var/dy1 = 0 - var/dy2 = 0 - if(w < 0) - dx1 = -1 - dx2 = -1 - else if(w > 0) - dx1 = 1 - dx2 = 1 - if(h < 0) dy1 = -1 - else if(h > 0) dy1 = 1 - var/longest = abs(w) - var/shortest = abs(h) - if(!(longest > shortest)) - longest = abs(h) - shortest = abs(w) - if(h < 0) dy2 = -1 - else if (h > 0) dy2 = 1 - dx2 = 0 - - var/numerator = longest >> 1 - var/i - for(i = 0; i <= longest; i++) - if(i > 0 || include_from_atom) - turfs += locate(cur_x,cur_y,from_atom.z) - numerator += shortest - if(!(numerator < longest)) - numerator -= longest - cur_x += dx1 - cur_y += dy1 - else - cur_x += dx2 - cur_y += dy2 + var/list/line = list() + if(include_start_atom) + line += start_turf + var/step_count = get_dist(start_turf, end_turf) + if(!step_count) + return line - return turfs + //as step_count and step size (1) are known can pre-calculate a lerp step, tiny number (1e-5) for rounding consistency + var/step_x = (end_turf.x - start_turf.x) / step_count + 1e-5 + var/step_y = (end_turf.y - start_turf.y) / step_count + 1e-5 + + //locate() truncates the fraction, adding 0.5 so its effectively rounding to nearest coords for free + var/x = start_turf.x + 0.5 + var/y = start_turf.y + 0.5 + for(var/step in 1 to (step_count - 1)) //increment then locate() skips start_turf (in 1), since end_turf is known can skip that step too (step_count - 1) + x += step_x + y += step_y + line += locate(x, y, start_z) + line += end_turf + + return line //Key thing that stops lag. Cornerstone of performance in ss13, Just sitting here, in unsorted.dm. @@ -1653,7 +1300,7 @@ var/list/WALLITEMS = list( . = 0 var/i = DS2TICKS(initial_delay) do - . += CEILING(i*DELTA_CALC, 1) + . += ceil(i*DELTA_CALC) sleep(i*world.tick_lag*DELTA_CALC) i *= 2 while (TICK_USAGE > min(TICK_LIMIT_TO_RUN, Master.current_ticklimit)) @@ -1664,11 +1311,8 @@ var/list/WALLITEMS = list( origin = get_turf(origin) if(!origin) return - var/list/turfs = list() - for(var/turf/T in orange(origin, outer_range)) - if(!inner_range || get_dist(origin, T) >= inner_range) - turfs += T - if(turfs.len) + var/list/turfs = (RANGE_TURFS(outer_range, origin) - RANGE_TURFS(inner_range - 1, origin)) + if(length(turfs)) return pick(turfs) /proc/get_random_turf_in_range_unblocked(atom/origin, outer_range, inner_range) @@ -1707,8 +1351,8 @@ var/list/WALLITEMS = list( /proc/explosive_antigrief_check(obj/item/explosive/explosive, mob/user) var/turf/Turf = get_turf(explosive) if(!(Turf.loc.type in GLOB.explosive_antigrief_exempt_areas)) - var/crash_occured = (SSticker?.mode?.is_in_endgame) - if((Turf.z in SSmapping.levels_by_any_trait(list(ZTRAIT_MARINE_MAIN_SHIP, ZTRAIT_RESERVED))) && (security_level < SEC_LEVEL_RED) && !crash_occured) + var/crash_occurred = (SSticker?.mode?.is_in_endgame) + if((Turf.z in SSmapping.levels_by_any_trait(list(ZTRAIT_MARINE_MAIN_SHIP, ZTRAIT_RESERVED))) && (GLOB.security_level < SEC_LEVEL_RED) && !crash_occurred) switch(CONFIG_GET(number/explosive_antigrief)) if(ANTIGRIEF_DISABLED) return FALSE @@ -1719,22 +1363,6 @@ var/list/WALLITEMS = list( return TRUE return FALSE -// Returns only the perimeter of the block given by the min and max turfs -/proc/blockhollow(turf/min, turf/max) - var/list/perimeter_turfs = list() - - // Upper/lower perimeters - for(var/x_coord = min.x to max.x) - perimeter_turfs += locate(x_coord, min.y, min.z) - perimeter_turfs += locate(x_coord, max.y, min.z) - - // Left/right perimeters - for(var/y_coord = min.y + 1 to max.y - 1) - perimeter_turfs += locate(min.x, y_coord, min.z) - perimeter_turfs += locate(max.x, y_coord, min.z) - - return perimeter_turfs - /proc/flick_overlay(atom/target, overlay, time) target.overlays += overlay addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_timed_overlay), target, overlay), time) @@ -1742,67 +1370,6 @@ var/list/WALLITEMS = list( /proc/remove_timed_overlay(atom/target, overlay) target.overlays -= overlay -/* - Returns a list of random-looking, zero-sum variances. - - Imagine a straight line divided up into n segments, - then divide each segment into 2 subsegments again, so each original segment gets "its own point" that divides the subsegments - Then displace the first segment's dividing point by e.g. 5. - Then displace the second segment's dividing point by -5. - Then displace the third segment's dividing point by 5, and so on, alternating between a displacement of 5 and -5 - (If there's an odd number of segments just don't displace the last point at all) - - At the end, you'll have a zig-zaggy line. You then go through each segment end and - take away/add some random amount of displacement from its point. If you keep track of how much - net displacement has been added/removed, you can distribute it among other points - and end up with net 0 displacement (i.e. 0 total variance) - - Basically, this is what happens: https://i.imgur.com/AuY7HHd.png -*/ -/proc/get_random_zero_sum_variances(amount, max_variance) - // Displace each "point" to max variance - var/list/variances[amount] - for(var/i in 1 to variances.len) - if(i == variances.len && (variances.len % 2)) - variances[i] = 0 - else - variances[i] = (i % 2 ? 1 : -1) * max_variance - - // Jiggle each variance a random amount towards the "center line"/0 variance - var/net_displacement = 0 - for(var/i in 1 to variances.len) - var/to_redistribute = (i % 2 ? -1 : 1) * rand(0, max_variance/2) - - net_displacement += to_redistribute - variances[i] += to_redistribute - - // Lucky! Everything jiggled towards 0 in a way that left 0 net displacement - if(!net_displacement) - return variances - - // Redistribute the net displacement evenly on the side of the center line that needs it - // Only half the points are gonna be affected. - var/to_redistribute = abs(Ceiling(net_displacement / (variances.len/2))) - for(var/i in 1 to variances.len) - if(!net_displacement) - break - - // Positive net displacement, only distribute to points that were given negative variance to begin with - if(net_displacement > 0 && !(i % 2)) - variances[i] -= min(abs(net_displacement), to_redistribute) - net_displacement -= to_redistribute - // Negative net displacement, only distribute to points that were given positive variance to begin with - else if(net_displacement < 0 && i % 2) - variances[i] += min(abs(net_displacement), to_redistribute) - net_displacement += to_redistribute - - return variances - -/proc/check_bitflag(flag, bit) - if(flag & bit) - return TRUE - return FALSE - // A proc purely for a callback that returns TRUE (and does nothing else) /proc/_callback_true() return TRUE @@ -1821,29 +1388,35 @@ var/list/WALLITEMS = list( GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) /// Version of view() which ignores darkness, because BYOND doesn't have it (I actually suggested it but it was tagged redundant, BUT HEARERS IS A T- /rant). -/proc/dview(range = world.view, center, invis_flags = 0) +/proc/dview(range = world.view, atom/center, invis_flags = 0) if(!center) return - GLOB.dview_mob.loc = center - + GLOB.dview_mob.loc = isturf(center) ? center : center.loc GLOB.dview_mob.see_invisible = invis_flags - . = view(range, GLOB.dview_mob) + . = oview(range, GLOB.dview_mob) GLOB.dview_mob.loc = null +/// Version of oview() which ignores darkness +/proc/doview(range, atom/center, invis_flags) + if(!center) + return + + return dview(range, center, invis_flags) - center + /mob/dview name = "INTERNAL DVIEW MOB" - invisibility = 101 + invisibility = INVISIBILITY_ABSTRACT density = FALSE - see_in_dark = 1e6 + see_in_dark = INFINITY var/ready_to_die = FALSE /mob/dview/Initialize() //Properly prevents this mob from gaining huds or joining any global lists SHOULD_CALL_PARENT(FALSE) - if(flags_atom & INITIALIZED) + if(CHECK_BITFIELD(flags_atom, INITIALIZED)) stack_trace("Warning: [src]([type]) initialized multiple times!") - flags_atom |= INITIALIZED + ENABLE_BITFIELD(flags_atom, INITIALIZED) return INITIALIZE_HINT_NORMAL /mob/dview/Destroy(force = FALSE) @@ -1859,12 +1432,19 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) #define FOR_DVIEW(type, range, center, invis_flags) \ - GLOB.dview_mob.loc = center; \ + GLOB.dview_mob.loc = isturf(center) ? (center) : (center).loc; \ GLOB.dview_mob.see_invisible = invis_flags; \ - for(type in view(range, GLOB.dview_mob)) + for(type in oview(range, GLOB.dview_mob)) #define FOR_DVIEW_END GLOB.dview_mob.loc = null +#define FOR_DOVIEW(type, range, center, invis_flags) \ + GLOB.dview_mob.loc = isturf(center) ? (center) : (center).loc; \ + GLOB.dview_mob.see_invisible = invis_flags; \ + for(type in oview(range, GLOB.dview_mob) - (center)) + +#define FOR_DOVIEW_END FOR_DVIEW_END + /proc/get_turf_pixel(atom/AM) if(!istype(AM)) return @@ -1884,8 +1464,8 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) pixel_y_offset += ((AMiconheight/world.icon_size)-1)*(world.icon_size*0.5) //DY and DX - var/rough_x = round(round(pixel_x_offset,world.icon_size)/world.icon_size) - var/rough_y = round(round(pixel_y_offset,world.icon_size)/world.icon_size) + var/rough_x = floor(round(pixel_x_offset,world.icon_size)/world.icon_size) + var/rough_y = floor(round(pixel_y_offset,world.icon_size)/world.icon_size) //Find coordinates var/turf/T = get_turf(AM) //use AM's turfs, as it's coords are the same as AM's AND AM's coords are lost if it is inside another atom @@ -1985,10 +1565,21 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) #define UNTIL(X) while(!(X)) stoplag() -/proc/IsValidSrc(datum/D) - if(istype(D)) - return !QDELETED(D) - return FALSE +/// Macro for cases where an UNTIL() may go on forever (such as for an http request) +#define UNTIL_OR_TIMEOUT(X, __time) \ + do { \ + if(__time <= 0) {; \ + CRASH("UNTIL_OR_TIMEOUT given invalid time"); \ + } \ + var/__start_time = world.time; \ + do { \ + if(__start_time + __time <= world.time) {; \ + CRASH("UNTIL_OR_TIMEOUT hit timeout limit of [__time]"); \ + } else { \ + stoplag(); \ + } \ + } while(!(X)) \ + } while(FALSE) //Repopulates sortedAreas list /proc/repopulate_sorted_areas() @@ -2004,7 +1595,7 @@ GLOBAL_DATUM_INIT(dview_mob, /mob/dview, new) return GetAllContents() var/list/processing = list(src) var/list/assembled = list() - while(processing.len) + while(length(processing)) var/atom/A = processing[1] processing.Cut(1,2) if(!ignore_typecache[A.type]) @@ -2068,12 +1659,6 @@ GLOBAL_LIST_INIT(duplicate_forbidden_vars,list( M.regenerate_icons() return O -/proc/convert_to_json_text(json_file_string) - var/json_file = file(json_file_string) - json_file = file2text(json_file) - json_file = json_decode(json_file) - return json_file - ///Returns a list of all items of interest with their name /proc/getpois(mobs_only = FALSE, skip_mindless = FALSE, specify_dead_role = TRUE) var/list/mobs = sortmobs() @@ -2149,3 +1734,15 @@ GLOBAL_LIST_INIT(duplicate_forbidden_vars,list( if(NORTHWEST) return list(NORTHWEST, NORTH, WEST) + +/// Returns TRUE if the target is somewhere that the game should not interact with if possible +/// In this case, admin Zs and tutorial areas +/proc/should_block_game_interaction(atom/target) + if(is_admin_level(target.z)) + return TRUE + + var/area/target_area = get_area(target) + if(target_area?.block_game_interaction) + return TRUE + + return FALSE diff --git a/code/__pragmas.dm b/code/__pragmas.dm index 84fcc0dfc3..309883fbda 100644 --- a/code/__pragmas.dm +++ b/code/__pragmas.dm @@ -21,6 +21,7 @@ #pragma InvalidOverride error #pragma DanglingVarType error #pragma MissingInterpolatedExpression error +#pragma InvalidIndexOperation error //3000-3999 #pragma EmptyBlock error diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm index d3f533c687..6e5e239ef5 100644 --- a/code/_globalvars/bitfields.dm +++ b/code/_globalvars/bitfields.dm @@ -87,6 +87,7 @@ DEFINE_BITFIELD(flags_ammo_behaviour, list( "AMMO_IGNORE_RESIST" = AMMO_IGNORE_RESIST, "AMMO_BALLISTIC" = AMMO_BALLISTIC, "AMMO_IGNORE_COVER" = AMMO_IGNORE_COVER, + "AMMO_ANTIVEHICLE" = AMMO_ANTIVEHICLE, "AMMO_STOPPED_BY_COVER" = AMMO_STOPPED_BY_COVER, "AMMO_SPECIAL_EMBED" = AMMO_SPECIAL_EMBED, "AMMO_STRIKES_SURFACE" = AMMO_STRIKES_SURFACE, @@ -97,7 +98,6 @@ DEFINE_BITFIELD(flags_ammo_behaviour, list( "AMMO_FLAME" = AMMO_FLAME, )) - DEFINE_BITFIELD(projectile_flags, list( "PROJECTILE_SHRAPNEL" = PROJECTILE_SHRAPNEL, "PROJECTILE_BULLSEYE" = PROJECTILE_BULLSEYE, @@ -108,6 +108,7 @@ DEFINE_BITFIELD(flags_gun_features, list( "GUN_TRIGGER_SAFETY" = GUN_TRIGGER_SAFETY, "GUN_UNUSUAL_DESIGN" = GUN_UNUSUAL_DESIGN, "GUN_SILENCED" = GUN_SILENCED, + "GUN_CANT_EXECUTE" = GUN_CANT_EXECUTE, "GUN_INTERNAL_MAG" = GUN_INTERNAL_MAG, "GUN_AUTO_EJECTOR" = GUN_AUTO_EJECTOR, "GUN_AMMO_COUNTER" = GUN_AMMO_COUNTER, @@ -120,6 +121,7 @@ DEFINE_BITFIELD(flags_gun_features, list( "GUN_ANTIQUE" = GUN_ANTIQUE, "GUN_RECOIL_BUILDUP" = GUN_RECOIL_BUILDUP, "GUN_SUPPORT_PLATFORM" = GUN_SUPPORT_PLATFORM, + "GUN_NO_DESCRIPTION" = GUN_NO_DESCRIPTION, )) DEFINE_BITFIELD(flags_magazine, list( @@ -150,6 +152,8 @@ DEFINE_BITFIELD(flags_atom, list( "INITIALIZED" = INITIALIZED, "ATOM_DECORATED" = ATOM_DECORATED, "USES_HEARING" = USES_HEARING, + "HTML_USE_INITAL_ICON" = HTML_USE_INITAL_ICON, + "QUICK_DRAWABLE" = QUICK_DRAWABLE, )) DEFINE_BITFIELD(turf_flags, list( @@ -173,6 +177,8 @@ DEFINE_BITFIELD(flags_item, list( "CAN_DIG_SHRAPNEL" = CAN_DIG_SHRAPNEL, "ANIMATED_SURGICAL_TOOL" = ANIMATED_SURGICAL_TOOL, "IGNITING_ITEM" = IGNITING_ITEM, + "FORCEDROP_CONDITIONAL" = FORCEDROP_CONDITIONAL, + "SMARTGUNNER_BACKPACK_OVERRIDE" = SMARTGUNNER_BACKPACK_OVERRIDE, )) DEFINE_BITFIELD(flags_inv_hide, list( @@ -187,7 +193,7 @@ DEFINE_BITFIELD(flags_inv_hide, list( "HIDETOPHAIR" = HIDETOPHAIR, "HIDEALLHAIR" = HIDEALLHAIR, "HIDETAIL" = HIDETAIL, - "HIDEFACE" = HIDEFACE + "HIDEFACE" = HIDEFACE, )) DEFINE_BITFIELD(flags_inventory, list( @@ -353,7 +359,6 @@ DEFINE_BITFIELD(status_flags, list( "PASSEMOTES" = PASSEMOTES, "GODMODE" = GODMODE, "FAKEDEATH" = FAKEDEATH, - "DISFIGURED" = DISFIGURED, "XENO_HOST" = XENO_HOST, "IMMOBILE_ACTION" = IMMOBILE_ACTION, "PERMANENTLY_DEAD" = PERMANENTLY_DEAD, @@ -430,6 +435,7 @@ DEFINE_BITFIELD(toggleable_flags, list( "MODE_HARDCORE_PERMA" = MODE_HARDCORE_PERMA, "MODE_DISPOSABLE_MOBS" = MODE_DISPOSABLE_MOBS, "MODE_BYPASS_JOE" = MODE_BYPASS_JOE, + "MODE_DISABLE_JOE_RESPAWN" = MODE_DISABLE_JOE_RESPAWN, "MODE_NO_JOIN_AS_XENO" = MODE_NO_JOIN_AS_XENO, )) @@ -462,7 +468,9 @@ DEFINE_BITFIELD(fire_immunity, list( "FIRE_IMMUNITY_NO_DAMAGE" = FIRE_IMMUNITY_NO_DAMAGE, "FIRE_IMMUNITY_NO_IGNITE" = FIRE_IMMUNITY_NO_IGNITE, "FIRE_IMMUNITY_XENO_FRENZY" = FIRE_IMMUNITY_XENO_FRENZY, + "FIRE_VULNERABILITY" = FIRE_VULNERABILITY, )) + DEFINE_BITFIELD(vend_flags, list( "VEND_TO_HAND" = VEND_TO_HAND, "VEND_UNIFORM_RANKS" = VEND_UNIFORM_RANKS, @@ -473,6 +481,8 @@ DEFINE_BITFIELD(vend_flags, list( "VEND_INSTANCED_CATEGORY" = VEND_INSTANCED_CATEGORY, "VEND_FACTION_THEMES" = VEND_FACTION_THEMES, "VEND_USE_VENDOR_FLAGS" = VEND_USE_VENDOR_FLAGS, + "VEND_LOAD_AMMO_BOXES" = VEND_LOAD_AMMO_BOXES, + "VEND_STOCK_DYNAMIC" = VEND_STOCK_DYNAMIC )) DEFINE_BITFIELD(vehicle_flags, list( @@ -482,3 +492,122 @@ DEFINE_BITFIELD(vehicle_flags, list( "VEHICLE_CLASS_HEAVY" = VEHICLE_CLASS_HEAVY, "VEHICLE_BYPASS_BLOCKERS" = VEHICLE_BYPASS_BLOCKERS, )) + +DEFINE_BITFIELD(flags_pass, list( + "PASS_THROUGH" = PASS_THROUGH, + "PASS_AROUND" = PASS_AROUND, + "PASS_OVER_THROW_ITEM" = PASS_OVER_THROW_ITEM, + "PASS_OVER_THROW_MOB" = PASS_OVER_THROW_MOB, + "PASS_OVER_FIRE" = PASS_OVER_FIRE, + "PASS_OVER_ACID_SPRAY" = PASS_OVER_ACID_SPRAY, + "PASS_UNDER" = PASS_UNDER, + "PASS_GLASS" = PASS_GLASS, + "PASS_MOB_IS_XENO" = PASS_MOB_IS_XENO, + "PASS_MOB_IS_HUMAN" = PASS_MOB_IS_HUMAN, + "PASS_MOB_IS_OTHER" = PASS_MOB_IS_OTHER, + "PASS_MOB_THRU_XENO" = PASS_MOB_THRU_XENO, + "PASS_MOB_THRU_HUMAN" = PASS_MOB_THRU_HUMAN, + "PASS_MOB_THRU_OTHER" = PASS_MOB_THRU_OTHER, + "PASS_TYPE_CRAWLER" = PASS_TYPE_CRAWLER, + "PASS_HIGH_OVER_ONLY" = PASS_HIGH_OVER_ONLY, + "PASS_BUILDING_ONLY" = PASS_BUILDING_ONLY, + "PASS_CRUSHER_CHARGE" = PASS_CRUSHER_CHARGE, +)) + +DEFINE_BITFIELD(flags_can_pass_all, list( + "PASS_THROUGH" = PASS_THROUGH, + "PASS_AROUND" = PASS_AROUND, + "PASS_OVER_THROW_ITEM" = PASS_OVER_THROW_ITEM, + "PASS_OVER_THROW_MOB" = PASS_OVER_THROW_MOB, + "PASS_OVER_FIRE" = PASS_OVER_FIRE, + "PASS_OVER_ACID_SPRAY" = PASS_OVER_ACID_SPRAY, + "PASS_UNDER" = PASS_UNDER, + "PASS_GLASS" = PASS_GLASS, + "PASS_MOB_IS_XENO" = PASS_MOB_IS_XENO, + "PASS_MOB_IS_HUMAN" = PASS_MOB_IS_HUMAN, + "PASS_MOB_IS_OTHER" = PASS_MOB_IS_OTHER, + "PASS_MOB_THRU_XENO" = PASS_MOB_THRU_XENO, + "PASS_MOB_THRU_HUMAN" = PASS_MOB_THRU_HUMAN, + "PASS_MOB_THRU_OTHER" = PASS_MOB_THRU_OTHER, + "PASS_TYPE_CRAWLER" = PASS_TYPE_CRAWLER, + "PASS_HIGH_OVER_ONLY" = PASS_HIGH_OVER_ONLY, + "PASS_BUILDING_ONLY" = PASS_BUILDING_ONLY, + "PASS_CRUSHER_CHARGE" = PASS_CRUSHER_CHARGE, +)) + +DEFINE_BITFIELD(flags_can_pass_front, list( + "PASS_THROUGH" = PASS_THROUGH, + "PASS_AROUND" = PASS_AROUND, + "PASS_OVER_THROW_ITEM" = PASS_OVER_THROW_ITEM, + "PASS_OVER_THROW_MOB" = PASS_OVER_THROW_MOB, + "PASS_OVER_FIRE" = PASS_OVER_FIRE, + "PASS_OVER_ACID_SPRAY" = PASS_OVER_ACID_SPRAY, + "PASS_UNDER" = PASS_UNDER, + "PASS_GLASS" = PASS_GLASS, + "PASS_MOB_IS_XENO" = PASS_MOB_IS_XENO, + "PASS_MOB_IS_HUMAN" = PASS_MOB_IS_HUMAN, + "PASS_MOB_IS_OTHER" = PASS_MOB_IS_OTHER, + "PASS_MOB_THRU_XENO" = PASS_MOB_THRU_XENO, + "PASS_MOB_THRU_HUMAN" = PASS_MOB_THRU_HUMAN, + "PASS_MOB_THRU_OTHER" = PASS_MOB_THRU_OTHER, + "PASS_TYPE_CRAWLER" = PASS_TYPE_CRAWLER, + "PASS_HIGH_OVER_ONLY" = PASS_HIGH_OVER_ONLY, + "PASS_BUILDING_ONLY" = PASS_BUILDING_ONLY, + "PASS_CRUSHER_CHARGE" = PASS_CRUSHER_CHARGE, +)) + +DEFINE_BITFIELD(flags_can_pass_behind, list( + "PASS_THROUGH" = PASS_THROUGH, + "PASS_AROUND" = PASS_AROUND, + "PASS_OVER_THROW_ITEM" = PASS_OVER_THROW_ITEM, + "PASS_OVER_THROW_MOB" = PASS_OVER_THROW_MOB, + "PASS_OVER_FIRE" = PASS_OVER_FIRE, + "PASS_OVER_ACID_SPRAY" = PASS_OVER_ACID_SPRAY, + "PASS_UNDER" = PASS_UNDER, + "PASS_GLASS" = PASS_GLASS, + "PASS_MOB_IS_XENO" = PASS_MOB_IS_XENO, + "PASS_MOB_IS_HUMAN" = PASS_MOB_IS_HUMAN, + "PASS_MOB_IS_OTHER" = PASS_MOB_IS_OTHER, + "PASS_MOB_THRU_XENO" = PASS_MOB_THRU_XENO, + "PASS_MOB_THRU_HUMAN" = PASS_MOB_THRU_HUMAN, + "PASS_MOB_THRU_OTHER" = PASS_MOB_THRU_OTHER, + "PASS_TYPE_CRAWLER" = PASS_TYPE_CRAWLER, + "PASS_HIGH_OVER_ONLY" = PASS_HIGH_OVER_ONLY, + "PASS_BUILDING_ONLY" = PASS_BUILDING_ONLY, + "PASS_CRUSHER_CHARGE" = PASS_CRUSHER_CHARGE, +)) + +DEFINE_BITFIELD(sight, list( + "BLIND" = BLIND, + "SEE_BLACKNESS" = SEE_BLACKNESS, + "SEE_INFRA" = SEE_INFRA, + "SEE_MOBS" = SEE_MOBS, + "SEE_OBJS" = SEE_OBJS, + "SEE_PIXELS" = SEE_PIXELS, + "SEE_SELF" = SEE_SELF, + "SEE_THRU" = SEE_THRU, + "SEE_TURFS" = SEE_TURFS, +)) + +DEFINE_BITFIELD(vision_flags, list( + "BLIND" = BLIND, + "SEE_BLACKNESS" = SEE_BLACKNESS, + "SEE_INFRA" = SEE_INFRA, + "SEE_MOBS" = SEE_MOBS, + "SEE_OBJS" = SEE_OBJS, + "SEE_PIXELS" = SEE_PIXELS, + "SEE_SELF" = SEE_SELF, + "SEE_THRU" = SEE_THRU, + "SEE_TURFS" = SEE_TURFS, +)) + +DEFINE_BITFIELD(vis_flags, list( + "VIS_HIDE" = VIS_HIDE, + "VIS_INHERIT_DIR" = VIS_INHERIT_DIR, + "VIS_INHERIT_ICON" = VIS_INHERIT_ICON, + "VIS_INHERIT_ICON_STATE" = VIS_INHERIT_ICON_STATE, + "VIS_INHERIT_ID" = VIS_INHERIT_ID, + "VIS_INHERIT_LAYER" = VIS_INHERIT_LAYER, + "VIS_INHERIT_PLANE" = VIS_INHERIT_PLANE, + "VIS_UNDERLAY" = VIS_UNDERLAY, +)) diff --git a/code/_globalvars/global_lists.dm b/code/_globalvars/global_lists.dm index 8d9d683318..9648c4cf15 100644 --- a/code/_globalvars/global_lists.dm +++ b/code/_globalvars/global_lists.dm @@ -3,9 +3,15 @@ GLOBAL_LIST_EMPTY(WYFaxes) //Departmental faxes GLOBAL_LIST_EMPTY(USCMFaxes) GLOBAL_LIST_EMPTY(ProvostFaxes) GLOBAL_LIST_EMPTY(CMBFaxes) +GLOBAL_LIST_EMPTY(UPPFaxes) +GLOBAL_LIST_EMPTY(TWEFaxes) +GLOBAL_LIST_EMPTY(CLFFaxes) GLOBAL_LIST_EMPTY(GeneralFaxes) //Inter-machine faxes GLOBAL_LIST_EMPTY(fax_contents) //List of fax contents to maintain it even if source paper is deleted +// for all of our various bugs and runtimes +GLOBAL_LIST_EMPTY(bug_reports) + //datum containing a reference to the flattend map png url, the actual png is stored in the user's cache. GLOBAL_LIST_EMPTY(uscm_flat_tacmap_data) GLOBAL_LIST_EMPTY(xeno_flat_tacmap_data) @@ -20,14 +26,11 @@ GLOBAL_LIST_EMPTY(larva_burst_by_hive) GLOBAL_LIST_INIT_TYPED(custom_huds_list, /datum/custom_hud, setup_all_huds()) GLOBAL_LIST_INIT_TYPED(custom_human_huds, /datum/custom_hud, setup_human_huds()) -//Since it didn't really belong in any other category, I'm putting this here -//This is for procs to replace all the goddamn 'in world's that are chilling around the code - -var/readied_players = 0 //How many players are readied up in the lobby +GLOBAL_VAR_INIT(readied_players, 0) //How many players are readied up in the lobby GLOBAL_LIST_EMPTY_TYPED(other_factions_human_list, /mob/living/carbon/human) -var/global/list/ai_mob_list = list() //List of all AIs +GLOBAL_LIST_EMPTY(ai_mob_list) //List of all AIs GLOBAL_LIST_EMPTY(freed_mob_list) // List of mobs freed for ghosts @@ -112,15 +115,46 @@ GLOBAL_LIST_INIT_TYPED(resin_mark_meanings, /datum/xeno_mark_define, setup_resin GLOBAL_REFERENCE_LIST_INDEXED(xeno_datum_list, /datum/caste_datum, caste_type) //Chem Stuff -var/global/list/chemical_reactions_filtered_list //List of all /datum/chemical_reaction datums filtered by reaction components. Used during chemical reactions -var/global/list/chemical_reactions_list //List of all /datum/chemical_reaction datums indexed by reaction id. Used to search for the result instead of the components. -var/global/list/chemical_reagents_list //List of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff -var/global/list/chemical_properties_list //List of all /datum/chem_property datums indexed by property name +GLOBAL_LIST(chemical_reactions_filtered_list) //List of all /datum/chemical_reaction datums filtered by reaction components. Used during chemical reactions +GLOBAL_LIST(chemical_reactions_list) //List of all /datum/chemical_reaction datums indexed by reaction id. Used to search for the result instead of the components. +GLOBAL_LIST(chemical_reagents_list) //List of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff +GLOBAL_LIST(chemical_properties_list) //List of all /datum/chem_property datums indexed by property name +//list of all properties that conflict with each other. +GLOBAL_LIST_INIT_TYPED(conflicting_properties, /list, list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\ + PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\ + PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\ + PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\ + PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\ + PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\ + PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\ + PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\ + PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING, + PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC, + PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \ + PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC, PROPERTY_MUSCLESTIMULATING = PROPERTY_NERVESTIMULATING)) +//list of all properties that combine into something else, now featured in global list +GLOBAL_LIST_INIT_TYPED(combining_properties, /list, list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\ + PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\ + PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\ + PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\ + PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\ + PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\ + PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\ + PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING),\ + PROPERTY_FIRE_PENETRATING = list(PROPERTY_OXYGENATING, PROPERTY_VISCOUS),\ + PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\ + PROPERTY_BONEMENDING = list(PROPERTY_HYPERDENSIFICATING, PROPERTY_NUTRITIOUS),\ + PROPERTY_ENCEPHALOPHRASIVE = list(PROPERTY_NERVESTIMULATING, PROPERTY_PSYCHOSTIMULATING))) //List of all id's from classed /datum/reagent datums indexed by class or tier. Used by chemistry generator and chem spawners. -var/global/list/list/chemical_gen_classes_list = list("C" = list(),"C1" = list(),"C2" = list(),"C3" = list(),"C4" = list(),"C5" = list(),"C6" = list(),"T1" = list(),"T2" = list(),"T3" = list(),"T4" = list(),"tau" = list()) +GLOBAL_LIST_INIT_TYPED(chemical_gen_classes_list, /list, list("C" = list(),"C1" = list(),"C2" = list(),"C3" = list(),"C4" = list(),"C5" = list(),"C6" = list(),"T1" = list(),"T2" = list(),"T3" = list(),"T4" = list(),"tau", list())) //properties generated in chemicals, helps to make sure the same property doesn't show up 10 times GLOBAL_LIST_INIT_TYPED(generated_properties, /list, list("positive" = list(), "negative" = list(), "neutral" = list())) +GLOBAL_LIST_INIT_TYPED(space_weapons, /datum/space_weapon, setup_ship_weapon()) +GLOBAL_LIST_INIT_TYPED(space_weapons_ammo, /datum/space_weapon_ammo, setup_ship_ammo()) + GLOBAL_LIST_INIT_TYPED(ammo_list, /datum/ammo, setup_ammo()) //List of all ammo types. Used by guns to tell the projectile how to act. GLOBAL_REFERENCE_LIST_INDEXED(joblist, /datum/job, title) //List of all jobstypes, minus borg and AI @@ -143,13 +177,12 @@ GLOBAL_LIST_INIT(surgical_patient_types, setup_surgical_patient_types()) GLOBAL_LIST_INIT_TYPED(gear_path_presets_list, /datum/equipment_preset, setup_gear_path_presets()) GLOBAL_LIST_INIT_TYPED(gear_name_presets_list, /datum/equipment_preset, setup_gear_name_presets()) -var/global/list/active_areas = list() -var/global/list/all_areas = list() +GLOBAL_LIST_EMPTY(active_areas) +GLOBAL_LIST_EMPTY(all_areas) -var/global/list/turfs = list() -var/global/list/z1turfs = list() +GLOBAL_LIST_EMPTY(turfs) -/var/global/list/objects_of_interest // This is used to track the stealing objective for Agents. +GLOBAL_LIST(objects_of_interest) // This is used to track the stealing objective for Agents. // Areas exempt from explosive antigrief (not Z-levels) GLOBAL_LIST_INIT(explosive_antigrief_exempt_areas, list( @@ -170,9 +203,6 @@ GLOBAL_LIST_INIT(language_keys, setup_language_keys()) //table of say codes for GLOBAL_REFERENCE_LIST_INDEXED(origins, /datum/origin, name) GLOBAL_LIST_INIT(player_origins, USCM_ORIGINS) -//Xeno mutators -GLOBAL_REFERENCE_LIST_INDEXED_SORTED(xeno_mutator_list, /datum/xeno_mutator, name) - //Xeno hives GLOBAL_LIST_INIT_TYPED(hive_datum, /datum/hive_status, list( XENO_HIVE_NORMAL = new /datum/hive_status(), @@ -187,6 +217,7 @@ GLOBAL_LIST_INIT_TYPED(hive_datum, /datum/hive_status, list( XENO_HIVE_FORSAKEN = new /datum/hive_status/forsaken(), XENO_HIVE_YAUTJA = new /datum/hive_status/yautja(), XENO_HIVE_RENEGADE = new /datum/hive_status/corrupted/renegade(), + XENO_HIVE_TUTORIAL = new /datum/hive_status/tutorial() )) GLOBAL_LIST_INIT(xeno_evolve_times, setup_xeno_evolve_times()) @@ -216,23 +247,23 @@ GLOBAL_REFERENCE_LIST_INDEXED(yautja_hair_styles_list, /datum/sprite_accessory/y GLOBAL_LIST_INIT(dropship_camos, list(DROPSHIP_CAMO_TAN, DROPSHIP_CAMO_NAVY, DROPSHIP_CAMO_URBAN, DROPSHIP_CAMO_JUNGLE)) //Backpacks -var/global/list/backbaglist = list("Backpack", "Satchel") +GLOBAL_LIST_INIT(backbaglist, list("Backpack", "Satchel")) //Armor styles GLOBAL_LIST_INIT(armor_style_list, list("Padded" = 1, "Padless" = 2, "Ridged" = 3, "Carrier" = 4, "Skull" = 5, "Smooth" = 6, "Random")) // var/global/list/exclude_jobs = list(/datum/job/ai,/datum/job/cyborg) -var/global/round_should_check_for_win = TRUE +GLOBAL_VAR_INIT(round_should_check_for_win, TRUE) -var/global/list/key_mods = list("CTRL", "ALT", "SHIFT") +GLOBAL_LIST_INIT(key_mods, list("CTRL", "ALT", "SHIFT")) // A list storing the pass flags for specific types of atoms -var/global/list/pass_flags_cache = list() +GLOBAL_LIST_EMPTY(pass_flags_cache) //Parameterss cache -var/global/list/paramslist_cache = list() +GLOBAL_LIST_EMPTY(paramslist_cache) //Turf Edge info uberlist -- a list whos states contain GLOB.edgeinfo_X keyed as different icon_states -var/global/list/turf_edgeinfo_cache = list() +GLOBAL_LIST_EMPTY(turf_edgeinfo_cache) #define FULL_EDGE 1 #define HALF_EDGE_RIGHT 2 @@ -283,11 +314,20 @@ GLOBAL_LIST_INIT(typecache_living, typecacheof(/mob/living)) GLOBAL_LIST_INIT(emote_list, init_emote_list()) +/// list of categories for working joes +GLOBAL_LIST_EMPTY(wj_categories) +/// dict ("category" : (emotes)) of every wj emote typepath +GLOBAL_LIST_INIT(wj_emotes, setup_working_joe_emotes()) +/// list of categories for hazard joes +GLOBAL_LIST_EMPTY(hj_categories) +/// dict ("category" : (emotes)) of every hj emote typepath +GLOBAL_LIST_INIT(hj_emotes, setup_hazard_joe_emotes()) + /proc/cached_params_decode(params_data, decode_proc) - . = paramslist_cache[params_data] + . = GLOB.paramslist_cache[params_data] if(!.) . = call(decode_proc)(params_data) - paramslist_cache[params_data] = . + GLOB.paramslist_cache[params_data] = . /proc/key_number_decode(key_number_data) var/list/L = params2list(key_number_data) @@ -297,7 +337,7 @@ GLOBAL_LIST_INIT(emote_list, init_emote_list()) /proc/number_list_decode(number_list_data) var/list/L = params2list(number_list_data) - for(var/i in 1 to L.len) + for(var/i in 1 to length(L)) L[i] = text2num(L[i]) return L @@ -308,9 +348,26 @@ GLOBAL_LIST_INIT(emote_list, init_emote_list()) rkey++ var/datum/species/S = new T S.race_key = rkey //Used in mob icon caching. + var/datum/species/existing = all_species[S.name] + if(existing) + stack_trace("[S.name] from [T] overlaps with [existing.type]! It must have a unique name for lookup!") all_species[S.name] = S return all_species +/proc/setup_ship_weapon() + var/list/ammo_list = list() + for(var/weapon_type in subtypesof(/datum/space_weapon)) + var/datum/space_weapon/new_weapon = new weapon_type + ammo_list[new_weapon.type] = new_weapon + return ammo_list + +/proc/setup_ship_ammo() + var/list/ammo_list = list() + for(var/ammo_type in subtypesof(/datum/space_weapon_ammo)) + var/datum/space_weapon_ammo/new_ammo = new ammo_type + ammo_list[new_ammo.type] = new_ammo + return ammo_list + /proc/setup_ammo() var/list/blacklist = list(/datum/ammo/energy, /datum/ammo/energy/yautja, /datum/ammo/energy/yautja/rifle, /datum/ammo/bullet/shotgun, /datum/ammo/xeno) var/list/ammo_list = list() @@ -350,6 +407,9 @@ GLOBAL_LIST_INIT(emote_list, init_emote_list()) if (!initial(EP.flags)) continue EP = new T + var/datum/equipment_preset/existing = gear_path_presets_list[EP.name] + if(existing) + stack_trace("[EP.name] from [T] overlaps with [existing.type]! It must have a unique name for lookup!") gear_path_presets_list[EP.name] = EP return sortAssoc(gear_path_presets_list) @@ -373,7 +433,7 @@ GLOBAL_LIST_INIT(emote_list, init_emote_list()) while(gap > 1 || swapped) swapped = 0 if(gap > 1) - gap = round(gap / 1.247330950103979) + gap = floor(gap / 1.247330950103979) if(gap < 1) gap = 1 for(var/i = 1; gap + i <= length(surgeries); i++) @@ -461,17 +521,21 @@ GLOBAL_LIST_INIT(emote_list, init_emote_list()) /proc/setup_yautja_capes() var/list/cape_list = list() for(var/obj/item/clothing/yautja_cape/cape_type as anything in typesof(/obj/item/clothing/yautja_cape)) - cape_list[initial(cape_type.name)] = cape_type + var/cape_name = initial(cape_type.name) + var/obj/item/clothing/yautja_cape/existing = cape_list[cape_name] + if(existing) + stack_trace("[cape_name] from [cape_type] overlaps with [existing.type]! It must have a unique name for lookup!") + cape_list[cape_name] = cape_type return cape_list /* // Uncomment to debug chemical reaction list. /client/verb/debug_chemical_list() - for (var/reaction in chemical_reactions_filtered_list) - . += "chemical_reactions_filtered_list\[\"[reaction]\"\] = \"[chemical_reactions_filtered_list[reaction]]\"\n" - if(islist(chemical_reactions_filtered_list[reaction])) - var/list/L = chemical_reactions_filtered_list[reaction] + for (var/reaction in GLOB.chemical_reactions_filtered_list) + . += "GLOB.chemical_reactions_filtered_list\[\"[reaction]\"\] = \"[GLOB.chemical_reactions_filtered_list[reaction]]\"\n" + if(islist(GLOB.chemical_reactions_filtered_list[reaction])) + var/list/L = GLOB.chemical_reactions_filtered_list[reaction] for(var/t in L) . += " has: [t]\n" world << . @@ -483,24 +547,8 @@ GLOBAL_REFERENCE_LIST_INDEXED(all_skills, /datum/skill, skill_name) // Timelock GLOBAL_LIST_EMPTY(timelocks) - -//the global list of specialist kits that haven't been claimed yet. -var/global/list/available_specialist_sets = list( - "Scout Set", - "Sniper Set", - "Demolitionist Set", - "Heavy Grenadier Set", - "Pyro Set" - ) - -//Similar thing, but used in /obj/item/spec_kit -var/global/list/available_specialist_kit_boxes = list( - "Pyro" = 2, - "Grenadier" = 2, - "Sniper" = 2, - "Scout" = 2, - "Demo" = 2, - ) +GLOBAL_LIST_EMPTY_TYPED(specialist_set_name_dict, /datum/specialist_set) +GLOBAL_LIST_INIT_TYPED(specialist_set_datums, /datum/specialist_set, setup_specialist_sets()) /proc/init_global_referenced_datums() init_keybindings() @@ -524,6 +572,32 @@ var/global/list/available_specialist_kit_boxes = list( else .[E.key_third_person] |= E +/// Setup for Working joe emotes and category list, returns data for wj_emotes +/proc/setup_working_joe_emotes() + var/list/emotes_to_add = list() + for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in subtypesof(/datum/emote/living/carbon/human/synthetic/working_joe)) + if(!(initial(emote.joe_flag) & WORKING_JOE_EMOTE) || !initial(emote.key) || !initial(emote.say_message)) + continue + + if(!(initial(emote.category) in GLOB.wj_categories)) + GLOB.wj_categories += initial(emote.category) + + emotes_to_add += emote + return emotes_to_add + +/// Setup for Hazard joe emotes and category list, returns data for hj_emotes +/proc/setup_hazard_joe_emotes() + var/list/emotes_to_add = list() + for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in subtypesof(/datum/emote/living/carbon/human/synthetic/working_joe)) + if(!(initial(emote.joe_flag) & HAZARD_JOE_EMOTE) || !initial(emote.key) || !initial(emote.say_message)) + continue + + if(!(initial(emote.category) in GLOB.hj_categories)) + GLOB.hj_categories += initial(emote.category) + + emotes_to_add += emote + return emotes_to_add + GLOBAL_LIST_EMPTY(topic_tokens) GLOBAL_PROTECT(topic_tokens) diff --git a/code/_globalvars/lists/clans.dm b/code/_globalvars/lists/clans.dm new file mode 100644 index 0000000000..f04915a374 --- /dev/null +++ b/code/_globalvars/lists/clans.dm @@ -0,0 +1,19 @@ +GLOBAL_LIST_INIT_TYPED(clan_ranks, /datum/yautja_rank, list( + CLAN_RANK_UNBLOODED = new /datum/yautja_rank/unblooded(), + CLAN_RANK_YOUNG = new /datum/yautja_rank/young(), + CLAN_RANK_BLOODED = new /datum/yautja_rank/blooded(), + CLAN_RANK_ELITE = new /datum/yautja_rank/elite(), + CLAN_RANK_ELDER = new /datum/yautja_rank/elder(), + CLAN_RANK_LEADER = new /datum/yautja_rank/leader(), + CLAN_RANK_ADMIN = new /datum/yautja_rank/ancient() +)) + +GLOBAL_LIST_INIT(clan_ranks_ordered, list( + CLAN_RANK_UNBLOODED = CLAN_RANK_UNBLOODED_INT, + CLAN_RANK_YOUNG = CLAN_RANK_YOUNG_INT, + CLAN_RANK_BLOODED = CLAN_RANK_BLOODED_INT, + CLAN_RANK_ELITE = CLAN_RANK_ELITE_INT, + CLAN_RANK_ELDER = CLAN_RANK_ELDER_INT, + CLAN_RANK_LEADER = CLAN_RANK_LEADER_INT, + CLAN_RANK_ADMIN = CLAN_RANK_ADMIN_INT +)) diff --git a/code/_globalvars/lists/client.dm b/code/_globalvars/lists/client.dm index 78f3a20da4..404e8a662e 100644 --- a/code/_globalvars/lists/client.dm +++ b/code/_globalvars/lists/client.dm @@ -6,20 +6,42 @@ GLOBAL_LIST_EMPTY(keybindings_by_name) // This is a mapping from JS keys to Byond - ref: https://keycode.info/ GLOBAL_LIST_INIT(_kbMap, list( "UP" = "North", + "ARROWUP" = "North", "RIGHT" = "East", + "ARROWRIGHT" = "East", "DOWN" = "South", + "ARROWDOWN" = "South", "LEFT" = "West", + "ARROWLEFT" = "West", "INSERT" = "Insert", "HOME" = "Northwest", "PAGEUP" = "Northeast", - "DEL" = "Delete", + "DEL" = "Delete", // Unlikely this is correct now + "DELETE" = "Delete", "END" = "Southwest", "PAGEDOWN" = "Southeast", "SPACEBAR" = "Space", "ENTER" = "Return", "ALT" = "Alt", "SHIFT" = "Shift", - "CONTROL" = "Ctrl" + "CONTROL" = "Ctrl", + "MULTIPLY" = "Multiply", + "DIVIDE" = "Divide", + "SUBTRACT" = "Subtract", + "ADD" = "Add", + "DECIMAL" = "Decimal", + "CLEAR" = "Center", + "PAUSE" = "Pause", + "CONTEXTMENU" = "Apps", + "NUMLOCK" = "Numlock", + "SCROLLLOCK" = "Scroll", + "MEDIANEXTTRACK" = "MediaNext", + "MEDIAPLAYPAUSE" = "MediaPlayPause", + "MEDIASTOP" = "MediaStop", + "MEDIAPREVIOUSTRACK" = "MediaPrev", + "VOLUMEMUTE" = "VolumeMute", + "VOLUMEUP" = "VolumeUp", + "VOLUMEDOWN" = "VolumeDown", )) ///List of ckeys that have seen a blurb of a given key. diff --git a/code/_globalvars/lists/mapping_globals.dm b/code/_globalvars/lists/mapping_globals.dm index 5a2b953ed6..e893c31d4f 100644 --- a/code/_globalvars/lists/mapping_globals.dm +++ b/code/_globalvars/lists/mapping_globals.dm @@ -53,6 +53,7 @@ GLOBAL_LIST_EMPTY(teleporter_landmarks) GLOBAL_LIST_INIT(cardinals, list(NORTH, SOUTH, EAST, WEST)) GLOBAL_LIST_EMPTY(nightmare_landmarks) +GLOBAL_LIST_EMPTY(nightmare_landmark_tags_removed) GLOBAL_LIST_EMPTY(ship_areas) diff --git a/code/_globalvars/lists/names.dm b/code/_globalvars/lists/names.dm new file mode 100644 index 0000000000..09ad2b422d --- /dev/null +++ b/code/_globalvars/lists/names.dm @@ -0,0 +1,39 @@ +GLOBAL_LIST_INIT(ai_names, file2list("strings/ai.txt")) +GLOBAL_LIST_INIT(first_names_male, file2list("strings/first_male.txt")) +GLOBAL_LIST_INIT(first_names_female, file2list("strings/first_female.txt")) +GLOBAL_LIST_INIT(last_names, file2list("strings/last.txt")) +GLOBAL_LIST_INIT(clown_names, file2list("strings/clown.txt")) +GLOBAL_LIST_INIT(operation_titles, file2list("strings/operation_title.txt")) +GLOBAL_LIST_INIT(operation_prefixes, file2list("strings/operation_prefix.txt")) +GLOBAL_LIST_INIT(operation_postfixes, file2list("strings/operation_postfix.txt")) + +GLOBAL_LIST_INIT(verbs, file2list("strings/verbs.txt")) +//loaded on startup because of " +//would include in rsc if ' was used + + +GLOBAL_LIST_INIT(first_names_male_clf, list("Alan","Jack","Bil","Jonathan","John","Shiro","Gareth","Clark","Sam", "Lionel", "Aaron", "Charlie", "Scott", "Winston", "Aidan", "Ellis", "Mason", "Wesley", "Nicholas", "Calvin", "Nishikawa", "Hiroto", "Chiba", "Ouchi", "Furuse", "Takagi", "Oba", "Kishimoto")) +GLOBAL_LIST_INIT(first_names_female_clf, list("Emma", "Adelynn", "Mary", "Halie", "Chelsea", "Lexie", "Arya", "Alicia", "Selah", "Amber", "Heather", "Myra", "Heidi", "Charlotte", "Oliva", "Lydia", "Tia", "Riko", "Ari", "Machida", "Ueki", "Mihara", "Noda")) +GLOBAL_LIST_INIT(last_names_clf, list("Hawkins","Rickshaw","Elliot","Billard","Cooper","Fox", "Barlow", "Barrows", "Stewart", "Morgan", "Green", "Stone", "Burr", "Hunt", "Yuko", "Gesshin", "Takanibu", "Tetsuzan", "Tomomi", "Bokkai", "Takesi")) + +GLOBAL_LIST_INIT(first_names_male_colonist, list("Alan","Jack","Bil","Jonathan","John","Shiro","Gareth","Clark","Sam", "Lionel", "Aaron", "Charlie", "Scott", "Winston", "Aidan", "Ellis", "Mason", "Wesley", "Nicholas", "Calvin", "Nishikawa", "Hiroto", "Chiba", "Ouchi", "Furuse", "Takagi", "Oba", "Kishimoto")) +GLOBAL_LIST_INIT(first_names_female_colonist, list("Emma", "Adelynn", "Mary", "Halie", "Chelsea", "Lexie", "Arya", "Alicia", "Selah", "Amber", "Heather", "Myra", "Heidi", "Charlotte", "Ashley", "Raven", "Tori", "Anne", "Madison", "Oliva", "Lydia", "Tia", "Riko", "Ari", "Machida", "Ueki", "Mihara", "Noda")) +GLOBAL_LIST_INIT(last_names_colonist, list("Hawkins","Rickshaw","Elliot","Billard","Cooper","Fox", "Barlow", "Barrows", "Stewart", "Morgan", "Green", "Stone", "Titan", "Crowe", "Krantz", "Pathillo", "Driggers", "Burr", "Hunt", "Yuko", "Gesshin", "Takanibu", "Tetsuzan", "Tomomi", "Bokkai", "Takesi")) + +GLOBAL_LIST_INIT(first_names_male_upp, list("Badai","Mongkeemur","Alexei","Andrei","Artyom","Viktor","Xiangai","Ivan","Choban","Oleg", "Dayan", "Taghi", "Batu", "Arik", "Orda", "Ghazan", "Bala", "Gao", "Zhan", "Ren", "Hou", "Xue", "Serafim", "Luca", "Su", "György", "István", "Mihály", "Vladimir", "Aleksandr", "Fyodor", "Bhodar", "Qazem", "Łukasz", "Miłogost", "Radogost", "Uniegost", "Hostirad", "Hostimil", "Hostisvit", "Lubgost", "Gościsław", "Vseslav", "Bohuměr", "Bronisław", "Česćiměr", "Dobysław", "Horisław", "Jaroměr", "Mirosław", "Mječisław", "Radoměr", "Stanij", "Stanisław", "Wjeleměr", "Wójsław")) +GLOBAL_LIST_INIT(first_names_female_upp, list("Altani","Cirina","Anastasiya","Saran","Wei","Oksana","Ren","Svena","Tatyana","Yaroslava", "Izabella", "Kata", "Krisztina", "Miruna", "Flori", "Lucia", "Anica", "Li", "Yimu", "Alona", "Hsiau-Li", "Xiaoling", "Erhong", "Baśka", "Angela", "Angelina", "Angja", "Ankica", "Biljana", "Bisera", "Bistra", "Blaga", "Blagica", "Blagorodna", "Verka", "Vladica", "Denica", "Živka", "Zlata", "Jagoda", "Letka", "Ljupka", "Mila", "Mirjana", "Mirka", "Rada", "Radmila", "Slavica", "Slavka", "Snežana", "Stojna", "Ubavka", "Jaromir", "Mscëwòj", "Subisłôw", "Swiãtopôłk", "Ji-Sun", "Chaeyong", "Chaewon", "Saerom", "Seoyeong", "Jiheon", "Hayoung")) +GLOBAL_LIST_INIT(last_names_upp, list("Azarov","Bogdanov","Barsukov","Golovin","Davydov","Khan","Noica","Barbu","Zhukov","Ivanov","Mihai","Kasputin","Belov", "Belova","Melnikov", "Vasilevsky", "Aleksander", "Halkovich", "Stanislaw", "Proca", "Zaituc", "Arcos", "Kubat", "Kral", "Volf", "Xun", "Jia", "Bachoń", "Wang", "Ji", "Xiang", "Zhang", "Mei", "Ma", "Kim", "Yi", "Ri", "Pak", "Chong", "Baek", "Kwon", "Hwang", "Roh", "Lee", "Song")) + +GLOBAL_LIST_INIT(first_names_male_pmc, list("Owen","Luka","Nelson","Branson", "Tyson", "Leo", "Bryant", "Kobe", "Rohan", "Riley", "Aidan", "Watase","Egawa", "Hisakawa", "Koide", "Remy", "Martial", "Magnus", "Heiko", "Lennard")) +GLOBAL_LIST_INIT(first_names_female_pmc, list("Madison","Jessica","Anna","Juliet", "Olivia", "Lea", "Diane", "Kaori", "Beatrice", "Riley", "Amy", "Natsue","Yumi", "Aiko", "Fujiko", "Jennifer", "Ashley", "Mary", "Hitomi", "Lisa")) +GLOBAL_LIST_INIT(last_names_pmc, list("Bates","Shaw","Hansen","Black", "Chambers", "Hall", "Gibson", "Weiss", "Waller", "Burton", "Bakin", "Rohan", "Naomichi", "Yakumo", "Yosai", "Gallagher", "Hiles", "Bourdon", "Strassman", "Palau")) + +GLOBAL_LIST_INIT(first_names_male_gladiator, list("Augustus", "Maximus", "Octavius", "Septimus", "Titus", "Brutus", "Caesar", "Justinian")) +GLOBAL_LIST_INIT(first_names_female_gladiator, list("Aelia", "Aquila", "Caecilia", "Camilla", "Claudia", "Flavia", "Martina", "Theodora")) + +GLOBAL_LIST_INIT(first_names_male_dutch, list("Raymond", "Jesse", "Jack", "John", "Sam", "Aaron", "Charlie", "Ellis", "Nick", "Francis", "Louis")) +GLOBAL_LIST_INIT(first_names_female_dutch, list("Chelsea", "Mira", "Jessica", "Catherine", "Eliza", "Emma", "Ashley", "Annie", "Alicia", "Miranda", "Ellen")) + +GLOBAL_LIST_INIT(monkey_names, list("Abu", "Aldo", "Bear", "Bingo", "Clyde", "Crystal", "Gordo", "George", "Koko", "Marcel", "Nim", "Rafiki", "Spike", "Banana", "Boots", "Bubbles", "Smiley", "Winston")) + +GLOBAL_LIST_INIT(weapon_surnames, list("Adze", "Axe", "Bagh Nakha", "Bo", "Bola", "Bow", "Bowman", "Cannon", "Carbine", "Cestus", "Club", "Culverin", "Dagger", "Dao", "Derringer", "Dha", "Dussack", "Emeici", "Falchion", "Fan", "Flyssa", "Gauntlet", "Hammer", "Halberd", "Harquebus", "Hatchet", "Hwando", "Katar", "Kampilan", "Knuckles", "Lance", "Lancer", "Larim", "Maduvu", "Mace", "Maru", "Mauser", "Messer", "Mine", "Mubucae", "Nyepel", "Onager", "Pata", "Pike", "Ram", "Saber", "Seax", "Shamsir", "Sickle", "Sling", "Spear", "Spears", "Staff", "Sword", "Tekko")) diff --git a/code/_globalvars/lists/object_lists.dm b/code/_globalvars/lists/object_lists.dm index 7f56f863b6..0482f7e0db 100644 --- a/code/_globalvars/lists/object_lists.dm +++ b/code/_globalvars/lists/object_lists.dm @@ -23,10 +23,6 @@ GLOBAL_LIST_EMPTY_TYPED(disposal_retrieval_list, /obj/structure/disposaloutlet/r GLOBAL_LIST_EMPTY_TYPED(disposalpipe_up_list, /obj/structure/disposalpipe/up/almayer) GLOBAL_LIST_EMPTY_TYPED(disposalpipe_down_list, /obj/structure/disposalpipe/down/almayer) -GLOBAL_LIST_EMPTY_TYPED(hijack_bustable_windows, /obj/structure/window) -GLOBAL_LIST_EMPTY_TYPED(hijack_deletable_windows, /obj/structure/machinery/door/window/ultra) -GLOBAL_LIST_EMPTY_TYPED(hijack_bustable_ladders, /obj/structure/ladder/fragile_almayer) - GLOBAL_LIST_EMPTY_TYPED(all_multi_vehicles, /obj/vehicle/multitile) GLOBAL_LIST_EMPTY_TYPED(all_active_defenses, /obj/structure/machinery/defenses) diff --git a/code/_globalvars/misc.dm b/code/_globalvars/misc.dm index 7cd20cb9e7..fc8c65282e 100644 --- a/code/_globalvars/misc.dm +++ b/code/_globalvars/misc.dm @@ -1,3 +1,85 @@ +GLOBAL_VAR_INIT(game_year, 2182) + +GLOBAL_VAR_INIT(ooc_allowed, TRUE) +GLOBAL_VAR_INIT(looc_allowed, TRUE) +GLOBAL_VAR_INIT(dsay_allowed, TRUE) +GLOBAL_VAR_INIT(dooc_allowed, TRUE) +GLOBAL_VAR_INIT(dlooc_allowed, FALSE) + +GLOBAL_VAR_INIT(enter_allowed, TRUE) + +GLOBAL_LIST_EMPTY(admin_log) +GLOBAL_LIST_EMPTY(asset_log) + +// multiplier for watts per tick <> cell storage (eg: 0.02 means if there is a load of 1000 watts, 20 units will be taken from a cell per second) +//It's a conversion constant. power_used*CELLRATE = charge_provided, or charge_used/CELLRATE = power_provided +#define CELLRATE 0.006 + +// Cap for how fast cells charge, as a percentage-per-tick (0.01 means cellcharge is capped to 1% per second) +#define CHARGELEVEL 0.001 + +GLOBAL_VAR(VehicleElevatorConsole) +GLOBAL_VAR(VehicleGearConsole) + +//Spawnpoints. +GLOBAL_LIST_EMPTY(fallen_list) +/// This is for dogtags placed on crosses- they will show up at the end-round memorial. +GLOBAL_LIST_EMPTY(fallen_list_cross) + +GLOBAL_LIST_INIT(diagonals, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) +GLOBAL_LIST_INIT(alldirs, list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) +GLOBAL_LIST_INIT(reverse_dir, list(2, 1, 3, 8, 10, 9, 11, 4, 6, 5, 7, 12, 14, 13, 15, 32, 34, 33, 35, 40, 42, 41, 43, 36, 38, 37, 39, 44, 46, 45, 47, 16, 18, 17, 19, 24, 26, 25, 27, 20, 22, 21, 23, 28, 30, 29, 31, 48, 50, 49, 51, 56, 58, 57, 59, 52, 54, 53, 55, 60, 62, 61, 63)) + + + +GLOBAL_VAR(join_motd) +GLOBAL_VAR(current_tms) + +GLOBAL_LIST_INIT(AAlarmWireColorToFlag, RandomAAlarmWires()) +GLOBAL_LIST(AAlarmIndexToFlag) +GLOBAL_LIST(AAlarmIndexToWireColor) +GLOBAL_LIST(AAlarmWireColorToIndex) + +/// 3 minutes in the station. +#define shuttle_time_in_station 3 MINUTES +/// 10 minutes to arrive. +#define shuttle_time_to_arrive 10 MINUTES + + // For FTP requests. (i.e. downloading runtime logs.) + // However it'd be ok to use for accessing attack logs and such too, which are even laggier. +GLOBAL_VAR_INIT(fileaccess_timer, 0) + +// Reference list for disposal sort junctions. Filled up by sorting junction's New() +GLOBAL_LIST_EMPTY(tagger_locations) + +//added for Xenoarchaeology, might be useful for other stuff +GLOBAL_LIST_INIT(alphabet_uppercase, list("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z")) +GLOBAL_LIST_INIT(alphabet_lowercase, list("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z")) + +GLOBAL_LIST_INIT(greek_letters, list("Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta", "Theta", "Iota", "Kappa", "Lambda", "Mu", "Nu", "Xi", "Omnicron", "Pi", "Rho", "Sigma", "Tau", "Upsilon", "Phi", "Chi", "Psi", "Omega")) +GLOBAL_LIST_INIT(nato_phonetic_alphabet, list("Alpha", "Bravo", "Charlie", "Delta", "Echo", "Foxtrot", "Golf", "Hotel", "India", "Juliett", "Kilo", "Lima", "Mike", "November", "Oscar", "Papa", "Quebec", "Romeo", "Sierra", "Tango", "Uniform", "Victor", "Whiskey", "X-Ray", "Yankee", "Zulu")) + +//Used for autocall procs on ERT +GLOBAL_VAR_INIT(distress_cancel, FALSE) +GLOBAL_VAR_INIT(destroy_cancel, FALSE) + +// Which lobby art is on display +// This is updated by the lobby art turf when it initializes +GLOBAL_VAR_INIT(displayed_lobby_art, -1) + +// Last global ID that was assigned to a mob (for round recording purposes) +GLOBAL_VAR_INIT(last_mob_gid, 0) + +GLOBAL_LIST_INIT(almayer_ship_sections, list( + "Upper deck Foreship", + "Upper deck Midship", + "Upper deck Aftship", + "Lower deck Foreship", + "Lower deck Midship", + "Lower deck Aftship" +)) + + GLOBAL_VAR_INIT(internal_tick_usage, 0.2 * world.tick_lag) /// Global performance feature toggle flags @@ -31,7 +113,7 @@ GLOBAL_DATUM_INIT(uscm_tacmap_status, /datum/tacmap/drawing/status_tab_view, new GLOBAL_DATUM_INIT(xeno_tacmap_status, /datum/tacmap/drawing/status_tab_view/xeno, new) /// List of roles that can be setup for each gamemode -GLOBAL_LIST_INIT(gamemode_roles, list()) +GLOBAL_LIST_EMPTY(gamemode_roles) GLOBAL_VAR_INIT(minimum_exterior_lighting_alpha, 255) @@ -55,5 +137,3 @@ GLOBAL_VAR(obfs_x) GLOBAL_VAR(obfs_y) GLOBAL_VAR_INIT(ai_xeno_weeding, TRUE) - -GLOBAL_LIST_INIT(alldirs, list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) diff --git a/code/_macros.dm b/code/_macros.dm index 0e85827bc0..9b92dc8730 100644 --- a/code/_macros.dm +++ b/code/_macros.dm @@ -74,7 +74,7 @@ lazy_list[key] |= value; // Insert an object A into a sorted list using cmp_proc (/code/_helpers/cmp.dm) for comparison. -#define ADD_SORTED(list, A, cmp_proc) if(!list.len) {list.Add(A)} else {list.Insert(FindElementIndex(A, list, cmp_proc), A)} +#define ADD_SORTED(list, A, cmp_proc) if(!length(list)) {list.Add(A)} else {list.Insert(FindElementIndex(A, list, cmp_proc), A)} //Currently used in SDQL2 stuff #define send_output(target, msg, control) target << output(msg, control) @@ -83,14 +83,14 @@ // Spawns multiple objects of the same type #define cast_new(type, num, args...) if((num) == 1) { new type(args) } else { for(var/i=0;i<(num),i++) { new type(args) } } -#define FLAGS_EQUALS(flag, flags) ((flag & (flags)) == (flags)) +#define FLAGS_EQUALS(flag, flags) (((flag) & (flags)) == (flags)) #define IS_DIAGONAL_DIR(dir) (dir & ~(NORTH|SOUTH)) // Inverse direction, taking into account UP|DOWN if necessary. -#define REVERSE_DIR(dir) ( ((dir & 85) << 1) | ((dir & 170) >> 1) ) +#define REVERSE_DIR(dir) ( (((dir) & 85) << 1) | (((dir) & 170) >> 1) ) -#define POSITIVE(val) max(val, 0) +#define POSITIVE(val) max((val), 0) #define GENERATE_DEBUG_ID "[rand(0, 9)][rand(0, 9)][rand(0, 9)][rand(0, 9)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)][pick(alphabet_lowercase)]" diff --git a/code/_onclick/adjacent.dm b/code/_onclick/adjacent.dm index 49dfdf35e3..af0882d6a9 100644 --- a/code/_onclick/adjacent.dm +++ b/code/_onclick/adjacent.dm @@ -262,10 +262,10 @@ Quick adjacency (to turf): // Make sure pass flags are removed A.remove_temp_pass_flags(pass_flags) - if ((fd1 && !blockers["fd1"].len) || (fd2 && !blockers["fd2"].len)) // This means that for a given direction it did not have a blocker + if ((fd1 && !length(blockers["fd1"])) || (fd2 && !length(blockers["fd2"]))) // This means that for a given direction it did not have a blocker return src - if (blockers["fd1"].len || blockers["fd2"].len) + if (length(blockers["fd1"]) || length(blockers["fd2"])) var/guaranteed_hit = 0 // indicates whether there is a guaranteed hit (aka there is not chance to bypass blocker). 0 = nothing var/list/cur_dense_blockers = list() for (var/atom/blocker in blockers["fd1"]) @@ -297,7 +297,7 @@ Quick adjacency (to turf): var/turf/curT = get_turf(A) var/is_turf = isturf(A) - for(var/turf/T in getline2(A, src)) + for(var/turf/T in get_line(A, src)) if(curT == T) continue if(T.density) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index fe0c9e7b72..620a4ccabc 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -202,7 +202,7 @@ if (mods["alt"]) var/turf/T = get_turf(src) - if(T && user.TurfAdjacent(T) && T.contents.len) + if(T && user.TurfAdjacent(T) && length(T.contents)) user.set_listed_turf(T) return TRUE @@ -378,9 +378,9 @@ tX = tX[1] var/shiftX = C.pixel_x / world.icon_size var/shiftY = C.pixel_y / world.icon_size - var/list/actual_view = getviewsize(C ? C.view : world_view_size) - tX = Clamp(origin.x + text2num(tX) + shiftX - round(actual_view[1] / 2) - 1, 1, world.maxx) - tY = Clamp(origin.y + text2num(tY) + shiftY - round(actual_view[2] / 2) - 1, 1, world.maxy) + var/list/actual_view = getviewsize(C ? C.view : GLOB.world_view_size) + tX = clamp(origin.x + text2num(tX) + shiftX - floor(actual_view[1] / 2) - 1, 1, world.maxx) + tY = clamp(origin.y + text2num(tY) + shiftY - floor(actual_view[2] / 2) - 1, 1, world.maxy) return locate(tX, tY, tZ) diff --git a/code/_onclick/click_hold.dm b/code/_onclick/click_hold.dm index e972821615..1d6c25619e 100644 --- a/code/_onclick/click_hold.dm +++ b/code/_onclick/click_hold.dm @@ -88,17 +88,17 @@ if(mods["left"]) SEND_SIGNAL(src, COMSIG_CLIENT_LMB_DRAG, src_obj, over_obj, params) - var/atom/last_atom = LAZYACCESS(mouse_trace_history, mouse_trace_history.len) + var/atom/last_atom = LAZYACCESS(mouse_trace_history, length(mouse_trace_history)) if(over_obj == last_atom) return // Add the hovered atom to the trace LAZYADD(mouse_trace_history, over_obj) -/client/MouseDrop(datum/over_object, datum/src_location, over_location, src_control, over_control, params) +/client/MouseDrop(datum/src_object, datum/over_object, src_location, over_location, src_control, over_control, params) . = ..() if(over_object) - SEND_SIGNAL(over_object, COMSIG_ATOM_DROP_ON, src_location, src) + SEND_SIGNAL(over_object, COMSIG_ATOM_DROPPED_ON, src_object, src) - if(src_location) - SEND_SIGNAL(src_location, COMSIG_ATOM_DROPPED_ON, over_object, src) + if(src_object) + SEND_SIGNAL(src_object, COMSIG_ATOM_DROP_ON, over_object, src) diff --git a/code/_onclick/cyborg.dm b/code/_onclick/cyborg.dm deleted file mode 100644 index c3056ed5af..0000000000 --- a/code/_onclick/cyborg.dm +++ /dev/null @@ -1,143 +0,0 @@ -/* - Cyborg ClickOn() - - Cyborgs have no range restriction on attack_robot(), because it is basically an AI click. - However, they do have a range restriction on item use, so they cannot do without the - adjacency code. -*/ - -/mob/living/silicon/robot/click(atom/A, mods) - if(lockcharge || is_mob_incapacitated(TRUE)) - return 1 - - if(mods["middle"]) - cycle_modules() - return 1 - - if (mods["ctrl"] && mods["shift"]) - if (!A.BorgCtrlShiftClick(src)) - return 1 - - else if (mods["ctrl"]) - if (!A.BorgCtrlClick(src)) - return 1 - - else if(mods["shift"]) - return A.BorgShiftClick(src) - - if(mods["alt"]) // alt and alt-gr (rightalt) - if (!A.BorgAltClick(src)) - return 1 - - - if(aiCamera.in_camera_mode) - aiCamera.camera_mode_off() - if(is_component_functioning("camera")) - aiCamera.captureimage(A, usr) - else - to_chat(src, SPAN_DANGER("Your camera isn't functional.")) - return 1 - - face_atom(A) - if (world.time <= next_move) return - var/obj/item/W = get_active_hand() - - // Cyborgs have no range-checking unless there is item use - if(!W) - A.add_hiddenprint(src) - A.attack_robot(src) - return 1 - - // buckled cannot prevent machine interlinking but stops arm movement - if( buckled ) - return 1 - - if(W == A) - next_move = world.time + 8 - - W.attack_self(src) - return 1 - - // cyborgs are prohibited from using storage items so we can I think safely remove (A.loc in contents) - if(A == loc || (A in loc) || (A in contents)) - // No adjacency checks - next_move = world.time + 8 - - var/resolved = A.attackby(W,src) - if(!resolved && A && W) - W.afterattack(A, src, 1, mods) - return 1 - - if(!isturf(loc)) - return 1 - - // cyborgs are prohibited from using storage items so we can I think safely remove (A.loc && isturf(A.loc.loc)) - if(isturf(A) || isturf(A.loc)) - if(A.Adjacent(src)) // see adjacent.dm - next_move = world.time + 10 - - var/resolved = A.attackby(W, src) - if(!resolved && A && W) - W.afterattack(A, src, 1, mods) - return 1 - else - next_move = world.time + 10 - W.afterattack(A, src, 0, mods) - return 1 - return 0 - - - -//Give cyborgs hotkey clicks without breaking existing uses of hotkey clicks -// for non-doors/apcs - -/atom/proc/BorgCtrlShiftClick(mob/living/silicon/robot/user) //forward to human click if not overriden - return 1 - -/obj/structure/machinery/door/airlock/BorgCtrlShiftClick() - AICtrlShiftClick() - -/atom/proc/BorgShiftClick(mob/living/silicon/robot/user) //this should only return 1 if it is not overridden. this prevents things like examining objects also clicking them with an activated module. - return 1 - -/obj/structure/machinery/door/airlock/BorgShiftClick() // Opens and closes doors! Forwards to AI code. - AIShiftClick() - - -/atom/proc/BorgCtrlClick(mob/living/silicon/robot/user) //forward to human click if not overriden - return 1 - -/obj/structure/machinery/door/airlock/BorgCtrlClick() // Bolts doors. Forwards to AI code. - AICtrlClick() - -/obj/structure/machinery/power/apc/BorgCtrlClick() // turns off/on APCs. Forwards to AI code. - AICtrlClick() - -/obj/structure/machinery/turretid/BorgCtrlClick() //turret control on/off. Forwards to AI code. - AICtrlClick() - -/atom/proc/BorgAltClick(mob/living/silicon/robot/user) - return 1 - -/obj/structure/machinery/door/airlock/BorgAltClick() // Eletrifies doors. Forwards to AI code. - AIAltClick() - -/obj/structure/machinery/turretid/BorgAltClick() //turret lethal on/off. Forwards to AI code. - AIAltClick() - -/* - As with AI, these are not used in click code, - because the code for robots is specific, not generic. - - If you would like to add advanced features to robot - clicks, you can do so here, but you will have to - change attack_robot() above to the proper function -*/ -/mob/living/silicon/robot/UnarmedAttack(atom/A) - A.attack_robot(src) -/mob/living/silicon/robot/RangedAttack(atom/A) - A.attack_robot(src) - -/atom/proc/attack_robot(mob/user as mob) - attack_remote(user) - return diff --git a/code/_onclick/hud/_defines.dm b/code/_onclick/hud/_defines.dm index c6b6429748..22a24e022a 100644 --- a/code/_onclick/hud/_defines.dm +++ b/code/_onclick/hud/_defines.dm @@ -9,7 +9,7 @@ "1:2,3:4" is the square (1,3) with pixel offsets (+2, +4); slightly right and slightly above the turf grid. Pixel offsets are used so you don't perfectly hide the turf under them, that would be crappy. - The size of the user's screen is defined by client.view (indirectly by world_view_size), in our case "15x15". + The size of the user's screen is defined by client.view (indirectly by GLOB.world_view_size), in our case "15x15". Therefore, the top right corner (except during admin shenanigans) is at "15,15" */ diff --git a/code/_onclick/hud/fullscreen.dm b/code/_onclick/hud/fullscreen.dm index b0e2d2b57e..051bcd6a41 100644 --- a/code/_onclick/hud/fullscreen.dm +++ b/code/_onclick/hud/fullscreen.dm @@ -114,6 +114,9 @@ icon_state = "passage" layer = FULLSCREEN_CRIT_LAYER +/atom/movable/screen/fullscreen/crit/dark + color = COLOR_GRAY + /atom/movable/screen/fullscreen/blind icon_state = "blackimageoverlay" layer = FULLSCREEN_BLIND_LAYER @@ -133,6 +136,9 @@ screen_loc = "WEST,SOUTH to EAST,NORTH" icon_state = "noise" +/atom/movable/screen/fullscreen/flash/dark + icon_state = "black" + /atom/movable/screen/fullscreen/high icon = 'icons/mob/hud/screen1.dmi' screen_loc = "WEST,SOUTH to EAST,NORTH" diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm index f5f61424da..2d49abb520 100644 --- a/code/_onclick/hud/hud.dm +++ b/code/_onclick/hud/hud.dm @@ -46,7 +46,7 @@ var/atom/movable/screen/toggle_burst var/atom/movable/screen/unique_action - var/atom/movable/screen/zone_sel + var/atom/movable/screen/zone_sel/zone_sel var/atom/movable/screen/pull_icon var/atom/movable/screen/throw_icon var/atom/movable/screen/oxygen_icon @@ -91,19 +91,19 @@ /datum/hud/Destroy() if(mymob.hud_used == src) mymob.hud_used = null - if(static_inventory.len) + if(length(static_inventory)) for(var/thing in static_inventory) qdel(thing) static_inventory.Cut() - if(toggleable_inventory.len) + if(length(toggleable_inventory)) for(var/thing in toggleable_inventory) qdel(thing) toggleable_inventory.Cut() - if(hotkeybuttons.len) + if(length(hotkeybuttons)) for(var/thing in hotkeybuttons) qdel(thing) hotkeybuttons.Cut() - if(infodisplay.len) + if(length(infodisplay)) for(var/thing in infodisplay) qdel(thing) infodisplay.Cut() @@ -188,24 +188,24 @@ switch(display_hud_version) if(HUD_STYLE_STANDARD) //Default HUD hud_shown = 1 //Governs behavior of other procs - if(static_inventory.len) + if(length(static_inventory)) screenmob.client.add_to_screen(static_inventory) - if(toggleable_inventory.len && inventory_shown) + if(length(toggleable_inventory) && inventory_shown) screenmob.client.add_to_screen(toggleable_inventory) - if(hotkeybuttons.len && !hotkey_ui_hidden) + if(length(hotkeybuttons) && !hotkey_ui_hidden) screenmob.client.add_to_screen(hotkeybuttons) - if(infodisplay.len) + if(length(infodisplay)) screenmob.client.add_to_screen(infodisplay) if(HUD_STYLE_REDUCED) //Reduced HUD hud_shown = 0 //Governs behavior of other procs - if(static_inventory.len) + if(length(static_inventory)) screenmob.client.remove_from_screen(static_inventory) - if(toggleable_inventory.len) + if(length(toggleable_inventory)) screenmob.client.remove_from_screen(toggleable_inventory) - if(hotkeybuttons.len) + if(length(hotkeybuttons)) screenmob.client.remove_from_screen(hotkeybuttons) - if(infodisplay.len) + if(length(infodisplay)) screenmob.client.add_to_screen(infodisplay) //These ones are a part of 'static_inventory', 'toggleable_inventory' or 'hotkeybuttons' but we want them to stay @@ -218,13 +218,13 @@ if(HUD_STYLE_NOHUD) //No HUD hud_shown = 0 //Governs behavior of other procs - if(static_inventory.len) + if(length(static_inventory)) screenmob.client.remove_from_screen(static_inventory) - if(toggleable_inventory.len) + if(length(toggleable_inventory)) screenmob.client.remove_from_screen(toggleable_inventory) - if(hotkeybuttons.len) + if(length(hotkeybuttons)) screenmob.client.remove_from_screen(hotkeybuttons) - if(infodisplay.len) + if(length(infodisplay)) screenmob.client.remove_from_screen(infodisplay) hud_version = display_hud_version diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 37a858d766..bbdfaa25b9 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -120,7 +120,7 @@ if(!screenmob?.client) return - if(!gear.len) + if(!length(gear)) inventory_shown = FALSE return //species without inv slots don't show items. @@ -272,18 +272,14 @@ static_inventory += using /datum/hud/human/proc/draw_hand_equip(datum/custom_hud/ui_datum, ui_alpha, ui_color) - var/atom/movable/screen/using = new /atom/movable/screen() - using.name = "equip" - using.icon = ui_datum.ui_style_icon - using.icon_state = "act_equip" - using.screen_loc = ui_datum.ui_equip - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE + var/atom/movable/screen/equip/equip_button = new() + equip_button.icon = ui_datum.ui_style_icon + equip_button.screen_loc = ui_datum.ui_equip if(ui_color) - using.color = ui_color + equip_button.color = ui_color if(ui_alpha) - using.alpha = ui_alpha - static_inventory += using + equip_button.alpha = ui_alpha + static_inventory += equip_button /datum/hud/human/proc/draw_oxygen(datum/custom_hud/ui_datum) oxygen_icon = new /atom/movable/screen/oxygen() @@ -312,38 +308,28 @@ infodisplay += locate_leader /datum/hud/human/proc/draw_gun_related(datum/custom_hud/ui_datum, ui_alpha) - use_attachment = new /atom/movable/screen() + use_attachment = new /atom/movable/screen/gun/attachment() use_attachment.icon = ui_datum.ui_style_icon - use_attachment.icon_state = "gun_attach" - use_attachment.name = "Activate weapon attachment" use_attachment.screen_loc = ui_datum.ui_gun_attachment static_inventory += use_attachment - toggle_raillight = new /atom/movable/screen() + toggle_raillight = new /atom/movable/screen/gun/rail_light() toggle_raillight.icon = ui_datum.ui_style_icon - toggle_raillight.icon_state = "gun_raillight" - toggle_raillight.name = "Toggle Rail Flashlight" toggle_raillight.screen_loc = ui_datum.ui_gun_railtoggle static_inventory += toggle_raillight - eject_mag = new /atom/movable/screen() + eject_mag = new /atom/movable/screen/gun/eject_magazine() eject_mag.icon = ui_datum.ui_style_icon - eject_mag.icon_state = "gun_loaded" - eject_mag.name = "Eject magazine" eject_mag.screen_loc = ui_datum.ui_gun_eject static_inventory += eject_mag - toggle_burst = new /atom/movable/screen() + toggle_burst = new /atom/movable/screen/gun/toggle_firemode() toggle_burst.icon = ui_datum.ui_style_icon - toggle_burst.icon_state = "gun_burst" - toggle_burst.name = "Toggle burst fire" toggle_burst.screen_loc = ui_datum.ui_gun_burst static_inventory += toggle_burst - unique_action = new /atom/movable/screen() + unique_action = new /atom/movable/screen/gun/unique_action() unique_action.icon = ui_datum.ui_style_icon - unique_action.icon_state = "gun_unique" - unique_action.name = "Use unique action" unique_action.screen_loc = ui_datum.ui_gun_unique static_inventory += unique_action diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm index 4a23ebd882..244e79e583 100644 --- a/code/_onclick/hud/radial.dm +++ b/code/_onclick/hud/radial.dm @@ -142,10 +142,10 @@ GLOBAL_LIST_EMPTY(radial_menus) else zone = 360 - starting_angle + ending_angle - max_elements = round(zone / min_angle) - var/paged = max_elements < choices.len - if(elements.len < max_elements) - var/elements_to_add = max_elements - elements.len + max_elements = floor(zone / min_angle) + var/paged = max_elements < length(choices) + if(length(elements) < max_elements) + var/elements_to_add = max_elements - length(elements) for(var/i in 1 to elements_to_add) //Create all elements var/atom/movable/screen/radial/slice/new_element = new /atom/movable/screen/radial/slice new_element.tooltips = use_tooltips @@ -177,7 +177,7 @@ GLOBAL_LIST_EMPTY(radial_menus) /datum/radial_menu/proc/update_screen_objects(anim = FALSE) var/list/page_choices = page_data[current_page] - var/angle_per_element = round(zone / length(page_choices)) + var/angle_per_element = floor(zone / length(page_choices)) for(var/i in 1 to length(elements)) var/atom/movable/screen/radial/E = elements[i] var/angle = WRAP(starting_angle + (i - 1) * angle_per_element,0,360) @@ -197,8 +197,8 @@ GLOBAL_LIST_EMPTY(radial_menus) /datum/radial_menu/proc/SetElement(atom/movable/screen/radial/slice/E,choice_id,angle,anim,anim_order) //Position - var/py = round(cos(angle) * radius) + py_shift - var/px = round(sin(angle) * radius) + var/py = floor(cos(angle) * radius) + py_shift + var/px = floor(sin(angle) * radius) if(anim) var/timing = anim_order * 0.5 var/matrix/starting = matrix() @@ -246,7 +246,7 @@ GLOBAL_LIST_EMPTY(radial_menus) selected_choice = choices_values[choice_id] /datum/radial_menu/proc/get_next_id() - return "c_[choices.len]" + return "c_[length(choices)]" /datum/radial_menu/proc/set_choices(list/new_choices, use_tooltips, use_labels) if(length(choices)) @@ -271,8 +271,8 @@ GLOBAL_LIST_EMPTY(radial_menus) if(use_labels) MA.maptext_width = 64 MA.maptext_height = 64 - MA.maptext_x = -round(MA.maptext_width / 2) + 16 - MA.maptext_y = -round(MA.maptext_height / 2) + 16 + MA.maptext_x = -floor(MA.maptext_width / 2) + 16 + MA.maptext_y = -floor(MA.maptext_height / 2) + 16 MA.maptext = SMALL_FONTS_CENTRED(7, label) return MA diff --git a/code/_onclick/hud/rendering/plane_master.dm b/code/_onclick/hud/rendering/plane_master.dm index 4269814ce4..c4f070bdd8 100644 --- a/code/_onclick/hud/rendering/plane_master.dm +++ b/code/_onclick/hud/rendering/plane_master.dm @@ -49,6 +49,12 @@ if(istype(mymob) && mymob?.client?.prefs?.toggle_prefs & TOGGLE_AMBIENT_OCCLUSION) add_filter("AO", 1, drop_shadow_filter(x = 0, y = -2, size = 4, color = "#04080FAA")) +/atom/movable/screen/plane_master/game_world_above + name = "above game world plane master" + plane = ABOVE_GAME_PLANE + appearance_flags = PLANE_MASTER //should use client color + blend_mode = BLEND_OVERLAY + /atom/movable/screen/plane_master/ghost name = "ghost plane master" plane = GHOST_PLANE diff --git a/code/_onclick/hud/robot.dm b/code/_onclick/hud/robot.dm deleted file mode 100644 index af961f82ba..0000000000 --- a/code/_onclick/hud/robot.dm +++ /dev/null @@ -1,151 +0,0 @@ -/datum/hud/robot - var/datum/custom_hud/robot/ui_robot_datum - -/datum/hud/robot/New(mob/living/silicon/robot/owner) - ..() - var/atom/movable/screen/using - - ui_robot_datum = GLOB.custom_huds_list[HUD_ROBOT] - -//Radio - using = new /atom/movable/screen() - using.name = "radio" - using.setDir(SOUTHWEST) - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "radio" - using.screen_loc = ui_robot_datum.ui_movi - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE - static_inventory += using - -//Module select - - using = new /atom/movable/screen() - using.name = "module1" - using.setDir(SOUTHWEST) - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "inv1" - using.screen_loc = ui_robot_datum.ui_inv1 - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE - owner.inv1 = using - static_inventory += using - - using = new /atom/movable/screen() - using.name = "module2" - using.setDir(SOUTHWEST) - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "inv2" - using.screen_loc = ui_robot_datum.ui_inv2 - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE - owner.inv2 = using - static_inventory += using - - using = new /atom/movable/screen() - using.name = "module3" - using.setDir(SOUTHWEST) - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "inv3" - using.screen_loc = ui_robot_datum.ui_inv3 - using.layer = ABOVE_HUD_LAYER - using.plane = ABOVE_HUD_PLANE - owner.inv3 = using - static_inventory += using - -//End of module select - -//Intent - using = new /atom/movable/screen/act_intent() - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "intent_"+ intent_text(owner.a_intent) - static_inventory += using - action_intent = using - -//Cell - owner.cells = new /atom/movable/screen() - owner.cells.icon = ui_robot_datum.ui_style_icon - owner.cells.icon_state = "charge-empty" - owner.cells.name = "cell" - owner.cells.screen_loc = ui_robot_datum.ui_toxin - infodisplay += owner.cells - -//Health - healths = new /atom/movable/screen/healths() - healths.icon = ui_robot_datum.ui_style_icon - healths.screen_loc = ui_robot_datum.ui_borg_health - infodisplay += healths - -//Installed Module - owner.hands = new /atom/movable/screen() - owner.hands.icon = ui_robot_datum.ui_style_icon - owner.hands.icon_state = "nomod" - owner.hands.name = "module" - owner.hands.screen_loc = ui_robot_datum.ui_borg_module - static_inventory += owner.hands - -//Module Panel - using = new /atom/movable/screen() - using.name = "panel" - using.icon = ui_robot_datum.ui_style_icon - using.icon_state = "panel" - using.screen_loc = ui_robot_datum.ui_borg_panel - using.layer = HUD_LAYER - static_inventory += using - -//Store - module_store_icon = new /atom/movable/screen() - module_store_icon.icon = ui_robot_datum.ui_style_icon - module_store_icon.icon_state = "store" - module_store_icon.name = "store" - module_store_icon.screen_loc = ui_robot_datum.ui_borg_store - static_inventory += module_store_icon - -//Temp - bodytemp_icon = new /atom/movable/screen/bodytemp() - bodytemp_icon.screen_loc = ui_robot_datum.ui_borg_temp - infodisplay += bodytemp_icon - - oxygen_icon = new /atom/movable/screen/oxygen() - oxygen_icon.icon = ui_robot_datum.ui_style_icon - oxygen_icon.screen_loc = ui_robot_datum.UI_OXYGEN_LOC - infodisplay += oxygen_icon - - pull_icon = new /atom/movable/screen/pull() - pull_icon.icon = ui_robot_datum.ui_style_icon - pull_icon.screen_loc = ui_robot_datum.ui_borg_pull - static_inventory += pull_icon - - zone_sel = new /atom/movable/screen/zone_sel/robot() - zone_sel.screen_loc = ui_robot_datum.ui_zonesel - zone_sel.update_icon(owner) - static_inventory += zone_sel - -/mob/living/silicon/robot/create_hud() - if(!hud_used) - hud_used = new /datum/hud/robot(src) - - - -/datum/hud/robot/persistent_inventory_update() - if(!mymob || !ui_robot_datum) - return - var/mob/living/silicon/robot/R = mymob - if(hud_shown) - if(R.module_state_1) - R.module_state_1.screen_loc = ui_robot_datum.ui_inv1 - R.client.add_to_screen(R.module_state_1) - if(R.module_state_2) - R.module_state_2.screen_loc = ui_robot_datum.ui_inv2 - R.client.add_to_screen(R.module_state_2) - if(R.module_state_3) - R.module_state_3.screen_loc = ui_robot_datum.ui_inv3 - R.client.add_to_screen(R.module_state_3) - else - if(R.module_state_1) - R.module_state_1.screen_loc = null - if(R.module_state_2) - R.module_state_2.screen_loc = null - if(R.module_state_3) - R.module_state_3.screen_loc = null - diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 18587c0545..a816291180 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -75,7 +75,7 @@ return ..() /atom/movable/screen/action_button/proc/get_button_screen_loc(button_number) - var/row = round((button_number-1)/13) //13 is max amount of buttons per row + var/row = floor((button_number-1)/13) //13 is max amount of buttons per row var/col = ((button_number - 1)%(13)) + 1 var/coord_col = "+[col-1]" var/coord_col_offset = 4+2*col @@ -119,7 +119,7 @@ layer = HUD_LAYER /atom/movable/screen/storage/proc/update_fullness(obj/item/storage/master_storage) - if(!master_storage.contents.len) + if(!length(master_storage.contents)) color = null else var/total_w = 0 @@ -129,9 +129,9 @@ //Calculate fullness for etiher max storage, or for storage slots if the container has them var/fullness = 0 if (master_storage.storage_slots == null) - fullness = round(10*total_w/master_storage.max_storage_space) + fullness = floor(10*total_w/master_storage.max_storage_space) else - fullness = round(10*master_storage.contents.len/master_storage.storage_slots) + fullness = floor(10*length(master_storage.contents)/master_storage.storage_slots) switch(fullness) if(10) color = "#ff0000" @@ -148,7 +148,6 @@ /atom/movable/screen/zone_sel/update_icon(mob/living/user) overlays.Cut() overlays += image('icons/mob/hud/zone_sel.dmi', "[selecting]") - user.zone_selected = selecting /atom/movable/screen/zone_sel/clicked(mob/user, list/mods) if (..()) @@ -210,96 +209,57 @@ selecting = "eyes" if(old_selecting != selecting) + user.zone_selected = selecting update_icon(user) return 1 -/atom/movable/screen/zone_sel/robot - icon = 'icons/mob/hud/screen1_robot.dmi' +/atom/movable/screen/gun + /// The proc/verb which should be called on the gun. + var/gun_proc_ref -/atom/movable/screen/clicked(mob/user, list/mods) - if(!user) - return TRUE - - if(isobserver(user)) - return TRUE - - switch(name) - if("equip") - if(ishuman(user)) - var/mob/living/carbon/human/human = user - human.quick_equip() - return 1 - - if("Reset Machine") - user.unset_interaction() - return 1 +/atom/movable/screen/gun/clicked(mob/user, list/mods) + . = ..() + if(.) + return + // If the user has a gun in their active hand, call `gun_proc_ref` on it. + var/obj/item/weapon/gun/held_item = user.get_held_item() + if(istype(held_item)) + INVOKE_ASYNC(held_item, gun_proc_ref) - if("module") - if(isSilicon(user)) - if(user:module) - return 1 - user:pick_module() - return 1 +/atom/movable/screen/gun/attachment + name = "Activate weapon attachment" + icon_state = "gun_attach" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, activate_attachment_verb) - if("radio") - if(isSilicon(user)) - user:radio_menu() - return 1 - if("panel") - if(isSilicon(user)) - user:installed_modules() - return 1 +/atom/movable/screen/gun/rail_light + name = "Toggle rail flashlight" + icon_state = "gun_raillight" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, activate_rail_attachment_verb) - if("store") - if(isSilicon(user)) - user:uneq_active() - return 1 +/atom/movable/screen/gun/eject_magazine + name = "Eject magazine" + icon_state = "gun_loaded" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, empty_mag) - if("module1") - if(isrobot(user)) - user:toggle_module(1) - return 1 +/atom/movable/screen/gun/toggle_firemode + name = "Toggle firemode" + icon_state = "gun_burst" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, use_toggle_burst) - if("module2") - if(isrobot(user)) - user:toggle_module(2) - return 1 +/atom/movable/screen/gun/unique_action + name = "Use unique action" + icon_state = "gun_unique" + gun_proc_ref = TYPE_VERB_REF(/obj/item/weapon/gun, use_unique_action) - if("module3") - if(isrobot(user)) - user:toggle_module(3) - return 1 - if("Activate weapon attachment") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.activate_attachment_verb() - return 1 +/atom/movable/screen/clicked(mob/user, list/mods) + if(!user) + return TRUE - if("Toggle Rail Flashlight") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.activate_rail_attachment_verb() - return 1 + if(isobserver(user)) + return TRUE - if("Eject magazine") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.empty_mag() - return 1 - - if("Toggle burst fire") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.use_toggle_burst() - return 1 - - if("Use unique action") - var/obj/item/weapon/gun/held_item = user.get_held_item() - if(istype(held_item)) - held_item.use_unique_action() - return 1 - return 0 + return FALSE /atom/movable/screen/inventory/clicked(mob/user) @@ -525,17 +485,17 @@ if(user.observed_xeno == user.tracked_marker) user.overwatch(user.tracked_marker, TRUE) //passing in an obj/effect into a proc that expects mob/xenomorph B) else - to_chat(user, SPAN_XENONOTICE("You psychically observe the [user.tracked_marker.mark_meaning.name] resin mark in [get_area_name(user.tracked_marker)].")) + to_chat(user, SPAN_XENONOTICE("We psychically observe the [user.tracked_marker.mark_meaning.name] resin mark in [get_area_name(user.tracked_marker)].")) user.overwatch(user.tracked_marker) //this is so scuffed, sorry if this causes errors return if(mods["alt"] && user.tracked_marker) user.stop_tracking_resin_mark() return if(!user.hive) - to_chat(user, SPAN_WARNING("You don't belong to a hive!")) + to_chat(user, SPAN_WARNING("We don't belong to a hive!")) return FALSE if(!user.hive.living_xeno_queen) - to_chat(user, SPAN_WARNING("Without a queen your psychic link is broken!")) + to_chat(user, SPAN_WARNING("Without a queen our psychic link is broken!")) return FALSE if(HAS_TRAIT(user, TRAIT_ABILITY_BURROWED) || user.is_mob_incapacitated() || user.buckled) return FALSE @@ -546,49 +506,58 @@ name = "queen locator" icon = 'icons/mob/hud/alien_standard.dmi' icon_state = "trackoff" - var/list/track_state = list(TRACKER_QUEEN, 0) + /// A weak reference to the atom currently being tracked. + /// (Note: This is null for `TRACKER_QUEEN` and `TRACKER_HIVE`, as those are accessed through the user's hive datum.) + var/datum/weakref/tracking_ref = null + /// The 'category' of the atom currently being tracked. (Defaults to `TRACKER_QUEEN`) + var/tracker_type = TRACKER_QUEEN /atom/movable/screen/queen_locator/clicked(mob/living/carbon/xenomorph/user, mods) if(!istype(user)) return FALSE if(mods["shift"]) var/area/current_area = get_area(user) - to_chat(user, SPAN_NOTICE("You are currently at: [current_area.name].")) + to_chat(user, SPAN_NOTICE("We are currently at: [current_area.name].")) return if(!user.hive) - to_chat(user, SPAN_WARNING("You don't belong to a hive!")) + to_chat(user, SPAN_WARNING("We don't belong to a hive!")) return FALSE if(mods["alt"]) var/list/options = list() if(user.hive.living_xeno_queen) - options["Queen"] = list(TRACKER_QUEEN, 0) + // Don't need weakrefs to this or the hive core, since there's only one possible target. + options["Queen"] = list(null, TRACKER_QUEEN) if(user.hive.hive_location) - options["Hive Core"] = list(TRACKER_HIVE, 0) + options["Hive Core"] = list(null, TRACKER_HIVE) - var/xeno_leader_index = 1 - for(var/xeno in user.hive.xeno_leader_list) - var/mob/living/carbon/xenomorph/xeno_lead = user.hive.xeno_leader_list[xeno_leader_index] - if(xeno_lead) - options["Xeno Leader [xeno_lead]"] = list(TRACKER_LEADER, xeno_leader_index) - xeno_leader_index++ + for(var/mob/living/carbon/xenomorph/leader in user.hive.xeno_leader_list) + options["Xeno Leader [leader]"] = list(leader, TRACKER_LEADER) - var/tunnel_index = 1 - for(var/obj/structure/tunnel/tracked_tunnel in user.hive.tunnels) - options["Tunnel [tracked_tunnel.tunnel_desc]"] = list(TRACKER_TUNNEL, tunnel_index) - tunnel_index++ + var/list/sorted_tunnels = sort_list_dist(user.hive.tunnels, get_turf(user)) + for(var/obj/structure/tunnel/tunnel as anything in sorted_tunnels) + options["Tunnel [tunnel.tunnel_desc]"] = list(tunnel, TRACKER_TUNNEL) - var/selected = tgui_input_list(user, "Select what you want the locator to track.", "Locator Options", options) + var/list/selected = tgui_input_list(user, "Select what you want the locator to track.", "Locator Options", options) if(selected) - track_state = options[selected] + var/selected_data = options[selected] + tracking_ref = WEAKREF(selected_data[1]) // Weakref to the tracked atom (or null) + tracker_type = selected_data[2] // Tracker category return + if(!user.hive.living_xeno_queen) - to_chat(user, SPAN_WARNING("Your hive doesn't have a living queen!")) + to_chat(user, SPAN_WARNING("Our hive doesn't have a living queen!")) return FALSE if(HAS_TRAIT(user, TRAIT_ABILITY_BURROWED) || user.is_mob_incapacitated() || user.buckled) return FALSE user.overwatch(user.hive.living_xeno_queen) +// Reset to the defaults +/atom/movable/screen/queen_locator/proc/reset_tracking() + icon_state = "trackoff" + tracking_ref = null + tracker_type = TRACKER_QUEEN + /atom/movable/screen/xenonightvision icon = 'icons/mob/hud/alien_standard.dmi' name = "toggle night vision" @@ -617,6 +586,19 @@ vision_define = XENO_VISION_LEVEL_NO_NVG to_chat(owner, SPAN_NOTICE("Night vision mode switched to [vision_define].")) +/atom/movable/screen/equip + name = "equip" + icon_state = "act_equip" + layer = ABOVE_HUD_LAYER + plane = ABOVE_HUD_PLANE + +/atom/movable/screen/equip/clicked(mob/user) + . = ..() + if(. || !ishuman(user)) + return TRUE + var/mob/living/carbon/human/human_user = user + human_user.quick_equip() + /atom/movable/screen/bodytemp name = "body temperature" icon_state = "temp0" diff --git a/code/_onclick/human.dm b/code/_onclick/human.dm index b57fc76f2e..82611f9c2c 100644 --- a/code/_onclick/human.dm +++ b/code/_onclick/human.dm @@ -38,7 +38,7 @@ if (A != src) return ..() var/mob/living/carbon/human/H = A - if (last_chew + 75 > world.time) + if (last_chew + 1 > world.time) to_chat(H, SPAN_DANGER("You can't bite your hand again yet...")) return diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm index c6052da331..1a3c279db8 100644 --- a/code/_onclick/item_attack.dm +++ b/code/_onclick/item_attack.dm @@ -3,6 +3,7 @@ /obj/item/proc/attack_self(mob/user) SHOULD_CALL_PARENT(TRUE) SEND_SIGNAL(src, COMSIG_ITEM_ATTACK_SELF, user) + SEND_SIGNAL(user, COMSIG_MOB_ITEM_ATTACK_SELF, src) if(flags_item & CAN_DIG_SHRAPNEL && ishuman(user)) dig_out_shrapnel(user) @@ -11,10 +12,12 @@ /atom/proc/attackby(obj/item/W, mob/living/user,list/mods) if(SEND_SIGNAL(src, COMSIG_PARENT_ATTACKBY, W, user, mods) & COMPONENT_NO_AFTERATTACK) return TRUE + SEND_SIGNAL(user, COMSIG_MOB_PARENT_ATTACKBY, src, W) return FALSE /atom/movable/attackby(obj/item/W, mob/living/user) - if(W) + . = ..() + if(W && !.) if(!(W.flags_item & NOBLUDGEON)) visible_message(SPAN_DANGER("[src] has been hit by [user] with [W]."), null, null, 5, CHAT_TYPE_MELEE_HIT) user.animation_attack_on(src) @@ -84,10 +87,10 @@ var/power = force if(user.skills) - power = round(power * (1 + 0.25 * user.skills.get_skill_level(SKILL_MELEE_WEAPONS))) //25% bonus per melee level + power = floor(power * (1 + 0.25 * user.skills.get_skill_level(SKILL_MELEE_WEAPONS))) //25% bonus per melee level if(!ishuman(M)) var/used_verb = "attacked" - if(attack_verb && attack_verb.len) + if(LAZYLEN(attack_verb)) used_verb = pick(attack_verb) user.visible_message(SPAN_DANGER("[M] has been [used_verb] with [src][showname]."), \ SPAN_DANGER("You [used_verb] [M == user ? "yourself":M] with [src]."), null, 5, CHAT_TYPE_MELEE_HIT) diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index f877783557..04c70bbe11 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -29,7 +29,7 @@ if(ismob(target) || isVehicle(target)) if(isxeno(target) && SSticker.mode.check_xeno_late_join(src)) //if it's a xeno and all checks are alright, we are gonna try to take their body var/mob/living/carbon/xenomorph/xeno = target - if(xeno.stat == DEAD || is_admin_level(xeno.z) || xeno.aghosted) + if(xeno.stat == DEAD || should_block_game_interaction(xeno) || xeno.aghosted) to_chat(src, SPAN_WARNING("You cannot join as [xeno].")) do_observe(xeno) return FALSE @@ -49,7 +49,7 @@ var/message = "You have been dead for [DisplayTimeText(deathtime)]." message = SPAN_WARNING("[message]") to_chat(src, message) - to_chat(src, SPAN_WARNING("You must wait atleast 2.5 minutes before rejoining the game!")) + to_chat(src, SPAN_WARNING("You must wait at least 2.5 minutes before rejoining the game!")) do_observe(target) return FALSE diff --git a/code/_onclick/other_mobs.dm b/code/_onclick/other_mobs.dm index 0bfa0a7592..8176f9e524 100644 --- a/code/_onclick/other_mobs.dm +++ b/code/_onclick/other_mobs.dm @@ -11,7 +11,10 @@ if (mods["middle"]) if (isStructure(A) && get_dist(src, A) <= 1) var/obj/structure/S = A - S.do_climb(src, mods) + if(S.climbable) + S.do_climb(src, mods) + else if(S.can_buckle) + S.buckle_mob(src, src) return TRUE else if(!(isitem(A) && get_dist(src, A) <= 1) && (client && (client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_SWAP_HANDS))) swap_hand() diff --git a/code/_onclick/ventcrawl.dm b/code/_onclick/ventcrawl.dm index 51afbc139f..72fe31f35c 100644 --- a/code/_onclick/ventcrawl.dm +++ b/code/_onclick/ventcrawl.dm @@ -7,7 +7,7 @@ return for(var/atom/A as anything in src) if(!(is_type_in_list(A, canEnterVentWith))) - to_chat(src, SPAN_WARNING("You can't be carrying items or have items equipped when vent crawling!")) + to_chat(src, SPAN_WARNING("We cannot be carrying items or have items equipped when vent crawling!")) return FALSE /mob/living/click(atom/A, list/mods) @@ -24,10 +24,10 @@ for(var/obj/structure/pipes/vents/V in range(1)) if(Adjacent(V) && !V.welded) pipes |= V - if(!pipes || !pipes.len) - to_chat(src, SPAN_WARNING("There are no pipes that you can ventcrawl into within range!")) + if(!LAZYLEN(pipes)) + to_chat(src, SPAN_WARNING("There are no pipes that we can ventcrawl into within range!")) return - if(pipes.len == 1) + if(length(pipes) == 1) pipe = pipes[1] else pipe = tgui_input_list(usr, "Crawl Through Vent", "Pick a pipe", pipes) @@ -42,11 +42,11 @@ /mob/living/proc/handle_ventcrawl(atom/clicked_on) if(stat) - to_chat(src, SPAN_WARNING("You must be conscious to do this!")) + to_chat(src, SPAN_WARNING("We must be conscious to do this!")) return if(is_mob_incapacitated()) - to_chat(src, SPAN_WARNING("You can't vent crawl while you're stunned!")) + to_chat(src, SPAN_WARNING("We can't vent crawl while we are stunned!")) return var/obj/structure/pipes/vents/vent_found @@ -59,11 +59,11 @@ vent_found = locate(/obj/structure/pipes/vents/) in range(1, src) if(!vent_found) - to_chat(src, SPAN_WARNING("You must be standing on or beside an air vent to enter it.")) + to_chat(src, SPAN_WARNING("We must be standing on or beside an air vent to enter it.")) return if(vent_found.welded) - to_chat(src, SPAN_WARNING("This vent is closed off, you cannot climb through it.")) + to_chat(src, SPAN_WARNING("This vent is closed off, we cannot climb through it.")) return if(!ventcrawl_carry()) @@ -78,10 +78,10 @@ if(length(vent_found.connected_to)) if(src.action_busy) - to_chat(src, SPAN_WARNING("You are already busy with something.")) + to_chat(src, SPAN_WARNING("We are already busy with something.")) return - visible_message(SPAN_NOTICE("[src] begins climbing into [vent_found]."), SPAN_NOTICE("You begin climbing into [vent_found].")) + visible_message(SPAN_NOTICE("[src] begins climbing into [vent_found]."), SPAN_NOTICE("We begin climbing into [vent_found].")) vent_found.animate_ventcrawl() if(!do_after(src, 45, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) vent_found.animate_ventcrawl_reset() diff --git a/code/_onclick/xeno.dm b/code/_onclick/xeno.dm index c29841ce14..5f0f968789 100644 --- a/code/_onclick/xeno.dm +++ b/code/_onclick/xeno.dm @@ -3,7 +3,7 @@ */ /mob/living/carbon/xenomorph/UnarmedAttack(atom/target, proximity, click_parameters, tile_attack = FALSE, ignores_resin = FALSE) - if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) //No attacks while laying down + if(body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED) || cannot_slash) //No attacks while laying down return FALSE var/mob/alt @@ -13,6 +13,7 @@ if(isturf(target) && tile_attack) //Attacks on turfs must be done indirectly through directional attacks or clicking own sprite. var/turf/T = target + var/mob/living/non_xeno_target for(var/mob/living/L in T) if (!iscarbon(L)) if (!alt) @@ -21,13 +22,19 @@ if (!L.is_xeno_grabbable() || L == src) //Xenos never attack themselves. continue + var/isxeno = isxeno(L) + if(!isxeno) + non_xeno_target = L if (L.body_position == LYING_DOWN) alt = L continue + else if (!isxeno) + break target = L - break if (target == T && alt) target = alt + if(non_xeno_target) + target = non_xeno_target if (T && ignores_resin) // Will not target resin walls and doors if this is set to true. This is normally only set to true through a directional attack. if(istype(T, /obj/structure/mineral_door/resin)) var/obj/structure/mineral_door/resin/attacked_door = T @@ -54,6 +61,9 @@ var/turf/target_turf = target for(var/obj/flamer_fire/fire in target_turf) firepatted = TRUE + if(!(caste.fire_immunity & FIRE_IMMUNITY_NO_DAMAGE) || fire.tied_reagent?.fire_penetrating) + var/firedamage = max(fire.burnlevel - check_fire_intensity_resistance(), 0) * 0.5 + apply_damage(firedamage, BURN, fire) if((fire.firelevel > fire_level_to_extinguish) && (!fire.fire_variant)) //If fire_variant = 0, default fire extinguish behavior. fire.firelevel -= fire_level_to_extinguish fire.update_flame() @@ -73,10 +83,10 @@ playsound(loc, 'sound/weapons/alien_claw_swipe.ogg', 10, 1) //Quiet to limit spam/nuisance. if(firepatted) src.visible_message(SPAN_DANGER("\The [src] pats at the fire!"), \ - SPAN_DANGER("You pat the fire!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We pat the fire!"), null, 5, CHAT_TYPE_XENO_COMBAT) else src.visible_message(SPAN_DANGER("\The [src] swipes at \the [target]!"), \ - SPAN_DANGER("You swipe at \the [target]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We swipe at \the [target]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return TRUE /mob/living/carbon/xenomorph/RangedAttack(atom/A) @@ -88,7 +98,7 @@ return UnarmedAttack(get_step(src, Get_Compass_Dir(src, A)), tile_attack = TRUE, ignores_resin = TRUE) return FALSE -/**The parent proc, will default to UnarmedAttack behaviour unless overriden +/**The parent proc, will default to UnarmedAttack behaviour unless overridden Return XENO_ATTACK_ACTION if it does something and the attack should have full attack delay. Return XENO_NONCOMBAT_ACTION if it did something and should have some delay. Return XENO_NO_DELAY_ACTION if it gave an error message or should have no delay at all, ex. "You can't X that, it's Y!" @@ -111,7 +121,7 @@ so that it doesn't double up on the delays) so that it applies the delay immedia if(alt_pressed && shift_pressed) if(istype(target, /mob/living/carbon/xenomorph)) var/mob/living/carbon/xenomorph/xeno = target - if(!QDELETED(xeno) && xeno.stat != DEAD && !is_admin_level(xeno.z) && xeno.check_state(TRUE) && xeno.hivenumber == hivenumber) + if(!QDELETED(xeno) && xeno.stat != DEAD && !should_block_game_interaction(xeno) && xeno.check_state(TRUE) && xeno.hivenumber == hivenumber) overwatch(xeno) next_move = world.time + 3 // Some minimal delay so this isn't crazy spammy return TRUE @@ -131,6 +141,6 @@ so that it doesn't double up on the delays) so that it applies the delay immedia return ..() -//Larva attack, will default to attack_alien behaviour unless overriden +//Larva attack, will default to attack_alien behaviour unless overridden /atom/proc/attack_larva(mob/living/carbon/xenomorph/larva/user) return attack_alien(user) diff --git a/code/controllers/configuration/config_entry.dm b/code/controllers/configuration/config_entry.dm index c47531f5fc..49dae4c2ff 100644 --- a/code/controllers/configuration/config_entry.dm +++ b/code/controllers/configuration/config_entry.dm @@ -4,6 +4,7 @@ #define KEY_MODE_TEXT 0 #define KEY_MODE_TYPE 1 +#define KEY_MODE_TEXT_UNALTERED 2 /datum/config_entry var/name //read-only, this is determined by the last portion of the derived entry type @@ -79,7 +80,7 @@ return FALSE var/temp = text2num(trim(str_val)) if(!isnull(temp)) - config_entry_value = clamp(integer ? round(temp) : temp, min_val, max_val) + config_entry_value = clamp(integer ? floor(temp) : temp, min_val, max_val) if(config_entry_value != temp && !(datum_flags & DF_VAR_EDITED)) log_config("Changing [name] from [temp] to [config_entry_value]!") return TRUE @@ -124,7 +125,7 @@ if(isnull(temp)) return FALSE new_list += temp - if(!new_list.len) + if(!length(new_list)) return FALSE config_entry_value = new_list return TRUE @@ -153,7 +154,9 @@ var/key_value = null if(key_pos || value_mode == VALUE_MODE_FLAG) - key_name = lowertext(copytext(str_val, 1, key_pos)) + key_name = copytext(str_val, 1, key_pos) + if(key_mode != KEY_MODE_TEXT_UNALTERED) + key_name = lowertext(key_name) if(key_pos) key_value = copytext(str_val, key_pos + length(str_val[key_pos])) var/new_key @@ -161,7 +164,7 @@ var/continue_check_value var/continue_check_key switch(key_mode) - if(KEY_MODE_TEXT) + if(KEY_MODE_TEXT, KEY_MODE_TEXT_UNALTERED) new_key = key_name continue_check_key = new_key if(KEY_MODE_TYPE) diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm index 147f57fcb1..b74275d2ce 100644 --- a/code/controllers/configuration/configuration.dm +++ b/code/controllers/configuration/configuration.dm @@ -19,7 +19,7 @@ var/motd var/policy - var/static/regex/ic_filter_regex + var/static/regex/word_filter_regex var/is_loaded = FALSE @@ -315,21 +315,21 @@ /datum/controller/configuration/proc/LoadChatFilter() - var/list/in_character_filter = list() + var/list/word_filter = list() - if(!fexists("[directory]/in_character_filter.txt")) + if(!fexists("[directory]/word_filter.txt")) return - log_config("Loading config file in_character_filter.txt...") + log_config("Loading config file word_filter.txt...") - for(var/line in file2list("[directory]/in_character_filter.txt")) + for(var/line in file2list("[directory]/word_filter.txt")) if(!line) continue if(findtextEx(line,"#",1,2)) continue - in_character_filter += REGEX_QUOTE(line) + word_filter += REGEX_QUOTE(line) - ic_filter_regex = in_character_filter.len ? regex("\\b([jointext(in_character_filter, "|")])\\b", "i") : null + word_filter_regex = length(word_filter) ? regex("\\b([jointext(word_filter, "|")])\\b", "i") : null //Message admins when you can. /datum/controller/configuration/proc/DelayedMessageAdmins(text) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index ad1924565c..d49db46780 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -123,3 +123,8 @@ min_val = 1 config_entry_value = 450 integer = TRUE + +/datum/config_entry/number/whiskey_required_players + min_val = 0 + config_entry_value = 140 + integer = TRUE diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm index a499bc769c..ee840525ff 100644 --- a/code/controllers/configuration/entries/general.dm +++ b/code/controllers/configuration/entries/general.dm @@ -476,8 +476,6 @@ This maintains a list of ip addresses that are able to bypass topic filtering. /datum/config_entry/flag/respawn -/datum/config_entry/flag/ToRban - /datum/config_entry/flag/ooc_country_flags /datum/config_entry/flag/record_rounds @@ -621,6 +619,17 @@ This maintains a list of ip addresses that are able to bypass topic filtering. /datum/config_entry/flag/auto_profile +/// Relay Ping Browser configuration +/datum/config_entry/keyed_list/connection_relay_ping + splitter = "|" + key_mode = KEY_MODE_TEXT_UNALTERED + value_mode = VALUE_MODE_TEXT + +/datum/config_entry/keyed_list/connection_relay_con + splitter = "|" + key_mode = KEY_MODE_TEXT_UNALTERED + value_mode = VALUE_MODE_TEXT + /datum/config_entry/number/client_warn_version default = null min_val = 500 @@ -638,9 +647,17 @@ This maintains a list of ip addresses that are able to bypass topic filtering. default = null min_val = 500 -/datum/config_entry/string/client_error_message - default = "Your version of BYOND is too old, may have issues, and is blocked from accessing this server." - /datum/config_entry/number/client_error_build default = null min_val = 0 + +/datum/config_entry/string/client_error_message + default = "Your version of BYOND is too old, may have issues, and is blocked from accessing this server." + +// GitHub API, used for anonymous bug report handling. +/datum/config_entry/string/github_app_api + protection = CONFIG_ENTRY_LOCKED | CONFIG_ENTRY_HIDDEN + +/datum/config_entry/string/repo_name + +/datum/config_entry/string/org diff --git a/code/controllers/mc/admin.dm b/code/controllers/mc/admin.dm index 78eb5c5b5a..8c50608647 100644 --- a/code/controllers/mc/admin.dm +++ b/code/controllers/mc/admin.dm @@ -96,8 +96,8 @@ INITIALIZE_IMMEDIATE(/obj/effect/statclick) set category = "Debug.Controllers" set name = "Debug Role Authority" - if(!RoleAuthority) + if(!GLOB.RoleAuthority) to_chat(usr, "RoleAuthority not found!") return - debug_variables(RoleAuthority) + debug_variables(GLOB.RoleAuthority) message_admins("Admin [key_name_admin(usr)] is debugging the Role Authority.") diff --git a/code/controllers/mc/failsafe.dm b/code/controllers/mc/failsafe.dm index a352b84a8d..f38b5da2cf 100644 --- a/code/controllers/mc/failsafe.dm +++ b/code/controllers/mc/failsafe.dm @@ -155,7 +155,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe) if (. == 1) //We were able to create a new master SSticker.Recover(); //Recover the ticket system so the Masters runlevel gets set Master.Initialize(10, FALSE, TRUE) //Need to manually start the MC, normally world.new would do this - to_chat(GLOB.admins, SPAN_ADMINNOTICE("MC successfully recreated after recovering all subsystems!")) + message_admins(SPAN_ADMINNOTICE("MC successfully recreated after recovering all subsystems!")) else message_admins(SPAN_BOLDANNOUNCE("Failed to create new MC!")) @@ -169,7 +169,7 @@ GLOBAL_REAL(Failsafe, /datum/controller/failsafe) if (. == 1) //We were able to create a new master SSticker.Recover(); //Recover the ticket system so the Masters runlevel gets set Master.Initialize(10, FALSE, TRUE) //Need to manually start the MC, normally world.new would do this - to_chat(GLOB.admins, SPAN_ADMINNOTICE("MC successfully recreated after deleting and recreating all subsystems!")) + message_admins(SPAN_ADMINNOTICE("MC successfully recreated after deleting and recreating all subsystems!")) else message_admins(SPAN_BOLDANNOUNCE("Failed to create new MC!")) diff --git a/code/controllers/mc/globals.dm b/code/controllers/mc/globals.dm index b5547564b7..59b96c017d 100644 --- a/code/controllers/mc/globals.dm +++ b/code/controllers/mc/globals.dm @@ -17,9 +17,10 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars) var/list/controller_vars = exclude_these.vars.Copy() controller_vars["vars"] = null gvars_datum_in_built_vars = controller_vars + list(NAMEOF(src, gvars_datum_protected_varlist), NAMEOF(src, gvars_datum_in_built_vars), NAMEOF(src, gvars_datum_init_order)) + QDEL_IN(exclude_these, 0) //signal logging isn't ready - log_world("[vars.len - gvars_datum_in_built_vars.len] global variables") + log_world("[length(vars) - length(gvars_datum_in_built_vars)] global variables") Initialize() @@ -41,10 +42,10 @@ GLOBAL_REAL(GLOB, /datum/controller/global_vars) gvars_datum_init_order = list() gvars_datum_protected_varlist = list(NAMEOF(src, gvars_datum_protected_varlist) = TRUE) var/list/global_procs = typesof(/datum/controller/global_vars/proc) - var/expected_len = vars.len - gvars_datum_in_built_vars.len - if(global_procs.len != expected_len) - warning("Unable to detect all global initialization procs! Expected [expected_len] got [global_procs.len]!") - if(global_procs.len) + var/expected_len = length(vars) - length(gvars_datum_in_built_vars) + if(length(global_procs) != expected_len) + warning("Unable to detect all global initialization procs! Expected [expected_len] got [length(global_procs)]!") + if(length(global_procs)) var/list/expected_global_procs = vars - gvars_datum_in_built_vars for(var/I in global_procs) expected_global_procs -= replacetext("[I]", "InitGlobal", "") diff --git a/code/controllers/mc/master.dm b/code/controllers/mc/master.dm index 530078e4c4..740e299494 100644 --- a/code/controllers/mc/master.dm +++ b/code/controllers/mc/master.dm @@ -194,7 +194,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new msg = "The [BadBoy.name] subsystem seems to be destabilizing the MC and will be put offline." BadBoy.flags |= SS_NO_FIRE if(msg) - to_chat(GLOB.admins, SPAN_BOLDANNOUNCE("[msg]")) + message_admins(SPAN_BOLDANNOUNCE("[msg]")) log_world(msg) if (istype(Master.subsystems)) @@ -232,7 +232,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new for (var/datum/controller/subsystem/subsystem as anything in subsystems) var/subsystem_init_stage = subsystem.init_stage - if (!isnum(subsystem_init_stage) || subsystem_init_stage < 1 || subsystem_init_stage > INITSTAGE_MAX || round(subsystem_init_stage) != subsystem_init_stage) + if (!isnum(subsystem_init_stage) || subsystem_init_stage < 1 || subsystem_init_stage > INITSTAGE_MAX || floor(subsystem_init_stage) != subsystem_init_stage) stack_trace("ERROR: MC: subsystem `[subsystem.type]` has invalid init_stage: `[subsystem_init_stage]`. Setting to `[INITSTAGE_MAX]`") subsystem_init_stage = subsystem.init_stage = INITSTAGE_MAX stage_sorted_subsystems[subsystem_init_stage] += subsystem @@ -415,9 +415,9 @@ GLOBAL_REAL(Master, /datum/controller/master) = new var/ss_runlevels = SS.runlevels var/added_to_any = FALSE - for(var/I in 1 to GLOB.bitflags.len) + for(var/I in 1 to length(GLOB.bitflags)) if(ss_runlevels & GLOB.bitflags[I]) - while(runlevel_sorted_subsystems.len < I) + while(length(runlevel_sorted_subsystems) < I) runlevel_sorted_subsystems += list(list()) runlevel_sorted_subsystems[I] += SS added_to_any = TRUE @@ -668,7 +668,7 @@ GLOBAL_REAL(Master, /datum/controller/master) = new tick_precentage = max(tick_precentage*0.5, tick_precentage-queue_node.tick_overrun) - current_ticklimit = round(TICK_USAGE + tick_precentage) + current_ticklimit = floor(TICK_USAGE + tick_precentage) ran = TRUE diff --git a/code/controllers/mc/subsystem.dm b/code/controllers/mc/subsystem.dm index 24af320aeb..e25402c286 100644 --- a/code/controllers/mc/subsystem.dm +++ b/code/controllers/mc/subsystem.dm @@ -260,7 +260,7 @@ /datum/controller/subsystem/proc/OnConfigLoad() /** - * Used to initialize the subsystem. This is expected to be overriden by subtypes. + * Used to initialize the subsystem. This is expected to be overridden by subtypes. */ /datum/controller/subsystem/Initialize() return SS_INIT_NONE diff --git a/code/controllers/shuttle_controller.dm b/code/controllers/shuttle_controller.dm index e54d045baf..fb0cb1ff76 100644 --- a/code/controllers/shuttle_controller.dm +++ b/code/controllers/shuttle_controller.dm @@ -28,12 +28,12 @@ shuttle.location = 1 shuttle.warmup_time = 1 shuttle.move_time = ELEVATOR_TRANSIT_DURATION - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/supply/dock) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/supply/station) shuttle.area_station = A break @@ -41,7 +41,7 @@ shuttles["Supply"] = shuttle process_shuttles += shuttle - supply_controller.shuttle = shuttle + GLOB.supply_controller.shuttle = shuttle //---ELEVATOR---// // Elevator I @@ -50,17 +50,17 @@ shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator1/underground) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator1/ground) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator1/transit) shuttle.area_transition = A break @@ -76,17 +76,17 @@ shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator2/underground) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator2/ground) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator2/transit) shuttle.area_transition = A break @@ -102,17 +102,17 @@ shuttle.location = 0 shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator3/underground) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator3/ground) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator3/transit) shuttle.area_transition = A break @@ -127,17 +127,17 @@ shuttle.location = 0 shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator4/underground) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator4/ground) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/elevator4/transit) shuttle.area_transition = A break @@ -152,17 +152,17 @@ shuttle.location = 0 shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans1/omega) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans1/alpha) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans1/away) shuttle.area_transition = A break @@ -178,17 +178,17 @@ shuttle.location = 0 shuttle.warmup_time = 10 SECONDS shuttle.recharge_time = ELEVATOR_RECHARGE - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans2/omega) shuttle.area_offsite = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans2/alpha) shuttle.area_station = A break - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.type == /area/shuttle/tri_trans2/away) shuttle.area_transition = A break @@ -215,8 +215,8 @@ dock_controller_map[shuttle.docking_controller_tag] = shuttle //search for the controllers, if we have one. - if(dock_controller_map.len) - for(var/obj/structure/machinery/embedded_controller/radio/C in machines) //only radio controllers are supported at the moment + if(length(dock_controller_map)) + for(var/obj/structure/machinery/embedded_controller/radio/C in GLOB.machines) //only radio controllers are supported at the moment if (istype(C.program, /datum/computer/file/embedded_program/docking)) if(dock_controller_map[C.id_tag]) shuttle = dock_controller_map[C.id_tag] @@ -226,7 +226,7 @@ //sanity check //NO SANITY -// if (dock_controller_map.len || dock_controller_map_station.len || dock_controller_map_offsite.len) +// if (length(dock_controller_map) || length(dock_controller_map_station) || length(dock_controller_map_offsite)) // var/dat = "" // for (var/dock_tag in dock_controller_map + dock_controller_map_station + dock_controller_map_offsite) // dat += "\"[dock_tag]\", " diff --git a/code/controllers/subsystem/acid_pillar.dm b/code/controllers/subsystem/acid_pillar.dm index aaa3883466..70994e6415 100644 --- a/code/controllers/subsystem/acid_pillar.dm +++ b/code/controllers/subsystem/acid_pillar.dm @@ -11,8 +11,8 @@ SUBSYSTEM_DEF(acid_pillar) if (!resumed) currentrun = queuedrun.Copy() - while (currentrun.len) - var/hash = currentrun[currentrun.len] + while (length(currentrun)) + var/hash = currentrun[length(currentrun)] var/datum/acid_spray_info/data = currentrun[hash] currentrun.len-- diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm index cc650ec2ae..dbe2f1a39c 100644 --- a/code/controllers/subsystem/atoms.dm +++ b/code/controllers/subsystem/atoms.dm @@ -9,7 +9,7 @@ SUBSYSTEM_DEF(atoms) flags = SS_NO_FIRE var/old_initialized - /// A count of how many initalize changes we've made. We want to prevent old_initialize being overriden by some other value, breaking init code + /// A count of how many initalize changes we've made. We want to prevent old_initialize being overridden by some other value, breaking init code var/initialized_changed = 0 var/init_start_time var/processing_late_loaders = FALSE @@ -62,7 +62,7 @@ SUBSYSTEM_DEF(atoms) processing_late_loaders = TRUE - for(var/I = 1; I <= late_loaders.len; I++) + for(var/I = 1; I <= length(late_loaders); I++) var/atom/A = late_loaders[I] //I hate that we need this if(QDELETED(A)) @@ -70,7 +70,7 @@ SUBSYSTEM_DEF(atoms) A.LateInitialize() #ifdef TESTING - testing("Late initialized [late_loaders.len] atoms") + testing("Late initialized [length(late_loaders)] atoms") #endif late_loaders.Cut() processing_late_loaders = FALSE @@ -87,10 +87,10 @@ SUBSYSTEM_DEF(atoms) var/list/mapload_arg = list(TRUE) if(atoms) #ifdef TESTING - count = atoms.len + count = length(atoms) #endif - for(var/I in 1 to atoms.len) + for(var/I in 1 to length(atoms)) var/atom/A = atoms[I] if(!(A.flags_atom & INITIALIZED)) CHECK_TICK @@ -187,7 +187,7 @@ SUBSYSTEM_DEF(atoms) /datum/controller/subsystem/atoms/proc/map_loader_stop() clear_tracked_initalize() -/// Use this to set initialized to prevent error states where old_initialized is overriden. It keeps happening and it's cheesing me off +/// Use this to set initialized to prevent error states where old_initialized is overridden. It keeps happening and it's cheesing me off /datum/controller/subsystem/atoms/proc/set_tracked_initalized(value) if(!initialized_changed) old_initialized = initialized diff --git a/code/controllers/subsystem/cellauto.dm b/code/controllers/subsystem/cellauto.dm index bcdd9d241c..983d168d61 100644 --- a/code/controllers/subsystem/cellauto.dm +++ b/code/controllers/subsystem/cellauto.dm @@ -1,4 +1,4 @@ -var/list/cellauto_cells = list() +GLOBAL_LIST_EMPTY(cellauto_cells) SUBSYSTEM_DEF(cellauto) name = "Cellular Automata" @@ -9,15 +9,15 @@ SUBSYSTEM_DEF(cellauto) var/list/currentrun = list() /datum/controller/subsystem/cellauto/stat_entry(msg) - msg = "C: [cellauto_cells.len]" + msg = "C: [length(GLOB.cellauto_cells)]" return ..() /datum/controller/subsystem/cellauto/fire(resumed = FALSE) if (!resumed) - currentrun = cellauto_cells.Copy() + currentrun = GLOB.cellauto_cells.Copy() - while(currentrun.len) - var/datum/automata_cell/C = currentrun[currentrun.len] + while(length(currentrun)) + var/datum/automata_cell/C = currentrun[length(currentrun)] currentrun.len-- if (!C || QDELETED(C)) diff --git a/code/controllers/subsystem/communications.dm b/code/controllers/subsystem/communications.dm index e214b29836..e1b547664f 100644 --- a/code/controllers/subsystem/communications.dm +++ b/code/controllers/subsystem/communications.dm @@ -66,78 +66,87 @@ Frequency range: 1200 to 1600 Radiochat range: 1441 to 1489 (most devices refuse to be tune to other frequency, even during mapmaking) */ -var/const/MIN_FREE_FREQ = 1201 // ------------------------------------------------- +#define UNIVERSAL_FREQ 1 + +#define MIN_FREE_FREQ 1201 // ------------------------------------------------- //Misc channels -var/const/YAUT_FREQ = 1205 -var/const/DUT_FREQ = 1210 -var/const/CMB_FREQ = 1220 -var/const/VAI_FREQ = 1215 -var/const/RMC_FREQ = 1216 +#define YAUT_FREQ 1205 +#define DUT_FREQ 1210 +#define VAI_FREQ 1215 +#define RMC_FREQ 1216 +#define CMB_FREQ 1220 //WY Channels (1230-1249) -var/const/WY_FREQ = 1231 -var/const/PMC_CMD_FREQ = 1232 -var/const/PMC_FREQ = 1233 -var/const/PMC_ENGI_FREQ = 1234 -var/const/PMC_MED_FREQ = 1235 -var/const/PMC_CCT_FREQ = 1236 -var/const/WY_WO_FREQ = 1239 +#define WY_FREQ 1231 +#define PMC_CMD_FREQ 1232 +#define PMC_FREQ 1233 +#define PMC_ENGI_FREQ 1234 +#define PMC_MED_FREQ 1235 +#define PMC_CCT_FREQ 1236 +#define WY_WO_FREQ 1239 //UPP Channels (1250-1269) -var/const/UPP_FREQ = 1251 -var/const/UPP_CMD_FREQ = 1252 -var/const/UPP_ENGI_FREQ = 1253 -var/const/UPP_MED_FREQ = 1254 -var/const/UPP_CCT_FREQ = 1255 -var/const/UPP_KDO_FREQ = 1259 +#define UPP_FREQ 1251 +#define UPP_CMD_FREQ 1252 +#define UPP_ENGI_FREQ 1253 +#define UPP_MED_FREQ 1254 +#define UPP_CCT_FREQ 1255 +#define UPP_KDO_FREQ 1259 //CLF Channels (1270-1289) -var/const/CLF_FREQ = 1271 -var/const/CLF_CMD_FREQ = 1272 -var/const/CLF_ENGI_FREQ = 1273 -var/const/CLF_MED_FREQ = 1274 -var/const/CLF_CCT_FREQ = 1275 +#define CLF_FREQ 1271 +#define CLF_CMD_FREQ 1272 +#define CLF_ENGI_FREQ 1273 +#define CLF_MED_FREQ 1274 +#define CLF_CCT_FREQ 1275 + +//Listening Bugs (1290-1291) +#define BUG_A_FREQ 1290 +#define BUG_B_FREQ 1291 -var/const/MIN_FREQ = 1460 // ------------------------------------------------------ -var/const/PUB_FREQ = 1461 -var/const/MAX_FREQ = 1468 // ------------------------------------------------------ +//General Radio +#define MIN_FREQ 1460 // ------------------------------------------------------ +#define PUB_FREQ 1461 +#define MAX_FREQ 1468 // ------------------------------------------------------ //USCM High Command (USCM 1470-1499) -var/const/HC_FREQ = 1471 -var/const/SOF_FREQ = 1472 -var/const/PVST_FREQ = 1473 -var/const/CBRN_FREQ = 1474 +#define HC_FREQ 1471 +#define SOF_FREQ 1472 +#define PVST_FREQ 1473 +#define CBRN_FREQ 1474 +#define FORECON_FREQ 1475 //Ship department channels -var/const/SENTRY_FREQ = 1480 -var/const/COMM_FREQ = 1481 -var/const/MED_FREQ = 1482 -var/const/ENG_FREQ = 1483 -var/const/SEC_FREQ = 1484 -var/const/REQ_FREQ = 1485 -var/const/JTAC_FREQ = 1486 -var/const/INTEL_FREQ = 1487 - -var/const/DS1_FREQ = 1488 -var/const/DS2_FREQ = 1489 +#define SENTRY_FREQ 1480 +#define COMM_FREQ 1481 +#define MED_FREQ 1482 +#define ENG_FREQ 1483 +#define SEC_FREQ 1484 +#define REQ_FREQ 1485 +#define JTAC_FREQ 1486 +#define INTEL_FREQ 1487 + +#define DS1_FREQ 1488 +#define DS2_FREQ 1489 +#define DS3_FREQ 1490 //Marine Squad channels -var/const/ALPHA_FREQ = 1491 -var/const/BRAVO_FREQ = 1492 -var/const/CHARLIE_FREQ = 1493 -var/const/DELTA_FREQ = 1494 -var/const/ECHO_FREQ = 1495 -var/const/CRYO_FREQ = 1496 +#define ALPHA_FREQ 1491 +#define BRAVO_FREQ 1492 +#define CHARLIE_FREQ 1493 +#define DELTA_FREQ 1494 +#define ECHO_FREQ 1495 +#define CRYO_FREQ 1496 //Civilian channels -var/const/COLONY_FREQ = 1469 +#define COLONY_FREQ 1469 -var/const/AI_FREQ = 1500 +#define AI_FREQ 1500 -var/const/MAX_FREE_FREQ = 1599 // ------------------------------------------------- +#define MAX_FREE_FREQ 1599 // ------------------------------------------------- -var/list/radiochannels = list( +GLOBAL_LIST_INIT(radiochannels, list( RADIO_CHANNEL_YAUTJA = YAUT_FREQ, RADIO_CHANNEL_VAI = VAI_FREQ, RADIO_CHANNEL_CMB = CMB_FREQ, @@ -164,9 +173,12 @@ var/list/radiochannels = list( SQUAD_MARINE_CRYO = CRYO_FREQ, SQUAD_SOF = SOF_FREQ, SQUAD_CBRN = CBRN_FREQ, + SQUAD_FORECON = FORECON_FREQ, + SQUAD_SOLAR = SOF_FREQ, RADIO_CHANNEL_ALAMO = DS1_FREQ, RADIO_CHANNEL_NORMANDY = DS2_FREQ, + RADIO_CHANNEL_SAIPAN = DS3_FREQ, RADIO_CHANNEL_COLONY = COLONY_FREQ, @@ -191,7 +203,10 @@ var/list/radiochannels = list( RADIO_CHANNEL_CLF_ENGI = CLF_ENGI_FREQ, RADIO_CHANNEL_CLF_MED = CLF_MED_FREQ, RADIO_CHANNEL_CLF_CCT = CLF_CCT_FREQ, -) + + RADIO_CHANNEL_BUG_A = BUG_A_FREQ, + RADIO_CHANNEL_BUG_B = BUG_B_FREQ, +)) // Response Teams #define ERT_FREQS list(VAI_FREQ, DUT_FREQ, YAUT_FREQ, CMB_FREQ, RMC_FREQ) @@ -205,6 +220,9 @@ var/list/radiochannels = list( // PMC Frequencies #define PMC_FREQS list(PMC_FREQ, PMC_CMD_FREQ, PMC_ENGI_FREQ, PMC_MED_FREQ, PMC_CCT_FREQ, WY_WO_FREQ, WY_FREQ) +//Listening Device Frequencies +#define BUG_FREQS list(BUG_A_FREQ, BUG_B_FREQ) + //Depts - used for colors in headset.dm, as well as deciding what the marine comms tower can listen into #define DEPT_FREQS list(COMM_FREQ, MED_FREQ, ENG_FREQ, SEC_FREQ, SENTRY_FREQ, ALPHA_FREQ, BRAVO_FREQ, CHARLIE_FREQ, DELTA_FREQ, ECHO_FREQ, CRYO_FREQ, REQ_FREQ, JTAC_FREQ, INTEL_FREQ, WY_FREQ) @@ -217,17 +235,17 @@ var/list/radiochannels = list( //This is done for performance, so we don't send signals to lots of machines unnecessarily. //This filter is special because devices belonging to default also receive signals sent to any other filter. -var/const/RADIO_DEFAULT = "radio_default" - -var/const/RADIO_TO_AIRALARM = "radio_airalarm" //air alarms -var/const/RADIO_FROM_AIRALARM = "radio_airalarm_rcvr" //devices interested in receiving signals from air alarms -var/const/RADIO_CHAT = "radio_telecoms" -var/const/RADIO_SIGNALS = "radio_signals" -var/const/RADIO_ATMOSIA = "radio_atmos" -var/const/RADIO_NAVBEACONS = "radio_navbeacon" -var/const/RADIO_AIRLOCK = "radio_airlock" -var/const/RADIO_MULEBOT = "radio_mulebot" -var/const/RADIO_MAGNETS = "radio_magnet" +#define RADIO_DEFAULT "radio_default" + +#define RADIO_TO_AIRALARM "radio_airalarm" //air alarms +#define RADIO_FROM_AIRALARM "radio_airalarm_rcvr" //devices interested in receiving signals from air alarms +#define RADIO_CHAT "radio_telecoms" +#define RADIO_SIGNALS "radio_signals" +#define RADIO_ATMOSIA "radio_atmos" +#define RADIO_NAVBEACONS "radio_navbeacon" +#define RADIO_AIRLOCK "radio_airlock" +#define RADIO_MULEBOT "radio_mulebot" +#define RADIO_MAGNETS "radio_magnet" //callback used by objects to react to incoming radio signals /obj/proc/receive_signal(datum/signal/signal, receive_method, receive_param) @@ -257,7 +275,6 @@ SUBSYSTEM_DEF(radio) "[VAI_FREQ]" = "vairadio", "[RMC_FREQ]" = "rmcradio", "[CMB_FREQ]" = "cmbradio", - "[CLF_FREQ]" = "clfradio", "[ALPHA_FREQ]" = "alpharadio", "[BRAVO_FREQ]" = "bravoradio", "[CHARLIE_FREQ]" = "charlieradio", @@ -265,10 +282,24 @@ SUBSYSTEM_DEF(radio) "[ECHO_FREQ]" = "echoradio", "[CRYO_FREQ]" = "cryoradio", "[CBRN_FREQ]" = "hcradio", + "[FORECON_FREQ]" = "hcradio", "[SOF_FREQ]" = "hcradio", "[HC_FREQ]" = "hcradio", "[PVST_FREQ]" = "pvstradio", "[COLONY_FREQ]" = "deptradio", + "[BUG_A_FREQ]" = "airadio", + "[BUG_B_FREQ]" = "aiprivradio", + "[UPP_FREQ]" = "syndradio", + "[UPP_CMD_FREQ]" = "opforcmd", + "[UPP_ENGI_FREQ]" = "opforeng", + "[UPP_MED_FREQ]" = "opformed", + "[UPP_CCT_FREQ]" = "opforcct", + "[UPP_KDO_FREQ]" = "opforspe", + "[CLF_FREQ]" = "clfradio", + "[CLF_CMD_FREQ]" = "opforcmd", + "[CLF_ENGI_FREQ]" = "opforeng", + "[CLF_MED_FREQ]" = "opformed", + "[CLF_CCT_FREQ]" = "opforcct", ) /datum/controller/subsystem/radio/proc/add_object(obj/device as obj, new_frequency as num, filter = null as text|null) @@ -315,11 +346,11 @@ SUBSYSTEM_DEF(radio) if(length(extra_zs)) target_zs += extra_zs for(var/obj/structure/machinery/telecomms/T as anything in tcomm_machines_ground) - if(!length(T.freq_listening) || (frequency in T.freq_listening)) + if((UNIVERSAL_FREQ in T.freq_listening) || (frequency in T.freq_listening)) target_zs += SSmapping.levels_by_trait(ZTRAIT_GROUND) break for(var/obj/structure/machinery/telecomms/T as anything in tcomm_machines_almayer) - if(!length(T.freq_listening) || (frequency in T.freq_listening)) + if((UNIVERSAL_FREQ in T.freq_listening) || (frequency in T.freq_listening)) target_zs += SSmapping.levels_by_trait(ZTRAIT_MARINE_MAIN_SHIP) target_zs += SSmapping.levels_by_trait(ZTRAIT_RESERVED) break @@ -351,10 +382,6 @@ SUBSYSTEM_DEF(radio) return freq_span if(frequency in PMC_FREQS) return "pmcradio" - if(frequency in UPP_FREQS) - return "syndradio" - if(frequency in CLF_FREQS) - return "clfradio" if(frequency in ERT_FREQS) return "centradio" if(frequency in DEPT_FREQS) diff --git a/code/controllers/subsystem/decorator.dm b/code/controllers/subsystem/decorator.dm index e0e2c91022..e8120cc096 100644 --- a/code/controllers/subsystem/decorator.dm +++ b/code/controllers/subsystem/decorator.dm @@ -1,4 +1,4 @@ -// our atom declaration should not be hardcoded for this SS existance. +// our atom declaration should not be hardcoded for this SS existence. // if this subsystem is deleted, stuff still works // That's why we define this here /atom/proc/Decorate(deferable = FALSE) @@ -29,13 +29,13 @@ SUBSYSTEM_DEF(decorator) var/list/datum/weakref/currentrun = list() /datum/controller/subsystem/decorator/Initialize() - var/list/all_decors = typesof(/datum/decorator) - list(/datum/decorator) - typesof(/datum/decorator/manual) + var/list/all_decors = typesof(/datum/decorator) - list(/datum/decorator) - typesof(/datum/decorator/manual) - typesof(/datum/decorator/gamemode) for(var/decor_type in all_decors) var/datum/decorator/decor = new decor_type() if(!decor.is_active_decor()) continue var/list/applicable_types = decor.get_decor_types() - if(!applicable_types || !applicable_types.len) + if(!LAZYLEN(applicable_types)) continue active_decorators |= decor for(var/app_type in applicable_types) @@ -43,6 +43,8 @@ SUBSYSTEM_DEF(decorator) registered_decorators[app_type] = list() registered_decorators[app_type] += decor + RegisterSignal(SSdcs, COMSIG_GLOB_MODE_PRESETUP, PROC_REF(handle_mode_specific)) + for(var/i in registered_decorators) registered_decorators[i] = sortDecorators(registered_decorators[i]) @@ -64,13 +66,31 @@ SUBSYSTEM_DEF(decorator) currentrun = swap while(length(currentrun)) - var/datum/weakref/ref = currentrun[currentrun.len] + var/datum/weakref/ref = currentrun[length(currentrun)] currentrun.len-- var/atom/A = ref?.resolve() if(A) A.Decorate(deferable = FALSE) if(MC_TICK_CHECK) return +/datum/controller/subsystem/decorator/proc/handle_mode_specific() + SIGNAL_HANDLER + + for(var/decorator_type in typesof(/datum/decorator/gamemode)) + var/datum/decorator/gamemode/gamemode_decorator = new decorator_type() + + if(!istype(SSticker.mode, gamemode_decorator.gamemode)) + continue + + var/applicable_types = gamemode_decorator.get_decor_types() + if(!length(applicable_types)) + continue + + active_decorators |= gamemode_decorator + + for(var/applicable_type in applicable_types) + LAZYADD(registered_decorators[applicable_type], gamemode_decorator) + /datum/controller/subsystem/decorator/proc/add_decorator(decor_type, ...) var/list/arguments = list() if (length(args) > 1) @@ -80,7 +100,7 @@ SUBSYSTEM_DEF(decorator) // DECORATOR IS ENABLED FORCEFULLY var/list/applicable_types = decor.get_decor_types() - if(!applicable_types || !applicable_types.len) + if(!LAZYLEN(applicable_types)) return active_decorators |= decor for(var/app_type in applicable_types) @@ -100,7 +120,7 @@ SUBSYSTEM_DEF(decorator) /datum/controller/subsystem/decorator/stat_entry(msg) if(registered_decorators && decoratable) - msg = "D:[registered_decorators.len],P:[decoratable.len]" + msg = "D:[length(registered_decorators)],P:[length(decoratable)]" return ..() /datum/controller/subsystem/decorator/proc/decorate(atom/o) @@ -118,25 +138,25 @@ SUBSYSTEM_DEF(decorator) /datum/controller/subsystem/decorator/proc/sortDecorators(list/datum/decorator/L) if(!istype(L)) return null - if(L.len < 2) + if(length(L) < 2) return L - var/middle = L.len / 2 + 1 + var/middle = length(L) / 2 + 1 return mergeDecoratorLists(sortDecorators(L.Copy(0, middle)), sortDecorators(L.Copy(middle))) /datum/controller/subsystem/decorator/proc/mergeDecoratorLists(list/datum/decorator/L, list/datum/decorator/R) var/Li=1 var/Ri=1 var/list/result = new() - while(Li <= L.len && Ri <= R.len) + while(Li <= length(L) && Ri <= length(R)) if(sorttext(L[Li].priority, R[Ri].priority) < 1) // Works around list += list2 merging lists; it's not pretty but it works result += "temp item" - result[result.len] = R[Ri++] + result[length(result)] = R[Ri++] else result += "temp item" - result[result.len] = L[Li++] + result[length(result)] = L[Li++] - if(Li <= L.len) + if(Li <= length(L)) return (result + L.Copy(Li, 0)) return (result + R.Copy(Ri, 0)) diff --git a/code/controllers/subsystem/disease.dm b/code/controllers/subsystem/disease.dm index b98187ca25..342a6b2890 100644 --- a/code/controllers/subsystem/disease.dm +++ b/code/controllers/subsystem/disease.dm @@ -8,15 +8,15 @@ SUBSYSTEM_DEF(disease) var/list/datum/disease/currentrun = list() /datum/controller/subsystem/disease/stat_entry(msg) - msg = "P:[all_diseases.len]" + msg = "P:[length(all_diseases)]" return ..() /datum/controller/subsystem/disease/fire(resumed = FALSE) if (!resumed) currentrun = all_diseases.Copy() - while (currentrun.len) - var/datum/disease/D = currentrun[currentrun.len] + while (length(currentrun)) + var/datum/disease/D = currentrun[length(currentrun)] currentrun.len-- if (!D || QDELETED(D)) diff --git a/code/controllers/subsystem/events.dm b/code/controllers/subsystem/events.dm index 83cd822725..db1b074754 100644 --- a/code/controllers/subsystem/events.dm +++ b/code/controllers/subsystem/events.dm @@ -9,7 +9,7 @@ SUBSYSTEM_DEF(events) var/list/running = list() var/list/currentrun = list() - ///The next world.time that a naturally occuring random event can be selected. + ///The next world.time that a naturally occurring random event can be selected. var/scheduled = 0 ///Lower bound for how frequently events will occur var/frequency_lower = 5 MINUTES @@ -35,8 +35,8 @@ SUBSYSTEM_DEF(events) //cache for sanic speed (lists are references anyways) var/list/currentrun = src.currentrun - while(currentrun.len) - var/datum/thing = currentrun[currentrun.len] + while(length(currentrun)) + var/datum/thing = currentrun[length(currentrun)] currentrun.len-- if(thing) thing.process() diff --git a/code/controllers/subsystem/fz_transitions.dm b/code/controllers/subsystem/fz_transitions.dm index f09f442090..afe0529dbd 100644 --- a/code/controllers/subsystem/fz_transitions.dm +++ b/code/controllers/subsystem/fz_transitions.dm @@ -1,6 +1,6 @@ -var/list/projectors = list() -var/list/clones = list() -var/list/clones_t = list() +GLOBAL_LIST_EMPTY(projectors) +GLOBAL_LIST_EMPTY(clones) +GLOBAL_LIST_EMPTY(clones_t) SUBSYSTEM_DEF(fz_transitions) name = "Z-Transitions" @@ -10,18 +10,18 @@ SUBSYSTEM_DEF(fz_transitions) flags = SS_KEEP_TIMING /datum/controller/subsystem/fz_transitions/stat_entry(msg) - msg = "P:[projectors.len]|C:[clones.len]|T:[clones_t.len]" + msg = "P:[length(GLOB.projectors)]|C:[length(GLOB.clones)]|T:[length(GLOB.clones_t)]" return ..() /datum/controller/subsystem/fz_transitions/Initialize() for(var/obj/effect/projector/P in world) - projectors.Add(P) + GLOB.projectors.Add(P) return SS_INIT_SUCCESS /datum/controller/subsystem/fz_transitions/fire(resumed = FALSE) - for(var/obj/effect/projector/P in projectors) + for(var/obj/effect/projector/P in GLOB.projectors) if(!P || !P.loc) - projectors -= P + GLOB.projectors -= P continue if(!P.loc.clone) P.loc.create_clone(P.vector_x, P.vector_y, P.vector_z) @@ -37,13 +37,13 @@ SUBSYSTEM_DEF(fz_transitions) O.clone.proj_z = P.vector_z - for(var/atom/movable/clone/C in clones) + for(var/atom/movable/clone/C in GLOB.clones) if(C.mstr == null || !istype(C.mstr.loc, /turf)) C.mstr.destroy_clone() //Kill clone if master has been destroyed or picked up else if(C != C.mstr) C.mstr.update_clone() //NOTE: Clone updates are also forced by player movement to reduce latency - for(var/atom/T in clones_t) + for(var/atom/T in GLOB.clones_t) if(T.clone && T.icon_state) //Just keep the icon updated for explosions etc. T.clone.icon_state = T.icon_state diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm index 37c305d59c..072419df2c 100644 --- a/code/controllers/subsystem/garbage.dm +++ b/code/controllers/subsystem/garbage.dm @@ -297,7 +297,7 @@ SUBSYSTEM_DEF(garbage) /datum/controller/subsystem/garbage/Recover() InitQueues() //We first need to create the queues before recovering data if (istype(SSgarbage.queues)) - for (var/i in 1 to SSgarbage.queues.len) + for (var/i in 1 to length(SSgarbage.queues)) queues[i] |= SSgarbage.queues[i] /// Qdel Item: Holds statistics on each type that passes thru qdel diff --git a/code/controllers/subsystem/hijack.dm b/code/controllers/subsystem/hijack.dm index a256a7f2a8..6a2f63023c 100644 --- a/code/controllers/subsystem/hijack.dm +++ b/code/controllers/subsystem/hijack.dm @@ -105,6 +105,7 @@ SUBSYSTEM_DEF(hijack) if(hijack_status < HIJACK_OBJECTIVES_STARTED) hijack_status = HIJACK_OBJECTIVES_STARTED + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_FUEL_PUMP_UPDATE) if(current_progress >= required_progress) if(hijack_status < HIJACK_OBJECTIVES_COMPLETE) @@ -157,6 +158,7 @@ SUBSYSTEM_DEF(hijack) if(current_progress >= announce_checkpoint) announce_progress() announce_checkpoint += initial(announce_checkpoint) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_FUEL_PUMP_UPDATE) current_run_progress_additive = 0 current_run_progress_multiplicative = 1 @@ -238,7 +240,7 @@ SUBSYSTEM_DEF(hijack) return "Complete" /datum/controller/subsystem/hijack/proc/get_sd_eta() - if(!sd_time_remaining) + if(sd_detonated) return "Complete" if(overloaded_generators <= 0) @@ -254,7 +256,7 @@ SUBSYSTEM_DEF(hijack) evac_status = EVACUATION_STATUS_INITIATED ai_announcement("Attention. Emergency. All personnel must evacuate immediately.", 'sound/AI/evacuate.ogg') - for(var/obj/structure/machinery/status_display/cycled_status_display in machines) + for(var/obj/structure/machinery/status_display/cycled_status_display in GLOB.machines) if(is_mainship_level(cycled_status_display.z)) cycled_status_display.set_picture("evac") for(var/obj/docking_port/mobile/crashable/escape_shuttle/shuttle in SSshuttle.mobile) @@ -269,7 +271,7 @@ SUBSYSTEM_DEF(hijack) deactivate_lifeboats() ai_announcement("Evacuation has been cancelled.", 'sound/AI/evacuate_cancelled.ogg') - for(var/obj/structure/machinery/status_display/cycled_status_display in machines) + for(var/obj/structure/machinery/status_display/cycled_status_display in GLOB.machines) if(is_mainship_level(cycled_status_display.z)) cycled_status_display.set_sec_level_picture() @@ -299,7 +301,7 @@ SUBSYSTEM_DEF(hijack) sd_unlocked = TRUE marine_announcement("Fuel reserves full. Manual detonation of fuel reserves by overloading the on-board fusion reactors now possible.", HIJACK_ANNOUNCE) -/datum/controller/subsystem/hijack/proc/on_generator_overload(obj/structure/machinery/power/fusion_engine/source, new_overloading) +/datum/controller/subsystem/hijack/proc/on_generator_overload(obj/structure/machinery/power/reactor/source, new_overloading) SIGNAL_HANDLER if(!generator_ever_overloaded) @@ -325,22 +327,22 @@ SUBSYSTEM_DEF(hijack) /datum/controller/subsystem/hijack/proc/heat_engine_room() engine_room_heated = TRUE - var/area/engine_room = GLOB.areas_by_type[/area/almayer/engineering/engine_core] + var/area/engine_room = GLOB.areas_by_type[/area/almayer/engineering/lower/engine_core] engine_room.firealert() engine_room.temperature = T90C for(var/mob/current_mob as anything in GLOB.mob_list) var/area/mob_area = get_area(current_mob) - if(istype(mob_area, /area/almayer/engineering/engine_core)) + if(istype(mob_area, /area/almayer/engineering/lower/engine_core)) to_chat(current_mob, SPAN_BOLDWARNING("You feel the heat of the room increase as the fusion engines whirr louder.")) /datum/controller/subsystem/hijack/proc/superheat_engine_room() engine_room_superheated = TRUE - var/area/engine_room = GLOB.areas_by_type[/area/almayer/engineering/engine_core] + var/area/engine_room = GLOB.areas_by_type[/area/almayer/engineering/lower/engine_core] engine_room.firealert() engine_room.temperature = T120C //slowly deals burn at this temp for(var/mob/current_mob as anything in GLOB.mob_list) var/area/mob_area = get_area(current_mob) - if(istype(mob_area, /area/almayer/engineering/engine_core)) + if(istype(mob_area, /area/almayer/engineering/lower/engine_core)) to_chat(current_mob, SPAN_BOLDWARNING("The room feels incredibly hot, you can't take much more of this!")) /datum/controller/subsystem/hijack/proc/announce_sd_halfway() diff --git a/code/controllers/subsystem/human.dm b/code/controllers/subsystem/human.dm index ffbbb7aa92..3bc67c48a2 100644 --- a/code/controllers/subsystem/human.dm +++ b/code/controllers/subsystem/human.dm @@ -10,15 +10,15 @@ SUBSYSTEM_DEF(human) /datum/controller/subsystem/human/stat_entry(msg) - msg = "P:[processable_human_list.len]" + msg = "P:[length(processable_human_list)]" return ..() /datum/controller/subsystem/human/fire(resumed = FALSE) if (!resumed) currentrun = processable_human_list.Copy() - while (currentrun.len) - var/mob/living/carbon/human/M = currentrun[currentrun.len] + while (length(currentrun)) + var/mob/living/carbon/human/M = currentrun[length(currentrun)] currentrun.len-- if (!M || QDELETED(M)) diff --git a/code/controllers/subsystem/influxstats.dm b/code/controllers/subsystem/influxstats.dm index 01015b8319..066c94cc25 100644 --- a/code/controllers/subsystem/influxstats.dm +++ b/code/controllers/subsystem/influxstats.dm @@ -104,7 +104,7 @@ SUBSYSTEM_DEF(influxstats) /datum/controller/subsystem/influxstats/proc/run_job_statistics() var/list/team_job_stats = list() - var/list/squad_job_stats = ROLES_SQUAD_ALL.Copy() + var/list/squad_job_stats = GLOB.ROLES_SQUAD_ALL.Copy() for(var/squad in squad_job_stats) squad_job_stats[squad] = list() diff --git a/code/controllers/subsystem/init/landmarks.dm b/code/controllers/subsystem/init/landmarks.dm index 59bba7c792..1fdf830838 100644 --- a/code/controllers/subsystem/init/landmarks.dm +++ b/code/controllers/subsystem/init/landmarks.dm @@ -1,4 +1,4 @@ -var/list/item_pool_landmarks = list() +GLOBAL_LIST_EMPTY(item_pool_landmarks) SUBSYSTEM_DEF(landmark_init) name = "Landmark Init" @@ -9,7 +9,7 @@ SUBSYSTEM_DEF(landmark_init) // List of all the datums we need to loop through var/list/datum/item_pool_holder/pools = list() - for (var/obj/effect/landmark/item_pool_spawner/L in item_pool_landmarks) + for (var/obj/effect/landmark/item_pool_spawner/L in GLOB.item_pool_landmarks) var/curr_pool_name = L.pool_name @@ -47,14 +47,14 @@ SUBSYSTEM_DEF(landmark_init) message_admins("Item pool [pool.pool_name] has no master landmark, aborting item spawns. Tell the devs. Code: ITEM_POOL_3") continue - if (pool.quota > pool.turfs.len) - log_debug("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [turfs.len] instances of [pool.type_to_spawn] instead. Code: ITEM_POOL_4") - message_admins("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [turfs.len] instances of [pool.type_to_spawn] instead. Tell the devs. Code: ITEM_POOL_4") - pool.quota = pool.turfs.len + if (pool.quota > length(pool.turfs)) + log_debug("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [length(pool.turfs)] instances of [pool.type_to_spawn] instead. Code: ITEM_POOL_4") + message_admins("Item pool [pool.pool_name] wants to spawn more items than it has landmarks for. Spawning [length(pool.turfs)] instances of [pool.type_to_spawn] instead. Tell the devs. Code: ITEM_POOL_4") + pool.quota = length(pool.turfs) // Quota times, pick a random turf, spawn an item there, then remove that turf from the list. for (var/i in 1 to pool.quota) - var/turf/T = pool.turfs[rand(1, pool.turfs.len)] + var/turf/T = pool.turfs[rand(1, length(pool.turfs))] var/atom/movable/newly_spawned = new pool.type_to_spawn() newly_spawned.forceMove(T) diff --git a/code/controllers/subsystem/init/lobby_art.dm b/code/controllers/subsystem/init/lobby_art.dm index 7c49d5fe17..4b26d576b8 100644 --- a/code/controllers/subsystem/init/lobby_art.dm +++ b/code/controllers/subsystem/init/lobby_art.dm @@ -6,5 +6,5 @@ SUBSYSTEM_DEF(lobby_art) /datum/controller/subsystem/lobby_art/Initialize() var/list/lobby_arts = CONFIG_GET(str_list/lobby_art_images) if(length(lobby_arts)) - force_lobby_art(rand(1,length(lobby_arts))) + force_lobby_art(rand(1, length(lobby_arts))) return SS_INIT_SUCCESS diff --git a/code/controllers/subsystem/input.dm b/code/controllers/subsystem/input.dm index 26d393d197..5dfd7bc5bb 100644 --- a/code/controllers/subsystem/input.dm +++ b/code/controllers/subsystem/input.dm @@ -33,7 +33,7 @@ SUBSYSTEM_DEF(input) // Badmins just wanna have fun ♪ /datum/controller/subsystem/input/proc/refresh_client_macro_sets() var/list/clients = GLOB.clients - for(var/i in 1 to clients.len) + for(var/i in 1 to length(clients)) var/client/user = clients[i] INVOKE_ASYNC(user, /client/proc/set_macros) diff --git a/code/controllers/subsystem/interior.dm b/code/controllers/subsystem/interior.dm index e2b845f833..b0bacc7d2b 100644 --- a/code/controllers/subsystem/interior.dm +++ b/code/controllers/subsystem/interior.dm @@ -21,8 +21,7 @@ SUBSYSTEM_DEF(interior) var/list/bounds = template.load(locate(bottom_left.x + (INTERIOR_BORDER_SIZE / 2), bottom_left.y + (INTERIOR_BORDER_SIZE / 2), bottom_left.z), centered = FALSE) - var/list/turfs = block( locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), - locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) + var/list/turfs = block(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ], bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]) var/list/areas = list() for(var/turf/current_turf as anything in turfs) diff --git a/code/controllers/subsystem/item_cleanup.dm b/code/controllers/subsystem/item_cleanup.dm index f23422329b..ee9bb28f51 100644 --- a/code/controllers/subsystem/item_cleanup.dm +++ b/code/controllers/subsystem/item_cleanup.dm @@ -1,4 +1,4 @@ -var/global/list/item_cleanup_list = list() +GLOBAL_LIST_EMPTY(item_cleanup_list) SUBSYSTEM_DEF(item_cleanup) name = "Item Cleanup" @@ -18,9 +18,9 @@ SUBSYSTEM_DEF(item_cleanup) //Do nothing for the first 35 minutes to preserve the colony look for the first drop return - var/to_delete = items_to_clean_up.len * percentage_of_garbage_to_delete + var/to_delete = length(items_to_clean_up) * percentage_of_garbage_to_delete var/deleted = 0 - var/total_items = items_to_clean_up.len //save total before we start deleting stuff + var/total_items = length(items_to_clean_up) //save total before we start deleting stuff for (var/atom/o in items_to_clean_up) if(QDELETED(o)) items_to_clean_up -= o @@ -34,9 +34,9 @@ SUBSYSTEM_DEF(item_cleanup) break //We transfer items from the global garbage list onto the next iteration list - while(!isnull(item_cleanup_list) && item_cleanup_list.len > 0) - addToListNoDupe(items_to_clean_up, item_cleanup_list[item_cleanup_list.len]) - item_cleanup_list -= item_cleanup_list[item_cleanup_list.len] + while(!isnull(GLOB.item_cleanup_list) && length(GLOB.item_cleanup_list) > 0) + addToListNoDupe(items_to_clean_up, GLOB.item_cleanup_list[length(GLOB.item_cleanup_list)]) + GLOB.item_cleanup_list -= GLOB.item_cleanup_list[length(GLOB.item_cleanup_list)] log_debug("item_cleanup deleted [deleted] garbage out of total [total_items]") @@ -57,9 +57,9 @@ SUBSYSTEM_DEF(item_cleanup) qdel(o) /proc/add_to_garbage(atom/a) - addToListNoDupe(item_cleanup_list, a) + addToListNoDupe(GLOB.item_cleanup_list, a) /proc/remove_from_garbage(atom/a) - item_cleanup_list -= a + GLOB.item_cleanup_list -= a if(SSitem_cleanup) SSitem_cleanup.items_to_clean_up -= a diff --git a/code/controllers/subsystem/lighting.dm b/code/controllers/subsystem/lighting.dm index 3c3d14468b..f8c6b14e6b 100644 --- a/code/controllers/subsystem/lighting.dm +++ b/code/controllers/subsystem/lighting.dm @@ -27,7 +27,7 @@ SUBSYSTEM_DEF(lighting) /datum/controller/subsystem/lighting/stat_entry() - . = ..("ShCalcs:[total_shadow_calculations]|SourcQ:[static_sources_queue.len]|CcornQ:[corners_queue.len]|ObjQ:[objects_queue.len]|HybrQ:[mask_queue.len]") + . = ..("ShCalcs:[total_shadow_calculations]|SourcQ:[length(static_sources_queue)]|CcornQ:[length(corners_queue)]|ObjQ:[length(objects_queue)]|HybrQ:[length(mask_queue)]") /datum/controller/subsystem/lighting/fire(resumed, init_tick_checks) MC_SPLIT_TICK_INIT(3) diff --git a/code/controllers/subsystem/machinery.dm b/code/controllers/subsystem/machinery.dm index 7f86689874..a286061527 100644 --- a/code/controllers/subsystem/machinery.dm +++ b/code/controllers/subsystem/machinery.dm @@ -1,8 +1,8 @@ -var/list/machines = list() -var/list/processing_machines = list() +GLOBAL_LIST_EMPTY(machines) +GLOBAL_LIST_EMPTY(processing_machines) -var/list/datum/powernet/powernets = list() //Holds all powernet datums in use or pooled -var/list/datum/powernet/powernets_by_name = list() //Holds all powernet datums in use or pooled +GLOBAL_LIST_EMPTY(powernets) //Holds all powernet datums in use or pooled +GLOBAL_LIST_EMPTY(powernets_by_name) //Holds all powernet datums in use or pooled SUBSYSTEM_DEF(machinery) @@ -19,15 +19,15 @@ SUBSYSTEM_DEF(machinery) return SS_INIT_SUCCESS /datum/controller/subsystem/machinery/stat_entry(msg) - msg = "M:[global.processing_machines.len]" + msg = "M:[length(GLOB.processing_machines)]" return ..() /datum/controller/subsystem/machinery/fire(resumed = FALSE) if (!resumed) - currentrunmachines = processing_machines.Copy() + currentrunmachines = GLOB.processing_machines.Copy() - while (currentrunmachines.len) - var/obj/structure/machinery/M = currentrunmachines[currentrunmachines.len] + while (length(currentrunmachines)) + var/obj/structure/machinery/M = currentrunmachines[length(currentrunmachines)] currentrunmachines.len-- if (!M || QDELETED(M)) diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index be6709f08c..870e863bbd 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -37,6 +37,9 @@ SUBSYSTEM_DEF(mapping) /// list of traits and their associated z leves var/list/z_trait_levels = list() + /// list of lazy templates that have been loaded + var/list/loaded_lazy_templates + //dlete dis once #39770 is resolved /datum/controller/subsystem/mapping/proc/HACK_LoadMapConfig() if(!configs) @@ -65,6 +68,11 @@ SUBSYSTEM_DEF(mapping) initialize_reserved_level(base_transit.z_value) repopulate_sorted_areas() + if(configs[GROUND_MAP]) + send2chat(new /datum/tgs_message_content("<@&[CONFIG_GET(string/new_round_alert_role_id)]> Round restarted! Map is [configs[GROUND_MAP].map_name]"), CONFIG_GET(string/new_round_alert_channel)) + else + send2chat(new /datum/tgs_message_content("<@&[CONFIG_GET(string/new_round_alert_role_id)]> Round started!"), CONFIG_GET(string/new_round_alert_channel)) + return SS_INIT_SUCCESS /datum/controller/subsystem/mapping/fire(resumed) @@ -153,11 +161,11 @@ SUBSYSTEM_DEF(mapping) if (!length(traits)) // null or empty - default for (var/i in 1 to total_z) traits += list(default_traits) - else if (total_z != traits.len) // mismatch - INIT_ANNOUNCE("WARNING: [traits.len] trait sets specified for [total_z] z-levels in [path]!") - if (total_z < traits.len) // ignore extra traits + else if (total_z != length(traits)) // mismatch + INIT_ANNOUNCE("WARNING: [length(traits)] trait sets specified for [total_z] z-levels in [path]!") + if (total_z < length(traits)) // ignore extra traits traits.Cut(total_z + 1) - while (total_z > traits.len) // fall back to defaults on extra levels + while (total_z > length(traits)) // fall back to defaults on extra levels traits += list(default_traits) // preload the relevant space_level datums @@ -179,9 +187,9 @@ SUBSYSTEM_DEF(mapping) var/x_offset = 1 var/y_offset = 1 if(bounds && world.maxx > bounds[MAP_MAXX]) - x_offset = round(world.maxx / 2 - bounds[MAP_MAXX] / 2) + 1 + x_offset = floor(world.maxx / 2 - bounds[MAP_MAXX] / 2) + 1 if(bounds && world.maxy > bounds[MAP_MAXY]) - y_offset = round(world.maxy / 2 - bounds[MAP_MAXY] / 2) + 1 + y_offset = floor(world.maxy / 2 - bounds[MAP_MAXY] / 2) + 1 if (!pm.load(x_offset, y_offset, start_z + parsed_maps[pm], no_changeturf = TRUE, new_z = TRUE)) errorList |= pm.original_path // CM Snowflake for Mass Screenshot dimensions auto detection @@ -229,8 +237,8 @@ SUBSYSTEM_DEF(mapping) if(LAZYLEN(FailedZs)) //but seriously, unless the server's filesystem is messed up this will never happen var/msg = "RED ALERT! The following map files failed to load: [FailedZs[1]]" - if(FailedZs.len > 1) - for(var/I in 2 to FailedZs.len) + if(length(FailedZs) > 1) + for(var/I in 2 to length(FailedZs)) msg += ", [FailedZs[I]]" msg += ". Yell at your server host!" INIT_ANNOUNCE(msg) @@ -269,7 +277,7 @@ SUBSYSTEM_DEF(mapping) . = list() var/list/Lines = file2list(filename) - if(!Lines.len) + if(!length(Lines)) return for (var/t in Lines) if (!t) @@ -356,9 +364,7 @@ SUBSYSTEM_DEF(mapping) if(!level_trait(z,ZTRAIT_RESERVED)) clearing_reserved_turfs = FALSE CRASH("Invalid z level prepared for reservations.") - var/turf/A = get_turf(locate(SHUTTLE_TRANSIT_BORDER,SHUTTLE_TRANSIT_BORDER,z)) - var/turf/B = get_turf(locate(world.maxx - SHUTTLE_TRANSIT_BORDER,world.maxy - SHUTTLE_TRANSIT_BORDER,z)) - var/block = block(A, B) + var/block = block(SHUTTLE_TRANSIT_BORDER, SHUTTLE_TRANSIT_BORDER, z, world.maxx - SHUTTLE_TRANSIT_BORDER, world.maxy - SHUTTLE_TRANSIT_BORDER, z) for(var/turf/T as anything in block) // No need to empty() these, because they just got created and are already /turf/open/space/basic. T.turf_flags = UNUSED_RESERVATION_TURF @@ -420,6 +426,31 @@ SUBSYSTEM_DEF(mapping) return MAIN_SHIP_DEFAULT_NAME return MC.map_name +/datum/controller/subsystem/mapping/proc/lazy_load_template(datum/lazy_template/template_to_load, force = FALSE) + RETURN_TYPE(/datum/turf_reservation) + + UNTIL(initialized) + var/static/lazy_loading = FALSE + UNTIL(!lazy_loading) + + lazy_loading = TRUE + . = _lazy_load_template(template_to_load, force) + lazy_loading = FALSE + return . + +/datum/controller/subsystem/mapping/proc/_lazy_load_template(datum/lazy_template/template_to_load, force = FALSE) + PRIVATE_PROC(TRUE) + + if(LAZYACCESS(loaded_lazy_templates, template_to_load) && !force) + var/datum/lazy_template/template = GLOB.lazy_templates[template_to_load] + return template.reservations[1] + LAZYSET(loaded_lazy_templates, template_to_load, TRUE) + + var/datum/lazy_template/target = GLOB.lazy_templates[template_to_load] + if(!target) + CRASH("Attempted to lazy load a template key that does not exist: '[template_to_load]'") + return target.lazy_load() + /datum/controller/subsystem/mapping/proc/get_main_ship_platoon() if(!configs) return MAIN_SHIP_DEFAULT_PLATOON diff --git a/code/controllers/subsystem/minimap.dm b/code/controllers/subsystem/minimap.dm index a26d024b17..a09bf8df50 100644 --- a/code/controllers/subsystem/minimap.dm +++ b/code/controllers/subsystem/minimap.dm @@ -1,3 +1,6 @@ +#define CANVAS_COOLDOWN_TIME 4 MINUTES +#define FLATTEN_MAP_COOLDOWN_TIME 3 MINUTES + /** * # Minimaps subsystem * @@ -85,8 +88,8 @@ SUBSYSTEM_DEF(minimaps) else if(yval < smallest_y) smallest_y = yval - minimaps_by_z["[level]"].x_offset = FLOOR((SCREEN_PIXEL_SIZE-largest_x-smallest_x) / MINIMAP_SCALE, 1) - minimaps_by_z["[level]"].y_offset = FLOOR((SCREEN_PIXEL_SIZE-largest_y-smallest_y) / MINIMAP_SCALE, 1) + minimaps_by_z["[level]"].x_offset = floor((SCREEN_PIXEL_SIZE-largest_x-smallest_x) / MINIMAP_SCALE) + minimaps_by_z["[level]"].y_offset = floor((SCREEN_PIXEL_SIZE-largest_y-smallest_y) / MINIMAP_SCALE) icon_gen.Shift(EAST, minimaps_by_z["[level]"].x_offset) icon_gen.Shift(NORTH, minimaps_by_z["[level]"].y_offset) @@ -179,7 +182,7 @@ SUBSYSTEM_DEF(minimaps) * the raw lists are to speed up the Fire() of the subsystem so we dont have to filter through * WARNING! * There is a byond bug: http://www.byond.com/forum/post/2661309 - * That that forces us to use a seperate list ref when accessing the lists of this datum + * That that forces us to use a separate list ref when accessing the lists of this datum * Yea it hurts me too */ /datum/hud_displays @@ -474,11 +477,11 @@ SUBSYSTEM_DEF(minimaps) if(faction in FACTION_LIST_HUMANOID) if(!COOLDOWN_FINISHED(GLOB, uscm_flatten_map_icon_cooldown)) return FALSE - COOLDOWN_START(GLOB, uscm_flatten_map_icon_cooldown, flatten_map_cooldown_time) + COOLDOWN_START(GLOB, uscm_flatten_map_icon_cooldown, FLATTEN_MAP_COOLDOWN_TIME) else if(faction == XENO_HIVE_NORMAL) if(!COOLDOWN_FINISHED(GLOB, xeno_flatten_map_icon_cooldown)) return FALSE - COOLDOWN_START(GLOB, xeno_flatten_map_icon_cooldown, flatten_map_cooldown_time) + COOLDOWN_START(GLOB, xeno_flatten_map_icon_cooldown, FLATTEN_MAP_COOLDOWN_TIME) else return FALSE @@ -536,6 +539,8 @@ SUBSYSTEM_DEF(minimaps) qdel(svg_store_overlay) debug_log("SVG coordinates for [faction] are not implemented!") +#define can_draw(faction, user) ((faction == FACTION_MARINE && skillcheck(user, SKILL_LEADERSHIP, SKILL_LEAD_EXPERT)) || (faction == XENO_HIVE_NORMAL && isqueen(user))) + /datum/controller/subsystem/minimaps/proc/fetch_tacmap_datum(zlevel, flags) var/hash = "[zlevel]-[flags]" if(hashed_tacmaps[hash]) @@ -616,6 +621,8 @@ SUBSYSTEM_DEF(minimaps) owner?.client?.remove_from_screen(map) minimap_displayed = FALSE + UnregisterSignal(target, COMSIG_MOVABLE_Z_CHANGED) + /** * Updates the map when the owner changes zlevel */ @@ -661,9 +668,6 @@ SUBSYSTEM_DEF(minimaps) var/toolbar_color_selection = "black" var/toolbar_updated_selection = "black" - var/canvas_cooldown_time = 4 MINUTES - var/flatten_map_cooldown_time = 3 MINUTES - /// boolean value to keep track if the canvas has been updated or not, the value is used in tgui state. var/updated_canvas = FALSE /// current flattend map @@ -726,6 +730,11 @@ SUBSYSTEM_DEF(minimaps) if(faction == FACTION_NEUTRAL && isobserver(user)) faction = allowed_flags == MINIMAP_FLAG_XENO ? XENO_HIVE_NORMAL : FACTION_MARINE + if(is_xeno && xeno.hive.see_humans_on_tacmap && targeted_ztrait != ZTRAIT_MARINE_MAIN_SHIP) + allowed_flags |= MINIMAP_FLAG_USCM|MINIMAP_FLAG_PMC|MINIMAP_FLAG_UPP|MINIMAP_FLAG_CLF + targeted_ztrait = ZTRAIT_MARINE_MAIN_SHIP + map_holder = null + new_current_map = get_unannounced_tacmap_data_png(faction) old_map = get_tacmap_data_png(faction) current_svg = get_tacmap_data_svg(faction) @@ -778,7 +787,6 @@ SUBSYSTEM_DEF(minimaps) else data["canvasCooldown"] = max(GLOB.uscm_canvas_cooldown - world.time, 0) - data["nextCanvasTime"] = canvas_cooldown_time data["updatedCanvas"] = updated_canvas data["lastUpdateTime"] = last_update_time @@ -788,17 +796,19 @@ SUBSYSTEM_DEF(minimaps) /datum/tacmap/ui_static_data(mob/user) var/list/data = list() + data["mapRef"] = map_holder?.map_ref data["canDraw"] = FALSE data["canViewTacmap"] = TRUE data["canViewCanvas"] = FALSE - data["isXeno"] = FALSE + data["isxeno"] = FALSE return data /datum/tacmap/drawing/ui_static_data(mob/user) var/list/data = list() + data["canvasCooldownDuration"] = CANVAS_COOLDOWN_TIME data["mapRef"] = map_holder?.map_ref data["canDraw"] = FALSE data["mapFallback"] = wiki_map_fallback @@ -807,11 +817,11 @@ SUBSYSTEM_DEF(minimaps) var/is_xeno = istype(xeno) var/faction = is_xeno ? xeno.hivenumber : user.faction - data["isXeno"] = is_xeno + data["isxeno"] = is_xeno data["canViewTacmap"] = is_xeno data["canViewCanvas"] = (faction in FACTION_LIST_HUMANOID) || faction == XENO_HIVE_NORMAL - if(skillcheck(user, SKILL_LEADERSHIP, SKILL_LEAD_EXPERT) || faction == XENO_HIVE_NORMAL && isqueen(user)) + if(can_draw(faction, user)) data["canDraw"] = TRUE data["canViewTacmap"] = TRUE @@ -819,21 +829,25 @@ SUBSYSTEM_DEF(minimaps) /datum/tacmap/drawing/status_tab_view/ui_static_data(mob/user) var/list/data = list() + + data["canvasCooldownDuration"] = CANVAS_COOLDOWN_TIME data["mapFallback"] = wiki_map_fallback data["canDraw"] = FALSE data["canViewTacmap"] = FALSE data["canViewCanvas"] = TRUE - data["isXeno"] = FALSE + data["isxeno"] = FALSE return data /datum/tacmap/drawing/status_tab_view/xeno/ui_static_data(mob/user) var/list/data = list() + + data["canvasCooldownDuration"] = CANVAS_COOLDOWN_TIME data["mapFallback"] = wiki_map_fallback data["canDraw"] = FALSE data["canViewTacmap"] = FALSE data["canViewCanvas"] = TRUE - data["isXeno"] = TRUE + data["isxeno"] = TRUE return data @@ -855,16 +869,21 @@ SUBSYSTEM_DEF(minimaps) var/mob/user = ui.user var/mob/living/carbon/xenomorph/xeno = user var/faction = istype(xeno) ? xeno.hivenumber : user.faction - if(faction == FACTION_NEUTRAL && isobserver(user)) + var/is_observer = isobserver(user) + if(faction == FACTION_NEUTRAL && is_observer) faction = allowed_flags == MINIMAP_FLAG_XENO ? XENO_HIVE_NORMAL : FACTION_MARINE + var/drawing_allowed = !is_observer && can_draw(faction, user) switch (action) if ("menuSelect") - if(params["selection"] != "new canvas") + if(params["selection"] != "Canvas") if(updated_canvas) updated_canvas = FALSE toolbar_updated_selection = toolbar_color_selection // doing this if it == canvas can cause a latency issue with the stroke. else + if(!drawing_allowed) + msg_admin_niche("[key_name(user)] made an unauthorized attempt to 'menuSelect' the 'new canvas' panel of the [faction] tacmap!") + return FALSE distribute_current_map_png(faction) last_update_time = world.time // An attempt to get the image to load on first try in the interface, but doesn't seem always reliable @@ -873,60 +892,68 @@ SUBSYSTEM_DEF(minimaps) old_map = get_tacmap_data_png(faction) current_svg = get_tacmap_data_svg(faction) - if ("updateCanvas") - // forces state change, this will export the svg. + if("updateCanvas") toolbar_updated_selection = "export" updated_canvas = TRUE action_queue_change += 1 - if ("clearCanvas") + if("clearCanvas") toolbar_updated_selection = "clear" updated_canvas = FALSE action_queue_change += 1 - if ("undoChange") + if("undoChange") toolbar_updated_selection = "undo" updated_canvas = FALSE action_queue_change += 1 - if ("selectColor") + if("selectColor") var/newColor = params["color"] if(newColor) toolbar_color_selection = newColor toolbar_updated_selection = newColor action_queue_change += 1 - if ("onDraw") + if("onDraw") updated_canvas = FALSE - if ("selectAnnouncement") + if("selectAnnouncement") + if(!drawing_allowed) + msg_admin_niche("[key_name(user)] made an unauthorized attempt to 'selectAnnouncement' the [faction] tacmap!") + return FALSE + if(!istype(params["image"], /list)) // potentially very serious? return FALSE + var/cooldown_satisfied = FALSE if(faction in FACTION_LIST_HUMANOID) - GLOB.uscm_flat_tacmap_data += new_current_map + cooldown_satisfied = COOLDOWN_FINISHED(GLOB, uscm_canvas_cooldown) else if(faction == XENO_HIVE_NORMAL) - GLOB.xeno_flat_tacmap_data += new_current_map - - store_current_svg_coords(faction, params["image"], user) - current_svg = get_tacmap_data_svg(faction) - old_map = get_tacmap_data_png(faction) + cooldown_satisfied = COOLDOWN_FINISHED(GLOB, xeno_canvas_cooldown) + if(!cooldown_satisfied) + msg_admin_niche("[key_name(user)] attempted to 'selectAnnouncement' the [faction] tacmap while it is still on cooldown!") + return FALSE if(faction in FACTION_LIST_HUMANOID ) - COOLDOWN_START(GLOB, uscm_canvas_cooldown, canvas_cooldown_time) - var/mob/living/carbon/human/human_leader = user - for(var/datum/squad/current_squad in RoleAuthority.squads) + GLOB.uscm_flat_tacmap_data += new_current_map + COOLDOWN_START(GLOB, uscm_canvas_cooldown, CANVAS_COOLDOWN_TIME) + for(var/datum/squad/current_squad in GLOB.RoleAuthority.squads) current_squad.send_maptext("Tactical map update in progress...", "Tactical Map:") + var/mob/living/carbon/human/human_leader = user human_leader.visible_message(SPAN_BOLDNOTICE("Tactical map update in progress...")) - playsound_client(human_leader.client, "sound/effects/sos-morse-code.ogg") - notify_ghosts(header = "Tactical Map", message = "The [faction] tactical map has been updated.", ghost_sound = "sound/effects/sos-morse-code.ogg", notify_volume = 80, action = NOTIFY_USCM_TACMAP, enter_link = "uscm_tacmap=1", enter_text = "View", source = owner) - + playsound_client(human_leader.client, "sound/effects/data-transmission.ogg") + notify_ghosts(header = "Tactical Map", message = "The [faction] tactical map has been updated.", ghost_sound = "sound/effects/data-transmission.ogg", notify_volume = 80, action = NOTIFY_USCM_TACMAP, enter_link = "uscm_tacmap=1", enter_text = "View", source = owner) else if(faction == XENO_HIVE_NORMAL) + GLOB.xeno_flat_tacmap_data += new_current_map + COOLDOWN_START(GLOB, xeno_canvas_cooldown, CANVAS_COOLDOWN_TIME) + xeno_maptext("The Queen has updated our hive mind map", "We sense something unusual...", faction) var/mutable_appearance/appearance = mutable_appearance(icon('icons/mob/hud/actions_xeno.dmi'), "toggle_queen_zoom") - COOLDOWN_START(GLOB, xeno_canvas_cooldown, canvas_cooldown_time) - xeno_maptext("The Queen has updated your hive mind map", "You sense something unusual...", faction) notify_ghosts(header = "Tactical Map", message = "The Xenomorph tactical map has been updated.", ghost_sound = "sound/voice/alien_distantroar_3.ogg", notify_volume = 50, action = NOTIFY_XENO_TACMAP, enter_link = "xeno_tacmap=1", enter_text = "View", source = user, alert_overlay = appearance) + store_current_svg_coords(faction, params["image"], user) + current_svg = get_tacmap_data_svg(faction) + old_map = get_tacmap_data_png(faction) + toolbar_updated_selection = toolbar_color_selection message_admins("[key_name(user)] has updated the tactical map for [faction].") updated_canvas = FALSE @@ -1041,3 +1068,7 @@ SUBSYSTEM_DEF(minimaps) if(XENO_HIVE_RENEGADE) return MINIMAP_FLAG_XENO_RENEGADE return 0 + +#undef CANVAS_COOLDOWN_TIME +#undef FLATTEN_MAP_COOLDOWN_TIME +#undef can_draw diff --git a/code/controllers/subsystem/mob.dm b/code/controllers/subsystem/mob.dm index 60e7476da8..3596b17e5d 100644 --- a/code/controllers/subsystem/mob.dm +++ b/code/controllers/subsystem/mob.dm @@ -8,7 +8,7 @@ SUBSYSTEM_DEF(mob) var/list/living_misc_mobs = list() /datum/controller/subsystem/mob/stat_entry(msg) - msg = "P:[living_misc_mobs.len]" + msg = "P:[length(living_misc_mobs)]" return ..() @@ -16,8 +16,8 @@ SUBSYSTEM_DEF(mob) if (!resumed) currentrun = living_misc_mobs.Copy() - while (currentrun.len) - var/mob/living/M = currentrun[currentrun.len] + while (length(currentrun)) + var/mob/living/M = currentrun[length(currentrun)] currentrun.len-- if (!M || QDELETED(M)) diff --git a/code/controllers/subsystem/nanoui.dm b/code/controllers/subsystem/nanoui.dm index 1f33227a7f..b0117016e3 100644 --- a/code/controllers/subsystem/nanoui.dm +++ b/code/controllers/subsystem/nanoui.dm @@ -5,17 +5,23 @@ SUBSYSTEM_DEF(nano) priority = SS_PRIORITY_NANOUI runlevels = RUNLEVELS_DEFAULT|RUNLEVEL_LOBBY var/list/currentrun = list() + var/datum/nanomanager/nanomanager + +/datum/controller/subsystem/nano/New() + . = ..() + + nanomanager = new() /datum/controller/subsystem/nano/stat_entry(msg) - msg = "P:[nanomanager.processing_uis.len]" + msg = "P:[length(nanomanager.processing_uis)]" return ..() /datum/controller/subsystem/nano/fire(resumed = FALSE) if (!resumed) currentrun = nanomanager.processing_uis.Copy() - while (currentrun.len) - var/datum/nanoui/UI = currentrun[currentrun.len] + while (length(currentrun)) + var/datum/nanoui/UI = currentrun[length(currentrun)] currentrun.len-- if (!UI || QDELETED(UI)) diff --git a/code/controllers/subsystem/objectives_controller.dm b/code/controllers/subsystem/objectives_controller.dm index d0bf2ca0cd..00493b11c6 100644 --- a/code/controllers/subsystem/objectives_controller.dm +++ b/code/controllers/subsystem/objectives_controller.dm @@ -97,6 +97,7 @@ SUBSYSTEM_DEF(objectives) ai_silent_announcement(message, ":v", TRUE) ai_silent_announcement(message, ":t", TRUE) + log_ares_tech(MAIN_AI_SYSTEM, FALSE, "TECH REPORT", "[round(tree.points, 0.1)] points available.", 0) tree.total_points_last_sitrep = tree.total_points next_sitrep = world.time + SITREP_INTERVAL diff --git a/code/controllers/subsystem/pathfinding.dm b/code/controllers/subsystem/pathfinding.dm index 05301a4191..bf7d6ed1d9 100644 --- a/code/controllers/subsystem/pathfinding.dm +++ b/code/controllers/subsystem/pathfinding.dm @@ -42,7 +42,7 @@ SUBSYSTEM_DEF(xeno_pathfinding) if(current_run.current_node == target) break - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) var/turf/neighbor = get_step(current_run.current_node, direction) var/distance_between = distances[current_run.current_node] * DISTANCE_PENALTY if(isnull(distances[neighbor])) diff --git a/code/controllers/subsystem/perf_logging.dm b/code/controllers/subsystem/perf_logging.dm index 5ca98ad10d..4a3066b758 100644 --- a/code/controllers/subsystem/perf_logging.dm +++ b/code/controllers/subsystem/perf_logging.dm @@ -26,8 +26,8 @@ SUBSYSTEM_DEF(perf_logging) if(SS?.cost > 0.1) currentrun += SS - while(currentrun.len) - var/datum/controller/subsystem/SS = currentrun[currentrun.len] + while(length(currentrun)) + var/datum/controller/subsystem/SS = currentrun[length(currentrun)] currentrun.len-- var/datum/entity/mc_controller/C = controller_assoc[SS.type] new_record(SS, C) diff --git a/code/controllers/subsystem/ping.dm b/code/controllers/subsystem/ping.dm index c813081ed5..5d413c1286 100644 --- a/code/controllers/subsystem/ping.dm +++ b/code/controllers/subsystem/ping.dm @@ -14,7 +14,7 @@ SUBSYSTEM_DEF(ping) var/list/currentrun = list() /datum/controller/subsystem/ping/stat_entry() - ..("P:[GLOB.clients.len]") + ..("P:[length(GLOB.clients)]") /datum/controller/subsystem/ping/fire(resumed = FALSE) // Prepare the new batch of clients @@ -24,8 +24,8 @@ SUBSYSTEM_DEF(ping) // De-reference the list for sanic speeds var/list/currentrun = src.currentrun - while (currentrun.len) - var/client/client = currentrun[currentrun.len] + while (length(currentrun)) + var/client/client = currentrun[length(currentrun)] currentrun.len-- if (client?.tgui_panel?.is_ready()) diff --git a/code/controllers/subsystem/playtime.dm b/code/controllers/subsystem/playtime.dm index 7a6d3b97a0..6813c4fabd 100644 --- a/code/controllers/subsystem/playtime.dm +++ b/code/controllers/subsystem/playtime.dm @@ -12,8 +12,8 @@ SUBSYSTEM_DEF(playtime) var/list/currentrun = src.currentrun - while (currentrun.len) - var/client/C = currentrun[currentrun.len] + while (length(currentrun)) + var/client/C = currentrun[length(currentrun)] currentrun.len-- var/mob/M = C.mob diff --git a/code/controllers/subsystem/police_clues.dm b/code/controllers/subsystem/police_clues.dm index 134eae9bca..0d39c72c87 100644 --- a/code/controllers/subsystem/police_clues.dm +++ b/code/controllers/subsystem/police_clues.dm @@ -8,15 +8,15 @@ SUBSYSTEM_DEF(clues) var/list/prints_list = list() /datum/controller/subsystem/clues/stat_entry(msg) - msg = "P:[prints_list.len]" + msg = "P:[length(prints_list)]" return ..() /datum/controller/subsystem/clues/fire(resumed = FALSE) if(!resumed && length(prints_list)) currentrun = prints_list.Copy() - while(currentrun.len) - var/obj/effect/decal/prints/P = currentrun[currentrun.len] + while(length(currentrun)) + var/obj/effect/decal/prints/P = currentrun[length(currentrun)] currentrun.len-- if(!P || QDELETED(P)) diff --git a/code/controllers/subsystem/power.dm b/code/controllers/subsystem/power.dm index 16f4f2ab61..08668e5fc5 100644 --- a/code/controllers/subsystem/power.dm +++ b/code/controllers/subsystem/power.dm @@ -1,4 +1,4 @@ -var/list/power_machines = list() +GLOBAL_LIST_EMPTY(power_machines) SUBSYSTEM_DEF(power) name = "Power" @@ -12,7 +12,7 @@ SUBSYSTEM_DEF(power) var/list/currentrun_areas = list() /datum/controller/subsystem/power/stat_entry(msg) - msg = "PN:[powernets.len]|PM:[power_machines.len]|A:[active_areas.len]" + msg = "PN:[length(GLOB.powernets)]|PM:[length(GLOB.power_machines)]|A:[length(GLOB.active_areas)]" return ..() @@ -23,14 +23,14 @@ SUBSYSTEM_DEF(power) /datum/controller/subsystem/power/fire(resumed = FALSE) if (!resumed) - currentrun_powerents = global.powernets.Copy() - currentrun_areas = active_areas.Copy() - currentrun_power_machines = global.power_machines.Copy() + currentrun_powerents = GLOB.powernets.Copy() + currentrun_areas = GLOB.active_areas.Copy() + currentrun_power_machines = GLOB.power_machines.Copy() // First we reset the powernets. // This is done first because we want the power machinery to have acted last on the powernet between intervals. - while(currentrun_powerents.len) - var/datum/powernet/Powernet = currentrun_powerents[currentrun_powerents.len] + while(length(currentrun_powerents)) + var/datum/powernet/Powernet = currentrun_powerents[length(currentrun_powerents)] currentrun_powerents.len-- if(Powernet) Powernet.process() @@ -39,8 +39,8 @@ SUBSYSTEM_DEF(power) // Next we let the power machines operate, this way until the next tick it will be as if they have all done their work. - while (currentrun_power_machines.len) - var/datum/X = currentrun_power_machines[currentrun_power_machines.len] + while (length(currentrun_power_machines)) + var/datum/X = currentrun_power_machines[length(currentrun_power_machines)] currentrun_power_machines.len-- if (!X || QDELETED(X)) continue @@ -49,7 +49,7 @@ SUBSYSTEM_DEF(power) var/obj/structure/machinery/M = X if (M.process() == PROCESS_KILL) //M.inMachineList = FALSE - power_machines.Remove(M) + GLOB.power_machines.Remove(M) continue if (MC_TICK_CHECK) diff --git a/code/controllers/subsystem/processing/obj_tab_items.dm b/code/controllers/subsystem/processing/obj_tab_items.dm index 53786daf01..6be6bceab1 100644 --- a/code/controllers/subsystem/processing/obj_tab_items.dm +++ b/code/controllers/subsystem/processing/obj_tab_items.dm @@ -12,8 +12,8 @@ PROCESSING_SUBSYSTEM_DEF(obj_tab_items) //cache for sanic speed (lists are references anyways) var/list/current_run = currentrun - while(current_run.len) - var/datum/thing = current_run[current_run.len] + while(length(current_run)) + var/datum/thing = current_run[length(current_run)] if(QDELETED(thing)) processing -= thing else if(thing.process(wait * 0.1) == PROCESS_KILL) diff --git a/code/controllers/subsystem/processing/processing.dm b/code/controllers/subsystem/processing/processing.dm index 73a5db433d..c2736528df 100644 --- a/code/controllers/subsystem/processing/processing.dm +++ b/code/controllers/subsystem/processing/processing.dm @@ -20,8 +20,8 @@ SUBSYSTEM_DEF(processing) //cache for sanic speed (lists are references anyways) var/list/current_run = currentrun - while(current_run.len) - var/datum/thing = current_run[current_run.len] + while(length(current_run)) + var/datum/thing = current_run[length(current_run)] current_run.len-- if(QDELETED(thing)) processing -= thing diff --git a/code/controllers/subsystem/projectiles.dm b/code/controllers/subsystem/projectiles.dm index a23303ea28..da3b5a7b9c 100644 --- a/code/controllers/subsystem/projectiles.dm +++ b/code/controllers/subsystem/projectiles.dm @@ -28,7 +28,7 @@ SUBSYSTEM_DEF(projectiles) */ /datum/controller/subsystem/projectiles/stat_entry(msg) - msg = " | #Proj: [projectiles.len]" + msg = " | #Proj: [length(projectiles)]" return ..() /datum/controller/subsystem/projectiles/Initialize(start_timeofday) @@ -41,8 +41,8 @@ SUBSYSTEM_DEF(projectiles) if(!resumed) flying = projectiles.Copy() flying -= sleepers - while(flying.len) - var/obj/projectile/projectile = flying[flying.len] + while(length(flying)) + var/obj/projectile/projectile = flying[length(flying)] flying.len-- var/delta_time = wait * world.tick_lag * (1 SECONDS) handle_projectile_flight(projectile, delta_time) diff --git a/code/controllers/subsystem/quadtrees.dm b/code/controllers/subsystem/quadtrees.dm index 72dd0a1177..6846c80bd2 100644 --- a/code/controllers/subsystem/quadtrees.dm +++ b/code/controllers/subsystem/quadtrees.dm @@ -24,17 +24,17 @@ SUBSYSTEM_DEF(quadtree) if(!resumed) player_feed = GLOB.mob_list.Copy() cur_quadtrees = new_quadtrees.Copy() - if(new_quadtrees.len < world.maxz) + if(length(new_quadtrees) < world.maxz) new_quadtrees.len = world.maxz for(var/i in 1 to world.maxz) new_quadtrees[i] = QTREE(RECT(world.maxx/2,world.maxy/2, world.maxx, world.maxy), i) while(length(player_feed)) - var/mob/mob_found = player_feed[player_feed.len] + var/mob/mob_found = player_feed[length(player_feed)] player_feed.len-- if(!mob_found) continue var/turf/T = get_turf(mob_found) - if(!T?.z || new_quadtrees.len < T.z) + if(!T?.z || length(new_quadtrees) < T.z) continue var/datum/coords/qtplayer/p_coords = new p_coords.player = mob_found @@ -52,7 +52,7 @@ SUBSYSTEM_DEF(quadtree) var/list/players = list() if(!cur_quadtrees) return players - if(z_level && cur_quadtrees.len >= z_level) + if(z_level && length(cur_quadtrees) >= z_level) var/datum/quadtree/Q = cur_quadtrees[z_level] if(!Q) return players diff --git a/code/controllers/subsystem/reagents.dm b/code/controllers/subsystem/reagents.dm index 5a310801b1..1874795093 100644 --- a/code/controllers/subsystem/reagents.dm +++ b/code/controllers/subsystem/reagents.dm @@ -17,33 +17,33 @@ SUBSYSTEM_DEF(reagents) /datum/controller/subsystem/reagents/proc/prepare_properties() //Chemical Properties - Initialises all /datum/chem_property into a list indexed by property name var/paths = typesof(/datum/chem_property) - chemical_properties_list = list() + GLOB.chemical_properties_list = list() //Some filters - chemical_properties_list["negative"] = list() - chemical_properties_list["neutral"] = list() - chemical_properties_list["positive"] = list() - chemical_properties_list["rare"] = list() + GLOB.chemical_properties_list["negative"] = list() + GLOB.chemical_properties_list["neutral"] = list() + GLOB.chemical_properties_list["positive"] = list() + GLOB.chemical_properties_list["rare"] = list() //Save for(var/path in paths) var/datum/chem_property/prop = new path() if(!prop.name) continue - chemical_properties_list[prop.name] = prop + GLOB.chemical_properties_list[prop.name] = prop if(prop.starter) //Add a separate instance to the chemical property database var/datum/chem_property/chem = new path() chem.level = 0 - chemical_data.research_property_data += chem + GLOB.chemical_data.research_property_data += chem if(prop.rarity > PROPERTY_DISABLED) //Filters for the generator picking properties if(prop.rarity == PROPERTY_RARE || prop.rarity == PROPERTY_LEGENDARY) - chemical_properties_list["rare"][prop.name] = prop + GLOB.chemical_properties_list["rare"][prop.name] = prop else if(isNegativeProperty(prop)) - chemical_properties_list["negative"][prop.name] = prop + GLOB.chemical_properties_list["negative"][prop.name] = prop else if(isNeutralProperty(prop)) - chemical_properties_list["neutral"][prop.name] = prop + GLOB.chemical_properties_list["neutral"][prop.name] = prop else if(isPositiveProperty(prop)) - chemical_properties_list["positive"][prop.name] = prop + GLOB.chemical_properties_list["positive"][prop.name] = prop /datum/controller/subsystem/reagents/proc/prepare_reagents() //I dislike having these here but map-objects are initialised before world/New() is called. >_> @@ -51,11 +51,11 @@ SUBSYSTEM_DEF(reagents) //Chemical Reagents - Initialises all /datum/reagent into a list indexed by reagent id //Generated chemicals should be initialized last, hence the substract then readd. var/list/paths = subtypesof(/datum/reagent) - typesof(/datum/reagent/generated) - subtypesof(/datum/reagent/generated) + subtypesof(/datum/reagent/generated) - chemical_reagents_list = list() + GLOB.chemical_reagents_list = list() for(var/path in paths) var/datum/reagent/chem = new path() chem.save_chemclass() - chemical_reagents_list[chem.id] = chem + GLOB.chemical_reagents_list[chem.id] = chem //Chemical Reactions - Initialises all /datum/chemical_reaction into a list // It is filtered into multiple lists within a list. @@ -63,11 +63,11 @@ SUBSYSTEM_DEF(reagents) // chemical_reaction_list["phoron"] is a list of all reactions relating to phoron var/list/regular_paths = subtypesof(/datum/chemical_reaction) - typesof(/datum/chemical_reaction/generated) var/list/generated_paths = subtypesof(/datum/chemical_reaction/generated) //Generated chemicals should be initialized last - chemical_reactions_filtered_list = list() - chemical_reactions_list = list() + GLOB.chemical_reactions_filtered_list = list() + GLOB.chemical_reactions_list = list() for(paths in list(regular_paths, generated_paths)) for(var/path in paths) var/datum/chemical_reaction/react = new path() - chemical_reactions_list[react.id] = react + GLOB.chemical_reactions_list[react.id] = react react.add_to_filtered_list() diff --git a/code/controllers/subsystem/round_recording.dm b/code/controllers/subsystem/round_recording.dm index f1244d386d..e45854ac57 100644 --- a/code/controllers/subsystem/round_recording.dm +++ b/code/controllers/subsystem/round_recording.dm @@ -35,8 +35,8 @@ SUBSYSTEM_DEF(round_recording) return currentrun = recorder.tracked_players.Copy() - while(currentrun.len) - var/mob/M = currentrun[currentrun.len] + while(length(currentrun)) + var/mob/M = currentrun[length(currentrun)] currentrun.len-- // Try to stop the tracking diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm index 972f61aa53..2da87df909 100644 --- a/code/controllers/subsystem/shuttle.dm +++ b/code/controllers/subsystem/shuttle.dm @@ -1,11 +1,11 @@ -var/global/datum/controller/shuttle_controller/shuttle_controller - SUBSYSTEM_DEF(oldshuttle) name = "Old Shuttle" wait = 5.5 SECONDS init_order = SS_INIT_SHUTTLE priority = SS_PRIORITY_SHUTTLE + var/datum/controller/shuttle_controller/shuttle_controller + /datum/controller/subsystem/oldshuttle/Initialize() if(GLOB.perf_flags & PERF_TOGGLE_SHUTTLES) can_fire = FALSE diff --git a/code/controllers/subsystem/shuttles.dm b/code/controllers/subsystem/shuttles.dm index 0348eddd99..d400e02f3b 100644 --- a/code/controllers/subsystem/shuttles.dm +++ b/code/controllers/subsystem/shuttles.dm @@ -94,7 +94,7 @@ SUBSYSTEM_DEF(shuttle) qdel(T, force=TRUE) if(!SSmapping.clearing_reserved_turfs) - while(transit_requesters.len) + while(length(transit_requesters)) var/requester = popleft(transit_requesters) var/success = null // Do not try and generate any transit if we're using more then our max already @@ -311,7 +311,7 @@ SUBSYSTEM_DEF(shuttle) /datum/controller/subsystem/shuttle/proc/get_containing_shuttle(atom/A) var/list/mobile_cache = mobile - for(var/i in 1 to mobile_cache.len) + for(var/i in 1 to length(mobile_cache)) var/obj/docking_port/port = mobile_cache[i] if(port.is_in_shuttle_bounds(A)) return port @@ -319,7 +319,7 @@ SUBSYSTEM_DEF(shuttle) /datum/controller/subsystem/shuttle/proc/get_containing_dock(atom/A) . = list() var/list/stationary_cache = stationary - for(var/i in 1 to stationary_cache.len) + for(var/i in 1 to length(stationary_cache)) var/obj/docking_port/port = stationary_cache[i] if(port.is_in_shuttle_bounds(A)) . += port @@ -327,7 +327,7 @@ SUBSYSTEM_DEF(shuttle) /datum/controller/subsystem/shuttle/proc/get_dock_overlap(x0, y0, x1, y1, z) . = list() var/list/stationary_cache = stationary - for(var/i in 1 to stationary_cache.len) + for(var/i in 1 to length(stationary_cache)) var/obj/docking_port/port = stationary_cache[i] if(!port || port.z != z) continue @@ -335,7 +335,7 @@ SUBSYSTEM_DEF(shuttle) var/list/overlap = get_overlap(x0, y0, x1, y1, bounds[1], bounds[2], bounds[3], bounds[4]) var/list/xs = overlap[1] var/list/ys = overlap[2] - if(xs.len && ys.len) + if(length(xs) && length(ys)) .[port] = overlap /datum/controller/subsystem/shuttle/proc/update_hidden_docking_ports(list/remove_turfs, list/add_turfs) @@ -353,7 +353,7 @@ SUBSYSTEM_DEF(shuttle) for(var/V in add_turfs) var/turf/T = V var/image/I - if(remove_images.len) + if(length(remove_images)) //we can just reuse any images we are about to delete instead of making new ones I = remove_images[1] remove_images.Cut(1, 2) diff --git a/code/controllers/subsystem/sound.dm b/code/controllers/subsystem/sound.dm index 010850dda2..3cc3f0ef80 100644 --- a/code/controllers/subsystem/sound.dm +++ b/code/controllers/subsystem/sound.dm @@ -23,7 +23,7 @@ SUBSYSTEM_DEF(sound) if(MC_TICK_CHECK) return while(length(run_hearers)) // Output sound to hearers - var/client/C = run_hearers[run_hearers.len] + var/client/C = run_hearers[length(run_hearers)] run_hearers.len-- if(C && C.soundOutput) C.soundOutput.process_sound(run_template) @@ -39,6 +39,6 @@ SUBSYSTEM_DEF(sound) for(var/datum/interior/VI in extra_interiors) if(VI?.ready) var/list/bounds = VI.get_middle_coords() - if(bounds.len >= 2) + if(length(bounds) >= 2) hearers |= SSquadtree.players_in_range(RECT(bounds[1], bounds[2], VI.map_template.width, VI.map_template.height), bounds[3]) template_queue[template] = hearers diff --git a/code/controllers/subsystem/soundscape.dm b/code/controllers/subsystem/soundscape.dm index 2219a0b35c..432166e06b 100644 --- a/code/controllers/subsystem/soundscape.dm +++ b/code/controllers/subsystem/soundscape.dm @@ -15,8 +15,8 @@ SUBSYSTEM_DEF(soundscape) if(!resumed) currentrun = GLOB.clients.Copy() - while(currentrun.len) - var/client/C = currentrun[currentrun.len] + while(length(currentrun)) + var/client/C = currentrun[length(currentrun)] currentrun.len-- if(!C || !C.soundOutput) diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm index ba07898dec..613c8df585 100644 --- a/code/controllers/subsystem/statpanel.dm +++ b/code/controllers/subsystem/statpanel.dm @@ -108,7 +108,7 @@ SUBSYSTEM_DEF(statpanels) target.stat_panel.send_message("update_stat", list( "global_data" = global_data, - //"ping_str" = "Ping: [round(target.lastping, 1)]ms (Average: [round(target.avgping, 1)]ms)", + //"ping_str" = "Ping: [floor(target.lastping, 1)]ms (Average: [floor(target.avgping, 1)]ms)", "other_str" = target.mob?.get_status_tab_items(), )) @@ -197,7 +197,7 @@ SUBSYSTEM_DEF(statpanels) /datum/controller/subsystem/statpanels/proc/generate_mc_data() mc_data = list( list("CPU:", world.cpu), - list("Instances:", "[num2text(world.contents.len, 10)]"), + list("Instances:", "[num2text(length(world.contents), 10)]"), list("World Time:", "[world.time]"), list("Globals:", GLOB.stat_entry(), "\ref[GLOB]"), list("[config]:", config.stat_entry(), "\ref[config]"), diff --git a/code/controllers/subsystem/tgui.dm b/code/controllers/subsystem/tgui.dm index 0bd0c29e45..a3ef03f3e3 100644 --- a/code/controllers/subsystem/tgui.dm +++ b/code/controllers/subsystem/tgui.dm @@ -45,8 +45,8 @@ SUBSYSTEM_DEF(tgui) 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] + while(length(current_run)) + var/datum/tgui/ui = current_run[length(current_run)] current_run.len-- // TODO: Move user/src_object check to process() if(ui?.user && ui.src_object) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 886799be34..e03398b373 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -54,6 +54,7 @@ SUBSYSTEM_DEF(ticker) var/totalPlayers = 0 //used for pregame stats on statpanel var/totalPlayersReady = 0 //used for pregame stats on statpanel + var/tutorial_disabled = FALSE /datum/controller/subsystem/ticker/Initialize(timeofday) load_mode() @@ -72,7 +73,7 @@ SUBSYSTEM_DEF(ticker) if(isnull(start_at)) start_at = time_left || world.time + (CONFIG_GET(number/lobby_countdown) * 10) to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, margin_top = 2, margin_bottom = 0, html = SPAN_ROUNDHEADER("Welcome to the pre-game lobby of [CONFIG_GET(string/servername)]!")) - to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, margin_top = 0, html = SPAN_ROUNDBODY("Please, setup your character and select ready. Game will start in [round(time_left / 10) || CONFIG_GET(number/lobby_countdown)] seconds.")) + to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, margin_top = 0, html = SPAN_ROUNDBODY("Please, setup your character and select ready. Game will start in [floor(time_left / 10) || CONFIG_GET(number/lobby_countdown)] seconds.")) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_MODE_PREGAME_LOBBY) current_state = GAME_STATE_PREGAME fire() @@ -109,9 +110,9 @@ SUBSYSTEM_DEF(ticker) if(!roundend_check_paused && mode.check_finished(force_ending) || force_ending) current_state = GAME_STATE_FINISHED - ooc_allowed = TRUE + GLOB.ooc_allowed = TRUE mode.declare_completion(force_ending) - REDIS_PUBLISH("byond.round", "type" = "round-complete") + REDIS_PUBLISH("byond.round", "type" = "round-complete", "round_name" = GLOB.round_statistics.round_name) flash_clients() Master.SetRunLevel(RUNLEVEL_POSTGAME) @@ -140,8 +141,8 @@ SUBSYSTEM_DEF(ticker) REDIS_PUBLISH("byond.round", "type" = "round-start") for(var/client/C in GLOB.admins) - remove_verb(C, roundstart_mod_verbs) - admin_verbs_minor_event -= roundstart_mod_verbs + remove_verb(C, GLOB.roundstart_mod_verbs) + GLOB.admin_verbs_minor_event -= GLOB.roundstart_mod_verbs return TRUE @@ -166,16 +167,24 @@ SUBSYSTEM_DEF(ticker) CHECK_TICK if(!mode.can_start(bypass_checks)) - to_chat(world, "Reverting to pre-game lobby.") + to_chat(world, "Requirements to start [GLOB.master_mode] not met. Reverting to pre-game lobby.") + // Make only one more attempt + if(world.time - 2 * wait > CONFIG_GET(number/lobby_countdown) SECONDS) + flash_clients() + delay_start = TRUE + to_chat(world, SPAN_CENTERBOLD("The game start has been delayed.")) + message_admins(SPAN_ADMINNOTICE("Alert: Insufficent players ready to start [GLOB.master_mode].\nEither change mode and map or start round and bypass checks.")) + else + to_chat(world, "Attempting again...") QDEL_NULL(mode) - RoleAuthority.reset_roles() + GLOB.RoleAuthority.reset_roles() return FALSE CHECK_TICK if(!mode.pre_setup() && !bypass_checks) QDEL_NULL(mode) to_chat(world, "Error in pre-setup for [GLOB.master_mode]. Reverting to pre-game lobby.") - RoleAuthority.reset_roles() + GLOB.RoleAuthority.reset_roles() return FALSE CHECK_TICK @@ -189,7 +198,7 @@ SUBSYSTEM_DEF(ticker) if(CONFIG_GET(flag/autooocmute)) - ooc_allowed = FALSE + GLOB.ooc_allowed = FALSE round_start_time = world.time @@ -208,7 +217,7 @@ SUBSYSTEM_DEF(ticker) var/roles_to_roll = null if(length(mode.roles_to_roll)) roles_to_roll = mode.roles_to_roll - RoleAuthority.setup_candidates_and_roles(roles_to_roll) //Distribute jobs + GLOB.RoleAuthority.setup_candidates_and_roles(roles_to_roll) //Distribute jobs if(mode.flags_round_type & MODE_NEW_SPAWN) create_characters() // Create and equip characters else @@ -230,7 +239,7 @@ SUBSYSTEM_DEF(ticker) setup_economy() - shuttle_controller?.setup_shuttle_docks() + SSoldshuttle.shuttle_controller?.setup_shuttle_docks() PostSetup() return TRUE @@ -246,15 +255,15 @@ SUBSYSTEM_DEF(ticker) // Switch back to default automatically save_mode(CONFIG_GET(string/gamemode_default)) - if(round_statistics) - to_chat_spaced(world, html = FONT_SIZE_BIG(SPAN_ROLE_BODY("Welcome to [round_statistics.round_name]"))) + if(GLOB.round_statistics) + to_chat_spaced(world, html = FONT_SIZE_BIG(SPAN_ROLE_BODY("Welcome to [GLOB.round_statistics.round_name]"))) - supply_controller.process() //Start the supply shuttle regenerating points -- TLE + GLOB.supply_controller.start_processing() for(var/i in GLOB.closet_list) //Set up special equipment for lockers and vendors, depending on gamemode var/obj/structure/closet/C = i INVOKE_ASYNC(C, TYPE_PROC_REF(/obj/structure/closet, select_gamemode_equipment), mode.type) - for(var/obj/structure/machinery/vending/V in machines) + for(var/obj/structure/machinery/vending/V in GLOB.machines) INVOKE_ASYNC(V, TYPE_PROC_REF(/obj/structure/machinery/vending, select_gamemode_equipment), mode.type) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_POST_SETUP) @@ -312,8 +321,8 @@ SUBSYSTEM_DEF(ticker) /datum/controller/subsystem/ticker/proc/GetTimeLeft() if(isnull(SSticker.time_left)) - return round(max(0, start_at - world.time) / 10) - return round(time_left / 10) + return floor(max(0, start_at - world.time) / 10) + return floor(time_left / 10) /datum/controller/subsystem/ticker/proc/SetTimeLeft(newtime) @@ -337,7 +346,7 @@ SUBSYSTEM_DEF(ticker) WRITE_FILE(file("data/mode.txt"), the_mode) /datum/controller/subsystem/ticker/proc/create_characters() - if(!RoleAuthority) + if(!GLOB.RoleAuthority) return for(var/mob/new_player/player in GLOB.player_list) @@ -347,7 +356,7 @@ SUBSYSTEM_DEF(ticker) INVOKE_ASYNC(src, PROC_REF(spawn_and_equip_char), player) /datum/controller/subsystem/ticker/proc/spawn_and_equip_char(mob/new_player/player) - var/datum/job/J = RoleAuthority.roles_for_mode[player.job] + var/datum/job/J = GLOB.RoleAuthority.roles_for_mode[player.job] if(J.job_options && player?.client?.prefs?.pref_special_job_options[J.title]) J.handle_job_options(player.client.prefs.pref_special_job_options[J.title]) if(J.handle_spawn_and_equip) @@ -385,7 +394,7 @@ SUBSYSTEM_DEF(ticker) if(player.job == JOB_CO) captainless = FALSE if(player.job) - RoleAuthority.equip_role(player, RoleAuthority.roles_by_name[player.job], late_join = FALSE) + GLOB.RoleAuthority.equip_role(player, GLOB.RoleAuthority.roles_by_name[player.job], late_join = FALSE) EquipCustomItems(player) if(player.client) var/client/C = player.client @@ -439,7 +448,6 @@ SUBSYSTEM_DEF(ticker) winset(C, null, "mainwindow.icon=[SSticker.mode.taskbar_icon]") - /datum/controller/subsystem/ticker/proc/hijack_ocurred() if(mode) mode.is_in_endgame = TRUE diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm index e7e17876d9..8d819fa328 100644 --- a/code/controllers/subsystem/timer.dm +++ b/code/controllers/subsystem/timer.dm @@ -1,7 +1,7 @@ /// Controls how many buckets should be kept, each representing a tick. (1 minutes worth) #define BUCKET_LEN (world.fps*1*60) /// Helper for getting the correct bucket for a given timer -#define BUCKET_POS(timer) (((round((timer.timeToRun - timer.timer_subsystem.head_offset) / world.tick_lag)+1) % BUCKET_LEN)||BUCKET_LEN) +#define BUCKET_POS(timer) (((floor((timer.timeToRun - timer.timer_subsystem.head_offset) / world.tick_lag)+1) % BUCKET_LEN)||BUCKET_LEN) /// Gets the maximum time at which timers will be invoked from buckets, used for deferring to secondary queue #define TIMER_MAX(timer_ss) (timer_ss.head_offset + TICKS2DS(BUCKET_LEN + timer_ss.practical_offset - 1)) /// Max float with integer precision @@ -411,7 +411,7 @@ SUBSYSTEM_DEF(timer) if (flags & TIMER_STOPPABLE) id = num2text(nextid, 100) if (nextid >= SHORT_REAL_LIMIT) - nextid += min(1, 2 ** round(nextid / SHORT_REAL_LIMIT)) + nextid += min(1, 2 ** floor(nextid / SHORT_REAL_LIMIT)) else nextid++ timer_subsystem.timer_id_dict[id] = src @@ -583,7 +583,7 @@ SUBSYSTEM_DEF(timer) be supported and may refuse to run or run with a 0 wait") if (flags & TIMER_CLIENT_TIME) // REALTIMEOFDAY has a resolution of 1 decisecond - wait = max(CEILING(wait, 1), 1) // so if we use tick_lag timers may be inserted in the "past" + wait = max(ceil(wait), 1) // so if we use tick_lag timers may be inserted in the "past" else wait = max(CEILING(wait, world.tick_lag), world.tick_lag) diff --git a/code/controllers/subsystem/tracking.dm b/code/controllers/subsystem/tracking.dm index 3955ace8da..4dcc5d5c4e 100644 --- a/code/controllers/subsystem/tracking.dm +++ b/code/controllers/subsystem/tracking.dm @@ -98,7 +98,7 @@ SUBSYSTEM_DEF(tracking) /datum/controller/subsystem/tracking/proc/setup_trackers(mob/mob, tracked_group) if(!tracked_group) - tracked_group = "tracked_[tracked_mobs.len]" + tracked_group = "tracked_[length(tracked_mobs)]" tracked_mobs[tracked_group] = list() leaders[tracked_group] = mob diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm index 34350613ce..25f5227535 100644 --- a/code/controllers/subsystem/vote.dm +++ b/code/controllers/subsystem/vote.dm @@ -36,7 +36,7 @@ SUBSYSTEM_DEF(vote) /datum/controller/subsystem/vote/fire() if(mode) - time_remaining = round((started_time + CONFIG_GET(number/vote_period) - world.time)/10) + time_remaining = floor((started_time + CONFIG_GET(number/vote_period) - world.time)/10) if(time_remaining < 0) result() @@ -273,11 +273,14 @@ SUBSYSTEM_DEF(vote) question = "Gamemode vote" randomize_entries = TRUE for(var/mode_type in config.gamemode_cache) - var/datum/game_mode/M = mode_type - if(initial(M.config_tag)) - var/vote_cycle_met = !initial(M.vote_cycle) || (text2num(SSperf_logging?.round?.id) % initial(M.vote_cycle) == 0) - if(initial(M.votable) && vote_cycle_met) - choices += initial(M.config_tag) + var/datum/game_mode/cur_mode = mode_type + if(initial(cur_mode.config_tag)) + cur_mode = new mode_type + var/vote_cycle_met = !initial(cur_mode.vote_cycle) || (text2num(SSperf_logging?.round?.id) % initial(cur_mode.vote_cycle) == 0) + var/min_players_met = length(GLOB.clients) >= cur_mode.required_players + if(initial(cur_mode.votable) && vote_cycle_met && min_players_met) + choices += initial(cur_mode.config_tag) + qdel(cur_mode) if("groundmap") question = "Ground map vote" vote_sound = 'sound/voice/start_your_voting.ogg' @@ -359,8 +362,8 @@ SUBSYSTEM_DEF(vote) log_vote(text) var/vp = CONFIG_GET(number/vote_period) SEND_SOUND(world, sound(vote_sound, channel = SOUND_CHANNEL_VOX, volume = vote_sound_vol)) - to_chat(world, SPAN_CENTERBOLD("

[text]
Type vote or click here to place your votes.
You have [DisplayTimeText(vp)] to vote.


")) - time_remaining = round(vp/10) + to_chat(world, SPAN_CENTERBOLD("

[text]
Type vote or click here to place your votes.
You have [DisplayTimeText(vp)] to vote.


")) + time_remaining = floor(vp/10) for(var/c in GLOB.clients) var/client/C = c var/datum/action/innate/vote/V = give_action(C.mob, /datum/action/innate/vote) @@ -377,7 +380,7 @@ SUBSYSTEM_DEF(vote) /datum/controller/subsystem/vote/proc/map_vote_adjustment(current_votes, carry_over, total_votes) // Get 10% of the total map votes and remove them from the pool - var/total_vote_adjustment = round(total_votes * CONFIG_GET(number/vote_adjustment_callback)) + var/total_vote_adjustment = floor(total_votes * CONFIG_GET(number/vote_adjustment_callback)) // Do not remove more votes than were made for the map return -(min(current_votes, total_vote_adjustment)) @@ -411,6 +414,7 @@ SUBSYSTEM_DEF(vote) qdel(src) /datum/action/innate/vote/action_activate() + . = ..() owner.vote() /datum/action/innate/vote/proc/remove_from_client() @@ -522,7 +526,7 @@ GLOBAL_LIST_INIT(possible_vote_types, list( if(!(params["vote_type"] in GLOB.possible_vote_types)) return - if(!check_rights(R_ADMIN)) + if(!check_rights(R_MOD)) var/list/vote_type = GLOB.possible_vote_types[params["vote_type"]] if(vote_type["admin_only"]) return diff --git a/code/controllers/subsystem/weather.dm b/code/controllers/subsystem/weather.dm index 325c45fe23..a3fdfe509a 100644 --- a/code/controllers/subsystem/weather.dm +++ b/code/controllers/subsystem/weather.dm @@ -1,4 +1,4 @@ -var/list/weather_notify_objects = list() +GLOBAL_LIST_EMPTY(weather_notify_objects) SUBSYSTEM_DEF(weather) name = "Weather" @@ -46,7 +46,7 @@ SUBSYSTEM_DEF(weather) /datum/controller/subsystem/weather/proc/setup_weather_areas() weather_areas = list() - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.weather_enabled && map_holder.should_affect_area(A)) weather_areas += A diff --git a/code/controllers/subsystem/who.dm b/code/controllers/subsystem/who.dm new file mode 100644 index 0000000000..6c817fb124 --- /dev/null +++ b/code/controllers/subsystem/who.dm @@ -0,0 +1,293 @@ +SUBSYSTEM_DEF(who) + name = "Who" + flags = SS_BACKGROUND + runlevels = RUNLEVELS_DEFAULT|RUNLEVEL_LOBBY + init_order = SS_INIT_WHO + wait = 5 SECONDS + + var/datum/player_list/who = new + var/datum/player_list/staff/staff_who = new + +/datum/controller/subsystem/who/Initialize() + who.update_data() + staff_who.update_data() + return SS_INIT_SUCCESS + +/datum/controller/subsystem/who/fire(resumed = TRUE) + who.update_data() + staff_who.update_data() + + + +// WHO DATA +/datum/player_list + var/tgui_name = "Who" + var/tgui_interface_name = "Who" + var/list/base_data = list() + var/list/admin_sorted_additional = list() + +/datum/player_list/proc/update_data() + var/list/base_data = list() + var/list/admin_sorted_additional = list() + + var/list/factions_additional = list() + admin_sorted_additional["factions_additional"] = list("flags" = R_MOD|R_ADMIN, "data" = factions_additional) + + var/list/player_additional = list() + admin_sorted_additional["player_additional"] = list("flags" = R_MOD|R_ADMIN, "data" = player_additional) + + var/list/player_stealthed_additional = list() + admin_sorted_additional["player_stealthed_additional"] = list("flags" = R_STEALTH, "data" = player_stealthed_additional) + + var/list/counted_additional = list( + "lobby" = 0, + "admin_observers" = 0, + "observers" = 0, + "yautja" = 0, + "infected_preds" = 0, + "humans" = 0, + "infected_humans" = 0, + "uscm" = 0, + "uscm_marines" = 0, + ) + var/list/counted_factions = list() + + // Running thru all clients and doing some counts + for(var/client/client as anything in sortTim(GLOB.clients, GLOBAL_PROC_REF(cmp_ckey_asc))) + var/list/client_payload = list() + client_payload["text"] = client.key + client_payload["ckey_color"] = "white" + if(CLIENT_IS_STEALTHED(client)) + player_stealthed_additional["total_players"] += list(list(client.key = list(client_payload))) + else if(client.admin_holder?.fakekey) + player_additional["total_players"] += list(list(client.key = list(client_payload))) + else + base_data["total_players"] += list(list(client.key = list(client_payload.Copy()))) + player_additional["total_players"] += list(list(client.key = list(client_payload))) + + var/mob/client_mob = client.mob + if(client_mob) + if(istype(client_mob, /mob/new_player)) + client_payload["text"] += " - in Lobby" + counted_additional["lobby"]++ + + else if(isobserver(client_mob)) + client_payload["text"] += " - Playing as [client_mob.real_name]" + if(CLIENT_IS_STAFF(client)) + counted_additional["admin_observers"]++ + else + counted_additional["observers"]++ + + var/mob/dead/observer/observer = client_mob + if(observer.started_as_observer) + client_payload["color"] = "#ce89cd" + client_payload["text"] += " - Spectating" + else + client_payload["color"] = "#A000D0" + client_payload["text"] += " - DEAD" + + else + client_payload["text"] += " - Playing as [client_mob.real_name]" + + switch(client_mob.stat) + if(UNCONSCIOUS) + client_payload["color"] = "#B0B0B0" + client_payload["text"] += " - Unconscious" + if(DEAD) + client_payload["color"] = "#A000D0" + client_payload["text"] += " - DEAD" + + if(client_mob.stat != DEAD) + if(isxeno(client_mob)) + client_payload["color"] = "#ec3535" + client_payload["text"] += " - Xenomorph" + + else if(ishuman(client_mob)) + if(client_mob.faction == FACTION_ZOMBIE) + counted_factions[FACTION_ZOMBIE]++ + client_payload["color"] = "#2DACB1" + client_payload["text"] += " - Zombie" + else if(client_mob.faction == FACTION_YAUTJA) + client_payload["color"] = "#7ABA19" + client_payload["text"] += " - Yautja" + counted_additional["yautja"]++ + if(client_mob.status_flags & XENO_HOST) + counted_additional["infected_preds"]++ + else + counted_additional["humans"]++ + if(client_mob.status_flags & XENO_HOST) + counted_additional["infected_humans"]++ + if(client_mob.faction == FACTION_MARINE) + counted_additional["uscm"]++ + if(client_mob.job in (GLOB.ROLES_MARINES)) + counted_additional["uscm_marines"]++ + else + counted_factions[client_mob.faction]++ + + //Bulky section with pre writen names and desc for counts + factions_additional += list(list("content" = "In Lobby: [counted_additional["lobby"]]", "color" = "#777", "text" = "Player in lobby")) + factions_additional += list(list("content" = "Spectating Players: [counted_additional["observers"]]", "color" = "#777", "text" = "Spectating players")) + factions_additional += list(list("content" = "Spectating Admins: [counted_additional["admin_observers"]]", "color" = "#777", "text" = "Spectating administrators")) + factions_additional += list(list("content" = "Humans: [counted_additional["humans"]]", "color" = "#2C7EFF", "text" = "Players playing as Human")) + factions_additional += list(list("content" = "Infected Humans: [counted_additional["infected_humans"]]", "color" = "#ec3535", "text" = "Players playing as Infected Human")) + factions_additional += list(list("content" = "[MAIN_SHIP_NAME] Personnel: [counted_additional["uscm"]]", "color" = "#5442bd", "text" = "Players playing as [MAIN_SHIP_NAME] Personnel")) + factions_additional += list(list("content" = "Marines: [counted_additional["uscm_marines"]]", "color" = "#5442bd", "text" = "Players playing as Marines")) + factions_additional += list(list("content" = "Yautjas: [counted_additional["yautja"]]", "color" = "#7ABA19", "text" = "Players playing as Yautja")) + factions_additional += list(list("content" = "Infected Predators: [counted_additional["infected_preds"]]", "color" = "#7ABA19", "text" = "Players playing as Infected Yautja")) + + for(var/i in 1 to length(counted_factions)) + if(!counted_factions[counted_factions[i]]) + continue + factions_additional += list(list("content" = "[counted_factions[i]]: [counted_factions[counted_factions[i]]]", "color" = "#2C7EFF", "text" = "Other")) + + if(counted_factions[FACTION_NEUTRAL]) + factions_additional += list(list("content" = "[FACTION_NEUTRAL] Humans: [counted_factions[FACTION_NEUTRAL]]", "color" = "#688944", "text" = "Neutrals")) + + for(var/faction_to_get in ALL_XENO_HIVES) + var/datum/hive_status/hive = GLOB.hive_datum[faction_to_get] + if(!hive || !length(hive.totalXenos)) + continue + factions_additional += list(list("content" = "[hive.name]: [length(hive.totalXenos)]", "color" = hive.color ? hive.color : "#8200FF", "text" = "Queen: [hive.living_xeno_queen ? "Alive" : "Dead"]")) + + src.base_data = base_data + src.admin_sorted_additional = admin_sorted_additional + +/datum/player_list/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, tgui_name, tgui_interface_name) + ui.open() + ui.set_autoupdate(TRUE) + +/datum/player_list/ui_data(mob/user) + . = list() + // Sending base client data, this data sended to EVERYONE + .["base_data"] = base_data + + // Admin rights based data + if(!CLIENT_IS_STAFF(user.client)) + return + for(var/data_packet_name in admin_sorted_additional) // One by one for Drulikar complains + if(!check_client_rights(user.client, admin_sorted_additional[data_packet_name]["flags"], FALSE)) + continue + . += list("[data_packet_name]" = admin_sorted_additional[data_packet_name]["data"]) + +/datum/player_list/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + switch(action) + if("get_player_panel") + if(!CLIENT_IS_STAFF(ui.user.client)) + return + var/chosen_ckey = params["ckey"] + for(var/client/target in GLOB.clients) + if(target.key != chosen_ckey) + continue + if(target.mob) + GLOB.admin_datums[ui.user.client.ckey].show_player_panel(target.mob) + break + +/datum/player_list/ui_status(mob/user, datum/ui_state/state) + return UI_INTERACTIVE + + +// STAFF DATA +/datum/player_list/staff + tgui_name = "StaffWho" + tgui_interface_name = "Staff Who" + + var/list/category_colors = list( + "Management" = "purple", + "Maintainers" = "blue", + "Administrators" = "red", + "Moderators" = "orange", + "Mentors" = "green" + ) + +/datum/player_list/staff/update_data() + var/list/base_data = list() + var/list/admin_sorted_additional = list() + + var/list/admin_additional = list() + admin_sorted_additional["admin_additional"] = list("flags" = R_MOD|R_ADMIN, "data" = admin_additional) + + var/list/admin_stealthed_additional = list() + admin_sorted_additional["admin_stealthed_additional"] = list("flags" = R_STEALTH, "data" = admin_stealthed_additional) + + var/list/listings = list() + if(CONFIG_GET(flag/show_manager)) + listings["Management"] = list(R_PERMISSIONS, list()) + if(CONFIG_GET(flag/show_devs)) + listings["Maintainers"] = list(R_PROFILER, list()) + listings["Administrators"] = list(R_ADMIN, list()) + if(CONFIG_GET(flag/show_mods)) + listings["Moderators"] = list(R_MOD|R_BAN, list()) + if(CONFIG_GET(flag/show_mentors)) + listings["Mentors"] = list(R_MENTOR, list()) + + for(var/client/client as anything in GLOB.admins) + for(var/category in listings) + if(CLIENT_HAS_RIGHTS(client, listings[category][1])) + listings[category][2] += client + break + + for(var/category in listings) + base_data["categories"] += list(list( + "category" = category, + "category_color" = category_colors[category], + )) + + for(var/client/client as anything in listings[category][2]) + var/list/admin_payload = list() + admin_payload["category"] = category + var/rank = client.admin_holder.rank + if(client.admin_holder.extra_titles?.len) + for(var/srank in client.admin_holder.extra_titles) + rank += " & [srank]" + + if(CLIENT_IS_STEALTHED(client)) + admin_payload["special_color"] = "#b60d0d" + admin_payload["special_text"] = " (STEALTHED)" + admin_stealthed_additional["total_admins"] += list(list("[client.key] ([rank])" = list(admin_payload))) + else if(client.admin_holder?.fakekey) + admin_payload["special_color"] = "#7b582f" + admin_payload["special_text"] += " (HIDDEN)" + admin_additional["total_admins"] += list(list("[client.key] ([rank])" = list(admin_payload))) + else + admin_additional["total_admins"] += list(list("[client.key] ([rank])" = list(admin_payload))) + base_data["total_admins"] += list(list("[client.key] ([rank])" = list(admin_payload.Copy()))) + + admin_payload["text"] = "" + if(istype(client.mob, /mob/dead/observer)) + admin_payload["color"] = "#808080" + admin_payload["text"] += "Spectating" + + else if(istype(client.mob, /mob/new_player)) + admin_payload["color"] = "#FFFFFF" + admin_payload["text"] += "in Lobby" + else + admin_payload["color"] = "#688944" + admin_payload["text"] += "Playing" + + if(client.is_afk()) + admin_payload["color"] = "#A040D0" + admin_payload["special_text"] += " (AFK)" + + src.base_data = base_data + src.admin_sorted_additional = admin_sorted_additional + + +// VERBS +/mob/verb/who() + set category = "OOC" + set name = "Who" + + SSwho.who.tgui_interact(src) + +/mob/verb/staffwho() + set category = "Admin" + set name = "StaffWho" + + SSwho.staff_who.tgui_interact(src) diff --git a/code/controllers/subsystem/x_evolution.dm b/code/controllers/subsystem/x_evolution.dm index be787b37de..857af8117d 100644 --- a/code/controllers/subsystem/x_evolution.dm +++ b/code/controllers/subsystem/x_evolution.dm @@ -11,6 +11,7 @@ SUBSYSTEM_DEF(xevolution) var/time_ratio_modifier = 0.4 var/list/boost_power = list() + var/list/overridden_power = list() var/force_boost_power = FALSE // Debugging only /datum/controller/subsystem/xevolution/Initialize(start_timeofday) @@ -18,6 +19,7 @@ SUBSYSTEM_DEF(xevolution) for(var/hivenumber in GLOB.hive_datum) HS = GLOB.hive_datum[hivenumber] boost_power[HS.hivenumber] = 1 + overridden_power[HS.hivenumber] = FALSE return SS_INIT_SUCCESS /datum/controller/subsystem/xevolution/fire(resumed = FALSE) @@ -27,6 +29,9 @@ SUBSYSTEM_DEF(xevolution) if(!HS) continue + if(overridden_power[HS.hivenumber]) + continue + if(!HS.dynamic_evolution) boost_power[HS.hivenumber] = HS.evolution_rate + HS.evolution_bonus HS.hive_ui.update_burrowed_larva() @@ -42,7 +47,7 @@ SUBSYSTEM_DEF(xevolution) //Add on any bonuses from thie hivecore after applying upgrade progress boost_power_new += (0.5 * HS.has_special_structure(XENO_STRUCTURE_CORE)) - boost_power_new = Clamp(boost_power_new, BOOST_POWER_MIN, BOOST_POWER_MAX) + boost_power_new = clamp(boost_power_new, BOOST_POWER_MIN, BOOST_POWER_MAX) boost_power_new += HS.evolution_bonus if(!force_boost_power) @@ -54,6 +59,12 @@ SUBSYSTEM_DEF(xevolution) /datum/controller/subsystem/xevolution/proc/get_evolution_boost_power(hivenumber) return boost_power[hivenumber] +/datum/controller/subsystem/xevolution/proc/override_power(hivenumber, power, override) + var/datum/hive_status/hive_status = GLOB.hive_datum[hivenumber] + boost_power[hivenumber] = power + overridden_power[hivenumber] = override + hive_status.hive_ui.update_burrowed_larva() + #undef EVOLUTION_INCREMENT_TIME #undef BOOST_POWER_MIN #undef BOOST_POWER_MAX diff --git a/code/controllers/subsystem/xeno.dm b/code/controllers/subsystem/xeno.dm index 0623da8042..df711fd903 100644 --- a/code/controllers/subsystem/xeno.dm +++ b/code/controllers/subsystem/xeno.dm @@ -7,7 +7,7 @@ SUBSYSTEM_DEF(xeno) var/list/currentrun = list() /datum/controller/subsystem/xeno/stat_entry(msg) - msg = "P:[GLOB.xeno_mob_list.len]" + msg = "P:[length(GLOB.xeno_mob_list)]" return ..() @@ -15,8 +15,8 @@ SUBSYSTEM_DEF(xeno) if (!resumed) currentrun = GLOB.xeno_mob_list.Copy() - while (currentrun.len) - var/mob/living/carbon/xenomorph/M = currentrun[currentrun.len] + while (length(currentrun)) + var/mob/living/carbon/xenomorph/M = currentrun[length(currentrun)] currentrun.len-- if (!M || QDELETED(M)) diff --git a/code/datums/ASRS.dm b/code/datums/ASRS.dm index 86a7363f07..5bd82ef6c5 100644 --- a/code/datums/ASRS.dm +++ b/code/datums/ASRS.dm @@ -2,133 +2,129 @@ //These are non orderable packs that get in automaticly though the ARSR system. //Note these should never show up to buy and some will only show up later in the round. //BIG NOTE: Don't add living things to crates, that's bad, it will break the shuttle. -//We use the cost to determine the spawn chance this equals out the crates that spawn later in the round. -#define ASRS_HIGHEST_WEIGHT 0 //warning this weight wont change. -#define ASRS_VERY_HIGH_WEIGHT 5 -#define ASRS_HIGH_WEIGHT 15 -#define ASRS_MEDIUM_WEIGHT 25 -#define ASRS_LOW_WEIGHT 35 -#define ASRS_VERY_LOW_WEIGHT 50 -#define ASRS_LOWEST_WEIGHT 100 + + +/datum/supply_packs_asrs + /// How likely we are to select this pack over others + var/cost = ASRS_MEDIUM_WEIGHT + /// Which pool of ASRS automatically dispensed supplies this belongs to + var/pool = ASRS_POOL_MAIN + /// What supply pack would this dispense + var/datum/supply_packs/reference_package //=================================== // Rounds -/datum/supply_packs/ammo_rounds_box_rifle/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_rounds_box_rifle + reference_package = /datum/supply_packs/ammo_rounds_box_rifle cost = ASRS_MEDIUM_WEIGHT -/datum/supply_packs/ammo_rounds_box_rifle_ap/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_rounds_box_rifle_ap + reference_package = /datum/supply_packs/ammo_rounds_box_rifle_ap cost = ASRS_LOW_WEIGHT -/datum/supply_packs/ammo_rounds_box_xm88/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_rounds_box_xm88 + reference_package = /datum/supply_packs/ammo_rounds_box_xm88 cost = ASRS_LOW_WEIGHT //=================================== // Magazines -/datum/supply_packs/gun/ammo_hpr/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/gun/ammo_hpr + reference_package = /datum/supply_packs/ammo_hpr cost = ASRS_LOWEST_WEIGHT -/datum/supply_packs/ammo_m4a3_mag_box/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_m4a3_mag_box + reference_package = /datum/supply_packs/ammo_m4a3_mag_box cost = ASRS_LOW_WEIGHT -/datum/supply_packs/ammo_m4a3_mag_box_ap/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_m4a3_mag_box_ap + reference_package = /datum/supply_packs/ammo_m4a3_mag_box_ap + cost = ASRS_VERY_LOW_WEIGHT + +/datum/supply_packs_asrs/ammo_m4a3_mag_box_hp + reference_package = /datum/supply_packs/ammo_m4a3_mag_box_hp + cost = ASRS_VERY_LOW_WEIGHT + +/datum/supply_packs_asrs/ammo_mag_box + reference_package = /datum/supply_packs/ammo_mag_box cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_mag_box/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_mag_box_ap + reference_package = /datum/supply_packs/ammo_mag_box_ap + +/datum/supply_packs_asrs/ammo_m4ra_mag_box + reference_package = /datum/supply_packs/ammo_m4ra_mag_box cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_mag_box_ap/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_m4ra_mag_box_ap + reference_package = /datum/supply_packs/ammo_m4ra_mag_box_ap -/datum/supply_packs/ammo_m4ra_mag_box/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_shell_box + reference_package = /datum/supply_packs/ammo_shell_box cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_m4ra_mag_box_ap/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_shell_box_buck + reference_package = /datum/supply_packs/ammo_shell_box_buck + cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_shell_box/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_shell_box_flechette + reference_package = /datum/supply_packs/ammo_shell_box_flechette cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_shell_box_buck/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_shell_box_breaching + reference_package = /datum/supply_packs/ammo_shell_box_breaching cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_shell_box_flechette/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_xm51 + reference_package = /datum/supply_packs/ammo_xm51 cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_smartgun/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_smartgun + reference_package = /datum/supply_packs/ammo_smartgun -/datum/supply_packs/ammo_napalm/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_napalm + reference_package = /datum/supply_packs/ammo_napalm cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_napalm_gel/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_napalm_gel + reference_package = /datum/supply_packs/ammo_napalm_gel cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/ammo_flamer_mixed/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_flamer_mixed + reference_package = /datum/supply_packs/ammo_flamer_mixed cost = ASRS_VERY_LOW_WEIGHT //=================================== // Mortar ammo -/datum/supply_packs/ammo_mortar_he/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_mortar_he + reference_package = /datum/supply_packs/ammo_mortar_he -/datum/supply_packs/ammo_mortar_incend/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_mortar_incend + reference_package = /datum/supply_packs/ammo_mortar_incend -/datum/supply_packs/ammo_mortar_flare/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/ammo_mortar_flare + reference_package = /datum/supply_packs/ammo_mortar_flare //=================================== // Misc supplies -/datum/supply_packs/flares/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/flares + reference_package = /datum/supply_packs/flares cost = ASRS_LOW_WEIGHT -/datum/supply_packs/mre/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/mre + reference_package = /datum/supply_packs/mre + cost = ASRS_VERY_LOW_WEIGHT + +/datum/supply_packs_asrs/flashlights + reference_package = /datum/supply_packs/flashlights cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/flashlights/asrs - buyable = 0 - group = "ASRS" +/datum/supply_packs_asrs/batteries + reference_package = /datum/supply_packs/batteries cost = ASRS_VERY_LOW_WEIGHT -/datum/supply_packs/batteries/asrs - buyable = 0 - group = "ASRS" +// ============================ +// FOOD POOL - for Mess Tech gradual supplies throughout the round +/datum/supply_packs_asrs/ingredient + reference_package = /datum/supply_packs/ingredient + pool = ASRS_POOL_FOOD cost = ASRS_VERY_LOW_WEIGHT diff --git a/code/datums/_atmos_setup.dm b/code/datums/_atmos_setup.dm index be4dc62fae..3075e98ac4 100644 --- a/code/datums/_atmos_setup.dm +++ b/code/datums/_atmos_setup.dm @@ -14,18 +14,18 @@ #define PIPE_COLOR_YELLOW "#ffcc00" #define PIPE_COLOR_PURPLE "#5c1ec0" -var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_RED, "blue" = PIPE_COLOR_BLUE, "cyan" = PIPE_COLOR_CYAN, "green" = PIPE_COLOR_GREEN, "yellow" = PIPE_COLOR_YELLOW, "purple" = PIPE_COLOR_PURPLE) +GLOBAL_LIST_INIT(pipe_colors, list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_RED, "blue" = PIPE_COLOR_BLUE, "cyan" = PIPE_COLOR_CYAN, "green" = PIPE_COLOR_GREEN, "yellow" = PIPE_COLOR_YELLOW, "purple" = PIPE_COLOR_PURPLE)) /proc/pipe_color_lookup(color) - for(var/C in pipe_colors) - if(color == pipe_colors[C]) + for(var/C in GLOB.pipe_colors) + if(color == GLOB.pipe_colors[C]) return "[C]" /proc/pipe_color_check(color) if(!color) return 1 - for(var/C in pipe_colors) - if(color == pipe_colors[C]) + for(var/C in GLOB.pipe_colors) + if(color == GLOB.pipe_colors[C]) return 1 return 0 @@ -89,10 +89,10 @@ var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_ var/image/I = image('icons/obj/pipes/pipes.dmi', icon_state = state) pipe_icons[cache_name] = I - for(var/pipe_color in pipe_colors) + for(var/pipe_color in GLOB.pipe_colors) I = image('icons/obj/pipes/pipes.dmi', icon_state = state) - I.color = pipe_colors[pipe_color] - pipe_icons[state + "[pipe_colors[pipe_color]]"] = I + I.color = GLOB.pipe_colors[pipe_color] + pipe_icons[state + "[GLOB.pipe_colors[pipe_color]]"] = I pipe = new ('icons/obj/pipes/heat.dmi') for(var/state in pipe.IconStates()) @@ -122,10 +122,10 @@ var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_ if(findtext(state, "core") || findtext(state, "4way")) var/image/I = image('icons/obj/pipes/manifold.dmi', icon_state = state) manifold_icons[state] = I - for(var/pipe_color in pipe_colors) + for(var/pipe_color in GLOB.pipe_colors) I = image('icons/obj/pipes/manifold.dmi', icon_state = state) - I.color = pipe_colors[pipe_color] - manifold_icons[state + pipe_colors[pipe_color]] = I + I.color = GLOB.pipe_colors[pipe_color] + manifold_icons[state + GLOB.pipe_colors[pipe_color]] = I /datum/pipe_icon_manager/proc/gen_device_icons() if(!device_icons) @@ -170,13 +170,13 @@ var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_ var/cache_name = state - for(var/D in cardinal) + for(var/D in GLOB.cardinals) var/image/I = image('icons/obj/pipes/pipe_underlays.dmi', icon_state = state, dir = D) underlays[cache_name + "[D]"] = I - for(var/pipe_color in pipe_colors) + for(var/pipe_color in GLOB.pipe_colors) I = image('icons/obj/pipes/pipe_underlays.dmi', icon_state = state, dir = D) - I.color = pipe_colors[pipe_color] - underlays[state + "[D]" + "[pipe_colors[pipe_color]]"] = I + I.color = GLOB.pipe_colors[pipe_color] + underlays[state + "[D]" + "[GLOB.pipe_colors[pipe_color]]"] = I /* Leaving the old icon manager code commented out for now, as we may want to rewrite the new code to cleanly @@ -202,7 +202,7 @@ var/global/list/pipe_colors = list("grey" = PIPE_COLOR_GREY, "red" = PIPE_COLOR_ if(state == "") continue - for(var/D in cardinal) + for(var/D in GLOB.cardinals) var/image/I = image('icons/atmos/pipe_underlays.dmi', icon_state = state, dir = D) switch(state) if("intact") diff --git a/code/datums/_ndatabase/code/brsql_adapter.dm b/code/datums/_ndatabase/code/brsql_adapter.dm index 251267a04f..2362572f58 100644 --- a/code/datums/_ndatabase/code/brsql_adapter.dm +++ b/code/datums/_ndatabase/code/brsql_adapter.dm @@ -103,7 +103,7 @@ /datum/db/adapter/brsql_adapter/insert_table(table_name, list/values, datum/callback/CB, sync = FALSE) set waitfor = FALSE - var/length = values.len + var/length = length(values) var/list/qpars = list() var/query_inserttable = getquery_insert_table(table_name, values, qpars) var/datum/callback/callback = CALLBACK(src, TYPE_PROC_REF(/datum/db/adapter/brsql_adapter, after_insert_table), CB, length, table_name) @@ -150,7 +150,7 @@ if(table_meta.status != DB_QUERY_FINISHED) issue_log += "Unable to access system table, error: '[table_meta.error]'" return FALSE // OH SHIT OH FUCK - if(!table_meta.results.len) // Table doesn't exist + if(!length(table_meta.results)) // Table doesn't exist return internal_create_table(table_name, field_types) && internal_record_table_in_sys(type_name, table_name, field_types) var/id = table_meta.results[1][DB_DEFAULT_ID_FIELD] @@ -178,7 +178,7 @@ if(index_meta.status != DB_QUERY_FINISHED) issue_log += "Unable to access system index table, error: '[index_meta.error]'" return FALSE // OH SHIT OH FUCK - if(!index_meta.results.len) // Index doesn't exist + if(!length(index_meta.results)) // Index doesn't exist return internal_create_index(index_name, table_name, fields, unique, cluster) && internal_record_index_in_sys(index_name, table_name, fields) var/id = index_meta.results[1][DB_DEFAULT_ID_FIELD] diff --git a/code/datums/_ndatabase/code/interfaces/connection_settings.dm b/code/datums/_ndatabase/code/interfaces/connection_settings.dm index 4092ee712b..0c990b2b9c 100644 --- a/code/datums/_ndatabase/code/interfaces/connection_settings.dm +++ b/code/datums/_ndatabase/code/interfaces/connection_settings.dm @@ -33,5 +33,3 @@ if(!typestr) typestr = /datum/db/connection_settings/native return new typestr(config) - -var/global/datum/db/connection_settings/connection_settings diff --git a/code/datums/_ndatabase/code/native_adapter.dm b/code/datums/_ndatabase/code/native_adapter.dm index 1c23a6ceab..d5956ca8d8 100644 --- a/code/datums/_ndatabase/code/native_adapter.dm +++ b/code/datums/_ndatabase/code/native_adapter.dm @@ -92,7 +92,7 @@ /datum/db/adapter/native_adapter/insert_table(table_name, list/values, datum/callback/CB, sync = FALSE) set waitfor = 0 - var/length = values.len + var/length = length(values) var/startid = internal_request_insert_allocation(table_name, length) var/list/qpars = list() var/query_inserttable = getquery_insert_table(table_name, values, startid, qpars) @@ -138,7 +138,7 @@ if(table_meta.status != DB_QUERY_FINISHED) issue_log += "Unable to access system table, error: '[table_meta.error]'" return FALSE // OH SHIT OH FUCK - if(!table_meta.results.len) // Table doesn't exist + if(!length(table_meta.results)) // Table doesn't exist return internal_create_table(table_name, field_types) && internal_record_table_in_sys(type_name, table_name, field_types) var/id = table_meta.results[1][DB_DEFAULT_ID_FIELD] diff --git a/code/datums/_ndatabase/code/native_persistent_query.dm b/code/datums/_ndatabase/code/native_persistent_query.dm index 15e505d578..39025aa1fd 100644 --- a/code/datums/_ndatabase/code/native_persistent_query.dm +++ b/code/datums/_ndatabase/code/native_persistent_query.dm @@ -29,7 +29,7 @@ /datum/db/query/native/read_single() if(status >= DB_QUERY_FINISHED || completed) //broken or finished return - + if(!completed) completed = TRUE var/status = query.Execute(db) @@ -41,9 +41,9 @@ if(!results) results = list() var/list/cols = query.Columns() - if(cols && cols.len>0) + if(LAZYLEN(cols)>0) while(query.NextRow()) var/list/current_row = query.GetRowData() results += list(current_row) - affected_rows = query.RowsAffected() + affected_rows = query.RowsAffected() status = DB_QUERY_FINISHED diff --git a/code/datums/_ndatabase/subsystems/database_query_manager.dm b/code/datums/_ndatabase/subsystems/database_query_manager.dm index 7eef5842e2..5a68c4e349 100644 --- a/code/datums/_ndatabase/subsystems/database_query_manager.dm +++ b/code/datums/_ndatabase/subsystems/database_query_manager.dm @@ -19,8 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. -var/datum/controller/subsystem/database_query_manager/SSdatabase - +GLOBAL_REAL(SSdatabase, /datum/controller/subsystem/database_query_manager) /datum/controller/subsystem/database_query_manager name = "Database QM" wait = 1 @@ -63,7 +62,7 @@ var/datum/controller/subsystem/database_query_manager/SSdatabase /datum/controller/subsystem/database_query_manager/stat_entry(msg) var/text = (connection && connection.status == DB_CONNECTION_READY) ? ("READY") : ("PREPPING") - msg = "[text], AQ:[queries_active.len]; SQ:[queries_standby.len]; P:[queries_current.len]; C:[in_callback]" + msg = "[text], AQ:[length(queries_active)]; SQ:[length(queries_standby)]; P:[length(queries_current)]; C:[in_callback]" return ..() /datum/controller/subsystem/database_query_manager/fire(resumed = FALSE) diff --git a/code/datums/_ndatabase/subsystems/entity_manager.dm b/code/datums/_ndatabase/subsystems/entity_manager.dm index 667f2a8555..2ef5da2b22 100644 --- a/code/datums/_ndatabase/subsystems/entity_manager.dm +++ b/code/datums/_ndatabase/subsystems/entity_manager.dm @@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. -var/datum/controller/subsystem/entity_manager/SSentity_manager +GLOBAL_REAL(SSentity_manager, /datum/controller/subsystem/entity_manager) /datum/controller/subsystem/entity_manager name = "Entity Manager" @@ -102,8 +102,8 @@ var/datum/controller/subsystem/entity_manager/SSentity_manager currentrun = tables_unsorted.Copy() if(!SSdatabase.connection.connection_ready()) return - while (currentrun.len) - var/datum/entity_meta/Q = currentrun[currentrun.len] + while (length(currentrun)) + var/datum/entity_meta/Q = currentrun[length(currentrun)] do_select(Q) do_insert(Q) do_update(Q) diff --git a/code/datums/_ndatabase/tests/test_entity.dm b/code/datums/_ndatabase/tests/test_entity.dm index de1942eec7..3bc9cc829b 100644 --- a/code/datums/_ndatabase/tests/test_entity.dm +++ b/code/datums/_ndatabase/tests/test_entity.dm @@ -50,7 +50,7 @@ SSentity_manager.filter_then(/datum/entity/test_entity, DB_COMP("value", DB_EQUALS, value), CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(log_filter))) /proc/log_filter(list/datum/entity/elist) - to_world("got [elist.len] items") + to_world("got [length(elist)] items") /proc/log_sync(datum/entity/test_entity/ET) to_world("id:[ET.id] = name: [ET.name], description: [ET.description], value: [ET.value]") diff --git a/code/datums/action.dm b/code/datums/action.dm index 3a597ad262..e6c87eca6a 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -43,7 +43,9 @@ return /datum/action/proc/action_activate() - return + SHOULD_CALL_PARENT(TRUE) + + SEND_SIGNAL(src, COMSIG_ACTION_ACTIVATED) /// handler for when a keybind signal is received by the action, calls the action_activate proc asynchronous /datum/action/proc/keybind_activation() @@ -158,6 +160,10 @@ hidden = FALSE L.update_action_buttons() +/proc/get_action(mob/action_mob, action_path) + for(var/datum/action/action in action_mob.actions) + if(istype(action, action_path)) + return action /datum/action/item_action name = "Use item" @@ -181,16 +187,13 @@ holder_item = null return ..() -/datum/action/item_action/action_activate() - if(target) - var/obj/item/I = target - I.ui_action_click(owner, holder_item) - /datum/action/item_action/can_use_action() if(ishuman(owner) && !owner.is_mob_incapacitated()) var/mob/living/carbon/human/human = owner if(human.body_position == STANDING_UP) return TRUE + if((HAS_TRAIT(owner, TRAIT_OPPOSABLE_THUMBS)) && !owner.is_mob_incapacitated()) + return TRUE /datum/action/item_action/update_button_icon() button.overlays.Cut() @@ -204,6 +207,17 @@ name = "Toggle [target]" button.name = name +/datum/action/item_action/toggle/action_activate() + . = ..() + if(target) + var/obj/item/I = target + I.ui_action_click(owner, holder_item) + +/datum/action/item_action/toggle/use/New(target) + . = ..() + name = "Use [target]" + button.name = name + //This is the proc used to update all the action buttons. /mob/proc/update_action_buttons(reload_screen) if(!client) diff --git a/code/datums/agents/tools/decoy.dm b/code/datums/agents/tools/decoy.dm index 57c8e5130f..57eef25a44 100644 --- a/code/datums/agents/tools/decoy.dm +++ b/code/datums/agents/tools/decoy.dm @@ -1,4 +1,6 @@ /obj/item/explosive/grenade/decoy + AUTOWIKI_SKIP(TRUE) + name = "decoy grenade" desc = "A grenade typically used to distract the enemy. Emits a loud bang. Detonates in 5 seconds. Has 3 uses" diff --git a/code/datums/agents/tools/stunbaton.dm b/code/datums/agents/tools/stunbaton.dm index b00f4e56f8..5e020aea81 100644 --- a/code/datums/agents/tools/stunbaton.dm +++ b/code/datums/agents/tools/stunbaton.dm @@ -5,14 +5,3 @@ hitcost = 500 stunforce = 40 has_user_lock = FALSE - -/obj/item/weapon/baton/antag/check_user_auth(mob/user) - if(!skillcheckexplicit(user, SKILL_ANTAG, SKILL_ANTAG_AGENT)) - user.visible_message(SPAN_NOTICE("[src] beeps as [user] picks it up"), SPAN_DANGER("WARNING: Unauthorized user detected. Denying access...")) - user.apply_effect(10, DAZE) - user.visible_message(SPAN_WARNING("[src] beeps and sends a shock through [user]'s body!")) - deductcharge(hitcost) - - return FALSE - - return TRUE diff --git a/code/datums/agents/tools/tracker.dm b/code/datums/agents/tools/tracker.dm index 1d6d6d4801..2f3063afb7 100644 --- a/code/datums/agents/tools/tracker.dm +++ b/code/datums/agents/tools/tracker.dm @@ -12,7 +12,7 @@ overlays.Cut() if(active && tracked_object) - overlays += icon(icon, "+tracker_arrow", get_dir(src, tracked_object)) + overlays += icon(icon, "+tracker_arrow", Get_Compass_Dir(src, tracked_object)) /obj/item/device/tracker/attack_self(mob/user) if(!skillcheckexplicit(user, SKILL_ANTAG, SKILL_ANTAG_AGENT)) @@ -48,12 +48,12 @@ return ..() /obj/item/device/tracker/proc/select_object(mob/user) - if(!LAZYLEN(objects_of_interest)) + if(!LAZYLEN(GLOB.objects_of_interest)) to_chat(user, SPAN_WARNING("There are nothing of interest to track.")) return var/list/object_choices = list() - for(var/obj/O in objects_of_interest) + for(var/obj/O in GLOB.objects_of_interest) var/z_level_to_compare_from = O.z if(istype(O.loc, /obj/structure/surface)) z_level_to_compare_from = O.loc.z diff --git a/code/datums/ammo/ammo.dm b/code/datums/ammo/ammo.dm index af92c62023..d196cc8f16 100644 --- a/code/datums/ammo/ammo.dm +++ b/code/datums/ammo/ammo.dm @@ -84,7 +84,7 @@ /// that will be given to a projectile with the current ammo datum var/list/list/traits_to_give - var/flamer_reagent_type = /datum/reagent/napalm/ut + var/flamer_reagent_id = "utnapthal" /// The flicker that plays when a bullet hits a target. Usually red. Can be nulled so it doesn't show up at all. var/hit_effect_color = "#FF0000" @@ -109,7 +109,7 @@ SHOULD_NOT_SLEEP(TRUE) return -/datum/ammo/proc/on_embed(mob/embedded_mob, obj/limb/target_organ) +/datum/ammo/proc/on_embed(mob/embedded_mob, obj/limb/target_organ, silent = FALSE) return /datum/ammo/proc/do_at_max_range(obj/projectile/P) @@ -169,13 +169,17 @@ var/mob/living/carbon/xenomorph/target = living_mob target.Stun(0.7) // Previous comment said they believed 0.7 was 0.9s and that the balance team approved this. Geez... target.KnockDown(0.7) - target.apply_effect(2, SUPERSLOW) - target.apply_effect(4, SLOW) + target.apply_effect(1, SUPERSLOW) + target.apply_effect(2, SLOW) to_chat(target, SPAN_XENODANGER("You are shaken by the sudden impact!")) else living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) /datum/ammo/proc/slowdown(mob/living/living_mob, obj/projectile/fired_projectile) + if(isxeno(living_mob)) + var/mob/living/carbon/xenomorph/xeno = living_mob + if(xeno.caste.tier > 2 || (xeno.caste.tier == 0 && xeno.mob_size >= MOB_SIZE_BIG)) + return //tier 3 and big tier 0 (like queen) are not affected if(iscarbonsizexeno(living_mob)) var/mob/living/carbon/xenomorph/target = living_mob target.apply_effect(1, SUPERSLOW) @@ -191,7 +195,7 @@ if(target_mob.mob_size >= MOB_SIZE_BIG) return //too big to push - to_chat(target_mob, isxeno(target_mob) ? SPAN_XENODANGER("You are pushed back by the sudden impact!") : SPAN_HIGHDANGER("You are pushed back by the sudden impact!"), null, 4, CHAT_TYPE_TAKING_HIT) + to_chat(target_mob, isxeno(target_mob) ? SPAN_XENODANGER("You are pushed back by the sudden impact!") : SPAN_HIGHDANGER("You are pushed back by the sudden impact!")) slam_back(target_mob, fired_projectile, max_range) /datum/ammo/proc/burst(atom/target, obj/projectile/P, damage_type = BRUTE, range = 1, damage_div = 2, show_message = SHOW_MESSAGE_VISIBLE) //damage_div says how much we divide damage @@ -215,7 +219,7 @@ M.apply_damage(damage,damage_type) - if(XNO && XNO.xeno_shields.len) + if(XNO && length(XNO.xeno_shields)) P.play_shielded_hit_effect(M) else P.play_hit_effect(M) @@ -231,8 +235,9 @@ var/obj/projectile/P = new /obj/projectile(curloc, original_P.weapon_cause_data) P.generate_bullet(GLOB.ammo_list[bonus_projectiles_type]) //No bonus damage or anything. - P.accuracy = round(P.accuracy * original_P.accuracy/initial(original_P.accuracy)) //if the gun changes the accuracy of the main projectile, it also affects the bonus ones. + P.accuracy = floor(P.accuracy * original_P.accuracy/initial(original_P.accuracy)) //if the gun changes the accuracy of the main projectile, it also affects the bonus ones. original_P.give_bullet_traits(P) + P.bonus_projectile_check = 2 //It's a bonus projectile! var/total_scatter_angle = P.scatter final_angle += rand(-total_scatter_angle, total_scatter_angle) @@ -240,11 +245,12 @@ P.fire_at(new_target, original_P.firer, original_P.shot_from, P.ammo.max_range, P.ammo.shell_speed, original_P.original) //Fire! -/datum/ammo/proc/drop_flame(turf/T, datum/cause_data/cause_data) // ~Art updated fire 20JAN17 - if(!istype(T)) +/datum/ammo/proc/drop_flame(turf/turf, datum/cause_data/cause_data) // ~Art updated fire 20JAN17 + if(!istype(turf)) return - if(locate(/obj/flamer_fire) in T) + if(locate(/obj/flamer_fire) in turf) return - var/datum/reagent/R = new flamer_reagent_type() - new /obj/flamer_fire(T, cause_data, R) + var/datum/reagent/chemical = GLOB.chemical_reagents_list[flamer_reagent_id] + + new /obj/flamer_fire(turf, cause_data, chemical) diff --git a/code/datums/ammo/bullet/arc.dm b/code/datums/ammo/bullet/arc.dm new file mode 100644 index 0000000000..277cda59be --- /dev/null +++ b/code/datums/ammo/bullet/arc.dm @@ -0,0 +1,14 @@ +/datum/ammo/bullet/re700 + name = "rotary cannon bullet" + icon_state = "autocannon" + damage_falloff = 0 + flags_ammo_behavior = AMMO_BALLISTIC + + accuracy = HIT_ACCURACY_TIER_7 + scatter = 0 + damage = 30 + damage_var_high = PROJECTILE_VARIANCE_TIER_8 + penetration = ARMOR_PENETRATION_TIER_3 + accurate_range = 10 + max_range = 12 + shell_speed = AMMO_SPEED_TIER_6 diff --git a/code/datums/ammo/bullet/lever_action.dm b/code/datums/ammo/bullet/lever_action.dm index 2770231b68..e1475146b2 100644 --- a/code/datums/ammo/bullet/lever_action.dm +++ b/code/datums/ammo/bullet/lever_action.dm @@ -52,7 +52,7 @@ /datum/ammo/bullet/lever_action/xm88 name = ".458 SOCOM round" - damage = 80 + damage = 104 penetration = ARMOR_PENETRATION_TIER_2 accuracy = HIT_ACCURACY_TIER_1 shell_speed = AMMO_SPEED_TIER_6 diff --git a/code/datums/ammo/bullet/pistol.dm b/code/datums/ammo/bullet/pistol.dm index d4bdbc3ae4..a821b41ac6 100644 --- a/code/datums/ammo/bullet/pistol.dm +++ b/code/datums/ammo/bullet/pistol.dm @@ -62,7 +62,7 @@ /datum/ammo/bullet/pistol/ap/toxin/on_hit_mob(mob/M, obj/projectile/P) . = ..() - M.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + M.AddComponent(/datum/component/status_effect/toxic_buildup, acid_per_hit) /datum/ammo/bullet/pistol/ap/toxin/on_hit_turf(turf/T, obj/projectile/P) . = ..() @@ -194,7 +194,7 @@ /datum/ammo/bullet/pistol/squash/toxin/on_hit_mob(mob/M, obj/projectile/P) . = ..() - M.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + M.AddComponent(/datum/component/status_effect/toxic_buildup, acid_per_hit) /datum/ammo/bullet/pistol/squash/toxin/on_hit_turf(turf/T, obj/projectile/P) . = ..() diff --git a/code/datums/ammo/bullet/revolver.dm b/code/datums/ammo/bullet/revolver.dm index 44f1eae96d..9c0e56218a 100644 --- a/code/datums/ammo/bullet/revolver.dm +++ b/code/datums/ammo/bullet/revolver.dm @@ -20,7 +20,7 @@ /datum/ammo/bullet/revolver/marksman name = "marksman revolver bullet" - + damage = 55 shrapnel_chance = 0 damage_falloff = 0 accurate_range = 12 @@ -54,7 +54,7 @@ /datum/ammo/bullet/revolver/marksman/toxin/on_hit_mob(mob/M, obj/projectile/P) . = ..() - M.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + M.AddComponent(/datum/component/status_effect/toxic_buildup, acid_per_hit) /datum/ammo/bullet/revolver/marksman/toxin/on_hit_turf(turf/T, obj/projectile/P) . = ..() diff --git a/code/datums/ammo/bullet/rifle.dm b/code/datums/ammo/bullet/rifle.dm index 7fb0b53ace..d9cf06648e 100644 --- a/code/datums/ammo/bullet/rifle.dm +++ b/code/datums/ammo/bullet/rifle.dm @@ -21,11 +21,16 @@ /datum/ammo/bullet/rifle/holo_target name = "holo-targeting 10x24 bullet" damage = 30 + /// inflicts this many holo stacks per bullet hit var/holo_stacks = 10 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 -/datum/ammo/bullet/rifle/holo_target/on_hit_mob(mob/M, obj/projectile/P) +/datum/ammo/bullet/rifle/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) /datum/ammo/bullet/rifle/holo_target/hunting @@ -67,7 +72,7 @@ /datum/ammo/bullet/rifle/ap/toxin/on_hit_mob(mob/M, obj/projectile/P) . = ..() - M.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + M.AddComponent(/datum/component/status_effect/toxic_buildup, acid_per_hit) /datum/ammo/bullet/rifle/ap/toxin/on_hit_turf(turf/T, obj/projectile/P) . = ..() @@ -173,7 +178,7 @@ )) /datum/ammo/bullet/rifle/heavy/du/on_hit_mob(mob/target, obj/projectile/fired_proj) - target.AddComponent(/datum/component/toxic_buildup) + target.AddComponent(/datum/component/status_effect/toxic_buildup) knockback(target, fired_proj, max_range = 2) // Custom Specialist M4RA rounds @@ -217,7 +222,7 @@ shell_speed = AMMO_SPEED_TIER_6 /datum/ammo/bullet/rifle/heavy/spec/impact/on_hit_mob(mob/M, obj/projectile/P) - knockback(M, P, 32) // Can knockback basically at max range + knockback(M, P, 32) // Can knockback basically at max range max range is 24 tiles... /datum/ammo/bullet/rifle/heavy/spec/impact/knockback_effects(mob/living/living_mob, obj/projectile/fired_projectile) if(iscarbonsizexeno(living_mob)) diff --git a/code/datums/ammo/bullet/shotgun.dm b/code/datums/ammo/bullet/shotgun.dm index b2bbf607ce..cee7d0c9ab 100644 --- a/code/datums/ammo/bullet/shotgun.dm +++ b/code/datums/ammo/bullet/shotgun.dm @@ -407,6 +407,32 @@ penetration = ARMOR_PENETRATION_TIER_10 scatter = SCATTER_AMOUNT_TIER_4 +/* + 16 GAUGE SHOTGUN AMMO +*/ + +/datum/ammo/bullet/shotgun/light/breaching + name = "light breaching shell" + icon_state = "flechette" + handful_state = "breaching_shell" + multiple_handful_name = TRUE + bonus_projectiles_type = /datum/ammo/bullet/shotgun/light/breaching/spread + + accuracy_var_low = PROJECTILE_VARIANCE_TIER_6 + accuracy_var_high = PROJECTILE_VARIANCE_TIER_6 + damage = 55 + max_range = 5 + bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_3 + penetration = ARMOR_PENETRATION_TIER_1 + +/datum/ammo/bullet/shotgun/light/breaching/spread + name = "additional light breaching fragments" + bonus_projectiles_amount = 0 + accuracy_var_low = PROJECTILE_VARIANCE_TIER_6 + accuracy_var_high = PROJECTILE_VARIANCE_TIER_6 + scatter = SCATTER_AMOUNT_TIER_3 + damage = 10 + //Enormous shell for Van Bandolier's superheavy double-barreled hunting gun. /datum/ammo/bullet/shotgun/twobore name = "two bore bullet" diff --git a/code/datums/ammo/bullet/smg.dm b/code/datums/ammo/bullet/smg.dm index 3fa087972f..0e8983a33a 100644 --- a/code/datums/ammo/bullet/smg.dm +++ b/code/datums/ammo/bullet/smg.dm @@ -47,7 +47,7 @@ /datum/ammo/bullet/smg/ap/toxin/on_hit_mob(mob/M, obj/projectile/P) . = ..() - M.AddComponent(/datum/component/toxic_buildup, acid_per_hit) + M.AddComponent(/datum/component/status_effect/toxic_buildup, acid_per_hit) /datum/ammo/bullet/smg/ap/toxin/on_hit_turf(turf/T, obj/projectile/P) . = ..() diff --git a/code/datums/ammo/bullet/sniper.dm b/code/datums/ammo/bullet/sniper.dm index d8d751ca40..58fe6c3988 100644 --- a/code/datums/ammo/bullet/sniper.dm +++ b/code/datums/ammo/bullet/sniper.dm @@ -111,20 +111,167 @@ accuracy = HIT_ACCURACY_TIER_8 damage = 125 shell_speed = AMMO_SPEED_TIER_6 + penetration = ARMOR_PENETRATION_TIER_10 + ARMOR_PENETRATION_TIER_5 + +/datum/ammo/bullet/sniper/anti_materiel/proc/stopping_power_knockback(mob/living/living_mob, obj/projectile/fired_projectile) + var/stopping_power = min(CEILING((fired_projectile.damage/30), 1), 5) // This is from bullet damage, and does not take Aimed Shot into account. + + if(!living_mob || living_mob == fired_projectile.firer) + return stopping_power + + if(stopping_power > 2) + + // Depending on target size and damage, may apply a mini-stun to interrupt channels. Support your allies! + // For reference: Scout Impact stuns for up to 1s and slows for up to 10s, Shotgun stuns for 1.4s and slows for 4s + if(living_mob.mob_size >= MOB_SIZE_BIG) + // If above 90 damage, screenshake. This maxes out at (2,3), weaker than other impact rounds. + if(stopping_power > 3) + shake_camera(living_mob, (stopping_power - 3), (stopping_power - 2)) + if(HAS_TRAIT(living_mob, TRAIT_CHARGING) && isxeno(living_mob)) + to_chat(living_mob, SPAN_WARNING("A sudden massive impact strikes you, but your charge will not be stopped!")) + return stopping_power + if(stopping_power >= 4) + to_chat(living_mob, SPAN_XENOHIGHDANGER("You are knocked off-balance by the sudden massive impact!")) + if(living_mob.mob_size >= MOB_SIZE_IMMOBILE && !((fired_projectile.projectile_flags & PROJECTILE_BULLSEYE) && living_mob == fired_projectile.original)) // Queens and Crushers + return stopping_power // For Crushers and Queens, must be aimed at them. + living_mob.KnockDown(0.05) // Must deal more than 90 damage to mini-stun big mobs for 0.1s + // Can't interrupt a big mob unless it's completely alone with nothing blocking the shot. + else + to_chat(living_mob, SPAN_XENODANGER("You are shaken by the sudden heavy impact!")) + else + // If above 60 damage, screenshake. This maxes out at (3,4) like buckshot and heavy rounds. (1,2) (2,3) or (3,4) + shake_camera(living_mob, (stopping_power - 2), (stopping_power - 1)) + if(living_mob.body_position != LYING_DOWN) + to_chat(living_mob, SPAN_XENOHIGHDANGER("You are thrown back by the sudden massive force!")) + slam_back(living_mob, fired_projectile) + else + to_chat(living_mob, SPAN_XENODANGER("You are shaken by the sudden heavy impact!")) + + if(isxeno(living_mob)) + living_mob.KnockDown((stopping_power - 2)*0.05) // Up to 0.3s on a solo target. + else + if(living_mob.stamina) + living_mob.apply_stamina_damage(fired_projectile.ammo.damage, fired_projectile.def_zone, ARMOR_BULLET) + // Not sure what this comes out to exactly, but follows the example of other heavy ammo like slugs of applying full base damage as stamina damage. + else + living_mob.KnockDown((stopping_power - 2)*0.3) // Rare exception of up to 1.8s on non-xenos without stamina. + + return stopping_power + +/datum/ammo/bullet/sniper/anti_materiel/on_hit_mob(mob/target_mob,obj/projectile/aimed_projectile) + + var/mob/living/living_target = target_mob + + var/stopping_power = stopping_power_knockback(living_target, aimed_projectile) + + if((aimed_projectile.projectile_flags & PROJECTILE_BULLSEYE) && target_mob == aimed_projectile.original) + + var/amr_counter = 0 + var/datum/weakref/old_target = null // This is used to let xenos know when they're no longer targeted. + + var/mob/living/carbon/human/human_firer + var/image/focused_fire_marker_temp = image('icons/mob/hud/hud.dmi', target_mob, "hudeye") + + if(istype(aimed_projectile.firer, /mob/living/carbon/human)) // Preps the Focused Fire marker. + human_firer = aimed_projectile.firer + focused_fire_marker_temp.color = human_firer.assigned_squad?.chat_color + + if(target_mob.icon_size > world.icon_size) // Centers marker on their tile. + focused_fire_marker_temp.pixel_x = (target_mob.icon_size / 4) + + if(istype(aimed_projectile.shot_from, /obj/item/weapon/gun/rifle/sniper/XM43E1)) // Calculates the Focus Counter. + var/obj/item/weapon/gun/rifle/sniper/XM43E1/amr = aimed_projectile.shot_from + + old_target = amr.focused_fire_target + + if(target_mob == (amr.focused_fire_target?.resolve())) + if(amr.focused_fire_counter < 3) // Can stack up to twice. + amr.focused_fire_counter += 1 + else + amr.focused_fire_counter = 0 + else // If it's a new target + amr.focused_fire_counter = 0 // Stacks to 0 + if(human_firer && !(target_mob.is_dead())) + human_firer.client?.images -= human_firer.focused_fire_marker // Remove old marker + qdel(human_firer.focused_fire_marker) + human_firer.focused_fire_marker = focused_fire_marker_temp // Store new marker ref + human_firer.client?.images += focused_fire_marker_temp // Add new marker + + amr_counter = min(amr.focused_fire_counter + 1, 3) + amr.focused_fire_target = WEAKREF(target_mob) + + var/size_damage_mod = 0.8 // 1.8x vs Non-Xenos (225) + var/size_current_health_damage = 0 // % Current Health calculation, only used for Xeno calculations at the moment. + var/focused_fire_active = 0 // Whether to try and use focused fire calculations or not, for that kind of target. + var/slow_duration = stopping_power // Based on damage dealt. + + if(slow_duration <= 2) // Must be over 60 base damage. + slow_duration = 0 + + if(isxeno(target_mob)) + var/mob/living/carbon/xenomorph/target = target_mob + size_damage_mod -= 0.2 // Down to 1.6x damage, 200. + size_current_health_damage = 0.1 // 1.6x Damage + 10% current health (200 + 10%, 223 vs Runners) -/datum/ammo/bullet/sniper/anti_materiel/on_hit_mob(mob/M,obj/projectile/P) - if((P.projectile_flags & PROJECTILE_BULLSEYE) && M == P.original) - var/mob/living/L = M - var/size_damage_mod = 0.8 - if(isxeno(M)) - var/mob/living/carbon/xenomorph/target = M if(target.mob_size >= MOB_SIZE_XENO) - size_damage_mod += 0.6 + size_current_health_damage += 0.1 // 1.6x Damage + 20% current health + focused_fire_active = 1 // Focus Fire Required. Only deals 50% bonus damage on a first Aimed Shot, then 75%, then 100%. Resets with a successful aimed shot on another target. + slow_duration = max(slow_duration-1, 0) + if(target.mob_size >= MOB_SIZE_BIG) - size_damage_mod += 0.6 - L.apply_armoured_damage(damage*size_damage_mod, ARMOR_BULLET, BRUTE, null, penetration) - // 180% damage to all targets (225), 240% (300) against non-Runner xenos, and 300% against Big xenos (375). -Kaga - to_chat(P.firer, SPAN_WARNING("Bullseye!")) + size_damage_mod -= 0.6 // Down to 1x Damage. + size_current_health_damage += 0.1 // 1x Damage + 30% current health. + focused_fire_active = 1 + slow_duration = max(slow_duration-1, 0) + // Most T3s have around 650 to 700 HP, meaning the health modifier grants a MAXIMUM of around 195-210 damage for a total max of 320-335. This is fully focused (3 shots) and at max HP. + // Queen takes around 275 at max health and unfocused, 425 fully focused. + // At low health, does little more than a normal shot. Does WORSE than a normal shot if unfocused and hitting through blockers, all of which stack to reduce it. + + var/final_xeno_damage = ((damage * size_damage_mod) + ((target.health + damage) * size_current_health_damage)) + + if(focused_fire_active && amr_counter) // If this is a target that needs to be focus-fired and the gun supports it, reduce bonus damage to 50%, then 75%, then 100% + // If amr_counter is 0, then the gun likely doesn't have the tracker functions, so skip this and deal normal damage. + final_xeno_damage *= (0.25 + (0.25 * amr_counter)) + slow_duration *= (0.25 + (0.25 * amr_counter)) // 0-3s slow on Big mobs, based on Focus and falloff. + + living_target.apply_armoured_damage((final_xeno_damage), ARMOR_BULLET, BRUTE, null, penetration) + + else + living_target.apply_armoured_damage((damage*size_damage_mod), ARMOR_BULLET, BRUTE, null, penetration) + + if(slow_duration && (living_target.mob_size != MOB_SIZE_XENO_SMALL) && !(HAS_TRAIT(living_target, TRAIT_CHARGING))) // Runners and Charging Crushers are not slowed. + living_target.Slow((slow_duration / 2)) + if(slow_duration >= 2) + living_target.Superslow((slow_duration / 4)) + if(stopping_power > 3) + living_target.Daze(0.1) // Visual cue that you got hit by something HARD. + + // Base 1.8x damage to non-xeno targets (225), 1.6x + 10% current against Runners (223), 1.6x + 20% current health against most non-Runner xenos, and 1x + 30% current health against Big xenos. -Kaga + // This applies after pen reductions. After hitting 1 other thing, it deals 80% damage, or 40% after hitting a dense wall or big xeno. + + if((focused_fire_active || isxeno(target_mob)) && !(target_mob.is_dead())) + switch(amr_counter) + if(1) + to_chat(aimed_projectile.firer, SPAN_WARNING("One hit! You begin to carefully track the target's movements.")) + if(isxeno(target_mob) && isxeno(old_target?.resolve())) + var/mob/living/carbon/xenomorph/old_xeno = old_target.resolve() + var/mob/living/carbon/xenomorph/new_xeno = target_mob + if((old_xeno.hive == new_xeno.hive) && !(old_xeno.stat)) // Must be in same hive and conscious + to_chat(old_xeno,SPAN_XENOLEADER("The feeling of looming danger fades as we sense that another sister has been targeted instead.")) + if(2) + to_chat(aimed_projectile.firer, SPAN_WARNING("Two hits! You're starting to get a good read on the target's patterns.")) + if(3) + to_chat(aimed_projectile.firer, SPAN_WARNING("Bullseye! You're fully focused on the target. You notice they are starting to change their patterns.")) + else + to_chat(aimed_projectile.firer, SPAN_WARNING("Bullseye!")) + else + to_chat(aimed_projectile.firer, SPAN_WARNING("Bullseye!")) + +/datum/ammo/bullet/sniper/anti_materiel/set_bullet_traits() + . = ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_penetrating/weak) + )) /datum/ammo/bullet/sniper/anti_materiel/vulture damage = 400 // Fully intended to vaporize anything smaller than a mini cooper @@ -144,6 +291,28 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_penetrating/heavy) )) +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target + name = "holo-targeting anti-materiel sniper bullet" + damage = 60 // it's a big bullet but its purpose is to support marines, not to kill enemies by itself + /// inflicts this many holo stacks per bullet hit + var/holo_stacks = 333 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 233 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 2 + +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) + playsound(hit_mob, 'sound/weapons/gun_vulture_mark.ogg', 40) + to_chat(hit_mob, isxeno(hit_mob) ? SPAN_XENOHIGHDANGER("It feels as if we were MARKED FOR DEATH!") : SPAN_HIGHDANGER("It feels as if you were MARKED FOR DEATH!")) + hit_mob.balloon_alert_to_viewers("marked for death!") + +// the effect should be limited to one target, with IFF to compensate how hard it will be to hit these shots +/datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target/set_bullet_traits() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) + )) + /datum/ammo/bullet/sniper/elite name = "supersonic sniper bullet" @@ -151,6 +320,7 @@ accuracy = HIT_ACCURACY_TIER_8 damage = 150 shell_speed = AMMO_SPEED_TIER_6 + AMMO_SPEED_TIER_2 + penetration = ARMOR_PENETRATION_TIER_10 + ARMOR_PENETRATION_TIER_5 /datum/ammo/bullet/sniper/elite/set_bullet_traits() . = ..() diff --git a/code/datums/ammo/bullet/special_ammo.dm b/code/datums/ammo/bullet/special_ammo.dm index 3a592fc8b2..4f9a945fad 100644 --- a/code/datums/ammo/bullet/special_ammo.dm +++ b/code/datums/ammo/bullet/special_ammo.dm @@ -46,12 +46,16 @@ /datum/ammo/bullet/smartgun/holo_target //Royal marines smartgun bullet has only diff between regular ammo is this one does holostacks name = "holo-targeting smartgun bullet" damage = 30 - ///Stuff for the HRP holotargetting stacks + /// inflicts this many holo stacks per bullet hit var/holo_stacks = 15 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 -/datum/ammo/bullet/smartgun/holo_target/on_hit_mob(mob/M, obj/projectile/P) +/datum/ammo/bullet/smartgun/holo_target/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) /datum/ammo/bullet/smartgun/holo_target/ap name = "armor-piercing smartgun bullet" @@ -114,6 +118,9 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff) )) +/datum/ammo/bullet/machinegun/doorgun + flags_ammo_behavior = AMMO_BALLISTIC | AMMO_IGNORE_COVER + /datum/ammo/bullet/machinegun/auto // for M2C, automatic variant for M56D, stats for bullet should always be moderately overtuned to fulfill its ultra-offense + flank-push purpose name = "heavy machinegun bullet" @@ -148,15 +155,10 @@ RegisterSignal(SSdcs, COMSIG_GLOB_MODE_PRESETUP, PROC_REF(setup_hvh_damage)) /datum/ammo/bullet/minigun/proc/setup_hvh_damage() + SIGNAL_HANDLER if(MODE_HAS_FLAG(MODE_FACTION_CLASH)) damage = 15 -/datum/ammo/bullet/minigun/tank - accuracy = -HIT_ACCURACY_TIER_1 - accuracy_var_low = PROJECTILE_VARIANCE_TIER_8 - accuracy_var_high = PROJECTILE_VARIANCE_TIER_8 - accurate_range = 12 - /datum/ammo/bullet/m60 name = "Mk70 bullet" headshot_state = HEADSHOT_OVERLAY_MEDIUM diff --git a/code/datums/ammo/bullet/tank.dm b/code/datums/ammo/bullet/tank.dm index 7069f8dc28..4c9c2a29b8 100644 --- a/code/datums/ammo/bullet/tank.dm +++ b/code/datums/ammo/bullet/tank.dm @@ -4,9 +4,12 @@ //====== */ +//Autocannon Ammo// + /datum/ammo/bullet/tank/flak name = "flak autocannon bullet" icon_state = "autocannon" + sound_hit = 'sound/weapons/sting_boom_small1.ogg' damage_falloff = 0 flags_ammo_behavior = AMMO_BALLISTIC accurate_range_min = 4 @@ -72,3 +75,30 @@ for(var/mob/living/carbon/L in T) if(L.stat == CONSCIOUS && L.mob_size <= MOB_SIZE_XENO) shake_camera(L, 1, 1) + +//Minigun Ammo// + +/datum/ammo/bullet/tank/minigun + name = "minigun bullet" + headshot_state = HEADSHOT_OVERLAY_MEDIUM + icon_state = "bullet_large" + + accuracy = -HIT_ACCURACY_TIER_1 + accuracy_var_low = PROJECTILE_VARIANCE_TIER_8 + accuracy_var_high = PROJECTILE_VARIANCE_TIER_8 + accurate_range = 12 + damage = 40 + penetration = ARMOR_PENETRATION_TIER_6 + damage_armor_punch = 1 + +/datum/ammo/bullet/tank/minigun/New() + ..() + if(SSticker.mode && MODE_HAS_FLAG(MODE_FACTION_CLASH)) + damage = 15 + else if(SSticker.current_state < GAME_STATE_PLAYING) + RegisterSignal(SSdcs, COMSIG_GLOB_MODE_PRESETUP, PROC_REF(setup_hvh_damage)) + +/datum/ammo/bullet/tank/minigun/proc/setup_hvh_damage() + SIGNAL_HANDLER + if(MODE_HAS_FLAG(MODE_FACTION_CLASH)) + damage = 15 diff --git a/code/datums/ammo/energy.dm b/code/datums/ammo/energy.dm index 27d2b7d4e0..6eb865034c 100644 --- a/code/datums/ammo/energy.dm +++ b/code/datums/ammo/energy.dm @@ -28,16 +28,16 @@ icon_state = "stun" damage_type = OXY flags_ammo_behavior = AMMO_ENERGY|AMMO_IGNORE_RESIST|AMMO_ALWAYS_FF //Not that ignoring will do much right now. - stamina_damage = 45 accuracy = HIT_ACCURACY_TIER_8 shell_speed = AMMO_SPEED_TIER_1 // Slightly faster hit_effect_color = "#FFFF00" -/datum/ammo/energy/taser/on_hit_mob(mob/M, obj/projectile/P) - if(ishuman(M)) - var/mob/living/carbon/human/H = M - H.disable_special_items() // Disables scout cloak +/datum/ammo/energy/taser/on_hit_mob(mob/mobs, obj/projectile/P) + if(ishuman(mobs)) + var/mob/living/carbon/human/humanus = mobs + humanus.disable_special_items() // Disables scout cloak + humanus.make_jittery(40) /datum/ammo/energy/taser/precise name = "precise taser bolt" @@ -204,7 +204,7 @@ /datum/ammo/energy/yautja/caster/sphere/stun/proc/do_area_stun(obj/projectile/P) playsound(P, 'sound/weapons/wave.ogg', 75, 1, 25) - for (var/mob/living/carbon/M in view(src.stun_range, get_turf(P))) + FOR_DVIEW(var/mob/living/carbon/M, src.stun_range, get_turf(P), HIDE_INVISIBLE_OBSERVER) var/stun_time = src.stun_time log_attack("[key_name(M)] was stunned by a plasma immobilizer from [key_name(P.firer)] at [get_area(P)]") if (isyautja(M)) @@ -214,6 +214,7 @@ to_chat(M, SPAN_DANGER("A powerful electric shock ripples through your body, freezing you in place!")) M.apply_effect(stun_time, STUN) M.apply_effect(stun_time, WEAKEN) + FOR_DVIEW_END /datum/ammo/energy/yautja/rifle/bolt name = "plasma rifle bolt" @@ -229,4 +230,11 @@ if(isxeno(hit_mob)) var/mob/living/carbon/xenomorph/xeno = hit_mob xeno.apply_damage(damage * 0.75, BURN) - xeno.interference = 30 + xeno.AddComponent(/datum/component/status_effect/interference, 30, 30) + +/datum/ammo/energy/yautja/rifle/bolt/set_bullet_traits() + . = ..() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) + )) + diff --git a/code/datums/ammo/misc.dm b/code/datums/ammo/misc.dm index 2fcc92d7d2..8adb85c490 100644 --- a/code/datums/ammo/misc.dm +++ b/code/datums/ammo/misc.dm @@ -49,13 +49,26 @@ drop_flame(get_turf(P), P.weapon_cause_data) /datum/ammo/flamethrower/tank_flamer - flamer_reagent_type = /datum/reagent/napalm/blue + flamer_reagent_id = "highdamagenapalm" + max_range = 8 + +/datum/ammo/flamethrower/tank_flamer/drop_flame(turf/turf, datum/cause_data/cause_data) + if(!istype(turf)) + return + + var/datum/reagent/napalm/high_damage/reagent = new() + new /obj/flamer_fire(turf, cause_data, reagent, 1) + + var/datum/effect_system/smoke_spread/landingsmoke = new /datum/effect_system/smoke_spread + landingsmoke.set_up(1, 0, turf, null, 4, cause_data) + landingsmoke.start() + landingsmoke = null max_range = 8 /datum/ammo/flamethrower/sentry_flamer flags_ammo_behavior = AMMO_IGNORE_ARMOR|AMMO_IGNORE_COVER|AMMO_FLAME - flamer_reagent_type = /datum/reagent/napalm/blue + flamer_reagent_id = "napalmx" accuracy = HIT_ACCURACY_TIER_8 accurate_range = 6 @@ -97,6 +110,15 @@ R.durationfire = BURN_TIME_INSTANT new /obj/flamer_fire(T, cause_data, R, 0) +/datum/ammo/flamethrower/sentry_flamer/wy + name = "sticky fire" + flamer_reagent_id = "stickynapalm" + shell_speed = AMMO_SPEED_TIER_4 + +/datum/ammo/flamethrower/sentry_flamer/upp + name = "gel fire" + flamer_reagent_id = "napalmgel" + /datum/ammo/flare name = "flare" ping = null //no bounce off. @@ -115,7 +137,7 @@ /datum/ammo/flare/set_bullet_traits() . = ..() LAZYADD(traits_to_give, list( - BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary, stacks = 2.5) )) /datum/ammo/flare/on_hit_mob(mob/M,obj/projectile/P) @@ -158,11 +180,13 @@ name = "starshell ash" icon_state = "starshell_bullet" max_range = 5 + damage = 2.5 flare_type = /obj/item/device/flashlight/flare/on/starshell_ash /datum/ammo/flare/starshell/set_bullet_traits() LAZYADD(traits_to_give, list( - BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff, /datum/element/bullet_trait_incendiary) + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff), + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary, stacks = 1) )) /datum/ammo/souto @@ -180,7 +204,7 @@ accurate_range = 12 shell_speed = AMMO_SPEED_TIER_1 -/datum/ammo/souto/on_embed(mob/embedded_mob, obj/limb/target_organ) +/datum/ammo/souto/on_embed(mob/embedded_mob, obj/limb/target_organ, silent = FALSE) if(ishuman(embedded_mob) && !isyautja(embedded_mob)) if(istype(target_organ)) target_organ.embed(new can_type) @@ -189,11 +213,11 @@ if(!M || M == P.firer) return if(M.throw_mode && !M.get_active_hand()) //empty active hand and we're in throw mode. If so we catch the can. if(!M.is_mob_incapacitated()) // People who are not able to catch cannot catch. - if(P.contents.len == 1) + if(length(P.contents) == 1) for(var/obj/item/reagent_container/food/drinks/cans/souto/S in P.contents) M.put_in_active_hand(S) - for(var/mob/O in viewers(world_view_size, P)) //find all people in view. - O.show_message(SPAN_DANGER("[M] catches the [S]!"), SHOW_MESSAGE_VISIBLE) //Tell them the can was caught. + for(var/mob/O in viewers(GLOB.world_view_size, P)) //find all people in view. + O.show_message(SPAN_DANGER("[M] catches [S]!"), SHOW_MESSAGE_VISIBLE) //Tell them the can was caught. return //Can was caught. if(ishuman(M)) var/mob/living/carbon/human/H = M @@ -203,7 +227,7 @@ H.apply_effect(15, DAZE) H.apply_effect(15, SLOW) shake_camera(H, 2, 1) - if(P.contents.len) + if(length(P.contents)) drop_can(P.loc, P) //We make a can at the location. /datum/ammo/souto/on_hit_obj(obj/O,obj/projectile/P) @@ -219,7 +243,7 @@ drop_can(P.loc, P) //We make a can at the location. /datum/ammo/souto/proc/drop_can(loc, obj/projectile/P) - if(P.contents.len) + if(length(P.contents)) for(var/obj/item/I in P.contents) I.forceMove(loc) randomize_projectile(P) diff --git a/code/datums/ammo/rocket.dm b/code/datums/ammo/rocket.dm index 7d88945469..45ba091df6 100644 --- a/code/datums/ammo/rocket.dm +++ b/code/datums/ammo/rocket.dm @@ -28,26 +28,26 @@ smoke = null . = ..() -/datum/ammo/rocket/on_hit_mob(mob/M, obj/projectile/P) - cell_explosion(get_turf(M), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, get_turf(M)) - if(ishuman_strict(M)) // No yautya or synths. Makes humans gib on direct hit. - M.ex_act(350, P.dir, P.weapon_cause_data, 100) +/datum/ammo/rocket/on_hit_mob(mob/mob, obj/projectile/projectile) + cell_explosion(get_turf(mob), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, get_turf(mob)) + if(ishuman_strict(mob)) // No yautya or synths. Makes humans gib on direct hit. + mob.ex_act(350, null, projectile.weapon_cause_data, 100) smoke.start() -/datum/ammo/rocket/on_hit_obj(obj/O, obj/projectile/P) - cell_explosion(get_turf(O), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, get_turf(O)) +/datum/ammo/rocket/on_hit_obj(obj/object, obj/projectile/projectile) + cell_explosion(get_turf(object), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, get_turf(object)) smoke.start() -/datum/ammo/rocket/on_hit_turf(turf/T, obj/projectile/P) - cell_explosion(T, 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, T) +/datum/ammo/rocket/on_hit_turf(turf/turf, obj/projectile/projectile) + cell_explosion(turf, 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, turf) smoke.start() -/datum/ammo/rocket/do_at_max_range(obj/projectile/P) - cell_explosion(get_turf(P), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, get_turf(P)) +/datum/ammo/rocket/do_at_max_range(obj/projectile/projectile) + cell_explosion(get_turf(projectile), 150, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, get_turf(projectile)) smoke.start() /datum/ammo/rocket/ap @@ -62,62 +62,65 @@ damage = 10 penetration= ARMOR_PENETRATION_TIER_10 -/datum/ammo/rocket/ap/on_hit_mob(mob/M, obj/projectile/P) - var/turf/T = get_turf(M) - M.ex_act(150, P.dir, P.weapon_cause_data, 100) - M.apply_effect(2, PARALYZE) - if(ishuman_strict(M)) // No yautya or synths. Makes humans gib on direct hit. - M.ex_act(300, P.dir, P.weapon_cause_data, 100) - cell_explosion(T, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, T) + +/datum/ammo/rocket/ap/on_hit_mob(mob/mob, obj/projectile/projectile) + var/turf/turf = get_turf(mob) + mob.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) + mob.apply_effect(3, WEAKEN) + mob.apply_effect(3, PARALYZE) + if(ishuman_strict(mob)) // No yautya or synths. Makes humans gib on direct hit. + mob.ex_act(300, null, projectile.weapon_cause_data, 100) + cell_explosion(turf, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, turf) smoke.start() -/datum/ammo/rocket/ap/on_hit_obj(obj/O, obj/projectile/P) - var/turf/T = get_turf(O) - O.ex_act(150, P.dir, P.weapon_cause_data, 100) - cell_explosion(T, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, T) +/datum/ammo/rocket/ap/on_hit_obj(obj/object, obj/projectile/projectile) + var/turf/turf = get_turf(object) + object.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) + cell_explosion(turf, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, turf) smoke.start() -/datum/ammo/rocket/ap/on_hit_turf(turf/T, obj/projectile/P) +/datum/ammo/rocket/ap/on_hit_turf(turf/turf, obj/projectile/projectile) var/hit_something = 0 - for(var/mob/M in T) - M.ex_act(150, P.dir, P.weapon_cause_data, 100) - M.apply_effect(4, PARALYZE) + for(var/mob/mob in turf) + mob.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) + mob.apply_effect(3, WEAKEN) + mob.apply_effect(3, PARALYZE) hit_something = 1 continue if(!hit_something) - for(var/obj/O in T) - if(O.density) - O.ex_act(150, P.dir, P.weapon_cause_data, 100) + for(var/obj/object in turf) + if(object.density) + object.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) hit_something = 1 continue if(!hit_something) - T.ex_act(150, P.dir, P.weapon_cause_data, 200) + turf.ex_act(150, projectile.dir, projectile.weapon_cause_data, 200) - cell_explosion(T, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, T) + cell_explosion(turf, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, turf) smoke.start() -/datum/ammo/rocket/ap/do_at_max_range(obj/projectile/P) - var/turf/T = get_turf(P) +/datum/ammo/rocket/ap/do_at_max_range(obj/projectile/projectile) + var/turf/turf = get_turf(projectile) var/hit_something = 0 - for(var/mob/M in T) - M.ex_act(250, P.dir, P.weapon_cause_data, 100) - M.apply_effect(2, WEAKEN) - M.apply_effect(2, PARALYZE) + for(var/mob/mob in turf) + mob.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) + mob.apply_effect(3, WEAKEN) + mob.apply_effect(3, PARALYZE) hit_something = 1 - continue + break if(!hit_something) - for(var/obj/O in T) - if(O.density) - O.ex_act(250, P.dir, P.weapon_cause_data, 100) + for(var/obj/object in turf) + if(object.density) + object.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) hit_something = 1 - continue + break if(!hit_something) - T.ex_act(250, P.dir, P.weapon_cause_data) - cell_explosion(T, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - smoke.set_up(1, T) + turf.ex_act(150, projectile.dir, projectile.weapon_cause_data) + cell_explosion(turf, 100, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + smoke.set_up(1, turf) smoke.start() /datum/ammo/rocket/ap/anti_tank @@ -127,16 +130,16 @@ shrapnel_chance = 5 shrapnel_type = /obj/item/large_shrapnel/at_rocket_dud -/datum/ammo/rocket/ap/anti_tank/on_hit_obj(obj/O, obj/projectile/P) - if(istype(O, /obj/vehicle/multitile)) - var/obj/vehicle/multitile/M = O - M.next_move = world.time + vehicle_slowdown_time - playsound(M, 'sound/effects/meteorimpact.ogg', 35) - M.at_munition_interior_explosion_effect(cause_data = create_cause_data("Anti-Tank Rocket")) - M.interior_crash_effect() - var/turf/T = get_turf(M.loc) - M.ex_act(150, P.dir, P.weapon_cause_data, 100) - smoke.set_up(1, T) +/datum/ammo/rocket/ap/anti_tank/on_hit_obj(obj/object, obj/projectile/projectile) + if(istype(object, /obj/vehicle/multitile)) + var/obj/vehicle/multitile/mob = object + mob.next_move = world.time + vehicle_slowdown_time + playsound(mob, 'sound/effects/meteorimpact.ogg', 35) + mob.at_munition_interior_explosion_effect(cause_data = create_cause_data("Anti-Tank Rocket")) + mob.interior_crash_effect() + var/turf/turf = get_turf(mob.loc) + mob.ex_act(150, projectile.dir, projectile.weapon_cause_data, 100) + smoke.set_up(1, turf) smoke.start() return return ..() @@ -155,21 +158,21 @@ damage = 200 shell_speed = AMMO_SPEED_TIER_3 -/datum/ammo/rocket/ltb/on_hit_mob(mob/M, obj/projectile/P) - cell_explosion(get_turf(M), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - cell_explosion(get_turf(M), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) +/datum/ammo/rocket/ltb/on_hit_mob(mob/mob, obj/projectile/projectile) + cell_explosion(get_turf(mob), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + cell_explosion(get_turf(mob), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) -/datum/ammo/rocket/ltb/on_hit_obj(obj/O, obj/projectile/P) - cell_explosion(get_turf(O), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - cell_explosion(get_turf(O), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) +/datum/ammo/rocket/ltb/on_hit_obj(obj/object, obj/projectile/projectile) + cell_explosion(get_turf(object), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + cell_explosion(get_turf(object), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) -/datum/ammo/rocket/ltb/on_hit_turf(turf/T, obj/projectile/P) - cell_explosion(get_turf(T), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - cell_explosion(get_turf(T), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) +/datum/ammo/rocket/ltb/on_hit_turf(turf/turf, obj/projectile/projectile) + cell_explosion(get_turf(turf), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + cell_explosion(get_turf(turf), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) -/datum/ammo/rocket/ltb/do_at_max_range(obj/projectile/P) - cell_explosion(get_turf(P), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) - cell_explosion(get_turf(P), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, P.weapon_cause_data) +/datum/ammo/rocket/ltb/do_at_max_range(obj/projectile/projectile) + cell_explosion(get_turf(projectile), 220, 50, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) + cell_explosion(get_turf(projectile), 200, 100, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, projectile.weapon_cause_data) /datum/ammo/rocket/wp name = "white phosphorous rocket" @@ -187,30 +190,30 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) )) -/datum/ammo/rocket/wp/drop_flame(turf/T, datum/cause_data/cause_data) - playsound(T, 'sound/weapons/gun_flamethrower3.ogg', 75, 1, 7) - if(!istype(T)) return - smoke.set_up(1, T) +/datum/ammo/rocket/wp/drop_flame(turf/turf, datum/cause_data/cause_data) + playsound(turf, 'sound/weapons/gun_flamethrower3.ogg', 75, 1, 7) + if(!istype(turf)) return + smoke.set_up(1, turf) smoke.start() - var/datum/reagent/napalm/blue/R = new() - new /obj/flamer_fire(T, cause_data, R, 3) + var/datum/reagent/napalm/blue/reagent = new() + new /obj/flamer_fire(turf, cause_data, reagent, 3) var/datum/effect_system/smoke_spread/phosphorus/landingSmoke = new /datum/effect_system/smoke_spread/phosphorus - landingSmoke.set_up(3, 0, T, null, 6, cause_data) + landingSmoke.set_up(3, 0, turf, null, 6, cause_data) landingSmoke.start() landingSmoke = null -/datum/ammo/rocket/wp/on_hit_mob(mob/M, obj/projectile/P) - drop_flame(get_turf(M), P.weapon_cause_data) +/datum/ammo/rocket/wp/on_hit_mob(mob/mob, obj/projectile/projectile) + drop_flame(get_turf(mob), projectile.weapon_cause_data) -/datum/ammo/rocket/wp/on_hit_obj(obj/O, obj/projectile/P) - drop_flame(get_turf(O), P.weapon_cause_data) +/datum/ammo/rocket/wp/on_hit_obj(obj/object, obj/projectile/projectile) + drop_flame(get_turf(object), projectile.weapon_cause_data) -/datum/ammo/rocket/wp/on_hit_turf(turf/T, obj/projectile/P) - drop_flame(T, P.weapon_cause_data) +/datum/ammo/rocket/wp/on_hit_turf(turf/turf, obj/projectile/projectile) + drop_flame(turf, projectile.weapon_cause_data) -/datum/ammo/rocket/wp/do_at_max_range(obj/projectile/P) - drop_flame(get_turf(P), P.weapon_cause_data) +/datum/ammo/rocket/wp/do_at_max_range(obj/projectile/projectile) + drop_flame(get_turf(projectile), projectile.weapon_cause_data) /datum/ammo/rocket/wp/upp name = "extreme-intensity incendiary rocket" @@ -228,25 +231,25 @@ BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary) )) -/datum/ammo/rocket/wp/upp/drop_flame(turf/T, datum/cause_data/cause_data) - playsound(T, 'sound/weapons/gun_flamethrower3.ogg', 75, 1, 7) - if(!istype(T)) return - smoke.set_up(1, T) +/datum/ammo/rocket/wp/upp/drop_flame(turf/turf, datum/cause_data/cause_data) + playsound(turf, 'sound/weapons/gun_flamethrower3.ogg', 75, 1, 7) + if(!istype(turf)) return + smoke.set_up(1, turf) smoke.start() - var/datum/reagent/napalm/upp/R = new() - new /obj/flamer_fire(T, cause_data, R, 3) + var/datum/reagent/napalm/upp/reagent = new() + new /obj/flamer_fire(turf, cause_data, reagent, 3) -/datum/ammo/rocket/wp/upp/on_hit_mob(mob/M, obj/projectile/P) - drop_flame(get_turf(M), P.weapon_cause_data) +/datum/ammo/rocket/wp/upp/on_hit_mob(mob/mob, obj/projectile/projectile) + drop_flame(get_turf(mob), projectile.weapon_cause_data) -/datum/ammo/rocket/wp/upp/on_hit_obj(obj/O, obj/projectile/P) - drop_flame(get_turf(O), P.weapon_cause_data) +/datum/ammo/rocket/wp/upp/on_hit_obj(obj/object, obj/projectile/projectile) + drop_flame(get_turf(object), projectile.weapon_cause_data) -/datum/ammo/rocket/wp/upp/on_hit_turf(turf/T, obj/projectile/P) - drop_flame(T, P.weapon_cause_data) +/datum/ammo/rocket/wp/upp/on_hit_turf(turf/turf, obj/projectile/projectile) + drop_flame(turf, projectile.weapon_cause_data) -/datum/ammo/rocket/wp/upp/do_at_max_range(obj/projectile/P) - drop_flame(get_turf(P), P.weapon_cause_data) +/datum/ammo/rocket/wp/upp/do_at_max_range(obj/projectile/projectile) + drop_flame(get_turf(projectile), projectile.weapon_cause_data) /datum/ammo/rocket/wp/quad name = "thermobaric rocket" @@ -256,45 +259,47 @@ max_range = 32 shell_speed = AMMO_SPEED_TIER_3 -/datum/ammo/rocket/wp/quad/on_hit_mob(mob/M, obj/projectile/P) - drop_flame(get_turf(M), P.weapon_cause_data) - explosion(P.loc, -1, 2, 4, 5, , , ,P.weapon_cause_data) +/datum/ammo/rocket/wp/quad/on_hit_mob(mob/mob, obj/projectile/projectile) + drop_flame(get_turf(mob), projectile.weapon_cause_data) + explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data) -/datum/ammo/rocket/wp/quad/on_hit_obj(obj/O, obj/projectile/P) - drop_flame(get_turf(O), P.weapon_cause_data) - explosion(P.loc, -1, 2, 4, 5, , , ,P.weapon_cause_data) +/datum/ammo/rocket/wp/quad/on_hit_obj(obj/object, obj/projectile/projectile) + drop_flame(get_turf(object), projectile.weapon_cause_data) + explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data) -/datum/ammo/rocket/wp/quad/on_hit_turf(turf/T, obj/projectile/P) - drop_flame(T, P.weapon_cause_data) - explosion(P.loc, -1, 2, 4, 5, , , ,P.weapon_cause_data) +/datum/ammo/rocket/wp/quad/on_hit_turf(turf/turf, obj/projectile/projectile) + drop_flame(turf, projectile.weapon_cause_data) + explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data) -/datum/ammo/rocket/wp/quad/do_at_max_range(obj/projectile/P) - drop_flame(get_turf(P), P.weapon_cause_data) - explosion(P.loc, -1, 2, 4, 5, , , ,P.weapon_cause_data) +/datum/ammo/rocket/wp/quad/do_at_max_range(obj/projectile/projectile) + drop_flame(get_turf(projectile), projectile.weapon_cause_data) + explosion(projectile.loc, -1, 2, 4, 5, , , ,projectile.weapon_cause_data) /datum/ammo/rocket/custom name = "custom rocket" + accurate_range = 8 + max_range = 8 -/datum/ammo/rocket/custom/proc/prime(atom/A, obj/projectile/P) - var/obj/item/weapon/gun/launcher/rocket/launcher = P.shot_from +/datum/ammo/rocket/custom/proc/prime(atom/atom, obj/projectile/projectile) + var/obj/item/weapon/gun/launcher/rocket/launcher = projectile.shot_from var/obj/item/ammo_magazine/rocket/custom/rocket = launcher.current_mag if(rocket.locked && rocket.warhead && rocket.warhead.detonator) if(rocket.fuel && rocket.fuel.reagents.get_reagent_amount(rocket.fuel_type) >= rocket.fuel_requirement) - rocket.forceMove(P.loc) - rocket.warhead.cause_data = P.weapon_cause_data + rocket.forceMove(projectile.loc) + rocket.warhead.cause_data = projectile.weapon_cause_data rocket.warhead.prime() qdel(rocket) - smoke.set_up(1, get_turf(A)) + smoke.set_up(1, get_turf(atom)) smoke.start() -/datum/ammo/rocket/custom/on_hit_mob(mob/M, obj/projectile/P) - prime(M, P) +/datum/ammo/rocket/custom/on_hit_mob(mob/mob, obj/projectile/projectile) + prime(mob, projectile) -/datum/ammo/rocket/custom/on_hit_obj(obj/O, obj/projectile/P) - prime(O, P) +/datum/ammo/rocket/custom/on_hit_obj(obj/object, obj/projectile/projectile) + prime(object, projectile) -/datum/ammo/rocket/custom/on_hit_turf(turf/T, obj/projectile/P) - prime(T, P) +/datum/ammo/rocket/custom/on_hit_turf(turf/turf, obj/projectile/projectile) + prime(turf, projectile) -/datum/ammo/rocket/custom/do_at_max_range(obj/projectile/P) - prime(null, P) +/datum/ammo/rocket/custom/do_at_max_range(obj/projectile/projectile) + prime(null, projectile) diff --git a/code/datums/ammo/shrapnel.dm b/code/datums/ammo/shrapnel.dm index e27caa4b27..836e142489 100644 --- a/code/datums/ammo/shrapnel.dm +++ b/code/datums/ammo/shrapnel.dm @@ -43,10 +43,17 @@ shrapnel_chance = 0 shell_speed = AMMO_SPEED_TIER_3//she fast af boi penetration = ARMOR_PENETRATION_TIER_5 - -/datum/ammo/bullet/shrapnel/hornet_rounds/on_hit_mob(mob/M, obj/projectile/P) + /// inflicts this many holo stacks per bullet hit + var/holo_stacks = 10 + /// modifies the default cap limit of 100 by this amount + var/bonus_damage_cap_increase = 0 + /// multiplies the default drain of 5 holo stacks per second by this amount + var/stack_loss_multiplier = 1 + +/datum/ammo/bullet/shrapnel/hornet_rounds/on_hit_mob(mob/hit_mob, obj/projectile/bullet) . = ..() - M.AddComponent(/datum/component/bonus_damage_stack, 10, world.time) + hit_mob.AddComponent(/datum/component/bonus_damage_stack, holo_stacks, world.time, bonus_damage_cap_increase, stack_loss_multiplier) + /datum/ammo/bullet/shrapnel/incendiary name = "flaming shrapnel" @@ -115,16 +122,36 @@ name = "glass shrapnel" icon_state = "shrapnel_glass" -/datum/ammo/bullet/shrapnel/light/effect/ // no damage, but looks bright and neat - name = "sparks" - - damage = 1 // Tickle tickle +/particles/shrapnel + icon = 'icons/obj/items/weapons/projectiles.dmi' + icon_state = "shrapnel_bright2" + width = 1000 + height = 1000 + count = 100 + spawning = 0 + lifespan = 0.6 SECONDS + fadein = 0.2 SECONDS + velocity = generator("square", 32 * 0.85, 32 * 1.15) + rotation = generator("num", 0, 359) + +/obj/shrapnel_effect + anchored = TRUE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + unacidable = TRUE + blocks_emissive = EMISSIVE_BLOCK_GENERIC + +/obj/shrapnel_effect/New() + . = ..() + particles = new /particles/shrapnel + particles.spawning = rand(5,9) + rand(5,9) + addtimer(CALLBACK(src, PROC_REF(stop)), 0.1 SECONDS) + QDEL_IN(src, 0.9 SECONDS) -/datum/ammo/bullet/shrapnel/light/effect/ver1 - icon_state = "shrapnel_bright1" +/obj/shrapnel_effect/proc/stop() + particles.spawning = 0 -/datum/ammo/bullet/shrapnel/light/effect/ver2 - icon_state = "shrapnel_bright2" +/obj/shrapnel_effect/get_applying_acid_time() + return -1 /datum/ammo/bullet/shrapnel/jagged shrapnel_chance = SHRAPNEL_CHANCE_TIER_2 diff --git a/code/datums/ammo/xeno.dm b/code/datums/ammo/xeno.dm index 654ab88c7a..7b5c8ee712 100644 --- a/code/datums/ammo/xeno.dm +++ b/code/datums/ammo/xeno.dm @@ -186,7 +186,7 @@ /datum/ammo/xeno/acid/prae_nade // Used by base prae's acid nade name = "acid scatter" - flags_ammo_behavior = AMMO_STOPPED_BY_COVER + flags_ammo_behavior = AMMO_ACIDIC|AMMO_XENO|AMMO_STOPPED_BY_COVER accuracy = HIT_ACCURACY_TIER_5 accurate_range = 32 max_range = 4 @@ -363,7 +363,7 @@ name = "tail hook" icon_state = "none" ping = null - flags_ammo_behavior = AMMO_XENO|AMMO_SKIPS_ALIENS|AMMO_STOPPED_BY_COVER|AMMO_IGNORE_ARMOR + flags_ammo_behavior = AMMO_XENO|AMMO_SKIPS_ALIENS|AMMO_STOPPED_BY_COVER damage_type = BRUTE damage = XENO_DAMAGE_TIER_5 @@ -386,7 +386,8 @@ target.overlays += tail_image new /datum/effects/xeno_slow(target, fired_proj.firer, ttl = 0.5 SECONDS) - target.apply_effect(0.5, STUN) + + target.apply_effect(0.5, ROOT) INVOKE_ASYNC(target, TYPE_PROC_REF(/atom/movable, throw_atom), fired_proj.firer, get_dist(fired_proj.firer, target)-1, SPEED_VERY_FAST) qdel(tail_beam) diff --git a/code/datums/autocells/auto_cell.dm b/code/datums/autocells/auto_cell.dm index accc5f1801..fb679c5667 100644 --- a/code/datums/autocells/auto_cell.dm +++ b/code/datums/autocells/auto_cell.dm @@ -37,7 +37,7 @@ in_turf = T LAZYADD(in_turf.autocells, src) - cellauto_cells += src + GLOB.cellauto_cells += src birth() @@ -48,7 +48,7 @@ LAZYREMOVE(in_turf.autocells, src) in_turf = null - cellauto_cells -= src + GLOB.cellauto_cells -= src death() @@ -88,7 +88,7 @@ // Get cardinal neighbors if(neighbor_type & NEIGHBORS_CARDINAL) - for(var/dir in cardinal) + for(var/dir in GLOB.cardinals) var/turf/T = get_step(in_turf, dir) if(QDELETED(T)) continue @@ -100,7 +100,7 @@ // Get ordinal/diagonal neighbors if(neighbor_type & NEIGHBORS_ORDINAL) - for(var/dir in diagonals) + for(var/dir in GLOB.diagonals) var/turf/T = get_step(in_turf, dir) if(QDELETED(T)) continue diff --git a/code/datums/autocells/explosion.dm b/code/datums/autocells/explosion.dm index 2efc7a8a3e..f8bb843fc1 100644 --- a/code/datums/autocells/explosion.dm +++ b/code/datums/autocells/explosion.dm @@ -23,7 +23,7 @@ That's it. There are some special rules, though, namely: - * If the explosion occured in a wall, the wave is strengthened + * If the explosion occurred in a wall, the wave is strengthened with power *= reflection_multiplier and reflected back in the direction it came from @@ -109,7 +109,7 @@ survivor.power += dying.power // Two waves travling towards each other weakens the explosion - if(survivor.direction == reverse_dir[dying.direction]) + if(survivor.direction == GLOB.reverse_dir[dying.direction]) survivor.power -= dying.power return is_stronger @@ -120,11 +120,11 @@ // If the cell is the epicenter, propagate in all directions if(isnull(direction)) - return alldirs + return GLOB.alldirs - var/dir = reflected ? reverse_dir[direction] : direction + var/dir = reflected ? GLOB.reverse_dir[direction] : direction - if(dir in cardinal) + if(dir in GLOB.cardinals) propagation_dirs += list(dir, turn(dir, 45), turn(dir, -45)) else propagation_dirs += dir @@ -180,7 +180,7 @@ for(var/dir in to_spread) // Diagonals are longer, that should be reflected in the power falloff var/dir_falloff = 1 - if(dir in diagonals) + if(dir in GLOB.diagonals) dir_falloff = 1.414 if(isnull(direction)) @@ -210,7 +210,7 @@ // Set the direction the explosion is traveling in E.direction = dir //Diagonal cells have a small delay when branching off the center. This helps the explosion look circular - if(!direction && (dir in diagonals)) + if(!direction && (dir in GLOB.diagonals)) E.delay = 1 setup_new_cell(E) @@ -264,7 +264,9 @@ as having entered the turf. falloff = max(falloff, power/100) - msg_admin_attack("Explosion with Power: [power], Falloff: [falloff], Shape: [falloff_shape] in [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]).", epicenter.x, epicenter.y, epicenter.z) + var/obj/causing_obj = explosion_cause_data?.resolve_cause() + var/mob/causing_mob = explosion_cause_data?.resolve_mob() + msg_admin_attack("Explosion with Power: [power], Falloff: [falloff], Shape: [falloff_shape],[causing_obj ? " from [causing_obj]" : ""][causing_mob ? " by [key_name(causing_mob)]" : ""] in [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]).", epicenter.x, epicenter.y, epicenter.z) playsound(epicenter, 'sound/effects/explosionfar.ogg', 100, 1, round(power^2,1)) @@ -293,8 +295,7 @@ as having entered the turf. if(power >= 100) // powerful explosions send out some special effects epicenter = get_turf(epicenter) // the ex_acts might have changed the epicenter - create_shrapnel(epicenter, rand(5,9), , ,/datum/ammo/bullet/shrapnel/light/effect/ver1, explosion_cause_data) - create_shrapnel(epicenter, rand(5,9), , ,/datum/ammo/bullet/shrapnel/light/effect/ver2, explosion_cause_data) + new /obj/shrapnel_effect(epicenter) /proc/log_explosion(atom/A, datum/automata_cell/explosion/E) if(isliving(A)) diff --git a/code/datums/autocells/vomit_wave.dm b/code/datums/autocells/vomit_wave.dm index 62ea1d4c6e..396bf6d3e5 100644 --- a/code/datums/autocells/vomit_wave.dm +++ b/code/datums/autocells/vomit_wave.dm @@ -37,7 +37,7 @@ return // Propagate to cardinal directions - var/list/to_spread = cardinal.Copy() + var/list/to_spread = GLOB.cardinals.Copy() for(var/datum/automata_cell/vomit_wave/C in neighbors) to_spread -= get_dir(in_turf, C.in_turf) diff --git a/code/datums/balloon_alerts/balloon_alerts.dm b/code/datums/balloon_alerts/balloon_alerts.dm index 8ef770fa9d..59f826fbe7 100644 --- a/code/datums/balloon_alerts/balloon_alerts.dm +++ b/code/datums/balloon_alerts/balloon_alerts.dm @@ -37,20 +37,15 @@ if (isnull(viewer_client)) return - var/bound_width = world.icon_size - if (ismovable(src)) - var/atom/movable/movable_source = src - bound_width = movable_source.bound_width - var/image/balloon_alert = image(loc = get_atom_on_turf(src), layer = ABOVE_MOB_LAYER) balloon_alert.plane = RUNECHAT_PLANE balloon_alert.alpha = 0 balloon_alert.color = text_color balloon_alert.appearance_flags = NO_CLIENT_COLOR|KEEP_APART|RESET_COLOR|RESET_TRANSFORM|RESET_ALPHA balloon_alert.maptext = MAPTEXT("[text]") - balloon_alert.maptext_x = (BALLOON_TEXT_WIDTH - bound_width) * -0.5 balloon_alert.maptext_height = WXH_TO_HEIGHT(viewer_client?.MeasureText(text, null, BALLOON_TEXT_WIDTH)) balloon_alert.maptext_width = BALLOON_TEXT_WIDTH + balloon_alert.maptext_x = get_maxptext_x_offset(balloon_alert) if(appearance_flags & PIXEL_SCALE) balloon_alert.appearance_flags |= PIXEL_SCALE //"[text]" diff --git a/code/datums/beam.dm b/code/datums/beam.dm index e51dcafa02..e700016b5f 100644 --- a/code/datums/beam.dm +++ b/code/datums/beam.dm @@ -82,7 +82,7 @@ /datum/beam/proc/Draw() if(always_turn) origin.setDir(get_dir(origin, target)) //Causes the source of the beam to rotate to continuosly face the BeamTarget. - var/Angle = round(Get_Angle(origin,target)) + var/Angle = floor(Get_Angle(origin,target)) var/matrix/rot_matrix = matrix() var/turf/origin_turf = get_turf(origin) rot_matrix.Turn(Angle) @@ -91,7 +91,7 @@ var/DX = get_pixel_position_x(target) - get_pixel_position_x(origin) var/DY = get_pixel_position_y(target) - get_pixel_position_y(origin) var/N = 0 - var/length = round(sqrt((DX)**2+(DY)**2)) //hypotenuse of the triangle formed by target and origin's displacement + var/length = floor(sqrt((DX)**2+(DY)**2)) //hypotenuse of the triangle formed by target and origin's displacement for(N in 0 to length-1 step world.icon_size)//-1 as we want < not <=, but we want the speed of X in Y to Z and step X if(QDELETED(src)) @@ -116,20 +116,20 @@ if(DX == 0) Pixel_x = 0 else - Pixel_x = round(sin(Angle) + world.icon_size*sin(Angle)*(N+world.icon_size/2) / world.icon_size) + Pixel_x = floor(sin(Angle) + world.icon_size*sin(Angle)*(N+world.icon_size/2) / world.icon_size) if(DY == 0) Pixel_y = 0 else - Pixel_y = round(cos(Angle) + world.icon_size*cos(Angle)*(N+world.icon_size/2) / world.icon_size) + Pixel_y = floor(cos(Angle) + world.icon_size*cos(Angle)*(N+world.icon_size/2) / world.icon_size) //Position the effect so the beam is one continous line var/a if(abs(Pixel_x)>world.icon_size) - a = Pixel_x > 0 ? round(Pixel_x/32) : CEILING(Pixel_x/world.icon_size, 1) + a = Pixel_x > 0 ? floor(Pixel_x/32) : ceil(Pixel_x/world.icon_size) X.x += a Pixel_x %= world.icon_size if(abs(Pixel_y)>world.icon_size) - a = Pixel_y > 0 ? round(Pixel_y/32) : CEILING(Pixel_y/world.icon_size, 1) + a = Pixel_y > 0 ? floor(Pixel_y/32) : ceil(Pixel_y/world.icon_size) X.y += a Pixel_y %= world.icon_size @@ -215,13 +215,7 @@ return newbeam /proc/zap_beam(atom/source, zap_range, damage, list/blacklistmobs) - var/list/zap_data = list() - for(var/mob/living/carbon/xenomorph/beno in oview(zap_range, source)) - zap_data += beno - for(var/xeno in zap_data) - var/mob/living/carbon/xenomorph/living = xeno - if(!living) - return + FOR_DOVIEW(var/mob/living/carbon/xenomorph/living, zap_range, source, HIDE_INVISIBLE_OBSERVER) if(living.stat == DEAD) continue if(living in blacklistmobs) @@ -229,3 +223,4 @@ source.beam(living, icon_state="lightning[rand(1,12)]", time = 3, maxdistance = zap_range + 2) living.set_effect(2, SLOW) log_attack("[living] was zapped by [source]") + FOR_DOVIEW_END diff --git a/code/datums/browser.dm b/code/datums/browser.dm index 3b694e8f44..f7626214a7 100644 --- a/code/datums/browser.dm +++ b/code/datums/browser.dm @@ -117,9 +117,9 @@ window_size = "size=[width]x[height];" common_asset.send(user) other_asset.send(user) - if (stylesheets.len) + if (length(stylesheets)) SSassets.transport.send_assets(user, stylesheets) - if (scripts.len) + if (length(scripts)) SSassets.transport.send_assets(user, scripts) user << browse(get_content(), "window=[window_id];[window_size][window_options]") diff --git a/code/datums/bug_report.dm b/code/datums/bug_report.dm new file mode 100644 index 0000000000..fd82d4950b --- /dev/null +++ b/code/datums/bug_report.dm @@ -0,0 +1,202 @@ +// Datum for handling bug reports +#define STATUS_SUCCESS 201 + +/datum/tgui_bug_report_form + /// contains all the body text for the bug report. + var/list/bug_report_data = null + + /// client of the bug report author, needed to create the ticket + var/client/initial_user = null + // ckey of the author + var/initial_key = null // just incase they leave after creating the bug report + + /// client of the admin who is accessing the report, we don't want multiple admins unknowingly making changes at the same time. + var/client/admin_user = null + + /// value to determine if the bug report is submitted and awaiting admin approval, used for state purposes in tgui. + var/awaiting_admin_approval = FALSE + + // for garbage collection purposes. + var/selected_confirm = FALSE + +/datum/tgui_bug_report_form/New(mob/user) + initial_user = user.client + initial_key = user.client.key + +/datum/tgui_bug_report_form/proc/external_link_prompt(client/user) + tgui_alert(user, "Unable to create a bug report at this time, please create the issue directly through our GitHub repository instead") + var/url = CONFIG_GET(string/githuburl) + if(!url) + to_chat(user, SPAN_WARNING("The configuration is not properly set, unable to open external link")) + return + + if(tgui_alert(user, "This will open the GitHub in your browser. Are you sure?", "Confirm", list("Yes", "No")) == "Yes") + user << link(url) + +/datum/tgui_bug_report_form/ui_state() + return GLOB.always_state + +/datum/tgui_bug_report_form/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "BugReportForm") + ui.open() + +/datum/tgui_bug_report_form/ui_close(mob/user) + . = ..() + if(!admin_user && user.client == initial_user && !selected_confirm) // user closes the ui without selecting confirm or approve. + qdel(src) + return + admin_user = null + selected_confirm = FALSE + +/datum/tgui_bug_report_form/Destroy() + GLOB.bug_reports -= src + return ..() + +/datum/tgui_bug_report_form/proc/sanitize_payload(list/params) + for(var/param in params) + params[param] = sanitize(params[param], list("\t"=" ","�"=" ")) + + return params + +// whether or not an admin can access the record at a given time. +/datum/tgui_bug_report_form/proc/assign_admin(mob/user) + if(!initial_key) + to_chat(user, SPAN_WARNING("Unable to identify the author of the bug report.")) + return FALSE + if(admin_user) + if(user.client == admin_user) + to_chat(user, SPAN_WARNING("This bug report review is already opened and accessed by you.")) + else + to_chat(user, SPAN_WARNING("Another administrator is currently accessing this report, please wait for them to finish before making any changes.")) + return FALSE + if(!CLIENT_IS_STAFF(user.client)) + message_admins("[user.ckey] has attempted to review [initial_key]'s bug report titled [bug_report_data["title"]] without proper authorization at [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")].") + return FALSE + + admin_user = user.client + return TRUE + +// returns the body payload +/datum/tgui_bug_report_form/proc/create_form() + var/datum/getrev/revdata = GLOB.revdata + var/test_merges + if(length(revdata.testmerge)) + test_merges = revdata.GetTestMergeInfo(header = FALSE) + + var/desc = {" +## Testmerges +[test_merges ? test_merges : "N/A"] + +## Round ID +[GLOB.round_id ? GLOB.round_id : "N/A"] + +## Description of the bug +[bug_report_data["description"]] + +## What's the difference with what should have happened? +[bug_report_data["expected_behavior"]] + +## How do we reproduce this bug? +[bug_report_data["steps"]] + +## Attached logs +``` +[bug_report_data["log"] ? bug_report_data["log"] : "N/A"] +``` + +## Additional details +- Author: [initial_key] +- Admin: [admin_user] +- Note: [bug_report_data["admin_note"] ? bug_report_data["admin_note"] : "None"] + "} + + return desc + +// the real deal, we are sending the request through the api. +/datum/tgui_bug_report_form/proc/send_request(payload_body, client/user) + // for any future changes see https://docs.github.com/en/rest/issues/issues + var/repo_name = CONFIG_GET(string/repo_name) + var/org = CONFIG_GET(string/org) + var/token = CONFIG_GET(string/github_app_api) + + if(!token || !org || !repo_name) + tgui_alert(user, "The configuration is not set for the external API.", "Issue not reported!") + external_link_prompt(user) + qdel(src) + return + + var/url = "https://api.github.com/repos/[org]/[repo_name]/issues" + var/list/headers = list() + headers["Authorization"] = "Bearer [token]" + headers["Content-Type"] = "text/markdown; charset=utf-8" + headers["Accept"] = "application/vnd.github+json" + + var/datum/http_request/request = new() + var/list/payload = list( + "title" = bug_report_data["title"], + "body" = payload_body, + "labels" = list("Bug") + ) + + request.prepare(RUSTG_HTTP_METHOD_POST, url, json_encode(payload), headers) + request.begin_async() + UNTIL_OR_TIMEOUT(request.is_complete(), 5 SECONDS) + + var/datum/http_response/response = request.into_response() + if(response.errored || response.status_code != STATUS_SUCCESS) + message_admins(SPAN_ADMINNOTICE("The GitHub API has failed to create the bug report titled [bug_report_data["title"]] approved by [admin_user], status code:[response.status_code]. Please paste this error code into the development channel on discord.")) + external_link_prompt(user) + else + message_admins("[user.ckey] has approved a bug report from [initial_key] titled [bug_report_data["title"]] at [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")].") + to_chat(initial_user, SPAN_WARNING("An admin has successfully submitted your report and it should now be visible on GitHub. Thanks again!")) + qdel(src)// approved and submitted, we no longer need the datum. + +// proc that creates a ticket for an admin to approve or deny a bug report request +/datum/tgui_bug_report_form/proc/bug_report_request() + to_chat(initial_user, SPAN_WARNING("Your bug report has been submitted, thank you!")) + GLOB.bug_reports += src + + var/general_message = "[initial_key] has created a bug report, you may find this report directly in the ticket panel. Feel free modify the issue to your liking before submitting it to GitHub." + GLOB.admin_help_ui_handler.perform_adminhelp(initial_user, general_message, urgent = FALSE) + + var/href_message = ADMIN_VIEW_BUG_REPORT(src) + initial_user.current_ticket.AddInteraction(href_message) + +/datum/tgui_bug_report_form/ui_act(action, list/params, datum/tgui/ui) + . = ..() + if (.) + return + var/mob/user = ui.user + switch(action) + if("confirm") + if(selected_confirm) // prevent someone from spamming the approve button + to_chat(user, SPAN_WARNING("you have already confirmed the submission, please wait a moment for the API to process your submission.")) + return + bug_report_data = sanitize_payload(params) + selected_confirm = TRUE + // bug report request is now waiting for admin approval + if(!awaiting_admin_approval) + bug_report_request() + awaiting_admin_approval = TRUE + else // otherwise it's been approved + var/payload_body = create_form() + send_request(payload_body, user.client) + if("cancel") + if(awaiting_admin_approval) // admin has chosen to reject the bug report + reject(user.client) + qdel(src) + ui.close() + . = TRUE + +/datum/tgui_bug_report_form/ui_data(mob/user) + . = list() + .["report_details"] = bug_report_data // only filled out once the user as submitted the form + .["awaiting_admin_approval"] = awaiting_admin_approval + +/datum/tgui_bug_report_form/proc/reject(client/user) + message_admins("[user.ckey] has rejected a bug report from [initial_key] titled [bug_report_data["title"]] at [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")].") + to_chat(initial_user, SPAN_WARNING("An admin has rejected your bug report, this can happen for several reasons. They will most likely get back to you shortly regarding your issue.")) + +#undef STATUS_SUCCESS diff --git a/code/datums/components/_component.dm b/code/datums/components/_component.dm index c998bd5525..24cf93ed11 100644 --- a/code/datums/components/_component.dm +++ b/code/datums/components/_component.dm @@ -102,7 +102,7 @@ components_of_type = test if(I == our_type) //exact match, take priority var/inserted = FALSE - for(var/J in 1 to components_of_type.len) + for(var/J in 1 to length(components_of_type)) var/datum/component/C = components_of_type[J] if(C.type != our_type) //but not over other exact matches components_of_type.Insert(J, I) @@ -127,13 +127,13 @@ var/list/components_of_type = dc[I] if(length(components_of_type)) // var/list/subtracted = components_of_type - src - if(subtracted.len == 1) //only 1 guy left + if(length(subtracted) == 1) //only 1 guy left dc[I] = subtracted[1] //make him special else dc[I] = subtracted else //just us dc -= I - if(!dc.len) + if(!length(dc)) P.datum_components = null UnregisterFromParent() @@ -243,7 +243,7 @@ lookup[sig] -= src signal_procs[target] -= sig_type_or_types - if(!signal_procs[target].len) + if(!length(signal_procs[target])) signal_procs -= target /** @@ -362,7 +362,8 @@ var/datum/component/C = dc[c_type] if(C) if(length(C)) - C = C[1] + var/list/component_list = C + C = component_list[1] if(C.type == c_type) return C return null diff --git a/code/datums/components/atom_narrate.dm b/code/datums/components/atom_narrate.dm index a5180720bd..c6e5ba2400 100644 --- a/code/datums/components/atom_narrate.dm +++ b/code/datums/components/atom_narrate.dm @@ -44,7 +44,7 @@ qdel(src) return - var/list/heard = get_mobs_in_view(world_view_size, atom_parent) + var/list/heard = get_mobs_in_view(GLOB.world_view_size, atom_parent) switch(narration_type) if(NARRATION_METHOD_SAY) diff --git a/code/datums/components/bad_leg.dm b/code/datums/components/bad_leg.dm index 4a8678c4da..8793271803 100644 --- a/code/datums/components/bad_leg.dm +++ b/code/datums/components/bad_leg.dm @@ -149,6 +149,7 @@ CRASH("No bound wound to link action") /datum/action/human_action/rest_legs/action_activate() + . = ..() var/mob/living/carbon/human/homan = owner if(in_use) to_chat(homan, SPAN_WARNING("You're already doing that!")) diff --git a/code/datums/components/bonus_damage_stack.dm b/code/datums/components/bonus_damage_stack.dm index faf4813541..7a9bf5aa95 100644 --- a/code/datums/components/bonus_damage_stack.dm +++ b/code/datums/components/bonus_damage_stack.dm @@ -15,15 +15,21 @@ var/bonus_damage_cap = 100 /// Last world.time that the afflicted was hit by a holo-targeting round. var/last_stack + /// extra cap limit added by more powerful bullets + var/bonus_damage_cap_increase = 0 + /// multiplies the BONUS_DAMAGE_STACK_LOSS_PER_SECOND calculation, modifying how fast we lose holo stacks + var/stack_loss_multiplier = 1 -/datum/component/bonus_damage_stack/Initialize(bonus_damage_stacks, time) +/datum/component/bonus_damage_stack/Initialize(bonus_damage_stacks, time, bonus_damage_cap_increase, stack_loss_multiplier) . = ..() src.bonus_damage_stacks = bonus_damage_stacks + src.stack_loss_multiplier = stack_loss_multiplier + src.bonus_damage_cap = initial(bonus_damage_cap) + bonus_damage_cap_increase // this way it will never increase over the intended limit if(!time) time = world.time src.last_stack = time -/datum/component/bonus_damage_stack/InheritComponent(datum/component/bonus_damage_stack/BDS, i_am_original, bonus_damage_stacks, time) +/datum/component/bonus_damage_stack/InheritComponent(datum/component/bonus_damage_stack/BDS, i_am_original, bonus_damage_stacks, time, bonus_damage_cap_increase, stack_loss_multiplier) . = ..() if(!BDS) src.bonus_damage_stacks += bonus_damage_stacks @@ -32,22 +38,32 @@ src.bonus_damage_stacks += BDS.bonus_damage_stacks src.last_stack = BDS.last_stack - src.bonus_damage_stacks = min(src.bonus_damage_stacks, bonus_damage_cap) + // if a different type of holo targetting bullet hits a mob and has a bigger bonus cap, it will get applied. + if(src.bonus_damage_cap_increase < bonus_damage_cap_increase) + src.bonus_damage_cap_increase = bonus_damage_cap_increase + src.bonus_damage_cap = initial(bonus_damage_cap) + src.bonus_damage_cap_increase + + // however, if it has a worse stack_loss_multiplier, it will get applied instead. + // this way, if a weapon is meant to have a big bonus cap but holo stacks that rapidly deplete, it will not be messed up by a weapon that a low stack_loss_multiplier. + if(src.stack_loss_multiplier < stack_loss_multiplier) + src.stack_loss_multiplier = stack_loss_multiplier + + src.bonus_damage_stacks = min(src.bonus_damage_stacks, src.bonus_damage_cap) /datum/component/bonus_damage_stack/process(delta_time) if(last_stack + 5 SECONDS < world.time) - bonus_damage_stacks = bonus_damage_stacks - BONUS_DAMAGE_STACK_LOSS_PER_SECOND * delta_time + bonus_damage_stacks = bonus_damage_stacks - BONUS_DAMAGE_STACK_LOSS_PER_SECOND * stack_loss_multiplier * delta_time if(bonus_damage_stacks <= 0) qdel(src) var/color = COLOR_BONUS_DAMAGE - var/intensity = bonus_damage_stacks / (bonus_damage_cap * 2) - color += num2text(BONUS_DAMAGE_MAX_ALPHA * intensity, 2, 16) - + var/intensity = bonus_damage_stacks / (initial(bonus_damage_cap) * 2) + // if intensity is too high of a value, the hex code will become invalid + color += num2text(BONUS_DAMAGE_MAX_ALPHA * clamp(intensity, 0, 0.5), 2, 16) if(parent) var/atom/A = parent - A.add_filter("bonus_damage_stacks", 2, list("type" = "outline", "color" = color, "size" = 1)) + A.add_filter("bonus_damage_stacks", 2, list("type" = "outline", "color" = color, "size" = 1 + clamp(intensity, 0, 1))) /datum/component/bonus_damage_stack/RegisterWithParent() START_PROCESSING(SSdcs, src) @@ -67,7 +83,7 @@ SIGNAL_HANDLER L += "Bonus Damage Taken: [bonus_damage_stacks * 0.1]%" -/datum/component/bonus_damage_stack/proc/get_bonus_damage(mob/M, list/damage_data) // 10% damage bonus at most +/datum/component/bonus_damage_stack/proc/get_bonus_damage(mob/M, list/damage_data) // 10% damage bonus in most instances SIGNAL_HANDLER damage_data["bonus_damage"] = damage_data["damage"] * (min(bonus_damage_stacks, bonus_damage_cap) / 1000) diff --git a/code/datums/components/cell.dm b/code/datums/components/cell.dm index 81ef3733e2..cf40caa41c 100644 --- a/code/datums/components/cell.dm +++ b/code/datums/components/cell.dm @@ -71,7 +71,7 @@ /datum/component/cell/proc/on_emp(datum/source, severity) SIGNAL_HANDLER - use_charge(null, round(max_charge / severity)) + use_charge(null, floor(max_charge / severity)) /datum/component/cell/proc/start_drain(datum/source) SIGNAL_HANDLER @@ -92,7 +92,7 @@ if((charge_examine_range != UNLIMITED_DISTANCE) && get_dist(examiner, parent) > charge_examine_range) return - examine_text += "A small gauge in the corner reads \"Power: [round(100 * charge / max_charge)]%\"." + examine_text += "A small gauge in the corner reads \"Power: [floor(100 * charge / max_charge)]%\"." /datum/component/cell/proc/on_object_hit(datum/source, obj/item/cell/attack_obj, mob/living/attacker, params) SIGNAL_HANDLER @@ -154,7 +154,7 @@ var/to_transfer = min(max_recharge_tick, power_cell.charge, (max_charge - charge)) if(power_cell.use(to_transfer)) add_charge(null, to_transfer) - to_chat(user, "You transfer some power between [power_cell] and [parent]. The gauge now reads: [round(100 * charge / max_charge)]%.") + to_chat(user, "You transfer some power between [power_cell] and [parent]. The gauge now reads: [floor(100 * charge / max_charge)]%.") /datum/component/cell/proc/add_charge(datum/source, charge_add = 0) SIGNAL_HANDLER diff --git a/code/datums/components/connect_mob_behalf.dm b/code/datums/components/connect_mob_behalf.dm index 1c1a8a6523..2eeee78bf2 100644 --- a/code/datums/components/connect_mob_behalf.dm +++ b/code/datums/components/connect_mob_behalf.dm @@ -1,6 +1,6 @@ /// This component behaves similar to connect_loc_behalf, but working off clients and mobs instead of loc /// To be clear, we hook into a signal on a tracked client's mob -/// We retain the ability to react to that signal on a seperate listener, which makes this quite powerful +/// We retain the ability to react to that signal on a separate listener, which makes this quite powerful /datum/component/connect_mob_behalf dupe_mode = COMPONENT_DUPE_UNIQUE diff --git a/code/datums/components/disk_reader.dm b/code/datums/components/disk_reader.dm new file mode 100644 index 0000000000..5994d511b9 --- /dev/null +++ b/code/datums/components/disk_reader.dm @@ -0,0 +1,89 @@ +/datum/component/disk_reader + dupe_mode = COMPONENT_DUPE_UNIQUE + /// Ref to the inserted disk + //var/obj/item/disk/objective/disk + +/datum/component/disk_reader/Initialize() + . = ..() + if(!istype(parent, /obj/structure/machinery)) + return COMPONENT_INCOMPATIBLE + +/datum/component/disk_reader/Destroy(force, silent) + handle_qdel() + return ..() + +/datum/component/disk_reader/RegisterWithParent() + ..() + //RegisterSignal(parent, COMSIG_PARENT_ATTACKBY, PROC_REF(on_disk_insert)) + RegisterSignal(parent, COMSIG_PARENT_QDELETING, PROC_REF(handle_qdel)) + //RegisterSignal(parent, COMSIG_INTEL_DISK_COMPLETED, PROC_REF(on_disk_complete)) + //RegisterSignal(parent, COMSIG_INTEL_DISK_LOST_POWER, PROC_REF(on_power_lost)) + +/datum/component/disk_reader/UnregisterFromParent() + ..() + handle_qdel() + +/datum/component/disk_reader/proc/handle_qdel() + SIGNAL_HANDLER + //QDEL_NULL(disk) + +/* +/datum/component/disk_reader/proc/on_disk_insert(datum/source, obj/item/disk/objective/potential_disk, mob/living/inserter, params) + SIGNAL_HANDLER + + if(!istype(potential_disk) || !potential_disk.objective) + return + + if(disk) + to_chat(inserter, SPAN_WARNING("There's already a disk inside [parent], wait for it to finish first!")) + return COMPONENT_NO_AFTERATTACK + + if(potential_disk.objective.state == OBJECTIVE_COMPLETE) + to_chat(inserter, SPAN_WARNING("The reader displays a message stating this disk has already been read and refuses to accept it.")) + return COMPONENT_NO_AFTERATTACK + + INVOKE_ASYNC(src, PROC_REF(handle_disk_insert), potential_disk, inserter) + return COMPONENT_NO_AFTERATTACK + +/datum/component/disk_reader/proc/handle_disk_insert(obj/item/disk/objective/potential_disk, mob/living/inserter) + if(tgui_input_text(inserter, "Enter the encryption key", "Decrypting [potential_disk]", "") != potential_disk.objective.decryption_password) + to_chat(inserter, SPAN_WARNING("The reader buzzes, ejecting the disk.")) + return + + if(disk) + to_chat(inserter, SPAN_WARNING("There's already a disk inside [parent], wait for it to finish first!")) + return + + if(!(potential_disk in inserter.contents)) + return + + potential_disk.objective.activate() + + inserter.drop_inv_item_to_loc(potential_disk, parent) + disk = potential_disk + to_chat(inserter, SPAN_NOTICE("You insert [potential_disk] and enter the decryption key.")) + inserter.count_niche_stat(STATISTICS_NICHE_DISK) + +/datum/component/disk_reader/proc/on_disk_complete(datum/source) + SIGNAL_HANDLER + var/atom/atom_parent = parent + + atom_parent.visible_message("[atom_parent] pings softly as the upload finishes and ejects [disk].") + playsound(atom_parent, 'sound/machines/screen_output1.ogg', 25, 1) + disk.forceMove(get_turf(atom_parent)) + disk.name = "[disk.name] (complete)" + disk.objective.award_points() + disk.retrieve_objective.state = OBJECTIVE_ACTIVE + disk.retrieve_objective.activate() + disk = null + +/datum/component/disk_reader/proc/on_power_lost(datum/source) + SIGNAL_HANDLER + var/atom/atom_parent = parent + + atom_parent.visible_message(SPAN_WARNING("[atom_parent] powers down mid-operation as the area loses power.")) + playsound(atom_parent, 'sound/machines/terminal_shutdown.ogg', 25, 1) + SSobjectives.stop_processing_objective(src) + disk.forceMove(get_turf(atom_parent)) + disk = null +*/ diff --git a/code/datums/components/healing_reduction.dm b/code/datums/components/healing_reduction.dm index b98d52cab2..e61cbb9052 100644 --- a/code/datums/components/healing_reduction.dm +++ b/code/datums/components/healing_reduction.dm @@ -7,13 +7,13 @@ Healing above this strength will be reduced by the strength of the buildup. Humans will take continuous damage instead. */ -/datum/component/healing_reduction +/datum/component/status_effect/healing_reduction dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS var/healing_reduction = 0 var/healing_reduction_dissipation = AMOUNT_PER_TIME(1, 5 SECONDS) var/max_buildup = 50 //up to 50 damage off of healing max by default -/datum/component/healing_reduction/Initialize(healing_reduction, healing_reduction_dissipation = AMOUNT_PER_TIME(1, 2.5 SECONDS), max_buildup = 50) +/datum/component/status_effect/healing_reduction/Initialize(healing_reduction, healing_reduction_dissipation = AMOUNT_PER_TIME(1, 2.5 SECONDS), max_buildup = 50) if(!isxeno_human(parent)) return COMPONENT_INCOMPATIBLE . = ..() @@ -21,35 +21,42 @@ Humans will take continuous damage instead. src.healing_reduction_dissipation = healing_reduction_dissipation src.max_buildup = max_buildup -/datum/component/healing_reduction/InheritComponent(datum/component/healing_reduction/C, i_am_original, healing_reduction) +/datum/component/status_effect/healing_reduction/InheritComponent(datum/component/status_effect/healing_reduction/inherit_component, i_am_original, healing_reduction) . = ..() - if(!C) + if(!inherit_component) src.healing_reduction += healing_reduction else - src.healing_reduction += C.healing_reduction + src.healing_reduction += inherit_component.healing_reduction src.healing_reduction = min(src.healing_reduction, max_buildup) -/datum/component/healing_reduction/process(delta_time) +/datum/component/status_effect/healing_reduction/process(delta_time) + var/atom/parent_atom = parent + if(has_immunity) + parent_atom.remove_filter("healing_reduction") + return ..() + if(!parent) qdel(src) - healing_reduction = max(healing_reduction - healing_reduction_dissipation * delta_time, 0) + return - if(ishuman(parent)) //deals brute to humans - var/mob/living/carbon/human/H = parent - H.apply_damage(healing_reduction_dissipation * delta_time, BRUTE) + healing_reduction = max(healing_reduction - healing_reduction_dissipation * delta_time, 0) if(healing_reduction <= 0) qdel(src) + return + + if(ishuman(parent)) //deals brute to humans + var/mob/living/carbon/human/human_parent = parent + human_parent.apply_damage(healing_reduction_dissipation * delta_time, BRUTE) var/color = GLOW_COLOR var/intensity = healing_reduction/max_buildup color += num2text(MAX_ALPHA*intensity, 2, 16) - var/atom/A = parent - A.add_filter("healing_reduction", 2, list("type" = "outline", "color" = color, "size" = 1)) + parent_atom.add_filter("healing_reduction", 2, list("type" = "outline", "color" = color, "size" = 1)) -/datum/component/healing_reduction/RegisterWithParent() +/datum/component/status_effect/healing_reduction/RegisterWithParent() START_PROCESSING(SSdcs, src) RegisterSignal(parent, list( COMSIG_XENO_ON_HEAL, @@ -57,22 +64,27 @@ Humans will take continuous damage instead. ), PROC_REF(apply_healing_reduction)) RegisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT, PROC_REF(stat_append)) -/datum/component/healing_reduction/UnregisterFromParent() +/datum/component/status_effect/healing_reduction/UnregisterFromParent() STOP_PROCESSING(SSdcs, src) UnregisterSignal(parent, list( COMSIG_XENO_ON_HEAL, COMSIG_XENO_ON_HEAL_WOUNDS, COMSIG_XENO_APPEND_TO_STAT )) - var/atom/A = parent - A.remove_filter("healing_reduction") + var/atom/parent_atom = parent + parent_atom.remove_filter("healing_reduction") -/datum/component/healing_reduction/proc/stat_append(mob/M, list/L) +/datum/component/status_effect/healing_reduction/proc/stat_append(mob/target_mob, list/stat_list) SIGNAL_HANDLER - L += "Healing Reduction: [healing_reduction]/[max_buildup]" + if(has_immunity) + stat_list += "Healing Reduction Immunity: [grace_period]/[initial(grace_period)]" + return + stat_list += "Healing Reduction: [healing_reduction]/[max_buildup]" -/datum/component/healing_reduction/proc/apply_healing_reduction(mob/living/carbon/xenomorph/X, list/healing) +/datum/component/status_effect/healing_reduction/proc/apply_healing_reduction(mob/living/carbon/xenomorph/xeno, list/healing) SIGNAL_HANDLER + if(has_immunity) + return healing["healing"] -= healing_reduction #undef MAX_ALPHA diff --git a/code/datums/components/iff_fire_prevention.dm b/code/datums/components/iff_fire_prevention.dm index d45b85887b..9a50c78781 100644 --- a/code/datums/components/iff_fire_prevention.dm +++ b/code/datums/components/iff_fire_prevention.dm @@ -26,7 +26,7 @@ /datum/component/iff_fire_prevention/proc/check_firing_lane(obj/firing_weapon, obj/projectile/projectile_to_fire, atom/target, mob/living/user) SIGNAL_HANDLER - var/angle = get_angle(user, target) + var/angle = Get_Angle(user, target) var/range_to_check = user.get_maximum_view_range() @@ -37,7 +37,7 @@ if(!starting_turf || !extended_target_turf) return COMPONENT_CANCEL_GUN_BEFORE_FIRE - var/list/checked_turfs = getline2(starting_turf, extended_target_turf) + var/list/checked_turfs = get_line(starting_turf, extended_target_turf) //Don't shoot yourself, thanks if(target == user) diff --git a/code/datums/components/overlay_lighting.dm b/code/datums/components/overlay_lighting.dm index 225149ecb4..6c9db4cd4b 100644 --- a/code/datums/components/overlay_lighting.dm +++ b/code/datums/components/overlay_lighting.dm @@ -177,7 +177,7 @@ LAZYINITLIST(affected_turfs) if(range <= 2) //Range here is 1 because actual range of lighting mask is 1 tile even if it says that range is 2 - for(var/turf/lit_turf in RANGE_TURFS(1, current_holder.loc)) + for(var/turf/lit_turf as anything in RANGE_TURFS(1, current_holder.loc)) lit_turf.dynamic_lumcount += lum_power affected_turfs += lit_turf else @@ -345,7 +345,7 @@ turn_off() range = clamp(CEILING(new_range, 0.5), 1, 7) var/pixel_bounds = ((range - 1) * 64) + 32 - lumcount_range = CEILING(range, 1) + lumcount_range = ceil(range) if(current_holder && overlay_lighting_flags & LIGHTING_ON) current_holder.underlays -= visible_mask visible_mask.icon = light_overlays["[pixel_bounds]"] @@ -361,7 +361,7 @@ if(current_holder && overlay_lighting_flags & LIGHTING_ON) current_holder.underlays += visible_mask if(directional) - cast_range = clamp(round(new_range * 0.5), 1, 3) + cast_range = clamp(floor(new_range * 0.5), 1, 3) if(overlay_lighting_flags & LIGHTING_ON) make_luminosity_update() diff --git a/code/datums/components/speed_modifier.dm b/code/datums/components/speed_modifier.dm index 3e96fbc567..c19d85ffd3 100644 --- a/code/datums/components/speed_modifier.dm +++ b/code/datums/components/speed_modifier.dm @@ -3,14 +3,14 @@ //Adjusts the speed of a xenomorph the component is on. Humans will take or heal stamina damage. -/datum/component/speed_modifier +/datum/component/status_effect/speed_modifier dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS var/speed_modifier = 0 var/speed_modifier_dissipation = AMOUNT_PER_TIME(1, 2.5 SECONDS) var/max_buildup = 10 var/increase_speed = FALSE -/datum/component/speed_modifier/Initialize(speed_modifier, increase_speed = FALSE, speed_modifier_dissipation = AMOUNT_PER_TIME(1, 2.5 SECONDS), max_buildup = 10) +/datum/component/status_effect/speed_modifier/Initialize(speed_modifier, increase_speed = FALSE, speed_modifier_dissipation = AMOUNT_PER_TIME(1, 2.5 SECONDS), max_buildup = 10) if(!isxeno_human(parent)) return COMPONENT_INCOMPATIBLE . = ..() @@ -19,7 +19,7 @@ src.max_buildup = max_buildup src.increase_speed = increase_speed -/datum/component/speed_modifier/InheritComponent(datum/component/speed_modifier/C, i_am_original, speed_modifier) +/datum/component/status_effect/speed_modifier/InheritComponent(datum/component/status_effect/speed_modifier/C, i_am_original, speed_modifier) . = ..() if(!C) src.speed_modifier += speed_modifier @@ -28,7 +28,12 @@ src.speed_modifier = min(src.speed_modifier, max_buildup) -/datum/component/speed_modifier/process(delta_time) +/datum/component/status_effect/speed_modifier/process(delta_time) + var/atom/parent_atom = parent + if(has_immunity) + parent_atom.remove_filter("speed_modifier") + return ..() + if(!parent) qdel(src) speed_modifier = max(speed_modifier - speed_modifier_dissipation * delta_time, 0) @@ -47,15 +52,14 @@ var/intensity = speed_modifier/max_buildup color += num2text(MAX_ALPHA*intensity, 2, 16) - var/atom/A = parent - A.add_filter("speed_modifier", 2, list("type" = "outline", "color" = color, "size" = 1)) + parent_atom.add_filter("speed_modifier", 2, list("type" = "outline", "color" = color, "size" = 1)) -/datum/component/speed_modifier/RegisterWithParent() +/datum/component/status_effect/speed_modifier/RegisterWithParent() START_PROCESSING(SSdcs, src) RegisterSignal(parent, COMSIG_XENO_MOVEMENT_DELAY, PROC_REF(apply_speed_modifier)) RegisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT, PROC_REF(stat_append)) -/datum/component/speed_modifier/UnregisterFromParent() +/datum/component/status_effect/speed_modifier/UnregisterFromParent() STOP_PROCESSING(SSdcs, src) UnregisterSignal(parent, list( COMSIG_XENO_MOVEMENT_DELAY, @@ -64,15 +68,20 @@ var/atom/A = parent A.remove_filter("speed_modifier") -/datum/component/speed_modifier/proc/stat_append(mob/M, list/L) +/datum/component/status_effect/speed_modifier/proc/stat_append(mob/M, list/L) SIGNAL_HANDLER + if(has_immunity) + L += "Slow immunity: [grace_period]/[initial(grace_period)]" + return if(!increase_speed) L += "Slow: [speed_modifier]/[max_buildup]" else L += "Speed Boost: [speed_modifier]/[max_buildup]" -/datum/component/speed_modifier/proc/apply_speed_modifier(mob/living/carbon/xenomorph/X, list/speeds) +/datum/component/status_effect/speed_modifier/proc/apply_speed_modifier(mob/living/carbon/xenomorph/X, list/speeds) SIGNAL_HANDLER + if(has_immunity) + return if(!increase_speed) speeds["speed"] += speed_modifier * 0.075 else //increasing speed is more effective than decreasing speed diff --git a/code/datums/components/status_effect_component.dm b/code/datums/components/status_effect_component.dm new file mode 100644 index 0000000000..34c077f619 --- /dev/null +++ b/code/datums/components/status_effect_component.dm @@ -0,0 +1,23 @@ +//exists only to handle immunities for now + +/datum/component/status_effect + var/has_immunity = FALSE + var/grace_period = 30 + +/datum/component/status_effect/InheritComponent(datum/component/C, i_am_original) + if(has_immunity) + grace_period = min(grace_period + 1, initial(grace_period)) + +/datum/component/status_effect/Initialize() + . = ..() + RegisterSignal(parent, list(COMSIG_XENO_DEBUFF_CLEANSE, COMSIG_LIVING_REJUVENATED), PROC_REF(cleanse)) + +/datum/component/status_effect/proc/cleanse() + SIGNAL_HANDLER + has_immunity = TRUE + +/datum/component/status_effect/process(delta_time) + if(has_immunity) + grace_period -= 1 * delta_time + if(grace_period <= 0) + qdel(src) diff --git a/code/datums/components/temporary_mute.dm b/code/datums/components/temporary_mute.dm new file mode 100644 index 0000000000..a875287d48 --- /dev/null +++ b/code/datums/components/temporary_mute.dm @@ -0,0 +1,92 @@ +/datum/component/temporary_mute + dupe_mode = COMPONENT_DUPE_UNIQUE + /// A message to tell the user when they attempt to speak, if any + var/on_speak_message = "" + /// A message to tell the user when they attempt to emote, if any + var/on_emote_message = "" + /// A message to tell the user when they become no longer mute, if any + var/on_unmute_message = "" + /// How long after the component's initialization it should be deleted. -1 means it will never delete + var/time_until_unmute = 3 MINUTES + +/datum/component/temporary_mute/Initialize(on_speak_message = "", on_emote_message = "", on_unmute_message = "", time_until_unmute = 3 MINUTES) + . = ..() + if(!ismob(parent)) + return COMPONENT_INCOMPATIBLE + + src.on_speak_message = on_speak_message + src.on_emote_message = on_emote_message + src.on_unmute_message = on_unmute_message + src.time_until_unmute = time_until_unmute + if(time_until_unmute != -1) + QDEL_IN(src, time_until_unmute) + +/datum/component/temporary_mute/RegisterWithParent() + ..() + RegisterSignal(parent, COMSIG_LIVING_SPEAK, PROC_REF(on_speak)) + RegisterSignal(parent, COMSIG_XENO_TRY_HIVEMIND_TALK, PROC_REF(on_hivemind)) + RegisterSignal(parent, COMSIG_MOB_TRY_EMOTE, PROC_REF(on_emote)) + RegisterSignal(parent, COMSIG_MOB_TRY_POINT, PROC_REF(on_point)) + ADD_TRAIT(parent, TRAIT_TEMPORARILY_MUTED, TRAIT_SOURCE_TEMPORARY_MUTE) + +/datum/component/temporary_mute/UnregisterFromParent() + ..() + if(parent) + UnregisterSignal(parent, COMSIG_LIVING_SPEAK) + UnregisterSignal(parent, COMSIG_XENO_TRY_HIVEMIND_TALK) + UnregisterSignal(parent, COMSIG_MOB_TRY_EMOTE) + UnregisterSignal(parent, COMSIG_MOB_TRY_POINT) + if(on_unmute_message) + to_chat(parent, SPAN_NOTICE(on_unmute_message)) + REMOVE_TRAIT(parent, TRAIT_TEMPORARILY_MUTED, TRAIT_SOURCE_TEMPORARY_MUTE) + +/datum/component/temporary_mute/proc/on_speak( + mob/user, + message, + datum/language/speaking = null, + verb = "says", + alt_name = "", + italics = FALSE, + message_range = GLOB.world_view_size, + sound/speech_sound, + sound_vol, + nolog = FALSE, + message_mode = null +) + SIGNAL_HANDLER + + if(!nolog) + msg_admin_niche("[user.name != "Unknown" ? user.name : "([user.real_name])"] attempted to say the following before their spawn mute ended: [message] (CKEY: [user.key]) (JOB: [user.job]) (AREA: [get_area_name(user)])") + if(on_speak_message) + to_chat(parent, SPAN_BOLDNOTICE(on_speak_message)) + return COMPONENT_OVERRIDE_SPEAK + +/datum/component/temporary_mute/proc/on_hivemind(mob/user, message) + SIGNAL_HANDLER + + msg_admin_niche("[user.name != "Unknown" ? user.name : "([user.real_name])"] attempted to hivemind the following before their spawn mute ended: [message] (CKEY: [user.key]) (JOB: [user.job]) (AREA: [get_area_name(user)])") + if(on_speak_message) + to_chat(parent, SPAN_BOLDNOTICE(on_speak_message)) + return COMPONENT_OVERRIDE_HIVEMIND_TALK + +/datum/component/temporary_mute/proc/on_emote(mob/user, datum/emote/current_emote, act, m_type, param, intentional) + SIGNAL_HANDLER + + // Allow involuntary emotes or non-custom emotes + if(!intentional) + return + if(!param && !istype(current_emote, /datum/emote/custom)) + return + + msg_admin_niche("[user.name != "Unknown" ? user.name : "([user.real_name])"] attempted to emote the following before their spawn mute ended: [param] (CKEY: [user.key]) (JOB: [user.job]) (AREA: [get_area_name(user)])") + if(on_emote_message) + to_chat(parent, SPAN_BOLDNOTICE(on_emote_message)) + return COMPONENT_OVERRIDE_EMOTE + +/datum/component/temporary_mute/proc/on_point(mob/user, atom/target) + SIGNAL_HANDLER + + msg_admin_niche("[user.name != "Unknown" ? user.name : "([user.real_name])"] attempted to point at the following before their spawn mute ended: [target] (CKEY: [user.key]) (JOB: [user.job]) (AREA: [get_area_name(user)])") + if(on_emote_message) + to_chat(parent, SPAN_BOLDNOTICE(on_emote_message)) + return COMPONENT_OVERRIDE_POINT diff --git a/code/datums/components/toxin_buildup.dm b/code/datums/components/toxin_buildup.dm index a30f7397e9..d761a4b029 100644 --- a/code/datums/components/toxin_buildup.dm +++ b/code/datums/components/toxin_buildup.dm @@ -1,4 +1,4 @@ -/datum/component/toxic_buildup +/datum/component/status_effect/toxic_buildup dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS var/toxic_buildup = 0 var/toxic_buildup_dissipation = AMOUNT_PER_TIME(5, 10 SECONDS) @@ -7,13 +7,14 @@ var/max_alpha = 35 var/glow_color = "#00ff00" -/datum/component/toxic_buildup/Initialize(toxic_buildup, toxic_buildup_dissipation = AMOUNT_PER_TIME(1, 3 SECONDS), max_buildup = 75) +/datum/component/status_effect/toxic_buildup/Initialize(toxic_buildup, toxic_buildup_dissipation = AMOUNT_PER_TIME(1, 3 SECONDS), max_buildup = 75) . = ..() src.toxic_buildup = toxic_buildup src.toxic_buildup_dissipation = toxic_buildup_dissipation src.max_buildup = max_buildup + to_chat(parent, SPAN_XENOHIGHDANGER("The toxic substance damages our armor!")) -/datum/component/toxic_buildup/InheritComponent(datum/component/toxic_buildup/C, i_am_original, toxic_buildup) +/datum/component/status_effect/toxic_buildup/InheritComponent(datum/component/status_effect/toxic_buildup/C, i_am_original, toxic_buildup) . = ..() if(!C) src.toxic_buildup += toxic_buildup @@ -22,7 +23,12 @@ src.toxic_buildup = min(src.toxic_buildup, max_buildup) -/datum/component/toxic_buildup/process(delta_time) +/datum/component/status_effect/toxic_buildup/process(delta_time) + var/atom/parent_atom = parent + if(has_immunity) + parent_atom.remove_filter("toxic_buildup") + return ..() + toxic_buildup = max(toxic_buildup - toxic_buildup_dissipation * delta_time, 0) if(ishuman(parent)) @@ -37,10 +43,9 @@ color += num2text(max_alpha*intensity, 2, 16) if(parent) - var/atom/A = parent - A.add_filter("toxic_buildup", 2, list("type" = "outline", "color" = color, "size" = 1)) + parent_atom.add_filter("toxic_buildup", 2, list("type" = "outline", "color" = color, "size" = 1)) -/datum/component/toxic_buildup/RegisterWithParent() +/datum/component/status_effect/toxic_buildup/RegisterWithParent() START_PROCESSING(SSdcs, src) RegisterSignal(parent, list( COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE, @@ -48,7 +53,7 @@ ), PROC_REF(apply_toxic_buildup)) RegisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT, PROC_REF(stat_append)) -/datum/component/toxic_buildup/UnregisterFromParent() +/datum/component/status_effect/toxic_buildup/UnregisterFromParent() STOP_PROCESSING(SSdcs, src) UnregisterSignal(parent, list( COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE, @@ -58,10 +63,15 @@ var/atom/A = parent A.remove_filter("toxic_buildup") -/datum/component/toxic_buildup/proc/stat_append(mob/M, list/L) +/datum/component/status_effect/toxic_buildup/proc/stat_append(mob/M, list/L) SIGNAL_HANDLER + if(has_immunity) + L += "Toxin Buildup immunity [grace_period]/[initial(grace_period)]" + return L += "Toxin Buildup: [toxic_buildup]/[max_buildup]" -/datum/component/toxic_buildup/proc/apply_toxic_buildup(mob/living/carbon/xenomorph/X, list/damagedata) +/datum/component/status_effect/toxic_buildup/proc/apply_toxic_buildup(mob/living/carbon/xenomorph/X, list/damagedata) SIGNAL_HANDLER + if(has_immunity) + return damagedata["armor"] = max(damagedata["armor"] - toxic_buildup, 0) diff --git a/code/datums/components/tutorial_status.dm b/code/datums/components/tutorial_status.dm new file mode 100644 index 0000000000..97b8d408bc --- /dev/null +++ b/code/datums/components/tutorial_status.dm @@ -0,0 +1,25 @@ +/datum/component/tutorial_status + dupe_mode = COMPONENT_DUPE_UNIQUE + /// What the mob's current tutorial status is, displayed in the status panel + var/tutorial_status = "" + +/datum/component/tutorial_status/Initialize() + . = ..() + if(!ismob(parent)) + return COMPONENT_INCOMPATIBLE + +/datum/component/tutorial_status/RegisterWithParent() + ..() + RegisterSignal(parent, COMSIG_MOB_TUTORIAL_UPDATE_OBJECTIVE, PROC_REF(update_objective)) + RegisterSignal(parent, COMSIG_MOB_GET_STATUS_TAB_ITEMS, PROC_REF(get_status_tab_item)) + +/datum/component/tutorial_status/proc/update_objective(datum/source, objective_text) + SIGNAL_HANDLER + + tutorial_status = objective_text + +/datum/component/tutorial_status/proc/get_status_tab_item(datum/source, list/status_tab_items) + SIGNAL_HANDLER + + if(tutorial_status) + status_tab_items += "Tutorial Objective: " + tutorial_status diff --git a/code/datums/components/weed_food.dm b/code/datums/components/weed_food.dm index 648478aa61..ce6fe35e4a 100644 --- a/code/datums/components/weed_food.dm +++ b/code/datums/components/weed_food.dm @@ -6,15 +6,19 @@ desc = "Weird black weeds in the shape of a body..." gender = PLURAL vis_flags = VIS_INHERIT_DIR|VIS_INHERIT_PLANE|VIS_INHERIT_LAYER + mouse_opacity = MOUSE_OPACITY_TRANSPARENT icon = 'icons/mob/xenos/weeds.dmi' - var/static/list/icon_states = list("human_1","human_2","human_3","human_4","human_5") - var/static/list/icon_states_flipped = list("human_1_f","human_2_f","human_3_f","human_4_f","human_5_f") + var/list/icon_states + var/list/icon_states_flipped var/icon_state_idx = 0 var/timer_id = null var/flipped = FALSE -/atom/movable/vis_obj/weed_food/Initialize(mapload, is_flipped, ...) +/atom/movable/vis_obj/weed_food/Initialize(mapload, is_flipped, weeds_icon, states, states_flipped, ...) flipped = is_flipped + icon = weeds_icon + icon_states = states + icon_states_flipped = states_flipped timer_id = addtimer(CALLBACK(src, PROC_REF(on_animation_timer)), WEED_FOOD_STATE_DELAY, TIMER_STOPPABLE|TIMER_UNIQUE|TIMER_LOOP|TIMER_DELETE_ME) on_animation_timer() return ..() @@ -22,6 +26,7 @@ /// Timer callback for changing the icon_state /atom/movable/vis_obj/weed_food/proc/on_animation_timer() icon_state_idx++ + // Assumption: Length of icon_states is the same as icon_states_flipped if(icon_state_idx > length(icon_states)) deltimer(timer_id) timer_id = null @@ -50,6 +55,8 @@ var/turf/parent_turf /// The obj that our parent is buckled to and we have registered a signal var/obj/parent_buckle + /// A nest our parent is buckled to and we have registered a signal + var/obj/structure/bed/nest/parent_nest /// The weeds that we are merging/merged with var/obj/effect/alien/weeds/absorbing_weeds /// The overlay image when merged @@ -57,10 +64,9 @@ /datum/component/weed_food/Initialize(...) parent_mob = parent - //if(!istype(parent_mob)) - //return COMPONENT_INCOMPATIBLE - if(!istype(parent_mob, /mob/living/carbon/human)) - return COMPONENT_INCOMPATIBLE // TODO: At the moment we only support humans + // At the moment we only support humans and xenos + if(!istype(parent_mob, /mob/living/carbon/human) && !istype(parent_mob, /mob/living/carbon/xenomorph)) + return COMPONENT_INCOMPATIBLE parent_turf = get_turf(parent_mob) if(parent_turf != parent_mob.loc) @@ -78,30 +84,37 @@ QDEL_NULL(weed_appearance) parent_mob = null parent_turf = null + parent_buckle = null /datum/component/weed_food/RegisterWithParent() - RegisterSignal(parent_mob, COMSIG_MOVABLE_MOVED, PROC_REF(on_move)) + RegisterSignal(parent_mob, COMSIG_MOVABLE_TURF_ENTERED, PROC_REF(on_move)) RegisterSignal(parent_mob, list(COMSIG_LIVING_REJUVENATED, COMSIG_HUMAN_REVIVED), PROC_REF(on_rejuv)) RegisterSignal(parent_mob, COMSIG_HUMAN_SET_UNDEFIBBABLE, PROC_REF(on_update)) + RegisterSignal(parent_mob, COMSIG_LIVING_PREIGNITION, PROC_REF(on_preignition)) + RegisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING, PROC_REF(on_forsaken)) if(parent_turf) RegisterSignal(parent_turf, COMSIG_WEEDNODE_GROWTH, PROC_REF(on_update)) /datum/component/weed_food/UnregisterFromParent() if(parent_mob) UnregisterSignal(parent_mob, list( - COMSIG_MOVABLE_MOVED, + COMSIG_MOVABLE_TURF_ENTERED, COMSIG_LIVING_REJUVENATED, COMSIG_HUMAN_REVIVED, COMSIG_HUMAN_SET_UNDEFIBBABLE, + COMSIG_LIVING_PREIGNITION, )) if(absorbing_weeds) UnregisterSignal(absorbing_weeds, COMSIG_PARENT_QDELETING) if(parent_turf) UnregisterSignal(parent_turf, COMSIG_WEEDNODE_GROWTH) if(parent_buckle) - UnregisterSignal(parent_buckle, COSMIG_OBJ_AFTER_BUCKLE) + UnregisterSignal(parent_buckle, COMSIG_OBJ_AFTER_BUCKLE) + if(parent_nest) + UnregisterSignal(parent_nest, COMSIG_PARENT_QDELETING) + UnregisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) -/// SIGNAL_HANDLER for COMSIG_MOVABLE_MOVED +/// SIGNAL_HANDLER for COMSIG_MOVABLE_TURF_ENTERED /datum/component/weed_food/proc/on_move() SIGNAL_HANDLER @@ -135,7 +148,7 @@ qdel(src) -/// SIGNAL_HANDLER for COSMIG_OBJ_AFTER_BUCKLE +/// SIGNAL_HANDLER for COMSIG_OBJ_AFTER_BUCKLE /datum/component/weed_food/proc/on_after_buckle(obj/source, mob/buckled) SIGNAL_HANDLER @@ -160,6 +173,36 @@ unmerge_with_weeds() return +/// SIGNAL_HANDLER for COMSIG_PARENT_QDELETING of nest +/datum/component/weed_food/proc/on_nest_deletion() + SIGNAL_HANDLER + + if(merged) + parent_mob.plane = FLOOR_PLANE + UnregisterSignal(parent_nest, COMSIG_PARENT_QDELETING) + parent_nest = null + +/// SIGNAL_HANDLER for COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING +/datum/component/weed_food/proc/on_forsaken() + SIGNAL_HANDLER + + UnregisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) + + if(!merged) + return + if(!is_ground_level(parent_mob.z)) + return + + var/datum/hive_status/hive = GLOB.hive_datum[XENO_HIVE_FORSAKEN] + weed_appearance.color = hive.color + +/// SIGNAL_HANDLER for COMSIG_LIVING_PREIGNITION of weeds +/datum/component/weed_food/proc/on_preignition() + SIGNAL_HANDLER + + if(merged) + return COMPONENT_CANCEL_IGNITION + /** * Try to start the process to turn into weeds * Returns TRUE if started successfully @@ -177,12 +220,12 @@ return FALSE // Still buckled to the same thing if(!istype(parent_mob.buckled, /obj/structure/bed/nest)) if(parent_buckle) // Still have a lingering reference somehow? - UnregisterSignal(parent_buckle, COSMIG_OBJ_AFTER_BUCKLE) + UnregisterSignal(parent_buckle, COMSIG_OBJ_AFTER_BUCKLE) parent_buckle = parent_mob.buckled - RegisterSignal(parent_mob.buckled, COSMIG_OBJ_AFTER_BUCKLE, PROC_REF(on_after_buckle)) + RegisterSignal(parent_mob.buckled, COMSIG_OBJ_AFTER_BUCKLE, PROC_REF(on_after_buckle)) return FALSE if(parent_buckle) - UnregisterSignal(parent_buckle, COSMIG_OBJ_AFTER_BUCKLE) + UnregisterSignal(parent_buckle, COMSIG_OBJ_AFTER_BUCKLE) parent_buckle = null if(parent_mob.is_xeno_grabbable()) @@ -239,12 +282,16 @@ return FALSE // Still buckled to the same thing somehow? if(!istype(parent_mob.buckled, /obj/structure/bed/nest)) if(parent_buckle) // Still have a lingering reference somehow? - UnregisterSignal(parent_buckle, COSMIG_OBJ_AFTER_BUCKLE) + UnregisterSignal(parent_buckle, COMSIG_OBJ_AFTER_BUCKLE) parent_buckle = parent_mob.buckled - RegisterSignal(parent_mob.buckled, COSMIG_OBJ_AFTER_BUCKLE, PROC_REF(on_after_buckle)) + RegisterSignal(parent_mob.buckled, COMSIG_OBJ_AFTER_BUCKLE, PROC_REF(on_after_buckle)) return FALSE + else + parent_nest = parent_mob.buckled + RegisterSignal(parent_nest, COMSIG_PARENT_QDELETING, PROC_REF(on_nest_deletion)) + if(parent_buckle) - UnregisterSignal(parent_buckle, COSMIG_OBJ_AFTER_BUCKLE) + UnregisterSignal(parent_buckle, COMSIG_OBJ_AFTER_BUCKLE) parent_buckle = null if(SEND_SIGNAL(parent_mob, COMSIG_ATTEMPT_MOB_PULL) & COMPONENT_CANCEL_MOB_PULL) @@ -263,16 +310,17 @@ ADD_TRAIT(parent_mob, TRAIT_MERGED_WITH_WEEDS, XENO_WEED_TRAIT) parent_mob.anchored = TRUE parent_mob.mouse_opacity = MOUSE_OPACITY_TRANSPARENT - parent_mob.plane = FLOOR_PLANE + if(!parent_nest) + parent_mob.plane = FLOOR_PLANE parent_mob.remove_from_all_mob_huds() + parent_mob.ExtinguishMob() if(!weed_appearance) // Make a new sprite if we aren't re-merging var/is_flipped = parent_mob.transform.b == -1 // Technically we should check if d is 1 too, but corpses can only be rotated 90 or 270 (1/-1 or -1/1) if(parent_mob.dir & WEST) is_flipped = !is_flipped // The direction reversed the effect of the flip! - weed_appearance = new(null, is_flipped) + weed_appearance = new(null, is_flipped, parent_mob.weed_food_icon, parent_mob.weed_food_states, parent_mob.weed_food_states_flipped) weed_appearance.color = absorbing_weeds.color - // TODO: For non-humans change the icon_state or something here parent_mob.vis_contents += weed_appearance return TRUE @@ -289,6 +337,10 @@ UnregisterSignal(absorbing_weeds, COMSIG_PARENT_QDELETING) absorbing_weeds = null + if(parent_nest) + UnregisterSignal(parent_nest, COMSIG_PARENT_QDELETING) + parent_nest = null + REMOVE_TRAIT(parent_mob, TRAIT_MERGED_WITH_WEEDS, XENO_WEED_TRAIT) parent_mob.anchored = FALSE parent_mob.mouse_opacity = MOUSE_OPACITY_ICON diff --git a/code/datums/components/xeno/ai_behavior_overrides/build_override_behavior.dm b/code/datums/components/xeno/ai_behavior_overrides/build_override_behavior.dm index 4a03c2c313..dac42198a9 100644 --- a/code/datums/components/xeno/ai_behavior_overrides/build_override_behavior.dm +++ b/code/datums/components/xeno/ai_behavior_overrides/build_override_behavior.dm @@ -99,7 +99,7 @@ var/build_door = FALSE for(var/turf/blocked_turf in RANGE_TURFS(1, parent_turf) - parent_turf) var/direction = get_dir(parent_turf, blocked_turf) - if(direction in diagonals) + if(direction in GLOB.diagonals) continue if(!blocked_turf.density) diff --git a/code/datums/components/xeno/hivemind_interference.dm b/code/datums/components/xeno/hivemind_interference.dm new file mode 100644 index 0000000000..9a8a0db255 --- /dev/null +++ b/code/datums/components/xeno/hivemind_interference.dm @@ -0,0 +1,56 @@ +/datum/component/status_effect/interference + dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS + var/interference = 0 + var/max_buildup = 100 + var/dissipation = AMOUNT_PER_TIME(2, 2 SECONDS) + +/datum/component/status_effect/interference/Initialize(interference, max_buildup = 100, dissipation = AMOUNT_PER_TIME(2, 2 SECONDS)) + . = ..() + if(!isxeno(parent)) + return COMPONENT_INCOMPATIBLE + ADD_TRAIT(parent, TRAIT_HIVEMIND_INTERFERENCE, TRAIT_SOURCE_HIVEMIND_INTERFERENCE) + src.interference = interference + src.max_buildup = max_buildup + src.dissipation = dissipation + to_chat(parent, SPAN_XENOHIGHDANGER("Our awareness dims to a small area!")) + +/datum/component/status_effect/interference/InheritComponent(datum/component/status_effect/interference/inter, i_am_original, amount, max_buildup) + . = ..() + + src.max_buildup = max(max_buildup, src.max_buildup) //if the new component's cap is higher, use that + + if(!inter) + interference += amount + else + interference += inter.interference + + interference = min(interference, max_buildup) + +/datum/component/status_effect/interference/process(delta_time) + if(has_immunity) + return ..() + + interference = clamp(interference - dissipation * delta_time, 0, max_buildup) + + if(interference <= 0) + REMOVE_TRAIT(parent, TRAIT_HIVEMIND_INTERFERENCE, TRAIT_SOURCE_HIVEMIND_INTERFERENCE) + qdel(src) + +/datum/component/status_effect/interference/RegisterWithParent() + START_PROCESSING(SSdcs, src) + RegisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT, PROC_REF(stat_append)) + +/datum/component/status_effect/interference/UnregisterFromParent() + STOP_PROCESSING(SSdcs, src) + UnregisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT) + +/datum/component/status_effect/interference/proc/stat_append(mob/M, list/L) + SIGNAL_HANDLER + if(has_immunity) + L += "Hivemind Interference immunity [grace_period]/[initial(grace_period)]" + return + L += "Hivemind Interference: [interference]/[max_buildup]" + +/datum/component/status_effect/interference/cleanse() + REMOVE_TRAIT(parent, TRAIT_HIVEMIND_INTERFERENCE, TRAIT_SOURCE_HIVEMIND_INTERFERENCE) + return ..() diff --git a/code/datums/components/xeno/xeno_daze.dm b/code/datums/components/xeno/xeno_daze.dm new file mode 100644 index 0000000000..1295950ad6 --- /dev/null +++ b/code/datums/components/xeno/xeno_daze.dm @@ -0,0 +1,58 @@ +//snowflake used only for warcrime's effects + +/datum/component/status_effect/daze + dupe_mode = COMPONENT_DUPE_UNIQUE_PASSARGS + var/daze = 0 + var/max_buildup = 20 + var/dissipation = AMOUNT_PER_TIME(2, 2 SECONDS) + +/datum/component/status_effect/daze/Initialize(daze, max_buildup = 30, dissipation = AMOUNT_PER_TIME(2, 2 SECONDS)) + . = ..() + if(!isxeno(parent)) + return COMPONENT_INCOMPATIBLE + ADD_TRAIT(parent, TRAIT_DAZED, TRAIT_STATUS_EFFECT("daze_warcrimes")) + src.daze = daze + src.max_buildup = max_buildup + src.dissipation = dissipation + to_chat(parent, SPAN_XENOHIGHDANGER("We feel weak and dazed!")) + +/datum/component/status_effect/daze/InheritComponent(datum/component/status_effect/daze/daze_new, i_am_original, amount, max_buildup) + . = ..() + + src.max_buildup = max(max_buildup, src.max_buildup) //if the new component's cap is higher, use that + + if(!daze_new) + daze += amount + else + daze += daze_new.daze + + daze = min(daze, max_buildup) + +/datum/component/status_effect/daze/process(delta_time) + if(has_immunity) + return ..() + + daze = clamp(daze - dissipation * delta_time, 0, max_buildup) + + if(daze <= 0) + REMOVE_TRAIT(parent, TRAIT_DAZED, TRAIT_STATUS_EFFECT("daze_warcrimes")) + qdel(src) + +/datum/component/status_effect/daze/RegisterWithParent() + START_PROCESSING(SSdcs, src) + RegisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT, PROC_REF(stat_append)) + +/datum/component/status_effect/daze/UnregisterFromParent() + STOP_PROCESSING(SSdcs, src) + UnregisterSignal(parent, COMSIG_XENO_APPEND_TO_STAT) + +/datum/component/status_effect/daze/proc/stat_append(mob/M, list/L) + SIGNAL_HANDLER + if(has_immunity) + L += "Daze immunity [grace_period]/[initial(grace_period)]" + return + L += "Daze: [daze]/[max_buildup]" + +/datum/component/status_effect/daze/cleanse() + REMOVE_TRAIT(parent, TRAIT_DAZED, TRAIT_STATUS_EFFECT("daze_warcrimes")) + return ..() diff --git a/code/datums/construction/construction_template.dm b/code/datums/construction/construction_template.dm index 0b874def44..37832327c3 100644 --- a/code/datums/construction/construction_template.dm +++ b/code/datums/construction/construction_template.dm @@ -14,8 +14,8 @@ var/pixel_y = -16 var/pixel_x = -16 - var/crystals_required = 0 - var/crystals_stored = 0 + var/plasma_required = 0 + var/plasma_stored = 0 var/materials_required = list() //Example resource requirements i.e. MATERIAL_METAL = 1 var/extras_required = list() //Example extra requirements i.e. /obj/item = 1 @@ -43,47 +43,23 @@ return if(!xeno.plasma_max) return - if(crystals_stored >= crystals_required) + if(plasma_stored >= plasma_required) to_chat(xeno, SPAN_WARNING("\The [name] does not require plasma.")) return - to_chat(xeno, SPAN_NOTICE("You begin adding \the plasma to \the [name].")) + to_chat(xeno, SPAN_NOTICE("We begin adding \the plasma to \the [name].")) xeno_attack_delay(xeno) if(!do_after(xeno, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return //double-check amount required - if(crystals_stored >= crystals_required) + if(plasma_stored >= plasma_required) to_chat(xeno, SPAN_WARNING("\The [name] has enough plasma.")) return - var/amount_to_use = min(xeno.plasma_stored, (crystals_required - crystals_stored)) - crystals_stored += amount_to_use + var/amount_to_use = min(xeno.plasma_stored, (plasma_required - plasma_stored)) + plasma_stored += amount_to_use xeno.plasma_stored -= amount_to_use - to_chat(xeno, SPAN_WARNING("\The [name] requires [crystals_required - crystals_stored] more plasma.")) + to_chat(xeno, SPAN_WARNING("\The [name] requires [plasma_required - plasma_stored] more plasma.")) check_completion() -// Xeno ressource collection -/* -/datum/construction_template/proc/add_crystal(mob/living/carbon/xenomorph/M) - if(!istype(M)) - return - if(!M.crystal_stored) - to_chat(M, SPAN_WARNING("You have no [MATERIAL_CRYSTAL] stored.")) - return - if(crystals_stored >= crystals_required) - to_chat(M, SPAN_WARNING("\The [name] does not require [MATERIAL_CRYSTAL].")) - return - to_chat(M, SPAN_NOTICE("You begin adding \the [MATERIAL_CRYSTAL] to \the [name].")) - if(!do_after(M, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return - //double-check amount required - if(crystals_stored >= crystals_required) - to_chat(M, SPAN_WARNING("\The [name] has enough [MATERIAL_CRYSTAL].")) - return - var/amount_to_use = min(M.crystal_stored, (crystals_required - crystals_stored)) - crystals_stored += amount_to_use - M.crystal_stored -= amount_to_use - to_chat(M, SPAN_WARNING("\The [name] requires [crystals_required - crystals_stored] more [MATERIAL_CRYSTAL].")) - check_completion() */ - /datum/construction_template/proc/add_material(mob/user, obj/item/I) if(isStack(I)) var/obj/item/stack/S = I @@ -123,7 +99,7 @@ check_completion() /datum/construction_template/proc/check_completion() - if(crystals_stored < crystals_required) + if(plasma_stored < plasma_required) return FALSE for(var/material_req in materials_required) if(materials_required[material_req] > 0) diff --git a/code/datums/construction/xenomorph/construction_template_xenomorph.dm b/code/datums/construction/xenomorph/construction_template_xenomorph.dm index 46b7e79763..94914eb1e9 100644 --- a/code/datums/construction/xenomorph/construction_template_xenomorph.dm +++ b/code/datums/construction/xenomorph/construction_template_xenomorph.dm @@ -3,8 +3,10 @@ /datum/construction_template/xenomorph name = "xenomorph structure" build_type = /obj/effect/alien/resin/special - crystals_required = 45 * XENO_STRUCTURE_PLASMA_MULTIPLIER - var/datum/hive_status/hive_ref //Who gets what we build + plasma_required = 45 * XENO_STRUCTURE_PLASMA_MULTIPLIER + /// The hive that this structure belongs to. + var/datum/hive_status/hive_ref + /// The range around this structure which needs to be clear for it to be constructed. var/block_range = 1 /datum/construction_template/xenomorph/set_structure_image() @@ -24,18 +26,20 @@ /datum/construction_template/xenomorph/core name = XENO_STRUCTURE_CORE + description = "Heart of the hive, grows hive weeds (which are necessary for other structures), stores larva, spawns lesser drones, and protects the hive from skyfire." build_type = /obj/effect/alien/resin/special/pylon/core build_icon_state = "core" - crystals_required = 100 * XENO_STRUCTURE_PLASMA_MULTIPLIER + plasma_required = 100 * XENO_STRUCTURE_PLASMA_MULTIPLIER block_range = 0 /datum/construction_template/xenomorph/cluster name = XENO_STRUCTURE_CLUSTER + description = "Remote section of the hive, grows hive weeds, and morphs into a hive pylon when placed near a communications tower." build_type = /obj/effect/alien/resin/special/cluster build_icon_state = "hive_cluster" pixel_y = -8 pixel_x = -8 - crystals_required = 50 * XENO_STRUCTURE_PLASMA_MULTIPLIER + plasma_required = 50 * XENO_STRUCTURE_PLASMA_MULTIPLIER block_range = 0 /datum/construction_template/xenomorph/cluster/set_structure_image() @@ -43,23 +47,27 @@ /datum/construction_template/xenomorph/pylon name = XENO_STRUCTURE_PYLON + description = "Remote section of the hive, grows hive weeds, spawns lesser drones, and protects sisters from air strikes." build_type = /obj/effect/alien/resin/special/pylon build_icon_state = "pylon" - crystals_required = 100 * XENO_STRUCTURE_PLASMA_MULTIPLIER + plasma_required = 100 * XENO_STRUCTURE_PLASMA_MULTIPLIER block_range = 0 /datum/construction_template/xenomorph/eggmorph name = XENO_STRUCTURE_EGGMORPH + description = "Processes hatched hosts into new facehuggers." build_type = /obj/effect/alien/resin/special/eggmorph build_icon_state = "eggmorph_preview" /datum/construction_template/xenomorph/recovery name = XENO_STRUCTURE_RECOVERY + description = "Hastily recovers the strength of sisters resting around it." build_type = /obj/effect/alien/resin/special/recovery build_icon_state = "recovery" /datum/construction_template/xenomorph/nest name = XENO_STRUCTURE_NEST + description = "Strong enough to secure a headhunter for indeterminate durations." build_type = /obj/effect/alien/resin/special/nest build_icon_state = "reinforced_nest" @@ -101,3 +109,5 @@ xeno_message(SPAN_XENOWARNING("This structure needs to be built directly next to an vertical surface."), 7, XENO_HIVE_NORMAL) qdel(owner) qdel(src) + +#undef XENO_STRUCTURE_PLASMA_MULTIPLIER diff --git a/code/datums/custom_hud.dm b/code/datums/custom_hud.dm index 62ae36aa7b..9a009532ef 100644 --- a/code/datums/custom_hud.dm +++ b/code/datums/custom_hud.dm @@ -71,7 +71,7 @@ var/coord_col = "-[col-1]" var/coord_col_offset = "-[4+2*col]" - var/row = round((placement-1)/13) + var/row = floor((placement-1)/13) var/coord_row = "[-1 - row]" var/coord_row_offset = 26 return "EAST[coord_col]:[coord_col_offset],NORTH[coord_row]:[coord_row_offset]" @@ -115,10 +115,11 @@ /datum/custom_hud/dark ui_style_icon = 'icons/mob/hud/human_dark.dmi' - UI_OXYGEN_LOC = "EAST-2:16,14:15" - UI_NUTRITION_LOC = "EAST-2:33,14:15" - UI_TEMP_LOC = "EAST-1:26,15:-7" - UI_HEALTH_LOC = "EAST-1:27,15:-8" + UI_FRAME_LOC = "EAST-3:0,NORTH-1:15" + UI_OXYGEN_LOC = "EAST-2:16,NORTH-1:15" + UI_NUTRITION_LOC = "EAST-2:33,NORTH-1:15" + UI_TEMP_LOC = "EAST-1:26,NORTH-0:-7" + UI_HEALTH_LOC = "EAST-1:27,NORTH-0:-8" UI_SL_LOCATOR_LOC = "EAST-1:27,12:22" /datum/custom_hud/dark/get_status_loc(placement) @@ -126,7 +127,7 @@ var/coord_col = "-0" var/coord_col_offset = "-[24 * col + 2]" - var/row = round((placement-1)/6) + var/row = floor((placement-1)/6) var/coord_row = "[-1 - row]" var/coord_row_offset = -8 return "EAST[coord_col]:[coord_col_offset],NORTH[coord_row]:[coord_row_offset]" diff --git a/code/datums/datacore.dm b/code/datums/datacore.dm index 26ef0e5d0a..8fc512b8c1 100644 --- a/code/datums/datacore.dm +++ b/code/datums/datacore.dm @@ -6,6 +6,8 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) var/security[] = list() //This list tracks characters spawned in the world and cannot be modified in-game. Currently referenced by respawn_character(). var/locked[] = list() + var/leveled_riflemen = 0 + var/leveled_riflemen_max = 7 /datum/datacore/New() . = ..() @@ -20,16 +22,16 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) cycled_data_record.fields["squad"] = new_name /datum/datacore/proc/get_manifest(monochrome, OOC, nonHTML) - var/list/cic = ROLES_CIC.Copy() - var/list/auxil = ROLES_AUXIL_SUPPORT.Copy() - var/list/misc = ROLES_MISC.Copy() - var/list/mp = ROLES_POLICE.Copy() - var/list/eng = ROLES_ENGINEERING.Copy() - var/list/req = ROLES_REQUISITION.Copy() - var/list/med = ROLES_MEDICAL.Copy() - var/list/marines_by_squad = ROLES_SQUAD_ALL.Copy() + var/list/cic = GLOB.ROLES_CIC.Copy() + var/list/auxil = GLOB.ROLES_AUXIL_SUPPORT.Copy() + var/list/misc = GLOB.ROLES_MISC.Copy() + var/list/mp = GLOB.ROLES_POLICE.Copy() + var/list/eng = GLOB.ROLES_ENGINEERING.Copy() + var/list/req = GLOB.ROLES_REQUISITION.Copy() + var/list/med = GLOB.ROLES_MEDICAL.Copy() + var/list/marines_by_squad = GLOB.ROLES_SQUAD_ALL.Copy() for(var/squad_name in marines_by_squad) - marines_by_squad[squad_name] = ROLES_MARINES.Copy() + marines_by_squad[squad_name] = GLOB.ROLES_MARINES.Copy() var/list/isactive = new() // If we need not the HTML table, but list @@ -44,16 +46,18 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) ) departments += marines_by_squad var/list/manifest_out = list() - for(var/datum/data/record/t in GLOB.data_core.general) - var/name = t.fields["name"] - var/rank = t.fields["rank"] - var/squad = t.fields["squad"] + for(var/datum/data/record/record_entry in GLOB.data_core.general) + if(record_entry.fields["mob_faction"] != FACTION_MARINE) //we process only USCM humans + continue + var/name = record_entry.fields["name"] + var/rank = record_entry.fields["rank"] + var/squad = record_entry.fields["squad"] if(isnull(name) || isnull(rank)) continue var/has_department = FALSE for(var/department in departments) // STOP SIGNING ALL MARINES IN ALPHA! - if(department in ROLES_SQUAD_ALL) + if(department in GLOB.ROLES_SQUAD_ALL) if(squad != department) continue var/list/jobs = departments[department] @@ -93,14 +97,16 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) // sort mobs var/dept_flags = NO_FLAGS //Is there anybody in the department?. - var/list/squad_sublists = ROLES_SQUAD_ALL.Copy() //Are there any marines in the squad? + var/list/squad_sublists = GLOB.ROLES_SQUAD_ALL.Copy() //Are there any marines in the squad? - for(var/datum/data/record/t in GLOB.data_core.general) + for(var/datum/data/record/record_entry in GLOB.data_core.general) + if(record_entry.fields["mob_faction"] != FACTION_MARINE) //we process only USCM humans + continue - var/name = t.fields["name"] - var/rank = t.fields["rank"] - var/real_rank = t.fields["real_rank"] - var/squad_name = t.fields["squad"] + var/name = record_entry.fields["name"] + var/rank = record_entry.fields["rank"] + var/real_rank = record_entry.fields["real_rank"] + var/squad_name = record_entry.fields["squad"] if(isnull(name) || isnull(rank) || isnull(real_rank)) continue @@ -112,37 +118,37 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) break isactive[name] = active ? "Active" : "Inactive" else - isactive[name] = t.fields["p_stat"] + isactive[name] = record_entry.fields["p_stat"] //cael - to prevent multiple appearances of a player/job combination, add a continue after each line - if(real_rank in ROLES_CIC) + if(real_rank in GLOB.ROLES_CIC) dept_flags |= FLAG_SHOW_CIC LAZYSET(cic[real_rank], name, rank) - else if(real_rank in ROLES_AUXIL_SUPPORT) + else if(real_rank in GLOB.ROLES_AUXIL_SUPPORT) dept_flags |= FLAG_SHOW_AUXIL_SUPPORT LAZYSET(auxil[real_rank], name, rank) - else if(real_rank in ROLES_MISC) + else if(real_rank in GLOB.ROLES_MISC) dept_flags |= FLAG_SHOW_MISC LAZYSET(misc[real_rank], name, rank) - else if(real_rank in ROLES_POLICE) + else if(real_rank in GLOB.ROLES_POLICE) dept_flags |= FLAG_SHOW_POLICE LAZYSET(mp[real_rank], name, rank) - else if(real_rank in ROLES_ENGINEERING) + else if(real_rank in GLOB.ROLES_ENGINEERING) dept_flags |= FLAG_SHOW_ENGINEERING LAZYSET(eng[real_rank], name, rank) - else if(real_rank in ROLES_REQUISITION) + else if(real_rank in GLOB.ROLES_REQUISITION) dept_flags |= FLAG_SHOW_REQUISITION LAZYSET(req[real_rank], name, rank) - else if(real_rank in ROLES_MEDICAL) + else if(real_rank in GLOB.ROLES_MEDICAL) dept_flags |= FLAG_SHOW_MEDICAL LAZYSET(med[real_rank], name, rank) - else if(real_rank in ROLES_MARINES) + else if(real_rank in GLOB.ROLES_MARINES) if(isnull(squad_name)) continue dept_flags |= FLAG_SHOW_MARINES squad_sublists[squad_name] = TRUE ///If it is a real squad in the USCM squad list to prevent the crew manifest from breaking - if(!(squad_name in ROLES_SQUAD_ALL)) + if(!(squad_name in GLOB.ROLES_SQUAD_ALL)) continue LAZYSET(marines_by_squad[squad_name][real_rank], name, rank) @@ -163,7 +169,7 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) even = !even if(dept_flags & FLAG_SHOW_MARINES) dat += "Marines" - for(var/squad_name in ROLES_SQUAD_ALL) + for(var/squad_name in GLOB.ROLES_SQUAD_ALL) if(!squad_sublists[squad_name]) continue dat += "[squad_name]" @@ -213,9 +219,9 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) if(!nosleep) sleep(40) - var/list/jobs_to_check = ROLES_CIC + ROLES_AUXIL_SUPPORT + ROLES_MISC + ROLES_POLICE + ROLES_ENGINEERING + ROLES_REQUISITION + ROLES_MEDICAL + ROLES_MARINES - for(var/mob/living/carbon/human/H in GLOB.human_mob_list) - if(is_admin_level(H.z)) + var/list/jobs_to_check = GLOB.ROLES_CIC + GLOB.ROLES_AUXIL_SUPPORT + GLOB.ROLES_MISC + GLOB.ROLES_POLICE + GLOB.ROLES_ENGINEERING + GLOB.ROLES_REQUISITION + GLOB.ROLES_MEDICAL + GLOB.ROLES_MARINES + for(var/mob/living/carbon/human/H as anything in GLOB.human_mob_list) + if(should_block_game_interaction(H)) continue if(H.job in jobs_to_check) manifest_inject(H) @@ -224,14 +230,14 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) var/datum/data/record/foundrecord var/use_name = isnull(ref) - for(var/datum/data/record/t in GLOB.data_core.general) + for(var/datum/data/record/record_entry in GLOB.data_core.general) if(use_name) - if(t.fields["name"] == name) - foundrecord = t + if(record_entry.fields["name"] == name) + foundrecord = record_entry break else - if(t.fields["ref"] == ref) - foundrecord = t + if(record_entry.fields["ref"] == ref) + foundrecord = record_entry break if(foundrecord) @@ -247,102 +253,106 @@ GLOBAL_DATUM_INIT(data_core, /datum/datacore, new) return TRUE return FALSE -/datum/datacore/proc/manifest_inject(mob/living/carbon/human/H) +/datum/datacore/proc/manifest_inject(mob/living/carbon/human/target) var/assignment - if(H.job) - assignment = H.job + if(target.job) + assignment = target.job else assignment = "Unassigned" - var/id = add_zero(num2hex(H.gid), 6) //this was the best they could come up with? A large random number? *sigh* + var/id = add_zero(num2hex(target.gid), 6) //this was the best they could come up with? A large random number? *sigh* //var/icon/front = new(get_id_photo(H), dir = SOUTH) //var/icon/side = new(get_id_photo(H), dir = WEST) //General Record - var/datum/data/record/G = new() - G.fields["id"] = id - G.fields["name"] = H.real_name - G.fields["real_rank"] = H.job - G.fields["rank"] = assignment - G.fields["squad"] = H.assigned_squad ? H.assigned_squad.name : null - G.fields["age"] = H.age - G.fields["p_stat"] = "Active" - G.fields["m_stat"] = "Stable" - G.fields["sex"] = H.gender - G.fields["species"] = H.get_species() - G.fields["origin"] = H.origin - G.fields["faction"] = H.personal_faction - G.fields["mob_faction"] = H.faction - G.fields["religion"] = H.religion - G.fields["ref"] = WEAKREF(H) - //G.fields["photo_front"] = front - //G.fields["photo_side"] = side - - if(H.gen_record && !jobban_isbanned(H, "Records")) - G.fields["notes"] = H.gen_record + var/datum/data/record/record_general = new() + record_general.fields["id"] = id + record_general.fields["name"] = target.real_name + record_general.name = target.real_name + record_general.fields["real_rank"] = target.job + record_general.fields["rank"] = assignment + record_general.fields["squad"] = target.assigned_squad ? target.assigned_squad.name : null + record_general.fields["age"] = target.age + record_general.fields["p_stat"] = "Active" + record_general.fields["m_stat"] = "Stable" + record_general.fields["sex"] = capitalize(target.gender) + record_general.fields["species"] = target.get_species() + record_general.fields["origin"] = target.origin + record_general.fields["faction"] = target.personal_faction + record_general.fields["mob_faction"] = target.faction + record_general.fields["religion"] = target.religion + record_general.fields["ref"] = WEAKREF(target) + //record_general.fields["photo_front"] = front + //record_general.fields["photo_side"] = side + + if(target.gen_record && !jobban_isbanned(target, "Records")) + record_general.fields["notes"] = target.gen_record else - G.fields["notes"] = "No notes found." - general += G + record_general.fields["notes"] = "No notes found." + general += record_general //Medical Record - var/datum/data/record/M = new() - M.fields["id"] = id - M.fields["name"] = H.real_name - M.fields["b_type"] = H.blood_type - M.fields["mi_dis"] = "None" - M.fields["mi_dis_d"] = "No minor disabilities have been declared." - M.fields["ma_dis"] = "None" - M.fields["ma_dis_d"] = "No major disabilities have been diagnosed." - M.fields["alg"] = "None" - M.fields["alg_d"] = "No allergies have been detected in this patient." - M.fields["cdi"] = "None" - M.fields["cdi_d"] = "No diseases have been diagnosed at the moment." - M.fields["last_scan_time"] = null - M.fields["last_scan_result"] = "No scan data on record" // body scanner results - M.fields["autodoc_data"] = list() - M.fields["autodoc_manual"] = list() - M.fields["ref"] = WEAKREF(H) - - if(H.med_record && !jobban_isbanned(H, "Records")) - M.fields["notes"] = H.med_record + var/datum/data/record/record_medical = new() + record_medical.fields["id"] = id + record_medical.fields["name"] = target.real_name + record_medical.name = target.name + record_medical.fields["b_type"] = target.blood_type + record_medical.fields["mi_dis"] = "None" + record_medical.fields["mi_dis_d"] = "No minor disabilities have been declared." + record_medical.fields["ma_dis"] = "None" + record_medical.fields["ma_dis_d"] = "No major disabilities have been diagnosed." + record_medical.fields["alg"] = "None" + record_medical.fields["alg_d"] = "No allergies have been detected in this patient." + record_medical.fields["cdi"] = "None" + record_medical.fields["cdi_d"] = "No diseases have been diagnosed at the moment." + record_medical.fields["last_scan_time"] = null + record_medical.fields["last_scan_result"] = "No scan data on record" // body scanner results + record_medical.fields["autodoc_data"] = list() + record_medical.fields["autodoc_manual"] = list() + record_medical.fields["ref"] = WEAKREF(target) + + if(target.med_record && !jobban_isbanned(target, "Records")) + record_medical.fields["notes"] = target.med_record else - M.fields["notes"] = "No notes found." - medical += M + record_medical.fields["notes"] = "No notes found." + medical += record_medical //Security Record - var/datum/data/record/S = new() - S.fields["id"] = id - S.fields["name"] = H.real_name - S.fields["criminal"] = "None" - S.fields["incident"] = "" - S.fields["ref"] = WEAKREF(H) + var/datum/data/record/record_security = new() + record_security.fields["id"] = id + record_security.fields["name"] = target.real_name + record_security.name = target.real_name + record_security.fields["criminal"] = "None" + record_security.fields["incident"] = "" + record_security.fields["ref"] = WEAKREF(target) - if(H.sec_record && !jobban_isbanned(H, "Records")) - var/new_comment = list("entry" = H.sec_record, "created_by" = list("name" = "\[REDACTED\]", "rank" = "Military Police"), "deleted_by" = null, "deleted_at" = null, "created_at" = "Pre-Deployment") - S.fields["comments"] = list("1" = new_comment) - S.fields["notes"] = H.sec_record - security += S + if(target.sec_record && !jobban_isbanned(target, "Records")) + var/new_comment = list("entry" = target.sec_record, "created_by" = list("name" = "\[REDACTED\]", "rank" = "Military Police"), "deleted_by" = null, "deleted_at" = null, "created_at" = "Pre-Deployment") + record_security.fields["comments"] = list("1" = new_comment) + record_security.fields["notes"] = target.sec_record + security += record_security //Locked Record - var/datum/data/record/L = new() - L.fields["id"] = md5("[H.real_name][H.job]") - L.fields["name"] = H.real_name - L.fields["rank"] = H.job - L.fields["age"] = H.age - L.fields["sex"] = H.gender - L.fields["b_type"] = H.b_type - L.fields["species"] = H.get_species() - L.fields["origin"] = H.origin - L.fields["faction"] = H.personal_faction - L.fields["religion"] = H.religion - L.fields["ref"] = WEAKREF(H) - - if(H.exploit_record && !jobban_isbanned(H, "Records")) - L.fields["exploit_record"] = H.exploit_record + var/datum/data/record/record_locked = new() + record_locked.fields["id"] = md5("[target.real_name][target.job]") + record_locked.fields["name"] = target.real_name + record_locked.name = target.real_name + record_locked.fields["rank"] = target.job + record_locked.fields["age"] = target.age + record_locked.fields["sex"] = target.gender + record_locked.fields["b_type"] = target.b_type + record_locked.fields["species"] = target.get_species() + record_locked.fields["origin"] = target.origin + record_locked.fields["faction"] = target.personal_faction + record_locked.fields["religion"] = target.religion + record_locked.fields["ref"] = WEAKREF(target) + + if(target.exploit_record && !jobban_isbanned(target, "Records")) + record_locked.fields["exploit_record"] = target.exploit_record else - L.fields["exploit_record"] = "No additional information acquired." - locked += L + record_locked.fields["exploit_record"] = "No additional information acquired." + locked += record_locked /proc/get_id_photo(mob/living/carbon/human/H) diff --git a/code/datums/datum.dm b/code/datums/datum.dm index 3e317ffd60..2370987b4c 100644 --- a/code/datums/datum.dm +++ b/code/datums/datum.dm @@ -70,6 +70,10 @@ var/list/cached_vars #endif +#ifdef AUTOWIKI + var/autowiki_skip = FALSE +#endif + /** * Default implementation of clean-up code. * @@ -119,7 +123,7 @@ var/datum/component/C = all_components qdel(C, FALSE, TRUE) if(datum_components) - debug_log("'[src]' datum_components was not null after removing all components! [datum_components.len] entries remained...") + debug_log("'[src]' datum_components was not null after removing all components! [length(datum_components)] entries remained...") datum_components.Cut() var/list/lookup = comp_lookup diff --git a/code/datums/decorators/gamemode_decorator.dm b/code/datums/decorators/gamemode_decorator.dm new file mode 100644 index 0000000000..bc89d7a206 --- /dev/null +++ b/code/datums/decorators/gamemode_decorator.dm @@ -0,0 +1,46 @@ +#define GAMEMODE_DECORATOR(type, mode, list_edits) \ +/datum/decorator/gamemode##type##mode { \ + gamemode = mode; \ + apply_type = type; \ + edits = list_edits; \ +} + +#define VARIABLE_EDIT(type, variable, value) nameof(type::variable) = value +#define ARMOR_EDIT(variable, value) VARIABLE_EDIT(/obj/item/clothing/suit/storage/marine, variable, value) +#define GUN_EDIT(variable, value) VARIABLE_EDIT(/obj/item/weapon/gun, variable, value) +#define AMMO_EDIT(variable, value) VARIABLE_EDIT(/obj/item/ammo_magazine, variable, value) + +/** + * Gamemode decorators allow us to make changes to edits on specific gamemodes, + * to assist in balancing varied gameplay in different modes + * + * They can be manually defined, and procs overridden. Alternatively, + * using the GAMEMODE_DECORATOR define, you can quickly make a decorator for + * a specific type and subtypes. + * + * eg: + * ``` + * GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/smartgunner, /datum/game_mode/extended/faction_clash, list( + * ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + * ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) + * )) + * ``` + * + * If you need to edit different types, make a new define using VARIABLE_EDIT, and provide the parent path for the type. + */ +/datum/decorator/gamemode + /// The gamemode type this should apply to + var/gamemode + + /// Which type this should apply edits to + var/apply_type + + /// The list of edits to make + var/list/edits + +/datum/decorator/gamemode/get_decor_types() + return typesof(apply_type) + +/datum/decorator/gamemode/decorate(atom/object) + for(var/edit in edits) + object.vars[edit] = edits[edit] diff --git a/code/datums/disease.dm b/code/datums/disease.dm index d2f466ebeb..497c62cdde 100644 --- a/code/datums/disease.dm +++ b/code/datums/disease.dm @@ -7,7 +7,7 @@ to null does not delete the object itself. Thank you. */ -var/list/diseases = typesof(/datum/disease) - /datum/disease +GLOBAL_LIST_INIT(diseases, typesof(/datum/disease) - /datum/disease) /datum/disease @@ -121,10 +121,11 @@ var/list/diseases = typesof(/datum/disease) - /datum/disease check_range = 1 // everything else, like infect-on-contact things, only infect things on top of it if(isturf(source.loc)) - for(var/mob/living/carbon/victim in oview(check_range, source)) + FOR_DOVIEW(var/mob/living/carbon/victim, check_range, source, HIDE_INVISIBLE_OBSERVER) if(isturf(victim.loc)) if(AStar(source.loc, victim.loc, /turf/proc/AdjacentTurfs, /turf/proc/Distance, check_range)) victim.contract_disease(src, 0, 1, force_spread) + FOR_DOVIEW_END return diff --git a/code/datums/diseases/advance/advance.dm b/code/datums/diseases/advance/advance.dm index ad4703ba65..41f1fe30e9 100644 --- a/code/datums/diseases/advance/advance.dm +++ b/code/datums/diseases/advance/advance.dm @@ -9,15 +9,15 @@ #define RANDOM_STARTING_LEVEL 2 -var/list/archive_diseases = list() +GLOBAL_LIST_EMPTY(archive_diseases) // The order goes from easy to cure to hard to cure. -var/list/advance_cures = list( +GLOBAL_LIST_INIT(advance_cures, list( "nutriment", "sugar", "orangejuice", "spaceacillin", "kelotane", "ethanol", "leporazine", "lipozine", "silver", "gold", "phoron" - ) + )) /* @@ -50,18 +50,18 @@ var/list/advance_cures = list( /datum/disease/advance/New(process = 1, datum/disease/advance/D) // Setup our dictionary if it hasn't already. - if(!dictionary_symptoms.len) - for(var/symp in list_symptoms) + if(!length(GLOB.dictionary_symptoms)) + for(var/symp in GLOB.list_symptoms) var/datum/symptom/S = new symp - dictionary_symptoms[S.id] = symp + GLOB.dictionary_symptoms[S.id] = symp if(!istype(D)) D = null // Generate symptoms if we weren't given any. - if(!symptoms || !symptoms.len) + if(!LAZYLEN(symptoms)) - if(!D || !D.symptoms || !D.symptoms.len) + if(!D || !LAZYLEN(D.symptoms)) symptoms = GenerateSymptoms() else for(var/datum/symptom/S in D.symptoms) @@ -80,7 +80,7 @@ var/list/advance_cures = list( // Randomly pick a symptom to activate. /datum/disease/advance/stage_act() ..() - if(symptoms && symptoms.len) + if(LAZYLEN(symptoms)) if(!processing) processing = 1 @@ -142,13 +142,13 @@ var/list/advance_cures = list( // Generate symptoms. By default, we only choose non-deadly symptoms. var/list/possible_symptoms = list() - for(var/symp in list_symptoms) + for(var/symp in GLOB.list_symptoms) var/datum/symptom/S = new symp if(S.level <= type_level_limit) if(!HasSymptom(S)) possible_symptoms += S - if(!possible_symptoms.len) + if(!length(possible_symptoms)) return //error("Advance Disease - We weren't able to get any possible symptoms in GenerateSymptoms([type_level_limit], [amount_get])") @@ -170,19 +170,19 @@ var/list/advance_cures = list( var/list/properties = GenerateProperties() AssignProperties(properties) - if(!archive_diseases[GetDiseaseID()]) + if(!GLOB.archive_diseases[GetDiseaseID()]) if(new_name) AssignName() - archive_diseases[GetDiseaseID()] = src // So we don't infinite loop - archive_diseases[GetDiseaseID()] = new /datum/disease/advance(0, src, 1) + GLOB.archive_diseases[GetDiseaseID()] = src // So we don't infinite loop + GLOB.archive_diseases[GetDiseaseID()] = new /datum/disease/advance(0, src, 1) - var/datum/disease/advance/A = archive_diseases[GetDiseaseID()] + var/datum/disease/advance/A = GLOB.archive_diseases[GetDiseaseID()] AssignName(A.name) //Generate disease properties based on the effects. Returns an associated list. /datum/disease/advance/proc/GenerateProperties() - if(!symptoms || !symptoms.len) + if(!LAZYLEN(symptoms)) CRASH("We did not have any symptoms before generating properties.") var/list/properties = list("resistance" = 1, "stealth" = 1, "stage_rate" = 1, "transmittable" = 1, "severity" = 1) @@ -200,13 +200,13 @@ var/list/advance_cures = list( // Assign the properties that are in the list. /datum/disease/advance/proc/AssignProperties(list/properties = list()) - if(properties && properties.len) + if(LAZYLEN(properties)) hidden = list( (properties["stealth"] > 2), (properties["stealth"] > 3) ) // The more symptoms we have, the less transmittable it is but some symptoms can make up for it. - SetSpread(Clamp(properties["transmittable"] - symptoms.len, BLOOD, AIRBORNE)) - permeability_mod = max(Ceiling(0.4 * properties["transmittable"]), 1) - cure_chance = 15 - Clamp(properties["resistance"], -5, 5) // can be between 10 and 20 + SetSpread(clamp(properties["transmittable"] - length(symptoms), BLOOD, AIRBORNE)) + permeability_mod = max(ceil(0.4 * properties["transmittable"]), 1) + cure_chance = 15 - clamp(properties["resistance"], -5, 5) // can be between 10 and 20 stage_prob = max(properties["stage_rate"], 2) SetSeverity(properties["severity"]) GenerateCure(properties) @@ -253,12 +253,12 @@ var/list/advance_cures = list( // Will generate a random cure, the less resistance the symptoms have, the harder the cure. /datum/disease/advance/proc/GenerateCure(list/properties = list()) - if(properties && properties.len) - var/res = Clamp(properties["resistance"] - (symptoms.len / 2), 1, advance_cures.len) - cure_id = advance_cures[res] + if(LAZYLEN(properties)) + var/res = clamp(properties["resistance"] - (length(symptoms) / 2), 1, length(GLOB.advance_cures)) + cure_id = GLOB.advance_cures[res] // Get the cure name from the cure_id - var/datum/reagent/D = chemical_reagents_list[cure_id] + var/datum/reagent/D = GLOB.chemical_reagents_list[cure_id] cure = D.name @@ -274,7 +274,7 @@ var/list/advance_cures = list( // Randomly remove a symptom. /datum/disease/advance/proc/Devolve() - if(symptoms.len > 1) + if(length(symptoms) > 1) var/s = SAFEPICK(symptoms) if(s) RemoveSymptom(s) @@ -305,7 +305,7 @@ var/list/advance_cures = list( if(HasSymptom(S)) return - if(symptoms.len < 5 + rand(-1, 1)) + if(length(symptoms) < 5 + rand(-1, 1)) symptoms += S else RemoveSymptom(pick(symptoms)) @@ -331,14 +331,14 @@ var/list/advance_cures = list( for(var/datum/disease/advance/A in D_list) diseases += A.Copy() - if(!diseases.len) + if(!length(diseases)) return null - if(diseases.len <= 1) + if(length(diseases) <= 1) return pick(diseases) // Just return the only entry. var/i = 0 // Mix our diseases until we are left with only one result. - while(i < 20 && diseases.len > 1) + while(i < 20 && length(diseases) > 1) i++ @@ -362,7 +362,7 @@ var/list/advance_cures = list( R.data_properties = data.Copy() else R.data_properties = data - if(preserve.len) + if(length(preserve)) R.data_properties["viruses"] = preserve /proc/AdminCreateVirus(mob/user) @@ -373,7 +373,7 @@ var/list/advance_cures = list( var/list/symptoms = list() symptoms += "Done" - symptoms += list_symptoms.Copy() + symptoms += GLOB.list_symptoms.Copy() do var/symptom = tgui_input_list(user, "Choose a symptom to add ([i] remaining)", "Choose a Symptom", symptoms) if(istext(symptom)) @@ -385,7 +385,7 @@ var/list/advance_cures = list( i-- while(i > 0) - if(D.symptoms.len > 0) + if(length(D.symptoms) > 0) var/new_name = input(user, "Name your new disease.", "New Name") D.AssignName(new_name) diff --git a/code/datums/diseases/advance/symptoms/cough.dm b/code/datums/diseases/advance/symptoms/cough.dm index 8b8d46c90a..cd7f9a1b97 100644 --- a/code/datums/diseases/advance/symptoms/cough.dm +++ b/code/datums/diseases/advance/symptoms/cough.dm @@ -3,7 +3,7 @@ Coughing - Noticable. + Noticeable. Little Resistance. Doesn't increase stage speed much. Transmittable. diff --git a/code/datums/diseases/advance/symptoms/hallucigen.dm b/code/datums/diseases/advance/symptoms/hallucigen.dm index f14f94dd21..2802f6ebfa 100644 --- a/code/datums/diseases/advance/symptoms/hallucigen.dm +++ b/code/datums/diseases/advance/symptoms/hallucigen.dm @@ -3,7 +3,7 @@ Hallucigen - Very noticable. + Very noticeable. Lowers resistance considerably. Decreases stage speed. Reduced transmittable. diff --git a/code/datums/diseases/advance/symptoms/headache.dm b/code/datums/diseases/advance/symptoms/headache.dm index 169085fe59..b4a3d59399 100644 --- a/code/datums/diseases/advance/symptoms/headache.dm +++ b/code/datums/diseases/advance/symptoms/headache.dm @@ -3,7 +3,7 @@ Headache - Noticable. + Noticeable. Highly resistant. Increases stage speed. Not transmittable. diff --git a/code/datums/diseases/advance/symptoms/itching.dm b/code/datums/diseases/advance/symptoms/itching.dm index a8f9cb2103..8b79fd1d60 100644 --- a/code/datums/diseases/advance/symptoms/itching.dm +++ b/code/datums/diseases/advance/symptoms/itching.dm @@ -3,7 +3,7 @@ Itching - Not noticable or unnoticable. + Not noticeable or unnoticeable. Resistant. Increases stage speed. Little transmittable. diff --git a/code/datums/diseases/advance/symptoms/sneeze.dm b/code/datums/diseases/advance/symptoms/sneeze.dm index 63f29eff93..74a6c3ab66 100644 --- a/code/datums/diseases/advance/symptoms/sneeze.dm +++ b/code/datums/diseases/advance/symptoms/sneeze.dm @@ -3,7 +3,7 @@ Sneezing - Very Noticable. + Very Noticeable. Increases resistance. Doesn't increase stage speed. Very transmittable. diff --git a/code/datums/diseases/advance/symptoms/symptoms.dm b/code/datums/diseases/advance/symptoms/symptoms.dm index 96a628be66..8ddd5897f9 100644 --- a/code/datums/diseases/advance/symptoms/symptoms.dm +++ b/code/datums/diseases/advance/symptoms/symptoms.dm @@ -1,7 +1,7 @@ // Symptoms are the effects that engineered advanced diseases do. -var/list/list_symptoms = typesof(/datum/symptom) - /datum/symptom -var/list/dictionary_symptoms = list() +GLOBAL_LIST_INIT(list_symptoms, typesof(/datum/symptom) - /datum/symptom) +GLOBAL_LIST_EMPTY(dictionary_symptoms) /datum/symptom // Buffs/Debuffs the symptom has to the overall engineered disease. @@ -16,8 +16,8 @@ var/list/dictionary_symptoms = list() var/id = "" /datum/symptom/New() - var/list/S = list_symptoms - for(var/i = 1; i <= S.len; i++) + var/list/S = GLOB.list_symptoms + for(var/i = 1; i <= length(S); i++) if(src.type == S[i]) id = "[i]" return diff --git a/code/datums/diseases/advance/symptoms/voice_change.dm b/code/datums/diseases/advance/symptoms/voice_change.dm index 7547242473..c5003ea772 100644 --- a/code/datums/diseases/advance/symptoms/voice_change.dm +++ b/code/datums/diseases/advance/symptoms/voice_change.dm @@ -3,7 +3,7 @@ Voice Change - Very Very noticable. + Very Very noticeable. Lowers resistance considerably. Decreases stage speed. Reduced transmittable. @@ -38,10 +38,10 @@ Bonus var/random_name = "" switch(H.gender) if(MALE) - random_name = pick(first_names_male) + random_name = pick(GLOB.first_names_male) else - random_name = pick(first_names_female) - random_name += " [pick(last_names)]" + random_name = pick(GLOB.first_names_female) + random_name += " [pick(GLOB.last_names)]" H.SetSpecialVoice(random_name) return diff --git a/code/datums/diseases/advance/symptoms/vomit.dm b/code/datums/diseases/advance/symptoms/vomit.dm index cb30a2aff8..47ba6625c9 100644 --- a/code/datums/diseases/advance/symptoms/vomit.dm +++ b/code/datums/diseases/advance/symptoms/vomit.dm @@ -3,7 +3,7 @@ Vomiting - Very Very Noticable. + Very Very Noticeable. Decreases resistance. Doesn't increase stage speed. Little transmittable. @@ -51,7 +51,7 @@ Bonus Vomiting Blood - Very Very Noticable. + Very Very Noticeable. Decreases resistance. Decreases stage speed. Little transmittable. diff --git a/code/datums/diseases/advance/symptoms/weight.dm b/code/datums/diseases/advance/symptoms/weight.dm index aebf8575e0..1e0dc978e3 100644 --- a/code/datums/diseases/advance/symptoms/weight.dm +++ b/code/datums/diseases/advance/symptoms/weight.dm @@ -3,7 +3,7 @@ Weight Gain - Very Very Noticable. + Very Very Noticeable. Decreases resistance. Decreases stage speed. Reduced transmittable. @@ -43,7 +43,7 @@ Bonus Weight Loss - Very Very Noticable. + Very Very Noticeable. Decreases resistance. Decreases stage speed. Reduced Transmittable. @@ -84,7 +84,7 @@ Bonus Weight Even - Very Noticable. + Very Noticeable. Decreases resistance. Decreases stage speed. Reduced transmittable. diff --git a/code/datums/diseases/black_goo.dm b/code/datums/diseases/black_goo.dm index d4d9b6f509..6a93c0d80b 100644 --- a/code/datums/diseases/black_goo.dm +++ b/code/datums/diseases/black_goo.dm @@ -1,110 +1,155 @@ //Disease Datum +#define ZOMBIE_INFECTION_STAGE_ONE 1 +#define ZOMBIE_INFECTION_STAGE_TWO 2 +#define ZOMBIE_INFECTION_STAGE_THREE 3 +#define ZOMBIE_INFECTION_STAGE_FOUR 4 +#define SLOW_INFECTION_RATE 1 +#define FAST_INFECTION_RATE 7 +#define STAGE_LEVEL_THRESHOLD 360 +#define MESSAGE_COOLDOWN_TIME 1 MINUTES + /datum/disease/black_goo name = "Black Goo" - max_stages = 5 + max_stages = 4 cure = "Anti-Zed" cure_id = "antiZed" spread = "Bites" spread_type = SPECIAL affected_species = list("Human") - curable = 0 - cure_chance = 100 - desc = "" + cure_chance = 100 //meaning the cure will kill the virus asap severity = "Medium" agent = "Unknown Biological Organism X-65" hidden = list(1,0) //Hidden from med-huds, but not pandemic scanners. BLOOD TESTS FOR THE WIN permeability_mod = 2 - stage_prob = 4 - stage_minimum_age = 150 - survive_mob_death = TRUE //FALSE //switch to true to make dead infected humans still transform - longevity = 500 //should allow the dead to rise - var/zombie_transforming = 0 //whether we're currently transforming the host into a zombie. - var/goo_message_cooldown = 0 //to make sure we don't spam messages too often. - var/stage_counter = 0 // tells a dead infectee their stage, so they can know when-abouts they'll revive + survive_mob_death = TRUE //We want the dead to turn into zombie. + longevity = 500 //the virus tend to die before the dead is turn into zombie this should fix it. + stage_prob = 0//no randomness + + /// boolean value to determine if the mob is currently transforming into a zombie. + var/zombie_is_transforming = FALSE + + /// variable to keep track of the stage level, used to prevent the stage message from being displayed more than once for any given stage. + var/stage_counter = 0 + +//new variables to handle infection progression inside a stage. + + /// variable that contains accumulated virus progression for a host. Iterates to a value above 360 and is then reset. + var/stage_level = 0 + + /// variable that handles passive increase of the virus of a host. + var/infection_rate = SLOW_INFECTION_RATE + + /// cooldown for the living mob's symptom messages + COOLDOWN_DECLARE(goo_message_cooldown) /datum/disease/black_goo/stage_act() ..() - if(!ishuman(affected_mob)) return - var/mob/living/carbon/human/H = affected_mob + if(!ishuman_strict(affected_mob)) + return + var/mob/living/carbon/human/infected_mob = affected_mob + + if(iszombie(infected_mob)) + return + + // infection rate is faster for dead mobs + if(infected_mob.stat == DEAD) + infection_rate = FAST_INFECTION_RATE + + // standard infection rate for living mobs + if(infected_mob.stat != DEAD) + infection_rate = SLOW_INFECTION_RATE + + stage_level += infection_rate + + // resets the stage_level once it passes the threshold. + if(stage_level >= STAGE_LEVEL_THRESHOLD) + stage++ + stage_level = stage_level % STAGE_LEVEL_THRESHOLD - if(age > 1.5*stage_minimum_age) stage_prob = 100 //if it takes too long we force a stage increase - else stage_prob = initial(stage_prob) - if(H.stat == DEAD) stage_minimum_age = 75 //the virus progress faster when the host is dead. switch(stage) - if(1) - if(H.stat == DEAD && stage_counter != stage) - to_chat(H, SPAN_CENTERBOLD("Your zombie infection is now at Stage One! Zombie transformation begins at Stage Four.")) - stage_counter = stage - survive_mob_death = TRUE //changed because infection rate was REALLY horrible. - if(goo_message_cooldown < world.time ) - if(prob(3)) - to_chat(affected_mob, SPAN_DANGER("You feel really warm...")) - goo_message_cooldown = world.time + 100 - if(2) - if(H.stat == DEAD && stage_counter != stage) - to_chat(H, SPAN_CENTERBOLD("Your zombie infection is now at Stage Two! Zombie transformation begins at Stage Four.")) - stage_counter = stage - if(goo_message_cooldown < world.time) - if (prob(3)) to_chat(affected_mob, SPAN_DANGER("Your throat is really dry...")) - else if (prob(6)) to_chat(affected_mob, SPAN_DANGER("You feel really warm...")) - else if (prob(2)) H.vomit_on_floor() - goo_message_cooldown = world.time + 100 - if(3) - if(H.stat == DEAD && stage_counter != stage) - to_chat(H, SPAN_CENTERBOLD("Your zombie infection is now at Stage Three! Zombie transformation begins at Stage Four, which will be soon.")) - stage_counter = stage - hidden = list(0,0) - //survive_mob_death = TRUE //even if host dies now, the transformation will occur. - H.next_move_slowdown = max(H.next_move_slowdown, 1) - if(goo_message_cooldown < world.time) - if (prob(3)) - to_chat(affected_mob, SPAN_DANGER("You cough up some black fluid...")) - goo_message_cooldown = world.time + 100 - else if (prob(6)) - to_chat(affected_mob, SPAN_DANGER("Your throat is really dry...")) - goo_message_cooldown = world.time + 100 - else if (prob(9)) - to_chat(affected_mob, SPAN_DANGER("You feel really warm...")) - goo_message_cooldown = world.time + 100 - else if(prob(5)) - goo_message_cooldown = world.time + 100 - H.vomit_on_floor() - if(4) - if(H.stat == DEAD && stage_counter != stage) - to_chat(H, SPAN_CENTERBOLD("Your zombie infection is now at Stage Four! Your transformation will happen any moment now.")) + if(ZOMBIE_INFECTION_STAGE_ONE) + if(infected_mob.stat == DEAD && stage_counter != stage) + to_chat(infected_mob, SPAN_CENTERBOLD("Your zombie infection is now at stage one! Zombie transformation begins at stage three.")) stage_counter = stage - H.next_move_slowdown = max(H.next_move_slowdown, 2) - if(prob(5) || age >= stage_minimum_age-1) - if(!zombie_transforming) - zombie_transform(H) - else if(prob(5)) - H.vomit_on_floor() - if(5) - if(H.stat == DEAD && stage_counter != stage) + + // dead mobs should not have symptoms, because... they are dead. + if(infected_mob.stat != DEAD) + if (!COOLDOWN_FINISHED(src, goo_message_cooldown)) + return + COOLDOWN_START(src, goo_message_cooldown, MESSAGE_COOLDOWN_TIME) + + switch(rand(0, 100)) + if(0 to 25) + return + if(25 to 75) + to_chat(infected_mob, SPAN_DANGER("You feel warm...")) + stage_level += 9 + if(75 to 95) + to_chat(infected_mob, SPAN_DANGER("Your throat is really dry...")) + stage_level += 18 + if(95 to 100) + to_chat(infected_mob, SPAN_DANGER("You can't trust them...")) + stage_level += 36 + + if(ZOMBIE_INFECTION_STAGE_TWO) + if(infected_mob.stat == DEAD && stage_counter != stage) + to_chat(infected_mob, SPAN_CENTERBOLD("Your zombie infection is now at stage two! Zombie transformation begins at stage three.")) stage_counter = stage - if(H.species.name != SPECIES_ZOMBIE && !zombie_transforming) - to_chat(H, SPAN_CENTERBOLD("Your zombie infection is now at Stage Five! Your transformation should have happened already, but will be forced now.")) - zombie_transform(H) - if(!zombie_transforming && prob(50)) - if(H.stat != DEAD) - var/healamt = 2 - if(H.health < H.maxHealth) - H.apply_damage(-healamt, BURN) - H.apply_damage(-healamt, BRUTE) - H.apply_damage(-healamt, TOX) - H.apply_damage(-healamt, OXY) - H.nutrition = NUTRITION_MAX //never hungry + if(infected_mob.stat != DEAD) + if (!COOLDOWN_FINISHED(src, goo_message_cooldown)) + return + COOLDOWN_START(src, goo_message_cooldown, MESSAGE_COOLDOWN_TIME) + + switch(rand(0, 100)) + if(0 to 25) + return + if(25 to 50) + to_chat(infected_mob, SPAN_DANGER("You can't trust them...")) + stage_level += 5 + if(50 to 75) + to_chat(infected_mob, SPAN_DANGER("You feel really warm...")) + stage_level += 9 + if(75 to 85) + to_chat(infected_mob, SPAN_DANGER("Your throat is really dry...")) + stage_level += 18 + if(85 to 95) + infected_mob.vomit_on_floor() + stage_level += 36 + if(95 to 100) + to_chat(infected_mob, SPAN_DANGER("You cough up some black fluid...")) + stage_level += 42 + + if(ZOMBIE_INFECTION_STAGE_THREE) + // if zombie or transforming we upgrade it to stage four. + if(iszombie(infected_mob)) + stage++ + return + // if not a zombie(above check) and isn't transforming then we transform you into a zombie. + if(!zombie_is_transforming) + // if your dead we inform you that you're going to turn into a zombie. + if(infected_mob.stat == DEAD && stage_counter != stage) + to_chat(infected_mob, SPAN_CENTERBOLD("Your zombie infection is now at stage three! Zombie transformation begin!")) + stage_counter = stage + zombie_transform(infected_mob) + hidden = list(0,0) + infected_mob.next_move_slowdown = max(infected_mob.next_move_slowdown, 2) + + if(ZOMBIE_INFECTION_STAGE_FOUR) + return + // final stage of infection it's to avoid running the above test once you're a zombie for now. maybe more later. /datum/disease/black_goo/proc/zombie_transform(mob/living/carbon/human/human) set waitfor = 0 - zombie_transforming = TRUE + zombie_is_transforming = TRUE human.vomit_on_floor() human.adjust_effect(5, STUN) sleep(20) human.make_jittery(500) sleep(30) if(human && human.loc) + if(human.buckled) + human.buckled.unbuckle() if(human.stat == DEAD) human.revive(TRUE) human.remove_language(LANGUAGE_ENGLISH) // You lose the ability to understand english. Language processing is handled in the mind not the body. @@ -113,9 +158,9 @@ playsound(human.loc, 'sound/hallucinations/wail.ogg', 25, 1) human.jitteriness = 0 human.set_species(SPECIES_ZOMBIE) - stage = 5 + stage = 4 human.faction = FACTION_ZOMBIE - zombie_transforming = FALSE + zombie_is_transforming = FALSE /obj/item/weapon/zombie_claws @@ -257,12 +302,12 @@ /obj/item/storage/fancy/blackgoo/get_examine_text(mob/user) . = ..() . += "A strange looking metal container..." - if(contents.len <= 0) + if(length(contents) <= 0) . += "There are no bottles left inside it." - else if(contents.len == 1) + else if(length(contents) == 1) . += "There is one bottle left inside it." else - . += "There are [src.contents.len] bottles inside the container." + . += "There are [length(src.contents)] bottles inside the container." /obj/item/storage/fancy/blackgoo/Initialize() @@ -270,3 +315,12 @@ for(var/i=1; i <= storage_slots; i++) new /obj/item/reagent_container/food/drinks/bottle/black_goo(src) return + +#undef ZOMBIE_INFECTION_STAGE_ONE +#undef ZOMBIE_INFECTION_STAGE_TWO +#undef ZOMBIE_INFECTION_STAGE_THREE +#undef ZOMBIE_INFECTION_STAGE_FOUR +#undef STAGE_LEVEL_THRESHOLD +#undef SLOW_INFECTION_RATE +#undef FAST_INFECTION_RATE +#undef MESSAGE_COOLDOWN_TIME diff --git a/code/datums/diseases/magnitis.dm b/code/datums/diseases/magnitis.dm index 4b6e685e44..d4ba545978 100644 --- a/code/datums/diseases/magnitis.dm +++ b/code/datums/diseases/magnitis.dm @@ -22,7 +22,6 @@ if(!M.anchored && (M.flags_atom & CONDUCT)) step_towards(M,affected_mob) for(var/mob/living/silicon/S in orange(2,affected_mob)) - if(isAI(S)) continue step_towards(S,affected_mob) /* if(M.x > affected_mob.x) @@ -47,7 +46,6 @@ for(i=0,i 19) // 4 ticks in smoke, neuro is affecting cereberal activity - affected_mob.eye_blind = max(affected_mob.eye_blind, round(strength/4)) + affected_mob.eye_blind = max(affected_mob.eye_blind, floor(strength/4)) if(duration >= 27) // 5+ ticks in smoke, you are ODing now affected_mob.apply_effect(1, DAZE) // Unable to talk and weldervision affected_mob.apply_damage(2,TOX) - affected_mob.SetEarDeafness(max(affected_mob.ear_deaf, round(strength*1.5))) //Paralysis of hearing system, aka deafness + affected_mob.SetEarDeafness(max(affected_mob.ear_deaf, floor(strength*1.5))) //Paralysis of hearing system, aka deafness if(duration >= 50) // 10+ ticks, apply some semi-perm damage and end their suffering if they are somehow still alive by now affected_mob.apply_internal_damage(10,"liver") @@ -150,7 +154,7 @@ victim.hallucination = 3 victim.druggy = 3 if(70 to 100) // sound based hallucination - playsound_client(victim.client,pick('sound/voice/alien_distantroar_3.ogg','sound/voice/xenos_roaring.ogg','sound/voice/alien_queen_breath1.ogg', 'sound/voice/4_xeno_roars.ogg','sound/misc/notice2.ogg',"bone_break","gun_pulse","metalbang","pry","shatter")) + playsound_client(client = victim.client, soundin = pick('sound/voice/alien_distantroar_3.ogg','sound/voice/xenos_roaring.ogg','sound/voice/alien_queen_breath1.ogg', 'sound/voice/4_xeno_roars.ogg','sound/misc/notice2.ogg',"bone_break","gun_pulse","metalbang","pry","shatter"),vol = 65) diff --git a/code/datums/effects/tether.dm b/code/datums/effects/tether.dm index ddaafff464..1667d901a0 100644 --- a/code/datums/effects/tether.dm +++ b/code/datums/effects/tether.dm @@ -52,7 +52,7 @@ var/turf/T var/dir_away = get_dir(affected_atom, A) - for (var/dir in alldirs) + for (var/dir in GLOB.alldirs) if (dir & dir_away) continue T = get_step(A, dir) diff --git a/code/datums/effects/xeno_strains/xeno_buff.dm b/code/datums/effects/xeno_strains/xeno_buff.dm index ad39a61dd1..16a4bb8211 100644 --- a/code/datums/effects/xeno_strains/xeno_buff.dm +++ b/code/datums/effects/xeno_strains/xeno_buff.dm @@ -21,7 +21,7 @@ if(!isxeno(A)) qdel(src) - to_chat(A, SPAN_XENONOTICE("You feel empowered")) + to_chat(A, SPAN_XENONOTICE("We feel empowered")) var/mob/living/carbon/xenomorph/X = A X.melee_damage_lower += bonus_damage @@ -47,7 +47,7 @@ /datum/effects/xeno_buff/Destroy() if(affected_atom) - to_chat(affected_atom, SPAN_XENONOTICE("You no longer feel empowered")) + to_chat(affected_atom, SPAN_XENONOTICE("We no longer feel empowered")) var/mob/living/carbon/xenomorph/X = affected_atom X.melee_damage_lower -= bonus_damage X.melee_damage_upper -= bonus_damage diff --git a/code/datums/elements/bullet_trait/damage_boost.dm b/code/datums/elements/bullet_trait/damage_boost.dm index a0370f2d36..20175d1125 100644 --- a/code/datums/elements/bullet_trait/damage_boost.dm +++ b/code/datums/elements/bullet_trait/damage_boost.dm @@ -1,5 +1,7 @@ GLOBAL_LIST_INIT(damage_boost_turfs, typecacheof(/turf)) +GLOBAL_LIST_INIT(damage_boost_turfs_xeno, typecacheof(/turf/closed/wall/resin)) + GLOBAL_LIST_INIT(damage_boost_breaching, typecacheof(list( /obj/structure/machinery/door, /obj/structure/mineral_door, @@ -26,17 +28,10 @@ GLOBAL_LIST_INIT(damage_boost_vehicles, typecacheof(/obj/vehicle/multitile)) /// A typecache of objs or turfs that, upon being hit, boost the damage of the attached projectile var/list/damage_boosted_atoms - //vars for dealing with interaction issues with the Penetrating trait - var/boosted_hits - var/last_damage_mult - //allows for nuance in Breaching-Resistant interactions var/active_damage_mult var/atom_type - //var for dealing with bonus projectiles - var/bonus_projectile_check - /** * vars: * * damage_mult - the damage multiplier to be applied if the bullet hits an atom whose type is in `breaching_objs` @@ -49,11 +44,8 @@ GLOBAL_LIST_INIT(damage_boost_vehicles, typecacheof(/obj/vehicle/multitile)) src.damage_mult = damage_mult src.damage_boosted_atoms = damage_boosted_atoms - src.boosted_hits = 0 - src.last_damage_mult = 1 src.active_damage_mult = 1 src.atom_type = 0 - src.bonus_projectile_check = 0 RegisterSignal(target, list( COMSIG_BULLET_PRE_HANDLE_OBJ, @@ -66,17 +58,17 @@ GLOBAL_LIST_INIT(damage_boost_vehicles, typecacheof(/obj/vehicle/multitile)) //add more cases for other interactions (switch doesn't seem to work with istype) else return 0 -/datum/element/bullet_trait_damage_boost/proc/handle_bullet(obj/projectile/P, atom/A) +/datum/element/bullet_trait_damage_boost/proc/handle_bullet(obj/projectile/boosted_projectile, atom/hit_atom) SIGNAL_HANDLER - atom_type = check_type(A) + atom_type = check_type(hit_atom) switch(atom_type) if("door") - var/obj/structure/machinery/door/D = A - if(D.masterkey_resist) - if(D.masterkey_mod) - active_damage_mult = damage_mult * D.masterkey_mod + var/obj/structure/machinery/door/hit_door = hit_atom + if(hit_door.masterkey_resist) + if(hit_door.masterkey_mod) + active_damage_mult = damage_mult * hit_door.masterkey_mod else active_damage_mult = 1 //no bonus damage else @@ -85,12 +77,22 @@ GLOBAL_LIST_INIT(damage_boost_vehicles, typecacheof(/obj/vehicle/multitile)) else active_damage_mult = damage_mult - if(boosted_hits > 0) - if(bonus_projectile_check == P.damage) - P.damage = P.damage / last_damage_mult - boosted_hits-- - if(damage_boosted_atoms[A.type]) - P.damage = round(P.damage * active_damage_mult) - last_damage_mult = active_damage_mult - boosted_hits++ - bonus_projectile_check = P.damage + + if(boosted_projectile.damage_boosted && ((boosted_projectile.last_atom_signaled?.resolve()) != hit_atom) && (!boosted_projectile.bonus_projectile_check)) + //If this is after a boosted hit, the last atom that procced this isn't the same as the current target, and this isn't a bonus projectile sharing the same damage_boost + if(!boosted_projectile.last_damage_mult) //Make sure stored mult isn't 0 + boosted_projectile.last_damage_mult = 1 + + boosted_projectile.damage = boosted_projectile.damage / boosted_projectile.last_damage_mult //Reduce the damage back to normal + boosted_projectile.damage_boosted-- //Mark that damage has been returned to normal. + + if(damage_boosted_atoms[hit_atom.type]) //If hitting a valid atom for damage boost + boosted_projectile.damage = floor(boosted_projectile.damage * active_damage_mult) //Modify Damage by multiplier + + if (active_damage_mult) + boosted_projectile.last_damage_mult = active_damage_mult //Save multiplier for next check + else + boosted_projectile.last_damage_mult = 1 + + boosted_projectile.damage_boosted++ //Mark that a boosted hit occurred. + boosted_projectile.last_atom_signaled = WEAKREF(hit_atom) //Save the current triggering atom to the projectile diff --git a/code/datums/elements/bullet_trait/iff.dm b/code/datums/elements/bullet_trait/iff.dm index ab48b29f48..cee36acbed 100644 --- a/code/datums/elements/bullet_trait/iff.dm +++ b/code/datums/elements/bullet_trait/iff.dm @@ -46,7 +46,7 @@ // The cache is reset when the user drops their ID /datum/element/bullet_trait_iff/proc/get_user_iff_group(mob/living/carbon/human/user) if(!ishuman(user)) - return user.faction_group + return user?.faction_group var/iff_group = LAZYACCESS(iff_group_cache, user) if(isnull(iff_group)) diff --git a/code/datums/elements/bullet_trait/incendiary.dm b/code/datums/elements/bullet_trait/incendiary.dm index 2d5d0a15f3..74a7e32cc3 100644 --- a/code/datums/elements/bullet_trait/incendiary.dm +++ b/code/datums/elements/bullet_trait/incendiary.dm @@ -13,7 +13,7 @@ if(ispath(reagent)) var/datum/reagent/R = reagent - burn_reagent = chemical_reagents_list[initial(R.id)] + burn_reagent = GLOB.chemical_reagents_list[initial(R.id)] else burn_reagent = reagent burn_stacks = stacks @@ -52,7 +52,7 @@ if(projectile_target.stat) to_chat(projectile_target, SPAN_AVOIDHARM("You shrug off some persistent flames.")) return - projectile_target.adjust_fire_stacks(burn_stacks/2 + round(damage_actual / 4), burn_reagent) + projectile_target.adjust_fire_stacks(burn_stacks/2 + floor(damage_actual / 4), burn_reagent) projectile_target.IgniteMob() projectile_target.visible_message( SPAN_DANGER("[projectile_target] bursts into flames!"), \ diff --git a/code/datums/elements/bullet_trait/penetrating/weak.dm b/code/datums/elements/bullet_trait/penetrating/weak.dm new file mode 100644 index 0000000000..99c94a9c90 --- /dev/null +++ b/code/datums/elements/bullet_trait/penetrating/weak.dm @@ -0,0 +1,60 @@ +/datum/element/bullet_trait_penetrating/weak + // Generic bullet trait vars + element_flags = ELEMENT_DETACH|ELEMENT_BESPOKE + id_arg_index = 4 + + /// For each thing this hits, how much damage it loses normally. This can be modified by what it penetrates later. + var/damage_percent_lost_per_hit = 20 + // XM43E1 AMR: First target takes full damage, each subsequent target takes at least 20% less damage (increased for large mobs and dense turfs), 25 from base 125 damage. + + /// For each thing this hits, how much distance it loses normally. + distance_loss_per_hit = 4 + // XM43E1 AMR: Hits 7 things at most, at point blank, with no additional modifiers. This greatly increases at actual sniping ranges. + + /// How many times more effective turfs are at slowing down the projectile normally, reducing both range and damage. + var/turf_hit_slow_mult = 3 + // XM43E1 AMR: Unable to hit anything through more than 2 walls, less at maximum ranges. Pens 2 walls at 8 tiles or less, 1 at 20 tiles or less, and can't wallbang through normal walls at maximum range. + // Also loses 75 damage with each normal wall pen. + +/datum/element/bullet_trait_penetrating/weak/Attach(datum/target, distance_loss_per_hit = 4, damage_percent_lost_per_hit = 20, turf_hit_slow_mult = 3) + . = ..() + if(. == ELEMENT_INCOMPATIBLE) + return + + src.damage_percent_lost_per_hit = damage_percent_lost_per_hit + src.turf_hit_slow_mult = turf_hit_slow_mult + +/datum/element/bullet_trait_penetrating/weak/handle_passthrough_movables(obj/projectile/bullet, atom/movable/hit_movable, did_hit) + if(did_hit) + var/slow_mult = 1 + if(ismob(hit_movable)) + var/mob/mob = hit_movable + if(mob.mob_size >= MOB_SIZE_BIG) // Big Xenos (including fortified Defender) can soak hits and greatly reduce penetration. + slow_mult = 2 // 8 tiles of range lost per Big hit. At point blank, this comes out to only 3 targets. At sniping ranges, even a single one can stop the bullet dead. + + bullet.distance_travelled += (distance_loss_per_hit * slow_mult) + + bullet.damage -= (damage_percent_lost_per_hit * slow_mult) + + return COMPONENT_BULLET_PASS_THROUGH + + +/datum/element/bullet_trait_penetrating/weak/handle_passthrough_turf(obj/projectile/bullet, turf/closed/wall/hit_wall) + var/slow_mult = turf_hit_slow_mult + + // Better penetration against Membranes to still be able to counter Boilers at most ranges. Still loses 4 tiles of range and 25 damage per. + if(istype(hit_wall, /turf/closed/wall/resin/membrane)) + if(istype(hit_wall, /turf/closed/wall/resin/membrane/thick)) + slow_mult = 1.5 + else + slow_mult = 1 + + bullet.distance_travelled += (distance_loss_per_hit * slow_mult) + + bullet.damage *= (1 - (damage_percent_lost_per_hit * slow_mult * 0.01)) + + if(!istype(hit_wall)) + return COMPONENT_BULLET_PASS_THROUGH + + if(!hit_wall.hull) + return COMPONENT_BULLET_PASS_THROUGH diff --git a/code/datums/elements/mouth_drop_item.dm b/code/datums/elements/mouth_drop_item.dm index 7a546c6b39..f27e1b928b 100644 --- a/code/datums/elements/mouth_drop_item.dm +++ b/code/datums/elements/mouth_drop_item.dm @@ -18,7 +18,7 @@ /datum/element/mouth_drop_item/proc/item_equipped(obj/item/I, mob/living/carbon/human/user, slot) SIGNAL_HANDLER - if(slot == WEAR_FACE) + if(slot == WEAR_FACE && !HAS_TRAIT(user, TRAIT_IRON_TEETH)) I.RegisterSignal(user, COMSIG_LIVING_SET_BODY_POSITION, TYPE_PROC_REF(/obj/item, drop_to_floor)) /datum/element/mouth_drop_item/proc/item_dropped(obj/item/I, mob/living/carbon/human/user) diff --git a/code/datums/elements/strippable.dm b/code/datums/elements/strippable.dm index e0daaee74a..d93b07234c 100644 --- a/code/datums/elements/strippable.dm +++ b/code/datums/elements/strippable.dm @@ -126,6 +126,14 @@ to_chat(user, SPAN_WARNING("You can't do this right now.")) return FALSE + if (user.is_mob_incapacitated()) + to_chat(user, SPAN_WARNING("You can't do this right now.")) + return FALSE + + if (HAS_TRAIT(user, TRAIT_IMMOBILIZED) || HAS_TRAIT(user, TRAIT_FLOORED)) + to_chat(user, SPAN_WARNING("You can't do this right now.")) + return FALSE + if ((item.flags_inventory & CANTSTRIP) || ((item.flags_item & NODROP) && !(item.flags_item & FORCEDROP_CONDITIONAL)) || (item.flags_item & ITEM_ABSTRACT)) return FALSE diff --git a/code/datums/emergency_calls/cbrn.dm b/code/datums/emergency_calls/cbrn.dm index 3a6b1c6406..c5e97bfb2c 100644 --- a/code/datums/emergency_calls/cbrn.dm +++ b/code/datums/emergency_calls/cbrn.dm @@ -1,7 +1,8 @@ /datum/emergency_call/cbrn name = "CBRN (Squad)" - arrival_message = "A CBRN squad has been dispatched to your ship. Stand by." + arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival." objectives = "Handle the chemical, biological, radiological, or nuclear threat. Further orders may be provided." + home_base = /datum/lazy_template/ert/uscm_station mob_min = 3 mob_max = 5 max_heavies = 0 @@ -40,7 +41,7 @@ /datum/emergency_call/cbrn/ert name = "CBRN (Distress)" - arrival_message = "Your distress signal has been received and we are dispatching the nearest CBRN squad to board with you now. Stand by." + arrival_message = "Attention, this is the USS Kurtz, we have dispatched a CBRN squad to your ship per your distress call. Stand by for arrival." probability = 10 /datum/emergency_call/cbrn/ert/New() @@ -55,7 +56,7 @@ max_medics = 0 /datum/emergency_call/cbrn/specialists/New() - var/cbrn_ship_name = "Unit [pick(nato_phonetic_alphabet)]-[rand(1, 99)]" + var/cbrn_ship_name = "Unit [pick(GLOB.nato_phonetic_alphabet)]-[rand(1, 99)]" arrival_message = "[MAIN_SHIP_NAME], CBRN [cbrn_ship_name] has been dispatched. Follow all orders provided by [cbrn_ship_name]." objectives = "You are a specialist team in [cbrn_ship_name] dispatched to quell a threat to [MAIN_SHIP_NAME]. Further orders may be provided." diff --git a/code/datums/emergency_calls/clf.dm b/code/datums/emergency_calls/clf.dm index 0a5f09e2a2..5441ba3103 100644 --- a/code/datums/emergency_calls/clf.dm +++ b/code/datums/emergency_calls/clf.dm @@ -8,6 +8,7 @@ objectives = "Assault the USCM, and sabotage as much as you can. Ensure any survivors escape in your custody." probability = 20 hostility = TRUE + home_base = /datum/lazy_template/ert/clf_station var/max_synths = 1 var/synths = 0 @@ -28,7 +29,7 @@ to_chat(H, SPAN_BOLD("The Dust Raiders responded with deadly force, scattering many of the colonists who attempted to fight their occupation.")) to_chat(H, SPAN_BOLD("The Dust Raiders and their flagship, the USS Alistoun eventually withdrew from the sector by the end of the year.")) to_chat(H, SPAN_BOLD("With the Neroid Sector existing in relative isolation from United America oversight for the last five years, many colonists have considered themselves free from governmental rule.")) - to_chat(H, SPAN_BOLD("The year is now [game_year].")) + to_chat(H, SPAN_BOLD("The year is now [GLOB.game_year].")) to_chat(H, SPAN_BOLD("The arrival of the USCM Battalion, the Falling Falcons, and their flagship, the [MAIN_SHIP_NAME], have reaffirmed that the United Americas considers the Neroid Sector part of their holdings.")) to_chat(H, SPAN_BOLD("It is up to you and your fellow colonists to make them realize their trespasses. This sector is no longer theirs.")) @@ -45,7 +46,7 @@ leader = H to_chat(H, SPAN_ROLE_HEADER("You are a Cell Leader of the local resistance group, the Colonial Liberation Front!")) arm_equipment(H, /datum/equipment_preset/clf/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[H.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && H.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(H, SPAN_ROLE_HEADER("You are a Multi-Purpose Synthetic for the local resistance group, the Colonial Liberation Front!")) arm_equipment(H, /datum/equipment_preset/clf/synth, TRUE, TRUE) diff --git a/code/datums/emergency_calls/cmb.dm b/code/datums/emergency_calls/cmb.dm index a49c0a4ce2..bbe2e16184 100644 --- a/code/datums/emergency_calls/cmb.dm +++ b/code/datums/emergency_calls/cmb.dm @@ -3,6 +3,7 @@ name = "CMB - Colonial Marshals Patrol Team (Friendly)" mob_max = 5 probability = 10 + home_base = /datum/lazy_template/ert/weyland_station var/max_synths = 1 var/synths = 0 @@ -35,7 +36,7 @@ leader = mob to_chat(mob, SPAN_ROLE_HEADER("You are the Colonial Marshal!")) arm_equipment(mob, /datum/equipment_preset/cmb/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(mob?.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[mob.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(mob?.client.prefs.toggles_ert, PLAY_SYNTH) && mob.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(mob, SPAN_ROLE_HEADER("You are a CMB Investigative Synthetic!")) arm_equipment(mob, /datum/equipment_preset/cmb/synth, TRUE, TRUE) @@ -53,7 +54,7 @@ print_backstory(mob) - addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) /datum/emergency_call/cmb/print_backstory(mob/living/carbon/human/M) @@ -159,7 +160,7 @@ print_backstory(mob) - addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) /datum/emergency_call/cmb/anchorpoint/print_backstory(mob/living/carbon/human/M) diff --git a/code/datums/emergency_calls/contractor.dm b/code/datums/emergency_calls/contractor.dm index a5d6c2d7e8..6721abdf18 100644 --- a/code/datums/emergency_calls/contractor.dm +++ b/code/datums/emergency_calls/contractor.dm @@ -29,7 +29,7 @@ leader = mob to_chat(mob, SPAN_ROLE_HEADER("You are a Contractor Team Leader of Vanguard's Arrow Incorporated!")) arm_equipment(mob, /datum/equipment_preset/contractor/duty/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[mob.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SYNTH) && mob.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(mob, SPAN_ROLE_HEADER("You are a Contractor Support Synthetic of Vanguard's Arrow Incorporated!")) arm_equipment(mob, /datum/equipment_preset/contractor/duty/synth, TRUE, TRUE) @@ -87,7 +87,7 @@ /datum/emergency_call/contractors/covert name = "Military Contractors (Covert) (Hostile to WY)" mob_max = 7 - probability = 0 + probability = 20 max_medics = 1 max_engineers = 1 max_heavies = 1 @@ -117,13 +117,13 @@ var/mob/living/carbon/human/H = new(spawn_loc) H.key = M.key if(H.client) - H.client.change_view(world_view_size) + H.client.change_view(GLOB.world_view_size) if(!leader && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. leader = H to_chat(H, SPAN_ROLE_HEADER("You are a Covert Contractor Team Leader of Vanguard's Arrow Incorporated!")) arm_equipment(H, /datum/equipment_preset/contractor/covert/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[H.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && H.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(H, SPAN_ROLE_HEADER("You are a Contractor Support Synthetic of Vanguard's Arrow Incorporated!")) arm_equipment(H, /datum/equipment_preset/contractor/covert/synth, TRUE, TRUE) diff --git a/code/datums/emergency_calls/cryo_marines.dm b/code/datums/emergency_calls/cryo_marines.dm index f7a486bc04..2c65b0b596 100644 --- a/code/datums/emergency_calls/cryo_marines.dm +++ b/code/datums/emergency_calls/cryo_marines.dm @@ -14,7 +14,7 @@ spawn_max_amount = TRUE /datum/emergency_call/cryo_squad/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc) - var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] + var/datum/squad/marine/cryo/cryo_squad = GLOB.RoleAuthority.squads_by_type[/datum/squad/marine/cryo] leaders = cryo_squad.num_leaders . = ..() shipwide_ai_announcement("Successfully deployed [mob_max] Foxtrot marines, of which [length(members)] are ready for duty.") @@ -37,44 +37,45 @@ human.create_hud() if(!mind) - for(var/obj/structure/machinery/cryopod/pod in view(7,human)) + FOR_DVIEW(var/obj/structure/machinery/cryopod/pod, 7, human, HIDE_INVISIBLE_OBSERVER) if(pod && !pod.occupant) pod.go_in_cryopod(human, silent = TRUE) break + FOR_DVIEW_END sleep(5) - var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] + var/datum/squad/marine/cryo/cryo_squad = GLOB.RoleAuthority.squads_by_type[/datum/squad/marine/cryo] if(leaders < cryo_squad.max_leaders && (!mind || (HAS_FLAG(human.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(human.client, JOB_SQUAD_LEADER, time_required_for_job)))) leader = human leaders++ human.client?.prefs.copy_all_to(human, JOB_SQUAD_LEADER, TRUE, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are a Squad Leader in the USCM")) - to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) else if (heavies < max_heavies && (!mind || (HAS_FLAG(human.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(human.client, JOB_SQUAD_SPECIALIST, time_required_for_job)))) heavies++ human.client?.prefs.copy_all_to(human, JOB_SQUAD_SPECIALIST, TRUE, TRUE) arm_equipment(human, /datum/equipment_preset/uscm/spec/cryo, mind == null, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are a Weapons Specialist in the USCM")) - to_chat(human, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) else if (medics < max_medics && (!mind || (HAS_FLAG(human.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(human.client, JOB_SQUAD_MEDIC, time_required_for_job)))) medics++ human.client?.prefs.copy_all_to(human, JOB_SQUAD_MEDIC, TRUE, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are a Hospital Corpsman in the USCM")) - to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) else if (engineers < max_engineers && (!mind || (HAS_FLAG(human.client.prefs.toggles_ert, PLAY_ENGINEER) && check_timelock(human.client, JOB_SQUAD_ENGI, time_required_for_job)))) engineers++ human.client?.prefs.copy_all_to(human, JOB_SQUAD_ENGI, TRUE, TRUE) arm_equipment(human, /datum/equipment_preset/uscm/engineer/cryo, mind == null, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are an Engineer in the USCM")) - to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) else human.client?.prefs.copy_all_to(human, JOB_SQUAD_MARINE, TRUE, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are a Rifleman in the USCM")) - to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("You are here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) sleep(10) diff --git a/code/datums/emergency_calls/cryo_marines_heavy.dm b/code/datums/emergency_calls/cryo_marines_heavy.dm index c733b9101e..3dad496f32 100644 --- a/code/datums/emergency_calls/cryo_marines_heavy.dm +++ b/code/datums/emergency_calls/cryo_marines_heavy.dm @@ -17,7 +17,7 @@ var/leaders = 0 /datum/emergency_call/cryo_squad_equipped/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc) - var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] + var/datum/squad/marine/cryo/cryo_squad = GLOB.RoleAuthority.squads_by_type[/datum/squad/marine/cryo] leaders = cryo_squad.num_leaders . = ..() if(length(members)) @@ -35,33 +35,33 @@ M.transfer_to(H, TRUE) sleep(5) - var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] + var/datum/squad/marine/cryo/cryo_squad = GLOB.RoleAuthority.squads_by_type[/datum/squad/marine/cryo] if(leaders < cryo_squad.max_leaders && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, JOB_SQUAD_LEADER, time_required_for_job)) leader = H leaders++ to_chat(H, SPAN_ROLE_HEADER("You are a Squad Leader in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if (heavies < max_heavies && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(H.client, JOB_SQUAD_SPECIALIST, time_required_for_job)) heavies++ arm_equipment(H, /datum/equipment_preset/uscm/specialist_equipped/cryo, TRUE, TRUE) to_chat(H, SPAN_ROLE_HEADER("You are a Weapons Specialist in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if(smartgunners < max_smartgunners && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(H.client, JOB_SQUAD_SMARTGUN, time_required_for_job)) smartgunners++ to_chat(H, SPAN_ROLE_HEADER("You are a Smartgunner in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if(engineers < max_engineers && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_ENGINEER) && check_timelock(H.client, JOB_SQUAD_ENGI, time_required_for_job)) engineers++ arm_equipment(H, /datum/equipment_preset/uscm/engineer_equipped/cryo, TRUE, TRUE) to_chat(H, SPAN_ROLE_HEADER("You are an Engineer in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if (medics < max_medics && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(H.client, JOB_SQUAD_MEDIC, time_required_for_job)) medics++ to_chat(H, SPAN_ROLE_HEADER("You are a Hospital Corpsman in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else to_chat(H, SPAN_ROLE_HEADER("You are a Rifleman in the USCM")) - to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(H, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) sleep(10) to_chat(H, SPAN_BOLD("Objectives: [objectives]")) diff --git a/code/datums/emergency_calls/cryo_spec.dm b/code/datums/emergency_calls/cryo_spec.dm index 6cc7c905ef..5d4f621a47 100644 --- a/code/datums/emergency_calls/cryo_spec.dm +++ b/code/datums/emergency_calls/cryo_spec.dm @@ -8,6 +8,16 @@ shuttle_id = "" spawn_max_amount = TRUE +/datum/emergency_call/cryo_spec/remove_nonqualifiers(list/datum/mind/candidates_list) + var/list/datum/mind/candidates_clean = list() + for(var/datum/mind/single_candidate in candidates_list) + if(check_timelock(single_candidate.current?.client, JOB_SQUAD_ROLES_LIST, time_required_for_job)) + candidates_clean.Add(single_candidate) + continue + if(single_candidate.current) + to_chat(single_candidate.current, SPAN_WARNING("You didn't qualify for the ERT beacon because you don't have the specialist job unlocked!")) + return candidates_clean + /datum/emergency_call/cryo_spec/create_member(datum/mind/mind, turf/override_spawn_loc) set waitfor = FALSE if(SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST) @@ -25,16 +35,17 @@ human.create_hud() if(!mind) - for(var/obj/structure/machinery/cryopod/pod in view(7,human)) + FOR_DVIEW(var/obj/structure/machinery/cryopod/pod, 7, human, HIDE_INVISIBLE_OBSERVER) if(pod && !pod.occupant) pod.go_in_cryopod(human, silent = TRUE) break + FOR_DVIEW_END sleep(5) human.client?.prefs.copy_all_to(human, JOB_SQUAD_SPECIALIST, TRUE, TRUE) arm_equipment(human, /datum/equipment_preset/uscm/spec/cryo, mind == null, TRUE) to_chat(human, SPAN_ROLE_HEADER("You are a Weapons Specialist in the USCM")) - to_chat(human, SPAN_ROLE_BODY("Your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(human, SPAN_ROLE_BODY("Your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(human, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) sleep(10) diff --git a/code/datums/emergency_calls/custom.dm b/code/datums/emergency_calls/custom.dm index 0117c83fc1..b62d984f6f 100644 --- a/code/datums/emergency_calls/custom.dm +++ b/code/datums/emergency_calls/custom.dm @@ -19,7 +19,7 @@ if(!istype(spawn_loc)) return //Didn't find a useable spawn point. - if(!players_to_offer.len) + if(!length(players_to_offer)) return // No more players var/mob/living/carbon/human/H = pick(players_to_offer) diff --git a/code/datums/emergency_calls/deathsquad.dm b/code/datums/emergency_calls/deathsquad.dm index 1cd5bdef67..649f40c8cb 100644 --- a/code/datums/emergency_calls/deathsquad.dm +++ b/code/datums/emergency_calls/deathsquad.dm @@ -9,7 +9,8 @@ arrival_message = "'!`2*%slau#*jer t*h$em a!l%. le&*ve n(o^ w&*nes%6es.*v$e %#d ou^'" objectives = "Whiteout protocol is in effect for the target. Ensure there are no traces of the infestation or any witnesses." probability = 0 - shuttle_id = "Distress_PMC" + shuttle_id = MOBILE_SHUTTLE_ID_ERT2 + home_base = /datum/lazy_template/ert/weyland_station name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc item_spawn = /obj/effect/landmark/ert_spawns/distress_pmc/item max_medics = 1 @@ -87,82 +88,44 @@ //################################################################################################ // Marine commandos - USCM Deathsquad. Event only /datum/emergency_call/marsoc - name = "Marine Raider Strike Team (!DEATHSQUAD!)" + name = "Marine Raider Operatives (!DEATHSQUAD!)" mob_max = 8 mob_min = 5 probability = 0 - shuttle_id = "Distress_PMC" + shuttle_id = MOBILE_SHUTTLE_ID_ERT2 + home_base = /datum/lazy_template/ert/weyland_station name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc + var/leader_preset = /datum/equipment_preset/uscm/marsoc/sl + var/member_preset = /datum/equipment_preset/uscm/marsoc -/datum/emergency_call/marsoc/create_member(datum/mind/M, turf/override_spawn_loc) +/datum/emergency_call/marsoc/create_member(datum/mind/player, turf/override_spawn_loc) var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() if(!istype(spawn_loc)) return //Didn't find a useable spawn point. - var/mob/living/carbon/human/H = new(spawn_loc) - M.transfer_to(H, TRUE) + var/mob/living/carbon/human/member = new(spawn_loc) + player.transfer_to(member, TRUE) - if(!leader && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. - leader = H - to_chat(H, SPAN_WARNING(FONT_SIZE_BIG("You are a Marine Raider Team Leader, better than all the rest."))) - arm_equipment(H, /datum/equipment_preset/uscm/marsoc/sl, TRUE, TRUE) + if(!leader && HAS_FLAG(member.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(member.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. + leader = member + to_chat(member, SPAN_WARNING(FONT_SIZE_BIG("You are a Marine Raider Team Leader, better than all the rest."))) + arm_equipment(member, leader_preset, TRUE, TRUE) else - to_chat(H, SPAN_WARNING(FONT_SIZE_BIG("You are an elite Marine Raider Operative, the best of the best."))) - arm_equipment(H, /datum/equipment_preset/uscm/marsoc, TRUE, TRUE) - to_chat(H, SPAN_BOLDNOTICE("You are absolutely loyal to High Command and must follow their directives.")) - to_chat(H, SPAN_BOLDNOTICE("Execute the mission assigned to you with extreme prejudice!")) + to_chat(member, SPAN_WARNING(FONT_SIZE_BIG("You are an elite Marine Raider Operative, the best of the best."))) + arm_equipment(member, member_preset, TRUE, TRUE) + to_chat(member, SPAN_BOLDNOTICE("You are absolutely loyal to High Command and must follow their directives.")) + to_chat(member, SPAN_BOLDNOTICE("Execute the mission assigned to you with extreme prejudice!")) return -/datum/emergency_call/marsoc_covert +/datum/emergency_call/marsoc/covert name = "Marine Raider Operatives (!DEATHSQUAD! Covert)" - mob_max = 8 - mob_min = 5 - probability = 0 - shuttle_id = "Distress_PMC" - name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc - -/datum/emergency_call/marsoc_covert/create_member(datum/mind/M) - - var/turf/spawn_loc = get_spawn_point() - - if(!istype(spawn_loc)) - return //Didn't find a useable spawn point. - - var/mob/living/carbon/human/H = new(spawn_loc) - M.transfer_to(H, TRUE) - if(!leader && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. - leader = H - to_chat(H, SPAN_WARNING(FONT_SIZE_BIG("You are a Marine Raider Team Leader, better than all the rest."))) - arm_equipment(H, /datum/equipment_preset/uscm/marsoc/sl/covert, TRUE, TRUE) - else - to_chat(H, SPAN_WARNING(FONT_SIZE_BIG("You are an elite Marine Raider, the best of the best."))) - arm_equipment(H, /datum/equipment_preset/uscm/marsoc/covert, TRUE, TRUE) - to_chat(H, SPAN_BOLDNOTICE("You are absolutely loyal to High Command and must follow their directives.")) - to_chat(H, SPAN_BOLDNOTICE("Execute the mission assigned to you with extreme prejudice!")) - return + leader_preset = /datum/equipment_preset/uscm/marsoc/sl/covert + member_preset = /datum/equipment_preset/uscm/marsoc/covert /datum/emergency_call/marsoc/low_threat name = "Marine Raider Operatives" - -/datum/emergency_call/marsoc/low_threat/create_member(datum/mind/MIND) - - var/turf/spawn_loc = get_spawn_point() - - if(!istype(spawn_loc)) - return //Didn't find a useable spawn point. - - var/mob/living/carbon/human/player = new(spawn_loc) - MIND.transfer_to(player, TRUE) - if(!leader && HAS_FLAG(player.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(player.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. - leader = player - to_chat(player, SPAN_WARNING(FONT_SIZE_BIG("You are a Marine Raider Team Leader, better than all the rest."))) - arm_equipment(player, /datum/equipment_preset/uscm/marsoc/low_threat/sl, TRUE, TRUE) - else - to_chat(player, SPAN_WARNING(FONT_SIZE_BIG("You are an elite Marine Raider, the best of the best."))) - arm_equipment(player, /datum/equipment_preset/uscm/marsoc/low_threat, TRUE, TRUE) - to_chat(player, SPAN_BOLDNOTICE("You are absolutely loyal to High Command and must follow their directives.")) - to_chat(player, SPAN_BOLDNOTICE("Execute the mission assigned to you with extreme prejudice!")) - return + leader_preset = /datum/equipment_preset/uscm/marsoc/low_threat/sl + member_preset = /datum/equipment_preset/uscm/marsoc/low_threat diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 9db46955a5..885844b6ec 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -28,9 +28,13 @@ var/mob_min = 3 var/dispatch_message = "An encrypted signal has been received from a nearby vessel. Stand by." //Msg to display when starting var/arrival_message = "" //Msg to display about when the shuttle arrives + /// Probability that the message will be replaced with static. - prob(chance_hidden) + var/chance_hidden = 20 + /// Message to display when distress beacon is hidden + var/static_message = "**STATIC** %$#&!- *!%^#$$ ^%%$# +_!@* &*%$## **STATIC** &%$#^*! @!*%$# ^%&$#@ *%&$#^ **STATIC** --SIGNAL LOST" var/objectives //Txt of objectives to display to joined. Todo: make this into objective notes var/objective_info //For additional info in the objectives txt - var/probability = 0 //Chance of it occurring. Total must equal 100% + var/probability = 0 var/hostility //For ERTs who are either hostile or friendly by random chance. var/list/datum/mind/members = list() //Currently-joined members. var/list/datum/mind/candidates = list() //Potential candidates for enlisting. @@ -46,19 +50,25 @@ var/max_heavies = 1 var/max_smartgunners = 1 var/shuttle_id = MOBILE_SHUTTLE_ID_ERT1 //Empty shuttle ID means we're not using shuttles (aka spawn straight into cryo) - var/auto_shuttle_launch = FALSE + var/auto_shuttle_launch = TRUE var/spawn_max_amount = FALSE var/ert_message = "An emergency beacon has been activated" var/time_required_for_job = 5 HOURS + /// the shuttle being used by this distress call + var/obj/docking_port/mobile/emergency_response/shuttle + + /// the [/datum/lazy_template] we should attempt to spawn in for the return journey + var/home_base = /datum/lazy_template/ert/freelancer_station + /datum/game_mode/proc/initialize_emergency_calls() - if(all_calls.len) //It's already been set up. + if(length(all_calls)) //It's already been set up. return var/list/total_calls = typesof(/datum/emergency_call) - if(!total_calls.len) + if(!length(total_calls)) to_world(SPAN_DANGER("\b Error setting up emergency calls, no datums found.")) return FALSE for(var/S in total_calls) @@ -92,12 +102,19 @@ return chosen_call /datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce_incoming = TRUE, info = "") - for(var/datum/emergency_call/E in all_calls) //Loop through all potential candidates - if(E.name == call_name) - var/datum/emergency_call/em_call = new E.type() - em_call.objective_info = info - em_call.activate(quiet_launch, announce_incoming) - return + if(ispath(call_name, /datum/emergency_call)) + var/datum/emergency_call/em_call = new call_name + em_call.objective_info = info + em_call.activate(quiet_launch, announce_incoming) + return + + var/call_path = text2path(call_name) + if(ispath(call_path, /datum/emergency_call)) + var/datum/emergency_call/em_call = new call_path + em_call.objective_info = info + em_call.activate(quiet_launch, announce_incoming) + return + error("get_specific_call could not find emergency call '[call_name]'") return @@ -137,7 +154,7 @@ if(jobban_isbanned(src, "Syndicate") || jobban_isbanned(src, "Emergency Response Team")) to_chat(src, SPAN_DANGER("You are jobbanned from the emergency response team!")) return - if(!SSticker.mode || !SSticker.mode.picked_calls.len) + if(!SSticker.mode || !length(SSticker.mode.picked_calls)) to_chat(src, SPAN_WARNING("No distress beacons are active. You will be notified if this changes.")) return @@ -200,21 +217,25 @@ SSticker.mode.picked_calls += src show_join_message() //Show our potential candidates the message to let them join. - message_admins("Distress beacon: '[name]' activated [src.hostility? "[SPAN_WARNING("(THEY ARE HOSTILE)")]":"(they are friendly)"]. Looking for candidates.") + message_admins("Distress beacon: '[name]' activated [hostility? "[SPAN_WARNING("(THEY ARE HOSTILE)")]":"(they are friendly)"]. Looking for candidates.") if(!quiet_launch) marine_announcement("A distress beacon has been launched from the [MAIN_SHIP_NAME].", "Priority Alert", 'sound/AI/distressbeacon.ogg', logging = ARES_LOG_SECURITY) addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/emergency_call, spawn_candidates), quiet_launch, announce_incoming, override_spawn_loc), 30 SECONDS) +/datum/emergency_call/proc/remove_nonqualifiers(list/datum/mind/candidates_list) + return candidates_list //everyone gets selected on 99% of distress beacons. + /datum/emergency_call/proc/spawn_candidates(quiet_launch = FALSE, announce_incoming = TRUE, override_spawn_loc) if(SSticker.mode) SSticker.mode.picked_calls -= src SEND_SIGNAL(src, COMSIG_ERT_SETUP) + candidates = remove_nonqualifiers(candidates) - if(candidates.len < mob_min && !spawn_max_amount) - message_admins("Aborting distress beacon, not enough candidates: found [candidates.len].") + if(length(candidates) < mob_min && !spawn_max_amount) + message_admins("Aborting distress beacon, not enough candidates: found [length(candidates)].") members = list() //Empty the members list. candidates = list() @@ -227,7 +248,7 @@ var/list/datum/mind/picked_candidates = list() if(mob_max > 0) var/mob_count = 0 - while (mob_count < mob_max && candidates.len) + while (mob_count < mob_max && length(candidates)) var/datum/mind/M = pick(candidates) //Get a random candidate, then remove it from the candidates list. if(!istype(M))//Something went horrifically wrong candidates.Remove(M) @@ -237,13 +258,13 @@ continue if(M.current && M.current.stat != DEAD) candidates.Remove(M) //Strip them from the list, they aren't dead anymore. - if(!candidates.len) + if(!length(candidates)) break //NO picking from empty lists continue picked_candidates.Add(M) candidates.Remove(M) mob_count++ - if(candidates.len) + if(length(candidates)) for(var/datum/mind/I in candidates) if(I.current) to_chat(I.current, SPAN_WARNING("You didn't get selected to join the distress team. Better luck next time!")) @@ -258,12 +279,15 @@ if(M.client) to_chat(M, SPAN_NOTICE("Distress beacon: [src.name] finalized.")) - var/obj/docking_port/mobile/shuttle = SSshuttle.getShuttle(shuttle_id) + if(shuttle_id && !override_spawn_loc) + if(!SSmapping.shuttle_templates[shuttle_id]) + message_admins("Distress beacon: [name] does not have a valid shuttle_id: [shuttle_id]") + CRASH("ert called with invalid shuttle_id") - if(!istype(shuttle)) - if(shuttle_id) //Cryo distress doesn't have a shuttle - message_admins("Warning: Distress shuttle not found.") - spawn_items() + var/datum/map_template/shuttle/new_shuttle = SSmapping.shuttle_templates[shuttle_id] + shuttle = SSshuttle.load_template_to_transit(new_shuttle) + shuttle.control_doors("force-lock", force = TRUE, external_only = TRUE) + shuttle.distress_beacon = src if(shuttle && auto_shuttle_launch) var/obj/structure/machinery/computer/shuttle/ert/comp = shuttle.getControlConsole() @@ -290,7 +314,7 @@ SSshuttle.moveShuttleToDock(shuttle, pick(active_lzs), TRUE) var/i = 0 - if(picked_candidates.len) + if(length(picked_candidates)) for(var/datum/mind/M in picked_candidates) members += M i++ @@ -305,7 +329,17 @@ candidates = list() if(arrival_message && announce_incoming) - marine_announcement(arrival_message, "Intercepted Transmission:") + if(prob(chance_hidden)) + marine_announcement(static_message, "Intercepted Transmission:") + else + marine_announcement(arrival_message, "Intercepted Transmission:") + + for(var/datum/mind/spawned as anything in members) + if(ishuman(spawned.current)) + var/mob/living/carbon/human/spawned_human = spawned.current + var/obj/item/card/id/id = spawned_human.get_idcard() + if(id) + ADD_TRAIT(id, TRAIT_ERT_ID, src) /datum/emergency_call/proc/add_candidate(mob/M) if(!M.client || (M.mind && (M.mind in candidates)) || istype(M, /mob/living/carbon/xenomorph)) @@ -321,6 +355,23 @@ /datum/emergency_call/proc/get_spawn_point(is_for_items) var/landmark + + if(shuttle) + if(is_for_items) + landmark = SAFEPICK(shuttle.local_landmarks[item_spawn]) + else + landmark = SAFEPICK(shuttle.local_landmarks[name_of_spawn]) + + if(landmark) + return get_turf(landmark) + + var/list/valid_turfs = list() + for(var/turf/open/floor/valid_turf in shuttle.return_turfs()) + valid_turfs += valid_turf + + if(length(valid_turfs)) + return pick(valid_turfs) + if(is_for_items) landmark = SAFEPICK(GLOB.ert_spawns[item_spawn]) else diff --git a/code/datums/emergency_calls/ert_stations.dm b/code/datums/emergency_calls/ert_stations.dm new file mode 100644 index 0000000000..5a129723ba --- /dev/null +++ b/code/datums/emergency_calls/ert_stations.dm @@ -0,0 +1,20 @@ +/datum/lazy_template/ert/clf_station + map_name = "clf_ert_station" + +/datum/lazy_template/ert/freelancer_station + map_name = "freelancer_ert_station" + +/datum/lazy_template/ert/twe_station + map_name = "twe_ert_station" + +/datum/lazy_template/ert/upp_station + map_name = "upp_ert_station" + +/datum/lazy_template/ert/weyland_station + map_name = "weyland_ert_station" + +/datum/lazy_template/ert/pizza_station + map_name = "pizza_ert_station" + +/datum/lazy_template/ert/uscm_station + map_name = "uscm_ert_station" diff --git a/code/datums/emergency_calls/feral_xenos.dm b/code/datums/emergency_calls/feral_xenos.dm index 5d9f14a468..ad1935ccef 100644 --- a/code/datums/emergency_calls/feral_xenos.dm +++ b/code/datums/emergency_calls/feral_xenos.dm @@ -39,7 +39,7 @@ else if(medics < max_medics) medics++ - var/picked = pick(/mob/living/carbon/xenomorph/drone, /mob/living/carbon/xenomorph/hivelord, /mob/living/carbon/xenomorph/burrower) + var/picked = pick(/mob/living/carbon/xenomorph/drone, /mob/living/carbon/xenomorph/hivelord) new_xeno = new picked(spawn_loc) else if(engineers < max_engineers) diff --git a/code/datums/emergency_calls/forecon.dm b/code/datums/emergency_calls/forecon.dm new file mode 100644 index 0000000000..94336b9ffa --- /dev/null +++ b/code/datums/emergency_calls/forecon.dm @@ -0,0 +1,62 @@ +/datum/emergency_call/forecon + name = "FORECON (Squad)" + arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by." + objectives = "Handle whatever threat is present. Further orders may be provided." + home_base = /datum/lazy_template/ert/uscm_station + probability = 0 + mob_min = 3 + mob_max = 6 + + max_heavies = 1 + max_medics = 1 + max_smartgunners = 1 + +/datum/emergency_call/forecon/create_member(datum/mind/new_mind, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/mob = new(spawn_loc) + new_mind.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/squad_leader, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Squad Leader!")) + + else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) + medics++ + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/tech, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the FORECON Support Technician!")) + + else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN)) + smartgunners++ + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Smartgunner!")) + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/smartgunner, TRUE, TRUE) + + else if(heavies < max_heavies && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(mob.client, JOB_SQUAD_SPECIALIST)) + heavies++ + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Designated Marskman!")) + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/marksman, TRUE, TRUE) + + else + arm_equipment(mob, /datum/equipment_preset/uscm/forecon/standard, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a FORECON Rifleman!")) + + to_chat(mob, SPAN_ROLE_BODY("You are a member of the USCM's Force Reconnisance. FORECON is a force that specializes in special operations behind enemy lines, or conducting reconnisance in situations regular Marines are not expected to handle.")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + +/datum/emergency_call/forecon/platoon + name = "FORECON (Platoon)" + mob_min = 6 + mob_max = 30 + probability = 0 + max_medics = 6 + max_heavies = 1 + max_smartgunners = 2 + +/datum/emergency_call/forecon/platoon/New() + ..() + arrival_message = "A Force Reconnaissance squad has been dispatched to your ship. Stand by." + objectives = "Handle whatever threat is present. Further orders may be provided." diff --git a/code/datums/emergency_calls/forsaken_xenos.dm b/code/datums/emergency_calls/forsaken_xenos.dm index d089830658..1c876d4d4d 100644 --- a/code/datums/emergency_calls/forsaken_xenos.dm +++ b/code/datums/emergency_calls/forsaken_xenos.dm @@ -3,6 +3,7 @@ mob_min = 1 mob_max = 4 hostility = TRUE + shuttle_id = "" name_of_spawn = /obj/effect/landmark/ert_spawns/groundside_xeno objectives = "You have been left behind to safeguard the abandoned colony. Do not allow trespassers." diff --git a/code/datums/emergency_calls/goons.dm b/code/datums/emergency_calls/goons.dm index 8a0b009688..edd3d05d14 100644 --- a/code/datums/emergency_calls/goons.dm +++ b/code/datums/emergency_calls/goons.dm @@ -2,6 +2,7 @@ name = "Weyland-Yutani Corporate Security (Squad)" mob_max = 6 probability = 0 + home_base = /datum/lazy_template/ert/weyland_station /datum/emergency_call/goon/New() ..() @@ -96,6 +97,45 @@ to_chat(backstory_human, SPAN_BOLD("You heard about the original distress signal ages ago, but you have only just gotten permission from corporate to enter the area.")) to_chat(backstory_human, SPAN_BOLD("Ensure no damage is incurred against Weyland-Yutani. Make sure the researcher is kept safe and follow their instructions.")) +/datum/emergency_call/goon/bodyguard + name = "Weyland-Yutani Goon (Executive Bodyguard Detail)" + mob_max = 1 + mob_min = 1 + +/datum/emergency_call/goon/bodyguard/New() + ..() + dispatch_message = "[MAIN_SHIP_NAME], this is a Weyland-Yutani Corporate Security Protection Detail shuttle inbound to the Liaison's Beacon." + objectives = "Protect the Corporate Liaison and follow his commands, unless it goes against Company policy. Do not damage Wey-Yu property." + +/datum/emergency_call/goon/bodyguard/create_member(datum/mind/M, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/mob = new(spawn_loc) + M.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + to_chat(mob, SPAN_ROLE_HEADER("You are a Weyland-Yutani Corporate Security Lead!")) + arm_equipment(mob, /datum/equipment_preset/goon/lead, TRUE, TRUE) + else + to_chat(mob, SPAN_ROLE_HEADER("You are a Weyland-Yutani Corporate Security Officer!")) + arm_equipment(mob, /datum/equipment_preset/goon/standard, TRUE, TRUE) + + print_backstory(mob) + + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + +/datum/emergency_call/goon/bodyguard/print_backstory(mob/living/carbon/human/M) + to_chat(M, SPAN_BOLD("You were born [pick(75;"in Europe", 15;"in Asia", 10;"on Mars")] to a poor family.")) + to_chat(M, SPAN_BOLD("Joining the ranks of Weyland-Yutani was all you could do to keep yourself and your loved ones fed.")) + to_chat(M, SPAN_BOLD("You have no idea what a xenomorph is.")) + to_chat(M, SPAN_BOLD("You are a simple security officer employed by Weyland-Yutani to guard their Executives from all Divisions alike.")) + to_chat(M, SPAN_BOLD("You were sent to act as the Executives bodyguard on the [MAIN_SHIP_NAME], you have gotten permission from corporate to enter the area.")) + to_chat(M, SPAN_BOLD("Ensure no damage is incurred against Weyland-Yutani. Make sure the CL is safe.")) + /datum/emergency_call/goon/platoon name = "Weyland-Yutani Corporate Security (Platoon)" mob_min = 8 diff --git a/code/datums/emergency_calls/inspection.dm b/code/datums/emergency_calls/inspection.dm index ad02003399..4a1a8ecb62 100644 --- a/code/datums/emergency_calls/inspection.dm +++ b/code/datums/emergency_calls/inspection.dm @@ -1,6 +1,6 @@ //USCM Provost /datum/emergency_call/inspection_provost - name = "Inspection - USCM Provost - ML knowledge required." + name = "Inspection - USCM Provost - ML knowledge and MP playtime required." mob_max = 2 mob_min = 1 probability = 0 @@ -9,6 +9,15 @@ ..() objectives = "Investigate any issues with ML enforcement on the [MAIN_SHIP_NAME]." +/datum/emergency_call/inspection_provost/remove_nonqualifiers(list/datum/mind/candidates_list) + var/list/datum/mind/candidates_clean = list() + for(var/datum/mind/single_candidate in candidates_list) + if(check_timelock(single_candidate.current?.client, JOB_POLICE, time_required_for_job)) + candidates_clean.Add(single_candidate) + continue + if(single_candidate.current) + to_chat(single_candidate.current, SPAN_WARNING("You didn't qualify for the ERT beacon because you don't have enough playtime (5 Hours) as military police!")) + return candidates_clean /datum/emergency_call/inspection_provost/create_member(datum/mind/M, turf/override_spawn_loc) var/turf/T = override_spawn_loc ? override_spawn_loc : get_spawn_point() @@ -125,6 +134,7 @@ name = "Inspection - Corporate" mob_max = 2 mob_min = 1 + home_base = /datum/lazy_template/ert/weyland_station name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc item_spawn = /obj/effect/landmark/ert_spawns/distress_pmc/item probability = 0 @@ -164,6 +174,42 @@ new /obj/item/storage/box/handcuffs(drop_spawn) new /obj/item/storage/box/handcuffs(drop_spawn) +/datum/emergency_call/inspection_wy/lawyer + name = "Lawyers - Corporate" + mob_max = 2 + mob_min = 1 + name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc + item_spawn = /obj/effect/landmark/ert_spawns/distress_pmc/item + probability = 0 + +/datum/emergency_call/inspection_wy/lawyer/New() + ..() + objectives = "Make sure the crew of the [MAIN_SHIP_NAME] is aware of your presence. Investigate who the Corporate Liaison reported for breaking their contract and any review other Company assets and make sure they remain loyal to the Company. Make a detailed report back to Corporate." + +/datum/emergency_call/inspection_wy/lawyer/create_member(datum/mind/M, turf/override_spawn_loc) + var/turf/T = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(T)) + return FALSE + + var/mob/living/carbon/human/H = new(T) + M.transfer_to(H, TRUE) + + if(!leader && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, list(JOB_SQUAD_LEADER), time_required_for_job)) + leader = H + arm_equipment(H, /datum/equipment_preset/wy/exec_supervisor/lawyer, TRUE, TRUE) + to_chat(H, SPAN_ROLE_HEADER("You are a Weyland-Yutani Lead Corporate Attorney!")) + to_chat(H, SPAN_ROLE_BODY("While officially the Corporate Affairs Division does mundane paperwork for Weyland-Yutani, in practice you serve as both official and unofficial investigators into conduct of Company and non-Company personnel. You are being dispatched to the [MAIN_SHIP_NAME] to make sure that the USCM abides by it's signed contracts provided by the local Liaison and that they have not forgotten the real hand that feeds them.")) + to_chat(H, SPAN_ROLE_BODY("Remember the USCM personnel on the ship may not appreciate your presence there. Should the Liaison be in jail, you are to act as legal counsel in any way. Your basic duty is to make a detailed report of anything involving the Liaison, any other WY personnel and of course any contract violations on board the ship.")) + to_chat(H, SPAN_WARNING("You are to avoid open conflict with the Marines. Retreat and make a report if they are outright hostile. Ahelp if you have any more questions or wish to release this character for other players.")) + else + arm_equipment(H, /datum/equipment_preset/wy/exec_spec/lawyer, TRUE, TRUE) + to_chat(H, SPAN_ROLE_HEADER("You are a Weyland-Yutani Corporate Attorney!")) + to_chat(H, SPAN_ROLE_BODY("While officially the Corporate Affairs Division does mundane paperwork for Weyland-Yutani, in practice you serve as both official and unofficial investigators into conduct of Company and non-Company personnel. The Lead Attorney is in charge, your duty is to provide counsel and any other form of assistance you can render to make sure your mission is a success.")) + to_chat(H, SPAN_ROLE_BODY("Remember that the USCM, or at least some parts of it, may be hostile towards your presence on the ship. You and the Lead Attorney are to avoid open conflict with the Marines. Your main priority is making sure that you both survive to write the report the Company is due.")) + to_chat(H, SPAN_WARNING("You are to avoid open conflict with the Marines. Retreat and make a report if they are outright hostile. Ahelp if you have any more questions or wish to release this character for other players.")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + // Colonial Marshals - UA Law Enforcement / Investigative Federal Agents which usually watch over Colonies. Also a good option for prisoner transfers, investigating corporate corruption, survivor rescues, or illict trade practices(black market). /datum/emergency_call/inspection_cmb @@ -171,6 +217,7 @@ mob_max = 4 mob_min = 1 probability = 0 + home_base = /datum/lazy_template/ert/weyland_station var/max_synths = 1 var/synths = 0 @@ -202,7 +249,7 @@ leader = mob to_chat(mob, SPAN_ROLE_HEADER("You are the Colonial Marshal!")) arm_equipment(mob, /datum/equipment_preset/cmb/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(mob?.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[mob.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(mob?.client.prefs.toggles_ert, PLAY_SYNTH) && mob.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(mob, SPAN_ROLE_HEADER("You are a CMB Investigative Synthetic!")) arm_equipment(mob, /datum/equipment_preset/cmb/synth, TRUE, TRUE) @@ -220,7 +267,7 @@ print_backstory(mob) - addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) /datum/emergency_call/inspection_cmb/print_backstory(mob/living/carbon/human/M) @@ -268,7 +315,7 @@ name = "Inspection - Colonial Marshals Ledger Investigation Team" mob_max = 3 //Marshal, Deputy, ICC CL mob_min = 2 - shuttle_id = "Distress_PMC" + shuttle_id = MOBILE_SHUTTLE_ID_ERT2 max_synths = 0 will_spawn_icc_liaison = TRUE @@ -303,4 +350,4 @@ print_backstory(mob) - addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) diff --git a/code/datums/emergency_calls/mercs.dm b/code/datums/emergency_calls/mercs.dm index 40210c845c..33a261a1da 100644 --- a/code/datums/emergency_calls/mercs.dm +++ b/code/datums/emergency_calls/mercs.dm @@ -11,11 +11,11 @@ /datum/emergency_call/mercs/New() . = ..() hostility = pick(75;FALSE,25;TRUE) - arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." if(hostility) - objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Captain says. Ensure your survival at all costs." + objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Warlord says. Ensure your survival at all costs." else - objectives = "Help the crew of the [MAIN_SHIP_NAME] in exchange for payment, and choose your payment well. Do what your Captain says. Ensure your survival at all costs." + objectives = "Help the crew of the [MAIN_SHIP_NAME] in exchange for payment, and choose your payment well. Do what your Warlord says. Ensure your survival at all costs." /datum/emergency_call/mercs/friendly //if admins want to specifically call in friendly ones name = "Friendly Freelancers (Squad)" @@ -25,8 +25,8 @@ /datum/emergency_call/mercs/friendly/New() . = ..() hostility = FALSE - arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." - objectives = "Help the crew of the [MAIN_SHIP_NAME] in exchange for payment, and choose your payment well. Do what your Captain says. Ensure your survival at all costs." + arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + objectives = "Help the crew of the [MAIN_SHIP_NAME] in exchange for payment, and choose your payment well. Do what your Warlord says. Ensure your survival at all costs." /datum/emergency_call/mercs/hostile //ditto name = "Hostile Freelancers (Squad)" @@ -36,8 +36,8 @@ /datum/emergency_call/mercs/hostile/New() . = ..() hostility = TRUE - arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." - objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Captain says. Ensure your survival at all costs." + arrival_message = "[MAIN_SHIP_NAME], this is Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Warlord says. Ensure your survival at all costs." /datum/emergency_call/mercs/print_backstory(mob/living/carbon/human/H) to_chat(H, SPAN_BOLD("You started off in the Neroid Sector as a colonist seeking work at one of the established colonies.")) @@ -96,7 +96,7 @@ /datum/emergency_call/heavy_mercs/New() . = ..() hostility = pick(75;FALSE,25;TRUE) - arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." if(hostility) objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Captain says. Ensure your survival at all costs." else @@ -108,7 +108,7 @@ /datum/emergency_call/heavy_mercs/hostile/New() . = ..() hostility = TRUE - arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." objectives = "Ransack the [MAIN_SHIP_NAME] and kill anyone who gets in your way. Do what your Captain says. Ensure your survival at all costs." /datum/emergency_call/heavy_mercs/friendly @@ -117,7 +117,7 @@ /datum/emergency_call/heavy_mercs/friendly/New() . = ..() hostility = FALSE - arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(alphabet_lowercase)][pick(alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." + arrival_message = "[MAIN_SHIP_NAME], this is Elite Freelancer shuttle [pick(GLOB.alphabet_lowercase)][pick(GLOB.alphabet_lowercase)]-[rand(1, 99)] responding to your distress call. Prepare for boarding." objectives = "Help the crew of the [MAIN_SHIP_NAME] in exchange for payment, and choose your payment well. Do what your Captain says. Ensure your survival at all costs." /datum/emergency_call/heavy_mercs/print_backstory(mob/living/carbon/human/H) diff --git a/code/datums/emergency_calls/pizza.dm b/code/datums/emergency_calls/pizza.dm index a35ce584c6..a0d710f455 100644 --- a/code/datums/emergency_calls/pizza.dm +++ b/code/datums/emergency_calls/pizza.dm @@ -6,9 +6,10 @@ mob_min = 1 arrival_message = "'That'll be... sixteen orders of cheesy fries, eight large double topping pizzas, nine bottles of Four Loko... hello? Is anyone on this ship? Your pizzas are getting cold.'" objectives = "Make sure you get a tip!" - shuttle_id = "Distress_Small" + shuttle_id = MOBILE_SHUTTLE_ID_ERT_SMALL name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pizza - probability = 0 + home_base = /datum/lazy_template/ert/pizza_station + probability = 1 /datum/emergency_call/pizza/create_member(datum/mind/M, turf/override_spawn_loc) var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() @@ -32,7 +33,7 @@ name = "Pizza Delivery (Cryo)" probability = 0 name_of_spawn = /obj/effect/landmark/ert_spawns/distress_cryo - shuttle_id = "" + shuttle_id = MOBILE_SHUTTLE_ID_ERT_SMALL /obj/effect/landmark/ert_spawns/distress_pizza name = "Distress_Pizza" diff --git a/code/datums/emergency_calls/pmc.dm b/code/datums/emergency_calls/pmc.dm index a06b0cc0c0..06a51c9869 100644 --- a/code/datums/emergency_calls/pmc.dm +++ b/code/datums/emergency_calls/pmc.dm @@ -4,7 +4,8 @@ name = "Weyland-Yutani PMC (Squad)" mob_max = 6 probability = 20 - shuttle_id = "Distress_PMC" + shuttle_id = MOBILE_SHUTTLE_ID_ERT2 + home_base = /datum/lazy_template/ert/weyland_station name_of_spawn = /obj/effect/landmark/ert_spawns/distress_pmc item_spawn = /obj/effect/landmark/ert_spawns/distress_pmc/item @@ -34,7 +35,7 @@ leader = mob to_chat(mob, SPAN_ROLE_HEADER("You are a Weyland-Yutani PMC Squad Leader!")) arm_equipment(mob, /datum/equipment_preset/pmc/pmc_leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[mob.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SYNTH) && mob.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(mob, SPAN_ROLE_HEADER("You are a Weyland-Yutani PMC Support Synthetic!")) arm_equipment(mob, /datum/equipment_preset/pmc/synth, TRUE, TRUE) @@ -120,7 +121,7 @@ var/mob/living/carbon/human/H = new(spawn_loc) H.key = M.key if(H.client) - H.client.change_view(world_view_size) + H.client.change_view(GLOB.world_view_size) if(!leader && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(H.client, JOB_SQUAD_LEADER, time_required_for_job)) //First one spawned is always the leader. leader = H diff --git a/code/datums/emergency_calls/royal_marines.dm b/code/datums/emergency_calls/royal_marines.dm index b3feaccf87..a614d5a0c1 100644 --- a/code/datums/emergency_calls/royal_marines.dm +++ b/code/datums/emergency_calls/royal_marines.dm @@ -1,7 +1,9 @@ /datum/emergency_call/royal_marines name = "Royal Marines Commando (Squad) (Friendly)" mob_max = 7 - probability = 0 + probability = 15 + home_base = /datum/lazy_template/ert/twe_station + shuttle_id = MOBILE_SHUTTLE_ID_ERT4 name_of_spawn = /obj/effect/landmark/ert_spawns/distress_twe item_spawn = /obj/effect/landmark/ert_spawns/distress_twe/item max_engineers = 0 diff --git a/code/datums/emergency_calls/solar_devils.dm b/code/datums/emergency_calls/solar_devils.dm new file mode 100644 index 0000000000..6f3323f3cd --- /dev/null +++ b/code/datums/emergency_calls/solar_devils.dm @@ -0,0 +1,91 @@ +/datum/emergency_call/solar_devils + name = "USCM Solar Devils (Half Squad)" + arrival_message = "This is the Solar Devils of the USCM 2nd Division, responding to your distress beacon. Don't worry, the grown-ups are here to clean up your mess." + objectives = "Assist local Marine forces in dealing with whatever issue they can't handle. Further orders may be forthcoming." + home_base = /datum/lazy_template/ert/uscm_station + probability = 0 + mob_min = 3 + mob_max = 5 + + max_medics = 1 + max_smartgunners = 1 + +/datum/emergency_call/solar_devils/create_member(datum/mind/new_mind, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/mob = new(spawn_loc) + new_mind.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + arm_equipment(mob, /datum/equipment_preset/uscm/tl_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the Solar Devils Team Leader!")) + + else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) + medics++ + arm_equipment(mob, /datum/equipment_preset/uscm/medic_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the Solar Devils Platoon Corpsman!")) + + else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN)) + smartgunners++ + to_chat(mob, SPAN_ROLE_HEADER("You are the Solar Devils Smartgunner!")) + arm_equipment(mob, /datum/equipment_preset/uscm/sg_pve, TRUE, TRUE) + + else + arm_equipment(mob, /datum/equipment_preset/uscm/rifleman_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a Solar Devils Rifleman!")) + + to_chat(mob, SPAN_ROLE_BODY("You are a member of the 3rd Battalion 'Solar Devils', part of the USCM's 2nd Division, 1st Regiment. Unlike most of the USS Almayer's troops, you are well-trained and properly-equipped career marines. Semper Fidelis.")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + +/datum/emergency_call/solar_devils_full + name = "USCM Solar Devils (Full Squad)" + arrival_message = "This is the Solar Devils of the USCM 2nd Division, responding to your distress beacon. Don't worry, the grown-ups are here to clean up your mess." + objectives = "Assist local Marine forces in dealing with whatever issue they can't handle. Further orders may be forthcoming." + home_base = /datum/lazy_template/ert/uscm_station + probability = 0 + mob_min = 3 + mob_max = 10 + + max_engineers = 2 + max_medics = 1 + max_smartgunners = 2 + +/datum/emergency_call/solar_devils_full/create_member(datum/mind/new_mind, turf/override_spawn_loc) + var/turf/spawn_loc = override_spawn_loc ? override_spawn_loc : get_spawn_point() + + if(!istype(spawn_loc)) + return //Didn't find a useable spawn point. + + var/mob/living/carbon/human/mob = new(spawn_loc) + new_mind.transfer_to(mob, TRUE) + + if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + leader = mob + arm_equipment(mob, /datum/equipment_preset/uscm/sl_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the Solar Devils Platoon Leader!")) + + else if(engineers < max_engineers && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_ENGINEER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) + engineers++ + arm_equipment(mob, /datum/equipment_preset/uscm/tl_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a Solar Devils Team Leader!")) + + else if(medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) + medics++ + arm_equipment(mob, /datum/equipment_preset/uscm/medic_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are the Solar Devils Platoon Corpsman!")) + + else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN)) + smartgunners++ + to_chat(mob, SPAN_ROLE_HEADER("You are a Solar Devils Smartgunner!")) + arm_equipment(mob, /datum/equipment_preset/uscm/sg_pve, TRUE, TRUE) + + else + arm_equipment(mob, /datum/equipment_preset/uscm/rifleman_pve, TRUE, TRUE) + to_chat(mob, SPAN_ROLE_HEADER("You are a Solar Devils Rifleman!")) + + to_chat(mob, SPAN_ROLE_BODY("You are a member of the 3rd Battalion 'Solar Devils', part of the USCM's 2nd Division, 1st Regiment. Unlike most of the USS Almayer's troops, you are well-trained and properly-equipped career marines. Semper Fidelis.")) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), mob, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) diff --git a/code/datums/emergency_calls/tank_crew.dm b/code/datums/emergency_calls/tank_crew.dm index fb437c179e..f8d20051c2 100644 --- a/code/datums/emergency_calls/tank_crew.dm +++ b/code/datums/emergency_calls/tank_crew.dm @@ -24,11 +24,10 @@ sleep(5) arm_equipment(H, /datum/equipment_preset/uscm/tank/full, TRUE, TRUE) to_chat(H, SPAN_ROLE_HEADER("You are a Vehicle Crewman in the USCM")) - to_chat(H, SPAN_ROLE_BODY("You are here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) + to_chat(H, SPAN_ROLE_BODY("You are here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name]. Listen to the chain of command.")) to_chat(H, SPAN_BOLDWARNING("If you wish to cryo or ghost upon spawning in, you must ahelp and inform staff so you can be replaced.")) sleep(10) to_chat(H, SPAN_BOLD("Objectives: [objectives]")) GLOB.data_core.manifest_inject(H) //Put people in crew manifest - diff --git a/code/datums/emergency_calls/upp.dm b/code/datums/emergency_calls/upp.dm index 562dac3fe1..cb5db1f0e3 100644 --- a/code/datums/emergency_calls/upp.dm +++ b/code/datums/emergency_calls/upp.dm @@ -5,7 +5,8 @@ name = "UPP Naval Infantry (Squad)" mob_max = 9 probability = 20 - shuttle_id = "Distress_UPP" + shuttle_id = MOBILE_SHUTTLE_ID_ERT3 + home_base = /datum/lazy_template/ert/upp_station name_of_spawn = /obj/effect/landmark/ert_spawns/distress_upp item_spawn = /obj/effect/landmark/ert_spawns/distress_upp/item //1 leader, 1 engineer, 2 medics, 1 specialist, 5 soldiers @@ -35,13 +36,16 @@ else to_chat(M, SPAN_BOLD("You were brought online in a UPP engineering facility, knowing only your engineers for the first few weeks for your pseudo-life.")) to_chat(M, SPAN_BOLD("You were programmed with all of the medical and combat experience a military fighting force support asset required.")) - to_chat(M, SPAN_BOLD("Throughout your career, your engineers, and later, your UPP compatriots, treated you like a tool, and only that.")) + to_chat(M, SPAN_BOLD("Throughout your career, your engineers, and later, your UPP compatriots, treated you like [pick(75;"a tool, and only that.", 25;"a person, despite your purpose.")]")) to_chat(M, SPAN_BOLD("Some weeks after your unit integration, you were assigned to the 17th 'Smoldering Sons' battalion (six hundred strong) under the command of Colonel Ganbaatar.")) to_chat(M, SPAN_BOLD("You were shipped off with the battalion to one of the UPP's most remote territories, a gas giant designated MV-35 in the Anglo-Japanese Arm, in the Neroid Sector.")) to_chat(M, SPAN_BOLD("For the past 14 months, you and the rest of the Smoldering Sons have been stationed at MV-35's only facility, the helium refinery, Altai Station.")) to_chat(M, SPAN_BOLD("As MV-35 and Altai Station are the only UPP-held zones in the Neroid Sector for many lightyears, you have spent most of your military career holed up in crammed quarters in near darkness, waiting for supply shipments and transport escort deployments.")) - to_chat(M, SPAN_BOLD("With the recent arrival of the enemy USCM battalion the 'Falling Falcons' and their flagship, the [MAIN_SHIP_NAME], the UPP has felt threatened in the sector.")) - to_chat(M, SPAN_BOLD("In an effort to protect the vulnerable MV-35 from the encroaching UA/USCM imperialists, the leadership of your battalion has opted this to be the best opportunity to strike at the Falling Falcons to catch them off guard.")) + to_chat(M, SPAN_BOLD("With the recent arrival of the USCM battalion the 'Falling Falcons' and their flagship, the [MAIN_SHIP_NAME], the UPP has felt threatened in the sector.")) + if(hostility) + to_chat(M, SPAN_BOLD("In an effort to protect the vulnerable MV-35 from the encroaching UA/USCM imperialists, the leadership of your battalion has opted this to be the best opportunity to strike at the Falling Falcons to catch them off guard.")) + else + to_chat(M, SPAN_BOLD("Despite this, the leadership of your battalion questions what may have prompted the distress signal from their rivals. Your squad is to find out why and to render aid to the beleaguered UA forces.")) to_chat(M, SPAN_WARNING(FONT_SIZE_BIG("Glory to Colonel Ganbaatar."))) to_chat(M, SPAN_WARNING(FONT_SIZE_BIG("Glory to the Smoldering Sons."))) to_chat(M, SPAN_WARNING(FONT_SIZE_BIG("Glory to the UPP."))) @@ -61,7 +65,7 @@ leader = H arm_equipment(H, /datum/equipment_preset/upp/leader, TRUE, TRUE) to_chat(H, SPAN_ROLE_HEADER("You are an Officer of the Union of Progressive People, a powerful socialist state that rivals the United Americas!")) - else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[H.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && H.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(H, SPAN_ROLE_HEADER("You are a Combat Synthetic of the Union of Progressive People, a powerful socialist state that rivals the United Americas!")) arm_equipment(H, /datum/equipment_preset/upp/synth, TRUE, TRUE) @@ -96,18 +100,20 @@ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) -/datum/emergency_call/upp/hostile +/datum/emergency_call/upp/hostile //if admins want to specifically call in friendly ones name = "UPP Naval Infantry (Squad) (Hostile)" hostility = TRUE + probability = 0 /datum/emergency_call/upp/hostile/New() ..() arrival_message = "[MAIN_SHIP_NAME] t*is i* UP* d^sp^*ch`. STr*&e teaM, #*u are cLe*% for a*pr*%^h. Pr*mE a*l wE*p^ns and pR*epr# t% r@nd$r a(tD." objectives = "Eliminate the UA Forces to ensure the UPP presence in this sector is continued. Listen to your superior officers and take over the [MAIN_SHIP_NAME] at all costs." -/datum/emergency_call/upp/friendly +/datum/emergency_call/upp/friendly //ditto name = "UPP Naval Infantry (Squad) (Friendly)" hostility = FALSE + probability = 0 /datum/emergency_call/upp/friendly/New() ..() diff --git a/code/datums/emergency_calls/upp_commando.dm b/code/datums/emergency_calls/upp_commando.dm index 1bc2b59ba0..53f117c261 100644 --- a/code/datums/emergency_calls/upp_commando.dm +++ b/code/datums/emergency_calls/upp_commando.dm @@ -5,7 +5,7 @@ mob_max = 6 probability = 0 objectives = "Stealthily assault the ship. Use your silenced weapons, tranquilizers, and night vision to get the advantage on the enemy. Take out the power systems, comms and engine. Stick together and keep a low profile." - shuttle_id = "Distress_UPP" + shuttle_id = MOBILE_SHUTTLE_ID_ERT3 name_of_spawn = /obj/effect/landmark/ert_spawns/distress_upp item_spawn = /obj/effect/landmark/ert_spawns/distress_upp/item hostility = TRUE diff --git a/code/datums/emergency_calls/whiskey_outpost.dm b/code/datums/emergency_calls/whiskey_outpost.dm index 436e02007c..c6a7e49477 100644 --- a/code/datums/emergency_calls/whiskey_outpost.dm +++ b/code/datums/emergency_calls/whiskey_outpost.dm @@ -28,30 +28,30 @@ if(!leader && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_LEADER) && check_timelock(mob.client, JOB_SQUAD_LEADER, time_required_for_job)) leader = mob arm_equipment(mob, /datum/equipment_preset/dust_raider/leader, TRUE, TRUE) - to_chat(mob, SPAN_BOLDNOTICE("You are a Squad Leader in the USCM, your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(mob, SPAN_BOLDNOTICE("You are a Squad Leader in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if (heavies < max_heavies && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_HEAVY) && check_timelock(mob.client, JOB_SQUAD_SPECIALIST, time_required_for_job)) heavies++ arm_equipment(mob, /datum/equipment_preset/dust_raider/specialist, TRUE, TRUE) - to_chat(mob, SPAN_BOLDNOTICE("You are a Specialist in the USCM, your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(mob, SPAN_BOLDNOTICE("You are a Specialist in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if(smartgunners < max_smartgunners && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_SMARTGUNNER) && check_timelock(mob.client, JOB_SQUAD_SMARTGUN, time_required_for_job)) smartgunners++ arm_equipment(mob, /datum/equipment_preset/dust_raider/smartgunner, TRUE, TRUE) - to_chat(mob, SPAN_BOLDNOTICE("You are a Smartgunner in the USCM, your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(mob, SPAN_BOLDNOTICE("You are a Smartgunner in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if(engineers < max_engineers && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_ENGINEER) && check_timelock(mob.client, JOB_SQUAD_ENGI, time_required_for_job)) engineers++ arm_equipment(mob, /datum/equipment_preset/dust_raider/engineer, TRUE, TRUE) - to_chat(mob, SPAN_BOLDNOTICE("You are an Engineer in the USCM, your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(mob, SPAN_BOLDNOTICE("You are an Engineer in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else if (medics < max_medics && HAS_FLAG(mob.client.prefs.toggles_ert, PLAY_MEDIC) && check_timelock(mob.client, JOB_SQUAD_MEDIC, time_required_for_job)) medics++ arm_equipment(mob, /datum/equipment_preset/dust_raider/medic, TRUE, TRUE) - to_chat(mob, SPAN_BOLDNOTICE("You are a Hospital Corpsman in the USCM, your squad is here to assist in the defence of the [SSmapping.configs[GROUND_MAP].map_name].")) + to_chat(mob, SPAN_BOLDNOTICE("You are a Hospital Corpsman in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) else arm_equipment(mob, /datum/equipment_preset/dust_raider/private, TRUE, TRUE) to_chat(mob, SPAN_BOLDNOTICE("You are a Rifleman in the USCM, your squad is here to assist in the defence of [SSmapping.configs[GROUND_MAP].map_name].")) sleep(10) to_chat(mob, "Objectives: [objectives]") - RoleAuthority.randomize_squad(mob) + GLOB.RoleAuthority.randomize_squad(mob) mob.sec_hud_set_ID() mob.hud_set_squad() diff --git a/code/datums/emergency_calls/xeno_cultists.dm b/code/datums/emergency_calls/xeno_cultists.dm index e5ebf089a9..5a69c40021 100644 --- a/code/datums/emergency_calls/xeno_cultists.dm +++ b/code/datums/emergency_calls/xeno_cultists.dm @@ -25,7 +25,7 @@ leader = H to_chat(H, SPAN_ROLE_HEADER("You are the leader of this xeno cult! Bring glory to Queen Mother!")) arm_equipment(H, /datum/equipment_preset/other/xeno_cultist/leader, TRUE, TRUE) - else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && RoleAuthority.roles_whitelist[H.ckey] & WHITELIST_SYNTHETIC) + else if(synths < max_synths && HAS_FLAG(H.client.prefs.toggles_ert, PLAY_SYNTH) && H.client.check_whitelist_status(WHITELIST_SYNTHETIC)) synths++ to_chat(H, SPAN_ROLE_HEADER("You are the xeno cult's synthetic! Tend to the Hive and the captured hosts, make sure the Hive grows!")) arm_equipment(H, /datum/equipment_preset/synth/survivor/cultist_synth, TRUE, TRUE) @@ -34,4 +34,4 @@ arm_equipment(H, /datum/equipment_preset/other/xeno_cultist, TRUE, TRUE) print_backstory(H) - addtimer(CALLBACK(GLOBAL_PROC, PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), H, SPAN_BOLD("Objectives: [objectives]")), 1 SECONDS) diff --git a/code/datums/emotes.dm b/code/datums/emotes.dm index b691d87a21..6e84052720 100644 --- a/code/datums/emotes.dm +++ b/code/datums/emotes.dm @@ -112,6 +112,7 @@ var/paygrade = user.get_paygrade() var/formatted_message = "[paygrade][user] [msg]" var/user_turf = get_turf(user) + var/list/seeing_obj = list() if (user.client) for(var/mob/ghost as anything in GLOB.dead_mob_list) if(!ghost.client || isnewplayer(ghost)) @@ -132,12 +133,18 @@ if(emote_type & EMOTE_VISIBLE) var/list/viewers = get_mobs_in_view(7, user) for(var/mob/current_mob in viewers) + for(var/obj/object in current_mob.contents) + if((object.flags_atom & USES_SEEING)) + seeing_obj |= object if(!(current_mob.client?.prefs.toggles_langchat & LANGCHAT_SEE_EMOTES)) viewers -= current_mob run_langchat(user, viewers) else if(emote_type & EMOTE_AUDIBLE) var/list/heard = get_mobs_in_view(7, user) for(var/mob/current_mob in heard) + for(var/obj/object in current_mob.contents) + if((object.flags_atom & USES_HEARING)) + seeing_obj |= object if(current_mob.ear_deaf) heard -= current_mob continue @@ -145,6 +152,9 @@ heard -= current_mob run_langchat(user, heard) + for(var/obj/object as anything in seeing_obj) + object.see_emote(user, msg, (emote_type & EMOTE_AUDIBLE)) + SEND_SIGNAL(user, COMSIG_MOB_EMOTED(key)) diff --git a/code/datums/entities/clans.dm b/code/datums/entities/clans.dm index 8caa538e0e..916afd18c1 100644 --- a/code/datums/entities/clans.dm +++ b/code/datums/entities/clans.dm @@ -45,8 +45,8 @@ BSQL_PROTECT_DATUM(/datum/entity/clan) /datum/entity_meta/clan_player/on_insert(datum/entity/clan_player/player) player.honor = 0 - player.clan_rank = clan_ranks_ordered[CLAN_RANK_UNBLOODED] - player.permissions = clan_ranks[CLAN_RANK_UNBLOODED].permissions + player.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_UNBLOODED] + player.permissions = GLOB.clan_ranks[CLAN_RANK_UNBLOODED].permissions player.save() diff --git a/code/datums/entities/player.dm b/code/datums/entities/player.dm index 4475fbf1ff..62b9e6f0db 100644 --- a/code/datums/entities/player.dm +++ b/code/datums/entities/player.dm @@ -5,6 +5,9 @@ var/last_known_ip var/last_known_cid + var/whitelist_status + var/whitelist_flags + var/discord_link_id var/last_login @@ -66,6 +69,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player) "is_permabanned" = DB_FIELDTYPE_INT, "permaban_reason" = DB_FIELDTYPE_STRING_MAX, "permaban_date" = DB_FIELDTYPE_STRING_LARGE, + "whitelist_status" = DB_FIELDTYPE_STRING_MAX, "discord_link_id" = DB_FIELDTYPE_BIGINT, "permaban_admin_id" = DB_FIELDTYPE_BIGINT, "is_time_banned" = DB_FIELDTYPE_INT, @@ -86,11 +90,12 @@ BSQL_PROTECT_DATUM(/datum/entity/player) /datum/entity/player/proc/add_note(note_text, is_confidential, note_category = NOTE_ADMIN, is_ban = FALSE, duration = null) var/client/admin = usr.client // do all checks here, especially for sensitive stuff like this - if(!admin || !admin.player_data) - return FALSE - if(note_category == NOTE_ADMIN || is_confidential) - if (!AHOLD_IS_MOD(admin.admin_holder)) + if(!(note_category == NOTE_WHITELIST)) + if(!admin || !admin.player_data) return FALSE + if(note_category == NOTE_ADMIN || is_confidential) + if (!AHOLD_IS_MOD(admin.admin_holder)) + return FALSE // this is here for a short transition period when we still are testing DB notes and constantly deleting the file if(CONFIG_GET(flag/duplicate_notes_to_file)) @@ -98,7 +103,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player) notes_add(ckey, note_text, admin.mob) else // notes_add already sends a message - message_admins("[key_name_admin(admin.mob)] has edited [ckey]'s [note_categories[note_category]] notes: [sanitize(note_text)]") + message_admins("[key_name_admin(admin.mob)] has edited [ckey]'s [GLOB.note_categories[note_category]] notes: [sanitize(note_text)]") if(!is_confidential && note_category == NOTE_ADMIN && owning_client) to_chat_immediate(owning_client, SPAN_WARNING(FONT_SIZE_LARGE("You have been noted by [key_name_admin(admin.mob, FALSE)]."))) to_chat_immediate(owning_client, SPAN_WARNING(FONT_SIZE_BIG("The note is : [sanitize(note_text)]"))) @@ -115,7 +120,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player) note.note_category = note_category note.is_ban = is_ban note.ban_time = duration - note.admin_rank = admin.admin_holder.rank + note.admin_rank = admin.admin_holder ? admin.admin_holder.rank : "Non-Staff" // since admin is in game, their player_data has to be populated. This is also checked above note.admin_id = admin.player_data.id note.admin = admin.player_data @@ -130,13 +135,17 @@ BSQL_PROTECT_DATUM(/datum/entity/player) notes.Add(note) return TRUE -/datum/entity/player/proc/remove_note(note_id) +/datum/entity/player/proc/remove_note(note_id, whitelist = FALSE) + if(IsAdminAdvancedProcCall()) + return PROC_BLOCKED var/client/admin = usr.client // do all checks here, especially for sensitive stuff like this if(!admin || !admin.player_data) return FALSE - if (!AHOLD_IS_MOD(admin.admin_holder)) + if((!AHOLD_IS_MOD(admin.admin_holder)) && !whitelist) + return FALSE + if(whitelist && !(isSenator(admin) || CLIENT_HAS_RIGHTS(admin, R_PERMISSIONS))) return FALSE // this is here for a short transition period when we still are testing DB notes and constantly deleting the file @@ -240,7 +249,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player) if(job_bans[safe_rank]) continue var/old_rank = check_jobban_path(safe_rank) - jobban_keylist[old_rank][ckey] = ban_text + GLOB.jobban_keylist[old_rank][ckey] = ban_text jobban_savebanfile() add_note("Banned from [total_rank] - [ban_text]", FALSE, NOTE_ADMIN, TRUE, duration) // it is ban related note @@ -356,20 +365,6 @@ BSQL_PROTECT_DATUM(/datum/entity/player) value.delete() job_bans -= value -/datum/entity/player/proc/load_refs() - if(refs_loaded) - return - while(!notes_loaded || !jobbans_loaded) - stoplag() - for(var/key in job_bans) - var/datum/entity/player_job_ban/value = job_bans[key] - if(istype(value)) - value.load_refs() - for(var/datum/entity/player_note/note in notes) - if(istype(note)) - note.load_refs() - refs_loaded = TRUE - /datum/entity_meta/player/on_read(datum/entity/player/player) player.job_bans = list() player.notes = list() @@ -426,7 +421,12 @@ BSQL_PROTECT_DATUM(/datum/entity/player) if(discord_link_id) discord_link = DB_ENTITY(/datum/entity/discord_link, discord_link_id) + if(whitelist_status) + var/list/whitelists = splittext(whitelist_status, "|") + for(var/whitelist in whitelists) + if(whitelist in GLOB.bitfields["whitelist_status"]) + whitelist_flags |= GLOB.bitfields["whitelist_status"]["[whitelist]"] /datum/entity/player/proc/on_read_notes(list/datum/entity/player_note/_notes) notes_loaded = TRUE @@ -460,15 +460,19 @@ BSQL_PROTECT_DATUM(/datum/entity/player) LAZYSET(stats, S.stat_id, S) /datum/entity/player/proc/load_byond_account_age() - var/datum/http_request/request = new() - request.prepare(RUSTG_HTTP_METHOD_GET, "https://www.byond.com/members/[ckey]?format=text") - request.execute_blocking() - var/datum/http_response/response = request.into_response() - if(response.errored) + var/list/http_request = world.Export("http://byond.com/members/[ckey]?format=text") + if(!http_request) + log_admin("Could not check BYOND account age for [ckey] - no response from server.") + return + + var/body = file2text(http_request["CONTENT"]) + if(!body) + log_admin("Could not check BYOND account age for [ckey] - invalid response.") return var/static/regex/regex = regex("joined = \"(\\d{4}-\\d{2}-\\d{2})\"") - if(!regex.Find(response.body)) + if(!regex.Find(body)) + log_admin("Could not check BYOND account age for [ckey] - no valid date in response.") return byond_account_age = regex.group[1] @@ -622,14 +626,14 @@ BSQL_PROTECT_DATUM(/datum/entity/player) note.admin_rank = "N/A" note.date = I.timestamp var/list/splitting = splittext(I.content, "|") - if(splitting.len == 1) + if(length(splitting) == 1) note.text = I.content note.is_ban = FALSE - if(splitting.len == 3) + if(length(splitting) == 3) note.text = splitting[3] note.ban_time = text2num(replacetext(replacetext(splitting[2],"Duration: ","")," minutes","")) note.is_ban = TRUE - if(splitting.len == 2) + if(length(splitting) == 2) note.text = I.content note.is_ban = TRUE @@ -648,33 +652,33 @@ BSQL_PROTECT_DATUM(/datum/entity/player) save() /datum/entity/player/proc/migrate_bans() - if(!Banlist) // if Banlist cannot be located for some reason + if(!GLOB.Banlist) // if GLOB.Banlist cannot be located for some reason LoadBans() // try to load the bans - if(!Banlist) // uh oh, can't find bans! + if(!GLOB.Banlist) // uh oh, can't find bans! return var/reason var/expiration var/banned_by - Banlist.cd = "/base" + GLOB.Banlist.cd = "/base" - for (var/A in Banlist.dir) - Banlist.cd = "/base/[A]" + for (var/A in GLOB.Banlist.dir) + GLOB.Banlist.cd = "/base/[A]" - if(ckey != Banlist["key"]) + if(ckey != GLOB.Banlist["key"]) continue - if(Banlist["temp"]) - if (!GetExp(Banlist["minutes"])) + if(GLOB.Banlist["temp"]) + if (!GetExp(GLOB.Banlist["minutes"])) return - if(expiration > Banlist["minutes"]) + if(expiration > GLOB.Banlist["minutes"]) return // found longer ban - reason = Banlist["reason"] - banned_by = Banlist["bannedby"] - expiration = Banlist["minutes"] + reason = GLOB.Banlist["reason"] + banned_by = GLOB.Banlist["bannedby"] + expiration = GLOB.Banlist["minutes"] migrated_bans = TRUE save() @@ -697,13 +701,13 @@ BSQL_PROTECT_DATUM(/datum/entity/player) /datum/entity/player/proc/migrate_jobbans() if(!job_bans) job_bans = list() - for(var/name in RoleAuthority.roles_for_mode) + for(var/name in GLOB.RoleAuthority.roles_for_mode) var/safe_job_name = ckey(name) - if(!jobban_keylist[safe_job_name]) + if(!GLOB.jobban_keylist[safe_job_name]) continue if(!safe_job_name) continue - var/reason = jobban_keylist[safe_job_name][ckey] + var/reason = GLOB.jobban_keylist[safe_job_name][ckey] if(!reason) continue @@ -735,6 +739,23 @@ BSQL_PROTECT_DATUM(/datum/entity/player) stat.stat_number += num stat.save() +/datum/entity/player/proc/check_whitelist_status(flag_to_check) + if(whitelist_flags & flag_to_check) + return TRUE + + return FALSE + +/datum/entity/player/proc/set_whitelist_status(field_to_set) + whitelist_flags = field_to_set + + var/list/output = list() + for(var/bitfield in GLOB.bitfields["whitelist_status"]) + if(field_to_set & GLOB.bitfields["whitelist_status"]["[bitfield]"]) + output += bitfield + whitelist_status = output.Join("|") + + save() + /datum/entity_link/player_to_banning_admin parent_entity = /datum/entity/player child_entity = /datum/entity/player @@ -762,6 +783,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player) var/last_known_cid var/last_known_ip var/discord_link_id + var/whitelist_status /datum/entity_view_meta/players root_record_type = /datum/entity/player @@ -779,4 +801,5 @@ BSQL_PROTECT_DATUM(/datum/entity/player) "last_known_ip", "last_known_cid", "discord_link_id", + "whitelist_status" ) diff --git a/code/datums/entities/player_sticky_ban.dm b/code/datums/entities/player_sticky_ban.dm index 752334e8e0..70715d1ce2 100644 --- a/code/datums/entities/player_sticky_ban.dm +++ b/code/datums/entities/player_sticky_ban.dm @@ -13,8 +13,8 @@ BSQL_PROTECT_DATUM(/datum/entity/stickyban) table_name = "stickyban" field_types = list( "identifier" = DB_FIELDTYPE_STRING_LARGE, - "reason" = DB_FIELDTYPE_STRING_LARGE, - "message" = DB_FIELDTYPE_STRING_LARGE, + "reason" = DB_FIELDTYPE_STRING_MAX, + "message" = DB_FIELDTYPE_STRING_MAX, "date" = DB_FIELDTYPE_STRING_LARGE, "active" = DB_FIELDTYPE_INT, "adminid" = DB_FIELDTYPE_BIGINT, diff --git a/code/datums/entities/player_times.dm b/code/datums/entities/player_times.dm index a6304bd5d8..4fc28ba2fa 100644 --- a/code/datums/entities/player_times.dm +++ b/code/datums/entities/player_times.dm @@ -61,7 +61,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player_time) return list( "job" = role_id, "playtime" = round(total_minutes MINUTES_TO_HOURS, 0.1), - "bgcolor" = "rgb(0, [Floor(128 * playtime_percentage)], [Floor(255 * playtime_percentage)])", + "bgcolor" = "rgb(0, [floor(128 * playtime_percentage)], [floor(255 * playtime_percentage)])", "textcolor" = "#FFFFFF", "icondisplay" = icon_display ) @@ -84,7 +84,7 @@ BSQL_PROTECT_DATUM(/datum/entity/player_time) return GLOB.always_state /datum/entity/player/proc/load_timestat_data() - if(!playtime_loaded || !RoleAuthority || LAZYACCESS(playtime_data, "loading")) // Need roleauthority to be up to see which job is xeno-related + if(!playtime_loaded || !GLOB.RoleAuthority || LAZYACCESS(playtime_data, "loading")) // Need roleauthority to be up to see which job is xeno-related return LAZYSET(playtime_data, "loading", TRUE) @@ -118,13 +118,13 @@ BSQL_PROTECT_DATUM(/datum/entity/player_time) LAZYADD(marine_playtimes, list(marine_playtime)) for(var/datum/view_record/playtime/PT in PTs) - var/isxeno = (PT.role_id in RoleAuthority.castes_by_name) + var/isxeno = (PT.role_id in GLOB.RoleAuthority.castes_by_name) var/isOther = (PT.role_id == JOB_OBSERVER) // more maybe eventually if(PT.role_id == JOB_XENOMORPH) continue // Snowflake check, will need to be removed in the future - if(!(PT.role_id in RoleAuthority.roles_by_name) && !isxeno && !isOther) + if(!(PT.role_id in GLOB.RoleAuthority.roles_by_name) && !isxeno && !isOther) continue if(isxeno) diff --git a/code/datums/event_info_text.dm b/code/datums/event_info_text.dm index 5336c5abed..21469ed379 100644 --- a/code/datums/event_info_text.dm +++ b/code/datums/event_info_text.dm @@ -15,7 +15,6 @@ return if(msg == "") - to_chat(user, SPAN_WARNING("No [faction] custom event message has been found. Either no custom event is taking place, admin hasn't properly set this or deemed it unnecessary to be set.")) return var/dat diff --git a/code/datums/factions/upp.dm b/code/datums/factions/upp.dm index be9bdb761c..88348bce1a 100644 --- a/code/datums/factions/upp.dm +++ b/code/datums/factions/upp.dm @@ -53,6 +53,10 @@ hud_icon_state = "vc" if(JOB_UPP_LT_DOKTOR) hud_icon_state = "doc" + if(JOB_UPP_SUPPLY) + hud_icon_state = "log" + if(JOB_UPP_COMMISSAR) + hud_icon_state = "commi" if(hud_icon_state) holder.overlays += image('icons/mob/hud/marine_hud.dmi', H, "upp_[hud_icon_state]") diff --git a/code/datums/factions/uscm.dm b/code/datums/factions/uscm.dm index e6aad56a05..bed726a665 100644 --- a/code/datums/factions/uscm.dm +++ b/code/datums/factions/uscm.dm @@ -22,14 +22,16 @@ if(JOB_XO) marine_rk = "xo" if(JOB_CO) marine_rk = "co" if(JOB_GENERAL) marine_rk = "general" - if(JOB_PILOT) marine_rk = "po" + if(JOB_CAS_PILOT) marine_rk = "gp" + if(JOB_DROPSHIP_PILOT) marine_rk = "dp" + if(JOB_TANK_CREW) marine_rk = "tc" if(JOB_INTEL) marine_rk = "io" if(JOB_DROPSHIP_CREW_CHIEF) marine_rk = "dcc" - if(JOB_CREWMAN) marine_rk = "tc" if(JOB_SQUAD_RTO) marine_rk = "rto" if(JOB_MARINE_RAIDER) marine_rk = "soc" if(JOB_MARINE_RAIDER_SL) marine_rk = "soctl" if(JOB_MARINE_RAIDER_CMD) marine_rk = "soccmd" + if(JOB_SQUAD_TECH) marine_rk = "tech" if(squad.squad_leader == current_human) switch(squad.squad_type) if("Platoon") marine_rk = "leader_a" @@ -76,6 +78,9 @@ if(JOB_CO) marine_rk = "co" border_rk = "command" + if(JOB_USCM_OBSV) + marine_rk = "vo" + border_rk = "command" if(JOB_SO) marine_rk = "wo_co" border_rk = "command" @@ -85,10 +90,18 @@ if(JOB_GENERAL, JOB_COLONEL, JOB_ACMC, JOB_CMC) marine_rk = "general" border_rk = "command" + if(JOB_PLT_MED) + marine_rk = "med" + if(JOB_PLT_SL) + marine_rk = "leader" + if(JOB_SQUAD_TECH) + marine_rk = "tech" if(JOB_INTEL) marine_rk = "io" - if(JOB_PILOT) - marine_rk = "po" + if(JOB_CAS_PILOT) + marine_rk = "gp" + if(JOB_DROPSHIP_PILOT) + marine_rk = "dp" if(JOB_DROPSHIP_CREW_CHIEF) marine_rk = "dcc" if(JOB_CHIEF_POLICE) @@ -96,6 +109,8 @@ border_rk = "command" if(JOB_POLICE) marine_rk = "mp" + if(JOB_TANK_CREW) + marine_rk = "tc" if(JOB_WARDEN) marine_rk = "warden" border_rk = "command" @@ -136,9 +151,18 @@ if(JOB_PROVOST_INSPECTOR) marine_rk = "pvi" border_rk = "command" + if(JOB_PROVOST_UNDERCOVER) + marine_rk = "pvuc" + border_rk = "command" + if(JOB_PROVOST_CINSPECTOR) + marine_rk = "pvci" + border_rk = "command" if(JOB_PROVOST_ADVISOR) marine_rk = "pva" border_rk = "command" + if(JOB_PROVOST_DMARSHAL) + marine_rk = "pvdm" + border_rk = "command" if(JOB_PROVOST_MARSHAL, JOB_PROVOST_CMARSHAL, JOB_PROVOST_SMARSHAL) marine_rk = "pvm" border_rk = "command" diff --git a/code/datums/global_variables.dm b/code/datums/global_variables.dm index 53e9c0391e..24d32bbf35 100644 --- a/code/datums/global_variables.dm +++ b/code/datums/global_variables.dm @@ -154,9 +154,9 @@ else if (istype(value, /list)) var/list/L = value - html += "[name] = /list ([L.len])" + html += "[name] = /list ([length(L)])" - if (L.len > 0 && !(name == "underlays" || name == "overlays" || name == "vars" || L.len > 500)) + if (length(L) > 0 && !(name == "underlays" || name == "overlays" || name == "vars" || length(L) > 500)) // not sure if this is completely right... html += "
    " var/index = 1 diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index a2932532e7..aa4665bda6 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -41,13 +41,15 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new) return msg.Join("\n") /datum/getrev/proc/GetTestMergeInfo(header = TRUE) - if(!testmerge.len) + if(!length(testmerge)) return "" . = header ? "The following pull requests are currently test merged:
    " : "" for(var/line in testmerge) var/datum/tgs_revision_information/test_merge/tm = line var/cm = tm.head_commit var/details = ": '" + html_encode(tm.title) + "' by " + html_encode(tm.author) + " at commit " + html_encode(copytext_char(cm, 1, 11)) + if(details && findtext(details, "\[s\]") && (!usr || !usr.client.admin_holder)) + continue . += "#[tm.number][details]
    " /client/verb/showrevinfo() @@ -68,7 +70,7 @@ GLOBAL_DATUM_INIT(revdata, /datum/getrev, new) var/pc = revdata.originmastercommit if(pc) msg += "Master commit: [pc]" - if(revdata.testmerge.len) + if(length(revdata.testmerge)) msg += revdata.GetTestMergeInfo() if(revdata.commit && revdata.commit != revdata.originmastercommit) msg += "Local commit: [revdata.commit]" diff --git a/code/datums/helper_datums/teleport.dm b/code/datums/helper_datums/teleport.dm index 16825ab8a7..2b283c978c 100644 --- a/code/datums/helper_datums/teleport.dm +++ b/code/datums/helper_datums/teleport.dm @@ -157,8 +157,8 @@ precision = rand(1,100) var/list/bagholding = teleatom.search_contents_for(/obj/item/storage/backpack/holding) - if(bagholding.len) - precision = max(rand(1,100)*bagholding.len,100) + if(length(bagholding)) + precision = max(rand(1,100)*length(bagholding),100) if(istype(teleatom, /mob/living)) var/mob/living/MM = teleatom to_chat(MM, SPAN_WARNING("The Bluespace interface on your Bag of Holding interferes with the teleport!")) @@ -166,18 +166,18 @@ /datum/teleport/instant/science/teleportChecks() if(istype(teleatom, /obj/item/disk/nuclear)) // Don't let nuke disks get teleported --NeoFite - teleatom.visible_message(SPAN_DANGER("The [teleatom] bounces off of the portal!")) + teleatom.visible_message(SPAN_DANGER("[teleatom] bounces off of the portal!")) return 0 if(length(teleatom.search_contents_for(/obj/item/disk/nuclear))) if(istype(teleatom, /mob/living)) var/mob/living/MM = teleatom - MM.visible_message(SPAN_DANGER("The [MM] bounces off of the portal!"),SPAN_DANGER("Something you are carrying seems to be unable to pass through the portal. Better drop it if you want to go through.")) + MM.visible_message(SPAN_DANGER("[MM] bounces off of the portal!"),SPAN_DANGER("Something you are carrying seems to be unable to pass through the portal. Better drop it if you want to go through.")) else - teleatom.visible_message(SPAN_DANGER("The [teleatom] bounces off of the portal!")) + teleatom.visible_message(SPAN_DANGER("[teleatom] bounces off of the portal!")) return 0 - if(is_admin_level(destination.z)) + if(should_block_game_interaction(destination)) if(length(teleatom.search_contents_for(/obj/item/storage/backpack/holding))) teleatom.visible_message(SPAN_DANGER("The Bag of Holding bounces off of the portal!")) return 0 diff --git a/code/datums/keybinding/client.dm b/code/datums/keybinding/client.dm index 7522878822..d7e90f6168 100644 --- a/code/datums/keybinding/client.dm +++ b/code/datums/keybinding/client.dm @@ -34,6 +34,21 @@ winset(user, null, "command=.screenshot [!user.keys_held["shift"] ? "auto" : ""]") return TRUE +/datum/keybinding/client/toggle_fullscreen + hotkey_keys = list("F11") + classic_keys = list("F11") + name = "toggle_fullscreen" + full_name = "Toggle Fullscreen" + description = "Toggles whether the game window will be true fullscreen or normal." + keybind_signal = COMSIG_KB_CLIENT_TOGGLEFULLSCREEN_DOWN + +/datum/keybinding/client/toggle_fullscreen/down(client/user) + . = ..() + if(.) + return + user.toggle_fullscreen_preference() + return TRUE + /datum/keybinding/client/minimal_hud hotkey_keys = list("F12") classic_keys = list("F12") diff --git a/code/datums/keybinding/human.dm b/code/datums/keybinding/human.dm index 6d7037eac3..810ee82888 100644 --- a/code/datums/keybinding/human.dm +++ b/code/datums/keybinding/human.dm @@ -120,11 +120,18 @@ if(.) return + // Get the user's marine helmet (if they're wearing one) var/mob/living/carbon/human/human_user = user.mob - var/obj/item/clothing/head/helmet/marine/marine_helmet = human_user?.head - var/cycled_hud = marine_helmet?.cycle_huds(human_user) + var/obj/item/clothing/head/helmet/marine/marine_helmet = human_user.head + if(!istype(marine_helmet)) + // If their hat isn't a marine helmet, or is null, return. + return + + // Cycle the HUD on the helmet. + var/cycled_hud = marine_helmet.cycle_huds(human_user) + // Update the helmet's 'cycle hud' action button var/datum/action/item_action/cycle_helmet_huds/cycle_action = locate() in marine_helmet.actions - cycle_action.set_action_overlay(cycled_hud) + cycle_action?.set_action_overlay(cycled_hud) return TRUE diff --git a/code/datums/keybinding/mob.dm b/code/datums/keybinding/mob.dm index b2bf989a7a..100f546ba5 100644 --- a/code/datums/keybinding/mob.dm +++ b/code/datums/keybinding/mob.dm @@ -73,7 +73,22 @@ user.mob.drop_held_item(I) return TRUE -/datum/keybinding/mob/target_head_cycle +// Parent type of the bodypart targeting keybinds +/datum/keybinding/mob/target + +/datum/keybinding/mob/target/down(client/user) + . = ..() + if(. || !user.mob) + return + + user.mob.select_body_zone(get_target_zone(user)) + return TRUE + +/// Returns the body zone which should be targeted when pressing this keybind. +/datum/keybinding/mob/target/proc/get_target_zone(client/user) + return + +/datum/keybinding/mob/target/head_cycle hotkey_keys = list("Numpad8") classic_keys = list("Numpad8") name = "target_head_cycle" @@ -81,14 +96,16 @@ description = "Pressing this key targets the head, and continued presses will cycle to the eyes and mouth. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETCYCLEHEAD_DOWN -/datum/keybinding/mob/target_head_cycle/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("head", user) - return TRUE +/datum/keybinding/mob/target/head_cycle/get_target_zone(client/user) + switch(user.mob.zone_selected) + if("head") + return "eyes" + if("eyes") + return "mouth" + else // including if("mouth") + return "head" -/datum/keybinding/mob/target_r_arm +/datum/keybinding/mob/target/r_arm hotkey_keys = list("Numpad4") classic_keys = list("Numpad4") name = "target_r_arm" @@ -96,14 +113,12 @@ description = "Pressing this key targets the right arm. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETRIGHTARM_DOWN -/datum/keybinding/mob/target_r_arm/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("rarm", user) - return TRUE +/datum/keybinding/mob/target/r_arm/get_target_zone(client/user) + if(user.mob.zone_selected == "r_arm") + return "r_hand" + return "r_arm" -/datum/keybinding/mob/target_body_chest +/datum/keybinding/mob/target/body_chest hotkey_keys = list("Numpad5") classic_keys = list("Numpad5") name = "target_body_chest" @@ -111,14 +126,10 @@ description = "Pressing this key targets the body. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETBODYCHEST_DOWN -/datum/keybinding/mob/target_body_chest/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("chest", user) - return TRUE +/datum/keybinding/mob/target/body_chest/get_target_zone(client/user) + return "chest" -/datum/keybinding/mob/target_left_arm +/datum/keybinding/mob/target/left_arm hotkey_keys = list("Numpad6") classic_keys = list("Numpad6") name = "target_left_arm" @@ -126,14 +137,12 @@ description = "Pressing this key targets the body. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETLEFTARM_DOWN -/datum/keybinding/mob/target_left_arm/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("larm", user) - return TRUE +/datum/keybinding/mob/target/left_arm/get_target_zone(client/user) + if(user.mob.zone_selected == "l_arm") + return "l_hand" + return "l_arm" -/datum/keybinding/mob/target_right_leg +/datum/keybinding/mob/target/right_leg hotkey_keys = list("Numpad1") classic_keys = list("Numpad1") name = "target_right_leg" @@ -141,14 +150,12 @@ description = "Pressing this key targets the right leg. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETRIGHTLEG_DOWN -/datum/keybinding/mob/target_right_leg/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("rleg", user) - return TRUE +/datum/keybinding/mob/target/right_leg/get_target_zone(client/user) + if(user.mob.zone_selected == "r_leg") + return "r_foot" + return "r_leg" -/datum/keybinding/mob/target_body_groin +/datum/keybinding/mob/target/body_groin hotkey_keys = list("Numpad2") classic_keys = list("Numpad2") name = "target_body_groin" @@ -156,14 +163,10 @@ description = "Pressing this key targets the groin. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETBODYGROIN_DOWN -/datum/keybinding/mob/target_body_groin/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("groin", user) - return TRUE +/datum/keybinding/mob/target/body_groin/get_target_zone(client/user) + return "groin" -/datum/keybinding/mob/target_left_leg +/datum/keybinding/mob/target/left_leg hotkey_keys = list("Numpad3") classic_keys = list("Numpad3") name = "target_left_leg" @@ -171,14 +174,12 @@ description = "Pressing this key targets the left leg. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETLEFTLEG_DOWN -/datum/keybinding/mob/target_left_leg/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("lleg", user) - return TRUE +/datum/keybinding/mob/target/left_leg/get_target_zone(client/user) + if(user.mob.zone_selected == "l_leg") + return "l_foot" + return "l_leg" -/datum/keybinding/mob/target_next +/datum/keybinding/mob/target/next hotkey_keys = list("Numpad7") classic_keys = list("Numpad7") name = "target_next" @@ -186,14 +187,10 @@ description = "Pressing this key targets the next body part, cycling forward through all of them. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETNEXT_DOWN -/datum/keybinding/mob/target_next/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("next", user) - return TRUE +/datum/keybinding/mob/target/next/get_target_zone(client/user) + return next_in_list(user.mob.zone_selected, DEFENSE_ZONES_LIVING) -/datum/keybinding/mob/target_prev +/datum/keybinding/mob/target/prev hotkey_keys = list("Numpad9") classic_keys = list("Numpad9") name = "target_prev" @@ -201,12 +198,8 @@ description = "Pressing this key targets the previous body part, cycling backward through all of them. This will impact where you hit people, and can be used for surgery." keybind_signal = COMSIG_KB_MOB_TARGETPREV_DOWN -/datum/keybinding/mob/target_prev/down(client/user) - . = ..() - if(.) - return - user.mob.a_select_zone("prev", user) - return TRUE +/datum/keybinding/mob/target/prev/get_target_zone(client/user) + return prev_in_list(user.mob.zone_selected, DEFENSE_ZONES_LIVING) /datum/keybinding/mob/prevent_movement hotkey_keys = list("Ctrl", "Alt") diff --git a/code/datums/keybinding/xenomorph.dm b/code/datums/keybinding/xenomorph.dm index 431b0a1e98..64acd876b4 100644 --- a/code/datums/keybinding/xenomorph.dm +++ b/code/datums/keybinding/xenomorph.dm @@ -189,21 +189,9 @@ . = ..() if(.) return - - var/mob/living/carbon/xenomorph/current_xeno = user?.mob - - if(!current_xeno?.hive) - return - - if((!current_xeno.hive.living_xeno_queen || SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST) && !current_xeno.hive.allow_no_queen_actions) //No Hive status on WO - to_chat(current_xeno, SPAN_WARNING("There is no Queen. You are alone.")) - return - - if(current_xeno.interference) - to_chat(current_xeno, SPAN_WARNING("A headhunter temporarily cut off your psychic connection!")) - return - - current_xeno.hive.hive_ui.open_hive_status(current_xeno) + var/mob/living/carbon/xenomorph/xeno = user.mob + xeno.hive_status() + return TRUE /datum/keybinding/xenomorph/hide hotkey_keys = list("Unbound") @@ -218,3 +206,18 @@ name = "evolve" full_name = "Evolve" keybind_signal = COMSIG_KB_XENO_EVOLVE + +/datum/keybinding/xenomorph/purchase_strain + hotkey_keys = list("Unbound") + classic_keys = list("Unbound") + name = "purchase_strain" + full_name = "Purchase Strain" + keybind_signal = COMSIG_KB_XENO_PURCHASE_STRAIN + +/datum/keybinding/xenomorph/purchase_strain/down(client/user) + . = ..() + if(.) + return + + var/mob/living/carbon/xenomorph/current_xeno = user?.mob + current_xeno.purchase_strain() diff --git a/code/datums/keybinding/yautja.dm b/code/datums/keybinding/yautja.dm index 4729db0045..c79788df49 100644 --- a/code/datums/keybinding/yautja.dm +++ b/code/datums/keybinding/yautja.dm @@ -30,16 +30,7 @@ classic_keys = list("Unbound") name = "pred_buy" full_name = "Claim equipment" - keybind_signal = COMSIG_KB_YAUTJA_BUTCHER - -/datum/keybinding/yautja/pred_buy/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - if(!isyautja(H)) - return - H.pred_buy() + keybind_signal = COMSIG_KB_YAUTJA_PRED_BUY /datum/keybinding/yautja/mark_panel hotkey_keys = list("Unbound") @@ -48,46 +39,12 @@ full_name = "Mark panel" keybind_signal = COMSIG_KB_YAUTJA_MARK_PANEL -/datum/keybinding/yautja/mark_panel/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - if(!isyautja(H)) - return - H.mark_panel() - /datum/keybinding/yautja/mark_for_hunt hotkey_keys = list("Unbound") classic_keys = list("Unbound") name = "mark_for_hunt" - full_name = "Mark for hunt" - keybind_signal = COMSIG_KB_YAUTJA_MARK_FOR_HUNT - -/datum/keybinding/yautja/mark_for_hunt/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - if(!isyautja(H)) - return - H.mark_for_hunt() - -/datum/keybinding/yautja/remove_from_hunt - hotkey_keys = list("Unbound") - classic_keys = list("Unbound") - name = "remove_from_hunt" - full_name = "Remove from hunt" - keybind_signal = COMSIG_KB_YAUTJA_REMOVE_FROM_HUNT - -/datum/keybinding/yautja/remove_from_hunt/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - if(!isyautja(H)) - return - H.remove_from_hunt() + full_name = "Toggle mark for hunt" + keybind_signal = COMSIG_KB_YAUTJA_TOGGLE_MARK_FOR_HUNT // BRACER SPECIFIC \\ @@ -168,22 +125,6 @@ full_name = "Toggle wristblades" keybind_signal = COMSIG_KB_YAUTJA_WRISTBLADES -/datum/keybinding/yautja/bracer_hunter/wristblades/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.wristblades() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.wristblades() - return TRUE - /datum/keybinding/yautja/bracer_hunter/track_gear hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -214,22 +155,6 @@ full_name = "Toggle cloak" keybind_signal = COMSIG_KB_YAUTJA_CLOAKER -/datum/keybinding/yautja/bracer_hunter/cloaker/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.cloaker() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.cloaker() - return TRUE - /datum/keybinding/yautja/bracer_hunter/caster hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -237,22 +162,6 @@ full_name = "Toggle plasma caster" keybind_signal = COMSIG_KB_YAUTJA_CASTER -/datum/keybinding/yautja/bracer_hunter/caster/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.caster() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.caster() - return TRUE - /datum/keybinding/yautja/bracer_hunter/change_explosion_type hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -283,22 +192,6 @@ full_name = "Self-destruct" keybind_signal = COMSIG_KB_YAUTJA_ACTIVATE_SUICIDE -/datum/keybinding/yautja/bracer_hunter/activate_suicide/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.activate_suicide() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.activate_suicide() - return TRUE - /datum/keybinding/yautja/bracer_hunter/injectors hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -306,21 +199,6 @@ full_name = "Create Stabilising Crystal" keybind_signal = COMSIG_KB_YAUTJA_INJECTORS -/datum/keybinding/yautja/bracer_hunter/injectors/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.injectors() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.injectors() - return TRUE /datum/keybinding/yautja/bracer_hunter/healing_capsule hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -328,22 +206,6 @@ full_name = "Create Healing Capsule" keybind_signal = COMSIG_KB_YAUTJA_CAPSULE -/datum/keybinding/yautja/bracer_hunter/healing_capsule/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.healing_capsule() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.healing_capsule() - return TRUE - /datum/keybinding/yautja/bracer_hunter/call_disc hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -351,22 +213,6 @@ full_name = "Call smart-disc" keybind_signal = COMSIG_KB_YAUTJA_CALL_DISC -/datum/keybinding/yautja/bracer_hunter/call_disc/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.call_disc() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.call_disc() - return TRUE - /datum/keybinding/yautja/bracer_hunter/remove_tracked_item hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -420,22 +266,6 @@ full_name = "Yank combi-stick" keybind_signal = COMSIG_KB_YAUTJA_CALL_COMBI -/datum/keybinding/yautja/bracer_hunter/call_combi/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.call_combi() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.call_combi() - return TRUE - /datum/keybinding/yautja/bracer_hunter/translate hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -443,22 +273,6 @@ full_name = "Translator" keybind_signal = COMSIG_KB_YAUTJA_TRANSLATE -/datum/keybinding/yautja/bracer_hunter/translate/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - - var/obj/item/clothing/gloves/yautja/hunter/gloves = H.gloves - if(istype(gloves)) - gloves.translate() - return TRUE - - var/obj/item/clothing/gloves/yautja/hunter/held = H.get_held_item() - if(istype(held)) - held.translate() - return TRUE - /datum/keybinding/yautja/bracer_hunter/bracername hotkey_keys = list("Unbound") classic_keys = list("Unbound") @@ -528,6 +342,13 @@ held.link_bracer() return TRUE +/datum/keybinding/yautja/bracer_hunter/control_falcon_drone + hotkey_keys = list("Unbound") + classic_keys = list("Unbound") + name = "control_falcon" + full_name = "Control falcon drone" + keybind_signal = COMSIG_KB_YAUTJA_CONTROL_FALCON + // Misc stuff - mask, teleporter \\ // mask @@ -545,32 +366,14 @@ classic_keys = list("Unbound") name = "toggle_zoom" full_name = "Toggle mask zoom" - keybind_signal = COMSIG_KB_YAUTJA_LINK_BRACER - -/datum/keybinding/yautja/mask/toggle_zoom/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - var/obj/item/clothing/mask/gas/yautja/mask = H.wear_mask - mask.toggle_zoom() - return TRUE + keybind_signal = COMSIG_KB_YAUTJA_MASK_TOGGLE_ZOOM /datum/keybinding/yautja/mask/togglesight hotkey_keys = list("Unbound") classic_keys = list("Unbound") name = "togglesight" full_name = "Toggle mask visors" - keybind_signal = COMSIG_KB_YAUTJA_LINK_BRACER - -/datum/keybinding/yautja/mask/togglesight/down(client/user) - . = ..() - if(.) - return - var/mob/living/carbon/human/H = user.mob - var/obj/item/clothing/mask/gas/yautja/mask = H.wear_mask - mask.togglesight() - return TRUE + keybind_signal = COMSIG_KB_YAUTJA_MASK_TOGGLESIGHT // teleporter diff --git a/code/datums/langchat/langchat.dm b/code/datums/langchat/langchat.dm index 4348cb32b7..40855ad63e 100644 --- a/code/datums/langchat/langchat.dm +++ b/code/datums/langchat/langchat.dm @@ -48,12 +48,12 @@ M.client.images -= langchat_image langchat_listeners = null -/atom/proc/langchat_set_x_offset() - langchat_image.maptext_x = world.icon_size / 2 - langchat_image.maptext_width / 2 -/atom/movable/langchat_set_x_offset() - langchat_image.maptext_x = bound_width / 2 - langchat_image.maptext_width / 2 -/mob/langchat_set_x_offset() - langchat_image.maptext_x = icon_size / 2 - langchat_image.maptext_width / 2 +/atom/proc/get_maxptext_x_offset(image/maptext_image) + return (world.icon_size / 2) - (maptext_image.maptext_width / 2) +/atom/movable/get_maxptext_x_offset(image/maptext_image) + return (bound_width / 2) - (maptext_image.maptext_width / 2) +/mob/get_maxptext_x_offset(image/maptext_image) + return (icon_size / 2) - (maptext_image.maptext_width / 2) ///Creates the image if one does not exist, resets settings that are modified by speech procs. /atom/proc/langchat_make_image(override_color = null) @@ -65,7 +65,7 @@ langchat_image.maptext_y = langchat_height langchat_image.maptext_height = 64 langchat_image.maptext_y -= LANGCHAT_MESSAGE_POP_Y_SINK - langchat_set_x_offset() + langchat_image.maptext_x = get_maxptext_x_offset(langchat_image) langchat_image.pixel_y = 0 langchat_image.alpha = 0 @@ -110,7 +110,7 @@ langchat_image.maptext = text_to_display langchat_image.maptext_width = LANGCHAT_WIDTH - langchat_set_x_offset() + langchat_image.maptext_x = get_maxptext_x_offset(langchat_image) langchat_listeners = listeners for(var/mob/M in langchat_listeners) @@ -157,7 +157,7 @@ langchat_image.maptext = text_to_display langchat_image.maptext_width = LANGCHAT_WIDTH * 2 - langchat_set_x_offset() + langchat_image.maptext_x = get_maxptext_x_offset(langchat_image) langchat_listeners = listeners for(var/mob/M in langchat_listeners) diff --git a/code/datums/lazy_template.dm b/code/datums/lazy_template.dm new file mode 100644 index 0000000000..03715cbd80 --- /dev/null +++ b/code/datums/lazy_template.dm @@ -0,0 +1,98 @@ + +/** + * Datum used to designate certain areas that do not need to exist nor be loaded at world start + * but do want to be loaded under certain circumstances. Use this for stuff like the nukie base or wizden, aka stuff that only matters when their antag is rolled. + */ +/datum/lazy_template + var/list/datum/turf_reservation/reservations = list() + + /// If this is true each load will increment an index keyed to the type and it will load [map_name]_[index] + var/uses_multiple_allocations = FALSE + + /// Directory of maps to prefix to the filename + var/map_dir = "maps/templates/lazy_templates" + + /// The filename (without extension) of the map to load + var/map_name + +/datum/lazy_template/New() + reservations = list() + ..() + +/datum/lazy_template/Destroy(force) + if(!force) + stack_trace("Something is trying to delete [type]") + return QDEL_HINT_LETMELIVE + + QDEL_LIST(reservations) + GLOB.lazy_templates -= type + return ..() + +/** + * Does the grunt work of loading the template. + */ +/datum/lazy_template/proc/lazy_load() + RETURN_TYPE(/datum/turf_reservation) + // This is a static assosciative list that is used to ensure maps that have variations are correctly varied when spawned + // I want to make it to where you can make a range and it'll randomly pick'n'take from the available versions at random + // But that can be done later when I have the time + var/static/list/multiple_allocation_hash = list() + + var/load_path = "[map_dir]/[map_name].dmm" + if(uses_multiple_allocations) + var/times = multiple_allocation_hash[type] || 0 + times += 1 + multiple_allocation_hash[type] = times + load_path = "[map_dir]/[map_name]_[times].dmm" + + if(!load_path || !fexists(load_path)) + CRASH("lazy template [type] has an invalid load_path: '[load_path]', check directory and map name!") + + var/datum/parsed_map/parsed_template = load_map( + file(load_path), + measure_only = TRUE, + ) + if(isnull(parsed_template.parsed_bounds)) + CRASH("Failed to cache lazy template for loading: '[type]'") + + var/width = parsed_template.parsed_bounds[MAP_MAXX] - parsed_template.parsed_bounds[MAP_MINX] + 1 + var/height = parsed_template.parsed_bounds[MAP_MAXY] - parsed_template.parsed_bounds[MAP_MINY] + 1 + var/datum/turf_reservation/reservation = SSmapping.request_turf_block_reservation( + width, + height, + parsed_template.parsed_bounds[MAP_MAXZ], + ) + if(!reservation) + CRASH("Failed to reserve a block for lazy template: '[type]'") + + // lists kept for overall loading + var/list/loaded_atom_movables = list() + var/list/loaded_turfs = list() + var/list/loaded_areas = list() + + for(var/z_idx in parsed_template.parsed_bounds[MAP_MAXZ] to 1 step -1) + var/turf/bottom_left = reservation.bottom_left_turfs[z_idx] + var/turf/top_right = reservation.top_right_turfs[z_idx] + + load_map( + file(load_path), + bottom_left.x, + bottom_left.y, + bottom_left.z, + z_upper = z_idx, + z_lower = z_idx, + ) + for(var/turf/turf as anything in block(bottom_left, top_right)) + loaded_turfs += turf + loaded_areas |= get_area(turf) + + // atoms can actually be in the contents of two or more turfs based on its icon/bound size + // see https://www.byond.com/docs/ref/index.html#/atom/var/contents + for(var/thing in (turf.get_all_contents() - turf)) + loaded_atom_movables |= thing + + SSatoms.InitializeAtoms(loaded_areas + loaded_atom_movables + loaded_turfs) + + SEND_SIGNAL(src, COMSIG_LAZY_TEMPLATE_LOADED, loaded_atom_movables, loaded_turfs, loaded_areas) + reservations += reservation + return reservation diff --git a/code/datums/looping_sounds/misc_sounds.dm b/code/datums/looping_sounds/misc_sounds.dm index 6411b3f51f..318ac7b331 100644 --- a/code/datums/looping_sounds/misc_sounds.dm +++ b/code/datums/looping_sounds/misc_sounds.dm @@ -1,3 +1,24 @@ /datum/looping_sound/looping_launch_announcement_alarm mid_sounds = list('sound/vehicles/Dropships/single_alarm_brr_dropship_1.ogg' = 1) start_sound = list('sound/vehicles/Dropships/single_alarm_brr_dropship_1.ogg' = 1) + +/datum/looping_sound/telephone/ring + start_sound = 'sound/machines/telephone/dial.ogg' + start_length = 3.2 SECONDS + mid_sounds = 'sound/machines/telephone/ring_outgoing.ogg' + mid_length = 2.1 SECONDS + volume = 10 + +/datum/looping_sound/telephone/busy + start_sound = 'sound/voice/callstation_unavailable.ogg' + start_length = 5.7 SECONDS + mid_sounds = 'sound/machines/telephone/phone_busy.ogg' + mid_length = 5 SECONDS + volume = 15 + +/datum/looping_sound/telephone/hangup + start_sound = 'sound/machines/telephone/remote_hangup.ogg' + start_length = 0.6 SECONDS + mid_sounds = 'sound/machines/telephone/phone_busy.ogg' + mid_length = 5 SECONDS + volume = 15 diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index 9706c26e1e..6170424db3 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -66,7 +66,7 @@ var/nightmare_path var/platoon - /// If truthy this is config for a round overriden map: search for override maps in data/, instead of using a path in maps/ + /// If truthy this is config for a round overridden map: search for override maps in data/, instead of using a path in maps/ var/override_map /datum/map_config/New() @@ -84,18 +84,20 @@ /datum/equipment_preset/synth/survivor/medical_synth, /datum/equipment_preset/synth/survivor/emt_synth, /datum/equipment_preset/synth/survivor/scientist_synth, + /datum/equipment_preset/synth/survivor/archaeologist_synth, /datum/equipment_preset/synth/survivor/engineer_synth, - /datum/equipment_preset/synth/survivor/janitor_synth, /datum/equipment_preset/synth/survivor/chef_synth, /datum/equipment_preset/synth/survivor/teacher_synth, + /datum/equipment_preset/synth/survivor/surveyor_synth, /datum/equipment_preset/synth/survivor/freelancer_synth, /datum/equipment_preset/synth/survivor/trucker_synth, /datum/equipment_preset/synth/survivor/bartender_synth, - /datum/equipment_preset/synth/survivor/detective_synth, + /datum/equipment_preset/synth/survivor/atc_synth, /datum/equipment_preset/synth/survivor/cmb_synth, /datum/equipment_preset/synth/survivor/wy/security_synth, /datum/equipment_preset/synth/survivor/wy/protection_synth, /datum/equipment_preset/synth/survivor/wy/corporate_synth, + /datum/equipment_preset/synth/survivor/icc_synth, /datum/equipment_preset/synth/survivor/radiation_synth, ) diff --git a/code/datums/matrix_editor.dm b/code/datums/matrix_editor.dm index 8e064d76db..c31720014d 100644 --- a/code/datums/matrix_editor.dm +++ b/code/datums/matrix_editor.dm @@ -72,11 +72,11 @@ if(!elements_str) return var/list/elements = splittext(elements_str, ",") - if(elements.len != 6) - to_chat(usr, "When creating a custom matrix, explicitly provide all 6 elements! Only [elements.len] were provided.") + if(length(elements) != 6) + to_chat(usr, "When creating a custom matrix, explicitly provide all 6 elements! Only [length(elements)] were provided.") return - for(var/i = 1 to elements.len) + for(var/i = 1 to length(elements)) var/num_ver = text2num(elements[i]) if(isnull(num_ver)) to_chat(usr, "Failed to convert element #[i] ([elements[i]]) to a number.") diff --git a/code/datums/medal_awards.dm b/code/datums/medal_awards.dm index fe4e7e3c0e..d747dc08fb 100644 --- a/code/datums/medal_awards.dm +++ b/code/datums/medal_awards.dm @@ -13,6 +13,7 @@ GLOBAL_LIST_EMPTY(medal_awards) GLOBAL_LIST_EMPTY(jelly_awards) +GLOBAL_LIST_EMPTY(medal_recommendations) /datum/recipient_awards var/list/medal_names @@ -37,6 +38,8 @@ GLOBAL_LIST_EMPTY(jelly_awards) giver_mob = list() giver_ckey = list() +GLOBAL_LIST_INIT(human_medals, list(MARINE_CONDUCT_MEDAL)) + /proc/give_medal_award(medal_location, as_admin = FALSE) if(as_admin && !check_rights(R_ADMIN)) as_admin = FALSE @@ -55,13 +58,8 @@ GLOBAL_LIST_EMPTY(jelly_awards) if(!chosen_recipient) return FALSE - var/list/choosable_medals = list(MARINE_CONDUCT_MEDAL) - - if(as_admin) - choosable_medals = ALL_MARINE_MEDALS - // Pick a medal - var/medal_type = tgui_input_list(usr, "What type of medal do you want to award?", "Medal Type", choosable_medals) + var/medal_type = tgui_input_list(usr, "What type of medal do you want to award?", "Medal Type", GLOB.human_medals) if(!medal_type) return FALSE @@ -138,16 +136,17 @@ GLOBAL_LIST_EMPTY(jelly_awards) // Create an actual medal item if(medal_location) + var/turf/turf_location = get_turf(medal_location) var/obj/item/clothing/accessory/medal/medal switch(medal_type) if(MARINE_CONDUCT_MEDAL) - medal = new /obj/item/clothing/accessory/medal/bronze/conduct(medal_location) + medal = new /obj/item/clothing/accessory/medal/bronze/conduct(turf_location) if(MARINE_BRONZE_HEART_MEDAL) - medal = new /obj/item/clothing/accessory/medal/bronze/heart(medal_location) + medal = new /obj/item/clothing/accessory/medal/bronze/heart(turf_location) if(MARINE_VALOR_MEDAL) - medal = new /obj/item/clothing/accessory/medal/silver/valor(medal_location) + medal = new /obj/item/clothing/accessory/medal/silver/valor(turf_location) if(MARINE_HEROISM_MEDAL) - medal = new /obj/item/clothing/accessory/medal/gold/heroism(medal_location) + medal = new /obj/item/clothing/accessory/medal/gold/heroism(turf_location) else return FALSE medal.recipient_name = chosen_recipient @@ -168,13 +167,106 @@ GLOBAL_LIST_EMPTY(jelly_awards) return TRUE -/proc/print_medal(mob/living/carbon/human/user, obj/printer) - var/obj/item/card/id/card = user.wear_id +/proc/give_medal_award_prefilled(medal_location, mob/giving_mob, chosen_recipient, recipient_rank, recipient_ckey, reason, _medal_type) + var/list/recipient_ranks = list() + for(var/datum/data/record/record in GLOB.data_core.general) + var/recipient_name = record.fields["name"] + recipient_ranks[recipient_name] = record.fields["rank"] + + if(!chosen_recipient) + return FALSE + + // Pick a medal + var/medal_type = _medal_type + if(!medal_type) + return FALSE + + // Write a citation + var/citation = strip_html(reason) + if(!citation) + return FALSE + + // Get mob information + var/posthumous = TRUE + var/mob/recipient_mob + var/found_other = FALSE + + for(var/mob/mob in GLOB.mob_list) + if(mob.real_name == chosen_recipient) + // Recipient: Check if they are dead, and get some info + // We might not get this info if gibbed, so we'd need to refactor again and find another way if we want stats always correct + if(isliving(mob) && mob.stat != DEAD) + posthumous = FALSE + recipient_mob = mob + if(found_other) + break + found_other = TRUE + if(!recipient_mob) + for(var/mob/mob in GLOB.dead_mob_list) + if(mob.real_name == chosen_recipient) + // Recipient: Check if they are dead?, and get some info + // We might not get this info if gibbed, so we'd need to refactor again and find another way if we want stats always correct + if(isliving(mob) && mob.stat != DEAD) + posthumous = FALSE + recipient_mob = mob + break + + // Create the recipient_award + if(!GLOB.medal_awards[chosen_recipient]) + GLOB.medal_awards[chosen_recipient] = new /datum/recipient_awards() + var/datum/recipient_awards/recipient_award = GLOB.medal_awards[chosen_recipient] + recipient_award.recipient_rank = recipient_rank + recipient_award.recipient_ckey = recipient_ckey + recipient_award.recipient_mob = recipient_mob + recipient_award.giver_mob += giving_mob + recipient_award.medal_names += medal_type + recipient_award.medal_citations += citation + recipient_award.posthumous += posthumous + recipient_award.giver_ckey += giving_mob.ckey + + recipient_award.giver_rank += recipient_ranks[giving_mob.real_name] // Currently not used in marine award message + recipient_award.giver_name += giving_mob.real_name // Currently not used in marine award message + + // Create an actual medal item + if(medal_location) + var/turf/turf_location = get_turf(medal_location) + var/obj/item/clothing/accessory/medal/medal + switch(medal_type) + if(MARINE_CONDUCT_MEDAL) + medal = new /obj/item/clothing/accessory/medal/bronze/conduct(turf_location) + if(MARINE_BRONZE_HEART_MEDAL) + medal = new /obj/item/clothing/accessory/medal/bronze/heart(turf_location) + if(MARINE_VALOR_MEDAL) + medal = new /obj/item/clothing/accessory/medal/silver/valor(turf_location) + if(MARINE_HEROISM_MEDAL) + medal = new /obj/item/clothing/accessory/medal/gold/heroism(turf_location) + else + return FALSE + medal.recipient_name = chosen_recipient + medal.medal_citation = citation + medal.recipient_rank = recipient_rank + recipient_award.medal_items += medal + else + recipient_award.medal_items += null + + // Recipient: Add the medal to the player's stats + if(recipient_ckey) + var/datum/entity/player_entity/recipient_player = setup_player_entity(recipient_ckey) + if(recipient_player) + recipient_player.track_medal_earned(medal_type, recipient_mob, recipient_rank, citation, giving_mob) + + // Inform staff of success + message_admins("[key_name_admin(giving_mob)] awarded a [medal_type] to [chosen_recipient] for: \'[citation]\'.") + + return TRUE + +/proc/open_medal_panel(mob/living/carbon/human/user, obj/printer) + var/obj/item/card/id/card = user?.get_idcard() if(!card) to_chat(user, SPAN_WARNING("You must have an authenticated ID Card to award medals.")) return - if(!((card.paygrade in GLOB.co_paygrades) || (card.paygrade in GLOB.platco_paygrades) || (card.paygrade in GLOB.highcom_paygrades))) + if(!((card.paygrade in GLOB.co_paygrades) || (card.paygrade in GLOB.platco_paygrades) || (card.paygrade in GLOB.uscm_highcom_paygrades))) to_chat(user, SPAN_WARNING("Only a Senior Officer can award medals!")) return @@ -182,13 +274,11 @@ GLOBAL_LIST_EMPTY(jelly_awards) user.visible_message("ERROR: ID card not registered in USCM registry. Potential medal fraud detected.") return - var/real_owner_ref = card.registered_ref - - if(real_owner_ref != WEAKREF(user)) + if(!card.check_biometrics(user)) user.visible_message("ERROR: ID card not registered for [user.real_name] in USCM registry. Potential medal fraud detected.") return - if(!(FACTION_USCM in user.faction_group)) + if(!(FACTION_MARINE in user.faction_group)) to_chat(user, SPAN_WARNING("Medals only available for USCM personnel.")) return @@ -196,8 +286,11 @@ GLOBAL_LIST_EMPTY(jelly_awards) to_chat(user, SPAN_WARNING("Only one medal may be awarded per operation.")) return - if(give_medal_award(get_turf(printer))) - user.visible_message(SPAN_NOTICE("[printer] prints a medal.")) + GLOB.ic_medals_panel.user_locs[WEAKREF(user)] = WEAKREF(printer) + GLOB.ic_medals_panel.tgui_interact(user) + + +GLOBAL_LIST_INIT(xeno_medals, list(XENO_SLAUGHTER_MEDAL, XENO_RESILIENCE_MEDAL, XENO_SABOTAGE_MEDAL, XENO_PROLIFERATION_MEDAL, XENO_REJUVENATION_MEDAL)) /proc/give_jelly_award(datum/hive_status/hive, as_admin = FALSE) if(!hive) @@ -211,23 +304,21 @@ GLOBAL_LIST_EMPTY(jelly_awards) var/list/recipient_castes = list() var/list/recipient_mobs = list() for(var/mob/living/carbon/xenomorph/xeno in hive.totalXenos) - if (xeno.persistent_ckey == usr.persistent_ckey) // Don't award self - continue - if (xeno.tier == 0) // Don't award larva or facehuggers - continue - if (!as_admin && istype(xeno.caste, /datum/caste_datum/queen)) // Don't award queens unless admin + if(xeno.persistent_ckey == usr.persistent_ckey) // Don't award self continue + if(xeno.tier == 0) // Don't award larva or facehuggers + if(!as_admin || !isqueen(xeno)) // Don't award queens unless admin (She is tier 0 for whatever reason) + continue var/recipient_name = xeno.real_name recipient_castes[recipient_name] = xeno.caste_type recipient_mobs[recipient_name] = xeno possible_recipients += recipient_name for(var/mob/living/carbon/xenomorph/xeno in hive.total_dead_xenos) - if (xeno.persistent_ckey == usr.persistent_ckey) // Don't award previous selves - continue - if (xeno.tier == 0) // Don't award larva or facehuggers - continue - if (!as_admin && istype(xeno.caste, /datum/caste_datum/queen)) // Don't award previous queens unless admin + if(xeno.persistent_ckey == usr.persistent_ckey) // Don't award previous selves continue + if(xeno.tier == 0) // Don't award larva or facehuggers + if(!as_admin || !isqueen(xeno)) // Don't award queens unless admin (She is tier 0 for whatever reason) + continue var/recipient_name = xeno.real_name recipient_castes[recipient_name] = xeno.caste_type recipient_mobs[recipient_name] = xeno @@ -237,7 +328,7 @@ GLOBAL_LIST_EMPTY(jelly_awards) return FALSE // Pick a jelly - var/medal_type = tgui_input_list(usr, "What type of jelly do you want to award?", "Jelly Type", list(XENO_SLAUGHTER_MEDAL, XENO_RESILIENCE_MEDAL, XENO_SABOTAGE_MEDAL, XENO_PROLIFERATION_MEDAL, XENO_REJUVENATION_MEDAL), theme="hive_status") + var/medal_type = tgui_input_list(usr, "What type of jelly do you want to award?", "Jelly Type", GLOB.xeno_medals, theme="hive_status") if(!medal_type) return FALSE @@ -324,7 +415,7 @@ GLOBAL_LIST_EMPTY(jelly_awards) to_chat(usr, "Error: Could not find the [is_marine_medal ? "marine" : "xeno"] awards for '[recipient_name]'!") return FALSE - if(index < 1 || index > recipient_award.medal_names.len) + if(index < 1 || index > length(recipient_award.medal_names)) to_chat(usr, "Error: Index [index] is out of bounds!") return FALSE @@ -351,7 +442,7 @@ GLOBAL_LIST_EMPTY(jelly_awards) // Either entirely delete the award from the list, or just remove the entry if there are multiple var/medal_type = recipient_award.medal_names[index] var/citation = recipient_award.medal_citations[index] - if(recipient_award.medal_names.len == 1) + if(length(recipient_award.medal_names) == 1) if(is_marine_medal) GLOB.medal_awards.Remove(recipient_name) else @@ -380,3 +471,204 @@ GLOBAL_LIST_EMPTY(jelly_awards) message_admins("[key_name_admin(usr)] deleted [recipient_name]'s [medal_type] for: \'[citation]\'.") return TRUE + +/datum/medal_recommendation + var/recipient_rank + var/recipient_ckey + var/recipient_name + var/recommended_by_name + var/recommended_by_ckey + var/reason + var/recommended_by_rank + + +/proc/add_medal_recommendation(mob/recommendation_giver) + // Pick a marine + var/list/possible_recipients = list() + var/list/recipient_ranks = list() + for(var/datum/data/record/record in GLOB.data_core.general) + var/recipient_name = record.fields["name"] + if(recipient_name == recommendation_giver.real_name) + continue + recipient_ranks[recipient_name] = record.fields["rank"] + possible_recipients += recipient_name + if(length(possible_recipients) == 0) + to_chat(recommendation_giver, SPAN_WARNING("It's not possible to give medals when the ship is empty. Tough luck, partner...")) + return FALSE + + var/chosen_recipient = tgui_input_list(recommendation_giver, "Who do you want to recommend a medal for?", "Medal Recommendation", possible_recipients) + if(!chosen_recipient) + return FALSE + + // Write a citation + var/reason = strip_html(tgui_input_text(recommendation_giver, "Why does this person deserve a medal?", "Medal Recommendation", null, MAX_PAPER_MESSAGE_LEN, TRUE), MAX_PAPER_MESSAGE_LEN) + if(!reason) + return FALSE + + // Get mob information + var/recipient_rank = recipient_ranks[chosen_recipient] + var/recipient_ckey + var/mob/recipient_mob + var/found_other = FALSE + + for(var/mob/mob in GLOB.mob_list) + if(mob.real_name == chosen_recipient) + // We might not get this info if gibbed, so we'd need to refactor again and find another way if we want stats always correct + recipient_ckey = mob.persistent_ckey + recipient_mob = mob + if(found_other) + break + found_other = TRUE + if(!recipient_mob) + for(var/mob/mob in GLOB.dead_mob_list) + if(mob.real_name == chosen_recipient) + // Recipient: Check if they are dead?, and get some info + // We might not get this info if gibbed, so we'd need to refactor again and find another way if we want stats always correct + recipient_ckey = mob.persistent_ckey + recipient_mob = mob + break + + // Create the recipient_award + var/datum/medal_recommendation/recommendation = new /datum/medal_recommendation() + GLOB.medal_recommendations += recommendation + + recommendation.recipient_rank = recipient_rank + recommendation.recipient_ckey = recipient_ckey + recommendation.recipient_name = recipient_mob.real_name + recommendation.recommended_by_name = recommendation_giver.real_name + recommendation.recommended_by_ckey = recommendation_giver.ckey + recommendation.recommended_by_rank = recipient_ranks[recommendation_giver.real_name] + + + recommendation.reason = reason + + return TRUE + + +GLOBAL_DATUM_INIT(ic_medals_panel, /datum/ic_medal_panel, new) + +/datum/ic_medal_panel + var/name = "Medals Panel" + var/list/datum/weakref/user_locs = list() + +/datum/ic_medal_panel/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "IcMedalsPanel", "Medals Panel") + ui.open() + ui.set_autoupdate(FALSE) + +/datum/ic_medal_panel/ui_state(mob/user) + var/datum/weakref/user_reference = WEAKREF(user) + var/datum/weakref/loc_reference = user_locs[user_reference] + if(istype(loc_reference?.resolve(), /obj/item)) + return GLOB.not_incapacitated_and_inventory_state + else + return GLOB.not_incapacitated_and_adjacent_state + +/datum/ic_medal_panel/ui_host(mob/user) + . = ..() + var/datum/weakref/user_reference = WEAKREF(user) + var/datum/weakref/loc_reference = user_locs[user_reference] + . = loc_reference?.resolve() + +/datum/ic_medal_panel/ui_data(mob/user) + var/list/data = list() + data["recommendations"] = list() + + for(var/datum/medal_recommendation/recommendation in GLOB.medal_recommendations) + var/recommendation_list = list() + + recommendation_list["rank"] = recommendation.recipient_rank + recommendation_list["name"] = recommendation.recipient_name + recommendation_list["ref"] = REF(recommendation) + recommendation_list["recommender_name"] = recommendation.recommended_by_name + recommendation_list["reason"] = recommendation.reason + recommendation_list["recommender_rank"] = recommendation.recommended_by_rank + + data["recommendations"] += list(recommendation_list) + return data + +/datum/ic_medal_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + var/mob/living/carbon/human/user = ui.user + var/obj/item/card/id/card = user?.get_idcard() + if(!card) + to_chat(user, SPAN_WARNING("You must have an authenticated ID Card to award medals.")) + return + + if(!((card.paygrade in GLOB.co_paygrades) || (card.paygrade in GLOB.uscm_highcom_paygrades))) + to_chat(user, SPAN_WARNING("Only a Senior Officer can award medals!")) + return + + if(!card.registered_ref) + user.visible_message("ERROR: ID card not registered in USCM registry. Potential medal fraud detected.") + return + + var/real_owner_ref = card.registered_ref + + if(real_owner_ref != WEAKREF(user)) + user.visible_message("ERROR: ID card not registered for [user.real_name] in USCM registry. Potential medal fraud detected.") + return + + var/datum/weakref/user_ref = WEAKREF(user) + var/datum/weakref/loc_ref = user_locs[user_ref] + var/atom/actual_loc = loc_ref?.resolve() + if(!actual_loc) + return + + switch(action) + if("grant_new_medal") + if(give_medal_award(actual_loc)) + actual_loc.visible_message(SPAN_NOTICE("[actual_loc] prints a medal.")) + . = TRUE + + if("approve_medal") + var/recommendation_ref = params["ref"] + var/medal_type = params["medal_type"] + if(!(medal_type in GLOB.human_medals)) + return + var/datum/medal_recommendation/recommendation = locate(recommendation_ref) in GLOB.medal_recommendations + if(!recommendation) + return + if(recommendation.recipient_name == user.real_name) + to_chat(user, SPAN_WARNING("You cannot give medals to yourself!")) + return + + var/choice = tgui_alert(user, "Would you like to change the medal text?", "Medal Citation", list("Yes", "No")) + var/medal_citation = recommendation.reason + if(choice == "Yes") + medal_citation = strip_html(tgui_input_text(user, "What should the medal citation read?", "Medal Citation", null, MAX_PAPER_MESSAGE_LEN, TRUE), MAX_PAPER_MESSAGE_LEN) + + var/confirm_choice = tgui_alert(user, "Are you sure you want to give a medal to [recommendation.recipient_name]?", "Medal Confirmation", list("Yes", "No")) + if(confirm_choice != "Yes") + return + + if(give_medal_award_prefilled(actual_loc, user, recommendation.recipient_name, recommendation.recipient_rank, recommendation.recipient_ckey, medal_citation, medal_type, recommendation.recommended_by_ckey, recommendation.recommended_by_name)) + GLOB.medal_recommendations -= recommendation + qdel(recommendation) + user.visible_message(SPAN_NOTICE("[actual_loc] prints a medal.")) + . = TRUE + + if("deny_medal") + var/recommendation_ref = params["ref"] + var/datum/medal_recommendation/recommendation = locate(recommendation_ref) in GLOB.medal_recommendations + if(!recommendation) + return + var/confirm = tgui_alert(user, "Are you sure you want to deny this medal recommendation?", "Medal Confirmation", list("Yes", "No")) + if(confirm != "Yes") + return + GLOB.medal_recommendations -= recommendation + qdel(recommendation) + . = TRUE + +/datum/ic_medal_panel/ui_close(mob/user) + . = ..() + user_locs -= WEAKREF(user) + +/datum/ic_medal_panel/ui_assets(mob/user) + return list( + get_asset_datum(/datum/asset/spritesheet/medal) + ) diff --git a/code/datums/mind.dm b/code/datums/mind.dm index ae6304dbcd..ab9c55b3fa 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -35,7 +35,7 @@ var/mob/old_current = current if(current) current.mind = null //remove ourself from our old body's mind variable - nanomanager.user_transferred(current, new_character) // transfer active NanoUI instances to new user + SSnano.nanomanager.user_transferred(current, new_character) // transfer active NanoUI instances to new user SStgui.on_transfer(current, new_character) // and active TGUI instances if(key) @@ -56,7 +56,7 @@ SSround_recording.recorder.update_key(new_character) if(new_character.client) new_character.client.init_verbs() - new_character.client.change_view(world_view_size) //reset view range to default. + new_character.client.change_view(GLOB.world_view_size) //reset view range to default. new_character.client.pixel_x = 0 new_character.client.pixel_y = 0 if(usr && usr.open_uis) diff --git a/code/datums/mob_hud.dm b/code/datums/mob_hud.dm index 3f5d0fcc02..011dc8e25d 100644 --- a/code/datums/mob_hud.dm +++ b/code/datums/mob_hud.dm @@ -1,7 +1,7 @@ /* HUD DATUMS */ //GLOBAL HUD LIST -var/list/datum/mob_hud/huds = list( +GLOBAL_LIST_INIT_TYPED(huds, /datum/mob_hud, list( MOB_HUD_SECURITY_BASIC = new /datum/mob_hud/security/basic(), MOB_HUD_SECURITY_ADVANCED = new /datum/mob_hud/security/advanced(), MOB_HUD_MEDICAL_BASIC = new /datum/mob_hud/medical/basic(), @@ -10,7 +10,7 @@ var/list/datum/mob_hud/huds = list( MOB_HUD_XENO_INFECTION = new /datum/mob_hud/xeno_infection(), MOB_HUD_XENO_STATUS = new /datum/mob_hud/xeno(), MOB_HUD_XENO_HOSTILE = new /datum/mob_hud/xeno_hostile(), - MOB_HUD_FACTION_USCM = new /datum/mob_hud/faction(), + MOB_HUD_FACTION_MARINE = new /datum/mob_hud/faction(), MOB_HUD_FACTION_OBSERVER = new /datum/mob_hud/faction/observer(), MOB_HUD_FACTION_UPP = new /datum/mob_hud/faction/upp(), MOB_HUD_FACTION_WY = new /datum/mob_hud/faction/wy(), @@ -18,8 +18,9 @@ var/list/datum/mob_hud/huds = list( MOB_HUD_FACTION_CLF = new /datum/mob_hud/faction/clf(), MOB_HUD_FACTION_PMC = new /datum/mob_hud/faction/pmc(), MOB_HUD_HUNTER = new /datum/mob_hud/hunter_hud(), - MOB_HUD_HUNTER_CLAN = new /datum/mob_hud/hunter_clan() - ) + MOB_HUD_HUNTER_CLAN = new /datum/mob_hud/hunter_clan(), + MOB_HUD_EXECUTE = new /datum/mob_hud/execute_hud(), + )) /datum/mob_hud var/list/mob/hudmobs = list() //list of all mobs which display this hud @@ -33,10 +34,8 @@ var/list/datum/mob_hud/huds = list( /datum/mob_hud/proc/remove_hud_from(mob/user, source) if(length(hudusers[user]) && (source in hudusers[user])) hudusers[user] -= source - if(length(hudusers[user])) return FALSE - for(var/mob/target in hudmobs) remove_from_single_hud(user, target) @@ -169,6 +168,9 @@ var/list/datum/mob_hud/huds = list( /datum/mob_hud/xeno_hostile hud_icons = list(XENO_HOSTILE_ACID, XENO_HOSTILE_SLOW, XENO_HOSTILE_TAG, XENO_HOSTILE_FREEZE) +/datum/mob_hud/execute_hud + hud_icons = list(XENO_EXECUTE) + /datum/mob_hud/hunter_clan hud_icons = list(HUNTER_CLAN) @@ -220,17 +222,17 @@ var/list/datum/mob_hud/huds = list( return /mob/hologram/queen/add_to_all_mob_huds() - var/datum/mob_hud/hud = huds[MOB_HUD_XENO_STATUS] + var/datum/mob_hud/hud = GLOB.huds[MOB_HUD_XENO_STATUS] hud.add_to_hud(src) /mob/living/carbon/human/add_to_all_mob_huds() - for(var/datum/mob_hud/hud in huds) + for(var/datum/mob_hud/hud in GLOB.huds) if(istype(hud, /datum/mob_hud/xeno)) //this one is xeno only continue hud.add_to_hud(src) /mob/living/carbon/xenomorph/add_to_all_mob_huds() - for(var/datum/mob_hud/hud in huds) + for(var/datum/mob_hud/hud in GLOB.huds) if(!istype(hud, /datum/mob_hud/xeno)) continue hud.add_to_hud(src) @@ -240,17 +242,17 @@ var/list/datum/mob_hud/huds = list( return /mob/hologram/queen/remove_from_all_mob_huds() - var/datum/mob_hud/hud = huds[MOB_HUD_XENO_STATUS] + var/datum/mob_hud/hud = GLOB.huds[MOB_HUD_XENO_STATUS] hud.remove_from_hud(src) /mob/living/carbon/human/remove_from_all_mob_huds() - for(var/datum/mob_hud/hud in huds) + for(var/datum/mob_hud/hud in GLOB.huds) if(istype(hud, /datum/mob_hud/xeno)) continue hud.remove_from_hud(src) /mob/living/carbon/xenomorph/remove_from_all_mob_huds() - for(var/datum/mob_hud/hud in huds) + for(var/datum/mob_hud/hud in GLOB.huds) if(istype(hud, /datum/mob_hud/xeno)) hud.remove_from_hud(src) hud.remove_hud_from(src, src) @@ -258,14 +260,19 @@ var/list/datum/mob_hud/huds = list( hud.remove_hud_from(src, src) if (xeno_hostile_hud) xeno_hostile_hud = FALSE - var/datum/mob_hud/hostile_hud = huds[MOB_HUD_XENO_HOSTILE] + var/datum/mob_hud/hostile_hud = GLOB.huds[MOB_HUD_XENO_HOSTILE] hostile_hud.remove_hud_from(src, src) + if (execute_hud) + execute_hud = FALSE + var/datum/mob_hud/execute = GLOB.huds[MOB_HUD_EXECUTE] + execute.remove_hud_from(src, src) + /mob/proc/refresh_huds(mob/source_mob) var/mob/M = source_mob ? source_mob : src - for(var/datum/mob_hud/hud in huds) + for(var/datum/mob_hud/hud in GLOB.huds) if(M in hud.hudusers) hud.refresh_hud(src, hud.hudusers[M]) @@ -273,7 +280,7 @@ var/list/datum/mob_hud/huds = list( //called when a human changes suit sensors /mob/living/carbon/human/proc/update_suit_sensors() - var/datum/mob_hud/medical/basic/B = huds[MOB_HUD_MEDICAL_BASIC] + var/datum/mob_hud/medical/basic/B = GLOB.huds[MOB_HUD_MEDICAL_BASIC] B.update_suit_sensors(src) //called when a human changes health @@ -372,6 +379,9 @@ var/list/datum/mob_hud/huds = list( holder3.color = null holder4.color = null + holder2.alpha = alpha + holder3.alpha = alpha + holder4.icon_state = "hudblank" if(species && species.flags & IS_SYNTHETIC) @@ -398,7 +408,6 @@ var/list/datum/mob_hud/huds = list( var/revive_enabled = stat == DEAD && check_tod() && is_revivable() if(stat == DEAD) revive_enabled = check_tod() && is_revivable() - var/datum/internal_organ/heart/heart = islist(internal_organs_by_name) ? internal_organs_by_name["heart"] : null var/holder2_set = 0 if(hivenumber) @@ -424,6 +433,14 @@ var/list/datum/mob_hud/huds = list( if(hive && hive.color) holder3.color = hive.color + if(stat == DEAD || status_flags & FAKEDEATH) + holder2.alpha = 100 + holder3.alpha = 100 + + if(status_flags & CORRUPTED_ALLY) + holder4.color = "#80ff80" + holder4.icon_state = "hudalien_ally" + if(stat == DEAD || status_flags & FAKEDEATH) if(revive_enabled) if(!client) @@ -457,7 +474,7 @@ var/list/datum/mob_hud/huds = list( holder3.icon_state = "huddead" holder2_set = 1 else - if(heart && (heart.organ_status >= ORGAN_BROKEN && check_tod())) // broken heart icon + if(is_heart_broken()) // broken heart icon holder.icon_state = "huddeadheart" if(!holder2_set) holder2.icon_state = "huddeadheart" @@ -672,11 +689,11 @@ var/list/datum/mob_hud/huds = list( /mob/proc/hud_set_hunter() return -var/global/image/hud_icon_hunter_gear -var/global/image/hud_icon_hunter_hunted -var/global/image/hud_icon_hunter_dishonored -var/global/image/hud_icon_hunter_honored -var/global/image/hud_icon_hunter_thralled +GLOBAL_DATUM(hud_icon_hunter_gear, /image) +GLOBAL_DATUM(hud_icon_hunter_hunted, /image) +GLOBAL_DATUM(hud_icon_hunter_dishonored, /image) +GLOBAL_DATUM(hud_icon_hunter_honored, /image) +GLOBAL_DATUM(hud_icon_hunter_thralled, /image) /mob/living/carbon/hud_set_hunter() @@ -684,27 +701,27 @@ var/global/image/hud_icon_hunter_thralled holder.icon_state = "hudblank" holder.overlays.Cut() if(hunter_data.hunted) - if(!hud_icon_hunter_hunted) - hud_icon_hunter_hunted = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_hunted") - holder.overlays += hud_icon_hunter_hunted + if(!GLOB.hud_icon_hunter_hunted) + GLOB.hud_icon_hunter_hunted = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_hunted") + holder.overlays += GLOB.hud_icon_hunter_hunted if(hunter_data.dishonored) - if(!hud_icon_hunter_dishonored) - hud_icon_hunter_dishonored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_dishonored") - holder.overlays += hud_icon_hunter_dishonored + if(!GLOB.hud_icon_hunter_dishonored) + GLOB.hud_icon_hunter_dishonored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_dishonored") + holder.overlays += GLOB.hud_icon_hunter_dishonored else if(hunter_data.honored) - if(!hud_icon_hunter_honored) - hud_icon_hunter_honored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_honored") - holder.overlays += hud_icon_hunter_honored + if(!GLOB.hud_icon_hunter_honored) + GLOB.hud_icon_hunter_honored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_honored") + holder.overlays += GLOB.hud_icon_hunter_honored if(hunter_data.thralled) - if(!hud_icon_hunter_thralled) - hud_icon_hunter_thralled = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_thralled") - holder.overlays += hud_icon_hunter_thralled + if(!GLOB.hud_icon_hunter_thralled) + GLOB.hud_icon_hunter_thralled = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_thralled") + holder.overlays += GLOB.hud_icon_hunter_thralled else if(hunter_data.gear) - if(!hud_icon_hunter_gear) - hud_icon_hunter_gear = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_gear") - holder.overlays += hud_icon_hunter_gear + if(!GLOB.hud_icon_hunter_gear) + GLOB.hud_icon_hunter_gear = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_gear") + holder.overlays += GLOB.hud_icon_hunter_gear hud_list[HUNTER_HUD] = holder @@ -714,18 +731,18 @@ var/global/image/hud_icon_hunter_thralled holder.overlays.Cut() holder.pixel_x = -18 if(hunter_data.hunted) - if(!hud_icon_hunter_hunted) - hud_icon_hunter_hunted = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_hunted") - holder.overlays += hud_icon_hunter_hunted + if(!GLOB.hud_icon_hunter_hunted) + GLOB.hud_icon_hunter_hunted = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_hunted") + holder.overlays += GLOB.hud_icon_hunter_hunted if(hunter_data.dishonored) - if(!hud_icon_hunter_dishonored) - hud_icon_hunter_dishonored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_dishonored") - holder.overlays += hud_icon_hunter_dishonored + if(!GLOB.hud_icon_hunter_dishonored) + GLOB.hud_icon_hunter_dishonored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_dishonored") + holder.overlays += GLOB.hud_icon_hunter_dishonored else if(hunter_data.honored) - if(!hud_icon_hunter_honored) - hud_icon_hunter_honored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_honored") - holder.overlays += hud_icon_hunter_honored + if(!GLOB.hud_icon_hunter_honored) + GLOB.hud_icon_hunter_honored = image('icons/mob/hud/hud_yautja.dmi', src, "hunter_honored") + holder.overlays += GLOB.hud_icon_hunter_honored hud_list[HUNTER_HUD] = holder @@ -733,26 +750,26 @@ var/global/image/hud_icon_hunter_thralled /mob/proc/hud_set_order() return -var/global/image/hud_icon_hudmove -var/global/image/hud_icon_hudhold -var/global/image/hud_icon_hudfocus +GLOBAL_DATUM(hud_icon_hudmove, /image) +GLOBAL_DATUM(hud_icon_hudhold, /image) +GLOBAL_DATUM(hud_icon_hudfocus, /image) // ORDER HUD /mob/living/carbon/human/hud_set_order() var/image/holder = hud_list[ORDER_HUD] holder.icon_state = "hudblank" holder.overlays.Cut() if(mobility_aura) - if(!hud_icon_hudmove) - hud_icon_hudmove = image('icons/mob/hud/marine_hud.dmi', src, "hudmove") - holder.overlays += hud_icon_hudmove + if(!GLOB.hud_icon_hudmove) + GLOB.hud_icon_hudmove = image('icons/mob/hud/marine_hud.dmi', src, "hudmove") + holder.overlays += GLOB.hud_icon_hudmove if(protection_aura) - if(!hud_icon_hudhold) - hud_icon_hudhold = image('icons/mob/hud/marine_hud.dmi', src, "hudhold") - holder.overlays += hud_icon_hudhold + if(!GLOB.hud_icon_hudhold) + GLOB.hud_icon_hudhold = image('icons/mob/hud/marine_hud.dmi', src, "hudhold") + holder.overlays += GLOB.hud_icon_hudhold if(marksman_aura) - if(!hud_icon_hudfocus) - hud_icon_hudfocus = image('icons/mob/hud/marine_hud.dmi', src, "hudfocus") - holder.overlays += hud_icon_hudfocus + if(!GLOB.hud_icon_hudfocus) + GLOB.hud_icon_hudfocus = image('icons/mob/hud/marine_hud.dmi', src, "hudfocus") + holder.overlays += GLOB.hud_icon_hudfocus hud_list[ORDER_HUD] = holder /mob/proc/hud_set_holocard() @@ -763,6 +780,16 @@ var/global/image/hud_icon_hudfocus var/image/holder = hud_list[HOLOCARD_HUD] holder.icon_state = holo_card_color ? "holo_card_[holo_card_color]" : "hudblank" +// Vampire Execute HUD +/mob/living/carbon/human/proc/update_execute_hud() + var/image/execute_holder = hud_list[XENO_EXECUTE] + + execute_holder.icon_state = "hudblank" + execute_holder.overlays.Cut() + + if(stat == UNCONSCIOUS || (stat != DEAD && HAS_TRAIT(src, TRAIT_KNOCKEDOUT))) + execute_holder.overlays += image('icons/mob/hud/hud.dmi', src, "prae_tag") + // Xeno "hostile" HUD /mob/living/carbon/human/proc/update_xeno_hostile_hud() var/image/acid_holder = hud_list[XENO_HOSTILE_ACID] diff --git a/code/datums/modules.dm b/code/datums/modules.dm deleted file mode 100644 index 4dd47497ff..0000000000 --- a/code/datums/modules.dm +++ /dev/null @@ -1,62 +0,0 @@ -// module datum. -// this is per-object instance, and shows the condition of the modules in the object -// actual modules needed is referenced through modulestypes and the object type - -/datum/module - var/status // bits set if working, 0 if broken - var/installed // bits set if installed, 0 if missing - -// moduletypes datum -// this is per-object type, and shows the modules needed for a type of object - -/datum/moduletypes - var/list/modcount = list() // assoc list of the count of modules for a type - - -var/list/modules = list( // global associative list - /obj/structure/machinery/power/apc = "card_reader,power_control,id_auth,cell_power,cell_charge") - - -/datum/module/New(obj/O) - - var/type = O.type // the type of the creating object - - var/mneed = mods.inmodlist(type) // find if this type has modules defined - - if(!mneed) // not found in module list? - qdel(src) // delete self, thus ending proc - - var/needed = mods.getbitmask(type) // get a bitmask for the number of modules in this object - status = needed - installed = needed - -/datum/moduletypes/proc/addmod(type, modtextlist) - modules += type // index by type text - modules[type] = modtextlist - -/datum/moduletypes/proc/inmodlist(type) - return type in modules - -/datum/moduletypes/proc/getbitmask(type) - var/count = modcount[type] - if(count) - return 2**count-1 - - var/modtext = modules[type] - var/num = 1 - var/pos = 1 - - while(1) - pos = findtext(modtext, ",", pos, 0) - if(!pos) - break - else - pos++ - num++ - - modcount += type - modcount[type] = num - - return 2**num-1 - - diff --git a/code/datums/origin/origin.dm b/code/datums/origin/origin.dm index 4bbd8b6505..46027a4994 100644 --- a/code/datums/origin/origin.dm +++ b/code/datums/origin/origin.dm @@ -3,7 +3,7 @@ var/desc = "You were born somewhere, someplace. The area is known for doing things, you think." /datum/origin/proc/generate_human_name(gender = MALE) - return pick(gender == MALE ? first_names_male : first_names_female) + " " + pick(last_names) + return pick(gender == MALE ? GLOB.first_names_male : GLOB.first_names_female) + " " + pick(GLOB.last_names) /// Return null if the name is correct, otherwise return a string containing the error message /datum/origin/proc/validate_name(name_to_check) diff --git a/code/datums/origin/upp.dm b/code/datums/origin/upp.dm index f684410d59..8346657c50 100644 --- a/code/datums/origin/upp.dm +++ b/code/datums/origin/upp.dm @@ -10,16 +10,16 @@ if(prob(40)) first_name = "[capitalize(randomly_generate_chinese_word(1))]" else - first_name = "[pick(first_names_male_upp)]" + first_name = "[pick(GLOB.first_names_male_upp)]" else if(prob(40)) first_name = "[capitalize(randomly_generate_chinese_word(1))]" else - first_name = "[pick(first_names_female_upp)]" + first_name = "[pick(GLOB.first_names_female_upp)]" if(prob(35)) last_name = "[capitalize(randomly_generate_chinese_word(pick(20;1, 80;2)))]" else - last_name = "[pick(last_names_upp)]" + last_name = "[pick(GLOB.last_names_upp)]" return first_name + " " + last_name diff --git a/code/datums/origin/uscm.dm b/code/datums/origin/uscm.dm index 8021ed3fd3..9608537bdf 100644 --- a/code/datums/origin/uscm.dm +++ b/code/datums/origin/uscm.dm @@ -28,7 +28,7 @@ desc = "You were a product of an experimental military programme that sought to breed the perfect supersoldier. In some aspects, they've succeeded." /datum/origin/uscm/aw/generate_human_name(gender = MALE) - return pick(gender == MALE ? first_names_male : first_names_female) + " A.W. " + pick(weapon_surnames) + return pick(gender == MALE ? GLOB.first_names_male : GLOB.first_names_female) + " A.W. " + pick(GLOB.weapon_surnames) /datum/origin/uscm/aw/validate_name(name_to_check) if(!findtext(name_to_check, "A.W. ")) diff --git a/code/datums/pain/_pain.dm b/code/datums/pain/_pain.dm index 42c2760027..6a81e40985 100644 --- a/code/datums/pain/_pain.dm +++ b/code/datums/pain/_pain.dm @@ -82,7 +82,7 @@ if(current_pain - new_pain_reduction > max_pain) return 100 - var/percentage = round(((current_pain - new_pain_reduction) / max_pain) * 100) + var/percentage = floor(((current_pain - new_pain_reduction) / max_pain) * 100) if(percentage < 0) return 0 else @@ -193,7 +193,7 @@ if(!isnull(threshold_horrible)) activate_horrible() - if(new_level >= PAIN_LEVEL_SEVERE) + if(new_level >= PAIN_LEVEL_SEVERE && feels_pain) RegisterSignal(source_mob, COMSIG_MOB_DEVOURED, PROC_REF(handle_devour), override = TRUE) last_level = new_level diff --git a/code/datums/paygrades/factions/civillian/civilian.dm b/code/datums/paygrades/factions/civillian/civilian.dm deleted file mode 100644 index 2c2aa5feac..0000000000 --- a/code/datums/paygrades/factions/civillian/civilian.dm +++ /dev/null @@ -1,30 +0,0 @@ -/datum/paygrade/civilian - name = "Civilian Paygrade" - pay_multiplier = 0.5 // civvies are poor - -/datum/paygrade/civilian/civilian - paygrade = "C" - name = "Civilian" - -/datum/paygrade/civilian/nurse - paygrade = "CN" - name = "Nurse" - prefix = "Nrs." - -/datum/paygrade/civilian/doctor - paygrade = "CD" - name = "Doctor" - prefix = "Dr." - pay_multiplier = 0.75 - -/datum/paygrade/civilian/professor - paygrade = "CCMO" - name = "Professor" - prefix = "Prof." - pay_multiplier = 1 - -/datum/paygrade/civillian/representative - paygrade = "CR" - name = "Representative" - prefix = "Rep." - pay_multiplier = 1 diff --git a/code/datums/paygrades/factions/other/civilian.dm b/code/datums/paygrades/factions/other/civilian.dm new file mode 100644 index 0000000000..95213542f3 --- /dev/null +++ b/code/datums/paygrades/factions/other/civilian.dm @@ -0,0 +1,55 @@ +/datum/paygrade/civilian + name = "Civilian Paygrade" + pay_multiplier = 0.5 // civvies are poor + +/datum/paygrade/civilian/civilian + paygrade = PAY_SHORT_CIV + name = "Civilian" + prefix = "C" + +/datum/paygrade/civilian/nurse + paygrade = PAY_SHORT_CNUR + name = "Nurse" + prefix = "Nrs." + +/datum/paygrade/civilian/doctor + paygrade = PAY_SHORT_CDOC + name = "Doctor" + prefix = "Dr." + pay_multiplier = 0.75 + +/datum/paygrade/civilian/professor + paygrade = PAY_SHORT_CCMO + name = "Professor" + prefix = "Prof." + pay_multiplier = 1 + officer_grade = GRADE_OFFICER + +/datum/paygrade/civillian/representative + paygrade = PAY_SHORT_CREP + name = "Representative" + prefix = "Rep." + pay_multiplier = 1 + +/datum/paygrade/civillian/officer + paygrade = PAY_SHORT_CPO + name = "Officer" + prefix = "Off." + pay_multiplier = 0.66 + +/datum/paygrade/civillian/officer/senior + paygrade = PAY_SHORT_CSPO + name = "Senior Officer" + prefix = "Sr. Off." + pay_multiplier = 0.8 + officer_grade = GRADE_OFFICER + +/datum/paygrade/civilian/rebel + paygrade = PAY_SHORT_REB + name = "Rebel" + +/datum/paygrade/civilian/rebel/leader + paygrade = PAY_SHORT_REBC + name = "Rebel Commander" + prefix = "CMDR." + officer_grade = GRADE_OFFICER diff --git a/code/datums/paygrades/factions/other/cmb.dm b/code/datums/paygrades/factions/other/cmb.dm index a4b656d869..88af3f9ef7 100644 --- a/code/datums/paygrades/factions/other/cmb.dm +++ b/code/datums/paygrades/factions/other/cmb.dm @@ -3,78 +3,30 @@ pay_multiplier = 1.4 // Government work. Nice benefits. /datum/paygrade/cmb/standard - paygrade = "GS-9" + paygrade = PAY_SHORT_CMBD name = "CMB Deputy" prefix = "Dep." /datum/paygrade/cmb/leader - paygrade = "GS-13" + paygrade = PAY_SHORT_CMBM name = "CMB Marshal" prefix = "Marshal" + officer_grade = GRADE_OFFICER /datum/paygrade/cmb/syn - paygrade = "GS-C.9" + paygrade = PAY_SHORT_CMBS name = "CMB Investigative Synthetic" -/datum/paygrade/cmb/liaison - paygrade = "GS-6" +/datum/paygrade/cmb/icc + paygrade = PAY_SHORT_ICCA + name = "Interstellar Commerce Commission Agent" + prefix = "Agent" + +/datum/paygrade/cmb/icc/liaison + paygrade = PAY_SHORT_ICCL name = "Interstellar Commerce Commission Corporate Liaison" prefix = "Exec." /datum/paygrade/cmb/observer - paygrade = "GS-3" + paygrade = PAY_SHORT_IHRO name = "Interstellar Human Rights Observer" -/datum/paygrade/marine - name = "Marine Paygrade" - rank_pin = /obj/item/clothing/accessory/ranks/marine - pay_multiplier = 1 - -// ENLISTED PAYGRADES - -/datum/paygrade/marine/e1 - paygrade = "ME1" - name = "Private" - prefix = "PVT" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e1 - ranking = 0 - pay_multiplier = 0.8 - -/datum/paygrade/marine/e2 - paygrade = "ME2" - name = "Private First Class" - prefix = "PFC" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e2 - ranking = 1 - pay_multiplier = 1 // the default. - -/datum/paygrade/marine/e3 - paygrade = "ME3" - name = "Lance Corporal" - prefix = "LCpl" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e3 - ranking = 2 - pay_multiplier = 1.4 - -/datum/paygrade/marine/e4 - paygrade = "ME4" - name = "Corporal" - prefix = "Cpl" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e4 - ranking = 3 - pay_multiplier = 1.6 - -/datum/paygrade/marine/e5 - paygrade = "ME5" - name = "Sergeant" - prefix = "Sgt" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e5 - ranking = 4 - pay_multiplier = 1.8 - -/datum/paygrade/marine/e6 - paygrade = "ME6" - name = "Staff Sergeant" - prefix = "SSgt" - rank_pin = /obj/item/clothing/accessory/ranks/marine/e6 - ranking = 5 - pay_multiplier = 2 diff --git a/code/datums/paygrades/factions/other/contractors.dm b/code/datums/paygrades/factions/other/contractors.dm index c83a5cb108..a63e46bb47 100644 --- a/code/datums/paygrades/factions/other/contractors.dm +++ b/code/datums/paygrades/factions/other/contractors.dm @@ -1,38 +1,39 @@ /datum/paygrade/contractors name = "Contractor Paygrade" + fprefix = "VAI" pay_multiplier = 1.5 /datum/paygrade/contractors/standard - paygrade = "VAI" + paygrade = PAY_SHORT_VAI_S name = "VAI Mercenary" - prefix = "VAI" + prefix = "Merc." /datum/paygrade/contractors/med - paygrade = "VAI-M" + paygrade = PAY_SHORT_VAI_M name = "VAI Medical Specialist" - prefix = "VAI MED" + prefix = "Med." pay_multiplier = 1.75 /datum/paygrade/contractors/mg - paygrade = "VAI-G" + paygrade = PAY_SHORT_VAI_G name = "VAI Machinegunner" - prefix = "VAI MG" + prefix = "MG." pay_multiplier = 1.75 /datum/paygrade/contractors/engi - paygrade = "VAI-E" + paygrade = PAY_SHORT_VAI_E name = "VAI Engineering Specialist" - prefix = "VAI ENG" + prefix = "Eng." pay_multiplier = 1.75 /datum/paygrade/contractors/syn - paygrade = "VAI-S" + paygrade = PAY_SHORT_VAI_SN name = "VAI Synthetic" - prefix = "VAI Syn" pay_multiplier = 0 /datum/paygrade/contractors/lead - paygrade = "VAI-L" + paygrade = PAY_SHORT_VAI_L name = "VAI Team Leader" - prefix = "VAI TL" + prefix = "TL." pay_multiplier = 2.25 + officer_grade = GRADE_OFFICER diff --git a/code/datums/paygrades/factions/other/dutch_dozen.dm b/code/datums/paygrades/factions/other/dutch_dozen.dm index 9b8bd7e4f8..2927d6b80d 100644 --- a/code/datums/paygrades/factions/other/dutch_dozen.dm +++ b/code/datums/paygrades/factions/other/dutch_dozen.dm @@ -1,33 +1,34 @@ /datum/paygrade/dutch name = "Dutch Paygrade" pay_multiplier = 5 + fprefix = "DTC." /datum/paygrade/dutch/standard - paygrade = "DTC" + paygrade = PAY_SHORT_DTC name = "Dutch's Dozen Standard Mercenary" - prefix = "DTC." /datum/paygrade/dutch/medic - paygrade = "DTCM" + paygrade = PAY_SHORT_DTCM name = "Dutch's Dozen Medic" - prefix = "DTC MED." + prefix = "MED." pay_multiplier = 6 /datum/paygrade/dutch/specialist_flamer - paygrade = "DTCF" + paygrade = PAY_SHORT_DTCF name = "Dutch's Dozen Flamethrower Specialist" - prefix = "DTC SPC." + prefix = "SPC." pay_multiplier = 6 /datum/paygrade/dutch/specialist_minigunner - paygrade = "DTCMG" - name = "Dutch's Dozen Medic" - prefix = "DTC SPC." + paygrade = PAY_SHORT_DTCMG + name = "Dutch's Dozen Machinegunner" + prefix = "SPC." pay_multiplier = 6 /datum/paygrade/dutch/arnold - paygrade = "ARN" - name = "Arnold" - prefix = "DTC LDR." + paygrade = PAY_SHORT_DTCA + name = "Major" + prefix = "LDR." pay_multiplier = 9 + officer_grade = GRADE_OFFICER diff --git a/code/datums/paygrades/factions/other/freelancer.dm b/code/datums/paygrades/factions/other/freelancer.dm index 6de82b5bb3..2d7db7b0e0 100644 --- a/code/datums/paygrades/factions/other/freelancer.dm +++ b/code/datums/paygrades/factions/other/freelancer.dm @@ -1,49 +1,53 @@ /datum/paygrade/freelancer name = "Freelancer Paygrade" + fprefix = "Frl." pay_multiplier = 0.75 //these are shitty mercs. /datum/paygrade/freelancer/standard - paygrade = "Freelancer Standard" - name = "Freelancer Standard" + name = "Freelancer" + paygrade = PAY_SHORT_FL_S prefix = "Merc." /datum/paygrade/freelancer/medic - paygrade = "Freelancer Medic" name = "Freelancer Medic" + paygrade = PAY_SHORT_FL_M prefix = "Med." /datum/paygrade/freelancer/leader - paygrade = "Freelancer Leader" name = "Freelancer Leader" + paygrade = PAY_SHORT_FL_WL prefix = "Warlord" pay_multiplier = 1 + officer_grade = GRADE_OFFICER /datum/paygrade/freelancer/elite name = "Elite Freelancer Paygrade" + fprefix = "Elt." pay_multiplier = 1.25 /datum/paygrade/freelancer/elite/standard - paygrade = "Elite Freelancer Standard" - name = "Elite Freelancer Standard" - prefix = "MRC." + name = "Elite Freelancer" + paygrade = PAY_SHORT_EFL_S + prefix = "Merc." /datum/paygrade/freelancer/elite/heavy - paygrade = "Elite Freelancer Heavy" name = "Elite Freelancer Heavy" - prefix = "HVY." + paygrade = PAY_SHORT_EFL_H + prefix = "Hvy." /datum/paygrade/freelancer/elite/engineer - paygrade = "Elite Freelancer Engineer" name = "Elite Freelancer Engineer" - prefix = "ENGI." + paygrade = PAY_SHORT_EFL_E + prefix = "Eng." /datum/paygrade/freelancer/elite/medic - paygrade = "Elite Freelancer Medic" name = "Elite Freelancer Medic" - prefix = "MED." + paygrade = PAY_SHORT_EFL_M + prefix = "Med." /datum/paygrade/freelancer/elite/leader - paygrade = "Elite Freelancer Leader" name = "Elite Freelancer Leader" + paygrade = PAY_SHORT_EFL_TL prefix = "Warlord" pay_multiplier = 1.5 + officer_grade = GRADE_OFFICER diff --git a/code/datums/paygrades/factions/other/misc.dm b/code/datums/paygrades/factions/other/misc.dm index 30865228d3..cc07e97b94 100644 --- a/code/datums/paygrades/factions/other/misc.dm +++ b/code/datums/paygrades/factions/other/misc.dm @@ -1,9 +1,15 @@ -/datum/paygrade/misc/operator +/datum/paygrade/misc/operative + name = "Operator" + prefix = "OPR." + paygrade = PAY_SHORT_OPR + pay_multiplier = 1 //???? + +/datum/paygrade/misc/codenamed name = "Operative" - paygrade = "O" + paygrade = PAY_SHORT_CDNM pay_multiplier = 1 //???? /datum/paygrade/misc/synth name = "Synthetic" - paygrade = "SYN" + paygrade = PAY_SHORT_SYN pay_multiplier = 1 diff --git a/code/datums/paygrades/factions/twe/twe.dm b/code/datums/paygrades/factions/twe/twe.dm index 9707e89e61..582030f9f8 100644 --- a/code/datums/paygrades/factions/twe/twe.dm +++ b/code/datums/paygrades/factions/twe/twe.dm @@ -1,85 +1,86 @@ /datum/paygrade/twe name = "TWE Paygrade" pay_multiplier = 2 // less people = more to pay them + default_faction = FACTION_TWE //RMC Emlisted /datum/paygrade/twe/e1 - paygrade = "RMC E1" + paygrade = PAY_SHORT_RMC1 name = "Heitai-Marine" prefix = "Hti-Mne." /datum/paygrade/twe/e2 - paygrade = "RMC E2" + paygrade = PAY_SHORT_RMC2 name = "Santo-Lance Corporal" prefix = "St-LCpl." pay_multiplier = 2.1 /datum/paygrade/twe/e3 - paygrade = "RMC E3" + paygrade = PAY_SHORT_RMC3 name = "Nito-Corporal" prefix = "Nt-Cpl." pay_multiplier = 2.2 /datum/paygrade/twe/e4 - paygrade = "RMC E4" + paygrade = PAY_SHORT_RMC4 name = "Itto-Sergeant" prefix = "Sgt." pay_multiplier = 2.3 -//RMC Officer - -/datum/paygrade/twe/o1/rmc - paygrade = "RMC O1" - name = "Second Lieutenant" - prefix = "2nd LT." - pay_multiplier = 3 - //TWE Warrent Officer /datum/paygrade/twe/wo1 - paygrade = "TWE WO." + paygrade = PAY_SHORT_RNOW name = "Warrant Officer" prefix = "WO." pay_multiplier = 3.5 + officer_grade = GRADE_OFFICER //TWE Naval Officers /datum/paygrade/twe/o1 - paygrade = "TWE O1" + paygrade = PAY_SHORT_RNO1 name = "Second Lieutenant" prefix = "2nd LT" pay_multiplier = 3 + officer_grade = GRADE_OFFICER /datum/paygrade/twe/o2 - paygrade = "RMC O2" + paygrade = PAY_SHORT_RNO2 name = "First Lieutenant" prefix = "1st LT" pay_multiplier = 3.25 + officer_grade = GRADE_OFFICER /datum/paygrade/twe/o3 - paygrade = "TO3" - name = "Standing Officer" - prefix = "SO." + paygrade = PAY_SHORT_RNO3 + name = "Commander" + prefix = "Cdr." pay_multiplier = 3.5 + officer_grade = GRADE_OFFICER /datum/paygrade/twe/o4 - paygrade = "TO4" + paygrade = PAY_SHORT_RNO4 name = "Captain" prefix = "Cpt." pay_multiplier = 5 + officer_grade = GRADE_OFFICER /datum/paygrade/twe/o5 - paygrade = "TO5" + paygrade = PAY_SHORT_RNO5 name = "Admiral" - prefix = "ADM." + prefix = "Adm." pay_multiplier = 7 + officer_grade = GRADE_FLAG /datum/paygrade/twe/o6 - paygrade = "TO6" + paygrade = PAY_SHORT_RNO6 name = "Grand Admiral" - prefix = "GADM." + prefix = "GAdm." pay_multiplier = 9 + officer_grade = GRADE_FLAG /datum/paygrade/twe/o7 - paygrade = "TO7" + paygrade = PAY_SHORT_EMP name = "Emperor" - prefix = "ER." + prefix = "HRH." pay_multiplier = 1000 + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/upp/upp.dm b/code/datums/paygrades/factions/upp/upp.dm index a7eecb922f..398a5f834b 100644 --- a/code/datums/paygrades/factions/upp/upp.dm +++ b/code/datums/paygrades/factions/upp/upp.dm @@ -1,46 +1,47 @@ /datum/paygrade/upp name = "UPP Paygrade" pay_multiplier = 0.1 //lol. lmao + default_faction = FACTION_UPP //UPP Enlisted /datum/paygrade/upp/ue0 - paygrade = "UE0" + paygrade = PAY_SHORT_UEC name = "Conscript" pay_multiplier = 0.05 prefix = "Cnscr." /datum/paygrade/upp/ue1 - paygrade = "UE1" + paygrade = PAY_SHORT_UE1 name = "Private" prefix = "PVT." /datum/paygrade/upp/ue2 - paygrade = "UE2" + paygrade = PAY_SHORT_UE2 name = "Efreitor" prefix = "Efr." pay_multiplier = 0.2 /datum/paygrade/upp/ue3 - paygrade = "UE3" + paygrade = PAY_SHORT_UE3 name = "Korporal" prefix = "Kpl." pay_multiplier = 0.3 /datum/paygrade/upp/ue4 - paygrade = "UE4" + paygrade = PAY_SHORT_UE4 name = "Junior Serzhant" prefix = "JrSzh." pay_multiplier = 0.5 /datum/paygrade/upp/ue5 - paygrade = "UE5" + paygrade = PAY_SHORT_UE5 name = "Serzhant" prefix = "Szh." pay_multiplier = 0.7 /datum/paygrade/upp/ue6 - paygrade = "UE6" + paygrade = PAY_SHORT_UE6 name = "Master Serzhant" prefix = "MSzh." pay_multiplier = 0.9 @@ -53,74 +54,92 @@ //UPP Commandos /datum/paygrade/upp/uc1 - paygrade = "UC1" + paygrade = PAY_SHORT_UC1 name = "Junior Kommando" prefix = "JKdo." pay_multiplier = 1.5 /datum/paygrade/upp/uc2 - paygrade = "UC2" + paygrade = PAY_SHORT_UC2 name = "2nd Kommando" prefix = "2ndKdo." pay_multiplier = 2 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uc3 - paygrade = "UC3" + paygrade = PAY_SHORT_UC3 name = "1st Kommando" prefix = "1stKdo." pay_multiplier = 2.5 + officer_grade = GRADE_OFFICER //UPP Officers /datum/paygrade/upp/uo1 - paygrade = "UO1" + paygrade = PAY_SHORT_UO1 name = "Leytenant" prefix = "Lt." pay_multiplier = 1.25 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo2 - paygrade = "UO2" + paygrade = PAY_SHORT_UO2 name = "Senior Leytenant" prefix = "Sr. LT." pay_multiplier = 1.5 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo3 - paygrade = "UO3" + paygrade = PAY_SHORT_UO3 name = "Kapitan" prefix = "Kpt." pay_multiplier = 2 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo4 - paygrade = "UO4" - name = "Mayjor." + paygrade = PAY_SHORT_UO4 + name = "Mayjor" prefix = "May." pay_multiplier = 2.5 + officer_grade = GRADE_OFFICER + +/datum/paygrade/upp/uo4p + paygrade = PAY_SHORT_UO4P + name = "Political Commissar" + prefix = "Pol." + pay_multiplier = 5 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo5 - paygrade = "UO5" + paygrade = PAY_SHORT_UO5 name = "Leytenant Kolonel" prefix = "Lt. Kol." pay_multiplier = 3 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo6 - paygrade = "UO6" + paygrade = PAY_SHORT_UO6 name = "Kolonel" prefix = "Kol." pay_multiplier = 4 + officer_grade = GRADE_OFFICER /datum/paygrade/upp/uo7 - paygrade = "UO7" + paygrade = PAY_SHORT_UO7 name = "Mayjor General" prefix = "May. Gen." pay_multiplier = 5 + officer_grade = GRADE_FLAG /datum/paygrade/upp/uo8 - paygrade = "UO8" + paygrade = PAY_SHORT_UO8 name = "Leytenant General" prefix = "Lt. Gen." pay_multiplier = 6 + officer_grade = GRADE_FLAG /datum/paygrade/upp/uo9 - paygrade = "UO9" + paygrade = PAY_SHORT_UO9 name = "Army General" prefix = "Gen." pay_multiplier = 7 + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/uscm/marine.dm b/code/datums/paygrades/factions/uscm/marine.dm index e351311e65..6a1446dd6b 100644 --- a/code/datums/paygrades/factions/uscm/marine.dm +++ b/code/datums/paygrades/factions/uscm/marine.dm @@ -2,11 +2,12 @@ name = "Marine Paygrade" rank_pin = /obj/item/clothing/accessory/ranks/marine pay_multiplier = 1.6 + default_faction = FACTION_MARINE // ENLISTED PAYGRADES /datum/paygrade/marine/e1 - paygrade = "ME1" + paygrade = PAY_SHORT_ME1 name = "Private" prefix = "PVT" rank_pin = /obj/item/clothing/accessory/ranks/marine/e1 @@ -14,7 +15,7 @@ pay_multiplier = 1.6 /datum/paygrade/marine/e2 - paygrade = "ME2" + paygrade = PAY_SHORT_ME2 name = "Private First Class" prefix = "PFC" rank_pin = /obj/item/clothing/accessory/ranks/marine/e2 @@ -22,7 +23,7 @@ pay_multiplier = 1.7 /datum/paygrade/marine/e3 - paygrade = "ME3" + paygrade = PAY_SHORT_ME3 name = "Lance Corporal" prefix = "LCpl" rank_pin = /obj/item/clothing/accessory/ranks/marine/e3 @@ -30,7 +31,7 @@ pay_multiplier = 1.9 /datum/paygrade/marine/e4 - paygrade = "ME4" + paygrade = PAY_SHORT_ME4 name = "Corporal" prefix = "Cpl" rank_pin = /obj/item/clothing/accessory/ranks/marine/e4 @@ -38,7 +39,7 @@ pay_multiplier = 2.1 /datum/paygrade/marine/e5 - paygrade = "ME5" + paygrade = PAY_SHORT_ME5 name = "Sergeant" prefix = "Sgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e5 @@ -46,7 +47,7 @@ pay_multiplier = 2.2 /datum/paygrade/marine/e6 - paygrade = "ME6" + paygrade = PAY_SHORT_ME6 name = "Staff Sergeant" prefix = "SSgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e6 @@ -54,7 +55,7 @@ pay_multiplier = 2.4 /datum/paygrade/marine/e7 - paygrade = "ME7" + paygrade = PAY_SHORT_ME7 name = "Gunnery Sergeant" prefix = "GySgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e7 @@ -62,7 +63,7 @@ pay_multiplier = 2.75 /datum/paygrade/marine/e8 - paygrade = "ME8" + paygrade = PAY_SHORT_ME8 name = "Master Sergeant" prefix = "MSgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e8 @@ -70,7 +71,7 @@ pay_multiplier = 2.75 /datum/paygrade/marine/e8e - paygrade = "ME8E" + paygrade = PAY_SHORT_ME8E name = "First Sergeant" prefix = "1Sgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e8e @@ -78,7 +79,7 @@ pay_multiplier = 2.75 /datum/paygrade/marine/e9 - paygrade = "ME9" + paygrade = PAY_SHORT_ME9 name = "Master Gunnery Sergeant" prefix = "MGySgt" rank_pin = /obj/item/clothing/accessory/ranks/marine/e9 @@ -86,7 +87,7 @@ pay_multiplier = 3 /datum/paygrade/marine/e9e - paygrade = "ME9E" + paygrade = PAY_SHORT_ME9E name = "Sergeant Major" prefix = "SgtMaj" rank_pin = /obj/item/clothing/accessory/ranks/marine/e9e @@ -94,7 +95,7 @@ pay_multiplier = 3 /datum/paygrade/marine/e9c - paygrade = "ME9C" + paygrade = PAY_SHORT_ME9C name = "Sergeant Major of the Colonial Marine Corps" prefix = "SMCMC" rank_pin = /obj/item/clothing/accessory/ranks/marine/e9c @@ -104,115 +105,129 @@ // COMMISSIONED PAYGRADES /datum/paygrade/marine/o1 - paygrade = "MO1" + paygrade = PAY_SHORT_MO1 name = "Second Lieutenant" prefix = "2ndLt" rank_pin = /obj/item/clothing/accessory/ranks/marine/o1 ranking = 12 pay_multiplier = 3 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o2 - paygrade = "MO2" + paygrade = PAY_SHORT_MO2 name = "First Lieutenant" prefix = "1stLt" rank_pin = /obj/item/clothing/accessory/ranks/marine/o2 ranking = 13 pay_multiplier = 3.2 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o3 - paygrade = "MO3" + paygrade = PAY_SHORT_MO3 name = "Captain" prefix = "Capt" rank_pin = /obj/item/clothing/accessory/ranks/marine/o3 ranking = 14 pay_multiplier = 4 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o4 - paygrade = "MO4" + paygrade = PAY_SHORT_MO4 name = "Major" prefix = "Maj" rank_pin = /obj/item/clothing/accessory/ranks/marine/o4 ranking = 15 pay_multiplier = 4 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o5 - paygrade = "MO5" + paygrade = PAY_SHORT_MO5 name = "Lieutenant Colonel" prefix = "LtCol" rank_pin = /obj/item/clothing/accessory/ranks/marine/o5 ranking = 16 pay_multiplier = 4.2 + officer_grade = GRADE_OFFICER //Platoon Commander /datum/paygrade/marine/o6 - paygrade = "MO6" + paygrade = PAY_SHORT_MO6 name = "Colonel" prefix = "Col" rank_pin = /obj/item/clothing/accessory/ranks/marine/o6 ranking = 17 pay_multiplier = 4.4 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o6e - paygrade = "MO6E" + paygrade = PAY_SHORT_MO6E name = "Senior Colonel" prefix = "Snr Col." rank_pin = /obj/item/clothing/accessory/ranks/marine/o6e ranking = 18 pay_multiplier = 4.6 + officer_grade = GRADE_OFFICER /datum/paygrade/marine/o6c - paygrade = "MO6C" + paygrade = PAY_SHORT_MO6C name = "Division Colonel" prefix = "Div Col." rank_pin = /obj/item/clothing/accessory/ranks/marine/o6c ranking = 19 pay_multiplier = 4.8 + officer_grade = GRADE_OFFICER //High Command /datum/paygrade/marine/o7 - paygrade = "MO7" + paygrade = PAY_SHORT_MO7 name = "Brigadier General" prefix = "BGen" rank_pin = /obj/item/clothing/accessory/ranks/marine/o7 ranking = 20 pay_multiplier = 6 + officer_grade = GRADE_FLAG /datum/paygrade/marine/o8 - paygrade = "MO8" + paygrade = PAY_SHORT_MO8 name = "Major General" prefix = "MajGen" rank_pin = /obj/item/clothing/accessory/ranks/marine/o8 ranking = 21 pay_multiplier = 6.2 + officer_grade = GRADE_FLAG /datum/paygrade/marine/o9 - paygrade = "MO9" + paygrade = PAY_SHORT_MO9 name = "Lieutenant General" prefix = "LtGen" rank_pin = /obj/item/clothing/accessory/ranks/marine/o9 ranking = 22 pay_multiplier = 6.4 + officer_grade = GRADE_FLAG /datum/paygrade/marine/o10 - paygrade = "MO10" + paygrade = PAY_SHORT_MO10 name = "General" prefix = "Gen" rank_pin = /obj/item/clothing/accessory/ranks/marine/o10 ranking = 23 pay_multiplier = 6.6 + officer_grade = GRADE_FLAG /datum/paygrade/marine/o10c - paygrade = "MO10C" + paygrade = PAY_SHORT_MO10C name = "Assistant Commandant of the Marine Corps" prefix = "ACMC" rank_pin = /obj/item/clothing/accessory/ranks/marine/o10c ranking = 24 pay_multiplier = 6.8 + officer_grade = GRADE_FLAG /datum/paygrade/marine/o10s - paygrade = "MO10S" + paygrade = PAY_SHORT_MO10S name = "Commandant of the Marine Corps" prefix = "CMC" rank_pin = /obj/item/clothing/accessory/ranks/marine/o10c ranking = 25 pay_multiplier = 7 + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/uscm/navy.dm b/code/datums/paygrades/factions/uscm/navy.dm index 7e648a75ba..69fb63676b 100644 --- a/code/datums/paygrades/factions/uscm/navy.dm +++ b/code/datums/paygrades/factions/uscm/navy.dm @@ -1,82 +1,83 @@ /datum/paygrade/navy name = "Navy Paygrade" rank_pin = /obj/item/clothing/accessory/ranks/navy + default_faction = FACTION_MARINE //someone else can do the multipliers for this one // ENLISTED PAYGRADES /datum/paygrade/navy/e1 - paygrade = "NE1" + paygrade = PAY_SHORT_NE1 name = "Seaman Recruit" prefix = "SR." rank_pin = /obj/item/clothing/accessory/ranks/navy/e1 ranking = 0 /datum/paygrade/navy/e2 - paygrade = "NE2" + paygrade = PAY_SHORT_NE2 name = "Seaman Apprentice" prefix = "SA." rank_pin = /obj/item/clothing/accessory/ranks/navy/e2 ranking = 1 /datum/paygrade/navy/e3 - paygrade = "NE3" + paygrade = PAY_SHORT_NE3 name = "Seaman" prefix = "SN." rank_pin = /obj/item/clothing/accessory/ranks/navy/e3 ranking = 2 /datum/paygrade/navy/e4 - paygrade = "NE4" + paygrade = PAY_SHORT_NE4 name = "Petty Officer 3rd Class" prefix = "PO1." rank_pin = /obj/item/clothing/accessory/ranks/navy/e4 ranking = 3 /datum/paygrade/navy/e5 - paygrade = "NE5" + paygrade = PAY_SHORT_NE5 name = "Petty Officer 2nd Class" prefix = "PO2." rank_pin = /obj/item/clothing/accessory/ranks/navy/e5 ranking = 4 /datum/paygrade/navy/e6 - paygrade = "NE6" + paygrade = PAY_SHORT_NE6 name = "Petty Officer 1st Class" prefix = "PO1." rank_pin = /obj/item/clothing/accessory/ranks/navy/e6 ranking = 5 /datum/paygrade/navy/e7 - paygrade = "NE7" + paygrade = PAY_SHORT_NE7 name = "Chief Petty Officer" prefix = "CPO." rank_pin = /obj/item/clothing/accessory/ranks/navy/e7 ranking = 6 /datum/paygrade/navy/e8 - paygrade = "NE8" + paygrade = PAY_SHORT_NE8 name = "Senior Chief Petty Officer" prefix = "SCPO." rank_pin = /obj/item/clothing/accessory/ranks/navy/e8 ranking = 7 /datum/paygrade/navy/e8c - paygrade = "NE8C" + paygrade = PAY_SHORT_NE8C name = "Command Senior Chief Petty Officer" prefix = "CSCPO." rank_pin = /obj/item/clothing/accessory/ranks/navy/e8c ranking = 8 /datum/paygrade/navy/e9 - paygrade = "NE9" + paygrade = PAY_SHORT_NE9 name = "Master Chief Petty Officer" prefix = "MCPO." rank_pin = /obj/item/clothing/accessory/ranks/navy/e9 ranking = 9 /datum/paygrade/navy/e9c - paygrade = "NE9C" + paygrade = PAY_SHORT_NE9C name = "Command Master Chief Petty Officer" prefix = "CMCPO." rank_pin = /obj/item/clothing/accessory/ranks/navy/e9c @@ -85,92 +86,105 @@ // COMMISSIONED PAYGRADES /datum/paygrade/navy/o1 - paygrade = "NO1" + paygrade = PAY_SHORT_NO1 name = "Ensign" prefix = "ENS." rank_pin = /obj/item/clothing/accessory/ranks/navy/o1 ranking = 11 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o2 - paygrade = "NO2" + paygrade = PAY_SHORT_NO2 name = "Lieutenant Junior Grade" prefix = "LTJG." rank_pin = /obj/item/clothing/accessory/ranks/navy/o2 ranking = 12 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o3 - paygrade = "NO3" + paygrade = PAY_SHORT_NO3 name = "Lieutenant" prefix = "LT." rank_pin = /obj/item/clothing/accessory/ranks/navy/o3 ranking = 13 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o4 - paygrade = "NO4" + paygrade = PAY_SHORT_NO4 name = "Lieutenant Commander" prefix = "LCDR." rank_pin = /obj/item/clothing/accessory/ranks/navy/o4 ranking = 14 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o5 - paygrade = "NO5" + paygrade = PAY_SHORT_NO5 name = "Commander" prefix = "CDR." rank_pin = /obj/item/clothing/accessory/ranks/navy/o5 ranking = 15 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o6 - paygrade = "NO6" + paygrade = PAY_SHORT_NO6 name = "Captain" prefix = "CAPT." rank_pin = /obj/item/clothing/accessory/ranks/navy/o6 ranking = 16 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o6e - paygrade = "NO6E" + paygrade = PAY_SHORT_NO6E name = "Commodore" prefix = "CDRE." rank_pin = /obj/item/clothing/accessory/ranks/navy/o6e ranking = 17 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o6c - paygrade = "NO6C" + paygrade = PAY_SHORT_NO6C name = "Senior Commodore" prefix = "Snr CDRE." rank_pin = /obj/item/clothing/accessory/ranks/navy/o6e ranking = 18 + officer_grade = GRADE_OFFICER /datum/paygrade/navy/o7 - paygrade = "NO7" + paygrade = PAY_SHORT_NO7 name = "Rear Admiral (Lower Half)" prefix = "RDML." rank_pin = /obj/item/clothing/accessory/ranks/navy/o7 ranking = 19 + officer_grade = GRADE_FLAG /datum/paygrade/navy/o8 - paygrade = "NO8" + paygrade = PAY_SHORT_NO8 name = "Rear Admiral (Upper Half)" prefix = "RADM." rank_pin = /obj/item/clothing/accessory/ranks/navy/o8 ranking = 20 + officer_grade = GRADE_FLAG /datum/paygrade/navy/o9 - paygrade = "NO9" + paygrade = PAY_SHORT_NO9 name = "Vice Admiral" prefix = "VADM." rank_pin = /obj/item/clothing/accessory/ranks/navy/o9 ranking = 21 + officer_grade = GRADE_FLAG /datum/paygrade/navy/o10 - paygrade = "NO10" + paygrade = PAY_SHORT_NO10 name = "Admiral" prefix = "ADM." rank_pin = /obj/item/clothing/accessory/ranks/navy/o10 ranking = 22 + officer_grade = GRADE_FLAG /datum/paygrade/navy/o10c - paygrade = "NO10C" + paygrade = PAY_SHORT_NO10C name = "Chief of Naval Operations" prefix = "CNO." rank_pin = /obj/item/clothing/accessory/ranks/navy/o10c ranking = 23 + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/uscm/provost.dm b/code/datums/paygrades/factions/uscm/provost.dm index b27c8f7f72..a89e3b7fa5 100644 --- a/code/datums/paygrades/factions/uscm/provost.dm +++ b/code/datums/paygrades/factions/uscm/provost.dm @@ -1,45 +1,42 @@ /datum/paygrade/provost name = "Provost Paygrade" pay_multiplier = 2 - -/datum/paygrade/provost/officer - paygrade = "PvE7" - name = "Chief Petty Officer" - prefix = "CPO." - rank_pin = /obj/item/clothing/accessory/ranks/navy/e7/pvst - -/datum/paygrade/provost/enforcer - paygrade = "PvE8" - name = "Senior Chief Petty Officer" - prefix = "SCPO." - rank_pin = /obj/item/clothing/accessory/ranks/navy/e8/pvst - -/datum/paygrade/provost/tml - paygrade = "PvE9" - name = "Master Chief Petty Officer" - prefix = "MCPO." - rank_pin = /obj/item/clothing/accessory/ranks/navy/e9/pvst + default_faction = FACTION_MARINE /datum/paygrade/provost/inspector - paygrade = "PvI" - name = "Inspector" + paygrade = PAY_SHORT_PVI + name = "Provost Inspector" prefix = "Insp." rank_pin = /obj/item/clothing/accessory/ranks/special/insp + officer_grade = GRADE_FLAG //Not really a flag officer, but they have special access to things for their job. + +/datum/paygrade/provost/inspector/chief + paygrade = PAY_SHORT_PVCI + name = "Provost Chief Inspector" + prefix = "Chief Insp." + rank_pin = /obj/item/clothing/accessory/ranks/special/insp + officer_grade = GRADE_FLAG //Not really a flag officer, but they have special access to things for their job. + +/datum/paygrade/provost/marshal/deputy + paygrade = PAY_SHORT_PVDM + name = "Provost Deputy Marshal" + prefix = "Dep. Marshal" + officer_grade = GRADE_FLAG /datum/paygrade/provost/marshal - paygrade = "PvO8" - name = "Rear Admiral" - prefix = "RADM." - rank_pin = /obj/item/clothing/accessory/ranks/navy/o8/pvst + paygrade = PAY_SHORT_PVM + name = "Provost Marshal" + prefix = "Marshal" + officer_grade = GRADE_FLAG /datum/paygrade/provost/sectormarshal - paygrade = "PvO9" - name = "Vice Admiral" - prefix = "VADM." - rank_pin = /obj/item/clothing/accessory/ranks/navy/o9/pvst + paygrade = PAY_SHORT_PVSM + name = "Provost Sector Marshal" + prefix = "S. Marshal" + officer_grade = GRADE_FLAG /datum/paygrade/provost/chiefmarshal - paygrade = "PvCM" + paygrade = PAY_SHORT_PVCM name = "Provost Chief Marshal" - prefix = "PCM." - rank_pin = /obj/item/clothing/accessory/ranks/navy/o10c/pvst + prefix = "Chief Marshal" + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/wy/goons.dm b/code/datums/paygrades/factions/wy/goons.dm deleted file mode 100644 index 679bb42e7f..0000000000 --- a/code/datums/paygrades/factions/wy/goons.dm +++ /dev/null @@ -1,15 +0,0 @@ -/datum/paygrade/goon - name = "WY Goon Paygrade" - pay_multiplier = 0.66 // better than colonists. barely. - -//Standard PMCs -/datum/paygrade/goon/standard - paygrade = "WEY-GOON" - name = "Officer" - prefix = "Off." - -/datum/paygrade/goon/lead - paygrade = "WEY-GOON-L" - name = "Senior Officer" - prefix = "Sr. Off." - pay_multiplier = 0.8 diff --git a/code/datums/paygrades/factions/wy/pmc.dm b/code/datums/paygrades/factions/wy/pmc.dm index fc8e55f5ee..b6acf28645 100644 --- a/code/datums/paygrades/factions/wy/pmc.dm +++ b/code/datums/paygrades/factions/wy/pmc.dm @@ -2,96 +2,106 @@ name = "PMC Paygrade" fprefix = "PMC." pay_multiplier = 2.5 // they have money. but they sold their soul to the company. is it really worth it + default_faction = FACTION_PMC //Standard PMCs /datum/paygrade/pmc/standard - paygrade = "PMC-OP" + paygrade = PAY_SHORT_PMC_OP name = "Operator" prefix = "OPR." /datum/paygrade/pmc/enforcer - paygrade = "PMC-EN" + paygrade = PAY_SHORT_PMC_EN name = "Enforcer" prefix = "ENF." pay_multiplier = 2.6 //PMC Field Specialists /datum/paygrade/pmc/vehicle - paygrade = "PMC-VS" + paygrade = PAY_SHORT_PMC_VS name = "Vehicle Specialist" - prefix = "CRW." + prefix = "SPV." pay_multiplier = 2.8 /datum/paygrade/pmc/support - paygrade = "PMC-SS" + paygrade = PAY_SHORT_PMC_SS name = "Support Specialist" prefix = "SPS." pay_multiplier = 2.8 /datum/paygrade/pmc/medic - paygrade = "PMC-MS" + paygrade = PAY_SHORT_PMC_MS name = "Medical Specialist" prefix = "SPM." pay_multiplier = 2.8 /datum/paygrade/pmc/spec - paygrade = "PMC-WS" + paygrade = PAY_SHORT_PMC_WS name = "Weapon Specialist" prefix = "SPW." pay_multiplier = 3 /datum/paygrade/pmc/handler - paygrade = "PMC-XS" + paygrade = PAY_SHORT_PMC_XS name = "Xeno Specialist" prefix = "SPX." pay_multiplier = 4 + officer_grade = GRADE_OFFICER + +//PMC Support Staff +/datum/paygrade/pmc/doctor + paygrade = PAY_SHORT_PMC_DOC + name = "Trauma Surgeon" + prefix = "Dr." + pay_multiplier = 4 + officer_grade = GRADE_OFFICER + +/datum/paygrade/pmc/engineer + paygrade = PAY_SHORT_PMC_TEC + name = "Corporate Technician" + prefix = "TEC." + pay_multiplier = 4 //PMC Elite /datum/paygrade/pmc/elite - paygrade = "PMC-ELR" + paygrade = PAY_SHORT_PMC_ELR name = "Elite Responder" prefix = "ELR." pay_multiplier = 4 + officer_grade = GRADE_OFFICER /datum/paygrade/pmc/medic/elite - paygrade = "PMC-ELM" + paygrade = PAY_SHORT_PMC_ELM name = "Elite Medic" prefix = "ELM." pay_multiplier = 4.5 + officer_grade = GRADE_OFFICER /datum/paygrade/pmc/spec/elite - paygrade = "PMC-ELG" + paygrade = PAY_SHORT_PMC_ELG name = "Elite Gunner" prefix = "ELG." pay_multiplier = 5 + officer_grade = GRADE_OFFICER //PMC Command /datum/paygrade/pmc/teamlead - paygrade = "PMC-TL" + paygrade = PAY_SHORT_PMC_TL name = "Team Leader" prefix = "TML." pay_multiplier = 3.5 + officer_grade = GRADE_OFFICER /datum/paygrade/pmc/elitelead - paygrade = "PMC-ETL" + paygrade = PAY_SHORT_PMC_ETL name = "Elite Team Leader" prefix = "ETML." pay_multiplier = 5.5 - -/datum/paygrade/pmc/doctor - paygrade = "PMC-DOC" - name = "Trauma Surgeon" - prefix = "TRI." - pay_multiplier = 4 - -/datum/paygrade/pmc/engineer - paygrade = "PMC-TECH" - name = "Corporate Technician" - prefix = "TEC." - pay_multiplier = 4 + officer_grade = GRADE_OFFICER /datum/paygrade/pmc/director - paygrade = "PMC-DIR" + paygrade = PAY_SHORT_PMC_DIR name = "Site Director" prefix = "DIR." pay_multiplier = 10 //it's a corpo director. money is what they care about. + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/factions/wy/wy.dm b/code/datums/paygrades/factions/wy/wy.dm index 03d54cbd3c..17b46ff579 100644 --- a/code/datums/paygrades/factions/wy/wy.dm +++ b/code/datums/paygrades/factions/wy/wy.dm @@ -1,72 +1,79 @@ /datum/paygrade/wy_ranks name = "WYC Paygrade" pay_multiplier = 1 + default_faction = FACTION_WY /datum/paygrade/wy_ranks/wyc1 - paygrade = "WYC1" + paygrade = PAY_SHORT_WYC1 name = "Trainee" prefix = "Trn." ranking = 0 /datum/paygrade/wy_ranks/wyc2 - paygrade = "WYC2" + paygrade = PAY_SHORT_WYC2 name = "Junior Executive" prefix = "Jr. Exec." ranking = 1 pay_multiplier = 2 /datum/paygrade/wy_ranks/wyc3 - paygrade = "WYC3" + paygrade = PAY_SHORT_WYC3 name = "Executive" prefix = "Exec." ranking = 2 pay_multiplier = 3 /datum/paygrade/wy_ranks/wyc4 - paygrade = "WYC4" + paygrade = PAY_SHORT_WYC4 name = "Senior Executive" prefix = "Sr. Exec." ranking = 3 pay_multiplier = 4 /datum/paygrade/wy_ranks/wyc5 - paygrade = "WYC5" + paygrade = PAY_SHORT_WYC5 name = "Executive Specialist" prefix = "Exec. Spc." ranking = 4 pay_multiplier = 5 + officer_grade = GRADE_OFFICER /datum/paygrade/wy_ranks/wyc6 - paygrade = "WYC6" + paygrade = PAY_SHORT_WYC6 name = "Executive Supervisor" prefix = "Exec. Suvp." ranking = 5 pay_multiplier = 6 + officer_grade = GRADE_OFFICER /datum/paygrade/wy_ranks/wyc7 - paygrade = "WYC7" + paygrade = PAY_SHORT_WYC7 name = "Assistant Manager" prefix = "Assis. Mng." ranking = 6 pay_multiplier = 7 + officer_grade = GRADE_OFFICER /datum/paygrade/wy_ranks/wyc8 - paygrade = "WYC8" + paygrade = PAY_SHORT_WYC8 name = "Division Manager" prefix = "Div. Mng." ranking = 7 pay_multiplier = 8 + officer_grade = GRADE_FLAG /datum/paygrade/wy_ranks/wyc9 - paygrade = "WYC9" + paygrade = PAY_SHORT_WYC9 name = "Chief Executive" prefix = "Chief. Exec." ranking = 8 pay_multiplier = 9 + officer_grade = GRADE_FLAG /datum/paygrade/wy_ranks/wyc10 - paygrade = "WYC10" + paygrade = PAY_SHORT_WYC10 name = "Director" prefix = "Director" ranking = 9 pay_multiplier = 10 + officer_grade = GRADE_FLAG diff --git a/code/datums/paygrades/paygrade.dm b/code/datums/paygrades/paygrade.dm index 968956539d..19d33a4e55 100644 --- a/code/datums/paygrades/paygrade.dm +++ b/code/datums/paygrades/paygrade.dm @@ -1,10 +1,13 @@ +GLOBAL_LIST_EMPTY(uscm_highcom_paygrades) +GLOBAL_LIST_EMPTY(uscm_officer_paygrades) +GLOBAL_LIST_EMPTY(wy_highcom_paygrades) GLOBAL_LIST_INIT_TYPED(paygrades, /datum/paygrade, setup_paygrades()) /datum/paygrade var/paygrade var/name var/prefix - ///Factional prefix, currently only used by PMCs. In essence, a pre-prefix. + /// Factional prefix, currently only used by PMCs. In essence, a pre-prefix. var/fprefix var/rank_pin @@ -13,10 +16,39 @@ GLOBAL_LIST_INIT_TYPED(paygrades, /datum/paygrade, setup_paygrades()) /// Actually gives you the fucking money from your paygrade in your ATM account. Multiplier of 1 equals PFC pay. var/pay_multiplier = 1 + /// The faction this paygrade is usually assigned to. + var/default_faction + /// If the grade refers to an officer equivalent or not. + var/officer_grade = GRADE_ENLISTED + +GLOBAL_LIST_INIT(co_paygrades, list( + PAY_SHORT_NO6, + PAY_SHORT_NO6E, + PAY_SHORT_NO6C, + PAY_SHORT_NO5, + PAY_SHORT_NO4, + PAY_SHORT_MO6, + PAY_SHORT_MO6E, + PAY_SHORT_MO6C, + PAY_SHORT_MO5, + PAY_SHORT_MO4 +)) + +/datum/paygrade/New() + . = ..() + switch(default_faction) + if(FACTION_MARINE) + if(officer_grade) + GLOB.uscm_officer_paygrades += paygrade + if(officer_grade >= GRADE_FLAG) + GLOB.uscm_highcom_paygrades += paygrade + if(FACTION_WY,FACTION_PMC) + if(officer_grade >= GRADE_FLAG) + GLOB.wy_highcom_paygrades += paygrade + /proc/setup_paygrades() . = list() - for(var/I in subtypesof(/datum/paygrade)) - var/datum/paygrade/PG = I + for(var/datum/paygrade/PG as anything in subtypesof(/datum/paygrade)) var/pg_id = initial(PG.paygrade) if(pg_id) if(pg_id in .) @@ -24,44 +56,8 @@ GLOBAL_LIST_INIT_TYPED(paygrades, /datum/paygrade, setup_paygrades()) else .[pg_id] = new PG -GLOBAL_LIST_INIT(highcom_paygrades, list( - "PvI", - "NO7", - "MO7", - "NO8", - "MO8", - "NO9", - "MO9", - "NO10", - "MO10", - "NO10C", - "MO10C", - "PvO8", - "PvO9", - "PvCM" -)) - -GLOBAL_LIST_INIT(co_paygrades, list( - "NO6", - "NO6E", - "NO6C", - "NO5", - "NO4", - "MO6", - "MO6E", - "MO6C", - "MO5", - "MO4", -)) - GLOBAL_LIST_INIT(platco_paygrades, list( "MO3", "MO2", "MO1", )) - -GLOBAL_LIST_INIT(wy_paygrades, list( - "WYC8", - "WYC9", - "WYC10" -)) diff --git a/code/datums/quadtree.dm b/code/datums/quadtree.dm index ec3e577a24..c63f7e8566 100644 --- a/code/datums/quadtree.dm +++ b/code/datums/quadtree.dm @@ -184,7 +184,7 @@ player_coords = list(p_coords) return TRUE - else if(!final_divide && player_coords.len >= QUADTREE_CAPACITY) + else if(!final_divide && length(player_coords) >= QUADTREE_CAPACITY) if(!is_divided) subdivide() if(nw_branch.insert_player(p_coords)) diff --git a/code/datums/recipe.dm b/code/datums/recipe.dm index 58a5e9a0ef..0eb373cc75 100644 --- a/code/datums/recipe.dm +++ b/code/datums/recipe.dm @@ -49,7 +49,7 @@ . = -1 else return 0 - if ((reagents?(reagents.len):(0)) < avail_reagents.reagent_list.len) + if ((LAZYLEN(reagents) || 0) < length(avail_reagents.reagent_list)) return -1 return . @@ -70,7 +70,7 @@ break if (!found) . = -1 - if (checklist.len) + if (length(checklist)) return 0 return . @@ -107,17 +107,17 @@ for (var/datum/recipe/recipe in available_recipes) if (recipe.check_reagents(obj.reagents)==exact && recipe.check_items(obj)==exact) possible_recipes+=recipe - if (possible_recipes.len==0) + if (length(possible_recipes)==0) return null - else if (possible_recipes.len==1) + else if (length(possible_recipes)==1) return possible_recipes[1] else //okay, let's select the most complicated recipe var/r_count = 0 var/i_count = 0 . = possible_recipes[1] for (var/datum/recipe/recipe in possible_recipes) - var/N_i = (recipe.items)?(recipe.items.len):0 - var/N_r = (recipe.reagents)?(recipe.reagents.len):0 + var/N_i = LAZYLEN(recipe.items) || 0 + var/N_r = LAZYLEN(recipe.reagents) || 0 if (N_i > i_count || (N_i== i_count && N_r > r_count )) r_count = N_r i_count = N_i @@ -184,13 +184,6 @@ ) result = /obj/item/reagent_container/food/snacks/roburger -/datum/recipe/roburger_unsafe - items = list( - /obj/item/reagent_container/food/snacks/bun, - /obj/item/robot_parts/head, - ) - result = /obj/item/reagent_container/food/snacks/roburger/unsafe - /datum/recipe/clownburger items = list( /obj/item/reagent_container/food/snacks/bun, diff --git a/code/datums/redis/callbacks/_redis_callback.dm b/code/datums/redis/callbacks/_redis_callback.dm index fd786db056..af63f53bd0 100644 --- a/code/datums/redis/callbacks/_redis_callback.dm +++ b/code/datums/redis/callbacks/_redis_callback.dm @@ -19,7 +19,7 @@ * * message - The message received on the redis channel. */ /datum/redis_callback/proc/on_message(message) - CRASH("on_message not overriden for [type]!") + CRASH("on_message not overridden for [type]!") /datum/redis_callback/vv_edit_var(var_name, var_value) return FALSE diff --git a/code/datums/research_upgrade_datum.dm b/code/datums/research_upgrade_datum.dm new file mode 100644 index 0000000000..78bdecccc5 --- /dev/null +++ b/code/datums/research_upgrade_datum.dm @@ -0,0 +1,213 @@ +/datum/research_upgrades + ///unique to every upgrade. not the name of the item. name of the upgrade + var/name = "Upgrade." + ///name of upgrades, not items. Items are at research_upgrades.dm somewhere in item folder. + var/desc = "something is broken. yippee!!" + ///which behavior should this type follow. Should this be completely excluded from the buy menu? should it be one of the dropdown options? or a normal item? + var/behavior = RESEARCH_UPGRADE_EXCLUDE_BUY // should this be on the list? + /// the price of the upgrade, refer to this: 500 is a runner, 8k is queen. T3 is usually 3k, woyer is 2k. + var/value_upgrade = 1000 + ///In which tab the upgrade should be. + var/upgrade_type + ///Path to the item, upgrade, if any. + var/item_reference + ///Clearance requirment to buy this upgrade. 5x is level 6. Why is it not that way? no one knows. + var/clearance_req = 5 + ///The change of price for item per purchase, recommended for mass producing stuff or limited upgrade. + var/change_purchase = 0 + ///the minimum price which we cant go any cheaper usually dont need to set this if change price is 0 or positive + var/minimum_price = 0 + ///the maximum price which we cant go any more expensive, usually dont need to set this if change price is 0 or negative + var/maximum_price = INFINITY + +///gets called once the product is purchased, override if you need to pass any special arguments or have special behavior on purchase. +/datum/research_upgrades/proc/on_purchase(turf/machine_loc) + if(isnull(item_reference)) + return + new item_reference(machine_loc) + +/datum/research_upgrades/machinery + name = "Machinery" + behavior = RESEARCH_UPGRADE_CATEGORY // one on the dropdown choices you get + +/datum/research_upgrades/machinery/autodoc + name = "AutoDoc Upgrade" + behavior = RESEARCH_UPGRADE_EXCLUDE_BUY + upgrade_type = ITEM_MACHINERY_UPGRADE + +/datum/research_upgrades/machinery/autodoc/internal_bleed + name = "AutoDoc Internal Bleeding Repair" + desc = "A data and instruction set for the AutoDoc, making it capable of rapidly fixing internal bleeding." + behavior = RESEARCH_UPGRADE_ITEM + value_upgrade = 200 + clearance_req = 1 + +/datum/research_upgrades/machinery/autodoc/internal_bleed/on_purchase(turf/machine_loc) + new /obj/item/research_upgrades/autodoc(machine_loc, RESEARCH_UPGRADE_TIER_1) + +/datum/research_upgrades/machinery/autodoc/broken_bone + name = "AutoDoc Bone Fracture Repair" + desc = "A data instruction set for the AutoDoc, making it capable of setting fractures and applying bonegel." + behavior = RESEARCH_UPGRADE_ITEM + value_upgrade = 2000 + clearance_req = 3 + +/datum/research_upgrades/machinery/autodoc/broken_bone/on_purchase(turf/machine_loc) + new /obj/item/research_upgrades/autodoc(machine_loc, RESEARCH_UPGRADE_TIER_2) + +/datum/research_upgrades/machinery/autodoc/organ_damage + name = "AutoDoc Broken Organ Repair" + desc = "A data and instruction set for the AutoDoc, making it capable of fixing organ damage." + behavior = RESEARCH_UPGRADE_ITEM + value_upgrade = 1500 + clearance_req = 2 + +/datum/research_upgrades/machinery/autodoc/organ_damage/on_purchase(turf/machine_loc) + new /obj/item/research_upgrades/autodoc(machine_loc, RESEARCH_UPGRADE_TIER_3) + +/datum/research_upgrades/machinery/autodoc/larva_removal + name = "AutoDoc Embryo Removal" + desc = "Data and instruction set for AutoDoc making it mildly proficient in removing parasites left by unknown organism." + behavior = RESEARCH_UPGRADE_ITEM + value_upgrade = 4000 + clearance_req = 6 + +/datum/research_upgrades/machinery/autodoc/larva_removal/on_purchase(turf/machine_loc) + new /obj/item/research_upgrades/autodoc(machine_loc, RESEARCH_UPGRADE_TIER_4) + + +/datum/research_upgrades/machinery/sleeper + name = "Sleeper Upgrade" + desc = "Research upgrade for Sleeper system, technology on this disk is used on a sleeper to allow wider spectrum of chemicals to be administered, as well as upgrading dialysis software." + behavior = RESEARCH_UPGRADE_ITEM + value_upgrade = 500 + item_reference = /obj/item/research_upgrades/sleeper + upgrade_type = ITEM_MACHINERY_UPGRADE + clearance_req = 1 + +/datum/research_upgrades/item + name = "Items" + behavior = RESEARCH_UPGRADE_CATEGORY + +/datum/research_upgrades/item/research_credits + name = "Research Credits" + desc = "Sell the data acquired to the nearest Weyland-Yutani Science division team for 8 or 9 points." + value_upgrade = 2000 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ACCESSORY_UPGRADE + item_reference = /obj/item/research_upgrades/credits + change_purchase = 500 + maximum_price = 5000 + clearance_req = 5 + +/datum/research_upgrades/item/laser_scalpel + name = "Laser Scalpel" + desc = "An advanced, robust version of the normal scalpel, allowing it to pierce through thick skin and chitin alike with extreme ease." + value_upgrade = 3000 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ACCESSORY_UPGRADE + item_reference = /obj/item/tool/surgery/scalpel/laser/advanced + clearance_req = 3 + +/datum/research_upgrades/item/incision_management + name = "Incision Management System" + desc = "A true extension of the surgeon's body, this marvel instantly and completely prepares an incision, allowing for the immediate commencement of therapeutic steps." + value_upgrade = 3000 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ACCESSORY_UPGRADE + clearance_req = 4 + item_reference = /obj/item/tool/surgery/scalpel/manager + + +/datum/research_upgrades/item/nanosplints + name = "Reinforced Fiber Splints" + desc = "A set of splints made from durable carbon fiber sheets reinforced with flexible titanium lattice, comes in a stack of five." + value_upgrade = 800 + clearance_req = 3 + change_purchase = -200 + minimum_price = 200 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ACCESSORY_UPGRADE + +/datum/research_upgrades/item/nanosplints/on_purchase(turf/machine_loc) + new /obj/item/stack/medical/splint/nano/research(machine_loc, 5)//adjust this to change amount of nanosplints in a stack, cant be higher than five, go change max_amount in the nanosplint itself, then change it. + +/datum/research_upgrades/item/flamer_tank + name = "Upgraded Incinerator Tank" + desc = "An upgraded incinerator tank, with larger capacity and able to handle stronger fuels." + value_upgrade = 300 + clearance_req = 1 + change_purchase = 100 + minimum_price = 100 + maximum_price = 1000 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ACCESSORY_UPGRADE + item_reference = /obj/item/ammo_magazine/flamer_tank/custom/upgraded + +/datum/research_upgrades/item/flamer_tank/smoke + name = "Upgraded Incinerator Smoke Tank" + desc = "An upgraded incinerator smoke tank with a larger capacity." + value_upgrade = 100 //not useful enough to be expensive + clearance_req = 1 + change_purchase = 50 + minimum_price = 100 + maximum_price = 500 + item_reference = /obj/item/ammo_magazine/flamer_tank/smoke/upgraded + +/datum/research_upgrades/armor + name = "Armor" + behavior = RESEARCH_UPGRADE_CATEGORY + +/datum/research_upgrades/armor/translator + name = "Universal Translator Plate" + desc = "A uniform-attachable plate capable of translating any unknown language heard by the wearer." + value_upgrade = 2000 + behavior = RESEARCH_UPGRADE_ITEM + clearance_req = 6 + upgrade_type = ITEM_ARMOR_UPGRADE + item_reference = /obj/item/clothing/accessory/health/research_plate/translator + +/datum/research_upgrades/armor/coagulator + name = "Active Blood Coagulator Plate" + desc = "A uniform-attachable plate capable of coagulating any bleeding wounds the user possesses." + value_upgrade = 1200 + behavior = RESEARCH_UPGRADE_ITEM + clearance_req = 2 + change_purchase = -200 + minimum_price = 200 + upgrade_type = ITEM_ARMOR_UPGRADE + item_reference = /obj/item/clothing/accessory/health/research_plate/coagulator + + +/datum/research_upgrades/armor/emergency_injector + name = "Medical Emergency Injector" + desc = "A medical plate with two buttons on the sides and a hefty chemical tank. Attached to a uniform and on a simultaneous press, it injects an emergency dose of medical chemicals much larger than a normal emergency autoinjector. Single time use and is recycled in biomass printer. Features overdose protection." + value_upgrade = 250 + clearance_req = 1 + behavior = RESEARCH_UPGRADE_ITEM + change_purchase = -100 + minimum_price = 100 + upgrade_type = ITEM_ARMOR_UPGRADE + item_reference = /obj/item/clothing/accessory/health/research_plate/emergency_injector + +/datum/research_upgrades/armor/ceramic + name = "Ceramic Armor Plate" + desc = "A strong trauma plate, able to protect the user from a large amount of bullets. Completely useless against sharp objects." + value_upgrade = 500 + clearance_req = 4 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ARMOR_UPGRADE + change_purchase = -50 + minimum_price = 200 + item_reference = /obj/item/clothing/accessory/health/ceramic_plate + +/datum/research_upgrades/armor/preservation + name = "Death Preservation Plate" + desc = "Preservation plate which activates once the user is dead, uses variety of different substances and sensors to slow down the decay and increase the time before the user is permanently dead, due to small tank of preservatives, it needs to be replaced on each death. Extends time to permadeath by around four minutes." + value_upgrade = 500 + clearance_req = 4 + behavior = RESEARCH_UPGRADE_ITEM + upgrade_type = ITEM_ARMOR_UPGRADE + change_purchase = -100 + minimum_price = 100 + item_reference = /obj/item/clothing/accessory/health/research_plate/anti_decay diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm index 9424be83a3..1a7062860b 100644 --- a/code/datums/shuttles.dm +++ b/code/datums/shuttles.dm @@ -58,11 +58,7 @@ . = ..() if(!.) return - var/list/turfs = block( locate(.[MAP_MINX], .[MAP_MINY], .[MAP_MINZ]), - locate(.[MAP_MAXX], .[MAP_MAXY], .[MAP_MAXZ])) - for(var/i in 1 to turfs.len) - var/turf/place = turfs[i] - + for(var/turf/place as anything in block(.[MAP_MINX], .[MAP_MINY], .[MAP_MINZ], .[MAP_MAXX], .[MAP_MAXY], .[MAP_MAXZ])) // ================== CM Change ================== // We perform atom initialization of the docking_ports BEFORE skipping space, // because our lifeboats have their corners as object props and still @@ -126,6 +122,12 @@ /datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions elevator_network = "Requisitions" +/datum/map_template/shuttle/trijent_elevator/post_load(obj/docking_port/mobile/M) + . = ..() + var/obj/docking_port/mobile/trijent_elevator/elev = M + elev.elevator_network = elevator_network + log_debug("Adding network [elevator_network] to [M.id]") + /datum/map_template/shuttle/trijent_elevator/golden_arrow shuttle_id = "unused" diff --git a/code/datums/skills/civilian.dm b/code/datums/skills/civilian.dm index 9b55adc9b1..ff9cadf029 100644 --- a/code/datums/skills/civilian.dm +++ b/code/datums/skills/civilian.dm @@ -20,7 +20,7 @@ CIVILIAN SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, SKILL_INTEL = SKILL_INTEL_EXPERT, ) @@ -29,8 +29,9 @@ CIVILIAN name = "ICC CL - Black Market ERT" skills = list( SKILL_CQC = SKILL_CQC_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, //The ASRS consoles + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, //The ASRS consoles SKILL_FIREARMS = SKILL_FIREARMS_CIVILIAN, SKILL_POLICE = SKILL_POLICE_SKILLED, //The CMB Tradeband Compliance Device ) @@ -42,7 +43,7 @@ CIVILIAN SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, @@ -57,11 +58,13 @@ CIVILIAN skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_SURVIVOR, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, ) /datum/skills/civilian/survivor/manager name = "Weyland-Yutani Manager" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -70,7 +73,7 @@ CIVILIAN /datum/skills/civilian/survivor/goon name = "Survivor Goon" - skills = list( + additional_skills = list( SKILL_CQC = SKILL_CQC_TRAINED, SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, @@ -112,7 +115,7 @@ CIVILIAN SKILL_ENDURANCE = SKILL_ENDURANCE_SURVIVOR, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, ) @@ -120,6 +123,7 @@ CIVILIAN /datum/skills/civilian/survivor/doctor name = "Survivor Doctor" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_TRAINED, ) @@ -127,7 +131,7 @@ CIVILIAN /datum/skills/civilian/survivor/clf name = "Survivor CLF" additional_skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, @@ -136,6 +140,7 @@ CIVILIAN /datum/skills/civilian/survivor/scientist name = "Survivor Scientist" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_TRAINED, SKILL_RESEARCH = SKILL_RESEARCH_TRAINED, @@ -144,6 +149,7 @@ CIVILIAN /datum/skills/civilian/survivor/chef name = "Survivor Chef" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, SKILL_DOMESTIC = SKILL_DOMESTIC_TRAINED, ) @@ -151,7 +157,8 @@ CIVILIAN /datum/skills/civilian/survivor/miner name = "Survivor Miner" additional_skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, ) @@ -159,14 +166,17 @@ CIVILIAN /datum/skills/civilian/survivor/trucker name = "Survivor Trucker" additional_skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_VEHICLE = SKILL_VEHICLE_CREWMAN, ) /datum/skills/civilian/survivor/engineer name = "Survivor Engineer" additional_skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, @@ -175,13 +185,14 @@ CIVILIAN /datum/skills/civilian/survivor/chaplain name = "Survivor Chaplain" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, ) /datum/skills/civilian/survivor/marshal name = "Survivor Marshal" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -190,7 +201,7 @@ CIVILIAN SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, ) @@ -198,6 +209,7 @@ CIVILIAN /datum/skills/civilian/survivor/prisoner name = "Survivor Prisoner" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, @@ -207,6 +219,7 @@ CIVILIAN /datum/skills/civilian/survivor/gangleader name = "Survivor Gang Leader" additional_skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, diff --git a/code/datums/skills/clf.dm b/code/datums/skills/clf.dm index 6042febb6b..64a8864d3c 100644 --- a/code/datums/skills/clf.dm +++ b/code/datums/skills/clf.dm @@ -10,9 +10,9 @@ COLONIAL LIBERATION FRONT SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_POLICE = SKILL_POLICE_SKILLED, - SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, SKILL_ENDURANCE = SKILL_ENDURANCE_WEAK, @@ -22,8 +22,9 @@ COLONIAL LIBERATION FRONT /datum/skills/clf/combat_engineer name = "CLF Engineer" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, @@ -34,6 +35,7 @@ COLONIAL LIBERATION FRONT /datum/skills/clf/combat_medic name = "CLF Medic" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, @@ -46,7 +48,7 @@ COLONIAL LIBERATION FRONT skills = list( SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, //to use c4 in demo set. + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, //to use c4 in demo set. SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_ALL, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, @@ -58,7 +60,7 @@ COLONIAL LIBERATION FRONT name = "CLF Leader" skills = list( SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, // to use their C4 + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, // to use their C4 SKILL_CQC = SKILL_CQC_SKILLED, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -76,7 +78,7 @@ COLONIAL LIBERATION FRONT name = "CLF Cell Commander" skills = list( SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, diff --git a/code/datums/skills/cmb.dm b/code/datums/skills/cmb.dm index b29a4c3145..8fa7ca4dd8 100644 --- a/code/datums/skills/cmb.dm +++ b/code/datums/skills/cmb.dm @@ -26,7 +26,7 @@ COLONIAL MARSHALS SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_FIREMAN = SKILL_FIREMAN_MASTER, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, diff --git a/code/datums/skills/commando.dm b/code/datums/skills/commando.dm index dabae682bd..5133cb0e55 100644 --- a/code/datums/skills/commando.dm +++ b/code/datums/skills/commando.dm @@ -8,7 +8,8 @@ SPEC-OPS name = "Commando" skills = list( SKILL_CQC = SKILL_CQC_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -22,7 +23,8 @@ SPEC-OPS name = "Commando Medic" skills = list( SKILL_CQC = SKILL_CQC_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, @@ -37,7 +39,8 @@ SPEC-OPS name = "Commando Leader" skills = list( SKILL_CQC = SKILL_CQC_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, @@ -52,7 +55,8 @@ SPEC-OPS name = "Deathsquad" skills = list( SKILL_CQC = SKILL_CQC_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, @@ -66,7 +70,8 @@ SPEC-OPS name = "Deathsquad Leader" skills = list( SKILL_CQC = SKILL_CQC_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_MASTER, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, @@ -81,7 +86,8 @@ SPEC-OPS name = "Deathsquad Officer" skills = list( SKILL_CQC = SKILL_CQC_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_MASTER, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, @@ -97,8 +103,9 @@ SPEC-OPS name = "Spy" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, @@ -109,6 +116,7 @@ SPEC-OPS name = "Ninja" skills = list( SKILL_CQC = SKILL_CQC_MASTER, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, diff --git a/code/datums/skills/contractor.dm b/code/datums/skills/contractor.dm index 183e95c941..5e079e5664 100644 --- a/code/datums/skills/contractor.dm +++ b/code/datums/skills/contractor.dm @@ -7,7 +7,7 @@ CONTRACTORS name = "Contractor Standard" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_POLICE = SKILL_POLICE_SKILLED, @@ -22,7 +22,7 @@ CONTRACTORS /datum/skills/contractor/leader name = "Contractor Leader" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, @@ -45,7 +45,7 @@ CONTRACTORS SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_LARGE, @@ -76,7 +76,7 @@ CONTRACTORS name = "Contractor Machinegunner" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_POLICE = SKILL_POLICE_SKILLED, diff --git a/code/datums/skills/dutch.dm b/code/datums/skills/dutch.dm index 5c2c63a8c4..ec550f8e2b 100644 --- a/code/datums/skills/dutch.dm +++ b/code/datums/skills/dutch.dm @@ -2,8 +2,9 @@ name = "Dutch" skills = list( SKILL_CQC = SKILL_CQC_MASTER, + SKILL_FIREMAN = SKILL_FIREMAN_MAX, SKILL_MELEE_WEAPONS = SKILL_MELEE_MAX, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, @@ -19,7 +20,7 @@ name = "Dutch's Dozen Mercenary" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -34,7 +35,7 @@ name = "Dutch's Dozen Medic" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, diff --git a/code/datums/skills/forecon.dm b/code/datums/skills/forecon.dm index 4799dd68d6..aef187ce05 100644 --- a/code/datums/skills/forecon.dm +++ b/code/datums/skills/forecon.dm @@ -8,10 +8,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_standard name = "Reconnaissance Rifleman" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_SURVIVOR, @@ -23,10 +24,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_techician name = "Reconnaissance Support Technician" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, @@ -39,10 +41,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_marksman name = "Reconnaissance Designated Marksman" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_SCOUT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -55,10 +58,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_smartgunner name = "Reconnaissance Smartgunner" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -71,10 +75,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_sniper name = "Reconnaissance Sniper" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_SNIPER, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -87,10 +92,11 @@ MILITARY SURVIVORS /datum/skills/military/survivor/forecon_squad_leader name = "Reconnaissance Squad Leader" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_DEFAULT, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_JTAC = SKILL_JTAC_TRAINED, diff --git a/code/datums/skills/freelancer.dm b/code/datums/skills/freelancer.dm index 7f7256318e..cf7baa1553 100644 --- a/code/datums/skills/freelancer.dm +++ b/code/datums/skills/freelancer.dm @@ -9,16 +9,18 @@ FREELANCERS /datum/skills/freelancer name = "Freelancer Private" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, ) /datum/skills/freelancer/combat_medic name = "Freelancer Medic" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_TRAINED, @@ -27,8 +29,9 @@ FREELANCERS /datum/skills/freelancer/SL name = "Freelancer Leader" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_CQC = SKILL_CQC_TRAINED, diff --git a/code/datums/skills/gladiator.dm b/code/datums/skills/gladiator.dm index 7ba2c9eff4..7757fd9289 100644 --- a/code/datums/skills/gladiator.dm +++ b/code/datums/skills/gladiator.dm @@ -2,6 +2,7 @@ name = "Gladiator" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_CIVILIAN, SKILL_LEADERSHIP = SKILL_LEAD_NOVICE, @@ -13,6 +14,7 @@ name = "Gladiator Champion" skills = list( SKILL_CQC = SKILL_CQC_MASTER, + SKILL_FIREMAN = SKILL_FIREMAN_MAX, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, @@ -24,6 +26,7 @@ name = "Gladiator Leader" skills = list( SKILL_CQC = SKILL_CQC_MASTER, + SKILL_FIREMAN = SKILL_FIREMAN_MAX, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, //Spartacus! diff --git a/code/datums/skills/mercenary.dm b/code/datums/skills/mercenary.dm index 8d842ea30d..35a6378f51 100644 --- a/code/datums/skills/mercenary.dm +++ b/code/datums/skills/mercenary.dm @@ -2,7 +2,8 @@ name = "Mercenary" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -14,7 +15,8 @@ name = "Elite Mercenary" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -28,7 +30,8 @@ name = "Elite Mercenary Medic" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_MEDICAL = SKILL_MEDICAL_MASTER, @@ -42,6 +45,7 @@ name = "Elite Mercenary Engineer" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_ENGINEER = SKILL_ENGINEER_MASTER, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_MASTER, SKILL_FIREARMS = SKILL_FIREARMS_MAX, @@ -57,7 +61,8 @@ name = "Elite Mercenary Heavy" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, @@ -72,7 +77,8 @@ name = "Elite Mercenary Leader" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_MAX, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, diff --git a/code/datums/skills/misc.dm b/code/datums/skills/misc.dm index e4f78219b5..204890685b 100644 --- a/code/datums/skills/misc.dm +++ b/code/datums/skills/misc.dm @@ -11,7 +11,8 @@ MISCELLANEOUS SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_JTAC = SKILL_JTAC_EXPERT, ) @@ -22,7 +23,7 @@ MISCELLANEOUS SKILL_CQC = SKILL_CQC_MASTER, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_EXPERT, @@ -36,6 +37,7 @@ MISCELLANEOUS skills = list( SKILL_FIREARMS = SKILL_FIREARMS_CIVILIAN, SKILL_CQC = SKILL_CQC_MASTER, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_SUPER, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_MASTER, SKILL_ENGINEER = SKILL_ENGINEER_MASTER, @@ -50,7 +52,7 @@ MISCELLANEOUS name = "Souto Man" skills = list( SKILL_CQC = SKILL_CQC_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, diff --git a/code/datums/skills/pmc.dm b/code/datums/skills/pmc.dm index df7027e2a7..1860157c0a 100644 --- a/code/datums/skills/pmc.dm +++ b/code/datums/skills/pmc.dm @@ -14,7 +14,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, ) @@ -26,7 +26,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, @@ -40,7 +40,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_RESEARCH = SKILL_RESEARCH_TRAINED, @@ -54,7 +54,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_JTAC = SKILL_JTAC_BEGINNER, @@ -68,7 +68,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_ALL, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, @@ -83,7 +83,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -99,7 +99,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CQC = SKILL_CQC_SKILLED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -116,7 +116,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_JTAC = SKILL_JTAC_TRAINED, @@ -131,7 +131,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_EXPERT, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, //trained in medicine more than combat @@ -160,7 +160,7 @@ Private Military Contractors SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_CQC = SKILL_CQC_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, diff --git a/code/datums/skills/rmc.dm b/code/datums/skills/rmc.dm index 89aa39b154..4385253e9a 100644 --- a/code/datums/skills/rmc.dm +++ b/code/datums/skills/rmc.dm @@ -14,7 +14,7 @@ Royal Marines Commando SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, @@ -28,7 +28,7 @@ Royal Marines Commando SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, @@ -44,7 +44,7 @@ Royal Marines Commando SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, @@ -61,7 +61,7 @@ Royal Marines Commando SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, diff --git a/code/datums/skills/synthetic.dm b/code/datums/skills/synthetic.dm index 3925dd9605..c4d7296dee 100644 --- a/code/datums/skills/synthetic.dm +++ b/code/datums/skills/synthetic.dm @@ -33,7 +33,7 @@ SYNTHETIC name = SYNTH_COLONY skills = list( SKILL_CQC = SKILL_CQC_EXPERT, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_SPEC_WEAPONS = SKILL_SPEC_ALL, diff --git a/code/datums/skills/upp.dm b/code/datums/skills/upp.dm index 77401ab628..c292251b9a 100644 --- a/code/datums/skills/upp.dm +++ b/code/datums/skills/upp.dm @@ -10,7 +10,7 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Private" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_DEFAULT, @@ -22,7 +22,7 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Sapper" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_DEFAULT, @@ -37,6 +37,7 @@ UNITED PROGRESSIVE PEOPLES SKILL_SURGERY = SKILL_SURGERY_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_DEFAULT, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, ) @@ -44,9 +45,10 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Specialist" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_JTAC = SKILL_JTAC_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_UPP, @@ -58,9 +60,10 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Squad Leader" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, @@ -75,9 +78,37 @@ UNITED PROGRESSIVE PEOPLES SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + ) + +/datum/skills/upp/logistics_technician + name = "UPP Logistics Technician" + skills = list( + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, + ) + +/datum/skills/upp/commissar + name = "UPP Starshy Politruk" + skills = list( + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_LEADERSHIP = SKILL_LEAD_MASTER, + SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_INTEL = SKILL_INTEL_EXPERT, ) /datum/skills/upp/officer @@ -90,7 +121,7 @@ UNITED PROGRESSIVE PEOPLES SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, @@ -106,7 +137,7 @@ UNITED PROGRESSIVE PEOPLES SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, @@ -123,7 +154,7 @@ UNITED PROGRESSIVE PEOPLES SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, @@ -144,7 +175,7 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Private" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, @@ -158,10 +189,11 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Sapper" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_DEFAULT, @@ -172,12 +204,13 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Medic" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_DEFAULT, SKILL_JTAC = SKILL_JTAC_TRAINED, @@ -187,7 +220,7 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Specialist" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, @@ -197,6 +230,7 @@ UNITED PROGRESSIVE PEOPLES SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_VEHICLE = SKILL_VEHICLE_LARGE, ) @@ -204,11 +238,12 @@ UNITED PROGRESSIVE PEOPLES name = "UPP Squad Leader" skills = list( SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_UPP, SKILL_FIREARMS = SKILL_FIREARMS_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, diff --git a/code/datums/skills/uscm.dm b/code/datums/skills/uscm.dm index 2e2a53b610..c4c3ed67fd 100644 --- a/code/datums/skills/uscm.dm +++ b/code/datums/skills/uscm.dm @@ -15,6 +15,7 @@ United States Colonial Marines /datum/skills/combat_medic name = "Combat Medic" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, SKILL_JTAC = SKILL_JTAC_BEGINNER, @@ -32,6 +33,7 @@ United States Colonial Marines /datum/skills/combat_engineer name = "Combat Engineer" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_ENGINEER = SKILL_ENGINEER_ENGI, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, @@ -41,6 +43,7 @@ United States Colonial Marines /datum/skills/smartgunner name = "Squad Smartgunner" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, SKILL_JTAC = SKILL_JTAC_BEGINNER, ) @@ -58,9 +61,10 @@ United States Colonial Marines /datum/skills/specialist name = "Squad Weapons Specialist" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, //to use c4 in demo set. + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, //to use c4 in demo set. SKILL_SPEC_WEAPONS = SKILL_SPEC_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, @@ -83,6 +87,7 @@ United States Colonial Marines ) + /datum/skills/SL name = "Squad Leader" skills = list( @@ -99,7 +104,8 @@ United States Colonial Marines /datum/skills/intel name = "Intelligence Officer" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_CQC = SKILL_CQC_TRAINED, @@ -118,6 +124,7 @@ MILITARY NONCOMBATANT /datum/skills/doctor name = "Doctor" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_FIREARMS = SKILL_FIREARMS_CIVILIAN, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_TRAINED, @@ -147,6 +154,7 @@ MILITARY NONCOMBATANT SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, SKILL_JTAC = SKILL_JTAC_TRAINED, @@ -159,10 +167,11 @@ MILITARY NONCOMBATANT SKILL_PILOT = SKILL_PILOT_TRAINED, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, SKILL_SURGERY = SKILL_SURGERY_NOVICE, SKILL_JTAC = SKILL_JTAC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, ) /datum/skills/MP @@ -185,7 +194,7 @@ MILITARY NONCOMBATANT SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, ) /datum/skills/provost @@ -201,6 +210,7 @@ MILITARY NONCOMBATANT /datum/skills/OT name = "Ordnance Technician" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_ENGINEER = SKILL_ENGINEER_MASTER, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_MASTER, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, @@ -209,6 +219,7 @@ MILITARY NONCOMBATANT /datum/skills/MT name = "Maintenance Technician" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_ENGINEER = SKILL_ENGINEER_MASTER, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_MASTER, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, @@ -219,7 +230,8 @@ MILITARY NONCOMBATANT name = "Mess Technician" skills = list( SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, // need to hunt food somehow - SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_ENGINEER = SKILL_ENGINEER_NOVICE, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_DOMESTIC = SKILL_DOMESTIC_MASTER ) @@ -227,6 +239,7 @@ MILITARY NONCOMBATANT /datum/skills/CT name = "Cargo Technician" skills = list( + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_TRAINED, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, ) @@ -241,7 +254,7 @@ COMMAND STAFF name = "General" skills = list( SKILL_CQC = SKILL_CQC_TRAINED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -253,13 +266,14 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_MASTER, SKILL_SPEC_WEAPONS = SKILL_SPEC_ALL, SKILL_EXECUTION = SKILL_EXECUTION_TRAINED, //can BE people - SKILL_INTEL = SKILL_INTEL_EXPERT + SKILL_INTEL = SKILL_INTEL_EXPERT, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, ) /datum/skills/commander name = "Commanding Officer" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -275,19 +289,20 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_MASTER, SKILL_EXECUTION = SKILL_EXECUTION_TRAINED, //can BE people SKILL_INTEL = SKILL_INTEL_EXPERT, - SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED //can change ship alt + SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, //can change ship alt + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, ) /datum/skills/XO name = "Executive Officer" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, //to fix CIC apc. + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, //to fix CIC apc. SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_DOCTOR, SKILL_SURGERY = SKILL_SURGERY_NOVICE, - SKILL_POLICE = SKILL_POLICE_FLASH, + SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, SKILL_CQC = SKILL_CQC_SKILLED, @@ -296,6 +311,7 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_MASTER, SKILL_INTEL = SKILL_INTEL_EXPERT, SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_LARGE, ) /datum/skills/SO @@ -304,6 +320,7 @@ COMMAND STAFF SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, SKILL_POLICE = SKILL_POLICE_FLASH, SKILL_VEHICLE = SKILL_VEHICLE_LARGE, SKILL_JTAC = SKILL_JTAC_EXPERT, @@ -317,7 +334,7 @@ COMMAND STAFF name = "Senior Enlisted Advisor" skills = list( SKILL_CQC = SKILL_CQC_SKILLED, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, @@ -370,7 +387,7 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_EXPERT, SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, SKILL_INTEL = SKILL_INTEL_TRAINED, ) @@ -387,7 +404,7 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_EXPERT, SKILL_INTEL = SKILL_INTEL_EXPERT, SKILL_VEHICLE = SKILL_VEHICLE_SMALL, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_POLICE = SKILL_POLICE_FLASH, SKILL_NAVIGATIONS = SKILL_NAVIGATIONS_TRAINED, @@ -421,3 +438,80 @@ COMMAND STAFF SKILL_JTAC = SKILL_JTAC_EXPERT, SKILL_INTEL = SKILL_INTEL_TRAINED, ) + +/* +--------------------- +SOLAR DEVILS (PvE Marines) +--------------------- +*/ + +/datum/skills/rifleman_pve + name = "Private" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + ) + +/datum/skills/combat_medic_pve + name = "Combat Medic" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_MEDIC, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + ) + +/datum/skills/smartgunner_pve + name = "Smartgunner" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_BEGINNER, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_SPEC_WEAPONS = SKILL_SPEC_SMARTGUN, + ) + +/datum/skills/tl_pve + name = "Fireteam Leader" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_TRAINED, + SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_PILOT = SKILL_PILOT_TRAINED, + ) + +/datum/skills/sl_pve + name = "Squad Leader" + skills = list( + SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_FIREMAN = SKILL_FIREMAN_EXPERT, + SKILL_POWERLOADER = SKILL_POWERLOADER_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_MASTER, + SKILL_CQC = SKILL_CQC_TRAINED, + SKILL_LEADERSHIP = SKILL_LEAD_EXPERT, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_SURGERY = SKILL_SURGERY_NOVICE, + SKILL_VEHICLE = SKILL_VEHICLE_SMALL, + SKILL_JTAC = SKILL_JTAC_TRAINED, + SKILL_INTEL = SKILL_INTEL_TRAINED, + SKILL_PILOT = SKILL_PILOT_EXPERT, + ) diff --git a/code/datums/skills/wygoons.dm b/code/datums/skills/wygoons.dm new file mode 100644 index 0000000000..73d8da15b9 --- /dev/null +++ b/code/datums/skills/wygoons.dm @@ -0,0 +1,36 @@ +/datum/skills/wy_goon + name = "Corporate Security" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + ) + +/datum/skills/wy_goon_tech + name = "Corporate Security Support Technician" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_TRAINED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + ) + +/datum/skills/wy_goon_lead + name = "Corporate Security Leader" + skills = list( + SKILL_CQC = SKILL_CQC_SKILLED, + SKILL_POLICE = SKILL_POLICE_SKILLED, + SKILL_FIREMAN = SKILL_FIREMAN_SKILLED, + SKILL_ENDURANCE = SKILL_ENDURANCE_TRAINED, + SKILL_MELEE_WEAPONS = SKILL_MELEE_TRAINED, + SKILL_MEDICAL = SKILL_MEDICAL_TRAINED, + SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, + SKILL_LEADERSHIP = SKILL_LEAD_TRAINED, + ) diff --git a/code/datums/soundOutput.dm b/code/datums/soundOutput.dm index 0fddd9b503..55b0a0c99c 100644 --- a/code/datums/soundOutput.dm +++ b/code/datums/soundOutput.dm @@ -54,10 +54,14 @@ S.y += T.y_s_offset S.x += T.x_s_offset S.echo = SOUND_ECHO_REVERB_ON //enable environment reverb for positional sounds + for(var/pos = 1 to length(T.echo)) + if(!T.echo[pos]) + continue + S.echo[pos] = T.echo[pos] if(owner.mob.ear_deaf > 0) S.status |= SOUND_MUTE - sound_to(owner,S) + sound_to(owner, S) /datum/soundOutput/proc/update_ambience(area/target_area, ambience_override, force_update = FALSE) var/status_flags = SOUND_STREAM @@ -112,7 +116,7 @@ /datum/soundOutput/proc/update_soundscape() scape_cooldown-- if(scape_cooldown <= 0) - if(soundscape_playlist.len) + if(length(soundscape_playlist)) var/sound/S = sound() S.file = pick(soundscape_playlist) S.volume = 100 * owner.volume_preferences[VOLUME_AMB] diff --git a/code/datums/stamina/_stamina.dm b/code/datums/stamina/_stamina.dm index e233aaa816..80e7df74e8 100644 --- a/code/datums/stamina/_stamina.dm +++ b/code/datums/stamina/_stamina.dm @@ -34,7 +34,7 @@ if(!has_stamina) return - current_stamina = Clamp(current_stamina - amount, 0, max_stamina) + current_stamina = clamp(current_stamina - amount, 0, max_stamina) if(current_stamina < max_stamina) START_PROCESSING(SSobj, src) diff --git a/code/datums/statistics/entities/death_stats.dm b/code/datums/statistics/entities/death_stats.dm index 369fcf3be6..deeed9be1e 100644 --- a/code/datums/statistics/entities/death_stats.dm +++ b/code/datums/statistics/entities/death_stats.dm @@ -20,6 +20,7 @@ var/total_time_alive var/total_damage_taken var/total_revives_done = 0 + var/total_ib_fixed = 0 var/total_brute = 0 var/total_burn = 0 @@ -53,6 +54,7 @@ "total_time_alive" = DB_FIELDTYPE_BIGINT, "total_damage_taken" = DB_FIELDTYPE_INT, "total_revives_done" = DB_FIELDTYPE_INT, + "total_ib_fixed" = DB_FIELDTYPE_INT, "total_brute" = DB_FIELDTYPE_INT, "total_burn" = DB_FIELDTYPE_INT, @@ -113,13 +115,13 @@ new_death.cause_faction_name = cause_data?.faction if(getBruteLoss()) - new_death.total_brute = round(getBruteLoss()) + new_death.total_brute = floor(getBruteLoss()) if(getFireLoss()) - new_death.total_burn = round(getFireLoss()) + new_death.total_burn = floor(getFireLoss()) if(getOxyLoss()) - new_death.total_oxy = round(getOxyLoss()) + new_death.total_oxy = floor(getOxyLoss()) if(getToxLoss()) - new_death.total_tox = round(getToxLoss()) + new_death.total_tox = floor(getToxLoss()) new_death.time_of_death = world.time @@ -132,9 +134,10 @@ new_death.total_time_alive = life_time_total new_death.total_damage_taken = life_damage_taken_total new_death.total_revives_done = life_revives_total + new_death.total_ib_fixed = life_ib_total - if(round_statistics) - round_statistics.track_death(new_death) + if(GLOB.round_statistics) + GLOB.round_statistics.track_death(new_death) new_death.save() new_death.detach() diff --git a/code/datums/statistics/entities/human_stats.dm b/code/datums/statistics/entities/human_stats.dm index 1e15aa1d16..20d5a284be 100644 --- a/code/datums/statistics/entities/human_stats.dm +++ b/code/datums/statistics/entities/human_stats.dm @@ -22,7 +22,7 @@ return ..() if(type == "Squad Roles") var/total_squad_time = 0 - for(var/squad_type in job_squad_roles) + for(var/squad_type in GLOB.job_squad_roles) var/datum/entity/player_stats/job/squad_stat = job_stats_list["[squad_type]"] if(!squad_stat) // Have not played the squad role yet continue @@ -30,7 +30,7 @@ return total_squad_time else if(type == "CIC Roles") var/total_command_time = 0 - for(var/command_type in job_command_roles) + for(var/command_type in GLOB.job_command_roles) var/datum/entity/player_stats/job/command_stat = job_stats_list["[command_type]"] if(!command_stat) // Have not played the command role yet continue @@ -122,15 +122,15 @@ S.total_rounds_played++ S.round_played = TRUE S.total_playtime += time - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_playtime += time /datum/entity/player_stats/human/count_personal_death(job) var/datum/entity/player_stats/job/S = setup_job_stats(job) S.total_deaths++ - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_deaths++ //****************** @@ -140,27 +140,27 @@ /datum/entity/player_stats/human/count_personal_human_kill(job_name, cause, job) var/datum/entity/player_stats/job/S = setup_job_stats(job) S.count_human_kill(job_name, cause) - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.count_human_kill(job_name, cause) if(cause) var/datum/entity/weapon_stats/W = setup_weapon_stats(cause) W.count_human_kill(job_name) - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(cause) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(cause) R.count_human_kill(job_name) /datum/entity/player_stats/human/count_personal_xeno_kill(caste_type, cause, job) var/datum/entity/player_stats/job/S = setup_job_stats(job) S.count_xeno_kill(caste_type, cause) - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.count_xeno_kill(caste_type, cause) if(cause) var/datum/entity/weapon_stats/W = setup_weapon_stats(cause) W.count_xeno_kill(caste_type) - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(cause) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(cause) R.count_xeno_kill(caste_type) /datum/entity/player_stats/human/count_human_kill(job_name, cause, job) @@ -169,8 +169,8 @@ if(cause) var/datum/entity/weapon_stats/W = setup_weapon_stats(cause) W.total_kills++ - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(cause) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(cause) R.total_kills++ recalculate_top_weapon() ..() @@ -181,8 +181,8 @@ if(cause) var/datum/entity/weapon_stats/W = setup_weapon_stats(cause) W.total_kills++ - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(cause) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(cause) R.total_kills++ recalculate_top_weapon() ..() @@ -194,8 +194,8 @@ /datum/entity/player_stats/human/count_personal_niche_stat(niche_name, amount = 1, job) var/datum/entity/player_stats/job/S = setup_job_stats(job) S.count_niche_stat(niche_name, amount) - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.count_niche_stat(niche_name, amount) /datum/entity/player_stats/human/count_niche_stat(niche_name, amount = 1, job, weapon) @@ -204,8 +204,8 @@ if(weapon) var/datum/entity/weapon_stats/W = setup_weapon_stats(weapon) W.count_niche_stat(niche_name, amount) - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(weapon) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(weapon) R.count_niche_stat(niche_name, amount) recalculate_top_weapon() ..() @@ -215,8 +215,8 @@ return var/datum/entity/player_stats/job/S = setup_job_stats(job, FALSE) S.steps_walked += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job, FALSE) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job, FALSE) R.steps_walked += amount /mob/living/carbon/human/track_steps_walked(amount = 1) @@ -237,8 +237,8 @@ if(isnull(S.total_hits)) S.total_hits = 0 S.total_hits += amount - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(weapon) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(weapon) R.total_hits +=amount /mob/proc/track_hit(weapon, amount = 1) @@ -256,8 +256,8 @@ if(isnull(S.total_shots)) S.total_shots = 0 S.total_shots += amount - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(weapon) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(weapon) R.total_shots +=amount /datum/entity/player_stats/human/proc/count_personal_shot(job, amount = 1) @@ -267,8 +267,8 @@ if(isnull(S.total_shots)) S.total_shots = 0 S.total_shots += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_shots += amount /mob/proc/track_shot(weapon, amount = 1) @@ -288,8 +288,8 @@ if(isnull(S.total_shots_hit)) S.total_shots_hit = 0 S.total_shots_hit += amount - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(weapon) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(weapon) R.total_shots_hit += amount /datum/entity/player_stats/human/proc/count_personal_shot_hit(job, amount = 1) @@ -299,8 +299,8 @@ if(isnull(S.total_shots_hit)) S.total_shots_hit = 0 S.total_shots_hit += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_shots_hit += amount /mob/proc/track_shot_hit(weapon, shot_mob, amount = 1) @@ -312,13 +312,13 @@ human_stats.total_shots_hit += amount human_stats.count_weapon_shot_hit(weapon, amount) human_stats.count_personal_shot_hit(job, amount) - if(round_statistics) - round_statistics.total_projectiles_hit += amount + if(GLOB.round_statistics) + GLOB.round_statistics.total_projectiles_hit += amount if(shot_mob) if(ishuman(shot_mob)) - round_statistics.total_projectiles_hit_human += amount + GLOB.round_statistics.total_projectiles_hit_human += amount else if(isxeno(shot_mob)) - round_statistics.total_projectiles_hit_xeno += amount + GLOB.round_statistics.total_projectiles_hit_xeno += amount /datum/entity/player_stats/human/proc/count_weapon_friendly_fire(weapon, amount = 1) if(!weapon) @@ -327,8 +327,8 @@ if(isnull(S.total_friendly_fire)) S.total_friendly_fire = 0 S.total_friendly_fire += amount - if(round_statistics) - var/datum/entity/weapon_stats/R = round_statistics.setup_weapon_stats(weapon) + if(GLOB.round_statistics) + var/datum/entity/weapon_stats/R = GLOB.round_statistics.setup_weapon_stats(weapon) R.total_friendly_fire += amount /datum/entity/player_stats/human/proc/count_personal_friendly_fire(job, amount = 1) @@ -338,8 +338,8 @@ if(isnull(S.total_friendly_fire)) S.total_friendly_fire = 0 S.total_friendly_fire += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_friendly_fire += amount /mob/proc/track_friendly_fire(weapon, amount = 1) @@ -359,8 +359,8 @@ if(isnull(S.total_revives)) S.total_revives = 0 S.total_revives += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_revives += amount /mob/proc/track_revive(job, amount = 1) @@ -379,8 +379,8 @@ if(isnull(S.total_lives_saved)) S.total_lives_saved = 0 S.total_lives_saved += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_lives_saved += amount /mob/proc/track_life_saved(job, amount = 1) @@ -399,8 +399,8 @@ if(isnull(S.total_screams)) S.total_screams = 0 S.total_screams += amount - if(round_statistics) - var/datum/entity/player_stats/job/R = round_statistics.setup_job_stats(job) + if(GLOB.round_statistics) + var/datum/entity/player_stats/job/R = GLOB.round_statistics.setup_job_stats(job) R.total_screams += amount /mob/proc/track_scream(job, amount = 1) diff --git a/code/datums/statistics/entities/medal_stats.dm b/code/datums/statistics/entities/medal_stats.dm index 8a428e2d3c..c5684e3cd9 100644 --- a/code/datums/statistics/entities/medal_stats.dm +++ b/code/datums/statistics/entities/medal_stats.dm @@ -57,7 +57,7 @@ return var/datum/entity/statistic/medal/new_medal = DB_ENTITY(/datum/entity/statistic/medal) - var/datum/entity/player/player_entity = get_player_from_key(new_recipient.ckey) + var/datum/entity/player/player_entity = get_player_from_key(new_recipient.persistent_ckey) if(player_entity) new_medal.player_id = player_entity.id diff --git a/code/datums/statistics/entities/panel_stats.dm b/code/datums/statistics/entities/panel_stats.dm index e507d5d81a..c629256736 100644 --- a/code/datums/statistics/entities/panel_stats.dm +++ b/code/datums/statistics/entities/panel_stats.dm @@ -3,9 +3,9 @@ //******************************************************* -/datum/entity/player_entity/proc/show_statistics(mob/user, datum/entity/statistic/round/viewing_round = round_statistics, update_data = FALSE) +/datum/entity/player_entity/proc/show_statistics(mob/user, datum/entity/statistic/round/viewing_round = GLOB.round_statistics, update_data = FALSE) if(update_data) - update_panel_data(round_statistics) + update_panel_data(GLOB.round_statistics) ui_interact(user) /datum/entity/player_entity/proc/ui_interact(mob/user, ui_key = "statistics", datum/nanoui/ui, force_open = 1) @@ -13,7 +13,7 @@ data["subMenu"] = subMenu data["dataMenu"] = dataMenu - ui = nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) + ui = SSnano.nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) if(!ui) ui = new(user, src, ui_key, "cm_stat_panel.tmpl", "Statistics", 450, 700, null, -1) @@ -31,7 +31,7 @@ if(href_list["dataMenu"]) dataMenu = href_list["dataMenu"] - nanomanager.update_uis(src) + SSnano.nanomanager.update_uis(src) /datum/entity/player_entity/proc/check_eye() return @@ -68,7 +68,7 @@ //*******************PLAYER DATA************************* //******************************************************* -/datum/entity/player_entity/proc/update_panel_data(datum/entity/statistic/round/viewing_round = round_statistics) +/datum/entity/player_entity/proc/update_panel_data(datum/entity/statistic/round/viewing_round = GLOB.round_statistics) data["current_time"] = worldtime2text() if(viewing_round) @@ -463,7 +463,7 @@ total_deaths_list += list(list("name" = S.name, "value" = S.value)) for(var/datum/entity/statistic/death/S in death_stats_list) - if(new_death_stats_list.len >= STATISTICS_DEATH_LIST_LEN) + if(length(new_death_stats_list) >= STATISTICS_DEATH_LIST_LEN) break var/list/damage_list = list() if(S.total_brute) @@ -496,7 +496,7 @@ "y" = S.y, "z" = S.z )) - if(new_death_stats_list.len < STATISTICS_DEATH_LIST_LEN) + if(length(new_death_stats_list) < STATISTICS_DEATH_LIST_LEN) new_death_stats_list += death for(var/iteration in weapon_stats_list) diff --git a/code/datums/statistics/entities/player_stats.dm b/code/datums/statistics/entities/player_stats.dm index d9fbd3b11e..a8444c1a58 100644 --- a/code/datums/statistics/entities/player_stats.dm +++ b/code/datums/statistics/entities/player_stats.dm @@ -81,10 +81,10 @@ /mob/proc/track_death_calculations() if(statistic_exempt || statistic_tracked) return - if(round_statistics) - round_statistics.recalculate_nemesis() + if(GLOB.round_statistics) + GLOB.round_statistics.recalculate_nemesis() if(mind && mind.player_entity) - mind.player_entity.update_panel_data(round_statistics) + mind.player_entity.update_panel_data(GLOB.round_statistics) statistic_tracked = TRUE //***************** diff --git a/code/datums/statistics/entities/round_stats.dm b/code/datums/statistics/entities/round_stats.dm index baed6befa9..79493ca87e 100644 --- a/code/datums/statistics/entities/round_stats.dm +++ b/code/datums/statistics/entities/round_stats.dm @@ -84,9 +84,9 @@ if(!round_stats) var/datum/entity/mc_round/mc_round = SSentity_manager.select(/datum/entity/mc_round) var/operation_name - operation_name = "[pick(operation_titles)]" - operation_name += " [pick(operation_prefixes)]" - operation_name += "-[pick(operation_postfixes)]" + operation_name = "[pick(GLOB.operation_titles)]" + operation_name += " [pick(GLOB.operation_prefixes)]" + operation_name += "-[pick(GLOB.operation_postfixes)]" // Round stats round_stats = DB_ENTITY(/datum/entity/statistic/round) @@ -98,7 +98,7 @@ round_stats.save() // Setup the global reference - round_statistics = round_stats + GLOB.round_statistics = round_stats // Map stats var/datum/entity/statistic/map/new_map = DB_EKEY(/datum/entity/statistic/map, SSmapping.configs[GROUND_MAP].map_name) @@ -300,8 +300,8 @@ if(death_data["death_stats_list"]) new_death_list = death_data["death_stats_list"] new_death_list.Insert(1, death) - if(new_death_list.len > STATISTICS_DEATH_LIST_LEN) - new_death_list.Cut(STATISTICS_DEATH_LIST_LEN+1, new_death_list.len) + if(length(new_death_list) > STATISTICS_DEATH_LIST_LEN) + new_death_list.Cut(STATISTICS_DEATH_LIST_LEN+1, length(new_death_list)) death_data["death_stats_list"] = new_death_list track_dead_participant(new_death.faction_name) @@ -376,7 +376,7 @@ stats += "Xenos remaining: [end_of_round_xenos]\n" stats += "Hijack time: [duration2text(round_hijack_time)]\n" - stats += "[log_end]" + stats += "[GLOB.log_end]" WRITE_LOG(GLOB.round_stats, stats) @@ -393,7 +393,8 @@ return TRUE /datum/action/show_round_statistics/action_activate() + . = ..() if(!can_use_action()) return - owner.client.player_entity.show_statistics(owner, round_statistics, TRUE) + owner.client.player_entity.show_statistics(owner, GLOB.round_statistics, TRUE) diff --git a/code/datums/statistics/entities/xeno_stats.dm b/code/datums/statistics/entities/xeno_stats.dm index 8fff4a2e5d..9703c8c5e3 100644 --- a/code/datums/statistics/entities/xeno_stats.dm +++ b/code/datums/statistics/entities/xeno_stats.dm @@ -78,15 +78,15 @@ S.total_rounds_played++ S.round_played = TRUE S.total_playtime += time - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.total_playtime += time /datum/entity/player_stats/xeno/count_personal_death(caste) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.total_deaths++ - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.total_deaths++ //****************** @@ -96,16 +96,16 @@ /datum/entity/player_stats/xeno/count_personal_human_kill(job_name, cause, caste) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.count_human_kill(job_name, cause) - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.count_human_kill(job_name, cause) recalculate_top_caste() /datum/entity/player_stats/xeno/count_personal_xeno_kill(caste_type, cause, caste) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.count_xeno_kill(caste_type, cause) - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.count_xeno_kill(caste_type, cause) recalculate_top_caste() @@ -116,15 +116,15 @@ /datum/entity/player_stats/xeno/count_personal_niche_stat(niche_name, amount = 1, caste) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.count_niche_stat(niche_name, amount) - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.count_niche_stat(niche_name, amount) /datum/entity/player_stats/xeno/proc/track_personal_abilities_used(caste, ability, amount = 1) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.track_personal_abilities_used(ability, amount) - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.track_personal_abilities_used(ability, amount) /mob/living/carbon/xenomorph/proc/track_ability_usage(ability, caste, amount = 1) @@ -137,8 +137,8 @@ /datum/entity/player_stats/xeno/count_personal_steps_walked(caste, amount = 1) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.steps_walked += amount - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.steps_walked += amount /mob/living/carbon/xenomorph/track_steps_walked(amount = 1) @@ -154,8 +154,8 @@ /datum/entity/player_stats/xeno/proc/count_personal_slashes(caste, amount = 1) var/datum/entity/player_stats/caste/S = setup_caste_stats(caste) S.total_hits += amount - if(round_statistics) - var/datum/entity/player_stats/caste/R = round_statistics.setup_caste_stats(caste) + if(GLOB.round_statistics) + var/datum/entity/player_stats/caste/R = GLOB.round_statistics.setup_caste_stats(caste) R.total_hits += amount /mob/living/carbon/xenomorph/proc/track_slashes(caste, amount = 1) @@ -167,5 +167,5 @@ xeno_stats.total_hits += amount if(caste_type) xeno_stats.count_personal_slashes(caste_type, amount) - if(round_statistics) - round_statistics.total_slashes += amount + if(GLOB.round_statistics) + GLOB.round_statistics.total_slashes += amount diff --git a/code/datums/statistics/random_facts/ib_fact.dm b/code/datums/statistics/random_facts/ib_fact.dm new file mode 100644 index 0000000000..dca8c303b7 --- /dev/null +++ b/code/datums/statistics/random_facts/ib_fact.dm @@ -0,0 +1,9 @@ +/datum/random_fact/ib + statistic_name = "people" + statistic_verb = "fixed internal bleeding for" + +/datum/random_fact/ib/life_grab_stat(mob/fact_mob) + return fact_mob.life_ib_total + +/datum/random_fact/ib/death_grab_stat(datum/entity/statistic/death/fact_death) + return fact_death.total_ib_fixed diff --git a/code/datums/statistics/random_facts/random_fact.dm b/code/datums/statistics/random_facts/random_fact.dm index 76c6e82f77..d327bd36f4 100644 --- a/code/datums/statistics/random_facts/random_fact.dm +++ b/code/datums/statistics/random_facts/random_fact.dm @@ -24,8 +24,8 @@ var/datum/entity/statistic/death/death_to_report = null var/mob/mob_to_report = null - if(round_statistics && length(round_statistics.death_stats_list)) - for(var/datum/entity/statistic/death/death in round_statistics.death_stats_list) + if(GLOB.round_statistics && length(GLOB.round_statistics.death_stats_list)) + for(var/datum/entity/statistic/death/death in GLOB.round_statistics.death_stats_list) if(!check_human && !death.is_xeno) continue if(!check_xeno && death.is_xeno) diff --git a/code/datums/status_effects/_status_effect_helpers.dm b/code/datums/status_effects/_status_effect_helpers.dm index 0ee9522006..02a4f9a5cc 100644 --- a/code/datums/status_effects/_status_effect_helpers.dm +++ b/code/datums/status_effects/_status_effect_helpers.dm @@ -40,6 +40,7 @@ // Create the status effect with our mob + our arguments var/datum/status_effect/new_instance = new new_effect(arguments) + SEND_SIGNAL(src, COMSIG_LIVING_APPLY_EFFECT, new_instance) if(!QDELETED(new_instance)) return new_instance diff --git a/code/datums/status_effects/stacking_effect.dm b/code/datums/status_effects/stacking_effect.dm index 3ef5855938..5812bcaacd 100644 --- a/code/datums/status_effects/stacking_effect.dm +++ b/code/datums/status_effects/stacking_effect.dm @@ -7,7 +7,7 @@ /// How many stacks are currently accumulated. /// Also, the default stacks number given on application. var/stacks = 0 - // Deciseconds until ticks start occuring, which removes stacks + // Deciseconds until ticks start occurring, which removes stacks /// (first stack will be removed at this time plus tick_interval) var/delay_before_decay /// How many stacks are lost per tick (decay trigger) @@ -74,7 +74,7 @@ return FALSE stacks += stacks_added if(stacks > 0) - if(stacks >= stack_threshold && !threshold_crossed) //threshold_crossed check prevents threshold effect from occuring if changing from above threshold to still above threshold + if(stacks >= stack_threshold && !threshold_crossed) //threshold_crossed check prevents threshold effect from occurring if changing from above threshold to still above threshold threshold_crossed = TRUE on_threshold_cross() if(consumed_on_threshold) diff --git a/code/datums/supply_packs/_supply_packs.dm b/code/datums/supply_packs/_supply_packs.dm index 061779d9e5..5bcd6937f6 100644 --- a/code/datums/supply_packs/_supply_packs.dm +++ b/code/datums/supply_packs/_supply_packs.dm @@ -20,7 +20,6 @@ var/group = null var/buyable = 1 ///Can this pack be bought? These packs don't show up at all - they have to be spawned externally (fe: DEFCON ASRS) var/randomised_num_contained = 0 //Randomly picks X of items out of the contains list instead of using all. - var/iteration_needed = 0 /// How many W-Y dollars are deducted from the supply controller. Only use for contraband. var/dollar_cost = 0 /// How much "heat" this crate adds, too much heat will send an investigation. Only use for contraband. diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm index 6fdb2b4f09..4fc69d6653 100644 --- a/code/datums/supply_packs/ammo.dm +++ b/code/datums/supply_packs/ammo.dm @@ -135,7 +135,7 @@ group = "Ammo" /datum/supply_packs/ammo_m4ra_mag_box_ap - name = "Magazine box (MRRA, 16x AP mags)" + name = "Magazine box (M4RA, 16x AP mags)" contains = list( /obj/item/ammo_box/magazine/m4ra/ap, ) @@ -240,6 +240,16 @@ containername = "\improper shotgun flechette crate" group = "Ammo" +/datum/supply_packs/ammo_shell_box_breaching + name = "Shell box (16g) (120x breaching shells)" + contains = list( + /obj/item/ammo_box/magazine/shotgun/light/breaching, + ) + cost = 40 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper shotgun breaching crate" + group = "Ammo" + //------------------------For vp70 ---------------- /datum/supply_packs/ammo_vp70_mag_box_ap @@ -281,7 +291,7 @@ ) name = "M41AE2 HPR Magazines crate (HPR ammo box x2)" cost = 20 - containertype = /obj/structure/closet/crate + containertype = /obj/structure/closet/crate/ammo containername = "\improper M41AE2 HPR magazines crate" group = "Ammo" @@ -291,11 +301,23 @@ /obj/item/ammo_magazine/rifle/lmg/holo_target, ) name = "M41AE2 HPR Holo-Target Magazines crate (HPR HT ammo box x2)" - cost = 30 - containertype = /obj/structure/closet/crate + cost = 20 + containertype = /obj/structure/closet/crate/ammo containername = "\improper M41AE2 HPR holo-target magazines crate" group = "Ammo" +/datum/supply_packs/ammo_xm51 + contains = list( + /obj/item/ammo_magazine/rifle/xm51, + /obj/item/ammo_magazine/rifle/xm51, + /obj/item/ammo_magazine/shotgun/light/breaching, + ) + name = "XM51 Ammo (2x mags) (1x small breaching shell box)" + cost = 20 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper XM51 ammo crate" + group = "Ammo" + //------------------------Smartgunner stuff---------------- /datum/supply_packs/ammo_smartgun_battery_pack @@ -324,15 +346,15 @@ //------------------------Sentries Ammo---------------- -/datum/supply_packs/ammo_sentry - name = "UA 571-C sentry ammunition (x2)" +/datum/supply_packs/ammo_sentry_shotgun + name = "UA 12-G sentry shotgun ammunition (x2)" contains = list( - /obj/item/ammo_magazine/sentry, - /obj/item/ammo_magazine/sentry, + /obj/item/ammo_magazine/sentry/shotgun, + /obj/item/ammo_magazine/sentry/shotgun, ) cost = 40 containertype = /obj/structure/closet/crate/ammo - containername = "\improper sentry ammo crate" + containername = "\improper sentry shotgun ammo crate" group = "Ammo" /datum/supply_packs/ammo_sentry_flamer @@ -346,15 +368,37 @@ containername = "\improper sentry flamer ammo crate" group = "Ammo" -/datum/supply_packs/ammo_sentry_shotgun - name = "UA 12-G sentry shotgun ammunition (x2)" +/datum/supply_packs/ammo_mini_sentry_flamer + name = "UA 45-F mini sentry flamer ammunition (x2)" contains = list( - /obj/item/ammo_magazine/sentry/shotgun, - /obj/item/ammo_magazine/sentry/shotgun, + /obj/item/ammo_magazine/sentry_flamer/mini, + /obj/item/ammo_magazine/sentry_flamer/mini, ) cost = 40 containertype = /obj/structure/closet/crate/ammo - containername = "\improper sentry shotgun ammo crate" + containername = "\improper mini sentry flamer ammo crate" + group = "Ammo" + +/datum/supply_packs/ammo_glob_sentry_flamer + name = "UA 60-FP sentry plasma incinerator tank (x2)" + contains = list( + /obj/item/ammo_magazine/sentry_flamer/glob, + /obj/item/ammo_magazine/sentry_flamer/glob, + ) + cost = 40 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper sentry plasma incinerator ammo crate" + group = "Ammo" + +/datum/supply_packs/ammo_sentry + name = "UA 571-C sentry ammunition (x2)" + contains = list( + /obj/item/ammo_magazine/sentry, + /obj/item/ammo_magazine/sentry, + ) + cost = 40 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper sentry ammo crate" group = "Ammo" //------------------------M240 flamer tanks---------------- @@ -397,6 +441,28 @@ containertype = /obj/structure/closet/crate/ammo/alt/flame group = "Ammo" +//------------------------Mounted guns ammo---------------- +/datum/supply_packs/ammo_m2c + name = "M2C ammunition crate (x2)" + contains = list( + /obj/item/ammo_magazine/m2c, + /obj/item/ammo_magazine/m2c, + ) + cost = 25 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper m2c ammunition crate" + group = "Ammo" + +/datum/supply_packs/ammo_m56d + name = "M56D drum magazine crate (x1)" + contains = list( + /obj/item/ammo_magazine/m56d, + ) + cost = 25 + containertype = /obj/structure/closet/crate/ammo + containername = "\improper m56d drum magazine crate" + group = "Ammo" + //This crate has a little bit of everything, mostly okay stuff, but it does have some really unique picks. /datum/supply_packs/ammo_surplus name = "Surplus ammo crate (various USCM magazines x10)" diff --git a/code/datums/supply_packs/black_market.dm b/code/datums/supply_packs/black_market.dm index 16811680f2..e80a64825e 100644 --- a/code/datums/supply_packs/black_market.dm +++ b/code/datums/supply_packs/black_market.dm @@ -102,7 +102,7 @@ Non-USCM items, from CLF, UPP, colonies, etc. Mostly combat-related. new /obj/item/clothing/head/helmet/marine/veteran/UPP(src) new /obj/item/clothing/under/marine/veteran/UPP(src) new /obj/item/clothing/suit/storage/marine/faction/UPP(src) - new /obj/item/clothing/shoes/marine/upp(src) + new /obj/item/clothing/shoes/marine/upp/knife(src) new /obj/item/clothing/gloves/marine/veteran(src) new /obj/item/storage/backpack/lightpack/five_slot(src) if(5) //freelancer @@ -643,7 +643,7 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted . = ..() var/obj/item/paper/nope = new(src) nope.name = "automated ASRS note" - nope.info = "Sorry! Your requested order of USCM PONCHO (X2) was not succesfully delivered because: 'No items of that type found in storage.'" + nope.info = "Sorry! Your requested order of USCM PONCHO (X2) was not successfully delivered because: 'No items of that type found in storage.'" nope.color = "green" nope.update_icon() @@ -657,7 +657,7 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted . = ..() var/obj/item/paper/nope = new(src) nope.name = "automated ASRS note" - nope.info = "Sorry! Your requested order of HIGH-EXPLOSIVE ARMOR-PIERCING M41A MAGAZINE (X3) was not succesfully delivered because: 'ERROR: UNABLE TO ENTER COMPARTMENT EXIT CODE 2342: EXPLOSION HAZARD'" + nope.info = "Sorry! Your requested order of HIGH-EXPLOSIVE ARMOR-PIERCING M41A MAGAZINE (X3) was not successfully delivered because: 'ERROR: UNABLE TO ENTER COMPARTMENT EXIT CODE 2342: EXPLOSION HAZARD'" nope.color = "green" nope.update_icon() @@ -723,6 +723,143 @@ USCM spare items, miscellaneous gear that's too niche and distant (or restricted contains = list(/obj/item/storage/box/guncase/m1911/socom) containertype = /obj/structure/largecrate/black_market +/* --- AMMO --- */ + +/datum/supply_packs/contraband/ammo + group = "Contraband Ammo" + +/datum/supply_packs/contraband/ammo/r4t + name = "45-70 bullet box crate (x300 rounds)" + dollar_cost = 135 + contains = list(/obj/item/ammo_box/magazine/lever_action) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/r4t/training + name = "45-70 bullet box crate (x300 training rounds)" + dollar_cost = 35 + contains = list(/obj/item/ammo_box/magazine/lever_action/training) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/m16 + name = "Magazine box (M16, 12x regular mags)" + dollar_cost = 100 + contains = list(/obj/item/ammo_box/magazine/M16) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/ar10 + name = "Magazine box (AR10, 12x regular mags)" + dollar_cost = 115 + contains = list(/obj/item/ammo_box/magazine/ar10) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/deagle + name = "Magazine box (Desert Eagle, 16x regular mags)" + dollar_cost = 180 + contains = list(/obj/item/ammo_box/magazine/deagle) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/deagle/hiap + name = "Magazine box (Desert Eagle, 16x HIAP mags)" + dollar_cost = 260 + contains = list(/obj/item/ammo_box/magazine/deagle/super/highimpact/ap/empty) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/type73 + name = "Magazine box (Type 73, 16x regular mags)" + dollar_cost = 60 + contains = list(/obj/item/ammo_box/magazine/type73) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/nsg + name = "Magazine box (NSG-23, 16x regular mags)" + dollar_cost = 140 + contains = list(/obj/item/ammo_box/magazine/nsg23) + containertype = /obj/structure/largecrate/black_market +/datum/supply_packs/contraband/ammo/mar30 + name = "Magazines box (MAR30, 10x regular mags)" + dollar_cost = 60 + contains = list(/obj/item/ammo_box/magazine/mar30) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/fp9000 + name = "Magazines box (FN FP9000, 10x mags)" + dollar_cost = 35 + contains = list(/obj/item/ammo_box/magazine/fp9000) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/mp27 + name = "Magazines box (MP-27, 12x mags)" + dollar_cost = 45 + contains = list(/obj/item/ammo_box/magazine/mp27) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/uzi + name = "Magazines box (UZI, 12x mags)" + dollar_cost = 25 + contains = list(/obj/item/ammo_box/magazine/uzi) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/mac15 + name = "Magazines box (MAC-15, 12x mags)" + dollar_cost = 15 + contains = list(/obj/item/ammo_box/magazine/mac15) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/pps43 + name = "Magazines box (Type-19, 10x regular mags)" + dollar_cost = 40 + contains = list(/obj/item/ammo_box/magazine/type19) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/b92fs + name = "Magazines box (Beretta 92FS, 16x mags)" + dollar_cost = 30 + contains = list(/obj/item/ammo_box/magazine/b92fs) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/kt42 + name = "Magazines box (KT-42, 16x mags)" + dollar_cost = 45 + contains = list(/obj/item/ammo_box/magazine/kt42) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/bizon + name = "Magazines box (Type 64, 10x mags)" + dollar_cost = 40 + contains = list(/obj/item/ammo_box/magazine/type64) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/m1911 + name = "Magazines box (M1911, 16x mags)" + dollar_cost = 40 + contains = list(/obj/item/ammo_box/magazine/m1911) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/mk45 + name = "Magazines box (MK-45 Automagnum, 16x mags)" + dollar_cost = 80 + contains = list(/obj/item/ammo_box/magazine/mk45) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/cmb + name = "Speed loaders box (CMB Spearhead, 16x HP loaders)" + dollar_cost = 70 + contains = list(/obj/item/ammo_box/magazine/spearhead) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/smw + name = "Speed loaders box (Smith and Wesson revolver, 12x loaders)" + dollar_cost = 30 + contains = list(/obj/item/ammo_box/magazine/snw) + containertype = /obj/structure/largecrate/black_market + +/datum/supply_packs/contraband/ammo/zhnk + name = "Speed loaders box (ZHNK-72, 12x loaders)" + dollar_cost = 30 + contains = list(/obj/item/ammo_box/magazine/zhnk) + containertype = /obj/structure/largecrate/black_market + + /* --- DEEP STORAGE --- */ /* @@ -750,8 +887,8 @@ This is where the RO can reclaim their lost honor and purchase the M44 custom, t dollar_cost = 10 containertype = /obj/structure/largecrate/black_market -/datum/supply_packs/contraband/deep_storage/xm42b_pipe - name = "10x99mm XM42B casing" +/datum/supply_packs/contraband/deep_storage/xm43e1_pipe + name = "10x99mm XM43E1 casing" contains = list(/obj/item/prop/helmetgarb/bullet_pipe) dollar_cost = 10 containertype = /obj/structure/largecrate/black_market diff --git a/code/datums/supply_packs/explosives.dm b/code/datums/supply_packs/explosives.dm index 22458ef3fa..f032d0f891 100644 --- a/code/datums/supply_packs/explosives.dm +++ b/code/datums/supply_packs/explosives.dm @@ -1,7 +1,7 @@ // Group to populate with all the explosives exept OB and mortar shell /datum/supply_packs/explosives - name = "surplus explosives crate (claymore mine x5, M40 HIDP x2, M40 HEDP x2, M15 Frag x2, M12 Blast x2)" + name = "surplus explosives crate (claymore mine x5, M40 HIDP x2, M40 HEDP x2, M15 Frag x2, M12 Blast x2, M40 MFHS x2)" contains = list( /obj/item/storage/box/explosive_mines, /obj/item/explosive/grenade/high_explosive, @@ -12,6 +12,8 @@ /obj/item/explosive/grenade/high_explosive/m15, /obj/item/explosive/grenade/high_explosive/pmc, /obj/item/explosive/grenade/high_explosive/pmc, + /obj/item/explosive/grenade/metal_foam, + /obj/item/explosive/grenade/metal_foam, ) cost = 40 containertype = /obj/structure/closet/crate/explosives @@ -87,6 +89,18 @@ containername = "\improper explosive M40 HEDP grenades crate (WARNING)" group = "Explosives" +/datum/supply_packs/explosives_sebb + name = "G2 electroshock grenades crate (x6)" + contains = list( + /obj/item/storage/box/packet/sebb, + /obj/item/storage/box/packet/sebb, + ) + cost = 30 + containertype = /obj/structure/closet/crate/explosives + containername = "\improper G2 electroshock grenades crate (WARNING)" + group = "Explosives" + + /datum/supply_packs/explosives_hedp name = "M40 HEDP blast grenade box crate (x25)" contains = list( @@ -97,25 +111,25 @@ containername = "\improper explosive HEDP grenade crate (WARNING)" group = "Explosives" -/datum/supply_packs/explosives_M40_HPDP - name = "M40 HPDP white phosphorus grenades crate (x6)" +/datum/supply_packs/explosives_M40_CCDP + name = "M40 CCDP chemical compound grenades crate (x6)" contains = list( /obj/item/storage/box/packet/phosphorus, /obj/item/storage/box/packet/phosphorus, ) cost = 30 containertype = /obj/structure/closet/crate/explosives - containername = "\improper M40 HPDP grenade crate (WARNING)" + containername = "\improper M40 CCDP grenade crate (WARNING)" group = "Explosives" -/datum/supply_packs/explosives_M40_HPDP_crate - name = "M40 HPDP white phosphorus grenade box crate (x25)" +/datum/supply_packs/explosives_M40_CCDP_crate + name = "M40 WPDP chemical compund grenade box crate (x25)" contains = list( /obj/item/storage/box/nade_box/phophorus, ) cost = 100 containertype = /obj/structure/closet/crate/explosives - containername = "\improper HPDP grenade crate (WARNING)" + containername = "\improper CCDP grenade crate (WARNING)" group = "Explosives" /datum/supply_packs/explosives_M40_HEFA @@ -172,6 +186,16 @@ containername = "\improper explosive M74 AGM-I grenades crate (WARNING)" group = "Explosives" +/datum/supply_packs/explosives_M74_AGM_I_box + name = "M74 Airburst Grenade Munition incendiary grenades box crate (x25)" + contains = list( + /obj/item/storage/box/nade_box/airburstincen, + ) + cost = 100 + containertype = /obj/structure/closet/crate/explosives + containername = "\improper M74 Airburst Grenade Munition incendiary grenades crate (WARNING)" + group = "Explosives" + /datum/supply_packs/explosives_airburst_smoke name = "M74 Airburst Grenade Munition smoke grenades crate (x6)" contains = list( diff --git a/code/datums/supply_packs/food.dm b/code/datums/supply_packs/food.dm index 9e0527aed6..f74567c78a 100644 --- a/code/datums/supply_packs/food.dm +++ b/code/datums/supply_packs/food.dm @@ -1,144 +1,47 @@ //Food.Regrouping all the ASRS crate related to food here. - -//All the ingredients that you can grown. - -/datum/supply_packs/potato - name = "Potatoes(x20)" - contains = list( - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper Potato crate" - group = "Food" - -/datum/supply_packs/tomato - name = "tomato (x20)" - contains = list( - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper Tomato crate" - group = "Food" - -/datum/supply_packs/wheat - name = "wheat (x20)" - contains = list( - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - /obj/item/reagent_container/food/snacks/grown/wheat, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper Wheat crate" - group = "Food" - -//All the meats - -/datum/supply_packs/meat - name = "meat(x5)" - contains = list( - /obj/item/reagent_container/food/snacks/meat, - /obj/item/reagent_container/food/snacks/meat, - /obj/item/reagent_container/food/snacks/meat, - /obj/item/reagent_container/food/snacks/meat, - /obj/item/reagent_container/food/snacks/meat, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper meat crate" - group = "Food" - -/datum/supply_packs/carp_fillet - name = "carp fillet (x5)" - contains = list( - /obj/item/reagent_container/food/snacks/carpmeat, - /obj/item/reagent_container/food/snacks/carpmeat, - /obj/item/reagent_container/food/snacks/carpmeat, - /obj/item/reagent_container/food/snacks/carpmeat, - /obj/item/reagent_container/food/snacks/carpmeat, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper carp filet crate" - group = "Food" - -//all the condiment type items - -/datum/supply_packs/condiment - name = "crate of condiments" +// crate of random ingredient that you can buy in vendor in kitchen +/datum/supply_packs/ingredient + name = "surplus boxes of ingredients(x6 boxes)" + randomised_num_contained = 6 contains = list( - /obj/item/reagent_container/food/condiment/enzyme, - /obj/item/reagent_container/food/condiment/sugar, - /obj/item/reagent_container/food/condiment/saltshaker, - /obj/item/reagent_container/food/condiment/peppermill, + /obj/item/storage/fancy/egg_box, + /obj/item/storage/box/fish, + /obj/item/storage/box/meat, + /obj/item/storage/box/milk, + /obj/item/storage/box/soymilk, + /obj/item/storage/box/enzyme, + /obj/item/storage/box/flour, + /obj/item/storage/box/sugar, + /obj/item/storage/box/apple, + /obj/item/storage/box/banana, + /obj/item/storage/box/chanterelle, + /obj/item/storage/box/cherries, + /obj/item/storage/box/chili, + /obj/item/storage/box/cabbage, + /obj/item/storage/box/carrot, + /obj/item/storage/box/corn, + /obj/item/storage/box/eggplant, + /obj/item/storage/box/lemon, + /obj/item/storage/box/lime, + /obj/item/storage/box/orange, + /obj/item/storage/box/potato, + /obj/item/storage/box/tomato, + /obj/item/storage/box/whitebeet, /obj/item/reagent_container/food/condiment/hotsauce/cholula, /obj/item/reagent_container/food/condiment/hotsauce/franks, /obj/item/reagent_container/food/condiment/hotsauce/sriracha, /obj/item/reagent_container/food/condiment/hotsauce/tabasco, + /obj/item/reagent_container/food/drinks/bottle/whiskey, + /obj/item/reagent_container/food/drinks/bottle/tequila, + /obj/item/reagent_container/food/drinks/bottle/rum, + /obj/item/reagent_container/food/drinks/bottle/wine, ) cost = 10 containertype = /obj/structure/closet/crate/freezer - containername = "\improper crate of condiment" + containername = "\improper surplus of ingredients crate" group = "Food" - //all the finish snacks. +//all the finish snacks. /datum/supply_packs/donuts name = "box of donuts (x5)" @@ -165,47 +68,6 @@ containername = "\improper USCM MRE crate(x2)" group = "Food" -/datum/supply_packs/funfood - name = "special ingredients crate (x6)" - randomised_num_contained = 6 - contains = list( - /obj/item/reagent_container/food/condiment/enzyme, - /obj/item/reagent_container/food/condiment/saltshaker, - /obj/item/reagent_container/food/condiment/saltshaker, - /obj/item/reagent_container/food/condiment/saltshaker, - /obj/item/reagent_container/food/condiment/peppermill, - /obj/item/reagent_container/food/condiment/peppermill, - /obj/item/reagent_container/food/condiment/peppermill, - /obj/item/reagent_container/food/condiment/sugar, - /obj/item/reagent_container/food/condiment/sugar, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/grown/potato, - /obj/item/reagent_container/food/snacks/mint, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/tomato, - /obj/item/reagent_container/food/snacks/grown/carrot, - /obj/item/reagent_container/food/snacks/grown/carrot, - /obj/item/reagent_container/food/snacks/grown/lemon, - /obj/item/reagent_container/food/snacks/grown/lemon, - /obj/item/reagent_container/food/snacks/grown/orange, - /obj/item/reagent_container/food/snacks/grown/orange, - /obj/item/reagent_container/food/snacks/grown/lime, - /obj/item/reagent_container/food/snacks/grown/lime, - /obj/item/reagent_container/food/drinks/bottle/whiskey, - /obj/item/reagent_container/food/drinks/bottle/tequila, - /obj/item/reagent_container/food/drinks/bottle/rum, - /obj/item/reagent_container/food/drinks/bottle/wine, - /obj/item/reagent_container/food/drinks/bottle/wine, - /obj/item/reagent_container/food/drinks/bottle/wine, - ) - cost = 10 - containertype = /obj/structure/closet/crate/freezer - containername = "\improper Special ingredients crate" - group = "Food" - /datum/supply_packs/pizzas name = "pizza ready-to-eat (x3)" contains = list( diff --git a/code/datums/supply_packs/medical.dm b/code/datums/supply_packs/medical.dm index 05cb4d2f34..acfb9fe179 100644 --- a/code/datums/supply_packs/medical.dm +++ b/code/datums/supply_packs/medical.dm @@ -17,13 +17,58 @@ /obj/item/storage/pill_bottle/peridaxon, /obj/item/storage/box/pillbottles, ) + cost = 15 + containertype = /obj/structure/closet/crate/medical + containername = "medical crate" + group = "Medical" + +/datum/supply_packs/medical_restock_cart + name = "medical restock cart" + contains = list( + /obj/structure/restock_cart/medical, + ) cost = 20 + containertype = null + containername = "medical restock cart" + group = "Medical" + +/datum/supply_packs/medical_reagent_cart + name = "medical reagent restock cart" + contains = list( + /obj/structure/restock_cart/medical/reagent, + ) + cost = 20 + containertype = null + containername = "medical reagent restock cart" + group = "Medical" + +/datum/supply_packs/pillbottle + name = "pill bottle crate (x2 each)" + contains = list( + /obj/item/storage/pill_bottle/inaprovaline, + /obj/item/storage/pill_bottle/antitox, + /obj/item/storage/pill_bottle/bicaridine, + /obj/item/storage/pill_bottle/dexalin, + /obj/item/storage/pill_bottle/kelotane, + /obj/item/storage/pill_bottle/tramadol, + /obj/item/storage/pill_bottle/peridaxon, + /obj/item/storage/pill_bottle/inaprovaline, + /obj/item/storage/pill_bottle/antitox, + /obj/item/storage/pill_bottle/bicaridine, + /obj/item/storage/pill_bottle/dexalin, + /obj/item/storage/pill_bottle/kelotane, + /obj/item/storage/pill_bottle/tramadol, + /obj/item/storage/pill_bottle/peridaxon, + /obj/item/storage/box/pillbottles, + /obj/item/storage/box/pillbottles, + ) + cost = 15 containertype = /obj/structure/closet/crate/medical containername = "medical crate" group = "Medical" /datum/supply_packs/firstaid - name = "first aid kit crate (2x each)" + name = "first aid kit crate (x2 each)" contains = list( /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular, @@ -36,7 +81,7 @@ /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, ) - cost = 20 + cost = 11 containertype = /obj/structure/closet/crate/medical containername = "medical crate" group = "Medical" @@ -49,7 +94,7 @@ /obj/item/storage/box/bodybags, /obj/item/storage/box/bodybags, ) - cost = 20 + cost = 7 containertype = /obj/structure/closet/crate/medical containername = "body bag crate" group = "Medical" @@ -61,7 +106,7 @@ /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, ) - cost = 40 + cost = 15 containertype = /obj/structure/closet/crate/medical containername = "stasis bag crate" group = "Medical" @@ -76,7 +121,7 @@ /obj/item/storage/box/masks, /obj/item/storage/box/gloves, ) - cost = 30 + cost = 25 containertype = /obj/structure/closet/crate/secure/surgery containername = "surgery crate" access = ACCESS_MARINE_MEDBAY diff --git a/code/datums/supply_packs/mortar.dm b/code/datums/supply_packs/mortar.dm index 3f075cad63..c9f53e49ce 100644 --- a/code/datums/supply_packs/mortar.dm +++ b/code/datums/supply_packs/mortar.dm @@ -72,3 +72,18 @@ containertype = /obj/structure/closet/crate/secure/mortar_ammo containername = "\improper M402 mortar flare shells crate" group = "Mortar" + +/datum/supply_packs/ammo_mortar_frag + name = "M402 mortar shells crate (x6 Frag)" + cost = 20 + contains = list( + /obj/item/mortar_shell/frag, + /obj/item/mortar_shell/frag, + /obj/item/mortar_shell/frag, + /obj/item/mortar_shell/frag, + /obj/item/mortar_shell/frag, + /obj/item/mortar_shell/frag, + ) + containertype = /obj/structure/closet/crate/secure/mortar_ammo + containername = "\improper M402 mortar frag shells crate" + group = "Mortar" diff --git a/code/datums/supply_packs/operations.dm b/code/datums/supply_packs/operations.dm index 6d5e5d1475..fd715cddce 100644 --- a/code/datums/supply_packs/operations.dm +++ b/code/datums/supply_packs/operations.dm @@ -10,21 +10,14 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/warhead/incendiary, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/warhead/incendiary, ) name = "OB Incendiary Crate" cost = 0 containertype = /obj/structure/closet/crate/secure/ob - containername = "OB Ammo Crate (Incendiary x2)" + containername = "OB Ammo Crate (Incendiary)" buyable = 0 group = "Operations" - iteration_needed = null /datum/supply_packs/ob_explosive contains = list( @@ -34,21 +27,14 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/warhead/explosive, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/warhead/explosive, ) name = "OB HE Crate" cost = 0 containertype = /obj/structure/closet/crate/secure/ob - containername = "OB Ammo Crate (HE x2)" + containername = "OB Ammo Crate (HE)" buyable = 0 group = "Operations" - iteration_needed = null /datum/supply_packs/ob_cluster contains = list( @@ -58,21 +44,14 @@ /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/ob_fuel, /obj/structure/ob_ammo/warhead/cluster, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/ob_fuel, - /obj/structure/ob_ammo/warhead/cluster, ) name = "OB Cluster Crate" cost = 0 containertype = /obj/structure/closet/crate/secure/ob - containername = "OB Ammo Crate (Cluster x2)" + containername = "OB Ammo Crate (Cluster)" buyable = 0 group = "Operations" - iteration_needed = null /datum/supply_packs/telecommsparts name = "Replacement Telecommunications Parts" @@ -99,7 +78,6 @@ containertype = /obj/structure/machinery/nuclearbomb buyable = 0 group = "Operations" - iteration_needed = null /datum/supply_packs/technuclearbomb name = "Encrypted Operational Nuke" @@ -107,19 +85,17 @@ containertype = /obj/structure/machinery/nuclearbomb/tech buyable = 0 group = "Operations" - iteration_needed = null /datum/supply_packs/spec_kits name = "Weapons Specialist Kits" contains = list( - /obj/item/spec_kit/asrs, - /obj/item/spec_kit/asrs, - /obj/item/spec_kit/asrs, - /obj/item/spec_kit/asrs, + /obj/item/spec_kit/rifleman, + /obj/item/spec_kit/rifleman, + /obj/item/spec_kit/rifleman, + /obj/item/spec_kit/rifleman, ) cost = 0 containertype = /obj/structure/closet/crate/supply containername = "weapons specialist kits crate" buyable = 0 group = "Operations" - iteration_needed = null diff --git a/code/datums/supply_packs/restricted_equipment.dm b/code/datums/supply_packs/restricted_equipment.dm index 452ef31390..bc13d0fbd6 100644 --- a/code/datums/supply_packs/restricted_equipment.dm +++ b/code/datums/supply_packs/restricted_equipment.dm @@ -4,7 +4,7 @@ name = "B12 pattern marine armor crate (x1 helmet, x1 armor)" contains = list( /obj/item/clothing/head/helmet/marine/leader, - /obj/item/clothing/suit/storage/marine/leader, + /obj/item/clothing/suit/storage/marine/medium/leader, ) cost = 20 containertype = /obj/structure/closet/crate @@ -15,9 +15,29 @@ name = "M4 pattern marine armor crate (x1 helmet, x1 armor)" contains = list( /obj/item/clothing/head/helmet/marine/rto, - /obj/item/clothing/suit/storage/marine/rto, + /obj/item/clothing/suit/storage/marine/medium/rto, ) cost = 20 containertype = /obj/structure/closet/crate containername = "M4 pattern marine armor crate" group = "Restricted Equipment" + +/datum/supply_packs/intel_kit + name = "Field Intelligence Support Kit crate (x1 fulton pack, x1 data detector, x1 intel pamphlet, x1 large document pouch, 1x intel radio key)" + contains = list( + /obj/item/storage/box/kit/mini_intel, + ) + cost = 20 + containertype = /obj/structure/closet/crate + containername = "Field Intelligence Support Kit crate" + group = "Restricted Equipment" + +/datum/supply_packs/jtac_kit + name = "JTAC Radio Kit crate (x1 full flare gun belt, x2 M89-S signal flare packs, 1x laser designator, 1x jtac radio key, 1x radiopack)" + contains = list( + /obj/item/storage/box/kit/mini_jtac, + ) + cost = 30 + containertype = /obj/structure/closet/crate + containername = "JTAC Radio Kit crate" + group = "Restricted Equipment" diff --git a/code/datums/supply_packs/spec_ammo.dm b/code/datums/supply_packs/spec_ammo.dm index 7931a4d402..889d2e25b8 100644 --- a/code/datums/supply_packs/spec_ammo.dm +++ b/code/datums/supply_packs/spec_ammo.dm @@ -109,10 +109,8 @@ containername = "M42A Incendiary Magazine Crate" group = "Weapons Specialist Ammo" -//XM42B - Disabled during testing per request. -/* /datum/supply_packs/ammo_amr_marksman - name = "XM42B anti-materiel rifle marksman magazines crate (x5)" + name = "XM43E1 anti-materiel rifle marksman magazines crate (x5)" contains = list( /obj/item/ammo_magazine/sniper/anti_materiel, /obj/item/ammo_magazine/sniper/anti_materiel, @@ -122,9 +120,9 @@ ) cost = 30 containertype = /obj/structure/closet/crate/ammo - containername = "XM42B Anti-Materiel Magazine Crate" - group = "Specialist Ammo" -*/ + containername = "XM43E1 Marksman Magazine Crate" + group = "Weapons Specialist Ammo" + //M4RA /datum/supply_packs/ammo_scout_mix @@ -157,13 +155,11 @@ group = "Weapons Specialist Ammo" /datum/supply_packs/ammo_scout_incendiary - name = "M4RA Scout Incendiary Magazine Crate (x5)" + name = "M4RA Scout Incendiary Magazine Crate (x3)" contains = list( /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, - /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, - /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, ) cost = 30 containertype = /obj/structure/closet/crate/ammo @@ -171,13 +167,11 @@ group = "Weapons Specialist Ammo" /datum/supply_packs/ammo_scout_impact - name = "M4RA Scout Impact Magazine Crate (x5)" + name = "M4RA Scout Impact Magazine Crate (x3)" contains = list( /obj/item/ammo_magazine/rifle/m4ra/custom/impact, /obj/item/ammo_magazine/rifle/m4ra/custom/impact, /obj/item/ammo_magazine/rifle/m4ra/custom/impact, - /obj/item/ammo_magazine/rifle/m4ra/custom/impact, - /obj/item/ammo_magazine/rifle/m4ra/custom/impact, ) cost = 30 containertype = /obj/structure/closet/crate/ammo diff --git a/code/datums/supply_packs/vehicle_ammo.dm b/code/datums/supply_packs/vehicle_ammo.dm index 5dad91d27e..43ce36ec2b 100644 --- a/code/datums/supply_packs/vehicle_ammo.dm +++ b/code/datums/supply_packs/vehicle_ammo.dm @@ -148,3 +148,15 @@ containertype = /obj/structure/closet/crate/ammo containername = "M-87F Flare Launcher ammo crate" group = "Vehicle Ammo" + +/datum/supply_packs/ammo_arcsentry + name = "RE700 Rotary Cannon magazines (x3)" + contains = list( + /obj/item/ammo_magazine/hardpoint/arc_sentry, + /obj/item/ammo_magazine/hardpoint/arc_sentry, + /obj/item/ammo_magazine/hardpoint/arc_sentry, + ) + cost = 20 + containertype = /obj/structure/closet/crate/ammo + containername = "RE700 Rotary Cannon ammo crate" + group = "Vehicle Ammo" diff --git a/code/datums/supply_packs/vehicle_equipment.dm b/code/datums/supply_packs/vehicle_equipment.dm new file mode 100644 index 0000000000..df106761d4 --- /dev/null +++ b/code/datums/supply_packs/vehicle_equipment.dm @@ -0,0 +1,9 @@ +/datum/supply_packs/arcsentry_replacement + name = "Replacement RE700 Rotary Cannon (x1)" + contains = list( + /obj/item/hardpoint/primary/arc_sentry, + ) + cost = 25 + containertype = /obj/structure/closet/crate/weapon + containername = "RE700 Rotary Cannon crate" + group = "Vehicle Equipment" diff --git a/code/datums/supply_packs/weapons.dm b/code/datums/supply_packs/weapons.dm index 927db853e9..f7802089cb 100644 --- a/code/datums/supply_packs/weapons.dm +++ b/code/datums/supply_packs/weapons.dm @@ -1,13 +1,3 @@ -/datum/supply_packs/m56b_smartgun - name = "M56B Smartgun System Package (x1)" - contains = list( - /obj/item/storage/box/m56_system, - ) - cost = 100 - containertype = /obj/structure/closet/crate/weapon - containername = "M56B Smartgun System Package" - group = "Weapons" - /datum/supply_packs/m56_hmg name = "M56D Heavy Machine Gun (x1)" contains = list( @@ -60,7 +50,18 @@ ) cost = 30 containertype = /obj/structure/closet/crate/weapon - containername = "MOU-53 Breack Action Shotgun Crate" + containername = "MOU-53 Break Action Shotgun Crate" + group = "Weapons" + +/datum/supply_packs/xm51 + name = "XM51 Breaching Scattergun Crate (x2)" + contains = list( + /obj/item/storage/box/guncase/xm51, + /obj/item/storage/box/guncase/xm51, + ) + cost = 30 + containertype = /obj/structure/closet/crate/weapon + containername = "XM51 Breaching Scattergun Crate" group = "Weapons" /datum/supply_packs/smartpistol diff --git a/code/datums/tgs_event_handler.dm b/code/datums/tgs_event_handler.dm index a47d1e95af..072a0f4d60 100644 --- a/code/datums/tgs_event_handler.dm +++ b/code/datums/tgs_event_handler.dm @@ -14,21 +14,13 @@ message_admins("TGS: Instance renamed to from [world.TgsInstanceName()] to [args[2]]") if(TGS_EVENT_COMPILE_START) message_admins("TGS: Deployment started, new game version incoming...") - if(world.system_type == UNIX && SSredis.connected) - SSredis.disconnect(TGS_COMPILE) if(TGS_EVENT_COMPILE_CANCELLED) message_admins("TGS: Deployment cancelled!") - if(world.system_type == UNIX && CONFIG_GET(flag/redis_enabled) && !SSredis.connected) - SSredis.reconnect() if(TGS_EVENT_COMPILE_FAILURE) message_admins("TGS: Deployment failed!") - if(world.system_type == UNIX && CONFIG_GET(flag/redis_enabled) && !SSredis.connected) - SSredis.reconnect() if(TGS_EVENT_DEPLOYMENT_COMPLETE) message_admins("TGS: Deployment complete!") to_chat(world, SPAN_BOLDANNOUNCE("Server updated, changes will be applied on the next round...")) - if(world.system_type == UNIX && CONFIG_GET(flag/redis_enabled) && !SSredis.connected) - SSredis.reconnect() if(TGS_EVENT_WATCHDOG_DETACH) message_admins("TGS restarting...") reattach_timer = addtimer(CALLBACK(src, PROC_REF(LateOnReattach)), 1 MINUTES, TIMER_STOPPABLE) diff --git a/code/datums/tutorial/_tutorial.dm b/code/datums/tutorial/_tutorial.dm new file mode 100644 index 0000000000..b7403da3c0 --- /dev/null +++ b/code/datums/tutorial/_tutorial.dm @@ -0,0 +1,259 @@ +GLOBAL_LIST_EMPTY_TYPED(ongoing_tutorials, /datum/tutorial) + +/// A tutorial datum contains a set of instructions for a player tutorial, such as what to spawn, what's scripted to occur, and so on. +/datum/tutorial + /// What the tutorial is called, is player facing + var/name = "Base" + /// Internal ID of the tutorial, kept for save files. Format is "tutorialtype_specifictutorial_number". So, the first basic xeno tutorial would be "xeno_basic_1", and the 2nd marine medical tutorial would be "marine_medical_2" + var/tutorial_id = "base" + /// A short 1-2 sentence description of the tutorial itself + var/desc = "" + /// What the tutorial's icon in the UI should look like + var/icon_state = "" + /// What category the tutorial should be under + var/category = TUTORIAL_CATEGORY_BASE + /// Ref to the bottom-left corner tile of the tutorial room + var/turf/bottom_left_corner + /// Ref to the turf reservation for this tutorial + var/datum/turf_reservation/reservation + /// Ref to the player who is doing the tutorial + var/mob/tutorial_mob + /// If the tutorial will be ending soon + var/tutorial_ending = FALSE + /// A dict of type:atom ref for some important junk that should be trackable + var/list/tracking_atoms = list() + /// What map template should be used for the tutorial + var/datum/map_template/tutorial/tutorial_template = /datum/map_template/tutorial/s12x12 + /// What is the parent path of this, to exclude from the tutorial menu + var/parent_path = /datum/tutorial + /// A dictionary of "bind_name" : "keybind_button". The inverse of `key_bindings` on a client's prefs + var/list/player_bind_dict = list() + /// If the tutorial has been completed. This doesn't need to be modified if you call end_tutorial() with a param of TRUE + var/completion_marked = FALSE + +/datum/tutorial/Destroy(force, ...) + GLOB.ongoing_tutorials -= src + QDEL_NULL(reservation) // Its Destroy() handles releasing reserved turfs + + tutorial_mob = null // We don't delete it because the turf reservation will typically clean it up + + QDEL_LIST_ASSOC_VAL(tracking_atoms) + + return ..() + +/// The proc to begin doing everything related to the tutorial +/datum/tutorial/proc/start_tutorial(mob/starting_mob) + SHOULD_CALL_PARENT(TRUE) + + if(!starting_mob?.client) + return FALSE + + ADD_TRAIT(starting_mob, TRAIT_IN_TUTORIAL, TRAIT_SOURCE_TUTORIAL) + + tutorial_mob = starting_mob + + reservation = SSmapping.request_turf_block_reservation(initial(tutorial_template.width), initial(tutorial_template.height), 1) + if(!reservation) + abort_tutorial() + return FALSE + + var/turf/bottom_left_corner_reservation = reservation.bottom_left_turfs[1] + var/datum/map_template/tutorial/template = new tutorial_template + template.load(bottom_left_corner_reservation, FALSE, TRUE) + var/obj/landmark = locate(/obj/effect/landmark/tutorial_bottom_left) in GLOB.landmarks_list + bottom_left_corner = get_turf(landmark) + qdel(landmark) + + if(!verify_template_loaded()) + abort_tutorial() + return FALSE + + generate_binds() + + GLOB.ongoing_tutorials |= src + var/area/tutorial_area = get_area(bottom_left_corner) + tutorial_area.update_base_lighting() // this will be entirely dark otherwise + init_map() + if(!tutorial_mob) + end_tutorial() + + return TRUE + +/// The proc used to end and clean up the tutorial +/datum/tutorial/proc/end_tutorial(completed = FALSE) + SHOULD_CALL_PARENT(TRUE) + + if(tutorial_mob) + remove_action(tutorial_mob, /datum/action/tutorial_end) // Just in case to make sure the client can't try and leave the tutorial while it's mid-cleanup + if(tutorial_mob.client?.prefs && (completed || completion_marked)) + tutorial_mob.client.prefs.completed_tutorials |= tutorial_id + tutorial_mob.client.prefs.save_character() + var/mob/new_player/new_player = new + if(!tutorial_mob.mind) + tutorial_mob.mind_initialize() + + tutorial_mob.mind.transfer_to(new_player) + + if(!QDELETED(src)) + qdel(src) + +/// Verify the template loaded fully and without error. +/datum/tutorial/proc/verify_template_loaded() + // We subtract 1 from x and y because the bottom left corner doesn't start at the walls. + var/turf/true_bottom_left_corner = reservation.bottom_left_turfs[1] + for(var/turf/tile as anything in CORNER_BLOCK(true_bottom_left_corner, initial(tutorial_template.width), initial(tutorial_template.height))) + // For some reason I'm unsure of, the template will not always fully load, leaving some tiles to be space tiles. So, we check all tiles in the (small) tutorial area + // and tell start_tutorial to abort if there's any space tiles. + if(istype(tile, /turf/open/space)) + return FALSE + + return TRUE + +/// Something went very, very wrong during load so let's abort +/datum/tutorial/proc/abort_tutorial() + to_chat(tutorial_mob, SPAN_BOLDWARNING("Something went wrong during tutorial load, please try again!")) + end_tutorial(FALSE) + +/datum/tutorial/proc/add_highlight(atom/target, color = "#d19a02") + target.add_filter("tutorial_highlight", 2, list("type" = "outline", "color" = color, "size" = 1)) + +/datum/tutorial/proc/remove_highlight(atom/target) + target.remove_filter("tutorial_highlight") + +/datum/tutorial/proc/add_to_tracking_atoms(atom/reference) + tracking_atoms[reference.type] = reference + +/datum/tutorial/proc/remove_from_tracking_atoms(atom/reference) + tracking_atoms -= reference.type + +/// Broadcast a message to the player's screen +/datum/tutorial/proc/message_to_player(message) + playsound_client(tutorial_mob.client, 'sound/effects/radiostatic.ogg', tutorial_mob.loc, 25, FALSE) + tutorial_mob.play_screen_text(message, /atom/movable/screen/text/screen_text/command_order/tutorial, rgb(103, 214, 146)) + to_chat(tutorial_mob, SPAN_NOTICE(message)) + +/// Updates a player's objective in their status tab +/datum/tutorial/proc/update_objective(message) + SEND_SIGNAL(tutorial_mob, COMSIG_MOB_TUTORIAL_UPDATE_OBJECTIVE, message) + +/// Initialize the tutorial mob. +/datum/tutorial/proc/init_mob() + tutorial_mob.AddComponent(/datum/component/tutorial_status) + give_action(tutorial_mob, /datum/action/tutorial_end, null, null, src) + ADD_TRAIT(tutorial_mob, TRAIT_IN_TUTORIAL, TRAIT_SOURCE_TUTORIAL) + +/// Ends the tutorial after a certain amount of time. +/datum/tutorial/proc/tutorial_end_in(time = 5 SECONDS, completed = TRUE) + if(completed) + mark_completed() // This is done because if you're calling this proc with completed == TRUE, then the tutorial's a done deal. We shouldn't penalize the player if they exit a few seconds before it actually completes. + tutorial_ending = TRUE + addtimer(CALLBACK(src, PROC_REF(end_tutorial), completed), time) + +/// Initialize any objects that need to be in the tutorial area from the beginning. +/datum/tutorial/proc/init_map() + return + +/// Returns a turf offset by offset_x (left-to-right) and offset_y (up-to-down) +/datum/tutorial/proc/loc_from_corner(offset_x = 0, offset_y = 0) + RETURN_TYPE(/turf) + return locate(bottom_left_corner.x + offset_x, bottom_left_corner.y + offset_y, bottom_left_corner.z) + +/// Handle the player ghosting out +/datum/tutorial/proc/on_ghost(datum/source, mob/dead/observer/ghost) + SIGNAL_HANDLER + + var/mob/new_player/new_player = new + if(!ghost.mind) + ghost.mind_initialize() + + ghost.mind.transfer_to(new_player) + + end_tutorial(FALSE) + +/// A wrapper for signals to call end_tutorial() +/datum/tutorial/proc/signal_end_tutorial(datum/source) + SIGNAL_HANDLER + + end_tutorial(FALSE) + +/// Called whenever the tutorial_mob logs out +/datum/tutorial/proc/on_logout(datum/source) + SIGNAL_HANDLER + + if(tutorial_mob.aghosted) + return + + end_tutorial(FALSE) + +/// Generate a dictionary of button : action for use of referencing what keys to press +/datum/tutorial/proc/generate_binds() + if(!tutorial_mob.client?.prefs) + return + + for(var/bind in tutorial_mob.client.prefs.key_bindings) + var/action = tutorial_mob.client.prefs.key_bindings[bind] + // We presume the first action under a certain binding is the one we want. + if(action[1] in player_bind_dict) + player_bind_dict[action[1]] += bind + else + player_bind_dict[action[1]] = list(bind) + +/// Getter for player_bind_dict. Provide an action name like "North" or "quick_equip" +/datum/tutorial/proc/retrieve_bind(action_name) + if(!action_name) + return + + if(!(action_name in player_bind_dict)) + return "Undefined" + + return player_bind_dict[action_name][1] + +/// When called, will make anything that ends the tutorial mark it as completed. Does not need to be called if end_tutorial(TRUE) is called instead +/datum/tutorial/proc/mark_completed() + completion_marked = TRUE + +/datum/action/tutorial_end + name = "Stop Tutorial" + action_icon_state = "hologram_exit" + /// Weakref to the tutorial this is related to + var/datum/weakref/tutorial + +/datum/action/tutorial_end/New(Target, override_icon_state, datum/tutorial/selected_tutorial) + . = ..() + tutorial = WEAKREF(selected_tutorial) + +/datum/action/tutorial_end/action_activate() + . = ..() + if(!tutorial) + return + + var/datum/tutorial/selected_tutorial = tutorial.resolve() + if(selected_tutorial.tutorial_ending) + return + + selected_tutorial.end_tutorial() + + +/datum/map_template/tutorial + name = "Tutorial Zone (12x12)" + mappath = "maps/tutorial/tutorial_12x12.dmm" + width = 12 + height = 12 + +/datum/map_template/tutorial/s12x12 + +/datum/map_template/tutorial/s8x9 + name = "Tutorial Zone (8x9)" + mappath = "maps/tutorial/tutorial_8x9.dmm" + width = 8 + height = 9 + +/datum/map_template/tutorial/s8x9/no_baselight + name = "Tutorial Zone (8x9) (No Baselight)" + mappath = "maps/tutorial/tutorial_8x9_nb.dmm" + +/datum/map_template/tutorial/s7x7 + name = "Tutorial Zone (7x7)" + mappath = "maps/tutorial/tutorial_7x7.dmm" + width = 7 + height = 7 diff --git a/code/datums/tutorial/_tutorial_menu.dm b/code/datums/tutorial/_tutorial_menu.dm new file mode 100644 index 0000000000..3c7a28e77b --- /dev/null +++ b/code/datums/tutorial/_tutorial_menu.dm @@ -0,0 +1,84 @@ +/datum/tutorial_menu + /// List of ["name" = name, "tutorials" = ["name" = name, "path" = "path", "id" = tutorial_id]] + var/static/list/categories = list() + + +/datum/tutorial_menu/New() + if(!length(categories)) + var/list/categories_2 = list() + for(var/datum/tutorial/tutorial as anything in subtypesof(/datum/tutorial)) + if(initial(tutorial.parent_path) == tutorial) + continue + + if(!(initial(tutorial.category) in categories_2)) + categories_2[initial(tutorial.category)] = list() + + categories_2[initial(tutorial.category)] += list(list( + "name" = initial(tutorial.name), + "path" = "[tutorial]", + "id" = initial(tutorial.tutorial_id), + "description" = initial(tutorial.desc), + "image" = initial(tutorial.icon_state), + )) + + for(var/category in categories_2) + categories += list(list( + "name" = category, + "tutorials" = categories_2[category], + )) + + +/datum/tutorial_menu/proc/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "TutorialMenu") + ui.open() + +/datum/tutorial_menu/ui_assets(mob/user) + return list( + get_asset_datum(/datum/asset/spritesheet/tutorial), + ) + +/datum/tutorial_menu/ui_state(mob/user) + if(istype(get_area(user), /area/misc/tutorial)) + return GLOB.never_state + + return GLOB.new_player_state + + +/datum/tutorial_menu/ui_static_data(mob/user) + var/list/data = list() + + data["tutorial_categories"] = categories + if(user.client?.prefs) + data["completed_tutorials"] = user.client.prefs.completed_tutorials + else + data["completed_tutorials"] = list() + + return data + + +/datum/tutorial_menu/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + switch(action) + if("select_tutorial") + var/datum/tutorial/path + if(!params["tutorial_path"]) + return + + path = text2path(params["tutorial_path"]) + + if(!ispath(path, /datum/tutorial) || !isnewplayer(usr)) + return + + if(HAS_TRAIT(usr, TRAIT_IN_TUTORIAL) || istype(get_area(usr), /area/misc/tutorial)) + to_chat(usr, SPAN_NOTICE("You are currently in a tutorial, or one is loading. Please be patient.")) + return + + path = new path + if(path.start_tutorial(usr)) + ui.close() + return TRUE diff --git a/code/datums/tutorial/creating_a_tutorial.md b/code/datums/tutorial/creating_a_tutorial.md new file mode 100644 index 0000000000..4ed1a379f3 --- /dev/null +++ b/code/datums/tutorial/creating_a_tutorial.md @@ -0,0 +1,112 @@ +# Tutorial Creation + +## Step 1: Identifying the Goal + +Your first objective when making a tutorial should be to have a clear and concise vision of what you want the tutorial to convey to the user. People absorb information better in smaller chunks, so you should ideally keep a tutorial to one section of information at a time. + +For example, if you are making a tutorial for new CM players, it should be split into multiple parts like: + +- Basics +- Medical +- Weaponry +- Requisitions/Communication + +## Step 2: Coding + +For an example of the current code standards for tutorials, see [this](https://github.com/cmss13-devs/cmss13/pull/4442/files#diff-843b2f84360b9b932dfc960027992f2b5117667962bfa8da14f9a35f0179a926) file. + +The API for tutorials is designed to be very simple, so I'll go over all the base `/datum/tutorial` procs and some vars here: + +### Variables + +- `name` + - This is the player-facing name of the tutorial. +- `tutorial_id` + - This is the back-end ID of the tutorial, used for save files. Try not to change a tutorial's ID after it's on the live server. +- `category` + - This is what category the tutorial should be under. Use the `TUTORIAL_CATEGORY_XXXX` macros. +- `tutorial_template` + - This is what type the map template of the tutorial should be. The default space is 12x12; ideally make it so it fits the given scale of the tutorial with some wiggle room for the player to move around. +- `parent_path` + - This is the top-most parent `/datum/tutorial` path, used to exclude abstract parents from the tutorial menu. For example, `/datum/tutorial/marine/basic` would have a `parent_path` of `/datum/tutorial/marine`, since that path is the top-most abstract path. +- `completion_marked` + - If this is `TRUE`, the tutorial will be marked as completed if ended in any way. You can modify this with `mark_completed()` but is not necessary if `end_tutorial(TRUE)` is called. + +### Procs + +- `start_tutorial(mob/starting_mob)` + - This proc starts the tutorial, setting up the map template and player. This should be overridden with a parent call before any overridden code. +- `end_tutorial(completed = FALSE)` + - This proc ends the tutorial, sending the player back to the lobby and deleting the tutorial itself. A parent call on any subtypes should be at the end of the overridden segment. If `completed` is `TRUE`, then the tutorial will save as a completed one for the user. If `mark_completed()` was called previously, the tutorial will count as completed regardless of if this is called with an argument of `TRUE` or `FALSE`. +- `add_highlight(atom/target, color = "#d19a02")` + - This proc adds a highlight filter around an atom, by default this color. Successive calls of highlight on the same atom will override the last. +- `remove_highlight(atom/target)` + - This proc removes the tutorial highlight from a target. +- `add_to_tracking_atoms(atom/reference)` + - This proc will add a reference to the tutorial's tracked atom dictionary. For what a tracked atom is, see Step 2.1. +- `remove_from_tracking_atoms(atom/reference)` + - This proc will remove a reference from the tutorial's tracked atom dictionary. For what a tracked atom is, see Step 2.1. +- `message_to_player(message)` + - This proc is the ideal way to communicate to a player. It is visually similar to overwatch messages or weather alerts, but appears and disappears much faster. The messages sent should be consise, but can have a degree of dialogue to them. +- `update_objective(message)` + - This proc is used to update the player's objective in their status panel. This should be only what is required and how to do it without any dialogue or extra text. +- `init_mob()` + - This proc is used to initialize the mob and set them up correctly. +- `init_map()` + - This proc does nothing by default, but can be overriden to spawn any atoms necessary for the tutorial from the very start. +- `tutorial_end_in(time = 5 SECONDS, completed = TRUE)` + - This proc will end the tutorial in the given time, defaulting to 5 seconds. Once the proc is called, the player will be booted back to the menu screen after the time is up. Will mark the tutorial as completed if `completed` is `TRUE` +- `loc_from_corner(offset_x = 0, offset_y = 0)` + - This proc will return a turf offset from the bottom left corner of the tutorial zone. Keep in mind, the bottom left corner is NOT on a wall, it is on the first floor on the bottom left corner. `offset_x` and `offset_y` are used to offset what turf you want to get, and should never be negative. +- `on_ghost(datum/source, mob/dead/observer/ghost)` + - This proc is used to properly end and clean up the tutorial should a player ghost out. You shouldn't need to override or modify this when making a tutorial. +- `signal_end_tutorial(datum/source)` + - This proc is used to call `end_tutorial()` via signals. If something (e.g. a player dying) should send a signal that ends the tutorial, have the signal call this proc. +- `on_logout(datum/source)` + - This proc is called when a player logs out, disconnecting their client from the server. As with `on_ghost()` and similar procs, it cleans up and ends the tutorial. +- `generate_binds()` + - This proc generates a dictionary of the player's keybinds, in the form of {"action_name" : "key_to_press"}. This is used for the `retrieve_bind()` proc to be able to tell the user what buttons to press. +- `retrieve_bind(action_name)` + - This proc will be one you'll get a fair amount of use from. Whenever you tell the user to do something like "drop an item", you should tell them what button to press by calling `retrieve_bind("drop_item")` in the string telling them to drop an item. +- `mark_completed()` + - This proc can be used as an alternative to calling `end_tutorial(TRUE)`. Calling this proc means any method of exiting the tutorial (ghosting, dying, pressing the exit button) will mark the tutorial as completed. + +## Step 2.1: Tracking Atoms + +Naturally, you will need to keep track of certain objects or mobs for signal purposes, so the tracking system exists to fill that purpose. When you add a reference to the tracking atom list with `add_to_tracking_atoms()`, it gets put into a dictionary of `{path : reference}`. Because of this limitation, you should not track more than 1 object of the same type. To get a tracked atom, use of the `TUTORIAL_ATOM_FROM_TRACKING(path, varname)` macro is recommended. `path` should be replaced with the precise typepath of the tracked atom, and `varname` should be replaced with the variable name you wish to use. If an object is going to be deleted, remove it with `remove_from_tracking_atoms()` first. + +## Step 2.2: Scripting Format + +Any proc whose main purpose is to advance the tutorial will be hereon referred to as a "script proc", as part of the entire "script". In the vast majority of cases, a script proc should hand off to the next using signals. Here is an example from `basic_marine.dm`: + +```javascript +/datum/tutorial/marine/basic/proc/on_cryopod_exit() + SIGNAL_HANDLER + + UnregisterSignal(tracking_atoms[/obj/structure/machinery/cryopod/tutorial], COMSIG_CRYOPOD_GO_OUT) + message_to_player("Good. You may notice the yellow \"food\" icon on the right side of your screen. Proceed to the outlined Food Vendor and vend the USCM Protein Bar.") + update_objective("Vend a USCM Protein Bar from the outlined ColMarTech Food Vendor.") + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial, food_vendor) + add_highlight(food_vendor) + food_vendor.req_access = list() + RegisterSignal(food_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(on_food_vend)) + +``` + +Line-by-line: +- `SIGNAL_HANDLER` is necessary as this proc was called via signal. +- Here we are unregistering the signal we registered in the previous proc to call this one, which inthis case was waiting for the player to leave the tracked cryopod. +- Now, we tell the user the next step in the script, which is sent to their screen. +- Here we update the player's status panel with similar info to the above line, but far morecondensed. +- Since we need to access the food vendor, we use the `TUTORIAL_ATOM_FROM_TRACKING()` macro to get aref to it. +- We add a yellow outline to the food vendor to make it more clear what is wanted of the player +- The tutorial food vendors are locked to `ACCESS_TUTORIAL_LOCKED` by default, so here we remove thataccess requirement +- And finally, we register a signal for the next script proc, waiting for the user to vend something from the food vendor. + +## Step 2.3: Quirks & Tips + +- Generally speaking, you will want to create `/tutorial` subtypes of anything you add in the tutorial, should it need any special functions or similar. +- Restrict access from players as much as possible. As seen in the example above, restricting access to vendors and similar machines is recommended to prevent sequence breaking. Additionally, avoid adding anything that detracts from the tutorial itself. +- Attempt to avoid softlocks when possible. If someone could reasonably do something (e.g. firing every bullet they have at a ranged target and missing, now unable to kill them and progress) that could softlock them, then there should be a fallback of some sort. However, accomodations don't need to be made for people who purposefully cause a softlock; there's a "stop tutorial" button for a reason. +- When calling `message_to_player()` or `update_objective()`, **bold** the names of objects, items, and keybinds. +- Attempt to bind as many scripting signals to the `tutorial_mob` as possible. The nature of SS13 means something as sequence-heavy as this will always be fragile, so keeping the fragility we can affect to a minimum is imperative. diff --git a/code/datums/tutorial/marine/_marine.dm b/code/datums/tutorial/marine/_marine.dm new file mode 100644 index 0000000000..ceb0ba8ab5 --- /dev/null +++ b/code/datums/tutorial/marine/_marine.dm @@ -0,0 +1,21 @@ +/datum/tutorial/marine + category = TUTORIAL_CATEGORY_MARINE + parent_path = /datum/tutorial/marine + icon_state = "marine" + +/datum/tutorial/marine/init_mob() + var/mob/living/carbon/human/new_character = new(bottom_left_corner) + new_character.lastarea = get_area(bottom_left_corner) + + setup_human(new_character, tutorial_mob) + + //SSround_recording.recorder.track_player(new_character) //zonenote: check if necessary + + new_character.marine_snowflake_points = MARINE_TOTAL_SNOWFLAKE_POINTS + new_character.marine_buyable_categories = MARINE_CAN_BUY_ALL + + tutorial_mob = new_character + RegisterSignal(tutorial_mob, COMSIG_LIVING_GHOSTED, PROC_REF(on_ghost)) + RegisterSignal(tutorial_mob, list(COMSIG_PARENT_QDELETING, COMSIG_MOB_DEATH, COMSIG_MOB_END_TUTORIAL), PROC_REF(signal_end_tutorial)) + RegisterSignal(tutorial_mob, COMSIG_MOB_LOGOUT, PROC_REF(on_logout)) + return ..() diff --git a/code/datums/tutorial/marine/basic_marine.dm b/code/datums/tutorial/marine/basic_marine.dm new file mode 100644 index 0000000000..af9d2eaf18 --- /dev/null +++ b/code/datums/tutorial/marine/basic_marine.dm @@ -0,0 +1,208 @@ +/datum/tutorial/marine/basic + name = "Marine - Basic" + desc = "A tutorial to get you acquainted with the very basics of how to play a groundside marine role." + tutorial_id = "marine_basic_1" + tutorial_template = /datum/map_template/tutorial/s8x9/no_baselight + /// How many items need to be vended from the clothing vendor for the script to continue, if something vends 2 items (for example), increase this number by 2. + var/clothing_items_to_vend = 8 + /// How many items need to be vended from the gun vendor to continue + var/gun_items_to_vend = 2 + +// START OF SCRIPTING + +/datum/tutorial/marine/basic/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + var/obj/item/device/flashlight/flashlight = new(loc_from_corner(2, 3)) + flashlight.anchored = TRUE + flashlight.set_light_power(4) + flashlight.set_light_range(12) + flashlight.icon = null + flashlight.set_light_on(TRUE) + add_to_tracking_atoms(flashlight) + + init_mob() + message_to_player("This is the tutorial for marine rifleman. Leave the cryopod by pressing [retrieve_bind("North")] or [retrieve_bind("East")] to continue.") + update_objective("Exit the cryopod by pressing [retrieve_bind("North")] or [retrieve_bind("East")].") + RegisterSignal(tracking_atoms[/obj/structure/machinery/cryopod/tutorial], COMSIG_CRYOPOD_GO_OUT, PROC_REF(on_cryopod_exit)) + +/datum/tutorial/marine/basic/proc/on_cryopod_exit() + SIGNAL_HANDLER + + UnregisterSignal(tracking_atoms[/obj/structure/machinery/cryopod/tutorial], COMSIG_CRYOPOD_GO_OUT) + message_to_player("Good. You may notice the yellow \"food\" icon on the right side of your screen. Proceed to the outlined Food Vendor and vend the USCM Protein Bar.") + update_objective("Vend a USCM Protein Bar from the outlined ColMarTech Food Vendor.") + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial, food_vendor) + add_highlight(food_vendor) + food_vendor.req_access = list() + RegisterSignal(food_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(on_food_vend)) + +/datum/tutorial/marine/basic/proc/on_food_vend(datum/source, obj/structure/machinery/cm_vending/vendor, list/itemspec, mob/living/carbon/human/user) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial, food_vendor) + UnregisterSignal(food_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND) + remove_highlight(food_vendor) + food_vendor.req_access = list(ACCESS_TUTORIAL_LOCKED) + message_to_player("Now click on your character with the USCM Protein Bar in-hand until it is fully eaten. If you accidentally switched hands, switch back with [retrieve_bind("swap_hands")].") + update_objective("Eat the USCM Protein Bar by clicking on yourself while holding it, until it is gone.") + RegisterSignal(tutorial_mob, COMSIG_MOB_EATEN_SNACK, PROC_REF(on_foodbar_eaten)) + +/datum/tutorial/marine/basic/proc/on_foodbar_eaten(datum/source, obj/item/reagent_container/food/snacks/eaten_food) + SIGNAL_HANDLER + + if(!istype(eaten_food, /obj/item/reagent_container/food/snacks/protein_pack) || eaten_food.reagents.total_volume) + return + + UnregisterSignal(source, COMSIG_MOB_EATEN_SNACK) + message_to_player("Good. Now move to the outlined vendor and vend everything inside.") + update_objective("Vend everything inside the ColMarTech Automated Closet.") + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/clothing/tutorial, clothing_vendor) + add_highlight(clothing_vendor) + clothing_vendor.req_access = list() + RegisterSignal(clothing_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(on_clothing_vend)) + +/datum/tutorial/marine/basic/proc/on_clothing_vend(datum/source) + SIGNAL_HANDLER + + clothing_items_to_vend-- + if(clothing_items_to_vend <= 0) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/clothing/tutorial, clothing_vendor) + UnregisterSignal(clothing_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND) + clothing_vendor.req_access = list(ACCESS_TUTORIAL_LOCKED) + remove_highlight(clothing_vendor) + message_to_player("Now, the room will darken. Take a flare out of your flare pouch by clicking on it with an empty hand, and then light it by using it in-hand with [retrieve_bind("activate_inhand")].") + update_objective("Click on your flare pouch to remove a flare before using it in-hand.") + var/obj/item/storage/pouch/flare/flare_pouch = locate(/obj/item/storage/pouch/flare) in tutorial_mob.contents + if(flare_pouch) + add_highlight(flare_pouch) + RegisterSignal(tutorial_mob, COMSIG_MOB_ITEM_ATTACK_SELF, PROC_REF(on_flare_light)) + addtimer(CALLBACK(src, PROC_REF(dim_room)), 2.5 SECONDS) + +/datum/tutorial/marine/basic/proc/on_flare_light(datum/source, obj/item/used) + SIGNAL_HANDLER + + if(!istype(used, /obj/item/device/flashlight/flare)) + return + + UnregisterSignal(tutorial_mob, COMSIG_MOB_ITEM_ATTACK_SELF) + var/obj/item/storage/pouch/flare/flare_pouch = locate(/obj/item/storage/pouch/flare) in tutorial_mob.contents + if(flare_pouch) + remove_highlight(flare_pouch) + + message_to_player("Now throw the flare by clicking on a nearby tile, or dropping it with [retrieve_bind("drop_item")].") + update_objective("Throw the flare by clicking on a nearby tile, or dropping it with [retrieve_bind("drop_item")].") + RegisterSignal(tutorial_mob, COMSIG_MOB_ITEM_DROPPED, PROC_REF(on_flare_throw)) + +/datum/tutorial/marine/basic/proc/on_flare_throw(datum/source, obj/item/thrown) + SIGNAL_HANDLER + + if(!istype(thrown, /obj/item/device/flashlight/flare)) + return + + UnregisterSignal(tutorial_mob, COMSIG_MOB_ITEM_DROPPED) + message_to_player("Good. Now, the room will brighten again. Proceed to the highlighted vendor and vend a M41A Pulse Rifle MK2, along with a magazine.") + update_objective("Vend everything from the ColMarTech Automated Weapons Rack.") + addtimer(CALLBACK(src, PROC_REF(brighten_room)), 1.5 SECONDS) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial, gun_vendor) + gun_vendor.req_access = list() + add_highlight(gun_vendor) + RegisterSignal(gun_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(on_gun_vend)) + +/datum/tutorial/marine/basic/proc/on_gun_vend(datum/source) + SIGNAL_HANDLER + + gun_items_to_vend-- + if(gun_items_to_vend <= 0) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial, gun_vendor) + gun_vendor.req_access = list(ACCESS_TUTORIAL_LOCKED) + remove_highlight(gun_vendor) + UnregisterSignal(gun_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND) + message_to_player("Now insert the magazine into the M41A Pulse Rifle by having the magazine in your active hand and hitting the Pulse Rifle with it. If it is in the off-hand, switch with [retrieve_bind("swap_hands")].") + update_objective("Insert the M41A magazine by hitting the M41A Pulse Rifle with it.") + RegisterSignal(tutorial_mob, COMSIG_MOB_RELOADED_GUN, PROC_REF(on_magazine_insert)) + +/datum/tutorial/marine/basic/proc/on_magazine_insert(datum/source, atom/attacked, obj/item/attacked_with) + SIGNAL_HANDLER + + UnregisterSignal(tutorial_mob, COMSIG_MOB_RELOADED_GUN) + message_to_player("Good. Now wield your gun by using it in-hand with [retrieve_bind("activate_inhand")].") + update_objective("Wield your gun with two hands by pressing [retrieve_bind("activate_inhand")] with the gun in your main hand.") + RegisterSignal(tutorial_mob, COMSIG_MOB_ITEM_ATTACK_SELF, PROC_REF(on_gun_wield)) + +/datum/tutorial/marine/basic/proc/on_gun_wield(datum/source, obj/item/used) + SIGNAL_HANDLER + + if(!istype(used, /obj/item/weapon/gun/rifle/m41a)) + return + + UnregisterSignal(tutorial_mob, COMSIG_MOB_ITEM_ATTACK_SELF) + message_to_player("Now, shoot at the highlighted Xenomorph until it dies.") + update_objective("Shoot at the Xenomorph until it dies.") + var/mob/living/carbon/xenomorph/drone/tutorial/xeno_dummy = new(loc_from_corner(4, 5)) + add_to_tracking_atoms(xeno_dummy) + add_highlight(xeno_dummy, COLOR_VIVID_RED) + RegisterSignal(xeno_dummy, COMSIG_MOB_DEATH, PROC_REF(on_xeno_death)) + RegisterSignal(tutorial_mob, COMSIG_MOB_GUN_EMPTY, PROC_REF(on_magazine_empty)) // I'd like to prevent unwilling softlocks as much as I can + +/// Non-contiguous part of the script, called if the user manages to run out of ammo in the gun without the xeno dying +/datum/tutorial/marine/basic/proc/on_magazine_empty(obj/item/weapon/gun/empty_gun) + SIGNAL_HANDLER + + UnregisterSignal(tutorial_mob, COMSIG_MOB_GUN_EMPTY) + message_to_player("Your gun's out of ammo. Go grab some more from the Weaponry Vendor and kill the Xenomorph.") + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial, gun_vendor) + gun_vendor.req_access = list() + gun_vendor.load_ammo() // 99 magazines, to make sure that the xeno dies + +/datum/tutorial/marine/basic/proc/on_xeno_death(datum/source) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/xenomorph/drone/tutorial, xeno_dummy) + UnregisterSignal(xeno_dummy, COMSIG_MOB_DEATH) + UnregisterSignal(tutorial_mob, COMSIG_MOB_GUN_EMPTY) + remove_highlight(xeno_dummy) + addtimer(CALLBACK(src, PROC_REF(disappear_xeno)), 2.5 SECONDS) + message_to_player("Very good. This is the end of the tutorial, proceed to the next one to learn the basics of Medical. You will be sent back to the lobby screen momentarily.") + update_objective("") + tutorial_end_in(7.5 SECONDS, TRUE) + + +// END OF SCRIPTING +// START OF SCRIPT HELPERS + +/datum/tutorial/marine/basic/proc/dim_room() + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/device/flashlight, flashlight) + flashlight.set_light_on(FALSE) + +/datum/tutorial/marine/basic/proc/brighten_room() + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/device/flashlight, flashlight) + flashlight.set_light_on(TRUE) + +/datum/tutorial/marine/basic/proc/disappear_xeno() + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/xenomorph/drone/tutorial, xeno_dummy) + animate(xeno_dummy, time = 5 SECONDS, alpha = 0) + remove_from_tracking_atoms(xeno_dummy) + QDEL_IN(xeno_dummy, 5.5 SECONDS) + +// END OF SCRIPT HELPERS + +/datum/tutorial/marine/basic/init_mob() + . = ..() + arm_equipment(tutorial_mob, /datum/equipment_preset/tutorial) + + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cryopod/tutorial, tutorial_pod) + tutorial_pod.go_in_cryopod(tutorial_mob, TRUE, FALSE) + + +/datum/tutorial/marine/basic/init_map() + var/obj/structure/machinery/cryopod/tutorial/tutorial_pod = new(bottom_left_corner) + add_to_tracking_atoms(tutorial_pod) + var/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial/food_vendor = new(loc_from_corner(0, 2)) + add_to_tracking_atoms(food_vendor) + var/obj/structure/machinery/cm_vending/clothing/tutorial/clothing_vendor = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(clothing_vendor) + var/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial/gun_vendor = new(loc_from_corner(0, 5)) + add_to_tracking_atoms(gun_vendor) diff --git a/code/datums/tutorial/marine/medical_basic.dm b/code/datums/tutorial/marine/medical_basic.dm new file mode 100644 index 0000000000..3a42a6d2ec --- /dev/null +++ b/code/datums/tutorial/marine/medical_basic.dm @@ -0,0 +1,174 @@ +/datum/tutorial/marine/medical_basic + name = "Marine - Medical (Basic)" + desc = "Learn how to treat common injuries you may face as a marine." + tutorial_id = "marine_medical_1" + tutorial_template = /datum/map_template/tutorial/s7x7 + +// START OF SCRIPTING + +/datum/tutorial/marine/medical_basic/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + message_to_player("This is the tutorial for the basics of medical that you will need to know for playing a marine role.") + addtimer(CALLBACK(src, PROC_REF(brute_tutorial)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/brute_tutorial() + message_to_player("The first kind of damage is Brute, the most common kind. It represents physical trauma from things like punches, weapons, or guns.") + var/mob/living/living_mob = tutorial_mob + living_mob.adjustBruteLoss(10) + addtimer(CALLBACK(src, PROC_REF(brute_tutorial_2)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/brute_tutorial_2() + message_to_player("You can observe if you have Brute or Burn damage by clicking on yourself with an empty hand on help intent.") + update_objective("Click on yourself with an empty hand.") + RegisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN, PROC_REF(on_health_examine)) + +/datum/tutorial/marine/medical_basic/proc/on_health_examine(datum/source, mob/living/carbon/human/attacked_mob) + SIGNAL_HANDLER + + if(attacked_mob != tutorial_mob) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN) + message_to_player("Good. Now, you have taken some brute damage. Bicaridine is used to fix brute over time. Pick up the bicaridine EZ autoinjector and use it in-hand.") + update_objective("Inject yourself with the bicaridine injector.") + var/obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless/one_use/brute_injector = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(brute_injector) + add_highlight(brute_injector) + RegisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED, PROC_REF(on_brute_inject)) + +/datum/tutorial/marine/medical_basic/proc/on_brute_inject(datum/source, obj/item/reagent_container/hypospray/injector) + SIGNAL_HANDLER + + if(!istype(injector, /obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless/one_use)) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless/one_use, brute_injector) + remove_highlight(brute_injector) + message_to_player("All medicines take time to work after injection. Next is Burn damage. It is obtained from things like acid or being set on fire.") + update_objective("") + var/mob/living/living_mob = tutorial_mob + living_mob.adjustFireLoss(10) + addtimer(CALLBACK(src, PROC_REF(burn_tutorial)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/burn_tutorial() + message_to_player("Kelotane is used to fix burn over time. Inject yourself with the kelotane EZ autoinjector.") + update_objective("Inject yourself with the kelotane injector.") + var/obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless/one_use/burn_injector = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(burn_injector) + add_highlight(burn_injector) + RegisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED, PROC_REF(on_burn_inject)) + + +/datum/tutorial/marine/medical_basic/proc/on_burn_inject(datum/source, obj/item/reagent_container/hypospray/injector) + SIGNAL_HANDLER + + if(!istype(injector, /obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless/one_use)) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless/one_use, burn_injector) + remove_highlight(burn_injector) + message_to_player("Good. Now, when you normally take damage, you will also feel pain. Pain slows you down and can knock you out if left unchecked.") + update_objective("") + var/mob/living/living_mob = tutorial_mob + living_mob.pain.apply_pain(PAIN_CHESTBURST_STRONG) + addtimer(CALLBACK(src, PROC_REF(pain_tutorial)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/pain_tutorial() + message_to_player("Tramadol is used to reduce your pain. Inject yourself with the tramadol EZ autoinjector.") + update_objective("Inject yourself with the tramadol injector.") + var/obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless/one_use/pain_injector = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(pain_injector) + add_highlight(pain_injector) + RegisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED, PROC_REF(on_pain_inject)) + +/datum/tutorial/marine/medical_basic/proc/on_pain_inject(datum/source, obj/item/reagent_container/hypospray/injector) + SIGNAL_HANDLER + + if(!istype(injector, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless/one_use)) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_HYPOSPRAY_INJECTED) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless/one_use, pain_injector) + remove_highlight(pain_injector) + message_to_player("Good. Keep in mind that you can overdose on chemicals, so don't inject yourself with the same chemical too much too often. In the field, injectors have 3 uses.") + update_objective("Don't overdose! Generally, 3 injections of a chemical will overdose you.") + var/mob/living/living_mob = tutorial_mob + living_mob.pain.apply_pain(-PAIN_CHESTBURST_STRONG) // just to make sure + addtimer(CALLBACK(src, PROC_REF(bleed_tutorial)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/bleed_tutorial() + message_to_player("You can sometimes start bleeding from things like bullets or slashes. Losing blood will accumulate oxygen damage, eventually causing death.") + update_objective("") + var/mob/living/carbon/human/human_mob = tutorial_mob + var/obj/limb/chest/mob_chest = locate(/obj/limb/chest) in human_mob.limbs + mob_chest.add_bleeding(damage_amount = 15) + addtimer(CALLBACK(src, PROC_REF(bleed_tutorial_2)), 4 SECONDS) + +/datum/tutorial/marine/medical_basic/proc/bleed_tutorial_2() + message_to_player("Bleeding wounds can clot themselves over time, or you can fix it quickly with gauze. Pick up the gauze and click on yourself while targeting your chest.") + update_objective("Gauze your chest, or let it clot on its own.") + var/obj/item/stack/medical/bruise_pack/two/bandage = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(bandage) + add_highlight(bandage) + var/mob/living/carbon/human/human_mob = tutorial_mob + var/obj/limb/chest/mob_chest = locate(/obj/limb/chest) in human_mob.limbs + RegisterSignal(mob_chest, COMSIG_LIMB_STOP_BLEEDING, PROC_REF(on_chest_bleed_stop)) + +/datum/tutorial/marine/medical_basic/proc/on_chest_bleed_stop(datum/source, external, internal) + SIGNAL_HANDLER + + // If you exit on this step, your limbs get deleted, which stops the bleeding, which progresses the tutorial despite it ending + if(!tutorial_mob || QDELETED(src)) + return + + var/mob/living/carbon/human/human_mob = tutorial_mob + var/obj/limb/chest/mob_chest = locate(/obj/limb/chest) in human_mob.limbs + UnregisterSignal(mob_chest, COMSIG_LIMB_STOP_BLEEDING) + + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/stack/medical/bruise_pack/two, bandage) + remove_from_tracking_atoms(bandage) + remove_highlight(bandage) + qdel(bandage) + + message_to_player("Good. Sometimes, a bullet or bone shard can result in you getting shrapnel, dealing damage over time. Pick up the knife and use it in-hand to remove the shrapnel.") + update_objective("Remove your shrapnel by using the knife in-hand.") + var/mob/living/living_mob = tutorial_mob + living_mob.pain.feels_pain = FALSE + + var/obj/item/attachable/bayonet/knife = new(loc_from_corner(0, 4)) + add_to_tracking_atoms(knife) + add_highlight(knife) + + var/obj/item/shard/shrapnel/tutorial/shrapnel = new + shrapnel.on_embed(tutorial_mob, mob_chest, TRUE) + + RegisterSignal(tutorial_mob, COMSIG_HUMAN_SHRAPNEL_REMOVED, PROC_REF(on_shrapnel_removed)) + +/datum/tutorial/marine/medical_basic/proc/on_shrapnel_removed() + SIGNAL_HANDLER + + UnregisterSignal(tutorial_mob, COMSIG_HUMAN_SHRAPNEL_REMOVED) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/attachable/bayonet, knife) + remove_highlight(knife) + message_to_player("Good. This is the end of the basic marine medical tutorial. The tutorial will end shortly.") + update_objective("Tutorial completed.") + tutorial_end_in(5 SECONDS) + +// END OF SCRIPTING +// START OF SCRIPT HELPERS + +// END OF SCRIPT HELPERS + +/datum/tutorial/marine/medical_basic/init_mob() + . = ..() + arm_equipment(tutorial_mob, /datum/equipment_preset/tutorial/fed) + + +/datum/tutorial/marine/medical_basic/init_map() + new /obj/structure/surface/table/almayer(loc_from_corner(0, 4)) diff --git a/code/datums/tutorial/marine/reqs_line.dm b/code/datums/tutorial/marine/reqs_line.dm new file mode 100644 index 0000000000..5b3bbe3bff --- /dev/null +++ b/code/datums/tutorial/marine/reqs_line.dm @@ -0,0 +1,484 @@ +/* List of Reqs Line tutorial stages */ +#define TUTORIAL_REQS_LINE_STAGE_STARTING 0 //! Reqs Tutorial Stage 0: Get in position +#define TUTORIAL_REQS_LINE_STAGE_ATTACHIES 1 //! Reqs Tutorial Stage 1: Give me some attachies +#define TUTORIAL_REQS_LINE_STAGE_GEARBOX 2 //! Reqs Tutorial Stage 2: I would like an HPR +#define TUTORIAL_REQS_LINE_STAGE_MIXED 3 //! Reqs Tutorial Stage 3: Multiple items. Also toss something over.. +#define TUTORIAL_REQS_LINE_STAGE_SURVIVAL 4 //! Reqs Tutorial Stage 4: SURVIVAL MODE, random requests in a loop + +/// How fast to increase difficulty in survival mode (amount of items/agents) +#define TUTORIAL_REQS_LINE_SURVIVAL_DIFFICULTY (1/3) + +/// Simulates the Requisitions Line experience for newcomers +/datum/tutorial/marine/reqs_line + name = "Marine - Requistions Line" + desc = "Learn how to tend to the requisitions line as a Cargo Technician." + icon_state = "cargotech" + tutorial_id = "requisitions_line" + tutorial_template = /datum/map_template/tutorial/reqs_line + + /// Current step of the tutorial we're at + var/stage = TUTORIAL_REQS_LINE_STAGE_STARTING + /// Current "remind" timer after which the agent will remind player of its request + var/remind_timer + /// Current "hint" timer after which we display visual cues like highlights + var/hint_timer + + /// List of line 'agents', aka the dummies requesting items, sorted by line order + /// During normal stages there is one per stage (except for Forgot stage), + /// During Survival mode there would usually be two: one at the counter, and one moving. + /// The agents are mapped to a list of item types requested. + var/list/mob/living/carbon/human/agents = list() + + /// Active agent currently at the line + var/mob/living/carbon/human/active_agent + /// Specifically for [TUTORIAL_REQS_LINE_STAGE_MIXED], the agent that forgot an item + var/mob/living/carbon/human/loser_agent + + /// Cooldown of confusion if an incorrect item is presented + COOLDOWN_DECLARE(confused_cooldown) + /// Crutch for confusion feedback to work with vending new()ing directly to table - only act surprised once per item type + var/list/confused_types = list() + + /// Max amount of agents per survival wave + var/max_survival_agents = 5 + /// Current survival wave + var/survival_wave = 0 + /// Difficulty factor per survival wave, increasing both the amount of agents and requested items + var/survival_difficulty = 1 + /// Max factor of additional items requested per agent in survival mode. 0.5 = 50% added maximum + var/survival_request_random_factor = 0.5 + + /* + * REQUESTS LISTS + * Maps item types to their names, used for building the requests + */ + var/static/shopping_catalogue = list( + /* ATTACHIES */ + /obj/item/attachable/extended_barrel = list("EB", "EB", "Extended", "Extended Barrel", "Extendo", "Ext Barrel"), + /obj/item/attachable/magnetic_harness = list("MH", "MH", "Magharn", "Mag Harn", "Mag Harness", "Harness", "Magnetic Harness"), + /obj/item/attachable/reddot = list("RDS", "Red Dot", "S5", "Red Dot Sight", "reddot"), + /obj/item/attachable/reflex = list("Reflex", "S6", "Reflex Sight", "S6"), + /obj/item/attachable/scope = list("S8", "S8", "4x", "4x sight", "4x scope", "S8 scope"), + /obj/item/attachable/angledgrip = list("AG", "agrip", "Agrip", "Angled", "angled grip"), + /obj/item/attachable/gyro = list("Gyro"), + /obj/item/attachable/lasersight = list("Laser", "Laser sight", "LS"), + /obj/item/attachable/attached_gun/shotgun = list("U7", "Underbarrel", "Underbarrel Shotgun", "Mini Shotgun"), + /obj/item/attachable/verticalgrip = list("VG", "Vert Grip", "Vertical Grip"), + /obj/item/attachable/stock/rifle = list("Solid Stock", "M41 stock", "M41 Solid Stock"), + /obj/item/attachable/stock/shotgun = list("M37 Stock", "Wooden stock"), + /* GEAR */ + /obj/item/weapon/gun/rifle/m41a = list("M41", "M41", "M41A", "Mk2", "M4 rifle"), + /obj/item/weapon/gun/shotgun/pump = list("M37", "shotgun"), + /obj/item/storage/box/guncase/mou53 = list("MOU", "MOU53", "MOU-53", "Mouse"), + /obj/item/storage/box/guncase/lmg = list("HPR", "HPR kit", "heavy pulse rifle"), + /obj/item/storage/box/guncase/m41aMK1 = list("MK1", "M41 Mk1", "MK1 Kit", "M41A MK1 Kit"), + /obj/item/storage/box/guncase/m56d = list("M56D", "HMG", "M56"), + /obj/item/storage/box/guncase/m2c = list("M2C"), + /obj/item/storage/box/guncase/flamer = list("Flamer", "Flamer kit", "Incinerator"), + /obj/item/storage/box/guncase/m79 = list("GL", "Grenade launcher", "M79", "M79 Grenade launcher"), + /obj/item/clothing/accessory/storage/black_vest = list("Black webbing", "Black webbing vest"), + /obj/item/clothing/accessory/storage/black_vest/brown_vest = list("Brown webbing", "Brown webbing vest"), + /obj/item/clothing/accessory/storage/webbing = list("Webbing", "normal webbing", "web"), + /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit = list("pyro pack", "pyro backpack", "g4-1 pack", "flamer backpack"), + /obj/item/storage/backpack/marine/satchel/rto = list("phone pack", "phone backpack", "radio pack"), + /obj/item/storage/backpack/general_belt = list("G8", "G8 belt"), + /obj/item/storage/pouch/magazine/large = list("Large mag pouch", "Large magazine pouch"), + /obj/item/storage/pouch/shotgun/large = list("Shotgun pouch", "Shotgun shells pouch", "Shells pouch", "Large shells pouch"), + /obj/item/storage/box/m94/signal = list("Signal flares", "box of signals", "CAS flares"), + /obj/item/device/motiondetector = list("MD", "Motion Detector"), + /obj/item/device/binoculars = list("Binos", "Binoculars"), + /obj/item/device/binoculars/range/designator = list("LD", "Designator", "Laser Designator", "Tac Binos"), + /obj/item/pamphlet/skill/jtac = list("JTAC Pamphlet"), + /* Explosives */ + /obj/item/explosive/grenade/high_explosive = list("M40 HEDP", "HEDP"), + /obj/item/explosive/grenade/incendiary = list("M40 HIDP", "Incendiary nade", "Incendiary grenade", "HIDP", "Fire grenade"), + /obj/item/explosive/plastic = list("C4", "C4", "plastic", "plastic explosives"), + /obj/item/explosive/plastic/breaching_charge = list("Breaching", "breach charge", "breaching charge"), + /* AMMO */ + /obj/item/ammo_magazine/rifle/extended = list("Extended", "MK2 Extended", "Extended MK2 Mags"), + /obj/item/ammo_magazine/smg/m39/ap = list("M39 AP", "M39 AP", "SMG AP"), + /obj/item/ammo_magazine/smartgun = list("Smartgun drum", "SG drum"), + ) + +/datum/tutorial/marine/reqs_line/Destroy(force) + STOP_PROCESSING(SSfastobj, src) + kill_timers() + active_agent = null + loser_agent = null + QDEL_LIST(agents) + var/obj/effect/landmark/tutorial/reqs_line_cleaner/line_cleaner = locate() in GLOB.landmarks_list + qdel(line_cleaner) + return ..() + +/datum/tutorial/marine/reqs_line/init_map() + var/obj/structure/machinery/cm_vending/sorted/attachments/blend/tutorial/attachies_vendor = new(loc_from_corner(2, 7)) + add_to_tracking_atoms(attachies_vendor) + var/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend/tutorial/guns_vendor = new(loc_from_corner(3, 7)) + add_to_tracking_atoms(guns_vendor) + var/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend/tutorial/ammo_vendor = new(loc_from_corner(4, 7)) + add_to_tracking_atoms(ammo_vendor) + restock_vendors() + + var/turf/asker_turf = loc_from_corner(1, 6) + RegisterSignal(asker_turf, COMSIG_TURF_ENTERED, PROC_REF(a_new_challenger_appears)) + var/turf/trade_turf = loc_from_corner(2, 6) + RegisterSignal(trade_turf, COMSIG_TURF_ENTERED, PROC_REF(item_offered)) + var/turf/loser_turf = loc_from_corner(0, 6) + RegisterSignal(loser_turf, COMSIG_TURF_ENTERED, PROC_REF(loser_got_the_item)) + + // Crutch to be able to detect items that are spawned directly on the table + RegisterSignal(attachies_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(scan_table_for_items)) + RegisterSignal(guns_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(scan_table_for_items)) + RegisterSignal(ammo_vendor, COMSIG_VENDOR_SUCCESSFUL_VEND, PROC_REF(scan_table_for_items)) + +/datum/tutorial/marine/reqs_line/init_mob() + . = ..() + arm_equipment(tutorial_mob, /datum/equipment_preset/uscm_ship/cargo) + // Remove their radio from CT preset + var/mob/living/carbon/human/user = tutorial_mob + var/obj/item/device/radio/headset/headset = user.wear_l_ear + user.drop_inv_item_on_ground(headset) + QDEL_NULL(headset) + +/// Refills all the vendors on stage updates so the player shouldn't run out of stock +/datum/tutorial/marine/reqs_line/proc/restock_vendors() + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/attachments/blend/tutorial, attachies_vendor) + restock_one_vendor(attachies_vendor) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend/tutorial, cargo_vendor) + restock_one_vendor(cargo_vendor) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend/tutorial, ammo_vendor) + restock_one_vendor(ammo_vendor) + +/// Refills a specific vendor to 99 items across the board +/datum/tutorial/marine/reqs_line/proc/restock_one_vendor(obj/structure/machinery/cm_vending/vendor) + for(var/list/vendspec in vendor.listed_products) + if(vendspec[2] >= 0) + vendspec[2] = 99 + +/datum/tutorial/marine/reqs_line/process(delta_time) + if(stage == TUTORIAL_REQS_LINE_STAGE_SURVIVAL && !length(agents)) + spawn_survival_wave() + + for(var/mob/living/carbon/human/agent as anything in agents) + if(agent == loser_agent) + continue + if(agent == active_agent) + agent.face_dir(EAST) + else if(!agent_step(agent, NORTH)) + agent_step(agent, EAST) + +/// Makes agents move on processing tick if they can. They check surroundings to ensure proper movement flow. +/datum/tutorial/marine/reqs_line/proc/agent_step(mob/living/carbon/human/agent, dir) + var/turf/target_turf = get_step(agent, dir) + if(target_turf.density) + return FALSE + if(locate(/mob/living) in target_turf) + return FALSE + // Don't try to step back through the turnstile + if(dir == EAST && locate(/obj/structure/machinery/line_nexter) in target_turf) + return FALSE + . = TRUE + agent.Move(target_turf, dir) + +/// Creates a new agent with the given request list to queue in the line +/datum/tutorial/marine/reqs_line/proc/spawn_agent(list/request = list(), name_prefix) + var/turf/target_turf = loc_from_corner(1, 2) + var/mob/living/carbon/human/dummy/agent = new(target_turf) + var/mob_name = "[name_prefix][random_name(agent.gender)]" + agent.change_real_name(agent, mob_name) + arm_equipment(agent, /datum/equipment_preset/uscm/tutorial_rifleman) + agents[agent] = request + RegisterSignal(agent, COMSIG_PARENT_QDELETING, PROC_REF(clean_agent)) + +/// Called to generate a new survival wave of agents +/datum/tutorial/marine/reqs_line/proc/spawn_survival_wave() + survival_wave++ + message_to_player("Wave [survival_wave]") + var/agents_to_spawn = min(max_survival_agents, 1 + survival_wave * TUTORIAL_REQS_LINE_SURVIVAL_DIFFICULTY * survival_difficulty) + for(var/agent_i in 1 to agents_to_spawn) + var/items_requested = 1 + survival_wave * survival_difficulty * 0.5 + items_requested *= (1 + survival_request_random_factor * rand()) + spawn_survival_agent(round(items_requested)) + +/// Called to generate a single agent and request +/datum/tutorial/marine/reqs_line/proc/spawn_survival_agent(items_to_request) + var/list/request = list() + var/list/catalogue = list() + // We make a custom catalogue copy to increase weighting of already requested items; + // this avoids getting huge lists too quickly + for(var/typepath in shopping_catalogue) + catalogue += typepath + for(var/i in 1 to items_to_request) + request += pick(catalogue) + if(i < 6) // Only telescope catalogues the first 5 times as the chances compound + catalogue += request + spawn_agent(request, "Lv [survival_wave]. ") + +/// Called when an agent presents at the line window and needs to make a request +/datum/tutorial/marine/reqs_line/proc/a_new_challenger_appears(turf/source, mob/living/carbon/human/challenger) + SIGNAL_HANDLER + if(!(challenger in agents)) // Bob Vancelave NOT allowed + return + active_agent = challenger + confused_types.Cut() + var/list/request = agents[challenger] + if(!length(request)) + make_agent_leave() + return + restock_vendors() + var/speech = verbalize_request(request) + var/greeting = pick("Hello! ", "hi, ", "hey, ", "Good day. ", "I need ", "Please give me ", "", "") // Yes, no greeting is a greeting option for real world accuracy + var/trailing = pick("", "", ", please.", " - please and thank you", ", thanks.", ", hurry") + challenger.say("[greeting][speech][trailing]") // Pleasantries for the first exchange only + remind_timer = addtimer(CALLBACK(src, PROC_REF(remind_request)), 15 SECONDS, TIMER_STOPPABLE) + hint_timer = addtimer(CALLBACK(src, PROC_REF(send_hints)), 3 SECONDS, TIMER_STOPPABLE) + +/// Called when we need to remind the user of what we want served +/datum/tutorial/marine/reqs_line/proc/remind_request() + var/list/request = agents[active_agent] + var/speech = verbalize_request(request) + active_agent.say(speech) + remind_timer = addtimer(CALLBACK(src, PROC_REF(remind_request)), 15 SECONDS, TIMER_STOPPABLE) + +/// Transforms the list of required items by the agent into a string request for the user +/datum/tutorial/marine/reqs_line/proc/verbalize_request(list/original_request) + var/list/request = shuffle(original_request) + var/output_string = "" + var/counts = list() // Assoc list of how many are needed of each item + for(var/item in request) + if(item in counts) + counts[item]++ + else + counts[item] = 1 + var/first = TRUE + for(var/item in counts) + var/list/info = shopping_catalogue[item] + var/word = pick(info) // Pick one of the coded in designations for the item + if(!first) // Join list with commas + output_string += ", " + first = FALSE + if(counts[item] > 1) + output_string += "[counts[item]] " + output_string += word + return output_string + +/// Triggered when an object is put on the table. The agent evaluates if that's something they want and reacts appropriately. +/datum/tutorial/marine/reqs_line/proc/item_offered(turf/source, obj/item/item) + SIGNAL_HANDLER + if(!active_agent) + return + var/list/request = agents[active_agent] + + var/item_type = item.type + if(istype(item, /obj/item/prop/replacer)) + var/obj/item/prop/replacer/prop = item + item_type = prop.original_type + + if(!(item_type in request)) // Wrong item + if(item_type in confused_types) + return + confused_types |= item_type + if(COOLDOWN_FINISHED(src, confused_cooldown)) + COOLDOWN_START(src, confused_cooldown, 5 SECONDS) + active_agent.say("Huh?") + QDEL_IN(item, 30 SECONDS) + return + + request -= item_type + agent_pick_up(active_agent, item) + + // If there's nothing left to pick up, we leave + if(loser_agent) + return // Still blocking the way. Wait here. + if(!length(request)) + make_agent_leave(success = TRUE) + +/// Re-scan the table/trade turf for any present items. We have to do this because items vended to the table do not move onto it. +/datum/tutorial/marine/reqs_line/proc/scan_table_for_items(datum/source) + SIGNAL_HANDLER + var/turf/trade_turf = loc_from_corner(2, 6) + for(var/obj/item/item in trade_turf) + item_offered(source, item) + +/datum/tutorial/marine/reqs_line/proc/agent_pick_up(mob/agent, obj/item/item) + // Actually pick the item up for the animation + agent.put_in_hands(item, drop_on_fail = FALSE) + playsound(agent, "rustle", 30) + // Now delete it + agent.temp_drop_inv_item(item) + qdel(item) + +/datum/tutorial/marine/reqs_line/proc/make_agent_leave(success = FALSE) + switch(stage) + if(TUTORIAL_REQS_LINE_STAGE_ATTACHIES) + INVOKE_ASYNC(src, PROC_REF(continue_stage_gearbox)) + if(TUTORIAL_REQS_LINE_STAGE_GEARBOX) + INVOKE_ASYNC(src, PROC_REF(continue_stage_mixed)) + if(TUTORIAL_REQS_LINE_STAGE_MIXED) + INVOKE_ASYNC(src, PROC_REF(continue_stage_survival)) + // Wave handling for Survival is in process + clean_items() + kill_timers() + + if(!active_agent) + return // Nani? + + if(success && prob(80)) + var/speech = pick("Thanks!", "Thanks", "Thanks bro", "Thank you.", "Bye", "Nice.") + active_agent.say(speech) + + // Immediately step the agent through the turnstile and towards exit + var/turf/target_turf = get_step(active_agent, WEST) + active_agent.Move(target_turf, WEST) + active_agent = null + +/// Cleanup when an agent reaches the exit +/datum/tutorial/marine/reqs_line/proc/clean_agent(datum/source) + SIGNAL_HANDLER + agents -= source + if(active_agent == source) + active_agent = null + +/// Cleanup the table and ground contents when an agent leaves the line +/datum/tutorial/marine/reqs_line/proc/clean_items() + var/turf/trade_turf = loc_from_corner(2, 6) + for(var/obj/item/item in trade_turf) + qdel(item) + var/turf/forgot_turf = loc_from_corner(0, 6) + for(var/obj/item/item in forgot_turf) + qdel(item) + +/// Kills active timers to reset state +/datum/tutorial/marine/reqs_line/proc/kill_timers() + if(remind_timer) + deltimer(remind_timer) + remind_timer = null + if(hint_timer) // User was just that fast + deltimer(hint_timer) + hint_timer = null + +/// Displays appropriate hints for the user based on tutorial stage +/datum/tutorial/marine/reqs_line/proc/send_hints() + switch(stage) + if(TUTORIAL_REQS_LINE_STAGE_ATTACHIES) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/attachments/blend/tutorial, attachies_vendor) + add_highlight(attachies_vendor) + message_to_player("This marine wants 'attachies' for their weapon. You can find them in the leftmost vendor.") + update_objective("Serve the marine's request using the vendors.") + if(TUTORIAL_REQS_LINE_STAGE_GEARBOX) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend/tutorial, gear_vendor) + add_highlight(gear_vendor) + message_to_player("This marine wants items from the gear vendor in the middle. You can use the search function at top right to find things more easily.") + update_objective("Serve the marine's request using the middle vendor. This one has a lot of things, you might want to use the search bar.") + if(TUTORIAL_REQS_LINE_STAGE_MIXED) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend/tutorial, ammo_vendor) + add_highlight(ammo_vendor) + add_highlight(loser_agent) + loser_agent.say("Wait! I really NEED a Mk2 Extended Mag. Throw me one!") + message_to_player("Seems the marine wanted ammo too. Grab some and high-toss it over to him, with [retrieve_bind("toggle_high_throw_mode")].") + update_objective("Get the M41 Extended magazine and perform a high toss to give it to the forgetful marine.") + +/datum/tutorial/marine/reqs_line/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + START_PROCESSING(SSfastobj, src) + + message_to_player("Welcome to Requisitions Line tutorial. Come in and have a seat.") + update_objective("Reach the line window to begin!") + var/turf/target_turf = loc_from_corner(3, 6) + RegisterSignal(target_turf, COMSIG_TURF_ENTERED, PROC_REF(user_in_position)) + + +/// Called when the player is in position to start handling the line +/datum/tutorial/marine/reqs_line/proc/user_in_position(turf/source, atom/movable/mover) + SIGNAL_HANDLER + if(mover != tutorial_mob) + return + UnregisterSignal(source, COMSIG_TURF_ENTERED) + stage = TUTORIAL_REQS_LINE_STAGE_ATTACHIES + var/list/request = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel) + INVOKE_ASYNC(src, PROC_REF(spawn_agent), request) + +/datum/tutorial/marine/reqs_line/proc/continue_stage_gearbox() + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/attachments/blend/tutorial, attachies_vendor) + remove_highlight(attachies_vendor) + message_to_player("Success!") + stage = TUTORIAL_REQS_LINE_STAGE_GEARBOX + var/list/request = list(/obj/item/storage/box/guncase/lmg, /obj/item/explosive/grenade/high_explosive) + spawn_agent(request) + +/datum/tutorial/marine/reqs_line/proc/continue_stage_mixed() + loser_agent = active_agent + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend/tutorial, gear_vendor) + remove_highlight(gear_vendor) + message_to_player("Success!") + stage = TUTORIAL_REQS_LINE_STAGE_MIXED + var/list/request = list(/obj/item/attachable/gyro, /obj/item/storage/box/guncase/m41aMK1, /obj/item/explosive/grenade/high_explosive) + spawn_agent(request) + +/datum/tutorial/marine/reqs_line/proc/loser_got_the_item(turf/source, atom/movable/passer) + SIGNAL_HANDLER + var/obj/item/prop/replacer/prop = passer + if(!istype(prop)) + return + if(prop.original_type != /obj/item/ammo_magazine/rifle/extended) + return + qdel(prop) + loser_agent.say("Nice.") + remove_highlight(loser_agent) + TUTORIAL_ATOM_FROM_TRACKING(/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend/tutorial, ammo_vendor) + remove_highlight(ammo_vendor) + + loser_agent = null // Resumes moving + // Unstucks the guy at line to move on too if he's already been served + if(active_agent) + var/list/request = agents[active_agent] + if(!length(request)) + make_agent_leave(TRUE) + +/datum/tutorial/marine/reqs_line/proc/continue_stage_survival() + mark_completed() + message_to_player("Success! You have completed the tutorial!") + update_objective("You have finished the tutorial! But there's more if you want to practice.") + addtimer(CALLBACK(src, PROC_REF(message_to_player), "You may stay to practice with random orders, or quit with the button at top left."), 3 SECONDS) + addtimer(CALLBACK(src, PROC_REF(engage_survival_mode)), 12 SECONDS) + +/datum/tutorial/marine/reqs_line/proc/engage_survival_mode() + update_objective("Keep practicing with increasingly complex orders, or leave at any time with the button at top left.") + stage = TUTORIAL_REQS_LINE_STAGE_SURVIVAL + +/datum/map_template/tutorial/reqs_line + name = "Reqs Line Tutorial (8x11)" + mappath = "maps/tutorial/tutorial_reqs_line.dmm" + width = 8 + height = 11 + +/* === ITEMS USED IN THE TUTORIAL === */ + +/// Deletes dummies coming onto it, purely and simply +/obj/effect/landmark/tutorial/reqs_line_cleaner/Crossed(atom/movable/passer) + if(istype(passer, /mob/living/carbon/human)) + qdel(passer) + +/* === VENDORS USED IN THE TUTORIAL === */ + +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend/tutorial + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES | VEND_PROPS + +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend/tutorial + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES | VEND_PROPS + +/obj/structure/machinery/cm_vending/sorted/attachments/blend/tutorial + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES | VEND_PROPS + + +#undef TUTORIAL_REQS_LINE_STAGE_STARTING +#undef TUTORIAL_REQS_LINE_STAGE_ATTACHIES +#undef TUTORIAL_REQS_LINE_STAGE_GEARBOX +#undef TUTORIAL_REQS_LINE_STAGE_MIXED +#undef TUTORIAL_REQS_LINE_STAGE_SURVIVAL + +#undef TUTORIAL_REQS_LINE_SURVIVAL_DIFFICULTY diff --git a/code/datums/tutorial/ss13/_ss13.dm b/code/datums/tutorial/ss13/_ss13.dm new file mode 100644 index 0000000000..53cf5c918e --- /dev/null +++ b/code/datums/tutorial/ss13/_ss13.dm @@ -0,0 +1,41 @@ +/datum/tutorial/ss13 + category = TUTORIAL_CATEGORY_SS13 + parent_path = /datum/tutorial/ss13 + icon_state = "ss13" + +/datum/tutorial/ss13/init_mob() + tutorial_mob.close_spawn_windows() + + var/mob/living/carbon/human/new_character = new(bottom_left_corner) + new_character.lastarea = get_area(bottom_left_corner) + + tutorial_mob.client.prefs.copy_all_to(new_character) + + if(tutorial_mob.client.prefs.be_random_body) + var/datum/preferences/rand_prefs = new() + rand_prefs.randomize_appearance(new_character) + + new_character.job = tutorial_mob.job + new_character.name = tutorial_mob.real_name + new_character.voice = tutorial_mob.real_name + + new_character.sec_hud_set_ID() + new_character.hud_set_squad() + + SSround_recording.recorder.track_player(new_character) + + if(tutorial_mob.mind) + tutorial_mob.mind_initialize() + tutorial_mob.mind.transfer_to(new_character, TRUE) + tutorial_mob.mind.setup_human_stats() + + INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, regenerate_icons)) + INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_body), 1, 0) + INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_hair)) + + tutorial_mob = new_character + RegisterSignal(tutorial_mob, COMSIG_LIVING_GHOSTED, PROC_REF(on_ghost)) + RegisterSignal(tutorial_mob, list(COMSIG_PARENT_QDELETING, COMSIG_MOB_DEATH, COMSIG_MOB_END_TUTORIAL), PROC_REF(signal_end_tutorial)) + RegisterSignal(tutorial_mob, COMSIG_MOB_LOGOUT, PROC_REF(on_logout)) + arm_equipment(tutorial_mob, /datum/equipment_preset/tutorial/fed) + return ..() diff --git a/code/datums/tutorial/ss13/basic_ss13.dm b/code/datums/tutorial/ss13/basic_ss13.dm new file mode 100644 index 0000000000..65bb0cac94 --- /dev/null +++ b/code/datums/tutorial/ss13/basic_ss13.dm @@ -0,0 +1,84 @@ +/datum/tutorial/ss13/basic + name = "Space Station 13 - Basic" + desc = "Learn the very basics of Space Station 13. Recommended if you haven't played before." + tutorial_id = "ss13_basic_1" + tutorial_template = /datum/map_template/tutorial/s7x7 + +// START OF SCRIPTING + +/datum/tutorial/ss13/basic/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + message_to_player("This is the tutorial for the basics of Space Station 13. Any current instructions can be found in the top-right corner, in the status panel.") + update_objective("Here's where it'll be!") + + addtimer(CALLBACK(src, PROC_REF(require_move)), 4 SECONDS) // check if this is a good amount of time + +/datum/tutorial/ss13/basic/proc/require_move() + message_to_player("Now, move in any direction using [retrieve_bind("North")], [retrieve_bind("West")], [retrieve_bind("South")], or [retrieve_bind("East")].") + update_objective("Move in any direction using the [retrieve_bind("North")][retrieve_bind("West")][retrieve_bind("South")][retrieve_bind("East")] keys.") + + RegisterSignal(tutorial_mob, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(on_move)) + +/datum/tutorial/ss13/basic/proc/on_move(datum/source, actually_moving, direction, specific_direction) + SIGNAL_HANDLER + + if(!actually_moving) // The mob just looked in a different dir instead of moving + return + + UnregisterSignal(tutorial_mob, COMSIG_MOB_MOVE_OR_LOOK) + + message_to_player("Good. Now, switch hands with [retrieve_bind("swap_hands")].") + update_objective("Switch hands with [retrieve_bind("swap_hands")].") + + RegisterSignal(tutorial_mob, COMSIG_MOB_SWAPPED_HAND, PROC_REF(on_hand_swap)) + +/datum/tutorial/ss13/basic/proc/on_hand_swap(datum/source) + SIGNAL_HANDLER + + UnregisterSignal(tutorial_mob, COMSIG_MOB_SWAPPED_HAND) + + message_to_player("Good. Now, pick up the satchel that just spawned and equip it with [retrieve_bind("quick_equip")].") + update_objective("Pick up the satchel and equip it with [retrieve_bind("quick_equip")].") + + var/obj/item/storage/backpack/marine/satchel/satchel = new(loc_from_corner(2, 2)) + add_to_tracking_atoms(satchel) + add_highlight(satchel) + + RegisterSignal(tutorial_mob, COMSIG_HUMAN_EQUIPPED_ITEM, PROC_REF(on_satchel_equip)) + +/datum/tutorial/ss13/basic/proc/on_satchel_equip(datum/source, obj/item/equipped, slot) + SIGNAL_HANDLER + + if(!istype(equipped, /obj/item/storage/backpack/marine/satchel) || (slot != WEAR_BACK)) + return + + UnregisterSignal(tutorial_mob, COMSIG_HUMAN_EQUIPPED_ITEM) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/storage/backpack/marine/satchel, satchel) + remove_highlight(satchel) + message_to_player("Now, say anything by pressing [retrieve_bind("Say")].") + update_objective("Speak using [retrieve_bind("Say")].") + + RegisterSignal(tutorial_mob, COMSIG_LIVING_SPEAK, PROC_REF(on_speak)) + +/datum/tutorial/ss13/basic/proc/on_speak(datum/source) + SIGNAL_HANDLER + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_SPEAK) + message_to_player("Excellent. The next tutorial will cover intents. The tutorial will end shortly.") + update_objective("") + tutorial_end_in(5 SECONDS, TRUE) + +// END OF SCRIPTING +// START OF SCRIPT HELPERS + + + +// END OF SCRIPT HELPERS + +/datum/tutorial/ss13/basic/init_mob() + . = ..() + tutorial_mob.forceMove(loc_from_corner(2, 1)) diff --git a/code/datums/tutorial/ss13/intents.dm b/code/datums/tutorial/ss13/intents.dm new file mode 100644 index 0000000000..d67b2ac1b4 --- /dev/null +++ b/code/datums/tutorial/ss13/intents.dm @@ -0,0 +1,113 @@ +/datum/tutorial/ss13/intents + name = "Space Station 13 - Intents" + desc = "Learn how the intent interaction system works." + icon_state = "intents" + tutorial_id = "ss13_intents_1" + tutorial_template = /datum/map_template/tutorial/s7x7 + +// START OF SCRIPTING + +/datum/tutorial/ss13/intents/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + message_to_player("This is the tutorial for the intents system of Space Station 13. The highlighted UI element in the bottom-right corner is your current intent.") + var/datum/hud/human/human_hud = tutorial_mob.hud_used + add_highlight(human_hud.action_intent) + + addtimer(CALLBACK(src, PROC_REF(require_help)), 4.5 SECONDS) + +/datum/tutorial/ss13/intents/proc/require_help() + tutorial_mob.a_intent_change(INTENT_DISARM) + message_to_player("Your intent has been changed off of help. Change back to it by pressing [retrieve_bind("select_help_intent")].") + update_objective("Change to help intent by pressing [retrieve_bind("select_help_intent")].") + + RegisterSignal(tutorial_mob, COMSIG_MOB_INTENT_CHANGE, PROC_REF(on_help_intent)) + +/datum/tutorial/ss13/intents/proc/on_help_intent(datum/source, new_intent) + SIGNAL_HANDLER + + if(new_intent != INTENT_HELP) + return + + UnregisterSignal(tutorial_mob, COMSIG_MOB_INTENT_CHANGE) + + var/mob/living/carbon/human/dummy/tutorial/tutorial_dummy = new(loc_from_corner(2, 3)) + add_to_tracking_atoms(tutorial_dummy) + + message_to_player("The first of the intents is help intent. It is used to harmlessly touch others, put out fire, give CPR, and similar. Click on the Test Dummy to give them a pat on the back.") + update_objective("Click on the dummy on help intent.") + + RegisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN, PROC_REF(on_help_attack)) + +/datum/tutorial/ss13/intents/proc/on_help_attack(datum/source, mob/living/carbon/human/attacked_mob) + SIGNAL_HANDLER + + if((attacked_mob == src) || (tutorial_mob.a_intent != INTENT_HELP)) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN) + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human/dummy/tutorial, tutorial_dummy) + tutorial_dummy.status_flags = DEFAULT_MOB_STATUS_FLAGS + REMOVE_TRAIT(tutorial_dummy, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + tutorial_dummy.anchored = FALSE + + message_to_player("The second intent is disarm, selectable with [retrieve_bind("select_disarm_intent")]. Disarm is used to shove people, which can make them drop items or fall to the ground. Shove the Test Dummy until it falls over.") + update_objective("Switch to disarm intent by pressing [retrieve_bind("select_disarm_intent")] and shove the dummy to the ground.") + + RegisterSignal(tutorial_dummy, COMSIG_LIVING_APPLY_EFFECT, PROC_REF(on_shove_down)) + +/datum/tutorial/ss13/intents/proc/on_shove_down(datum/source, datum/status_effect/new_effect) + SIGNAL_HANDLER + + if(!istype(new_effect, /datum/status_effect/incapacitating/knockdown)) + return + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human/dummy/tutorial, tutorial_dummy) + UnregisterSignal(tutorial_dummy, COMSIG_LIVING_APPLY_EFFECT) + tutorial_dummy.rejuvenate() + + message_to_player("The third intent is grab. Grab is used to grab people in either a passive, aggressive, or chokehold grab. Grab successively to \"upgrade\" your grab. Aggressively grab the Test Dummy.") + update_objective("Aggressively grab the dummy by grabbing them twice.") + + + RegisterSignal(tutorial_dummy, COMSIG_MOB_AGGRESSIVELY_GRABBED, PROC_REF(on_aggrograb)) + +/datum/tutorial/ss13/intents/proc/on_aggrograb(datum/source, mob/living/carbon/human/choker) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human/dummy/tutorial, tutorial_dummy) + UnregisterSignal(tutorial_dummy, COMSIG_MOB_AGGRESSIVELY_GRABBED) + + message_to_player("The final intent is harm. Harm is used to injure people with your fists or a melee weapon. Punch the Test Dummy with an empty hand.") + update_objective("Attack the dummy with an empty hand.") + + RegisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN, PROC_REF(on_harm_attack)) + +/datum/tutorial/ss13/intents/proc/on_harm_attack(datum/source, mob/living/carbon/human/attacked_mob) + SIGNAL_HANDLER + + if((attacked_mob == src) || (tutorial_mob.a_intent != INTENT_HARM)) + return + + UnregisterSignal(tutorial_mob, COMSIG_LIVING_ATTACKHAND_HUMAN) + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human/dummy/tutorial, tutorial_dummy) + tutorial_dummy.status_flags = GODMODE + + message_to_player("Excellent. Those are the basics of the intent system. The tutorial will end shortly.") + update_objective("") + + tutorial_end_in(5 SECONDS, TRUE) + +// END OF SCRIPTING +// START OF SCRIPT HELPERS + + + +// END OF SCRIPT HELPERS + +/datum/tutorial/ss13/intents/init_mob() + . = ..() + tutorial_mob.forceMove(loc_from_corner(2, 0)) diff --git a/code/datums/tutorial/tutorial_example.dm b/code/datums/tutorial/tutorial_example.dm new file mode 100644 index 0000000000..9042346f8d --- /dev/null +++ b/code/datums/tutorial/tutorial_example.dm @@ -0,0 +1,74 @@ +/datum/tutorial/marine/example + name = "Example Tutorial" + tutorial_id = "example" // This won't show up in the list, so this'll be irrelevant anyway. + category = TUTORIAL_CATEGORY_BASE + parent_path = /datum/tutorial/marine/example + +// START OF SCRIPTING + +/datum/tutorial/marine/example/start_tutorial(mob/starting_mob) + // Here, we're calling parent and checking its return value. If it has a falsey one (as done by !.), then something went wrong and we should abort + // There isn't really a reason that you _shouldn't_ have this + . = ..() + if(!.) + return + + // Init_mob() isn't called by default, so we call it here + init_mob() + // As is standard, we give a message to the player and update their status panel with what we want done. + message_to_player("This is an example tutorial. Perform any emote to continue.") + update_objective("Do any emote.") + // This makes the player (tutorial_mob) listen for the COMSIG_MOB_EMOTE event, which will then call on_emote() when it hears it. + RegisterSignal(tutorial_mob, COMSIG_MOB_EMOTE, PROC_REF(on_emote)) + +/datum/tutorial/marine/example/proc/on_emote(datum/source) + // With any proc called via signal (see the RegisterSignal line above for details), we add SIGNAL_HANDLER to it. + SIGNAL_HANDLER + + // Now that we've gotten the signal and started the script, we want to immediately stop listening for it. + UnregisterSignal(tutorial_mob, COMSIG_MOB_EMOTE) + message_to_player("Good. Now, pick up that can of Weyland-Yutani Aspen Beer.") + update_objective("Pick up that can.") + // This macro takes a specific type path (the same used in init_map()) and a variable name to retrieve an object from the tracked object list + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/reagent_container/food/drinks/cans/aspen, beer_can) + // Now we're adding a yellow highlight around the can to make sure people know what we're talking about + add_highlight(beer_can) + // Now, we always prefer to register signals on the tutorial_mob (as opposed to the beer_can) whenever possible + RegisterSignal(tutorial_mob, COMSIG_MOB_PICKUP_ITEM, PROC_REF(on_can_pickup)) + +/// We get these arguments from the signal's definition. If you have VSC, ctrl+click on COMSIG_MOB_PICKUP_ITEM above. When dealing with a signal proc, `datum/source` is always the first argument, then any added ones +/datum/tutorial/marine/example/proc/on_can_pickup(datum/source, obj/item/picked_up) + SIGNAL_HANDLER + + // Since we're just listening for the mob picking anything up, we want to confirm that the picked up item is the can before continuing. If it's not, then we return and keep listening. + if(!istype(picked_up, /obj/item/reagent_container/food/drinks/cans/aspen)) + // If we hit this return here, then the picked up item wasn't the can, so we abort and keep listening. + return + + // Since we passed the above if statement, stop listening for item pickups. + UnregisterSignal(tutorial_mob, COMSIG_MOB_PICKUP_ITEM) + // Let's get the tracked beer can again. + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/reagent_container/food/drinks/cans/aspen, beer_can) + // And remove the highlight now that it's picked up + remove_highlight(beer_can) + message_to_player("Very good. This is the end of the example tutorial. You will be sent back to the lobby screen momentarily.") + // 7.5 seconds after the above message is sent, kick the player out and end the tutorial. + tutorial_end_in(7.5 SECONDS, TRUE) + + +// END OF SCRIPTING +// START OF SCRIPT HELPERS + +// END OF SCRIPT HELPERS + +/datum/tutorial/marine/example/init_mob() + . = ..() + // We give the tutorial mob a basic ID so they can use general vendors and etc. This is here because not all marine tutorials may want to use a naked equipment preset. + arm_equipment(tutorial_mob, /datum/equipment_preset/tutorial) + + +/datum/tutorial/marine/example/init_map() + // Here we're initializing a new can that we want to track, so we spawn it 2 tiles to the left and up from the bottom left corner of the tutorial zone + var/obj/item/reagent_container/food/drinks/cans/aspen/the_can = new(loc_from_corner(2, 2)) + // Now we start tracking it + add_to_tracking_atoms(the_can) diff --git a/code/datums/tutorial/xenomorph/_xenomorph.dm b/code/datums/tutorial/xenomorph/_xenomorph.dm new file mode 100644 index 0000000000..caa33d8eed --- /dev/null +++ b/code/datums/tutorial/xenomorph/_xenomorph.dm @@ -0,0 +1,35 @@ +/datum/tutorial/xenomorph + category = TUTORIAL_CATEGORY_XENO + parent_path = /datum/tutorial/xenomorph + icon_state = "xeno" + ///Starting xenomorph type (caste) of type /mob/living/carbon/xenomorph/... + var/mob/living/carbon/xenomorph/starting_xenomorph_type = /mob/living/carbon/xenomorph/drone + ///Reference to the actual xenomorph mob + var/mob/living/carbon/xenomorph/xeno + ///If TRUE remove all actions from the tutorial xenomorph. If FALSE none will be removed. You can give actions back in the tutorial with give_action() + var/remove_all_actions = TRUE + +/datum/tutorial/xenomorph/init_mob() + var/mob/living/carbon/xenomorph/new_character = new starting_xenomorph_type(bottom_left_corner, null, XENO_HIVE_TUTORIAL) + new_character.lastarea = get_area(bottom_left_corner) + + //Remove all actions from the tutorial xenomorph if remove_all_actions is TRUE + if(remove_all_actions) + for(var/datum/action/action_path as anything in new_character.base_actions) + remove_action(new_character, action_path) + + setup_xenomorph(new_character, tutorial_mob, is_late_join = FALSE) + + // We don't want people talking to other xenomorphs across tutorials + new_character.can_hivemind_speak = FALSE + // No age prefix or HUD element + new_character.age = XENO_NO_AGE + new_character.show_age_prefix = FALSE + new_character.generate_name() + + tutorial_mob = new_character + xeno = new_character + RegisterSignal(tutorial_mob, COMSIG_LIVING_GHOSTED, PROC_REF(on_ghost)) + RegisterSignal(tutorial_mob, list(COMSIG_PARENT_QDELETING, COMSIG_MOB_DEATH, COMSIG_MOB_END_TUTORIAL), PROC_REF(signal_end_tutorial)) + RegisterSignal(tutorial_mob, COMSIG_MOB_LOGOUT, PROC_REF(on_logout)) + return ..() diff --git a/code/datums/tutorial/xenomorph/abomination.dm b/code/datums/tutorial/xenomorph/abomination.dm new file mode 100644 index 0000000000..83ac86b8f0 --- /dev/null +++ b/code/datums/tutorial/xenomorph/abomination.dm @@ -0,0 +1,256 @@ +/datum/tutorial/xenomorph/abomination + name = "Xenomorph - Predalien" + desc = "A tutorial to teach you how to play the \"Predalien\", also known as Abomination, xenomorph caste. Completing this is required to be able to play an Abomination." + icon_state = "predalien" + tutorial_id = "xeno_abom_1" + tutorial_template = /datum/map_template/tutorial/s7x7 + starting_xenomorph_type = /mob/living/carbon/xenomorph/predalien/tutorial + /// How many marines in the kill_marines stage have been killed + var/ending_marines_killed = 0 + +// START OF SCRITPING + +/datum/tutorial/xenomorph/abomination/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + xeno.lock_evolve = TRUE + + message_to_player("Welcome to the tutorial for the Abomination xenomorph. As an Abomination, you are a frontline powerhouse whose damage scales with your kill count.") + message_to_player("Your kill count scales when you kill humans with your slash attack, up to 10 kills. Ability kills do not count towards this.") + + addtimer(CALLBACK(src, PROC_REF(how_to_be_abom)), 12 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/how_to_be_abom() + message_to_player("Be aware that you are kill-on-sight to all Predators forever, and will very likely need to defend yourself against multiple.") + message_to_player("Be sure to stick close to other xenomorphs or over-extend. While you may be stronger than many, you don't have enough health or armor to go out on your own.") + addtimer(CALLBACK(src, PROC_REF(feral_rush_tutorial)), 10.5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/feral_rush_tutorial() + var/datum/action/rush = give_action(xeno, /datum/action/xeno_action/onclick/feralrush) + message_to_player("Your first unique ability is Feral Rush, an ability that temporarily increases your speed and your armor. Use Feral Rush to continue.") + update_objective("Use your Feral Rush ability.") + add_highlight(rush.button) + RegisterSignal(rush, COMSIG_XENO_ACTION_USED, PROC_REF(on_rush_used)) + +/datum/tutorial/xenomorph/abomination/proc/on_rush_used(datum/action/source, mob/owner) + SIGNAL_HANDLER + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + remove_highlight(source.button) + addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_1)), 5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_1() + hide_action(xeno, /datum/action/xeno_action/onclick/feralrush) + xeno.cannot_slash = TRUE + message_to_player("Your next ability is Roar, a versatile ability that disables any motion detectors or cloaks in a medium radius around you.") + message_to_player("Additionally, it gives a slash and speed bonus to any friendly xenomorphs in range.") + addtimer(CALLBACK(src, PROC_REF(predalien_roar_tutorial_2)), 8 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/predalien_roar_tutorial_2() + var/datum/action/roar = give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + message_to_player("One of Roar's most useful abilities is uncloaking nearby Predators. Use Roar to uncloak the newly spawned Predator.") + update_objective("Use your Roar ability to uncloak the nearby predator.") + add_highlight(roar.button) + var/mob/living/carbon/human/pred = new(loc_from_corner(3, 3)) + add_to_tracking_atoms(pred) + pred.create_hud() + arm_equipment(pred, /datum/equipment_preset/yautja/blooded) + var/obj/item/clothing/gloves/yautja/hunter/bracers = locate() in pred + if(!bracers) + message_to_player("Something has gone wrong. Please make a bug report.") + CRASH("predator spawned without bracers in tutorial") + + bracers.cloaker_internal(pred, TRUE, TRUE, TRUE) + RegisterSignal(bracers, COMSIG_PRED_BRACER_DECLOAKED, PROC_REF(smash_tutorial_1)) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_1(datum/source) + SIGNAL_HANDLER + + var/datum/action/roar = get_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + remove_highlight(roar.button) + update_objective("") + + UnregisterSignal(source, COMSIG_PRED_BRACER_DECLOAKED) + addtimer(CALLBACK(src, PROC_REF(smash_tutorial_2)), 2.5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_2() + hide_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + message_to_player("Good. Roar will be one of your primary tools for defending against Predators. Your next ability is Feral Smash.") + xeno.cannot_slash = FALSE + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, pred) + remove_from_tracking_atoms(pred) + qdel(pred) + + addtimer(CALLBACK(src, PROC_REF(smash_tutorial_3)), 5 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/smash_tutorial_3() + var/datum/action/smash = give_action(xeno, /datum/action/xeno_action/activable/feral_smash) + RegisterSignal(smash, COMSIG_XENO_PRE_ACTION_USED, PROC_REF(frenzy_tutorial_1)) + add_highlight(smash.button) + + message_to_player("Feral Smash is a strong lunge with a range of five tiles. It deals decent damage that scales with your kill count.") + message_to_player("Use Feral Smash on the marine to continue.") + update_objective("Use your Feral Smash ability on the marine.") + + xeno.forceMove(loc_from_corner(0, 2)) + xeno.anchored = TRUE + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + + var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2)) + add_to_tracking_atoms(marine) + arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1(datum/action/source, mob/owner) + SIGNAL_HANDLER + + xeno.anchored = FALSE + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + RegisterSignal(source, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_2)) + RegisterSignal(source, COMSIG_XENO_FAILED_ACTION_USED, PROC_REF(frenzy_tutorial_1_fail)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_1_fail(datum/action/source, mob/owner) + SIGNAL_HANDLER + + xeno.anchored = TRUE + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + UnregisterSignal(source, list(COMSIG_XENO_FAILED_ACTION_USED, COMSIG_XENO_ACTION_USED)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_2(datum/action/source, mob/owner) + SIGNAL_HANDLER + + if(get_turf(xeno) == loc_from_corner(0, 2)) // xeno didn't lunge at the mob + xeno.anchored = TRUE + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + return + + update_objective("") + var/datum/action/smash = get_action(xeno, /datum/action/xeno_action/activable/feral_smash) + remove_highlight(smash.button) + UnregisterSignal(source, list(COMSIG_XENO_ACTION_USED, COMSIG_XENO_PRE_ACTION_USED)) + addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_3)), 2 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_3() + remove_action(xeno, /datum/action/xeno_action/activable/feral_smash) + message_to_player("Good. Your final ability is Feral Frenzy, a strong ability that can alternate between hitting a single target or all within a large radius. However, it locks you in place while it winds up.") + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + remove_from_tracking_atoms(marine) + qdel(marine) + + addtimer(CALLBACK(src, PROC_REF(frenzy_tutorial_4)), 6 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_4() + var/mob/living/carbon/human/marine = new(loc_from_corner(4, 2)) + add_to_tracking_atoms(marine) + RegisterSignal(marine, COMSIG_MOB_DEATH, PROC_REF(on_marine_early_death)) + arm_equipment(marine, /datum/equipment_preset/uscm/private_equipped) + + var/datum/action/frenzy = give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + add_highlight(frenzy.button) + message_to_player("By default, Feral Frenzy is on single-target mode. Use Feral Frenzy on the newly spawned marine.") + update_objective("Use Feral Frenzy on the marine.") + + RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_5)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_5(datum/action/xeno_action/source, mob/owner) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + if(get_dist(marine, xeno) > 1) + return + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + var/datum/action/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + remove_highlight(frenzy.button) + var/datum/action/frenzy_toggle = give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + add_highlight(frenzy_toggle.button) + message_to_player("Good, now toggle Feral Frenzy's AOE mode with the newly available Toggle Gutting Type ability.") + update_objective("Use the Toggle Gutting Type ability to change your frenzy mode.") + + RegisterSignal(frenzy_toggle, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_6)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_6(datum/action/xeno_action/source, mob/owner) + SIGNAL_HANDLER + + UnregisterSignal(source, COMSIG_XENO_ACTION_USED) + remove_highlight(source.button) + source.plasma_cost = INFINITY // slightly scuffed way of disabling the switch button + source.update_button_icon() + + message_to_player("Feral Frenzy has now been changed into AOE mode. Use Feral Frenzy again anywhere within 2 tiles of the marine.") + update_objective("Use Feral Frenzy within 2 tiles of the marine.") + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + marine.rejuvenate() + var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + frenzy.targeting = AOETARGETGUT + frenzy.reduce_cooldown(frenzy.xeno_cooldown) + add_highlight(frenzy.button) + + RegisterSignal(frenzy, COMSIG_XENO_ACTION_USED, PROC_REF(frenzy_tutorial_7)) + +/datum/tutorial/xenomorph/abomination/proc/frenzy_tutorial_7(datum/action/source) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + var/datum/action/xeno_action/activable/feralfrenzy/frenzy = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + if(get_dist(xeno, marine) > frenzy.range) + // Not close enough to actually hit the marine + return + + UnregisterSignal(frenzy, COMSIG_XENO_ACTION_USED) + UnregisterSignal(marine, COMSIG_MOB_DEATH) + remove_highlight(frenzy.button) + message_to_player("Good. As you may have noticed, the AOE version of Feral Frenzy takes longer to wind up, in addition to doing less overall damage.") + addtimer(CALLBACK(src, PROC_REF(kill_marines)), 6 SECONDS) + +/datum/tutorial/xenomorph/abomination/proc/kill_marines() + message_to_player("To finish the tutorial, kill the three newly-spawned marines using any of your attacks or abilities.") + + // Spawn/rejuv the dummies + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) // we can reuse this one though + marine.rejuvenate() + marine.forceMove(loc_from_corner(4, 2)) + RegisterSignal(marine, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + var/mob/living/carbon/human/marine_2 = new(loc_from_corner(2, 2)) + arm_equipment(marine_2, /datum/equipment_preset/uscm/private_equipped) + RegisterSignal(marine_2, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + var/mob/living/carbon/human/marine_3 = new(loc_from_corner(0, 2)) + arm_equipment(marine_3, /datum/equipment_preset/uscm/private_equipped) + RegisterSignal(marine_3, COMSIG_MOB_DEATH, PROC_REF(kill_marines_2)) + + // Arrange the actions about how they'd be in an actual game + remove_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + remove_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + + give_action(xeno, /datum/action/xeno_action/activable/tail_stab) + give_action(xeno, /datum/action/xeno_action/onclick/feralrush) + give_action(xeno, /datum/action/xeno_action/onclick/predalien_roar) + give_action(xeno, /datum/action/xeno_action/activable/feral_smash) + give_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + give_action(xeno, /datum/action/xeno_action/onclick/toggle_gut_targeting) + +/datum/tutorial/xenomorph/abomination/proc/kill_marines_2(datum/source) + SIGNAL_HANDLER + + if(ending_marines_killed < 2) + ending_marines_killed++ + return + + message_to_player("Good work. The tutorial will end shortly.") + tutorial_end_in(7 SECONDS, TRUE) + +// END OF SCRIPTING + +/// In case a marine dies early to prevent softlocks +/datum/tutorial/xenomorph/abomination/proc/on_marine_early_death(datum/source) + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, marine) + marine.rejuvenate() diff --git a/code/datums/tutorial/xenomorph/xenomorph_basic.dm b/code/datums/tutorial/xenomorph/xenomorph_basic.dm new file mode 100644 index 0000000000..ad51756ecb --- /dev/null +++ b/code/datums/tutorial/xenomorph/xenomorph_basic.dm @@ -0,0 +1,251 @@ +#define WAITING_HEALTH_THRESHOLD 300 + +/datum/tutorial/xenomorph/basic + name = "Xenomorph - Basic" + desc = "A tutorial to get you acquainted with the very basics of how to play a xenomorph." + icon_state = "xeno" + tutorial_id = "xeno_basic_1" + tutorial_template = /datum/map_template/tutorial/s12x12 + starting_xenomorph_type = /mob/living/carbon/xenomorph/drone + +// START OF SCRITPING + +/datum/tutorial/xenomorph/basic/start_tutorial(mob/starting_mob) + . = ..() + if(!.) + return + + init_mob() + + xeno.plasma_stored = 0 + xeno.plasma_max = 0 + xeno.melee_damage_lower = 40 + xeno.melee_damage_upper = 40 + xeno.lock_evolve = TRUE + + message_to_player("Welcome to the Xenomorph basic tutorial. You are [xeno.name], a drone, the workhorse of the hive.") + + addtimer(CALLBACK(src, PROC_REF(on_stretch_legs)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/on_stretch_legs() + message_to_player("As a drone you can perform most basic functions of the Xenomorph Hive. Such as weeding, building, planting eggs and nesting captured humans.") + addtimer(CALLBACK(src, PROC_REF(on_inform_health)), 5 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/on_inform_health() + message_to_player("The green icon on the right of your screen and green bar next to your character represents your health.") + addtimer(CALLBACK(src, PROC_REF(on_give_plasma)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/on_give_plasma() + message_to_player("You have been given plasma, a resource used for casting your abilities. This is represented by the blue icon at the right of your screen and the blue bar next to your character.") + xeno.plasma_max = 200 + xeno.plasma_stored = 200 + addtimer(CALLBACK(src, PROC_REF(on_damage_xenomorph)), 15 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/on_damage_xenomorph() + xeno.apply_damage(350) + xeno.emote("hiss") + message_to_player("Oh no! You've been damaged. Notice your green health bars have decreased. Xenomorphs can recover their health by standing or resting on weeds.") + addtimer(CALLBACK(src, PROC_REF(request_player_plant_weed)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/request_player_plant_weed() + update_objective("Plant a weed node using the new ability Plant Weeds you've just been given.") + give_action(xeno, /datum/action/xeno_action/onclick/plant_weeds) + message_to_player("Plant a weed node to spread weeds using your new ability at the top of the screen. Weeds heal xenomorphs and regenerate their plasma. They also slow humans, making them easier to fight.") + RegisterSignal(xeno, COMSIG_XENO_PLANT_RESIN_NODE, PROC_REF(on_plant_resinode)) + +/datum/tutorial/xenomorph/basic/proc/on_plant_resinode() + SIGNAL_HANDLER + UnregisterSignal(xeno, COMSIG_XENO_PLANT_RESIN_NODE) + message_to_player("Well done. You can rest on the weeds to heal faster using the Rest ability or with the [retrieve_bind("rest")] key.") + message_to_player("We have increased your plasma reserves. Notice also your plasma will regenerate while you are on weeds.") + give_action(xeno, /datum/action/xeno_action/onclick/xeno_resting) + update_objective("Rest or wait until you are at least [WAITING_HEALTH_THRESHOLD] health.") + xeno.plasma_max = 500 + RegisterSignal(xeno, COMSIG_XENO_ON_HEAL_WOUNDS, PROC_REF(on_xeno_gain_health)) + +/datum/tutorial/xenomorph/basic/proc/on_xeno_gain_health() + SIGNAL_HANDLER + UnregisterSignal(xeno, COMSIG_XENO_ON_HEAL_WOUNDS) + message_to_player("Even on weeds. Healing is a slow process. This can be sped up using pheromones. Emit \"Recovery\" pheromones now using your new ability to speed up your healing.") + give_action(xeno, /datum/action/xeno_action/onclick/emit_pheromones) + update_objective("Emit recovery pheromones.") + RegisterSignal(xeno, COMSIG_XENO_START_EMIT_PHEROMONES, PROC_REF(on_xeno_emit_pheromone)) + +/datum/tutorial/xenomorph/basic/proc/on_xeno_emit_pheromone(emitter, pheromone) + SIGNAL_HANDLER + if(!(pheromone == "recovery")) + message_to_player("These are not recovery pheromones. Click your ability again to stop emitting, and choose Recovery instead.") + else if(xeno.health > WAITING_HEALTH_THRESHOLD) + reach_health_threshold() + UnregisterSignal(xeno, COMSIG_XENO_START_EMIT_PHEROMONES) + else + UnregisterSignal(xeno, COMSIG_XENO_START_EMIT_PHEROMONES) + message_to_player("Well done. Recovery Pheromones will significantly speed up your health regeneration. Rest or wait until your health is at least [WAITING_HEALTH_THRESHOLD].") + message_to_player("Pheromones also provide their effects to other xenomorph sisters nearby!") + RegisterSignal(xeno, COMSIG_XENO_ON_HEAL_WOUNDS, PROC_REF(reach_health_threshold)) + +/datum/tutorial/xenomorph/basic/proc/reach_health_threshold() + SIGNAL_HANDLER + if(xeno.health < WAITING_HEALTH_THRESHOLD) + return + + UnregisterSignal(xeno, COMSIG_XENO_ON_HEAL_WOUNDS) + + message_to_player("Good. Well done.") + message_to_player("A hostile human or \"tallhost\" has appeared. Use your harm intent to kill it in melee!") + update_objective("Kill the human!") + + var/mob/living/carbon/human/human_dummy = new(loc_from_corner(7,7)) + add_to_tracking_atoms(human_dummy) + add_highlight(human_dummy, COLOR_RED) + RegisterSignal(human_dummy, COMSIG_MOB_DEATH, PROC_REF(on_human_death_phase_one)) + +/datum/tutorial/xenomorph/basic/proc/on_human_death_phase_one() + SIGNAL_HANDLER + + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + + UnregisterSignal(human_dummy, COMSIG_MOB_DEATH) + message_to_player("Well done. Killing humans is one of many ways to help the hive.") + message_to_player("Another way is to capture them. This will grow a new xenomorph inside them which will eventually burst into a new playable xenomorph!") + update_objective("") + addtimer(CALLBACK(human_dummy, TYPE_PROC_REF(/mob/living, rejuvenate)), 8 SECONDS) + addtimer(CALLBACK(src, PROC_REF(proceed_to_tackle_phase)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/proceed_to_tackle_phase() + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + remove_highlight(human_dummy) + RegisterSignal(human_dummy, COMSIG_MOB_TAKE_DAMAGE, PROC_REF(on_tackle_phase_human_damage)) + RegisterSignal(human_dummy, COMSIG_MOB_TACKLED_DOWN, PROC_REF(proceed_to_cap_phase)) + message_to_player("Tackle the human to the ground using your disarm intent. This can take up to four tries as a drone.") + update_objective("Tackle the human to the ground!") + +/datum/tutorial/xenomorph/basic/proc/on_tackle_phase_human_damage(source, damagedata) + SIGNAL_HANDLER + if(damagedata["damage"] <= 0) + return + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + // Rejuvenate the dummy if it's less than half health so our player can't kill it and softlock themselves. + if(human_dummy.health < (human_dummy.maxHealth / 2)) + message_to_player("Don't harm the human!") + human_dummy.rejuvenate() + +/datum/tutorial/xenomorph/basic/proc/proceed_to_cap_phase() + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + + UnregisterSignal(human_dummy, COMSIG_MOB_TACKLED_DOWN) + + ADD_TRAIT(human_dummy, TRAIT_KNOCKEDOUT, TRAIT_SOURCE_TUTORIAL) + ADD_TRAIT(human_dummy, TRAIT_FLOORED, TRAIT_SOURCE_TUTORIAL) + xeno.melee_damage_lower = 0 + xeno.melee_damage_upper = 0 + message_to_player("Well done. Under normal circumstances, you would have to keep tackling the human to keep them down, but for the purposes of this tutorial they will stay down forever.") + update_objective("") + addtimer(CALLBACK(src, PROC_REF(cap_phase)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/cap_phase() + var/obj/effect/alien/resin/special/eggmorph/morpher = new(loc_from_corner(2,2), GLOB.hive_datum[XENO_HIVE_TUTORIAL]) + morpher.stored_huggers = 1 + add_to_tracking_atoms(morpher) + add_highlight(morpher, COLOR_YELLOW) + message_to_player("In the south west is an egg morpher. Click the egg morpher to take a facehugger.") + update_objective("Take a facehugger from the eggmorpher.") + RegisterSignal(xeno, COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER, PROC_REF(take_facehugger_phase)) + +/datum/tutorial/xenomorph/basic/proc/take_facehugger_phase(source, hugger) + SIGNAL_HANDLER + UnregisterSignal(xeno, COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER) + TUTORIAL_ATOM_FROM_TRACKING(/obj/effect/alien/resin/special/eggmorph, morpher) + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + add_to_tracking_atoms(hugger) + remove_highlight(morpher) + + add_highlight(hugger, COLOR_YELLOW) + message_to_player("This is a facehugger, highlighted in yellow. Pick up the facehugger by clicking it.") + message_to_player("Stand next to the downed human and click them to apply the facehugger. Or drop the facehugger near them to see it leap onto their face automatically.") + update_objective("Apply the facehugger to the human.") + RegisterSignal(hugger, COMSIG_PARENT_QDELETING, PROC_REF(on_hugger_deletion)) + RegisterSignal(human_dummy, COMSIG_HUMAN_IMPREGNATE, PROC_REF(nest_cap_phase), override = TRUE) + +/datum/tutorial/xenomorph/basic/proc/on_hugger_deletion(hugger) + SIGNAL_HANDLER + TUTORIAL_ATOM_FROM_TRACKING(/obj/effect/alien/resin/special/eggmorph, morpher) + morpher.stored_huggers = 1 + add_highlight(morpher, COLOR_YELLOW) + message_to_player("Click the egg morpher to take a facehugger.") + update_objective("Take a facehugger from the eggmorpher.") + RegisterSignal(xeno, COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER, PROC_REF(take_facehugger_phase)) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase() + SIGNAL_HANDLER + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + TUTORIAL_ATOM_FROM_TRACKING(/obj/item/clothing/mask/facehugger, hugger) + UnregisterSignal(human_dummy, COMSIG_MOB_TAKE_DAMAGE) + UnregisterSignal(human_dummy, COMSIG_HUMAN_IMPREGNATE) + UnregisterSignal(hugger, COMSIG_PARENT_QDELETING) + remove_highlight(hugger) + + message_to_player("We should nest the infected human to make sure they don't get away.") + message_to_player("Humans cannot escape nests without help, and the nest will keep them alive long enough for our new sister to burst forth.") + update_objective("") + addtimer(CALLBACK(src, PROC_REF(nest_cap_phase_two)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_two() + + loc_from_corner(8,0).ChangeTurf(/turf/closed/wall/resin/tutorial) + loc_from_corner(8,1).ChangeTurf(/turf/closed/wall/resin/tutorial) + loc_from_corner(9,1).ChangeTurf(/turf/closed/wall/resin/tutorial) + + addtimer(CALLBACK(src, PROC_REF(nest_cap_phase_three)), 5 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_three() + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + message_to_player("Grab the human using your grab intent. Or use control + click.") + update_objective("Grab the human using grab intent or ctrl-click.") + RegisterSignal(human_dummy, COMSIG_MOVABLE_XENO_START_PULLING, PROC_REF(nest_cap_phase_four)) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_four() + SIGNAL_HANDLER + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + UnregisterSignal(human_dummy, COMSIG_MOVABLE_XENO_START_PULLING) + message_to_player("Well done. Now devour the human by clicking on your character with the grab selected in your hand. You must not move during this process.") + update_objective("Devour the grabbed human by clicking on them with the grab in-hand.") + RegisterSignal(human_dummy, COMSIG_MOB_DEVOURED, PROC_REF(nest_cap_phase_five)) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_five() + SIGNAL_HANDLER + message_to_player("Well done, you can reguritate the human using the new ability you have gained.") + message_to_player("Be careful. Real humans may put up a fight and can try to cut out of you from inside!") + give_action(xeno, /datum/action/xeno_action/onclick/regurgitate) + addtimer(CALLBACK(src, PROC_REF(nest_cap_phase_six)), 15 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_six() + message_to_player("Humans can only be nested on hive weeds. These are special weeds created by structures such as the hive core, or hive clusters.") + message_to_player("We have set up hive weeds and walls for you in the south east.") + addtimer(CALLBACK(src, PROC_REF(nest_cap_phase_seven)), 10 SECONDS) + +/datum/tutorial/xenomorph/basic/proc/nest_cap_phase_seven() + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + UnregisterSignal(human_dummy, COMSIG_MOB_DEVOURED) + RegisterSignal(human_dummy, COMSIG_MOB_NESTED, PROC_REF(on_mob_nested)) + message_to_player("Nest the captive human!") + update_objective("Nest the captive human!") + message_to_player("Drag the human next to the wall so both you and human are directly adjacent to the wall.") + message_to_player("With the grab selected in your hand. Click on the wall. Or click and drag the mouse from the human onto the wall. You must not move during this process.") + new /obj/effect/alien/resin/special/cluster(loc_from_corner(9,0), GLOB.hive_datum[XENO_HIVE_TUTORIAL]) + +/datum/tutorial/xenomorph/basic/proc/on_mob_nested() + SIGNAL_HANDLER + TUTORIAL_ATOM_FROM_TRACKING(/mob/living/carbon/human, human_dummy) + UnregisterSignal(human_dummy, COMSIG_MOB_NESTED) + + message_to_player("Well done, this concludes the basic Xenomorph tutorial.") + message_to_player("This tutorial will end shortly.") + tutorial_end_in(10 SECONDS) + +// END OF SCRIPTING + +/datum/tutorial/xenomorph/basic/init_map() + loc_from_corner(9,0).ChangeTurf(/turf/closed/wall/resin/tutorial) + +#undef WAITING_HEALTH_THRESHOLD diff --git a/code/datums/vehicles.dm b/code/datums/vehicles.dm index 9370909eba..6f6182a8d7 100644 --- a/code/datums/vehicles.dm +++ b/code/datums/vehicles.dm @@ -34,10 +34,6 @@ name = "ARC" interior_id = "arc" -/datum/map_template/interior/fancy_locker - name = "Fancy Locker" - interior_id = "fancylocker" - /datum/map_template/interior/tank name = "Tank" interior_id = "tank" @@ -49,3 +45,7 @@ /datum/map_template/interior/van name = "Van" interior_id = "van" + +/datum/map_template/interior/arc + name = "ARC" + interior_id = "arc" diff --git a/code/datums/weather/weather_map_holder.dm b/code/datums/weather/weather_map_holder.dm index c72925399a..eb3458d70a 100644 --- a/code/datums/weather/weather_map_holder.dm +++ b/code/datums/weather/weather_map_holder.dm @@ -33,7 +33,7 @@ // Return a type that can be initialized into the next weather event. // Feel free to override this /datum/weather_ss_map_holder/proc/get_new_event() - if (potential_weather_events && potential_weather_events.len != 0) + if (LAZYLEN(potential_weather_events) != 0) return pick(potential_weather_events) else log_debug("Weather subsystem map holder [src] is improperly configured. Code: WSSMH03") diff --git a/code/datums/weather/weather_map_holders/new_varadero.dm b/code/datums/weather/weather_map_holders/new_varadero.dm index 1edb2c42c8..850cd6a2d5 100644 --- a/code/datums/weather/weather_map_holders/new_varadero.dm +++ b/code/datums/weather/weather_map_holders/new_varadero.dm @@ -16,5 +16,5 @@ return prob(PROB_WEATHER_NEW_VARADERO) /datum/weather_ss_map_holder/new_varadero/weather_warning() - for (var/obj/structure/machinery/storm_siren/WS in weather_notify_objects) + for (var/obj/structure/machinery/storm_siren/WS in GLOB.weather_notify_objects) WS.weather_warning() diff --git a/code/datums/weather/weather_map_holders/sorokyne.dm b/code/datums/weather/weather_map_holders/sorokyne.dm index db55d12cdf..3c27a43ce1 100644 --- a/code/datums/weather/weather_map_holders/sorokyne.dm +++ b/code/datums/weather/weather_map_holders/sorokyne.dm @@ -21,5 +21,5 @@ return FALSE /datum/weather_ss_map_holder/sorokyne/weather_warning() - for (var/obj/structure/machinery/weather_siren/WS in weather_notify_objects) + for (var/obj/structure/machinery/weather_siren/WS in GLOB.weather_notify_objects) WS.weather_warning() diff --git a/code/datums/xeno_shields/shield_types/vanguard_shield.dm b/code/datums/xeno_shields/shield_types/vanguard_shield.dm index 5b9eebc04a..cd9e4534e7 100644 --- a/code/datums/xeno_shields/shield_types/vanguard_shield.dm +++ b/code/datums/xeno_shields/shield_types/vanguard_shield.dm @@ -42,7 +42,7 @@ return linked_xeno.overlay_shields() - var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/cAction = get_action(linked_xeno, /datum/action/xeno_action/activable/cleave) if (istype(cAction)) addtimer(CALLBACK(cAction, TYPE_PROC_REF(/datum/action/xeno_action/activable/cleave, remove_buff)), 7, TIMER_UNIQUE) @@ -50,7 +50,6 @@ if (!istype(linked_xeno)) return - if (linked_xeno.mutation_type == PRAETORIAN_VANGUARD) - var/datum/behavior_delegate/praetorian_vanguard/BD = linked_xeno.behavior_delegate - if (istype(BD)) - BD.last_combat_time = world.time + var/datum/behavior_delegate/praetorian_vanguard/behavior = linked_xeno.behavior_delegate + if (istype(behavior)) + behavior.last_combat_time = world.time diff --git a/code/defines/procs/AStar.dm b/code/defines/procs/AStar.dm index fad263aea4..b4baef9698 100644 --- a/code/defines/procs/AStar.dm +++ b/code/defines/procs/AStar.dm @@ -46,13 +46,13 @@ length to avoid portals or something i guess?? Not that they're counted right no cmp = compare /PriorityQueue/proc/IsEmpty() - return !L.len + return !length(L) /PriorityQueue/proc/Enqueue(d) var/i var/j L.Add(d) - i = L.len + i = length(L) j = i>>1 while(i > 1 && call(cmp)(L[j],L[i]) > 0) L.Swap(i,j) @@ -60,22 +60,22 @@ length to avoid portals or something i guess?? Not that they're counted right no j >>= 1 /PriorityQueue/proc/Dequeue() - if(!L.len) return 0 + if(!length(L)) return 0 . = L[1] Remove(1) /PriorityQueue/proc/Remove(i) - if(i > L.len) return 0 - L.Swap(i,L.len) - L.Cut(L.len) - if(i < L.len) + if(i > length(L)) return 0 + L.Swap(i,length(L)) + L.Cut(length(L)) + if(i < length(L)) _Fix(i) /PriorityQueue/proc/_Fix(i) var/child = i + i var/item = L[i] - while(child <= L.len) - if(child + 1 <= L.len && call(cmp)(L[child],L[child + 1]) > 0) + while(child <= length(L)) + if(child + 1 <= length(L) && call(cmp)(L[child],L[child + 1]) > 0) child++ if(call(cmp)(item,L[child]) > 0) L[i] = L[child] @@ -159,7 +159,7 @@ length to avoid portals or something i guess?? Not that they're counted right no var/ng = cur.g + call(cur.source,dist)(d) if(d.bestF) if(ng + call(d,dist)(end) < d.bestF) - for(var/i = 1; i <= open.L.len; i++) + for(var/i = 1; i <= length(open.L); i++) var/PathNode/n = open.L[i] if(n.source == d) open.Remove(i) @@ -168,21 +168,21 @@ length to avoid portals or something i guess?? Not that they're counted right no continue open.Enqueue(new /PathNode(d,cur,ng,call(d,dist)(end),cur.nt+1)) - if(maxnodes && open.L.len > maxnodes) - open.L.Cut(open.L.len) + if(maxnodes && length(open.L) > maxnodes) + open.L.Cut(length(open.L)) } var/PathNode/temp while(!open.IsEmpty()) temp = open.Dequeue() temp.source.bestF = 0 - while(closed.len) - temp = closed[closed.len] + while(length(closed)) + temp = closed[length(closed)] temp.bestF = 0 - closed.Cut(closed.len) + closed.Cut(length(closed)) if(path) - for(var/i = 1; i <= path.len/2; i++) - path.Swap(i,path.len-i+1) + for(var/i = 1; i <= length(path)/2; i++) + path.Swap(i,length(path)-i+1) return path diff --git a/code/defines/procs/announcement.dm b/code/defines/procs/announcement.dm index 8e42fd1e76..250c81dfc3 100644 --- a/code/defines/procs/announcement.dm +++ b/code/defines/procs/announcement.dm @@ -42,14 +42,20 @@ continue if(is_mainship_level(H.z)) // People on ship see everything continue + + // If they have iff AND a marine headset they will recieve announcements + var/obj/item/card/id/card = H.get_idcard() + if ((FACTION_MARINE in card?.faction_group) && (istype(H.wear_l_ear, /obj/item/device/radio/headset/almayer) || istype(H.wear_r_ear, /obj/item/device/radio/headset/almayer))) + continue + if((H.faction != faction_to_display && !add_PMCs) || (H.faction != faction_to_display && add_PMCs && !(H.faction in FACTION_LIST_WY)) && !(faction_to_display in H.faction_group)) //faction checks targets.Remove(H) switch(logging) if(ARES_LOG_MAIN) - log_ares_announcement(title, message) + log_ares_announcement(title, message, signature) if(ARES_LOG_SECURITY) - log_ares_security(title, message) + log_ares_security(title, message, signature) else if(faction_to_display == "Everyone (-Yautja)") for(var/mob/M in targets) @@ -90,23 +96,23 @@ //AI announcement that uses talking into comms /proc/ai_announcement(message, sound_to_play = sound('sound/misc/interference.ogg'), logging = ARES_LOG_MAIN) for(var/mob/M in (GLOB.human_mob_list + GLOB.dead_mob_list)) - if(isobserver(M) || ishuman(M) && is_mainship_level(M.z)) + if((isobserver(M) && M.client?.prefs?.toggles_sound & SOUND_OBSERVER_ANNOUNCEMENTS) || ishuman(M) && is_mainship_level(M.z)) playsound_client(M.client, sound_to_play, M, vol = 45) - for(var/mob/living/silicon/decoy/ship_ai/AI in ai_mob_list) + for(var/mob/living/silicon/decoy/ship_ai/AI in GLOB.ai_mob_list) INVOKE_ASYNC(AI, TYPE_PROC_REF(/mob/living/silicon/decoy/ship_ai, say), message) switch(logging) if(ARES_LOG_MAIN) - log_ares_announcement("[MAIN_AI_SYSTEM] Comms Update", message) + log_ares_announcement("Comms Update", message, MAIN_AI_SYSTEM) if(ARES_LOG_SECURITY) - log_ares_security("[MAIN_AI_SYSTEM] Security Update", message) + log_ares_security("Security Update", message, MAIN_AI_SYSTEM) /proc/ai_silent_announcement(message, channel_prefix, bypass_cooldown = FALSE) if(!message) return - for(var/mob/living/silicon/decoy/ship_ai/AI in ai_mob_list) + for(var/mob/living/silicon/decoy/ship_ai/AI in GLOB.ai_mob_list) if(channel_prefix) message = "[channel_prefix][message]" INVOKE_ASYNC(AI, TYPE_PROC_REF(/mob/living/silicon/decoy/ship_ai, say), message) @@ -133,9 +139,9 @@ message += "

    Signed by,
    [signature]
    " switch(ares_logging) if(ARES_LOG_MAIN) - log_ares_announcement(title, message) + log_ares_announcement(title, message, signature) if(ARES_LOG_SECURITY) - log_ares_security(title, message) + log_ares_security(title, message, signature) announcement_helper(message, title, targets, sound_to_play) @@ -145,10 +151,10 @@ for(var/mob/T in targets) if(isobserver(T)) continue - if(!ishuman(T) || isyautja(T) || !is_mainship_level(T.z)) + if(!ishuman(T) || isyautja(T) || !is_mainship_level((get_turf(T))?.z)) targets.Remove(T) - log_ares_announcement("[title] Shipwide Update", message) + log_ares_announcement("Shipwide Update", message, title) announcement_helper(message, title, targets, sound_to_play) @@ -161,4 +167,6 @@ continue to_chat_spaced(T, html = "[SPAN_ANNOUNCEMENT_HEADER(title)]

    [SPAN_ANNOUNCEMENT_BODY(message)]", type = MESSAGE_TYPE_RADIO) + if(isobserver(T) && !(T.client?.prefs?.toggles_sound & SOUND_OBSERVER_ANNOUNCEMENTS)) + continue playsound_client(T.client, sound_to_play, T, vol = 45) diff --git a/code/defines/procs/radio.dm b/code/defines/procs/radio.dm index b4914d049f..d99d99b247 100644 --- a/code/defines/procs/radio.dm +++ b/code/defines/procs/radio.dm @@ -2,8 +2,8 @@ var/freq_text // the name of the channel - for(var/channel in radiochannels) - if(radiochannels[channel] == display_freq) + for(var/channel in GLOB.radiochannels) + if(GLOB.radiochannels[channel] == display_freq) freq_text = channel break diff --git a/code/defines/procs/records.dm b/code/defines/procs/records.dm index b4612f10f4..33a11e98cf 100644 --- a/code/defines/procs/records.dm +++ b/code/defines/procs/records.dm @@ -1,48 +1,50 @@ /proc/CreateGeneralRecord() - var/datum/data/record/G = new /datum/data/record() - G.fields["name"] = "New Record" - G.fields["id"] = text("[]", add_zero(num2hex(rand(1, 1.6777215E7)), 6)) - G.fields["rank"] = "Unassigned" - G.fields["real_rank"] = "Unassigned" - G.fields["sex"] = "Male" - G.fields["age"] = "Unknown" - G.fields["skin_color"] = "Unknown" - G.fields["p_stat"] = "Active" - G.fields["m_stat"] = "Stable" - G.fields["species"] = "Human" - G.fields["origin"] = "Unknown" - G.fields["faction"] = "Unknown" - G.fields["mob_faction"] = "Unknown" - G.fields["religion"] = "Unknown" - GLOB.data_core.general += G - return G + var/datum/data/record/general_record = new /datum/data/record() + general_record.fields["name"] = "New Record" + general_record.name = "New Record" + general_record.fields["id"] = text("[]", add_zero(num2hex(rand(1, 1.6777215E7)), 6)) + general_record.fields["rank"] = "Unassigned" + general_record.fields["real_rank"] = "Unassigned" + general_record.fields["sex"] = "Male" + general_record.fields["age"] = "Unknown" + general_record.fields["skin_color"] = "Unknown" + general_record.fields["p_stat"] = "Active" + general_record.fields["m_stat"] = "Stable" + general_record.fields["species"] = "Human" + general_record.fields["origin"] = "Unknown" + general_record.fields["faction"] = "Unknown" + general_record.fields["mob_faction"] = "Unknown" + general_record.fields["religion"] = "Unknown" + GLOB.data_core.general += general_record + return general_record /proc/CreateSecurityRecord(name as text, id as text) - var/datum/data/record/R = new /datum/data/record() - R.fields["name"] = name - R.fields["id"] = id - R.name = text("Security Record #[id]") - R.fields["incidents"] = "None" - GLOB.data_core.security += R - return R + var/datum/data/record/security_record = new /datum/data/record() + security_record.fields["name"] = name + security_record.fields["id"] = id + security_record.name = text("Security Record #[id]") + security_record.fields["incidents"] = "None" + GLOB.data_core.security += security_record + return security_record -/proc/create_medical_record(mob/living/carbon/human/H) - var/datum/data/record/M = new /datum/data/record() - M.fields["id"] = null - M.fields["name"] = H.real_name - M.fields["b_type"] = H.b_type - M.fields["mi_dis"] = "None" - M.fields["mi_dis_d"] = "No minor disabilities have been declared." - M.fields["ma_dis"] = "None" - M.fields["ma_dis_d"] = "No major disabilities have been diagnosed." - M.fields["alg"] = "None" - M.fields["alg_d"] = "No allergies have been detected in this patient." - M.fields["cdi"] = "None" - M.fields["cdi_d"] = "No diseases have been diagnosed at the moment." - M.fields["last_scan_time"] = null - M.fields["last_scan_result"] = "No scan data on record" - M.fields["autodoc_data"] = list() - M.fields["autodoc_manual"] = list() - M.fields["ref"] = WEAKREF(H) - GLOB.data_core.medical += M - return M +/proc/create_medical_record(mob/living/carbon/human/person) + var/datum/data/record/medical_record = new /datum/data/record() + medical_record.fields["id"] = null + medical_record.fields["name"] = person.real_name + medical_record.name = person.real_name + medical_record.fields["b_type"] = person.b_type + medical_record.fields["mi_dis"] = "None" + medical_record.fields["mi_dis_d"] = "No minor disabilities have been declared." + medical_record.fields["ma_dis"] = "None" + medical_record.fields["ma_dis_d"] = "No major disabilities have been diagnosed." + medical_record.fields["alg"] = "None" + medical_record.fields["alg_d"] = "No allergies have been detected in this patient." + medical_record.fields["cdi"] = "None" + medical_record.fields["cdi_d"] = "No diseases have been diagnosed at the moment." + medical_record.fields["last_scan_time"] = null + medical_record.fields["last_scan_result"] = "No scan data on record" + medical_record.fields["autodoc_data"] = list() + medical_record.fields["autodoc_manual"] = list() + medical_record.fields["ref"] = WEAKREF(person) + GLOB.data_core.medical += medical_record + return medical_record diff --git a/code/game/area/BigRed.dm b/code/game/area/BigRed.dm index 57e062195a..c5e96c7817 100644 --- a/code/game/area/BigRed.dm +++ b/code/game/area/BigRed.dm @@ -1,4 +1,5 @@ //Areas for BigRed - Minijar +// old icon state no longer in use. ("hydro","heads_quarters") /area/bigred can_build_special = TRUE powernet_name = "ground" @@ -251,44 +252,50 @@ name = "\improper Corporate Saferoom" icon_state = "vault" -/area/bigred/uground/lambda_labs/ - minimap_color = MINIMAP_AREA_RESEARCH_CAVE -/area/bigred/uground/lambda_labs/airlock - name = "\improper Lambda Labs Airlock" - icon_state = "decontamination" - -/area/bigred/uground/lambda_labs/lobby - name = "\improper Lambda Labs Reception" - icon_state = "bluenew" - -/area/bigred/uground/lambda_labs/office - name = "\improper Lambda Labs Administration" - icon_state = "heads_quarters" +// Lambda areas below: -/area/bigred/uground/lambda_labs/laser_lab - name = "\improper Lambda Laser Laboratory" - icon_state = "toxmisc" +// Laboratory proper +/area/bigredv2/caves/lambda + ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS + ceiling_muffle = FALSE + ambience_exterior = AMBIENCE_ALMAYER + sound_environment = SOUND_ENVIRONMENT_ROOM + soundscape_playlist = list() + minimap_color = MINIMAP_AREA_RESEARCH -/area/bigred/uground/lambda_labs/hydro_office - name = "\improper Lambda Labs Bio-Dome" - icon_state = "hydro" +/area/bigredv2/caves/lambda/virology + name = "\improper Lambda Virology" + icon_state = "lam_virology" -/area/bigred/uground/lambda_labs/hydro_lab - name = "\improper Lambda Labs Hydrophonics" - icon_state = "garden" +/area/bigredv2/caves/lambda/research + name = "\improper Lambda Research" + icon_state = "lam_research" -/area/bigred/uground/lambda_labs/fridge - name = "\improper Lambda Labs Refrigeration" - icon_state = "kitchen" +/area/bigredv2/caves/lambda/breakroom + name = "\improper Lambda Breakroom" + icon_state = "lam_break" -/area/bigred/uground/lambda_labs/maintenance - name = "\improper Unknown Area" - icon_state = "yellow" +/area/bigredv2/caves/lambda/xenobiology + name = "\improper Lambda Xenobiology" + icon_state = "lam_xeno" -/area/bigred/uground/lambda_labs/maintenance2 - name = "\improper Unknown Area" - icon_state = "blue" +// cave around the laboratory. +/area/bigredv2/caves_lambda + name = "\improper Lambda Lab Caves" + icon_state = "caves_lambda" + ceiling = CEILING_UNDERGROUND_BLOCK_CAS + sound_environment = SOUND_ENVIRONMENT_AUDITORIUM + ceiling_muffle = FALSE + ambience_exterior = AMBIENCE_CAVE + soundscape_playlist = SCAPE_PL_CAVE + base_muffle = MUFFLE_HIGH +// serve for the security checkpoint. +/area/bigredv2/outside/lambda_cave_cas + name = "\improper Lambda Lockdown Caves Entrance" + icon_state = "decontamination" + ceiling = CEILING_UNDERGROUND_ALLOW_CAS + minimap_color = MINIMAP_AREA_SEC //Big Red V2 /area/bigredv2 @@ -508,27 +515,35 @@ is_resin_allowed = FALSE ceiling_muffle = FALSE base_muffle = MUFFLE_LOW + is_landing_zone = TRUE /area/bigredv2/outside/telecomm/lz2_cave name = "\improper Central Grounds Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/n_cave name = "\improper North Cave Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/warehouse name = "\improper Warehouse Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/security name = "\improper Security Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/store name = "\improper General Store Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/admin name = "\improper Administrative Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/telecomm/engi name = "\improper Engineering Communications Relay" + is_landing_zone = FALSE /area/bigredv2/outside/engineering @@ -551,29 +566,6 @@ icon_state = "party" ceiling = CEILING_METAL -/area/bigredv2/caves/lambda - ceiling = CEILING_UNDERGROUND_METAL_BLOCK_CAS - ceiling_muffle = FALSE - ambience_exterior = AMBIENCE_ALMAYER - sound_environment = SOUND_ENVIRONMENT_ROOM - soundscape_playlist = list() - -/area/bigredv2/caves/lambda/virology - name = "\improper Lambda Virology" - icon_state = "lam_virology" - -/area/bigredv2/caves/lambda/research - name = "\improper Lambda Research" - icon_state = "lam_research" - -/area/bigredv2/caves/lambda/breakroom - name = "\improper Lambda Breakroom" - icon_state = "lam_break" - -/area/bigredv2/caves/lambda/xenobiology - name = "\improper Lambda Xenobiology" - icon_state = "lam_xeno" - /area/bigredv2/outside/general_offices name = "\improper General Offices" icon_state = "storage" @@ -630,16 +622,6 @@ soundscape_playlist = SCAPE_PL_CAVE base_muffle = MUFFLE_HIGH -/area/bigredv2/caves_lambda - name = "\improper Lambda Lab Caves" - icon_state = "caves_lambda" - ceiling = CEILING_UNDERGROUND_BLOCK_CAS - sound_environment = SOUND_ENVIRONMENT_AUDITORIUM - ceiling_muffle = FALSE - ambience_exterior = AMBIENCE_CAVE - soundscape_playlist = SCAPE_PL_CAVE - base_muffle = MUFFLE_HIGH - /area/bigredv2/caves_north name = "\improper Northern Caves" icon_state = "caves_north" @@ -688,8 +670,3 @@ name = "\improper Filtration Lockdown Caves Entrance" icon_state = "garden" ceiling = CEILING_UNDERGROUND_ALLOW_CAS - -/area/bigredv2/outside/lambda_cave_cas - name = "\improper Lambda Lockdown Caves Entrance" - icon_state = "garden" - ceiling = CEILING_UNDERGROUND_ALLOW_CAS diff --git a/code/game/area/Corsat.dm b/code/game/area/Corsat.dm index f93745c305..7d2a55fac9 100644 --- a/code/game/area/Corsat.dm +++ b/code/game/area/Corsat.dm @@ -523,7 +523,6 @@ /area/corsat/omega/hangar name = "\improper Landing Bay Omega" icon_state = "omega_hangar" - is_landing_zone = TRUE /area/corsat/omega/hangar/office name = "\improper Omega Hangar Office" diff --git a/code/game/area/DesertDam.dm b/code/game/area/DesertDam.dm index 96e5eb1f62..9f53494b1b 100644 --- a/code/game/area/DesertDam.dm +++ b/code/game/area/DesertDam.dm @@ -216,6 +216,7 @@ /area/desert_dam/building/substation/northwest name = "Command Substation" icon_state = "northewestern_ss" + is_landing_zone = TRUE /area/desert_dam/building/substation/northeast name = "Command Substation" icon_state = "northeastern_ss" diff --git a/code/game/area/LV522_Chances_Claim.dm b/code/game/area/LV522_Chances_Claim.dm index ffd6a5897e..c3e5c96ad4 100644 --- a/code/game/area/LV522_Chances_Claim.dm +++ b/code/game/area/LV522_Chances_Claim.dm @@ -48,6 +48,11 @@ name = "Chance's Claim - Landing Zone One Tunnels" ceiling = CEILING_METAL +/area/lv522/landing_zone_1/tunnel/far + name = "Chance's Claim - Landing Zone One Tunnels" + ceiling = CEILING_METAL + is_landing_zone = FALSE + /area/shuttle/drop1/lv522 name = "Chance's Claim - Dropship Alamo Landing Zone" icon_state = "shuttle" diff --git a/code/game/area/LV624.dm b/code/game/area/LV624.dm index 505387f8e5..464067e827 100644 --- a/code/game/area/LV624.dm +++ b/code/game/area/LV624.dm @@ -37,6 +37,7 @@ name ="\improper Western Jungle" icon_state = "west" //ambience = list('sound/ambience/jungle_amb1.ogg') + is_resin_allowed = FALSE /area/lv624/ground/jungle/west_jungle/ceiling ceiling = CEILING_GLASS @@ -382,10 +383,12 @@ /area/lv624/lazarus/engineering name = "\improper Engineering" icon_state = "engine_smes" + minimap_color = MINIMAP_AREA_ENGI /area/lv624/lazarus/comms name = "\improper Communications Relay" icon_state = "tcomsatcham" + minimap_color = MINIMAP_AREA_ENGI /area/lv624/lazarus/secure_storage name = "\improper Secure Storage" @@ -400,6 +403,7 @@ /area/lv624/lazarus/research name = "\improper Research Lab" icon_state = "toxlab" + minimap_color = MINIMAP_AREA_RESEARCH /area/lv624/lazarus/fitness name = "\improper Fitness Room" diff --git a/code/game/area/Prison_Station_FOP.dm b/code/game/area/Prison_Station_FOP.dm index 0edc23556b..b1bfbc093c 100644 --- a/code/game/area/Prison_Station_FOP.dm +++ b/code/game/area/Prison_Station_FOP.dm @@ -90,6 +90,7 @@ /area/prison/security/checkpoint/hangar name = "\improper Main Hangar Traffic Control" is_resin_allowed = FALSE + is_landing_zone = TRUE /area/prison/storage icon_state = "engine_storage" @@ -211,6 +212,7 @@ name = "\improper Hangar-Barracks Maintenance" icon_state = "maint_e_shuttle" is_resin_allowed = FALSE + is_landing_zone = TRUE /area/prison/canteen name = "\improper Canteen" @@ -457,6 +459,7 @@ /area/prison/monorail/east name = "\improper East Monorail Station" is_resin_allowed = FALSE + is_landing_zone = TRUE /area/prison/monorail/west name = "\improper West Monorail Station" @@ -467,10 +470,12 @@ /area/prison/hanger/main name = "\improper Main Hanger" icon_state = "hangar_alpha" + is_landing_zone = TRUE /area/prison/hanger/research name = "\improper Research Hanger" icon_state = "hangar_beta" + is_landing_zone = TRUE /area/prison/hangar_storage/main name = "\improper Main Hangar Storage" @@ -480,9 +485,11 @@ name = "\improper Research Hangar Storage" icon_state = "toxstorage" is_resin_allowed = FALSE + is_landing_zone = TRUE /area/prison/hangar_storage/research/shuttle name = "Corporate Shuttle" + is_landing_zone = FALSE /area/prison/telecomms name = "\improper Telecommunications" diff --git a/code/game/area/Sulaco.dm b/code/game/area/Sulaco.dm index a327707541..2c7af326ce 100644 --- a/code/game/area/Sulaco.dm +++ b/code/game/area/Sulaco.dm @@ -14,6 +14,7 @@ flags_area = AREA_NOTUNNEL is_landing_zone = TRUE ceiling = CEILING_REINFORCED_METAL + base_lighting_alpha = 0 /area/shuttle/drop1/Enter(atom/movable/O, atom/oldloc) if(istype(O, /obj/structure/barricade)) @@ -24,6 +25,7 @@ name = "\improper Dropship Alamo" icon_state = "shuttlered" base_muffle = MUFFLE_HIGH + base_lighting_alpha = 255 /area/shuttle/drop1/LV624 name = "\improper Dropship Alamo" @@ -71,11 +73,13 @@ flags_area = AREA_NOTUNNEL is_landing_zone = TRUE ceiling = CEILING_REINFORCED_METAL + base_lighting_alpha = 0 /area/shuttle/drop2/sulaco name = "\improper Dropship Normandy" icon_state = "shuttle" base_muffle = MUFFLE_HIGH + base_lighting_alpha = 255 /area/shuttle/drop2/LV624 name = "\improper Dropship Normandy" @@ -188,7 +192,58 @@ if(istype(O, /obj/structure/barricade)) return FALSE return TRUE +/area/shuttle/drop2/Enter(atom/movable/O, atom/oldloc) + if(istype(O, /obj/structure/barricade)) + return FALSE + return TRUE + +/area/shuttle/drop3 + //soundscape_playlist = list('sound/soundscape/drum1.ogg') + soundscape_interval = 30 //seconds + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL + is_landing_zone = TRUE + ceiling = CEILING_REINFORCED_METAL + base_lighting_alpha = 0 +/area/shuttle/drop3/sulaco + name = "\improper Dropship Saipan" + icon_state = "shuttle" + base_muffle = MUFFLE_HIGH + base_lighting_alpha = 255 + +/area/shuttle/drop3/LV624 + name = "\improper Dropship Saipan" + ambience_exterior = AMBIENCE_LV624 + icon_state = "shuttle2" + +/area/shuttle/drop3/prison + name = "\improper Dropship Saipan" + ambience_exterior = AMBIENCE_PRISON + icon_state = "shuttle2" + +/area/shuttle/drop3/BigRed + name = "\improper Dropship Saipan" + ambience_exterior = AMBIENCE_BIGRED + icon_state = "shuttle2" + +/area/shuttle/drop3/ice_colony + name = "\improper Dropship Saipan" + icon_state = "shuttle2" + +/area/shuttle/drop3/DesertDam + name = "\improper Dropship Saipan" + ambience_exterior = AMBIENCE_TRIJENT + icon_state = "shuttle2" + +/area/shuttle/drop3/transit + ambience_exterior = 'sound/ambience/dropship_ambience_loop.ogg' + name = "\improper Dropship Saipan Transit" + icon_state = "shuttlered" + +/area/shuttle/drop3/lz3 + name = "\improper Saipan Landing Zone" + icon_state = "away2" //DISTRESS SHUTTLES diff --git a/code/game/area/admin_level.dm b/code/game/area/admin_level.dm index 00b408c04a..9dc43256f4 100644 --- a/code/game/area/admin_level.dm +++ b/code/game/area/admin_level.dm @@ -113,6 +113,10 @@ name = "UPP Station" icon_state = "green" +/area/adminlevel/ert_station/pizza_station + name = "Pizza Galaxy" + icon_state = "red" + /area/adminlevel/ert_station/clf_station name = "CLF Station" icon_state = "white" @@ -121,6 +125,10 @@ name = "Weyland-Yutani Station" icon_state = "red" +/area/adminlevel/ert_station/uscm_station + name = "USCM Station" + icon_state = "green" + /area/adminlevel/ert_station/freelancer_station name = "Freelancer Station" icon_state = "yellow" @@ -141,6 +149,28 @@ requires_power = 0 flags_area = AREA_NOTUNNEL +/area/misc + weather_enabled = FALSE + /area/misc/testroom requires_power = FALSE name = "Test Room" + +/area/misc/tutorial + name = "Tutorial Zone" + icon_state = "tutorial" + requires_power = FALSE + flags_area = AREA_NOTUNNEL|AREA_AVOID_BIOSCAN + statistic_exempt = TRUE + ceiling = CEILING_METAL + block_game_interaction = TRUE + unique = TRUE + + base_lighting_alpha = 255 + +/area/misc/tutorial/Initialize(mapload, ...) + . = ..() + update_base_lighting() + +/area/misc/tutorial/no_baselight + base_lighting_alpha = 0 diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm index 28b08f09eb..4eb771f4eb 100644 --- a/code/game/area/almayer.dm +++ b/code/game/area/almayer.dm @@ -1,14 +1,17 @@ //ALMAYER AREAS--------------------------------------// // Fore = West | Aft = East // // Port = South | Starboard = North // +// Bow = Western|Stern = Eastern //(those are the front and back small sections) +// Naming convention is to start by port or starboard then put eitheir (bow,fore,midship,aft,stern) /area/almayer icon = 'icons/turf/area_almayer.dmi' - //ambience = list('sound/ambience/shipambience.ogg') + // ambience = list('sound/ambience/shipambience.ogg') icon_state = "almayer" ceiling = CEILING_METAL powernet_name = "almayer" sound_environment = SOUND_ENVIRONMENT_ROOM soundscape_interval = 30 + // soundscape_playlist = list('sound/effects/xylophone1.ogg', 'sound/effects/xylophone2.ogg', 'sound/effects/xylophone3.ogg') ambience_exterior = AMBIENCE_ALMAYER ceiling_muffle = FALSE @@ -27,26 +30,6 @@ if(hijack_evacuation_area) SShijack.progress_areas[src] = power_equip -/area/shuttle/almayer/elevator_maintenance/upperdeck - name = "\improper Upper Deck Maintenance Elevator" - icon_state = "shuttle" - fake_zlevel = 1 - -/area/shuttle/almayer/elevator_maintenance/lowerdeck - name = "\improper Lower Deck Maintenance Elevator" - icon_state = "shuttle" - fake_zlevel = 2 - -/area/shuttle/almayer/elevator_hangar/lowerdeck - name = "\improper Hangar Elevator" - icon_state = "shuttle" - fake_zlevel = 2 // lowerdeck - -/area/shuttle/almayer/elevator_hangar/underdeck - name = "\improper Hangar Elevator" - icon_state = "shuttle" - fake_zlevel = 3 - /obj/structure/machinery/computer/shuttle_control/almayer/hangar name = "Elevator Console" icon = 'icons/obj/structures/machinery/computer.dmi' @@ -111,7 +94,7 @@ icon_state = "selfdestruct" fake_zlevel = 1 // upperdeck -/area/almayer/command/corporateliason +/area/almayer/command/corporateliaison name = "\improper Corporate Liaison Office" icon_state = "corporatespace" fake_zlevel = 1 // upperdeck @@ -121,9 +104,40 @@ icon_state = "selfdestruct" fake_zlevel = 1 // upperdeck +// engineering + /area/almayer/engineering minimap_color = MINIMAP_AREA_ENGI +// lower deck + +/area/almayer/engineering/lower + name = "\improper Lower Deck Engineering" + icon_state = "lowerengineering" + fake_zlevel = 2 // lowerdeck + +/area/almayer/engineering/lower/engine_monitoring//this is not used so could be remove? + name = "\improper Lower Deck Engine Reactor Monitoring" + icon_state = "lowermonitoring" + +/area/almayer/engineering/lower/workshop + name = "\improper Lower Deck Engineering Workshop" + icon_state = "workshop" + +/area/almayer/engineering/lower/workshop/hangar + name = "\improper Ordnance Workshop" + +/area/almayer/engineering/lower/engine_core + name = "\improper Engine Reactor Core Room" + icon_state = "coreroom" + soundscape_playlist = SCAPE_PL_ENG + soundscape_interval = 15 + hijack_evacuation_area = TRUE + hijack_evacuation_weight = 0.2 + hijack_evacuation_type = EVACUATION_TYPE_ADDITIVE + +// upper deck + /area/almayer/engineering/upper_engineering name = "\improper Upper Deck Engineering" icon_state = "upperengineering" @@ -143,34 +157,6 @@ icon_state = "ceroom" fake_zlevel = 1 // upperdeck -/area/almayer/engineering/lower_engine_monitoring - name = "\improper Lower Deck Engine Reactor Monitoring" - icon_state = "lowermonitoring" - fake_zlevel = 2 // lowerdeck - -/area/almayer/engineering/lower_engineering - name = "\improper Lower Deck Engineering" - icon_state = "lowerengineering" - fake_zlevel = 2 // lowerdeck - -/area/almayer/engineering/engineering_workshop - name = "\improper Lower Deck Engineering Workshop" - icon_state = "workshop" - fake_zlevel = 2 // lowerdeck - -/area/almayer/engineering/engineering_workshop/hangar - name = "\improper Ordnance workshop" - -/area/almayer/engineering/engine_core - name = "\improper Engine Reactor Core Room" - icon_state = "coreroom" - fake_zlevel = 2 // lowerdeck - soundscape_playlist = SCAPE_PL_ENG - soundscape_interval = 15 - hijack_evacuation_area = TRUE - hijack_evacuation_weight = 0.2 - hijack_evacuation_type = EVACUATION_TYPE_ADDITIVE - /area/almayer/engineering/starboard_atmos name = "\improper Upper Deck Starboard Atmospherics" icon_state = "starboardatmos" @@ -230,6 +216,13 @@ icon_state = "portpd" fake_zlevel = 2 // lowerdeck +/area/almayer/shipboard/stern_point_defense + name = "\improper Lower Deck Stern Point Defense" + icon_state = "portpd" + fake_zlevel = 2 // lowerdeck + +// brig + /area/almayer/shipboard/brig name = "\improper Brig" icon_state = "brig" @@ -237,51 +230,48 @@ /area/almayer/shipboard/brig/lobby name = "\improper Brig Lobby" - icon_state = "brig" /area/almayer/shipboard/brig/armory name = "\improper Brig Armory" - icon_state = "brig" -/area/almayer/shipboard/brig/main_office - name = "\improper Brig Main Office" - icon_state = "brig" +/area/almayer/shipboard/brig/mp_bunks + name = "\improper Brig MP Bunks" + +/area/almayer/shipboard/brig/starboard_hallway + name = "\improper Brig Starboard Hallway" /area/almayer/shipboard/brig/perma name = "\improper Brig Perma Cells" - icon_state = "brig" /area/almayer/shipboard/brig/cryo name = "\improper Brig Cryo Pods" - icon_state = "brig" -/area/almayer/shipboard/brig/surgery - name = "\improper Brig Surgery" - icon_state = "brig" +/area/almayer/shipboard/brig/medical + name = "\improper Brig Medical" + +/area/almayer/shipboard/brig/interrogation + name = "\improper Brig Interrogation Room" /area/almayer/shipboard/brig/general_equipment name = "\improper Brig General Equipment" - icon_state = "brig" /area/almayer/shipboard/brig/evidence_storage name = "\improper Brig Evidence Storage" - icon_state = "brig" /area/almayer/shipboard/brig/execution name = "\improper Brig Execution Room" - icon_state = "brig" + +/area/almayer/shipboard/brig/execution_storage + name = "\improper Brig Execution Storage" /area/almayer/shipboard/brig/cic_hallway name = "\improper Brig CiC Hallway" - icon_state = "brig" /area/almayer/shipboard/brig/dress name = "\improper CIC Dress Uniform Room" - icon_state = "brig" /area/almayer/shipboard/brig/processing name = "\improper Brig Processing and Holding" - icon_state = "brig" /area/almayer/shipboard/brig/cells name = "\improper Brig Cells" @@ -291,6 +281,10 @@ name = "\improper Brig Chief MP Office" icon_state = "chiefmpoffice" +/area/almayer/shipboard/brig/warden_office + name = "\improper Brig Warden Office" + icon_state = "chiefmpoffice" + /area/almayer/shipboard/sea_office name = "\improper Lower Deck Senior Enlisted Advisor Office" icon_state = "chiefmpoffice" @@ -306,10 +300,6 @@ icon_state = "firingrange" fake_zlevel = 2 // lowerdeck -/area/almayer/shipboard/sensors - name = "\improper Sensor Room" - icon_state = "sensor" - /area/almayer/hallways/hangar name = "\improper Hangar" icon_state = "hangar" @@ -317,74 +307,75 @@ soundscape_playlist = SCAPE_PL_HANGAR soundscape_interval = 50 -/area/almayer/hallways/vehiclehangar - name = "\improper Lower Deck Vehicle Storage" - icon_state = "exoarmor" - fake_zlevel = 2 - -/area/almayer/living - minimap_color = MINIMAP_AREA_COLONY - -/area/almayer/living/tankerbunks - name = "\improper Lower Deck Vehicle Crew Bunks" - icon_state = "livingspace" - fake_zlevel = 2 - -/area/almayer/living/auxiliary_officer_office - name = "\improper Lower Deck Auxiliary Support Officer office" - icon_state = "livingspace" - fake_zlevel = 2 - -/area/almayer/squads/tankdeliveries - name = "\improper Lower Deck Vehicle ASRS" - icon_state = "req" - fake_zlevel = 2 +/area/almayer/hallways/lower + fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/exoarmor - name = "\improper Lower Deck Vehicle Armor Storage" +/area/almayer/hallways/lower/vehiclehangar + name = "\improper Lower Deck Vehicle Storage" icon_state = "exoarmor" - fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/repair_bay +/area/almayer/hallways/lower/repair_bay name = "\improper Lower Deck Deployment Workshop" icon_state = "dropshiprepair" - fake_zlevel = 2 // lowerdeck - -/area/almayer/hallways/mission_planner - name = "\improper Lower Deck Dropship Central Computer Room" - icon_state = "missionplanner" - fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/starboard_umbilical +/area/almayer/hallways/lower/starboard_umbilical name = "\improper Lower Deck Starboard Umbilical Hallway" icon_state = "starboardumbilical" - fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/port_umbilical +/area/almayer/hallways/lower/port_umbilical name = "\improper Lower Deck Port Umbilical Hallway" icon_state = "portumbilical" - fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/aft_hallway +//port +/area/almayer/hallways/lower/port_fore_hallway + name = "\improper Lower Deck Port-Fore Hallway" + icon_state = "port" + +/area/almayer/hallways/lower/port_midship_hallway + name = "\improper Lower Deck Port-Midship Hallway" + icon_state = "port" + +/area/almayer/hallways/lower/port_aft_hallway + name = "\improper Lower Deck Port-Aft Hallway" + icon_state = "port" + +//starboard +/area/almayer/hallways/lower/starboard_fore_hallway + name = "\improper Lower Deck Starboard-Fore Hallway" + icon_state = "starboard" + +/area/almayer/hallways/lower/starboard_midship_hallway + name = "\improper Lower Deck Starboard-Midship Hallway" + icon_state = "starboard" + +/area/almayer/hallways/lower/starboard_aft_hallway + name = "\improper Lower Deck Starboard-Aft Hallway" + icon_state = "starboard" + +/area/almayer/hallways/upper + fake_zlevel = 1 // upperdeck + +/area/almayer/hallways/upper/aft_hallway name = "\improper Upper Deck Aft Hallway" icon_state = "aft" - fake_zlevel = 1 // upperdeck -/area/almayer/hallways/stern_hallway - name = "\improper Upper Deck Stern Hallway" +/area/almayer/hallways/upper/fore_hallway + name = "\improper Upper Deck Fore Hallway" icon_state = "stern" - fake_zlevel = 1 // upperdeck -/area/almayer/hallways/port_hallway - name = "\improper Lower Deck Port Hallway" +/area/almayer/hallways/upper/midship_hallway + name = "\improper Upper Deck Midship Hallway" + icon_state = "stern" + +/area/almayer/hallways/upper/port + name = "\improper Upper Deck Port Hallway" icon_state = "port" - fake_zlevel = 2 // lowerdeck -/area/almayer/hallways/starboard_hallway - name = "\improper Lower Deck Starboard Hallway" +/area/almayer/hallways/upper/starboard + name = "\improper Upper Deck Starboard Hallway" icon_state = "starboard" - fake_zlevel = 2 // lowerdeck +//area that are used for transition between decks. /area/almayer/stair_clone name = "\improper Lower Deck Stairs" icon_state = "stairs_lowerdeck" @@ -396,63 +387,146 @@ icon_state = "stairs_upperdeck" fake_zlevel = 1 // upperdeck -/area/almayer/hull/lower_hull - name = "\improper Lower Deck Hull" +// maintenance areas + +/area/almayer/maint + +//lower maintenance areas + +/area/almayer/maint/lower + name = "\improper Lower Deck Maintenance" icon_state = "lowerhull" fake_zlevel = 2 // lowerdeck -/area/almayer/hull/upper_hull - name = "\improper Upper Deck Hull" +/area/almayer/maint/lower/constr + name = "\improper Lower Deck Construction Site" + +/area/almayer/maint/lower/s_bow + name = "\improper Lower Deck Starboard-Bow Maintenance" + +/area/almayer/maint/lower/cryo_cells + name = "\improper Lower Deck Cryo Cells Maintenance" + +// Upper maintainance areas +/area/almayer/maint/upper + name = "\improper Upper Deck Maintenance" icon_state = "upperhull" fake_zlevel = 1 // upperdeck -/area/almayer/hull/upper_hull/u_f_s - name = "\improper Upper Deck Fore-Starboard Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/mess + name = "\improper Upper Deck Mess Maintenance" -/area/almayer/hull/upper_hull/u_m_s - name = "\improper Upper Deck Starboard-Midship Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/u_m_p + name = "\improper Upper Deck Port-Midship Maintenance" -/area/almayer/hull/upper_hull/u_a_s - name = "\improper Upper Deck Starboard-Aft Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/u_m_s + name = "\improper Upper Deck Starboard-Midship Maintenance" -/area/almayer/hull/upper_hull/u_f_p - name = "\improper Upper Deck Port-Fore Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/u_f_p + name = "\improper Upper Deck Port-Fore Maintenance" -/area/almayer/hull/upper_hull/u_m_p - name = "\improper Upper Deck Port-Midship Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/u_f_s + name = "\improper Upper Deck Starboard-Fore Maintenance" -/area/almayer/hull/upper_hull/u_a_p - name = "\improper Upper Deck Port-Aft Hull" - icon_state = "upperhull" +/area/almayer/maint/upper/u_a_p + name = "\improper Upper Deck Port-Aft Maintenance" + +/area/almayer/maint/upper/u_a_s + name = "\improper Upper Deck Starboard-Aft Maintenance" + +// hull areas +/area/almayer/maint/hull + +// lower deck hull areas +/area/almayer/maint/hull/lower + name = "\improper Lower Deck Hull" + icon_state = "lowerhull" + fake_zlevel = 2 // lowerdeck +// stairs. + +/area/almayer/maint/hull/lower/stairs + name = "\improper Lower Deck Stairs Hull" + +/area/almayer/maint/hull/lower/stern + name = "\improper Lower Deck Stern Hull" -/area/almayer/hull/lower_hull/l_f_s +/area/almayer/maint/hull/lower/p_bow + name = "\improper Lower Deck Port-Bow Hull" + +/area/almayer/maint/hull/lower/s_bow + name = "\improper Lower Deck Starboard-Bow Hull" + +/area/almayer/maint/hull/lower/l_f_s name = "\improper Lower Deck Starboard-Fore Hull" - icon_state = "upperhull" -/area/almayer/hull/lower_hull/l_m_s +/area/almayer/maint/hull/lower/l_m_s name = "\improper Lower Deck Starboard-Midship Hull" - icon_state = "upperhull" -/area/almayer/hull/lower_hull/l_a_s - name = "\improper Lower Deck Starboard Hull" - icon_state = "upperhull" +/area/almayer/maint/hull/lower/l_a_s + name = "\improper Lower Deck Starboard-Aft Hull" -/area/almayer/hull/lower_hull/l_f_p +/area/almayer/maint/hull/lower/l_f_p name = "\improper Lower Deck Port-Fore Hull" - icon_state = "upperhull" -/area/almayer/hull/lower_hull/l_m_p +/area/almayer/maint/hull/lower/l_m_p name = "\improper Lower Deck Port-Midship Hull" - icon_state = "upperhull" -/area/almayer/hull/lower_hull/l_a_p +/area/almayer/maint/hull/lower/l_a_p name = "\improper Lower Deck Port-Aft Hull" + +// upper deck hull areas + +/area/almayer/maint/hull/upper + name = "\improper Upper Deck Hull" icon_state = "upperhull" + fake_zlevel = 1 // upperdeck + +// Stairs. +/area/almayer/maint/hull/upper/stairs + name = "\improper Upper Deck Stairs Hull" + +/area/almayer/maint/hull/upper/p_bow + name = "\improper Upper Deck Port-Bow Hull" + +/area/almayer/maint/hull/upper/s_bow + name = "\improper Upper Deck Starboard-Bow Hull" + +/area/almayer/maint/hull/upper/p_stern + name = "\improper Upper Deck Port-Stern Hull" + +/area/almayer/maint/hull/upper/s_stern + name = "\improper Upper Deck Starboard-Stern Hull" + +/area/almayer/maint/hull/upper/u_f_s + name = "\improper Upper Deck Starboard-Fore Hull" + +/area/almayer/maint/hull/upper/u_m_s + name = "\improper Upper Deck Starboard-Midship Hull" + +/area/almayer/maint/hull/upper/u_a_s + name = "\improper Upper Deck Starboard-Aft Hull" + +/area/almayer/maint/hull/upper/u_f_p + name = "\improper Upper Deck Port-Fore Hull" + +/area/almayer/maint/hull/upper/u_m_p + name = "\improper Upper Deck Port-Midship Hull" + +/area/almayer/maint/hull/upper/u_a_p + name = "\improper Upper Deck Port-Aft Hull" + +/area/almayer/living + minimap_color = MINIMAP_AREA_COLONY + +/area/almayer/living/tankerbunks + name = "\improper Lower Deck Vehicle Crew Bunks" + icon_state = "livingspace" + fake_zlevel = 2 + +/area/almayer/living/auxiliary_officer_office + name = "\improper Lower Deck Auxiliary Support Officer office" + icon_state = "livingspace" + fake_zlevel = 2 /area/almayer/living/cryo_cells name = "\improper Lower Deck Cryo Cells" @@ -627,11 +701,6 @@ icon_state = "science" fake_zlevel = 1 // upperdeck -/area/almayer/medical/testlab - name = "\improper Medical Research workshop" - icon_state = "science" - fake_zlevel = 1 // upperdeck - /area/almayer/medical/containment name = "\improper Medical Research containment" icon_state = "science" @@ -731,26 +800,22 @@ hijack_evacuation_type = EVACUATION_TYPE_ADDITIVE /area/almayer/lifeboat_pumps/north1 - name = "Starboard Fore Lifeboat Fuel Pump" + name = "Starboard-Fore Lifeboat Fuel Pump" /area/almayer/lifeboat_pumps/north2 - name = "Starboard Aft Lifeboat Fuel Pump" + name = "Starboard-Aft Lifeboat Fuel Pump" /area/almayer/lifeboat_pumps/south1 - name = "Port Fore Lifeboat Fuel Pump" + name = "Port-Fore Lifeboat Fuel Pump" /area/almayer/lifeboat_pumps/south2 - name = "Port Aft Lifeboat Fuel Pump" + name = "Port-Aft Lifeboat Fuel Pump" /area/almayer/command/lifeboat name = "\improper Lifeboat Docking Port" icon_state = "selfdestruct" fake_zlevel = 1 // upperdeck -/area/almayer/ert_port - name = "\improper ERT Docking Port" - icon_state = "lifeboat" - /area/space/almayer/lifeboat_dock name = "\improper Port Lifeboat Docking" icon_state = "lifeboat" diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index a1d8b6d919..e91be94c42 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -27,7 +27,6 @@ var/unique = TRUE - var/has_gravity = 1 // var/list/lights // list of all lights on this area var/list/all_doors = list() //Added by Strumpetplaya - Alarm Change - Contains a list of doors adjacent to this area var/air_doors_activated = 0 @@ -66,7 +65,7 @@ var/powernet_name = "default" //Default powernet name. Change to something else to make completely separate powernets var/requires_power = 1 var/unlimited_power = 0 - var/always_unpowered = 0 //this gets overriden to 1 for space in area/New() + var/always_unpowered = 0 //this gets overridden to 1 for space in area/New() //which channels are powered var/power_equip = TRUE @@ -79,6 +78,10 @@ var/used_environ = 0 var/used_oneoff = 0 //one-off power usage + /// If this area is outside the game's normal interactivity and should be excluded from things like EOR reports and crew monitors. + /// Doesn't need to be set for areas/Z levels that are marked as admin-only + var/block_game_interaction = FALSE + /area/New() // This interacts with the map loader, so it needs to be set immediately @@ -94,18 +97,12 @@ layer = AREAS_LAYER uid = ++global_uid . = ..() - active_areas += src - all_areas += src + GLOB.active_areas += src + GLOB.all_areas += src reg_in_areas_in_z() if(is_mainship_level(z)) GLOB.ship_areas += src - if(base_lighting_alpha) - return INITIALIZE_HINT_ROUNDSTART - -/area/LateInitialize() - . = ..() - update_base_lighting() /area/proc/initialize_power(override_power) @@ -138,13 +135,7 @@ C.network.Remove(CAMERA_NET_POWER_ALARMS) else C.network.Add(CAMERA_NET_POWER_ALARMS) - for (var/mob/living/silicon/aiPlayer in ai_mob_list) - if(aiPlayer.z == source.z) - if (state == 1) - aiPlayer.cancelAlarm("Power", src, source) - else - aiPlayer.triggerAlarm("Power", src, cameras, source) - for(var/obj/structure/machinery/computer/station_alert/a in machines) + for(var/obj/structure/machinery/computer/station_alert/a in GLOB.machines) if(a.z == source.z) if(state == 1) a.cancelAlarm("Power", src, source) @@ -169,9 +160,7 @@ if (danger_level < 2 && atmosalm >= 2) for(var/obj/structure/machinery/camera/C in src) C.network.Remove(CAMERA_NET_ATMOSPHERE_ALARMS) - for(var/mob/living/silicon/aiPlayer in ai_mob_list) - aiPlayer.cancelAlarm("Atmosphere", src, src) - for(var/obj/structure/machinery/computer/station_alert/a in machines) + for(var/obj/structure/machinery/computer/station_alert/a in GLOB.machines) a.cancelAlarm("Atmosphere", src, src) if (danger_level >= 2 && atmosalm < 2) @@ -180,9 +169,7 @@ for(var/obj/structure/machinery/camera/C in src) cameras += C C.network.Add(CAMERA_NET_ATMOSPHERE_ALARMS) - for(var/mob/living/silicon/aiPlayer in ai_mob_list) - aiPlayer.triggerAlarm("Atmosphere", src, cameras, src) - for(var/obj/structure/machinery/computer/station_alert/a in machines) + for(var/obj/structure/machinery/computer/station_alert/a in GLOB.machines) a.triggerAlarm("Atmosphere", src, cameras, src) air_doors_close() @@ -231,9 +218,7 @@ for (var/obj/structure/machinery/camera/C in src) cameras.Add(C) C.network.Add(CAMERA_NET_FIRE_ALARMS) - for (var/mob/living/silicon/ai/aiPlayer in ai_mob_list) - aiPlayer.triggerAlarm("Fire", src, cameras, src) - for (var/obj/structure/machinery/computer/station_alert/a in machines) + for (var/obj/structure/machinery/computer/station_alert/a in GLOB.machines) a.triggerAlarm("Fire", src, cameras, src) /area/proc/firereset() @@ -249,9 +234,7 @@ INVOKE_ASYNC(D, TYPE_PROC_REF(/obj/structure/machinery/door, open)) for (var/obj/structure/machinery/camera/C in src) C.network.Remove(CAMERA_NET_FIRE_ALARMS) - for (var/mob/living/silicon/ai/aiPlayer in ai_mob_list) - aiPlayer.cancelAlarm("Fire", src, src) - for (var/obj/structure/machinery/computer/station_alert/a in machines) + for (var/obj/structure/machinery/computer/station_alert/a in GLOB.machines) a.cancelAlarm("Fire", src, src) /area/proc/readyalert() @@ -397,42 +380,6 @@ if(istype(M)) use_power(-M.calculate_current_power_usage(), M.power_channel) -/area/proc/gravitychange(gravitystate = 0, area/A) - - A.has_gravity = gravitystate - - if(gravitystate) - for(var/mob/living/carbon/human/M in A) - thunk(M) - for(var/mob/M1 in A) - M1.make_floating(0) - else - for(var/mob/M in A) - if(M.Check_Dense_Object() && istype(src,/mob/living/carbon/human/)) - var/mob/living/carbon/human/H = src - if(istype(H.shoes, /obj/item/clothing/shoes/magboots) && (H.shoes.flags_inventory & NOSLIPPING)) //magboots + dense_object = no floaty effect - H.make_floating(0) - else - H.make_floating(1) - else - M.make_floating(1) - -/area/proc/thunk(M) - if(istype(get_turf(M), /turf/open/space)) // Can't fall onto nothing. - return - - if(istype(M,/mob/living/carbon/human/)) // Only humans can wear magboots, so we give them a chance to. - var/mob/living/carbon/human/H = M - if((istype(H.shoes, /obj/item/clothing/shoes/magboots) && (H.shoes.flags_inventory & NOSLIPPING))) - return - H.adjust_effect(5, STUN) - H.adjust_effect(5, WEAKEN) - - to_chat(M, "Gravity!") - - - - //atmos related procs /area/return_air() diff --git a/code/game/area/kutjevo.dm b/code/game/area/kutjevo.dm index 422017c0a4..1180e10a76 100644 --- a/code/game/area/kutjevo.dm +++ b/code/game/area/kutjevo.dm @@ -7,6 +7,7 @@ //ambience = list('figuresomethingout.ogg') icon_state = "kutjevo" can_build_special = TRUE //T-Comms structure + powernet_name = "ground" temperature = 308.7 //kelvin, 35c, 95f minimap_color = MINIMAP_AREA_ENGI @@ -67,6 +68,10 @@ name = "Kutjevo - Power Station River" icon_state = "lz_river" +/area/kutjevo/exterior/spring + name = "Kutjevo - Southern Spring" + icon_state = "lz_river" + /area/kutjevo/exterior/scrubland name = "Kutjevo - Scrubland" icon_state = "scrubland" @@ -199,12 +204,14 @@ icon_state = "Colony_int" ceiling = CEILING_METAL is_resin_allowed = FALSE + is_landing_zone = TRUE /area/kutjevo/interior/complex/Northwest_Flight_Control name = "Kutjevo Complex - Northwest Flight Control Room" icon_state = "Colony_int" ceiling = CEILING_METAL is_resin_allowed = FALSE + is_landing_zone = TRUE /area/kutjevo/interior/complex/Northwest_Security_Checkpoint name = "Kutjevo Complex - Northwest Security Checkpoint" @@ -212,6 +219,7 @@ ceiling = CEILING_METAL is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_SEC + is_landing_zone = TRUE //Out buildings + foremans /area/kutjevo/interior/power diff --git a/code/game/area/prison.dm b/code/game/area/prison.dm index e22581658e..3ee209a694 100644 --- a/code/game/area/prison.dm +++ b/code/game/area/prison.dm @@ -57,6 +57,7 @@ name = "\improper control room" icon_state = "bridge" minimap_color = MINIMAP_AREA_COMMAND + is_landing_zone = TRUE /area/prison/hallway/central_ring name = "\improper central ring" diff --git a/code/game/area/prison_v3_fiorina.dm b/code/game/area/prison_v3_fiorina.dm index 9c60f8173a..c02ed03108 100644 --- a/code/game/area/prison_v3_fiorina.dm +++ b/code/game/area/prison_v3_fiorina.dm @@ -183,6 +183,7 @@ /area/fiorina/station/telecomm/lz1_tram name = "Fiorina - LZ1 Aux Port Communications Relay" + is_landing_zone = TRUE /area/fiorina/station/telecomm/lz1_engineering name = "Fiorina - Engineering Primary Communications Relay" diff --git a/code/game/area/shiva.dm b/code/game/area/shiva.dm index 9cfaffb7dc..93d3e617d2 100644 --- a/code/game/area/shiva.dm +++ b/code/game/area/shiva.dm @@ -6,6 +6,7 @@ //ambience = list('figuresomethingout.ogg') icon_state = "shiva" can_build_special = TRUE //T-Comms structure + powernet_name = "ground" temperature = ICE_COLONY_TEMPERATURE minimap_color = MINIMAP_AREA_COLONY @@ -239,6 +240,10 @@ name = "Shiva's Snowball - Blue Warehouse" icon_state = "hangars1" +/area/shiva/interior/warehouse/caves + name = "Shiva's Snowball - Blue Warehouse Ice Cave" + icon_state = "caves1" + /area/shiva/interior/valley_huts name = "Shiva's Snowball - Valley Bunker 1" icon_state = "hangars1" @@ -251,10 +256,6 @@ name = "Shiva's Snowball - Valley Disposals" icon_state = "hangars3" -/area/shiva/interior/warehouse/caves - name = "Shiva's Snowball - Blue Warehouse Ice Cave" - icon_state = "caves1" - /area/shiva/interior/garage name = "Shiva's Snowball - Cargo Tug Repair Station" icon_state = "hangars2" @@ -262,3 +263,8 @@ /area/shiva/interior/lz2_habs name = "Shiva's Snowball - Argentinian Research Headquarters" icon_state = "bar1" + is_landing_zone = TRUE + +/area/shiva/interior/aux_power + name = "Shiva's Snowball - Auxiliary Generator Station" + icon_state = "hangars0" diff --git a/code/game/area/shuttles.dm b/code/game/area/shuttles.dm index 62c42406e7..3a8d53ab30 100644 --- a/code/game/area/shuttles.dm +++ b/code/game/area/shuttles.dm @@ -81,4 +81,4 @@ /area/shuttle/lifeboat icon = 'icons/turf/area_almayer.dmi' icon_state = "lifeboat" - flags_atom = AREA_NOTUNNEL + flags_area = AREA_NOTUNNEL diff --git a/code/game/area/space_station_13_areas.dm b/code/game/area/space_station_13_areas.dm index df5e54a770..6b3084ba80 100644 --- a/code/game/area/space_station_13_areas.dm +++ b/code/game/area/space_station_13_areas.dm @@ -59,7 +59,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station requires_power = FALSE static_lighting = FALSE base_lighting_alpha = 255 - has_gravity = 1 // === end remove @@ -72,7 +71,7 @@ NOTE: there are two lists of areas in the end of this file: centcom and station statistic_exempt = TRUE ceiling = CEILING_METAL - base_lighting_alpha = 255 + base_lighting_alpha = 255 /area/centcom/control name = "\improper abandoned Centcom Control" diff --git a/code/game/area/strata.dm b/code/game/area/strata.dm index 117cffa600..2bb17ea5d6 100644 --- a/code/game/area/strata.dm +++ b/code/game/area/strata.dm @@ -12,6 +12,7 @@ EXTERIOR is FUCKING FREEZING, and refers to areas out in the open and or exposed //ambience = list('figuresomethingout.ogg') icon_state = "strata" can_build_special = TRUE //T-Comms structure + powernet_name = "ground" temperature = SOROKYNE_TEMPERATURE //If not in a building, it'll be cold. All interior areas are set to T20C minimap_color = MINIMAP_AREA_COLONY diff --git a/code/game/area/varadero.dm b/code/game/area/varadero.dm index 682f3ded1c..b0e5d283fd 100644 --- a/code/game/area/varadero.dm +++ b/code/game/area/varadero.dm @@ -7,6 +7,7 @@ ambience_exterior = AMBIENCE_NV icon_state = "varadero" can_build_special = TRUE //T-Comms structure + powernet_name = "ground" temperature = TROPICAL_TEMP minimap_color = MINIMAP_AREA_COLONY @@ -84,6 +85,7 @@ requires_power = FALSE is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_LZ + is_landing_zone = TRUE /area/varadero/exterior/lz1_console/two name = "New Varadero - Palm Airfield" @@ -98,12 +100,14 @@ icon_state = "lz1" is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_LZ + is_landing_zone = TRUE /area/varadero/exterior/lz2_near name = "New Varadero - Palm Airfield" icon_state = "lz2" is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_LZ + is_landing_zone = TRUE /area/varadero/exterior/pontoon_beach name = "New Varadero - Rockabilly Beach" @@ -111,6 +115,9 @@ is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_JUNGLE +/area/varadero/exterior/pontoon_beach/lz + is_landing_zone = TRUE + /area/varadero/exterior/eastbeach name = "New Varadero - East Beach" is_resin_allowed = FALSE @@ -157,6 +164,7 @@ is_resin_allowed = FALSE minimap_color = MINIMAP_AREA_JUNGLE sound_environment = SOUND_ENVIRONMENT_ROOM + is_landing_zone = TRUE /area/varadero/interior/cargo name = "New Varadero - Cargo" diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 4ea51ef305..36dcef935f 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -243,7 +243,7 @@ directive is properly returned. pass |= istype(A, type) if(!pass) continue - if(A.contents.len) + if(length(A.contents)) found += A.search_contents_for(path,filter_path) return found @@ -392,11 +392,11 @@ Parameters are passed from New. var/turf/opaque_turf = loc opaque_turf.directional_opacity = ALL_CARDINALS // No need to recalculate it in this case, it's guaranteed to be on afterwards anyways. - pass_flags = pass_flags_cache[type] + pass_flags = GLOB.pass_flags_cache[type] if (isnull(pass_flags)) pass_flags = new() initialize_pass_flags(pass_flags) - pass_flags_cache[type] = pass_flags + GLOB.pass_flags_cache[type] = pass_flags else initialize_pass_flags() Decorate(mapload) @@ -424,7 +424,7 @@ Parameters are passed from New. T.appearance = src.appearance T.setDir(src.dir) - clones_t.Add(src) + GLOB.clones_t.Add(src) src.clone = T // EFFECTS diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm index 75ce7b2029..71e702719e 100644 --- a/code/game/atoms_movable.dm +++ b/code/game/atoms_movable.dm @@ -31,6 +31,9 @@ ///Highest-intensity light affecting us, which determines our visibility. var/affecting_dynamic_lumi = 0 + /// Holds a reference to the emissive blocker overlay + var/emissive_overlay + //=========================================================================== /atom/movable/Destroy(force) for(var/atom/movable/I in contents) @@ -39,13 +42,17 @@ pulledby.stop_pulling() QDEL_NULL(launch_metadata) QDEL_NULL(em_block) + QDEL_NULL(emissive_overlay) if(loc) loc.on_stored_atom_del(src) //things that container need to do when a movable atom inside it is deleted if(orbiting) orbiting.end_orbit(src) orbiting = null - vis_contents.Cut() + + vis_locs = null //clears this atom out of all viscontents + if(length(vis_contents)) + vis_contents.Cut() . = ..() moveToNullspace() //so we move into null space. Must be after ..() b/c atom's Dispose handles deleting our lighting stuff @@ -76,45 +83,33 @@ /atom/movable/Initialize(mapload, ...) . = ..() + + update_emissive_block() + + if(opacity) + AddElement(/datum/element/light_blocking) + if(light_system == MOVABLE_LIGHT) + AddComponent(/datum/component/overlay_lighting) + if(light_system == DIRECTIONAL_LIGHT) + AddComponent(/datum/component/overlay_lighting, is_directional = TRUE) + +/atom/movable/proc/update_emissive_block() + if(emissive_overlay) + overlays -= emissive_overlay + switch(blocks_emissive) if(EMISSIVE_BLOCK_GENERIC) var/mutable_appearance/gen_emissive_blocker = mutable_appearance(icon, icon_state, plane = EMISSIVE_PLANE, alpha = src.alpha) gen_emissive_blocker.color = GLOB.em_block_color gen_emissive_blocker.dir = dir gen_emissive_blocker.appearance_flags |= appearance_flags + emissive_overlay = gen_emissive_blocker overlays += gen_emissive_blocker if(EMISSIVE_BLOCK_UNIQUE) render_target = ref(src) em_block = new(src, render_target) + emissive_overlay = em_block overlays += list(em_block) - if(opacity) - AddElement(/datum/element/light_blocking) - if(light_system == MOVABLE_LIGHT) - AddComponent(/datum/component/overlay_lighting) - if(light_system == DIRECTIONAL_LIGHT) - AddComponent(/datum/component/overlay_lighting, is_directional = TRUE) - -/* - -///Updates this movables emissive overlay -/atom/movable/proc/update_emissive_block() - if(!blocks_emissive) - return - else if (blocks_emissive == EMISSIVE_BLOCK_GENERIC) - var/mutable_appearance/gen_emissive_blocker = emissive_blocker(icon, icon_state, alpha = src.alpha, appearance_flags = src.appearance_flags) - gen_emissive_blocker.dir = dir - if(blocks_emissive == EMISSIVE_BLOCK_UNIQUE) - if(!em_block) - render_target = ref(src) - em_block = new(src, render_target) - return em_block - -/atom/movable/update_overlays() - . = ..() - - . += update_emissive_block() - -*/ /atom/movable/vv_get_dropdown() . = ..() @@ -283,7 +278,7 @@ C.proj_y = shift_y C.proj_z = shift_z - clones.Add(C) + GLOB.clones.Add(C) C.mstr = src //Link clone and master src.clone = C @@ -315,7 +310,7 @@ clone.set_light(0) //Kill clone light /atom/movable/proc/destroy_clone() - clones.Remove(src.clone) + GLOB.clones.Remove(src.clone) qdel(src.clone) src.clone = null diff --git a/code/game/bioscans.dm b/code/game/bioscans.dm index ff6e00ec43..edd0b17421 100644 --- a/code/game/bioscans.dm +++ b/code/game/bioscans.dm @@ -111,7 +111,7 @@ GLOBAL_DATUM_INIT(bioscan_data, /datum/bioscan_data, new) /datum/bioscan_data/proc/ares_can_bioscan() var/datum/ares_link/link = GLOB.ares_link - if(!istype(link)) + if(!istype(link) || !ares_is_active()) return FALSE if(link.processor_bioscan && !link.processor_bioscan.inoperable()) return TRUE @@ -123,8 +123,8 @@ GLOBAL_DATUM_INIT(bioscan_data, /datum/bioscan_data, new) message_admins("An ARES Bioscan has failed.") var/name = "[MAIN_AI_SYSTEM] Bioscan Status" var/input = "Bioscan failed. \n\nInvestigation into Bioscan subsystem recommended." - log_ares_bioscan(name, input) - if(ares_can_interface()) + log_ares_bioscan(name, input, forced) + if(ares_can_interface() || forced) marine_announcement(input, name, 'sound/misc/interference.ogg', logging = ARES_LOG_NONE) return //Adjust the randomness there so everyone gets the same thing @@ -151,7 +151,7 @@ GLOBAL_DATUM_INIT(bioscan_data, /datum/bioscan_data, new) var/planet_location = "[marines_on_planet && marine_planet_location ? ", including one in [marine_planet_location]" : ""]" var/title = SPAN_XENOANNOUNCE("The Queen Mother reaches into your mind from worlds away.") - var/content = SPAN_XENOANNOUNCE("To my children and their Queen. I sense [metalhive_hosts] host[plural] in the metal hive [metalhive_location] and [planet_hosts] scattered elsewhere[planet_location].") + var/content = SPAN_XENOANNOUNCE("To my children and their Queen: I sense [metalhive_hosts] host[plural] in the metal hive[metalhive_location] and [planet_hosts] scattered elsewhere[planet_location].") log_game("BIOSCAN: Queen Mother bioscan completed. [content]") /// Shout it at everyone diff --git a/code/game/camera_manager/camera_manager.dm b/code/game/camera_manager/camera_manager.dm index 95292830d4..90e80ec703 100644 --- a/code/game/camera_manager/camera_manager.dm +++ b/code/game/camera_manager/camera_manager.dm @@ -6,7 +6,7 @@ /datum/component/camera_manager var/map_name var/obj/structure/machinery/camera/current - var/datum/shape/rectangle/current_area + var/datum/shape/current_area var/atom/movable/screen/map_view/cam_screen var/atom/movable/screen/background/cam_background var/list/range_turfs = list() @@ -86,7 +86,7 @@ RegisterSignal(parent, COMSIG_CAMERA_UNREGISTER_UI, PROC_REF(unregister)) RegisterSignal(parent, COMSIG_CAMERA_SET_NVG, PROC_REF(enable_nvg)) RegisterSignal(parent, COMSIG_CAMERA_CLEAR_NVG, PROC_REF(disable_nvg)) - RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_rect)) + RegisterSignal(parent, COMSIG_CAMERA_SET_AREA, PROC_REF(set_camera_area)) RegisterSignal(parent, COMSIG_CAMERA_SET_TARGET, PROC_REF(set_camera)) RegisterSignal(parent, COMSIG_CAMERA_CLEAR, PROC_REF(clear_camera)) RegisterSignal(parent, COMSIG_CAMERA_REFRESH, PROC_REF(refresh_camera)) @@ -133,18 +133,18 @@ RegisterSignal(current, COMSIG_PARENT_QDELETING, PROC_REF(show_camera_static)) update_target_camera() -/datum/component/camera_manager/proc/set_camera_rect(source, x, y, z, w, h) +/datum/component/camera_manager/proc/set_camera_area(source, datum/shape/new_area, z) SIGNAL_HANDLER render_mode = RENDER_MODE_AREA if(current) UnregisterSignal(current, COMSIG_PARENT_QDELETING) current = null - current_area = RECT(x, y, w, h) - target_x = x - target_y = y + current_area = new_area + target_x = current_area.center_x + target_y = current_area.center_y target_z = z - target_width = w - target_height = h + target_width = current_area.bounds_x + target_height = current_area.bounds_y update_area_camera() /datum/component/camera_manager/proc/enable_nvg(source, power, matrixcol) @@ -188,9 +188,9 @@ var/cam_location = current if(isliving(current.loc) || isVehicle(current.loc)) cam_location = current.loc - else if(istype(current.loc, /obj/item/clothing/head/helmet/marine)) - var/obj/item/clothing/head/helmet/marine/helmet = current.loc - cam_location = helmet.loc + else if(istype(current.loc, /obj/item/clothing)) + var/obj/item/clothing/clothing = current.loc + cam_location = clothing.loc // If we're not forcing an update for some reason and the cameras are in the same location, // we don't need to update anything. @@ -221,8 +221,8 @@ // Cameras that get here are moving, and are likely attached to some moving atom such as cyborgs. last_camera_turf = new_location - var/x_size = current_area.width - var/y_size = current_area.height + var/x_size = current_area.bounds_x + var/y_size = current_area.bounds_y var/turf/target = locate(current_area.center_x, current_area.center_y, target_z) var/list/visible_things = isXRay ? range("[x_size]x[y_size]", target) : view("[x_size]x[y_size]", target) diff --git a/code/game/cas_manager/datums/cas_fire_mission.dm b/code/game/cas_manager/datums/cas_fire_mission.dm index dc55e057ed..f672dffed8 100644 --- a/code/game/cas_manager/datums/cas_fire_mission.dm +++ b/code/game/cas_manager/datums/cas_fire_mission.dm @@ -80,7 +80,7 @@ /datum/cas_fire_mission/proc/check(obj/structure/machinery/computer/dropship_weapons/linked_console) error_weapon = null - if(records.len == 0) + if(length(records) == 0) return FIRE_MISSION_ALL_GOOD //I mean yes... but why? for(var/datum/cas_fire_mission_record/record in records) @@ -105,7 +105,7 @@ var/i if(!record.offsets) continue - for(i=1,i<=record.offsets.len,i++) + for(i=1,i<=length(record.offsets),i++) if(cd > 0) cd-- if(record.offsets[i] == null || record.offsets[i] == "-") @@ -192,7 +192,7 @@ envelope.change_current_loc(current_turf) var/datum/cas_fire_mission_record/item for(item in records) - if(item.offsets.len < step || item.offsets[step] == null || item.offsets[step]=="-") + if(length(item.offsets) < step || item.offsets[step] == null || item.offsets[step]=="-") continue var/offset = item.offsets[step] if (current_turf == null) diff --git a/code/game/cas_manager/datums/cas_iff_group.dm b/code/game/cas_manager/datums/cas_iff_group.dm index f384115d77..dc39b462c9 100644 --- a/code/game/cas_manager/datums/cas_iff_group.dm +++ b/code/game/cas_manager/datums/cas_iff_group.dm @@ -8,8 +8,7 @@ /datum/cas_iff_group/proc/remove_signal(datum/cas_signal/signal) cas_signals -= signal -var/global/datum/cas_iff_group/uscm_cas_group = new /datum/cas_iff_group() +GLOBAL_DATUM_INIT(uscm_cas_group, /datum/cas_iff_group, new()) +GLOBAL_DATUM_INIT(upp_cas_group, /datum/cas_iff_group, new()) -var/global/datum/cas_iff_group/upp_cas_group = new /datum/cas_iff_group() - -var/global/list/datum/cas_iff_group/cas_groups = list(FACTION_MARINE = uscm_cas_group, FACTION_UPP = upp_cas_group, FACTION_NEUTRAL = uscm_cas_group) +GLOBAL_LIST_INIT_TYPED(cas_groups, /datum/cas_iff_group, list(FACTION_MARINE = GLOB.uscm_cas_group, FACTION_UPP = GLOB.upp_cas_group, FACTION_NEUTRAL = GLOB.uscm_cas_group)) diff --git a/code/game/gamemodes/cm_initialize.dm b/code/game/gamemodes/cm_initialize.dm index d990f82f19..b6d17da025 100644 --- a/code/game/gamemodes/cm_initialize.dm +++ b/code/game/gamemodes/cm_initialize.dm @@ -74,7 +74,14 @@ Additional game mode variables. var/monkey_amount = 0 //How many monkeys do we spawn on this map ? var/list/monkey_types = list() //What type of monkeys do we spawn var/latejoin_tally = 0 //How many people latejoined Marines + var/latejoin_larva_drop_early = LATEJOIN_MARINES_PER_LATEJOIN_LARVA_EARLY var/latejoin_larva_drop = LATEJOIN_MARINES_PER_LATEJOIN_LARVA //A larva will spawn in once the tally reaches this level. If set to 0, no latejoin larva drop + /// Amount of latejoin_tally already awarded as larvas + var/latejoin_larva_used = 0 + /// Multiplier to the amount of marine gear, current value as calculated with modifiers + var/gear_scale = 1 + /// Multiplier to the amount of marine gear, maximum reached value for + var/gear_scale_max = 1 //Role Authority set up. /// List of role titles to override to different roles when starting game @@ -103,7 +110,7 @@ Additional game mode variables. /datum/game_mode/proc/get_roles_list() - return ROLES_USCM + return GLOB.ROLES_USCM //===================================================\\ @@ -112,16 +119,16 @@ Additional game mode variables. //===================================================\\ /datum/game_mode/proc/initialize_special_clamps() - xeno_starting_num = clamp((readied_players/CONFIG_GET(number/xeno_number_divider)), xeno_required_num, INFINITY) //(n, minimum, maximum) - surv_starting_num = clamp((readied_players/CONFIG_GET(number/surv_number_divider)), 2, 8) //this doesnt run - marine_starting_num = GLOB.player_list.len - xeno_starting_num - surv_starting_num - for(var/datum/squad/sq in RoleAuthority.squads) + xeno_starting_num = clamp((GLOB.readied_players/CONFIG_GET(number/xeno_number_divider)), xeno_required_num, INFINITY) //(n, minimum, maximum) + surv_starting_num = clamp((GLOB.readied_players/CONFIG_GET(number/surv_number_divider)), 2, 8) //this doesnt run + marine_starting_num = length(GLOB.player_list) - xeno_starting_num - surv_starting_num + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) sq.max_engineers = engi_slot_formula(marine_starting_num) sq.max_medics = medic_slot_formula(marine_starting_num) - for(var/i in RoleAuthority.roles_by_name) - var/datum/job/J = RoleAuthority.roles_by_name[i] + for(var/i in GLOB.RoleAuthority.roles_by_name) + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[i] if(J.scaled) J.set_spawn_positions(marine_starting_num) @@ -152,7 +159,7 @@ Additional game mode variables. else if(!istype(player,/mob/dead)) continue //Otherwise we just want to grab the ghosts. - if(RoleAuthority.roles_whitelist[player.ckey] & WHITELIST_PREDATOR) //Are they whitelisted? + if(player?.client.check_whitelist_status(WHITELIST_PREDATOR)) //Are they whitelisted? if(!player.client.prefs) player.client.prefs = new /datum/preferences(player.client) //Somehow they don't have one. @@ -172,43 +179,46 @@ Additional game mode variables. if(pred_candidate) pred_candidate.moveToNullspace() //Nullspace it for garbage collection later. -#define calculate_pred_max (Floor(length(GLOB.player_list) / pred_per_players) + pred_additional_max + pred_start_count) - -/datum/game_mode/proc/check_predator_late_join(mob/pred_candidate, show_warning = 1) +/datum/game_mode/proc/calculate_pred_max() + return floor(length(GLOB.player_list) / pred_per_players) + pred_additional_max + pred_start_count +/datum/game_mode/proc/check_predator_late_join(mob/pred_candidate, show_warning = TRUE) if(!pred_candidate.client) return - var/datum/job/J = RoleAuthority.roles_by_name[JOB_PREDATOR] + var/datum/job/pred_job = GLOB.RoleAuthority.roles_by_name[JOB_PREDATOR] - if(!J) - if(show_warning) to_chat(pred_candidate, SPAN_WARNING("Something went wrong!")) - return + if(!pred_job) + if(show_warning) + to_chat(pred_candidate, SPAN_WARNING("Something went wrong!")) + return FALSE - if(!(RoleAuthority.roles_whitelist[pred_candidate.ckey] & WHITELIST_PREDATOR)) - if(show_warning) to_chat(pred_candidate, SPAN_WARNING("You are not whitelisted! You may apply on the forums to be whitelisted as a predator.")) - return + if(!(pred_candidate?.client.check_whitelist_status(WHITELIST_PREDATOR))) + if(show_warning) + to_chat(pred_candidate, SPAN_WARNING("You are not whitelisted! You may apply on the forums to be whitelisted as a predator.")) + return FALSE if(!(flags_round_type & MODE_PREDATOR)) - if(show_warning) to_chat(pred_candidate, SPAN_WARNING("There is no Hunt this round! Maybe the next one.")) - return + if(show_warning) + to_chat(pred_candidate, SPAN_WARNING("There is no Hunt this round! Maybe the next one.")) + return FALSE if(pred_candidate.ckey in predators) if(show_warning) to_chat(pred_candidate, SPAN_WARNING("You already were a Yautja! Give someone else a chance.")) - return + return FALSE - if(show_warning && tgui_alert(pred_candidate, "Confirm joining the hunt. You will join as \a [lowertext(J.get_whitelist_status(RoleAuthority.roles_whitelist, pred_candidate.client))] predator", "Confirmation", list("Yes", "No"), 10 SECONDS) != "Yes") - return - if(J.get_whitelist_status(RoleAuthority.roles_whitelist, pred_candidate.client) == WHITELIST_NORMAL) - var/pred_max = calculate_pred_max - if(pred_current_num >= pred_max) - if(show_warning) to_chat(pred_candidate, SPAN_WARNING("Only [pred_max] predators may spawn this round, but Councillors and Ancients do not count.")) - return + if(show_warning && tgui_alert(pred_candidate, "Confirm joining the hunt. You will join as \a [lowertext(pred_job.get_whitelist_status(pred_candidate.client))] predator", "Confirmation", list("Yes", "No"), 10 SECONDS) != "Yes") + return FALSE - return 1 + if(pred_job.get_whitelist_status(pred_candidate.client) == WHITELIST_NORMAL) + var/pred_max = calculate_pred_max() + if(pred_current_num >= pred_max) + if(show_warning) + to_chat(pred_candidate, SPAN_WARNING("Only [pred_max] predators may spawn this round, but Councillors and Ancients do not count.")) + return FALSE -#undef calculate_pred_max + return TRUE /datum/game_mode/proc/transform_predator(mob/pred_candidate) set waitfor = FALSE @@ -237,13 +247,13 @@ Additional game mode variables. pred_candidate.mind.transfer_to(new_predator, TRUE) new_predator.client = pred_candidate.client - var/datum/job/J = RoleAuthority.roles_by_name[JOB_PREDATOR] + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_PREDATOR] if(!J) qdel(new_predator) return - RoleAuthority.equip_role(new_predator, J, new_predator.loc) + GLOB.RoleAuthority.equip_role(new_predator, J, new_predator.loc) return new_predator @@ -256,10 +266,10 @@ Additional game mode variables. //If we are selecting xenomorphs, we NEED them to play the round. This is the expected behavior. //If this is an optional behavior, just override this proc or make an override here. -/datum/game_mode/proc/initialize_starting_xenomorph_list(list/hives = list(XENO_HIVE_NORMAL), force_xenos = FALSE) +/datum/game_mode/proc/initialize_starting_xenomorph_list(list/hives = list(XENO_HIVE_NORMAL), bypass_checks = FALSE) var/list/datum/mind/possible_xenomorphs = get_players_for_role(JOB_XENOMORPH) var/list/datum/mind/possible_queens = get_players_for_role(JOB_XENOMORPH_QUEEN) - if(possible_xenomorphs.len < xeno_required_num) //We don't have enough aliens, we don't consider people rolling for only Queen. + if(length(possible_xenomorphs) < xeno_required_num && !bypass_checks) //We don't have enough aliens, we don't consider people rolling for only Queen. to_world("

    Not enough players have chosen to be a xenomorph in their character setup. Aborting.

    ") return @@ -306,14 +316,14 @@ Additional game mode variables. xenomorphs[hive] += new_xeno else //Out of candidates, fill the xeno hive with burrowed larva - remaining_slots = round((xeno_starting_num - i)) + remaining_slots = floor((xeno_starting_num - i)) break current_index++ if(remaining_slots) - var/larva_per_hive = round(remaining_slots / LAZYLEN(hives)) + var/larva_per_hive = floor(remaining_slots / LAZYLEN(hives)) for(var/hivenumb in hives) var/datum/hive_status/hive = GLOB.hive_datum[hivenumb] hive.stored_larva = larva_per_hive @@ -322,11 +332,11 @@ Additional game mode variables. Our list is empty. This can happen if we had someone ready as alien and predator, and predators are picked first. So they may have been removed from the list, oh well. */ - if(LAZYLEN(xenomorphs) < xeno_required_num && LAZYLEN(picked_queens) != LAZYLEN(hives)) + if(LAZYLEN(xenomorphs) < xeno_required_num && LAZYLEN(picked_queens) != LAZYLEN(hives) && !bypass_checks) to_world("

    Could not find any candidates after initial alien list pass. Aborting.

    ") return - return 1 + return TRUE // Helper proc to set some constants /proc/setup_new_xeno(datum/mind/new_xeno) @@ -350,7 +360,7 @@ Additional game mode variables. if(cur_xeno.aghosted) continue //aghosted xenos don't count var/area/area = get_area(cur_xeno) - if(is_admin_level(cur_xeno.z) && (!area || !(area.flags_area & AREA_ALLOW_XENO_JOIN))) + if(should_block_game_interaction(cur_xeno) && (!area || !(area.flags_area & AREA_ALLOW_XENO_JOIN))) continue //xenos on admin z level don't count if(!istype(cur_xeno)) continue @@ -384,35 +394,50 @@ Additional game mode variables. available_xenos += larva_option available_xenos[larva_option] = list(hive) - if(!available_xenos.len || (instant_join && !available_xenos_non_ssd.len)) - if(!xeno_candidate.client || !xeno_candidate.client.prefs || !(xeno_candidate.client.prefs.be_special & BE_ALIEN_AFTER_DEATH)) - to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs or burrowed larvae. You can try getting spawned as a chestburster larva by toggling your Xenomorph candidacy in Preferences -> Toggle SpecialRole Candidacy.")) + if(!length(available_xenos) || (instant_join && !length(available_xenos_non_ssd))) + if(!xeno_candidate.client?.prefs || !(xeno_candidate.client.prefs.be_special & BE_ALIEN_AFTER_DEATH)) + to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs or burrowed larvae. \ + You can try getting spawned as a chestburster larva by toggling your Xenomorph candidacy in \ + Preferences -> Toggle SpecialRole Candidacy.")) return FALSE to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs or burrowed larvae.")) - // Give the player a cached message of their queue status if they are an observer + if(!isobserver(xeno_candidate)) + return FALSE var/mob/dead/observer/candidate_observer = xeno_candidate - if(istype(candidate_observer)) - if(candidate_observer.larva_queue_cached_message) - to_chat(xeno_candidate, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) - return FALSE - // No cache, lets check now then - message_alien_candidates(get_alien_candidates(), dequeued = 0, cache_only = TRUE) - if(candidate_observer.larva_queue_cached_message) - var/datum/hive_status/cur_hive - for(var/hive_num in GLOB.hive_datum) - cur_hive = GLOB.hive_datum[hive_num] - for(var/mob_name in cur_hive.banished_ckeys) - if(cur_hive.banished_ckeys[mob_name] == xeno_candidate.ckey) - candidate_observer.larva_queue_cached_message += "\nNOTE: You are banished from the [cur_hive] and you may not rejoin unless the Queen re-admits you or dies. Your queue number won't update until there is a hive you aren't banished from." - break - to_chat(xeno_candidate, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) - return FALSE + // If an observing mod wants to join as a xeno, disable their larva protection so that they can enter the queue. + if(check_client_rights(candidate_observer.client, R_MOD, FALSE)) + candidate_observer.admin_larva_protection = FALSE - // We aren't in queue yet, lets teach them about the queue then - candidate_observer.larva_queue_cached_message = "You are currently awaiting assignment in the larva queue. The ordering is based on your time of death or the time you joined. When you have been dead long enough and are not inactive, you will periodically receive messages where you are in the queue relative to other currently valid xeno candidates. Your current position will shift as others change their preferences or go inactive, but your relative position compared to all observers is the same. Note: Playing as a facehugger or in the thunderdome will not alter your time of death. This means you won't lose your relative place in queue if you step away, disconnect, play as a facehugger, or play in the thunderdome." - to_chat(xeno_candidate, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) + // Give the player a cached message of their queue status if they are an observer + if(candidate_observer.larva_queue_cached_message) + to_chat(candidate_observer, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) + return FALSE + + // No cache, lets check now then + message_alien_candidates(get_alien_candidates(), dequeued = 0, cache_only = TRUE) + + // If we aren't in the queue yet, let's teach them about the queue + if(!candidate_observer.larva_queue_cached_message) + candidate_observer.larva_queue_cached_message = "You are currently awaiting assignment in the larva queue. \ + The ordering is based on your time of death or the time you joined. When you have been dead long enough and are not inactive, \ + you will periodically receive messages where you are in the queue relative to other currently valid xeno candidates. \ + Your current position will shift as others change their preferences or go inactive, but your relative position compared to all observers is the same. \ + Note: Playing as a facehugger or in the thunderdome will not alter your time of death. \ + This means you won't lose your relative place in queue if you step away, disconnect, play as a facehugger, or play in the thunderdome." + to_chat(candidate_observer, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) + return FALSE + + var/datum/hive_status/cur_hive + for(var/hive_num in GLOB.hive_datum) + cur_hive = GLOB.hive_datum[hive_num] + for(var/mob_name in cur_hive.banished_ckeys) + if(cur_hive.banished_ckeys[mob_name] == candidate_observer.ckey) + candidate_observer.larva_queue_cached_message += "\nNOTE: You are banished from the [cur_hive] and you may not rejoin unless \ + the Queen re-admits you or dies. Your queue number won't update until there is a hive you aren't banished from." + break + to_chat(candidate_observer, SPAN_XENONOTICE(candidate_observer.larva_queue_cached_message)) return FALSE var/mob/living/carbon/xenomorph/new_xeno @@ -505,16 +530,16 @@ Additional game mode variables. var/last_active_hive = 0 for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(hive.totalXenos.len <= 0) + if(length(hive.totalXenos) <= 0) continue active_hives[hive.name] = hive.hivenumber last_active_hive = hive.hivenumber - if(active_hives.len <= 0) + if(length(active_hives) <= 0) to_chat(xeno_candidate, SPAN_WARNING("There aren't any Hives active at this point for you to join.")) return FALSE - if(active_hives.len > 1) + if(length(active_hives) > 1) var/hive_picked = tgui_input_list(xeno_candidate, "Select which Hive to attempt joining.", "Hive Choice", active_hives, theme="hive_status") if(!hive_picked) to_chat(xeno_candidate, SPAN_ALERT("Hive choice error. Aborting.")) @@ -539,7 +564,7 @@ Additional game mode variables. var/descriptive_name = "[morpher.name] in [area_name]" available_facehugger_sources[descriptive_name] = morpher - if(available_facehugger_sources.len <= 0) + if(length(available_facehugger_sources) <= 0) to_chat(xeno_candidate, SPAN_WARNING("There aren't any Carriers or Egg Morphers with available Facehuggers for you to join. Please try again later!")) return FALSE @@ -571,16 +596,16 @@ Additional game mode variables. var/last_active_hive = 0 for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(hive.totalXenos.len <= 0) + if(length(hive.totalXenos) <= 0) continue active_hives[hive.name] = hive.hivenumber last_active_hive = hive.hivenumber - if(active_hives.len <= 0) + if(length(active_hives) <= 0) to_chat(xeno_candidate, SPAN_WARNING("There aren't any Hives active at this point for you to join.")) return FALSE - if(active_hives.len > 1) + if(length(active_hives) > 1) var/hive_picked = tgui_input_list(xeno_candidate, "Select which Hive to attempt joining.", "Hive Choice", active_hives, theme="hive_status") if(!hive_picked) to_chat(xeno_candidate, SPAN_ALERT("Hive choice error. Aborting.")) @@ -661,7 +686,7 @@ Additional game mode variables. // Let the round recorder know that the key has changed SSround_recording.recorder.update_key(new_xeno) if(new_xeno.client) - new_xeno.client.change_view(world_view_size) + new_xeno.client.change_view(GLOB.world_view_size) msg_admin_niche("[new_xeno.key] has joined as [new_xeno].") if(isxeno(new_xeno)) //Dear lord @@ -672,9 +697,9 @@ Additional game mode variables. return TRUE /// Pick and setup a queen spawn from landmarks, then spawns the player there alongside any required setup -/datum/game_mode/proc/pick_queen_spawn(datum/mind/ghost_mind, hivenumber = XENO_HIVE_NORMAL) +/datum/game_mode/proc/pick_queen_spawn(mob/player, hivenumber = XENO_HIVE_NORMAL) RETURN_TYPE(/turf) - + var/datum/mind/ghost_mind = player.mind var/mob/living/original = ghost_mind.current var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] if(hive.living_xeno_queen || !original || !original.client) @@ -695,6 +720,9 @@ Additional game mode variables. spawn_list_map[spawn_name] = T var/selected_spawn = tgui_input_list(original, "Where do you want you and your hive to spawn?", "Queen Spawn", spawn_list_map, QUEEN_SPAWN_TIMEOUT, theme="hive_status") + if(hive.living_xeno_queen) + to_chat(original, SPAN_XENOANNOUNCE("You have taken too long to pick a spawn location, a queen has already evolved before you.")) + player.send_to_lobby() if(!selected_spawn) selected_spawn = pick(spawn_list_map) to_chat(original, SPAN_XENOANNOUNCE("You have taken too long to pick a spawn location, one has been chosen for you.")) @@ -734,8 +762,6 @@ Additional game mode variables. to_chat(new_queen, "You should start by building a hive core.") to_chat(new_queen, "Talk in Hivemind using ; (e.g. ';Hello my children!')") - // Xeno ressource collection - //new_queen.crystal_stored = XENO_STARTING_CRYSTAL new_queen.update_icons() //===================================================\\ @@ -806,7 +832,7 @@ Additional game mode variables. H.name = H.get_visible_name() if(!H.first_xeno) //Only give objectives/back-stories to uninfected survivors - if(spawner.intro_text && spawner.intro_text.len) + if(LAZYLEN(spawner.intro_text)) spawn(4) for(var/line in spawner.intro_text) to_chat(H, line) @@ -871,7 +897,7 @@ Additional game mode variables. var/story //The actual story they will get to read. var/random_name var/datum/mind/survivor - while(current_survivors.len) + while(length(current_survivors)) survivor = pick(current_survivors) if(!istype(survivor)) current_survivors -= survivor @@ -883,8 +909,8 @@ Additional game mode variables. current_survivors -= survivor continue - if(current_survivors.len > 1) //If we have another survivor to pick from. - if(survivor_multi_story.len) //Unlikely. + if(length(current_survivors) > 1) //If we have another survivor to pick from. + if(length(survivor_multi_story)) //Unlikely. var/datum/mind/another_survivor = pick(current_survivors - survivor) // We don't want them to be picked twice. current_survivors -= another_survivor if(!istype(another_survivor)) continue//If somehow this thing screwed up, we're going to run another pass. @@ -899,7 +925,7 @@ Additional game mode variables. to_chat(another_survivor.current, temp_story) another_survivor.memory += temp_story else - if(survivor_story.len) //Shouldn't happen, but technically possible. + if(length(survivor_story)) //Shouldn't happen, but technically possible. story = pick(survivor_story) survivor_story -= story spawn(6) @@ -918,23 +944,49 @@ Additional game mode variables. //We do NOT want to initilialize the gear before everyone is properly spawned in /datum/game_mode/proc/initialize_post_marine_gear_list() - var/scale = get_scaling_value() + init_gear_scale() //Set up attachment vendor contents related to Marine count for(var/i in GLOB.cm_vending_vendors) var/obj/structure/machinery/cm_vending/sorted/CVS = i - CVS.populate_product_list_and_boxes(scale) + CVS.populate_product_list_and_boxes(gear_scale) //Scale the amount of cargo points through a direct multiplier - supply_controller.points = round(supply_controller.points * scale) + GLOB.supply_controller.points += floor(GLOB.supply_controller.points_scale * gear_scale) -/datum/game_mode/proc/get_scaling_value() +///Returns a multiplier to the amount of gear that is to be distributed roundstart, stored in [/datum/game_mode/var/gear_scale] +/datum/game_mode/proc/init_gear_scale() //We take the number of marine players, deduced from other lists, and then get a scale multiplier from it, to be used in arbitrary manners to distribute equipment - //This might count players who ready up but get kicked back to the lobby - var/marine_pop_size = length(GLOB.alive_human_list) + var/marine_pop_size = 0 + var/uscm_personnel_count = 0 + for(var/mob/living/carbon/human/human as anything in GLOB.alive_human_list) + if(human.faction == FACTION_MARINE) + uscm_personnel_count++ + var/datum/job/job = GET_MAPPED_ROLE(human.job) + marine_pop_size += GLOB.RoleAuthority.calculate_role_weight(job) //This gives a decimal value representing a scaling multiplier. Cannot go below 1 - return max(marine_pop_size / MARINE_GEAR_SCALING_NORMAL, 1) + gear_scale = max(marine_pop_size / MARINE_GEAR_SCALING_NORMAL, 1) + gear_scale_max = gear_scale + log_debug("SUPPLY: Game start detected [marine_pop_size] weighted marines (out of [uscm_personnel_count]/[length(GLOB.alive_human_list)] USCM humans), resulting in gear_scale = [gear_scale]") + return gear_scale + +///Updates the [/datum/game_mode/var/gear_scale] multiplier based on joining and cryoing marines +/datum/game_mode/proc/update_gear_scale(delta) + // Magic inverse function that guarantees marines still get good supplies for latejoins within first ~30 minutes but stalls starting 2 hours or so + gear_scale += delta * (0.25 + 0.75 / (1 + ROUND_TIME / 20000)) / MARINE_GEAR_SCALING_NORMAL + var/gear_delta = gear_scale - gear_scale_max + if(gear_delta > 0) + gear_scale_max = gear_scale + for(var/obj/structure/machinery/cm_vending/sorted/vendor as anything in GLOB.cm_vending_vendors) + vendor.update_dynamic_stock(gear_scale_max) + GLOB.supply_controller.points += floor(gear_delta * GLOB.supply_controller.points_scale) + +/// Updates [var/latejoin_tally] and [var/gear_scale] based on role weights of latejoiners/cryoers. Delta is the amount of role positions added/removed +/datum/game_mode/proc/latejoin_update(role, delta = 1) + var/weight = GLOB.RoleAuthority.calculate_role_weight(role) + latejoin_tally += weight * delta + update_gear_scale(weight * delta) // for the toolbox /datum/game_mode/proc/end_round_message() @@ -968,32 +1020,36 @@ Additional game mode variables. if(!joe_candidate.client) return - var/datum/job/joe_job = RoleAuthority.roles_by_name[JOB_WORKING_JOE] + var/datum/job/joe_job = GLOB.RoleAuthority.roles_by_name[JOB_WORKING_JOE] if(!joe_job) if(show_warning) to_chat(joe_candidate, SPAN_WARNING("Something went wrong!")) return - if(!(RoleAuthority.roles_whitelist[joe_candidate.ckey] & WHITELIST_JOE)) + if(!joe_job.check_whitelist_status(joe_candidate)) if(show_warning) to_chat(joe_candidate, SPAN_WARNING("You are not whitelisted! You may apply on the forums to be whitelisted as a synth.")) return - if((joe_candidate.ckey in joes) && !MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE)) - if(show_warning) - to_chat(joe_candidate, SPAN_WARNING("You already were a Working Joe this round!")) - return + if(MODE_HAS_TOGGLEABLE_FLAG(MODE_DISABLE_JOE_RESPAWN) && (joe_candidate.ckey in joes)) // No joe respawns if already a joe before + to_chat(joe_candidate, SPAN_WARNING("Working Joe respawns are disabled!")) + return FALSE + + var/deathtime = world.time - joe_candidate.timeofdeath + if((deathtime < JOE_JOIN_DEAD_TIME && (joe_candidate.ckey in joes)) && !MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE)) + to_chat(joe_candidate, SPAN_WARNING("You have been dead for [DisplayTimeText(deathtime)]. You need to wait [DisplayTimeText(JOE_JOIN_DEAD_TIME - deathtime)] before rejoining as a Working Joe!")) + return FALSE // council doesn't count towards this conditional. - if(joe_job.get_whitelist_status(RoleAuthority.roles_whitelist, joe_candidate.client) == WHITELIST_NORMAL) + if(joe_job.get_whitelist_status(joe_candidate.client) == WHITELIST_NORMAL) var/joe_max = joe_job.total_positions if((joe_job.current_positions >= joe_max) && !MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE)) if(show_warning) to_chat(joe_candidate, SPAN_WARNING("Only [joe_max] Working Joes may spawn per round.")) return - if(!enter_allowed && !MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE)) + if(!GLOB.enter_allowed && !MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE)) if(show_warning) to_chat(joe_candidate, SPAN_WARNING("There is an administrative lock from entering the game.")) return @@ -1013,14 +1069,14 @@ Additional game mode variables. var/turf/spawn_point = get_turf(pick(GLOB.latejoin_by_job[JOB_WORKING_JOE])) var/mob/living/carbon/human/synthetic/new_joe = new(spawn_point) joe_candidate.mind.transfer_to(new_joe, TRUE) - var/datum/job/joe_job = RoleAuthority.roles_by_name[JOB_WORKING_JOE] + var/datum/job/joe_job = GLOB.RoleAuthority.roles_by_name[JOB_WORKING_JOE] if(!joe_job) qdel(new_joe) return // This is usually done in assign_role, a proc which is not executed in this case, since check_joe_late_join is running its own checks. joe_job.current_positions++ - RoleAuthority.equip_role(new_joe, joe_job, new_joe.loc) + GLOB.RoleAuthority.equip_role(new_joe, joe_job, new_joe.loc) GLOB.data_core.manifest_inject(new_joe) SSticker.minds += new_joe.mind return new_joe diff --git a/code/game/gamemodes/cm_process.dm b/code/game/gamemodes/cm_process.dm index 10b3342b22..d217646db1 100644 --- a/code/game/gamemodes/cm_process.dm +++ b/code/game/gamemodes/cm_process.dm @@ -39,16 +39,16 @@ of predators), but can be added to include variant game modes (like humans vs. h /datum/game_mode/proc/declare_completion_announce_fallen_soldiers() set waitfor = 0 sleep(2 SECONDS) - fallen_list += fallen_list_cross - if(fallen_list.len) + GLOB.fallen_list += GLOB.fallen_list_cross + if(length(GLOB.fallen_list)) var/dat = "
    " dat += SPAN_ROUNDBODY("In Flanders fields...
    ") dat += SPAN_CENTERBOLD("In memoriam of our fallen soldiers:
    ") - for(var/i = 1 to fallen_list.len) - if(i != fallen_list.len) - dat += "[fallen_list[i]], " + for(var/i = 1 to length(GLOB.fallen_list)) + if(i != length(GLOB.fallen_list)) + dat += "[GLOB.fallen_list[i]], " else - dat += "[fallen_list[i]].
    " + dat += "[GLOB.fallen_list[i]].
    " to_world("[dat]") @@ -87,20 +87,20 @@ of predators), but can be added to include variant game modes (like humans vs. h /datum/game_mode/proc/declare_completion_announce_medal_awards() set waitfor = 0 sleep(2 SECONDS) - if(GLOB.medal_awards.len) + if(length(GLOB.medal_awards)) var/dat = "
    " dat += SPAN_ROUNDBODY("
    Medal Awards:") for(var/recipient in GLOB.medal_awards) var/datum/recipient_awards/recipient_award = GLOB.medal_awards[recipient] - for(var/i in 1 to recipient_award.medal_names.len) + for(var/i in 1 to length(recipient_award.medal_names)) dat += "
    [recipient_award.recipient_rank] [recipient] is awarded [recipient_award.posthumous[i] ? "posthumously " : ""]the [recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\'." to_world(dat) - if(GLOB.jelly_awards.len) + if(length(GLOB.jelly_awards)) var/dat = "
    " dat += SPAN_ROUNDBODY("
    Royal Jelly Awards:") for(var/recipient in GLOB.jelly_awards) var/datum/recipient_awards/recipient_award = GLOB.jelly_awards[recipient] - for(var/i in 1 to recipient_award.medal_names.len) + for(var/i in 1 to length(recipient_award.medal_names)) dat += "
    [recipient] is awarded [recipient_award.posthumous[i] ? "posthumously " : ""]a [recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\'[recipient_award.giver_rank[i] ? " by [recipient_award.giver_rank[i]]" : ""][recipient_award.giver_name[i] ? " ([recipient_award.giver_name[i]])" : ""]." to_world(dat) @@ -134,7 +134,7 @@ of predators), but can be added to include variant game modes (like humans vs. h // Open podlocks with the given ID if they aren't already opened. // DO NOT USE THIS WITH ID's CORRESPONDING TO SHUTTLES OR THEY WILL BREAK! /datum/game_mode/proc/open_podlocks(podlock_id) - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == podlock_id && M.density) M.open() diff --git a/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm b/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm index 9fe36dec66..1f6475865f 100644 --- a/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm +++ b/code/game/gamemodes/colonialmarines/ai/colonialmarines_ai.dm @@ -37,18 +37,18 @@ squad_limit += MAIN_SHIP_PLATOON for(var/i in squad_limit) role_mappings = GLOB.platoon_to_jobs[i] - RoleAuthority.reset_roles() - for(var/datum/squad/sq in RoleAuthority.squads) + GLOB.RoleAuthority.reset_roles() + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq.type in squad_limit) GLOB.main_platoon_name = sq.name GLOB.main_platoon_initial_name = sq.name - for(var/datum/squad/squad in RoleAuthority.squads) + for(var/datum/squad/squad in GLOB.RoleAuthority.squads) if(squad.type in squad_limit) continue - RoleAuthority.squads -= squad - RoleAuthority.squads_by_type -= squad.type + GLOB.RoleAuthority.squads -= squad + GLOB.RoleAuthority.squads_by_type -= squad.type . = ..() diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 8f0f4da2e1..48628e99ff 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -1,5 +1,6 @@ #define HIJACK_EXPLOSION_COUNT 5 -#define MARINE_MAJOR_ROUND_END_DELAY 3 MINUTES +#define MARINE_MAJOR_ROUND_END_DELAY (3 MINUTES) +#define LZ_HAZARD_START (3 MINUTES) /datum/game_mode/colonialmarines name = "Distress Signal" @@ -16,12 +17,13 @@ var/next_research_allocation = 0 var/next_stat_check = 0 var/list/running_round_stats = list() + var/list/lz_smoke = list() //////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////////////// /* Pre-pre-startup */ -/datum/game_mode/colonialmarines/can_start() +/datum/game_mode/colonialmarines/can_start(bypass_checks = FALSE) initialize_special_clamps() return TRUE @@ -29,7 +31,7 @@ to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDHEADER("The current map is - [SSmapping.configs[GROUND_MAP].map_name]!")) /datum/game_mode/colonialmarines/get_roles_list() - return ROLES_DISTRESS_SIGNAL + return GLOB.ROLES_DISTRESS_SIGNAL //////////////////////////////////////////////////////////////////////////////////////// //Temporary, until we sort this out properly. @@ -87,7 +89,7 @@ new type_to_spawn(T) //desert river test - if(!round_toxic_river.len) + if(!length(round_toxic_river)) round_toxic_river = null //No tiles? else round_time_river = rand(-100,100) @@ -98,7 +100,7 @@ var/obj/structure/tunnel/T var/i = 0 var/turf/t - while(GLOB.xeno_tunnels.len && i++ < 3) + while(length(GLOB.xeno_tunnels) && i++ < 3) t = get_turf(pick_n_take(GLOB.xeno_tunnels)) T = new(t) T.id = "hole[i]" @@ -120,13 +122,130 @@ addtimer(CALLBACK(src, PROC_REF(ares_online)), 5 SECONDS) addtimer(CALLBACK(src, PROC_REF(map_announcement)), 20 SECONDS) + //addtimer(CALLBACK(src, PROC_REF(start_lz_hazards)), LZ_HAZARD_START) return ..() +/datum/game_mode/colonialmarines/ds_first_landed(obj/docking_port/stationary/marine_dropship) + . = ..() + clear_lz_hazards() // This shouldn't normally do anything, but is here just in case + + /* + // Assumption: Shuttle origin is its center + // Assumption: dwidth is atleast 2 and dheight is atleast 4 otherwise there will be overlap + var/list/options = list() + var/list/structures_to_break = list(/obj/structure/barricade, /obj/structure/surface/table, /obj/structure/bed) + var/bottom = marine_dropship.y - marine_dropship.dheight - 2 + var/top = marine_dropship.y + marine_dropship.dheight + 2 + var/left = marine_dropship.x - marine_dropship.dwidth - 2 + var/right = marine_dropship.x + marine_dropship.dwidth + 2 + var/z = marine_dropship.z + + // Bottom left + options += get_valid_sentry_turfs(left, bottom, z, width=5, height=2, structures_to_ignore=structures_to_break) + options += get_valid_sentry_turfs(left, bottom + 2, z, width=2, height=6, structures_to_ignore=structures_to_break) + spawn_lz_sentry(pick(options), structures_to_break) + + // Bottom right + options.Cut() + options += get_valid_sentry_turfs(right-4, bottom, z, width=5, height=2, structures_to_ignore=structures_to_break) + options += get_valid_sentry_turfs(right-1, bottom + 2, z, width=2, height=6, structures_to_ignore=structures_to_break) + spawn_lz_sentry(pick(options), structures_to_break) + + // Top left + options.Cut() + options += get_valid_sentry_turfs(left, top-1, z, width=5, height=2, structures_to_ignore=structures_to_break) + options += get_valid_sentry_turfs(left, top-7, z, width=2, height=6, structures_to_ignore=structures_to_break) + spawn_lz_sentry(pick(options), structures_to_break) + + // Top right + options.Cut() + options += get_valid_sentry_turfs(right-4, top-1, z, width=5, height=2, structures_to_ignore=structures_to_break) + options += get_valid_sentry_turfs(right-1, top-7, z, width=2, height=6, structures_to_ignore=structures_to_break) + spawn_lz_sentry(pick(options), structures_to_break) + */ + +///Returns a list of non-dense turfs using the given block arguments ignoring the provided structure types +/datum/game_mode/colonialmarines/proc/get_valid_sentry_turfs(left, bottom, z, width, height, list/structures_to_ignore) + var/valid_turfs = list() + for(var/turf/turf as anything in block(left, bottom, z, left+width-1, bottom+height-1)) + if(turf.density) + continue + var/structure_blocking = FALSE + for(var/obj/structure/existing_structure in turf) + if(!existing_structure.density) + continue + if(!is_type_in_list(existing_structure, structures_to_ignore)) + structure_blocking = TRUE + break + if(structure_blocking) + continue + valid_turfs += turf + return valid_turfs + +///Spawns a droppod with a temporary defense sentry at the given turf +/datum/game_mode/colonialmarines/proc/spawn_lz_sentry(turf/target, list/structures_to_break) + var/obj/structure/droppod/equipment/sentry_holder/droppod = new(target, /obj/structure/machinery/sentry_holder/landing_zone) + droppod.special_structures_to_damage = structures_to_break + droppod.special_structure_damage = 500 + droppod.drop_time = 0 + droppod.launch(target) + +/* +///Creates an OB warning at each LZ to warn of the miasma and then spawns the miasma +/datum/game_mode/colonialmarines/proc/start_lz_hazards() + if(SSobjectives.first_drop_complete) + return // Just for sanity + INVOKE_ASYNC(src, PROC_REF(warn_lz_hazard), locate(/obj/structure/machinery/computer/shuttle/dropship/flight/lz1)) + INVOKE_ASYNC(src, PROC_REF(warn_lz_hazard), locate(/obj/structure/machinery/computer/shuttle/dropship/flight/lz2)) + addtimer(CALLBACK(src, PROC_REF(spawn_lz_hazards)), OB_TRAVEL_TIMING + 1 SECONDS) +*/ + +///Creates an OB warning at each LZ to warn of the incoming miasma +/datum/game_mode/colonialmarines/proc/warn_lz_hazard(lz) + if(!lz) + return + var/turf/target = get_turf(lz) + if(!target) + return + var/obj/structure/ob_ammo/warhead/explosive/warhead = new + warhead.name = "\improper CN20-X miasma warhead" + warhead.clear_power = 0 + warhead.clear_falloff = 400 + warhead.standard_power = 0 + warhead.standard_falloff = 30 + warhead.clear_delay = 3 + warhead.double_explosion_delay = 6 + warhead.warhead_impact(target) // This is a blocking call + playsound(target, 'sound/effects/smoke.ogg', vol=50, vary=1, sound_range=75) + +///Spawns miasma smoke in landing zones +/datum/game_mode/colonialmarines/proc/spawn_lz_hazards() + var/datum/cause_data/new_cause_data = create_cause_data("CN20-X miasma") + for(var/area/area in GLOB.all_areas) + if(!area.is_landing_zone) + continue + if(!is_ground_level(area.z)) + continue + for(var/turf/turf in area) + if(turf.density) + if(!istype(turf, /turf/closed/wall)) + continue + var/turf/closed/wall/wall = turf + if(wall.hull) + continue + lz_smoke += new /obj/effect/particle_effect/smoke/miasma(turf, null, new_cause_data) + +///Clears miasma smoke in landing zones +/datum/game_mode/colonialmarines/proc/clear_lz_hazards() + for(var/obj/effect/particle_effect/smoke/miasma/smoke as anything in lz_smoke) + smoke.time_to_live = rand(1, 5) + lz_smoke.Cut() + #define MONKEYS_TO_TOTAL_RATIO 1/32 /datum/game_mode/colonialmarines/proc/spawn_smallhosts() - if(!players_preassigned) + if(!GLOB.players_preassigned) return monkey_types = SSmapping.configs[GROUND_MAP].monkey_types @@ -134,7 +253,7 @@ if(!length(monkey_types)) return - var/amount_to_spawn = round(players_preassigned * MONKEYS_TO_TOTAL_RATIO) + var/amount_to_spawn = floor(GLOB.players_preassigned * MONKEYS_TO_TOTAL_RATIO) for(var/i in 0 to min(amount_to_spawn, length(GLOB.monkey_spawns))) var/turf/T = get_turf(pick_n_take(GLOB.monkey_spawns)) @@ -167,7 +286,7 @@ check_ground_humans() if(next_research_allocation < world.time) - chemical_data.update_credits(chemical_data.research_allocation_amount) + GLOB.chemical_data.update_credits(GLOB.chemical_data.research_allocation_amount) next_research_allocation = world.time + research_allocation_interval if(!round_finished) @@ -202,7 +321,7 @@ to_chat(M, SPAN_XENOANNOUNCE("To my children and their Queen. I sense the large doors that trap us will open in 30 seconds.")) addtimer(CALLBACK(src, PROC_REF(open_podlocks), "map_lockdown"), 300) - if(round_should_check_for_win) + if(GLOB.round_should_check_for_win) check_win() round_checkwin = 0 @@ -262,7 +381,7 @@ continue if(groundside_humans > (groundside_xenos * GROUNDSIDE_XENO_MULTIPLIER)) - SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/forsaken_xenos, TRUE, FALSE) // "Xenomorphs Groundside (Forsaken)" TIMER_COOLDOWN_START(src, COOLDOWN_HIJACK_GROUND_CHECK, 1 MINUTES) @@ -286,6 +405,7 @@ /datum/game_mode/colonialmarines/ds_first_drop(obj/docking_port/mobile/marine_dropship) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(show_blurb_uscm)), DROPSHIP_DROP_MSG_DELAY) add_current_round_status_to_end_results("First Drop") + clear_lz_hazards() /////////////////////////// //Checks to see who won/// @@ -326,10 +446,13 @@ var/datum/hive_status/HS for(var/HN in GLOB.hive_datum) HS = GLOB.hive_datum[HN] - if(HS.living_xeno_queen && !is_admin_level(HS.living_xeno_queen.loc.z)) + if(HS.living_xeno_queen && !should_block_game_interaction(HS.living_xeno_queen.loc)) //Some Queen is alive, we shouldn't end the game yet return - round_finished = MODE_INFESTATION_M_MINOR + if(length(HS.totalXenos) <= 3) + round_finished = MODE_INFESTATION_M_MAJOR + else + round_finished = MODE_INFESTATION_M_MINOR /////////////////////////////// //Checks if the round is over// @@ -350,15 +473,15 @@ if(MODE_INFESTATION_X_MAJOR) musical_track = pick('sound/theme/sad_loss1.ogg','sound/theme/sad_loss2.ogg') end_icon = "xeno_major" - if(round_statistics && round_statistics.current_map) - round_statistics.current_map.total_xeno_victories++ - round_statistics.current_map.total_xeno_majors++ + if(GLOB.round_statistics && GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_xeno_victories++ + GLOB.round_statistics.current_map.total_xeno_majors++ if(MODE_INFESTATION_M_MAJOR) musical_track = pick('sound/theme/winning_triumph1.ogg','sound/theme/winning_triumph2.ogg') end_icon = "marine_major" - if(round_statistics && round_statistics.current_map) - round_statistics.current_map.total_marine_victories++ - round_statistics.current_map.total_marine_majors++ + if(GLOB.round_statistics && GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_marine_victories++ + GLOB.round_statistics.current_map.total_marine_majors++ if(MODE_INFESTATION_X_MINOR) var/list/living_player_list = count_humans_and_xenos(get_affected_zlevels()) if(living_player_list[1] && !living_player_list[2]) // If Xeno Minor but Xenos are dead and Humans are alive, see which faction is the last standing @@ -366,37 +489,43 @@ var/living = headcount["total_headcount"] if ((headcount["WY_headcount"] / living) > MAJORITY) musical_track = pick('sound/theme/lastmanstanding_wy.ogg') + log_game("3rd party victory: Weyland-Yutani") + message_admins("3rd party victory: Weyland-Yutani") else if ((headcount["UPP_headcount"] / living) > MAJORITY) musical_track = pick('sound/theme/lastmanstanding_upp.ogg') + log_game("3rd party victory: Union of Progressive Peoples") + message_admins("3rd party victory: Union of Progressive Peoples") else if ((headcount["CLF_headcount"] / living) > MAJORITY) musical_track = pick('sound/theme/lastmanstanding_clf.ogg') + log_game("3rd party victory: Colonial Liberation Front") + message_admins("3rd party victory: Colonial Liberation Front") else if ((headcount["marine_headcount"] / living) > MAJORITY) musical_track = pick('sound/theme/neutral_melancholy2.ogg') //This is the theme song for Colonial Marines the game, fitting else musical_track = pick('sound/theme/neutral_melancholy1.ogg') end_icon = "xeno_minor" - if(round_statistics && round_statistics.current_map) - round_statistics.current_map.total_xeno_victories++ + if(GLOB.round_statistics && GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_xeno_victories++ if(MODE_INFESTATION_M_MINOR) musical_track = pick('sound/theme/neutral_hopeful1.ogg','sound/theme/neutral_hopeful2.ogg') end_icon = "marine_minor" - if(round_statistics && round_statistics.current_map) - round_statistics.current_map.total_marine_victories++ + if(GLOB.round_statistics && GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_marine_victories++ if(MODE_INFESTATION_DRAW_DEATH) end_icon = "draw" musical_track = 'sound/theme/neutral_hopeful2.ogg' - if(round_statistics && round_statistics.current_map) - round_statistics.current_map.total_draws++ + if(GLOB.round_statistics && GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_draws++ var/sound/S = sound(musical_track, channel = SOUND_CHANNEL_LOBBY) S.status = SOUND_STREAM sound_to(world, S) - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.round_result = round_finished - round_statistics.end_round_player_population = GLOB.clients.len + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.round_result = round_finished + GLOB.round_statistics.end_round_player_population = length(GLOB.clients) - round_statistics.log_round_statistics() + GLOB.round_statistics.log_round_statistics() calculate_end_statistics() show_end_statistics(end_icon) @@ -437,11 +566,11 @@ ) //organize our jobs in a readable and standard way - for(var/job in ROLES_MARINES) + for(var/job in GLOB.ROLES_MARINES) counted_humans["Squad Marines"][job] = 0 - for(var/job in ROLES_USCM - ROLES_MARINES) + for(var/job in GLOB.ROLES_USCM - GLOB.ROLES_MARINES) counted_humans["Auxiliary Marines"][job] = 0 - for(var/job in ROLES_SPECIAL) + for(var/job in GLOB.ROLES_SPECIAL) counted_humans["Non-Standard Humans"][job] = 0 var/list/counted_xenos = list() @@ -460,7 +589,7 @@ if(player_client.mob && player_client.mob.stat != DEAD) if(ishuman(player_client.mob)) if(player_client.mob.faction == FACTION_MARINE) - if(player_client.mob.job in (ROLES_MARINES)) + if(player_client.mob.job in (GLOB.ROLES_MARINES)) counted_humans["Squad Marines"][player_client.mob.job]++ else counted_humans["Auxiliary Marines"][player_client.mob.job]++ @@ -513,7 +642,7 @@ total_marines += squad_marines_job_report[job_type] total_squad_marines += squad_marines_job_report[job_type] incrementer++ - if(incrementer < squad_marines_job_report.len) + if(incrementer < length(squad_marines_job_report)) squad_marine_job_text += ", " var/auxiliary_marine_job_text = "" @@ -523,7 +652,7 @@ auxiliary_marine_job_text += "[job_type]: [auxiliary_marines_job_report[job_type]]" total_marines += auxiliary_marines_job_report[job_type] incrementer++ - if(incrementer < auxiliary_marines_job_report.len) + if(incrementer < length(auxiliary_marines_job_report)) auxiliary_marine_job_text += ", " var/total_non_standard = 0 @@ -534,7 +663,7 @@ non_standard_job_text += "[job_type]: [non_standard_job_report[job_type]]" total_non_standard += non_standard_job_report[job_type] incrementer++ - if(incrementer < non_standard_job_report.len) + if(incrementer < length(non_standard_job_report)) non_standard_job_text += ", " var/list/hive_xeno_numbers = list() @@ -548,7 +677,7 @@ hive_caste_text += "[hive_caste]: [per_hive_status[hive_caste]]" hive_amount += per_hive_status[hive_caste] incrementer++ - if(incrementer < per_hive_status.len) + if(incrementer < length(per_hive_status)) hive_caste_text += ", " if(hive_amount) hive_xeno_numbers[hive] = hive_amount diff --git a/code/game/gamemodes/colonialmarines/huntergames.dm b/code/game/gamemodes/colonialmarines/huntergames.dm index 0a819f51e4..cb924e14c1 100644 --- a/code/game/gamemodes/colonialmarines/huntergames.dm +++ b/code/game/gamemodes/colonialmarines/huntergames.dm @@ -83,8 +83,6 @@ 100; /obj/item/clothing/suit/storage/CMB \ ) -var/waiting_for_drop_votes = 0 - //Digging through this is a pain. I'm leaving it mostly alone until a full rework takes place. /datum/game_mode/huntergames @@ -105,6 +103,8 @@ var/waiting_for_drop_votes = 0 var/ticks_passed = 0 var/drops_disabled = 0 + var/waiting_for_drop_votes = FALSE + votable = FALSE // borkeds taskbar_icon = 'icons/taskbar/gml_hgames.png' @@ -212,10 +212,10 @@ var/waiting_for_drop_votes = 0 var/mob/living/carbon/human/H var/turf/picked - if(GLOB.hunter_primaries.len) + if(length(GLOB.hunter_primaries)) picked = get_turf(pick_n_take(GLOB.hunter_primaries)) else - if(GLOB.hunter_secondaries.len) + if(length(GLOB.hunter_secondaries)) picked = get_turf(pick_n_take(GLOB.hunter_secondaries)) else message_admins("There were no spawn points available for a contestant.") @@ -226,7 +226,7 @@ var/waiting_for_drop_votes = 0 if(istype(M,/mob/living/carbon/human)) //somehow? H = M - if(H.contents.len) + if(length(H.contents)) for(var/obj/item/I in H.contents) qdel(I) H.forceMove(picked) @@ -234,7 +234,7 @@ var/waiting_for_drop_votes = 0 H = new(picked) H.key = M.key - if(H.client) H.client.change_view(world_view_size) + if(H.client) H.client.change_view(GLOB.world_view_size) if(!H.mind) H.mind = new(H.key) @@ -315,7 +315,7 @@ var/waiting_for_drop_votes = 0 last_drop = world.time waiting_for_drop_votes = 1 sleep(600) - if(!supply_votes.len) + if(!length(supply_votes)) to_world(SPAN_ROUNDBODY("Nobody got anything! .. weird.")) waiting_for_drop_votes = 0 supply_votes = list() @@ -394,8 +394,8 @@ var/waiting_for_drop_votes = 0 //Announces the end of the game with all relevant information stated// ////////////////////////////////////////////////////////////////////// /datum/game_mode/huntergames/declare_completion() - if(round_statistics) - round_statistics.track_round_end() + if(GLOB.round_statistics) + GLOB.round_statistics.track_round_end() var/mob/living/carbon/winner = null for(var/mob/living/carbon/human/Q in GLOB.alive_mob_list) @@ -416,12 +416,12 @@ var/waiting_for_drop_votes = 0 to_world("There was a winner, but they died before they could receive the prize!! Bummer.") world << 'sound/misc/sadtrombone.ogg' - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.end_round_player_population = count_humans() + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.end_round_player_population = count_humans() - round_statistics.log_round_statistics() + GLOB.round_statistics.log_round_statistics() return 1 diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm index d8907911e9..2ea139fb43 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm @@ -2,14 +2,14 @@ //Global proc for checking if the game is whiskey outpost so I dont need to type if(gamemode == whiskey outpost) 50000 times /proc/Check_WO() - if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || master_mode == GAMEMODE_WHISKEY_OUTPOST) + if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || GLOB.master_mode == GAMEMODE_WHISKEY_OUTPOST) return 1 return 0 /datum/game_mode/whiskey_outpost name = GAMEMODE_WHISKEY_OUTPOST config_tag = GAMEMODE_WHISKEY_OUTPOST - required_players = 0 + required_players = 140 xeno_bypass_timer = 1 flags_round_type = MODE_NEW_SPAWN role_mappings = list( @@ -18,9 +18,9 @@ /datum/job/civilian/synthetic/whiskey = JOB_SYNTH, /datum/job/command/warrant/whiskey = JOB_CHIEF_POLICE, /datum/job/command/bridge/whiskey = JOB_SO, - /datum/job/command/tank_crew/whiskey = JOB_CREWMAN, + /datum/job/command/tank_crew/whiskey = JOB_TANK_CREW, /datum/job/command/police/whiskey = JOB_POLICE, - /datum/job/command/pilot/whiskey = JOB_PILOT, + /datum/job/command/pilot/whiskey = JOB_CAS_PILOT, /datum/job/logistics/requisition/whiskey = JOB_CHIEF_REQUISITION, /datum/job/civilian/professor/whiskey = JOB_CMO, /datum/job/civilian/doctor/whiskey = JOB_DOCTOR, @@ -76,12 +76,16 @@ hardcore = TRUE votable = FALSE - vote_cycle = 25 // approx. once every 5 days, if it wins the vote + vote_cycle = 75 // approx. once every 5 days, if it wins the vote taskbar_icon = 'icons/taskbar/gml_wo.png' +/datum/game_mode/whiskey_outpost/New() + . = ..() + required_players = CONFIG_GET(number/whiskey_required_players) + /datum/game_mode/whiskey_outpost/get_roles_list() - return ROLES_WO + return GLOB.ROLES_WO /datum/game_mode/whiskey_outpost/announce() return 1 @@ -178,7 +182,7 @@ if(checkwin_counter >= 10) //Only check win conditions every 10 ticks. if(xeno_wave == WO_MAX_WAVE && last_wave_time == 0) last_wave_time = world.time - if(!finished && round_should_check_for_win && last_wave_time != 0) + if(!finished && GLOB.round_should_check_for_win && last_wave_time != 0) check_win() checkwin_counter = 0 return 0 @@ -190,16 +194,16 @@ announce_xeno_wave(wave) if(xeno_wave == 7) //Wave when Marines get reinforcements! - get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE) + get_specific_call(/datum/emergency_call/wo, FALSE, TRUE) // "Marine Reinforcements (Squad)" xeno_wave = min(xeno_wave + 1, WO_MAX_WAVE) /datum/game_mode/whiskey_outpost/proc/announce_xeno_wave(datum/whiskey_outpost_wave/wave_data) if(!istype(wave_data)) return - if(wave_data.command_announcement.len > 0) + if(length(wave_data.command_announcement) > 0) marine_announcement(wave_data.command_announcement[1], wave_data.command_announcement[2]) - if(wave_data.sound_effect.len > 0) + if(length(wave_data.sound_effect) > 0) playsound_z(SSmapping.levels_by_trait(ZTRAIT_GROUND), pick(wave_data.sound_effect)) //CHECK WIN @@ -212,8 +216,8 @@ finished = 2 //Marine win /datum/game_mode/whiskey_outpost/proc/disablejoining() - for(var/i in RoleAuthority.roles_by_name) - var/datum/job/J = RoleAuthority.roles_by_name[i] + for(var/i in GLOB.RoleAuthority.roles_by_name) + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[i] // If the job has unlimited job slots, We set the amount of slots to the amount it has at the moment this is called if (J.spawn_positions < 0) @@ -254,20 +258,20 @@ //Announces the end of the game with all relevant information stated// ////////////////////////////////////////////////////////////////////// /datum/game_mode/whiskey_outpost/declare_completion() - if(round_statistics) - round_statistics.track_round_end() + if(GLOB.round_statistics) + GLOB.round_statistics.track_round_end() if(finished == 1) log_game("Round end result - xenos won") - to_world(SPAN_ROUND_HEADER("The Xenos have succesfully defended their hive from colonization.")) + to_world(SPAN_ROUND_HEADER("The Xenos have successfully defended their hive from colonization.")) to_world(SPAN_ROUNDBODY("Well done, you've secured LV-624 for the hive!")) to_world(SPAN_ROUNDBODY("It will be another five years before the USCM returns to the Neroid Sector, with the arrival of the 2nd 'Falling Falcons' Battalion and the USS Almayer.")) to_world(SPAN_ROUNDBODY("The xenomorph hive on LV-624 remains unthreatened until then...")) world << sound('sound/misc/Game_Over_Man.ogg') - if(round_statistics) - round_statistics.round_result = MODE_INFESTATION_X_MAJOR - if(round_statistics.current_map) - round_statistics.current_map.total_xeno_victories++ - round_statistics.current_map.total_xeno_majors++ + if(GLOB.round_statistics) + GLOB.round_statistics.round_result = MODE_INFESTATION_X_MAJOR + if(GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_xeno_victories++ + GLOB.round_statistics.current_map.total_xeno_majors++ else if(finished == 2) log_game("Round end result - marines won") @@ -276,26 +280,26 @@ to_world(SPAN_ROUNDBODY("Eventually, the Dust Raiders secure LV-624 and the entire Neroid Sector in 2182, pacifiying it and establishing peace in the sector for decades to come.")) to_world(SPAN_ROUNDBODY("The USS Almayer and the 2nd 'Falling Falcons' Battalion are never sent to the sector and are spared their fate in 2186.")) world << sound('sound/misc/hell_march.ogg') - if(round_statistics) - round_statistics.round_result = MODE_INFESTATION_M_MAJOR - if(round_statistics.current_map) - round_statistics.current_map.total_marine_victories++ - round_statistics.current_map.total_marine_majors++ + if(GLOB.round_statistics) + GLOB.round_statistics.round_result = MODE_INFESTATION_M_MAJOR + if(GLOB.round_statistics.current_map) + GLOB.round_statistics.current_map.total_marine_victories++ + GLOB.round_statistics.current_map.total_marine_majors++ else log_game("Round end result - no winners") to_world(SPAN_ROUND_HEADER("NOBODY WON!")) to_world(SPAN_ROUNDBODY("How? Don't ask me...")) world << 'sound/misc/sadtrombone.ogg' - if(round_statistics) - round_statistics.round_result = MODE_INFESTATION_DRAW_DEATH + if(GLOB.round_statistics) + GLOB.round_statistics.round_result = MODE_INFESTATION_DRAW_DEATH - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.end_round_player_population = GLOB.clients.len + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.end_round_player_population = length(GLOB.clients) - round_statistics.log_round_statistics() + GLOB.round_statistics.log_round_statistics() round_finished = 1 @@ -481,7 +485,7 @@ if(crate) crate.storage_capacity = 60 - if(randomitems.len) + if(length(randomitems)) for(var/i = 0; i < choosemax; i++) var/path = pick(randomitems) var/obj/I = new path(crate) @@ -516,8 +520,7 @@ return if(user.is_mob_incapacitated()) return - if(ismaintdrone(usr) || \ - istype(usr, /mob/living/carbon/xenomorph)) + if(istype(usr, /mob/living/carbon/xenomorph)) to_chat(usr, SPAN_DANGER("You don't have the dexterity to do this!")) return if(working) @@ -533,7 +536,7 @@ for(var/obj/O in T) if(istype(O,/obj/structure/closet/crate)) var/obj/structure/closet/crate/C = O - if(C.contents.len) + if(length(C.contents)) to_chat(user, SPAN_DANGER("[O] must be emptied before it can be recycled")) continue new /obj/item/stack/sheet/metal(get_step(src,dir)) @@ -611,6 +614,7 @@ "Explosives and grenades", "Rocket ammo", "Sniper ammo", + "Anti-Material Sniper ammo", "Pyrotechnician tanks", "Scout ammo", "Smartgun ammo", @@ -631,14 +635,17 @@ if("Sniper ammo") supply_drop = 3 to_chat(usr, SPAN_NOTICE("Sniper ammo will now drop!")) - if("Explosives and grenades") + if("Anti-Material Sniper ammo") supply_drop = 4 + to_chat(usr, SPAN_NOTICE("Anti-Material Sniper ammo will now drop!")) + if("Explosives and grenades") + supply_drop = 5 to_chat(usr, SPAN_NOTICE("Explosives and grenades will now drop!")) if("Pyrotechnician tanks") - supply_drop = 5 + supply_drop = 6 to_chat(usr, SPAN_NOTICE("Pyrotechnician tanks will now drop!")) if("Scout ammo") - supply_drop = 6 + supply_drop = 7 to_chat(usr, SPAN_NOTICE("Scout ammo will now drop!")) else return @@ -731,15 +738,21 @@ /obj/item/ammo_magazine/sniper, /obj/item/ammo_magazine/sniper/incendiary, /obj/item/ammo_magazine/sniper/flak) - if(4) // Give them explosives + Grenades for the Grenade spec. Might be too many grenades, but we'll find out. + if(4) //Amr sniper ammo. + spawnitems = list(/obj/item/ammo_magazine/sniper/anti_materiel, + /obj/item/ammo_magazine/sniper/anti_materiel, + /obj/item/ammo_magazine/sniper/anti_materiel, + /obj/item/ammo_magazine/sniper/anti_materiel, + /obj/item/ammo_magazine/sniper/anti_materiel) + if(5) // Give them explosives + Grenades for the Grenade spec. Might be too many grenades, but we'll find out. spawnitems = list(/obj/item/storage/box/explosive_mines, /obj/item/storage/belt/grenade/full) - if(5) // Pyrotech + if(6) // Pyrotech var/fuel = pick(/obj/item/ammo_magazine/flamer_tank/large/B, /obj/item/ammo_magazine/flamer_tank/large/X) spawnitems = list(/obj/item/ammo_magazine/flamer_tank/large, /obj/item/ammo_magazine/flamer_tank/large, fuel) - if(6) // Scout + if(7) // Scout spawnitems = list(/obj/item/ammo_magazine/rifle/m4ra/custom, /obj/item/ammo_magazine/rifle/m4ra/custom, /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, @@ -775,7 +788,7 @@ return /obj/item/storage/box/attachments/update_icon() - if(!contents.len) + if(!length(contents)) var/turf/T = get_turf(src) if(T) new /obj/item/paper/crumpled(T) diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost/equipping.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost/equipping.dm index eb3e46a268..d5ff07391b 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost/equipping.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost/equipping.dm @@ -76,7 +76,7 @@ You must lead his Honor guard, his elite unit of marines, to protect the command gear_preset = /datum/equipment_preset/wo/vhg /datum/job/command/bridge/whiskey/generate_entry_message(mob/living/carbon/human/H) - . = {"You were assigned to guard the commander in this hostile enviroment; that hasn't changed. Ensure your extra training and equipment isn't wasted! + . = {"You were assigned to guard the commander in this hostile environment; that hasn't changed. Ensure your extra training and equipment isn't wasted! You've survived through enough battles that you've been entrusted with more training, and can use overwatch consoles, as well as give orders. You're expected to defend not only the commander, but the bunker at large; leave the outside defenses to the marines. Glory to the commander. Glory to the USCM."} @@ -90,7 +90,7 @@ Glory to the commander. Glory to the USCM."} gear_preset = /datum/equipment_preset/wo/hgs /datum/job/command/tank_crew/whiskey/generate_entry_message(mob/living/carbon/human/H) - . = {"You were assigned to guard the commander in this hostile enviroment; that hasn't changed. Ensure your extra training and equipment isn't wasted! + . = {"You were assigned to guard the commander in this hostile environment; that hasn't changed. Ensure your extra training and equipment isn't wasted! You're expected to defend not only the commander, but the bunker at large; leave the outside defenses to the marines. You've been through much, and as such, have been given special-weapons training. Use it well. Glory to the commander. Glory to the USCM."} @@ -104,7 +104,7 @@ Glory to the commander. Glory to the USCM."} gear_preset = /datum/equipment_preset/wo/hg /datum/job/command/police/whiskey/generate_entry_message(mob/living/carbon/human/H) - . = {"You were assigned to guard the commander in this hostile enviroment; that hasn't changed. Ensure your extra training and equipment isn't wasted! + . = {"You were assigned to guard the commander in this hostile environment; that hasn't changed. Ensure your extra training and equipment isn't wasted! You're expected to defend not only the commander, but the bunker at large; leave the outside defenses to the marines. Glory to the commander. Glory to the USCM."} diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost/skills.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost/skills.dm index a5126627ad..746e6ed53c 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost/skills.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost/skills.dm @@ -35,7 +35,7 @@ /datum/skills/honor_guard/lead name = "Honor Guard Squad Leader" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, //to fix CIC apc. + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, //to fix CIC apc. SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, @@ -49,7 +49,7 @@ /datum/skills/mortar_crew name = "Mortar Crew" skills = list( - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, SKILL_JTAC = SKILL_JTAC_BEGINNER, SKILL_POWERLOADER = SKILL_POWERLOADER_MASTER, diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm index ae272da886..68b2a51e76 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost/whiskey_output_waves.dm @@ -32,7 +32,7 @@ for(var/mob/living/carbon/xenomorph/X as anything in GLOB.living_xeno_list) var/area/A = get_area(X) - if(is_admin_level(X.z) && (!A || !(A.flags_area & AREA_ALLOW_XENO_JOIN)) || X.aghosted) continue //xenos on admin z level and aghosted ones don't count + if(should_block_game_interaction(X) && (!A || !(A.flags_area & AREA_ALLOW_XENO_JOIN)) || X.aghosted) continue //xenos on admin z level and aghosted ones don't count if(istype(X) && !X.client) if((X.away_timer >= XENO_LEAVE_TIMER) || (islarva(X) && X.away_timer >= XENO_LEAVE_TIMER_LARVA)) available_xenos += X @@ -43,7 +43,7 @@ available_xenos += unique_xenos - if(!available_xenos.len) + if(!length(available_xenos)) to_chat(xeno_candidate, SPAN_WARNING("There aren't any available xenomorphs.")) return FALSE @@ -52,12 +52,12 @@ if(!xeno_candidate) return FALSE - if(RoleAuthority.castes_by_name[userInput]) + if(GLOB.RoleAuthority.castes_by_name[userInput]) if(!(userInput in xeno_pool)) to_chat(xeno_candidate, SPAN_WARNING("The caste type you chose was occupied by someone else.")) return FALSE var/spawn_loc = pick(xeno_spawns) - var/xeno_type = RoleAuthority.get_caste_by_text(userInput) + var/xeno_type = GLOB.RoleAuthority.get_caste_by_text(userInput) var/mob/living/carbon/xenomorph/new_xeno = new xeno_type(spawn_loc) if(new_xeno.hive.construction_allowed == NORMAL_XENO) new_xeno.hive.construction_allowed = XENO_QUEEN @@ -198,7 +198,7 @@ wave_castes = list(XENO_CASTE_BURROWER) wave_type = WO_STATIC_WAVE number_of_xenos = 3 - command_announcement = list("First Lieutenant Ike Saker, Executive Officer of Captain Naiche, speaking. The Captain is still trying to try and get off world contact. An engineer platoon managed to destroy the main entrance into this valley this should give you a short break while the aliens find another way in. We are receiving reports of seismic waves occuring nearby, there might be creatures burrowing underground, keep an eye on your defenses. I have also received word that marines from an overrun outpost are evacuating to you and will help you. I used to be stationed with them, they are top notch!", "First Lieutenant Ike Saker, 3rd Battalion Command, LV-624 Garrison") + command_announcement = list("First Lieutenant Ike Saker, Executive Officer of Captain Naiche, speaking. The Captain is still trying to try and get off world contact. An engineer platoon managed to destroy the main entrance into this valley this should give you a short break while the aliens find another way in. We are receiving reports of seismic waves occurring nearby, there might be creatures burrowing underground, keep an eye on your defenses. I have also received word that marines from an overrun outpost are evacuating to you and will help you. I used to be stationed with them, they are top notch!", "First Lieutenant Ike Saker, 3rd Battalion Command, LV-624 Garrison") /datum/whiskey_outpost_wave/wave8 wave_number = 8 diff --git a/code/game/gamemodes/colonialmarines/xenovsxeno.dm b/code/game/gamemodes/colonialmarines/xenovsxeno.dm index 0e3107858b..e1672f3627 100644 --- a/code/game/gamemodes/colonialmarines/xenovsxeno.dm +++ b/code/game/gamemodes/colonialmarines/xenovsxeno.dm @@ -24,28 +24,28 @@ votable = FALSE // broken /* Pre-pre-startup */ -/datum/game_mode/xenovs/can_start() +/datum/game_mode/xenovs/can_start(bypass_checks = FALSE) for(var/hivename in SSmapping.configs[GROUND_MAP].xvx_hives) - if(readied_players > SSmapping.configs[GROUND_MAP].xvx_hives[hivename]) + if(GLOB.readied_players > SSmapping.configs[GROUND_MAP].xvx_hives[hivename]) hives += hivename - xeno_starting_num = readied_players - if(!initialize_starting_xenomorph_list(hives, TRUE)) + xeno_starting_num = GLOB.readied_players + if(!initialize_starting_xenomorph_list(hives, bypass_checks)) hives.Cut() - return + return FALSE return TRUE /datum/game_mode/xenovs/announce() to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDHEADER("The current map is - [SSmapping.configs[GROUND_MAP].map_name]!")) /datum/game_mode/xenovs/get_roles_list() - return ROLES_XENO + return GLOB.ROLES_XENO /* Pre-setup */ /datum/game_mode/xenovs/pre_setup() monkey_types = SSmapping.configs[GROUND_MAP].monkey_types if(monkey_amount) - if(monkey_types.len) - for(var/i = min(round(monkey_amount*GLOB.clients.len), GLOB.monkey_spawns.len), i > 0, i--) + if(length(monkey_types)) + for(var/i = min(floor(monkey_amount*length(GLOB.clients)), length(GLOB.monkey_spawns)), i > 0, i--) var/turf/T = get_turf(pick_n_take(GLOB.monkey_spawns)) var/monkey_to_spawn = pick(monkey_types) @@ -91,7 +91,7 @@ initialize_post_xenomorph_list(GLOB.xeno_hive_spawns) round_time_lobby = world.time - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(!(A.is_resin_allowed)) A.is_resin_allowed = TRUE @@ -154,7 +154,7 @@ var/mob/living/carbon/xenomorph/larva/L = new(xeno_turf, null, hivenumber) ghost_mind.transfer_to(L) -/datum/game_mode/xenovs/pick_queen_spawn(datum/mind/ghost_mind, hivenumber = XENO_HIVE_NORMAL) +/datum/game_mode/xenovs/pick_queen_spawn(mob/player, hivenumber = XENO_HIVE_NORMAL) . = ..() if(!.) return // Spawn additional hive structures @@ -192,7 +192,7 @@ qdel(C) hive_cores = list() - if(round_should_check_for_win) + if(GLOB.round_should_check_for_win) check_win() round_checkwin = 0 @@ -262,12 +262,12 @@ var/sound/S = sound(musical_track, channel = SOUND_CHANNEL_LOBBY) S.status = SOUND_STREAM sound_to(world, S) - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.end_round_player_population = GLOB.clients.len + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.end_round_player_population = length(GLOB.clients) - round_statistics.log_round_statistics() + GLOB.round_statistics.log_round_statistics() declare_completion_announce_xenomorphs() calculate_end_statistics() @@ -277,11 +277,11 @@ return TRUE /datum/game_mode/xenovs/announce_ending() - if(round_statistics) - round_statistics.track_round_end() + if(GLOB.round_statistics) + GLOB.round_statistics.track_round_end() log_game("Round end result: [round_finished]") to_chat_spaced(world, margin_top = 2, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDHEADER("|Round Complete|")) - to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDBODY("Thus ends the story of the battling hives on [SSmapping.configs[GROUND_MAP].map_name]. [round_finished]\nThe game-mode was: [master_mode]!\n[CONFIG_GET(string/endofroundblurb)]")) + to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDBODY("Thus ends the story of the battling hives on [SSmapping.configs[GROUND_MAP].map_name]. [round_finished]\nThe game-mode was: [GLOB.master_mode]!\n[CONFIG_GET(string/endofroundblurb)]")) // for the toolbox /datum/game_mode/xenovs/end_round_message() diff --git a/code/game/gamemodes/events.dm b/code/game/gamemodes/events.dm index db8f84d53f..1039d49539 100644 --- a/code/game/gamemodes/events.dm +++ b/code/game/gamemodes/events.dm @@ -3,7 +3,7 @@ /proc/carp_migration() // -- Darem //sleep(100) spawn(rand(300, 600)) //Delayed announcements to keep the crew on their toes. - marine_announcement("Unknown biological entities have been detected near [station_name], please stand-by.", "Lifesign Alert", 'sound/AI/commandreport.ogg') + marine_announcement("Unknown biological entities have been detected near [MAIN_SHIP_NAME], please stand-by.", "Lifesign Alert", 'sound/AI/commandreport.ogg') /proc/lightsout(isEvent = 0, lightsoutAmount = 1,lightsoutRange = 25) //leave lightsoutAmount as 0 to break ALL lights if(isEvent) @@ -13,7 +13,7 @@ return else - for(var/obj/structure/machinery/power/apc/apc in machines) + for(var/obj/structure/machinery/power/apc/apc in GLOB.machines) apc.overload_lighting() return diff --git a/code/game/gamemodes/events/power_failure.dm b/code/game/gamemodes/events/power_failure.dm index 7905c19fac..c8b80efe9b 100644 --- a/code/game/gamemodes/events/power_failure.dm +++ b/code/game/gamemodes/events/power_failure.dm @@ -2,7 +2,7 @@ /proc/power_failure(announce = 1) var/ship_zlevels = SSmapping.levels_by_trait(ZTRAIT_MARINE_MAIN_SHIP) - for(var/obj/structure/machinery/power/smes/S in machines) + for(var/obj/structure/machinery/power/smes/S in GLOB.machines) if(!is_mainship_level(S.z)) continue S.last_charge = S.charge @@ -14,7 +14,7 @@ S.updateicon() S.power_change() - for(var/obj/structure/machinery/power/apc/C in machines) + for(var/obj/structure/machinery/power/apc/C in GLOB.machines) if(!is_mainship_level(C.z) && C.cell) C.cell.charge = 0 @@ -25,7 +25,7 @@ marine_announcement("Abnormal activity detected in the ship power system. As a precaution, power must be shut down for an indefinite duration.", "Critical Power Failure", 'sound/AI/poweroff.ogg') /proc/power_restore(announce = 1) - for(var/obj/structure/machinery/power/smes/S in machines) + for(var/obj/structure/machinery/power/smes/S in GLOB.machines) if(!is_mainship_level(S.z)) continue S.charge = S.capacity @@ -34,7 +34,7 @@ S.updateicon() S.power_change() - for(var/obj/structure/machinery/power/apc/C in machines) + for(var/obj/structure/machinery/power/apc/C in GLOB.machines) if(C.cell && is_mainship_level(C.z)) C.cell.charge = C.cell.maxcharge @@ -44,7 +44,7 @@ /proc/power_restore_quick(announce = 1) - for(var/obj/structure/machinery/power/smes/S in machines) + for(var/obj/structure/machinery/power/smes/S in GLOB.machines) if(!is_mainship_level(S.z)) // Ship only continue S.charge = S.capacity @@ -59,14 +59,14 @@ /proc/power_restore_everything(announce = 1) - for(var/obj/structure/machinery/power/smes/S in machines) + for(var/obj/structure/machinery/power/smes/S in GLOB.machines) S.charge = S.capacity S.output_level = S.output_level_max S.outputting = 1 S.updateicon() S.power_change() - for(var/obj/structure/machinery/power/apc/C in machines) + for(var/obj/structure/machinery/power/apc/C in GLOB.machines) if(C.cell) C.cell.charge = C.cell.maxcharge @@ -74,16 +74,15 @@ if(announce) marine_announcement("Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg') -/proc/power_restore_ship_reactors(announce = 1) - for(var/obj/structure/machinery/power/fusion_engine/FE in machines) - FE.buildstate = 0 - FE.is_on = 1 - FE.fusion_cell = new - FE.power_gen_percent = 98 - FE.update_icon() - FE.start_processing() - FE.power_change() +/proc/power_restore_ship_reactors(announce = TRUE) + for(var/obj/structure/machinery/power/reactor/reactor in GLOB.machines) + if(!is_mainship_level(reactor.z)) //Only ship reactors should be repaired + continue + reactor.buildstate = 0 + if(reactor.require_fusion_cell && !reactor.fusion_cell) + reactor.fusion_cell = new + reactor.power_gen_percent = 98 + reactor.start_functioning(TRUE) - sleep(100) if(announce) - marine_announcement("Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg') + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(marine_announcement), "Power has been restored. Reason: Unknown.", "Power Systems Nominal", 'sound/AI/poweron.ogg'), 10 SECONDS) diff --git a/code/game/gamemodes/extended/extended.dm b/code/game/gamemodes/extended/extended.dm index f00125cc8f..f5b64571f9 100644 --- a/code/game/gamemodes/extended/extended.dm +++ b/code/game/gamemodes/extended/extended.dm @@ -12,7 +12,7 @@ to_world("The current game mode is - Extended!") /datum/game_mode/extended/get_roles_list() - return ROLES_USCM + return GLOB.ROLES_USCM /datum/game_mode/extended/post_setup() initialize_post_marine_gear_list() @@ -24,7 +24,7 @@ /datum/game_mode/extended/process() . = ..() if(next_research_allocation < world.time) - chemical_data.update_credits(chemical_data.research_allocation_amount) + GLOB.chemical_data.update_credits(GLOB.chemical_data.research_allocation_amount) next_research_allocation = world.time + research_allocation_interval /datum/game_mode/extended/check_finished() @@ -39,11 +39,11 @@ var/musical_track = pick('sound/theme/neutral_hopeful1.ogg','sound/theme/neutral_hopeful2.ogg') world << musical_track - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.end_round_player_population = GLOB.clients.len - round_statistics.log_round_statistics() + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.end_round_player_population = length(GLOB.clients) + GLOB.round_statistics.log_round_statistics() calculate_end_statistics() declare_completion_announce_predators() diff --git a/code/game/gamemodes/extended/extended_clash.dm b/code/game/gamemodes/extended/extended_clash.dm index 04077de277..e0e526d91a 100644 --- a/code/game/gamemodes/extended/extended_clash.dm +++ b/code/game/gamemodes/extended/extended_clash.dm @@ -6,7 +6,7 @@ taskbar_icon = 'icons/taskbar/gml_hvh.png' /datum/game_mode/extended/faction_clash/get_roles_list() - return ROLES_FACTION_CLASH + return GLOB.ROLES_FACTION_CLASH /datum/game_mode/extended/faction_clash/post_setup() . = ..() diff --git a/code/game/gamemodes/extended/infection.dm b/code/game/gamemodes/extended/infection.dm index a6b909022a..1f641917d5 100644 --- a/code/game/gamemodes/extended/infection.dm +++ b/code/game/gamemodes/extended/infection.dm @@ -15,7 +15,7 @@ to_world("Don't ahelp asking for specific details, you won't get them.") /datum/game_mode/infection/get_roles_list() - return ROLES_USCM + return GLOB.ROLES_USCM /datum/game_mode/infection/pre_setup() return ..() @@ -45,9 +45,9 @@ if(transform_survivor(survivor) == 1) survivors -= survivor -/datum/game_mode/infection/can_start() +/datum/game_mode/infection/can_start(bypass_checks = FALSE) initialize_starting_survivor_list() - return 1 + return TRUE //We don't actually need survivors to play, so long as aliens are present. /datum/game_mode/infection/proc/initialize_starting_survivor_list() @@ -61,7 +61,7 @@ possible_synth_survivors -= A continue - if(RoleAuthority.roles_whitelist[ckey(A.key)] & WHITELIST_SYNTHETIC) + if(A.current.client?.check_whitelist_status(WHITELIST_SYNTHETIC)) if(A in possible_survivors) continue //they are already applying to be a survivor else @@ -71,16 +71,16 @@ possible_synth_survivors -= A possible_survivors = shuffle(possible_survivors) //Shuffle them up a bit - if(possible_survivors.len) //We have some, it looks like. + if(length(possible_survivors)) //We have some, it looks like. for(var/datum/mind/A in possible_survivors) //Strip out any xenos first so we don't double-dip. if(A.roundstart_picked) possible_survivors -= A - if(possible_survivors.len) //We may have stripped out all the contendors, so check again. + if(length(possible_survivors)) //We may have stripped out all the contendors, so check again. var/i = surv_starting_num var/datum/mind/new_survivor while(i > 0) - if(!possible_survivors.len) + if(!length(possible_survivors)) break //Ran out of candidates! Can't have a null pick(), so just stick with what we have. new_survivor = pick(possible_survivors) if(!new_survivor) @@ -120,11 +120,11 @@ var/musical_track = pick('sound/theme/sad_loss1.ogg','sound/theme/sad_loss2.ogg') world << musical_track - if(round_statistics) - round_statistics.game_mode = name - round_statistics.round_length = world.time - round_statistics.end_round_player_population = GLOB.clients.len - round_statistics.log_round_statistics() + if(GLOB.round_statistics) + GLOB.round_statistics.game_mode = name + GLOB.round_statistics.round_length = world.time + GLOB.round_statistics.end_round_player_population = length(GLOB.clients) + GLOB.round_statistics.log_round_statistics() declare_completion_announce_xenomorphs() declare_completion_announce_predators() diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 823ba03f35..2679726096 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -11,9 +11,9 @@ * */ -var/global/datum/entity/statistic/round/round_statistics -var/global/list/datum/entity/player_entity/player_entities = list() -var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracking_ids to tacbinos and signal flares +GLOBAL_DATUM(round_statistics, /datum/entity/statistic/round) +GLOBAL_LIST_INIT_TYPED(player_entities, /datum/entity/player_entity, list()) +GLOBAL_VAR_INIT(cas_tracking_id_increment, 0) //this var used to assign unique tracking_ids to tacbinos and signal flares /datum/game_mode var/name = "invalid" var/config_tag = null @@ -50,19 +50,20 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki ///can_start() ///Checks to see if the game can be setup and ran with the current number of players or whatnot. -/datum/game_mode/proc/can_start() - var/playerC = 0 +/datum/game_mode/proc/can_start(bypass_checks = FALSE) + if(bypass_checks) + return TRUE + var/players = 0 for(var/mob/new_player/player in GLOB.new_player_list) - if((player.client)&&(player.ready)) - playerC++ - - if(master_mode=="secret") - if(playerC >= required_players_secret) - return 1 + if(player.client && player.ready) + players++ + if(GLOB.master_mode == "secret") + if(players >= required_players_secret) + return TRUE else - if(playerC >= required_players) - return 1 - return 0 + if(players >= required_players) + return TRUE + return FALSE ///pre_setup() @@ -107,7 +108,7 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki log_game("Round started at [time2text(world.realtime)]") log_game("Operation time at round start is [worldtime2text()]") if(SSticker.mode) - log_game("Game mode set to [SSticker.mode]") + log_game("Game mode set to [SSticker.mode] on the [SSmapping.configs[GROUND_MAP].map_name] map") log_game("Server IP: [world.internet_address]:[world.port]") return TRUE @@ -129,15 +130,15 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki return /datum/game_mode/proc/announce_ending() - if(round_statistics) - round_statistics.track_round_end() + if(GLOB.round_statistics) + GLOB.round_statistics.track_round_end() log_game("Round end result: [round_finished]") to_chat_spaced(world, margin_top = 2, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDHEADER("|Round Complete|")) - to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDBODY("Thus ends the story of the brave men and women of the [MAIN_SHIP_NAME] and their struggle on [SSmapping.configs[GROUND_MAP].map_name].\nThe game-mode was: [master_mode]!\n[CONFIG_GET(string/endofroundblurb)]")) + to_chat_spaced(world, type = MESSAGE_TYPE_SYSTEM, html = SPAN_ROUNDBODY("Thus ends the story of the brave men and women of the [MAIN_SHIP_NAME] and their struggle on [SSmapping.configs[GROUND_MAP].map_name].\nThe game-mode was: [GLOB.master_mode]!\n[CONFIG_GET(string/endofroundblurb)]")) /datum/game_mode/proc/declare_completion() - if(round_statistics) - round_statistics.track_round_end() + if(GLOB.round_statistics) + GLOB.round_statistics.track_round_end() var/clients = 0 var/surviving_humans = 0 var/surviving_total = 0 @@ -181,7 +182,7 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki record_playtime(M.client.player_data, M.job, type) /datum/game_mode/proc/show_end_statistics(icon_state) - round_statistics.update_panel_data() + GLOB.round_statistics.update_panel_data() for(var/mob/M in GLOB.player_list) if(M.client) give_action(M, /datum/action/show_round_statistics, null, icon_state) @@ -226,7 +227,7 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki var/list/heads = list() for(var/i in GLOB.alive_human_list) var/mob/living/carbon/human/player = i - if(player.stat!=2 && player.mind && (player.job in ROLES_COMMAND )) + if(player.stat!=2 && player.mind && (player.job in GLOB.ROLES_COMMAND )) heads += player.mind return heads @@ -237,7 +238,7 @@ var/global/cas_tracking_id_increment = 0 //this var used to assign unique tracki /datum/game_mode/proc/get_all_heads() var/list/heads = list() for(var/mob/player in GLOB.mob_list) - if(player.mind && (player.job in ROLES_COMMAND )) + if(player.mind && (player.job in GLOB.ROLES_COMMAND )) heads += player.mind return heads diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index eb4ffb2f55..602ced4d32 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -61,7 +61,7 @@ gen_access() if(!islist(req_access)) return 1//something's very wrong var/L[] = req_access - if(!L.len && (!req_one_access || !req_one_access.len)) return 1//no requirements + if(!length(L) && !LAZYLEN(req_one_access)) return 1//no requirements if(!I) return var/list/A = I.GetAccess() @@ -69,7 +69,7 @@ if(!(i in A)) return FALSE//doesn't have this access - if(req_one_access && req_one_access.len) + if(LAZYLEN(req_one_access)) for(var/i in req_one_access) if(i in A) return TRUE//has an access from the single access list @@ -80,14 +80,14 @@ gen_access() if(!req_access && !req_one_access) return 1 if(!islist(req_access)) return 1 - if(!req_access.len && !islist(req_one_access)) + if(!length(req_access) && !islist(req_one_access)) return TRUE - if(!req_access.len && (!req_one_access || !req_one_access.len)) return 1 + if(!length(req_access) && !LAZYLEN(req_one_access)) return 1 if(!islist(L)) return var/i for(i in req_access) if(!(i in L)) return //doesn't have this access - if(req_one_access && req_one_access.len) + if(LAZYLEN(req_one_access)) for(i in req_one_access) if(i in L) return 1//has an access from the single access list return @@ -212,6 +212,7 @@ ACCESS_WY_PMC_TL, ACCESS_WY_ARMORY, ACCESS_WY_SECRETS, + ACCESS_WY_DATABASE, ACCESS_WY_LEADERSHIP, ACCESS_WY_SENIOR_LEAD, ) + get_access(ACCESS_LIST_COLONIAL_ALL) @@ -236,6 +237,7 @@ ACCESS_WY_PMC, ACCESS_WY_PMC_TL, ACCESS_WY_ARMORY, + ACCESS_WY_DATABASE, ACCESS_WY_LEADERSHIP, ACCESS_WY_SENIOR_LEAD, ) + get_access(ACCESS_LIST_COLONIAL_ALL) @@ -459,6 +461,40 @@ if(ACCESS_ARES_DEBUG) return "AI Debug" +/proc/get_region_accesses_wy(code) + switch(code) + if(0)//Everything + return get_access(ACCESS_LIST_WY_ALL) + if(1)//Corporate General + return list(ACCESS_WY_GENERAL, ACCESS_WY_COLONIAL, ACCESS_WY_EXEC) + if(2)//Corporate Security + return list(ACCESS_WY_SECURITY, ACCESS_WY_ARMORY) + if(3)//Corporate Departments + return list(ACCESS_WY_MEDICAL, ACCESS_WY_ENGINEERING, ACCESS_WY_FLIGHT, ACCESS_WY_RESEARCH) + if(4)//Corporate Leadership + return list(ACCESS_WY_LEADERSHIP, ACCESS_WY_SENIOR_LEAD, ACCESS_WY_SECRETS, ACCESS_WY_DATABASE) + if(5)//PMCs + return list(ACCESS_WY_PMC, ACCESS_WY_PMC_TL, ACCESS_WY_ARMORY) + if(6)//Civilian + return get_access(ACCESS_LIST_COLONIAL_ALL) + +/proc/get_region_accesses_name_wy(code) + switch(code) + if(0) + return "All" + if(1) + return "Corporate" // Security + if(2) + return "Corporate Security" // Medbay + if(3) + return "Corporate Departments" // Research + if(4) + return "Corporate Leadership" // Engineering + if(5) + return "Corporate PMCs" // Command + if(6) + return "Civilian" // Civilian + /proc/get_weyland_access_desc(A) switch(A) if(ACCESS_WY_GENERAL) @@ -476,7 +512,7 @@ if(ACCESS_WY_RESEARCH) return "Wey-Yu Research" if(ACCESS_WY_EXEC) - return "Wey-Yu Corporate" + return "Wey-Yu Executive" if(ACCESS_WY_PMC) return "Wey-Yu PMC" if(ACCESS_WY_PMC_TL) @@ -485,7 +521,23 @@ return "Wey-Yu Armory" if(ACCESS_WY_SECRETS) return "Wey-Yu HighSec" + if(ACCESS_WY_DATABASE) + return "Wey-Yu Database" if(ACCESS_WY_LEADERSHIP) return "Wey-Yu Leadership" if(ACCESS_WY_SENIOR_LEAD) return "Wey-Yu Senior Leadership" + if(ACCESS_CIVILIAN_RESEARCH) + return "Civilian Research" + if(ACCESS_CIVILIAN_COMMAND) + return "Civilian Command" + if(ACCESS_CIVILIAN_MEDBAY) + return "Civilian Medbay" + if(ACCESS_CIVILIAN_LOGISTICS) + return "Civilian Logistics" + if(ACCESS_CIVILIAN_ENGINEERING) + return "Civilian Engineering" + if(ACCESS_CIVILIAN_BRIG) + return "Civilian Brig" + if(ACCESS_CIVILIAN_PUBLIC) + return "Civilian" diff --git a/code/game/jobs/job/antag/other/pred.dm b/code/game/jobs/job/antag/other/pred.dm index a8bcec788c..967ef73a7d 100644 --- a/code/game/jobs/job/antag/other/pred.dm +++ b/code/game/jobs/job/antag/other/pred.dm @@ -22,7 +22,7 @@ ) /datum/job/antag/predator/set_spawn_positions(count) - spawn_positions = max((round(count * PREDATOR_TO_TOTAL_SPAWN_RATIO)), 4) + spawn_positions = max((floor(count * PREDATOR_TO_TOTAL_SPAWN_RATIO)), 4) total_positions = spawn_positions /datum/job/antag/predator/spawn_and_equip(mob/new_player/player) @@ -31,17 +31,13 @@ SSticker.mode.attempt_to_join_as_predator(player) -/datum/job/antag/predator/get_whitelist_status(list/roles_whitelist, client/player) // Might be a problem waiting here, but we've got no choice - . = ..() - if(!.) - return - +/datum/job/antag/predator/get_whitelist_status(client/player) // Might be a problem waiting here, but we've got no choice if(!player.clan_info) return CLAN_RANK_BLOODED player.clan_info.sync() // pause here might be problematic, we'll see. If DB dies, then we're fucked - var/rank = clan_ranks[player.clan_info.clan_rank] + var/rank = GLOB.clan_ranks[player.clan_info.clan_rank] if(!rank) return CLAN_RANK_BLOODED @@ -49,10 +45,7 @@ if(!("[JOB_PREDATOR][rank]" in gear_preset_whitelist)) return CLAN_RANK_BLOODED - if(\ - (roles_whitelist[player.ckey] & (WHITELIST_YAUTJA_LEADER|WHITELIST_YAUTJA_COUNCIL|WHITELIST_YAUTJA_COUNCIL_LEGACY)) &&\ - get_desired_status(player.prefs.yautja_status, WHITELIST_COUNCIL) == WHITELIST_NORMAL\ - ) + if(player.check_whitelist_status(WHITELIST_YAUTJA_LEADER|WHITELIST_YAUTJA_COUNCIL|WHITELIST_YAUTJA_COUNCIL_LEGACY) && get_desired_status(player.prefs.yautja_status, WHITELIST_COUNCIL) == WHITELIST_NORMAL) return CLAN_RANK_BLOODED return rank diff --git a/code/game/jobs/job/antag/xeno/queen.dm b/code/game/jobs/job/antag/xeno/queen.dm index 62425e38b8..1f3bca24d4 100644 --- a/code/game/jobs/job/antag/xeno/queen.dm +++ b/code/game/jobs/job/antag/xeno/queen.dm @@ -9,8 +9,8 @@ /datum/job/antag/xenos/queen/set_spawn_positions(count) return spawn_positions -/datum/job/antag/xenos/queen/transform_to_xeno(mob/new_player/NP, hive_index) - SSticker.mode.pick_queen_spawn(NP.mind, hive_index) +/datum/job/antag/xenos/queen/transform_to_xeno(mob/living/carbon/human/human_to_transform, hive_index) + SSticker.mode.pick_queen_spawn(human_to_transform, hive_index) /datum/job/antag/xenos/queen/announce_entry_message(mob/new_queen, account, whitelist_status) to_chat(new_queen, "You are now the alien queen!") diff --git a/code/game/jobs/job/antag/xeno/xenomorph.dm b/code/game/jobs/job/antag/xeno/xenomorph.dm index 78b6ab7e3a..eeca16bc7f 100644 --- a/code/game/jobs/job/antag/xeno/xenomorph.dm +++ b/code/game/jobs/job/antag/xeno/xenomorph.dm @@ -13,10 +13,10 @@ total_positions = -1 /datum/job/antag/xenos/proc/calculate_extra_spawn_positions(count) - return max((round(count * XENO_TO_TOTAL_SPAWN_RATIO)), 0) + return max((floor(count * XENO_TO_TOTAL_SPAWN_RATIO)), 0) /datum/job/antag/xenos/set_spawn_positions(count) - spawn_positions = max((round(count * XENO_TO_TOTAL_SPAWN_RATIO)), 1) + spawn_positions = max((floor(count * XENO_TO_TOTAL_SPAWN_RATIO)), 1) total_positions = spawn_positions /datum/job/antag/xenos/spawn_in_player(mob/new_player/NP) diff --git a/code/game/jobs/job/civilians/other/survivors.dm b/code/game/jobs/job/civilians/other/survivors.dm index 685ca3d968..284faae259 100644 --- a/code/game/jobs/job/civilians/other/survivors.dm +++ b/code/game/jobs/job/civilians/other/survivors.dm @@ -14,7 +14,7 @@ var/hostile = FALSE /datum/job/civilian/survivor/set_spawn_positions(count) - spawn_positions = Clamp((round(count * SURVIVOR_TO_TOTAL_SPAWN_RATIO)), 2, 8) + spawn_positions = clamp((floor(count * SURVIVOR_TO_TOTAL_SPAWN_RATIO)), 2, 8) total_positions = spawn_positions /datum/job/civilian/survivor/equip_job(mob/living/survivor) @@ -83,6 +83,8 @@ if(hostile) to_chat(survivor, SPAN_HIGHDANGER("You are HOSTILE to the USCM!")) + else if(survivor.faction == FACTION_CLF) + to_chat(survivor, SPAN_HIGHDANGER("You are HOSTILE to the USCM, but NOT to other survivors!")) else to_chat(survivor, SPAN_XENOHIGHDANGER("You are NON-HOSTILE to the USCM!")) @@ -177,7 +179,7 @@ /datum/job/civilian/survivor/commanding_officer/set_spawn_positions() var/list/CO_survivor_types = SSmapping.configs[GROUND_MAP].CO_survivor_types - if(CO_survivor_types.len) + if(length(CO_survivor_types)) total_positions = 1 spawn_positions = 1 return spawn_positions diff --git a/code/game/jobs/job/civilians/support/cmo.dm b/code/game/jobs/job/civilians/support/cmo.dm index 930c1eb492..3443a1e852 100644 --- a/code/game/jobs/job/civilians/support/cmo.dm +++ b/code/game/jobs/job/civilians/support/cmo.dm @@ -6,7 +6,7 @@ selection_class = "job_cmo" flags_startup_parameters = ROLE_ADD_TO_DEFAULT gear_preset = /datum/equipment_preset/uscm_ship/uscm_medical/cmo - entry_message_body = "You're a commissioned officer of the USCM. You have authority over everything related to Medbay and Research, only able to be overriden by the XO and CO. You are in charge of medical staff, surgery, chemistry, stimulants and keeping the marines healthy overall." + entry_message_body = "You're a commissioned officer of the USCM. You have authority over everything related to Medbay and Research, only able to be overridden by the XO and CO. You are in charge of medical staff, surgery, chemistry, stimulants and keeping the marines healthy overall." /obj/effect/landmark/start/professor name = JOB_CMO diff --git a/code/game/jobs/job/civilians/support/synthetic.dm b/code/game/jobs/job/civilians/support/synthetic.dm index 70060fb36a..12e50ef6c8 100644 --- a/code/game/jobs/job/civilians/support/synthetic.dm +++ b/code/game/jobs/job/civilians/support/synthetic.dm @@ -19,16 +19,16 @@ "[JOB_SYNTH][WHITELIST_LEADER]" = /datum/equipment_preset/synth/uscm/councillor ) -/datum/job/civilian/synthetic/get_whitelist_status(list/roles_whitelist, client/player) +/datum/job/civilian/synthetic/get_whitelist_status(client/player) . = ..() if(!.) return - if(roles_whitelist[player.ckey] & WHITELIST_SYNTHETIC_LEADER) + if(player.check_whitelist_status(WHITELIST_SYNTHETIC_LEADER)) return get_desired_status(player.prefs.synth_status, WHITELIST_LEADER) - else if(roles_whitelist[player.ckey] & (WHITELIST_SYNTHETIC_COUNCIL|WHITELIST_SYNTHETIC_COUNCIL_LEGACY)) + if(player.check_whitelist_status(WHITELIST_SYNTHETIC_COUNCIL|WHITELIST_SYNTHETIC_COUNCIL_LEGACY)) return get_desired_status(player.prefs.synth_status, WHITELIST_COUNCIL) - else if(roles_whitelist[player.ckey] & WHITELIST_SYNTHETIC) + if(player.check_whitelist_status(WHITELIST_SYNTHETIC)) return get_desired_status(player.prefs.synth_status, WHITELIST_NORMAL) /datum/job/civilian/synthetic/set_spawn_positions(count) diff --git a/code/game/jobs/job/civilians/support/working_joe.dm b/code/game/jobs/job/civilians/support/working_joe.dm index bc8f8c4399..d890b36840 100644 --- a/code/game/jobs/job/civilians/support/working_joe.dm +++ b/code/game/jobs/job/civilians/support/working_joe.dm @@ -17,6 +17,12 @@ job_options = list(STANDARD_VARIANT = "JOE", HAZMAT_VARIANT = "HAZ") var/standard = TRUE +/datum/job/civilian/working_joe/check_whitelist_status(mob/user) + if(user.client.check_whitelist_status(WHITELIST_SYNTHETIC)) + return TRUE + + return ..() + /datum/job/civilian/working_joe/handle_job_options(option) if(option != HAZMAT_VARIANT) standard = TRUE diff --git a/code/game/jobs/job/command/auxiliary/cas_pilot.dm b/code/game/jobs/job/command/auxiliary/cas_pilot.dm new file mode 100644 index 0000000000..083766576a --- /dev/null +++ b/code/game/jobs/job/command/auxiliary/cas_pilot.dm @@ -0,0 +1,24 @@ +/datum/job/command/pilot/cas_pilot + title = JOB_CAS_PILOT + total_positions = 1 + spawn_positions = 1 + allow_additional = TRUE + scaled = TRUE + supervisors = "the auxiliary support officer" + flags_startup_parameters = ROLE_ADD_TO_DEFAULT + gear_preset = /datum/equipment_preset/uscm_ship/gp + entry_message_body = "Your job is to fly, protect, and maintain the ship's gunship. While you are an officer, your authority is limited to the dropship, where you have authority over the enlisted personnel." + +/datum/job/command/pilot/whiskey + total_positions = 2 + spawn_positions = 2 + +// Dropship Roles is both DP, GP and DCC combined to not force people to backtrack +AddTimelock(/datum/job/command/pilot/cas_pilot, list( + JOB_DROPSHIP_ROLES = 2 HOURS +)) + +/obj/effect/landmark/start/pilot/cas_pilot + name = JOB_CAS_PILOT + icon_state = "po_spawn" + job = /datum/job/command/pilot/cas_pilot diff --git a/code/game/jobs/job/command/auxiliary/dropship_pilot.dm b/code/game/jobs/job/command/auxiliary/dropship_pilot.dm new file mode 100644 index 0000000000..2fda9a6800 --- /dev/null +++ b/code/game/jobs/job/command/auxiliary/dropship_pilot.dm @@ -0,0 +1,20 @@ +/datum/job/command/pilot/dropship_pilot + title = JOB_DROPSHIP_PILOT + total_positions = 1 + spawn_positions = 1 + allow_additional = TRUE + scaled = TRUE + supervisors = "the auxiliary support officer" + flags_startup_parameters = ROLE_ADD_TO_DEFAULT + gear_preset = /datum/equipment_preset/uscm_ship/dp + entry_message_body = "Your job is to fly, protect, and maintain the ship's transport dropship. While you are an officer, your authority is limited to the dropship, where you have authority over the enlisted personnel. If you are not piloting, there is an autopilot fallback for command, but don't leave the dropship without reason." + +// Dropship Roles is both DP, GP and DCC combined to not force people to backtrack +AddTimelock(/datum/job/command/pilot/dropship_pilot, list( + JOB_DROPSHIP_ROLES = 2 HOURS +)) + +/obj/effect/landmark/start/pilot/dropship_pilot + name = JOB_DROPSHIP_PILOT + icon_state = "po_spawn" + job = /datum/job/command/pilot/dropship_pilot diff --git a/code/game/jobs/job/command/auxiliary/pilot.dm b/code/game/jobs/job/command/auxiliary/pilot.dm deleted file mode 100644 index f03ef877d9..0000000000 --- a/code/game/jobs/job/command/auxiliary/pilot.dm +++ /dev/null @@ -1,15 +0,0 @@ -/datum/job/command/pilot - title = JOB_PILOT - total_positions = 2 - spawn_positions = 2 - allow_additional = TRUE - scaled = TRUE - supervisors = "the auxiliary support officer" - flags_startup_parameters = ROLE_ADD_TO_DEFAULT - gear_preset = /datum/equipment_preset/uscm_ship/po - entry_message_body = "Your job is to fly, protect, and maintain the ship's dropship. While you are an officer, your authority is limited to the dropship, where you have authority over the enlisted personnel. If you are not piloting, there is an autopilot fallback for command, but don't leave the dropship without reason." - -/obj/effect/landmark/start/pilot - name = JOB_PILOT - icon_state = "po_spawn" - job = /datum/job/command/pilot diff --git a/code/game/jobs/job/command/auxiliary/tank_crew.dm b/code/game/jobs/job/command/auxiliary/tank_crew.dm new file mode 100644 index 0000000000..88b289d48a --- /dev/null +++ b/code/game/jobs/job/command/auxiliary/tank_crew.dm @@ -0,0 +1,28 @@ +/datum/job/command/tank_crew + title = JOB_TANK_CREW + total_positions = 2 + spawn_positions = 2 + allow_additional = TRUE + scaled = TRUE + supervisors = "the acting commanding officer" + flags_startup_parameters = ROLE_ADD_TO_DEFAULT + gear_preset = /datum/equipment_preset/uscm/tank + entry_message_body = "Your job is to operate and maintain the ship's armored vehicles. You are in charge of representing the armored presence amongst the marines during the operation, as well as maintaining and repairing your own vehicles." + +/datum/job/command/tank_crew/set_spawn_positions(count) + if (length(GLOB.clients) >= 200) + spawn_positions = 2 + else + spawn_positions = 0 + +/datum/job/command/tank_crew/get_total_positions(latejoin = FALSE) + if(SStechtree.trees[TREE_MARINE].get_node(/datum/tech/arc).unlocked) + return 0 + if(length(GLOB.clients) >= 200 || total_positions_so_far > 0) + return 2 + + return 0 + +/obj/effect/landmark/start/tank_crew + name = JOB_TANK_CREW + job = /datum/job/command/tank_crew diff --git a/code/game/jobs/job/command/cic/captain.dm b/code/game/jobs/job/command/cic/captain.dm index 72f8613519..30fa455bee 100644 --- a/code/game/jobs/job/command/cic/captain.dm +++ b/code/game/jobs/job/command/cic/captain.dm @@ -19,16 +19,16 @@ entry_message_body = "You are the Commanding Officer of the [MAIN_SHIP_NAME] as well as the operation. Your goal is to lead the Marines on their mission as well as protect and command the ship and her crew. Your job involves heavy roleplay and requires you to behave like a high-ranking officer and to stay in character at all times. As the Commanding Officer your only superior is High Command itself. You must abide by the Commanding Officer Code of Conduct. Failure to do so may result in punitive action against you. Godspeed." return ..() -/datum/job/command/commander/get_whitelist_status(list/roles_whitelist, client/player) +/datum/job/command/commander/get_whitelist_status(client/player) . = ..() if(!.) return - if(roles_whitelist[player.ckey] & WHITELIST_COMMANDER_LEADER) + if(player.check_whitelist_status(WHITELIST_COMMANDER_LEADER|WHITELIST_COMMANDER_COLONEL)) return get_desired_status(player.prefs.commander_status, WHITELIST_LEADER) - else if(roles_whitelist[player.ckey] & (WHITELIST_COMMANDER_COUNCIL|WHITELIST_COMMANDER_COUNCIL_LEGACY)) + if(player.check_whitelist_status(WHITELIST_COMMANDER_COUNCIL|WHITELIST_COMMANDER_COUNCIL_LEGACY)) return get_desired_status(player.prefs.commander_status, WHITELIST_COUNCIL) - else if(roles_whitelist[player.ckey] & WHITELIST_COMMANDER) + if(player.check_whitelist_status(WHITELIST_COMMANDER)) return get_desired_status(player.prefs.commander_status, WHITELIST_NORMAL) /datum/job/command/commander/announce_entry_message(mob/living/carbon/human/H) diff --git a/code/game/jobs/job/command/cic/staffofficer.dm b/code/game/jobs/job/command/cic/staffofficer.dm index c9c1cf7d8a..b309885729 100644 --- a/code/game/jobs/job/command/cic/staffofficer.dm +++ b/code/game/jobs/job/command/cic/staffofficer.dm @@ -30,8 +30,17 @@ total_positions_so_far = positions return positions -/datum/job/command/bridge/generate_entry_message(mob/living/carbon/human/H) - return ..() + +/datum/job/command/bridge/generate_entry_conditions(mob/living/M, whitelist_status) + . = ..() + if(!islist(GLOB.marine_leaders[JOB_SO])) + GLOB.marine_leaders[JOB_SO] = list() + GLOB.marine_leaders[JOB_SO] += M + RegisterSignal(M, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_leader_candidate)) + +/datum/job/command/bridge/proc/cleanup_leader_candidate(mob/M) + SIGNAL_HANDLER + GLOB.marine_leaders[JOB_SO] -= M /datum/job/command/bridge/handle_job_options(option) if(option != FIRST_LT_VARIANT) @@ -62,10 +71,8 @@ OverrideTimelock(/datum/job/command/bridge, list( /datum/job/command/bridge/ai/generate_entry_conditions(mob/living/M, whitelist_status) . = ..() GLOB.marine_leaders[JOB_SO] = M - RegisterSignal(M, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_leader_candidate)) -/datum/job/command/bridge/ai/proc/cleanup_leader_candidate(mob/M) - SIGNAL_HANDLER +/datum/job/command/bridge/ai/cleanup_leader_candidate(mob/M) GLOB.marine_leaders -= JOB_SO /datum/job/command/bridge/ai/upp diff --git a/code/game/jobs/job/command/police/chief_police.dm b/code/game/jobs/job/command/police/chief_police.dm index 3cec89ee64..8ab372bc40 100644 --- a/code/game/jobs/job/command/police/chief_police.dm +++ b/code/game/jobs/job/command/police/chief_police.dm @@ -5,6 +5,16 @@ flags_startup_parameters = ROLE_ADD_TO_DEFAULT gear_preset = /datum/equipment_preset/uscm_ship/uscm_police/cmp entry_message_body = "You are held by a higher standard and are required to obey not only the server rules but the Marine Law. Failure to do so may result in a job ban or server ban. You lead the Military Police, ensure your officers maintain peace and stability aboard the ship. Marines can get rowdy after a few weeks of cryosleep! In addition, you are tasked with the security of high-ranking personnel, including the command staff. Keep them safe!" + var/mob/living/carbon/human/active_cmp + +/datum/job/command/warrant/generate_entry_conditions(mob/living/cmp, whitelist_status) + . = ..() + active_cmp = cmp + RegisterSignal(cmp, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_active_cmp)) + +/datum/job/command/warrant/proc/cleanup_active_cmp(mob/cmp) + SIGNAL_HANDLER + active_cmp = null /obj/effect/landmark/start/warrant name = JOB_CHIEF_POLICE diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 97317916af..47b429ce3c 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -70,10 +70,7 @@ return "" return "[CONFIG_GET(string/wikiarticleurl)]/[replacetext(title, " ", "_")]" -/datum/job/proc/get_whitelist_status(list/roles_whitelist, client/player) - if(!roles_whitelist) - return FALSE - +/datum/job/proc/get_whitelist_status(client/player) return WHITELIST_NORMAL /datum/timelock @@ -162,7 +159,7 @@ if(!gear_preset) return "" if(GLOB.gear_path_presets_list[gear_preset]) - return GLOB.gear_path_presets_list[gear_preset].paygrade + return GLOB.gear_path_presets_list[gear_preset].paygrades[1] return "" /datum/job/proc/get_comm_title() @@ -183,7 +180,7 @@ var/datum/money_account/generated_account //Give them an account in the database. if(!(flags_startup_parameters & ROLE_NO_ACCOUNT)) - var/obj/item/card/id/card = account_user.wear_id + var/obj/item/card/id/card = account_user.get_idcard() var/user_has_preexisting_account = account_user.mind?.initial_account if(card && !user_has_preexisting_account) var/datum/paygrade/account_paygrade = GLOB.paygrades[card.paygrade] @@ -195,7 +192,7 @@ remembered_info += "Your account pin is: [generated_account.remote_access_pin]
    " remembered_info += "Your account funds are: $[generated_account.money]
    " - if(generated_account.transaction_log.len) + if(length(generated_account.transaction_log)) var/datum/transaction/T = generated_account.transaction_log[1] remembered_info += "Your account was created: [T.time], [T.date] at [T.source_terminal]
    " account_user.mind.store_memory(remembered_info) @@ -241,32 +238,10 @@ if(!istype(NP)) return - NP.spawning = TRUE - NP.close_spawn_windows() - var/mob/living/carbon/human/new_character = new(NP.loc) new_character.lastarea = get_area(NP.loc) - NP.client.prefs.copy_all_to(new_character, title) - - if (NP.client.prefs.be_random_body) - var/datum/preferences/TP = new() - TP.randomize_appearance(new_character) - - new_character.job = NP.job - new_character.name = NP.real_name - new_character.voice = NP.real_name - - if(NP.mind) - NP.mind_initialize() - NP.mind.transfer_to(new_character, TRUE) - NP.mind.setup_human_stats() - - // Update the character icons - // This is done in set_species when the mob is created as well, but - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, regenerate_icons)) - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_body), 1, 0) - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_hair)) + setup_human(new_character, NP) return new_character @@ -278,7 +253,7 @@ var/mob/living/carbon/human/human = M var/job_whitelist = title - var/whitelist_status = get_whitelist_status(RoleAuthority.roles_whitelist, human.client) + var/whitelist_status = get_whitelist_status(human.client) if(whitelist_status) job_whitelist = "[title][whitelist_status]" @@ -297,9 +272,9 @@ generate_entry_conditions(human) //Do any other thing that relates to their spawn. if(flags_startup_parameters & ROLE_ADD_TO_SQUAD) //Are we a muhreen? Randomize our squad. This should go AFTER IDs. //TODO Robust this later. - RoleAuthority.randomize_squad(human) + GLOB.RoleAuthority.randomize_squad(human) - if(Check_WO() && job_squad_roles.Find(GET_DEFAULT_ROLE(human.job))) //activates self setting proc for marine headsets for WO + if(Check_WO() && GLOB.job_squad_roles.Find(GET_DEFAULT_ROLE(human.job))) //activates self setting proc for marine headsets for WO var/datum/game_mode/whiskey_outpost/WO = SSticker.mode WO.self_set_headset(human) @@ -340,3 +315,14 @@ /// Intended to be overwritten to handle any requirements for specific job variations that can be selected /datum/job/proc/filter_job_option(mob/job_applicant) return job_options + +/datum/job/proc/check_whitelist_status(mob/user) + if(!(flags_startup_parameters & ROLE_WHITELISTED)) + return TRUE + + if(user.client.check_whitelist_status(flags_whitelist)) + return TRUE + +/// Called when the job owner enters deep cryogenic storage +/datum/job/proc/on_cryo(mob/living/carbon/human/cryoing) + return diff --git a/code/game/jobs/job/marine/squad/engineer.dm b/code/game/jobs/job/marine/squad/engineer.dm index 5b93e5f6cf..47c8c6e36e 100644 --- a/code/game/jobs/job/marine/squad/engineer.dm +++ b/code/game/jobs/job/marine/squad/engineer.dm @@ -8,7 +8,7 @@ entry_message_body = "You have the equipment and skill to build fortifications, reroute power lines, and bunker down. Your squaddies will look to you when it comes to construction in the field of battle." /datum/job/marine/engineer/set_spawn_positions(count) - for(var/datum/squad/sq in RoleAuthority.squads) + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) sq.max_engineers = engi_slot_formula(count) @@ -21,7 +21,7 @@ total_positions_so_far = slots if(latejoin) - for(var/datum/squad/sq in RoleAuthority.squads) + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) sq.max_engineers = slots diff --git a/code/game/jobs/job/marine/squad/medic.dm b/code/game/jobs/job/marine/squad/medic.dm index 5c379c1121..e6e8e4764b 100644 --- a/code/game/jobs/job/marine/squad/medic.dm +++ b/code/game/jobs/job/marine/squad/medic.dm @@ -15,7 +15,7 @@ job_options = list(CPL_VARIANT = "CPL", LCPL_VARIANT = "LCPL") /datum/job/marine/medic/set_spawn_positions(count) - for(var/datum/squad/sq in RoleAuthority.squads) + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) sq.max_medics = medic_slot_formula(count) @@ -28,7 +28,7 @@ total_positions_so_far = slots if(latejoin) - for(var/datum/squad/sq in RoleAuthority.squads) + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) sq.max_medics = slots diff --git a/code/game/jobs/job/marine/squad/specialist.dm b/code/game/jobs/job/marine/squad/specialist.dm index 3e4d0600c2..369cee5ced 100644 --- a/code/game/jobs/job/marine/squad/specialist.dm +++ b/code/game/jobs/job/marine/squad/specialist.dm @@ -23,6 +23,11 @@ total_positions_so_far = positions return positions +/datum/job/marine/specialist/on_cryo(mob/living/carbon/human/cryoing) + var/specialist_set = get_specialist_set(cryoing) + if(isnull(specialist_set)) + return + GLOB.specialist_set_datums[specialist_set].refund_set(cryoing) /datum/job/marine/specialist/whiskey title = JOB_WO_SQUAD_SPECIALIST diff --git a/code/game/jobs/job/marine/squad/standard.dm b/code/game/jobs/job/marine/squad/standard.dm index 71533679d9..87efa927a6 100644 --- a/code/game/jobs/job/marine/squad/standard.dm +++ b/code/game/jobs/job/marine/squad/standard.dm @@ -17,7 +17,7 @@ return ..() /datum/job/marine/standard/set_spawn_positions(count) - spawn_positions = max((round(count * STANDARD_MARINE_TO_TOTAL_SPAWN_RATIO)), 8) + spawn_positions = max((floor(count * STANDARD_MARINE_TO_TOTAL_SPAWN_RATIO)), 8) /datum/job/marine/standard/handle_job_options(option) if(option != PFC_VARIANT) diff --git a/code/game/jobs/job/marine/squad_info.dm b/code/game/jobs/job/marine/squad_info.dm index 27c5bd9001..e7cfcc9d25 100644 --- a/code/game/jobs/job/marine/squad_info.dm +++ b/code/game/jobs/job/marine/squad_info.dm @@ -9,7 +9,7 @@ return GLOB.not_incapacitated_state /datum/squad/ui_data(mob/user) - if(!squad_info_data.len) //initial first update of data + if(!length(squad_info_data)) //initial first update of data update_all_squad_info() if(squad_info_data["total_mar"] != count) //updates for new marines update_free_mar() @@ -131,7 +131,7 @@ //fireteam and TL update /datum/squad/proc/update_fireteam(team) - squad_info_data["fireteams"][team]["total"] = fireteams[team].len + squad_info_data["fireteams"][team]["total"] = length(fireteams[team]) if(squad_info_data["fireteams"][team]["total"] < 1) squad_info_data["fireteams"][team]["sqsgt"] = list() squad_info_data["fireteams"][team]["mar"] = list() @@ -147,7 +147,7 @@ if(skillcheck(H, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED)) Med = TRUE else - if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) Eng = TRUE ID = H.get_idcard() squad_info_data["fireteams"][team]["sqsgt"] = list( @@ -200,7 +200,7 @@ squad_info_data["total_kia"] = 0 var/mar_free = count for(var/team in fireteams) - mar_free -= fireteams[team].len + mar_free -= length(fireteams[team]) if(squad_leader) mar_free-- for(var/list/freeman in squad_info_data["mar_free"]) @@ -226,7 +226,7 @@ if(skillcheck(H, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED)) Med = TRUE else - if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) Eng = TRUE mar[H.real_name] = list( "name" = H.real_name, @@ -275,7 +275,7 @@ if(skillcheck(H, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED)) Med = TRUE else - if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) Eng = TRUE mar[H.real_name] = list( "name" = H.real_name, diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm index 27fb293daa..230c3df1d7 100644 --- a/code/game/jobs/job/marine/squads.dm +++ b/code/game/jobs/job/marine/squads.dm @@ -34,11 +34,11 @@ /// If uses the overlay var/use_stripe_overlay = TRUE /// Color for the squad marines gear overlays - var/equipment_color = "#FFFFFF" + var/equipment_color = COLOR_WHITE /// The alpha for the armor overlay used by equipment color var/armor_alpha = 125 /// Color for the squad marines langchat - var/chat_color = "#FFFFFF" + var/chat_color = COLOR_WHITE /// Which special access do we grant them var/list/access = list() /// Can use any squad vendor regardless of squad connection @@ -251,6 +251,18 @@ roundstart = FALSE locked = TRUE +/datum/squad/marine/solardevils + name = SQUAD_SOLAR + equipment_color = "#5a2c2c" + chat_color = "#5a2c2c" + radio_freq = SOF_FREQ + minimap_color = "#5a2c2c" + + active = FALSE + roundstart = FALSE + locked = TRUE + + //############################### UPP Squads /datum/squad/upp name = "Root" @@ -350,8 +362,8 @@ if(!istype(marine.wear_id, /obj/item/card/id)) continue - var/obj/item/card/id/marine_card = marine.wear_id - var/datum/weakref/marine_card_registered = marine.wear_id.registered_ref + var/obj/item/card/id/marine_card = marine.get_idcard() + var/datum/weakref/marine_card_registered = marine_card.registered_ref if(!istype(marine_card_registered)) continue @@ -455,17 +467,17 @@ /// Displays a message to squad members directly on the game map /datum/squad/proc/send_maptext(text = "", title_text = "", only_leader = 0) - var/message_colour = chat_color + var/message_color = chat_color if(only_leader) if(squad_leader) if(!squad_leader.stat && squad_leader.client) playsound_client(squad_leader.client, 'sound/effects/radiostatic.ogg', squad_leader.loc, 25, FALSE) - squad_leader.play_screen_text("[title_text]
    " + text, /atom/movable/screen/text/screen_text/command_order, message_colour) + squad_leader.play_screen_text("[title_text]
    " + text, /atom/movable/screen/text/screen_text/command_order, message_color) else for(var/mob/living/carbon/human/marine in marines_list) if(!marine.stat && marine.client) //Only living and connected people in our squad playsound_client(marine.client, 'sound/effects/radiostatic.ogg', marine.loc, 25, FALSE) - marine.play_screen_text("[title_text]
    " + text, /atom/movable/screen/text/screen_text/command_order, message_colour) + marine.play_screen_text("[title_text]
    " + text, /atom/movable/screen/text/screen_text/command_order, message_color) /// Displays a message to the squad members in chat /datum/squad/proc/send_message(text = "", plus_name = 0, only_leader = 0) @@ -507,7 +519,7 @@ var/obj/item/card/id/C = ID if(!C) - C = M.wear_id + C = M.get_idcard() if(!C) C = M.get_active_hand() if(!istype(C)) @@ -524,7 +536,7 @@ if(JOB_SQUAD_MARINE) assignment = JOB_SQUAD_MARINE num_riflemen++ - var/squad_number = (Ceiling(num_riflemen / 2) > 2) ? pick(1, 2) : Ceiling(num_riflemen / 2) + var/squad_number = (ceil(num_riflemen / 2) > 2) ? pick(1, 2) : ceil(num_riflemen / 2) assign_fireteam("SQ[squad_number]", M) if(JOB_SQUAD_ENGI) assignment = JOB_SQUAD_ENGI @@ -623,7 +635,7 @@ return //not assigned to the correct squad var/obj/item/card/id/C = ID if(!istype(C)) - C = M.wear_id + C = M.get_idcard() if(!istype(C)) return FALSE //Abort, no ID found @@ -708,9 +720,9 @@ R.keys -= key qdel(key) R.recalculateChannels() - if(istype(old_lead.wear_id, /obj/item/card/id)) - var/obj/item/card/id/ID = old_lead.wear_id - ID.access -= ACCESS_MARINE_LEADER + var/obj/item/card/id/card = old_lead.get_idcard() + if(card) + card.access -= ACCESS_MARINE_LEADER REMOVE_TRAITS_IN(old_lead, TRAIT_SOURCE_SQUAD_LEADER) old_lead.hud_set_squad() old_lead.update_inv_head() //updating marine helmet leader overlays @@ -720,10 +732,10 @@ //Not a safe proc. Returns null if squads or jobs aren't set up. //Mostly used in the marine squad console in marine_consoles.dm. /proc/get_squad_by_name(text) - if(!RoleAuthority || RoleAuthority.squads.len == 0) + if(!GLOB.RoleAuthority || length(GLOB.RoleAuthority.squads) == 0) return null var/datum/squad/S - for(S in RoleAuthority.squads) + for(S in GLOB.RoleAuthority.squads) if(S.name == text) return S return null @@ -782,11 +794,12 @@ H.hud_set_squad() // I'm not fixing how cursed these strings are, god save us all if someone (or me (https://i.imgur.com/nSy81Bn.png)) has to change these again - if(H.wear_id) + var/obj/item/card/id/id = H.get_idcard() + if(id) if(fireteam == "SQ1") - H.wear_id.access += squad_one_access + id.access += squad_one_access if(fireteam == "SQ2") - H.wear_id.access += squad_two_access + id.access += squad_two_access for(var/obj/item/device/radio/headset/cycled_headset in H) if(!("Squad Sergeant" in cycled_headset.tracking_options)) @@ -808,8 +821,9 @@ to_chat(H, FONT_SIZE_HUGE(SPAN_BLUE("You were unassigned from [ft]."))) H.hud_set_squad() - if(H.wear_id) - H.wear_id.access.Remove(squad_one_access, squad_two_access) + var/obj/item/card/id/id = H.get_idcard() + if(id) + id.access.Remove(squad_one_access, squad_two_access) for(var/obj/item/device/radio/headset/cycled_headset in H) if(!("Platoon Sergeant" in cycled_headset.tracking_options)) diff --git a/code/game/jobs/job/special/provost.dm b/code/game/jobs/job/special/provost.dm index c746e9f500..d5dd9dc394 100644 --- a/code/game/jobs/job/special/provost.dm +++ b/code/game/jobs/job/special/provost.dm @@ -14,6 +14,14 @@ /datum/job/special/provost/inspector title = JOB_PROVOST_INSPECTOR +//Provost Inspector +/datum/job/special/provost/inspector/chief + title = JOB_PROVOST_CINSPECTOR + +//Provost Marshal +/datum/job/special/provost/marshal/deputy + title = JOB_PROVOST_DMARSHAL + //Provost Marshal /datum/job/special/provost/marshal title = JOB_PROVOST_MARSHAL diff --git a/code/game/jobs/job/special/uscm.dm b/code/game/jobs/job/special/uscm.dm index 2308c5af29..934241fdca 100644 --- a/code/game/jobs/job/special/uscm.dm +++ b/code/game/jobs/job/special/uscm.dm @@ -1,5 +1,7 @@ /datum/job/special/uscm/colonel title = JOB_COLONEL +/datum/job/special/uscm/observer + title = JOB_USCM_OBSV /datum/job/special/uscm/general title = JOB_GENERAL /datum/job/special/uscm/acmc @@ -12,3 +14,6 @@ title = JOB_RIOT /datum/job/special/uscm/riot/chief title = JOB_RIOT_CHIEF + +/datum/job/special/uscm/tech + title = JOB_SQUAD_TECH diff --git a/code/game/jobs/job/special/weyland_yutani.dm b/code/game/jobs/job/special/weyland_yutani.dm new file mode 100644 index 0000000000..d5f47331ca --- /dev/null +++ b/code/game/jobs/job/special/weyland_yutani.dm @@ -0,0 +1,110 @@ +/datum/job/special/wey_yu + supervisors = "Weyland-Yutani Corporate Office" + title = "Weyland-Yutani Representative" + selection_class = "job_cl" + flags_startup_parameters = ROLE_CUSTOM_SPAWN + gear_preset = /datum/equipment_preset/wy/trainee + +/datum/job/special/wey_yu/corporate/trainee + title = JOB_TRAINEE + gear_preset = /datum/equipment_preset/wy/trainee + +/datum/job/special/wey_yu/corporate/junior_exec + title = JOB_JUNIOR_EXECUTIVE + gear_preset = /datum/equipment_preset/wy/junior_exec + +/datum/job/special/wey_yu/corporate/exec + title = JOB_EXECUTIVE + gear_preset = /datum/equipment_preset/wy/exec + +/datum/job/special/wey_yu/corporate/senior_exec + title = JOB_SENIOR_EXECUTIVE + gear_preset = /datum/equipment_preset/wy/senior_exec + +/datum/job/special/wey_yu/corporate/exec_spec + title = JOB_EXECUTIVE_SPECIALIST + gear_preset = /datum/equipment_preset/wy/exec_spec + +/datum/job/special/wey_yu/corporate/exec_supr + title = JOB_EXECUTIVE_SUPERVISOR + gear_preset = /datum/equipment_preset/wy/exec_supervisor + +/datum/job/special/wey_yu/corporate/assist_man + title = JOB_ASSISTANT_MANAGER + gear_preset = /datum/equipment_preset/wy/manager/assistant_manager + +/datum/job/special/wey_yu/corporate/div_man + title = JOB_DIVISION_MANAGER + gear_preset = /datum/equipment_preset/wy/manager/division_manager + supervisors = "Weyland-Yutani Directorate" + +/datum/job/special/wey_yu/corporate/chief_exec + title = JOB_CHIEF_EXECUTIVE + gear_preset = /datum/equipment_preset/wy/manager/chief_executive + supervisors = "Weyland-Yutani Directorate" + +/datum/job/special/wey_yu/corporate/director + title = JOB_DIRECTOR + gear_preset = /datum/equipment_preset/wy/manager/director + supervisors = "Weyland-Yutani Directorate" + + +// PMCS // +/datum/job/special/wey_yu/pmc + supervisors = "Weyland-Yutani PMC Dispatch" + +/datum/job/special/wey_yu/pmc/standard + title = JOB_PMC_STANDARD + gear_preset = /datum/equipment_preset/pmc/pmc_standard + +/datum/job/special/wey_yu/pmc/medic + title = JOB_PMC_MEDIC + gear_preset = /datum/equipment_preset/pmc/pmc_medic + +/datum/job/special/wey_yu/pmc/engineer + title = JOB_PMC_ENGINEER + gear_preset = /datum/equipment_preset/pmc/technician + +/datum/job/special/wey_yu/pmc/gunner + title = JOB_PMC_GUNNER + gear_preset = /datum/equipment_preset/pmc/pmc_gunner + +/datum/job/special/wey_yu/pmc/sniper + title = JOB_PMC_SNIPER + gear_preset = /datum/equipment_preset/pmc/pmc_sniper + +/datum/job/special/wey_yu/pmc/leader + title = JOB_PMC_LEADER + gear_preset = /datum/equipment_preset/pmc/pmc_leader + +/datum/job/special/wey_yu/pmc/investigator + title = JOB_PMC_INVESTIGATOR + gear_preset = /datum/equipment_preset/pmc/pmc_med_investigator + +/datum/job/special/wey_yu/pmc/lead_invest + title = JOB_PMC_LEAD_INVEST + gear_preset = /datum/equipment_preset/pmc/pmc_lead_investigator + +/datum/job/special/wey_yu/pmc/detainer + title = JOB_PMC_DETAINER + gear_preset = /datum/equipment_preset/pmc/pmc_detainer + +/datum/job/special/wey_yu/pmc/crewman + title = JOB_PMC_CREWMAN + gear_preset = /datum/equipment_preset/pmc/pmc_crewman + +/datum/job/special/wey_yu/pmc/doctor + title = JOB_PMC_DOCTOR + gear_preset = /datum/equipment_preset/pmc/doctor + +/datum/job/special/wey_yu/pmc/handler + title = JOB_PMC_XENO_HANDLER + gear_preset = /datum/equipment_preset/pmc/xeno_handler + +/datum/job/special/wey_yu/pmc/synth + title = JOB_PMC_SYNTH + gear_preset = /datum/equipment_preset/pmc/synth + +/datum/job/special/wey_yu/pmc/director + title = JOB_PMC_DIRECTOR + gear_preset = /datum/equipment_preset/pmc/director diff --git a/code/game/jobs/role_authority.dm b/code/game/jobs/role_authority.dm index f26bef936c..859ec0647a 100644 --- a/code/game/jobs/role_authority.dm +++ b/code/game/jobs/role_authority.dm @@ -11,7 +11,7 @@ When a round starts, the roles are assigned based on the round, from another lis by name can be kept for things like job bans, while the round may add or remove roles as needed.If you need to equip a mob for a job, always use roles_by_path as it is an accurate account of every specific role path (with specific equipment). */ -var/global/datum/authority/branch/role/RoleAuthority +GLOBAL_DATUM(RoleAuthority, /datum/authority/branch/role) #define GET_RANDOM_JOB 0 #define BE_MARINE 1 @@ -25,11 +25,10 @@ var/global/datum/authority/branch/role/RoleAuthority #define SHIPSIDE_ROLE_WEIGHT 0.25 -var/global/players_preassigned = 0 - +GLOBAL_VAR_INIT(players_preassigned, 0) /proc/guest_jobbans(job) - return (job in ROLES_COMMAND) + return (job in GLOB.ROLES_COMMAND) /datum/authority/branch/role var/name = "Role Authority" @@ -37,7 +36,6 @@ var/global/players_preassigned = 0 var/list/roles_by_path //Master list generated when role aithority is created, listing every role by path, including variable roles. Great for manually equipping with. var/list/roles_by_name //Master list generated when role authority is created, listing every default role by name, including those that may not be regularly selected. var/list/roles_for_mode //Derived list of roles only for the game mode, generated when the round starts. - var/list/roles_whitelist //Associated list of lists, by ckey. Checks to see if a person is whitelisted for a specific role. var/list/castes_by_path //Master list generated when role aithority is created, listing every caste by path. var/list/castes_by_name //Master list generated when role authority is created, listing every default caste by name. @@ -63,7 +61,6 @@ var/global/players_preassigned = 0 /datum/job/special/uaac, /datum/job/special/uaac/tis, /datum/job/special/uscm, - /datum/job/command/tank_crew //Rip VC ) var/squads_all[] = typesof(/datum/squad) - /datum/squad var/castes_all[] = subtypesof(/datum/caste_datum) @@ -117,57 +114,6 @@ var/global/players_preassigned = 0 squads += S squads_by_type[S.type] = S - load_whitelist() - - -/datum/authority/branch/role/proc/load_whitelist(filename = "config/role_whitelist.txt") - var/L[] = file2list(filename) - var/P[] - var/W[] = new //We want a temporary whitelist list, in case we need to reload. - - var/i - var/r - var/ckey - var/role - roles_whitelist = list() - for(i in L) - if(!i) continue - i = trim(i) - if(!length(i)) continue - else if (copytext(i, 1, 2) == "#") continue - - P = splittext(i, "+") - if(!P.len) continue - ckey = ckey(P[1]) //Converting their key to canonical form. ckey() does this by stripping all spaces, underscores and converting to lower case. - - role = NO_FLAGS - r = 1 - while(++r <= P.len) - switch(ckey(P[r])) - if("yautja") role |= WHITELIST_YAUTJA - if("yautjalegacy") role |= WHITELIST_YAUTJA_LEGACY - if("yautjacouncil") role |= WHITELIST_YAUTJA_COUNCIL - if("yautjacouncillegacy") role |= WHITELIST_YAUTJA_COUNCIL_LEGACY - if("yautjaleader") role |= WHITELIST_YAUTJA_LEADER - if("commander") role |= WHITELIST_COMMANDER - if("commandercouncil") role |= WHITELIST_COMMANDER_COUNCIL - if("commandercouncillegacy") role |= WHITELIST_COMMANDER_COUNCIL_LEGACY - if("commanderleader") role |= WHITELIST_COMMANDER_LEADER - if("workingjoe") role |= WHITELIST_JOE - if("synthetic") role |= (WHITELIST_SYNTHETIC|WHITELIST_JOE) - if("syntheticcouncil") role |= WHITELIST_SYNTHETIC_COUNCIL - if("syntheticcouncillegacy") role |= WHITELIST_SYNTHETIC_COUNCIL_LEGACY - if("syntheticleader") role |= WHITELIST_SYNTHETIC_LEADER - if("advisor") role |= WHITELIST_MENTOR - if("allgeneral") role |= WHITELISTS_GENERAL - if("allcouncil") role |= (WHITELISTS_COUNCIL|WHITELISTS_GENERAL) - if("alllegacycouncil") role |= (WHITELISTS_LEGACY_COUNCIL|WHITELISTS_GENERAL) - if("everything", "allleader") role |= WHITELIST_EVERYTHING - - W[ckey] = role - - roles_whitelist = W - //#undef FACTION_TO_JOIN /* @@ -367,9 +313,11 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou * survivors and the number of roundstart Squad Rifleman slots. */ /datum/authority/branch/role/proc/calculate_role_weight(datum/job/J) - if(ROLES_MARINES.Find(J.title)) + if(!J) + return 0 + if(GLOB.ROLES_MARINES.Find(J.title)) return 1 - if(ROLES_XENO.Find(J.title)) + if(GLOB.ROLES_XENO.Find(J.title)) return 1 if(J.title == JOB_SURVIVOR) return 1 @@ -389,7 +337,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou return FALSE if(!J.can_play_role(M.client)) return FALSE - if(J.flags_startup_parameters & ROLE_WHITELISTED && !(roles_whitelist[M.ckey] & J.flags_whitelist)) + if(!J.check_whitelist_status(M)) return FALSE if(J.total_positions != -1 && J.get_total_positions(latejoin) <= J.current_positions) return FALSE @@ -412,9 +360,9 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou //here is the main reason this proc exists - to remove freed squad jobs from squad, //so latejoining person ends in the squad which's job was freed and not random one var/datum/squad/sq = null - if(job_squad_roles.Find(J.title)) + if(GLOB.job_squad_roles.Find(J.title)) var/list/squad_list = list() - for(sq in RoleAuthority.squads) + for(sq in GLOB.RoleAuthority.squads) if(sq.usable) squad_list += sq sq = null @@ -492,7 +440,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou new_job.handle_job_options(new_human.client.prefs.pref_special_job_options[new_job.title]) var/job_whitelist = new_job.title - var/whitelist_status = new_job.get_whitelist_status(roles_whitelist, new_human.client) + var/whitelist_status = new_job.get_whitelist_status(new_human.client) if(whitelist_status) job_whitelist = "[new_job.title][whitelist_status]" @@ -513,7 +461,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou if(new_job.flags_startup_parameters & ROLE_ADD_TO_SQUAD) //Are we a muhreen? Randomize our squad. This should go AFTER IDs. //TODO Robust this later. randomize_squad(new_human) - if(Check_WO() && job_squad_roles.Find(GET_DEFAULT_ROLE(new_human.job))) //activates self setting proc for marine headsets for WO + if(Check_WO() && GLOB.job_squad_roles.Find(GET_DEFAULT_ROLE(new_human.job))) //activates self setting proc for marine headsets for WO var/datum/game_mode/whiskey_outpost/WO = SSticker.mode WO.self_set_headset(new_human) @@ -560,7 +508,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou //Find which squad has the least population. If all 4 squads are equal it should just use a random one /datum/authority/branch/role/proc/get_lowest_squad(mob/living/carbon/human/H) - if(!squads.len) //Something went wrong, our squads aren't set up. + if(!length(squads)) //Something went wrong, our squads aren't set up. to_world("Warning, something messed up in get_lowest_squad(). No squads set up!") return null @@ -569,7 +517,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou var/list/squads_copy = squads.Copy() var/list/mixed_squads = list() - for(var/i= 1 to squads_copy.len) + for(var/i= 1 to length(squads_copy)) var/datum/squad/S = pick_n_take(squads_copy) if (S.roundstart && S.usable && S.faction == H.faction && S.name != "Root") mixed_squads += S @@ -613,7 +561,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou if(!H) return - if(!squads.len) + if(!length(squads)) to_chat(H, "Something went wrong with your squad randomizer! Tell a coder!") return //Shit, where's our squad data @@ -624,7 +572,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou var/list/squads_copy = squads.Copy() var/list/mixed_squads = list() // The following code removes non useable squads from the lists of squads we assign marines too. - for(var/i= 1 to squads_copy.len) + for(var/i= 1 to length(squads_copy)) var/datum/squad/S = pick_n_take(squads_copy) if (S.roundstart && S.usable && S.faction == H.faction && S.name != "Root") mixed_squads += S @@ -805,7 +753,7 @@ I hope it's easier to tell what the heck this proc is even doing, unlike previou var/found_desired = FALSE var/found_limit = FALSE - for(var/status in whitelist_hierarchy) + for(var/status in GLOB.whitelist_hierarchy) if(status == desired_status) found_desired = TRUE break diff --git a/code/game/jobs/slot_scaling.dm b/code/game/jobs/slot_scaling.dm index 2d444d06e5..8c85681307 100644 --- a/code/game/jobs/slot_scaling.dm +++ b/code/game/jobs/slot_scaling.dm @@ -10,7 +10,7 @@ /proc/job_slot_formula(marine_count, factor, c, min, max) if(marine_count <= factor) return min - return round(Clamp((marine_count/factor)+c, min, max)) + return floor(clamp((marine_count/factor)+c, min, max)) /proc/medic_slot_formula(playercount) return job_slot_formula(playercount,40,1,3,5) diff --git a/code/game/jobs/whitelist.dm b/code/game/jobs/whitelist.dm index 05f5303480..8cd91a494c 100644 --- a/code/game/jobs/whitelist.dm +++ b/code/game/jobs/whitelist.dm @@ -1,52 +1,221 @@ -#define WHITELISTFILE "data/whitelist.txt" - -GLOBAL_LIST_FILE_LOAD(whitelist, WHITELISTFILE) - -/proc/check_whitelist(mob/M /*, rank*/) - if(!CONFIG_GET(flag/usewhitelist) || !GLOB.whitelist) - return 0 - return ("[M.ckey]" in GLOB.whitelist) - /proc/can_play_special_job(client/client, job) if(client.admin_holder && (client.admin_holder.rights & R_ADMIN)) return TRUE if(job == XENO_CASTE_QUEEN) - var/datum/caste_datum/C = RoleAuthority.castes_by_name[XENO_CASTE_QUEEN] + var/datum/caste_datum/C = GLOB.RoleAuthority.castes_by_name[XENO_CASTE_QUEEN] return C.can_play_caste(client) if(job == JOB_SURVIVOR) - var/datum/job/J = RoleAuthority.roles_by_path[/datum/job/civilian/survivor] + var/datum/job/J = GLOB.RoleAuthority.roles_by_path[/datum/job/civilian/survivor] return J.can_play_role(client) return TRUE -GLOBAL_LIST_FILE_LOAD(alien_whitelist, "config/alienwhitelist.txt") - -//todo: admin aliens -/proc/is_alien_whitelisted(mob/M, species) - if(!CONFIG_GET(flag/usealienwhitelist)) //If there's not config to use the whitelist. - return 1 - if(species == "human" || species == "Human") - return 1 -// if(check_rights(R_ADMIN, 0)) //Admins are not automatically considered to be whitelisted anymore. ~N -// return 1 //This actually screwed up a bunch of procs, but I only noticed it with the wrong spawn point. - if(!CONFIG_GET(flag/usealienwhitelist) || !GLOB.alien_whitelist) - return 0 - if(M && species) - for (var/s in GLOB.alien_whitelist) - if(findtext(lowertext(s),"[lowertext(M.key)] - [species]")) - return 1 - //if(findtext(lowertext(s),"[lowertext(M.key)] - [species] Elder")) //Unnecessary. - // return 1 - if(findtext(lowertext(s),"[lowertext(M.key)] - All")) - return 1 - return 0 - /// returns a list of strings containing the whitelists held by a specific ckey /proc/get_whitelisted_roles(ckey) - if(RoleAuthority.roles_whitelist[ckey] & WHITELIST_PREDATOR) + var/datum/entity/player/player = get_player_from_key(ckey) + if(player.check_whitelist_status(WHITELIST_YAUTJA)) LAZYADD(., "predator") - if(RoleAuthority.roles_whitelist[ckey] & WHITELIST_COMMANDER) + if(player.check_whitelist_status(WHITELIST_COMMANDER)) LAZYADD(., "commander") - if(RoleAuthority.roles_whitelist[ckey] & WHITELIST_SYNTHETIC) + if(player.check_whitelist_status(WHITELIST_SYNTHETIC)) LAZYADD(., "synthetic") -#undef WHITELISTFILE +/client/load_player_data_info(datum/entity/player/player) + . = ..() + + if(isSenator(src)) + add_verb(src, /client/proc/whitelist_panel) + if(isCouncil(src)) + add_verb(src, /client/proc/other_records) + +/client + var/datum/whitelist_panel/wl_panel + +/client/proc/whitelist_panel() + set name = "Whitelist Panel" + set category = "Admin.Panels" + + if(wl_panel) + qdel(wl_panel) + wl_panel = new + wl_panel.tgui_interact(mob) + +#define WL_PANEL_RIGHT_CO (1<<0) +#define WL_PANEL_RIGHT_SYNTH (1<<1) +#define WL_PANEL_RIGHT_YAUTJA (1<<2) +#define WL_PANEL_RIGHT_MENTOR (1<<3) +#define WL_PANEL_RIGHT_OVERSEER (1<<4) +#define WL_PANEL_ALL_COUNCILS (WL_PANEL_RIGHT_CO|WL_PANEL_RIGHT_SYNTH|WL_PANEL_RIGHT_YAUTJA) +#define WL_PANEL_ALL_RIGHTS (WL_PANEL_RIGHT_CO|WL_PANEL_RIGHT_SYNTH|WL_PANEL_RIGHT_YAUTJA|WL_PANEL_RIGHT_MENTOR|WL_PANEL_RIGHT_OVERSEER) + +/datum/whitelist_panel + var/viewed_player = list() + var/current_menu = "Panel" + var/user_rights = 0 + var/target_rights = 0 + var/new_rights = 0 + +/datum/whitelist_panel/proc/get_user_rights(mob/user) + if(!user.client) + return + var/client/person = user.client + if(CLIENT_HAS_RIGHTS(person, R_PERMISSIONS)) + return WL_PANEL_ALL_RIGHTS + var/rights + if(person.check_whitelist_status(WHITELIST_COMMANDER_LEADER)) + rights |= WL_PANEL_RIGHT_CO + if(person.check_whitelist_status(WHITELIST_SYNTHETIC_LEADER)) + rights |= WL_PANEL_RIGHT_SYNTH + if(person.check_whitelist_status(WHITELIST_YAUTJA_LEADER)) + rights |= WL_PANEL_RIGHT_YAUTJA + if(rights == WL_PANEL_ALL_COUNCILS) + return WL_PANEL_ALL_RIGHTS + return rights + +/datum/whitelist_panel/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "WhitelistPanel", "Whitelist Panel") + ui.open() + +/datum/whitelist_panel/ui_state(mob/user) + return GLOB.always_state + +/datum/whitelist_panel/ui_close(mob/user) + . = ..() + if(user?.client.wl_panel) + qdel(user.client.wl_panel) + +/datum/whitelist_panel/vv_edit_var(var_name, var_value) + return FALSE + +/datum/whitelist_panel/ui_data(mob/user) + var/list/data = list() + + data["current_menu"] = current_menu + data["user_rights"] = user_rights + data["viewed_player"] = viewed_player + data["target_rights"] = target_rights + data["new_rights"] = new_rights + + return data + +GLOBAL_LIST_INIT(co_flags, list( + list(name = "Commander", bitflag = WHITELIST_COMMANDER, permission = WL_PANEL_RIGHT_CO), + list(name = "Council", bitflag = WHITELIST_COMMANDER_COUNCIL, permission = WL_PANEL_RIGHT_CO), + list(name = "Legacy Council", bitflag = WHITELIST_COMMANDER_COUNCIL_LEGACY, permission = WL_PANEL_RIGHT_CO), + list(name = "Senator", bitflag = WHITELIST_COMMANDER_LEADER, permission = WL_PANEL_RIGHT_OVERSEER), + list(name = "Colonel", bitflag = WHITELIST_COMMANDER_COLONEL, permission = WL_PANEL_RIGHT_OVERSEER) +)) +GLOBAL_LIST_INIT(syn_flags, list( + list(name = "Synthetic", bitflag = WHITELIST_SYNTHETIC, permission = WL_PANEL_RIGHT_SYNTH), + list(name = "Council", bitflag = WHITELIST_SYNTHETIC_COUNCIL, permission = WL_PANEL_RIGHT_SYNTH), + list(name = "Legacy Council", bitflag = WHITELIST_SYNTHETIC_COUNCIL_LEGACY, permission = WL_PANEL_RIGHT_SYNTH), + list(name = "Senator", bitflag = WHITELIST_SYNTHETIC_LEADER, permission = WL_PANEL_RIGHT_OVERSEER) +)) +GLOBAL_LIST_INIT(yaut_flags, list( + list(name = "Yautja", bitflag = WHITELIST_YAUTJA, permission = WL_PANEL_RIGHT_YAUTJA), + list(name = "Legacy Holder", bitflag = WHITELIST_YAUTJA_LEGACY, permission = WL_PANEL_RIGHT_OVERSEER), + list(name = "Council", bitflag = WHITELIST_YAUTJA_COUNCIL, permission = WL_PANEL_RIGHT_YAUTJA), + list(name = "Legacy Council", bitflag = WHITELIST_YAUTJA_COUNCIL_LEGACY, permission = WL_PANEL_RIGHT_YAUTJA), + list(name = "Senator", bitflag = WHITELIST_YAUTJA_LEADER, permission = WL_PANEL_RIGHT_OVERSEER) +)) +GLOBAL_LIST_INIT(misc_flags, list( + list(name = "Senior Enlisted Advisor", bitflag = WHITELIST_MENTOR, permission = WL_PANEL_RIGHT_MENTOR), + list(name = "Working Joe", bitflag = WHITELIST_JOE, permission = WL_PANEL_RIGHT_SYNTH), +)) + +/datum/whitelist_panel/ui_static_data(mob/user) + . = list() + .["co_flags"] = GLOB.co_flags + .["syn_flags"] = GLOB.syn_flags + .["yaut_flags"] = GLOB.yaut_flags + .["misc_flags"] = GLOB.misc_flags + + var/list/datum/view_record/players/players_view = DB_VIEW(/datum/view_record/players, DB_COMP("whitelist_status", DB_NOTEQUAL, "")) + + var/list/whitelisted_players = list() + for(var/datum/view_record/players/whitelistee in players_view) + var/list/current_player = list() + current_player["ckey"] = whitelistee.ckey + var/list/unreadable_list = splittext(whitelistee.whitelist_status, "|") + var/readable_list = unreadable_list.Join(" | ") + current_player["status"] = readable_list + whitelisted_players += list(current_player) + .["whitelisted_players"] = whitelisted_players + +/datum/whitelist_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return FALSE + var/mob/user = ui.user + if(!isSenator(user.client) && !CLIENT_HAS_RIGHTS(user.client, R_PERMISSIONS)) + return FALSE + switch(action) + if("go_back") + go_back() + if("select_player") + select_player(user, params["player"]) + return + if("add_player") + select_player(user, TRUE) + return + if("update_number") + new_rights = text2num(params["wl_flag"]) + return + if("update_perms") + var/player_key = params["player"] + var/reason = tgui_input_text(user, "What is the reason for this change?", "Update Reason") + if(!reason) + return + var/datum/entity/player/player = get_player_from_key(player_key) + player.set_whitelist_status(new_rights) + player.add_note("Whitelists updated by [user.key]. Reason: '[reason]'.", FALSE, NOTE_WHITELIST) + to_chat(user, SPAN_HELPFUL("Whitelists for [player_key] updated.")) + message_admins("Whitelists for [player_key] updated by [key_name(user)]. Reason: '[reason]'.") + log_admin("WHITELISTS: Flags for [player_key] changed from [target_rights] to [new_rights]. Reason: '[reason]'.") + go_back() + update_static_data(user, ui) + return + if("refresh_data") + update_static_data(user, ui) + to_chat(user, SPAN_NOTICE("Whitelist data refreshed.")) + +/datum/whitelist_panel/proc/select_player(mob/user, player_key) + var/target_key = player_key + if(IsAdminAdvancedProcCall()) + return PROC_BLOCKED + if(!target_key) + return FALSE + + if(target_key == TRUE) + var/new_player = tgui_input_text(user, "Enter the new ckey you wish to add. Do not include spaces or special characters.", "New Whitelistee") + if(!new_player) + return FALSE + target_key = new_player + + var/datum/entity/player/player = get_player_from_key(target_key) + var/list/current_player = list() + current_player["ckey"] = target_key + current_player["status"] = player.whitelist_status + + target_rights = player.whitelist_flags + new_rights = player.whitelist_flags + viewed_player = current_player + current_menu = "Update" + user_rights = get_user_rights(user) + return + +/datum/whitelist_panel/proc/go_back() + viewed_player = list() + user_rights = 0 + current_menu = "Panel" + target_rights = 0 + new_rights = 0 + + +#undef WL_PANEL_RIGHT_CO +#undef WL_PANEL_RIGHT_SYNTH +#undef WL_PANEL_RIGHT_YAUTJA +#undef WL_PANEL_RIGHT_MENTOR +#undef WL_PANEL_RIGHT_OVERSEER +#undef WL_PANEL_ALL_RIGHTS diff --git a/code/game/machinery/ARES/ARES_interface.dm b/code/game/machinery/ARES/ARES_interface.dm index 0e45d5ee17..0316274774 100644 --- a/code/game/machinery/ARES/ARES_interface.dm +++ b/code/game/machinery/ARES/ARES_interface.dm @@ -9,10 +9,10 @@ var/current_menu = "login" var/last_menu = "" - var/authentication = ARES_ACCESS_BASIC + var/authentication = ARES_ACCESS_LOGOUT /// The last person to login. - var/last_login + var/last_login = "No User" /// The person pretending to be last_login var/sudo_holder @@ -24,6 +24,8 @@ /// The datacore storing all the information. var/datum/ares_datacore/datacore + COOLDOWN_DECLARE(printer_cooldown) + /obj/structure/machinery/computer/ares_console/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) if(link && !override) return FALSE @@ -78,7 +80,7 @@ data["access_text"] = "[sudo_holder ? "(SUDO)," : ""] access level [authentication], [ares_auth_to_text(authentication)]." data["access_level"] = authentication - data["alert_level"] = security_level + data["alert_level"] = GLOB.security_level data["evac_status"] = SShijack.evac_status data["worldtime"] = world.time @@ -94,6 +96,8 @@ data["nuketimelock"] = NUCLEAR_TIME_LOCK data["nuke_available"] = datacore.nuke_available + data["printer_cooldown"] = !COOLDOWN_FINISHED(src, printer_cooldown) + var/list/logged_announcements = list() for(var/datum/ares_record/announcement/broadcast as anything in datacore.records_announcement) var/list/current_broadcast = list() @@ -183,6 +187,17 @@ logged_orders += list(current_order) data["records_requisition"] = logged_orders + var/list/logged_techs = list() + for(var/datum/ares_record/tech/tech_unlock as anything in datacore.records_tech) + var/list/current_tech = list() + current_tech["time"] = tech_unlock.time + current_tech["details"] = tech_unlock.details + current_tech["user"] = tech_unlock.user + current_tech["tier_changer"] = tech_unlock.is_tier + current_tech["ref"] = "\ref[tech_unlock]" + logged_techs += list(current_tech) + data["records_tech"] = logged_techs + var/list/logged_convos = list() var/list/active_convo = list() var/active_ref @@ -203,6 +218,8 @@ data["active_ref"] = active_ref data["conversations"] = logged_convos + data["security_vents"] = link.get_ares_vents() + return data /obj/structure/machinery/computer/ares_console/ui_status(mob/user, datum/ui_state/state) @@ -216,30 +233,30 @@ . = ..() if(.) return - - playsound(src, "keyboard_alt", 15, 1) + var/mob/user = ui.user + var/playsound = TRUE switch (action) if("go_back") if(!last_menu) - return to_chat(usr, SPAN_WARNING("Error, no previous page detected.")) + return to_chat(user, SPAN_WARNING("Error, no previous page detected.")) var/temp_holder = current_menu current_menu = last_menu last_menu = temp_holder if("login") - var/mob/living/carbon/human/operator = usr + var/mob/living/carbon/human/operator = user var/obj/item/card/id/idcard = operator.get_active_hand() if(istype(idcard)) authentication = get_ares_access(idcard) last_login = idcard.registered_name else if(operator.wear_id) - idcard = operator.wear_id - if(istype(idcard)) + idcard = operator.get_idcard() + if(idcard) authentication = get_ares_access(idcard) last_login = idcard.registered_name else - to_chat(usr, SPAN_WARNING("You require an ID card to access this terminal!")) + to_chat(user, SPAN_WARNING("You require an ID card to access this terminal!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(authentication) @@ -247,14 +264,14 @@ current_menu = "main" if("sudo") - var/new_user = tgui_input_text(usr, "Enter Sudo Username", "Sudo User", encode = FALSE) + var/new_user = tgui_input_text(user, "Enter Sudo Username", "Sudo User", encode = FALSE) if(new_user) if(new_user == sudo_holder) last_login = sudo_holder sudo_holder = null return FALSE if(new_user == last_login) - to_chat(usr, SPAN_WARNING("Already remote logged in as this user.")) + to_chat(user, SPAN_WARNING("Already remote logged in as this user.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE sudo_holder = last_login @@ -275,6 +292,8 @@ last_login = sudo_holder sudo_holder = null datacore.interface_access_list += "[last_login] logged out at [worldtime2text()]." + last_login = "No User" + authentication = ARES_ACCESS_LOGOUT if("home") last_menu = current_menu @@ -315,10 +334,84 @@ if("page_deleted_1to1") last_menu = current_menu current_menu = "deleted_talks" + if("page_tech") + last_menu = current_menu + current_menu = "tech_log" + if("page_core_sec") + last_menu = current_menu + current_menu = "core_security" + + // -- Print ASRS Audit Log -- // + if("print_req") + playsound = FALSE + if(!COOLDOWN_FINISHED(src, printer_cooldown)) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!length(datacore.records_asrs)) + to_chat(user, SPAN_WARNING("There are no records to print!")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + COOLDOWN_START(src, printer_cooldown, 20 SECONDS) + playsound(src, 'sound/machines/fax.ogg', 15, 1) + sleep(3.4 SECONDS) + var/contents = {" +
    \ +
    \ +

    A.S.R.S.

    \ +

    Automatic Storage Retrieval System

    \ +

    Audit Log

    \ +

    + Printed By: [last_login]
    + Print Time: [worldtime2text()]
    +
    +
    + + + + + + + + + + + "} + + for(var/datum/ares_record/requisition_log/req_order as anything in datacore.records_asrs) + + contents += {" + + + + + + + "} + + contents += "
    TimeUserSourceOrder
    [req_order.time][req_order.user][req_order.title][req_order.details]
    " + + var/obj/item/paper/log = new(loc) + log.name = "ASRS Audit Log" + log.info += contents + log.icon_state = "paper_uscm_words" + visible_message(SPAN_NOTICE("[src] prints out a paper.")) // -- Delete Button -- // if("delete_record") var/datum/ares_record/record = locate(params["record"]) + if(!istype(record)) + return FALSE if(record.record_name == ARES_RECORD_DELETED) return FALSE var/datum/ares_record/deletion/new_delete = new @@ -341,6 +434,14 @@ new_title = "[record.title] at [record.time]" new_details = "[record.details] Launched by [record.user]." datacore.records_bombardment -= record + if(ARES_RECORD_TECH) + new_title = "[record.title] at [record.time]" + new_details = record.details + datacore.records_tech -= record + if(ARES_RECORD_FLIGHT) + new_title = "[record.title] at [record.time]" + new_details = record.details + datacore.records_flight -= record new_delete.details = new_details new_delete.user = last_login @@ -366,12 +467,14 @@ datacore.records_talking -= conversation if("message_ares") - var/message = tgui_input_text(usr, "What do you wish to say to ARES?", "ARES Message", encode = FALSE) + var/message = tgui_input_text(user, "What do you wish to say to ARES?", "ARES Message", encode = FALSE) if(message) - message_ares(message, usr, params["active_convo"]) + message_ares(message, user, params["active_convo"]) if("read_record") var/datum/ares_record/deleted_talk/conversation = locate(params["record"]) + if(!istype(conversation)) + return FALSE deleted_1to1 = conversation.conversation last_menu = current_menu current_menu = "read_deleted" @@ -379,64 +482,64 @@ // -- Emergency Buttons -- // if("general_quarters") if(!COOLDOWN_FINISHED(datacore, ares_quarters_cooldown)) - to_chat(usr, SPAN_WARNING("It has not been long enough since the last General Quarters call!")) + to_chat(user, SPAN_WARNING("It has not been long enough since the last General Quarters call!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - if(security_level < SEC_LEVEL_RED) + if(GLOB.security_level < SEC_LEVEL_RED) set_security_level(SEC_LEVEL_RED, no_sound = TRUE, announce = FALSE) shipwide_ai_announcement("ATTENTION! GENERAL QUARTERS. ALL HANDS, MAN YOUR BATTLESTATIONS.", MAIN_AI_SYSTEM, 'sound/effects/GQfullcall.ogg') - log_game("[key_name(usr)] has called for general quarters via ARES.") - message_admins("[key_name_admin(usr)] has called for general quarters via ARES.") - log_ares_security("General Quarters", "[last_login] has called for general quarters via ARES.") + log_game("[key_name(user)] has called for general quarters via ARES.") + message_admins("[key_name_admin(user)] has called for general quarters via ARES.") + log_ares_security("General Quarters", "Called for general quarters via ARES.", last_login) COOLDOWN_START(datacore, ares_quarters_cooldown, 10 MINUTES) . = TRUE if("evacuation_start") - if(security_level < SEC_LEVEL_RED) - to_chat(usr, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) + if(GLOB.security_level < SEC_LEVEL_RED) + to_chat(user, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(SShijack.evac_admin_denied) - to_chat(usr, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) + to_chat(user, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(!SShijack.initiate_evacuation()) - to_chat(usr, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) + to_chat(user, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - log_game("[key_name(usr)] has called for an emergency evacuation via ARES.") - message_admins("[key_name_admin(usr)] has called for an emergency evacuation via ARES.") - log_ares_security("Initiate Evacuation", "[last_login] has called for an emergency evacuation via ARES.") + log_game("[key_name(user)] has called for an emergency evacuation via ARES.") + message_admins("[key_name_admin(user)] has called for an emergency evacuation via ARES.") + log_ares_security("Initiate Evacuation", "Called for an emergency evacuation via ARES.", last_login) . = TRUE if("distress") if(!SSticker.mode) return FALSE //Not a game mode? if(world.time < DISTRESS_TIME_LOCK) - to_chat(usr, SPAN_WARNING("You have been here for less than six minutes... what could you possibly have done!")) + to_chat(user, SPAN_WARNING("You have been here for less than six minutes... what could you possibly have done!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(!COOLDOWN_FINISHED(datacore, ares_distress_cooldown)) - to_chat(usr, SPAN_WARNING("The distress launcher is cooling down!")) + to_chat(user, SPAN_WARNING("The distress launcher is cooling down!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - if(security_level == SEC_LEVEL_DELTA) - to_chat(usr, SPAN_WARNING("The ship is already undergoing self destruct procedures!")) + if(GLOB.security_level == SEC_LEVEL_DELTA) + to_chat(user, SPAN_WARNING("The ship is already undergoing self destruct procedures!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - else if(security_level < SEC_LEVEL_RED) - to_chat(usr, SPAN_WARNING("The ship must be under red alert to launch a distress beacon!")) + if(GLOB.security_level < SEC_LEVEL_RED) + to_chat(user, SPAN_WARNING("The ship must be under red alert to launch a distress beacon!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE for(var/client/admin in GLOB.admins) if((R_ADMIN|R_MOD) & admin.admin_holder.rights) playsound_client(admin,'sound/effects/sos-morse-code.ogg',10) - SSticker.mode.request_ert(usr, TRUE) - to_chat(usr, SPAN_NOTICE("A distress beacon request has been sent to USCM High Command.")) + SSticker.mode.request_ert(user, TRUE) + to_chat(user, SPAN_NOTICE("A distress beacon request has been sent to USCM High Command.")) COOLDOWN_START(datacore, ares_distress_cooldown, COOLDOWN_COMM_REQUEST) return TRUE @@ -444,28 +547,57 @@ if(!SSticker.mode) return FALSE //Not a game mode? if(world.time < NUCLEAR_TIME_LOCK) - to_chat(usr, SPAN_WARNING("It is too soon to request Nuclear Ordnance!")) + to_chat(user, SPAN_WARNING("It is too soon to request Nuclear Ordnance!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(!COOLDOWN_FINISHED(datacore, ares_nuclear_cooldown)) - to_chat(usr, SPAN_WARNING("The ordnance request frequency is garbled, wait for reset!")) + to_chat(user, SPAN_WARNING("The ordnance request frequency is garbled, wait for reset!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - if(security_level == SEC_LEVEL_DELTA || SSticker.mode.is_in_endgame) - to_chat(usr, SPAN_WARNING("The mission has failed catastrophically, what do you want a nuke for?!")) + if(GLOB.security_level == SEC_LEVEL_DELTA || SSticker.mode.is_in_endgame) + to_chat(user, SPAN_WARNING("The mission has failed catastrophically, what do you want a nuke for?!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - var/reason = tgui_input_text(usr, "Please enter reason nuclear ordnance is required.", "Reason for Nuclear Ordnance") + var/reason = tgui_input_text(user, "Please enter reason nuclear ordnance is required.", "Reason for Nuclear Ordnance") if(!reason) return FALSE for(var/client/admin in GLOB.admins) if((R_ADMIN|R_MOD) & admin.admin_holder.rights) playsound_client(admin,'sound/effects/sos-morse-code.ogg',10) - message_admins("[key_name(usr)] has requested use of Nuclear Ordnance (via ARES)! Reason: [reason] [CC_MARK(usr)] (APPROVE) (DENY) [ADMIN_JMP_USER(usr)] [CC_REPLY(usr)]") - to_chat(usr, SPAN_NOTICE("A nuclear ordnance request has been sent to USCM High Command for the following reason: [reason]")) - log_ares_security("Nuclear Ordnance Request", "[last_login] has sent a request for nuclear ordnance for the following reason: [reason]") + message_admins("[key_name(user)] has requested use of Nuclear Ordnance (via ARES)! Reason: [reason] [CC_MARK(user)] (APPROVE) (DENY) [ADMIN_JMP_USER(user)] [CC_REPLY(user)]") + to_chat(user, SPAN_NOTICE("A nuclear ordnance request has been sent to USCM High Command for the following reason: [reason]")) + log_ares_security("Nuclear Ordnance Request", "Sent a request for nuclear ordnance for the following reason: [reason]", last_login) if(ares_can_interface()) ai_silent_announcement("[last_login] has sent a request for nuclear ordnance to USCM High Command.", ".V") ai_silent_announcement("Reason given: [reason].", ".V") COOLDOWN_START(datacore, ares_nuclear_cooldown, COOLDOWN_COMM_DESTRUCT) return TRUE + + if("trigger_vent") + playsound = FALSE + var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + if(!istype(sec_vent) || sec_vent.welded) + to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!COOLDOWN_FINISHED(sec_vent, vent_trigger_cooldown)) + to_chat(user, SPAN_WARNING("ERROR: Insufficient gas reserve for this vent.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + to_chat(user, SPAN_WARNING("Initiating gas release from [sec_vent.vent_tag].")) + playsound(src, 'sound/machines/chime.ogg', 15, 1) + COOLDOWN_START(sec_vent, vent_trigger_cooldown, COOLDOWN_ARES_VENT) + ares_apollo_talk("Nerve Gas release imminent from [sec_vent.vent_tag].") + log_ares_security("Nerve Gas Release", "Released Nerve Gas from Vent '[sec_vent.vent_tag]'.", last_login) + sec_vent.create_gas(VENT_GAS_CN20_XENO, 6, 5 SECONDS) + log_admin("[key_name(user)] released nerve gas from Vent '[sec_vent.vent_tag]' via ARES.") + + if("security_lockdown") + if(!COOLDOWN_FINISHED(datacore, aicore_lockdown)) + to_chat(user, SPAN_BOLDWARNING("AI Core Lockdown procedures are on cooldown! They will be ready in [COOLDOWN_SECONDSLEFT(datacore, aicore_lockdown)] seconds!")) + return FALSE + aicore_lockdown(user) + return TRUE + + if(playsound) + playsound(src, "keyboard_alt", 15, 1) diff --git a/code/game/machinery/ARES/ARES_interface_admin.dm b/code/game/machinery/ARES/ARES_interface_admin.dm new file mode 100644 index 0000000000..758ba9fbb5 --- /dev/null +++ b/code/game/machinery/ARES/ARES_interface_admin.dm @@ -0,0 +1,516 @@ +/client/proc/cmd_admin_open_ares() + set name = "Open ARES Interface" + set category = "Admin.Factions" + + var/mob/user = usr + if(!check_rights(R_MOD)) + to_chat(user, SPAN_WARNING("You do not have access to this command.")) + return FALSE + + if(!SSticker.mode) + to_chat(user, SPAN_WARNING("The round has not started yet.")) + return FALSE + + if(!GLOB.ares_link || !GLOB.ares_link.admin_interface || !GLOB.ares_link.interface) + to_chat(usr, SPAN_BOLDWARNING("ERROR: ARES Link or Interface not found!")) + return FALSE + GLOB.ares_link.tgui_interact(user) + var/log = "[key_name(user)] opened the remote ARES Interface." + if(user.job) + log = "[key_name(user)] ([user.job]) opened the remote ARES Interface." + log_admin(log) + +/datum/ares_console_admin + var/current_menu = "login" + var/last_menu = "" + + var/authentication = ARES_ACCESS_BASIC + + /// The last admin to login. + var/last_login + /// The currently logged in admin. + var/logged_in + /// A record of who logged in and when. + var/list/access_list = list() + var/list/deleted_1to1 = list() + + +/datum/ares_link/tgui_interact(mob/user, datum/tgui/ui) + if(!interface || !admin_interface) + to_chat(user, SPAN_WARNING("ARES ADMIN DATA LINK FAILED")) + return FALSE + ui = SStgui.try_update_ui(user, GLOB.ares_link, ui) + if(!ui) + ui = new(user, GLOB.ares_link, "AresAdmin", "ARES Admin Interface") + ui.open() + +/datum/ares_link/ui_data(mob/user) + if(!interface) + to_chat(user, SPAN_WARNING("ARES ADMIN DATA LINK FAILED")) + return FALSE + var/list/data = list() + + data["admin_login"] = "[admin_interface.logged_in], [user.client.admin_holder?.rank]" + data["admin_access_log"] = list(admin_interface.access_list) + + data["current_menu"] = admin_interface.current_menu + data["last_page"] = admin_interface.last_menu + + data["logged_in"] = interface.last_login + data["sudo"] = interface.sudo_holder ? TRUE : FALSE + + data["access_text"] = "[interface.sudo_holder ? "(SUDO)," : ""] access level [interface.authentication], [interface.ares_auth_to_text(interface.authentication)]." + data["access_level"] = interface.authentication + + data["alert_level"] = GLOB.security_level + data["evac_status"] = SShijack.evac_status + data["worldtime"] = world.time + + data["access_log"] = datacore.interface_access_list + data["apollo_log"] = datacore.apollo_log + + data["deleted_conversation"] = admin_interface.deleted_1to1 + + data["distresstime"] = datacore.ares_distress_cooldown + data["distresstimelock"] = DISTRESS_TIME_LOCK + data["mission_failed"] = SSticker.mode.is_in_endgame + data["nuketimelock"] = NUCLEAR_TIME_LOCK + data["nuke_available"] = datacore.nuke_available + + var/list/logged_announcements = list() + for(var/datum/ares_record/announcement/broadcast in datacore.records_announcement) + var/list/current_broadcast = list() + current_broadcast["time"] = broadcast.time + current_broadcast["title"] = broadcast.title + current_broadcast["details"] = broadcast.details + current_broadcast["ref"] = "\ref[broadcast]" + logged_announcements += list(current_broadcast) + data["records_announcement"] = logged_announcements + + var/list/logged_alerts = list() + for(var/datum/ares_record/security/security_alert in datacore.records_security) + var/list/current_alert = list() + current_alert["time"] = security_alert.time + current_alert["title"] = security_alert.title + current_alert["details"] = security_alert.details + current_alert["ref"] = "\ref[security_alert]" + logged_alerts += list(current_alert) + data["records_security"] = logged_alerts + + var/list/logged_flights = list() + for(var/datum/ares_record/flight/flight_log in datacore.records_flight) + var/list/current_flight = list() + current_flight["time"] = flight_log.time + current_flight["title"] = flight_log.title + current_flight["details"] = flight_log.details + current_flight["user"] = flight_log.user + current_flight["ref"] = "\ref[flight_log]" + logged_flights += list(current_flight) + data["records_flight"] = logged_flights + + var/list/logged_bioscans = list() + for(var/datum/ares_record/bioscan/scan in datacore.records_bioscan) + var/list/current_scan = list() + current_scan["time"] = scan.time + current_scan["title"] = scan.title + current_scan["details"] = scan.details + current_scan["ref"] = "\ref[scan]" + logged_bioscans += list(current_scan) + data["records_bioscan"] = logged_bioscans + + var/list/logged_bombs = list() + for(var/datum/ares_record/bombardment/bomb in datacore.records_bombardment) + var/list/current_bomb = list() + current_bomb["time"] = bomb.time + current_bomb["title"] = bomb.title + current_bomb["details"] = bomb.details + current_bomb["user"] = bomb.user + current_bomb["ref"] = "\ref[bomb]" + logged_bombs += list(current_bomb) + data["records_bombardment"] = logged_bombs + + var/list/logged_deletes = list() + for(var/datum/ares_record/deletion/deleted in datacore.records_deletion) + var/list/current_delete = list() + current_delete["time"] = deleted.time + current_delete["title"] = deleted.title + current_delete["details"] = deleted.details + current_delete["user"] = deleted.user + current_delete["ref"] = "\ref[deleted]" + logged_deletes += list(current_delete) + data["records_deletion"] = logged_deletes + + var/list/logged_discussions = list() + for(var/datum/ares_record/deleted_talk/deleted_convo in datacore.records_deletion) + var/list/deleted_disc = list() + deleted_disc["time"] = deleted_convo.time + deleted_disc["title"] = deleted_convo.title + deleted_disc["ref"] = "\ref[deleted_convo]" + logged_discussions += list(deleted_disc) + data["deleted_discussions"] = logged_discussions + + var/list/logged_orders = list() + for(var/datum/ares_record/requisition_log/req_order in datacore.records_asrs) + var/list/current_order = list() + current_order["time"] = req_order.time + current_order["details"] = req_order.details + current_order["title"] = req_order.title + current_order["user"] = req_order.user + current_order["ref"] = "\ref[req_order]" + logged_orders += list(current_order) + data["records_requisition"] = logged_orders + + var/list/logged_techs = list() + for(var/datum/ares_record/tech/tech_unlock as anything in datacore.records_tech) + var/list/current_tech = list() + current_tech["time"] = tech_unlock.time + current_tech["details"] = tech_unlock.details + current_tech["user"] = tech_unlock.user + current_tech["tier_changer"] = tech_unlock.is_tier + current_tech["ref"] = "\ref[tech_unlock]" + logged_techs += list(current_tech) + data["records_tech"] = logged_techs + + var/list/logged_convos = list() + var/list/active_convo = list() + var/active_ref + for(var/datum/ares_record/talk_log/log in datacore.records_talking) + if(log.user == interface.last_login) + active_convo = log.conversation + active_ref = "\ref[log]" + + var/list/current_convo = list() + current_convo["user"] = log.user + current_convo["ref"] = "\ref[log]" + current_convo["conversation"] = log.conversation + logged_convos += list(current_convo) + + data["active_convo"] = active_convo + data["active_ref"] = active_ref + data["conversations"] = logged_convos + + var/list/logged_maintenance = list() + for(var/datum/ares_ticket/maintenance/maint_ticket in tickets_maintenance) + var/lock_status = TICKET_OPEN + switch(maint_ticket.ticket_status) + if(TICKET_REJECTED, TICKET_CANCELLED, TICKET_COMPLETED) + lock_status = TICKET_CLOSED + + var/list/current_maint = list() + current_maint["id"] = maint_ticket.ticket_id + current_maint["time"] = maint_ticket.ticket_time + current_maint["priority_status"] = maint_ticket.ticket_priority + current_maint["category"] = maint_ticket.ticket_name + current_maint["details"] = maint_ticket.ticket_details + current_maint["status"] = maint_ticket.ticket_status + current_maint["submitter"] = maint_ticket.ticket_submitter + current_maint["assignee"] = maint_ticket.ticket_assignee + current_maint["lock_status"] = lock_status + current_maint["ref"] = "\ref[maint_ticket]" + logged_maintenance += list(current_maint) + data["maintenance_tickets"] = logged_maintenance + + var/list/logged_access = list() + for(var/datum/ares_ticket/access/access_ticket in tickets_access) + var/lock_status = TICKET_OPEN + switch(access_ticket.ticket_status) + if(TICKET_REJECTED, TICKET_CANCELLED, TICKET_REVOKED) + lock_status = TICKET_CLOSED + + var/list/current_ticket = list() + current_ticket["id"] = access_ticket.ticket_id + current_ticket["time"] = access_ticket.ticket_time + current_ticket["priority_status"] = access_ticket.ticket_priority + current_ticket["title"] = access_ticket.ticket_name + current_ticket["details"] = access_ticket.ticket_details + current_ticket["status"] = access_ticket.ticket_status + current_ticket["submitter"] = access_ticket.ticket_submitter + current_ticket["assignee"] = access_ticket.ticket_assignee + current_ticket["lock_status"] = lock_status + current_ticket["ref"] = "\ref[access_ticket]" + logged_access += list(current_ticket) + data["access_tickets"] = logged_access + + data["security_vents"] = get_ares_vents() + + return data + + +/datum/ares_link/ui_state(mob/user) + return GLOB.admin_state + +/datum/ares_link/ui_close(mob/user) + . = ..() + if(admin_interface.logged_in && (user.ckey == admin_interface.logged_in)) + admin_interface.current_menu = "login" + admin_interface.last_menu = "login" + admin_interface.access_list += "[admin_interface.logged_in] logged out at [worldtime2text()]." + admin_interface.last_login = admin_interface.logged_in + admin_interface.logged_in = null + +/datum/ares_link/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + var/mob/user = ui.user + if(!check_rights_for(user.client, R_MOD)) + to_chat(user, SPAN_WARNING("You require staff identification to access this terminal!")) + return FALSE + switch (action) + if("go_back") + if(!admin_interface.last_menu) + to_chat(user, SPAN_WARNING("Error, no previous page detected.")) + return FALSE + var/temp_holder = admin_interface.current_menu + admin_interface.current_menu = admin_interface.last_menu + admin_interface.last_menu = temp_holder + + if("login") + admin_interface.logged_in = user.client.ckey + admin_interface.access_list += "[user.client.ckey] at [worldtime2text()], Access Level '[user.client.admin_holder?.rank]'." + admin_interface.current_menu = "main" + + // -- Page Changers -- // + if("logout") + admin_interface.current_menu = "login" + admin_interface.last_menu = "login" + admin_interface.access_list += "[admin_interface.logged_in] logged out at [worldtime2text()]. (UI Termination)" + admin_interface.last_login = admin_interface.logged_in + admin_interface.logged_in = null + + if("home") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "main" + if("page_1to1") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "talking" + if("page_announcements") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "announcements" + if("page_bioscans") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "bioscans" + if("page_bombardments") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "bombardments" + if("page_apollo") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "apollo" + if("page_access") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "access_log" + if("page_admin_list") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "admin_access_log" + if("page_security") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "security" + if("page_requisitions") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "requisitions" + if("page_flight") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "flight_log" + if("page_emergency") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "emergency" + if("page_deleted") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "delete_log" + if("page_deleted_1to1") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "deleted_talks" + if("page_tech") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "tech_log" + if("page_core_sec") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "core_security" + if("page_access_management") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "access_management" + if("page_maint_management") + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "maintenance_management" + + // -- 1:1 Conversation -- // + if("new_conversation") + var/datum/ares_record/talk_log/convo = new(interface.last_login) + convo.conversation += "[MAIN_AI_SYSTEM] at [worldtime2text()], 'New 1:1 link initiated. Greetings, [interface.last_login].'" + datacore.records_talking += convo + + if("clear_conversation") + var/datum/ares_record/talk_log/conversation = locate(params["active_convo"]) + if(!istype(conversation)) + return FALSE + var/datum/ares_record/deleted_talk/deleted = new + deleted.title = conversation.title + deleted.conversation = conversation.conversation + deleted.user = MAIN_AI_SYSTEM + datacore.records_deletion += deleted + datacore.records_talking -= conversation + + if("fake_message_ares") + var/message = tgui_input_text(user, "What do you wish to say to ARES?", "ARES Message", encode = FALSE) + if(message) + interface.message_ares(message, user, params["active_convo"], TRUE) + if("ares_reply") + var/message = tgui_input_text(user, "What do you wish to reply with?", "ARES Response", encode = FALSE) + if(message) + interface.response_from_ares(message, params["active_convo"]) + var/datum/ares_record/talk_log/conversation = locate(params["active_convo"]) + if(!istype(conversation)) + return FALSE + var/admin_log = SPAN_STAFF_IC("ADMINS/MODS: [SPAN_RED("[key_name(user)] replied to [conversation.user]'s ARES message")] [SPAN_GREEN("via Remote Interface")] with: [SPAN_BLUE(message)] ") + for(var/client/admin in GLOB.admins) + if((R_ADMIN|R_MOD) & admin.admin_holder.rights) + to_chat(admin, admin_log) + + if("read_record") + var/datum/ares_record/deleted_talk/conversation = locate(params["record"]) + if(!istype(conversation)) + return FALSE + admin_interface.deleted_1to1 = conversation.conversation + admin_interface.last_menu = admin_interface.current_menu + admin_interface.current_menu = "read_deleted" + + if("claim_ticket") + var/datum/ares_ticket/ticket = locate(params["ticket"]) + if(!istype(ticket)) + return FALSE + var/claim = TRUE + var/assigned = ticket.ticket_assignee + if(assigned) + if(assigned == MAIN_AI_SYSTEM) + var/prompt = tgui_alert(user, "ARES already claimed this ticket! Do you wish to drop the claim?", "Unclaim ticket", list("Yes", "No")) + if(prompt != "Yes") + return FALSE + /// set ticket back to pending + ticket.ticket_assignee = null + ticket.ticket_status = TICKET_PENDING + return claim + var/choice = tgui_alert(user, "This ticket has already been claimed by [assigned]! Do you wish to override their claim?", "Claim Override", list("Yes", "No")) + if(choice != "Yes") + claim = FALSE + if(claim) + ticket.ticket_assignee = MAIN_AI_SYSTEM + ticket.ticket_status = TICKET_ASSIGNED + return claim + + if("auth_access") + var/datum/ares_ticket/access/access_ticket = locate(params["ticket"]) + if(!istype(access_ticket)) + return FALSE + for(var/obj/item/card/id/identification in waiting_ids) + if(identification.registered_gid != access_ticket.user_id_num) + continue + identification.handle_ares_access(MAIN_AI_SYSTEM, user) + access_ticket.ticket_status = TICKET_GRANTED + ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] granted core access.") + return TRUE + for(var/obj/item/card/id/identification in active_ids) + if(identification.registered_gid != access_ticket.user_id_num) + continue + identification.handle_ares_access(MAIN_AI_SYSTEM, user) + access_ticket.ticket_status = TICKET_REVOKED + ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: core access for [access_ticket.ticket_submitter] revoked.") + return TRUE + return FALSE + + if("reject_access") + var/datum/ares_ticket/access/access_ticket = locate(params["ticket"]) + if(!istype(access_ticket)) + return FALSE + access_ticket.ticket_status = TICKET_REJECTED + to_chat(user, SPAN_NOTICE("[access_ticket.ticket_type] [access_ticket.ticket_id] marked as rejected.")) + ares_apollo_talk("Access Ticket [access_ticket.ticket_id] rejected.") + return TRUE + + if("new_report") + var/priority_report = FALSE + var/maint_type = tgui_input_list(user, "What is the type of maintenance item you wish to report?", "Report Category", GLOB.maintenance_categories, 30 SECONDS) + switch(maint_type) + if("Major Structural Damage", "Fire", "Communications Failure", "Power Generation Failure") + priority_report = TRUE + + if(!maint_type) + return FALSE + var/details = tgui_input_text(user, "What are the details for this report?", "Ticket Details", encode = FALSE) + if(!details) + return FALSE + + if(!priority_report) + var/is_priority = tgui_alert(user, "Is this a priority report?", "Priority designation", list("Yes", "No")) + if(is_priority == "Yes") + priority_report = TRUE + + var/confirm = alert(user, "Please confirm the submission of your maintenance report. \n\n Priority: [priority_report ? "Yes" : "No"]\n Category: '[maint_type]'\n Details: '[details]'\n\n Is this correct?", "Confirmation", "Yes", "No") + if(confirm == "Yes") + var/datum/ares_ticket/maintenance/maint_ticket = new(MAIN_AI_SYSTEM, maint_type, details, priority_report) + tickets_maintenance += maint_ticket + if(priority_report) + ares_apollo_talk("Priority Maintenance Report: [maint_type] - ID [maint_ticket.ticket_id]. Seek and resolve.") + log_game("ARES: Maintenance Ticket '\ref[maint_ticket]' created by [key_name(user)] as [MAIN_AI_SYSTEM] with Category '[maint_type]' and Details of '[details]'.") + return TRUE + return FALSE + + if("cancel_ticket") + var/datum/ares_ticket/ticket = locate(params["ticket"]) + if(!istype(ticket)) + return FALSE + if(ticket.ticket_submitter != MAIN_AI_SYSTEM) + to_chat(user, SPAN_WARNING("You cannot cancel a ticket that does not belong to [MAIN_AI_SYSTEM]!")) + return FALSE + to_chat(user, SPAN_WARNING("[ticket.ticket_type] [ticket.ticket_id] has been cancelled.")) + ticket.ticket_status = TICKET_CANCELLED + if(ticket.ticket_priority) + ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been cancelled.") + return TRUE + + if("mark_ticket") + var/datum/ares_ticket/ticket = locate(params["ticket"]) + if(!istype(ticket)) + return FALSE + var/options_list = list(TICKET_COMPLETED, TICKET_REJECTED) + if(ticket.ticket_priority) + options_list += TICKET_NON_PRIORITY + else + options_list += TICKET_PRIORITY + var/choice = tgui_alert(user, "What do you wish to mark the ticket as?", "Mark", options_list, 20 SECONDS) + switch(choice) + if(TICKET_PRIORITY) + ticket.ticket_priority = TRUE + ares_apollo_talk("[ticket.ticket_type] [ticket.ticket_id] upgraded to Priority.") + return TRUE + if(TICKET_NON_PRIORITY) + ticket.ticket_priority = FALSE + ares_apollo_talk("[ticket.ticket_type] [ticket.ticket_id] downgraded from Priority.") + return TRUE + if(TICKET_COMPLETED) + ticket.ticket_status = TICKET_COMPLETED + if(TICKET_REJECTED) + ticket.ticket_status = TICKET_REJECTED + else + return FALSE + if(ticket.ticket_priority) + ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been [choice] by [MAIN_AI_SYSTEM].") + to_chat(user, SPAN_NOTICE("[ticket.ticket_type] [ticket.ticket_id] marked as [choice].")) + return TRUE + + if("trigger_vent") + var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + if(!istype(sec_vent) || sec_vent.welded) + to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!COOLDOWN_FINISHED(sec_vent, vent_trigger_cooldown)) + to_chat(user, SPAN_WARNING("ERROR: Insufficient gas reserve for this vent.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + to_chat(user, SPAN_WARNING("Initiating gas release from [sec_vent.vent_tag].")) + playsound(src, 'sound/machines/chime.ogg', 15, 1) + COOLDOWN_START(sec_vent, vent_trigger_cooldown, COOLDOWN_ARES_VENT) + ares_apollo_talk("Nerve Gas release imminent from [sec_vent.vent_tag].") + log_ares_security("Nerve Gas Release", "Released Nerve Gas from Vent '[sec_vent.vent_tag]'.", MAIN_AI_SYSTEM) + sec_vent.create_gas(VENT_GAS_CN20_XENO, 6, 5 SECONDS) + log_admin("[key_name(user)] released nerve gas from Vent '[sec_vent.vent_tag]' via ARES.") diff --git a/code/game/machinery/ARES/ARES_interface_apollo.dm b/code/game/machinery/ARES/ARES_interface_apollo.dm index 3bbc6065a8..93637f39d1 100644 --- a/code/game/machinery/ARES/ARES_interface_apollo.dm +++ b/code/game/machinery/ARES/ARES_interface_apollo.dm @@ -18,6 +18,9 @@ /// The last person to login. var/last_login + /// Notification sound + var/notify_sounds = TRUE + /obj/structure/machinery/computer/working_joe/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) if(link && !override) @@ -34,6 +37,16 @@ link_systems(override = FALSE) . = ..() +/obj/structure/machinery/computer/working_joe/proc/notify() + if(notify_sounds) + playsound(src, 'sound/machines/pda_ping.ogg', 25, 0) + +/obj/structure/machinery/computer/working_joe/proc/send_notifcation() + for(var/obj/structure/machinery/computer/working_joe/ticketer as anything in link.ticket_computers) + if(ticketer == src) + continue + ticketer.notify() + /obj/structure/machinery/computer/working_joe/proc/delink() if(link) link.ticket_computers -= src @@ -70,14 +83,15 @@ data["access_text"] = "access level [authentication], [ares_auth_to_text(authentication)]." data["access_level"] = authentication - data["alert_level"] = security_level + data["alert_level"] = GLOB.security_level data["worldtime"] = world.time data["access_log"] = list() data["access_log"] += datacore.apollo_login_list - data["apollo_log"] = list() - data["apollo_log"] += datacore.apollo_log + data["apollo_log"] = datacore.apollo_log + + data["notify_sounds"] = notify_sounds var/list/logged_maintenance = list() for(var/datum/ares_ticket/maintenance/maint_ticket as anything in link.tickets_maintenance) @@ -127,6 +141,8 @@ requesting_access += access_ticket.ticket_name data["access_tickets"] = logged_access + data["security_vents"] = link.get_ares_vents() + return data /obj/structure/machinery/computer/working_joe/ui_status(mob/user, datum/ui_state/state) @@ -142,29 +158,29 @@ return var/playsound = TRUE - var/mob/living/carbon/human/operator = usr + var/mob/living/carbon/human/user = ui.user switch (action) if("go_back") if(!last_menu) - return to_chat(usr, SPAN_WARNING("Error, no previous page detected.")) + return to_chat(user, SPAN_WARNING("Error, no previous page detected.")) var/temp_holder = current_menu current_menu = last_menu last_menu = temp_holder if("login") - var/obj/item/card/id/idcard = operator.get_active_hand() + var/obj/item/card/id/idcard = user.get_active_hand() if(istype(idcard)) authentication = get_ares_access(idcard) last_login = idcard.registered_name - else if(operator.wear_id) - idcard = operator.wear_id - if(istype(idcard)) + else if(user.wear_id) + idcard = user.get_idcard() + if(idcard) authentication = get_ares_access(idcard) last_login = idcard.registered_name else - to_chat(operator, SPAN_WARNING("You require an ID card to access this terminal!")) + to_chat(user, SPAN_WARNING("You require an ID card to access this terminal!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(authentication) @@ -197,33 +213,41 @@ if("page_maintenance") last_menu = current_menu current_menu = "maint_claim" + if("page_core_gas") + last_menu = current_menu + current_menu = "core_security_gas" + + if("toggle_sound") + notify_sounds = !notify_sounds if("new_report") var/priority_report = FALSE - var/maint_type = tgui_input_list(operator, "What is the type of maintenance item you wish to report?", "Report Category", GLOB.maintenance_categories, 30 SECONDS) + var/maint_type = tgui_input_list(user, "What is the type of maintenance item you wish to report?", "Report Category", GLOB.maintenance_categories, 30 SECONDS) switch(maint_type) if("Major Structural Damage", "Fire", "Communications Failure", "Power Generation Failure") priority_report = TRUE if(!maint_type) return FALSE - var/details = tgui_input_text(operator, "What are the details for this report?", "Ticket Details", encode = FALSE) + var/details = tgui_input_text(user, "What are the details for this report?", "Ticket Details", encode = FALSE) if(!details) return FALSE if((authentication >= APOLLO_ACCESS_REPORTER) && !priority_report) - var/is_priority = tgui_alert(operator, "Is this a priority report?", "Priority designation", list("Yes", "No")) + var/is_priority = tgui_alert(user, "Is this a priority report?", "Priority designation", list("Yes", "No")) if(is_priority == "Yes") priority_report = TRUE - var/confirm = alert(operator, "Please confirm the submission of your maintenance report. \n\n Priority: [priority_report ? "Yes" : "No"]\n Category: '[maint_type]'\n Details: '[details]'\n\n Is this correct?", "Confirmation", "Yes", "No") + var/confirm = alert(user, "Please confirm the submission of your maintenance report. \n\n Priority: [priority_report ? "Yes" : "No"]\n Category: '[maint_type]'\n Details: '[details]'\n\n Is this correct?", "Confirmation", "Yes", "No") if(confirm == "Yes") if(link) var/datum/ares_ticket/maintenance/maint_ticket = new(last_login, maint_type, details, priority_report) link.tickets_maintenance += maint_ticket if(priority_report) ares_apollo_talk("Priority Maintenance Report: [maint_type] - ID [maint_ticket.ticket_id]. Seek and resolve.") - log_game("ARES: Maintenance Ticket '\ref[maint_ticket]' created by [key_name(operator)] as [last_login] with Category '[maint_type]' and Details of '[details]'.") + else + send_notifcation() + log_game("ARES: Maintenance Ticket '\ref[maint_ticket]' created by [key_name(user)] as [last_login] with Category '[maint_type]' and Details of '[details]'.") return TRUE return FALSE @@ -235,14 +259,14 @@ var/assigned = ticket.ticket_assignee if(assigned) if(assigned == last_login) - var/prompt = tgui_alert(usr, "You already claimed this ticket! Do you wish to drop your claim?", "Unclaim ticket", list("Yes", "No")) + var/prompt = tgui_alert(user, "You already claimed this ticket! Do you wish to drop your claim?", "Unclaim ticket", list("Yes", "No")) if(prompt != "Yes") return FALSE /// set ticket back to pending ticket.ticket_assignee = null ticket.ticket_status = TICKET_PENDING return claim - var/choice = tgui_alert(usr, "This ticket has already been claimed by [assigned]! Do you wish to override their claim?", "Claim Override", list("Yes", "No")) + var/choice = tgui_alert(user, "This ticket has already been claimed by [assigned]! Do you wish to override their claim?", "Claim Override", list("Yes", "No")) if(choice != "Yes") claim = FALSE if(claim) @@ -255,12 +279,14 @@ if(!istype(ticket)) return FALSE if(ticket.ticket_submitter != last_login) - to_chat(usr, SPAN_WARNING("You cannot cancel a ticket that does not belong to you!")) + to_chat(user, SPAN_WARNING("You cannot cancel a ticket that does not belong to you!")) return FALSE - to_chat(usr, SPAN_WARNING("[ticket.ticket_type] [ticket.ticket_id] has been cancelled.")) + to_chat(user, SPAN_WARNING("[ticket.ticket_type] [ticket.ticket_id] has been cancelled.")) ticket.ticket_status = TICKET_CANCELLED if(ticket.ticket_priority) ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been cancelled.") + else + send_notifcation() return TRUE if("mark_ticket") @@ -268,9 +294,9 @@ if(!istype(ticket)) return FALSE if(ticket.ticket_assignee != last_login && ticket.ticket_assignee) //must be claimed by you or unclaimed.) - to_chat(usr, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) + to_chat(user, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) return FALSE - var/choice = tgui_alert(usr, "What do you wish to mark the ticket as?", "Mark", list(TICKET_COMPLETED, TICKET_REJECTED), 20 SECONDS) + var/choice = tgui_alert(user, "What do you wish to mark the ticket as?", "Mark", list(TICKET_COMPLETED, TICKET_REJECTED), 20 SECONDS) switch(choice) if(TICKET_COMPLETED) ticket.ticket_status = TICKET_COMPLETED @@ -280,39 +306,41 @@ return FALSE if(ticket.ticket_priority) ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been [choice] by [last_login].") - to_chat(usr, SPAN_NOTICE("[ticket.ticket_type] [ticket.ticket_id] marked as [choice].")) + else + send_notifcation() + to_chat(user, SPAN_NOTICE("[ticket.ticket_type] [ticket.ticket_id] marked as [choice].")) return TRUE if("new_access") - var/obj/item/card/id/idcard = operator.get_active_hand() + var/obj/item/card/id/idcard = user.get_active_hand() var/has_id = FALSE if(istype(idcard)) has_id = TRUE - else if(operator.wear_id) - idcard = operator.wear_id - if(istype(idcard)) + else if(user.wear_id) + idcard = user.get_idcard() + if(idcard) has_id = TRUE if(!has_id) - to_chat(operator, SPAN_WARNING("You require an ID card to request an access ticket!")) + to_chat(user, SPAN_WARNING("You require an ID card to request an access ticket!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(idcard.registered_name != last_login) - to_chat(operator, SPAN_WARNING("This ID card does not match the active login!")) + to_chat(user, SPAN_WARNING("This ID card does not match the active login!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - var/details = tgui_input_text(operator, "What is the purpose of this access ticket?", "Ticket Details", encode = FALSE) + var/details = tgui_input_text(user, "What is the purpose of this access ticket?", "Ticket Details", encode = FALSE) if(!details) return FALSE - var/confirm = alert(operator, "Please confirm the submission of your access ticket request.\n\nHolder: '[last_login]'\nDetails: '[details]'\n\nIs this correct?", "Confirmation", "Yes", "No") + var/confirm = alert(user, "Please confirm the submission of your access ticket request.\n\nHolder: '[last_login]'\nDetails: '[details]'\n\nIs this correct?", "Confirmation", "Yes", "No") if(confirm != "Yes" || !link) return FALSE var/datum/ares_ticket/access/access_ticket = new(last_login, details, FALSE, idcard.registered_gid) link.waiting_ids += idcard link.tickets_access += access_ticket - log_game("ARES: Access Ticket '\ref[access_ticket]' created by [key_name(operator)] as [last_login] with Details of '[details]'.") - message_admins(SPAN_STAFF_IC("[key_name_admin(operator)] created a new ARES Access Ticket."), 1) + log_game("ARES: Access Ticket '\ref[access_ticket]' created by [key_name(user)] as [last_login] with Details of '[details]'.") + message_admins(SPAN_STAFF_IC("[key_name_admin(user)] created a new ARES Access Ticket."), 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] requesting access for '[details].") return TRUE @@ -328,16 +356,14 @@ break for(var/obj/item/card/id/identification in link.active_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue access_ticket.ticket_status = TICKET_RETURNED identification.access -= ACCESS_MARINE_AI_TEMP - identification.modification_log += "Temporary AI Access self-returned by [key_name(operator)]." + identification.modification_log += "Temporary AI Access self-returned by [key_name(user)]." - to_chat(operator, SPAN_NOTICE("Temporary Access Ticket surrendered.")) + to_chat(user, SPAN_NOTICE("Temporary Access Ticket surrendered.")) playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] surrendered their access.") @@ -346,31 +372,27 @@ datacore.apollo_login_list += "[last_login] at [worldtime2text()], Surrendered Temporary Access Ticket." return TRUE - to_chat(operator, SPAN_WARNING("This ID card does not have an access ticket!")) + to_chat(user, SPAN_WARNING("This ID card does not have an access ticket!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if("auth_access") playsound = FALSE var/datum/ares_ticket/access/access_ticket = locate(params["ticket"]) - if(!access_ticket) + if(!istype(access_ticket)) return FALSE for(var/obj/item/card/id/identification in link.waiting_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue - identification.handle_ares_access(last_login, operator) + identification.handle_ares_access(last_login, user) access_ticket.ticket_status = TICKET_GRANTED playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] was granted access by [last_login].") return TRUE for(var/obj/item/card/id/identification in link.active_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue - identification.handle_ares_access(last_login, operator) + identification.handle_ares_access(last_login, user) access_ticket.ticket_status = TICKET_REVOKED playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] had access revoked by [last_login].") @@ -382,33 +404,72 @@ if(!istype(access_ticket)) return FALSE if(access_ticket.ticket_assignee != last_login && access_ticket.ticket_assignee) //must be claimed by you or unclaimed.) - to_chat(usr, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) + to_chat(user, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) return FALSE access_ticket.ticket_status = TICKET_REJECTED - to_chat(usr, SPAN_NOTICE("[access_ticket.ticket_type] [access_ticket.ticket_id] marked as rejected.")) + to_chat(user, SPAN_NOTICE("[access_ticket.ticket_type] [access_ticket.ticket_id] marked as rejected.")) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] was rejected access by [last_login].") + for(var/obj/item/card/id/identification in link.waiting_ids) + if(identification.registered_gid != access_ticket.user_id_num) + continue + var/mob/living/carbon/human/id_owner = identification.registered_ref?.resolve() + if(id_owner) + to_chat(id_owner, SPAN_WARNING("AI visitation access rejected.")) + playsound_client(id_owner?.client, 'sound/machines/pda_ping.ogg', src, 25, 0) + return TRUE + + if("trigger_vent") + playsound = FALSE + var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + if(!istype(sec_vent) || sec_vent.welded) + to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!COOLDOWN_FINISHED(sec_vent, vent_trigger_cooldown)) + to_chat(user, SPAN_WARNING("ERROR: Insufficient gas reserve for this vent.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + to_chat(user, SPAN_WARNING("Initiating gas release from [sec_vent.vent_tag].")) + playsound(src, 'sound/machines/chime.ogg', 15, 1) + COOLDOWN_START(sec_vent, vent_trigger_cooldown, COOLDOWN_ARES_VENT) + ares_apollo_talk("Nerve Gas release imminent from [sec_vent.vent_tag].") + log_ares_security("Nerve Gas Release", "Released Nerve Gas from Vent '[sec_vent.vent_tag]'.", last_login) + sec_vent.create_gas(VENT_GAS_CN20_XENO, 6, 5 SECONDS) + log_admin("[key_name(user)] released nerve gas from Vent '[sec_vent.vent_tag]' via ARES.") + + if("security_lockdown") + if(!COOLDOWN_FINISHED(datacore, aicore_lockdown)) + to_chat(user, SPAN_BOLDWARNING("AI Core Lockdown procedures are on cooldown! They will be ready in [COOLDOWN_SECONDSLEFT(datacore, aicore_lockdown)] seconds!")) + return FALSE + aicore_lockdown(user) return TRUE if(playsound) playsound(src, "keyboard_alt", 15, 1) -/obj/item/card/id/proc/handle_ares_access(logged_in, mob/user) - var/operator = key_name(user) +/obj/item/card/id/proc/handle_ares_access(logged_in = MAIN_AI_SYSTEM, mob/user) + var/changer = logged_in + if(user) + changer = key_name(user) var/datum/ares_link/link = GLOB.ares_link - if(logged_in == MAIN_AI_SYSTEM) - if(!user) - operator = "[MAIN_AI_SYSTEM] (Sensor Trip)" - else - operator = "[user.ckey]/([MAIN_AI_SYSTEM])" + if(ACCESS_MARINE_AI_TEMP in access) access -= ACCESS_MARINE_AI_TEMP link.active_ids -= src - modification_log += "Temporary AI access revoked by [operator]" + log_idmod(src, "Temporary AI access revoked by [logged_in]", changer) to_chat(user, SPAN_NOTICE("Access revoked from [registered_name].")) + var/mob/living/carbon/human/id_owner = registered_ref?.resolve() + if(id_owner) + to_chat(id_owner, SPAN_WARNING("AI visitation access revoked.")) + playsound_client(id_owner?.client, 'sound/machines/pda_ping.ogg', src, 25, 0) else access += ACCESS_MARINE_AI_TEMP - modification_log += "Temporary AI access granted by [operator]" + log_idmod(src, "Temporary AI access granted by [logged_in]", changer) to_chat(user, SPAN_NOTICE("Access granted to [registered_name].")) link.waiting_ids -= src link.active_ids += src + var/mob/living/carbon/human/id_owner = registered_ref?.resolve() + if(id_owner) + to_chat(id_owner, SPAN_HELPFUL("AI visitation access granted.")) + playsound_client(id_owner?.client, 'sound/machines/pda_ping.ogg', src, 25, 0) return TRUE diff --git a/code/game/machinery/ARES/ARES_procs.dm b/code/game/machinery/ARES/ARES_procs.dm index 64a30a230d..85a07e3c5a 100644 --- a/code/game/machinery/ARES/ARES_procs.dm +++ b/code/game/machinery/ARES/ARES_procs.dm @@ -1,5 +1,5 @@ -GLOBAL_DATUM_INIT(ares_link, /datum/ares_link, new) GLOBAL_DATUM_INIT(ares_datacore, /datum/ares_datacore, new) +GLOBAL_DATUM_INIT(ares_link, /datum/ares_link, new) GLOBAL_LIST_INIT(maintenance_categories, list( "Broken Light", "Shattered Glass", @@ -25,7 +25,14 @@ GLOBAL_LIST_INIT(maintenance_categories, list( var/obj/structure/machinery/ares/processor/apollo/processor_apollo var/obj/structure/machinery/ares/processor/bioscan/processor_bioscan var/obj/structure/machinery/computer/ares_console/interface + var/datum/ares_console_admin/admin_interface + var/datum/ares_datacore/datacore + var/list/obj/structure/machinery/computer/working_joe/ticket_computers = list() + /// Linked security gas vents. + var/list/linked_vents = list() + /// The tag number for generated vent labels, if none is manually set. + var/tag_num = 1 /// Working Joe stuff var/list/tickets_maintenance = list() @@ -33,6 +40,42 @@ GLOBAL_LIST_INIT(maintenance_categories, list( var/list/waiting_ids = list() var/list/active_ids = list() +/datum/ares_link/New() + admin_interface = new + datacore = GLOB.ares_datacore + +/datum/ares_link/Destroy() + qdel(admin_interface) + for(var/obj/structure/machinery/ares/link in linked_systems) + link.delink() + for(var/obj/structure/machinery/computer/ares_console/interface in linked_systems) + interface.delink() + for(var/obj/effect/step_trigger/ares_alert/alert in linked_alerts) + alert.delink() + ..() + +/datum/ares_link/proc/get_ares_vents() + var/list/security_vents = list() + var/datum/ares_link/link = GLOB.ares_link + for(var/obj/structure/pipes/vents/pump/no_boom/gas/vent in link.linked_vents) + if(!vent.vent_tag) + vent.vent_tag = "Security Vent #[link.tag_num]" + link.tag_num++ + + var/list/current_vent = list() + var/is_available = COOLDOWN_FINISHED(vent, vent_trigger_cooldown) + current_vent["vent_tag"] = vent.vent_tag + current_vent["ref"] = "\ref[vent]" + current_vent["available"] = is_available + security_vents += list(current_vent) + return security_vents + + +/* BELOW ARE IN AdminAres.dm +/datum/ares_link/tgui_interact(mob/user, datum/tgui/ui) +/datum/ares_link/ui_data(mob/user) +*/ + /datum/ares_datacore /// A record of who logged in and when. var/list/interface_access_list = list() @@ -58,28 +101,29 @@ GLOBAL_LIST_INIT(maintenance_categories, list( var/list/records_security = list() /// Holds all (/datum/ares_record/flight)s var/list/records_flight = list() + /// Holds all (/datum/ares_record/tech)s + var/list/records_tech = list() /// Is nuke request usable or not? var/nuke_available = TRUE + /// Status of the AI Core Lockdown + var/ai_lockdown_active = FALSE COOLDOWN_DECLARE(ares_distress_cooldown) COOLDOWN_DECLARE(ares_nuclear_cooldown) COOLDOWN_DECLARE(ares_quarters_cooldown) - -/datum/ares_link/Destroy() - for(var/obj/structure/machinery/ares/link in linked_systems) - link.delink() - for(var/obj/structure/machinery/computer/ares_console/interface in linked_systems) - interface.delink() - for(var/obj/effect/step_trigger/ares_alert/alert in linked_alerts) - alert.delink() - ..() - + COOLDOWN_DECLARE(aicore_lockdown) // ------ ARES Logging Procs ------ // +/proc/ares_is_active() + for(var/mob/living/silicon/decoy/ship_ai/ai in GLOB.ai_mob_list) + if(ai.stat == DEAD) + return FALSE //ARES dead, most other systems also die with it + return TRUE + /proc/ares_apollo_talk(broadcast_message) var/datum/language/apollo/apollo = GLOB.all_languages[LANGUAGE_APOLLO] - for(var/mob/living/silicon/decoy/ship_ai/ai in ai_mob_list) + for(var/mob/living/silicon/decoy/ship_ai/ai in GLOB.ai_mob_list) if(ai.stat == DEAD) return FALSE apollo.broadcast(ai, broadcast_message) @@ -89,48 +133,56 @@ GLOBAL_LIST_INIT(maintenance_categories, list( /proc/ares_can_interface() var/obj/structure/machinery/ares/processor/interface/processor = GLOB.ares_link.processor_interface - if(!istype(GLOB.ares_link)) + if(!istype(GLOB.ares_link) || !ares_is_active()) return FALSE if(processor && !processor.inoperable()) return TRUE return FALSE //interface processor not found or is broken /proc/ares_can_log() - if(!istype(GLOB.ares_link) || !istype(GLOB.ares_datacore)) + if(!istype(GLOB.ares_link) || !istype(GLOB.ares_datacore) || !ares_is_active()) return FALSE var/obj/structure/machinery/ares/cpu/central_processor = GLOB.ares_link.central_processor if(central_processor && !central_processor.inoperable()) return TRUE return FALSE //CPU not found or is broken -/proc/log_ares_apollo(speaker, message) - if(!ares_can_log()) +/proc/ares_can_apollo() + if(!istype(GLOB.ares_link) || !istype(GLOB.ares_datacore) || !ares_is_active()) return FALSE var/datum/ares_link/link = GLOB.ares_link if(!link.processor_apollo || link.processor_apollo.inoperable()) return FALSE + return TRUE + +/proc/log_ares_apollo(speaker, message) + if(!ares_can_log() || !ares_can_apollo()) + return FALSE if(!speaker) speaker = "Unknown" var/datum/ares_datacore/datacore = GLOB.ares_datacore datacore.apollo_log.Add("[worldtime2text()]: [speaker], '[message]'") -/proc/log_ares_bioscan(title, input) - if(!ares_can_log()) +/proc/log_ares_bioscan(title, input, forced = FALSE) + if(!ares_can_log() && !forced) return FALSE var/datum/ares_datacore/datacore = GLOB.ares_datacore datacore.records_bioscan.Add(new /datum/ares_record/bioscan(title, input)) -/proc/log_ares_bombardment(user_name, ob_name, coordinates) +/proc/log_ares_bombardment(user_name, ob_name, message) if(!ares_can_log()) return FALSE var/datum/ares_datacore/datacore = GLOB.ares_datacore - datacore.records_bombardment.Add(new /datum/ares_record/bombardment(ob_name, "Bombardment fired at [coordinates].", user_name)) + datacore.records_bombardment.Add(new /datum/ares_record/bombardment(ob_name, message, user_name)) -/proc/log_ares_announcement(title, message) +/proc/log_ares_announcement(title, message, signature) if(!ares_can_log()) return FALSE + var/final_msg = message + if(signature) + final_msg = "[signature]: - [final_msg]" var/datum/ares_datacore/datacore = GLOB.ares_datacore - datacore.records_announcement.Add(new /datum/ares_record/announcement(title, message)) + datacore.records_announcement.Add(new /datum/ares_record/announcement(title, final_msg)) /proc/log_ares_requisition(source, details, user_name) if(!ares_can_log()) @@ -138,11 +190,14 @@ GLOBAL_LIST_INIT(maintenance_categories, list( var/datum/ares_datacore/datacore = GLOB.ares_datacore datacore.records_asrs.Add(new /datum/ares_record/requisition_log(source, details, user_name)) -/proc/log_ares_security(title, details) +/proc/log_ares_security(title, details, signature) if(!ares_can_log()) return FALSE + var/final_msg = details + if(signature) + final_msg = "[signature]: - [final_msg]" var/datum/ares_datacore/datacore = GLOB.ares_datacore - datacore.records_security.Add(new /datum/ares_record/security(title, details)) + datacore.records_security.Add(new /datum/ares_record/security(title, final_msg)) /proc/log_ares_antiair(details) if(!ares_can_log()) @@ -155,6 +210,16 @@ GLOBAL_LIST_INIT(maintenance_categories, list( return FALSE var/datum/ares_datacore/datacore = GLOB.ares_datacore datacore.records_flight.Add(new /datum/ares_record/flight(details, user_name)) + +/proc/log_ares_tech(user_name, tier_tech = FALSE, title, details, point_cost, current_points) + if(!ares_can_log()) + return FALSE + var/new_details = "[title] - [details]" + if(point_cost) + new_details += " - Used [point_cost] INT of [current_points]." + var/datum/ares_datacore/datacore = GLOB.ares_datacore + datacore.records_tech.Add(new /datum/ares_record/tech(title, new_details, user_name, tier_tech)) + // ------ End ARES Logging Procs ------ // // ------ ARES Interface Procs ------ // @@ -168,9 +233,9 @@ GLOBAL_LIST_INIT(maintenance_categories, list( return ARES_ACCESS_CE if(JOB_SYNTH) return ARES_ACCESS_SYNTH - if(card.paygrade in GLOB.wy_paygrades) + if(card.paygrade in GLOB.wy_highcom_paygrades) return ARES_ACCESS_WY_COMMAND - if(card.paygrade in GLOB.highcom_paygrades) + if(card.paygrade in GLOB.uscm_highcom_paygrades) return ARES_ACCESS_HIGH if(card.paygrade in GLOB.co_paygrades) return ARES_ACCESS_CO @@ -187,46 +252,68 @@ GLOBAL_LIST_INIT(maintenance_categories, list( /obj/structure/machinery/computer/proc/ares_auth_to_text(access_level) switch(access_level) - if(ARES_ACCESS_BASIC)//0 + if(ARES_ACCESS_LOGOUT) + return "Logged Out" + if(ARES_ACCESS_BASIC) return "Authorized" - if(ARES_ACCESS_COMMAND)//1 + if(ARES_ACCESS_COMMAND) return "[MAIN_SHIP_NAME] Command" - if(ARES_ACCESS_JOE)//2 + if(ARES_ACCESS_JOE) return "Working Joe" - if(ARES_ACCESS_CORPORATE)//3 + if(ARES_ACCESS_CORPORATE) return "Weyland-Yutani" - if(ARES_ACCESS_SENIOR)//4 + if(ARES_ACCESS_SENIOR) return "[MAIN_SHIP_NAME] Senior Command" - if(ARES_ACCESS_CE)//5 + if(ARES_ACCESS_CE) return "Chief Engineer" - if(ARES_ACCESS_SYNTH)//6 + if(ARES_ACCESS_SYNTH) return "USCM Synthetic" - if(ARES_ACCESS_CO)//7 + if(ARES_ACCESS_CO) return "[MAIN_SHIP_NAME] Commanding Officer" - if(ARES_ACCESS_HIGH)//8 + if(ARES_ACCESS_HIGH) return "USCM High Command" - if(ARES_ACCESS_WY_COMMAND)//9 + if(ARES_ACCESS_WY_COMMAND) return "Weyland-Yutani Directorate" - if(ARES_ACCESS_DEBUG)//10 + if(ARES_ACCESS_DEBUG) return "AI Service Technician" -/obj/structure/machinery/computer/ares_console/proc/message_ares(text, mob/Sender, ref) - var/msg = SPAN_STAFF_IC("ARES: [key_name(Sender, 1)] [ARES_MARK(Sender)] [ADMIN_PP(Sender)] [ADMIN_VV(Sender)] [ADMIN_SM(Sender)] [ADMIN_JMP_USER(Sender)] [ARES_REPLY(Sender, ref)]: [text]") +/obj/structure/machinery/computer/ares_console/proc/message_ares(text, mob/Sender, ref, fake = FALSE) var/datum/ares_record/talk_log/conversation = locate(ref) + if(!istype(conversation)) + return + var/msg = SPAN_STAFF_IC("ARES: [key_name(Sender, 1)] [ARES_MARK(Sender)] [ADMIN_PP(Sender)] [ADMIN_VV(Sender)] [ADMIN_SM(Sender)] [ADMIN_JMP_USER(Sender)] [ARES_REPLY(Sender, ref)]: [text]") conversation.conversation += "[last_login] at [worldtime2text()], '[text]'" + if(fake) + log_say("[key_name(Sender)] faked the message '[text]' from [last_login] in ARES 1:1.") + msg = SPAN_STAFF_IC("ARES: [key_name(Sender, 1)] faked a message from '[last_login]': [text]") + else + log_say("[key_name(Sender)] sent '[text]' to ARES 1:1.") + for(var/client/admin in GLOB.admins) + if(admin.prefs.toggles_sound & SOUND_ARES_MESSAGE) + playsound_client(admin, 'sound/machines/chime.ogg', vol = 25) + for(var/client/admin in GLOB.admins) if((R_ADMIN|R_MOD) & admin.admin_holder.rights) to_chat(admin, msg) - if(admin.prefs.toggles_sound & SOUND_ARES_MESSAGE) - playsound_client(admin, 'sound/machines/chime.ogg', vol = 25) - log_say("[key_name(Sender)] sent '[text]' to ARES 1:1.") + var/admin_user = GLOB.ares_link.admin_interface.logged_in + if(admin_user && !fake) + to_chat(admin, SPAN_STAFF_IC("ADMINS/MODS: [SPAN_RED("[admin_user] is logged in to ARES Remote Interface! They may be replying to this message!")]")) /obj/structure/machinery/computer/ares_console/proc/response_from_ares(text, ref) var/datum/ares_record/talk_log/conversation = locate(ref) + if(!istype(conversation)) + return conversation.conversation += "[MAIN_AI_SYSTEM] at [worldtime2text()], '[text]'" // ------ End ARES Interface Procs ------ // +/proc/ares_final_words() + //APOLLO + ares_apollo_talk("APOLLO sub-system shutting down. STOP CODE: 0x000000f4|CRITICAL_PROCESS_DIED") + + //GENERAL CREW + shipwide_ai_announcement("A Problem has been detected and the [MAIN_AI_SYSTEM] system has been shutdown. \nTechnical Information: \n\n*** STOP CODE: 0x000000f4|CRITICAL_PROCESS_DIED\n\nPossible caused by: Rapid Unscheduled Disassembly\nContact an AI Service Technician for further assistance.", title = ":(", ares_logging = null) + /obj/structure/machinery/computer/working_joe/get_ares_access(obj/item/card/id/card) if(ACCESS_ARES_DEBUG in card.access) return APOLLO_ACCESS_DEBUG diff --git a/code/game/machinery/ARES/ARES_records.dm b/code/game/machinery/ARES/ARES_records.dm index f89b2c120e..5bfe50dce0 100644 --- a/code/game/machinery/ARES/ARES_records.dm +++ b/code/game/machinery/ARES/ARES_records.dm @@ -45,7 +45,7 @@ /datum/ares_record/flight/New(details, user) time = worldtime2text() - src.title = "Flight Log" + title = "Flight Log" src.details = details src.user = user @@ -58,6 +58,18 @@ src.details = details src.user = user +/datum/ares_record/tech + record_name = ARES_RECORD_TECH + /// If this tech unlock changed the tier. + var/is_tier = FALSE + +/datum/ares_record/tech/New(title, details, user, tier_tech) + time = worldtime2text() + src.title = title + src.details = details + src.user = user + is_tier = tier_tech + /datum/ares_record/deletion record_name = ARES_RECORD_DELETED diff --git a/code/game/machinery/ARES/ARES_step_triggers.dm b/code/game/machinery/ARES/ARES_step_triggers.dm index fdf7b26b2e..77a53200dd 100644 --- a/code/game/machinery/ARES/ARES_step_triggers.dm +++ b/code/game/machinery/ARES/ARES_step_triggers.dm @@ -33,9 +33,10 @@ return FALSE if(ishuman(passer)) var/mob/living/carbon/human/trespasser = passer - if(pass_accesses && (trespasser.wear_id)) + var/obj/item/card/id/card = trespasser.get_idcard() + if(pass_accesses && card) for(var/tag in pass_accesses) - if(tag in trespasser.wear_id.access) + if(tag in card.access) return FALSE Trigger(passer) return TRUE @@ -69,7 +70,7 @@ broadcast_message = "ALERT: Unauthorized movement detected in [area_name]!" var/datum/ares_link/link = GLOB.ares_link - if(link.processor_apollo.inoperable()) + if(!ares_can_apollo()) return FALSE to_chat(passer, SPAN_BOLDWARNING("You hear a soft beeping sound as you cross the threshold.")) @@ -123,11 +124,9 @@ var/check_contents = TRUE if(ishuman(passer)) var/mob/living/carbon/human/human_passer = passer - idcard = human_passer.wear_id - if(istype(idcard)) + idcard = human_passer.get_idcard() + if(idcard) check_contents = FALSE - else - idcard = null if(istype(passer, /obj/item/card/id)) idcard = passer @@ -154,7 +153,7 @@ var/broadcast_message = get_broadcast(passer, idcard, failure) var/datum/ares_link/link = GLOB.ares_link - if(link.processor_apollo.inoperable()) + if(!ares_can_apollo()) return FALSE to_chat(passer, SPAN_BOLDWARNING("You hear a harsh buzzing sound as you cross the threshold!")) diff --git a/code/game/machinery/ARES/apollo_pda.dm b/code/game/machinery/ARES/apollo_pda.dm index 26ec9d5120..7b92b869da 100644 --- a/code/game/machinery/ARES/apollo_pda.dm +++ b/code/game/machinery/ARES/apollo_pda.dm @@ -19,6 +19,9 @@ /// The last person to login. var/last_login + /// Notification sound + var/notify_sounds = TRUE + /obj/item/device/working_joe_pda/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) if(link && !override) @@ -35,6 +38,16 @@ link_systems(override = FALSE) . = ..() +/obj/item/device/working_joe_pda/proc/notify() + if(notify_sounds) + playsound(src, 'sound/machines/pda_ping.ogg', 25, 0) + +/obj/item/device/working_joe_pda/proc/send_notifcation() + for(var/obj/item/device/working_joe_pda/ticketer as anything in link.ticket_computers) + if(ticketer == src) + continue + ticketer.notify() + /obj/item/device/working_joe_pda/proc/delink() if(link) link.ticket_computers -= src @@ -94,7 +107,7 @@ data["access_text"] = "access level [authentication], [ares_auth_to_text(authentication)]." data["access_level"] = authentication - data["alert_level"] = security_level + data["alert_level"] = GLOB.security_level data["worldtime"] = world.time data["access_log"] = list() @@ -103,6 +116,8 @@ data["apollo_log"] = list() data["apollo_log"] += datacore.apollo_log + data["notify_sounds"] = notify_sounds + var/list/logged_maintenance = list() for(var/datum/ares_ticket/maintenance/maint_ticket as anything in link.tickets_maintenance) if(!istype(maint_ticket)) @@ -151,6 +166,8 @@ requesting_access += access_ticket.ticket_name data["access_tickets"] = logged_access + data["security_vents"] = link.get_ares_vents() + return data /obj/item/device/working_joe_pda/ui_status(mob/user, datum/ui_state/state) @@ -164,29 +181,29 @@ return var/playsound = TRUE - var/mob/living/carbon/human/operator = usr + var/mob/living/carbon/human/user = ui.user switch (action) if("go_back") if(!last_menu) - return to_chat(usr, SPAN_WARNING("Error, no previous page detected.")) + return to_chat(user, SPAN_WARNING("Error, no previous page detected.")) var/temp_holder = current_menu current_menu = last_menu last_menu = temp_holder if("login") - var/obj/item/card/id/idcard = operator.get_active_hand() + var/obj/item/card/id/idcard = user.get_active_hand() if(istype(idcard)) authentication = get_ares_access(idcard) last_login = idcard.registered_name - else if(operator.wear_id) - idcard = operator.wear_id - if(istype(idcard)) + else if(user.wear_id) + idcard = user.get_idcard() + if(idcard) authentication = get_ares_access(idcard) last_login = idcard.registered_name else - to_chat(operator, SPAN_WARNING("You require an ID card to access this terminal!")) + to_chat(user, SPAN_WARNING("You require an ID card to access this terminal!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(authentication) @@ -222,33 +239,41 @@ if("page_maintenance") last_menu = current_menu current_menu = "maint_claim" + if("page_core_gas") + last_menu = current_menu + current_menu = "core_security_gas" + + if("toggle_sound") + notify_sounds = !notify_sounds if("new_report") var/priority_report = FALSE - var/maint_type = tgui_input_list(operator, "What is the type of maintenance item you wish to report?", "Report Category", GLOB.maintenance_categories, 30 SECONDS) + var/maint_type = tgui_input_list(user, "What is the type of maintenance item you wish to report?", "Report Category", GLOB.maintenance_categories, 30 SECONDS) switch(maint_type) if("Major Structural Damage", "Fire", "Communications Failure", "Power Generation Failure") priority_report = TRUE if(!maint_type) return FALSE - var/details = tgui_input_text(operator, "What are the details for this report?", "Ticket Details", encode = FALSE) + var/details = tgui_input_text(user, "What are the details for this report?", "Ticket Details", encode = FALSE) if(!details) return FALSE if((authentication >= APOLLO_ACCESS_REPORTER) && !priority_report) - var/is_priority = tgui_alert(operator, "Is this a priority report?", "Priority designation", list("Yes", "No")) + var/is_priority = tgui_alert(user, "Is this a priority report?", "Priority designation", list("Yes", "No")) if(is_priority == "Yes") priority_report = TRUE - var/confirm = alert(operator, "Please confirm the submission of your maintenance report. \n\n Priority: [priority_report ? "Yes" : "No"]\n Category: '[maint_type]'\n Details: '[details]'\n\n Is this correct?", "Confirmation", "Yes", "No") + var/confirm = alert(user, "Please confirm the submission of your maintenance report. \n\n Priority: [priority_report ? "Yes" : "No"]\n Category: '[maint_type]'\n Details: '[details]'\n\n Is this correct?", "Confirmation", "Yes", "No") if(confirm == "Yes") if(link) var/datum/ares_ticket/maintenance/maint_ticket = new(last_login, maint_type, details, priority_report) link.tickets_maintenance += maint_ticket if(priority_report) ares_apollo_talk("Priority Maintenance Report: [maint_type] - ID [maint_ticket.ticket_id]. Seek and resolve.") - log_game("ARES: Maintenance Ticket '\ref[maint_ticket]' created by [key_name(operator)] as [last_login] with Category '[maint_type]' and Details of '[details]'.") + else + send_notifcation() + log_game("ARES: Maintenance Ticket '\ref[maint_ticket]' created by [key_name(user)] as [last_login] with Category '[maint_type]' and Details of '[details]'.") return TRUE return FALSE @@ -260,14 +285,14 @@ var/assigned = ticket.ticket_assignee if(assigned) if(assigned == last_login) - var/prompt = tgui_alert(usr, "You already claimed this ticket! Do you wish to drop your claim?", "Unclaim ticket", list("Yes", "No")) + var/prompt = tgui_alert(user, "You already claimed this ticket! Do you wish to drop your claim?", "Unclaim ticket", list("Yes", "No")) if(prompt != "Yes") return FALSE /// set ticket back to pending ticket.ticket_assignee = null ticket.ticket_status = TICKET_PENDING return claim - var/choice = tgui_alert(usr, "This ticket has already been claimed by [assigned]! Do you wish to override their claim?", "Claim Override", list("Yes", "No")) + var/choice = tgui_alert(user, "This ticket has already been claimed by [assigned]! Do you wish to override their claim?", "Claim Override", list("Yes", "No")) if(choice != "Yes") claim = FALSE if(claim) @@ -280,12 +305,14 @@ if(!istype(ticket)) return FALSE if(ticket.ticket_submitter != last_login) - to_chat(usr, SPAN_WARNING("You cannot cancel a ticket that does not belong to you!")) + to_chat(user, SPAN_WARNING("You cannot cancel a ticket that does not belong to you!")) return FALSE - to_chat(usr, SPAN_WARNING("[ticket.ticket_type] [ticket.ticket_id] has been cancelled.")) + to_chat(user, SPAN_WARNING("[ticket.ticket_type] [ticket.ticket_id] has been cancelled.")) ticket.ticket_status = TICKET_CANCELLED if(ticket.ticket_priority) ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been cancelled.") + else + send_notifcation() return TRUE if("mark_ticket") @@ -293,9 +320,9 @@ if(!istype(ticket)) return FALSE if(ticket.ticket_assignee != last_login && ticket.ticket_assignee) //must be claimed by you or unclaimed.) - to_chat(usr, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) + to_chat(user, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) return FALSE - var/choice = tgui_alert(usr, "What do you wish to mark the ticket as?", "Mark", list(TICKET_COMPLETED, TICKET_REJECTED), 20 SECONDS) + var/choice = tgui_alert(user, "What do you wish to mark the ticket as?", "Mark", list(TICKET_COMPLETED, TICKET_REJECTED), 20 SECONDS) switch(choice) if(TICKET_COMPLETED) ticket.ticket_status = TICKET_COMPLETED @@ -305,39 +332,41 @@ return FALSE if(ticket.ticket_priority) ares_apollo_talk("Priority [ticket.ticket_type] [ticket.ticket_id] has been [choice] by [last_login].") - to_chat(usr, SPAN_NOTICE("[ticket.ticket_type] [ticket.ticket_id] marked as [choice].")) + else + send_notifcation() + to_chat(user, SPAN_NOTICE("[ticket.ticket_type] [ticket.ticket_id] marked as [choice].")) return TRUE if("new_access") - var/obj/item/card/id/idcard = operator.get_active_hand() + var/obj/item/card/id/idcard = user.get_active_hand() var/has_id = FALSE if(istype(idcard)) has_id = TRUE - else if(operator.wear_id) - idcard = operator.wear_id - if(istype(idcard)) + else if(user.wear_id) + idcard = user.get_idcard() + if(idcard) has_id = TRUE if(!has_id) - to_chat(operator, SPAN_WARNING("You require an ID card to request an access ticket!")) + to_chat(user, SPAN_WARNING("You require an ID card to request an access ticket!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE if(idcard.registered_name != last_login) - to_chat(operator, SPAN_WARNING("This ID card does not match the active login!")) + to_chat(user, SPAN_WARNING("This ID card does not match the active login!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE - var/details = tgui_input_text(operator, "What is the purpose of this access ticket?", "Ticket Details", encode = FALSE) + var/details = tgui_input_text(user, "What is the purpose of this access ticket?", "Ticket Details", encode = FALSE) if(!details) return FALSE - var/confirm = alert(operator, "Please confirm the submission of your access ticket request.\n\nHolder: '[last_login]'\nDetails: '[details]'\n\nIs this correct?", "Confirmation", "Yes", "No") + var/confirm = alert(user, "Please confirm the submission of your access ticket request.\n\nHolder: '[last_login]'\nDetails: '[details]'\n\nIs this correct?", "Confirmation", "Yes", "No") if(confirm != "Yes" || !link) return FALSE var/datum/ares_ticket/access/access_ticket = new(last_login, details, FALSE, idcard.registered_gid) link.waiting_ids += idcard link.tickets_access += access_ticket - log_game("ARES: Access Ticket '\ref[access_ticket]' created by [key_name(operator)] as [last_login] with Details of '[details]'.") - message_admins(SPAN_STAFF_IC("[key_name_admin(operator)] created a new ARES Access Ticket."), 1) + log_game("ARES: Access Ticket '\ref[access_ticket]' created by [key_name(user)] as [last_login] with Details of '[details]'.") + message_admins(SPAN_STAFF_IC("[key_name_admin(user)] created a new ARES Access Ticket."), 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] requesting access for '[details].") return TRUE @@ -353,16 +382,14 @@ break for(var/obj/item/card/id/identification in link.active_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue access_ticket.ticket_status = TICKET_RETURNED identification.access -= ACCESS_MARINE_AI_TEMP - identification.modification_log += "Temporary AI Access self-returned by [key_name(operator)]." + identification.modification_log += "Temporary AI Access self-returned by [key_name(user)]." - to_chat(operator, SPAN_NOTICE("Temporary Access Ticket surrendered.")) + to_chat(user, SPAN_NOTICE("Temporary Access Ticket surrendered.")) playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] surrendered their access.") @@ -371,7 +398,7 @@ datacore.apollo_login_list += "[last_login] at [worldtime2text()], Surrendered Temporary Access Ticket." return TRUE - to_chat(operator, SPAN_WARNING("This ID card does not have an access ticket!")) + to_chat(user, SPAN_WARNING("This ID card does not have an access ticket!")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) return FALSE @@ -381,21 +408,17 @@ if(!access_ticket) return FALSE for(var/obj/item/card/id/identification in link.waiting_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue - identification.handle_ares_access(last_login, operator) + identification.handle_ares_access(last_login, user) access_ticket.ticket_status = TICKET_GRANTED playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] was granted access by [last_login].") return TRUE for(var/obj/item/card/id/identification in link.active_ids) - if(!istype(identification)) - continue if(identification.registered_gid != access_ticket.user_id_num) continue - identification.handle_ares_access(last_login, operator) + identification.handle_ares_access(last_login, user) access_ticket.ticket_status = TICKET_REVOKED playsound(src, 'sound/machines/chime.ogg', 15, 1) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] had access revoked by [last_login].") @@ -407,11 +430,44 @@ if(!istype(access_ticket)) return FALSE if(access_ticket.ticket_assignee != last_login && access_ticket.ticket_assignee) //must be claimed by you or unclaimed.) - to_chat(usr, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) + to_chat(user, SPAN_WARNING("You cannot update a ticket that is not assigned to you!")) return FALSE access_ticket.ticket_status = TICKET_REJECTED - to_chat(usr, SPAN_NOTICE("[access_ticket.ticket_type] [access_ticket.ticket_id] marked as rejected.")) + to_chat(user, SPAN_NOTICE("[access_ticket.ticket_type] [access_ticket.ticket_id] marked as rejected.")) ares_apollo_talk("Access Ticket [access_ticket.ticket_id]: [access_ticket.ticket_submitter] was rejected access by [last_login].") + for(var/obj/item/card/id/identification in link.waiting_ids) + if(identification.registered_gid != access_ticket.user_id_num) + continue + var/mob/living/carbon/human/id_owner = identification.registered_ref?.resolve() + if(id_owner) + to_chat(id_owner, SPAN_WARNING("AI visitation access rejected.")) + playsound_client(id_owner?.client, 'sound/machines/pda_ping.ogg', src, 25, 0) + return TRUE + + if("trigger_vent") + playsound = FALSE + var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + if(!istype(sec_vent) || sec_vent.welded) + to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!COOLDOWN_FINISHED(sec_vent, vent_trigger_cooldown)) + to_chat(user, SPAN_WARNING("ERROR: Insufficient gas reserve for this vent.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + to_chat(user, SPAN_WARNING("Initiating gas release from [sec_vent.vent_tag].")) + playsound(src, 'sound/machines/chime.ogg', 15, 1) + COOLDOWN_START(sec_vent, vent_trigger_cooldown, COOLDOWN_ARES_VENT) + ares_apollo_talk("Nerve Gas release imminent from [sec_vent.vent_tag].") + log_ares_security("Nerve Gas Release", "Released Nerve Gas from Vent '[sec_vent.vent_tag]'.", last_login) + sec_vent.create_gas(VENT_GAS_CN20_XENO, 6, 5 SECONDS) + log_admin("[key_name(user)] released nerve gas from Vent '[sec_vent.vent_tag]' via ARES.") + + if("security_lockdown") + if(!COOLDOWN_FINISHED(datacore, aicore_lockdown)) + to_chat(user, SPAN_BOLDWARNING("AI Core Lockdown procedures are on cooldown! They will be ready in [COOLDOWN_SECONDSLEFT(datacore, aicore_lockdown)] seconds!")) + return FALSE + aicore_lockdown(user) return TRUE if(playsound) diff --git a/code/game/machinery/Beacon.dm b/code/game/machinery/Beacon.dm deleted file mode 100644 index 44bd9907c1..0000000000 --- a/code/game/machinery/Beacon.dm +++ /dev/null @@ -1,54 +0,0 @@ -/obj/structure/machinery/bluespace_beacon - - icon = 'icons/obj/objects.dmi' - icon_state = "floor_beaconf" - name = "Bluespace Gigabeacon" - desc = "A device that draws power from bluespace and creates a permanent tracking beacon." - level = 1 // underfloor - layer = UNDERFLOOR_OBJ_LAYER - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 0 - var/obj/item/device/radio/beacon/Beacon - -/obj/structure/machinery/bluespace_beacon/Initialize(mapload, ...) - . = ..() - var/turf/T = loc - Beacon = new /obj/item/device/radio/beacon - Beacon.invisibility = INVISIBILITY_MAXIMUM - Beacon.forceMove(T) - - hide(T.intact_tile) - -/obj/structure/machinery/bluespace_beacon/Destroy() - QDEL_NULL(Beacon) - return ..() - -/obj/structure/machinery/bluespace_beacon/hide(intact) - // update the invisibility and icon - invisibility = intact ? 101 : 0 - updateicon() - - // update the icon_state -/obj/structure/machinery/bluespace_beacon/proc/updateicon() - var/state="floor_beacon" - - if(invisibility) - icon_state = "[state]f" - - else - icon_state = "[state]" - -/obj/structure/machinery/bluespace_beacon/process() - if(!Beacon) - var/turf/T = loc - Beacon = new /obj/item/device/radio/beacon - Beacon.invisibility = INVISIBILITY_MAXIMUM - Beacon.forceMove(T) - if(Beacon) - if(Beacon.loc != loc) - Beacon.forceMove(loc) - - updateicon() - - diff --git a/code/game/machinery/OpTable.dm b/code/game/machinery/OpTable.dm index 03c013703b..1b27ddc9bd 100644 --- a/code/game/machinery/OpTable.dm +++ b/code/game/machinery/OpTable.dm @@ -196,7 +196,7 @@ // Check for blood if(H.blood_volume < BLOOD_VOLUME_SAFE) if(!(patient_exam & PATIENT_LOW_BLOOD)) - visible_message("[icon2html(src, viewers(src))] The [src] beeps, Warning: Patient has a dangerously low blood level: [round(H.blood_volume / BLOOD_VOLUME_NORMAL * 100)]%. Type: [H.blood_type].") + visible_message("[icon2html(src, viewers(src))] The [src] beeps, Warning: Patient has a dangerously low blood level: [floor(H.blood_volume / BLOOD_VOLUME_NORMAL * 100)]%. Type: [H.blood_type].") patient_exam |= PATIENT_LOW_BLOOD else patient_exam &= ~PATIENT_LOW_BLOOD @@ -204,7 +204,7 @@ // Check for nutrition if(H.nutrition < NUTRITION_LOW) if(!(patient_exam & PATIENT_LOW_NUTRITION)) - visible_message("[icon2html(src, viewers(src))] The [src] beeps, Warning: Patient has a dangerously low nutrition level: [round(H.nutrition / NUTRITION_MAX * 100)]%.") + visible_message("[icon2html(src, viewers(src))] The [src] beeps, Warning: Patient has a dangerously low nutrition level: [floor(H.nutrition / NUTRITION_MAX * 100)]%.") patient_exam |= PATIENT_LOW_NUTRITION else patient_exam &= ~PATIENT_LOW_NUTRITION diff --git a/code/game/machinery/aicore_lockdown.dm b/code/game/machinery/aicore_lockdown.dm new file mode 100644 index 0000000000..8120e98977 --- /dev/null +++ b/code/game/machinery/aicore_lockdown.dm @@ -0,0 +1,119 @@ +/obj/structure/machinery/aicore_lockdown + name = "AI Core Lockdown" + icon_state = "big_red_button_tablev" + unslashable = TRUE + unacidable = TRUE + +/obj/structure/machinery/aicore_lockdown/ex_act(severity) + return FALSE + +/obj/structure/machinery/aicore_lockdown/attack_remote(mob/user as mob) + return FALSE + +/obj/structure/machinery/aicore_lockdown/attack_alien(mob/user as mob) + return FALSE + +/obj/structure/machinery/aicore_lockdown/attackby(obj/item/attacking_item, mob/user) + return attack_hand(user) + +/obj/structure/machinery/aicore_lockdown/attack_hand(mob/living/user) + if(isxeno(user)) + return FALSE + if(!allowed(user)) + to_chat(user, SPAN_DANGER("Access Denied")) + flick(initial(icon_state) + "-denied", src) + return FALSE + + if(!COOLDOWN_FINISHED(GLOB.ares_datacore, aicore_lockdown)) + to_chat(user, SPAN_BOLDWARNING("AI Core Lockdown procedures are on cooldown! They will be ready in [COOLDOWN_SECONDSLEFT(GLOB.ares_datacore, aicore_lockdown)] seconds!")) + return FALSE + + add_fingerprint(user) + aicore_lockdown(user) + +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown + name = "ARES Emergency Lockdown Shutter" + density = FALSE + open_layer = 1.9 + plane = FLOOR_PLANE + +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore + icon_state = "aidoor1" + base_icon_state = "aidoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore/white + icon_state = "w_aidoor1" + base_icon_state = "w_aidoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/white + icon_state = "w_almayer_pdoor1" + base_icon_state = "w_almayer_pdoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/Initialize() + . = ..() + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LOCKDOWN, PROC_REF(close)) + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LIFT, PROC_REF(open)) + + +/client/proc/admin_aicore_alert() + set name = "AI Core Lockdown" + set category = "Admin.Ship" + + if(!admin_holder ||!check_rights(R_EVENT)) + return FALSE + + var/prompt = "Are you sure you want to trigger an AI Core lockdown? This will raise to red alert, and lockdown the AI Core." + + if(GLOB.ares_datacore.ai_lockdown_active == TRUE) + prompt = "Are you sure you want to lift the AI Core lockdown? This will lower to blue alert." + + var/choice = tgui_alert(src, prompt, "Choose.", list("Yes", "No"), 20 SECONDS) + if(choice != "Yes") + return FALSE + + choice = tgui_alert(src, "Do you want to use a custom announcement?", "Choose.", list("Yes", "No"), 20 SECONDS) + if(choice == "Yes") + var/message = tgui_input_text(src, "Please enter announcement text.", "what?") + aicore_lockdown(usr, message, admin = TRUE) + else + aicore_lockdown(usr, admin = TRUE) + return TRUE + +/proc/aicore_lockdown(mob/user, message, admin = FALSE) + if(IsAdminAdvancedProcCall()) + return PROC_BLOCKED + + var/log = "[key_name(user)] triggered AI core lockdown!" + var/ares_log = "Triggered triggered AI Core Emergency Lockdown." + var/person = user.name + if(message) + log = "[key_name(user)] triggered AI core emergency lockdown! (Using a custom announcement)." + if(admin) + log += " (Admin Triggered)." + person = MAIN_AI_SYSTEM + + if(GLOB.ares_datacore.ai_lockdown_active) + GLOB.ares_datacore.ai_lockdown_active = FALSE + if(!message) + message = "ATTENTION! \n\nAI CORE EMERGENCY LOCKDOWN LIFTED." + log = "[key_name(user)] lifted AI core lockdown!" + ares_log = "Lifted AI Core Emergency Lockdown." + if(admin) + log += " (Admin Triggered)." + person = MAIN_AI_SYSTEM + + if(GLOB.security_level > SEC_LEVEL_GREEN) + set_security_level(SEC_LEVEL_BLUE, TRUE, FALSE) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_AICORE_LIFT) + else + GLOB.ares_datacore.ai_lockdown_active = TRUE + if(!message) + message = "ATTENTION! \n\nCORE SECURITY ALERT. \n\nAI CORE UNDER LOCKDOWN." + if(GLOB.security_level < SEC_LEVEL_RED) + set_security_level(SEC_LEVEL_RED, TRUE, FALSE) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_AICORE_LOCKDOWN) + + COOLDOWN_START(GLOB.ares_datacore, aicore_lockdown, 2 MINUTES) + shipwide_ai_announcement(message, MAIN_AI_SYSTEM, 'sound/effects/biohazard.ogg') + message_admins(log) + log_ares_security("AI Core Lockdown", ares_log, person) diff --git a/code/game/machinery/air_alarm.dm b/code/game/machinery/air_alarm.dm index e6fc0c8de7..3efb579cea 100644 --- a/code/game/machinery/air_alarm.dm +++ b/code/game/machinery/air_alarm.dm @@ -5,9 +5,9 @@ /proc/RandomAAlarmWires() //to make this not randomize the wires, just set index to 1 and increment it in the flag for loop (after doing everything else). var/list/AAlarmwires = list(0, 0, 0, 0, 0) - AAlarmIndexToFlag = list(0, 0, 0, 0, 0) - AAlarmIndexToWireColor = list(0, 0, 0, 0, 0) - AAlarmWireColorToIndex = list(0, 0, 0, 0, 0) + GLOB.AAlarmIndexToFlag = list(0, 0, 0, 0, 0) + GLOB.AAlarmIndexToWireColor = list(0, 0, 0, 0, 0) + GLOB.AAlarmWireColorToIndex = list(0, 0, 0, 0, 0) var/flagIndex = 1 for (var/flag=1, flag<32, flag+=flag) var/valid = 0 @@ -16,9 +16,9 @@ if (AAlarmwires[colorIndex]==0) valid = 1 AAlarmwires[colorIndex] = flag - AAlarmIndexToFlag[flagIndex] = flag - AAlarmIndexToWireColor[flagIndex] = colorIndex - AAlarmWireColorToIndex[colorIndex] = flagIndex + GLOB.AAlarmIndexToFlag[flagIndex] = flag + GLOB.AAlarmIndexToWireColor[flagIndex] = colorIndex + GLOB.AAlarmWireColorToIndex[colorIndex] = flagIndex flagIndex+=1 return AAlarmwires @@ -264,10 +264,10 @@ /obj/structure/machinery/alarm/proc/register_env_machine(m_id, device_type) var/new_name if (device_type=="AVP") - new_name = "[alarm_area.name] Vent Pump #[alarm_area.air_vent_names.len+1]" + new_name = "[alarm_area.name] Vent Pump #[length(alarm_area.air_vent_names)+1]" alarm_area.air_vent_names[m_id] = new_name else if (device_type=="AScr") - new_name = "[alarm_area.name] Air Scrubber #[alarm_area.air_scrub_names.len+1]" + new_name = "[alarm_area.name] Air Scrubber #[length(alarm_area.air_scrub_names)+1]" alarm_area.air_scrub_names[m_id] = new_name else return @@ -379,24 +379,24 @@ //HACKING// /////////// /obj/structure/machinery/alarm/proc/isWireColorCut(wireColor) - var/wireFlag = AAlarmWireColorToFlag[wireColor] + var/wireFlag = GLOB.AAlarmWireColorToFlag[wireColor] return ((AAlarmwires & wireFlag) == 0) /obj/structure/machinery/alarm/proc/isWireCut(wireIndex) - var/wireFlag = AAlarmIndexToFlag[wireIndex] + var/wireFlag = GLOB.AAlarmIndexToFlag[wireIndex] return ((AAlarmwires & wireFlag) == 0) /obj/structure/machinery/alarm/proc/allWiresCut() var/i = 1 while(i<=5) - if(AAlarmwires & AAlarmIndexToFlag[i]) + if(AAlarmwires & GLOB.AAlarmIndexToFlag[i]) return 0 i++ return 1 /obj/structure/machinery/alarm/proc/cut(wireColor) - var/wireFlag = AAlarmWireColorToFlag[wireColor] - var/wireIndex = AAlarmWireColorToIndex[wireColor] + var/wireFlag = GLOB.AAlarmWireColorToFlag[wireColor] + var/wireIndex = GLOB.AAlarmWireColorToIndex[wireColor] AAlarmwires &= ~wireFlag switch(wireIndex) if(AALARM_WIRE_IDSCAN) @@ -427,8 +427,8 @@ return /obj/structure/machinery/alarm/proc/mend(wireColor) - var/wireFlag = AAlarmWireColorToFlag[wireColor] - var/wireIndex = AAlarmWireColorToIndex[wireColor] //not used in this function + var/wireFlag = GLOB.AAlarmWireColorToFlag[wireColor] + var/wireIndex = GLOB.AAlarmWireColorToIndex[wireColor] //not used in this function AAlarmwires |= wireFlag switch(wireIndex) if(AALARM_WIRE_POWER) @@ -445,7 +445,7 @@ /obj/structure/machinery/alarm/proc/pulse(wireColor) //var/wireFlag = AAlarmWireColorToFlag[wireColor] //not used in this function - var/wireIndex = AAlarmWireColorToIndex[wireColor] + var/wireIndex = GLOB.AAlarmWireColorToIndex[wireColor] switch(wireIndex) if(AALARM_WIRE_IDSCAN) //unlocks for 30 seconds, if you have a better way to hack I'm all ears locked = 0 @@ -527,7 +527,7 @@ "Black" = 5, ) for(var/wiredesc in wirecolors) - var/is_uncut = AAlarmwires & AAlarmWireColorToFlag[wirecolors[wiredesc]] + var/is_uncut = AAlarmwires & GLOB.AAlarmWireColorToFlag[wirecolors[wiredesc]] t1 += "[wiredesc] wire: " if(!is_uncut) t1 += "Mend" @@ -572,14 +572,14 @@ var/pressure_dangerlevel = get_danger_level(environment_pressure, current_settings) current_settings = TLV["temperature"] - var/enviroment_temperature = location.return_temperature() - var/temperature_dangerlevel = get_danger_level(enviroment_temperature, current_settings) + var/environment_temperature = location.return_temperature() + var/temperature_dangerlevel = get_danger_level(environment_temperature, current_settings) output += {" Pressure: [environment_pressure]kPa
    "} - output += "Temperature: [enviroment_temperature]K ([round(enviroment_temperature - T0C, 0.1)]C)
    " + output += "Temperature: [environment_temperature]K ([round(environment_temperature - T0C, 0.1)]C)
    " //'Local Status' should report the LOCAL status, damnit. output += "Local Status: " @@ -648,7 +648,7 @@ Pressure: [environment_pressure]kP if (AALARM_SCREEN_VENT) var/sensor_data = "" - if(alarm_area.air_vent_names.len) + if(length(alarm_area.air_vent_names)) for(var/id_tag in alarm_area.air_vent_names) var/long_name = alarm_area.air_vent_names[id_tag] var/list/data = alarm_area.air_vent_info[id_tag] @@ -690,7 +690,7 @@ siphoning output = {"Main menu
    [sensor_data]"} if (AALARM_SCREEN_SCRUB) var/sensor_data = "" - if(alarm_area.air_scrub_names.len) + if(length(alarm_area.air_scrub_names)) for(var/id_tag in alarm_area.air_scrub_names) var/long_name = alarm_area.air_scrub_names[id_tag] var/list/data = alarm_area.air_scrub_info[id_tag] @@ -735,7 +735,7 @@ Nitrous Oxide AALARM_MODE_FILL = SET_CLASS("Fill - Shuts off scrubbers and opens vents", INTERFACE_GREEN),\ AALARM_MODE_OFF = SET_CLASS("Off - Shuts off vents and scrubbers", INTERFACE_BLUE) ) - for (var/m=1,m<=modes.len,m++) + for (var/m=1,m<=length(modes),m++) if (mode==m) output += "
  • [modes[m]] (selected)
  • " else diff --git a/code/game/machinery/air_sensor.dm b/code/game/machinery/air_sensor.dm deleted file mode 100644 index 55963bae97..0000000000 --- a/code/game/machinery/air_sensor.dm +++ /dev/null @@ -1,64 +0,0 @@ -/obj/structure/machinery/air_sensor - icon = 'icons/obj/structures/props/stationobjs.dmi' - icon_state = "gsensor1" - name = "Gas Sensor" - - anchored = TRUE - var/state = 0 - - var/id_tag - var/frequency = 1439 - - var/on = 1 - var/output = 3 - //Flags: - // 1 for pressure - // 2 for temperature - // Output >= 4 includes gas composition - // 4 for oxygen concentration - // 8 for phoron concentration - // 16 for nitrogen concentration - // 32 for carbon dioxide concentration - - var/datum/radio_frequency/radio_connection - -/obj/structure/machinery/air_sensor/update_icon() - icon_state = "gsensor[on]" - -/obj/structure/machinery/air_sensor/process() - if(on) - var/datum/signal/signal = new - signal.transmission_method = 1 //radio signal - signal.data["tag"] = id_tag - signal.data["timestamp"] = world.time - - var/turf/T = loc - var/pressure_ = T.return_pressure() - var/temperature_ = T.return_temperature() - - if(output&1) - signal.data["pressure"] = num2text(round(pressure_,0.1),) - if(output&2) - signal.data["temperature"] = round(temperature_,0.1) - - if(output>4) - signal.data["oxygen"] = 0 - signal.data["phoron"] = 0 - signal.data["nitrogen"] = 0 - signal.data["carbon_dioxide"] = 0 - signal.data["sigtype"]="status" - radio_connection.post_signal(src, signal, filter = RADIO_ATMOSIA) - - -/obj/structure/machinery/air_sensor/proc/set_frequency(new_frequency) - SSradio.remove_object(src, frequency) - frequency = new_frequency - radio_connection = SSradio.add_object(src, frequency, RADIO_ATMOSIA) - -/obj/structure/machinery/air_sensor/Initialize() - . = ..() - set_frequency(frequency) - -/obj/structure/machinery/air_sensor/Destroy() - SSradio.remove_object(src, frequency) - return ..() diff --git a/code/game/machinery/atmoalter/canister.dm b/code/game/machinery/atmoalter/canister.dm index 3c2c81ff0c..1cdc2e0a49 100644 --- a/code/game/machinery/atmoalter/canister.dm +++ b/code/game/machinery/atmoalter/canister.dm @@ -92,18 +92,18 @@ update_flag /obj/structure/machinery/portable_atmospherics/canister/bullet_act(obj/projectile/Proj) if(Proj.ammo.damage) - update_health(round(Proj.ammo.damage / 2)) + update_health(floor(Proj.ammo.damage / 2)) ..() return 1 /obj/structure/machinery/portable_atmospherics/canister/attackby(obj/item/W as obj, mob/user as mob) if(!HAS_TRAIT(W, TRAIT_TOOL_WRENCH) && !istype(W, /obj/item/tank) && !istype(W, /obj/item/device/analyzer)) - visible_message(SPAN_DANGER("[user] hits the [src] with a [W]!")) + visible_message(SPAN_DANGER("[user] hits [src] with [W]!")) update_health(W.force) src.add_fingerprint(user) ..() - nanomanager.update_uis(src) // Update all NanoUIs attached to src + SSnano.nanomanager.update_uis(src) // Update all NanoUIs attached to src /obj/structure/machinery/portable_atmospherics/canister/attack_remote(mob/user as mob) return src.attack_hand(user) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index 76ff409669..4013aec3fb 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -78,7 +78,7 @@ if(istype(I,/obj/item/stack/sheet)) recipe.resources[material] = I.matter[material] //Doesn't take more if it's just a sheet or something. Get what you put in. else - recipe.resources[material] = round(I.matter[material]*1.25) // More expensive to produce than they are to recycle. + recipe.resources[material] = floor(I.matter[material]*1.25) // More expensive to produce than they are to recycle. QDEL_NULL(I) //Create parts for lathe. @@ -106,7 +106,7 @@ /obj/structure/machinery/autolathe/ui_data(mob/user) var/list/data = list() - if(queue.len) + if(length(queue)) var/list/queue_list = list() var/i = 0 for(var/params in queue) @@ -119,7 +119,7 @@ else data["queued"] = null - if(currently_making_data.len) + if(length(currently_making_data)) data["currently_making"] = currently_making_data else data["currently_making"] = null @@ -129,7 +129,7 @@ var/list/wire_descriptions = get_wire_descriptions() var/list/panel_wires = list() - for(var/wire = 1 to wire_descriptions.len) + for(var/wire = 1 to length(wire_descriptions)) panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire))) data["electrical"] = list( @@ -164,7 +164,7 @@ switch(action) if("cancel") var/index = params["index"] - if(index < 1 || index > queue.len) + if(index < 1 || index > length(queue)) return var/list/to_del = queue[index] @@ -198,7 +198,7 @@ if(!initial(make_loc)) make_loc = get_step(loc, get_dir(src,usr)) - if(index > 0 && index <= recipes.len) + if(index > 0 && index <= length(recipes)) making = recipes[index] //Exploit detection, not sure if necessary after rewrite. @@ -224,7 +224,7 @@ if("cutwire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = usr.get_held_item() @@ -238,7 +238,7 @@ if("fixwire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = usr.get_held_item() @@ -251,7 +251,7 @@ if("pulsewire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = usr.get_held_item() @@ -269,7 +269,7 @@ /obj/structure/machinery/autolathe/attackby(obj/item/O as obj, mob/user as mob) if(HAS_TRAIT(O, TRAIT_TOOL_SCREWDRIVER)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to dismantle machines...")) return panel_open = !panel_open @@ -339,7 +339,7 @@ if(istype(eating,/obj/item/stack)) var/obj/item/stack/stack = eating - stack.use(max(1,round(total_used/mass_per_sheet))) // Always use at least 1 to prevent infinite materials. + stack.use(max(1,floor(total_used/mass_per_sheet))) // Always use at least 1 to prevent infinite materials. else if(user.temp_drop_inv_item(O)) qdel(O) @@ -358,7 +358,7 @@ storage_capacity[material] = tot_rating * 30000 /obj/structure/machinery/autolathe/proc/try_queue(mob/living/carbon/human/user, datum/autolathe/recipe/making, turf/make_loc, multiplier = 1) - if(queue.len >= queue_max) + if(length(queue) >= queue_max) to_chat(usr, SPAN_DANGER("The [name] has queued the maximum number of operations. Please wait for completion of current operation.")) return AUTOLATHE_FAILED @@ -392,7 +392,7 @@ busy = TRUE - while (queue.len) + while (length(queue)) print_params = queue[1] queue -= list(print_params) print_item(arglist(print_params)) @@ -419,11 +419,16 @@ ) SStgui.update_uis(src) + //Print speed based on w_class. + var/obj/item/item = making.path + var/size = initial(item.w_class) + var/print_speed = clamp(size, 2, 5) SECONDS + //Fancy autolathe animation. icon_state = "[base_state]_n" playsound(src, 'sound/machines/print.ogg', 25) - sleep(5 SECONDS) + sleep(print_speed) playsound(src, 'sound/machines/print_off.ogg', 25) icon_state = "[base_state]" @@ -521,7 +526,7 @@ max_print_amt = -1 - if(!R.resources || !R.resources.len) + if(!LAZYLEN(R.resources)) print_data["materials"] = "No resources required" else //Make sure it's buildable and list requires resources. @@ -530,7 +535,7 @@ print_data["can_make"] = FALSE max_print_amt = 0 else - print_amt = round(projected_stored_material[material]/R.resources[material]) + print_amt = floor(projected_stored_material[material]/R.resources[material]) if(print_data["can_make"] && max_print_amt < 0 || max_print_amt > print_amt) max_print_amt = print_amt @@ -581,7 +586,7 @@ stored_material = list("metal" = 56250, "plastic" = 20000) //15 metal and 10 plastic sheets /obj/structure/machinery/autolathe/armylathe/attack_hand(mob/user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to operate the [name].")) return FALSE . = ..() diff --git a/code/game/machinery/autolathe_datums.dm b/code/game/machinery/autolathe_datums.dm index fa6fec094c..0c614823bc 100644 --- a/code/game/machinery/autolathe_datums.dm +++ b/code/game/machinery/autolathe_datums.dm @@ -136,11 +136,6 @@ path = /obj/item/circuitboard/apc category = AUTOLATHE_CATEGORY_ENGINEERING -/datum/autolathe/recipe/rcd_ammo - name = "matter cartridge" - path = /obj/item/ammo_rcd - category = AUTOLATHE_CATEGORY_ENGINEERING - /datum/autolathe/recipe/table_parts name = "table parts" path = /obj/item/frame/table @@ -269,7 +264,7 @@ /datum/autolathe/recipe/handcuffs name = "handcuffs" - path = /obj/item/handcuffs + path = /obj/item/restraint/handcuffs hidden = TRUE category = AUTOLATHE_CATEGORY_GENERAL @@ -331,6 +326,11 @@ path = /obj/item/ammo_magazine/flamer_tank/custom/large category = AUTOLATHE_CATEGORY_EXPLOSIVES +/datum/autolathe/recipe/armylathe/smoke_tank + name = "Custom M240A1 Smoke Tank" + path = /obj/item/ammo_magazine/flamer_tank/smoke + category = AUTOLATHE_CATEGORY_EXPLOSIVES + //Medilathe recipes /datum/autolathe/recipe/medilathe category = AUTOLATHE_CATEGORY_MEDICAL @@ -416,10 +416,6 @@ name = "bonesetter" path = /obj/item/tool/surgery/bonesetter -/datum/autolathe/recipe/medilathe/bonegel - name = "bone gel" - path = /obj/item/tool/surgery/bonegel - /datum/autolathe/recipe/medilathe/fixovein name = "FixOVein" path = /obj/item/tool/surgery/FixOVein diff --git a/code/game/machinery/bio-dome_floodlights.dm b/code/game/machinery/bio-dome_floodlights.dm deleted file mode 100644 index a1f028a79f..0000000000 --- a/code/game/machinery/bio-dome_floodlights.dm +++ /dev/null @@ -1,169 +0,0 @@ -/obj/structure/machinery/hydro_floodlight_switch - name = "Biodome Floodlight Switch" - icon = 'icons/obj/structures/machinery/power.dmi' - icon_state = "panelnopower" - desc = "This switch controls the floodlights surrounding the archaeology complex. It only functions when there is power." - density = FALSE - anchored = TRUE - var/ispowered = FALSE - var/turned_on = 0 //has to be toggled in engineering - use_power = USE_POWER_IDLE - unslashable = TRUE - unacidable = TRUE - var/list/floodlist = list() // This will save our list of floodlights on the map - -/obj/structure/machinery/hydro_floodlight_switch/Initialize(mapload, ...) - . = ..() - for(var/obj/structure/machinery/hydro_floodlight/F in machines) - floodlist += F - F.fswitch = src - start_processing() - -/obj/structure/machinery/hydro_floodlight_switch/Destroy() - for(var/obj/structure/machinery/hydro_floodlight/floodlight as anything in floodlist) - floodlight.fswitch = null - floodlist = null - return ..() - - -/obj/structure/machinery/hydro_floodlight_switch/process() - var/lightpower = 0 - for(var/obj/structure/machinery/hydro_floodlight/H in floodlist) - if(!H.is_lit) - continue - lightpower += H.power_tick - use_power(lightpower) - -/obj/structure/machinery/hydro_floodlight_switch/update_icon() - if(!ispowered) - icon_state = "panelnopower" - else if(turned_on) - icon_state = "panelon" - else - icon_state = "paneloff" - -/obj/structure/machinery/hydro_floodlight_switch/power_change() - ..() - if((stat & NOPOWER)) - if(ispowered && turned_on) - toggle_lights() - ispowered = FALSE - turned_on = 0 - update_icon() - else - ispowered = TRUE - update_icon() - -/obj/structure/machinery/hydro_floodlight_switch/proc/toggle_lights() - for(var/obj/structure/machinery/hydro_floodlight/F in floodlist) - if(!istype(F) || QDELETED(F) || F.damaged) continue //Missing or damaged, skip it - - spawn(rand(0,50)) - if(F.is_lit) //Shut it down - F.set_light(0) - else - F.set_light(F.lum_value) - F.is_lit = !(F.is_lit) - F.update_icon() - return 0 - -/obj/structure/machinery/hydro_floodlight_switch/attack_hand(mob/user as mob) - if(!ishuman(user)) - to_chat(user, "Nice try.") - return 0 - if(!ispowered) - to_chat(user, "Nothing happens.") - return 0 - playsound(src,'sound/machines/click.ogg', 15, 1) - use_power(5) - toggle_lights() - turned_on = !(src.turned_on) - update_icon() - return 1 - -/obj/structure/machinery/hydro_floodlight - name = "Biodome Floodlight" - icon = 'icons/obj/structures/machinery/big_floodlight.dmi' - icon_state = "flood_s_off" - density = TRUE - anchored = TRUE - layer = WINDOW_LAYER - var/damaged = 0 //Can be smashed by xenos - var/is_lit = 0 - unslashable = TRUE - unacidable = TRUE - var/power_tick = 800 // power each floodlight takes up per process - use_power = USE_POWER_NONE //It's the switch that uses the actual power, not the lights - var/obj/structure/machinery/hydro_floodlight_switch/fswitch = null //Reverse lookup for power grabbing in area - var/lum_value = 7 - -/obj/structure/machinery/hydro_floodlight/Destroy() - if(fswitch?.floodlist) - fswitch.floodlist -= src - fswitch = null - return ..() - -/obj/structure/machinery/hydro_floodlight/update_icon() - if(damaged) - icon_state = "flood_s_dmg" - else if(is_lit) - icon_state = "flood_s_on" - else - icon_state = "flood_s_off" - -/obj/structure/machinery/hydro_floodlight/attackby(obj/item/W as obj, mob/user as mob) - var/obj/item/tool/weldingtool/WT = W - if(istype(WT)) - if(!damaged) return - if(!HAS_TRAIT(WT, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(WT.remove_fuel(0, user)) - playsound(src.loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s damage."), \ - SPAN_NOTICE("You start welding [src]'s damage.")) - if(do_after(user, 200 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - playsound(get_turf(src), 'sound/items/Welder2.ogg', 25, 1) - if(!src || !WT.isOn()) return - damaged = 0 - user.visible_message(SPAN_NOTICE("[user] finishes welding [src]'s damage."), \ - SPAN_NOTICE("You finish welding [src]'s damage.")) - if(is_lit) - set_light(lum_value) - update_icon() - return 1 - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return 0 - ..() - return 0 - -/obj/structure/machinery/hydro_floodlight/attack_hand(mob/user as mob) - if(ishuman(user)) - to_chat(user, SPAN_WARNING("Nothing happens. Looks like it's powered elsewhere.")) - return 0 - else if(!is_lit) - to_chat(user, SPAN_WARNING("Why bother? It's just some weird metal thing.")) - return 0 - else - if(damaged) - to_chat(user, SPAN_WARNING("It's already damaged.")) - return 0 - else - if(islarva(user)) - return //Larvae can't do shit - if(user.get_active_hand()) - to_chat(user, SPAN_WARNING("You need your claws empty for this!")) - return FALSE - user.visible_message(SPAN_DANGER("[user] starts to slash and claw away at [src]!"), - SPAN_DANGER("You start slashing and clawing at [src]!")) - if(do_after(user, 50, INTERRUPT_ALL, BUSY_ICON_HOSTILE) && !damaged) //Not when it's already damaged. - if(!src) return 0 - damaged = 1 - set_light(0) - user.visible_message(SPAN_DANGER("[user] slashes up [src]!"), - SPAN_DANGER("You slash up [src]!")) - playsound(src, 'sound/weapons/blade1.ogg', 25, 1) - update_icon() - return 0 - ..() diff --git a/code/game/machinery/biohazard_lockdown.dm b/code/game/machinery/biohazard_lockdown.dm index 2e3cbf6de2..bb2674ccca 100644 --- a/code/game/machinery/biohazard_lockdown.dm +++ b/code/game/machinery/biohazard_lockdown.dm @@ -1,6 +1,6 @@ #define LOCKDOWN_READY 0 #define LOCKDOWN_ACTIVE 1 -GLOBAL_VAR_INIT(lockdown_state, LOCKDOWN_READY) +GLOBAL_VAR_INIT(med_lockdown_state, LOCKDOWN_READY) /obj/structure/machinery/biohazard_lockdown name = "Emergency Containment Breach" @@ -51,7 +51,7 @@ GLOBAL_VAR_INIT(lockdown_state, LOCKDOWN_READY) base_icon_state = "w_almayer_pdoor" /client/proc/admin_biohazard_alert() - set name = "Containment Breach Alert" + set name = "Research Containment Lockdown" set category = "Admin.Ship" if(!admin_holder ||!check_rights(R_EVENT)) @@ -63,8 +63,8 @@ GLOBAL_VAR_INIT(lockdown_state, LOCKDOWN_READY) prompt = tgui_alert(src, "Do you want to use a custom announcement?", "Choose.", list("Yes", "No"), 20 SECONDS) if(prompt == "Yes") - var/whattoannounce = tgui_input_text(src, "Please enter announcement text.", "what?") - biohazard_lockdown(usr, whattoannounce, TRUE) + var/message = tgui_input_text(src, "Please enter announcement text.", "what?") + biohazard_lockdown(usr, message, admin = TRUE) else biohazard_lockdown(usr, admin = TRUE) return TRUE @@ -74,35 +74,38 @@ GLOBAL_VAR_INIT(lockdown_state, LOCKDOWN_READY) return PROC_BLOCKED var/log = "[key_name(user)] triggered research bio lockdown!" - var/ares_log = "[user.name] triggered Medical Research Biohazard Containment Lockdown." + var/ares_log = "Triggered Medical Research Biohazard Containment Lockdown." + var/person = user.name if(!message) message = "ATTENTION! \n\nBIOHAZARD CONTAINMENT BREACH. \n\nRESEARCH DEPARTMENT UNDER LOCKDOWN." else log = "[key_name(user)] triggered research bio lockdown! (Using a custom announcement)." if(admin) log += " (Admin Triggered)." - ares_log = "[MAIN_AI_SYSTEM] triggered Medical Research Biohazard Containment Lockdown." + person = MAIN_AI_SYSTEM - switch(GLOB.lockdown_state) + switch(GLOB.med_lockdown_state) if(LOCKDOWN_READY) - GLOB.lockdown_state = LOCKDOWN_ACTIVE - set_security_level(SEC_LEVEL_RED, TRUE, FALSE) + GLOB.med_lockdown_state = LOCKDOWN_ACTIVE + if(GLOB.security_level < SEC_LEVEL_RED) + set_security_level(SEC_LEVEL_RED, TRUE, FALSE) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_RESEARCH_LOCKDOWN) if(LOCKDOWN_ACTIVE) - GLOB.lockdown_state = LOCKDOWN_READY + GLOB.med_lockdown_state = LOCKDOWN_READY message = "ATTENTION! \n\nBIOHAZARD CONTAINMENT LOCKDOWN LIFTED." log = "[key_name(user)] lifted research bio lockdown!" - ares_log = "[user.name] lifted Medical Research Biohazard Containment Lockdown." + ares_log = "Lifted Medical Research Biohazard Containment Lockdown." if(admin) log += " (Admin Triggered)." - ares_log = "[MAIN_AI_SYSTEM] lifted Medical Research Biohazard Containment Lockdown." + person = MAIN_AI_SYSTEM - set_security_level(SEC_LEVEL_BLUE, TRUE, FALSE) + if(GLOB.security_level > SEC_LEVEL_GREEN) + set_security_level(SEC_LEVEL_BLUE, TRUE, FALSE) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_RESEARCH_LIFT) shipwide_ai_announcement(message, MAIN_AI_SYSTEM, 'sound/effects/biohazard.ogg') message_admins(log) - log_ares_security("Containment Lockdown", ares_log) + log_ares_security("Containment Lockdown", ares_log, person) #undef LOCKDOWN_READY #undef LOCKDOWN_ACTIVE diff --git a/code/game/machinery/bots/bots.dm b/code/game/machinery/bots/bots.dm index 912a607032..1f82d28dbb 100644 --- a/code/game/machinery/bots/bots.dm +++ b/code/game/machinery/bots/bots.dm @@ -84,9 +84,9 @@ if(hasvar(W,"force") && hasvar(W,"damtype")) switch(W.damtype) if("fire") - src.health -= W.force * fire_dam_coeff + health -= W.force * W.demolition_mod * fire_dam_coeff if("brute") - src.health -= W.force * brute_dam_coeff + health -= W.force * W.demolition_mod * brute_dam_coeff ..() healthcheck() else @@ -151,7 +151,7 @@ /turf/proc/CardinalTurfsWithAccess(obj/item/card/id/ID) var/L[] = new() - for(var/d in cardinal) + for(var/d in GLOB.cardinals) var/turf/T = get_step(src, d) if(istype(T) && !T.density) if(!LinkBlockedWithAccess(src, T, ID)) diff --git a/code/game/machinery/bots/cleanbot.dm b/code/game/machinery/bots/cleanbot.dm index e2dcf7ffb1..cd93ce5139 100644 --- a/code/game/machinery/bots/cleanbot.dm +++ b/code/game/machinery/bots/cleanbot.dm @@ -37,8 +37,8 @@ should_patrol = 1 src.botcard = new(src) - if(RoleAuthority) - var/datum/job/ctequiv = RoleAuthority.roles_by_name[JOB_CARGO_TECH] + if(GLOB.RoleAuthority) + var/datum/job/ctequiv = GLOB.RoleAuthority.roles_by_name[JOB_CARGO_TECH] if(ctequiv) botcard.access = ctequiv.get_access() src.locked = 0 // Start unlocked so roboticist can set them to patrol. @@ -180,7 +180,7 @@ text("[src.oddbutton ? "Yes" : "No" if (!should_patrol) return - if (!patrol_path || patrol_path.len < 1) + if (LAZYLEN(patrol_path) < 1) var/datum/radio_frequency/frequency = SSradio.return_frequency(beacon_freq) if(!frequency) return @@ -204,20 +204,20 @@ text("[src.oddbutton ? "Yes" : "No" return - if(target && path.len == 0) + if(target && length(path) == 0) spawn(0) if(!src || !target) return src.path = AStar(src.loc, src.target.loc, /turf/proc/CardinalTurfsWithAccess, /turf/proc/Distance, 0, 30, id=botcard) if (!path) path = list() - if(src.path.len == 0) + if(length(src.path) == 0) src.oldtarget = src.target target.targeted_by = null src.target = null return - if(src.path.len > 0 && src.target && (src.target != null)) + if(length(src.path) > 0 && src.target && (src.target != null)) step_to(src, src.path[1]) src.path -= src.path[1] - else if(src.path.len == 1) + else if(length(src.path) == 1) step_to(src, target) if(src.target && (src.target != null)) @@ -231,7 +231,7 @@ text("[src.oddbutton ? "Yes" : "No" src.oldloc = src.loc /obj/structure/machinery/bot/cleanbot/proc/patrol_move() - if (src.patrol_path.len <= 0) + if (length(src.patrol_path) <= 0) return var/next = src.patrol_path[1] diff --git a/code/game/machinery/bots/floorbot.dm b/code/game/machinery/bots/floorbot.dm index be8ec5aa85..85f6d580ce 100644 --- a/code/game/machinery/bots/floorbot.dm +++ b/code/game/machinery/bots/floorbot.dm @@ -199,21 +199,21 @@ src.oldtarget = null return - if(src.target && (src.target != null) && src.path.len == 0) + if(src.target && (src.target != null) && length(src.path) == 0) spawn(0) if(!istype(src.target, /turf/)) src.path = AStar(src.loc, src.target.loc, /turf/proc/AdjacentTurfsSpace, /turf/proc/Distance, 0, 30, id=botcard) else src.path = AStar(src.loc, src.target, /turf/proc/AdjacentTurfsSpace, /turf/proc/Distance, 0, 30, id=botcard) if (!src.path) src.path = list() - if(src.path.len == 0) + if(length(src.path) == 0) src.oldtarget = src.target src.target = null return - if(src.path.len > 0 && src.target && (src.target != null)) + if(length(src.path) > 0 && src.target && (src.target != null)) step_to(src, src.path[1]) src.path -= src.path[1] - else if(src.path.len == 1) + else if(length(src.path) == 1) step_to(src, target) src.path = new() @@ -342,7 +342,7 @@ if(!istype(T, /obj/item/stack/tile/plasteel)) ..() return - if(src.contents.len >= 1) + if(length(src.contents) >= 1) to_chat(user, SPAN_NOTICE("That won't fit, there's already stuff inside.")) return for(var/mob/M in content_watchers) diff --git a/code/game/machinery/bots/medbot.dm b/code/game/machinery/bots/medbot.dm index f28a15ea18..5193b1b7cd 100644 --- a/code/game/machinery/bots/medbot.dm +++ b/code/game/machinery/bots/medbot.dm @@ -62,8 +62,8 @@ src.overlays += image('icons/obj/structures/machinery/aibots.dmi', "medskin_[src.skin]") src.botcard = new /obj/item/card/id(src) - if(isnull(src.botcard_access) || (src.botcard_access.len < 1)) - var/datum/job/J = RoleAuthority ? RoleAuthority.roles_by_path[/datum/job/civilian/doctor] : new /datum/job/civilian/doctor + if(!LAZYLEN(src.botcard_access)) + var/datum/job/J = GLOB.RoleAuthority ? GLOB.RoleAuthority.roles_by_path[/datum/job/civilian/doctor] : new /datum/job/civilian/doctor botcard.access = J.get_access() else src.botcard.access = src.botcard_access @@ -278,31 +278,31 @@ src.medicate_patient(src.patient) return - else if(src.patient && (src.path.len) && (get_dist(src.patient,src.path[src.path.len]) > 2)) + else if(src.patient && (length(src.path)) && (get_dist(src.patient,src.path[length(src.path)]) > 2)) src.path = new() src.currently_healing = 0 src.last_found = world.time - if(src.patient && src.path.len == 0 && (get_dist(src,src.patient) > 1)) + if(src.patient && length(src.path) == 0 && (get_dist(src,src.patient) > 1)) spawn(0) src.path = AStar(src.loc, get_turf(src.patient), /turf/proc/CardinalTurfsWithAccess, /turf/proc/Distance, 0, 30,id=botcard) if (!path) path = list() - if(src.path.len == 0) + if(length(src.path) == 0) src.oldpatient = src.patient src.patient = null src.currently_healing = 0 src.last_found = world.time return - if(src.path.len > 0 && src.patient) + if(length(src.path) > 0 && src.patient) step_to(src, src.path[1]) src.path -= src.path[1] spawn(3) - if(src.path.len) + if(length(src.path)) step_to(src, src.path[1]) src.path -= src.path[1] - if(src.path.len > 8 && src.patient) + if(length(src.path) > 8 && src.patient) src.frustration++ return @@ -487,7 +487,7 @@ return //Making a medibot! - if(src.contents.len >= 1) + if(length(src.contents) >= 1) to_chat(user, SPAN_NOTICE("You need to empty [src] out first.")) return diff --git a/code/game/machinery/bots/mulebot.dm b/code/game/machinery/bots/mulebot.dm index 16e4335b71..563c4b89c5 100644 --- a/code/game/machinery/bots/mulebot.dm +++ b/code/game/machinery/bots/mulebot.dm @@ -70,8 +70,8 @@ /obj/structure/machinery/bot/mulebot/Initialize(mapload, ...) . = ..() botcard = new(src) - if(RoleAuthority) - var/datum/job/ctequiv = RoleAuthority.roles_by_name[JOB_CARGO_TECH] + if(GLOB.RoleAuthority) + var/datum/job/ctequiv = GLOB.RoleAuthority.roles_by_name[JOB_CARGO_TECH] if(ctequiv) botcard.access = ctequiv.get_access() cell = new(src) @@ -83,7 +83,7 @@ SSradio.add_object(src, beacon_freq, filter = RADIO_NAVBEACONS) var/count = 0 - for(var/obj/structure/machinery/bot/mulebot/other in machines) + for(var/obj/structure/machinery/bot/mulebot/other in GLOB.machines) count++ if(!suffix) suffix = "#[count]" @@ -105,12 +105,12 @@ var/list/orders = list("0","1","2","3","4","5","6","7","8","9") wire_text = list() wire_order = list() - while(colours.len > 0) - var/color = colours[ rand(1,colours.len) ] + while(length(colours) > 0) + var/color = colours[ rand(1,length(colours)) ] wire_text += color colours -= color - var/order = orders[ rand(1,orders.len) ] + var/order = orders[ rand(1,length(orders)) ] wire_order += text2num(order) orders -= order @@ -284,7 +284,7 @@ return if (usr.stat) return - if ((in_range(src, usr) && istype(src.loc, /turf)) || (ishighersilicon(usr))) + if ((in_range(src, usr) && istype(src.loc, /turf)) || (isSilicon(usr))) usr.set_interaction(src) switch(href_list["op"]) @@ -584,7 +584,7 @@ at_target() return - else if(path.len > 0 && target) // valid path + else if(length(path) > 0 && target) // valid path var/turf/next = path[1] reached_target = 0 @@ -645,7 +645,7 @@ spawn(2) calc_path(next) - if(path.len > 0) + if(length(path) > 0) src.visible_message("[src] makes a delighted ping!", "You hear a ping.") playsound(src.loc, 'sound/machines/ping.ogg', 25, 0) mode = 4 @@ -667,7 +667,7 @@ calc_path() - if(path.len > 0) + if(length(path) > 0) blockcount = 0 mode = 4 src.visible_message("[src] makes a delighted ping!", "You hear a ping.") @@ -756,13 +756,10 @@ if(!(wires & WIRE_MOBAVOID)) //usually just bumps, but if avoidance disabled knock over mobs var/mob/M = A if(ismob(M)) - if(isborg(M)) - src.visible_message(SPAN_DANGER("[src] bumps into [M]!")) - else - src.visible_message(SPAN_DANGER("[src] knocks over [M]!")) - M.stop_pulling() - M.apply_effect(8, STUN) - M.apply_effect(5, WEAKEN) + src.visible_message(SPAN_DANGER("[src] knocks over [M]!")) + M.stop_pulling() + M.apply_effect(8, STUN) + M.apply_effect(5, WEAKEN) ..() /obj/structure/machinery/bot/mulebot/alter_health() diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 3b2a91eea3..3b7d824928 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -10,7 +10,6 @@ var/list/network = list(CAMERA_NET_MILITARY) var/c_tag = null - var/c_tag_order = 999 var/status = 1 anchored = TRUE var/panel_open = FALSE // 0 = Closed / 1 = Open @@ -38,8 +37,14 @@ /// If this camera should have innate EMP-proofing var/emp_proof = FALSE + ///Autonaming + var/autoname = FALSE + var/autonumber = 0 //camera number in area + +GLOBAL_LIST_EMPTY_TYPED(all_cameras, /obj/structure/machinery/camera) /obj/structure/machinery/camera/Initialize(mapload, ...) . = ..() + GLOB.all_cameras += src WireColorToFlag = randomCameraWires() assembly = new(src) assembly.state = 4 @@ -47,24 +52,50 @@ if(colony_camera_mapload && mapload && is_ground_level(z)) network = list(CAMERA_NET_COLONY) - if(!src.network || src.network.len < 1) + if(LAZYLEN(src.network) < 1) if(loc) error("[src.name] in [get_area(src)] (x:[src.x] y:[src.y] z:[src.z]) has errored. [src.network?"Empty network list":"Null network list"]") else error("[src.name] in [get_area(src)]has errored. [src.network?"Empty network list":"Null network list"]") ASSERT(src.network) - ASSERT(src.network.len > 0) + ASSERT(length(src.network) > 0) set_pixel_location() update_icon() + //This camera automatically sets it's name to whatever the area that it's in is called. + if(autoname) + autonumber = 1 + var/area/my_area = get_area(src) + if(my_area) + for(var/obj/structure/machinery/camera/autoname/current_camera in GLOB.machines) + if(current_camera == src) + continue + var/area/current_camera_area = get_area(current_camera) + if(current_camera_area.type != my_area.type) + continue + + if(!current_camera.autonumber) + continue + + autonumber = max(autonumber, current_camera.autonumber + 1) + c_tag = "[my_area.name] #[autonumber]" + /obj/structure/machinery/camera/Destroy() + GLOB.all_cameras -= src . = ..() QDEL_NULL(assembly) /obj/structure/machinery/camera/update_icon() . = ..() - if(icon_state == "autocam_editor") + // If the camera has been EMPed. + if(stat & EMPED) + icon_state = "cameraemp" + // If the camera isn't EMPed, but is disabled. + else if(!status) + icon_state = "camera1" + // Otherwise, just give it the normal animated `icon_state`. + else icon_state = "camera" /obj/structure/machinery/camera/set_pixel_location() @@ -76,24 +107,27 @@ /obj/structure/machinery/camera/emp_act(severity) . = ..() - if(!isEmpProof()) - if(prob(100/severity)) - icon_state = "[initial(icon_state)]emp" - var/list/previous_network = network - network = list() - cameranet.removeCamera(src) - stat |= EMPED - set_light(0) - triggerCameraAlarm() - spawn(900) - network = previous_network - icon_state = initial(icon_state) - stat &= ~EMPED - cancelCameraAlarm() - if(can_use()) - cameranet.addCamera(src) - kick_viewers() + // If the camera is EMP proof, or it passed the RNG check. + if(isEmpProof() || !prob(100 / severity)) + return + + var/list/previous_network = network + network = list() + GLOB.all_cameras -= src + stat |= EMPED + update_icon() + set_light(0) + triggerCameraAlarm() + kick_viewers() + addtimer(CALLBACK(src, PROC_REF(undo_emp), previous_network), 90 SECONDS) +/obj/structure/machinery/camera/proc/undo_emp(previous_network) + network = previous_network + stat &= ~EMPED + update_icon() + cancelCameraAlarm() + if(can_use()) + GLOB.all_cameras += src /obj/structure/machinery/camera/ex_act(severity) if(src.invuln) @@ -104,7 +138,6 @@ /obj/structure/machinery/camera/proc/setViewRange(num = 7) src.view_range = num - cameranet.updateVisibility(src, 0) /obj/structure/machinery/camera/attack_hand(mob/living/carbon/human/user as mob) @@ -166,16 +199,6 @@ if (S.current == src) to_chat(O, "[U] holds \a [itemname] up to one of the cameras ...") show_browser(O, info, itemname, itemname) - else if (istype(W, /obj/item/device/camera_bug)) - if (!src.can_use()) - to_chat(user, SPAN_NOTICE(" Camera non-functional")) - return - if (src.bugged) - to_chat(user, SPAN_NOTICE(" Camera bug removed.")) - src.bugged = 0 - else - to_chat(user, SPAN_NOTICE(" Camera bugged.")) - src.bugged = 1 else ..() return @@ -189,10 +212,7 @@ visible_message(SPAN_WARNING("[user] has reactivated [src]!")) else visible_message(SPAN_WARNING("[user] has deactivated [src]!")) - if(status) - icon_state = "camera" - else - icon_state = "camera1" + update_icon() // now disconnect anyone using the camera //Apparently, this will disconnect anyone even if the camera was re-activated. //I guess that doesn't matter since they can't use it anyway? @@ -209,15 +229,10 @@ to_chat(O, "The screen bursts into static.") /obj/structure/machinery/camera/proc/triggerCameraAlarm() - alarm_on = 1 - for(var/mob/living/silicon/S in GLOB.mob_list) - S.triggerAlarm("Camera", get_area(src), list(src), src) - + alarm_on = TRUE /obj/structure/machinery/camera/proc/cancelCameraAlarm() - alarm_on = 0 - for(var/mob/living/silicon/S in GLOB.mob_list) - S.cancelAlarm("Camera", get_area(src), src) + alarm_on = FALSE /obj/structure/machinery/camera/proc/can_use() if(!status) @@ -248,9 +263,11 @@ //Return a working camera that can see a given mob //or null if none /proc/seen_by_camera(mob/M) - for(var/obj/structure/machinery/camera/C in oview(4, M)) + FOR_DOVIEW(var/obj/structure/machinery/camera/C, 4, M, HIDE_INVISIBLE_OBSERVER) if(C.can_use()) // check if camera disabled + FOR_DOVIEW_END return C + FOR_DOVIEW_END return null /proc/near_range_camera(mob/M) @@ -284,6 +301,22 @@ return 1 return 0 +/obj/structure/machinery/camera/correspondent + network = list(CAMERA_NET_CORRESPONDENT) + invisibility = INVISIBILITY_ABSTRACT + invuln = TRUE + unslashable = TRUE + unacidable = TRUE + colony_camera_mapload = FALSE + var/obj/item/device/camera/broadcasting/linked_broadcasting + +/obj/structure/machinery/camera/correspondent/Initialize(mapload, obj/item/device/camera/broadcasting/camera_item) + . = ..() + if(!camera_item) + return INITIALIZE_HINT_QDEL + linked_broadcasting = camera_item + c_tag = linked_broadcasting.get_broadcast_name() + /obj/structure/machinery/camera/mortar alpha = 0 mouse_opacity = MOUSE_OPACITY_TRANSPARENT diff --git a/code/game/machinery/camera/motion.dm b/code/game/machinery/camera/motion.dm index 41aa7fa327..498984a487 100644 --- a/code/game/machinery/camera/motion.dm +++ b/code/game/machinery/camera/motion.dm @@ -23,7 +23,6 @@ // If not detecting with motion camera... /obj/structure/machinery/camera/proc/newTarget(mob/target) - if (isAI(target)) return 0 if (detectTime == 0) detectTime = world.time // start the clock if (!(target in motionTargets)) @@ -33,15 +32,12 @@ /obj/structure/machinery/camera/proc/lostTarget(mob/target) if (target in motionTargets) motionTargets -= target - if (motionTargets.len == 0) + if (length(motionTargets) == 0) cancelAlarm() /obj/structure/machinery/camera/proc/cancelAlarm() if (!status || (stat & NOPOWER)) return 0 - if (detectTime == -1) - for (var/mob/living/silicon/aiPlayer in ai_mob_list) - aiPlayer.cancelAlarm("Motion", get_area(src), src) detectTime = 0 return 1 @@ -49,7 +45,5 @@ if (!status || (stat & NOPOWER)) return 0 if (!detectTime) return 0 - for (var/mob/living/silicon/aiPlayer in ai_mob_list) - aiPlayer.triggerAlarm("Motion", get_area(src), list(src), src) detectTime = -1 return 1 diff --git a/code/game/machinery/camera/presets.dm b/code/game/machinery/camera/presets.dm index 7af666884b..b86f51adc6 100644 --- a/code/game/machinery/camera/presets.dm +++ b/code/game/machinery/camera/presets.dm @@ -70,21 +70,7 @@ // AUTONAME /obj/structure/machinery/camera/autoname - var/number = 0 //camera number in area - -//This camera type automatically sets it's name to whatever the area that it's in is called. -/obj/structure/machinery/camera/autoname/Initialize(mapload, ...) - . = ..() - number = 1 - var/area/A = get_area(src) - if(A) - for(var/obj/structure/machinery/camera/autoname/C in machines) - if(C == src) continue - var/area/CA = get_area(C) - if(CA.type == A.type) - if(C.number) - number = max(number, C.number+1) - c_tag = "[A.name] #[number]" + autoname = TRUE //cameras installed inside the dropships, accessible via both cockpit monitor and Almayer camera computers /obj/structure/machinery/camera/autoname/almayer/dropship_one @@ -93,6 +79,9 @@ /obj/structure/machinery/camera/autoname/almayer/dropship_two network = list(CAMERA_NET_ALMAYER, CAMERA_NET_NORMANDY) +/obj/structure/machinery/camera/autoname/almayer/dropship_three + network = list(CAMERA_NET_ALMAYER, CAMERA_NET_RESEARCH) + /obj/structure/machinery/camera/autoname/almayer name = "military-grade camera" network = list(CAMERA_NET_ALMAYER) @@ -111,7 +100,11 @@ /obj/structure/machinery/camera/autoname/almayer/containment/ares name = "ares core camera" - network = list(CAMERA_NET_ALMAYER, CAMERA_NET_ARES) + network = list(CAMERA_NET_ARES) + +/obj/structure/machinery/camera/autoname/almayer/brig + name = "brig camera" + network = list(CAMERA_NET_BRIG) /obj/structure/machinery/camera/autoname/golden_arrow name = "military-grade camera" diff --git a/code/game/machinery/camera/tracking.dm b/code/game/machinery/camera/tracking.dm deleted file mode 100644 index 806664e012..0000000000 --- a/code/game/machinery/camera/tracking.dm +++ /dev/null @@ -1,247 +0,0 @@ -/mob/living/silicon/ai/var/max_locations = 10 -/mob/living/silicon/ai/var/stored_locations[0] - -/mob/living/silicon/ai/proc/InvalidTurf(turf/T as turf) - if(!T) - return 1 - if(is_admin_level(T.z)) - return 1 - if(T.z > 6) - return 1 - return 0 - -/mob/living/silicon/ai/proc/get_camera_list() - - if(src.stat == 2) - return - - var/list/L = list() - for (var/obj/structure/machinery/camera/C in cameranet.cameras) - L.Add(C) - - camera_sort(L) - - var/list/T = list() - T["Cancel"] = "Cancel" - for (var/obj/structure/machinery/camera/C in L) - T[text("[][]", C.c_tag, (C.can_use() ? null : " (Deactivated)"))] = C - - track = new() - track.cameras = T - return T - - -/mob/living/silicon/ai/proc/ai_camera_list(camera in get_camera_list()) - set category = "AI Commands" - set name = "Show Camera List" - - if(src.stat == 2) - to_chat(src, "You can't list the cameras because you are dead!") - return - - if (!camera || camera == "Cancel") - return 0 - - var/obj/structure/machinery/camera/C = track.cameras[camera] - src.eyeobj.setLoc(C) - - return - -/mob/living/silicon/ai/proc/ai_store_location(newloc as text) - set category = "AI Commands" - set name = "Store Camera Location" - set desc = "Stores your current camera location by the given name" - - newloc = copytext(sanitize(loc), 1, MAX_MESSAGE_LEN) - if(!newloc) - to_chat(src, SPAN_DANGER("Must supply a location name")) - return - - if(stored_locations.len >= max_locations) - to_chat(src, SPAN_DANGER("Cannot store additional locations. Remove one first")) - return - - if(newloc in stored_locations) - to_chat(src, SPAN_DANGER("There is already a stored location by this name")) - return - - var/L = src.eyeobj.getLoc() - if (InvalidTurf(get_turf(L))) - to_chat(src, SPAN_DANGER("Unable to store this location")) - return - - stored_locations[newloc] = L - to_chat(src, "Location '[newloc]' stored") - -/mob/living/silicon/ai/proc/sorted_stored_locations() - return sortList(stored_locations) - -/mob/living/silicon/ai/proc/ai_goto_location(loc in sorted_stored_locations()) - set category = "AI Commands" - set name = "Goto Camera Location" - set desc = "Returns to the selected camera location" - - if (!(loc in stored_locations)) - to_chat(src, SPAN_DANGER("Location [loc] not found")) - return - - var/L = stored_locations[loc] - src.eyeobj.setLoc(L) - -/mob/living/silicon/ai/proc/ai_remove_location(loc in sorted_stored_locations()) - set category = "AI Commands" - set name = "Delete Camera Location" - set desc = "Deletes the selected camera location" - - if (!(loc in stored_locations)) - to_chat(src, SPAN_DANGER("Location [loc] not found")) - return - - stored_locations.Remove(loc) - to_chat(src, "Location [loc] removed") - -// Used to allow the AI is write in mob names/camera name from the CMD line. -/datum/trackable - var/list/names = list() - var/list/namecounts = list() - var/list/humans = list() - var/list/others = list() - var/list/cameras = list() - -/mob/living/silicon/ai/proc/trackable_mobs() - - if(usr.stat == 2) - return list() - - var/datum/trackable/TB = new() - for(var/i in GLOB.living_mob_list) - var/mob/living/M = i - // Easy checks first. - // Don't detect mobs on Centcom. Since the wizard den is on Centcomm, we only need this. - if(InvalidTurf(get_turf(M))) - continue - if(M == usr) - continue - if(M.invisibility)//cloaked - continue - - // Human check - var/human = 0 - if(istype(M, /mob/living/carbon/human)) - human = 1 - var/mob/living/carbon/human/H = M - //Cameras can't track people wearing an agent card or a ninja hood. - if(H.wear_id && istype(H.wear_id.GetID(), /obj/item/card/id/syndicate)) - continue - - // Now, are they viewable by a camera? (This is last because it's the most intensive check) - if(!near_camera(M)) - continue - - var/name = M.name - if (name in TB.names) - TB.namecounts[name]++ - name = text("[] ([])", name, TB.namecounts[name]) - else - TB.names.Add(name) - TB.namecounts[name] = 1 - if(human) - TB.humans[name] = M - else - TB.others[name] = M - - var/list/targets = sortList(TB.humans) + sortList(TB.others) - src.track = TB - return targets - -/mob/living/silicon/ai/proc/ai_camera_track(target_name in trackable_mobs()) - set category = "AI Commands" - set name = "Track With Camera" - set desc = "Select who you would like to track." - - if(src.stat == 2) - to_chat(src, "You can't track with camera because you are dead!") - return - if(!target_name) - src.cameraFollow = null - - var/mob/target = (isnull(track.humans[target_name]) ? track.others[target_name] : track.humans[target_name]) - src.track = null - ai_actual_track(target) - -/mob/living/silicon/ai/proc/ai_cancel_tracking(forced = 0) - if(!cameraFollow) - return - - to_chat(src, "Follow camera mode [forced ? "terminated" : "ended"].") - cameraFollow = null - -/mob/living/silicon/ai/proc/ai_actual_track(mob/living/target as mob) - if(!istype(target)) return - var/mob/living/silicon/ai/U = usr - - U.cameraFollow = target - //U << text("Now tracking [] on camera.", target.name) - //if (U.interactee == null) - // U.set_interaction(U) - to_chat(U, "Now tracking [target.name] on camera.") - - spawn (0) - while (U.cameraFollow == target) - if (U.cameraFollow == null) - return - if (istype(target, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = target - if(H.wear_id && istype(H.wear_id.GetID(), /obj/item/card/id/syndicate)) - U.ai_cancel_tracking(1) - return - - if (!near_camera(target)) - to_chat(U, "Target is not near any active cameras.") - sleep(100) - continue - - if(U.eyeobj) - U.eyeobj.setLoc(get_turf(target), 0) - else - view_core() - return - sleep(10) - -/proc/near_camera(mob/living/M) - if (!isturf(M.loc)) - return 0 - if(isrobot(M)) - var/mob/living/silicon/robot/R = M - if(!(R.camera && R.camera.can_use()) && !cameranet.checkCameraVis(M)) - return 0 - else if(!cameranet.checkCameraVis(M)) - return 0 - return 1 - -/obj/structure/machinery/camera/attack_remote(mob/living/silicon/ai/user as mob) - if (!istype(user)) - return - if (!src.can_use()) - return - user.eyeobj.setLoc(get_turf(src)) - - -/mob/living/silicon/ai/attack_remote(mob/user as mob) - ai_camera_list() - -/proc/camera_sort(list/L) // TODO: replace this bubblesort with a mergesort - spookydonut - var/obj/structure/machinery/camera/a - var/obj/structure/machinery/camera/b - - for (var/i = L.len, i > 0, i--) - for (var/j = 1 to i - 1) - a = L[j] - b = L[j + 1] - if (a.c_tag_order != b.c_tag_order) - if (a.c_tag_order > b.c_tag_order) - L.Swap(j, j + 1) - else - if (sorttext(a.c_tag, b.c_tag) < 0) - L.Swap(j, j + 1) - return L diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm index eb7a501fa0..528d90f4b4 100644 --- a/code/game/machinery/cell_charger.dm +++ b/code/game/machinery/cell_charger.dm @@ -16,7 +16,7 @@ if(charging && !(inoperable()) ) - var/newlevel = round(charging.percent() * 4 / 99) + var/newlevel = floor(charging.percent() * 4 / 99) if(chargelevel != newlevel) diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 4973eda8c7..de2522d921 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -35,7 +35,7 @@ else if(isliving(src.implanted)) var/mob/living/L = src.implanted - src.healthstring = "[round(L.getOxyLoss())] - [round(L.getFireLoss())] - [round(L.getToxLoss())] - [round(L.getBruteLoss())]" + src.healthstring = "[floor(L.getOxyLoss())] - [floor(L.getFireLoss())] - [floor(L.getToxLoss())] - [floor(L.getBruteLoss())]" if (!src.healthstring) src.healthstring = "ERROR" return src.healthstring diff --git a/code/game/machinery/colony_floodlights.dm b/code/game/machinery/colony_floodlights.dm new file mode 100644 index 0000000000..e8f59ad643 --- /dev/null +++ b/code/game/machinery/colony_floodlights.dm @@ -0,0 +1,316 @@ +//Putting these here since it's power-related +/obj/structure/machinery/colony_floodlight_switch + name = "colony floodlight switch" + icon = 'icons/obj/structures/machinery/power.dmi' + icon_state = "panelnopower" + desc = "This switch controls the floodlights surrounding the archaeology complex. It only functions when there is power." + density = FALSE + anchored = TRUE + use_power = USE_POWER_IDLE + unslashable = TRUE + unacidable = TRUE + power_machine = TRUE + var/ispowered = FALSE + var/turned_on = FALSE //has to be toggled in engineering + ///All floodlights under our control + var/list/floodlist = list() + +/obj/structure/machinery/colony_floodlight_switch/Initialize(mapload, ...) + . = ..() + return INITIALIZE_HINT_LATELOAD + +/obj/structure/machinery/colony_floodlight_switch/LateInitialize() + . = ..() + for(var/obj/structure/machinery/colony_floodlight/floodlight in GLOB.machines) + floodlist += floodlight + floodlight.fswitch = src + start_processing() + +/obj/structure/machinery/colony_floodlight_switch/Destroy() + for(var/obj/structure/machinery/colony_floodlight/floodlight as anything in floodlist) + floodlight.fswitch = null + floodlist = null + return ..() + +/obj/structure/machinery/colony_floodlight_switch/update_icon() + if(!ispowered) + icon_state = "panelnopower" + else if(turned_on) + icon_state = "panelon" + else + icon_state = "paneloff" + +/obj/structure/machinery/colony_floodlight_switch/process() + var/lightpower = 0 + for(var/obj/structure/machinery/colony_floodlight/floodlight as anything in floodlist) + if(!floodlight.is_lit) + continue + lightpower += floodlight.power_tick + use_power(lightpower) + +/obj/structure/machinery/colony_floodlight_switch/power_change() + ..() + if((stat & NOPOWER)) + if(ispowered && turned_on) + toggle_lights() + ispowered = FALSE + turned_on = FALSE + update_icon() + else + ispowered = TRUE + update_icon() + +/obj/structure/machinery/colony_floodlight_switch/proc/toggle_lights() + for(var/obj/structure/machinery/colony_floodlight/floodlight as anything in floodlist) + addtimer(CALLBACK(floodlight, TYPE_PROC_REF(/obj/structure/machinery/colony_floodlight, toggle_light)), rand(0, 5 SECONDS)) + +/obj/structure/machinery/colony_floodlight_switch/attack_hand(mob/user as mob) + if(!ishuman(user)) + to_chat(user, "Nice try.") + return FALSE + if(!ispowered) + to_chat(user, "Nothing happens.") + return FALSE + playsound(src,'sound/items/Deconstruct.ogg', 30, 1) + use_power(5) + toggle_lights() + turned_on = !turned_on + update_icon() + return TRUE + + +#define FLOODLIGHT_REPAIR_UNSCREW 0 +#define FLOODLIGHT_REPAIR_CROWBAR 1 +#define FLOODLIGHT_REPAIR_WELD 2 +#define FLOODLIGHT_REPAIR_CABLE 3 +#define FLOODLIGHT_REPAIR_SCREW 4 + +/obj/structure/machinery/colony_floodlight + name = "colony floodlight" + icon = 'icons/obj/structures/machinery/big_floodlight.dmi' + icon_state = "flood_s_off" + density = TRUE + anchored = TRUE + layer = ABOVE_XENO_LAYER + unslashable = TRUE + unacidable = TRUE + use_power = USE_POWER_NONE //It's the switch that uses the actual power, not the lights + needs_power = FALSE + ///Whether it has been smashed by xenos + var/damaged = FALSE + ///Whether the floodlight is switched to on or off. Does not necessarily mean it emits light. + var/is_lit = FALSE + ///The power each floodlight takes up per process + var/power_tick = 50 + ///Reverse lookup for power grabbing in area + var/obj/structure/machinery/colony_floodlight_switch/fswitch = null + var/lum_value = 7 + var/repair_state = FLOODLIGHT_REPAIR_UNSCREW + health = 150 + +/obj/structure/machinery/colony_floodlight/Destroy() + if(fswitch) + fswitch.floodlist -= src + fswitch = null + . = ..() + +/obj/structure/machinery/colony_floodlight/update_icon() + if(damaged) + icon_state = "flood_s_dmg" + else if(is_lit) + icon_state = "flood_s_on" + else + icon_state = "flood_s_off" + +/obj/structure/machinery/colony_floodlight/attackby(obj/item/I, mob/user) + if(damaged) + if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) + return FALSE + + if(repair_state == FLOODLIGHT_REPAIR_UNSCREW) + playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts unscrewing [src]'s maintenance hatch."), \ + SPAN_NOTICE("You start unscrewing [src]'s maintenance hatch.")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_UNSCREW) + return + playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) + repair_state = FLOODLIGHT_REPAIR_CROWBAR + user.visible_message(SPAN_NOTICE("[user] unscrews [src]'s maintenance hatch."), \ + SPAN_NOTICE("You unscrew [src]'s maintenance hatch.")) + + else if(repair_state == FLOODLIGHT_REPAIR_SCREW) + playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts screwing [src]'s maintenance hatch closed."), \ + SPAN_NOTICE("You start screwing [src]'s maintenance hatch closed.")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_SCREW) + return + playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) + damaged = FALSE + repair_state = FLOODLIGHT_REPAIR_UNSCREW + health = initial(health) + user.visible_message(SPAN_NOTICE("[user] screws [src]'s maintenance hatch closed."), \ + SPAN_NOTICE("You screw [src]'s maintenance hatch closed.")) + if(is_lit) + set_light(lum_value) + update_icon() + return TRUE + + else if(HAS_TRAIT(I, TRAIT_TOOL_CROWBAR)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) + return FALSE + + if(repair_state == FLOODLIGHT_REPAIR_CROWBAR) + playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts prying [src]'s damaged lighting assembly out."),\ + SPAN_NOTICE("You start prying [src]'s damaged lighting assembly out.")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_CROWBAR) + return + playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) + repair_state = FLOODLIGHT_REPAIR_WELD + user.visible_message(SPAN_NOTICE("[user] pries [src]'s damaged lighting assembly out."),\ + SPAN_NOTICE("You pry [src]'s damaged lighting assembly out.")) + return TRUE + + else if(iswelder(I)) + if(!HAS_TRAIT(I, TRAIT_TOOL_BLOWTORCH)) + to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + return + var/obj/item/tool/weldingtool/welder = I + + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) + return FALSE + + if(repair_state == FLOODLIGHT_REPAIR_WELD) + if(welder.remove_fuel(1, user)) + playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) + user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s damage."), + SPAN_NOTICE("You start welding [src]'s damage.")) + if(do_after(user, 4 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + if(QDELETED(src) || !welder.isOn() || repair_state != FLOODLIGHT_REPAIR_WELD) + return + playsound(loc, 'sound/items/Welder2.ogg', 25, 1) + repair_state = FLOODLIGHT_REPAIR_CABLE + user.visible_message(SPAN_NOTICE("[user] welds [src]'s damage."), + SPAN_NOTICE("You weld [src]'s damage.")) + return TRUE + else + to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) + return TRUE + + else if(iscoil(I)) + var/obj/item/stack/cable_coil/coil = I + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) + return FALSE + + if(repair_state == FLOODLIGHT_REPAIR_CABLE) + if(coil.get_amount() < 2) + to_chat(user, SPAN_WARNING("You need two coils of wire to replace the damaged cables.")) + return + playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts replacing [src]'s damaged cables."),\ + SPAN_NOTICE("You start replacing [src]'s damaged cables.")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_CABLE) + return + if(coil.use(2)) + playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) + repair_state = FLOODLIGHT_REPAIR_SCREW + user.visible_message(SPAN_NOTICE("[user] replaces [src]'s damaged cables."),\ + SPAN_NOTICE("You replace [src]'s damaged cables.")) + return TRUE + + else if(istype(I, /obj/item/device/lightreplacer)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) + return FALSE + + if(repair_state == FLOODLIGHT_REPAIR_UNSCREW) + to_chat(user, SPAN_WARNING("You need to unscrew [src]'s maintenance hatch.")) + return FALSE + if(repair_state == FLOODLIGHT_REPAIR_SCREW) + to_chat(user, SPAN_WARNING("You need to screw [src]'s maintenance hatch.")) + return FALSE + + var/obj/item/device/lightreplacer/replacer = I + if(!replacer.CanUse(user)) + to_chat(user, replacer.failmsg) + return FALSE + playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts replacing [src]'s damaged lighting assembly."),\ + SPAN_NOTICE("You start replacing [src]'s damaged lighting assembly.")) + if(do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + if(QDELETED(src) || repair_state == FLOODLIGHT_REPAIR_SCREW) + return + replacer.Use(user) + repair_state = FLOODLIGHT_REPAIR_SCREW + user.visible_message(SPAN_NOTICE("[user] replaces [src]'s damaged lighting assembly."),\ + SPAN_NOTICE("You replace [src]'s damaged lighting assembly.")) + return TRUE + + return ..() + +/obj/structure/machinery/colony_floodlight/attack_hand(mob/user) + if(ishuman(user)) + if(damaged) + to_chat(user, SPAN_WARNING("[src] is damaged.")) + else if(!is_lit) + to_chat(user, SPAN_WARNING("Nothing happens. Looks like it's powered elsewhere.")) + return FALSE + return ..() + +/obj/structure/machinery/colony_floodlight/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + if(damaged) + . += SPAN_WARNING("It is damaged.") + if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + switch(repair_state) + if(FLOODLIGHT_REPAIR_UNSCREW) . += SPAN_INFO("You must first unscrew its maintenance hatch.") + if(FLOODLIGHT_REPAIR_CROWBAR) . += SPAN_INFO("You must crowbar its lighting assembly out or use a light replacer.") + if(FLOODLIGHT_REPAIR_WELD) . += SPAN_INFO("You must weld the damage to it.") + if(FLOODLIGHT_REPAIR_CABLE) . += SPAN_INFO("You must replace its damaged cables.") + if(FLOODLIGHT_REPAIR_SCREW) . += SPAN_INFO("You must screw its maintenance hatch closed.") + else if(!is_lit) + . += SPAN_INFO("It doesn't seem powered.") + +/obj/structure/machinery/colony_floodlight/ex_act(severity) + switch(severity) + if(0 to EXPLOSION_THRESHOLD_LOW) + if(prob(25)) + set_damaged() + return + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) + if(prob(50)) + set_damaged() + return + if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) + set_damaged() + return + +/obj/structure/machinery/colony_floodlight/proc/set_damaged() + playsound(src, "glassbreak", 70, 1) + damaged = TRUE + if(is_lit) + set_light(0) + update_icon() + +/obj/structure/machinery/colony_floodlight/proc/toggle_light() + is_lit = !is_lit + if(!damaged) + set_light(is_lit ? lum_value : 0) + update_icon() + return is_lit + +#undef FLOODLIGHT_REPAIR_UNSCREW +#undef FLOODLIGHT_REPAIR_CROWBAR +#undef FLOODLIGHT_REPAIR_WELD +#undef FLOODLIGHT_REPAIR_CABLE +#undef FLOODLIGHT_REPAIR_SCREW diff --git a/code/game/machinery/computer/HolodeckControl.dm b/code/game/machinery/computer/HolodeckControl.dm index fb1262ec74..88ce871683 100644 --- a/code/game/machinery/computer/HolodeckControl.dm +++ b/code/game/machinery/computer/HolodeckControl.dm @@ -14,6 +14,12 @@ /turf/open/floor/holofloor/attackby(obj/item/W as obj, mob/user as mob) return +/turf/open/floor/holofloor/cult + icon_state = "cult" + +/turf/open/floor/holofloor/cult/south + dir = SOUTH + /turf/open/floor/holofloor/grass name = "lush grass" icon_state = "grass1" @@ -22,7 +28,7 @@ . = ..() icon_state = "grass[pick("1","2","3","4")]" update_icon() - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) if(istype(get_step(src, direction), /turf/open/floor)) var/turf/open/floor/FF = get_step(src,direction) FF.update_icon() //so siding get updated properly @@ -77,9 +83,6 @@ to_chat(user, "It's a holotable! There are no bolts!") return - if(isborg(user)) - return - ..() /obj/structure/surface/table/holotable/wood @@ -151,19 +154,19 @@ return M.forceMove(loc) M.apply_effect(5, WEAKEN) - for(var/obj/structure/machinery/scoreboard/X in machines) + for(var/obj/structure/machinery/scoreboard/X in GLOB.machines) if(X.id == id) X.score(side, 3)// 3 points for dunking a mob // no break, to update multiple scoreboards - visible_message(SPAN_DANGER("[user] dunks [M] into the [src]!")) + visible_message(SPAN_DANGER("[user] dunks [M] into [src]!")) return else if (istype(W, /obj/item) && get_dist(src,user)<2) user.drop_inv_item_to_loc(W, loc) - for(var/obj/structure/machinery/scoreboard/X in machines) + for(var/obj/structure/machinery/scoreboard/X in GLOB.machines) if(X.id == id) X.score(side) // no break, to update multiple scoreboards - visible_message(SPAN_NOTICE("[user] dunks [W] into the [src]!")) + visible_message(SPAN_NOTICE("[user] dunks [W] into [src]!")) return /obj/structure/holohoop/BlockedPassDirs(atom/movable/mover, target_dir) @@ -173,7 +176,7 @@ return BLOCKED_MOVEMENT if(prob(50)) I.forceMove(src.loc) - for(var/obj/structure/machinery/scoreboard/X in machines) + for(var/obj/structure/machinery/scoreboard/X in GLOB.machines) if(X.id == id) X.score(side) // no break, to update multiple scoreboards diff --git a/code/game/machinery/computer/ai_core.dm b/code/game/machinery/computer/ai_core.dm deleted file mode 100644 index bb6972a58a..0000000000 --- a/code/game/machinery/computer/ai_core.dm +++ /dev/null @@ -1,256 +0,0 @@ -/obj/structure/AIcore - density = TRUE - anchored = FALSE - name = "AI core" - icon = 'icons/obj/structures/machinery/AI.dmi' - icon_state = "hydra-off" - var/state = 0 - var/obj/item/circuitboard/aicore/circuit = null - var/obj/item/device/mmi/brain = null - - -/obj/structure/AIcore/attackby(obj/item/P as obj, mob/user as mob) - switch(state) - if(0) - if(HAS_TRAIT(P, TRAIT_TOOL_WRENCH)) - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - to_chat(user, SPAN_NOTICE(" You wrench the frame into place.")) - anchored = TRUE - state = 1 - if(iswelder(P)) - var/obj/item/tool/weldingtool/WT = P - if(!HAS_TRAIT(P, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(!WT.isOn()) - to_chat(user, "The welder must be on for this task.") - return - playsound(loc, 'sound/items/Welder.ogg', 25, 1) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!src || !WT.remove_fuel(0, user)) return - to_chat(user, SPAN_NOTICE(" You deconstruct the frame.")) - new /obj/item/stack/sheet/plasteel( loc, 4) - qdel(src) - if(1) - if(HAS_TRAIT(P, TRAIT_TOOL_WRENCH)) - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - to_chat(user, SPAN_NOTICE(" You unfasten the frame.")) - anchored = FALSE - state = 0 - if(istype(P, /obj/item/circuitboard/aicore) && !circuit) - if(user.drop_held_item()) - playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You place the circuit board inside the frame.")) - icon_state = "1" - circuit = P - P.forceMove(src) - if(HAS_TRAIT(P, TRAIT_TOOL_SCREWDRIVER) && circuit) - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You screw the circuit board into place.")) - state = 2 - icon_state = "2" - if(HAS_TRAIT(P, TRAIT_TOOL_CROWBAR) && circuit) - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You remove the circuit board.")) - state = 1 - icon_state = "0" - circuit.forceMove(loc) - circuit = null - if(2) - if(HAS_TRAIT(P, TRAIT_TOOL_SCREWDRIVER) && circuit) - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You unfasten the circuit board.")) - state = 1 - icon_state = "1" - if(istype(P, /obj/item/stack/cable_coil)) - var/obj/item/stack/cable_coil/C = P - if (C.get_amount() < 5) - to_chat(user, SPAN_WARNING("You need five coils of wire to add them to the frame.")) - return - to_chat(user, SPAN_NOTICE("You start to add cables to the frame.")) - playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - if (do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD) && state == 2) - if (C.use(5)) - state = 3 - icon_state = "3" - to_chat(user, SPAN_NOTICE("You add cables to the frame.")) - return - if(3) - if(HAS_TRAIT(P, TRAIT_TOOL_WIRECUTTERS)) - if (brain) - to_chat(user, "Get that brain out of there first") - else - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You remove the cables.")) - state = 2 - icon_state = "2" - var/obj/item/stack/cable_coil/A = new /obj/item/stack/cable_coil( loc ) - A.amount = 5 - - if(istype(P, /obj/item/stack/sheet/glass/reinforced)) - var/obj/item/stack/sheet/glass/reinforced/RG = P - if (RG.get_amount() < 2) - to_chat(user, SPAN_WARNING("You need two sheets of glass to put in the glass panel.")) - return - to_chat(user, SPAN_NOTICE("You start to put in the glass panel.")) - playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - if (do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD) && state == 3) - if(RG.use(2)) - to_chat(user, SPAN_NOTICE("You put in the glass panel.")) - state = 4 - icon_state = "4" - - if(istype(P, /obj/item/device/mmi)) - var/obj/item/device/mmi/mmi - if(!mmi.brainmob) - to_chat(user, SPAN_DANGER("Sticking an empty [mmi] into the frame would sort of defeat the purpose.")) - return - if(mmi.brainmob.stat == 2) - to_chat(user, SPAN_DANGER("Sticking a dead [mmi] into the frame would sort of defeat the purpose.")) - return - - if(jobban_isbanned(mmi.brainmob, "AI")) - to_chat(user, SPAN_DANGER("This [mmi] does not seem to fit.")) - return - - if(user.drop_held_item()) - mmi.forceMove(src) - brain = mmi - to_chat(usr, "Added [mmi].") - icon_state = "3b" - - if(HAS_TRAIT(P, TRAIT_TOOL_CROWBAR) && brain) - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You remove the brain.")) - brain.forceMove(loc) - brain = null - icon_state = "3" - - if(4) - if(HAS_TRAIT(P, TRAIT_TOOL_CROWBAR)) - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You remove the glass panel.")) - state = 3 - if (brain) - icon_state = "3b" - else - icon_state = "3" - new /obj/item/stack/sheet/glass/reinforced( loc, 2 ) - return - - if(HAS_TRAIT(P, TRAIT_TOOL_SCREWDRIVER)) - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - to_chat(user, SPAN_NOTICE(" You connect the monitor.")) - var/mob/living/silicon/ai/A = new /mob/living/silicon/ai (loc, brain) - if(A) //if there's no brain, the mob is deleted and a structure/AIcore is created - A.rename_self("ai", 1) - qdel(src) - -/obj/structure/AIcore/deactivated - name = "Inactive AI" - icon = 'icons/obj/structures/machinery/AI.dmi' - icon_state = "hydra-off" - anchored = TRUE - state = 20//So it doesn't interact based on the above. Not really necessary. - -/obj/structure/AIcore/deactivated/attackby(obj/item/device/aicard/A as obj, mob/user as mob) - if(istype(A, /obj/item/device/aicard))//Is it? - A.transfer_ai("INACTIVE","AICARD",src,user) - return - -/* -This is a good place for AI-related object verbs so I'm sticking it here. -If adding stuff to this, don't forget that an AI need to cancel_camera() whenever it physically moves to a different location. -That prevents a few funky behaviors. -*/ -//What operation to perform based on target, what ineraction to perform based on object used, target itself, user. The object used is src and calls this proc. -/obj/item/proc/transfer_ai(choice as text, interaction as text, target, mob/U as mob) - if(!src:flush) - switch(choice) - if("AICORE")//AI mob. - var/mob/living/silicon/ai/T = target - switch(interaction) - if("AICARD") - var/obj/item/device/aicard/C = src - if(C.contents.len)//If there is an AI on card. - to_chat(U, SPAN_WARNING("Transfer failed: \black Existing AI found on this terminal. Remove existing AI to install a new one.")) - else - new /obj/structure/AIcore/deactivated(T.loc)//Spawns a deactivated terminal at AI location. - T.aiRestorePowerRoutine = 0//So the AI initially has power. - T.control_disabled = 1//Can't control things remotely if you're stuck in a card! - T.forceMove(C)//Throw AI into the card. - C.name = "inteliCard - [T.name]" - if (T.stat == 2) - C.icon_state = "aicard-404" - else - C.icon_state = "aicard-full" - T.cancel_camera() - to_chat(T, "You have been downloaded to a mobile storage device. Remote device connection severed.") - to_chat(U, SPAN_NOTICE(" Transfer successful: \black [T.name] ([rand(1000,9999)].exe) removed from host terminal and stored within local memory.")) - - if("INACTIVE")//Inactive AI object. - var/obj/structure/AIcore/deactivated/T = target - switch(interaction) - if("AICARD") - var/obj/item/device/aicard/C = src - var/mob/living/silicon/ai/A = locate() in C//I love locate(). Best proc ever. - if(A)//If AI exists on the card. Else nothing since both are empty. - A.control_disabled = 0 - A.aiRadio.disabledAi = 0 - A.forceMove(T.loc)//To replace the terminal. - C.icon_state = "aicard" - C.name = "inteliCard" - C.overlays.Cut() - A.cancel_camera() - to_chat(A, "You have been uploaded to a stationary terminal. Remote device connection restored.") - to_chat(U, SPAN_NOTICE(" Transfer successful: \black [A.name] ([rand(1000,9999)].exe) installed and executed succesfully. Local copy has been removed.")) - qdel(T) - if("AIFIXER")//AI Fixer terminal. - var/obj/structure/machinery/computer/aifixer/T = target - switch(interaction) - if("AICARD") - var/obj/item/device/aicard/C = src - if(!T.contents.len) - if (!C.contents.len) - to_chat(U, "No AI to copy over!")//Well duh - else for(var/mob/living/silicon/ai/A in C) - C.icon_state = "aicard" - C.name = "inteliCard" - C.overlays.Cut() - A.forceMove(T) - T.occupant = A - A.control_disabled = 1 - if (A.stat == 2) - T.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-404") - else - T.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-full") - T.overlays -= image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-empty") - A.cancel_camera() - to_chat(A, "You have been uploaded to a stationary terminal. Sadly, there is no remote access from here.") - to_chat(U, SPAN_NOTICE(" Transfer successful: \black [A.name] ([rand(1000,9999)].exe) installed and executed successfully. Local copy has been removed.")) - else - if(!C.contents.len && T.occupant && !T.active) - C.name = "inteliCard - [T.occupant.name]" - T.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-empty") - if (T.occupant.stat == 2) - C.icon_state = "aicard-404" - T.overlays -= image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-404") - else - C.icon_state = "aicard-full" - T.overlays -= image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-full") - to_chat(T.occupant, "You have been downloaded to a mobile storage device. Still no remote access.") - to_chat(U, SPAN_NOTICE(" Transfer successful: \black [T.occupant.name] ([rand(1000,9999)].exe) removed from host terminal and stored within local memory.")) - T.occupant.forceMove(C) - T.occupant.cancel_camera() - T.occupant = null - else if (C.contents.len) - to_chat(U, SPAN_WARNING("ERROR: \black Artificial intelligence detected on terminal.")) - else if (T.active) - to_chat(U, SPAN_WARNING("ERROR: \black Reconstruction in progress.")) - else if (!T.occupant) - to_chat(U, SPAN_WARNING("ERROR: \black Unable to locate artificial intelligence.")) - else - to_chat(U, SPAN_WARNING("ERROR: \black AI flush is in progress, cannot execute transfer protocol.")) - return diff --git a/code/game/machinery/computer/aifixer.dm b/code/game/machinery/computer/aifixer.dm deleted file mode 100644 index 3a809620d7..0000000000 --- a/code/game/machinery/computer/aifixer.dm +++ /dev/null @@ -1,103 +0,0 @@ -/obj/structure/machinery/computer/aifixer - name = "AI System Integrity Restorer" - icon = 'icons/obj/structures/machinery/computer.dmi' - icon_state = "ai-fixer" - circuit = /obj/item/circuitboard/computer/aifixer - req_one_access = list(ACCESS_CIVILIAN_ENGINEERING) - var/mob/living/silicon/ai/occupant = null - var/active = 0 - processing = TRUE - -/obj/structure/machinery/computer/aifixer/New() - ..() - src.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-empty") - - -/obj/structure/machinery/computer/aifixer/attackby(I as obj, user as mob) - if(istype(I, /obj/item/device/aicard)) - if(inoperable()) - to_chat(user, "This terminal isn't functioning right now, get it working!") - return - I:transfer_ai("AIFIXER","AICARD",src,user) - - ..() - return - -/obj/structure/machinery/computer/aifixer/attack_remote(mob/user as mob) - return attack_hand(user) - -/obj/structure/machinery/computer/aifixer/attack_hand(mob/user as mob) - if(..()) - return - - user.set_interaction(src) - var/dat - - if (src.occupant) - dat += "Stored AI: [src.occupant.name]
    System integrity: [(src.occupant.health+100)/2]%
    " - - if (src.occupant.stat == 2) - dat += "AI nonfunctional" - else - dat += "AI functional" - if (!src.active) - dat += {"

    Begin Reconstruction"} - else - dat += "

    Reconstruction in process, please wait.
    " - dat += {" Close"} - - show_browser(user, dat, "AI System Integrity Restorer", "computer", "size=400x500") - return - -/obj/structure/machinery/computer/aifixer/process() - if(..()) - src.updateDialog() - return - -/obj/structure/machinery/computer/aifixer/Topic(href, href_list) - if(..()) - return - if (href_list["fix"]) - src.active = 1 - src.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-on") - while (src.occupant.health < 100) - src.occupant.apply_damage(-1, OXY) - src.occupant.apply_damage(-1, BURN) - src.occupant.apply_damage(-1, TOX) - src.occupant.apply_damage(-1, BRUTE) - src.occupant.updatehealth() - if (src.occupant.health >= 0 && src.occupant.stat == DEAD) - src.occupant.set_stat(CONSCIOUS) - GLOB.dead_mob_list -= src.occupant - GLOB.alive_mob_list += src.occupant - occupant.reload_fullscreens() - src.overlays -= image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-404") - src.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-full") - src.occupant.add_ai_verbs() - src.updateUsrDialog() - sleep(10) - src.active = 0 - src.overlays -= image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-on") - - - src.add_fingerprint(usr) - src.updateUsrDialog() - return - - -/obj/structure/machinery/computer/aifixer/update_icon() - ..() - // Broken / Unpowered - if(inoperable()) - overlays.Cut() - - // Working / Powered - else - if (occupant) - switch (occupant.stat) - if (0) - overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-full") - if (2) - overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-404") - else - overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-empty") diff --git a/code/game/machinery/computer/almayer_control.dm b/code/game/machinery/computer/almayer_control.dm index fb9f7a0375..e9c9cf91a8 100644 --- a/code/game/machinery/computer/almayer_control.dm +++ b/code/game/machinery/computer/almayer_control.dm @@ -72,7 +72,7 @@ var/list/data = list() var/list/messages = list() - data["alert_level"] = security_level + data["alert_level"] = GLOB.security_level data["time_request"] = cooldown_request data["time_destruct"] = cooldown_destruct @@ -85,7 +85,7 @@ if(SShijack.evac_status == EVACUATION_STATUS_INITIATED) data["evac_eta"] = SShijack.get_evac_eta() - if(!messagetitle.len) + if(!length(messagetitle)) data["messages"] = null else for(var/i in 1 to length(messagetitle)) @@ -108,46 +108,60 @@ . = ..() if(.) return + var/mob/user = ui.user switch(action) if("award") - print_medal(usr, src) + open_medal_panel(user, src) . = TRUE // evac stuff start \\ if("evacuation_start") - if(security_level < SEC_LEVEL_RED) - to_chat(usr, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) + if(GLOB.security_level < SEC_LEVEL_RED) + to_chat(user, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) return FALSE if(SShijack.evac_admin_denied) - to_chat(usr, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) + to_chat(user, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) return FALSE if(!SShijack.initiate_evacuation()) - to_chat(usr, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) + to_chat(user, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) return FALSE - log_game("[key_name(usr)] has called for an emergency evacuation.") - message_admins("[key_name_admin(usr)] has called for an emergency evacuation.") - log_ares_security("Initiate Evacuation", "[usr] has called for an emergency evacuation.") + log_game("[key_name(user)] has called for an emergency evacuation.") + message_admins("[key_name_admin(user)] has called for an emergency evacuation.") + log_ares_security("Initiate Evacuation", "Called for an emergency evacuation.", user) . = TRUE if("evacuation_cancel") + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(!istype(idcard)) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + if(!SShijack.cancel_evacuation()) - to_chat(usr, SPAN_WARNING("You are unable to cancel the evacuation right now!")) + to_chat(user, SPAN_WARNING("You are unable to cancel the evacuation right now!")) return FALSE - log_game("[key_name(usr)] has canceled the emergency evacuation.") - message_admins("[key_name_admin(usr)] has canceled the emergency evacuation.") - log_ares_security("Cancel Evacuation", "[usr] has cancelled the emergency evacuation.") + log_game("[key_name(user)] has canceled the emergency evacuation.") + message_admins("[key_name_admin(user)] has canceled the emergency evacuation.") + log_ares_security("Cancel Evacuation", "Cancelled the emergency evacuation.", user) . = TRUE // evac stuff end \\ if("change_sec_level") var/list/alert_list = list(num2seclevel(SEC_LEVEL_GREEN), num2seclevel(SEC_LEVEL_BLUE)) - switch(security_level) + switch(GLOB.security_level) if(SEC_LEVEL_GREEN) alert_list -= num2seclevel(SEC_LEVEL_GREEN) if(SEC_LEVEL_BLUE) @@ -155,77 +169,86 @@ if(SEC_LEVEL_DELTA) return - var/level_selected = tgui_input_list(usr, "What alert would you like to set it as?", "Alert Level", alert_list) + var/level_selected = tgui_input_list(user, "What alert would you like to set it as?", "Alert Level", alert_list) if(!level_selected) return set_security_level(seclevel2num(level_selected), log = ARES_LOG_NONE) - log_game("[key_name(usr)] has changed the security level to [get_security_level()].") - message_admins("[key_name_admin(usr)] has changed the security level to [get_security_level()].") - log_ares_security("Manual Security Update", "[usr] has changed the security level to [get_security_level()].") + log_game("[key_name(user)] has changed the security level to [get_security_level()].") + message_admins("[key_name_admin(user)] has changed the security level to [get_security_level()].") + log_ares_security("Manual Security Update", "Changed the security level to [get_security_level()].", user) . = TRUE if("messageUSCM") if(!COOLDOWN_FINISHED(src, cooldown_central)) - to_chat(usr, SPAN_WARNING("Arrays are re-cycling. Please stand by.")) + to_chat(user, SPAN_WARNING("Arrays are re-cycling. Please stand by.")) return FALSE - var/input = stripped_input(usr, "Please choose a message to transmit to USCM. Please be aware that this process is very expensive, and abuse will lead to termination. Transmission does not guarantee a response. There is a small delay before you may send another message. Be clear and concise.", "To abort, send an empty message.", "") - if(!input || !(usr in view(1,src)) || !COOLDOWN_FINISHED(src, cooldown_central)) + var/input = stripped_input(user, "Please choose a message to transmit to USCM. Please be aware that this process is very expensive, and abuse will lead to termination. Transmission does not guarantee a response. There is a small delay before you may send another message. Be clear and concise.", "To abort, send an empty message.", "") + if(!input || !(user in dview(1, src)) || !COOLDOWN_FINISHED(src, cooldown_central)) return FALSE - high_command_announce(input, usr) - to_chat(usr, SPAN_NOTICE("Message transmitted.")) - log_announcement("[key_name(usr)] has made an USCM announcement: [input]") + high_command_announce(input, user) + to_chat(user, SPAN_NOTICE("Message transmitted.")) + log_announcement("[key_name(user)] has made an USCM announcement: [input]") COOLDOWN_START(src, cooldown_central, COOLDOWN_COMM_CENTRAL) . = TRUE if("ship_announce") + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(!idcard) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + if(!COOLDOWN_FINISHED(src, cooldown_message)) - to_chat(usr, SPAN_WARNING("Please allow at least [COOLDOWN_TIMELEFT(src, cooldown_message)/10] second\s to pass between announcements.")) + to_chat(user, SPAN_WARNING("Please allow at least [COOLDOWN_TIMELEFT(src, cooldown_message)/10] second\s to pass between announcements.")) return FALSE - var/input = stripped_multiline_input(usr, "Please write a message to announce to the station crew.", "Priority Announcement", "") - if(!input || !COOLDOWN_FINISHED(src, cooldown_message) || !(usr in view(1,src))) + var/input = stripped_multiline_input(user, "Please write a message to announce to the station crew.", "Priority Announcement", "") + if(!input || !COOLDOWN_FINISHED(src, cooldown_message) || !(user in dview(1, src))) return FALSE var/signed = null - if(ishuman(usr)) - var/mob/living/carbon/human/human_user = usr - var/obj/item/card/id/id = human_user.wear_id - if(istype(id)) - var/paygrade = get_paygrades(id.paygrade, FALSE, human_user.gender) - signed = "[paygrade] [id.registered_name]" + var/paygrade = get_paygrades(idcard.paygrade, FALSE, human_user.gender) + signed = "[paygrade] [idcard.registered_name]" COOLDOWN_START(src, cooldown_message, COOLDOWN_COMM_MESSAGE) shipwide_ai_announcement(input, COMMAND_SHIP_ANNOUNCE, signature = signed) - message_admins("[key_name(usr)] has made a shipwide annoucement.") - log_announcement("[key_name(usr)] has announced the following to the ship: [input]") + message_admins("[key_name(user)] has made a shipwide annoucement.") + log_announcement("[key_name(user)] has announced the following to the ship: [input]") . = TRUE if("distress") if(world.time < DISTRESS_TIME_LOCK) - to_chat(usr, SPAN_WARNING("The distress beacon cannot be launched this early in the operation. Please wait another [time_left_until(DISTRESS_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) + to_chat(user, SPAN_WARNING("The distress beacon cannot be launched this early in the operation. Please wait another [time_left_until(DISTRESS_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) return FALSE if(!SSticker.mode) return FALSE //Not a game mode? if(SSticker.mode.force_end_at == 0) - to_chat(usr, SPAN_WARNING("ARES has denied your request for operational security reasons.")) + to_chat(user, SPAN_WARNING("ARES has denied your request for operational security reasons.")) return FALSE if(!COOLDOWN_FINISHED(src, cooldown_request)) - to_chat(usr, SPAN_WARNING("The distress beacon has recently broadcast a message. Please wait.")) + to_chat(user, SPAN_WARNING("The distress beacon has recently broadcast a message. Please wait.")) return FALSE - if(security_level == SEC_LEVEL_DELTA) - to_chat(usr, SPAN_WARNING("The ship is already undergoing self-destruct procedures!")) + if(GLOB.security_level == SEC_LEVEL_DELTA) + to_chat(user, SPAN_WARNING("The ship is already undergoing self-destruct procedures!")) return FALSE for(var/client/admin_client as anything in GLOB.admins) if((R_ADMIN|R_MOD) & admin_client.admin_holder.rights) admin_client << 'sound/effects/sos-morse-code.ogg' - SSticker.mode.request_ert(usr) - to_chat(usr, SPAN_NOTICE("A distress beacon request has been sent to USCM Central Command.")) + SSticker.mode.request_ert(user) + to_chat(user, SPAN_NOTICE("A distress beacon request has been sent to USCM Central Command.")) COOLDOWN_START(src, cooldown_request, COOLDOWN_COMM_REQUEST) . = TRUE @@ -234,29 +257,29 @@ if("destroy") if(world.time < DISTRESS_TIME_LOCK) - to_chat(usr, SPAN_WARNING("The self-destruct cannot be activated this early in the operation. Please wait another [time_left_until(DISTRESS_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) + to_chat(user, SPAN_WARNING("The self-destruct cannot be activated this early in the operation. Please wait another [time_left_until(DISTRESS_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) return FALSE if(!SSticker.mode) return FALSE //Not a game mode? if(SSticker.mode.force_end_at == 0) - to_chat(usr, SPAN_WARNING("ARES has denied your request for operational security reasons.")) + to_chat(user, SPAN_WARNING("ARES has denied your request for operational security reasons.")) return FALSE if(!COOLDOWN_FINISHED(src, cooldown_destruct)) - to_chat(usr, SPAN_WARNING("A self-destruct request has already been sent to high command. Please wait.")) + to_chat(user, SPAN_WARNING("A self-destruct request has already been sent to high command. Please wait.")) return FALSE if(get_security_level() == "delta") - to_chat(usr, SPAN_WARNING("The [MAIN_SHIP_NAME]'s self-destruct is already activated.")) + to_chat(user, SPAN_WARNING("The [MAIN_SHIP_NAME]'s self-destruct is already activated.")) return FALSE for(var/client/admin_client as anything in GLOB.admins) if((R_ADMIN|R_MOD) & admin_client.admin_holder.rights) admin_client << 'sound/effects/sos-morse-code.ogg' - message_admins("[key_name(usr)] has requested Self-Destruct! [CC_MARK(usr)] (GRANT) (DENY) [ADMIN_JMP_USER(usr)] [CC_REPLY(usr)]") - to_chat(usr, SPAN_NOTICE("A self-destruct request has been sent to USCM Central Command.")) + message_admins("[key_name(user)] has requested Self-Destruct! [CC_MARK(user)] (GRANT) (DENY) [ADMIN_JMP_USER(user)] [CC_REPLY(user)]") + to_chat(user, SPAN_NOTICE("A self-destruct request has been sent to USCM Central Command.")) COOLDOWN_START(src, cooldown_destruct, COOLDOWN_COMM_DESTRUCT) . = TRUE diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 1ac5a06738..4f6f4df4ef 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -122,8 +122,8 @@ src.gameover = 1 src.temp = "[src.enemy_name] has fallen! Rejoice!" - if(!contents.len) - var/prizeselect = pickweight(prizes) + if(!length(contents)) + var/prizeselect = pick_weight(prizes) new prizeselect(src.loc) if(istype(prizeselect, /obj/item/toy/gun)) //Ammo comes with the gun @@ -176,5 +176,5 @@ if(2) num_of_prizes = rand(0,2) for(num_of_prizes; num_of_prizes > 0; num_of_prizes--) - empprize = pickweight(prizes) + empprize = pick_weight(prizes) new empprize(src.loc) diff --git a/code/game/machinery/computer/area_air_control.dm b/code/game/machinery/computer/area_air_control.dm index 22f4211aa8..cd9870f175 100644 --- a/code/game/machinery/computer/area_air_control.dm +++ b/code/game/machinery/computer/area_air_control.dm @@ -156,7 +156,7 @@ var/turf/T = get_turf(src) if(!T.loc) return - for(var/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/scrubber in machines ) + for(var/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/scrubber in GLOB.machines ) var/turf/T2 = get_turf(scrubber) if(T2 && T2.loc) var/area/A = T2.loc diff --git a/code/game/machinery/computer/atmos_alert.dm b/code/game/machinery/computer/atmos_alert.dm index 9a17449b9e..8ce8248b07 100644 --- a/code/game/machinery/computer/atmos_alert.dm +++ b/code/game/machinery/computer/atmos_alert.dm @@ -62,10 +62,10 @@ ..() if(inoperable()) return - if(priority_alarms.len) + if(length(priority_alarms)) icon_state = "alert:2" - else if(minor_alarms.len) + else if(length(minor_alarms)) icon_state = "alert:1" else @@ -77,13 +77,13 @@ var/priority_text var/minor_text - if(priority_alarms.len) + if(length(priority_alarms)) for(var/zone in priority_alarms) priority_text += "[zone] X
    " else priority_text = "No priority alerts detected.
    " - if(minor_alarms.len) + if(length(minor_alarms)) for(var/zone in minor_alarms) minor_text += "[zone] X
    " else diff --git a/code/game/machinery/computer/camera_console.dm b/code/game/machinery/computer/camera_console.dm index 7f60e85919..a34a54f17e 100644 --- a/code/game/machinery/computer/camera_console.dm +++ b/code/game/machinery/computer/camera_console.dm @@ -17,6 +17,7 @@ var/colony_camera_mapload = TRUE var/admin_console = FALSE + var/stay_connected = FALSE /obj/structure/machinery/computer/cameras/Initialize(mapload) . = ..() @@ -33,7 +34,7 @@ /obj/structure/machinery/computer/cameras/Destroy() SStgui.close_uis(src) - QDEL_NULL(current) + current = null UnregisterSignal(src, COMSIG_CAMERA_MAPNAME_ASSIGNED) last_camera_turf = null concurrent_users = null @@ -46,7 +47,7 @@ return attack_hand(user) /obj/structure/machinery/computer/cameras/attack_hand(mob/user) - if(!admin_console && is_admin_level(z)) + if(!admin_console && should_block_game_interaction(src)) to_chat(user, SPAN_DANGER("Unable to establish a connection: \black You're too far away from the ship!")) return if(inoperable()) @@ -147,7 +148,7 @@ // Unregister map objects SEND_SIGNAL(src, COMSIG_CAMERA_UNREGISTER_UI, user) // Turn off the console - if(length(concurrent_users) == 0 && is_living) + if(length(concurrent_users) == 0 && is_living && !stay_connected) current = null SEND_SIGNAL(src, COMSIG_CAMERA_CLEAR) last_camera_turf = null @@ -158,7 +159,7 @@ // Returns the list of cameras accessible from this computer /obj/structure/machinery/computer/cameras/proc/get_available_cameras() var/list/D = list() - for(var/obj/structure/machinery/camera/C in cameranet.cameras) + for(var/obj/structure/machinery/camera/C in GLOB.all_cameras) if(!C.network) stack_trace("Camera in a cameranet has no camera network") continue @@ -166,7 +167,7 @@ stack_trace("Camera in a cameranet has a non-list camera network") continue var/list/tempnetwork = C.network & network - if(tempnetwork.len) + if(length(tempnetwork)) D["[C.c_tag]"] = C return D @@ -207,6 +208,89 @@ desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW." network = null +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast + name = "Television Set" + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW." + network = list(CAMERA_NET_CORRESPONDENT) + stay_connected = TRUE + circuit = /obj/item/circuitboard/computer/cameras/tv + var/obj/item/device/camera/broadcasting/broadcastingcamera = null + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/Destroy() + broadcastingcamera = null + return ..() + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/ui_state(mob/user) + return GLOB.in_view + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/ui_act(action, params) + . = ..() + if(action != "switch_camera") + return + if(broadcastingcamera) + clear_camera() + if(!istype(current, /obj/structure/machinery/camera/correspondent)) + return + var/obj/structure/machinery/camera/correspondent/corr_cam = current + if(!corr_cam.linked_broadcasting) + return + broadcastingcamera = corr_cam.linked_broadcasting + RegisterSignal(broadcastingcamera, COMSIG_BROADCAST_GO_LIVE, PROC_REF(go_back_live)) + RegisterSignal(broadcastingcamera, COMSIG_COMPONENT_ADDED, PROC_REF(handle_rename)) + RegisterSignal(broadcastingcamera, COMSIG_PARENT_QDELETING, PROC_REF(clear_camera)) + RegisterSignal(broadcastingcamera, COMSIG_BROADCAST_HEAR_TALK, PROC_REF(transfer_talk)) + RegisterSignal(broadcastingcamera, COMSIG_BROADCAST_SEE_EMOTE, PROC_REF(transfer_emote)) + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/ui_close(mob/user) + . = ..() + if(!broadcastingcamera) + return + if(!current) + clear_camera() + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/proc/clear_camera() + SIGNAL_HANDLER + UnregisterSignal(broadcastingcamera, list(COMSIG_BROADCAST_GO_LIVE, COMSIG_PARENT_QDELETING, COMSIG_COMPONENT_ADDED, COMSIG_BROADCAST_HEAR_TALK, COMSIG_BROADCAST_SEE_EMOTE)) + broadcastingcamera = null + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/proc/go_back_live(obj/item/device/camera/broadcasting/broadcastingcamera) + SIGNAL_HANDLER + if(current.c_tag == broadcastingcamera.get_broadcast_name()) + current = broadcastingcamera.linked_cam + SEND_SIGNAL(src, COMSIG_CAMERA_SET_TARGET, broadcastingcamera.linked_cam, broadcastingcamera.linked_cam.view_range, broadcastingcamera.linked_cam.view_range) + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/proc/transfer_talk(obj/item/camera, mob/living/sourcemob, message, verb = "says", datum/language/language, italics = FALSE, show_message_above_tv = FALSE) + SIGNAL_HANDLER + if(inoperable()) + return + if(show_message_above_tv) + langchat_speech(message, get_mobs_in_view(7, src), language, sourcemob.langchat_color, FALSE, LANGCHAT_FAST_POP, list(sourcemob.langchat_styles)) + for(var/datum/weakref/user_ref in concurrent_users) + var/mob/user = user_ref.resolve() + if(user?.client?.prefs && !user.client.prefs.lang_chat_disabled && !user.ear_deaf && user.say_understands(sourcemob, language)) + sourcemob.langchat_display_image(user) + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/proc/transfer_emote(obj/item/camera, mob/living/sourcemob, emote, audible = FALSE, show_message_above_tv = FALSE) + SIGNAL_HANDLER + if(inoperable()) + return + if(show_message_above_tv) + langchat_speech(emote, get_mobs_in_view(7, src), null, null, TRUE, LANGCHAT_FAST_POP, list("emote")) + for(var/datum/weakref/user_ref in concurrent_users) + var/mob/user = user_ref.resolve() + if(user?.client?.prefs && (user.client.prefs.toggles_langchat & LANGCHAT_SEE_EMOTES) && (!audible || !user.ear_deaf)) + sourcemob.langchat_display_image(user) + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/examine(mob/user) + . = ..() + attack_hand(user) //watch tv on examine + +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast/proc/handle_rename(obj/item/camera, datum/component/label) + SIGNAL_HANDLER + if(!istype(label, /datum/component/label)) + return + current.c_tag = broadcastingcamera.get_broadcast_name() + /obj/structure/machinery/computer/cameras/wooden_tv/ot name = "Mortar Monitoring Set" desc = "A Console linked to Mortar launched cameras." @@ -273,6 +357,10 @@ /obj/structure/machinery/computer/cameras/almayer_network/vehicle network = list(CAMERA_NET_ALMAYER, CAMERA_NET_VEHICLE) +/obj/structure/machinery/computer/cameras/almayer_brig + name = "Brig Cameras Console" + network = list(CAMERA_NET_BRIG) + /obj/structure/machinery/computer/cameras/mortar name = "Mortar Camera Interface" alpha = 0 @@ -309,6 +397,10 @@ name = "\improper 'Normandy' camera controls" network = list(CAMERA_NET_NORMANDY, CAMERA_NET_LASER_TARGETS) +/obj/structure/machinery/computer/cameras/dropship/three + name = "\improper 'Saipan' camera controls" + network = list(CAMERA_NET_RESEARCH, CAMERA_NET_LASER_TARGETS) + /obj/structure/machinery/computer/cameras/dropship/midway name = "\improper 'Midway' camera controls" network = list(CAMERA_NET_MIDWAY, CAMERA_NET_LASER_TARGETS) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index b39f59530a..8d3f78cb18 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -81,8 +81,8 @@ if(ACCESS_MARINE_SENIOR in I.access) authenticated = 2 else - I = C.wear_id - if(istype(I)) + I = C.get_idcard() + if(I) if(check_access(I)) authenticated = 1 if(ACCESS_MARINE_SENIOR in I.access) authenticated = 2 @@ -98,9 +98,9 @@ if(-INFINITY to SEC_LEVEL_GREEN) tmp_alertlevel = SEC_LEVEL_GREEN //Cannot go below green. if(SEC_LEVEL_BLUE to INFINITY) tmp_alertlevel = SEC_LEVEL_BLUE //Cannot go above blue. - var/old_level = security_level + var/old_level = GLOB.security_level set_security_level(tmp_alertlevel) - if(security_level != old_level) + if(GLOB.security_level != old_level) //Only notify the admins if an actual change happened log_game("[key_name(usr)] has changed the security level to [get_security_level()].") message_admins("[key_name_admin(usr)] has changed the security level to [get_security_level()].") @@ -113,6 +113,19 @@ if("announce") if(authenticated == 2) + var/mob/living/carbon/human/human_user = usr + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(idcard) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + if(usr.client.prefs.muted & MUTE_IC) to_chat(usr, SPAN_DANGER("You cannot send Announcements (muted).")) return @@ -121,7 +134,7 @@ to_chat(usr, SPAN_WARNING("Please allow at least [COOLDOWN_COMM_MESSAGE_LONG*0.1] second\s to pass between announcements.")) return FALSE var/input = stripped_multiline_input(usr, "Please write a message to announce to the station crew.", "Priority Announcement", "") - if(!input || authenticated != 2 || world.time < cooldown_message + COOLDOWN_COMM_MESSAGE_LONG || !(usr in view(1,src))) + if(!input || authenticated != 2 || world.time < cooldown_message + COOLDOWN_COMM_MESSAGE_LONG || !(usr in dview(1, src))) return FALSE marine_announcement(input) @@ -130,11 +143,11 @@ cooldown_message = world.time if("award") - print_medal(usr, src) + open_medal_panel(usr, src) if("evacuation_start") if(state == STATE_EVACUATION) - if(security_level < SEC_LEVEL_DELTA) + if(GLOB.security_level < SEC_LEVEL_DELTA) to_chat(usr, SPAN_WARNING("The ship must be under delta alert in order to enact evacuation procedures.")) return FALSE @@ -148,12 +161,25 @@ log_game("[key_name(usr)] has called for an emergency evacuation.") message_admins("[key_name_admin(usr)] has called for an emergency evacuation.") - log_ares_security("Initiate Evacuation", "[usr] has called for an emergency evacuation.") + log_ares_security("Initiate Evacuation", "Called for an emergency evacuation.", usr) return TRUE state = STATE_EVACUATION if("evacuation_cancel") + var/mob/living/carbon/human/human_user = usr + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(!idcard) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + if(state == STATE_EVACUATION_CANCEL) if(!SShijack.cancel_evacuation()) to_chat(usr, SPAN_WARNING("You are unable to cancel the evacuation right now!")) @@ -161,7 +187,7 @@ log_game("[key_name(usr)] has canceled the emergency evacuation.") message_admins("[key_name_admin(usr)] has canceled the emergency evacuation.") - log_ares_security("Cancel Evacuation", "[usr] has cancelled the emergency evacuation.") + log_ares_security("Cancel Evacuation", "Cancelled the emergency evacuation.", usr) return TRUE state = STATE_EVACUATION_CANCEL @@ -185,7 +211,7 @@ to_chat(usr, SPAN_WARNING("The distress beacon has recently broadcast a message. Please wait.")) return FALSE - if(security_level == SEC_LEVEL_DELTA) + if(GLOB.security_level == SEC_LEVEL_DELTA) to_chat(usr, SPAN_WARNING("The ship is already undergoing self-destruct procedures!")) return FALSE @@ -276,7 +302,7 @@ to_chat(usr, SPAN_WARNING("Arrays recycling. Please stand by.")) return FALSE var/input = stripped_input(usr, "Please choose a message to transmit to USCM. Please be aware that this process is very expensive, and abuse will lead to termination. Transmission does not guarantee a response. There is a small delay before you may send another message. Be clear and concise.", "To abort, send an empty message.", "") - if(!input || !(usr in view(1,src)) || authenticated != 2 || world.time < cooldown_central + COOLDOWN_COMM_CENTRAL) return FALSE + if(!input || !(usr in dview(1, src)) || authenticated != 2 || world.time < cooldown_central + COOLDOWN_COMM_CENTRAL) return FALSE high_command_announce(input, usr) to_chat(usr, SPAN_NOTICE("Message transmitted.")) @@ -340,7 +366,7 @@ dat += "
    Select primary LZ" dat += "

    " dat += "
    Make an announcement" - dat += GLOB.admins.len > 0 ? "
    Send a message to USCM" : "
    USCM communication offline" + dat += length(GLOB.admins) > 0 ? "
    Send a message to USCM" : "
    USCM communication offline" dat += "
    Award a medal" dat += "
    Send Distress Beacon" dat += "
    Activate Self-Destruct" @@ -367,7 +393,7 @@ if(STATE_MESSAGELIST) dat += "Messages:" - for(var/i = 1; i<=messagetitle.len; i++) + for(var/i = 1; i<=length(messagetitle); i++) dat += "
    [messagetitle[i]]" if(STATE_VIEWMESSAGE) @@ -440,7 +466,7 @@ if(STATE_MESSAGELIST) dat += "Messages:" - for(var/i = 1; i<=messagetitle.len; i++) + for(var/i = 1; i<=length(messagetitle); i++) dat += "
    [messagetitle[i]]" if(STATE_VIEWMESSAGE) diff --git a/code/game/machinery/computer/computer.dm b/code/game/machinery/computer/computer.dm index c335177962..bb434e8ca1 100644 --- a/code/game/machinery/computer/computer.dm +++ b/code/game/machinery/computer/computer.dm @@ -60,7 +60,7 @@ visible_message("[Proj] ricochets off [src]!") return 0 else - if(prob(round(Proj.ammo.damage /2))) + if(prob(floor(Proj.ammo.damage /2))) set_broken() ..() return 1 @@ -99,7 +99,7 @@ if(!deconstructible) to_chat(user, SPAN_WARNING("You can't figure out how to deconstruct [src]...")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know how to deconstruct [src]...")) return playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) @@ -126,7 +126,7 @@ src.attack_alien(user) return src.attack_hand(user) - return + return ..() /obj/structure/machinery/computer/attack_hand() . = ..() diff --git a/code/game/machinery/computer/demo_sim.dm b/code/game/machinery/computer/demo_sim.dm index f633e8f351..2b2ca9fda7 100644 --- a/code/game/machinery/computer/demo_sim.dm +++ b/code/game/machinery/computer/demo_sim.dm @@ -11,7 +11,7 @@ /obj/structure/machinery/computer/demo_sim/attackby(obj/item/B, mob/living/user) if(inoperable()) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know how to configure [src].")) return if(configuration) diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm index b5022b4a75..f7c35a0430 100644 --- a/code/game/machinery/computer/dropship_weapons.dm +++ b/code/game/machinery/computer/dropship_weapons.dm @@ -167,7 +167,7 @@ if(!faction) return UI_CLOSE - var/datum/cas_iff_group/cas_group = cas_groups[faction] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[faction] if(!cas_group) return UI_CLOSE @@ -313,9 +313,9 @@ var/obj/structure/dropship_equipment/sentry_holder/sentry = equipment var/obj/structure/machinery/defenses/sentry/defense = sentry.deployed_turret if(defense.has_camera) - defense.setup_target_acquisition() + defense.set_range() camera_area_equipment = sentry - SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.loc.x, defense.loc.y, defense.loc.z, 11, 11) + SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.range_bounds, defense.loc.z) return TRUE if("clear-camera") @@ -521,7 +521,7 @@ if(!target_ref) return - var/datum/cas_iff_group/cas_group = cas_groups[faction] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[faction] for(var/datum/cas_signal/sig in cas_group.cas_signals) if(sig.target_id == target_ref) if(valid_only && !sig.valid_signal()) @@ -581,8 +581,8 @@ for(var/datum/cas_fire_mission_record/firerec as anything in editing_firemission.records) var/gimbal = firerec.get_offsets() var/ammo = firerec.get_ammo() - var/offsets = new /list(firerec.offsets.len) - for(var/idx = 1; idx < firerec.offsets.len; idx++) + var/offsets = new /list(length(firerec.offsets)) + for(var/idx = 1; idx < length(firerec.offsets); idx++) offsets[idx] = firerec.offsets[idx] == null ? "-" : firerec.offsets[idx] . += list( "name" = sanitize(copytext(firerec.weapon.name, 1, 50)), @@ -619,9 +619,10 @@ /obj/structure/machinery/computer/dropship_weapons/proc/get_targets() . = list() - var/datum/cas_iff_group/cas_group = cas_groups[faction] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[faction] for(var/datum/cas_signal/LT as anything in cas_group.cas_signals) - if(!istype(LT) || !LT.valid_signal()) + var/obj/object = LT.signal_loc + if(!istype(LT) || !LT.valid_signal() || !is_ground_level(object.z)) continue var/area/laser_area = get_area(LT.signal_loc) . += list( @@ -674,7 +675,7 @@ to_chat(weapon_operator, SPAN_WARNING("[DEW] just fired, wait for it to cool down.")) return FALSE - var/datum/cas_iff_group/cas_group = cas_groups[faction] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[faction] if(!cas_group) return FALSE//broken group. No fighting @@ -737,7 +738,7 @@ if(!skillcheck(weapon_operator, SKILL_PILOT, SKILL_PILOT_TRAINED)) //only pilots can fire dropship weapons. to_chat(weapon_operator, SPAN_WARNING("A screen with graphics and walls of physics and engineering values open, you immediately force it closed.")) return FALSE - if(firemission_tag > firemission_envelope.missions.len) + if(firemission_tag > length(firemission_envelope.missions)) to_chat(weapon_operator, SPAN_WARNING("Fire Mission ID corrupted or already deleted.")) return FALSE if(selected_firemission == firemission_envelope.missions[firemission_tag]) @@ -756,7 +757,7 @@ if(firemission_envelope.stat > FIRE_MISSION_STATE_IN_TRANSIT && firemission_envelope.stat < FIRE_MISSION_STATE_COOLDOWN) to_chat(weapon_operator, SPAN_WARNING("Fire Mission already underway.")) return FALSE - if(firemission_tag > firemission_envelope.missions.len) + if(firemission_tag > length(firemission_envelope.missions)) to_chat(weapon_operator, SPAN_WARNING("Fire Mission ID corrupted or deleted.")) return FALSE if(selected_firemission == firemission_envelope.missions[firemission_tag]) @@ -788,7 +789,7 @@ if(dropship.mode != SHUTTLE_CALL) to_chat(weapons_operator, SPAN_WARNING("Shuttle has to be in orbit.")) return FALSE - var/datum/cas_iff_group/cas_group = cas_groups[faction] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[faction] var/datum/cas_signal/cas_sig for(var/X in cas_group.cas_signals) var/datum/cas_signal/LT = X @@ -890,6 +891,12 @@ firemission_envelope = new /datum/cas_fire_envelope/uscm_dropship() shuttle_tag = DROPSHIP_NORMANDY +/obj/structure/machinery/computer/dropship_weapons/dropship3 + name = "\improper 'Saipan' weapons controls" + req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP, ACCESS_WY_FLIGHT) + firemission_envelope = new /datum/cas_fire_envelope/uscm_dropship() + shuttle_tag = DROPSHIP_SAIPAN + /obj/structure/machinery/computer/dropship_weapons/midway name = "\improper 'Midway' weapons controls" req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP, ACCESS_WY_FLIGHT) @@ -945,14 +952,6 @@ icon_state = "cameras" density = FALSE -/obj/structure/machinery/computer/dropship_weapons/dropship1 - name = "\improper 'Alamo' weapons controls" - shuttle_tag = DROPSHIP_ALAMO - -/obj/structure/machinery/computer/dropship_weapons/dropship2 - name = "\improper 'Normandy' weapons controls" - shuttle_tag = DROPSHIP_NORMANDY - /obj/structure/machinery/computer/dropship_weapons/Destroy() . = ..() QDEL_NULL(firemission_envelope) diff --git a/code/game/machinery/computer/groundside_operations.dm b/code/game/machinery/computer/groundside_operations.dm index f2b36276c8..376357a491 100644 --- a/code/game/machinery/computer/groundside_operations.dm +++ b/code/game/machinery/computer/groundside_operations.dm @@ -1,3 +1,5 @@ +#define COMMAND_SQUAD "Command" + /obj/structure/machinery/computer/groundside_operations name = "groundside operations console" desc = "This can be used for various important functions." @@ -19,6 +21,7 @@ var/lz_selection = TRUE var/has_squad_overwatch = TRUE var/faction = FACTION_MARINE + var/show_command_squad = FALSE /obj/structure/machinery/computer/groundside_operations/Initialize() if(SSticker.mode && MODE_HAS_FLAG(MODE_FACTION_CLASH)) @@ -59,7 +62,7 @@ dat += "
    [is_announcement_active ? "Make An Announcement" : "*Unavailable*"]" dat += "
    Tactical Map" dat += "

    " - var/datum/squad/marine/echo/echo_squad = locate() in RoleAuthority.squads + var/datum/squad/marine/echo/echo_squad = locate() in GLOB.RoleAuthority.squads if(!echo_squad.active && faction == FACTION_MARINE) dat += "
    Designate Echo Squad" dat += "

    " @@ -69,8 +72,11 @@ dat += "

    " if(has_squad_overwatch) - dat += "Current Squad: [!isnull(current_squad) ? "[current_squad.name]" : "----------"]
    " - if(current_squad) + if(show_command_squad) + dat += "Current Squad: Command
    " + else + dat += "Current Squad: [!isnull(current_squad) ? "[current_squad.name]" : "----------"]
    " + if(current_squad || show_command_squad) dat += get_overwatch_info() dat += "
    Close" @@ -104,93 +110,93 @@ "} - if(!current_squad) - dat += "No Squad selected!
    " + if(show_command_squad) + dat += format_list_of_marines(list(GLOB.marine_leaders[JOB_CO], GLOB.marine_leaders[JOB_XO]) + GLOB.marine_leaders[JOB_SO], list(JOB_CO, JOB_XO, JOB_SO)) + else if(current_squad) + dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE)) else - var/leader_text = "" - var/spec_text = "" - var/medic_text = "" - var/engi_text = "" - var/smart_text = "" - var/marine_text = "" - var/misc_text = "" - var/living_count = 0 - var/almayer_count = 0 - var/SSD_count = 0 - var/helmetless_count = 0 - - for(var/X in current_squad.marines_list) - if(!X) - continue //just to be safe - var/mob_name = "unknown" - var/mob_state = "" - var/role = "unknown" - var/act_sl = "" - var/area_name = "???" - var/mob/living/carbon/human/H - if(ishuman(X)) - H = X - mob_name = H.real_name - var/area/A = get_area(H) - var/turf/M_turf = get_turf(H) - if(A) - area_name = sanitize_area(A.name) - - if(H.job) - role = H.job - else if(istype(H.wear_id, /obj/item/card/id)) //decapitated marine is mindless, - var/obj/item/card/id/ID = H.wear_id //we use their ID to get their role. - if(ID.rank) - role = ID.rank - - switch(H.stat) - if(CONSCIOUS) - mob_state = "Conscious" - living_count++ - if(UNCONSCIOUS) - mob_state = "Unconscious" - living_count++ - else - continue - - if(!is_ground_level(M_turf.z)) - almayer_count++ - continue + dat += "No Squad selected!
    " + dat += "

    " + dat += "Refresh
    " + return dat - if(!istype(H.head, /obj/item/clothing/head/helmet/marine)) - helmetless_count++ +/obj/structure/machinery/computer/groundside_operations/proc/format_list_of_marines(list/mob/living/carbon/human/marine_list, list/jobs_in_order) + var/dat = "" + var/list/job_order = list() + + for(var/job in jobs_in_order) + job_order[job] = "" + + var/misc_text = "" + + var/living_count = 0 + var/almayer_count = 0 + var/SSD_count = 0 + var/helmetless_count = 0 + var/total_count = 0 + + for(var/X in marine_list) + if(!X) + continue //just to be safe + total_count++ + var/mob_name = "unknown" + var/mob_state = "" + var/role = "unknown" + var/area_name = "???" + var/mob/living/carbon/human/H + var/act_sl = "" + if(ishuman(X)) + H = X + mob_name = H.real_name + var/area/A = get_area(H) + var/turf/M_turf = get_turf(H) + if(A) + area_name = sanitize_area(A.name) + + var/obj/item/card/id/card = H.get_idcard() + if(H.job) + role = H.job + else if(card?.rank) //decapitated marine is mindless, + role = card.rank + + switch(H.stat) + if(CONSCIOUS) + mob_state = "Conscious" + living_count++ + if(UNCONSCIOUS) + mob_state = "Unconscious" + living_count++ + else continue - if(!H.key || !H.client) - SSD_count++ - continue + if(!is_ground_level(M_turf.z)) + almayer_count++ + continue - var/marine_infos = "[mob_name][role][act_sl][mob_state][area_name]" - switch(role) - if(JOB_SQUAD_LEADER) - leader_text += marine_infos - if(JOB_SQUAD_SPECIALIST) - spec_text += marine_infos - if(JOB_SQUAD_MEDIC) - medic_text += marine_infos - if(JOB_SQUAD_ENGI) - engi_text += marine_infos - if(JOB_SQUAD_SMARTGUN) - smart_text += marine_infos - if(JOB_SQUAD_MARINE) - marine_text += marine_infos - else - misc_text += marine_infos - - dat += "Total: [current_squad.marines_list.len] Deployed
    " - dat += "Marines detected: [living_count] ([helmetless_count] no helmet, [SSD_count] SSD, [almayer_count] on Almayer)
    " - dat += "
    Search:
    " - dat += "" - dat += "" - dat += leader_text + spec_text + medic_text + engi_text + smart_text + marine_text + misc_text - dat += "
    NameRoleStateLocation
    " - dat += "

    " - dat += "Refresh
    " + if(!istype(H.head, /obj/item/clothing/head/helmet/marine)) + helmetless_count++ + continue + + if(!H.key || !H.client) + SSD_count++ + continue + if(current_squad) + if(H == current_squad.squad_leader && role != JOB_SQUAD_LEADER) + act_sl = " (ASL)" + var/marine_infos = "[mob_name][role][act_sl][mob_state][area_name]" + if(role in job_order) + job_order[role] += marine_infos + else + misc_text += marine_infos + dat += "Total: [total_count] Deployed
    " + dat += "Marines detected: [living_count] ([helmetless_count] no helmet, [SSD_count] SSD, [almayer_count] on Almayer)
    " + dat += "
    Search:
    " + dat += "" + dat += "" + for(var/job in job_order) + dat += job_order[job] + dat += misc_text + dat += "
    NameRoleStateLocation
    " return dat /obj/structure/machinery/computer/groundside_operations/Topic(href, href_list) @@ -205,6 +211,19 @@ return if("announce") + var/mob/living/carbon/human/human_user = usr + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(!idcard) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + if(usr.client.prefs.muted & MUTE_IC) to_chat(usr, SPAN_DANGER("You cannot send Announcements (muted).")) return @@ -216,7 +235,7 @@ to_chat(usr, SPAN_WARNING("Access denied.")) return var/input = stripped_multiline_input(usr, "Please write a message to announce to the station crew.", "Priority Announcement", "") - if(!input || !is_announcement_active || !(usr in view(1,src))) + if(!input || !is_announcement_active || !(usr in dview(1, src))) return FALSE is_announcement_active = FALSE @@ -224,8 +243,8 @@ var/signed = null if(ishuman(usr)) var/mob/living/carbon/human/H = usr - var/obj/item/card/id/id = H.wear_id - if(istype(id)) + var/obj/item/card/id/id = H.get_idcard() + if(id) var/paygrade = get_paygrades(id.paygrade, FALSE, H.gender) signed = "[paygrade] [id.registered_name]" @@ -235,7 +254,7 @@ log_announcement("[key_name(usr)] has announced the following: [input]") if("award") - print_medal(usr, src) + open_medal_panel(usr, src) if("selectlz") if(SSticker.mode.active_lz) @@ -251,26 +270,34 @@ if("pick_squad") var/list/squad_list = list() - for(var/datum/squad/S in RoleAuthority.squads) + for(var/datum/squad/S in GLOB.RoleAuthority.squads) if(S.active && S.faction == faction) squad_list += S.name + squad_list += COMMAND_SQUAD var/name_sel = tgui_input_list(usr, "Which squad would you like to look at?", "Pick Squad", squad_list) if(!name_sel) return - var/datum/squad/selected = get_squad_by_name(name_sel) - if(selected) - current_squad = selected + if(name_sel == COMMAND_SQUAD) + show_command_squad = TRUE + current_squad = null + else - to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Invalid input. Aborting.")]") + show_command_squad = FALSE + + var/datum/squad/selected = get_squad_by_name(name_sel) + if(selected) + current_squad = selected + else + to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Invalid input. Aborting.")]") if("use_cam") if(isRemoteControlling(usr)) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Unable to override console camera viewer. Track with camera instead. ")]") return - if(current_squad) + if(current_squad || show_command_squad) var/mob/cam_target = locate(href_list["cam_target"]) var/obj/structure/machinery/camera/new_cam = get_camera_from_target(cam_target) if(!new_cam || !new_cam.can_use()) @@ -280,7 +307,7 @@ usr.UnregisterSignal(cam, COMSIG_PARENT_QDELETING) cam = null usr.reset_view(null) - else if(usr.client.view != world_view_size) + else if(usr.client.view != GLOB.world_view_size) to_chat(usr, SPAN_WARNING("You're too busy peering through binoculars.")) else if(cam) @@ -290,11 +317,24 @@ usr.RegisterSignal(cam, COMSIG_PARENT_QDELETING, TYPE_PROC_REF(/mob, reset_observer_view_on_deletion)) if("activate_echo") + var/mob/living/carbon/human/human_user = usr + var/obj/item/card/id/idcard = human_user.get_active_hand() + var/bio_fail = FALSE + if(!istype(idcard)) + idcard = human_user.get_idcard() + if(!idcard) + bio_fail = TRUE + else if(!idcard.check_biometrics(human_user)) + bio_fail = TRUE + if(bio_fail) + to_chat(human_user, SPAN_WARNING("Biometrics failure! You require an authenticated ID card to perform this action!")) + return FALSE + var/reason = strip_html(input(usr, "What is the purpose of Echo Squad?", "Activation Reason")) if(!reason) return if(alert(usr, "Confirm activation of Echo Squad for [reason]", "Confirm Activation", "Yes", "No") != "Yes") return - var/datum/squad/marine/echo/echo_squad = locate() in RoleAuthority.squads + var/datum/squad/marine/echo/echo_squad = locate() in GLOB.RoleAuthority.squads if(!echo_squad) visible_message(SPAN_BOLDNOTICE("ERROR: Unable to locate Echo Squad database.")) return @@ -321,7 +361,7 @@ //returns the helmet camera the human is wearing /obj/structure/machinery/computer/groundside_operations/proc/get_camera_from_target(mob/living/carbon/human/H) - if(current_squad) + if(current_squad || show_command_squad) if(H && istype(H) && istype(H.head, /obj/item/clothing/head/helmet/marine)) var/obj/item/clothing/head/helmet/marine/helm = H.head return helm.camera @@ -348,3 +388,9 @@ lz_selection = FALSE has_squad_overwatch = FALSE minimap_type = MINIMAP_FLAG_PMC + +/obj/structure/machinery/computer/groundside_operations/arc + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "groundsideop_computer" + +#undef COMMAND_SQUAD diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm index 5204b53e20..20a7260320 100644 --- a/code/game/machinery/computer/guestpass.dm +++ b/code/game/machinery/computer/guestpass.dm @@ -165,7 +165,7 @@ if (giver) var/number = add_zero("[rand(0,9999)]", 4) var/entry = "\[[worldtime2text()]\] Pass #[number] issued by [giver.registered_name] ([giver.assignment]) to [giv_name]. Reason: [reason]. Grants access to following areas: " - for (var/i=1 to accesses.len) + for (var/i=1 to length(accesses)) var/A = accesses[i] if (A) var/area = get_access_desc(A) diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index 6f5c1229c5..ac6de251ab 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -93,8 +93,12 @@ if ((istype(src.active2, /datum/data/record) && GLOB.data_core.medical.Find(src.active2))) dat += "
    \n
    Medical Data

    \nBlood Type: [active2.fields["b_type"]]
    \n
    \nMinor Disabilities: [active2.fields["mi_dis"]]
    \nDetails: [active2.fields["mi_dis_d"]]
    \n
    \nMajor Disabilities: [active2.fields["ma_dis"]]
    \nDetails: [active2.fields["ma_dis_d"]]
    \n
    \nAllergies: [active2.fields["alg"]]
    \nDetails: [active2.fields["alg_d"]]
    \n
    \nCurrent Diseases: [active2.fields["cdi"]] (per disease info placed in log/comment section)
    \nDetails: [active2.fields["cdi_d"]]
    \n
    \nImportant Notes:
    \n\t[decode(src.active2.fields["notes"])]
    \n
    \n
    Comments/Log

    " var/counter = 1 - while(src.active2.fields[text("com_[]", counter)]) - dat += text("[]
    Delete Entry

    ", src.active2.fields[text("com_[]", counter)], src, counter) + while(active2.fields[text("com_[]", counter)]) + var/current_index = text("com_[]", counter) + if(findtext(active2.fields[current_index], "
    ")) + dat += text("[]
    Delete Entry

    ", active2.fields[current_index], src, counter) + else + dat += text("[]

    ", active2.fields[current_index]) counter++ dat += text("Add Entry

    ", src) dat += text("Delete Record (Medical Only)

    ", src) @@ -108,7 +112,7 @@ dat += "Back" dat += "
    Medical Robots:" var/bdat = null - for(var/obj/structure/machinery/bot/medbot/M in machines) + for(var/obj/structure/machinery/bot/medbot/M in GLOB.machines) if(M.z != src.z) continue //only find medibots on the same z-level as the computer var/turf/bl = get_turf(M) @@ -182,14 +186,6 @@ src.rank = "AI" src.screen = 1 - else if (isrobot(usr)) - src.active1 = null - src.active2 = null - src.authenticated = usr.name - var/mob/living/silicon/robot/R = usr - src.rank = "[R.modtype] [R.braintype]" - src.screen = 1 - else if (istype(src.scan, /obj/item/card/id)) src.active1 = null src.active2 = null @@ -217,142 +213,156 @@ GLOB.data_core.medical -= R qdel(R) //Foreach goto(494) - src.temp = "All records deleted." + temp = "All records deleted." + msg_admin_niche("[key_name_admin(usr)] deleted all medical records.") if (href_list["field"]) - var/a1 = src.active1 - var/a2 = src.active2 + var/a1 = active1 + var/a2 = active2 switch(href_list["field"]) if("sex") - if (istype(src.active1, /datum/data/record)) - if (src.active1.fields["sex"] == "Male") - src.active1.fields["sex"] = "Female" - else - src.active1.fields["sex"] = "Male" + if (istype(active1, /datum/data/record)) + var/new_value = "Male" + if (active1.fields["sex"] == "Male") + new_value = "Female" + active1.fields["sex"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record sex for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("age") - if (istype(src.active1, /datum/data/record)) - var/t1 = input("Please input age:", "Med. records", src.active1.fields["age"], null) as num - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active1 != a1)) + if (istype(active1, /datum/data/record)) + var/new_value = input("Please input age:", "Med. records", active1.fields["age"], null) as num + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) return - src.active1.fields["age"] = t1 + active1.fields["age"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record age for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("mi_dis") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please input minor disabilities list:", "Med. records", src.active2.fields["mi_dis"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please input minor disabilities list:", "Med. records", active2.fields["mi_dis"], null) as text)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["mi_dis"] = t1 + active2.fields["mi_dis"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record minor disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("mi_dis_d") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please summarize minor dis.:", "Med. records", src.active2.fields["mi_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please summarize minor dis.:", "Med. records", active2.fields["mi_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["mi_dis_d"] = t1 + active2.fields["mi_dis_d"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record minor disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("ma_dis") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please input major diabilities list:", "Med. records", src.active2.fields["ma_dis"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please input major diabilities list:", "Med. records", active2.fields["ma_dis"], null) as text)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["ma_dis"] = t1 + active2.fields["ma_dis"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record major disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("ma_dis_d") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please summarize major dis.:", "Med. records", src.active2.fields["ma_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please summarize major dis.:", "Med. records", active2.fields["ma_dis_d"], null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["ma_dis_d"] = t1 + active2.fields["ma_dis_d"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record major disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("alg") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please state allergies:", "Med. records", src.active2.fields["alg"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please state allergies:", "Med. records", active2.fields["alg"], null) as text)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["alg"] = t1 + active2.fields["alg"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record allergies list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("alg_d") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please summarize allergies:", "Med. records", src.active2.fields["alg_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please summarize allergies:", "Med. records", active2.fields["alg_d"], null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["alg_d"] = t1 + active2.fields["alg_d"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record allergies desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("cdi") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please state diseases:", "Med. records", src.active2.fields["cdi"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please state diseases:", "Med. records", active2.fields["cdi"], null) as text)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["cdi"] = t1 + active2.fields["cdi"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record disabilities list for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("cdi_d") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please summarize diseases:", "Med. records", src.active2.fields["cdi_d"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(trim(strip_html(input("Please summarize diseases:", "Med. records", active2.fields["cdi_d"], null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["cdi_d"] = t1 + active2.fields["cdi_d"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record disabilities desc for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("notes") - if (istype(src.active2, /datum/data/record)) - var/t1 = copytext(html_encode(trim(input("Please summarize notes:", "Med. records", html_decode(src.active2.fields["notes"]), null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + if (istype(active2, /datum/data/record)) + var/new_value = copytext(html_encode(trim(input("Please summarize notes:", "Med. records", html_decode(active2.fields["notes"]), null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return - src.active2.fields["notes"] = t1 + active2.fields["notes"] = new_value + msg_admin_niche("[key_name_admin(usr)] set the medical record notes for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if("p_stat") - if (istype(src.active1, /datum/data/record)) - src.temp = text("Physical Condition:
    \n\t*Deceased*
    \n\t*SSD*
    \n\tActive
    \n\tPhysically Unfit
    \n\tDisabled
    ", src, src, src, src, src) + if (istype(active1, /datum/data/record)) + temp = text("Physical Condition:
    \n\t*Deceased*
    \n\t*SSD*
    \n\tActive
    \n\tPhysically Unfit
    \n\tDisabled
    ", src, src, src, src, src) if("m_stat") - if (istype(src.active1, /datum/data/record)) - src.temp = text("Mental Condition:
    \n\t*Insane*
    \n\t*Unstable*
    \n\t*Watch*
    \n\tStable
    ", src, src, src, src) + if (istype(active1, /datum/data/record)) + temp = text("Mental Condition:
    \n\t*Insane*
    \n\t*Unstable*
    \n\t*Watch*
    \n\tStable
    ", src, src, src, src) if("b_type") - if (istype(src.active2, /datum/data/record)) - src.temp = text("Blood Type:
    \n\tA- A+
    \n\tB- B+
    \n\tAB- AB+
    \n\tO- O+
    ", src, src, src, src, src, src, src, src) + if (istype(active2, /datum/data/record)) + temp = text("Blood Type:
    \n\tA- A+
    \n\tB- B+
    \n\tAB- AB+
    \n\tO- O+
    ", src, src, src, src, src, src, src, src) if (href_list["p_stat"]) - if (src.active1) + if(istype(active1, /datum/data/record)) switch(href_list["p_stat"]) if("deceased") - src.active1.fields["p_stat"] = "*Deceased*" + active1.fields["p_stat"] = "*Deceased*" if("ssd") - src.active1.fields["p_stat"] = "*SSD*" + active1.fields["p_stat"] = "*SSD*" if("active") - src.active1.fields["p_stat"] = "Active" + active1.fields["p_stat"] = "Active" if("unfit") - src.active1.fields["p_stat"] = "Physically Unfit" + active1.fields["p_stat"] = "Physically Unfit" if("disabled") - src.active1.fields["p_stat"] = "Disabled" + active1.fields["p_stat"] = "Disabled" + msg_admin_niche("[key_name_admin(usr)] set the medical record physical state for [active1.fields["name"]] ([active1.fields["id"]]) to [href_list["p_stat"]].") if (href_list["m_stat"]) - if (src.active1) + if(istype(active1, /datum/data/record)) switch(href_list["m_stat"]) if("insane") - src.active1.fields["m_stat"] = "*Insane*" + active1.fields["m_stat"] = "*Insane*" if("unstable") - src.active1.fields["m_stat"] = "*Unstable*" + active1.fields["m_stat"] = "*Unstable*" if("watch") - src.active1.fields["m_stat"] = "*Watch*" + active1.fields["m_stat"] = "*Watch*" if("stable") - src.active1.fields["m_stat"] = "Stable" - + active1.fields["m_stat"] = "Stable" + msg_admin_niche("[key_name_admin(usr)] set the medical record mental state for [active1.fields["name"]] ([active1.fields["id"]]) to [href_list["m_stat"]].") if (href_list["b_type"]) - if (src.active2) + if(istype(active2, /datum/data/record)) switch(href_list["b_type"]) if("an") - src.active2.fields["b_type"] = "A-" + active2.fields["b_type"] = "A-" if("bn") - src.active2.fields["b_type"] = "B-" + active2.fields["b_type"] = "B-" if("abn") - src.active2.fields["b_type"] = "AB-" + active2.fields["b_type"] = "AB-" if("on") - src.active2.fields["b_type"] = "O-" + active2.fields["b_type"] = "O-" if("ap") - src.active2.fields["b_type"] = "A+" + active2.fields["b_type"] = "A+" if("bp") - src.active2.fields["b_type"] = "B+" + active2.fields["b_type"] = "B+" if("abp") - src.active2.fields["b_type"] = "AB+" + active2.fields["b_type"] = "AB+" if("op") - src.active2.fields["b_type"] = "O+" - + active2.fields["b_type"] = "O+" + msg_admin_niche("[key_name_admin(usr)] set the medical record blood type for [active1.fields["name"]] ([active1.fields["id"]]) to [active2.fields["b_type"]].") if (href_list["del_r"]) - if (active2) - src.temp = text("Are you sure you wish to delete the record (Medical Portion Only)?
    \n\tYes
    \n\tNo
    ", src, src) + if(istype(active2, /datum/data/record)) + temp = text("Are you sure you wish to delete the record (Medical Portion Only)?
    \n\tYes
    \n\tNo
    ", src, src) if (href_list["del_r2"]) + msg_admin_niche("[key_name_admin(usr)] deleted the medical record for [active1.fields["name"]] ([active1.fields["id"]]).") QDEL_NULL(active2) if (href_list["d_rec"]) @@ -389,20 +399,22 @@ src.screen = 4 if (href_list["add_c"]) - if (!( istype(src.active2, /datum/data/record) )) + if (!( istype(active2, /datum/data/record) )) return - var/a2 = src.active2 - var/t1 = copytext(trim(strip_html(input("Add Comment:", "Med. records", null, null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( src.authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || src.active2 != a2)) + var/a2 = active2 + var/new_value = copytext(trim(strip_html(input("Add Comment:", "Med. records", null, null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active2 != a2)) return var/counter = 1 - while(src.active2.fields[text("com_[]", counter)]) + while(active2.fields[text("com_[]", counter)]) counter++ - src.active2.fields[text("com_[counter]")] = text("Made by [authenticated] ([rank]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
    [t1]") + active2.fields[text("com_[counter]")] = text("Made by [authenticated] ([rank]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [GLOB.game_year]
    [new_value]") + msg_admin_niche("[key_name_admin(usr)] added a medical comment for [active1.fields["name"]] ([active1.fields["id"]]): [new_value].") if (href_list["del_c"]) - if ((istype(src.active2, /datum/data/record) && src.active2.fields[text("com_[]", href_list["del_c"])])) - src.active2.fields[text("com_[]", href_list["del_c"])] = "Deleted" + if ((istype(active2, /datum/data/record) && active2.fields[text("com_[]", href_list["del_c"])])) + msg_admin_niche("[key_name_admin(usr)] deleted a medical comment for [active1.fields["name"]] ([active1.fields["id"]]): [active2.fields[text("com_[]", href_list["del_c"])]].") + active2.fields[text("com_[]", href_list["del_c"])] = text("Deleted entry by [authenticated] ([rank]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [GLOB.game_year]") if (href_list["search"]) var/t1 = stripped_input(usr, "Search String: (Name, DNA, or ID)", "Med. records") @@ -450,7 +462,7 @@ else P.info += "Medical Record Lost!
    " P.info += "" - P.info += text("

    This report was printed by [] [].
    The [MAIN_SHIP_NAME],[]/[], []

    \n",last_user_rank,last_user_name,time2text(world.timeofday, "MM/DD"),game_year,worldtime2text()) + P.info += text("

    This report was printed by [] [].
    The [MAIN_SHIP_NAME],[]/[], []

    \n",rank,authenticated,time2text(world.timeofday, "MM/DD"),GLOB.game_year,worldtime2text()) src.printing = null if(href_list["print_bs"])//Prints latest body scan @@ -473,7 +485,7 @@ break else P.info += "No scan on record." - P.info += text("

    This report was printed by [] [].
    The [MAIN_SHIP_NAME], []/[], []

    \n",last_user_rank,last_user_name,time2text(world.timeofday, "MM/DD"),game_year,worldtime2text()) + P.info += text("

    This report was printed by [] [].
    The [MAIN_SHIP_NAME], []/[], []

    \n",rank,authenticated,time2text(world.timeofday, "MM/DD"),GLOB.game_year,worldtime2text()) src.printing = null @@ -491,20 +503,27 @@ if(prob(10/severity)) switch(rand(1,6)) if(1) - R.fields["name"] = "[pick(pick(first_names_male), pick(first_names_female))] [pick(last_names)]" + msg_admin_niche("The medical record name of [R.fields["name"]] was scrambled!") + R.fields["name"] = "[pick(pick(GLOB.first_names_male), pick(GLOB.first_names_female))] [pick(GLOB.last_names)]" if(2) R.fields["sex"] = pick("Male", "Female") + msg_admin_niche("The medical record sex of [R.fields["name"]] was scrambled!") if(3) R.fields["age"] = rand(5, 85) + msg_admin_niche("The medical record age of [R.fields["name"]] was scrambled!") if(4) R.fields["b_type"] = pick("A-", "B-", "AB-", "O-", "A+", "B+", "AB+", "O+") + msg_admin_niche("The medical record blood type of [R.fields["name"]] was scrambled!") if(5) R.fields["p_stat"] = pick("*SSD*", "Active", "Physically Unfit", "Disabled") + msg_admin_niche("The medical record physical state of [R.fields["name"]] was scrambled!") if(6) R.fields["m_stat"] = pick("*Insane*", "*Unstable*", "*Watch*", "Stable") + msg_admin_niche("The medical record mental state of [R.fields["name"]] was scrambled!") continue else if(prob(1)) + msg_admin_niche("The medical record of [R.fields["name"]] was lost!") GLOB.data_core.medical -= R qdel(R) continue diff --git a/code/game/machinery/computer/research.dm b/code/game/machinery/computer/research.dm index 2f37d9b259..de4d3edf92 100644 --- a/code/game/machinery/computer/research.dm +++ b/code/game/machinery/computer/research.dm @@ -28,8 +28,8 @@ if(N.note_type == "grant") if(!N.grant) return - chemical_data.update_credits(N.grant) - visible_message(SPAN_NOTICE("[user] scans the [N.name] on the [src], collecting the [N.grant] research credits.")) + GLOB.chemical_data.update_credits(N.grant) + visible_message(SPAN_NOTICE("[user] scans the [N.name] on [src], collecting the [N.grant] research credits.")) N.grant = 0 qdel(N) return @@ -42,7 +42,7 @@ response = alert(usr,"Use existing or new category?","[src]","Existing","New") if(response == "Existing") var/list/pool = list() - for(var/category in chemical_data.research_documents) + for(var/category in GLOB.chemical_data.research_documents) pool += category pool = sortAssoc(pool) response = tgui_input_list(usr,"Select a category:", "Categories", pool) @@ -51,38 +51,32 @@ if(!response) response = "Misc." var/obj/item/paper/research_report/CR = P.convert_to_chem_report() - chemical_data.save_document(CR, response, CR.name) + GLOB.chemical_data.save_document(CR, response, CR.name) return - //Clearance Updating + //biomass credits rewards + if(istype(B, /obj/item/research_upgrades/credits)) + var/obj/item/research_upgrades/credits/cred = B + GLOB.chemical_data.update_credits(cred.credit_value) + visible_message(SPAN_NOTICE("[user] inserts [cred] in [src], collecting [cred.credit_value] points from sales.")) + qdel(cred) + //Clearance Card Updating if(!istype(B, /obj/item/card/id)) return var/obj/item/card/id/silver/clearance_badge/card = B if(!istype(card)) - visible_message(SPAN_NOTICE("[user] swipes their ID card on \the [src], but it is refused.")) + visible_message(SPAN_NOTICE("[user] swipes their ID card on [src], but it is refused.")) return - if(card.clearance_access <= chemical_data.clearance_level || (card.clearance_access == 6 && chemical_data.clearance_level >= 5 && chemical_data.clearance_x_access)) - visible_message(SPAN_NOTICE("[user] swipes the clearance card on the [src], but nothing happens.")) + if(!card.check_biometrics(user)) + visible_message(SPAN_WARNING("WARNING: ILLEGAL CLEARANCE USER DETECTED. ABORTING.")) return - if(user.real_name != card.registered_name) - visible_message(SPAN_WARNING("WARNING: ILLEGAL CLEARANCE USER DETECTED. CARD DATA HAS BEEN WIPED.")) - card.clearance_access = 0 - return - - var/give_level - var/give_x = FALSE - if(card.clearance_access == 6) - give_level = 5 - give_x = TRUE - else - give_level = card.clearance_access - chemical_data.clearance_level = give_level - if(give_x) - chemical_data.clearance_x_access = TRUE - chemical_data.reached_x_access = TRUE + var/credits_to_add = max(card.credits_to_give - GLOB.chemical_data.credits_gained, 0) + if(credits_to_add) + GLOB.chemical_data.update_credits(credits_to_add) + GLOB.chemical_data.credits_gained += credits_to_add - visible_message(SPAN_NOTICE("[user] swipes their ID card on \the [src], updating the clearance to level [give_level][give_x ? "X" : ""].")) - msg_admin_niche("[key_name(user)] has updated the research clearance to level [give_level][give_x ? "X" : ""].") + visible_message(SPAN_NOTICE("[user] swipes their ID card on [src], granting [credits_to_add] credits.")) + msg_admin_niche("[key_name(user)] has swiped a clearance card to give [credits_to_add] credits to research.") return /obj/structure/machinery/computer/research/ui_state(mob/user) @@ -103,12 +97,12 @@ /obj/structure/machinery/computer/research/ui_data(mob/user) var/list/data = list( - "rsc_credits" = chemical_data.rsc_credits, - "clearance_level" = chemical_data.clearance_level, - "broker_cost" = max(RESEARCH_LEVEL_INCREASE_MULTIPLIER*(chemical_data.clearance_level + 1), 1), - "research_documents" = chemical_data.research_documents, - "published_documents" = chemical_data.research_publications, - "clearance_x_access" = chemical_data.clearance_x_access, + "rsc_credits" = GLOB.chemical_data.rsc_credits, + "clearance_level" = GLOB.chemical_data.clearance_level, + "broker_cost" = max(RESEARCH_LEVEL_INCREASE_MULTIPLIER*(GLOB.chemical_data.clearance_level + 1), 1), + "research_documents" = GLOB.chemical_data.research_documents, + "published_documents" = GLOB.chemical_data.research_publications, + "clearance_x_access" = GLOB.chemical_data.clearance_x_access, "photocopier_error" = !photocopier, "printer_toner" = photocopier?.toner ) @@ -133,7 +127,7 @@ if ("read_document") var/print_type = params["print_type"] var/print_title = params["print_title"] - var/obj/item/paper/research_report/report = chemical_data.get_report(print_type, print_title) + var/obj/item/paper/research_report/report = GLOB.chemical_data.get_report(print_type, print_title) if(report) report.read_paper(user) return @@ -145,7 +139,7 @@ var/print_title = params["print_title"] photocopier.toner = max(0, photocopier.toner - 1) var/obj/item/paper/research_report/printing = new /obj/item/paper/research_report/(photocopier.loc) - var/obj/item/paper/research_report/report = chemical_data.get_report(print_type, print_title) + var/obj/item/paper/research_report/report = GLOB.chemical_data.get_report(print_type, print_title) if(report) printing.name = report.name printing.info = report.info @@ -154,16 +148,15 @@ if("broker_clearance") if(!photocopier) return - if(chemical_data.clearance_level < 5) - var/cost = max(RESEARCH_LEVEL_INCREASE_MULTIPLIER*(chemical_data.clearance_level + 1), 1) - if(cost <= chemical_data.rsc_credits) - chemical_data.update_credits(cost * -1) - chemical_data.clearance_level++ - visible_message(SPAN_NOTICE("Clearance access increased to level [chemical_data.clearance_level] for [cost] credits.")) - msg_admin_niche("[key_name(user)] traded research credits to upgrade the clearance to level [chemical_data.clearance_level].") - if(max_clearance < chemical_data.clearance_level) - chemical_data.update_income(1) //Bonus income and a paper for buying clearance instead of swiping it up - switch(chemical_data.clearance_level) + if(GLOB.chemical_data.clearance_level < 5) + var/cost = max(RESEARCH_LEVEL_INCREASE_MULTIPLIER*(GLOB.chemical_data.clearance_level + 1), 1) + if(cost <= GLOB.chemical_data.rsc_credits) + GLOB.chemical_data.update_credits(cost * -1) + GLOB.chemical_data.clearance_level++ + visible_message(SPAN_NOTICE("Clearance access increased to level [GLOB.chemical_data.clearance_level] for [cost] credits.")) + msg_admin_niche("[key_name(user)] traded research credits to upgrade the clearance to level [GLOB.chemical_data.clearance_level].") + if(max_clearance < GLOB.chemical_data.clearance_level) + switch(GLOB.chemical_data.clearance_level) if(2) new /obj/item/paper/research_notes/unique/tier_two/(photocopier.loc) max_clearance = 2 @@ -176,48 +169,23 @@ if(5) new /obj/item/paper/research_notes/unique/tier_five/(photocopier.loc) max_clearance = 5 - if("purchase_document") - if(!photocopier) - return - var/purchase_tier = FLOOR(text2num(params["purchase_document"]), 1) - if(purchase_tier <= 0 || purchase_tier > 5) - return - if(purchase_tier > chemical_data.clearance_level) - return - var/purchase_cost = base_purchase_cost + purchase_tier * 2 - if(purchase_cost <= chemical_data.rsc_credits) - chemical_data.update_credits(purchase_cost * -1) - var/obj/item/paper/research_notes/unique/N - switch(purchase_tier) - if(1) - N = new /obj/item/paper/research_notes/unique/tier_one/(photocopier.loc) - if(2) - N = new /obj/item/paper/research_notes/unique/tier_two/(photocopier.loc) - if(3) - N = new /obj/item/paper/research_notes/unique/tier_three/(photocopier.loc) - if(4) - N = new /obj/item/paper/research_notes/unique/tier_four/(photocopier.loc) - else - N = new /obj/item/paper/research_notes/unique/tier_five/(photocopier.loc) - visible_message(SPAN_NOTICE("Research report for [N.data.name] has been purchased.")) if("publish_document") var/print_type = params["print_type"] var/print_title = params["print_title"] - var/obj/item/paper/research_report/report = chemical_data.get_report(print_type, print_title) + var/obj/item/paper/research_report/report = GLOB.chemical_data.get_report(print_type, print_title) if(!report) to_chat(usr, SPAN_WARNING("Report data corrupted. Unable to transmit.")) return - chemical_data.publish_document(report, print_type, print_title) + GLOB.chemical_data.publish_document(report, print_type, print_title) if("unpublish_document") var/print_title = params["print_title"] var/print_type = params["print_type"] - chemical_data.unpublish_document(print_type, print_title) + GLOB.chemical_data.unpublish_document(print_type, print_title) if("request_clearance_x_access") var/purchase_cost = 5 - if(purchase_cost <= chemical_data.rsc_credits) - chemical_data.clearance_x_access = TRUE - chemical_data.reached_x_access = TRUE - chemical_data.update_credits(purchase_cost * -1) + if(purchase_cost <= GLOB.chemical_data.rsc_credits) + GLOB.chemical_data.clearance_x_access = TRUE + GLOB.chemical_data.reached_x_access = TRUE + GLOB.chemical_data.update_credits(purchase_cost * -1) visible_message(SPAN_NOTICE("Clearance Level X Acquired.")) playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1) - diff --git a/code/game/machinery/computer/robot.dm b/code/game/machinery/computer/robot.dm index 19e3ac900a..1a8dcf2efd 100644 --- a/code/game/machinery/computer/robot.dm +++ b/code/game/machinery/computer/robot.dm @@ -8,207 +8,3 @@ icon_state = "robot" req_access = list(ACCESS_MARINE_RESEARCH) circuit = /obj/item/circuitboard/computer/robotics - - var/id = 0 - var/temp = null - var/status = 0 - var/timeleft = 60 - var/stop = 0 - var/screen = 0 // 0 - Main Menu, 1 - Cyborg Status, 2 - Kill 'em All! -- In text - - -/obj/structure/machinery/computer/robotics/attack_remote(mob/user as mob) - return src.attack_hand(user) - -/obj/structure/machinery/computer/robotics/attack_hand(mob/user as mob) - if(..()) - return - if (src.z > 6) - to_chat(user, SPAN_DANGER("Unable to establish a connection: \black You're too far away from the station!")) - return - user.set_interaction(src) - var/dat - if (src.temp) - dat = "[src.temp]

    Clear Screen" - else - if(screen == 0) - dat += "

    Cyborg Control Console


    " - dat += "1. Cyborg Status
    " - dat += "2. Emergency Full Destruct
    " - if(screen == 1) - for(var/mob/living/silicon/robot/R in GLOB.mob_list) - if(istype(R, /mob/living/silicon/robot/drone)) - continue //There's a specific console for drones. - if(isRemoteControlling(user)) - if (R.connected_ai != user) - continue - if(isrobot(user)) - if (R != user) - continue - if(R.scrambledcodes) - continue - - dat += "[R.name] |" - if(R.stat) - dat += " Not Responding |" - else if (HAS_TRAIT_FROM(R, TRAIT_IMMOBILIZED, HACKED_TRAIT)) - dat += " Locked Down |" - else - dat += " Operating Normally |" - if(R.cell) - dat += " Battery Installed ([R.cell.charge]/[R.cell.maxcharge]) |" - else - dat += " No Cell Installed |" - if(R.module) - dat += " Module Installed ([R.module.name]) |" - else - dat += " No Module Installed |" - if(R.connected_ai) - dat += " Slaved to [R.connected_ai.name] |" - else - dat += " Independent from AI |" - if (isRemoteControlling(user)) - if((user.mind.original == user)) - dat += "(Hack) " - var/canmove = HAS_TRAIT_FROM(src, TRAIT_IMMOBILIZED, HACKED_TRAIT) - dat += "([canmove ? "Lockdown" : "Release"]) " - dat += "(Destroy)" - dat += "
    " - dat += "(Return to Main Menu)
    " - if(screen == 2) - if(!src.status) - dat += {"
    Emergency Robot Self-Destruct
    \nStatus: Off
    - \n
    - \nCountdown: [src.timeleft]/60 \[Reset\]
    - \n
    - \nStart Sequence
    - \n
    - \nClose"} - else - dat = {"Emergency Robot Self-Destruct
    \nStatus: Activated
    - \n
    - \nCountdown: [src.timeleft]/60 \[Reset\]
    - \n
    \nStop Sequence
    - \n
    - \nClose"} - dat += "(Return to Main Menu)
    " - - user << browse(dat, "window=computer;size=400x500") - onclose(user, "computer") - return - -/obj/structure/machinery/computer/robotics/Topic(href, href_list) - if(..()) - return - if ((usr.contents.Find(src) || (in_range(src, usr) && istype(src.loc, /turf))) || (isRemoteControlling(usr))) - usr.set_interaction(src) - - if (href_list["eject"]) - src.temp = {"Destroy Robots?
    -
    \[Swipe ID to initiate destruction sequence\]
    - Cancel"} - - else if (href_list["eject2"]) - var/obj/item/card/id/I = usr.get_active_hand() - if (istype(I)) - if(src.check_access(I)) - if (!status) - message_admins("[key_name_admin(usr)] has initiated the global cyborg killswitch!") - log_game(SPAN_NOTICE("[key_name(usr)] has initiated the global cyborg killswitch!")) - src.status = 1 - src.start_sequence() - src.temp = null - - else - to_chat(usr, SPAN_DANGER("Access Denied.")) - - else if (href_list["stop"]) - src.temp = {" - Stop Robot Destruction Sequence?
    -
    Yes
    - No"} - - else if (href_list["stop2"]) - src.stop = 1 - src.temp = null - src.status = 0 - - else if (href_list["reset"]) - src.timeleft = 60 - - else if (href_list["temp"]) - src.temp = null - else if (href_list["screen"]) - switch(href_list["screen"]) - if("0") - screen = 0 - if("1") - screen = 1 - if("2") - screen = 2 - else if (href_list["killbot"]) - if(src.allowed(usr)) - var/mob/living/silicon/robot/R = locate(href_list["killbot"]) - if(R) - var/choice = tgui_input_list(usr, "Are you certain you wish to detonate [R.name]?", "Hack machine", list("Confirm", "Abort")) - if(choice == "Confirm") - if(R && istype(R)) - message_admins("[key_name_admin(usr)] detonated [R.name]!") - log_game(SPAN_NOTICE("[key_name_admin(usr)] detonated [R.name]!")) - R.self_destruct() - else - to_chat(usr, SPAN_DANGER("Access Denied.")) - - else if (href_list["stopbot"]) - if(src.allowed(usr)) - var/mob/living/silicon/robot/R = locate(href_list["stopbot"]) - var/canmove = HAS_TRAIT_FROM(src, TRAIT_IMMOBILIZED, HACKED_TRAIT) - if(R && istype(R)) // Extra sancheck because of input var references - var/choice = tgui_input_list(usr, "Are you certain you wish to [canmove ? "lock down" : "release"] [R.name]?", "Hack machine", list("Confirm", "Abort")) - if(choice == "Confirm") - if(R && istype(R)) - message_admins("[key_name_admin(usr)] [canmove ? "locked down" : "released"] [R.name]!") - log_game("[key_name(usr)] [canmove ? "locked down" : "released"] [R.name]!") - if(canmove) - ADD_TRAIT(src, TRAIT_IMMOBILIZED, HACKED_TRAIT) - else - REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, HACKED_TRAIT) - if (R.lockcharge) - R.lockcharge = !R.lockcharge - to_chat(R, "Your lockdown has been lifted!") - else - R.lockcharge = !R.lockcharge - to_chat(R, "You have been locked down!") - - else - to_chat(usr, SPAN_DANGER("Access Denied.")) - - else if (href_list["magbot"]) - if(src.allowed(usr)) - var/mob/living/silicon/robot/R = locate(href_list["magbot"]) - - // whatever weirdness this is supposed to be, but that is how the href gets added, so here it is again - if(istype(R) && isRemoteControlling(usr) && (usr.mind.original == usr)) - - var/choice = tgui_input_list(usr, "Are you certain you wish to hack [R.name]?", "Hack machine", list("Confirm", "Abort")) - if(choice == "Confirm") - if(R && istype(R)) - log_game("[key_name(usr)] emagged [R.name] using robotic console!") - add_verb(R, /mob/living/silicon/robot/proc/ResetSecurityCodes) - - src.add_fingerprint(usr) - src.updateUsrDialog() - return - -/obj/structure/machinery/computer/robotics/proc/start_sequence() - while(src.timeleft) - if(src.stop) - src.stop = 0 - return - src.timeleft-- - sleep(10) - for(var/mob/living/silicon/robot/R in GLOB.mob_list) - if(!R.scrambledcodes && !istype(R, /mob/living/silicon/robot/drone)) - R.self_destruct() - - return diff --git a/code/game/machinery/computer/robots_props.dm b/code/game/machinery/computer/robots_props.dm new file mode 100644 index 0000000000..cac77f9bdb --- /dev/null +++ b/code/game/machinery/computer/robots_props.dm @@ -0,0 +1,19 @@ +/obj/structure/machinery/computer/aifixer + name = "AI System Integrity Restorer" + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "ai-fixer" + circuit = /obj/item/circuitboard/computer/aifixer + req_one_access = list(ACCESS_CIVILIAN_ENGINEERING) + processing = TRUE + +/obj/structure/machinery/computer/aifixer/New() + ..() + src.overlays += image('icons/obj/structures/machinery/computer.dmi', "ai-fixer-empty") + +/obj/structure/machinery/computer/drone_control + name = "Maintenance Drone Control" + desc = "Used to monitor the station's drone population and the assembler that services them." + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "power" + circuit = /obj/item/circuitboard/computer/drone_control + diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm index 2d9a4a1dbe..ae6ddc3d41 100644 --- a/code/game/machinery/computer/security.dm +++ b/code/game/machinery/computer/security.dm @@ -95,7 +95,7 @@ if("Released") background = "'background-color:#2981b3;'" if("Suspect") - background = "'background-color:#008743;'" + background = "'background-color:#686A6C;'" if("NJP") background = "'background-color:#faa20a;'" if("None") @@ -155,7 +155,7 @@ dat += text("New Security Record

    ", src) dat += text("\nPrint Record
    \nBack
    ", src, src) if(4.0) - if(!Perp.len) + if(!length(Perp)) dat += text("ERROR. String could not be located.

    Back", src) else dat += {" @@ -172,7 +172,7 @@ Rank Criminal Status "} - for(var/i=1, i<=Perp.len, i += 2) + for(var/i=1, i<=length(Perp), i += 2) var/crimstat = "" var/datum/data/record/R = Perp[i] if(istype(Perp[i+1],/datum/data/record/)) @@ -187,7 +187,7 @@ if("Released") background = "'background-color:#3BB9FF;'" if("Suspect") - background = "'background-color:#1AAFFF;'" + background = "'background-color:#686A6C;'" if("NJP") background = "'background-color:#faa20a;'" if("None") @@ -217,7 +217,7 @@ What a mess.*/ active1 = null if (!( GLOB.data_core.security.Find(active2) )) active2 = null - if ((usr.contents.Find(src) || (in_range(src, usr) && istype(loc, /turf))) || (ishighersilicon(usr))) + if ((usr.contents.Find(src) || (in_range(src, usr) && istype(loc, /turf))) || (isSilicon(usr))) usr.set_interaction(src) switch(href_list["choice"]) // SORTING! @@ -271,16 +271,16 @@ What a mess.*/ Perp = new/list() t1 = lowertext(t1) var/list/components = splittext(t1, " ") - if(components.len > 5) + if(length(components) > 5) return //Lets not let them search too greedily. for(var/datum/data/record/R in GLOB.data_core.general) var/temptext = R.fields["name"] + " " + R.fields["id"] + " " + R.fields["rank"] - for(var/i = 1, i<=components.len, i++) + for(var/i = 1, i<=length(components), i++) if(findtext(temptext,components[i])) var/prelist = new/list(2) prelist[1] = R Perp += prelist - for(var/i = 1, i<=Perp.len, i+=2) + for(var/i = 1, i<=length(Perp), i+=2) for(var/datum/data/record/E in GLOB.data_core.security) var/datum/data/record/R = Perp[i] if ((E.fields["name"] == R.fields["name"] && E.fields["id"] == R.fields["id"])) @@ -355,28 +355,27 @@ What a mess.*/ GLOB.data_core.security -= R qdel(R) temp = "All Security records deleted." + msg_admin_niche("[key_name_admin(usr)] deleted all security records.") if ("Add Entry") if (!(istype(active2, /datum/data/record))) return var/a2 = active2 - var/t1 = copytext(trim(strip_html(input("Your name and time will be added to this new comment.", "Add a comment", null, null) as message)),1,MAX_MESSAGE_LEN) - if((!t1 || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!ishighersilicon(usr))) || active2 != a2)) + var/new_value = copytext(trim(strip_html(input("Your name and time will be added to this new comment.", "Add a comment", null, null) as message)),1,MAX_MESSAGE_LEN) + if((!new_value || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isSilicon(usr))) || active2 != a2)) return - var/created_at = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), game_year) - var/new_comment = list("entry" = t1, "created_by" = list("name" = "", "rank" = ""), "deleted_by" = null, "deleted_at" = null, "created_at" = created_at) + var/created_at = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), GLOB.game_year) + var/new_comment = list("entry" = new_value, "created_by" = list("name" = "", "rank" = ""), "deleted_by" = null, "deleted_at" = null, "created_at" = created_at) if(istype(usr,/mob/living/carbon/human)) var/mob/living/carbon/human/U = usr new_comment["created_by"] = list("name" = U.get_authentification_name(), "rank" = U.get_assignment()) - else if(istype(usr,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/U = usr - new_comment["created_by"] = list("name" = U.name, "rank" = "[U.modtype] [U.braintype]") if(!islist(active2.fields["comments"])) active2.fields["comments"] = list("1" = new_comment) else var/new_com_i = length(active2.fields["comments"]) + 1 active2.fields["comments"]["[new_com_i]"] = new_comment to_chat(usr, text("You have added a new comment to the Security Record of [].", active2.fields["name"])) + msg_admin_niche("[key_name_admin(usr)] added a security comment for [active1.fields["name"]] ([active1.fields["id"]]): [new_value].") if ("Delete Entry") if(!islist(active2.fields["comments"])) @@ -387,11 +386,8 @@ What a mess.*/ if(istype(usr,/mob/living/carbon/human)) var/mob/living/carbon/human/U = usr deleter = "[U.get_authentification_name()] ([U.get_assignment()])" - else if(istype(usr,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/U = usr - deleter = "[U.name] ([U.modtype] [U.braintype])" updated_comments[href_list["del_c"]]["deleted_by"] = deleter - updated_comments[href_list["del_c"]]["deleted_at"] = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), game_year) + updated_comments[href_list["del_c"]]["deleted_at"] = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), GLOB.game_year) active2.fields["comments"] = updated_comments to_chat(usr, text("You have deleted a comment from the Security Record of [].", active2.fields["name"])) //RECORD CREATE @@ -412,23 +408,28 @@ What a mess.*/ switch(href_list["field"]) if("name") if (istype(active1, /datum/data/record)) - var/t1 = reject_bad_name(input(usr, "Please input name:", "Secure. records", active1.fields["name"]) as text|null) - if (!t1 || active1 != a1) + var/new_value = reject_bad_name(input(usr, "Please input name:", "Secure. records", active1.fields["name"]) as text|null) + if (!new_value || active1 != a1) return - message_admins("[key_name(usr)] has changed the record name of [active1.fields["name"]] to [t1]") - active1.fields["name"] = t1 + message_admins("[key_name(usr)] changed the security record name of [active1.fields["name"]] to [new_value]") + active1.fields["name"] = new_value + if("sex") if (istype(active1, /datum/data/record)) + var/new_value = "Male" if (active1.fields["sex"] == "Male") - active1.fields["sex"] = "Female" - else - active1.fields["sex"] = "Male" + new_value = "Female" + active1.fields["sex"] = new_value + msg_admin_niche("[key_name(usr)] changed the security record sex of [active1.fields["name"]] to [new_value]") + if("age") if (istype(active1, /datum/data/record)) - var/t1 = input("Please input age:", "Secure. records", active1.fields["age"], null) as num - if (!t1 || active1 != a1) + var/new_value = input("Please input age:", "Secure. records", active1.fields["age"], null) as num + if (!new_value || active1 != a1) return - active1.fields["age"] = t1 + active1.fields["age"] = new_value + msg_admin_niche("[key_name(usr)] changed the security record age of [active1.fields["name"]] to [new_value]") + if("criminal") if (istype(active2, /datum/data/record)) temp = "
    Criminal Status:
    " @@ -440,22 +441,25 @@ What a mess.*/ temp += "
  • Suspect
  • " temp += "
  • NJP
  • " temp += "
" + if("rank") //This was so silly before the change. Now it actually works without beating your head against the keyboard. /N - if (istype(active1, /datum/data/record) && GLOB.highcom_paygrades.Find(rank)) + if (istype(active1, /datum/data/record) && GLOB.uscm_highcom_paygrades.Find(rank)) temp = "
Occupation:
" temp += "
    " for(var/rank in GLOB.joblist) - temp += "
  • [rank]
  • " + temp += "
  • [rank]
  • " temp += "
" else alert(usr, "You do not have the required rank to do this!") + if("species") if (istype(active1, /datum/data/record)) - var/t1 = copytext(trim(strip_html(input("Please enter race:", "General records", active1.fields["species"], null) as message)),1,MAX_MESSAGE_LEN) - if (!t1 || active1 != a1) + var/new_value = copytext(trim(strip_html(input("Please enter race:", "General records", active1.fields["species"], null) as message)),1,MAX_MESSAGE_LEN) + if (!new_value || active1 != a1) return - active1.fields["species"] = t1 + active1.fields["species"] = new_value + msg_admin_niche("[key_name(usr)] changed the security record species of [active1.fields["name"]] to [new_value]") //TEMPORARY MENU FUNCTIONS @@ -463,14 +467,17 @@ What a mess.*/ temp=null switch(href_list["choice"]) if ("Change Rank") - if (active1) - active1.fields["rank"] = href_list["rank"] - if(href_list["rank"] in GLOB.joblist) - active1.fields["real_rank"] = href_list["real_rank"] + if(istype(active1, /datum/data/record) && GLOB.uscm_highcom_paygrades.Find(rank)) + var/new_value = href_list["rank"] + active1.fields["rank"] = new_value + if(new_value in GLOB.joblist) + active1.fields["real_rank"] = new_value + message_admins("[key_name(usr)] changed the security record sex of [active1.fields["name"]] to [new_value]") if ("Change Criminal Status") - if (active2) - switch(href_list["criminal2"]) + if(istype(active2, /datum/data/record)) + var/new_value = href_list["criminal2"] + switch(new_value) if("none") active2.fields["criminal"] = "None" if("arrest") @@ -487,6 +494,8 @@ What a mess.*/ for(var/mob/living/carbon/human/H in GLOB.human_mob_list) H.sec_hud_set_security_status() + message_admins("[key_name(usr)] changed the security record criminal status of [active1.fields["name"]] to [new_value]") + add_fingerprint(usr) updateUsrDialog() return @@ -511,17 +520,12 @@ What a mess.*/ return dat /obj/structure/machinery/computer/secure_data/proc/is_not_allowed(mob/user) - return user.stat || user.is_mob_restrained() || (!in_range(src, user) && (!ishighersilicon(user))) + return user.stat || user.is_mob_restrained() || (!in_range(src, user) && (!isSilicon(user))) /obj/structure/machinery/computer/secure_data/proc/get_photo(mob/user) if(istype(user.get_active_hand(), /obj/item/photo)) var/obj/item/photo/photo = user.get_active_hand() return photo.img - if(ishighersilicon(user)) - var/mob/living/silicon/tempAI = usr - var/datum/picture/selection = tempAI.GetPicture() - if (selection) - return selection.fields["img"] /obj/structure/machinery/computer/secure_data/emp_act(severity) . = ..() @@ -532,20 +536,27 @@ What a mess.*/ if(prob(10/severity)) switch(rand(1,6)) if(1) - R.fields["name"] = "[pick(pick(first_names_male), pick(first_names_female))] [pick(last_names)]" + msg_admin_niche("The security record name of [R.fields["name"]] was scrambled!") + R.fields["name"] = "[pick(pick(GLOB.first_names_male), pick(GLOB.first_names_female))] [pick(GLOB.last_names)]" if(2) R.fields["sex"] = pick("Male", "Female") + msg_admin_niche("The security record sex of [R.fields["name"]] was scrambled!") if(3) R.fields["age"] = rand(5, 85) + msg_admin_niche("The security record age of [R.fields["name"]] was scrambled!") if(4) R.fields["criminal"] = pick("None", "*Arrest*", "Incarcerated", "Released", "Suspect", "NJP") + msg_admin_niche("The security record criminal status of [R.fields["name"]] was scrambled!") if(5) - R.fields["p_stat"] = pick("*Unconcious*", "Active", "Physically Unfit") + R.fields["p_stat"] = pick("*Unconscious*", "Active", "Physically Unfit") + msg_admin_niche("The security record physical state of [R.fields["name"]] was scrambled!") if(6) R.fields["m_stat"] = pick("*Insane*", "*Unstable*", "*Watch*", "Stable") + msg_admin_niche("The security record mental state of [R.fields["name"]] was scrambled!") continue else if(prob(1)) + msg_admin_niche("The security record of [R.fields["name"]] was lost!") GLOB.data_core.security -= R qdel(R) continue diff --git a/code/game/machinery/computer/skills.dm b/code/game/machinery/computer/skills.dm index 60b5aa2329..d0ace4d4df 100644 --- a/code/game/machinery/computer/skills.dm +++ b/code/game/machinery/computer/skills.dm @@ -97,7 +97,7 @@ dat += "General Record Lost!
" dat += "\nDelete Record (ALL)

\nPrint Record
\nBack
" if(4.0) - if(!Perp.len) + if(!length(Perp)) dat += "ERROR. String could not be located.

Back" else dat += {" @@ -114,7 +114,7 @@ Rank Fingerprints "} - for(var/i=1, i<=Perp.len, i += 2) + for(var/i=1, i<=length(Perp), i += 2) var/crimstat = "" var/datum/data/record/R = Perp[i] if(istype(Perp[i+1],/datum/data/record/)) @@ -188,12 +188,6 @@ What a mess.*/ src.authenticated = usr.name src.rank = "AI" src.screen = 1 - else if (isborg(usr)) - src.active1 = null - src.authenticated = usr.name - var/mob/living/silicon/robot/R = usr - src.rank = R.braintype - src.screen = 1 else if (istype(scan, /obj/item/card/id)) active1 = null if(check_access(scan)) @@ -208,16 +202,16 @@ What a mess.*/ Perp = new/list() t1 = lowertext(t1) var/list/components = splittext(t1, " ") - if(components.len > 5) + if(length(components) > 5) return //Lets not let them search too greedily. for(var/datum/data/record/R in GLOB.data_core.general) var/temptext = R.fields["name"] + " " + R.fields["id"] + " " + R.fields["rank"] - for(var/i = 1, i<=components.len, i++) + for(var/i = 1, i<=length(components), i++) if(findtext(temptext,components[i])) var/prelist = new/list(2) prelist[1] = R Perp += prelist - for(var/i = 1, i<=Perp.len, i+=2) + for(var/i = 1, i<=length(Perp), i+=2) for(var/datum/data/record/E in GLOB.data_core.security) var/datum/data/record/R = Perp[i] if ((E.fields["name"] == R.fields["name"] && E.fields["id"] == R.fields["id"])) @@ -265,9 +259,10 @@ What a mess.*/ GLOB.data_core.security -= R qdel(R) temp = "All Employment records deleted." + msg_admin_niche("[key_name_admin(usr)] deleted all employment records.") if ("Delete Record (ALL)") - if (active1) + if(istype(active1, /datum/data/record)) temp = "
Are you sure you wish to delete the record (ALL)?
" temp += "Yes
" temp += "No" @@ -281,63 +276,75 @@ What a mess.*/ switch(href_list["field"]) if("name") if (istype(active1, /datum/data/record)) - var/t1 = reject_bad_name(input("Please input name:", "Secure. records", active1.fields["name"], null) as text) - if ((!( t1 ) || !length(trim(t1)) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr)))) || active1 != a1) + var/new_value = reject_bad_name(input("Please input name:", "Secure. records", active1.fields["name"], null) as text) + if ((!( new_value ) || !length(trim(new_value)) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr)))) || active1 != a1) return - message_admins("[key_name(usr)] has changed the record name of [active1.fields["name"]] to [t1]") - active1.fields["name"] = t1 + message_admins("[key_name(usr)] changed the employment record name of [active1.fields["name"]] to [new_value]") + active1.fields["name"] = new_value + if("id") if (istype(active1, /datum/data/record)) - var/t1 = copytext(trim(sanitize(input("Please input id:", "Secure. records", active1.fields["id"], null) as text)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) + var/new_value = copytext(trim(sanitize(input("Please input id:", "Secure. records", active1.fields["id"], null) as text)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) return - active1.fields["id"] = t1 + msg_admin_niche("[key_name_admin(usr)] changed the employment record id for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") + active1.fields["id"] = new_value if("sex") if (istype(active1, /datum/data/record)) + var/new_value = "Male" if (active1.fields["sex"] == "Male") - active1.fields["sex"] = "Female" - else - active1.fields["sex"] = "Male" + new_value = "Female" + active1.fields["sex"] = new_value + msg_admin_niche("[key_name_admin(usr)] changed the employment record sex for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") + if("age") if (istype(active1, /datum/data/record)) - var/t1 = input("Please input age:", "Secure. records", active1.fields["age"], null) as num - if ((!( t1 ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) + var/new_value = input("Please input age:", "Secure. records", active1.fields["age"], null) as num + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) return - active1.fields["age"] = t1 + active1.fields["age"] = new_value + msg_admin_niche("[key_name_admin(usr)] changed the employment record age for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") + if("rank") + if(istype(active1, /datum/data/record)) //This was so silly before the change. Now it actually works without beating your head against the keyboard. /N - if(istype(active1, /datum/data/record) && GLOB.highcom_paygrades.Find(rank)) - temp = "
Occupation:
" - temp += "
    " - for(var/rank in GLOB.joblist) - temp += "
  • [rank]
  • " - temp += "
" - else - alert(usr, "You do not have the required rank to do this!") + if(GLOB.uscm_highcom_paygrades.Find(rank)) + temp = "
Occupation:
" + temp += "
    " + for(var/rank in GLOB.joblist) + temp += "
  • [rank]
  • " + temp += "
" + else + alert(usr, "You do not have the required rank to do this!") + if("species") if (istype(active1, /datum/data/record)) - var/t1 = copytext(trim(sanitize(input("Please enter race:", "General records", active1.fields["species"], null) as message)),1,MAX_MESSAGE_LEN) - if ((!( t1 ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) + var/new_value = copytext(trim(sanitize(input("Please enter race:", "General records", active1.fields["species"], null) as message)),1,MAX_MESSAGE_LEN) + if ((!( new_value ) || !( authenticated ) || usr.stat || usr.is_mob_restrained() || (!in_range(src, usr) && (!isRemoteControlling(usr))) || active1 != a1)) return - active1.fields["species"] = t1 + active1.fields["species"] = new_value + msg_admin_niche("[key_name_admin(usr)] changed the employment record species for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") //TEMPORARY MENU FUNCTIONS else//To properly clear as per clear screen. temp=null switch(href_list["choice"]) if ("Change Rank") - if (active1) - active1.fields["rank"] = href_list["rank"] - if(href_list["rank"] in GLOB.joblist) - active1.fields["real_rank"] = href_list["real_rank"] + if(istype(active1, /datum/data/record) && GLOB.uscm_highcom_paygrades.Find(rank)) + var/new_value = href_list["rank"] + active1.fields["rank"] = new_value + if(new_value in GLOB.joblist) + active1.fields["real_rank"] = new_value + message_admins("[key_name_admin(usr)] changed the employment record rank for [active1.fields["name"]] ([active1.fields["id"]]) to [new_value].") if ("Delete Record (ALL) Execute") - if (active1) + if(istype(active1, /datum/data/record)) for(var/datum/data/record/R as anything in GLOB.data_core.medical) if ((R.fields["name"] == active1.fields["name"] || R.fields["id"] == active1.fields["id"])) GLOB.data_core.medical -= R qdel(R) + msg_admin_niche("[key_name_admin(usr)] deleted all employment records for [active1.fields["name"]] ([active1.fields["id"]]).") QDEL_NULL(active1) else temp = "This function does not appear to be working at the moment. Our apologies." @@ -355,20 +362,27 @@ What a mess.*/ if(prob(10/severity)) switch(rand(1,6)) if(1) - R.fields["name"] = "[pick(pick(first_names_male), pick(first_names_female))] [pick(last_names)]" + msg_admin_niche("The employment record name of [R.fields["name"]] was scrambled!") + R.fields["name"] = "[pick(pick(GLOB.first_names_male), pick(GLOB.first_names_female))] [pick(GLOB.last_names)]" if(2) R.fields["sex"] = pick("Male", "Female") + msg_admin_niche("The employment record sex of [R.fields["name"]] was scrambled!") if(3) R.fields["age"] = rand(5, 85) + msg_admin_niche("The employment record age of [R.fields["name"]] was scrambled!") if(4) R.fields["criminal"] = pick("None", "*Arrest*", "Incarcerated", "Released") + msg_admin_niche("The employment record criminal status of [R.fields["name"]] was scrambled!") if(5) - R.fields["p_stat"] = pick("*Unconcious*", "Active", "Physically Unfit") + R.fields["p_stat"] = pick("*Unconscious*", "Active", "Physically Unfit") + msg_admin_niche("The employment record physical state of [R.fields["name"]] was scrambled!") if(6) R.fields["m_stat"] = pick("*Insane*", "*Unstable*", "*Watch*", "Stable") + msg_admin_niche("The employment record mental state of [R.fields["name"]] was scrambled!") continue else if(prob(1)) + msg_admin_niche("The employment record of [R.fields["name"]] was lost!") GLOB.data_core.security -= R qdel(R) continue diff --git a/code/game/machinery/computer/station_alert.dm b/code/game/machinery/computer/station_alert.dm index d262caf478..ddce92c966 100644 --- a/code/game/machinery/computer/station_alert.dm +++ b/code/game/machinery/computer/station_alert.dm @@ -55,7 +55,7 @@ var/list/CL = null if(O && islist(O)) CL = O - if (CL.len == 1) + if (length(CL) == 1) C = CL[1] else if(O && istype(O, /obj/structure/machinery/camera)) C = O @@ -73,7 +73,7 @@ var/list/srcs = alarm[3] if (origin in srcs) srcs -= origin - if (srcs.len == 0) + if (length(srcs) == 0) cleared = 1 L -= I return !cleared @@ -85,7 +85,7 @@ var/active_alarms = 0 for (var/cat in src.alarms) var/list/L = src.alarms[cat] - if(L.len) active_alarms = 1 + if(length(L)) active_alarms = 1 if(active_alarms) icon_state = "alert:2" else diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index 357ef48fff..3b7880320d 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -15,7 +15,7 @@ var/list/req_component_names = null var/state = CONSTRUCTION_STATE_BEGIN var/required_skill = SKILL_CONSTRUCTION_ENGI - var/required_dismantle_skill = SKILL_ENGINEER_ENGI + var/required_dismantle_skill = SKILL_ENGINEER_TRAINED /obj/structure/machinery/constructable_frame/Initialize(mapload, ...) . = ..() @@ -124,7 +124,7 @@ state = CONSTRUCTION_STATE_BEGIN circuit.forceMove(loc) circuit = null - if(components.len == 0) + if(length(components) == 0) to_chat(user, SPAN_NOTICE("You remove the circuit board.")) else to_chat(user, SPAN_NOTICE("You remove the circuit board and other components.")) diff --git a/code/game/machinery/cryo.dm b/code/game/machinery/cryo.dm index afcc9686cf..70c4a17548 100644 --- a/code/game/machinery/cryo.dm +++ b/code/game/machinery/cryo.dm @@ -1,4 +1,8 @@ #define HEAT_CAPACITY_HUMAN 100 //249840 J/K, for a 72 kg person. +#define DEATH_STAGE_NONE 0 +#define DEATH_STAGE_EARLY 1 +#define DEATH_STAGE_WARNING 2 +#define DEATH_STAGE_CRITICAL 3 /obj/structure/machinery/cryo_cell name = "cryo cell" @@ -19,6 +23,7 @@ var/mob/living/carbon/occupant = null var/obj/item/reagent_container/glass/beaker = null + var/occupant_death_stage = DEATH_STAGE_NONE /obj/structure/machinery/cryo_cell/Initialize() . = ..() @@ -28,19 +33,18 @@ QDEL_NULL(beaker) . = ..() - /obj/structure/machinery/cryo_cell/process() if(!on) updateUsrDialog() return if(occupant) - if(occupant.stat != DEAD) - process_occupant() - else + var/mob/living/carbon/human/human_occupant = occupant + if(occupant.stat == DEAD && (!istype(human_occupant) || human_occupant.undefibbable)) go_out(TRUE, TRUE) //Whether auto-eject is on or not, we don't permit literal deadbeats to hang around. - playsound(src.loc, 'sound/machines/ping.ogg', 25, 1) - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("\The [src] pings: Patient is dead!")]") + display_message("Patient is dead!", warning = TRUE) + else + process_occupant() updateUsrDialog() return TRUE @@ -106,23 +110,24 @@ else data["occupant"]["temperaturestatus"] = "bad" - data["cellTemperature"] = round(temperature) + data["cellTemperature"] = floor(temperature) data["isBeakerLoaded"] = beaker ? TRUE : FALSE var/beakerContents = list() - if(beaker && beaker.reagents && beaker.reagents.reagent_list.len) + if(beaker && beaker.reagents && length(beaker.reagents.reagent_list)) for(var/datum/reagent/R in beaker.reagents.reagent_list) beakerContents += list(list("name" = R.name, "volume" = R.volume)) data["beakerContents"] = beakerContents return data -/obj/structure/machinery/cryo_cell/ui_act(action, list/params) +/obj/structure/machinery/cryo_cell/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) . = ..() if(.) return switch(action) if("power") on = !on + update_use_power(on ? USE_POWER_ACTIVE : USE_POWER_IDLE) update_icon() . = TRUE if("eject") @@ -143,7 +148,8 @@ if("notice") release_notice = !release_notice . = TRUE - updateUsrDialog() + + updateUsrDialog(ui.user) /obj/structure/machinery/cryo_cell/attackby(obj/item/W, mob/living/user) if(istype(W, /obj/item/reagent_container/glass)) @@ -158,34 +164,64 @@ beaker = W var/reagentnames = "" - for(var/datum/reagent/R in beaker.reagents.reagent_list) - reagentnames += ";[R.name]" + for(var/datum/reagent/cur_reagent in beaker.reagents.reagent_list) + reagentnames += ";[cur_reagent.name]" - msg_admin_niche("[key_name(user)] put \a [beaker] into \the [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]) [ADMIN_JMP(src.loc)].", 1) + msg_admin_niche("[key_name(user)] put \a [beaker] into [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]) [ADMIN_JMP(src.loc)].", 1) if(user.drop_inv_item_to_loc(W, src)) - user.visible_message("[user] adds \a [W] to \the [src]!", "You add \a [W] to \the [src]!") + user.visible_message("[user] adds \a [W] to [src]!", "You add \a [W] to [src]!") else if(istype(W, /obj/item/grab)) - if(isxeno(user)) return - var/obj/item/grab/G = W - if(!ismob(G.grabbed_thing)) + if(isxeno(user)) return - var/mob/M = G.grabbed_thing - put_mob(M) + var/obj/item/grab/grabber = W + if(!ismob(grabber.grabbed_thing)) + return + var/mob/grabbed_mob = grabber.grabbed_thing + put_mob(grabbed_mob) - updateUsrDialog() + updateUsrDialog(user) +/obj/structure/machinery/cryo_cell/power_change(area/master_area) + . = ..() + if((occupant || on) && operable()) + update_use_power(USE_POWER_ACTIVE) + update_icon() /obj/structure/machinery/cryo_cell/update_icon() icon_state = initial(icon_state) - icon_state = "[icon_state]-[on ? "on" : "off"]-[occupant ? "occupied" : "empty"]" + var/is_on = on && operable() + icon_state = "[icon_state]-[is_on ? "on" : "off"]-[occupant ? "occupied" : "empty"]" -/obj/structure/machinery/cryo_cell/proc/process_occupant() +/obj/structure/machinery/cryo_cell/Destroy() if(occupant) - if(occupant.stat == DEAD) - return - occupant.bodytemperature += 2*(temperature - occupant.bodytemperature) - occupant.bodytemperature = max(occupant.bodytemperature, temperature) // this is so ugly i'm sorry for doing it i'll fix it later i promise + go_out() + . = ..() + +/obj/structure/machinery/cryo_cell/proc/process_occupant() + if(!occupant) + return + if(!operable()) + return + + occupant.bodytemperature += 2*(temperature - occupant.bodytemperature) + occupant.bodytemperature = max(occupant.bodytemperature, temperature) // this is so ugly i'm sorry for doing it i'll fix it later i promise + + // Warnings if dead + if(occupant.stat == DEAD && ishuman(occupant)) + var/mob/living/carbon/human/human_occupant = occupant + var/old_state = occupant_death_stage + if(world.time > occupant.timeofdeath + human_occupant.revive_grace_period - 1 MINUTES) + occupant_death_stage = DEATH_STAGE_CRITICAL + else if(world.time > occupant.timeofdeath + human_occupant.revive_grace_period - 2.5 MINUTES) + occupant_death_stage = DEATH_STAGE_WARNING + else + occupant_death_stage = DEATH_STAGE_EARLY + if(old_state != occupant_death_stage) + display_message("Patient is critical!", warning = TRUE) + + // Passive healing if alive and cold enough + if(occupant.stat != DEAD) occupant.recalculate_move_delay = TRUE occupant.set_stat(UNCONSCIOUS) if(occupant.bodytemperature < T0C) @@ -202,22 +238,39 @@ var/heal_brute = occupant.getBruteLoss() ? min(1, 20/occupant.getBruteLoss()) : 0 var/heal_fire = occupant.getFireLoss() ? min(1, 20/occupant.getFireLoss()) : 0 occupant.heal_limb_damage(heal_brute,heal_fire) - var/has_cryo = occupant.reagents.get_reagent_amount("cryoxadone") >= 1 - var/has_clonexa = occupant.reagents.get_reagent_amount("clonexadone") >= 1 - var/has_cryo_medicine = has_cryo || has_clonexa - if(beaker && !has_cryo_medicine) - beaker.reagents.trans_to(occupant, 1, 10) - beaker.reagents.reaction(occupant) - if(!occupant.getBruteLoss(TRUE) && !occupant.getFireLoss(TRUE) && !occupant.getCloneLoss() && autoeject) //release the patient automatically when brute and burn are handled on non-robotic limbs - display_message("external wounds are") + + // Chemical healing if cryo meds are involved + if(beaker && occupant.reagents && beaker.reagents) + var/occupant_has_cryo_meds = occupant.reagents.get_reagent_amount("cryoxadone") >= 1 || occupant.reagents.get_reagent_amount("clonexadone") >= 1 + var/beaker_has_cryo_meds = beaker.reagents.get_reagent_amount("cryoxadone") >= 1 || beaker.reagents.get_reagent_amount("clonexadone") >= 1 + + // To administer, either the occupant has cryo meds and the beaker doesn't or vice versa (not both) + var/can_administer = (occupant_has_cryo_meds ^ beaker_has_cryo_meds) && length(beaker.reagents.reagent_list) + if(can_administer && occupant_has_cryo_meds) + // If its the case of the occupant has cryo meds and not the beaker, we need to pace out the dosage + // So lets make sure they don't already have some of the beaker drugs + for(var/datum/reagent/cur_beaker_reagent in beaker.reagents.reagent_list) + for(var/datum/reagent/cur_occupant_reagent in occupant.reagents.reagent_list) + if(cur_beaker_reagent.id == cur_occupant_reagent.id) + can_administer = FALSE + break + + if(can_administer) + beaker.reagents.trans_to(occupant, 5) + beaker.reagents.reaction(occupant, permeable_in_mobs = FALSE) + + if(autoeject) + //release the patient automatically when brute and burn are handled on non-robotic limbs + if(!occupant.getBruteLoss(TRUE) && !occupant.getFireLoss(TRUE) && !occupant.getCloneLoss()) + display_message("Patient's external wounds are healed.") go_out(TRUE) return - if(occupant.health >= 100 && autoeject) - display_message("external wounds are") + if(occupant.health >= occupant.maxHealth) + display_message("Patient's external wounds are healed.") go_out(TRUE) return -/obj/structure/machinery/cryo_cell/proc/go_out(auto_eject = null, dead = null) +/obj/structure/machinery/cryo_cell/proc/go_out(auto_eject = FALSE, dead = FALSE) if(!(occupant)) return if(occupant.client) @@ -235,66 +288,72 @@ if(occupant.bodytemperature < 261 && occupant.bodytemperature >= 70) occupant.bodytemperature = 261 occupant.recalculate_move_delay = TRUE - occupant = null if(auto_eject) //Turn off and announce if auto-ejected because patient is recovered or dead. on = FALSE if(release_notice) //If auto-release notices are on as it should be, let the doctors know what's up - playsound(src.loc, 'sound/machines/ping.ogg', 100, 14) - var/reason = "Reason for release: Patient recovery." + var/reason = "Reason for release: Patient recovery." if(dead) - reason = "Reason for release: Patient death." - ai_silent_announcement("Patient [occupant] has been automatically released from \the [src] at: [get_area(occupant)]. [reason]", MED_FREQ) + reason = "Reason for release: Patient death." + ai_silent_announcement("Patient [occupant] has been automatically released from [src] at: [sanitize_area((get_area(occupant))?.name)]. [reason]", ":m") + occupant = null update_use_power(USE_POWER_IDLE) update_icon() return -/obj/structure/machinery/cryo_cell/proc/put_mob(mob/living/carbon/M as mob) +/obj/structure/machinery/cryo_cell/proc/put_mob(mob/living/carbon/cur_mob) if(inoperable()) to_chat(usr, SPAN_DANGER("The cryo cell is not functioning.")) return - if(!istype(M) || isxeno(M)) - to_chat(usr, SPAN_DANGER("The cryo cell cannot handle such a lifeform!")) + if(!istype(cur_mob) || isxeno(cur_mob)) + to_chat(usr, SPAN_DANGER("The cryo cell cannot handle such a lifeform!")) return if(occupant) - to_chat(usr, SPAN_DANGER("The cryo cell is already occupied!")) + to_chat(usr, SPAN_DANGER("The cryo cell is already occupied!")) return - if(M.abiotic()) + if(cur_mob.abiotic()) to_chat(usr, SPAN_DANGER("Subject may not have abiotic items on.")) return - if(do_after(usr, 20, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) - to_chat(usr, SPAN_NOTICE("You move [M.name] inside the cryo cell.")) - M.forceMove(src) - if(M.health >= -100 && (M.health <= 0 || M.sleeping)) - to_chat(M, SPAN_NOTICE("You feel cold liquid surround you. Your skin starts to freeze up.")) - occupant = M + if(do_after(usr, 2 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) + visible_message(SPAN_NOTICE("[usr] moves [usr == cur_mob ? "" : "[cur_mob] "]inside the cryo cell.")) + cur_mob.forceMove(src) + if(cur_mob.health >= HEALTH_THRESHOLD_DEAD && (cur_mob.health <= 0 || cur_mob.sleeping)) + to_chat(cur_mob, SPAN_NOTICE("You feel cold liquid surround you. Your skin starts to freeze up.")) + occupant = cur_mob + occupant_death_stage = DEATH_STAGE_NONE update_use_power(USE_POWER_ACTIVE) update_icon() return TRUE -/obj/structure/machinery/cryo_cell/proc/display_message(msg) - playsound(src.loc, 'sound/machines/ping.ogg', 25, 1) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("\The [src] pings: Patient's " + msg + " healed.")]") +/obj/structure/machinery/cryo_cell/proc/display_message(msg, silent = FALSE, warning = FALSE) + if(!silent) + if(warning) + playsound(loc, 'sound/machines/twobeep.ogg', 40) + else + playsound(loc, 'sound/machines/ping.ogg', 25, 1) + visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] [warning ? "beeps" : "pings"]: [msg]")]") /obj/structure/machinery/cryo_cell/verb/move_eject() set name = "Eject occupant" set category = "Object" set src in oview(1) if(usr == occupant)//If the user is inside the tube... - if(usr.stat == 2)//and he's not dead.... + if(usr.stat == DEAD)//and he's not dead.... return - if(alert(usr, "Would you like to activate the ejection sequence of the cryo cell? Healing may be in progress.", "Confirm", "Yes", "No") == "Yes") + if(tgui_alert(usr, "Would you like to activate the ejection sequence of the cryo cell? Healing may be in progress.", "Confirm", list("Yes", "No")) == "Yes") to_chat(usr, SPAN_NOTICE("Cryo cell release sequence activated. This will take thirty seconds.")) - visible_message(SPAN_WARNING ("The cryo cell's tank starts draining as its ejection lights blare!")) - sleep(300) - if(!src || !usr || !occupant || (occupant != usr)) //Check if someone's released/replaced/bombed him already - return - go_out()//and release him from the eternal prison. - else - if(usr.stat != 0) - return - go_out() - return + visible_message(SPAN_WARNING("The cryo cell's tank starts draining as its ejection lights blare!")) + addtimer(CALLBACK(src, PROC_REF(finish_eject), usr), 30 SECONDS, TIMER_UNIQUE|TIMER_NO_HASH_WAIT) + else + if(usr.stat != CONSCIOUS) + return + go_out() + +/obj/structure/machinery/cryo_cell/proc/finish_eject(mob/original) + //Check if someone's released/replaced/bombed him already + if(QDELETED(src) || QDELETED(original) || !occupant || occupant != original) + return + go_out()//and release him from the eternal prison. /obj/structure/machinery/cryo_cell/verb/move_inside() set name = "Move Inside" @@ -309,8 +368,8 @@ //clickdrag code - "resist to get out" code is in living_verbs.dm /obj/structure/machinery/cryo_cell/MouseDrop_T(mob/target, mob/user) . = ..() - var/mob/living/H = user - if(!istype(H) || target != user) //cant make others get in. grab-click for this + var/mob/living/living_mob = user + if(!istype(living_mob) || target != user) //cant make others get in. grab-click for this return put_mob(target) @@ -324,3 +383,8 @@ /datum/data/function/proc/display() return + +#undef DEATH_STAGE_NONE +#undef DEATH_STAGE_EARLY +#undef DEATH_STAGE_WARNING +#undef DEATH_STAGE_CRITICAL diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 568c36e2c5..5d94c700b1 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -113,7 +113,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li else if(href_list["item"]) - if(frozen_items_for_type.len == 0) + if(length(frozen_items_for_type) == 0) to_chat(user, SPAN_WARNING("There is nothing to recover from storage.")) return @@ -132,7 +132,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li else if(href_list["allitems"]) - if(frozen_items_for_type.len == 0) + if(length(frozen_items_for_type) == 0) to_chat(user, SPAN_WARNING("There is nothing to recover from storage.")) return @@ -332,35 +332,19 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li dept_console += A A.moveToNullspace() + var/datum/job/job = GET_MAPPED_ROLE(occupant.job) if(ishuman(occupant)) var/mob/living/carbon/human/H = occupant + job.on_cryo(H) if(H.assigned_squad) var/datum/squad/S = H.assigned_squad S.forget_marine_in_squad(H) - var/datum/job/J = GET_MAPPED_ROLE(H.job) - if(istype(J, /datum/job/marine/specialist)) - //we make the set this specialist took if any available again - if(H.skills) - var/set_name - switch(H.skills.get_skill_level(SKILL_SPEC_WEAPONS)) - if(SKILL_SPEC_ROCKET) - set_name = "Demolitionist Set" - if(SKILL_SPEC_GRENADIER) - set_name = "Heavy Grenadier Set" - if(SKILL_SPEC_PYRO) - set_name = "Pyro Set" - if(SKILL_SPEC_SCOUT) - set_name = "Scout Set" - if(SKILL_SPEC_SNIPER) - set_name = "Sniper Set" - - if(set_name && !available_specialist_sets.Find(set_name)) - available_specialist_sets += set_name - - SSticker.mode.latejoin_tally-- //Cryoing someone out removes someone from the Marines, blocking further larva spawns until accounted for + + //Cryoing someone out removes someone from the Marines, blocking further larva spawns until accounted for + SSticker.mode.latejoin_update(job, -1) //Handle job slot/tater cleanup. - RoleAuthority.free_role(GET_MAPPED_ROLE(occupant.job), TRUE) + GLOB.RoleAuthority.free_role(GET_MAPPED_ROLE(occupant.job), TRUE) var/occupant_ref = WEAKREF(occupant) //Delete them from datacore. @@ -396,30 +380,31 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li stop_processing() /obj/structure/machinery/cryopod/attackby(obj/item/W, mob/living/user) - + if(isxeno(user)) + return FALSE if(istype(W, /obj/item/grab)) - if(isxeno(user)) return var/obj/item/grab/G = W if(occupant) to_chat(user, SPAN_WARNING("[src] is occupied.")) - return + return FALSE if(!isliving(G.grabbed_thing)) - return + return FALSE - var/willing = null //We don't want to allow people to be forced into despawning. + var/willing = FALSE //We don't want to allow people to be forced into despawning. var/mob/living/M = G.grabbed_thing if(isxeno(M)) to_chat(user, SPAN_WARNING("There is no way [src] will accept [M]!")) - return + return FALSE if(M.client) if(alert(M,"Would you like to enter cryosleep?", , "Yes", "No") == "Yes") - if(!M || !G || !G.grabbed_thing) return - willing = 1 + if(!M || !G || !G.grabbed_thing) + return FALSE + willing = TRUE else - willing = 1 + willing = TRUE if(willing) @@ -430,7 +415,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li if(!M || !G || !G.grabbed_thing) return if(occupant) to_chat(user, SPAN_WARNING("[src] is occupied.")) - return + return FALSE go_in_cryopod(M) @@ -440,6 +425,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li //Despawning occurs when process() is called with an occupant without a client. add_fingerprint(user) + return TRUE /obj/structure/machinery/cryopod/relaymove(mob/user) if(user.is_mob_incapacitated(TRUE)) @@ -523,7 +509,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li if(mob.client) to_chat(mob, SPAN_NOTICE("You feel cool air surround you. You go numb as your senses turn inward.")) to_chat(mob, SPAN_BOLDNOTICE("If you log out or close your client now, your character will permanently removed from the round in 10 minutes. If you ghost, timer will be decreased to 2 minutes.")) - if(!is_admin_level(src.z)) // Set their queue time now because the client has to actually leave to despawn and at that point the client is lost + if(!should_block_game_interaction(src)) // Set their queue time now because the client has to actually leave to despawn and at that point the client is lost mob.client.player_details.larva_queue_time = max(mob.client.player_details.larva_queue_time, world.time) var/area/location = get_area(src) if(mob.job != GET_MAPPED_ROLE(JOB_SQUAD_MARINE)) @@ -540,6 +526,7 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li icon_state = "body_scanner_open" set_light(0) playsound(src, 'sound/machines/pod_open.ogg', 30) + SEND_SIGNAL(src, COMSIG_CRYOPOD_GO_OUT) #ifdef OBJECTS_PROXY_SPEECH // Transfers speech to occupant @@ -558,3 +545,40 @@ GLOBAL_LIST_INIT(frozen_items, list(SQUAD_MARINE_1 = list(), SQUAD_MARINE_2 = li return move_inside(target) + + +/obj/structure/machinery/cryopod/tutorial + silent_exit = TRUE + +/obj/structure/machinery/cryopod/tutorial/process() + return + +/obj/structure/machinery/cryopod/tutorial/go_in_cryopod(mob/mob, silent = FALSE, del_them = TRUE) + if(occupant) + return + mob.forceMove(src) + occupant = mob + icon_state = "body_scanner_closed" + set_light(2) + time_entered = world.time + if(del_them) + despawn_occupant() + +/obj/structure/machinery/cryopod/tutorial/despawn_occupant() + SSminimaps.remove_marker(occupant) + + if(ishuman(occupant)) + var/mob/living/carbon/human/man = occupant + man.species.handle_cryo(man) + + icon_state = "body_scanner_open" + set_light(0) + + + var/mob/new_player/new_player = new + + if(!occupant.mind) + occupant.mind_initialize() + + occupant.mind.transfer_to(new_player) + SEND_SIGNAL(occupant, COMSIG_MOB_END_TUTORIAL) diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm index 687882d9d7..7907c9f289 100644 --- a/code/game/machinery/deployable.dm +++ b/code/game/machinery/deployable.dm @@ -51,11 +51,11 @@ else switch(W.damtype) if("fire") - src.health -= W.force * 0.75 + health -= W.force * W.demolition_mod * 0.75 if("brute") - src.health -= W.force * 0.5 - if (src.health <= 0) - src.explode() + health -= W.force * W.demolition_mod * 0.5 + if (health <= 0) + explode() ..() /obj/structure/machinery/deployable/barrier/ex_act(severity) diff --git a/code/game/machinery/door_control.dm b/code/game/machinery/door_control.dm index 5d6c66309d..266a58f620 100644 --- a/code/game/machinery/door_control.dm +++ b/code/game/machinery/door_control.dm @@ -61,6 +61,9 @@ var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(ship_id) if (!istype(shuttle)) return + var/obj/structure/machinery/computer/shuttle/dropship/flight/comp = shuttle.getControlConsole() + if(comp?.dropship_control_lost) + return if(is_mainship_level(z)) // on the almayer return @@ -95,7 +98,7 @@ D.safe = 1 /obj/structure/machinery/door_control/proc/handle_pod() - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == id) if(M.density) INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/door, open)) @@ -176,9 +179,9 @@ flick(initial(icon_state) + "-denied",src) return - // safety first - if(!is_mainship_level(SSshuttle.vehicle_elevator.z)) - flick(initial(icon_state) + "-denied",src) + // If someone's trying to lower the railings but the elevator isn't in the vehicle bay. + if(!desiredstate && !is_mainship_level(SSshuttle.vehicle_elevator.z)) + flick(initial(icon_state) + "-denied", src) // Safety first! return use_power(5) @@ -187,7 +190,7 @@ add_fingerprint(user) var/effective = 0 - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == id) effective = 1 spawn() @@ -234,3 +237,31 @@ desiredstate = !desiredstate +/obj/structure/machinery/door_control/cl + req_access_txt = "200" +// seperating quarter and office because we might want to allow more access to the office than quarter in the future. +/obj/structure/machinery/door_control/cl/office +/obj/structure/machinery/door_control/cl/office/door + name = "Office Door Shutter" + id = "cl_office_door" +/obj/structure/machinery/door_control/cl/office/window + name = "Office Windows Shutters" + id = "cl_office_windows" +/obj/structure/machinery/door_control/cl/office/divider + name = "Room Divider" + id = "RoomDivider" +//special button that unlock the cl lock on is evac pod door bypassing general lockdown. +/obj/structure/machinery/door_control/cl/office/evac + name = "Evac Pod Door Control" + id = "cl_evac" + normaldoorcontrol = 1 +/obj/structure/machinery/door_control/cl/quarter +/obj/structure/machinery/door_control/cl/quarter/officedoor + name = "Quarter Door Shutter" + id = "cl_quarter_door" +/obj/structure/machinery/door_control/cl/quarter/backdoor + name = "Maintenance Door Shutter" + id = "cl_quarter_maintenance" +/obj/structure/machinery/door_control/cl/quarter/windows + name = "Quarter Windows Shutters" + id = "cl_quarter_windows" diff --git a/code/game/machinery/door_display/door_display.dm b/code/game/machinery/door_display/door_display.dm index 7462b1f1b7..529ac6f959 100644 --- a/code/game/machinery/door_display/door_display.dm +++ b/code/game/machinery/door_display/door_display.dm @@ -31,11 +31,11 @@ get_targets() /obj/structure/machinery/door_display/proc/get_targets() - for(var/obj/structure/machinery/door/D in machines) + for(var/obj/structure/machinery/door/D in GLOB.machines) if (D.id == id) targets += D - if(targets.len == 0) + if(length(targets) == 0) stat |= BROKEN update_icon() @@ -199,11 +199,11 @@ /obj/structure/machinery/door_display/research_cell/get_targets() ..() - for(var/obj/structure/machinery/flasher/F in machines) + for(var/obj/structure/machinery/flasher/F in GLOB.machines) if(F.id == id) targets += F if(has_wall_divider) - for(var/turf/closed/wall/almayer/research/containment/wall/divide/W in orange(src, 8)) + for(var/turf/closed/wall/almayer/research/containment/wall/divide/W in ORANGE_TURFS(8, src)) targets += W /obj/structure/machinery/door_display/research_cell/Destroy() diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index bebac8e56c..9ac9765371 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -76,7 +76,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( /obj/structure/machinery/door/airlock/Destroy() QDEL_NULL_LIST(attached_signallers) - QDEL_NULL(closeOther) + closeOther = null QDEL_NULL(electronics) return ..() @@ -439,7 +439,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( return if(panel_open) - if(ishuman(usr) && !skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(ishuman(usr) && !skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You look into \the [src]'s access panel and can only see a jumbled mess of colored wires...")) return FALSE @@ -483,7 +483,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( add_fingerprint(usr) if((in_range(src, usr) && istype(loc, /turf)) && panel_open) - if(ishuman(usr) && !skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(ishuman(usr) && !skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about [src]'s wiring!")) return FALSE @@ -557,7 +557,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( if(istype(attacking_item, /obj/item/clothing/mask/cigarette)) if(isElectrified()) var/obj/item/clothing/mask/cigarette/L = attacking_item - L.light(SPAN_NOTICE("[user] lights their [L] on an electrical arc from the [src]")) + L.light(SPAN_NOTICE("[user] lights their [L] on an electrical arc from [src]")) return if(!isRemoteControlling(user)) @@ -568,7 +568,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( add_fingerprint(user) if(istype(attacking_item, /obj/item/weapon/zombie_claws) && (welded || locked)) - user.visible_message(SPAN_NOTICE("[user] starts tearing into the door on the [src]!"), \ + user.visible_message(SPAN_NOTICE("[user] starts tearing into the door on [src]!"), \ SPAN_NOTICE("You start prying your hand into the gaps of the door with your fingers... This will take about 30 seconds."), \ SPAN_NOTICE("You hear tearing noises!")) @@ -649,7 +649,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( else if(attacking_item.pry_capable) if(attacking_item.pry_capable == IS_PRY_CAPABLE_CROWBAR && panel_open && welded) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't seem to know how to deconstruct machines.")) return playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) @@ -677,9 +677,9 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( airlock_electronics = new/obj/item/circuitboard/airlock(loc) if(!req_access || !req_one_access) check_access() - if(req_access.len) + if(length(req_access)) airlock_electronics.conf_access = req_access - else if(req_one_access.len) + else if(length(req_one_access)) airlock_electronics.conf_access = req_one_access airlock_electronics.one_access = TRUE else @@ -754,9 +754,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( for(var/turf/turf in locs) for(var/mob/living/M in turf) - if(isborg(M)) - M.apply_damage(DOOR_CRUSH_DAMAGE, BRUTE) - else if(HAS_TRAIT(M, TRAIT_SUPER_STRONG)) + if(HAS_TRAIT(M, TRAIT_SUPER_STRONG)) M.apply_damage(DOOR_CRUSH_DAMAGE, BRUTE) else M.apply_damage(DOOR_CRUSH_DAMAGE, BRUTE) @@ -817,7 +815,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( /obj/structure/machinery/door/airlock/LateInitialize() . = ..() if(closeOtherId != null) - for(var/obj/structure/machinery/door/airlock/A in machines) + for(var/obj/structure/machinery/door/airlock/A in GLOB.machines) if(A.closeOtherId == closeOtherId && A != src) closeOther = A break @@ -833,7 +831,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( return /obj/structure/machinery/door/airlock/allowed(mob/M) - if(isWireCut(AIRLOCK_WIRE_IDSCAN) || (maint_all_access && check_access_list(list(ACCESS_MARINE_MAINT)))) + if(isWireCut(AIRLOCK_WIRE_IDSCAN) || (GLOB.maint_all_access && check_access_list(list(ACCESS_MARINE_MAINT)))) return TRUE return ..(M) @@ -845,7 +843,7 @@ GLOBAL_LIST_INIT(airlock_wire_descriptions, list( for(var/i in resin_door_shmushereds) if(istype(x,i)) //I would like to just use a if(locate() in ) here but Im not gonna add every child to GLOB.resin_door_shmushereds so it works playsound(loc, "alien_resin_break", 25) - visible_message(SPAN_WARNING("The [src.name] closes on the [x], shmushing it!")) + visible_message(SPAN_WARNING("The [src.name] closes on [x], shmushing it!")) if(isturf(x)) var/turf/closed/wall/resin_wall_to_destroy = x resin_wall_to_destroy.dismantle_wall() diff --git a/code/game/machinery/doors/airlock_control.dm b/code/game/machinery/doors/airlock_control.dm index b20a052d26..b656250dab 100644 --- a/code/game/machinery/doors/airlock_control.dm +++ b/code/game/machinery/doors/airlock_control.dm @@ -128,11 +128,13 @@ if(!forced) send_status() + /obj/structure/machinery/door/airlock/close(forced) . = ..() if(!forced) send_status() + /obj/structure/machinery/door/airlock/proc/set_frequency(new_frequency) SSradio.remove_object(src, frequency) if(new_frequency) diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 968ef59ef3..482d466226 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -905,6 +905,9 @@ /obj/structure/machinery/door/airlock/hatch/cockpit/two icon = 'icons/obj/structures/doors/dropship2_pilot.dmi' +/obj/structure/machinery/door/airlock/hatch/cockpit/three + icon = 'icons/obj/structures/doors/dropship3_pilot.dmi' + /obj/structure/machinery/door/airlock/hatch/cockpit/four icon = 'icons/obj/structures/doors/dropship4_pilot.dmi' diff --git a/code/game/machinery/doors/brig_system.dm b/code/game/machinery/doors/brig_system.dm index f36e5b72c2..718ec81798 100644 --- a/code/game/machinery/doors/brig_system.dm +++ b/code/game/machinery/doors/brig_system.dm @@ -279,7 +279,7 @@ var/obj/item/card/id/id_card = human.get_idcard() if (id_card) - if ((id_card.paygrade in GLOB.co_paygrades) || ((id_card.paygrade in GLOB.platco_paygrades)) || (id_card.paygrade in GLOB.highcom_paygrades) || (id_card.paygrade == "PvI")) + if ((id_card.paygrade in GLOB.co_paygrades) || ((id_card.paygrade in GLOB.platco_paygrades)) || (id_card.paygrade in GLOB.uscm_highcom_paygrades)) return TRUE return FALSE @@ -290,15 +290,15 @@ addtimer(CALLBACK(src, PROC_REF(search_for_components)), 20) /obj/structure/machinery/brig_cell/proc/search_for_components() - for(var/obj/structure/machinery/door/window/brigdoor/M in machines) + for(var/obj/structure/machinery/door/window/brigdoor/M in GLOB.machines) if(M.id == id) targets += M - for(var/obj/structure/machinery/flasher/F in machines) + for(var/obj/structure/machinery/flasher/F in GLOB.machines) if(F.id == id) targets += F - for(var/obj/structure/machinery/door/poddoor/almayer/locked/P in machines) + for(var/obj/structure/machinery/door/poddoor/almayer/locked/P in GLOB.machines) if(P.id == id) targets += P @@ -390,6 +390,14 @@ name = "Cell 4" id = "Cell 4" +/obj/structure/machinery/brig_cell/cell_5 + name = "Cell 5" + id = "Cell 5" + +/obj/structure/machinery/brig_cell/cell_6 + name = "Cell 6" + id = "Cell 6" + /obj/structure/machinery/brig_cell/perma_1 name = "Perma 1" id = "Perma 1" diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index 2e79604e87..d6d4e6fe6d 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -87,10 +87,7 @@ return located_turfs /obj/structure/machinery/door/proc/borders_space() - for(var/turf/target in range(1, src)) - if(istype(target, /turf/open/space)) - return TRUE - return FALSE + return !!(locate(/turf/open/space) in range(1, src)) /obj/structure/machinery/door/Collided(atom/movable/AM) if(panel_open || operating) diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index d236b96166..f3fba382fb 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -1,7 +1,4 @@ // Door open and close constants -/var/const - CLOSED = 2 - #define FIREDOOR_MAX_PRESSURE_DIFF 25 // kPa #define FIREDOOR_MAX_TEMP 50 // °C #define FIREDOOR_MIN_TEMP 0 @@ -57,7 +54,7 @@ A.all_doors.Add(src) areas_added = list(A) - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) A = get_area(get_step(src,direction)) if(istype(A) && !(A in areas_added)) A.all_doors.Add(src) @@ -78,7 +75,7 @@ . += SPAN_WARNING("WARNING: Current pressure differential is [pdiff]kPa! Opening door may result in injury!") . += "Sensor readings:" - for(var/index = 1; index <= tile_info.len; index++) + for(var/index = 1; index <= length(tile_info); index++) var/o = "  " switch(index) if(1) @@ -104,10 +101,10 @@ o += "[pressure]kPa" . += o - if(islist(users_to_open) && users_to_open.len) + if(islist(users_to_open) && length(users_to_open)) var/users_to_open_string = users_to_open[1] - if(users_to_open.len >= 2) - for(var/i = 2 to users_to_open.len) + if(length(users_to_open) >= 2) + for(var/i = 2 to length(users_to_open)) users_to_open_string += ", [users_to_open[i]]" . += "These people have opened \the [src] during an alert: [users_to_open_string]." @@ -277,8 +274,8 @@ overlays += "palert" if(dir_alerts) for(var/d=1;d<=4;d++) - var/cdir = cardinal[d] - for(var/i=1;i<=ALERT_STATES.len;i++) + var/cdir = GLOB.cardinals[d] + for(var/i=1;i<=length(ALERT_STATES);i++) if(dir_alerts[d] & (1<<(i-1))) overlays += new/icon(icon,"alert_[ALERT_STATES[i]]", dir=cdir) else diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm index 3d993ff637..192bca6323 100644 --- a/code/game/machinery/doors/multi_tile.dm +++ b/code/game/machinery/doors/multi_tile.dm @@ -243,6 +243,7 @@ var/queen_pryable = TRUE var/obj/docking_port/mobile/marine_dropship/linked_dropship + /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ex_act(severity) return @@ -261,14 +262,14 @@ var/datum/door_controller/single/control = linked_dropship.door_control.door_controllers[direction] if (control.status != SHUTTLE_DOOR_BROKEN) return ..() - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) && !skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED)) to_chat(user, SPAN_WARNING("You don't seem to understand how to restore a remote connection to [src].")) return if(user.action_busy) return to_chat(user, SPAN_WARNING("You begin to restore the remote connection to [src].")) - if(!do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) + if(!do_after(user, (skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) ? 5 SECONDS : 8 SECONDS), INTERRUPT_ALL, BUSY_ICON_BUILD)) to_chat(user, SPAN_WARNING("You fail to restore a remote connection to [src].")) return unlock(TRUE) @@ -317,7 +318,6 @@ if(control) control.status = SHUTTLE_DOOR_BROKEN unlock(TRUE) - open(1) open(TRUE) lock(TRUE) @@ -329,9 +329,9 @@ name = "\improper Normandy cargo door" icon = 'icons/obj/structures/doors/dropship2_cargo.dmi' -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4 - name = "\improper Midway cargo door" - icon = 'icons/obj/structures/doors/dropship4_cargo.dmi' +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3 + name = "\improper Saipan cargo door" + icon = 'icons/obj/structures/doors/dropship3_cargo.dmi' /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside width = 2 @@ -340,13 +340,21 @@ name = "\improper Alamo crew hatch" icon = 'icons/obj/structures/doors/dropship1_side2.dmi' -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1/midway - name = "\improper Midway crew hatch" - /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2 name = "\improper Normandy crew hatch" icon = 'icons/obj/structures/doors/dropship2_side2.dmi' +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds3 + name = "\improper Saipan crew hatch" + icon = 'icons/obj/structures/doors/dropship3_side2.dmi' + +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4 + name = "\improper Midway cargo door" + icon = 'icons/obj/structures/doors/dropship4_cargo.dmi' + +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1/midway + name = "\improper Midway crew hatch" + /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2/cyclone name = "\improper Cyclone crew hatch" @@ -637,4 +645,3 @@ icon = 'icons/obj/structures/doors/2x1almayerdoor_glass.dmi' opacity = FALSE glass = TRUE - diff --git a/code/game/machinery/doors/poddoor/almayer.dm b/code/game/machinery/doors/poddoor/almayer.dm new file mode 100644 index 0000000000..4aa6fbe3f3 --- /dev/null +++ b/code/game/machinery/doors/poddoor/almayer.dm @@ -0,0 +1,63 @@ +/obj/structure/machinery/door/poddoor/almayer + icon = 'icons/obj/structures/doors/blastdoors_shutters.dmi' + openspeed = 4 //shorter open animation. + var/vehicle_resistant = TRUE + tiles_with = list( + /obj/structure/window/framed/almayer, + /obj/structure/machinery/door/airlock, + ) + +/obj/structure/machinery/door/poddoor/almayer/Initialize() + . = ..() + return INITIALIZE_HINT_LATELOAD + +/obj/structure/machinery/door/poddoor/almayer/LateInitialize() + . = ..() + relativewall_neighbours() + +/obj/structure/machinery/door/poddoor/almayer/open + density = FALSE + +/obj/structure/machinery/door/poddoor/almayer/blended + icon_state = "almayer_pdoor1" + base_icon_state = "almayer_pdoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/open + density = FALSE + +/obj/structure/machinery/door/poddoor/almayer/blended/white + icon_state = "w_almayer_pdoor1" + base_icon_state = "w_almayer_pdoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/white/open + density = FALSE + +/obj/structure/machinery/door/poddoor/almayer/blended/aicore + icon_state = "aidoor1" + base_icon_state = "aidoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/aicore/open + density = FALSE + +/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore + icon_state = "w_aidoor1" + base_icon_state = "w_aidoor" + +/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore/open + density = FALSE + +/obj/structure/machinery/door/poddoor/almayer/locked + unacidable = TRUE + +/obj/structure/machinery/door/poddoor/almayer/locked/attackby(obj/item/C as obj, mob/user as mob) + if(HAS_TRAIT(C, TRAIT_TOOL_CROWBAR)) + return + ..() + +/obj/structure/machinery/door/poddoor/almayer/closed + density = TRUE + opacity = TRUE + +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor + density = TRUE + opacity = TRUE diff --git a/code/game/machinery/doors/poddoor/poddoor.dm b/code/game/machinery/doors/poddoor/poddoor.dm new file mode 100644 index 0000000000..a9046ddf42 --- /dev/null +++ b/code/game/machinery/doors/poddoor/poddoor.dm @@ -0,0 +1,120 @@ +/obj/structure/machinery/door/poddoor + name = "\improper Podlock" + desc = "That looks like it doesn't open easily." + icon = 'icons/obj/structures/doors/rapid_pdoor.dmi' + icon_state = "pdoor1" + var/base_icon_state = "pdoor" + id = 1 + dir = NORTH + health = 0 + layer = PODDOOR_CLOSED_LAYER + open_layer = PODDOOR_OPEN_LAYER + closed_layer = PODDOOR_CLOSED_LAYER + ///How many tiles the shutter occupies + var/shutter_length = 1 + +/obj/structure/machinery/door/poddoor/Initialize() + . = ..() + if(density) + set_opacity(1) + else + set_opacity(0) + update_icon() + +/obj/structure/machinery/door/poddoor/update_icon() + if(density) + icon_state = "[base_icon_state]1" + else + icon_state = "[base_icon_state]0" + +/obj/structure/machinery/door/poddoor/Collided(atom/movable/AM) + if(!density) + return ..() + else + return 0 + +/obj/structure/machinery/door/poddoor/attackby(obj/item/W, mob/user) + add_fingerprint(user) + if(!W.pry_capable) + return + if(density && (stat & NOPOWER) && !operating && !unacidable) + spawn(0) + operating = 1 + flick("[base_icon_state]c0", src) + icon_state = "[base_icon_state]0" + set_opacity(0) + sleep(15) + density = FALSE + operating = 0 + +/obj/structure/machinery/door/poddoor/attack_alien(mob/living/carbon/xenomorph/X) + if((stat & NOPOWER) && density && !operating && !unacidable) + INVOKE_ASYNC(src, PROC_REF(pry_open), X) + return XENO_ATTACK_ACTION + +/obj/structure/machinery/door/poddoor/proc/pry_open(mob/living/carbon/xenomorph/X, time = 4 SECONDS) + if(X.action_busy) + return + + X.visible_message(SPAN_DANGER("[X] begins prying [src] open."),\ + SPAN_XENONOTICE("You start prying [src] open."), max_distance = 3) + + playsound(loc, 'sound/effects/metal_creaking.ogg', 25, TRUE) + + if(!do_after(X, time, INTERRUPT_ALL, BUSY_ICON_HOSTILE, src, INTERRUPT_ALL)) + to_chat(X, "You stop prying [src] open.") + return + + X.visible_message(SPAN_DANGER("[X] pries open [src]."), \ + SPAN_XENONOTICE("You pry open [src]."), max_distance = 3) + + open() + return TRUE + + +/obj/structure/machinery/door/poddoor/try_to_activate_door(mob/user) + return + +/obj/structure/machinery/door/poddoor/open() + if(operating) //doors can still open when emag-disabled + return + + if(!opacity) + return TRUE + + operating = TRUE + + playsound(loc, 'sound/machines/blastdoor.ogg', 20, 0) + flick("[base_icon_state]c0", src) + icon_state = "[base_icon_state]0" + set_opacity(0) + + addtimer(CALLBACK(src, PROC_REF(finish_open)), openspeed) + return TRUE + +/obj/structure/machinery/door/poddoor/close() + if(operating) + return + if(opacity == initial(opacity)) + return + + operating = TRUE + playsound(loc, 'sound/machines/blastdoor.ogg', 20, 0) + + layer = closed_layer + flick("[base_icon_state]c1", src) + icon_state = "[base_icon_state]1" + density = TRUE + set_opacity(initial(opacity)) + + addtimer(CALLBACK(src, PROC_REF(finish_close)), openspeed) + return + +/obj/structure/machinery/door/poddoor/finish_close() + operating = FALSE + +/obj/structure/machinery/door/poddoor/filler_object + name = "" + icon = null + icon_state = "" + unacidable = TRUE diff --git a/code/game/machinery/doors/shutters.dm b/code/game/machinery/doors/poddoor/shutters/shutters.dm similarity index 73% rename from code/game/machinery/doors/shutters.dm rename to code/game/machinery/doors/poddoor/shutters/shutters.dm index 4c9b7beb21..c09daa24e3 100644 --- a/code/game/machinery/doors/shutters.dm +++ b/code/game/machinery/doors/poddoor/shutters/shutters.dm @@ -155,3 +155,44 @@ if(HAS_TRAIT(attacking_item, TRAIT_TOOL_CROWBAR)) return ..() + +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft + name = "Anti-Theft Shutters" + desc = "Secure Storage shutters, they're reinforced against entry attempts." + var/req_level = SEC_LEVEL_RED + +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft/Initialize() + . = ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_SECURITY_LEVEL_CHANGED, PROC_REF(sec_changed)) + +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft/proc/sec_changed(datum/source, new_sec) + SIGNAL_HANDLER + if(new_sec < req_level) + if(density) + return + close() + else + if(!density) + return + open() + +//make a subtype for CL office so it as a proper name. +/obj/structure/machinery/door/poddoor/shutters/almayer/cl + name = "\improper Corporate Liaison Privacy Shutters" +//adding a subtype for CL office to use to secure access to cl office. +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door + id = "cl_office_door" +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window + id = "cl_office_windows" +//adding a subtype for CL quarter to use to secure access to cl quarter.(including seperation with the office) +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor + id = "cl_quarter_maintenance" + dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door + id = "cl_quarter_door" + dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window + id = "cl_quarter_windows" diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor/two_tile.dm similarity index 50% rename from code/game/machinery/doors/poddoor.dm rename to code/game/machinery/doors/poddoor/two_tile.dm index 1ae545ea4e..2435663c84 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor/two_tile.dm @@ -1,118 +1,26 @@ +/obj/structure/machinery/door/poddoor/two_tile + dir = EAST + icon = 'icons/obj/structures/doors/1x2blast_hor.dmi' + shutter_length = 2 + var/obj/structure/machinery/door/poddoor/filler_object/f1 + var/obj/structure/machinery/door/poddoor/filler_object/f2 -/obj/structure/machinery/door/poddoor - name = "\improper Podlock" - desc = "That looks like it doesn't open easily." - icon = 'icons/obj/structures/doors/rapid_pdoor.dmi' - icon_state = "pdoor1" - var/base_icon_state = "pdoor" - id = 1 - dir = NORTH - health = 0 - layer = PODDOOR_CLOSED_LAYER - open_layer = PODDOOR_OPEN_LAYER - closed_layer = PODDOOR_CLOSED_LAYER - ///How many tiles the shutter occupies - var/shutter_length = 1 - -/obj/structure/machinery/door/poddoor/Initialize() - . = ..() - if(density) - set_opacity(1) - else - set_opacity(0) - update_icon() - -/obj/structure/machinery/door/poddoor/update_icon() - if(density) - icon_state = "[base_icon_state]1" - else - icon_state = "[base_icon_state]0" - -/obj/structure/machinery/door/poddoor/Collided(atom/movable/AM) - if(!density) - return ..() - else - return 0 - -/obj/structure/machinery/door/poddoor/attackby(obj/item/W, mob/user) - add_fingerprint(user) - if(!W.pry_capable) - return - if(density && (stat & NOPOWER) && !operating && !unacidable) - spawn(0) - operating = 1 - flick("[base_icon_state]c0", src) - icon_state = "[base_icon_state]0" - set_opacity(0) - sleep(15) - density = FALSE - operating = 0 - -/obj/structure/machinery/door/poddoor/attack_alien(mob/living/carbon/xenomorph/X) - if((stat & NOPOWER) && density && !operating && !unacidable) - INVOKE_ASYNC(src, PROC_REF(pry_open), X) - return XENO_ATTACK_ACTION - -/obj/structure/machinery/door/poddoor/proc/pry_open(mob/living/carbon/xenomorph/X, time = 4 SECONDS) - if(X.action_busy) - return - - X.visible_message(SPAN_DANGER("[X] begins prying [src] open."),\ - SPAN_XENONOTICE("You start prying [src] open."), max_distance = 3) - - playsound(loc, 'sound/effects/metal_creaking.ogg', 25, TRUE) - - if(!do_after(X, time, INTERRUPT_ALL, BUSY_ICON_HOSTILE, src, INTERRUPT_ALL)) - to_chat(X, "You stop prying [src] open.") - return - - X.visible_message(SPAN_DANGER("[X] pries open [src]."), \ - SPAN_XENONOTICE("You pry open [src]."), max_distance = 3) - - open() - return TRUE - - -/obj/structure/machinery/door/poddoor/try_to_activate_door(mob/user) - return - -/obj/structure/machinery/door/poddoor/open() - if(operating) //doors can still open when emag-disabled - return - - if(!opacity) - return TRUE - - operating = TRUE - - playsound(loc, 'sound/machines/blastdoor.ogg', 20, 0) - flick("[base_icon_state]c0", src) - icon_state = "[base_icon_state]0" - set_opacity(0) - - addtimer(CALLBACK(src, PROC_REF(finish_open)), openspeed) - return TRUE - -/obj/structure/machinery/door/poddoor/close() - if(operating) - return - if(opacity == initial(opacity)) - return - - operating = TRUE - playsound(loc, 'sound/machines/blastdoor.ogg', 20, 0) - - layer = closed_layer - flick("[base_icon_state]c1", src) - icon_state = "[base_icon_state]1" - density = TRUE - set_opacity(initial(opacity)) +/obj/structure/machinery/door/poddoor/two_tile/opened + density = FALSE - addtimer(CALLBACK(src, PROC_REF(finish_close)), openspeed) - return +/obj/structure/machinery/door/poddoor/two_tile/Initialize() + . = ..() + f1 = new/obj/structure/machinery/door/poddoor/filler_object (loc) + f2 = new/obj/structure/machinery/door/poddoor/filler_object (get_step(src,dir)) + f1.density = density + f2.density = density + f1.set_opacity(opacity) + f2.set_opacity(opacity) -/obj/structure/machinery/door/poddoor/finish_close() - operating = FALSE +/obj/structure/machinery/door/poddoor/two_tile/Destroy() + QDEL_NULL(f1) + QDEL_NULL(f2) + return ..() /obj/structure/machinery/door/poddoor/two_tile/open() if(!density) @@ -187,30 +95,6 @@ f4.set_opacity(initial(opacity)) ..() -/obj/structure/machinery/door/poddoor/two_tile - dir = EAST - icon = 'icons/obj/structures/doors/1x2blast_hor.dmi' - shutter_length = 2 - var/obj/structure/machinery/door/poddoor/filler_object/f1 - var/obj/structure/machinery/door/poddoor/filler_object/f2 - -/obj/structure/machinery/door/poddoor/two_tile/opened - density = FALSE - -/obj/structure/machinery/door/poddoor/two_tile/Initialize() - . = ..() - f1 = new/obj/structure/machinery/door/poddoor/filler_object (loc) - f2 = new/obj/structure/machinery/door/poddoor/filler_object (get_step(src,dir)) - f1.density = density - f2.density = density - f1.set_opacity(opacity) - f2.set_opacity(opacity) - -/obj/structure/machinery/door/poddoor/two_tile/Destroy() - QDEL_NULL(f1) - QDEL_NULL(f2) - return ..() - /obj/structure/machinery/door/poddoor/two_tile/vertical dir = NORTH icon = 'icons/obj/structures/doors/1x2blast_vert.dmi' @@ -248,12 +132,6 @@ /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened density = FALSE -/obj/structure/machinery/door/poddoor/filler_object - name = "" - icon = null - icon_state = "" - unacidable = TRUE - /obj/structure/machinery/door/poddoor/two_tile/four_tile/secure icon = 'icons/obj/structures/doors/1x4blast_hor_secure.dmi' openspeed = 17 @@ -262,14 +140,6 @@ /obj/structure/machinery/door/poddoor/two_tile/four_tile/secure/opened density = FALSE -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure - icon = 'icons/obj/structures/doors/1x4blast_vert_secure.dmi' - openspeed = 17 - unacidable = TRUE - -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open - density = FALSE - /obj/structure/machinery/door/poddoor/two_tile/four_tile/pivot/Initialize() . = ..() RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(direction_change_move)) @@ -279,6 +149,14 @@ return x -= shutter_length - 1 +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure + icon = 'icons/obj/structures/doors/1x4blast_vert_secure.dmi' + openspeed = 17 + unacidable = TRUE + +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open + density = FALSE + /obj/structure/machinery/door/poddoor/two_tile/secure icon = 'icons/obj/structures/doors/1x2blast_hor.dmi' openspeed = 17 @@ -288,64 +166,3 @@ icon = 'icons/obj/structures/doors/1x2blast_vert.dmi' openspeed = 17 unacidable = TRUE - -/obj/structure/machinery/door/poddoor/almayer - icon = 'icons/obj/structures/doors/blastdoors_shutters.dmi' - openspeed = 4 //shorter open animation. - var/vehicle_resistant = TRUE - tiles_with = list( - /obj/structure/window/framed/almayer, - /obj/structure/machinery/door/airlock, - ) - - -/obj/structure/machinery/door/poddoor/almayer/open - density = FALSE - -/obj/structure/machinery/door/poddoor/almayer/blended - icon_state = "almayer_pdoor1" - base_icon_state = "almayer_pdoor" - -/obj/structure/machinery/door/poddoor/almayer/blended/open - density = FALSE - -/obj/structure/machinery/door/poddoor/almayer/blended/white - icon_state = "w_almayer_pdoor1" - base_icon_state = "w_almayer_pdoor" - -/obj/structure/machinery/door/poddoor/almayer/blended/white/open - density = FALSE - -/obj/structure/machinery/door/poddoor/almayer/Initialize() - . = ..() - addtimer(CALLBACK(src, TYPE_PROC_REF(/atom, relativewall_neighbours)), 10) - -/obj/structure/machinery/door/poddoor/almayer/blended/aicore - icon_state = "aidoor1" - base_icon_state = "aidoor" - -/obj/structure/machinery/door/poddoor/almayer/blended/aicore/open - density = FALSE - -/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore - icon_state = "w_aidoor1" - base_icon_state = "w_aidoor" - -/obj/structure/machinery/door/poddoor/almayer/blended/white_aicore/open - density = FALSE - -/obj/structure/machinery/door/poddoor/almayer/locked - unacidable = TRUE - -/obj/structure/machinery/door/poddoor/almayer/locked/attackby(obj/item/C as obj, mob/user as mob) - if(HAS_TRAIT(C, TRAIT_TOOL_CROWBAR)) - return - ..() - -/obj/structure/machinery/door/poddoor/almayer/closed - density = TRUE - opacity = TRUE - -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor - density = TRUE - opacity = TRUE diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index bd544c5c3f..61727d1fa4 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -15,7 +15,7 @@ /obj/structure/machinery/door/window/Initialize() . = ..() addtimer(CALLBACK(src, PROC_REF(update_icon)), 1) - if (src.req_access && src.req_access.len) + if (LAZYLEN(src.req_access)) src.icon_state = "[src.icon_state]" src.base_state = src.icon_state @@ -105,9 +105,9 @@ ae = new/obj/item/circuitboard/airlock( src.loc ) if(!src.req_access) src.check_access() - if(src.req_access.len) + if(length(src.req_access)) ae.conf_access = src.req_access - else if (src.req_one_access && src.req_one_access.len) + else if (LAZYLEN(src.req_one_access)) ae.conf_access = src.req_one_access ae.one_access = 1 else @@ -125,7 +125,7 @@ /obj/structure/machinery/door/window/bullet_act(obj/projectile/Proj) bullet_ping(Proj) if(Proj.ammo.damage) - take_damage(round(Proj.ammo.damage / 2)) + take_damage(floor(Proj.ammo.damage / 2)) if(Proj.ammo.damage_type == BRUTE) playsound(src.loc, 'sound/effects/Glasshit.ogg', 25, 1) return 1 @@ -189,9 +189,9 @@ ae = new/obj/item/circuitboard/airlock( src.loc ) if(!src.req_access) src.check_access() - if(src.req_access.len) + if(length(src.req_access)) ae.conf_access = src.req_access - else if (src.req_one_access.len) + else if (length(src.req_one_access)) ae.conf_access = src.req_one_access ae.one_access = 1 else @@ -295,12 +295,12 @@ /obj/structure/machinery/door/window/ultra/Initialize(mapload, ...) . = ..() - GLOB.hijack_deletable_windows += src - -/obj/structure/machinery/door/window/ultra/Destroy() - GLOB.hijack_deletable_windows -= src - return ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(impact)) // No damage taken. /obj/structure/machinery/door/window/ultra/attackby(obj/item/I, mob/user) return try_to_activate_door(user) + +/obj/structure/machinery/door/window/ultra/proc/impact() + qdel(src) diff --git a/code/game/machinery/fax_machine.dm b/code/game/machinery/fax_machine.dm index 77a7de45a6..b15117bb25 100644 --- a/code/game/machinery/fax_machine.dm +++ b/code/game/machinery/fax_machine.dm @@ -1,12 +1,15 @@ -var/list/obj/structure/machinery/faxmachine/allfaxes = list() -var/list/alldepartments = list() +GLOBAL_LIST_INIT_TYPED(allfaxes, /obj/structure/machinery/faxmachine, list()) +GLOBAL_LIST_EMPTY(alldepartments) #define DEPARTMENT_WY "Weyland-Yutani" #define DEPARTMENT_HC "USCM High Command" #define DEPARTMENT_CMB "CMB Incident Command Center, Local Operations" #define DEPARTMENT_PROVOST "USCM Provost Office" #define DEPARTMENT_PRESS "Various Press Organizations" -#define HIGHCOM_DEPARTMENTS list(DEPARTMENT_WY, DEPARTMENT_HC, DEPARTMENT_CMB, DEPARTMENT_PROVOST, DEPARTMENT_PRESS) +#define DEPARTMENT_TWE "Three World Empire" +#define DEPARTMENT_UPP "Union of Progress Peoples" +#define DEPARTMENT_CLF "Colonial Liberation Front" +#define HIGHCOM_DEPARTMENTS list(DEPARTMENT_WY, DEPARTMENT_HC, DEPARTMENT_CMB, DEPARTMENT_PROVOST, DEPARTMENT_PRESS, DEPARTMENT_TWE, DEPARTMENT_UPP, DEPARTMENT_CLF) /obj/structure/machinery/faxmachine // why not fax_machine? name = "\improper General Purpose Fax Machine" @@ -45,11 +48,11 @@ var/list/alldepartments = list() /obj/structure/machinery/faxmachine/Initialize(mapload, ...) . = ..() - allfaxes += src + GLOB.allfaxes += src update_departments() /obj/structure/machinery/faxmachine/Destroy() - allfaxes -= src + GLOB.allfaxes -= src . = ..() /obj/structure/machinery/faxmachine/initialize_pass_flags(datum/pass_flags_container/PF) @@ -84,7 +87,7 @@ var/list/alldepartments = list() else to_chat(user, SPAN_NOTICE("\The [src] jammed! It can only accept up to five papers at once.")) playsound(src, "sound/machines/terminal_insert_disc.ogg", 50, TRUE) - flick("faxsend", src) + flick("[initial(icon_state)]send", src) updateUsrDialog() return @@ -126,18 +129,25 @@ var/list/alldepartments = list() return /obj/structure/machinery/faxmachine/proc/update_departments() - if( !("[department]" in alldepartments) ) //Initialize departments. This will work with multiple fax machines. - alldepartments += department - if(!(DEPARTMENT_WY in alldepartments)) - alldepartments += DEPARTMENT_WY - if(!(DEPARTMENT_HC in alldepartments)) - alldepartments += DEPARTMENT_HC - if(!(DEPARTMENT_PROVOST in alldepartments)) - alldepartments += DEPARTMENT_PROVOST - if(!(DEPARTMENT_CMB in alldepartments)) - alldepartments += DEPARTMENT_CMB - if(!(DEPARTMENT_PRESS in alldepartments)) - alldepartments += DEPARTMENT_PRESS + if( !("[department]" in GLOB.alldepartments) ) //Initialize departments. This will work with multiple fax machines. + GLOB.alldepartments += department + if(!(DEPARTMENT_WY in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_WY + if(!(DEPARTMENT_HC in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_HC + if(!(DEPARTMENT_PROVOST in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_PROVOST + if(!(DEPARTMENT_CMB in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_CMB + if(!(DEPARTMENT_PRESS in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_PRESS + if(!(DEPARTMENT_TWE in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_TWE + if(!(DEPARTMENT_UPP in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_UPP + if(!(DEPARTMENT_CLF in GLOB.alldepartments)) + GLOB.alldepartments += DEPARTMENT_CLF + // TGUI SHIT \\ /obj/structure/machinery/faxmachine/tgui_interact(mob/user, datum/tgui/ui) @@ -235,7 +245,7 @@ var/list/alldepartments = list() else to_chat(ui.user, SPAN_NOTICE("\The [src] jammed! It can only accept up to five papers at once.")) playsound(src, "sound/machines/terminal_insert_disc.ogg", 50, TRUE) - flick("faxsend", src) + flick("[initial(icon_state)]send", src) . = TRUE if("ejectid") @@ -256,7 +266,7 @@ var/list/alldepartments = list() if("select") var/last_target_department = target_department - target_department = tgui_input_list(ui.user, "Which department?", "Choose a department", alldepartments) + target_department = tgui_input_list(ui.user, "Which department?", "Choose a department", GLOB.alldepartments) if(!target_department) target_department = last_target_department . = TRUE @@ -277,9 +287,12 @@ var/list/alldepartments = list() . = ..() . += "" . += "" - . += "" + . += "" . += "" . += "" + . += "" + . += "" + . += "" // converting whatever type the fax is into a single paper with all the information on it. /obj/structure/machinery/faxmachine/proc/copy_fax_paper(mob/living/user) @@ -339,13 +352,22 @@ var/list/alldepartments = list() GLOB.CMBFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") msg_admin += "(RPLY): " if(DEPARTMENT_WY) - GLOB.WYFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") - msg_admin += "(RPLY): " + GLOB.WYFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") + msg_admin += "(RPLY): " if(DEPARTMENT_PRESS) GLOB.PressFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") msg_admin += "(RPLY): " + if(DEPARTMENT_TWE) + GLOB.TWEFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") + msg_admin += "(RPLY): " + if(DEPARTMENT_UPP) + GLOB.UPPFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") + msg_admin += "(RPLY): " + if(DEPARTMENT_CLF) + GLOB.CLFFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") + msg_admin += "(RPLY): " else - GLOB.GeneralFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") + GLOB.GeneralFaxes.Add("\['[original_fax.name]' from [key_name(usr)], [scan] at [time2text(world.timeofday, "hh:mm:ss")]\] REPLY") msg_admin += "(RPLY): " msg_admin += SPAN_STAFF_IC("Receiving fax via secure connection ... view message") @@ -365,7 +387,8 @@ var/list/alldepartments = list() to_chat(C, msg_admin) else to_chat(C, msg_ghost) - C << 'sound/effects/sos-morse-code.ogg' + if(C.prefs?.toggles_sound & SOUND_FAX_MACHINE) + C << 'sound/effects/incoming-fax.ogg' if(msg_ghost) for(var/i in GLOB.observer_list) var/mob/dead/observer/g = i @@ -376,20 +399,21 @@ var/list/alldepartments = list() if((R_ADMIN|R_MOD) & C.admin_holder.rights) //staff don't need to see the fax twice continue to_chat(C, msg_ghost) - C << 'sound/effects/sos-morse-code.ogg' + if(C.prefs?.toggles_sound & SOUND_FAX_MACHINE) + C << 'sound/effects/incoming-fax.ogg' /obj/structure/machinery/faxmachine/proc/send_fax(datum/fax/faxcontents) - for(var/obj/structure/machinery/faxmachine/F in allfaxes) + for(var/obj/structure/machinery/faxmachine/F in GLOB.allfaxes) if(F != src && F.department == target_department) if(!faxcontents) return if(! (F.inoperable() ) ) - flick("faxreceive", F) + flick("[initial(icon_state)]receive", F) // give the sprite some time to flick - spawn(20) + spawn(30) var/obj/item/paper/P = new(F.loc,faxcontents.photo_list) P.name = "faxed message" P.info = "[faxcontents.data]" @@ -416,6 +440,30 @@ var/list/alldepartments = list() P.stamped += /obj/item/tool/stamp P.overlays += stampoverlay P.stamps += "
This paper has been stamped and encrypted by the Weyland-Yutani Quantum Relay (tm)." + if("TWE Royal Marines Commando Quantum Relay") + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-twe" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
This paper has been stamped by the TWE Royal Marines Commando Quantum Relay." + if("UPP High Kommand Quantum Relay") + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-upp" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
This paper has been stamped by the UPP High Kommand Quantum Relay." + if("CLF Gureilla Command Quantum Relay") + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-clf" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
This paper has been stamped and encrypted by the CLF Gureilla Command Quantum Relay." playsound(F.loc, "sound/items/polaroid1.ogg", 15, 1) qdel(faxcontents) @@ -469,6 +517,85 @@ var/list/alldepartments = list() target_department = "Brig" network = "USCM High Command Quantum Relay" + +///The deployed fax machine backpack +/obj/structure/machinery/faxmachine/backpack + name = "\improper Portable Press Fax Machine" + desc = "A standard issue portable fax machine for civilian reporters. Functions off of an internal battery. Cannot receive faxes while being worn. It is currently deployed. Click-drag the device towards you to pick it up." + icon_state = "fax_backpack" + needs_power = FALSE + use_power = USE_POWER_NONE + health = 150 + +///The wearable and deployable part of the fax machine backpack +/obj/item/device/fax_backpack + name = "\improper Portable Press Fax Machine" + desc = "A standard issue portable fax machine for civilian reporters. Functions off of an internal battery. Cannot receive faxes while being worn. It is currently undeployed. Activate the device inhand to deploy it." + icon = 'icons/obj/structures/machinery/library.dmi' + icon_state = "fax_backpack" + item_state = "fax_backpack" + w_class = SIZE_HUGE + flags_equip_slot = SLOT_BACK + flags_item = ITEM_OVERRIDE_NORTHFACE + +/obj/item/device/fax_backpack/attack_self(mob/user) //activate item version fax inhand to deploy + if(!ishuman(user)) + return + var/turf/deployturf = get_turf(user) + if(istype(deployturf, /turf/open)) + var/turf/open/floor = deployturf + if(!floor.allow_construction) + to_chat(user, SPAN_WARNING("You cannot deploy [src] here, find a more secure surface!")) + return FALSE + var/fail = FALSE + if(deployturf.density) + fail = TRUE + else + var/static/list/blocking_types = typecacheof(list( + /obj/structure/machinery/defenses, + /obj/structure/window, + /obj/structure/windoor_assembly, + /obj/structure/machinery/door, + )) + for(var/obj/blockingobj in deployturf.contents) + if(blockingobj.density && !(blockingobj.flags_atom & ON_BORDER)) + fail = TRUE + break + if(is_type_in_typecache(blockingobj, blocking_types)) + fail = TRUE + break + if(fail) + to_chat(user, SPAN_WARNING("You can't deploy [src] here, something is in the way.")) + return + to_chat(user, SPAN_NOTICE("You begin to deploy [src]...")) + if(do_after(user, 4.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + to_chat(user, SPAN_NOTICE("You deploy [src].")) + var/obj/structure/machinery/faxmachine/backpack/deployedfax = new(deployturf) + transfer_label_component(deployedfax) + playsound(src.loc, 'sound/machines/print.ogg', 40, 1) + qdel(src) + return + return ..() + +/obj/structure/machinery/faxmachine/backpack/MouseDrop(over_object, src_location, over_location) //Drag the deployed fax onto you to pick it up. + if(!ishuman(usr)) + return + var/mob/living/carbon/human/user = usr + if(over_object == user && in_range(src, user)) + if(original_fax || scan) + to_chat(user, SPAN_NOTICE("There is still something in [src]. Remove it before you pick it up.")) + return + to_chat(user, SPAN_NOTICE("You begin to pick up [src]...")) + if(do_after(user, 4.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) + to_chat(user, SPAN_NOTICE("You pick up [src].")) + var/obj/item/device/fax_backpack/faxbag = new(loc) + transfer_label_component(faxbag) + user.put_in_hands(faxbag) + qdel(src) + return + return ..() + /datum/fax var/data var/list/photo_list diff --git a/code/game/machinery/fire_alarm.dm b/code/game/machinery/fire_alarm.dm index dd7e0ee701..55aef1323c 100644 --- a/code/game/machinery/fire_alarm.dm +++ b/code/game/machinery/fire_alarm.dm @@ -47,7 +47,7 @@ FIRE ALARM if(stat & BROKEN) icon_state = "firex" - else if(stat & NOPOWER & (security_level != SEC_LEVEL_RED)) + else if(stat & NOPOWER & (GLOB.security_level != SEC_LEVEL_RED)) icon_state = "firep" /obj/structure/machinery/firealarm/fire_act(temperature, volume) @@ -183,7 +183,7 @@ FIRE ALARM pixel_y = (dir & 3)? (dir ==1 ? -24 : 24) : 0 if(!is_mainship_level(z)) - if(security_level) + if(GLOB.security_level) src.overlays += image('icons/obj/structures/machinery/monitors.dmi', "overlay_[get_security_level()]") else src.overlays += image('icons/obj/structures/machinery/monitors.dmi', "overlay_green") diff --git a/code/game/machinery/flasher.dm b/code/game/machinery/flasher.dm index 3ba2741ef2..437ef7b067 100644 --- a/code/game/machinery/flasher.dm +++ b/code/game/machinery/flasher.dm @@ -135,7 +135,7 @@ active = 1 icon_state = "launcheract" - for(var/obj/structure/machinery/flasher/M in machines) + for(var/obj/structure/machinery/flasher/M in GLOB.machines) if(M.id == src.id) INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/flasher, flash)) diff --git a/code/game/machinery/floodlight.dm b/code/game/machinery/floodlight.dm index 071a164883..508ccc0ee7 100644 --- a/code/game/machinery/floodlight.dm +++ b/code/game/machinery/floodlight.dm @@ -2,7 +2,7 @@ name = "emergency floodlight" desc = "A powerful light usually stationed near landing zones to provide better visibility." icon = 'icons/obj/structures/machinery/floodlight.dmi' - icon_state = "flood00" + icon_state = "flood_0" density = TRUE anchored = TRUE light_power = 2 @@ -11,13 +11,14 @@ idle_power_usage = 0 active_power_usage = 100 + ///How far the light will go when the floodlight is on var/on_light_range = 6 - ///Whether or not the floodlight can be toggled on or off var/toggleable = TRUE - ///Whether or not the floodlight is turned on, disconnected from whether it has power or is lit var/turned_on = FALSE + ///base state + var/base_icon_state = "flood" /obj/structure/machinery/floodlight/Initialize(mapload, ...) . = ..() @@ -60,7 +61,7 @@ /obj/structure/machinery/floodlight/update_icon() . = ..() - icon_state = "flood0[light_on]" + icon_state = "[base_icon_state]_[light_on]" /obj/structure/machinery/floodlight/power_change(area/master_area = null) . = ..() @@ -71,7 +72,7 @@ /obj/structure/machinery/floodlight/landing name = "landing light" desc = "A powerful light usually stationed near landing zones to provide better visibility. This one seems to have been bolted down and is unable to be moved." - icon_state = "flood01" + icon_state = "flood_1" use_power = USE_POWER_NONE needs_power = FALSE unslashable = TRUE @@ -81,7 +82,8 @@ turned_on = TRUE /obj/structure/machinery/floodlight/landing/floor - icon_state = "floor_flood01" + icon_state = "floor_flood_1" + base_icon_state = "floor_flood" density = FALSE /obj/structure/machinery/floodlight/landing/floor/update_icon() diff --git a/code/game/machinery/fuelcell_recycler.dm b/code/game/machinery/fuelcell_recycler.dm index 697d7385a0..12ae7c40f8 100644 --- a/code/game/machinery/fuelcell_recycler.dm +++ b/code/game/machinery/fuelcell_recycler.dm @@ -1,144 +1,219 @@ /obj/structure/machinery/fuelcell_recycler - name = "fuel cell recycler" + name = "\improper fuel cell recycler" desc = "A large machine with whirring fans and two cylindrical holes in the top. Used to regenerate fuel cells." icon = 'icons/obj/structures/machinery/fusion_eng.dmi' icon_state = "recycler" - anchored = TRUE - density = TRUE - idle_power_usage = 5 active_power_usage = 15000 - bound_height = 32 - bound_width = 32 - var/obj/item/fuelCell/cell_left = null - var/obj/item/fuelCell/cell_right = null unslashable = TRUE unacidable = TRUE + indestructible = TRUE -/obj/structure/machinery/fuelcell_recycler/attackby(obj/item/I, mob/user) - if(istype(I, /obj/item/fuelCell)) - if(!cell_left) - if(user.drop_inv_item_to_loc(I, src)) - cell_left = I - start_processing() - else if(!cell_right) - if(user.drop_inv_item_to_loc(I, src)) - cell_right = I - start_processing() - else - to_chat(user, SPAN_NOTICE("The recycler is full!")) - return - update_icon() - else - to_chat(user, SPAN_NOTICE("You can't see how you'd use [I] with [src]...")) + ///How much to recharge the cells per process + var/recharge_amount = 5 + ///A fuel cell in the recycler + var/obj/item/fuel_cell/cell_left + ///A fuel cell in the recycler + var/obj/item/fuel_cell/cell_right + +/obj/structure/machinery/fuelcell_recycler/Destroy() + . = ..() + QDEL_NULL(cell_left) + QDEL_NULL(cell_right) + +/obj/structure/machinery/fuelcell_recycler/ex_act(severity) + if(indestructible) + return + . = ..() + +/obj/structure/machinery/fuelcell_recycler/get_examine_text(mob/user) + . = ..() + . += SPAN_INFO("It is [machine_processing ? "online" : "offline"].") + if(!ishuman(user)) + return + + if(cell_left) + . += SPAN_INFO("The left cell is at [cell_left.get_fuel_percent()]%.") + if(cell_right) + . += SPAN_INFO("The right cell is at [cell_right.get_fuel_percent()]%.") + +/obj/structure/machinery/fuelcell_recycler/attackby(obj/item/attacking_item, mob/user) + if(!istype(attacking_item, /obj/item/fuel_cell)) + to_chat(user, SPAN_NOTICE("[src] rejects [attacking_item]. It can only regenerate fuel cells.")) + return + var/obj/item/fuel_cell/cell = attacking_item + + if(cell_left && cell_right) + to_chat(user, SPAN_NOTICE("[src] cannot regenerate any more fuel cells. Remove [cell_left] or [cell_right] first.")) + return + + if(cell.get_fuel_percent() == 100) + to_chat(user, SPAN_NOTICE("[cell] is already full and does not need to be regenerated.")) return -/obj/structure/machinery/fuelcell_recycler/attack_hand(mob/M) - if(cell_left == null && cell_right == null) - to_chat(M, SPAN_NOTICE("The recycler is empty.")) + if(!user.drop_inv_item_to_loc(cell, src)) + to_chat(user, SPAN_WARNING("You fail to insert [cell] into [src].")) return - add_fingerprint(M) + add_fingerprint(user) + var/inserted_to_left = TRUE + if(!cell_left) + cell_left = cell + else if(!cell_right) + inserted_to_left = FALSE + cell_right = cell + + to_chat(user, SPAN_NOTICE("You insert [cell] into the [inserted_to_left ? "left" : "right"] fuel cell receptacle.")) + update_icon() + if(!machine_processing) + visible_message(SPAN_NOTICE("[src] starts whirring as it turns on.")) + update_use_power(USE_POWER_ACTIVE) + start_processing() - if(cell_right == null) - cell_left.update_icon() - M.put_in_hands(cell_left) +/obj/structure/machinery/fuelcell_recycler/attack_hand(mob/user) + if(!cell_left && !cell_right) + to_chat(user, SPAN_NOTICE("[src] is empty.")) + return + + add_fingerprint(user) + cell_left?.update_icon() + cell_right?.update_icon() + + if(cell_left && cell_right) + if(cell_left.get_fuel_percent() >= cell_right.get_fuel_percent()) + user.put_in_hands(cell_left) + cell_left = null + else + user.put_in_hands(cell_right) + cell_right = null + update_icon() + return + + if(cell_left) + user.put_in_hands(cell_left) cell_left = null update_icon() - else if(cell_left == null) - cell_right.update_icon() - M.put_in_hands(cell_right) + return + + if(cell_right) + user.put_in_hands(cell_right) cell_right = null update_icon() - else - if(cell_left.get_fuel_percent() > cell_right.get_fuel_percent()) - cell_left.update_icon() - M.put_in_hands(cell_left) - cell_left = null - update_icon() - else - cell_right.update_icon() - M.put_in_hands(cell_right) - cell_right = null - update_icon() /obj/structure/machinery/fuelcell_recycler/process() if(inoperable()) - update_use_power(USE_POWER_NONE) - update_icon() + turn_off() return + if(!cell_left && !cell_right) - update_use_power(USE_POWER_IDLE) - update_icon() - stop_processing() + balloon_alert_to_viewers("no cells detected.") + turn_off() return - else - var/active = FALSE - if(cell_left != null) - if(!cell_left.is_regenerated()) - active = TRUE - cell_left.give(active_power_usage*(CELLRATE * 0.1)) - if(cell_right != null) - if(!cell_right.is_regenerated()) - active = TRUE - cell_right.give(active_power_usage*(CELLRATE * 0.1)) - if(active) - update_use_power(USE_POWER_ACTIVE) - else - update_use_power(USE_POWER_IDLE) - stop_processing() - update_icon() + if((!cell_right && cell_left?.is_regenerated()) || (!cell_left && cell_right?.is_regenerated()) || (cell_left?.is_regenerated() && cell_right?.is_regenerated())) + balloon_alert_to_viewers("all cells charged.") + turn_off() + return + + if(cell_left && !cell_left.is_regenerated()) + recharge_cell(cell_left) + + if(cell_right && !cell_right.is_regenerated()) + recharge_cell(cell_right) + + update_icon() /obj/structure/machinery/fuelcell_recycler/power_change() ..() update_icon() /obj/structure/machinery/fuelcell_recycler/update_icon() - src.overlays.Cut() + overlays.Cut() + + if(cell_left) + overlays += "overlay_left_cell" + if(cell_right) + overlays += "overlay_right_cell" if(inoperable()) - icon_state = "recycler0" - if(cell_left != null) - src.overlays += "recycler-left-cell" - if(cell_right != null) - src.overlays += "recycler-right-cell" - return - else icon_state = "recycler" - - var/overlay_builder = "recycler-" - if(cell_left == null && cell_right == null) return - if(cell_right == null) + + if(cell_left) if(cell_left.is_regenerated()) - overlay_builder += "left-charged" + overlays += "overlay_left_charged" else - overlay_builder += "left-charging" + overlays += "overlay_left_charging" - src.overlays += overlay_builder - src.overlays += "recycler-left-cell" - return - else if(cell_left == null) + if(cell_right) if(cell_right.is_regenerated()) - overlay_builder += "right-charged" + overlays += "overlay_right_charged" else - overlay_builder += "right-charging" + overlays += "overlay_right_charging" - src.overlays += overlay_builder - src.overlays += "recycler-right-cell" + if(!machine_processing) + icon_state = "recycler" return - else // both left and right cells are there - if(cell_left.is_regenerated()) - overlay_builder += "left-charged" - else - overlay_builder += "left-charging" + icon_state = "recycler_on" - if(cell_right.is_regenerated()) - overlay_builder += "-right-charged" - else - overlay_builder += "-right-charging" +/obj/structure/machinery/fuelcell_recycler/proc/turn_off() + visible_message(SPAN_NOTICE("[src] stops whirring as it turns off.")) + stop_processing() + update_icon() + update_use_power(USE_POWER_NONE) - src.overlays += overlay_builder - src.overlays += "recycler-left-cell" - src.overlays += "recycler-right-cell" - return +/obj/structure/machinery/fuelcell_recycler/proc/recharge_cell(obj/item/fuel_cell/cell) + cell.modify_fuel(recharge_amount) + if(!cell.new_cell) + cell.new_cell = TRUE + +/obj/structure/machinery/fuelcell_recycler/full/Initialize(mapload, ...) + . = ..() + cell_left = new(src) + cell_right = new(src) + update_icon() + +//reactor full cells +/obj/item/fuel_cell + name = "\improper WL-6 universal fuel cell" + icon = 'icons/obj/structures/machinery/shuttle-parts.dmi' + icon_state = "cell-full" + desc = "A rechargeable fuel cell designed to work as a power source for the Cheyenne-Class transport or for Westingland S-52 Reactors." + ///How much fuel is in the reactor + var/fuel_amount = 100 + ///Max amount that the cell can hold + var/max_fuel_amount = 100 + ///If the fuel cell has been used since last recharge + var/new_cell = TRUE + +/obj/item/fuel_cell/update_icon() + switch(get_fuel_percent()) + if(-INFINITY to 0) + icon_state = "cell-empty" + if(0 to 25) + icon_state = "cell-low" + if(25 to 75) + icon_state = "cell-medium" + if(75 to 99) + icon_state = "cell-high" + if(100 to INFINITY) + icon_state = "cell-full" + +/obj/item/fuel_cell/get_examine_text(mob/user) + . = ..() + if(ishuman(user)) + . += "The fuel indicator reads: [get_fuel_percent()]%" + +///Percentage of fuel left in the cell +/obj/item/fuel_cell/proc/get_fuel_percent() + return floor(100 * fuel_amount/max_fuel_amount) + +///Whether the fuel cell is full +/obj/item/fuel_cell/proc/is_regenerated() + return (fuel_amount == max_fuel_amount) + +/// increase or decrease fuel, making sure it cannot go above the max +/obj/item/fuel_cell/proc/modify_fuel(amount) + fuel_amount = clamp(fuel_amount + amount, 0, max_fuel_amount) + +/obj/item/fuel_cell/used + new_cell = FALSE diff --git a/code/game/machinery/fusion_engine.dm b/code/game/machinery/fusion_engine.dm index 8e3097ef52..931307948e 100644 --- a/code/game/machinery/fusion_engine.dm +++ b/code/game/machinery/fusion_engine.dm @@ -1,455 +1,481 @@ -//Experimental engine for the Almayer. Should be fancier. I expect I'll eventually make it totally separate from the Geothermal as I don't like the procs... - Apop +//Reactor damage states +#define BUILDSTATE_FUNCTIONAL 0 +#define BUILDSTATE_DAMAGE_WRENCH 1 +#define BUILDSTATE_DAMAGE_WIRE 2 +#define BUILDSTATE_DAMAGE_WELD 3 +//How often it checks if the reactor has failed +#define REACTOR_FAIL_CHECK_TICKS 100 -#define FUSION_ENGINE_MAX_POWER_GEN 50000 //Full capacity - -#define FUSION_ENGINE_FAIL_CHECK_TICKS 100 //Check for failure every this many ticks - -/obj/structure/machinery/power/fusion_engine +/obj/structure/machinery/power/reactor name = "\improper S-52 fusion reactor" icon = 'icons/obj/structures/machinery/fusion_eng.dmi' - icon_state = "off-0" - desc = "A Westingland S-52 Fusion Reactor. Takes fuels cells and converts them to power for the ship. Also produces a large amount of heat." - directwired = 0 //Requires a cable directly underneath + icon_state = "off" + desc = "A Westingland S-52 Fusion Reactor." + directwired = FALSE //Requires a cable directly underneath unslashable = TRUE - unacidable = TRUE //NOPE.jpg + unacidable = TRUE anchored = TRUE density = TRUE power_machine = TRUE - - var/power_gen_percent = 0 //50,000W at full capacity - var/buildstate = 0 //What state of building it are we on, 0-3, 1 is "broken", the default - var/is_on = TRUE //Is this damn thing on or what? - var/fail_rate = FALSE //% chance of failure each fail_tick check + throwpass = FALSE + + ///Whether the reactor is functional + var/is_on = TRUE + ///Whether the reactor is on the ship + var/is_ship_reactor = FALSE + ///If the generator is overloaded + var/overloaded = FALSE //Only possible during hijack once fuel is at 100% + + ///How damaged the reactor is + var/buildstate = BUILDSTATE_FUNCTIONAL + + ///Original fail rate of the reactor + var/original_fail_rate = 0 + ///% chance of the reactor failing every check_failure + var/fail_rate = 0 + ///How often the reactor checks if it can fail + var/fail_check_ticks = REACTOR_FAIL_CHECK_TICKS + ///How many ticks since last fail check var/cur_tick = 0 //Tick updater - var/obj/item/fuelCell/fusion_cell = new //Starts with a fuel cell loaded in. Maybe replace with the plasma tanks in the future and have it consume plasma? Possibly remove this later if it's irrelevent... - var/fuel_rate = 0 //Rate at which fuel is used. Based mostly on how long the generator has been running. - /// If the generator is overloaded. Only possible during hijack once fuel is at 100%. - var/overloaded = FALSE + ///% of power produced, increases to 100% over time + var/power_gen_percent = 0 + ///How much the reactor will generate at max power_gen_percent + var/power_generation_max = 50000 //50,000W + ///All icon states split by power_gen_percent + var/list/power_percent_states = list(10, 25, 50, 75, 100) //Easier to add more icon states to one without also adding them to the other -/obj/structure/machinery/power/fusion_engine/Initialize(mapload, ...) + ///Whether the reactor requires a fusion cell + var/require_fusion_cell = TRUE + ///The reactors fuel cell, fail rate increases if empty + var/obj/item/fuel_cell/fusion_cell + +/obj/structure/machinery/power/reactor/Initialize(mapload, ...) . = ..() - fusion_cell.fuel_amount = 100 + if(is_mainship_level(z)) //Only ship reactors can overload + is_ship_reactor = TRUE + + if(!buildstate && is_ground_level(z)) //Colony reactors start damaged + switch(rand(1, 6)) + if(1 to 3) //50% + buildstate = BUILDSTATE_DAMAGE_WELD + if(4 to 5) //34% + buildstate = BUILDSTATE_DAMAGE_WIRE + if(6) //16% + buildstate = BUILDSTATE_DAMAGE_WRENCH + + if(require_fusion_cell) //Set up fuel cell if needed + fusion_cell = new /obj/item/fuel_cell/used(src) + fusion_cell.fuel_amount = fusion_cell.max_fuel_amount + + fail_rate = original_fail_rate update_icon() - connect_to_network() //Should start with a cable piece underneath, if it doesn't, something's messed up in mapping - start_processing() -/obj/structure/machinery/power/fusion_engine/Destroy() + if(is_on) + start_processing() + + return INITIALIZE_HINT_ROUNDSTART + +/obj/structure/machinery/power/reactor/LateInitialize() //Need to wait for powernets to start existing first + . = ..() + + if(QDELETED(src)) + return + if(powernet) + return + + if(!connect_to_network()) //Make sure its connected to a powernet + CRASH("[src] has failed to connect to a power network. Check that it has been mapped correctly.") + +/obj/structure/machinery/power/reactor/Destroy() QDEL_NULL(fusion_cell) return ..() -/obj/structure/machinery/power/fusion_engine/attack_alien(mob/living/carbon/xenomorph/xeno) - if(!overloaded) - to_chat(xeno, SPAN_WARNING("You see no reason to attack [src].")) - return XENO_NO_DELAY_ACTION +/obj/structure/machinery/power/reactor/get_examine_text(mob/user) + . = ..() - xeno.animation_attack_on(src) - playsound(src, 'sound/effects/metalhit.ogg', 25, 1) - xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], stopping its overload process!"), \ - SPAN_DANGER("You [xeno.slash_verb] [src], stopping its overload process!"), null, 5, CHAT_TYPE_XENO_COMBAT) - set_overloading(FALSE) - return XENO_ATTACK_ACTION + if(!is_on) + . += SPAN_INFO("It is offline.") + + if(!ishuman(user)) + return + if(is_on) + . += SPAN_INFO("The power gauge reads: [power_gen_percent]%") + + switch(buildstate) + if(BUILDSTATE_DAMAGE_WELD) + . += SPAN_INFO(SPAN_BOLD("Use a blowtorch to repair it.")) + if(BUILDSTATE_DAMAGE_WIRE) + . += SPAN_INFO(SPAN_BOLD("Use wirecutters to repair it.")) + if(BUILDSTATE_DAMAGE_WRENCH) + . += SPAN_INFO(SPAN_BOLD("Use a wrench to repair it.")) + + if(buildstate || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + if(is_on) + . += SPAN_INFO("The emergency shutdown button is visible.") + else + . += SPAN_INFO("The emergency start lever is visible.") + + if(!fusion_cell) + . += SPAN_INFO("There is no fuel cell in it.") + else + switch(fusion_cell.get_fuel_percent()) + if(-INFINITY to 0) + . += SPAN_INFO("[fusion_cell] is empty.") + if(1 to 9) + . += SPAN_INFO("[fusion_cell] is critically low.") + if(10 to 24) + . += SPAN_INFO("[fusion_cell] is low.") + if(25 to 49) + . += SPAN_INFO("[fusion_cell] is less than half full.") + if(50 to 74) + . += SPAN_INFO("[fusion_cell] is over half full.") + if(75 to 99) + . += SPAN_INFO("[fusion_cell] is nearly full.") + if(99 to INFINITY) + . += SPAN_INFO("[fusion_cell] is full.") + + if(is_ship_reactor && SShijack.sd_unlocked) + if(overloaded) + . += SPAN_INFO("It is overloaded.") + return + if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + . += SPAN_INFO("You could overload its safeties with a multitool.") -/obj/structure/machinery/power/fusion_engine/power_change() +/obj/structure/machinery/power/reactor/power_change() . = ..() if(overloaded) set_overloading(FALSE) - visible_message("[icon2html(src, viewers(src))] [src]'s overload suddenly ceases as primary power is lost.") + visible_message(SPAN_NOTICE("[src]'s overload suddenly ceases as primary power is lost.")) -/obj/structure/machinery/power/fusion_engine/process() - if(!is_on || buildstate || !anchored || !powernet || !fusion_cell) //Default logic checking - if(is_on) - is_on = FALSE - power_gen_percent = 0 - update_icon() - stop_processing() - return 0 - if (fusion_cell.fuel_amount <= 0) - visible_message("[icon2html(src, viewers(src))] [src] flashes that the fuel cell is empty as the engine seizes.") - fuel_rate = 0 - buildstate = 2 //No fuel really fucks it. - is_on = 0 - power_gen_percent = 0 - fail_rate+=2 //Each time the engine is allowed to seize up it's fail rate for the future increases because reasons. - update_icon() - stop_processing() - return FALSE +/obj/structure/machinery/power/reactor/process() + if(!is_on) //if off, turn off + start_functioning(FALSE) + return + + if(buildstate) + if(require_fusion_cell) //if broken and fuel cell, lose fuel + if(fusion_cell && fusion_cell.fuel_amount) + fusion_cell.modify_fuel(rand(-5, -20)) + visible_message(SPAN_DANGER("[src] hisses as fuel starts to pool around it.")) + else //Otherwise just start to break down faster + visible_message(SPAN_DANGER("[src] sparks and seizes.")) + fail_rate += 2.5 + + if(require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) //empty fuel + if(prob(20)) + visible_message(SPAN_DANGER("[src] flashes that the fuel cell is [fusion_cell ? "empty" : "missing"] as the engine seizes.")) + fail_rate += 2.5 if(overloaded && prob(1)) // up to 18 generators at 1% every 3.5 seconds means that every ~21 seconds or so, one generator will make noise assuming all are overloaded - switch(rand(1, 2)) - if(1) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] loudly hums.")]") - playsound(src, 'sound/machines/resource_node/node_idle.ogg', 60, TRUE) - if(2) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] makes a worrying hiss.")]") - playsound(src, 'sound/machines/hiss.ogg', 60, TRUE) - - if(!check_failure()) - if(power_gen_percent < 100) - power_gen_percent++ - - switch(power_gen_percent) //Flavor text! - if(10) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to whirr as it powers up.")]") - fuel_rate = 0.025 - if(50) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to hum loudly as it reaches half capacity.")]") - fuel_rate = 0.05 - if(99) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] rumbles loudly as the combustion and thermal chambers reach full strength.")]") - fuel_rate = 0.1 - - add_avail(FUSION_ENGINE_MAX_POWER_GEN * (power_gen_percent / 100) ) //Nope, all good, just add the power + if(prob(50)) + visible_message(SPAN_NOTICE("[src] loudly hums.")) + playsound(src, 'sound/machines/resource_node/node_idle.ogg', 60, TRUE) + else + visible_message(SPAN_NOTICE("[src] makes a worrying hiss.")) + playsound(src, 'sound/machines/hiss.ogg', 60, TRUE) - update_icon() + if(power_gen_percent < 100) + power_gen_percent = min(power_gen_percent + 1, 100) + add_avail(power_generation_max * (power_gen_percent / 100)) + check_failure(buildstate > BUILDSTATE_DAMAGE_WIRE || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + update_icon() -/obj/structure/machinery/power/fusion_engine/attack_hand(mob/user) - if(!ishuman(user)) - to_chat(user, SPAN_WARNING("You have no idea how to use that.")) //No ayylamos +/obj/structure/machinery/power/reactor/proc/check_failure(damaged_reactor = FALSE) + if(cur_tick < fail_check_ticks) //Nope, not time for it yet + cur_tick++ + if(damaged_reactor) + cur_tick += fail_check_ticks/5 //fail much faster if damaged + return + cur_tick = 0 //reset the timer + + fail_rate = clamp(fail_rate, 0, 100) + if(!prob(fail_rate)) //Oh snap, we failed! Shut it down! + return + + visible_message(SPAN_DANGER("[src] seizes and breaks down.")) + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + start_functioning(FALSE) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + +/obj/structure/machinery/power/reactor/attack_hand(mob/user) + . = TRUE + if(overloaded) + to_chat(user, SPAN_DANGER("[src] is not responding to your attempt to shut the reactor down.")) return FALSE add_fingerprint(user) - switch(buildstate) - if(1) - to_chat(user, SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.")) - return FALSE - if(2) - to_chat(user, SPAN_NOTICE("Use a wirecutters, then wrench to repair it.")) - return FALSE - if(3) - to_chat(user, SPAN_NOTICE("Use a wrench to repair it.")) + + if(buildstate || require_fusion_cell && (!fusion_cell || fusion_cell.fuel_amount <= 0)) + if(is_on) + to_chat(user, SPAN_NOTICE("You press [src]'s emergency shutdown button.")) + visible_message(SPAN_NOTICE("[user] presses [src]'s emergency shutdown button.")) + start_functioning(FALSE) + return + + visible_message(SPAN_NOTICE("[user] starts to hold [src]'s emergency start lever.")) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + to_chat(user, SPAN_NOTICE("You let go of the emergency start lever.")) return FALSE + start_functioning(TRUE) + return + if(is_on) - if(overloaded) - to_chat(user, SPAN_WARNING("You can't shut off [src] while it's overloaded!")) - return + visible_message(SPAN_WARNING("[src] beeps softly and stops humming as [user] shuts off the generator.")) + start_functioning(FALSE) + return - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps softly and the humming stops as [usr] shuts off the generator.")]") - is_on = 0 - power_gen_percent = 0 - cur_tick = 0 - update_icon() - stop_processing() - return TRUE + visible_message(SPAN_NOTICE("[src] beeps loudly as [user] starts the reactor.")) + start_functioning(TRUE) - if(!fusion_cell) - to_chat(user, SPAN_NOTICE("The reactor requires a fuel cell before you can turn it on.")) - return FALSE +/obj/structure/machinery/power/reactor/attack_alien(mob/living/carbon/xenomorph/xeno) + . = XENO_NONCOMBAT_ACTION + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + to_chat(xeno, SPAN_WARNING("You see no reason to attack [src].")) + return - if(!powernet) - if(!connect_to_network()) - to_chat(user, SPAN_WARNING("Power network not found, make sure the engine is connected to a cable.")) - return FALSE + if(xeno.action_busy) + to_chat(xeno, SPAN_WARNING("You cannot damage [src] while doing something else.")) + return - if(fusion_cell.fuel_amount <= 10) - to_chat(user, "[icon2html(src, user)] [SPAN_WARNING("[src]: Fuel levels critically low.")]") - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps loudly as [user] turns the generator on and begins the process of fusion...")]") - fuel_rate = 0.01 - is_on = 1 - cur_tick = 0 - update_icon() - start_processing() - return TRUE + if(overloaded) + xeno.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], stopping its overload process!"), \ + SPAN_DANGER("You [xeno.slash_verb] [src], stopping its overload process!"), null, 5, CHAT_TYPE_XENO_COMBAT) + set_overloading(FALSE) + return + var/looping = FALSE + while(buildstate < BUILDSTATE_DAMAGE_WELD) + to_chat(xeno, SPAN_NOTICE("You [looping ? "continue damaging" : "start to damage"] [src].")) + if(!do_after(xeno, 10 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE, src)) + to_chat(xeno, SPAN_DANGER("You stop damaging [src].")) + break + xeno.animation_attack_on(src) + playsound(src, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] [xeno.slashes_verb] [src], [is_on ? "disabling" : "damaging"] it!")) + switch(buildstate) + if(BUILDSTATE_FUNCTIONAL) + visible_message(SPAN_DANGER("[src] starts to fall apart!")) + if(BUILDSTATE_DAMAGE_WRENCH) + visible_message(SPAN_DANGER("[src] sparks as wires fall out!")) + if(BUILDSTATE_DAMAGE_WIRE) + visible_message(SPAN_DANGER("[src] gets torn apart!")) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + update_icon() + looping = TRUE -/obj/structure/machinery/power/fusion_engine/attackby(obj/item/O, mob/user) - if(istype(O, /obj/item/fuelCell)) - if(is_on) - to_chat(user, SPAN_WARNING("The [src] needs to be turned off first.")) - return TRUE - if(!fusion_cell) - if(user.drop_inv_item_to_loc(O, src)) - fusion_cell = O - update_icon() - to_chat(user, SPAN_NOTICE("You load the [src] with the [O].")) - return TRUE - else - to_chat(user, SPAN_WARNING("You need to remove the fuel cell from [src] first.")) - return TRUE - else if(iswelder(O)) - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(buildstate == 1) - var/obj/item/tool/weldingtool/WT = O - if(WT.remove_fuel(1, user)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s internals."), - SPAN_NOTICE("You fumble around figuring out [src]'s internals.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s internal damage."), - SPAN_NOTICE("You start welding [src]'s internal damage.")) - if(do_after(user, 200 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 1 || is_on || !WT.isOn()) - return FALSE - playsound(loc, 'sound/items/Welder2.ogg', 25, 1) - buildstate = 2 - user.visible_message(SPAN_NOTICE("[user] welds [src]'s internal damage."), - SPAN_NOTICE("You weld [src]'s internal damage.")) - update_icon() - return TRUE - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return FALSE - else if(HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) - if(buildstate == 2 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s wiring."), - SPAN_NOTICE("You fumble around figuring out [src]'s wiring.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts securing [src]'s wiring."), - SPAN_NOTICE("You start securing [src]'s wiring.")) - if(do_after(user, 120 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 12)) - if(buildstate != 2 || is_on) - return FALSE - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - buildstate = 3 - user.visible_message(SPAN_NOTICE("[user] secures [src]'s wiring."), - SPAN_NOTICE("You secure [src]'s wiring.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) - if(buildstate == 3 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_NOTICE("[user] fumbles around figuring out [src]'s tubing and plating."), - SPAN_NOTICE("You fumble around figuring out [src]'s tubing and plating.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts repairing [src]'s tubing and plating."), - SPAN_NOTICE("You start repairing [src]'s tubing and plating.")) - if(do_after(user, 150 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 3 || is_on) - return FALSE - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - buildstate = 0 - user.count_niche_stat(STATISTICS_NICHE_REPAIR_GENERATOR) - user.visible_message(SPAN_NOTICE("[user] repairs [src]'s tubing and plating."), - SPAN_NOTICE("You repair [src]'s tubing and plating.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_CROWBAR)) - if(buildstate) - to_chat(user, SPAN_WARNING("You must repair the generator before working with its fuel cell.")) +/obj/structure/machinery/power/reactor/attackby(obj/item/attacking_item, mob/user) + //Fuel Cells + if(user.action_busy) + return + + if(istype(attacking_item, /obj/item/fuel_cell)) + var/obj/item/fuel_cell/cell = attacking_item + if(fusion_cell) + to_chat(user, SPAN_WARNING("[src] already has [fusion_cell]. Before you can replace it with [cell] you need to remove it with a crowbar.")) return - if(overloaded) - to_chat(user, SPAN_WARNING("You must restore the safeties on the generator before working with its fuel cell.")) + to_chat(user, SPAN_NOTICE("You start inserting [cell] into [src].")) + if(!do_after(user, 10 SECONDS * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_BUILD, src)) return - if(is_on) - to_chat(user, SPAN_WARNING("You must turn off the generator before working with its fuel cell.")) + if(!user.drop_inv_item_to_loc(cell, src)) + to_chat(user, SPAN_NOTICE("You fail to insert [cell] into [src].")) return + to_chat(user, SPAN_NOTICE("You insert [cell] into [src].")) + fusion_cell = cell + update_icon() + if(cell.new_cell) + fail_rate = original_fail_rate + cell.new_cell = FALSE + return + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_CROWBAR)) if(!fusion_cell) - to_chat(user, SPAN_WARNING("There is no cell to remove.")) - - else - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - user.visible_message(SPAN_WARNING("[user] fumbles around figuring out [src]'s fuel receptacle."), - SPAN_WARNING("You fumble around figuring out [src]'s fuel receptacle.")) - var/fumbling_time = 50 - if(!do_after(user, fumbling_time, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts prying [src]'s fuel receptacle open."), - SPAN_NOTICE("You start prying [src]'s fuel receptacle open.")) - if(do_after(user, 100 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 0 || is_on || !fusion_cell) - return FALSE - user.visible_message(SPAN_NOTICE("[user] pries [src]'s fuel receptacle open and removes the cell."), - SPAN_NOTICE("You pry [src]'s fuel receptacle open and remove the cell.")) - fusion_cell.update_icon() - user.put_in_hands(fusion_cell) - fusion_cell = null - update_icon() - return TRUE - - else if(HAS_TRAIT(O, TRAIT_TOOL_MULTITOOL)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no idea what to do with [src].")) + to_chat(user, SPAN_WARNING("There is no fuel cell to remove from [src].")) return - if(!overloaded) - if(!SShijack.sd_unlocked) - to_chat(user, SPAN_WARNING("You consider overloading [src]'s safeties, but you decide against it.")) - return + to_chat(user, SPAN_NOTICE("You start prying [fusion_cell] out of [src].")) + if(!do_after(user, 10 SECONDS * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + return - if(inoperable()) - to_chat(user, SPAN_WARNING("[src] needs to be working and have external power in order to overload it!")) - return + to_chat(user, SPAN_NOTICE("You remove [fusion_cell] from [src].")) + fusion_cell.update_icon() + user.put_in_hands(fusion_cell) + fusion_cell = null + update_icon() + return - to_chat(user, SPAN_WARNING("You start overloading the safeties on [src]...")) - if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return + //Repairing + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_BLOWTORCH)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WELD, user)) + return + var/obj/item/tool/weldingtool/welder = attacking_item + if(!welder.remove_fuel(1, user)) + return + playsound(loc, 'sound/items/Welder2.ogg', 25, 1) + buildstate = BUILDSTATE_DAMAGE_WIRE + update_icon() + return - if(inoperable()) - return + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_WIRECUTTERS)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WIRE, user)) + return + playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) + buildstate = BUILDSTATE_DAMAGE_WRENCH + update_icon() + return - to_chat(user, SPAN_WARNING("You finish overloading the safeties on [src].")) - set_overloading(TRUE) - log_game("[key_name(user)] has overloaded a generator.") + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_WRENCH)) + if(!attempt_repair(attacking_item, BUILDSTATE_DAMAGE_WRENCH, user)) + return + playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) + buildstate = BUILDSTATE_FUNCTIONAL + update_icon() + return - else - to_chat(user, SPAN_WARNING("You start restoring the safeties on [src]...")) - if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return + //Self Destruct + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_MULTITOOL)) + if(!SShijack.sd_unlocked) + return + if(!is_ship_reactor) + return - if(inoperable()) - return + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + return - to_chat(user, SPAN_WARNING("You finish restoring the safeties on [src].")) - log_game("[key_name(user)] has restored the safeties of a generator.") - set_overloading(FALSE) + to_chat(user, SPAN_WARNING("You start [overloaded ? "overloading" : "restoring"] the safeties on [src].")) + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) + return - return TRUE + if(inoperable()) + to_chat(user, SPAN_WARNING("[src] needs to be working and have external power in order to be overloaded.")) + return - else - return ..() + set_overloading(!overloaded) + to_chat(user, SPAN_WARNING("You finish [overloaded ? "overloading" : "restoring"] the safeties on [src].")) + log_game("[key_name(user)] has [overloaded ? "overloaded" : "restored the safeties of"] a generator.") + return -/obj/structure/machinery/power/fusion_engine/get_examine_text(mob/user) . = ..() - if(isxeno(user)) - if(overloaded) - . += SPAN_INFO("You could attack this to stop the overload process.") - - else if(ishuman(user)) - if(buildstate) - . += SPAN_INFO("It's broken.") - switch(buildstate) - if(1) - . += SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.") - if(2) - . += SPAN_INFO("Use a wirecutters, then wrench to repair it.") - if(3) - . += SPAN_INFO("Use a wrench to repair it.") - return FALSE - - if(SShijack.sd_unlocked && skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - if(!overloaded) - . += SPAN_INFO("You could overload this with a multitool.") - else - . += SPAN_INFO("You could restore its safeties with a multitool.") - if(!is_on) - . += SPAN_INFO("It looks offline.") - else - . += SPAN_INFO("The power gauge reads: [power_gen_percent]%") - if(fusion_cell) - . += SPAN_INFO("You can see a fuel cell in the receptacle.") - if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - switch(fusion_cell.get_fuel_percent()) - if(0 to 10) - . += SPAN_DANGER("The fuel cell is critically low.") - if(10 to 25) - . += SPAN_WARNING("The fuel cell is running low.") - if(25 to 50) - . += SPAN_INFO("The fuel cell is a little under halfway.") - if(50 to 75) - . += SPAN_INFO("The fuel cell is a little above halfway.") - if(75 to INFINITY) - . += SPAN_INFO("The fuel cell is nearly full.") - else - . += SPAN_INFO("There is no fuel cell in the receptacle.") - -/obj/structure/machinery/power/fusion_engine/update_icon() +/obj/structure/machinery/power/reactor/update_icon() switch(buildstate) - if(0) - if(fusion_cell) - if(overloaded) - icon_state = "overloaded" - else - var/pstatus = is_on ? "on" : "off" - switch(fusion_cell.get_fuel_percent()) - if(0 to 10) - icon_state = "[pstatus]-10" - if(10 to 25) - icon_state = "[pstatus]-25" - if(25 to 50) - icon_state = "[pstatus]-50" - if(50 to 75) - icon_state = "[pstatus]-75" - if(75 to INFINITY) - icon_state = "[pstatus]-100" - else - icon_state = "off" - - if(1) + if(BUILDSTATE_DAMAGE_WELD) icon_state = "weld" - if(2) + if(BUILDSTATE_DAMAGE_WIRE) icon_state = "wire" - if(3) + if(BUILDSTATE_DAMAGE_WRENCH) icon_state = "wrench" + if(buildstate) + return + if(!is_on) + icon_state = "off" + return -/obj/structure/machinery/power/fusion_engine/proc/check_failure() - if(cur_tick < FUSION_ENGINE_FAIL_CHECK_TICKS) //Nope, not time for it yet - cur_tick++ - return 0 - cur_tick = 0 //reset the timer - if(rand(1,100) < fail_rate) //Oh snap, we failed! Shut it down! - if(prob(25)) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and a fuse blows! Use wirecutters, then a wrench to repair it.")]") - buildstate = 2 - else - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and sprays random pieces everywhere! Use a wrench to repair it.")]") - buildstate = 3 - is_on = 0 - power_gen_percent = 0 - update_icon() - stop_processing() - return 1 - else - return 0 + if(require_fusion_cell && !fusion_cell) + icon_state = "cell_missing" + return -/obj/structure/machinery/power/fusion_engine/proc/set_overloading(new_overloading) - if(overloaded == new_overloading) + if(overloaded) + icon_state = "overloaded" return - overloaded = new_overloading - SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GENERATOR_SET_OVERLOADING, overloaded) + var/abs_percent = 100 + var/closest_percent + for(var/current_percent in power_percent_states) + if(abs(current_percent-power_gen_percent) >= abs_percent) + continue + abs_percent = abs(current_percent-power_gen_percent) + closest_percent = current_percent + if(!abs_percent) + break + icon_state = "on-[closest_percent]" + +/obj/structure/machinery/power/reactor/ex_act(severity) + . = FALSE + if(severity <= EXPLOSION_THRESHOLD_MLOW) + return + + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(7, FALSE, loc) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + sparks.start() + + if(!overloaded) + return + set_overloading(FALSE) + +/obj/structure/machinery/power/reactor/bullet_act(obj/projectile/bullet) + . = ..() + if(buildstate >= BUILDSTATE_DAMAGE_WELD) + return + if(!prob(5)) + return + + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(7, FALSE, loc) + buildstate = clamp(buildstate + 1, BUILDSTATE_FUNCTIONAL, BUILDSTATE_DAMAGE_WELD) + sparks.start() + +/obj/structure/machinery/power/reactor/proc/start_functioning(enabling) + if(enabling) + is_on = TRUE + start_processing() + update_icon() + return + is_on = FALSE + power_gen_percent = 0 + cur_tick = 0 + set_overloading(FALSE) update_icon() +/obj/structure/machinery/power/reactor/proc/attempt_repair(obj/item/tool, repair_type, mob/user) + if(!tool || !repair_type) + return + if(!buildstate) + to_chat(user, SPAN_NOTICE("[src] does not need repairs.")) + return + if(buildstate != repair_type) + to_chat(user, SPAN_WARNING("You need a different tool to repair [src].")) + return + var/repair_time = 20 SECONDS + repair_time *= user.get_skill_duration_multiplier(SKILL_ENGINEER) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + repair_time += 5 SECONDS -//FUEL CELL -/obj/item/fuelCell - name = "\improper WL-6 universal fuel cell" - icon = 'icons/obj/structures/machinery/shuttle-parts.dmi' - icon_state = "cell-full" - desc = "A rechargeable fuel cell designed to work as a power source for the Cheyenne-Class transport or for Westingland S-52 Reactors." - var/fuel_amount = 100 - var/max_fuel_amount = 100 - -/obj/item/fuelCell/update_icon() - switch(get_fuel_percent()) - if(-INFINITY to 0) - icon_state = "cell-empty" - if(0 to 25) - icon_state = "cell-low" - if(25 to 75) - icon_state = "cell-medium" - if(75 to 99) - icon_state = "cell-high" - else - icon_state = "cell-full" + to_chat(user, SPAN_NOTICE("You start repairing [src] with [tool].")) + if(!do_after(user, repair_time, INTERRUPT_ALL, BUSY_ICON_BUILD, src)) + return -/obj/item/fuelCell/get_examine_text(mob/user) - . = ..() - if(ishuman(user)) - . += "The fuel indicator reads: [get_fuel_percent()]%" + return TRUE + +/obj/structure/machinery/power/reactor/proc/set_overloading(new_overloading) + if(!is_ship_reactor) + return + if(overloaded == new_overloading) + return + + overloaded = new_overloading + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GENERATOR_SET_OVERLOADING, overloaded) + update_icon() -/obj/item/fuelCell/proc/get_fuel_percent() - return round(100*fuel_amount/max_fuel_amount) +/obj/structure/machinery/power/reactor/colony + name = "\improper G-11 geothermal generator" + icon = 'icons/obj/structures/machinery/geothermal.dmi' + desc = "A thermoelectric generator sitting atop a plasma-filled borehole." -/obj/item/fuelCell/proc/is_regenerated() - return (fuel_amount == max_fuel_amount) + is_on = FALSE + power_generation_max = 100000 //100,000W at full capacity + original_fail_rate = 0 -/obj/item/fuelCell/proc/give(amount) - fuel_amount += amount - if(fuel_amount > max_fuel_amount) - fuel_amount = max_fuel_amount +#undef BUILDSTATE_FUNCTIONAL +#undef BUILDSTATE_DAMAGE_WELD +#undef BUILDSTATE_DAMAGE_WIRE +#undef BUILDSTATE_DAMAGE_WRENCH +#undef REACTOR_FAIL_CHECK_TICKS diff --git a/code/game/machinery/groundmap_geothermal.dm b/code/game/machinery/groundmap_geothermal.dm deleted file mode 100644 index 808c717e88..0000000000 --- a/code/game/machinery/groundmap_geothermal.dm +++ /dev/null @@ -1,468 +0,0 @@ -/obj/structure/machinery/power/geothermal - name = "\improper G-11 geothermal generator" - icon = 'icons/obj/structures/machinery/geothermal.dmi' - icon_state = "weld" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is heavily damaged. Use a blowtorch, wirecutters, then wrench to repair it." - anchored = TRUE - density = TRUE - directwired = 0 //Requires a cable directly underneath - unslashable = TRUE - unacidable = TRUE //NOPE.jpg - var/power_gen_percent = 0 //100,000W at full capacity - var/power_generation_max = 100000 //Full capacity - var/powernet_connection_failed = 0 //Logic checking for powernets - var/buildstate = 1 //What state of building it are we on, 0-3, 1 is "broken", the default - var/is_on = 0 //Is this damn thing on or what? - var/fail_rate = 10 //% chance of failure each fail_tick check - var/fail_check_ticks = 100 //Check for failure every this many ticks - var/cur_tick = 0 //Tick updater - power_machine = TRUE - -//We don't want to cut/update the power overlays every single proc. Just when it actually changes. This should save on CPU cycles. Efficiency! -/obj/structure/machinery/power/geothermal/update_icon() - ..() - if(!buildstate && is_on) - desc = "A thermoelectric generator sitting atop a borehole dug deep in the planet's surface. It generates energy by boiling the plasma steam that rises from the well.\nIt is old technology and has a large failure rate, and must be repaired frequently.\nIt is currently on, and beeping randomly amid faint hisses of steam." - switch(power_gen_percent) - if(25) icon_state = "on[power_gen_percent]" - if(50) icon_state = "on[power_gen_percent]" - if(75) icon_state = "on[power_gen_percent]" - if(100) icon_state = "on[power_gen_percent]" - - - else if (!buildstate && !is_on) - icon_state = "off" - desc = "A thermoelectric generator sitting atop a borehole dug deep in the planet's surface. It generates energy by boiling the plasma steam that rises from the well.\nIt is old technology and has a large failure rate, and must be repaired frequently.\nIt is currently turned off and silent." - else - if(buildstate == 1) - icon_state = "weld" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is heavily damaged. Use a blowtorch, wirecutters, then wrench to repair it." - else if(buildstate == 2) - icon_state = "wire" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is damaged. Use a wirecutters, then wrench to repair it." - else - icon_state = "wrench" - desc = "A thermoelectric generator sitting atop a plasma-filled borehole. This one is lightly damaged. Use a wrench to repair it." - -/obj/structure/machinery/power/geothermal/Initialize(mapload, ...) - . = ..() - if(!connect_to_network()) //Should start with a cable piece underneath, if it doesn't, something's messed up in mapping - powernet_connection_failed = 1 - -/obj/structure/machinery/power/geothermal/power_change() - return - -/obj/structure/machinery/power/geothermal/process() - if(!is_on || buildstate || !anchored) //Default logic checking - return 0 - - if(!powernet && !powernet_connection_failed) //Powernet checking, make sure there's valid cables & powernets - if(!connect_to_network()) - powernet_connection_failed = 1 //God damn it, where'd our network go - is_on = 0 - stop_processing() - // Error! Check again in 15 seconds. Someone could have blown/acided or snipped a cable - addtimer(VARSET_CALLBACK(src, powernet_connection_failed, FALSE), 15 SECONDS) - else if(powernet) //All good! Let's fire it up! - if(!check_failure()) //Wait! Check to see if it breaks during processing - update_icon() - if(power_gen_percent < 100) power_gen_percent++ - switch(power_gen_percent) - if(10) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to whirr as it powers up.")]") - if(50) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] begins to hum loudly as it reaches half capacity.")]") - if(99) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] rumbles loudly as the combustion and thermal chambers reach full strength.")]") - add_avail(power_generation_max * (power_gen_percent / 100) ) //Nope, all good, just add the power - -/obj/structure/machinery/power/geothermal/proc/check_failure() - cur_tick++ - if(cur_tick < fail_check_ticks) //Nope, not time for it yet - return 0 - else if(cur_tick > fail_check_ticks) //Went past with no fail, reset the timer - cur_tick = 0 - if(rand(1,100) < fail_rate) //Oh snap, we failed! Shut it down! - if(rand(0,3) == 0) - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and a fuse blows! Use wirecutters, then a wrench to repair it.")]") - buildstate = 2 - icon_state = "wire" - else - visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[src] beeps wildly and sprays random pieces everywhere! Use a wrench to repair it.")]") - buildstate = 3 - icon_state = "wrench" - is_on = 0 - power_gen_percent = 0 - update_icon() - cur_tick = 0 - stop_processing() - return 1 - return 0 //Nope, all fine - -/obj/structure/machinery/power/geothermal/attack_hand(mob/user as mob) - if(!anchored) return 0 //Shouldn't actually be possible - if(user.is_mob_incapacitated()) return 0 - if(!ishuman(user)) - to_chat(user, SPAN_DANGER("You have no idea how to use that.")) //No xenos or mankeys - return 0 - - add_fingerprint(user) - - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how this thing works...")) - return 0 - - if(buildstate == 1) - to_chat(usr, SPAN_INFO("Use a blowtorch, then wirecutters, then wrench to repair it.")) - return 0 - else if (buildstate == 2) - to_chat(usr, SPAN_INFO("Use a wirecutters, then wrench to repair it.")) - return 0 - else if (buildstate == 3) - to_chat(usr, SPAN_INFO("Use a wrench to repair it.")) - return 0 - if(is_on) - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps softly and the humming stops as [usr] shuts off the turbines.")]") - is_on = 0 - power_gen_percent = 0 - cur_tick = 0 - icon_state = "off" - stop_processing() - return 1 - visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("[src] beeps loudly as [usr] turns on the turbines and the generator begins spinning up.")]") - icon_state = "on10" - is_on = 1 - cur_tick = 0 - start_processing() - return 1 - -/obj/structure/machinery/power/geothermal/attackby(obj/item/O as obj, mob/user as mob) - if(iswelder(O)) - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(buildstate == 1 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - var/obj/item/tool/weldingtool/WT = O - if(WT.remove_fuel(1, user)) - - playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s internal damage."), - SPAN_NOTICE("You start welding [src]'s internal damage.")) - if(do_after(user, 200 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 1 || is_on || !WT.isOn()) - return FALSE - playsound(loc, 'sound/items/Welder2.ogg', 25, 1) - buildstate = 2 - user.visible_message(SPAN_NOTICE("[user] welds [src]'s internal damage."), - SPAN_NOTICE("You weld [src]'s internal damage.")) - update_icon() - return TRUE - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return - else if(HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) - if(buildstate == 2 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts securing [src]'s wiring."), - SPAN_NOTICE("You start securing [src]'s wiring.")) - if(do_after(user, 120 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 12)) - if(buildstate != 2 || is_on) - return FALSE - playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) - buildstate = 3 - user.visible_message(SPAN_NOTICE("[user] secures [src]'s wiring."), - SPAN_NOTICE("You secure [src]'s wiring.")) - update_icon() - return TRUE - else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) - if(buildstate == 3 && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) - return 0 - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts repairing [src]'s tubing and plating."), - SPAN_NOTICE("You start repairing [src]'s tubing and plating.")) - if(do_after(user, 150 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(buildstate != 3 || is_on) - return FALSE - playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) - buildstate = 0 - user.count_niche_stat(STATISTICS_NICHE_REPAIR_GENERATOR) - user.visible_message(SPAN_NOTICE("[user] repairs [src]'s tubing and plating."), - SPAN_NOTICE("You repair [src]'s tubing and plating.")) - update_icon() - return TRUE - else - return ..() //Deal with everything else, like hitting with stuff - -/obj/structure/machinery/power/geothermal/ex_act(severity, direction) - return FALSE //gameplay-wise these should really never go away - -//Putting these here since it's power-related -/obj/structure/machinery/colony_floodlight_switch - name = "Colony Floodlight Switch" - icon = 'icons/obj/structures/machinery/power.dmi' - icon_state = "panelnopower" - desc = "This switch controls the floodlights surrounding the archaeology complex. It only functions when there is power." - density = FALSE - anchored = TRUE - var/ispowered = FALSE - var/turned_on = 0 //has to be toggled in engineering - use_power = USE_POWER_IDLE - unslashable = TRUE - unacidable = TRUE - var/list/floodlist = list() // This will save our list of floodlights on the map - power_machine = TRUE - -/obj/structure/machinery/colony_floodlight_switch/Initialize(mapload, ...) - . = ..() - return INITIALIZE_HINT_LATELOAD - -/obj/structure/machinery/colony_floodlight_switch/LateInitialize() - . = ..() - for(var/obj/structure/machinery/colony_floodlight/F in machines) - floodlist += F - F.fswitch = src - start_processing() - -/obj/structure/machinery/colony_floodlight_switch/Destroy() - for(var/obj/structure/machinery/colony_floodlight/floodlight as anything in floodlist) - floodlight.fswitch = null - floodlist = null - return ..() - - -/obj/structure/machinery/colony_floodlight_switch/update_icon() - if(!ispowered) - icon_state = "panelnopower" - else if(turned_on) - icon_state = "panelon" - else - icon_state = "paneloff" - -/obj/structure/machinery/colony_floodlight_switch/process() - var/lightpower = 0 - for(var/obj/structure/machinery/colony_floodlight/C in floodlist) - if(!C.is_lit) - continue - lightpower += C.power_tick - use_power(lightpower) - -/obj/structure/machinery/colony_floodlight_switch/power_change() - ..() - if((stat & NOPOWER)) - if(ispowered && turned_on) - toggle_lights() - ispowered = FALSE - turned_on = 0 - update_icon() - else - ispowered = TRUE - update_icon() - -/obj/structure/machinery/colony_floodlight_switch/proc/toggle_lights() - for(var/obj/structure/machinery/colony_floodlight/F in floodlist) - spawn(rand(0,50)) - F.is_lit = !F.is_lit - if(!F.damaged) - if(F.is_lit) //Shut it down - F.set_light(F.lum_value) - else - F.set_light(0) - F.update_icon() - return 0 - -/obj/structure/machinery/colony_floodlight_switch/attack_hand(mob/user as mob) - if(!ishuman(user)) - to_chat(user, "Nice try.") - return 0 - if(!ispowered) - to_chat(user, "Nothing happens.") - return 0 - playsound(src,'sound/items/Deconstruct.ogg', 30, 1) - use_power(5) - toggle_lights() - turned_on = !(src.turned_on) - update_icon() - return 1 - - -#define FLOODLIGHT_REPAIR_UNSCREW 0 -#define FLOODLIGHT_REPAIR_CROWBAR 1 -#define FLOODLIGHT_REPAIR_WELD 2 -#define FLOODLIGHT_REPAIR_CABLE 3 -#define FLOODLIGHT_REPAIR_SCREW 4 - -/obj/structure/machinery/colony_floodlight - name = "Colony Floodlight" - icon = 'icons/obj/structures/machinery/big_floodlight.dmi' - icon_state = "flood_s_off" - density = TRUE - anchored = TRUE - layer = ABOVE_XENO_LAYER - var/damaged = 0 //Can be smashed by xenos - var/is_lit = 0 //whether the floodlight is switched to on or off. Does not necessarily mean it emits light. - unslashable = TRUE - unacidable = TRUE - var/power_tick = 50 // power each floodlight takes up per process - use_power = USE_POWER_NONE //It's the switch that uses the actual power, not the lights - var/obj/structure/machinery/colony_floodlight_switch/fswitch = null //Reverse lookup for power grabbing in area - var/lum_value = 7 - var/repair_state = 0 - health = 150 - -/obj/structure/machinery/colony_floodlight/Destroy() - if(fswitch) - fswitch.floodlist -= src - fswitch = null - . = ..() - -/obj/structure/machinery/colony_floodlight/update_icon() - if(damaged) - icon_state = "flood_s_dmg" - else if(is_lit) - icon_state = "flood_s_on" - else - icon_state = "flood_s_off" - -/obj/structure/machinery/colony_floodlight/attackby(obj/item/I, mob/user) - if(damaged) - if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) - return 0 - - if(repair_state == FLOODLIGHT_REPAIR_UNSCREW) - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts unscrewing [src]'s maintenance hatch."), \ - SPAN_NOTICE("You start unscrewing [src]'s maintenance hatch.")) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_UNSCREW) - return - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - repair_state = FLOODLIGHT_REPAIR_CROWBAR - user.visible_message(SPAN_NOTICE("[user] unscrews [src]'s maintenance hatch."), \ - SPAN_NOTICE("You unscrew [src]'s maintenance hatch.")) - - else if(repair_state == FLOODLIGHT_REPAIR_SCREW) - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts screwing [src]'s maintenance hatch closed."), \ - SPAN_NOTICE("You start screwing [src]'s maintenance hatch closed.")) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_SCREW) - return - playsound(loc, 'sound/items/Screwdriver.ogg', 25, 1) - damaged = 0 - repair_state = FLOODLIGHT_REPAIR_UNSCREW - health = initial(health) - user.visible_message(SPAN_NOTICE("[user] screws [src]'s maintenance hatch closed."), \ - SPAN_NOTICE("You screw [src]'s maintenance hatch closed.")) - if(is_lit) - set_light(lum_value) - update_icon() - return TRUE - - else if(HAS_TRAIT(I, TRAIT_TOOL_CROWBAR)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) - return 0 - - if(repair_state == FLOODLIGHT_REPAIR_CROWBAR) - playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts prying [src]'s maintenance hatch open."),\ - SPAN_NOTICE("You start prying [src]'s maintenance hatch open.")) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_CROWBAR) - return - playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) - repair_state = FLOODLIGHT_REPAIR_WELD - user.visible_message(SPAN_NOTICE("[user] pries [src]'s maintenance hatch open."),\ - SPAN_NOTICE("You pry [src]'s maintenance hatch open.")) - return TRUE - - else if(iswelder(I)) - if(!HAS_TRAIT(I, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - var/obj/item/tool/weldingtool/WT = I - - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) - return 0 - - if(repair_state == FLOODLIGHT_REPAIR_WELD) - if(WT.remove_fuel(1, user)) - playsound(loc, 'sound/items/weldingtool_weld.ogg', 25) - user.visible_message(SPAN_NOTICE("[user] starts welding [src]'s damage."), - SPAN_NOTICE("You start welding [src]'s damage.")) - if(do_after(user, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(QDELETED(src) || !WT.isOn() || repair_state != FLOODLIGHT_REPAIR_WELD) - return - playsound(loc, 'sound/items/Welder2.ogg', 25, 1) - repair_state = FLOODLIGHT_REPAIR_CABLE - user.visible_message(SPAN_NOTICE("[user] welds [src]'s damage."), - SPAN_NOTICE("You weld [src]'s damage.")) - return 1 - else - to_chat(user, SPAN_WARNING("You need more welding fuel to complete this task.")) - return TRUE - - else if(iscoil(I)) - var/obj/item/stack/cable_coil/C = I - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You have no clue how to repair [src].")) - return 0 - - if(repair_state == FLOODLIGHT_REPAIR_CABLE) - if(C.get_amount() < 2) - to_chat(user, SPAN_WARNING("You need two coils of wire to replace the damaged cables.")) - return - playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] starts replacing [src]'s damaged cables."),\ - SPAN_NOTICE("You start replacing [src]'s damaged cables.")) - if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - if(QDELETED(src) || repair_state != FLOODLIGHT_REPAIR_CABLE) - return - if(C.use(2)) - playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - repair_state = FLOODLIGHT_REPAIR_SCREW - user.visible_message(SPAN_NOTICE("[user] starts replaces [src]'s damaged cables."),\ - SPAN_NOTICE("You replace [src]'s damaged cables.")) - return TRUE - - - ..() - return 0 - -/obj/structure/machinery/colony_floodlight/attack_hand(mob/user) - if(ishuman(user)) - if(damaged) - to_chat(user, SPAN_WARNING("[src] is damaged.")) - else if(!is_lit) - to_chat(user, SPAN_WARNING("Nothing happens. Looks like it's powered elsewhere.")) - return 0 - ..() - -/obj/structure/machinery/colony_floodlight/get_examine_text(mob/user) - . = ..() - if(ishuman(user)) - if(damaged) - . += SPAN_WARNING("It is damaged.") - if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - switch(repair_state) - if(FLOODLIGHT_REPAIR_UNSCREW) . += SPAN_INFO("You must first unscrew its maintenance hatch.") - if(FLOODLIGHT_REPAIR_CROWBAR) . += SPAN_INFO("You must crowbar its maintenance hatch open.") - if(FLOODLIGHT_REPAIR_WELD) . += SPAN_INFO("You must weld the damage to it.") - if(FLOODLIGHT_REPAIR_CABLE) . += SPAN_INFO("You must replace its damaged cables.") - if(FLOODLIGHT_REPAIR_SCREW) . += SPAN_INFO("You must screw its maintenance hatch closed.") - else if(!is_lit) - . += SPAN_INFO("It doesn't seem powered.") - -#undef FLOODLIGHT_REPAIR_UNSCREW -#undef FLOODLIGHT_REPAIR_CROWBAR -#undef FLOODLIGHT_REPAIR_WELD -#undef FLOODLIGHT_REPAIR_CABLE -#undef FLOODLIGHT_REPAIR_SCREW diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm deleted file mode 100644 index 2f8f113ddd..0000000000 --- a/code/game/machinery/hologram.dm +++ /dev/null @@ -1,220 +0,0 @@ -/* Holograms! - * Contains: - * Hologram - * Holopad - * Other stuff - */ - - - -/* - * Hologram - */ - -/obj/structure/machinery/hologram - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 5 - active_power_usage = 100 - var/obj/effect/overlay/hologram //The projection itself. If there is one, the instrument is on, off otherwise. - -/obj/structure/machinery/hologram/ex_act(severity) - switch(severity) - if(0 to EXPLOSION_THRESHOLD_LOW) - if (prob(5)) - qdel(src) - if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) - if (prob(50)) - qdel(src) - if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) - qdel(src) - -/obj/structure/machinery/hologram/Destroy() - if(hologram) - clear_holo() - return ..() - -/obj/structure/machinery/hologram/proc/clear_holo() - if(hologram) - qdel(hologram) - hologram = null - - - -/* - * Holopad - */ - -/* -Revised. Original based on space ninja hologram code. Which is also mine. /N -How it works: -AI clicks on holopad in camera view. View centers on holopad. -AI clicks again on the holopad to display a hologram. Hologram stays as long as AI is looking at the pad and it (the hologram) is in range of the pad. -AI can use the directional keys to move the hologram around, provided the above conditions are met and the AI in question is the holopad's master. -Only one AI may project from a holopad at any given time. -AI may cancel the hologram at any time by clicking on the holopad once more. - -Possible to do for anyone motivated enough: - Give an AI variable for different hologram icons. - Itegrate EMP effect to disable the unit. -*/ - - -// HOLOPAD MODE -// 0 = RANGE BASED -// 1 = AREA BASED -var/const/HOLOPAD_MODE = 0 - -/obj/structure/machinery/hologram/holopad - name = "\improper AI holopad" - desc = "It's a floor-mounted device for projecting holographic images. It is activated remotely." - icon_state = "holopad0" - - layer = TURF_LAYER+0.1 //Preventing mice and drones from sneaking under them. - - var/mob/living/silicon/ai/master //Which AI, if any, is controlling the object? Only one AI may control a hologram at any time. - var/last_request = 0 //to prevent request spam. ~Carn - var/holo_range = 5 // Change to change how far the AI can move away from the holopad before deactivating. - -/obj/structure/machinery/hologram/holopad/Initialize() - . = ..() - flags_atom |= USES_HEARING - -/obj/structure/machinery/hologram/holopad/Destroy() - QDEL_NULL(master) - . = ..() - -/obj/structure/machinery/hologram/holopad/attack_hand(mob/living/carbon/human/user) //Carn: Hologram requests. - if(!istype(user)) - return - if(alert(user,"Would you like to request an AI's presence?",,"Yes","No") == "Yes") - if(last_request + 200 < world.time) //don't spam the AI with requests you jerk! - last_request = world.time - to_chat(user, SPAN_NOTICE("You request an AI's presence.")) - var/area/area = get_area(src) - for(var/mob/living/silicon/ai/AI in GLOB.alive_mob_list) - if(!AI.client) continue - to_chat(AI, SPAN_INFO("Your presence is requested at \the [area].")) - else - to_chat(user, SPAN_NOTICE("A request for AI presence was already sent recently.")) - -/obj/structure/machinery/hologram/holopad/attack_remote(mob/living/silicon/ai/user) - if (!istype(user)) - return - /*There are pretty much only three ways to interact here. - I don't need to check for client since they're clicking on an object. - This may change in the future but for now will suffice.*/ - if(user.eyeobj.loc != src.loc)//Set client eye on the object if it's not already. - user.eyeobj.setLoc(get_turf(src)) - else if(!hologram)//If there is no hologram, possibly make one. - activate_holo(user) - else if(master==user)//If there is a hologram, remove it. But only if the user is the master. Otherwise do nothing. - clear_holo() - return - -/obj/structure/machinery/hologram/holopad/proc/activate_holo(mob/living/silicon/ai/user) - if(!(stat & NOPOWER) && user.eyeobj.loc == src.loc)//If the projector has power and client eye is on it. - if(!hologram)//If there is not already a hologram. - create_holo(user)//Create one. - src.visible_message("A holographic image of [user] flicks to life right before your eyes!") - else - to_chat(user, SPAN_DANGER("ERROR: \black Image feed in progress.")) - else - to_chat(user, SPAN_DANGER("ERROR: \black Unable to project hologram.")) - return - -/*This is the proc for special two-way communication between AI and holopad/people talking near holopad. -For the other part of the code, check silicon say.dm. Particularly robot talk.*/ -/obj/structure/machinery/hologram/holopad/hear_talk(mob/living/M, text, verb) - if(M&&hologram&&master)//Master is mostly a safety in case lag hits or something. - if(!master.say_understands(M))//The AI will be able to understand most mobs talking through the holopad. - text = stars(text) - var/name_used = M.GetVoice() - //This communication is imperfect because the holopad "filters" voices and is only designed to connect to the master only. - var/rendered = "Holopad received, [name_used] [verb], \"[text]\"" - master.show_message(rendered, SHOW_MESSAGE_AUDIBLE) - return - -/obj/structure/machinery/hologram/holopad/proc/create_holo(mob/living/silicon/ai/A, turf/T = loc) - hologram = new(T)//Spawn a blank effect at the location. - hologram.icon = A.holo_icon - hologram.mouse_opacity = MOUSE_OPACITY_TRANSPARENT//So you can't click on it. - hologram.layer = FLY_LAYER//Above all the other objects/mobs. Or the vast majority of them. - hologram.anchored = TRUE//So space wind cannot drag it. - hologram.name = "[A.name] (Hologram)"//If someone decides to right click. - hologram.set_light(2) //hologram lighting - set_light(2) //pad lighting - icon_state = "holopad1" - A.holo = src - master = A//AI is the master. - use_power = USE_POWER_ACTIVE//Active power usage. - return 1 - -/obj/structure/machinery/hologram/holopad/clear_holo() -// hologram.set_light(0)//Clear lighting. //handled by the lighting controller when its ower is deleted - if(hologram) - qdel(hologram)//Get rid of hologram. - hologram = null - if(master.holo == src) - master.holo = null - master = null//Null the master, since no-one is using it now. - set_light(0) //pad lighting (hologram lighting will be handled automatically since its owner was deleted) - icon_state = "holopad0" - use_power = USE_POWER_IDLE//Passive power usage. - return 1 - -/obj/structure/machinery/hologram/holopad/process() - if(hologram)//If there is a hologram. - if(master && !master.stat && master.client && master.eyeobj)//If there is an AI attached, it's not incapacitated, it has a client, and the client eye is centered on the projector. - if(!(stat & NOPOWER))//If the machine has power. - if((HOLOPAD_MODE == 0 && (get_dist(master.eyeobj, src) <= holo_range))) - return 1 - - else if (HOLOPAD_MODE == 1) - - var/area/holo_area = get_area(src) - var/area/eye_area = get_area(master.eyeobj) - - if(eye_area == holo_area) - return 1 - - clear_holo()//If not, we want to get rid of the hologram. - return 1 - -/obj/structure/machinery/hologram/holopad/proc/move_hologram() - if(hologram) - step_to(hologram, master.eyeobj) // So it turns. - hologram.forceMove(get_turf(master.eyeobj)) - - return 1 - - -/* -Holographic project of everything else. - -/mob/verb/hologram_test() - set name = "Hologram Debug New" - set category = "CURRENT DEBUG" - - var/obj/effect/overlay/hologram = new(loc)//Spawn a blank effect at the location. - var/icon/flat_icon = icon(getFlatIcon(src,0))//Need to make sure it's a new icon so the old one is not reused. - flat_icon.ColorTone(rgb(125,180,225))//Let's make it bluish. - flat_icon.ChangeOpacity(0.5)//Make it half transparent. - var/input = input("Select what icon state to use in effect.",,"") - if(input) - var/icon/alpha_mask = new('icons/effects/effects.dmi', "[input]") - flat_icon.AddAlphaMask(alpha_mask)//Finally, let's mix in a distortion effect. - hologram.icon = flat_icon - - to_world("Your icon should appear now.") - return -*/ - -/* - * Other Stuff: Is this even used? - */ -/obj/structure/machinery/hologram/projector - name = "hologram projector" - desc = "It makes a hologram appear...with magnets or something..." - icon = 'icons/obj/structures/props/stationobjs.dmi' - icon_state = "holopad0" diff --git a/code/game/machinery/holosign.dm b/code/game/machinery/holosign.dm index 2d4182772c..41c63d4659 100644 --- a/code/game/machinery/holosign.dm +++ b/code/game/machinery/holosign.dm @@ -63,7 +63,7 @@ else icon_state = "light0" - for(var/obj/structure/machinery/holosign/M in machines) + for(var/obj/structure/machinery/holosign/M in GLOB.machines) if (M.id == src.id) INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/holosign, toggle)) diff --git a/code/game/machinery/igniter.dm b/code/game/machinery/igniter.dm index d5a0505fca..6109833004 100644 --- a/code/game/machinery/igniter.dm +++ b/code/game/machinery/igniter.dm @@ -124,11 +124,11 @@ active = 1 icon_state = "launcheract" - for(var/obj/structure/machinery/sparker/M in machines) + for(var/obj/structure/machinery/sparker/M in GLOB.machines) if (M.id == src.id) INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/sparker, ignite)) - for(var/obj/structure/machinery/igniter/M in machines) + for(var/obj/structure/machinery/igniter/M in GLOB.machines) if(M.id == src.id) use_power(50) M.on = !( M.on ) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 4b863bec04..f4a3a9f25c 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -27,7 +27,7 @@ if(reagents.total_volume) var/image/filling = image('icons/obj/structures/machinery/iv_drip.dmi', src, "reagent") - var/percent = round((reagents.total_volume / beaker.volume) * 100) + var/percent = floor((reagents.total_volume / beaker.volume) * 100) switch(percent) if(0 to 9) filling.icon_state = "reagent0" if(10 to 24) filling.icon_state = "reagent10" @@ -101,7 +101,7 @@ for(var/datum/reagent/chem in beaker.reagents.reagent_list) reagentnames += ";[chem.name]" - log_admin("[key_name(user)] put a [beaker] into [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]).") + log_admin("[key_name(user)] put \a [beaker] into [src], containing [reagentnames] at ([src.loc.x],[src.loc.y],[src.loc.z]).") to_chat(user, "You attach \the [container] to \the [src].") update_beam() @@ -190,7 +190,7 @@ . += "The IV drip is [mode ? "injecting" : "taking blood"]." if(beaker) - if(beaker.reagents && beaker.reagents.reagent_list.len) + if(beaker.reagents && length(beaker.reagents.reagent_list)) . += SPAN_NOTICE(" Attached is \a [beaker] with [beaker.reagents.total_volume] units of liquid.") else . += SPAN_NOTICE(" Attached is an empty [beaker].") diff --git a/code/game/machinery/kitchen/gibber.dm b/code/game/machinery/kitchen/gibber.dm index 08a3d5c4df..9e6a219896 100644 --- a/code/game/machinery/kitchen/gibber.dm +++ b/code/game/machinery/kitchen/gibber.dm @@ -20,37 +20,6 @@ if (PF) PF.flags_can_pass_all = PASS_HIGH_OVER_ONLY|PASS_AROUND|PASS_OVER_THROW_ITEM -//auto-gibs anything that bumps into it -/obj/structure/machinery/gibber/autogibber - var/turf/input_plate - -/obj/structure/machinery/gibber/autogibber/New() - ..() - spawn(5) - for(var/i in cardinal) - var/obj/structure/machinery/mineral/input/input_obj = locate( /obj/structure/machinery/mineral/input, get_step(loc, i) ) - if(input_obj) - if(isturf(input_obj.loc)) - input_plate = input_obj.loc - qdel(input_obj) - break - - if(!input_plate) - log_misc("a [src] didn't find an input plate.") - return - -/obj/structure/machinery/gibber/autogibber/Collided(atom/A) - if(!input_plate) return - - if(ismob(A)) - var/mob/M = A - - if(M.loc == input_plate - ) - M.forceMove(src) - M.gib() - - /obj/structure/machinery/gibber/New() ..() overlays += image('icons/obj/structures/machinery/kitchen.dmi', "grjam") @@ -105,15 +74,28 @@ to_chat(user, SPAN_WARNING("You need a better grip to do that!")) return - if(victim.abiotic(1)) + if(victim.abiotic(TRUE)) to_chat(user, SPAN_WARNING("Subject may not have abiotic items on.")) return user.visible_message(SPAN_DANGER("[user] starts to put [victim] into the gibber!")) add_fingerprint(user) + ///If synth is getting gibbed, we will 'soft gib' them, but this is still pretty LRP so let admin know. + if(issynth(victim) && ishuman_strict(user) && !occupant) + var/turf/turf_ref = get_turf(user) + var/area/area = get_area(user) + message_admins("ALERT: [user] ([user.key]) is trying to shove [victim] in a gibber! (They are a synth, so this will delimb them) ([victim.key]) in [area.name] [ADMIN_JMP(turf_ref)]") + log_attack("[key_name(user)] tried to delimb [victim] using a gibber ([victim.key]) in [area.name]") + to_chat(user, SPAN_DANGER("What are you doing...")) + if(do_after(user, 30 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE && grabbed && grabbed.grabbed_thing && !occupant)) + user.visible_message(SPAN_DANGER("[user] stuffs [victim] into the gibber!")) + victim.forceMove(src) + occupant = victim + update_icon() + ///If someone's being LRP and doing funny chef shit, this lets admins know. This *shouldn't* flag preds, though. - if(ishuman(victim) && ishuman_strict(user) && !occupant) + else if(ishuman(victim) && ishuman_strict(user) && !occupant) var/turf/turf_ref = get_turf(user) var/area/area = get_area(user) message_admins("ALERT: [user] ([user.key]) is trying to gib [victim] ([victim.key]) in [area.name] [ADMIN_JMP(turf_ref)]") @@ -142,18 +124,23 @@ add_fingerprint(usr) return -/obj/structure/machinery/gibber/proc/go_out() +/obj/structure/machinery/gibber/proc/go_out(launch = FALSE) if (!occupant) - return + return FALSE for(var/obj/O in src) O.forceMove(loc) if (occupant.client) occupant.client.eye = occupant.client.mob occupant.client.perspective = MOB_PERSPECTIVE occupant.forceMove(loc) + if(launch) + // yeet them out of the gibber + visible_message(SPAN_DANGER("[occupant] suddenly is launched out of the [src]!")) + var/turf/Tx = locate(x - 3, y, z) + occupant.throw_atom(Tx, 3, SPEED_FAST, src, TRUE) occupant = null update_icon() - return + return TRUE /obj/structure/machinery/gibber/proc/startgibbing(mob/user as mob) @@ -162,13 +149,18 @@ if(!occupant) visible_message(SPAN_DANGER("You hear a loud metallic grinding sound.")) return + var/synthetic = issynth(occupant) use_power(1000) - visible_message(SPAN_DANGER("You hear a loud squelchy grinding sound.")) - operating = 1 + if(synthetic) + visible_message(SPAN_BOLDWARNING("[src] begins to emitt sparks out the top as a banging noise can be heard!"), SPAN_BOLDWARNING("You hear a myriad of loud bangs!")) + else + visible_message(SPAN_DANGER("You hear a loud squelchy grinding sound.")) + operating = TRUE update_icon() var/totalslabs = 2 + var/obj/item/reagent_container/food/snacks/meat/meat_template = /obj/item/reagent_container/food/snacks/meat/monkey if(istype(occupant, /mob/living/carbon/xenomorph)) var/mob/living/carbon/xenomorph/X = occupant @@ -186,6 +178,35 @@ meat_template = /obj/item/reagent_container/food/snacks/meat/human totalslabs = 3 + // Synths only get delimbed from this. 1 meat per limb + if(synthetic) + meat_template = /obj/item/reagent_container/food/snacks/meat/synthmeat/synthflesh + totalslabs = 0 + var/mob/living/carbon/human/victim = occupant + + // Remove all limbs to allow synth to park closer at the supermarket + var/obj/limb/limb + + if(victim.has_limb("l_leg")) + limb = victim.get_limb("r_leg") + totalslabs += 1 + limb.droplimb(FALSE, TRUE, "gibber") + + if(victim.has_limb("l_leg")) + limb = victim.get_limb("l_leg") + totalslabs += 1 + limb.droplimb(FALSE, TRUE, "gibber") + + if(victim.has_limb("r_arm")) + limb = victim.get_limb("r_arm") + totalslabs += 1 + limb.droplimb(FALSE, TRUE, "gibber") + + if(victim.has_limb("l_arm")) + limb = victim.get_limb("l_arm") + totalslabs += 1 + limb.droplimb(FALSE, TRUE, "gibber") + var/obj/item/reagent_container/food/snacks/meat/allmeat[totalslabs] for(var/i in 1 to totalslabs) var/obj/item/reagent_container/food/snacks/meat/newmeat @@ -194,26 +215,37 @@ newmeat.name = newmeat.made_from_player + newmeat.name allmeat[i] = newmeat - if(src.occupant.client) // Gibbed a cow with a client in it? log that shit - src.occupant.attack_log += "\[[time_stamp()]\] Was gibbed by [key_name(user)]" + // Synths wont die to this (on it's own at least), dont log as a gib + if(synthetic) + if(occupant.client) // Log still + occupant.attack_log += "\[[time_stamp()]\] Was delimbed by [key_name(user)]" + user.attack_log += "\[[time_stamp()]\] delimbed [key_name(occupant)]" + msg_admin_attack("[key_name(user)] delimbed [key_name(occupant)] with a gibber in [user.loc.name]([user.x], [user.y], [user.z]).", user.x, user.y, user.z) + continue + + if(occupant.client) // Gibbed a cow with a client in it? log that shit + occupant.attack_log += "\[[time_stamp()]\] Was gibbed by [key_name(user)]" user.attack_log += "\[[time_stamp()]\] Gibbed [key_name(occupant)]" msg_admin_attack("[key_name(user)] gibbed [key_name(occupant)] in [user.loc.name] ([user.x], [user.y], [user.z]).", user.x, user.y, user.z) - src.occupant.death(create_cause_data("gibber", user), TRUE) - src.occupant.ghostize() - - QDEL_NULL(occupant) + occupant.death(create_cause_data("gibber", user), TRUE) + occupant.ghostize() addtimer(CALLBACK(src, PROC_REF(create_gibs), totalslabs, allmeat), gibtime) + if(synthetic) + to_chat(occupant, SPAN_HIGHDANGER("You can detect your limbs being ripped off your body, but it begins to malfunction as it reaches your torso!")) + addtimer(CALLBACK(src, PROC_REF(go_out), TRUE), gibtime) + else + QDEL_NULL(occupant) /obj/structure/machinery/gibber/proc/create_gibs(totalslabs, list/obj/item/reagent_container/food/snacks/allmeat) playsound(loc, 'sound/effects/splat.ogg', 25, 1) operating = FALSE + var/turf/Tx = locate(x - 1, y, z) for (var/i in 1 to totalslabs) var/obj/item/meatslab = allmeat[i] - var/turf/Tx = locate(x - i, y, z) meatslab.forceMove(loc) - meatslab.throw_atom(Tx, i, SPEED_FAST, src) + meatslab.throw_atom(Tx, 1, SPEED_FAST, src) if (!Tx.density) if(istype(meatslab, /obj/item/reagent_container/food/snacks/meat/xenomeat)) new /obj/effect/decal/cleanable/blood/gibs/xeno(Tx) diff --git a/code/game/machinery/kitchen/juicer.dm b/code/game/machinery/kitchen/juicer.dm index 0a15c1bcf5..e538ad1185 100644 --- a/code/game/machinery/kitchen/juicer.dm +++ b/code/game/machinery/kitchen/juicer.dm @@ -141,7 +141,7 @@ else if (O.potency == -1) return 5 else - return round(5*sqrt(O.potency)) + return floor(5*sqrt(O.potency)) /obj/structure/machinery/juicer/proc/juice() power_change() //it is a portable machine diff --git a/code/game/machinery/kitchen/microwave.dm b/code/game/machinery/kitchen/microwave.dm index b8a3c56801..2b53b06ebf 100644 --- a/code/game/machinery/kitchen/microwave.dm +++ b/code/game/machinery/kitchen/microwave.dm @@ -42,7 +42,7 @@ for (var/reagent in recipe.reagents) acceptable_reagents |= reagent if (recipe.items) - max_n_of_items = max(max_n_of_items,recipe.items.len) + max_n_of_items = max(max_n_of_items,length(recipe.items)) // This will do until I can think of a fun recipe to use dionaea in - // will also allow anything using the holder item to be microwaved into @@ -115,7 +115,7 @@ else if(operating) to_chat(user, SPAN_DANGER("It's running!")) else if(is_type_in_list(O,acceptable_items)) - if (contents.len>=max_n_of_items) + if (length(contents)>=max_n_of_items) to_chat(user, SPAN_DANGER("This [src] is full of ingredients, you cannot put more.")) return 1 if(istype(O, /obj/item/stack) && O:get_amount() > 1) // This is bad, but I can't think of how to change it @@ -229,8 +229,9 @@ //************************************/ /obj/structure/machinery/microwave/proc/cook(time_multiplier = 1) - if(inoperable()) + if(inoperable() || operating) return + start() if (reagents.total_volume==0 && !(locate(/obj) in contents)) //dry run if (!wzhzhzh(10 * time_multiplier)) @@ -270,7 +271,7 @@ cooked.forceMove(src.loc) return else - var/halftime = round(recipe.time/10/2) + var/halftime = floor(recipe.time/10/2) if (!wzhzhzh(halftime * time_multiplier)) abort() return diff --git a/code/game/machinery/kitchen/processor.dm b/code/game/machinery/kitchen/processor.dm index 0c4b8a973e..62455d7705 100644 --- a/code/game/machinery/kitchen/processor.dm +++ b/code/game/machinery/kitchen/processor.dm @@ -19,15 +19,44 @@ /datum/food_processor_process/process(loc, what) if (src.output && loc) - new src.output(loc) + var/obj/item/reagent_container/food/snacks/created_food = new src.output(loc) + var/obj/item/reagent_container/food/snacks/original_food = what + if(original_food.made_from_player) + created_food.made_from_player = original_food.made_from_player + created_food.name = (created_food.made_from_player + created_food.name) if (what) qdel(what) +/datum/food_processor_process/proc/can_use(mob/user) + // By default, anyone can do it. + return TRUE + /* objs */ + +/datum/food_processor_process/xenomeat + input = /obj/item/reagent_container/food/snacks/meat/xenomeat + output = /obj/item/reagent_container/food/snacks/meat/xenomeat/processed + +/datum/food_processor_process/xenomeat/can_use(mob/user) + if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER)) + to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!")) + return FALSE + return TRUE + /datum/food_processor_process/meat input = /obj/item/reagent_container/food/snacks/meat output = /obj/item/reagent_container/food/snacks/rawmeatball +/datum/food_processor_process/carpmeat + input = /obj/item/reagent_container/food/snacks/carpmeat + output = /obj/item/reagent_container/food/snacks/carpmeat/processed + +/datum/food_processor_process/carpmeat/can_use(mob/user) + if(!skillcheck(user, SKILL_DOMESTIC, SKILL_DOMESTIC_MASTER)) + to_chat(user, SPAN_DANGER("You aren't trained to remove dangerous substances from food!")) + return FALSE + return TRUE + /datum/food_processor_process/potato input = /obj/item/reagent_container/food/snacks/grown/potato output = /obj/item/reagent_container/food/snacks/rawsticks @@ -73,7 +102,7 @@ if(processing) to_chat(user, SPAN_DANGER("The processor is in the process of processing.")) return 1 - if(contents.len > 0) //TODO: several items at once? several different items? + if(length(contents) > 0) //TODO: several items at once? several different items? to_chat(user, SPAN_DANGER("Something is already in the processing chamber.")) return 1 if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) @@ -88,8 +117,10 @@ if (!P) to_chat(user, SPAN_DANGER("That probably won't blend.")) return 1 + if(!P.can_use(user)) + return 1 user.visible_message("[user] put [what] into [src].", \ - "You put the [what] into [src].") + "You put [what] into [src].") user.drop_held_item() what.forceMove(src) @@ -99,7 +130,7 @@ if(src.processing) to_chat(user, SPAN_DANGER("The processor is in the process of processing.")) return 1 - if(src.contents.len == 0) + if(length(src.contents) == 0) to_chat(user, SPAN_DANGER("The processor is empty.")) return 1 for(var/O in src.contents) @@ -118,4 +149,3 @@ src.processing = 0 src.visible_message(SPAN_NOTICE("\the [src] finished processing."), \ "You hear the food processor stopping/") - diff --git a/code/game/machinery/kitchen/smartfridge.dm b/code/game/machinery/kitchen/smartfridge.dm index 903cd06c31..957f6c97ec 100644 --- a/code/game/machinery/kitchen/smartfridge.dm +++ b/code/game/machinery/kitchen/smartfridge.dm @@ -54,8 +54,8 @@ contents -= item if(item_quants[item.name]) item_quants[item.name] -= item - if(is_in_network() && chemical_data.shared_item_storage[item.name]) - chemical_data.shared_item_storage[item.name] -= item + if(is_in_network() && GLOB.chemical_data.shared_item_storage[item.name]) + GLOB.chemical_data.shared_item_storage[item.name] -= item qdel(item) /obj/structure/machinery/smartfridge/proc/accept_check(obj/item/O as obj) @@ -94,7 +94,7 @@ overlays.Cut() if(panel_open) overlays += image(icon, icon_panel) - nanomanager.update_uis(src) + SSnano.nanomanager.update_uis(src) return if(HAS_TRAIT(O, TRAIT_TOOL_MULTITOOL)||HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) @@ -125,7 +125,7 @@ user.visible_message( \ SPAN_NOTICE("[user] loads \the [src] with \the [P]."), \ SPAN_NOTICE("You load \the [src] with \the [P].")) - if(P.contents.len > 0) + if(length(P.contents) > 0) to_chat(user, SPAN_NOTICE("Some items are refused.")) else if(!(O.flags_item & NOBLUDGEON)) //so we can spray, scan, c4 the machine. @@ -157,7 +157,7 @@ /obj/structure/machinery/smartfridge/proc/add_network_item(obj/item/O) if(is_in_network()) - add_item(chemical_data.shared_item_storage, O) + add_item(GLOB.chemical_data.shared_item_storage, O) return TRUE return FALSE @@ -186,7 +186,7 @@ var/list/wire_descriptions = get_wire_descriptions() var/list/panel_wires = list() - for(var/wire = 1 to wire_descriptions.len) + for(var/wire = 1 to length(wire_descriptions)) panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire))) .["electrical"] = list( @@ -232,9 +232,9 @@ var/list/networked_items = list() if(is_in_network()) - for (var/i=1 to length(chemical_data.shared_item_storage)) - var/item_index = chemical_data.shared_item_storage[i] - var/list/item_list = chemical_data.shared_item_storage[item_index] + for (var/i=1 to length(GLOB.chemical_data.shared_item_storage)) + var/item_index = GLOB.chemical_data.shared_item_storage[i] + var/list/item_list = GLOB.chemical_data.shared_item_storage[item_index] var/count = length(item_list) if(count < 1) continue @@ -295,7 +295,7 @@ var/list/target_list = item_quants if(params["isLocal"] == 0) - target_list = chemical_data.shared_item_storage + target_list = GLOB.chemical_data.shared_item_storage var/item_index = target_list[index] var/list/item_list = target_list[item_index] @@ -328,9 +328,9 @@ var/amount=params["amount"] var/source = item_quants - var/target = chemical_data.shared_item_storage + var/target = GLOB.chemical_data.shared_item_storage if(params["isLocal"] == 0) - source = chemical_data.shared_item_storage + source = GLOB.chemical_data.shared_item_storage target = item_quants var/item_index = source[index] @@ -350,7 +350,7 @@ if("cutwire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = user.get_held_item() @@ -364,7 +364,7 @@ if("fixwire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = user.get_held_item() @@ -377,7 +377,7 @@ if("pulsewire") if(!panel_open) return FALSE - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't understand anything about this wiring...")) return FALSE var/obj/item/held_item = user.get_held_item() diff --git a/code/game/machinery/line_nexter.dm b/code/game/machinery/line_nexter.dm index d736df4466..ae1896ad81 100644 --- a/code/game/machinery/line_nexter.dm +++ b/code/game/machinery/line_nexter.dm @@ -62,7 +62,7 @@ icon_state = "doorctrl1" add_fingerprint(user) - for(var/obj/structure/machinery/line_nexter/L in machines) + for(var/obj/structure/machinery/line_nexter/L in GLOB.machines) if(id == L.id) L.next() diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 1cc66233f9..f7244fb8ce 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -128,15 +128,15 @@ Class Procs: /obj/structure/machinery/Initialize(mapload, ...) . = ..() - machines += src + GLOB.machines += src var/area/A = get_area(src) if(A) A.add_machine(src) //takes care of adding machine's power usage /obj/structure/machinery/Destroy() - machines -= src - processing_machines -= src - power_machines -= src + GLOB.machines -= src + GLOB.processing_machines -= src + GLOB.power_machines -= src var/area/A = get_area(src) if(A) A.remove_machine(src) //takes care of removing machine from power usage @@ -151,15 +151,15 @@ Class Procs: if(!machine_processing) machine_processing = 1 if(power_machine) - addToListNoDupe(power_machines, src) + addToListNoDupe(GLOB.power_machines, src) else - addToListNoDupe(processing_machines, src) + addToListNoDupe(GLOB.processing_machines, src) /obj/structure/machinery/proc/stop_processing() if(machine_processing) machine_processing = 0 - processing_machines -= src - power_machines -= src + GLOB.processing_machines -= src + GLOB.power_machines -= src /obj/structure/machinery/process()//If you dont use process or power why are you here return PROCESS_KILL @@ -171,7 +171,7 @@ Class Procs: . += "It does not appear to be working." var/msg = get_repair_move_text(FALSE) - if(msg && skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(msg && skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) . += SPAN_WARNING("[msg]") /obj/structure/machinery/emp_act(severity) @@ -247,19 +247,17 @@ Class Procs: return (user.IsAdvancedToolUser(user) || isRemoteControlling(user)) /obj/structure/machinery/attack_remote(mob/user as mob) - if(isrobot(user)) - // For some reason attack_robot doesn't work - // This is to stop robots from using cameras to remotely control machines. - if(user.client && user.client.eye == user) - return src.attack_hand(user) - else - return src.attack_hand(user) + return src.attack_hand(user) /obj/structure/machinery/attack_hand(mob/living/user as mob) if(inoperable(MAINT)) return TRUE if(user.is_mob_incapacitated()) return TRUE + if(!(istype(user, /mob/living/carbon/human) || isRemoteControlling(user) || istype(user, /mob/living/carbon/xenomorph))) + if(!HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) + to_chat(usr, SPAN_DANGER("You don't have the dexterity to do this!")) + return TRUE if(!is_valid_user(user)) to_chat(usr, SPAN_DANGER("You don't have the dexterity to do this!")) return TRUE @@ -327,3 +325,102 @@ Class Procs: /obj/structure/machinery/ui_state(mob/user) return GLOB.not_incapacitated_and_adjacent_state + +//made into "prop" from an old destilery project abandon 9 year ago. + +/obj/structure/machinery/mill + name = "\improper Mill" + desc = "It is a machine that grinds produce." + icon_state = "autolathe" + density = TRUE + anchored = TRUE + +/obj/structure/machinery/fermenter + name = "\improper Fermenter" + desc = "It is a machine that ferments produce into alcoholic drinks." + icon_state = "autolathe" + density = TRUE + anchored = TRUE + +/obj/structure/machinery/still + name = "\improper Still" + desc = "It is a machine that produces hard liquor from alcoholic drinks." + icon_state = "autolathe" + density = TRUE + anchored = TRUE + +/obj/structure/machinery/squeezer + name = "\improper Squeezer" + desc = "It is a machine that squeezes extracts from produce." + icon_state = "autolathe" + density = TRUE + anchored = TRUE + +/obj/structure/machinery/fuelpump + name = "\improper Fuel Pump" + layer = ABOVE_MOB_LAYER + desc = "It is a machine that pumps fuel around the ship." + icon = 'icons/obj/structures/machinery/fuelpump.dmi' + icon_state = "fuelpump_off" + health = null + indestructible = TRUE + density = TRUE + anchored = TRUE + unslashable = TRUE + unacidable = TRUE + wrenchable = FALSE + +/obj/structure/machinery/fuelpump/ex_act(severity) + return + +/obj/structure/machinery/fuelpump/Initialize(mapload, ...) + . = ..() + RegisterSignal(SSdcs, COMSIG_GLOB_FUEL_PUMP_UPDATE, PROC_REF(on_pump_update)) + +/obj/structure/machinery/fuelpump/proc/on_pump_update() + SIGNAL_HANDLER + playsound(src, 'sound/machines/resource_node/node_idle.ogg', 60, TRUE) + update_icon() + +/obj/structure/machinery/fuelpump/update_icon() + if(stat & NOPOWER) + icon_state = "fuelpump_off" + return + if(SShijack.hijack_status < HIJACK_OBJECTIVES_STARTED) + icon_state = "fuelpump_on" + return + switch(SShijack.current_progress) + if(-INFINITY to 24) + icon_state = "fuelpump_0" + if(25 to 49) + icon_state = "fuelpump_25" + if(50 to 74) + icon_state = "fuelpump_50" + if(75 to 99) + icon_state = "fuelpump_75" + if(100 to INFINITY) + icon_state = "fuelpump_100" + else + icon_state = "fuelpump_on" // Never should happen + +/obj/structure/machinery/fuelpump/get_examine_text(mob/user) + . = ..() + if(get_dist(user, src) > 2 && user != loc) + return + if(inoperable()) + return + if(SShijack.hijack_status < HIJACK_OBJECTIVES_STARTED) + return + switch(SShijack.current_progress) + if(-INFINITY to 24) + . += SPAN_NOTICE("It looks like it barely has any fuel yet.") + if(25 to 49) + . += SPAN_NOTICE("It looks like it has accumulated some fuel.") + if(50 to 74) + . += SPAN_NOTICE("It looks like the fuel tank is a little over half full.") + if(75 to 99) + . += SPAN_NOTICE("It looks like the fuel tank is almost full.") + if(100 to INFINITY) + . += SPAN_NOTICE("It looks like the fuel tank is full.") + else + . += SPAN_NOTICE("It looks like something is wrong!") // Never should happen diff --git a/code/game/machinery/mass_driver.dm b/code/game/machinery/mass_driver.dm deleted file mode 100644 index f1b0081e3a..0000000000 --- a/code/game/machinery/mass_driver.dm +++ /dev/null @@ -1,10 +0,0 @@ -// Legacy SS13 machinery turned into a prop -/obj/structure/machinery/mass_driver - name = "mass driver" - desc = "Shoots things into space." - icon = 'icons/obj/structures/props/stationobjs.dmi' - icon_state = "mass_driver" - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 2 - active_power_usage = 50 diff --git a/code/game/machinery/medical_pod/autodoc.dm b/code/game/machinery/medical_pod/autodoc.dm index 6ac6da3def..552675f235 100644 --- a/code/game/machinery/medical_pod/autodoc.dm +++ b/code/game/machinery/medical_pod/autodoc.dm @@ -114,7 +114,7 @@ /obj/structure/machinery/medical_pod/autodoc/proc/heal_limb(mob/living/carbon/human/human, brute, burn) var/list/obj/limb/parts = human.get_damaged_limbs(brute,burn) - if(!parts.len) return + if(!length(parts)) return var/obj/limb/picked = pick(parts) if(picked.status & (LIMB_ROBOT|LIMB_SYNTHSKIN)) picked.heal_damage(brute, burn, TRUE) @@ -243,11 +243,6 @@ surgery_list += create_autodoc_surgery(L,ORGAN_SURGERY,"damage",0,I) organdamagesurgery++ - if(istype(L,/obj/limb/head)) - var/obj/limb/head/H = L - if(H.disfigured) - surgery_list += create_autodoc_surgery(L,LIMB_SURGERY,"facial") - if(istype(L,/obj/limb/chest)) var/obj/limb/chest/C = L if(M.status_flags & XENO_HOST) @@ -258,7 +253,7 @@ if(L.status & LIMB_DESTROYED) if(!(L.parent.status & LIMB_DESTROYED) && L.name != "head") surgery_list += create_autodoc_surgery(L,LIMB_SURGERY,"missing") - if(L.implants.len) + if(length(L.implants)) for(var/I in L.implants) if(!is_type_in_list(I,known_implants)) surgery_list += create_autodoc_surgery(L,LIMB_SURGERY,"object") @@ -304,7 +299,7 @@ var/list/surgery_todo_list = N.fields["autodoc_manual"] - if(!surgery_todo_list.len) + if(!length(surgery_todo_list)) visible_message("\The [src] buzzes, no surgical procedures were queued.") return @@ -330,7 +325,7 @@ surgery_todo_list -= A var/currentsurgery = 1 - while(surgery_todo_list.len > 0) + while(length(surgery_todo_list) > 0) if(!surgery) break; sleep(-1) @@ -341,10 +336,11 @@ if(ORGAN_SURGERY) switch(S.surgery_procedure) if("damage") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning organ restoration."); + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning organ restoration.") if(S.unneeded) sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary.") surgery_todo_list -= S continue open_incision(H,S.limb_ref) @@ -362,7 +358,7 @@ if(istype(S.organ_ref,/datum/internal_organ)) S.organ_ref.rejuvenate() else - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Organ is missing."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Organ is missing.") // close them if(S.limb_ref.name != "groin") // TODO: fix brute damage before closing @@ -370,10 +366,11 @@ close_incision(H,S.limb_ref) if("eyes") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning corrective eye surgery."); + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning corrective eye surgery.") if(S.unneeded) sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary.") surgery_todo_list -= S continue if(istype(S.organ_ref,/datum/internal_organ/eyes)) @@ -402,22 +399,40 @@ H.sdisabilities &= ~DISABILITY_BLIND E.heal_damage(E.damage) E.eye_surgery_stage = 0 + if("larva") + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src]beeps: Removing unknown parasites.") + if(!locate(/obj/item/alien_embryo) in occupant) + sleep(UNNEEDED_DELAY) + visible_message("[icon2html(src, viewers(src))] [src] speaks: Procedure has been deemed unnecessary.")// >:) + surgery_todo_list -= S + continue + sleep(SCALPEL_MAX_DURATION + HEMOSTAT_MAX_DURATION + REMOVE_OBJECT_MAX_DURATION) + var/obj/item/alien_embryo/alien_larva = locate() in occupant + var/mob/living/carbon/xenomorph/larva/living_xeno = locate() in occupant + if(living_xeno) + living_xeno.forceMove(get_turf(occupant)) //funny stealth larva bursts incoming + qdel(alien_larva) + else + alien_larva.forceMove(get_turf(occupant)) + occupant.status_flags &= ~XENO_HOST if(LIMB_SURGERY) switch(S.surgery_procedure) if("internal") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning internal bleeding procedure."); + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning internal bleeding procedure.") if(S.unneeded) sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary.") surgery_todo_list -= S continue open_incision(H,S.limb_ref) for(var/datum/wound/W in S.limb_ref.wounds) if(!surgery) break if(W.internal) - sleep(FIXVEIN_MAX_DURATION*surgery_mod) + sleep(FIXVEIN_MIN_DURATION-30) S.limb_ref.wounds -= W S.limb_ref.remove_all_bleeding(FALSE, TRUE) qdel(W) @@ -425,15 +440,15 @@ close_incision(H,S.limb_ref) if("broken") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning broken bone procedure."); + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning broken bone procedure.") if(S.unneeded) sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary.") surgery_todo_list -= S continue open_incision(H,S.limb_ref) - sleep(BONEGEL_REPAIR_MAX_DURATION*surgery_mod) - sleep(BONESETTER_MAX_DURATION*surgery_mod) + sleep(BONEGEL_REPAIR_MAX_DURATION*surgery_mod+20) if(S.limb_ref.brute_dam > 20) sleep(((S.limb_ref.brute_dam - 20)/2)*surgery_mod) if(!surgery) break @@ -447,10 +462,11 @@ close_incision(H,S.limb_ref) if("missing") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning limb replacement."); + if(prob(30)) + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning limb replacement.") if(S.unneeded) sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); + visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary.") surgery_todo_list -= S continue @@ -497,7 +513,7 @@ open_incision(H,S.limb_ref) if(S.limb_ref.name == "chest" || S.limb_ref.name == "head") open_encased(H,S.limb_ref) - if(S.limb_ref.implants.len) + if(length(S.limb_ref.implants)) for(var/obj/item/I in S.limb_ref.implants) if(!surgery) break if(!is_type_in_list(I,known_implants)) @@ -515,25 +531,12 @@ if(!surgery) break close_incision(H,S.limb_ref) - if("facial") - if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Beginning Facial Reconstruction Surgery."); - if(S.unneeded) - sleep(UNNEEDED_DELAY) - visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure has been deemed unnecessary."); - surgery_todo_list -= S - continue - if(istype(S.limb_ref, /obj/limb/head)) - var/obj/limb/head/F = S.limb_ref - sleep(SCALPEL_MAX_DURATION + HEMOSTAT_MAX_DURATION + RETRACTOR_MAX_DURATION + CAUTERY_MAX_DURATION) - F.remove_all_bleeding(TRUE) - F.disfigured = 0 - F.owner.name = F.owner.get_visible_name() - if("open") if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src]croaks: Closing surgical incision."); close_encased(H,S.limb_ref) close_incision(H,S.limb_ref) + if(prob(30)) visible_message("[icon2html(src, viewers(src))] \The [src] speaks: Procedure complete."); surgery_todo_list -= S continue @@ -605,6 +608,8 @@ unslashable = TRUE use_power = USE_POWER_IDLE idle_power_usage = 40 + /// What kind of upgrade do we have in this console? used by research upgrades. 1 is IB. 2 is bone frac. 3 is organ damage. 4 is larva removal + var/list/upgrades = list() /obj/structure/machinery/autodoc_console/Initialize() . = ..() @@ -644,6 +649,18 @@ /obj/structure/machinery/autodoc_console/process() updateUsrDialog() +/obj/structure/machinery/autodoc_console/attackby(obj/item/with, mob/user) + if(istype(with, /obj/item/research_upgrades/autodoc)) + var/obj/item/research_upgrades/autodoc/upgrd = with + for(var/iter in upgrades) + if(iter == upgrd.value) + to_chat(user, SPAN_NOTICE("This data is already present in [src]!")) + return + if(!user.drop_inv_item_to_loc(with, src)) + return + to_chat(user, SPAN_NOTICE("You insert the data into [src] and the drive whirrs to life, reading the data.")) + upgrades += upgrd.value + /obj/structure/machinery/autodoc_console/attack_hand(mob/living/user) if(..()) return @@ -715,6 +732,9 @@ if("eyes") surgeryqueue["eyes"] = 1 dat += "Corrective Eye Surgery" + if("larva") + surgeryqueue["larva"] = 1 + dat += "Experimental Parasite Surgery" if(LIMB_SURGERY) switch(A.surgery_procedure) if("internal") @@ -729,12 +749,10 @@ if("object") surgeryqueue["object"] = 1 dat += "Foreign Object Removal Surgery" - if("facial") - surgeryqueue["facial"] = 1 - dat += "Facial Reconstruction Surgery" if("open") surgeryqueue["open"] = 1 dat += "Close Open Incisions" + dat += "
" dat += "
Begin Surgery - Refresh Menu - Clear Queue
" @@ -770,8 +788,6 @@ if(isnull(surgeryqueue["toxin"])) dat += "Bloodstream Toxin Removal
" dat += "
" - if(isnull(surgeryqueue["facial"])) - dat += "Facial Reconstruction Surgery
" if(isnull(surgeryqueue["missing"])) dat += "Limb Replacement Surgery
" else @@ -828,7 +844,9 @@ if(!needed) N.fields["autodoc_manual"] += create_autodoc_surgery(null,ORGAN_SURGERY,"damage",1) updateUsrDialog() - + if(href_list["larva"]) + N.fields["autodoc_manual"] += create_autodoc_surgery("chest",ORGAN_SURGERY,"larva",0) + updateUsrDialog() if(href_list["internal"]) for(var/obj/limb/L in connected.occupant.limbs) if(L) @@ -872,7 +890,7 @@ N.fields["autodoc_manual"] += create_autodoc_surgery(C,LIMB_SURGERY,"object") needed++ continue - if(L.implants.len) + if(length(L.implants)) for(var/I in L.implants) if(!is_type_in_list(I,known_implants)) N.fields["autodoc_manual"] += create_autodoc_surgery(L,LIMB_SURGERY,"object") @@ -881,18 +899,6 @@ N.fields["autodoc_manual"] += create_autodoc_surgery(null,LIMB_SURGERY,"object",1) updateUsrDialog() - if(href_list["facial"]) - for(var/obj/limb/L in connected.occupant.limbs) - if(L) - if(istype(L,/obj/limb/head)) - var/obj/limb/head/J = L - if(J.disfigured) - N.fields["autodoc_manual"] += create_autodoc_surgery(L,LIMB_SURGERY,"facial") - else - N.fields["autodoc_manual"] += create_autodoc_surgery(L,LIMB_SURGERY,"facial",1) - updateUsrDialog() - break - if(href_list["open"]) for(var/obj/limb/L in connected.occupant.limbs) if(L) diff --git a/code/game/machinery/medical_pod/bodyscanner.dm b/code/game/machinery/medical_pod/bodyscanner.dm index 732ff1ba97..54b454f945 100644 --- a/code/game/machinery/medical_pod/bodyscanner.dm +++ b/code/game/machinery/medical_pod/bodyscanner.dm @@ -263,7 +263,7 @@ s_class = occ["brainloss"] < 1 ? INTERFACE_GOOD : INTERFACE_BAD dat += "[SET_CLASS("  Approx. Brain Damage:", INTERFACE_PINK)] [SET_CLASS("[occ["brainloss"]]%", s_class)]

" - dat += "[SET_CLASS("Knocked Out Summary:", "#40628a")] [occ["knocked_out"]]% (approximately [round(occ["knocked_out"] * GLOBAL_STATUS_MULTIPLIER / (1 SECONDS))] seconds left!)
" + dat += "[SET_CLASS("Knocked Out Summary:", "#40628a")] [occ["knocked_out"]]% (approximately [floor(occ["knocked_out"] * GLOBAL_STATUS_MULTIPLIER / (1 SECONDS))] seconds left!)
" dat += "[SET_CLASS("Body Temperature:", "#40628a")] [occ["bodytemp"]-T0C]°C ([occ["bodytemp"]*1.8-459.67]°F)

" s_class = occ["blood_amount"] > 448 ? INTERFACE_OKAY : INTERFACE_BAD @@ -333,7 +333,7 @@ open = "Open
" var/unknown_body = 0 - if (e.implants.len) + if (length(e.implants)) for(var/I in e.implants) if(is_type_in_list(I,known_implants)) imp += "[I] implanted
" diff --git a/code/game/machinery/medical_pod/bone_gel_refill.dm b/code/game/machinery/medical_pod/bone_gel_refill.dm new file mode 100644 index 0000000000..caf25ac438 --- /dev/null +++ b/code/game/machinery/medical_pod/bone_gel_refill.dm @@ -0,0 +1,12 @@ +/obj/structure/machinery/gel_refiller + name = "osteomimetic lattice fabricator" + desc = "Often called the bone gel refiller by those unable to pronounce its full name, this machine synthesizes and stores bone gel for later use. A slot in the front allows you to insert a bone gel bottle to refill it." + desc_lore = "In an attempt to prevent counterfeit bottles of bone gel not created by Weyland-Yutani, also known as a regular bottle, from being refilled, there is a chip reader in the fabricator and a chip in each bottle to make sure it is genuine. However, due to a combination of quality issues and being unmaintainable from proprietary parts, the machine often has problems. One such problem is in the chip reader, resulting in the fabricator being unable to detect a bottle directly on it, and such fails to activate, resulting in a person having to stand there and manually hold a bottle at the correct height to fill it." + icon_state = "bone_gel_vendor" + density = TRUE + +/obj/structure/machinery/gel_refiller/attackby(obj/item/attacking_item, mob/user) + if(!istype(attacking_item, /obj/item/tool/surgery/bonegel)) + return ..() + var/obj/item/tool/surgery/bonegel/gel = attacking_item + gel.refill_gel(src, user) diff --git a/code/game/machinery/medical_pod/sleeper.dm b/code/game/machinery/medical_pod/sleeper.dm index 6e70648551..34da9a8128 100644 --- a/code/game/machinery/medical_pod/sleeper.dm +++ b/code/game/machinery/medical_pod/sleeper.dm @@ -59,6 +59,20 @@ // tgui \\ +/obj/structure/machinery/sleep_console/attackby(obj/item/with, mob/user) + if(!istype(with, /obj/item/research_upgrades/sleeper)) + return + if(connected.upgraded) + return + if(!user.drop_inv_item_to_loc(with, src)) + return + to_chat(user, SPAN_NOTICE("As you insert [with] into the console, you hear it whir to life as [src] reads it.")) + connected.upgraded = TRUE + connected.available_chemicals = connected.upgraded_chemicals + connected.emergency_chems = connected.upgraded_emergency_chems + connected.reagent_removed_per_second = connected.reagent_removed_per_second_upgraded + + /obj/structure/machinery/sleep_console/attack_hand(mob/living/user) if(..()) return @@ -152,7 +166,7 @@ if(!(NO_BLOOD in human_occupant.species.flags)) occupantData["pulse"] = human_occupant.get_pulse(GETPULSE_TOOL) occupantData["hasBlood"] = 1 - occupantData["bloodLevel"] = round(occupant.blood_volume) + occupantData["bloodLevel"] = floor(occupant.blood_volume) occupantData["bloodMax"] = occupant.max_blood occupantData["bloodPercent"] = round(100*(occupant.blood_volume/occupant.max_blood), 0.01) @@ -164,7 +178,7 @@ var/chemicals[0] for(var/re in connected.available_chemicals) - var/datum/reagent/temp = chemical_reagents_list[re] + var/datum/reagent/temp = GLOB.chemical_reagents_list[re] if(temp) var/reagent_amount = 0 var/pretty_amount @@ -208,6 +222,14 @@ var/amount = text2num(params["amount"]) if(!length(chemical) || amount <= 0) return + if(!(amount in connected.amounts)) + log_debug("[amount] is an invalid amount to inject in [src]!") + return + if(!(chemical in connected.available_chemicals)) + log_debug("[chemical] is not available to inject in [src]!") + return + if(connected.occupant.reagents && connected.occupant.reagents.get_reagent_amount(chemical) + amount > connected.max_chem) + return if(connected.occupant.health > connected.min_health || (chemical in connected.emergency_chems)) connected.inject_chemical(usr, chemical, amount) else @@ -235,16 +257,21 @@ entry_timer = 2 SECONDS - var/available_chemicals = list("inaprovaline", "paracetamol", "anti_toxin", "dexalin", "tricordrazine") - var/emergency_chems = list("inaprovaline", "paracetamol", "anti_toxin", "dexalin", "tricordrazine", "oxycodone", "bicaridine", "kelotane") - var/amounts = list(5, 10) + var/list/available_chemicals = list("inaprovaline", "paracetamol", "anti_toxin", "dexalin", "tricordrazine") + var/list/upgraded_chemicals = list("inaprovaline", "tramadol", "anti_toxin", "dexalinp", "tricordrazine", "alkysine", "imidazoline") + var/list/emergency_chems = list("inaprovaline", "paracetamol", "anti_toxin", "dexalin", "tricordrazine", "oxycodone", "bicaridine", "kelotane") + var/list/upgraded_emergency_chems = list("inaprovaline", "tramadol", "anti_toxin", "dexalinp", "tricordrazine", "oxycodone", "bicaridine", "kelotane", "meralyne", "dermaline", "alkysine", "imidazoline") + var/list/amounts = list(5, 10) var/filtering = FALSE var/obj/structure/machinery/sleep_console/connected var/min_health = 10 var/max_chem = 40 var/auto_eject_dead = FALSE var/reagent_removed_per_second = AMOUNT_PER_TIME(3, 1 SECONDS) + var/reagent_removed_per_second_upgraded = AMOUNT_PER_TIME(8, 1 SECONDS) var/dialysis_started_reagent_vol = null // how many reagents the occupant had in them when we STARTED dialysis + ///is it already upgraded by research disc and do we have upgraded chemicals? + var/upgraded = FALSE use_power = USE_POWER_IDLE idle_power_usage = 15 @@ -365,7 +392,7 @@ if(occupant && occupant.reagents) if(occupant.reagents.get_reagent_amount(chemical) + amount <= max_chem) occupant.reagents.add_reagent(chemical, amount, , , user) - var/datum/reagent/temp = chemical_reagents_list[chemical] + var/datum/reagent/temp = GLOB.chemical_reagents_list[chemical] to_chat(user, SPAN_NOTICE("[occupant] now has [occupant.reagents.get_reagent_amount(chemical)] units of [temp.name] in \his bloodstream.")) return to_chat(user, SPAN_WARNING("There's no occupant in the sleeper or the subject has too many chemicals!")) diff --git a/code/game/machinery/mining.dm b/code/game/machinery/mining.dm index 0662817174..97ba4a804f 100644 --- a/code/game/machinery/mining.dm +++ b/code/game/machinery/mining.dm @@ -1,25 +1,3 @@ -/obj/structure/machinery/mineral/input - icon = 'icons/mob/hud/screen1.dmi' - icon_state = "x2" - name = "Input area" - density = FALSE - anchored = TRUE - -/obj/structure/machinery/mineral/input/Initialize(mapload, ...) - . = ..() - icon_state = "blank" - -/obj/structure/machinery/mineral/output - icon = 'icons/mob/hud/screen1.dmi' - icon_state = "x" - name = "Output area" - density = FALSE - anchored = TRUE - -/obj/structure/machinery/mineral/output/Initialize(mapload, ...) - . = ..() - icon_state = "blank" - /obj/structure/machinery/mineral/processing_unit name = "material processor" //This isn't actually a goddamn furnace, we're in space and it's processing platinum and flammable phoron... icon = 'icons/obj/structures/machinery/mining_machines.dmi' diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 89c9e9277f..96e1635bb0 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -1,752 +1,12 @@ -//############################################## -//################### NEWSCASTERS BE HERE! #### -//###-Agouri################################### - -/datum/feed_message - var/author ="" - var/body ="" - var/message_type ="Story" - //var/parent_channel - var/backup_body ="" - var/backup_author ="" - var/is_admin_message = 0 - var/icon/img = null - var/icon/backup_img - -/datum/feed_channel - var/channel_name="" - var/list/datum/feed_message/messages = list() - //var/message_count = 0 - var/locked=0 - var/author="" - var/backup_author="" - var/censored=0 - var/is_admin_channel=0 - //var/page = null //For newspapers - -/datum/feed_message/proc/clear() - src.author = "" - src.body = "" - src.backup_body = "" - src.backup_author = "" - src.img = null - src.backup_img = null - -/datum/feed_channel/proc/clear() - src.channel_name = "" - src.messages = list() - src.locked = 0 - src.author = "" - src.backup_author = "" - src.censored = 0 - src.is_admin_channel = 0 - -/datum/feed_network - var/list/datum/feed_channel/network_channels = list() - var/datum/feed_message/wanted_issue - -var/datum/feed_network/news_network = new /datum/feed_network //The global news-network, which is coincidentally a global list. - -var/list/obj/structure/machinery/newscaster/allCasters = list() //Global list that will contain reference to all newscasters in existence. - - /obj/structure/machinery/newscaster name = "newscaster" desc = "A standard Weyland-Yutani-licensed newsfeed handler for use in commercial space stations. All the news you absolutely have no use for, in one place!" icon = 'icons/obj/structures/machinery/terminals.dmi' icon_state = "newscaster_normal" - var/isbroken = FALSE //1 if someone banged it with something heavy - var/ispowered = TRUE //starts powered, changes with power_change() - //var/list/datum/feed_channel/channel_list = list() //This list will contain the names of the feed channels. Each name will refer to a data region where the messages of the feed channels are stored. - //OBSOLETE: We're now using a global news network - var/screen = 0 //Or maybe I'll make it into a list within a list afterwards... whichever I prefer, go fuck yourselves :3 - // 0 = welcome screen - main menu - // 1 = view feed channels - // 2 = create feed channel - // 3 = create feed story - // 4 = feed story submited sucessfully - // 5 = feed channel created successfully - // 6 = ERROR: Cannot create feed story - // 7 = ERROR: Cannot create feed channel - // 8 = print newspaper - // 9 = viewing channel feeds - // 10 = censor feed story - // 11 = censor feed channel - //Holy shit this is outdated, made this when I was still starting newscasters :3 - var/paper_remaining = 0 - var/securityCaster = 0 - // 0 = Caster cannot be used to issue wanted posters - // 1 = the opposite - var/unit_no = 0 //Each newscaster has a unit number - //var/datum/feed_message/wanted //We're gonna use a feed_message to store data of the wanted person because fields are similar - //var/wanted_issue = 0 //OBSOLETE - // 0 = there's no WANTED issued, we don't need a special icon_state - // 1 = Guess what. - var/alert_delay = 500 - var/alert = 0 - // 0 = there hasn't been a news/wanted update in the last alert_delay - // 1 = there has - var/scanned_user = "Unknown" //Will contain the name of the person who currently uses the newscaster - var/msg = ""; //Feed message - var/obj/item/photo/photo = null - var/channel_name = ""; //the feed channel which will be receiving the feed, or being created - var/c_locked=0; //Will our new channel be locked to public submissions? - var/hitstaken = 0 //Death at 3 hits from an item with force>=15 - var/datum/feed_channel/viewing_channel = null anchored = TRUE - -/obj/structure/machinery/newscaster/security_unit //Security unit +/obj/structure/machinery/newscaster/security_unit name = "Security Newscaster" - securityCaster = 1 - -/obj/structure/machinery/newscaster/security_unit/New() //Constructor, ho~ - allCasters += src - src.paper_remaining = 15 // Will probably change this to something better - for(var/obj/structure/machinery/newscaster/NEWSCASTER in allCasters) // Let's give it an appropriate unit number - src.unit_no++ - src.update_icon() //for any custom ones on the map... - ..() //I just realised the newscasters weren't in the global machines list. The superconstructor call will tend to that - -/obj/structure/machinery/newscaster/security_unit/Destroy() - allCasters -= src - return ..() - -/obj/structure/machinery/newscaster/update_icon() - if(!ispowered || isbroken) - icon_state = "newscaster_off" - if(isbroken) //If the thing is smashed, add crack overlay on top of the unpowered sprite. - src.overlays.Cut() - src.overlays += image(src.icon, "crack3") - return - - src.overlays.Cut() //reset overlays - - if(news_network.wanted_issue) //wanted icon state, there can be no overlays on it as it's a priority message - icon_state = "newscaster_wanted" - return - - if(alert) //new message alert overlay - src.overlays += "newscaster_alert" - - if(hitstaken > 0) //Cosmetic damage overlay - src.overlays += image(src.icon, "crack[hitstaken]") - - icon_state = "newscaster_normal" - return - -/obj/structure/machinery/newscaster/power_change() - if(isbroken) //Broken shit can't be powered. - return - ..() - if( !(stat & NOPOWER) ) - src.ispowered = TRUE - src.update_icon() - else - spawn(rand(0, 15)) - src.ispowered = FALSE - src.update_icon() - - -/obj/structure/machinery/newscaster/ex_act(severity) - switch(severity) - if(0 to EXPLOSION_THRESHOLD_LOW) - if(prob(50)) - src.isbroken=1 - src.update_icon() - return - if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) - src.isbroken=1 - if(prob(50)) - deconstruct(FALSE) - else - src.update_icon() //can't place it above the return and outside the if-else. or we might get runtimes of null.update_icon() if(prob(50)) goes in. - return - if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) - deconstruct(FALSE) - return - return - -/obj/structure/machinery/newscaster/attack_remote(mob/user as mob) - return src.attack_hand(user) - -/obj/structure/machinery/newscaster/attack_hand(mob/user as mob) //########### THE MAIN BEEF IS HERE! And in the proc below this...############ - if(!src.ispowered || src.isbroken) - return - if(istype(user, /mob/living/carbon/human) || istype(user,/mob/living/silicon) ) - var/mob/living/human_or_robot_user = user - var/dat - dat = text("Newscaster

Newscaster Unit #[src.unit_no]

") - - src.scan_user(human_or_robot_user) //Newscaster scans you - - switch(screen) - if(0) - dat += "Welcome to Newscasting Unit #[src.unit_no].
Interface & News networks Operational." - dat += "
Property of Weyland-Yutani" - if(news_network.wanted_issue) - dat+= "
Read Wanted Issue" - dat+= "

Create Feed Channel" - dat+= "
View Feed Channels" - dat+= "
Submit new Feed story" - dat+= "
Print newspaper" - dat+= "
Re-scan User" - dat+= "

Exit" - if(src.securityCaster) - var/wanted_already = 0 - if(news_network.wanted_issue) - wanted_already = 1 - - dat+="
Feed Security functions:
" - dat+="
[(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue" - dat+="
Censor Feed Stories" - dat+="
Mark Feed Channel with Weyland-Yutani D-Notice" - dat+="

The newscaster recognises you as: [src.scanned_user]" - if(1) - dat+= "Station Feed Channels
" - if(!length(news_network.network_channels) ) - dat+="No active channels found..." - else - for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - if(CHANNEL.is_admin_channel) - dat+="[CHANNEL.channel_name]
" - else - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" - /*for(var/datum/feed_channel/CHANNEL in src.channel_list) - dat+="[CHANNEL.channel_name]:
\[created by: [CHANNEL.author]\]

" - if(!length(CHANNEL.messages) ) - dat+="No feed messages found in channel...

" - else - for(var/datum/feed_message/MESSAGE in CHANNEL.messages) - dat+="-[MESSAGE.body]
\[[MESSAGE.message_type] by [MESSAGE.author]\]
"*/ - - dat+="

Refresh" - dat+="
Back" - if(2) - dat+="Creating new Feed Channel..." - dat+="
Channel Name: [src.channel_name]
" - dat+="Channel Author: [src.scanned_user]
" - dat+="Will Accept Public Feeds: [(src.c_locked) ? ("NO") : ("YES")]

" - dat+="
Submit

Cancel
" - if(3) - dat+="Creating new Feed Message..." - dat+="
Receiving Channel: [src.channel_name]
" //MARK - dat+="Message Author: [src.scanned_user]
" - dat+="Message Body: [src.msg]
" - dat+="Attach Photo: [(src.photo ? "Photo Attached" : "No Photo")]
" - dat+="
Submit

Cancel
" - if(4) - dat+="Feed story successfully submitted to [src.channel_name].

" - dat+="
Return
" - if(5) - dat+="Feed Channel [src.channel_name] created successfully.

" - dat+="
Return
" - if(6) - dat+="ERROR: Could not submit Feed story to Network.

" - if(src.channel_name=="") - dat+="�Invalid receiving channel name.
" - if(src.scanned_user=="Unknown") - dat+="�Channel author unverified.
" - if(src.msg == "" || src.msg == "\[REDACTED\]") - dat+="�Invalid message body.
" - - dat+="
Return
" - if(7) - dat+="ERROR: Could not submit Feed Channel to Network.

" - //var/list/existing_channels = list() //Let's get dem existing channels - OBSOLETE - var/list/existing_authors = list() - for(var/datum/feed_channel/FC in news_network.network_channels) - //existing_channels += FC.channel_name //OBSOLETE - if(FC.author == "\[REDACTED\]") - existing_authors += FC.backup_author - else - existing_authors += FC.author - if(src.scanned_user in existing_authors) - dat+="�There already exists a Feed channel under your name.
" - if(src.channel_name=="" || src.channel_name == "\[REDACTED\]") - dat+="�Invalid channel name.
" - var/check = 0 - for(var/datum/feed_channel/FC in news_network.network_channels) - if(FC.channel_name == src.channel_name) - check = 1 - break - if(check) - dat+="�Channel name already in use.
" - if(src.scanned_user=="Unknown") - dat+="�Channel author unverified.
" - dat+="
Return
" - if(8) - var/total_num=length(news_network.network_channels) - var/active_num=total_num - var/message_num=0 - for(var/datum/feed_channel/FC in news_network.network_channels) - if(!FC.censored) - message_num += length(FC.messages) //Dont forget, datum/feed_channel's var messages is a list of datum/feed_message - else - active_num-- - dat+="Network currently serves a total of [total_num] Feed channels, [active_num] of which are active, and a total of [message_num] Feed Stories." //TODO: CONTINUE - dat+="

Liquid Paper remaining: [(src.paper_remaining) *100 ] cm^3" - dat+="

Print Paper" - dat+="
Cancel" - if(9) - dat+="[src.viewing_channel.channel_name]: \[created by: [src.viewing_channel.author]\]
" - if(src.viewing_channel.censored) - dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Weyland-Yutani D-Notice.
" - dat+="No further feed story additions are allowed while the D-Notice is in effect.

" - else - if(!length(src.viewing_channel.messages) ) - dat+="No feed messages found in channel...
" - else - var/i = 0 - for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages) - i++ - dat+="-[MESSAGE.body]
" - if(MESSAGE.img) - usr << browse_rsc(MESSAGE.img, "tmp_photo[i].png") - dat+="

" - dat+="\[[MESSAGE.message_type] by [MESSAGE.author]\]
" - dat+="

Refresh" - dat+="
Back" - if(10) - dat+="Weyland-Yutani Feed Censorship Tool
" - dat+="NOTE: Due to the nature of news Feeds, total deletion of a Feed Story is not possible.
" - dat+="Keep in mind that users attempting to view a censored feed will instead see the \[REDACTED\] tag above it.
" - dat+="
Select Feed channel to get Stories from:
" - if(!length(news_network.network_channels)) - dat+="No feed channels found active...
" - else - for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" - dat+="
Cancel" - if(11) - dat+="Weyland-Yutani D-Notice Handler
" - dat+="A D-Notice is to be bestowed upon the channel if the handling Authority deems it as harmful for the station's" - dat+="morale, integrity or disciplinary behaviour. A D-Notice will render a channel unable to be updated by anyone, without deleting any feed" - dat+="stories it might contain at the time. You can lift a D-Notice if you have the required access at any time.
" - if(!length(news_network.network_channels)) - dat+="No feed channels found active...
" - else - for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null]
" - - dat+="
Back" - if(12) - dat+="[src.viewing_channel.channel_name]: \[ created by: [src.viewing_channel.author] \]
" - dat+="[(src.viewing_channel.author=="\[REDACTED\]") ? ("Undo Author censorship") : ("Censor channel Author")]
" - - - if(!length(src.viewing_channel.messages) ) - dat+="No feed messages found in channel...
" - else - for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages) - dat+="-[MESSAGE.body]
\[[MESSAGE.message_type] by [MESSAGE.author]\]
" - dat+="[(MESSAGE.body == "\[REDACTED\]") ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.author == "\[REDACTED\]") ? ("Undo Author Censorship") : ("Censor message Author")]
" - dat+="
Back" - if(13) - dat+="[src.viewing_channel.channel_name]: \[ created by: [src.viewing_channel.author] \]
" - dat+="Channel messages listed below. If you deem them dangerous to the station, you can Bestow a D-Notice upon the channel.
" - if(src.viewing_channel.censored) - dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the station, and marked with a Weyland-Yutani D-Notice.
" - dat+="No further feed story additions are allowed while the D-Notice is in effect.

" - else - if(!length(src.viewing_channel.messages) ) - dat+="No feed messages found in channel...
" - else - for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages) - dat+="-[MESSAGE.body]
\[[MESSAGE.message_type] by [MESSAGE.author]\]
" - - dat+="
Back" - if(14) - dat+="Wanted Issue Handler:" - var/wanted_already = 0 - var/end_param = 1 - if(news_network.wanted_issue) - wanted_already = 1 - end_param = 2 - - if(wanted_already) - dat+="
A wanted issue is already in Feed Circulation. You can edit or cancel it below.
" - dat+="
" - dat+="Criminal Name: [src.channel_name]
" - dat+="Description: [src.msg]
" - dat+="Attach Photo: [(src.photo ? "Photo Attached" : "No Photo")]
" - if(wanted_already) - dat+="Wanted Issue created by: [news_network.wanted_issue.backup_author]
" - else - dat+="Wanted Issue will be created under prosecutor: [src.scanned_user]
" - dat+="
[(wanted_already) ? ("Edit Issue") : ("Submit")]" - if(wanted_already) - dat+="
Take down Issue" - dat+="
Cancel" - if(15) - dat+="Wanted issue for [src.channel_name] is now in Network Circulation.

" - dat+="
Return
" - if(16) - dat+="ERROR: Wanted Issue rejected by Network.

" - if(src.channel_name=="" || src.channel_name == "\[REDACTED\]") - dat+="�Invalid name for person wanted.
" - if(src.scanned_user=="Unknown") - dat+="�Issue author unverified.
" - if(src.msg == "" || src.msg == "\[REDACTED\]") - dat+="�Invalid description.
" - dat+="
Return
" - if(17) - dat+="Wanted Issue successfully deleted from Circulation
" - dat+="
Return
" - if(18) - dat+="-- STATIONWIDE WANTED ISSUE --
\[Submitted by: [news_network.wanted_issue.backup_author]\]
" - dat+="Criminal: [news_network.wanted_issue.author]
" - dat+="Description: [news_network.wanted_issue.body]
" - dat+="Photo:: " - if(news_network.wanted_issue.img) - usr << browse_rsc(news_network.wanted_issue.img, "tmp_photow.png") - dat+="
" - else - dat+="None" - dat+="

Back
" - if(19) - dat+="Wanted issue for [src.channel_name] successfully edited.

" - dat+="
Return
" - if(20) - dat+="Printing successful. Please receive your newspaper from the bottom of the machine.

" - dat+="Return" - if(21) - dat+="Unable to print newspaper. Insufficient paper. Please notify maintenance personnel to refill machine storage.

" - dat+="Return" - else - dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com" - - - human_or_robot_user << browse(dat, "window=newscaster_main;size=400x600") - onclose(human_or_robot_user, "newscaster_main") - - /*if(src.isbroken) //debugging shit - return - src.hitstaken++ - if(src.hitstaken==3) - src.isbroken = TRUE - src.update_icon()*/ - - -/obj/structure/machinery/newscaster/Topic(href, href_list) - if(..()) - return - if ((usr.contents.Find(src) || ((get_dist(src, usr) <= 1) && istype(src.loc, /turf))) || (isRemoteControlling(usr))) - usr.set_interaction(src) - if(href_list["set_channel_name"]) - src.channel_name = strip_html(input(usr, "Provide a Feed Channel Name", "Network Channel Handler", "")) - while (findtext(src.channel_name," ") == 1) - src.channel_name = copytext(src.channel_name,2,length(src.channel_name)+1) - src.updateUsrDialog() - //src.update_icon() - - else if(href_list["set_channel_lock"]) - src.c_locked = !src.c_locked - src.updateUsrDialog() - //src.update_icon() - - else if(href_list["submit_new_channel"]) - //var/list/existing_channels = list() //OBSOLETE - var/list/existing_authors = list() - for(var/datum/feed_channel/FC in news_network.network_channels) - //existing_channels += FC.channel_name - if(FC.author == "\[REDACTED\]") - existing_authors += FC.backup_author - else - existing_authors +=FC.author - var/check = 0 - for(var/datum/feed_channel/FC in news_network.network_channels) - if(FC.channel_name == src.channel_name) - check = 1 - break - if(src.channel_name == "" || src.channel_name == "\[REDACTED\]" || src.scanned_user == "Unknown" || check || (src.scanned_user in existing_authors) ) - src.screen=7 - else - var/choice = alert("Please confirm Feed channel creation","Network Channel Handler","Confirm","Cancel") - if(choice=="Confirm") - var/datum/feed_channel/newChannel = new /datum/feed_channel - newChannel.channel_name = src.channel_name - newChannel.author = src.scanned_user - newChannel.locked = c_locked - news_network.network_channels += newChannel //Adding channel to the global network - src.screen=5 - src.updateUsrDialog() - //src.update_icon() - - else if(href_list["set_channel_receiving"]) - //var/list/datum/feed_channel/available_channels = list() - var/list/available_channels = list() - for(var/datum/feed_channel/F in news_network.network_channels) - if( (!F.locked || F.author == scanned_user) && !F.censored) - available_channels += F.channel_name - src.channel_name = strip_html(tgui_input_list(usr, "Choose receiving Feed Channel", "Network Channel Handler", available_channels )) - src.updateUsrDialog() - - else if(href_list["set_new_message"]) - src.msg = strip_html(input(usr, "Write your Feed story", "Network Channel Handler", "")) - while (findtext(src.msg," ") == 1) - src.msg = copytext(src.msg,2,length(src.msg)+1) - src.updateUsrDialog() - - else if(href_list["set_attachment"]) - AttachPhoto(usr) - src.updateUsrDialog() - - else if(href_list["submit_new_message"]) - if(src.msg =="" || src.msg=="\[REDACTED\]" || src.scanned_user == "Unknown" || src.channel_name == "" ) - src.screen=6 - else - var/datum/feed_message/newMsg = new /datum/feed_message - newMsg.author = src.scanned_user - newMsg.body = src.msg - if(photo) - newMsg.img = photo.img - for(var/datum/feed_channel/FC in news_network.network_channels) - if(FC.channel_name == src.channel_name) - FC.messages += newMsg //Adding message to the network's appropriate feed_channel - break - src.screen=4 - for(var/obj/structure/machinery/newscaster/NEWSCASTER in allCasters) - NEWSCASTER.newsAlert(src.channel_name) - - src.updateUsrDialog() - - else if(href_list["create_channel"]) - src.screen=2 - src.updateUsrDialog() - - else if(href_list["create_feed_story"]) - src.screen=3 - src.updateUsrDialog() - - else if(href_list["menu_paper"]) - src.screen=8 - src.updateUsrDialog() - else if(href_list["print_paper"]) - if(!src.paper_remaining) - src.screen=21 - else - src.print_paper() - src.screen = 20 - src.updateUsrDialog() - - else if(href_list["menu_censor_story"]) - src.screen=10 - src.updateUsrDialog() - - else if(href_list["menu_censor_channel"]) - src.screen=11 - src.updateUsrDialog() - - else if(href_list["menu_wanted"]) - var/already_wanted = 0 - if(news_network.wanted_issue) - already_wanted = 1 - - if(already_wanted) - src.channel_name = news_network.wanted_issue.author - src.msg = news_network.wanted_issue.body - src.screen = 14 - src.updateUsrDialog() - - else if(href_list["set_wanted_name"]) - src.channel_name = strip_html(input(usr, "Provide the name of the Wanted person", "Network Security Handler", "")) - while (findtext(src.channel_name," ") == 1) - src.channel_name = copytext(src.channel_name,2,length(src.channel_name)+1) - src.updateUsrDialog() - - else if(href_list["set_wanted_desc"]) - src.msg = strip_html(input(usr, "Provide the a description of the Wanted person and any other details you deem important", "Network Security Handler", "")) - while (findtext(src.msg," ") == 1) - src.msg = copytext(src.msg,2,length(src.msg)+1) - src.updateUsrDialog() - - else if(href_list["submit_wanted"]) - var/input_param = text2num(href_list["submit_wanted"]) - if(src.msg == "" || src.channel_name == "" || src.scanned_user == "Unknown") - src.screen = 16 - else - var/choice = alert("Please confirm Wanted Issue [(input_param==1) ? ("creation.") : ("edit.")]","Network Security Handler","Confirm","Cancel") - if(choice=="Confirm") - if(input_param==1) //If input_param == 1 we're submitting a new wanted issue. At 2 we're just editing an existing one. See the else below - var/datum/feed_message/WANTED = new /datum/feed_message - WANTED.author = src.channel_name - WANTED.body = src.msg - WANTED.backup_author = src.scanned_user //I know, a bit wacky - if(photo) - WANTED.img = photo.img - news_network.wanted_issue = WANTED - for(var/obj/structure/machinery/newscaster/NEWSCASTER in allCasters) - NEWSCASTER.newsAlert() - NEWSCASTER.update_icon() - src.screen = 15 - else - if(news_network.wanted_issue.is_admin_message) - alert("The wanted issue has been distributed by a Weyland-Yutani higherup. You cannot edit it.","Ok") - return - news_network.wanted_issue.author = src.channel_name - news_network.wanted_issue.body = src.msg - news_network.wanted_issue.backup_author = src.scanned_user - if(photo) - news_network.wanted_issue.img = photo.img - src.screen = 19 - - src.updateUsrDialog() - - else if(href_list["cancel_wanted"]) - if(news_network.wanted_issue.is_admin_message) - alert("The wanted issue has been distributed by a Weyland-Yutani higherup. You cannot take it down.","Ok") - return - var/choice = alert("Please confirm Wanted Issue removal","Network Security Handler","Confirm","Cancel") - if(choice=="Confirm") - news_network.wanted_issue = null - for(var/obj/structure/machinery/newscaster/NEWSCASTER in allCasters) - NEWSCASTER.update_icon() - src.screen=17 - src.updateUsrDialog() - - else if(href_list["view_wanted"]) - src.screen=18 - src.updateUsrDialog() - else if(href_list["censor_channel_author"]) - var/datum/feed_channel/FC = locate(href_list["censor_channel_author"]) - if(FC.is_admin_channel) - alert("This channel was created by a Weyland-Yutani Officer. You cannot censor it.","Ok") - return - if(FC.author != "\[REDACTED\]") - FC.backup_author = FC.author - FC.author = "\[REDACTED\]" - else - FC.author = FC.backup_author - src.updateUsrDialog() - - else if(href_list["censor_channel_story_author"]) - var/datum/feed_message/MSG = locate(href_list["censor_channel_story_author"]) - if(MSG.is_admin_message) - alert("This message was created by a Weyland-Yutani Officer. You cannot censor its author.","Ok") - return - if(MSG.author != "\[REDACTED\]") - MSG.backup_author = MSG.author - MSG.author = "\[REDACTED\]" - else - MSG.author = MSG.backup_author - src.updateUsrDialog() - - else if(href_list["censor_channel_story_body"]) - var/datum/feed_message/MSG = locate(href_list["censor_channel_story_body"]) - if(MSG.is_admin_message) - alert("This channel was created by a Weyland-Yutani Officer. You cannot censor it.","Ok") - return - if(MSG.img != null) - MSG.backup_img = MSG.img - MSG.img = null - else - MSG.img = MSG.backup_img - if(MSG.body != "\[REDACTED\]") - MSG.backup_body = MSG.body - MSG.body = "\[REDACTED\]" - else - MSG.body = MSG.backup_body - src.updateUsrDialog() - - else if(href_list["pick_d_notice"]) - var/datum/feed_channel/FC = locate(href_list["pick_d_notice"]) - src.viewing_channel = FC - src.screen=13 - src.updateUsrDialog() - - else if(href_list["toggle_d_notice"]) - var/datum/feed_channel/FC = locate(href_list["toggle_d_notice"]) - if(FC.is_admin_channel) - alert("This channel was created by a Weyland-Yutani Officer. You cannot place a D-Notice upon it.","Ok") - return - FC.censored = !FC.censored - src.updateUsrDialog() - - else if(href_list["view"]) - src.screen=1 - src.updateUsrDialog() - - else if(href_list["setScreen"]) //Brings us to the main menu and resets all fields~ - src.screen = text2num(href_list["setScreen"]) - if (src.screen == 0) - src.scanned_user = "Unknown"; - msg = ""; - src.c_locked=0; - channel_name=""; - src.viewing_channel = null - src.updateUsrDialog() - - else if(href_list["show_channel"]) - var/datum/feed_channel/FC = locate(href_list["show_channel"]) - src.viewing_channel = FC - src.screen = 9 - src.updateUsrDialog() - - else if(href_list["pick_censor_channel"]) - var/datum/feed_channel/FC = locate(href_list["pick_censor_channel"]) - src.viewing_channel = FC - src.screen = 12 - src.updateUsrDialog() - - else if(href_list["refresh"]) - src.updateUsrDialog() - - -/obj/structure/machinery/newscaster/attackby(obj/item/I as obj, mob/user as mob) - - if (src.isbroken) - playsound(src.loc, 'sound/effects/hit_on_shattered_glass.ogg', 25, 1) - for (var/mob/O in hearers(5, src.loc)) - O.show_message("[user.name] further abuses the shattered [src.name].", SHOW_MESSAGE_VISIBLE) - else - if(!(I.flags_item & NOBLUDGEON) && I.force) - if(I.force <15) - for (var/mob/O in hearers(5, src.loc)) - O.show_message("[user.name] hits the [src.name] with the [I.name] with no visible effect.", SHOW_MESSAGE_VISIBLE) - playsound(src.loc, 'sound/effects/Glasshit.ogg', 25, 1) - else - src.hitstaken++ - if(src.hitstaken==3) - for (var/mob/O in hearers(5, src.loc)) - O.show_message("[user.name] smashes the [src.name]!", SHOW_MESSAGE_VISIBLE) - src.isbroken=1 - playsound(src.loc, 'sound/effects/Glassbr3.ogg', 50, 1) - else - for (var/mob/O in hearers(5, src.loc)) - O.show_message("[user.name] forcefully slams the [src.name] with the [I.name]!", SHOW_MESSAGE_VISIBLE) - playsound(src.loc, 'sound/effects/Glasshit.ogg', 25, 1) - else - to_chat(user, "This does nothing.") - src.update_icon() - -/obj/structure/machinery/newscaster/attack_remote(mob/user as mob) - return src.attack_hand(user) //or maybe it'll have some special functions? No idea. - -/obj/structure/machinery/newscaster/proc/AttachPhoto(mob/user as mob) - if(photo) - if(!isRemoteControlling(user)) - photo.forceMove(loc) - user.put_in_inactive_hand(photo) - photo = null - var/obj/item/photo/PH = user.get_active_hand() - if(istype(PH)) - if(user.drop_inv_item_to_loc(photo, src)) - photo = PH - else if(istype(user,/mob/living/silicon)) - var/mob/living/silicon/tempAI = user - var/datum/picture/selection = tempAI.GetPicture() - if (!selection) - return - - var/obj/item/photo/P = new/obj/item/photo() - P.construct(selection) - photo = P - - -//######################################################################################################################## -//###################################### NEWSPAPER! ###################################################################### -//######################################################################################################################## /obj/item/newspaper name = "newspaper" @@ -755,191 +15,3 @@ var/list/obj/structure/machinery/newscaster/allCasters = list() //Global list th icon_state = "newspaper" w_class = SIZE_TINY //Let's make it fit in trashbags! attack_verb = list("bapped") - var/screen = 0 - var/pages = 0 - var/curr_page = 0 - var/list/datum/feed_channel/news_content = list() - var/datum/feed_message/important_message = null - var/scribble="" - var/scribble_page = null - -/obj/item/newspaper/attack_self(mob/user as mob) - ..() - if(!ishuman(user)) - to_chat(user, "The paper is full of intelligible symbols!") - return - - var/mob/living/carbon/human/human_user = user - var/dat - src.pages = 0 - switch(screen) - if(0) //Cover - dat+="
The Griffon
" - dat+="
Weyland-Yutani-standard newspaper, for use on Weyland-Yutani� Space Facilities

" - if(!length(src.news_content)) - if(src.important_message) - dat+="Contents:
    **Important Security Announcement** \[page [src.pages+2]\]
" - else - dat+="Other than the title, the rest of the newspaper is unprinted..." - else - dat+="Contents:
    " - for(var/datum/feed_channel/NP in src.news_content) - src.pages++ - if(src.important_message) - dat+="**Important Security Announcement** \[page [src.pages+2]\]
    " - var/temp_page=0 - for(var/datum/feed_channel/NP in src.news_content) - temp_page++ - dat+="[NP.channel_name] \[page [temp_page+1]\]
    " - dat+="
" - if(scribble_page==curr_page) - dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "
" - if(1) // X channel pages inbetween. - for(var/datum/feed_channel/NP in src.news_content) - src.pages++ //Let's get it right again. - var/datum/feed_channel/C = src.news_content[src.curr_page] - dat+="[C.channel_name] \[created by: [C.author]\]

" - if(C.censored) - dat+="This channel was deemed dangerous to the general welfare of the station and therefore marked with a D-Notice. Its contents were not transferred to the newspaper at the time of printing." - else - if(!length(C.messages)) - dat+="No Feed stories stem from this channel..." - else - dat+="
    " - var/i = 0 - for(var/datum/feed_message/MESSAGE in C.messages) - i++ - dat+="-[MESSAGE.body]
    " - if(MESSAGE.img) - user << browse_rsc(MESSAGE.img, "tmp_photo[i].png") - dat+="
    " - dat+="\[[MESSAGE.message_type] by [MESSAGE.author]\]

    " - dat+="
" - if(scribble_page==curr_page) - dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "

" - if(2) //Last page - for(var/datum/feed_channel/NP in src.news_content) - src.pages++ - if(src.important_message!=null) - dat+="
Wanted Issue:


" - dat+="Criminal name: [important_message.author]
" - dat+="Description: [important_message.body]
" - dat+="Photo:: " - if(important_message.img) - user << browse_rsc(important_message.img, "tmp_photow.png") - dat+="
" - else - dat+="None" - else - dat+="Apart from some uninteresting Classified ads, there's nothing on this page..." - if(scribble_page==curr_page) - dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "
" - else - dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com" - - dat+="

[src.curr_page+1]
" - human_user << browse(dat, "window=newspaper_main;size=300x400") - onclose(human_user, "newspaper_main") - - -/obj/item/newspaper/Topic(href, href_list) - var/mob/living/U = usr - ..() - if ((src in U.contents) || ( istype(loc, /turf) && in_range(src, U) )) - U.set_interaction(src) - if(href_list["next_page"]) - if(curr_page==src.pages+1) - return //Don't need that at all, but anyway. - if(src.curr_page == src.pages) //We're at the middle, get to the end - src.screen = 2 - else - if(curr_page == 0) //We're at the start, get to the middle - src.screen=1 - src.curr_page++ - playsound(src.loc, "pageturn", 15, 1) - - else if(href_list["prev_page"]) - if(curr_page == 0) - return - if(curr_page == 1) - src.screen = 0 - - else - if(curr_page == src.pages+1) //we're at the end, let's go back to the middle. - src.screen = 1 - src.curr_page-- - playsound(src.loc, "pageturn", 15, 1) - - if (istype(src.loc, /mob)) - src.attack_self(src.loc) - - -/obj/item/newspaper/attackby(obj/item/W as obj, mob/user as mob) - if(HAS_TRAIT(W, TRAIT_TOOL_PEN)) - if(src.scribble_page == src.curr_page) - to_chat(user, "There's already a scribble in this page... You wouldn't want to make things too cluttered, would you?") - else - var/s = strip_html( input(user, "Write something", "Newspaper", "") ) - s = strip_html(s) - if (!s) - return - if (!in_range(src, usr) && src.loc != usr) - return - src.scribble_page = src.curr_page - src.scribble = s - src.attack_self(user) - return - - -////////////////////////////////////helper procs - - -/obj/structure/machinery/newscaster/proc/scan_user(mob/living/user as mob) - if(istype(user,/mob/living/carbon/human)) //User is a human - var/mob/living/carbon/human/human_user = user - if(human_user.wear_id) //Newscaster scans you - if(istype(human_user.wear_id, /obj/item/card/id) ) - var/obj/item/card/id/ID = human_user.wear_id - src.scanned_user ="[ID.registered_name] ([ID.assignment])" - else - src.scanned_user ="Unknown" - else - src.scanned_user ="Unknown" - else - var/mob/living/silicon/ai_user = user - src.scanned_user = "[ai_user.name] ([ai_user.job])" - - -/obj/structure/machinery/newscaster/proc/print_paper() - var/obj/item/newspaper/NEWSPAPER = new /obj/item/newspaper - for(var/datum/feed_channel/FC in news_network.network_channels) - NEWSPAPER.news_content += FC - if(news_network.wanted_issue) - NEWSPAPER.important_message = news_network.wanted_issue - NEWSPAPER.forceMove(get_turf(src)) - src.paper_remaining-- - return - -//Removed for now so these aren't even checked every tick. Left this here in-case Agouri needs it later. -///obj/structure/machinery/newscaster/process() //Was thinking of doing the icon update through process, but multiple iterations per second does not -// return //bode well with a newscaster network of 10+ machines. Let's just return it, as it's added in the machines list. - -/obj/structure/machinery/newscaster/proc/newsAlert(channel) //This isn't Agouri's work, for it is ugly and vile. - var/turf/T = get_turf(src) //Who the fuck uses spawn(600) anyway, jesus christ - if(channel) - for(var/mob/O in hearers(world_view_size-1, T)) - O.show_message(SPAN_NEWSCASTER("[src.name] beeps, \"Breaking news from [channel]!\""), SHOW_MESSAGE_AUDIBLE) - src.alert = 1 - src.update_icon() - spawn(30 SECONDS) - src.alert = 0 - src.update_icon() - playsound(src.loc, 'sound/machines/twobeep.ogg', 25, 1) - else - for(var/mob/O in hearers(world_view_size-1, T)) - O.show_message(SPAN_NEWSCASTER("[src.name] beeps, \"Attention! Wanted issue distributed!\""), SHOW_MESSAGE_AUDIBLE) - playsound(src.loc, 'sound/machines/warning-buzzer.ogg', 25, 1) - return diff --git a/code/game/machinery/nuclearbomb.dm b/code/game/machinery/nuclearbomb.dm index 45062cbf6b..42b5d95694 100644 --- a/code/game/machinery/nuclearbomb.dm +++ b/code/game/machinery/nuclearbomb.dm @@ -1,5 +1,4 @@ -var/bomb_set = FALSE - +GLOBAL_VAR_INIT(bomb_set, FALSE) /obj/structure/machinery/nuclearbomb name = "\improper Nuclear Fission Explosive" desc = "Nuke the entire site from orbit, it's the only way to be sure. Too bad we don't have any orbital nukes." @@ -59,7 +58,7 @@ var/bomb_set = FALSE update_minimap_icon() return PROCESS_KILL - bomb_set = TRUE //So long as there is one nuke timing, it means one nuke is armed. + GLOB.bomb_set = TRUE //So long as there is one nuke timing, it means one nuke is armed. timeleft = explosion_time - world.time if(world.time >= explosion_time) explode() @@ -90,7 +89,7 @@ var/bomb_set = FALSE return XENO_ATTACK_ACTION /obj/structure/machinery/nuclearbomb/attackby(obj/item/O as obj, mob/user as mob) - if(anchored && timing && bomb_set && HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) + if(anchored && timing && GLOB.bomb_set && HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) user.visible_message(SPAN_INFO("[user] begins to defuse \the [src]."), SPAN_INFO("You begin to defuse \the [src]. This will take some time...")) if(do_after(user, 150 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) disable() @@ -111,8 +110,8 @@ var/bomb_set = FALSE return if(isqueen(user)) - if(timing && bomb_set) - user.visible_message(SPAN_INFO("[user] begins to defuse \the [src]."), SPAN_INFO("You begin to defuse \the [src]. This will take some time...")) + if(timing && GLOB.bomb_set) + user.visible_message(SPAN_INFO("[user] begins engulfing \the [src] with resin."), SPAN_INFO("You start regurgitating and engulfing the \the [src] with resin... stopping the electronics from working, this will take some time...")) if(do_after(user, 5 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) disable() return @@ -152,7 +151,7 @@ var/bomb_set = FALSE data["command_lockout"] = command_lockout data["allowed"] = allowed data["being_used"] = being_used - data["decryption_complete"] = TRUE //this is overriden by techweb nuke UI_data later, this just makes it default to true + data["decryption_complete"] = TRUE //this is overridden by techweb nuke UI_data later, this just makes it default to true return data @@ -196,14 +195,14 @@ var/bomb_set = FALSE timing = !timing if(timing) if(!safety) - bomb_set = TRUE + GLOB.bomb_set = TRUE explosion_time = world.time + timeleft update_minimap_icon() start_processing() announce_to_players() message_admins("\The [src] has been activated by [key_name(ui.user, 1)] [ADMIN_JMP_USER(ui.user)]") else - bomb_set = FALSE + GLOB.bomb_set = FALSE else disable() message_admins("\The [src] has been deactivated by [key_name(ui.user, 1)] [ADMIN_JMP_USER(ui.user)]") @@ -232,7 +231,7 @@ var/bomb_set = FALSE being_used = FALSE if(safety) timing = FALSE - bomb_set = FALSE + GLOB.bomb_set = FALSE . = TRUE if("toggleCommandLockout") @@ -330,45 +329,45 @@ var/bomb_set = FALSE humans_other -= current_mob if(timer_warning) //we check for timer warnings first - announcement_helper("WARNING.\n\nDETONATION IN [round(timeleft/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') - announcement_helper("WARNING.\n\nDETONATION IN [round(timeleft/10)] SECONDS.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') + announcement_helper("WARNING.\n\nDETONATION IN [floor(timeleft/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') + announcement_helper("WARNING.\n\nDETONATION IN [floor(timeleft/10)] SECONDS.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') //preds part - var/t_left = duration2text_sec(round(rand(timeleft - timeleft / 10, timeleft + timeleft / 10))) - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nYou have approximately [t_left] seconds to abandon the hunting grounds before activation of human Purification Device.")) + var/t_left = duration2text_sec(floor(rand(timeleft - timeleft / 10, timeleft + timeleft / 10))) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nYou have approximately [t_left] seconds to abandon the hunting grounds before activation of the human purification device.")) //xenos part var/warning if(timer_warning & NUKE_SHOW_TIMER_HALF) - warning = "Hive killer is halfway through preparation cycle!" + warning = "A shiver goes down our carapace as we feel the approaching end... the hive killer is halfway through its preparation cycle!" else if(timer_warning & NUKE_SHOW_TIMER_MINUTE) - warning = "Hive killer is almost ready to trigger!" + warning = "Every sense in our form is screaming... the hive killer is almost ready to trigger!" else warning = "DISABLE IT! NOW!" var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(!hive.totalXenos.len) + if(!length(hive.totalXenos)) return xeno_announcement(SPAN_XENOANNOUNCE(warning), hive.hivenumber, XENO_GENERAL_ANNOUNCE) return var/datum/hive_status/hive if(timing) - announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE ACTIVATED.\n\nDETONATION IN [round(timeleft/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') - announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE ACTIVATED.\n\nDETONATION IN [round(timeleft/10)] SECONDS.", "HQ Nuclear Tracker", humans_other, 'sound/misc/notice1.ogg') - var/t_left = duration2text_sec(round(rand(timeleft - timeleft / 10, timeleft + timeleft / 10))) - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
A human Purification Device has been detected. You have approximately [t_left] to abandon the hunting grounds before it activates.")) + announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE ACTIVATED.\n\nDETONATION IN [floor(timeleft/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') + announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE ACTIVATED.\n\nDETONATION IN [floor(timeleft/10)] SECONDS.", "HQ Nuclear Tracker", humans_other, 'sound/misc/notice1.ogg') + var/t_left = duration2text_sec(floor(rand(timeleft - timeleft / 10, timeleft + timeleft / 10))) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
A human purification device has been detected. You have approximately [t_left] to abandon the hunting grounds before it activates.")) for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(!hive.totalXenos.len) + if(!length(hive.totalXenos)) continue xeno_announcement(SPAN_XENOANNOUNCE("The tallhosts have deployed a hive killer at [get_area_name(loc)]! Stop it at all costs!"), hive.hivenumber, XENO_GENERAL_ANNOUNCE) else announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DEACTIVATED.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DEACTIVATED.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
The human Purification Device's signature has disappeared.")) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
The human purification device's signature has disappeared.")) for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(!hive.totalXenos.len) + if(!length(hive.totalXenos)) continue xeno_announcement(SPAN_XENOANNOUNCE("The hive killer has been disabled! Rejoice!"), hive.hivenumber, XENO_GENERAL_ANNOUNCE) return @@ -378,7 +377,7 @@ var/bomb_set = FALSE /obj/structure/machinery/nuclearbomb/proc/disable() timing = FALSE - bomb_set = FALSE + GLOB.bomb_set = FALSE timeleft = initial(timeleft) explosion_time = null announce_to_players() @@ -397,46 +396,40 @@ var/bomb_set = FALSE playsound(src, 'sound/machines/Alarm.ogg', 75, 0, 30) world << pick('sound/theme/nuclear_detonation1.ogg','sound/theme/nuclear_detonation2.ogg') - var/list/alive_mobs = list() //Everyone who will be destroyed on the zlevel(s). - var/list/dead_mobs = list() //Everyone who only needs to see the cinematic. for(var/mob/current_mob as anything in GLOB.mob_list) - if(!current_mob?.loc) - continue - if(current_mob.stat == DEAD) - dead_mobs |= current_mob - continue var/turf/current_turf = get_turf(current_mob) - if(z == current_turf.z) - alive_mobs |= current_mob + if(current_turf?.z == z && current_mob.stat != DEAD) shake_camera(current_mob, 110, 4) + sleep(10 SECONDS) + + var/list/mob/alive_mobs = list() //Everyone who will be destroyed on the zlevel(s). + var/list/mob/dead_mobs = list() //Everyone that needs embryos cleared + for(var/mob/current_mob as anything in GLOB.mob_list) + var/turf/current_turf = get_turf(current_mob) + if(current_turf?.z == z) + if(current_mob.stat == DEAD) + dead_mobs |= current_mob + continue + alive_mobs |= current_mob + for(var/mob/current_mob in alive_mobs) - if(current_mob && current_mob.loc) - var/turf/current_mob_turf = get_turf(current_mob) - if(z == current_mob_turf.z) - if(istype(current_mob.loc, /obj/structure/closet/secure_closet/freezer/fridge)) - continue - current_mob.death(create_cause_data("nuclear explosion")) - - for(var/mob/current_mob in (alive_mobs + dead_mobs)) - if(current_mob && current_mob.loc) - var/turf/current_mob_turf = get_turf(current_mob) - if(z == current_mob_turf.z) - if(istype(current_mob.loc, /obj/structure/closet/secure_closet/freezer/fridge)) - continue - for(var/obj/item/alien_embryo/embryo in current_mob) - qdel(embryo) - - sleep(100) + if(istype(current_mob.loc, /obj/structure/closet/secure_closet/freezer/fridge)) + continue + current_mob.death(create_cause_data("nuclear explosion")) + + for(var/mob/living/current_mob in (alive_mobs + dead_mobs)) + if(istype(current_mob.loc, /obj/structure/closet/secure_closet/freezer/fridge)) + continue + for(var/obj/item/alien_embryo/embryo in current_mob) + qdel(embryo) + cell_explosion(loc, 500, 150, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name))) qdel(src) return TRUE /obj/structure/machinery/nuclearbomb/Destroy() - if(timing != -1) - message_admins("\The [src] has been unexpectedly deleted at ([x],[y],[x]). [ADMIN_JMP(src)]") - log_game("\The [src] has been unexpectedly deleted at ([x],[y],[x]).") - bomb_set = FALSE + GLOB.bomb_set = FALSE SSminimaps.remove_marker(src) return ..() @@ -576,42 +569,42 @@ var/bomb_set = FALSE announcement_helper("DECRYPTION COMPLETE", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') announcement_helper("DECRYPTION COMPLETE", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nThe human Purification Device is able to be activated.")) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nThe human purification device is able to be activated.")) var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] if(!length(hive.totalXenos)) return - xeno_announcement(SPAN_XENOANNOUNCE("The hive killer is ready to be activated! Assault at once!"), hive.hivenumber, XENO_GENERAL_ANNOUNCE) + xeno_announcement(SPAN_XENOANNOUNCE("We get a sense of impending doom... the hive killer is ready to be activated."), hive.hivenumber, XENO_GENERAL_ANNOUNCE) return - announcement_helper("DECRYPTION IN [round(decryption_time/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') - announcement_helper("DECRYPTION IN [round(decryption_time/10)] SECONDS.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') + announcement_helper("DECRYPTION IN [floor(decryption_time/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') + announcement_helper("DECRYPTION IN [floor(decryption_time/10)] SECONDS.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') //preds part - var/time_left = duration2text_sec(round(rand(decryption_time - decryption_time / 10, decryption_time + decryption_time / 10))) - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nYou have approximately [time_left] seconds to abandon the hunting grounds before human Purification Device is able to be activated.")) + var/time_left = duration2text_sec(floor(rand(decryption_time - decryption_time / 10, decryption_time + decryption_time / 10))) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!\n\nYou have approximately [time_left] seconds to abandon the hunting grounds before the human purification device is able to be activated.")) //xenos part - var/warning = "Hive killer is almost prepared to be activated!" + var/warning = "We are almost out of time, STOP THEM." if(timer_warning & NUKE_DECRYPT_SHOW_TIMER_HALF) - warning = "Hive killer is halfway through its initial phase!" + warning = "The Hive grows restless! it's halfway done..." var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(!hive.totalXenos.len) + if(!length(hive.totalXenos)) return xeno_announcement(SPAN_XENOANNOUNCE(warning), hive.hivenumber, XENO_GENERAL_ANNOUNCE) return var/datum/hive_status/hive if(decrypting) - announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DECRYPTION STARTED.\n\nDECRYPTION IN [round(decryption_time/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') - announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DECRYPTION STARTED.\n\nDECRYPTION IN [round(decryption_time/10)] SECONDS.", "HQ Nuclear Tracker", humans_other, 'sound/misc/notice1.ogg') - var/time_left = duration2text_sec(round(rand(decryption_time - decryption_time / 10, decryption_time + decryption_time / 10))) - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
A human Purification Device has been detected. You have approximately [time_left] before it finishes its initial phase.")) + announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DECRYPTION STARTED.\n\nDECRYPTION IN [floor(decryption_time/10)] SECONDS.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') + announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE ORDNANCE DECRYPTION STARTED.\n\nDECRYPTION IN [floor(decryption_time/10)] SECONDS.", "HQ Nuclear Tracker", humans_other, 'sound/misc/notice1.ogg') + var/time_left = duration2text_sec(floor(rand(decryption_time - decryption_time / 10, decryption_time + decryption_time / 10))) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
A human purification device has been detected. You have approximately [time_left] before it finishes its initial phase.")) for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] if(!length(hive.totalXenos)) @@ -621,7 +614,7 @@ var/bomb_set = FALSE announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE DECRYPTION HALTED.", "[MAIN_AI_SYSTEM] Nuclear Tracker", humans_uscm, 'sound/misc/notice1.ogg') announcement_helper("ALERT.\n\nNUCLEAR EXPLOSIVE DECRYPTION HALTED.", "HQ Intel Division", humans_other, 'sound/misc/notice1.ogg') - yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
The human Purification Device's signature has disappeared.")) + yautja_announcement(SPAN_YAUTJABOLDBIG("WARNING!
The human purification device's signature has disappeared.")) for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] if(!length(hive.totalXenos)) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index b21f73af76..a886b59f50 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -296,7 +296,7 @@ Buildable meters /obj/item/pipe/Move() . = ..() if ((pipe_type in list (PIPE_SIMPLE_BENT, PIPE_SUPPLY_BENT, PIPE_SCRUBBERS_BENT, PIPE_HE_BENT, PIPE_INSULATED_BENT)) \ - && (src.dir in cardinal)) + && (src.dir in GLOB.cardinals)) setDir(src.dir|turn(src.dir, 90)) else if (pipe_type in list (PIPE_SIMPLE_STRAIGHT, PIPE_SUPPLY_STRAIGHT, PIPE_SCRUBBERS_STRAIGHT, PIPE_UNIVERSAL, PIPE_HE_STRAIGHT, PIPE_INSULATED_STRAIGHT, PIPE_MVALVE)) if(dir==2) @@ -620,8 +620,8 @@ Buildable meters playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) user.visible_message( \ - "[user] fastens the [src].", \ - SPAN_NOTICE("You have fastened the [src]."), \ + "[user] fastens [src].", \ + SPAN_NOTICE("You have fastened [src]."), \ "You hear ratchet.") qdel(src) // remove the pipe item diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm index c3dc22d050..536ad72557 100644 --- a/code/game/machinery/rechargestation.dm +++ b/code/game/machinery/rechargestation.dm @@ -73,9 +73,9 @@ var/charge_diff = max_internal_charge - current_internal_charge // OK we have charge differences charge_diff = charge_diff / CELLRATE // Deconvert from Charge to Joules if(chargemode) // Decide if use passive or active power - charge_diff = between(0, charge_diff, charging_cap_active) // Trim the values to limits + charge_diff = clamp(charge_diff, 0, charging_cap_active) // Trim the values to limits else // We should have load for this tick in Watts - charge_diff = between(0, charge_diff, charging_cap_passive) + charge_diff = clamp(charge_diff, 0, charging_cap_passive) charge_diff += 50 // 50W for circuitry @@ -106,7 +106,7 @@ /obj/structure/machinery/recharge_station/get_examine_text(mob/user) . = ..() - . += "The charge meter reads: [round(chargepercentage())]%" + . += "The charge meter reads: [floor(chargepercentage())]%" /obj/structure/machinery/recharge_station/proc/chargepercentage() return ((current_internal_charge / max_internal_charge) * 100) @@ -135,7 +135,7 @@ else icon_state = "borgcharger0" overlays.Cut() - switch(round(chargepercentage())) + switch(floor(chargepercentage())) if(1 to 20) overlays += image('icons/obj/objects.dmi', "statn_c0") if(21 to 40) @@ -152,21 +152,6 @@ /obj/structure/machinery/recharge_station/proc/process_occupant() if(src.occupant) var/doing_stuff = FALSE - if (isrobot(occupant)) - var/mob/living/silicon/robot/R = occupant - if(R.module) - R.module.respawn_consumable(R) - if(!R.cell) - return - if(!R.cell.fully_charged()) - var/diff = min(R.cell.maxcharge - R.cell.charge, 500) // 500 charge / tick is about 2% every 3 seconds - diff = min(diff, current_internal_charge) // No over-discharging - R.cell.give(diff) - current_internal_charge = max(current_internal_charge - diff, 0) - to_chat(occupant, "Recharging...") - doing_stuff = TRUE - else - update_use_power(USE_POWER_IDLE) if (issynth(occupant)) var/mob/living/carbon/human/humanoid_occupant = occupant //for special synth surgeries if(occupant.getBruteLoss() > 0 || occupant.getFireLoss() > 0 || occupant.getBrainLoss() > 0) @@ -182,7 +167,7 @@ doing_stuff = TRUE if(!doing_stuff) for(var/obj/limb/current_limb in humanoid_occupant.limbs) - if(current_limb.implants.len) + if(length(current_limb.implants)) doing_stuff = TRUE to_chat(occupant, "Foreign material detected. Beginning removal process...") for(var/obj/item/current_implant in current_limb.implants) @@ -240,14 +225,10 @@ return move_mob_inside(target) /obj/structure/machinery/recharge_station/verb/move_mob_inside(mob/living/M) - if (!isrobot(M) && !issynth(M)) + if (!issynth(M)) return FALSE if (occupant) return FALSE - if (isrobot(M)) - var/mob/living/silicon/robot/R = M - if(QDELETED(R.cell)) - return FALSE M.stop_pulling() if(M && M.client) M.client.perspective = EYE_PERSPECTIVE @@ -268,18 +249,12 @@ if (usr.stat == 2) //Whoever had it so that a borg with a dead cell can't enter this thing should be shot. --NEO return - if (!isrobot(usr) && !issynth(usr)) + if (!issynth(usr)) to_chat(usr, SPAN_NOTICE(" Only non-organics may enter the recharge and repair station!")) return if (src.occupant) to_chat(usr, SPAN_NOTICE(" The cell is already occupied!")) return - if (isrobot(usr)) - var/mob/living/silicon/robot/R = usr - if(QDELETED(R.cell)) - to_chat(usr, SPAN_NOTICE("Without a powercell, you can't be recharged.")) - //Make sure they actually HAVE a cell, now that they can get in while powerless. --NEO - return move_mob_inside(usr) return @@ -289,7 +264,7 @@ var/obj/item/grab/G = W if(!ismob(G.grabbed_thing)) return - if(!issynth(G.grabbed_thing) && !isrobot(G.grabbed_thing)) + if(!issynth(G.grabbed_thing)) return if(occupant) diff --git a/code/game/machinery/scoreboard.dm b/code/game/machinery/scoreboard.dm index 9b8d6402ca..0810ae26cb 100644 --- a/code/game/machinery/scoreboard.dm +++ b/code/game/machinery/scoreboard.dm @@ -16,14 +16,13 @@ update_display() /obj/structure/machinery/scoreboard/proc/update_display() - if(overlays.len) - overlays.Cut() + LAZYCLEARLIST(overlays) - var/score_state = "s[( round(scoreleft/10) > scoreleft/10 ? round(scoreleft/10)-1 : round(scoreleft/10) )]a" + var/score_state = "s[( floor(scoreleft/10) > scoreleft/10 ? floor(scoreleft/10)-1 : floor(scoreleft/10) )]a" overlays += image('icons/obj/structures/machinery/scoreboard.dmi', icon_state=score_state) score_state = "s[scoreleft%10]b" overlays += image('icons/obj/structures/machinery/scoreboard.dmi', icon_state=score_state) - score_state = "s[( round(scoreright/10) > scoreright/10 ? round(scoreright/10)-1 : round(scoreright/10) )]c" + score_state = "s[( floor(scoreright/10) > scoreright/10 ? floor(scoreright/10)-1 : floor(scoreright/10) )]c" overlays += image('icons/obj/structures/machinery/scoreboard.dmi', icon_state=score_state) score_state = "s[scoreright%10]d" overlays += image('icons/obj/structures/machinery/scoreboard.dmi', icon_state=score_state) @@ -68,7 +67,7 @@ active = 1 icon_state = "launcheract" - for(var/obj/structure/machinery/scoreboard/X in machines) + for(var/obj/structure/machinery/scoreboard/X in GLOB.machines) if(X.id == id) X.reset_scores() diff --git a/code/game/machinery/seed_extractor.dm b/code/game/machinery/seed_extractor.dm index e07b13f64f..71caa7a869 100644 --- a/code/game/machinery/seed_extractor.dm +++ b/code/game/machinery/seed_extractor.dm @@ -6,32 +6,61 @@ density = TRUE anchored = TRUE -/obj/structure/machinery/seed_extractor/attackby(obj/item/O as obj, mob/user as mob) +/obj/structure/machinery/seed_extractor/attackby(obj/item/object as obj, mob/user as mob) + // Plant bag and other storage containers. + if(istype(object,/obj/item/storage)) + var/obj/item/storage/container = object + if(length(container.contents) == 0) + to_chat(user, SPAN_NOTICE("[container] is empty.")) + return + + to_chat(user, SPAN_NOTICE("You start dumping the contents of [container] into [src].")) + if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + for(var/obj/item/item as anything in container) + if(extract(item, user)) + // Properly deletes container contents after they've been processed + container.remove_from_storage(item) + item.moveToNullspace() + + playsound(user.loc, "rustle", 15, 1, 6) + else + extract(object, user) + + + +/obj/structure/machinery/seed_extractor/proc/extract(obj/item/object as obj, mob/user as mob) // Fruits and vegetables. - if(istype(O, /obj/item/reagent_container/food/snacks/grown) || istype(O, /obj/item/grown)) - if(user.temp_drop_inv_item(O)) + if(istype(object, /obj/item/reagent_container/food/snacks/grown) || istype(object, /obj/item/grown)) + if(user.temp_drop_inv_item(object)) var/datum/seed/new_seed_type - if(istype(O, /obj/item/grown)) - var/obj/item/grown/F = O - new_seed_type = seed_types[F.plantname] + if(istype(object, /obj/item/grown)) + var/obj/item/grown/plant = object + new_seed_type = GLOB.seed_types[plant.plantname] else - var/obj/item/reagent_container/food/snacks/grown/F = O - new_seed_type = seed_types[F.plantname] + var/obj/item/reagent_container/food/snacks/grown/plant = object + new_seed_type = GLOB.seed_types[plant.plantname] if(new_seed_type) - to_chat(user, SPAN_NOTICE("You extract some seeds from [O].")) + to_chat(user, SPAN_NOTICE("You extract some seeds from [object].")) var/produce = rand(1,4) for(var/i = 0;i<=produce;i++) var/obj/item/seeds/seeds = new(get_turf(src)) seeds.seed_type = new_seed_type.name seeds.update_seed() else - to_chat(user, "[O] doesn't seem to have any usable seeds inside it.") - qdel(O) + to_chat(user, "[object] doesn't seem to have any usable seeds inside it.") + qdel(object) + return TRUE //Grass. - else if(istype(O, /obj/item/stack/tile/grass)) - var/obj/item/stack/tile/grass/S = O - if (S.use(1)) + else if(istype(object, /obj/item/stack/tile/grass)) + var/obj/item/stack/tile/grass/grass = object + if (grass.use(1)) to_chat(user, SPAN_NOTICE("You extract some seeds from the grass tile.")) new /obj/item/seeds/grassseed(loc) + return TRUE + else + to_chat(user, SPAN_WARNING("Cannot get seeds from [object].")) + return FALSE diff --git a/code/game/machinery/sentry_holder.dm b/code/game/machinery/sentry_holder.dm index eecf8267cc..27cfe0cfce 100644 --- a/code/game/machinery/sentry_holder.dm +++ b/code/game/machinery/sentry_holder.dm @@ -16,6 +16,7 @@ var/ox = 0 var/oy = 0 var/require_red_alert = FALSE + var/base_icon_state = "sentry_system" /obj/structure/machinery/sentry_holder/Initialize() . = ..() @@ -76,20 +77,21 @@ deployment_cooldown = world.time + 50 deployed_turret.turned_on = TRUE deployed_turret.forceMove(loc) - icon_state = "sentry_system_deployed" + icon_state = "[base_icon_state]_deployed" - for(var/mob/M in deployed_turret.loc) - if(deployed_turret.loc == src.loc) - step(M, deployed_turret.dir) - else - step(M, get_dir(src,deployed_turret)) + if(deployed_turret.density) + for(var/mob/blocking_mob in deployed_turret.loc) + if(deployed_turret.loc == loc) + step(blocking_mob, deployed_turret.dir) + else + step(blocking_mob, get_dir(src, deployed_turret)) deployed_turret.setDir(dir) deployed_turret.pixel_x = 0 deployed_turret.pixel_y = 0 deployed_turret.start_processing() - deployed_turret.setup_target_acquisition() + deployed_turret.set_range() /obj/structure/machinery/sentry_holder/proc/undeploy_sentry() if(!deployed_turret) @@ -100,10 +102,10 @@ deployed_turret.forceMove(src) deployed_turret.turned_on = FALSE deployed_turret.stop_processing() - deployed_turret.unsetup_target_acquisition() + deployed_turret.unset_range() pixel_x = ox pixel_y = oy - icon_state = "sentry_system_installed" + icon_state = "[base_icon_state]_installed" /obj/structure/machinery/sentry_holder/Destroy() QDEL_NULL(deployed_turret) @@ -114,6 +116,73 @@ desc = "A box that deploys a sentry turret for protection of the residents in the area." turret_path = /obj/structure/machinery/defenses/sentry/premade/deployable/colony +/obj/structure/machinery/sentry_holder/wy + health = 200 + desc = "A box that deploys a sentry turret for protecting Weyland-Yutani personnel" + turret_path = /obj/structure/machinery/defenses/sentry/premade/deployable/wy + /obj/structure/machinery/sentry_holder/almayer + icon_state = "floor_sentry_installed" turret_path = /obj/structure/machinery/defenses/sentry/premade/deployable/almayer + base_icon_state = "floor_sentry" require_red_alert = TRUE + +/obj/structure/machinery/sentry_holder/almayer/mini + turret_path = /obj/structure/machinery/defenses/sentry/premade/deployable/almayer/mini + +/obj/structure/machinery/sentry_holder/almayer/mini/aicore + +/obj/structure/machinery/sentry_holder/almayer/mini/aicore/Initialize() + . = ..() + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LOCKDOWN, PROC_REF(auto_deploy)) + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LIFT, PROC_REF(undeploy_sentry)) + +/obj/structure/machinery/sentry_holder/almayer/mini/aicore/proc/auto_deploy() + if(deployed_turret.loc == src) //not deployed + if(stat & NOPOWER) + return FALSE + + deploy_sentry() + return TRUE + +/obj/structure/machinery/sentry_holder/almayer/mini/aicore/attack_hand(mob/user) + to_chat(user, SPAN_WARNING("[src] can only be deployed remotely.")) + return + +/obj/structure/machinery/sentry_holder/landing_zone + icon_state = "floor_sentry_installed" // TODO: More appropriate sprites + turret_path = /obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone + base_icon_state = "floor_sentry" // TODO: More appropriate sprites + layer = HATCH_LAYER // Needs to not hide barricades + +/obj/structure/machinery/sentry_holder/landing_zone/attack_hand(mob/user) + var/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/turret = deployed_turret + if(!istype(turret)) + to_chat(user, SPAN_WARNING("[src] is unresponsive.")) + return + + if(deployment_cooldown > world.time) + to_chat(user, SPAN_WARNING("[src] is busy.")) + return + + if(deployed_turret.loc == src) //not deployed + if(turret.battery_state == TURRET_BATTERY_STATE_DEAD) + to_chat(user, SPAN_WARNING("[src] is non-functional.")) + return + + if(require_red_alert && (seclevel2num(get_security_level()) < SEC_LEVEL_RED)) + to_chat(user, SPAN_WARNING("[src] can only be activated in emergencies.")) + return + + to_chat(user, SPAN_NOTICE("You deploy [src].")) + deploy_sentry() + msg_admin_niche("[key_name(user)] deployed [turret] at [get_location_in_text(src)] [ADMIN_JMP(loc)]") + return + + to_chat(user, SPAN_NOTICE("You retract [src].")) + msg_admin_niche("[key_name(user)] retracted [turret] at [get_location_in_text(src)] [ADMIN_JMP(loc)]") + undeploy_sentry() + return + +/obj/structure/machinery/sentry_holder/landing_zone/update_use_power(new_use_power) + return diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index dd45ad5978..64c0023e6a 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -66,7 +66,7 @@ return else if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) open = !open - user.visible_message(SPAN_NOTICE("[user] [open ? "opens" : "closes"] the hatch on the [src]."), SPAN_NOTICE("You [open ? "open" : "close"] the hatch on the [src].")) + user.visible_message(SPAN_NOTICE("[user] [open ? "opens" : "closes"] the hatch on [src]."), SPAN_NOTICE("You [open ? "open" : "close"] the hatch on [src].")) update_icon() if(!open && user.interactee == src) close_browser(user, "spaceheater") @@ -107,7 +107,7 @@ start_processing() else stop_processing() - user.visible_message(SPAN_NOTICE("[user] switches [on ? "on" : "off"] the [src]."),SPAN_NOTICE("You switch [on ? "on" : "off"] the [src].")) + user.visible_message(SPAN_NOTICE("[user] switches [on ? "on" : "off"] [src]."),SPAN_NOTICE("You switch [on ? "on" : "off"] [src].")) update_icon() return @@ -127,7 +127,7 @@ var/value = text2num(href_list["val"]) // limit to 0-90 degC - set_temperature = dd_range(T0C, T0C + 90, set_temperature + value) + set_temperature = clamp(set_temperature + value, T0C, T0C + 90) if("cellremove") if(open && cell && !usr.get_active_hand()) @@ -162,7 +162,7 @@ if(isturf(loc) && cell && cell.charge) for(var/mob/living/carbon/human/H in range(2, src)) if(H.bodytemperature < T20C) - H.bodytemperature += min(round(T20C - H.bodytemperature)*0.7, 25) + H.bodytemperature += min(floor(T20C - H.bodytemperature)*0.7, 25) H.recalculate_move_delay = TRUE @@ -186,4 +186,3 @@ name = "radiator" desc = "It's a radiator. It heats the room through convection with hot water. This one has a red handle." icon_state = "radiator-r" - diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm index 79ead63215..db2e58cf32 100644 --- a/code/game/machinery/status_display.dm +++ b/code/game/machinery/status_display.dm @@ -146,7 +146,7 @@ maptext = new_text /obj/structure/machinery/status_display/proc/get_supply_shuttle_timer() - var/datum/shuttle/ferry/supply/shuttle = supply_controller.shuttle + var/datum/shuttle/ferry/supply/shuttle = GLOB.supply_controller.shuttle if (!shuttle) return "Error" @@ -158,13 +158,12 @@ return "" /obj/structure/machinery/status_display/proc/remove_display() - if(overlays.len) - overlays.Cut() + LAZYCLEARLIST(overlays) if(maptext) maptext = "" /obj/structure/machinery/status_display/proc/set_sec_level_picture() - switch(security_level) + switch(GLOB.security_level) if(SEC_LEVEL_GREEN) set_picture("default") if(SEC_LEVEL_BLUE) @@ -241,8 +240,7 @@ /obj/structure/machinery/ai_status_display/proc/set_picture(state) picture_state = state - if(overlays.len) - overlays.Cut() + LAZYCLEARLIST(overlays) overlays += image('icons/obj/structures/machinery/status_display.dmi', icon_state=picture_state) #undef DEFAULT_FONT_COLOR diff --git a/code/game/machinery/storm_siren.dm b/code/game/machinery/storm_siren.dm index e78414cb7e..3351157154 100644 --- a/code/game/machinery/storm_siren.dm +++ b/code/game/machinery/storm_siren.dm @@ -11,11 +11,11 @@ health = 0 /obj/structure/machinery/storm_siren/Initialize() - weather_notify_objects += src + GLOB.weather_notify_objects += src return ..() /obj/structure/machinery/storm_siren/Destroy() - weather_notify_objects -= src + GLOB.weather_notify_objects -= src . = ..() /obj/structure/machinery/storm_siren/power_change() diff --git a/code/game/machinery/supply_display.dm b/code/game/machinery/supply_display.dm index 26117474f0..7317ed6435 100644 --- a/code/game/machinery/supply_display.dm +++ b/code/game/machinery/supply_display.dm @@ -6,7 +6,7 @@ message1 = "SUPPLY" message2 = "" - var/datum/shuttle/ferry/supply/shuttle = supply_controller.shuttle + var/datum/shuttle/ferry/supply/shuttle = GLOB.supply_controller.shuttle if (!shuttle) message2 = "Error" else if(shuttle.has_arrive_time()) diff --git a/code/game/machinery/telecomms/broadcaster.dm b/code/game/machinery/telecomms/broadcaster.dm index dabca58935..310fb113a8 100644 --- a/code/game/machinery/telecomms/broadcaster.dm +++ b/code/game/machinery/telecomms/broadcaster.dm @@ -83,7 +83,7 @@ vmask, vmessage, obj/item/device/radio/radio, message, name, job, realname, vname, data, compression, list/level, freq, verbage = "says", - datum/language/speaking = null, volume = RADIO_VOLUME_QUIET) + datum/language/speaking = null, volume = RADIO_VOLUME_QUIET, listening_device = FALSE) /* ###### Prepare the radio connection ###### */ var/display_freq = freq @@ -153,8 +153,6 @@ var/list/heard_gibberish= list() // completely screwed over message (ie "F%! (O*# *#!<>&**%!") if(M) - if(isAI(M)) - volume = RADIO_VOLUME_CRITICAL if(ishuman(M)) var/mob/living/carbon/human/H = M if(skillcheck(H, SKILL_LEADERSHIP, SKILL_LEAD_EXPERT)) @@ -175,13 +173,16 @@ volume = RADIO_VOLUME_CRITICAL for (var/mob/R in receive) + var/is_ghost = istype(R, /mob/dead/observer) /* --- Loop through the receivers and categorize them --- */ if (R.client && !(R.client.prefs.toggles_chat & CHAT_RADIO)) //Adminning with 80 people on can be fun when you're trying to talk and all you can hear is radios. continue if(istype(R, /mob/new_player)) // we don't want new players to hear messages. rare but generates runtimes. continue // Ghosts hearing all radio chat don't want to hear syndicate intercepts, they're duplicates - if(data == 3 && istype(R, /mob/dead/observer) && R.client && (R.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) + if(data == 3 && is_ghost && R.client && (R.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) + continue + if(is_ghost && listening_device && !(R.client.prefs.toggles_chat & CHAT_LISTENINGBUG)) continue // --- Check for compression --- if(compression > 0) diff --git a/code/game/machinery/telecomms/machine_interactions.dm b/code/game/machinery/telecomms/machine_interactions.dm index a370356ad6..31cd2cf94d 100644 --- a/code/game/machinery/telecomms/machine_interactions.dm +++ b/code/game/machinery/telecomms/machine_interactions.dm @@ -22,7 +22,7 @@ attack_hand(user) else - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You stare at \the [src] cluelessly...")) return 0 @@ -69,7 +69,7 @@ to_chat(user, "You finish prying out the components.") // Drop all the component stuff - if(contents.len > 0) + if(length(contents) > 0) for(var/obj/x in src) x.forceMove(user.loc) else @@ -102,8 +102,8 @@ /obj/structure/machinery/telecomms/attack_hand(mob/user as mob) // You need a multitool to use this, or be silicon - if(!ishighersilicon(user)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!isSilicon(user)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You stare at \the [src] cluelessly...")) return // istype returns false if the value is null @@ -125,10 +125,10 @@ else dat += "
Identification String: NULL" dat += "
Network: [network]" - dat += "
Prefabrication: [autolinkers.len ? "TRUE" : "FALSE"]" + dat += "
Prefabrication: [length(autolinkers) ? "TRUE" : "FALSE"]" if(hide) dat += "
Shadow Link: ACTIVE" - //Show additional options for certain machines. + //Show additional options for certain GLOB.machines. dat += Options_Menu() dat += "
Linked Network Entities:
    " @@ -160,7 +160,7 @@ dat += "" temp = "" show_browser(user, dat, "[src] Access", "tcommachine", "size=520x500;can_resize=0") - onclose(user, "dormitory") + onclose(user, "tcommachine") // Off-Site Relays @@ -177,30 +177,12 @@ if(src.listening_level == TELECOMM_GROUND_Z) // equals the station src.listening_level = position.z return 1 - else if(is_admin_level(position.z)) + else if(should_block_game_interaction(position)) src.listening_level = TELECOMM_GROUND_Z return 1 return 0 -// Returns a multitool from a user depending on their mobtype. - -/obj/structure/machinery/telecomms/proc/get_multitool(mob/user as mob) - - var/obj/item/device/multitool/P = null - // Let's double check - var/obj/item/held_item = user.get_active_hand() - if(!ishighersilicon(user) && held_item && HAS_TRAIT(held_item, TRAIT_TOOL_MULTITOOL)) - P = user.get_active_hand() - else if(isAI(user)) - var/mob/living/silicon/ai/U = user - P = U.aiMulti - else if(isborg(user) && in_range(user, src)) - var/obj/item/borg_held_item = user.get_active_hand() - if(held_item && HAS_TRAIT(borg_held_item, TRAIT_TOOL_MULTITOOL)) - P = user.get_active_hand() - return P - -// Additional Options for certain machines. Use this when you want to add an option to a specific machine. +// Additional Options for certain GLOB.machines. Use this when you want to add an option to a specific machine. // Example of how to use below. /obj/structure/machinery/telecomms/proc/Options_Menu() @@ -229,7 +211,7 @@ /obj/structure/machinery/telecomms/relay/Options_Menu() var/dat = "" - if(is_admin_level(z)) + if(should_block_game_interaction(src)) dat += "
    Signal Locked to Station: [listening_level == TELECOMM_GROUND_Z ? "TRUE" : "FALSE"]" dat += "
    Broadcasting: [broadcasting ? "YES" : "NO"]" dat += "
    Receiving: [receiving ? "YES" : "NO"]" @@ -279,7 +261,7 @@ . = ..() if(.) return - if(!ishighersilicon(usr)) + if(!isSilicon(usr)) var/obj/item/held_item = usr.get_held_item() if (!held_item || !HAS_TRAIT(held_item, TRAIT_TOOL_MULTITOOL)) return diff --git a/code/game/machinery/telecomms/portable_comms.dm b/code/game/machinery/telecomms/portable_comms.dm index f8f3413375..cf7ef1c1f2 100644 --- a/code/game/machinery/telecomms/portable_comms.dm +++ b/code/game/machinery/telecomms/portable_comms.dm @@ -3,7 +3,7 @@ desc = "A portable compact TC-4T telecommunications construction kit. Used to set up subspace communications lines between planetary and extra-planetary locations. Needs cabling." icon = 'icons/obj/structures/machinery/comm_tower2.dmi' icon_state = "construct_0_0" - required_skill = SKILL_ENGINEER_ENGI + required_skill = SKILL_ENGINEER_TRAINED required_dismantle_skill = 5 density = TRUE anchored = FALSE @@ -18,9 +18,9 @@ is_wired = 1 break if(components) - switch(components.len) + switch(length(components)) if(0 to 8) - icon_state = "construct_[contents.len]_[is_wired]" + icon_state = "construct_[length(contents)]_[is_wired]" else icon_state = "construct_8_1" else if(state) diff --git a/code/game/machinery/telecomms/presets.dm b/code/game/machinery/telecomms/presets.dm index 510d488bb3..85cb0ae1c9 100644 --- a/code/game/machinery/telecomms/presets.dm +++ b/code/game/machinery/telecomms/presets.dm @@ -1,8 +1,5 @@ // ### Preset machines ### - -//var/list/freq_listening = list() USE THIS FOR NEW RELAY STUFF WHEN I GET THIS - APOPHIS - //Relay /obj/structure/machinery/telecomms/relay/preset network = "tcommsat" @@ -84,7 +81,7 @@ else if(P.ammo.flags_ammo_behavior & AMMO_ANTISTRUCT) update_health(P.damage*ANTISTRUCT_DMG_MULT_BARRICADES) - update_health(round(P.damage/2)) + update_health(floor(P.damage/2)) return TRUE /obj/structure/machinery/telecomms/relay/preset/tower/update_health(damage = 0) @@ -94,7 +91,7 @@ return // Leave the poor thing alone health -= damage - health = Clamp(health, 0, initial(health)) + health = clamp(health, 0, initial(health)) if(health <= 0) toggled = FALSE // requires flipping on again once repaired @@ -125,7 +122,7 @@ return if(user.action_busy) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) return var/obj/item/tool/weldingtool/WT = I @@ -150,7 +147,7 @@ else return ..() /obj/structure/machinery/telecomms/relay/preset/tower/attack_hand(mob/user) - if(ishighersilicon(user)) + if(isSilicon(user)) return ..() if(on) to_chat(user, SPAN_WARNING("\The [src.name] blinks and beeps incomprehensibly as it operates, better not touch this...")) @@ -158,7 +155,7 @@ toggle_state(user) // just flip dat switch /obj/structure/machinery/telecomms/relay/preset/tower/all - freq_listening = list() + freq_listening = list(UNIVERSAL_FREQ) /obj/structure/machinery/telecomms/relay/preset/tower/faction name = "UPP telecommunications relay" @@ -270,8 +267,8 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) to_chat(user, SPAN_WARNING("\The [src.name] needs repairs to have frequencies added to its software!")) return var/choice = tgui_input_list(user, "What do you wish to do?", "TC-3T comms tower", list("Wipe communication frequencies", "Add your faction's frequencies")) - if(choice == "Wipe frequencies") - freq_listening = null + if(choice == "Wipe communication frequencies") + freq_listening.Cut() to_chat(user, SPAN_NOTICE("You wipe the preexisting frequencies from \the [src].")) return else if(choice == "Add your faction's frequencies") @@ -280,12 +277,16 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) switch(user.faction) if(FACTION_SURVIVOR) freq_listening |= COLONY_FREQ + if(FACTION_MARINE in user.faction_group) //FORECON survivors + freq_listening |= SOF_FREQ if(FACTION_CLF) freq_listening |= CLF_FREQS if(FACTION_UPP) freq_listening |= UPP_FREQS if(FACTION_WY,FACTION_PMC) freq_listening |= PMC_FREQS + if(FACTION_TWE) + freq_listening |= RMC_FREQ if(FACTION_YAUTJA) to_chat(user, SPAN_WARNING("You decide to leave the human machine alone.")) return @@ -305,6 +306,11 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) else update_icon() +/obj/structure/machinery/telecomms/relay/preset/tower/mapcomms/update_state() + ..() + if(inoperable()) + handle_xeno_acquisition(get_turf(src)) + /// Handles xenos corrupting the tower when weeds touch the turf it is located on /obj/structure/machinery/telecomms/relay/preset/tower/mapcomms/proc/handle_xeno_acquisition(turf/weeded_turf) SIGNAL_HANDLER @@ -327,12 +333,15 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) if(SSticker.mode.is_in_endgame) return + if(operable()) + return + if(ROUND_TIME < XENO_COMM_ACQUISITION_TIME) - addtimer(CALLBACK(src, PROC_REF(handle_xeno_acquisition), weeded_turf), (XENO_COMM_ACQUISITION_TIME - ROUND_TIME)) + addtimer(CALLBACK(src, PROC_REF(handle_xeno_acquisition), weeded_turf), (XENO_COMM_ACQUISITION_TIME - ROUND_TIME), TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_NO_HASH_WAIT) return if(!COOLDOWN_FINISHED(src, corruption_delay)) - addtimer(CALLBACK(src, PROC_REF(handle_xeno_acquisition), weeded_turf), (COOLDOWN_TIMELEFT(src, corruption_delay))) + addtimer(CALLBACK(src, PROC_REF(handle_xeno_acquisition), weeded_turf), (COOLDOWN_TIMELEFT(src, corruption_delay)), TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_NO_HASH_WAIT) return var/obj/effect/alien/weeds/node/pylon/cluster/parent_node = weeded_turf.weeds.parent @@ -449,7 +458,7 @@ GLOBAL_LIST_EMPTY(all_static_telecomms_towers) id = "CentComm Receiver" network = "tcommsat" autolinkers = list("receiverCent") - freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ) + freq_listening = list(WY_WO_FREQ, PMC_FREQ, DUT_FREQ, YAUT_FREQ, HC_FREQ, PVST_FREQ, SOF_FREQ, CBRN_FREQ, FORECON_FREQ) //Buses diff --git a/code/game/machinery/telecomms/telecomunications.dm b/code/game/machinery/telecomms/telecomunications.dm index 8b8b12dfd1..7652ac601f 100644 --- a/code/game/machinery/telecomms/telecomunications.dm +++ b/code/game/machinery/telecomms/telecomunications.dm @@ -26,7 +26,7 @@ GLOBAL_LIST_EMPTY_TYPED(telecomms_list, /obj/structure/machinery/telecomms) var/traffic = 0 // value increases as traffic increases var/netspeed = 5 // how much traffic to lose per tick (50 gigabytes/second * netspeed) var/list/autolinkers = list() // list of text/number values to link with - var/list/freq_listening = list() // list of frequencies to tune into: if none, will listen to all + var/list/freq_listening = list(UNIVERSAL_FREQ) // list of frequencies to tune into: if universal frequency is included, will listen to all var/machinetype = 0 // just a hacky way of preventing alike machines from pairing var/delay = 10 // how many process() ticks to delay per heat var/long_range_link = 0 // Can you link it across Z levels or on the otherside of the map? (Relay & Hub) diff --git a/code/game/machinery/teleporter.dm b/code/game/machinery/teleporter.dm index 8ea00ce406..8b6622121b 100644 --- a/code/game/machinery/teleporter.dm +++ b/code/game/machinery/teleporter.dm @@ -98,7 +98,7 @@ var/turf/T = get_turf(R) if (!T) continue - if(is_admin_level(T.z)) + if(should_block_game_interaction(T)) continue var/tmpname = T.loc.name if(areaindex[tmpname]) @@ -118,7 +118,7 @@ continue var/turf/T = get_turf(M) if(T) continue - if(is_admin_level(T.z)) continue + if(should_block_game_interaction(T)) continue var/tmpname = M.real_name if(areaindex[tmpname]) tmpname = "[tmpname] ([++areaindex[tmpname]])" diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm index 9fd775b64f..8dc415cecf 100644 --- a/code/game/machinery/vending/cm_vending.dm +++ b/code/game/machinery/vending/cm_vending.dm @@ -46,7 +46,11 @@ /// Direction to adjacent user from which we're allowed to do offset vending var/list/vend_dir_whitelist + /// The actual inventory for this vendor as a list of lists + /// 1: name 2: amount 3: type 4: flag var/list/listed_products = list() + /// Partial stacks to hold on to as an associated list of type : amount + var/list/partial_product_stacks = list() // Are points associated with this vendor tied to its instance? var/instanced_vendor_points = FALSE @@ -84,7 +88,7 @@ IN_USE used for vending/denying if(stat & NOPOWER || stat & TIPPED_OVER) //tipping off without breaking uses "_off" sprite overlays += image(icon, "[icon_state]_off") if(stat & MAINT) //if we require maintenance, then it is completely "_broken" - icon_state = "[initial(icon_state)]_broken" + overlays += image(icon, "[initial(icon_state)]_broken") if(stat & IN_REPAIR) //if someone started repairs, they unscrewed "_panel" overlays += image(icon, "[icon_state]_panel") @@ -149,7 +153,7 @@ GLOBAL_LIST_EMPTY(vending_products) /obj/structure/machinery/cm_vending/get_examine_text(mob/living/carbon/human/user) . = ..() - if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI) && hackable) + if(skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) && hackable) . += SPAN_NOTICE("You believe you can hack this one to remove the access requirements.") /obj/structure/machinery/cm_vending/proc/hack_access(mob/user) @@ -195,7 +199,7 @@ GLOBAL_LIST_EMPTY(vending_products) for(var/list/product in topic_listed_products) if(product[3] == item_box_pairing.box) //We recalculate the amount of boxes we ought to have based on how many magazines we have - product[2] = round(base_ammo_item[2] / item_box_pairing.items_in_box) + product[2] = floor(base_ammo_item[2] / item_box_pairing.items_in_box) break /obj/structure/machinery/cm_vending/proc/update_derived_from_boxes(obj/item/box_being_added_or_removed, add_box = FALSE) @@ -243,7 +247,7 @@ GLOBAL_LIST_EMPTY(vending_products) //M94 flare packs handling else if(istype(item_to_stock, /obj/item/storage/box/m94)) var/obj/item/storage/box/m94/flare_pack = item_to_stock - if(flare_pack.contents.len < flare_pack.max_storage_space) + if(length(flare_pack.contents) < flare_pack.max_storage_space) to_chat(user, SPAN_WARNING("\The [item_to_stock] is not full.")) return var/flare_type @@ -268,7 +272,7 @@ GLOBAL_LIST_EMPTY(vending_products) //Machete holsters handling else if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine)) var/obj/item/clothing/suit/storage/marine/AR = item_to_stock - if(AR.pockets && AR.pockets.contents.len) + if(AR.pockets && length(AR.pockets.contents)) if(user) to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking.")) return FALSE @@ -296,7 +300,7 @@ GLOBAL_LIST_EMPTY(vending_products) if(AM.current_rounds != AM.max_rounds) to_chat(user, SPAN_WARNING("\The [A] isn't full. You need to fill it before you can restock it.")) return - else if(A.contents.len < A.num_of_magazines) + else if(length(A.contents) < A.num_of_magazines) to_chat(user, SPAN_WARNING("[A] is not full.")) return else @@ -313,14 +317,14 @@ GLOBAL_LIST_EMPTY(vending_products) //Marine armor handling else if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine)) var/obj/item/clothing/suit/storage/marine/AR = item_to_stock - if(AR.pockets && AR.pockets.contents.len) + if(AR.pockets && length(AR.pockets.contents)) if(user) to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking.")) return FALSE //Marine helmet handling else if(istype(item_to_stock, /obj/item/clothing/head/helmet/marine)) var/obj/item/clothing/head/helmet/marine/H = item_to_stock - if(H.pockets && H.pockets.contents.len) + if(H.pockets && length(H.pockets.contents)) if(user) to_chat(user, SPAN_WARNING("\The [H] has something inside it. Empty it before restocking.")) return FALSE @@ -373,41 +377,49 @@ GLOBAL_LIST_EMPTY(vending_products) //------------INTERACTION PROCS--------------- -/obj/structure/machinery/cm_vending/attack_alien(mob/living/carbon/xenomorph/M) +/obj/structure/machinery/cm_vending/attack_alien(mob/living/carbon/xenomorph/user) if(stat & TIPPED_OVER || indestructible) - to_chat(M, SPAN_WARNING("There's no reason to bother with that old piece of trash.")) + to_chat(user, SPAN_WARNING("There's no reason to bother with that old piece of trash.")) return XENO_NO_DELAY_ACTION - if(M.a_intent == INTENT_HARM && !unslashable) - M.animation_attack_on(src) - if(prob(M.melee_damage_lower)) + if(user.a_intent == INTENT_HARM && !unslashable) + user.animation_attack_on(src) + if(prob(user.melee_damage_lower)) playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) - M.visible_message(SPAN_DANGER("[M] smashes [src] beyond recognition!"), \ + user.visible_message(SPAN_DANGER("[user] smashes [src] beyond recognition!"), \ SPAN_DANGER("You enter a frenzy and smash [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) malfunction() tip_over() else - M.visible_message(SPAN_DANGER("[M] slashes [src]!"), \ + user.visible_message(SPAN_DANGER("[user] slashes [src]!"), \ SPAN_DANGER("You slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) return XENO_ATTACK_ACTION - if(M.action_busy) + if(user.action_busy) return XENO_NO_DELAY_ACTION - - M.visible_message(SPAN_WARNING("[M] begins to lean against [src]."), \ + if(user.a_intent == INTENT_HELP && user.IsAdvancedToolUser()) + user.set_interaction(src) + tgui_interact(user) + if(!hacked) + to_chat(user, SPAN_WARNING("You slash open [src]'s front panel, revealing the items within.")) + var/datum/effect_system/spark_spread/spark_system = new + spark_system.set_up(5, 5, get_turf(src)) + hacked = TRUE + return XENO_ATTACK_ACTION + user.visible_message(SPAN_WARNING("[user] begins to lean against [src]."), \ SPAN_WARNING("You begin to lean against [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) var/shove_time = 80 - if(M.mob_size >= MOB_SIZE_BIG) + if(user.mob_size >= MOB_SIZE_BIG) shove_time = 30 - if(istype(M,/mob/living/carbon/xenomorph/crusher)) + if(istype(user,/mob/living/carbon/xenomorph/crusher)) shove_time = 15 - xeno_attack_delay(M) //Adds delay here and returns nothing because otherwise it'd cause lag *after* finishing the shove. + xeno_attack_delay(user) //Adds delay here and returns nothing because otherwise it'd cause lag *after* finishing the shove. - if(do_after(M, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) - M.animation_attack_on(src) - M.visible_message(SPAN_DANGER("[M] knocks [src] down!"), \ + if(do_after(user, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + user.animation_attack_on(src) + user.visible_message(SPAN_DANGER("[user] knocks [src] down!"), \ SPAN_DANGER("You knock [src] down!"), null, 5, CHAT_TYPE_XENO_COMBAT) tip_over() return XENO_NO_DELAY_ACTION @@ -440,6 +452,27 @@ GLOBAL_LIST_EMPTY(vending_products) user.set_interaction(src) tgui_interact(user) +/// Handles redeeming coin tokens. +/obj/structure/machinery/cm_vending/proc/redeem_token(obj/item/coin/marine/token, mob/user) + var/reward_typepath + switch(token.token_type) + if(VEND_TOKEN_VOID) + to_chat(user, SPAN_WARNING("ERROR: TOKEN NOT RECOGNISED.")) + return FALSE + if(VEND_TOKEN_SPEC) + reward_typepath = /obj/item/spec_kit/rifleman + else + to_chat(user, SPAN_WARNING("ERROR: INCORRECT TOKEN.")) + return FALSE + + if(reward_typepath && user.drop_inv_item_to_loc(token, src)) + to_chat(user, SPAN_NOTICE("You insert \the [token] into \the [src].")) + var/obj/new_item = new reward_typepath(get_turf(src)) + user.put_in_any_hand_if_possible(new_item) + return TRUE + return FALSE + + //------------TGUI PROCS--------------- /obj/structure/machinery/cm_vending/ui_data(mob/user) @@ -487,7 +520,12 @@ GLOBAL_LIST_EMPTY(vending_products) if(.) return - var/mob/living/carbon/human/user = usr + var/mob/living/carbon/human/human_user + var/mob/living/carbon/user = ui.user + + if(ishuman(user)) + human_user = usr + switch (action) if ("vend") if(stat & IN_USE) @@ -503,12 +541,15 @@ GLOBAL_LIST_EMPTY(vending_products) var/turf/target_turf = get_appropriate_vend_turf(user) if(vend_flags & VEND_CLUTTER_PROTECTION) - if(target_turf.contents.len > 25) + if(length(target_turf.contents) > 25) to_chat(usr, SPAN_WARNING("The floor is too cluttered, make some space.")) vend_fail() return FALSE - - if((!user.assigned_squad && squad_tag) || (!user.assigned_squad?.omni_squad_vendor && (squad_tag && user.assigned_squad.name != squad_tag))) + if(HAS_TRAIT(user,TRAIT_OPPOSABLE_THUMBS)) // the big monster 7 ft with thumbs does not care for squads + vendor_successful_vend(itemspec, usr) + add_fingerprint(usr) + return TRUE + if((!human_user.assigned_squad && squad_tag) || (!human_user.assigned_squad?.omni_squad_vendor && (squad_tag && human_user.assigned_squad.name != squad_tag))) to_chat(user, SPAN_WARNING("This machine isn't for your squad.")) vend_fail() return FALSE @@ -524,43 +565,28 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, SPAN_WARNING("Only specialists can take specialist sets.")) vend_fail() return FALSE + else if(!user.skills || user.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_TRAINED) to_chat(user, SPAN_WARNING("You already have a specialization.")) vend_fail() return FALSE + var/p_name = itemspec[1] - if(!available_specialist_sets.Find(p_name)) + if(!(p_name in GLOB.specialist_set_name_dict)) + return + + if(GLOB.specialist_set_name_dict[p_name].get_available_vendor_num() <= 0) to_chat(user, SPAN_WARNING("That set is already taken.")) vend_fail() return FALSE - var/obj/item/card/id/ID = user.wear_id - if(!istype(ID) || ID.registered_ref != WEAKREF(usr)) + + var/obj/item/card/id/card = human_user.get_idcard() + if(!istype(card) || !card.check_biometrics(user)) to_chat(user, SPAN_WARNING("You must be wearing your [SPAN_INFO("dog tags")] to select a specialization!")) return FALSE - var/specialist_assignment - switch(p_name) - if("Scout Set") - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_SCOUT) - specialist_assignment = "Scout" - if("Sniper Set") - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_SNIPER) - specialist_assignment = "Sniper" - if("Demolitionist Set") - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_ROCKET) - specialist_assignment = "Demo" - if("Heavy Grenadier Set") - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_GRENADIER) - specialist_assignment = "Grenadier" - if("Pyro Set") - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_PYRO) - specialist_assignment = "Pyro" - else - to_chat(user, SPAN_WARNING("Something bad occured with [src], tell a Dev.")) - vend_fail() - return FALSE - ID.set_assignment((user.assigned_squad ? (user.assigned_squad.name + " ") : "") + JOB_SQUAD_SPECIALIST + " ([specialist_assignment])") - GLOB.data_core.manifest_modify(user.real_name, WEAKREF(user), ID.assignment) - available_specialist_sets -= p_name + + GLOB.specialist_set_name_dict[p_name].redeem_set(human_user) + else if(vendor_role.Find(JOB_SYNTH)) if(user.job != JOB_SYNTH) to_chat(user, SPAN_WARNING("Only USCM Synthetics may vend experimental tool tokens.")) @@ -632,7 +658,7 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, SPAN_WARNING("You need to set [src] back upright first.")) return if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) return FALSE else if(stat & MAINT) @@ -659,7 +685,7 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, SPAN_WARNING("[msg]")) return FALSE else if(HAS_TRAIT(W, TRAIT_TOOL_WIRECUTTERS)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) return FALSE else if(stat & REPAIR_STEP_ONE) @@ -676,7 +702,7 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, SPAN_WARNING("[msg]")) return FALSE else if(iswire(W)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) return FALSE var/obj/item/stack/cable_coil/CC = W @@ -699,7 +725,7 @@ GLOBAL_LIST_EMPTY(vending_products) to_chat(user, SPAN_WARNING("[msg]")) return else if(istype(W, /obj/item/stack/sheet/metal)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) return FALSE var/obj/item/stack/sheet/metal/M = W @@ -722,7 +748,7 @@ GLOBAL_LIST_EMPTY(vending_products) else if(HAS_TRAIT(W, TRAIT_TOOL_MULTITOOL)) var/obj/item/device/multitool/MT = W - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI) && !skillcheckexplicit(user, SKILL_ANTAG, SKILL_ANTAG_AGENT)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) && !skillcheckexplicit(user, SKILL_ANTAG, SKILL_ANTAG_AGENT)) to_chat(user, SPAN_WARNING("You do not understand how tweak access requirements in [src].")) return FALSE if(stat != WORKING) @@ -738,28 +764,37 @@ GLOBAL_LIST_EMPTY(vending_products) hack_access(user) return TRUE + ///If we want to redeem a token + else if(istype(W, /obj/item/coin/marine)) + if(!can_access_to_vend(user, ignore_hack = TRUE)) + return FALSE + . = redeem_token(W, user) + return + ..() /obj/structure/machinery/cm_vending/proc/get_listed_products(mob/user) return listed_products -/obj/structure/machinery/cm_vending/proc/can_access_to_vend(mob/user, display=TRUE) - if(!hacked) +/obj/structure/machinery/cm_vending/proc/can_access_to_vend(mob/user, display = TRUE, ignore_hack = FALSE) + if(HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) // We're just going to skip the mess of access checks assuming xenos with thumbs are human and just allow them to access because it's funny + return TRUE + if(!hacked || ignore_hack) if(!allowed(user)) if(display) to_chat(user, SPAN_WARNING("Access denied.")) vend_fail() return FALSE - var/mob/living/carbon/human/H = user - var/obj/item/card/id/I = H.wear_id - if(!istype(I)) + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/idcard = human_user.get_idcard() + if(!idcard) if(display) to_chat(user, SPAN_WARNING("Access denied. No ID card detected")) vend_fail() return FALSE - if(I.registered_name != user.real_name) + if(!idcard.check_biometrics(human_user)) if(display) to_chat(user, SPAN_WARNING("Wrong ID card owner detected.")) vend_fail() @@ -857,8 +892,19 @@ GLOBAL_LIST_EMPTY(vending_products) vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND show_points = FALSE - //this here is made to provide ability to restock vendors with different subtypes of same object, like handmade and manually filled ammo boxes. + ///this here is made to provide ability to restock vendors with different subtypes of same object, like handmade and manually filled ammo boxes. var/list/corresponding_types_list + /** + * If using [VEND_STOCK_DYNAMIC], assoc list of product entry to list of (1.0 scale product multiplier, awarded objects) - as seen in [/obj/structure/machinery/cm_vending/sorted/proc/populate_product_list] + * This allows us to backtrack and refill the stocks when new players latejoin. + * + * If NOT using [VEND_STOCK_DYNAMIC], assoc list of product entry to list of (estimated 1.0 scale product multiplier, scaled product multiplier) - as seen in [/obj/structure/machinery/cm_vending/sorted/proc/populate_product_list] + * This allows us to know the original amounts to know if the vendor is full of an item. + * The 1.0 scale is estimated because it is a divided by the scale rather than repopulating the list at 1.0 scale - anything that is a fixed amount won't necessarily be correct. + */ + var/list/list/dynamic_stock_multipliers + ///indicates someone is performing a restock that isn't instant + var/being_restocked = FALSE /obj/structure/machinery/cm_vending/sorted/Initialize() . = ..() @@ -871,14 +917,55 @@ GLOBAL_LIST_EMPTY(vending_products) GLOB.cm_vending_vendors -= src return ..() -//this proc, well, populates product list based on roundstart amount of players +///this proc, well, populates product list based on roundstart amount of players /obj/structure/machinery/cm_vending/sorted/proc/populate_product_list_and_boxes(scale) - populate_product_list(scale) + dynamic_stock_multipliers = list() + if(vend_flags & VEND_STOCK_DYNAMIC) + populate_product_list(1.0) + for(var/list/vendspec in listed_products) + var/multiplier = vendspec[2] + if(multiplier > 0) + var/awarded = round(multiplier * scale, 1) // Starting amount + //Record the multiplier and how many have actually been given out + dynamic_stock_multipliers[vendspec] = list(multiplier, awarded) + vendspec[2] = awarded // Override starting amount + else + populate_product_list(scale) + for(var/list/vendspec in listed_products) + var/amount = vendspec[2] + if(amount > -1) + var/multiplier = ceil(amount / scale) + //Record the multiplier and how many have actually been given out + dynamic_stock_multipliers[vendspec] = list(multiplier, amount) + if(vend_flags & VEND_LOAD_AMMO_BOXES) populate_ammo_boxes() - return -//this proc, well, populates product list based on roundstart amount of players + partial_product_stacks = list() + for(var/list/vendspec in listed_products) + var/current_type = vendspec[3] + if(ispath(current_type, /obj/item/stack)) + partial_product_stacks[current_type] = 0 + +///Updates the vendor stock when the [/datum/game_mode/var/marine_tally] has changed and we're using [VEND_STOCK_DYNAMIC] +///Assumes the scale can only increase!!! Don't take their items away! +/obj/structure/machinery/cm_vending/sorted/proc/update_dynamic_stock(new_scale) + if(!(vend_flags & VEND_STOCK_DYNAMIC)) + return + for(var/list/vendspec in dynamic_stock_multipliers) + var/list/metadata = dynamic_stock_multipliers[vendspec] + var/multiplier = metadata[1] // How much do we multiply scales by + var/previous_max_amount = metadata[2] // How many we already handed out at old scale + var/projected_max_amount = round(new_scale * multiplier, 1) // How much we would have had total now in total + var/amount_to_add = round(projected_max_amount - previous_max_amount, 1) // Rounding just in case + if(amount_to_add > 0) + metadata[2] += amount_to_add + vendspec[2] += amount_to_add + update_derived_ammo_and_boxes_on_add(vendspec) + +///this proc, well, populates product list based on roundstart amount of players +///do not rely on scale here if you use VEND_STOCK_DYNAMIC because it's already taken into account +///this is here for historical reasons and should ONLY be called by populate_product_list_and_boxes if you want dynamic stocks and ammoboxes to work /obj/structure/machinery/cm_vending/sorted/proc/populate_product_list(scale) return @@ -891,12 +978,26 @@ GLOBAL_LIST_EMPTY(vending_products) if(!IMBP) continue for(var/datum/item_box_pairing/IBP as anything in IMBP.item_box_pairings) - tmp_list += list(list(initial(IBP.box.name), round(L[2] / IBP.items_in_box), IBP.box, VENDOR_ITEM_REGULAR)) - - //Putting Ammo and other boxes on the bottom of the list as per player preferences - if(tmp_list.len > 0) + tmp_list += list(list(initial(IBP.box.name), floor(L[2] / IBP.items_in_box), IBP.box, VENDOR_ITEM_REGULAR)) + + //For every item that goes into a box, check if the box is already listed in the vendor and if so, update its amount + var/list/box_list = list() + if(length(tmp_list)) + for(var/list/tmp_item as anything in tmp_list) + var/item_found = FALSE + for(var/list/product as anything in listed_products) + if(tmp_item[3] == product[3]) //We found a box we already have! + product[2] = tmp_item[2] //Update box amount + item_found = TRUE + break + if(!item_found) + //We will be adding this box item at the end of the list + box_list += list(tmp_item) + + //Putting Ammo and other boxes on the bottom of the list if they haven't been accounted for already + if(length(box_list)) listed_products += list(list("BOXES", -1, null, null)) - for(var/list/L as anything in tmp_list) + for(var/list/L as anything in box_list) listed_products += list(L) /obj/structure/machinery/cm_vending/sorted/ui_static_data(mob/user) @@ -905,40 +1006,80 @@ GLOBAL_LIST_EMPTY(vending_products) .["displayed_categories"] = vendor_user_inventory_list(user, null, 4) /obj/structure/machinery/cm_vending/sorted/MouseDrop_T(atom/movable/A, mob/user) - if(inoperable()) return - if(user.stat || user.is_mob_restrained()) return - if(get_dist(user, src) > 1 || get_dist(src, A) > 1) return + if(!ishuman(user)) + return + + // Try to bulk restock using a container + if(istype(A, /obj/item/storage)) + var/obj/item/storage/container = A + if(!length(container.contents)) + return + if(being_restocked) + to_chat(user, SPAN_WARNING("[src] is already being restocked, you will get in the way!")) + return + + user.visible_message(SPAN_NOTICE("[user] starts stocking a bunch of supplies into [src]."), \ + SPAN_NOTICE("You start stocking a bunch of supplies into [src].")) + being_restocked = TRUE + + for(var/obj/item/item in container.contents) + if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC, src)) + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] stopped stocking [src] with supplies."), \ + SPAN_NOTICE("You stop stocking [src] with supplies.")) + return + if(QDELETED(item) || item.loc != container) + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] stopped stocking [src] with supplies."), \ + SPAN_NOTICE("You stop stocking [src] with supplies.")) + return + stock(item, user) + + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] finishes stocking [src] with supplies."), \ + SPAN_NOTICE("You finish stocking [src] with supplies.")) + return if(istype(A, /obj/item)) - var/obj/item/I = A - stock(I, user) + stock(A, user) /obj/structure/machinery/cm_vending/sorted/proc/stock(obj/item/item_to_stock, mob/user) - var/list/R + if(istype(item_to_stock, /obj/item/storage)) + return FALSE + var/list/stock_listed_products = get_listed_products(user) - for(R in (stock_listed_products)) - if(item_to_stock.type == R[3] && !istype(item_to_stock,/obj/item/storage)) + for(var/list/vendspec as anything in stock_listed_products) + if(item_to_stock.type == vendspec[3]) + var/partial_stacks = 0 if(istype(item_to_stock, /obj/item/device/defibrillator)) - var/obj/item/device/defibrillator/D = item_to_stock - if(!D.dcell) - to_chat(user, SPAN_WARNING("\The [item_to_stock] needs a cell in it to be restocked!")) - return - if(D.dcell.charge < D.dcell.maxcharge) - to_chat(user, SPAN_WARNING("\The [item_to_stock] needs to be fully charged to restock it!")) - return + var/obj/item/device/defibrillator/defib = item_to_stock + if(!defib.dcell) + to_chat(user, SPAN_WARNING("[item_to_stock] needs a cell in it to be restocked!")) + return FALSE + if(defib.dcell.charge < defib.dcell.maxcharge) + to_chat(user, SPAN_WARNING("[item_to_stock] needs to be fully charged to restock it!")) + return FALSE - if(istype(item_to_stock, /obj/item/cell)) - var/obj/item/cell/C = item_to_stock - if(C.charge < C.maxcharge) - to_chat(user, SPAN_WARNING("\The [item_to_stock] needs to be fully charged to restock it!")) - return + else if(istype(item_to_stock, /obj/item/cell)) + var/obj/item/cell/cell = item_to_stock + if(cell.charge < cell.maxcharge) + to_chat(user, SPAN_WARNING("[item_to_stock] needs to be fully charged to restock it!")) + return FALSE + + else if(istype(item_to_stock, /obj/item/stack)) + var/obj/item/stack/item_stack = item_to_stock + partial_stacks = item_stack.amount % item_stack.max_amount + + if(!additional_restock_checks(item_to_stock, user, vendspec)) + // the error message needs to go in the proc + return FALSE if(item_to_stock.loc == user) //Inside the mob's inventory if(item_to_stock.flags_item & WIELDED) @@ -946,16 +1087,45 @@ GLOBAL_LIST_EMPTY(vending_products) user.temp_drop_inv_item(item_to_stock) if(isstorage(item_to_stock.loc)) //inside a storage item - var/obj/item/storage/S = item_to_stock.loc - S.remove_from_storage(item_to_stock, user.loc) + var/obj/item/storage/container = item_to_stock.loc + container.remove_from_storage(item_to_stock, user.loc) qdel(item_to_stock) - user.visible_message(SPAN_NOTICE("[user] stocks [src] with \a [R[1]]."), - SPAN_NOTICE("You stock [src] with \a [R[1]].")) - R[2]++ - update_derived_ammo_and_boxes_on_add(R) + user.visible_message(SPAN_NOTICE("[user] stocks [src] with \a [vendspec[1]]."), \ + SPAN_NOTICE("You stock [src] with \a [vendspec[1]].")) + if(partial_stacks) + var/obj/item/stack/item_stack = item_to_stock + var/existing_stacks = partial_product_stacks[item_to_stock.type] + var/combined_stacks = existing_stacks + partial_stacks + if(existing_stacks == 0 || combined_stacks > item_stack.max_amount) + vendspec[2]++ + partial_product_stacks[item_to_stock.type] = combined_stacks % item_stack.max_amount + else + vendspec[2]++ + update_derived_ammo_and_boxes_on_add(vendspec) updateUsrDialog() - return //We found our item, no reason to go on. + return TRUE //We found our item, no reason to go on. + + return FALSE + +/// additional restocking checks for individual vendor subtypes. Parse in item, do checks, return FALSE to fail. Include error message. +/obj/structure/machinery/cm_vending/sorted/proc/additional_restock_checks(obj/item/item_to_stock, mob/user, list/vendspec) + var/dynamic_metadata = dynamic_stock_multipliers[vendspec] + if(dynamic_metadata) + if(vendspec[2] >= dynamic_metadata[2]) + if(!istype(item_to_stock, /obj/item/stack)) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE + var/obj/item/stack/item_stack = item_to_stock + if(partial_product_stacks[item_to_stock.type] == 0) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE // No partial stack to fill + if((partial_product_stacks[item_to_stock.type] + item_stack.amount) > item_stack.max_amount) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE // Exceeds partial stack to fill + else + stack_trace("[src] could not find dynamic_stock_multipliers for [vendspec[1]]!") + return TRUE //sending an /empty ammo box type path here will return corresponding regular (full) type of this box //if there is one set in corresponding_box_types or will return FALSE otherwise @@ -1056,6 +1226,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( /obj/item/ammo_box/magazine/lever_action/training/empty = /obj/item/ammo_box/magazine/lever_action/training, /obj/item/ammo_box/magazine/lever_action/tracker/empty = /obj/item/ammo_box/magazine/lever_action/tracker, /obj/item/ammo_box/magazine/lever_action/marksman/empty = /obj/item/ammo_box/magazine/lever_action/marksman, + /obj/item/ammo_box/magazine/lever_action/xm88/empty = /obj/item/ammo_box/magazine/lever_action/xm88, /obj/item/ammo_box/rounds/smg/empty = /obj/item/ammo_box/rounds/smg, /obj/item/ammo_box/rounds/smg/ap/empty = /obj/item/ammo_box/rounds/smg/ap, @@ -1127,7 +1298,8 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( var/obj/item/item_ref = myprod[3] var/priority = myprod[priority_index] if(islist(item_ref)) // multi-vending - item_ref = item_ref[1] + var/list/ref_list = item_ref + item_ref = ref_list[1] var/is_category = item_ref == null @@ -1161,14 +1333,20 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( /obj/structure/machinery/cm_vending/proc/vendor_inventory_ui_data(mob/user) . = list() - var/list/ui_listed_products = get_listed_products(user) - var/list/ui_categories = list() - - for (var/i in 1 to length(ui_listed_products)) - var/list/myprod = ui_listed_products[i] //we take one list from listed_products - var/p_amount = myprod[2] //amount left - ui_categories += list(p_amount) - .["stock_listing"] = ui_categories + var/list/products = get_listed_products(user) + var/list/product_amounts = list() + var/list/product_partials = list() + + for(var/i in 1 to length(products)) + var/list/cur_prod = products[i] //we take one list from listed_products + product_amounts += list(cur_prod[2]) //amount left + var/cur_type = cur_prod[3] + var/cur_amount_partial = 0 + if(cur_type in partial_product_stacks) + cur_amount_partial = partial_product_stacks[cur_type] + product_partials += list(cur_amount_partial) + .["stock_listing"] = product_amounts + .["stock_listing_partials"] = product_partials /obj/structure/machinery/cm_vending/proc/vendor_successful_vend(list/itemspec, mob/living/carbon/human/user) if(stat & IN_USE) @@ -1179,23 +1357,29 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( if(LAZYLEN(itemspec)) //making sure it's not empty if(vend_delay) overlays.Cut() - icon_state = "[initial(icon_state)]_vend" + flick("[initial(icon_state)]_vend", src) if(vend_sound) playsound(loc, vend_sound, 25, 1, 2) //heard only near vendor sleep(vend_delay) var/prod_type = itemspec[3] - if(islist(prod_type)) - for(var/each_type in prod_type) - vendor_successful_vend_one(each_type, user, target_turf, itemspec[4] == MARINE_CAN_BUY_UNIFORM) - else - vendor_successful_vend_one(prod_type, user, target_turf, itemspec[4] == MARINE_CAN_BUY_UNIFORM) - + var/stack_amount = 0 if(vend_flags & VEND_LIMITED_INVENTORY) itemspec[2]-- + if(itemspec[2] == 0) + stack_amount = partial_product_stacks[prod_type] + partial_product_stacks[prod_type] = 0 if(vend_flags & VEND_LOAD_AMMO_BOXES) update_derived_ammo_and_boxes(itemspec) + if(islist(prod_type)) + for(var/each_type in prod_type) + vendor_successful_vend_one(each_type, user, target_turf, itemspec[4] == MARINE_CAN_BUY_UNIFORM, stack_amount) + SEND_SIGNAL(src, COMSIG_VENDOR_SUCCESSFUL_VEND, src, itemspec, user) + else + vendor_successful_vend_one(prod_type, user, target_turf, itemspec[4] == MARINE_CAN_BUY_UNIFORM, stack_amount) + SEND_SIGNAL(src, COMSIG_VENDOR_SUCCESSFUL_VEND, src, itemspec, user) + else to_chat(user, SPAN_WARNING("ERROR: itemspec is missing. Please report this to admins.")) sleep(15) @@ -1204,9 +1388,11 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( icon_state = initial(icon_state) update_icon() -/obj/structure/machinery/cm_vending/proc/vendor_successful_vend_one(prod_type, mob/living/carbon/human/user, turf/target_turf, insignas_override) +/obj/structure/machinery/cm_vending/proc/vendor_successful_vend_one(prod_type, mob/living/carbon/human/user, turf/target_turf, insignas_override, stack_amount) var/obj/item/new_item - if(ispath(prod_type, /obj/item)) + if(vend_flags & VEND_PROPS) + new_item = new /obj/item/prop/replacer(target_turf, prod_type) + else if(ispath(prod_type, /obj/item)) if(ispath(prod_type, /obj/item/weapon/gun)) new_item = new prod_type(target_turf, TRUE) else @@ -1214,7 +1400,11 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( prod_type = headset_type else if(prod_type == /obj/item/clothing/gloves/marine) prod_type = gloves_type - new_item = new prod_type(target_turf) + if(stack_amount > 0 && ispath(prod_type, /obj/item/stack)) + new_item = new prod_type(target_turf, stack_amount) + else + new_item = new prod_type(target_turf) + new_item.add_fingerprint(user) else new_item = new prod_type(target_turf) @@ -1222,12 +1412,16 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( if(vend_flags & VEND_UNIFORM_RANKS) if(insignas_override) var/obj/item/clothing/under/underclothes = new_item + var/obj/item/card/id/card = user.get_idcard() + //Gives ranks to the ranked - if(istype(underclothes) && user.wear_id && user.wear_id.paygrade) - var/rankpath = get_rank_pins(user.wear_id.paygrade) + if(istype(underclothes) && card?.paygrade) + var/rankpath = get_rank_pins(card.paygrade) if(rankpath) var/obj/item/clothing/accessory/ranks/rank_insignia = new rankpath() + var/obj/item/clothing/accessory/patch/uscmpatch = new() underclothes.attach_accessory(user, rank_insignia) + underclothes.attach_accessory(user, uscmpatch) if(vend_flags & VEND_UNIFORM_AUTOEQUIP) // autoequip @@ -1267,17 +1461,22 @@ GLOBAL_LIST_INIT(cm_vending_gear_corresponding_types_list, list( while(i <= length(products)) sleep(0.5) var/list/itemspec = products[i] + var/itemspec_item = itemspec[3] if(!itemspec[2] || itemspec[2] <= 0) i++ continue - itemspec[2] -= 1 + itemspec[2]-- var/list/spawned = list() - if(islist(itemspec[3])) - for(var/path in itemspec[3]) + if(islist(itemspec_item)) + for(var/path in itemspec_item) spawned += new path(loc) - else if(itemspec[3]) - var/path = itemspec[3] - spawned += new path(loc) + else if(itemspec_item) + if(itemspec[2] == 0 && partial_product_stacks[itemspec_item] > 0 && ispath(itemspec_item, /obj/item/stack)) + var/stack_amount = partial_product_stacks[itemspec_item] + partial_product_stacks[itemspec_item] = 0 + spawned += new itemspec_item(loc, stack_amount) + else + spawned += new itemspec_item(loc) if(throw_objects) for(var/atom/movable/spawned_atom in spawned) INVOKE_ASYNC(spawned_atom, TYPE_PROC_REF(/atom/movable, throw_atom), pick(orange(src, 4)), 4, SPEED_FAST) diff --git a/code/game/machinery/vending/vending.dm b/code/game/machinery/vending/vending.dm index b5f2c6181c..c6ef6eb7a5 100644 --- a/code/game/machinery/vending/vending.dm +++ b/code/game/machinery/vending/vending.dm @@ -207,24 +207,24 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending to_chat(user, "You [panel_open ? "open" : "close"] the maintenance panel.") update_icon() return TRUE - else if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) + else if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src.name].")) return FALSE else if(stat & BROKEN) - to_chat(user, SPAN_NOTICE("You start to unscrew the [src]'s broken panel.")) + to_chat(user, SPAN_NOTICE("You start to unscrew [src]'s broken panel.")) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 3)) - to_chat(user, SPAN_WARNING("You stop unscrewing the [src]'s broken panel.")) + to_chat(user, SPAN_WARNING("You stop unscrewing [src]'s broken panel.")) return FALSE - to_chat(user, SPAN_NOTICE("You unscrew the [src]'s broken panel and remove it, exposing many broken wires.")) + to_chat(user, SPAN_NOTICE("You unscrew [src]'s broken panel and remove it, exposing many broken wires.")) stat &= ~BROKEN stat |= REPAIR_STEP_ONE return TRUE else if(stat & REPAIR_STEP_FOUR) - to_chat(user, SPAN_NOTICE("You start to fasten the [src]'s new panel.")) + to_chat(user, SPAN_NOTICE("You start to fasten [src]'s new panel.")) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 3)) - to_chat(user, SPAN_WARNING("You stop fastening the [src]'s new panel.")) + to_chat(user, SPAN_WARNING("You stop fastening [src]'s new panel.")) return FALSE - to_chat(user, SPAN_NOTICE("You fasten the [src]'s new panel, fully repairing the vendor.")) + to_chat(user, SPAN_NOTICE("You fasten [src]'s new panel, fully repairing the vendor.")) stat &= ~REPAIR_STEP_FOUR stat |= FULLY_REPAIRED update_icon() @@ -234,18 +234,18 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending to_chat(user, SPAN_WARNING("[msg]")) return FALSE else if(HAS_TRAIT(item, TRAIT_TOOL_WIRECUTTERS)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src.name].")) return FALSE else if(stat == WORKING && panel_open) attack_hand(user) return else if(stat & REPAIR_STEP_ONE) - to_chat(user, SPAN_NOTICE("You start to remove the [src]'s broken wires.")) + to_chat(user, SPAN_NOTICE("You start to remove [src]'s broken wires.")) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 3)) - to_chat(user, SPAN_WARNING("You stop removing the [src]'s broken wires.")) + to_chat(user, SPAN_WARNING("You stop removing [src]'s broken wires.")) return FALSE - to_chat(user, SPAN_NOTICE("You remove the [src]'s broken broken wires.")) + to_chat(user, SPAN_NOTICE("You remove [src]'s broken broken wires.")) stat &= ~REPAIR_STEP_ONE stat |= REPAIR_STEP_TWO return TRUE @@ -254,21 +254,21 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending to_chat(user, SPAN_WARNING("[msg]")) return FALSE else if(istype(item, /obj/item/stack/cable_coil)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src.name].")) return FALSE var/obj/item/stack/cable_coil/CC = item if(stat & REPAIR_STEP_TWO) if(CC.amount < 5) to_chat(user, SPAN_WARNING("You need more cable coil to replace the removed wires.")) - to_chat(user, SPAN_NOTICE("You start to replace the [src]'s removed wires.")) + to_chat(user, SPAN_NOTICE("You start to replace [src]'s removed wires.")) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 3)) - to_chat(user, SPAN_WARNING("You stop replacing the [src]'s removed wires.")) + to_chat(user, SPAN_WARNING("You stop replacing [src]'s removed wires.")) return FALSE if(!CC || !CC.use(5)) to_chat(user, SPAN_WARNING("You need more cable coil to replace the removed wires.")) return FALSE - to_chat(user, SPAN_NOTICE("You remove the [src]'s broken broken wires.")) + to_chat(user, SPAN_NOTICE("You remove [src]'s broken broken wires.")) stat &= ~REPAIR_STEP_TWO stat |= REPAIR_STEP_THREE return TRUE @@ -277,19 +277,19 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending to_chat(user, SPAN_WARNING("[msg]")) return else if(istype(item, /obj/item/stack/sheet/metal)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) - to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src].")) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + to_chat(user, SPAN_WARNING("You do not understand how to repair the broken [src.name].")) return FALSE var/obj/item/stack/sheet/metal/M = item if(stat & REPAIR_STEP_THREE) - to_chat(user, SPAN_NOTICE("You start to construct a new panel for the [src].")) + to_chat(user, SPAN_NOTICE("You start to construct a new panel for [src].")) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, numticks = 3)) - to_chat(user, SPAN_WARNING("You stop constructing a new panel for the [src].")) + to_chat(user, SPAN_WARNING("You stop constructing a new panel for [src].")) return FALSE if(!M || !M.use(1)) to_chat(user, SPAN_WARNING("You a sheet of metal to construct a new panel.")) return FALSE - to_chat(user, SPAN_NOTICE("You construct a new panel for the [src].")) + to_chat(user, SPAN_NOTICE("You construct a new panel for [src].")) stat &= ~REPAIR_STEP_THREE stat |= REPAIR_STEP_FOUR return TRUE @@ -306,9 +306,9 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending switch (anchored) if (0) anchored = TRUE - user.visible_message("[user] tightens the bolts securing the [src] to the floor.", "You tighten the bolts securing the [src] to the floor.") + user.visible_message("[user] tightens the bolts securing [src] to the floor.", "You tighten the bolts securing [src] to the floor.") if (1) - user.visible_message("[user] unfastens the bolts securing the [src] to the floor.", "You unfasten the bolts securing the [src] to the floor.") + user.visible_message("[user] unfastens the bolts securing [src] to the floor.", "You unfasten the bolts securing [src] to the floor.") anchored = FALSE return else if(HAS_TRAIT(item, TRAIT_TOOL_MULTITOOL) || HAS_TRAIT(item, TRAIT_TOOL_WIRECUTTERS)) @@ -321,7 +321,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending return if(user.drop_inv_item_to_loc(item, src)) coin = item - to_chat(user, SPAN_NOTICE(" You insert the [item] into the [src]")) + to_chat(user, SPAN_NOTICE("You insert [item] into [src]")) tgui_interact(user) return else if(istype(item, /obj/item/spacecash)) @@ -343,7 +343,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending if (CH) // Only proceed if card contains proper account number. if(!CH.suspended) if(CH.security_level != 0) //If card requires pin authentication (ie seclevel 1 or 2) - if(vendor_account) + if(GLOB.vendor_account) var/attempt_pin = tgui_input_number(usr, "Enter pin code", "Vendor transaction") var/datum/money_account/D = attempt_account_access(card.associated_account_number, attempt_pin, 2) transfer_and_vend(D) @@ -364,18 +364,18 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending //transfer the money acc.money -= transaction_amount - vendor_account.money += transaction_amount + GLOB.vendor_account.money += transaction_amount //create entries in the two account transaction logs var/datum/transaction/T = new() - T.target_name = "[vendor_account.owner_name] (via [name])" + T.target_name = "[GLOB.vendor_account.owner_name] (via [name])" T.purpose = "Purchase of [currently_vending.product_name]" if(transaction_amount > 0) T.amount = "([transaction_amount])" else T.amount = "[transaction_amount]" T.source_terminal = name - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() acc.transaction_log.Add(T) // @@ -384,9 +384,9 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending T.purpose = "Purchase of [currently_vending.product_name]" T.amount = "[transaction_amount]" T.source_terminal = name - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() - vendor_account.transaction_log.Add(T) + GLOB.vendor_account.transaction_log.Add(T) // Vend the item vend(currently_vending, usr) @@ -422,9 +422,9 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending if(is_tipped_over) if(user.action_busy) return - user.visible_message(SPAN_NOTICE("[user] begins to heave the [src] back into place!"), SPAN_NOTICE("You start heaving the [src] back into place...")) + user.visible_message(SPAN_NOTICE("[user] begins to heave [src] back into place!"), SPAN_NOTICE("You start heaving [src] back into place...")) if(do_after(user, 80, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY)) - user.visible_message(SPAN_NOTICE("[user] rights the [src]!"), SPAN_NOTICE("You right the [src]!")) + user.visible_message(SPAN_NOTICE("[user] rights [src]!"), SPAN_NOTICE("You right [src]!")) flip_back() return @@ -534,7 +534,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending return if(coin.string_attached) if(prob(50)) - to_chat(user, SPAN_NOTICE("You successfully pull the coin out before the [src] could swallow it.")) + to_chat(user, SPAN_NOTICE("You successfully pull the coin out before [src] could swallow it.")) user.put_in_hands(coin) else to_chat(user, SPAN_NOTICE("You weren't able to pull the coin out fast enough, the machine ate it, string and all.")) @@ -622,18 +622,18 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending //transfer the money user_account.money -= transaction_amount - vendor_account.money += transaction_amount + GLOB.vendor_account.money += transaction_amount //create entries in the two account transaction logs var/datum/transaction/new_transaction = new() - new_transaction.target_name = "[vendor_account.owner_name] (via [name])" + new_transaction.target_name = "[GLOB.vendor_account.owner_name] (via [name])" new_transaction.purpose = "Purchase of [currently_vending.product_name]" if(transaction_amount > 0) new_transaction.amount = "([transaction_amount])" else new_transaction.amount = "[transaction_amount]" new_transaction.source_terminal = name - new_transaction.date = current_date_string + new_transaction.date = GLOB.current_date_string new_transaction.time = worldtime2text() user_account.transaction_log.Add(new_transaction) @@ -642,9 +642,9 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending new_transaction.purpose = "Purchase of [currently_vending.product_name]" new_transaction.amount = "[transaction_amount]" new_transaction.source_terminal = name - new_transaction.date = current_date_string + new_transaction.date = GLOB.current_date_string new_transaction.time = worldtime2text() - vendor_account.transaction_log.Add(new_transaction) + GLOB.vendor_account.transaction_log.Add(new_transaction) return TRUE @@ -655,7 +655,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending //transfer the money cash.worth -= transaction_amount - vendor_account.money += transaction_amount + GLOB.vendor_account.money += transaction_amount //consume the cash if needed if(!cash.worth) @@ -667,9 +667,9 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending new_transaction.purpose = "Purchase of [currently_vending.product_name]" new_transaction.amount = "[transaction_amount]" new_transaction.source_terminal = name - new_transaction.date = current_date_string + new_transaction.date = GLOB.current_date_string new_transaction.time = worldtime2text() - vendor_account.transaction_log.Add(new_transaction) + GLOB.vendor_account.transaction_log.Add(new_transaction) return TRUE @@ -728,7 +728,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending var/list/wire_descriptions = get_wire_descriptions() var/list/panel_wires = list() - for(var/wire = 1 to wire_descriptions.len) + for(var/wire = 1 to length(wire_descriptions)) panel_wires += list(list("desc" = wire_descriptions[wire], "cut" = isWireCut(wire))) .["electrical"] = list( @@ -882,8 +882,8 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending S.remove_from_storage(item_to_stock, user.loc) qdel(item_to_stock) - user.visible_message(SPAN_NOTICE("[user] stocks the [src] with \a [product.product_name]."), - SPAN_NOTICE("You stock the [src] with \a [product.product_name].")) + user.visible_message(SPAN_NOTICE("[user] stocks [src] with \a [product.product_name]."), + SPAN_NOTICE("You stock [src] with \a [product.product_name].")) product.amount++ return //We found our item, no reason to go on. @@ -898,7 +898,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending seconds_electrified-- //Pitch to the people! Really sell it! - if(((last_slogan + slogan_delay) <= world.time) && (slogan_list.len > 0) && (!shut_up) && prob(5)) + if(((last_slogan + slogan_delay) <= world.time) && (length(slogan_list) > 0) && (!shut_up) && prob(5)) var/slogan = pick(slogan_list) speak(slogan) last_slogan = world.time @@ -967,7 +967,7 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending if (!throw_item) return 0 INVOKE_ASYNC(throw_item, /atom/movable/proc/throw_atom, target, 16, SPEED_AVERAGE, src) - visible_message(SPAN_WARNING("The [src] launches \the [throw_item] at [target]!")) + visible_message(SPAN_WARNING("[src] launches [throw_item] at [target]!")) playsound(src, "sound/machines/vending.ogg", 40, TRUE) return 1 @@ -988,14 +988,14 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending switch(wire) if(VENDING_WIRE_EXTEND) extended_inventory = TRUE - visible_message(SPAN_NOTICE("A weak yellow light turns off underneath the [src].")) + visible_message(SPAN_NOTICE("A weak yellow light turns off underneath [src].")) if(VENDING_WIRE_SHOCK) seconds_electrified = -1 - visible_message(SPAN_DANGER("Electric arcs shoot off from the [src]!")) + visible_message(SPAN_DANGER("Electric arcs shoot off from [src]!")) if (VENDING_WIRE_SHOOT_INV) if(!shoot_inventory) shoot_inventory = TRUE - visible_message(SPAN_WARNING("The [src] begins whirring noisily.")) + visible_message(SPAN_WARNING("[src] begins whirring noisily.")) /obj/structure/machinery/vending/proc/mend(wire) wires |= getWireFlag(wire) @@ -1003,24 +1003,24 @@ GLOBAL_LIST_EMPTY_TYPED(total_vending_machines, /obj/structure/machinery/vending switch(wire) if(VENDING_WIRE_EXTEND) extended_inventory = FALSE - visible_message(SPAN_NOTICE("A weak yellow light turns on underneath the [src].")) + visible_message(SPAN_NOTICE("A weak yellow light turns on underneath [src].")) if(VENDING_WIRE_SHOCK) seconds_electrified = 0 if (VENDING_WIRE_SHOOT_INV) shoot_inventory = FALSE - visible_message(SPAN_NOTICE("The [src] stops whirring.")) + visible_message(SPAN_NOTICE("[src] stops whirring.")) /obj/structure/machinery/vending/proc/pulse(wire) switch(wire) if(VENDING_WIRE_EXTEND) extended_inventory = !extended_inventory - visible_message(SPAN_NOTICE("A weak yellow light turns [extended_inventory ? "on" : "off"] underneath the [src].")) + visible_message(SPAN_NOTICE("A weak yellow light turns [extended_inventory ? "on" : "off"] underneath [src].")) if (VENDING_WIRE_SHOCK) seconds_electrified = 30 - visible_message(SPAN_DANGER("Electric arcs shoot off from the [src]!")) + visible_message(SPAN_DANGER("Electric arcs shoot off from [src]!")) if (VENDING_WIRE_SHOOT_INV) shoot_inventory = !shoot_inventory if(shoot_inventory) - visible_message(SPAN_WARNING("The [src] begins whirring noisily.")) + visible_message(SPAN_WARNING("[src] begins whirring noisily.")) else - visible_message(SPAN_NOTICE("The [src] stops whirring.")) + visible_message(SPAN_NOTICE("[src] stops whirring.")) diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index 8922b12733..b73e5b5cf0 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -203,25 +203,30 @@ /obj/item/storage/fancy/cigarettes/arcturian_ace = 15, /obj/item/storage/fancy/cigarettes/emeraldgreen = 15, /obj/item/storage/fancy/cigarettes/wypacket = 15, + /obj/item/storage/fancy/cigarettes/trading_card = 15, /obj/item/storage/fancy/cigarettes/lady_finger = 15, /obj/item/storage/fancy/cigarettes/blackpack = 10, /obj/item/storage/fancy/cigar/tarbacks = 5, + /obj/item/storage/box/matches = 10, /obj/item/tool/lighter/random = 20, /obj/item/tool/lighter/zippo = 5, + ) prices = list( /obj/item/storage/fancy/cigarettes/kpack = 40, /obj/item/storage/fancy/cigarettes/arcturian_ace = 25, /obj/item/storage/fancy/cigarettes/emeraldgreen = 35, - /obj/item/storage/fancy/cigarettes/wypacket = 35, + /obj/item/storage/fancy/cigarettes/wypacket = 30, + /obj/item/storage/fancy/cigarettes/trading_card = 35, /obj/item/storage/fancy/cigarettes/lady_finger = 30, /obj/item/storage/fancy/cigarettes/blackpack = 75, /obj/item/storage/fancy/cigar/tarbacks = 35, /obj/item/storage/box/matches = 1, /obj/item/tool/lighter/random = 10, /obj/item/tool/lighter/zippo = 25, + ) /obj/structure/machinery/vending/security @@ -232,8 +237,9 @@ icon_deny = "sec-deny" req_access = list(ACCESS_MARINE_BRIG) products = list( - /obj/item/handcuffs = 8, - /obj/item/handcuffs/zip = 10, + /obj/item/restraint/handcuffs = 8, + /obj/item/restraint/handcuffs/zip = 10, + /obj/item/restraint/legcuffs = 3, /obj/item/weapon/gun/energy/taser = 4, /obj/item/reagent_container/spray/pepper = 4, /obj/item/weapon/baton = 4, @@ -247,12 +253,30 @@ ) contraband = list(/obj/item/clothing/glasses/sunglasses = 2,/obj/item/storage/donut_box = 2) +/obj/structure/machinery/vending/security/riot + name = "\improper RiotTech" + desc = "A security riot equipment vendor." + hacking_safety = TRUE + wrenchable = FALSE + products = list( + /obj/item/restraint/handcuffs/zip = 40, + /obj/item/explosive/grenade/flashbang = 20, + /obj/item/explosive/grenade/custom/teargas = 40, + /obj/item/ammo_magazine/smg/m39/rubber = 40, + /obj/item/ammo_magazine/pistol/rubber = 40, + /obj/item/ammo_magazine/pistol/vp70/rubber = 40, + /obj/item/ammo_magazine/rifle/rubber = 40, + /obj/item/ammo_magazine/rifle/m4ra/rubber = 40, + /obj/item/clothing/head/helmet/marine/MP = 8, + /obj/item/explosive/plastic/breaching_charge/rubber = 6, + ) + /obj/structure/machinery/vending/security/colony name = "\improper SecTech Police Vendor" desc = "A generic police vendor." req_access = list(ACCESS_CIVILIAN_BRIG) products = list( - /obj/item/handcuffs = 8, + /obj/item/restraint/handcuffs = 8, /obj/item/reagent_container/spray/pepper = 4, /obj/item/device/flashlight = 4, /obj/item/storage/belt/security/MP/CMB = 4, @@ -266,7 +290,7 @@ desc = "A standard security vendor used by security forces of the UPP." req_access = list(ACCESS_CIVILIAN_BRIG) products = list( - /obj/item/handcuffs = 8, + /obj/item/restraint/handcuffs = 8, /obj/item/reagent_container/spray/pepper = 4, /obj/item/device/flashlight = 4, /obj/item/storage/belt/security/MP/UPP = 4, @@ -295,6 +319,7 @@ /obj/item/storage/firstaid/fire = 2, /obj/item/storage/firstaid/rad = 1, /obj/item/device/radio/headset = 6, + /obj/item/tool/crew_monitor = 1, ) contraband = list(/obj/item/storage/fancy/cigar = 2,/obj/item/tool/lighter/zippo = 2) @@ -412,7 +437,7 @@ name = "\improper Rec-Vend" desc = "Contains Weyland-Yutani approved recreational items, like Walkmans and Cards." icon_state = "walkman" - product_ads = "The only place to have fun in the entire Marine Corps!;You'll find no better music from here to Arcturus!;Instructions not included with decks of cards!;No volume controls - you don't need them!;All products responsibly made by people having just as much fun as you will be!" + product_ads = "The only place to have fun in the entire Marine Corps!;You'll find no better music from here to Arcturus!;Instructions not included with decks of cards!;No volume controls - you don't need them!;All products responsibly made by people having just as much fun as you will be!;Say goodbye to the lucky strike military tobacco monopoly, with the new Weyland Yutani Military Trading Card Gold cigarette pack!" vend_delay = 0.5 SECONDS idle_power_usage = 200 @@ -441,6 +466,10 @@ /obj/item/tool/pen/blue = 10, /obj/item/tool/pen/red = 10, /obj/item/tool/pen/fountain = 3, + /obj/item/storage/fancy/cigarettes/trading_card = 20, + /obj/item/storage/fancy/trading_card = 20, + /obj/item/toy/trading_card = 50, + ) contraband = list(/obj/item/toy/sword = 2) @@ -468,5 +497,75 @@ /obj/item/tool/pen/blue = 2, /obj/item/tool/pen/red = 2, /obj/item/tool/pen/fountain = 30, + /obj/item/storage/fancy/cigarettes/trading_card = 30, + /obj/item/storage/fancy/trading_card = 20, + /obj/item/toy/trading_card = 5, + ) product_type = VENDOR_PRODUCT_TYPE_RECREATIONAL + +//vendor of ingredients for kitchen +/obj/structure/machinery/vending/ingredients + name = "\improper Galley Auxiliary Storage Requisition System" + desc = "A vending machine meant to be use for cooks." + product_ads = "If your out of ingredients i am here for you;all my organic produce are fresh;don't let my potatoes go stale time for you to cook some fries" + icon_state = "snack" + hacking_safety = TRUE + products = list( + /obj/item/storage/fancy/egg_box = 12, + /obj/item/storage/box/fish = 12, + /obj/item/storage/box/meat = 12, + /obj/item/storage/box/milk = 12, + /obj/item/storage/box/soymilk = 12, + /obj/item/storage/box/enzyme = 12, + /obj/item/storage/box/flour = 12, + /obj/item/storage/box/sugar = 12, + /obj/item/storage/box/saltshaker = 12, + /obj/item/storage/box/peppermill = 12, + /obj/item/storage/box/mint = 12, + /obj/item/storage/box/apple = 12, + /obj/item/storage/box/banana = 12, + /obj/item/storage/box/chanterelle = 12, + /obj/item/storage/box/cherries = 12, + /obj/item/storage/box/chili = 12, + /obj/item/storage/box/cabbage = 12, + /obj/item/storage/box/carrot = 12, + /obj/item/storage/box/corn = 12, + /obj/item/storage/box/eggplant = 12, + /obj/item/storage/box/lemon = 12, + /obj/item/storage/box/lime = 12, + /obj/item/storage/box/orange = 12, + /obj/item/storage/box/potato = 12, + /obj/item/storage/box/tomato = 12, + /obj/item/storage/box/whitebeet = 12, + ) + + prices = list( + /obj/item/storage/fancy/egg_box = 1, + /obj/item/storage/box/fish = 1, + /obj/item/storage/box/meat = 1, + /obj/item/storage/box/milk =1, + /obj/item/storage/box/soymilk = 1, + /obj/item/storage/box/enzyme = 1, + /obj/item/storage/box/flour = 1, + /obj/item/storage/box/sugar = 1, + /obj/item/storage/box/saltshaker = 1, + /obj/item/storage/box/peppermill = 1, + /obj/item/storage/box/mint = 1, + /obj/item/storage/box/apple = 1, + /obj/item/storage/box/banana = 2, + /obj/item/storage/box/chanterelle = 2, + /obj/item/storage/box/cherries = 2, + /obj/item/storage/box/chili = 2, + /obj/item/storage/box/cabbage = 2, + /obj/item/storage/box/carrot = 2, + /obj/item/storage/box/corn = 2, + /obj/item/storage/box/eggplant = 2, + /obj/item/storage/box/lemon = 2, + /obj/item/storage/box/lime = 2, + /obj/item/storage/box/orange = 2, + /obj/item/storage/box/potato = 2, + /obj/item/storage/box/tomato = 2, + /obj/item/storage/box/whitebeet = 2, + ) + product_type = VENDOR_PRODUCT_TYPE_FOOD diff --git a/code/game/machinery/vending/vendor_types/crew/combat_correspondent.dm b/code/game/machinery/vending/vendor_types/crew/combat_correspondent.dm new file mode 100644 index 0000000000..81bee126db --- /dev/null +++ b/code/game/machinery/vending/vendor_types/crew/combat_correspondent.dm @@ -0,0 +1,53 @@ +//------------ CC CLOTHING VENDOR--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_combat_correspondent, list( + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Essential Reporter's Set", 0, /obj/effect/essentials_set/cc, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + list("Leather Satchel", 0, /obj/item/storage/backpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + + list("CIVILIAN EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Portable Press Fax Machine", 0, /obj/item/device/fax_backpack, CIVILIAN_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + list("Press Broadcasting Camera", 0, /obj/item/device/camera/broadcasting, CIVILIAN_CAN_BUY_UTILITY, VENDOR_ITEM_RECOMMENDED), + + list("UNIFORM (CHOOSE 1)", 0, null, null, null), + list("Black Uniform", 0, /obj/item/clothing/under/marine/reporter/black, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Orange Uniform", 0, /obj/item/clothing/under/marine/reporter/orange, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Red Uniform", 0, /obj/item/clothing/under/marine/reporter/red, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + + list("ARMOR (CHOOSE 1)", 0, null, null, null), + list("Combat Correspondent's Armor", 0, /obj/item/clothing/suit/storage/marine/light/reporter, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("Blue Vest", 0, /obj/item/clothing/suit/storage/jacket/marine/reporter/blue, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Black Vest", 0, /obj/item/clothing/suit/storage/hazardvest/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Black Coat", 0, /obj/item/clothing/suit/storage/jacket/marine/reporter/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Green Coat", 0, /obj/item/clothing/suit/storage/jacket/marine/reporter/green, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Combat Correspondent's Helmet", 0, /obj/item/clothing/head/helmet/marine/reporter, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), + list("Combat Correspondent's Cap", 0, /obj/item/clothing/head/cmcap/reporter, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Fedora", 0, /obj/item/clothing/head/fedora, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("REFILLS", 0, null, null, null), + list("Camera", 10, /obj/item/device/camera, null, VENDOR_ITEM_REGULAR), + list("Camera Film", 5, /obj/item/device/camera_film, null, VENDOR_ITEM_REGULAR), + list("Toner", 5, /obj/item/device/toner, null, VENDOR_ITEM_REGULAR), + list("Regulation Tapes", 15, /obj/item/storage/box/tapes, null, VENDOR_ITEM_REGULAR), + list("Paper Bin", 10, /obj/item/paper_bin/uscm, null, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/clothing/combat_correspondent + name = "\improper ColMarTech Combat Correspondent Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of Reporter standard-issue equipment." + req_access = list(ACCESS_PRESS) + vendor_role = list(JOB_COMBAT_REPORTER) + +/obj/structure/machinery/cm_vending/clothing/combat_correspondent/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_combat_correspondent + +/obj/effect/essentials_set/cc + spawned_gear_list = list( + /obj/item/device/flashlight, + /obj/item/tool/pen, + /obj/item/device/binoculars, + /obj/item/notepad, + /obj/item/device/taperecorder, + ) diff --git a/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm b/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm index d7d49a8ae0..dd2fc9c4a5 100644 --- a/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm +++ b/code/game/machinery/vending/vendor_types/crew/commanding_officer.dm @@ -32,6 +32,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_commanding_officer, list( list("HEDP Grenade Pack", 15, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("HEFA Grenade Pack", 15, /obj/item/storage/box/packet/hefa, null, VENDOR_ITEM_REGULAR), list("WP Grenade Pack", 15, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Packet (x3 grenades)", 15, /obj/item/storage/box/packet/sebb, null, VENDOR_ITEM_REGULAR), list("RAIL ATTACHMENTS", 0, null, null, null), list("Red-Dot Sight", 15, /obj/item/attachable/reddot, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/crew/corporate_liaison.dm b/code/game/machinery/vending/vendor_types/crew/corporate_liaison.dm new file mode 100644 index 0000000000..69261115ec --- /dev/null +++ b/code/game/machinery/vending/vendor_types/crew/corporate_liaison.dm @@ -0,0 +1,84 @@ +//------------ CL CLOTHING VENDOR--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_dress_corporate_liaison, list( + list("SUITS AND UNDERSHIRTS", 0, null, null, null), + list("Black Suit Pants", 0, /obj/item/clothing/under/liaison_suit/black, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), + list("Blue Suit Pants", 0, /obj/item/clothing/under/liaison_suit/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Brown Suit Pants", 0, /obj/item/clothing/under/liaison_suit/brown, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("White Suit Pants", 0, /obj/item/clothing/under/liaison_suit/corporate_formal, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's Tan Suit", 0, /obj/item/clothing/under/liaison_suit, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's Charcoal Suit", 0, /obj/item/clothing/under/liaison_suit/charcoal, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's White Suit", 0, /obj/item/clothing/under/liaison_suit/formal, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's Blue Blazer", 0, /obj/item/clothing/under/liaison_suit/blazer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's Suspenders", 0, /obj/item/clothing/under/liaison_suit/suspenders, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Liaison's Skirt", 0, /obj/item/clothing/under/blackskirt, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Trainee's Uniform", 0, /obj/item/clothing/under/suit_jacket/trainee, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Country Club Outfit", 0, /obj/item/clothing/under/liaison_suit/ivy, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Orange Outfit", 0, /obj/item/clothing/under/liaison_suit/orange, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Corporate Casual", 0, /obj/item/clothing/under/liaison_suit/field, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Grey Workwear", 0, /obj/item/clothing/under/colonist/workwear, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Khaki Workwear", 0, /obj/item/clothing/under/colonist/workwear/khaki, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Pink Workwear", 0, /obj/item/clothing/under/colonist/workwear/pink, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Green Workwear", 0, /obj/item/clothing/under/colonist/workwear/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + + list("SUIT", 0, null, null, null), + list("Black Suit Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/corporate/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("Khaki Suit Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/corporate, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Brown Suit Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Blue Suit Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Formal Suit Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/corporate/formal, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Grey Bomber Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/bomber/grey, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Red Bomber Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/bomber/red, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Khaki Bomber Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/bomber, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Brown Bomber Jacket", 0, /obj/item/clothing/suit/storage/bomber, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Black Bomber Jacket", 0, /obj/item/clothing/suit/storage/bomber/alt, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Liaison's Winter Coat", 0, /obj/item/clothing/suit/storage/snow_suit/liaison, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Grey Vest", 0, /obj/item/clothing/suit/storage/jacket/marine/vest/grey, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Brown Vest", 0, /obj/item/clothing/suit/storage/jacket/marine/vest, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Tan Vest", 0, /obj/item/clothing/suit/storage/jacket/marine/vest/tan, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("TIES", 0, null, null, null), + list("Black Tie", 0, /obj/item/clothing/accessory/black, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Red Tie", 0, /obj/item/clothing/accessory/red, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Purple Tie", 0, /obj/item/clothing/accessory/purple, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Blue Tie", 0, /obj/item/clothing/accessory/blue, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Green Tie", 0, /obj/item/clothing/accessory/green, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Gold Tie", 0, /obj/item/clothing/accessory/gold, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Special Tie", 0, /obj/item/clothing/accessory/horrible, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + + list("GLASSES", 0, null, null, null), + list("BiMex Shades", 0, /obj/item/clothing/glasses/sunglasses/big, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Sunglasses", 0, /obj/item/clothing/glasses/sunglasses, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Prescription Sunglasses", 0, /obj/item/clothing/glasses/sunglasses/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Prescription Glasses", 0, /obj/item/clothing/glasses/regular/hipster, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + + list("GLOVES", 0, null, null, null), + list("Black Gloves", 0, /obj/item/clothing/gloves/black, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_RECOMMENDED), + list("Dress Gloves", 0, /obj/item/clothing/gloves/marine/dress, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR), + + list("SHOES", 0, null, null, null), + list("Laceup Shoes, Black", 0, /obj/item/clothing/shoes/laceup, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_RECOMMENDED), + list("Laceup Shoes, Brown", 0, /obj/item/clothing/shoes/laceup/brown, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_REGULAR), + list("Sneakers, Black", 0, /obj/item/clothing/shoes/black, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_REGULAR), + list("Corporate Boots", 0, /obj/item/clothing/shoes/marine/corporate, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_REGULAR), + + list("HATS", 0, null, null, null), + list("Black Beret", 0, /obj/item/clothing/head/beret/cm/black/civilian, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("White Beret", 0, /obj/item/clothing/head/beret/cm/white/civilian, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Fedora", 0, /obj/item/clothing/head/fedora, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + +)) + +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison + name = "\improper Corporate Liaison's Personal Wardrobe" + desc = "A wardrobe containing all the clothes an executive would ever need." + icon_state = "wardrobe_vendor" + vendor_theme = VENDOR_THEME_USCM + show_points = FALSE + req_access = list() + vendor_role = list(JOB_CORPORATE_LIAISON, JOB_SURVIVOR, JOB_TRAINEE, JOB_JUNIOR_EXECUTIVE, JOB_EXECUTIVE, JOB_SENIOR_EXECUTIVE, JOB_EXECUTIVE_SPECIALIST, JOB_EXECUTIVE_SUPERVISOR, JOB_ASSISTANT_MANAGER, JOB_DIVISION_MANAGER, JOB_CHIEF_EXECUTIVE, JOB_DIRECTOR, JOB_WY_GOON_RESEARCHER) + +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_dress_corporate_liaison diff --git a/code/game/machinery/vending/vendor_types/crew/engineering.dm b/code/game/machinery/vending/vendor_types/crew/engineering.dm new file mode 100644 index 0000000000..9d5a809e52 --- /dev/null +++ b/code/game/machinery/vending/vendor_types/crew/engineering.dm @@ -0,0 +1,74 @@ +//------------ MT CLOTHING VENDOR--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_maintenance_technician, list( + list("MAINTENANCE SET (MANDATORY)", 0, null, null, null), + list("Essential Maintenance Set", 0, /obj/effect/essentials_set/maintenance, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Insulated Gloves", 0, /obj/item/clothing/gloves/yellow, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/almayer/mt, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Beret, Engineering", 0, /obj/item/clothing/head/beret/eng, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("White Hardhat", 0, /obj/item/clothing/head/hardhat/white, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Orange Hardhat", 0, /obj/item/clothing/head/hardhat/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Blue Hardhat", 0, /obj/item/clothing/head/hardhat/dblue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Welding Helmet", 0, /obj/item/clothing/head/welding, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Black Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Blue Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/blue, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Orange Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Yellow Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/yellow, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("BACKPACK (CHOOSE 1)", 0, null, null, null), + list("Technician Backpack", 0, /obj/item/storage/backpack/marine/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Satchel", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welderpack", 0, /obj/item/storage/backpack/marine/engineerpack, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welder-Satchel", 0, /obj/item/storage/backpack/marine/engineerpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + list("Technician Welder Chestrig", 0, /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Rebreather", 0, /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), + list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician + name = "\improper ColMarTech Maintenance Technician Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of Maintenance Technician standard-issue equipment." + req_access = list(ACCESS_MARINE_ENGINEERING) + vendor_role = list(JOB_MAINT_TECH) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_maintenance_technician + +/obj/effect/essentials_set/maintenance + spawned_gear_list = list( + /obj/item/device/lightreplacer, + /obj/item/device/demo_scanner, + /obj/item/storage/bag/trash, + /obj/item/storage/toolbox/mechanical, + /obj/item/device/flashlight, + ) diff --git a/code/game/machinery/vending/vendor_types/crew/medical.dm b/code/game/machinery/vending/vendor_types/crew/medical.dm index 54ea55e8ea..b2477b4eb4 100644 --- a/code/game/machinery/vending/vendor_types/crew/medical.dm +++ b/code/game/machinery/vending/vendor_types/crew/medical.dm @@ -32,29 +32,41 @@ GLOBAL_LIST_INIT(cm_vending_clothing_doctor, list( list("MEDICAL SET (MANDATORY)", 0, null, null, null), list("Essential Medical Set", 0, /obj/effect/essentials_set/medical/doctor, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), - list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("STANDARD EQUIPMENT", 0, null, null, null), list("Gloves", 0, /obj/item/clothing/gloves/latex, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/doc, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + + list("EYEWEAR (CHOOSE 1)", 0, null, null, null), list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + list("Prescription Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), list("UNIFORM (CHOOSE 1)", 0, null, null, null), list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR), + list("Medical's apron", 0, /obj/item/clothing/suit/chef/classic/medical, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR), - list("ARMOR (CHOOSE 1)", 0, null, null, null), - list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), - list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("SNOW GEAR (SNOW USE ONLY)", 0, null, null, null), + list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Balaclava", 0, /obj/item/clothing/mask/balaclava, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + list("Snow Scarf", 0, /obj/item/clothing/mask/tornscarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), - list("HELMET", 0, null, null, null), + list("HEADWEAR (CHOOSE 1)", 0, null, null, null), list("Surgical Cap, Blue", 0, /obj/item/clothing/head/surgery/blue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Purple", 0, /obj/item/clothing/head/surgery/purple, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Green", 0, /obj/item/clothing/head/surgery/green, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("BAG (CHOOSE 1)", 0, null, null, null), + list("Standard Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Standard Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), - list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), @@ -70,7 +82,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_doctor, list( list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -88,29 +101,42 @@ GLOBAL_LIST_INIT(cm_vending_clothing_nurse, list( list("MEDICAL SET (MANDATORY)", 0, null, null, null), list("Essential Medical Set", 0, /obj/effect/essentials_set/medical, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), - list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("STANDARD EQUIPMENT", 0, null, null, null), list("Gloves", 0, /obj/item/clothing/gloves/latex, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/doc, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + + list("EYEWEAR (CHOOSE 1)", 0, null, null, null), list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + list("Prescription Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), list("UNIFORM (CHOOSE 1)", 0, null, null, null), + list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), - list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), - list("ARMOR (CHOOSE 1)", 0, null, null, null), - list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), - list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Medical's apron", 0, /obj/item/clothing/suit/chef/classic/medical, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR), - list("HELMET", 0, null, null, null), + list("SNOW GEAR (SNOW USE ONLY)", 0, null, null, null), + list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Balaclava", 0, /obj/item/clothing/mask/balaclava, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + list("Snow Scarf", 0, /obj/item/clothing/mask/tornscarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + + list("HEADWEAR (CHOOSE 1)", 0, null, null, null), + + list("Surgical Cap, Orange", 0, /obj/item/clothing/head/surgery/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), list("Surgical Cap, Blue", 0, /obj/item/clothing/head/surgery/blue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Purple", 0, /obj/item/clothing/head/surgery/purple, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Green", 0, /obj/item/clothing/head/surgery/green, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("BAG (CHOOSE 1)", 0, null, null, null), + list("Standard Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Standard Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), - list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), @@ -126,7 +152,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_nurse, list( list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -144,31 +171,44 @@ GLOBAL_LIST_INIT(cm_vending_clothing_researcher, list( list("MEDICAL SET (MANDATORY)", 0, null, null, null), list("Essential Medical Set", 0, /obj/effect/essentials_set/medical/doctor, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), - list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("STANDARD EQUIPMENT", 0, null, null, null), list("Gloves", 0, /obj/item/clothing/gloves/latex, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/research, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), - list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), - list("Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + + list("EYEWEAR (CHOOSE 1)", 0, null, null, null), + list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + list("Prescription Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + list("Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + list("Prescription Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), list("UNIFORM (CHOOSE 1)", 0, null, null, null), + list("Researcher Uniform", 0, /obj/item/clothing/under/marine/officer/researcher, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), - list("Researcher Uniform", 0, /obj/item/clothing/under/marine/officer/researcher, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat/researcher, MARINE_CAN_BUY_MRE, VENDOR_ITEM_RECOMMENDED), - list("ARMOR (CHOOSE 1)", 0, null, null, null), - list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat/researcher, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), - list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("SNOW GEAR (SNOW USE ONLY)", 0, null, null, null), + list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Balaclava", 0, /obj/item/clothing/mask/balaclava, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + list("Snow Scarf", 0, /obj/item/clothing/mask/tornscarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), - list("HELMET", 0, null, null, null), + list("HEADWEAR (CHOOSE 1)", 0, null, null, null), + list("Surgical Cap, Orange", 0, /obj/item/clothing/head/surgery/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Blue", 0, /obj/item/clothing/head/surgery/blue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Purple", 0, /obj/item/clothing/head/surgery/purple, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Surgical Cap, Green", 0, /obj/item/clothing/head/surgery/green, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("BAG (CHOOSE 1)", 0, null, null, null), + list("Standard Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Standard Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), - list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), @@ -186,7 +226,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_researcher, list( list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -205,6 +246,12 @@ GLOBAL_LIST_INIT(cm_vending_clothing_researcher, list( /obj/item/device/healthanalyzer, /obj/item/tool/surgery/surgical_line, /obj/item/tool/surgery/synthgraft, + /obj/item/storage/syringe_case, + /obj/item/storage/surgical_case/regular, + /obj/item/clothing/accessory/stethoscope, + /obj/item/device/flashlight/pen, + + ) /obj/effect/essentials_set/medical/doctor @@ -214,6 +261,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_researcher, list( /obj/item/device/healthanalyzer, /obj/item/tool/surgery/surgical_line, /obj/item/tool/surgery/synthgraft, - /obj/item/device/flashlight/pen, /obj/item/clothing/accessory/stethoscope, + /obj/item/device/flashlight/pen, + /obj/item/storage/syringe_case, ) diff --git a/code/game/machinery/vending/vendor_types/crew/mp.dm b/code/game/machinery/vending/vendor_types/crew/mp.dm index f9dc3d45f2..75f35df175 100644 --- a/code/game/machinery/vending/vendor_types/crew/mp.dm +++ b/code/game/machinery/vending/vendor_types/crew/mp.dm @@ -24,7 +24,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police, list( list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("POUCHES (CHOOSE 2)", 0, null, null, null), @@ -82,7 +82,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_warden, list( list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("POUCHES (CHOOSE 2)", 0, null, null, null), diff --git a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm index d3935a3bcc..c3d94fe630 100644 --- a/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm +++ b/code/game/machinery/vending/vendor_types/crew/pilot_officer.dm @@ -5,7 +5,7 @@ desc = "An automated weapon rack hooked up to a small storage of standard-issue weapons. Can be accessed only by the dropship crew." icon_state = "guns" req_access = list(ACCESS_MARINE_PILOT) - vendor_role = list(JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF) + vendor_role = list(JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF) vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND listed_products = list( @@ -80,7 +80,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_pilot_officer, list( list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -169,7 +169,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_dropship_crew_chief, list( list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -242,7 +242,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_dropship_crew_chief, list( name = "\improper ColMarTech Dropship Crew Equipment Rack" desc = "An automated rack hooked up to a colossal storage of Dropship Crew standard-issue equipment." req_access = list(ACCESS_MARINE_PILOT) - vendor_role = list(JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF) + vendor_role = list(JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF) /obj/structure/machinery/cm_vending/clothing/pilot_officer/get_listed_products(mob/user) if(!user) @@ -252,6 +252,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_dropship_crew_chief, list( return combined if(user.job == JOB_DROPSHIP_CREW_CHIEF) return GLOB.cm_vending_clothing_dropship_crew_chief - if(user.job == JOB_PILOT) + if(user.job == JOB_CAS_PILOT) + return GLOB.cm_vending_clothing_pilot_officer + if(user.job == JOB_DROPSHIP_PILOT) return GLOB.cm_vending_clothing_pilot_officer return ..() diff --git a/code/game/machinery/vending/vendor_types/crew/sea.dm b/code/game/machinery/vending/vendor_types/crew/sea.dm index cb6698c6f7..99daa1325b 100644 --- a/code/game/machinery/vending/vendor_types/crew/sea.dm +++ b/code/game/machinery/vending/vendor_types/crew/sea.dm @@ -2,7 +2,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_sea, list( list("PERSONAL PRIMARY (CHOOSE 1)", 0, null, null, null), - list("M41A MK1 Pulse Rifle", 0, /obj/item/weapon/gun/rifle/m41aMK1, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), + list("M41A MK1 Pulse Rifle", 0, /obj/item/weapon/gun/rifle/m41aMK1, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("SPARE AMMUNITION", 0, null, null, null), list("M41A MK1 Magazine", 9, /obj/item/ammo_magazine/rifle/m41aMK1, null, VENDOR_ITEM_REGULAR), @@ -28,18 +28,23 @@ GLOBAL_LIST_INIT(cm_vending_gear_sea, list( GLOBAL_LIST_INIT(cm_vending_clothing_sea, list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Drill Hat", 0, /obj/item/clothing/head/drillhat, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), list("Officer Uniform", 0, /obj/item/clothing/under/marine/dress, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("USCM Service Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/service, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/cdrcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("Satchel", 0, /obj/item/storage/backpack/satchel/lockable, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), - list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + + list("GLOVES (CHOOSE 1)", 0, null, null, null), + list("Insulated Gloves", 0, /obj/item/clothing/gloves/yellow, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR), + list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR), list("BELT (CHOOSE 1)", 0, null, null, null), list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 Combat Toolbelt Rig (Full)", 0, /obj/item/storage/belt/gun/utility, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Combat Toolbelt Rig (Full)", 0, /obj/item/storage/belt/gun/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -51,12 +56,18 @@ GLOBAL_LIST_INIT(cm_vending_clothing_sea, list( list("Sidearm Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("COMBAT ARMOR (CHOOSE 1)", 0, null, null, null), - list("M3-VL Pattern Ballistics Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), - list("M3-L Pattern Light Armor", 0, /obj/item/clothing/suit/storage/marine/light, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), - list("M3 Pattern Padded Armor", 0, /obj/item/clothing/suit/storage/marine/padded, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), - list("Bulletproof Vest", 0, /obj/item/clothing/suit/armor/bulletproof, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), - list("USCM Service Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/service, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("COMBAT GEAR", 0, null, null, null), + list("M10 Helmet", 0, /obj/item/clothing/head/helmet/marine, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_REGULAR), + list("M3-VL Pattern Ballistics Vest", 0, /obj/item/clothing/suit/storage/marine/light/vest, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_REGULAR), + list("M3-L Pattern Light Armor", 0, /obj/item/clothing/suit/storage/marine/light, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_RECOMMENDED), + list("M3 Pattern Padded Armor", 0, /obj/item/clothing/suit/storage/marine/medium/padded, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_REGULAR), + list("Bulletproof Vest", 0, /obj/item/clothing/suit/armor/bulletproof, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_REGULAR), + + list("EYEWEAR (CHOOSE 1)", 0, null, null, null), + list("Welding Goggles", 0, /obj/item/clothing/glasses/welding, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Prescription Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Sunglasses", 0, /obj/item/clothing/glasses/sunglasses, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), @@ -64,13 +75,6 @@ GLOBAL_LIST_INIT(cm_vending_clothing_sea, list( list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - - list("HEADWEAR (CHOOSE 1)", 0, null, null, null), - list("Drill Hat", 0, /obj/item/clothing/head/drillhat, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), - list("M10 Helmet", 0, /obj/item/clothing/head/helmet/marine, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), - - list("TOOLS OF THE TRADE", 0, null, null, null), - list("CPR Dummy", 5, /obj/item/cpr_dummy, null, VENDOR_ITEM_REGULAR) )) /obj/structure/machinery/cm_vending/clothing/sea diff --git a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm index a0d37fb154..9236411bf6 100644 --- a/code/game/machinery/vending/vendor_types/crew/senior_officers.dm +++ b/code/game/machinery/vending/vendor_types/crew/senior_officers.dm @@ -54,7 +54,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_military_police_chief, list( list("BELT (CHOOSE 1)", 0, null, null, null), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("POUCHES (CHOOSE 2)", 0, null, null, null), @@ -162,6 +162,9 @@ GLOBAL_LIST_INIT(cm_vending_clothing_chief_engineer, list( list("M41A Pulse Rifle MK2", 0, /obj/item/storage/box/guncase/m41a, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), list("M240 Incinerator Unit", 0, /obj/item/storage/box/guncase/flamer, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), + list("Spare Equipment", 0, null, null, null), + list("Technician's Headset", 15, /obj/item/device/radio/headset/almayer/mt, null, VENDOR_ITEM_REGULAR), + )) @@ -173,10 +176,11 @@ GLOBAL_LIST_INIT(cm_vending_clothing_req_officer, list( list("Quartermaster Uniform", 0, /obj/item/clothing/under/rank/qm_suit, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/qm, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("Satchel", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), - list("Quartermaster Jacket", 0, /obj/item/clothing/suit/storage/RO, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Quartermaster Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/RO, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("Headgear (CHOOSE 1)", 0, null, null, null), list("Quartermaster Cap", 0, /obj/item/clothing/head/cmcap/req/ro, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("Quartermaster Beret", 0, /obj/item/clothing/head/beret/marine/ro, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), list("Requisitions Cap", 0, /obj/item/clothing/head/cmcap/req, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), @@ -210,37 +214,65 @@ GLOBAL_LIST_INIT(cm_vending_clothing_req_officer, list( //------------ CHIEF MEDICAL OFFICER --------------- GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list( - list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("MEDICAL SET (MANDATORY)", 0, null, null, null), + list("Essential Medical Set", 0, /obj/effect/essentials_set/medical/doctor/cmo, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("STANDARD EQUIPMENT", 0, null, null, null), list("Gloves", 0, /obj/item/clothing/gloves/latex, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/cmo, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), - list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), - list("EYEWARE (CHOOSE 1)", 0, null, null, null), + list("EYEWEAR (CHOOSE 1)", 0, null, null, null), list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), - list("Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Prescription Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + list("Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + list("Prescription Reagent Scanner HUD Goggles", 0, /obj/item/clothing/glasses/science/prescription, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), list("UNIFORM (CHOOSE 1)", 0, null, null, null), - list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), + list("Chief Medical Officer's Uniform", 0, /obj/item/clothing/under/rank/chief_medical_officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), + list("Doctor Uniform", 0, /obj/item/clothing/under/rank/medical, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Green Scrubs", 0, /obj/item/clothing/under/rank/medical/green, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/blue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Light Blue Scrubs", 0, /obj/item/clothing/under/rank/medical/lightblue, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), list("Purple Scrubs", 0, /obj/item/clothing/under/rank/medical/purple, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), - list("Doctor Uniform", 0, /obj/item/clothing/under/rank/medical, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Olive Scrubs", 0, /obj/item/clothing/under/rank/medical/olive, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + list("Grey Scrubs", 0, /obj/item/clothing/under/rank/medical/grey, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Labcoat", 0, /obj/item/clothing/suit/storage/labcoat, MARINE_CAN_BUY_MRE, VENDOR_ITEM_RECOMMENDED), + list("Medical's apron", 0, /obj/item/clothing/suit/chef/classic/medical, MARINE_CAN_BUY_MRE, VENDOR_ITEM_REGULAR), + + list("SNOW GEAR (SNOW USE ONLY)", 0, null, null, null), + list("Snowcoat", 0, /obj/item/clothing/suit/storage/snow_suit/doctor, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Balaclava", 0, /obj/item/clothing/mask/balaclava, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + list("Snow Scarf", 0, /obj/item/clothing/mask/tornscarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), + + list("HEADWEAR (CHOOSE 1)", 0, null, null, null), + list("Chief Medical Officer's Peaked Cap", 0, /obj/item/clothing/head/cmo, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), + list("Surgical Cap, Orange", 0, /obj/item/clothing/head/surgery/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Surgical Cap, Blue", 0, /obj/item/clothing/head/surgery/blue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Surgical Cap, Purple", 0, /obj/item/clothing/head/surgery/purple, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Surgical Cap, Green", 0, /obj/item/clothing/head/surgery/green, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("BAG (CHOOSE 1)", 0, null, null, null), + + list("Standard Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Standard Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), - list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), - list("USCM Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), - list("USCM Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), - list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), - list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), - list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("COMBAT EQUIPMENT (COMBAT USE ONLY)", 0, null, null, null), + list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_MANDATORY), + list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_MANDATORY), + list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_COMBAT_SHOES, VENDOR_ITEM_MANDATORY), list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -252,7 +284,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list( list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -262,18 +295,118 @@ GLOBAL_LIST_INIT(cm_vending_clothing_cmo, list( list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + + list("Spare Equipment", 0, null, null, null), + list("Doctor's Headset", 15, /obj/item/device/radio/headset/almayer/doc, null, VENDOR_ITEM_REGULAR), + list("Researcher's Headset", 15, /obj/item/device/radio/headset/almayer/research, null, VENDOR_ITEM_REGULAR), )) +/obj/effect/essentials_set/medical/doctor/cmo + spawned_gear_list = list( + /obj/item/device/defibrillator, + /obj/item/storage/firstaid/adv, + /obj/item/device/healthanalyzer, + /obj/item/tool/surgery/surgical_line, + /obj/item/tool/surgery/synthgraft, + /obj/item/device/flashlight/pen, + /obj/item/clothing/accessory/stethoscope, + /obj/item/storage/syringe_case, + ) //------------ EXECUTIVE OFFFICER --------------- + +//------------WEAPON VENDOR--------------- +GLOBAL_LIST_INIT(cm_vending_gear_xo, list( + list("CAPTAIN'S PRIMARY (CHOOSE 1)", 0, null, null, null), + list("M41A MK1 Pulse Rifle", 0, /obj/item/storage/box/guncase/m41aMK1AP, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), + list("MK221 Tactical Shotgun", 0, /obj/effect/essentials_set/xo/shotgunpreset, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), + + list("PRIMARY AMMUNITION", 0, null, null, null), + list("M41A MK1 Magazine", 40, /obj/item/ammo_magazine/rifle/m41aMK1, null, VENDOR_ITEM_RECOMMENDED), + list("M41A MK1 AP Magazine", 60, /obj/item/ammo_magazine/rifle/m41aMK1/ap, null, VENDOR_ITEM_RECOMMENDED), + list("Buckshot Shells", 20, /obj/item/ammo_magazine/shotgun/buckshot, null, VENDOR_ITEM_REGULAR), + list("Shotgun Slugs", 20, /obj/item/ammo_magazine/shotgun/slugs, null, VENDOR_ITEM_REGULAR), + list("Flechette Shells", 20, /obj/item/ammo_magazine/shotgun/flechette, null, VENDOR_ITEM_REGULAR), + + list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null), + list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), + list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), + + list("EXPLOSIVES", 0, null, null, null), + list("HEDP Grenade Pack", 15, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), + list("HEFA Grenade Pack", 15, /obj/item/storage/box/packet/hefa, null, VENDOR_ITEM_REGULAR), + list("WP Grenade Pack", 15, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + + list("RAIL ATTACHMENTS", 0, null, null, null), + list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_RECOMMENDED), + list("Red-Dot Sight", 15, /obj/item/attachable/reddot, null, VENDOR_ITEM_REGULAR), + list("Reflex Sight", 15, /obj/item/attachable/reflex, null, VENDOR_ITEM_REGULAR), + list("S4 2x Telescopic Mini-Scope", 15, /obj/item/attachable/scope/mini, null, VENDOR_ITEM_REGULAR), + + list("UNDERBARREL ATTACHMENTS", 0, null, null, null), + list("Laser Sight", 15, /obj/item/attachable/lasersight, null, VENDOR_ITEM_REGULAR), + list("Angled Grip", 15, /obj/item/attachable/angledgrip, null, VENDOR_ITEM_REGULAR), + list("Vertical Grip", 15, /obj/item/attachable/verticalgrip, null, VENDOR_ITEM_REGULAR), + list("Underbarrel Shotgun", 15, /obj/item/attachable/attached_gun/shotgun, null, VENDOR_ITEM_REGULAR), + list("Underbarrel Extinguisher", 15, /obj/item/attachable/attached_gun/extinguisher, null, VENDOR_ITEM_REGULAR), + list("Underbarrel Flamethrower", 15, /obj/item/attachable/attached_gun/flamer, null, VENDOR_ITEM_REGULAR), + list("Underbarrel Grenade Launcher", 5, /obj/item/attachable/attached_gun/grenade, null, VENDOR_ITEM_REGULAR), + + list("BARREL ATTACHMENTS", 0, null, null, null), + list("Extended Barrel", 15, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), + list("Recoil Compensator", 15, /obj/item/attachable/compensator, null, VENDOR_ITEM_REGULAR), + list("Suppressor", 15, /obj/item/attachable/suppressor, null, VENDOR_ITEM_REGULAR), + + list("OTHER SUPPLIES", 0, null, null, null), + list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), + list("Insulated Gloves", 3, /obj/item/clothing/gloves/yellow, null, VENDOR_ITEM_REGULAR), + list("Entrenching Tool", 1, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_REGULAR), + list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_RECOMMENDED), + list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED), + list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED), + list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), + list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED), + list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), + list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR), + list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_REGULAR), + )) + +/obj/effect/essentials_set/xo/shotgunpreset + spawned_gear_list = list( + /obj/item/weapon/gun/shotgun/combat, + /obj/item/ammo_magazine/shotgun/buckshot, + /obj/item/ammo_magazine/shotgun/slugs, + ) + +/obj/structure/machinery/cm_vending/gear/executive_officer + name = "\improper ColMarTech Executive Officer Weapon Rack" + desc = "An automated weapons rack for the Executive Officer. It features a decent selection of weaponry meant only for the second in command of a ship." + req_access = list(ACCESS_MARINE_SENIOR) + vendor_role = list(JOB_XO) + icon_state = "guns" + use_snowflake_points = TRUE + +/obj/structure/machinery/cm_vending/gear/executive_officer/get_listed_products(mob/user) + return GLOB.cm_vending_gear_xo + +//------------UNIFORM/GEAR VENDOR--------------- GLOBAL_LIST_INIT(cm_vending_clothing_xo, list( + list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_MANDATORY), + list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_MANDATORY), + list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_COMBAT_SHOES, VENDOR_ITEM_MANDATORY), + list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/cdrcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("Satchel", 0, /obj/item/storage/backpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("UNIFORM (CHOOSE ONE)", 0, null, null, null), list("Service Uniform", 0, /obj/item/clothing/under/marine/officer/bridge, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_RECOMMENDED), @@ -286,45 +419,60 @@ GLOBAL_LIST_INIT(cm_vending_clothing_xo, list( list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_REGULAR), - list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), - list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), - list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), - list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), - list("EYEWEAR (CHOOSE 1)", 0, null, null, null), list("Medical HUD Glasses", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), list("Security HUD Glasses", 0, /obj/item/clothing/glasses/sunglasses/sechud, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), list("Bimex Personal Shades", 0, /obj/item/clothing/glasses/sunglasses/big, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("HATS (CHOOSE 1)", 0, null, null, null), + list("Officer Beret", 0, /obj/item/clothing/head/beret/marine/chiefofficer, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Service Peaked Cap", 0, /obj/item/clothing/head/marine/peaked/service, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Patrol Cap", 0, /obj/item/clothing/head/cmcap, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Officer Cap", 0, /obj/item/clothing/head/cmcap/bridge, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("PATCHES", 0, null, null, null), - list("Solar Devils Shoulder Patch", 0, /obj/item/clothing/accessory/patch/devils, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), - list("USCM Shoulder Patch", 0, /obj/item/clothing/accessory/patch, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Solar Devils Shoulder Patch", 1, /obj/item/clothing/accessory/patch/devils, null, VENDOR_ITEM_REGULAR), + list("USCM Shoulder Patch", 1, /obj/item/clothing/accessory/patch, null, VENDOR_ITEM_REGULAR), + + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Holster Toolrig (Full)", 0, /obj/item/storage/belt/gun/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("Military Police Belt", 0, /obj/item/storage/belt/security/MP/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("POUCHES (CHOOSE 2)", 0, null, null, null), - list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Sidearm Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Large Magazine Pouch", 0, /obj/item/storage/pouch/magazine/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Large Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Medical Pouch", 0, /obj/item/storage/pouch/medical, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - + list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Fuel Tank Strap Pouch", 0, /obj/item/storage/pouch/flamertank, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), - list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - - list("HATS (CHOOSE 1)", 0, null, null, null), - list("Officer Beret", 0, /obj/item/clothing/head/beret/marine/chiefofficer, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - list("Service Peaked Cap", 0, /obj/item/clothing/head/marine/peaked/service, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - list("Patrol Cap", 0, /obj/item/clothing/head/cmcap, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - list("Officer Cap", 0, /obj/item/clothing/head/cmcap/bridge, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), )) @@ -336,15 +484,24 @@ GLOBAL_LIST_INIT(cm_vending_clothing_auxiliary_officer, list( list("Insulated Gloves", 0, /obj/item/clothing/gloves/yellow, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Officer Uniform", 0, /obj/item/clothing/under/marine/officer/bridge, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/qm, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), - list("Satchel", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), - list("Patrol Cap", 0, /obj/item/clothing/head/cmcap, MARINE_CAN_BUY_MASK, VENDOR_ITEM_MANDATORY), list("Auxiliary Support Officer Jacket", 0, /obj/item/clothing/suit/storage/jacket/marine/service/aso, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("BAG (CHOOSE 1)", 0, null, null, null), + list("USCM Technician Chestrig", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), + list("Leather Satchel", 0, /obj/item/storage/backpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M4A3 Service Pistol", 0, /obj/item/storage/belt/gun/m4a3/full, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("VP70 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M44 Custom Revolver", 0, /obj/item/storage/belt/gun/m44/custom, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("HAT (CHOOSE 1)", 0, null, null, null), + list("Beret, Green", 0, /obj/item/clothing/head/beret/cm, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("Beret, Tan", 0, /obj/item/clothing/head/beret/cm/tan, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("Patrol Cap", 0, /obj/item/clothing/head/cmcap, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("Officer Cap", 0, /obj/item/clothing/head/cmcap/bridge, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("Service Peaked Cap", 0, /obj/item/clothing/head/marine/peaked/service, MARINE_CAN_BUY_MASK, VENDOR_ITEM_RECOMMENDED), + list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), @@ -357,10 +514,12 @@ GLOBAL_LIST_INIT(cm_vending_clothing_auxiliary_officer, list( list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Tools Pouch (Empty)", 0, /obj/item/storage/pouch/tools, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), )) diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm index 50b83ccdc5..491522c9a3 100644 --- a/code/game/machinery/vending/vendor_types/crew/staff_officer.dm +++ b/code/game/machinery/vending/vendor_types/crew/staff_officer.dm @@ -7,11 +7,11 @@ /obj/structure/machinery/cm_vending/clothing/staff_officer/get_listed_products(mob/user) return GLOB.cm_vending_clothing_staff_officer -//------------GEAR--------------- +//------------CLOTHING--------------- GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_COMBAT_SHOES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), @@ -31,12 +31,24 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list( list("Officer Cap", 0, /obj/item/clothing/head/cmcap/bridge, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), list("Service Peaked Cap", 0, /obj/item/clothing/head/marine/peaked/service, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_RECOMMENDED), + list("PATCHES", 0, null, null, null), + list("Falling Falcons Shoulder Patch", 1, /obj/item/clothing/accessory/patch/falcon, null, VENDOR_ITEM_REGULAR), + list("USCM Shoulder Patch", 1, /obj/item/clothing/accessory/patch, null, VENDOR_ITEM_REGULAR), + list("PERSONAL SIDEARM (CHOOSE 1)", 0, null, null, null), list("M44 Revolver", 0, /obj/item/storage/belt/gun/m44/mp, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("Mod 88 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp70, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("M4A3 Pistol", 0, /obj/item/storage/belt/gun/m4a3/commander, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), list("VP78 Pistol", 0, /obj/item/storage/belt/gun/m4a3/vp78, MARINE_CAN_BUY_SECONDARY, VENDOR_ITEM_RECOMMENDED), + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), + list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("BACKPACK (CHOOSE 1)", 0, null, null, null), list("Backpack", 0, /obj/item/storage/backpack/marine, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), @@ -46,8 +58,85 @@ GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer, list( list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED), - list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_RECOMMENDED), + list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_REGULAR), + list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED), + list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR), + list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/gear/staff_officer_armory + name = "\improper ColMarTech Staff Officer Armory Equipment Rack" + desc = "An automated combat equipment vendor for Staff Officers." + req_access = list(ACCESS_MARINE_COMMAND) + icon_state = "mar_rack" + vendor_role = list(JOB_SO) + +/obj/structure/machinery/cm_vending/gear/staff_officer_armory/get_listed_products(mob/user) + return GLOB.cm_vending_gear_staff_officer_armory + +//------------ARMORY--------------- + +GLOBAL_LIST_INIT(cm_vending_gear_staff_officer_armory, list( + list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_MANDATORY), + list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_MANDATORY), + list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_COMBAT_SHOES, VENDOR_ITEM_MANDATORY), + list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), + list("Bayonet", 0, /obj/item/attachable/bayonet, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), + + list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null), + list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Holster Toolrig (Full)", 0, /obj/item/storage/belt/gun/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Large Magazine Pouch", 0, /obj/item/storage/pouch/magazine/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Large Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medical Pouch", 0, /obj/item/storage/pouch/medical, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Fuel Tank Strap Pouch", 0, /obj/item/storage/pouch/flamertank, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + + list("OTHER SUPPLIES", 0, null, null, null), + list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), + list("Insulated Gloves", 3, /obj/item/clothing/gloves/yellow, null, VENDOR_ITEM_REGULAR), + list("Entrenching Tool", 1, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_REGULAR), + list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_RECOMMENDED), + list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED), list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED), + list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), + list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED), + list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR), list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_REGULAR), )) diff --git a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm b/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm deleted file mode 100644 index e616cff228..0000000000 --- a/code/game/machinery/vending/vendor_types/crew/staff_officer_armory.dm +++ /dev/null @@ -1,82 +0,0 @@ -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory - name = "\improper ColMarTech Staff Officer Armory Equipment Rack" - desc = "An automated combat equipment vendor for Staff Officers." - req_access = list(ACCESS_MARINE_COMMAND) - icon_state = "mar_rack" - vendor_role = list(JOB_SO) - -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory/get_listed_products(mob/user) - return GLOB.cm_vending_clothing_staff_officer_armory - -//------------GEAR--------------- - -GLOBAL_LIST_INIT(cm_vending_clothing_staff_officer_armory, list( - list("COMBAT EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Officer M3 Armor", 0, /obj/item/clothing/suit/storage/marine/MP/SO, MARINE_CAN_BUY_COMBAT_ARMOR, VENDOR_ITEM_MANDATORY), - list("Officer M10 Helmet", 0, /obj/item/clothing/head/helmet/marine/MP/SO, MARINE_CAN_BUY_COMBAT_HELMET, VENDOR_ITEM_MANDATORY), - list("Marine Combat Boots", 0, /obj/item/clothing/shoes/marine/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), - list("Marine Combat Gloves", 0, /obj/item/clothing/gloves/marine, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), - list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), - list("Aviator Shades", 0, /obj/item/clothing/glasses/sunglasses/aviator, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_REGULAR), - - list("SPECIALISATION KIT (CHOOSE 1)", 0, null, null, null), - list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), - list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), - - list("BELT (CHOOSE 1)", 0, null, null, null), - list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), - list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), - list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), - list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - - list("POUCHES (CHOOSE 2)", 0, null, null, null), - list("Autoinjector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First Responder Pouch", 0, /obj/item/storage/pouch/first_responder, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Fuel Tank Strap Pouch", 0, /obj/item/storage/pouch/flamertank, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Large Magazine Pouch", 0, /obj/item/storage/pouch/magazine/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Large Shotgun Shell Pouch", 0, /obj/item/storage/pouch/shotgun/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Medical Pouch", 0, /obj/item/storage/pouch/medical, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - - list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), - list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), - list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), - - list("MASK (CHOOSE 1)", 0, null, null, null), - list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - - list("OTHER SUPPLIES", 0, null, null, null), - list("Medical Helmet Optic", 5, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), - list("Magnetic Harness", 12, /obj/item/attachable/magnetic_harness, null, VENDOR_ITEM_REGULAR), - list("Radio Telephone Pack", 15, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_RECOMMENDED), - list("Binoculars", 5,/obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), - list("Rangefinder", 8, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 12, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_RECOMMENDED), - list("Data Detector", 5, /obj/item/device/motiondetector/intel, null, VENDOR_ITEM_REGULAR), - list("Flashlight", 1, /obj/item/device/flashlight, null, VENDOR_ITEM_RECOMMENDED), - list("Fulton Recovery Device", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), - list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), - list("Space Cleaner", 2, /obj/item/reagent_container/spray/cleaner, null, VENDOR_ITEM_REGULAR), - list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), - list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR) - )) diff --git a/code/game/machinery/vending/vendor_types/crew/synthetic.dm b/code/game/machinery/vending/vendor_types/crew/synthetic.dm index 1526613988..c34e98e971 100644 --- a/code/game/machinery/vending/vendor_types/crew/synthetic.dm +++ b/code/game/machinery/vending/vendor_types/crew/synthetic.dm @@ -5,7 +5,7 @@ desc = "An automated gear rack hooked up to a colossal storage of various medical and engineering supplies. Can be accessed only by synthetic units." icon_state = "gear" req_access = list(ACCESS_MARINE_SYNTH) - vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR) + vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR, JOB_UPP_SUPPORT_SYNTH, JOB_CMB_SYN, JOB_PMC_SYNTH) listed_products = list( list("ENGINEER SUPPLIES", 0, null, null, null), @@ -21,6 +21,7 @@ list("Plastic Explosive", 3, /obj/item/explosive/plastic, null, VENDOR_ITEM_REGULAR), list("ES-11 Mobile Fuel Canister", 4, /obj/item/tool/weldpack/minitank, null, VENDOR_ITEM_REGULAR), list("Engineer Kit", 1, /obj/item/storage/toolkit/empty, null, VENDOR_ITEM_REGULAR), + list("Tactical Prybar", 5, /obj/item/tool/crowbar/tactical, null, VENDOR_ITEM_REGULAR), list("FIRSTAID KITS", 0, null, null, null), list("Advanced Firstaid Kit", 12, /obj/item/storage/firstaid/adv, null, VENDOR_ITEM_REGULAR), @@ -38,6 +39,9 @@ list("Roller Bed", 4, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Stasis Bag", 6, /obj/item/bodybag/cryobag, null, VENDOR_ITEM_REGULAR), list("MS-11 Smart Refill Tank", 6, /obj/item/reagent_container/glass/minitank, null, VENDOR_ITEM_REGULAR), + list("Blood", 5, /obj/item/reagent_container/blood/OMinus, null, VENDOR_ITEM_REGULAR), + list("Surgical Bed", 10, /obj/structure/bed/portable_surgery, null, VENDOR_ITEM_REGULAR), + list("Surgical Kit", 30, /obj/item/storage/surgical_tray, null, VENDOR_ITEM_REGULAR), list("Pillbottle (Bicaridine)", 5, /obj/item/storage/pill_bottle/bicaridine, null, VENDOR_ITEM_RECOMMENDED), list("Pillbottle (Dexalin)", 5, /obj/item/storage/pill_bottle/dexalin, null, VENDOR_ITEM_REGULAR), @@ -85,7 +89,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list( list("Experimental Tool Vendor Token", 0, /obj/item/coin/marine/synth, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("RADIO (TAKE ALL)", 0, null, null, null), - list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/cdrcom, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/almayer/mcom/synth, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("UNIFORM (CHOOSE 1)", 0, null, null, null), list("Uniform, Outdated Synth", 0, /obj/item/clothing/under/rank/synthetic/old, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_REGULAR), @@ -135,6 +139,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list( list("Smartpack, White", 0, /obj/item/storage/backpack/marine/smartpack/white, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Smartpack, Black", 0, /obj/item/storage/backpack/marine/smartpack/black, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Logistics IMP Backpack", 0, /obj/item/storage/backpack/marine/satchel/big, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Expedition Chestrig", 0, /obj/item/storage/backpack/marine/satchel/intel/chestrig, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("BELT (CHOOSE 1)", 0, null, null, null), list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -157,7 +162,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list( list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), @@ -171,7 +177,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list( name = "\improper ColMarTech Synthetic Equipment Rack" desc = "An automated rack hooked up to a colossal storage of various equipment. Can be accessed only by synthetic units." req_access = list(ACCESS_MARINE_SYNTH) - vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR) + vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR, JOB_UPP_SUPPORT_SYNTH, JOB_CMB_SYN, JOB_PMC_SYNTH) /obj/structure/machinery/cm_vending/clothing/synth/get_listed_products(mob/user) return GLOB.cm_vending_clothing_synth @@ -181,11 +187,14 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth, list( GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("USCM UNIFORMS", 0, null, null, null), list("Medical Scrubs, Blue", 12, /obj/item/clothing/under/rank/medical/blue, null, VENDOR_ITEM_REGULAR), - list("Medical Scrubs, Light Blue", 0, /obj/item/clothing/under/rank/medical/lightblue, null, VENDOR_ITEM_REGULAR), + list("Medical Scrubs, Light Blue", 12, /obj/item/clothing/under/rank/medical/lightblue, null, VENDOR_ITEM_REGULAR), list("Medical Scrubs, Green", 12, /obj/item/clothing/under/rank/medical/green, null, VENDOR_ITEM_REGULAR), list("Medical Scrubs, Purple", 12, /obj/item/clothing/under/rank/medical/purple, null, VENDOR_ITEM_REGULAR), + list("Medical Scrubs, Olive", 12, /obj/item/clothing/under/rank/medical/olive, null, VENDOR_ITEM_REGULAR), + list("Medical Scrubs, Grey", 12, /obj/item/clothing/under/rank/medical/grey, null, VENDOR_ITEM_REGULAR), list("Medical Scrubs, White", 12, /obj/item/clothing/under/rank/medical, null, VENDOR_ITEM_REGULAR), - list("USCM Service Uniform", 12, /obj/item/clothing/under/marine/officer/bridge, null, VENDOR_ITEM_REGULAR), + list("USCM Service Uniform, Tan", 12, /obj/item/clothing/under/marine/officer/bridge, null, VENDOR_ITEM_REGULAR), + list("USCM Service Uniform, White", 12, /obj/item/clothing/under/marine/dress, null, VENDOR_ITEM_REGULAR), list("USCM Flightsuit", 12, /obj/item/clothing/under/rank/synthetic/flight, null, VENDOR_ITEM_REGULAR), list("USCM Engineers Uniform", 12, /obj/item/clothing/under/marine/engineer/standard, null, VENDOR_ITEM_REGULAR), list("USCM Engineers Uniform (Darker)", 12, /obj/item/clothing/under/marine/engineer/darker, null, VENDOR_ITEM_REGULAR), @@ -204,8 +213,12 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Grey Utilities", 12, /obj/item/clothing/under/rank/synthetic/utility/yellow, null, VENDOR_ITEM_REGULAR), list("Grey Utilities and Blue Jeans", 12, /obj/item/clothing/under/rank/synthetic/utility/red, null, VENDOR_ITEM_REGULAR), list("Blue Utilities and Brown Jeans", 12, /obj/item/clothing/under/rank/synthetic/utility/blue, null, VENDOR_ITEM_REGULAR), + list("White Service Uniform", 12, /obj/item/clothing/under/colonist/white_service, null, VENDOR_ITEM_REGULAR), list("Steward Clothes", 12, /obj/item/clothing/under/colonist/wy_joliet_shopsteward, null, VENDOR_ITEM_REGULAR), list("Red Dress Skirt", 12, /obj/item/clothing/under/blackskirt, null, VENDOR_ITEM_REGULAR), + list("Blue Suit Pants", 12, /obj/item/clothing/under/liaison_suit/blue, null, VENDOR_ITEM_REGULAR), + list("Brown Suit Pants", 12, /obj/item/clothing/under/liaison_suit/brown, null, VENDOR_ITEM_REGULAR), + list("White Suit Pants", 12, /obj/item/clothing/under/liaison_suit/corporate_formal, null, VENDOR_ITEM_REGULAR), list("Working Joe Uniform", 36, /obj/item/clothing/under/rank/synthetic/joe, null, VENDOR_ITEM_REGULAR), list("GLASSES", 0, null, null, null), @@ -236,6 +249,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Beret, Red", 12, /obj/item/clothing/head/beret/cm/red, null, VENDOR_ITEM_REGULAR), list("Beret, Standard", 12, /obj/item/clothing/head/beret/cm, null, VENDOR_ITEM_REGULAR), list("Beret, Tan", 12, /obj/item/clothing/head/beret/cm/tan, null, VENDOR_ITEM_REGULAR), + list("Beret, Green", 12, /obj/item/clothing/head/beret/cm, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), list("Beret, Black", 12, /obj/item/clothing/head/beret/cm/black, null, VENDOR_ITEM_REGULAR), list("Beret, White", 12, /obj/item/clothing/head/beret/cm/white, null, VENDOR_ITEM_REGULAR), list("Surgical Cap, Blue", 12, /obj/item/clothing/head/surgery/blue, null, VENDOR_ITEM_REGULAR), @@ -248,6 +262,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Req Cap", 12, /obj/item/clothing/head/cmcap/req, null, VENDOR_ITEM_REGULAR), list("Officer Cap", 12, /obj/item/clothing/head/cmcap/bridge, null, VENDOR_ITEM_REGULAR), list("Bio Hood", 12, /obj/item/clothing/head/bio_hood/synth, null, VENDOR_ITEM_REGULAR), + list("Fedora", 12, /obj/item/clothing/head/fedora, null, VENDOR_ITEM_REGULAR), list("HELMET", 0, null, null, null), list("Marine Helmet (Mission-Specific Camo)", 12, /obj/item/clothing/head/helmet/marine, null, VENDOR_ITEM_REGULAR), @@ -257,8 +272,30 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Marine Helmet (Desert)", 12, /obj/item/clothing/head/helmet/marine/desert, null, VENDOR_ITEM_REGULAR), list("Technician Helmet", 12, /obj/item/clothing/head/helmet/marine/tech, null, VENDOR_ITEM_REGULAR), list("Corpsman Helmet", 12, /obj/item/clothing/head/helmet/marine/medic, null, VENDOR_ITEM_REGULAR), + list("White Corpsman Helmet", 12, /obj/item/clothing/head/helmet/marine/medic/white, null, VENDOR_ITEM_REGULAR), list("Attachable Helmet Shield", 12, /obj/item/prop/helmetgarb/riot_shield, null, VENDOR_ITEM_REGULAR), + list("MASK", 0, null, null, null), + list("Surgical Mask", 12, /obj/item/clothing/mask/surgical, null, VENDOR_ITEM_REGULAR), + list("Rebreather", 12, /obj/item/clothing/mask/rebreather, null, VENDOR_ITEM_REGULAR), + list("Skull Balaclava, Blue", 12, /obj/item/clothing/mask/rebreather/skull, null, VENDOR_ITEM_REGULAR), + list("Skull balaclava, Black", 12, /obj/item/clothing/mask/rebreather/skull/black, null, VENDOR_ITEM_REGULAR), + list("Balaclava", 12, /obj/item/clothing/mask/rebreather/scarf, null, VENDOR_ITEM_REGULAR), + list("Balaclava (Green)", 12, /obj/item/clothing/mask/rebreather/scarf/green, null, VENDOR_ITEM_REGULAR), + list("Balaclava (Tan)", 12, /obj/item/clothing/mask/rebreather/scarf/tan, null, VENDOR_ITEM_REGULAR), + list("Balaclava (Grey)", 12, /obj/item/clothing/mask/rebreather/scarf/gray, null, VENDOR_ITEM_REGULAR), + list("Wrap (Grey)", 12, /obj/item/clothing/mask/rebreather/scarf/tacticalmask, null, VENDOR_ITEM_REGULAR), + list("Wrap (Red)", 12, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, null, VENDOR_ITEM_REGULAR), + list("Wrap (Green)", 12, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green, null, VENDOR_ITEM_REGULAR), + list("Wrap (Tan)", 12, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/tan, null, VENDOR_ITEM_REGULAR), + list("Wrap (Black)", 12, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/black, null, VENDOR_ITEM_REGULAR), + list("Scarf", 12, /obj/item/clothing/mask/tornscarf, null, VENDOR_ITEM_REGULAR), + list("Scarf (Green)", 12, /obj/item/clothing/mask/tornscarf/green, null, VENDOR_ITEM_REGULAR), + list("Scarf (Snow)", 12, /obj/item/clothing/mask/tornscarf/snow, null, VENDOR_ITEM_REGULAR), + list("Scarf (Desert)", 12, /obj/item/clothing/mask/tornscarf/desert, null, VENDOR_ITEM_REGULAR), + list("Scarf (Urban)", 12, /obj/item/clothing/mask/tornscarf/urban, null, VENDOR_ITEM_REGULAR), + list("Scarf (Black)", 12, /obj/item/clothing/mask/tornscarf/black, null, VENDOR_ITEM_REGULAR), + list("SUIT", 0, null, null, null), list("Bomber Jacket, Brown", 12, /obj/item/clothing/suit/storage/bomber, null, VENDOR_ITEM_REGULAR), list("Bomber Jacket, Black", 12, /obj/item/clothing/suit/storage/bomber/alt, null, VENDOR_ITEM_REGULAR), @@ -278,8 +315,14 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("Windbreaker, Exploration", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_covenant, null, VENDOR_ITEM_REGULAR), list("Labcoat", 12, /obj/item/clothing/suit/storage/labcoat, null, VENDOR_ITEM_REGULAR), list("Labcoat, Researcher", 12, /obj/item/clothing/suit/storage/labcoat/researcher, null, VENDOR_ITEM_REGULAR), - list("Quartermaster Jacket", 12, /obj/item/clothing/suit/storage/RO, null, VENDOR_ITEM_REGULAR), + list("Quartermaster Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/RO, null, VENDOR_ITEM_REGULAR), list("Bio Suit", 12, /obj/item/clothing/suit/storage/synthbio, null, VENDOR_ITEM_REGULAR), + list("Black Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/black, null, VENDOR_ITEM_REGULAR), + list("Brown Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, null, VENDOR_ITEM_REGULAR), + list("Blue Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, null, VENDOR_ITEM_REGULAR), + list("Brown Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest, null, VENDOR_ITEM_REGULAR), + list("Tan Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest/tan, null, VENDOR_ITEM_REGULAR), + list("Grey Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest/grey, null, VENDOR_ITEM_REGULAR), list("USCM Poncho (Mission-Specific Camo)", 12, /obj/item/clothing/accessory/poncho, null, VENDOR_ITEM_REGULAR), list("USCM Poncho (Green)", 12, /obj/item/clothing/accessory/poncho/green, null, VENDOR_ITEM_REGULAR), list("USCM Poncho (Brown)", 12, /obj/item/clothing/accessory/poncho/brown, null, VENDOR_ITEM_REGULAR), @@ -302,8 +345,17 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( list("OTHER", 0, null, null, null), list("Red Armband", 6, /obj/item/clothing/accessory/armband, null, VENDOR_ITEM_REGULAR), + list("Purple Armband", 6, /obj/item/clothing/accessory/armband/science, null, VENDOR_ITEM_REGULAR), list("Yellow Armband", 6, /obj/item/clothing/accessory/armband/engine, null, VENDOR_ITEM_REGULAR), list("Green Armband", 6, /obj/item/clothing/accessory/armband/medgreen, null, VENDOR_ITEM_REGULAR), + list("Blue Tie", 6, /obj/item/clothing/accessory/blue, null, VENDOR_ITEM_REGULAR), + list("Green Tie", 6, /obj/item/clothing/accessory/green, null, VENDOR_ITEM_REGULAR), + list("Black Tie", 6, /obj/item/clothing/accessory/black, null, VENDOR_ITEM_REGULAR), + list("Gold Tie", 6, /obj/item/clothing/accessory/gold, null, VENDOR_ITEM_REGULAR), + list("Red Tie", 6, /obj/item/clothing/accessory/red, null, VENDOR_ITEM_REGULAR), + list("Purple Tie", 6, /obj/item/clothing/accessory/purple, null, VENDOR_ITEM_REGULAR), + list("Stethoscope", 6, /obj/item/clothing/accessory/stethoscope, null, VENDOR_ITEM_REGULAR), + list("Dress Gloves", 6, /obj/item/clothing/gloves/marine/dress, null, VENDOR_ITEM_REGULAR), )) @@ -315,7 +367,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( use_snowflake_points = TRUE vendor_theme = VENDOR_THEME_COMPANY req_access = list(ACCESS_MARINE_SYNTH) - vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR, JOB_WORKING_JOE) + vendor_role = list(JOB_SYNTH, JOB_SYNTH_SURVIVOR, JOB_WORKING_JOE, JOB_UPP_SUPPORT_SYNTH, JOB_CMB_SYN, JOB_PMC_SYNTH) vend_delay = 1 SECONDS @@ -334,27 +386,29 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( req_access = list(ACCESS_MARINE_SYNTH) vendor_role = list(JOB_SYNTH) -/obj/structure/machinery/cm_vending/own_points/experimental_tools/attackby(obj/item/W, mob/user) - if(istype(W, /obj/item/coin/marine/synth)) - if(user.drop_inv_item_to_loc(W, src)) +/obj/structure/machinery/cm_vending/own_points/experimental_tools/redeem_token(obj/item/coin/marine/token, mob/user) + if(token.token_type == VEND_TOKEN_SYNTH) + if(user.drop_inv_item_to_loc(token, src)) available_points = 30 available_points_to_display = available_points - to_chat(user, SPAN_NOTICE("You insert \the [W] into \the [src].")) - return + to_chat(user, SPAN_NOTICE("You insert \the [token] into \the [src].")) + return TRUE return ..() /obj/structure/machinery/cm_vending/own_points/experimental_tools/get_listed_products(mob/user) - return list( - list("Autocompressor", 15, /obj/item/clothing/suit/auto_cpr, null, VENDOR_ITEM_REGULAR), - list("Backpack Firefighting Watertank", 15, /obj/item/reagent_container/glass/watertank/atmos, null, VENDOR_ITEM_REGULAR), - list("Breaching Hammer", 15, /obj/item/weapon/twohanded/breacher/synth, null, VENDOR_ITEM_REGULAR), - list("Compact Nailgun kit", 15, /obj/effect/essentials_set/cnailgun, null, VENDOR_ITEM_REGULAR), - list("Crew Monitor", 15, /obj/item/tool/crew_monitor, null, VENDOR_ITEM_REGULAR), - list("Experimental Meson Goggles", 15, /obj/item/clothing/glasses/night/experimental_mesons, null, VENDOR_ITEM_REGULAR), - list("Maintenance Jack", 15, /obj/item/maintenance_jack, null, VENDOR_ITEM_REGULAR), - list("Portable Dialysis Machine", 15, /obj/item/tool/portadialysis, null, VENDOR_ITEM_REGULAR), - list("Telescopic Baton", 15, /obj/item/weapon/telebaton, null, VENDOR_ITEM_REGULAR), - ) + return GLOB.cm_vending_synth_tools + +GLOBAL_LIST_INIT(cm_vending_synth_tools, list( + list("Autocompressor", 15, /obj/item/clothing/suit/auto_cpr, null, VENDOR_ITEM_REGULAR), + list("Backpack Firefighting Watertank", 15, /obj/item/reagent_container/glass/watertank/atmos, null, VENDOR_ITEM_REGULAR), + list("Breaching Hammer", 15, /obj/item/weapon/twohanded/breacher/synth, null, VENDOR_ITEM_REGULAR), + list("Compact Nailgun kit", 15, /obj/effect/essentials_set/cnailgun, null, VENDOR_ITEM_REGULAR), + list("Crew Monitor", 15, /obj/item/tool/crew_monitor, null, VENDOR_ITEM_REGULAR), + list("Experimental Meson Goggles", 15, /obj/item/clothing/glasses/night/experimental_mesons, null, VENDOR_ITEM_REGULAR), + list("Maintenance Jack", 15, /obj/item/maintenance_jack, null, VENDOR_ITEM_REGULAR), + list("Portable Dialysis Machine", 15, /obj/item/tool/portadialysis, null, VENDOR_ITEM_REGULAR), + list("Telescopic Baton", 15, /obj/item/weapon/telebaton, null, VENDOR_ITEM_REGULAR), +)) //------------EXPERIMENTAL TOOL KITS--------------- /obj/effect/essentials_set/cnailgun @@ -362,4 +416,5 @@ GLOBAL_LIST_INIT(cm_vending_clothing_synth_snowflake, list( /obj/item/weapon/gun/smg/nailgun/compact, /obj/item/ammo_magazine/smg/nailgun, /obj/item/ammo_magazine/smg/nailgun, + /obj/item/storage/belt/gun/m4a3/nailgun, ) diff --git a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm index 76b8eb6301..1eaa66af83 100644 --- a/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm +++ b/code/game/machinery/vending/vendor_types/crew/vehicle_crew.dm @@ -7,7 +7,7 @@ icon_state = "vehicle_gear" req_access = list(ACCESS_MARINE_CREWMAN) - vendor_role = list(JOB_CREWMAN) + vendor_role = list(JOB_TANK_CREW) bound_width = 64 unslashable = TRUE @@ -26,12 +26,12 @@ /obj/structure/machinery/cm_vending/gear/vehicle_crew/Initialize(mapload, ...) . = ..() RegisterSignal(SSdcs, COMSIG_GLOB_VEHICLE_ORDERED, PROC_REF(populate_products)) - if(!VehicleGearConsole) - VehicleGearConsole = src + if(!GLOB.VehicleGearConsole) + GLOB.VehicleGearConsole = src /obj/structure/machinery/cm_vending/gear/vehicle_crew/Destroy() UnregisterSignal(SSdcs, COMSIG_GLOB_VEHICLE_ORDERED) - VehicleGearConsole = null + GLOB.VehicleGearConsole = null return ..() /obj/structure/machinery/cm_vending/gear/vehicle_crew/get_appropriate_vend_turf(mob/living/carbon/human/H) @@ -56,27 +56,27 @@ UnregisterSignal(SSdcs, COMSIG_GLOB_VEHICLE_ORDERED) if(!selected_vehicle) - selected_vehicle = "APC" // The whole thing seems to be based upon the assumption you unlock tank as an override, defaulting to APC - if(selected_vehicle == "APC") - available_categories &= ~(VEHICLE_ARMOR_AVAILABLE|VEHICLE_INTEGRAL_AVAILABLE) //APC lacks these, so we need to remove these flags to be able to access spare parts section + selected_vehicle = "TANK" // The whole thing seems to be based upon the assumption you unlock tank as an override, defaulting to APC + if(selected_vehicle == "TANK") + available_categories &= ~(VEHICLE_INTEGRAL_AVAILABLE) //APC lacks these, so we need to remove these flags to be able to access spare parts section + marine_announcement("A tank is being sent up to reinforce this operation.") /obj/structure/machinery/cm_vending/gear/vehicle_crew/get_listed_products(mob/user) var/list/display_list = list() if(!user) display_list += GLOB.cm_vending_vehicle_crew_tank - display_list += GLOB.cm_vending_vehicle_crew_tank_spare display_list += GLOB.cm_vending_vehicle_crew_apc - display_list += GLOB.cm_vending_vehicle_crew_apc_spare return display_list if(selected_vehicle == "TANK") if(available_categories) display_list = GLOB.cm_vending_vehicle_crew_tank - else - display_list = GLOB.cm_vending_vehicle_crew_tank_spare - else if(selected_vehicle == "APC") + else if(selected_vehicle == "ARC") + display_list = GLOB.cm_vending_vehicle_crew_arc + + else if(selected_vehicle == "TANK") if(available_categories) display_list = GLOB.cm_vending_vehicle_crew_apc else //APC stuff costs more to prevent 4000 points spent on shitton of ammunition @@ -87,9 +87,9 @@ . = list() . += ui_static_data(user) - if(supply_controller.tank_points) //we steal points from supply_controller, meh-he-he. Solely to be able to modify amount of points in vendor if needed by just changing one var. - available_points_to_display = supply_controller.tank_points - supply_controller.tank_points = 0 + if(GLOB.supply_controller.tank_points) //we steal points from GLOB.supply_controller, meh-he-he. Solely to be able to modify amount of points in vendor if needed by just changing one var. + available_points_to_display = GLOB.supply_controller.tank_points + GLOB.supply_controller.tank_points = 0 .["current_m_points"] = available_points_to_display var/list/ui_listed_products = get_listed_products(user) @@ -147,64 +147,11 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_tank, list( list("Overdrive Enhancer", 0, /obj/item/hardpoint/support/overdrive_enhancer, VEHICLE_SUPPORT_AVAILABLE, VENDOR_ITEM_RECOMMENDED), list("ARMOR", 0, null, null, null), - list("Ballistic Armor", 0, /obj/item/hardpoint/armor/ballistic, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_RECOMMENDED), - list("Caustic Armor", 0, /obj/item/hardpoint/armor/caustic, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_REGULAR), - list("Concussive Armor", 0, /obj/item/hardpoint/armor/concussive, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_REGULAR), - list("Paladin Armor", 0, /obj/item/hardpoint/armor/paladin, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_REGULAR), list("Snowplow", 0, /obj/item/hardpoint/armor/snowplow, VEHICLE_ARMOR_AVAILABLE, VENDOR_ITEM_REGULAR), list("TREADS", 0, null, null, null), list("Reinforced Treads", 0, /obj/item/hardpoint/locomotion/treads/robust, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_REGULAR), - list("Treads", 0, /obj/item/hardpoint/locomotion/treads, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_RECOMMENDED))) - -GLOBAL_LIST_INIT(cm_vending_vehicle_crew_tank_spare, list( - list("SPARE PARTS SELECTION:", 0, null, null, null), - - list("INTEGRAL PARTS", 0, null, null, null), - list("M34A2-A Multipurpose Turret", 500, /obj/item/hardpoint/holder/tank_turret, null, VENDOR_ITEM_REGULAR), - - list("SUPPORT AMMUNITION", 0, null, null, null), - list("Turret Smoke Screen Magazine", 50, /obj/item/ammo_magazine/hardpoint/turret_smoke, null, VENDOR_ITEM_REGULAR), - - list("PRIMARY WEAPON", 0, null, null, null), - list("AC3-E Autocannon", 200, /obj/item/hardpoint/primary/autocannon, null, VENDOR_ITEM_REGULAR), - list("DRG-N Offensive Flamer Unit", 200, /obj/item/hardpoint/primary/flamer, null, VENDOR_ITEM_REGULAR), - list("LTAA-AP Minigun", 200, /obj/item/hardpoint/primary/minigun, null, VENDOR_ITEM_REGULAR), - list("LTB Cannon", 400, /obj/item/hardpoint/primary/cannon, null, VENDOR_ITEM_RECOMMENDED), - - list("PRIMARY AMMUNITION", 0, null, null, null), - list("AC3-E Autocannon Magazine", 100, /obj/item/ammo_magazine/hardpoint/ace_autocannon, null, VENDOR_ITEM_REGULAR), - list("DRG-N Offensive Flamer Unit Fuel Tank", 100, /obj/item/ammo_magazine/hardpoint/primary_flamer, null, VENDOR_ITEM_REGULAR), - list("LTAA-AP Minigun Magazine", 100, /obj/item/ammo_magazine/hardpoint/ltaaap_minigun, null, VENDOR_ITEM_REGULAR), - list("LTB Cannon Magazine", 100, /obj/item/ammo_magazine/hardpoint/ltb_cannon, null, VENDOR_ITEM_REGULAR), - - list("SECONDARY WEAPON", 0, null, null, null), - list("M92T Grenade Launcher", 200, /obj/item/hardpoint/secondary/grenade_launcher, null, VENDOR_ITEM_REGULAR), - list("M56 Cupola", 200, /obj/item/hardpoint/secondary/m56cupola, null, VENDOR_ITEM_REGULAR), - list("LZR-N Flamer Unit", 200, /obj/item/hardpoint/secondary/small_flamer, null, VENDOR_ITEM_REGULAR), - list("TOW Launcher", 300, /obj/item/hardpoint/secondary/towlauncher, null, VENDOR_ITEM_REGULAR), - - list("SECONDARY AMMUNITION", 0, null, null, null), - list("M92T Grenade Launcher Magazine", 50, /obj/item/ammo_magazine/hardpoint/tank_glauncher, null, VENDOR_ITEM_REGULAR), - list("M56 Cupola Magazine", 50, /obj/item/ammo_magazine/hardpoint/m56_cupola, null, VENDOR_ITEM_REGULAR), - list("LZR-N Flamer Unit Fuel Tank", 50, /obj/item/ammo_magazine/hardpoint/secondary_flamer, null, VENDOR_ITEM_REGULAR), - list("TOW Launcher Magazine", 50, /obj/item/ammo_magazine/hardpoint/towlauncher, null, VENDOR_ITEM_REGULAR), - - list("SUPPORT MODULE", 0, null, null, null), - list("Artillery Module", 300, /obj/item/hardpoint/support/artillery_module, null, VENDOR_ITEM_REGULAR), - list("Integrated Weapons Sensor Array", 200, /obj/item/hardpoint/support/weapons_sensor, null, VENDOR_ITEM_REGULAR), - list("Overdrive Enhancer", 200, /obj/item/hardpoint/support/overdrive_enhancer, null, VENDOR_ITEM_REGULAR), - - list("ARMOR", 0, null, null, null), - list("Ballistic Armor", 300, /obj/item/hardpoint/armor/ballistic, null, VENDOR_ITEM_REGULAR), - list("Caustic Armor", 300, /obj/item/hardpoint/armor/caustic, null, VENDOR_ITEM_REGULAR), - list("Concussive Armor", 300, /obj/item/hardpoint/armor/concussive, null, VENDOR_ITEM_REGULAR), - list("Paladin Armor", 300, /obj/item/hardpoint/armor/paladin, null, VENDOR_ITEM_REGULAR), - list("Snowplow", 200, /obj/item/hardpoint/armor/snowplow, null, VENDOR_ITEM_REGULAR), - - list("TREADS", 0, null, null, null), - list("Reinforced Treads", 200, /obj/item/hardpoint/locomotion/treads/robust, null, VENDOR_ITEM_REGULAR), - list("Treads", 200, /obj/item/hardpoint/locomotion/treads, null, VENDOR_ITEM_REGULAR))) + list("Treads", 0, /obj/item/hardpoint/locomotion/treads, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_REGULAR))) GLOBAL_LIST_INIT(cm_vending_vehicle_crew_apc, list( list("STARTING KIT SELECTION:", 0, null, null, null), @@ -245,6 +192,11 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_apc_spare, list( list("WHEELS", 0, null, null, null), list("APC Wheels", 200, /obj/item/hardpoint/locomotion/apc_wheels, null, VENDOR_ITEM_REGULAR))) +GLOBAL_LIST_INIT(cm_vending_vehicle_crew_arc, list( + list("STARTING KIT SELECTION:", 0, null, null, null), + + list("WHEELS", 0, null, null, null), + list("Replacement ARC Wheels", 0, /obj/item/hardpoint/locomotion/arc_wheels, VEHICLE_TREADS_AVAILABLE, VENDOR_ITEM_MANDATORY))) //------------WEAPONS RACK--------------- @@ -253,7 +205,7 @@ GLOBAL_LIST_INIT(cm_vending_vehicle_crew_apc_spare, list( desc = "An automated weapon rack hooked up to a small storage of standard-issue weapons. Can be accessed only by the Vehicle Crewmen." icon_state = "guns" req_access = list(ACCESS_MARINE_CREWMAN) - vendor_role = list(JOB_CREWMAN) + vendor_role = list(JOB_TANK_CREW) vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND listed_products = list( @@ -322,7 +274,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_vehicle_crew, list( list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -392,7 +344,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_vehicle_crew, list( name = "\improper ColMarTech Vehicle Crewman Equipment Rack" desc = "An automated rack hooked up to a colossal storage of Vehicle Crewmen standard-issue equipment." req_access = list(ACCESS_MARINE_CREWMAN) - vendor_role = list(JOB_CREWMAN) + vendor_role = list(JOB_TANK_CREW) /obj/structure/machinery/cm_vending/clothing/vehicle_crew/get_listed_products(mob/user) return GLOB.cm_vending_clothing_vehicle_crew diff --git a/code/game/machinery/vending/vendor_types/dress.dm b/code/game/machinery/vending/vendor_types/dress.dm index aff221260d..6a4e76cda4 100644 --- a/code/game/machinery/vending/vendor_types/dress.dm +++ b/code/game/machinery/vending/vendor_types/dress.dm @@ -6,11 +6,11 @@ /obj/structure/machinery/cm_vending/clothing/dress/proc/get_listed_products_for_role(list/role_specific_uniforms) . = list() - for(var/category_type in uniform_categories) + for(var/category_type in GLOB.uniform_categories) var/display_category = FALSE - if(!uniform_categories[category_type]) + if(!GLOB.uniform_categories[category_type]) continue - for(var/category in uniform_categories[category_type]) + for(var/category in GLOB.uniform_categories[category_type]) if((category in role_specific_uniforms) && role_specific_uniforms[category]) display_category = TRUE break @@ -19,7 +19,7 @@ . += list( list(category_type, 0, null, null, null) ) - for(var/object_type in uniform_categories[category_type]) + for(var/object_type in GLOB.uniform_categories[category_type]) if(!role_specific_uniforms[object_type]) continue for(var/uniform_path in role_specific_uniforms[object_type]) @@ -45,18 +45,18 @@ return var/mob/living/carbon/human/H = user - var/obj/item/card/id/id_card = H.wear_id + var/obj/item/card/id/id_card = H.get_idcard() var/list/role_specific_uniforms var/list/vended_items var/list/display_list = list() - if(istype(id_card)) + if(id_card) role_specific_uniforms = id_card.uniform_sets vended_items = id_card.vended_items - for(var/category_type in uniform_categories) + for(var/category_type in GLOB.uniform_categories) var/display_category = FALSE - if(!uniform_categories[category_type]) + if(!GLOB.uniform_categories[category_type]) continue - for(var/category in uniform_categories[category_type]) + for(var/category in GLOB.uniform_categories[category_type]) if((category in role_specific_uniforms) && role_specific_uniforms[category]) display_category = TRUE break @@ -65,7 +65,7 @@ display_list += list( list(category_type, 0, null, null, null) ) - for(var/object_type in uniform_categories[category_type]) + for(var/object_type in GLOB.uniform_categories[category_type]) if(!role_specific_uniforms[object_type]) continue for(var/uniform_path in role_specific_uniforms[object_type]) @@ -83,9 +83,9 @@ /obj/structure/machinery/cm_vending/clothing/dress/ui_data(mob/user) var/mob/living/carbon/human/H = user - var/obj/item/card/id/id_card = H.wear_id + var/obj/item/card/id/id_card = H.get_idcard() var/list/vended_items - if(istype(id_card)) + if(id_card) vended_items = id_card.vended_items var/list/data = list() @@ -120,9 +120,9 @@ var/item_path = L[3] - var/obj/item/card/id/id_card = H.wear_id + var/obj/item/card/id/id_card = H.get_idcard() - if(!istype(id_card)) //not wearing an ID + if(!id_card) //not wearing an ID to_chat(H, SPAN_WARNING("Access denied. No ID card detected")) return @@ -134,10 +134,10 @@ to_chat(H, SPAN_WARNING("This machine isn't for you.")) return - for(var/category in uniform_categories) // Very Hacky fix + for(var/category in GLOB.uniform_categories) // Very Hacky fix if(!exploiting) break - for(var/specific_category in uniform_categories[category]) + for(var/specific_category in GLOB.uniform_categories[category]) if(!exploiting) break if(!(specific_category in id_card.uniform_sets)) @@ -197,11 +197,11 @@ if(findtext("[path]", item)) matches += path - if(matches.len==0) + if(length(matches)==0) return var/obj/item/chosen - if(matches.len==1) + if(length(matches)==1) chosen = matches[1] else //If we have multiple options, let them select which one they meant diff --git a/code/game/machinery/vending/vendor_types/engineering.dm b/code/game/machinery/vending/vendor_types/engineering.dm index 2275656d7a..3662d447a3 100644 --- a/code/game/machinery/vending/vendor_types/engineering.dm +++ b/code/game/machinery/vending/vendor_types/engineering.dm @@ -19,28 +19,28 @@ /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/populate_product_list(scale) listed_products = list( list("EQUIPMENT", -1, null, null), - list("Combat Flashlight", round(scale * 2), /obj/item/device/flashlight/combat, VENDOR_ITEM_REGULAR), - list("Hardhat", round(scale * 2), /obj/item/clothing/head/hardhat, VENDOR_ITEM_REGULAR), - list("Insulated Gloves", round(scale * 2), /obj/item/clothing/gloves/yellow, VENDOR_ITEM_REGULAR), - list("Utility Tool Belt", round(scale * 2), /obj/item/storage/belt/utility, VENDOR_ITEM_REGULAR), - list("Welding Goggles", round(scale * 2), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), - list("Welding Helmet", round(scale * 2), /obj/item/clothing/head/welding, VENDOR_ITEM_REGULAR), - list("Engineer Kit", round(scale * 2), /obj/item/storage/toolkit/empty, VENDOR_ITEM_REGULAR), + list("Combat Flashlight", floor(scale * 2), /obj/item/device/flashlight/combat, VENDOR_ITEM_REGULAR), + list("Hardhat", floor(scale * 2), /obj/item/clothing/head/hardhat, VENDOR_ITEM_REGULAR), + list("Insulated Gloves", floor(scale * 2), /obj/item/clothing/gloves/yellow, VENDOR_ITEM_REGULAR), + list("Utility Tool Belt", floor(scale * 2), /obj/item/storage/belt/utility, VENDOR_ITEM_REGULAR), + list("Welding Goggles", floor(scale * 2), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), + list("Welding Helmet", floor(scale * 2), /obj/item/clothing/head/welding, VENDOR_ITEM_REGULAR), + list("Engineer Kit", floor(scale * 2), /obj/item/storage/toolkit/empty, VENDOR_ITEM_REGULAR), list("SCANNERS", -1, null, null), - list("Atmos Scanner", round(scale * 2), /obj/item/device/analyzer, VENDOR_ITEM_REGULAR), - list("Demolitions Scanner", round(scale * 1), /obj/item/device/demo_scanner, VENDOR_ITEM_REGULAR), - list("Meson Scanner", round(scale * 2), /obj/item/clothing/glasses/meson, VENDOR_ITEM_REGULAR), - list("Reagent Scanner", round(scale * 2), /obj/item/device/reagent_scanner, VENDOR_ITEM_REGULAR), - list("T-Ray Scanner", round(scale * 2), /obj/item/device/t_scanner, VENDOR_ITEM_REGULAR), + list("Atmos Scanner", floor(scale * 2), /obj/item/device/analyzer, VENDOR_ITEM_REGULAR), + list("Demolitions Scanner", floor(scale * 1), /obj/item/device/demo_scanner, VENDOR_ITEM_REGULAR), + list("Meson Scanner", floor(scale * 2), /obj/item/clothing/glasses/meson, VENDOR_ITEM_REGULAR), + list("Reagent Scanner", floor(scale * 2), /obj/item/device/reagent_scanner, VENDOR_ITEM_REGULAR), + list("T-Ray Scanner", floor(scale * 2), /obj/item/device/t_scanner, VENDOR_ITEM_REGULAR), list("TOOLS", -1, null, null), - list("Blowtorch", round(scale * 4), /obj/item/tool/weldingtool, VENDOR_ITEM_REGULAR), - list("Crowbar", round(scale * 4), /obj/item/tool/crowbar, VENDOR_ITEM_REGULAR), - list("ME3 Hand Welder", round(scale * 2), /obj/item/tool/weldingtool/simple, VENDOR_ITEM_REGULAR), - list("Screwdriver", round(scale * 4), /obj/item/tool/screwdriver, VENDOR_ITEM_REGULAR), - list("Wirecutters", round(scale * 4), /obj/item/tool/wirecutters, VENDOR_ITEM_REGULAR), - list("Wrench", round(scale * 4), /obj/item/tool/wrench, VENDOR_ITEM_REGULAR) + list("Blowtorch", floor(scale * 4), /obj/item/tool/weldingtool, VENDOR_ITEM_REGULAR), + list("Crowbar", floor(scale * 4), /obj/item/tool/crowbar, VENDOR_ITEM_REGULAR), + list("ME3 Hand Welder", floor(scale * 2), /obj/item/tool/weldingtool/simple, VENDOR_ITEM_REGULAR), + list("Screwdriver", floor(scale * 4), /obj/item/tool/screwdriver, VENDOR_ITEM_REGULAR), + list("Wirecutters", floor(scale * 4), /obj/item/tool/wirecutters, VENDOR_ITEM_REGULAR), + list("Wrench", floor(scale * 4), /obj/item/tool/wrench, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools @@ -52,19 +52,19 @@ /obj/structure/machinery/cm_vending/sorted/tech/comtech_tools/populate_product_list(scale) listed_products = list( list("EQUIPMENT", -1, null, null), - list("Utility Tool Belt", round(scale * 4), /obj/item/storage/belt/utility, VENDOR_ITEM_REGULAR), - list("Cable Coil", round(scale * 4), /obj/item/stack/cable_coil/random, VENDOR_ITEM_REGULAR), - list("Welding Goggles", round(scale * 2), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), - list("Engineer Kit", round(scale * 2), /obj/item/storage/toolkit/empty, VENDOR_ITEM_REGULAR), + list("Utility Tool Belt", floor(scale * 4), /obj/item/storage/belt/utility, VENDOR_ITEM_REGULAR), + list("Cable Coil", floor(scale * 4), /obj/item/stack/cable_coil/random, VENDOR_ITEM_REGULAR), + list("Welding Goggles", floor(scale * 2), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), + list("Engineer Kit", floor(scale * 2), /obj/item/storage/toolkit/empty, VENDOR_ITEM_REGULAR), list("TOOLS", -1, null, null), - list("Blowtorch", round(scale * 4), /obj/item/tool/weldingtool, VENDOR_ITEM_REGULAR), - list("Crowbar", round(scale * 4), /obj/item/tool/crowbar, VENDOR_ITEM_REGULAR), - list("Screwdriver", round(scale * 4), /obj/item/tool/screwdriver, VENDOR_ITEM_REGULAR), - list("Wirecutters", round(scale * 4), /obj/item/tool/wirecutters, VENDOR_ITEM_REGULAR), - list("Wrench", round(scale * 4), /obj/item/tool/wrench, VENDOR_ITEM_REGULAR), - list("Multitool", round(scale * 4), /obj/item/device/multitool, VENDOR_ITEM_REGULAR), - list("ME3 Hand Welder", round(scale * 2), /obj/item/tool/weldingtool/simple, VENDOR_ITEM_REGULAR), + list("Blowtorch", floor(scale * 4), /obj/item/tool/weldingtool, VENDOR_ITEM_REGULAR), + list("Crowbar", floor(scale * 4), /obj/item/tool/crowbar, VENDOR_ITEM_REGULAR), + list("Screwdriver", floor(scale * 4), /obj/item/tool/screwdriver, VENDOR_ITEM_REGULAR), + list("Wirecutters", floor(scale * 4), /obj/item/tool/wirecutters, VENDOR_ITEM_REGULAR), + list("Wrench", floor(scale * 4), /obj/item/tool/wrench, VENDOR_ITEM_REGULAR), + list("Multitool", floor(scale * 4), /obj/item/device/multitool, VENDOR_ITEM_REGULAR), + list("ME3 Hand Welder", floor(scale * 2), /obj/item/tool/weldingtool/simple, VENDOR_ITEM_REGULAR), list("UTILITY", -1, null, null), list("Sentry Gun Network Laptop", 4, /obj/item/device/sentry_computer, VENDOR_ITEM_REGULAR), @@ -89,7 +89,13 @@ list("Supply Ordering Console", 2, /obj/item/circuitboard/computer/ordercomp, VENDOR_ITEM_REGULAR), list("Research Data Terminal", 2, /obj/item/circuitboard/computer/research_terminal, VENDOR_ITEM_REGULAR), list("P.A.C.M.A.N Generator", 1, /obj/item/circuitboard/machine/pacman, VENDOR_ITEM_REGULAR), - list("Auxiliar Power Storage Unit", 2, /obj/item/circuitboard/machine/ghettosmes, VENDOR_ITEM_REGULAR), + list("Auxiliary Power Storage Unit", 2, /obj/item/circuitboard/machine/ghettosmes, VENDOR_ITEM_REGULAR), + list("Air Alarm Electronics", 2, /obj/item/circuitboard/airalarm, VENDOR_ITEM_REGULAR), + list("Security Camera Monitor", 2, /obj/item/circuitboard/computer/cameras, VENDOR_ITEM_REGULAR), + list("Television Set", 4, /obj/item/circuitboard/computer/cameras/tv, VENDOR_ITEM_REGULAR), + list("Station Alerts", 2, /obj/item/circuitboard/computer/stationalert, VENDOR_ITEM_REGULAR), + list("Arcade", 2, /obj/item/circuitboard/computer/arcade, VENDOR_ITEM_REGULAR), + list("Atmospheric Monitor", 2, /obj/item/circuitboard/computer/air_management, VENDOR_ITEM_REGULAR), ) /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag @@ -104,16 +110,16 @@ /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/populate_product_list(scale) listed_products = list( list("TOOLS", -1, null, null), - list("Cable Coil", round(scale * 3), /obj/item/stack/cable_coil/random, VENDOR_ITEM_REGULAR), - list("Multitool", round(scale * 2), /obj/item/device/multitool, VENDOR_ITEM_REGULAR), + list("Cable Coil", floor(scale * 3), /obj/item/stack/cable_coil/random, VENDOR_ITEM_REGULAR), + list("Multitool", floor(scale * 2), /obj/item/device/multitool, VENDOR_ITEM_REGULAR), list("CIRCUITBOARDS", -1, null, null), - list("Airlock Circuit Board", round(scale * 4), /obj/item/circuitboard/airlock, VENDOR_ITEM_REGULAR), - list("APC Circuit Board", round(scale * 4), /obj/item/circuitboard/apc, VENDOR_ITEM_REGULAR), + list("Airlock Circuit Board", floor(scale * 4), /obj/item/circuitboard/airlock, VENDOR_ITEM_REGULAR), + list("APC Circuit Board", floor(scale * 4), /obj/item/circuitboard/apc, VENDOR_ITEM_REGULAR), list("BATTERIES", -1, null, null), - list("High-Capacity Power Cell", round(scale * 3), /obj/item/cell/high, VENDOR_ITEM_REGULAR), - list("Low-Capacity Power Cell", round(scale * 7), /obj/item/cell, VENDOR_ITEM_REGULAR), + list("High-Capacity Power Cell", floor(scale * 3), /obj/item/cell/high, VENDOR_ITEM_REGULAR), + list("Low-Capacity Power Cell", floor(scale * 7), /obj/item/cell, VENDOR_ITEM_REGULAR), ) /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag @@ -128,22 +134,22 @@ /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/populate_product_list(scale) listed_products = list( list("ASSEMBLY COMPONENTS", -1, null, null), - list("Igniter", round(scale * 8), /obj/item/device/assembly/igniter, VENDOR_ITEM_REGULAR), - list("Timer", round(scale * 4), /obj/item/device/assembly/timer, VENDOR_ITEM_REGULAR), - list("Proximity Sensor", round(scale * 4), /obj/item/device/assembly/prox_sensor, VENDOR_ITEM_REGULAR), - list("Signaller", round(scale * 4), /obj/item/device/assembly/signaller, VENDOR_ITEM_REGULAR), + list("Igniter", floor(scale * 8), /obj/item/device/assembly/igniter, VENDOR_ITEM_REGULAR), + list("Timer", floor(scale * 4), /obj/item/device/assembly/timer, VENDOR_ITEM_REGULAR), + list("Proximity Sensor", floor(scale * 4), /obj/item/device/assembly/prox_sensor, VENDOR_ITEM_REGULAR), + list("Signaller", floor(scale * 4), /obj/item/device/assembly/signaller, VENDOR_ITEM_REGULAR), list("CONTAINERS", -1, null, null), - list("Bucket", round(scale * 6), /obj/item/reagent_container/glass/bucket, VENDOR_ITEM_REGULAR), - list("Mop Bucket", round(scale * 2), /obj/item/reagent_container/glass/bucket/mopbucket, VENDOR_ITEM_REGULAR), + list("Bucket", floor(scale * 6), /obj/item/reagent_container/glass/bucket, VENDOR_ITEM_REGULAR), + list("Mop Bucket", floor(scale * 2), /obj/item/reagent_container/glass/bucket/mopbucket, VENDOR_ITEM_REGULAR), list("STOCK PARTS", -1, null, null), - list("Console Screen", round(scale * 4), /obj/item/stock_parts/console_screen, VENDOR_ITEM_REGULAR), - list("Matter Bin", round(scale * 4), /obj/item/stock_parts/matter_bin, VENDOR_ITEM_REGULAR), - list("Micro Laser", round(scale * 4), /obj/item/stock_parts/micro_laser , VENDOR_ITEM_REGULAR), - list("Micro Manipulator", round(scale * 4), /obj/item/stock_parts/manipulator, VENDOR_ITEM_REGULAR), - list("Scanning Module", round(scale * 4), /obj/item/stock_parts/scanning_module, VENDOR_ITEM_REGULAR), - list("Capacitor", round(scale * 3), /obj/item/stock_parts/capacitor, VENDOR_ITEM_REGULAR) + list("Console Screen", floor(scale * 4), /obj/item/stock_parts/console_screen, VENDOR_ITEM_REGULAR), + list("Matter Bin", floor(scale * 4), /obj/item/stock_parts/matter_bin, VENDOR_ITEM_REGULAR), + list("Micro Laser", floor(scale * 4), /obj/item/stock_parts/micro_laser , VENDOR_ITEM_REGULAR), + list("Micro Manipulator", floor(scale * 4), /obj/item/stock_parts/manipulator, VENDOR_ITEM_REGULAR), + list("Scanning Module", floor(scale * 4), /obj/item/stock_parts/scanning_module, VENDOR_ITEM_REGULAR), + list("Capacitor", floor(scale * 3), /obj/item/stock_parts/capacitor, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag @@ -166,11 +172,11 @@ list("Scientist's Jumpsuit", 2, /obj/item/clothing/under/rank/scientist, VENDOR_ITEM_REGULAR), list("ASSEMBLY COMPONENTS", -1, null, null), - list("Igniter", round(scale * 8), /obj/item/device/assembly/igniter, VENDOR_ITEM_REGULAR), - list("Proximity Sensor", round(scale * 4), /obj/item/device/assembly/prox_sensor, VENDOR_ITEM_REGULAR), - list("Signaller", round(scale * 4), /obj/item/device/assembly/signaller, VENDOR_ITEM_REGULAR), - list("Tank Transfer Valve", round(scale * 4), /obj/item/device/transfer_valve, VENDOR_ITEM_REGULAR), - list("Timer", round(scale * 4), /obj/item/device/assembly/timer, VENDOR_ITEM_REGULAR), + list("Igniter", floor(scale * 8), /obj/item/device/assembly/igniter, VENDOR_ITEM_REGULAR), + list("Proximity Sensor", floor(scale * 4), /obj/item/device/assembly/prox_sensor, VENDOR_ITEM_REGULAR), + list("Signaller", floor(scale * 4), /obj/item/device/assembly/signaller, VENDOR_ITEM_REGULAR), + list("Tank Transfer Valve", floor(scale * 4), /obj/item/device/transfer_valve, VENDOR_ITEM_REGULAR), + list("Timer", floor(scale * 4), /obj/item/device/assembly/timer, VENDOR_ITEM_REGULAR), ) /obj/structure/machinery/cm_vending/sorted/tech/robotics diff --git a/code/game/machinery/vending/vendor_types/food.dm b/code/game/machinery/vending/vendor_types/food.dm index 51749ab2a0..62ed512472 100644 --- a/code/game/machinery/vending/vendor_types/food.dm +++ b/code/game/machinery/vending/vendor_types/food.dm @@ -25,6 +25,27 @@ list("W-Y Flask", 5, /obj/item/reagent_container/food/drinks/flask/weylandyutani, VENDOR_ITEM_REGULAR) ) +/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial + hackable = FALSE + wrenchable = FALSE + req_access = list(ACCESS_TUTORIAL_LOCKED) + +/obj/structure/machinery/cm_vending/sorted/marine_food/tutorial/populate_product_list(scale) + listed_products = list( + list("PREPARED MEALS", -1, null, null), + list("USCM Prepared Meal (Chicken)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal5, VENDOR_ITEM_REGULAR), + list("USCM Prepared Meal (Cornbread)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal1, VENDOR_ITEM_REGULAR), + list("USCM Prepared Meal (Pasta)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal3, VENDOR_ITEM_REGULAR), + list("USCM Prepared Meal (Pizza)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal4, VENDOR_ITEM_REGULAR), + list("USCM Prepared Meal (Pork)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal2, VENDOR_ITEM_REGULAR), + list("USCM Prepared Meal (Tofu)", 0, /obj/item/reagent_container/food/snacks/mre_pack/meal6, VENDOR_ITEM_REGULAR), + list("USCM Protein Bar", 1, /obj/item/reagent_container/food/snacks/protein_pack, VENDOR_ITEM_RECOMMENDED), + list("FLASKS", -1, null, null), + list("Canteen", 0, /obj/item/reagent_container/food/drinks/flask/canteen, VENDOR_ITEM_REGULAR), + list("Metal Flask", 0, /obj/item/reagent_container/food/drinks/flask, VENDOR_ITEM_REGULAR), + list("USCM Flask", 0, /obj/item/reagent_container/food/drinks/flask/marine, VENDOR_ITEM_REGULAR), + list("W-Y Flask", 0, /obj/item/reagent_container/food/drinks/flask/weylandyutani, VENDOR_ITEM_REGULAR) + ) //------------BOOZE-O-MAT VENDOR--------------- /obj/structure/machinery/cm_vending/sorted/boozeomat @@ -38,8 +59,8 @@ unslashable = FALSE wrenchable = TRUE -/obj/structure/machinery/cm_vending/sorted/boozeomat/get_listed_products(mob/user) - return list( +/obj/structure/machinery/cm_vending/sorted/boozeomat/populate_product_list(scale) + listed_products = list( list("ALCOHOL", -1, null, null), list("Ale", 6, /obj/item/reagent_container/food/drinks/cans/ale, VENDOR_ITEM_REGULAR), list("Beer", 6, /obj/item/reagent_container/food/drinks/cans/beer, VENDOR_ITEM_REGULAR), @@ -97,8 +118,8 @@ unslashable = FALSE wrenchable = TRUE -/obj/structure/machinery/cm_vending/sorted/boozeomat/chess/get_listed_products(mob/user) - return list( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess/populate_product_list(scale) + listed_products = list( list("White Pieces", -1, null, null), list("Pawn", 2, /obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, VENDOR_ITEM_REGULAR), list("Bishop", 2, /obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/medical.dm b/code/game/machinery/vending/vendor_types/medical.dm index 52d4e98396..e73add9046 100644 --- a/code/game/machinery/vending/vendor_types/medical.dm +++ b/code/game/machinery/vending/vendor_types/medical.dm @@ -1,10 +1,223 @@ -//------------SORTED MEDICAL VENDORS--------------- +//------------SUPPLY LINK FOR MEDICAL VENDORS------------ + +/obj/structure/medical_supply_link + name = "medilink supply port" + desc = "A complex network of pipes and machinery, linking to large storage systems below the deck. Medical vendors linked to this port will be able to infinitely restock supplies." + icon = 'icons/effects/warning_stripes.dmi' + icon_state = "medlink_unclamped" + var/base_state = "medlink" + plane = FLOOR_PLANE + layer = ABOVE_TURF_LAYER //It's the floor, man + + anchored = TRUE + density = FALSE + unslashable = TRUE + unacidable = TRUE + +/obj/structure/medical_supply_link/ex_act(severity, direction) + return FALSE + +/obj/structure/medical_supply_link/Initialize() + . = ..() + RegisterSignal(src, COMSIG_STRUCTURE_WRENCHED, PROC_REF(do_clamp_animation)) + RegisterSignal(src, COMSIG_STRUCTURE_UNWRENCHED, PROC_REF(do_unclamp_animation)) + update_icon() + +/// Performs the clamping animation when a structure is anchored in our loc +/obj/structure/medical_supply_link/proc/do_clamp_animation() + SIGNAL_HANDLER + flick("[base_state]_clamping", src) + addtimer(CALLBACK(src, PROC_REF(update_icon), 2.6 SECONDS)) + update_icon() + +/// Performs the unclamping animation when a structure is unanchored in our loc +/obj/structure/medical_supply_link/proc/do_unclamp_animation() + SIGNAL_HANDLER + flick("[base_state]_unclamping", src) + addtimer(CALLBACK(src, PROC_REF(update_icon), 2.6 SECONDS)) + update_icon() + +/obj/structure/medical_supply_link/update_icon() + var/obj/structure/machinery/cm_vending/sorted/medical/vendor = locate() in loc + if(vendor && vendor.anchored) + icon_state = "[base_state]_clamped" + else + icon_state = "[base_state]_unclamped" + +/obj/structure/medical_supply_link/green + icon_state = "medlink_green_unclamped" + base_state = "medlink_green" + + +//------------RESTOCK CARTS FOR MEDICAL VENDORS------------ + +/obj/structure/restock_cart + name = "restock cart" + desc = "A rather heavy cart filled with various supplies to restock a vendor with." + icon = 'icons/obj/objects.dmi' + icon_state = "tank_normal" // Temporary + var/overlay_color = rgb(252, 186, 3) // Temporary + + density = TRUE + anchored = FALSE + drag_delay = 2 + health = 100 // Can be destroyed in 2-4 slashes. + unslashable = FALSE + + ///The quantity of things this can restock + var/supplies_remaining = 20 + ///The max quantity of things this can restock + var/supplies_max = 20 + ///The descriptor for the kind of things being restocked + var/supply_descriptor = "supplies" + ///The sound to play when attacked + var/attacked_sound = 'sound/effects/metalhit.ogg' + ///The sound to play when destroyed + var/destroyed_sound = 'sound/effects/metalhit.ogg' + ///Random loot to spawn if destroyed as assoc list of type_path = max_quantity + var/list/destroyed_loot = list( + /obj/item/stack/sheet/metal = 2 + ) + +/obj/structure/restock_cart/medical + name = "\improper Wey-Yu restock cart" + desc = "A rather heavy cart filled with various supplies to restock a vendor with. Provided by Wey-Yu Pharmaceuticals Division(TM)." + icon = 'icons/obj/objects.dmi' + icon_state = "tank_normal" // Temporary + + supplies_remaining = 20 + supplies_max = 20 + supply_descriptor = "sets of medical supplies" + destroyed_loot = list( + /obj/item/stack/medical/advanced/ointment = 3, + /obj/item/stack/medical/advanced/bruise_pack = 2, + /obj/item/stack/medical/ointment = 3, + /obj/item/stack/medical/bruise_pack = 2, + /obj/item/stack/medical/splint = 2, + /obj/item/device/healthanalyzer = 1, + ) + +/obj/structure/restock_cart/medical/reagent + name = "\improper Wey-Yu reagent restock cart" + desc = "A rather heavy cart filled with various reagents to restock a vendor with. Provided by Wey-Yu Pharmaceuticals Division(TM)." + icon_state = "tank_normal" // Temporary + overlay_color = rgb(252, 115, 3) // Temporary + + supplies_remaining = 1200 + supplies_max = 1200 + supply_descriptor = "units of medical reagents" + destroyed_sound = 'sound/effects/slosh.ogg' + destroyed_loot = list() + +/obj/structure/restock_cart/Initialize(mapload, ...) + . = ..() + supplies_remaining = min(supplies_remaining, supplies_max) + update_icon() + +/obj/structure/restock_cart/update_icon() + . = ..() + var/image/overlay_image = image(icon, icon_state = "tn_color") // Temporary + overlay_image.color = overlay_color + overlays += overlay_image + +/obj/structure/restock_cart/get_examine_text(mob/user) + . = ..() + if(get_dist(user, src) > 2 && user != loc) + return + . += SPAN_NOTICE("It contains:") + if(supplies_remaining) + . += SPAN_NOTICE(" [supplies_remaining] [supply_descriptor].") + else + . += SPAN_NOTICE(" Nothing.") + +/obj/structure/restock_cart/deconstruct(disassembled) + if(!disassembled) + playsound(loc, destroyed_sound, 35, 1) + visible_message(SPAN_NOTICE("[src] falls apart as its contents spill everywhere!")) + + // Assumption: supplies_max is > 0 + if(supplies_remaining > 0 && length(destroyed_loot)) + var/spawned_any = FALSE + var/probability = (supplies_remaining / supplies_max) * 100 + for(var/type_path in destroyed_loot) + if(prob(probability)) + for(var/amount in 1 to rand(1, destroyed_loot[type_path])) + new type_path(loc) + spawned_any = TRUE + if(!spawned_any) // It wasn't empty so atleast drop something + var/type_path = pick(destroyed_loot) + for(var/amount in 1 to rand(1, destroyed_loot[type_path])) + new type_path(loc) + + return ..() + +/obj/structure/restock_cart/attackby(obj/item/W, mob/user) + if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) + if(user.action_busy) + return + playsound(src, 'sound/items/Ratchet.ogg', 25, 1) + user.visible_message(SPAN_NOTICE("[user] starts to deconstruct [src]."), \ + SPAN_NOTICE("You start deconstructing [src].")) + if(!do_after(user, 5 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return + user.visible_message(SPAN_NOTICE("[user] deconstructs [src]."), \ + SPAN_NOTICE("You deconstruct [src].")) + playsound(src, 'sound/items/Crowbar.ogg', 25, 1) + new /obj/item/stack/sheet/metal(loc) + if(supplies_remaining) + msg_admin_niche("[key_name(user)] deconstructed [src] with [supplies_remaining] [supply_descriptor] remaining in [get_area(src)] [ADMIN_JMP(loc)]", loc.x, loc.y, loc.z) + deconstruct(TRUE) + return + + return ..() + +/obj/structure/restock_cart/proc/healthcheck(mob/user) + if(health <= 0) + if(supplies_remaining && ishuman(user)) + msg_admin_niche("[key_name(user)] destroyed [src] with [supplies_remaining] [supply_descriptor] remaining in [get_area(src)] [ADMIN_JMP(loc)]", loc.x, loc.y, loc.z) + deconstruct(FALSE) + +/obj/structure/restock_cart/bullet_act(obj/projectile/Proj) + health -= Proj.damage + playsound(src, attacked_sound, 25, 1) + healthcheck(Proj.firer) + return TRUE + +/obj/structure/restock_cart/attack_alien(mob/living/carbon/xenomorph/user) + if(unslashable) + return XENO_NO_DELAY_ACTION + user.animation_attack_on(src) + health -= (rand(user.melee_damage_lower, user.melee_damage_upper)) + playsound(src, attacked_sound, 25, 1) + user.visible_message(SPAN_DANGER("[user] slashes [src]!"), \ + SPAN_DANGER("You slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + healthcheck(user) + return XENO_ATTACK_ACTION + +/obj/structure/restock_cart/ex_act(severity) + if(indestructible) + return + + switch(severity) + if(0 to EXPLOSION_THRESHOLD_LOW) + if(prob(5)) + deconstruct(FALSE) + return + if(EXPLOSION_THRESHOLD_LOW to EXPLOSION_THRESHOLD_MEDIUM) + if(prob(50)) + deconstruct(FALSE) + return + if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) + deconstruct(FALSE) + return + +//------------SORTED MEDICAL VENDORS------------ /obj/structure/machinery/cm_vending/sorted/medical name = "\improper Wey-Med Plus" - desc = "Medical Pharmaceutical dispenser. Provided by Wey-Yu Pharmaceuticals Division(TM)." + desc = "Medical pharmaceutical dispenser. Provided by Wey-Yu Pharmaceuticals Division(TM)." icon_state = "med" - req_access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY) + req_access = list(ACCESS_MARINE_MEDBAY) unacidable = TRUE unslashable = FALSE @@ -14,9 +227,18 @@ vendor_theme = VENDOR_THEME_COMPANY vend_delay = 0.5 SECONDS - var/datum/health_scan/last_health_display + /// Whether the vendor can use a medlink to be able to resupply automatically + var/allow_supply_link_restock = TRUE + /// Whether this vendor supports health scanning the user via mouse drop var/healthscan = TRUE + var/datum/health_scan/last_health_display + + /// The starting volume of the chem refill tank + var/chem_refill_volume = 600 + /// The maximum volume of the chem refill tank + var/chem_refill_volume_max = 600 + /// A list of item types that allow reagent refilling var/list/chem_refill = list( /obj/item/reagent_container/hypospray/autoinjector/bicaridine, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, @@ -26,6 +248,7 @@ /obj/item/reagent_container/hypospray/autoinjector/oxycodone, /obj/item/reagent_container/hypospray/autoinjector/tramadol, /obj/item/reagent_container/hypospray/autoinjector/tricord, + /obj/item/reagent_container/hypospray/autoinjector/skillless, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, @@ -42,14 +265,7 @@ /obj/item/reagent_container/glass/bottle/oxycodone, /obj/item/reagent_container/glass/bottle/peridaxon, /obj/item/reagent_container/glass/bottle/tramadol, - ) - var/list/stack_refill = list( - /obj/item/stack/medical/advanced/ointment, - /obj/item/stack/medical/advanced/bruise_pack, - /obj/item/stack/medical/ointment, - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/splint - ) + ) /obj/structure/machinery/cm_vending/sorted/medical/Destroy() QDEL_NULL(last_health_display) @@ -58,10 +274,124 @@ /obj/structure/machinery/cm_vending/sorted/medical/get_examine_text(mob/living/carbon/human/user) . = ..() if(healthscan) - . += SPAN_NOTICE("The [src.name] offers assisted medical scan, for ease of usage with minimal training. Present the target in front of the scanner to scan.") + . += SPAN_NOTICE("[src] offers assisted medical scans, for ease of use with minimal training. Present the target in front of the scanner to scan.") + +/obj/structure/machinery/cm_vending/sorted/medical/ui_data(mob/user) + . = ..() + if(LAZYLEN(chem_refill)) + .["reagents"] = chem_refill_volume + .["reagents_max"] = chem_refill_volume_max + +/// checks if there is a supply link in our location and we are anchored to it +/obj/structure/machinery/cm_vending/sorted/medical/proc/get_supply_link() + /* + if(!anchored) + return FALSE + var/obj/structure/medical_supply_link/linkpoint = locate() in loc + if(!linkpoint) + return FALSE + */ + return TRUE + +/obj/structure/machinery/cm_vending/sorted/medical/additional_restock_checks(obj/item/item_to_stock, mob/user, list/vendspec) + var/dynamic_metadata = dynamic_stock_multipliers[vendspec] + if(dynamic_metadata) + if(vendspec[2] >= dynamic_metadata[2] && (!allow_supply_link_restock || !get_supply_link())) + if(!istype(item_to_stock, /obj/item/stack)) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE + var/obj/item/stack/item_stack = item_to_stock + if(partial_product_stacks[item_to_stock.type] == 0) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE // No partial stack to fill + if((partial_product_stacks[item_to_stock.type] + item_stack.amount) > item_stack.max_amount) + to_chat(user, SPAN_WARNING("[src] is already full of [vendspec[1]]!")) + return FALSE // Exceeds partial stack to fill + else + stack_trace("[src] could not find dynamic_stock_multipliers for [vendspec[1]]!") + + if(istype(item_to_stock, /obj/item/reagent_container)) + if(istype(item_to_stock, /obj/item/reagent_container/syringe) || istype(item_to_stock, /obj/item/reagent_container/dropper)) + var/obj/item/reagent_container/container = item_to_stock + if(container.reagents.total_volume != 0) + to_chat(user, SPAN_WARNING("[item_to_stock] needs to be empty to restock it!")) + return FALSE + else + return try_deduct_chem(item_to_stock, user) + + return TRUE + +/// Attempts to consume our reagents needed for the container (doesn't actually change the container) +/// Will return TRUE if reagents were deducated or no reagents were needed +/obj/structure/machinery/cm_vending/sorted/medical/proc/try_deduct_chem(obj/item/reagent_container/container, mob/user) + var/missing_reagents = container.reagents.maximum_volume - container.reagents.total_volume + if(missing_reagents <= 0) + return TRUE + if(!LAZYLEN(chem_refill) || !(container.type in chem_refill)) + if(container.reagents.total_volume == initial(container.reagents.total_volume)) + return TRUE + to_chat(user, SPAN_WARNING("[src] cannot refill [container].")) + return FALSE + if(chem_refill_volume < missing_reagents) + var/auto_refill = allow_supply_link_restock && get_supply_link() + to_chat(user, SPAN_WARNING("[src] blinks red and makes a buzzing noise as it rejects [container]. Looks like it doesn't have enough reagents [auto_refill ? "yet" : "left"].")) + playsound(src, 'sound/machines/buzz-sigh.ogg', 15, TRUE) + return FALSE + + chem_refill_volume -= missing_reagents + to_chat(user, SPAN_NOTICE("[src] makes a whirring noise as it refills your [container.name].")) + playsound(src, 'sound/effects/refill.ogg', 10, 1, 3) + return TRUE + +/// Performs automatic restocking via medical cart - will set being_restocked true during the action +/obj/structure/machinery/cm_vending/sorted/medical/proc/cart_restock(obj/structure/restock_cart/medical/cart, mob/user) + if(cart.supplies_remaining <= 0) + to_chat(user, SPAN_WARNING("[cart] is empty!")) + return + if(being_restocked) + to_chat(user, SPAN_WARNING("[src] is already being restocked, you will get in the way!")) + return + + var/restocking_reagents = istype(cart, /obj/structure/restock_cart/medical/reagent) + if(restocking_reagents && !LAZYLEN(chem_refill)) + to_chat(user, SPAN_WARNING("[src] doesn't use [cart.supply_descriptor]!")) + return + + user.visible_message(SPAN_NOTICE("[user] starts stocking [cart.supply_descriptor] supplies into [src]."), \ + SPAN_NOTICE("You start stocking [cart.supply_descriptor] into [src].")) + being_restocked = TRUE + + while(cart.supplies_remaining > 0) + if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC, src)) + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] stopped stocking [src] with [cart.supply_descriptor]."), \ + SPAN_NOTICE("You stop stocking [src] with [cart.supply_descriptor].")) + return + if(QDELETED(cart) || get_dist(user, cart) > 1) + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] stopped stocking [src] with [cart.supply_descriptor]."), \ + SPAN_NOTICE("You stop stocking [src] with [cart.supply_descriptor].")) + return + + if(restocking_reagents) + var/reagent_added = restock_reagents(min(cart.supplies_remaining, 100)) + if(reagent_added <= 0 || chem_refill_volume == chem_refill_volume_max) + break // All done + cart.supplies_remaining -= reagent_added + else + if(!restock_supplies(prob_to_skip = 0, can_remove = FALSE)) + break // All done + cart.supplies_remaining-- + + being_restocked = FALSE + user.visible_message(SPAN_NOTICE("[user] finishes stocking [src] with [cart.supply_descriptor]."), \ + SPAN_NOTICE("You finish stocking [src] with [cart.supply_descriptor].")) /obj/structure/machinery/cm_vending/sorted/medical/attackby(obj/item/I, mob/user) - if(stat == WORKING && LAZYLEN(chem_refill) && (istype(I, /obj/item/reagent_container/hypospray/autoinjector) || istype(I, /obj/item/reagent_container/glass/bottle))) // only if we are completely fine and working + if(stat != WORKING) + return ..() + + if(istype(I, /obj/item/reagent_container)) if(!hacked) if(!allowed(user)) to_chat(user, SPAN_WARNING("Access denied.")) @@ -71,44 +401,37 @@ to_chat(user, SPAN_WARNING("This machine isn't for you.")) return - var/obj/item/reagent_container/C = I - if(!(C.type in chem_refill)) - to_chat(user, SPAN_WARNING("[src] cannot refill the [C.name].")) + var/obj/item/reagent_container/container = I + if(istype(I, /obj/item/reagent_container/syringe) || istype(I, /obj/item/reagent_container/dropper)) + if(!stock(container, user)) + return ..() return - if(C.reagents.total_volume == C.reagents.maximum_volume) - to_chat(user, SPAN_WARNING("[src] makes a warning noise. The [C.name] is currently full.")) + if(container.reagents.total_volume == container.reagents.maximum_volume) + if(!stock(container, user)) + return ..() return - to_chat(user, SPAN_NOTICE("[src] makes a whirring noise as it refills your [C.name].")) + if(!try_deduct_chem(container, user)) + return ..() + // Since the reagent is deleted on use it's easier to make a new one instead of snowflake checking - var/obj/item/reagent_container/new_container = new C.type(src) - qdel(C) + var/obj/item/reagent_container/new_container = new container.type(src) + qdel(container) user.put_in_hands(new_container) - else if(stat == WORKING && LAZYLEN(stack_refill) && (istype(I, /obj/item/stack))) - if(!hacked) - if(!allowed(user)) - to_chat(user, SPAN_WARNING("Access denied.")) - return - - if(LAZYLEN(vendor_role) && !vendor_role.Find(user.job)) - to_chat(user, SPAN_WARNING("This machine isn't for you.")) - return + return - var/obj/item/stack/S = I - if(!(S.type in stack_refill)) - to_chat(user, SPAN_WARNING("[src] cannot restock the [S.name].")) + if(ishuman(user) && istype(I, /obj/item/grab)) + var/obj/item/grab/grabbed = I + if(istype(grabbed.grabbed_thing, /obj/structure/restock_cart/medical)) + cart_restock(grabbed.grabbed_thing, user) return - if(S.amount == S.max_amount) - to_chat(user, SPAN_WARNING("[src] makes a warning noise. The [S.name] is currently fully stacked.")) + if(hacked || (allowed(user) && (!LAZYLEN(vendor_role) || vendor_role.Find(user.job)))) + if(stock(I, user)) return - to_chat(user, SPAN_NOTICE("[src] makes a whirring noise as it restocks your [S.name].")) - S.amount = S.max_amount - S.update_icon() - else - . = ..() + return ..() /obj/structure/machinery/cm_vending/sorted/medical/MouseDrop(obj/over_object as obj) if(stat == WORKING && over_object == usr && CAN_PICKUP(usr, src)) @@ -118,7 +441,7 @@ return if(!healthscan) - to_chat(user, SPAN_WARNING("\The [src] does not have health scanning function.")) + to_chat(user, SPAN_WARNING("[src] does not have health scanning function.")) return if (!last_health_display) @@ -129,60 +452,180 @@ last_health_display.look_at(user, DETAIL_LEVEL_HEALTHANALYSER, bypass_checks = TRUE) return +/obj/structure/machinery/cm_vending/sorted/medical/MouseDrop_T(atom/movable/A, mob/user) + if(inoperable()) + return + if(user.stat || user.is_mob_restrained()) + return + if(get_dist(user, src) > 1 || get_dist(user, A) > 1) // More lenient + return + if(!ishuman(user)) + return + + if(istype(A, /obj/structure/restock_cart/medical)) + cart_restock(A, user) + return + + return ..() + /obj/structure/machinery/cm_vending/sorted/medical/populate_product_list(scale) listed_products = list( list("FIELD SUPPLIES", -1, null, null), - list("Burn Kit", round(scale * 7), /obj/item/stack/medical/advanced/ointment, VENDOR_ITEM_REGULAR), - list("Trauma Kit", round(scale * 7), /obj/item/stack/medical/advanced/bruise_pack, VENDOR_ITEM_REGULAR), - list("Ointment", round(scale * 7), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), - list("Roll of Gauze", round(scale * 7), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), - list("Splints", round(scale * 7), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), + list("Burn Kit", floor(scale * 10), /obj/item/stack/medical/advanced/ointment, VENDOR_ITEM_REGULAR), + list("Trauma Kit", floor(scale * 10), /obj/item/stack/medical/advanced/bruise_pack, VENDOR_ITEM_REGULAR), + list("Ointment", floor(scale * 10), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Roll of Gauze", floor(scale * 10), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Splints", floor(scale * 10), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), list("AUTOINJECTORS", -1, null, null), - list("Autoinjector (Bicaridine)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), - list("Autoinjector (Dexalin+)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), - list("Autoinjector (Inaprovaline)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), - list("Autoinjector (Kelotane)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), - list("Autoinjector (Oxycodone)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tramadol)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tricord)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), + list("Autoinjector (Bicaridine)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), + list("Autoinjector (Dexalin+)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), + list("Autoinjector (Inaprovaline)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), + list("Autoinjector (Kelotane)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), + list("Autoinjector (Oxycodone)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tramadol)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tricord)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), list("LIQUID BOTTLES", -1, null, null), - list("Bottle (Bicaridine)", round(scale * 5), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), - list("Bottle (Dylovene)", round(scale * 5), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), - list("Bottle (Dexalin)", round(scale * 5), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), - list("Bottle (Inaprovaline)", round(scale * 5), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), - list("Bottle (Kelotane)", round(scale * 5), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), - list("Bottle (Oxycodone)", round(scale * 5), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), - list("Bottle (Peridaxon)", round(scale * 5), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), - list("Bottle (Tramadol)", round(scale * 5), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), + list("Bottle (Bicaridine)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), + list("Bottle (Dylovene)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), + list("Bottle (Dexalin)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), + list("Bottle (Inaprovaline)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), + list("Bottle (Kelotane)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), + list("Bottle (Oxycodone)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), + list("Bottle (Peridaxon)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), + list("Bottle (Tramadol)", floor(scale * 3), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), list("PILL BOTTLES", -1, null, null), - list("Pill Bottle (Bicaridine)", round(scale * 3), /obj/item/storage/pill_bottle/bicaridine, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Dexalin)", round(scale * 3), /obj/item/storage/pill_bottle/dexalin, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Dylovene)", round(scale * 3), /obj/item/storage/pill_bottle/antitox, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Inaprovaline)", round(scale * 3), /obj/item/storage/pill_bottle/inaprovaline, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Kelotane)", round(scale * 3), /obj/item/storage/pill_bottle/kelotane, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Peridaxon)", round(scale * 2), /obj/item/storage/pill_bottle/peridaxon, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Tramadol)", round(scale * 3), /obj/item/storage/pill_bottle/tramadol, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Tricordazine)", round(scale * 3), /obj/item/storage/pill_bottle/tricord, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Bicaridine)", floor(scale * 4), /obj/item/storage/pill_bottle/bicaridine, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Dexalin)", floor(scale * 4), /obj/item/storage/pill_bottle/dexalin, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Dylovene)", floor(scale * 4), /obj/item/storage/pill_bottle/antitox, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Inaprovaline)", floor(scale * 4), /obj/item/storage/pill_bottle/inaprovaline, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Kelotane)", floor(scale * 4), /obj/item/storage/pill_bottle/kelotane, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Peridaxon)", floor(scale * 3), /obj/item/storage/pill_bottle/peridaxon, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Tramadol)", floor(scale * 4), /obj/item/storage/pill_bottle/tramadol, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Tricordazine)", floor(scale * 3), /obj/item/storage/pill_bottle/tricord, VENDOR_ITEM_REGULAR), list("MEDICAL UTILITIES", -1, null, null), - list("Surgical Line", round(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), - list("Synth-Graft", round(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), - list("Hypospray", round(scale * 2), /obj/item/reagent_container/hypospray/tricordrazine, VENDOR_ITEM_REGULAR), - list("Health Analyzer", round(scale * 5), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), - list("M276 Pattern Medical Storage Rig", round(scale * 2), /obj/item/storage/belt/medical, VENDOR_ITEM_REGULAR), - list("Medical HUD Glasses", round(scale * 3), /obj/item/clothing/glasses/hud/health, VENDOR_ITEM_REGULAR), - list("Syringe", round(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) + list("Surgical Line", floor(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), + list("Synth-Graft", floor(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), + list("Hypospray", floor(scale * 3), /obj/item/reagent_container/hypospray/tricordrazine, VENDOR_ITEM_REGULAR), + list("Health Analyzer", floor(scale * 5), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), + list("M276 Pattern Medical Storage Rig", floor(scale * 2), /obj/item/storage/belt/medical, VENDOR_ITEM_REGULAR), + list("Medical HUD Glasses", floor(scale * 3), /obj/item/clothing/glasses/hud/health, VENDOR_ITEM_REGULAR), + list("Syringe", floor(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) ) +/obj/structure/machinery/cm_vending/sorted/medical/populate_product_list_and_boxes(scale) + . = ..() + + // If this is groundside and isn't dynamically changing we will spawn with stock randomly removed from it + if(vend_flags & VEND_STOCK_DYNAMIC) + return + if(Check_WO()) + return + var/turf/location = get_turf(src) + if(location && is_ground_level(location.z)) + random_unstock() + +/obj/structure/machinery/cm_vending/sorted/medical/Initialize() + . = ..() + + // If this is a medlinked vendor (that needs a link) and isn't dynamically changing it will periodically restock itself + if(vend_flags & VEND_STOCK_DYNAMIC) + return + if(!allow_supply_link_restock) + return + if(!get_supply_link()) + return + START_PROCESSING(SSslowobj, src) + +/obj/structure/machinery/cm_vending/sorted/medical/toggle_anchored(obj/item/W, mob/user) + . = ..() + + // If the anchor state changed, this is a vendor that needs a link, and isn't dynamically changing, update whether we automatically restock + if(. && !(vend_flags & VEND_STOCK_DYNAMIC) && allow_supply_link_restock) + if(get_supply_link()) + START_PROCESSING(SSslowobj, src) + else + STOP_PROCESSING(SSslowobj, src) + +/obj/structure/machinery/cm_vending/sorted/medical/process() + if(!get_supply_link()) + STOP_PROCESSING(SSslowobj, src) + return // Somehow we lost our link + if(inoperable()) + return + if(world.time - SSticker.mode.round_time_lobby > 20 MINUTES) + restock_supplies() + restock_reagents() + +/// Randomly (based on prob_to_skip) adjusts all amounts of listed_products towards their desired values by 1 +/// Returns the quantity of items added +/obj/structure/machinery/cm_vending/sorted/medical/proc/restock_supplies(prob_to_skip = 80, can_remove = TRUE) + . = 0 + for(var/list/vendspec as anything in listed_products) + if(vendspec[2] < 0) + continue // It's a section title, not an actual entry + var/dynamic_metadata = dynamic_stock_multipliers[vendspec] + if(!dynamic_metadata) + stack_trace("[src] could not find dynamic_stock_multipliers for [vendspec[1]]!") + continue + var/cur_type = vendspec[3] + if(vendspec[2] == dynamic_metadata[2]) + if((cur_type in partial_product_stacks) && partial_product_stacks[cur_type] > 0) + partial_product_stacks[cur_type] = 0 + .++ + continue // Already at desired value + if(vendspec[2] > dynamic_metadata[2]) + if(can_remove) + vendspec[2]-- + if(cur_type in partial_product_stacks) + partial_product_stacks[cur_type] = 0 + if(vend_flags & VEND_LOAD_AMMO_BOXES) + update_derived_ammo_and_boxes(vendspec) + continue // Returned some items to the void + if(prob(prob_to_skip)) + continue // 20% chance to restock per entry by default + vendspec[2]++ + if(vend_flags & VEND_LOAD_AMMO_BOXES) + update_derived_ammo_and_boxes_on_add(vendspec) + .++ + +/// Refills reagents towards chem_refill_volume_max +/// Returns the quantity of reagents added +/obj/structure/machinery/cm_vending/sorted/medical/proc/restock_reagents(additional_volume = 125) + var/old_value = chem_refill_volume + chem_refill_volume = min(chem_refill_volume + additional_volume, chem_refill_volume_max) + return chem_refill_volume - old_value + +/// Randomly removes amounts of listed_products and reagents +/obj/structure/machinery/cm_vending/sorted/medical/proc/random_unstock() + // Random interval of 25 for reagents + chem_refill_volume = rand(0, chem_refill_volume_max * 0.04) * 25 + + for(var/list/vendspec as anything in listed_products) + var/amount = vendspec[2] + if(amount <= 0) + continue + + // Chance to just be empty + if(prob(25)) + vendspec[2] = 0 + continue + + // Otherwise its some amount between 1 and the original amount + vendspec[2] = rand(1, amount) + /obj/structure/machinery/cm_vending/sorted/medical/chemistry name = "\improper Wey-Chem Plus" desc = "Medical chemistry dispenser. Provided by Wey-Yu Pharmaceuticals Division(TM)." icon_state = "chem" - + req_access = list(ACCESS_MARINE_CHEMISTRY) healthscan = FALSE + + chem_refill_volume = 1200 + chem_refill_volume_max = 1200 chem_refill = list( /obj/item/reagent_container/glass/bottle/bicaridine, /obj/item/reagent_container/glass/bottle/antitoxin, @@ -193,31 +636,33 @@ /obj/item/reagent_container/glass/bottle/peridaxon, /obj/item/reagent_container/glass/bottle/tramadol, ) - stack_refill = null /obj/structure/machinery/cm_vending/sorted/medical/chemistry/populate_product_list(scale) listed_products = list( list("LIQUID BOTTLES", -1, null, null), - list("Bicaridine Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), - list("Dylovene Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), - list("Dexalin Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), - list("Inaprovaline Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), - list("Kelotane Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), - list("Oxycodone Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), - list("Peridaxon Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), - list("Tramadol Bottle", round(scale * 5), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), + list("Bicaridine Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), + list("Dylovene Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), + list("Dexalin Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), + list("Inaprovaline Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), + list("Kelotane Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), + list("Oxycodone Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), + list("Peridaxon Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), + list("Tramadol Bottle", floor(scale * 6), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), list("MISCELLANEOUS", -1, null, null), - list("Beaker (60 Units)", round(scale * 3), /obj/item/reagent_container/glass/beaker, VENDOR_ITEM_REGULAR), - list("Beaker, Large (120 Units)", round(scale * 3), /obj/item/reagent_container/glass/beaker/large, VENDOR_ITEM_REGULAR), - list("Box of Pill Bottles", round(scale * 2), /obj/item/storage/box/pillbottles, VENDOR_ITEM_REGULAR), - list("Dropper", round(scale * 3), /obj/item/reagent_container/dropper, VENDOR_ITEM_REGULAR), - list("Syringe", round(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) + list("Beaker (60 Units)", floor(scale * 3), /obj/item/reagent_container/glass/beaker, VENDOR_ITEM_REGULAR), + list("Beaker, Large (120 Units)", floor(scale * 3), /obj/item/reagent_container/glass/beaker/large, VENDOR_ITEM_REGULAR), + list("Box of Pill Bottles", floor(scale * 2), /obj/item/storage/box/pillbottles, VENDOR_ITEM_REGULAR), + list("Dropper", floor(scale * 3), /obj/item/reagent_container/dropper, VENDOR_ITEM_REGULAR), + list("Syringe", floor(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/medical/no_access req_access = list() +/obj/structure/machinery/cm_vending/sorted/medical/bolted + wrenchable = FALSE + /obj/structure/machinery/cm_vending/sorted/medical/no_access/upp name = "MinZdrav Plus" desc = "Medical Pharmaceutical dispenser. Provided by Ministry of Health of UPP." @@ -233,41 +678,41 @@ list("Splints", round(scale * 7), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), list("AUTOINJECTORS", -1, null, null), - list("Autoinjector (Bicaridine)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), - list("Autoinjector (Dexalin+)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), - list("Autoinjector (Inaprovaline)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), - list("Autoinjector (Kelotane)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), - list("Autoinjector (Oxycodone)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tramadol)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tricord)", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), + list("Autoinjector (Bicaridine)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), + list("Autoinjector (Dexalin+)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), + list("Autoinjector (Inaprovaline)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), + list("Autoinjector (Kelotane)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), + list("Autoinjector (Oxycodone)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tramadol)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tricord)", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), list("LIQUID BOTTLES", -1, null, null), - list("Bottle (Bicaridine)", round(scale * 5), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), - list("Bottle (Dylovene)", round(scale * 5), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), - list("Bottle (Dexalin)", round(scale * 5), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), - list("Bottle (Inaprovaline)", round(scale * 5), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), - list("Bottle (Kelotane)", round(scale * 5), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), - list("Bottle (Oxycodone)", round(scale * 5), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), - list("Bottle (Peridaxon)", round(scale * 5), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), - list("Bottle (Tramadol)", round(scale * 5), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), + list("Bottle (Bicaridine)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/bicaridine, VENDOR_ITEM_REGULAR), + list("Bottle (Dylovene)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/antitoxin, VENDOR_ITEM_REGULAR), + list("Bottle (Dexalin)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/dexalin, VENDOR_ITEM_REGULAR), + list("Bottle (Inaprovaline)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/inaprovaline, VENDOR_ITEM_REGULAR), + list("Bottle (Kelotane)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/kelotane, VENDOR_ITEM_REGULAR), + list("Bottle (Oxycodone)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/oxycodone, VENDOR_ITEM_REGULAR), + list("Bottle (Peridaxon)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/peridaxon, VENDOR_ITEM_REGULAR), + list("Bottle (Tramadol)", floor(scale * 5), /obj/item/reagent_container/glass/bottle/tramadol, VENDOR_ITEM_REGULAR), list("PILL BOTTLES", -1, null, null), - list("Pill Bottle (Bicaridine)", round(scale * 3), /obj/item/storage/pill_bottle/bicaridine, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Dexalin)", round(scale * 3), /obj/item/storage/pill_bottle/dexalin, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Dylovene)", round(scale * 3), /obj/item/storage/pill_bottle/antitox, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Inaprovaline)", round(scale * 3), /obj/item/storage/pill_bottle/inaprovaline, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Kelotane)", round(scale * 3), /obj/item/storage/pill_bottle/kelotane, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Peridaxon)", round(scale * 2), /obj/item/storage/pill_bottle/peridaxon, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Tramadol)", round(scale * 3), /obj/item/storage/pill_bottle/tramadol, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Bicaridine)", floor(scale * 3), /obj/item/storage/pill_bottle/bicaridine, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Dexalin)", floor(scale * 3), /obj/item/storage/pill_bottle/dexalin, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Dylovene)", floor(scale * 3), /obj/item/storage/pill_bottle/antitox, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Inaprovaline)", floor(scale * 3), /obj/item/storage/pill_bottle/inaprovaline, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Kelotane)", floor(scale * 3), /obj/item/storage/pill_bottle/kelotane, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Peridaxon)", floor(scale * 2), /obj/item/storage/pill_bottle/peridaxon, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Tramadol)", floor(scale * 3), /obj/item/storage/pill_bottle/tramadol, VENDOR_ITEM_REGULAR), list("MEDICAL UTILITIES", -1, null, null), - list("Surgical Line", round(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), - list("Synth-Graft", round(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), - list("Hypospray", round(scale * 2), /obj/item/reagent_container/hypospray/tricordrazine, VENDOR_ITEM_REGULAR), - list("Health Analyzer", round(scale * 5), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), - list("Type 41 Pattern Medical Storage Rig", round(scale * 2), /obj/item/storage/belt/medical/upp, VENDOR_ITEM_REGULAR), - list("Medical HUD Glasses", round(scale * 3), /obj/item/clothing/glasses/hud/health, VENDOR_ITEM_REGULAR), - list("Syringe", round(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) + list("Surgical Line", floor(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), + list("Synth-Graft", floor(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), + list("Hypospray", floor(scale * 2), /obj/item/reagent_container/hypospray/tricordrazine, VENDOR_ITEM_REGULAR), + list("Health Analyzer", floor(scale * 5), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), + list("Type 41 Pattern Medical Storage Rig", floor(scale * 2), /obj/item/storage/belt/medical/upp, VENDOR_ITEM_REGULAR), + list("Medical HUD Glasses", floor(scale * 3), /obj/item/clothing/glasses/hud/health, VENDOR_ITEM_REGULAR), + list("Syringe", floor(scale * 7), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access @@ -279,10 +724,11 @@ req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL) req_access = null vendor_theme = VENDOR_THEME_CLF + allow_supply_link_restock = FALSE /obj/structure/machinery/cm_vending/sorted/medical/marinemed name = "\improper ColMarTech MarineMed" - desc = "Medical Pharmaceutical dispenser with basic medical supplies for marines." + desc = "Medical pharmaceutical dispenser with basic medical supplies for marines." icon_state = "marinemed" req_access = list() req_one_access = list() @@ -292,26 +738,21 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, ) - stack_refill = list( - /obj/item/stack/medical/ointment, - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/splint, - ) /obj/structure/machinery/cm_vending/sorted/medical/marinemed/populate_product_list(scale) listed_products = list( list("AUTOINJECTORS", -1, null, null), - list("First-Aid Autoinjector", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), - list("Pain-Stop Autoinjector", round(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), + list("First-Aid Autoinjector", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), + list("Pain-Stop Autoinjector", floor(scale * 5), /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), list("DEVICES", -1, null, null), - list("Health Analyzer", round(scale * 3), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), + list("Health Analyzer", floor(scale * 3), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), list("FIELD SUPPLIES", -1, null, null), list("Fire Extinguisher (portable)", 5, /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR), - list("Ointment", round(scale * 7), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), - list("Roll of Gauze", round(scale * 7), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), - list("Splints", round(scale * 7), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR) + list("Ointment", floor(scale * 8), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Roll of Gauze", floor(scale * 8), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Splints", floor(scale * 8), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag @@ -320,63 +761,69 @@ req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL) req_access = null vendor_theme = VENDOR_THEME_CLF + allow_supply_link_restock = FALSE /obj/structure/machinery/cm_vending/sorted/medical/blood name = "\improper MM Blood Dispenser" - desc = "The Marine Med Brand Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!" //Don't update this year, the joke is it's old. + desc = "The MarineMed brand blood dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!" //Don't update this year, the joke is it's old. icon_state = "blood" wrenchable = TRUE hackable = TRUE + healthscan = FALSE + allow_supply_link_restock = FALSE + chem_refill = null + +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted + wrenchable = FALSE +/obj/structure/machinery/cm_vending/sorted/medical/blood/populate_product_list(scale) listed_products = list( list("BLOOD PACKS", -1, null, null), - list("A+ Blood Pack", 5, /obj/item/reagent_container/blood/APlus, VENDOR_ITEM_REGULAR), - list("A- Blood Pack", 5, /obj/item/reagent_container/blood/AMinus, VENDOR_ITEM_REGULAR), - list("B+ Blood Pack", 5, /obj/item/reagent_container/blood/BPlus, VENDOR_ITEM_REGULAR), - list("B- Blood Pack", 5, /obj/item/reagent_container/blood/BMinus, VENDOR_ITEM_REGULAR), - list("O+ Blood Pack", 5, /obj/item/reagent_container/blood/OPlus, VENDOR_ITEM_REGULAR), - list("O- Blood Pack", 5, /obj/item/reagent_container/blood/OMinus, VENDOR_ITEM_REGULAR), + list("A+ Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/APlus, VENDOR_ITEM_REGULAR), + list("A- Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/AMinus, VENDOR_ITEM_REGULAR), + list("B+ Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/BPlus, VENDOR_ITEM_REGULAR), + list("B- Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/BMinus, VENDOR_ITEM_REGULAR), + list("O+ Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/OPlus, VENDOR_ITEM_REGULAR), + list("O- Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood/OMinus, VENDOR_ITEM_REGULAR), list("MISCELLANEOUS", -1, null, null), - list("Empty Blood Pack", 5, /obj/item/reagent_container/blood, VENDOR_ITEM_REGULAR) + list("Empty Blood Pack", floor(scale * 5), /obj/item/reagent_container/blood, VENDOR_ITEM_REGULAR) ) - healthscan = FALSE - chem_refill = null - stack_refill = null - -/obj/structure/machinery/cm_vending/sorted/medical/blood/populate_product_list(scale) - return - /obj/structure/machinery/cm_vending/sorted/medical/blood/antag req_one_access = list(ACCESS_ILLEGAL_PIRATE, ACCESS_UPP_GENERAL, ACCESS_CLF_GENERAL) req_access = null vendor_theme = VENDOR_THEME_CLF + allow_supply_link_restock = FALSE + + +//------------WALL MED VENDORS------------ /obj/structure/machinery/cm_vending/sorted/medical/wall_med name = "\improper NanoMed" - desc = "Wall-mounted Medical Equipment Dispenser." + desc = "A wall-mounted medical equipment dispenser." icon_state = "wallmed" - vend_delay = 0.7 SECONDS - + appearance_flags = TILE_BOUND req_access = list() - density = FALSE wrenchable = FALSE + vend_delay = 0.7 SECONDS + allow_supply_link_restock = FALSE + listed_products = list( list("SUPPLIES", -1, null, null), - list("First-Aid Autoinjector", 1, /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), - list("Pain-Stop Autoinjector", 1, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), - list("Roll Of Gauze", 2, /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), - list("Ointment", 2, /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), - list("Medical Splints", 1, /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), + list("First-Aid Autoinjector", 2, /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), + list("Pain-Stop Autoinjector", 2, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), + list("Roll Of Gauze", 4, /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Ointment", 4, /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Medical Splints", 4, /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), list("UTILITY", -1, null, null), - list("HF2 Health Analyzer", 1, /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR) + list("HF2 Health Analyzer", 2, /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR) ) - appearance_flags = TILE_BOUND - + chem_refill_volume = 250 + chem_refill_volume_max = 250 chem_refill = list( /obj/item/reagent_container/hypospray/autoinjector/skillless, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, @@ -385,29 +832,27 @@ /obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless, /obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless, ) - stack_refill = list( - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/splint, - /obj/item/stack/medical/ointment, - ) /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited - desc = "Wall-mounted Medical Equipment Dispenser. This version is more limited than standard USCM NanoMeds." + desc = "A wall-mounted medical equipment dispenser. This version is more limited than standard USCM NanoMeds." + chem_refill_volume = 150 + chem_refill_volume_max = 150 chem_refill = list( /obj/item/reagent_container/hypospray/autoinjector/skillless, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, ) - stack_refill = list( - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/ointment, - ) /obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat name = "Lifeboat Medical Cabinet" icon = 'icons/obj/structures/machinery/lifeboat.dmi' icon_state = "medcab" desc = "A wall-mounted cabinet containing medical supplies vital to survival. While better equipped, it can only refill basic supplies." + unacidable = TRUE + unslashable = TRUE + wrenchable = FALSE + hackable = FALSE + listed_products = list( list("AUTOINJECTORS", -1, null, null), list("First-Aid Autoinjector", 8, /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), @@ -423,16 +868,9 @@ list("Roll of Gauze", 8, /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), list("Splints", 8, /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR) ) - stack_refill = list( - /obj/item/stack/medical/ointment, - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/splint, - ) - unacidable = TRUE - unslashable = TRUE - wrenchable = FALSE - hackable = FALSE + chem_refill_volume = 500 + chem_refill_volume_max = 500 /obj/structure/machinery/cm_vending/sorted/medical/wall_med/populate_product_list(scale) return @@ -440,18 +878,19 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto name = "\improper SoutoMed" desc = "In Soutoland (Trademark pending), one is never more than 6ft away from canned Havana goodness. Drink a Souto today! For a full selection of Souto products please visit a licensed retailer or vending machine. Also doubles as basic first aid station." - icon_state = "soutomed" icon = 'icons/obj/structures/souto_land.dmi' + icon_state = "soutomed" + listed_products = list( list("FIRST AID SUPPLIES", -1, null, null), - list("First-Aid Autoinjector", 1, /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), - list("Pain-Stop Autoinjector", 1, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), - list("Roll Of Gauze", 2, /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), - list("Ointment", 2, /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), - list("Medical Splints", 1, /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), + list("First-Aid Autoinjector", 2, /obj/item/reagent_container/hypospray/autoinjector/skillless, VENDOR_ITEM_REGULAR), + list("Pain-Stop Autoinjector", 2, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, VENDOR_ITEM_REGULAR), + list("Roll Of Gauze", 4, /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Ointment", 4, /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Medical Splints", 4, /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), list("UTILITY", -1, null, null), - list("HF2 Health Analyzer", 1, /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), + list("HF2 Health Analyzer", 2, /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), list("SOUTO", -1, null, null), list("Souto Classic", 1, /obj/item/reagent_container/food/drinks/cans/souto/classic, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index 1717d1e9de..d514e20302 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -24,124 +24,156 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/populate_product_list(scale) listed_products = list( list("PRIMARY FIREARMS", -1, null, null), - list("M37A2 Pump Shotgun", round(scale * 30), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), - list("M39 Submachinegun", round(scale * 60), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK2", round(scale * 60), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), - list("M4RA Battle Rifle", round(scale * 20), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M37A2 Pump Shotgun", floor(scale * 30), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), + list("M39 Submachinegun", floor(scale * 60), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK2", floor(scale * 60), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), + list("M4RA Battle Rifle", floor(scale * 20), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("VP70 Combat Pistol", round(scale * 50), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Combat Revolver", round(scale * 50), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), - list("M4A3 Service Pistol", round(scale * 50), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), - list("M82F Flare Gun", round(scale * 20), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 50), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Combat Revolver", floor(scale * 50), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", floor(scale * 50), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), + list("M82F Flare Gun", floor(scale * 20), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", -1, null, null), - list("VP78 Pistol", round(scale * 4), /obj/item/storage/box/guncase/vp78, VENDOR_ITEM_REGULAR), - list("SU-6 Smart Pistol", round(scale * 3), /obj/item/storage/box/guncase/smartpistol, VENDOR_ITEM_REGULAR), - list("MOU-53 Shotgun", round(scale * 2), /obj/item/storage/box/guncase/mou53, VENDOR_ITEM_REGULAR), - list("XM88 Heavy Rifle", round(scale * 3), /obj/item/storage/box/guncase/xm88, VENDOR_ITEM_REGULAR), - list("M41AE2 Heavy Pulse Rifle", round(scale * 2.5), /obj/item/storage/box/guncase/lmg, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK1", round(scale * 3), /obj/item/storage/box/guncase/m41aMK1, VENDOR_ITEM_REGULAR), - list("M56D Heavy Machine Gun", round(scale * 2), /obj/item/storage/box/guncase/m56d, VENDOR_ITEM_REGULAR), - list("M2C Heavy Machine Gun", round(scale * 2), /obj/item/storage/box/guncase/m2c, VENDOR_ITEM_REGULAR), - list("M240 Incinerator Unit", round(scale * 2), /obj/item/storage/box/guncase/flamer, VENDOR_ITEM_REGULAR), - list("M79 Grenade Launcher", round(scale * 3), /obj/item/storage/box/guncase/m79, VENDOR_ITEM_REGULAR), + list("VP78 Pistol", floor(scale * 4), /obj/item/storage/box/guncase/vp78, VENDOR_ITEM_REGULAR), + list("SU-6 Smart Pistol", floor(scale * 3), /obj/item/storage/box/guncase/smartpistol, VENDOR_ITEM_REGULAR), + list("MOU-53 Shotgun", floor(scale * 2), /obj/item/storage/box/guncase/mou53, VENDOR_ITEM_REGULAR), + list("XM88 Heavy Rifle", floor(scale * 3), /obj/item/storage/box/guncase/xm88, VENDOR_ITEM_REGULAR), + list("M41AE2 Heavy Pulse Rifle", 2.5, /obj/item/storage/box/guncase/lmg, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK1", floor(scale * 3), /obj/item/storage/box/guncase/m41aMK1, VENDOR_ITEM_REGULAR), + list("M56D Heavy Machine Gun", floor(scale * 2), /obj/item/storage/box/guncase/m56d, VENDOR_ITEM_REGULAR), + list("M2C Heavy Machine Gun", floor(scale * 2), /obj/item/storage/box/guncase/m2c, VENDOR_ITEM_REGULAR), + list("M240 Incinerator Unit", floor(scale * 2), /obj/item/storage/box/guncase/flamer, VENDOR_ITEM_REGULAR), + list("M79 Grenade Launcher", floor(scale * 3), /obj/item/storage/box/guncase/m79, VENDOR_ITEM_REGULAR), + list("XM51 Breaching Scattergun", floor(scale * 3), /obj/item/storage/box/guncase/xm51, VENDOR_ITEM_REGULAR), list("EXPLOSIVES", -1, null, null), - list("M15 Fragmentation Grenade", round(scale * 2), /obj/item/explosive/grenade/high_explosive/m15, VENDOR_ITEM_REGULAR), - list("M20 Claymore Anti-Personnel Mine", round(scale * 4), /obj/item/explosive/mine, VENDOR_ITEM_REGULAR), - list("M40 HEDP Grenade", round(scale * 25), /obj/item/explosive/grenade/high_explosive, VENDOR_ITEM_REGULAR), - list("M40 HIDP Incendiary Grenade", round(scale * 4), /obj/item/explosive/grenade/incendiary, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Smoke Grenade", round(scale * 4), /obj/item/explosive/grenade/phosphorus, VENDOR_ITEM_REGULAR), - list("M40 HSDP Smoke Grenade", round(scale * 5), /obj/item/explosive/grenade/smokebomb, VENDOR_ITEM_REGULAR), - list("M74 AGM-Frag Airburst Grenade", round(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst, VENDOR_ITEM_REGULAR), - list("M74 AGM-Icendiary Airburst Grenade", round(scale * 4), /obj/item/explosive/grenade/incendiary/airburst, VENDOR_ITEM_REGULAR), - list("M74 AGM-Smoke Airburst Grenade", round(scale * 4), /obj/item/explosive/grenade/smokebomb/airburst, VENDOR_ITEM_REGULAR), - list("M74 AGM-Star Shell", round(scale * 2), /obj/item/explosive/grenade/high_explosive/airburst/starshell, VENDOR_ITEM_REGULAR), - list("M74 AGM-Hornet Shell", round(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/hornet_shell, VENDOR_ITEM_REGULAR), - list("M40 HIRR Baton Slug", round(scale * 8), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), - list("M40 MFHS Metal Foam Grenade", round(scale * 3), /obj/item/explosive/grenade/metal_foam, VENDOR_ITEM_REGULAR), - list("Plastic Explosives", round(scale * 3), /obj/item/explosive/plastic, VENDOR_ITEM_REGULAR), - list("Breaching Charge", round(scale * 2), /obj/item/explosive/plastic/breaching_charge, VENDOR_ITEM_REGULAR), + list("M15 Fragmentation Grenade", floor(scale * 2), /obj/item/explosive/grenade/high_explosive/m15, VENDOR_ITEM_REGULAR), + list("M20 Claymore Anti-Personnel Mine", floor(scale * 4), /obj/item/explosive/mine, VENDOR_ITEM_REGULAR), + list("M40 HEDP Grenade", floor(scale * 25), /obj/item/explosive/grenade/high_explosive, VENDOR_ITEM_REGULAR), + list("M40 HIDP Incendiary Grenade", floor(scale * 4), /obj/item/explosive/grenade/incendiary, VENDOR_ITEM_REGULAR), + list("M40 CCDP Chemical Compound Smoke Grenade", floor(scale * 4), /obj/item/explosive/grenade/phosphorus, VENDOR_ITEM_REGULAR), + list("M40 HSDP Smoke Grenade", floor(scale * 5), /obj/item/explosive/grenade/smokebomb, VENDOR_ITEM_REGULAR), + list("M74 AGM-Frag Airburst Grenade", floor(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst, VENDOR_ITEM_REGULAR), + list("M74 AGM-Incendiary Airburst Grenade", floor(scale * 4), /obj/item/explosive/grenade/incendiary/airburst, VENDOR_ITEM_REGULAR), + list("M74 AGM-Smoke Airburst Grenade", floor(scale * 4), /obj/item/explosive/grenade/smokebomb/airburst, VENDOR_ITEM_REGULAR), + list("M74 AGM-Star Shell", floor(scale * 2), /obj/item/explosive/grenade/high_explosive/airburst/starshell, VENDOR_ITEM_REGULAR), + list("M74 AGM-Hornet Shell", floor(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/hornet_shell, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade", round(scale * 5), /obj/item/explosive/grenade/sebb, VENDOR_ITEM_REGULAR), + list("M40 HIRR Baton Slug", floor(scale * 8), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), + list("M40 MFHS Metal Foam Grenade", floor(scale * 6), /obj/item/explosive/grenade/metal_foam, VENDOR_ITEM_REGULAR), + list("Plastic Explosives", floor(scale * 3), /obj/item/explosive/plastic, VENDOR_ITEM_REGULAR), + list("Breaching Charge", floor(scale * 2), /obj/item/explosive/plastic/breaching_charge, VENDOR_ITEM_REGULAR), list("WEBBINGS", -1, null, null), - list("Black Webbing Vest", round(scale * 2), /obj/item/clothing/accessory/storage/black_vest, VENDOR_ITEM_REGULAR), - list("Brown Webbing Vest", round(scale * 2), /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR), - list("Shoulder Holster", round(scale * 1.5), /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), - list("Webbing", round(scale * 5), /obj/item/clothing/accessory/storage/webbing, VENDOR_ITEM_REGULAR), - list("Knife Webbing", round(scale * 1), /obj/item/clothing/accessory/storage/knifeharness, VENDOR_ITEM_REGULAR), - list("Drop Pouch", round(scale * 2), /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), + list("Black Webbing Vest", floor(scale * 2), /obj/item/clothing/accessory/storage/black_vest, VENDOR_ITEM_REGULAR), + list("Brown Webbing Vest", floor(scale * 2), /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", floor(scale * 1.5), /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), + list("Webbing", floor(scale * 5), /obj/item/clothing/accessory/storage/webbing, VENDOR_ITEM_REGULAR), + list("Knife Webbing", floor(scale * 1), /obj/item/clothing/accessory/storage/knifeharness, VENDOR_ITEM_REGULAR), + list("Drop Pouch", floor(scale * 2), /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), + list("External Webbing", floor(scale * 5), /obj/item/clothing/suit/storage/webbing, VENDOR_ITEM_REGULAR), list("BACKPACKS", -1, null, null), - list("Lightweight IMP Backpack", round(scale * 15), /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), - list("Shotgun Scabbard", round(scale * 10), /obj/item/storage/large_holster/m37, VENDOR_ITEM_REGULAR), - list("Pyrotechnician G4-1 Fueltank", round(scale * 2), /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit, VENDOR_ITEM_REGULAR), - list("Technician Welderpack", round(scale * 2), /obj/item/storage/backpack/marine/engineerpack, VENDOR_ITEM_REGULAR), - list("Mortar Shell Backpack", round(scale * 1), /obj/item/storage/backpack/marine/mortarpack, VENDOR_ITEM_REGULAR), - list("Technician Welder-Satchel", round(scale * 5), /obj/item/storage/backpack/marine/engineerpack/satchel, VENDOR_ITEM_REGULAR), - list("IMP Ammo Rack", round(scale * 2), /obj/item/storage/backpack/marine/ammo_rack, VENDOR_ITEM_REGULAR), - list("Radio Telephone Pack", round(scale * 2), /obj/item/storage/backpack/marine/satchel/rto, VENDOR_ITEM_REGULAR), - list("Parachute", round(scale * 20), /obj/item/parachute, VENDOR_ITEM_REGULAR), + list("Lightweight IMP Backpack", floor(scale * 15), /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), + list("Shotgun Scabbard", floor(scale * 10), /obj/item/storage/large_holster/m37, VENDOR_ITEM_REGULAR), + list("Pyrotechnician G4-1 Fueltank", floor(scale * 2), /obj/item/storage/backpack/marine/engineerpack/flamethrower/kit, VENDOR_ITEM_REGULAR), + list("Technician Welderpack", floor(scale * 2), /obj/item/storage/backpack/marine/engineerpack, VENDOR_ITEM_REGULAR), + list("Mortar Shell Backpack", floor(scale * 1), /obj/item/storage/backpack/marine/mortarpack, VENDOR_ITEM_REGULAR), + list("Technician Welder-Satchel", floor(scale * 5), /obj/item/storage/backpack/marine/engineerpack/satchel, VENDOR_ITEM_REGULAR), + list("IMP Ammo Rack", floor(scale * 2), /obj/item/storage/backpack/marine/ammo_rack, VENDOR_ITEM_REGULAR), + list("Radio Telephone Pack", floor(scale * 2), /obj/item/storage/backpack/marine/satchel/rto, VENDOR_ITEM_REGULAR), + list("Parachute", floor(scale * 20), /obj/item/parachute, VENDOR_ITEM_REGULAR), list("BELTS", -1, null, null), - list("G8-A General Utility Pouch", round(scale * 2), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), - list("M276 Ammo Load Rig", round(scale * 15), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), - list("M276 General Pistol Holster Rig", round(scale * 10), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), - list("M276 Knife Rig", round(scale * 5), /obj/item/storage/belt/knifepouch, VENDOR_ITEM_REGULAR), - list("M276 M39 Holster Rig", round(scale * 5), /obj/item/storage/belt/gun/m39, VENDOR_ITEM_REGULAR), - list("M276 M40 Grenade Rig", round(scale * 2), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", round(scale * 5), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), - list("M276 M82F Holster Rig", round(scale * 2), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), - list("M276 Shotgun Shell Loading Rig", round(scale * 10), /obj/item/storage/belt/shotgun, VENDOR_ITEM_REGULAR), - list("M276 Mortar Operator Belt", round(scale * 2), /obj/item/storage/belt/gun/mortarbelt, VENDOR_ITEM_REGULAR), + list("G8-A General Utility Pouch", floor(scale * 2), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), + list("M276 Ammo Load Rig", floor(scale * 15), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), + list("M276 General Pistol Holster Rig", floor(scale * 10), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), + list("M276 Knife Rig", floor(scale * 5), /obj/item/storage/belt/knifepouch, VENDOR_ITEM_REGULAR), + list("M276 M39 Holster Rig", floor(scale * 5), /obj/item/storage/belt/gun/m39, VENDOR_ITEM_REGULAR), + list("M276 M40 Grenade Rig", floor(scale * 2), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", floor(scale * 5), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), + list("M276 M82F Holster Rig", floor(scale * 2), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), + list("M276 Shotgun Shell Loading Rig", floor(scale * 10), /obj/item/storage/belt/shotgun, VENDOR_ITEM_REGULAR), + list("M276 Mortar Operator Belt", floor(scale * 2), /obj/item/storage/belt/gun/mortarbelt, VENDOR_ITEM_REGULAR), list("POUCHES", -1, null, null), - list("Autoinjector Pouch", round(scale * 1), /obj/item/storage/pouch/autoinjector, VENDOR_ITEM_REGULAR), - list("Medical Kit Pouch", round(scale * 2), /obj/item/storage/pouch/medkit, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Full)", round(scale * 5), /obj/item/storage/pouch/firstaid/full, VENDOR_ITEM_REGULAR), - list("First Responder Pouch", round(scale * 2), /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), - list("Syringe Pouch", round(scale * 2), /obj/item/storage/pouch/syringe, VENDOR_ITEM_REGULAR), - list("Tools Pouch (Full)", round(scale * 2), /obj/item/storage/pouch/tools/full, VENDOR_ITEM_REGULAR), - list("Construction Pouch", round(scale * 2), /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), - list("Electronics Pouch", round(scale * 2), /obj/item/storage/pouch/electronics, VENDOR_ITEM_REGULAR), - list("Explosive Pouch", round(scale * 2), /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), - list("Flare Pouch (Full)", round(scale * 5), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), - list("Sling Pouch", round(scale * 2), /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), - list("Machete Pouch (Full)", round(scale * 0.5), /obj/item/storage/pouch/machete/full, VENDOR_ITEM_REGULAR), - list("Bayonet Pouch", round(scale * 2), /obj/item/storage/pouch/bayonet, VENDOR_ITEM_REGULAR), - list("Medium General Pouch", round(scale * 2), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), - list("Magazine Pouch", round(scale * 5), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), - list("Shotgun Shell Pouch", round(scale * 5), /obj/item/storage/pouch/shotgun, VENDOR_ITEM_REGULAR), - list("Sidearm Pouch", round(scale * 5), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), - list("Large Pistol Magazine Pouch", round(scale * 5), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), - list("Fuel Tank Strap Pouch", round(scale * 4), /obj/item/storage/pouch/flamertank, VENDOR_ITEM_REGULAR), - list("Large General Pouch", round(scale * 1), /obj/item/storage/pouch/general/large, VENDOR_ITEM_REGULAR), - list("Large Magazine Pouch", round(scale * 1), /obj/item/storage/pouch/magazine/large, VENDOR_ITEM_REGULAR), - list("Large Shotgun Shell Pouch", round(scale * 1), /obj/item/storage/pouch/shotgun/large, VENDOR_ITEM_REGULAR), + list("Autoinjector Pouch", floor(scale * 1), /obj/item/storage/pouch/autoinjector, VENDOR_ITEM_REGULAR), + list("Medical Kit Pouch", floor(scale * 2), /obj/item/storage/pouch/medkit, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Full)", floor(scale * 5), /obj/item/storage/pouch/firstaid/full, VENDOR_ITEM_REGULAR), + list("First Responder Pouch", floor(scale * 2), /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), + list("Syringe Pouch", floor(scale * 2), /obj/item/storage/pouch/syringe, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", floor(scale * 2), /obj/item/storage/pouch/tools/full, VENDOR_ITEM_REGULAR), + list("Construction Pouch", floor(scale * 2), /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), + list("Electronics Pouch", floor(scale * 2), /obj/item/storage/pouch/electronics, VENDOR_ITEM_REGULAR), + list("Explosive Pouch", floor(scale * 2), /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", floor(scale * 5), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), + list("Sling Pouch", floor(scale * 2), /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), + list("Machete Pouch (Full)", 1, /obj/item/storage/pouch/machete/full, VENDOR_ITEM_REGULAR), + list("Bayonet Pouch", floor(scale * 2), /obj/item/storage/pouch/bayonet, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", floor(scale * 2), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", floor(scale * 5), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Pouch", floor(scale * 5), /obj/item/storage/pouch/shotgun, VENDOR_ITEM_REGULAR), + list("Sidearm Pouch", floor(scale * 5), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", floor(scale * 5), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), + list("Fuel Tank Strap Pouch", floor(scale * 4), /obj/item/storage/pouch/flamertank, VENDOR_ITEM_REGULAR), + list("Large General Pouch", floor(scale * 1), /obj/item/storage/pouch/general/large, VENDOR_ITEM_REGULAR), + list("Large Magazine Pouch", floor(scale * 1), /obj/item/storage/pouch/magazine/large, VENDOR_ITEM_REGULAR), + list("Large Shotgun Shell Pouch", floor(scale * 1), /obj/item/storage/pouch/shotgun/large, VENDOR_ITEM_REGULAR), list("MISCELLANEOUS", -1, null, null), - list("Combat Flashlight", round(scale * 5), /obj/item/device/flashlight/combat, VENDOR_ITEM_REGULAR), - list("Entrenching Tool", round(scale * 4), /obj/item/tool/shovel/etool/folded, VENDOR_ITEM_REGULAR), - list("Gas Mask", round(scale * 10), /obj/item/clothing/mask/gas, VENDOR_ITEM_REGULAR), - list("M89-S Signal Flare Pack", round(scale * 2), /obj/item/storage/box/m94/signal, VENDOR_ITEM_REGULAR), - list("M94 Marking Flare Pack", round(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), - list("Machete Scabbard (Full)", round(scale * 6), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR), - list("MB-6 Folding Barricades (x3)", round(scale * 3), /obj/item/stack/folding_barricade/three, VENDOR_ITEM_REGULAR), - list("Motion Detector", round(scale * 4), /obj/item/device/motiondetector, VENDOR_ITEM_REGULAR), - list("Data Detector", round(scale * 4), /obj/item/device/motiondetector/intel, VENDOR_ITEM_REGULAR), - list("Binoculars", round(scale * 2), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR), - list("Rangefinder", round(scale * 1), /obj/item/device/binoculars/range, VENDOR_ITEM_REGULAR), - list("Laser Designator", round(scale * 1), /obj/item/device/binoculars/range/designator, VENDOR_ITEM_REGULAR), - list("Welding Goggles", round(scale * 3), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), - list("Fire Extinguisher (Portable)", round(scale * 3), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR), - list("High-Capacity Power Cell", round(scale * 1), /obj/item/cell/high, VENDOR_ITEM_REGULAR), - list("Fulton Device Stack", round(scale * 1), /obj/item/stack/fulton, VENDOR_ITEM_REGULAR), + list("Combat Flashlight", floor(scale * 8), /obj/item/device/flashlight/combat, VENDOR_ITEM_REGULAR), + list("Entrenching Tool", floor(scale * 4), /obj/item/tool/shovel/etool/folded, VENDOR_ITEM_REGULAR), + list("Gas Mask", floor(scale * 10), /obj/item/clothing/mask/gas, VENDOR_ITEM_REGULAR), + list("M89-S Signal Flare Pack", floor(scale * 2), /obj/item/storage/box/m94/signal, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", floor(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), + list("Machete Scabbard (Full)", floor(scale * 6), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR), + list("MB-6 Folding Barricades (x3)", floor(scale * 3), /obj/item/stack/folding_barricade/three, VENDOR_ITEM_REGULAR), + list("Motion Detector", floor(scale * 4), /obj/item/device/motiondetector, VENDOR_ITEM_REGULAR), + list("Data Detector", floor(scale * 4), /obj/item/device/motiondetector/intel, VENDOR_ITEM_REGULAR), + list("Binoculars", floor(scale * 2), /obj/item/device/binoculars, VENDOR_ITEM_REGULAR), + list("Rangefinder", floor(scale * 1), /obj/item/device/binoculars/range, VENDOR_ITEM_REGULAR), + list("Laser Designator", floor(scale * 1), /obj/item/device/binoculars/range/designator, VENDOR_ITEM_REGULAR), + list("Welding Goggles", floor(scale * 3), /obj/item/clothing/glasses/welding, VENDOR_ITEM_REGULAR), + list("Fire Extinguisher (Portable)", floor(scale * 3), /obj/item/tool/extinguisher/mini, VENDOR_ITEM_REGULAR), + list("High-Capacity Power Cell", floor(scale * 1), /obj/item/cell/high, VENDOR_ITEM_REGULAR), + list("Fulton Device Stack", floor(scale * 1), /obj/item/stack/fulton, VENDOR_ITEM_REGULAR), list("Sentry Gun Network Laptop", 4, /obj/item/device/sentry_computer, VENDOR_ITEM_REGULAR), - list("JTAC Pamphlet", round(scale * 1), /obj/item/pamphlet/skill/jtac, VENDOR_ITEM_REGULAR), - list("Engineering Pamphlet", round(scale * 1), /obj/item/pamphlet/skill/engineer, VENDOR_ITEM_REGULAR), - list("Powerloader Certification", round(scale * 0.1) + 1, /obj/item/pamphlet/skill/powerloader, VENDOR_ITEM_REGULAR), - list("Spare PDT/L Battle Buddy Kit", round(scale * 4), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR), - list("W-Y brand rechargeable mini-battery", round(scale * 3), /obj/item/cell/crap, VENDOR_ITEM_REGULAR) + list("JTAC Pamphlet", floor(scale * 1), /obj/item/pamphlet/skill/jtac, VENDOR_ITEM_REGULAR), + list("Engineering Pamphlet", floor(scale * 1), /obj/item/pamphlet/skill/engineer, VENDOR_ITEM_REGULAR), + list("Powerloader Certification", 0.75, /obj/item/pamphlet/skill/powerloader, VENDOR_ITEM_REGULAR), + list("Spare PDT/L Battle Buddy Kit", floor(scale * 4), /obj/item/storage/box/pdt_kit, VENDOR_ITEM_REGULAR), + list("W-Y brand rechargeable mini-battery", floor(scale * 3), /obj/item/cell/crap, VENDOR_ITEM_REGULAR), + list("Nailgun Magazine (7x45mm)", floor(scale * 4), /obj/item/ammo_magazine/smg/nailgun, VENDOR_ITEM_REGULAR), + + list("EXPLOSIVES BOXES", -1, null, null), + list("M15 Fragmentation Grenade Packet", 0, /obj/item/storage/box/packet/m15, VENDOR_ITEM_REGULAR), + list("M40 HEDP Grenade Packet", 0, /obj/item/storage/box/packet/high_explosive, VENDOR_ITEM_REGULAR), + list("M40 HEDP Grenade Box", 0, /obj/item/storage/box/nade_box, VENDOR_ITEM_REGULAR), + list("M40 HIDP Grenade Packet", 0, /obj/item/storage/box/packet/incendiary, VENDOR_ITEM_REGULAR), + list("M40 HIDP Grenade Box", 0, /obj/item/storage/box/nade_box/incen, VENDOR_ITEM_REGULAR), + list("M40 CCDP Grenade Packet", 0, /obj/item/storage/box/packet/phosphorus/strong, VENDOR_ITEM_REGULAR), + list("M40 CCDP Grenade Box", 0, /obj/item/storage/box/nade_box/phophorus, VENDOR_ITEM_REGULAR), + list("M40 HSDP Grenade Packet", 0, /obj/item/storage/box/packet/smoke, VENDOR_ITEM_REGULAR), + list("M40 MFHS Grenade Packet", 0, /obj/item/storage/box/packet/foam, VENDOR_ITEM_REGULAR), + list("M40 HIRR Baton Slug Packet", 0, /obj/item/storage/box/packet/baton_slug, VENDOR_ITEM_REGULAR), + list("M74 AGM-F Grenade Packet", 0, /obj/item/storage/box/packet/airburst_he, VENDOR_ITEM_REGULAR), + list("M74 AGM-F Grenade box", 0, /obj/item/storage/box/nade_box/airburst, VENDOR_ITEM_REGULAR), + list("M74 AGM-I Grenade Packet", 0, /obj/item/storage/box/packet/airburst_incen, VENDOR_ITEM_REGULAR), + list("M74 AGM-I Grenade Box", 0, /obj/item/storage/box/nade_box/airburstincen, VENDOR_ITEM_REGULAR), + list("M74 AGM-S Smoke Grenade Packet", 0, /obj/item/storage/box/packet/airburst_smoke, VENDOR_ITEM_REGULAR), + list("M74 AGM-S Star Shell Packet", 0, /obj/item/storage/box/packet/flare, VENDOR_ITEM_REGULAR), + list("M74 AGM-H Hornet Shell Packet", 0, /obj/item/storage/box/packet/hornet, VENDOR_ITEM_REGULAR), + list("G2 Electroshock grenade packet", 0, /obj/item/storage/box/packet/sebb, VENDOR_ITEM_REGULAR), + list("M20 mine box", 0, /obj/item/storage/box/explosive_mines, VENDOR_ITEM_REGULAR), + + list("OTHER BOXES", -1, null, null), + list("Box of Combat Flashlights", 0, /obj/item/ammo_box/magazine/misc/flashlight/combat, VENDOR_ITEM_REGULAR), + list("Box of M94 Marking Flare Packs", 0, /obj/item/ammo_box/magazine/misc/flares, VENDOR_ITEM_REGULAR), + list("Box of M89 Signal Flare Packs", 0, /obj/item/ammo_box/magazine/misc/flares/signal, VENDOR_ITEM_REGULAR), + list("Box of High-Capacity Power Cells", 0, /obj/item/ammo_box/magazine/misc/power_cell, VENDOR_ITEM_REGULAR), + list("Nailgun Magazine Box (7x45mm)", floor(scale * 2), /obj/item/ammo_box/magazine/nailgun, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/cargo_guns/stock(obj/item/item_to_stock, mob/user) @@ -178,12 +210,14 @@ //Special cargo-specific vendor with vending offsets /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES //We want to vend to turf not hand, since we are in requisitions + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES | VEND_STOCK_DYNAMIC //We want to vend to turf not hand, since we are in requisitions vend_dir = WEST vend_dir_whitelist = list(NORTH, SOUTH) /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend icon_state = "req_guns_wall" + vend_delay = 3 + vend_sound = 'sound/machines/vending_drop.ogg' tiles_with = list( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/airlock, @@ -198,7 +232,7 @@ icon_state = "req_ammo" req_access = list(ACCESS_MARINE_CARGO) vendor_theme = VENDOR_THEME_USCM - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES | VEND_STOCK_DYNAMIC vend_dir = WEST vend_dir_whitelist = list(SOUTHWEST, NORTHWEST) @@ -216,48 +250,79 @@ /obj/structure/machinery/cm_vending/sorted/cargo_ammo/populate_product_list(scale) listed_products = list( list("REGULAR AMMUNITION", -1, null, null), - list("Box Of Buckshot Shells", round(scale * 20), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), - list("Box Of Flechette Shells", round(scale * 8), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), - list("Box Of Shotgun Slugs", round(scale * 20), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), - list("M4RA Magazine (10x24mm)", round(scale * 30), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M41A MK2 Magazine (10x24mm)", round(scale * 50), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), - list("M39 HV Magazine (10x20mm)", round(scale * 50), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), - list("M44 Speed Loader (.44)", round(scale * 40), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), - list("M4A3 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), - list("VP70 Magazine (9mm)", round(scale * 50), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), + list("Box Of Buckshot Shells", floor(scale * 56), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), + list("Box Of Flechette Shells", floor(scale * 56), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), + list("Box Of Shotgun Slugs", floor(scale * 56), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), + list("Box Of Breaching Slugs", floor(scale * 4), /obj/item/ammo_magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR), + list("M4RA Magazine (10x24mm)", floor(scale * 60), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M41A MK2 Magazine (10x24mm)", floor(scale * 100), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), + list("M39 HV Magazine (10x20mm)", floor(scale * 100), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), + list("M44 Speed Loader (.44)", floor(scale * 80), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), + list("M4A3 Magazine (9mm)", floor(scale * 100), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 50), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("ARMOR-PIERCING AMMUNITION", -1, null, null), - list("M4RA AP Magazine (10x24mm)", round(scale * 15.7), /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), - list("M39 AP Magazine (10x20mm)", round(scale * 11.9), /obj/item/ammo_magazine/smg/m39/ap, VENDOR_ITEM_REGULAR), - list("M41A MK2 AP Magazine (10x24mm)", round(scale * 10.5), /obj/item/ammo_magazine/rifle/ap, VENDOR_ITEM_REGULAR), - list("M4A3 AP Magazine (9mm)", round(scale * 2), /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR), + list("M4RA AP Magazine (10x24mm)", floor(scale * 16), /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), + list("M39 AP Magazine (10x20mm)", floor(scale * 12), /obj/item/ammo_magazine/smg/m39/ap, VENDOR_ITEM_REGULAR), + list("M41A MK2 AP Magazine (10x24mm)", floor(scale * 10), /obj/item/ammo_magazine/rifle/ap, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine (9mm)", floor(scale * 2), /obj/item/ammo_magazine/pistol/ap, VENDOR_ITEM_REGULAR), list("EXTENDED AMMUNITION", -1, null, null), - list("M39 Extended Magazine (10x20mm)", round(scale * 9.5) + 3, /obj/item/ammo_magazine/smg/m39/extended, VENDOR_ITEM_REGULAR), - list("M41A MK2 Extended Magazine (10x24mm)", round(scale * 8.1), /obj/item/ammo_magazine/rifle/extended, VENDOR_ITEM_REGULAR), + list("M39 Extended Magazine (10x20mm)", floor(scale * 10), /obj/item/ammo_magazine/smg/m39/extended, VENDOR_ITEM_REGULAR), + list("M41A MK2 Extended Magazine (10x24mm)", floor(scale * 8), /obj/item/ammo_magazine/rifle/extended, VENDOR_ITEM_REGULAR), list("SPECIAL AMMUNITION", -1, null, null), - list("M56 Battery", 4, /obj/item/smartgun_battery, VENDOR_ITEM_REGULAR), + list("M56 DV9 Battery", 4, /obj/item/smartgun_battery, VENDOR_ITEM_REGULAR), list("M56 Smartgun Drum", 4, /obj/item/ammo_magazine/smartgun, VENDOR_ITEM_REGULAR), - list("M44 Heavy Speed Loader (.44)", round(scale * 10.5), /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), - list("M44 Marksman Speed Loader (.44)", round(scale * 5.7), /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), - list("M4A3 HP Magazine (9mm)", round(scale * 2), /obj/item/ammo_magazine/pistol/hp, VENDOR_ITEM_REGULAR), - list("M41AE2 Holo Target Rounds (10x24mm)", round(scale * 2), /obj/item/ammo_magazine/rifle/lmg/holo_target, VENDOR_ITEM_REGULAR), + list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine (9mm)", floor(scale * 2), /obj/item/ammo_magazine/pistol/hp, VENDOR_ITEM_REGULAR), + list("M41AE2 Holo Target Rounds (10x24mm)", floor(scale * 2), /obj/item/ammo_magazine/rifle/lmg/holo_target, VENDOR_ITEM_REGULAR), + list("Box Of .458 SOCOM Rounds (.458 SOCOM)", floor(scale * 4), /obj/item/ammo_magazine/lever_action/xm88, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARM AMMUNITION", -1, null, null), - list("VP78 Magazine", round(scale * 11.2), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), - list("SU-6 Smartpistol Magazine (.45)", round(scale * 12,8), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), - list("M240 Incinerator Tank", round(scale * 3), /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), - list("M41AE2 Box Magazine (10x24mm)", round(scale * 3), /obj/item/ammo_magazine/rifle/lmg, VENDOR_ITEM_REGULAR), - list("M41A MK1 Magazine (10x24mm)", round(scale * 4.5), /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), - list("M41A MK1 AP Magazine (10x24mm)", round(scale * 2), /obj/item/ammo_magazine/rifle/m41aMK1/ap, VENDOR_ITEM_REGULAR), - list("M56D Drum Magazine", round(scale * 2), /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), - list("M2C Box Magazine", round(scale * 2), /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR), - - list("SHOTGUN SHELL BOXES", -1, null, null), - list("Shotgun Shell Box (Buckshot x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), - list("Shotgun Shell Box (Flechette x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), - list("Shotgun Shell Box (Slugs x 100)", round(scale * 2), /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 11, /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 13, /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), + list("M240 Incinerator Tank", floor(scale * 3), /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), + list("M41AE2 Box Magazine (10x24mm)", floor(scale * 3), /obj/item/ammo_magazine/rifle/lmg, VENDOR_ITEM_REGULAR), + list("M41A MK1 Magazine (10x24mm)", 4.5, /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), + list("M41A MK1 AP Magazine (10x24mm)", floor(scale * 2), /obj/item/ammo_magazine/rifle/m41aMK1/ap, VENDOR_ITEM_REGULAR), + list("M56D Drum Magazine", floor(scale * 2), /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), + list("M2C Box Magazine", floor(scale * 2), /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR), + list("XM51 Magazine (16g)", floor(scale * 3), /obj/item/ammo_magazine/rifle/xm51, VENDOR_ITEM_REGULAR), + + list("MAGAZINE BOXES", -1, null, null), + list("Magazine Box (M39 x 12)", 0, /obj/item/ammo_box/magazine/m39, VENDOR_ITEM_REGULAR), + list("Magazine Box (AP M39 x 12)", 0, /obj/item/ammo_box/magazine/m39/ap, VENDOR_ITEM_REGULAR), + list("Magazine Box (Ext M39 x 10)", 0, /obj/item/ammo_box/magazine/m39/ext, VENDOR_ITEM_REGULAR), + list("Magazine Box (M41A x 10)", 0, /obj/item/ammo_box/magazine, VENDOR_ITEM_REGULAR), + list("Magazine Box (AP M41A x 10)", 0, /obj/item/ammo_box/magazine/ap, VENDOR_ITEM_REGULAR), + list("Magazine Box (Ext M41A x 8)", 0, /obj/item/ammo_box/magazine/ext, VENDOR_ITEM_REGULAR), + list("Magazine Box (M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3, VENDOR_ITEM_REGULAR), + list("Magazine Box (AP M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3/ap, VENDOR_ITEM_REGULAR), + list("Magazine Box (HP M4A3 x 16)", 0, /obj/item/ammo_box/magazine/m4a3/hp, VENDOR_ITEM_REGULAR), + list("Magazine Box (M4RA x 16)", 0, /obj/item/ammo_box/magazine/m4ra, VENDOR_ITEM_REGULAR), + list("Magazine Box (AP M4RA x 16)", 0, /obj/item/ammo_box/magazine/m4ra/ap, VENDOR_ITEM_REGULAR), + list("Magazine Box (M41AE2 x 8)", 0, /obj/item/ammo_box/magazine/m41ae2, VENDOR_ITEM_REGULAR), + list("Magazine Box (M41AE2 Holo-Target x 8)", 0, /obj/item/ammo_box/magazine/m41ae2/holo, VENDOR_ITEM_REGULAR), + list("Magazine Box (M41A MK1 x 10)", 0, /obj/item/ammo_box/magazine/mk1, VENDOR_ITEM_REGULAR), + list("Magazine Box (M41A MK1 AP x 10)", 0, /obj/item/ammo_box/magazine/mk1/ap, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Box (Buckshot x 100)", 0, /obj/item/ammo_box/magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Box (Flechette x 100)", 0, /obj/item/ammo_box/magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Box (Slugs x 100)", 0, /obj/item/ammo_box/magazine/shotgun, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Box (16g) (Breaching x 120)", 0, /obj/item/ammo_box/magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR), + list("Magazine Box (VP70 x 16)", 0, /obj/item/ammo_box/magazine/vp70, VENDOR_ITEM_REGULAR), + list("Magazine Box (SU-6 x 16)", 0, /obj/item/ammo_box/magazine/su6, VENDOR_ITEM_REGULAR), + list("Magazine Box (VP78 x 16)", 0, /obj/item/ammo_box/magazine/vp78, VENDOR_ITEM_REGULAR), + list("Magazine Box (XM51 x 8)", 0, /obj/item/ammo_box/magazine/xm51, VENDOR_ITEM_REGULAR), + list("Rounds Box (.458 SOCOM x 300)", 0, /obj/item/ammo_box/magazine/lever_action/xm88, VENDOR_ITEM_REGULAR), + list("Ammo Box (M2C x 8)", 0, /obj/item/ammo_box/magazine/m2c, VENDOR_ITEM_REGULAR), + list("Drum Box (M56B x 8)", 0, /obj/item/ammo_box/magazine/m56b, VENDOR_ITEM_REGULAR), + list("Drum Box (M56D x 8)", 0, /obj/item/ammo_box/magazine/m56d, VENDOR_ITEM_REGULAR), + list("Speed Loaders Box (M44 x 16)", 0, /obj/item/ammo_box/magazine/m44, VENDOR_ITEM_REGULAR), + list("Speed Loaders Box (Marksman M44 x 16)", 0, /obj/item/ammo_box/magazine/m44/marksman, VENDOR_ITEM_REGULAR), + list("Speed Loaders Box (Heavy M44 x 16)", 0, /obj/item/ammo_box/magazine/m44/heavy, VENDOR_ITEM_REGULAR), + list("Flamer Tank Box (UT-Napthal Fuel x 8)", 0, /obj/item/ammo_box/magazine/flamer, VENDOR_ITEM_REGULAR), ) /obj/structure/machinery/cm_vending/sorted/cargo_ammo/stock(obj/item/item_to_stock, mob/user) @@ -294,15 +359,18 @@ return //We found our item, no reason to go on. /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend - icon_state = "req_ammo_wall" - tiles_with = list( - /obj/structure/window/framed/almayer, - /obj/structure/machinery/door/airlock, - /turf/closed/wall/almayer) + icon_state = "req_ammo_wall" + vend_delay = 3 + vend_sound = 'sound/machines/vending_drop.ogg' + tiles_with = list( + /obj/structure/window/framed/almayer, + /obj/structure/machinery/door/airlock, + /turf/closed/wall/almayer, + ) //Special cargo-specific vendor with vending offsets /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES //We want to vend to turf not hand, since we are in requisitions + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_LOAD_AMMO_BOXES | VEND_STOCK_DYNAMIC //We want to vend to turf not hand, since we are in requisitions //------------ATTACHMENTS VENDOR--------------- @@ -330,46 +398,48 @@ /obj/structure/machinery/cm_vending/sorted/attachments/populate_product_list(scale) listed_products = list( list("BARREL", -1, null, null), - list("Extended Barrel", round(scale * 6.5), /obj/item/attachable/extended_barrel, VENDOR_ITEM_REGULAR), - list("M5 Bayonet", round(scale * 10.5), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), - list("Recoil Compensator", round(scale * 6.5), /obj/item/attachable/compensator, VENDOR_ITEM_REGULAR), - list("Suppressor", round(scale * 6.5), /obj/item/attachable/suppressor, VENDOR_ITEM_REGULAR), + list("Extended Barrel", 6.5, /obj/item/attachable/extended_barrel, VENDOR_ITEM_REGULAR), + list("M5 Bayonet", 10.5, /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + list("Recoil Compensator", 6.5, /obj/item/attachable/compensator, VENDOR_ITEM_REGULAR), + list("Suppressor", 6.5, /obj/item/attachable/suppressor, VENDOR_ITEM_REGULAR), list("RAIL", -1, null, null), - list("B8 Smart-Scope", round(scale * 3.5), /obj/item/attachable/scope/mini_iff, VENDOR_ITEM_REGULAR), - list("Magnetic Harness", round(scale * 8.5), /obj/item/attachable/magnetic_harness, VENDOR_ITEM_REGULAR), - list("Rail Flashlight", round(scale * 10.5), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR), - list("S4 2x Telescopic Mini-Scope", round(scale * 4.5), /obj/item/attachable/scope/mini, VENDOR_ITEM_REGULAR), - list("S5 Red-Dot Sight", round(scale * 9.5), /obj/item/attachable/reddot, VENDOR_ITEM_REGULAR), - list("S6 Reflex Sight", round(scale * 9.5), /obj/item/attachable/reflex, VENDOR_ITEM_REGULAR), - list("S8 4x Telescopic Scope", round(scale * 4.5), /obj/item/attachable/scope, VENDOR_ITEM_REGULAR), + list("B8 Smart-Scope", 3.5, /obj/item/attachable/scope/mini_iff, VENDOR_ITEM_REGULAR), + list("Magnetic Harness", 8.5, /obj/item/attachable/magnetic_harness, VENDOR_ITEM_REGULAR), + list("Rail Flashlight", 10.5, /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR), + list("S4 2x Telescopic Mini-Scope", 4.5, /obj/item/attachable/scope/mini, VENDOR_ITEM_REGULAR), + list("S5 Red-Dot Sight", 9.5, /obj/item/attachable/reddot, VENDOR_ITEM_REGULAR), + list("S6 Reflex Sight", 9.5, /obj/item/attachable/reflex, VENDOR_ITEM_REGULAR), + list("S8 4x Telescopic Scope", 4.5, /obj/item/attachable/scope, VENDOR_ITEM_REGULAR), list("UNDERBARREL", -1, null, null), - list("Angled Grip", round(scale * 6.5), /obj/item/attachable/angledgrip, VENDOR_ITEM_REGULAR), - list("Bipod", round(scale * 6.5), /obj/item/attachable/bipod, VENDOR_ITEM_REGULAR), - list("Burst Fire Assembly", round(scale * 4.5), /obj/item/attachable/burstfire_assembly, VENDOR_ITEM_REGULAR), - list("Gyroscopic Stabilizer", round(scale * 4.5), /obj/item/attachable/gyro, VENDOR_ITEM_REGULAR), - list("Laser Sight", round(scale * 9.5), /obj/item/attachable/lasersight, VENDOR_ITEM_REGULAR), - list("Mini Flamethrower", round(scale * 4.5), /obj/item/attachable/attached_gun/flamer, VENDOR_ITEM_REGULAR), - list("XM-VESG-1 Flamer Nozzle", round(scale * 4.5), /obj/item/attachable/attached_gun/flamer_nozzle, VENDOR_ITEM_REGULAR), - list("U7 Underbarrel Shotgun", round(scale * 4.5), /obj/item/attachable/attached_gun/shotgun, VENDOR_ITEM_REGULAR), - list("Underbarrel Extinguisher", round(scale * 4.5), /obj/item/attachable/attached_gun/extinguisher, VENDOR_ITEM_REGULAR), - list("Underbarrel Flashlight Grip", round(scale * 9.5), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_REGULAR), - list("Underslung Grenade Launcher", round(scale * 9.5), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), - list("Vertical Grip", round(scale * 9.5), /obj/item/attachable/verticalgrip, VENDOR_ITEM_REGULAR), + list("Angled Grip", 6.5, /obj/item/attachable/angledgrip, VENDOR_ITEM_REGULAR), + list("Bipod", 6.5, /obj/item/attachable/bipod, VENDOR_ITEM_REGULAR), + list("Burst Fire Assembly", 4.5, /obj/item/attachable/burstfire_assembly, VENDOR_ITEM_REGULAR), + list("Gyroscopic Stabilizer", 4.5, /obj/item/attachable/gyro, VENDOR_ITEM_REGULAR), + list("Laser Sight", 9.5, /obj/item/attachable/lasersight, VENDOR_ITEM_REGULAR), + list("Mini Flamethrower", 4.5, /obj/item/attachable/attached_gun/flamer, VENDOR_ITEM_REGULAR), + list("XM-VESG-1 Flamer Nozzle", 4.5, /obj/item/attachable/attached_gun/flamer_nozzle, VENDOR_ITEM_REGULAR), + list("U7 Underbarrel Shotgun", 4.5, /obj/item/attachable/attached_gun/shotgun, VENDOR_ITEM_REGULAR), + list("Underbarrel Extinguisher", 4.5, /obj/item/attachable/attached_gun/extinguisher, VENDOR_ITEM_REGULAR), + list("Underbarrel Flashlight Grip", 9.5, /obj/item/attachable/flashlight/grip, VENDOR_ITEM_REGULAR), + list("Underslung Grenade Launcher", 9.5, /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), + list("Vertical Grip", 9.5, /obj/item/attachable/verticalgrip, VENDOR_ITEM_REGULAR), list("STOCK", -1, null, null), - list("M37 Wooden Stock", round(scale * 4.5), /obj/item/attachable/stock/shotgun, VENDOR_ITEM_REGULAR), - list("M39 Arm Brace", round(scale * 4.5), /obj/item/attachable/stock/smg/collapsible/brace, VENDOR_ITEM_REGULAR), - list("M39 Folding Stock", round(scale * 4.5), /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), - list("M39 Stock", round(scale * 4.5), /obj/item/attachable/stock/smg, VENDOR_ITEM_REGULAR), - list("M41A Solid Stock", round(scale * 4.5), /obj/item/attachable/stock/rifle, VENDOR_ITEM_REGULAR), - list("M41A Folding Stock", round(scale * 4.5), /obj/item/attachable/stock/rifle/collapsible, VENDOR_ITEM_REGULAR), - list("M44 Magnum Sharpshooter Stock", round(scale * 4.5), /obj/item/attachable/stock/revolver, VENDOR_ITEM_REGULAR) + list("M37 Wooden Stock", 4.5, /obj/item/attachable/stock/shotgun, VENDOR_ITEM_REGULAR), + list("M39 Arm Brace", 4.5, /obj/item/attachable/stock/smg/collapsible/brace, VENDOR_ITEM_REGULAR), + list("M39 Folding Stock", 4.5, /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), + list("M39 Stock", 4.5, /obj/item/attachable/stock/smg, VENDOR_ITEM_REGULAR), + list("M41A Solid Stock", 4.5, /obj/item/attachable/stock/rifle, VENDOR_ITEM_REGULAR), + list("M41A Folding Stock", 4.5, /obj/item/attachable/stock/rifle/collapsible, VENDOR_ITEM_REGULAR), + list("M44 Magnum Sharpshooter Stock", 4.5, /obj/item/attachable/stock/revolver, VENDOR_ITEM_REGULAR) ) /obj/structure/machinery/cm_vending/sorted/attachments/blend icon_state = "req_attach_wall" + vend_delay = 3 + vend_sound = 'sound/machines/vending_drop.ogg' tiles_with = list( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/airlock, @@ -388,28 +458,41 @@ listed_products = list( list("UNIFORM", -1, null, null), - list("Lightweight IMP Backpack", 20, /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), + list("USCM Uniform", 20, /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), + list("USCM Combat Technician Uniform", 5, /obj/item/clothing/under/marine/engineer, VENDOR_ITEM_REGULAR), + list("USCM Hospital Corpsman uniform", 5, /obj/item/clothing/under/marine/medic, VENDOR_ITEM_REGULAR), + + list("BOOTS", -1, null, null), list("Marine Combat Boots", 20, /obj/item/clothing/shoes/marine, VENDOR_ITEM_REGULAR), - list("M276 Ammo Load Rig", 10, /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), - list("M276 Shotgun Shell Loading Rig", 10, /obj/item/storage/belt/shotgun, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Boots", 5, /obj/item/clothing/shoes/marine/brown, VENDOR_ITEM_REGULAR), + list("Marine Jungle Combat Boots", 5, /obj/item/clothing/shoes/marine/jungle, VENDOR_ITEM_REGULAR), + + list("BACKPACKS", -1, null, null), + list("Lightweight IMP Backpack", 20, /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), list("USCM Satchel", 20, /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), - list("USCM Uniform", 20, /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), + list("USCM Chestrig", 10, /obj/item/storage/backpack/marine/satchel/chestrig, VENDOR_ITEM_REGULAR), + list("USCM Technician Backpack", 10, /obj/item/storage/backpack/marine/tech, VENDOR_ITEM_REGULAR), + list("USCM Technician Chestrig", 10, /obj/item/storage/backpack/marine/satchel/tech, VENDOR_ITEM_REGULAR), + list("USCM Corpsman Backpack", 10, /obj/item/storage/backpack/marine/medic, VENDOR_ITEM_REGULAR), + list("USCM Corpsman Satchel", 10, /obj/item/storage/backpack/marine/satchel/medic, VENDOR_ITEM_REGULAR), + list("ARMOR", -1, null, null), list("M10 Pattern Marine Helmet", 20, /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), list("M10 Pattern Technician Helmet", 20, /obj/item/clothing/head/helmet/marine/tech, VENDOR_ITEM_REGULAR), list("M10 Pattern Corpman Helmet", 20, /obj/item/clothing/head/helmet/marine/medic, VENDOR_ITEM_REGULAR), - list("M3 Pattern Carrier Marine Armor", 20, /obj/item/clothing/suit/storage/marine/carrier, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padded Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padded, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padless Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padless, VENDOR_ITEM_REGULAR), - list("M3 Pattern Ridged Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padless_lines, VENDOR_ITEM_REGULAR), - list("M3 Pattern Skull Marine Armor", 20, /obj/item/clothing/suit/storage/marine/skull, VENDOR_ITEM_REGULAR), + list("M3 Pattern Carrier Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/carrier, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padded Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/padded, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padless Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/padless, VENDOR_ITEM_REGULAR), + list("M3 Pattern Ridged Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/padless_lines, VENDOR_ITEM_REGULAR), + list("M3 Pattern Skull Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/skull, VENDOR_ITEM_REGULAR), list("M3-EOD Pattern Heavy Armor", 10, /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), list("M3-L Pattern Light Armor", 10, /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), list("GLOVES", -1, null, null), list("Marine Combat Gloves", 40, /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), list("Marine Black Combat Gloves", 40, /obj/item/clothing/gloves/marine/black, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Gloves", 20, /obj/item/clothing/gloves/marine/brown, VENDOR_ITEM_REGULAR), list("RADIO", -1, null, null), list("Alpha Squad Radio Encryption Key", 5, /obj/item/device/encryptionkey/alpha, VENDOR_ITEM_REGULAR), @@ -420,6 +503,7 @@ list("Engineering Radio Encryption Key", 5, /obj/item/device/encryptionkey/engi, VENDOR_ITEM_REGULAR), list("Intel Radio Encryption Key", 5, /obj/item/device/encryptionkey/intel, VENDOR_ITEM_REGULAR), list("JTAC Radio Encryption Key", 5, /obj/item/device/encryptionkey/jtac, VENDOR_ITEM_REGULAR), + list("Medical Radio Encryption Key", 5, /obj/item/device/encryptionkey/med, VENDOR_ITEM_REGULAR), list("Sentry Gun Network Encryption Key", 8, /obj/item/device/encryptionkey/sentry_laptop, VENDOR_ITEM_REGULAR), list("Marine Radio Headset", 5, /obj/item/device/radio/headset/almayer, VENDOR_ITEM_REGULAR), list("Supply Radio Encryption Key", 5, /obj/item/device/encryptionkey/req, VENDOR_ITEM_REGULAR), @@ -448,13 +532,13 @@ //Marine armor handling if(istype(item_to_stock, /obj/item/clothing/suit/storage/marine)) var/obj/item/clothing/suit/storage/marine/AR = item_to_stock - if(AR.pockets && AR.pockets.contents.len) + if(AR.pockets && length(AR.pockets.contents)) to_chat(user, SPAN_WARNING("\The [AR] has something inside it. Empty it before restocking.")) return //Marine helmet handling else if(istype(item_to_stock, /obj/item/clothing/head/helmet/marine)) var/obj/item/clothing/head/helmet/marine/H = item_to_stock - if(H.pockets && H.pockets.contents.len) + if(H.pockets && length(H.pockets.contents)) to_chat(user, SPAN_WARNING("\The [H] has something inside it. Empty it before restocking.")) return @@ -485,33 +569,33 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/training/populate_product_list(scale) listed_products = list( list("PRIMARY FIREARMS", -1, null, null), - list("M4RA Battle Rifle", round(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M37A2 Pump Shotgun", round(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), - list("M39 Submachine Gun", round(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK2", round(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), + list("M4RA Battle Rifle", floor(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M37A2 Pump Shotgun", floor(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), + list("M39 Submachine Gun", floor(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK2", floor(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), list("PRIMARY NONLETHAL AMMUNITION", -1, null, null), - list("Box of Beanbag Shells (12g)", round(scale * 15), /obj/item/ammo_magazine/shotgun/beanbag, VENDOR_ITEM_REGULAR), - list("M4RA Rubber Magazine (10x24mm)", round(scale * 15), /obj/item/ammo_magazine/rifle/m4ra/rubber, VENDOR_ITEM_REGULAR), - list("M39 Rubber Magazine (10x20mm)", round(scale * 25), /obj/item/ammo_magazine/smg/m39/rubber, VENDOR_ITEM_REGULAR), - list("M41A Rubber Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle/rubber, VENDOR_ITEM_REGULAR), + list("Box of Beanbag Shells (12g)", floor(scale * 15), /obj/item/ammo_magazine/shotgun/beanbag, VENDOR_ITEM_REGULAR), + list("M4RA Rubber Magazine (10x24mm)", floor(scale * 15), /obj/item/ammo_magazine/rifle/m4ra/rubber, VENDOR_ITEM_REGULAR), + list("M39 Rubber Magazine (10x20mm)", floor(scale * 25), /obj/item/ammo_magazine/smg/m39/rubber, VENDOR_ITEM_REGULAR), + list("M41A Rubber Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle/rubber, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("SIDEARM NONLETHAL AMMUNITION", -1, null, null), - list("VP70 Rubber Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70/rubber, VENDOR_ITEM_REGULAR), - list("M4A3 Rubber Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/rubber, VENDOR_ITEM_REGULAR), + list("VP70 Rubber Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70/rubber, VENDOR_ITEM_REGULAR), + list("M4A3 Rubber Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/rubber, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", -1, null, null), - list("Rail Flashlight", round(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_RECOMMENDED), - list("Underbarrel Flashlight Grip", round(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_RECOMMENDED), - list("Underslung Grenade Launcher", round(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. + list("Rail Flashlight", floor(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_RECOMMENDED), + list("Underbarrel Flashlight Grip", floor(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_RECOMMENDED), + list("Underslung Grenade Launcher", floor(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. list("UTILITIES", -1, null, null), - list("M07 Training Grenade", round(scale * 15), /obj/item/explosive/grenade/high_explosive/training, VENDOR_ITEM_REGULAR), - list("M15 Rubber Pellet Grenade", round(scale * 10), /obj/item/explosive/grenade/high_explosive/m15/rubber, VENDOR_ITEM_REGULAR), - list("M5 Bayonet", round(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), - list("M94 Marking Flare Pack", round(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_RECOMMENDED) + list("M07 Training Grenade", floor(scale * 15), /obj/item/explosive/grenade/high_explosive/training, VENDOR_ITEM_REGULAR), + list("M15 Rubber Pellet Grenade", floor(scale * 10), /obj/item/explosive/grenade/high_explosive/m15/rubber, VENDOR_ITEM_REGULAR), + list("M5 Bayonet", floor(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", floor(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_RECOMMENDED) ) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm index 6539757051..8d5e7b8359 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm @@ -20,8 +20,6 @@ GLOBAL_LIST_INIT(cm_vending_gear_engi, list( list("Plasteel x10", 7, /obj/item/stack/sheet/plasteel/small_stack, null, VENDOR_ITEM_RECOMMENDED), list("Plastic Explosive", 3, /obj/item/explosive/plastic, null, VENDOR_ITEM_REGULAR), list("Breaching Charge", 5, /obj/item/explosive/plastic/breaching_charge, null, VENDOR_ITEM_RECOMMENDED), - list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("Sandbags x25", 10, /obj/item/stack/sandbags_empty/half, null, VENDOR_ITEM_RECOMMENDED), list("Super-Capacity Power Cell", 10, /obj/item/cell/super, null, VENDOR_ITEM_REGULAR), list("ES-11 Mobile Fuel Canister", 4, /obj/item/tool/weldpack/minitank, null, VENDOR_ITEM_REGULAR), @@ -29,25 +27,34 @@ GLOBAL_LIST_INIT(cm_vending_gear_engi, list( list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 18, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 18, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 9, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 18, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 18, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 20, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 18, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 18, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), list("M40 MFHS Metal Foam Grenade", 5, /obj/item/explosive/grenade/metal_foam, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Packet (x3 grenades)", 16, /obj/item/storage/box/packet/sebb, null, VENDOR_ITEM_REGULAR), - list("AMMUNITION", 0, null, null, null), + list("PRIMARY AMMUNITION", 0, null, null, null), list("M4RA AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), list("M39 AP Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), list("M39 Extended Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), list("M41A AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), list("M41A Extended Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 3, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 3, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 3, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 6, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), + list("ARMORS", 0, null, null, null), - list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/rto, null, VENDOR_ITEM_REGULAR), + list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), @@ -72,6 +79,11 @@ GLOBAL_LIST_INIT(cm_vending_gear_engi, list( list("Motion Detector", 8, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), list("Whistle", 3, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), + list("HELMET OPTICS", 0, null, null, null), list("Medical Helmet Optic", 12, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), @@ -120,12 +132,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_engi, list( list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Mortar Operator Belt", 0, /obj/item/storage/belt/gun/mortarbelt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M277 Pattern Construction Rig", 0, /obj/item/storage/belt/utility/construction, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), @@ -141,6 +154,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_engi, list( list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Engineer kit Pouch", 0, /obj/item/storage/pouch/engikit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), @@ -148,6 +163,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_engi, list( list("Shoulder Holster", 0, /obj/item/clothing/accessory/storage/holster, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("Drop Pouch", 0, /obj/item/clothing/accessory/storage/droppouch, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Small Tool Webbing (Full)", 0, /obj/item/clothing/accessory/storage/tool_webbing/small/equipped, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), list("MASK (CHOOSE 1)", 0, null, null, null), list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), @@ -194,8 +210,10 @@ GLOBAL_LIST_INIT(cm_vending_clothing_engi, list( /obj/item/explosive/plastic, /obj/item/stack/sandbags_empty = 25, /obj/item/stack/sheet/metal/large_stack, - /obj/item/stack/sheet/plasteel/medium_stack, + /obj/item/stack/sheet/plasteel/med_large_stack, + /obj/item/circuitboard/apc, /obj/item/cell/high, /obj/item/tool/shovel/etool/folded, /obj/item/device/lightreplacer, + /obj/item/weapon/gun/smg/nailgun/compact/tactical, ) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm index 81c1941c34..8cb71a5787 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm @@ -16,25 +16,28 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list( list("Basic Engineering Supplies", 0, /obj/item/storage/box/kit/engineering_supply_kit, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), list("ARMORS", 0, null, null, null), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/rto, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 4, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), list("Machete Pouch (Full)", 4, /obj/item/storage/pouch/machete/full, null, VENDOR_ITEM_REGULAR), list("USCM Radio Telephone Pack", 5, /obj/item/storage/backpack/marine/satchel/rto, null, VENDOR_ITEM_REGULAR), list("M276 Pattern Combat Toolbelt Rig", 15, /obj/item/storage/belt/gun/utility, null, VENDOR_ITEM_REGULAR), - list("Night Vision Optic", 20, /obj/item/device/helmet_visor/night_vision, null, VENDOR_ITEM_RECOMMENDED), list("UTILITIES", 0, null, null, null), list("Whistle", 3, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), - list("Range Finder", 3, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 5, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", 3, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Motion Detector", 5, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), list("Fulton Device Stack", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), + list("BINOCULARS", 0, null, null, null), + list("Range Finder", 3, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 5, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), + list("HELMET OPTICS", 0, null, null, null), list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), + list("Medical Helmet Optic", 4, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_RECOMMENDED), + list("Night Vision Optic", 20, /obj/item/device/helmet_visor/night_vision, null, VENDOR_ITEM_RECOMMENDED), list("ENGINEERING SUPPLIES", 0, null, null, null), list("Insulated Gloves", 3, /obj/item/clothing/gloves/yellow, null, VENDOR_ITEM_REGULAR), @@ -50,14 +53,15 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list( list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 18, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 18, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 9, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 20, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), list("M40 MFHS Metal Foam Grenade", 5, /obj/item/explosive/grenade/metal_foam, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Packet (x3 grenades)", 16, /obj/item/storage/box/packet/sebb, null, VENDOR_ITEM_REGULAR), list("MEDICAL SUPPLIES", 0, null, null, null), list("Burn Kit", 2, /obj/item/stack/medical/advanced/ointment, null, VENDOR_ITEM_REGULAR), @@ -74,15 +78,24 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list( list("Injector (Tricord)", 1, /obj/item/reagent_container/hypospray/autoinjector/tricord, null, VENDOR_ITEM_REGULAR), list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), - list("Medical Helmet Optic", 4, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_RECOMMENDED), list("Roller Bed", 2, /obj/item/roller, null, VENDOR_ITEM_REGULAR), - list("SPECIAL AMMUNITION", 0, null, null, null), + list("PRIMARY AMMUNITION", 0, null, null, null), list("M4RA AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), list("M39 AP Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), list("M39 Extended Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), list("M41A AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), list("M41A Extended Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), + + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 3, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 3, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 3, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 6, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), + + list("SPECIAL AMMUNITION", 0, null, null, null), list("M240 Incinerator Tank (Napthal)", 3, /obj/item/ammo_magazine/flamer_tank, null, VENDOR_ITEM_REGULAR), list("M240 Incinerator Tank (B-Gel)", 3, /obj/item/ammo_magazine/flamer_tank/gellied, null, VENDOR_ITEM_REGULAR), @@ -115,7 +128,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list( GLOBAL_LIST_INIT(cm_vending_clothing_leader, list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/leader), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("B12 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/leader, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("B12 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/medium/leader, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), @@ -131,7 +144,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_leader, list( list("M276 Lifesaver Bag", 0, /obj/item/storage/belt/medical/lifesaver, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Medical Storage Rig", 0, /obj/item/storage/belt/medical, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm index 465edd3c24..f83c0c1de4 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm @@ -48,24 +48,33 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list( list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 18, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 18, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 9, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 20, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Packet (x3 grenades)", 16, /obj/item/storage/box/packet/sebb, null, VENDOR_ITEM_REGULAR), - list("AMMUNITION", 0, null, null, null), + list("PRIMARY AMMUNITION", 0, null, null, null), list("M4RA AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), list("M39 AP Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), list("M39 Extended Magazine (10x20mm)", 6, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), list("M41A AP Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), list("M41A Extended Magazine (10x24mm)", 6, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 6, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 3, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 3, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 3, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 6, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), + list("ARMORS", 0, null, null, null), - list("M3 B12 Pattern Marine Armor", 28, /obj/item/clothing/suit/storage/marine/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 28, /obj/item/clothing/suit/storage/marine/rto, null, VENDOR_ITEM_REGULAR), + list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), @@ -79,12 +88,15 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list( list("Welding Goggles", 3, /obj/item/clothing/glasses/welding, null, VENDOR_ITEM_REGULAR), list("UTILITIES", 0, null, null, null), - list("Range Finder", 6, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 8, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", 3, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Motion Detector", 8, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), list("Whistle", 3, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), + list("HELMET OPTICS", 0, null, null, null), list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), @@ -117,8 +129,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list( list("Essential Medical Set", 0, /obj/effect/essentials_set/medic, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Standard Marine Apparel", 0, list(/obj/item/clothing/gloves/marine, /obj/item/clothing/head/helmet/marine/medic), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR), + list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("ARMOR (CHOOSE 1)", 0, null, null, null), @@ -126,6 +138,10 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list( list("Medium Armor", 0, /obj/item/clothing/suit/storage/marine/medium, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_RECOMMENDED), list("Heavy Armor", 0, /obj/item/clothing/suit/storage/marine/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("M10 Corpsman Helmet", 0, /obj/item/clothing/head/helmet/marine/medic, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("M10 White Corpsman Helmet", 0, /obj/item/clothing/head/helmet/marine/medic/white, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("BACKPACK (CHOOSE 1)", 0, null, null, null), list("Medical Backpack", 0, /obj/item/storage/backpack/marine/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), list("Medical Satchel", 0, /obj/item/storage/backpack/marine/satchel/medic, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), @@ -136,7 +152,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list( list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -211,6 +227,8 @@ GLOBAL_LIST_INIT(cm_vending_clothing_medic, list( /obj/item/storage/surgical_case/regular, /obj/item/reagent_container/blood/OMinus, /obj/item/reagent_container/blood/OMinus, + /obj/item/device/flashlight/pen, + /obj/item/clothing/accessory/stethoscope, /obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated, /obj/item/reagent_container/hypospray/autoinjector/adrenaline_concentrated, ) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm index 8ec93ab581..24297b7682 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_prep.dm @@ -7,7 +7,7 @@ desc = "An automated weapon rack hooked up to a big storage of standard-issue weapons." icon_state = "guns" req_access = list() - req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_CARGO) + req_one_access = list(ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP) hackable = TRUE vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND @@ -17,40 +17,68 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/populate_product_list(scale) listed_products = list( list("PRIMARY FIREARMS", -1, null, null), - list("M4RA Battle Rifle", round(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M37A2 Pump Shotgun", round(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), - list("M39 Submachine Gun", round(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK2", round(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), + list("M4RA Battle Rifle", floor(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M37A2 Pump Shotgun", floor(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), + list("M39 Submachine Gun", floor(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK2", floor(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), list("PRIMARY AMMUNITION", -1, null, null), - list("Box of Flechette Shells (12g)", round(scale * 4), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), - list("Box of Buckshot Shells (12g)", round(scale * 10), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), - list("Box of Shotgun Slugs (12g)", round(scale * 10), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), - list("M4RA Magazine (10x24mm)", round(scale * 15), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M39 HV Magazine (10x20mm)", round(scale * 25), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), + list("Box of Flechette Shells (12g)", floor(scale * 4), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), + list("Box of Buckshot Shells (12g)", floor(scale * 10), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), + list("Box of Shotgun Slugs (12g)", floor(scale * 10), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), + list("M4RA Magazine (10x24mm)", floor(scale * 15), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M39 HV Magazine (10x20mm)", floor(scale * 25), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Combat Revolver", round(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), - list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), - list("M82F Flare Gun", round(scale * 10), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Combat Revolver", floor(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), + list("M82F Flare Gun", floor(scale * 10), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("VP70 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), - list("M4A3 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Speedloader (.44)", floor(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), + list("M4A3 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", -1, null, null), - list("M39 Folding Stock", round(scale * 10), /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), - list("M41A Folding Stock", round(scale * 10), /obj/item/attachable/stock/rifle/collapsible, VENDOR_ITEM_REGULAR), - list("Rail Flashlight", round(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_RECOMMENDED), - list("Underbarrel Flashlight Grip", round(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_RECOMMENDED), - list("Underslung Grenade Launcher", round(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. + list("M39 Folding Stock", floor(scale * 10), /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), + list("M41A Folding Stock", floor(scale * 10), /obj/item/attachable/stock/rifle/collapsible, VENDOR_ITEM_REGULAR), + list("Rail Flashlight", floor(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_RECOMMENDED), + list("Underbarrel Flashlight Grip", floor(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_RECOMMENDED), + list("Underslung Grenade Launcher", floor(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. list("UTILITIES", -1, null, null), - list("M5 Bayonet", round(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), - list("M94 Marking Flare Pack", round(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_RECOMMENDED) + list("M5 Bayonet", floor(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", floor(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_RECOMMENDED) + ) + +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial + name = "\improper ColMarTech Automated Weapons Rack" + desc = "An automated weapon rack hooked up to a big storage of standard-issue weapons." + icon_state = "guns" + req_access = list(ACCESS_TUTORIAL_LOCKED) + req_one_access = list() + hackable = FALSE + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND + +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial/populate_product_list(scale) + listed_products = list( + list("PRIMARY FIREARMS", -1, null, null), + list("M41A Pulse Rifle MK2", 1, /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), + + list("PRIMARY AMMUNITION", -1, null, null), + list("M41A Magazine (10x24mm)", 1, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_RECOMMENDED), + ) + +/// Called if the tutorial mob somehow uses an entire magazine without the xeno dying +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/tutorial/proc/load_ammo() + listed_products = list( + list("PRIMARY FIREARMS", -1, null, null), + list("M41A Pulse Rifle MK2", 0, /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_RECOMMENDED), + + list("PRIMARY AMMUNITION", -1, null, null), + list("M41A Magazine (10x24mm)", 99, /obj/item/ammo_magazine/rifle, VENDOR_ITEM_RECOMMENDED), ) //------------SQUAD PREP UNIFORM VENDOR--------------- @@ -63,6 +91,7 @@ req_one_access = list() listed_products = list() hackable = TRUE + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_STOCK_DYNAMIC /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/ui_state(mob/user) return GLOB.not_incapacitated_and_adjacent_strict_state @@ -70,70 +99,73 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/populate_product_list(scale) listed_products = list( list("STANDARD EQUIPMENT", -1, null, null, null), - list("Marine Combat Boots", round(scale * 15), /obj/item/clothing/shoes/marine/knife, VENDOR_ITEM_REGULAR), - list("USCM Uniform", round(scale * 15), /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), - list("Marine Combat Gloves", round(scale * 15), /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), - list("M10 Pattern Marine Helmet", round(scale * 15), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), - list("Marine Radio Headset", round(scale * 15), /obj/item/device/radio/headset/almayer/marine, VENDOR_ITEM_REGULAR), + list("Marine Combat Boots", floor(scale * 15), /obj/item/clothing/shoes/marine/knife, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Boots", floor(scale * 15), /obj/item/clothing/shoes/marine/brown, VENDOR_ITEM_REGULAR), + list("USCM Uniform", floor(scale * 15), /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), + list("Marine Combat Gloves", floor(scale * 15), /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Gloves", floor(scale * 15), /obj/item/clothing/gloves/marine/brown, VENDOR_ITEM_REGULAR), + list("Marine Black Combat Gloves", floor(scale * 15), /obj/item/clothing/gloves/marine/black, VENDOR_ITEM_REGULAR), + list("Marine Radio Headset", floor(scale * 15), /obj/item/device/radio/headset/almayer, VENDOR_ITEM_REGULAR), + list("M10 Pattern Marine Helmet", floor(scale * 15), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), list("WEBBINGS", -1, null, null), - list("Brown Webbing Vest", round(scale * 1.25), /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR), - list("Black Webbing Vest", round(max(1,(scale * 0.5))), /obj/item/clothing/accessory/storage/black_vest, VENDOR_ITEM_REGULAR), - list("Webbing", round(scale * 2), /obj/item/clothing/accessory/storage/webbing, VENDOR_ITEM_REGULAR), - list("Drop Pouch", round(max(1,(scale * 0.5))), /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), - list("Shoulder Holster", round(max(1,(scale * 0.5))), /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), + list("Brown Webbing Vest", 1, /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR), + list("Black Webbing Vest", 1, /obj/item/clothing/accessory/storage/black_vest, VENDOR_ITEM_REGULAR), + list("Webbing", floor(scale * 2), /obj/item/clothing/accessory/storage/webbing, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 0.75, /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", 0.75, /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), list("ARMOR", -1, null, null), - list("M3 Pattern Carrier Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/carrier, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padded Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/padded, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padless Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/padless, VENDOR_ITEM_REGULAR), - list("M3 Pattern Ridged Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/padless_lines, VENDOR_ITEM_REGULAR), - list("M3 Pattern Skull Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/skull, VENDOR_ITEM_REGULAR), - list("M3 Pattern Smooth Marine Armor", round(scale * 15), /obj/item/clothing/suit/storage/marine/smooth, VENDOR_ITEM_REGULAR), - list("M3-EOD Pattern Heavy Armor", round(scale * 10), /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), - list("M3-L Pattern Light Armor", round(scale * 10), /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), + list("M3 Pattern Carrier Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/carrier, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padded Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/padded, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padless Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/padless, VENDOR_ITEM_REGULAR), + list("M3 Pattern Ridged Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/padless_lines, VENDOR_ITEM_REGULAR), + list("M3 Pattern Skull Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/skull, VENDOR_ITEM_REGULAR), + list("M3 Pattern Smooth Marine Armor", floor(scale * 15), /obj/item/clothing/suit/storage/marine/medium/smooth, VENDOR_ITEM_REGULAR), + list("M3-EOD Pattern Heavy Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), + list("M3-L Pattern Light Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), list("BACKPACK", -1, null, null, null), - list("Lightweight IMP Backpack", round(scale * 15), /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), - list("USCM Technician Backpack", round(scale * 15), /obj/item/storage/backpack/marine/tech, VENDOR_ITEM_REGULAR), - list("USCM Satchel", round(scale * 15), /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), - list("Technician Chestrig", round(scale * 15), /obj/item/storage/backpack/marine/satchel/tech, VENDOR_ITEM_REGULAR), + list("Lightweight IMP Backpack", floor(scale * 15), /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), + list("Technician Backpack", floor(scale * 15), /obj/item/storage/backpack/marine/tech, VENDOR_ITEM_REGULAR), + list("USCM Satchel", floor(scale * 15), /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), + list("USCM Technical Satchel", floor(scale * 15), /obj/item/storage/backpack/marine/satchel/tech, VENDOR_ITEM_REGULAR), list("RESTRICTED BACKPACKS", -1, null, null), - list("Radio Telephone Backpack", round(max(1,(scale * 0.5))), /obj/item/storage/backpack/marine/satchel/rto, VENDOR_ITEM_REGULAR), + list("Radio Telephone Backpack", 0.75, /obj/item/storage/backpack/marine/satchel/rto, VENDOR_ITEM_REGULAR), list("BELTS", -1, null, null), - list("M276 Pattern Ammo Load Rig", round(scale * 15), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), - list("M276 Pattern M40 Grenade Rig", round(scale * 10), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), - list("M276 Pattern General Pistol Holster Rig", round(scale * 15), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), - list("M276 Pattern M44 Holster Rig", round(scale * 15), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), - list("M276 Pattern M82F Holster Rig", round(scale * 5), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), - list("M276 G8-A General Utility Pouch", round(scale * 15), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), + list("M276 Pattern Ammo Load Rig", floor(scale * 15), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), + list("M276 Pattern M40 Grenade Rig", floor(scale * 10), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Pistol Holster Rig", floor(scale * 15), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Revolver Holster Rig", floor(scale * 15), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), + list("M276 Pattern M82F Holster Rig", floor(scale * 5), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), + list("M276 G8-A General Utility Pouch", floor(scale * 15), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), list("POUCHES", -1, null, null, null), - list("First-Aid Pouch (Splints, Gauze, Ointment)", round(scale * 15), /obj/item/storage/pouch/firstaid/full/alternate, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Pill Packets)", round(scale * 15), /obj/item/storage/pouch/firstaid/full/pills, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Injectors)", round(scale * 15), /obj/item/storage/pouch/firstaid/full, VENDOR_ITEM_REGULAR), - list("Flare Pouch (Full)", round(scale * 15), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), - list("Magazine Pouch", round(scale * 15), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), - list("Medium General Pouch", round(scale * 15), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), - list("Pistol Magazine Pouch", round(scale * 15), /obj/item/storage/pouch/magazine/pistol, VENDOR_ITEM_REGULAR), - list("Pistol Pouch", round(scale * 15), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Splints, Gauze, Ointment)", floor(scale * 15), /obj/item/storage/pouch/firstaid/full/alternate, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", floor(scale * 15), /obj/item/storage/pouch/firstaid/full/pills, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Injectors)", floor(scale * 15), /obj/item/storage/pouch/firstaid/full, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", floor(scale * 15), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", floor(scale * 15), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", floor(scale * 15), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), + list("Pistol Magazine Pouch", floor(scale * 15), /obj/item/storage/pouch/magazine/pistol, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", floor(scale * 15), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), list("RESTRICTED POUCHES", -1, null, null, null), - list("Construction Pouch", round(scale * 1.25), /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), - list("Explosive Pouch", round(scale * 1.25), /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), - list("First Responder Pouch (Empty)", round(scale * 2.5), /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), - list("Large Pistol Magazine Pouch", round(scale * 2), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), - list("Tools Pouch", round(scale * 1.25), /obj/item/storage/pouch/tools, VENDOR_ITEM_REGULAR), - list("Sling Pouch", round(scale * 1.25), /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), + list("Construction Pouch", 1.25, /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), + list("Explosive Pouch", 1.25, /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), + list("First Responder Pouch (Empty)", 2.5, /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", floor(scale * 2), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), + list("Tools Pouch", 1.25, /obj/item/storage/pouch/tools, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 1.25, /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), list("MASK", -1, null, null, null), - list("M5 Standalone Gas Mask", round(scale * 15), /obj/item/clothing/mask/gas/m5, VENDOR_ITEM_REGULAR), - list("M5 Integrated Gas Mask", round(scale * 10), /obj/item/prop/helmetgarb/helmet_gasmask, VENDOR_ITEM_REGULAR), - list("Tactical Wrap", round(scale * 10), /obj/item/clothing/mask/rebreather/scarf/tacticalmask, VENDOR_ITEM_REGULAR), - list("Heat Absorbent Coif", round(scale * 10), /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), - list("Rebreather", round(scale * 10), /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("M5 Standalone Gas Mask", floor(scale * 15), /obj/item/clothing/mask/gas/m5, VENDOR_ITEM_REGULAR), + list("M5 Integrated Gas Mask", floor(scale * 10), /obj/item/prop/helmetgarb/helmet_gasmask, VENDOR_ITEM_REGULAR), + list("Tactical Wrap", floor(scale * 10), /obj/item/clothing/mask/rebreather/scarf/tacticalmask, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", floor(scale * 10), /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), + list("Rebreather", floor(scale * 10), /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), list("MISCELLANEOUS", -1, null, null, null), list("Ballistic goggles", round(scale * 10), /obj/item/clothing/glasses/mgoggles, VENDOR_ITEM_REGULAR), @@ -314,6 +346,7 @@ req_one_access = list(ACCESS_MARINE_BRAVO, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/bravo/populate_product_list(scale) + ..() listed_products += list( list("HEADSET", -1, null, null), list("Marine Bravo Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/bravo, VENDOR_ITEM_REGULAR), @@ -324,6 +357,7 @@ req_one_access = list(ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/charlie/populate_product_list(scale) + ..() listed_products += list( list("HEADSET", -1, null, null), list("Marine Charlie Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/charlie, VENDOR_ITEM_REGULAR), @@ -334,6 +368,7 @@ req_one_access = list(ACCESS_MARINE_DELTA, ACCESS_MARINE_DATABASE, ACCESS_MARINE_CARGO) /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/delta/populate_product_list(scale) + ..() listed_products += list( list("HEADSET", -1, null, null), list("Marine Delta Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/delta, VENDOR_ITEM_REGULAR), @@ -347,7 +382,7 @@ req_access = list(ACCESS_MARINE_ALPHA) req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_SPECPREP, ACCESS_MARINE_RO) hackable = TRUE - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_STOCK_DYNAMIC vend_x_offset = 2 @@ -358,28 +393,29 @@ /obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad/populate_product_list(scale) listed_products = list( list("ARMOR-PIERCING AMMUNITION", -1, null, null), - list("M4RA AP Magazine (10x24mm)", round(scale * 3.5), /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), - list("M39 AP Magazine (10x20mm)", round(scale * 3), /obj/item/ammo_magazine/smg/m39/ap, VENDOR_ITEM_REGULAR), - list("M41A AP Magazine (10x24mm)", round(scale * 3), /obj/item/ammo_magazine/rifle/ap, VENDOR_ITEM_REGULAR), + list("M4RA AP Magazine (10x24mm)", 3.5, /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), + list("M39 AP Magazine (10x20mm)", floor(scale * 3), /obj/item/ammo_magazine/smg/m39/ap, VENDOR_ITEM_REGULAR), + list("M41A AP Magazine (10x24mm)", floor(scale * 3), /obj/item/ammo_magazine/rifle/ap, VENDOR_ITEM_REGULAR), list("EXTENDED AMMUNITION", -1, null, null), - list("M39 Extended Magazine (10x20mm)", round(scale * 1.8), /obj/item/ammo_magazine/smg/m39/extended, VENDOR_ITEM_REGULAR), - list("M41A Extended Magazine (10x24mm)", round(scale * 1.9), /obj/item/ammo_magazine/rifle/extended, VENDOR_ITEM_REGULAR), + list("M39 Extended Magazine (10x20mm)", 1.8, /obj/item/ammo_magazine/smg/m39/extended, VENDOR_ITEM_REGULAR), + list("M41A Extended Magazine (10x24mm)", 1.9, /obj/item/ammo_magazine/rifle/extended, VENDOR_ITEM_REGULAR), list("SPECIAL AMMUNITION", -1, null, null), list("M56 Smartgun Drum", 1, /obj/item/ammo_magazine/smartgun, VENDOR_ITEM_REGULAR), - list("M44 Heavy Speed Loader (.44)", round(scale * 2), /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), - list("M44 Marksman Speed Loader (.44)", round(scale * 2), /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), + list("M44 Heavy Speed Loader (.44)", floor(scale * 2), /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", floor(scale * 2), /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARM AMMUNITION", -1, null, null), - list("VP78 Magazine", round(scale * 5), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), - list("SU-6 Smartpistol Magazine (.45)", round(scale * 5), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), - list("M240 Incinerator Tank", round(scale * 3), /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), - list("M56D Drum Magazine", round(scale * 2), /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), - list("M2C Box Magazine", round(scale * 2), /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR), - list("HIRR Baton Slugs", round(scale * 6), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), - list("M74 AGM-S Star Shell", round(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/starshell, VENDOR_ITEM_REGULAR), - list("M74 AGM-S Hornet Shell", round(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/hornet_shell, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", floor(scale * 5), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", floor(scale * 5), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), + list("M240 Incinerator Tank", floor(scale * 3), /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), + list("M56D Drum Magazine", floor(scale * 2), /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), + list("M2C Box Magazine", floor(scale * 2), /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR), + list("Box of Breaching Shells (16g)", floor(scale * 2), /obj/item/ammo_magazine/shotgun/light/breaching, VENDOR_ITEM_REGULAR), + list("HIRR Baton Slugs", floor(scale * 6), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), + list("M74 AGM-S Star Shell", floor(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/starshell, VENDOR_ITEM_REGULAR), + list("M74 AGM-S Hornet Shell", floor(scale * 4), /obj/item/explosive/grenade/high_explosive/airburst/hornet_shell, VENDOR_ITEM_REGULAR), ) //--------------SQUAD ARMAMENTS VENDOR-------------- @@ -393,7 +429,7 @@ vend_x_offset = 2 vend_y_offset = 1 - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_STOCK_DYNAMIC /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/ui_state(mob/user) return GLOB.not_incapacitated_and_adjacent_strict_state @@ -401,8 +437,8 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/populate_product_list(scale) listed_products = list( list("FOOD", -1, null, null), - list("MRE", round(scale * 5), /obj/item/storage/box/MRE, VENDOR_ITEM_REGULAR), - list("MRE Box", round(scale * 1), /obj/item/ammo_box/magazine/misc/mre, VENDOR_ITEM_REGULAR), + list("MRE", floor(scale * 5), /obj/item/storage/box/MRE, VENDOR_ITEM_REGULAR), + list("MRE Box", floor(scale * 1), /obj/item/ammo_box/magazine/misc/mre, VENDOR_ITEM_REGULAR), list("TOOLS", -1, null, null), list("Entrenching Tool (ET)", round(scale * 2), /obj/item/tool/shovel/etool/folded, VENDOR_ITEM_REGULAR), @@ -590,6 +626,7 @@ req_access = list(ACCESS_MARINE_ALPHA) req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_SPECPREP, ACCESS_MARINE_RO) hackable = TRUE + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_STOCK_DYNAMIC vend_y_offset = 1 @@ -599,36 +636,36 @@ /obj/structure/machinery/cm_vending/sorted/attachments/squad/populate_product_list(scale) listed_products = list( list("BARREL", -1, null, null), - list("Extended Barrel", round(scale * 2.5), /obj/item/attachable/extended_barrel, VENDOR_ITEM_REGULAR), - list("Recoil Compensator", round(scale * 2.5), /obj/item/attachable/compensator, VENDOR_ITEM_REGULAR), - list("Suppressor", round(scale * 2.5), /obj/item/attachable/suppressor, VENDOR_ITEM_REGULAR), + list("Extended Barrel", 2.5, /obj/item/attachable/extended_barrel, VENDOR_ITEM_REGULAR), + list("Recoil Compensator", 2.5, /obj/item/attachable/compensator, VENDOR_ITEM_REGULAR), + list("Suppressor", 2.5, /obj/item/attachable/suppressor, VENDOR_ITEM_REGULAR), list("RAIL", -1, null, null), - list("B8 Smart-Scope", round(scale * 1.5), /obj/item/attachable/scope/mini_iff, VENDOR_ITEM_REGULAR), - list("Magnetic Harness", round(scale * 4), /obj/item/attachable/magnetic_harness, VENDOR_ITEM_REGULAR), - list("S4 2x Telescopic Mini-Scope", round(scale * 2), /obj/item/attachable/scope/mini, VENDOR_ITEM_REGULAR), - list("S5 Red-Dot Sight", round(scale * 3), /obj/item/attachable/reddot, VENDOR_ITEM_REGULAR), - list("S6 Reflex Sight", round(scale * 3), /obj/item/attachable/reflex, VENDOR_ITEM_REGULAR), - list("S8 4x Telescopic Scope", round(scale * 2), /obj/item/attachable/scope, VENDOR_ITEM_REGULAR), + list("B8 Smart-Scope", 1.5, /obj/item/attachable/scope/mini_iff, VENDOR_ITEM_REGULAR), + list("Magnetic Harness", 4, /obj/item/attachable/magnetic_harness, VENDOR_ITEM_REGULAR), + list("S4 2x Telescopic Mini-Scope", 2, /obj/item/attachable/scope/mini, VENDOR_ITEM_REGULAR), + list("S5 Red-Dot Sight", 3, /obj/item/attachable/reddot, VENDOR_ITEM_REGULAR), + list("S6 Reflex Sight", 3, /obj/item/attachable/reflex, VENDOR_ITEM_REGULAR), + list("S8 4x Telescopic Scope", 2, /obj/item/attachable/scope, VENDOR_ITEM_REGULAR), list("UNDERBARREL", -1, null, null), - list("Angled Grip", round(scale * 2.5), /obj/item/attachable/angledgrip, VENDOR_ITEM_REGULAR), - list("Bipod", round(scale * 2.5), /obj/item/attachable/bipod, VENDOR_ITEM_REGULAR), - list("Burst Fire Assembly", round(scale * 1.5), /obj/item/attachable/burstfire_assembly, VENDOR_ITEM_REGULAR), - list("Gyroscopic Stabilizer", round(scale * 1.5), /obj/item/attachable/gyro, VENDOR_ITEM_REGULAR), - list("Laser Sight", round(scale * 3), /obj/item/attachable/lasersight, VENDOR_ITEM_REGULAR), - list("Mini Flamethrower", round(scale * 1.5), /obj/item/attachable/attached_gun/flamer, VENDOR_ITEM_REGULAR), - list("XM-VESG-1 Flamer Nozzle", round(scale * 1.5), /obj/item/attachable/attached_gun/flamer_nozzle, VENDOR_ITEM_REGULAR), - list("U7 Underbarrel Shotgun", round(scale * 1.5), /obj/item/attachable/attached_gun/shotgun, VENDOR_ITEM_REGULAR), - list("Underbarrel Extinguisher", round(scale * 1.5), /obj/item/attachable/attached_gun/extinguisher, VENDOR_ITEM_REGULAR), - list("Vertical Grip", round(scale * 3), /obj/item/attachable/verticalgrip, VENDOR_ITEM_REGULAR), + list("Angled Grip", 2.5, /obj/item/attachable/angledgrip, VENDOR_ITEM_REGULAR), + list("Bipod", 2.5, /obj/item/attachable/bipod, VENDOR_ITEM_REGULAR), + list("Burst Fire Assembly", 1.5, /obj/item/attachable/burstfire_assembly, VENDOR_ITEM_REGULAR), + list("Gyroscopic Stabilizer", 1.5, /obj/item/attachable/gyro, VENDOR_ITEM_REGULAR), + list("Laser Sight", 3, /obj/item/attachable/lasersight, VENDOR_ITEM_REGULAR), + list("Mini Flamethrower", 1.5, /obj/item/attachable/attached_gun/flamer, VENDOR_ITEM_REGULAR), + list("XM-VESG-1 Flamer Nozzle", 1.5, /obj/item/attachable/attached_gun/flamer_nozzle, VENDOR_ITEM_REGULAR), + list("U7 Underbarrel Shotgun", 1.5, /obj/item/attachable/attached_gun/shotgun, VENDOR_ITEM_REGULAR), + list("Underbarrel Extinguisher", 1.5, /obj/item/attachable/attached_gun/extinguisher, VENDOR_ITEM_REGULAR), + list("Vertical Grip", 3, /obj/item/attachable/verticalgrip, VENDOR_ITEM_REGULAR), list("STOCK", -1, null, null), - list("M37 Wooden Stock", round(scale * 1.5), /obj/item/attachable/stock/shotgun, VENDOR_ITEM_REGULAR), - list("M39 Arm Brace", round(scale * 1.5), /obj/item/attachable/stock/smg/collapsible/brace, VENDOR_ITEM_REGULAR), - list("M39 Stock", round(scale * 1.5), /obj/item/attachable/stock/smg, VENDOR_ITEM_REGULAR), - list("M41A Solid Stock", round(scale * 1.5), /obj/item/attachable/stock/rifle, VENDOR_ITEM_REGULAR), - list("M44 Magnum Sharpshooter Stock", round(scale * 1.5), /obj/item/attachable/stock/revolver, VENDOR_ITEM_REGULAR) + list("M37 Wooden Stock", 1.5, /obj/item/attachable/stock/shotgun, VENDOR_ITEM_REGULAR), + list("M39 Arm Brace", 1.5, /obj/item/attachable/stock/smg/collapsible/brace, VENDOR_ITEM_REGULAR), + list("M39 Stock", 1.5, /obj/item/attachable/stock/smg, VENDOR_ITEM_REGULAR), + list("M41A Solid Stock", 1.5, /obj/item/attachable/stock/rifle, VENDOR_ITEM_REGULAR), + list("M44 Magnum Sharpshooter Stock", 1.5, /obj/item/attachable/stock/revolver, VENDOR_ITEM_REGULAR) ) //------------ESSENTIAL SETS--------------- @@ -651,3 +688,105 @@ /obj/item/clothing/suit/storage/marine/heavy/skull, /obj/item/clothing/suit/storage/marine/heavy/smooth, ) + +//------------MARINE CIVILIAN CLOTHING--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_marine_snowflake, list( + list("SHIRTS AND UNIFORMS", 0, null, null, null), + list("White T-Shirt and Brown Jeans", 12, /obj/item/clothing/under/tshirt/w_br, null, VENDOR_ITEM_REGULAR), + list("Gray T-Shirt and Blue Jeans", 12, /obj/item/clothing/under/tshirt/gray_blu, null, VENDOR_ITEM_REGULAR), + list("Red T-Shirt and Black Jeans", 12, /obj/item/clothing/under/tshirt/r_bla, null, VENDOR_ITEM_REGULAR), + list("Frontier Jumpsuit", 12, /obj/item/clothing/under/rank/synthetic/frontier, null, VENDOR_ITEM_REGULAR), + list("UA Grey Jumpsuit", 12, /obj/item/clothing/under/colonist/ua_civvies, null, VENDOR_ITEM_REGULAR), + list("UA Brown Jumpsuit", 12, /obj/item/clothing/under/colonist/wy_davisone, null, VENDOR_ITEM_REGULAR), + list("UA Green Utility Uniform", 12, /obj/item/clothing/under/rank/synthetic/utility, null, VENDOR_ITEM_REGULAR), + list("Grey Utilities", 12, /obj/item/clothing/under/rank/synthetic/utility/yellow, null, VENDOR_ITEM_REGULAR), + list("Grey Utilities and Blue Jeans", 12, /obj/item/clothing/under/rank/synthetic/utility/red, null, VENDOR_ITEM_REGULAR), + list("Blue Utilities and Brown Jeans", 12, /obj/item/clothing/under/rank/synthetic/utility/blue, null, VENDOR_ITEM_REGULAR), + list("White Service Uniform", 12, /obj/item/clothing/under/colonist/white_service, null, VENDOR_ITEM_REGULAR), + list("Steward Clothes", 12, /obj/item/clothing/under/colonist/wy_joliet_shopsteward, null, VENDOR_ITEM_REGULAR), + list("Red Dress Skirt", 12, /obj/item/clothing/under/blackskirt, null, VENDOR_ITEM_REGULAR), + list("Blue Suit Pants", 12, /obj/item/clothing/under/liaison_suit/blue, null, VENDOR_ITEM_REGULAR), + list("Brown Suit Pants", 12, /obj/item/clothing/under/liaison_suit/brown, null, VENDOR_ITEM_REGULAR), + list("White Suit Pants", 12, /obj/item/clothing/under/liaison_suit/corporate_formal, null, VENDOR_ITEM_REGULAR), + list("Working Joe Uniform", 36, /obj/item/clothing/under/rank/synthetic/joe, null, VENDOR_ITEM_REGULAR), + + list("GLASSES", 0, null, null, null), + list("Marine RPG Glasses", 12, /obj/item/clothing/glasses/regular, null, VENDOR_ITEM_REGULAR), + list("Sunglasses", 12, /obj/item/clothing/glasses/sunglasses, null, VENDOR_ITEM_REGULAR), + + list("SHOES", 0, null, null, null), + list("Boots", 12, /obj/item/clothing/shoes/marine, null, VENDOR_ITEM_REGULAR), + list("Shoes, Black", 12, /obj/item/clothing/shoes/black, null, VENDOR_ITEM_REGULAR), + list("Shoes, Blue", 12, /obj/item/clothing/shoes/blue, null, VENDOR_ITEM_REGULAR), + list("Shoes, Brown", 12, /obj/item/clothing/shoes/brown, null, VENDOR_ITEM_REGULAR), + list("Shoes, Green", 12, /obj/item/clothing/shoes/green, null, VENDOR_ITEM_REGULAR), + list("Shoes, Purple", 12, /obj/item/clothing/shoes/purple, null, VENDOR_ITEM_REGULAR), + list("Shoes, Red", 12, /obj/item/clothing/shoes/red, null, VENDOR_ITEM_REGULAR), + list("Shoes, White", 12, /obj/item/clothing/shoes/white, null, VENDOR_ITEM_REGULAR), + list("Shoes, Yellow", 12, /obj/item/clothing/shoes/yellow, null, VENDOR_ITEM_REGULAR), + + list("HEADWEAR", 0, null, null, null), + list("Beanie", 12, /obj/item/clothing/head/beanie, null, VENDOR_ITEM_REGULAR), + list("Beret, Engineering", 12, /obj/item/clothing/head/beret/eng, null, VENDOR_ITEM_REGULAR), + list("Beret, Purple", 12, /obj/item/clothing/head/beret/jan, null, VENDOR_ITEM_REGULAR), + list("Beret, Red", 12, /obj/item/clothing/head/beret/cm/red, null, VENDOR_ITEM_REGULAR), + list("Beret, Standard", 12, /obj/item/clothing/head/beret/cm, null, VENDOR_ITEM_REGULAR), + list("Beret, Tan", 12, /obj/item/clothing/head/beret/cm/tan, null, VENDOR_ITEM_REGULAR), + list("Beret, Green", 12, /obj/item/clothing/head/beret/cm, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Beret, Black", 12, /obj/item/clothing/head/beret/cm/black, null, VENDOR_ITEM_REGULAR), + list("Beret, White", 12, /obj/item/clothing/head/beret/cm/white, null, VENDOR_ITEM_REGULAR), + list("Ushanka", 12, /obj/item/clothing/head/ushanka, null, VENDOR_ITEM_REGULAR), + list("Cap", 12, /obj/item/clothing/head/cmcap, null, VENDOR_ITEM_REGULAR), + list("Fedora", 12, /obj/item/clothing/head/fedora, null, VENDOR_ITEM_REGULAR), + + list("SUIT", 0, null, null, null), + list("Bomber Jacket, Brown", 12, /obj/item/clothing/suit/storage/bomber, null, VENDOR_ITEM_REGULAR), + list("Bomber Jacket, Black", 12, /obj/item/clothing/suit/storage/bomber/alt, null, VENDOR_ITEM_REGULAR), + list("External Webbing", 12, /obj/item/clothing/suit/storage/webbing, null, VENDOR_ITEM_REGULAR), + list("Utility Vest", 12, /obj/item/clothing/suit/storage/utility_vest, null, VENDOR_ITEM_REGULAR), + list("Hazard Vest(Orange)", 12, /obj/item/clothing/suit/storage/hazardvest, null, VENDOR_ITEM_REGULAR), + list("Hazard Vest(Blue)", 12, /obj/item/clothing/suit/storage/hazardvest/blue, null, VENDOR_ITEM_REGULAR), + list("Hazard Vest(Yellow)", 12, /obj/item/clothing/suit/storage/hazardvest/yellow, null, VENDOR_ITEM_REGULAR), + list("Hazard Vest(Black)", 12, /obj/item/clothing/suit/storage/hazardvest/black, null, VENDOR_ITEM_REGULAR), + list("USCM Service Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/service, null, VENDOR_ITEM_REGULAR), + list("Windbreaker, Brown", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_brown, null, VENDOR_ITEM_REGULAR), + list("Windbreaker, Grey", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_gray, null, VENDOR_ITEM_REGULAR), + list("Windbreaker, Green", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_green, null, VENDOR_ITEM_REGULAR), + list("Windbreaker, First Responder", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_fr, null, VENDOR_ITEM_REGULAR), + list("Windbreaker, Exploration", 12, /obj/item/clothing/suit/storage/windbreaker/windbreaker_covenant, null, VENDOR_ITEM_REGULAR), + list("Black Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/black, null, VENDOR_ITEM_REGULAR), + list("Brown Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, null, VENDOR_ITEM_REGULAR), + list("Blue Suit Jacket", 12, /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, null, VENDOR_ITEM_REGULAR), + list("Brown Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest, null, VENDOR_ITEM_REGULAR), + list("Tan Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest/tan, null, VENDOR_ITEM_REGULAR), + list("Grey Vest", 12, /obj/item/clothing/suit/storage/jacket/marine/vest/grey, null, VENDOR_ITEM_REGULAR), + + list("BACKPACK", 0, null, null, null), + list("Backpack, Industrial", 12, /obj/item/storage/backpack/industrial, null, VENDOR_ITEM_REGULAR), + list("Satchel, Leather", 12, /obj/item/storage/backpack/satchel, null, VENDOR_ITEM_REGULAR), + list("Satchel, Medical", 12, /obj/item/storage/backpack/satchel/med, null, VENDOR_ITEM_REGULAR), + + list("OTHER", 0, null, null, null), + list("Red Armband", 6, /obj/item/clothing/accessory/armband, null, VENDOR_ITEM_REGULAR), + list("Purple Armband", 6, /obj/item/clothing/accessory/armband/science, null, VENDOR_ITEM_REGULAR), + list("Yellow Armband", 6, /obj/item/clothing/accessory/armband/engine, null, VENDOR_ITEM_REGULAR), + list("Green Armband", 6, /obj/item/clothing/accessory/armband/medgreen, null, VENDOR_ITEM_REGULAR), + list("Dress Gloves", 6, /obj/item/clothing/gloves/marine/dress, null, VENDOR_ITEM_REGULAR), + +)) + +/obj/structure/machinery/cm_vending/clothing/marine/snowflake + name = "\improper Personal Civilian Clothing Storage Unit" + desc = "The vendor where all of your personal civilian clothing is stored while you are on-duty." + icon_state = "snowflake" + show_points = TRUE + use_snowflake_points = TRUE + vendor_theme = VENDOR_THEME_COMPANY + req_access = list() + vendor_role = list() + + vend_delay = 1 SECONDS + +/obj/structure/machinery/cm_vending/clothing/marine/snowflake/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_marine_snowflake diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm index efc3c9eb8e..a76508019c 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm @@ -21,7 +21,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list( list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Knife Rig (Full)", 0, /obj/item/storage/belt/knifepouch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -44,6 +44,12 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list( list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), list("Rebreather", 0, /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("ENGINEERING SUPPLIES", 0, null, null, null), + list("E-Tool", 5, /obj/item/tool/shovel/etool/folded, null, VENDOR_ITEM_REGULAR), + list("Sandbags", 20, /obj/item/stack/sandbags_empty/half, null, VENDOR_ITEM_REGULAR), + list("ES-11 Mobile Fuel Canister", 5, /obj/item/tool/weldpack/minitank, null, VENDOR_ITEM_REGULAR), + list("ME3 Hand Welder", 5, /obj/item/tool/weldingtool/simple, null, VENDOR_ITEM_REGULAR), + list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 15, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), list("SU-6 Smart Pistol", 15, /obj/item/storage/box/guncase/smartpistol, null, VENDOR_ITEM_REGULAR), @@ -52,31 +58,38 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list( list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 20, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 20, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 20, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 20, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 10, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 15, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 15, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 15, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), - list("AMMUNITION", 0, null, null, null), + list("PRIMARY AMMUNITION", 0, null, null, null), list("M4RA AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), list("M39 AP Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), list("M39 Extended Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), list("M41A AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), list("M41A Extended Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), + + list("SIDEARM AMMUNITION", 0, null, null, null), list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 5, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 10, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), list("ARMORS", 0, null, null, null), - list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/leader, null, VENDOR_ITEM_REGULAR), - list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/rto, null, VENDOR_ITEM_REGULAR), + list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), + list("M4 Pattern Armor", 20, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR), list("Brown Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_REGULAR), list("Black Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest, null, VENDOR_ITEM_REGULAR), - list("Drop Pouch", 15, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR), list("Shoulder Holster", 15, /obj/item/clothing/accessory/storage/holster, null, VENDOR_ITEM_REGULAR), list("Machete Scabbard (Full)", 15, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), list("Machete Pouch (Full)", 15, /obj/item/storage/pouch/machete/full, null, VENDOR_ITEM_REGULAR), @@ -87,17 +100,18 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list( list("Large General Pouch", 15, /obj/item/storage/pouch/general/large, null, VENDOR_ITEM_REGULAR), list("UTILITIES", 0, null, null, null), - list("E-Tool", 5, /obj/item/tool/shovel/etool/folded, null, VENDOR_ITEM_REGULAR), - list("Sandbags", 20, /obj/item/stack/sandbags_empty/half, null, VENDOR_ITEM_REGULAR), list("Roller Bed", 5, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Fulton Device Stack", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), - list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Motion Detector", 15, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), list("Data Detector", 15, /obj/item/device/motiondetector/intel, null, VENDOR_ITEM_REGULAR), list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), + list("HELMET OPTICS", 0, null, null, null), list("Medical Helmet Optic", 15, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm index 41710b4777..4507dceae0 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_smartgunner.dm @@ -4,9 +4,6 @@ GLOBAL_LIST_INIT(cm_vending_gear_smartgun, list( list("SMARTGUN SET (MANDATORY)", 0, null, null, null), list("Essential Smartgunner Set", 0, /obj/item/storage/box/m56_system, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), - list("SMARTGUN AMMUNITION", 0, null, null, null), - list("M56 Smartgun Drum", 15, /obj/item/ammo_magazine/smartgun, null, VENDOR_ITEM_RECOMMENDED), - list("GUN ATTACHMENTS (CHOOSE 1)", 0, null, null, null), list("Laser Sight", 0, /obj/item/attachable/lasersight, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), list("Red-Dot Sight", 0, /obj/item/attachable/reddot, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), @@ -15,26 +12,42 @@ GLOBAL_LIST_INIT(cm_vending_gear_smartgun, list( list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 30, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 30, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 30, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 30, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 15, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 20, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 5, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 10, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), + + list("RESTRICTED FIREARMS", 0, null, null, null), + list("VP78 Pistol", 15, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smart Pistol", 15, /obj/item/storage/box/guncase/smartpistol, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), - list("Machete Scabbard (Full)", 6, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), + list("Smartgunner Machete Scabbard", 15, /obj/item/storage/large_holster/machete/smartgunner/full, null, VENDOR_ITEM_REGULAR), list("Fuel Tank Strap Pouch", 5, /obj/item/storage/pouch/flamertank, null, VENDOR_ITEM_REGULAR), list("Large General Pouch", 6, /obj/item/storage/pouch/general/large, null, VENDOR_ITEM_REGULAR), list("UTILITIES", 0, null, null, null), - list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), - list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), list("Roller Bed", 5, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Fulton Device Stack", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), + list("DV9 Smartgun Battery", 15, /obj/item/smartgun_battery, null, VENDOR_ITEM_REGULAR), + + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("HELMET OPTICS", 0, null, null, null), list("Medical Helmet Optic", 15, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_specialist.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_specialist.dm index e800fc1efd..8e84f7556b 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_specialist.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_specialist.dm @@ -7,6 +7,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_spec, list( list("Pyro Set", 0, /obj/item/storage/box/spec/pyro, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), list("Scout Set", 0, /obj/item/storage/box/spec/scout, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_REGULAR), list("Sniper Set", 0, /obj/item/storage/box/spec/sniper, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), + list("Anti-Materiel Sniper Set", 0, /obj/item/storage/box/spec/sniper/anti_materiel, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_RECOMMENDED), list("EXTRA SCOUT AMMUNITION", 0, null, null, null), list("A19 High Velocity Impact Magazine (10x24mm)", 40, /obj/item/ammo_magazine/rifle/m4ra/custom/impact, null, VENDOR_ITEM_REGULAR), @@ -17,6 +18,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_spec, list( list("M42A Flak Magazine (10x28mm)", 40, /obj/item/ammo_magazine/sniper/flak, null, VENDOR_ITEM_REGULAR), list("M42A Incendiary Magazine (10x28mm)", 40, /obj/item/ammo_magazine/sniper/incendiary, null, VENDOR_ITEM_REGULAR), list("M42A Marksman Magazine (10x28mm Caseless)", 40, /obj/item/ammo_magazine/sniper, null, VENDOR_ITEM_REGULAR), + list("XM43E1 Marksman Magazine (10x99mm Caseless)", 40, /obj/item/ammo_magazine/sniper/anti_materiel, null, VENDOR_ITEM_REGULAR), list("EXTRA DEMOLITIONIST AMMUNITION", 0, null, null, null), list("84mm Anti-Armor Rocket", 40, /obj/item/ammo_magazine/rocket/ap, null, VENDOR_ITEM_REGULAR), @@ -26,10 +28,11 @@ GLOBAL_LIST_INIT(cm_vending_gear_spec, list( list("EXTRA GRENADES", 0, null, null, null), list("M40 HEDP Grenades x6", 40, /obj/effect/essentials_set/hedp_6_pack, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Grenades x6", 40, /obj/effect/essentials_set/hidp_6_pack, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Grenades x6", 40, /obj/effect/essentials_set/hpdp_6_pack, null, VENDOR_ITEM_REGULAR), + list("M40 CCDP Chemical Compound Grenades x6", 40, /obj/effect/essentials_set/ccdp_6_pack, null, VENDOR_ITEM_REGULAR), list("M74 AGM-F Fragmentation Grenades x6", 40, /obj/effect/essentials_set/agmf_6_pack, null, VENDOR_ITEM_REGULAR), list("M74 AGM-I Incendiary Grenades x6", 40, /obj/effect/essentials_set/agmi_6_pack, null, VENDOR_ITEM_REGULAR), list("M74 AGM-S Smoke Grenades x6", 20, /obj/effect/essentials_set/agms_6_pack, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Pack x6", 40, /obj/effect/essentials_set/sebb_6_pack, null, VENDOR_ITEM_REGULAR), list("EXTRA FLAMETHROWER TANKS", 0, null, null, null), list("Large Incinerator Tank", 40, /obj/item/ammo_magazine/flamer_tank/large, null, VENDOR_ITEM_REGULAR), @@ -69,7 +72,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_specialist, list( list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -96,6 +99,18 @@ GLOBAL_LIST_INIT(cm_vending_clothing_specialist, list( list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("RESTRICTED FIREARMS", 0, null, null, null), + list("VP78 Pistol", 15, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smart Pistol", 15, /obj/item/storage/box/guncase/smartpistol, null, VENDOR_ITEM_REGULAR), + + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 5, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 10, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), + list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 6, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), list("Machete Pouch (Full)", 15, /obj/item/storage/pouch/machete/full, null, VENDOR_ITEM_REGULAR), @@ -107,10 +122,17 @@ GLOBAL_LIST_INIT(cm_vending_clothing_specialist, list( list("Autoinjector Pouch (Full)", 15, /obj/item/storage/pouch/autoinjector/full, null, VENDOR_ITEM_REGULAR), list("UTILITIES", 0, null, null, null), - list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Roller Bed", 5, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Fulton Device Stack", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), + list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Motion Detector", 10, /obj/item/device/motiondetector, null, VENDOR_ITEM_REGULAR), + list("Data Detector", 10, /obj/item/device/motiondetector/intel, null, VENDOR_ITEM_REGULAR), + list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), list("HELMET OPTICS", 0, null, null, null), list("Medical Helmet Optic", 15, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), @@ -189,7 +211,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_specialist, list( /obj/item/explosive/grenade/incendiary, ) -/obj/effect/essentials_set/hpdp_6_pack +/obj/effect/essentials_set/ccdp_6_pack spawned_gear_list = list( /obj/item/explosive/grenade/phosphorus, /obj/item/explosive/grenade/phosphorus, @@ -228,3 +250,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_specialist, list( /obj/item/explosive/grenade/smokebomb/airburst, /obj/item/explosive/grenade/smokebomb/airburst, ) + +/obj/effect/essentials_set/sebb_6_pack + spawned_gear_list = list( + /obj/item/explosive/grenade/sebb, + /obj/item/explosive/grenade/sebb, + /obj/item/explosive/grenade/sebb, + /obj/item/explosive/grenade/sebb, + /obj/item/explosive/grenade/sebb, + /obj/item/explosive/grenade/sebb, + ) diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm index 7bd45cb46a..0d33850297 100644 --- a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm +++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm @@ -1,28 +1,33 @@ //------------GEAR VENDOR--------------- GLOBAL_LIST_INIT(cm_vending_gear_tl, list( - - list("AMMUNITION", 0, null, null, null), - list("M4RA AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), - list("M39 AP Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), - list("M39 Extended Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), - list("M41A AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), - list("M41A Extended Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), - list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), - list("M4A3 HP Magazine", 5, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), - list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), - list("EXPLOSIVES", 0, null, null, null), list("M40 HEDP High Explosive Packet (x3 grenades)", 18, /obj/item/storage/box/packet/high_explosive, null, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Packet (x3 grenades)", 18, /obj/item/storage/box/packet/incendiary, null, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), + list("M40 WPDP White Phosphorus Packet (x3 grenades)", 18, /obj/item/storage/box/packet/phosphorus, null, VENDOR_ITEM_REGULAR), list("M40 HSDP Smoke Packet (x3 grenades)", 9, /obj/item/storage/box/packet/smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_he, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Packet (x3 airburst grenades)", 20, /obj/item/storage/box/packet/airburst_incen, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Packet (x3 airburst grenades)", 10, /obj/item/storage/box/packet/airburst_smoke, null, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Airburst Packet (x3 airburst grenades", 20, /obj/item/storage/box/packet/hornet, null, VENDOR_ITEM_REGULAR), - list("M20 Mine Box (x4 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), + list("M20 Mine Box (x5 mines)", 20, /obj/item/storage/box/explosive_mines, null, VENDOR_ITEM_REGULAR), list("M40 MFHS Metal Foam Grenade", 5, /obj/item/explosive/grenade/metal_foam, null, VENDOR_ITEM_REGULAR), + list("G2 Electroshock Grenade Packet (x3 grenades)", 16, /obj/item/storage/box/packet/sebb, null, VENDOR_ITEM_REGULAR), + + list("PRIMARY AMMUNITION", 0, null, null, null), + list("M4RA AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/m4ra/ap, null, VENDOR_ITEM_REGULAR), + list("M39 AP Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/ap , null, VENDOR_ITEM_REGULAR), + list("M39 Extended Magazine (10x20mm)", 10, /obj/item/ammo_magazine/smg/m39/extended , null, VENDOR_ITEM_REGULAR), + list("M41A AP Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/ap , null, VENDOR_ITEM_REGULAR), + list("M41A Extended Magazine (10x24mm)", 10, /obj/item/ammo_magazine/rifle/extended , null, VENDOR_ITEM_REGULAR), + + list("SIDEARM AMMUNITION", 0, null, null, null), + list("M44 Heavy Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/heavy, null, VENDOR_ITEM_REGULAR), + list("M44 Marksman Speed Loader (.44)", 10, /obj/item/ammo_magazine/revolver/marksman, null, VENDOR_ITEM_REGULAR), + list("M4A3 HP Magazine", 5, /obj/item/ammo_magazine/pistol/hp, null, VENDOR_ITEM_REGULAR), + list("M4A3 AP Magazine", 5, /obj/item/ammo_magazine/pistol/ap, null, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", 5, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", 10, /obj/item/ammo_magazine/pistol/smart, null, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARMS", 0, null, null, null), list("VP78 Pistol", 10, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR), @@ -30,7 +35,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list( list("M79 Grenade Launcher", 30, /obj/item/storage/box/guncase/m79, null, VENDOR_ITEM_REGULAR), list("ARMORS", 0, null, null, null), - list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/leader, null, VENDOR_ITEM_REGULAR), + list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR), list("CLOTHING ITEMS", 0, null, null, null), list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR), @@ -42,16 +47,24 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list( list("Insulated Gloves", 3, /obj/item/clothing/gloves/yellow, null, VENDOR_ITEM_REGULAR), list("Night Vision Optic", 30, /obj/item/device/helmet_visor/night_vision, null, VENDOR_ITEM_RECOMMENDED), - list("UTILITIES", 0, null, null, null), - list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), - list("Motion Detector", 15, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED), + list("ENGINEERING SUPPLIES", 0, null, null, null), list("Plastic Explosive", 10, /obj/item/explosive/plastic, null, VENDOR_ITEM_REGULAR), list("Breaching Charge", 10, /obj/item/explosive/plastic/breaching_charge, null, VENDOR_ITEM_REGULAR), + list("ES-11 Mobile Fuel Canister", 5, /obj/item/tool/weldpack/minitank, null, VENDOR_ITEM_REGULAR), + list("ME3 Hand Welder", 5, /obj/item/tool/weldingtool/simple, null, VENDOR_ITEM_REGULAR), + + list("UTILITIES", 0, null, null, null), + list("Motion Detector", 15, /obj/item/device/motiondetector, null, VENDOR_ITEM_RECOMMENDED), list("Roller Bed", 5, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Fulton Device Stack", 5, /obj/item/stack/fulton, null, VENDOR_ITEM_REGULAR), list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), + list("BINOCULARS", 0, null, null, null), + list("Binoculars", 5, /obj/item/device/binoculars, null, VENDOR_ITEM_REGULAR), + list("Range Finder", 10, /obj/item/device/binoculars/range, null, VENDOR_ITEM_REGULAR), + list("Laser Designator", 15, /obj/item/device/binoculars/range/designator, null, VENDOR_ITEM_REGULAR), + list("HELMET OPTICS", 0, null, null, null), list("Medical Helmet Optic", 15, /obj/item/device/helmet_visor/medical, null, VENDOR_ITEM_REGULAR), list("Welding Visor", 5, /obj/item/device/helmet_visor/welding_visor, null, VENDOR_ITEM_REGULAR), @@ -79,7 +92,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list( GLOBAL_LIST_INIT(cm_vending_clothing_tl, list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/rto), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("M4 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/rto, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("M4 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/medium/rto, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), list("Essential Fireteam Leader Utilities", 0, /obj/effect/essentials_set/tl, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), @@ -89,7 +102,7 @@ GLOBAL_LIST_INIT(cm_vending_clothing_tl, list( list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/belt/gun/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), diff --git a/code/game/machinery/vending/vendor_types/squad_prep/tutorial.dm b/code/game/machinery/vending/vendor_types/squad_prep/tutorial.dm new file mode 100644 index 0000000000..c1cedd85c7 --- /dev/null +++ b/code/game/machinery/vending/vendor_types/squad_prep/tutorial.dm @@ -0,0 +1,30 @@ +GLOBAL_LIST_INIT(cm_vending_clothing_tutorial, list( + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/clothing/head/helmet/marine), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + + list("ARMOR (CHOOSE 1)", 0, null, null, null), + list("Medium Armor", 0, /obj/item/clothing/suit/storage/marine/medium, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("BACKPACK (CHOOSE 1)", 0, null, null, null), + list("Satchel", 0, /obj/item/storage/backpack/marine/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + + list("POUCHES (CHOOSE 1)", 0, null, null, null), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_RECOMMENDED), + + )) // The pouch uses a different category so they only get one + +/obj/structure/machinery/cm_vending/clothing/tutorial + name = "\improper ColMarTech Automated Marine Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of Marine Rifleman standard-issue equipment." + icon_state = "mar_rack" + show_points = TRUE + vendor_theme = VENDOR_THEME_USCM + req_access = list(ACCESS_TUTORIAL_LOCKED) + + vendor_role = list() + +/obj/structure/machinery/cm_vending/clothing/tutorial/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_tutorial diff --git a/code/game/machinery/vending/vendor_types/supplies.dm b/code/game/machinery/vending/vendor_types/supplies.dm index 376edf7ffc..a363e2e03f 100644 --- a/code/game/machinery/vending/vendor_types/supplies.dm +++ b/code/game/machinery/vending/vendor_types/supplies.dm @@ -28,6 +28,7 @@ list("M94 Marking Flare Pack", 5, /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), list("M5 Bayonet", 8, /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), list("Handheld Radio", 5, /obj/item/device/radio, VENDOR_ITEM_REGULAR), + list("deck of UNO cards", 5, /obj/item/toy/deck/uno, VENDOR_ITEM_REGULAR), list("CLOTHING", -1, null, null), list("Gas Mask", 15, /obj/item/clothing/mask/gas, VENDOR_ITEM_REGULAR), diff --git a/code/game/machinery/vending/vendor_types/wo_vendors.dm b/code/game/machinery/vending/vendor_types/wo_vendors.dm index f12d787024..a064218c2e 100644 --- a/code/game/machinery/vending/vendor_types/wo_vendors.dm +++ b/code/game/machinery/vending/vendor_types/wo_vendors.dm @@ -8,57 +8,107 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo/populate_product_list(scale) listed_products = list( - list("UNIFORM", -1, null, null), - list("Lightweight IMP Backpack", 10, /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), - list("M276 Ammo Load Rig", 10, /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), - list("M276 General Pistol Holster Rig", 10, /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), - list("M276 M39 Holster Rig", 10, /obj/item/storage/belt/gun/m39, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 10, /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), - list("M276 M82F Holster Rig", 10, /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), - list("M276 Shotgun Shell Loading Rig", 10, /obj/item/storage/belt/shotgun, VENDOR_ITEM_REGULAR), - list("Marine Combat Boots", 20, /obj/item/clothing/shoes/marine, VENDOR_ITEM_REGULAR), - list("USCM Satchel", 10, /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), - list("USCM Uniform", 20, /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), - list("Technician Welder-Satchel", 10, /obj/item/storage/backpack/marine/engineerpack/satchel, VENDOR_ITEM_REGULAR), - - list("POUCHES", -1, null, null), - list("Construction Pouch", round(scale * 2), /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), - list("Explosive Pouch", round(scale * 2), /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Full)", round(scale * 5), /obj/item/storage/pouch/firstaid/full, VENDOR_ITEM_REGULAR), - list("First Responder Pouch", round(scale * 2), /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), - list("Flare Pouch", round(scale * 5), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), - list("Large Pistol Magazine Pouch", round(scale * 3), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), - list("Magazine Pouch", round(scale * 5), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), - list("Medical Pouch", round(scale * 2), /obj/item/storage/pouch/medical, VENDOR_ITEM_REGULAR), - list("Medium General Pouch", round(scale * 2), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), - list("Medkit Pouch", round(scale * 2), /obj/item/storage/pouch/medkit, VENDOR_ITEM_REGULAR), - list("Sidearm Pouch", round(scale * 15), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), - list("Syringe Pouch", round(scale * 2), /obj/item/storage/pouch/syringe, VENDOR_ITEM_REGULAR), - list("Tools Pouch", round(scale * 2), /obj/item/storage/pouch/tools, VENDOR_ITEM_REGULAR), + list("STANDARD EQUIPMENT", -1, null, null, null), + list("Marine Combat Boots", floor(scale * 10), /obj/item/clothing/shoes/marine, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Boots", floor(scale * 2), /obj/item/clothing/shoes/marine/brown, VENDOR_ITEM_REGULAR), + list("USCM Uniform", floor(scale * 10), /obj/item/clothing/under/marine, VENDOR_ITEM_REGULAR), + list("Marine Combat Gloves", floor(scale * 10), /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), + list("Marine Brown Combat Gloves", floor(scale * 2), /obj/item/clothing/gloves/marine/brown, VENDOR_ITEM_REGULAR), + list("Marine Black Combat Gloves", floor(scale * 2), /obj/item/clothing/gloves/marine/black, VENDOR_ITEM_REGULAR), + list("M10 Pattern Marine Helmet", floor(scale * 10), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), list("RADIO HEADSETS", -1, null, null), - list("Marine Alpha Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/alpha, VENDOR_ITEM_REGULAR), - list("Marine Bravo Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/bravo, VENDOR_ITEM_REGULAR), - list("Marine Charlie Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/charlie, VENDOR_ITEM_REGULAR), - list("Marine Delta Radio Headset", 10, /obj/item/device/radio/headset/almayer/marine/delta, VENDOR_ITEM_REGULAR), - - list("GLOVES", -1, null, null), - list("Marine Combat Gloves", 40, /obj/item/clothing/gloves/marine, VENDOR_ITEM_REGULAR), + list("Marine Alpha Radio Headset", floor(scale * 5), /obj/item/device/radio/headset/almayer/marine/alpha, VENDOR_ITEM_REGULAR), + list("Marine Bravo Radio Headset", floor(scale * 5), /obj/item/device/radio/headset/almayer/marine/bravo, VENDOR_ITEM_REGULAR), + list("Marine Charlie Radio Headset", floor(scale * 5), /obj/item/device/radio/headset/almayer/marine/charlie, VENDOR_ITEM_REGULAR), + list("Marine Delta Radio Headset", floor(scale * 5), /obj/item/device/radio/headset/almayer/marine/delta, VENDOR_ITEM_REGULAR), + list("Marine Radio Headset", floor(scale * 5), /obj/item/device/radio/headset/almayer, VENDOR_ITEM_REGULAR), + + list("WEBBINGS", -1, null, null), + list("Brown Webbing Vest", floor(scale * 1), /obj/item/clothing/accessory/storage/black_vest/brown_vest, VENDOR_ITEM_REGULAR), + list("Black Webbing Vest", floor(scale * 1), /obj/item/clothing/accessory/storage/black_vest, VENDOR_ITEM_REGULAR), + list("Webbing", floor(scale * 2), /obj/item/clothing/accessory/storage/webbing, VENDOR_ITEM_REGULAR), + list("Drop Pouch", floor(scale * 1), /obj/item/clothing/accessory/storage/droppouch, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", floor(scale * 1), /obj/item/clothing/accessory/storage/holster, VENDOR_ITEM_REGULAR), list("ARMOR", -1, null, null), - list("M10 Pattern Marine Helmet", 20, /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), - list("M3 Pattern Carrier Marine Armor", 20, /obj/item/clothing/suit/storage/marine/carrier, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padded Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padded, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padless Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padless, VENDOR_ITEM_REGULAR), - list("M3 Pattern Ridged Marine Armor", 20, /obj/item/clothing/suit/storage/marine/padless_lines, VENDOR_ITEM_REGULAR), - list("M3 Pattern Skull Marine Armor", 20, /obj/item/clothing/suit/storage/marine/skull, VENDOR_ITEM_REGULAR), - list("M3 Pattern Smooth Marine Armor", 20, /obj/item/clothing/suit/storage/marine/smooth, VENDOR_ITEM_REGULAR), - list("M3-EOD Pattern Heavy Armor", 10, /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), - list("M3-L Pattern Light Armor", 10, /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), - - list("MASKS", -1, null, null, null), - list("Gas Mask", 20, /obj/item/clothing/mask/gas, VENDOR_ITEM_REGULAR), - list("Heat Absorbent Coif", 10, /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), + list("M3 Pattern Carrier Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/carrier, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padded Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/padded, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padless Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/padless, VENDOR_ITEM_REGULAR), + list("M3 Pattern Ridged Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/padless_lines, VENDOR_ITEM_REGULAR), + list("M3 Pattern Skull Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/skull, VENDOR_ITEM_REGULAR), + list("M3 Pattern Smooth Marine Armor", floor(scale * 10), /obj/item/clothing/suit/storage/marine/medium/smooth, VENDOR_ITEM_REGULAR), + list("M3-EOD Pattern Heavy Armor", floor(scale * 5), /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), + list("M3-L Pattern Light Armor", floor(scale * 5), /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), + + list("BACKPACK", -1, null, null, null), + list("Lightweight IMP Backpack", floor(scale * 10), /obj/item/storage/backpack/marine, VENDOR_ITEM_REGULAR), + list("Technician Backpack", floor(scale * 10), /obj/item/storage/backpack/marine/tech, VENDOR_ITEM_REGULAR), + list("Medical Backpack", floor(scale * 10), /obj/item/storage/backpack/marine/medic, VENDOR_ITEM_REGULAR), + list("USCM Satchel", floor(scale * 10), /obj/item/storage/backpack/marine/satchel, VENDOR_ITEM_REGULAR), + list("USCM Chestrig", floor(scale * 10), /obj/item/storage/backpack/marine/satchel/chestrig, VENDOR_ITEM_REGULAR), + list("USCM Technical Satchel", floor(scale * 10), /obj/item/storage/backpack/marine/satchel/tech, VENDOR_ITEM_REGULAR), + list("USCM Technical Chestrig", floor(scale * 10), /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, VENDOR_ITEM_REGULAR), + list("Medical Satchel", floor(scale * 10), /obj/item/storage/backpack/marine/satchel/medic, VENDOR_ITEM_REGULAR), + list("Shotgun Scabbard", floor(scale * 10), /obj/item/storage/large_holster/m37, VENDOR_ITEM_REGULAR), + + list("RESTRICTED BACKPACKS", -1, null, null), + list("USCM Technician Welderpack", floor(scale * 1), /obj/item/storage/backpack/marine/engineerpack, VENDOR_ITEM_REGULAR), + list("Technician Welder-Satchel", floor(scale * 2), /obj/item/storage/backpack/marine/engineerpack/satchel, VENDOR_ITEM_REGULAR), + + list("BELTS", -1, null, null), + list("M276 Pattern Ammo Load Rig", floor(scale * 10), /obj/item/storage/belt/marine, VENDOR_ITEM_REGULAR), + list("M276 Pattern M40 Grenade Rig", floor(scale * 5), /obj/item/storage/belt/grenade, VENDOR_ITEM_REGULAR), + list("M276 Pattern Shotgun Shell Loading Rig", floor(scale * 10), /obj/item/storage/belt/shotgun, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Pistol Holster Rig", floor(scale * 10), /obj/item/storage/belt/gun/m4a3, VENDOR_ITEM_REGULAR), + list("M276 Pattern M39 Holster Rig", floor(scale * 10), /obj/item/storage/large_holster/m39, VENDOR_ITEM_REGULAR), + list("M276 Pattern M39 Holster Rig And Pouch", floor(scale * 5), /obj/item/storage/belt/gun/m39, VENDOR_ITEM_REGULAR), + list("M276 Pattern General Revolver Holster Rig", floor(scale * 10), /obj/item/storage/belt/gun/m44, VENDOR_ITEM_REGULAR), + list("M276 Pattern M82F Holster Rig", floor(scale * 2), /obj/item/storage/belt/gun/flaregun, VENDOR_ITEM_REGULAR), + list("M276 Knife Rig (Full)", floor(scale * 10), /obj/item/storage/belt/knifepouch, VENDOR_ITEM_REGULAR), + list("M276 G8-A General Utility Pouch", floor(scale * 10), /obj/item/storage/backpack/general_belt, VENDOR_ITEM_REGULAR), + + list("POUCHES", -1, null, null, null), + list("Bayonet Sheath (Full)",floor(scale * 10), /obj/item/storage/pouch/bayonet, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Splints, Gauze, Ointment)", floor(scale * 10), /obj/item/storage/pouch/firstaid/full/alternate, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", floor(scale * 10), /obj/item/storage/pouch/firstaid/full/pills, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", floor(scale * 10), /obj/item/storage/pouch/flare/full, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", floor(scale * 10), /obj/item/storage/pouch/magazine, VENDOR_ITEM_REGULAR), + list("Shotgun Shell Pouch", floor(scale * 10), /obj/item/storage/pouch/shotgun, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", floor(scale * 10), /obj/item/storage/pouch/general/medium, VENDOR_ITEM_REGULAR), + list("Pistol Magazine Pouch", floor(scale * 10), /obj/item/storage/pouch/magazine/pistol, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", floor(scale * 10), /obj/item/storage/pouch/pistol, VENDOR_ITEM_REGULAR), + + list("RESTRICTED POUCHES", -1, null, null, null), + list("Construction Pouch", floor(scale * 1), /obj/item/storage/pouch/construction, VENDOR_ITEM_REGULAR), + list("Explosive Pouch", floor(scale * 1), /obj/item/storage/pouch/explosive, VENDOR_ITEM_REGULAR), + list("First Responder Pouch (Empty)", floor(scale * 2), /obj/item/storage/pouch/first_responder, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", floor(scale * 2), /obj/item/storage/pouch/magazine/pistol/large, VENDOR_ITEM_REGULAR), + list("Tools Pouch", floor(scale * 1), /obj/item/storage/pouch/tools, VENDOR_ITEM_REGULAR), + list("Sling Pouch", floor(scale * 1), /obj/item/storage/pouch/sling, VENDOR_ITEM_REGULAR), + + list("MASK", -1, null, null, null), + list("Gas Mask", floor(scale * 10), /obj/item/clothing/mask/gas, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", floor(scale * 5), /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), + list("Rebreather", floor(scale * 5), /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + + list("MISCELLANEOUS", -1, null, null, null), + list("Ballistic goggles", floor(scale * 5), /obj/item/clothing/glasses/mgoggles, VENDOR_ITEM_REGULAR), + list("M1A1 Ballistic goggles", floor(scale * 5), /obj/item/clothing/glasses/mgoggles/v2, VENDOR_ITEM_REGULAR), + list("Prescription ballistic goggles", floor(scale * 5), /obj/item/clothing/glasses/mgoggles/prescription, VENDOR_ITEM_REGULAR), + list("Marine RPG glasses", floor(scale * 5), /obj/item/clothing/glasses/regular, VENDOR_ITEM_REGULAR), + list("M5 Integrated Gas Mask", floor(scale * 5), /obj/item/prop/helmetgarb/helmet_gasmask, VENDOR_ITEM_REGULAR), + list("M10 Helmet Netting", floor(scale * 5), /obj/item/prop/helmetgarb/netting, VENDOR_ITEM_REGULAR), + list("M10 Helmet Rain Cover", floor(scale * 5), /obj/item/prop/helmetgarb/raincover, VENDOR_ITEM_REGULAR), + list("Firearm Lubricant", floor(scale * 10), /obj/item/prop/helmetgarb/gunoil, VENDOR_ITEM_REGULAR), + list("USCM Flair", floor(scale * 10), /obj/item/prop/helmetgarb/flair_uscm, VENDOR_ITEM_REGULAR), + list("Falling Falcons Shoulder Patch", floor(scale * 10), /obj/item/clothing/accessory/patch/falcon, VENDOR_ITEM_REGULAR), + list("USCM Shoulder Patch", floor(scale * 10), /obj/item/clothing/accessory/patch, VENDOR_ITEM_REGULAR), + list("Bedroll", floor(scale * 10), /obj/item/roller/bedroll, VENDOR_ITEM_REGULAR), + + list("OPTICS", -1, null, null, null), + list("Advanced Medical Optic (CORPSMAN ONLY)", floor(scale * 2), /obj/item/device/helmet_visor/medical/advanced, VENDOR_ITEM_REGULAR), + list("Squad Optic", floor(scale * 10), /obj/item/device/helmet_visor, VENDOR_ITEM_REGULAR), ) //------------WEAPON RACKS--------------- @@ -66,47 +116,48 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo req_access = list() req_one_access = list() - vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES + vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES | VEND_STOCK_DYNAMIC /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo/populate_product_list(scale) listed_products = list( list("PRIMARY FIREARMS", -1, null, null), - list("M4RA Battle Rifle", round(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M37A2 Pump Shotgun", round(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), - list("M39 Submachine Gun", round(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK1", round(scale * 30), /obj/item/weapon/gun/rifle/m41aMK1, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK2", round(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), + list("M4RA Battle Rifle", floor(scale * 10), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M37A2 Pump Shotgun", floor(scale * 15), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), + list("M39 Submachine Gun", floor(scale * 30), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK1", floor(scale * 30), /obj/item/weapon/gun/rifle/m41aMK1, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK2", floor(scale * 30), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), list("PRIMARY AMMUNITION", -1, null, null), - list("Box of Buckshot Shells (12g)", round(scale * 10), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), - list("Box of Flechette Shells (12g)", round(scale * 4), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), - list("Box of Shotgun Slugs (12g)", round(scale * 10), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), - list("M4RA Magazine (10x24mm)", round(scale * 15), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M39 HV Magazine (10x20mm)", round(scale * 25), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A MK1 Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), - list("M41A MK2 Magazine (10x24mm)", round(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), + list("Box of Buckshot Shells (12g)", floor(scale * 10), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), + list("Box of Flechette Shells (12g)", floor(scale * 4), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), + list("Box of Shotgun Slugs (12g)", floor(scale * 10), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), + list("M4RA Magazine (10x24mm)", floor(scale * 15), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M39 HV Magazine (10x20mm)", floor(scale * 25), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A MK1 Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), + list("M41A MK2 Magazine (10x24mm)", floor(scale * 25), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("VP70 Combat Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Combat Revolver", round(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), - list("M4A3 Service Pistol", round(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), - list("M82F Flare Gun", round(scale * 5), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Combat Revolver", floor(scale * 25), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", floor(scale * 25), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), + list("M82F Flare Gun", floor(scale * 5), /obj/item/weapon/gun/flare, VENDOR_ITEM_REGULAR), list("SIDEARM AMMUNITION", -1, null, null), - list("VP70 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Speedloader (.44)", round(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), - list("M4A3 Magazine (9mm)", round(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Speedloader (.44)", floor(scale * 20), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), + list("M4A3 Magazine (9mm)", floor(scale * 25), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), list("ATTACHMENTS", -1, null, null), - list("M39 Folding Stock", round(scale * 10), /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), - list("Rail Flashlight", round(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR), - list("Underbarrel Flashlight Grip", round(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_REGULAR), - list("Underslung Grenade Launcher", round(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. + list("M39 Folding Stock", floor(scale * 10), /obj/item/attachable/stock/smg/collapsible, VENDOR_ITEM_REGULAR), + list("Rail Flashlight", floor(scale * 25), /obj/item/attachable/flashlight, VENDOR_ITEM_REGULAR), + list("Underbarrel Flashlight Grip", floor(scale * 10), /obj/item/attachable/flashlight/grip, VENDOR_ITEM_REGULAR), + list("Underslung Grenade Launcher", floor(scale * 25), /obj/item/attachable/attached_gun/grenade, VENDOR_ITEM_REGULAR), //They already get these as on-spawns, might as well formalize some spares. list("UTILITIES", -1, null, null), - list("M5 Bayonet", round(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), - list("M11 Throwing Knife", round(scale * 10), /obj/item/weapon/throwing_knife, VENDOR_ITEM_REGULAR), - list("M94 Marking Flare Pack", round(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR) + list("M5 Bayonet", floor(scale * 25), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + list("M11 Throwing Knife", floor(scale * 10), /obj/item/weapon/throwing_knife, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", floor(scale * 10), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), + list("Plastic Explosive", floor(scale * 2), /obj/item/explosive/plastic, VENDOR_ITEM_REGULAR), ) //------------REQ AMMUNITION VENDOR--------------- @@ -118,30 +169,31 @@ ..() listed_products += list( list("EXTRA SCOUT AMMUNITION", -1, null, null, null), - list("A19 High Velocity Impact Magazine (10x24mm)", round(scale * 1), /obj/item/ammo_magazine/rifle/m4ra/custom/impact, VENDOR_ITEM_REGULAR), - list("A19 High Velocity Incendiary Magazine (10x24mm)", round(scale * 1), /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, VENDOR_ITEM_REGULAR), - list("A19 High Velocity Magazine (10x24mm)", round(scale * 1.5), /obj/item/ammo_magazine/rifle/m4ra/custom, VENDOR_ITEM_REGULAR), + list("A19 High Velocity Impact Magazine (10x24mm)", floor(scale * 1), /obj/item/ammo_magazine/rifle/m4ra/custom/impact, VENDOR_ITEM_REGULAR), + list("A19 High Velocity Incendiary Magazine (10x24mm)", floor(scale * 1), /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary, VENDOR_ITEM_REGULAR), + list("A19 High Velocity Magazine (10x24mm)", floor(scale * 1.5), /obj/item/ammo_magazine/rifle/m4ra/custom, VENDOR_ITEM_REGULAR), list("EXTRA SNIPER AMMUNITION", -1, null, null, null), - list("M42A Flak Magazine (10x28mm)", round(scale * 1), /obj/item/ammo_magazine/sniper/flak, VENDOR_ITEM_REGULAR), - list("M42A Incendiary Magazine (10x28mm)", round(scale * 1), /obj/item/ammo_magazine/sniper/incendiary, VENDOR_ITEM_REGULAR), - list("M42A Marksman Magazine (10x28mm Caseless)", round(scale * 1.5), /obj/item/ammo_magazine/sniper, VENDOR_ITEM_REGULAR), + list("M42A Flak Magazine (10x28mm)", floor(scale * 1), /obj/item/ammo_magazine/sniper/flak, VENDOR_ITEM_REGULAR), + list("M42A Incendiary Magazine (10x28mm)", floor(scale * 1), /obj/item/ammo_magazine/sniper/incendiary, VENDOR_ITEM_REGULAR), + list("M42A Marksman Magazine (10x28mm Caseless)", floor(scale * 1.5), /obj/item/ammo_magazine/sniper, VENDOR_ITEM_REGULAR), + list("XM43E1 Marksman Magazine (10x99mm Caseless)", floor(scale * 3), /obj/item/ammo_magazine/sniper/anti_materiel, VENDOR_ITEM_REGULAR), list("EXTRA DEMOLITIONIST AMMUNITION", -1, null, null, null), - list("84mm Anti-Armor Rocket", round(scale * 1), /obj/item/ammo_magazine/rocket/ap, VENDOR_ITEM_REGULAR), - list("84mm High-Explosive Rocket", round(scale * 1), /obj/item/ammo_magazine/rocket, VENDOR_ITEM_REGULAR), - list("84mm White-Phosphorus Rocket", round(scale * 1), /obj/item/ammo_magazine/rocket/wp, VENDOR_ITEM_REGULAR), + list("84mm Anti-Armor Rocket", floor(scale * 1), /obj/item/ammo_magazine/rocket/ap, VENDOR_ITEM_REGULAR), + list("84mm High-Explosive Rocket", floor(scale * 1), /obj/item/ammo_magazine/rocket, VENDOR_ITEM_REGULAR), + list("84mm White-Phosphorus Rocket", floor(scale * 1), /obj/item/ammo_magazine/rocket/wp, VENDOR_ITEM_REGULAR), list("EXTRA GRENADES", -1, null, null, null), - list("M40 HEDP Grenade Pack (x6)", round(scale * 1.5), /obj/effect/essentials_set/hedp_6_pack, VENDOR_ITEM_REGULAR), - list("M40 HIDP Grenade Pack (x6)", round(scale * 1.5), /obj/effect/essentials_set/hidp_6_pack, VENDOR_ITEM_REGULAR), - list("M74 AGM-F Grenade Pack (x6)", round(scale * 1.5), /obj/effect/essentials_set/agmf_6_pack, VENDOR_ITEM_REGULAR), - list("M74 AGM-I Grenade Pack (x6)", round(scale * 1.5), /obj/effect/essentials_set/agmi_6_pack, VENDOR_ITEM_REGULAR), + list("M40 HEDP Grenade Pack (x6)", floor(scale * 1.5), /obj/effect/essentials_set/hedp_6_pack, VENDOR_ITEM_REGULAR), + list("M40 HIDP Grenade Pack (x6)", floor(scale * 1.5), /obj/effect/essentials_set/hidp_6_pack, VENDOR_ITEM_REGULAR), + list("M74 AGM-F Grenade Pack (x6)", floor(scale * 1.5), /obj/effect/essentials_set/agmf_6_pack, VENDOR_ITEM_REGULAR), + list("M74 AGM-I Grenade Pack (x6)", floor(scale * 1.5), /obj/effect/essentials_set/agmi_6_pack, VENDOR_ITEM_REGULAR), list("EXTRA FLAMETHROWER TANKS", -1, null, null, null), - list("Large Incinerator Tank", round(scale * 1), /obj/item/ammo_magazine/flamer_tank/large, VENDOR_ITEM_REGULAR), - list("Large Incinerator Tank (B) (Green Flame)", round(scale * 1), /obj/item/ammo_magazine/flamer_tank/large/B, VENDOR_ITEM_REGULAR), - list("Large Incinerator Tank (X) (Blue Flame)", round(scale * 1), /obj/item/ammo_magazine/flamer_tank/large/X, VENDOR_ITEM_REGULAR), + list("Large Incinerator Tank", floor(scale * 1), /obj/item/ammo_magazine/flamer_tank/large, VENDOR_ITEM_REGULAR), + list("Large Incinerator Tank (B) (Green Flame)", floor(scale * 1), /obj/item/ammo_magazine/flamer_tank/large/B, VENDOR_ITEM_REGULAR), + list("Large Incinerator Tank (X) (Blue Flame)", floor(scale * 1), /obj/item/ammo_magazine/flamer_tank/large/X, VENDOR_ITEM_REGULAR), ) //------------ARMAMENTS VENDOR--------------- diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index e32d4091c1..1214b141da 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -131,7 +131,7 @@ to_chat(user, "This item does not fit.") return - if(contents.len < 5) + if(length(contents) < 5) if ( state in list(1, 3) ) if(user.drop_inv_item_to_loc(W, src)) state = 3 diff --git a/code/game/machinery/weather_siren.dm b/code/game/machinery/weather_siren.dm index c7752a3dcc..7816a33391 100644 --- a/code/game/machinery/weather_siren.dm +++ b/code/game/machinery/weather_siren.dm @@ -11,11 +11,11 @@ health = 0 /obj/structure/machinery/weather_siren/Initialize() - weather_notify_objects += src + GLOB.weather_notify_objects += src return ..() /obj/structure/machinery/weather_siren/Destroy() - weather_notify_objects -= src + GLOB.weather_notify_objects -= src . = ..() /obj/structure/machinery/weather_siren/power_change() diff --git a/code/game/objects/effects/acid_hole.dm b/code/game/objects/effects/acid_hole.dm index 8c972c42ef..380f9dd0ab 100644 --- a/code/game/objects/effects/acid_hole.dm +++ b/code/game/objects/effects/acid_hole.dm @@ -40,13 +40,16 @@ /obj/effect/acid_hole/attack_alien(mob/living/carbon/xenomorph/user) - if (!holed_wall) + if(!holed_wall) qdel(src) //no wall?! then cease existence... return expand_hole(user) return XENO_NO_DELAY_ACTION +/obj/effect/acid_hole/attack_larva(mob/living/carbon/xenomorph/larva/M) + attack_alien(M) + /obj/effect/acid_hole/proc/expand_hole(mob/living/carbon/xenomorph/user) if(user.action_busy || user.is_mob_incapacitated()) return diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 6f13ac62bc..45fbd5d4ba 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -106,14 +106,16 @@ // Humans? if(isliving(atm)) //For extinguishing mobs on fire var/mob/living/M = atm - M.ExtinguishMob() + + if(M != cause_data.resolve_mob()) + M.ExtinguishMob() + if(M.stat == DEAD) // NO. DAMAGING. DEAD. MOBS. continue if (iscarbon(M)) var/mob/living/carbon/C = M if (C.ally_of_hivenumber(hivenumber)) continue - apply_spray(M) M.apply_armoured_damage(get_xeno_damage_acid(M, damage_amount), ARMOR_BIO, BURN) // Deal extra damage when first placing ourselves down. @@ -123,6 +125,10 @@ var/obj/vehicle/multitile/V = atm V.handle_acidic_environment(src) continue + if (istype(loc, /turf/open)) + var/turf/open/scorch_turf_target = loc + if(scorch_turf_target.scorchable) + scorch_turf_target.scorch(damage_amount) START_PROCESSING(SSobj, src) addtimer(CALLBACK(src, PROC_REF(die)), time_to_live) @@ -144,15 +150,15 @@ /obj/effect/xenomorph/spray/Crossed(AM as mob|obj) ..() - if(ishuman(AM)) - var/mob/living/carbon/human/H = AM - if(H.ally_of_hivenumber(hivenumber)) - return - apply_spray(AM) - else if (isxeno(AM)) - var/mob/living/carbon/xenomorph/X = AM - if (X.hivenumber != hivenumber) - apply_spray(AM) + if(AM == cause_data.resolve_mob()) + return + + if(isliving(AM)) + var/mob/living/living_mob = AM + if(living_mob.ally_of_hivenumber(hivenumber)) + living_mob.ExtinguishMob() + else + apply_spray(living_mob) else if(isVehicleMultitile(AM)) var/obj/vehicle/multitile/V = AM V.handle_acidic_environment(src) @@ -489,30 +495,33 @@ /obj/effect/xenomorph/xeno_telegraph name = "???" desc = "" - icon_state = "xeno_telegraph_red" + icon_state = "xeno_telegraph_base" mouse_opacity = MOUSE_OPACITY_TRANSPARENT -/obj/effect/xenomorph/xeno_telegraph/New(loc, ttl = 10) +/// Icon is by default a white sprite, provide an rgb hex code #RRGGBB argument to change. +/obj/effect/xenomorph/xeno_telegraph/New(loc, ttl = 10, color = null) ..(loc) + if(color) + src.color = color QDEL_IN(src, ttl) /obj/effect/xenomorph/xeno_telegraph/red - icon_state = "xeno_telegraph_red" + color = COLOR_DARK_RED /obj/effect/xenomorph/xeno_telegraph/brown - icon_state = "xeno_telegraph_brown" + color = COLOR_BROWN /obj/effect/xenomorph/xeno_telegraph/green - icon_state = "xeno_telegraph_green" + color = COLOR_LIGHT_GREEN -/obj/effect/xenomorph/xeno_telegraph/brown/abduct_hook +/// This has a brown icon state and does not have a color overlay by default. +/obj/effect/xenomorph/xeno_telegraph/abduct_hook icon_state = "xeno_telegraph_abduct_hook_anim" -/obj/effect/xenomorph/xeno_telegraph/brown/lash +/// This has a brown icon state and does not have a color overlay by default. +/obj/effect/xenomorph/xeno_telegraph/lash icon_state = "xeno_telegraph_lash" - - /obj/effect/xenomorph/acid_damage_delay name = "???" desc = "" @@ -592,7 +601,7 @@ total_hits++ - var/datum/action/xeno_action/activable/boiler_trap/trap = get_xeno_action_by_type(linked_xeno, /datum/action/xeno_action/activable/boiler_trap) + var/datum/action/xeno_action/activable/boiler_trap/trap = get_action(linked_xeno, /datum/action/xeno_action/activable/boiler_trap) trap.reduce_cooldown(total_hits*4 SECONDS) diff --git a/code/game/objects/effects/decals/cleanable/blood/blood.dm b/code/game/objects/effects/decals/cleanable/blood/blood.dm index 918797608b..9fd5e79965 100644 --- a/code/game/objects/effects/decals/cleanable/blood/blood.dm +++ b/code/game/objects/effects/decals/cleanable/blood/blood.dm @@ -112,7 +112,7 @@ /obj/effect/decal/cleanable/blood/writing/New() ..() - if(random_icon_states.len) + if(length(random_icon_states)) for(var/obj/effect/decal/cleanable/blood/writing/W in loc) random_icon_states.Remove(W.icon_state) icon_state = pick(random_icon_states) diff --git a/code/game/objects/effects/decals/cleanable/blood/robots.dm b/code/game/objects/effects/decals/cleanable/blood/robots.dm index 1bbadb1461..3ee3c9e07f 100644 --- a/code/game/objects/effects/decals/cleanable/blood/robots.dm +++ b/code/game/objects/effects/decals/cleanable/blood/robots.dm @@ -3,11 +3,11 @@ desc = "It's a useless heap of junk... or is it?" icon = 'icons/mob/robots.dmi' icon_state = "gib1" - basecolor="#030303" + basecolor=COLOR_OIL random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6", "gib7") /obj/effect/decal/cleanable/blood/gibs/robot/update_icon() - color = "#FFFFFF" + color = COLOR_WHITE /obj/effect/decal/cleanable/blood/gibs/robot/dry() //pieces of robots do not dry up like return @@ -39,7 +39,7 @@ /obj/effect/decal/cleanable/blood/oil name = "motor oil" desc = "It's black and greasy." - basecolor="#030303" + basecolor=COLOR_OIL /obj/effect/decal/cleanable/blood/oil/dry() return diff --git a/code/game/objects/effects/decals/cleanable/fuel.dm b/code/game/objects/effects/decals/cleanable/fuel.dm index 3e245f760e..a3f5f2d4e1 100644 --- a/code/game/objects/effects/decals/cleanable/fuel.dm +++ b/code/game/objects/effects/decals/cleanable/fuel.dm @@ -24,7 +24,7 @@ if(amount < 5.0) return var/turf/S = loc if(!istype(S)) return - for(var/d in cardinal) + for(var/d in GLOB.cardinals) if(rand(25)) var/turf/target = get_step(src, d) var/turf/origin = get_turf(src) diff --git a/code/game/objects/effects/decals/cleanable/misc.dm b/code/game/objects/effects/decals/cleanable/misc.dm index 9cf2aa3d8e..5969914eb7 100644 --- a/code/game/objects/effects/decals/cleanable/misc.dm +++ b/code/game/objects/effects/decals/cleanable/misc.dm @@ -36,7 +36,7 @@ acid_damage = 1 icon_state = "greenglow" light_range = 1 - light_color = COLOUR_GREEN + light_color = COLOR_LIGHT_GREEN /obj/effect/decal/cleanable/flour name = "flour" desc = "It's still good. Four second rule!" @@ -55,7 +55,7 @@ anchored = TRUE layer = TURF_LAYER light_range = 1 - light_color = COLOUR_GREEN + light_color = COLOR_LIGHT_GREEN icon = 'icons/effects/effects.dmi' icon_state = "greenglow" @@ -99,7 +99,7 @@ appearance_flags = RESET_ALPHA | TILE_BOUND | PIXEL_SCALE garbage = FALSE /obj/effect/decal/cleanable/cobweb2/dynamic/Initialize(mapload, targetdir, webscale = 1.0) - alpha += round(webscale * 120) + alpha += floor(webscale * 120) var/angle = dir2angle(targetdir) var/matrix/TM = new TM *= webscale diff --git a/code/game/objects/effects/decals/crayon.dm b/code/game/objects/effects/decals/crayon.dm index cfe5f27da9..35e354c121 100644 --- a/code/game/objects/effects/decals/crayon.dm +++ b/code/game/objects/effects/decals/crayon.dm @@ -5,7 +5,7 @@ layer = ABOVE_TURF_LAYER anchored = TRUE -/obj/effect/decal/cleanable/crayon/New(location, main = "#FFFFFF",shade = "#000000", type = "rune") +/obj/effect/decal/cleanable/crayon/New(location, main = COLOR_WHITE,shade = COLOR_BLACK, type = "rune") ..() forceMove(location) diff --git a/code/game/objects/effects/decals/misc.dm b/code/game/objects/effects/decals/misc.dm index 338f8b9a7e..4483d2fd7d 100644 --- a/code/game/objects/effects/decals/misc.dm +++ b/code/game/objects/effects/decals/misc.dm @@ -95,11 +95,11 @@ return ..() /obj/effect/decal/mecha_wreckage/gygax - name = "Gygax wreckage" + name = "MAX wreckage" icon_state = "gygax-broken" /obj/effect/decal/mecha_wreckage/gygax/dark - name = "Dark Gygax wreckage" + name = "Dark MAX wreckage" icon_state = "darkgygax-broken" /obj/effect/decal/mecha_wreckage/marauder @@ -116,7 +116,7 @@ icon_state = "seraph-broken" /obj/effect/decal/mecha_wreckage/ripley - name = "Ripley wreckage" + name = "P-1000 wreckage" icon_state = "ripley-broken" /obj/effect/decal/mecha_wreckage/ripley/firefighter @@ -124,11 +124,11 @@ icon_state = "firefighter-broken" /obj/effect/decal/mecha_wreckage/ripley/deathripley - name = "Death-Ripley wreckage" + name = "Death-P-1000 wreckage" icon_state = "deathripley-broken" /obj/effect/decal/mecha_wreckage/durand - name = "Durand wreckage" + name = "MOX wreckage" icon_state = "durand-broken" /obj/effect/decal/mecha_wreckage/phazon @@ -136,7 +136,7 @@ icon_state = "phazon-broken" /obj/effect/decal/mecha_wreckage/odysseus - name = "Odysseus wreckage" + name = "Alice wreckage" icon_state = "odysseus-broken" /obj/effect/decal/mecha_wreckage/hoverpod diff --git a/code/game/objects/effects/decals/posters.dm b/code/game/objects/effects/decals/posters.dm index 7a8054efce..f13244cbc0 100644 --- a/code/game/objects/effects/decals/posters.dm +++ b/code/game/objects/effects/decals/posters.dm @@ -10,7 +10,7 @@ /obj/item/poster/New(turf/loc, given_serial = 0) if(given_serial == 0) - serial_number = rand(1, GLOB.poster_designs.len) + serial_number = rand(1, length(GLOB.poster_designs)) else serial_number = given_serial name += " - No. [serial_number]" @@ -33,7 +33,7 @@ serial_number = serial if(!isnum(serial_number)) - serial_number = rand(1, GLOB.poster_designs.len) + serial_number = rand(1, length(GLOB.poster_designs)) var/designtype = GLOB.poster_designs[serial_number] var/datum/poster/design=new designtype @@ -160,14 +160,14 @@ icon_state = "poster3" /obj/structure/sign/poster/music/Initialize() - serial_number = pick(3,5,25,26,29,38,39) + serial_number = pick(3,5,25,26,38,39) .=..() /obj/structure/sign/poster/pinup icon_state = "poster12" /obj/structure/sign/poster/pinup/Initialize() - serial_number = pick(12,16,17) + serial_number = pick(12,16,17,29) .=..() /obj/structure/sign/poster/propaganda diff --git a/code/game/objects/effects/effect_system/chemsmoke.dm b/code/game/objects/effects/effect_system/chemsmoke.dm index eeb17f7c98..41b58ba39e 100644 --- a/code/game/objects/effects/effect_system/chemsmoke.dm +++ b/code/game/objects/effects/effect_system/chemsmoke.dm @@ -8,6 +8,7 @@ time_to_live = 300 anchored = TRUE smokeranking = SMOKE_RANK_HIGH + alpha = 100 /obj/effect/particle_effect/smoke/chem/Initialize() . = ..() @@ -26,7 +27,7 @@ var/list/targetTurfs var/list/wallList var/density - + var/static/last_reaction_signature /datum/effect_system/smoke_spread/chem/New() ..() @@ -56,10 +57,11 @@ targetTurfs = new() //build affected area list - for(var/turf/T in view(range, location)) + FOR_DVIEW(var/turf/T, range, location, HIDE_INVISIBLE_OBSERVER) //cull turfs to circle if(cheap_pythag(T.x - location.x, T.y - location.y) <= range) targetTurfs += T + FOR_DVIEW_END //make secondary list for reagents that affect walls if(chemholder.reagents.has_reagent("thermite") || chemholder.reagents.has_reagent("plantbgone")) @@ -69,7 +71,7 @@ smokeFlow(location, targetTurfs, wallList) //set the density of the cloud - for diluting reagents - density = max(1, targetTurfs.len / 4) //clamp the cloud density minimum to 1 so it cant multiply the reagents + density = max(1, length(targetTurfs) / 4) //clamp the cloud density minimum to 1 so it cant multiply the reagents //Admin messaging var/contained = "" @@ -79,14 +81,19 @@ contained = "\[[contained]\]" var/area/A = get_area(location) + var/reaction_signature = "[time2text(world.timeofday, "hh:mm")]: ([A.name])[contained] by [carry.my_atom.fingerprintslast]" + if(last_reaction_signature == reaction_signature) + return + last_reaction_signature = reaction_signature + var/where = "[A.name]|[location.x], [location.y]" var/whereLink = "[where]" if(carry.my_atom.fingerprintslast) - message_admins("A chemical smoke reaction has taken place in ([whereLink])[contained]. Last associated key is [carry.my_atom.fingerprintslast].") + msg_admin_niche("A chemical smoke reaction has taken place in ([whereLink])[contained]. Last associated key is [carry.my_atom.fingerprintslast].") log_game("A chemical smoke reaction has taken place in ([where])[contained]. Last associated key is [carry.my_atom.fingerprintslast].") else - message_admins("A chemical smoke reaction has taken place in ([whereLink]). No associated key.") + msg_admin_niche("A chemical smoke reaction has taken place in ([whereLink])[contained]. No associated key.") log_game("A chemical smoke reaction has taken place in ([where])[contained]. No associated key.") @@ -104,7 +111,7 @@ return //reagent application - only run if there are extra reagents in the smoke - if(chemholder.reagents.reagent_list.len) + if(length(chemholder.reagents.reagent_list)) for(var/datum/reagent/R in chemholder.reagents.reagent_list) var/proba = 100 var/runs = 5 @@ -138,10 +145,10 @@ var/dist = cheap_pythag(T.x - location.x, T.y - location.y) if(!dist) dist = 1 - R.reaction_mob(A, volume = R.volume / dist) + R.reaction_mob(A, volume = R.volume * POTENCY_MULTIPLIER_VLOW / dist, permeable = FALSE) else if(istype(A, /obj)) R.reaction_obj(A, R.volume) - sleep(30) + sleep(3 SECONDS) //build smoke icon @@ -166,7 +173,7 @@ continue var/offset = 0 - var/points = round((radius * 2 * PI) / arcLength) + var/points = floor((radius * 2 * PI) / arcLength) var/angle = round(ToDegrees(arcLength / radius), 1) if(!IsInteger(radius)) @@ -191,18 +198,15 @@ //------------------------------------------ /datum/effect_system/smoke_spread/chem/proc/spawnSmoke(turf/T, icon/I, dist = 1) var/obj/effect/particle_effect/smoke/chem/smoke = new(location) - if(chemholder.reagents.reagent_list.len) + if(length(chemholder.reagents.reagent_list)) chemholder.reagents.copy_to(smoke, chemholder.reagents.total_volume / dist, safety = 1) //copy reagents to the smoke so mob/breathe() can handle inhaling the reagents smoke.icon = I smoke.layer = FLY_LAYER - smoke.setDir(pick(cardinal)) + smoke.setDir(pick(GLOB.cardinals)) smoke.pixel_x = -32 + rand(-8,8) smoke.pixel_y = -32 + rand(-8,8) walk_to(smoke, T) - smoke.set_opacity(1) //switching opacity on after the smoke has spawned, and then - sleep(150+rand(0,20)) // turning it off before it is deleted results in cleaner - if(smoke.opacity) - smoke.set_opacity(0) + sleep(150+rand(0,20)) fadeOut(smoke) qdel(smoke) @@ -227,9 +231,9 @@ pending += location - while(pending.len) + while(length(pending)) for(var/turf/current in pending) - for(var/D in cardinal) + for(var/D in GLOB.cardinals) var/turf/target = get_step(current, D) if(wallList) if(istype(target, /turf/closed/wall)) @@ -259,3 +263,14 @@ targetTurfs = complete return + +/obj/effect/particle_effect/smoke/chem/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE + if(!length(reagents?.reagent_list)) + return FALSE + + for(var/datum/reagent/reagent in reagents.reagent_list) + reagent.reaction_mob(affected_mob, volume = reagent.volume * POTENCY_MULTIPLIER_LOW, permeable = FALSE) + return TRUE diff --git a/code/game/objects/effects/effect_system/effect_system.dm b/code/game/objects/effects/effect_system/effect_system.dm index 49342af851..2e22036827 100644 --- a/code/game/objects/effects/effect_system/effect_system.dm +++ b/code/game/objects/effects/effect_system/effect_system.dm @@ -41,10 +41,10 @@ would spawn and follow the beaker, even if it is carried or thrown. // will always spawn at the items location, even if it's moved. /* Example: -var/datum/effect_system/steam_spread/steam = new /datum/effect_system/steam_spread() -- creates new system -steam.set_up(5, 0, mob.loc) -- sets up variables -OPTIONAL: steam.attach(mob) -steam.start() -- spawns the effect + var/datum/effect_system/steam_spread/steam = new /datum/effect_system/steam_spread() -- creates new system + steam.set_up(5, 0, mob.loc) -- sets up variables + OPTIONAL: steam.attach(mob) + steam.start() -- spawns the effect */ ///////////////////////////////////////////// /obj/effect/particle_effect/steam @@ -71,9 +71,9 @@ steam.start() -- spawns the effect var/obj/effect/particle_effect/steam/steam = new /obj/effect/particle_effect/steam(location) var/direction if(cardinals) - direction = pick(cardinal) + direction = pick(GLOB.cardinals) else - direction = pick(alldirs) + direction = pick(GLOB.alldirs) for(i=0, i 0) + if (floor(amount/8) > 0) dmglevel = 1 - else if (round(amount/4) > 0) + else if (floor(amount/4) > 0) dmglevel = 2 - else if (round(amount/2) > 0) + else if (floor(amount/2) > 0) dmglevel = 3 if(dmglevel<4) holder.ex_act(dmglevel) @@ -76,7 +76,7 @@ /obj/effect/particle_effect/expl_particles/Initialize(mapload, ...) . = ..() - dir = pick(alldirs) + dir = pick(GLOB.alldirs) animate(src, 5, alpha = 0, easing = CUBIC_EASING) QDEL_IN(src, 5) @@ -93,7 +93,7 @@ for(i=0, i 0) diff --git a/code/game/objects/effects/effect_system/particle_effects.dm b/code/game/objects/effects/effect_system/particle_effects.dm index 972d242bf3..9440c16f2d 100644 --- a/code/game/objects/effects/effect_system/particle_effects.dm +++ b/code/game/objects/effects/effect_system/particle_effects.dm @@ -8,10 +8,10 @@ mouse_opacity = MOUSE_OPACITY_TRANSPARENT unacidable = TRUE // So effect are not targeted by alien acid. -/obj/effect/particle_effect/initialize_pass_flags(datum/pass_flags_container/PF) +/obj/effect/particle_effect/initialize_pass_flags(datum/pass_flags_container/pass_flags) ..() - if (PF) - PF.flags_pass = PASS_OVER|PASS_AROUND|PASS_UNDER|PASS_THROUGH|PASS_MOB_THRU + if (pass_flags) + pass_flags.flags_pass = PASS_OVER|PASS_AROUND|PASS_UNDER|PASS_THROUGH|PASS_MOB_THRU //Water @@ -22,17 +22,14 @@ var/life = 15 mouse_opacity = MOUSE_OPACITY_TRANSPARENT -/obj/effect/particle_effect/water/initialize_pass_flags(datum/pass_flags_container/PF) +/obj/effect/particle_effect/water/initialize_pass_flags(datum/pass_flags_container/pass_flags) ..() - if (PF) - PF.flags_pass = PASS_THROUGH|PASS_OVER|PASS_MOB_THRU|PASS_UNDER + if (pass_flags) + pass_flags.flags_pass = PASS_THROUGH|PASS_OVER|PASS_MOB_THRU|PASS_UNDER /obj/effect/particle_effect/water/Move(turf/newloc) - //var/turf/T = src.loc - //if (istype(T, /turf)) - // T.firelevel = 0 //TODO: FIX - if (--src.life < 1) - //SN src = null + life -= 1 + if (life < 1) qdel(src) if(newloc.density) return 0 diff --git a/code/game/objects/effects/effect_system/smoke.dm b/code/game/objects/effects/effect_system/smoke.dm index 9e472ec5d7..fcc815a9dc 100644 --- a/code/game/objects/effects/effect_system/smoke.dm +++ b/code/game/objects/effects/effect_system/smoke.dm @@ -4,7 +4,7 @@ // in case you wanted a vent to always smoke north for example ///////////////////////////////////////////// -/// Chance that cades block the gas. Smoke spread ticks are calculated very quickly so this has to be high to have a noticable effect. +/// Chance that cades block the gas. Smoke spread ticks are calculated very quickly so this has to be high to have a noticeable effect. #define BOILER_GAS_CADE_BLOCK_CHANCE 35 /obj/effect/particle_effect/smoke @@ -25,10 +25,15 @@ pixel_x = -32 pixel_y = -32 -/obj/effect/particle_effect/smoke/Initialize(mapload, oldamount, new_cause_data) +/obj/effect/particle_effect/smoke/Initialize(mapload, oldamount, datum/cause_data/new_cause_data) . = ..() if(oldamount) amount = oldamount - 1 + if(!istype(new_cause_data)) + if(new_cause_data) + new_cause_data = create_cause_data(new_cause_data) + else + new_cause_data = create_cause_data(name) cause_data = new_cause_data time_to_live += rand(-1,1) START_PROCESSING(SSeffects, src) @@ -62,61 +67,65 @@ if(prob(severity/EXPLOSION_THRESHOLD_LOW * 100)) qdel(src) -/obj/effect/particle_effect/smoke/Crossed(atom/movable/M) +/obj/effect/particle_effect/smoke/Crossed(atom/movable/moveable) ..() - if(istype(M, /obj/projectile/beam)) - var/obj/projectile/beam/B = M - B.damage = (B.damage/2) - if(iscarbon(M)) - affect(M) + if(istype(moveable, /obj/projectile/beam)) + var/obj/projectile/beam/beam = moveable + beam.damage /= 2 + if(iscarbon(moveable)) + affect(moveable) -/obj/effect/particle_effect/smoke/proc/apply_smoke_effect(turf/T) - for(var/mob/living/L in T) - affect(L) +/obj/effect/particle_effect/smoke/proc/apply_smoke_effect(turf/cur_turf) + for(var/mob/living/affected_mob in cur_turf) + affect(affected_mob) /obj/effect/particle_effect/smoke/proc/spread_smoke(direction) set waitfor = 0 + sleep(spread_speed) - if(QDELETED(src)) return - var/turf/U = get_turf(src) - if(!U) return - for(var/i in cardinal) + if(QDELETED(src)) + return + + var/turf/start_turf = get_turf(src) + if(!start_turf) + return + for(var/i in GLOB.cardinals) if(direction && i != direction) continue - var/turf/T = get_step(U, i) - if(check_airblock(U,T)) //smoke can't spread that way + var/turf/cur_turf = get_step(start_turf, i) + if(check_airblock(start_turf, cur_turf)) //smoke can't spread that way continue - var/obj/effect/particle_effect/smoke/foundsmoke = locate() in T // Check for existing smoke and act accordingly + var/obj/effect/particle_effect/smoke/foundsmoke = locate() in cur_turf // Check for existing smoke and act accordingly if(foundsmoke) if(foundsmoke.smokeranking <= src.smokeranking) qdel(foundsmoke) else continue - var/obj/effect/particle_effect/smoke/S = new type(T, amount, cause_data) - S.setDir(pick(cardinal)) - S.time_to_live = time_to_live - if(S.amount>0) - S.spread_smoke() + var/obj/effect/particle_effect/smoke/smoke = new type(cur_turf, amount, cause_data) + smoke.setDir(pick(GLOB.cardinals)) + smoke.time_to_live = time_to_live + if(smoke.amount > 0) + smoke.spread_smoke() //proc to check if smoke can expand to another turf -/obj/effect/particle_effect/smoke/proc/check_airblock(turf/U, turf/T) - if(!T) +/obj/effect/particle_effect/smoke/proc/check_airblock(turf/start_turf, turf/cur_turf) + if(!cur_turf) return FALSE - if(T.density) + if(cur_turf.density) return TRUE if(prob(BOILER_GAS_CADE_BLOCK_CHANCE)) var/move_dir = 0 - for(var/obj/structure/obstacle in T) - move_dir = get_dir(src, T) + for(var/obj/structure/obstacle in cur_turf) + move_dir = get_dir(src, cur_turf) if(obstacle.BlockedPassDirs(src, move_dir)) return TRUE -/obj/effect/particle_effect/smoke/proc/affect(mob/living/carbon/M) - if (istype(M)) - return 0 - return 1 +/obj/effect/particle_effect/smoke/proc/affect(mob/living/carbon/affected_mob) + if(!istype(affected_mob)) + return FALSE + return TRUE ///////////////////////////////////////////// // Bad smoke @@ -128,22 +137,110 @@ /obj/effect/particle_effect/smoke/bad/Move() . = ..() - for(var/mob/living/carbon/M in get_turf(src)) - affect(M) + for(var/mob/living/carbon/affected_mob in get_turf(src)) + affect(affected_mob) -/obj/effect/particle_effect/smoke/bad/affect(mob/living/carbon/M) +/obj/effect/particle_effect/smoke/bad/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE + if(affected_mob.internal != null && affected_mob.wear_mask && (affected_mob.wear_mask.flags_inventory & ALLOWINTERNALS)) + return FALSE + if(issynth(affected_mob)) + return FALSE + + if(prob(20)) + affected_mob.drop_held_item() + affected_mob.apply_damage(1, OXY) + + if(affected_mob.coughedtime < world.time && !affected_mob.stat) + affected_mob.coughedtime = world.time + 2 SECONDS + if(ishuman(affected_mob)) //Humans only to avoid issues + affected_mob.emote("cough") + return TRUE + +///////////////////////////////////////////// +// Miasma smoke (for LZs) +///////////////////////////////////////////// + +/obj/effect/particle_effect/smoke/miasma + name = "CN20-X miasma" + amount = 1 + time_to_live = INFINITY + smokeranking = SMOKE_RANK_MAX + opacity = FALSE + alpha = 75 + color = "#301934" + /// How much damage to deal per affect() + var/burn_damage = 4 + /// Multiplier to burn_damage for xenos and yautja + var/xeno_yautja_multiplier = 3 + /// Time required for damage to actually apply + var/active_time + +/obj/effect/particle_effect/smoke/miasma/Initialize(mapload, oldamount, datum/cause_data/new_cause_data) + . = ..() + // Mimic dispersal without actually doing spread logic + alpha = 0 + active_time = world.time + 6 SECONDS + addtimer(VARSET_CALLBACK(src, alpha, initial(alpha)), rand(1, 6) SECONDS) + +/obj/effect/particle_effect/smoke/miasma/apply_smoke_effect(turf/cur_turf) ..() - if (M.internal != null && M.wear_mask && (M.wear_mask.flags_inventory & ALLOWINTERNALS)) - return - else - if(prob(20)) - M.drop_held_item() - M.apply_damage(1, OXY) - if(M.coughedtime != 1) - M.coughedtime = 1 - if(ishuman(M)) //Humans only to avoid issues - M.emote("cough") - addtimer(VARSET_CALLBACK(M, coughedtime, 0), 2 SECONDS) + // coffins + for(var/obj/structure/closet/container in cur_turf) + for(var/mob/living/carbon/mob in container) + affect(mob) + + // vehicles + var/obj/vehicle/multitile/car = locate() in cur_turf + var/datum/interior/car_interior = car?.interior + if(car_interior) + var/list/bounds = car_interior.get_bound_turfs() + for(var/turf/car_turf as anything in block(bounds[1], bounds[2])) + var/obj/effect/particle_effect/smoke/miasma/smoke = locate() in car_turf + if(!smoke) + smoke = new(car_turf) + smoke.time_to_live = rand(7, 12) + +/obj/effect/particle_effect/smoke/miasma/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE + if(affected_mob.stat == DEAD) + return FALSE + + var/active = world.time > active_time + var/damage = active ? burn_damage : 0 // A little buffer time to get out of it + if(isxeno(affected_mob)) + damage *= xeno_yautja_multiplier + else if(isyautja(affected_mob)) + if(prob(75)) + return FALSE + damage *= xeno_yautja_multiplier + + affected_mob.apply_damage(damage, BURN) + affected_mob.AdjustEyeBlur(0.75) + affected_mob.last_damage_data = cause_data + + if(affected_mob.coughedtime < world.time && !affected_mob.stat) + affected_mob.coughedtime = world.time + 2 SECONDS + if(ishuman(affected_mob)) //Humans only to avoid issues + if(issynth(affected_mob)) + affected_mob.visible_message(SPAN_DANGER("[affected_mob]'s skin is sloughing off!"),\ + SPAN_DANGER("Your skin is sloughing off!")) + else + if(prob(50)) + affected_mob.emote("cough") + else + affected_mob.emote("gasp") + if(prob(20)) + affected_mob.drop_held_item() + to_chat(affected_mob, SPAN_DANGER("Something is not right here...")) + return TRUE + +/obj/effect/particle_effect/smoke/miasma/ex_act(severity) + return ///////////////////////////////////////////// // Sleep smoke @@ -154,20 +251,26 @@ /obj/effect/particle_effect/smoke/sleepy/Move() . = ..() - for(var/mob/living/carbon/M in get_turf(src)) - affect(M) + for(var/mob/living/carbon/affected_mob in get_turf(src)) + affect(affected_mob) + +/obj/effect/particle_effect/smoke/sleepy/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE + if(affected_mob.stat == DEAD) + return FALSE + if(issynth(affected_mob)) + return FALSE -/obj/effect/particle_effect/smoke/sleepy/affect(mob/living/carbon/M as mob ) - if (!..()) - return 0 + affected_mob.drop_held_item() + affected_mob.sleeping++ - M.drop_held_item() - M:sleeping++ - if(M.coughedtime != 1) - M.coughedtime = 1 - if(ishuman(M)) //Humans only to avoid issues - M.emote("cough") - addtimer(VARSET_CALLBACK(M, coughedtime, 0), 2 SECONDS) + if(affected_mob.coughedtime < world.time && !affected_mob.stat) + affected_mob.coughedtime = world.time + 2 SECONDS + if(ishuman(affected_mob)) //Humans only to avoid issues + affected_mob.emote("cough") + return TRUE ///////////////////////////////////////////// // Mustard Gas @@ -185,17 +288,20 @@ affect(creature) /obj/effect/particle_effect/smoke/mustard/affect(mob/living/carbon/human/creature) - if(!istype(creature) || issynth(creature)) + . = ..() + if(!.) + return FALSE + if(issynth(creature)) return FALSE - creature.burn_skin(0.75) - if(creature.coughedtime != 1) - creature.coughedtime = 1 + if(creature.burn_skin(0.75)) + creature.last_damage_data = cause_data + + if(creature.coughedtime < world.time && !creature.stat) + creature.coughedtime = world.time + 2 SECONDS if(ishuman(creature)) //Humans only to avoid issues creature.emote("gasp") - addtimer(VARSET_CALLBACK(creature, coughedtime, 0), 2 SECONDS) - creature.updatehealth() - return + return TRUE ///////////////////////////////////////////// // Phosphorus Gas @@ -217,35 +323,41 @@ /obj/effect/particle_effect/smoke/phosphorus/Move() . = ..() - for(var/mob/living/carbon/M in get_turf(src)) - affect(M) + for(var/mob/living/carbon/affected_mob in get_turf(src)) + affect(affected_mob) -/obj/effect/particle_effect/smoke/phosphorus/affect(mob/living/carbon/M) - ..() - burn_damage = 40 - if(ishuman(M)) - if (M.internal != null && M.wear_mask && (M.wear_mask.flags_inventory & ALLOWINTERNALS)) - return - else - if(prob(20)) - M.drop_held_item() - M.apply_damage(1, OXY) - M.updatehealth() - if(M.coughedtime < world.time) - M.emote("cough") - M.coughedtime = world.time + next_cough +/obj/effect/particle_effect/smoke/phosphorus/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE - M.last_damage_data = cause_data + var/damage = burn_damage + if(ishuman(affected_mob)) + if(affected_mob.internal != null && affected_mob.wear_mask && (affected_mob.wear_mask.flags_inventory & ALLOWINTERNALS)) + return FALSE - if(isyautja(M) || isxeno(M)) - burn_damage *= xeno_yautja_reduction + if(prob(20)) + affected_mob.drop_held_item() + affected_mob.apply_damage(1, OXY) + + if(affected_mob.coughedtime < world.time && !affected_mob.stat) + affected_mob.coughedtime = world.time + next_cough + if(issynth(affected_mob)) + affected_mob.visible_message(SPAN_DANGER("[affected_mob]'s skin is sloughing off!"),\ + SPAN_DANGER("Your skin is sloughing off!")) + else + affected_mob.emote("cough") - M.burn_skin(burn_damage) - M.adjust_fire_stacks(applied_fire_stacks) - M.fire_reagent = new /datum/reagent/napalm/ut() - M.IgniteMob() - M.updatehealth() + if(isyautja(affected_mob) || isxeno(affected_mob)) + damage *= xeno_yautja_reduction + var/reagent = new /datum/reagent/napalm/ut() + affected_mob.burn_skin(damage) + affected_mob.adjust_fire_stacks(applied_fire_stacks, reagent) + affected_mob.IgniteMob() + affected_mob.updatehealth() + affected_mob.last_damage_data = cause_data + return TRUE ///////////////////////////////////////////// // CN20 Nerve Gas @@ -275,6 +387,14 @@ affect(creature) /obj/effect/particle_effect/smoke/cn20/affect(mob/living/carbon/creature) + . = ..() + if(!.) + return FALSE + if(creature.stat == DEAD) + return FALSE + if(issynth(creature)) + return FALSE + var/mob/living/carbon/xenomorph/xeno_creature var/mob/living/carbon/human/human_creature var/datum/internal_organ/lungs/lungs @@ -285,8 +405,7 @@ human_creature = creature lungs = human_creature.internal_organs_by_name["lungs"] eyes = human_creature.internal_organs_by_name["eyes"] - if(!istype(creature) || issynth(creature) || creature.stat == DEAD) - return FALSE + if(!xeno_affecting && xeno_creature) return FALSE if(isyautja(creature) && prob(75)) @@ -297,42 +416,42 @@ if(human_creature && (human_creature.head && (human_creature.head.flags_inventory & BLOCKGASEFFECT))) return FALSE - var/effect_amt = round(6 + amount*6) + var/effect_amt = floor(6 + amount*6) if(xeno_creature) - if(xeno_creature.interference < 4) - to_chat(xeno_creature, SPAN_XENOHIGHDANGER("Your awareness dims to a small area!")) creature.apply_damage(20, BRUTE) - xeno_creature.interference = 10 + xeno_creature.AddComponent(/datum/component/status_effect/interference, 10, 10) xeno_creature.blinded = TRUE else creature.apply_damage(12, TOX) creature.apply_damage(2, BRAIN) lungs.take_damage(2) - creature.SetEarDeafness(max(creature.ear_deaf, round(effect_amt*1.5))) //Paralysis of hearing system, aka deafness + + creature.SetEarDeafness(max(creature.ear_deaf, floor(effect_amt*1.5))) //Paralysis of hearing system, aka deafness if(!xeno_creature) //Eye exposure damage to_chat(creature, SPAN_DANGER("Your eyes sting. You can't see!")) - creature.SetEyeBlind(round(effect_amt/3)) + creature.SetEyeBlind(floor(effect_amt/3)) + eyes.take_damage(2) - if(!xeno_creature && creature.coughedtime != 1 && !creature.stat) //Coughing/gasping - creature.coughedtime = 1 + if(human_creature && creature.coughedtime < world.time && !creature.stat) //Coughing/gasping + creature.coughedtime = world.time + 1.5 SECONDS if(prob(50)) creature.emote("cough") else creature.emote("gasp") - addtimer(VARSET_CALLBACK(creature, coughedtime, 0), 1.5 SECONDS) + var/stun_chance = 20 if(xeno_affecting) stun_chance = 35 if(prob(stun_chance)) - creature.apply_effect(1, WEAKEN) + creature.KnockDown(2) //Topical damage (neurotoxin on exposed skin) if(xeno_creature) to_chat(xeno_creature, SPAN_XENODANGER("You are struggling to move, it's as if you're paralyzed!")) else to_chat(creature, SPAN_DANGER("Your body is going numb, almost as if paralyzed!")) - if(prob(60 + round(amount*15))) //Highly likely to drop items due to arms/hands seizing up + if(prob(60 + floor(amount*15))) //Highly likely to drop items due to arms/hands seizing up creature.drop_held_item() if(human_creature) human_creature.temporary_slowdown = max(human_creature.temporary_slowdown, 4) //One tick every two second @@ -421,61 +540,64 @@ return ..() -/obj/effect/particle_effect/smoke/xeno_burn/apply_smoke_effect(turf/T) +/obj/effect/particle_effect/smoke/xeno_burn/apply_smoke_effect(turf/cur_turf) ..() - for(var/obj/structure/barricade/B in T) - B.take_acid_damage(XENO_ACID_GAS_BARRICADE_DAMAGE) + for(var/obj/structure/barricade/barricade in cur_turf) + barricade.take_acid_damage(XENO_ACID_GAS_BARRICADE_DAMAGE) if(prob(75)) // anti sound spam playsound(src, pick("acid_sizzle", "acid_hit"), 25) - for(var/obj/vehicle/multitile/R in T) - R.take_damage_type(15, "acid") + for(var/obj/vehicle/multitile/vehicle in cur_turf) + vehicle.take_damage_type(15, "acid") - for(var/obj/structure/machinery/m56d_hmg/auto/H in T) - H.update_health(XENO_ACID_HMG_DAMAGE) + for(var/obj/structure/machinery/m56d_hmg/auto/gun in cur_turf) + gun.update_health(XENO_ACID_HMG_DAMAGE) //No effect when merely entering the smoke turf, for balance reasons -/obj/effect/particle_effect/smoke/xeno_burn/Crossed(mob/living/carbon/M as mob) +/obj/effect/particle_effect/smoke/xeno_burn/Crossed(mob/living/carbon/affected_mob as mob) return -/obj/effect/particle_effect/smoke/xeno_burn/affect(mob/living/carbon/M) - ..() - - if(M.ally_of_hivenumber(hivenumber)) - return - - if(isyautja(M) && prob(75)) - return - if(M.stat == DEAD) - return - if(HAS_TRAIT(M, TRAIT_NESTED) && M.status_flags & XENO_HOST) - return - - M.last_damage_data = cause_data +/obj/effect/particle_effect/smoke/xeno_burn/affect(mob/living/carbon/affected_mob) + . = ..() + if(!.) + return FALSE + if(affected_mob.stat == DEAD) + return FALSE + if(affected_mob.ally_of_hivenumber(hivenumber)) + return FALSE + if(isyautja(affected_mob) && prob(75)) + return FALSE + if(HAS_TRAIT(affected_mob, TRAIT_NESTED) && affected_mob.status_flags & XENO_HOST) + return FALSE - M.apply_damage(3, OXY) //Basic oxyloss from "can't breathe" + affected_mob.last_damage_data = cause_data + affected_mob.apply_damage(3, OXY) //Basic oxyloss from "can't breathe" - if(isxeno(M)) - M.apply_damage(gas_damage * XVX_ACID_DAMAGEMULT, BURN) //Inhalation damage + if(isxeno(affected_mob)) + affected_mob.apply_damage(gas_damage * XVX_ACID_DAMAGEMULT, BURN) //Inhalation damage else - M.apply_damage(gas_damage, BURN) //Inhalation damage + affected_mob.apply_damage(gas_damage, BURN) //Inhalation damage - if(M.coughedtime != 1 && !M.stat && ishuman(M)) //Coughing/gasping - M.coughedtime = 1 - if(prob(50)) - M.emote("cough") + if(affected_mob.coughedtime < world.time && !affected_mob.stat && ishuman(affected_mob)) //Coughing/gasping + affected_mob.coughedtime = world.time + 1.5 SECONDS + if(issynth(affected_mob)) + affected_mob.visible_message(SPAN_DANGER("[affected_mob]'s skin is sloughing off!"),\ + SPAN_DANGER("Your skin is sloughing off!")) else - M.emote("gasp") - addtimer(VARSET_CALLBACK(M, coughedtime, 0), 1.5 SECONDS) + if(prob(50)) + affected_mob.emote("cough") + else + affected_mob.emote("gasp") //Topical damage (acid on exposed skin) - to_chat(M, SPAN_DANGER("Your skin feels like it is melting away!")) - if(ishuman(M)) - var/mob/living/carbon/human/H = M - H.apply_armoured_damage(amount*rand(15, 20), ARMOR_BIO, BURN) //Burn damage, randomizes between various parts //Amount corresponds to upgrade level, 1 to 2.5 + to_chat(affected_mob, SPAN_DANGER("Your skin feels like it is melting away!")) + if(ishuman(affected_mob)) + var/mob/living/carbon/human/human = affected_mob + human.apply_armoured_damage(amount*rand(15, 20), ARMOR_BIO, BURN) //Burn damage, randomizes between various parts //Amount corresponds to upgrade level, 1 to 2.5 else - M.burn_skin(5) //Failsafe for non-humans - M.updatehealth() + affected_mob.burn_skin(5) //Failsafe for non-humans + affected_mob.last_damage_data = cause_data + return TRUE //Xeno neurotox smoke. /obj/effect/particle_effect/smoke/xeno_weak @@ -493,24 +615,27 @@ return /obj/effect/particle_effect/smoke/xeno_weak/affect(mob/living/carbon/moob) // This applies every tick someone is in the smoke - ..() + . = ..() + if(!.) + return FALSE + if(moob.stat == DEAD) + return FALSE if(isxeno(moob)) - return + return FALSE if(isyautja(moob)) - neuro_dose = neuro_dose*2 // Yautja get half effects - msg = "You resist the tingling smoke's effects!" - return - if(moob.stat == DEAD) - return + return FALSE if(HAS_TRAIT(moob, TRAIT_NESTED) && moob.status_flags & XENO_HOST) - return + return FALSE + + var/mob/living/carbon/human/human_moob if(ishuman(moob)) - var/mob/living/carbon/human/H = moob - if(H.chem_effect_flags & CHEM_EFFECT_RESIST_NEURO) - return - var/effect_amt = round(6 + amount*6) + human_moob = moob + if(human_moob.chem_effect_flags & CHEM_EFFECT_RESIST_NEURO) + return FALSE + + var/effect_amt = floor(6 + amount*6) moob.eye_blurry = max(moob.eye_blurry, effect_amt) - moob.apply_effect(max(moob.eye_blurry, effect_amt), EYE_BLUR) + moob.EyeBlur(max(moob.eye_blurry, effect_amt)) moob.apply_damage(5, OXY) // Base "I can't breath oxyloss" Slightly more longer lasting then stamina damage // reworked code below if(!issynth(moob)) @@ -519,18 +644,18 @@ neuro_effect = new(moob, cause_data.resolve_mob()) neuro_effect.strength = effect_amt neuro_effect.duration += neuro_dose - if(moob.coughedtime != 1 && !moob.stat) //Coughing/gasping - moob.coughedtime = 1 + if(human_moob && moob.coughedtime < world.time && !moob.stat) //Coughing/gasping + moob.coughedtime = world.time + 1.5 SECONDS if(prob(50)) moob.Slow(1) moob.emote("cough") else moob.emote("gasp") - addtimer(VARSET_CALLBACK(moob, coughedtime, 0), 1.5 SECONDS) else msg = "You are consumed by the harmless gas, it is hard to navigate in!" - moob.apply_effect(SLOW,1) + moob.Slow(1) to_chat(moob, SPAN_DANGER(msg)) + return TRUE /obj/effect/particle_effect/smoke/xeno_weak_fire time_to_live = 16 @@ -548,74 +673,83 @@ . = ..() /obj/effect/particle_effect/smoke/xeno_weak_fire/affect(mob/living/carbon/moob) - ..() - + . = ..() + if(!.) + return FALSE + if(moob.stat == DEAD) + return FALSE if(isxeno(moob)) - return + return FALSE if(isyautja(moob) && prob(75)) - return - if(moob.stat == DEAD) - return + return FALSE if(HAS_TRAIT(moob, TRAIT_NESTED) && moob.status_flags & XENO_HOST) - return + return FALSE - var/effect_amt = round(6 + amount*6) + var/mob/living/carbon/human/human_moob + if(ishuman(moob)) + human_moob = moob + + var/effect_amt = floor(6 + amount*6) moob.apply_damage(9, OXY) // MUCH harsher - moob.SetEarDeafness(max(moob.ear_deaf, round(effect_amt*1.5))) //Paralysis of hearing system, aka deafness + moob.SetEarDeafness(max(moob.ear_deaf, floor(effect_amt*1.5))) //Paralysis of hearing system, aka deafness if(!moob.eye_blind) //Eye exposure damage to_chat(moob, SPAN_DANGER("Your eyes sting. You can't see!")) - moob.SetEyeBlind(round(effect_amt/3)) - if(moob.coughedtime != 1 && !moob.stat) //Coughing/gasping - moob.coughedtime = 1 - if(prob(50)) - moob.emote("cough") - else - moob.emote("gasp") - addtimer(VARSET_CALLBACK(moob, coughedtime, 0), 1.5 SECONDS) - if (prob(20)) - moob.apply_effect(1, WEAKEN) + moob.SetEyeBlind(floor(effect_amt/3)) + + if(human_moob && moob.coughedtime < world.time && !moob.stat) //Coughing/gasping + moob.coughedtime = world.time + 1.5 SECONDS + if(!issynth(moob)) + if(prob(50)) + moob.emote("cough") + else + moob.emote("gasp") + + if(prob(20)) + moob.KnockDown(1) //Topical damage (neurotoxin on exposed skin) to_chat(moob, SPAN_DANGER("Your body is going numb, almost as if paralyzed!")) - if(prob(40 + round(amount*15))) //Highly likely to drop items due to arms/hands seizing up + if(prob(40 + floor(amount*15))) //Highly likely to drop items due to arms/hands seizing up moob.drop_held_item() - if(ishuman(moob)) - var/mob/living/carbon/human/Human = moob - Human.temporary_slowdown = max(Human.temporary_slowdown, 4) //One tick every two second - Human.recalculate_move_delay = TRUE + if(human_moob) + human_moob.temporary_slowdown = max(human_moob.temporary_slowdown, 4) //One tick every two second + human_moob.recalculate_move_delay = TRUE + return TRUE /obj/effect/particle_effect/smoke/xeno_weak_fire/spread_smoke(direction) set waitfor = 0 sleep(spread_speed) - if(QDELETED(src)) return - var/turf/U = get_turf(src) - if(!U) return - for(var/i in cardinal) + if(QDELETED(src)) + return + var/turf/start_turf = get_turf(src) + if(!start_turf) + return + for(var/i in GLOB.cardinals) if(direction && i != direction) continue - var/turf/T = get_step(U, i) - if(check_airblock(U,T)) //smoke can't spread that way + var/turf/cur_turf = get_step(start_turf, i) + if(check_airblock(start_turf, cur_turf)) //smoke can't spread that way continue - var/obj/effect/particle_effect/smoke/foundsmoke = locate() in T // Check for existing smoke and act accordingly + var/obj/effect/particle_effect/smoke/foundsmoke = locate() in cur_turf // Check for existing smoke and act accordingly if(foundsmoke) - if(foundsmoke.smokeranking <= src.smokeranking) + if(foundsmoke.smokeranking <= smokeranking) qdel(foundsmoke) else continue - var/obj/effect/particle_effect/smoke/S = new type(T, amount, cause_data) + var/obj/effect/particle_effect/smoke/smoke = new type(cur_turf, amount, cause_data) - for (var/atom/A in T) - if (istype(A, /mob/living)) - var/mob/living/M = A - M.ExtinguishMob() - if(istype(A, /obj/flamer_fire)) - qdel(A) + for (var/atom/cur_atom in cur_turf) + if (istype(cur_atom, /mob/living)) + var/mob/living/affected_mob = cur_atom + affected_mob.ExtinguishMob() + if(istype(cur_atom, /obj/flamer_fire)) + qdel(cur_atom) - S.setDir(pick(cardinal)) - S.time_to_live = time_to_live - if(S.amount>0) - S.spread_smoke() + smoke.setDir(pick(GLOB.cardinals)) + smoke.time_to_live = time_to_live + if(smoke.amount > 0) + smoke.spread_smoke() ///////////////////////////////////////////// @@ -640,7 +774,7 @@ location = get_turf(loca) if(direct) direction = direct - if(lifetime) + if(smoke_time) lifetime = smoke_time radius = min(radius, 10) amount = radius @@ -649,11 +783,11 @@ /datum/effect_system/smoke_spread/start() if(holder) location = get_turf(holder) - var/obj/effect/particle_effect/smoke/S = new smoke_type(location, amount+1, cause_data) + var/obj/effect/particle_effect/smoke/smoke = new smoke_type(location, amount+1, cause_data) if(lifetime) - S.time_to_live = lifetime - if(S.amount) - S.spread_smoke(direction) + smoke.time_to_live = lifetime + if(smoke.amount > 0) + smoke.spread_smoke(direction) /datum/effect_system/smoke_spread/bad smoke_type = /obj/effect/particle_effect/smoke/bad @@ -709,16 +843,16 @@ /datum/effect_system/smoke_spread/xeno_extinguish_fire/start() if(holder) location = get_turf(holder) - var/obj/effect/particle_effect/smoke/S = new smoke_type(location, amount+1, cause_data) + var/obj/effect/particle_effect/smoke/smoke = new smoke_type(location, amount+1, cause_data) - for (var/atom/A in location) - if (istype(A, /mob/living)) - var/mob/living/M = A - M.ExtinguishMob() - if(istype(A, /obj/flamer_fire)) - qdel(A) + for (var/atom/cur_atom in location) + if (istype(cur_atom, /mob/living)) + var/mob/living/affected_mob = cur_atom + affected_mob.ExtinguishMob() + if(istype(cur_atom, /obj/flamer_fire)) + qdel(cur_atom) if(lifetime) - S.time_to_live = lifetime - if(S.amount) - S.spread_smoke(direction) + smoke.time_to_live = lifetime + if(smoke.amount > 0) + smoke.spread_smoke(direction) diff --git a/code/game/objects/effects/elevator.dm b/code/game/objects/effects/elevator.dm index 443652a7f7..f3b6da2e44 100644 --- a/code/game/objects/effects/elevator.dm +++ b/code/game/objects/effects/elevator.dm @@ -1,6 +1,6 @@ -/obj/effect/elevator/supply - name = "\improper empty space" - desc = "There seems to be an awful lot of machinery down below" +/obj/effect/elevator + name = "\proper empty space" + desc = "There seems to be an awful lot of machinery down below..." icon = 'icons/effects/160x160.dmi' icon_state = "supply_elevator_lowered" unacidable = TRUE @@ -8,17 +8,25 @@ layer = ABOVE_TURF_LAYER appearance_flags = KEEP_TOGETHER -/obj/effect/elevator/supply/ex_act(severity) +/obj/effect/elevator/ex_act(severity) return -/obj/effect/elevator/supply/Destroy(force) +/obj/effect/elevator/Destroy(force) if(!force) return QDEL_HINT_LETMELIVE return ..() -/obj/effect/elevator/supply/visible_message() //Prevents message spam with empty elevator shaft - "The empty space falls into the depths!" +// Don't move with the elevator. +/obj/effect/elevator/onShuttleMove(turf/newT, turf/oldT, list/movement_force, move_dir, obj/docking_port/stationary/old_dock, obj/docking_port/mobile/moving_dock) + return +/obj/effect/elevator/afterShuttleMove(turf/oldT, list/movement_force, shuttle_dir, shuttle_preferred_direction, move_dir, rotation) + return +/obj/effect/elevator/lateShuttleMove(turf/oldT, list/movement_force, move_dir) return /obj/effect/elevator/animation_overlay blend_mode = BLEND_INSET_OVERLAY appearance_flags = KEEP_TOGETHER + +/obj/effect/elevator/vehicle + icon_state = "vehicle_elevator_lowered" diff --git a/code/game/objects/effects/glowshroom.dm b/code/game/objects/effects/glowshroom.dm index 56c6ae45cd..fdb481e0f2 100644 --- a/code/game/objects/effects/glowshroom.dm +++ b/code/game/objects/effects/glowshroom.dm @@ -39,14 +39,14 @@ else //if on the floor, glowshroom on-floor sprite icon_state = "glowshroomf" - set_light(round(potency/15)) + set_light(floor(potency/15)) lastTick = world.timeofday /obj/effect/glowshroom/proc/CalcDir(turf/location = loc) set background = 1 var/direction = 16 - for(var/wallDir in cardinal) + for(var/wallDir in GLOB.cardinals) var/turf/newTurf = get_step(location,wallDir) if(istype(newTurf, /turf/closed/wall)) direction |= wallDir @@ -65,7 +65,7 @@ if(direction & i) dirList += i - if(dirList.len) + if(length(dirList)) var/newDir = pick(dirList) if(newDir == 16) floor = 1 diff --git a/code/game/objects/effects/landmarks/corpsespawner.dm b/code/game/objects/effects/landmarks/corpsespawner.dm index fe338bceab..cbcd8f906e 100644 --- a/code/game/objects/effects/landmarks/corpsespawner.dm +++ b/code/game/objects/effects/landmarks/corpsespawner.dm @@ -16,20 +16,6 @@ GLOB.corpse_spawns -= src return ..() -/obj/effect/landmark/corpsespawner/realpirate - name = "Pirate" - equip_path = /datum/equipment_preset/corpse/realpirate - -/obj/effect/landmark/corpsespawner/realpirate/ranged - name = "Pirate Gunner" - equip_path = /datum/equipment_preset/corpse/realpirate/ranged - -/obj/effect/landmark/corpsespawner/russian - name = "Russian" - equip_path = /datum/equipment_preset/corpse/russian - -/obj/effect/landmark/corpsespawner/russian/ranged - ///////////Civilians////////////////////// /obj/effect/landmark/corpsespawner/prisoner @@ -57,43 +43,50 @@ equip_path = /datum/equipment_preset/corpse/miner /obj/effect/landmark/corpsespawner/security - name = "Security" + name = "Security Officer" equip_path = /datum/equipment_preset/corpse/security /obj/effect/landmark/corpsespawner/security/marshal - name = "Colonial Marshal" - equip_path = /datum/equipment_preset/corpse/security/marshal + name = "Colonial Marshal Deputy" + equip_path = /datum/equipment_preset/corpse/security/cmb /obj/effect/landmark/corpsespawner/security/liaison name = "Corporate Liaison" - equip_path = /datum/equipment_preset/corpse/security/liaison + equip_path = /datum/equipment_preset/corpse/liaison /obj/effect/landmark/corpsespawner/prison_security name = "Prison Guard" - equip_path = /datum/equipment_preset/corpse/prison_security + equip_path = /datum/equipment_preset/corpse/prison_guard /////////////////Officers////////////////////// /obj/effect/landmark/corpsespawner/bridgeofficer - name = "Staff Officer" - equip_path = /datum/equipment_preset/corpse/bridgeofficer + name = "Colony Division Manager" + equip_path = /datum/equipment_preset/corpse/manager -/obj/effect/landmark/corpsespawner/bridgeofficer/johnson - name = "Mr. Johnson Telovin" - equip_path = /datum/equipment_preset/corpse/bridgeofficer/johnson +/obj/effect/landmark/corpsespawner/administrator + name = "Colony Administrator" + equip_path = /datum/equipment_preset/corpse/administrator -/obj/effect/landmark/corpsespawner/commander - name = "Commanding Officer" - equip_path = /datum/equipment_preset/corpse/commander +/obj/effect/landmark/corpsespawner/administrator/burst + name = "Burst Colony Administrator" + equip_path = /datum/equipment_preset/corpse/administrator/burst /obj/effect/landmark/corpsespawner/wysec name = "Weyland-Yutani Corporate Security Guard" equip_path = /datum/equipment_preset/corpse/wysec /obj/effect/landmark/corpsespawner/wygoon - name = "Weyland-Yutani Corporate Security Goon" + name = "Weyland-Yutani Corporate Security Officer" equip_path = /datum/equipment_preset/corpse/pmc/goon +/obj/effect/landmark/corpsespawner/wygoon/lead + name = "Weyland-Yutani Corporate Security Lead" + equip_path = /datum/equipment_preset/corpse/pmc/goon/lead + +/obj/effect/landmark/corpsespawner/wygoon/lead/burst + name = "Burst Weyland-Yutani Corporate Security Lead" + equip_path = /datum/equipment_preset/corpse/pmc/goon/lead/burst ///CM specific jobs/// @@ -135,7 +128,7 @@ /obj/effect/landmark/corpsespawner/wy/manager/burst name = "Burst Corporate Supervisor" - equip_path = /datum/equipment_preset/corpse/ua_riot/burst + equip_path = /datum/equipment_preset/corpse/wy/manager/burst ///////////Faction Specific Corpses////////////////////// @@ -165,15 +158,29 @@ equip_path = /datum/equipment_preset/corpse/pmc/burst /obj/effect/landmark/corpsespawner/freelancer - name = "Freelancer Mercenary" + name = "Freelancer" equip_path = /datum/equipment_preset/corpse/freelancer /obj/effect/landmark/corpsespawner/freelancer/burst - name = "Burst Freelancer Mercenary" + name = "Burst Freelancer" equip_path = /datum/equipment_preset/corpse/freelancer/burst // Fun Faction Corpse +/obj/effect/landmark/corpsespawner/realpirate + name = "Pirate" + equip_path = /datum/equipment_preset/corpse/realpirate + +/obj/effect/landmark/corpsespawner/realpirate/ranged + name = "Pirate Gunner" + equip_path = /datum/equipment_preset/corpse/realpirate/ranged + +/obj/effect/landmark/corpsespawner/russian + name = "Russian" + equip_path = /datum/equipment_preset/corpse/russian + +/obj/effect/landmark/corpsespawner/russian/ranged + /obj/effect/landmark/corpsespawner/dutchrifle name = "Dutch Dozen Rifleman" equip_path = /datum/equipment_preset/corpse/dutchrifle diff --git a/code/game/objects/effects/landmarks/item_pool.dm b/code/game/objects/effects/landmarks/item_pool.dm index 9a39a5cf59..8b6028a8dc 100644 --- a/code/game/objects/effects/landmarks/item_pool.dm +++ b/code/game/objects/effects/landmarks/item_pool.dm @@ -13,10 +13,10 @@ /obj/effect/landmark/item_pool_spawner/Initialize(mapload, ...) . = ..() - item_pool_landmarks += src + GLOB.item_pool_landmarks += src /obj/effect/landmark/item_pool_spawner/Destroy() - item_pool_landmarks -= src + GLOB.item_pool_landmarks -= src . = ..() /obj/effect/landmark/item_pool_spawner/corsat_bio_lock diff --git a/code/game/objects/effects/landmarks/landmarks.dm b/code/game/objects/effects/landmarks/landmarks.dm index a693f76525..d024b423f5 100644 --- a/code/game/objects/effects/landmarks/landmarks.dm +++ b/code/game/objects/effects/landmarks/landmarks.dm @@ -90,9 +90,11 @@ return GLOB.nightmare_landmarks[insert_tag] = get_turf(src) /obj/effect/landmark/nightmare/Destroy() - if(insert_tag && autoremove \ - && GLOB.nightmare_landmarks[insert_tag] == get_turf(src)) - GLOB.nightmare_landmarks.Remove(insert_tag) + if(insert_tag) + var/turf/turf = get_turf(src) + if(autoremove && GLOB.nightmare_landmarks[insert_tag] == turf) + GLOB.nightmare_landmarks.Remove(insert_tag) + GLOB.nightmare_landmark_tags_removed += insert_tag return ..() /obj/effect/landmark/ert_spawns/distress @@ -119,6 +121,15 @@ GLOB.monkey_spawns -= src return ..() +/obj/effect/landmark/lizard_spawn + name = "lizard spawn" + icon_state = "lizard_spawn" + +/obj/effect/landmark/lizard_spawn/Initialize(mapload, ...) + . = ..() + if(prob(66)) + new /mob/living/simple_animal/hostile/retaliate/giant_lizard(loc) + /obj/effect/landmark/latewhiskey name = "Whiskey Outpost Late join" @@ -433,6 +444,27 @@ name = "working joe late join" job = JOB_WORKING_JOE + +/obj/effect/landmark/late_join/cmo + name = "Chief Medical Officer late join" + job = JOB_CMO + +/obj/effect/landmark/late_join/researcher + name = "Researcher late join" + job = JOB_RESEARCHER + +/obj/effect/landmark/late_join/doctor + name = "Doctor late join" + job = JOB_DOCTOR + +/obj/effect/landmark/late_join/nurse + name = "Nurse late join" + job = JOB_NURSE + +/obj/effect/landmark/late_join/intel + name = "Intelligence Officer late join" + job = JOB_INTEL + /obj/effect/landmark/late_join/forecon name = "forecon late join" squad = SQUAD_LRRP @@ -544,3 +576,7 @@ /// In landmarks.dm and not unit_test.dm so it is always active in the mapping tools. /obj/effect/landmark/unit_test_top_right name = "unit test zone top right" + +/// Marks the bottom left of the tutorial zone. +/obj/effect/landmark/tutorial_bottom_left + name = "tutorial bottom left" diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm index a53fead0d3..4a6e5272ed 100644 --- a/code/game/objects/effects/landmarks/survivor_spawner.dm +++ b/code/game/objects/effects/landmarks/survivor_spawner.dm @@ -35,13 +35,27 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a soldier of Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rose up and noticed that one of your limbs is at a weird angle, broken. You looked at other survivors, also limping and trying to fix their broken bones." + story_text = "You are a soldier fighting for the Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rise up and notice that one of your limbs is badly bruised. You looked at other survivors, also limping and trying to tend to their wounds, luckily, none of you were seriously hurt." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 spawn_priority = SPAWN_PRIORITY_HIGH +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader + hostile = TRUE + equipment = /datum/equipment_preset/clf/leader + synth_equipment = /datum/equipment_preset/clf/synth + intro_text = list("

    You are a survivor of a crash landing!

    ",\ + "You are NOT aware of the xenomorph threat.",\ + "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") + story_text = "You are the leader of a squad fighting for the Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants and under your orders, you and your team small boarded a small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of your pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rise up and notice that one of your limbs is badly bruised. You looked up at the few remaining survivors of your squad, all limping and trying to tend to their wounds, luckily, none of your men were seriously hurt, and all seem to be responsive to your orders." + roundstart_damage_min = 2 + roundstart_damage_max = 10 + roundstart_damage_times = 2 + + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer hostile = TRUE equipment = /datum/equipment_preset/clf/engineer @@ -49,7 +63,7 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a soldier of Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rose up and noticed that one of your limbs is at a weird angle, broken. You looked at other survivors, also limping and trying to fix their broken bones." + story_text = "You are an engineer fighting for the Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rise up and notice that one of your limbs is badly bruised. You looked at other survivors, also limping and trying to tend to their wounds, luckily, none of you were seriously hurt." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 @@ -63,20 +77,42 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a soldier of Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rose up and noticed that one of your limbs is at a weird angle, broken. You looked at other survivors, also limping and trying to fix their broken bones." + story_text = "You are a doctor fighting for the Colonial Liberation Front. Your ship received a distress signal from a planet bordering the CLF controlled space under USCM control. Ready and willing to save poor colonists from parasitic tyrants, you and your team boarded small ship called Marie Curie. Unfortunately, right before you came close to a landing zone, a glob of acid hit the ship, damaging one of the engines. Despite all the efforts of the pilot, the ship went straight into nearby mountain. You were hurt pretty badly in the crash. Dumbfounded, you rise up and notice that one of your limbs is badly bruised. You looked at other survivors, also limping and trying to tend to their wounds, luckily, none of you were seriously hurt." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 spawn_priority = SPAWN_PRIORITY_VERY_HIGH +//Weyland-Yutani Survivors// + +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl + equipment = /datum/equipment_preset/survivor/wy/executive + synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth + intro_text = list("

    You are the last alive Executive of Lazarus Landing!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Corporate Liaison stationed on LV-624 from Weyland-Yutani. You were tipped off about some very peculiar looking eggs recovered from the alien temple North-East of the colony. Being the smart Executive the Company hired you to be, you decided to prepare your office for the worst when the first 'facehugger' was born in the vats of the Research Dome. Turned out, you were right, everyone who called you crazy and called these the new 'synthetics' is now dead, you along with your Corporate Security detail are the only survivors due to your paranoia. The xenomorph onslaught was relentless, a fuel tank was shot by one of the Officers, leading to the destruction of a part of the dome, along with alot of the defences being melted. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon + equipment = /datum/equipment_preset/survivor/goon + synth_equipment = /datum/equipment_preset/synth/survivor/wy/security_synth + intro_text = list("

    You are a Corporate Security Officer!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Corporate Security Officer stationed on LV-624 from Weyland-Yutani. Suddenly one day you were pulled aside by the Corporate Liaison and told to bring supplies from both Engineering and the Marshals Offices to their office, and fast. You began fortifying the Corporate Dome and was told by the Executive that something big will ravage the entire colony, excluding you. Turns out, the Liaison was right, these so called 'xenomorphs' broke containment from the Research Dome and began destroying the entire colony. Once they came for the Dome and tried to kill all of you, you barely managed to hold them off even after losing one Officer and alot of the defences. The Liaison said they will soon find a way to contact Weyland-Yutani and to remain steadfast until rescue arrives." + + spawn_priority = SPAWN_PRIORITY_HIGH + /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc equipment = /datum/equipment_preset/survivor/pmc synth_equipment = /datum/equipment_preset/synth/survivor/pmc intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a PMC from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconcious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." + story_text = "You are a PMC from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconscious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 @@ -89,7 +125,7 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a PMC medic from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconcious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." + story_text = "You are a PMC medic from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconscious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 @@ -102,7 +138,7 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are a PMC engineer from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconcious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." + story_text = "You are a PMC engineer from Weyland-Yutani. Your ship was enroute to Solaris Ridge to escort an Assistant Manager. On the way, your ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, your pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconscious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your squadmates lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You need to find out what happened to the colony, see if you can find any of your squadmates, and find a way to contact Weyland-Yutani." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 @@ -115,13 +151,75 @@ intro_text = list("

    You are a survivor of a crash landing!

    ",\ "You are NOT aware of the xenomorph threat.",\ "Your primary objective is to heal up and survive. If you want to assault the hive - adminhelp.") - story_text = "You are an Assistant Manager from Weyland-Yutani. You were being escorted onboard a PMC ship to Solaris Ridge. On the way, the ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, the pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconcious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. The shipcrew lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You must get up and find a way to contact Weyland-Yutani." + story_text = "You are an Assistant Manager from Weyland-Yutani. You were being escorted onboard a PMC ship to Solaris Ridge. On the way, the ship received a distress signal from the colony about an attack. Worried that it might be a CLF attack, the pilot set full speed for the colony. However, during atmospheric entry the engine failed and you fell unconscious from the G-Forces. You wake up wounded... and see that the ship has crashed onto the colony. Your PMC escorts lie dead beside you, but there's some missing. Perhaps they survived and moved elsewhere? You must get up and find a way to contact Weyland-Yutani." roundstart_damage_min = 3 roundstart_damage_max = 10 roundstart_damage_times = 2 spawn_priority = SPAWN_PRIORITY_VERY_HIGH +/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl + equipment = /datum/equipment_preset/survivor/wy/asstmanager + synth_equipment = /datum/equipment_preset/synth/survivor/wy/corporate_synth + intro_text = list("

    You are the last alive Senior Administrator on the Colony!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are the Assistant Operations Manager stationed on 'Ifrit' by Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons you one-day said were 'useless' and a waste of Company dollars. You remember that Administrator Stahl sent out a distress beacon to any ship in range, hoping to get picked up by the Company, he ran to the Spaceport. You have not seen him since. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc + equipment = /datum/equipment_preset/survivor/doctor + synth_equipment = /datum/equipment_preset/synth/survivor/emt_synth + intro_text = list("

    You are a Medical Doctor on the Colony!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Doctor working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the xenomorphs have a sort of implanter which latches on to your face and then... something bursts out of your chest, through the rib cage. You had plenty of those cases at the Medical Bay. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci + equipment = /datum/equipment_preset/survivor/scientist + synth_equipment = /datum/equipment_preset/synth/survivor/scientist_synth + intro_text = list("

    You are a Weyland-Yutani Scientist on the Colony!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a Scientist working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the XX-121 species, codenamed that by Research Director Clarke, have a variety of different species, what you can assume a 'leader' of some sort and that their acid is deadly should it come in contact with you or the shutters. You ran far from the labs and have not seen some your coworkers since. In their attempts at trying to breach in, these so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_HIGH + +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ + equipment = /datum/equipment_preset/survivor/civilian + synth_equipment = /datum/equipment_preset/synth/survivor/chef_synth + intro_text = list("

    You are a worker on the Colony!

    ",\ + "You are aware of the xenomorph threat.",\ + "Your primary objective is to survive the outbreak.") + story_text = "You are a civilian working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember hearing the alarms blaring and decided to run with a couple others to the Panic Room, hoping to be safe from the threat until rescue arrives. Now you wait along with others for their second attack on the Panic Room. In their first attempt at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani." + + spawn_priority = SPAWN_PRIORITY_MEDIUM + +//CMB Survivors// + +/obj/effect/landmark/survivor_spawner/fiorina_armory_cmb + equipment = /datum/equipment_preset/survivor/cmb/standard + synth_equipment = /datum/equipment_preset/synth/survivor/cmb/synth + intro_text = list("

    You are a CMB Deputy!

    ",\ + "You are aware of the 'alien' threat.",\ + "Your primary objective is to survive the infestation.") + story_text = "You are a Deputy of the Office of the Colonial Marshals. Your dispatcher received a distress signal from the infamous Fiorina Maximum Penitentiary. You figured it was just another typical case of the prison dealing with a riot their understaffed security force couldn't handle, with more and more of its personnel getting dispatched elsewhere in the galaxy. This wasn't the first time OCM officers were called in to assist, but unfortunately for you, this time it also wasn't the 'minor riot' you expected it to be. Loaded up with only beanbags and finding nobody to greet you on the LZ after being dropped off, you and the rest of your team had gone towards the armory to speak to the Quartermaster, but only found corpses of both prisoners and security littered around on the way. Worried about armed prisoners, your team was in the process of switching to lethals in the armory when some sort of huge alien jumped out from the shadows and snatched Jerry away while he was off praying. The thing dragged him off too fast to catch and his screams faded away down the halls, poor bastard. Now, you'll need to decide whether to look for more clues about what the hell happened here, hunt whatever's out there, or hold a position and hope someone else will respond to the distress signal before it's too late..." + + spawn_priority = SPAWN_PRIORITY_VERY_HIGH + +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control + equipment = /datum/equipment_preset/survivor/cmb/ua + synth_equipment = /datum/equipment_preset/synth/survivor/cmb/ua_synth + intro_text = list("

    You are a United Americas Riot Control Officer!

    ",\ + "You are aware of the 'alien' threat.",\ + "Your primary objective is to survive the infestation.") + story_text = "You are a United Americas Riot Control Officer. Your dispatcher received a request from the local OCM Outpost, requesting some men to intervene assist a Deputy with handling a riot at Fiorina. The prison was an understaffed mess so you weren't too surprised they had sent out a distress signal, calling you in to do their jobs yet again. Unfortunately for you, this time it also wasn't the 'minor riot' you expected it to be. Loaded up with only beanbags and finding nobody to greet you on the LZ after being dropped off, you and the rest of your team had gone towards the armory to speak to the Quartermaster, but only found corpses of both prisoners and security littered around on the way. Worried about armed prisoners, your team was in the process of switching to lethals in the armory when some sort of huge alien jumped out from the shadows and snatched Jerry away while he was off praying. The thing dragged him off too fast to catch and his screams faded away down the halls, poor bastard. Now, you'll need to decide whether to look for more clues about what the hell happened here, hunt whatever's out there, or hold a position and hope someone else will respond to the distress signal before it's too late..." + + spawn_priority = SPAWN_PRIORITY_HIGH + //Military Survivors// /obj/effect/landmark/survivor_spawner/lv522_forecon_tech diff --git a/code/game/objects/effects/overlays.dm b/code/game/objects/effects/overlays.dm index 16f30eaf0f..d559137f79 100644 --- a/code/game/objects/effects/overlays.dm +++ b/code/game/objects/effects/overlays.dm @@ -176,17 +176,17 @@ user = _user if(squad_name) name = "[squad_name] laser" - if(user && user.faction && cas_groups[user.faction]) + if(user && user.faction && GLOB.cas_groups[user.faction]) signal = new(src) signal.name = name signal.target_id = tracking_id signal.linked_cam = new(loc, name) - cas_groups[user.faction].add_signal(signal) + GLOB.cas_groups[user.faction].add_signal(signal) /obj/effect/overlay/temp/laser_target/Destroy() if(signal) - cas_groups[user.faction].remove_signal(signal) + GLOB.cas_groups[user.faction].remove_signal(signal) if(signal.linked_cam) qdel(signal.linked_cam) signal.linked_cam = null @@ -223,9 +223,10 @@ icon_state = "empdisable" name = "emp sparks" effect_duration = 10 + mouse_opacity = MOUSE_OPACITY_TRANSPARENT /obj/effect/overlay/temp/emp_sparks/New(loc) - setDir(pick(cardinal)) + setDir(pick(GLOB.cardinals)) ..() /obj/effect/overlay/temp/emp_pulse @@ -234,8 +235,12 @@ icon_state = "emppulse" effect_duration = 20 - - +/obj/effect/overlay/temp/elec_arc + icon = 'icons/effects/effects.dmi' + icon_state = "electricity" + name = "electric arc" + effect_duration = 3 SECONDS + mouse_opacity = MOUSE_OPACITY_TRANSPARENT //gib animation diff --git a/code/game/objects/effects/spawners/gibspawner.dm b/code/game/objects/effects/spawners/gibspawner.dm index 382b92489b..a68afc1d42 100644 --- a/code/game/objects/effects/spawners/gibspawner.dm +++ b/code/game/objects/effects/spawners/gibspawner.dm @@ -43,7 +43,7 @@ qdel(src) /obj/effect/spawner/gibspawner/proc/Gib(list/viruses = list(), mob/living/ml = null) - if(gibtypes.len != gibamounts.len || gibamounts.len != gibdirections.len) + if(length(gibtypes) != length(gibamounts) || length(gibamounts) != length(gibdirections)) to_world(SPAN_DANGER("Gib list length mismatch!")) return @@ -58,7 +58,7 @@ s.set_up(2, 1, loc) s.start() - for(var/i = 1, i<= gibtypes.len, i++) + for(var/i = 1, i<= length(gibtypes), i++) if(gibamounts[i]) for(var/j = 1, j<= gibamounts[i], j++) var/gibType = gibtypes[i] @@ -72,7 +72,7 @@ gib.update_icon() - if(viruses.len > 0) + if(length(viruses) > 0) for(var/datum/disease/D in viruses) if(prob(virusProb)) var/datum/disease/viruus = D.Copy(1) @@ -80,7 +80,7 @@ viruus.holder = gib var/list/directions = gibdirections[i] - if(directions.len) + if(length(directions)) INVOKE_ASYNC(gib, /obj/effect/decal/cleanable/blood/gibs/proc/streak, directions) @@ -99,7 +99,7 @@ gibamounts = list(1,1,1) /obj/effect/spawner/gibspawner/human/Initialize(mapload, list/viruses, mob/living/ml, fleshcolor, bloodcolor) - gibdirections = list(alldirs, alldirs, list()) + gibdirections = list(GLOB.alldirs, GLOB.alldirs, list()) . = ..() /obj/effect/spawner/gibspawner/xeno @@ -107,7 +107,7 @@ gibamounts = list(1,1,1) /obj/effect/spawner/gibspawner/xeno/Initialize(mapload, list/viruses, mob/living/ml, fleshcolor, bloodcolor) - gibdirections = list(alldirs, alldirs, list()) + gibdirections = list(GLOB.alldirs, GLOB.alldirs, list()) . = ..() /obj/effect/spawner/gibspawner/robot @@ -116,6 +116,6 @@ gibamounts = list(1,1,1,1,1,1) /obj/effect/spawner/gibspawner/robot/Initialize(mapload, list/viruses, mob/living/ml, fleshcolor, bloodcolor) - gibdirections = list(list(NORTH, NORTHEAST, NORTHWEST),list(SOUTH, SOUTHEAST, SOUTHWEST),list(WEST, NORTHWEST, SOUTHWEST),list(EAST, NORTHEAST, SOUTHEAST), alldirs, alldirs) + gibdirections = list(list(NORTH, NORTHEAST, NORTHWEST),list(SOUTH, SOUTHEAST, SOUTHWEST),list(WEST, NORTHWEST, SOUTHWEST),list(EAST, NORTHEAST, SOUTHEAST), GLOB.alldirs, GLOB.alldirs) gibamounts[6] = pick(0,1,2) . = ..() diff --git a/code/game/objects/effects/spawners/random.dm b/code/game/objects/effects/spawners/random.dm index 82192a9ca3..0951524e15 100644 --- a/code/game/objects/effects/spawners/random.dm +++ b/code/game/objects/effects/spawners/random.dm @@ -342,9 +342,9 @@ var/gunpath = pick(guns) var/ammopath if(istype(gunpath, /obj/item/weapon/gun/shotgun)) - ammopath = pick(shotgun_boxes_12g) + ammopath = pick(GLOB.shotgun_boxes_12g) else if(istype(gunpath, /obj/item/weapon/gun/launcher/grenade)) - ammopath = pick(grenade_packets) + ammopath = pick(GLOB.grenade_packets) else ammopath = guns[gunpath] spawn_weapon_on_floor(gunpath, ammopath, rand(mags_min, mags_max)) @@ -358,7 +358,7 @@ if(gunpath) gun = new gunpath(spawnloc) if(scatter) - var/direction = pick(alldirs) + var/direction = pick(GLOB.alldirs) var/turf/turf = get_step(gun, direction) if(!turf || turf.density) return @@ -368,7 +368,7 @@ ammo = new ammopath(spawnloc) if(scatter) for(i=0, i\The [src] have been [pick(W.attack_verb)] with \the [W][(user ? "by [user]." : ".")]")) + if(LAZYLEN(W.attack_verb)) + visible_message(SPAN_DANGER("[src] has been [pick(W.attack_verb)] with [W][(user ? " by [user]." : ".")]")) else - visible_message(SPAN_DANGER("\The [src] have been attacked with \the [W][(user ? "by [user]." : ".")]")) + visible_message(SPAN_DANGER("[src] has been attacked with [W][(user ? " by [user]." : ".")]")) var/damage = W.force / 4 @@ -144,7 +144,7 @@ //================= if(prob(25)) var/list/nearby = oview(5, src) - if(nearby.len) + if(length(nearby)) var/target_atom = pick(nearby) walk_to(src, target_atom, 5) if(prob(25)) @@ -170,7 +170,7 @@ //================= if(prob(25)) var/list/nearby = oview(5, src) - if(nearby.len) + if(length(nearby)) var/target_atom = pick(nearby) walk_to(src, target_atom, 5) if(prob(25)) diff --git a/code/game/objects/effects/temporary_visuals.dm b/code/game/objects/effects/temporary_visuals.dm index 97612a3a8f..61a3399584 100644 --- a/code/game/objects/effects/temporary_visuals.dm +++ b/code/game/objects/effects/temporary_visuals.dm @@ -131,3 +131,4 @@ QDEL_IN(src, 0.5 * radius * speed) transform = matrix().Scale(32 / 1024, 32 / 1024) animate(src, time = 0.5 * radius * speed, transform=matrix().Scale((32 / 1024) * radius * 1.5, (32 / 1024) * radius * 1.5), easing = easing_type) + diff --git a/code/game/objects/explosion_recursive.dm b/code/game/objects/explosion_recursive.dm index e1b35eb58c..1a241cf144 100644 --- a/code/game/objects/explosion_recursive.dm +++ b/code/game/objects/explosion_recursive.dm @@ -71,7 +71,9 @@ explosion resistance exactly as much as their health falloff = max(falloff0, power/100) //prevent explosions with a range larger than 100 tiles minimum_spread_power = -power * reflection_amplification_limit - msg_admin_attack("Explosion with Power: [power], Falloff: [falloff] in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]).", src.loc.x, src.loc.y, src.loc.z) + var/obj/causing_obj = explosion_cause_data?.resolve_cause() + var/mob/causing_mob = explosion_cause_data?.resolve_mob() + msg_admin_attack("Explosion with Power: [power], Falloff: [falloff],[causing_obj ? " from [causing_obj]" : ""][causing_mob ? " by [key_name(causing_mob)]" : ""] in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]).", loc.x, loc.y, loc.z) playsound(epicenter, 'sound/effects/explosionfar.ogg', 100, 1, round(power^2,1)) playsound(epicenter, "explosion", 90, 1, max(round(power,1),7) ) @@ -84,9 +86,7 @@ explosion resistance exactly as much as their health if(power >= 100) // powerful explosions send out some special effects epicenter = get_turf(epicenter) // the ex_acts might have changed the epicenter - create_shrapnel(epicenter, rand(5,9), , ,/datum/ammo/bullet/shrapnel/light/effect/ver1, explosion_cause_data) - sleep(1) - create_shrapnel(epicenter, rand(5,9), , ,/datum/ammo/bullet/shrapnel/light/effect/ver2, explosion_cause_data) + new /obj/shrapnel_effect(epicenter) spawn(2) //just in case something goes wrong if(explosion_in_progress) @@ -139,7 +139,7 @@ explosion resistance exactly as much as their health //spread in each ordinal direction var/direction_angle = dir2angle(direction) - for(var/spread_direction in alldirs) + for(var/spread_direction in GLOB.alldirs) var/spread_power = power if(direction) //false if, for example, this turf was the explosion source @@ -325,7 +325,7 @@ explosion resistance exactly as much as their health return if(!direction) - direction = pick(alldirs) + direction = pick(GLOB.alldirs) var/range = min(round(severity/src.w_class * 0.2, 1), 14) if(!direction) range = round( range/2 ,1) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index f6eaff2713..7fd82aeb9c 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -4,6 +4,7 @@ mouse_drag_pointer = MOUSE_ACTIVE_POINTER layer = ITEM_LAYER light_system = MOVABLE_LIGHT + blocks_emissive = EMISSIVE_BLOCK_GENERIC /// this saves our blood splatter overlay, which will be processed not to go over the edges of the sprite var/image/blood_overlay = null var/randpixel = 6 @@ -22,6 +23,8 @@ var/attack_speed = 11 //+3, Adds up to 10. Added an extra 4 removed from /mob/proc/do_click() ///Used in attackby() to say how something was attacked "[x] has been [z.attack_verb] by [y] with [z]" var/list/attack_verb + /// A multiplier to an object's force when used against a stucture. + var/demolition_mod = 1 health = null @@ -161,6 +164,9 @@ /// How much to offset the item randomly either way alongside Y visually var/ground_offset_y = 0 + /// Special storages this item prioritizes + var/list/preferred_storage + /obj/item/Initialize(mapload, ...) . = ..() @@ -242,9 +248,9 @@ cases. Override_icon_state should be a list.*/ var/new_icon_state var/new_protection var/new_item_state - if(override_icon_state && override_icon_state.len) + if(LAZYLEN(override_icon_state)) new_icon_state = override_icon_state[SSmapping.configs[GROUND_MAP].map_name] - if(override_protection && override_protection.len) + if(LAZYLEN(override_protection)) new_protection = override_protection[SSmapping.configs[GROUND_MAP].map_name] switch(SSmapping.configs[GROUND_MAP].camouflage_type) if("snow") @@ -275,7 +281,7 @@ cases. Override_icon_state should be a list.*/ size = "huge" if(SIZE_MASSIVE) size = "massive" - . += "This is a [blood_color ? blood_color != "#030303" ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. It is a [size] item." + . += "[p_are() == "are" ? "These are " : "This is a "][blood_color ? blood_color != COLOR_OIL ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. [p_they(TRUE)] [p_are()] a [size] item." if(desc) . += desc if(desc_lore) @@ -364,6 +370,7 @@ cases. Override_icon_state should be a list.*/ qdel(src) SEND_SIGNAL(src, COMSIG_ITEM_DROPPED, user) + SEND_SIGNAL(user, COMSIG_MOB_ITEM_DROPPED, src) if(drop_sound && (src.loc?.z)) playsound(src, drop_sound, dropvol, drop_vary) src.do_drop_animation(user) @@ -458,6 +465,8 @@ cases. Override_icon_state should be a list.*/ if(item.flags_equip_slot & slotdefine2slotbit(slot)) if(is_type_in_list(item, uniform_restricted)) + if(light_on) + turn_light(toggle_on = FALSE) user.drop_inv_item_on_ground(src) to_chat(user, SPAN_NOTICE("You drop \the [src] to the ground while unequipping \the [item].")) @@ -663,13 +672,13 @@ cases. Override_icon_state should be a list.*/ if(WEAR_HANDCUFFS) if(human.handcuffed) return FALSE - if(!istype(src, /obj/item/handcuffs)) + if(!istype(src, /obj/item/restraint)) return FALSE return TRUE if(WEAR_LEGCUFFS) if(human.legcuffed) return FALSE - if(!istype(src, /obj/item/legcuffs)) + if(!istype(src, /obj/item/restraint)) return FALSE return TRUE if(WEAR_IN_ACCESSORY) @@ -708,7 +717,7 @@ cases. Override_icon_state should be a list.*/ if(WEAR_IN_SHOES) if(human.shoes && istype(human.shoes, /obj/item/clothing/shoes)) var/obj/item/clothing/shoes/shoes = human.shoes - if(shoes.attempt_insert_item(human, src)) + if(shoes.can_be_inserted(src)) return TRUE return FALSE if(WEAR_IN_SCABBARD) @@ -795,7 +804,7 @@ cases. Override_icon_state should be a list.*/ /obj/item/proc/showoff(mob/user) - var/list/viewers = get_mobs_in_view(world_view_size, user) + var/list/viewers = get_mobs_in_view(GLOB.world_view_size, user) user.langchat_speech("holds up [src].", viewers, GLOB.all_languages, skip_language_check = TRUE, animation_style = LANGCHAT_FAST_POP, additional_styles = list("langchat_small", "emote")) for (var/mob/M in viewers) M.show_message("[user] holds up [src]. Take a closer look.", SHOW_MESSAGE_VISIBLE) @@ -850,7 +859,7 @@ cases. Override_icon_state should be a list.*/ UnregisterSignal(user, COMSIG_MOB_MOVE_OR_LOOK) //General reset in case anything goes wrong, the view will always reset to default unless zooming in. if(user.client) - user.client.change_view(world_view_size, src) + user.client.change_view(GLOB.world_view_size, src) user.client.pixel_x = 0 user.client.pixel_y = 0 diff --git a/code/game/objects/items/ashtray.dm b/code/game/objects/items/ashtray.dm index 540f3ac44e..7d2dc00a99 100644 --- a/code/game/objects/items/ashtray.dm +++ b/code/game/objects/items/ashtray.dm @@ -12,7 +12,7 @@ if (health < 1) return if (istype(W,/obj/item/trash/cigbutt) || istype(W,/obj/item/clothing/mask/cigarette) || istype(W, /obj/item/tool/match)) - if (contents.len >= max_butts) + if (length(contents) >= max_butts) to_chat(user, "This ashtray is full.") return var/drop = TRUE @@ -42,10 +42,10 @@ user.update_inv_l_hand(0) user.update_inv_r_hand() add_fingerprint(user) - if (contents.len == max_butts) + if (length(contents) == max_butts) icon_state = icon_full desc = empty_desc + " It's stuffed full." - else if (contents.len > max_butts/2) + else if (length(contents) > max_butts/2) icon_state = icon_half desc = empty_desc + " It's half-filled." else @@ -61,7 +61,7 @@ if (health < 1) die() return - if (contents.len) + if (length(contents)) src.visible_message(SPAN_DANGER("[src] slams into [hit_atom] spilling its contents!")) for (var/obj/item/clothing/mask/cigarette/O in contents) O.forceMove(src.loc) diff --git a/code/game/objects/items/backpack_sprayers.dm b/code/game/objects/items/backpack_sprayers.dm index 427a1dd597..c6e747ea97 100644 --- a/code/game/objects/items/backpack_sprayers.dm +++ b/code/game/objects/items/backpack_sprayers.dm @@ -333,7 +333,7 @@ return //actually firing the launcher if(tank.launcher_cooldown > world.time) - to_chat(user, SPAN_WARNING("\The [tank] cannot fire another foam ball just yet. Wait [round(tank.launcher_cooldown/10)] seconds.")) + to_chat(user, SPAN_WARNING("\The [tank] cannot fire another foam ball just yet. Wait [floor(tank.launcher_cooldown/10)] seconds.")) return if(tank.reagents.has_reagent("water", launcher_cost)) tank.reagents.remove_reagent("water", launcher_cost) diff --git a/code/game/objects/items/beacons/handheld_distress_beacon.dm b/code/game/objects/items/beacons/handheld_distress_beacon.dm index bb1e0330f0..4bd6d6820a 100644 --- a/code/game/objects/items/beacons/handheld_distress_beacon.dm +++ b/code/game/objects/items/beacons/handheld_distress_beacon.dm @@ -12,9 +12,9 @@ ///Tells the user who the beacon will be sent to IC var/recipient = "the USCSS Royce" ///The name of the ERT that will be passed to get_specific_call - var/list/ert_full_name = list("Weyland-Yutani PMC (Chemical Investigation Squad)") + var/list/ert_paths = list(/datum/emergency_call/pmc/chem_retrieval) // "Weyland-Yutani PMC (Chemical Investigation Squad)" ///The clickable version that will be sent in message_admins - var/list/ert_short_name = list("SEND PMCs") + var/list/ert_short_names = list("SEND PMCs") ///Whether beacon can be used, or has already been used var/active = FALSE @@ -37,22 +37,26 @@ if(active) to_chat(user, "[src] is already active!") - return + return FALSE + var/reason = tgui_input_text(user, "What is the reason for activating this beacon?", "Distress Reason") + if(!reason) + return FALSE + active = TRUE update_icon() - if(!ert_full_name || !ert_short_name || (length(ert_full_name) != length(ert_short_name))) //Make sure they are greater than 0, and both are same length + if(!ert_paths || !ert_short_names || (length(ert_paths) != length(ert_short_names))) //Make sure they are greater than 0, and both are same length to_chat(user, SPAN_BOLDWARNING("[src] is broken!")) CRASH("[src] was improperly set, and has been disabled.") //For the runtime logs var/beacon_call_buttons - for(var/current_ert_num in 1 to length(ert_full_name)) - beacon_call_buttons += "([ert_short_name[current_ert_num]]) " + for(var/current_ert_num in 1 to length(ert_paths)) + beacon_call_buttons += "([ert_short_names[current_ert_num]]) " for(var/client/admin_client in GLOB.admins) if((R_ADMIN|R_MOD) & admin_client.admin_holder.rights) playsound_client(admin_client,'sound/effects/sos-morse-code.ogg',10) - message_admins("[key_name(user)] has used a [beacon_type]! [CC_MARK(user)] [beacon_call_buttons](DENY) [ADMIN_JMP_USER(user)] [CC_REPLY(user)]") + message_admins("[key_name(user)] has used a [beacon_type] for the reason '[SPAN_ORANGE(reason)]'! [CC_MARK(user)] [beacon_call_buttons](DENY) [ADMIN_JMP_USER(user)] [CC_REPLY(user)]") to_chat(user, SPAN_NOTICE("A distress beacon request has been sent to [recipient].")) /// CMB distress beacon held by CMB Marshal for signalling distress to Anchorpoint Station @@ -62,5 +66,36 @@ beacon_type = "CMB beacon" recipient = "Anchorpoint Station" - ert_full_name = list("CMB - Patrol Team - Marshals in Distress (Friendly)", "CMB - Anchorpoint Station Colonial Marine QRF (Friendly)") - ert_short_name = list("SEND CMB", "SEND QRF") + // "CMB - Patrol Team - Marshals in Distress (Friendly)", "CMB - Anchorpoint Station Colonial Marine QRF (Friendly)" + ert_paths = list(/datum/emergency_call/cmb/alt, /datum/emergency_call/cmb/anchorpoint) + ert_short_names = list("SEND CMB", "SEND QRF") + +// Corporate Lawyer beacon available for 50 points at the CLs briefcase +/obj/item/handheld_distress_beacon/lawyer + name = "\improper Corporate Affairs Division handheld beacon" + desc = "An encoded beacon. This one is branded with the Weyland-Yutani slogan, 'Building Better Worlds since 2099'. Etched in stencil on the side is 'FOR CONTRACT BREAKERS ONLY'. This one is branded with the Corporate Affairs Division symbol and provided to most Executives situated in UA or TWE space." + + beacon_type = "Lawyer beacon" + recipient = "the Corporate Affairs Division" + ert_paths = list(/datum/emergency_call/inspection_wy/lawyer) // "Lawyers - Corporate" + ert_short_names = list("SEND LAWYERS") + +// Corporate Security Bodyguard beacon available for 50 points at the CLs briefcase +/obj/item/handheld_distress_beacon/bodyguard + name = "\improper Corporate Security Division handheld beacon" + desc = "An standard Corporate Security beacon. This one is branded with the Weyland-Yutani slogan, 'Building Better Worlds since 2099'. This one is branded with the Corporate Security Division symbol and provided to Executives stationed in very dangerous sites across the entire Galaxy." + + beacon_type = "Bodyguard beacon" + recipient = "the Corporate Security Division" + ert_paths = list(/datum/emergency_call/goon/bodyguard) // "Weyland-Yutani Goon (Executive Bodyguard Detail)" + ert_short_names = list("SEND BODYGUARD") + +// Provost office distress beacon held by Inspectors+ +/obj/item/handheld_distress_beacon/provost + name = "\improper Provost Office handheld beacon" + desc = "A standard Provost Office beacon branded with the Provost Office symbol, provided to personnel for emergencies. It features an extended relay antenna and calls a squadron of Provost enforcers." + + beacon_type = "Provost Enforcers beacon" + recipient = "the USS Superintendent" + ert_paths = list(/datum/emergency_call/provost_enforcer) // "USCM Provost Enforcers" + ert_short_names = list("SEND ENFORCERS") diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 3b84d2433e..9b0cf37299 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -137,7 +137,7 @@ continue dead_mobs += mob var/mob/living/mob_to_store - if(dead_mobs.len) + if(length(dead_mobs)) mob_to_store = pick(dead_mobs) mob_to_store.forceMove(src) stored_units += mob_size @@ -169,7 +169,7 @@ ..() if(over_object == usr && Adjacent(usr) && !roller_buckled) if(!ishuman(usr)) return - if(contents.len) return 0 + if(length(contents)) return 0 visible_message(SPAN_NOTICE("[usr] folds up [name].")) var/obj/item/I = new item_path(get_turf(src), src) usr.put_in_hands(I) @@ -271,7 +271,7 @@ continue mobs_can_store += H var/mob/living/carbon/human/mob_to_store - if(mobs_can_store.len) + if(length(mobs_can_store)) mob_to_store = pick(mobs_can_store) mob_to_store.forceMove(src) stored_units += mob_size diff --git a/code/game/objects/items/books/manuals.dm b/code/game/objects/items/books/manuals.dm index ba2a30c35c..3140d0e30c 100644 --- a/code/game/objects/items/books/manuals.dm +++ b/code/game/objects/items/books/manuals.dm @@ -8,6 +8,7 @@ /// 0 - Normal book, 1 - Should not be treated as normal book, unable to be copied, unable to be modified unique = 1 + /obj/item/book/manual/engineering_construction name = "Station Repairs and Construction" icon_state ="bookEngineering" @@ -28,161 +29,6 @@ "} -/obj/item/book/manual/engineering_particle_accelerator - name = "Particle Accelerator User's Guide" - icon_state ="bookParticleAccelerator" - author = "Engineering Encyclopedia" - title = "Particle Accelerator User's Guide" - - dat = {" - - - - - -

    Experienced User's Guide

    - -

    Setting up the accelerator

    - -
      -
    1. Wrench all pieces to the floor
    2. -
    3. Add wires to all the pieces
    4. -
    5. Close all the panels with your screwdriver
    6. -
    - -

    Using the accelerator

    - -
      -
    1. Open the control panel
    2. -
    3. Set the speed to 2
    4. -
    5. Start firing at the singularity generator
    6. -
    7. When the singularity reaches a large enough size so it starts moving on it's own set the speed down to 0, but don't shut it off
    8. -
    9. Remember to wear a radiation suit when working with this machine... we did tell you that at the start, right?
    10. -
    - - - - "} - - -/obj/item/book/manual/supermatter_engine - name = "Supermatter Engine User's Guide" - icon_state = "bookSupermatter" - author = "Waleed Asad" - title = "Supermatter Engine User's Guide" - - dat = {" - - - - -
    - Engineering notes on the single-stage supermatter engine,
    - -Waleed Asad

    - - Station,
    - Exodus

    - - A word of caution, do not enter the engine room for any reason without radiation protection and meson scanners on. The status of the engine may be unpredictable even when you believe it is 'off.' This is an important level of personal protection.

    - - The engine has two basic modes of functionality. It has been observed that it is capable of both a safe level of operation and a modified, high output mode.

    - -

    Heat-Primary Mode

    - Notes on starting the basic function mode -
      -
    1. Prepare collector arrays: As is standard, begin by wrenching them down, filling six plasma tanks with a plasma canister, and inserting the tank into the collectors one by one. Finally, initialize each collector.
    2. - -
    3. Prepare gas system: Before introducing any gas into the supermatter engine room, it is important to remember the small, but vital steps to preparing this section. First, set the input gas pump and output gas flow pump to 4500 kPa, or maximum flow. Second, switch the digital switching valve into the 'up' position, so the green light is on north side of the valve, in order to circulate the gas back toward the coolers and collectors.
    4. - -
    5. Apply N2 gas: Retrieve the two N2 canisters from storage and bring them to the engine room. Attach one of them to the input section of the engine gas system located next to the collectors. Keep it attached until the N2 pressure is low enough to turn the canister light red. Replace it with the second canister to keep N2 pressure at optimal levels.
    6. - -
    7. Open supermatter shielding: This button is located in the engine room, to the left of the engine monitoring room blast doors. At this point, the supermatter chamber is mostly a gas mixture of N2 and is producing no radiation. It is considered 'safe' up until this point. Do not forget radiation shielding and meson scanners.
    8. - -
    9. Begin primary emitter burst series: Begin by firing four shots into the supermatter using the emitter. It is important to move to this step quickly. The onboard SMES units may not have enough power to run the emitters if left alone too long on-station. This engine can produce enough power on its own to run the entire station, ignoring the SMES units completely, and is wired to do so.
    10. - -
    11. Switch SMES units to primary settings: Maximize input and set the devices to automatically charge, additionally turn their outputs on if they are off unless power is to be saved (Which can be useful in case of later failures).
    12. - -
    13. Begin secondary emitter burst series: Before firing the emitter again, check the power in the line with a multimeter (Do not forget electrical gloves). The engine is running at high efficiency when the value exceeds 200,000 power units.
    14. - -
    15. Maintain engine power: When power in the lines get low, add an additional emitter burst series to bring power to normal levels.
    16. -
    - - -

    O2-Reaction Mode

    - - The second mode for running the engine uses a gas mixture to produce a reaction within the supermatter. This mode requires the CE's or Atmospheric's help to set up. This is called 'O2-Reaction Mode.'

    - - THIS MODE CAN CAUSE A RUNAWAY REACTION, LEADING TO CATASTROPHIC FAILURE IF NOT MAINTAINED. NEVER FORGET ABOUT THE ENGINE IN THIS MODE.

    - - Additionally, this mode can be used for what is called a 'Cold Start.' If the station has no power in the SMES to run the emitters, using this mode will allow enough power output to run them, and quickly reach an acceptable level of power output.

    - -
      -
    1. Prepare collector arrays: As is standard, begin by wrenching them down, filling six plasma tanks with a plasma canister, and inserting the tank into the collectors one by one. Finally, initialize each collector.
    2. - -
    3. Prepare gas system: Before introducing any gas into the supermatter engine room, it is important to remember the small, but vital steps to preparing this section. First, set the input gas pump and output gas flow pump to 4500 kPa, or maximum flow. Second, switch the digital switching valve into the 'up' position, so the green light is on north side of the valve, in order to circulate the gas back toward the coolers and collectors.
    4. - -
    5. Modify the engine room filters: Unlike the Heat-Primary Mode, it is important to change the filters attached to the gas system to stop filtering O2, and start filtering carbon molecules. O2-Reaction Mode produces far more plasma than Heat-Primary, therefore filtering it off is essential.
    6. - -
    7. Switch SMES units to primary settings: Maximize input and set the devices to automatically charge, additionally turn their outputs on if they are off unless power is to be saved (Which can be useful in case of later failures). If you check the power in the system lines at this point, you will find that it is constantly going up. Indeed, with just the addition of O2 to the supermatter, it will begin outputting power.
    8. - -
    9. Begin primary emitter burst series: Begin by firing four shots into the supermatter using the emitter. Do not over power the supermatter. The reaction is self sustaining and propagating. As long as O2 is in the chamber, it will continue outputting MORE power.
    10. - -
    11. Maintain follow up operations: Remember to check the temperature of the core gas and switch to the Heat-Primary function, or vent the core room when problems begin if required.
    12. -

    - -

    Notes on Supermatter Reaction Function and Drawbacks

    - - After several hours of observation, an interesting phenomenon was witnessed. The supermatter undergoes a constant, self-sustaining reaction when given an extremely high O2 concentration. Anything about 80% or higher typically will cause this reaction. The supermatter will continue to react whenever this gas mixture is in the same room as the supermatter.

    - - To understand why O2-Reaction mode is dangerous, the core principle of the supermatter must be understood. The supermatter emits three things when 'not safe,' that is any time it is giving off power. These things are:
    - -
      -
    • Radiation (which is converted into power by the collectors)

    • -
    • Heat (which is removed via the gas exchange system and coolers)

    • -
    • External gas (in the form of plasma and O2)

    • -

    - - When in Heat-Primary mode, far more heat and plasma are produced than radiation. In O2-Reaction mode, very little heat and only moderate amounts of plasma are produced, however HUGE amounts of energy leaving the supermatter is in the form of radiation.

    - - The O2-Reaction engine mode has a single drawback which has been eluded to more than once so far and that is very simple. The engine room will continue to grow hotter as the constant reaction continues. Eventually, there will be what is called a 'critical gas mixture.' This is the point at which the constant adding of plasma to the mixture of air around the supermatter changes the gas concentration to below the tolerance. When this happens, two things occur. First, the supermatter switches to its primary mode of operation wherein huge amounts of heat are produced by the engine rather than low amounts with high power output. Second, an uncontrollable increase in heat within the supermatter chamber will occur. This will lead to a spark-up, igniting the plasma in the supermatter chamber, wildly increasing both pressure and temperature.

    - - While the O2-Reaction mode is dangerous, it does produce heavy amounts of energy. Consider using this mode only in short amounts to fill the SMES, and switch back later in the shift to keep things flowing normally.

    - - -

    Notes on Supermatter Containment and Emergency Procedures

    - - While a constant vigil on the supermatter is not required, regular checkups are important. Check the temperature of gas leaving the supermatter chamber for unsafe levels and ensure that the plasma in the chamber is at a safe concentration. Of course, also make sure the chamber is not on fire. A fire in the core chamber is very difficult to put out. As any toxin scientist can tell you, even low amounts of plasma can burn at very high temperatures. This burning creates a huge increase in pressure and more importantly, temperature of the crystal itself.

    - - The supermatter is strong, but not invincible. When the supermatter is heated too much, its crystal structure will attempt to liquefy. The change in atomic structure of the supermatter leads to a single reaction, a massive explosion. The computer chip attached to the supermatter core will warn the station when stability is threatened. It will then offer a second warning, when things have become dangerously close to total destruction of the core.

    - - Located both within the CE office and engine room is the engine ventilatory control button. This button allows the core vent controls to be accessed, venting the room to space. Remember however, that this process takes time. If a fire is raging, and the pressure is higher than fathomable, it will take a great deal of time to vent the room. Also located in the CE's office is the emergency core eject button. A new core can be ordered from cargo. It is often not worth the lives of the crew to hold on to it, not to mention the structural damage. However, if by some mistake the supermatter is pushed off or removed from the mass driver it sits on, manual reposition will be required. Which is very dangerous and often leads to death.

    - - The supermatter is extremely dangerous. More dangerous than people give it credit for. It can destroy you in an instant, without hesitation, reducing you to a pile of dust. When working closely with supermatter, it is suggested to get a genetic backup and do not wear any items of value to you. The supermatter core can be pulled if grabbed properly by the base, but pushing is not possible.

    - - -

    In Closing

    - - Remember that the supermatter is dangerous, and the core is dangerous still. Venting the core room is always an option if you are even remotely worried, utilizing Atmospherics to properly ready the room once more for core function. It is always a good idea to check up regularly on the temperature of gas leaving the chamber, as well as the power in the system lines. Lastly, once again remember, never touch the supermatter with anything. Ever.

    - - -Waleed Asad, Senior Engine Technician - - "} - /obj/item/book/manual/engineering_hacking name = "Hacking" icon_state ="bookHacking" @@ -203,150 +49,6 @@ "} -/obj/item/book/manual/engineering_singularity_safety - name = "Singularity Safety in Special Circumstances" - icon_state ="bookEngineeringSingularitySafety" - author = "Engineering Encyclopedia" - title = "Singularity Safety in Special Circumstances" - - dat = {" - - - - -

    Singularity Safety in Special Circumstances

    - -

    Power outage

    - - A power problem has made the entire station lose power? Could be station-wide wiring problems or syndicate power sinks. In any case follow these steps: - -
      -
    1. PANIC!
    2. -
    3. Get your ass over to engineering! QUICKLY!!!
    4. -
    5. Get to the Area Power Controller which controls the power to the emitters.
    6. -
    7. Swipe it with your ID card - if it doesn't unlock, continue with step 15.
    8. -
    9. Open the console and disengage the cover lock.
    10. -
    11. Pry open the APC with a Crowbar.
    12. -
    13. Take out the empty power cell.
    14. -
    15. Put in the new, full power cell - if you don't have one, continue with step 15.
    16. -
    17. Quickly put on a Radiation suit.
    18. -
    19. Check if the singularity field generators withstood the down-time - if they didn't, continue with step 15.
    20. -
    21. Since disaster was averted you now have to ensure it doesn't repeat. If it was a powersink which caused it and if the engineering APC is wired to the same powernet, which the powersink is on, you have to remove the piece of wire which links the APC to the powernet. If it wasn't a powersink which caused it, then skip to step 14.
    22. -
    23. Grab your crowbar and pry away the tile closest to the APC.
    24. -
    25. Use the wirecutters to cut the wire which is connecting the grid to the terminal.
    26. -
    27. Go to the bar and tell the guys how you saved them all. Stop reading this guide here.
    28. -
    29. GET THE FUCK OUT OF THERE!!!
    30. -
    - -

    Shields get damaged

    - -
      -
    1. GET THE FUCK OUT OF THERE!!! FORGET THE WOMEN AND CHILDREN, SAVE YOURSELF!!!
    2. -
    - - - "} - -/obj/item/book/manual/medical_cloning - name = "Cloning Techniques of the 26th Century" - icon_state ="bookCloning" - author = "Medical Journal, volume 3" - title = "Cloning Techniques of the 26th Century" - - dat = {" - - - - - -

    How to Clone People

    - So there are 50 dead people lying on the floor, chairs are spinning like no tomorrow and you haven't the foggiest idea of what to do? Not to worry! - This guide is intended to teach you how to clone people and how to do it right, in a simple, step-by-step process! If at any point of the guide you have a mental meltdown, - genetics probably isn't for you and you should get a job-change as soon as possible before you're sued for malpractice. - -
      -
    1. Acquire body
    2. -
    3. Strip body
    4. -
    5. Put body in cloning machine
    6. -
    7. Scan body
    8. -
    9. Clone body
    10. -
    11. Get clean Structural Enzymes for the body
    12. -
    13. Put body in morgue
    14. -
    15. Await cloned body
    16. -
    17. Cryo and use the clean SE injector
    18. -
    19. Give person clothes back
    20. -
    21. Send person on their way
    22. -
    - -

    Step 1: Acquire body

    - This is pretty much vital for the process because without a body, you cannot clone it. Usually, bodies will be brought to you, so you do not need to worry so much about this step. If you already have a body, great! Move on to the next step. - -

    Step 2: Strip body

    - The cloning machine does not like abiotic items. What this means is you can't clone anyone if they're wearing clothes or holding things, so take all of it off. If it's just one person, it's courteous to put their possessions in the closet. - If you have about seven people awaiting cloning, just leave the piles where they are, but don't mix them around and for God's sake don't let people in to steal them. - -

    Step 3: Put body in cloning machine

    - Grab the body and then put it inside the DNA modifier. If you cannot do this, then you messed up at Step 2. Go back and check you took EVERYTHING off - a commonly missed item is their headset. - -

    Step 4: Scan body

    - Go onto the computer and scan the body by pressing 'Scan - <Subject Name Here>.' If you're successful, they will be added to the records (note that this can be done at any time, even with living people, - so that they can be cloned without a body in the event that they are lying dead on port solars and didn't turn on their suit sensors)! - If not, and it says "Error: Mental interface failure.", then they have left their bodily confines and are one with the spirits. If this happens, just shout at them to get back in their body, - click 'Refresh' and try scanning them again. If there's no success, threaten them with gibbing. - Still no success? Skip over to Step 7 and don't continue after it, as you have an unresponsive body and it cannot be cloned. - If you got "Error: Unable to locate valid genetic data.", you are trying to clone a monkey - start over. - -

    Step 5: Clone body

    - Now that the body has a record, click 'View Records,' click the subject's name, and then click 'Clone' to start the cloning process. Congratulations! You're halfway there. - Remember not to 'Eject' the cloning pod as this will kill the developing clone and you'll have to start the process again. - -

    Step 6: Get clean SEs for body

    - Cloning is a finicky and unreliable process. Whilst it will most certainly bring someone back from the dead, they can have any number of nasty disabilities given to them during the cloning process! - For this reason, you need to prepare a clean, defect-free Structural Enzyme (SE) injection for when they're done. If you're a competent Geneticist, you will already have one ready on your working computer. - If, for any reason, you do not, then eject the body from the DNA modifier (NOT THE CLONING POD) and take it next door to the Genetics research room. Put the body in one of those DNA modifiers and then go onto the console. - Go into View/Edit/Transfer Buffer, find an open slot and click "SE" to save it. Then click 'Injector' to get the SEs in syringe form. Put this in your pocket or something for when the body is done. - -

    Step 7: Put body in morgue

    - Now that the cloning process has been initiated and you have some clean Structural Enzymes, you no longer need the body! Drag it to the morgue and tell the Chef over the radio that they have some fresh meat waiting for them in there. - To put a body in a morgue bed, simply open the tray, grab the body, put it on the open tray, then close the tray again. Use one of the nearby pens to label the bed "CHEF MEAT" in order to avoid confusion. - -

    Step 8: Await cloned body

    - Now go back to the lab and wait for your patient to be cloned. It won't be long now, I promise. - -

    Step 9: Cryo and clean SE injector on person

    - Has your body been cloned yet? Great! As soon as the guy pops out, grab them and stick them in cryo. Clonexadone and Cryoxadone help rebuild their genetic material. Then grab your clean SE injector and jab it in them. Once you've injected them, - they now have clean Structural Enzymes and their defects, if any, will disappear in a short while. - -

    Step 10: Give person clothes back

    - Obviously the person will be naked after they have been cloned. Provided you weren't an irresponsible little shit, you should have protected their possessions from thieves and should be able to give them back to the patient. - No matter how cruel you are, it's simply against protocol to force your patients to walk outside naked. - -

    Step 11: Send person on their way

    - Give the patient one last check-over - make sure they don't still have any defects and that they have all their possessions. Ask them how they died, if they know, so that you can report any foul play over the radio. - Once you're done, your patient is ready to go back to work! Chances are they do not have Medbay access, so you should let them out of Genetics and the Medbay main entrance. - -

    If you've gotten this far, congratulations! You have mastered the art of cloning. Now, the real problem is how to resurrect yourself after that traitor had his way with you for cloning his target. - - - - "} - - /obj/item/book/manual/ripley_build_and_repair name = "APLU \"Ripley\" Construction and Operation Manual" icon_state ="book" @@ -430,271 +132,17 @@ author = "Dr. L. Ight" title = "Research and Development 101" - dat = {" - - - - - -

    Science For Dummies

    - So you want to further SCIENCE? Good man/woman/thing! However, SCIENCE is a complicated process even though it's quite easy. For the most part, it's a three step process: -
      -
    1. Deconstruct items in the Destructive Analyzer to advance technology or improve the design.
    2. -
    3. Build unlocked designs in the Protolathe and Circuit Imprinter.
    4. -
    5. Repeat!
    6. -
    - - Those are the basic steps to furthering science. What do you do science with, however? Well, you have four major tools: R&D Console, the Destructive Analyzer, the Protolathe, and the Circuit Imprinter. - -

    The R&D Console

    - The R&D console is the cornerstone of any research lab. It is the central system from which the Destructive Analyzer, Protolathe, and Circuit Imprinter (your R&D systems) are controlled. More on those systems in their own sections. - On its own, the R&D console acts as a database for all your technological gains and new devices you discover. So long as the R&D console remains intact, you'll retain all that SCIENCE you've discovered. Protect it though, - because if it gets damaged, you'll lose your data! - In addition to this important purpose, the R&D console has a disk menu that lets you transfer data from the database onto disk or from the disk into the database. - It also has a settings menu that lets you re-sync with nearby R&D devices (if they've become disconnected), lock the console from the unworthy, - upload the data to all other R&D consoles in the network (all R&D consoles are networked by default), connect/disconnect from the network, and purge all data from the database.

    - - NOTE: The technology list screen, circuit imprinter, and protolathe menus are accessible by non-scientists. This is intended to allow 'public' systems for the plebians to utilize some new devices. - -

    Destructive Analyzer

    - This is the source of all technology. Whenever you put a handheld object in it, it analyzes it and determines what sort of technological advancements you can discover from it. If the technology of the object is equal or higher then your current knowledge, - you can destroy the object to further those sciences. - Some devices (notably, some devices made from the protolathe and circuit imprinter) aren't 100% reliable when you first discover them. If these devices break down, you can put them into the Destructive Analyzer and improve their reliability rather than further science. - If their reliability is high enough, it'll also advance their related technologies. - -

    Circuit Imprinter

    - This machine, along with the Protolathe, is used to actually produce new devices. The Circuit Imprinter takes glass and various chemicals (depends on the design) to produce new circuit boards to build new machines or computers. It can even be used to print AI modules. - -

    Protolathe

    - This machine is an advanced form of the Autolathe that produce non-circuit designs. Unlike the Autolathe, it can use processed metal, glass, solid phoron, silver, gold, and diamonds along with a variety of chemicals to produce devices. - The downside is that, again, not all devices you make are 100% reliable when you first discover them. - -

    Reliability and You

    - As it has been stated, many devices, when they're first discovered, do not have a 100% reliability. Instead, - the reliability of the device is dependent upon a base reliability value, whatever improvements to the design you've discovered through the Destructive Analyzer, - and any advancements you've made with the device's source technologies. To be able to improve the reliability of a device, you have to use the device until it breaks beyond repair. Once that happens, you can analyze it in a Destructive Analyzer. - Once the device reaches a certain minimum reliability, you'll gain technological advancements from it. - -

    Building a Better Machine

    - Many machines produced from circuit boards inserted into a machine frames require a variety of parts to construct. These are parts like capacitors, batteries, matter bins, and so forth. As your knowledge of science improves, more advanced versions are unlocked. - If you use these parts when constructing something, its attributes may be improved. - For example, if you use an advanced matter bin when constructing an autolathe (rather than a regular one), it'll hold more materials. Experiment around with stock parts of various qualities to see how they affect the end results! Be warned, however: - Tier 3 and higher stock parts don't have 100% reliability and their low reliability may affect the reliability of the end machine. - - - "} - - -/obj/item/book/manual/robotics_cyborgs - name = "Cyborgs for Dummies" - icon_state = "borgbook" - author = "XISC" - title = "Cyborgs for Dummies" - - dat = {" - - - - - -

    Cyborgs for Dummies

    - -

    Chapters

    - -
      -
    1. Cyborg Related Equipment
    2. -
    3. Cyborg Modules
    4. -
    5. Cyborg Construction
    6. -
    7. Cyborg Maintenance
    8. -
    9. Cyborg Repairs
    10. -
    11. In Case of Emergency
    12. -
    - - -

    Cyborg Related Equipment

    - -

    Exosuit Fabricator

    - The Exosuit Fabricator is the most important piece of equipment related to cyborgs. It allows the construction of the core cyborg parts. Without these machines, cyborgs cannot be built. It seems that they may also benefit from advanced research techniques. - -

    Cyborg Recharging Station

    - This useful piece of equipment will suck power out of the power systems to charge a cyborg's power cell back up to full charge. - -

    Robotics Control Console

    - This useful piece of equipment can be used to immobilize or destroy a cyborg. A word of warning: Cyborgs are expensive pieces of equipment, do not destroy them without good reason, or Weyland-Yutani may see to it that it never happens again. - - -

    Cyborg Modules

    - When a cyborg is created it picks out of an array of modules to designate its purpose. There are 6 different cyborg modules. - -

    Standard Cyborg

    - The standard cyborg module is a multi-purpose cyborg. It is equipped with various modules, allowing it to do basic tasks.
    A Standard Cyborg comes with: -
      -
    • Crowbar
    • -
    • Stun Baton
    • -
    • Health Analyzer
    • -
    • Fire Extinguisher
    • -
    - -

    Engineering Cyborg

    - The Engineering cyborg module comes equipped with various engineering-related tools to help with engineering-related tasks.
    An Engineering Cyborg comes with: -
      -
    • A basic set of engineering tools
    • -
    • Metal Synthesizer
    • -
    • Reinforced Glass Synthesizer
    • -
    • An RCD
    • -
    • Wire Synthesizer
    • -
    • Fire Extinguisher
    • -
    • Built-in Optical Meson Scanners
    • -
    - -

    Mining Cyborg

    - The Mining Cyborg module comes equipped with the latest in mining equipment. They are efficient at mining due to no need for oxygen, but their power cells limit their time in the mines.
    A Mining Cyborg comes with: -
      -
    • Jackhammer
    • -
    • Shovel
    • -
    • Mining Satchel
    • -
    • Built-in Optical Meson Scanners
    • -
    - -

    Security Cyborg

    - The Security Cyborg module is equipped with effective security measures used to apprehend and arrest criminals without harming them a bit.
    A Security Cyborg comes with: -
      -
    • Stun Baton
    • -
    • Handcuffs
    • -
    • Taser
    • -
    - -

    Janitor Cyborg

    - The Janitor Cyborg module is equipped with various cleaning-facilitating devices.
    A Janitor Cyborg comes with: -
      -
    • Mop
    • -
    • Hand Bucket
    • -
    • Cleaning Spray Synthesizer and Spray Nozzle
    • -
    - -

    Service Cyborg

    - The service cyborg module comes ready to serve your human needs. It includes various entertainment and refreshment devices. Occasionally some service cyborgs may have been referred to as "Bros."
    A Service Cyborg comes with: -
      -
    • Shaker
    • -
    • Industrial Dropper
    • -
    • Platter
    • -
    • Beer Synthesizer
    • -
    • Zippo Lighter
    • -
    • Rapid-Service-Fabricator (Produces various entertainment and refreshment objects)
    • -
    • Pen
    • -
    - -

    Cyborg Construction

    - Cyborg construction is a rather easy process, requiring a decent amount of metal and a few other supplies.
    The required materials to make a cyborg are: -
      -
    • Metal
    • -
    • Two Flashes
    • -
    • One Power Cell (Preferably rated to 15000w)
    • -
    • Some electrical wires
    • -
    • One Human Brain
    • -
    • One Man-Machine Interface
    • -
    - Once you have acquired the materials, you can start on construction of your cyborg.
    To construct a cyborg, follow the steps below: -
      -
    1. Start the Exosuit Fabricators constructing all of the cyborg parts
    2. -
    3. While the parts are being constructed, take your human brain, and place it inside the Man-Machine Interface
    4. -
    5. Once you have a Robot Head, place your two flashes inside the eye sockets
    6. -
    7. Once you have your Robot Chest, wire the Robot chest, then insert the power cell
    8. -
    9. Attach all of the Robot parts to the Robot frame
    10. -
    11. Insert the Man-Machine Interface (With the Brain inside) into the Robot Body
    12. -
    13. Congratulations! You have a new cyborg!
    14. -
    - -

    Cyborg Maintenance

    - Occasionally Cyborgs may require maintenance of a couple types, this could include replacing a power cell with a charged one, or possibly maintaining the cyborg's internal wiring. - -

    Replacing a Power Cell

    - Replacing a Power cell is a common type of maintenance for cyborgs. It usually involves replacing the cell with a fully charged one, or upgrading the cell with a larger capacity cell.
    The steps to replace a cell are as follows: -
      -
    1. Unlock the Cyborg's Interface by swiping your ID on it
    2. -
    3. Open the Cyborg's outer panel using a crowbar
    4. -
    5. Remove the old power cell
    6. -
    7. Insert the new power cell
    8. -
    9. Close the Cyborg's outer panel using a crowbar
    10. -
    11. Lock the Cyborg's Interface by swiping your ID on it, this will prevent non-qualified personnel from attempting to remove the power cell
    12. -
    - -

    Exposing the Internal Wiring

    - Exposing the internal wiring of a cyborg is fairly easy to do, and is mainly used for cyborg repairs.
    You can easily expose the internal wiring by following the steps below: -
      -
    1. Follow Steps 1 - 3 of "Replacing a Cyborg's Power Cell"
    2. -
    3. Open the cyborg's internal wiring panel by using a screwdriver to unsecure the panel
    4. -
    - To re-seal the cyborg's internal wiring: -
      -
    1. Use a screwdriver to secure the cyborg's internal panel
    2. -
    3. Follow steps 4 - 6 of "Replacing a Cyborg's Power Cell" to close up the cyborg
    4. -
    - -

    Cyborg Repairs

    - Occasionally a Cyborg may become damaged. This could be in the form of impact damage from a heavy or fast-travelling object, or it could be heat damage from high temperatures, or even lasers or Electromagnetic Pulses (EMPs). - -

    Dents

    - If a cyborg becomes damaged due to impact from heavy or fast-moving objects, it will become dented. Sure, a dent may not seem like much, but it can compromise the structural integrity of the cyborg, possibly causing a critical failure. - Dents in a cyborg's frame are rather easy to repair, all you need is to apply a blowtorch to the dented area, and the high-tech cyborg frame will repair the dent under the heat of the welder. - -

    Excessive Heat Damage

    - If a cyborg becomes damaged due to excessive heat, it is likely that the internal wires will have been damaged. You must replace those wires to ensure that the cyborg remains functioning properly.
    To replace the internal wiring follow the steps below: -
      -
    1. Unlock the Cyborg's Interface by swiping your ID
    2. -
    3. Open the Cyborg's External Panel using a crowbar
    4. -
    5. Remove the Cyborg's Power Cell
    6. -
    7. Using a screwdriver, expose the internal wiring of the Cyborg
    8. -
    9. Replace the damaged wires inside the cyborg
    10. -
    11. Secure the internal wiring cover using a screwdriver
    12. -
    13. Insert the Cyborg's Power Cell
    14. -
    15. Close the Cyborg's External Panel using a crowbar
    16. -
    17. Lock the Cyborg's Interface by swiping your ID
    18. -
    - These repair tasks may seem difficult, but are essential to keep your cyborgs running at peak efficiency. + dat = {" -

    In Case of Emergency

    - In case of emergency, there are a few steps you can take. + + -

    "Rogue" Cyborgs

    - If the cyborgs seem to become "rogue", they may have non-standard laws. In this case, use extreme caution. - To repair the situation, follow these steps: -
      -
    1. Locate the nearest robotics console
    2. -
    3. Determine which cyborgs are "Rogue"
    4. -
    5. Press the lockdown button to immobilize the cyborg
    6. -
    7. Locate the cyborg
    8. -
    9. Expose the cyborg's internal wiring
    10. -
    11. Check to make sure the LawSync and AI Sync lights are lit
    12. -
    13. If they are not lit, pulse the LawSync wire using a multitool to enable the cyborg's LawSync
    14. -
    15. Proceed to a cyborg upload console. Weyland-Yutani usually places these in the same location as AI upload consoles.
    16. -
    17. Use a "Reset" upload moduleto reset the cyborg's laws
    18. -
    19. Proceed to a Robotics Control console
    20. -
    21. Remove the lockdown on the cyborg
    22. -
    + + + -

    As a last resort

    - If all else fails in a case of cyborg-related emergency, there may be only one option. Using a Robotics Control console, you may have to remotely detonate the cyborg. -

    WARNING:

    Do not detonate a borg without an explicit reason for doing so. Cyborgs are expensive pieces of Weyland-Yutani equipment, and you may be punished for detonating them without reason. + - - "} @@ -718,6 +166,7 @@ "} + /obj/item/book/manual/marine_law name = "Marine Law" desc = "A set of guidelines for keeping law and order on military vessels." @@ -982,6 +431,7 @@ "} + /obj/item/book/manual/nuclear name = "Fission Mailed: Nuclear Sabotage 101" icon_state ="bookNuclear" @@ -1033,6 +483,7 @@ "} + /obj/item/book/manual/atmospipes name = "Pipes and You: Getting To Know Your Scary Tools" icon_state = "pipingbook" @@ -1140,6 +591,7 @@ "} + /obj/item/book/manual/evaguide name = "EVA Gear and You: Not Spending All Day Inside" icon_state = "evabook" @@ -1244,10 +696,6 @@ "} - - - - /obj/item/book/manual/orbital_cannon_manual name = "USCM Orbital Bombardment System Manual" icon_state = "bookEngineering" @@ -1299,12 +747,13 @@ "} + /obj/item/book/manual/orbital_cannon_manual/New() . = ..() - LAZYADD(objects_of_interest, src) + LAZYADD(GLOB.objects_of_interest, src) /obj/item/book/manual/orbital_cannon_manual/Destroy() . = ..() - LAZYREMOVE(objects_of_interest, src) + LAZYREMOVE(GLOB.objects_of_interest, src) diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index 2b6ae446d8..802a5ad750 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -67,7 +67,7 @@ /// The name registered_name on the card var/registered_name = "Unknown" - var/registered_ref = null + var/datum/weakref/registered_ref = null var/registered_gid = 0 flags_equip_slot = SLOT_ID @@ -80,7 +80,7 @@ /// actual job var/rank = null /// Marine's paygrade - var/paygrade = "C" + var/paygrade = PAY_SHORT_CIV /// For medics and engineers to 'claim' a locker var/claimedgear = 1 @@ -150,6 +150,12 @@ to_chat(usr, "[icon2html(src, usr)] [name]: The current assignment on the card is [assignment]") to_chat(usr, "The blood type on the card is [blood_type].") +/obj/item/card/id/proc/check_biometrics(mob/living/carbon/human/target) + if(registered_ref && (registered_ref != WEAKREF(target))) + return FALSE + if(target.real_name != registered_name) + return FALSE + return TRUE /obj/item/card/id/data name = "identification holo-badge" @@ -171,24 +177,24 @@ name = "corporate doctor badge" desc = "A corporate holo-badge. It is fingerprint locked with clearance level 3 access. It is commonly held by corporate doctors." icon_state = "clearance" - var/clearance_access = 3 + var/credits_to_give = 15 //gives the equivalent clearance access in credits /obj/item/card/id/silver/clearance_badge/scientist name = "corporate scientist badge" desc = "A corporate holo-badge. It is fingerprint locked with clearance level 4 access. It is commonly held by corporate scientists." - clearance_access = 4 + credits_to_give = 27 /obj/item/card/id/silver/clearance_badge/cl name = "corporate liaison badge" desc = "A corporate holo-badge in unique corporate orange and white. It is fingerprint locked with clearance level 5 access. It is commonly held by corporate liaisons." icon_state = "cl" - clearance_access = 5 + credits_to_give = 42 /obj/item/card/id/silver/clearance_badge/manager name = "corporate manager badge" desc = "A corporate holo-badge in standard corporate orange and white. It has a unique uncapped bottom. It is fingerprint locked with 5-X clearance level. Commonly held by corporate managers." icon_state = "pmc" - clearance_access = 6 + credits_to_give = 47 /obj/item/card/id/pizza name = "pizza guy badge" @@ -243,11 +249,13 @@ name = "\improper CMB marshal gold badge" desc = "A coveted gold badge signifying that the wearer is one of the few CMB Marshals patroling the outer rim. It is a sign of justice, authority, and protection. Protecting those who can't. This badge represents a commitment to a sworn oath always kept." icon_state = "cmbmar" + paygrade = PAY_SHORT_CMBM /obj/item/card/id/deputy name = "\improper CMB deputy silver badge" desc = "The silver badge which represents that the wearer is a CMB Deputy. It is a sign of justice, authority, and protection. Protecting those who can't. This badge represents a commitment to a sworn oath always kept." icon_state = "cmbdep" + paygrade = PAY_SHORT_CMBD /obj/item/card/id/general name = "general officer holo-badge" @@ -269,79 +277,51 @@ /obj/item/card/id/provost/New() access = get_access(ACCESS_LIST_MARINE_ALL) -/obj/item/card/id/syndicate +/obj/item/card/id/adaptive name = "agent card" access = list(ACCESS_ILLEGAL_PIRATE) - var/registered_user=null -/obj/item/card/id/syndicate/New(mob/user as mob) +/obj/item/card/id/adaptive/New(mob/user as mob) ..() if(!QDELETED(user)) // Runtime prevention on laggy starts or where users log out because of lag at round start. - registered_name = ishuman(user) ? user.real_name : user.name - else - registered_name = "Agent Card" + registered_name = ishuman(user) ? user.real_name : "Unknown" assignment = "Agent" name = "[registered_name]'s [card_name] ([assignment])" -/obj/item/card/id/syndicate/afterattack(obj/item/O as obj, mob/user as mob, proximity) - if(!proximity) return +/obj/item/card/id/adaptive/afterattack(obj/item/O as obj, mob/user as mob, proximity) + if(!proximity) + return if(istype(O, /obj/item/card/id)) - var/obj/item/card/id/I = O - src.access |= I.access - if(istype(user, /mob/living) && user.mind) - to_chat(usr, SPAN_NOTICE(" The card's microscanners activate as you pass it over the ID, copying its access.")) - -/obj/item/card/id/syndicate/attack_self(mob/user as mob) - if(!src.registered_name) - //Stop giving the players unsanitized unputs! You are giving ways for players to intentionally crash clients! -Nodrak - var t = reject_bad_name(input(user, "What name would you like to put on this card?", "Agent card name", ishuman(user) ? user.real_name : user.name)) - if(!t) //Same as mob/new_player/prefrences.dm - alert("Invalid name.") - return - src.registered_name = t - - var u = strip_html(input(user, "What occupation would you like to put on this card?\nNote: This will not grant any access levels other than Maintenance.", "Agent card job assignment", "Agent")) - if(!u) - alert("Invalid assignment.") - src.registered_name = "" - return - src.assignment = u - src.name = "[src.registered_name]'s [card_name] ([src.assignment])" - to_chat(user, SPAN_NOTICE(" You successfully forge the ID card.")) - registered_user = user - else if(!registered_user || registered_user == user) - - if(!registered_user) registered_user = user // - - switch(alert("Would you like to display the ID, or retitle it?","Choose.","Rename","Show")) - if("Rename") - var t = strip_html(input(user, "What name would you like to put on this card?", "Agent card name", ishuman(user) ? user.real_name : user.name),26) - if(!t || t == "Unknown" || t == "floor" || t == "wall" || t == "r-wall") //Same as mob/new_player/prefrences.dm - alert("Invalid name.") - return - src.registered_name = t - - var u = strip_html(input(user, "What occupation would you like to put on this card?\nNote: This will not grant any access levels other than Maintenance.", "Agent card job assignment", "Assistant")) - if(!u) - alert("Invalid assignment.") - return - src.assignment = u - src.name = "[src.registered_name]'s [card_name] ([src.assignment])" - to_chat(user, SPAN_NOTICE(" You successfully forge the ID card.")) + var/obj/item/card/id/target_id = O + access |= target_id.access + if(ishuman(user)) + to_chat(user, SPAN_NOTICE("The card's microscanners activate as you pass it over the ID, copying its access.")) + +/obj/item/card/id/adaptive/attack_self(mob/user as mob) + switch(alert("Would you like to display the ID, or retitle it?","Choose.","Rename","Show")) + if("Rename") + var/new_name = strip_html(input(user, "What name would you like to put on this card?", "Agent card name", ishuman(user) ? user.real_name : user.name),26) + if(!new_name || new_name == "Unknown" || new_name == "floor" || new_name == "wall" || new_name == "r-wall") //Same as mob/new_player/prefrences.dm + to_chat(user, SPAN_WARNING("Invalid Name.")) return - if("Show") - ..() - else - ..() + var/new_job = strip_html(input(user, "What occupation would you like to put on this card?\nNote: This will not grant any access levels other than Maintenance.", "Agent card job assignment", "Assistant")) + if(!new_job) + to_chat(user, SPAN_WARNING("Invalid Assignment.")) + return + var/new_rank = strip_html(input(user, "What paygrade do would you like to put on this card?\nNote: This must be the shorthand version of the grade, I.E CIV for Civillian or ME1 for Marine Private", "Agent card paygrade assignment", PAY_SHORT_CIV)) + if(!new_rank || !(new_rank in GLOB.paygrades)) + to_chat(user, SPAN_WARNING("Invalid Paygrade.")) + return -/obj/item/card/id/syndicate_command - name = "syndicate ID card" - desc = "An ID straight from the Syndicate." - registered_name = "Syndicate" - assignment = "Syndicate Overlord" - access = list(ACCESS_ILLEGAL_PIRATE) + registered_name = new_name + assignment = new_job + name = "[registered_name]'s ID Card ([assignment])" + paygrade = new_rank + to_chat(user, SPAN_NOTICE("You successfully forge the ID card.")) + return + ..() /obj/item/card/id/captains_spare name = "captain's spare ID" @@ -418,7 +398,7 @@ /obj/item/dogtag/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/dogtag)) var/obj/item/dogtag/D = I - to_chat(user, SPAN_NOTICE("You join the [fallen_names.len>1 ? "tags":"two tags"] together.")) + to_chat(user, SPAN_NOTICE("You join the [length(fallen_names)>1 ? "tags":"two tags"] together.")) name = "information dog tags" if(D.fallen_names) fallen_names += D.fallen_names @@ -431,11 +411,11 @@ /obj/item/dogtag/get_examine_text(mob/user) . = ..() - if(ishuman(user) && fallen_names && fallen_names.len) - var/msg = "There [fallen_names.len>1 ? \ - "are [fallen_names.len] tags.
    They read":\ + if(ishuman(user) && LAZYLEN(fallen_names)) + var/msg = "There [length(fallen_names)>1 ? \ + "are [length(fallen_names)] tags.
    They read":\ "is one ID tag.
    It reads"]:" - for (var/i=1 to fallen_names.len) + for (var/i=1 to length(fallen_names)) msg += "
    [i]. \"[fallen_names[i]] - [fallen_assgns[i]] - [fallen_blood_types[i]]\"" . += SPAN_NOTICE("[msg]") diff --git a/code/game/objects/items/circuitboards/airlock.dm b/code/game/objects/items/circuitboards/airlock.dm index 4de97a8e20..07add70280 100644 --- a/code/game/objects/items/circuitboards/airlock.dm +++ b/code/game/objects/items/circuitboards/airlock.dm @@ -48,7 +48,7 @@ for (var/acc in accesses) var/aname = get_access_desc(acc) - if (!conf_access || !conf_access.len || !(acc in conf_access)) + if (!LAZYLEN(conf_access) || !(acc in conf_access)) t1 += "
    [aname]
    " else if(one_access) t1 += "[aname]
    " @@ -58,7 +58,7 @@ t1 += text("

    Close

    \n", src) show_browser(user, t1, "Access Control", "airlock_electronics") - onclose(user, "airlock") + onclose(user, "airlock_electronics") /obj/item/circuitboard/airlock/Topic(href, href_list) @@ -107,7 +107,7 @@ conf_access += req else conf_access -= req - if (!conf_access.len) + if (!length(conf_access)) conf_access = null diff --git a/code/game/objects/items/circuitboards/computer.dm b/code/game/objects/items/circuitboards/computer.dm index 122136f6f2..58ff86130c 100644 --- a/code/game/objects/items/circuitboards/computer.dm +++ b/code/game/objects/items/circuitboards/computer.dm @@ -26,6 +26,12 @@ if (..(C)) network = C.network +/obj/item/circuitboard/computer/cameras/tv + name = "Circuit board (Television Set)" + build_path = /obj/structure/machinery/computer/cameras/wooden_tv/broadcast + network = list(CAMERA_NET_CORRESPONDENT) + req_access = list() + /obj/item/circuitboard/computer/cameras/engineering name = "Circuit board (Engineering Camera Monitor)" build_path = /obj/structure/machinery/computer/cameras/engineering @@ -174,7 +180,7 @@ else if(HAS_TRAIT(tool, TRAIT_TOOL_BLACKMARKET_HACKER)) to_chat(user, SPAN_WARNING("You start messing around with the electronics of [src]...")) if(do_after(user, 8 SECONDS, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what you're doing.")) return to_chat(user, SPAN_WARNING("Huh? You find a processor bus with the letters 'B.M.' written in white crayon over it. You start fiddling with it.")) @@ -278,8 +284,8 @@ to_chat(usr, "No input found please hang up and try your call again.") return var/list/tempnetwork = splittext(input, ",") - tempnetwork = difflist(tempnetwork,RESTRICTED_CAMERA_NETWORKS,1) - if(tempnetwork.len < 1) + tempnetwork = difflist(tempnetwork,GLOB.RESTRICTED_CAMERA_NETWORKS,1) + if(length(tempnetwork) < 1) to_chat(usr, "No network found please hang up and try your call again.") return network = tempnetwork @@ -287,14 +293,12 @@ /obj/item/circuitboard/computer/rdconsole/attackby(obj/item/I as obj, mob/user as mob) if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) - user.visible_message(SPAN_NOTICE("\the [user] adjusts the jumper on the [src]'s access protocol pins."), SPAN_NOTICE("You adjust the jumper on the access protocol pins.")) + user.visible_message(SPAN_NOTICE("[user] adjusts the jumper on [src]'s access protocol pins."), SPAN_NOTICE("You adjust the jumper on the access protocol pins.")) if(src.build_path == /obj/structure/machinery/computer/rdconsole/core) src.name = "Circuit Board (RD Console - Robotics)" src.build_path = /obj/structure/machinery/computer/rdconsole/robotics - to_chat(user, SPAN_NOTICE(" Access protocols set to robotics.")) + to_chat(user, SPAN_NOTICE("Access protocols set to robotics.")) else src.name = "Circuit Board (RD Console)" src.build_path = /obj/structure/machinery/computer/rdconsole/core - to_chat(user, SPAN_NOTICE(" Access protocols set to default.")) - - + to_chat(user, SPAN_NOTICE("Access protocols set to default.")) diff --git a/code/game/objects/items/circuitboards/machine.dm b/code/game/objects/items/circuitboards/machine.dm index ad4c31cb11..248d0d5c88 100644 --- a/code/game/objects/items/circuitboards/machine.dm +++ b/code/game/objects/items/circuitboards/machine.dm @@ -141,7 +141,7 @@ to destroy them and players will be able to make replacements. if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) machine_dir = turn(machine_dir, 90) init_dirs = machine_dir - user.visible_message(SPAN_NOTICE("\The [user] adjusts the jumper on the [src]'s port configuration pins."), SPAN_NOTICE("You adjust the jumper on the port configuration pins. Now set to [dir2text(machine_dir)].")) + user.visible_message(SPAN_NOTICE("[user] adjusts the jumper on [src]'s port configuration pins."), SPAN_NOTICE("You adjust the jumper on the port configuration pins. Now set to [dir2text(machine_dir)].")) return /obj/item/circuitboard/machine/unary_atmos/get_examine_text(mob/user) @@ -300,5 +300,3 @@ to destroy them and players will be able to make replacements. // Board itself is high tech. Coils have to be ordered from cargo or salvaged from existing SMESs. frame_desc = "Requires 1 superconducting magnetic coil and 30 wires." req_components = list(/obj/item/stock_parts/smes_coil = 1, /obj/item/stack/cable_coil = 30) - - diff --git a/code/game/objects/items/circuitboards/mecha.dm b/code/game/objects/items/circuitboards/mecha.dm index 60b5d7a0c9..40646de77d 100644 --- a/code/game/objects/items/circuitboards/mecha.dm +++ b/code/game/objects/items/circuitboards/mecha.dm @@ -1,7 +1,4 @@ - -///////// Circuitboards - -/obj/item/circuitboard/mecha +/obj/item/circuitboard/exosuit name = "Exosuit Circuit board" icon_state = "std_mod" force = 5 @@ -10,71 +7,34 @@ throw_speed = SPEED_VERY_FAST throw_range = 15 -/obj/item/circuitboard/mecha/ripley - - -/obj/item/circuitboard/mecha/ripley/peripherals - name = "Circuit board (Ripley Peripherals Control module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/ripley/main - name = "Circuit board (Ripley Central Control module)" - icon_state = "mainboard" - -/obj/item/circuitboard/mecha/gygax - - -/obj/item/circuitboard/mecha/gygax/peripherals - name = "Circuit board (Gygax Peripherals Control module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/gygax/targeting - name = "Circuit board (Gygax Weapon Control and Targeting module)" - icon_state = "mcontroller" - - -/obj/item/circuitboard/mecha/gygax/main - name = "Circuit board (Gygax Central Control module)" - icon_state = "mainboard" - -/obj/item/circuitboard/mecha/durand - - -/obj/item/circuitboard/mecha/durand/peripherals - name = "Circuit board (Durand Peripherals Control module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/durand/targeting - name = "Circuit board (Durand Weapon Control and Targeting module)" - icon_state = "mcontroller" - - -/obj/item/circuitboard/mecha/durand/main - name = "Circuit board (Durand Central Control module)" - icon_state = "mainboard" - -/obj/item/circuitboard/mecha/honker - - -/obj/item/circuitboard/mecha/honker/peripherals - name = "Circuit board (H.O.N.K Peripherals Control module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/honker/targeting - name = "Circuit board (H.O.N.K Weapon Control and Targeting module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/honker/main - name = "Circuit board (H.O.N.K Central Control module)" - icon_state = "mainboard" - -/obj/item/circuitboard/mecha/odysseus - - -/obj/item/circuitboard/mecha/odysseus/peripherals - name = "Circuit board (Odysseus Peripherals Control module)" - icon_state = "mcontroller" - -/obj/item/circuitboard/mecha/odysseus/main - name = "Circuit board (Odysseus Central Control module)" +// that's the two possible exosuit boards icon_state. +/obj/item/circuitboard/exosuit/main icon_state = "mainboard" +/obj/item/circuitboard/exosuit/peripherals + icon_state = "mcontroller" + +// P-1000 Older version of the P-5000 +/obj/item/circuitboard/exosuit/main/work_loader + name = "Circuit board (P-1000 Central Control module)" +/obj/item/circuitboard/exosuit/peripherals/work_loader + name = "Circuit board (P-1000 Peripherals Control module)" + +// MAX (Mobile Assault Exo-Warrior)look like a gygax from afar +/obj/item/circuitboard/exosuit/main/max + name = "Circuit board (Max Central Control module)" +/obj/item/circuitboard/exosuit/peripherals/max + name = "Circuit board (Max Peripherals Control module)" +/obj/item/circuitboard/exosuit/peripherals/max/targeting + name = "Circuit board (Max Weapon Control and Targeting module)" + +// MOX (mobile offensive exo-warrior) look like a durand from afar. +/obj/item/circuitboard/exosuit/main/mox + name = "Circuit board (Mox Central Control module)" +/obj/item/circuitboard/exosuit/peripherals/mox + name = "Circuit board (Mox Peripherals Control module)" + +// Alice it's an exosuit featured in alien versus predator 2 doesn't look like an odysseus but is a name in CM lore. +/obj/item/circuitboard/exosuit/main/alice + name = "Circuit board (Alice Central Control module)" +/obj/item/circuitboard/exosuit/peripherals/alice + name = "Circuit board (Alice Peripherals Control module)" diff --git a/code/game/objects/items/circuitboards/robot_modules.dm b/code/game/objects/items/circuitboards/robot_modules.dm index 04fcff10fa..fc0b2892a1 100644 --- a/code/game/objects/items/circuitboards/robot_modules.dm +++ b/code/game/objects/items/circuitboards/robot_modules.dm @@ -2,365 +2,14 @@ name = "robot module" icon_state = "std_mod" flags_atom = FPRINT|CONDUCT - var/channels = list() - var/list/modules = list() - var/obj/item/emag = null - var/obj/item/robot/upgrade/jetpack = null - var/list/stacktypes - -/obj/item/circuitboard/robot_module/emp_act(severity) - . = ..() - if(modules) - for(var/obj/O in modules) - O.emp_act(severity) - if(emag) - emag.emp_act(severity) - - -/obj/item/circuitboard/robot_module/Initialize() - . = ..() -// src.modules += new /obj/item/device/flashlight(src) // Replaced by verb and integrated light which uses power. - src.modules += new /obj/item/device/flash(src) - src.emag = new /obj/item/toy/sword(src) - src.emag.name = "Placeholder Emag Item" -// src.jetpack = new /obj/item/toy/sword(src) -// src.jetpack.name = "Placeholder Upgrade Item" - -/obj/item/circuitboard/robot_module/Destroy() - . = ..() - QDEL_NULL(emag) - QDEL_NULL(jetpack) - QDEL_NULL_LIST(modules) - -/obj/item/circuitboard/robot_module/proc/respawn_consumable(mob/living/silicon/robot/R) - - if(!stacktypes || !stacktypes.len) return - - for(var/T in stacktypes) - var/O = locate(T) in src.modules - var/obj/item/stack/S = O - - if(!S) - src.modules -= null - S = new T(src) - src.modules += S - S.amount = 1 - - if(S && S.amount < stacktypes[T]) - S.amount++ - -/obj/item/circuitboard/robot_module/proc/rebuild()//Rebuilds the list so it's possible to add/remove items from the module - var/list/temp_list = modules - modules = list() - for(var/obj/O in temp_list) - if(O) - modules += O - -/obj/item/circuitboard/robot_module/proc/add_languages(mob/living/silicon/robot/R) - //full set of languages - R.add_language(LANGUAGE_RUSSIAN, 1) - R.add_language(LANGUAGE_JAPANESE, 1) - - -/obj/item/circuitboard/robot_module/standard - name = "standard robot module" - -/obj/item/circuitboard/robot_module/standard/New() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/tool/extinguisher(src) - src.modules += new /obj/item/tool/wrench(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/device/healthanalyzer(src) - src.modules += new /obj/item/robot/stun(src) - src.emag = new /obj/item/weapon/energy/sword(src) - return /obj/item/circuitboard/robot_module/surgeon name = "surgeon robot module" - stacktypes = list( - /obj/item/stack/medical/advanced/bruise_pack = 5, - /obj/item/stack/nanopaste = 5, - ) - -/obj/item/circuitboard/robot_module/surgeon/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/device/healthanalyzer(src) - src.modules += new /obj/item/reagent_container/borghypo(src) - src.modules += new /obj/item/tool/surgery/scalpel(src) - src.modules += new /obj/item/tool/surgery/hemostat(src) - src.modules += new /obj/item/tool/surgery/retractor(src) - src.modules += new /obj/item/tool/surgery/cautery(src) - src.modules += new /obj/item/tool/surgery/bonegel(src) - src.modules += new /obj/item/tool/surgery/FixOVein(src) - src.modules += new /obj/item/tool/surgery/bonesetter(src) - src.modules += new /obj/item/tool/surgery/circular_saw(src) - src.modules += new /obj/item/tool/surgery/surgicaldrill(src) - src.modules += new /obj/item/tool/extinguisher/mini(src) - src.modules += new /obj/item/stack/medical/advanced/bruise_pack(src) - src.modules += new /obj/item/stack/nanopaste(src) - src.modules += new /obj/item/tool/weldingtool/largetank(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/robot/stun(src) - - src.emag = new /obj/item/reagent_container/spray(src) - - src.emag.reagents.add_reagent("pacid", 250) - src.emag.name = "Polyacid spray" - -/obj/item/circuitboard/robot_module/surgeon/respawn_consumable(mob/living/silicon/robot/R) - if(src.emag) - var/obj/item/reagent_container/spray/PS = src.emag - PS.reagents.add_reagent("pacid", 2) - ..() - /obj/item/circuitboard/robot_module/medic name = "medic robot module" - stacktypes = list( - /obj/item/stack/medical/ointment = 15, - /obj/item/stack/medical/advanced/bruise_pack = 15, - /obj/item/stack/medical/splint = 15, - ) - -/obj/item/circuitboard/robot_module/medic/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/robot/sight/hud/med(src) - src.modules += new /obj/item/device/healthanalyzer(src) - src.modules += new /obj/item/device/reagent_scanner/adv(src) - src.modules += new /obj/item/roller_holder(src) - src.modules += new /obj/item/stack/medical/ointment(src) - src.modules += new /obj/item/stack/medical/advanced/bruise_pack(src) - src.modules += new /obj/item/stack/medical/splint(src) - src.modules += new /obj/item/reagent_container/borghypo(src) - src.modules += new /obj/item/reagent_container/glass/beaker/large(src) - src.modules += new /obj/item/reagent_container/robodropper(src) - src.modules += new /obj/item/reagent_container/syringe(src) - src.modules += new /obj/item/tool/extinguisher/mini(src) - src.modules += new /obj/item/reagent_container/spray/cleaner(src) - src.modules += new /obj/item/tool/weldingtool/largetank(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/robot/stun(src) - - src.emag = new /obj/item/reagent_container/spray(src) - - src.emag.reagents.add_reagent("pacid", 250) - src.emag.name = "Polyacid spray" - -/obj/item/circuitboard/robot_module/medic/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/reagent_container/syringe/S = locate() in src.modules - if(S.mode == 2) - S.reagents.clear_reagents() - S.mode = initial(S.mode) - S.desc = initial(S.desc) - S.update_icon() - - var/obj/item/reagent_container/spray/cleaner/C = locate() in src.modules - C.reagents.add_reagent("cleaner", C.volume) - - if(src.emag) - var/obj/item/reagent_container/spray/PS = src.emag - PS.reagents.add_reagent("pacid", 2) - - ..() - /obj/item/circuitboard/robot_module/engineering name = "engineering robot module" - - stacktypes = list( - /obj/item/stack/sheet/metal = 50, - /obj/item/stack/sheet/glass = 50, - /obj/item/stack/sheet/glass/reinforced = 50, - /obj/item/stack/cable_coil = 50, - /obj/item/stack/rods = 50, - /obj/item/stack/tile/plasteel = 20, - ) - -/obj/item/circuitboard/robot_module/engineering/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/robot/sight/meson(src) - src.modules += new /obj/item/tool/extinguisher(src) - src.modules += new /obj/item/device/rcd/borg(src) - src.modules += new /obj/item/tool/weldingtool/largetank(src) - src.modules += new /obj/item/tool/screwdriver(src) - src.modules += new /obj/item/tool/wrench(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/tool/wirecutters(src) - src.modules += new /obj/item/device/multitool(src) - src.modules += new /obj/item/device/t_scanner(src) - src.modules += new /obj/item/device/analyzer(src) - src.modules += new /obj/item/device/gripper(src) - src.modules += new /obj/item/device/matter_decompiler(src) - src.modules += new /obj/item/device/lightreplacer(src) - src.modules += new /obj/item/robot/stun(src) - - for(var/T in stacktypes) - var/obj/item/stack/sheet/W = new T(src) - W.amount = stacktypes[T] - src.modules += W - -/obj/item/circuitboard/robot_module/engineering/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/device/lightreplacer/L = locate() in src.modules - L.uses = L.max_uses - - ..() - -/obj/item/circuitboard/robot_module/security - name = "security robot module" - -/obj/item/circuitboard/robot_module/security/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/robot/sight/hud/sec(src) - src.modules += new /obj/item/handcuffs/cyborg(src) - src.modules += new /obj/item/robot/stun(src) - src.modules += new /obj/item/tool/crowbar(src) -// src.modules += new /obj/item/weapon/gun/energy/taser/cyborg(src) -// src.emag = new /obj/item/weapon/gun/energy/laser/cyborg(src) - -/obj/item/circuitboard/robot_module/security/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/device/flash/F = locate() in src.modules - if(F.broken) - F.broken = 0 - F.flashes_stored = F.max_flashes_stored - F.icon_state = "flash" - else if(F.flashes_stored > F.max_flashes_stored) - F.flashes_stored++ - // var/obj/item/weapon/gun/energy/taser/cyborg/T = locate() in src.modules - // if(T.power_supply.charge < T.power_supply.maxcharge) - // T.power_supply.give(T.charge_cost) - // T.update_icon() - // else - // T.charge_tick = 0 - /obj/item/circuitboard/robot_module/janitor name = "janitorial robot module" - -/obj/item/circuitboard/robot_module/janitor/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/tool/soap/nanotrasen(src) - src.modules += new /obj/item/storage/bag/trash(src) - src.modules += new /obj/item/tool/mop(src) - src.modules += new /obj/item/device/lightreplacer(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/robot/stun(src) - src.emag = new /obj/item/reagent_container/spray(src) - - src.emag.reagents.add_reagent("cleaner", 250) - src.emag.name = "space cleaner" - -/obj/item/circuitboard/robot_module/janitor/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/device/lightreplacer/LR = locate() in src.modules - LR.Charge(R) - if(src.emag) - var/obj/item/reagent_container/spray/S = src.emag - S.reagents.add_reagent("cleaner", 2) - /obj/item/circuitboard/robot_module/butler name = "service robot module" - -/obj/item/circuitboard/robot_module/butler/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/reagent_container/food/drinks/cans/beer(src) - src.modules += new /obj/item/reagent_container/food/condiment/enzyme(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/robot/stun(src) - - var/obj/item/device/rsf/M = new /obj/item/device/rsf(src) - M.stored_matter = 30 - src.modules += M - - src.modules += new /obj/item/reagent_container/robodropper(src) - - var/obj/item/tool/lighter/zippo/L = new /obj/item/tool/lighter/zippo(src) - L.heat_source = 1000 - src.modules += L - - src.modules += new /obj/item/reagent_container/food/drinks/shaker(src) - -/obj/item/circuitboard/robot_module/butler/add_languages(mob/living/silicon/robot/R) - //full set of languages - R.add_language(LANGUAGE_JAPANESE, 1) - -/obj/item/circuitboard/robot_module/butler/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/reagent_container/food/condiment/enzyme/E = locate() in src.modules - E.reagents.add_reagent("enzyme", 2) - if(src.emag) - var/obj/item/reagent_container/food/drinks/cans/beer/B = src.emag - B.reagents.add_reagent("beer2", 2) - -/obj/item/circuitboard/robot_module/syndicate - name = "syndicate robot module" - -/obj/item/circuitboard/robot_module/syndicate/Initialize() - . = ..() - src.modules += new /obj/item/device/flashlight(src) - src.modules += new /obj/item/device/flash(src) - src.modules += new /obj/item/weapon/energy/sword(src) - -/obj/item/circuitboard/robot_module/drone - name = "drone module" - stacktypes = list( - /obj/item/stack/sheet/wood = 1, - /obj/item/stack/sheet/mineral/plastic = 1, - /obj/item/stack/sheet/glass/reinforced = 5, - /obj/item/stack/tile/wood = 5, - /obj/item/stack/rods = 15, - /obj/item/stack/tile/plasteel = 15, - /obj/item/stack/sheet/metal = 20, - /obj/item/stack/sheet/glass = 20, - /obj/item/stack/cable_coil = 30, - ) - -/obj/item/circuitboard/robot_module/drone/Initialize() - . = ..() - src.modules += new /obj/item/tool/weldingtool(src) - src.modules += new /obj/item/tool/screwdriver(src) - src.modules += new /obj/item/tool/wrench(src) - src.modules += new /obj/item/tool/crowbar(src) - src.modules += new /obj/item/tool/wirecutters(src) - src.modules += new /obj/item/device/multitool(src) - src.modules += new /obj/item/device/lightreplacer(src) - src.modules += new /obj/item/device/gripper(src) - src.modules += new /obj/item/device/matter_decompiler(src) - src.modules += new /obj/item/reagent_container/spray/cleaner/drone(src) - - src.emag = new /obj/item/tool/pickaxe/plasmacutter(src) - src.emag.name = "Plasma Cutter" - - for(var/T in stacktypes) - var/obj/item/stack/sheet/W = new T(src) - W.amount = stacktypes[T] - src.modules += W - -/obj/item/circuitboard/robot_module/drone/add_languages(mob/living/silicon/robot/R) - return //not much ROM to spare in that tiny microprocessor! - -/obj/item/circuitboard/robot_module/drone/respawn_consumable(mob/living/silicon/robot/R) - var/obj/item/reagent_container/spray/cleaner/C = locate() in src.modules - C.reagents.add_reagent("cleaner", 3) - - var/obj/item/device/lightreplacer/LR = locate() in src.modules - LR.Charge(R) - - ..() - return - -//checks whether this item is a module of the robot it is located in. -/obj/item/proc/is_robot_module() - if (!isrobot(src.loc)) - return 0 - - var/mob/living/silicon/robot/R = src.loc - - return (src in R.module.modules) diff --git a/code/game/objects/items/devices/RCD.dm b/code/game/objects/items/devices/RCD.dm deleted file mode 100644 index 55965533c4..0000000000 --- a/code/game/objects/items/devices/RCD.dm +++ /dev/null @@ -1,208 +0,0 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:32 - -/* -CONTAINS: -RCD -*/ -/obj/item/device/rcd - name = "rapid-construction-device (RCD)" - desc = "A device used to rapidly build walls/floor." - icon = 'icons/obj/items/devices.dmi' - icon_state = "rcd" - opacity = FALSE - density = FALSE - anchored = FALSE - flags_atom = FPRINT|CONDUCT - force = 10 - throwforce = 10 - throw_speed = SPEED_FAST - throw_range = 5 - w_class = SIZE_MEDIUM - matter = list("metal" = 50000) - - var/datum/effect_system/spark_spread/spark_system - var/stored_matter = 0 - var/working = 0 - var/mode = 1 - var/canRwall = 0 - var/disabled = 0 - - -/obj/item/device/rcd/New() - desc = "A RCD. It currently holds [stored_matter]/30 matter-units." - src.spark_system = new /datum/effect_system/spark_spread - spark_system.set_up(5, 0, src) - spark_system.attach(src) - return - -/obj/item/device/rcd/Destroy() - QDEL_NULL(spark_system) - return ..() - - -/obj/item/device/rcd/attackby(obj/item/W, mob/user) - ..() - if(istype(W, /obj/item/ammo_rcd)) - if((stored_matter + 10) > 30) - to_chat(user, SPAN_NOTICE("The RCD cant hold any more matter-units.")) - return - user.drop_held_item() - qdel(W) - stored_matter += 10 - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - to_chat(user, SPAN_NOTICE("The RCD now holds [stored_matter]/30 matter-units.")) - desc = "A RCD. It currently holds [stored_matter]/30 matter-units." - return - - -/obj/item/device/rcd/attack_self(mob/user) - ..() - - //Change the mode - playsound(src.loc, 'sound/effects/pop.ogg', 15, 0) - switch(mode) - if(1) - mode = 2 - to_chat(user, SPAN_NOTICE("Changed mode to 'Airlock'")) - if(prob(20)) - src.spark_system.start() - return - if(2) - mode = 3 - to_chat(user, SPAN_NOTICE("Changed mode to 'Deconstruct'")) - if(prob(20)) - src.spark_system.start() - return - if(3) - mode = 1 - to_chat(user, SPAN_NOTICE("Changed mode to 'Floor & Walls'")) - if(prob(20)) - src.spark_system.start() - return - -/obj/item/device/rcd/proc/activate() - playsound(src.loc, 'sound/items/Deconstruct.ogg', 25, 1) - - -/obj/item/device/rcd/afterattack(atom/A, mob/user, proximity) - if(!proximity) return - if(disabled && !isrobot(user)) - return 0 - if(istype(A,/area/shuttle) || istype(A,/turf/open/space/transit)) - return 0 - if(!(istype(A, /turf) || istype(A, /obj/structure/machinery/door/airlock))) - return 0 - - switch(mode) - if(1) - if(istype(A, /turf/open/space)) - if(useResource(1, user)) - to_chat(user, "Building Floor...") - activate() - A:ChangeTurf(/turf/open/floor/plating/airless) - return 1 - return 0 - - if(istype(A, /turf/open/floor)) - if(checkResource(3, user)) - to_chat(user, "Building Wall ...") - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!useResource(3, user)) return 0 - activate() - A:ChangeTurf(/turf/closed/wall) - return 1 - return 0 - - if(2) - if(istype(A, /turf/open/floor)) - if(checkResource(10, user)) - to_chat(user, "Building Airlock...") - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - if(do_after(user, 50, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!useResource(10, user)) return 0 - activate() - var/obj/structure/machinery/door/airlock/T = new /obj/structure/machinery/door/airlock( A ) - T.autoclose = 1 - return 1 - return 0 - return 0 - - if(3) - if(istype(A, /turf/closed/wall)) - var/turf/closed/wall/WL = A - if(WL.hull) - return 0 - if(istype(A, /turf/closed/wall/r_wall) && !canRwall) - return 0 - if(checkResource(5, user)) - to_chat(user, "Deconstructing Wall...") - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - if(do_after(user, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!useResource(5, user)) return 0 - activate() - A:ChangeTurf(/turf/open/floor/plating/airless) - return 1 - return 0 - - if(istype(A, /turf/open/floor) && !istype(A, /turf/open/floor/plating)) - if(checkResource(5, user)) - to_chat(user, "Deconstructing Floor...") - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - if(do_after(user, 50, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!useResource(5, user)) return 0 - activate() - A:ChangeTurf(/turf/open/floor/plating/airless) - return 1 - return 0 - - if(istype(A, /obj/structure/machinery/door/airlock)) - if(checkResource(10, user)) - to_chat(user, "Deconstructing Airlock...") - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - if(do_after(user, 50, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - if(!useResource(10, user)) return 0 - activate() - qdel(A) - return 1 - return 0 - return 0 - else - to_chat(user, "ERROR: RCD in MODE: [mode] attempted use by [user]. Send this text #coderbus or an admin.") - return 0 - -/obj/item/device/rcd/proc/useResource(amount, mob/user) - if(stored_matter < amount) - return 0 - stored_matter -= amount - desc = "A RCD. It currently holds [stored_matter]/30 matter-units." - return 1 - -/obj/item/device/rcd/proc/checkResource(amount, mob/user) - return stored_matter >= amount -/obj/item/device/rcd/borg/useResource(amount, mob/user) - if(!isrobot(user)) - return 0 - return user:cell:use(amount * 30) - -/obj/item/device/rcd/borg/checkResource(amount, mob/user) - if(!isrobot(user)) - return 0 - return user:cell:charge >= (amount * 30) - -/obj/item/device/rcd/borg/New() - ..() - desc = "A device used to rapidly build walls/floor." - canRwall = 1 - -/obj/item/ammo_rcd - name = "compressed matter cartridge" - desc = "Highly compressed matter for the RCD." - icon = 'icons/obj/items/weapons/guns/legacy/old_bayguns.dmi' - icon_state = "rcd" - item_state = "rcdammo" - opacity = FALSE - density = FALSE - anchored = FALSE - - matter = list("metal" = 30000,"glass" = 15000) diff --git a/code/game/objects/items/devices/RSF.dm b/code/game/objects/items/devices/RSF.dm deleted file mode 100644 index ac87cd6dfc..0000000000 --- a/code/game/objects/items/devices/RSF.dm +++ /dev/null @@ -1,115 +0,0 @@ -/* -CONTAINS: -RSF - -*/ - -/obj/item/device/rsf - name = "\improper Rapid-Service-Fabricator" - desc = "A device used to rapidly deploy service items." - icon = 'icons/obj/items/devices.dmi' - icon_state = "rcd" - opacity = FALSE - density = FALSE - anchored = FALSE - var/stored_matter = 30 - var/mode = 1 - w_class = SIZE_MEDIUM - -/obj/item/device/rsf/get_examine_text(mob/user) - . = ..() - . += "It currently holds [stored_matter]/30 fabrication-units." - -/obj/item/device/rsf/attackby(obj/item/W, mob/user) - ..() - if (istype(W, /obj/item/ammo_rcd)) - - if ((stored_matter + 10) > 30) - to_chat(user, "The RSF can't hold any more matter.") - return - - qdel(W) - - stored_matter += 10 - playsound(src.loc, 'sound/machines/click.ogg', 15, 1) - to_chat(user, "The RSF now holds [stored_matter]/30 fabrication-units.") - return - -/obj/item/device/rsf/attack_self(mob/user) - ..() - playsound(src.loc, 'sound/effects/pop.ogg', 15, 0) - if (mode == 1) - mode = 2 - to_chat(user, "Changed dispensing mode to 'Drinking Glass'") - return - if (mode == 2) - mode = 3 - to_chat(user, "Changed dispensing mode to 'Paper'") - return - if (mode == 3) - mode = 4 - to_chat(user, "Changed dispensing mode to 'Pen'") - return - if (mode == 4) - mode = 5 - to_chat(user, "Changed dispensing mode to 'Dice Pack'") - return - if (mode == 5) - mode = 6 - to_chat(user, "Changed dispensing mode to 'Cigarette'") - return - if (mode == 6) - mode = 1 - to_chat(user, "Changed dispensing mode to 'Dosh'") - return - // Change mode - -/obj/item/device/rsf/afterattack(atom/A, mob/user, proximity) - - if(!proximity) return - - if(istype(user,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/R = user - if(R.stat || !R.cell || R.cell.charge <= 0) - return - else - if(stored_matter <= 0) - return - - if(!istype(A, /obj/structure/surface/table) && !istype(A, /turf/open/floor)) - return - - playsound(src.loc, 'sound/machines/click.ogg', 25, 1) - var/used_energy = 0 - var/obj/product - - switch(mode) - if(1) - product = new /obj/item/spacecash/c10() - used_energy = 200 - if(2) - product = new /obj/item/reagent_container/food/drinks/drinkingglass() - used_energy = 50 - if(3) - product = new /obj/item/paper() - used_energy = 10 - if(4) - product = new /obj/item/tool/pen() - used_energy = 50 - if(5) - product = new /obj/item/storage/pill_bottle/dice() - used_energy = 200 - if(6) - product = new /obj/item/clothing/mask/cigarette() - used_energy = 10 - - to_chat(user, "Dispensing [product ? product : "product"]...") - product.forceMove(get_turf(A)) - - if(isrobot(user)) - var/mob/living/silicon/robot/R = user - if(R.cell) - R.cell.use(used_energy) - else - stored_matter-- - to_chat(user, "The RSF now holds [stored_matter]/30 fabrication-units.") diff --git a/code/game/objects/items/devices/RSP.dm b/code/game/objects/items/devices/RSP.dm deleted file mode 100644 index cb61de1a77..0000000000 --- a/code/game/objects/items/devices/RSP.dm +++ /dev/null @@ -1,11 +0,0 @@ -/obj/item/device/rsp - name = "\improper Rapid-Seed-Producer (RSP)" - desc = "A device used to rapidly deploy seeds." - icon = 'icons/obj/items/devices.dmi' - icon_state = "rsp" - opacity = FALSE - density = FALSE - anchored = FALSE - var/stored_matter = 0 - var/mode = 1 - w_class = SIZE_MEDIUM diff --git a/code/game/objects/items/devices/aicard.dm b/code/game/objects/items/devices/aicard.dm index 6dad79e4af..cc36eb9be0 100644 --- a/code/game/objects/items/devices/aicard.dm +++ b/code/game/objects/items/devices/aicard.dm @@ -6,103 +6,3 @@ w_class = SIZE_SMALL flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_WAIST - var/flush = null - - - -/obj/item/device/aicard/attack(mob/living/silicon/ai/M as mob, mob/user as mob) - if(!isAI(M))//If target is not an AI. - return ..() - - M.attack_log += text("\[[time_stamp()]\] Has been carded with [src.name] by [user.name] ([user.ckey])") - M.last_damage_data = create_cause_data(initial(name), user) - user.attack_log += text("\[[time_stamp()]\] Used the [src.name] to card [M.name] ([M.ckey])") - msg_admin_attack("[user.name] ([user.ckey]) used the [src.name] to card [M.name] ([M.ckey]) in [get_area(user)] ([user.x],[user.y],[user.z]).", user.x, user.y, user.z) - - transfer_ai("AICORE", "AICARD", M, user) - return - -/obj/item/device/aicard/attack(mob/living/silicon/decoy/M as mob, mob/user as mob) - if (!istype (M, /mob/living/silicon/decoy)) - return ..() - else - M.death() - to_chat(user, "ERROR ERROR ERROR") - -/obj/item/device/aicard/attack_self(mob/user) - ..() - - if (!in_range(src, user)) - return - - user.set_interaction(src) - var/dat = "Intelicard
    " - for(var/mob/living/silicon/ai/A in src) - dat += "Stored AI: [A.name]
    System integrity: [(A.health+100)/2]%
    " - - if (A.stat == 2) - dat += "AI nonfunctional" - else - if (!src.flush) - dat += {"Wipe AI"} - else - dat += "Wipe in progress" - dat += "
    " - dat += {"[A.control_disabled ? "Enable" : "Disable"] Wireless Activity"} - dat += "
    " - dat += "Subspace Transceiver is: [A.aiRadio.disabledAi ? "Disabled" : "Enabled"]" - dat += "
    " - dat += {"[A.aiRadio.disabledAi ? "Enable" : "Disable"] Subspace Transceiver"} - dat += "
    " - dat += {" Close"} - user << browse(dat, "window=aicard") - onclose(user, "aicard") - return - -/obj/item/device/aicard/Topic(href, href_list) - . = ..() - if(.) - return - var/mob/U = usr - if (!in_range(src, U)||U.interactee!=src)//If they are not in range of 1 or less or their machine is not the card (ie, clicked on something else). - close_browser(U, "aicard") - U.unset_interaction() - return - - add_fingerprint(U) - U.set_interaction(src) - - switch(href_list["choice"])//Now we switch based on choice. - if ("Close") - close_browser(U, "aicard") - U.unset_interaction() - return - - if ("Radio") - for(var/mob/living/silicon/ai/A in src) - A.aiRadio.disabledAi = !A.aiRadio.disabledAi - if ("Wipe") - var/confirm = alert("Are you sure you want to wipe this card's memory? This cannot be undone once started.", "Confirm Wipe", "Yes", "No") - if(confirm == "Yes") - if(QDELETED(src)||!in_range(src, U)||U.interactee!=src) - close_browser(U, "aicard") - U.unset_interaction() - return - else - flush = 1 - for(var/mob/living/silicon/ai/A in src) - to_chat(A, "Your core files are being wiped!") - while (A.stat != 2) - A.apply_damage(2, OXY) - A.updatehealth() - sleep(10) - flush = 0 - - if ("Wireless") - for(var/mob/living/silicon/ai/A in src) - A.control_disabled = !A.control_disabled - if (A.control_disabled) - overlays -= image('icons/obj/items/robot_component.dmi', "aicard-on") - else - overlays += image('icons/obj/items/robot_component.dmi', "aicard-on") - attack_self(U) diff --git a/code/game/objects/items/devices/autopsy_scanner.dm b/code/game/objects/items/devices/autopsy_scanner.dm index 8aa2053fee..581336f853 100644 --- a/code/game/objects/items/devices/autopsy_scanner.dm +++ b/code/game/objects/items/devices/autopsy_scanner.dm @@ -17,12 +17,12 @@ /obj/item/device/autopsy_scanner/Initialize() . = ..() - LAZYADD(objects_of_interest, src) + LAZYADD(GLOB.objects_of_interest, src) /obj/item/device/autopsy_scanner/Destroy() . = ..() - LAZYREMOVE(objects_of_interest, src) + LAZYREMOVE(GLOB.objects_of_interest, src) /datum/autopsy_data_scanner var/weapon = null // this is the DEFINITE weapon type that was used @@ -46,7 +46,7 @@ return W /obj/item/device/autopsy_scanner/proc/add_data(obj/limb/O) - if(!O.autopsy_data.len && !O.trace_chemicals.len) return + if(!length(O.autopsy_data) && !length(O.trace_chemicals)) return for(var/V in O.autopsy_data) var/datum/autopsy_data/W = O.autopsy_data[V] @@ -90,7 +90,7 @@ var/scan_data = "" if(timeofdeath) - scan_data += "Time of death: [worldtime2text("hh:mm", timeofdeath)] [time2text(timeofdeath, "DDD MMM DD [game_year]")]

    " + scan_data += "Time of death: [worldtime2text("hh:mm", timeofdeath)] [time2text(timeofdeath, "DDD MMM DD [GLOB.game_year]")]

    " var/n = 1 for(var/wdata_idx in wdata) @@ -133,13 +133,13 @@ if(30 to 1000) damage_desc = "severe" - if(!total_score) total_score = D.organs_scanned.len + if(!total_score) total_score = length(D.organs_scanned) scan_data += "Weapon #[n]
    " if(damaging_weapon) scan_data += "Severity: [damage_desc]
    " scan_data += "Hits by weapon: [total_hits]
    " - scan_data += "Approximate time of wound infliction: [worldtime2text("hh:mm", age)] [time2text(age, "DDD MMM DD [game_year]")]
    " + scan_data += "Approximate time of wound infliction: [worldtime2text("hh:mm", age)] [time2text(age, "DDD MMM DD [GLOB.game_year]")]
    " scan_data += "Affected limbs: [D.organ_names]
    " scan_data += "Possible weapons:
    " for(var/weapon_name in weapon_chances) @@ -149,7 +149,7 @@ n++ - if(chemtraces.len) + if(length(chemtraces)) scan_data += "Trace Chemicals:
    " for(var/chemID in chemtraces) scan_data += chemID diff --git a/code/game/objects/items/devices/binoculars.dm b/code/game/objects/items/devices/binoculars.dm index f8cf524731..3248115adf 100644 --- a/code/game/objects/items/devices/binoculars.dm +++ b/code/game/objects/items/devices/binoculars.dm @@ -123,7 +123,7 @@ to_chat(user, SPAN_WARNING("INVALID TARGET: target must be on the surface.")) return FALSE if(user.sight & SEE_TURFS) - var/list/turf/path = getline2(user, targeted_atom, include_from_atom = FALSE) + var/list/turf/path = get_line(user, targeted_atom, include_start_atom = FALSE) for(var/turf/T in path) if(T.opacity) to_chat(user, SPAN_WARNING("There is something in the way of the laser!")) @@ -215,7 +215,7 @@ /obj/item/device/binoculars/range/designator/Initialize() . = ..() - tracking_id = ++cas_tracking_id_increment + tracking_id = ++GLOB.cas_tracking_id_increment /obj/item/device/binoculars/range/designator/Destroy() QDEL_NULL(laser) @@ -354,13 +354,16 @@ /obj/item/device/binoculars/range/designator/scout name = "scout laser designator" desc = "An improved laser designator, issued to USCM scouts, with two modes: target marking for CAS with IR laser and rangefinding. Ctrl + Click turf to target something. Ctrl + Click designator to stop lasing. Alt + Click designator to switch modes." + unacidable = TRUE + indestructible = TRUE cooldown_duration = 80 target_acquisition_delay = 30 /obj/item/device/binoculars/range/designator/spotter name = "spotter's laser designator" desc = "A specially-designed laser designator, issued to USCM spotters, with two modes: target marking for CAS with IR laser and rangefinding. Ctrl + Click turf to target something. Ctrl + Click designator to stop lasing. Alt + Click designator to switch modes. Additionally, a trained spotter can laze targets for a USCM marksman, increasing the speed of target acquisition. A targeting beam will connect the binoculars to the target, but it may inherit the user's cloak, if possible." - + unacidable = TRUE + indestructible = TRUE var/is_spotting = FALSE var/spotting_time = 10 SECONDS var/spotting_cooldown_delay = 5 SECONDS @@ -400,6 +403,7 @@ COOLDOWN_START(designator, spotting_cooldown, 0) /datum/action/item_action/specialist/spotter_target/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/human = owner @@ -445,7 +449,7 @@ human.face_atom(target) ///Add a decisecond to the default 1.5 seconds for each two tiles to hit. - var/distance = round(get_dist(target, human) * 0.5) + var/distance = floor(get_dist(target, human) * 0.5) var/f_spotting_time = designator.spotting_time + distance designator.is_spotting = TRUE diff --git a/code/game/objects/items/devices/camera_bug.dm b/code/game/objects/items/devices/camera_bug.dm deleted file mode 100644 index 80a0d60328..0000000000 --- a/code/game/objects/items/devices/camera_bug.dm +++ /dev/null @@ -1,34 +0,0 @@ -/obj/item/device/camera_bug - name = "camera bug" - icon_state = "flash" - w_class = SIZE_TINY - item_state = "electronic" - throw_speed = SPEED_VERY_FAST - throw_range = 20 - -/obj/item/device/camera_bug/attack_self(mob/usr as mob) - ..() - - var/list/cameras = new/list() - for (var/obj/structure/machinery/camera/C in cameranet.cameras) - if (C.bugged && C.status) - cameras.Add(C) - if (length(cameras) == 0) - to_chat(usr, SPAN_DANGER("No bugged functioning cameras found.")) - return - - var/list/friendly_cameras = new/list() - - for (var/obj/structure/machinery/camera/C in cameras) - friendly_cameras.Add(C.c_tag) - - var/target = tgui_input_list(usr, "Select the camera to observe", "Camera to Observe", friendly_cameras) - if (!target) - return - for (var/obj/structure/machinery/camera/C in cameras) - if (C.c_tag == target) - target = C - break - if (usr.stat == 2) return - - usr.client.eye = target diff --git a/code/game/objects/items/devices/cictablet.dm b/code/game/objects/items/devices/cictablet.dm index 69e745da08..8c07c71a21 100644 --- a/code/game/objects/items/devices/cictablet.dm +++ b/code/game/objects/items/devices/cictablet.dm @@ -43,10 +43,11 @@ add_pmcs = FALSE UnregisterSignal(SSdcs, COMSIG_GLOB_MODE_PRESETUP) -/obj/item/device/cotablet/attack_self(mob/user as mob) +/obj/item/device/cotablet/attack_self(mob/living/carbon/human/user as mob) ..() - if(src.allowed(user)) + var/obj/item/card/id/card = user.get_idcard() + if(allowed(user) && card?.check_biometrics(user)) tgui_interact(user) else to_chat(user, SPAN_DANGER("Access denied.")) @@ -63,7 +64,7 @@ /obj/item/device/cotablet/ui_data(mob/user) var/list/data = list() - data["alert_level"] = security_level + data["alert_level"] = GLOB.security_level data["evac_status"] = SShijack.evac_status data["endtime"] = announcement_cooldown data["distresstime"] = distress_cooldown @@ -91,79 +92,79 @@ . = ..() if(.) return - + var/mob/user = ui.user switch(action) if("announce") - if(usr.client.prefs.muted & MUTE_IC) - to_chat(usr, SPAN_DANGER("You cannot send Announcements (muted).")) + if(user.client.prefs.muted & MUTE_IC) + to_chat(user, SPAN_DANGER("You cannot send Announcements (muted).")) return if(!COOLDOWN_FINISHED(src, announcement_cooldown)) - to_chat(usr, SPAN_WARNING("Please wait [COOLDOWN_TIMELEFT(src, announcement_cooldown)/10] second\s before making your next announcement.")) + to_chat(user, SPAN_WARNING("Please wait [COOLDOWN_TIMELEFT(src, announcement_cooldown)/10] second\s before making your next announcement.")) return FALSE - var/input = stripped_multiline_input(usr, "Please write a message to announce to the [MAIN_SHIP_NAME]'s crew and all groundside personnel.", "Priority Announcement", "") - if(!input || !COOLDOWN_FINISHED(src, announcement_cooldown) || !(usr in view(1, src))) + var/input = stripped_multiline_input(user, "Please write a message to announce to the [MAIN_SHIP_NAME]'s crew and all groundside personnel.", "Priority Announcement", "") + if(!input || !COOLDOWN_FINISHED(src, announcement_cooldown) || !(user in dview(1, src))) return FALSE var/signed = null - if(ishuman(usr)) - var/mob/living/carbon/human/H = usr - var/obj/item/card/id/id = H.wear_id - if(istype(id)) - var/paygrade = get_paygrades(id.paygrade, FALSE, H.gender) + if(ishuman(user)) + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/id = human_user.get_idcard() + if(id) + var/paygrade = get_paygrades(id.paygrade, FALSE, human_user.gender) signed = "[paygrade] [id.registered_name]" marine_announcement(input, announcement_title, faction_to_display = announcement_faction, add_PMCs = add_pmcs, signature = signed) - message_admins("[key_name(usr)] has made a command announcement.") - log_announcement("[key_name(usr)] has announced the following: [input]") + message_admins("[key_name(user)] has made a command announcement.") + log_announcement("[key_name(user)] has announced the following: [input]") COOLDOWN_START(src, announcement_cooldown, cooldown_between_messages) . = TRUE if("award") if(announcement_faction != FACTION_MARINE) return - print_medal(usr, src) + open_medal_panel(user, src) . = TRUE if("mapview") - tacmap.tgui_interact(usr) + tacmap.tgui_interact(user) . = TRUE if("evacuation_start") if(announcement_faction != FACTION_MARINE) return - if(security_level < SEC_LEVEL_RED) - to_chat(usr, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) + if(GLOB.security_level < SEC_LEVEL_RED) + to_chat(user, SPAN_WARNING("The ship must be under red alert in order to enact evacuation procedures.")) return FALSE if(SShijack.evac_admin_denied) - to_chat(usr, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) + to_chat(user, SPAN_WARNING("The USCM has placed a lock on deploying the evacuation pods.")) return FALSE if(!SShijack.initiate_evacuation()) - to_chat(usr, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) + to_chat(user, SPAN_WARNING("You are unable to initiate an evacuation procedure right now!")) return FALSE - log_game("[key_name(usr)] has called for an emergency evacuation.") - message_admins("[key_name_admin(usr)] has called for an emergency evacuation.") - log_ares_security("Initiate Evacuation", "[usr] has called for an emergency evacuation.") + log_game("[key_name(user)] has called for an emergency evacuation.") + message_admins("[key_name_admin(user)] has called for an emergency evacuation.") + log_ares_security("Initiate Evacuation", "Called for an emergency evacuation.", user) . = TRUE if("distress") if(!SSticker.mode) return FALSE //Not a game mode? - if(security_level == SEC_LEVEL_DELTA) - to_chat(usr, SPAN_WARNING("The ship is already undergoing self destruct procedures!")) + if(GLOB.security_level == SEC_LEVEL_DELTA) + to_chat(user, SPAN_WARNING("The ship is already undergoing self destruct procedures!")) return FALSE for(var/client/C in GLOB.admins) if((R_ADMIN|R_MOD) & C.admin_holder.rights) playsound_client(C,'sound/effects/sos-morse-code.ogg',10) - SSticker.mode.request_ert(usr) - to_chat(usr, SPAN_NOTICE("A distress beacon request has been sent to USCM Central Command.")) + SSticker.mode.request_ert(user) + to_chat(user, SPAN_NOTICE("A distress beacon request has been sent to USCM Central Command.")) COOLDOWN_START(src, distress_cooldown, COOLDOWN_COMM_REQUEST) return TRUE @@ -176,3 +177,15 @@ announcement_faction = FACTION_PMC minimap_type = MINIMAP_FLAG_PMC + +/obj/item/device/cotablet/upp + + desc = "A special device used by field UPP commanders." + + tablet_name = "UPP Field Commander's Tablet" + + announcement_title = UPP_COMMAND_ANNOUNCE + announcement_faction = FACTION_UPP + req_access = list(ACCESS_UPP_LEADERSHIP) + + minimap_type = MINIMAP_FLAG_UPP diff --git a/code/game/objects/items/devices/cloaking.dm b/code/game/objects/items/devices/cloaking.dm index 05e7786744..b0c5ed7999 100644 --- a/code/game/objects/items/devices/cloaking.dm +++ b/code/game/objects/items/devices/cloaking.dm @@ -47,12 +47,12 @@ src.add_fingerprint(user) if(chameleon_on) user.alpha = 25 - to_chat(user, SPAN_NOTICE("You activate the [src].")) + to_chat(user, SPAN_NOTICE("You activate [src].")) spark_system.start() src.icon_state = "shield1" else user.alpha = initial(user.alpha) - to_chat(user, SPAN_NOTICE("You deactivate the [src].")) + to_chat(user, SPAN_NOTICE("You deactivate [src].")) src.icon_state = "shield0" spark_system.start() diff --git a/code/game/objects/items/devices/clue_scanner.dm b/code/game/objects/items/devices/clue_scanner.dm index d6b6d0d80a..dced788abe 100644 --- a/code/game/objects/items/devices/clue_scanner.dm +++ b/code/game/objects/items/devices/clue_scanner.dm @@ -1,6 +1,6 @@ /obj/item/device/clue_scanner name = "forensic scanner" - desc = "A modern handheld scanner to gather fingerprints. Guaranteed increase of effectivity and almost perfect accuracy of results. DISCLAIMER: Incorrect results are not covered by insurance." + desc = "A modern handheld scanner to gather fingerprints. Must be analyzed at a security records terminal after prints are gathered." icon_state = "forensic1" w_class = SIZE_MEDIUM item_state = "electronic" @@ -52,4 +52,4 @@ if(!newlyfound) to_chat(user, SPAN_INFO("No new print sets found!")) else - to_chat(user, SPAN_INFO("New print sets found: [newlyfound], total stored amount: [print_list.len]")) + to_chat(user, SPAN_INFO("New print sets found: [newlyfound], total stored amount: [length(print_list)]")) diff --git a/code/game/objects/items/devices/coins.dm b/code/game/objects/items/devices/coins.dm index 139ea1cbac..6c00364642 100644 --- a/code/game/objects/items/devices/coins.dm +++ b/code/game/objects/items/devices/coins.dm @@ -67,12 +67,6 @@ icon_state = "coin_platinum" black_market_value = 35 -/obj/item/coin/marine/synth - name = "synthetic experimental tool redemption token" - desc = "Insert this into a synthetic experimental tools vendor in order to access a variety of experimental support tools." - icon_state = "coin_synth" - black_market_value = 0 - /obj/item/coin/chitin name = "chitin coin" desc = "Durable alien chitin pressed into a coin. There are much better uses for chitin..." @@ -121,3 +115,33 @@ comment = "heads" user.visible_message(SPAN_NOTICE("[user] has thrown \the [src]. It lands on [comment]! "), \ SPAN_NOTICE("You throw \the [src]. It lands on [comment]! ")) + + +/obj/item/coin/marine + name = "marine equipment token" + desc = "I wonder what it does?" + icon_state = "coin_copper" + black_market_value = 0 + /// What is the token for? + var/token_type = VEND_TOKEN_VOID + +/obj/item/coin/marine/attackby(obj/item/W as obj, mob/user as mob) //To remove attaching a string functionality + return + +/obj/item/coin/marine/engineer + name = "marine engineer support token" + desc = "Insert this into an engineer vendor in order to access a support weapon." + icon_state = "coin_gold" + token_type = VEND_TOKEN_ENGINEER + +/obj/item/coin/marine/specialist + name = "marine specialist weapon token" + desc = "Insert this into a USCM equipment vendor in order to access a single highly dangerous weapon." + icon_state = "coin_diamond" + token_type = VEND_TOKEN_SPEC + +/obj/item/coin/marine/synth + name = "synthetic experimental tool redemption token" + desc = "Insert this into a synthetic experimental tools vendor in order to access a variety of experimental support tools." + icon_state = "coin_synth" + token_type = VEND_TOKEN_SYNTH diff --git a/code/game/objects/items/devices/data_detector.dm b/code/game/objects/items/devices/data_detector.dm index fdf3efd42b..57b348718a 100644 --- a/code/game/objects/items/devices/data_detector.dm +++ b/code/game/objects/items/devices/data_detector.dm @@ -5,7 +5,6 @@ item_state = "data_detector" blip_type = "data" var/objects_to_detect = list() - var/detect_empty_vial_boxes = FALSE /obj/item/device/motiondetector/intel/get_help_text() . = "Green indicators on your HUD will show the location of intelligence objects detected by the scanner. Has two modes: slow long-range [SPAN_HELPFUL("(14 tiles)")] and fast short-range [SPAN_HELPFUL("(7 tiles)")]." @@ -31,22 +30,21 @@ var/detected for(var/DT in objects_to_detect) if(istype(I, DT)) - if(!detect_empty_vial_boxes && istype(I, /obj/item/storage/fancy/vials/random)) - if(!I.contents) - continue + if(istype(I, /obj/item/storage/fancy/vials/random) && !length(I.contents)) + break //We don't need to ping already looted containers + if(istype(I, /obj/item/reagent_container/glass/beaker/vial/random) && !I.reagents?.total_volume) + break //We don't need to ping already looted containers detected = TRUE if(I.contents) for(var/obj/item/CI in I.contents) if(istype(CI, DT)) - if(!detect_empty_vial_boxes && istype(I, /obj/item/storage/fancy/vials/random)) - if(!I.contents) - continue + if(istype(CI, /obj/item/storage/fancy/vials/random) && !length(CI.contents)) + break + if(istype(CI, /obj/item/reagent_container/glass/beaker/vial/random) && !CI.reagents?.total_volume) + break detected = TRUE - break if(human_user && detected) show_blip(human_user, I) - if(detected) - break if(detected) detected_sound = TRUE @@ -60,17 +58,15 @@ if(M == loc) continue //device user isn't detected if((isxeno(M) || isyautja(M)) && M.stat == DEAD ) detected = TRUE - else if(ishuman(M) && M.stat == DEAD && M.contents.len) + else if(ishuman(M) && M.stat == DEAD && length(M.contents)) for(var/obj/I in M.contents_twice()) for(var/DT in objects_to_detect) if(istype(I, DT)) - if(!detect_empty_vial_boxes && istype(I, /obj/item/storage/fancy/vials/random)) - if(!I.contents) - continue + if(istype(I, /obj/item/storage/fancy/vials/random) && !length(I.contents)) + break + if(istype(I, /obj/item/reagent_container/glass/beaker/vial/random) && !I.reagents?.total_volume) + break detected = TRUE - break - if(detected) - break if(human_user && detected) show_blip(human_user, M) diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 30d0467a9b..0497a75e6f 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -50,7 +50,7 @@ icon_state += "_out" if(dcell && dcell.charge) - switch(round(dcell.charge * 100 / dcell.maxcharge)) + switch(floor(dcell.charge * 100 / dcell.maxcharge)) if(67 to INFINITY) overlays += "+full" if(34 to 66) @@ -66,8 +66,8 @@ . = ..() var/maxuses = 0 var/currentuses = 0 - maxuses = round(dcell.maxcharge / charge_cost) - currentuses = round(dcell.charge / charge_cost) + maxuses = floor(dcell.maxcharge / charge_cost) + currentuses = floor(dcell.charge / charge_cost) . += SPAN_INFO("It has [currentuses] out of [maxuses] uses left in its internal battery.") if(MODE_HAS_TOGGLEABLE_FLAG(MODE_STRONG_DEFIBS) || !blocked_by_suit) . += SPAN_NOTICE("This defibrillator will ignore worn armor.") @@ -108,13 +108,13 @@ if(ghost && (!check_client || ghost.client) && (!check_can_reenter || ghost.can_reenter_corpse)) return ghost -/mob/living/carbon/human/proc/is_revivable() +/mob/living/carbon/human/proc/is_revivable(ignore_heart = FALSE) if(isnull(internal_organs_by_name) || isnull(internal_organs_by_name["heart"])) return FALSE var/datum/internal_organ/heart/heart = internal_organs_by_name["heart"] var/obj/limb/head = get_limb("head") - if(chestburst || !head || head.status & LIMB_DESTROYED || !heart || heart.organ_status >= ORGAN_BROKEN || !has_brain() || status_flags & PERMANENTLY_DEAD) + if(chestburst || !head || head.status & LIMB_DESTROYED || !ignore_heart && (!heart || heart.organ_status >= ORGAN_BROKEN) || !has_brain() || status_flags & PERMANENTLY_DEAD) return FALSE return TRUE @@ -166,7 +166,7 @@ var/mob/dead/observer/G = H.get_ghost() if(istype(G) && G.client) - playsound_client(G.client, 'sound/effects/adminhelp_new.ogg') + playsound_client(G.client, 'sound/effects/revive_notify.ogg') to_chat(G, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Someone is trying to revive your body. Return to it if you want to be resurrected! \ (Verbs -> Ghost -> Re-enter corpse, or click here!)"))) @@ -175,7 +175,7 @@ playsound(get_turf(src),'sound/items/defib_charge.ogg', 25, 0) //Do NOT vary this tune, it needs to be precisely 7 seconds //Taking square root not to make defibs too fast... - if(!do_after(user, 7 SECONDS * user.get_skill_duration_multiplier(SKILL_MEDICAL), INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_FRIENDLY, H, INTERRUPT_MOVED, BUSY_ICON_MEDICAL)) + if(!do_after(user, (4 + (3 * user.get_skill_duration_multiplier(SKILL_MEDICAL))) SECONDS, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_FRIENDLY, H, INTERRUPT_MOVED, BUSY_ICON_MEDICAL)) user.visible_message(SPAN_WARNING("[user] stops setting up the paddles on [H]'s chest."), \ SPAN_WARNING("You stop setting up the paddles on [H]'s chest.")) return @@ -194,18 +194,15 @@ shock_cooldown = world.time + 10 //1 second cooldown before you can shock again var/datum/internal_organ/heart/heart = H.internal_organs_by_name["heart"] - /// Has the defib already caused the chance of heart damage, to not potentially double up later - var/heart_already_damaged = FALSE - if(heart && prob(25)) - heart.take_damage(rand(min_heart_damage_dealt, max_heart_damage_dealt), TRUE) // Make death and revival leave lasting consequences - heart_already_damaged = TRUE if(!H.is_revivable()) playsound(get_turf(src), 'sound/items/defib_failed.ogg', 25, 0) if(heart && heart.organ_status >= ORGAN_BROKEN) user.visible_message(SPAN_WARNING("[icon2html(src, viewers(src))] \The [src] buzzes: Defibrillation failed. Patient's heart is too damaged. Immediate surgery is advised.")) + msg_admin_niche("[key_name_admin(user)] failed an attempt to revive [key_name_admin(H)] with [src] because of heart damage.") return user.visible_message(SPAN_WARNING("[icon2html(src, viewers(src))] \The [src] buzzes: Defibrillation failed. Patient's general condition does not allow reviving.")) + msg_admin_niche("[key_name_admin(user)] failed an attempt to revive [key_name_admin(H)] with [src].") return if(!H.client) //Freak case, no client at all. This is a braindead mob (like a colonist) @@ -232,11 +229,12 @@ break if(H.health > HEALTH_THRESHOLD_DEAD) user.visible_message(SPAN_NOTICE("[icon2html(src, viewers(src))] \The [src] beeps: Defibrillation successful.")) + msg_admin_niche("[key_name_admin(user)] successfully revived [key_name_admin(H)] with [src].") playsound(get_turf(src), 'sound/items/defib_success.ogg', 25, 0) user.track_life_saved(user.job) user.life_revives_total++ H.handle_revive() - if(heart && !heart_already_damaged) + if(heart) heart.take_damage(rand(min_heart_damage_dealt, max_heart_damage_dealt), TRUE) // Make death and revival leave lasting consequences to_chat(H, SPAN_NOTICE("You suddenly feel a spark and your consciousness returns, dragging you back to the mortal plane.")) @@ -244,7 +242,10 @@ window_flash(H.client) else user.visible_message(SPAN_WARNING("[icon2html(src, viewers(src))] \The [src] buzzes: Defibrillation failed. Vital signs are too weak, repair damage and try again.")) //Freak case + msg_admin_niche("[key_name_admin(user)] failed an attempt to revive [key_name_admin(H)] with [src] because of weak vitals.") playsound(get_turf(src), 'sound/items/defib_failed.ogg', 25, 0) + if(heart && prob(25)) + heart.take_damage(rand(min_heart_damage_dealt, max_heart_damage_dealt), TRUE) // Make death and revival leave lasting consequences /obj/item/device/defibrillator/compact_adv name = "advanced compact defibrillator" diff --git a/code/game/objects/items/devices/device.dm b/code/game/objects/items/devices/device.dm index d305896023..23fe7b86bb 100644 --- a/code/game/objects/items/devices/device.dm +++ b/code/game/objects/items/devices/device.dm @@ -7,7 +7,7 @@ /obj/item/device/Initialize(mapload, ...) . = ..() - serial_number = "[rand(0,9)][pick(alphabet_uppercase)][rand(0,9)][rand(0,9)][rand(0,9)][rand(0,9)][pick(alphabet_uppercase)]" + serial_number = "[rand(0,9)][pick(GLOB.alphabet_uppercase)][rand(0,9)][rand(0,9)][rand(0,9)][rand(0,9)][pick(GLOB.alphabet_uppercase)]" /obj/item/device/get_examine_text(mob/user) . = ..() diff --git a/code/game/objects/items/devices/drone_devices.dm b/code/game/objects/items/devices/drone_devices.dm deleted file mode 100644 index 121a3c0aab..0000000000 --- a/code/game/objects/items/devices/drone_devices.dm +++ /dev/null @@ -1,268 +0,0 @@ - - -//Simple borg hand. -//Limited use. -/obj/item/device/gripper - name = "magnetic gripper" - desc = "A simple grasping tool for synthetic assets." - icon_state = "gripper" - - //Has a list of items that it can hold. - var/list/can_hold = list( - /obj/item/cell, - /obj/item/circuitboard, - /obj/item/stock_parts, - /obj/item/frame, - /obj/item/tank, - /obj/item/stock_parts/smes_coil - ) - - //Item currently being held. - var/obj/item/wrapped = null - -/obj/item/device/gripper/paperwork - name = "paperwork gripper" - desc = "A simple grasping tool for clerical work." - - can_hold = list( - /obj/item/clipboard, - /obj/item/paper, - /obj/item/paper_bundle, - /obj/item/card/id, - ) - -/obj/item/device/gripper/attack_self(mob/user as mob) - ..() - - if(wrapped) - wrapped.attack_self(user) - -/obj/item/device/gripper/verb/drop_item() - - set name = "Drop Item" - set desc = "Release an item from your magnetic gripper." - set category = "Drone" - set src in usr - if(!wrapped) - //There's some weirdness with items being lost inside the arm. Trying to fix all cases. ~Z - for(var/obj/item/thing in src.contents) - thing.forceMove(get_turf(src)) - return - - if(wrapped.loc != src) - wrapped = null - return - - to_chat(src.loc, SPAN_WARNING("You drop \the [wrapped].")) - wrapped.forceMove(get_turf(src)) - wrapped = null - //update_icon() - -/obj/item/device/gripper/attack(mob/living/carbon/M as mob, mob/living/carbon/user as mob) - return - -/obj/item/device/gripper/afterattack(atom/target as mob|obj|turf|area, mob/living/user as mob|obj, proximity, params) - - if(!target || !proximity) //Target is invalid or we are not adjacent. - return - - //There's some weirdness with items being lost inside the arm. Trying to fix all cases. ~Z - if(!wrapped) - for(var/obj/item/thing in src.contents) - wrapped = thing - break - - if(wrapped) //Already have an item. - - //Temporary put wrapped into user so target's attackby() checks pass. - wrapped.forceMove(user) - - //Pass the attack on to the target. This might delete/relocate wrapped. - target.attackby(wrapped,user) - - //If wrapped was neither deleted nor put into target, put it back into the gripper. - if(wrapped && user && (wrapped.loc == user)) - wrapped.forceMove(src) - else - wrapped = null - return - - else if(istype(target,/obj/item)) //Check that we're not pocketing a mob. - - //...and that the item is not in a container. - if(!isturf(target.loc)) - return - - var/obj/item/I = target - - //Check if the item is blacklisted. - var/grab = 0 - for(var/typepath in can_hold) - if(istype(I,typepath)) - grab = 1 - break - - //We can grab the item, finally. - if(grab) - to_chat(user, "You collect \the [I].") - I.forceMove(src) - wrapped = I - return - else - to_chat(user, SPAN_DANGER("Your gripper cannot hold \the [target].")) - - else if(istype(target,/obj/structure/machinery/power/apc)) - var/obj/structure/machinery/power/apc/A = target - if(A.opened) - if(A.cell) - - wrapped = A.cell - - A.cell.add_fingerprint(user) - A.cell.update_icon() - A.cell.forceMove(src) - A.cell = null - - A.charging = 0 - A.update_icon() - - user.visible_message(SPAN_DANGER("[user] removes the power cell from [A]!"), "You remove the power cell.") - - - - - - - -//TODO: Matter decompiler. -/obj/item/device/matter_decompiler - name = "matter decompiler" - desc = "Eating trash, bits of glass, or other debris will replenish your stores." - icon_state = "decompiler" - - //Metal, glass, wood, plastic. - var/list/stored_comms = list( - "metal" = 0, - "glass" = 0, - "wood" = 0, - "plastic" = 0 - ) - -/obj/item/device/matter_decompiler/attack(mob/living/carbon/M as mob, mob/living/carbon/user as mob) - return - -/obj/item/device/matter_decompiler/afterattack(atom/target as mob|obj|turf|area, mob/living/user as mob|obj, proximity, params) - - if(!proximity) return //Not adjacent. - - //We only want to deal with using this on turfs. Specific items aren't important. - var/turf/T = get_turf(target) - if(!istype(T)) - return - - //Used to give the right message. - var/grabbed_something = 0 - - for(var/mob/M in T) - if(istype(M,/mob/living/simple_animal/lizard) || istype(M,/mob/living/simple_animal/mouse)) - src.loc.visible_message(SPAN_DANGER("[src.loc] sucks [M] into its decompiler. There's a horrible crunching noise."),SPAN_DANGER("It's a bit of a struggle, but you manage to suck [M] into your decompiler. It makes a series of visceral crunching noises.")) - new/obj/effect/decal/cleanable/blood/splatter(get_turf(src)) - qdel(M) - stored_comms["wood"]++ - stored_comms["wood"]++ - stored_comms["plastic"]++ - stored_comms["plastic"]++ - return - - else if(ismaintdrone(M) && !M.client) - - var/mob/living/silicon/robot/drone/D = src.loc - - if(!istype(D)) - return - - to_chat(D, SPAN_DANGER("You begin decompiling the other drone.")) - - if(!do_after(D, 50, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) - to_chat(D, SPAN_DANGER("You need to remain still while decompiling such a large object.")) - return - - if(!M || !D) return - - to_chat(D, SPAN_DANGER("You carefully and thoroughly decompile your downed fellow, storing as much of its resources as you can within yourself.")) - - qdel(M) - new/obj/effect/decal/cleanable/blood/oil(get_turf(src)) - - stored_comms["metal"] += 15 - stored_comms["glass"] += 15 - stored_comms["wood"] += 5 - stored_comms["plastic"] += 5 - - return - else - continue - - for(var/obj/W in T) - //Different classes of items give different commodities. - if (istype(W,/obj/item/trash/cigbutt)) - stored_comms["plastic"]++ - else if(istype(W,/obj/effect/spider/spiderling)) - stored_comms["wood"]++ - stored_comms["wood"]++ - stored_comms["plastic"]++ - stored_comms["plastic"]++ - else if(istype(W,/obj/item/light_bulb)) - var/obj/item/light_bulb/L = W - if(L.status >= 2) //In before someone changes the inexplicably local defines. ~ Z - stored_comms["metal"]++ - stored_comms["glass"]++ - else - continue - else if(istype(W,/obj/effect/decal/remains/robot)) - stored_comms["metal"]++ - stored_comms["metal"]++ - stored_comms["plastic"]++ - stored_comms["plastic"]++ - stored_comms["glass"]++ - else if(istype(W,/obj/item/trash)) - stored_comms["metal"]++ - stored_comms["plastic"]++ - stored_comms["plastic"]++ - stored_comms["plastic"]++ - else if(istype(W,/obj/effect/decal/cleanable/blood/gibs/robot)) - stored_comms["metal"]++ - stored_comms["metal"]++ - stored_comms["glass"]++ - stored_comms["glass"]++ - else if(istype(W,/obj/item/ammo_casing)) - stored_comms["metal"]++ - else if(istype(W,/obj/item/shard/shrapnel)) - stored_comms["metal"]++ - stored_comms["metal"]++ - stored_comms["metal"]++ - else if(istype(W,/obj/item/shard)) - stored_comms["glass"]++ - stored_comms["glass"]++ - stored_comms["glass"]++ - else if(istype(W,/obj/item/reagent_container/food/snacks/grown)) - stored_comms["wood"]++ - stored_comms["wood"]++ - stored_comms["wood"]++ - stored_comms["wood"]++ - else if(istype(W,/obj/item/ammo_magazine)) - var/obj/item/ammo_magazine/AM = W - if(AM.current_rounds) - continue - stored_comms["metal"]++ - else - continue - - qdel(W) - grabbed_something = 1 - - if(grabbed_something) - to_chat(user, SPAN_NOTICE(" You deploy your decompiler and clear out the contents of \the [T].")) - else - to_chat(user, SPAN_DANGER("Nothing on \the [T] is useful to you.")) - return diff --git a/code/game/objects/items/devices/dummy_tablet.dm b/code/game/objects/items/devices/dummy_tablet.dm index d1036ebfa9..4996daf536 100644 --- a/code/game/objects/items/devices/dummy_tablet.dm +++ b/code/game/objects/items/devices/dummy_tablet.dm @@ -1,14 +1,34 @@ /obj/item/device/professor_dummy_tablet icon = 'icons/obj/items/devices.dmi' - name = "Professor DUMMY tablet" + name = "\improper Professor DUMMY tablet" desc = "A Professor DUMMY Control Tablet." suffix = "\[3\]" icon_state = "Cotablet" item_state = "Cotablet" var/mob/living/carbon/human/linked_dummy + ///Should the dummy be destroyed on hijack? + var/dust_on_hijack = FALSE + +/obj/item/device/professor_dummy_tablet/Initialize() + . = ..() + var/turf/actual_location = get_turf(src) + if(is_mainship_level(actual_location.z)) + dust_on_hijack = TRUE + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_LANDED, PROC_REF(destroy_dummy_upon_hijack)) + +/obj/item/device/professor_dummy_tablet/proc/destroy_dummy_upon_hijack() + SIGNAL_HANDLER + + if(!dust_on_hijack) + return + if(!linked_dummy) + return + linked_dummy.visible_message(SPAN_WARNING("The [linked_dummy] suddenly disintegrates!")) + linked_dummy.dust(create_cause_data("hijack autodelete")) /obj/item/device/professor_dummy_tablet/Destroy() + UnregisterSignal(src, COMSIG_GLOB_HIJACK_LANDED) linked_dummy = null . = ..() @@ -21,23 +41,35 @@ */ /obj/item/device/professor_dummy_tablet/proc/is_adjacent_to_dummy(mob/user) if (get_dist(linked_dummy, user) > 1) - to_chat(user, "You are too far away to use the tablet.") + to_chat(user, SPAN_WARNING("You are too far away from the dummy to use its tablet.")) return FALSE - return TRUE -/obj/item/device/professor_dummy_tablet/proc/link_mob(mob/living/carbon/human/H) - linked_dummy = H +/obj/item/device/professor_dummy_tablet/proc/link_dummy(mob/living/carbon/human/dummy_to_link) + if(dummy_to_link) + linked_dummy = dummy_to_link + RegisterSignal(linked_dummy, COMSIG_PARENT_QDELETING, PROC_REF(self_delete)) + return + +/obj/item/device/professor_dummy_tablet/proc/self_delete() + SIGNAL_HANDLER + + UnregisterSignal(linked_dummy, COMSIG_PARENT_QDELETING) + linked_dummy = null + if(isstorage(loc)) + var/obj/item/storage/storage = loc + storage.remove_from_storage(src, get_turf(src)) + qdel(src) /obj/item/device/professor_dummy_tablet/attack_self(mob/user as mob) ..() interact(user) /obj/item/device/professor_dummy_tablet/interact(mob/user as mob) - if (isnull(linked_dummy)) + if(isnull(linked_dummy)) return - if (!is_adjacent_to_dummy(user)) + if(!is_adjacent_to_dummy(user)) return user.set_interaction(src) @@ -55,8 +87,8 @@ dat += "
    \[ Reset \]" dat += "

    " - show_browser(user, dat, "Professor DUMMY Control Tablet", window_options="size=400x500") - onclose(user, "communications") + show_browser(user, dat, "Professor DUMMY Control Tablet", "dummytablet", window_options="size=400x500") + onclose(user, "dummytablet") updateDialog() return diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm index 12ea262194..ee74a83613 100644 --- a/code/game/objects/items/devices/flash.dm +++ b/code/game/objects/items/devices/flash.dm @@ -35,7 +35,7 @@ flashes_stored++ if(flashes_stored <= max_flashes_stored) visible_message(SPAN_NOTICE("[icon2html(src, viewers(src))] \The [src] pings as it recharges!"), SPAN_NOTICE("You hear a ping"), 3) - flashes_stored = min(max_flashes_stored, round(flashes_stored)) //sanity + flashes_stored = min(max_flashes_stored, floor(flashes_stored)) //sanity /obj/item/device/flash/proc/check_if_can_use_flash(mob/user) //checks for using the flash if(!ishuman(user)) @@ -103,17 +103,6 @@ else //if not carbon or sillicn flashfail = TRUE - if(isrobot(user)) - spawn(0) - var/atom/movable/overlay/animation = new(user.loc) - animation.layer = user.layer + 1 - animation.icon_state = "blank" - animation.icon = 'icons/mob/mob.dmi' - animation.master = user - flick("blspell", animation) - sleep(5) - qdel(animation) - if(!flashfail) if(!isSilicon(M)) user.visible_message(SPAN_DANGER("[user] blinds [M] with \the [src]!")) diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index bc016bcc7a..4da9feb737 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -15,7 +15,7 @@ ground_offset_x = 2 ground_offset_y = 6 - actions_types = list(/datum/action/item_action) + actions_types = list(/datum/action/item_action/toggle) var/on = FALSE var/raillight_compatible = TRUE //Can this be turned into a rail light ? var/toggleable = TRUE @@ -64,9 +64,9 @@ on = !on set_light_on(on) update_icon() - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() + for(var/xman in actions) + var/datum/action/active = xman + active.update_button_icon() return TRUE @@ -75,68 +75,71 @@ on = FALSE set_light_on(on) update_icon() - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() + for(var/xman in actions) + var/datum/action/active = xman + active.update_button_icon() return 1 return 0 -/obj/item/device/flashlight/attackby(obj/item/I as obj, mob/user as mob) - if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) +/obj/item/device/flashlight/attackby(obj/item/item as obj, mob/user as mob) + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(!raillight_compatible) //No fancy messages, just no return if(on) to_chat(user, SPAN_WARNING("Turn off [src] first.")) return if(isstorage(loc)) - var/obj/item/storage/S = loc - S.remove_from_storage(src) + var/obj/item/storage/container = loc + container.remove_from_storage(src) if(loc == user) user.drop_inv_item_on_ground(src) //This part is important to make sure our light sources update, as it calls dropped() - var/obj/item/attachable/flashlight/F = new(src.loc) - user.put_in_hands(F) //This proc tries right, left, then drops it all-in-one. + var/obj/item/attachable/flashlight/flash = new(src.loc) + user.put_in_hands(flash) //This proc tries right, left, then drops it all-in-one. to_chat(user, SPAN_NOTICE("You modify [src]. It can now be mounted on a weapon.")) - to_chat(user, SPAN_NOTICE("Use a screwdriver on [F] to change it back.")) + to_chat(user, SPAN_NOTICE("Use a screwdriver on [flash] to change it back.")) qdel(src) //Delete da old flashlight return else ..() -/obj/item/device/flashlight/attack(mob/living/M as mob, mob/living/user as mob) +/obj/item/device/flashlight/attack(mob/living/carbon/human/being as mob, mob/living/user as mob) add_fingerprint(user) if(on && user.zone_selected == "eyes") if((user.getBrainLoss() >= 60) && prob(50)) //too dumb to use flashlight properly return ..() //just hit them in the head - if((!ishuman(user) || SSticker) && SSticker.mode.name != "monkey") //don't have dexterity + if (!(ishuman(user) || SSticker) && SSticker.mode.name != "monkey") //don't have dexterity to_chat(user, SPAN_NOTICE("You don't have the dexterity to do this!")) return - var/mob/living/carbon/human/H = M //mob has protective eyewear - if(ishuman(H) && ((H.head && H.head.flags_inventory & COVEREYES) || (H.wear_mask && H.wear_mask.flags_inventory & COVEREYES) || (H.glasses && H.glasses.flags_inventory & COVEREYES))) - to_chat(user, SPAN_NOTICE("You're going to need to remove that [(H.head && H.head.flags_inventory & COVEREYES) ? "helmet" : (H.wear_mask && H.wear_mask.flags_inventory & COVEREYES) ? "mask": "glasses"] first.")) + var/mob/living/carbon/human/beingB = being //mob has protective eyewear + if(ishuman(beingB) && ((beingB.head && beingB.head.flags_inventory & COVEREYES) || (beingB.wear_mask && beingB.wear_mask.flags_inventory & COVEREYES) || (beingB.glasses && beingB.glasses.flags_inventory & COVEREYES))) + to_chat(user, SPAN_NOTICE("You're going to need to remove [(beingB.head && beingB.head.flags_inventory & COVEREYES) ? "that helmet" : (beingB.wear_mask && beingB.wear_mask.flags_inventory & COVEREYES) ? "that mask": "those glasses"] first.")) return - if(M == user) //they're using it on themselves - M.flash_eyes() - M.visible_message(SPAN_NOTICE("[M] directs [src] to \his eyes."), \ - SPAN_NOTICE("You wave the light in front of your eyes! Trippy!")) + if(being == user) //they're using it on themselves + being.flash_eyes() + being.visible_message(SPAN_NOTICE("[being] directs [src] to [being.p_their()] eyes."), \ + SPAN_NOTICE("You wave the light in front of your eyes! Wow, that's trippy!")) return - user.visible_message(SPAN_NOTICE("[user] directs [src] to [M]'s eyes."), \ - SPAN_NOTICE("You direct [src] to [M]'s eyes.")) - - if(istype(M, /mob/living/carbon/human)) //robots and aliens are unaffected - if(M.stat == DEAD || M.sdisabilities & DISABILITY_BLIND) //mob is dead or fully blind - to_chat(user, SPAN_NOTICE("[M] pupils does not react to the light!")) - else //they're okay! - M.flash_eyes() - to_chat(user, SPAN_NOTICE("[M]'s pupils narrow.")) + user.visible_message(SPAN_NOTICE("[user] directs [src] to [being]'s eyes."), \ + SPAN_NOTICE("You direct [src] to [being]'s eyes.")) + + if(ishuman_strict(being)) //robots and aliens are unaffected + var/datum/internal_organ/eyes/eyes = being.internal_organs_by_name["eyes"] + var/datum/internal_organ/brain/brain = being.internal_organs_by_name["brain"] + if(being.stat == DEAD || being.sdisabilities & DISABILITY_BLIND || eyes.organ_status == ORGAN_BROKEN || brain.organ_status == ORGAN_BROKEN) //mob is dead, fully blind, or their eyes are + to_chat(user, SPAN_NOTICE("[being]'s pupils do not react to the light!")) + else //they're okay! Well, probably + being.flash_eyes() + to_chat(user, SPAN_NOTICE("[being]'s pupils narrow.")) + return else return ..() -/obj/item/device/flashlight/attack_alien(mob/living/carbon/xenomorph/M) +/obj/item/device/flashlight/attack_alien(mob/living/carbon/xenomorph/being) . = ..() if(on && can_be_broken) @@ -149,14 +152,75 @@ /obj/item/device/flashlight/pen name = "penlight" - desc = "A pen-sized light, used by medical staff." + desc = "A pen-sized light, used by medical staff to check the condition of eyes, brain, and the overall awareness of patients." icon_state = "penlight" item_state = "" + flags_equip_slot = SLOT_WAIST|SLOT_EAR|SLOT_SUIT_STORE flags_atom = FPRINT|CONDUCT light_range = 2 w_class = SIZE_TINY + throw_speed = SPEED_VERY_FAST + throw_range = 15 + matter = list("metal" = 10,"glass" = 5) raillight_compatible = 0 +/obj/item/device/flashlight/pen/attack(mob/living/carbon/human/being as mob, mob/living/user as mob) + add_fingerprint(user) + if(user.a_intent == INTENT_HELP) + if(on && user.zone_selected == "eyes") + if(!ishuman_strict(being)) //robots and aliens are unaffected + return + var/reaction = null + if(isnull(being.internal_organs_by_name)) + reaction = "discover that indeed [being.p_they()] have nothing to be checked" + return // they have no organs somehow + if(being == user) //they're using it on themselves + being.flash_eyes() + being.visible_message(SPAN_NOTICE("[being] directs [src] to [being.p_their()] eyes."), \ + SPAN_NOTICE("You wave the light in front of your eyes! Wow, that's trippy!")) + return + if(being.stat == DEAD || (being.status_flags&FAKEDEATH)) + reaction = "conclude that [being.p_their()] eyes are completely lifeless, [being.p_they()] must have passed away" + else + var/datum/internal_organ/eyes/eyes = being.internal_organs_by_name["eyes"] + var/datum/internal_organ/brain/brain = being.internal_organs_by_name["brain"] + if(skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC)) + if(eyes) + switch(eyes.organ_status) + if(ORGAN_LITTLE_BRUISED) + being.flash_eyes() + reaction = "notice that [being.p_their()] eyes are reacting to the light, but [being.p_their()] pupils seen to react sluggishly and with small delays, [being.p_their()] vision is probably a little impaired" + if(ORGAN_BRUISED) + being.flash_eyes() + reaction = "observe that [being.p_their()] eyes are unrealiably reacting to the light, with [being.p_their()] pupils reacting very sluggishly and with noticeable delays, it is probable that [being.p_their()] vision is remarkably impaired" + if(ORGAN_BROKEN) + reaction = "notice that [being.p_their()] eyes are not reacting to the light, and the pupils of both eyes are not constricting with the light shine at all, [being.p_they()] is probably blind" + else + being.flash_eyes() + reaction = "perceive that [being.p_their()] eyes and pupils are normally reacting to the light, [being.p_they()] is probably seeing without problems" + if(brain) + if(reaction) + reaction += ". You also " + switch(brain.organ_status) + if(ORGAN_LITTLE_BRUISED) + being.flash_eyes() + reaction += "notice that the pupils are consensually constricting with a significant delay when light is separately applied to each eye, meaning that [being.p_they()] possibly have subtle brain damage" + if(ORGAN_BRUISED) + being.flash_eyes() + reaction += "notice that the pupils are not consensually constricting when light is separately applied to each eye, meaning possible brain damage" + if(ORGAN_BROKEN) + reaction += "notice that the pupils have different sizes and are assymmetric, [being.p_they()] possibly have severe brain damage" + else + being.flash_eyes() + reaction += "notice that the pupils are consensually and normally constricting when light is separately applied to each eye, [being.p_their()] brain is probably fine" + else + reaction = "can't see anything at all, weirdly enough" + else + being.flash_eyes() + reaction = "don't really know what you are looking for, you don't know anything about medicine" + user.visible_message("[user] directs [src] to [being]'s eyes.", "You point [src] to [being.p_their()] eyes to begin analysing them further and... you [reaction].") + return ..() + /obj/item/device/flashlight/drone name = "low-power flashlight" desc = "A miniature lamp, that might be used by small robots." @@ -240,7 +304,7 @@ desc = "A red USCM issued flare. There are instructions on the side, it reads 'pull cord, make light'." w_class = SIZE_SMALL light_power = 2 - light_range = 7 + light_range = 5 icon_state = "flare" item_state = "flare" actions = list() //just pull it manually, neckbeard. @@ -366,9 +430,9 @@ user.visible_message(SPAN_NOTICE("[user] activates the flare."), SPAN_NOTICE("You pull the cord on the flare, activating it!")) playsound(src,'sound/handling/flare_activate_2.ogg', 50, 1) //cool guy sound turn_on() - var/mob/living/carbon/U = user - if(istype(U) && !U.throw_mode) - U.toggle_throw_mode(THROW_MODE_NORMAL) + var/mob/living/carbon/enjoyer = user + if(istype(enjoyer) && !enjoyer.throw_mode) + enjoyer.toggle_throw_mode(THROW_MODE_NORMAL) /obj/item/device/flashlight/flare/proc/activate_signal(mob/living/carbon/human/user) return @@ -423,7 +487,7 @@ /obj/item/device/flashlight/flare/on/illumination/chemical/Initialize(mapload, amount) . = ..() - light_range = round(amount * 0.04) + light_range = floor(amount * 0.04) if(!light_range) return INITIALIZE_HINT_QDEL set_light(light_range) @@ -489,13 +553,13 @@ /obj/item/device/flashlight/flare/signal/activate_signal(mob/living/carbon/human/user) ..() - if(faction && cas_groups[faction]) + if(faction && GLOB.cas_groups[faction]) signal = new(src) - signal.target_id = ++cas_tracking_id_increment + signal.target_id = ++GLOB.cas_tracking_id_increment name = "[user.assigned_squad ? user.assigned_squad.name : "X"]-[signal.target_id] flare" signal.name = name signal.linked_cam = new(loc, name) - cas_groups[user.faction].add_signal(signal) + GLOB.cas_groups[user.faction].add_signal(signal) anchored = TRUE if(activate_message) visible_message(SPAN_DANGER("[src]'s flame reaches full strength. It's fully active now."), null, 5) @@ -515,14 +579,14 @@ /obj/item/device/flashlight/flare/signal/Destroy() STOP_PROCESSING(SSobj, src) if(signal) - cas_groups[faction].remove_signal(signal) + GLOB.cas_groups[faction].remove_signal(signal) QDEL_NULL(signal) return ..() /obj/item/device/flashlight/flare/signal/turn_off() anchored = FALSE if(signal) - cas_groups[faction].remove_signal(signal) + GLOB.cas_groups[faction].remove_signal(signal) qdel(signal) ..() @@ -535,14 +599,14 @@ /obj/effect/landmark/rappel/New() . = ..() signal = new(src) - signal.target_id = ++cas_tracking_id_increment + signal.target_id = ++GLOB.cas_tracking_id_increment name = "Rappel Point #[signal.target_id]" signal.name = name - cas_groups[FACTION_MARINE].add_signal(signal) + GLOB.cas_groups[FACTION_MARINE].add_signal(signal) /obj/effect/landmark/rappel/Destroy() if(signal) - cas_groups[FACTION_MARINE].remove_signal(signal) + GLOB.cas_groups[FACTION_MARINE].remove_signal(signal) QDEL_NULL(signal) return ..() @@ -572,11 +636,11 @@ turn_on() faction = FACTION_MARINE signal = new(src) - signal.target_id = ++cas_tracking_id_increment + signal.target_id = ++GLOB.cas_tracking_id_increment name += " [rand(100, 999)]" signal.name = name signal.linked_cam = new(loc, name) - cas_groups[FACTION_MARINE].add_signal(signal) + GLOB.cas_groups[FACTION_MARINE].add_signal(signal) anchored = TRUE /obj/item/device/flashlight/tnr diff --git a/code/game/objects/items/devices/helmet_visors.dm b/code/game/objects/items/devices/helmet_visors.dm index 7bdcf2339d..6987715121 100644 --- a/code/game/objects/items/devices/helmet_visors.dm +++ b/code/game/objects/items/devices/helmet_visors.dm @@ -6,7 +6,7 @@ w_class = SIZE_TINY ///The type of HUD our visor shows - var/hud_type = MOB_HUD_FACTION_USCM + var/hud_type = MOB_HUD_FACTION_MARINE ///The sound when toggling on the visor var/toggle_on_sound = 'sound/handling/hud_on.ogg' @@ -61,12 +61,12 @@ /// Called by toggle_visor() to activate the visor's effects /obj/item/device/helmet_visor/proc/activate_visor(obj/item/clothing/head/helmet/marine/attached_helmet, mob/living/carbon/human/user) - var/datum/mob_hud/current_mob_hud = huds[hud_type] + var/datum/mob_hud/current_mob_hud = GLOB.huds[hud_type] current_mob_hud.add_hud_to(user, attached_helmet) /// Called by toggle_visor() to deactivate the visor's effects /obj/item/device/helmet_visor/proc/deactivate_visor(obj/item/clothing/head/helmet/marine/attached_helmet, mob/living/carbon/human/user) - var/datum/mob_hud/current_mob_hud = huds[hud_type] + var/datum/mob_hud/current_mob_hud = GLOB.huds[hud_type] current_mob_hud.remove_hud_from(user, attached_helmet) /// Called by /obj/item/clothing/head/helmet/marine/get_examine_text(mob/user) to get extra examine text for this visor @@ -82,7 +82,7 @@ /obj/item/device/helmet_visor/medical/advanced name = "advanced medical optic" - helmet_overlay = "med_sight_left" + helmet_overlay = "med_sight_right" /obj/item/device/helmet_visor/medical/advanced/can_toggle(mob/living/carbon/human/user) . = ..() @@ -100,7 +100,7 @@ /obj/item/device/helmet_visor/medical/advanced/ui_data(mob/user) var/list/data = list( - "published_documents" = chemical_data.research_publications, + "published_documents" = GLOB.chemical_data.research_publications, "terminal_view" = FALSE ) return data @@ -128,12 +128,13 @@ if ("read_document") var/print_type = params["print_type"] var/print_title = params["print_title"] - var/obj/item/paper/research_report/report = chemical_data.get_report(print_type, print_title) + var/obj/item/paper/research_report/report = GLOB.chemical_data.get_report(print_type, print_title) if(report) report.read_paper(user) return /datum/action/item_action/view_publications/helmet_visor/action_activate() + . = ..() var/obj/item/device/helmet_visor/medical/advanced/medical_visor = locate() in holder_item if(!medical_visor) @@ -213,7 +214,7 @@ /obj/item/device/helmet_visor/night_vision/get_examine_text(mob/user) . = ..() - . += SPAN_NOTICE("It is currently at [round((power_cell.charge / power_cell.maxcharge) * 100)]% charge.") + . += SPAN_NOTICE("It is currently at [floor((power_cell.charge / power_cell.maxcharge) * 100)]% charge.") /obj/item/device/helmet_visor/night_vision/activate_visor(obj/item/clothing/head/helmet/marine/attached_helmet, mob/living/carbon/human/user) RegisterSignal(user, COMSIG_HUMAN_POST_UPDATE_SIGHT, PROC_REF(on_update_sight)) @@ -226,6 +227,7 @@ on_light = new(attached_helmet) on_light.set_light_on(TRUE) START_PROCESSING(SSobj, src) + RegisterSignal(user, COMSIG_MOB_CHANGE_VIEW, PROC_REF(change_view)) /obj/item/device/helmet_visor/night_vision/deactivate_visor(obj/item/clothing/head/helmet/marine/attached_helmet, mob/living/carbon/human/user) user.remove_client_color_matrix("nvg_visor", 1 SECONDS) @@ -235,6 +237,7 @@ if(visor_glows) qdel(on_light) UnregisterSignal(user, COMSIG_HUMAN_POST_UPDATE_SIGHT) + UnregisterSignal(user, COMSIG_MOB_CHANGE_VIEW) user.update_sight() STOP_PROCESSING(SSobj, src) @@ -259,6 +262,10 @@ if(!.) return + if(user.client.view > 7) + to_chat(user, SPAN_WARNING("You cannot use [src] while using optics.")) + return FALSE + if(!NVG_VISOR_USAGE(FALSE)) to_chat(user, SPAN_NOTICE("Your [src] is out of power! You'll need to recharge it.")) return FALSE @@ -268,7 +275,7 @@ /obj/item/device/helmet_visor/night_vision/get_helmet_examine_text() . = ..() - . += SPAN_NOTICE(" It is currently at [round((power_cell.charge / power_cell.maxcharge) * 100)]% charge.") + . += SPAN_NOTICE(" It is currently at [floor((power_cell.charge / power_cell.maxcharge) * 100)]% charge.") /obj/item/device/helmet_visor/night_vision/proc/on_update_sight(mob/user) SIGNAL_HANDLER @@ -278,19 +285,34 @@ user.lighting_alpha = lighting_alpha user.sync_lighting_plane_alpha() +/obj/item/device/helmet_visor/night_vision/proc/change_view(mob/user, new_size) + SIGNAL_HANDLER + if(new_size > 7) // cannot use binos with NVO + var/obj/item/clothing/head/helmet/marine/attached_helmet = loc + if(!istype(attached_helmet)) + return + deactivate_visor(attached_helmet, user) + to_chat(user, SPAN_NOTICE("You deactivate [src] on [attached_helmet].")) + playsound_client(user.client, toggle_off_sound, null, 75) + attached_helmet.active_visor = null + attached_helmet.update_icon() + var/datum/action/item_action/cycle_helmet_huds/cycle_action = locate() in attached_helmet.actions + if(cycle_action) + cycle_action.set_default_overlay() + #undef NVG_VISOR_USAGE /atom/movable/nvg_light light_power = 0.5 light_range = 1 - light_color = COLOUR_GREEN + light_color = COLOR_LIGHT_GREEN light_system = MOVABLE_LIGHT light_flags = LIGHT_ATTACHED /obj/item/device/helmet_visor/night_vision/marine_raider name = "advanced night vision optic" desc = "An insertable visor HUD into a standard USCM helmet. This type gives a form of night vision and is standard issue in special forces units." - hud_type = list(MOB_HUD_FACTION_USCM, MOB_HUD_MEDICAL_ADVANCED) + hud_type = list(MOB_HUD_FACTION_MARINE, MOB_HUD_MEDICAL_ADVANCED) helmet_overlay = "nvg_sight_right_raider" power_use = 0 visor_glows = FALSE @@ -299,14 +321,14 @@ . = ..() for(var/type in hud_type) - var/datum/mob_hud/current_mob_hud = huds[type] + var/datum/mob_hud/current_mob_hud = GLOB.huds[type] current_mob_hud.add_hud_to(user, attached_helmet) /obj/item/device/helmet_visor/night_vision/marine_raider/deactivate_visor(obj/item/clothing/head/helmet/marine/attached_helmet, mob/living/carbon/human/user) . = ..() for(var/type in hud_type) - var/datum/mob_hud/current_mob_hud = huds[type] + var/datum/mob_hud/current_mob_hud = GLOB.huds[type] current_mob_hud.remove_hud_from(user, attached_helmet) /obj/item/device/helmet_visor/night_vision/marine_raider/process(delta_time) diff --git a/code/game/objects/items/devices/lightreplacer.dm b/code/game/objects/items/devices/lightreplacer.dm index 40ef8792ae..05872284ec 100644 --- a/code/game/objects/items/devices/lightreplacer.dm +++ b/code/game/objects/items/devices/lightreplacer.dm @@ -25,7 +25,7 @@ // I'm not sure everyone will react the emag's features so please say what your opinions are of it. // // When emagged it will rig every light it replaces, which will explode when the light is on. -// This is VERY noticable, even the device's name changes when you emag it so if anyone +// This is VERY noticeable, even the device's name changes when you emag it so if anyone // examines you when you're holding it in your hand, you will be discovered. // It will also be very obvious who is setting all these lights off, since only Janitor Borgs and Janitors have easy // access to them, and only one of them can emag their device. @@ -121,7 +121,7 @@ if(target.status != LIGHT_OK) if(CanUse(U)) if(!Use(U)) return - to_chat(U, SPAN_NOTICE("You replace the [target.fitting] with the [src].")) + to_chat(U, SPAN_NOTICE("You replace the [target.fitting] with [src].")) if(target.status != LIGHT_EMPTY) diff --git a/code/game/objects/items/devices/megaphone.dm b/code/game/objects/items/devices/megaphone.dm index 114ed48b18..2dfb7b83da 100644 --- a/code/game/objects/items/devices/megaphone.dm +++ b/code/game/objects/items/devices/megaphone.dm @@ -2,7 +2,7 @@ name = "megaphone" desc = "A device used to project your voice. Loudly." icon_state = "megaphone" - item_state = "radio" + item_state = "megaphone" w_class = SIZE_SMALL flags_atom = FPRINT|CONDUCT @@ -46,6 +46,7 @@ continue listener.show_message("[user] broadcasts, [FONT_SIZE_LARGE("\"[message]\"")]", SHOW_MESSAGE_AUDIBLE) // 2 stands for hearable message langchat_long_listeners += listener + //playsound(loc, 'sound/items/megaphone.ogg', 100, FALSE, TRUE) user.langchat_long_speech(message, langchat_long_listeners, user.get_default_language()) COOLDOWN_START(src, spam_cooldown, spam_cooldown_time) diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm index 4e72795510..4b00c6594d 100644 --- a/code/game/objects/items/devices/motion_detector.dm +++ b/code/game/objects/items/devices/motion_detector.dm @@ -35,7 +35,7 @@ var/recycletime = 120 var/blip_type = "detector" var/iff_signal = FACTION_MARINE - actions_types = list(/datum/action/item_action) + actions_types = list(/datum/action/item_action/toggle) var/scanning = FALSE // controls if MD is in process of scan var/datum/shape/rectangle/square/range_bounds var/long_range_locked = FALSE //only long-range MD @@ -199,6 +199,14 @@ if(ishuman(A.loc)) return A.loc +/obj/item/device/motiondetector/xm4 + +///Forces the blue blip to appear around the detected mob +/obj/item/device/motiondetector/xm4/get_user() + var/atom/holder = loc + if(ishuman(holder.loc)) + return holder.loc + /obj/item/device/motiondetector/proc/apply_debuff(mob/M) return @@ -227,7 +235,6 @@ var/mob/living/M = A //do this to skip the unnecessary istype() check; everything in ping_candidate is a mob already if(M == loc) continue //device user isn't detected if(world.time > M.l_move_time + 20) continue //hasn't moved recently - if(isrobot(M)) continue if(M.get_target_lock(iff_signal)) continue @@ -270,10 +277,10 @@ var/view_x_offset = 0 var/view_y_offset = 0 if(c_view > 7) - if(user.client.pixel_x >= 0) view_x_offset = round(user.client.pixel_x/32) - else view_x_offset = Ceiling(user.client.pixel_x/32) - if(user.client.pixel_y >= 0) view_y_offset = round(user.client.pixel_y/32) - else view_y_offset = Ceiling(user.client.pixel_y/32) + if(user.client.pixel_x >= 0) view_x_offset = floor(user.client.pixel_x/32) + else view_x_offset = ceil(user.client.pixel_x/32) + if(user.client.pixel_y >= 0) view_y_offset = floor(user.client.pixel_y/32) + else view_y_offset = ceil(user.client.pixel_y/32) var/diff_dir_x = 0 var/diff_dir_y = 0 @@ -288,7 +295,7 @@ DB.icon_state = "[blip_icon]_blip" DB.setDir(initial(DB.dir)) - DB.screen_loc = "[Clamp(c_view + 1 - view_x_offset + (target.x - user.x), 1, 2*c_view+1)],[Clamp(c_view + 1 - view_y_offset + (target.y - user.y), 1, 2*c_view+1)]" + DB.screen_loc = "[clamp(c_view + 1 - view_x_offset + (target.x - user.x), 1, 2*c_view+1)],[clamp(c_view + 1 - view_y_offset + (target.y - user.y), 1, 2*c_view+1)]" user.client.add_to_screen(DB) addtimer(CALLBACK(src, PROC_REF(clear_pings), user, DB), 1 SECONDS) diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index 273ced980b..0017e41219 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -18,6 +18,7 @@ matter = list("metal" = 50,"glass" = 20) inherent_traits = list(TRAIT_TOOL_MULTITOOL) + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) var/hack_speed = 10 SECONDS // Only used for vendors right now var/next_scan @@ -46,15 +47,37 @@ /obj/item/device/multitool/attack_self(mob/user) ..() - if(world.time < next_scan || !ishuman(user) || !skillcheck(user,SKILL_ENGINEER,SKILL_ENGINEER_TRAINED)) + if(world.time < next_scan || !ishuman(user) || !skillcheck(user,SKILL_ENGINEER,SKILL_ENGINEER_NOVICE)) return next_scan = world.time + 15 var/area/A = get_area(src) - var/APC = A? A.get_apc() : null + var/atom/APC = A? A.get_apc() : null if(APC) - to_chat(user, SPAN_NOTICE("The local APC is located at [SPAN_BOLD("[get_dist(src, APC)] units [dir2text(get_dir(src, APC))]")].")) - user.balloon_alert(user, "[get_dist(src, APC)] units [dir2text(get_dir(src, APC))]") + to_chat(user, SPAN_NOTICE("The local APC is located at [SPAN_BOLD("[get_dist(src, APC)] units [dir2text(Get_Compass_Dir(src, APC))]")].")) + user.balloon_alert(user, "[get_dist(src, APC)] units [dir2text(Get_Compass_Dir(src, APC))]") + if(user.client) + //Create the appearance so we have something to apply the filter to. + var/mutable_appearance/apc_appearance = new(APC) + apc_appearance.filters += list("type" = "outline", "size" = 1, "color" = COLOR_GREEN) + //Make it an image we can give to the client + var/image/final_image = image(apc_appearance) + + final_image.layer = WALL_OBJ_LAYER + final_image.plane = GAME_PLANE + final_image.loc = get_turf(APC) + final_image.dir = apc_appearance.dir + final_image.alpha = 225 + user.client.images += final_image + addtimer(CALLBACK(src, PROC_REF(remove_apc_highlight), user.client, final_image), 1.4 SECONDS) + + else to_chat(user, SPAN_WARNING("ERROR: Could not locate local APC.")) user.balloon_alert(user, "could not locate!") + +/obj/item/device/multitool/proc/remove_apc_highlight(client/user_client, image/highlight_image) + if(!user_client) + return + user_client.images -= highlight_image + diff --git a/code/game/objects/items/devices/personal_data_transmitter.dm b/code/game/objects/items/devices/personal_data_transmitter.dm index 2e92b3f0b0..c5bcdd7396 100644 --- a/code/game/objects/items/devices/personal_data_transmitter.dm +++ b/code/game/objects/items/devices/personal_data_transmitter.dm @@ -122,7 +122,7 @@ return var/dist = get_dist(self_turf, bracelet_turf) - var/direction = dir2text_short(get_dir(self_turf, bracelet_turf)) + var/direction = dir2text_short(Get_Compass_Dir(self_turf, bracelet_turf)) if(dist > 1) to_chat(user, SPAN_BOLDNOTICE("The display on \the [src] lights up: [dist]-[direction]")) else @@ -161,6 +161,7 @@ name = "\improper Boots! PDT/L Battle Buddy kit" desc = "Contains a PDT/L set, consisting of the PDT bracelet and its sister locator tube, alongside a spare cell seemingly wedged into the kit." desc_lore = "This kit was distributed in the 200th (Season 4) Issue of the Boots! magazine, 'Privates die without their battlebuddy!', to drive up sales. Many have noted the poor battery life of these units, leading many to speculate that these were faulty units that were repackaged and shipped off to various USCM-adjacent mil-surplus good stores. The Department of the Navy Observation in Photographs (DNOP) has not released a statement regarding these theories." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "pdt_box" can_hold = list(/obj/item/device/pdt_locator_tube, /obj/item/clothing/accessory/pdt_bracelet) foldable = /obj/item/stack/sheet/cardboard diff --git a/code/game/objects/items/devices/pinpointer.dm b/code/game/objects/items/devices/pinpointer.dm index 7ec3118ef9..3dd9fdaf12 100644 --- a/code/game/objects/items/devices/pinpointer.dm +++ b/code/game/objects/items/devices/pinpointer.dm @@ -31,7 +31,7 @@ if(!the_disk) icon_state = "pinonnull" return - setDir(get_dir(src,the_disk)) + setDir(Get_Compass_Dir(src,the_disk)) switch(get_dist(src,the_disk)) if(0) icon_state = "pinondirect" @@ -45,7 +45,7 @@ /obj/item/device/pinpointer/get_examine_text(mob/user) . = ..() - for(var/obj/structure/machinery/nuclearbomb/bomb in machines) + for(var/obj/structure/machinery/nuclearbomb/bomb in GLOB.machines) if(bomb.timing) . += "Extreme danger. Arming signal detected. Time remaining: [bomb.timeleft]" @@ -80,7 +80,7 @@ if(!location) icon_state = "pinonnull" return - setDir(get_dir(src,location)) + setDir(Get_Compass_Dir(src,location)) switch(get_dist(src,location)) if(0) icon_state = "pinondirect" @@ -99,7 +99,7 @@ if(!target) icon_state = "pinonnull" return - setDir(get_dir(src,target)) + setDir(Get_Compass_Dir(src,target)) switch(get_dist(src,target)) if(0) icon_state = "pinondirect" @@ -126,10 +126,10 @@ mode = 1 var/locationx = tgui_input_real_number(usr, "Please input the x coordinate to search for.", "Location?") - if(!locationx || !(usr in view(1,src))) + if(!locationx || !(usr in dview(1, src))) return var/locationy = tgui_input_real_number(usr, "Please input the y coordinate to search for.", "Location?") - if(!locationy || !(usr in view(1,src))) + if(!locationy || !(usr in dview(1, src))) return var/turf/Z = get_turf(src) diff --git a/code/game/objects/items/devices/pipe_painter.dm b/code/game/objects/items/devices/pipe_painter.dm index 840098cbc4..a69fe64c25 100644 --- a/code/game/objects/items/devices/pipe_painter.dm +++ b/code/game/objects/items/devices/pipe_painter.dm @@ -9,7 +9,7 @@ /obj/item/device/pipe_painter/New() ..() modes = new() - for(var/C in pipe_colors) + for(var/C in GLOB.pipe_colors) modes += "[C]" mode = pick(modes) @@ -26,7 +26,7 @@ to_chat(user, SPAN_DANGER("You must remove the plating first.")) return - P.change_color(pipe_colors[mode]) + P.change_color(GLOB.pipe_colors[mode]) /obj/item/device/pipe_painter/attack_self(mob/user) ..() diff --git a/code/game/objects/items/devices/portable_vendor.dm b/code/game/objects/items/devices/portable_vendor.dm index 29e1d06018..b3ae76654b 100644 --- a/code/game/objects/items/devices/portable_vendor.dm +++ b/code/game/objects/items/devices/portable_vendor.dm @@ -5,7 +5,7 @@ /obj/item/device/portable_vendor name = "\improper Automated Storage Briefcase" desc = "A suitcase-sized automated storage and retrieval system. Designed to efficiently store and selectively dispense small items." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/briefcases.dmi' icon_state = "secure" flags_atom = FPRINT|CONDUCT force = 8 @@ -21,10 +21,12 @@ var/use_points = TRUE var/fabricating = FALSE var/broken = FALSE + var/contraband = FALSE var/list/purchase_log = list() var/list/listed_products = list() + var/list/contraband_products = list() /// needs to be a time define var/special_prod_time_lock @@ -44,7 +46,7 @@ if(!ishuman(user)) return - var/mob/living/carbon/human/H = user + var/mob/living/carbon/human/human_user = user src.add_fingerprint(usr) @@ -56,17 +58,17 @@ to_chat(user, SPAN_WARNING("Access denied.")) return - var/obj/item/card/id/I = H.wear_id - if(!istype(I)) //not wearing an ID - to_chat(H, SPAN_WARNING("Access denied. No ID card detected")) + var/obj/item/card/id/idcard = human_user.get_idcard() + if(!idcard) //not wearing an ID + to_chat(human_user, SPAN_WARNING("Access denied. No ID card detected")) return - if(I.registered_name != H.real_name) - to_chat(H, SPAN_WARNING("Wrong ID card owner detected.")) + if(!idcard.check_biometrics(human_user)) + to_chat(human_user, SPAN_WARNING("Wrong ID card owner detected.")) return - if(req_role && I.rank != req_role) - to_chat(H, SPAN_WARNING("This device isn't for you.")) + if(req_role && idcard.rank != req_role) + to_chat(human_user, SPAN_WARNING("This device isn't for you.")) return @@ -97,9 +99,25 @@ var/available = points >= product[2] || !use_points available_items += list(list("index" = index, "name" = name, "cost" = cost, "available" = available, "color" = color, "description" = description)) + if(contraband) + var/non_contraband_product_count = length(listed_products) + for(var/index in 1 to length(contraband_products)) + var/product = contraband_products[index] + + var/name = product[1] + var/cost = product[2] + var/color = product[4] + var/description = product[5] + + if(cost > 0) + name += " ([cost] points)" + + var/available = points >= product[2] || !use_points + available_items += list(list("index" = index + non_contraband_product_count, "name" = name, "cost" = cost, "available" = available, "color" = color, "description" = description)) + .["vendor_name"] = name .["show_points"] = use_points - .["current_points"] = round(points) + .["current_points"] = floor(points) .["max_points"] = max_points .["displayed_records"] = available_items @@ -139,7 +157,13 @@ if(req_role && req_role != id.rank) to_chat(human_user, SPAN_WARNING("This device isn't for you.")) - var/list/product = listed_products[choice] + var/list/product + var/non_contraband_product_count = length(listed_products) + if(choice > non_contraband_product_count) + choice -= non_contraband_product_count + product = contraband_products[choice] + else + product = listed_products[choice] var/cost = product[2] @@ -154,7 +178,7 @@ if(special_prod_time_lock && (product[3] in special_prods)) if(ROUND_TIME < special_prod_time_lock) - to_chat(usr, SPAN_WARNING("[src] is still fabricating [product[1]]. Please wait another [round((SSticker.mode.round_time_lobby + special_prod_time_lock-world.time)/600)] minutes before trying again.")) + to_chat(usr, SPAN_WARNING("[src] is still fabricating [product[1]]. Please wait another [floor((SSticker.mode.round_time_lobby + special_prod_time_lock-world.time)/600)] minutes before trying again.")) return if(use_points) @@ -243,8 +267,11 @@ req_role = JOB_CORPORATE_LIAISON listed_products = list( list("INCENTIVES", 0, null, null, null), + list("Corporate Security Bodyguard", 50, /obj/item/handheld_distress_beacon/bodyguard, "white", "A beacon which sends the Corporate Security Division an encoded message informing them of your request for a Corporate Security Bodyguard."), + list("Corporate Lawyer Team", 50, /obj/item/handheld_distress_beacon/lawyer, "white", "A beacon which sends the Corporate Affairs Division an encoded message informing them of your request for a Corporate Lawyer, required when a contract signee breaks one of their clauses."), list("Neurostimulator Implant", 30, /obj/item/implanter/neurostim, "white", "Implant which regulates nociception and sensory function. Benefits include pain reduction, improved balance, and improved resistance to overstimulation and disorientation. To encourage compliance, negative stimulus is applied if the implant hears a (non-radio) spoken codephrase. Implant will be degraded by the body's immune system over time, and thus malfunction with gradually increasing frequency. Personal use not recommended."), list("Ultrazine Injector", 25, /obj/item/reagent_container/hypospray/autoinjector/ultrazine/liaison, "white", "Highly-addictive stimulant. Enhances short-term physical performance, particularly running speed. Effects last approximately 10 minutes per injection. More than two injections at a time will result in overdose. Withdrawal causes extreme discomfort and hallucinations. Long-term use results in halluciations and organ failure. Conditional distribution secures subject compliance. Not for personal use."), + list("Cyanide Pill", 20, /obj/item/reagent_container/pill/cyanide, "white", "A cyanide pill, also known as a suicide pill. For the easy way out."), list("Ceramic Plate", 10, /obj/item/trash/ceramic_plate, "white", "A ceramic plate, useful in a variety of situations."), list("Cash", 5, /obj/item/spacecash/c1000/counterfeit, "white", "$1000 USD, unmarked bills"), list("WY Encryption Key", 5, /obj/item/device/encryptionkey/WY, "white", "WY private comms encryption key, for conducting private business."), @@ -252,12 +279,13 @@ list("SMOKABLES", 0, null, null, null), list("Cigars", 5, /obj/item/storage/fancy/cigar, "white", "Case of premium cigars, untampered."), list("Cigarettes", 5, /obj/item/storage/fancy/cigarettes/wypacket, "white", "Weyland-Yutani Gold packet, for the more sophisticated taste."), - list("Zippo", 5, /obj/item/tool/lighter/zippo, "white", "A Zippo lighter, for those smoking in style."), + list("Zippo", 5, /obj/item/tool/lighter/zippo/executive, "white", "A Weyland-Yutani brand Zippo lighter, for those smoking in style."), list("DRINKABLES", 0, null, null, null), list("Sake", 5, /obj/item/reagent_container/food/drinks/bottle/sake, "white", "Weyland-Yutani Sake, for a proper business dinner."), list("Beer", 5, /obj/item/reagent_container/food/drinks/cans/aspen, "white", "Weyland-Yutani Aspen Beer, for a more casual night."), list("Drinking Glass", 1, /obj/item/reagent_container/food/drinks/drinkingglass, "white", "A Drinking Glass, because you have class."), + list("Weyland-Yutani Coffee Mug", 1, /obj/item/reagent_container/food/drinks/coffeecup/wy, "white", "A Weyland-Yutani coffee mug, for any Marines who want a Company souvenir."), list("STATIONARY", 0, null, null, null), list("WY pen, black", 1, /obj/item/tool/pen/clicky, "white", "A WY pen, for writing formally on the go."), @@ -274,4 +302,20 @@ list("AMMO", 0, null, null, null), list("ES-4 stun magazine", 10, /obj/item/ammo_magazine/pistol/es4, "white", "Holds 19 rounds of specialized Conductive 9mm."), + + list("RADIO KEYS", 0, null, null, null), + list("Alpha Squad", 15, /obj/item/device/encryptionkey/alpha, "white", "Radio Key for USCM Alpha Squad."), + list("Bravo Squad", 15, /obj/item/device/encryptionkey/bravo, "white", "Radio Key for USCM Bravo Squad."), + list("Charlie Squad", 15, /obj/item/device/encryptionkey/charlie, "white", "Radio Key for USCM Charlie Squad."), + list("Delta Squad", 15, /obj/item/device/encryptionkey/delta, "white", "Radio Key for USCM Delta Squad."), + list("Echo Squad", 15, /obj/item/device/encryptionkey/echo, "white", "Radio Key for USCM Echo Squad."), + list("Colony", 20, /obj/item/device/encryptionkey/colony, "white", "Pre-tuned Radio Key for local colony comms."), + ) + + contraband_products = list( + list("CONTRABAND", 0, null, null, null), + list("W-Y PMC", 20, /obj/item/device/encryptionkey/pmc, "white", "Radio Key for Weyland-Yutani PMC Combat Comms."), + list("CONTRABAND: Colonial Marshals", 40, /obj/item/device/encryptionkey/cmb, "white", "Radio Key for the CMB."), + list("CONTRABAND: Colonial Liberation Front", 40, /obj/item/device/encryptionkey/clf, "white", "Radio Key for known local CLF frequencies."), + list("CONTRABAND: Union of Progressive Peoples", 40, /obj/item/device/encryptionkey/upp, "white", "Radio Key for known UPP listening frequencies."), ) diff --git a/code/game/objects/items/devices/radio/electropack.dm b/code/game/objects/items/devices/radio/electropack.dm index a9edd5d717..871b266cfd 100644 --- a/code/game/objects/items/devices/radio/electropack.dm +++ b/code/game/objects/items/devices/radio/electropack.dm @@ -35,7 +35,7 @@ else if(href_list["code"]) code += text2num(href_list["code"]) - code = round(code) + code = floor(code) code = min(100, code) code = max(1, code) else diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index a945aa76b8..160f4beaff 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -120,7 +120,7 @@ /obj/item/device/encryptionkey/cmo name = "Chief Medical Officer's Encryption Key" icon_state = "cmo_key" - channels = list(RADIO_CHANNEL_MEDSCI = TRUE, RADIO_CHANNEL_COMMAND = TRUE, RADIO_CHANNEL_INTEL = TRUE) + channels = list(RADIO_CHANNEL_MEDSCI = TRUE, RADIO_CHANNEL_COMMAND = TRUE, RADIO_CHANNEL_INTEL = TRUE, SQUAD_MARINE_1 = FALSE, SQUAD_MARINE_2 = FALSE, SQUAD_MARINE_3 = FALSE, SQUAD_MARINE_4 = FALSE, SQUAD_MARINE_5 = FALSE, SQUAD_MARINE_CRYO = FALSE, RADIO_CHANNEL_ENGI = TRUE) /obj/item/device/encryptionkey/med name = "Medical Radio Encryption Key" diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index f00ba138ef..90ff96fbb6 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -36,7 +36,7 @@ var/headset_hud_on = FALSE var/locate_setting = TRACKER_SL var/misc_tracking = FALSE - var/hud_type = MOB_HUD_FACTION_USCM + var/hud_type = MOB_HUD_FACTION_MARINE var/default_freq ///The type of minimap this headset is added to @@ -60,8 +60,8 @@ verbs += /obj/item/device/radio/headset/proc/switch_tracker_target if(frequency) - for(var/cycled_channel in radiochannels) - if(radiochannels[cycled_channel] == frequency) + for(var/cycled_channel in GLOB.radiochannels) + if(GLOB.radiochannels[cycled_channel] == frequency) default_freq = cycled_channel RegisterSignal(SSdcs, COMSIG_GLOB_PLATOON_NAME_CHANGE, PROC_REF(rename_platoon)) @@ -194,7 +194,7 @@ /obj/item/device/radio/headset/proc/recalculateChannels() for(var/ch_name in channels) - SSradio.remove_object(src, radiochannels[ch_name]) + SSradio.remove_object(src, GLOB.radiochannels[ch_name]) secure_radio_connections[ch_name] = null channels = list() translate_apollo = FALSE @@ -225,14 +225,14 @@ locate_setting = initial(locate_setting) for (var/ch_name in channels) - secure_radio_connections[ch_name] = SSradio.add_object(src, radiochannels[ch_name], RADIO_CHAT) + secure_radio_connections[ch_name] = SSradio.add_object(src, GLOB.radiochannels[ch_name], RADIO_CHAT) SStgui.update_uis(src) /obj/item/device/radio/headset/set_frequency(new_frequency) ..() if(frequency) - for(var/cycled_channel in radiochannels) - if(radiochannels[cycled_channel] == frequency) + for(var/cycled_channel in GLOB.radiochannels) + if(GLOB.radiochannels[cycled_channel] == frequency) default_freq = cycled_channel /obj/item/device/radio/headset/equipped(mob/living/carbon/human/user, slot) @@ -248,7 +248,7 @@ RegisterSignal(user, COMSIG_MOB_DEATH, PROC_REF(update_minimap_icon)) RegisterSignal(user, COMSIG_HUMAN_SET_UNDEFIBBABLE, PROC_REF(update_minimap_icon)) if(headset_hud_on) - var/datum/mob_hud/H = huds[hud_type] + var/datum/mob_hud/H = GLOB.huds[hud_type] H.add_hud_to(user, src) //squad leader locator is no longer invisible on our player HUD. if(user.mind && (user.assigned_squad || misc_tracking) && user.hud_used && user.hud_used.locate_leader) @@ -267,7 +267,7 @@ COMSIG_MOB_STAT_SET_ALIVE )) if(istype(user) && user.has_item_in_ears(src)) //dropped() is called before the inventory reference is update. - var/datum/mob_hud/H = huds[hud_type] + var/datum/mob_hud/H = GLOB.huds[hud_type] H.remove_hud_from(user, src) //squad leader locator is invisible again if(user.hud_used && user.hud_used.locate_leader) @@ -299,7 +299,7 @@ if(ishuman(usr)) var/mob/living/carbon/human/user = usr if(user.has_item_in_ears(src)) //worn - var/datum/mob_hud/H = huds[hud_type] + var/datum/mob_hud/H = GLOB.huds[hud_type] if(headset_hud_on) H.add_hud_to(usr, src) if(user.mind && (misc_tracking || user.assigned_squad) && user.hud_used?.locate_leader) @@ -352,7 +352,7 @@ var/z_level = turf_gotten.z if(wearer.assigned_equipment_preset.always_minimap_visible == TRUE || wearer.stat == DEAD) //We show to all marines if we have this flag, separated by faction - if(hud_type == MOB_HUD_FACTION_USCM) + if(hud_type == MOB_HUD_FACTION_MARINE) marker_flags = MINIMAP_FLAG_USCM else if(hud_type == MOB_HUD_FACTION_UPP) marker_flags = MINIMAP_FLAG_UPP @@ -394,7 +394,7 @@ /obj/item/device/radio/headset/ai_integrated/receive_range(freq, level) if (disabledAi) - return -1 //Transciever Disabled. + return -1 //Transceiver Disabled. return ..(freq, level, 1) //MARINE HEADSETS @@ -427,6 +427,30 @@ var/datum/techtree/T = GET_TREE(TREE_MARINE) T.enter_mob(usr) +/obj/item/device/radio/headset/almayer/verb/give_medal_recommendation() + set name = "Give Medal Recommendation" + set desc = "Send a medal recommendation for approval by the Commanding Officer" + set category = "Object.Medals" + set src in usr + + var/mob/living/carbon/human/wearer = usr + if(!istype(wearer)) + return + var/obj/item/card/id/id_card = wearer.get_idcard() + if(!id_card) + return + + var/datum/paygrade/paygrade_actual = GLOB.paygrades[id_card.paygrade] + if(!paygrade_actual) + return + if(!istype(paygrade_actual, /datum/paygrade/marine)) //We only want marines to be able to recommend for medals + return + if(paygrade_actual.ranking < 3) //E1 starts at 0, so anyone above Corporal (ranking = 3) can recommend for medals + to_chat(wearer, SPAN_WARNING("Only officers or NCO's (ME4+) can recommend medals!")) + return + if(add_medal_recommendation(usr)) + to_chat(usr, SPAN_NOTICE("Recommendation successfully submitted.")) + /obj/item/device/radio/headset/almayer/ce name = "chief engineer's headset" desc = "The headset of the guy in charge of spooling engines, managing MTs, and tearing up the floor for scrap metal. Of robust and sturdy construction. Channels are as follows: :n - engineering, :v - marine command, :m - medical, :u - requisitions, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad." @@ -543,6 +567,7 @@ name = "corporate liaison radio headset" desc = "Used by the CL to convince people to sign NDAs. Channels are as follows: :v - marine command, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel, :y for WY." icon_state = "wy_headset" + maximum_keys = 5 initial_keys = list(/obj/item/device/encryptionkey/mcom/cl) /obj/item/device/radio/headset/almayer/reporter @@ -563,6 +588,21 @@ initial_keys = list(/obj/item/device/encryptionkey/cmpcom/cdrcom) volume = RADIO_VOLUME_CRITICAL +/obj/item/device/radio/headset/almayer/mcom/sea + name = "marine senior enlisted advisor headset" + desc = "Issued only to senior enlisted advisors. Channels are as follows: :v - marine command, :p - military police, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel" + icon_state = "mco_headset" + initial_keys = list(/obj/item/device/encryptionkey/cmpcom/cdrcom) + volume = RADIO_VOLUME_CRITICAL + misc_tracking = TRUE + locate_setting = TRACKER_CO + + inbuilt_tracking_options = list( + "Commanding Officer" = TRACKER_CO, + "Executive Officer" = TRACKER_XO, + "Chief MP" = TRACKER_CMP + ) + /obj/item/device/radio/headset/almayer/mcom/synth name = "marine synth headset" desc = "Issued only to USCM synthetics. Channels are as follows: :v - marine command, :p - military police, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel" @@ -834,7 +874,7 @@ set_frequency(frequency) for(var/ch_name in channels) - secure_radio_connections[ch_name] = SSradio.add_object(src, radiochannels[ch_name], RADIO_CHAT) + secure_radio_connections[ch_name] = SSradio.add_object(src, GLOB.radiochannels[ch_name], RADIO_CHAT) recalculateChannels() if(H.mind && H.hud_used && H.hud_used.locate_leader) //make SL tracker visible H.hud_used.locate_leader.alpha = 255 @@ -883,6 +923,14 @@ ignore_z = TRUE has_hud = TRUE +/obj/item/device/radio/headset/distress/forecon + name = "\improper Force Recon headset" + desc = "A headset given to FORECON marines. Channels are as follows: :g - public, :v - marine command, :a - alpha squad, :b - bravo squad, :c - charlie squad, :d - delta squad, :n - engineering, :m - medbay, :u - requisitions, :j - JTAC, :t - intel" + frequency = FORECON_FREQ + initial_keys = list(/obj/item/device/encryptionkey/public, /obj/item/device/encryptionkey/mcom) + ignore_z = TRUE + has_hud = TRUE + /obj/item/device/radio/headset/distress/pmc/hvh desc = "A special headset used by corporate personnel. Channels are as follows: :o - colony." initial_keys = list(/obj/item/device/encryptionkey/colony, /obj/item/device/encryptionkey/WY) @@ -1021,7 +1069,7 @@ icon_state = "cmb_headset" initial_keys = list(/obj/item/device/encryptionkey/colony) has_hud = TRUE - hud_type = MOB_HUD_FACTION_USCM + hud_type = MOB_HUD_FACTION_MARINE /obj/item/device/radio/headset/distress/CMB/limited name = "\improper Damaged CMB Earpiece" @@ -1066,7 +1114,7 @@ initial_keys = list(/obj/item/device/encryptionkey/soc/forecon) volume = RADIO_VOLUME_QUIET has_hud = TRUE - hud_type = MOB_HUD_FACTION_USCM + hud_type = MOB_HUD_FACTION_MARINE /obj/item/device/radio/headset/almayer/mcom/vc name = "marine vehicle crew radio headset" diff --git a/code/game/objects/items/devices/radio/intercom.dm b/code/game/objects/items/devices/radio/intercom.dm index 6aecacd279..489aa88277 100644 --- a/code/game/objects/items/devices/radio/intercom.dm +++ b/code/game/objects/items/devices/radio/intercom.dm @@ -81,3 +81,7 @@ /obj/item/device/radio/intercom/normandy name = "dropship normandy intercom" frequency = DS2_FREQ + +/obj/item/device/radio/intercom/saipan + name = "dropship saipan intercom" + frequency = DS3_FREQ diff --git a/code/game/objects/items/devices/radio/listening_bugs.dm b/code/game/objects/items/devices/radio/listening_bugs.dm new file mode 100644 index 0000000000..9492188a14 --- /dev/null +++ b/code/game/objects/items/devices/radio/listening_bugs.dm @@ -0,0 +1,276 @@ +#define DISGUISE_REMOVE "remove disguise" +#define DISGUISE_RADIO "radio" +#define DISGUISE_PEN "pen" +#define DISGUISE_FOUNTAIN_PEN "fountain pen" +#define DISGUISE_ACCESS_TUNER "access tuner" +#define DISGUISE_WHISTLE "whistle" +#define DISGUISE_MASS_SPEC "mass-spectrometer" +#define DISGUISE_CAMERA "camera" +#define DISGUISE_ZIPPO "zippo lighter" +#define DISGUISE_TAPE_RECORDER "tape recorder" + +/obj/item/device/radio/listening_bug + name = "listening device" + desc = "A small, and disguisable, listening device." + + icon = 'icons/obj/items/devices.dmi' + icon_state = "voice0" + item_state = "analyzer" + + w_class = SIZE_TINY + volume = RADIO_VOLUME_RAISED + + broadcasting = FALSE + listening = FALSE + frequency = BUG_A_FREQ + canhear_range = 2 + freqlock = TRUE + /// If the bug is disguised or not. + var/ready_to_disguise = FALSE + var/disguised = FALSE + /// Whether or not the bug can be used to listen to its own channel. + var/prevent_snooping = FALSE + /// The ID tag of the device, for identification. + var/nametag = "Device" + +/obj/item/device/radio/listening_bug/ui_data(mob/user) + var/list/data = list() + + data["broadcasting"] = broadcasting + data["listening"] = listening + data["frequency"] = frequency + data["freqlock"] = freqlock + + var/list/radio_channels = list() + + for(var/channel in channels) + var/channel_key = channel_to_prefix(channel) + radio_channels += list(list( + "name" = channel, + "status" = channels[channel] & FREQ_LISTENING, + "hotkey" = channel_key)) + + data["channels"] = radio_channels + + data["command"] = volume + data["useCommand"] = use_volume + data["subspace"] = subspace_transmission + data["subspaceSwitchable"] = subspace_switchable + data["headset"] = FALSE + + return data + +/obj/item/device/radio/listening_bug/ui_act(action, params, datum/tgui/ui, datum/ui_state/state) + switch(action) + if("listen") + if(prevent_snooping) + to_chat(usr, SPAN_WARNING("This device cannot receive transmissions!")) + return + listening = !listening + return + if("subspace") + if(!ishuman(usr)) + return + var/mob/living/carbon/human/user = usr + if(!check_access(user.wear_id) && !check_access(user.get_active_hand())) + to_chat(user, SPAN_WARNING("You need an authenticated ID card to change this function!")) + return + if(subspace_switchable) + subspace_transmission = !subspace_transmission + var/initial_prevent = initial(prevent_snooping) + if(initial_prevent) + prevent_snooping = TRUE + if(!subspace_transmission) + prevent_snooping = FALSE + channels = list() + return + ..() + +/obj/item/device/radio/listening_bug/hear_talk(mob/M as mob, msg, verb = "says", datum/language/speaking = null) + var/processed_verb = "[SPAN_RED("\[LSTN [nametag]\]")] [verb]" + if(broadcasting) + if(get_dist(src, M) <= 7) + talk_into(M, msg, null, processed_verb, speaking, listening_device = TRUE) + +/obj/item/device/radio/listening_bug/afterattack(atom/target_atom, mob/user as mob, proximity) + if(!ready_to_disguise) + return ..() + + var/obj/item/target_item = target_atom + if(!istype(target_item) || target_item.anchored || target_item.w_class >= SIZE_LARGE) + to_chat(user, SPAN_WARNING("You cannot disguise the listening device as this object.")) + return FALSE + + var/confirm = tgui_alert(user, "Are you sure you wish to disguise the listening device as '[target_item]'?", "Confirm Choice", list("Yes","No"), 20 SECONDS) + if(confirm != "Yes") + return FALSE + + icon = target_item.icon + name = target_item.name + desc = target_item.desc + icon_state = target_item.icon_state + item_state = target_item.item_state + flags_equip_slot = target_item.flags_equip_slot + w_class = target_item.w_class + ready_to_disguise = FALSE + disguised = TRUE + +/obj/item/device/radio/listening_bug/get_examine_text(mob/user) + if(disguised) + . = list() + var/size + switch(w_class) + if(SIZE_TINY) + size = "tiny" + if(SIZE_SMALL) + size = "small" + if(SIZE_MEDIUM) + size = "normal-sized" + . += "This is a [blood_color ? blood_color != COLOR_OIL ? "bloody " : "oil-stained " : ""][icon2html(src, user)][src.name]. It is a [size] item." + if(desc) + . += desc + if(desc_lore) + . += SPAN_NOTICE("This has an extended lore description.") + else + . = ..() + . += SPAN_INFO("[src] is set to frequency [get_bug_letter()].") + if(nametag != initial(nametag)) + . += SPAN_INFO("[src]'s nametag is set to '[nametag]'") + +/obj/item/device/radio/listening_bug/verb/change_disguise() + set name = "Change Disguise" + set category = "Object" + set src in usr + + if(usr.is_mob_incapacitated()) + to_chat(usr, SPAN_WARNING("You cannot do this while incapacitated!")) + return FALSE + + var/check = tgui_alert(usr, "Do you wish to change the disguise of this listening bug?", "Change Disguise?", list("Yes", "No")) + if(check != "Yes") + return FALSE + if(disguised) + var/remove_check = tgui_alert(usr, "Do you wish to remove the current disguise?", "Remove Disguise?", list("Yes","No")) + if(remove_check == "Yes") + icon = initial(icon) + name = initial(name) + desc = initial(desc) + icon_state = initial(icon_state) + item_state = initial(item_state) + flags_equip_slot = initial(flags_equip_slot) + w_class = initial(w_class) + disguised = FALSE + return TRUE + + to_chat(usr, SPAN_HELPFUL("You can now change the disguise of the device by selecting a normal, or smaller, sized object.")) + ready_to_disguise = TRUE + return TRUE + +/obj/item/device/radio/listening_bug/proc/get_bug_letter() + switch(frequency) + if(BUG_A_FREQ) + return "A" + if(BUG_B_FREQ) + return "B" + if(SEC_FREQ) + return "MP" + if(PVST_FREQ) + return "PVST" + if(HC_FREQ) + return "HC" + if(WY_FREQ, PMC_CCT_FREQ) + return "WY" + if(PMC_CMD_FREQ) + return "WYC" + if(UPP_CCT_FREQ, UPP_KDO_FREQ) + return "UPP" + else + return "X" + +#define OPTION_REMOVE "Remove Tag" +#define OPTION_NEW "New Tag" + +/obj/item/device/radio/listening_bug/verb/set_nametag() + set name = "Set Nametag" + set category = "Object" + set src in usr + + if(usr.is_mob_incapacitated()) + to_chat(usr, SPAN_WARNING("You cannot do this while incapacitated!")) + return FALSE + + var/check = tgui_alert(usr, "Do you wish to change the name tag of this listening bug?", "Change Name tag?", list("Yes", "No")) + if(check != "Yes") + return FALSE + + + var/new_nametag + var/remove + if(nametag != initial(nametag)) + remove = tgui_alert(usr, "Do you wish to remove the current nametag?", "Remove Nametag", list("Yes", "No")) + if(remove == "Yes") + new_nametag = initial(nametag) + else + new_nametag = tgui_input_text(usr, "What new name tag do you wish to use?", "New Name", initial(nametag), 6) + + if(!new_nametag || (new_nametag == nametag)) + return FALSE + + nametag = new_nametag + log_game("[key_name(usr)] set a listening device nametag to [new_nametag].") + return TRUE + +#undef OPTION_REMOVE +#undef OPTION_NEW + +/obj/item/device/radio/listening_bug/freq_a + frequency = BUG_A_FREQ + +/obj/item/device/radio/listening_bug/freq_b + frequency = BUG_B_FREQ + +/obj/item/device/radio/listening_bug/radio_linked + prevent_snooping = TRUE + subspace_transmission = TRUE + subspace_switchable = TRUE + +/obj/item/device/radio/listening_bug/radio_linked/mp + frequency = SEC_FREQ + req_one_access = list(ACCESS_MARINE_BRIG) + +/obj/item/device/radio/listening_bug/radio_linked/hc + frequency = HC_FREQ + req_one_access = list(ACCESS_MARINE_CO) +/obj/item/device/radio/listening_bug/radio_linked/hc/pvst + frequency = PVST_FREQ + +/obj/item/device/radio/listening_bug/radio_linked/wy + frequency = WY_FREQ + req_one_access = list(ACCESS_WY_EXEC, ACCESS_WY_SECURITY) + +/obj/item/device/radio/listening_bug/radio_linked/wy/pmc + frequency = PMC_CCT_FREQ + req_one_access = list(ACCESS_WY_EXEC, ACCESS_WY_SECURITY) + +/obj/item/device/radio/listening_bug/radio_linked/upp + frequency = UPP_CCT_FREQ + req_one_access = list(ACCESS_UPP_COMMANDO, ACCESS_UPP_SECURITY) + +/obj/item/device/radio/listening_bug/radio_linked/upp/commando + frequency = UPP_KDO_FREQ + req_one_access = list(ACCESS_UPP_COMMANDO) + + +// ENCRYPTION KEYS FOR LISTENING IN! +//REQURIES SUBSPACE ACTIVATION ON THE BUGS FIRST! +/obj/item/device/encryptionkey/listening_bug + desc = "A small encryption key for listening to a secret broadcasting device! Unlikely to work if the device is not using subspace communications!" + icon_state = "stripped_key" + +/obj/item/device/encryptionkey/listening_bug/freq_a + name = "Listening Bug Encryption Key (A)" + channels = list(RADIO_CHANNEL_BUG_A = TRUE) + +/obj/item/device/encryptionkey/listening_bug/freq_b + name = "Listening Bug Encryption Key (B)" + channels = list(RADIO_CHANNEL_BUG_B = TRUE) diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index c503edc8f9..2e693987f9 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -73,7 +73,7 @@ set_frequency(frequency) for (var/ch_name in channels) - secure_radio_connections[ch_name] = SSradio.add_object(src, radiochannels[ch_name], RADIO_CHAT) + secure_radio_connections[ch_name] = SSradio.add_object(src, GLOB.radiochannels[ch_name], RADIO_CHAT) flags_atom |= USES_HEARING @@ -196,7 +196,7 @@ return radio_connection // Otherwise, if a channel is specified, look for it. - if(channels && channels.len) + if(LAZYLEN(channels)) if (message_mode == RADIO_CHANNEL_DEPARTMENT ) // Department radio shortcut message_mode = channels[1] @@ -206,7 +206,7 @@ // If we were to send to a channel we don't have, drop it. return null -/obj/item/device/radio/talk_into(mob/living/M as mob, message, channel, verb = "says", datum/language/speaking = null) +/obj/item/device/radio/talk_into(mob/living/M as mob, message, channel, verb = "says", datum/language/speaking = null, listening_device = FALSE) if(!on) return // the device has to be on // Fix for permacell radios, but kinda eh about actually fixing them. if(!M || !message) return @@ -252,12 +252,6 @@ // --- Carbon Nonhuman --- else if(iscarbon(M)) // Nonhuman carbon mob jobname = "No id" - // --- AI --- - else if(isAI(M)) - jobname = "AI" - // --- Cyborg --- - else if(isrobot(M)) - jobname = "Cyborg" // --- Unidentifiable mob --- else jobname = "Unknown" @@ -297,11 +291,11 @@ if(use_volume) Broadcast_Message(connection, M, voicemask, pick(M.speak_emote), src, message, displayname, jobname, real_name, M.voice_name, - filter_type, 0, target_zs, connection.frequency, verb, speaking, volume) + filter_type, 0, target_zs, connection.frequency, verb, speaking, volume, listening_device) else Broadcast_Message(connection, M, voicemask, pick(M.speak_emote), src, message, displayname, jobname, real_name, M.voice_name, - filter_type, 0, target_zs, connection.frequency, verb, speaking, RADIO_VOLUME_QUIET) + filter_type, 0, target_zs, connection.frequency, verb, speaking, RADIO_VOLUME_QUIET, listening_device) /obj/item/device/radio/proc/get_target_zs(frequency) var/turf/position = get_turf(src) @@ -431,143 +425,13 @@ for (var/ch_name in channels) channels[ch_name] = 0 -/////////////////////////////// -//////////Borg Radios////////// -/////////////////////////////// -//Giving borgs their own radio to have some more room to work with -Sieve - -/obj/item/device/radio/borg - var/mob/living/silicon/robot/myborg = null // Cyborg which owns this radio. Used for power checks - var/obj/item/device/encryptionkey/keyslot = null//Borg radios can handle a single encryption key - var/shut_up = 0 - icon = 'icons/obj/items/robot_component.dmi' // Cyborgs radio icons should look like the component. - icon_state = "radio" - canhear_range = 3 - -/obj/item/device/radio/borg/talk_into() - ..() - if (isrobot(src.loc)) - var/mob/living/silicon/robot/R = src.loc - var/datum/robot_component/C = R.components["radio"] - R.cell_use_power(C.active_usage) - -/obj/item/device/radio/borg/attackby(obj/item/W as obj, mob/user as mob) -// ..() - if (!(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER) || (istype(W, /obj/item/device/encryptionkey)))) - return - - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) - if(keyslot) - - - for(var/ch_name in channels) - SSradio.remove_object(src, radiochannels[ch_name]) - secure_radio_connections[ch_name] = null - - - if(keyslot) - var/turf/T = get_turf(user) - if(T) - keyslot.forceMove(T) - keyslot = null - - recalculateChannels() - to_chat(user, "You pop out the encryption key in the radio!") - - else - to_chat(user, "This radio doesn't have any encryption keys!") - - if(istype(W, /obj/item/device/encryptionkey/)) - if(keyslot) - to_chat(user, "The radio can't hold another key!") - return - - if(!keyslot) - if(user.drop_held_item()) - W.forceMove(src) - keyslot = W - - recalculateChannels() - - return - -/obj/item/device/radio/borg/proc/recalculateChannels() - src.channels = list() - - var/mob/living/silicon/robot/D = src.loc - if(D.module) - for(var/ch_name in D.module.channels) - if(ch_name in src.channels) - continue - src.channels += ch_name - src.channels[ch_name] += D.module.channels[ch_name] - if(keyslot) - for(var/ch_name in keyslot.channels) - if(ch_name in src.channels) - continue - src.channels += ch_name - src.channels[ch_name] += keyslot.channels[ch_name] - - for (var/ch_name in src.channels) - secure_radio_connections[ch_name] = SSradio.add_object(src, radiochannels[ch_name], RADIO_CHAT) - - SStgui.update_uis(src) - -/obj/item/device/radio/borg/Topic(href, href_list) - if(usr.stat || !on) - return - if (href_list["mode"]) - if(subspace_transmission != 1) - subspace_transmission = 1 - to_chat(usr, "Subspace Transmission is disabled") - else - subspace_transmission = 0 - to_chat(usr, "Subspace Transmission is enabled") - if(subspace_transmission == 1)//Simple as fuck, clears the channel list to prevent talking/listening over them if subspace transmission is disabled - channels = list() - else - recalculateChannels() - if (href_list["shutup"]) // Toggle loudspeaker mode, AKA everyone around you hearing your radio. - shut_up = !shut_up - if(shut_up) - canhear_range = 0 - else - canhear_range = 3 - - ..() - -/obj/item/device/radio/borg/interact(mob/user as mob) - if(!on) - return - - var/dat = "[src]" - dat += {" - Speaker: [listening ? "Engaged" : "Disengaged"]
    - Frequency: - - - - - [format_frequency(frequency)] - + - +
    - Toggle Broadcast Mode
    - Toggle Loudspeaker
    - "} - - if(!subspace_transmission)//Don't even bother if subspace isn't turned on - for (var/ch_name in channels) - dat+=text_sec_channel(ch_name, channels[ch_name]) - dat+={"[text_wires()]
    "} - show_browser(user, dat, name, "radio") - return - - /obj/item/device/radio/proc/config(op) for (var/ch_name in channels) - SSradio.remove_object(src, radiochannels[ch_name]) + SSradio.remove_object(src, GLOB.radiochannels[ch_name]) secure_radio_connections = new channels = op for (var/ch_name in op) - secure_radio_connections[ch_name] = SSradio.add_object(src, radiochannels[ch_name], RADIO_CHAT) + secure_radio_connections[ch_name] = SSradio.add_object(src, GLOB.radiochannels[ch_name], RADIO_CHAT) /obj/item/device/radio/off listening = 0 diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 512ca8baad..0e7680cd2f 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -191,7 +191,7 @@ FORENSIC SCANNER user.show_message(SPAN_DANGER("Pressure: [round(env_pressure,0.1)] kPa"), 1) if(env_pressure > 0) user.show_message(SPAN_NOTICE("Gas Type: [env_gas]"), 1) - user.show_message(SPAN_NOTICE("Temperature: [round(env_temp-T0C)]°C"), 1) + user.show_message(SPAN_NOTICE("Temperature: [floor(env_temp-T0C)]°C"), 1) src.add_fingerprint(user) return @@ -276,7 +276,7 @@ FORENSIC SCANNER if(!QDELETED(O.reagents)) var/dat = "" - if(O.reagents.reagent_list.len > 0) + if(length(O.reagents.reagent_list) > 0) var/one_percent = O.reagents.total_volume / 100 for (var/datum/reagent/R in O.reagents.reagent_list) if(prob(reliability)) @@ -329,7 +329,7 @@ FORENSIC SCANNER if(!(istype(user, /mob/living/carbon/human) || SSticker) && SSticker.mode.name != "monkey") to_chat(user, SPAN_DANGER("You don't have the dexterity to do this!")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not know how to use the [name].")) return if(!istype(O)) @@ -340,6 +340,21 @@ FORENSIC SCANNER ex_potential = 0 int_potential = 0 rad_potential = 0 + + if(istype(O, /obj/item/ammo_magazine/flamer_tank)) + var/obj/item/ammo_magazine/flamer_tank/tank = O + if(!length(tank.reagents.reagent_list)) + to_chat(user, SPAN_NOTICE("No fuel detected in [O]")) + return + var/result + var/datum/reagent/chem = tank.reagents.reagent_list[1] + result += SPAN_BLUE("Fuel Statistics:") + result += SPAN_BLUE("
    Intensity: [min(chem.intensityfire, tank.max_intensity)]") + result += SPAN_BLUE("
    Duration: [min(chem.durationfire, tank.max_duration)]") + result += SPAN_BLUE("
    Range: [min(chem.rangefire, tank.max_range)]") + to_chat(user, SPAN_NOTICE("[result]")) + return + if(istype(O,/obj/item/explosive)) var/obj/item/explosive/E = O if(!E.customizable) @@ -381,7 +396,7 @@ FORENSIC SCANNER /obj/item/device/demo_scanner/proc/scan(obj/O) if(QDELETED(O.reagents)) return - if(O.reagents.reagent_list.len > 0) + if(length(O.reagents.reagent_list) > 0) for(var/datum/reagent/R in O.reagents.reagent_list) dat += SPAN_BLUE("
    [R.name]: [R.volume]u") if(R.explosive) diff --git a/code/game/objects/items/devices/suit_cooling.dm b/code/game/objects/items/devices/suit_cooling.dm deleted file mode 100644 index d388e06b9f..0000000000 --- a/code/game/objects/items/devices/suit_cooling.dm +++ /dev/null @@ -1,179 +0,0 @@ -/obj/item/device/suit_cooling_unit - name = "portable suit cooling unit" - desc = "A portable heat sink and liquid cooled radiator that can be hooked up to a space suit's existing temperature controls to provide industrial levels of cooling." - w_class = SIZE_LARGE - icon_state = "suitcooler0" - flags_equip_slot = SLOT_BACK //you can carry it on your back if you want, but it won't do anything unless attached to suit storage - - //copied from tank.dm - flags_atom = FPRINT|CONDUCT - force = 5 - throwforce = 10 - throw_speed = SPEED_FAST - throw_range = 4 - - - - var/on = 0 //is it turned on? - var/cover_open = 0 //is the cover open? - var/obj/item/cell/cell - var/max_cooling = 12 //in degrees per second - probably don't need to mess with heat capacity here - var/charge_consumption = 16.6 //charge per second at max_cooling - var/thermostat = T20C - - //TODO: make it heat up the surroundings when not in space - -/obj/item/device/suit_cooling_unit/Initialize(mapload, ...) - . = ..() - - START_PROCESSING(SSobj, src) - - cell = new/obj/item/cell(src) //comes with the crappy default power cell - high-capacity ones shouldn't be hard to find - -/obj/item/device/suit_cooling_unit/Destroy() - STOP_PROCESSING(SSobj, src) - return ..() - -/obj/item/device/suit_cooling_unit/process() - if (!on || !cell) - return - - if (!ismob(loc)) - return - - if (!attached_to_suit(loc)) //make sure they have a suit and we are attached to it - return - - var/mob/living/carbon/human/H = loc - - var/efficiency = 1 - H.get_pressure_weakness() //you need to have a good seal for effective cooling - var/env_temp = get_environment_temperature() //wont save you from a fire - var/temp_adj = min(H.bodytemperature - max(thermostat, env_temp), max_cooling) - - if (temp_adj < 0.5) //only cools, doesn't heat, also we don't need extreme precision - return - - var/charge_usage = (temp_adj/max_cooling)*charge_consumption - - H.bodytemperature -= temp_adj*efficiency - H.recalculate_move_delay = TRUE - - cell.use(charge_usage) - - if(cell.charge <= 0) - turn_off() - -/obj/item/device/suit_cooling_unit/proc/get_environment_temperature() - if (ishuman(loc)) - var/mob/living/carbon/human/H = loc - return H.return_temperature() - - var/turf/T = get_turf(src) - return T.return_temperature() - -/obj/item/device/suit_cooling_unit/proc/attached_to_suit(mob/M) - if (!ishuman(M)) - return 0 - - var/mob/living/carbon/human/H = M - - if (!H.wear_suit || H.s_store != src) - return 0 - - return 1 - -/obj/item/device/suit_cooling_unit/proc/turn_on() - if(!cell) - return - if(cell.charge <= 0) - return - - on = 1 - updateicon() - -/obj/item/device/suit_cooling_unit/proc/turn_off() - if (ismob(src.loc)) - var/mob/M = src.loc - M.show_message("\The [src] clicks and whines as it powers down.", SHOW_MESSAGE_AUDIBLE) //let them know in case it's run out of power. - on = 0 - updateicon() - -/obj/item/device/suit_cooling_unit/attack_self(mob/user) - ..() - - if(cover_open && cell) - if(ishuman(user)) - user.put_in_hands(cell) - else - cell.forceMove(get_turf(loc)) - - cell.add_fingerprint(user) - cell.update_icon() - - to_chat(user, "You remove the [src.cell].") - src.cell = null - updateicon() - return - - //TODO use a UI like the air tanks - if(on) - turn_off() - else - turn_on() - if (on) - to_chat(user, "You switch on the [src].") - -/obj/item/device/suit_cooling_unit/attackby(obj/item/W as obj, mob/user as mob) - if (HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) - if(cover_open) - cover_open = 0 - to_chat(user, "You screw the panel into place.") - else - cover_open = 1 - to_chat(user, "You unscrew the panel.") - updateicon() - return - - if (istype(W, /obj/item/cell)) - if(cover_open) - if(cell) - to_chat(user, "There is a [cell] already installed here.") - else - if(user.drop_held_item()) - W.forceMove(src) - cell = W - to_chat(user, "You insert the [cell].") - updateicon() - return - - return ..() - -/obj/item/device/suit_cooling_unit/proc/updateicon() - if (cover_open) - if (cell) - icon_state = "suitcooler1" - else - icon_state = "suitcooler2" - else - icon_state = "suitcooler0" - -/obj/item/device/suit_cooling_unit/get_examine_text(mob/user) - . = ..() - if (on) - if (attached_to_suit(src.loc)) - . += "It's switched on and running." - else - . += "It's switched on, but not attached to anything." - else - . += "It is switched off." - - if (cover_open) - if(cell) - . += "The panel is open, exposing the [cell]." - else - . += "The panel is open." - - if (cell) - . += "The charge meter reads [round(cell.percent())]%." - else - . += "It doesn't have a power cell installed." diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm index a4247c90a5..9521de9a03 100644 --- a/code/game/objects/items/devices/taperecorder.dm +++ b/code/game/objects/items/devices/taperecorder.dm @@ -49,7 +49,7 @@ return SPAN_NOTICE("PLAYING") else var/time = mytape.used_capacity / 10 //deciseconds / 10 = seconds - var/mins = round(time / 60) + var/mins = floor(time / 60) var/secs = time - mins * 60 return SPAN_NOTICE("[mins]m [secs]s") return SPAN_NOTICE("NO TAPE INSERTED") @@ -67,7 +67,7 @@ if(!playing && !recording) icons_available += list("Record" = image(radial_icon_file,"record")) icons_available += list("Play" = image(radial_icon_file,"play")) - if(canprint && mytape?.storedinfo.len) + if(canprint && length(mytape?.storedinfo)) icons_available += list("Print Transcript" = image(radial_icon_file,"print")) if(playing || recording) @@ -241,7 +241,7 @@ if(playing) return - if(mytape.storedinfo.len < 1) + if(length(mytape.storedinfo) < 1) audible_message(SPAN_MAROON("[icon2html(src, usr)] Tape has no data.")) return @@ -257,15 +257,15 @@ break if(playing == FALSE) break - if(mytape.storedinfo.len < i) + if(length(mytape.storedinfo) < i) audible_message(SPAN_MAROON("[icon2html(src, usr)] End of recording.")) break - var/list/heard = get_mobs_in_view(world_view_size, src) + var/list/heard = get_mobs_in_view(GLOB.world_view_size, src) langchat_speech(mytape.storedinfo[i], heard, GLOB.all_languages, skip_language_check = TRUE, additional_styles = list("langchat_small")) audible_message(SPAN_MAROON("[icon2html(src, usr)] [mytape.storedinfo[i]]"))//We want to display this properly, don't double encode - if(mytape.storedinfo.len < i + 1) + if(length(mytape.storedinfo) < i + 1) playsleepseconds = 1 sleep(1 SECONDS) else @@ -310,7 +310,7 @@ set name = "Print Transcript" set category = "Object" - if(!mytape.storedinfo.len) + if(!length(mytape.storedinfo)) return if(!can_use(usr)) return @@ -326,7 +326,7 @@ playsound(src, 'sound/items/taperecorder/taperecorder_print.ogg', 50, FALSE) var/obj/item/paper/sheet_of_paper = new /obj/item/paper(get_turf(src)) var/t1 = "Transcript:

    " - for(var/i in 1 to mytape.storedinfo.len) + for(var/i in 1 to length(mytape.storedinfo)) t1 += "[mytape.storedinfo[i]]
    " sheet_of_paper.info = t1 var/tapename = mytape.name @@ -368,7 +368,7 @@ var/unspooled = FALSE var/list/icons_available = list() var/radial_icon_file = 'icons/mob/radial_tape.dmi' - var/list/cassette_colours = list("blue", "gray", "green", "orange", "pink_stripe", "purple", "rainbow", "red_black", "red_stripe", "camo", "rising_sun", "orange", "blue", "ocean", "aesthetic") + var/list/cassette_colors = list("blue", "gray", "green", "orange", "pink_stripe", "purple", "rainbow", "red_black", "red_stripe", "camo", "rising_sun", "orange", "blue", "ocean", "aesthetic") var/list/cassette_map_themes = list("solaris", "ice", "lz", "dam", "worstmap") inherent_traits = list(TRAIT_ITEM_RENAME_SPECIAL) //used to make the rename component work specially. ///used to store the tape's name for one side and the other side @@ -382,7 +382,7 @@ if(unspooled) . += SPAN_WARNING("It's had all its magnetic tape pulled out! Maybe you can wind it back in with a screwdriver.") else - var/used_tape_percent = round((used_capacity / max_capacity)*100) + var/used_tape_percent = floor((used_capacity / max_capacity)*100) switch(used_tape_percent) if(0 to 5) . += SPAN_NOTICE("It's unused.") @@ -501,7 +501,7 @@ icon_state = "cassette_rainbow" /obj/item/tape/random/Initialize(mapload) - icon_state = "cassette_[pick(cassette_colours)]" + icon_state = "cassette_[pick(cassette_colors)]" . = ..() /obj/item/tape/regulation diff --git a/code/game/objects/items/devices/teleportation.dm b/code/game/objects/items/devices/teleportation.dm index 72a5c970b1..003f315280 100644 --- a/code/game/objects/items/devices/teleportation.dm +++ b/code/game/objects/items/devices/teleportation.dm @@ -48,8 +48,8 @@ if (usr.stat || usr.is_mob_restrained()) return var/turf/current_location = get_turf(usr)//What turf is the user on? - if(!current_location || is_admin_level(current_location.z))//If turf was not found or they're on z level 2. - to_chat(usr, "The [src] is malfunctioning.") + if(!current_location || should_block_game_interaction(current_location))//If turf was not found or they're on z level 2. + to_chat(usr, "[src] is malfunctioning.") return if ((usr.contents.Find(src) || (in_range(src, usr) && istype(src.loc, /turf)))) usr.set_interaction(src) @@ -140,11 +140,11 @@ ..() var/turf/current_location = get_turf(user)//What turf is the user on? - if(!current_location || is_admin_level(current_location.z))//If turf was not found or they're on z level 2 + if(!current_location || should_block_game_interaction(current_location))//If turf was not found or they're on z level 2 to_chat(user, SPAN_NOTICE("\The [src] is malfunctioning.")) return var/list/L = list( ) - for(var/obj/structure/machinery/teleport/hub/R in machines) + for(var/obj/structure/machinery/teleport/hub/R in GLOB.machines) var/obj/structure/machinery/computer/teleporter/com = locate(/obj/structure/machinery/computer/teleporter, locate(R.x - 2, R.y, R.z)) if (istype(com, /obj/structure/machinery/computer/teleporter) && com.locked && !com.one_time_use) if(R.icon_state == "tele1") @@ -152,11 +152,11 @@ else L["[com.id] (Inactive)"] = com.locked var/list/turfs = list( ) - for(var/turf/T in orange(10)) + for(var/turf/T as anything in ORANGE_TURFS(10, src)) if(T.x>world.maxx-8 || T.x<8) continue //putting them at the edge is dumb if(T.y>world.maxy-8 || T.y<8) continue turfs += T - if(turfs.len) + if(length(turfs)) L["None (Dangerous)"] = pick(turfs) var/t1 = tgui_input_list(user, "Please select a teleporter to lock in on.", "Hand Teleporter", L) if ((user.get_active_hand() != src || user.stat || user.is_mob_restrained())) @@ -177,4 +177,3 @@ P.creator = src src.add_fingerprint(user) return - diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index b3d4337279..6fc5269368 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -47,7 +47,7 @@ user.temp_drop_inv_item(A) attached_device = A A.forceMove(src) - to_chat(user, SPAN_NOTICE("You attach the [item] to the valve controls and secure it.")) + to_chat(user, SPAN_NOTICE("You attach [item] to the valve controls and secure it.")) A.holder = src A.toggle_secure() //this calls update_icon(), which calls update_icon() on the holder (i.e. the bomb). diff --git a/code/game/objects/items/devices/walkman.dm b/code/game/objects/items/devices/walkman.dm index 2bbcb802d4..bef8e8f5ff 100644 --- a/code/game/objects/items/devices/walkman.dm +++ b/code/game/objects/items/devices/walkman.dm @@ -95,17 +95,17 @@ /obj/item/device/walkman/proc/play() if(!current_song) - if(current_playlist.len > 0) + if(length(current_playlist) > 0) current_song = sound(current_playlist[pl_index], 0, 0, SOUND_CHANNEL_WALKMAN, volume) current_song.status = SOUND_STREAM else return paused = FALSE if(current_song.status & SOUND_PAUSED) - to_chat(current_listener,SPAN_INFO("Resuming [pl_index] of [current_playlist.len]")) + to_chat(current_listener,SPAN_INFO("Resuming [pl_index] of [length(current_playlist)]")) update_song(current_song,current_listener) else - to_chat(current_listener,SPAN_INFO("Now playing [pl_index] of [current_playlist.len]")) + to_chat(current_listener,SPAN_INFO("Now playing [pl_index] of [length(current_playlist)]")) update_song(current_song,current_listener,0) update_song(current_song,current_listener) @@ -146,11 +146,11 @@ /obj/item/device/walkman/proc/next_song(mob/user) - if(user.is_mob_incapacitated() || current_playlist.len == 0) return + if(user.is_mob_incapacitated() || length(current_playlist) == 0) return break_sound() - if(pl_index + 1 <= current_playlist.len) + if(pl_index + 1 <= length(current_playlist)) pl_index++ else pl_index = 1 @@ -269,6 +269,7 @@ button.name = name /datum/action/item_action/walkman/play_pause/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.attack_self(owner) @@ -282,6 +283,7 @@ button.name = name /datum/action/item_action/walkman/next_song/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.next_song(owner) @@ -295,6 +297,7 @@ button.name = name /datum/action/item_action/walkman/restart_song/action_activate() + . = ..() if(target) var/obj/item/device/walkman/WM = target WM.restart_song(owner) diff --git a/code/game/objects/items/devices/whistle.dm b/code/game/objects/items/devices/whistle.dm index 4eb61a48b9..07196a3e1b 100644 --- a/code/game/objects/items/devices/whistle.dm +++ b/code/game/objects/items/devices/whistle.dm @@ -5,10 +5,11 @@ w_class = SIZE_TINY flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_FACE - actions_types = list(/datum/action/item_action) + actions_types = list(/datum/action/item_action/toggle/use) var/volume = 60 - var/spamcheck = 0 + var/spam_cooldown_time = 10 SECONDS + COOLDOWN_DECLARE(spam_cooldown) /obj/item/device/whistle/attack_self(mob/user) ..() @@ -28,17 +29,17 @@ ..() /obj/item/device/whistle/proc/whistle_playsound(mob/user) - if (spamcheck) + if(!COOLDOWN_FINISHED(src, spam_cooldown)) + to_chat(user, SPAN_DANGER("You are out of breath after using [src]! Wait [COOLDOWN_SECONDSLEFT(src, spam_cooldown)] second\s.")) return user.visible_message(SPAN_WARNING("[user] blows into [src]!")) playsound(get_turf(src), 'sound/items/whistle.ogg', volume, 1, vary = 0) - spamcheck = 1 - addtimer(VARSET_CALLBACK(src, spamcheck, FALSE), 3 SECONDS) + COOLDOWN_START(src, spam_cooldown, spam_cooldown_time) /obj/item/device/whistle/MouseDrop(obj/over_object) - if(ishuman(usr) || isrobot(usr)) + if(ishuman(usr)) if(!usr.is_mob_restrained() && !usr.stat && usr.wear_mask == src) switch(over_object.name) @@ -50,7 +51,6 @@ usr.put_in_l_hand(src) add_fingerprint(usr) - /obj/item/device/hailer name = "hailer" desc = "Used by obese officers to save their breath for running." diff --git a/code/game/objects/items/explosives/explosive.dm b/code/game/objects/items/explosives/explosive.dm index 0c482e8db9..0be81ba8a0 100644 --- a/code/game/objects/items/explosives/explosive.dm +++ b/code/game/objects/items/explosives/explosive.dm @@ -24,6 +24,8 @@ "min_fire_rad" = 1, "min_fire_int" = 3, "min_fire_dur" = 3 ) var/falloff_mode = EXPLOSION_FALLOFF_SHAPE_LINEAR + /// Whether a star shape is possible when the intensity meets CHEM_FIRE_STAR_THRESHOLD + var/allow_star_shape = TRUE var/use_dir = FALSE var/angle = 360 var/has_blast_wave_dampener = FALSE; //Whether or not the casing can be toggle between different falloff_mode @@ -72,13 +74,13 @@ detonator=null assembly_stage = ASSEMBLY_EMPTY icon_state = base_icon_state - else if(containers.len) + else if(length(containers)) for(var/obj/B in containers) if(istype(B)) containers -= B user.put_in_hands(B) current_container_volume = 0 - desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]" + desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]" return cause_data = create_cause_data(initial(name), user) return TRUE @@ -126,11 +128,11 @@ det.forceMove(src) detonator = det assembly_stage = ASSEMBLY_UNLOCKED - desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]" + desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]" update_icon() else if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) if(assembly_stage == ASSEMBLY_UNLOCKED) - if(containers.len) + if(length(containers)) to_chat(user, SPAN_NOTICE("You lock the assembly.")) else to_chat(user, SPAN_NOTICE("You lock the empty assembly.")) @@ -141,7 +143,7 @@ else if(assembly_stage == ASSEMBLY_LOCKED) to_chat(user, SPAN_NOTICE("You unlock the assembly.")) playsound(loc, 'sound/items/Screwdriver.ogg', 25, 0, 6) - desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]" + desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]" assembly_stage = ASSEMBLY_UNLOCKED update_icon() else if(is_type_in_list(W, allowed_containers) && (!assembly_stage || assembly_stage == ASSEMBLY_UNLOCKED)) @@ -159,7 +161,7 @@ containers += W current_container_volume += W.reagents.maximum_volume assembly_stage = ASSEMBLY_UNLOCKED - desc = initial(desc) + "\n Contains [containers.len] containers[detonator?" and detonator":""]" + desc = initial(desc) + "\n Contains [length(containers)] containers[detonator?" and detonator":""]" else to_chat(user, SPAN_DANGER("\the [W] is empty.")) @@ -185,6 +187,7 @@ for(var/obj/item/reagent_container/glass/G in containers) if(G.reagents.total_volume) has_reagents = 1 + reagents.allow_star_shape = allow_star_shape break if(!has_reagents) @@ -207,7 +210,7 @@ reagents.source_mob = WEAKREF(cause_mob) msg_admin_niche("[key_name(cause_mob)] detonated custom explosive by [key_name(creator)]: [name] (REAGENTS: [reagent_list_text]) in [get_area(src)] [ADMIN_JMP(loc)]", loc.x, loc.y, loc.z) - if(containers.len < 2) + if(length(containers) < 2) reagents.trigger_volatiles = TRUE //Explode on the first transfer for(var/obj/item/reagent_container/glass/G in containers) @@ -256,14 +259,14 @@ to_chat(usr, SPAN_DANGER("This is beyond your understanding...")) return - if(!skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_DANGER("You have no idea how to use this...")) return if(falloff_mode == EXPLOSION_FALLOFF_SHAPE_LINEAR) falloff_mode = EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL - to_chat(usr, SPAN_NOTICE("You enable the [src]'s blast wave dampener, limiting the blast radius.")) + to_chat(usr, SPAN_NOTICE("You enable [src]'s blast wave dampener, limiting the blast radius.")) else falloff_mode = EXPLOSION_FALLOFF_SHAPE_LINEAR - to_chat(usr, SPAN_NOTICE("You disable the [src]'s blast wave dampener, restoring the blast radius to full.")) + to_chat(usr, SPAN_NOTICE("You disable [src]'s blast wave dampener, restoring the blast radius to full.")) playsound(loc, 'sound/items/Screwdriver2.ogg', 25, 0, 6) diff --git a/code/game/objects/items/explosives/grenades/chem_grenade.dm b/code/game/objects/items/explosives/grenades/chem_grenade.dm index e975603d45..48430aacec 100644 --- a/code/game/objects/items/explosives/grenades/chem_grenade.dm +++ b/code/game/objects/items/explosives/grenades/chem_grenade.dm @@ -1,5 +1,5 @@ /obj/item/explosive/grenade/custom - name = "Custom grenade" + name = "custom grenade" icon_state = "grenade_custom" desc = "A custom chemical grenade with an M40 casing. This one is made to fit into underslung grenade launchers, but can also be thrown by hand." w_class = SIZE_SMALL @@ -17,7 +17,7 @@ ..() /obj/item/explosive/grenade/custom/large - name = "Large Custom Grenade" + name = "large custom grenade" desc = "A custom chemical grenade with an M15 casing. This casing has a higher explosive capacity than the M40 variant." icon_state = "large_grenade_custom" allowed_containers = list(/obj/item/reagent_container/glass) @@ -33,7 +33,7 @@ /obj/item/explosive/grenade/custom/metal_foam - name = "Metal-Foam Grenade" + name = "metal-foam grenade" desc = "Used for emergency sealing of air breaches." assembly_stage = ASSEMBLY_LOCKED harmful = FALSE @@ -56,7 +56,7 @@ update_icon() /obj/item/explosive/grenade/custom/incendiary - name = "Incendiary Grenade" + name = "incendiary grenade" desc = "Used for clearing rooms of living things." assembly_stage = ASSEMBLY_LOCKED has_blast_wave_dampener = FALSE @@ -79,7 +79,7 @@ update_icon() /obj/item/explosive/grenade/custom/flare - name = "M40-F flare grenade" + name = "\improper M40-F flare grenade" desc = "Chemical flare in a grenade form, designed for compatibility with most standard issue launchers." assembly_stage = ASSEMBLY_LOCKED has_blast_wave_dampener = FALSE @@ -103,7 +103,7 @@ update_icon() /obj/item/explosive/grenade/custom/large/flare - name = "M15-F flare grenade" + name = "\improper M15-F flare grenade" desc = "Chemical flare in a grenade form, expanded variant. The casing is too large to fit most launchers." assembly_stage = ASSEMBLY_LOCKED has_blast_wave_dampener = FALSE diff --git a/code/game/objects/items/explosives/grenades/grenade.dm b/code/game/objects/items/explosives/grenades/grenade.dm index 6b79323367..b2f95646a9 100644 --- a/code/game/objects/items/explosives/grenades/grenade.dm +++ b/code/game/objects/items/explosives/grenades/grenade.dm @@ -36,7 +36,7 @@ to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!")) return FALSE - if(harmful && !user.allow_gun_usage) + if(harmful && ishuman(user) && !user.allow_gun_usage) to_chat(user, SPAN_WARNING("Your programming prevents you from using this!")) return FALSE diff --git a/code/game/objects/items/explosives/grenades/marines.dm b/code/game/objects/items/explosives/grenades/marines.dm index 36ba614041..b39d091dcd 100644 --- a/code/game/objects/items/explosives/grenades/marines.dm +++ b/code/game/objects/items/explosives/grenades/marines.dm @@ -97,6 +97,8 @@ falloff_mode = EXPLOSION_FALLOFF_SHAPE_LINEAR /obj/item/explosive/grenade/high_explosive/frag/toy + AUTOWIKI_SKIP(TRUE) + name = "toy HEFA grenade" desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. Wait, the labeling on the side indicates this is a toy, what the hell?" explosion_power = 0 @@ -419,9 +421,9 @@ qdel(src) /obj/item/explosive/grenade/phosphorus - name = "\improper M40 HPDP grenade" - desc = "The M40 HPDP is a small, but powerful phosphorus grenade. It is set to detonate in 2 seconds." - icon_state = "grenade_phos" + name = "\improper M40 CCDP grenade" + desc = "The M40 CCDP is a small, but powerful chemical compound grenade, similar in effect to WPDP. Word on the block says that the CCDP doesn't actually release White Phosphorus, but some other chemical developed in W-Y labs." + icon_state = "grenade_chem" det_time = 20 item_state = "grenade_phos" underslug_launchable = TRUE @@ -435,7 +437,9 @@ return ..() /obj/item/explosive/grenade/phosphorus/weak - desc = "The M40 HPDP is a small, but powerful phosphorus grenade. Word on the block says that the HPDP doesn't actually release White Phosphorus, but some other chemical developed in W-Y labs." + name = "\improper M40 WPDP grenade" + icon_state = "grenade_phos" + desc = "The M40 WPDP is a small, but powerful phosphorus grenade. It is set to detonate in 2 seconds." /obj/item/explosive/grenade/phosphorus/Initialize() . = ..() @@ -465,6 +469,187 @@ icon_state = "grenade_phos_clf" item_state = "grenade_phos_clf" +/obj/item/explosive/grenade/sebb + name = "\improper G2 Electroshock grenade" + desc = "This is a G2 Electroshock Grenade. Produced by Armat Battlefield Systems, it's sometimes referred to as the Sonic Electric Ball Breaker, \ + after a rash of incidents where the intense 1.2 gV sonic payload caused... rupturing. \ + A bounding landmine mode is available for this weapon which activates a small drill to self-bury itself when planted. Simply plant it at your feet and walk away." + icon_state = "grenade_sebb" + item_state = "grenade_sebb" + det_time = 3 SECONDS + underslug_launchable = TRUE + /// Maximum range of effect + var/range = 5 + /// Maximum possible damage before falloff. + var/damage = 110 + /// Factor to mutiply the effect range has on damage. + var/falloff_dam_reduction_mult = 20 + /// Post falloff calc damage is divided by this to get xeno slowdown + var/xeno_slowdown_numerator = 12 + /// Post falloff calc damage is multipled by this to get human stamina damage + var/human_stam_dam_factor = 0.9 + +/obj/item/explosive/grenade/sebb/get_examine_text(mob/user) + . = ..() + . += SPAN_NOTICE("To put into mine mode, plant at feet.") + +/obj/item/explosive/grenade/sebb/afterattack(atom/target, mob/user, proximity) + var/turf/user_turf = get_turf(user) + if(active) + return + + if(!isturf(target)) + return + + if(user.action_busy) + return + + if(target != get_turf(user)) + return + + if(locate(/obj/item/explosive/mine) in get_turf(src)) + to_chat(user, SPAN_WARNING("There already is a mine at this position!")) + return + + if(antigrief_protection && user.faction == FACTION_MARINE && explosive_antigrief_check(src, user)) + to_chat(user, SPAN_WARNING("\The [name]'s safe-area accident inhibitor prevents you from planting!")) + msg_admin_niche("[key_name(user)] attempted to plant \a [name] in [get_area(src)] [ADMIN_JMP(src.loc)]") + return + + if(ishuman(user)) + var/mob/living/carbon/human/human = user + if(!human.allow_gun_usage) + to_chat(user, SPAN_WARNING("Your programming prevents you from using this!")) + return + + if(user_turf && (user_turf.density || locate(/obj/structure/fence) in user_turf)) + to_chat(user, SPAN_WARNING("You can't plant a mine here.")) + return + + if(Adjacent(/obj/item/explosive/mine)) // bit more strict on this than normal mines + to_chat(user, SPAN_WARNING("Too close to another mine! Plant it somewhere less obvious.")) + return + + user.visible_message(SPAN_NOTICE("[user] starts deploying [src]."), + SPAN_NOTICE("You switch [src] into landmine mode and start placing it...")) + playsound(user.loc, 'sound/effects/thud.ogg', 40) + if(!do_after(user, 5 SECONDS * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + to_chat(user, SPAN_NOTICE("You stop planting.")) + return + + user.visible_message(SPAN_NOTICE("[user] finishes deploying [src]."), + SPAN_NOTICE("You finish deploying [src].")) + var/obj/item/explosive/mine/sebb/planted = new /obj/item/explosive/mine/sebb(get_turf(user)) + planted.activate_sensors() + planted.iff_signal = user.faction // assuring IFF is set + planted.pixel_x += rand(-5, 5) + planted.pixel_y += rand(-5, 5) + qdel(src) + +/obj/item/explosive/grenade/sebb/activate() + ..() + var/beeplen = 6 // Actual length of the sound rounded up to nearest decisecond + var/soundtime = det_time - beeplen + if(det_time < beeplen) // just play sound if detonation shorter than the sound + playsound(loc, 'sound/effects/sebb_explode.ogg', 90, 0, 10) + else + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound), loc, 'sound/effects/sebb_beep.ogg', 60, 0, 10), soundtime) + + + +/obj/item/explosive/grenade/sebb/prime() + var/datum/effect_system/spark_spread/sparka = new + var/turf/sebb_turf = get_turf(src) + var/list/full_range = oview(range, src) // Fill a list of stuff in the range so we won't have to spam oview + new /obj/effect/overlay/temp/sebb(sebb_turf) + + playsound(src.loc, 'sound/effects/sebb_explode.ogg', 90, 0, 10) + + for(var/obj/structure/machinery/defenses/sentry/sentry_stun in full_range) + sentry_stun.sentry_range = 0 // Temporarily "disable" the sentry by killing its range then setting it back. + new /obj/effect/overlay/temp/elec_arc(get_turf(sentry_stun)) // sprites are meh but we need visual indication that the sentry was messed up + addtimer(VARSET_CALLBACK(sentry_stun, sentry_range, initial(sentry_stun.sentry_range)), 5 SECONDS) // assure to set it back + sentry_stun.visible_message(SPAN_DANGER("[src]'s screen flickes violently as it's shocked!")) + sentry_stun.visible_message(SPAN_DANGER("[src] says \"ERROR: Fire control system resetting due to critical voltage flucuation!\"")) + sparka.set_up(1, 1, sentry_stun) + sparka.start() + + for(var/turf/turf in full_range) + if(prob(8)) + var/datum/effect_system/spark_spread/sparkTurf = new //using a different spike system because the spark system doesn't like when you reuse it for differant things + sparkTurf.set_up(1, 1, turf) + sparkTurf.start() + if(prob(10)) + new /obj/effect/overlay/temp/emp_sparks(turf) + + for(var/mob/living/carbon/mob in full_range) // no legacy mob support + + var/mob_dist = get_dist(src, mob) // Distance from mob + + /** + * Damage equation: damage - (mob distance * falloff_dam_reduction_mult) + * Example: A marine is 3 tiles out, the distance (3) is multiplied by falloff_dam_reduction_mult to get falloff. + * The raw damage is minused by falloff to get actual damage + */ + + var/falloff = mob_dist * falloff_dam_reduction_mult + var/damage_applied = damage - falloff // Final damage applied after falloff calc + sparka.set_up(1, 1, mob) + sparka.start() + shake_camera(mob, 1, 1) + if(ishuman(mob)) + var/mob/living/carbon/human/shocked_human = mob + if(isspeciessynth(shocked_human)) // Massive overvoltage to ungrounded robots is pretty bad + shocked_human.Stun(1 + (damage_applied/40)) + damage_applied *= 1.5 + new /obj/effect/overlay/temp/elec_arc(get_turf(shocked_human)) + to_chat(mob, SPAN_HIGHDANGER("All of your systems jam up as your main bus is overvolted by [damage_applied*2] volts.")) + mob.visible_message(SPAN_WARNING("[mob] seizes up from the elctric shock")) + shocked_human.take_overall_armored_damage(damage_applied, ARMOR_ENERGY, BURN, 90) // 90% chance to be on additional limbs + shocked_human.make_dizzy(damage_applied) + mob.apply_stamina_damage(damage_applied*human_stam_dam_factor) // Stamina damage + shocked_human.emote("pain") + else //nonhuman damage + slow + mob.apply_damage(damage_applied, BURN) + if((mob_dist < (range-3))) // 2 tiles around small superslow + mob.Superslow(2) + mob.Slow(damage_applied/11) + + if(mob_dist < 1) // Range based stuff, standing ontop of the equivalent of a canned lighting bolt should mess you up. + mob.Superslow(3) // Note that humans will likely be in stamcrit so it's always worse for them when ontop of it and we can just balancing it on xenos. + mob.eye_blurry = damage_applied/4 + mob.Daze(1) + else if((mob_dist < (range-1)) && (mob.mob_size < MOB_SIZE_XENO_VERY_SMALL)) // Flicker stun humans that are closer to the grenade and larvas too. + mob.apply_effect(1 + (damage_applied/100),WEAKEN) // 1 + damage/40 + mob.eye_blurry = damage_applied/8 + + else + to_chat(mob, SPAN_HIGHDANGER("Your entire body seizes up as a powerful shock courses through it!")) + + + new /obj/effect/overlay/temp/emp_sparks(mob) + mob.make_jittery(damage_applied*2) + empulse(src, 1, 2) // mini EMP + qdel(src) + + +/obj/item/explosive/grenade/sebb/primed + desc = "A G2 Electroshock Grenade, looks like it's quite angry! Oh shit!" + det_time = 7 // 0.7 seconds to blow up. We want them to get caught if they go through. + +/obj/item/explosive/grenade/sebb/primed/Initialize() + . = ..() + src.visible_message(SPAN_HIGHDANGER("[src] pops out of the ground!")) + activate() + +/obj/effect/overlay/temp/sebb + icon = 'icons/effects/sebb.dmi' + icon_state = "sebb_explode" + layer = ABOVE_LIGHTING_PLANE + pixel_x = -175 // We need these offsets to force center the sprite because BYOND is dumb + pixel_y = -175 + appearance_flags = RESET_COLOR + /* //================================================ Nerve Gas Grenades @@ -716,6 +901,8 @@ return /obj/item/explosive/grenade/high_explosive/holy_hand_grenade + AUTOWIKI_SKIP(TRUE) + name = "\improper Holy Hand Grenade of Antioch" desc = "And Saint Attila raised the hand grenade up on high, saying, \"O LORD, bless this Thy hand grenade that with it Thou mayest blow Thine enemies to tiny bits, in Thy mercy.\" And the LORD did grin and the people did feast upon the lambs and sloths and carp and anchovies... And the LORD spake, saying, \"First shalt thou take out the Holy Pin, then shalt thou count to three, no more, no less. Three shall be the number thou shalt count, and the number of the counting shall be three. Four shalt thou not count, neither count thou two, excepting that thou then proceed to three. Five is right out. Once the number three, being the third number, be reached, then lobbest thou thy Holy Hand Grenade of Antioch towards thy foe, who, being naughty in My sight, shall snuff it.\"" icon_state = "grenade_antioch" @@ -737,11 +924,11 @@ det_time = 20 underslug_launchable = TRUE harmful = FALSE - var/foam_metal_type = FOAM_METAL_TYPE_ALUMINIUM + var/foam_metal_type = FOAM_METAL_TYPE_IRON /obj/item/explosive/grenade/metal_foam/prime() var/datum/effect_system/foam_spread/s = new() - s.set_up(12, get_turf(src), metal_foam = foam_metal_type) //Metalfoam 1 for aluminum foam, 2 for iron foam (Stronger), 12 amt = 2 tiles radius (5 tile length diamond) + s.set_up(12, get_turf(src), metal_foam = foam_metal_type) //12 amt = 2 tiles radius (5 tile length diamond) s.start() qdel(src) diff --git a/code/game/objects/items/explosives/mine.dm b/code/game/objects/items/explosives/mine.dm index 57dd23bf4e..6e7aa2bdcc 100644 --- a/code/game/objects/items/explosives/mine.dm +++ b/code/game/objects/items/explosives/mine.dm @@ -14,6 +14,7 @@ throw_speed = SPEED_VERY_FAST unacidable = TRUE flags_atom = FPRINT|CONDUCT + antigrief_protection = TRUE allowed_sensors = list(/obj/item/device/assembly/prox_sensor) max_container_volume = 120 reaction_limits = list( "max_ex_power" = 105, "base_ex_falloff" = 60, "max_ex_shards" = 32, @@ -71,7 +72,12 @@ if(active || user.action_busy) return - user.visible_message(SPAN_NOTICE("[user] starts deploying [src]."), \ + if(antigrief_protection && user.faction == FACTION_MARINE && explosive_antigrief_check(src, user)) + to_chat(user, SPAN_WARNING("\The [name]'s safe-area accident inhibitor prevents you from planting!")) + msg_admin_niche("[key_name(user)] attempted to plant \a [name] in [get_area(src)] [ADMIN_JMP(src.loc)]") + return + + user.visible_message(SPAN_NOTICE("[user] starts deploying [src]."), SPAN_NOTICE("You start deploying [src].")) if(!do_after(user, 40, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) user.visible_message(SPAN_NOTICE("[user] stops deploying [src]."), \ @@ -123,7 +129,7 @@ if(prob(75)) triggered = TRUE if(tripwire) - var/direction = reverse_dir[src.dir] + var/direction = GLOB.reverse_dir[src.dir] var/step_direction = get_step(src, direction) tripwire.forceMove(step_direction) prime() @@ -197,7 +203,7 @@ return if(L.stat == DEAD) return - if(L.get_target_lock(iff_signal) || isrobot(L)) + if(L.get_target_lock(iff_signal)) return if(HAS_TRAIT(L, TRAIT_ABILITY_BURROWED)) return @@ -241,7 +247,7 @@ //We move the tripwire randomly in either of the four cardinal directions triggered = TRUE if(tripwire) - var/direction = pick(cardinal) + var/direction = pick(GLOB.cardinals) var/step_direction = get_step(src, direction) tripwire.forceMove(step_direction) prime() @@ -266,6 +272,8 @@ /obj/effect/mine_tripwire/Destroy() if(linked_claymore) + if(linked_claymore.tripwire == src) + linked_claymore.tripwire = null linked_claymore = null . = ..() @@ -309,9 +317,25 @@ map_deployed = TRUE /obj/item/explosive/mine/custom - name = "Custom mine" + name = "custom mine" desc = "A custom chemical mine built from an M20 casing." icon_state = "m20_custom" customizable = TRUE matter = list("metal" = 3750) has_blast_wave_dampener = TRUE + +/obj/item/explosive/mine/sebb + name = "\improper G2 Electroshock grenade" + icon_state = "grenade_sebb_planted" + desc = "A G2 electroshock grenade planted as a landmine." + pixel_y = -5 + anchored = TRUE // this is supposed to be planeted already when spawned + +/obj/item/explosive/mine/sebb/disarm() + . = ..() + new /obj/item/explosive/grenade/sebb(get_turf(src)) + qdel(src) + +/obj/item/explosive/mine/sebb/prime() + new /obj/item/explosive/grenade/sebb/primed(get_turf(src)) + qdel(src) diff --git a/code/game/objects/items/explosives/plastic.dm b/code/game/objects/items/explosives/plastic.dm index ac0a2263cd..c6a3dfaed5 100644 --- a/code/game/objects/items/explosives/plastic.dm +++ b/code/game/objects/items/explosives/plastic.dm @@ -24,6 +24,9 @@ var/list/breachable = list(/obj/structure/window, /turf/closed, /obj/structure/machinery/door, /obj/structure/mineral_door , /obj/structure/cargo_container) antigrief_protection = TRUE //Should it be checked by antigrief? + var/req_skill = SKILL_ENGINEER + var/req_skill_level = SKILL_ENGINEER_NOVICE + /obj/item/explosive/plastic/Destroy() disarm() return ..() @@ -43,7 +46,7 @@ . = ..() /obj/item/explosive/plastic/attack_self(mob/user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) return @@ -65,7 +68,7 @@ if(user.action_busy || !flag) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, req_skill, req_skill_level)) to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) return if(!can_place(user, target)) @@ -184,7 +187,7 @@ //vehicle interior stuff checks if(SSinterior.in_interior(target)) - to_chat(user, SPAN_WARNING("It's too cramped in here to deploy \the [src].")) + to_chat(user, SPAN_WARNING("It's too cramped in here to deploy [src].")) return FALSE if(istype(target, /obj/effect) || istype(target, /obj/structure/machinery)) @@ -195,7 +198,7 @@ if(istype(target, /turf/closed/wall)) var/turf/closed/wall/W = target if(W.hull) - to_chat(user, SPAN_WARNING("You are unable to stick \the [src] to the [W]!")) + to_chat(user, SPAN_WARNING("You are unable to stick [src] to [W]!")) return FALSE if(istype(target, /obj/structure/window)) @@ -301,7 +304,7 @@ prime(TRUE) /obj/item/explosive/plastic/custom - name = "Custom plastic explosive" + name = "custom plastic explosive" desc = "A custom plastic explosive." icon_state = "custom_plastic_explosive" overlay_image = "custom_plastic_explosive_sensing" @@ -321,6 +324,8 @@ penetration = 0.60 deploying_time = 10 var/shrapnel_volume = 40 + var/shrapnel_type = /datum/ammo/bullet/shrapnel/metal + var/explosion_strength = 60 /obj/item/explosive/plastic/breaching_charge/can_place(mob/user, atom/target) if(!is_type_in_list(target, breachable))//only items on the list are allowed @@ -347,13 +352,24 @@ /obj/item/explosive/plastic/breaching_charge/handle_explosion(turf/target_turf, dir, cause_data) var/explosion_target = get_step(target_turf, dir) - create_shrapnel(explosion_target, shrapnel_volume, dir, angle,/datum/ammo/bullet/shrapnel/metal, cause_data) + create_shrapnel(explosion_target, shrapnel_volume, dir, angle, shrapnel_type, cause_data) addtimer(CALLBACK(src, PROC_REF(trigger_explosion), target_turf, dir, cause_data), 1) /obj/item/explosive/plastic/breaching_charge/proc/trigger_explosion(turf/target_turf, dir, cause_data) - cell_explosion(target_turf, 60, 60, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, dir, cause_data) + cell_explosion(target_turf, explosion_strength, explosion_strength, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, dir, cause_data) qdel(src) +/obj/item/explosive/plastic/breaching_charge/rubber + name = "X17 riot charge" + desc = "An explosive device used to break into areas while protecting the user from the blast. Unlike the standard breaching charge, the X17 deploys a cone spray of rubber pellets to incapacitate rather than kill." + icon_state = "riot-charge" + overlay_image = "riot-active" + shrapnel_volume = 20 + shrapnel_type = /datum/ammo/bullet/shrapnel/rubber + req_skill = SKILL_POLICE + req_skill_level = SKILL_POLICE_SKILLED + antigrief_protection = FALSE + /obj/item/explosive/plastic/breaching_charge/plasma name = "plasma charge" desc = "An alien explosive device. Who knows what it might do." @@ -367,6 +383,8 @@ deploying_time = 10 flags_item = NOBLUDGEON|ITEM_PREDATOR shrapnel_volume = 10 + shrapnel_type = /datum/ammo/bullet/shrapnel/plasma + explosion_strength = 90 /obj/item/explosive/plastic/breaching_charge/plasma/can_place(mob/user, atom/target) if(!HAS_TRAIT(user, TRAIT_YAUTJA_TECH)) @@ -374,11 +392,3 @@ return FALSE . = ..() -/obj/item/explosive/plastic/breaching_charge/plasma/handle_explosion(turf/target_turf, dir, cause_data) - var/explosion_target = get_step(target_turf, dir) - create_shrapnel(explosion_target, shrapnel_volume, dir, angle,/datum/ammo/bullet/shrapnel/plasma, cause_data) - addtimer(CALLBACK(src, PROC_REF(trigger_explosion), target_turf, dir, cause_data), 1) - -/obj/item/explosive/plastic/breaching_charge/plasma/trigger_explosion(turf/target_turf, dir, cause_data) - cell_explosion(target_turf, 90, 90, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, dir, cause_data) - qdel(src) diff --git a/code/game/objects/items/explosives/warhead.dm b/code/game/objects/items/explosives/warhead.dm index 9825d74831..1b7ec1ed4f 100644 --- a/code/game/objects/items/explosives/warhead.dm +++ b/code/game/objects/items/explosives/warhead.dm @@ -9,10 +9,11 @@ name = "84mm rocket warhead" desc = "A custom warhead meant for 84mm rocket shells." icon_state = "warhead_rocket" - max_container_volume = 180 + max_container_volume = 210 + allow_star_shape = FALSE matter = list("metal" = 11250) //3 sheets - reaction_limits = list( "max_ex_power" = 300, "base_ex_falloff" = 120,"max_ex_shards" = 64, - "max_fire_rad" = 7, "max_fire_int" = 30, "max_fire_dur" = 36, + reaction_limits = list( "max_ex_power" = 240, "base_ex_falloff" = 90,"max_ex_shards" = 64, + "max_fire_rad" = 6, "max_fire_int" = 40, "max_fire_dur" = 48, "min_fire_rad" = 2, "min_fire_int" = 4, "min_fire_dur" = 5 ) has_blast_wave_dampener = TRUE diff --git a/code/game/objects/items/frames/alarms.dm b/code/game/objects/items/frames/alarms.dm index f34b18d682..d665df65fc 100644 --- a/code/game/objects/items/frames/alarms.dm +++ b/code/game/objects/items/frames/alarms.dm @@ -24,7 +24,7 @@ Code shamelessly copied from apc_frame return var/ndir = get_dir(on_wall,usr) - if (!(ndir in cardinal)) + if (!(ndir in GLOB.cardinals)) return var/turf/loc = get_turf(usr) @@ -67,7 +67,7 @@ Code shamelessly copied from apc_frame return var/ndir = get_dir(on_wall,usr) - if (!(ndir in cardinal)) + if (!(ndir in GLOB.cardinals)) return var/turf/loc = get_turf(usr) diff --git a/code/game/objects/items/frames/camera.dm b/code/game/objects/items/frames/camera.dm index e367e64e64..5283540ea3 100644 --- a/code/game/objects/items/frames/camera.dm +++ b/code/game/objects/items/frames/camera.dm @@ -89,7 +89,7 @@ return var/list/tempnetwork = splittext(input, ",") - if(tempnetwork.len < 1) + if(length(tempnetwork) < 1) to_chat(usr, "No network found please hang up and try your call again.") return @@ -103,12 +103,7 @@ C.assembly = src C.auto_turn() - C.network = uniquelist(tempnetwork) - tempnetwork = difflist(C.network,RESTRICTED_CAMERA_NETWORKS) - if(!tempnetwork.len)//Camera isn't on any open network - remove its chunk from AI visibility. - cameranet.removeCamera(C) - C.c_tag = input for(var/i = 5; i >= 0; i -= 1) @@ -138,7 +133,7 @@ return // Taking out upgrades - else if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR) && upgrades.len) + else if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR) && length(upgrades)) var/obj/U = locate(/obj) in upgrades if(U) to_chat(user, "You unattach an upgrade from the assembly.") @@ -167,7 +162,7 @@ to_chat(user, SPAN_WARNING("\The [WT] needs to be on!")) return 0 - to_chat(user, SPAN_NOTICE("You start to weld the [src]..")) + to_chat(user, SPAN_NOTICE("You start to weld [src]..")) playsound(src.loc, 'sound/items/Welder.ogg', 25, 1) WT.eyecheck(user) if(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) diff --git a/code/game/objects/items/frames/frame.dm b/code/game/objects/items/frames/frame.dm index 9c039821cb..06b1c14e46 100644 --- a/code/game/objects/items/frames/frame.dm +++ b/code/game/objects/items/frames/frame.dm @@ -23,7 +23,7 @@ if (get_dist(on_wall,usr)>1) return var/ndir = get_dir(usr,on_wall) - if (!(ndir in cardinal)) + if (!(ndir in GLOB.cardinals)) return var/turf/loc = get_turf(usr) var/area/A = get_area(loc) diff --git a/code/game/objects/items/frames/light_fixtures.dm b/code/game/objects/items/frames/light_fixtures.dm index 35f800f28f..b52e19492c 100644 --- a/code/game/objects/items/frames/light_fixtures.dm +++ b/code/game/objects/items/frames/light_fixtures.dm @@ -21,7 +21,7 @@ if (get_dist(on_wall,usr)>1) return var/ndir = get_dir(usr,on_wall) - if (!(ndir in cardinal)) + if (!(ndir in GLOB.cardinals)) return var/turf/loc = get_turf(usr) if (!istype(loc, /turf/open/floor)) diff --git a/code/game/objects/items/frames/matrix.dm b/code/game/objects/items/frames/matrix.dm index 3a8464f585..46d1219090 100644 --- a/code/game/objects/items/frames/matrix.dm +++ b/code/game/objects/items/frames/matrix.dm @@ -18,7 +18,7 @@ /obj/item/frame/matrix_frame/attackby(obj/item/W, mob/user as mob) switch(state) if(ASSEMBLY_EMPTY) - if(istype(W, /obj/item/reagent_container/glass/beaker/vial) && W.reagents.total_volume == 30 && W.reagents.reagent_list.len == 1) + if(istype(W, /obj/item/reagent_container/glass/beaker/vial) && W.reagents.total_volume == 30 && length(W.reagents.reagent_list) == 1) user.drop_held_item(W) W.forceMove(src) state = ASSEMBLY_UNLOCKED @@ -45,7 +45,7 @@ else if(W.reagents.total_volume < 30) to_chat(user, SPAN_WARNING("The testing indicator lights up with red! The container requires to be fully filled!")) return - else if (W.reagents.reagent_list.len > 1) + else if (length(W.reagents.reagent_list) > 1) to_chat(user, SPAN_WARNING("The testing indicator lights up with red! The container requires a pure sample!")) if(ASSEMBLY_UNLOCKED) diff --git a/code/game/objects/items/frames/table_rack.dm b/code/game/objects/items/frames/table_rack.dm index c7aa53a2c4..95ab438697 100644 --- a/code/game/objects/items/frames/table_rack.dm +++ b/code/game/objects/items/frames/table_rack.dm @@ -59,7 +59,10 @@ if(istype(get_area(loc), /area/shuttle)) //HANGAR/SHUTTLE BUILDING to_chat(user, SPAN_WARNING("No. This area is needed for the dropship.")) return - + for(var/obj/object in OT) + if(object.density) + to_chat(user, SPAN_WARNING("[object] is blocking you from constructing [src]!")) + return if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) to_chat(user, SPAN_WARNING("Hold still while you're constructing a table!")) return @@ -100,6 +103,7 @@ desc = "A kit for a table, including a large, flat wooden surface and four legs. Some assembly required." icon_state = "wood_tableparts" flags_atom = FPRINT + matter = null table_type = /obj/structure/surface/table/woodentable /obj/item/frame/table/wood/attackby(obj/item/W, mob/user) @@ -140,6 +144,7 @@ desc = "A kit for a table, including a large, flat wooden and carpet surface and four legs. Some assembly required." icon_state = "gamble_tableparts" flags_atom = null + matter = null table_type = /obj/structure/surface/table/gamblingtable /obj/item/frame/table/gambling/attackby(obj/item/W as obj, mob/user as mob) diff --git a/code/game/objects/items/fulton.dm b/code/game/objects/items/fulton.dm index c28d5e5d5a..4b1cb48523 100644 --- a/code/game/objects/items/fulton.dm +++ b/code/game/objects/items/fulton.dm @@ -1,7 +1,7 @@ // Fulton baloon deployment devices, used to gather and send crates, dead things, and other objective-based items into space for collection. /// A list of fultons currently airborne. -var/global/list/deployed_fultons = list() +GLOBAL_LIST_EMPTY(deployed_fultons) /obj/item/stack/fulton name = "fulton recovery device" @@ -36,7 +36,7 @@ var/global/list/deployed_fultons = list() attached_atom = null if(original_location) original_location = null - deployed_fultons -= src + GLOB.deployed_fultons -= src . = ..() /obj/item/stack/fulton/update_icon() @@ -156,7 +156,7 @@ var/global/list/deployed_fultons = list() attached_atom.forceMove(space_tile) forceMove(attached_atom) - deployed_fultons += src + GLOB.deployed_fultons += src attached_atom.overlays -= I addtimer(CALLBACK(src, PROC_REF(return_fulton), original_location), 150 SECONDS) @@ -171,6 +171,14 @@ var/global/list/deployed_fultons = list() attached_atom.anchored = FALSE playsound(attached_atom.loc,'sound/effects/bamf.ogg', 50, 1) + /* + if(GLOB.intel_system) + if (!LAZYISIN(GLOB.failed_fultons, attached_atom)) + //Giving marines an objective to retrieve that fulton (so they'd know what they lost and where) + var/datum/cm_objective/retrieve_item/fulton/objective = new /datum/cm_objective/retrieve_item/fulton(attached_atom) + GLOB.intel_system.store_single_objective(objective) + */ + qdel(reservation) qdel(src) return diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 2137b41d86..af71b806ed 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -1,124 +1,162 @@ -/obj/item/handcuffs - name = "handcuffs" - desc = "Use this to keep prisoners in line." - gender = PLURAL - icon = 'icons/obj/items/items.dmi' - icon_state = "handcuff" - flags_atom = FPRINT|CONDUCT - flags_equip_slot = SLOT_WAIST - throwforce = 5 - w_class = SIZE_SMALL - throw_speed = SPEED_SLOW - throw_range = 5 - matter = list("metal" = 500) - - var/dispenser = 0 +/obj/item/restraint + /// SLOT_HANDS or SLOT_LEGS, for handcuffs or legcuffs + var/target_zone = SLOT_HANDS + /// How long to break out var/breakouttime = 1 MINUTES /// determines if handcuffs will be deleted on removal var/single_use = 0 var/cuff_sound = 'sound/weapons/handcuffs.ogg' /// how many deciseconds it takes to cuff someone var/cuff_delay = 4 SECONDS + /// If can be applied to people manually + var/manual = TRUE -/obj/item/handcuffs/attack(mob/living/carbon/C, mob/user) - if(!istype(C)) +/obj/item/restraint/attack(mob/living/carbon/attacked_carbon, mob/user) + if(!istype(attacked_carbon) || !manual) return ..() - if (!istype(user, /mob/living/carbon/human)) + if (!ishuman(user)) to_chat(user, SPAN_DANGER("You don't have the dexterity to do this!")) return - if(!C.handcuffed) - place_handcuffs(C, user) - -/obj/item/handcuffs/get_mob_overlay(mob/user_mob, slot) - var/image/ret = ..() - - var/image/handcuffs = overlay_image('icons/mob/mob.dmi', "handcuff1", color, RESET_COLOR) - ret.overlays += handcuffs - - return ret - -/obj/item/handcuffs/proc/place_handcuffs(mob/living/carbon/target, mob/user) + switch(target_zone) + if(SLOT_HANDS) + if(!attacked_carbon.handcuffed) + place_handcuffs(attacked_carbon, user) + if(SLOT_LEGS) + if(!attacked_carbon.legcuffed) + apply_legcuffs(attacked_carbon, user) + +/obj/item/restraint/proc/place_handcuffs(mob/living/carbon/target, mob/user) playsound(src.loc, cuff_sound, 25, 1, 4) if(user.action_busy) return - if (ishuman(target)) - var/mob/living/carbon/human/H = target + if(ishuman(target)) + var/mob/living/carbon/human/human_mob = target - if (!H.has_limb_for_slot(WEAR_HANDCUFFS)) - to_chat(user, SPAN_DANGER("\The [H] needs at least two wrists before you can cuff them together!")) + if(!human_mob.has_limb_for_slot(WEAR_HANDCUFFS)) + to_chat(user, SPAN_DANGER("\The [human_mob] needs at least two wrists before you can cuff them together!")) return - H.attack_log += text("\[[time_stamp()]\] Has been handcuffed (attempt) by [key_name(user)]") - user.attack_log += text("\[[time_stamp()]\] Attempted to handcuff [key_name(H)]") - msg_admin_attack("[key_name(user)] attempted to handcuff [key_name(H)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) + human_mob.attack_log += text("\[[time_stamp()]\] Has been handcuffed (attempt) by [key_name(user)]") + user.attack_log += text("\[[time_stamp()]\] Attempted to handcuff [key_name(human_mob)]") + msg_admin_attack("[key_name(user)] attempted to handcuff [key_name(human_mob)] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).", loc.x, loc.y, loc.z) - user.visible_message(SPAN_NOTICE("[user] tries to put [src] on [H].")) - if(do_after(user, cuff_delay, INTERRUPT_MOVED, BUSY_ICON_HOSTILE, H, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) - if(src == user.get_active_hand() && !H.handcuffed && Adjacent(user)) - if(iscarbon(H)) - if(istype(H.buckled, /obj/structure/bed/roller)) + user.visible_message(SPAN_NOTICE("[user] tries to put [src] on [human_mob].")) + if(do_after(user, cuff_delay, INTERRUPT_MOVED, BUSY_ICON_HOSTILE, human_mob, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) + if(src == user.get_active_hand() && !human_mob.handcuffed && Adjacent(user)) + if(iscarbon(human_mob)) + if(istype(human_mob.buckled, /obj/structure/bed/roller)) to_chat(user, SPAN_DANGER("You cannot handcuff someone who is buckled onto a roller bed.")) return - if(H.has_limb_for_slot(WEAR_HANDCUFFS)) + if(human_mob.has_limb_for_slot(WEAR_HANDCUFFS)) user.drop_inv_item_on_ground(src) - H.equip_to_slot_if_possible(src, WEAR_HANDCUFFS, 1, 0, 1, 1) + human_mob.equip_to_slot_if_possible(src, WEAR_HANDCUFFS, 1, 0, 1, 1) user.count_niche_stat(STATISTICS_NICHE_HANDCUFF) - else if (ismonkey(target)) + else if(ismonkey(target)) user.visible_message(SPAN_NOTICE("[user] tries to put [src] on [target].")) if(do_after(user, 30, INTERRUPT_MOVED, BUSY_ICON_HOSTILE, target, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) if(src == user.get_active_hand() && !target.handcuffed && Adjacent(user)) user.drop_inv_item_on_ground(src) target.equip_to_slot_if_possible(src, WEAR_HANDCUFFS, 1, 0, 1, 1) +/obj/item/restraint/handcuffs + name = "handcuffs" + desc = "Use this to keep prisoners in line." + gender = PLURAL + icon = 'icons/obj/items/items.dmi' + icon_state = "handcuff" + flags_atom = FPRINT|CONDUCT + flags_equip_slot = SLOT_WAIST + throwforce = 5 + w_class = SIZE_SMALL + throw_speed = SPEED_SLOW + throw_range = 5 + matter = list("metal" = 500) + +/obj/item/restraint/handcuffs/get_mob_overlay(mob/user_mob, slot) + var/image/ret = ..() + + var/image/handcuffs = overlay_image('icons/mob/mob.dmi', "handcuff1", color, RESET_COLOR) + ret.overlays += handcuffs + + return ret -/obj/item/handcuffs/zip +/obj/item/restraint/handcuffs/zip name = "zip cuffs" desc = "Single-use plastic zip tie handcuffs." w_class = SIZE_TINY icon_state = "cuff_zip" - breakouttime = 600 //Deciseconds = 60s + breakouttime = 60 SECONDS cuff_sound = 'sound/weapons/cablecuff.ogg' cuff_delay = 20 -/obj/item/handcuffs/zip/place_handcuffs(mob/living/carbon/target, mob/user) +/obj/item/restraint/handcuffs/zip/place_handcuffs(mob/living/carbon/target, mob/user) ..() flags_item |= DELONDROP -/obj/item/handcuffs/cable +/obj/item/restraint/adjustable/verb/adjust_restraints() + set category = "Object" + set name = "Adjust Restraints" + set desc = "Adjust the restraint size for wrists or ankles." + set src = usr.contents + + if(!ishuman(usr)) + return FALSE + + if(usr.is_mob_incapacitated()) + to_chat(usr, "Not right now.") + return FALSE + + switch(target_zone) + if(SLOT_HANDS) + target_zone = SLOT_LEGS + to_chat(usr, SPAN_NOTICE("[src] has been adjusted to tie around a subject's ankles.")) + if(SLOT_LEGS) + target_zone = SLOT_HANDS + to_chat(usr, SPAN_NOTICE("[src] has been adjusted to tie around a subject's wrists.")) + +/obj/item/restraint/adjustable/get_examine_text(mob/user) + . = ..() + switch(target_zone) + if(SLOT_HANDS) + . += SPAN_RED("Sized for human hands.") + if(SLOT_LEGS) + . += SPAN_RED("Sized for human ankles.") + +/obj/item/restraint/adjustable/cable name = "cable restraints" desc = "Looks like some cables tied together. Could be used to tie something up." icon_state = "cuff_white" - breakouttime = 300 //Deciseconds = 30s + breakouttime = 30 SECONDS cuff_sound = 'sound/weapons/cablecuff.ogg' -/obj/item/handcuffs/cable/red +/obj/item/restraint/adjustable/cable/red color = "#DD0000" -/obj/item/handcuffs/cable/yellow +/obj/item/restraint/adjustable/cable/yellow color = "#DDDD00" -/obj/item/handcuffs/cable/blue +/obj/item/restraint/adjustable/cable/blue color = "#0000DD" -/obj/item/handcuffs/cable/green +/obj/item/restraint/adjustable/cable/green color = "#00DD00" -/obj/item/handcuffs/cable/pink +/obj/item/restraint/adjustable/cable/pink color = "#DD00DD" -/obj/item/handcuffs/cable/orange +/obj/item/restraint/adjustable/cable/orange color = "#DD8800" -/obj/item/handcuffs/cable/cyan +/obj/item/restraint/adjustable/cable/cyan color = "#00DDDD" -/obj/item/handcuffs/cable/white +/obj/item/restraint/adjustable/cable/white color = "#FFFFFF" -/obj/item/handcuffs/cable/attackby(obj/item/I, mob/user as mob) +/obj/item/restraint/adjustable/cable/attackby(obj/item/I, mob/user as mob) ..() if(istype(I, /obj/item/stack/rods)) var/obj/item/stack/rods/R = I @@ -130,34 +168,30 @@ qdel(src) update_icon(user) - -/obj/item/handcuffs/cyborg - dispenser = 1 - -/obj/item/handcuffs/cyborg/attack(mob/living/carbon/C as mob, mob/user as mob) - if(!C.handcuffed) +/obj/item/restraint/handcuffs/cyborg/attack(mob/living/carbon/carbon_mob as mob, mob/user as mob) + if(!carbon_mob.handcuffed) var/turf/p_loc = user.loc - var/turf/p_loc_m = C.loc - playsound(src.loc, cuff_sound, 25, 1, 4) - user.visible_message(SPAN_DANGER("[user] is trying to put handcuffs on [C]!")) - - if (ishuman(C)) - var/mob/living/carbon/human/H = C - if (!H.has_limb_for_slot(WEAR_HANDCUFFS)) - to_chat(user, SPAN_DANGER("\The [H] needs at least two wrists before you can cuff them together!")) + var/turf/p_loc_m = carbon_mob.loc + playsound(loc, cuff_sound, 25, 1, 4) + user.visible_message(SPAN_DANGER("[user] is trying to put handcuffs on [carbon_mob]!")) + + if(ishuman(carbon_mob)) + var/mob/living/carbon/human/human_mob = carbon_mob + if (!human_mob.has_limb_for_slot(WEAR_HANDCUFFS)) + to_chat(user, SPAN_DANGER("\The [human_mob] needs at least two wrists before you can cuff them together!")) return spawn(30) - if(!C) return - if(p_loc == user.loc && p_loc_m == C.loc) - C.handcuffed = new /obj/item/handcuffs(C) - C.handcuff_update() + if(!carbon_mob) return + if(p_loc == user.loc && p_loc_m == carbon_mob.loc) + carbon_mob.handcuffed = new /obj/item/restraint/handcuffs(carbon_mob) + carbon_mob.handcuff_update() -/obj/item/restraints +/obj/item/xeno_restraints name = "xeno restraints" desc = "Use this to hold xenomorphic creatures safely." gender = PLURAL @@ -171,10 +205,9 @@ throw_range = 5 matter = list("metal" = 500) - var/dispenser = 0 var/breakouttime = 2 MINUTES -/obj/item/restraints/attack(mob/living/carbon/C as mob, mob/user as mob) +/obj/item/xeno_restraints/attack(mob/living/carbon/C as mob, mob/user as mob) if(!istype(C, /mob/living/carbon/xenomorph)) to_chat(user, SPAN_DANGER("The cuffs do not fit!")) return @@ -187,7 +220,7 @@ spawn(30) if(!C) return if(p_loc == user.loc && p_loc_m == C.loc) - C.handcuffed = new /obj/item/restraints(C) + C.handcuffed = new /obj/item/xeno_restraints(C) C.handcuff_update() C.visible_message(SPAN_DANGER("[C] has been successfully restrained by [user]!")) qdel(src) diff --git a/code/game/objects/items/hoverpack.dm b/code/game/objects/items/hoverpack.dm index 027b9d77f5..65406eb15d 100644 --- a/code/game/objects/items/hoverpack.dm +++ b/code/game/objects/items/hoverpack.dm @@ -180,7 +180,7 @@ var/t_dist = get_dist(user, t_turf) if(!(t_dist > max_distance)) return - var/list/turf/path = getline2(user, t_turf, FALSE) + var/list/turf/path = get_line(user, t_turf, FALSE) warning.forceMove(path[max_distance]) /obj/item/hoverpack/proc/can_use_hoverpack(mob/living/carbon/human/user) @@ -208,6 +208,7 @@ return TRUE /datum/action/item_action/hover/action_activate() + . = ..() var/mob/living/carbon/human/H = owner if(H.selected_ability == src) to_chat(H, "You will no longer use [name] with \ diff --git a/code/game/objects/items/implants/implant.dm b/code/game/objects/items/implants/implant.dm index e7ebe0391f..6584186f57 100644 --- a/code/game/objects/items/implants/implant.dm +++ b/code/game/objects/items/implants/implant.dm @@ -140,6 +140,7 @@ Implant Specifics:
    "} var/elevel = "Localized Limb" var/phrase = "supercalifragilisticexpialidocious" icon_state = "implant_evil" + flags_atom = USES_HEARING /obj/item/implant/explosive/get_data() var/dat = {" diff --git a/code/game/objects/items/implants/implantchair.dm b/code/game/objects/items/implants/implantchair.dm index 0969b26093..bcec5100aa 100644 --- a/code/game/objects/items/implants/implantchair.dm +++ b/code/game/objects/items/implants/implantchair.dm @@ -38,7 +38,7 @@ var/dat ="Implanter Status
    " dat +="Current occupant: [src.occupant ? "
    Name: [src.occupant]
    Health: [health_text]
    " : "None"]
    " - dat += "Implants: [src.implant_list.len ? "[implant_list.len]" : "Replenish"]
    " + dat += "Implants: [length(src.implant_list) ? "[length(implant_list)]" : "Replenish"]
    " if(src.occupant) dat += "[src.ready ? "Implant" : "Recharging"]
    " user.set_interaction(src) @@ -113,7 +113,7 @@ /obj/structure/machinery/implantchair/proc/implant(mob/M) if (!istype(M, /mob/living/carbon)) return - if(!implant_list.len) return + if(!length(implant_list)) return for(var/obj/item/implant/loyalty/imp in implant_list) if(!imp) continue if(istype(imp, /obj/item/implant/loyalty)) diff --git a/code/game/objects/items/legcuffs.dm b/code/game/objects/items/legcuffs.dm index c0dfe44728..1d216e6556 100644 --- a/code/game/objects/items/legcuffs.dm +++ b/code/game/objects/items/legcuffs.dm @@ -1,4 +1,4 @@ -/obj/item/legcuffs +/obj/item/restraint/legcuffs name = "legcuffs" desc = "Use this to keep prisoners in line." gender = PLURAL @@ -8,24 +8,66 @@ throwforce = 0 w_class = SIZE_MEDIUM - var/breakouttime = 15 SECONDS + target_zone = SLOT_LEGS -/obj/item/legcuffs/beartrap +/obj/item/restraint/proc/apply_legcuffs(mob/living/carbon/target, mob/user) + playsound(loc, 'sound/weapons/handcuffs.ogg', 25, 1, 4) + + if(user.action_busy) + return FALSE + + if (ishuman(target)) + var/mob/living/carbon/human/human_target = target + + if (!human_target.has_limb_for_slot(WEAR_LEGCUFFS)) + to_chat(user, SPAN_DANGER("\The [human_target] needs two ankles before you can cuff them together!")) + return FALSE + + human_target.attack_log += text("\[[time_stamp()]\] Has been legcuffed (attempt) by [key_name(user)]") + user.attack_log += text("\[[time_stamp()]\] Attempted to legcuff [key_name(human_target)]") + msg_admin_attack("[key_name(user)] attempted to legcuff [key_name(human_target)] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).", loc.x, loc.y, loc.z) + + user.visible_message(SPAN_NOTICE("[user] tries to put [src] on [human_target].")) + if(do_after(user, cuff_delay, INTERRUPT_MOVED, BUSY_ICON_HOSTILE, human_target, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) + if(src == user.get_active_hand() && !human_target.legcuffed && Adjacent(user)) + if(iscarbon(human_target)) + if(istype(human_target.buckled, /obj/structure/bed/roller)) + to_chat(user, SPAN_DANGER("You cannot legcuff someone who is buckled onto a roller bed.")) + return FALSE + if(human_target.has_limb_for_slot(WEAR_LEGCUFFS)) + user.drop_inv_item_on_ground(src) + human_target.equip_to_slot_if_possible(src, WEAR_LEGCUFFS, 1, 0, 1, 1) + user.count_niche_stat(STATISTICS_NICHE_HANDCUFF) + + else if (ismonkey(target)) + user.visible_message(SPAN_NOTICE("[user] tries to put [src] on [target].")) + if(do_after(user, 30, INTERRUPT_MOVED, BUSY_ICON_HOSTILE, target, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) + if(src == user.get_active_hand() && !target.legcuffed && Adjacent(user)) + user.drop_inv_item_on_ground(src) + target.equip_to_slot_if_possible(src, WEAR_LEGCUFFS, 1, 0, 1, 1) + return TRUE + +/obj/item/restraint/legcuffs/beartrap name = "bear trap" throw_speed = SPEED_FAST throw_range = 1 icon_state = "beartrap0" desc = "A trap used to catch bears and other legged creatures." + breakouttime = 20 SECONDS var/armed = FALSE + manual = FALSE + +/obj/item/restraint/legcuffs/beartrap/apply_legcuffs(mob/living/carbon/target, mob/user) + return FALSE -/obj/item/legcuffs/beartrap/attack_self(mob/user as mob) +/obj/item/restraint/legcuffs/beartrap/attack_self(mob/user as mob) ..() if(ishuman(user) && !user.stat && !user.is_mob_restrained()) armed = !armed icon_state = "beartrap[armed]" to_chat(user, SPAN_NOTICE("[src] is now [armed ? "armed" : "disarmed"]")) -/obj/item/legcuffs/beartrap/Crossed(atom/movable/AM) +/obj/item/restraint/legcuffs/beartrap/Crossed(atom/movable/AM) if(armed) if(ismob(AM)) var/mob/M = AM diff --git a/code/game/objects/items/lightstick.dm b/code/game/objects/items/lightstick.dm index 7041804999..05f5a96c5b 100644 --- a/code/game/objects/items/lightstick.dm +++ b/code/game/objects/items/lightstick.dm @@ -8,7 +8,7 @@ icon = 'icons/obj/items/lighting.dmi' icon_state = "lightstick_blue0" light_range = 2 - light_color = COLOUR_BLUE + light_color = COLOR_BLUE var/s_color = "blue" var/trample_chance = 30 var/can_trample = TRUE @@ -22,7 +22,7 @@ /obj/item/lightstick/Crossed(mob/living/O) if(anchored && prob(trample_chance) && can_trample) if(!istype(O,/mob/living/carbon/xenomorph/larva)) - visible_message(SPAN_DANGER("[O] tramples the [src]!")) + visible_message(SPAN_DANGER("[O] tramples [src]!")) playsound(src, 'sound/weapons/Genhit.ogg', 25, 1) if(istype(O,/mob/living/carbon/xenomorph)) if(prob(40)) @@ -46,17 +46,17 @@ if(!anchored)//If planted return - to_chat(user, "You start pulling out \the [src].") - if(!do_after(user,20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + to_chat(user, "You start pulling out [src].") + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return anchored = FALSE - user.visible_message("[user.name] removes \the [src] from the ground.","You remove the [src] from the ground.") + user.visible_message("[user.name] removes [src] from the ground.", "You remove [src] from the ground.") icon_state = "lightstick_[s_color][anchored]" set_light(0) pixel_x = 0 pixel_y = 0 - playsound(user, 'sound/weapons/Genhit.ogg', 25, 1) + playsound(user, 'sound/weapons/Genhit.ogg', 25, TRUE) //Red /obj/item/lightstick/planted @@ -68,7 +68,7 @@ name = "red lightstick" icon_state = "lightstick_red0" s_color = "red" - light_color = COLOUR_RED + light_color = COLOR_RED /obj/item/lightstick/red/planted icon_state = "lightstick_red1" diff --git a/code/game/objects/items/misc.dm b/code/game/objects/items/misc.dm index d4c9c13b58..05786c00cc 100644 --- a/code/game/objects/items/misc.dm +++ b/code/game/objects/items/misc.dm @@ -134,7 +134,7 @@ return stored_item = object mobber.drop_inv_item_to_loc(object, src) - to_chat(mobber, SPAN_NOTICE("You slide the [object] into [src].")) + to_chat(mobber, SPAN_NOTICE("You slide [object] into [src].")) playsound(mobber, 'sound/weapons/gun_shotgun_shell_insert.ogg', 15, TRUE) update_icon() break @@ -164,7 +164,7 @@ desc = "A debug item for research." /obj/item/moneybag - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/bags.dmi' name = "Money bag" icon_state = "moneybag" force = 10 @@ -178,7 +178,7 @@ /obj/item/evidencebag name = "evidence bag" desc = "An empty evidence bag." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/bags.dmi' icon_state = "evidenceobj" item_state = "" w_class = SIZE_SMALL @@ -224,7 +224,7 @@ to_chat(user, SPAN_NOTICE("[I] won't fit in [src].")) return - if(contents.len) + if(length(contents)) to_chat(user, SPAN_NOTICE("[src] already has something inside it.")) return @@ -257,7 +257,7 @@ /obj/item/evidencebag/attack_self(mob/user) ..() - if(contents.len) + if(length(contents)) var/obj/item/I = contents[1] user.visible_message("[user] takes [I] out of [src]", "You take [I] out of [src].",\ "You hear someone rustle around in a plastic bag, and remove something.") diff --git a/code/game/objects/items/old_research.dm b/code/game/objects/items/old_research.dm deleted file mode 100644 index 7330baac58..0000000000 --- a/code/game/objects/items/old_research.dm +++ /dev/null @@ -1,112 +0,0 @@ -/obj/item/XenoBio - name = "An unidentified Alien Organ" - desc = "Looking at it makes you want to vomit" - icon = 'icons/obj/items/Marine_Research.dmi' - icon_state = "biomass" - black_market_value = 50 - //For all of them for now, until we have specific organs/more techs - -/obj/item/XenoBio/Resin - name = "Alien Resin" - desc = "A piece of alien Resin" - icon_state = "biomass" - - -/obj/item/XenoBio/Chitin - name = "Alien Chitin" - desc = "A chunk of alien Chitin" - icon_state = "chitin-chunk" - - -/obj/item/XenoBio/Blood - name = "Alien Blood" - desc = "A sample of alien Blood" - icon_state = "blood-vial" - - - - - - - - -// ======== ITEMS YOU CAN MAKE THAT ARE BADASS ======== // - -/obj/item/XenoItem - name = "Strange Item" - desc = "Some sort of fucked up item from the Weyland-Yutani brand 3D Biometric Printer... Probably should make a bug report if you got this..." - icon_state = "chitin-chunk" - icon = 'icons/obj/items/Marine_Research.dmi' - -/obj/item/XenoItem/ResinPaste - name = "Resin Paste" - desc = "This resin paste will fix a broken helmet. (Use by clicking the glue with the armor)." - icon_state = "resin-glue" - icon = 'icons/obj/items/Marine_Research.dmi' - -/obj/item/XenoItem/ResinPaste/afterattack(obj/item/clothing/head/helmet/marine/A as obj, mob/user as mob) - if (!istype(A) || !istype(usr)) - to_chat(usr, "Doesn't work that way") - return - if (A.anti_hug >= 1) - usr <<"This Helmet can't be further reinforced." - return - to_chat(usr, "You reinforce the Helmet...") - A.anti_hug++ - user.temp_drop_inv_item(src) - qdel(src) - ..() - return - -/obj/item/XenoItem/ChitinPlate - name = "Chitin Plate" - desc = "A plate of Chitin Armor that can be attached to your Marine Armor to make it stronger, but will also slow you down. (Use by clicking the plate with the armor)." - icon_state = "chitin-armor" - icon = 'icons/obj/items/Marine_Research.dmi' - -/obj/item/XenoItem/ChitinPlate/afterattack(obj/item/clothing/suit/storage/marine/A as obj, mob/user as mob) - if (!istype(A) || !istype(usr)) - to_chat(usr, "Doesn't work that way...") - return - if (A.flags_marine_armor & ARMOR_IS_REINFORCED) - usr <<"This armor is already reinforced." - return - to_chat(usr, "You reinforce the armor with some Chitin Plating...") - A.armor_melee = 70 - A.armor_bullet = 90 - A.armor_laser = 7 - A.armor_energy = 40 - A.armor_bomb = 50 - A.armor_bio = 40 - A.armor_rad = 20 - A.slowdown++ - A.flags_marine_armor |= ARMOR_IS_REINFORCED - user.temp_drop_inv_item(src) - qdel(src) - ..() - return - - -/obj/item/XenoItem/AntiAcid - name = "Anti-Acid Spray" - desc = "A spray that makes whatever it's used on unacidable. Single use." - icon_state = "anti-acid" - icon = 'icons/obj/items/Marine_Research.dmi' - - -/obj/item/XenoItem/AntiAcid/afterattack(obj/A as obj, mob/user as mob, proximity) - if (!isobj(A)) - to_chat(usr, "Doesn't work that way...") - return - if (A.unacidable == 1) - to_chat(usr, "It's already resistant to acid...") - return - if (istype(A, /obj/structure/machinery/door)) - to_chat(usr, "It doesn't work on doors...") - return - to_chat(usr, "You spray [A] with the Anti-Acid spray making it unacidable...") - A.unacidable = TRUE - user.temp_drop_inv_item(src) - qdel(src) - ..() - return diff --git a/code/game/objects/items/paint.dm b/code/game/objects/items/paint.dm index 9089dd228e..804d258bdc 100644 --- a/code/game/objects/items/paint.dm +++ b/code/game/objects/items/paint.dm @@ -1,6 +1,6 @@ //NEVER USE THIS IT SUX -PETETHEGOAT -var/global/list/cached_icons = list() +GLOBAL_LIST_EMPTY(cached_icons) /obj/item/reagent_container/glass/paint desc = "It's a paint bucket." @@ -75,7 +75,7 @@ var/global/list/cached_icons = list() name = "Paint" id = "paint_" reagent_state = 2 - color = "#808080" + color = COLOR_GRAY description = "This paint will only adhere to floor tiles." /datum/reagent/paint/reaction_turf(turf/T, volume) @@ -128,7 +128,7 @@ var/global/list/cached_icons = list() id = "paint_remover" description = "Paint remover is used to remove floor paint from floor tiles." reagent_state = 2 - color = "#808080" + color = COLOR_GRAY /datum/reagent/paint_remover/reaction_turf(turf/T, volume) if(istype(T) && T.icon != initial(T.icon)) diff --git a/code/game/objects/items/pamphlets.dm b/code/game/objects/items/pamphlets.dm index c1544d6d73..d8bbb2a014 100644 --- a/code/game/objects/items/pamphlets.dm +++ b/code/game/objects/items/pamphlets.dm @@ -80,11 +80,11 @@ to_chat(user, SPAN_WARNING("Only squad riflemen can use this.")) return - var/obj/item/card/id/ID = user.wear_id - if(!istype(ID)) //not wearing an ID + var/obj/item/card/id/ID = user.get_idcard() + if(!ID) //not wearing an ID to_chat(user, SPAN_WARNING("You should wear your ID before doing this.")) return FALSE - if(ID.registered_ref != WEAKREF(user)) + if(!ID.check_biometrics(user)) to_chat(user, SPAN_WARNING("You should wear your ID before doing this.")) return FALSE @@ -95,7 +95,7 @@ user.rank_fallback = "ass" user.hud_set_squad() - var/obj/item/card/id/ID = user.wear_id + var/obj/item/card/id/ID = user.get_idcard() ID.set_assignment((user.assigned_squad ? (user.assigned_squad.name + " ") : "") + "Spotter") GLOB.data_core.manifest_modify(user.real_name, WEAKREF(user), "Spotter") diff --git a/code/game/objects/items/props/helmetgarb.dm b/code/game/objects/items/props/helmetgarb.dm index 558c8b235c..18bc913014 100644 --- a/code/game/objects/items/props/helmetgarb.dm +++ b/code/game/objects/items/props/helmetgarb.dm @@ -185,12 +185,12 @@ if(src != user.get_inactive_hand()) to_chat(user, SPAN_WARNING("You need to hold \the [src] in hand in order to repair them.")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) // level 2 is enough to repair damaged NVG + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) // level 2 is enough to repair damaged NVG to_chat(user, SPAN_WARNING("You are not trained to repair electronics...")) return if(shape == NVG_SHAPE_BROKEN) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) // level 3 is needed to repair broken NVG + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) // level 3 is needed to repair broken NVG to_chat(user, SPAN_WARNING("Repair of this complexity is too difficult for you, find someone more trained.")) return @@ -213,7 +213,7 @@ to_chat(user, SPAN_WARNING("Nothing to fix.")) else if(shape == NVG_SHAPE_COSMETIC) - to_chat(user, SPAN_WARNING("it's nothing but a husk of what it used to be.")) + to_chat(user, SPAN_WARNING("It's nothing but a husk of what it used to be.")) else to_chat(user, "You begin to repair \the [src].") @@ -459,6 +459,9 @@ shape = NVG_SHAPE_COSMETIC garbage = TRUE +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic/break_nvg(mob/living/carbon/human/user, list/slashdata, mob/living/carbon/xenomorph/Xeno) + return + /obj/item/prop/helmetgarb/helmet_nvg/marsoc //for Marine Raiders name = "\improper Tactical M3 night vision goggles" desc = "With an integrated self-recharging battery, nothing can stop you. Put them on your helmet and press the button and it's go-time." @@ -540,8 +543,8 @@ icon_state = "trimmed_wire" /obj/item/prop/helmetgarb/bullet_pipe - name = "10x99mm XM42B casing pipe" - desc = "The XM42B was an experimental weapons platform briefly fielded by the USCM and Wey-Yu PMC teams. It was manufactured by ARMAT systems at the Atlas weapons facility. Unfortunately the project had its funding pulled alongside the M5 integrated gasmask program. This spent casing has been converted into a pipe, but there is too much tar in the mouthpiece for it to be useable." + name = "10x99mm XM43E1 casing pipe" + desc = "The XM43E1 was an experimental weapons platform briefly fielded by the USCM and Wey-Yu PMC teams. It was manufactured by ARMAT systems at the Atlas weapons facility. Unfortunately the project had its funding pulled alongside the M5 integrated gasmask program. This spent casing has been converted into a pipe, but there is too much tar in the mouthpiece for it to be useable." icon_state = "bullet_pipe" /obj/item/prop/helmetgarb/chaplain_patch @@ -616,6 +619,13 @@ icon_state = "compass" w_class = SIZE_SMALL +/obj/item/prop/helmetgarb/compass/get_examine_text(mob/user) + . = ..() + if(is_ground_level(user.z) && !SSmapping.configs[GROUND_MAP].environment_traits[ZTRAIT_IN_SPACE]) + . += SPAN_NOTICE("It seems you are facing [dir2text(user.dir)].") + return + . += SPAN_NOTICE("The needle is not moving.") + /obj/item/prop/helmetgarb/bug_spray name = "insect repellent" desc = "A store-brand insect repellent, to keep any variety of pest or mosquito away from you." diff --git a/code/game/objects/items/props/robots.dm b/code/game/objects/items/props/robots.dm new file mode 100644 index 0000000000..e0a8b8d312 --- /dev/null +++ b/code/game/objects/items/props/robots.dm @@ -0,0 +1,45 @@ +/obj/item/broken_device + name = "broken component" + icon = 'icons/obj/items/robot_component.dmi' + icon_state = "broken" + +/obj/item/robot_parts/robot_component + icon = 'icons/obj/items/robot_component.dmi' + icon_state = "working" + +/obj/item/robot_parts/robot_component/binary_communication_device + name = "binary communication device" + icon_state = "binradio" + +/obj/item/robot_parts/robot_component/actuator + name = "actuator" + icon_state = "motor" + +/obj/item/robot_parts/robot_component/armour + name = "armour plating" + icon_state = "armor" + +/obj/item/robot_parts/robot_component/camera + name = "camera" + icon_state = "camera" + +/obj/item/robot_parts/robot_component/diagnosis_unit + name = "diagnosis unit" + icon_state = "analyser" + +/obj/item/robot_parts/robot_component/radio + name = "radio" + icon_state = "radio" + +/obj/item/device/robotanalyzer + name = "cyborg analyzer" + icon_state = "robotanalyzer" + item_state = "analyzer" + desc = "A hand-held scanner able to diagnose robotic injuries. It looks broken." + flags_atom = FPRINT|CONDUCT + flags_equip_slot = SLOT_WAIST + throwforce = 3 + w_class = SIZE_SMALL + throw_speed = SPEED_VERY_FAST + throw_range = 10 + matter = list("metal" = 200) diff --git a/code/game/objects/items/reagent_containers/autoinjectors.dm b/code/game/objects/items/reagent_containers/autoinjectors.dm index 0666ee6abc..291f02d5f4 100644 --- a/code/game/objects/items/reagent_containers/autoinjectors.dm +++ b/code/game/objects/items/reagent_containers/autoinjectors.dm @@ -33,7 +33,7 @@ /obj/item/reagent_container/hypospray/autoinjector/proc/update_uses_left() var/UL = reagents.total_volume / amount_per_transfer_from_this - UL = round(UL) == UL ? UL : round(UL) + 1 + UL = floor(UL) == UL ? UL : floor(UL) + 1 uses_left = UL /obj/item/reagent_container/hypospray/autoinjector/attack(mob/M, mob/user) @@ -148,6 +148,12 @@ item_state = "emptyskill" skilllock = SKILL_MEDICAL_DEFAULT +/obj/item/reagent_container/hypospray/autoinjector/tramadol/skillless/one_use + desc = "An EZ autoinjector loaded with 1 use of Tramadol, a weak but effective painkiller for normal wounds. Doesn't require any training to use." + volume = 15 + amount_per_transfer_from_this = 15 + uses_left = 1 + /obj/item/reagent_container/hypospray/autoinjector/oxycodone name = "oxycodone autoinjector (EXTREME PAINKILLER)" chemname = "oxycodone" @@ -173,6 +179,12 @@ item_state = "emptyskill" skilllock = SKILL_MEDICAL_DEFAULT +/obj/item/reagent_container/hypospray/autoinjector/kelotane/skillless/one_use + desc = "An EZ autoinjector loaded with 1 use of Kelotane, a common burn medicine. Doesn't require any training to use." + volume = 15 + amount_per_transfer_from_this = 15 + uses_left = 1 + /obj/item/reagent_container/hypospray/autoinjector/bicaridine name = "bicaridine autoinjector" chemname = "bicaridine" @@ -189,6 +201,12 @@ item_state = "emptyskill" skilllock = SKILL_MEDICAL_DEFAULT +/obj/item/reagent_container/hypospray/autoinjector/bicaridine/skillless/one_use + desc = "An EZ autoinjector loaded with 1 use of Bicaridine, a common brute and circulatory damage medicine. Doesn't require any training to use." + volume = 15 + amount_per_transfer_from_this = 15 + uses_left = 1 + /obj/item/reagent_container/hypospray/autoinjector/inaprovaline name = "inaprovaline autoinjector" chemname = "inaprovaline" @@ -280,7 +298,7 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless/get_examine_text(mob/user) . = ..() - if(reagents && reagents.reagent_list.len) + if(reagents && length(reagents.reagent_list)) . += SPAN_NOTICE("It is currently loaded.") else if(!uses_left) . += SPAN_NOTICE("It is spent.") diff --git a/code/game/objects/items/reagent_containers/blood_pack.dm b/code/game/objects/items/reagent_containers/blood_pack.dm index 4794fb8cc0..0d5654d9e3 100644 --- a/code/game/objects/items/reagent_containers/blood_pack.dm +++ b/code/game/objects/items/reagent_containers/blood_pack.dm @@ -28,7 +28,7 @@ update_icon() /obj/item/reagent_container/blood/update_icon() - var/percent = round((reagents.total_volume / volume) * 100) + var/percent = floor((reagents.total_volume / volume) * 100) overlays = null underlays = null diff --git a/code/game/objects/items/reagent_containers/borghydro.dm b/code/game/objects/items/reagent_containers/borghydro.dm deleted file mode 100644 index 30a9bdbd3c..0000000000 --- a/code/game/objects/items/reagent_containers/borghydro.dm +++ /dev/null @@ -1,86 +0,0 @@ - -/obj/item/reagent_container/borghypo - name = "Robot Hypospray" - desc = "An advanced chemical synthesizer and injection system, designed for heavy-duty medical equipment." - icon = 'icons/obj/items/syringe.dmi' - item_state = "hypo" - icon_state = "borghypo" - amount_per_transfer_from_this = 5 - volume = 30 - possible_transfer_amounts = null - var/mode = 1 - var/charge_cost = 50 - var/charge_tick = 0 - var/recharge_time = 2 SECONDS //Time it takes for shots to recharge - - var/list/reagent_ids = list("tricordrazine", "bicaridine", "kelotane", "dexalinp", "anti_toxin", "inaprovaline", "tramadol", "imidazoline", "spaceacillin") - var/list/reagent_volumes = list() - var/list/reagent_names = list() - -/obj/item/reagent_container/borghypo/Initialize() - . = ..() - - for(var/T in reagent_ids) - reagent_volumes[T] = volume - var/datum/reagent/R = chemical_reagents_list[T] - reagent_names += R.name - - START_PROCESSING(SSobj, src) - - -/obj/item/reagent_container/borghypo/Destroy() - STOP_PROCESSING(SSobj, src) - . = ..() - -/obj/item/reagent_container/borghypo/process() //Every [recharge_time] seconds, recharge some reagents for the cyborg+ - if(++charge_tick < recharge_time) - return 0 - charge_tick = 0 - - if(isrobot(loc)) - var/mob/living/silicon/robot/R = loc - if(R && R.cell) - for(var/T in reagent_ids) - if(reagent_volumes[T] < volume) - R.cell.use(charge_cost) - reagent_volumes[T] = min(reagent_volumes[T] + 5, volume) - return 1 - -/obj/item/reagent_container/borghypo/attack(mob/living/M as mob, mob/user as mob) - if(!istype(M)) - return - - if(!reagent_volumes[reagent_ids[mode]]) - to_chat(user, SPAN_WARNING("The injector is empty.")) - return - - to_chat(user, SPAN_NOTICE(" You inject [M] with the injector.")) - to_chat(M, SPAN_NOTICE(" [user] injects you with the injector.")) - playsound(loc, 'sound/items/hypospray.ogg', 50, 1) - - if(M.reagents) - var/t = min(amount_per_transfer_from_this, reagent_volumes[reagent_ids[mode]]) - M.reagents.add_reagent(reagent_ids[mode], t) - reagent_volumes[reagent_ids[mode]] -= t - // to_chat(user, SPAN_NOTICE("[t] units injected. [reagent_volumes[reagent_ids[mode]]] units remaining.")) - to_chat(user, SPAN_NOTICE(" [t] units of \red [reagent_ids[mode]] \blue injected for a total of \red [round(M.reagents.get_reagent_amount(reagent_ids[mode]))]\blue. [reagent_volumes[reagent_ids[mode]]] units remaining.")) - - return - -/obj/item/reagent_container/borghypo/attack_self(mob/user) - ..() - var/selection = tgui_input_list(usr, "Please select a reagent:", "Reagent", reagent_ids) - if(!selection) return - var/datum/reagent/R = chemical_reagents_list[selection] - to_chat(user, SPAN_NOTICE(" Synthesizer is now producing '[R.name]'.")) - mode = reagent_ids.Find(selection) - playsound(src.loc, 'sound/effects/pop.ogg', 15, 0) - return - -/obj/item/reagent_container/borghypo/get_examine_text(mob/user) - . = ..() - if (user != loc) return - - var/datum/reagent/R = chemical_reagents_list[reagent_ids[mode]] - - . += SPAN_NOTICE("It is currently producing [R.name] and has [reagent_volumes[reagent_ids[mode]]] out of [volume] units left.") diff --git a/code/game/objects/items/reagent_containers/dropper.dm b/code/game/objects/items/reagent_containers/dropper.dm index eaf28f66b0..f36145e285 100644 --- a/code/game/objects/items/reagent_containers/dropper.dm +++ b/code/game/objects/items/reagent_containers/dropper.dm @@ -32,7 +32,7 @@ if(ismob(target)) var/time = 20 //2/3rds the time of a syringe - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] is trying to squirt something into [target]'s eyes!"), SHOW_MESSAGE_VISIBLE) if(!do_after(user, time, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, target, INTERRUPT_MOVED, BUSY_ICON_MEDICAL)) return @@ -56,7 +56,7 @@ safe_thing.create_reagents(100) trans = src.reagents.trans_to(safe_thing, amount_per_transfer_from_this) - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] tries to squirt something into [target]'s eyes, but fails!"), SHOW_MESSAGE_VISIBLE) spawn(5) src.reagents.reaction(safe_thing, TOUCH) @@ -67,7 +67,7 @@ icon_state = "dropper[filled]" return - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] squirts something into [target]'s eyes!"), SHOW_MESSAGE_VISIBLE) src.reagents.reaction(target, TOUCH) diff --git a/code/game/objects/items/reagent_containers/food.dm b/code/game/objects/items/reagent_containers/food.dm index ded1b90b10..b4e895956a 100644 --- a/code/game/objects/items/reagent_containers/food.dm +++ b/code/game/objects/items/reagent_containers/food.dm @@ -9,10 +9,17 @@ possible_transfer_amounts = null volume = 50 //Sets the default container amount for all food items. flags_atom = CAN_BE_SYRINGED - var/filling_color = "#FFFFFF" //Used by sandwiches. + var/filling_color = COLOR_WHITE //Used by sandwiches. + var/last_dropped_by /obj/item/reagent_container/food/Initialize() . = ..() if (!pixel_x && !pixel_y) src.pixel_x = rand(-6.0, 6) //Randomizes postion src.pixel_y = rand(-6.0, 6) + RegisterSignal(src, COMSIG_ITEM_DROPPED, PROC_REF(update_last_dropped_by)) + +/obj/item/reagent_container/food/proc/update_last_dropped_by(datum/source, mob/user) + SIGNAL_HANDLER + + last_dropped_by = user diff --git a/code/game/objects/items/reagent_containers/food/cans.dm b/code/game/objects/items/reagent_containers/food/cans.dm index d6d1b9b423..7527a95c4d 100644 --- a/code/game/objects/items/reagent_containers/food/cans.dm +++ b/code/game/objects/items/reagent_containers/food/cans.dm @@ -38,7 +38,6 @@ to_chat(user, SPAN_NOTICE("You need to open the drink!")) return var/datum/reagents/R = src.reagents - var/fillevel = gulp_size if(!R.total_volume || !R) if(M == user && M.a_intent == INTENT_HARM && M.zone_selected == "head") @@ -80,13 +79,6 @@ reagents.set_source_mob(user) reagents.trans_to_ingest(M, gulp_size) - if(isrobot(user)) //Cyborg modules that include drinks automatically refill themselves, but drain the borg's cell - var/mob/living/silicon/robot/bro = user - bro.cell.use(30) - var/refill = R.get_master_reagent_id() - spawn(1 MINUTES) - R.add_reagent(refill, fillevel) - playsound(M.loc,'sound/items/drink.ogg', 15, 1) return 1 diff --git a/code/game/objects/items/reagent_containers/food/condiment.dm b/code/game/objects/items/reagent_containers/food/condiment.dm index e676b310f1..ada9657677 100644 --- a/code/game/objects/items/reagent_containers/food/condiment.dm +++ b/code/game/objects/items/reagent_containers/food/condiment.dm @@ -23,7 +23,7 @@ return FALSE if(M == user) - to_chat(M, SPAN_NOTICE(" You swallow some of contents of the [src].")) + to_chat(M, SPAN_NOTICE("You swallow some of contents of [src].")) else if(istype(M, /mob/living/carbon/human)) user.affected_message(M, @@ -80,7 +80,7 @@ to_chat(user, SPAN_DANGER("[src] is empty.")) return if(target.reagents.total_volume >= target.reagents.maximum_volume) - to_chat(user, SPAN_DANGER("you can't add anymore to [target].")) + to_chat(user, SPAN_DANGER("You can't add any more to [target].")) return var/trans = src.reagents.trans_to(target, amount_per_transfer_from_this) to_chat(user, SPAN_NOTICE(" You transfer [trans] units of the condiment to [target].")) @@ -88,7 +88,7 @@ /obj/item/reagent_container/food/condiment/on_reagent_change() if(icon_state == "saltshakersmall" || icon_state == "peppermillsmall" || icon_state == "hotsauce_cholula" || icon_state == "hotsauce_franks" || icon_state == "hotsauce_sriracha" || icon_state == "hotsauce_tabasco" || icon_state == "coldsauce_cole" || icon_state == "eggpowder" || icon_state == "milkpowder" || icon_state == "bjpowder" || icon_state == "ojpowder" || icon_state == "ajpowder" || icon_state == "wjpowder" || icon_state == "gjpowder" || icon_state == "pjpowder") return - if(reagents.reagent_list.len > 0) + if(length(reagents.reagent_list) > 0) switch(reagents.get_master_reagent_id()) if("ketchup") name = "Ketchup" @@ -131,7 +131,7 @@ center_of_mass = "x=16;y=6" else name = "Misc Condiment Bottle" - if (reagents.reagent_list.len==1) + if (length(reagents.reagent_list)==1) desc = "Looks like it is [reagents.get_master_reagent_name()], but you are not sure." else desc = "A mixture of various condiments. [reagents.get_master_reagent_name()] is one of them." @@ -202,7 +202,7 @@ /obj/item/reagent_container/food/condiment/hotsauce/franks name = "\improper Frank's Red Hot bottle" desc = "A bottle of Weyland-Yutani brand Frank's Red Hot hot sauce." - desc_lore = "Supposedly designed as a middle-ground flavor between ketchup and cayenne, this brand of spicy goodness achieved critical acclaim throughout UA space within both colonies and vessels alike. The sudden and widespread adoption was curiously timed with the near-simultaneous shelving of the original Frank's 'ULTRA' hot sauce." + desc_lore = "Supposedly designed as a middle-ground flavor between ketchup and cayenne, this brand of spicy goodness achieved critical acclaim throughout UA space within both colonies and vessels alike. The sudden and widespread adoption was curiously timed with the near-simultaneous shelving of the original Frank's 'ULTRA' hot sauce." icon_state = "hotsauce_franks" item_state = "hotsauce_franks" diff --git a/code/game/objects/items/reagent_containers/food/drinks.dm b/code/game/objects/items/reagent_containers/food/drinks.dm index a0d0f06be1..ea8da3043f 100644 --- a/code/game/objects/items/reagent_containers/food/drinks.dm +++ b/code/game/objects/items/reagent_containers/food/drinks.dm @@ -13,16 +13,19 @@ /obj/item/reagent_container/food/drinks/on_reagent_change() if (gulp_size < 5) gulp_size = 5 - else gulp_size = max(round(reagents.total_volume / 5), 5) + else gulp_size = max(floor(reagents.total_volume / 5), 5) /obj/item/reagent_container/food/drinks/attack(mob/M, mob/user) var/datum/reagents/R = src.reagents - var/fillevel = gulp_size if(!R.total_volume || !R) to_chat(user, SPAN_DANGER("The [src.name] is empty!")) return FALSE + if(HAS_TRAIT(M, TRAIT_CANNOT_EAT)) + to_chat(user, SPAN_DANGER("[user == M ? "You are" : "[M] is"] unable to drink!")) + return FALSE + if(M == user) to_chat(M, SPAN_NOTICE(" You swallow a gulp from \the [src].")) if(reagents.total_volume) @@ -55,13 +58,6 @@ reagents.set_source_mob(user) reagents.trans_to_ingest(M, gulp_size) - if(isrobot(user)) //Cyborg modules that include drinks automatically refill themselves, but drain the borg's cell - var/mob/living/silicon/robot/bro = user - bro.cell.use(30) - var/refill = R.get_master_reagent_id() - spawn(1 MINUTES) - R.add_reagent(refill, fillevel) - playsound(M.loc,'sound/items/drink.ogg', 15, 1) return TRUE @@ -98,28 +94,9 @@ to_chat(user, SPAN_DANGER("[target] is full.")) return - - - var/datum/reagent/refill - var/datum/reagent/refillName - if(isrobot(user)) - refill = reagents.get_master_reagent_id() - refillName = reagents.get_master_reagent_name() - var/trans = src.reagents.trans_to(target, amount_per_transfer_from_this) to_chat(user, SPAN_NOTICE(" You transfer [trans] units of the solution to [target].")) - if(isrobot(user)) //Cyborg modules that include drinks automatically refill themselves, but drain the borg's cell - var/mob/living/silicon/robot/bro = user - var/chargeAmount = max(30,4*trans) - bro.cell.use(chargeAmount) - to_chat(user, "Now synthesizing [trans] units of [refillName]...") - - - spawn(30 SECONDS) - reagents.add_reagent(refill, trans) - to_chat(user, "Cyborg [src] refilled.") - return ..() /obj/item/reagent_container/food/drinks/get_examine_text(mob/user) diff --git a/code/game/objects/items/reagent_containers/food/drinks/bottle.dm b/code/game/objects/items/reagent_containers/food/drinks/bottle.dm index 0e63a19c7e..75b5aadfc4 100644 --- a/code/game/objects/items/reagent_containers/food/drinks/bottle.dm +++ b/code/game/objects/items/reagent_containers/food/drinks/bottle.dm @@ -93,7 +93,7 @@ /obj/item/reagent_container/food/drinks/bottle/attackby(obj/item/I, mob/living/user) if(!isGlass || !istype(I, /obj/item/paper)) return ..() - if(!reagents || !reagents.reagent_list.len) + if(!reagents || !length(reagents.reagent_list)) to_chat(user, SPAN_NOTICE("\The [src] is empty...")) return var/alcohol_potency = 0 @@ -107,7 +107,7 @@ if(alcohol_potency < BURN_LEVEL_TIER_1) to_chat(user, SPAN_NOTICE("There's not enough flammable liquid in \the [src]!")) return - alcohol_potency = Clamp(alcohol_potency, BURN_LEVEL_TIER_1, BURN_LEVEL_TIER_7) + alcohol_potency = clamp(alcohol_potency, BURN_LEVEL_TIER_1, BURN_LEVEL_TIER_7) if(!do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return diff --git a/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm b/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm index eea71cd1a4..59f27ab917 100644 --- a/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm +++ b/code/game/objects/items/reagent_containers/food/drinks/drinkingglass.dm @@ -10,14 +10,14 @@ center_of_mass = "x=16;y=10" /obj/item/reagent_container/food/drinks/drinkingglass/on_reagent_change() - /*if(reagents.reagent_list.len > 1 ) + /*if(length(reagents.reagent_list) > 1 ) icon_state = "glass_brown" name = "Glass of Hooch" desc = "Two or more drinks, mixed together."*/ - /*else if(reagents.reagent_list.len == 1) + /*else if(length(reagents.reagent_list) == 1) for(var/datum/reagent/R in reagents.reagent_list) switch(R.id)*/ - if (reagents.reagent_list.len > 0) + if (length(reagents.reagent_list) > 0) //mrid = R.get_master_reagent_id() var/datum/reagent/R = reagents.get_master_reagent() switch(R.id) diff --git a/code/game/objects/items/reagent_containers/food/drinks/jar.dm b/code/game/objects/items/reagent_containers/food/drinks/jar.dm index 987cfcedca..45a5137d0d 100644 --- a/code/game/objects/items/reagent_containers/food/drinks/jar.dm +++ b/code/game/objects/items/reagent_containers/food/drinks/jar.dm @@ -10,7 +10,7 @@ center_of_mass = "x=15;y=8" /obj/item/reagent_container/food/drinks/jar/on_reagent_change() - if(reagents.reagent_list.len > 0) + if(length(reagents.reagent_list) > 0) icon_state ="jar_what" name = "jar of something" desc = "You can't really tell what this is." diff --git a/code/game/objects/items/reagent_containers/food/fortunecookie.dm b/code/game/objects/items/reagent_containers/food/fortunecookie.dm index 270bd4d7c4..6077541acd 100644 --- a/code/game/objects/items/reagent_containers/food/fortunecookie.dm +++ b/code/game/objects/items/reagent_containers/food/fortunecookie.dm @@ -75,7 +75,7 @@ to_chat(user,SPAN_WARNING("[src] is cracked open! How are you gonna slip something in that?")) else if(!cookiefortune) - to_chat(user, SPAN_NOTICE("You slip the paper into the [src].")) + to_chat(user, SPAN_NOTICE("You slip the paper into [src].")) cookiefortune = W user.drop_inv_item_to_loc(W, src) else diff --git a/code/game/objects/items/reagent_containers/food/sandwich.dm b/code/game/objects/items/reagent_containers/food/sandwich.dm index 1b7d61eadd..fd71c20e48 100644 --- a/code/game/objects/items/reagent_containers/food/sandwich.dm +++ b/code/game/objects/items/reagent_containers/food/sandwich.dm @@ -18,7 +18,7 @@ /obj/item/reagent_container/food/snacks/csandwich/attackby(obj/item/W as obj, mob/user as mob) if(istype(W, /obj/item/reagent_container/food/snacks/csandwich)) //No sandwitch inception, it causes some bugs... - to_chat(user, SPAN_NOTICE(" You can't put a [W] in the [src].")) + to_chat(user, SPAN_NOTICE("You can't put \a [W] in [src].")) return var/sandwich_limit = 4 @@ -26,7 +26,7 @@ if(istype(O,/obj/item/reagent_container/food/snacks/breadslice)) sandwich_limit += 4 - if(src.contents.len > sandwich_limit) + if(length(src.contents) > sandwich_limit) to_chat(user, SPAN_DANGER("If you put anything else on \the [src] it's going to collapse.")) return else if(istype(W,/obj/item/shard)) @@ -56,7 +56,7 @@ i++ if(i == 1) fullname += "[O.name]" - else if(i == ingredients.len) + else if(i == length(ingredients)) fullname += " and [O.name]" else fullname += ", [O.name]" @@ -69,12 +69,12 @@ var/image/T = new(src.icon, "sandwich_top") T.pixel_x = pick(list(-1,0,1)) - T.pixel_y = (ingredients.len * 2)+1 + T.pixel_y = (length(ingredients) * 2)+1 overlays += T name = lowertext("[fullname] sandwich") if(length(name) > 80) name = "[pick(list("absurd","colossal","enormous","ridiculous"))] sandwich" - w_class = n_ceil(Clamp((ingredients.len/2),1,3)) + w_class = ceil(clamp((length(ingredients)/2),1,3)) /obj/item/reagent_container/food/snacks/csandwich/Destroy() QDEL_NULL_LIST(ingredients) @@ -82,7 +82,7 @@ /obj/item/reagent_container/food/snacks/csandwich/get_examine_text(mob/user) . = ..() - if(contents && contents.len) + if(LAZYLEN(contents)) var/obj/item/O = pick(contents) . += SPAN_NOTICE("You think you can see [O.name] in there.") diff --git a/code/game/objects/items/reagent_containers/food/snacks.dm b/code/game/objects/items/reagent_containers/food/snacks.dm index 9a99cf315c..e14c3d882f 100644 --- a/code/game/objects/items/reagent_containers/food/snacks.dm +++ b/code/game/objects/items/reagent_containers/food/snacks.dm @@ -21,6 +21,7 @@ //Placeholder for effect that trigger on eating that aren't tied to reagents. /obj/item/reagent_container/food/snacks/proc/On_Consume(mob/M) SEND_SIGNAL(src, COMSIG_SNACK_EATEN, M) + SEND_SIGNAL(M, COMSIG_MOB_EATEN_SNACK, src) if(!usr) return if(!reagents.total_volume) @@ -42,7 +43,7 @@ ..() if (world.time <= user.next_move) - return + return FALSE attack(user, user, "head")//zone does not matter user.next_move += attack_speed @@ -51,24 +52,30 @@ to_chat(user, SPAN_DANGER("None of [src] left, oh no!")) M.drop_inv_item_on_ground(src) //so icons update :[ qdel(src) - return 0 + return FALSE if(package) - to_chat(M, SPAN_WARNING("How do you expect to eat this with the package still on?")) - return 0 + if(user.a_intent == INTENT_HARM) + return ..() // chunk box gaming + + if(user == M) + to_chat(M, SPAN_WARNING("How do you expect to eat this with the package still on?")) + else + to_chat(M, SPAN_WARNING("[user] made an endearing attempt to force feed you a snack with the packaging still on.")) + return FALSE if(istype(M, /mob/living/carbon)) var/mob/living/carbon/C = M var/fullness = M.nutrition + (M.reagents.get_reagent_amount("nutriment") * 25) if(fullness > NUTRITION_HIGH && world.time < C.overeat_cooldown) to_chat(user, SPAN_WARNING("[user == M ? "You" : "They"] don't feel like eating more right now.")) - return + return FALSE if(issynth(C)) fullness = 200 //Synths never get full if(HAS_TRAIT(M, TRAIT_CANNOT_EAT)) //Do not feed the Working Joes to_chat(user, SPAN_DANGER("[user == M ? "You are" : "[M] is"] unable to eat!")) - return + return FALSE if(fullness > NUTRITION_HIGH) C.overeat_cooldown = world.time + OVEREAT_TIME @@ -135,9 +142,9 @@ reagents.trans_to_ingest(M, reagents.total_volume) bitecount++ On_Consume(M) - return 1 + return TRUE - return 0 + return FALSE /obj/item/reagent_container/food/snacks/afterattack(obj/target, mob/user, proximity) return ..() @@ -220,7 +227,7 @@ SPAN_NOTICE("[user] crudely slices \the [src] with [W]!"), \ SPAN_NOTICE("You crudely slice \the [src] with your [W]!") \ ) - slices_lost = rand(1,max(1,round(slices_num/2))) + slices_lost = rand(1,max(1,floor(slices_num/2))) var/reagents_per_slice = reagents.total_volume/slices_num for(var/i=1 to (slices_num-slices_lost)) var/obj/slice = new slice_path (src.loc) @@ -232,10 +239,10 @@ if(isanimal(M)) if(iscorgi(M)) if(bitecount == 0 || prob(50)) - M.emote("nibbles away at the [src]") + M.emote("nibbles away at [src]") bitecount++ if(bitecount >= 5) - var/sattisfaction_text = pick("burps from enjoyment", "yaps for more", "woofs twice", "looks at the area where the [src] was") + var/sattisfaction_text = pick("burps from enjoyment", "yaps for more", "woofs twice", "looks at the area where [src] was") if(sattisfaction_text) M.emote("[sattisfaction_text]") qdel(src) @@ -517,7 +524,7 @@ /obj/item/reagent_container/food/snacks/egg/attackby(obj/item/W as obj, mob/user as mob) if(istype( W, /obj/item/toy/crayon )) var/obj/item/toy/crayon/C = W - var/clr = C.colourName + var/clr = C.colorName if(!(clr in list("blue","green","mime","orange","purple","rainbow","red","yellow"))) to_chat(usr, SPAN_NOTICE(" The egg refuses to take on this color!")) @@ -593,7 +600,7 @@ name = "Boiled egg" desc = "A hard-boiled egg." icon_state = "egg" - filling_color = "#FFFFFF" + filling_color = COLOR_WHITE /obj/item/reagent_container/food/snacks/boiledegg/Initialize() . = ..() @@ -665,9 +672,17 @@ /obj/item/reagent_container/food/snacks/carpmeat/Initialize() . = ..() reagents.add_reagent("fish", 3) - reagents.add_reagent("carpotoxin", 3) + reagents.add_reagent("carpotoxin", 6) src.bitesize = 6 +/obj/item/reagent_container/food/snacks/carpmeat/processed + name = "processed carp fillet" + desc = "A fillet of spess carp meat. This one has been processed to remove carpotoxin." + +/obj/item/reagent_container/food/snacks/carpmeat/processed/Initialize() + . = ..() + reagents.remove_reagent("carpotoxin", 6) + /obj/item/reagent_container/food/snacks/fishfingers name = "Fish Fingers" desc = "A finger of fish." @@ -677,7 +692,6 @@ /obj/item/reagent_container/food/snacks/fishfingers/Initialize() . = ..() reagents.add_reagent("fish", 4) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/hugemushroomslice @@ -806,7 +820,6 @@ . = ..() reagents.add_reagent("bread", 3) reagents.add_reagent("fish", 3) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/tofuburger @@ -833,13 +846,6 @@ reagents.add_reagent("iron", 3) bitesize = 2 -/// Vanilla roburger - the nanites turn people into cyborgs -/obj/item/reagent_container/food/snacks/roburger/unsafe -/obj/item/reagent_container/food/snacks/roburger/unsafe/Initialize(mapload, ...) - . = ..() - if(prob(5)) - reagents.add_reagent("nanites", 2) - /obj/item/reagent_container/food/snacks/roburgerbig name = "roburger" desc = "This massive patty looks like poison. Beep." @@ -849,7 +855,6 @@ /obj/item/reagent_container/food/snacks/roburgerbig/Initialize() . = ..() - reagents.add_reagent("nanites", 100) bitesize = 0.1 /obj/item/reagent_container/food/snacks/xenoburger @@ -862,14 +867,13 @@ . = ..() reagents.add_reagent("bread", 3) reagents.add_reagent("meatprotein", 3) - reagents.add_reagent("xenoblood", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/clownburger name = "Clown Burger" desc = "This tastes funny..." icon_state = "clownburger" - filling_color = "#FF00FF" + filling_color = COLOR_MAGENTA /obj/item/reagent_container/food/snacks/clownburger/Initialize() . = ..() @@ -885,7 +889,7 @@ name = "Mime Burger" desc = "Its taste defies language." icon_state = "mimeburger" - filling_color = "#FFFFFF" + filling_color = COLOR_WHITE /obj/item/reagent_container/food/snacks/mimeburger/Initialize() . = ..() @@ -1082,7 +1086,6 @@ . = ..() reagents.add_reagent("bread", 4) reagents.add_reagent("meatprotein", 2) - reagents.add_reagent("xenoblood", 4) bitesize = 2 /obj/item/reagent_container/food/snacks/wingfangchu @@ -1096,7 +1099,6 @@ . = ..() reagents.add_reagent("soysauce", 4) reagents.add_reagent("meatprotein", 4) - reagents.add_reagent("xenoblood", 4) bitesize = 2 /obj/item/reagent_container/food/snacks/human/kabob @@ -1145,7 +1147,6 @@ /obj/item/reagent_container/food/snacks/cubancarp/Initialize() . = ..() reagents.add_reagent("fish", 6) - reagents.add_reagent("carpotoxin", 3) reagents.add_reagent("hotsauce", 3) bitesize = 3 @@ -1372,7 +1373,7 @@ name = "Tomato soup" desc = "Smells like copper" icon_state = "tomatosoup" - filling_color = "#FF0000" + filling_color = COLOR_RED /obj/item/reagent_container/food/snacks/bloodsoup/Initialize() . = ..() @@ -1702,7 +1703,6 @@ /obj/item/reagent_container/food/snacks/fishandchips/Initialize() . = ..() reagents.add_reagent("fish", 6) - reagents.add_reagent("carpotoxin", 3) bitesize = 3 /obj/item/reagent_container/food/snacks/sandwich @@ -2132,7 +2132,7 @@ desc = "A tasty dessert that won't make it through a metal detector." icon_state = "gappletart" trash = /obj/item/trash/plate - filling_color = "#FFFF00" + filling_color = COLOR_YELLOW /obj/item/reagent_container/food/snacks/appletart/Initialize() . = ..() @@ -2184,7 +2184,6 @@ reagents.add_reagent("bread", 10) reagents.add_reagent("meatprotein", 10) reagents.add_reagent("cheese", 10) - reagents.add_reagent("xenoblood", 10) bitesize = 2 /obj/item/reagent_container/food/snacks/xenomeatbreadslice @@ -2761,10 +2760,10 @@ // Set appropriate description if( open && pizza ) desc = "A box suited for pizzas. It appears to have a [pizza.name] inside." - else if( boxes.len > 0 ) - desc = "A pile of boxes suited for pizzas. There appears to be [boxes.len + 1] boxes in the pile." + else if( length(boxes) > 0 ) + desc = "A pile of boxes suited for pizzas. There appears to be [length(boxes) + 1] boxes in the pile." - var/obj/item/pizzabox/topbox = boxes[boxes.len] + var/obj/item/pizzabox/topbox = boxes[length(boxes)] var/toptag = topbox.boxtag if( toptag != "" ) desc = "[desc] The box on top has a tag, it reads: '[toptag]'." @@ -2790,8 +2789,8 @@ else // Stupid code because byondcode sucks var/doimgtag = 0 - if( boxes.len > 0 ) - var/obj/item/pizzabox/topbox = boxes[boxes.len] + if( length(boxes) > 0 ) + var/obj/item/pizzabox/topbox = boxes[length(boxes)] if( topbox.boxtag != "" ) doimgtag = 1 else @@ -2800,27 +2799,27 @@ if( doimgtag ) var/image/tagimg = image("food.dmi", icon_state = "pizzabox_tag") - tagimg.pixel_y = boxes.len * 3 + tagimg.pixel_y = length(boxes) * 3 overlays += tagimg - icon_state = "pizzabox[boxes.len+1]" + icon_state = "pizzabox[length(boxes)+1]" /obj/item/pizzabox/attack_hand( mob/user as mob ) if( open && pizza ) user.put_in_hands( pizza ) - to_chat(user, SPAN_DANGER("You take the [src.pizza] out of the [src].")) + to_chat(user, SPAN_DANGER("You take the [src.pizza] out of [src].")) src.pizza = null update_icon() return - if( boxes.len > 0 ) + if( length(boxes) > 0 ) if( user.get_inactive_hand() != src ) ..() return - var/obj/item/pizzabox/box = boxes[boxes.len] + var/obj/item/pizzabox/box = boxes[length(boxes)] boxes -= box user.put_in_hands( box ) @@ -2853,7 +2852,7 @@ for(var/obj/item/pizzabox/i in box.boxes) boxestoadd += i - if( (boxes.len+1) + boxestoadd.len <= 5 ) + if( (length(boxes)+1) + length(boxestoadd) <= 5 ) user.drop_inv_item_to_loc(box, src) box.boxes = list() // Clear the box boxes so we don't have boxes inside boxes. - Xzibit src.boxes.Add( boxestoadd ) @@ -2861,11 +2860,11 @@ box.update_icon() update_icon() - to_chat(user, SPAN_DANGER("You put the [box] ontop of the [src]!")) + to_chat(user, SPAN_DANGER("You put [box] ontop of [src]!")) else to_chat(user, SPAN_DANGER("The stack is too high!")) else - to_chat(user, SPAN_DANGER("Close the [box] first!")) + to_chat(user, SPAN_DANGER("Close [box] first!")) return @@ -2877,9 +2876,9 @@ update_icon() - to_chat(user, SPAN_DANGER("You put the [I] in the [src]!")) + to_chat(user, SPAN_DANGER("You put [I] in [src]!")) else - to_chat(user, SPAN_DANGER("You try to push the [I] through the lid but it doesn't work!")) + to_chat(user, SPAN_DANGER("You try to push [I] through the lid but it doesn't work!")) return if( istype(I, /obj/item/tool/pen/) ) @@ -2890,8 +2889,8 @@ var/t = stripped_input(user,"Enter what you want to add to the tag:", "Write", "", 30) var/obj/item/pizzabox/boxtotagto = src - if( boxes.len > 0 ) - boxtotagto = boxes[boxes.len] + if( length(boxes) > 0 ) + boxtotagto = boxes[length(boxes)] boxtotagto.boxtag = "[boxtotagto.boxtag][t]" playsound(src, "paper_writing", 15, TRUE) @@ -3186,6 +3185,7 @@ warm_desc = "A hard microwaved burrito. Molten on the outside, barely cooked on the inside." icon_state = "packaged-burrito" package = 1 + flags_obj = OBJ_NO_HELMET_BAND|OBJ_IS_HELMET_GARB /obj/item/reagent_container/food/snacks/microwavable/packaged_burrito/Initialize() . = ..() @@ -3233,6 +3233,7 @@ desc = "A singular squishy, room temperature, hot dog. There's no time given for how long to cook it, but you can try microwaving it anyways. Packaged by the Weyland-Yutani Corporation." warm_desc = "A singular squishy, steaming, hot dog. The casing seems to have burst, and the bun is dried out." icon_state = "packaged-hotdog" + flags_obj = OBJ_NO_HELMET_BAND|OBJ_IS_HELMET_GARB package = 1 /obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs/Initialize() @@ -3353,8 +3354,11 @@ name = "CHUNK box" desc = "A bar of \"The CHUNK\" brand chocolate. \"The densest chocolate permitted to exist according to federal law. We are legally required to ask you not to use this blunt object for anything other than nutrition.\"" icon_state = "chunk" - force = 15 //LEGAL LIMIT OF CHOCOLATE + hitsound = "swing_hit" + force = 15 throwforce = 10 + attack_speed = 10 + demolition_mod = 0.3 bitesize = 2 wrapper = /obj/item/trash/chunk @@ -3368,8 +3372,7 @@ desc = "A 'crate', as the marketing called it, of \"The HUNK\" brand chocolate. An early version of the CHUNK box, the HUNK bar was hit by a class action lawsuit and forced to go into bankruptcy and get bought out by the Company when hundreds of customers had their teeth crack from simply attempting to eat the bar." icon_state = "hunk" w_class = SIZE_MEDIUM - hitsound = "swing_hit" - force = 35 //ILLEGAL LIMIT OF CHOCOLATE + force = 35 throwforce = 50 bitesize = 20 wrapper = /obj/item/trash/chunk/hunk diff --git a/code/game/objects/items/reagent_containers/food/snacks/grown.dm b/code/game/objects/items/reagent_containers/food/snacks/grown.dm index 12a5a704f6..7f05128c7e 100644 --- a/code/game/objects/items/reagent_containers/food/snacks/grown.dm +++ b/code/game/objects/items/reagent_containers/food/snacks/grown.dm @@ -30,7 +30,7 @@ /obj/item/reagent_container/food/snacks/grown/proc/update_from_seed()// Fill the object up with the appropriate reagents. if(!isnull(plantname)) - var/datum/seed/S = seed_types[plantname] + var/datum/seed/S = GLOB.seed_types[plantname] if(!S) return name = S.seed_name //Copies the name from the seed, important for renamed plants @@ -42,7 +42,7 @@ var/list/reagent_data = S.chems[rid] var/rtotal = reagent_data[1] if(length(reagent_data) > 1 && potency > 0) - rtotal += round(potency/reagent_data[2]) + rtotal += floor(potency/reagent_data[2]) if(reagents) reagents.add_reagent(rid, max(1, rtotal)) @@ -62,7 +62,7 @@ name = "cherries" desc = "Great for toppings!" icon_state = "cherry" - filling_color = "#FF0000" + filling_color = COLOR_RED gender = PLURAL plantname = "cherry" @@ -357,7 +357,7 @@ name = "chili" desc = "It's spicy! Wait... IT'S BURNING ME!!" icon_state = "chilipepper" - filling_color = "#FF0000" + filling_color = COLOR_RED plantname = "chili" /obj/item/reagent_container/food/snacks/grown/eggplant @@ -379,7 +379,7 @@ name = "tomato" desc = "I say to-mah-to, you say tom-mae-to." icon_state = "tomato" - filling_color = "#FF0000" + filling_color = COLOR_RED potency = 10 plantname = "tomato" @@ -395,7 +395,7 @@ desc = "I say to-mah-to, you say tom-mae-to... OH GOD IT'S EATING MY LEGS!!" icon_state = "killertomato" potency = 10 - filling_color = "#FF0000" + filling_color = COLOR_RED potency = 30 plantname = "killertomato" @@ -414,7 +414,7 @@ desc = "So bloody...so...very...bloody....AHHHH!!!!" icon_state = "bloodtomato" potency = 10 - filling_color = "#FF0000" + filling_color = COLOR_RED plantname = "bloodtomato" /obj/item/reagent_container/food/snacks/grown/bloodtomato/launch_impact(atom/hit_atom) @@ -502,7 +502,7 @@ desc = "Amanita Muscaria: Learn poisonous mushrooms by heart. Only pick mushrooms you know." icon_state = "amanita" potency = 10 - filling_color = "#FF0000" + filling_color = COLOR_RED plantname = "amanita" /obj/item/reagent_container/food/snacks/grown/mushroom/angel @@ -584,19 +584,14 @@ src.visible_message(SPAN_NOTICE("The [src.name] has been squashed."),SPAN_MODERATE("You hear a smack.")) qdel(src) return - for(var/turf/T in orange(M,outer_teleport_radius)) - if(T in orange(M,inner_teleport_radius)) continue + for(var/turf/T as anything in (RANGE_TURFS(outer_teleport_radius, M) - RANGE_TURFS(inner_teleport_radius, M))) if(istype(T,/turf/open/space)) continue if(T.density) continue if(T.x>world.maxx-outer_teleport_radius || T.xworld.maxy-outer_teleport_radius || T.y 24) round_percent = round(percent, 25) else round_percent = 10 @@ -366,6 +366,14 @@ ground_offset_x = 9 ground_offset_y = 8 +/obj/item/reagent_container/glass/beaker/vial/epinephrine + name = "epinephrine vial" + +/obj/item/reagent_container/glass/beaker/vial/epinephrine/Initialize() + . = ..() + reagents.add_reagent("adrenaline", 30) + update_icon() + /obj/item/reagent_container/glass/beaker/vial/tricordrazine name = "tricordrazine vial" @@ -389,17 +397,17 @@ . = ..() var/random_chem if(tier) - random_chem = pick(chemical_gen_classes_list[tier]) + random_chem = pick(GLOB.chemical_gen_classes_list[tier]) else - random_chem = pick( prob(3);pick(chemical_gen_classes_list["C1"]),\ - prob(5);pick(chemical_gen_classes_list["C2"]),\ - prob(7);pick(chemical_gen_classes_list["C3"]),\ - prob(10);pick(chemical_gen_classes_list["C4"]),\ - prob(15);pick(chemical_gen_classes_list["C5"]),\ - prob(25);pick(chemical_gen_classes_list["T1"]),\ - prob(15);pick(chemical_gen_classes_list["T2"]),\ - prob(10);pick(chemical_gen_classes_list["T3"]),\ - prob(5);pick(chemical_gen_classes_list["T4"]),\ + random_chem = pick( prob(3);pick(GLOB.chemical_gen_classes_list["C1"]),\ + prob(5);pick(GLOB.chemical_gen_classes_list["C2"]),\ + prob(7);pick(GLOB.chemical_gen_classes_list["C3"]),\ + prob(10);pick(GLOB.chemical_gen_classes_list["C4"]),\ + prob(15);pick(GLOB.chemical_gen_classes_list["C5"]),\ + prob(25);pick(GLOB.chemical_gen_classes_list["T1"]),\ + prob(15);pick(GLOB.chemical_gen_classes_list["T2"]),\ + prob(10);pick(GLOB.chemical_gen_classes_list["T3"]),\ + prob(5);pick(GLOB.chemical_gen_classes_list["T4"]),\ prob(15);"") if(random_chem) reagents.add_reagent(random_chem, 30) @@ -545,10 +553,6 @@ return . = ..() -/obj/item/reagent_container/glass/pressurized_canister/set_APTFT() - to_chat(usr, SPAN_WARNING("[src] has no transfer control valve! Use a dispenser to fill it!")) - return - /obj/item/reagent_container/glass/pressurized_canister/on_reagent_change() update_icon() @@ -612,7 +616,7 @@ if(reagents && reagents.total_volume) var/image/filling = image('icons/obj/items/reagentfillings.dmi', src, "[icon_state]-00-65") - var/percent = round((reagents.total_volume / volume) * 100) + var/percent = floor((reagents.total_volume / volume) * 100) switch(percent) if(0 to 33) filling.icon_state = "[icon_state]-00-33" if(34 to 65) filling.icon_state = "[icon_state]-34-65" @@ -673,5 +677,5 @@ if(istype(AM) && (src in user)) user.visible_message("[user] starts to wipe down [AM] with [src]!") if(do_after(user,30, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - user.visible_message("[user] finishes wiping off the [AM]!") + user.visible_message("[user] finishes wiping off [AM]!") AM.clean_blood() diff --git a/code/game/objects/items/reagent_containers/glass/bottle.dm b/code/game/objects/items/reagent_containers/glass/bottle.dm index 01eb751774..a7fd183f63 100644 --- a/code/game/objects/items/reagent_containers/glass/bottle.dm +++ b/code/game/objects/items/reagent_containers/glass/bottle.dm @@ -38,7 +38,7 @@ if(reagents.total_volume && (icon_state == "bottle-1" || icon_state == "bottle-2" || icon_state == "bottle-3" || icon_state == "bottle-4")) var/image/filling = image('icons/obj/items/reagentfillings.dmi', src, "[icon_state]10") - var/percent = round((reagents.total_volume / volume) * 100) + var/percent = floor((reagents.total_volume / volume) * 100) switch(percent) if(0 to 9) filling.icon_state = "[icon_state]--10" if(10 to 24) filling.icon_state = "[icon_state]-10" @@ -428,3 +428,13 @@ /obj/item/reagent_container/glass/bottle/tricordrazine/Initialize() . = ..() reagents.add_reagent("tricordrazine", 60) + +/obj/item/reagent_container/glass/bottle/epinephrine + name = "\improper Epinephrine bottle" + desc = "A small bottle. Contains epinephrine - Used to increase a patients arterial blood pressure, amongst other actions, to assist in cardiopulmonary resuscitation." //"I can't lie to you about your odds of a successful resuscitation, but you have my sympathies" + volume = 60 + +/obj/item/reagent_container/glass/bottle/epinephrine/Initialize() + . = ..() + reagents.add_reagent("adrenaline", 60) + update_icon() diff --git a/code/game/objects/items/reagent_containers/hypospray.dm b/code/game/objects/items/reagent_containers/hypospray.dm index fcea8997f0..94477520da 100644 --- a/code/game/objects/items/reagent_containers/hypospray.dm +++ b/code/game/objects/items/reagent_containers/hypospray.dm @@ -25,6 +25,10 @@ var/next_inject = 0 var/inject_cd = 0.75 SECONDS +/obj/item/reagent_container/hypospray/Destroy() + QDEL_NULL(mag) + . = ..() + /obj/item/reagent_container/hypospray/attack_self(mob/user) ..() @@ -206,6 +210,7 @@ to_chat(user, SPAN_NOTICE(" You inject [M] with [src].")) to_chat(M, SPAN_WARNING("You feel a tiny prick!")) playsound(loc, injectSFX, injectVOL, 1) + SEND_SIGNAL(M, COMSIG_LIVING_HYPOSPRAY_INJECTED, src) reagents.reaction(M, INGEST) if(M.reagents) @@ -236,6 +241,9 @@ /obj/item/reagent_container/hypospray/tricordrazine starting_vial = /obj/item/reagent_container/glass/beaker/vial/tricordrazine +/obj/item/reagent_container/hypospray/epinephrine + starting_vial = /obj/item/reagent_container/glass/beaker/vial/epinephrine + /obj/item/reagent_container/hypospray/sedative name = "Sedative Hypospray" starting_vial = /obj/item/reagent_container/glass/beaker/vial/sedative diff --git a/code/game/objects/items/reagent_containers/reagent_container.dm b/code/game/objects/items/reagent_containers/reagent_container.dm index 327f6ba1ce..b39bc9975a 100644 --- a/code/game/objects/items/reagent_containers/reagent_container.dm +++ b/code/game/objects/items/reagent_containers/reagent_container.dm @@ -1,113 +1,109 @@ /obj/item/reagent_container name = "Container" - desc = "" icon = 'icons/obj/items/chemistry.dmi' - icon_state = null throwforce = 3 w_class = SIZE_SMALL - throw_speed = SPEED_FAST throw_range = 5 attack_speed = 3 - var/amount_per_transfer_from_this = 5 - var/possible_transfer_amounts = list(5,10,15,25,30) - var/volume = 30 - var/transparent = FALSE //can we see what's in it? - var/reagent_desc_override = FALSE //does it have a special examining mechanic that should override the normal /reagent_containers examine proc? - actions_types = list(/datum/action/item_action/reagent_container/set_transfer_amount) ground_offset_x = 7 ground_offset_y = 7 + /// How many units of reagent get transfered out of the container at a time + var/amount_per_transfer_from_this = 5 + /// A list of possible amounts that can be transferred + var/possible_transfer_amounts = list(5, 10, 15, 25, 30) + /// The maximum volume the container can hold + var/volume = 30 + /// Can we see what's in it? + var/transparent = FALSE + /// Does it have a special examining mechanic that should override the normal /reagent_containers examine proc? + var/reagent_desc_override = FALSE + /// Whether the container can have the set transfer amount action at all + var/has_set_transfer_action = TRUE /obj/item/reagent_container/Initialize() - if(!possible_transfer_amounts) - actions_types -= /datum/action/item_action/reagent_container/set_transfer_amount + if(has_set_transfer_action && LAZYLEN(possible_transfer_amounts)) + LAZYADD(actions_types, /datum/action/item_action/reagent_container/set_transfer_amount) . = ..() - if(!possible_transfer_amounts) - verbs -= /obj/item/reagent_container/verb/set_APTFT //which objects actually uses it? create_reagents(volume) + /obj/item/reagent_container/get_examine_text(mob/user) . = ..() var/reagent_info = show_reagent_info(user) if(reagent_info) . += reagent_info +/// Whether the user can see the amount or reagents inside /obj/item/reagent_container/proc/show_reagent_info(mob/user) - if(isxeno(user) || reagent_desc_override) + if(reagent_desc_override) return - var/list/reagent_desc - if(reagents && (transparent || user.can_see_reagents())) - reagent_desc += "It contains : " - if(!user.can_see_reagents()) - if(get_dist(user, src) > 2 && user != loc) //we have a distance check with this - return SPAN_WARNING("It's too far away for you to see what's in it!") - if(!length(reagents.reagent_list)) - reagent_desc += "nothing." - else - reagent_desc += "[reagents.total_volume] units of liquid." - return SPAN_INFO("[reagent_desc]") - else //when wearing science goggles, you can see what's in something from any range - if(!length(reagents.reagent_list)) - reagent_desc += "nothing." - else - for(var/datum/reagent/current_reagent as anything in reagents.reagent_list) - reagent_desc += "[round(current_reagent.volume, 0.01)] units of [current_reagent.name].
    " - return SPAN_INFO("[reagent_desc]") - -/obj/item/reagent_container/verb/set_APTFT() //set amount_per_transfer_from_this - set name = "Set transfer amount" - set category = "Object" - set src in usr - if(!ishuman(usr)) + if(!reagents) return - var/mob/living/carbon/human/user = usr - var/obj/item/reagent_container/R = user.get_active_hand() - if(!istype(R)) + if(isxeno(user)) return - var/N = tgui_input_list(usr, "Amount per transfer from this:","[R]", possible_transfer_amounts) - if (N) - R.amount_per_transfer_from_this = N - -/obj/item/reagent_container/Destroy() - possible_transfer_amounts = null - return ..() - -/* -// Used on examine for properly skilled people to see contents. -// this is separate from show_reagent_info, as that proc is intended for use with science goggles -// this proc is general-purpose and primarily for medical items that you shouldn't need scigoggles to scan - ie pills, syringes, etc. -*/ + var/reagent_desc = "[src] contains: " + + if(user.can_see_reagents()) + reagent_desc += get_reagent_list_text() + return SPAN_INFO(reagent_desc) + + if(!transparent) + return + if(user != loc && !in_range(src, user)) + return SPAN_WARNING("[src] is too far away for you to see what's in it!") + + if(!LAZYLEN(reagents.reagent_list)) + reagent_desc += "Nothing" + return SPAN_INFO(reagent_desc) + + reagent_desc += "[reagents.total_volume] units of liquid" + return SPAN_INFO(reagent_desc) + +// this proc is general-purpose and primarily for medical items that you shouldn't need scigoggles to scan +/// Shows the reagent amount if the examining user is sufficiently skilled /obj/item/reagent_container/proc/display_contents(mob/user) if(isxeno(user)) return - if(skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED)) - return "[src] contains: [get_reagent_list_text()]."//this the pill - else + + if(!skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED)) return "You don't know what's in it." -//returns a text listing the reagents (and their volume) in the atom. Used by Attack logs for reagents in pills + return "[src] contains: [get_reagent_list_text()]." + +/// Returns a string listing all reagents (and their volume) in the container /obj/item/reagent_container/proc/get_reagent_list_text() - if(reagents && reagents.reagent_list && reagents.reagent_list.len) - var/datum/reagent/R = reagents.reagent_list[1] - . = "[R.name]([R.volume]u)" - if(reagents.reagent_list.len < 2) return - for (var/i in 2 to reagents.reagent_list.len) - R = reagents.reagent_list[i] - if(!R) continue - . += "; [R.name]([R.volume]u)" - else - . = "No reagents" + if(!reagents || !LAZYLEN(reagents.reagent_list)) + return "No reagents" + var/total_reagent_desc = "" + for(var/datum/reagent/current_reagent as anything in reagents.reagent_list) + if(total_reagent_desc != "") + total_reagent_desc += ", " + total_reagent_desc += "[current_reagent.name] ([current_reagent.volume]u)" + + return total_reagent_desc /datum/action/item_action/reagent_container/set_transfer_amount + name = "Set Transfer Amount" + /// The container that transfer amount will be set on + var/obj/item/reagent_container/container + +/datum/action/item_action/reagent_container/set_transfer_amount/Destroy() + container = null + . = ..() /datum/action/item_action/reagent_container/set_transfer_amount/New(mob/living/user, obj/item/holder) ..() - name = "Set Transfer Amount" button.name = name button.overlays.Cut() - var/image/IMG = image(holder_item.icon, button, holder_item.icon_state) - button.overlays += IMG + var/image/button_overlay = image(holder_item.icon, button, holder_item.icon_state) + button.overlays += button_overlay + container = holder_item /datum/action/item_action/reagent_container/set_transfer_amount/action_activate() - var/obj/item/reagent_container/cont = holder_item - cont.set_APTFT() + . = ..() + var/new_reagent_amount = tgui_input_list(owner, "Amount per transfer from this:","[container]", container.possible_transfer_amounts) + if(!new_reagent_amount) + return + to_chat(owner, SPAN_NOTICE("You change [container]'s reagent transfer amount to [new_reagent_amount].")) + container.amount_per_transfer_from_this = new_reagent_amount diff --git a/code/game/objects/items/reagent_containers/robodropper.dm b/code/game/objects/items/reagent_containers/robodropper.dm index 7447681f05..694194fbef 100644 --- a/code/game/objects/items/reagent_containers/robodropper.dm +++ b/code/game/objects/items/reagent_containers/robodropper.dm @@ -45,7 +45,7 @@ safe_thing.create_reagents(100) trans = src.reagents.trans_to(safe_thing, amount_per_transfer_from_this) - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] tries to squirt something into [target]'s eyes, but fails!"), SHOW_MESSAGE_VISIBLE) spawn(5) src.reagents.reaction(safe_thing, TOUCH) @@ -58,7 +58,7 @@ return - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] squirts something into [target]'s eyes!"), SHOW_MESSAGE_VISIBLE) src.reagents.reaction(target, TOUCH) diff --git a/code/game/objects/items/robot/robot_parts.dm b/code/game/objects/items/reagent_containers/robot_parts.dm similarity index 76% rename from code/game/objects/items/robot/robot_parts.dm rename to code/game/objects/items/reagent_containers/robot_parts.dm index b853b24d10..3a188bda6a 100644 --- a/code/game/objects/items/robot/robot_parts.dm +++ b/code/game/objects/items/reagent_containers/robot_parts.dm @@ -164,72 +164,6 @@ else to_chat(user, SPAN_NOTICE(" You need to attach a flash to it first!")) - if(istype(W, /obj/item/device/mmi)) - var/obj/item/device/mmi/M = W - if(check_completion()) - if(!istype(loc,/turf)) - to_chat(user, SPAN_DANGER("You can't put \the [W] in, the frame has to be standing on the ground to be perfectly precise.")) - return - if(!M.brainmob) - to_chat(user, SPAN_DANGER("Sticking an empty [W] into the frame would sort of defeat the purpose.")) - return - if(!M.brainmob.key) - var/ghost_can_reenter = 0 - if(M.brainmob.mind) - for(var/mob/dead/observer/G in GLOB.observer_list) - if(G.can_reenter_corpse && G.mind == M.brainmob.mind) - ghost_can_reenter = 1 - break - if(!ghost_can_reenter) - to_chat(user, SPAN_NOTICE("\The [W] is completely unresponsive; there's no point.")) - return - - if(M.brainmob.stat == DEAD) - to_chat(user, SPAN_DANGER("Sticking a dead [W] into the frame would sort of defeat the purpose.")) - return - - if(jobban_isbanned(M.brainmob, "Cyborg")) - to_chat(user, SPAN_DANGER("This [W] does not seem to fit.")) - return - - var/mob/living/silicon/robot/O = new /mob/living/silicon/robot(get_turf(loc), unfinished = 1) - if(!O) return - - user.drop_held_item() - - O.mmi = W - O.invisibility = 0 - O.custom_name = created_name - O.updatename("Default") - - M.brainmob.mind.transfer_to(O) - - O.job = "Cyborg" - - O.cell = chest.cell - O.cell.forceMove(O) - W.forceMove(O)//Should fix cybros run time erroring when blown up. It got deleted before, along with the frame. - - // Since we "magically" installed a cell, we also have to update the correct component. - if(O.cell) - var/datum/robot_component/cell_component = O.components["power cell"] - cell_component.wrapped = O.cell - cell_component.installed = 1 - O.Namepick() - - qdel(src) - else - to_chat(user, SPAN_NOTICE(" The MMI must go in after everything else!")) - - if (HAS_TRAIT(W, TRAIT_TOOL_PEN)) - var/t = stripped_input(user, "Enter new robot name", src.name, src.created_name, MAX_NAME_LEN) - if (!t) - return - if (!in_range(src, usr) && src.loc != usr) - return - - src.created_name = t - return /obj/item/robot_parts/chest/attackby(obj/item/W as obj, mob/user as mob) diff --git a/code/game/objects/items/reagent_containers/spray.dm b/code/game/objects/items/reagent_containers/spray.dm index 83018d06e6..0d84c97a20 100644 --- a/code/game/objects/items/reagent_containers/spray.dm +++ b/code/game/objects/items/reagent_containers/spray.dm @@ -15,18 +15,19 @@ possible_transfer_amounts = list(5,10) //Set to null instead of list, if there is only one. matter = list("plastic" = 500) transparent = TRUE + volume = 250 + has_set_transfer_action = FALSE + ///How many tiles the spray will move var/spray_size = 3 + /// The spray_size based on the transfer amount var/list/spray_sizes = list(1,3) + /// Whether you can spray the bottle var/safety = FALSE - volume = 250 + /// The world.time it was last used var/last_use = 1 + /// The delay between uses var/use_delay = 0.5 SECONDS - -/obj/item/reagent_container/spray/Initialize() - . = ..() - verbs -= /obj/item/reagent_container/verb/set_APTFT - /obj/item/reagent_container/spray/afterattack(atom/A, mob/user, proximity) //this is what you get for using afterattack() TODO: make is so this is only called if attackby() returns 0 or something if(isstorage(A) || istype(A, /obj/structure/surface/table) || istype(A, /obj/structure/surface/rack) || istype(A, /obj/structure/closet) \ @@ -87,7 +88,7 @@ /obj/item/reagent_container/spray/get_examine_text(mob/user) . = ..() - . += "[round(reagents.total_volume)] units left." + . += "[floor(reagents.total_volume)] units left." /obj/item/reagent_container/spray/verb/empty() @@ -197,7 +198,7 @@ var/turf/T2 = get_step(T,turn(direction, -90)) var/list/the_targets = list(T,T1,T2) - for(var/i=1, i<=Sprays.len, i++) + for(var/i=1, i<=length(Sprays), i++) spawn() var/obj/effect/decal/chempuff/D = Sprays[i] if(!D) continue diff --git a/code/game/objects/items/reagent_containers/syringes.dm b/code/game/objects/items/reagent_containers/syringes.dm index 06cbb55936..2bb121740c 100644 --- a/code/game/objects/items/reagent_containers/syringes.dm +++ b/code/game/objects/items/reagent_containers/syringes.dm @@ -258,20 +258,20 @@ return if (target != user && target.getarmor(target_zone, ARMOR_MELEE) > 5 && prob(50)) - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(text(SPAN_DANGER("[user] tries to stab [target] in \the [hit_area] with [src.name], but the attack is deflected by armor!")), SHOW_MESSAGE_VISIBLE) user.temp_drop_inv_item(src) qdel(src) return - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(text(SPAN_DANGER("[user] stabs [target] in \the [hit_area] with [src.name]!")), SHOW_MESSAGE_VISIBLE) if(affecting.take_damage(3)) target:UpdateDamageIcon() else - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(text(SPAN_DANGER("[user] stabs [target] with [src.name]!")), SHOW_MESSAGE_VISIBLE) target.take_limb_damage(3)// 7 is the same as crowbar punch diff --git a/code/game/objects/items/research_upgrades.dm b/code/game/objects/items/research_upgrades.dm new file mode 100644 index 0000000000..2cfbe0ebeb --- /dev/null +++ b/code/game/objects/items/research_upgrades.dm @@ -0,0 +1,72 @@ +//prop items +/obj/item/oldresearch + name = "Alien Organ" + desc = "Looking at it makes you want to vomit" + icon = 'icons/obj/items/Marine_Research.dmi' + icon_state = "biomass" + black_market_value = 50 + //For all of them for now, until we have specific organs/more techs + +/obj/item/oldresearch/Resin + name = "Alien Resin" + desc = "A piece of alien Resin" + icon_state = "biomass" + + +/obj/item/oldresearch/Chitin + name = "Chunk of Chitin" + desc = "A chunk of alien Chitin" + icon_state = "chitin-chunk" + + +/obj/item/oldresearch/Blood + name = "Blood Vial" + desc = "A sample of alien Blood" + icon_state = "blood-vial" + +//prop items end + +//previously file holding left over stuff that never got finished from 8 years ago, it was boring though, so we change that. +/obj/item/research_upgrades + name = "Research upgrade" + desc = "Somehow you got this, you shouldnt be able to, consider yourself special." + icon = 'icons/obj/items/disk.dmi' + w_class = SIZE_TINY + icon_state = "datadisk1" // doesnt HAVE to be a disk! + ///technology stored on this disk, goes through one to whatever levels of upgrades there are. + var/value + +/obj/item/research_upgrades/autodoc + name = "Research Upgrade (AutoDoc)" + value = RESEARCH_UPGRADE_TIER_1 + + +/obj/item/research_upgrades/autodoc/Initialize(mapload, value) + . = ..() + src.value = value + desc = "Research upgrade for an AutoDoc. The technology on this disk is used [get_upgrade_text()]. Insert it in an AutoDoc to use it." + +/obj/item/research_upgrades/autodoc/proc/get_upgrade_text() + switch(value) + if(RESEARCH_UPGRADE_TIER_1) + return "for stitching up internal bleedings" + if(RESEARCH_UPGRADE_TIER_2) + return "for fixing broken bones" + if(RESEARCH_UPGRADE_TIER_3) + return "for treating internal organ damage" + if(RESEARCH_UPGRADE_TIER_4) + return "for extracting unknown parasites" + +/obj/item/research_upgrades/sleeper + name = "Research Upgrade (Sleeper)" + desc = "Research upgrade for a sleeper system. The technology on this disk is used on a sleeper to allow a wider spectrum of chemicals to be administered." + + +/obj/item/research_upgrades/credits + name = "Research Market (Credits)" + var/credit_value = 8 + +/obj/item/research_upgrades/credits/Initialize(mapload, ...) + . = ..() + credit_value = rand(8, 9) + desc = "Research disk containing all the bits of data the analyzer could salvage, insert this into a research computer in order to sell the data and acquire [credit_value] points." diff --git a/code/game/objects/items/robot/robot_items.dm b/code/game/objects/items/robot/robot_items.dm deleted file mode 100644 index 476390fda6..0000000000 --- a/code/game/objects/items/robot/robot_items.dm +++ /dev/null @@ -1,83 +0,0 @@ -//********************************************************************** -// Cyborg Spec Items -//***********************************************************************/ -//Might want to move this into several files later but for now it works here -/obj/item/robot/stun - name = "electrified arm" - icon = 'icons/obj/structures/props/decals.dmi' - icon_state = "shock" - -/obj/item/robot/stun/attack(mob/M as mob, mob/living/silicon/robot/user as mob) - M.attack_log += text("\[[time_stamp()]\] Has been attacked with [src.name] by [user.name] ([user.ckey])") - user.attack_log += text("\[[time_stamp()]\] Used the [src.name] to attack [M.name] ([M.ckey])") - msg_admin_attack("[user.name] ([user.ckey]) used the [src.name] to attack [M.name] ([M.ckey]) in [get_area(user)] ([user.loc.x],[user.loc.y],[user.loc.z]).", user.loc.x, user.loc.y, user.loc.z) - - user.cell.charge -= 30 - - playsound(M.loc, 'sound/weapons/Egloves.ogg', 25, 1, 4) - M.apply_effect(5, WEAKEN) - if (M.stuttering < 5) - M.stuttering = 5 - M.apply_effect(5, STUN) - - for(var/mob/O in viewers(M, null)) - if (O.client) - O.show_message(SPAN_DANGER("[user] has prodded [M] with an electrically-charged arm!"), SHOW_MESSAGE_VISIBLE, SPAN_DANGER("You hear someone fall"), SHOW_MESSAGE_AUDIBLE) - -/obj/item/robot/overdrive - name = "overdrive" - icon = 'icons/obj/structures/props/decals.dmi' - icon_state = "shock" - -//********************************************************************** -// HUD/SIGHT things -//***********************************************************************/ -/obj/item/robot/sight - icon = 'icons/obj/structures/props/decals.dmi' - icon_state = "securearea" - var/sight_mode = null - - -/obj/item/robot/sight/xray - name = "\proper x-ray Vision" - sight_mode = BORGXRAY - - -/obj/item/robot/sight/thermal - name = "\proper thermal vision" - sight_mode = BORGTHERM - icon_state = "thermal" - icon = 'icons/obj/items/clothing/glasses.dmi' - - -/obj/item/robot/sight/meson - name = "\proper meson vision" - sight_mode = BORGMESON - icon_state = "meson" - icon = 'icons/obj/items/clothing/glasses.dmi' - -/obj/item/robot/sight/hud - name = "hud" - var/obj/item/clothing/glasses/hud/hud = null - - -/obj/item/robot/sight/hud/med - name = "medical hud" - icon_state = "healthhud" - icon = 'icons/obj/items/clothing/glasses.dmi' - -/obj/item/robot/sight/hud/sec/New() - ..() - hud = new /obj/item/clothing/glasses/hud/health(src) - return - - -/obj/item/robot/sight/hud/sec - name = "security hud" - icon_state = "securityhud" - icon = 'icons/obj/items/clothing/glasses.dmi' - -/obj/item/robot/sight/hud/sec/New() - ..() - hud = new /obj/item/clothing/glasses/hud/security(src) - return diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm deleted file mode 100644 index c5fa39fd10..0000000000 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ /dev/null @@ -1,149 +0,0 @@ -// robot_upgrades.dm -// Contains various borg upgrades. - -/obj/item/robot/upgrade - name = "borg upgrade module." - desc = "Protected by FRM." - icon = 'icons/obj/items/circuitboards.dmi' - icon_state = "cyborg_upgrade" - var/locked = 0 - var/require_module = 0 - var/installed = 0 - -/obj/item/robot/upgrade/proc/action(mob/living/silicon/robot/R) - if(R.stat == DEAD) - to_chat(usr, SPAN_DANGER("The [src] will not function on a deceased robot.")) - return 1 - return 0 - - -/obj/item/robot/upgrade/reset - name = "robotic module reset board" - desc = "Used to reset a cyborg's module. Destroys any other upgrades applied to the robot." - icon_state = "cyborg_upgrade1" - require_module = 1 - -/obj/item/robot/upgrade/reset/action(mob/living/silicon/robot/R) - if(..()) return 0 - R.uneq_all() - R.hands.icon_state = "nomod" - R.icon_state = "robot" - QDEL_NULL(R.module) - R.camera.network.Remove(list("Engineering","Medical","MINE")) - R.updatename("Default") - R.status_flags |= CANPUSH - R.update_icons() - - return 1 - -/obj/item/robot/upgrade/rename - name = "robot reclassification board" - desc = "Used to rename a cyborg." - icon_state = "cyborg_upgrade1" - var/heldname = "default name" - -/obj/item/robot/upgrade/rename/attack_self(mob/user) - ..() - heldname = stripped_input(user, "Enter new robot name", "Robot Reclassification", heldname, MAX_NAME_LEN) - -/obj/item/robot/upgrade/rename/action(mob/living/silicon/robot/R) - if(..()) return 0 - R.custom_name = heldname - R.change_real_name(R, heldname) - - return 1 - -/obj/item/robot/upgrade/restart - name = "robot emergency restart module" - desc = "Used to force a restart of a disabled-but-repaired robot, bringing it back online." - icon_state = "cyborg_upgrade1" - - -/obj/item/robot/upgrade/restart/action(mob/living/silicon/robot/R) - if(R.health < 0) - to_chat(usr, "You have to repair the robot before using this module!") - return 0 - - if(!R.key) - for(var/mob/dead/observer/ghost in GLOB.observer_list) - if(ghost.mind && ghost.mind.original == R) - R.key = ghost.key - if(R.client) R.client.change_view(world_view_size) - break - - R.set_stat(CONSCIOUS) - return 1 - - -/obj/item/robot/upgrade/vtec - name = "robotic VTEC Module" - desc = "Used to kick in a robot's VTEC systems, increasing their speed." - icon_state = "cyborg_upgrade2" - require_module = 1 - -/obj/item/robot/upgrade/vtec/action(mob/living/silicon/robot/R) - if(..()) return 0 - - if(R.speed == -1) - return 0 - - R.speed-- - return 1 - - -/obj/item/robot/upgrade/tasercooler - name = "robotic Rapid Taser Cooling Module" - desc = "Used to cool a mounted taser, increasing the potential current in it and thus its recharge rate." - icon_state = "cyborg_upgrade3" - require_module = 1 - - -/obj/item/robot/upgrade/tasercooler/action(mob/living/silicon/robot/R) - if(..()) return 0 -/* - - if(!istype(R.module, /obj/item/circuitboard/robot_module/security)) - to_chat(R, "Upgrade mounting error! No suitable hardpoint detected!") - to_chat(usr, "There's no mounting point for the module!") - return 0 - - var/obj/item/weapon/gun/energy/taser/cyborg/T = locate() in R.module - if(!T) - T = locate() in R.module.contents - if(!T) - T = locate() in R.module.modules - if(!T) - to_chat(usr, "This robot has had its taser removed!") - return 0 - - if(T.recharge_time <= 2) - to_chat(R, "Maximum cooling achieved for this hardpoint!") - to_chat(usr, "There's no room for another cooling unit!") - return 0 - - else - T.recharge_time = max(2 , T.recharge_time - 4) -*/ - return 1 - -/obj/item/robot/upgrade/jetpack - name = "mining robot jetpack" - desc = "A carbon dioxide jetpack suitable for low-gravity mining operations." - icon_state = "cyborg_upgrade3" - require_module = 1 - -/obj/item/robot/upgrade/jetpack/action(mob/living/silicon/robot/R) - if(..()) return 0 - - R.module.modules += new/obj/item/tank/jetpack/carbondioxide - for(var/obj/item/tank/jetpack/carbondioxide in R.module.modules) - R.internal = src - //R.icon_state="Miner+j" - return 1 - - -/obj/item/robot/upgrade/syndicate - name = "illegal equipment module" - desc = "Unlocks the hidden, deadlier functions of a robot" - icon_state = "cyborg_upgrade3" - require_module = 1 diff --git a/code/game/objects/items/shards.dm b/code/game/objects/items/shards.dm index 84c3d5b834..dab573e6f5 100644 --- a/code/game/objects/items/shards.dm +++ b/code/game/objects/items/shards.dm @@ -81,7 +81,7 @@ /obj/item/large_shrapnel/proc/on_embedded_movement(mob/living/embedded_mob) return -/obj/item/large_shrapnel/proc/on_embed(mob/embedded_mob, obj/limb/target_organ) +/obj/item/large_shrapnel/proc/on_embed(mob/embedded_mob, obj/limb/target_organ, silent = FALSE) return /obj/item/large_shrapnel/at_rocket_dud @@ -180,14 +180,14 @@ cell_explosion(get_turf(target), 200, 150, EXPLOSION_FALLOFF_SHAPE_LINEAR, direction, create_cause_data("[cause] UXO detonation", user)) qdel(src) -/obj/item/large_shrapnel/at_rocket_dud/on_embed(mob/embedded_mob, obj/limb/target_organ) +/obj/item/large_shrapnel/at_rocket_dud/on_embed(mob/embedded_mob, obj/limb/target_organ, silent = FALSE) if(!ishuman(embedded_mob)) return var/mob/living/carbon/human/H = embedded_mob if(H.species.flags & NO_SHRAPNEL) return if(istype(target_organ)) - target_organ.embed(src) + target_organ.embed(src, silent) /obj/item/large_shrapnel/at_rocket_dud/on_embedded_movement(mob/living/embedded_mob) if(!ishuman(embedded_mob)) @@ -212,14 +212,14 @@ source_sheet_type = null var/damage_on_move = 0.5 -/obj/item/shard/shrapnel/proc/on_embed(mob/embedded_mob, obj/limb/target_organ) +/obj/item/shard/shrapnel/proc/on_embed(mob/embedded_mob, obj/limb/target_organ, silent = FALSE) if(!ishuman(embedded_mob)) return var/mob/living/carbon/human/H = embedded_mob if(H.species.flags & NO_SHRAPNEL) return if(istype(target_organ)) - target_organ.embed(src) + target_organ.embed(src, silent) /obj/item/shard/shrapnel/proc/on_embedded_movement(mob/living/embedded_mob) if(!ishuman(embedded_mob)) @@ -228,7 +228,7 @@ if(H.species.flags & NO_SHRAPNEL) return var/obj/limb/organ = embedded_organ - if(istype(organ)) + if(istype(organ) && damage_on_move) organ.take_damage(damage_on_move * count, 0, 0, no_limb_loss = TRUE) embedded_mob.pain.apply_pain(damage_on_move * count) @@ -261,3 +261,7 @@ name = "alien bone fragments" icon_state = "alienbonechips" desc = "Sharp, jagged fragments of alien bone. Looks like the previous owner exploded violently..." + +/obj/item/shard/shrapnel/tutorial + damage_on_move = 0 + diff --git a/code/game/objects/items/stacks/cable_coil.dm b/code/game/objects/items/stacks/cable_coil.dm index e846979c00..1dd95464dd 100644 --- a/code/game/objects/items/stacks/cable_coil.dm +++ b/code/game/objects/items/stacks/cable_coil.dm @@ -33,7 +33,7 @@ /obj/item/stack/cable_coil/proc/updateicon() if (!color) - color = pick(COLOR_RED, COLOR_BLUE, COLOR_GREEN, COLOR_ORANGE, COLOR_WHITE, COLOR_PINK, COLOR_YELLOW, COLOR_CYAN) + color = pick(COLOR_RED, COLOR_BLUE, COLOR_GREEN, COLOR_ORANGE, COLOR_WHITE, COLOR_MAGENTA, COLOR_YELLOW, COLOR_CYAN) if(amount == 1) icon_state = "coil1" name = "cable piece" @@ -70,7 +70,7 @@ if(src.amount <= 14) to_chat(usr, SPAN_WARNING("You need at least 15 lengths to make restraints!")) return - var/obj/item/handcuffs/cable/B = new /obj/item/handcuffs/cable(usr.loc) + var/obj/item/restraint/adjustable/cable/B = new /obj/item/restraint/adjustable/cable(usr.loc) B.color = color to_chat(usr, SPAN_NOTICE("You wind some cable together to make some restraints.")) src.use(15) @@ -298,11 +298,11 @@ color = "#a8c1dd" /obj/item/stack/cable_coil/white - color = "#FFFFFF" + color = COLOR_WHITE /obj/item/stack/cable_coil/random/Initialize() . = ..() - color = pick(COLOR_RED, COLOR_BLUE, COLOR_GREEN, COLOR_WHITE, COLOR_PINK, COLOR_YELLOW, COLOR_CYAN) + color = pick(COLOR_RED, COLOR_BLUE, COLOR_GREEN, COLOR_WHITE, COLOR_MAGENTA, COLOR_YELLOW, COLOR_CYAN) /obj/item/stack/cable_coil/attack(mob/M as mob, mob/user as mob) if(ishuman(M)) diff --git a/code/game/objects/items/stacks/flags.dm b/code/game/objects/items/stacks/flags.dm index bc55096211..4dc2e6dbeb 100644 --- a/code/game/objects/items/stacks/flags.dm +++ b/code/game/objects/items/stacks/flags.dm @@ -71,8 +71,233 @@ var/obj/item/stack/flag/newflag = new src.type(T) newflag.amount = 1 newflag.upright = TRUE - anchored = TRUE + newflag.anchored = TRUE newflag.name = newflag.singular_name newflag.icon_state = "[newflag.base_state]_open" newflag.visible_message("[user] plants [newflag] firmly in the ground.") src.use(1) + + +/// PLANTABLE FLAG + +/obj/structure/flag/plantable + name = "flag" + desc = "A flag of something. This one looks like you could dismantle it." + icon = 'icons/obj/structures/plantable_flag.dmi' + pixel_x = 9 // All flags need to be offset to the right by 9 to be centered. + layer = ABOVE_XENO_LAYER + health = 150 + unacidable = TRUE + + /// The typepath for the flag item that gets spawned when the flag is taken down. + var/flag_type = /obj/item/flag/plantable + /// Used to limit the spam of the warcry_extra_sound + COOLDOWN_DECLARE(warcry_cooldown_struc) + +/obj/structure/flag/plantable/attack_hand(mob/user) + ..() + disassemble(user, flag_type) + +/// Proc for dismantling the flag into an item that can be picked up. +/obj/structure/flag/plantable/proc/disassemble(mob/user, flag_type) + if(user.action_busy) + return + + user.visible_message(SPAN_NOTICE("[user] starts taking [src] down..."), SPAN_NOTICE("You start taking [src] down...")) + + playsound(loc, 'sound/effects/flag_raising.ogg', 30) + if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC) || QDELETED(src)) + return + + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + user.visible_message(SPAN_NOTICE("[user] starts takes [src] down!"), SPAN_NOTICE("You take [src] down!")) + var/obj/item/flag/plantable/flag_item = new flag_type(loc) + user.put_in_hands(flag_item) + COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc)) + qdel(src) + +/// Proc for when the flag gets forcefully dismantled (due to general damage, explosions, etc.) +/obj/structure/flag/plantable/proc/demolish(flag_type) + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + visible_message(SPAN_WARNING("[src] crumples to the ground!")) + var/obj/item/flag/plantable/flag_item = new flag_type(loc) + COOLDOWN_START(flag_item, warcry_cooldown_item, COOLDOWN_TIMELEFT(src, warcry_cooldown_struc)) + qdel(src) + +// Procs for handling damage. +/obj/structure/flag/plantable/update_health(damage) + if(damage) + health -= damage + if(health <= 0) + demolish(flag_type) + +/obj/structure/flag/plantable/ex_act(severity) + if(health <= 0) + return + update_health(severity) + +/obj/structure/flag/plantable/attack_alien(mob/living/carbon/xenomorph/xeno) + if(xeno.a_intent == INTENT_HARM) + if(unslashable) + return + xeno.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] slashes [src]!"), SPAN_DANGER("We slash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + update_health(rand(xeno.melee_damage_lower, xeno.melee_damage_upper)) + return XENO_ATTACK_ACTION + else + to_chat(xeno, SPAN_WARNING("We stare at [src] cluelessly.")) + return XENO_NONCOMBAT_ACTION + +/obj/structure/flag/plantable/bullet_act(obj/projectile/bullet) + bullet_ping(bullet) + visible_message(SPAN_DANGER("[src] is hit by [bullet]!"), null, 4, CHAT_TYPE_TAKING_HIT) + update_health(bullet.damage) + return TRUE + +/obj/structure/flag/plantable/attackby(obj/item/weapon, mob/living/user) + if(!indestructible) + visible_message(SPAN_DANGER("[src] has been hit by [user] with [weapon]!"), null, 5, CHAT_TYPE_MELEE_HIT) + user.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + update_health(weapon.force * weapon.demolition_mod) + +/obj/item/flag/plantable + name = "plantable flag" + desc = "A flag of something. This one looks ready to be planted into the ground." + w_class = SIZE_LARGE + throw_range = 2 + icon = 'icons/obj/structures/plantable_flag.dmi' + inhand_x_dimension = 64 + inhand_y_dimension = 64 + force = 15 + throwforce = 5 + hitsound = "swing_hit" + unacidable = TRUE + indestructible = TRUE + item_icons = list( + WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_64.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_64.dmi' + ) + + /// The typepath of the flag structure that gets spawned when the flag is planted. + var/flag_type = /obj/structure/flag/plantable + /// Used to check if nearby mobs belong to a faction when calculating for the stronger warcry. + var/faction + /// Does the flag play a unique warcry when planted? (Only while on harm intent.) + var/play_warcry = FALSE + /// The warcry's sound path. + var/warcry_sound + /// When there are more than 14 allies nearby, play this stronger warcry. + var/warcry_extra_sound + /// How many nearby allies do we need for the stronger warcry to be played? + var/allies_required = 14 + /// Used to limit the spam of the warcry_extra_sound + COOLDOWN_DECLARE(warcry_cooldown_item) + +/obj/item/flag/plantable/get_examine_text(mob/user) + . = ..() + if(play_warcry && user.faction == faction) + . += SPAN_NOTICE("Planting the flag while in HARM intent will cause you to bellow out a rallying warcry!") + +/// Proc for turning the flag item into a structure. +/obj/item/flag/plantable/proc/plant_flag(mob/living/user, play_warcry = FALSE, warcry_sound, warcry_extra_sound, faction) + if(user.action_busy) + return + + if(SSinterior.in_interior(user)) + to_chat(usr, SPAN_WARNING("There's no way to plant [src] in here!")) + return + + var/turf/turf_to_plant = get_step(user, user.dir) + if(istype(turf_to_plant, /turf/open)) + var/turf/open/floor = turf_to_plant + if(!floor.allow_construction || istype(floor, /turf/open/space)) + to_chat(user, SPAN_WARNING("You cannot deploy [src] here, find a more secure surface!")) + return + else + to_chat(user, SPAN_WARNING("[turf_to_plant] is blocking you from deploying [src]!")) + return + + for(var/obj/object in turf_to_plant) + if(object.density) + to_chat(usr, SPAN_WARNING("You need a clear, open area to plant [src], something is blocking the way in front of you!")) + return + + user.visible_message(SPAN_NOTICE("[user] starts planting [src] into the ground..."), SPAN_NOTICE("You start planting [src] into the ground...")) + playsound(user, 'sound/effects/flag_raising.ogg', 30) + if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return + + user.visible_message(SPAN_NOTICE("[user] plants [src] into the ground!"), SPAN_NOTICE("You plant [src] into the ground!")) + var/obj/structure/flag/plantable/planted_flag = new flag_type(turf_to_plant) + + // If there are more than 14 allies nearby, play a stronger rallying cry. + // Otherwise, play the default warcry sound if there is one. If not, play a generic flag raising sfx. + if(play_warcry && user.faction == faction && user.a_intent == INTENT_HARM) + var/allies_nearby = 0 + if(COOLDOWN_FINISHED(src, warcry_cooldown_item)) + for(var/mob/living/carbon/human in orange(planted_flag, 7)) + if(human.is_dead() || human.faction != faction) + continue + allies_nearby++ + + user.show_speech_bubble("warcry") + if(allies_nearby >= allies_required) + playsound(user, warcry_extra_sound, 40) + // Start a cooldown on the flag structure. This way we can keep track of the cooldown when the flag is hoisted and taken down. + COOLDOWN_START(planted_flag, warcry_cooldown_struc, 90 SECONDS) + user.manual_emote("shouts an invigorating rallying cry!") + else + playsound(user, warcry_sound, 30) + user.manual_emote("shouts an inspiring cry!") + // Ditto. If the cooldown isn't finished we have to transfer the leftover time to the structure. + COOLDOWN_START(planted_flag, warcry_cooldown_struc, COOLDOWN_TIMELEFT(src, warcry_cooldown_item)) + else + playsound(loc, 'sound/effects/flag_raised.ogg', 30) + + qdel(src) + +/obj/item/flag/plantable/attack_self(mob/user) + ..() + plant_flag(user, play_warcry, warcry_sound, warcry_extra_sound, faction) + +// UNITED AMERICAS FLAG // +////////////////////////// + +/obj/item/flag/plantable/ua + name = "\improper United Americas flag" + desc = "The flag of the United Americas. This one looks ready to be planted into the ground." + icon = 'icons/obj/structures/plantable_flag.dmi' + icon_state = "flag_ua" + flag_type = /obj/structure/flag/plantable/ua + faction = FACTION_MARINE + play_warcry = TRUE + warcry_sound = 'sound/effects/flag_warcry_ua.ogg' + warcry_extra_sound = 'sound/effects/flag_warcry_ua_extra.ogg' + +/obj/structure/flag/plantable/ua + name = "\improper United Americas flag" + desc = "The flag of the United Americas. Semper fi." + icon_state = "flag_ua_planted" + flag_type = /obj/item/flag/plantable/ua + +// UNION OF PROGRESSIVE PEOPLES FLAG // +////////////////////////// + +/obj/item/flag/plantable/upp + name = "\improper Union of Progressive Peoples flag" + desc = "The flag of the Union of Progressive Peoples. This one looks ready to be planted into the ground." + icon = 'icons/obj/structures/plantable_flag.dmi' + icon_state = "flag_upp" + flag_type = /obj/structure/flag/plantable/upp + faction = FACTION_UPP + play_warcry = TRUE + warcry_sound = 'sound/effects/flag_upp_warcry.ogg' + warcry_extra_sound = 'sound/effects/flag_upp_warcry_extra.ogg' + +/obj/structure/flag/plantable/upp + name = "\improper Union of Progressive Peoples flag" + desc = "The flag of the Union of Progressive Peoples. Unity through Strength, Freedom through Unity." + icon_state = "flag_upp_planted" + flag_type = /obj/item/flag/plantable/upp diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index f96903cfb6..c4a496a123 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -21,7 +21,7 @@ to_chat(user, SPAN_DANGER("\The [src] cannot be applied to [M]!")) return 1 - if(!ishuman(user) && !isrobot(user)) + if(!ishuman(user)) to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!")) return 1 @@ -95,6 +95,9 @@ to_chat(user, SPAN_WARNING("There are no wounds on [possessive] [affecting.display_name].")) return TRUE +/obj/item/stack/medical/bruise_pack/two + amount = 2 + /obj/item/stack/medical/ointment name = "ointment" desc = "Used to treat burns, infected wounds, and relieve itching in unusual places." diff --git a/code/game/objects/items/stacks/nanopaste.dm b/code/game/objects/items/stacks/nanopaste.dm index 754a36c601..156fbf548f 100644 --- a/code/game/objects/items/stacks/nanopaste.dm +++ b/code/game/objects/items/stacks/nanopaste.dm @@ -15,17 +15,6 @@ /obj/item/stack/nanopaste/attack(mob/living/M as mob, mob/user as mob) if (!istype(M) || !istype(user)) return 0 - if (isrobot(M)) //Repairing cyborgs - var/mob/living/silicon/robot/R = M - if (R.getBruteLoss() || R.getFireLoss() ) - R.apply_damage(-15, BRUTE) - R.apply_damage(-15, BURN) - R.updatehealth() - use(1) - user.visible_message(SPAN_NOTICE("\The [user] applied some [src] at [R]'s damaged areas."),\ - SPAN_NOTICE("You apply some [src] at [R]'s damaged areas.")) - else - to_chat(user, SPAN_NOTICE("All [R]'s systems are nominal.")) if (istype(M,/mob/living/carbon/human)) //Repairing robolimbs var/mob/living/carbon/human/H = M diff --git a/code/game/objects/items/stacks/rods.dm b/code/game/objects/items/stacks/rods.dm index 18578295b0..bef6d1d168 100644 --- a/code/game/objects/items/stacks/rods.dm +++ b/code/game/objects/items/stacks/rods.dm @@ -4,7 +4,7 @@ singular_name = "metal rod" icon_state = "rods" flags_atom = FPRINT|CONDUCT - w_class = SIZE_MEDIUM + w_class = SIZE_SMALL force = 9 throwforce = 15 throw_speed = SPEED_VERY_FAST @@ -54,13 +54,7 @@ GLOBAL_LIST_INIT(rod_recipes, list ( singular_name = "plasteel rod" icon_state = "rods_plasteel" flags_atom = FPRINT - w_class = SIZE_MEDIUM - force = 9 - throwforce = 15 - throw_speed = SPEED_VERY_FAST - throw_range = 20 matter = list("plasteel" = 3750) - max_amount = 60 attack_verb = list("hit", "bludgeoned", "whacked") stack_id = "plasteel rod" sheet_path = /obj/item/stack/sheet/plasteel diff --git a/code/game/objects/items/stacks/sheets/glass.dm b/code/game/objects/items/stacks/sheets/glass.dm index 6d0736f8ae..7c12da0707 100644 --- a/code/game/objects/items/stacks/sheets/glass.dm +++ b/code/game/objects/items/stacks/sheets/glass.dm @@ -106,7 +106,7 @@ if(AC) to_chat(usr, SPAN_WARNING("\The [src] cannot be built here!")) return TRUE - var/list/directions = new/list(cardinal) + var/list/directions = GLOB.cardinals.Copy() var/i = 0 for (var/obj/structure/window/win in user.loc) i++ @@ -114,7 +114,7 @@ to_chat(user, SPAN_DANGER("There are too many windows in this location.")) return TRUE directions-=win.dir - if(!(win.dir in cardinal)) + if(!(win.dir in GLOB.cardinals)) to_chat(user, SPAN_DANGER("Can't let you do that.")) return TRUE diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 19049bd51c..1bdec679b2 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -10,7 +10,7 @@ /* * Metal */ -var/global/list/datum/stack_recipe/metal_recipes = list ( \ +GLOBAL_LIST_INIT_TYPED(metal_recipes, /datum/stack_recipe, list ( \ new/datum/stack_recipe("barbed wire", /obj/item/stack/barbed_wire, 1, 1, 20, time = 1 SECONDS, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_TRAINED), \ new/datum/stack_recipe("metal barricade", /obj/structure/barricade/metal, 4, time = 2 SECONDS, one_per_turf = ONE_TYPE_PER_BORDER, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_TRAINED, min_time = 1 SECONDS), \ new/datum/stack_recipe("folding metal barricade", /obj/structure/barricade/plasteel/metal, 6, time = 3 SECONDS, one_per_turf = ONE_TYPE_PER_BORDER, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI, min_time = 1.5 SECONDS), \ @@ -27,6 +27,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ new/datum/stack_recipe("wall girder", /obj/structure/girder, 2, time = 50, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI), \ new/datum/stack_recipe("window frame", /obj/structure/window_frame/almayer, 5, time = 50, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI), \ new/datum/stack_recipe("airlock assembly", /obj/structure/airlock_assembly, 5, time = 50, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI), \ + new/datum/stack_recipe("large airlock assembly", /obj/structure/airlock_assembly/multi_tile, 5, time = 50, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI), \ null, \ new/datum/stack_recipe("bed", /obj/structure/bed, 2, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1), \ new/datum/stack_recipe("chair", /obj/structure/bed/chair, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1), \ @@ -54,7 +55,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ null, \ new/datum/stack_recipe("metal baseball bat", /obj/item/weapon/baseballbat/metal, 10, time = 20, on_floor = 1), \ null, \ -) +)) /obj/item/stack/sheet/metal name = "metal sheets" @@ -88,20 +89,21 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ /obj/item/stack/sheet/metal/cyborg /obj/item/stack/sheet/metal/Initialize(mapload, amount) - recipes = metal_recipes + recipes = GLOB.metal_recipes return ..() /* * Plasteel */ -var/global/list/datum/stack_recipe/plasteel_recipes = list ( \ - new/datum/stack_recipe("plasteel barricade", /obj/structure/barricade/plasteel, 8, time = 4 SECONDS, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI, min_time = 2 SECONDS), +GLOBAL_LIST_INIT_TYPED(plasteel_recipes, /datum/stack_recipe, list ( \ + new/datum/stack_recipe("folding plasteel barricade", /obj/structure/barricade/plasteel, 8, time = 4 SECONDS, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI, min_time = 2 SECONDS), + new/datum/stack_recipe("plasteel barricade", /obj/structure/barricade/metal/plasteel, 6, time = 8 SECONDS, one_per_turf = ONE_TYPE_PER_BORDER, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI, min_time = 2 SECONDS), null, \ new/datum/stack_recipe("reinforced window frame", /obj/structure/window_frame/colony/reinforced, 5, time = 40, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_ENGI), null, \ new/datum/stack_recipe("plasteel rod", /obj/item/stack/rods/plasteel, 1, 1, 30), new/datum/stack_recipe("metal crate", /obj/structure/closet/crate, 5, time = 50, one_per_turf = ONE_TYPE_PER_TURF), \ - ) + )) /obj/item/stack/sheet/plasteel name = "plasteel sheet" @@ -119,7 +121,7 @@ var/global/list/datum/stack_recipe/plasteel_recipes = list ( \ ground_offset_y = 5 /obj/item/stack/sheet/plasteel/New(loc, amount=null) - recipes = plasteel_recipes + recipes = GLOB.plasteel_recipes return ..() @@ -141,7 +143,7 @@ var/global/list/datum/stack_recipe/plasteel_recipes = list ( \ /* * Wood */ -var/global/list/datum/stack_recipe/wood_recipes = list ( \ +GLOBAL_LIST_INIT_TYPED(wood_recipes, /datum/stack_recipe, list ( \ new/datum/stack_recipe("pair of wooden sandals", /obj/item/clothing/shoes/sandal, 1), \ new/datum/stack_recipe("wood floor tile", /obj/item/stack/tile/wood, 1, 4, 20), \ /* @@ -156,7 +158,7 @@ var/global/list/datum/stack_recipe/wood_recipes = list ( \ new/datum/stack_recipe("baseball bat", /obj/item/weapon/baseballbat, 10, time = 20, on_floor = 1), \ new/datum/stack_recipe("wooden cross", /obj/structure/prop/wooden_cross, 2, time = 10, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1), \ new/datum/stack_recipe("wooden pole", /obj/item/weapon/pole, 3, time = 10, one_per_turf = ONE_TYPE_PER_TURF, on_floor = 1) \ - ) + )) /obj/item/stack/sheet/wood name = "wooden plank" @@ -184,7 +186,7 @@ var/global/list/datum/stack_recipe/wood_recipes = list ( \ icon_state = "sheet-wood" /obj/item/stack/sheet/wood/New(loc, amount=null) - recipes = wood_recipes + recipes = GLOB.wood_recipes return ..() /* @@ -201,7 +203,7 @@ var/global/list/datum/stack_recipe/wood_recipes = list ( \ /* * Cardboard */ -var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ +GLOBAL_LIST_INIT_TYPED(cardboard_recipes, /datum/stack_recipe, list ( \ new/datum/stack_recipe("box", /obj/item/storage/box), \ new/datum/stack_recipe("donut box", /obj/item/storage/donut_box/empty), \ new/datum/stack_recipe("egg box", /obj/item/storage/fancy/egg_box), \ @@ -223,11 +225,13 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ null, \ new/datum/stack_recipe_list("empty ammo boxes",list( \ new/datum/stack_recipe("empty magazine box (VP70)", /obj/item/ammo_box/magazine/vp70/empty), \ + new/datum/stack_recipe("empty magazine box (SU-6)", /obj/item/ammo_box/magazine/su6/empty), \ + new/datum/stack_recipe("empty magazine box (VP78)", /obj/item/ammo_box/magazine/vp78/empty), \ + null, \ new/datum/stack_recipe("empty magazine box (M4A3)", /obj/item/ammo_box/magazine/m4a3/empty), \ new/datum/stack_recipe("empty magazine box (M4A3 AP)", /obj/item/ammo_box/magazine/m4a3/ap/empty), \ new/datum/stack_recipe("empty magazine box (M4A3 HP)", /obj/item/ammo_box/magazine/m4a3/hp/empty), \ - new/datum/stack_recipe("empty magazine box (SU-6)", /obj/item/ammo_box/magazine/su6/empty), \ - new/datum/stack_recipe("empty magazine box (VP78)", /obj/item/ammo_box/magazine/vp78/empty), \ + new/datum/stack_recipe("empty magazine box (M4A3 Incen)", /obj/item/ammo_box/magazine/m4a3/incen/empty), \ null, \ new/datum/stack_recipe("empty speed loader box (M44)", /obj/item/ammo_box/magazine/m44/empty), \ new/datum/stack_recipe("empty speed loader box (M44 Heavy)", /obj/item/ammo_box/magazine/m44/heavy/empty), \ @@ -255,13 +259,32 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ new/datum/stack_recipe("empty magazine box (M41A Ext)", /obj/item/ammo_box/magazine/ext/empty), \ new/datum/stack_recipe("empty magazine box (M41A Incen)", /obj/item/ammo_box/magazine/incen/empty), \ new/datum/stack_recipe("empty magazine box (M41A LE)", /obj/item/ammo_box/magazine/le/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (XM51)", /obj/item/ammo_box/magazine/xm51/empty), \ + null, \ new/datum/stack_recipe("empty magazine box (M41A MK1)", /obj/item/ammo_box/magazine/mk1/empty), \ + new/datum/stack_recipe("empty magazine box (M41A MK1 AP)", /obj/item/ammo_box/magazine/mk1/ap/empty), \ + null, \ + new/datum/stack_recipe("empty drum box (M56B)", /obj/item/ammo_box/magazine/m56b/empty), \ + new/datum/stack_recipe("empty drum box (M56B Irradiated)", /obj/item/ammo_box/magazine/m56b/dirty/empty), \ + new/datum/stack_recipe("empty drum box (M56D)", /obj/item/ammo_box/magazine/m56d/empty), \ + null, \ + new/datum/stack_recipe("empty drum box (M2C)", /obj/item/ammo_box/magazine/m2c/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (M41AE2)", /obj/item/ammo_box/magazine/m41ae2/empty), \ + new/datum/stack_recipe("empty magazine box (M41AE2 Holo-Target)", /obj/item/ammo_box/magazine/m41ae2/holo/empty), \ + new/datum/stack_recipe("empty magazine box (M41AE2 HEAP)", /obj/item/ammo_box/magazine/m41ae2/heap/empty), \ + null, \ + new/datum/stack_recipe("empty flamer tank box (UT-Napthal)", /obj/item/ammo_box/magazine/flamer/empty), \ + new/datum/stack_recipe("empty flamer tank box (Napalm B-Gel)", /obj/item/ammo_box/magazine/flamer/bgel/empty), \ null, \ new/datum/stack_recipe("empty shotgun shell box (Beanbag)", /obj/item/ammo_box/magazine/shotgun/beanbag/empty), \ new/datum/stack_recipe("empty shotgun shell box (Buckshot)", /obj/item/ammo_box/magazine/shotgun/buckshot/empty), \ new/datum/stack_recipe("empty shotgun shell box (Flechette)", /obj/item/ammo_box/magazine/shotgun/flechette/empty), \ new/datum/stack_recipe("empty shotgun shell box (Incendiary)", /obj/item/ammo_box/magazine/shotgun/incendiary/empty), \ + new/datum/stack_recipe("empty shotgun shell box (Incendiary Buckshot)", /obj/item/ammo_box/magazine/shotgun/incendiarybuck/empty), \ new/datum/stack_recipe("empty shotgun shell box (Slugs)", /obj/item/ammo_box/magazine/shotgun/empty), \ + new/datum/stack_recipe("empty shotgun shell box (16g) (Breaching)", /obj/item/ammo_box/magazine/shotgun/light/breaching/empty), \ null, \ new/datum/stack_recipe("empty 45-70 bullets box", /obj/item/ammo_box/magazine/lever_action/empty), \ new/datum/stack_recipe("empty 45-70 bullets box (Blanks)", /obj/item/ammo_box/magazine/lever_action/training/empty), \ @@ -282,23 +305,77 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ null, \ new/datum/stack_recipe("empty smartgun ammo box (10x28mm)", /obj/item/ammo_box/rounds/smartgun/empty), \ null, \ + new/datum/stack_recipe("empty rifle ammo box (9mm)", /obj/item/ammo_box/rounds/pistol/empty), \ + new/datum/stack_recipe("empty rifle ammo box (9mm AP)", /obj/item/ammo_box/rounds/pistol/ap/empty), \ + new/datum/stack_recipe("empty rifle ammo box (9mm HP)", /obj/item/ammo_box/rounds/pistol/hp/empty), \ + new/datum/stack_recipe("empty rifle ammo box (9mm Incen)", /obj/item/ammo_box/rounds/pistol/incen/empty), \ + null, \ new/datum/stack_recipe("empty box of MREs", /obj/item/ammo_box/magazine/misc/mre/empty), \ new/datum/stack_recipe("empty box of M94 Marking Flare Packs", /obj/item/ammo_box/magazine/misc/flares/empty), \ + new/datum/stack_recipe("empty box of M89 Signal Flare Packs", /obj/item/ammo_box/magazine/misc/flares/signal/empty), \ new/datum/stack_recipe("empty box of flashlights", /obj/item/ammo_box/magazine/misc/flashlight/empty), \ + new/datum/stack_recipe("empty box of combat flashlights", /obj/item/ammo_box/magazine/misc/flashlight/combat/empty), \ new/datum/stack_recipe("empty box of High-Capacity Power Cells", /obj/item/ammo_box/magazine/misc/power_cell/empty), \ null, \ + new/datum/stack_recipe("empty magazine box (Desert Eagle)", /obj/item/ammo_box/magazine/deagle/empty), \ + new/datum/stack_recipe("empty magazine box (Desert Eagle Heavy)", /obj/item/ammo_box/magazine/deagle/super/empty), \ + new/datum/stack_recipe("empty magazine box (Desert Eagle High-Impact)", /obj/item/ammo_box/magazine/deagle/super/highimpact/empty), \ + new/datum/stack_recipe("empty magazine box (Desert Eagle AP)", /obj/item/ammo_box/magazine/deagle/super/highimpact/ap/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (Spearhead HP)", /obj/item/ammo_box/magazine/spearhead/empty), \ + new/datum/stack_recipe("empty magazine box (Spearhead)", /obj/item/ammo_box/magazine/spearhead/normalpoint/empty), \ + null, \ new/datum/stack_recipe("empty magazine box (M16)", /obj/item/ammo_box/magazine/M16/empty), \ new/datum/stack_recipe("empty magazine box (M16 AP)", /obj/item/ammo_box/magazine/M16/ap/empty), \ null, \ + new/datum/stack_recipe("empty magazine box (AR10)", /obj/item/ammo_box/magazine/ar10/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (MP5)", /obj/item/ammo_box/magazine/mp5/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (MAR30)", /obj/item/ammo_box/magazine/mar30/empty), \ + new/datum/stack_recipe("empty magazine box (MAR30 EX)", /obj/item/ammo_box/magazine/mar30/ext/empty), \ + new/datum/stack_recipe("empty magazine box (MAR50)", /obj/item/ammo_box/magazine/mar50/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (UZI)", /obj/item/ammo_box/magazine/uzi/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (MAC-15)", /obj/item/ammo_box/magazine/mac15/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (MP27)", /obj/item/ammo_box/magazine/mp27/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (M1911)", /obj/item/ammo_box/magazine/m1911/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (MK-45)", /obj/item/ammo_box/magazine/mk45/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (KT-42)", /obj/item/ammo_box/magazine/kt42/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (Beretta 92FS)", /obj/item/ammo_box/magazine/b92fs/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (FN FP9000)", /obj/item/ammo_box/magazine/fp9000/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (Type19)", /obj/item/ammo_box/magazine/type19/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (ZhNK-72)", /obj/item/ammo_box/magazine/zhnk/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (Type64 Bizon)", /obj/item/ammo_box/magazine/type64/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (S&W .38)", /obj/item/ammo_box/magazine/snw/empty), \ + null, \ + new/datum/stack_recipe("empty magazine box (NSG 23)", /obj/item/ammo_box/magazine/nsg23/empty), \ + new/datum/stack_recipe("empty magazine box (NSG 23 AP)", /obj/item/ammo_box/magazine/nsg23/ap/empty), \ + new/datum/stack_recipe("empty magazine box (NSG 23 EX)", /obj/item/ammo_box/magazine/nsg23/ex/empty), \ + null, \ new/datum/stack_recipe("empty magazine box (Type71)", /obj/item/ammo_box/magazine/type71/empty), \ new/datum/stack_recipe("empty magazine box (Type71 AP)", /obj/item/ammo_box/magazine/type71/ap/empty), \ null, \ + new/datum/stack_recipe("empty magazine box (Type73)", /obj/item/ammo_box/magazine/type73/empty), \ + new/datum/stack_recipe("empty magazine box (Type73 High-Impact)", /obj/item/ammo_box/magazine/type73/impact/empty), \ + null, \ new/datum/stack_recipe("empty rifle ammo box (10x31mm)", /obj/item/ammo_box/rounds/type71/empty), \ new/datum/stack_recipe("empty rifle ammo box (10x31mm AP)", /obj/item/ammo_box/rounds/type71/ap/empty), \ )) \ -) +)) /obj/item/stack/sheet/cardboard //BubbleWrap name = "cardboard" @@ -309,7 +386,7 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ stack_id = "cardboard" /obj/item/stack/sheet/cardboard/New(loc, amount=null) - recipes = cardboard_recipes + recipes = GLOB.cardboard_recipes return ..() /obj/item/stack/sheet/cardboard/small_stack @@ -324,9 +401,9 @@ var/global/list/datum/stack_recipe/cardboard_recipes = list ( \ /* * Aluminum */ -var/global/list/datum/stack_recipe/aluminum_recipes = list ( \ +GLOBAL_LIST_INIT_TYPED(aluminium_recipes, /datum/stack_recipe, list ( \ new/datum/stack_recipe("flask", /obj/item/reagent_container/food/drinks/flask, 1) - ) + )) /obj/item/stack/sheet/aluminum name = "aluminum" @@ -339,9 +416,9 @@ var/global/list/datum/stack_recipe/aluminum_recipes = list ( \ /* * Copper */ -var/global/list/datum/stack_recipe/copper_recipes = list ( \ +GLOBAL_LIST_INIT_TYPED(copper_recipes, /datum/stack_recipe, list ( \ new/datum/stack_recipe("cable coil", /obj/item/stack/cable_coil, 2, 1, 20, time = 10, skill_req = SKILL_CONSTRUCTION, skill_lvl = SKILL_CONSTRUCTION_TRAINED) - ) + )) /obj/item/stack/sheet/copper name = "copper" diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index 82e091be90..3856aebd79 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -15,10 +15,14 @@ var/list/datum/stack_recipe/recipes var/singular_name var/amount = 1 - var/max_amount //also see stack recipes initialisation, param "max_res_amount" must be equal to this max_amount - var/stack_id //used to determine if two stacks are of the same kind. - var/amount_sprites = FALSE //does it have sprites for extra amount, like metal, plasteel, or wood - var/display_maptext = TRUE //does it show amount on top of the icon + ///also see stack recipes initialisation, param "max_res_amount" must be equal to this max_amount + var/max_amount + ///used to determine if two stacks are of the same kind. + var/stack_id + ///does it have sprites for extra amount, like metal, plasteel, or wood + var/amount_sprites = FALSE + ///does it show amount on top of the icon + var/display_maptext = TRUE //Coords for contents display, to make it play nice with inventory borders. maptext_x = 4 maptext_y = 3 @@ -89,7 +93,7 @@ Also change the icon to reflect the amount of sheets, if possible.*/ var/datum/stack_recipe_list/srl = recipe_list[recipes_sublist] recipe_list = srl.recipes var/t1 = text("Constructions from []Amount Left: []
    ", src, src.amount) - for(var/i = 1; i <= recipe_list.len, i++) + for(var/i = 1; i <= length(recipe_list), i++) var/E = recipe_list[i] if(isnull(E)) t1 += "
    " @@ -107,7 +111,7 @@ Also change the icon to reflect the amount of sheets, if possible.*/ if(istype(E, /datum/stack_recipe)) var/datum/stack_recipe/R = E - var/max_multiplier = round(src.amount / R.req_amount) + var/max_multiplier = floor(src.amount / R.req_amount) var/title var/can_build = 1 can_build = can_build && (max_multiplier > 0) @@ -122,7 +126,7 @@ Also change the icon to reflect the amount of sheets, if possible.*/ t1 += text("[]", title) continue if(R.max_res_amount>1 && max_multiplier > 1) - max_multiplier = min(max_multiplier, round(R.max_res_amount/R.res_amount)) + max_multiplier = min(max_multiplier, floor(R.max_res_amount/R.res_amount)) t1 += " |" var/list/multipliers = list(5, 10, 25) for (var/n in multipliers) @@ -144,7 +148,9 @@ Also change the icon to reflect the amount of sheets, if possible.*/ list_recipes(usr, text2num(href_list["sublist"])) if(href_list["make"]) - if(amount < 1) qdel(src) //Never should happen + if(amount < 1) + qdel(src) //Never should happen + return var/list/recipes_list = recipes if(href_list["sublist"]) @@ -152,9 +158,13 @@ Also change the icon to reflect the amount of sheets, if possible.*/ recipes_list = srl.recipes var/datum/stack_recipe/R = recipes_list[text2num(href_list["make"])] var/multiplier = text2num(href_list["multiplier"]) - if(!isnum(multiplier)) + if(multiplier != multiplier) // isnan + message_admins("[key_name_admin(usr)] has attempted to multiply [src] with NaN") + return + if(!isnum(multiplier)) // this used to block nan... + message_admins("[key_name_admin(usr)] has attempted to multiply [src] with !isnum") return - multiplier = round(multiplier) + multiplier = floor(multiplier) if(multiplier < 1) return //href exploit protection if(R.skill_lvl) @@ -187,6 +197,12 @@ Also change the icon to reflect the amount of sheets, if possible.*/ to_chat(usr, SPAN_WARNING("The [R.title] cannot be constructed on a tunnel!")) return + if(R.one_per_turf != ONE_TYPE_PER_BORDER) //all barricade-esque structures utilize this define and have their own check for object density. checking twice is unneeded. + for(var/obj/object in usr.loc) + if(object.density || istype(object, /obj/structure/machinery/door)) + to_chat(usr, SPAN_WARNING("[object] is blocking you from constructing \the [R.title]!")) + return + if((R.flags & RESULT_REQUIRES_SNOW) && !(istype(usr.loc, /turf/open/snow) || istype(usr.loc, /turf/open/auto_turf/snow))) to_chat(usr, SPAN_WARNING("The [R.title] must be built on snow!")) return @@ -277,11 +293,15 @@ Also change the icon to reflect the amount of sheets, if possible.*/ if(used > amount) //If it's larger than what we have, no go. return FALSE amount -= used - update_icon() if(amount <= 0) - if(usr && loc == usr) - usr.temp_drop_inv_item(src) + if(loc == usr) + usr?.temp_drop_inv_item(src) + else if(isstorage(loc)) + var/obj/item/storage/storage = loc + storage.remove_from_storage(src) qdel(src) + else + update_icon() return TRUE /obj/item/stack/proc/add(extra) @@ -320,48 +340,48 @@ Also change the icon to reflect the amount of sheets, if possible.*/ return if(!use(desired)) return - var/obj/item/stack/newstack = new src.type(user, desired) + var/obj/item/stack/newstack = new type(user, desired) transfer_fingerprints_to(newstack) user.put_in_hands(newstack) - src.add_fingerprint(user) + add_fingerprint(user) newstack.add_fingerprint(user) - if(src && usr.interactee==src) - INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), usr) + if(!QDELETED(src) && user.interactee == src) + INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), user) return TRUE - else - return ..() + + return ..() /obj/item/stack/attack_hand(mob/user as mob) - if (user.get_inactive_hand() == src) - var/obj/item/stack/F = new src.type(user, 1) - transfer_fingerprints_to(F) - user.put_in_hands(F) - src.add_fingerprint(user) - F.add_fingerprint(user) + if(user.get_inactive_hand() == src) + var/obj/item/stack/new_stack = new type(user, 1) + transfer_fingerprints_to(new_stack) + user.put_in_hands(new_stack) + add_fingerprint(user) + new_stack.add_fingerprint(user) use(1) - if (src && usr.interactee==src) - INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), usr) - else - ..() - return + if(!QDELETED(src) && user.interactee == src) + INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), user) + return + + return ..() /obj/item/stack/attackby(obj/item/W as obj, mob/user as mob) if(istype(W, /obj/item/stack)) - var/obj/item/stack/S = W - if(S.stack_id == stack_id) //same stack type - if(S.amount >= max_amount) + var/obj/item/stack/other_stack = W + if(other_stack.stack_id == stack_id) //same stack type + if(other_stack.amount >= max_amount) to_chat(user, SPAN_WARNING("The stack is full!")) return TRUE - var/to_transfer = min(src.amount, S.max_amount-S.amount) + var/to_transfer = min(amount, other_stack.max_amount - other_stack.amount) if(to_transfer <= 0) return to_chat(user, SPAN_INFO("You transfer [to_transfer] between the stacks.")) - S.add(to_transfer) - if (S && usr.interactee==S) - INVOKE_ASYNC(S, TYPE_PROC_REF(/obj/item/stack, interact), usr) - src.use(to_transfer) - if (src && usr.interactee==src) - INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), usr) + other_stack.add(to_transfer) + if(other_stack && user.interactee == other_stack) + INVOKE_ASYNC(other_stack, TYPE_PROC_REF(/obj/item/stack, interact), user) + use(to_transfer) + if(!QDELETED(src) && user.interactee == src) + INVOKE_ASYNC(src, TYPE_PROC_REF(/obj/item/stack, interact), user) user.next_move = world.time + 0.3 SECONDS return TRUE diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 619c50b90c..61acabe07a 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -15,8 +15,9 @@ cant_hold = list(/obj/item/storage/firstaid, /obj/item/storage/toolkit) can_hold_skill = list( /obj/item/storage/firstaid = list(SKILL_MEDICAL, SKILL_MEDICAL_MEDIC), - /obj/item/storage/toolkit = list(SKILL_ENGINEER, SKILL_ENGINEER_ENGI), + /obj/item/storage/toolkit = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), ) + drop_sound = "armorequip" var/worn_accessible = FALSE //whether you can access its content while worn on the back var/obj/item/card/id/locking_id = null var/is_id_lockable = FALSE @@ -124,6 +125,9 @@ ..() /obj/item/storage/backpack/proc/is_accessible_by(mob/user) + // If the user is already looking inside this backpack. + if(user.s_active == src) + return TRUE if(ishuman(user)) var/mob/living/carbon/human/H = user if(!worn_accessible) @@ -150,7 +154,7 @@ //Returns true if the user's id matches the lock's /obj/item/storage/backpack/proc/compare_id(mob/living/carbon/human/H) - var/obj/item/card/id/card = H.wear_id + var/obj/item/card/id/card = H.get_idcard() if(!card || locking_id.registered_name != card.registered_name) return FALSE else return TRUE @@ -264,6 +268,7 @@ return TRUE /datum/action/item_action/specialist/santabag/action_activate() + . = ..() var/obj/item/storage/backpack/santabag/santa_bag = holder_item santa_bag.refill_santa_bag(owner) update_button_icon() @@ -357,6 +362,12 @@ /obj/item/storage/backpack/satchel/lockable/liaison lock_overridable = FALSE +/obj/item/storage/backpack/satchel/blue + icon_state = "satchel_blue" + +/obj/item/storage/backpack/satchel/black + icon_state = "satchel_black" + /obj/item/storage/backpack/satchel/norm name = "satchel" desc = "A trendy-looking satchel." @@ -476,6 +487,12 @@ icon_state = "marinebigsatch" max_storage_space = 20 +/obj/item/storage/backpack/marine/satchel/intel/chestrig + name = "\improper USCM expedition chestrig" + desc = "A heavy-duty IMP based chestrig, can quickly be accessed with only one hand. Usually issued to USCM intelligence officers." + icon_state = "intel_chestrig" + max_storage_space = 20 + /obj/item/storage/backpack/marine/satchel name = "\improper USCM satchel" desc = "A heavy-duty satchel carried by some USCM soldiers and support personnel." @@ -509,6 +526,14 @@ desc = "A heavy-duty chestrig used by some USCM technicians." icon_state = "marinesatch_techi" +/obj/item/storage/backpack/marine/satchel/chestrig + name = "\improper USCM chestrig" + desc = "A chestrig used by some USCM personnel." + icon_state = "chestrig" + has_gamemode_skin = FALSE + +GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/rto) + /obj/item/storage/backpack/marine/satchel/rto name = "\improper USCM Radio Telephone Pack" desc = "A heavy-duty pack, used for telecommunications between central command. Commonly carried by RTOs." @@ -654,6 +679,8 @@ name = "\improper M68 Thermal Cloak" desc = "The lightweight thermal dampeners and optical camouflage provided by this cloak are weaker than those found in standard USCM ghillie suits. In exchange, the cloak can be worn over combat armor and offers the wearer high maneuverability and adaptability to many environments." icon_state = "scout_cloak" + unacidable = TRUE + indestructible = TRUE uniform_restricted = list(/obj/item/clothing/suit/storage/marine/M3S) //Need to wear Scout armor and helmet to equip this. has_gamemode_skin = FALSE //same sprite for all gamemode. var/camo_active = FALSE @@ -714,9 +741,9 @@ H.FF_hit_evade = 1000 H.allow_gun_usage = allow_gun_usage - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] SA.remove_from_hud(H) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] XI.remove_from_hud(H) anim(H.loc, H, 'icons/mob/mob.dmi', null, "cloak", null, H.dir) @@ -753,9 +780,9 @@ H.alpha = initial(H.alpha) H.FF_hit_evade = initial(H.FF_hit_evade) - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] SA.add_to_hud(H) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] XI.add_to_hud(H) if(anim) @@ -793,6 +820,7 @@ return TRUE /datum/action/item_action/specialist/toggle_cloak/action_activate() + . = ..() var/obj/item/storage/backpack/marine/satchel/scout_cloak/SC = holder_item SC.camouflage() diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index 542b947134..256210b69f 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -46,9 +46,9 @@ if(!sum_storage_cost) icon_state = "trashbag0" - else if(sum_storage_cost < round(max_storage_space * 0.35)) + else if(sum_storage_cost < floor(max_storage_space * 0.35)) icon_state = "trashbag1" - else if(sum_storage_cost < round(max_storage_space * 0.7)) + else if(sum_storage_cost < floor(max_storage_space * 0.7)) icon_state = "trashbag2" else icon_state = "trashbag3" @@ -93,7 +93,7 @@ // ----------------------------- /obj/item/storage/bag/plants - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/bags.dmi' icon_state = "plantbag" name = "Plant Bag" storage_slots = 50; //the number of plant pieces it can carry. @@ -203,7 +203,7 @@ var/row_num = 0 var/col_count = min(7,storage_slots) -1 if (adjusted_contents > 7) - row_num = round((adjusted_contents-1) / 7) // 7 is the maximum allowed width. + row_num = floor((adjusted_contents-1) / 7) // 7 is the maximum allowed width. slot_orient_objs(row_num, col_count, numbered_contents) return @@ -253,7 +253,7 @@ // ----------------------------- /obj/item/storage/bag/cash - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/bags.dmi' icon_state = "cashbag" name = "Cash bag" desc = "A bag for carrying lots of cash. It's got a big dollar sign printed on the front." diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 91ab540a5b..51ac163507 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -118,7 +118,6 @@ ) storage_slots = 10 - /obj/item/storage/belt/utility/full/fill_preset_inventory() new /obj/item/tool/screwdriver(src) new /obj/item/tool/wrench(src) @@ -137,6 +136,50 @@ new /obj/item/tool/wirecutters(src) new /obj/item/device/t_scanner(src) +/obj/item/storage/belt/utility/construction + name = "\improper M277 pattern construction rig" + desc = "The M277 is a common rig used by Combat Technicians to carry around materials and other supplies. It consists of a modular belt with various clips. This version sarafices storage space for specialized material loading clips." + storage_slots = 6 + can_hold = list( + /obj/item/tool/crowbar, + /obj/item/tool/screwdriver, + /obj/item/tool/weldingtool, + /obj/item/tool/wirecutters, + /obj/item/tool/wrench, + /obj/item/tool/extinguisher/mini, + /obj/item/tool/shovel/etool, + /obj/item/stack/cable_coil, + /obj/item/weapon/gun/smg/nailgun/compact, + /obj/item/cell, + /obj/item/circuitboard, + /obj/item/stock_parts, + /obj/item/device/demo_scanner, + /obj/item/device/reagent_scanner, + /obj/item/device/assembly, + /obj/item/device/multitool, + /obj/item/device/flashlight, + /obj/item/device/t_scanner, + /obj/item/device/analyzer, + /obj/item/explosive/plastic, + /obj/item/device/lightreplacer, + /obj/item/stack/sheet, + /obj/item/stack/sandbags_empty, + /obj/item/stack/sandbags, + /obj/item/stack/barbed_wire, + /obj/item/defenses/handheld/sentry, + /obj/item/stack/rods, + /obj/item/stack/tile, + ) + + bypass_w_limit = list( + /obj/item/tool/shovel/etool, + /obj/item/device/lightreplacer, + /obj/item/stack/sheet, + /obj/item/stack/sandbags_empty, + /obj/item/stack/sandbags, + /obj/item/defenses/handheld/sentry, + ) + /obj/item/storage/belt/utility/full/pred name = "\improper Yautja toolbelt" desc = "A modular belt with various clips. This version lacks any hunting functionality, and is commonly used by engineers to transport important tools." @@ -146,7 +189,7 @@ /obj/item/storage/belt/medical name = "\improper M276 pattern medical storage rig" - desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is a less common configuration, designed to transport medical supplies and pistol ammunition. \nRight click its sprite and click \"toggle belt mode\" to take pills out of bottles by simply clicking them." + desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is a less common configuration, designed to transport bulkier medical supplies. \nRight click its sprite and click \"toggle belt mode\" to take pills out of bottles by simply clicking them." icon_state = "medicalbelt" item_state = "medical" storage_slots = 14 @@ -314,6 +357,29 @@ new /obj/item/storage/pill_bottle/imidazoline(src) new /obj/item/storage/pill_bottle/alkysine(src) +/obj/item/storage/belt/medical/lifesaver/full/forecon/fill_preset_inventory() + new /obj/item/storage/pill_bottle/bicaridine(src) + new /obj/item/storage/pill_bottle/bicaridine(src) + new /obj/item/storage/pill_bottle/kelotane(src) + new /obj/item/storage/pill_bottle/kelotane(src) + new /obj/item/storage/pill_bottle/tramadol(src) + new /obj/item/storage/pill_bottle/tramadol(src) + new /obj/item/storage/pill_bottle/antitox(src) + new /obj/item/storage/pill_bottle/alkysine(src) + new /obj/item/storage/pill_bottle/imidazoline(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/reagent_container/hypospray/autoinjector/dexalinp(src) + new /obj/item/reagent_container/hypospray/autoinjector/oxycodone(src) + new /obj/item/device/healthanalyzer(src) + /obj/item/storage/belt/medical/lifesaver/upp name = "\improper Type 41 pattern lifesaver bag" desc = "The Type 41 load rig is the standard load-bearing equipment of the UPP military. This configuration mounts a duffel bag filled with a range of injectors and light medical supplies, and is common among medics." @@ -356,6 +422,29 @@ new /obj/item/storage/pill_bottle/inaprovaline(src) new /obj/item/storage/pill_bottle/tramadol(src) +/obj/item/storage/belt/medical/lifesaver/upp/synth/fill_preset_inventory() + new /obj/item/storage/pill_bottle/bicaridine(src) + new /obj/item/storage/pill_bottle/bicaridine(src) + new /obj/item/storage/pill_bottle/kelotane(src) + new /obj/item/storage/pill_bottle/kelotane(src) + new /obj/item/storage/pill_bottle/tramadol(src) + new /obj/item/storage/pill_bottle/tramadol(src) + new /obj/item/storage/pill_bottle/antitox(src) + new /obj/item/storage/pill_bottle/alkysine(src) + new /obj/item/storage/pill_bottle/imidazoline(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/advanced/ointment(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/stack/medical/splint(src) + new /obj/item/reagent_container/hypospray/autoinjector/dexalinp(src) + new /obj/item/reagent_container/hypospray/autoinjector/oxycodone(src) + new /obj/item/device/healthanalyzer(src) + /obj/item/storage/belt/security name = "\improper M276 pattern security rig" desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This configuration is commonly seen among USCM Military Police and peacekeepers, though it can hold some light munitions." @@ -371,7 +460,7 @@ /obj/item/explosive/grenade/flashbang, /obj/item/explosive/grenade/custom/teargas, /obj/item/reagent_container/spray/pepper, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/flash, /obj/item/clothing/glasses, /obj/item/ammo_magazine/pistol, @@ -415,13 +504,20 @@ /obj/item/storage/belt/security/MP/full/fill_preset_inventory() new /obj/item/weapon/gun/energy/taser(src) new /obj/item/weapon/baton(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/reagent_container/spray/pepper(src) new /obj/item/ammo_magazine/pistol/vp70(src) new /obj/item/ammo_magazine/pistol/vp70(src) +/obj/item/storage/belt/security/MP/full/synth/fill_preset_inventory() + new /obj/item/explosive/grenade/flashbang(src) + new /obj/item/device/flash(src) + new /obj/item/weapon/baton(src) + new /obj/item/reagent_container/spray/pepper(src) + new /obj/item/device/clue_scanner(src) + new /obj/item/restraint/handcuffs(src) /obj/item/storage/belt/security/MP/UPP name = "\improper Type 43 military police rig" @@ -431,7 +527,7 @@ new /obj/item/weapon/gun/energy/taser(src) new /obj/item/device/flash(src) new /obj/item/weapon/baton(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/reagent_container/spray/pepper(src) new /obj/item/ammo_magazine/revolver/upp/shrapnel(src) @@ -446,9 +542,9 @@ new /obj/item/weapon/gun/energy/taser(src) new /obj/item/weapon/baton(src) new /obj/item/reagent_container/spray/pepper(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/ammo_magazine/revolver/spearhead(src) new /obj/item/ammo_magazine/revolver/spearhead(src) @@ -456,9 +552,9 @@ new /obj/item/weapon/gun/energy/taser(src) new /obj/item/weapon/baton(src) new /obj/item/reagent_container/spray/pepper(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/ammo_magazine/pistol/highpower(src) new /obj/item/ammo_magazine/pistol/highpower(src) @@ -468,8 +564,8 @@ new /obj/item/weapon/baton(src) new /obj/item/reagent_container/spray/pepper(src) new /obj/item/device/clue_scanner(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/explosive/grenade/flashbang(src) /obj/item/storage/belt/marine @@ -735,7 +831,7 @@ /obj/item/storage/belt/shotgun/full/random/fill_preset_inventory() for(var/i = 1 to storage_slots) - var/random_shell_type = pick(shotgun_handfuls_12g) + var/random_shell_type = pick(GLOB.shotgun_handfuls_12g) new random_shell_type(src) /obj/item/storage/belt/shotgun/attackby(obj/item/W, mob/user) @@ -990,6 +1086,7 @@ var/drawSound = 'sound/weapons/gun_pistol_draw.ogg' ///Used to get flap overlay states as inserting a gun changes icon state. var/base_icon + var/gun_has_gamemode_skin can_hold = list( /obj/item/weapon/gun/pistol, /obj/item/ammo_magazine/pistol, @@ -1053,6 +1150,14 @@ */ playsound(src, drawSound, 7, TRUE) var/image/gun_underlay = image(icon, current_gun.base_gun_icon) + if(gun_has_gamemode_skin) + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("snow") + gun_underlay = image(icon, "s_" + current_gun.base_gun_icon) + if("desert") + gun_underlay = image(icon, "d_" + current_gun.base_gun_icon) + if("classic") + gun_underlay = image(icon, "c_" + current_gun.base_gun_icon) gun_underlay.pixel_x = holster_slots[slot]["icon_x"] gun_underlay.pixel_y = holster_slots[slot]["icon_y"] gun_underlay.color = current_gun.color @@ -1132,11 +1237,11 @@ if(ammo_dumping.flags_magazine & AMMUNITION_HANDFUL_BOX) var/handfuls = round(ammo_dumping.current_rounds / amount_to_dump, 1) //The number of handfuls, we round up because we still want the last one that isn't full if(ammo_dumping.current_rounds != 0) - if(contents.len < storage_slots - 1) //this is because it's a gunbelt and the final slot is reserved for the gun + if(length(contents) < storage_slots - 1) //this is because it's a gunbelt and the final slot is reserved for the gun to_chat(user, SPAN_NOTICE("You start refilling [src] with [ammo_dumping].")) if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return for(var/i = 1 to handfuls) - if(contents.len < storage_slots - 1) + if(length(contents) < storage_slots - 1) var/obj/item/ammo_magazine/handful/new_handful = new /obj/item/ammo_magazine/handful var/transferred_handfuls = min(ammo_dumping.current_rounds, amount_to_dump) new_handful.generate_handful(ammo_dumping.default_ammo, ammo_dumping.caliber, amount_to_dump, transferred_handfuls, ammo_dumping.gun_type) @@ -1265,6 +1370,38 @@ for(var/i = 1 to storage_slots - 1) new /obj/item/ammo_magazine/pistol/highpower/automag(src) +/obj/item/storage/belt/gun/m4a3/nailgun + name = "customized nailgun holster" + desc = "Combination of a M276 pistol holster and engineering toolbelt that have been cannibalized into a unique belt that can holster a compact nailgun and two spare nailgun magazines." + icon_state = "nailgun_holster" + storage_slots = 3 + can_hold = list( + /obj/item/weapon/gun/smg/nailgun/compact, + /obj/item/ammo_magazine/smg/nailgun, + ) + has_gamemode_skin = FALSE + +/obj/item/storage/belt/gun/m4a3/nailgun/prefilled/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/smg/nailgun/compact()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/smg/nailgun(src) + +/obj/item/storage/belt/gun/m4a3/nailgun + name = "customized nailgun holster" + desc = "Combination of a M276 pistol holster and engineering toolbelt that have been cannibalized into a unique belt that can holster a compact nailgun and two spare nailgun magazines." + icon_state = "nailgun_holster" + storage_slots = 3 + can_hold = list( + /obj/item/weapon/gun/smg/nailgun/compact, + /obj/item/ammo_magazine/smg/nailgun, + ) + has_gamemode_skin = FALSE + +/obj/item/storage/belt/gun/m4a3/nailgun/prefilled/fill_preset_inventory() + handle_item_insertion(new /obj/item/weapon/gun/smg/nailgun/compact()) + for(var/i = 1 to storage_slots - 1) + new /obj/item/ammo_magazine/smg/nailgun(src) + /obj/item/storage/belt/gun/m39 name = "\improper M276 pattern M39 holster rig" desc = "Special issue variant of the M276 designed to holster a M39 submachine gun and two spare magazines. Uncommonly issued to USCM support and specialist personnel." @@ -1281,13 +1418,67 @@ "icon_x" = -11, "icon_y" = -5)) +#define MAXIMUM_MAGAZINE_COUNT 2 + +/obj/item/storage/belt/gun/xm51 + name = "\improper M276 pattern XM51 holster rig" + desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is for the XM51 breaching scattergun, allowing easier storage of the weapon. It features pouches for storing two magazines along with extra shells." + icon_state = "xm51_holster" + has_gamemode_skin = TRUE + gun_has_gamemode_skin = TRUE + storage_slots = 8 + max_w_class = 5 + can_hold = list( + /obj/item/weapon/gun/rifle/xm51, + /obj/item/ammo_magazine/rifle/xm51, + /obj/item/ammo_magazine/handful, + ) + holster_slots = list( + "1" = list( + "icon_x" = 10, + "icon_y" = -1)) + + //Keep a track of how many magazines are inside the belt. + var/magazines = 0 + +/obj/item/storage/belt/gun/xm51/attackby(obj/item/item, mob/user) + if(istype(item, /obj/item/ammo_magazine/shotgun/light/breaching)) + var/obj/item/ammo_magazine/shotgun/light/breaching/ammo_box = item + dump_ammo_to(ammo_box, user, ammo_box.transfer_handful_amount) + else + return ..() + +/obj/item/storage/belt/gun/xm51/can_be_inserted(obj/item/item, mob/user, stop_messages = FALSE) + . = ..() + if(magazines >= MAXIMUM_MAGAZINE_COUNT && istype(item, /obj/item/ammo_magazine/rifle/xm51)) + if(!stop_messages) + to_chat(usr, SPAN_WARNING("[src] can't hold any more magazines.")) + return FALSE + +/obj/item/storage/belt/gun/xm51/handle_item_insertion(obj/item/item, prevent_warning = FALSE, mob/user) + . = ..() + if(istype(item, /obj/item/ammo_magazine/rifle/xm51)) + magazines++ + +/obj/item/storage/belt/gun/xm51/remove_from_storage(obj/item/item as obj, atom/new_location) + . = ..() + if(istype(item, /obj/item/ammo_magazine/rifle/xm51)) + magazines-- + +//If a magazine disintegrates due to acid or something else while in the belt, remove it from the count. +/obj/item/storage/belt/gun/xm51/on_stored_atom_del(atom/movable/item) + if(istype(item, /obj/item/ammo_magazine/rifle/xm51)) + magazines-- + +#undef MAXIMUM_MAGAZINE_COUNT + /obj/item/storage/belt/gun/m44 - name = "\improper M276 pattern M44 holster rig" - desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is for the M44 magnum revolver, along with six small pouches for speedloaders. It smells faintly of hay." + name = "\improper M276 pattern general revoler holster rig" + desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is universal and adjustable for different revolvers, along with six small pouches for speedloaders. It smells faintly of hay." icon_state = "m44r_holster" storage_slots = 7 can_hold = list( - /obj/item/weapon/gun/revolver/m44, + /obj/item/weapon/gun/revolver, /obj/item/ammo_magazine/revolver, ) has_gamemode_skin = TRUE @@ -1372,7 +1563,7 @@ set name = "Detach revolver holster" set src in usr if(ishuman(usr)) - if(contents.len) + if(length(contents)) to_chat(usr, SPAN_WARNING("The belt needs to be fully empty to remove the holster!")) return to_chat(usr, SPAN_NOTICE("You detach the holster from the belt.")) @@ -1402,7 +1593,7 @@ desc = "The M276 is the standard load-bearing equipment of the USCM. It consists of a modular belt with various clips. This version is for the powerful Mateba magnum revolver, along with five small pouches for speedloaders. This one is aging poorly, and seems to be surplus equipment. It's stamped '3rd 'Dust Raiders' Battalion'." icon_state = "s_cmateba_holster" item_state = "s_marinebelt" - storage_slots = 6 + storage_slots = 7 max_w_class = SIZE_MEDIUM can_hold = list( /obj/item/weapon/gun/revolver/mateba, @@ -1742,8 +1933,7 @@ /obj/item/device/flashlight/flare, /obj/item/weapon/gun/flare, /obj/item/weapon/gun/pistol, - /obj/item/weapon/gun/revolver/m44, - /obj/item/weapon/gun/revolver/mateba, + /obj/item/weapon/gun/revolver, /obj/item/ammo_magazine/revolver, /obj/item/ammo_magazine/revolver/mateba, /obj/item/ammo_magazine/pistol, @@ -1765,8 +1955,7 @@ /obj/item/device/flashlight/flare, /obj/item/weapon/gun/flare, /obj/item/weapon/gun/pistol, - /obj/item/weapon/gun/revolver/m44, - /obj/item/weapon/gun/revolver/mateba, + /obj/item/weapon/gun/revolver, /obj/item/ammo_magazine/revolver, /obj/item/ammo_magazine/revolver/mateba, /obj/item/ammo_magazine/pistol, @@ -1788,8 +1977,7 @@ /obj/item/device/flashlight/flare, /obj/item/weapon/gun/flare, /obj/item/weapon/gun/pistol, - /obj/item/weapon/gun/revolver/m44, - /obj/item/weapon/gun/revolver/mateba, + /obj/item/weapon/gun/revolver, /obj/item/ammo_magazine/revolver, /obj/item/ammo_magazine/revolver/mateba, /obj/item/ammo_magazine/pistol, diff --git a/code/game/objects/items/storage/bible.dm b/code/game/objects/items/storage/bible.dm index 4b98d45b5d..dd4a9ea979 100644 --- a/code/game/objects/items/storage/bible.dm +++ b/code/game/objects/items/storage/bible.dm @@ -1,6 +1,7 @@ /obj/item/storage/bible name = "bible" desc = "Apply to head repeatedly." + icon = 'icons/obj/items/books.dmi' icon_state ="bible" throw_speed = SPEED_FAST throw_range = 5 diff --git a/code/game/objects/items/storage/boxes.dm b/code/game/objects/items/storage/boxes.dm index e602272b08..97b4c1217a 100644 --- a/code/game/objects/items/storage/boxes.dm +++ b/code/game/objects/items/storage/boxes.dm @@ -27,6 +27,7 @@ name = "box" desc = "It's just an ordinary box." icon_state = "box" + icon = 'icons/obj/items/storage/boxes.dmi' item_state = "syringe_kit" foldable = TRUE storage_slots = null @@ -34,6 +35,23 @@ w_class = SIZE_LARGE //Changed becuase of in-game abuse storage_flags = STORAGE_FLAGS_BOX +/obj/item/storage/box/pride + name = "box of prideful crayons" + desc = "A box of every flavor of pride." + storage_slots = 8 + w_class = SIZE_SMALL + can_hold = list(/obj/item/toy/crayon/pride) + +/obj/item/storage/box/pride/fill_preset_inventory() + new /obj/item/toy/crayon/pride/gay(src) + new /obj/item/toy/crayon/pride/lesbian(src) + new /obj/item/toy/crayon/pride/bi(src) + new /obj/item/toy/crayon/pride/ace(src) + new /obj/item/toy/crayon/pride/pan(src) + new /obj/item/toy/crayon/pride/trans(src) + new /obj/item/toy/crayon/pride/enby(src) + new /obj/item/toy/crayon/pride/fluid(src) + /obj/item/storage/box/survival w_class = SIZE_MEDIUM @@ -133,6 +151,7 @@ /obj/item/storage/box/flashbangs name = "box of flashbangs (WARNING)" desc = "WARNING: These devices are extremely dangerous and can cause blindness or deafness in repeated use." + icon = 'icons/obj/items/storage/packets.dmi' icon_state = "flashbang" can_hold = list(/obj/item/explosive/grenade/flashbang) w_class = SIZE_MEDIUM @@ -164,6 +183,7 @@ /obj/item/storage/box/emps name = "box of emp grenades" desc = "A box with 5 emp grenades." + icon = 'icons/obj/items/storage/packets.dmi' icon_state = "emp" /obj/item/storage/box/emps/fill_preset_inventory() @@ -345,14 +365,28 @@ icon_state = "handcuff" /obj/item/storage/box/handcuffs/fill_preset_inventory() - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + new /obj/item/restraint/handcuffs(src) + + +/obj/item/storage/box/legcuffs + name = "box of legcuffs" + desc = "A box full of legcuffs." + icon_state = "handcuff" +/obj/item/storage/box/legcuffs/fill_preset_inventory() + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) + new /obj/item/restraint/legcuffs(src) /obj/item/storage/box/zipcuffs name = "box of zip cuffs" @@ -360,20 +394,20 @@ icon_state = "handcuff" /obj/item/storage/box/zipcuffs/fill_preset_inventory() - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) /obj/item/storage/box/zipcuffs/small name = "small box of zip cuffs" @@ -381,13 +415,13 @@ w_class = SIZE_MEDIUM /obj/item/storage/box/zipcuffs/fill_preset_inventory() - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) - new /obj/item/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) + new /obj/item/restraint/handcuffs/zip(src) /obj/item/storage/box/tapes name = "box of regulation tapes" @@ -456,6 +490,7 @@ item_state = "zippo" w_class = SIZE_TINY flags_equip_slot = SLOT_WAIST + flags_obj = parent_type::flags_obj|OBJ_IS_HELMET_GARB can_hold = list(/obj/item/tool/match) /obj/item/storage/box/matches/fill_preset_inventory() @@ -468,7 +503,7 @@ /obj/item/storage/box/lights name = "box of replacement bulbs" - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/boxes.dmi' icon_state = "light" desc = "This box is shaped on the inside so that only light tubes and bulbs fit." item_state = "syringe_kit" @@ -516,6 +551,7 @@ /obj/item/storage/box/twobore name = "box of 2 bore shells" icon_state = "twobore" + icon = 'icons/obj/items/storage/kits.dmi' desc = "A box filled with enormous slug shells, for hunting only the most dangerous game. 2 Bore." storage_slots = 5 can_hold = list(/obj/item/ammo_magazine/handful/shotgun/twobore) @@ -524,12 +560,31 @@ for(var/i in 1 to storage_slots) new /obj/item/ammo_magazine/handful/shotgun/twobore(src) +/obj/item/storage/box/stompers + name = "\improper Reebok shoe box" + desc = "A fancy shoe box with reflective surface and Weyland-Yutani logo on top, says 'Reebok Stompers' on the back." + icon_state = "stomper_box" + w_class = SIZE_MEDIUM + bypass_w_limit = /obj/item/clothing/shoes + max_storage_space = 3 + can_hold = list(/obj/item/clothing/shoes) + +/obj/item/storage/box/stompers/fill_preset_inventory() + new /obj/item/clothing/shoes/stompers(src) + +/obj/item/storage/box/stompers/update_icon() + if(!length(contents)) + icon_state = "stomper_box_e" + else + icon_state = "stomper_box" + ////////// MARINES BOXES ////////////////////////// /obj/item/storage/box/explosive_mines name = "\improper M20 mine box" desc = "A secure box holding five M20 anti-personnel proximity mines." + icon = 'icons/obj/items/storage/packets.dmi' icon_state = "minebox" w_class = SIZE_MEDIUM max_storage_space = 10 @@ -550,6 +605,7 @@ name = "\improper M94 marking flare pack" desc = "A packet of twenty one M94 Marking Flares. Carried by USCM soldiers to light dark areas that cannot be reached with the usual TNR Shoulder Lamp." icon_state = "m94" + icon = 'icons/obj/items/storage/packets.dmi' w_class = SIZE_MEDIUM storage_slots = 21 max_storage_space = 21 @@ -560,7 +616,7 @@ new /obj/item/device/flashlight/flare(src) /obj/item/storage/box/m94/update_icon() - if(!contents.len) + if(!length(contents)) icon_state = "m94_e" else icon_state = "m94" @@ -576,7 +632,7 @@ new /obj/item/device/flashlight/flare/signal(src) /obj/item/storage/box/m94/signal/update_icon() - if(!contents.len) + if(!length(contents)) icon_state = "m89_e" else icon_state = "m89" @@ -586,14 +642,35 @@ name = "\improper M40 HEDP grenade box" desc = "A secure box holding 25 M40 High-Explosive Dual-Purpose grenades. High explosive, don't store near the flamer fuel." icon_state = "nade_placeholder" + icon = 'icons/obj/items/storage/packets.dmi' w_class = SIZE_LARGE storage_slots = 25 max_storage_space = 50 can_hold = list(/obj/item/explosive/grenade/high_explosive) var/base_icon + var/model_icon = "model_m40" + var/type_icon = "hedp" var/grenade_type = /obj/item/explosive/grenade/high_explosive has_gamemode_skin = TRUE +/obj/item/storage/box/nade_box/Initialize() + . = ..() + RegisterSignal(src, COMSIG_ITEM_DROPPED, PROC_REF(try_forced_folding)) + +/obj/item/storage/box/nade_box/proc/try_forced_folding(datum/source, mob/user) + SIGNAL_HANDLER + + if(!isturf(loc)) + return + + if(length(contents)) + return + + UnregisterSignal(src, COMSIG_ITEM_DROPPED) + storage_close(user) + to_chat(user, SPAN_NOTICE("You throw away [src].")) + qdel(src) + /obj/item/storage/box/nade_box/post_skin_selection() base_icon = icon_state @@ -602,50 +679,61 @@ new grenade_type(src) /obj/item/storage/box/nade_box/update_icon() - if(!contents.len) + overlays.Cut() + if(!length(contents)) icon_state = "[base_icon]_e" - qdel(src) //No reason to keep it - nobody will reuse it... else icon_state = base_icon + if(type_icon) + overlays += image(icon, type_icon) + if(model_icon) + overlays += image(icon, model_icon) /obj/item/storage/box/nade_box/frag name = "\improper M40 HEFA grenade box" desc = "A secure box holding 25 M40 High-Explosive Fragmenting-Antipersonnel grenades. High explosive, don't store near the flamer fuel." - icon_state = "frag_nade_placeholder" - w_class = SIZE_LARGE - storage_slots = 25 - max_storage_space = 50 + type_icon = "hefa" can_hold = list(/obj/item/explosive/grenade/high_explosive/frag) grenade_type = /obj/item/explosive/grenade/high_explosive/frag - has_gamemode_skin = FALSE /obj/item/storage/box/nade_box/phophorus - name = "\improper M40 HPDP grenade box" - desc = "A secure box holding 25 M40 HPDP white phosphorus grenade. High explosive, don't store near the flamer fuel." - icon_state = "phos_nade_placeholder" - w_class = SIZE_LARGE - storage_slots = 25 - max_storage_space = 50 + name = "\improper M40 CCDP grenade box" + desc = "A secure box holding 25 M40 CCDP chemical compound grenade. High explosive, don't store near the flamer fuel." + type_icon = "ccdp" can_hold = list(/obj/item/explosive/grenade/phosphorus) grenade_type = /obj/item/explosive/grenade/phosphorus - has_gamemode_skin = FALSE + +/obj/item/storage/box/nade_box/incen + name = "\improper M40 HIDP grenade box" + desc = "A secure box holding 25 M40 HIDP white incendiary grenades. Highly flammable, don't store near the flamer fuel." + type_icon = "hidp" + can_hold = list(/obj/item/explosive/grenade/incendiary) + grenade_type = /obj/item/explosive/grenade/incendiary /obj/item/storage/box/nade_box/airburst name = "\improper M74 AGM-F grenade box" desc = "A secure box holding 25 M74 AGM Fragmentation grenades. Explosive, don't store near the flamer fuel." - icon_state = "airburst_nade_placeholder" - w_class = SIZE_LARGE - storage_slots = 25 - max_storage_space = 50 + model_icon = "model_m74" + type_icon = "agmf" can_hold = list(/obj/item/explosive/grenade/high_explosive/airburst) grenade_type = /obj/item/explosive/grenade/high_explosive/airburst - has_gamemode_skin = FALSE + +/obj/item/storage/box/nade_box/airburstincen + name = "\improper M74 AGM-I grenade box" + desc = "A secure box holding 25 M74 AGM Incendiary grenades. Highly flammable, don't store near the flamer fuel." + model_icon = "model_m74" + type_icon = "agmi" + can_hold = list(/obj/item/explosive/grenade/incendiary/airburst) + grenade_type = /obj/item/explosive/grenade/incendiary/airburst + /obj/item/storage/box/nade_box/training name = "\improper M07 training grenade box" desc = "A secure box holding 25 M07 training grenades. Harmless and reusable." icon_state = "train_nade_placeholder" + model_icon = "model_mo7" + type_icon = null grenade_type = /obj/item/explosive/grenade/high_explosive/training can_hold = list(/obj/item/explosive/grenade/high_explosive/training) has_gamemode_skin = FALSE @@ -654,6 +742,8 @@ name = "\improper M66 tear gas grenade box" desc = "A secure box holding 25 M66 tear gas grenades. Used for riot control." icon_state = "teargas_nade_placeholder" + model_icon = "model_m66" + type_icon = null can_hold = list(/obj/item/explosive/grenade/custom/teargas) grenade_type = /obj/item/explosive/grenade/custom/teargas has_gamemode_skin = FALSE @@ -709,12 +799,13 @@ name = "\improper USCM MRE" desc = "A Meal, Ready-to-Eat. A single-meal combat ration designed to provide a soldier with enough nutrients for a day of strenuous work. Its expiration date is at least 20 years ahead of your combat life expectancy." icon_state = "mealpack" + icon = 'icons/obj/items/storage/mre.dmi' w_class = SIZE_SMALL can_hold = list() storage_slots = 8 max_w_class = 0 use_sound = "rip" - var/isopened = 0 + var/isopened = FALSE /obj/item/storage/box/MRE/fill_preset_inventory() pickflavor() @@ -764,16 +855,237 @@ /obj/item/storage/box/MRE/Initialize() . = ..() - isopened = 0 + isopened = FALSE icon_state = "mealpack" + RegisterSignal(src, COMSIG_ITEM_DROPPED, PROC_REF(try_forced_folding)) + +/obj/item/storage/box/MRE/proc/try_forced_folding(datum/source, mob/user) + SIGNAL_HANDLER + + if(!isturf(loc)) + return + + if(locate(/obj/item/reagent_container/food/snacks/packaged_meal) in src) + return + + UnregisterSignal(src, COMSIG_ITEM_DROPPED) + storage_close(user) + to_chat(user, SPAN_NOTICE("You throw away [src].")) + qdel(src) /obj/item/storage/box/MRE/update_icon() - if(!contents.len) - qdel(src) - else if(!isopened) - isopened = 1 + if(!isopened) + isopened = TRUE icon_state = "mealpackopened" +//food boxes for storage in bulk + +//meat +/obj/item/storage/box/meat + name = "box of meat" + +/obj/item/storage/box/meat/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/meat/monkey(src) + +//fish +/obj/item/storage/box/fish + name = "box of fish" + +/obj/item/storage/box/fish/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/carpmeat(src) + +//grocery + +//milk +/obj/item/storage/box/milk + name = "box of milk" + +/obj/item/storage/box/milk/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/drinks/milk(src) + +//soymilk +/obj/item/storage/box/soymilk + name = "box of soymilk" + +/obj/item/storage/box/soymilk/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/drinks/soymilk(src) + +//enzyme +/obj/item/storage/box/enzyme + name = "box of enzyme" + +/obj/item/storage/box/enzyme/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/condiment/enzyme(src) + +//dry storage + +//flour +/obj/item/storage/box/flour + name = "box of flour" + +/obj/item/storage/box/flour/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/flour(src) + +//sugar +/obj/item/storage/box/sugar + name = "box of sugar" + +/obj/item/storage/box/sugar/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/condiment/sugar(src) + +//saltshaker +/obj/item/storage/box/saltshaker + name = "box of saltshakers" + +/obj/item/storage/box/saltshaker/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/condiment/saltshaker(src) + +//peppermill +/obj/item/storage/box/peppermill + name = "box of peppermills" + +/obj/item/storage/box/peppermill/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/condiment/peppermill(src) + +//mint +/obj/item/storage/box/mint + name = "box of mints" + +/obj/item/storage/box/mint/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/mint(src) + +// ORGANICS + +//apple +/obj/item/storage/box/apple + name = "box of apples" + +/obj/item/storage/box/apple/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/apple(src) + +//banana +/obj/item/storage/box/banana + name = "box of bananas" + +/obj/item/storage/box/banana/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/banana(src) + +//chanterelle +/obj/item/storage/box/chanterelles + name = "box of chanterelle" + +/obj/item/storage/box/chanterelle/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle(src) + +//cherries +/obj/item/storage/box/cherries + name = "box of cherries" + +/obj/item/storage/box/cherries/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/cherries(src) + +//chili +/obj/item/storage/box/chili + name = "box of chili" + +/obj/item/storage/box/chili/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/chili(src) + +//cabbage +/obj/item/storage/box/cabbage + name = "box of cabbages" + +/obj/item/storage/box/cabbage/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/cabbage(src) + +//carrot +/obj/item/storage/box/carrot + name = "box of carrots" + +/obj/item/storage/box/carrot/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/carrot(src) + +//corn +/obj/item/storage/box/corn + name = "box of corn" + +/obj/item/storage/box/corn/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/corn(src) + +//eggplant +/obj/item/storage/box/eggplant + name = "box of eggplants" + +/obj/item/storage/box/eggplant/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/eggplant(src) + +//lemon +/obj/item/storage/box/lemon + name = "box of lemons" + +/obj/item/storage/box/lemon/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/lemon(src) + +//lime +/obj/item/storage/box/lime + name = "box of limes" + +/obj/item/storage/box/lime/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/lime(src) + +//orange +/obj/item/storage/box/orange + name = "box of oranges" + +/obj/item/storage/box/orange/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/orange(src) + +//potato +/obj/item/storage/box/potato + name = "box of potatoes" + +/obj/item/storage/box/potato/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/potato(src) + +//tomato +/obj/item/storage/box/tomato + name = "box of tomatoes" + +/obj/item/storage/box/tomato/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/tomato(src) + +//whitebeet +/obj/item/storage/box/whitebeet + name = "box of whitebeet" + +/obj/item/storage/box/whitebeet/fill_preset_inventory() + for(var/i in 1 to 7) + new /obj/item/reagent_container/food/snacks/grown/whitebeet(src) + /obj/item/storage/box/powderedmilk name = "box of powdered milk packets" desc = "It has a weird stain on it." diff --git a/code/game/objects/items/storage/briefcase.dm b/code/game/objects/items/storage/briefcase.dm index 24b2e13b91..b687f6c5b8 100644 --- a/code/game/objects/items/storage/briefcase.dm +++ b/code/game/objects/items/storage/briefcase.dm @@ -1,6 +1,7 @@ /obj/item/storage/briefcase name = "briefcase" desc = "It's made of AUTHENTIC faux-leather and has a price-tag still attached. Its owner must be a real professional." + icon = 'icons/obj/items/storage/briefcases.dmi' icon_state = "briefcase" item_state = "briefcase" flags_atom = FPRINT|CONDUCT diff --git a/code/game/objects/items/storage/fancy.dm b/code/game/objects/items/storage/fancy.dm index 9afa0dfd18..79d38603dc 100644 --- a/code/game/objects/items/storage/fancy.dm +++ b/code/game/objects/items/storage/fancy.dm @@ -103,11 +103,11 @@ overlays = list() //resets list overlays += image('icons/obj/items/crayons.dmi',"crayonbox") for(var/obj/item/toy/crayon/crayon in contents) - overlays += image('icons/obj/items/crayons.dmi',crayon.colourName) + overlays += image('icons/obj/items/crayons.dmi',crayon.colorName) /obj/item/storage/fancy/crayons/attackby(obj/item/W as obj, mob/user as mob) if(istype(W,/obj/item/toy/crayon)) - switch(W:colourName) + switch(W:colorName) if("mime") to_chat(usr, "This crayon is too sad to be contained in this box.") return @@ -126,6 +126,7 @@ w_class = SIZE_TINY throwforce = 2 flags_equip_slot = SLOT_WAIST + flags_obj = parent_type::flags_obj|OBJ_IS_HELMET_GARB max_w_class = SIZE_TINY storage_slots = 20 can_hold = list( @@ -218,6 +219,46 @@ default_cig_type = /obj/item/clothing/mask/cigarette/ucigarette storage_slots = 4 +/obj/item/storage/fancy/cigarettes/trading_card + name = "\improper WeyYu Gold Military Trading Card packet" + desc = "Gotta collect 'em all, and smoke 'em all! This fancy military trading card version of Weyland Yutani Gold cigarette packs has one card that is apart of the 3 available 5-card sets." + icon_state = "collectpacket" + item_state = "collectpacket" + storage_slots = 21 + can_hold = list( + /obj/item/clothing/mask/cigarette, + /obj/item/clothing/mask/cigarette/ucigarette, + /obj/item/clothing/mask/cigarette/bcigarette, + /obj/item/tool/lighter, + /obj/item/toy/trading_card, + ) + var/obj/item/toy/trading_card/trading_card + +/obj/item/storage/fancy/cigarettes/trading_card/fill_preset_inventory() + flags_atom |= NOREACT + for(var/i = 1 to (storage_slots-1)) + new default_cig_type(src) + trading_card = new(src) + +/obj/item/storage/fancy/cigarettes/trading_card/attack_hand(mob/user, mods) + if(trading_card?.loc == src && loc == user) + to_chat(user, SPAN_NOTICE("You pull a [trading_card.collection_color] trading card out of the cigarette pack.")) + //have to take two disparate systems n' ram 'em together + remove_from_storage(trading_card, user.loc) + user.put_in_hands(trading_card) + trading_card = null + + return ..() + +/obj/item/storage/fancy/cigarettes/trading_card/attackby(obj/item/attacked_by_item, mob/user) + if(istype(attacked_by_item, /obj/item/toy/trading_card)) + trading_card = attacked_by_item + + return ..() + +///////////// +//CIGAR BOX// +///////////// // CIGAR BOX /obj/item/storage/fancy/cigar @@ -302,7 +343,7 @@ if(istype(W) && !W.heat_source && !W.burnt) if(prob(burn_chance)) to_chat(user, SPAN_WARNING("\The [W] lights, but you burn your hand in the process! Ouch!")) - user.apply_damage(3, BRUTE, pick("r_hand", "l_hand")) + user.apply_damage(3, BURN, pick("r_hand", "l_hand")) if((user.pain.feels_pain) && prob(25)) user.emote("scream") W.light_match() @@ -409,3 +450,73 @@ /obj/item/storage/lockbox/vials/attackby(obj/item/W as obj, mob/user as mob) ..() update_icon() + +// Trading Card Pack + +/obj/item/storage/fancy/trading_card + name = "pack of Red WeyYu Military Trading Cards" + desc = "A 5 pack of Red Weyland Yutani Military Trading Cards." + icon = 'icons/obj/items/playing_cards.dmi' + icon_state = "trading_red_pack_closed" + storage_slots = 5 + icon_type = "trading card" + can_hold = list(/obj/item/toy/trading_card) + foldable = /obj/item/stack/sheet/cardboard + var/collection_color = null + var/obj/item/toy/trading_card/top_trading_card + +/obj/item/storage/fancy/trading_card/Initialize() + if(!collection_color) + collection_color = pick("red", "green", "blue") // because of vodoo shenanigans with fill_preset_inventory happening during parent's initalize this'll have to run prior to that + + . = ..() + + name = "pack of [capitalize(collection_color)] WeyYu Military Trading Cards" + desc = "A 5 pack of [capitalize(collection_color)] Weyland Yutani Military Trading Cards." + icon_state = "trading_[collection_color]_pack_closed" + + +/obj/item/storage/fancy/trading_card/fill_preset_inventory() + + for(var/i in 1 to storage_slots) + top_trading_card = new /obj/item/toy/trading_card(src) + +/obj/item/storage/fancy/trading_card/update_icon() + if(!(top_trading_card)) + icon_state = "trading_[collection_color]_pack_empty" + return + if(length(contents) == storage_slots) + icon_state = "trading_[collection_color]_pack_closed" + return + icon_state = "trading_[collection_color]_pack_open" + +/obj/item/storage/fancy/trading_card/attack_hand(mob/user, mods) + if(top_trading_card?.loc == src && loc == user) + to_chat(user, SPAN_NOTICE("You pull a [top_trading_card.collection_color] trading card out of the pack.")) + //have to take two disparate systems n' ram 'em together + remove_from_storage(top_trading_card, user.loc) + user.put_in_hands(top_trading_card) + if(!(length(contents))) + top_trading_card = null + update_icon() + return + top_trading_card = contents[(length(contents))] + update_icon() + return + + return ..() + +/obj/item/storage/fancy/trading_card/attackby(obj/item/attacked_by_item, mob/user) + if(istype(attacked_by_item, /obj/item/toy/trading_card)) + top_trading_card = attacked_by_item + + return ..() + +/obj/item/storage/fancy/trading_card/red + collection_color = "red" + +/obj/item/storage/fancy/trading_card/green + collection_color = "green" + +/obj/item/storage/fancy/trading_card/blue + collection_color = "blue" diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index 49f790410c..6535497ad5 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -9,6 +9,7 @@ /obj/item/storage/firstaid name = "first-aid kit" desc = "It's an emergency medical kit for those serious boo-boos. With medical training you can fit this in a backpack." + icon = 'icons/obj/items/storage/medical.dmi' icon_state = "firstaid" throw_speed = SPEED_FAST throw_range = 8 @@ -173,7 +174,7 @@ /obj/item/storage/firstaid/synth name = "synthetic repair kit" - desc = "Contains equipment to repair a damaged synthetic. A tag on the back reads: 'Does not contain a shocking tool to repair disabled synthetics, nor a scanning device to detect specific damage; pack seperately.' With medical training you can fit this in a backpack." + desc = "Contains equipment to repair a damaged synthetic. A tag on the back reads: 'Does not contain a shocking tool to repair disabled synthetics, nor a scanning device to detect specific damage; pack separately.' With medical training you can fit this in a backpack." icon_state = "bezerk" item_state = "firstaid-advanced" can_hold = list( @@ -255,6 +256,7 @@ /obj/item/storage/syringe_case name = "syringe case" desc = "It's a medical case for storing syringes and bottles." + icon = 'icons/obj/items/storage/medical.dmi' icon_state = "syringe_case" throw_speed = SPEED_FAST throw_range = 8 @@ -309,7 +311,7 @@ \nStep three: Draw back the skin with the retracter.\ \nStep four: Patch the damaged vein with a surgical line.\ \nStep five: Close the incision with a surgical line." - + icon = 'icons/obj/items/storage/medical.dmi' icon_state = "surgical_case" throw_speed = SPEED_FAST throw_range = 8 @@ -384,9 +386,9 @@ /obj/item/storage/pill_bottle/get_examine_text(mob/user) . = ..() - var/pills_amount = contents.len + var/pills_amount = length(contents) if(pills_amount) - var/percentage_filled = round(pills_amount/max_storage_space * 100) + var/percentage_filled = floor(pills_amount/max_storage_space * 100) switch(percentage_filled) if(80 to 101) . += SPAN_INFO("The [name] seems fairly full.") @@ -410,7 +412,7 @@ if(skilllock && !skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC)) error_idlock(user) return - if(contents.len) + if(length(contents)) var/obj/item/I = contents[1] if(user.put_in_inactive_hand(I)) playsound(loc, use_sound, 10, TRUE, 3) @@ -465,7 +467,7 @@ if(C.is_mob_restrained()) to_chat(user, SPAN_WARNING("You are restrained!")) return FALSE - if(!contents.len) + if(!length(contents)) to_chat(user, SPAN_WARNING("The [name] is empty.")) return FALSE var/obj/item/I = contents[1] @@ -511,6 +513,34 @@ /obj/item/storage/pill_bottle/proc/error_idlock(mob/user) to_chat(user, SPAN_WARNING("It must have some kind of ID lock...")) +/obj/item/storage/pill_bottle/proc/choose_color(mob/user) + if(!user) + user = usr + var/static/list/possible_colors = list( + "Orange" = "", + "Blue" = "1", + "Yellow" = "2", + "Light Purple" = "3", + "Light Grey" = "4", + "White" = "5", + "Light Green" = "6", + "Cyan" = "7", + "Bordeaux" = "8", + "Aquamarine" = "9", + "Grey" = "10", + "Red" = "11", + "Black" = "12", + ) + var/selected_color = tgui_input_list(user, "Select a color.", "Color choice", possible_colors) + if(!selected_color) + return + + selected_color = possible_colors[selected_color] + + icon_state = "pill_canister" + selected_color + to_chat(user, SPAN_NOTICE("You color [src].")) + update_icon() + /obj/item/storage/pill_bottle/verb/set_maptext() set category = "Object" set name = "Set short label (on-sprite)" @@ -668,19 +698,19 @@ if(!idlock) return TRUE - var/mob/living/carbon/human/H = user + var/mob/living/carbon/human/human_user = user - if(!allowed(user)) + if(!allowed(human_user)) to_chat(user, SPAN_NOTICE("It must have some kind of ID lock...")) return FALSE - var/obj/item/card/id/I = H.wear_id - if(!istype(I)) //not wearing an ID - to_chat(H, SPAN_NOTICE("It must have some kind of ID lock...")) + var/obj/item/card/id/idcard = human_user.get_idcard() + if(!idcard) //not wearing an ID + to_chat(human_user, SPAN_NOTICE("It must have some kind of ID lock...")) return FALSE - if(I.registered_name != H.real_name) - to_chat(H, SPAN_WARNING("Wrong ID card owner detected.")) + if(!idcard.check_biometrics(human_user)) + to_chat(human_user, SPAN_WARNING("Wrong ID card owner detected.")) return FALSE return TRUE diff --git a/code/game/objects/items/storage/internal.dm b/code/game/objects/items/storage/internal.dm index a491df12f0..4d196ab145 100644 --- a/code/game/objects/items/storage/internal.dm +++ b/code/game/objects/items/storage/internal.dm @@ -61,10 +61,13 @@ else user.drop_inv_item_on_ground(master_item) user.put_in_r_hand(master_item) - return else user.drop_inv_item_on_ground(master_item) user.put_in_r_hand(master_item) + + if(master_item.light_on) + master_item.turn_light(toggle_on = FALSE) + return if("l_hand") if(master_item.time_to_unequip) user.visible_message(SPAN_NOTICE("[user] starts taking off \the [master_item].")) @@ -73,10 +76,13 @@ else user.drop_inv_item_on_ground(master_item) user.put_in_l_hand(master_item) - return else user.drop_inv_item_on_ground(master_item) user.put_in_l_hand(master_item) + + if(master_item.light_on) + master_item.turn_light(toggle_on = FALSE) + return master_item.add_fingerprint(user) return FALSE return FALSE diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm index 81e483ef96..adf4c9fb4a 100644 --- a/code/game/objects/items/storage/large_holster.dm +++ b/code/game/objects/items/storage/large_holster.dm @@ -3,7 +3,7 @@ /obj/item/storage/large_holster name = "\improper Rifle Holster" desc = "holster" - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/holsters.dmi' icon_state = "m37_holster" w_class = SIZE_LARGE flags_equip_slot = SLOT_BACK @@ -64,6 +64,7 @@ can_hold = list( /obj/item/weapon/gun/shotgun/pump, /obj/item/weapon/gun/shotgun/combat, + /obj/item/weapon/gun/shotgun/double/mou53, ) has_gamemode_skin = TRUE @@ -98,6 +99,28 @@ /obj/item/storage/large_holster/machete/arnold/weak/fill_preset_inventory() new /obj/item/weapon/sword/machete/arnold/weak(src) +/obj/item/storage/large_holster/machete/smartgunner + name = "\improper M56 harness machete scabbard" + desc = "A scabbard that connects to the M56 combat harness for carrying a M2132 machete." + icon_state = "smartgun_machete_holster" + flags_equip_slot = SLOT_BACK + flags_item = SMARTGUNNER_BACKPACK_OVERRIDE + +/obj/item/storage/large_holster/machete/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning) + . = ..() + + var/mob/living/carbon/human/user = equipping_mob + if(!ishuman(user)) + return FALSE + + if(!user.wear_suit || !(user.wear_suit.flags_inventory & SMARTGUN_HARNESS)) + if(!disable_warning) + to_chat(equipping_mob, SPAN_WARNING("You can't equip [src] without a harness.")) + return FALSE + +/obj/item/storage/large_holster/machete/smartgunner/full/fill_preset_inventory() + new /obj/item/weapon/sword/machete(src) + /obj/item/storage/large_holster/katana name = "\improper katana scabbard" desc = "A large, vibrantly colored katana scabbard used to carry a Japanese sword. It can be strapped to the back or worn at the belt. Because of the sturdy wood casing of the scabbard, it makes an okay defensive weapon in a pinch." @@ -258,12 +281,15 @@ return FALSE if(user.back != src) - to_chat(user, "The [src] must be equipped before you can switch types") + to_chat(user, SPAN_WARNING("[src] must be equipped before you can switch types.")) return - var/obj/item/weapon/gun/flamer/M240T/flamer = user.get_active_hand() - if(!istype(flamer)) - to_chat(user, "You must be holding the M240-T incinerator unit to use [src]") + if(!linked_flamer) + to_chat(user, SPAN_WARNING("An incinerator unit must be linked in order to switch fuel types.")) + return + + if(user.get_active_hand() != linked_flamer) + to_chat(user, SPAN_WARNING("You must be holding [linked_flamer] to use [src].")) return if(!active_fuel) @@ -284,8 +310,8 @@ to_chat(user, "You switch the fuel tank to [active_fuel.caliber]") playsound(src, 'sound/machines/click.ogg', 25, TRUE) - flamer.current_mag = active_fuel - flamer.update_icon() + linked_flamer.current_mag = active_fuel + linked_flamer.update_icon() return TRUE @@ -325,7 +351,7 @@ fuel.forceMove(get_turf(user)) fuel = new_fuel visible_message("[user] swaps out the fuel tank in [src].","You swap out the fuel tank in [src] and drop the old one.") - to_chat(user, "The newly inserted [new_fuel.caliber] contains: [round(new_fuel.get_ammo_percent())]% fuel.") + to_chat(user, "The newly inserted [new_fuel.caliber] contains: [floor(new_fuel.get_ammo_percent())]% fuel.") user.temp_drop_inv_item(new_fuel) new_fuel.moveToNullspace() //necessary to not confuse the storage system playsound(src, 'sound/machines/click.ogg', 25, TRUE) @@ -336,15 +362,15 @@ /obj/item/storage/large_holster/fuelpack/get_examine_text(mob/user) . = ..() - if(contents.len) + if(length(contents)) . += "It is storing a M240-T incinerator unit." if (get_dist(user, src) <= 1) if(fuel) - . += "The [fuel.caliber] currently contains: [round(fuel.get_ammo_percent())]% fuel." + . += "The [fuel.caliber] currently contains: [floor(fuel.get_ammo_percent())]% fuel." if(fuelB) - . += "The [fuelB.caliber] currently contains: [round(fuelB.get_ammo_percent())]% fuel." + . += "The [fuelB.caliber] currently contains: [floor(fuelB.get_ammo_percent())]% fuel." if(fuelX) - . += "The [fuelX.caliber] currently contains: [round(fuelX.get_ammo_percent())]% fuel." + . += "The [fuelX.caliber] currently contains: [floor(fuelX.get_ammo_percent())]% fuel." /datum/action/item_action/specialist/toggle_fuel ability_primacy = SPEC_PRIMARY_ACTION_1 @@ -379,6 +405,7 @@ return TRUE /datum/action/item_action/specialist/toggle_fuel/action_activate() + . = ..() var/obj/item/storage/large_holster/fuelpack/FP = holder_item if (!istype(FP)) return diff --git a/code/game/objects/items/storage/lockbox.dm b/code/game/objects/items/storage/lockbox.dm index afeaff89ae..8c092bde92 100644 --- a/code/game/objects/items/storage/lockbox.dm +++ b/code/game/objects/items/storage/lockbox.dm @@ -3,6 +3,7 @@ /obj/item/storage/lockbox name = "lockbox" desc = "A locked box." + icon = 'icons/obj/items/storage/briefcases.dmi' icon_state = "lockbox+l" item_state = "syringe_kit" w_class = SIZE_LARGE diff --git a/code/game/objects/items/storage/misc.dm b/code/game/objects/items/storage/misc.dm index 33b2b5f778..bbd75aa7c0 100644 --- a/code/game/objects/items/storage/misc.dm +++ b/code/game/objects/items/storage/misc.dm @@ -30,7 +30,7 @@ to_chat(user, message) open = !open update_icon() - if(!contents.len) + if(!length(contents)) ..() return @@ -55,7 +55,7 @@ */ /obj/item/storage/mateba_case - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "matebacase" name = "mateba customization kit case" desc = "A wooden case used for storing the tools and parts needed to customize a Mateba revolver. Comes with three barrel lengths and the necessary key to swap them out." @@ -100,7 +100,7 @@ new /obj/item/reagent_container/food/drinks/cans/aspen(src) /obj/item/storage/beer_pack/update_icon() - if(contents.len == 1) + if(length(contents) == 1) var/turf/T = get_turf(src) var/obj/item/reagent_container/food/drinks/cans/aspen/B = new(T) if(ishuman(loc)) @@ -109,12 +109,12 @@ H.put_in_inactive_hand(B) qdel(src) else - icon_state = "6_pack_[contents.len]" + icon_state = "6_pack_[length(contents)]" /obj/item/storage/box/loadout name = "storage case" desc = "A wooden case that fits a pistol and a number of magazines." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "matebacase" w_class = SIZE_LARGE max_w_class = SIZE_MEDIUM @@ -123,6 +123,8 @@ /obj/item/storage/box/loadout/upp name = "Type 73 storing case" desc = "A small case containing a loaded Type 73, and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/t73, /obj/item/ammo_magazine/pistol/t73) + /obj/item/storage/box/loadout/upp/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/t73()) for(var/i = 1 to storage_slots - 1) @@ -131,6 +133,7 @@ /obj/item/storage/box/loadout/M4A3_custom_loadout name = "M4A3 storage case" desc = "A relatively large storage case containing a loaded M4A3 and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/m4a3/custom, /obj/item/ammo_magazine/pistol) /obj/item/storage/box/loadout/M4A3_custom_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/m4a3/custom()) @@ -140,6 +143,7 @@ /obj/item/storage/box/loadout/HG45_civilian_loadout name = "HG 45 'Aguila' storage case" desc = "A relatively large storage case containing a loaded HG 45 'Aguila' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower) /obj/item/storage/box/loadout/HG45_civilian_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower()) @@ -149,6 +153,7 @@ /obj/item/storage/box/loadout/HG45_marine_loadout name = "HG 45 'Marina' storage case" desc = "A relatively large storage case containing a loaded HG 45 'Marina' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower/black, /obj/item/ammo_magazine/pistol/highpower/black) /obj/item/storage/box/loadout/HG45_marine_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/black()) @@ -158,6 +163,7 @@ /obj/item/storage/box/loadout/HG44_loadout name = "HG 44 'Automag' storage case" desc = "A relatively large storage case containing a loaded HG 44 'Automag' and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/highpower/automag, /obj/item/ammo_magazine/pistol/highpower/automag) /obj/item/storage/box/loadout/HG44_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/highpower/automag()) @@ -167,6 +173,7 @@ /obj/item/storage/box/loadout/Spearhead_loadout name = "Spearhead Armoury storage case" desc = "A relatively large storage case containing a loaded Spearhead Armoury revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead) /obj/item/storage/box/loadout/Spearhead_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead()) @@ -176,6 +183,7 @@ /obj/item/storage/box/loadout/Spearhead_loadout/custom name = "Spearhead Armoury storage case" desc = "A relatively large storage case containing a loaded Spearhead Armoury revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/spearhead/black, /obj/item/ammo_magazine/revolver/spearhead) /obj/item/storage/box/loadout/Spearhead_loadout/custom/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/spearhead/black()) @@ -185,6 +193,7 @@ /obj/item/storage/box/loadout/M1911_loadout name = "M1911 storage case" desc = "A relatively large storage case containing a loaded M1911 and additional magazines." + can_hold = list(/obj/item/weapon/gun/pistol/m1911, /obj/item/ammo_magazine/pistol/m1911) /obj/item/storage/box/loadout/M1911_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/m1911()) @@ -194,6 +203,7 @@ /obj/item/storage/box/loadout/M44_loadout name = "M44 storage case" desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver) /obj/item/storage/box/loadout/M44_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/m44()) @@ -203,6 +213,7 @@ /obj/item/storage/box/loadout/M44_custom_loadout name = "M44 storage case" desc = "A relatively large storage case containing a loaded M44 revolver and additional speedloaders." + can_hold = list(/obj/item/weapon/gun/revolver/m44/custom, /obj/item/ammo_magazine/revolver) /obj/item/storage/box/loadout/M44_custom_loadout/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/revolver/m44/custom()) @@ -215,6 +226,7 @@ w_class = SIZE_SMALL max_w_class = SIZE_TINY storage_slots = 4 + can_hold = list(/obj/item/weapon/gun/pistol/clfpistol, /obj/item/ammo_magazine/pistol/clfpistol) /obj/item/storage/box/loadout/clf/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/pistol/clfpistol()) @@ -224,12 +236,13 @@ /obj/item/storage/box/loadout/co2_knife name = "M8 cartridge bayonet packaging" desc = "Contains one M8 Cartridge Bayonet and two sister CO2 cartridges. Thanks for being a dedicated Boots magazine subscriber!" + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "co2_box" - can_hold = list(/obj/item/attachable/bayonet/co2, /obj/item/co2_cartridge) foldable = TRUE storage_slots = 3 w_class = SIZE_SMALL max_w_class = SIZE_SMALL + can_hold = list(/obj/item/attachable/bayonet/co2, /obj/item/co2_cartridge) /obj/item/storage/box/loadout/co2_knife/fill_preset_inventory() new /obj/item/attachable/bayonet/co2(src) diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm index 6ab25f0b73..e2398fcbe0 100644 --- a/code/game/objects/items/storage/pouch.dm +++ b/code/game/objects/items/storage/pouch.dm @@ -425,7 +425,7 @@ desc = "It can carry pistol magazines and revolver speedloaders." max_w_class = SIZE_SMALL icon_state = "pistol_mag" - storage_slots = 3 + storage_slots = 4 can_hold = list( /obj/item/ammo_magazine/pistol, @@ -802,6 +802,28 @@ for(var/i = 1 to storage_slots) new /obj/item/reagent_container/syringe(src) +/obj/item/storage/pouch/engikit + name = "engineer kit pouch" + storage_flags = STORAGE_FLAGS_POUCH + icon_state = "construction" + desc = "It's specifically made to hold engineering items. Requires engineering skills to use effectively." + storage_slots = 6 + can_hold_skill = list( + /obj/item/circuitboard = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/flashlight = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/clothing/glasses/welding = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/analyzer = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/demo_scanner = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/reagent_scanner = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/t_scanner = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/stack/cable_coil = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/cell = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/device/assembly = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/stock_parts = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + /obj/item/explosive/plastic = list(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED), + ) + can_hold_skill_only = TRUE + /obj/item/storage/pouch/medkit name = "medical kit pouch" storage_flags = STORAGE_FLAGS_POUCH @@ -824,6 +846,7 @@ /obj/item/roller = list(SKILL_MEDICAL, SKILL_MEDICAL_MEDIC), /obj/item/bodybag = list(SKILL_MEDICAL, SKILL_MEDICAL_MEDIC), /obj/item/reagent_container/blood = list(SKILL_MEDICAL, SKILL_MEDICAL_MEDIC), + /obj/item/tool/surgery/FixOVein = list(SKILL_MEDICAL, SKILL_MEDICAL_MEDIC), ) can_hold_skill_only = TRUE @@ -870,13 +893,13 @@ inner = new /obj/item/reagent_container/glass/pressurized_canister() //Only add an autoinjector if the canister is empty //Important for the snowflake /obj/item/storage/pouch/pressurized_reagent_canister/oxycodone - if(contents.len == 0) + if(length(contents) == 0) new /obj/item/reagent_container/hypospray/autoinjector/empty/medic(src) update_icon() /obj/item/storage/pouch/pressurized_reagent_canister/proc/fill_with(ragent) inner.reagents.add_reagent(ragent, inner.volume) - if(contents.len > 0) + if(length(contents) > 0) var/obj/item/reagent_container/hypospray/autoinjector/empty/A = contents[1] A.reagents.add_reagent(ragent, A.volume) A.update_uses_left() @@ -896,13 +919,13 @@ . = ..() fill_with("oxycodone") -/obj/item/storage/pouch/pressurized_reagent_canister/revival/Initialize() +/obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord/Initialize() . = ..() //we don't call fill_with because of the complex mix of chemicals we have inner.reagents.add_reagent("adrenaline", inner.volume/3) inner.reagents.add_reagent("inaprovaline", inner.volume/3) inner.reagents.add_reagent("tricordrazine", inner.volume/3) - if(contents.len > 0) + if(length(contents) > 0) var/obj/item/reagent_container/hypospray/autoinjector/empty/medic/A = contents[1] A.reagents.add_reagent("adrenaline", A.volume/3) A.reagents.add_reagent("inaprovaline", A.volume/3) @@ -911,6 +934,21 @@ A.update_icon() update_icon() +/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri/Initialize() + . = ..() + //we don't call fill_with because of the complex mix of chemicals we have + inner.reagents.add_reagent("adrenaline", inner.volume/3) + inner.reagents.add_reagent("inaprovaline", inner.volume/3) + inner.reagents.add_reagent("peridaxon", inner.volume/3) + if(length(contents) > 0) + var/obj/item/reagent_container/hypospray/autoinjector/empty/medic/A = contents[1] + A.reagents.add_reagent("adrenaline", A.volume/3) + A.reagents.add_reagent("inaprovaline", A.volume/3) + A.reagents.add_reagent("peridaxon", A.volume/3) + A.update_uses_left() + A.update_icon() + update_icon() + /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine/Initialize() . = ..() fill_with("tricordrazine") @@ -937,7 +975,7 @@ /obj/item/storage/pouch/pressurized_reagent_canister/proc/fill_autoinjector(obj/item/reagent_container/hypospray/autoinjector/autoinjector) var/max_uses = autoinjector.volume / autoinjector.amount_per_transfer_from_this - max_uses = round(max_uses) == max_uses ? max_uses : round(max_uses) + 1 + max_uses = floor(max_uses) == max_uses ? max_uses : floor(max_uses) + 1 if(inner && inner.reagents.total_volume > 0 && (autoinjector.uses_left < max_uses)) inner.reagents.trans_to(autoinjector, autoinjector.volume) autoinjector.update_uses_left() @@ -972,11 +1010,11 @@ var/obj/O = target - if(!O.reagents || O.reagents.reagent_list.len < 1) + if(!O.reagents || length(O.reagents.reagent_list) < 1) to_chat(user, SPAN_WARNING("[O] is empty!")) return - var/amt_to_remove = Clamp(O.reagents.total_volume, 0, inner.volume) + var/amt_to_remove = clamp(O.reagents.total_volume, 0, inner.volume) if(!amt_to_remove) to_chat(user, SPAN_WARNING("[O] is empty!")) return @@ -985,11 +1023,11 @@ O.reagents.trans_to(inner, amt_to_remove) //Refill our autoinjector - if(contents.len > 0) + if(length(contents) > 0) fill_autoinjector(contents[1]) //Top up our inner reagent canister after filling up the injector - amt_to_remove = Clamp(O.reagents.total_volume, 0, inner.volume) + amt_to_remove = clamp(O.reagents.total_volume, 0, inner.volume) if(amt_to_remove) O.reagents.trans_to(inner, amt_to_remove) @@ -1031,14 +1069,14 @@ //returns a text listing the reagents (and their volume) in the atom. Used by Attack logs for reagents in pills /obj/item/storage/pouch/pressurized_reagent_canister/proc/get_reagent_list_text() - if(inner && inner.reagents && inner.reagents.reagent_list && inner.reagents.reagent_list.len) + if(inner && inner.reagents && LAZYLEN(inner.reagents.reagent_list)) var/datum/reagent/R = inner.reagents.reagent_list[1] . = "[R.name]([R.volume]u)" - if(inner.reagents.reagent_list.len < 2) + if(length(inner.reagents.reagent_list) < 2) return - for(var/i in 2 to inner.reagents.reagent_list.len) + for(var/i in 2 to length(inner.reagents.reagent_list)) R = inner.reagents.reagent_list[i] if(!R) @@ -1253,6 +1291,21 @@ new /obj/item/explosive/plastic(src) new /obj/item/explosive/plastic(src) +/obj/item/storage/pouch/tools/tactical/upp + name = "synthetic tools pouch" + desc = "Special issue tools pouch for UPP synthetics. Due to the enhanced strength of the synthetic and its inability to feel discomfort, this pouch is designed to maximize internal space with no concern for its wearer's comfort." + icon_state = "tools" + storage_slots = 7 + +/obj/item/storage/pouch/tools/tactical/upp/fill_preset_inventory() + new /obj/item/tool/wrench(src) + new /obj/item/tool/crowbar(src) + new /obj/item/tool/wirecutters(src) + new /obj/item/device/multitool(src) + new /obj/item/tool/weldingtool(src) + new /obj/item/stack/cable_coil(src) + new /obj/item/stack/cable_coil(src) + /obj/item/storage/pouch/tools/uppsynth/fill_preset_inventory() new /obj/item/tool/crowbar(src) new /obj/item/tool/wirecutters(src) @@ -1371,7 +1424,7 @@ /obj/item/storage/pouch/machete name = "\improper H6B pattern M2132 machete scabbard" desc = "A large leather scabbard used to carry a M2132 machete. It can be strapped to the pouch slot." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/holsters.dmi' icon_state = "macheteB_holster" item_state = "machete_holster" max_w_class = SIZE_LARGE diff --git a/code/game/objects/items/storage/secure.dm b/code/game/objects/items/storage/secure.dm index d79fe712be..835f0d7cc4 100644 --- a/code/game/objects/items/storage/secure.dm +++ b/code/game/objects/items/storage/secure.dm @@ -97,7 +97,7 @@ else if ((code == l_code) && (l_set == 1)) locked = 0 overlays = null - overlays += image('icons/obj/items/storage.dmi', icon_opened) + overlays += image('icons/obj/items/storage/briefcases.dmi', icon_opened) code = null else code = "ERROR" @@ -123,7 +123,7 @@ // ----------------------------- /obj/item/storage/secure/briefcase name = "secure briefcase" - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/briefcases.dmi' icon_state = "secure" item_state = "sec-case" desc = "A large briefcase with a digital locking system." @@ -155,8 +155,8 @@ /obj/item/storage/secure/safe name = "secure safe" - icon = 'icons/obj/items/storage.dmi' - icon_state = "safe" + icon = 'icons/obj/structures/structures.dmi' + icon_state = "wallsafe" icon_opened = "safe0" icon_locking = "safeb" icon_sparking = "safespark" diff --git a/code/game/objects/items/storage/smartpack.dm b/code/game/objects/items/storage/smartpack.dm index d012e77361..3763064aa3 100644 --- a/code/game/objects/items/storage/smartpack.dm +++ b/code/game/objects/items/storage/smartpack.dm @@ -1,5 +1,5 @@ #define BACKPACK_LIGHT_LEVEL 6 -#define PROTECTIVE_COST 50 +#define PROTECTIVE_COST 150 #define REPAIR_COST 100 #define IMMOBILE_COST 20 diff --git a/code/game/objects/items/storage/storage.dm b/code/game/objects/items/storage/storage.dm index 6e7e891d6b..c04de364ba 100644 --- a/code/game/objects/items/storage/storage.dm +++ b/code/game/objects/items/storage/storage.dm @@ -7,7 +7,6 @@ /obj/item/storage name = "storage" - icon = 'icons/obj/items/storage.dmi' w_class = SIZE_MEDIUM var/list/can_hold = new/list() //List of objects which this item can store (if set, it can't store anything else) var/list/cant_hold = new/list() //List of objects which this item can't store (in effect only if can_hold isn't set) @@ -259,7 +258,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box) if(!opened) //initialize background box storage_start.screen_loc = "4:16,2:16" - storage_continue.screen_loc = "4:[round(storage_cap_width+(storage_width-storage_cap_width*2)/2+2)],2:16" + storage_continue.screen_loc = "4:[floor(storage_cap_width+(storage_width-storage_cap_width*2)/2+2)],2:16" storage_end.screen_loc = "4:[19+storage_width-storage_cap_width],2:16" var/startpoint = 0 @@ -294,7 +293,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box) storage_start.overlays += ISB.continued storage_start.overlays += ISB.end - O.screen_loc = "4:[round((startpoint+endpoint)/2)+(2+O.hud_offset)],2:16" + O.screen_loc = "4:[floor((startpoint+endpoint)/2)+(2+O.hud_offset)],2:16" O.layer = ABOVE_HUD_LAYER O.plane = ABOVE_HUD_PLANE @@ -366,7 +365,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box) //This proc determins the size of the inventory to be displayed. Please touch it only if you know what you're doing. /obj/item/storage/proc/orient2hud() - var/adjusted_contents = contents.len + var/adjusted_contents = length(contents) //Numbered contents display var/list/datum/numbered_display/numbered_contents @@ -390,13 +389,13 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box) var/row_num = 0 var/col_count = min(7,storage_slots) -1 if (adjusted_contents > 7) - row_num = round((adjusted_contents-1) / 7) // 7 is the maximum allowed width. + row_num = floor((adjusted_contents-1) / 7) // 7 is the maximum allowed width. slot_orient_objs(row_num, col_count, numbered_contents) return ///Returns TRUE if there is room for the given item. W_class_override allows checking for just a generic W_class, meant for checking shotgun handfuls without having to spawn and delete one just to check. /obj/item/storage/proc/has_room(obj/item/new_item, W_class_override = null) - if(storage_slots != null && contents.len < storage_slots) + if(storage_slots != null && length(contents) < storage_slots) return TRUE //At least one open slot. //calculate storage space only for containers that don't have slots if (storage_slots == null) @@ -458,7 +457,7 @@ GLOBAL_LIST_EMPTY_TYPED(item_storage_box_cache, /datum/item_storage_box) return var/w_limit_bypassed = 0 - if(bypass_w_limit.len) + if(length(bypass_w_limit)) for(var/A in bypass_w_limit) if(istype(W, A)) w_limit_bypassed = 1 @@ -559,11 +558,6 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ //This proc is called when you want to place an item into the storage item. /obj/item/storage/attackby(obj/item/W as obj, mob/user as mob) ..() - - if(isrobot(user)) - to_chat(user, SPAN_NOTICE(" You're a robot. No.")) - return //Robots can't interact with storage items. - return attempt_item_insertion(W, FALSE, user) /obj/item/storage/equipped(mob/user, slot, silent) @@ -590,7 +584,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ if(storage_flags & STORAGE_USING_FIFO_DRAWING) I = contents[1] else - I = contents[contents.len] + I = contents[length(contents)] I.attack_hand(user) else open(user) @@ -712,7 +706,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ if(storage_flags & STORAGE_USING_FIFO_DRAWING) item_obj = contents[1] else - item_obj = contents[contents.len] + item_obj = contents[length(contents)] if(!istype(item_obj)) return remove_from_storage(item_obj, tile) @@ -730,11 +724,11 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ if(ammo_dumping.flags_magazine & AMMUNITION_HANDFUL_BOX) var/handfuls = round(ammo_dumping.current_rounds / amount_to_dump, 1) //The number of handfuls, we round up because we still want the last one that isn't full if(ammo_dumping.current_rounds != 0) - if(contents.len < storage_slots) + if(length(contents) < storage_slots) to_chat(user, SPAN_NOTICE("You start refilling [src] with [ammo_dumping].")) if(!do_after(user, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return for(var/i = 1 to handfuls) - if(contents.len < storage_slots) + if(length(contents) < storage_slots) //Hijacked from /obj/item/ammo_magazine/proc/create_handful because it had to be handled differently //All this because shell types are instances and not their own objects :) @@ -759,7 +753,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ if(user.action_busy) return - if(!origin_storage.contents.len) + if(!length(origin_storage.contents)) to_chat(user, SPAN_WARNING("[origin_storage] is empty.")) return if(!has_room(origin_storage.contents[1])) //Does it have room for the first item to be inserted? @@ -862,7 +856,7 @@ W is always an item. stop_warning prevents messaging. user may be null.**/ ..() //Clicking on itself will empty it, if it has contents and the verb to do that. Contents but no verb means nothing happens. - if(contents.len) + if(length(contents)) empty(user) return diff --git a/code/game/objects/items/storage/surgical_tray.dm b/code/game/objects/items/storage/surgical_tray.dm index 16c0d13529..2166369515 100644 --- a/code/game/objects/items/storage/surgical_tray.dm +++ b/code/game/objects/items/storage/surgical_tray.dm @@ -1,6 +1,7 @@ /obj/item/storage/surgical_tray name = "surgical tray" desc = "A small metallic tray covered in sterile tarp. Intended to store surgical tools in a neat and clean fashion." + icon = 'icons/obj/items/storage/medical.dmi' icon_state = "surgical_tray" flags_atom = FPRINT|CONDUCT w_class = SIZE_LARGE //Should not fit in backpacks @@ -34,7 +35,7 @@ new /obj/item/tool/surgery/synthgraft(src) /obj/item/storage/surgical_tray/update_icon() - if(!contents.len) + if(!length(contents)) icon_state = "surgical_tray_e" else icon_state = "surgical_tray" diff --git a/code/game/objects/items/storage/toolbox.dm b/code/game/objects/items/storage/toolbox.dm index db0d4e3b26..a2989ed12f 100644 --- a/code/game/objects/items/storage/toolbox.dm +++ b/code/game/objects/items/storage/toolbox.dm @@ -1,6 +1,7 @@ /obj/item/storage/toolbox name = "toolbox" desc = "Danger. Very robust." + icon = 'icons/obj/items/storage/toolbox.dmi' icon_state = "red" item_state = "toolbox_red" pickup_sound = 'sound/handling/toolbox_pickup.ogg' diff --git a/code/game/objects/items/storage/toolkit.dm b/code/game/objects/items/storage/toolkit.dm index e3171eca40..d54201f736 100644 --- a/code/game/objects/items/storage/toolkit.dm +++ b/code/game/objects/items/storage/toolkit.dm @@ -1,6 +1,7 @@ /obj/item/storage/toolkit name = "engineer kit" desc = "An combat engineering toolkit intended to carry electrical and mechanical supplies into combat. With engineering training you can fit this in a backpack." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "toolkit" item_state = "fulton" throw_speed = SPEED_FAST @@ -23,7 +24,7 @@ ) storage_flags = STORAGE_FLAGS_BOX required_skill_for_nest_opening = SKILL_ENGINEER - required_skill_level_for_nest_opening = SKILL_ENGINEER_ENGI + required_skill_level_for_nest_opening = SKILL_ENGINEER_TRAINED ///icon state to use when kit is full var/icon_full @@ -41,5 +42,15 @@ else icon_state = icon_full +/obj/item/storage/toolkit/full/fill_preset_inventory() + new /obj/item/stack/cable_coil/random(src) + new /obj/item/circuitboard/apc(src) + new /obj/item/circuitboard/apc(src) + new /obj/item/circuitboard/apc(src) + new /obj/item/cell/high(src) + new /obj/item/cell/high(src) + new /obj/item/clothing/glasses/welding(src) + + /obj/item/storage/toolkit/empty/fill_preset_inventory() return diff --git a/code/game/objects/items/storage/wallets.dm b/code/game/objects/items/storage/wallets.dm index 29c364a59b..5eb4e7d7ce 100644 --- a/code/game/objects/items/storage/wallets.dm +++ b/code/game/objects/items/storage/wallets.dm @@ -3,6 +3,7 @@ desc = "It can hold a few small and personal things." storage_slots = 10 icon_state = "wallet" + icon = 'icons/obj/items/storage/bags.dmi' w_class = SIZE_TINY can_hold = list( /obj/item/spacecash, diff --git a/code/game/objects/items/tanks/jetpack.dm b/code/game/objects/items/tanks/jetpack.dm deleted file mode 100644 index 3a5afef6cf..0000000000 --- a/code/game/objects/items/tanks/jetpack.dm +++ /dev/null @@ -1,85 +0,0 @@ -//This file was auto-corrected by findeclaration.exe on 25.5.2012 20:42:32 - -/obj/item/tank/jetpack - name = "Jetpack (Empty)" - desc = "A tank of compressed gas for use as propulsion in zero-gravity areas. Use with caution." - icon_state = "jetpack" - w_class = SIZE_LARGE - item_state = "jetpack" - distribute_pressure = ONE_ATMOSPHERE*O2STANDARD - var/datum/effect_system/ion_trail_follow/ion_trail - var/on = 0 - var/stabilization_on = 0 - var/volume_rate = 500 //Needed for borg jetpack transfer - actions_types = list(/datum/action/item_action) - -/obj/item/tank/jetpack/Initialize() - . = ..() - src.ion_trail = new /datum/effect_system/ion_trail_follow() - src.ion_trail.set_up(src) - -/obj/item/tank/jetpack/Destroy() - QDEL_NULL(ion_trail) - return ..() - - -/obj/item/tank/jetpack/verb/toggle_rockets() - set name = "Toggle Jetpack Stabilization" - set category = "Object" - set src in usr - src.stabilization_on = !( src.stabilization_on ) - to_chat(usr, "You toggle the stabilization [stabilization_on? "on":"off"].") - -/obj/item/tank/jetpack/verb/toggle() - set name = "Toggle Jetpack" - set category = "Object" - set src in usr - on = !on - if(on) - icon_state = "[icon_state]-on" - ion_trail.start() - else - icon_state = initial(icon_state) - ion_trail.stop() - - if (ismob(usr)) - var/mob/M = usr - M.update_inv_back() - - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - -/obj/item/tank/jetpack/proc/allow_thrust(num, mob/living/user) - if(!(src.on)) - return 0 - - if(pressure > 5) - return 1 - else - ion_trail.stop() - return 0 - - -/obj/item/tank/jetpack/ui_action_click() - toggle() - - -/obj/item/tank/jetpack/void - name = "Void Jetpack (Oxygen)" - desc = "It works well in a void." - icon_state = "jetpack-void" - item_state = "jetpack-void" - -/obj/item/tank/jetpack/oxygen - name = "Jetpack (Oxygen)" - desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas. Use with caution." - icon_state = "jetpack" - item_state = "jetpack" - -/obj/item/tank/jetpack/carbondioxide - name = "Jetpack (Carbon Dioxide)" - desc = "A tank of compressed carbon dioxide for use as propulsion in zero-gravity areas. Painted black to indicate that it should not be used as a source for internals." - distribute_pressure = 0 - icon_state = "jetpack-black" - item_state = "jetpack-black" diff --git a/code/game/objects/items/tanks/tanks.dm b/code/game/objects/items/tanks/tanks.dm index 5a929a171f..7d6da672b7 100644 --- a/code/game/objects/items/tanks/tanks.dm +++ b/code/game/objects/items/tanks/tanks.dm @@ -61,7 +61,7 @@ if(pressure>0) to_chat(user, SPAN_NOTICE("Pressure: [round(pressure,0.1)] kPa")) to_chat(user, SPAN_NOTICE("[gas_type]: 100%")) - to_chat(user, SPAN_NOTICE("Temperature: [round(temperature-T0C)]°C")) + to_chat(user, SPAN_NOTICE("Temperature: [floor(temperature-T0C)]°C")) else to_chat(user, SPAN_NOTICE("Tank is empty!")) src.add_fingerprint(user) @@ -84,12 +84,12 @@ /obj/item/tank/ui_data(mob/user) var/list/data = list() - data["tankPressure"] = round(pressure) - data["tankMaxPressure"] = round(pressure_full) - data["ReleasePressure"] = round(distribute_pressure) - data["defaultReleasePressure"] = round(TANK_DEFAULT_RELEASE_PRESSURE) - data["maxReleasePressure"] = round(TANK_MAX_RELEASE_PRESSURE) - data["minReleasePressure"] = round(TANK_MIN_RELEASE_PRESSURE) + data["tankPressure"] = floor(pressure) + data["tankMaxPressure"] = floor(pressure_full) + data["ReleasePressure"] = floor(distribute_pressure) + data["defaultReleasePressure"] = floor(TANK_DEFAULT_RELEASE_PRESSURE) + data["maxReleasePressure"] = floor(TANK_MAX_RELEASE_PRESSURE) + data["minReleasePressure"] = floor(TANK_MIN_RELEASE_PRESSURE) var/mask_connected = FALSE var/using_internal = FALSE @@ -122,7 +122,7 @@ src.distribute_pressure = TANK_MIN_RELEASE_PRESSURE else if(text2num(tgui_pressure) != null) pressure = text2num(tgui_pressure) - src.distribute_pressure = min(max(round(src.distribute_pressure), 0), TANK_MAX_RELEASE_PRESSURE) + src.distribute_pressure = min(max(floor(src.distribute_pressure), 0), TANK_MAX_RELEASE_PRESSURE) . = TRUE if("valve") diff --git a/code/game/objects/items/tools/cleaning_tools.dm b/code/game/objects/items/tools/cleaning_tools.dm index f392f096bc..9fab254a71 100644 --- a/code/game/objects/items/tools/cleaning_tools.dm +++ b/code/game/objects/items/tools/cleaning_tools.dm @@ -99,13 +99,15 @@ desc = "This cone is trying to warn you of something!" icon_state = "cone" icon = 'icons/obj/janitor.dmi' + item_icons = 'icons/mob/humans/onmob/head_0.dmi' force = 1 throwforce = 3 throw_speed = SPEED_FAST throw_range = 5 w_class = SIZE_SMALL attack_verb = list("warned", "cautioned", "smashed") - + flags_equip_slot = SLOT_HEAD + flags_inv_hide = HIDEEARS|HIDETOPHAIR @@ -150,7 +152,7 @@ return ..() -/obj/item/tool/soap/nanotrasen +/obj/item/tool/soap/weyland_yutani desc = "A Weyland-Yutani brand bar of soap. Smells of phoron." icon_state = "soapnt" diff --git a/code/game/objects/items/tools/experimental_tools.dm b/code/game/objects/items/tools/experimental_tools.dm index 221aa279a5..140a05a534 100644 --- a/code/game/objects/items/tools/experimental_tools.dm +++ b/code/game/objects/items/tools/experimental_tools.dm @@ -107,7 +107,7 @@ icon_state = "autocomp" if(pdcell && pdcell.charge) overlays.Cut() - switch(round(pdcell.charge * 100 / pdcell.maxcharge)) + switch(floor(pdcell.charge * 100 / pdcell.maxcharge)) if(1 to 32) overlays += "cpr_batt_lo" if(33 to 65) @@ -118,7 +118,7 @@ /obj/item/clothing/suit/auto_cpr/get_examine_text(mob/user) . = ..() - . += SPAN_NOTICE("It has [round(pdcell.charge * 100 / pdcell.maxcharge)]% charge remaining.") + . += SPAN_NOTICE("It has [floor(pdcell.charge * 100 / pdcell.maxcharge)]% charge remaining.") @@ -157,7 +157,7 @@ end_cpr() return PROCESS_KILL - if(world.time > last_pump + 10 SECONDS) + if(world.time > last_pump + 7.5 SECONDS) last_pump = world.time if(H.stat == UNCONSCIOUS) var/suff = min(H.getOxyLoss(), 10) //Pre-merge level, less healing, more prevention of dying. @@ -230,7 +230,7 @@ overlays += "+filtering" if(pdcell && pdcell.charge) - switch(round(pdcell.charge * 100 / pdcell.maxcharge)) + switch(floor(pdcell.charge * 100 / pdcell.maxcharge)) if(85 to INFINITY) overlays += "dialysis_battery_100" if(60 to 84) @@ -249,7 +249,7 @@ /obj/item/tool/portadialysis/get_examine_text(mob/user) . = ..() var/currentpercent = 0 - currentpercent = round(pdcell.charge * 100 / pdcell.maxcharge) + currentpercent = floor(pdcell.charge * 100 / pdcell.maxcharge) . += SPAN_INFO("It has [currentpercent]% charge left in its internal battery.") /obj/item/tool/portadialysis/proc/painful_detach() @@ -379,5 +379,5 @@ arms_to_damage -= l_arm if(r_arm.status & LIMB_DESTROYED) arms_to_damage -= r_arm - if(arms_to_damage.len) + if(length(arms_to_damage)) human_to_damage.apply_damage(3, BRUTE, pick(arms_to_damage)) diff --git a/code/game/objects/items/tools/extinguisher.dm b/code/game/objects/items/tools/extinguisher.dm index cdd7f31f19..75987116b2 100644 --- a/code/game/objects/items/tools/extinguisher.dm +++ b/code/game/objects/items/tools/extinguisher.dm @@ -153,13 +153,13 @@ var/list/unpicked_targets = list() for(var/a in 0 to (EXTINGUISHER_WATER_USE_AMT-1)) - if (!unpicked_targets.len) + if (!length(unpicked_targets)) unpicked_targets += targets var/turf/TT = pick(unpicked_targets) unpicked_targets -= TT INVOKE_ASYNC(src, PROC_REF(release_liquid), TT, user) - if(istype(user.loc, /turf/open/space) || (user.lastarea && user.lastarea.has_gravity == 0)) + if(istype(user.loc, /turf/open/space)) user.inertia_dir = get_dir(target, user) step(user, user.inertia_dir) return diff --git a/code/game/objects/items/tools/flame_tools.dm b/code/game/objects/items/tools/flame_tools.dm index 7681e74a1d..8af7d15e0f 100644 --- a/code/game/objects/items/tools/flame_tools.dm +++ b/code/game/objects/items/tools/flame_tools.dm @@ -177,10 +177,11 @@ CIGARETTE PACKETS ARE IN FANCY.DM w_class = SIZE_TINY flags_armor_protection = 0 flags_equip_slot = SLOT_EAR | SLOT_FACE + flags_obj = parent_type::flags_obj|OBJ_IS_HELMET_GARB flags_atom = CAN_BE_SYRINGED attack_verb = list("burnt", "singed") blood_overlay_type = "" - light_color = LIGHT_COLOUR_ORANGE + light_color = LIGHT_COLOR_ORANGE /// Note - these are in masks.dmi not in cigarette.dmi var/icon_on = "cigon" var/icon_off = "cigoff" @@ -233,12 +234,12 @@ CIGARETTE PACKETS ARE IN FANCY.DM light(SPAN_NOTICE("[user] fiddles with [W], and manages to light their [name].")) else if(istype(W, /obj/item/attachable/attached_gun/flamer)) - light(SPAN_NOTICE("[user] lights their [src] with the [W].")) + light(SPAN_NOTICE("[user] lights their [name] with [W].")) else if(istype(W, /obj/item/weapon/gun/flamer)) var/obj/item/weapon/gun/flamer/F = W if(!(F.flags_gun_features & GUN_TRIGGER_SAFETY)) - light(SPAN_NOTICE("[user] lights their [src] with the pilot light of the [F].")) + light(SPAN_NOTICE("[user] lights their [name] with the pilot light of [F].")) else to_chat(user, SPAN_WARNING("Turn on the pilot light first!")) @@ -246,20 +247,20 @@ CIGARETTE PACKETS ARE IN FANCY.DM var/obj/item/weapon/gun/G = W for(var/slot in G.attachments) if(istype(G.attachments[slot], /obj/item/attachable/attached_gun/flamer)) - light(SPAN_NOTICE("[user] lights their [src] with [G.attachments[slot]].")) + light(SPAN_NOTICE("[user] lights their [name] with [G.attachments[slot]].")) break else if(istype(W, /obj/item/tool/surgery/cautery)) - light(SPAN_NOTICE("[user] lights their [src] with the [W].")) + light(SPAN_NOTICE("[user] lights their [name] with [W].")) else if(istype(W, /obj/item/clothing/mask/cigarette)) var/obj/item/clothing/mask/cigarette/C = W if(C.item_state == icon_on) - light(SPAN_NOTICE("[user] lights their [src] with the [C] after a few attempts.")) + light(SPAN_NOTICE("[user] lights their [name] with [C] after a few attempts.")) else if(istype(W, /obj/item/tool/candle)) if(W.heat_source > 200) - light(SPAN_NOTICE("[user] lights their [src] with the [W] after a few attempts.")) + light(SPAN_NOTICE("[user] lights their [name] with [W] after a few attempts.")) return @@ -529,12 +530,12 @@ CIGARETTE PACKETS ARE IN FANCY.DM light(SPAN_NOTICE("[user] fiddles with [W], and manages to light their [name] with the power of science.")) else if(istype(W, /obj/item/attachable/attached_gun/flamer)) - light(SPAN_NOTICE("[user] lights their [src] with the [W], bet that would have looked cooler if it was attached to something first!")) + light(SPAN_NOTICE("[user] lights their [name] with [W], bet that would have looked cooler if it was attached to something first!")) else if(istype(W, /obj/item/weapon/gun/flamer)) var/obj/item/weapon/gun/flamer/F = W if(!(F.flags_gun_features & GUN_TRIGGER_SAFETY)) - light(SPAN_NOTICE("[user] lights their [src] with the pilot light of the [F], the glint of pyromania in their eye.")) + light(SPAN_NOTICE("[user] lights their [name] with the pilot light of [F], the glint of pyromania in their eye.")) else to_chat(user, SPAN_WARNING("Turn on the pilot light first!")) @@ -546,16 +547,16 @@ CIGARETTE PACKETS ARE IN FANCY.DM break else if(istype(W, /obj/item/tool/surgery/cautery)) - light(SPAN_NOTICE("[user] lights their [src] with the [W], that can't be sterile!")) + light(SPAN_NOTICE("[user] lights their [name] with [W], that can't be sterile!")) else if(istype(W, /obj/item/clothing/mask/cigarette)) var/obj/item/clothing/mask/cigarette/C = W if(C.item_state == icon_on) - light(SPAN_NOTICE("[user] lights their [src] with the [C] after a few attempts.")) + light(SPAN_NOTICE("[user] lights their [name] with [C] after a few attempts.")) else if(istype(W, /obj/item/tool/candle)) if(W.heat_source > 200) - light(SPAN_NOTICE("[user] lights their [src] with the [W] after a few attempts.")) + light(SPAN_NOTICE("[user] lights their [name] with [W] after a few attempts.")) ///////////////// //SMOKING PIPES// @@ -685,7 +686,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM icon = 'icons/obj/items/items.dmi' icon_state = "lighter_g" item_state = "lighter_g" - light_color = LIGHT_COLOUR_LAVA + light_color = LIGHT_COLOR_LAVA var/icon_on = "lighter_g_on" var/icon_off = "lighter_g" var/clr = "g" @@ -693,6 +694,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM throwforce = 4 flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_WAIST + flags_obj = parent_type::flags_obj|OBJ_IS_HELMET_GARB attack_verb = list("burnt", "singed") /obj/item/tool/lighter/zippo @@ -721,6 +723,22 @@ CIGARETTE PACKETS ARE IN FANCY.DM log_admin("[user] has engraved \the [src] with engraving \"[str]\". (CKEY: ([user.ckey]))") +/obj/item/tool/lighter/zippo/black + name = "black Zippo lighter" + desc = "A fancy black Zippo lighter. Ignite in style." + icon_state = "blackzippo" + item_state = "blackzippo" + icon_on = "blackzippoon" + icon_off = "blackzippo" + +/obj/item/tool/lighter/zippo/blue + name = "blue Zippo lighter" + desc = "A fancy blue Zippo lighter. Ignite in style." + icon_state = "bluezippo" + item_state = "bluezippo" + icon_on = "bluezippoon" + icon_off = "bluezippo" + /obj/item/tool/lighter/zippo/gold name = "golden Zippo lighter" desc = "A gold-anodized Zippo lighter. Ostentatious, but it certainly stands out." @@ -730,6 +748,15 @@ CIGARETTE PACKETS ARE IN FANCY.DM icon_off = "goldzippo" black_market_value = 30 +/obj/item/tool/lighter/zippo/executive + name = "Weyland-Yutani executive Zippo lighter" + desc = "A remarkable Zippo lighter embellished in the Company's black and gold shade." + icon_state = "execzippo" + item_state = "execzippo" + icon_on = "execzippoon" + icon_off = "execzippo" + black_market_value = 40 + /obj/item/tool/lighter/random /obj/item/tool/lighter/random/Initialize() @@ -751,7 +778,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM else playsound(src.loc,"lighter",10, 1, 3) if(prob(95)) - user.visible_message(SPAN_NOTICE("After a few attempts, [user] manages to light the [src].")) + user.visible_message(SPAN_NOTICE("After a few attempts, [user] manages to light [src].")) else to_chat(user, SPAN_WARNING("You burn yourself while lighting the lighter.")) @@ -759,7 +786,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM user.apply_damage(2,BURN,"l_hand") else user.apply_damage(2,BURN,"r_hand") - user.visible_message(SPAN_NOTICE("After a few attempts, [user] manages to light the [src], they however burn their finger in the process.")) + user.visible_message(SPAN_NOTICE("After a few attempts, [user] manages to light [src], they however burn their finger in the process.")) set_light_range(2) set_light_on(TRUE) @@ -777,10 +804,10 @@ CIGARETTE PACKETS ARE IN FANCY.DM item_state = icon_off if(!silent) if(istype(src, /obj/item/tool/lighter/zippo) ) - bearer.visible_message("You hear a quiet click, as [bearer] shuts off [src] without even looking at what they're doing.") + bearer.visible_message(SPAN_ROSE("You hear a quiet click, as [bearer] shuts off [src] without even looking at what they're doing.")) playsound(src.loc,"zippo_close",10, 1, 3) else - bearer.visible_message(SPAN_NOTICE("[bearer] quietly shuts off the [src].")) + bearer.visible_message(SPAN_NOTICE("[bearer] quietly shuts off [src].")) set_light_on(FALSE) STOP_PROCESSING(SSobj, src) @@ -805,4 +832,3 @@ CIGARETTE PACKETS ARE IN FANCY.DM cig.light(SPAN_NOTICE("[user] holds the [name] out for [M], and lights the [cig.name].")) else ..() - diff --git a/code/game/objects/items/tools/kitchen_tools.dm b/code/game/objects/items/tools/kitchen_tools.dm index bb763ada99..a29bf97cac 100644 --- a/code/game/objects/items/tools/kitchen_tools.dm +++ b/code/game/objects/items/tools/kitchen_tools.dm @@ -48,7 +48,7 @@ var/fullness = M.nutrition + (M.reagents.get_reagent_amount("nutriment") * 25) if(fullness > NUTRITION_HIGH) to_chat(user, SPAN_WARNING("[user == M ? "You" : "They"] don't feel like eating more right now.")) - return ..() + return reagents.set_source_mob(user) reagents.trans_to_ingest(M, reagents.total_volume) if(M == user) @@ -126,8 +126,28 @@ flags_atom = FPRINT|CONDUCT sharp = IS_SHARP_ITEM_ACCURATE edge = 1 + force = MELEE_FORCE_TIER_4 + w_class = SIZE_MEDIUM + throwforce = 6 + throw_speed = SPEED_VERY_FAST + throw_range = 6 + matter = list("metal" = 12000) + + attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") + +/* + * Plastic Pizza Cutter + */ +/obj/item/tool/kitchen/pizzacutter + name = "pizza cutter" + icon_state = "plasticpizzacutter" + desc = "A circular blade used for cutting pizzas. This one has a cheap plastic handle." + flags_atom = FPRINT|CONDUCT + sharp = IS_SHARP_ITEM_ACCURATE + edge = TRUE force = 10 w_class = SIZE_MEDIUM + hitsound = 'sound/weapons/bladeslice.ogg' throwforce = 6 throw_speed = SPEED_VERY_FAST throw_range = 6 @@ -135,6 +155,22 @@ attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") +/* + * Wood Pizza Cutter + */ +/obj/item/tool/kitchen/pizzacutter/wood + icon_state = "woodpizzacutter" + desc = "A circular blade used for cutting pizzas. This one has an authentic wooden handle." + +/* + * Holy Relic Pizza Cutter + */ +/obj/item/tool/kitchen/pizzacutter/holyrelic + name = "\improper PIZZA TIME" + icon_state = "holyrelicpizzacutter" + desc = "Before you is a holy relic of a bygone era when the great Pizza Lords reigned supreme. You know either that or it's just a big damn pizza cutter." + force = MELEE_FORCE_VERY_STRONG + /* * Bucher's cleaver */ @@ -143,7 +179,7 @@ icon_state = "butch" desc = "A huge thing used for chopping and chopping up meat. This includes clowns and clown-by-products." flags_atom = FPRINT|CONDUCT - force = 15 + force = MELEE_FORCE_NORMAL w_class = SIZE_SMALL throwforce = 8 throw_speed = SPEED_VERY_FAST @@ -218,7 +254,7 @@ var/cooldown = 0 /obj/item/tool/kitchen/tray/attack(mob/living/carbon/M, mob/living/carbon/user) - to_chat(user, SPAN_WARNING("You accidentally slam yourself with the [src]!")) + to_chat(user, SPAN_WARNING("You accidentally slam yourself with [src]!")) user.apply_effect(1, WEAKEN) user.take_limb_damage(2) diff --git a/code/game/objects/items/tools/maintenance_tools.dm b/code/game/objects/items/tools/maintenance_tools.dm index f3dedae35c..7264a8a2e5 100644 --- a/code/game/objects/items/tools/maintenance_tools.dm +++ b/code/game/objects/items/tools/maintenance_tools.dm @@ -29,6 +29,7 @@ matter = list("metal" = 150) attack_verb = list("bashed", "battered", "bludgeoned", "whacked") inherent_traits = list(TRAIT_TOOL_WRENCH) + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) /* @@ -50,8 +51,9 @@ throw_range = 5 matter = list("metal" = 75) attack_verb = list("stabbed") + flags_item = CAN_DIG_SHRAPNEL inherent_traits = list(TRAIT_TOOL_SCREWDRIVER) - + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) /obj/item/tool/screwdriver/Initialize() @@ -96,8 +98,8 @@ if(E) var/safety = H.get_eye_protection() if(!safety) - to_chat(user, SPAN_DANGER("You stab [H] in the eyes with the [src]!")) - visible_message(SPAN_DANGER("[user] stabs [H] in the eyes with the [src]!")) + user.visible_message(SPAN_DANGER("[user] stabs [H] in the eyes with [src]!"), + SPAN_DANGER("You stab [H] in the eyes with [src]!")) E.take_damage(rand(8,20)) return ..() /obj/item/tool/screwdriver/tactical @@ -134,6 +136,7 @@ sharp = IS_SHARP_ITEM_SIMPLE edge = 1 inherent_traits = list(TRAIT_TOOL_WIRECUTTERS) + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) /obj/item/tool/wirecutters/tactical name = "tactical wirecutters" @@ -141,7 +144,7 @@ icon_state = "tac_cutters" /obj/item/tool/wirecutters/attack(mob/living/carbon/C, mob/user) - if((C.handcuffed) && (istype(C.handcuffed, /obj/item/handcuffs/cable))) + if((C.handcuffed) && (istype(C.handcuffed, /obj/item/restraint/adjustable/cable))) user.visible_message("\The [usr] cuts \the [C]'s restraints with \the [src]!",\ "You cut \the [C]'s restraints with \the [src]!",\ "You hear cable being cut.") @@ -162,6 +165,7 @@ drop_sound = 'sound/handling/weldingtool_drop.ogg' flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_WAIST + var/base_icon_state = "" //Amount of OUCH when it's thrown force = 3 @@ -189,11 +193,13 @@ /// Whether you need welding protection to use without eye damage, if it has a welding screen you do not take eye damage var/has_welding_screen = TRUE + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) /obj/item/tool/weldingtool/Initialize() . = ..() create_reagents(max_fuel) reagents.add_reagent("fuel", max_fuel) + base_icon_state = initial(icon_state) return /obj/item/tool/weldingtool/Destroy() @@ -338,7 +344,7 @@ weld_tick += 8 //turning the tool on does not consume fuel directly, but it advances the process that regularly consumes fuel. force = 15 damtype = "fire" - icon_state = "welder1" + icon_state = base_icon_state + "_on" w_class = SIZE_LARGE heat_source = 3800 START_PROCESSING(SSobj, src) @@ -350,7 +356,7 @@ playsound(loc, 'sound/items/weldingtool_off.ogg', 25) force = 3 damtype = "brute" - icon_state = "welder" + icon_state = base_icon_state welding = 0 w_class = initial(w_class) heat_source = 0 @@ -417,6 +423,7 @@ name = "industrial blowtorch" max_fuel = 60 matter = list("metal" = 70, "glass" = 60) + icon_state = "welder_c" /obj/item/tool/weldingtool/hugetank @@ -444,9 +451,9 @@ name = "\improper ME3 hand welder" desc = "A compact, handheld welding torch used by the marines of the United States Colonial Marine Corps for cutting and welding jobs on the field. Due to the small size and slow strength, its function is limited compared to a full-sized technician's blowtorch." max_fuel = 5 - color = "#cc0000" has_welding_screen = TRUE inherent_traits = list(TRAIT_TOOL_SIMPLE_BLOWTORCH) + icon_state = "welder_b" /* * Crowbar @@ -470,6 +477,7 @@ attack_verb = list("attacked", "bashed", "battered", "bludgeoned", "whacked") inherent_traits = list(TRAIT_TOOL_CROWBAR) pry_capable = IS_PRY_CAPABLE_CROWBAR + preferred_storage = list(/obj/item/clothing/accessory/storage/tool_webbing = WEAR_ACCESSORY) /obj/item/tool/crowbar/red icon = 'icons/obj/items/items.dmi' @@ -492,6 +500,7 @@ w_class = SIZE_LARGE force = MELEE_FORCE_STRONG flags_equip_slot = SLOT_SUIT_STORE + flags_atom = FPRINT|QUICK_DRAWABLE pry_capable = IS_PRY_CAPABLE_FORCE //but not really ///Whether the Maintenance Jack is on crowbar or wrench mode var/crowbar_mode = TRUE //False for wrench mode @@ -554,13 +563,19 @@ if(requires_superstrength_pry) if(!HAS_TRAIT(user, TRAIT_SUPER_STRONG)) //basically IS_PRY_CAPABLE_CROWBAR return - if(!attacked_door.density) //If its open - return if(attacked_door.heavy) //Unopenable to_chat(usr, SPAN_DANGER("You cannot force [attacked_door] open.")) return if(user.action_busy) return + if(!attacked_door.density && !attacked_door.arePowerSystemsOn()) //If its open and unpowered + attacked_door.close(TRUE) + return + if(attacked_door.density && !attacked_door.arePowerSystemsOn()) // if its closed and unpowered + attacked_door.open(TRUE) + return + if(!attacked_door.density) //If its open + return user.visible_message(SPAN_DANGER("[user] jams [src] into [attacked_door] and starts to pry it open."), SPAN_DANGER("You jam [src] into [attacked_door] and start to pry it open.")) diff --git a/code/game/objects/items/tools/mining_tools.dm b/code/game/objects/items/tools/mining_tools.dm index 2389f85a37..2b95e9fe94 100644 --- a/code/game/objects/items/tools/mining_tools.dm +++ b/code/game/objects/items/tools/mining_tools.dm @@ -8,10 +8,11 @@ icon_state = "pickaxe" flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_WAIST - force = 15 + force = MELEE_FORCE_STRONG throwforce = 4 item_state = "pickaxe" w_class = SIZE_LARGE + hitsound = 'sound/weapons/bladeslice.ogg' matter = list("metal" = 3750) /// moving the delay to an item var so R&D can make improved picks. --NEO var/digspeed = 40 diff --git a/code/game/objects/items/tools/misc_tools.dm b/code/game/objects/items/tools/misc_tools.dm index f70f934970..b016f0e67b 100644 --- a/code/game/objects/items/tools/misc_tools.dm +++ b/code/game/objects/items/tools/misc_tools.dm @@ -58,6 +58,10 @@ if(isturf(A)) to_chat(user, SPAN_WARNING("The label won't stick to that.")) return + if(istype(A, /obj/item/storage/pill_bottle)) + var/obj/item/storage/pill_bottle/target_pill_bottle = A + target_pill_bottle.choose_color(user) + if(!label || !length(label)) remove_label(A, user) return @@ -132,7 +136,7 @@ qdel(I) //delete the paper item labels_left = initial(labels_left) else - to_chat(user, SPAN_NOTICE("The [src] is already full.")) + to_chat(user, SPAN_NOTICE("[src] is already full.")) /* Instead of updating labels_left to user every label used, @@ -161,7 +165,7 @@ matter = list("metal" = 10) inherent_traits = list(TRAIT_TOOL_PEN) /// what color the ink is! - var/pen_colour = "black" + var/pen_color = "black" var/on = TRUE var/clicky = FALSE @@ -180,7 +184,7 @@ /obj/item/tool/pen/proc/update_pen_state() overlays.Cut() if(on) - overlays += "+[pen_colour]_tip" + overlays += "+[pen_color]_tip" /obj/item/tool/pen/afterattack(atom/target, mob/user, proximity_flag, click_parameters) . = ..() @@ -246,7 +250,7 @@ /obj/item/tool/pen/blue desc = "It's a normal blue ink pen." - pen_colour = "blue" + pen_color = "blue" /obj/item/tool/pen/blue/clicky desc = "It's a WY brand extra clicky blue ink pen." @@ -255,7 +259,7 @@ /obj/item/tool/pen/red desc = "It's a normal red ink pen." - pen_colour = "red" + pen_color = "red" /obj/item/tool/pen/red/clicky desc = "It's a WY brand extra clicky red ink pen." @@ -264,7 +268,7 @@ /obj/item/tool/pen/green desc = "It's a normal green ink pen." - pen_colour = "green" + pen_color = "green" /obj/item/tool/pen/green/clicky desc = "It's a WY brand extra clicky green ink pen." @@ -273,7 +277,7 @@ /obj/item/tool/pen/invisible desc = "It's an invisible pen marker." - pen_colour = "white" + pen_color = "white" /obj/item/tool/pen/fountain desc = "A lavish testament to the ingenuity of ARMAT's craftsmanship, this fountain pen is a paragon of design and functionality. Detailed with golden accents and intricate mechanics, the pen allows for a swift change between a myriad of ink colors with a simple twist. A product of precision engineering, each mechanism inside the pen is designed to provide a seamless, effortless transition from one color to the next, creating an instrument of luxurious versatility." @@ -282,8 +286,8 @@ icon_state = "fountain_pen" item_state = "fountain_pen" matter = list("metal" = 20, "gold" = 10) - var/static/list/colour_list = list("red", "blue", "green", "yellow", "purple", "pink", "brown", "black", "orange") // Can add more colors as required - var/current_colour_index = 1 + var/static/list/color_list = list("red", "blue", "green", "yellow", "purple", "pink", "brown", "black", "orange") // Can add more colors as required + var/current_color_index = 1 var/owner_name /obj/item/tool/pen/fountain/pickup(mob/user, silent) @@ -305,9 +309,9 @@ /obj/item/tool/pen/fountain/attack_self(mob/living/carbon/human/user) if(on) - current_colour_index = (current_colour_index % length(colour_list)) + 1 - pen_colour = colour_list[current_colour_index] - balloon_alert(user,"you twist the pen and change the ink color to [pen_colour].") + current_color_index = (current_color_index % length(color_list)) + 1 + pen_color = color_list[current_color_index] + balloon_alert(user,"you twist the pen and change the ink color to [pen_color].") if(clicky) playsound(user.loc, 'sound/items/pen_click_on.ogg', 100, 1, 5) update_pen_state() @@ -415,6 +419,10 @@ name = "\improper DENIED rubber stamp" icon_state = "stamp-deny" +/obj/item/tool/stamp/approved + name = "\improper APPROVED rubber stamp" + icon_state = "stamp-approve" + /obj/item/tool/stamp/clown name = "clown's rubber stamp" icon_state = "stamp-clown" diff --git a/code/game/objects/items/tools/shovel_tools.dm b/code/game/objects/items/tools/shovel_tools.dm index 008b37705f..b4aa41c584 100644 --- a/code/game/objects/items/tools/shovel_tools.dm +++ b/code/game/objects/items/tools/shovel_tools.dm @@ -26,7 +26,7 @@ /obj/item/tool/shovel/update_icon() var/image/I = image(icon,src,dirt_overlay) - switch(dirt_type) // We can actually shape the color for what enviroment we dig up our dirt in. + switch(dirt_type) // We can actually shape the color for what environment we dig up our dirt in. if(DIRT_TYPE_GROUND) I.color = "#512A09" if(DIRT_TYPE_MARS) I.color = "#FF5500" if(DIRT_TYPE_SNOW) I.color = "#EBEBEB" @@ -151,7 +151,7 @@ /obj/item/tool/shovel/proc/dump_shovel(atom/target, mob/user) var/turf/T = target - to_chat(user, SPAN_NOTICE("you dump the [dirt_type_to_name(dirt_type)]!")) + to_chat(user, SPAN_NOTICE("You dump the [dirt_type_to_name(dirt_type)]!")) playsound(user.loc, "rustle", 30, 1, 6) if(dirt_type == DIRT_TYPE_SNOW) var/obj/item/stack/snow/S = locate() in T diff --git a/code/game/objects/items/tools/surgery_tools.dm b/code/game/objects/items/tools/surgery_tools.dm index 8582e08111..0c5b3925ca 100644 --- a/code/game/objects/items/tools/surgery_tools.dm +++ b/code/game/objects/items/tools/surgery_tools.dm @@ -96,6 +96,7 @@ force = 10 sharp = IS_SHARP_ITEM_ACCURATE edge = 1 + demolition_mod = 0.1 w_class = SIZE_TINY throwforce = 5 flags_item = CAN_DIG_SHRAPNEL @@ -195,16 +196,100 @@ */ /obj/item/tool/surgery/bonegel - name = "bone gel" + name = "bottle of bone gel" + desc = "A container for bone gel that often needs to be refilled from a specialized machine." + desc_lore = "Bone gel is a biological synthetic bone-analogue with the consistency of clay. It is capable of fixing hairline fractures and complex fractures alike. Bone gel should not be used to fix missing bone, as it does not replace the body's bone marrow. Overuse in a short period may cause acute immunodeficiency or anemia." icon_state = "bone-gel" - force = 0 - throwforce = 1 w_class = SIZE_SMALL matter = list("plastic" = 7500) + ///base icon state for update_icon() to reference, fixes bonegel/empty + var/base_icon_state = "bone-gel" + ///percent of gel remaining in container + var/remaining_gel = 100 + ///If gel is used when doing bone surgery + var/unlimited_gel = FALSE + ///Time it takes per 10% of gel refilled + var/time_per_refill = 1 SECONDS + ///if the bone gel is actively being refilled + var/refilling = FALSE + + ///How much bone gel is needed to fix a fracture + var/fracture_fix_cost = 5 + ///How much bone gel is needed to mend bones + var/mend_bones_fix_cost = 5 + +/obj/item/tool/surgery/bonegel/update_icon() + . = ..() + if(remaining_gel >= 100) + icon_state = base_icon_state + return + if(remaining_gel > 50) + icon_state = "[base_icon_state]_75" + return + if(remaining_gel > 25) + icon_state = "[base_icon_state]_50" + return + if(remaining_gel > 0) + icon_state = "[base_icon_state]_25" + return + icon_state = "[base_icon_state]_0" + +/obj/item/tool/surgery/bonegel/get_examine_text(mob/user) + . = ..() + if(unlimited_gel) //Only show how much gel is left if it actually uses bone gel + return + . += "A volume reader on the side tells you there is still [remaining_gel]% of [src] is remaining." + . += "[src] can be refilled from a osteomimetic lattice fabricator." + + if(!skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_DOCTOR)) //Know how much you will be using if you can use it + return + . += SPAN_NOTICE("You would need to use [fracture_fix_cost]% of the bone gel to repair a fracture.") + . += SPAN_NOTICE("You would need to use [mend_bones_fix_cost]% of the bone gel to mend bones.") + +/obj/item/tool/surgery/bonegel/proc/refill_gel(obj/refilling_obj, mob/user) + if(unlimited_gel) + to_chat(user, SPAN_NOTICE("[refilling_obj] refuses to fill [src].")) + return + if(remaining_gel >= 100) + to_chat(user, SPAN_NOTICE("[src] cannot be filled with any more bone gel.")) + return + + if(refilling) + to_chat(user, SPAN_NOTICE("You are already refilling [src] from [refilling_obj].")) + return + refilling = TRUE + + while(remaining_gel < 100) + if(!do_after(user, time_per_refill, INTERRUPT_ALL, BUSY_ICON_FRIENDLY, refilling_obj)) + break + remaining_gel = clamp(remaining_gel + 10, 0, 100) + update_icon() + to_chat(user, SPAN_NOTICE("[refilling_obj] chimes, and displays \"[remaining_gel]% filled\".")) + + refilling = FALSE + playsound(refilling_obj, "sound/machines/ping.ogg", 10) + to_chat(user, SPAN_NOTICE("You remove [src] from [refilling_obj].")) + +/obj/item/tool/surgery/bonegel/proc/use_gel(gel_cost) + if(unlimited_gel) + return TRUE + + if(remaining_gel < gel_cost) + return FALSE + remaining_gel -= gel_cost + update_icon() + return TRUE + +/obj/item/tool/surgery/bonegel/empty + remaining_gel = 0 + icon_state = "bone-gel_0" /obj/item/tool/surgery/bonegel/predatorbonegel name = "gel gun" + desc = "Inside is a liquid that is similar in effect to bone gel, but requires much smaller quantities, allowing near infinite use from a single capsule." + base_icon_state = "predator_bone-gel" icon_state = "predator_bone-gel" + unlimited_gel = TRUE /* * Fix-o-Vein @@ -235,7 +320,7 @@ /obj/item/tool/surgery/surgical_line name = "\proper surgical line" desc = "A roll of military-grade surgical line, able to seamlessly sew up any wound. Also works as a robust fishing line for maritime deployments." - icon_state = "line" + icon_state = "line_brute" force = 0 throwforce = 1 w_class = SIZE_SMALL @@ -253,10 +338,7 @@ name = "Synth-Graft" desc = "An applicator for synthetic skin field grafts. The stuff reeks, itches like the dickens, hurts going on, and the color is \ a perfectly averaged multiethnic tone that doesn't blend with anyone's complexion. But at least you don't have to stay in sickbay." - /// Placeholder. - icon_state = "line" - /// Placeholder, to distinguish from surgical line. - color = "yellow" + icon_state = "line_burn" force = 0 throwforce = 1 w_class = SIZE_SMALL @@ -450,8 +532,8 @@ t. optimisticdude to_chat(usr, "This is difficult, you probably shouldn't move") return to_chat(usr, "You've cut through the outer layers of Chitin") - new /obj/item/XenoBio/Chitin(T.loc) //This will be 1-3 Chitin eventually (depending on tier) - new /obj/item/XenoBio/Chitin(T.loc) //This will be 1-3 Chitin eventually (depending on tier) + new /obj/item/oldresearch/Chitin(T.loc) //This will be 1-3 Chitin eventually (depending on tier) + new /obj/item/oldresearch/Chitin(T.loc) //This will be 1-3 Chitin eventually (depending on tier) T.butchery_progress++ active = 0 if(1) @@ -460,7 +542,7 @@ t. optimisticdude to_chat(usr, "This is difficult, you probably shouldn't move.") return to_chat(usr, "You've cut into the chest cavity and retreived a sample of blood.") - new /obj/item/XenoBio/Blood(T.loc)//This will be a sample of blood eventually + new /obj/item/oldresearch/Blood(T.loc)//This will be a sample of blood eventually T.butchery_progress++ active = 0 if(2) @@ -470,7 +552,7 @@ t. optimisticdude return //to_chat(usr, "You've cut out an intact organ.") to_chat(usr, "You've cut out some Biomass...") - new /obj/item/XenoBio/Resin(T.loc)//This will be an organ eventually, based on the caste. + new /obj/item/oldresearch/Resin(T.loc)//This will be an organ eventually, based on the caste. T.butchery_progress++ active = 0 if(3) @@ -480,6 +562,6 @@ t. optimisticdude return to_chat(usr, "You scrape out the remaining biomass.") active = 0 - new /obj/item/XenoBio/Resin(T.loc) + new /obj/item/oldresearch/Resin(T.loc) new /obj/effect/decal/remains/xeno(T.loc) qdel(T) diff --git a/code/game/objects/items/toys/cards.dm b/code/game/objects/items/toys/cards.dm index 2debd83f9b..89aea51bb8 100644 --- a/code/game/objects/items/toys/cards.dm +++ b/code/game/objects/items/toys/cards.dm @@ -30,6 +30,10 @@ . = ..() populate_deck() +/obj/item/toy/deck/Destroy(force) + . = ..() + QDEL_NULL_LIST(cards) + /obj/item/toy/deck/get_examine_text(mob/user) . = ..() . += SPAN_NOTICE("There are [length(cards)] cards remaining in the deck.") @@ -75,6 +79,7 @@ var/obj/item/toy/handcard/H = O for(var/datum/playing_card/P as anything in H.cards) cards += P + H.cards -= P update_icon() qdel(O) user.visible_message(SPAN_NOTICE("[user] places their cards on the bottom of \the [src]."), SPAN_NOTICE("You place your cards on the bottom of the deck.")) @@ -261,6 +266,7 @@ icon = 'icons/obj/items/playing_cards.dmi' icon_state = "empty" w_class = SIZE_TINY + flags_obj = parent_type::flags_obj|OBJ_IS_HELMET_GARB var/concealed = FALSE var/pile_state = FALSE @@ -271,6 +277,10 @@ if(!concealed) . += " ([length(cards)] card\s)" +/obj/item/toy/handcard/Destroy(force) + . = ..() + QDEL_NULL_LIST(cards) + /obj/item/toy/handcard/aceofspades icon_state = "spades_ace" desc = "An Ace of Spades" @@ -315,6 +325,9 @@ //fuck any qsorts and merge sorts. This needs to be brutally easy var/cards_length = length(cards) + if(cards_length >= 200) + to_chat(usr, SPAN_WARNING("Your hand is too big to sort. Remove some cards.")) + return for(var/i = 1 to cards_length) for(var/k = 2 to cards_length) if(cards[i].sort_index > cards[k].sort_index) @@ -331,6 +344,7 @@ var/cards_length = length(H.cards) for(var/datum/playing_card/P in H.cards) cards += P + H.cards -= P qdel(O) if(pile_state) if(concealed) @@ -339,6 +353,9 @@ user.visible_message(SPAN_NOTICE("\The [user] adds [cards_length > 1 ? "their hand" : "[cards[length(cards)].name]"] to \the [src]."), SPAN_NOTICE("You add [cards_length > 1 ? "your hand" : "[cards[length(cards)].name]"] to \the [src].")) else if(loc != user) + if(isstorage(loc)) + var/obj/item/storage/storage = loc + storage.remove_from_storage(src) user.put_in_hands(src) update_icon() return @@ -390,6 +407,12 @@ /obj/item/toy/handcard/MouseDrop(atom/over) if(usr != over || !Adjacent(usr)) return + if(ismob(loc)) + return + + if(isstorage(loc)) + var/obj/item/storage/storage = loc + storage.remove_from_storage(src) usr.put_in_hands(src) /obj/item/toy/handcard/get_examine_text(mob/user) @@ -423,6 +446,12 @@ name = "a playing card" desc = "A playing card." + if(length(cards) >= 200) + // BYOND will flat out choke when using thousands of cards for some unknown reason, + // possibly due to the transformed overlay stacking below. Nobody's gonna see the + // difference past 40 or so anyway. + return + overlays.Cut() if(!cards_length) @@ -434,7 +463,7 @@ overlays += I return - var/offset = Floor(80/cards_length) + var/offset = floor(80/cards_length) var/matrix/M = matrix() if(direction) @@ -454,13 +483,13 @@ var/image/I = new(src.icon, (concealed ? P.back_icon : P.card_icon)) switch(direction) if(SOUTH) - I.pixel_x = 8 - Floor(offset*i/4) + I.pixel_x = 8 - floor(offset*i/4) if(WEST) - I.pixel_y = -6 + Floor(offset*i/4) + I.pixel_y = -6 + floor(offset*i/4) if(EAST) - I.pixel_y = 8 - Floor(offset*i/4) + I.pixel_y = 8 - floor(offset*i/4) else - I.pixel_x = -7 + Floor(offset*i/4) + I.pixel_x = -7 + floor(offset*i/4) I.transform = M overlays += I i++ diff --git a/code/game/objects/items/toys/crayons.dm b/code/game/objects/items/toys/crayons.dm index 5bd4d05f31..636f1a50fc 100644 --- a/code/game/objects/items/toys/crayons.dm +++ b/code/game/objects/items/toys/crayons.dm @@ -1,70 +1,126 @@ /obj/item/toy/crayon/red icon_state = "crayonred" crayon_color = "#DA0000" - shadeColour = "#810C0C" - colourName = "red" + shade_color = "#810C0C" + colorName = "red" /obj/item/toy/crayon/orange icon_state = "crayonorange" crayon_color = "#FF9300" - shadeColour = "#A55403" - colourName = "orange" + shade_color = "#A55403" + colorName = "orange" /obj/item/toy/crayon/yellow icon_state = "crayonyellow" crayon_color = "#FFF200" - shadeColour = "#886422" - colourName = "yellow" + shade_color = "#886422" + colorName = "yellow" /obj/item/toy/crayon/green icon_state = "crayongreen" crayon_color = "#A8E61D" - shadeColour = "#61840F" - colourName = "green" + shade_color = "#61840F" + colorName = "green" /obj/item/toy/crayon/blue icon_state = "crayonblue" crayon_color = "#00B7EF" - shadeColour = "#0082A8" - colourName = "blue" + shade_color = "#0082A8" + colorName = "blue" /obj/item/toy/crayon/purple icon_state = "crayonpurple" crayon_color = "#DA00FF" - shadeColour = "#810CFF" - colourName = "purple" + shade_color = "#810CFF" + colorName = "purple" /obj/item/toy/crayon/mime icon_state = "crayonmime" desc = "A very sad-looking crayon." - crayon_color = "#FFFFFF" - shadeColour = "#000000" - colourName = "mime" + crayon_color = COLOR_WHITE + shade_color = COLOR_BLACK + colorName = "mime" uses = 0 /obj/item/toy/crayon/mime/attack_self(mob/living/user) //inversion ..() - if(crayon_color != "#FFFFFF" && shadeColour != "#000000") - crayon_color = "#FFFFFF" - shadeColour = "#000000" + if(crayon_color != COLOR_WHITE && shade_color != COLOR_BLACK) + crayon_color = COLOR_WHITE + shade_color = COLOR_BLACK to_chat(user, "You will now draw in white and black with this crayon.") else - crayon_color = "#000000" - shadeColour = "#FFFFFF" + crayon_color = COLOR_BLACK + shade_color = COLOR_WHITE to_chat(user, "You will now draw in black and white with this crayon.") /obj/item/toy/crayon/rainbow icon_state = "crayonrainbow" crayon_color = "#FFF000" - shadeColour = "#000FFF" - colourName = "rainbow" + shade_color = "#000FFF" + colorName = "rainbow" + uses = 0 + +/obj/item/toy/crayon/pride/lesbian + icon_state = "crayonlesbian" + crayon_color = "#bd1471" + shade_color = "#d46b15" + colorName = "lesbian" + uses = 0 + +/obj/item/toy/crayon/pride/gay + icon_state = "crayongay" + crayon_color = "#33cc9e" + shade_color = "#7f1fa5" + colorName = "gay" + uses = 0 + +/obj/item/toy/crayon/pride/bi + icon_state = "crayonbi" + crayon_color = "#c01b6e" + shade_color = "#281dc5" + colorName = "bisexual" + uses = 0 + +/obj/item/toy/crayon/pride/pan + icon_state = "crayonpan" + crayon_color = "#da1778" + shade_color = "#229bff" + colorName = "pansexual" + uses = 0 + +/obj/item/toy/crayon/pride/ace + icon_state = "crayonace" + crayon_color = "#272727" + shade_color = "#570c3e" + colorName = "asexual" + uses = 0 + +/obj/item/toy/crayon/pride/trans + icon_state = "crayontrans" + crayon_color = "#f57ecd" + shade_color = "#4bbdeb" + colorName = "transgender" + uses = 0 + +/obj/item/toy/crayon/pride/enby + icon_state = "crayonenby" + crayon_color = "#272727" + shade_color = "#e9cf3a" + colorName = "nonbinary" + uses = 0 + +/obj/item/toy/crayon/pride/fluid + icon_state = "crayonfluid" + crayon_color = "#b64791" + shade_color = "#000FFF" + colorName = "genderfluid" uses = 0 /obj/item/toy/crayon/rainbow/attack_self(mob/living/user) ..() crayon_color = input(user, "Please select the main color.", "Crayon color") as color - shadeColour = input(user, "Please select the shade color.", "Crayon color") as color + shade_color = input(user, "Please select the shade color.", "Crayon color") as color /obj/item/toy/crayon/afterattack(atom/target, mob/user, proximity) if(!proximity) @@ -73,14 +129,14 @@ var/drawtype = tgui_input_list(usr, "Choose what you'd like to draw.", "Crayon scribbles", list("graffiti","rune","letter")) switch(drawtype) if("letter") - drawtype = tgui_input_list(usr, "Choose the letter.", "Crayon scribbles", alphabet_lowercase) + drawtype = tgui_input_list(usr, "Choose the letter.", "Crayon scribbles", GLOB.alphabet_lowercase) to_chat(user, "You start drawing a letter on the [target.name].") if("graffiti") to_chat(user, "You start drawing graffiti on the [target.name].") if("rune") to_chat(user, "You start drawing a rune on the [target.name].") if(instant || do_after(user, 50, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - new /obj/effect/decal/cleanable/crayon(target,crayon_color,shadeColour,drawtype) + new /obj/effect/decal/cleanable/crayon(target,crayon_color,shade_color,drawtype) to_chat(user, "You finish drawing.") target.add_fingerprint(user) // Adds their fingerprints to the floor the crayon is drawn on. if(uses) diff --git a/code/game/objects/items/toys/toy_weapons.dm b/code/game/objects/items/toys/toy_weapons.dm index 80f94cab8e..ce32cfdb67 100644 --- a/code/game/objects/items/toys/toy_weapons.dm +++ b/code/game/objects/items/toys/toy_weapons.dm @@ -130,7 +130,7 @@ for(var/mob/living/M in D.loc) if(!istype(M,/mob/living)) continue if(M == user) continue - for(var/mob/O in viewers(world_view_size, D)) + for(var/mob/O in viewers(GLOB.world_view_size, D)) O.show_message(SPAN_DANGER("[M] was hit by the foam dart!"), SHOW_MESSAGE_VISIBLE) new /obj/item/toy/crossbow_ammo(M.loc) qdel(D) @@ -152,7 +152,7 @@ return else if (bullets == 0) user.apply_effect(5, WEAKEN) - for(var/mob/O in viewers(world_view_size, user)) + for(var/mob/O in viewers(GLOB.world_view_size, user)) O.show_message(SPAN_DANGER("[user] realized they were out of ammo and starting scrounging for some!"), SHOW_MESSAGE_VISIBLE) diff --git a/code/game/objects/items/toys/toys.dm b/code/game/objects/items/toys/toys.dm index f9b7648a1d..b92b0f880a 100644 --- a/code/game/objects/items/toys/toys.dm +++ b/code/game/objects/items/toys/toys.dm @@ -12,7 +12,6 @@ * Other things */ - //recreational items /obj/item/toy @@ -23,7 +22,6 @@ force = 0 black_market_value = 5 - /* * Balloons */ @@ -44,7 +42,7 @@ if(!proximity) return if (istype(A, /obj/structure/reagent_dispensers/watertank) && get_dist(src,A) <= 1) A.reagents.trans_to(src, 10) - to_chat(user, SPAN_NOTICE(" You fill the balloon with the contents of [A].")) + to_chat(user, SPAN_NOTICE("You fill the balloon with the contents of [A].")) src.desc = "A translucent balloon with some form of liquid sloshing around in it." src.update_icon() return @@ -53,22 +51,22 @@ if(istype(O, /obj/item/reagent_container/glass)) if(O.reagents) if(O.reagents.total_volume < 1) - to_chat(user, "The [O] is empty.") + to_chat(user, SPAN_WARNING("[O] is empty.")) else if(O.reagents.total_volume >= 1) if(O.reagents.has_reagent("pacid", 1)) - to_chat(user, "The acid chews through the balloon!") + to_chat(user, SPAN_WARNING("The acid chews through the balloon!")) O.reagents.reaction(user) qdel(src) else src.desc = "A translucent balloon with some form of liquid sloshing around in it." - to_chat(user, SPAN_NOTICE(" You fill the balloon with the contents of [O].")) + to_chat(user, SPAN_NOTICE("You fill the balloon with the contents of [O].")) O.reagents.trans_to(src, 10) src.update_icon() return /obj/item/toy/balloon/launch_impact(atom/hit_atom) if(src.reagents.total_volume >= 1) - src.visible_message(SPAN_DANGER("The [src] bursts!"),"You hear a pop and a splash.") + src.visible_message(SPAN_DANGER("[src] bursts!"),"You hear a pop and a splash.") src.reagents.reaction(get_turf(hit_atom)) for(var/atom/A in get_turf(hit_atom)) src.reagents.reaction(A) @@ -118,24 +116,24 @@ icon_state = "singularity_s1" - /* * Crayons */ /obj/item/toy/crayon name = "crayon" - desc = "A colourful crayon. Please refrain from eating it or putting it in your nose." + desc = "A colorful crayon. Please refrain from eating it or putting it in your nose." icon = 'icons/obj/items/crayons.dmi' icon_state = "crayonred" w_class = SIZE_TINY - attack_verb = list("attacked", "coloured") + attack_verb = list("attacked", "colored") black_market_value = 5 - var/crayon_color = "#FF0000" //RGB - var/shadeColour = "#220000" //RGB - var/uses = 30 //0 for unlimited uses + var/crayon_color = COLOR_RED + var/shade_color = "#220000" + /// 0 for unlimited uses + var/uses = 30 var/instant = 0 - var/colourName = "red" //for updateIcon purposes + var/colorName = "red" //for updateIcon purposes /* * Snap pops @@ -237,7 +235,6 @@ . += "[reagents.total_volume] units of water left!" - /* * Mech prizes */ @@ -404,6 +401,14 @@ src.add_fingerprint(user) addtimer(VARSET_CALLBACK(src, spam_flag, FALSE), 2 SECONDS) +// rubber duck +/obj/item/toy/bikehorn/rubberducky + name = "rubber ducky" + desc = "Rubber ducky you're so fine, you make bathtime lots of fuuun. Rubber ducky I'm awfully fooooond of yooooouuuu~" //thanks doohl + icon = 'icons/obj/structures/props/watercloset.dmi' + icon_state = "rubberducky" + item_state = "rubberducky" + /obj/item/computer3_part name = "computer part" desc = "Holy jesus you donnit now" diff --git a/code/game/objects/items/toys/trading_cards.dm b/code/game/objects/items/toys/trading_cards.dm new file mode 100644 index 0000000000..9fb83cd1e5 --- /dev/null +++ b/code/game/objects/items/toys/trading_cards.dm @@ -0,0 +1,61 @@ +/obj/item/toy/trading_card + name = "WeyYu Military Trading Card" + icon = 'icons/obj/items/playing_cards.dmi' + icon_state = "trading_red" + w_class = SIZE_TINY + + var/trading_card_number = "1" + var/picture_description = "barrel charger" + var/collection_color + var/is_front = FALSE + var/back_name = "Red WeyYu Military Trading Card" + var/front_name = "Red WeyYu Military Trading Card Number One" + var/back_description = "The back of a red trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!" + var/front_description = "A red trading card with a picture of the United Americas flag emblazoned on it. It is number one out of the five red cards." + var/back_icon_state = "trading_red" + var/front_icon_state = "trading_red_one" + var/picture_descriptions = list("5" = list("red" = "a fanatical colonial seditionist", "green" = "Almirante Joelle De La Cruz (the United Americas Secretary of Defense)", "blue" = "the United Americas flag"), + "4" = list("red" = "a UPPA soldier", "green" = "Marechal-do-ar Enzo Gabriel Lurdes (the Chief of Naval Operations of the Latin American Colonial Navy)", "blue" = "the Union of Progressive Peoples flag"), + "3" = list("red" = "a UPPA minigunner", "green" = "Generale d'armee Felix Couture (the Commandant of the Canadian Colonial Armed Forces)", "blue" = "the Three World Empire flag"), + "2" = list("red" = "a UPPA officer", "green" = "General Diego Dellamarggio (the Commandant of the United States Colonial Marines)", "blue" = "the Weyland Yutani logo"), + "1" = list("red" = "a Holy Order of the HEFA cultist", "green" = "General Delyla S. Vaughn (the Assistant Commandant of the United States Colonial Marines)", "blue" = "the Independent Core System Colonies logo",) + ) + +/obj/item/toy/trading_card/Initialize() + . = ..() + + if(istype(loc, /obj/item/storage/fancy/trading_card)) + var/obj/item/storage/fancy/trading_card/packet = loc + collection_color = packet.collection_color + + if(!collection_color) + collection_color = pick("red", "green", "blue") + trading_card_number = pick_weight(list("5" = 25, "4" = 20, "3" = 15, "2" = 10, "1" = 5)) + picture_description = picture_descriptions[trading_card_number][collection_color] + + name = "[capitalize(collection_color)] WeyYu Military Trading Card" + back_name = "[capitalize(collection_color)] WeyYu Military Trading Card" + front_name = "[capitalize(collection_color)] WeyYu Military Trading Card #[trading_card_number]" + + desc = "The back of a [collection_color] trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!" + back_description = "The back of a [collection_color] trading card with the text: WeyYu Military Trading Cards! GOTTA COLLECT EM ALL!" + front_description = "A [collection_color] trading card with a picture of [picture_description] emblazoned on it. It is #[trading_card_number] out of the five [collection_color] cards." + + icon_state = "trading_[collection_color]" + back_icon_state = "trading_[collection_color]" + front_icon_state = "trading_[collection_color]_[trading_card_number]" + +/obj/item/toy/trading_card/attack_self(mob/user) + if(loc == user) + if(is_front) + name = back_name + desc = back_description + icon_state = back_icon_state + is_front = FALSE + else + to_chat(user, SPAN_NOTICE("You reveal the card. It has a picture of [picture_description] on it!")) + name = front_name + desc = front_description + icon_state = front_icon_state + is_front = TRUE + return ..() diff --git a/code/game/objects/items/weapons/blades.dm b/code/game/objects/items/weapons/blades.dm index 2f3410238a..b475de36a4 100644 --- a/code/game/objects/items/weapons/blades.dm +++ b/code/game/objects/items/weapons/blades.dm @@ -3,7 +3,7 @@ desc = "A dusty sword commonly seen in historical museums. Where you got this is a mystery, for sure. Only a mercenary would be nuts enough to carry one of these. Sharpened to deal massive damage." icon_state = "mercsword" item_state = "machete" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_equip_slot = SLOT_WAIST force = MELEE_FORCE_STRONG throwforce = MELEE_FORCE_WEAK @@ -120,7 +120,7 @@ icon_state = "throwing_knife" item_state = "combat_knife" desc = "A military knife designed to be thrown at the enemy. Much quieter than a firearm, but requires a steady hand to be used optimally, although you should probably just use a gun instead." - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT sharp = IS_SHARP_ITEM_ACCURATE force = MELEE_FORCE_TIER_1 w_class = SIZE_SMALL @@ -131,6 +131,7 @@ attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") flags_equip_slot = SLOT_STORE|SLOT_FACE flags_armor_protection = SLOT_FACE + flags_item = CAN_DIG_SHRAPNEL /obj/item/weapon/unathiknife name = "duelling knife" @@ -143,17 +144,6 @@ throwforce = MELEE_FORCE_STRONG edge = 1 - -/obj/item/weapon/pizza_cutter - name = "\improper PIZZA TIME" - icon = 'icons/obj/items/weapons/weapons.dmi' - icon_state = "pizza_cutter" - item_state = "pizza_cutter" - desc = "Before you is a holy relic of a bygone era when the great Pizza Lords reigned supreme. You know either that or it's just a big damn pizza cutter." - sharp = IS_SHARP_ITEM_ACCURATE - force = MELEE_FORCE_VERY_STRONG - edge = 1 - ///For digging shrapnel out of OTHER people, not yourself. Triggered by human/attackby() so target is definitely human. User might not be. /obj/item/proc/dig_out_shrapnel_check(mob/living/carbon/human/target, mob/living/carbon/human/user) if(user.a_intent == INTENT_HELP && (target == user || skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC))) //Squad medics and above, or yourself @@ -219,6 +209,8 @@ else INVOKE_ASYNC(embedded_human, TYPE_PROC_REF(/mob, emote), "me", 1, pick("winces.", "grimaces.", "flinches.")) + SEND_SIGNAL(embedded_human, COMSIG_HUMAN_SHRAPNEL_REMOVED) + else to_chat(user, SPAN_NOTICE("You couldn't find any shrapnel.")) diff --git a/code/game/objects/items/weapons/energy.dm b/code/game/objects/items/weapons/energy.dm index 75668cebd5..c50fb9ea4e 100644 --- a/code/game/objects/items/weapons/energy.dm +++ b/code/game/objects/items/weapons/energy.dm @@ -1,6 +1,6 @@ /obj/item/weapon/energy var/active = 0 - flags_atom = FPRINT|NOBLOODY + flags_atom = FPRINT|QUICK_DRAWABLE|NOBLOODY /obj/item/weapon/energy/axe name = "energy axe" @@ -11,7 +11,7 @@ throw_speed = SPEED_FAST throw_range = 5 w_class = SIZE_MEDIUM - flags_atom = FPRINT|CONDUCT|NOBLOODY + flags_atom = FPRINT|CONDUCT|QUICK_DRAWABLE|NOBLOODY flags_item = NOSHIELD attack_verb = list("attacked", "chopped", "cleaved", "torn", "cut") @@ -47,7 +47,7 @@ throw_speed = SPEED_FAST throw_range = 5 w_class = SIZE_SMALL - flags_atom = FPRINT|NOBLOODY + flags_atom = FPRINT|QUICK_DRAWABLE|NOBLOODY flags_item = NOSHIELD attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") diff --git a/code/game/objects/items/weapons/misc.dm b/code/game/objects/items/weapons/misc.dm index d46619e581..c80da310fe 100644 --- a/code/game/objects/items/weapons/misc.dm +++ b/code/game/objects/items/weapons/misc.dm @@ -3,7 +3,7 @@ desc = "A tool used by great men to placate the frothing masses." icon_state = "chain" item_state = "chain" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_equip_slot = SLOT_WAIST force = MELEE_FORCE_WEAK throwforce = MELEE_FORCE_WEAK diff --git a/code/game/objects/items/weapons/shields.dm b/code/game/objects/items/weapons/shields.dm index ccf3224d52..931a11a4d9 100644 --- a/code/game/objects/items/weapons/shields.dm +++ b/code/game/objects/items/weapons/shields.dm @@ -89,7 +89,7 @@ /obj/item/weapon/shield/riot/attackby(obj/item/W as obj, mob/user as mob) if(cooldown < world.time - 25) - if(istype(W, /obj/item/weapon/baton) || istype(W, /obj/item/weapon/sword) || istype(W, /obj/item/weapon/baseballbat) || istype(W, /obj/item/weapon/twohanded/fireaxe) || istype(W, /obj/item/weapon/chainofcommand)) + if(istype(W, /obj/item/weapon/baton) || istype(W, /obj/item/weapon/sword) || istype(W, /obj/item/weapon/telebaton) || istype(W, /obj/item/weapon/baseballbat) || istype(W, /obj/item/weapon/classic_baton) || istype(W, /obj/item/weapon/twohanded/fireaxe) || istype(W, /obj/item/weapon/chainofcommand)) user.visible_message(SPAN_WARNING("[user] bashes [src] with [W]!")) playsound(user.loc, 'sound/effects/shieldbash.ogg', 25, 1) cooldown = world.time @@ -101,7 +101,7 @@ desc = "A shield capable of stopping most projectile and melee attacks. It can be retracted, expanded, and stored anywhere." icon = 'icons/obj/items/weapons/weapons.dmi' icon_state = "eshield0" // eshield1 for expanded - flags_atom = FPRINT|CONDUCT|NOBLOODY + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT|NOBLOODY force = 3 passive_block = 50 // Shield activation takes over functionality, and no slowdown. readied_block = 50 diff --git a/code/game/objects/items/weapons/stunbaton.dm b/code/game/objects/items/weapons/stunbaton.dm index 82fdf30f0f..9c1f065bcf 100644 --- a/code/game/objects/items/weapons/stunbaton.dm +++ b/code/game/objects/items/weapons/stunbaton.dm @@ -5,15 +5,15 @@ item_state = "baton" flags_equip_slot = SLOT_WAIST force = 15 - sharp = 0 - edge = 0 throwforce = 7 + sharp = FALSE + edge = FALSE w_class = SIZE_MEDIUM attack_verb = list("beaten") req_one_access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_ARMORY, ACCESS_MARINE_SENIOR, ACCESS_WY_GENERAL, ACCESS_WY_SECURITY, ACCESS_CIVILIAN_BRIG) var/stunforce = 50 - var/status = 0 //whether the thing is on or not + var/status = FALSE //whether the thing is on or not var/obj/item/cell/bcell = null var/hitcost = 1000 //oh god why do power cells carry so much charge? We probably need to make a distinction between "industrial" sized power cells for APCs and power cells for everything else. var/has_user_lock = TRUE //whether the baton prevents people without correct access from using it. @@ -54,41 +54,10 @@ /obj/item/weapon/baton/get_examine_text(mob/user) . = ..() if(bcell) - . += SPAN_NOTICE("The baton is [round(bcell.percent())]% charged.") + . += SPAN_NOTICE("The baton is [floor(bcell.percent())]% charged.") else . += SPAN_WARNING("The baton does not have a power source installed.") -/obj/item/weapon/baton/attack_hand(mob/user) - if(check_user_auth(user)) - ..() - - -/obj/item/weapon/baton/equipped(mob/user, slot) - ..() - check_user_auth(user) - - -//checks if the mob touching the baton has proper access -/obj/item/weapon/baton/proc/check_user_auth(mob/user) - if(!has_user_lock) - return TRUE - var/mob/living/carbon/human/H = user - if(istype(H)) - var/obj/item/card/id/I = H.wear_id - if(!istype(I) || !check_access(I) && status) - var/datum/effect_system/spark_spread/s = new - s.set_up(5, 1, src.loc) - H.visible_message(SPAN_NOTICE("[src] beeps as [H] picks it up"), SPAN_DANGER("WARNING: Unauthorized user detected. Denying access...")) - H.visible_message(SPAN_WARNING("[src] beeps and sends a shock through [H]'s body!")) - H.emote("pain") - s.start() - deductcharge(hitcost) - add_fingerprint(user) - return FALSE - return TRUE -/obj/item/weapon/baton/pull_response(mob/puller) - return check_user_auth(puller) - /obj/item/weapon/baton/attackby(obj/item/W, mob/user) if(istype(W, /obj/item/cell)) @@ -106,7 +75,7 @@ bcell.update_icon() bcell.forceMove(get_turf(src.loc)) bcell = null - to_chat(user, SPAN_NOTICE("You remove the cell from the [src].")) + to_chat(user, SPAN_NOTICE("You remove the cell from [src].")) status = 0 update_icon() return @@ -132,17 +101,20 @@ add_fingerprint(user) -/obj/item/weapon/baton/attack(mob/M, mob/user) - if(has_user_lock && !skillcheck(user, SKILL_POLICE, SKILL_POLICE_SKILLED)) - to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) - return - - if(isrobot(M)) - ..() - return - - var/stun = stunforce - var/mob/living/L = M +/obj/item/weapon/baton/attack(mob/target, mob/user) + var/mob/living/carbon/human/real_user = user + var/mob/living/carbon/human/human_target = target + if(has_user_lock && !skillcheck(real_user, SKILL_POLICE, SKILL_POLICE_SKILLED)) + if(prob(70) && status) + to_chat(real_user, SPAN_WARNING("You hit yourself with the [src] during the struggle...")) + real_user.drop_held_item() + real_user.apply_effect(1,STUN) + human_target = real_user + if(prob(20) && !status) //a relatively reliable melee weapon when turned off. + to_chat(real_user, SPAN_WARNING("You grab the [src] incorrectly twisting your hand in the process.")) + real_user.drop_held_item() + real_user.apply_effect(1,STUN) + real_user.apply_damage(force, BRUTE, pick("l_hand","r_hand"), no_limb_loss = TRUE) var/target_zone = check_zone(user.zone_selected) if(user.a_intent == INTENT_HARM) @@ -154,40 +126,42 @@ else //copied from human_defense.dm - human defence code should really be refactored some time. - if (ishuman(L)) + if (ishuman(human_target)) if(!target_zone) //shouldn't ever happen - L.visible_message(SPAN_DANGER("[user] misses [L] with \the [src]!")) + human_target.visible_message(SPAN_DANGER("[user] misses [human_target] with \the [src]!")) return FALSE - var/mob/living/carbon/human/H = L + var/mob/living/carbon/human/H = human_target var/obj/limb/affecting = H.get_limb(target_zone) if (affecting) if(!status) - L.visible_message(SPAN_WARNING("[L] has been prodded in the [affecting.display_name] with [src] by [user]. Luckily it was off.")) + human_target.visible_message(SPAN_WARNING("[human_target] has been prodded in the [affecting.display_name] with [src] by [user]. Luckily it was off.")) return TRUE else - H.visible_message(SPAN_DANGER("[L] has been prodded in the [affecting.display_name] with [src] by [user]!")) + H.visible_message(SPAN_DANGER("[human_target] has been prodded in the [affecting.display_name] with [src] by [user]!")) else if(!status) - L.visible_message(SPAN_WARNING("[L] has been prodded with [src] by [user]. Luckily it was off.")) + human_target.visible_message(SPAN_WARNING("[human_target] has been prodded with [src] by [user]. Luckily it was off.")) return TRUE else - L.visible_message(SPAN_DANGER("[L] has been prodded with [src] by [user]!")) + human_target.visible_message(SPAN_DANGER("[human_target] has been prodded with [src] by [user]!")) //stun effects - if(!isyautja(L) && !isxeno(L)) //Xenos and Predators are IMMUNE to all baton stuns. - L.emote("pain") - L.apply_stamina_damage(stun, target_zone, ARMOR_ENERGY) + if(!isyautja(human_target) && !isxeno(human_target)) //Xenos and Predators are IMMUNE to all baton stuns. + human_target.emote("pain") + human_target.apply_stamina_damage(stunforce, target_zone, ARMOR_ENERGY) + human_target.sway_jitter(2,1) + // Logging - if(user == L) - user.attack_log += "\[[time_stamp()]\] [key_name(user)] stunned themselves with the [src] in [get_area(user)]" + if(user == human_target) + user.attack_log += "\[[time_stamp()]\] [key_name(user)] stunned themselves with [src] in [get_area(user)]" else - msg_admin_attack("[key_name(user)] stunned [key_name(L)] with the [src] in [get_area(user)] ([user.loc.x],[user.loc.y],[user.loc.z]).", user.loc.x, user.loc.y, user.loc.z) - var/logentry = "\[[time_stamp()]\] [key_name(user)] stunned [key_name(L)] with the [src] in [get_area(user)]" - L.attack_log += logentry + msg_admin_attack("[key_name(user)] stunned [key_name(human_target)] with [src] in [get_area(user)] ([user.loc.x],[user.loc.y],[user.loc.z]).", user.loc.x, user.loc.y, user.loc.z) + var/logentry = "\[[time_stamp()]\] [key_name(user)] stunned [key_name(human_target)] with [src] in [get_area(user)]" + human_target.attack_log += logentry user.attack_log += logentry playsound(loc, 'sound/weapons/Egloves.ogg', 25, 1, 6) @@ -201,17 +175,6 @@ if(bcell) bcell.emp_act(severity) //let's not duplicate code everywhere if we don't have to please. -//secborg stun baton module -/obj/item/weapon/baton/robot/attack_self(mob/user) - //try to find our power cell - var/mob/living/silicon/robot/R = loc - if (istype(R)) - bcell = R.cell - return ..() - -/obj/item/weapon/baton/robot/attackby(obj/item/W, mob/user) - return - //Makeshift stun baton. Replacement for stun gloves. /obj/item/weapon/baton/cattleprod name = "stunprod" diff --git a/code/game/objects/items/weapons/swords_axes_etc.dm b/code/game/objects/items/weapons/swords_axes_etc.dm index cdab7db87e..043da19c9d 100644 --- a/code/game/objects/items/weapons/swords_axes_etc.dm +++ b/code/game/objects/items/weapons/swords_axes_etc.dm @@ -23,7 +23,7 @@ icon_state = "baton" item_state = "classic_baton" flags_equip_slot = SLOT_WAIST - force = MELEE_FORCE_WEAK + force = MELEE_FORCE_NORMAL /obj/item/weapon/classic_baton/attack(mob/M as mob, mob/living/user as mob) if(!..()) diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm index 36e0ea702a..c363dc5514 100644 --- a/code/game/objects/items/weapons/twohanded.dm +++ b/code/game/objects/items/weapons/twohanded.dm @@ -132,7 +132,7 @@ edge = 1 w_class = SIZE_LARGE flags_equip_slot = SLOT_BACK - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = TWOHANDED attack_verb = list("attacked", "chopped", "cleaved", "torn", "cut") @@ -161,7 +161,7 @@ edge = 0 w_class = SIZE_LARGE flags_equip_slot = SLOT_BACK - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = TWOHANDED attack_verb = list("smashed", "beaten", "slammed", "struck", "smashed", "battered", "cracked") @@ -188,7 +188,7 @@ force_wielded = 75 wieldsound = 'sound/weapons/saberon.ogg' unwieldsound = 'sound/weapons/saberoff.ogg' - flags_atom = FPRINT|NOBLOODY + flags_atom = FPRINT|QUICK_DRAWABLE|NOBLOODY flags_item = NOSHIELD|TWOHANDED attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") diff --git a/code/game/objects/items/weapons/weapon.dm b/code/game/objects/items/weapons/weapon.dm index 3d53dfb86b..5dd98bfa57 100644 --- a/code/game/objects/items/weapons/weapon.dm +++ b/code/game/objects/items/weapons/weapon.dm @@ -3,6 +3,7 @@ name = "weapon" icon = 'icons/obj/items/weapons/weapons.dmi' hitsound = "swing_hit" + flags_atom = FPRINT|QUICK_DRAWABLE /obj/item/get_examine_text(mob/user) . = ..() diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index efa898ba99..6e94961de1 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -113,7 +113,7 @@ w_class = SIZE_MEDIUM attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") else - to_chat(user, SPAN_NOTICE("The [src] can now be concealed.")) + to_chat(user, SPAN_NOTICE("[src] can now be concealed.")) force = initial(force) edge = 0 sharp = 0 @@ -139,7 +139,7 @@ desc = "A rod with some wire wrapped around the top. It'd be easy to attach something to the top bit." icon_state = "wiredrod" item_state = "rods" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT force = MELEE_FORCE_WEAK throwforce = MELEE_FORCE_WEAK w_class = SIZE_MEDIUM @@ -175,7 +175,7 @@

    Katanas are thrice as sharp as European swords and thrice as hard for that matter too. Anything a longsword can cut through, a katana can cut through better. I'm pretty sure a katana could easily bisect a knight wearing full plate with a simple vertical slash.

    \

    Ever wonder why medieval Europe never bothered conquering Japan? That's right, they were too scared to fight the disciplined Samurai and their katanas of destruction. Even in World War II, American soldiers targeted the men with the katanas first because their killing power was feared and respected.

    " icon_state = "katana" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT force = 4444 throwforce = MELEE_FORCE_VERY_STRONG sharp = IS_SHARP_ITEM_BIG @@ -219,7 +219,7 @@ var/power = force if(user.skills) - power = round(power * (1 + 0.3*user.skills.get_skill_level(SKILL_MELEE_WEAPONS))) //30% bonus per melee level + power = floor(power * (1 + 0.3*user.skills.get_skill_level(SKILL_MELEE_WEAPONS))) //30% bonus per melee level //if the target also has a katana (and we aren't attacking ourselves), we add some suspense @@ -248,7 +248,7 @@ showname = "." var/used_verb = "attacked" - if(attack_verb && attack_verb.len) + if(LAZYLEN(attack_verb)) used_verb = pick(attack_verb) user.visible_message(SPAN_DANGER("[M] has been [used_verb] with [src][showname]."),\ SPAN_DANGER("You [used_verb] [M] with [src]."), null, 5) @@ -260,7 +260,7 @@ M.apply_effect(kill_delay/15, STUN) - for (var/mob/O in hearers(world_view_size, M)) + for (var/mob/O in hearers(GLOB.world_view_size, M)) O << sound('sound/effects/Heart Beat.ogg', repeat = 1, wait = 0, volume = 100, channel = 2) //play on same channel as ambience spawn(kill_delay) O << sound(, , , , channel = 2) //cut sound diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm index 4304d4516e..77b15e22d0 100644 --- a/code/game/objects/objs.dm +++ b/code/game/objects/objs.dm @@ -142,34 +142,39 @@ return "on [t_his] feet" return "...somewhere?" -/obj/proc/updateUsrDialog() - if(in_use) - var/is_in_use = 0 - var/list/nearby = viewers(1, src) - for(var/mob/M in nearby) - if ((M.client && M.interactee == src)) - is_in_use = 1 - attack_hand(M) - if (ishighersilicon(usr)) - if (!(usr in nearby)) - if (usr.client && usr.interactee==src) // && M.interactee == src is omitted because if we triggered this by using the dialog, it doesn't matter if our machine changed in between triggering it and this - the dialog is probably still supposed to refresh. - is_in_use = 1 - attack_remote(usr) - in_use = is_in_use +/obj/proc/updateUsrDialog(mob/user) + if(!user) + user = usr + if(!in_use || !user) + return + + var/is_in_use = FALSE + var/list/nearby = viewers(1, src) + for(var/mob/cur_mob in nearby) + if(cur_mob.client && cur_mob.interactee == src) + is_in_use = TRUE + attack_hand(cur_mob) + if(isSilicon(user)) + if(!(user in nearby)) + if(user.client && user.interactee == src) // && M.interactee == src is omitted because if we triggered this by using the dialog, it doesn't matter if our machine changed in between triggering it and this - the dialog is probably still supposed to refresh. + is_in_use = TRUE + attack_remote(user) + + in_use = is_in_use /obj/proc/updateDialog() // Check that people are actually using the machine. If not, don't update anymore. - if(in_use) - var/list/nearby = viewers(1, src) - var/is_in_use = 0 - for(var/mob/M in nearby) - if ((M.client && M.interactee == src)) - is_in_use = 1 - src.interact(M) - var/ai_in_use = AutoUpdateAI(src) - - if(!ai_in_use && !is_in_use) - in_use = 0 + if(!in_use) + return + + var/is_in_use = FALSE + var/list/nearby = viewers(1, src) + for(var/mob/cur_mob in nearby) + if(cur_mob.client && cur_mob.interactee == src) + is_in_use = TRUE + interact(cur_mob) + + in_use = is_in_use /obj/proc/interact(mob/user) return @@ -203,6 +208,9 @@ /obj/proc/hear_talk(mob/living/M as mob, msg, verb="says", datum/language/speaking, italics = 0) return +/obj/proc/see_emote(mob/living/M as mob, emote, audible = FALSE) + return + /obj/attack_hand(mob/user) if(can_buckle) manual_unbuckle(user) else . = ..() @@ -226,7 +234,7 @@ /obj/proc/afterbuckle(mob/M as mob) // Called after somebody buckled / unbuckled handle_rotation() // To be removed when we have full dir support in set_buckled - SEND_SIGNAL(src, COSMIG_OBJ_AFTER_BUCKLE, buckled_mob) + SEND_SIGNAL(src, COMSIG_OBJ_AFTER_BUCKLE, buckled_mob) if(!buckled_mob) UnregisterSignal(M, COMSIG_PARENT_QDELETING) else @@ -269,10 +277,14 @@ //trying to buckle a mob /obj/proc/buckle_mob(mob/M, mob/user) - if (!ismob(M) || (get_dist(src, user) > 1) || user.is_mob_restrained() || user.stat || buckled_mob || M.buckled || !isturf(user.loc)) + if (!ismob(M) || (get_dist(src, user) > 1) || user.stat || buckled_mob || M.buckled || !isturf(user.loc)) + return + + if (user.is_mob_incapacitated() || HAS_TRAIT(user, TRAIT_IMMOBILIZED) || HAS_TRAIT(user, TRAIT_FLOORED)) + to_chat(user, SPAN_WARNING("You can't do this right now.")) return - if (isxeno(user)) + if (isxeno(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) to_chat(user, SPAN_WARNING("You don't have the dexterity to do that, try a nest.")) return if (iszombie(user)) @@ -290,10 +302,11 @@ if(M.loc != src.loc) return . = buckle_mob(M) - if (M.mob_size <= MOB_SIZE_XENO && M.stat == DEAD && istype(src, /obj/structure/bed/roller)) - do_buckle(M, user) - return - if (M.mob_size > MOB_SIZE_HUMAN) + if (M.mob_size <= MOB_SIZE_XENO) + if ((M.stat == DEAD && istype(src, /obj/structure/bed/roller) || HAS_TRAIT(M, TRAIT_OPPOSABLE_THUMBS))) + do_buckle(M, user) + return + if ((M.mob_size > MOB_SIZE_HUMAN)) to_chat(user, SPAN_WARNING("[M] is too big to buckle in.")) return do_buckle(M, user) @@ -361,7 +374,7 @@ return 0 bullet_ping(P) if(P.ammo.damage) - update_health(round(P.ammo.damage / 2)) + update_health(floor(P.ammo.damage / 2)) return 1 /obj/item/proc/get_mob_overlay(mob/user_mob, slot) @@ -389,7 +402,7 @@ else if(LAZYISIN(item_icons, slot)) mob_icon = item_icons[slot] else - mob_icon = default_onmob_icons[slot] + mob_icon = GLOB.default_onmob_icons[slot] var/image/overlay_img @@ -402,7 +415,7 @@ var/offset_x = worn_x_dimension var/offset_y = worn_y_dimension - if(inhands) + if(inhands == 1 || inhands == 0) offset_x = inhand_x_dimension offset_y = inhand_y_dimension diff --git a/code/game/objects/prop.dm b/code/game/objects/prop.dm index f24fec66a6..2600e80abb 100644 --- a/code/game/objects/prop.dm +++ b/code/game/objects/prop.dm @@ -2,6 +2,29 @@ name = "prop" desc = "Some kind of prop." +/// A prop that acts as a replacement for another item, mimicking their looks. +/// Mainly used in Reqs Tutorial to provide the full item selections without side effects. +/obj/item/prop/replacer + /// The type that this object is taking the place of + var/original_type + +/obj/item/prop/replacer/Initialize(mapload, obj/original_type) + if(!original_type) + return INITIALIZE_HINT_QDEL + . = ..() + src.original_type = original_type + var/obj/created_type = new original_type // Instancing this for the sake of assigning its appearance to the prop and nothing else + name = initial(original_type.name) + icon = initial(original_type.icon) + icon_state = initial(original_type.icon_state) + desc = initial(original_type.desc) + if(ispath(original_type, /obj/item)) + var/obj/item/item_type = original_type + item_state = initial(item_type.item_state) + + appearance = created_type.appearance + qdel(created_type) + /obj/item/prop/laz_top name = "lazertop" icon = 'icons/obj/structures/props/server_equipment.dmi' @@ -146,6 +169,18 @@ icon_state = "game_kit" icon = 'icons/obj/items/items.dmi' +/obj/item/prop/gripper + name = "magnetic gripper" + desc = "A simple grasping tool for synthetic assets." + icon_state = "gripper" + icon = 'icons/obj/items/devices.dmi' + +/obj/item/prop/matter_decompiler + name = "matter decompiler" + desc = "Eating trash, bits of glass, or other debris will replenish your stores." + icon_state = "decompiler" + icon = 'icons/obj/items/devices.dmi' + /// Xeno-specific props /obj/item/prop/alien/hugger diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm index 95998d5de7..919f185ebe 100644 --- a/code/game/objects/structures.dm +++ b/code/game/objects/structures.dm @@ -209,7 +209,7 @@ /obj/structure/proc/toggle_anchored(obj/item/W, mob/user) if(!wrenchable) - to_chat(user, SPAN_WARNING("The [src] cannot be [anchored ? "un" : ""]anchored.")) + to_chat(user, SPAN_WARNING("[src] cannot be [anchored ? "un" : ""]anchored.")) return FALSE else // Wrenching is faster if we are better at engineering @@ -219,8 +219,12 @@ playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) if(anchored) user.visible_message(SPAN_NOTICE("[user] anchors [src] into place."),SPAN_NOTICE("You anchor [src] into place.")) + for(var/obj/medlink in loc) + SEND_SIGNAL(medlink, COMSIG_STRUCTURE_WRENCHED, src) else user.visible_message(SPAN_NOTICE("[user] unanchors [src]."),SPAN_NOTICE("You unanchor [src].")) + for(var/obj/medlink in loc) + SEND_SIGNAL(medlink, COMSIG_STRUCTURE_UNWRENCHED, src) return TRUE /obj/structure/get_applying_acid_time() diff --git a/code/game/objects/structures/airlock_assembly.dm b/code/game/objects/structures/airlock_assembly.dm index d9e55e8680..01fca4a687 100644 --- a/code/game/objects/structures/airlock_assembly.dm +++ b/code/game/objects/structures/airlock_assembly.dm @@ -111,6 +111,11 @@ qdel(src) return + for(var/obj/object in loc) + if(object.density && object != src) + to_chat(user, SPAN_WARNING("[object] is blocking you from interacting with [src]!")) + return + switch(state) if(STATE_STANDARD) if(HAS_TRAIT(attacking_item, TRAIT_TOOL_WRENCH)) diff --git a/code/game/objects/structures/barricade/barricade.dm b/code/game/objects/structures/barricade/barricade.dm index 5a72ec33ea..31c2f0ed1b 100644 --- a/code/game/objects/structures/barricade/barricade.dm +++ b/code/game/objects/structures/barricade/barricade.dm @@ -5,20 +5,28 @@ climbable = TRUE anchored = TRUE density = TRUE - throwpass = TRUE //You can throw objects over this, despite its density. + /// You can throw objects over this, despite its density. + throwpass = TRUE layer = BELOW_OBJ_LAYER flags_atom = ON_BORDER - var/stack_type //The type of stack the barricade dropped when disassembled if any. - var/stack_amount = 5 //The amount of stack dropped when disassembled at full health - var/destroyed_stack_amount //to specify a non-zero amount of stack to drop when destroyed + /// The type of stack the barricade dropped when disassembled if any. + var/stack_type + /// The amount of stack dropped when disassembled at full health + var/stack_amount = 5 + /// to specify a non-zero amount of stack to drop when destroyed + var/destroyed_stack_amount health = 100 //Pretty tough. Changes sprites at 300 and 150 - var/maxhealth = 100 //Basic code functions + var/maxhealth = 100 /// Used for calculating some stuff related to maxhealth as it constantly changes due to e.g. barbed wire. set to 100 to avoid possible divisions by zero var/starting_maxhealth = 100 - var/crusher_resistant = TRUE //Whether a crusher can ram through it. - var/force_level_absorption = 5 //How much force an item needs to even damage it at all. + /// Whether a crusher can ram through it. + var/crusher_resistant = TRUE + /// How much force an item needs to even damage it at all. + var/force_level_absorption = 5 var/barricade_hitsound var/barricade_type = "barricade" //"metal", "plasteel", etc. + /// ! Icon file used for the wiring + var/wire_icon = 'icons/obj/structures/barricades.dmi' var/can_change_dmg_state = TRUE var/damage_state = BARRICADE_DMG_NONE var/closed = FALSE @@ -34,6 +42,8 @@ var/burn_flame_multiplier = 1 var/repair_materials = list() var/metallic = TRUE + /// Lower limit of damage beyond which the barricade cannot be fixed by welder. Compared to damage_state. If null it can be repaired at any damage_state. + var/welder_lower_damage_limit = null /obj/structure/barricade/Initialize(mapload, mob/user) . = ..() @@ -102,9 +112,9 @@ if(is_wired) if(!closed) - overlays += image('icons/obj/structures/barricades.dmi', icon_state = "[src.barricade_type]_wire") + overlays += image(wire_icon, icon_state = "[barricade_type]_wire") else - overlays += image('icons/obj/structures/barricades.dmi', icon_state = "[src.barricade_type]_closed_wire") + overlays += image(wire_icon, icon_state = "[barricade_type]_closed_wire") ..() @@ -176,9 +186,6 @@ return FALSE return prob(max(30,(100.0*health)/maxhealth)) -/obj/structure/barricade/attack_robot(mob/user as mob) - return attack_hand(user) - /obj/structure/barricade/attack_animal(mob/user as mob) return attack_alien(user) @@ -257,7 +264,7 @@ bullet.damage = bullet.damage * brute_projectile_multiplier if(istype(bullet.ammo, /datum/ammo/xeno/boiler_gas)) - take_damage(round(50 * burn_multiplier)) + take_damage(floor(50 * burn_multiplier)) else if(bullet.ammo.flags_ammo_behavior & AMMO_ANTISTRUCT) take_damage(bullet.damage * ANTISTRUCT_DMG_MULT_BARRICADES) @@ -272,9 +279,9 @@ new /obj/item/stack/barbed_wire(loc) if(stack_type) var/stack_amt - stack_amt = round(stack_amount * (health/starting_maxhealth)) //Get an amount of sheets back equivalent to remaining health. Obviously, fully destroyed means 0 + stack_amt = floor(stack_amount * (health/starting_maxhealth)) //Get an amount of sheets back equivalent to remaining health. Obviously, fully destroyed means 0 if(upgraded) - stack_amt += round(2 * (health/starting_maxhealth)) + stack_amt += floor(2 * (health/starting_maxhealth)) if(stack_amt) new stack_type(loc, stack_amt) else @@ -297,7 +304,7 @@ deconstruct(FALSE) create_shrapnel(location, rand(2,5), direction, , /datum/ammo/bullet/shrapnel/light, cause_data) else - update_health(round(severity * explosive_multiplier)) + update_health(floor(severity * explosive_multiplier)) /obj/structure/barricade/get_explosion_resistance(direction) if(!density || direction == turn(dir, 90) || direction == turn(dir, -90)) @@ -326,7 +333,7 @@ take_damage(dam * burn_flame_multiplier) /obj/structure/barricade/proc/hit_barricade(obj/item/item) - take_damage(item.force * 0.5 * brute_multiplier) + take_damage(item.force * item.demolition_mod * 0.5 * brute_multiplier) /obj/structure/barricade/proc/take_damage(damage) for(var/obj/structure/barricade/barricade in get_step(src,dir)) //discourage double-stacking barricades by removing health from opposing barricade @@ -340,7 +347,7 @@ /obj/structure/barricade/update_health(damage, nomessage) health -= damage - health = Clamp(health, 0, maxhealth) + health = clamp(health, 0, maxhealth) if(!health) if(!nomessage) @@ -352,16 +359,15 @@ update_icon() /obj/structure/barricade/proc/update_damage_state() - var/health_percent = round(health/maxhealth * 100) + var/health_percent = floor(health/maxhealth * 100) switch(health_percent) if(0 to 25) damage_state = BARRICADE_DMG_HEAVY if(25 to 50) damage_state = BARRICADE_DMG_MODERATE if(50 to 75) damage_state = BARRICADE_DMG_SLIGHT if(75 to INFINITY) damage_state = BARRICADE_DMG_NONE -/obj/structure/barricade/proc/weld_cade(obj/item/tool/weldingtool/welder, mob/user) - if(!metallic) - user.visible_message(SPAN_WARNING("You can't weld \the [src]!")) +/obj/structure/barricade/proc/try_weld_cade(obj/item/tool/weldingtool/welder, mob/user, repeat = TRUE, skip_check = FALSE) + if(!skip_check && !can_weld(welder, user)) return FALSE if(!(welder.remove_fuel(2, user))) @@ -380,6 +386,16 @@ user.count_niche_stat(STATISTICS_NICHE_REPAIR_CADES) update_health(-200) playsound(src.loc, 'sound/items/Welder2.ogg', 25, TRUE) + + var/current_tool = user.get_active_hand() + if(current_tool != welder) + return TRUE // Swapped hands or tool + if(repeat && can_weld(welder, user, silent = TRUE)) + // Assumption: The implementation of can_weld will return false if fully repaired + if(!try_weld_cade(welder, user, repeat = TRUE, skip_check = TRUE)) + // If this returned false, then we were interrupted or ran out of fuel, so stop looping + return TRUE + return TRUE /obj/structure/barricade/verb/count_rotate() @@ -437,6 +453,10 @@ to_chat(user, SPAN_WARNING("You'll need some adequate repair material in your other hand to patch up [src]!")) return FALSE + if(material.amount < nailgun.material_per_repair) + to_chat(user, SPAN_WARNING("You'll need more adequate repair material in your other hand to patch up [src]!")) + return FALSE + var/repair_value = 0 for(var/validSheetType in repair_materials) if(validSheetType == material.sheettype) @@ -453,7 +473,7 @@ return FALSE if(!material || (material != user.l_hand && material != user.r_hand) || material.amount <= 0) - to_chat(user, SPAN_WARNING("You seems to have misplaced the repair material!")) + to_chat(user, SPAN_WARNING("You seem to have misplaced the repair material!")) return FALSE if(!nailgun.in_chamber || !nailgun.current_mag || nailgun.current_mag.current_rounds < 3) @@ -463,8 +483,34 @@ update_health(-repair_value*maxhealth) to_chat(user, SPAN_WARNING("You nail [material] to [src], restoring some of its integrity!")) update_damage_state() - material.use(1) + material.use(nailgun.material_per_repair) nailgun.current_mag.current_rounds -= 3 nailgun.in_chamber = null nailgun.load_into_chamber() return TRUE + +/obj/structure/barricade/proc/can_weld(obj/item/item, mob/user, silent) + if(user.action_busy) + return FALSE + + if(!metallic) + if(!silent) + user.visible_message(SPAN_WARNING("You can't weld \the [src]!")) + return FALSE + + if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) + if(!silent) + to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) + return FALSE + + if(health == maxhealth) + if(!silent) + to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) + return FALSE + + if(!(isnull(damage_state)) && !(isnull(welder_lower_damage_limit)) && damage_state >= welder_lower_damage_limit) + if(!silent) + to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) + return FALSE + + return TRUE diff --git a/code/game/objects/structures/barricade/deployable.dm b/code/game/objects/structures/barricade/deployable.dm index 0d5275f98a..ad559f2e13 100644 --- a/code/game/objects/structures/barricade/deployable.dm +++ b/code/game/objects/structures/barricade/deployable.dm @@ -24,40 +24,28 @@ . += SPAN_INFO("Drag its sprite onto yourself to undeploy.") /obj/structure/barricade/deployable/attackby(obj/item/item, mob/user) - if(iswelder(item)) - if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(user.action_busy) - return - var/obj/item/tool/weldingtool/welder = item - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return - - weld_cade(welder, user) + try_weld_cade(item, user) return - else if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(user.action_busy) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You do not know how to collapse [src] using a crowbar...")) return + user.visible_message(SPAN_NOTICE("[user] starts collapsing [src]."), \ + SPAN_NOTICE("You begin collapsing [src]...")) + playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) + if(do_after(user, 1.5 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY, src)) + collapse(usr) else - user.visible_message(SPAN_NOTICE("[user] starts collapsing [src]."), \ - SPAN_NOTICE("You begin collapsing [src]...")) - playsound(loc, 'sound/items/Crowbar.ogg', 25, 1) - if(do_after(user, 1.5 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY, src)) - collapse(usr) - else - to_chat(user, SPAN_WARNING("You stop collapsing [src].")) + to_chat(user, SPAN_WARNING("You stop collapsing [src].")) if(try_nailgun_usage(item, user)) return - . = ..() + return ..() /obj/structure/barricade/deployable/MouseDrop(obj/over_object as obj) if(!ishuman(usr)) @@ -107,6 +95,7 @@ w_class = SIZE_LARGE flags_equip_slot = SLOT_BACK|SLOT_SUIT_STORE + flags_item = SMARTGUNNER_BACKPACK_OVERRIDE icon_state = "folding-1" item_state = "folding" item_state_slots = list( @@ -202,7 +191,7 @@ to_chat(user, SPAN_INFO("You transfer [to_transfer] between the stacks.")) return - else if(iswelder(item)) + if(iswelder(item)) if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return @@ -248,7 +237,7 @@ playsound(loc, 'sound/items/Welder2.ogg', 25, TRUE) return - . = ..() + return ..() /obj/item/stack/folding_barricade/attack_hand(mob/user) var/mob/living/carbon/human/human = user @@ -281,7 +270,7 @@ /obj/item/stack/folding_barricade/get_examine_text(mob/user) . = ..() - if(round(min(stack_health)/maxhealth * 100) <= 75) + if(floor(min(stack_health)/maxhealth * 100) <= 75) . += SPAN_WARNING("It appears to be damaged.") /obj/item/stack/folding_barricade/three diff --git a/code/game/objects/structures/barricade/plasteel.dm b/code/game/objects/structures/barricade/folding.dm similarity index 78% rename from code/game/objects/structures/barricade/plasteel.dm rename to code/game/objects/structures/barricade/folding.dm index d1a42c9b61..8fe00d04a7 100644 --- a/code/game/objects/structures/barricade/plasteel.dm +++ b/code/game/objects/structures/barricade/folding.dm @@ -1,5 +1,5 @@ /obj/structure/barricade/plasteel - name = "plasteel barricade" + name = "folding plasteel barricade" desc = "A very sturdy barricade made out of plasteel panels, the pinnacle of strongpoints. Use a blowtorch to repair. Can be flipped down to create a path." icon_state = "plasteel_closed_0" health = 800 @@ -20,17 +20,20 @@ repair_materials = list("plasteel" = 0.3) var/build_state = BARRICADE_BSTATE_SECURED //Look at __game.dm for barricade defines - var/tool_cooldown = 0 //Delay to apply tools to prevent spamming - var/busy = FALSE //Standard busy check + /// Delay to apply tools to prevent spamming + var/tool_cooldown = 0 + /// Standard busy check + var/busy = FALSE var/linked = 0 var/recentlyflipped = FALSE var/hasconnectionoverlay = TRUE var/linkable = TRUE + welder_lower_damage_limit = BARRICADE_DMG_HEAVY /obj/structure/barricade/plasteel/update_icon() ..() if(linked) - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/barricade/plasteel/cade in get_step(src, direction)) if(((dir & (NORTH|SOUTH) && get_dir(src, cade) & (EAST|WEST)) || (dir & (EAST|WEST) && get_dir(src, cade) & (NORTH|SOUTH))) && dir == cade.dir && cade.linked && cade.closed == src.closed && hasconnectionoverlay) if(closed) @@ -44,7 +47,7 @@ if(!closed) // Closed = gate down for plasteel for some reason return ..() else - return 0 + return FALSE /obj/structure/barricade/plasteel/get_examine_text(mob/user) . = ..() @@ -57,35 +60,28 @@ if(BARRICADE_BSTATE_MOVABLE) . += SPAN_INFO("The protection panel has been removed and the anchor bolts loosened. It's ready to be taken apart.") -/obj/structure/barricade/plasteel/weld_cade(obj/item/W, mob/user) +/obj/structure/barricade/plasteel/try_weld_cade(obj/item/item, mob/user, repeat = TRUE, skip_check = FALSE) busy = TRUE ..() busy = FALSE -/obj/structure/barricade/plasteel/attackby(obj/item/W, mob/user) - if(iswelder(W)) - if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(busy || tool_cooldown > world.time) - return - tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) +/obj/structure/barricade/plasteel/can_weld(obj/item/item, mob/user, silent) + if(!..()) + return FALSE + + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) + if(!silent) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return - var/obj/item/tool/weldingtool/WT = W - if(damage_state == BARRICADE_DMG_HEAVY) - to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) - return + return FALSE - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return + return TRUE - weld_cade(WT, user) +/obj/structure/barricade/plasteel/attackby(obj/item/item, mob/user) + if(iswelder(item)) + try_weld_cade(item, user) return - if(try_nailgun_usage(W, user)) + if(try_nailgun_usage(item, user)) return for(var/obj/effect/xenomorph/acid/A in src.loc) @@ -94,12 +90,12 @@ return switch(build_state) - if(2) //Fully constructed step. Use screwdriver to remove the protection panels to reveal the bolts - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) + if(BARRICADE_BSTATE_SECURED) //Fully constructed step. Use screwdriver to remove the protection panels to reveal the bolts + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return @@ -107,14 +103,16 @@ if(B != src && B.dir == dir) to_chat(user, SPAN_WARNING("There's already a barricade here.")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] removes [src]'s protection panel."), SPAN_NOTICE("You remove [src]'s protection panels, exposing the anchor bolts.")) playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_UNSECURED return - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to modify [src]...")) return playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) @@ -125,35 +123,39 @@ user.visible_message(SPAN_NOTICE("[user] sets up [src] for linking."), SPAN_NOTICE("You set up [src] for linking.")) else - to_chat(user, SPAN_WARNING("The [src] has no linking points...")) + to_chat(user, SPAN_WARNING("[src] has no linking points...")) return linked = !linked - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/barricade/plasteel/cade in get_step(src, direction)) cade.update_icon() update_icon() - if(1) //Protection panel removed step. Screwdriver to put the panel back, wrench to unsecure the anchor bolts - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) + + if(BARRICADE_BSTATE_UNSECURED) //Protection panel removed step. Screwdriver to put the panel back, wrench to unsecure the anchor bolts + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] set [src]'s protection panel back."), SPAN_NOTICE("You set [src]'s protection panel back.")) playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) build_state = BARRICADE_BSTATE_SECURED return - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) + + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] loosens [src]'s anchor bolts."), SPAN_NOTICE("You loosen [src]'s anchor bolts.")) playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) @@ -162,19 +164,20 @@ update_icon() //unanchored changes layer return - if(0) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to rescure anchor bolts - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) + if(BARRICADE_BSTATE_MOVABLE) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to rescure anchor bolts + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return var/turf/open/T = loc if(!(istype(T) && T.allow_construction)) to_chat(user, SPAN_WARNING("[src] must be secured on a proper surface!")) return - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] secures [src]'s anchor bolts."), SPAN_NOTICE("You secure [src]'s anchor bolts.")) playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) @@ -182,11 +185,12 @@ build_state = BARRICADE_BSTATE_UNSECURED update_icon() //unanchored changes layer return - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) + + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(busy || tool_cooldown > world.time) return tool_cooldown = world.time + 10 - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return user.visible_message(SPAN_NOTICE("[user] starts unseating [src]'s panels."), @@ -194,15 +198,14 @@ playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) busy = TRUE if(do_after(user, 50 * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) - busy = FALSE user.visible_message(SPAN_NOTICE("[user] takes [src]'s panels apart."), SPAN_NOTICE("You take [src]'s panels apart.")) playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) deconstruct(TRUE) //Note : Handles deconstruction too ! - else busy = FALSE + busy = FALSE return - . = ..() + return ..() /obj/structure/barricade/plasteel/attack_hand(mob/user as mob) if(isxeno(user)) @@ -210,7 +213,7 @@ if(closed) if(recentlyflipped) - to_chat(user, SPAN_NOTICE("The [src] has been flipped too recently!")) + to_chat(user, SPAN_NOTICE("[src] has been flipped too recently!")) return user.visible_message(SPAN_NOTICE("[user] flips [src] open."), SPAN_NOTICE("You flip [src] open.")) @@ -222,7 +225,7 @@ else if(recentlyflipped) - to_chat(user, SPAN_NOTICE("The [src] has been flipped too recently!")) + to_chat(user, SPAN_NOTICE("[src] has been flipped too recently!")) return user.visible_message(SPAN_NOTICE("[user] flips [src] closed."), SPAN_NOTICE("You flip [src] closed.")) @@ -239,7 +242,7 @@ closed = 0 density = TRUE if(linked) - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/barricade/plasteel/cade in get_step(src, direction)) if(((dir & (NORTH|SOUTH) && get_dir(src, cade) & (EAST|WEST)) || (dir & (EAST|WEST) && get_dir(src, cade) & (NORTH|SOUTH))) && dir == cade.dir && cade != origin && cade.linked) cade.open(src) @@ -252,7 +255,7 @@ closed = 1 density = FALSE if(linked) - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/barricade/plasteel/cade in get_step(src, direction)) if(((dir & (NORTH|SOUTH) && get_dir(src, cade) & (EAST|WEST)) || (dir & (EAST|WEST) && get_dir(src, cade) & (NORTH|SOUTH))) && dir == cade.dir && cade != origin && cade.linked) cade.close(src) @@ -264,7 +267,7 @@ is_wired = TRUE climbable = FALSE update_icon() - . = ..() + return ..() /obj/structure/barricade/plasteel/wired/initialize_pass_flags(datum/pass_flags_container/PF) ..() diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm index ae166dbbf9..2fde8de3fe 100644 --- a/code/game/objects/structures/barricade/handrail.dm +++ b/code/game/objects/structures/barricade/handrail.dm @@ -67,7 +67,7 @@ reinforced = !reinforced update_icon() -/obj/structure/barricade/handrail/attackby(obj/item/W, mob/user) +/obj/structure/barricade/handrail/attackby(obj/item/item, mob/user) for(var/obj/effect/xenomorph/acid/A in src.loc) if(A.acid_t == src) to_chat(user, "You can't get near that, it's melting!") @@ -75,7 +75,7 @@ switch(build_state) if(BARRICADE_BSTATE_SECURED) //Non-reinforced. Wrench to unsecure. Screwdriver to disassemble into metal. 1 metal to reinforce. - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) // Make unsecure + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) // Make unsecure if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -89,7 +89,7 @@ build_state = BARRICADE_BSTATE_UNSECURED update_icon() return - if(istype(W, /obj/item/stack/sheet/metal)) // Start reinforcing + if(istype(item, /obj/item/stack/sheet/metal)) // Start reinforcing if(!can_be_reinforced) return if(user.action_busy) @@ -97,7 +97,7 @@ if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) to_chat(user, SPAN_WARNING("You are not trained to reinforce [src]...")) return - var/obj/item/stack/sheet/metal/M = W + var/obj/item/stack/sheet/metal/M = item playsound(src.loc, 'sound/items/Screwdriver2.ogg', 25, 1) if(M.amount >= 1 && do_after(user, 30, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) //Shouldnt be possible, but doesnt hurt to check if(!M.use(1)) @@ -109,7 +109,7 @@ return if(BARRICADE_BSTATE_UNSECURED) - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) // Secure again + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) // Secure again if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -123,7 +123,7 @@ build_state = BARRICADE_BSTATE_SECURED update_icon() return - if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) // Disassemble into metal + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) // Disassemble into metal if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -141,7 +141,7 @@ if(BARRICADE_BSTATE_FORTIFIED) if(reinforced) - if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) // Un-reinforce + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) // Un-reinforce if(user.action_busy) return if(!skillcheck(user, SKILL_CONSTRUCTION, SKILL_CONSTRUCTION_TRAINED)) @@ -155,8 +155,8 @@ reinforce() return else - if(iswelder(W)) // Finish reinforcing - if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) + if(iswelder(item)) // Finish reinforcing + if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return if(user.action_busy) @@ -198,3 +198,11 @@ /obj/structure/barricade/handrail/sandstone/b icon_state = "hr_sandstone_b" + +/obj/structure/barricade/handrail/pizza + name = "\improper diner half-wall" + icon_state = "hr_sandstone" //temp, getting sprites soontm + color = "#b51c0b" + can_be_reinforced = FALSE + projectile_coverage = PROJECTILE_COVERAGE_LOW + layer = MOB_LAYER + 0.01 diff --git a/code/game/objects/structures/barricade/misc.dm b/code/game/objects/structures/barricade/misc.dm index 5e0958f974..8fcf7cec41 100644 --- a/code/game/objects/structures/barricade/misc.dm +++ b/code/game/objects/structures/barricade/misc.dm @@ -44,15 +44,15 @@ user.visible_message(SPAN_NOTICE("\The [user] removes \the [src].")) deconstruct(TRUE) return - else - . = ..() + + return ..() /obj/structure/barricade/snow/hit_barricade(obj/item/I) switch(I.damtype) if("fire") - take_damage( I.force * 0.6 ) + take_damage( I.force * I.demolition_mod * 0.6 ) if("brute") - take_damage( I.force * 0.3 ) + take_damage( I.force * I.demolition_mod * 0.3 ) return @@ -101,11 +101,11 @@ if(try_nailgun_usage(W, user)) return - . = ..() + return ..() /obj/structure/barricade/wooden/hit_barricade(obj/item/I) switch(I.damtype) if("fire") - take_damage( I.force * 1.5 ) + take_damage( I.force * I.demolition_mod * 1.5 ) if("brute") - take_damage( I.force * 0.75 ) + take_damage( I.force * I.demolition_mod * 0.75 ) diff --git a/code/game/objects/structures/barricade/metal.dm b/code/game/objects/structures/barricade/non_folding.dm similarity index 90% rename from code/game/objects/structures/barricade/metal.dm rename to code/game/objects/structures/barricade/non_folding.dm index 4056ac9021..575f1da738 100644 --- a/code/game/objects/structures/barricade/metal.dm +++ b/code/game/objects/structures/barricade/non_folding.dm @@ -19,6 +19,8 @@ var/build_state = BARRICADE_BSTATE_SECURED //Look at __game.dm for barricade defines var/upgrade = null + welder_lower_damage_limit = BARRICADE_DMG_HEAVY + /obj/structure/barricade/metal/update_icon() . = ..() if(dir > 2) @@ -42,26 +44,20 @@ if(BARRICADE_UPGRADE_ANTIFF) . += SPAN_NOTICE("The cade is protected by a composite upgrade.") -/obj/structure/barricade/metal/attackby(obj/item/item, mob/user) - if(iswelder(item)) - if(!HAS_TRAIT(item, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if(user.action_busy) - return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) +/obj/structure/barricade/metal/can_weld(obj/item/item, mob/user, silent) + if(!..()) + return FALSE + + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) + if(!silent) to_chat(user, SPAN_WARNING("You're not trained to repair [src]...")) - return - var/obj/item/tool/weldingtool/welder = item - if(damage_state == BARRICADE_DMG_HEAVY) - to_chat(user, SPAN_WARNING("[src] has sustained too much structural damage to be repaired.")) - return + return FALSE - if(health == maxhealth) - to_chat(user, SPAN_WARNING("[src] doesn't need repairs.")) - return + return TRUE - weld_cade(welder, user) +/obj/structure/barricade/metal/attackby(obj/item/item, mob/user) + if(iswelder(item)) + try_weld_cade(item, user) return if(try_nailgun_usage(item, user)) @@ -110,7 +106,7 @@ to_chat(user, SPAN_NOTICE("You lack the required metal.")) return if((usr.get_active_hand()) != metal) - to_chat(user, SPAN_WARNING("You must be holding the [metal] to upgrade \the [src]!")) + to_chat(user, SPAN_WARNING("You must be holding [metal] to upgrade [src]!")) return switch(choice) @@ -150,7 +146,7 @@ to_chat(user, SPAN_NOTICE("You lack the required metal.")) return if((usr.get_active_hand()) != metal) - to_chat(user, SPAN_WARNING("You must be holding the [metal] to upgrade \the [src]!")) + to_chat(user, SPAN_WARNING("You must be holding [metal] to upgrade [src]!")) return switch(choice) @@ -204,11 +200,13 @@ to_chat(user, SPAN_WARNING("You are not trained to assemble [src]...")) return playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] set [src]'s protection panel back."), SPAN_NOTICE("You set [src]'s protection panel back.")) build_state = BARRICADE_BSTATE_SECURED return + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(user.action_busy) return @@ -216,13 +214,15 @@ to_chat(user, SPAN_WARNING("You are not trained to disassemble [src]...")) return playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] loosens [src]'s anchor bolts."), SPAN_NOTICE("You loosen [src]'s anchor bolts.")) anchored = FALSE build_state = BARRICADE_BSTATE_MOVABLE update_icon() //unanchored changes layer return + if(BARRICADE_BSTATE_MOVABLE) //Anchor bolts loosened step. Apply crowbar to unseat the panel and take apart the whole thing. Apply wrench to resecure anchor bolts if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) if(user.action_busy) @@ -239,13 +239,15 @@ to_chat(user, SPAN_WARNING("[src] must be secured on a proper surface!")) return playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) - if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) return + if(!do_after(user, 10, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src)) + return user.visible_message(SPAN_NOTICE("[user] secures [src]'s anchor bolts."), SPAN_NOTICE("You secure [src]'s anchor bolts.")) build_state = BARRICADE_BSTATE_UNSECURED anchored = TRUE update_icon() //unanchored changes layer return + if(HAS_TRAIT(item, TRAIT_TOOL_CROWBAR)) if(user.action_busy) return @@ -262,7 +264,7 @@ deconstruct(TRUE) //Note : Handles deconstruction too ! return - . = ..() + return ..() /obj/structure/barricade/metal/wired/New() maxhealth += 50 @@ -271,9 +273,24 @@ is_wired = TRUE climbable = FALSE update_icon() - . = ..() + return ..() /obj/structure/barricade/metal/wired/initialize_pass_flags(datum/pass_flags_container/PF) ..() flags_can_pass_front_temp &= ~PASS_OVER_THROW_MOB flags_can_pass_behind_temp &= ~PASS_OVER_THROW_MOB + +/obj/structure/barricade/metal/plasteel + name = "plasteel barricade" + desc = "A sturdy and easily assembled barricade made of reinforced plasteel plates, the pinnacle of strongpoints. Use a blowtorch to repair." + icon_state = "new_plasteel_0" + health = 900 + maxhealth = 900 + crusher_resistant = TRUE + force_level_absorption = 20 + stack_type = /obj/item/stack/sheet/plasteel + debris = list(/obj/item/stack/sheet/plasteel) + destroyed_stack_amount = 3 + barricade_type = "new_plasteel" + repair_materials = list("plasteel" = 0.45) + diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 0289397b45..8521902f1a 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -129,8 +129,8 @@ LINEN BINS amount-- var/obj/item/bedsheet/B - if(sheets.len > 0) - B = sheets[sheets.len] + if(length(sheets) > 0) + B = sheets[length(sheets)] sheets.Remove(B) else diff --git a/code/game/objects/structures/blocker.dm b/code/game/objects/structures/blocker.dm index 0171b19d7b..1ea9fde2aa 100644 --- a/code/game/objects/structures/blocker.dm +++ b/code/game/objects/structures/blocker.dm @@ -130,3 +130,13 @@ GLOBAL_VAR_INIT(vehicle_blockers, TRUE) icon_state = "purple_line" visible = TRUE + +/obj/structure/blocker/forcefield/human/bulletproof/get_projectile_hit_boolean() + return TRUE + +// for fuel pump since it's a large sprite. +/obj/structure/blocker/fuelpump + name = "\improper Fuel Pump" + desc = "It is a machine that pumps fuel around the ship." + invisibility = 101 + mouse_opacity = MOUSE_OPACITY_TRANSPARENT diff --git a/code/game/objects/structures/bookcase.dm b/code/game/objects/structures/bookcase.dm index aba4eed6e8..0b7e987180 100644 --- a/code/game/objects/structures/bookcase.dm +++ b/code/game/objects/structures/bookcase.dm @@ -8,6 +8,24 @@ opacity = TRUE unslashable = TRUE +/obj/structure/bookcase/deconstruct(disassembled) + new /obj/item/stack/sheet/metal(loc) + return ..() + +/obj/structure/bookcase/attack_alien(mob/living/carbon/xenomorph/xeno) + if(xeno.a_intent == INTENT_HARM) + if(unslashable) + return + xeno.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] slices [src] apart!"), + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + deconstruct(FALSE) + return XENO_ATTACK_ACTION + else + attack_hand(xeno) + return XENO_NONCOMBAT_ACTION + /obj/structure/bookcase/Initialize() . = ..() for(var/obj/item/I in loc) @@ -21,20 +39,26 @@ O.forceMove(src) update_icon() else if(HAS_TRAIT(O, TRAIT_TOOL_PEN)) - var/newname = stripped_input(usr, "What would you like to title this bookshelf?") + var/newname = stripped_input(user, "What would you like to title this bookshelf?") if(!newname) return else name = ("bookcase ([strip_html(newname)])") playsound(src, "paper_writing", 15, TRUE) + else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) + playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) + if(do_after(user, 1 SECONDS, INTERRUPT_MOVED, BUSY_ICON_FRIENDLY, src)) + user.visible_message("[user] deconstructs [src].", \ + "You deconstruct [src].", "You hear a noise.") + deconstruct(FALSE) else ..() /obj/structure/bookcase/attack_hand(mob/user as mob) - if(contents.len) + if(length(contents)) var/obj/item/book/choice = input("Which book would you like to remove from the shelf?") as null|obj in contents if(choice) - if(usr.is_mob_incapacitated() || !in_range(loc, usr)) + if(user.is_mob_incapacitated() || !in_range(loc, user)) return if(ishuman(user)) if(!user.get_active_hand()) @@ -61,18 +85,17 @@ return /obj/structure/bookcase/update_icon() - if(contents.len < 5) - icon_state = "book-[contents.len]" + if(length(contents) < 5) + icon_state = "book-[length(contents)]" else icon_state = "book-5" /obj/structure/bookcase/manuals/medical - name = "Medical Manuals bookcase" + name = "medical manuals bookcase" /obj/structure/bookcase/manuals/medical/Initialize() . = ..() - new /obj/item/book/manual/medical_cloning(src) new /obj/item/book/manual/medical_diagnostics_manual(src) new /obj/item/book/manual/medical_diagnostics_manual(src) new /obj/item/book/manual/medical_diagnostics_manual(src) @@ -80,21 +103,19 @@ /obj/structure/bookcase/manuals/engineering - name = "Engineering Manuals bookcase" + name = "engineering manuals bookcase" /obj/structure/bookcase/manuals/engineering/Initialize() . = ..() new /obj/item/book/manual/engineering_construction(src) - new /obj/item/book/manual/engineering_particle_accelerator(src) new /obj/item/book/manual/engineering_hacking(src) new /obj/item/book/manual/engineering_guide(src) new /obj/item/book/manual/atmospipes(src) - new /obj/item/book/manual/engineering_singularity_safety(src) new /obj/item/book/manual/evaguide(src) update_icon() /obj/structure/bookcase/manuals/research_and_development - name = "R&D Manuals bookcase" + name = "\improper R&D manuals bookcase" /obj/structure/bookcase/manuals/research_and_development/Initialize() . = ..() diff --git a/code/game/objects/structures/cargo_container.dm b/code/game/objects/structures/cargo_container.dm index 2ea0f4e730..eca331c644 100644 --- a/code/game/objects/structures/cargo_container.dm +++ b/code/game/objects/structures/cargo_container.dm @@ -12,7 +12,7 @@ //Note, for Watatsumi, Grant, and Arious, "left" and "leftmid" are both the left end of the container, but "left" is generic and "leftmid" has the Sat Mover mark on it /obj/structure/cargo_container/watatsumi name = "Watatsumi Cargo Container" - desc = "A huge industrial shipping container.\nThis one is from Watatsumi, a manufacturer of a variety of electronical and mechanical products.\nAtleast, that is what is says on the container. You have literally never heard of this company before." + desc = "A huge industrial shipping container.\nThis one is from Watatsumi, a manufacturer of a variety of electronical and mechanical products.\nAt least, that is what is says on the container. You have literally never heard of this company before." /obj/structure/cargo_container/watatsumi/left icon_state = "watatsumi_l" diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 86e902dbbb..94534b84f4 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -5,6 +5,7 @@ icon_state = "closed" density = TRUE layer = BELOW_OBJ_LAYER + blocks_emissive = EMISSIVE_BLOCK_GENERIC var/icon_closed = "closed" var/icon_opened = "open" var/opened = FALSE @@ -132,7 +133,9 @@ var/obj/item/explosive/plastic/P = I if(P.active) continue - var/item_size = Ceiling(I.w_class / 2) + if(istype(I, /obj/item/handset)) + continue + var/item_size = ceil(I.w_class / 2) if(stored_units + item_size > storage_capacity) continue if(!I.anchored) @@ -163,10 +166,15 @@ /obj/structure/closet/proc/take_damage(damage) + if(health <= 0) + return + health = max(health - damage, 0) if(health <= 0) - for(var/atom/movable/A as anything in src) - A.forceMove(src.loc) + for(var/atom/movable/movable as anything in src) + if(!loc) + break + movable.forceMove(loc) playsound(loc, 'sound/effects/meteorimpact.ogg', 25, 1) qdel(src) @@ -200,7 +208,7 @@ /obj/structure/closet/attack_animal(mob/living/user) if(user.wall_smash) - visible_message(SPAN_DANGER("[user] destroys the [src]. ")) + visible_message(SPAN_DANGER("[user] destroys [src].")) for(var/atom/movable/A as mob|obj in src) A.forceMove(src.loc) qdel(src) @@ -244,8 +252,6 @@ user.visible_message(SPAN_NOTICE("[user] has pried apart [src] with [W]."), "You pry apart [src].") qdel(src) return - if(isrobot(user)) - return user.drop_inv_item_to_loc(W,loc) else if(istype(W, /obj/item/packageWrap) || istype(W, /obj/item/explosive/plastic)) diff --git a/code/game/objects/structures/crates_lockers/closets/fireaxe.dm b/code/game/objects/structures/crates_lockers/closets/fireaxe.dm index ab9dade9ed..113d17f30d 100644 --- a/code/game/objects/structures/crates_lockers/closets/fireaxe.dm +++ b/code/game/objects/structures/crates_lockers/closets/fireaxe.dm @@ -21,7 +21,7 @@ if(fireaxe) hasaxe = 1 - if (isrobot(usr) || src.locked) + if (src.locked) if(HAS_TRAIT(O, TRAIT_TOOL_MULTITOOL)) to_chat(user, SPAN_DANGER("Resetting circuitry...")) playsound(user, 'sound/machines/lockreset.ogg', 25, 1) @@ -140,7 +140,7 @@ set name = "Open/Close" set category = "Object" - if (isrobot(usr) || src.locked || src.smashed) + if (src.locked || src.smashed) if(src.locked) to_chat(usr, SPAN_DANGER("The cabinet won't budge!")) else if(src.smashed) @@ -154,9 +154,6 @@ set name = "Remove Fire Axe" set category = "Object" - if (isrobot(usr)) - return - if (istype(usr, /mob/living/carbon/xenomorph)) return diff --git a/code/game/objects/structures/crates_lockers/closets/malfunction.dm b/code/game/objects/structures/crates_lockers/closets/malfunction.dm deleted file mode 100644 index 704e2c7915..0000000000 --- a/code/game/objects/structures/crates_lockers/closets/malfunction.dm +++ /dev/null @@ -1,16 +0,0 @@ - -/obj/structure/closet/malf/suits - desc = "It's a storage unit for operational gear." - icon_state = "syndicate" - icon_closed = "syndicate" - icon_opened = "syndicate_open" - -/obj/structure/closet/malf/suits/Initialize() - . = ..() - new /obj/item/tank/jetpack/void(src) - new /obj/item/clothing/mask/breath(src) - new /obj/item/clothing/head/helmet/space/uscm(src) - new /obj/item/clothing/suit/space/uscm(src) - new /obj/item/tool/crowbar(src) - new /obj/item/cell(src) - new /obj/item/device/multitool(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm index ae9f15b363..31b142a924 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm @@ -20,6 +20,32 @@ new /obj/item/clothing/head/soft(src) return +/obj/structure/closet/secure_closet/quartermaster_uscm + name = "Quartermaster's Locker" + req_access = list(ACCESS_MARINE_RO) + icon_state = "secureqm1" + icon_closed = "secureqm" + icon_locked = "secureqm1" + icon_opened = "secureqmopen" + icon_broken = "secureqmbroken" + icon_off = "secureqmoff" + +/obj/structure/closet/secure_closet/quartermaster_uscm/Initialize() + . = ..() + new /obj/item/clothing/under/rank/qm_suit(src) + new /obj/item/clothing/head/cmcap/req/ro(src) + new /obj/item/clothing/shoes/marine(src) + new /obj/item/clothing/gloves/yellow(src) + new /obj/item/device/flashlight(src) + new /obj/item/tool/stamp/ro(src) + new /obj/item/device/flash(src) + new /obj/item/clothing/suit/fire/firefighter(src) + new /obj/item/device/megaphone(src) + new /obj/item/clothing/mask/gas(src) + new /obj/item/folder/yellow(src) + new /obj/item/clipboard(src) + return + diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cm_closets.dm b/code/game/objects/structures/crates_lockers/closets/secure/cm_closets.dm index 15bb136f46..d8b07a074f 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/cm_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/cm_closets.dm @@ -106,7 +106,7 @@ GLOBAL_LIST_EMPTY(co_secure_boxes) new /obj/item/clothing/shoes/marine(src) new /obj/item/storage/belt/gun/m4a3(src) new /obj/item/storage/backpack/marine/satchel/intel(src) - new /obj/item/clothing/suit/storage/marine/rto/intel(src) + new /obj/item/clothing/suit/storage/marine/medium/rto/intel(src) new /obj/item/device/motiondetector/intel(src) new /obj/item/tool/crowbar(src) new /obj/item/clothing/accessory/storage/webbing(src) @@ -168,7 +168,7 @@ GLOBAL_LIST_EMPTY(co_secure_boxes) new /obj/item/weapon/gun/energy/taser(src) new /obj/item/weapon/baton(src) new /obj/item/device/flash(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/reagent_container/spray/pepper(src) new /obj/item/storage/pouch/general/medium(src) if(prob(50)) @@ -178,7 +178,7 @@ GLOBAL_LIST_EMPTY(co_secure_boxes) /obj/structure/closet/secure_closet/warrant_officer name = "chief MP's locker" - req_access = list(ACCESS_MARINE_BRIG) + req_access = list(ACCESS_MARINE_ARMORY) icon_state = "secure_locked_warrant" icon_closed = "secure_unlocked_warrant" icon_locked = "secure_locked_warrant" @@ -203,7 +203,7 @@ GLOBAL_LIST_EMPTY(co_secure_boxes) new /obj/item/storage/backpack/satchel/sec(src) new /obj/item/device/flash(src) new /obj/item/reagent_container/spray/pepper(src) - new /obj/item/handcuffs(src) + new /obj/item/restraint/handcuffs(src) new /obj/item/storage/pouch/general/large(src) /obj/structure/closet/secure_closet/military_officer_spare diff --git a/code/game/objects/structures/crates_lockers/closets/secure/freezer.dm b/code/game/objects/structures/crates_lockers/closets/secure/freezer.dm index 323ff50fd6..f42db78dcf 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/freezer.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/freezer.dm @@ -152,8 +152,14 @@ return cooldown = 5 var/containers = 0 + var/containers_ready = FALSE for(var/obj/item/reagent_container/glass/I in freezer.contents) if(I.reagents.replace_with(polymerization_recipe, "paraformaldehyde", 3)) containers++ + if(!I.reagents.has_reagent("formaldehyde", 3) || !I.reagents.has_reagent("water", 3)) + containers_ready = TRUE if(containers > 3) break + + if(containers_ready) //at least 1 container has finished, ring the bell + playsound(freezer.loc, 'sound/machines/ding.ogg', 150) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm b/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm new file mode 100644 index 0000000000..d8b0c984d4 --- /dev/null +++ b/code/game/objects/structures/crates_lockers/closets/secure/kitchen.dm @@ -0,0 +1,143 @@ +//standart fridge + +/obj/structure/closet/secure_closet/fridge + name = "Refrigerator" + icon = 'icons/obj/structures/machinery/kitchen.dmi' + icon_state = "fridge1" + icon_closed = "fridge" + icon_locked = "fridge1" + icon_opened = "fridgeopen" + icon_broken = "fridgebroken" + icon_off = "fridge1" + storage_capacity = 60 //give extra storage capacity so that everything can fit. + +/obj/structure/closet/secure_closet/fridge/update_icon() + if(broken) + icon_state = icon_broken + else + if(!opened) + if(locked) + icon_state = icon_locked + else + icon_state = icon_closed + else + icon_state = icon_opened + +// for almayer. + +// Kitchen preparation room small quantity out of boxes... + +//standart organic storage. + +/obj/structure/closet/secure_closet/fridge/organic + name = "Organic" + +/obj/structure/closet/secure_closet/fridge/organic/Initialize() + . = ..() + for(var/i in 1 to 2) + new /obj/item/reagent_container/food/snacks/grown/apple(src) + new /obj/item/reagent_container/food/snacks/grown/cabbage(src) + new /obj/item/reagent_container/food/snacks/grown/carrot(src) + new /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle(src) + new /obj/item/reagent_container/food/snacks/grown/chili(src) + new /obj/item/reagent_container/food/snacks/grown/corn(src) + new /obj/item/reagent_container/food/snacks/grown/eggplant(src) + new /obj/item/reagent_container/food/snacks/grown/potato(src) + new /obj/item/reagent_container/food/snacks/grown/tomato(src) + new /obj/item/reagent_container/food/snacks/grown/whitebeet(src) + new /obj/item/reagent_container/food/snacks/grown/cherries(src) + new /obj/item/reagent_container/food/snacks/grown/lime(src) + new /obj/item/reagent_container/food/snacks/grown/lemon(src) + new /obj/item/reagent_container/food/snacks/grown/orange(src) + new /obj/item/reagent_container/food/snacks/grown/banana(src) + +//DRy + +/obj/structure/closet/secure_closet/fridge/dry + name = "dry" + +/obj/structure/closet/secure_closet/fridge/dry/Initialize() + . = ..() + for(var/i in 1 to 6) + new /obj/item/reagent_container/food/snacks/flour(src) + for(var/i in 1 to 2) + new /obj/item/reagent_container/food/condiment/sugar(src) + +//grocery + +/obj/structure/closet/secure_closet/fridge/groceries + name = "Groceries" + +/obj/structure/closet/secure_closet/fridge/groceries/Initialize() + . = ..() + for(var/i in 1 to 2) + new /obj/item/reagent_container/food/drinks/milk(src) + new /obj/item/reagent_container/food/drinks/soymilk(src) + new /obj/item/storage/fancy/egg_box(src) + new /obj/item/reagent_container/food/condiment/enzyme(src) + +// Kitchen Reserve big quantity stored in boxes + +//meat surplus +/obj/structure/closet/secure_closet/fridge/meat/stock + name = "meat" + +/obj/structure/closet/secure_closet/fridge/meat/stock/Initialize() + . = ..() + for(var/i in 1 to 2) + new /obj/item/storage/box/meat(src) + +//fish surplus +/obj/structure/closet/secure_closet/fridge/fish/stock + name = "fish" + +/obj/structure/closet/secure_closet/fridge/fish/stock/Initialize() + . = ..() + for(var/i in 1 to 2) + new /obj/item/storage/box/fish(src) + +//groceries to hold milk in bulk +/obj/structure/closet/secure_closet/fridge/groceries/stock + name = "Groceries" + +/obj/structure/closet/secure_closet/fridge/groceries/stock/Initialize() + . = ..() + for(var/i in 1 to 2) + new /obj/item/storage/box/milk(src) + new /obj/item/storage/box/soymilk(src) + for(var/i in 1 to 7) + new /obj/item/storage/fancy/egg_box(src) + new /obj/item/storage/box/enzyme(src) + +//dry storage for dry food only... not a fridge +/obj/structure/closet/secure_closet/fridge/dry/stock + name = "dry" + +/obj/structure/closet/secure_closet/fridge/dry/stock/Initialize() + . = ..() + for(var/i in 1 to 4) + new /obj/item/storage/box/flour(src) + new /obj/item/storage/box/sugar(src) + +// organic storage in bulk + +/obj/structure/closet/secure_closet/fridge/organic/stock + name = "Organic" + +/obj/structure/closet/secure_closet/fridge/organic/stock/Initialize() + . = ..() + new /obj/item/storage/box/apple(src) + new /obj/item/storage/box/banana(src) + new /obj/item/storage/box/chanterelle(src) + new /obj/item/storage/box/cherries(src) + new /obj/item/storage/box/chili(src) + new /obj/item/storage/box/cabbage(src) + new /obj/item/storage/box/carrot(src) + new /obj/item/storage/box/corn(src) + new /obj/item/storage/box/eggplant(src) + new /obj/item/storage/box/lemon(src) + new /obj/item/storage/box/lime(src) + new /obj/item/storage/box/orange(src) + new /obj/item/storage/box/potato(src) + new /obj/item/storage/box/tomato(src) + new /obj/item/storage/box/whitebeet(src) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm index 80a5664567..4f7b14d640 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm @@ -107,8 +107,6 @@ new /obj/item/storage/pouch/medical(src) new /obj/item/storage/pouch/syringe(src) new /obj/item/storage/pouch/medkit(src) - if(is_mainship_level(z)) - new /obj/item/device/radio/headset/almayer/cmo(src) return /obj/structure/closet/secure_closet/chemical name = "chemical closet" @@ -171,3 +169,61 @@ . = ..() new /obj/item/storage/surgical_tray(src) new /obj/item/roller/surgical(src) + +/obj/structure/closet/secure_closet/professor_dummy + name = "professor dummy cabinet" + desc = "An ultrasafe cabinet containing Professor DUMMY and its tablet. Only accessible by Chief Medical Officers and Senior Listed Advisors." + icon_state = "surgical_wall_locked" + icon_closed = "surgical_wall_unlocked" + icon_locked = "surgical_wall_locked" + icon_opened = "surgical_wall_open" + icon_broken = "surgical_wall_spark" + health = null // Unbreakable + unacidable = TRUE + unslashable = TRUE + store_mobs = TRUE + wall_mounted = TRUE + +/obj/structure/closet/secure_closet/professor_dummy/Initialize() + . = ..() + new /mob/living/carbon/human/professor_dummy(src) + +/obj/structure/closet/secure_closet/professor_dummy/togglelock(mob/living/user) + if(user.job == JOB_CMO || user.job == JOB_SEA) + return ..() + + to_chat(user, SPAN_WARNING("Only the [JOB_CMO] or the [JOB_SEA] can toggle this lock.")) + +/obj/structure/closet/secure_closet/professor_dummy/dump_contents() + if(locate(/mob/living/carbon/human/professor_dummy) in src) + visible_message(SPAN_HIGHDANGER("Professor DUMMY should only be used for teaching medical personnel, exclusively done by the [JOB_CMO] or the [JOB_SEA]. Do not abuse it.")) + return ..() + +/obj/structure/closet/secure_closet/professor_dummy/close() + for(var/mob/mob in loc) + if(!istype(mob, /mob/living/carbon/human/professor_dummy)) + visible_message(SPAN_WARNING("[src] won't budge!")) + return + ..() + + // Force locking upon closing it + locked = TRUE + update_icon() + +/obj/structure/closet/secure_closet/professor_dummy/flashbang(datum/source, obj/item/explosive/grenade/flashbang/FB) + return + +/obj/structure/closet/secure_closet/professor_dummy/proc/check_and_destroy_dummy() + var/mob/dummy = locate(/mob/living/carbon/human/professor_dummy) in src + if(dummy) + visible_message(SPAN_DANGER("Something in [src] blows apart!")) + playsound(src, 'sound/effects/metal_crash.ogg', 25, 1) + qdel(dummy) + +/obj/structure/closet/secure_closet/professor_dummy/emp_act(severity) + check_and_destroy_dummy() + ..() + +/obj/structure/closet/secure_closet/professor_dummy/ex_act(severity) + check_and_destroy_dummy() + ..() diff --git a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm index ba974a8e72..6391eeefb4 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm @@ -45,37 +45,37 @@ src.req_access += pick(get_access(ACCESS_LIST_MARINE_MAIN)) /obj/structure/closet/secure_closet/proc/togglelock(mob/living/user) - if(src.opened) + if(opened) to_chat(user, SPAN_NOTICE("Close the locker first.")) return - if(src.broken) + if(broken) to_chat(user, SPAN_WARNING("The locker appears to be broken.")) return if(user.loc == src) to_chat(user, SPAN_NOTICE("You can't reach the lock from inside.")) return - if(src.allowed(user)) + if(allowed(user)) if(slotlocked && ishuman(user)) - var/mob/living/carbon/human/H = user - if(H.wear_id) - var/obj/item/card/id/I = H.wear_id - if(I.claimedgear) + var/mob/living/carbon/human/human = user + var/obj/item/card/id/card = human.get_idcard() + if(card) + if(card.claimedgear) return switch(slotlocktype) if("engi") - if(H.job != "Squad Combat Technician") + if(human.job != "Squad Combat Technician") return // stop people giving medics engineer prep access or IDs somehow if("medic") - if(H.job != "Squad Hospital Corpsman") + if(human.job != "Squad Hospital Corpsman") return // same here - I.claimedgear = 1 // you only get one locker, all other roles have this set 1 by default - slotlocked = 0 // now permanently unlockable + card.claimedgear = TRUE // you only get one locker, all other roles have this set 1 by default + slotlocked = FALSE // now permanently unlockable else return // they have no ID on, fuck them. - src.locked = !src.locked - for(var/mob/O in viewers(user, 3)) - if((O.client && !( O.blinded ))) - to_chat(O, SPAN_NOTICE("The locker has been [locked ? null : "un"]locked by [user].")) + locked = !locked + for(var/mob/mob in viewers(user, 3)) + if((mob.client && !( mob.blinded ))) + to_chat(mob, SPAN_NOTICE("The locker has been [locked ? null : "un"]locked by [user].")) update_icon() else to_chat(user, SPAN_NOTICE("Access Denied")) @@ -90,7 +90,7 @@ else to_chat(user, SPAN_NOTICE("The locker is too small to stuff [W:affecting] into!")) return - if(isrobot(user) || iszombie(user)) + if(iszombie(user)) return user.drop_inv_item_to_loc(W, loc) else if(istype(W, /obj/item/packageWrap) || istype(W, /obj/item/explosive/plastic)) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 9557013268..c668f299db 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -196,6 +196,59 @@ locked = TRUE var/id = null +/obj/structure/closet/secure_closet/brig/prisoner + +/obj/structure/closet/secure_closet/brig/prisoner/Initialize() + . = ..() + new /obj/item/clothing/under/color/orange(src) + new /obj/item/clothing/shoes/orange(src) + new /obj/item/device/radio/headset(src) + +/obj/structure/closet/secure_closet/brig/prison_uni + name = "Spare Prison Uniforms" + req_one_access = list(ACCESS_MARINE_BRIG, ACCESS_CIVILIAN_BRIG) + anchored = TRUE + locked = TRUE + + +/obj/structure/closet/secure_closet/brig/prison_uni/Initialize() + . = ..() + new /obj/item/clothing/shoes/orange(src) + new /obj/item/clothing/shoes/orange(src) + new /obj/item/clothing/shoes/orange(src) + new /obj/item/clothing/shoes/orange(src) + new /obj/item/clothing/shoes/orange(src) + new /obj/item/clothing/under/color/orange(src) + new /obj/item/clothing/under/color/orange(src) + new /obj/item/clothing/under/color/orange(src) + new /obj/item/clothing/under/color/orange(src) + new /obj/item/clothing/under/color/orange(src) + new /obj/item/device/radio/headset(src) + new /obj/item/device/radio/headset(src) + new /obj/item/device/radio/headset(src) + new /obj/item/device/radio/headset(src) + new /obj/item/device/radio/headset(src) + +/obj/structure/closet/secure_closet/brig/restraints + name = "Spare Restraints" + req_one_access = list(ACCESS_MARINE_BRIG, ACCESS_CIVILIAN_BRIG) + anchored = TRUE + locked = TRUE + + +/obj/structure/closet/secure_closet/brig/restraints/Initialize() + . = ..() + new /obj/item/clothing/suit/straight_jacket(src) + new /obj/item/clothing/suit/straight_jacket(src) + new /obj/item/clothing/suit/straight_jacket(src) + new /obj/item/clothing/suit/straight_jacket(src) + new /obj/item/clothing/suit/straight_jacket(src) + new /obj/item/clothing/glasses/sunglasses/blindfold(src) + new /obj/item/clothing/glasses/sunglasses/blindfold(src) + new /obj/item/clothing/glasses/sunglasses/blindfold(src) + new /obj/item/clothing/glasses/sunglasses/blindfold(src) + new /obj/item/clothing/glasses/sunglasses/blindfold(src) + /obj/structure/closet/secure_closet/brig/Initialize() . = ..() new /obj/item/clothing/under/color/orange(src) diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index b000fd5733..0bf39322d1 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -23,7 +23,7 @@ . = ..() #ifndef UNIT_TESTS - switch (pickweight(list("small" = 55, "aid" = 25, "tank" = 10, "both" = 10, "nothing" = 0, "delete" = 0))) + switch (pick_weight(list("small" = 55, "aid" = 25, "tank" = 10, "both" = 10, "nothing" = 1, "delete" = 1))) #else var/test = "both" switch (test) // We don't want randomness in tests diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index 938a6a23cc..f2b55e2279 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -298,6 +298,7 @@ new /obj/item/clothing/under/rank/medical(src) new /obj/item/clothing/under/rank/medical/lightblue(src) new /obj/item/clothing/under/rank/medical/blue(src) + new /obj/item/clothing/under/rank/medical/lightblue(src) new /obj/item/clothing/under/rank/medical/green(src) new /obj/item/clothing/under/rank/medical/purple(src) new /obj/item/clothing/shoes/white(src) diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 9d9aaeb0f3..86bb74820a 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -15,10 +15,17 @@ /// Types this crate can be made into var/list/crate_customizing_types = list( "Plain" = /obj/structure/closet/crate, + "Plain (Green)" = /obj/structure/closet/crate/green, "Weapons" = /obj/structure/closet/crate/weapon, "Supply" = /obj/structure/closet/crate/supply, "Ammo" = /obj/structure/closet/crate/ammo, + "Ammo (Black)" = /obj/structure/closet/crate/ammo/alt, + "Ammo (Flame)" = /obj/structure/closet/crate/ammo/alt/flame, "Construction" = /obj/structure/closet/crate/construction, + "Science" = /obj/structure/closet/crate/science, + "Hydroponics" = /obj/structure/closet/crate/hydroponics, + "Medical" = /obj/structure/closet/crate/medical, + "Internals" = /obj/structure/closet/crate/internals, "Explosives" = /obj/structure/closet/crate/explosives, "Alpha" = /obj/structure/closet/crate/alpha, "Bravo" = /obj/structure/closet/crate/bravo, @@ -90,6 +97,8 @@ var/obj/structure/bed/B = O if(B.buckled_mob) continue + if(istype(O, /obj/item/handset)) + continue O.forceMove(src) itemcount++ @@ -101,8 +110,6 @@ /obj/structure/closet/crate/attackby(obj/item/W as obj, mob/user as mob) if(W.flags_item & ITEM_ABSTRACT) return if(opened) - if(isrobot(user)) - return user.drop_inv_item_to_loc(W, loc) else if(istype(W, /obj/item/packageWrap) || istype(W, /obj/item/stack/fulton)) return @@ -279,13 +286,6 @@ name = "RCD crate" desc = "A crate for the storage of the RCD." -/obj/structure/closet/crate/rcd/Initialize() - . = ..() - new /obj/item/ammo_rcd(src) - new /obj/item/ammo_rcd(src) - new /obj/item/ammo_rcd(src) - new /obj/item/device/rcd(src) - /obj/structure/closet/crate/freezer/rations //Fpr use in the escape shuttle desc = "A crate of emergency rations." name = "Emergency Rations" @@ -295,15 +295,6 @@ new /obj/item/storage/box/donkpockets(src) new /obj/item/storage/box/donkpockets(src) -/* CM doesn't use this. -/obj/structure/closet/crate/bin - desc = "A large bin." - name = "Large bin" - icon_state = "largebin" - icon_opened = "largebinopen" - icon_closed = "largebin" -*/ - /obj/structure/closet/crate/radiation name = "radioactive gear crate" desc = "A crate with a radiation sign on it." @@ -337,7 +328,7 @@ icon_closed = "closed_supply" /obj/structure/closet/crate/trashcart - name = "\improper trash cart" + name = "trash cart" desc = "A heavy, metal trashcart with wheels." icon_state = "closed_trashcart" icon_opened = "open_trashcart" @@ -439,4 +430,3 @@ density = TRUE icon_opened = "open_mcart_y" icon_closed = "closed_mcart_y" - diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm index 955825ec85..24f370a45d 100644 --- a/code/game/objects/structures/crates_lockers/largecrate.dm +++ b/code/game/objects/structures/crates_lockers/largecrate.dm @@ -40,32 +40,18 @@ playsound(src, unpacking_sound, 35) - /// Store the reference of the crate material - var/obj/item/stack/sheet/material_sheet - if(parts_type) // Create the crate material and store its reference - material_sheet = new parts_type(current_turf, 2) - - // Move the objects back to the turf, above the crate material + // Move the contents back to the turf for(var/atom/movable/moving_atom as anything in contents) moving_atom.forceMove(current_turf) - deconstruct(TRUE) - - // Move the crate material to the bottom of the turf's contents - if(material_sheet) - move_to_bottom(material_sheet, current_turf) + if(parts_type) // Create the crate material + new parts_type(current_turf, 2) -/// Custom proc to move an object to the bottom of the turf's contents -/obj/structure/largecrate/proc/move_to_bottom(obj/moving_down, turf/current_turf) - if(!istype(moving_down) || !istype(current_turf)) - return - for(var/atom/movable/checking_atom in current_turf.contents) - if(checking_atom != moving_down) - checking_atom.layer = max(checking_atom.layer, moving_down.layer + 0.1) + deconstruct(TRUE) /obj/structure/largecrate/deconstruct(disassembled = TRUE) if(!disassembled) - new /obj/item/stack/sheet/wood(loc) + new parts_type(loc) return ..() @@ -275,8 +261,80 @@ name = "blue barrel" desc = "A blue storage barrel." icon_state = "barrel_blue" + var/strap_overlay = "+straps" parts_type = /obj/item/stack/sheet/metal unpacking_sound = 'sound/effects/metalhit.ogg' + var/straps = FALSE + +/obj/structure/largecrate/random/barrel/true_random + name = "barrel" + desc = "A barrel." + icon_state = "barrel_recolorable" + desc_lore = "From the future." + var/cap_doodad_state = "" + var/center_doodad_state = "" + var/color_override = null + + +GLOBAL_LIST_EMPTY(rbarrel_cap_states) // Will be set up in generate_barrel_states +GLOBAL_LIST_INIT(rbarrel_center_states, generate_barrel_states()) +GLOBAL_LIST_INIT(rbarrel_color_list, list(COLOR_SILVER, + COLOR_FLOORTILE_GRAY, + COLOR_MAROON, + COLOR_SOFT_RED, + COLOR_LIGHT_GRAYISH_RED, + COLOR_VERY_SOFT_YELLOW, + COLOR_OLIVE, + COLOR_DARK_MODERATE_LIME_GREEN, + COLOR_TEAL, + COLOR_MODERATE_BLUE, + COLOR_PURPLE, + COLOR_STRONG_VIOLET, + LIGHT_BEIGE, + COLOR_DARK_MODERATE_ORANGE, + COLOR_BROWN, + COLOR_DARK_BROWN)) + +/proc/generate_barrel_states() + var/list/rbarrel_center_states = list() + var/icon/icon = new('icons/obj/structures/crates.dmi') + var/list/icon_list = icon_states(icon) + for(var/state in icon_list) + if(findtext(state,"+cap")) + GLOB.rbarrel_cap_states.Add(state) + if(findtext(state,"+center")) + rbarrel_center_states.Add(state) + // We are returning rbarrel_center_states (rather than setting GLOB) because we are called by the global initializer to set it + return rbarrel_center_states + +/obj/structure/largecrate/random/barrel/true_random/Initialize() + . = ..() + + var/image/center_coloring = image(icon, src,"+_center") + + if(!color_override) + center_coloring.color = pick(GLOB.rbarrel_color_list) + + center_coloring.appearance_flags = RESET_COLOR|KEEP_APART + overlays += center_coloring + if(prob(25)) + cap_doodad_state = pick(GLOB.rbarrel_cap_states) + overlays += image(icon,src,cap_doodad_state) + if(prob(50)) + center_doodad_state = pick(GLOB.rbarrel_center_states) + overlays += image(icon,src,center_doodad_state) + +/obj/structure/largecrate/random/barrel/Initialize() + . = ..() + if(overlays) + overlays.Cut() + if(straps) + overlays += image(icon,icon_state = "+straps") + +/obj/structure/largecrate/random/barrel/unpack() + if(overlays) + overlays.Cut() + . = ..() /obj/structure/largecrate/random/barrel/blue name = "blue barrel" @@ -287,6 +345,7 @@ name = "red barrel" desc = "A red storage barrel." icon_state = "barrel_red" + straps = TRUE//the original sprite had straps, anyway, this is a harmless instance /obj/structure/largecrate/random/barrel/green name = "green barrel" diff --git a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm index 9a45b4256d..6025740161 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_supplies.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_supplies.dm @@ -10,7 +10,7 @@ var/list/T = list() for(var/turf/open/O in range(1)) T += O - if(supply.len) + if(length(supply)) for(var/s in supply) var/amount = supply[s] for(var/i = 1, i <= amount, i++) @@ -93,7 +93,7 @@ /obj/structure/largecrate/supply/Initialize() . = ..() - if(supplies.len) + if(length(supplies)) for(var/s in supplies) var/amount = supplies[s] for(var/i = 1, i <= amount, i++) diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm index 735e91aa53..0dcca5ecda 100644 --- a/code/game/objects/structures/displaycase.dm +++ b/code/game/objects/structures/displaycase.dm @@ -58,7 +58,7 @@ /obj/structure/displaycase/attackby(obj/item/W as obj, mob/user as mob) - src.health -= W.force + src.health -= W.force * W.demolition_mod src.healthcheck() ..() return diff --git a/code/game/objects/structures/electricchair.dm b/code/game/objects/structures/electricchair.dm deleted file mode 100644 index 239df3c059..0000000000 --- a/code/game/objects/structures/electricchair.dm +++ /dev/null @@ -1,47 +0,0 @@ -/obj/structure/bed/chair/e_chair - name = "electric chair" - desc = "Looks absolutely SHOCKING!" - icon_state = "echair1" - var/last_time = 1 - -/obj/structure/bed/chair/e_chair/New() - ..() - overlays += image('icons/obj/objects.dmi', src, "echair_over", MOB_LAYER + 1, dir) - - -/obj/structure/bed/chair/e_chair/rotate() - ..() - overlays.Cut() - overlays += image('icons/obj/objects.dmi', src, "echair_over", MOB_LAYER + 1, dir) //there's probably a better way of handling this, but eh. -Pete - return - -/obj/structure/bed/chair/e_chair/proc/shock() - if(last_time + 50 > world.time) - return - last_time = world.time - - // special power handling - var/area/A = get_area(src) - if(!isarea(A)) - return - if(!A.powered(POWER_CHANNEL_EQUIP)) - return - A.use_power(5000) - var/light = A.power_light - A.updateicon() - - flick("echair1", src) - var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread - s.set_up(12, 1, src) - s.start() - if(buckled_mob) - buckled_mob.burn_skin(85) - to_chat(buckled_mob, SPAN_DANGER("You feel a deep shock course through your body!")) - sleep(1) - buckled_mob.burn_skin(85) - buckled_mob.apply_effect(600, STUN) - visible_message(SPAN_DANGER("The electric chair went off!"), SPAN_DANGER("You hear a deep sharp shock!")) - - A.power_light = light - A.updateicon() - return diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm index 7175dd9358..eb88fcf646 100644 --- a/code/game/objects/structures/extinguisher.dm +++ b/code/game/objects/structures/extinguisher.dm @@ -6,13 +6,15 @@ anchored = TRUE density = FALSE unslashable = TRUE - var/obj/item/tool/extinguisher/has_extinguisher = new/obj/item/tool/extinguisher + var/obj/item/tool/extinguisher/has_extinguisher var/opened = 0 var/base_icon /obj/structure/extinguisher_cabinet/Initialize() . = ..() base_icon = initial(icon_state) + has_extinguisher = new /obj/item/tool/extinguisher() + has_extinguisher.forceMove(src) /obj/structure/extinguisher_cabinet/lifeboat name = "extinguisher cabinet" @@ -22,15 +24,13 @@ /obj/structure/extinguisher_cabinet/alt icon_state = "extinguisher_alt" -/obj/structure/extinguisher_cabinet/attackby(obj/item/O, mob/user) - if(isrobot(user)) - return - if(istype(O, /obj/item/tool/extinguisher)) +/obj/structure/extinguisher_cabinet/attackby(obj/item/item, mob/user) + if(istype(item, /obj/item/tool/extinguisher)) if(!has_extinguisher && opened) user.drop_held_item() - contents += O - has_extinguisher = O - to_chat(user, SPAN_NOTICE("You place [O] in [src].")) + item.forceMove(src) + has_extinguisher = item + to_chat(user, SPAN_NOTICE("You place [item] in [src].")) else opened = !opened else @@ -39,14 +39,11 @@ /obj/structure/extinguisher_cabinet/attack_hand(mob/user) - if(isrobot(user)) - return - if(has_extinguisher) user.put_in_hands(has_extinguisher) to_chat(user, SPAN_NOTICE("You take [has_extinguisher] from [src].")) has_extinguisher = null - opened = 1 + opened = TRUE else opened = !opened update_icon() diff --git a/code/game/objects/structures/fence.dm b/code/game/objects/structures/fence.dm index 6a4b479929..93d9d7727e 100644 --- a/code/game/objects/structures/fence.dm +++ b/code/game/objects/structures/fence.dm @@ -153,6 +153,10 @@ M.apply_damage(20) health -= 50 + M.attack_log += text("\[[time_stamp()]\] was slammed against [src] by [key_name(user)]") + user.attack_log += text("\[[time_stamp()]\] slammed [key_name(M)] against [src]") + msg_admin_attack("[key_name(user)] slammed [key_name(M)] against [src] at [get_area_name(M)]", M.loc.x, M.loc.y, M.loc.z) + healthcheck(1, 1, M) //The person thrown into the window literally shattered it return @@ -171,9 +175,9 @@ else switch(W.damtype) if("fire") - health -= W.force + health -= W.force * W.demolition_mod if("brute") - health -= W.force * 0.1 + health -= W.force * W.demolition_mod * 0.1 healthcheck(1, 1, user, W) ..() @@ -210,7 +214,7 @@ //This proc is used to update the icons of nearby windows. /obj/structure/fence/proc/update_nearby_icons() update_icon() - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/fence/W in get_step(src, direction)) W.update_icon() @@ -231,6 +235,6 @@ /obj/structure/fence/fire_act(exposed_temperature, exposed_volume) if(exposed_temperature > T0C + 800) - health -= round(exposed_volume / 100) + health -= floor(exposed_volume / 100) healthcheck(0) //Don't make hit sounds, it's dumb with fire/heat ..() diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 3461b9049e..f56b56f8f2 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -74,7 +74,7 @@ PLANT_CUT_MACHETE = 3 = Needs at least a machete to be cut down /obj/structure/flora/proc/spread_fire() SIGNAL_HANDLER - for(var/D in cardinal) //Spread fire + for(var/D in GLOB.cardinals) //Spread fire var/turf/T = get_step(src.loc, D) if(T) for(var/obj/structure/flora/F in T) @@ -726,7 +726,7 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. //this bush marks the edge of the map, you can't destroy it to_chat(user, SPAN_DANGER("You chop at the undergrowth, but it's too thick here.")) else - user.visible_message(SPAN_DANGER("[user] chops at the [src] with [I]."),SPAN_DANGER("You chop at the [src] with [I].")) + user.visible_message(SPAN_DANGER("[user] chops at [src] with [I]."), SPAN_DANGER("You chop at [src] with [I].")) playsound(src.loc, 'sound/effects/vegetation_hit.ogg', 25, 1) health -= damage if(health < 0) @@ -759,4 +759,3 @@ ICEY GRASS. IT LOOKS LIKE IT'S MADE OF ICE. desc = "Looks like some of that fruit might be edible." icon_tag = "plant" variations = 7 - diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 6cd6a5cd03..325af12c81 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -110,6 +110,10 @@ if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return + for(var/obj/object in loc) + if(object.density) + to_chat(user, SPAN_WARNING("[object] is blocking you from welding [src] together!")) + return if(do_after(user,30, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) if(QDELETED(src)) return @@ -332,9 +336,8 @@ if(P.ammo.damage_type == BURN) dmg = P.damage else - dmg = round(P.damage * 0.5) + dmg = floor(P.damage * 0.5) if(dmg) - health -= dmg take_damage(dmg) bullet_ping(P) if(health <= 0) @@ -342,7 +345,9 @@ return TRUE /obj/structure/girder/proc/take_damage(damage) - health = max(health - damage, 0) + health -= damage + if(health <= -100) + qdel(src) if(health <= 0) update_state() @@ -356,10 +361,11 @@ update_state() /obj/structure/girder/proc/update_state() - if (health <= 0) + if(health <= 0 && density) icon_state = "[icon_state]_damaged" density = FALSE - else + + else if(health > 0 && !density) var/underscore_position = findtext(icon_state,"_") var/new_state = copytext(icon_state, 1, underscore_position) icon_state = new_state diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index 0f864ee2f1..31d7ee5c9b 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -112,7 +112,7 @@ if(Proj.ammo.damage_type == HALLOSS) return 0 - src.health -= round(Proj.damage*0.3) + src.health -= floor(Proj.damage*0.3) healthcheck() return 1 @@ -166,7 +166,7 @@ if (ST.use(1)) var/obj/structure/window/WD = new wtype(loc) WD.set_constructed_window(dir_to_set) - to_chat(user, SPAN_NOTICE("You place the [WD] on [src].")) + to_chat(user, SPAN_NOTICE("You place [WD] on [src].")) return //window placing end diff --git a/code/game/objects/structures/inflatable.dm b/code/game/objects/structures/inflatable.dm index c67c7381f7..2e02be02b8 100644 --- a/code/game/objects/structures/inflatable.dm +++ b/code/game/objects/structures/inflatable.dm @@ -179,9 +179,6 @@ /obj/structure/inflatable/door/attack_remote(mob/user as mob) //those aren't machinery, they're just big fucking slabs of a mineral if(isRemoteControlling(user)) //so the AI can't open it return - else if(isrobot(user)) //but cyborgs can - if(get_dist(user,src) <= 1) //not remotely though - return TryToSwitchState(user) /obj/structure/inflatable/door/attack_hand(mob/user as mob) return TryToSwitchState(user) @@ -262,6 +259,7 @@ /obj/item/storage/briefcase/inflatable name = "inflatable barrier box" desc = "Contains inflatable walls and doors." + icon = 'icons/obj/items/storage/boxes.dmi' icon_state = "inf_box" item_state = "syringe_kit" max_storage_space = 21 diff --git a/code/game/objects/structures/ladders.dm b/code/game/objects/structures/ladders.dm index da6d4f1a82..88321053ef 100644 --- a/code/game/objects/structures/ladders.dm +++ b/code/game/objects/structures/ladders.dm @@ -178,9 +178,6 @@ add_fingerprint(usr) -/obj/structure/ladder/attack_robot(mob/user as mob) - return attack_hand(user) - /obj/structure/ladder/ex_act(severity) return @@ -262,11 +259,8 @@ /obj/structure/ladder/fragile_almayer/Initialize() . = ..() - GLOB.hijack_bustable_ladders += src - -/obj/structure/ladder/fragile_almayer/Destroy() - GLOB.hijack_bustable_ladders -= src - return ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(deconstruct)) /obj/structure/ladder/fragile_almayer/deconstruct() new /obj/structure/prop/broken_ladder(loc) diff --git a/code/game/objects/structures/lamarr_cage.dm b/code/game/objects/structures/lamarr_cage.dm index 8751c3f3aa..02fe06723a 100644 --- a/code/game/objects/structures/lamarr_cage.dm +++ b/code/game/objects/structures/lamarr_cage.dm @@ -54,8 +54,8 @@ /obj/structure/lamarr/attackby(obj/item/W as obj, mob/user as mob) - src.health -= W.force - src.healthcheck() + health -= W.force * W.demolition_mod + healthcheck() ..() return diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 81ec524026..fc9d5e89d3 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -20,14 +20,14 @@ icon = 'icons/obj/structures/props/smoothlattice.dmi' icon_state = "latticeblank" updateOverlays() - for (var/dir in cardinal) + for (var/dir in GLOB.cardinals) var/obj/structure/lattice/L if(locate(/obj/structure/lattice, get_step(src, dir))) L = locate(/obj/structure/lattice, get_step(src, dir)) L.updateOverlays() /obj/structure/lattice/Destroy() - for (var/dir in cardinal) + for (var/dir in GLOB.cardinals) var/obj/structure/lattice/L if(locate(/obj/structure/lattice, get_step(src, dir))) L = locate(/obj/structure/lattice, get_step(src, dir)) @@ -74,7 +74,7 @@ var/dir_sum = 0 - for (var/direction in cardinal) + for (var/direction in GLOB.cardinals) if(locate(/obj/structure/lattice, get_step(src, direction))) dir_sum += direction else diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm index 552f581e4f..0f828dec26 100644 --- a/code/game/objects/structures/mineral_doors.dm +++ b/code/game/objects/structures/mineral_doors.dm @@ -32,9 +32,6 @@ /obj/structure/mineral_door/attack_remote(mob/user as mob) //those aren't machinery, they're just big fucking slabs of a mineral if(isRemoteControlling(user)) //so the AI can't open it return - else if(isrobot(user)) //but cyborgs can - if(get_dist(user,src) <= 1) //not remotely though - return TryToSwitchState(user) /obj/structure/mineral_door/attack_hand(mob/user as mob) return TryToSwitchState(user) @@ -104,7 +101,7 @@ Dismantle() else if(!(W.flags_item & NOBLUDGEON) && W.force) user.animation_attack_on(src) - hardness -= W.force/100 + hardness -= W.force/100 * W.demolition_mod to_chat(user, "You hit the [name] with your [W.name]!") CheckHardness() else diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm index a8d7684331..0ee7453782 100644 --- a/code/game/objects/structures/mirror.dm +++ b/code/game/objects/structures/mirror.dm @@ -121,10 +121,10 @@ playsound(loc, 'sound/effects/Glasshit.ogg', 25, 1) return if(shattered) - playsound(src.loc, 'sound/effects/hit_on_shattered_glass.ogg', 25, 1) + playsound(loc, 'sound/effects/hit_on_shattered_glass.ogg', 25, 1) user.visible_message(SPAN_WARNING("[user] hits [src] with [I], but it's already broken!"), SPAN_WARNING("You hit [src] with [I], but it's already broken!")) return - if(prob(I.force * 2)) + if(prob(I.force * I.demolition_mod * 2)) user.visible_message(SPAN_WARNING("[user] smashes [src] with [I]!"), SPAN_WARNING("You smash [src] with [I]!")) shatter() else diff --git a/code/game/objects/structures/misc.dm b/code/game/objects/structures/misc.dm index 971f22a5e5..3dc4931aa4 100644 --- a/code/game/objects/structures/misc.dm +++ b/code/game/objects/structures/misc.dm @@ -8,6 +8,20 @@ unslashable = TRUE health = 250 +/obj/structure/showcase/attack_alien(mob/living/carbon/xenomorph/xeno) + if(xeno.a_intent == INTENT_HARM) + if(unslashable) + return + xeno.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] slices [src] apart!"), + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + deconstruct(FALSE) + return XENO_ATTACK_ACTION + else + attack_hand(xeno) + return XENO_NONCOMBAT_ACTION + /obj/structure/showcase/initialize_pass_flags(datum/pass_flags_container/PF) ..() if (PF) diff --git a/code/game/objects/structures/morgue.dm b/code/game/objects/structures/morgue.dm index 3733e0b836..2f3ef45024 100644 --- a/code/game/objects/structures/morgue.dm +++ b/code/game/objects/structures/morgue.dm @@ -31,7 +31,7 @@ if(morgue_open) icon_state = "[morgue_type]0" else - if(contents.len > 1) //not counting the morgue tray + if(length(contents) > 1) //not counting the morgue tray icon_state = "[morgue_type]2" else icon_state = "[morgue_type]1" @@ -218,7 +218,7 @@ if(cremating) return - if(contents.len <= 1) //1 because the tray is inside. + if(length(contents) <= 1) //1 because the tray is inside. visible_message(SPAN_DANGER("You hear a hollow crackle.")) else visible_message(SPAN_DANGER("You hear a roar as the crematorium activates.")) diff --git a/code/game/objects/structures/noticeboard.dm b/code/game/objects/structures/noticeboard.dm index 73314bf91d..c516f863f7 100644 --- a/code/game/objects/structures/noticeboard.dm +++ b/code/game/objects/structures/noticeboard.dm @@ -1,81 +1,112 @@ +#define MAX_NOTICES 8 + /obj/structure/noticeboard name = "notice board" desc = "A board for pinning important notices upon." icon = 'icons/obj/structures/props/stationobjs.dmi' - icon_state = "nboard00" + icon_state = "noticeboard" density = FALSE anchored = TRUE unslashable = TRUE var/notices = 0 -/obj/structure/noticeboard/Initialize() +/obj/structure/noticeboard/Initialize(mapload) . = ..() + if(!mapload) + return + for(var/obj/item/I in loc) - if(notices > 4) break + if(notices >= MAX_NOTICES) + break if(istype(I, /obj/item/paper)) I.forceMove(src) notices++ - icon_state = "nboard0[notices]" + update_overlays() //attaching papers!! -/obj/structure/noticeboard/attackby(obj/item/O as obj, mob/user as mob) - if(istype(O, /obj/item/paper)) - if(notices < 5) - O.add_fingerprint(user) - add_fingerprint(user) - user.drop_held_item() - O.forceMove(src) +/obj/structure/noticeboard/attackby(obj/item/O, mob/user, params) + if(istype(O, /obj/item/paper) || istype(O, /obj/item/photo)) + if(!allowed(user)) + to_chat(user, SPAN_WARNING("You are not authorized to add notices!")) + return + if(notices < MAX_NOTICES) + if(!user.drop_inv_item_to_loc(O, src)) + return notices++ - icon_state = "nboard0[notices]" //update sprite - to_chat(user, SPAN_NOTICE("You pin the paper to the noticeboard.")) + update_overlays() + to_chat(user, SPAN_NOTICE("You pin the [O] to the noticeboard.")) else - to_chat(user, SPAN_NOTICE("You reach to pin your paper to the board but hesitate. You are certain your paper will not be seen among the many others already attached.")) + to_chat(user, SPAN_WARNING("The notice board is full!")) + else if(istype(O, /obj/item/tool/pen)) + user.set_interaction(src) + tgui_interact(user) + else + return ..() -/obj/structure/noticeboard/attack_hand(user as mob) - var/dat = "Noticeboard
    " - for(var/obj/item/paper/P in src) - dat += "[P.name] Write Remove
    " - user << browse("Notices[dat]","window=noticeboard") - onclose(user, "noticeboard") +/obj/structure/noticeboard/attack_hand(mob/user) + . = ..() + user.set_interaction(src) + tgui_interact(user) +/obj/structure/noticeboard/ui_state(mob/user) + return GLOB.physical_state -/obj/structure/noticeboard/Topic(href, href_list) - ..() - usr.set_interaction(src) - if(href_list["remove"]) - if((usr.stat || usr.is_mob_restrained())) //For when a player is handcuffed while they have the notice window open - return - var/obj/item/P = locate(href_list["remove"]) - if((P && P.loc == src)) - P.forceMove(get_turf(src) )//dump paper on the floor because you're a clumsy fuck - P.add_fingerprint(usr) - add_fingerprint(usr) - notices-- - icon_state = "nboard0[notices]" +/obj/structure/noticeboard/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "NoticeBoard", name) + ui.open() - if(href_list["write"]) - if((usr.stat || usr.is_mob_restrained())) //For when a player is handcuffed while they have the notice window open - return - var/obj/item/P = locate(href_list["write"]) +/obj/structure/noticeboard/ui_data(mob/user) + var/list/data = list() + data["allowed"] = allowed(user) + data["items"] = list() + for(var/obj/item/content in contents) + var/list/content_data = list( + name = content.name, + ref = REF(content) + ) + data["items"] += list(content_data) + return data + +/obj/structure/noticeboard/ui_act(action, params) + . = ..() + if(.) + return + + var/obj/item/item = locate(params["ref"]) in contents + if(!istype(item) || item.loc != src) + return + + var/mob/user = usr + + switch(action) + if("examine") + user.examinate(item) + return TRUE + if("write") + var/obj/item/writing_tool = user.get_held_item() + if(!istype(writing_tool, /obj/item/tool/pen)) + balloon_alert(user, "you need a pen for that!") + return + item.attackby(writing_tool, user) + return TRUE + if("remove") + if(!allowed(user)) + return + remove_item(item, user) + return TRUE + +/obj/structure/noticeboard/proc/update_overlays() + if(overlays) overlays.Cut() + if(notices) + overlays += image(icon, "notices_[notices]") - if((P && P.loc == src)) //ifthe paper's on the board - if(HAS_TRAIT(usr.r_hand, TRAIT_TOOL_PEN)) - add_fingerprint(usr) - P.attackby(usr.r_hand, usr) //then do ittttt - else - if(HAS_TRAIT(usr.l_hand, TRAIT_TOOL_PEN)) //check other hand for pen - add_fingerprint(usr) - P.attackby(usr.l_hand, usr) - else - to_chat(usr, SPAN_NOTICE("You'll need something to write with!")) +/obj/structure/noticeboard/proc/remove_item(obj/item/item, mob/user) + item.forceMove(loc) + if(user) + user.put_in_hands(item) + balloon_alert(user, "removed from board") + notices-- + update_overlays() - if(href_list["read"]) - var/obj/item/paper/P = locate(href_list["read"]) - if((P && P.loc == src)) - if(!( istype(usr, /mob/living/carbon/human) )) - usr << browse("[P.name][stars(P.info)]", "window=[P.name]") - onclose(usr, "[P.name]") - else - usr << browse("[P.name][P.info]", "window=[P.name]") - onclose(usr, "[P.name]") - return diff --git a/code/game/objects/structures/pipes/standard/standard_misc.dm b/code/game/objects/structures/pipes/standard/standard_misc.dm index dc52da57c7..d0028ce862 100644 --- a/code/game/objects/structures/pipes/standard/standard_misc.dm +++ b/code/game/objects/structures/pipes/standard/standard_misc.dm @@ -120,6 +120,7 @@ dir = SOUTH valid_directions = list(SOUTH) density = TRUE + layer = OBJ_LAYER var/actual_icon_state = "air" /obj/structure/pipes/standard/tank/New() diff --git a/code/game/objects/structures/pipes/vents/pump_scrubber.dm b/code/game/objects/structures/pipes/vents/pump_scrubber.dm index a4565c610a..acc8b4784a 100644 --- a/code/game/objects/structures/pipes/vents/pump_scrubber.dm +++ b/code/game/objects/structures/pipes/vents/pump_scrubber.dm @@ -21,6 +21,35 @@ name = "Reinforced Air Vent" explodey = FALSE +/// Vents that are linked to ARES Security Protocols, allowing the ARES Interface to trigger security measures. +/obj/structure/pipes/vents/pump/no_boom/gas + name = "Security Air Vent" + var/datum/ares_link/link + var/vent_tag + COOLDOWN_DECLARE(vent_trigger_cooldown) + +/obj/structure/pipes/vents/pump/no_boom/gas/Initialize() + link_systems(override = FALSE) + . = ..() + +/obj/structure/pipes/vents/pump/no_boom/gas/Destroy() + delink() + return ..() + +/obj/structure/pipes/vents/pump/no_boom/gas/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) + if(link && !override) + return FALSE + delink() + if(new_link) + link = new_link + new_link.linked_vents += src + return TRUE + +/obj/structure/pipes/vents/pump/no_boom/gas/proc/delink() + if(link) + link.linked_vents -= src + link = null + /obj/structure/pipes/vents/pump/on icon_state = "on" diff --git a/code/game/objects/structures/pipes/vents/vents.dm b/code/game/objects/structures/pipes/vents/vents.dm index 926f14cd2f..cf9c64058a 100644 --- a/code/game/objects/structures/pipes/vents/vents.dm +++ b/code/game/objects/structures/pipes/vents/vents.dm @@ -178,7 +178,7 @@ addtimer(CALLBACK(src, PROC_REF(release_gas), radius), warning_time) /obj/structure/pipes/vents/proc/release_gas(radius = 4) - radius = Clamp(radius, 1, 10) + radius = clamp(radius, 1, 10) if(!gas_holder || welded) return FALSE playsound(loc, 'sound/effects/smoke.ogg', 25, 1, 4) diff --git a/code/game/objects/structures/platforms.dm b/code/game/objects/structures/platforms.dm index ad1c88928f..60515dee06 100644 --- a/code/game/objects/structures/platforms.dm +++ b/code/game/objects/structures/platforms.dm @@ -144,7 +144,6 @@ icon_state = "kutjevo_platform" name = "raised metal edge" desc = "A raised level of metal, often used to elevate areas above others, or construct bridges. You could probably climb it." - climb_delay = 10 /obj/structure/platform_decoration/kutjevo name = "raised metal corner" diff --git a/code/game/objects/structures/prop_mech.dm b/code/game/objects/structures/prop_mech.dm new file mode 100644 index 0000000000..c2df2eb93c --- /dev/null +++ b/code/game/objects/structures/prop_mech.dm @@ -0,0 +1,175 @@ +/obj/structure/prop/mech + icon = 'icons/obj/structures/props/mech.dmi' + +/obj/structure/prop/mech/hydralic_clamp + name = "Hydraulic Clamp" + icon_state = "mecha_clamp" + +/obj/structure/prop/mech/drill + name = "Drill" + desc = "This is the drill that'll pierce the heavens!" + icon_state = "mecha_drill" + +/obj/structure/prop/mech/armor_booster + name = "Armor Booster Module (Close Combat Weaponry)" + desc = "Boosts exosuit armor against armed melee attacks. Requires energy to operate." + icon_state = "mecha_abooster_ccw" + +/obj/structure/prop/mech/repair_droid + name = "Repair Droid" + desc = "Automated repair droid. Scans exosuit for damage and repairs it. Can fix almost all types of external or internal damage." + icon_state = "repair_droid" + +/obj/structure/prop/mech/tesla_energy_relay + name = "Energy Relay" + desc = "Wirelessly drains energy from any available power channel in area. The performance index is quite low." + icon_state = "tesla" + +/obj/structure/prop/mech/parts + name = "mecha part" + flags_atom = FPRINT|CONDUCT + +/obj/structure/prop/mech/parts/chassis + name="Mecha Chassis" + icon_state = "backbone" + +// ripley to turn into P-1000 an Older version of the P-5000 to anchor it more into the lore... +/obj/structure/prop/mech/parts/chassis/ripley + name = "P-1000 Chassis" + icon_state = "ripley_chassis" +/obj/structure/prop/mech/parts/chassis/firefighter + name = "Firefighter Chassis" + icon_state = "ripley_chassis" +/obj/structure/prop/mech/parts/ripley_torso + name="P-1000 Torso" + desc="A torso part of P-1000 APLU. Contains power unit, processing core and life support systems." + icon_state = "ripley_harness" +/obj/structure/prop/mech/parts/ripley_left_arm + name="P-1000 Left Arm" + desc="A P-1000 APLU left arm. Data and power sockets are compatible with most exosuit tools." + icon_state = "ripley_l_arm" +/obj/structure/prop/mech/parts/ripley_right_arm + name="P-1000 Right Arm" + desc="A P-1000 APLU right arm. Data and power sockets are compatible with most exosuit tools." + icon_state = "ripley_r_arm" +/obj/structure/prop/mech/parts/ripley_left_leg + name="P-1000 Left Leg" + desc="A P-1000 APLU left leg. Contains somewhat complex servodrives and balance maintaining systems." + icon_state = "ripley_l_leg" +/obj/structure/prop/mech/parts/ripley_right_leg + name="P-1000 Right Leg" + desc="A P-1000 APLU right leg. Contains somewhat complex servodrives and balance maintaining systems." + icon_state = "ripley_r_leg" + +//gygax turned into MAX (Mobile Assault Exo-Warrior)look like a gygax from afar +/obj/structure/prop/mech/parts/chassis/gygax + name = "MAX Chassis" + icon_state = "gygax_chassis" +/obj/structure/prop/mech/parts/gygax_torso + name="MAX Torso" + desc="A torso part of MAX. Contains power unit, processing core and life support systems. Has an additional equipment slot." + icon_state = "gygax_harness" +/obj/structure/prop/mech/parts/gygax_head + name="MAX Head" + desc="A MAX head. Houses advanced surveilance and targeting sensors." + icon_state = "gygax_head" +/obj/structure/prop/mech/parts/gygax_left_arm + name="MAX Left Arm" + desc="A MAX left arm. Data and power sockets are compatible with most exosuit tools and weapons." + icon_state = "gygax_l_arm" +/obj/structure/prop/mech/parts/gygax_right_arm + name="MAX Right Arm" + desc="A MAX right arm. Data and power sockets are compatible with most exosuit tools and weapons." + icon_state = "gygax_r_arm" +/obj/structure/prop/mech/parts/gygax_left_leg + name="MAX Left Leg" + icon_state = "gygax_l_leg" +/obj/structure/prop/mech/parts/gygax_right_leg + name="MAX Right Leg" + icon_state = "gygax_r_leg" +/obj/structure/prop/mech/parts/gygax_armor + name="MAX Armor Plates" + icon_state = "gygax_armor" + +// durand MOX (mobile offensive exo-warrior) look like a durand from afar. +/obj/structure/prop/mech/parts/chassis/durand + name = "MOX Chassis" + icon_state = "durand_chassis" +/obj/structure/prop/mech/parts/durand_torso + name="MOX Torso" + icon_state = "durand_harness" +/obj/structure/prop/mech/parts/durand_head + name="MOX Head" + icon_state = "durand_head" +/obj/structure/prop/mech/parts/durand_left_arm + name="MOX Left Arm" + icon_state = "durand_l_arm" +/obj/structure/prop/mech/parts/durand_right_arm + name="MOX Right Arm" + icon_state = "durand_r_arm" +/obj/structure/prop/mech/parts/durand_left_leg + name="MOX Left Leg" + icon_state = "durand_l_leg" +/obj/structure/prop/mech/parts/durand_right_leg + name="MOX Right Leg" + icon_state = "durand_r_leg" +/obj/structure/prop/mech/parts/durand_armor + name="MOX Armor Plates" + icon_state = "durand_armor" + +// phazon currently not in use. could be deleted... +/obj/structure/prop/mech/parts/chassis/phazon + name = "Phazon Chassis" + icon_state = "phazon_chassis" +/obj/structure/prop/mech/parts/phazon_torso + name="Phazon Torso" + icon_state = "phazon_harness" +/obj/structure/prop/mech/parts/phazon_head + name="Phazon Head" + icon_state = "phazon_head" +/obj/structure/prop/mech/parts/phazon_left_arm + name="Phazon Left Arm" + icon_state = "phazon_l_arm" +/obj/structure/prop/mech/parts/phazon_right_arm + name="Phazon Right Arm" + icon_state = "phazon_r_arm" +/obj/structure/prop/mech/parts/phazon_left_leg + name="Phazon Left Leg" + icon_state = "phazon_l_leg" +/obj/structure/prop/mech/parts/phazon_right_leg + name="Phazon Right Leg" + icon_state = "phazon_r_leg" +/obj/structure/prop/mech/parts/phazon_armor_plates + name="Phazon Armor Plates" + icon_state = "phazon_armor" + +// odysseus currently not in use could be deleted... +/obj/structure/prop/mech/parts/chassis/odysseus + name = "Odysseus Chassis" + icon_state = "odysseus_chassis" +/obj/structure/prop/mech/parts/odysseus_head + name="Odysseus Head" + icon_state = "odysseus_head" +/obj/structure/prop/mech/parts/odysseus_torso + name="Odysseus Torso" + desc="A torso part of Odysseus. Contains power unit, processing core and life support systems." + icon_state = "odysseus_torso" +/obj/structure/prop/mech/parts/odysseus_left_arm + name="Odysseus Left Arm" + desc="An Odysseus left arm. Data and power sockets are compatible with most exosuit tools." + icon_state = "odysseus_l_arm" +/obj/structure/prop/mech/parts/odysseus_right_arm + name="Odysseus Right Arm" + desc="An Odysseus right arm. Data and power sockets are compatible with most exosuit tools." + icon_state = "odysseus_r_arm" +/obj/structure/prop/mech/parts/odysseus_left_leg + name="Odysseus Left Leg" + desc="An Odysseus left leg. Contains somewhat complex servodrives and balance maintaining systems." + icon_state = "odysseus_l_leg" +/obj/structure/prop/mech/parts/odysseus_right_leg + name="Odysseus Right Leg" + desc="A Odysseus right leg. Contains somewhat complex servodrives and balance maintaining systems." + icon_state = "odysseus_r_leg" +/obj/structure/prop/mech/parts/odysseus_armor_plates + name="Odysseus Armor Plates" + icon_state = "odysseus_armor" diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm index 4a4af8fef3..25eb307182 100644 --- a/code/game/objects/structures/props.dm +++ b/code/game/objects/structures/props.dm @@ -236,212 +236,6 @@ /obj/structure/prop/dam/wide_boulder/boulder1 icon_state = "boulder1" - -/obj/structure/prop/mech - icon = 'icons/obj/structures/props/mech.dmi' - -/obj/structure/prop/mech/hydralic_clamp - name = "Hydraulic Clamp" - icon_state = "mecha_clamp" - -/obj/structure/prop/mech/drill - name = "Drill" - desc = "This is the drill that'll pierce the heavens!" - icon_state = "mecha_drill" - -/obj/structure/prop/mech/armor_booster - name = "Armor Booster Module (Close Combat Weaponry)" - desc = "Boosts exosuit armor against armed melee attacks. Requires energy to operate." - icon_state = "mecha_abooster_ccw" - -/obj/structure/prop/mech/repair_droid - name = "Repair Droid" - desc = "Automated repair droid. Scans exosuit for damage and repairs it. Can fix almost all types of external or internal damage." - icon_state = "repair_droid" - -/obj/structure/prop/mech/tesla_energy_relay - name = "Energy Relay" - desc = "Wirelessly drains energy from any available power channel in area. The performance index is quite low." - icon_state = "tesla" - -/obj/structure/prop/mech/mech_parts - name = "mecha part" - flags_atom = FPRINT|CONDUCT - -/obj/structure/prop/mech/mech_parts/chassis - name="Mecha Chassis" - icon_state = "backbone" - -/obj/structure/prop/mech/mech_parts/chassis/ripley - name = "Ripley Chassis" - icon_state = "ripley_chassis" - -/obj/structure/prop/mech/mech_parts/part/ripley_torso - name="Ripley Torso" - desc="A torso part of Ripley APLU. Contains power unit, processing core and life support systems." - icon_state = "ripley_harness" - -/obj/structure/prop/mech/mech_parts/part/ripley_left_arm - name="Ripley Left Arm" - desc="A Ripley APLU left arm. Data and power sockets are compatible with most exosuit tools." - icon_state = "ripley_l_arm" - -/obj/structure/prop/mech/mech_parts/part/ripley_right_arm - name="Ripley Right Arm" - desc="A Ripley APLU right arm. Data and power sockets are compatible with most exosuit tools." - icon_state = "ripley_r_arm" - -/obj/structure/prop/mech/mech_parts/part/ripley_left_leg - name="Ripley Left Leg" - desc="A Ripley APLU left leg. Contains somewhat complex servodrives and balance maintaining systems." - icon_state = "ripley_l_leg" - -/obj/structure/prop/mech/mech_parts/part/ripley_right_leg - name="Ripley Right Leg" - desc="A Ripley APLU right leg. Contains somewhat complex servodrives and balance maintaining systems." - icon_state = "ripley_r_leg" - -/obj/structure/prop/mech/mech_parts/chassis/gygax - name = "Gygax Chassis" - icon_state = "gygax_chassis" - -/obj/structure/prop/mech/mech_parts/part/gygax_torso - name="Gygax Torso" - desc="A torso part of Gygax. Contains power unit, processing core and life support systems. Has an additional equipment slot." - icon_state = "gygax_harness" - -/obj/structure/prop/mech/mech_parts/part/gygax_head - name="Gygax Head" - desc="A Gygax head. Houses advanced surveilance and targeting sensors." - icon_state = "gygax_head" - -/obj/structure/prop/mech/mech_parts/part/gygax_left_arm - name="Gygax Left Arm" - desc="A Gygax left arm. Data and power sockets are compatible with most exosuit tools and weapons." - icon_state = "gygax_l_arm" - -/obj/structure/prop/mech/mech_parts/part/gygax_right_arm - name="Gygax Right Arm" - desc="A Gygax right arm. Data and power sockets are compatible with most exosuit tools and weapons." - icon_state = "gygax_r_arm" - -/obj/structure/prop/mech/mech_parts/part/gygax_left_leg - name="Gygax Left Leg" - icon_state = "gygax_l_leg" - -/obj/structure/prop/mech/mech_parts/part/gygax_right_leg - name="Gygax Right Leg" - icon_state = "gygax_r_leg" - -/obj/structure/prop/mech/mech_parts/part/gygax_armor - name="Gygax Armor Plates" - icon_state = "gygax_armor" - -/obj/structure/prop/mech/mech_parts/chassis/durand - name = "Durand Chassis" - icon_state = "durand_chassis" - -/obj/structure/prop/mech/mech_parts/part/durand_torso - name="Durand Torso" - icon_state = "durand_harness" - -/obj/structure/prop/mech/mech_parts/part/durand_head - name="Durand Head" - icon_state = "durand_head" - -/obj/structure/prop/mech/mech_parts/part/durand_left_arm - name="Durand Left Arm" - icon_state = "durand_l_arm" - -/obj/structure/prop/mech/mech_parts/part/durand_right_arm - name="Durand Right Arm" - icon_state = "durand_r_arm" - -/obj/structure/prop/mech/mech_parts/part/durand_left_leg - name="Durand Left Leg" - icon_state = "durand_l_leg" - -/obj/structure/prop/mech/mech_parts/part/durand_right_leg - name="Durand Right Leg" - icon_state = "durand_r_leg" - -/obj/structure/prop/mech/mech_parts/part/durand_armor - name="Durand Armor Plates" - icon_state = "durand_armor" - -/obj/structure/prop/mech/mech_parts/chassis/firefighter - name = "Firefighter Chassis" - icon_state = "ripley_chassis" - -/obj/structure/prop/mech/mech_parts/chassis/phazon - name = "Phazon Chassis" - icon_state = "phazon_chassis" - -/obj/structure/prop/mech/mech_parts/part/phazon_torso - name="Phazon Torso" - icon_state = "phazon_harness" - -/obj/structure/prop/mech/mech_parts/part/phazon_head - name="Phazon Head" - icon_state = "phazon_head" - -/obj/structure/prop/mech/mech_parts/part/phazon_left_arm - name="Phazon Left Arm" - icon_state = "phazon_l_arm" - -/obj/structure/prop/mech/mech_parts/part/phazon_right_arm - name="Phazon Right Arm" - icon_state = "phazon_r_arm" - -/obj/structure/prop/mech/mech_parts/part/phazon_left_leg - name="Phazon Left Leg" - icon_state = "phazon_l_leg" - -/obj/structure/prop/mech/mech_parts/part/phazon_right_leg - name="Phazon Right Leg" - icon_state = "phazon_r_leg" - -/obj/structure/prop/mech/mech_parts/part/phazon_armor_plates - name="Phazon Armor Plates" - icon_state = "phazon_armor" - -/obj/structure/prop/mech/mech_parts/chassis/odysseus - name = "Odysseus Chassis" - icon_state = "odysseus_chassis" - -/obj/structure/prop/mech/mech_parts/part/odysseus_head - name="Odysseus Head" - icon_state = "odysseus_head" - -/obj/structure/prop/mech/mech_parts/part/odysseus_torso - name="Odysseus Torso" - desc="A torso part of Odysseus. Contains power unit, processing core and life support systems." - icon_state = "odysseus_torso" - -/obj/structure/prop/mech/mech_parts/part/odysseus_left_arm - name="Odysseus Left Arm" - desc="An Odysseus left arm. Data and power sockets are compatible with most exosuit tools." - icon_state = "odysseus_l_arm" - -/obj/structure/prop/mech/mech_parts/part/odysseus_right_arm - name="Odysseus Right Arm" - desc="An Odysseus right arm. Data and power sockets are compatible with most exosuit tools." - icon_state = "odysseus_r_arm" - -/obj/structure/prop/mech/mech_parts/part/odysseus_left_leg - name="Odysseus Left Leg" - desc="An Odysseus left leg. Contains somewhat complex servodrives and balance maintaining systems." - icon_state = "odysseus_l_leg" - -/obj/structure/prop/mech/mech_parts/part/odysseus_right_leg - name="Odysseus Right Leg" - desc="A Odysseus right leg. Contains somewhat complex servodrives and balance maintaining systems." - icon_state = "odysseus_r_leg" - -/obj/structure/prop/mech/mech_parts/part/odysseus_armor_plates - name="Odysseus Armor Plates" - icon_state = "odysseus_armor" - //Use these to replace non-functional machinery 'props' around maps from bay12 /obj/structure/prop/server_equipment @@ -658,7 +452,7 @@ health = 150 light_range = 6 light_on = TRUE - light_color = LIGHT_COLOUR_FIRE + light_color = LIGHT_COLOR_FIRE unslashable = TRUE /// What obj this becomes when it gets to its next stage of construction / ignition var/frame_type @@ -788,7 +582,7 @@ for(var/mob/living/carbon/human/mob in range(heating_range, src)) if(mob.bodytemperature < T20C) - mob.bodytemperature += min(round(T20C - mob.bodytemperature)*0.7, 25) + mob.bodytemperature += min(floor(T20C - mob.bodytemperature)*0.7, 25) mob.recalculate_move_delay = TRUE if(quiet) @@ -901,6 +695,20 @@ health = 75 density = TRUE +/obj/structure/prop/ice_colony/dense/attack_alien(mob/living/carbon/xenomorph/xeno) + if(xeno.a_intent == INTENT_HARM) + if(unslashable) + return + xeno.animation_attack_on(src) + playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) + xeno.visible_message(SPAN_DANGER("[xeno] slices [src] apart!"), + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + deconstruct(FALSE) + return XENO_ATTACK_ACTION + else + attack_hand(xeno) + return XENO_NONCOMBAT_ACTION + /obj/structure/prop/ice_colony/dense/ice_tray name = "ice slab tray" icon_state = "ice_tray" @@ -1143,7 +951,7 @@ name = "\improper S-52 fusion reactor" desc = "A Westingland S-52 Fusion Reactor. Takes fuels cells and converts them to power. Also produces a large amount of heat." icon = 'icons/obj/structures/machinery/fusion_eng.dmi' - icon_state = "off-0" + icon_state = "off" /obj/structure/prop/invuln/pipe_water name = "pipe water" @@ -1190,7 +998,7 @@ new_info_tag.fallen_names = list(dogtag_name) new_info_tag.fallen_assgns = list(dogtag_assign) new_info_tag.fallen_blood_types = list(dogtag_blood) - fallen_list_cross -= dogtag_name + GLOB.fallen_list_cross -= dogtag_name return ..() /obj/structure/prop/wooden_cross/attackby(obj/item/W, mob/living/user) @@ -1198,18 +1006,18 @@ var/obj/item/dogtag/dog = W if(!tagged) tagged = TRUE - user.visible_message(SPAN_NOTICE("[user] drapes the [W] around the [src].")) + user.visible_message(SPAN_NOTICE("[user] drapes [W] around [src].")) dogtag_name = popleft(dog.fallen_names) dogtag_assign = popleft(dog.fallen_assgns) dogtag_blood = popleft(dog.fallen_blood_types) - fallen_list_cross += dogtag_name + GLOB.fallen_list_cross += dogtag_name update_icon() if(!length(dog.fallen_names)) qdel(dog) else return else - to_chat(user, SPAN_WARNING("There's already a dog tag on the [src]!")) + to_chat(user, SPAN_WARNING("There's already a dog tag on [src]!")) balloon_alert(user, "already a tag here!") if(istype(W, /obj/item/clothing/head)) @@ -1384,4 +1192,3 @@ if(initial(emote.sound)) playsound(loc, initial(emote.sound), 50, FALSE) return TRUE - diff --git a/code/game/objects/structures/reagent_dispensers.dm b/code/game/objects/structures/reagent_dispensers.dm index 6471dfa215..0dab5e55c0 100644 --- a/code/game/objects/structures/reagent_dispensers.dm +++ b/code/game/objects/structures/reagent_dispensers.dm @@ -5,6 +5,7 @@ icon_state = "watertank" density = TRUE anchored = FALSE + drag_delay = 1 health = 100 // Can be destroyed in 2-4 slashes. flags_atom = CAN_BE_SYRINGED wrenchable = TRUE @@ -21,6 +22,8 @@ verbs -= /obj/structure/reagent_dispensers/verb/set_APTFT if(chemical) reagents.add_reagent(chemical, reagent_amount) + if(!anchored && is_ground_level(z) && prob(70)) + anchored = TRUE /obj/structure/reagent_dispensers/initialize_pass_flags(datum/pass_flags_container/PF) ..() @@ -31,7 +34,7 @@ . = ..() if(get_dist(user, src) > 2 && user != loc) return . += SPAN_NOTICE("It contains:") - if(reagents && reagents.reagent_list.len) + if(reagents && length(reagents.reagent_list)) for(var/datum/reagent/R in reagents.reagent_list) . += SPAN_NOTICE(" [R.volume] units of [R.name]") else @@ -128,6 +131,25 @@ if(N) amount_per_transfer_from_this = N +/obj/structure/reagent_dispensers/clicked(mob/user, list/mods) + if(!Adjacent(user)) + return ..() + + if(!ishuman(user)) + return ..() + + if(!reagents || reagents.locked) + return ..() + + if(mods["alt"]) + dispensing = !dispensing + if(dispensing) + to_chat(user, SPAN_NOTICE("[src] is now dispensing")) + else + to_chat(user, SPAN_NOTICE("[src] is now filling")) + return TRUE + return ..() + /obj/structure/reagent_dispensers/attackby(obj/item/hit_item, mob/living/user) if(istype(hit_item, /obj/item/reagent_container)) return @@ -148,13 +170,6 @@ icon_state = "ammoniatank" chemical = "ammonia" -/obj/structure/reagent_dispensers/oxygentank - name = "oxygentank" - desc = "An oxygen tank" - icon = 'icons/obj/objects.dmi' - icon_state = "oxygentank" - chemical = "oxygen" - /obj/structure/reagent_dispensers/acidtank name = "sulfuric acid tank" desc = "A sulfuric acid tank" @@ -394,6 +409,13 @@ icon_state = "hydrogentank" chemical = "hydrogen" +/obj/structure/reagent_dispensers/fueltank/oxygentank + name = "oxygentank" + desc = "An oxygen tank" + icon = 'icons/obj/objects.dmi' + icon_state = "oxygentank" + chemical = "oxygen" + /obj/structure/reagent_dispensers/fueltank/custom name = "reagent tank" desc = "A reagent tank, typically used to store large quantities of chemicals." @@ -432,6 +454,7 @@ icon = 'icons/obj/objects.dmi' icon_state = "peppertank" anchored = TRUE + drag_delay = 3 wrenchable = FALSE density = FALSE amount_per_transfer_from_this = 45 @@ -445,6 +468,7 @@ icon_state = "water_cooler" possible_transfer_amounts = null anchored = TRUE + drag_delay = 3 chemical = "water" /obj/structure/reagent_dispensers/water_cooler/walk_past @@ -460,6 +484,7 @@ icon_state = "beertankTEMP" amount_per_transfer_from_this = 10 chemical = "beer" + drag_delay = 3 /obj/structure/reagent_dispensers/beerkeg/alt icon_state = "beertank_alt" @@ -474,6 +499,7 @@ icon_state = "virusfoodtank" amount_per_transfer_from_this = 10 anchored = TRUE + drag_delay = 3 wrenchable = FALSE density = FALSE chemical = "virusfood" diff --git a/code/game/objects/structures/roof.dm b/code/game/objects/structures/roof.dm new file mode 100644 index 0000000000..e302133f0c --- /dev/null +++ b/code/game/objects/structures/roof.dm @@ -0,0 +1,165 @@ +/obj/structure/roof + name = "roof" + desc = "A roof" + icon = 'icons/turf/almayer.dmi' + icon_state = "plating_catwalk" + density = FALSE + layer = ABOVE_XENO_LAYER + health = 6000 + var/image/under_image //immage that is used when there is mob on connected node, displayed only to mobs under it not others + var/image/normal_image + var/datum/roof_master_node/linked_master + var/lazy_nodes = TRUE //if roof should create nodes that watch around it on spawn + + +/obj/structure/roof/Initialize() + . = ..() + under_image = image(icon, src, icon_state, layer = layer) + under_image.alpha = 127 + + normal_image = image(icon, src, icon_state, layer = layer) + + icon_state = null + + RegisterSignal(SSdcs, COMSIG_GLOB_MOB_LOGGED_IN, PROC_REF(add_default_image)) + + for(var/icon in GLOB.player_list) + add_default_image(SSdcs, icon) + if(lazy_nodes) //creates new node on each surounding tile if there is not one already + var/obj/effect/roof_node/neighbor = locate() in loc + if(!neighbor) + neighbor = new(loc) + for(var/direction in CARDINAL_ALL_DIRS) + var/adjacent_loc = get_step(src, direction) + neighbor = locate() in adjacent_loc + if(!neighbor) + neighbor = new(adjacent_loc) + return INITIALIZE_HINT_LATELOAD + +/obj/structure/roof/LateInitialize() //we use late init to allow for lazy nodes to spawn first on mapload + . = ..() + if(linked_master) + return + for(var/direction in CARDINAL_ALL_DIRS) //this searches if there is lattice with master already, to work with runtime creation + for(var/obj/structure/roof/roof in get_step(src,direction)) + if(roof.linked_master) + roof.linked_master.connect(loc) + return + var/datum/roof_master_node/roof_master_node = new(loc) //no master and no lattice to connect to, create new master + roof_master_node.connect(loc) + +/obj/structure/roof/Destroy(force, ...) + if(linked_master) + linked_master.remove_roof(src) + for(var/icon in GLOB.player_list) + var/mob/mob = icon + mob.client.images -= normal_image + return ..() + +/obj/structure/roof/proc/add_default_image(subsystem, mob/mob) + SIGNAL_HANDLER + mob.client.images += normal_image + +/obj/structure/roof/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master + if(linked_master != null) + return + master.connected_roof += src + linked_master = master + for(var/direction in CARDINAL_ALL_DIRS) + for(var/obj/structure/roof/roof in get_step(src,direction)) + roof.link_master(master) + + +/obj/effect/roof_node //used for observing if mob is near the roof + name = "roof_node" + anchored = TRUE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + invisibility = 101 + unacidable = TRUE + var/datum/roof_master_node/linked_master + +/obj/effect/roof_node/Crossed(atom/movable/mover, target_dir) + if(!linked_master) + return + if(isliving(mover)) + var/mob/living/mob = mover + linked_master.add_under_roof(mob) + +/obj/effect/roof_node/Destroy(force, ...) + if(linked_master) + if(linked_master.connected_nodes) + linked_master.connected_nodes -= src + return ..() + +/obj/effect/roof_node/proc/link_master(datum/roof_master_node/master) //performs bfs and connects to master + if(linked_master) + return + master.connected_nodes += src + linked_master = master + for(var/direction in CARDINAL_ALL_DIRS) + for(var/obj/effect/roof_node/node in get_step(src,direction)) + node.link_master(master) + + +/datum/roof_master_node //maintains one block of roof + var/list/connected_nodes = list() + var/list/connected_roof = list() + var/list/mobs_under = list() + var/location + +/datum/roof_master_node/Destroy(force, ...) + if(connected_nodes) + for(var/obj/effect/roof_node/roof_node in connected_nodes) + qdel(roof_node) + if(connected_nodes) + for(var/obj/structure/roof/roof in connected_roof) + qdel(roof) + return ..() + +/datum/roof_master_node/proc/add_under_roof(mob/living/living) //mob crossed connected node + if(living in mobs_under) + return + mobs_under += living + RegisterSignal(living, COMSIG_PARENT_QDELETING, PROC_REF(remove_under_roof)) + RegisterSignal(living, COMSIG_MOB_LOGGED_IN, PROC_REF(add_client)) + RegisterSignal(living, COMSIG_MOVABLE_MOVED, PROC_REF(check_under_roof)) + + if(living.client) + add_client(living) + +/datum/roof_master_node/proc/add_client(mob/living/mob) + SIGNAL_HANDLER + for(var/obj/structure/roof/roof in connected_roof) + mob.client.images -= roof.normal_image + mob.client.images += roof.under_image + +/datum/roof_master_node/proc/remove_under_roof(mob/living/living) //mob is no longer under roof + SIGNAL_HANDLER + if(living.client) + for(var/obj/structure/roof/roof in connected_roof) + living.client.images -= roof.under_image + roof.add_default_image(SSdcs, living) + mobs_under -= living + UnregisterSignal(living, list( + COMSIG_PARENT_QDELETING, + COMSIG_MOB_LOGGED_IN, + COMSIG_MOVABLE_MOVED, + )) + +/datum/roof_master_node/proc/check_under_roof(mob/living/living) //check if the mob is under connected roof + SIGNAL_HANDLER + for(var/obj/effect/roof_node/roof in connected_nodes) + if(living.loc == roof.loc) + return + remove_under_roof(living) + +/datum/roof_master_node/proc/connect(location) + for(var/obj/effect/roof_node/node in location) + node.link_master(src) + for(var/obj/structure/roof/roof in location) + roof.link_master(src) + +/datum/roof_master_node/proc/remove_roof(obj/structure/roof/roof) //roof tile got removed + connected_roof -= roof + if(!length(connected_roof)) + qdel(src) diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index 2d32e808d3..43812db06b 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -115,7 +115,7 @@ FLOOR SAFES dat += "Dial 2: - [tumbler_2_pos] +
    " if(open) dat += "" - for(var/i = contents.len, i>=1, i--) + for(var/i = length(contents), i>=1, i--) var/obj/item/P = contents[i] dat += "" dat += "
    [P.name]
    " diff --git a/code/game/objects/structures/shower.dm b/code/game/objects/structures/shower.dm new file mode 100644 index 0000000000..b731a2c0e2 --- /dev/null +++ b/code/game/objects/structures/shower.dm @@ -0,0 +1,222 @@ +/obj/structure/machinery/shower + name = "shower" + desc = "The HS-451. Installed in the 2050s by the Weyland Hygiene Division." + icon = 'icons/obj/structures/props/watercloset.dmi' + icon_state = "shower" + density = FALSE + anchored = TRUE + use_power = USE_POWER_NONE + var/on = 0 + var/obj/effect/mist/mymist = null + /// needs a var so we can make it linger~ + var/ismist = 0 + /// freezing, normal, or boiling + var/watertemp = "normal" + /// true if there is a mob on the shower's loc, this is to ease process() + var/mobpresent = 0 + var/is_washing = 0 + +/obj/structure/machinery/shower/Initialize() + . = ..() + create_reagents(2) + +//add heat controls? when emagged, you can freeze to death in it? + +/obj/effect/mist + name = "mist" + icon = 'icons/obj/structures/props/watercloset.dmi' + icon_state = "mist" + layer = FLY_LAYER + anchored = TRUE + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + + +/obj/structure/machinery/shower/attack_hand(mob/M as mob) + on = !on + update_icon() + if(on) + start_processing() + if (M.loc == loc) + wash(M) + check_heat(M) + for (var/atom/movable/G in src.loc) + G.clean_blood() + else + stop_processing() + + +/obj/structure/machinery/shower/attackby(obj/item/I as obj, mob/user as mob) + if(I.type == /obj/item/device/analyzer) + to_chat(user, SPAN_NOTICE("The water temperature seems to be [watertemp].")) + if(HAS_TRAIT(I, TRAIT_TOOL_WRENCH)) + to_chat(user, SPAN_NOTICE("You begin to adjust the temperature valve with \the [I].")) + if(do_after(user, 50, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + switch(watertemp) + if("normal") + watertemp = "freezing" + if("freezing") + watertemp = "boiling" + if("boiling") + watertemp = "normal" + user.visible_message(SPAN_NOTICE("[user] adjusts the shower with \the [I]."), SPAN_NOTICE("You adjust the shower with \the [I].")) + add_fingerprint(user) + + +/obj/structure/machinery/shower/update_icon() //this is terribly unreadable, but basically it makes the shower mist up + overlays.Cut() //once it's been on for a while, in addition to handling the water overlay. + QDEL_NULL(mymist) + + if(on) + overlays += image('icons/obj/structures/props/watercloset.dmi', src, "water", MOB_LAYER + 1, dir) + if(watertemp == "freezing") + return + if(!ismist) + spawn(50) + if(src && on) + ismist = 1 + mymist = new /obj/effect/mist(loc) + else + ismist = 1 + mymist = new /obj/effect/mist(loc) + else if(ismist) + ismist = 1 + mymist = new /obj/effect/mist(loc) + spawn(250) + if(src && !on) + QDEL_NULL(mymist) + ismist = 0 + + +/obj/structure/machinery/shower/Crossed(atom/movable/O) + ..() + wash(O) + if(ismob(O)) + mobpresent++ + check_heat(O) + + +/obj/structure/machinery/shower/Uncrossed(atom/movable/O) + if(ismob(O)) + mobpresent-- + ..() + +//Yes, showers are super powerful as far as washing goes. +/obj/structure/machinery/shower/proc/wash(atom/movable/O as obj|mob) + if(!on) return + + + if(isliving(O)) + var/mob/living/L = O + L.ExtinguishMob() + L.fire_stacks = -20 //Douse ourselves with water to avoid fire more easily + to_chat(L, SPAN_WARNING("You've been drenched in water!")) + if(iscarbon(O)) + var/mob/living/carbon/M = O + if(M.r_hand) + M.r_hand.clean_blood() + if(M.l_hand) + M.l_hand.clean_blood() + if(M.back) + if(M.back.clean_blood()) + M.update_inv_back(0) + if(ishuman(M)) + var/mob/living/carbon/human/H = M + var/washgloves = 1 + var/washshoes = 1 + var/washmask = 1 + var/washears = 1 + var/washglasses = 1 + + if(H.wear_suit) + washgloves = !(H.wear_suit.flags_inv_hide & HIDEGLOVES) + washshoes = !(H.wear_suit.flags_inv_hide & HIDESHOES) + + if(H.head) + washmask = !(H.head.flags_inv_hide & HIDEMASK) + washglasses = !(H.head.flags_inv_hide & HIDEEYES) + washears = !(H.head.flags_inv_hide & HIDEEARS) + + if(H.wear_mask) + if (washears) + washears = !(H.wear_mask.flags_inv_hide & HIDEEARS) + if (washglasses) + washglasses = !(H.wear_mask.flags_inv_hide & HIDEEYES) + + if(H.head) + if(H.head.clean_blood()) + H.update_inv_head() + if(H.wear_suit) + if(H.wear_suit.clean_blood()) + H.update_inv_wear_suit() + else if(H.w_uniform) + if(H.w_uniform.clean_blood()) + H.update_inv_w_uniform() + if(H.gloves && washgloves) + if(H.gloves.clean_blood()) + H.update_inv_gloves() + if(H.shoes && washshoes) + if(H.shoes.clean_blood()) + H.update_inv_shoes() + if(H.wear_mask && washmask) + if(H.wear_mask.clean_blood()) + H.update_inv_wear_mask() + if(H.glasses && washglasses) + if(H.glasses.clean_blood()) + H.update_inv_glasses() + if((H.wear_l_ear || H.wear_r_ear) && washears) + if((H.wear_l_ear && H.wear_l_ear.clean_blood()) ||(H.wear_r_ear && H.wear_r_ear.clean_blood())) + H.update_inv_ears() + if(H.belt) + if(H.belt.clean_blood()) + H.update_inv_belt() + H.clean_blood(washshoes) + else + if(M.wear_mask) //if the mob is not human, it cleans the mask without asking for bitflags + if(M.wear_mask.clean_blood()) + M.update_inv_wear_mask() + M.clean_blood() + else + O.clean_blood() + + if(isturf(loc)) + var/turf/tile = loc + tile.clean_blood() + for(var/obj/effect/E in tile) + if(istype(E,/obj/effect/decal/cleanable) || istype(E,/obj/effect/overlay)) + qdel(E) + + +/obj/structure/machinery/shower/process() + if(!on) return + wash_floor() + if(!mobpresent) return + for(var/mob/living/carbon/C in loc) + check_heat(C) + + +/obj/structure/machinery/shower/proc/wash_floor() + if(!ismist && is_washing) + return + is_washing = 1 + var/turf/T = get_turf(src) +// reagents.add_reagent("water", 2) + T.clean(src) + addtimer(VARSET_CALLBACK(src, is_washing, FALSE), 10 SECONDS) + + +/obj/structure/machinery/shower/proc/check_heat(mob/M as mob) + if(!on || watertemp == "normal") return + if(iscarbon(M)) + var/mob/living/carbon/C = M + + if(watertemp == "freezing") + C.bodytemperature = max(80, C.bodytemperature - 80) + C.recalculate_move_delay = TRUE + to_chat(C, SPAN_WARNING("The water is freezing!")) + return + if(watertemp == "boiling") + C.bodytemperature = min(500, C.bodytemperature + 35) + C.recalculate_move_delay = TRUE + C.apply_damage(5, BURN) + to_chat(C, SPAN_DANGER("The water is searing!")) + return diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 50bbdeea55..aa690cf32a 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -113,6 +113,18 @@ desc = "A flag of the United Americas. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings." icon_state = "uaflag" +//============// +// Flags // +//==========// + +/obj/structure/sign/flag + icon = 'icons/obj/structures/props/flags.dmi' + +/obj/structure/sign/flag/upp + name = "\improper Union of Progressive Peoples Flag" + desc = "Unity through Strength, Freedom through Unity" + icon_state = "upp_flag" + /obj/structure/sign/banners/colonial_marines_flag name = "\improper United States Colonial Marine Corps flag" desc = "A flag of the United States Colonial Marine Corps. Inspires patriotism, fear, or revulsion depending on the viewer's political leanings." @@ -336,7 +348,7 @@ icon_state = "lifesupport" /obj/structure/sign/safety/maint - name = "maintenace semiotic" + name = "maintenance semiotic" desc = "Semiotic Standard denoting the nearby presence of maintenance access." icon_state = "maint" @@ -604,6 +616,58 @@ desc = " 1. You are not entitled to service or equipment. Attachments are a privilege, not a right.\n 2. You must be fully dressed to obtain service. Cryosleep underwear is non-permissible.\n 3. The Quartermaster has the final say and the right to decline service. Only the Acting Commanding Officer may override their decisions.\n 4. Please treat your Requsitions staff with respect. They work hard." icon_state = "roplaque" +/obj/structure/sign/ROcreed + name = "\improper QMC Creed Plaque" + desc = "The short version of the Quartermaster Creed made by the US Quartermaster Corps, this on is purely decorative and ceremonial version which is much shorter and doesn't include more modern edits." + desc_lore = {"I am Quartermaster + My story is enfolded in the history of this nation. + Sustainer of Armies... + + My forges burned at Valley Forge. + Down frozen, rutted roads my oxen hauled + the meager foods a bankrupt Congress sent me... + Scant rations for the cold and starving troops, + Gunpowder, salt, and lead. + + In 1812 we sailed to war in ships my boatwrights built. + I fought beside you in the deserts of our great Southwest. + My pack mules perished seeking water holes, + And I went on with camels. + I gave flags to serve. + The medals and crest you wear are my design. + + Since 1862, I have sought our fallen brothers + from Private to President. + In war or peace I bring them home + And lay them gently down in fields of honor. + + Provisioner, transporter. + In 1898 I took you to Havana Harbor and the Philippines. + I brought you tents, your khaki cloth for uniforms. + When yellow fever struck, I brought the mattresses you lay upon. + + In 1917, we crossed the ocean to fight in the trenches and fields of France, + New weapons, training, technologies, and tactics for the Great War. + But always the need for food, water, ammunition, and now fuel. + + We shed first blood together at Pearl Harbor and Corregidor. + Then begin the long march to Victory - Guadalcanal and North Africa, Sicily and the Solomons. + I was there with you at Omaha Beach on D-Day and even the night before from Glider and Parachute. + Across Europe and the Pacific, I drove and dug and fought till the job was done. + + When war came to the Peninsula in 1950, it was my 'chutes that filled the grey Korean skies. + From the perimeter at Pusan to the cold roads of the Chosin, I was there. + In 1965, I established the fire bases and depots across South Vietnam, + The Hueys and Chinooks carried my supplies forward. + + I AM QUARTERMASTER. + I can shape the course of combat, + Change the outcome of battle. + Look to me: Sustainer of Armies...Since 1775. + + I AM QUARTERMASTER. I AM PROUD."} + icon_state = "rocreed" + /obj/structure/sign/prop1 name = "\improper USCM Poster" desc = "The symbol of the United States Colonial Marines corps." diff --git a/code/game/objects/structures/sink.dm b/code/game/objects/structures/sink.dm new file mode 100644 index 0000000000..6bac40ea7d --- /dev/null +++ b/code/game/objects/structures/sink.dm @@ -0,0 +1,122 @@ +/obj/structure/sink + name = "sink" + icon = 'icons/obj/structures/props/watercloset.dmi' + icon_state = "sink_emptied_animation" + desc = "A sink used for washing one's hands and face." + anchored = TRUE + /// if something's being washed at the moment + var/busy = FALSE + + +/obj/structure/sink/Initialize() + . = ..() + if(prob(50)) + icon_state = "sink_emptied" + + +/obj/structure/sink/proc/stop_flow() //sets sink animation to normal sink (without running water) + + if(prob(50)) + icon_state = "sink_emptied_animation" + else + icon_state = "sink_emptied" + flick("sink_animation_empty", src) + + +/obj/structure/sink/attack_hand(mob/user) + if(isRemoteControlling(user)) + return + + if(!Adjacent(user)) + return + + if(busy) + to_chat(user, SPAN_DANGER("Someone's already washing here.")) + return + + to_chat(usr, SPAN_NOTICE(" You start washing your hands.")) + flick("sink_animation_fill", src) //<- play the filling animation then automatically switch back to the loop + icon_state = "sink_animation_fill_loop" //<- set it to the loop + addtimer(CALLBACK(src, PROC_REF(stop_flow)), 6 SECONDS) + playsound(loc, 'sound/effects/sinkrunning.ogg', 25, TRUE) + + busy = TRUE + sleep(40) + busy = FALSE + + if(!Adjacent(user)) return //Person has moved away from the sink + + user.clean_blood() + if(ishuman(user)) + user:update_inv_gloves() + for(var/mob/V in viewers(src, null)) + V.show_message(SPAN_NOTICE("[user] washes their hands using \the [src]."), SHOW_MESSAGE_VISIBLE) + + +/obj/structure/sink/attackby(obj/item/O as obj, mob/user as mob) + if(busy) + to_chat(user, SPAN_DANGER("Someone's already washing here.")) + return + + var/obj/item/reagent_container/RG = O + if (istype(RG) && RG.is_open_container()) + RG.reagents.add_reagent("water", min(RG.volume - RG.reagents.total_volume, RG.amount_per_transfer_from_this)) + user.visible_message(SPAN_NOTICE("[user] fills \the [RG] using \the [src]."),SPAN_NOTICE("You fill \the [RG] using \the [src].")) + return + + else if (istype(O, /obj/item/weapon/baton)) + var/obj/item/weapon/baton/B = O + if(B.bcell) + if(B.bcell.charge > 0 && B.status == 1) + flick("baton_active", src) + user.apply_effect(10, STUN) + user.stuttering = 10 + user.apply_effect(10, WEAKEN) + B.deductcharge(B.hitcost) + user.visible_message( \ + SPAN_DANGER("[user] was stunned by \his wet [O]!"), \ + SPAN_DANGER("You were stunned by your wet [O]!")) + return + + var/turf/location = user.loc + if(!isturf(location)) return + + var/obj/item/I = O + if(!I || !istype(I,/obj/item)) return + + to_chat(usr, SPAN_NOTICE(" You start washing \the [I].")) + + busy = TRUE + sleep(40) + busy = FALSE + + if(user.loc != location) return //User has moved + if(!I) return //Item's been destroyed while washing + if(user.get_active_hand() != I) return //Person has switched hands or the item in their hands + + O.clean_blood() + user.visible_message( \ + SPAN_NOTICE("[user] washes \a [I] using \the [src]."), \ + SPAN_NOTICE("You wash \a [I] using \the [src].")) + + +/obj/structure/sink/kitchen + name = "kitchen sink" + icon_state = "sink_alt" + + +/obj/structure/sink/puddle //splishy splashy ^_^ + name = "puddle" + icon_state = "puddle" + + +/obj/structure/sink/puddle/attack_hand(mob/M as mob) + icon_state = "puddle-splash" + ..() + icon_state = "puddle" + + +/obj/structure/sink/puddle/attackby(obj/item/O as obj, mob/user as mob) + icon_state = "puddle-splash" + ..() + icon_state = "puddle" diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index 95c5d8e45f..eb9b5aa5e4 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -20,6 +20,7 @@ var/buildstackamount = 1 var/foldabletype //To fold into an item (e.g. roller bed item) var/buckling_y = 0 //pixel y shift to give to the buckled mob. + var/buckling_x = 0 //pixel x shift to give to the buckled mob. var/obj/structure/closet/bodybag/buckled_bodybag var/accepts_bodybag = FALSE //Whether you can buckle bodybags to this bed var/base_bed_icon //Used by beds that change sprite when something is buckled to them @@ -60,11 +61,15 @@ if(. && buckled_mob == M) M.pixel_y = buckling_y M.old_y = buckling_y + M.pixel_x = buckling_x + M.old_x = buckling_x if(base_bed_icon) density = TRUE else M.pixel_y = initial(buckled_mob.pixel_y) M.old_y = initial(buckled_mob.pixel_y) + M.pixel_x = initial(buckled_mob.pixel_x) + M.old_x = initial(buckled_mob.pixel_x) if(base_bed_icon) density = FALSE @@ -161,11 +166,14 @@ if(ismob(G.grabbed_thing)) var/mob/M = G.grabbed_thing var/atom/blocker = LinkBlocked(user, user.loc, loc) + if(!Adjacent(M)) + visible_message(SPAN_DANGER("[M] is too far to place onto [src].")) + return FALSE if(blocker) to_chat(user, SPAN_WARNING("\The [blocker] is in the way!")) - else - to_chat(user, SPAN_NOTICE("You place [M] on [src].")) - M.forceMove(loc) + return FALSE + to_chat(user, SPAN_NOTICE("You place [M] on [src].")) + M.forceMove(loc) return TRUE else @@ -310,7 +318,7 @@ ////////////////////////////////////////////// //List of all activated medevac stretchers -var/global/list/activated_medevac_stretchers = list() +GLOBAL_LIST_EMPTY(activated_medevac_stretchers) /obj/structure/bed/medevac_stretcher name = "medevac stretcher" @@ -329,7 +337,7 @@ var/global/list/activated_medevac_stretchers = list() /obj/structure/bed/medevac_stretcher/Destroy() if(stretcher_activated) stretcher_activated = FALSE - activated_medevac_stretchers -= src + GLOB.activated_medevac_stretchers -= src if(linked_medevac) linked_medevac.linked_stretcher = null linked_medevac = null @@ -375,7 +383,7 @@ var/global/list/activated_medevac_stretchers = list() if(stretcher_activated) stretcher_activated = FALSE - activated_medevac_stretchers -= src + GLOB.activated_medevac_stretchers -= src if(linked_medevac) linked_medevac.linked_stretcher = null linked_medevac = null @@ -393,7 +401,7 @@ var/global/list/activated_medevac_stretchers = list() return stretcher_activated = TRUE - activated_medevac_stretchers += src + GLOB.activated_medevac_stretchers += src to_chat(user, SPAN_NOTICE("You activate [src]'s beacon.")) update_icon() @@ -420,6 +428,8 @@ var/global/list/activated_medevac_stretchers = list() buckling_y = 0 foldabletype = /obj/item/roller/bedroll accepts_bodybag = FALSE + debris = null + buildstacktype = null /obj/item/roller/bedroll name = "folded bedroll" diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 956c902e96..7e77610cf0 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -7,6 +7,8 @@ desc = "A rectangular metallic frame sitting on four legs with a back panel. Designed to fit the sitting position, more or less comfortably." icon_state = "chair" buckle_lying = 0 + var/north_layer = FLY_LAYER + var/non_north_layer = OBJ_LAYER var/propelled = FALSE //Check for fire-extinguisher-driven chairs var/can_rotate = TRUE var/picked_up_item = /obj/item/weapon/twohanded/folded_metal_chair @@ -25,10 +27,10 @@ flags_can_pass_all_temp = PASS_OVER /obj/structure/bed/chair/handle_rotation() //Making this into a separate proc so office chairs can call it on Move() - if(src.dir == NORTH) - src.layer = FLY_LAYER + if(dir == NORTH) + layer = north_layer else - src.layer = OBJ_LAYER + layer = non_north_layer if(buckled_mob) buckled_mob.setDir(dir) @@ -150,7 +152,7 @@ stacked_size-- update_overlays() - var/list/candidate_target_turfs = range(round(stacked_size/2), starting_turf) + var/list/candidate_target_turfs = range(floor(stacked_size/2), starting_turf) candidate_target_turfs -= starting_turf var/turf/target_turf = candidate_target_turfs[rand(1, length(candidate_target_turfs))] @@ -257,6 +259,10 @@ debris = list() picked_up_item = null +/obj/structure/bed/chair/comfy/arc + non_north_layer = BELOW_OBJ_LAYER + layer = BELOW_OBJ_LAYER + /obj/structure/bed/chair/comfy/orange icon_state = "comfychair_orange" diff --git a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm index 986ae99739..f718823745 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/wheelchair.dm @@ -36,12 +36,12 @@ move_delay += 4 //harder to move a wheelchair with a single hand working_hands-- else if((left_hand.status & LIMB_BROKEN) && !(left_hand.status & LIMB_SPLINTED)) - move_delay++ + move_delay ++ if(!right_hand || (right_hand.status & LIMB_DESTROYED)) move_delay += 4 working_hands-- else if((right_hand.status & LIMB_BROKEN) && !(right_hand.status & LIMB_SPLINTED)) - move_delay += 2 + move_delay++ if(!working_hands) return // No hands to drive your chair? Tough luck! if(driver.pulling && driver.pulling.drag_delay && driver.get_pull_miltiplier()) //Dragging stuff can slow you down a bit. diff --git a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm index 65bb2fd6a9..68b899f78f 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/xeno_nest.dm @@ -18,8 +18,6 @@ var/mob/dead/observer/ghost_of_buckled_mob = null var/hivenumber = XENO_HIVE_NORMAL var/force_nest = FALSE - /// counterpart to buckling_y --> offsets the buckled mob when it buckles - var/list/buckling_x /obj/structure/bed/nest/Initialize(mapload, hive) . = ..() @@ -98,7 +96,7 @@ if(iscarbon(user)) var/mob/living/carbon/carbon = user if(HIVE_ALLIED_TO_HIVE(carbon.hivenumber, hivenumber)) - to_chat(user, SPAN_XENOWARNING("You shouldn't interfere with the nest, leave that to the drones.")) + to_chat(user, SPAN_XENOWARNING("We shouldn't interfere with the nest, leave that to the drones.")) return if(buckled_mob) if(iswelder(W)) @@ -116,8 +114,7 @@ playsound(loc, "alien_resin_move", 50) if(ishuman(buckled_mob)) var/mob/living/carbon/human/H = buckled_mob - user.attack_log += "\[[time_stamp()]\] Unnested [key_name(H)] at [get_location_in_text(H)]" - H.attack_log += "\[[time_stamp()]\] Unnested by [key_name(user)] at [get_location_in_text(H)]" + log_interact(user, H, "[key_name(user)] unnested [key_name(H)] at [get_area_name(loc)]") unbuckle() return if(is_sharp(W)) @@ -130,8 +127,7 @@ playsound(loc, "alien_resin_move", 50) if(ishuman(buckled_mob)) var/mob/living/carbon/human/H = buckled_mob - user.attack_log += "\[[time_stamp()]\] Unnested [key_name(H)] at [get_location_in_text(H)]" - H.attack_log += "\[[time_stamp()]\] Unnested by [key_name(user)] at [get_location_in_text(H)]" + log_interact(user, H, "[key_name(user)] unnested [key_name(H)] at [get_area_name(loc)]") unbuckle() return health = max(0, health - W.force) @@ -151,12 +147,12 @@ if(isxeno(user)) var/mob/living/carbon/xenomorph/X = user if(!X.hive.unnesting_allowed && !isxeno_builder(X) && HIVE_ALLIED_TO_HIVE(X.hivenumber, hivenumber)) - to_chat(X, SPAN_XENOWARNING("You shouldn't interfere with the nest, leave that to the drones.")) + to_chat(X, SPAN_XENOWARNING("We shouldn't interfere with the nest, leave that to the drones.")) return else if(iscarbon(user)) var/mob/living/carbon/H = user if(HIVE_ALLIED_TO_HIVE(H.hivenumber, hivenumber)) - to_chat(H, SPAN_XENOWARNING("You shouldn't interfere with the nest, leave that to the drones.")) + to_chat(H, SPAN_XENOWARNING("We shouldn't interfere with the nest, leave that to the drones.")) return if(ishuman(buckled_mob) && isxeno(user)) @@ -165,7 +161,7 @@ to_chat(user, SPAN_WARNING("[H] was nested recently. Wait a bit.")) return if(H.stat != DEAD) - if(alert(user, "[H] is still alive and kicking! Are you sure you want to remove them from the nest?", "Confirmation", "Yes", "No") != "Yes") + if(alert(user, "[H] is still alive and kicking! Are we sure we want to remove them from the nest?", "Confirmation", "Yes", "No") != "Yes") return if(!buckled_mob || !user.Adjacent(H) || user.is_mob_incapacitated(FALSE)) return @@ -180,8 +176,9 @@ playsound(loc, "alien_resin_move", 50) if(ishuman(buckled_mob)) var/mob/living/carbon/human/H = buckled_mob - user.attack_log += "\[[time_stamp()]\] Unnested [key_name(H)] at [get_location_in_text(H)]" - H.attack_log += "\[[time_stamp()]\] Unnested by [key_name(user)] at [get_location_in_text(H)]" + if(isxeno(user)) + msg_admin_niche("[key_name(user)] unnested [key_name(H)] at [get_location_in_text(H)] [ADMIN_JMP(loc)]") + log_interact(user, H, "[key_name(user)] unnested [key_name(H)] at [get_area_name(loc)]") unbuckle() return @@ -195,7 +192,7 @@ return if(isxeno(mob)) - to_chat(user, SPAN_WARNING("You can't buckle your sisters.")) + to_chat(user, SPAN_WARNING("We can't buckle our sisters.")) return if(buckled_mob) @@ -207,7 +204,7 @@ return if(!isxeno(user) || issynth(mob)) - to_chat(user, SPAN_WARNING("Gross! You're not touching that stuff.")) + to_chat(user, SPAN_WARNING("Gross! We're not touching that stuff.")) return if(isyautja(mob) && !force_nest) @@ -248,6 +245,8 @@ do_buckle(mob, user) ADD_TRAIT(mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE) + ADD_TRAIT(mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE) + SEND_SIGNAL(mob, COMSIG_MOB_NESTED, user) if(!human) return TRUE @@ -277,6 +276,7 @@ buckled_mob.pixel_y = 0 buckled_mob.old_y = 0 REMOVE_TRAIT(buckled_mob, TRAIT_NESTED, TRAIT_SOURCE_BUCKLE) + REMOVE_TRAIT(buckled_mob, TRAIT_NO_STRAY, TRAIT_SOURCE_BUCKLE) var/mob/living/carbon/human/buckled_human = buckled_mob var/mob/dead/observer/G = ghost_of_buckled_mob @@ -321,7 +321,7 @@ if(M.a_intent == INTENT_HARM && !buckled_mob) //can't slash nest with an occupant. M.animation_attack_on(src) M.visible_message(SPAN_DANGER("\The [M] claws at \the [src]!"), \ - SPAN_DANGER("You claw at \the [src].")) + SPAN_DANGER("We claw at \the [src].")) playsound(loc, "alien_resin_break", 25) health -= (M.melee_damage_upper + 25) //Beef up the damage a bit healthcheck() diff --git a/code/game/objects/structures/surface.dm b/code/game/objects/structures/surface.dm index 13a81af2dc..0d86f131eb 100644 --- a/code/game/objects/structures/surface.dm +++ b/code/game/objects/structures/surface.dm @@ -27,8 +27,8 @@ var/mouse_x = text2num(click_data["icon-x"])-1 // Ranging from 0 to 31 var/mouse_y = text2num(click_data["icon-y"])-1 - var/cell_x = Clamp(round(mouse_x/CELLSIZE), 0, CELLS-1) // Ranging from 0 to CELLS-1 - var/cell_y = Clamp(round(mouse_y/CELLSIZE), 0, CELLS-1) + var/cell_x = clamp(floor(mouse_x/CELLSIZE), 0, CELLS-1) // Ranging from 0 to CELLS-1 + var/cell_y = clamp(floor(mouse_y/CELLSIZE), 0, CELLS-1) var/list/center = cached_key_number_decode(new_item.center_of_mass) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 88e917a5b1..7ce86f9d46 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -143,7 +143,7 @@ dir_sum += 128 var/table_type = 0 //stand_alone table - if((dir_sum%16) in cardinal) + if((dir_sum%16) in GLOB.cardinals) table_type = 1 //endtable dir_sum %= 16 if((dir_sum%16) in list(3, 12)) @@ -254,8 +254,6 @@ /obj/structure/surface/table/MouseDrop_T(obj/item/I, mob/user) if (!istype(I) || user.get_active_hand() != I) return ..() - if(isrobot(user)) - return user.drop_held_item() if(I.loc != loc) step(I, get_dir(I, src)) @@ -278,8 +276,8 @@ M.KnockDown(5) M.Stun(5) M.apply_damage(8, def_zone = "head") - user.visible_message(SPAN_DANGER("[user] slams [M]'s face against [src]!"), - SPAN_DANGER("You slam [M]'s face against [src]!")) + user.visible_message(SPAN_DANGER("[user] slams [M]'s face against [src]!"), + SPAN_DANGER("You slam [M]'s face against [src]!")) playsound(src.loc, 'sound/weapons/tablehit1.ogg', 25, 1) else to_chat(user, SPAN_WARNING("You need a better grip to do that!")) @@ -288,8 +286,9 @@ M.forceMove(loc) M.KnockDown(5) M.Stun(5) - user.visible_message(SPAN_DANGER("[user] throws [M] on [src]."), - SPAN_DANGER("You throw [M] on [src].")) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + user.visible_message(SPAN_DANGER("[user] throws [M] on [src], stunning them!"), + SPAN_DANGER("You throw [M] on [src], stunning them!")) return if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH) && !(user.a_intent == INTENT_HELP)) @@ -302,7 +301,7 @@ deconstruct(TRUE) return - if((W.flags_item & ITEM_ABSTRACT) || isrobot(user)) + if(W.flags_item & ITEM_ABSTRACT) return if(istype(W, /obj/item/weapon/wristblades)) @@ -354,7 +353,11 @@ set category = "Object" set src in oview(1) - if(!can_touch(usr) || ismouse(usr)) + if(!can_touch(usr)) + return + + if(usr.mob_size == MOB_SIZE_SMALL) + to_chat(usr, SPAN_WARNING("[isxeno(usr) ? "We are" : "You're"] too small to flip [src].")) return if(usr.a_intent != INTENT_HARM) @@ -382,9 +385,11 @@ to_chat(usr, SPAN_WARNING("You have moved a table too recently.")) return FALSE - for(var/mob/living/mob_behind_table in oview(src, 0)) + FOR_DOVIEW(var/mob/living/mob_behind_table, 0, src, HIDE_INVISIBLE_OBSERVER) to_chat(usr, SPAN_WARNING("[mob_behind_table] is in the way of [src].")) + FOR_DVIEW_END return FALSE + FOR_DVIEW_END var/list/directions = list() if(direction) @@ -683,8 +688,6 @@ /obj/structure/surface/rack/MouseDrop_T(obj/item/I, mob/user) if (!istype(I) || user.get_active_hand() != I) return ..() - if(isrobot(user)) - return user.drop_held_item() if(I.loc != loc) step(I, get_dir(I, src)) @@ -694,7 +697,7 @@ deconstruct(TRUE) playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) return - if((W.flags_item & ITEM_ABSTRACT) || isrobot(user)) + if(W.flags_item & ITEM_ABSTRACT) return ..() diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm index 8df4359aa5..129e03b717 100644 --- a/code/game/objects/structures/tank_dispenser.dm +++ b/code/game/objects/structures/tank_dispenser.dm @@ -95,7 +95,7 @@ if(href_list["oxygen"]) if(oxygentanks > 0) var/obj/item/tank/oxygen/O - if(oxytanks.len == oxygentanks) + if(length(oxytanks) == oxygentanks) O = oxytanks[1] oxytanks.Remove(O) else @@ -107,7 +107,7 @@ if(href_list["phoron"]) if(phorontanks > 0) var/obj/item/tank/phoron/P - if(platanks.len == phorontanks) + if(length(platanks) == phorontanks) P = platanks[1] platanks.Remove(P) else diff --git a/code/game/objects/structures/urinal.dm b/code/game/objects/structures/urinal.dm new file mode 100644 index 0000000000..c6d14f4654 --- /dev/null +++ b/code/game/objects/structures/urinal.dm @@ -0,0 +1,22 @@ +/obj/structure/urinal + name = "urinal" + desc = "The HU-452, an experimental urinal." + icon = 'icons/obj/structures/props/watercloset.dmi' + icon_state = "urinal" + density = FALSE + anchored = TRUE + +/obj/structure/urinal/attackby(obj/item/I, mob/living/user) + if(istype(I, /obj/item/grab)) + if(isxeno(user)) return + var/obj/item/grab/G = I + if(isliving(G.grabbed_thing)) + var/mob/living/GM = G.grabbed_thing + if(user.grab_level > GRAB_PASSIVE) + if(!GM.loc == get_turf(src)) + to_chat(user, SPAN_NOTICE("[GM.name] needs to be on the urinal.")) + return + user.visible_message(SPAN_DANGER("[user] slams [GM.name] into [src]!"), SPAN_NOTICE("You slam [GM.name] into [src]!")) + GM.apply_damage(8, BRUTE) + else + to_chat(user, SPAN_NOTICE("You need a tighter grip.")) diff --git a/code/game/objects/structures/vulture_spotter.dm b/code/game/objects/structures/vulture_spotter.dm index 4111bdfcdd..dcbfd88c9c 100644 --- a/code/game/objects/structures/vulture_spotter.dm +++ b/code/game/objects/structures/vulture_spotter.dm @@ -87,7 +87,7 @@ if(user.client) RegisterSignal(user.client, COMSIG_PARENT_QDELETING, PROC_REF(do_unscope)) user.client.change_view(scope_zoom, src) - RegisterSignal(user, list(COMSIG_MOB_PICKUP_ITEM, COMSIG_MOB_RESISTED), PROC_REF(do_unscope)) + RegisterSignal(user, list(COMSIG_MOB_PICKUP_ITEM, COMSIG_MOB_RESISTED, COMSIG_MOB_DEATH, COMSIG_LIVING_SET_BODY_POSITION), PROC_REF(do_unscope)) user.see_in_dark += darkness_view user.lighting_alpha = 127 user.sync_lighting_plane_alpha() @@ -108,7 +108,7 @@ REMOVE_TRAIT(user, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Vulture spotter")) user.reset_view(null) user.Move(get_step(src, reverse_direction(src.dir))) - user.client?.change_view(world_view_size, src) + user.client?.change_view(GLOB.world_view_size, src) user.setDir(dir) //set the direction of the player to the direction the gun is facing update_pixels(FALSE) remove_action(user, /datum/action/vulture_tripod_unscope) @@ -237,11 +237,11 @@ user.lighting_alpha = user.default_lighting_alpha user.sync_lighting_plane_alpha() user.clear_fullscreen("vulture_spotter") - UnregisterSignal(user, list(COMSIG_MOB_PICKUP_ITEM, COMSIG_MOB_RESISTED)) + UnregisterSignal(user, list(COMSIG_MOB_PICKUP_ITEM, COMSIG_MOB_RESISTED, COMSIG_MOB_DEATH, COMSIG_LIVING_SET_BODY_POSITION)) user.pixel_x = 0 user.pixel_y = 0 if(user.client) - user.client.change_view(world_view_size, src) + user.client.change_view(GLOB.world_view_size, src) user.client.pixel_x = 0 user.client.pixel_y = 0 UnregisterSignal(user.client, COMSIG_PARENT_QDELETING) @@ -298,6 +298,10 @@ return rifle.attachments["rail"] +/obj/structure/vulture_spotter_tripod/check_eye(mob/living/user) + if((user.body_position != STANDING_UP) || (get_dist(user, src) > 0) || user.is_mob_incapacitated() || !user.client) + do_unscope() + /datum/action/vulture_tripod_unscope name = "Stop Using Scope" action_icon_state = "vulture_tripod_close" @@ -309,6 +313,7 @@ tripod = WEAKREF(spotting_tripod) /datum/action/vulture_tripod_unscope/action_activate() + . = ..() if(!tripod) return diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index 3f87f2c31a..8a949e80a2 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -1,5 +1,3 @@ -//todo: toothbrushes, and some sort of "toilet-filthinator" for the hos - /obj/structure/toilet name = "toilet" desc = "The HT-451, a torque rotation-based, waste disposal unit for small matter. This one seems remarkably clean." @@ -10,19 +8,22 @@ can_buckle = TRUE unslashable = TRUE buckle_lying = 0 - var/open = 0 //if the lid is up - var/cistern = 0 //if the cistern bit is open - var/w_items = 0 //the combined w_class of all the items in the cistern - var/mob/living/swirlie = null //the mob being given a swirlie + /// if the lid is up + var/open = 0 + /// if the cistern bit is open + var/cistern = 0 + /// the combined w_class of all the items in the cistern + var/w_items = 0 + /// the mob being given a swirlie + var/mob/living/swirlie = null var/list/buckling_y = list("north" = 1, "south" = 4, "east" = 0, "west" = 0) var/list/buckling_x = list("north" = 0, "south" = 0, "east" = -5, "west" = 4) var/atom/movable/overlay/cistern_overlay - /obj/structure/toilet/Initialize() . = ..() - open = round(rand(0, 1)) + open = floor(rand(0, 1)) cistern_overlay = new() cistern_overlay.icon = icon cistern_overlay.layer = ABOVE_MOB_LAYER @@ -30,6 +31,7 @@ vis_contents += cistern_overlay update_icon() + /obj/structure/toilet/attack_hand(mob/living/user as mob) if(buckled_mob) manual_unbuckle(user) @@ -70,7 +72,6 @@ flick("cistern[cistern]_flush", cistern_overlay) - /obj/structure/toilet/send_buckling_message(mob/M, mob/user) if (M == user) to_chat(M, SPAN_NOTICE("You seat yourself onto the toilet")) @@ -78,10 +79,10 @@ to_chat(user, SPAN_NOTICE("[M] has been seated onto the toilet by [user].")) to_chat(M, SPAN_NOTICE("You have been seated onto the toilet by [user].")) + /obj/structure/toilet/afterbuckle(mob/M) . = ..() - if(. && buckled_mob == M) var/direction = dir2text(dir) M.pixel_y = buckling_y[direction] + pixel_y @@ -107,7 +108,6 @@ M.overlays -= image("toilet00") - /obj/structure/toilet/verb/flip_lid() set name = "Flip lid" set category = "Object" @@ -117,11 +117,11 @@ update_icon() - /obj/structure/toilet/update_icon() icon_state = "toilet[open][cistern]" cistern_overlay.icon_state = "cistern[cistern]" + /obj/structure/toilet/attackby(obj/item/I, mob/living/user) if(HAS_TRAIT(I, TRAIT_TOOL_CROWBAR)) to_chat(user, SPAN_NOTICE("You start to [cistern ? "replace the lid on the cistern" : "lift the lid off the cistern"].")) @@ -152,7 +152,7 @@ GM.apply_damage(5, OXY) swirlie = null else - user.visible_message(SPAN_DANGER("[user] slams [GM.name] into the [src]!"), SPAN_NOTICE("You slam [GM.name] into the [src]!")) + user.visible_message(SPAN_DANGER("[user] slams [GM.name] into [src]!"), SPAN_NOTICE("You slam [GM.name] into [src]!")) GM.apply_damage(8, BRUTE) else to_chat(user, SPAN_NOTICE("You need a tighter grip.")) @@ -169,386 +169,3 @@ w_items += I.w_class to_chat(user, "You carefully place \the [I] into the cistern.") return - - - -/obj/structure/urinal - name = "urinal" - desc = "The HU-452, an experimental urinal." - icon = 'icons/obj/structures/props/watercloset.dmi' - icon_state = "urinal" - density = FALSE - anchored = TRUE - unslashable = TRUE - -/obj/structure/urinal/attackby(obj/item/I, mob/living/user) - if(istype(I, /obj/item/grab)) - if(isxeno(user)) return - var/obj/item/grab/G = I - if(isliving(G.grabbed_thing)) - var/mob/living/GM = G.grabbed_thing - if(user.grab_level > GRAB_PASSIVE) - if(!GM.loc == get_turf(src)) - to_chat(user, SPAN_NOTICE("[GM.name] needs to be on the urinal.")) - return - user.visible_message(SPAN_DANGER("[user] slams [GM.name] into the [src]!"), SPAN_NOTICE("You slam [GM.name] into the [src]!")) - GM.apply_damage(8, BRUTE) - else - to_chat(user, SPAN_NOTICE("You need a tighter grip.")) - - - -/obj/structure/machinery/shower - name = "shower" - desc = "The HS-451. Installed in the 2050s by the Weyland Hygiene Division." - icon = 'icons/obj/structures/props/watercloset.dmi' - icon_state = "shower" - density = FALSE - anchored = TRUE - use_power = USE_POWER_NONE - var/on = 0 - var/obj/effect/mist/mymist = null - var/ismist = 0 //needs a var so we can make it linger~ - var/watertemp = "normal" //freezing, normal, or boiling - var/mobpresent = 0 //true if there is a mob on the shower's loc, this is to ease process() - var/is_washing = 0 - - COOLDOWN_DECLARE(last_sound) - -/obj/structure/machinery/shower/Initialize() - . = ..() - create_reagents(2) - -//add heat controls? when emagged, you can freeze to death in it? - -/obj/effect/mist - name = "mist" - icon = 'icons/obj/structures/props/watercloset.dmi' - icon_state = "mist" - layer = FLY_LAYER - anchored = TRUE - mouse_opacity = MOUSE_OPACITY_TRANSPARENT - -/obj/structure/machinery/shower/attack_hand(mob/M as mob) - on = !on - update_icon() - if(on) - start_processing() - if (M.loc == loc) - wash(M) - check_heat(M) - for (var/atom/movable/G in src.loc) - G.clean_blood() - else - stop_processing() - -/obj/structure/machinery/shower/attackby(obj/item/I as obj, mob/user as mob) - if(I.type == /obj/item/device/analyzer) - to_chat(user, SPAN_NOTICE("The water temperature seems to be [watertemp].")) - if(HAS_TRAIT(I, TRAIT_TOOL_WRENCH)) - to_chat(user, SPAN_NOTICE("You begin to adjust the temperature valve with \the [I].")) - if(do_after(user, 50, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - switch(watertemp) - if("normal") - watertemp = "freezing" - if("freezing") - watertemp = "boiling" - if("boiling") - watertemp = "normal" - user.visible_message(SPAN_NOTICE("[user] adjusts the shower with \the [I]."), SPAN_NOTICE("You adjust the shower with \the [I].")) - add_fingerprint(user) - -/obj/structure/machinery/shower/update_icon() //this is terribly unreadable, but basically it makes the shower mist up - overlays.Cut() //once it's been on for a while, in addition to handling the water overlay. - QDEL_NULL(mymist) - - if(on) - overlays += image('icons/obj/structures/props/watercloset.dmi', src, "water", MOB_LAYER + 1, dir) - if(watertemp == "freezing") - return - if(!ismist) - spawn(50) - if(src && on) - ismist = 1 - mymist = new /obj/effect/mist(loc) - else - ismist = 1 - mymist = new /obj/effect/mist(loc) - else if(ismist) - ismist = 1 - mymist = new /obj/effect/mist(loc) - spawn(250) - if(src && !on) - QDEL_NULL(mymist) - ismist = 0 - -/obj/structure/machinery/shower/Crossed(atom/movable/O) - ..() - wash(O) - if(ismob(O)) - mobpresent++ - check_heat(O) - -/obj/structure/machinery/shower/Uncrossed(atom/movable/O) - if(ismob(O)) - mobpresent-- - ..() - -//Yes, showers are super powerful as far as washing goes. -/obj/structure/machinery/shower/proc/wash(atom/movable/O as obj|mob) - if(!on) return - - - if(isliving(O)) - var/mob/living/L = O - L.ExtinguishMob() - L.fire_stacks = -20 //Douse ourselves with water to avoid fire more easily - to_chat(L, SPAN_WARNING("You've been drenched in water!")) - if(iscarbon(O)) - var/mob/living/carbon/M = O - if(M.r_hand) - M.r_hand.clean_blood() - if(M.l_hand) - M.l_hand.clean_blood() - if(M.back) - if(M.back.clean_blood()) - M.update_inv_back(0) - if(ishuman(M)) - var/mob/living/carbon/human/H = M - var/washgloves = 1 - var/washshoes = 1 - var/washmask = 1 - var/washears = 1 - var/washglasses = 1 - - if(H.wear_suit) - washgloves = !(H.wear_suit.flags_inv_hide & HIDEGLOVES) - washshoes = !(H.wear_suit.flags_inv_hide & HIDESHOES) - - if(H.head) - washmask = !(H.head.flags_inv_hide & HIDEMASK) - washglasses = !(H.head.flags_inv_hide & HIDEEYES) - washears = !(H.head.flags_inv_hide & HIDEEARS) - - if(H.wear_mask) - if (washears) - washears = !(H.wear_mask.flags_inv_hide & HIDEEARS) - if (washglasses) - washglasses = !(H.wear_mask.flags_inv_hide & HIDEEYES) - - if(H.head) - if(H.head.clean_blood()) - H.update_inv_head() - if(H.wear_suit) - if(H.wear_suit.clean_blood()) - H.update_inv_wear_suit() - else if(H.w_uniform) - if(H.w_uniform.clean_blood()) - H.update_inv_w_uniform() - if(H.gloves && washgloves) - if(H.gloves.clean_blood()) - H.update_inv_gloves() - if(H.shoes && washshoes) - if(H.shoes.clean_blood()) - H.update_inv_shoes() - if(H.wear_mask && washmask) - if(H.wear_mask.clean_blood()) - H.update_inv_wear_mask() - if(H.glasses && washglasses) - if(H.glasses.clean_blood()) - H.update_inv_glasses() - if((H.wear_l_ear || H.wear_r_ear) && washears) - if((H.wear_l_ear && H.wear_l_ear.clean_blood()) ||(H.wear_r_ear && H.wear_r_ear.clean_blood())) - H.update_inv_ears() - if(H.belt) - if(H.belt.clean_blood()) - H.update_inv_belt() - H.clean_blood(washshoes) - else - if(M.wear_mask) //if the mob is not human, it cleans the mask without asking for bitflags - if(M.wear_mask.clean_blood()) - M.update_inv_wear_mask() - M.clean_blood() - else - O.clean_blood() - - if(isturf(loc)) - var/turf/tile = loc - tile.clean_blood() - for(var/obj/effect/E in tile) - if(istype(E,/obj/effect/decal/cleanable) || istype(E,/obj/effect/overlay)) - qdel(E) - -/obj/structure/machinery/shower/process() - if(!on) return - - if(COOLDOWN_FINISHED(src, last_sound)) - COOLDOWN_START(src, last_sound, 8 SECONDS) - playsound(src, "gurgle", 25, FALSE) - wash_floor() - if(!mobpresent) return - for(var/mob/living/carbon/C in loc) - check_heat(C) - -/obj/structure/machinery/shower/proc/wash_floor() - if(!ismist && is_washing) - return - is_washing = 1 - var/turf/T = get_turf(src) -// reagents.add_reagent("water", 2) - T.clean(src) - addtimer(VARSET_CALLBACK(src, is_washing, FALSE), 10 SECONDS) - -/obj/structure/machinery/shower/proc/check_heat(mob/M as mob) - if(!on || watertemp == "normal") return - if(iscarbon(M)) - var/mob/living/carbon/C = M - - if(watertemp == "freezing") - C.bodytemperature = max(80, C.bodytemperature - 80) - C.recalculate_move_delay = TRUE - to_chat(C, SPAN_WARNING("The water is freezing!")) - return - if(watertemp == "boiling") - C.bodytemperature = min(500, C.bodytemperature + 35) - C.recalculate_move_delay = TRUE - C.apply_damage(5, BURN) - to_chat(C, SPAN_DANGER("The water is searing!")) - return - - - -/obj/item/toy/bikehorn/rubberducky - name = "rubber ducky" - desc = "Rubber ducky you're so fine, you make bathtime lots of fuuun. Rubber ducky I'm awfully fooooond of yooooouuuu~" //thanks doohl - icon = 'icons/obj/structures/props/watercloset.dmi' - icon_state = "rubberducky" - item_state = "rubberducky" - - - -/obj/structure/sink - name = "sink" - icon = 'icons/obj/structures/props/watercloset.dmi' - icon_state = "sink_emptied_animation" - desc = "A sink used for washing one's hands and face." - anchored = TRUE - unslashable = TRUE - var/busy = FALSE //Something's being washed at the moment - -/obj/structure/sink/Initialize() - . = ..() - if(prob(50)) - icon_state = "sink_emptied" - - - -/obj/structure/sink/proc/stop_flow() //sets sink animation to normal sink (without running water) - - if(prob(50)) - icon_state = "sink_emptied_animation" - else - icon_state = "sink_emptied" - flick("sink_animation_empty", src) - - - -/obj/structure/sink/attack_hand(mob/user) - if(isRemoteControlling(user)) - return - - if(!Adjacent(user)) - return - - if(busy) - to_chat(user, SPAN_DANGER("Someone's already washing here.")) - return - - to_chat(usr, SPAN_NOTICE(" You start washing your hands.")) - flick("sink_animation_fill", src) //<- play the filling animation then automatically switch back to the loop - icon_state = "sink_animation_fill_loop" //<- set it to the loop - addtimer(CALLBACK(src, PROC_REF(stop_flow)), 6 SECONDS) - playsound(loc, 'sound/effects/sinkrunning.ogg', 25, TRUE) - - busy = TRUE - sleep(40) - busy = FALSE - - if(!Adjacent(user)) return //Person has moved away from the sink - - user.clean_blood() - if(ishuman(user)) - user:update_inv_gloves() - for(var/mob/V in viewers(src, null)) - V.show_message(SPAN_NOTICE("[user] washes their hands using \the [src]."), SHOW_MESSAGE_VISIBLE) - - -/obj/structure/sink/attackby(obj/item/O as obj, mob/user as mob) - if(busy) - to_chat(user, SPAN_DANGER("Someone's already washing here.")) - return - - var/obj/item/reagent_container/RG = O - if (istype(RG) && RG.is_open_container()) - RG.reagents.add_reagent("water", min(RG.volume - RG.reagents.total_volume, RG.amount_per_transfer_from_this)) - user.visible_message(SPAN_NOTICE("[user] fills \the [RG] using \the [src]."),SPAN_NOTICE("You fill \the [RG] using \the [src].")) - return - - else if (istype(O, /obj/item/weapon/baton)) - var/obj/item/weapon/baton/B = O - if(B.bcell) - if(B.bcell.charge > 0 && B.status == 1) - flick("baton_active", src) - user.apply_effect(10, STUN) - user.stuttering = 10 - user.apply_effect(10, WEAKEN) - if(isrobot(user)) - var/mob/living/silicon/robot/R = user - R.cell.charge -= 20 - else - B.deductcharge(B.hitcost) - user.visible_message( \ - SPAN_DANGER("[user] was stunned by \his wet [O]!"), \ - SPAN_DANGER("You were stunned by your wet [O]!")) - return - - var/turf/location = user.loc - if(!isturf(location)) return - - var/obj/item/I = O - if(!I || !istype(I,/obj/item)) return - - to_chat(usr, SPAN_NOTICE(" You start washing \the [I].")) - - busy = TRUE - sleep(40) - busy = FALSE - - if(user.loc != location) return //User has moved - if(!I) return //Item's been destroyed while washing - if(user.get_active_hand() != I) return //Person has switched hands or the item in their hands - - O.clean_blood() - user.visible_message( \ - SPAN_NOTICE("[user] washes \a [I] using \the [src]."), \ - SPAN_NOTICE("You wash \a [I] using \the [src].")) - - -/obj/structure/sink/kitchen - name = "kitchen sink" - icon_state = "sink_alt" - - -/obj/structure/sink/puddle //splishy splashy ^_^ - name = "puddle" - icon_state = "puddle" - -/obj/structure/sink/puddle/attack_hand(mob/M as mob) - icon_state = "puddle-splash" - ..() - icon_state = "puddle" - -/obj/structure/sink/puddle/attackby(obj/item/O as obj, mob/user as mob) - icon_state = "puddle-splash" - ..() - icon_state = "puddle" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 7aa85129e1..14e15de246 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -81,7 +81,7 @@ junction = 0 if(anchored) var/turf/TU - for(var/dirn in cardinal) + for(var/dirn in GLOB.cardinals) TU = get_step(src, dirn) var/obj/structure/window/W = locate() in TU if(W && W.anchored && W.density && W.legacy_full) //Only counts anchored, non-destroyed, legacy full-tile windows. @@ -247,6 +247,10 @@ if(!not_damageable) //Impossible to destroy health -= 50 + M.attack_log += text("\[[time_stamp()]\] was slammed against [src] by [key_name(user)]") + user.attack_log += text("\[[time_stamp()]\] slammed [key_name(M)] against [src]") + msg_admin_attack("[key_name(user)] slammed [key_name(M)] against [src] at [get_area_name(M)]", M.loc.x, M.loc.y, M.loc.z) + healthcheck(1, 1, 1, M) //The person thrown into the window literally shattered it return @@ -286,7 +290,7 @@ to_chat(user, (state ? SPAN_NOTICE("You have pried the window into the frame.") : SPAN_NOTICE("You have pried the window out of the frame."))) else if(!not_damageable) //Impossible to destroy - health -= W.force + health -= W.force * W.demolition_mod if(health <= 7 && !reinf && !static_frame && !not_deconstructable) anchored = FALSE update_nearby_icons() @@ -353,14 +357,14 @@ //This proc is used to update the icons of nearby windows. /obj/structure/window/proc/update_nearby_icons() update_icon() - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) for(var/obj/structure/window/W in get_step(src, direction)) W.update_icon() /obj/structure/window/fire_act(exposed_temperature, exposed_volume) if(exposed_temperature > T0C + 800) if(!not_damageable) - health -= round(exposed_volume / 100) + health -= floor(exposed_volume / 100) healthcheck(0) //Don't make hit sounds, it's dumb with fire/heat ..() @@ -373,7 +377,7 @@ /obj/structure/window/phoronbasic/fire_act(exposed_temperature, exposed_volume) if(exposed_temperature > T0C + 32000) - health -= round(exposed_volume / 1000) + health -= floor(exposed_volume / 1000) healthcheck(0) //Don't make hit sounds, it's dumb with fire/heat ..() @@ -455,11 +459,8 @@ /obj/structure/window/reinforced/ultra/Initialize() . = ..() - GLOB.hijack_bustable_windows += src - -/obj/structure/window/reinforced/ultra/Destroy() - GLOB.hijack_bustable_windows -= src - return ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(deconstruct)) /obj/structure/window/reinforced/full flags_atom = FPRINT @@ -585,11 +586,9 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable/Initialize() . = ..() - GLOB.hijack_bustable_windows += src + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(deconstruct)) -/obj/structure/window/framed/almayer/hull/hijack_bustable/Destroy() - GLOB.hijack_bustable_windows -= src - return ..() /obj/structure/window/framed/almayer/white icon_state = "white_rwindow0" basestate = "white_rwindow" @@ -623,6 +622,28 @@ basestate = "w_ai_rwindow" window_frame = /obj/structure/window_frame/almayer/aicore/white +/obj/structure/window/framed/almayer/aicore/black + icon_state = "alm_ai_rwindow0" + basestate = "alm_ai_rwindow" + window_frame = /obj/structure/window_frame/almayer/aicore/black + +/obj/structure/window/framed/almayer/aicore/hull/black + icon_state = "alm_ai_rwindow0" + basestate = "alm_ai_rwindow" + window_frame = /obj/structure/window_frame/almayer/aicore/black + not_damageable = TRUE + not_deconstructable = TRUE + unslashable = TRUE + unacidable = TRUE + health = 1000000 //Failsafe, shouldn't matter + +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable //I exist to explode after hijack, that is all. + +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable/Initialize() + . = ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(deconstruct)) + /obj/structure/window/framed/almayer/aicore/white/hull name = "hull window" desc = "An ultra-reinforced window designed to protect the AI Core. Made out of exotic materials to prevent hull breaches, nothing will get through here." @@ -893,7 +914,7 @@ return triggered = TRUE - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) if(direction == from_dir) continue //doesn't check backwards for(var/obj/structure/window/framed/prison/reinforced/hull/W in get_step(src,direction) ) @@ -986,7 +1007,7 @@ return triggered = 1 - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) if(direction == from_dir) continue //doesn't check backwards diff --git a/code/game/objects/structures/window_frame.dm b/code/game/objects/structures/window_frame.dm index 460a11af10..ae40be1472 100644 --- a/code/game/objects/structures/window_frame.dm +++ b/code/game/objects/structures/window_frame.dm @@ -184,6 +184,11 @@ basestate = "w_ai_window" window_type = /obj/structure/window/framed/almayer/aicore/white +/obj/structure/window_frame/almayer/aicore/black + icon_state = "alm_window0_frame" + basestate = "alm_window" + window_type = /obj/structure/window/framed/almayer/aicore/black + /obj/structure/window_frame/almayer/requisitions/attackby(obj/item/W, mob/living/user) if(istype(W, sheet_type)) to_chat(user, SPAN_WARNING("You can't repair this window.")) diff --git a/code/game/runtimes.dm b/code/game/runtimes.dm index 2cdc955aa4..41c18c221a 100644 --- a/code/game/runtimes.dm +++ b/code/game/runtimes.dm @@ -28,7 +28,7 @@ GLOBAL_REAL_VAR(total_runtimes) if(!full_init_runtimes) full_init_runtimes = list() - // If this occured during early init, we store the full error to write it to world.log when it's available + // If this occurred during early init, we store the full error to write it to world.log when it's available if(!runtime_logging_ready) full_init_runtimes += E.desc diff --git a/code/game/sim_manager/datums/simulator.dm b/code/game/sim_manager/datums/simulator.dm index 5f3f48df27..1f1aedad81 100644 --- a/code/game/sim_manager/datums/simulator.dm +++ b/code/game/sim_manager/datums/simulator.dm @@ -40,7 +40,7 @@ if(!sim_camera) to_chat(user, SPAN_WARNING("GPU damaged! Unable to start simulation.")) return - if(user.client.view != world_view_size) + if(user.client.view != GLOB.world_view_size) to_chat(user, SPAN_WARNING("You're too busy looking at something else.")) return user.reset_view(sim_camera) diff --git a/code/game/smoothwall.dm b/code/game/smoothwall.dm index eb81861a3b..b928463997 100644 --- a/code/game/smoothwall.dm +++ b/code/game/smoothwall.dm @@ -13,7 +13,7 @@ var/j //second iterator var/k //third iterator (I know, that's a lot, but I'm trying to make this modular, so bear with me) - for(i in cardinal) //For all cardinal dir turfs + for(i in GLOB.cardinals) //For all cardinal dir turfs T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) //And for all types that we tile with @@ -34,7 +34,7 @@ var/j //second iterator var/atom/k //third iterator (I know, that's a lot, but I'm trying to make this modular, so bear with me) - for(i in cardinal) //For all cardinal dir turfs + for(i in GLOB.cardinals) //For all cardinal dir turfs T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) //And for all types that we tile with @@ -61,7 +61,7 @@ var/j var/k - for(i in cardinal) + for(i in GLOB.cardinals) T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) @@ -93,7 +93,7 @@ var/j var/k - for(i in cardinal) + for(i in GLOB.cardinals) T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) @@ -227,7 +227,7 @@ var/j //second iterator var/k //third iterator (I know, that's a lot, but I'm trying to make this modular, so bear with me) - for(i in alldirs) //For all cardinal dir turfs + for(i in GLOB.alldirs) //For all cardinal dir turfs T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) //And for all types that we tile with @@ -249,7 +249,7 @@ var/j //second iterator var/k //third iterator (I know, that's a lot, but I'm trying to make this modular, so bear with me) - for(i in alldirs) //For all cardinal dir turfs + for(i in GLOB.alldirs) //For all cardinal dir turfs T = get_step(src, i) if(!istype(T)) continue for(j in tiles_with) //And for all types that we tile with diff --git a/code/game/sound.dm b/code/game/sound.dm index b9c9636093..9bc5bd7828 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -31,6 +31,7 @@ var/volume_cat = VOLUME_SFX ///Maximum theoretical range (in tiles) of the sound, by default is equal to the volume. var/range = 0 + var/list/echo = new /list(18) //Map coordinates, not sound coordinates, generated by the procs var/x var/y @@ -64,42 +65,12 @@ * * Returns selected channel on success, FALSE on failure */ -/proc/playsound(atom/source, sound/soundin, vol = 100, vary = FALSE, sound_range, vol_cat = VOLUME_SFX, channel = 0, status, falloff = 1, y_s_offset, x_s_offset) +/proc/playsound(atom/source, sound/soundin, vol = 100, vary = FALSE, sound_range, vol_cat = VOLUME_SFX, channel = 0, status, falloff = 1, list/echo, y_s_offset, x_s_offset) if(isarea(source)) error("[source] is an area and is trying to make the sound: [soundin]") return FALSE - var/datum/sound_template/S = new() - - var/sound/SD = soundin - if(istype(SD)) - S.file = SD.file - S.wait = SD.wait - S.repeat = SD.repeat - else - S.file = get_sfx(soundin) - S.channel = channel ? channel : get_free_channel() - S.status = status - S.falloff = falloff - S.volume = vol - S.volume_cat = vol_cat - S.y_s_offset = y_s_offset - S.x_s_offset = x_s_offset - if(vary != FALSE) - if(vary > 1) - S.frequency = vary - else - S.frequency = GET_RANDOM_FREQ // Same frequency for everybody - - if(!sound_range) - sound_range = floor(0.25*vol) //if no specific range, the max range is equal to a quarter of the volume. - S.range = sound_range - - var/turf/turf_source = get_turf(source) - if(!turf_source?.z) - return FALSE var/datum/sound_template/template = new() - if(istype(soundin)) template.file = soundin.file template.repeat = soundin.repeat @@ -115,23 +86,33 @@ //template.echo = soundin.echo else template.file = get_sfx(soundin) - - template.channel = channel || get_free_channel() - template.volume = vol - if(vary > 1) - template.frequency = vary - else if(vary) - template.frequency = GET_RANDOM_FREQ // Same frequency for everybody + template.channel = channel ? channel : get_free_channel() template.status = status template.falloff = falloff - + template.volume = vol template.volume_cat = vol_cat - template.range = sound_range || floor(0.25 * vol) //if no specific range, the max range is equal to a quarter of the volume. + for(var/pos = 1 to length(echo)) + if(!echo[pos]) + continue + template.echo[pos] = echo[pos] + template.y_s_offset = y_s_offset + template.x_s_offset = x_s_offset + if(vary != FALSE) + if(vary > 1) + template.frequency = vary + else + template.frequency = GET_RANDOM_FREQ // Same frequency for everybody + + if(!sound_range) + sound_range = floor(0.25*vol) //if no specific range, the max range is equal to a quarter of the volume. + template.range = sound_range + + var/turf/turf_source = get_turf(source) + if(!turf_source?.z) + return FALSE template.x = turf_source.x template.y = turf_source.y template.z = turf_source.z - template.x_s_offset = x_s_offset - template.y_s_offset = y_s_offset if(!SSinterior) SSsound.queue(template) @@ -140,18 +121,19 @@ var/list/datum/interior/extra_interiors = list() // If we're in an interior, range the chunk, then adjust to do so from outside instead if(SSinterior.in_interior(turf_source)) - var/datum/interior/VI = SSinterior.get_interior_by_coords(turf_source.x, turf_source.y, turf_source.z) - if(VI?.ready) - extra_interiors |= VI - if(VI.exterior) - var/turf/new_turf_source = get_turf(VI.exterior) + var/datum/interior/vehicle_interior = SSinterior.get_interior_by_coords(turf_source.x, turf_source.y, turf_source.z) + if(vehicle_interior?.ready) + extra_interiors |= vehicle_interior + if(vehicle_interior.exterior) + var/turf/new_turf_source = get_turf(vehicle_interior.exterior) template.x = new_turf_source.x template.y = new_turf_source.y template.z = new_turf_source.z + else sound_range = 0 // Range for 'nearby interiors' aswell - for(var/datum/interior/VI in SSinterior.interiors) - if(VI?.ready && VI.exterior?.z == turf_source.z && get_dist(VI.exterior, turf_source) <= sound_range) - extra_interiors |= VI + for(var/datum/interior/vehicle_interior in SSinterior.interiors) + if(vehicle_interior?.ready && vehicle_interior.exterior?.z == turf_source.z && get_dist(vehicle_interior.exterior, turf_source) <= sound_range) + extra_interiors |= vehicle_interior SSsound.queue(template, null, extra_interiors) return template.channel @@ -175,8 +157,9 @@ * * Returns FALSE on failure */ -/proc/playsound_client(client/C, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel = 0, status, y_s_offset, x_s_offset) - if(!istype(C) || !C.soundOutput) return FALSE +/proc/playsound_client(client/client, sound/soundin, atom/origin, vol = 100, random_freq, vol_cat = VOLUME_SFX, channel = 0, status, list/echo, y_s_offset, x_s_offset) + if(!istype(client) || !client.soundOutput) + return FALSE var/datum/sound_template/template = new() @@ -200,18 +183,23 @@ template.volume = vol if(random_freq) template.frequency = GET_RANDOM_FREQ - template.status = status - + template.volume = vol template.volume_cat = vol_cat var/turf/turf_origin = get_turf(origin) if(turf_origin) template.x = turf_origin.x template.y = turf_origin.y template.z = turf_origin.z - template.x_s_offset = x_s_offset + template.channel = channel + template.status = status + for(var/pos = 1 to length(echo)) + if(!echo[pos]) + continue + template.echo[pos] = echo[pos] template.y_s_offset = y_s_offset + template.x_s_offset = x_s_offset - SSsound.queue(template, list(C)) + SSsound.queue(template, list(client)) /** * Play a sound effect to all mobs that are map-level contents of an area. @@ -227,7 +215,7 @@ * * Returns FALSE on failure */ -/proc/playsound_area(area/A, sound/soundin, vol = 100, channel = 0, status, vol_cat = VOLUME_SFX, y_s_offset, x_s_offset) +/proc/playsound_area(area/A, sound/soundin, vol = 100, channel = 0, status, vol_cat = VOLUME_SFX, list/echo, y_s_offset, x_s_offset) if(!isarea(A)) return FALSE @@ -254,6 +242,10 @@ template.status = status template.volume_cat = vol_cat + for(var/pos = 1 to length(echo)) + if(!echo[pos]) + continue + template.echo[pos] = echo[pos] template.x_s_offset = x_s_offset template.y_s_offset = y_s_offset @@ -285,7 +277,7 @@ * * Returns selected channel on success, FALSE on failure */ -/proc/playsound_z(list/z, sound/soundin, volume = 100, vol_cat = VOLUME_SFX, y_s_offset, x_s_offset) +/proc/playsound_z(list/z, sound/soundin, volume = 100, vol_cat = VOLUME_SFX, echo, y_s_offset, x_s_offset) var/datum/sound_template/template = new() if(istype(soundin)) @@ -305,12 +297,13 @@ template.file = get_sfx(soundin) template.channel = SOUND_CHANNEL_Z - template.volume = volume - template.volume_cat = vol_cat - template.x_s_offset = x_s_offset + for(var/pos = 1 to length(echo)) + if(!echo[pos]) + continue + template.echo[pos] = echo[pos] template.y_s_offset = y_s_offset - + template.x_s_offset = x_s_offset var/list/hearers = list() for(var/mob/mob in GLOB.player_list) if((mob.z in z) && mob.client.soundOutput) @@ -319,215 +312,225 @@ SSsound.queue(template, hearers) // The pick() proc has a built-in chance that can be added to any option by adding ,X; to the end of an option, where X is the % chance it will play. -/proc/get_sfx(S) - if(istext(S)) - switch(S) +/proc/get_sfx(sound) + if(istext(sound)) + switch(sound) // General effects if("shatter") - S = pick('sound/effects/Glassbr1.ogg','sound/effects/Glassbr2.ogg','sound/effects/Glassbr3.ogg') + sound = pick('sound/effects/Glassbr1.ogg','sound/effects/Glassbr2.ogg','sound/effects/Glassbr3.ogg') if("windowshatter") //meaty window shattering sound - S = pick('sound/effects/window_shatter1.ogg','sound/effects/window_shatter2.ogg','sound/effects/window_shatter3.ogg') + sound = pick('sound/effects/window_shatter1.ogg','sound/effects/window_shatter2.ogg','sound/effects/window_shatter3.ogg') if("glassbreak") //small breaks for bottles/etc. - S = pick('sound/effects/glassbreak1.ogg','sound/effects/glassbreak2.ogg','sound/effects/glassbreak3.ogg','sound/effects/glassbreak4.ogg') + sound = pick('sound/effects/glassbreak1.ogg','sound/effects/glassbreak2.ogg','sound/effects/glassbreak3.ogg','sound/effects/glassbreak4.ogg') if("explosion") - S = pick('sound/effects/explosion1.ogg','sound/effects/explosion2.ogg','sound/effects/explosion3.ogg','sound/effects/explosion4.ogg','sound/effects/explosion5.ogg') + sound = pick('sound/effects/explosion1.ogg','sound/effects/explosion2.ogg','sound/effects/explosion3.ogg','sound/effects/explosion4.ogg','sound/effects/explosion5.ogg') if("bigboom") - S = pick('sound/effects/bigboom1.ogg','sound/effects/bigboom2.ogg','sound/effects/bigboom3.ogg','sound/effects/bigboom4.ogg') + sound = pick('sound/effects/bigboom1.ogg','sound/effects/bigboom2.ogg','sound/effects/bigboom3.ogg','sound/effects/bigboom4.ogg') if("sparks") - S = pick('sound/effects/sparks1.ogg','sound/effects/sparks2.ogg','sound/effects/sparks3.ogg','sound/effects/sparks4.ogg') + sound = pick('sound/effects/sparks1.ogg','sound/effects/sparks2.ogg','sound/effects/sparks3.ogg','sound/effects/sparks4.ogg') if("rustle") - S = pick('sound/effects/rustle1.ogg','sound/effects/rustle2.ogg','sound/effects/rustle3.ogg','sound/effects/rustle4.ogg','sound/effects/rustle5.ogg') + sound = pick('sound/effects/rustle1.ogg','sound/effects/rustle2.ogg','sound/effects/rustle3.ogg','sound/effects/rustle4.ogg','sound/effects/rustle5.ogg') if("toolbox") - S = pick('sound/effects/toolbox.ogg') + sound = pick('sound/effects/toolbox.ogg') if("pillbottle") - S = pick('sound/effects/pillbottle.ogg') + sound = pick('sound/effects/pillbottle.ogg') if("rip") - S = pick('sound/effects/rip1.ogg','sound/effects/rip2.ogg') + sound = pick('sound/effects/rip1.ogg','sound/effects/rip2.ogg') if("lighter") - S = pick('sound/effects/lighter1.ogg','sound/effects/lighter2.ogg','sound/effects/lighter3.ogg') + sound = pick('sound/effects/lighter1.ogg','sound/effects/lighter2.ogg','sound/effects/lighter3.ogg') if("zippo_open") - S = pick('sound/effects/zippo_open.ogg') + sound = pick('sound/effects/zippo_open.ogg') if("zippo_close") - S = pick('sound/effects/zippo_close.ogg') + sound = pick('sound/effects/zippo_close.ogg') if("bonk") //somewhat quiet, increase volume - S = pick('sound/machines/bonk.ogg') + sound = pick('sound/machines/bonk.ogg') if("cane_step") - S = pick('sound/items/cane_step_1.ogg', 'sound/items/cane_step_2.ogg', 'sound/items/cane_step_3.ogg', 'sound/items/cane_step_4.ogg', 'sound/items/cane_step_5.ogg', ) + sound = pick('sound/items/cane_step_1.ogg', 'sound/items/cane_step_2.ogg', 'sound/items/cane_step_3.ogg', 'sound/items/cane_step_4.ogg', 'sound/items/cane_step_5.ogg', ) if("match") - S = pick('sound/effects/match.ogg') + sound = pick('sound/effects/match.ogg') + if("throwing") + sound = pick('sound/effects/throwing/swoosh1.ogg', 'sound/effects/throwing/swoosh2.ogg', 'sound/effects/throwing/swoosh3.ogg', 'sound/effects/throwing/swoosh4.ogg') if("punch") - S = pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg') + sound = pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg') if("swing_hit") - S = pick('sound/weapons/genhit1.ogg', 'sound/weapons/genhit2.ogg', 'sound/weapons/genhit3.ogg') + sound = pick('sound/weapons/genhit1.ogg', 'sound/weapons/genhit2.ogg', 'sound/weapons/genhit3.ogg') if("clan_sword_hit") - S = pick('sound/weapons/clan_sword_hit_1.ogg', 'sound/weapons/clan_sword_hit_2.ogg') + sound = pick('sound/weapons/clan_sword_hit_1.ogg', 'sound/weapons/clan_sword_hit_2.ogg') if("slam") - S = pick('sound/effects/slam1.ogg','sound/effects/slam2.ogg','sound/effects/slam3.ogg', 0.1;'sound/effects/slam_rare_1.ogg') + sound = pick('sound/effects/slam1.ogg','sound/effects/slam2.ogg','sound/effects/slam3.ogg', 0.1;'sound/effects/slam_rare_1.ogg') if("pageturn") - S = pick('sound/effects/pageturn1.ogg', 'sound/effects/pageturn2.ogg','sound/effects/pageturn3.ogg') + sound = pick('sound/effects/pageturn1.ogg', 'sound/effects/pageturn2.ogg','sound/effects/pageturn3.ogg') if("terminal_button") - S = pick('sound/machines/terminal_button01.ogg', 'sound/machines/terminal_button02.ogg', 'sound/machines/terminal_button03.ogg','sound/machines/terminal_button04.ogg', 'sound/machines/terminal_button05.ogg', 'sound/machines/terminal_button06.ogg', 'sound/machines/terminal_button07.ogg', 'sound/machines/terminal_button08.ogg') + sound = pick('sound/machines/terminal_button01.ogg', 'sound/machines/terminal_button02.ogg', 'sound/machines/terminal_button03.ogg','sound/machines/terminal_button04.ogg', 'sound/machines/terminal_button05.ogg', 'sound/machines/terminal_button06.ogg', 'sound/machines/terminal_button07.ogg', 'sound/machines/terminal_button08.ogg') if("keyboard") - S = pick('sound/machines/keyboard1.ogg', 'sound/machines/keyboard2.ogg','sound/machines/keyboard3.ogg') + sound = pick('sound/machines/keyboard1.ogg', 'sound/machines/keyboard2.ogg','sound/machines/keyboard3.ogg') if("keyboard_alt") - S = pick('sound/machines/computer_typing4.ogg', 'sound/machines/computer_typing5.ogg', 'sound/machines/computer_typing6.ogg') + sound = pick('sound/machines/computer_typing4.ogg', 'sound/machines/computer_typing5.ogg', 'sound/machines/computer_typing6.ogg') if("gunrustle") - S = pick('sound/effects/gunrustle1.ogg', 'sound/effects/gunrustle2.ogg','sound/effects/gunrustle3.ogg') + sound = pick('sound/effects/gunrustle1.ogg', 'sound/effects/gunrustle2.ogg','sound/effects/gunrustle3.ogg') if("gunequip") - S = pick('sound/handling/gunequip1.ogg','sound/handling/gunequip2.ogg','sound/handling/gunequip3.ogg') + sound = pick('sound/handling/gunequip1.ogg','sound/handling/gunequip2.ogg','sound/handling/gunequip3.ogg') if("shotgunpump") - S = pick('sound/weapons/shotgunpump1.ogg','sound/weapons/shotgunpump2.ogg') + sound = pick('sound/weapons/shotgunpump1.ogg','sound/weapons/shotgunpump2.ogg') if("clothingrustle") - S = pick('sound/handling/clothingrustle1.ogg', 'sound/handling/clothingrustle2.ogg','sound/handling/clothingrustle3.ogg','sound/handling/clothingrustle4.ogg','sound/handling/clothingrustle5.ogg') + sound = pick('sound/handling/clothingrustle1.ogg', 'sound/handling/clothingrustle2.ogg','sound/handling/clothingrustle3.ogg','sound/handling/clothingrustle4.ogg','sound/handling/clothingrustle5.ogg') if("armorequip") - S = pick('sound/handling/armorequip_1.ogg','sound/handling/armorequip_2.ogg') + sound = pick('sound/handling/armorequip_1.ogg','sound/handling/armorequip_2.ogg') if("pry") - S = pick('sound/effects/pry1.ogg', 'sound/effects/pry2.ogg','sound/effects/pry3.ogg','sound/effects/pry4.ogg') + sound = pick('sound/effects/pry1.ogg', 'sound/effects/pry2.ogg','sound/effects/pry3.ogg','sound/effects/pry4.ogg') if("metalbang") - S = pick('sound/effects/thud1.ogg','sound/effects/thud2.ogg','sound/effects/thud3.ogg') + sound = pick('sound/effects/thud1.ogg','sound/effects/thud2.ogg','sound/effects/thud3.ogg') if("paper_writing") - S = pick('sound/items/writing_noises/paper_writing_1.wav', 'sound/items/writing_noises/paper_writing_2.wav', 'sound/items/writing_noises/paper_writing_3.wav', 'sound/items/writing_noises/paper_writing_4.ogg') + sound = pick('sound/items/writing_noises/paper_writing_1.wav', 'sound/items/writing_noises/paper_writing_2.wav', 'sound/items/writing_noises/paper_writing_3.wav', 'sound/items/writing_noises/paper_writing_4.ogg') if("gurgle") - S = pick('sound/effects/gurgle1.ogg', 'sound/effects/gurgle2.ogg', 'sound/effects/gurgle3.ogg', 'sound/effects/gurgle4.ogg') + sound = pick('sound/effects/gurgle1.ogg', 'sound/effects/gurgle2.ogg', 'sound/effects/gurgle3.ogg', 'sound/effects/gurgle4.ogg') // Weapons/bullets if("shell_load") - S = pick('sound/weapons/shell_load1.ogg','sound/weapons/shell_load2.ogg','sound/weapons/shell_load3.ogg','sound/weapons/shell_load4.ogg') + sound = pick('sound/weapons/shell_load1.ogg','sound/weapons/shell_load2.ogg','sound/weapons/shell_load3.ogg','sound/weapons/shell_load4.ogg') if("ballistic_hit") - S = pick('sound/bullets/bullet_impact1.ogg','sound/bullets/bullet_impact2.ogg','sound/bullets/bullet_impact1.ogg','sound/bullets/impact_flesh_1.ogg','sound/bullets/impact_flesh_2.ogg','sound/bullets/impact_flesh_3.ogg','sound/bullets/impact_flesh_4.ogg') + sound = pick('sound/bullets/bullet_impact1.ogg','sound/bullets/bullet_impact2.ogg','sound/bullets/bullet_impact1.ogg','sound/bullets/impact_flesh_1.ogg','sound/bullets/impact_flesh_2.ogg','sound/bullets/impact_flesh_3.ogg','sound/bullets/impact_flesh_4.ogg') if("ballistic_armor") - S = pick('sound/bullets/bullet_armor1.ogg','sound/bullets/bullet_armor2.ogg','sound/bullets/bullet_armor3.ogg','sound/bullets/bullet_armor4.ogg') + sound = pick('sound/bullets/bullet_armor1.ogg','sound/bullets/bullet_armor2.ogg','sound/bullets/bullet_armor3.ogg','sound/bullets/bullet_armor4.ogg') if("ballistic_miss") - S = pick('sound/bullets/bullet_miss1.ogg','sound/bullets/bullet_miss2.ogg','sound/bullets/bullet_miss3.ogg','sound/bullets/bullet_miss4.ogg') + sound = pick('sound/bullets/bullet_miss1.ogg','sound/bullets/bullet_miss2.ogg','sound/bullets/bullet_miss3.ogg','sound/bullets/bullet_miss4.ogg') if("ballistic_bounce") - S = pick('sound/bullets/bullet_ricochet1.ogg','sound/bullets/bullet_ricochet2.ogg','sound/bullets/bullet_ricochet3.ogg','sound/bullets/bullet_ricochet4.ogg','sound/bullets/bullet_ricochet5.ogg','sound/bullets/bullet_ricochet6.ogg','sound/bullets/bullet_ricochet7.ogg','sound/bullets/bullet_ricochet8.ogg') + sound = pick('sound/bullets/bullet_ricochet1.ogg','sound/bullets/bullet_ricochet2.ogg','sound/bullets/bullet_ricochet3.ogg','sound/bullets/bullet_ricochet4.ogg','sound/bullets/bullet_ricochet5.ogg','sound/bullets/bullet_ricochet6.ogg','sound/bullets/bullet_ricochet7.ogg','sound/bullets/bullet_ricochet8.ogg') if("ballistic_shield_hit") - S = pick('sound/bullets/shield_impact_c1.ogg','sound/bullets/shield_impact_c2.ogg','sound/bullets/shield_impact_c3.ogg','sound/bullets/shield_impact_c4.ogg') + sound = pick('sound/bullets/shield_impact_c1.ogg','sound/bullets/shield_impact_c2.ogg','sound/bullets/shield_impact_c3.ogg','sound/bullets/shield_impact_c4.ogg') if("shield_shatter") - S = pick('sound/bullets/shield_break_c1.ogg') + sound = pick('sound/bullets/shield_break_c1.ogg') if("rocket_bounce") - S = pick('sound/bullets/rocket_ricochet1.ogg','sound/bullets/rocket_ricochet2.ogg','sound/bullets/rocket_ricochet3.ogg') + sound = pick('sound/bullets/rocket_ricochet1.ogg','sound/bullets/rocket_ricochet2.ogg','sound/bullets/rocket_ricochet3.ogg') if("energy_hit") - S = pick('sound/bullets/energy_impact1.ogg') + sound = pick('sound/bullets/energy_impact1.ogg') if("energy_miss") - S = pick('sound/bullets/energy_miss1.ogg') + sound = pick('sound/bullets/energy_miss1.ogg') if("energy_bounce") - S = pick('sound/bullets/energy_ricochet1.ogg') + sound = pick('sound/bullets/energy_ricochet1.ogg') if("alloy_hit") - S = pick('sound/bullets/spear_impact1.ogg') + sound = pick('sound/bullets/spear_impact1.ogg') if("alloy_armor") - S = pick('sound/bullets/spear_armor1.ogg') + sound = pick('sound/bullets/spear_armor1.ogg') if("alloy_bounce") - S = pick('sound/bullets/spear_ricochet1.ogg','sound/bullets/spear_ricochet2.ogg') + sound = pick('sound/bullets/spear_ricochet1.ogg','sound/bullets/spear_ricochet2.ogg') if("gun_silenced") - S = pick('sound/weapons/gun_silenced_shot1.ogg','sound/weapons/gun_silenced_shot2.ogg') + sound = pick('sound/weapons/gun_silenced_shot1.ogg','sound/weapons/gun_silenced_shot2.ogg') if("gun_pulse") - S = pick('sound/weapons/gun_m41a_1.ogg','sound/weapons/gun_m41a_2.ogg','sound/weapons/gun_m41a_3.ogg','sound/weapons/gun_m41a_4.ogg','sound/weapons/gun_m41a_5.ogg','sound/weapons/gun_m41a_6.ogg') + sound = pick('sound/weapons/gun_m41a_1.ogg','sound/weapons/gun_m41a_2.ogg','sound/weapons/gun_m41a_3.ogg','sound/weapons/gun_m41a_4.ogg','sound/weapons/gun_m41a_5.ogg','sound/weapons/gun_m41a_6.ogg') if("gun_smartgun") - S = pick('sound/weapons/gun_smartgun1.ogg', 'sound/weapons/gun_smartgun2.ogg', 'sound/weapons/gun_smartgun3.ogg', 'sound/weapons/gun_smartgun4.ogg') + sound = pick('sound/weapons/gun_smartgun1.ogg', 'sound/weapons/gun_smartgun2.ogg', 'sound/weapons/gun_smartgun3.ogg', 'sound/weapons/gun_smartgun4.ogg') if("gun_smartgun_rattle") - S = pick('sound/weapons/gun_smartgun1_rattle.ogg', 'sound/weapons/gun_smartgun2_rattle.ogg', 'sound/weapons/gun_smartgun3_rattle.ogg', 'sound/weapons/gun_smartgun4_rattle.ogg') + sound = pick('sound/weapons/gun_smartgun1_rattle.ogg', 'sound/weapons/gun_smartgun2_rattle.ogg', 'sound/weapons/gun_smartgun3_rattle.ogg', 'sound/weapons/gun_smartgun4_rattle.ogg') if("gun_jam_rack") - S = pick('sound/weapons/handling/gun_jam_rack_1.ogg', 'sound/weapons/handling/gun_jam_rack_2.ogg', 'sound/weapons/handling/gun_jam_rack_3.ogg') + sound = pick('sound/weapons/handling/gun_jam_rack_1.ogg', 'sound/weapons/handling/gun_jam_rack_2.ogg', 'sound/weapons/handling/gun_jam_rack_3.ogg') //A:CM gun sounds if("gun_shotgun_tactical") - S = pick('sound/weapons/gun_shotgun_tactical_1.ogg','sound/weapons/gun_shotgun_tactical_2.ogg','sound/weapons/gun_shotgun_tactical_3.ogg','sound/weapons/gun_shotgun_tactical_4.ogg') + sound = pick('sound/weapons/gun_shotgun_tactical_1.ogg','sound/weapons/gun_shotgun_tactical_2.ogg','sound/weapons/gun_shotgun_tactical_3.ogg','sound/weapons/gun_shotgun_tactical_4.ogg') if("m4a3") - S = pick('sound/weapons/gun_m4a3_1.ogg','sound/weapons/gun_m4a3_2.ogg','sound/weapons/gun_m4a3_3.ogg','sound/weapons/gun_m4a3_4.ogg','sound/weapons/gun_m4a3_5.ogg') + sound = pick('sound/weapons/gun_m4a3_1.ogg','sound/weapons/gun_m4a3_2.ogg','sound/weapons/gun_m4a3_3.ogg','sound/weapons/gun_m4a3_4.ogg','sound/weapons/gun_m4a3_5.ogg') if("vp70") - S = pick('sound/weapons/gun_vp70_v7.ogg') + sound = pick('sound/weapons/gun_vp70_v7.ogg') if("gun_casing_shotgun") - S = pick ('sound/bullets/bulletcasing_shotgun_fall1.ogg') + sound = pick ('sound/bullets/bulletcasing_shotgun_fall1.ogg') if("gun_nsg23") - S = pick('sound/weapons/gun_nsg23_1.ogg','sound/weapons/gun_nsg23_2.ogg') + sound = pick('sound/weapons/gun_nsg23_1.ogg','sound/weapons/gun_nsg23_2.ogg') if("gun_pkd") - S = pick('sound/weapons/gun_pkd_fire01.ogg','sound/weapons/gun_pkd_fire02.ogg','sound/weapons/gun_pkd_fire03.ogg') + sound = pick('sound/weapons/gun_pkd_fire01.ogg','sound/weapons/gun_pkd_fire02.ogg','sound/weapons/gun_pkd_fire03.ogg') // Xeno if("acid_hit") - S = pick('sound/bullets/acid_impact1.ogg') + sound = pick('sound/bullets/acid_impact1.ogg') if("acid_strike") - S = pick('sound/weapons/alien_acidstrike1.ogg','sound/weapons/alien_acidstrike2.ogg') + sound = pick('sound/weapons/alien_acidstrike1.ogg','sound/weapons/alien_acidstrike2.ogg') if("acid_spit") - S = pick('sound/voice/alien_spitacid.ogg','sound/voice/alien_spitacid2.ogg') + sound = pick('sound/voice/alien_spitacid.ogg','sound/voice/alien_spitacid2.ogg') if("acid_sizzle") - S = pick('sound/effects/acid_sizzle1.ogg','sound/effects/acid_sizzle2.ogg','sound/effects/acid_sizzle3.ogg','sound/effects/acid_sizzle4.ogg') + sound = pick('sound/effects/acid_sizzle1.ogg','sound/effects/acid_sizzle2.ogg','sound/effects/acid_sizzle3.ogg','sound/effects/acid_sizzle4.ogg') if("alien_doorpry") - S = pick('sound/effects/alien_doorpry1.ogg','sound/effects/alien_doorpry2.ogg') + sound = pick('sound/effects/alien_doorpry1.ogg','sound/effects/alien_doorpry2.ogg') if("acid_bounce") - S = pick('sound/bullets/acid_impact1.ogg') + sound = pick('sound/bullets/acid_impact1.ogg') if("alien_claw_flesh") - S = pick('sound/weapons/alien_claw_flesh1.ogg','sound/weapons/alien_claw_flesh2.ogg','sound/weapons/alien_claw_flesh3.ogg','sound/weapons/alien_claw_flesh4.ogg','sound/weapons/alien_claw_flesh5.ogg','sound/weapons/alien_claw_flesh6.ogg') + sound = pick('sound/weapons/alien_claw_flesh1.ogg','sound/weapons/alien_claw_flesh2.ogg','sound/weapons/alien_claw_flesh3.ogg','sound/weapons/alien_claw_flesh4.ogg','sound/weapons/alien_claw_flesh5.ogg','sound/weapons/alien_claw_flesh6.ogg') if("alien_claw_metal") - S = pick('sound/weapons/alien_claw_metal1.ogg','sound/weapons/alien_claw_metal2.ogg','sound/weapons/alien_claw_metal3.ogg') + sound = pick('sound/weapons/alien_claw_metal1.ogg','sound/weapons/alien_claw_metal2.ogg','sound/weapons/alien_claw_metal3.ogg') if("alien_bite") - S = pick('sound/weapons/alien_bite1.ogg','sound/weapons/alien_bite2.ogg') + sound = pick('sound/weapons/alien_bite1.ogg','sound/weapons/alien_bite2.ogg') if("alien_footstep_large") - S = pick('sound/effects/alien_footstep_large1.ogg','sound/effects/alien_footstep_large2.ogg','sound/effects/alien_footstep_large3.ogg') + sound = pick('sound/effects/alien_footstep_large1.ogg','sound/effects/alien_footstep_large2.ogg','sound/effects/alien_footstep_large3.ogg') if("alien_footstep_medium") - S = pick('sound/effects/alien_footstep_medium1.ogg','sound/effects/alien_footstep_medium2.ogg','sound/effects/alien_footstep_medium3.ogg') + sound = pick('sound/effects/alien_footstep_medium1.ogg','sound/effects/alien_footstep_medium2.ogg','sound/effects/alien_footstep_medium3.ogg') if("alien_charge") - S = pick('sound/effects/alien_footstep_charge1.ogg','sound/effects/alien_footstep_charge2.ogg','sound/effects/alien_footstep_charge3.ogg') + sound = pick('sound/effects/alien_footstep_charge1.ogg','sound/effects/alien_footstep_charge2.ogg','sound/effects/alien_footstep_charge3.ogg') if("alien_resin_build") - S = pick('sound/effects/alien_resin_build1.ogg','sound/effects/alien_resin_build2.ogg','sound/effects/alien_resin_build3.ogg') + sound = pick('sound/effects/alien_resin_build1.ogg','sound/effects/alien_resin_build2.ogg','sound/effects/alien_resin_build3.ogg') if("alien_resin_break") - S = pick('sound/effects/alien_resin_break1.ogg','sound/effects/alien_resin_break2.ogg','sound/effects/alien_resin_break3.ogg') + sound = pick('sound/effects/alien_resin_break1.ogg','sound/effects/alien_resin_break2.ogg','sound/effects/alien_resin_break3.ogg') if("alien_resin_move") - S = pick('sound/effects/alien_resin_move1.ogg','sound/effects/alien_resin_move2.ogg') + sound = pick('sound/effects/alien_resin_move1.ogg','sound/effects/alien_resin_move2.ogg') if("alien_talk") - S = pick('sound/voice/alien_talk.ogg','sound/voice/alien_talk2.ogg','sound/voice/alien_talk3.ogg') + sound = pick('sound/voice/alien_talk.ogg','sound/voice/alien_talk2.ogg','sound/voice/alien_talk3.ogg') + if("larva_talk") + sound = pick('sound/voice/larva_talk1.ogg','sound/voice/larva_talk2.ogg','sound/voice/larva_talk3.ogg','sound/voice/larva_talk4.ogg') if("hiss_talk") - S = pick('sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg') + sound = pick('sound/voice/hiss2.ogg','sound/voice/hiss3.ogg','sound/voice/hiss4.ogg') if("alien_growl") - S = pick('sound/voice/alien_growl1.ogg','sound/voice/alien_growl2.ogg','sound/voice/alien_growl3.ogg') + sound = pick('sound/voice/alien_growl1.ogg','sound/voice/alien_growl2.ogg','sound/voice/alien_growl3.ogg') if("alien_hiss") - S = pick('sound/voice/alien_hiss1.ogg','sound/voice/alien_hiss2.ogg','sound/voice/alien_hiss3.ogg') + sound = pick('sound/voice/alien_hiss1.ogg','sound/voice/alien_hiss2.ogg','sound/voice/alien_hiss3.ogg') if("alien_tail_swipe") - S = pick('sound/effects/alien_tail_swipe1.ogg','sound/effects/alien_tail_swipe2.ogg','sound/effects/alien_tail_swipe3.ogg') + sound = pick('sound/effects/alien_tail_swipe1.ogg','sound/effects/alien_tail_swipe2.ogg','sound/effects/alien_tail_swipe3.ogg') if("alien_help") - S = pick('sound/voice/alien_help1.ogg','sound/voice/alien_help2.ogg','sound/voice/alien_help3.ogg') + sound = pick('sound/voice/alien_help1.ogg','sound/voice/alien_help2.ogg','sound/voice/alien_help3.ogg') if("alien_drool") - S = pick('sound/voice/alien_drool1.ogg','sound/voice/alien_drool2.ogg') + sound = pick('sound/voice/alien_drool1.ogg','sound/voice/alien_drool2.ogg') if("alien_roar") - S = pick('sound/voice/alien_roar1.ogg','sound/voice/alien_roar2.ogg','sound/voice/alien_roar3.ogg','sound/voice/alien_roar4.ogg','sound/voice/alien_roar5.ogg','sound/voice/alien_roar6.ogg') + sound = pick('sound/voice/alien_roar1.ogg','sound/voice/alien_roar2.ogg','sound/voice/alien_roar3.ogg','sound/voice/alien_roar4.ogg','sound/voice/alien_roar5.ogg','sound/voice/alien_roar6.ogg') if("alien_roar_larva") - S = pick('sound/voice/alien_roar_larva1.ogg','sound/voice/alien_roar_larva2.ogg') + sound = pick('sound/voice/alien_roar_larva1.ogg','sound/voice/alien_roar_larva2.ogg') if("queen") - S = pick('sound/voice/alien_queen_command.ogg','sound/voice/alien_queen_command2.ogg','sound/voice/alien_queen_command3.ogg') + sound = pick('sound/voice/alien_queen_command.ogg','sound/voice/alien_queen_command2.ogg','sound/voice/alien_queen_command3.ogg') // Human if("male_scream") - S = pick('sound/voice/human_male_scream_1.ogg','sound/voice/human_male_scream_2.ogg','sound/voice/human_male_scream_3.ogg','sound/voice/human_male_scream_4.ogg',5;'sound/voice/human_male_scream_5.ogg',5;'sound/voice/human_jackson_scream.ogg',5;'sound/voice/human_ack_scream.ogg') + sound = pick('sound/voice/human_male_scream_1.ogg','sound/voice/human_male_scream_2.ogg','sound/voice/human_male_scream_3.ogg','sound/voice/human_male_scream_4.ogg',5;'sound/voice/human_male_scream_5.ogg',5;'sound/voice/human_jackson_scream.ogg',5;'sound/voice/human_ack_scream.ogg','sound/voice/human_male_scream_6.ogg') if("male_pain") - S = pick('sound/voice/human_male_pain_1.ogg','sound/voice/human_male_pain_2.ogg','sound/voice/human_male_pain_3.ogg',5;'sound/voice/tomscream.ogg',5;'sound/voice/human_bobby_pain.ogg',5;'sound/voice/human_tantrum_scream.ogg', 5;'sound/voice/human_male_pain_rare_1.ogg') + sound = pick('sound/voice/human_male_pain_1.ogg','sound/voice/human_male_pain_2.ogg','sound/voice/human_male_pain_3.ogg',5;'sound/voice/tomscream.ogg',5;'sound/voice/human_bobby_pain.ogg',5;'sound/voice/human_tantrum_scream.ogg', 5;'sound/voice/human_male_pain_rare_1.ogg') if("male_fragout") - S = pick('sound/voice/human_male_grenadethrow_1.ogg', 'sound/voice/human_male_grenadethrow_2.ogg', 'sound/voice/human_male_grenadethrow_3.ogg') + sound = pick('sound/voice/human_male_grenadethrow_1.ogg', 'sound/voice/human_male_grenadethrow_2.ogg', 'sound/voice/human_male_grenadethrow_3.ogg') if("male_warcry") - S = pick('sound/voice/warcry/male_go.ogg', 'sound/voice/warcry/male_attack.ogg', 'sound/voice/warcry/male_charge.ogg', 'sound/voice/warcry/male_charge2.ogg', 'sound/voice/warcry/warcry_male_1.ogg', 'sound/voice/warcry/warcry_male_2.ogg', 'sound/voice/warcry/warcry_male_3.ogg', 'sound/voice/warcry/warcry_male_4.ogg', 'sound/voice/warcry/warcry_male_5.ogg', 'sound/voice/warcry/warcry_male_6.ogg', 'sound/voice/warcry/warcry_male_7.ogg', 'sound/voice/warcry/warcry_male_8.ogg', 'sound/voice/warcry/warcry_male_9.ogg', 'sound/voice/warcry/warcry_male_10.ogg', 'sound/voice/warcry/warcry_male_11.ogg', 'sound/voice/warcry/warcry_male_12.ogg', 'sound/voice/warcry/warcry_male_13.ogg', 'sound/voice/warcry/warcry_male_14.ogg', 'sound/voice/warcry/warcry_male_15.ogg', 'sound/voice/warcry/warcry_male_16.ogg', 'sound/voice/warcry/warcry_male_17.ogg', 'sound/voice/warcry/warcry_male_18.ogg', 'sound/voice/warcry/warcry_male_19.ogg', 'sound/voice/warcry/warcry_male_20.ogg', 'sound/voice/warcry/warcry_male_21.ogg', 'sound/voice/warcry/warcry_male_22.ogg', 'sound/voice/warcry/warcry_male_23.ogg', 'sound/voice/warcry/warcry_male_24.ogg', 'sound/voice/warcry/warcry_male_25.ogg', 'sound/voice/warcry/warcry_male_26.ogg', 'sound/voice/warcry/warcry_male_27.ogg', 'sound/voice/warcry/warcry_male_28.ogg', 'sound/voice/warcry/warcry_male_29.ogg', 'sound/voice/warcry/warcry_male_30.ogg', 'sound/voice/warcry/warcry_male_31.ogg', 'sound/voice/warcry/warcry_male_32.ogg', 'sound/voice/warcry/warcry_male_33.ogg', 'sound/voice/warcry/warcry_male_34.ogg', 'sound/voice/warcry/warcry_male_35.ogg', 5;'sound/voice/warcry/warcry_male_rare_1.ogg', 5;'sound/voice/warcry/warcry_male_rare_2.ogg', 5;'sound/voice/warcry/warcry_male_rare_3.ogg', 5;'sound/voice/warcry/warcry_male_rare_4.ogg', 5;'sound/voice/warcry/warcry_male_rare_5.ogg') + sound = pick('sound/voice/warcry/male_go.ogg', 'sound/voice/warcry/male_attack.ogg', 'sound/voice/warcry/male_charge.ogg', 'sound/voice/warcry/male_charge2.ogg', 'sound/voice/warcry/warcry_male_1.ogg', 'sound/voice/warcry/warcry_male_2.ogg', 'sound/voice/warcry/warcry_male_3.ogg', 'sound/voice/warcry/warcry_male_4.ogg', 'sound/voice/warcry/warcry_male_5.ogg', 'sound/voice/warcry/warcry_male_6.ogg', 'sound/voice/warcry/warcry_male_7.ogg', 'sound/voice/warcry/warcry_male_8.ogg', 'sound/voice/warcry/warcry_male_9.ogg', 'sound/voice/warcry/warcry_male_10.ogg', 'sound/voice/warcry/warcry_male_11.ogg', 'sound/voice/warcry/warcry_male_12.ogg', 'sound/voice/warcry/warcry_male_13.ogg', 'sound/voice/warcry/warcry_male_14.ogg', 'sound/voice/warcry/warcry_male_15.ogg', 'sound/voice/warcry/warcry_male_16.ogg', 'sound/voice/warcry/warcry_male_17.ogg', 'sound/voice/warcry/warcry_male_18.ogg', 'sound/voice/warcry/warcry_male_19.ogg', 'sound/voice/warcry/warcry_male_20.ogg', 'sound/voice/warcry/warcry_male_21.ogg', 'sound/voice/warcry/warcry_male_22.ogg', 'sound/voice/warcry/warcry_male_23.ogg', 'sound/voice/warcry/warcry_male_24.ogg', 'sound/voice/warcry/warcry_male_25.ogg', 'sound/voice/warcry/warcry_male_26.ogg', 'sound/voice/warcry/warcry_male_27.ogg', 'sound/voice/warcry/warcry_male_28.ogg', 'sound/voice/warcry/warcry_male_29.ogg', 'sound/voice/warcry/warcry_male_30.ogg', 'sound/voice/warcry/warcry_male_31.ogg', 'sound/voice/warcry/warcry_male_32.ogg', 'sound/voice/warcry/warcry_male_33.ogg', 'sound/voice/warcry/warcry_male_34.ogg', 'sound/voice/warcry/warcry_male_35.ogg', 5;'sound/voice/warcry/warcry_male_rare_1.ogg', 5;'sound/voice/warcry/warcry_male_rare_2.ogg', 5;'sound/voice/warcry/warcry_male_rare_3.ogg', 5;'sound/voice/warcry/warcry_male_rare_4.ogg', 5;'sound/voice/warcry/warcry_male_rare_5.ogg') if("male_upp_warcry") - S = pick('sound/voice/upp_warcry/warcry_male_1.ogg', 'sound/voice/upp_warcry/warcry_male_2.ogg') + sound = pick('sound/voice/upp_warcry/warcry_male_1.ogg', 'sound/voice/upp_warcry/warcry_male_2.ogg') if("female_scream") - S = pick('sound/voice/human_female_scream_1.ogg','sound/voice/human_female_scream_2.ogg','sound/voice/human_female_scream_3.ogg','sound/voice/human_female_scream_4.ogg',5;'sound/voice/human_female_scream_5.ogg') + sound = pick('sound/voice/human_female_scream_1.ogg','sound/voice/human_female_scream_2.ogg','sound/voice/human_female_scream_3.ogg','sound/voice/human_female_scream_4.ogg',5;'sound/voice/human_female_scream_5.ogg') if("female_pain") - S = pick('sound/voice/human_female_pain_1.ogg','sound/voice/human_female_pain_2.ogg','sound/voice/human_female_pain_3.ogg') + sound = pick('sound/voice/human_female_pain_1.ogg','sound/voice/human_female_pain_2.ogg','sound/voice/human_female_pain_3.ogg') if("female_fragout") - S = pick("sound/voice/human_female_grenadethrow_1.ogg", 'sound/voice/human_female_grenadethrow_2.ogg', 'sound/voice/human_female_grenadethrow_3.ogg') + sound = pick("sound/voice/human_female_grenadethrow_1.ogg", 'sound/voice/human_female_grenadethrow_2.ogg', 'sound/voice/human_female_grenadethrow_3.ogg') if("female_warcry") - S = pick('sound/voice/warcry/female_charge.ogg', 'sound/voice/warcry/female_yell1.ogg', 'sound/voice/warcry/warcry_female_1.ogg', 'sound/voice/warcry/warcry_female_2.ogg', 'sound/voice/warcry/warcry_female_3.ogg', 'sound/voice/warcry/warcry_female_4.ogg', 'sound/voice/warcry/warcry_female_5.ogg', 'sound/voice/warcry/warcry_female_6.ogg', 'sound/voice/warcry/warcry_female_7.ogg', 'sound/voice/warcry/warcry_female_8.ogg', 'sound/voice/warcry/warcry_female_9.ogg', 'sound/voice/warcry/warcry_female_10.ogg', 'sound/voice/warcry/warcry_female_11.ogg', 'sound/voice/warcry/warcry_female_12.ogg', 'sound/voice/warcry/warcry_female_13.ogg', 'sound/voice/warcry/warcry_female_14.ogg', 'sound/voice/warcry/warcry_female_15.ogg', 'sound/voice/warcry/warcry_female_16.ogg', 'sound/voice/warcry/warcry_female_17.ogg', 'sound/voice/warcry/warcry_female_18.ogg', 'sound/voice/warcry/warcry_female_19.ogg', 'sound/voice/warcry/warcry_female_20.ogg') + sound = pick('sound/voice/warcry/female_charge.ogg', 'sound/voice/warcry/female_yell1.ogg', 'sound/voice/warcry/warcry_female_1.ogg', 'sound/voice/warcry/warcry_female_2.ogg', 'sound/voice/warcry/warcry_female_3.ogg', 'sound/voice/warcry/warcry_female_4.ogg', 'sound/voice/warcry/warcry_female_5.ogg', 'sound/voice/warcry/warcry_female_6.ogg', 'sound/voice/warcry/warcry_female_7.ogg', 'sound/voice/warcry/warcry_female_8.ogg', 'sound/voice/warcry/warcry_female_9.ogg', 'sound/voice/warcry/warcry_female_10.ogg', 'sound/voice/warcry/warcry_female_11.ogg', 'sound/voice/warcry/warcry_female_12.ogg', 'sound/voice/warcry/warcry_female_13.ogg', 'sound/voice/warcry/warcry_female_14.ogg', 'sound/voice/warcry/warcry_female_15.ogg', 'sound/voice/warcry/warcry_female_16.ogg', 'sound/voice/warcry/warcry_female_17.ogg', 'sound/voice/warcry/warcry_female_18.ogg', 'sound/voice/warcry/warcry_female_19.ogg', 'sound/voice/warcry/warcry_female_20.ogg') if("female_upp_warcry") - S = pick('sound/voice/upp_warcry/warcry_female_1.ogg', 'sound/voice/upp_warcry/warcry_female_2.ogg') + sound = pick('sound/voice/upp_warcry/warcry_female_1.ogg', 'sound/voice/upp_warcry/warcry_female_2.ogg') if("rtb_handset") - S = pick('sound/machines/telephone/rtb_handset_1.ogg', 'sound/machines/telephone/rtb_handset_2.ogg', 'sound/machines/telephone/rtb_handset_3.ogg', 'sound/machines/telephone/rtb_handset_4.ogg', 'sound/machines/telephone/rtb_handset_5.ogg') + sound = pick('sound/machines/telephone/rtb_handset_1.ogg', 'sound/machines/telephone/rtb_handset_2.ogg', 'sound/machines/telephone/rtb_handset_3.ogg', 'sound/machines/telephone/rtb_handset_4.ogg', 'sound/machines/telephone/rtb_handset_5.ogg') + if("talk_phone") + sound = pick('sound/machines/telephone/talk_phone1.ogg', 'sound/machines/telephone/talk_phone2.ogg', 'sound/machines/telephone/talk_phone3.ogg', 'sound/machines/telephone/talk_phone4.ogg', 'sound/machines/telephone/talk_phone5.ogg', 'sound/machines/telephone/talk_phone6.ogg', 'sound/machines/telephone/talk_phone7.ogg') if("bone_break") - S = pick('sound/effects/bone_break1.ogg','sound/effects/bone_break2.ogg','sound/effects/bone_break3.ogg','sound/effects/bone_break4.ogg','sound/effects/bone_break5.ogg','sound/effects/bone_break6.ogg','sound/effects/bone_break7.ogg') + sound = pick('sound/effects/bone_break1.ogg','sound/effects/bone_break2.ogg','sound/effects/bone_break3.ogg','sound/effects/bone_break4.ogg','sound/effects/bone_break5.ogg','sound/effects/bone_break6.ogg','sound/effects/bone_break7.ogg') if("plush") - S = pick('sound/items/plush1.ogg', 'sound/items/plush2.ogg', 'sound/items/plush3.ogg') + sound = pick('sound/items/plush1.ogg', 'sound/items/plush2.ogg', 'sound/items/plush3.ogg') //misc mobs if("cat_meow") - S = pick('sound/voice/cat_meow_1.ogg','sound/voice/cat_meow_2.ogg','sound/voice/cat_meow_3.ogg','sound/voice/cat_meow_4.ogg','sound/voice/cat_meow_5.ogg','sound/voice/cat_meow_6.ogg','sound/voice/cat_meow_7.ogg') + sound = pick('sound/voice/cat_meow_1.ogg','sound/voice/cat_meow_2.ogg','sound/voice/cat_meow_3.ogg','sound/voice/cat_meow_4.ogg','sound/voice/cat_meow_5.ogg','sound/voice/cat_meow_6.ogg','sound/voice/cat_meow_7.ogg') if("pred_pain") - S = pick('sound/voice/pred_pain1.ogg','sound/voice/pred_pain2.ogg','sound/voice/pred_pain3.ogg','sound/voice/pred_pain4.ogg','sound/voice/pred_pain5.ogg',5;'sound/voice/pred_pain_rare1.ogg') + sound = pick('sound/voice/pred_pain1.ogg','sound/voice/pred_pain2.ogg','sound/voice/pred_pain3.ogg','sound/voice/pred_pain4.ogg','sound/voice/pred_pain5.ogg',5;'sound/voice/pred_pain_rare1.ogg') if("clownstep") - S = pick('sound/effects/clownstep1.ogg', 'sound/effects/clownstep2.ogg') - return S + sound = pick('sound/effects/clownstep1.ogg', 'sound/effects/clownstep2.ogg') + if("giant_lizard_growl") + sound = pick('sound/effects/giant_lizard_growl1.ogg', 'sound/effects/giant_lizard_growl2.ogg') + if("giant_lizard_hiss") + sound = pick('sound/effects/giant_lizard_hiss1.ogg', 'sound/effects/giant_lizard_hiss2.ogg') + return sound /client/proc/generate_sound_queues() set name = "Queue sounds" @@ -539,21 +542,21 @@ var/x = tgui_input_number(usr, "Center X") var/y = tgui_input_number(usr, "Center Y") var/z = tgui_input_number(usr, "Z level") - var/datum/sound_template/S + var/datum/sound_template/template for(var/i = 1, i <= ammount, i++) - S = new - S.file = get_sfx("male_warcry") // warcry has variable length, lots of variations - S.channel = get_free_channel() // i'm convinced this is bad, but it's here to mirror playsound() behaviour - S.range = range - S.x = x - S.y = y - S.z = z - SSsound.queue(S) + template = new + template.file = get_sfx("male_warcry") // warcry has variable length, lots of variations + template.channel = get_free_channel() // i'm convinced this is bad, but it's here to mirror playsound() behaviour + template.range = range + template.x = x + template.y = y + template.z = z + SSsound.queue(template) /client/proc/sound_debug_query() set name = "Dump Playing Client Sounds" set desc = "dumps info about locally, playing sounds" set category = "Debug" - for(var/sound/S in SoundQuery()) - UNLINT(to_chat(src, "channel#[S.channel]: [S.status] - [S.file] - len=[S.len], wait=[S.wait], offset=[S.offset], repeat=[S.repeat]")) // unlint until spacemandmm suite-1.7 + for(var/sound/soundin in SoundQuery()) + UNLINT(to_chat(src, "channel#[soundin.channel]: [soundin.status] - [soundin.file] - len=[length(soundin)], wait=[soundin.wait], offset=[soundin.offset], repeat=[soundin.repeat]")) // unlint until spacemandmm suite-1.7 diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index 2e3a536536..b2ecc567eb 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -9,35 +9,33 @@ #define KILL_MENDOZA -1 GLOBAL_LIST_EMPTY_TYPED(asrs_empty_space_tiles_list, /turf/open/floor/almayer/empty) +GLOBAL_SUBTYPE_PATHS_LIST_INDEXED(supply_packs_types, /datum/supply_packs, name) +GLOBAL_REFERENCE_LIST_INDEXED_SORTED(supply_packs_datums, /datum/supply_packs, type) -var/datum/controller/supply/supply_controller = new() +GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new()) /area/supply ceiling = CEILING_METAL -/area/supply/station //DO NOT TURN THE lighting_use_dynamic STUFF ON FOR SHUTTLES. IT BREAKS THINGS. +/area/supply/station name = "Supply Shuttle" icon_state = "shuttle3" - base_lighting_alpha = 255 requires_power = 0 ambience_exterior = AMBIENCE_ALMAYER -/area/supply/dock //DO NOT TURN THE lighting_use_dynamic STUFF ON FOR SHUTTLES. IT BREAKS THINGS. +/area/supply/dock name = "Supply Shuttle" icon_state = "shuttle3" - base_lighting_alpha = 255 requires_power = 0 -/area/supply/station_vehicle //DO NOT TURN THE lighting_use_dynamic STUFF ON FOR SHUTTLES. IT BREAKS THINGS. +/area/supply/station_vehicle name = "Vehicle ASRS" icon_state = "shuttle3" - base_lighting_alpha = 255 requires_power = 0 -/area/supply/dock_vehicle //DO NOT TURN THE lighting_use_dynamic STUFF ON FOR SHUTTLES. IT BREAKS THINGS. +/area/supply/dock_vehicle name = "Vehicle ASRS" icon_state = "shuttle3" - base_lighting_alpha = 255 requires_power = 0 //SUPPLY PACKS MOVED TO /code/defines/obj/supplypacks.dm @@ -114,11 +112,11 @@ var/datum/controller/supply/supply_controller = new() /obj/structure/machinery/computer/supplycomp/Initialize() . = ..() - LAZYADD(supply_controller.bound_supply_computer_list, src) + LAZYADD(GLOB.supply_controller.bound_supply_computer_list, src) /obj/structure/machinery/computer/supplycomp/Destroy() . = ..() - LAZYREMOVE(supply_controller.bound_supply_computer_list, src) + LAZYREMOVE(GLOB.supply_controller.bound_supply_computer_list, src) /obj/structure/machinery/computer/supplycomp/attackby(obj/item/hit_item, mob/user) if(istype(hit_item, /obj/item/spacecash)) @@ -128,7 +126,7 @@ var/datum/controller/supply/supply_controller = new() to_chat(user, SPAN_NOTICE("You find a small horizontal slot at the bottom of the console. You try to feed \the [slotted_cash] into it, but it rejects it! Maybe it's counterfeit?")) return to_chat(user, SPAN_NOTICE("You find a small horizontal slot at the bottom of the console. You feed \the [slotted_cash] into it..")) - supply_controller.black_market_points += slotted_cash.worth + GLOB.supply_controller.black_market_points += slotted_cash.worth qdel(slotted_cash) else to_chat(user, SPAN_NOTICE("You find a small horizontal slot at the bottom of the console. You try to feed \the [hit_item] into it, but it's seemingly blocked off from the inside.")) @@ -137,17 +135,17 @@ var/datum/controller/supply/supply_controller = new() /obj/structure/machinery/computer/supplycomp/proc/toggle_contraband(contraband_enabled = FALSE) can_order_contraband = contraband_enabled - for(var/obj/structure/machinery/computer/supplycomp/computer as anything in supply_controller.bound_supply_computer_list) + for(var/obj/structure/machinery/computer/supplycomp/computer as anything in GLOB.supply_controller.bound_supply_computer_list) if(computer.can_order_contraband) - supply_controller.black_market_enabled = TRUE + GLOB.supply_controller.black_market_enabled = TRUE return - supply_controller.black_market_enabled = FALSE + GLOB.supply_controller.black_market_enabled = FALSE //If any computers are able to order contraband, it's enabled. Otherwise, it's disabled! /// Prevents use of black market, even if it is otherwise enabled. If any computer has black market locked out, it applies across all of the currently established ones. /obj/structure/machinery/computer/supplycomp/proc/lock_black_market(market_locked = FALSE) - for(var/obj/structure/machinery/computer/supplycomp/computer as anything in supply_controller.bound_supply_computer_list) + for(var/obj/structure/machinery/computer/supplycomp/computer as anything in GLOB.supply_controller.bound_supply_computer_list) if(market_locked) computer.black_market_lockout = TRUE @@ -195,7 +193,7 @@ var/datum/controller/supply/supply_controller = new() var/list/data = list() var/list/squad_list = list() - for(var/datum/squad/current_squad in RoleAuthority.squads) + for(var/datum/squad/current_squad in GLOB.RoleAuthority.squads) if(current_squad.active && current_squad.faction == faction && current_squad.equipment_color) squad_list += list(list( "squad_name" = current_squad.name, @@ -292,8 +290,8 @@ var/datum/controller/supply/supply_controller = new() /obj/structure/machinery/computer/supply_drop_console/proc/handle_supplydrop() SHOULD_NOT_SLEEP(TRUE) - var/obj/structure/closet/crate/C = check_pad() - if(!C) + var/obj/structure/closet/crate/crate = check_pad() + if(!crate) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("No crate was detected on the drop pad. Get Requisitions on the line!")]") return @@ -319,19 +317,25 @@ var/datum/controller/supply/supply_controller = new() to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The landing zone appears to be obstructed or out of bounds. Package would be lost on drop.")]") return - C.visible_message(SPAN_WARNING("\The [C] loads into a launch tube. Stand clear!")) - current_squad.send_message("'[C.name]' supply drop incoming. Heads up!") - current_squad.send_maptext(C.name, "Incoming Supply Drop:") + if(crate.opened) + to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The crate is not secure on the drop pad. Please close it!")]") + return + + crate.visible_message(SPAN_WARNING("\The [crate] loads into a launch tube. Stand clear!")) + current_squad.send_message("'[crate.name]' supply drop incoming. Heads up!") + current_squad.send_maptext(crate.name, "Incoming Supply Drop:") COOLDOWN_START(src, next_fire, drop_cooldown) if(ismob(usr)) var/mob/M = usr M.count_niche_stat(STATISTICS_NICHE_CRATES) - playsound(C.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh - var/obj/structure/droppod/supply/pod = new(null, C) - C.forceMove(pod) + playsound(crate.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh + var/obj/structure/droppod/supply/pod = new(null, crate) + crate.forceMove(pod) pod.launch(T) - visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]") + log_ares_requisition("Supply Drop", "Launch [crate.name] to X[x_supply], Y[y_supply].", usr.real_name) + log_game("[key_name(usr)] launched supply drop '[crate.name]' to X[x_coord], Y[y_coord].") + visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[crate.name]' supply drop launched! Another launch will be available in five minutes.")]") //A limited version of the above console //Can't pick squads, drops less often @@ -372,10 +376,12 @@ var/datum/controller/supply/supply_controller = new() /datum/controller/supply var/processing = 1 - var/processing_interval = 300 + var/processing_interval = 30 SECONDS var/iteration = 0 - //supply points - var/points = 120 + /// Current supply points + var/points = 0 + /// Multiplier to the amount of points awarded based on marine scale + var/points_scale = 120 var/points_per_process = 1.5 var/points_per_slip = 1 var/points_per_crate = 2 @@ -388,21 +394,24 @@ var/datum/controller/supply/supply_controller = new() ///How close the CMB is to investigating | 100 sends an ERT var/black_market_heat = 0 - /// This contains a list of all typepaths of sold items and how many times they've been recieved. Used to calculate points dropoff (Can't send down a hundred blue souto cans for infinite points) + /// This contains a list of all typepaths of sold items and how many times they've been received. Used to calculate points dropoff (Can't send down a hundred blue souto cans for infinite points) var/list/black_market_sold_items /// If the players killed him by sending a live hostile below.. this goes false and they can't order any more contraband. var/mendoza_status = TRUE - var/base_random_crate_interval = 10 //Every how many processing intervals do we get a random crates. + /// How many processing intervals do we get random crates for each pool. Currently only [ASRS_POOL_MAIN] gets scaled amount of crates. + var/list/base_random_crate_intervals = list(ASRS_POOL_MAIN = 10, ASRS_POOL_FOOD = 60) + /// How many partial crates are stored in ASRS per pool to smooth amount given out + var/list/random_crates_carry = list() + /// Pools mapped to list of random ASRS packs that belong to it + var/list/asrs_supply_packs_by_pool var/crate_iteration = 0 //control var/ordernum var/list/shoppinglist = list() var/list/requestlist = list() - var/list/supply_packs = list() - var/list/random_supply_packs = list() //shuttle movement var/datum/shuttle/ferry/supply/shuttle @@ -412,6 +421,7 @@ var/datum/controller/supply/supply_controller = new() "Operations", "Weapons", "Vehicle Ammo", + "Vehicle Equipment", "Attachments", "Ammo", "Weapons Specialist Ammo", @@ -432,6 +442,7 @@ var/datum/controller/supply/supply_controller = new() "Seized Items", "Shipside Contraband", "Surplus Equipment", + "Contraband Ammo", "Deep Storage", "Miscellaneous" ) @@ -441,80 +452,99 @@ var/datum/controller/supply/supply_controller = new() var/tank_points = 0 /datum/controller/supply/New() + . = ..() ordernum = rand(1,9000) LAZYINITLIST(black_market_sold_items) + asrs_supply_packs_by_pool = list() + for(var/subtype in subtypesof(/datum/supply_packs_asrs)) + var/datum/supply_packs_asrs/initial_datum = subtype + var/pool = initial(initial_datum.pool) + if(!pool) + continue + LAZYADD(asrs_supply_packs_by_pool[pool], new subtype()) + random_crates_carry = list() + for(var/pool in base_random_crate_intervals) + random_crates_carry[pool] = 0 + +/datum/controller/supply/proc/start_processing() + START_PROCESSING(SSslowobj, src) //Supply shuttle ticker - handles supply point regenertion and shuttle travelling between centcomm and the station -/datum/controller/supply/process() - for(var/typepath in subtypesof(/datum/supply_packs)) - var/datum/supply_packs/supply_pack = new typepath() - if(supply_pack.group == "ASRS") - random_supply_packs += supply_pack - else - supply_packs[supply_pack.name] = supply_pack - spawn(0) - set background = 1 - while(1) - if(processing) - iteration++ - points += points_per_process - if(iteration >= 20 && iteration % base_random_crate_interval == 0 && supply_controller.shoppinglist.len <= 20) - add_random_crates() - crate_iteration++ - sleep(processing_interval) +/datum/controller/supply/process(delta_time) + iteration++ + points += points_per_process + if(iteration < 20) + return + for(var/pool in base_random_crate_intervals) + var/interval = base_random_crate_intervals[pool] + if(interval && iteration % interval == 0 && length(shoppinglist) <= 20) + add_random_crates(pool) + crate_iteration++ //This adds function adds the amount of crates that calculate_crate_amount returns -/datum/controller/supply/proc/add_random_crates() - for(var/I=0, I= 1) + var/additional_crates = floor(total_carry) + random_crates_carry[pool] -= additional_crates + unit_crate_amount += additional_crates + + return unit_crate_amount //Here we pick what crate type to send to the marines. //This is a weighted pick based upon their cost. //Their cost will go up if the crate is picked -/datum/controller/supply/proc/add_random_crate() - var/datum/supply_packs/C = supply_controller.pick_weighted_crate(random_supply_packs) - if(C == null) +/datum/controller/supply/proc/add_random_crate(pool) + if(!asrs_supply_packs_by_pool[pool]) + return + var/datum/supply_packs_asrs/supply_info = pick_weighted_crate(asrs_supply_packs_by_pool[pool]) + if(!GLOB.supply_packs_datums[supply_info.reference_package]) return - C.cost = round(C.cost * ASRS_COST_MULTIPLIER) //We still do this to raise the weight + + supply_info.cost = floor(supply_info.cost * ASRS_COST_MULTIPLIER) //We still do this to raise the weight //We have to create a supply order to make the system spawn it. Here we transform a crate into an order. var/datum/supply_order/supply_order = new /datum/supply_order() - supply_order.ordernum = supply_controller.ordernum - supply_order.object = C + supply_order.ordernum = ordernum++ + supply_order.object = GLOB.supply_packs_datums[supply_info.reference_package] supply_order.orderedby = "ASRS" supply_order.approvedby = "ASRS" //We add the order to the shopping list - supply_controller.shoppinglist += supply_order + shoppinglist += supply_order //Here we weigh the crate based upon it's cost -/datum/controller/supply/proc/pick_weighted_crate(list/cratelist) - var/weighted_crate_list[] - for(var/datum/supply_packs/crate in cratelist) - var/crate_to_add[0] - var/weight = (round(10000/crate.cost)) - if(iteration > crate.iteration_needed) - crate_to_add[crate] = weight - weighted_crate_list += crate_to_add - return pickweight(weighted_crate_list) +/datum/controller/supply/proc/pick_weighted_crate(list/datum/supply_packs_asrs/cratelist) + var/list/datum/supply_packs_asrs/weighted_crate_list = list() + for(var/datum/supply_packs_asrs/crate in cratelist) + var/weight = (floor(10000/crate.cost)) + weighted_crate_list[crate] = weight + return pick_weight(weighted_crate_list) //To stop things being sent to centcomm which should not be sent to centcomm. Recursively checks for these types. /datum/controller/supply/proc/forbidden_atoms_check(atom/A) if(istype(A,/mob/living) && !black_market_enabled) return TRUE - for(var/i=1, i<=A.contents.len, i++) + for(var/i=1, i<=length(A.contents), i++) var/atom/B = A.contents[i] if(.(B)) return 1 @@ -535,7 +565,7 @@ var/datum/controller/supply/supply_controller = new() for(var/atom/movable/movable_atom in area_shuttle) if(istype(movable_atom, /obj/item/paper/manifest)) var/obj/item/paper/manifest/M = movable_atom - if(M.stamped && M.stamped.len) + if(LAZYLEN(M.stamped)) points += points_per_slip //black market points @@ -576,27 +606,27 @@ var/datum/controller/supply/supply_controller = new() //Buyin /datum/controller/supply/proc/buy() var/area/area_shuttle = shuttle?.get_location_area() - if(!area_shuttle || !shoppinglist.len) + if(!area_shuttle || !length(shoppinglist)) return // Try to find an available turf to place our package var/list/turf/clear_turfs = list() for(var/turf/T in area_shuttle) - if(T.density || T.contents?.len) + if(T.density || LAZYLEN(T.contents)) continue clear_turfs += T for(var/datum/supply_order/order in shoppinglist) // No space! Forget buying, it's no use. - if(!clear_turfs.len) + if(!length(clear_turfs)) shoppinglist.Cut() return if(order.object.contraband == TRUE && prob(5)) // Mendoza loaded the wrong order in. What a dunce! var/list/contraband_list - for(var/supply_name in supply_controller.supply_packs) - var/datum/supply_packs/supply_pack = supply_controller.supply_packs[supply_name] + for(var/supply_type in GLOB.supply_packs_datums) + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_type] if(supply_pack.contraband == FALSE) continue LAZYADD(contraband_list, supply_pack) @@ -650,9 +680,12 @@ var/datum/controller/supply/supply_controller = new() var/list/packages -/obj/item/paper/manifest/read_paper(mob/user) +/obj/item/paper/manifest/read_paper(mob/user, scramble = FALSE) + var/paper_info = info + if(scramble) + paper_info = stars_decode_html(info) // Tossing ref in widow id as this allows us to read multiple manifests at same time - show_browser(user, "[info][stamps]", null, "manifest\ref[src]", "size=550x650") + show_browser(user, "[paper_info][stamps]", null, "manifest\ref[src]", "size=550x650") onclose(user, "manifest\ref[src]") /obj/item/paper/manifest/proc/generate_contents() @@ -688,7 +721,7 @@ var/datum/controller/supply/supply_controller = new() Approved by: \ [approvedby] \ # packages: \ - [packages.len] \ + [length(packages)] \

    Contents

    \
      " @@ -716,10 +749,10 @@ var/datum/controller/supply/supply_controller = new() if(temp) dat = temp else - var/datum/shuttle/ferry/supply/shuttle = supply_controller.shuttle + var/datum/shuttle/ferry/supply/shuttle = GLOB.supply_controller.shuttle if (shuttle) dat += {"Location: [shuttle.has_arrive_time() ? "Raising platform":shuttle.at_station() ? "Raised":"Lowered"]
      -
      Supply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      +
      Supply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]

      \nRequest items

      View approved orders

      View requests

      @@ -732,7 +765,7 @@ var/datum/controller/supply/supply_controller = new() if(..()) return - if( isturf(loc) && (in_range(src, usr) || ishighersilicon(usr)) ) + if( isturf(loc) && (in_range(src, usr) || isSilicon(usr)) ) usr.set_interaction(src) if(href_list["order"]) @@ -740,20 +773,21 @@ var/datum/controller/supply/supply_controller = new() //all_supply_groups //Request what? last_viewed_group = "categories" - temp = "Supply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " + temp = "Supply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " temp += "Main Menu


      " temp += "Select a category

      " - for(var/supply_group_name in supply_controller.all_supply_groups) + for(var/supply_group_name in GLOB.supply_controller.all_supply_groups) temp += "[supply_group_name]
      " else last_viewed_group = href_list["order"] - temp = "Supply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " + temp = "Supply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " temp += "Back to all categories


      " temp += "Request from: [last_viewed_group]

      " - for(var/supply_name in supply_controller.supply_packs ) - var/datum/supply_packs/N = supply_controller.supply_packs[supply_name] - if(N.contraband || N.group != last_viewed_group || !N.buyable) continue //Have to send the type instead of a reference to - temp += "[supply_name] Cost: $[round(N.cost) * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " //the obj because it would get caught by the garbage + for(var/supply_type in GLOB.supply_packs_datums) + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_type] + if(supply_pack.contraband || supply_pack.group != last_viewed_group || !supply_pack.buyable) + continue //Have to send the type instead of a reference to + temp += "[supply_pack.name] Cost: $[floor(supply_pack.cost) * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " //the obj because it would get caught by the garbage else if (href_list["doorder"]) if(world.time < reqtime) @@ -762,8 +796,10 @@ var/datum/controller/supply/supply_controller = new() return //Find the correct supply_pack datum - var/datum/supply_packs/supply_pack = supply_controller.supply_packs[href_list["doorder"]] - if(!istype(supply_pack)) return + var/supply_pack_type = GLOB.supply_packs_types[href_list["doorder"]] + if(!supply_pack_type) + return + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_pack_type] if(supply_pack.contraband || !supply_pack.buyable) return @@ -779,14 +815,14 @@ var/datum/controller/supply/supply_controller = new() var/mob/living/carbon/human/H = usr idname = H.get_authentification_name() idrank = H.get_assignment() - else if(ishighersilicon(usr)) + else if(isSilicon(usr)) idname = usr.real_name - supply_controller.ordernum++ + GLOB.supply_controller.ordernum++ var/obj/item/paper/reqform = new /obj/item/paper(loc) reqform.name = "Requisition Form - [supply_pack.name]" - reqform.info += "

      [station_name] Supply Requisition Form


      " - reqform.info += "INDEX: #[supply_controller.ordernum]
      " + reqform.info += "

      [MAIN_SHIP_NAME] Supply Requisition Form


      " + reqform.info += "INDEX: #[GLOB.supply_controller.ordernum]
      " reqform.info += "REQUESTED BY: [idname]
      " reqform.info += "RANK: [idrank]
      " reqform.info += "REASON: [reason]
      " @@ -802,24 +838,24 @@ var/datum/controller/supply/supply_controller = new() //make our supply_order datum var/datum/supply_order/supply_order = new /datum/supply_order() - supply_order.ordernum = supply_controller.ordernum + supply_order.ordernum = GLOB.supply_controller.ordernum supply_order.object = supply_pack supply_order.orderedby = idname - supply_controller.requestlist += supply_order + GLOB.supply_controller.requestlist += supply_order temp = "Thanks for your request. The cargo team will process it as soon as possible.
      " temp += "
      Back Main Menu" else if (href_list["vieworders"]) temp = "Current approved orders:

      " - for(var/S in supply_controller.shoppinglist) + for(var/S in GLOB.supply_controller.shoppinglist) var/datum/supply_order/SO = S temp += "[SO.object.name] approved by [SO.approvedby]
      " temp += "
      OK" else if (href_list["viewrequests"]) temp = "Current requests:

      " - for(var/S in supply_controller.requestlist) + for(var/S in GLOB.supply_controller.requestlist) var/datum/supply_order/SO = S temp += "#[SO.ordernum] - [SO.object.name] requested by [SO.orderedby]
      " temp += "
      OK" @@ -845,7 +881,7 @@ var/datum/controller/supply/supply_controller = new() if (temp) dat = temp else - var/datum/shuttle/ferry/supply/shuttle = supply_controller.shuttle + var/datum/shuttle/ferry/supply/shuttle = GLOB.supply_controller.shuttle if (shuttle) dat += "\nPlatform position: " if (shuttle.has_arrive_time()) @@ -879,7 +915,7 @@ var/datum/controller/supply/supply_controller = new() dat += "
      \n
      " - dat += {"
      \nSupply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      \n
      + dat += {"
      \nSupply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      \n
      \nOrder items
      \n
      \nView requests
      \n
      \nView orders
      \n
      @@ -891,20 +927,17 @@ var/datum/controller/supply/supply_controller = new() /obj/structure/machinery/computer/supplycomp/Topic(href, href_list) if(!is_mainship_level(z)) return - if(!supply_controller) - world.log << "## ERROR: Eek. The supply_controller controller datum is missing somehow." + if(!GLOB.supply_controller) + world.log << "## ERROR: Eek. The GLOB.supply_controller controller datum is missing somehow." return - var/datum/shuttle/ferry/supply/shuttle = supply_controller.shuttle + var/datum/shuttle/ferry/supply/shuttle = GLOB.supply_controller.shuttle if (!shuttle) world.log << "## ERROR: Eek. The supply/shuttle datum is missing somehow." return if(..()) return - if(ismaintdrone(usr)) - return - - if(isturf(loc) && ( in_range(src, usr) || ishighersilicon(usr) ) ) + if(isturf(loc) && in_range(src, usr) ) usr.set_interaction(src) //Calling the shuttle @@ -932,10 +965,10 @@ var/datum/controller/supply/supply_controller = new() //all_supply_groups //Request what? last_viewed_group = "categories" - temp = "Supply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " + temp = "Supply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " temp += "Main Menu


      " temp += "Select a category

      " - for(var/supply_group_name in supply_controller.all_supply_groups) + for(var/supply_group_name in GLOB.supply_controller.all_supply_groups) temp += "[supply_group_name]
      " if(can_order_contraband) temp += "[SPAN_DANGER("$E4RR301¿")]
      " @@ -943,17 +976,17 @@ var/datum/controller/supply/supply_controller = new() last_viewed_group = href_list["order"] if(last_viewed_group == "Black Market") handle_black_market(temp) - else if(last_viewed_group in supply_controller.contraband_supply_groups) + else if(last_viewed_group in GLOB.supply_controller.contraband_supply_groups) handle_black_market_groups() else - temp = "Supply budget: $[supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " + temp = "Supply budget: $[GLOB.supply_controller.points * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " temp += "Back to all categories


      " temp += "Request from: [last_viewed_group]

      " - for(var/supply_name in supply_controller.supply_packs ) - var/datum/supply_packs/supply_pack = supply_controller.supply_packs[supply_name] + for(var/supply_type in GLOB.supply_packs_datums) + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_type] if(!is_buyable(supply_pack)) continue - temp += "[supply_name] Cost: $[round(supply_pack.cost) * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " //the obj because it would get caught by the garbage + temp += "[supply_pack.name] Cost: $[floor(supply_pack.cost) * SUPPLY_TO_MONEY_MUPLTIPLIER]
      " //the obj because it would get caught by the garbage else if (href_list["doorder"]) if(world.time < reqtime) @@ -962,7 +995,8 @@ var/datum/controller/supply/supply_controller = new() return //Find the correct supply_pack datum - var/datum/supply_packs/supply_pack = supply_controller.supply_packs[href_list["doorder"]] + var/supply_pack_type = GLOB.supply_packs_types[href_list["doorder"]] + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_pack_type] if(!istype(supply_pack)) return @@ -985,11 +1019,11 @@ var/datum/controller/supply/supply_controller = new() else if(isSilicon(usr)) idname = usr.real_name - supply_controller.ordernum++ + GLOB.supply_controller.ordernum++ var/obj/item/paper/reqform = new /obj/item/paper(loc) reqform.name = "Requisition Form - [supply_pack.name]" - reqform.info += "

      [station_name] Supply Requisition Form


      " - reqform.info += "INDEX: #[supply_controller.ordernum]
      " + reqform.info += "

      [MAIN_SHIP_NAME] Supply Requisition Form


      " + reqform.info += "INDEX: #[GLOB.supply_controller.ordernum]
      " reqform.info += "REQUESTED BY: [idname]
      " reqform.info += "RANK: [idrank]
      " reqform.info += "REASON: [reason]
      " @@ -1005,10 +1039,10 @@ var/datum/controller/supply/supply_controller = new() //make our supply_order datum var/datum/supply_order/supply_order = new /datum/supply_order() - supply_order.ordernum = supply_controller.ordernum + supply_order.ordernum = GLOB.supply_controller.ordernum supply_order.object = supply_pack supply_order.orderedby = idname - supply_controller.requestlist += supply_order + GLOB.supply_controller.requestlist += supply_order temp = "Order request placed.
      " temp += "
      Back|Main Menu|Authorize Order" @@ -1021,29 +1055,29 @@ var/datum/controller/supply/supply_controller = new() temp = "Invalid Request" temp += "
      Back|Main Menu" - if(supply_controller.shoppinglist.len > 20) + if(length(GLOB.supply_controller.shoppinglist) > 20) to_chat(usr, SPAN_DANGER("Current retrieval load has reached maximum capacity.")) return - for(var/i=1, i<=supply_controller.requestlist.len, i++) - var/datum/supply_order/SO = supply_controller.requestlist[i] + for(var/i=1, i<=length(GLOB.supply_controller.requestlist), i++) + var/datum/supply_order/SO = GLOB.supply_controller.requestlist[i] if(SO.ordernum == ordernum) supply_order = SO supply_pack = supply_order.object - if(supply_controller.points >= round(supply_pack.cost) && supply_controller.black_market_points >= supply_pack.dollar_cost) - supply_controller.requestlist.Cut(i,i+1) - supply_controller.points -= round(supply_pack.cost) - supply_controller.black_market_points -= round(supply_pack.dollar_cost) - if(supply_controller.black_market_heat != -1) //-1 Heat means heat is disabled - supply_controller.black_market_heat = clamp(supply_controller.black_market_heat + supply_pack.crate_heat + (supply_pack.crate_heat * rand(rand(-0.25,0),0.25)), 0, 100) // black market heat added is crate heat +- up to 25% of crate heat - supply_controller.shoppinglist += supply_order + if(GLOB.supply_controller.points >= floor(supply_pack.cost) && GLOB.supply_controller.black_market_points >= supply_pack.dollar_cost) + GLOB.supply_controller.requestlist.Cut(i,i+1) + GLOB.supply_controller.points -= floor(supply_pack.cost) + GLOB.supply_controller.black_market_points -= floor(supply_pack.dollar_cost) + if(GLOB.supply_controller.black_market_heat != -1) //-1 Heat means heat is disabled + GLOB.supply_controller.black_market_heat = clamp(GLOB.supply_controller.black_market_heat + supply_pack.crate_heat + (supply_pack.crate_heat * rand(rand(-0.25,0),0.25)), 0, 100) // black market heat added is crate heat +- up to 25% of crate heat + GLOB.supply_controller.shoppinglist += supply_order supply_pack.cost = supply_pack.cost * SUPPLY_COST_MULTIPLIER temp = "Thank you for your order.
      " temp += "
      Back Main Menu" supply_order.approvedby = usr.name - msg_admin_niche("[usr] confirmed supply order of [supply_pack.name].") - if(supply_controller.black_market_heat == 100) - supply_controller.black_market_investigation() + msg_admin_niche("[key_name(usr)] confirmed supply order of [supply_pack.name].") + if(GLOB.supply_controller.black_market_heat == 100) + GLOB.supply_controller.black_market_investigation() var/pack_source = "Cargo Hold" var/pack_name = supply_pack.name if(supply_pack.dollar_cost) @@ -1058,7 +1092,7 @@ var/datum/controller/supply/supply_controller = new() else if (href_list["vieworders"]) temp = "Current approved orders:

      " - for(var/S in supply_controller.shoppinglist) + for(var/S in GLOB.supply_controller.shoppinglist) var/datum/supply_order/SO = S temp += "#[SO.ordernum] - [SO.object.name] approved by [SO.approvedby]
      "// (Cancel)
      " temp += "
      OK" @@ -1076,7 +1110,7 @@ var/datum/controller/supply/supply_controller = new() */ else if (href_list["viewrequests"]) temp = "Current requests:

      " - for(var/S in supply_controller.requestlist) + for(var/S in GLOB.supply_controller.requestlist) var/datum/supply_order/SO = S temp += "#[SO.ordernum] - [SO.object.name] requested by [SO.orderedby] Approve Remove
      " @@ -1086,16 +1120,16 @@ var/datum/controller/supply/supply_controller = new() else if (href_list["rreq"]) var/ordernum = text2num(href_list["rreq"]) temp = "Invalid Request.
      " - for(var/i=1, i<=supply_controller.requestlist.len, i++) - var/datum/supply_order/SO = supply_controller.requestlist[i] + for(var/i=1, i<=length(GLOB.supply_controller.requestlist), i++) + var/datum/supply_order/SO = GLOB.supply_controller.requestlist[i] if(SO.ordernum == ordernum) - supply_controller.requestlist.Cut(i,i+1) + GLOB.supply_controller.requestlist.Cut(i,i+1) temp = "Request removed.
      " break temp += "
      Back Main Menu" else if (href_list["clearreq"]) - supply_controller.requestlist.Cut() + GLOB.supply_controller.requestlist.Cut() temp = "List cleared.
      " temp += "
      OK" @@ -1108,31 +1142,31 @@ var/datum/controller/supply/supply_controller = new() /obj/structure/machinery/computer/supplycomp/proc/handle_black_market() - temp = "W-Y Dollars: $[supply_controller.black_market_points]
      " + temp = "W-Y Dollars: $[GLOB.supply_controller.black_market_points]
      " temp += "Back to all categories


      " temp += SPAN_DANGER("ERR0R UNK7OWN C4T2G#!$0-


      ") if(black_market_lockout) temp += "





      Unauthorized Access Removed.
      This console is currently under CMB investigation.
      Thank you for your cooperation.
      " return temp += "KHZKNHZH#0-" - if(!supply_controller.mendoza_status) // he's daed + if(!GLOB.supply_controller.mendoza_status) // he's daed temp += "........." return handle_mendoza_dialogue() //mendoza has been in there for a while. he gets lonely sometimes temp += "[last_viewed_group]

      " - for(var/supply_group_name in supply_controller.contraband_supply_groups) + for(var/supply_group_name in GLOB.supply_controller.contraband_supply_groups) temp += "[supply_group_name]
      " /obj/structure/machinery/computer/supplycomp/proc/handle_black_market_groups() - temp = "W-Y Dollars: $[supply_controller.black_market_points]
      " + temp = "W-Y Dollars: $[GLOB.supply_controller.black_market_points]
      " temp += "Back to black market categories


      " temp += "Purchase from: [last_viewed_group]

      " - for(var/supply_name in supply_controller.supply_packs ) - var/datum/supply_packs/supply_pack = supply_controller.supply_packs[supply_name] + for(var/supply_type in GLOB.supply_packs_datums) + var/datum/supply_packs/supply_pack = GLOB.supply_packs_datums[supply_type] if(!is_buyable(supply_pack)) continue - temp += "[supply_name] Cost: $[round(supply_pack.dollar_cost)]
      " + temp += "[supply_pack.name] Cost: $[floor(supply_pack.dollar_cost)]
      " /obj/structure/machinery/computer/supplycomp/proc/handle_mendoza_dialogue() @@ -1190,7 +1224,7 @@ var/datum/controller/supply/supply_controller = new() return_value = movable_atom.black_market_value // so they cant sell the same thing over and over and over - return_value = POSITIVE(return_value - supply_controller.black_market_sold_items[movable_atom.type] * 0.5) + return_value = POSITIVE(return_value - GLOB.supply_controller.black_market_sold_items[movable_atom.type] * 0.5) return return_value /datum/controller/supply/proc/kill_mendoza() @@ -1230,7 +1264,7 @@ var/datum/controller/supply/supply_controller = new() if(!area_shuttle) return for(var/turf/elevator_turfs in area_shuttle) - if(elevator_turfs.density || elevator_turfs.contents?.len) + if(elevator_turfs.density || LAZYLEN(elevator_turfs.contents)) continue clear_turfs |= elevator_turfs var/turf/chosen_turf = pick(clear_turfs) @@ -1256,7 +1290,7 @@ var/datum/controller/supply/supply_controller = new() /datum/controller/supply/proc/black_market_investigation() black_market_heat = -1 - SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE) + SSticker.mode.get_specific_call(/datum/emergency_call/inspection_cmb/black_market, TRUE, TRUE) // "Inspection - Colonial Marshals Ledger Investigation Team" log_game("Black Market Inspection auto-triggered.") /obj/structure/machinery/computer/supplycomp/proc/is_buyable(datum/supply_packs/supply_pack) @@ -1294,9 +1328,9 @@ var/datum/controller/supply/supply_controller = new() req_access = list(ACCESS_MARINE_CREWMAN) circuit = /obj/item/circuitboard/computer/supplycomp/vehicle // Can only retrieve one vehicle per round - var/spent = TRUE - var/tank_unlocked = FALSE - var/list/allowed_roles = list(JOB_CREWMAN) + var/spent = FALSE + var/tank_unlocked = TRUE + var/list/allowed_roles = list(JOB_TANK_CREW) var/list/vehicles @@ -1344,20 +1378,25 @@ var/datum/controller/supply/supply_controller = new() name = "Barebones M577 Armored Personal Carrier" ordered_vehicle = /obj/effect/vehicle_spawner/apc/unarmed/broken +/datum/vehicle_order/arc + name = "M540-B Armored Recon Carrier" + ordered_vehicle = /obj/effect/vehicle_spawner/arc + +/datum/vehicle_order/arc/has_vehicle_lock() + return + /obj/structure/machinery/computer/supplycomp/vehicle/Initialize() . = ..() vehicles = list( - new /datum/vehicle_order/apc(), - new /datum/vehicle_order/apc/med(), - new /datum/vehicle_order/apc/cmd(), + new /datum/vehicle_order/tank/plain ) - if(!VehicleElevatorConsole) - VehicleElevatorConsole = src + if(!GLOB.VehicleElevatorConsole) + GLOB.VehicleElevatorConsole = src /obj/structure/machinery/computer/supplycomp/vehicle/Destroy() - VehicleElevatorConsole = null + GLOB.VehicleElevatorConsole = null return ..() /obj/structure/machinery/computer/supplycomp/vehicle/attack_hand(mob/living/carbon/human/H as mob) @@ -1381,11 +1420,13 @@ var/datum/controller/supply/supply_controller = new() return dat += "Platform position: " - if (SSshuttle.vehicle_elevator.timeLeft()) + if (SSshuttle.vehicle_elevator.mode != SHUTTLE_IDLE) dat += "Moving" else if(is_mainship_level(SSshuttle.vehicle_elevator.z)) dat += "Raised" + if(!spent) + dat += "
      \[Lower\]" else dat += "Lowered" dat += "

      " @@ -1413,26 +1454,20 @@ var/datum/controller/supply/supply_controller = new() return if(spent) return - if(!supply_controller) - world.log << "## ERROR: Eek. The supply_controller controller datum is missing somehow." + if(!GLOB.supply_controller) + world.log << "## ERROR: Eek. The GLOB.supply_controller controller datum is missing somehow." return if (!SSshuttle.vehicle_elevator) world.log << "## ERROR: Eek. The supply/elevator datum is missing somehow." return - if(!is_admin_level(SSshuttle.vehicle_elevator.z)) - to_chat(usr, SPAN_WARNING("The elevator needs to be in the cargo bay dock to call a vehicle up. Ask someone to send it away.")) - return - - if(ismaintdrone(usr)) - return - - if(isturf(loc) && ( in_range(src, usr) || ishighersilicon(usr) ) ) + if(isturf(loc) && ( in_range(src, usr) || isSilicon(usr) ) ) usr.set_interaction(src) if(href_list["get_vehicle"]) - if(is_mainship_level(SSshuttle.vehicle_elevator.z)) + if(is_mainship_level(SSshuttle.vehicle_elevator.z) || SSshuttle.vehicle_elevator.mode != SHUTTLE_IDLE) + to_chat(usr, SPAN_WARNING("The elevator needs to be in the cargo bay dock to call a vehicle up!")) return // dunno why the +1 is needed but the vehicles spawn off-center var/turf/middle_turf = get_turf(SSshuttle.vehicle_elevator) @@ -1440,10 +1475,11 @@ var/datum/controller/supply/supply_controller = new() var/obj/vehicle/multitile/ordered_vehicle var/datum/vehicle_order/VO = locate(href_list["get_vehicle"]) + if(!(VO in vehicles)) + return - if(!VO) return - if(VO.has_vehicle_lock()) return - + if(VO?.has_vehicle_lock()) + return spent = TRUE ordered_vehicle = new VO.ordered_vehicle(middle_turf) SSshuttle.vehicle_elevator.request(SSshuttle.getDock("almayer vehicle")) @@ -1452,5 +1488,11 @@ var/datum/controller/supply/supply_controller = new() SEND_GLOBAL_SIGNAL(COMSIG_GLOB_VEHICLE_ORDERED, ordered_vehicle) + else if(href_list["lower_elevator"]) + if(!is_mainship_level(SSshuttle.vehicle_elevator.z)) + return + + SSshuttle.vehicle_elevator.request(SSshuttle.getDock("adminlevel vehicle")) + add_fingerprint(usr) updateUsrDialog() diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm index 45756c30bb..8edd13f586 100644 --- a/code/game/turfs/auto_turf.dm +++ b/code/game/turfs/auto_turf.dm @@ -53,7 +53,7 @@ return bleed_layer = max(0, new_layer) - for(var/direction in alldirs) + for(var/direction in GLOB.alldirs) var/turf/open/T = get_step(src, direction) if(istype(T)) T.update_icon() @@ -75,6 +75,19 @@ if(bleed_layer) addtimer(CALLBACK(src, PROC_REF(changing_layer), 0), 1) +/turf/open/auto_turf/scorch(heat_level) + if(bleed_layer <= 0) + return + switch(heat_level) + if(1 to 19) + var/new_bleed_layer = min(0, bleed_layer - 1) + addtimer(CALLBACK(src, PROC_REF(changing_layer), new_bleed_layer), 1) + if(20 to 39) + var/new_bleed_layer = max(bleed_layer - 2, 0) + addtimer(CALLBACK(src, PROC_REF(changing_layer), new_bleed_layer), 1) + if(40 to INFINITY) + addtimer(CALLBACK(src, PROC_REF(changing_layer), 0), 1) + //Actual auto-turfs now @@ -146,6 +159,7 @@ //Ice colony snow /turf/open/auto_turf/snow + scorchable = TRUE name = "auto-snow" icon = 'icons/turf/floors/snow2.dmi' icon_state = "snow_0" @@ -169,7 +183,7 @@ if(istype(I, /obj/item/lightstick)) var/obj/item/lightstick/L = I if(locate(/obj/item/lightstick) in get_turf(src)) - to_chat(user, "There's already a [L] at this position!") + to_chat(user, "There's already \a [L] at this position!") return to_chat(user, "Now planting \the [L].") @@ -198,7 +212,8 @@ while(bleed_layer > 0) xeno_attack_delay(M) - if(!do_after(M, 12, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) + var/size = max(M.mob_size, 1) + if(!do_after(M, 12/size, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) return XENO_NO_DELAY_ACTION if(!bleed_layer) diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm index 2551af068d..278176ab6d 100644 --- a/code/game/turfs/closed.dm +++ b/code/game/turfs/closed.dm @@ -322,11 +322,18 @@ /turf/closed/shuttle/twe_dropship/transparent opacity = FALSE -/turf/closed/shuttle/dropship2/tornado - name = "\improper Tornado" +/turf/closed/shuttle/dropship3 + name = "\improper Saipan" icon = 'icons/turf/dropship3.dmi' + icon_state = "1" + +/turf/closed/shuttle/dropship3/transparent + opacity = FALSE + +/turf/closed/shuttle/dropship3/tornado + name = "\improper Tornado" -/turf/closed/shuttle/dropship2/tornado/typhoon +/turf/closed/shuttle/dropship3/tornado/typhoon name = "\improper Typhoon" /turf/closed/shuttle/escapepod diff --git a/code/game/turfs/floor.dm b/code/game/turfs/floor.dm index 5f99aba26c..1be6235cd2 100644 --- a/code/game/turfs/floor.dm +++ b/code/game/turfs/floor.dm @@ -69,7 +69,7 @@ ..() if(is_grass_floor()) var/dir_sum = 0 - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) var/turf/T = get_step(src,direction) if(!(T.is_grass_floor())) dir_sum += direction diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index d3cbe86c7d..399ee9727f 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -90,12 +90,124 @@ /turf/open/floor/plating/make_plating() return +/turf/open/floor/plating/burnt_platingdmg3 + burnt = TRUE + icon_state = "platingdmg3" + +/turf/open/floor/plating/burnt_platingdmg3/west + dir = WEST + +/turf/open/floor/plating/asteroidwarning + icon_state = "asteroidwarning" + +/turf/open/floor/plating/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/warnplate + icon_state = "warnplate" + +/turf/open/floor/plating/warnplate/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/plating/asteroidfloor/north + dir = NORTH + +/turf/open/floor/plating/asteroidwarning/north + dir = NORTH + +/turf/open/floor/plating/warnplate/north + dir = NORTH + +/turf/open/floor/plating/warnplatecorner + icon_state = "warnplatecorner" + +/turf/open/floor/plating/warnplatecorner/north + dir = NORTH + +/turf/open/floor/plating/asteroidwarning/east + dir = EAST + +/turf/open/floor/plating/warnplate/east + dir = EAST + +/turf/open/floor/plating/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/plating/warnplate/northeast + dir = NORTHEAST + +/turf/open/floor/plating/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/warnplate/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/asteroidwarning/west + dir = WEST + +/turf/open/floor/plating/platingdmg2 + icon_state = "platingdmg2" + +/turf/open/floor/plating/platingdmg2/west + dir = WEST + +/turf/open/floor/plating/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/plating/platingdmg3/west + dir = WEST + +/turf/open/floor/plating/warnplate/west + dir = WEST + +/turf/open/floor/plating/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/plating/warnplate/northwest + dir = NORTHWEST + +/turf/open/floor/plating/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/plating/platebot + icon_state = "platebot" + +/turf/open/floor/plating/platebotc + icon_state = "platebotc" + +/turf/open/floor/plating/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/plating/wood + icon_state = "wood" + +/turf/open/floor/plating/wood_broken2 + icon_state = "wood-broken2" + +/turf/open/floor/plating/wood_broken3 + icon_state = "wood-broken3" + +/turf/open/floor/plating/wood_broken4 + icon_state = "wood-broken4" + +/turf/open/floor/plating/wood_broken5 + icon_state = "wood-broken5" + +/turf/open/floor/plating/wood_broken6 + icon_state = "wood-broken6" + /turf/open/floor/plating/prison icon = 'icons/turf/floors/prison.dmi' /turf/open/floor/plating/almayer icon = 'icons/turf/almayer.dmi' +/turf/open/floor/plating/almayer/no_build + allow_construction = FALSE + /turf/open/floor/plating/airless icon_state = "plating" name = "airless plating" @@ -112,6 +224,33 @@ . = ..() name = "plating" +/turf/open/floor/plating/icefloor/warnplate + icon_state = "warnplate" + +/turf/open/floor/plating/icefloor/warnplate/southwest + dir = SOUTHWEST + +/turf/open/floor/plating/icefloor/warnplate/north + dir = NORTH + +/turf/open/floor/plating/icefloor/warnplate/east + dir = EAST + +/turf/open/floor/plating/icefloor/warnplate/northeast + dir = NORTHEAST + +/turf/open/floor/plating/icefloor/warnplate/southeast + dir = SOUTHEAST + +/turf/open/floor/plating/icefloor/warnplate/west + dir = WEST + +/turf/open/floor/plating/icefloor/warnplate/northwest + dir = NORTHWEST + +/turf/open/floor/plating/icefloor/asteroidplating + icon_state = "asteroidplating" + /// Visually like plating+catwalks but without overlaying or interactions - mainly for Reqs Elevator /turf/open/floor/plating/bare_catwalk name = "catwalk" @@ -218,6 +357,392 @@ icon_state = "default" plating_type = /turf/open/floor/plating/almayer +/turf/open/floor/almayer/pod_landing_floor + desc = "There's a hatch above it, presumably to allow pods to drop in." + icon_state = "test_floor4" + name = "pod landing floor" + +/turf/open/floor/almayer/blue + icon_state = "blue" + +/turf/open/floor/almayer/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/cargo + icon_state = "cargo" + +/turf/open/floor/almayer/cargo/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/emerald + icon_state = "emerald" + +/turf/open/floor/almayer/emerald/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/green + icon_state = "green" + +/turf/open/floor/almayer/green/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/orange + icon_state = "orange" + +/turf/open/floor/almayer/orange/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/red + icon_state = "red" + +/turf/open/floor/almayer/red/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/silver + icon_state = "silver" + +/turf/open/floor/almayer/silver/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/sterile_green_side + icon_state = "sterile_green_side" + +/turf/open/floor/almayer/sterile_green_side/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/blue/north + dir = NORTH + +/turf/open/floor/almayer/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/almayer/bluecorner/north + dir = NORTH + +/turf/open/floor/almayer/cargo_arrow + icon_state = "cargo_arrow" + +/turf/open/floor/almayer/cargo_arrow/north + dir = NORTH + +/turf/open/floor/almayer/emerald/north + dir = NORTH + +/turf/open/floor/almayer/emeraldcorner + icon_state = "emeraldcorner" + +/turf/open/floor/almayer/emeraldcorner/north + dir = NORTH + +/turf/open/floor/almayer/green/north + dir = NORTH + +/turf/open/floor/almayer/greencorner + icon_state = "greencorner" + +/turf/open/floor/almayer/greencorner/north + dir = NORTH + +/turf/open/floor/almayer/orange/north + dir = NORTH + +/turf/open/floor/almayer/orangecorner + icon_state = "orangecorner" + +/turf/open/floor/almayer/orangecorner/north + dir = NORTH + +/turf/open/floor/almayer/plating_striped + icon_state = "plating_striped" + +/turf/open/floor/almayer/plating_striped/north + dir = NORTH + +/turf/open/floor/almayer/red/north + dir = NORTH + +/turf/open/floor/almayer/redcorner + icon_state = "redcorner" + +/turf/open/floor/almayer/redcorner/north + dir = NORTH + +/turf/open/floor/almayer/silver/north + dir = NORTH + +/turf/open/floor/almayer/silvercorner + icon_state = "silvercorner" + +/turf/open/floor/almayer/silvercorner/north + dir = NORTH + +/turf/open/floor/almayer/sterile_green_corner + icon_state = "sterile_green_corner" + +/turf/open/floor/almayer/sterile_green_corner/north + dir = NORTH + +/turf/open/floor/almayer/sterile_green_side/north + dir = NORTH + +/turf/open/floor/almayer/w_y0 + icon_state = "w-y0" + +/turf/open/floor/almayer/w_y0/north + dir = NORTH + +/turf/open/floor/almayer/w_y1 + icon_state = "w-y1" + +/turf/open/floor/almayer/w_y1/north + dir = NORTH + +/turf/open/floor/almayer/w_y2 + icon_state = "w-y2" + +/turf/open/floor/almayer/w_y2/north + dir = NORTH + +/turf/open/floor/almayer/green/south + dir = SOUTH + +/turf/open/floor/almayer/blue/east + dir = EAST + +/turf/open/floor/almayer/bluecorner/east + dir = EAST + +/turf/open/floor/almayer/cargo_arrow/east + dir = EAST + +/turf/open/floor/almayer/emerald/east + dir = EAST + +/turf/open/floor/almayer/emeraldcorner/east + dir = EAST + +/turf/open/floor/almayer/green/east + dir = EAST + +/turf/open/floor/almayer/greencorner/east + dir = EAST + +/turf/open/floor/almayer/orange/east + dir = EAST + +/turf/open/floor/almayer/orangecorner/east + dir = EAST + +/turf/open/floor/almayer/plating_striped/east + dir = EAST + +/turf/open/floor/almayer/red/east + dir = EAST + +/turf/open/floor/almayer/redcorner/east + dir = EAST + +/turf/open/floor/almayer/silver/east + dir = EAST + +/turf/open/floor/almayer/silvercorner/east + dir = EAST + +/turf/open/floor/almayer/sterile_green_corner/east + dir = EAST + +/turf/open/floor/almayer/sterile_green_side/east + dir = EAST + +/turf/open/floor/almayer/blue/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/emerald/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/green/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/orange/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/plating + icon_state = "plating" + +/turf/open/floor/almayer/plating/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/red/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/silver/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/sterile_green_side/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/emerald/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/green/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/orange/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/red/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/silver/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/sterile_green_side/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/blue/west + dir = WEST + +/turf/open/floor/almayer/bluecorner/west + dir = WEST + +/turf/open/floor/almayer/cargo_arrow/west + dir = WEST + +/turf/open/floor/almayer/emerald/west + dir = WEST + +/turf/open/floor/almayer/emeraldcorner/west + dir = WEST + +/turf/open/floor/almayer/green/west + dir = WEST + +/turf/open/floor/almayer/greencorner/west + dir = WEST + +/turf/open/floor/almayer/orange/west + dir = WEST + +/turf/open/floor/almayer/orangecorner/west + dir = WEST + +/turf/open/floor/almayer/plating_striped/west + dir = WEST + +/turf/open/floor/almayer/red/west + dir = WEST + +/turf/open/floor/almayer/redcorner/west + dir = WEST + +/turf/open/floor/almayer/silver/west + dir = WEST + +/turf/open/floor/almayer/silvercorner/west + dir = WEST + +/turf/open/floor/almayer/sterile_green_corner/west + dir = WEST + +/turf/open/floor/almayer/sterile_green_side/west + dir = WEST + +/turf/open/floor/almayer/blue/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/emerald/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/green/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/orange/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/red/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/silver/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/sterile_green_side/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/black + icon_state = "black" + +/turf/open/floor/almayer/black/north + dir = NORTH + +/turf/open/floor/almayer/blackcorner + icon_state = "blackcorner" + +/turf/open/floor/almayer/blackcorner/north + dir = NORTH + +/turf/open/floor/almayer/black/east + dir = EAST + +/turf/open/floor/almayer/blackcorner/east + dir = EAST + +/turf/open/floor/almayer/black/west + dir = WEST + +/turf/open/floor/almayer/blackcorner/west + dir = WEST + +/turf/open/floor/almayer/ai_floors + icon_state = "ai_floors" + +/turf/open/floor/almayer/bluefull + icon_state = "bluefull" + +/turf/open/floor/almayer/dark_sterile + icon_state = "dark_sterile" + +/turf/open/floor/almayer/emeraldfull + icon_state = "emeraldfull" + +/turf/open/floor/almayer/floor + icon_state = "floor" + +/turf/open/floor/almayer/greenfull + icon_state = "greenfull" + +/turf/open/floor/almayer/mono + icon_state = "mono" + +/turf/open/floor/almayer/orangefull + icon_state = "orangefull" + +/turf/open/floor/almayer/plate + icon_state = "plate" + +/turf/open/floor/almayer/redfull + icon_state = "redfull" + +/turf/open/floor/almayer/silverfull + icon_state = "silverfull" + +/turf/open/floor/almayer/sterile + icon_state = "sterile" + +/turf/open/floor/almayer/sterile_green + icon_state = "sterile_green" + +/turf/open/floor/almayer/tcomms + icon_state = "tcomms" + +/turf/open/floor/almayer/test_floor4 + icon_state = "test_floor4" + +/turf/open/floor/almayer/test_floor5 + icon_state = "test_floor5" + /turf/open/floor/almayer/edge icon_state = "floor_edge" @@ -233,6 +758,75 @@ /turf/open/floor/almayer/edge/smooth/endcap_left icon_state = "floor_edge_smooth3" +/turf/open/floor/almayer/edge/smooth/corner/north + dir = NORTH + +/turf/open/floor/almayer/edge/smooth/corner/east + dir = EAST + +/turf/open/floor/almayer/edge/smooth/corner/west + dir = WEST + +/turf/open/floor/almayer/edge/smooth/endcap_left/north + dir = NORTH + +/turf/open/floor/almayer/edge/smooth/endcap_left/east + dir = EAST + +/turf/open/floor/almayer/edge/smooth/endcap_left/west + dir = WEST + +/turf/open/floor/almayer/edge/smooth/endcap_right/north + dir = NORTH + +/turf/open/floor/almayer/edge/smooth/endcap_right/east + dir = EAST + +/turf/open/floor/almayer/edge/smooth/endcap_right/west + dir = WEST + +/turf/open/floor/almayer/edge/smooth/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/edge/smooth/north + dir = NORTH + +/turf/open/floor/almayer/edge/smooth/east + dir = EAST + +/turf/open/floor/almayer/edge/smooth/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/edge/smooth/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/edge/smooth/west + dir = WEST + +/turf/open/floor/almayer/edge/smooth/northwest + dir = NORTHWEST + +/turf/open/floor/almayer/edge/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/edge/north + dir = NORTH + +/turf/open/floor/almayer/edge/east + dir = EAST + +/turf/open/floor/almayer/edge/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/edge/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/edge/west + dir = WEST + +/turf/open/floor/almayer/edge/northwest + dir = NORTHWEST + /// Admin level thunderdome floor. Doesn't get damaged by explosions and such for pristine testing /turf/open/floor/tdome icon = 'icons/turf/almayer.dmi' @@ -240,21 +834,46 @@ plating_type = /turf/open/floor/tdome hull_floor = TRUE -//Cargo elevator +/turf/open/floor/tdome/w_y0 + icon_state = "w-y0" + +/turf/open/floor/tdome/w_y0/north + dir = NORTH + +/turf/open/floor/tdome/w_y1 + icon_state = "w-y1" + +/turf/open/floor/tdome/w_y1/north + dir = NORTH + +/turf/open/floor/tdome/w_y2 + icon_state = "w-y2" + +/turf/open/floor/tdome/w_y2/north + dir = NORTH + +/turf/open/floor/tdome/northeast + dir = NORTHEAST + +/turf/open/floor/tdome/bluefull + icon_state = "bluefull" + +/turf/open/floor/tdome/redfull + icon_state = "redfull" + +/turf/open/floor/tdome/tcomms + icon_state = "tcomms" + +/turf/open/floor/tdome/test_floor4 + icon_state = "test_floor4" + +/// Base type of the requisitions and vehicle bay elevator pits. /turf/open/floor/almayer/empty - name = "empty space" - desc = "There seems to be an awful lot of machinery down below" + name = "\proper empty space" + desc = "There seems to be an awful lot of machinery down below..." icon = 'icons/turf/floors/floors.dmi' icon_state = "black" -/turf/open/floor/almayer/empty/Initialize(mapload, ...) - . = ..() - GLOB.asrs_empty_space_tiles_list += src - -/turf/open/floor/almayer/empty/Destroy(force) // may as well - . = ..() - GLOB.asrs_empty_space_tiles_list -= src - /turf/open/floor/almayer/empty/is_weedable() return NOT_WEEDABLE @@ -269,9 +888,14 @@ /turf/open/floor/almayer/empty/Entered(atom/movable/AM) ..() - if(!isobserver(AM)) + if(!isobserver(AM) && !istype(AM, /obj/effect/elevator) && !istype(AM, /obj/docking_port)) addtimer(CALLBACK(src, PROC_REF(enter_depths), AM), 0.2 SECONDS) +/// Returns a list of turfs to be used as a destination for anyone unfortunate enough to fall into the pit. +/turf/open/floor/almayer/empty/proc/get_depths_turfs() + // Empty proc to be overridden. + return + /turf/open/floor/almayer/empty/proc/enter_depths(atom/movable/AM) if(AM.throwing == 0 && istype(get_turf(AM), /turf/open/floor/almayer/empty)) AM.visible_message(SPAN_WARNING("[AM] falls into the depths!"), SPAN_WARNING("You fall into the depths!")) @@ -279,17 +903,15 @@ qdel(AM) return var/mob/living/carbon/human/thrown_human = AM - for(var/atom/computer as anything in supply_controller.bound_supply_computer_list) + for(var/atom/computer as anything in GLOB.supply_controller.bound_supply_computer_list) computer.balloon_alert_to_viewers("you hear horrifying noises coming from the elevator!") - var/area/area_shuttle = supply_controller.shuttle?.get_location_area() - if(!area_shuttle) - return - var/list/turflist = list() - for(var/turf/turf in area_shuttle) - turflist |= turf + var/list/depths_turfs = get_depths_turfs() + if(!length(depths_turfs)) + // If this ever happens, something went wrong. + CRASH("get_depths_turfs() didn't return anything!") - thrown_human.forceMove(pick(turflist)) + thrown_human.forceMove(pick(depths_turfs)) var/timer = 0.5 SECONDS for(var/index in 1 to 10) @@ -298,9 +920,34 @@ return else - for(var/obj/effect/decal/cleanable/C in contents) //for the off chance of someone bleeding mid=flight + for(var/obj/effect/decal/cleanable/C in contents) //for the off chance of someone bleeding mid-flight qdel(C) +/// Requisitions pit. +/turf/open/floor/almayer/empty/requisitions + +/turf/open/floor/almayer/empty/requisitions/Initialize(mapload, ...) + . = ..() + GLOB.asrs_empty_space_tiles_list += src + +/turf/open/floor/almayer/empty/requisitions/Destroy(force) + GLOB.asrs_empty_space_tiles_list -= src + return ..() + +/turf/open/floor/almayer/empty/requisitions/get_depths_turfs() + var/area/elevator_area = GLOB.supply_controller.shuttle?.get_location_area() + + var/turf_list = list() + for(var/turf/turf in elevator_area) + turf_list |= turf + return turf_list + +/// Vehicle bay pit. +/turf/open/floor/almayer/empty/vehicle_bay + +/turf/open/floor/almayer/empty/vehicle_bay/get_depths_turfs() + return SSshuttle.vehicle_elevator.return_turfs() + /turf/open/floor/almayer/empty/golden_arrow desc = "You can see the elevator down there. It's a pretty long fall though..." var/area_type = /area/golden_arrow/cargo_shuttle/elevator @@ -334,16 +981,79 @@ icon_state = "logo_c" name = "\improper USCM Logo" +/turf/open/floor/almayer/uscm/north + dir = NORTH + /turf/open/floor/almayer/uscm/directional icon_state = "logo_directional" +/turf/open/floor/almayer/uscm/directional/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/uscm/directional/north + dir = NORTH + +/turf/open/floor/almayer/uscm/directional/east + dir = EAST + +/turf/open/floor/almayer/uscm/directional/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/uscm/directional/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/uscm/directional/logo_c + icon_state = "logo_c" + +/turf/open/floor/almayer/uscm/directional/logo_c/west + dir = WEST + +/turf/open/floor/almayer/uscm/directional/west + dir = WEST + +/turf/open/floor/almayer/uscm/directional/northwest + dir = NORTHWEST + /turf/open/floor/almayer/uscm/directional/up_down icon_state = "logo_directional1" +/turf/open/floor/almayer/uscm/directional/up_down/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer/uscm/directional/up_down/north + dir = NORTH + +/turf/open/floor/almayer/uscm/directional/up_down/east + dir = EAST + +/turf/open/floor/almayer/uscm/directional/up_down/northeast + dir = NORTHEAST + +/turf/open/floor/almayer/uscm/directional/up_down/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer/uscm/directional/up_down/west + dir = WEST + +/turf/open/floor/almayer/uscm/directional/up_down/northwest + dir = NORTHWEST + /turf/open/floor/almayer/no_build allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/no_build/ai_floors + icon_state = "ai_floors" + +/turf/open/floor/almayer/no_build/plating + icon_state = "plating" + +/turf/open/floor/almayer/no_build/plate + icon_state = "plate" + +/turf/open/floor/almayer/no_build/test_floor4 + icon_state = "test_floor4" + /turf/open/floor/almayer/aicore icon = 'icons/turf/floors/aicore.dmi' icon_state = "ai_floor1" @@ -351,20 +1061,63 @@ /turf/open/floor/almayer/aicore/glowing icon_state = "ai_floor2" light_color = "#d69c46" - light_range = 2 + light_range = 3 /turf/open/floor/almayer/aicore/glowing/Initialize(mapload, ...) . = ..() set_light_on(TRUE) + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LOCKDOWN, PROC_REF(start_emergency_light_on)) + RegisterSignal(SSdcs, COMSIG_GLOB_AICORE_LIFT, PROC_REF(start_emergency_light_off)) + +/turf/open/floor/almayer/aicore/glowing/proc/start_emergency_light_on() + set_light(l_color = "#c70f0f") + +/turf/open/floor/almayer/aicore/glowing/proc/start_emergency_light_off() + set_light(l_color = "#d69c46") + /turf/open/floor/almayer/aicore/no_build allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/aicore/no_build/ai_arrow + icon_state = "ai_arrow" + +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east + dir = EAST + +/turf/open/floor/almayer/aicore/no_build/ai_silver + icon_state = "ai_silver" + +/turf/open/floor/almayer/aicore/no_build/ai_silver/east + dir = EAST + +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west + dir = WEST + +/turf/open/floor/almayer/aicore/no_build/ai_silver/west + dir = WEST + +/turf/open/floor/almayer/aicore/no_build/ai_cargo + icon_state = "ai_cargo" + +/turf/open/floor/almayer/aicore/no_build/ai_floor2 + icon_state = "ai_floor2" + +/turf/open/floor/almayer/aicore/no_build/ai_plates + icon_state = "ai_plates" + /turf/open/floor/almayer/aicore/glowing/no_build allow_construction = FALSE hull_floor = TRUE +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range + icon_state = "ai_floor3" + light_range = 4 + +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3 + icon_state = "ai_floor3" + // RESEARCH STUFF /turf/open/floor/almayer/research/containment/entrance icon_state = "containment_entrance" @@ -396,7 +1149,26 @@ /turf/open/floor/almayer/research/containment/corner_var2 icon_state = "containment_corner_variant_2" +/turf/open/floor/almayer/research/containment/corner_var1/east + dir = EAST + +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2 + icon_state = "containment_corner_variant_2" + +/turf/open/floor/almayer/research/containment/corner/north + dir = NORTH + +/turf/open/floor/almayer/research/containment/corner/east + dir = EAST + +/turf/open/floor/almayer/research/containment/entrance/west + dir = WEST +/turf/open/floor/almayer/research/containment/floor2/north + dir = NORTH + +/turf/open/floor/almayer/research/containment/floor2/west + dir = WEST @@ -409,7 +1181,32 @@ name = "hull" hull_floor = TRUE +/turf/open/floor/almayer_hull/outerhull_dir + icon_state = "outerhull_dir" + +/turf/open/floor/almayer_hull/outerhull_dir/southwest + dir = SOUTHWEST + +/turf/open/floor/almayer_hull/outerhull_dir/north + dir = NORTH + +/turf/open/floor/almayer_hull/outerhull_dir/east + dir = EAST +/turf/open/floor/almayer_hull/outerhull_dir/northeast + dir = NORTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir/southeast + dir = SOUTHEAST + +/turf/open/floor/almayer_hull/outerhull_dir/west + dir = WEST + +/turf/open/floor/almayer_hull/outerhull_dir/northwest + dir = NORTHWEST + +/turf/open/floor/almayer_hull/blackfull + icon_state = "blackfull" @@ -430,14 +1227,34 @@ . = ..() name = "floor" +/turf/open/floor/airless/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/airless/asteroidfloor/northeast + dir = NORTHEAST + /turf/open/floor/icefloor icon_state = "floor" name = "ice colony floor" plating_type = /turf/open/floor/plating/icefloor -/turf/open/floor/icefloor/Initialize(mapload, ...) - . = ..() - name = "floor" +/turf/open/floor/icefloor/shuttle_floor6 + icon = 'icons/turf/shuttle.dmi' + icon_state = "floor6" + +/turf/open/floor/icefloor/shuttle_floor7 + icon = 'icons/turf/shuttle.dmi' + icon_state = "floor7" + +/turf/open/floor/icefloor/shuttle_vfloor + icon = 'icons/turf/shuttle.dmi' + icon_state = "vfloor" + +/turf/open/floor/icefloor/ramptop + icon_state = "ramptop" + +/turf/open/floor/icefloor/rockvault + icon_state = "rockvault" /turf/open/floor/wood name = "wooden floor" @@ -453,6 +1270,27 @@ desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high-pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know." tile_type = /obj/item/stack/tile/wood/fake +/turf/open/floor/wood/wood_broken + icon_state = "wood-broken" + +/turf/open/floor/wood/wood_broken2 + icon_state = "wood-broken2" + +/turf/open/floor/wood/wood_broken3 + icon_state = "wood-broken3" + +/turf/open/floor/wood/wood_broken4 + icon_state = "wood-broken4" + +/turf/open/floor/wood/wood_broken5 + icon_state = "wood-broken5" + +/turf/open/floor/wood/wood_broken6 + icon_state = "wood-broken6" + +/turf/open/floor/wood/wood_broken7 + icon_state = "wood-broken7" + /turf/open/floor/vault icon_state = "rockvault" @@ -470,6 +1308,9 @@ burnable_tile = FALSE baseturfs = /turf/open/floor +/turf/open/floor/engine/simulator_center + color = "#AAAAAA" + /turf/open/floor/engine/make_plating() return @@ -522,6 +1363,18 @@ icon = 'icons/turf/floors/floors.dmi' icon_state = "bcircuit" +/turf/open/floor/bluegrid/bcircuitoff + icon_state = "bcircuitoff" + +/turf/open/floor/bluegrid/damaged3 + icon_state = "damaged3" + +/turf/open/floor/bluegrid/damaged4 + icon_state = "damaged4" + +/turf/open/floor/bluegrid/damaged5 + icon_state = "damaged5" + /turf/open/floor/greengrid icon = 'icons/turf/floors/floors.dmi' icon_state = "gcircuit" @@ -541,7 +1394,7 @@ /turf/open/floor/grass/LateInitialize() . = ..() - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) if(istype(get_step(src,direction),/turf/open/floor)) var/turf/open/floor/FF = get_step(src,direction) FF.update_icon() //so siding get updated properly @@ -560,6 +1413,7 @@ /turf/open/floor/carpet name = "carpet" + desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft." icon_state = "carpet" tile_type = /obj/item/stack/tile/carpet tool_flags = REMOVE_SCREWDRIVER @@ -586,7 +1440,7 @@ if(!broken && !burnt) if(icon_state != "carpetsymbol") var/connectdir = 0 - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) if(istype(get_step(src, direction), /turf/open/floor)) var/turf/open/floor/FF = get_step(src, direction) if(FF.is_carpet_floor()) @@ -627,15 +1481,54 @@ icon_state = "carpet[connectdir]-[diagonalconnect]" /turf/open/floor/carpet/make_plating() - for(var/direction in alldirs) + for(var/direction in GLOB.alldirs) if(istype(get_step(src, direction), /turf/open/floor)) var/turf/open/floor/FF = get_step(src,direction) FF.update_icon() // So siding get updated properly return ..() +/turf/open/floor/carpet/bcarpet01 + icon_state = "bcarpet01" + +/turf/open/floor/carpet/bcarpet02 + icon_state = "bcarpet02" + +/turf/open/floor/carpet/bcarpet03 + icon_state = "bcarpet03" + +/turf/open/floor/carpet/bcarpet07 + icon_state = "bcarpet07" + +/turf/open/floor/carpet/bcarpet08 + icon_state = "bcarpet08" + +/turf/open/floor/carpet/bcarpet09 + icon_state = "bcarpet09" + /turf/open/floor/carpet/edge icon_state = "carpetside" +/turf/open/floor/carpet/edge/southwest + dir = SOUTHWEST + +/turf/open/floor/carpet/edge/north + dir = NORTH + +/turf/open/floor/carpet/edge/east + dir = EAST + +/turf/open/floor/carpet/edge/northeast + dir = NORTHEAST + +/turf/open/floor/carpet/edge/southeast + dir = SOUTHEAST + +/turf/open/floor/carpet/edge/west + dir = WEST + +/turf/open/floor/carpet/edge/northwest + dir = NORTHWEST + // Start Prison tiles /turf/open/floor/prison @@ -650,47 +1543,2197 @@ icon = 'icons/turf/floors/carpet_manual.dmi'//I dunno man, CM-ified carpet sprites are placed manually and I can't be bothered to write a new system for 'em. icon_state = "single" -// Mechbay -/turf/open/floor/mech_bay_recharge_floor - name = "Mech Bay Recharge Station" - icon = 'icons/obj/structures/props/mech.dmi' - icon_state = "recharge_floor" +/turf/open/floor/prison/chapel_carpet/doubleside + icon_state = "doubleside" -/turf/open/floor/mech_bay_recharge_floor/break_tile() - if(broken) - return - ChangeTurf(/turf/open/floor/plating) - broken = TRUE +/turf/open/floor/prison/chapel_carpet/doubleside/north + dir = NORTH +/turf/open/floor/prison/blue + icon_state = "blue" -/turf/open/floor/interior - icon = 'icons/turf/floors/interior.dmi' +/turf/open/floor/prison/blue/southwest + dir = SOUTHWEST -/turf/open/floor/interior/wood - name = "wooden floor" - icon_state = "oldwood1" - tile_type = /obj/item/stack/tile/wood +/turf/open/floor/prison/bright_clean + icon_state = "bright_clean" -/turf/open/floor/interior/wood/is_wood_floor() - return TRUE +/turf/open/floor/prison/bright_clean/southwest + dir = SOUTHWEST -/turf/open/floor/interior/wood/alt - icon_state = "oldwood2" +/turf/open/floor/prison/bright_clean2 + icon_state = "bright_clean2" -/turf/open/floor/interior/tatami - name = "tatami flooring" - desc = "A type of flooring often used in traditional Japanese-style housing." - icon_state = "tatami" +/turf/open/floor/prison/bright_clean2/southwest + dir = SOUTHWEST -/turf/open/floor/interior/plastic - name = "plastic floor" - icon_state = "plasticfloor1" +/turf/open/floor/prison/bright_clean_marked + icon_state = "bright_clean_marked" -/turf/open/floor/interior/plastic/alt - icon_state = "plasticfloor2" +/turf/open/floor/prison/bright_clean_marked/southwest + dir = SOUTHWEST -// Biodome tiles +/turf/open/floor/prison/damaged1 + icon_state = "damaged1" -/turf/open/floor/corsat - icon = 'icons/turf/floors/corsat.dmi' - icon_state = "plating" +/turf/open/floor/prison/damaged1/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/damaged2 + icon_state = "damaged2" + +/turf/open/floor/prison/damaged2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrown2 + icon_state = "darkbrown2" + +/turf/open/floor/prison/darkbrown2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrown3 + icon_state = "darkbrown3" + +/turf/open/floor/prison/darkbrown3/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkbrowncorners2 + icon_state = "darkbrowncorners2" + +/turf/open/floor/prison/darkbrowncorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkpurple2 + icon_state = "darkpurple2" + +/turf/open/floor/prison/darkpurple2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkred2 + icon_state = "darkred2" + +/turf/open/floor/prison/darkred2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkredcorners2 + icon_state = "darkredcorners2" + +/turf/open/floor/prison/darkredcorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkredfull2 + icon_state = "darkredfull2" + +/turf/open/floor/prison/darkredfull2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkyellow2 + icon_state = "darkyellow2" + +/turf/open/floor/prison/darkyellow2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/darkyellowcorners2 + icon_state = "darkyellowcorners2" + +/turf/open/floor/prison/darkyellowcorners2/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/floor_marked + icon_state = "floor_marked" + +/turf/open/floor/prison/floor_marked/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/floor_plate + icon_state = "floor_plate" + +/turf/open/floor/prison/floor_plate/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/green + icon_state = "green" + +/turf/open/floor/prison/green/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/greenblue + icon_state = "greenblue" + +/turf/open/floor/prison/greenblue/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/kitchen + icon_state = "kitchen" + +/turf/open/floor/prison/kitchen/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/red + icon_state = "red" + +/turf/open/floor/prison/red/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/sterile_white + icon_state = "sterile_white" + +/turf/open/floor/prison/sterile_white/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitegreen + icon_state = "whitegreen" + +/turf/open/floor/prison/whitegreen/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitegreenfull + icon_state = "whitegreenfull" + +/turf/open/floor/prison/whitegreenfull/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitepurple + icon_state = "whitepurple" + +/turf/open/floor/prison/whitepurple/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/whitered + icon_state = "whitered" + +/turf/open/floor/prison/whitered/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/yellow + icon_state = "yellow" + +/turf/open/floor/prison/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/yellowfull + icon_state = "yellowfull" + +/turf/open/floor/prison/yellowfull/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/blue/north + dir = NORTH + +/turf/open/floor/prison/blue_plate + icon_state = "blue_plate" + +/turf/open/floor/prison/blue_plate/north + dir = NORTH + +/turf/open/floor/prison/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/prison/bluecorner/north + dir = NORTH + +/turf/open/floor/prison/cell_stripe + icon_state = "cell_stripe" + +/turf/open/floor/prison/cell_stripe/north + dir = NORTH + +/turf/open/floor/prison/darkbrown2/north + dir = NORTH + +/turf/open/floor/prison/darkbrown3/north + dir = NORTH + +/turf/open/floor/prison/darkbrowncorners2/north + dir = NORTH + +/turf/open/floor/prison/darkbrowncorners3 + icon_state = "darkbrowncorners3" + +/turf/open/floor/prison/darkbrowncorners3/north + dir = NORTH + +/turf/open/floor/prison/darkpurple2/north + dir = NORTH + +/turf/open/floor/prison/darkpurplecorners2 + icon_state = "darkpurplecorners2" + +/turf/open/floor/prison/darkpurplecorners2/north + dir = NORTH + +/turf/open/floor/prison/darkred2/north + dir = NORTH + +/turf/open/floor/prison/darkredcorners2/north + dir = NORTH + +/turf/open/floor/prison/darkyellow2/north + dir = NORTH + +/turf/open/floor/prison/darkyellowcorners2/north + dir = NORTH + +/turf/open/floor/prison/green/north + dir = NORTH + +/turf/open/floor/prison/greenblue/north + dir = NORTH + +/turf/open/floor/prison/greenbluecorner + icon_state = "greenbluecorner" + +/turf/open/floor/prison/greenbluecorner/north + dir = NORTH + +/turf/open/floor/prison/greencorner + icon_state = "greencorner" + +/turf/open/floor/prison/greencorner/north + dir = NORTH + +/turf/open/floor/prison/rampbottom + icon_state = "rampbottom" + +/turf/open/floor/prison/rampbottom/north + dir = NORTH + +/turf/open/floor/prison/red/north + dir = NORTH + +/turf/open/floor/prison/redcorner + icon_state = "redcorner" + +/turf/open/floor/prison/redcorner/north + dir = NORTH + +/turf/open/floor/prison/whitegreen/north + dir = NORTH + +/turf/open/floor/prison/whitegreencorner + icon_state = "whitegreencorner" + +/turf/open/floor/prison/whitegreencorner/north + dir = NORTH + +/turf/open/floor/prison/whitepurple/north + dir = NORTH + +/turf/open/floor/prison/whitepurplecorner + icon_state = "whitepurplecorner" + +/turf/open/floor/prison/whitepurplecorner/north + dir = NORTH + +/turf/open/floor/prison/whitered/north + dir = NORTH + +/turf/open/floor/prison/yellow/north + dir = NORTH + +/turf/open/floor/prison/yellowcorner + icon_state = "yellowcorner" + +/turf/open/floor/prison/yellowcorner/north + dir = NORTH + +/turf/open/floor/prison/sterile_white/south + dir = SOUTH + +/turf/open/floor/prison/blue/east + dir = EAST + +/turf/open/floor/prison/blue_plate/east + dir = EAST + +/turf/open/floor/prison/bluecorner/east + dir = EAST + +/turf/open/floor/prison/cell_stripe/east + dir = EAST + +/turf/open/floor/prison/darkbrown2/east + dir = EAST + +/turf/open/floor/prison/darkbrown3/east + dir = EAST + +/turf/open/floor/prison/darkbrowncorners2/east + dir = EAST + +/turf/open/floor/prison/darkbrowncorners3/east + dir = EAST + +/turf/open/floor/prison/darkpurple2/east + dir = EAST + +/turf/open/floor/prison/darkpurplecorners2/east + dir = EAST + +/turf/open/floor/prison/darkred2/east + dir = EAST + +/turf/open/floor/prison/darkredcorners2/east + dir = EAST + +/turf/open/floor/prison/darkyellow2/east + dir = EAST + +/turf/open/floor/prison/darkyellowcorners2/east + dir = EAST + +/turf/open/floor/prison/darkyellowfull2 + icon_state = "darkyellowfull2" + +/turf/open/floor/prison/darkyellowfull2/east + dir = EAST + +/turf/open/floor/prison/green/east + dir = EAST + +/turf/open/floor/prison/greenblue/east + dir = EAST + +/turf/open/floor/prison/greenbluecorner/east + dir = EAST + +/turf/open/floor/prison/greencorner/east + dir = EAST + +/turf/open/floor/prison/greenfull + icon_state = "greenfull" + +/turf/open/floor/prison/greenfull/east + dir = EAST + +/turf/open/floor/prison/rampbottom/east + dir = EAST + +/turf/open/floor/prison/red/east + dir = EAST + +/turf/open/floor/prison/redcorner/east + dir = EAST + +/turf/open/floor/prison/whitegreen/east + dir = EAST + +/turf/open/floor/prison/whitegreencorner/east + dir = EAST + +/turf/open/floor/prison/whitepurple/east + dir = EAST + +/turf/open/floor/prison/whitepurplecorner/east + dir = EAST + +/turf/open/floor/prison/whitered/east + dir = EAST + +/turf/open/floor/prison/whiteredcorner + icon_state = "whiteredcorner" + +/turf/open/floor/prison/whiteredcorner/east + dir = EAST + +/turf/open/floor/prison/yellow/east + dir = EAST + +/turf/open/floor/prison/yellowcorner/east + dir = EAST + +/turf/open/floor/prison/blue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkbrown2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkpurple2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkred2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/darkyellow2/northeast + dir = NORTHEAST + +/turf/open/floor/prison/green/northeast + dir = NORTHEAST + +/turf/open/floor/prison/greenblue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/red/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitegreen/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitepurple/northeast + dir = NORTHEAST + +/turf/open/floor/prison/whitered/northeast + dir = NORTHEAST + +/turf/open/floor/prison/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/prison/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkbrown2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkpurple2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkred2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/darkyellow2/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/green/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/greenblue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/red/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitegreen/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitepurple/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/whitered/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/blue/west + dir = WEST + +/turf/open/floor/prison/blue_plate/west + dir = WEST + +/turf/open/floor/prison/bluecorner/west + dir = WEST + +/turf/open/floor/prison/bluefull + icon_state = "bluefull" + +/turf/open/floor/prison/bluefull/west + dir = WEST + +/turf/open/floor/prison/cell_stripe/west + dir = WEST + +/turf/open/floor/prison/darkbrown2/west + dir = WEST + +/turf/open/floor/prison/darkbrown3/west + dir = WEST + +/turf/open/floor/prison/darkbrowncorners2/west + dir = WEST + +/turf/open/floor/prison/darkbrowncorners3/west + dir = WEST + +/turf/open/floor/prison/darkpurple2/west + dir = WEST + +/turf/open/floor/prison/darkpurplecorners2/west + dir = WEST + +/turf/open/floor/prison/darkred2/west + dir = WEST + +/turf/open/floor/prison/darkredcorners2/west + dir = WEST + +/turf/open/floor/prison/darkyellow2/west + dir = WEST + +/turf/open/floor/prison/darkyellowcorners2/west + dir = WEST + +/turf/open/floor/prison/floor_marked/west + dir = WEST + +/turf/open/floor/prison/green/west + dir = WEST + +/turf/open/floor/prison/greenblue/west + dir = WEST + +/turf/open/floor/prison/greenbluecorner/west + dir = WEST + +/turf/open/floor/prison/greencorner/west + dir = WEST + +/turf/open/floor/prison/rampbottom/west + dir = WEST + +/turf/open/floor/prison/red/west + dir = WEST + +/turf/open/floor/prison/redcorner/west + dir = WEST + +/turf/open/floor/prison/sterile_white/west + dir = WEST + +/turf/open/floor/prison/whitegreen/west + dir = WEST + +/turf/open/floor/prison/whitegreencorner/west + dir = WEST + +/turf/open/floor/prison/whitepurple/west + dir = WEST + +/turf/open/floor/prison/whitepurplecorner/west + dir = WEST + +/turf/open/floor/prison/whitered/west + dir = WEST + +/turf/open/floor/prison/whiteredcorner/west + dir = WEST + +/turf/open/floor/prison/yellow/west + dir = WEST + +/turf/open/floor/prison/yellowcorner/west + dir = WEST + +/turf/open/floor/prison/west + dir = WEST + +/turf/open/floor/prison/blue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkbrown2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkbrown3/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkpurple2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkpurplefull2 + icon_state = "darkpurplefull2" + +/turf/open/floor/prison/darkpurplefull2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkred2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/darkyellow2/northwest + dir = NORTHWEST + +/turf/open/floor/prison/green/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenblue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenfull/northwest + dir = NORTHWEST + +/turf/open/floor/prison/red/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitegreen/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitepurple/northwest + dir = NORTHWEST + +/turf/open/floor/prison/whitered/northwest + dir = NORTHWEST + +/turf/open/floor/prison/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/prison/damaged3 + icon_state = "damaged3" + +/turf/open/floor/prison/darkbrownfull2 + icon_state = "darkbrownfull2" + +/turf/open/floor/prison/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/prison/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/prison/greenblue/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/greenblue/north + dir = NORTH + +/turf/open/floor/prison/greenblue/east + dir = EAST + +/turf/open/floor/prison/greenblue/northeast + dir = NORTHEAST + +/turf/open/floor/prison/greenblue/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/greenblue/west + dir = WEST + +/turf/open/floor/prison/greenblue/northwest + dir = NORTHWEST + +/turf/open/floor/prison/greenbluecorner/east + dir = EAST + +/turf/open/floor/prison/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/prison/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/prison/platingdmg2 + icon_state = "platingdmg2" + +/turf/open/floor/prison/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/prison/red/southwest + dir = SOUTHWEST + +/turf/open/floor/prison/red/north + dir = NORTH + +/turf/open/floor/prison/red/east + dir = EAST + +/turf/open/floor/prison/red/northeast + dir = NORTHEAST + +/turf/open/floor/prison/red/southeast + dir = SOUTHEAST + +/turf/open/floor/prison/red/west + dir = WEST + +/turf/open/floor/prison/red/northwest + dir = NORTHWEST + +/turf/open/floor/prison/redcorner/north + dir = NORTH + +/turf/open/floor/prison/redcorner/east + dir = EAST + +/turf/open/floor/prison/redfull + icon_state = "redfull" + +/turf/open/floor/prison/whitepurplefull + icon_state = "whitepurplefull" + +// Mechbay +/turf/open/floor/mech_bay_recharge_floor + name = "Mech Bay Recharge Station" + icon = 'icons/obj/structures/props/mech.dmi' + icon_state = "recharge_floor" + +/turf/open/floor/mech_bay_recharge_floor/break_tile() + if(broken) + return + ChangeTurf(/turf/open/floor/plating) + broken = TRUE + +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights + name = "shuttle landing lights" + +/turf/open/floor/interior + icon = 'icons/turf/floors/interior.dmi' + +/turf/open/floor/interior/wood + name = "wooden floor" + icon_state = "oldwood1" + tile_type = /obj/item/stack/tile/wood + +/turf/open/floor/interior/wood/is_wood_floor() + return TRUE + +/turf/open/floor/interior/wood/alt + icon_state = "oldwood2" + +/turf/open/floor/interior/tatami + name = "tatami flooring" + desc = "A type of flooring often used in traditional Japanese-style housing." + icon_state = "tatami" + +/turf/open/floor/interior/plastic + name = "plastic floor" + icon_state = "plasticfloor1" + +/turf/open/floor/interior/plastic/alt + icon_state = "plasticfloor2" + +// Biodome tiles + +/turf/open/floor/corsat + icon = 'icons/turf/floors/corsat.dmi' + icon_state = "plating" + +/turf/open/floor/corsat/blue + icon_state = "blue" + +/turf/open/floor/corsat/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/bluegrey + icon_state = "bluegrey" + +/turf/open/floor/corsat/bluegrey/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/brown + icon_state = "brown" + +/turf/open/floor/corsat/brown/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/corsat_teleporter_static + icon_state = "corsat_teleporter_static" + +/turf/open/floor/corsat/corsat_teleporter_static/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/darkgreen + icon_state = "darkgreen" + +/turf/open/floor/corsat/darkgreen/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/green + icon_state = "green" + +/turf/open/floor/corsat/green/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/greenwhite + icon_state = "greenwhite" + +/turf/open/floor/corsat/greenwhite/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/purple + icon_state = "purple" + +/turf/open/floor/corsat/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/purplewhite + icon_state = "purplewhite" + +/turf/open/floor/corsat/purplewhite/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/red + icon_state = "red" + +/turf/open/floor/corsat/red/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/tcomms + icon_state = "tcomms" + +/turf/open/floor/corsat/tcomms/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/white + icon_state = "white" + +/turf/open/floor/corsat/white/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/whitebluefull + icon_state = "whitebluefull" + +/turf/open/floor/corsat/whitebluefull/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/whitetan + icon_state = "whitetan" + +/turf/open/floor/corsat/whitetan/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/yellow + icon_state = "yellow" + +/turf/open/floor/corsat/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/blue/north + dir = NORTH + +/turf/open/floor/corsat/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/corsat/bluecorner/north + dir = NORTH + +/turf/open/floor/corsat/bluegrey/north + dir = NORTH + +/turf/open/floor/corsat/bluegreycorner + icon_state = "bluegreycorner" + +/turf/open/floor/corsat/bluegreycorner/north + dir = NORTH + +/turf/open/floor/corsat/brown/north + dir = NORTH + +/turf/open/floor/corsat/browncorner + icon_state = "browncorner" + +/turf/open/floor/corsat/browncorner/north + dir = NORTH + +/turf/open/floor/corsat/darkgreen/north + dir = NORTH + +/turf/open/floor/corsat/darkgreencorner + icon_state = "darkgreencorner" + +/turf/open/floor/corsat/darkgreencorner/north + dir = NORTH + +/turf/open/floor/corsat/green/north + dir = NORTH + +/turf/open/floor/corsat/greencorner + icon_state = "greencorner" + +/turf/open/floor/corsat/greencorner/north + dir = NORTH + +/turf/open/floor/corsat/greenwhite/north + dir = NORTH + +/turf/open/floor/corsat/greenwhitecorner + icon_state = "greenwhitecorner" + +/turf/open/floor/corsat/greenwhitecorner/north + dir = NORTH + +/turf/open/floor/corsat/purple/north + dir = NORTH + +/turf/open/floor/corsat/purplecorner + icon_state = "purplecorner" + +/turf/open/floor/corsat/purplecorner/north + dir = NORTH + +/turf/open/floor/corsat/purplewhite/north + dir = NORTH + +/turf/open/floor/corsat/purplewhitecorner + icon_state = "purplewhitecorner" + +/turf/open/floor/corsat/purplewhitecorner/north + dir = NORTH + +/turf/open/floor/corsat/red/north + dir = NORTH + +/turf/open/floor/corsat/redcorner + icon_state = "redcorner" + +/turf/open/floor/corsat/redcorner/north + dir = NORTH + +/turf/open/floor/corsat/squareswood + icon_state = "squareswood" + +/turf/open/floor/corsat/squareswood/north + dir = NORTH + +/turf/open/floor/corsat/tan + icon_state = "tan" + +/turf/open/floor/corsat/tan/north + dir = NORTH + +/turf/open/floor/corsat/white/north + dir = NORTH + +/turf/open/floor/corsat/whitecorner + icon_state = "whitecorner" + +/turf/open/floor/corsat/whitecorner/north + dir = NORTH + +/turf/open/floor/corsat/whitetan/north + dir = NORTH + +/turf/open/floor/corsat/whitetancorner + icon_state = "whitetancorner" + +/turf/open/floor/corsat/whitetancorner/north + dir = NORTH + +/turf/open/floor/corsat/yellow/north + dir = NORTH + +/turf/open/floor/corsat/yellowcorner + icon_state = "yellowcorner" + +/turf/open/floor/corsat/yellowcorner/north + dir = NORTH + +/turf/open/floor/corsat/blue/east + dir = EAST + +/turf/open/floor/corsat/bluecorner/east + dir = EAST + +/turf/open/floor/corsat/bluegrey/east + dir = EAST + +/turf/open/floor/corsat/bluegreycorner/east + dir = EAST + +/turf/open/floor/corsat/brown/east + dir = EAST + +/turf/open/floor/corsat/browncorner/east + dir = EAST + +/turf/open/floor/corsat/darkgreen/east + dir = EAST + +/turf/open/floor/corsat/darkgreencorner/east + dir = EAST + +/turf/open/floor/corsat/green/east + dir = EAST + +/turf/open/floor/corsat/greencorner/east + dir = EAST + +/turf/open/floor/corsat/greenwhite/east + dir = EAST + +/turf/open/floor/corsat/greenwhitecorner/east + dir = EAST + +/turf/open/floor/corsat/purple/east + dir = EAST + +/turf/open/floor/corsat/purplecorner/east + dir = EAST + +/turf/open/floor/corsat/purplewhite/east + dir = EAST + +/turf/open/floor/corsat/purplewhitecorner/east + dir = EAST + +/turf/open/floor/corsat/red/east + dir = EAST + +/turf/open/floor/corsat/redcorner/east + dir = EAST + +/turf/open/floor/corsat/white/east + dir = EAST + +/turf/open/floor/corsat/whitecorner/east + dir = EAST + +/turf/open/floor/corsat/whitetan/east + dir = EAST + +/turf/open/floor/corsat/whitetancorner/east + dir = EAST + +/turf/open/floor/corsat/yellow/east + dir = EAST + +/turf/open/floor/corsat/yellowcorner/east + dir = EAST + +/turf/open/floor/corsat/blue/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/bluegrey/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/brown/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/darkgreen/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/green/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/greenwhite/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/purple/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/purplewhite/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/red/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/white/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/whitetan/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/bluegrey/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/brown/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/darkgreen/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/green/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/greenwhite/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/purplewhite/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/red/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/white/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/whitetan/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/blue/west + dir = WEST + +/turf/open/floor/corsat/bluecorner/west + dir = WEST + +/turf/open/floor/corsat/bluegrey/west + dir = WEST + +/turf/open/floor/corsat/bluegreycorner/west + dir = WEST + +/turf/open/floor/corsat/brown/west + dir = WEST + +/turf/open/floor/corsat/browncorner/west + dir = WEST + +/turf/open/floor/corsat/darkgreen/west + dir = WEST + +/turf/open/floor/corsat/darkgreencorner/west + dir = WEST + +/turf/open/floor/corsat/green/west + dir = WEST + +/turf/open/floor/corsat/greencorner/west + dir = WEST + +/turf/open/floor/corsat/greenwhite/west + dir = WEST + +/turf/open/floor/corsat/greenwhitecorner/west + dir = WEST + +/turf/open/floor/corsat/purple/west + dir = WEST + +/turf/open/floor/corsat/purplecorner/west + dir = WEST + +/turf/open/floor/corsat/purplewhite/west + dir = WEST + +/turf/open/floor/corsat/purplewhitecorner/west + dir = WEST + +/turf/open/floor/corsat/red/west + dir = WEST + +/turf/open/floor/corsat/redcorner/west + dir = WEST + +/turf/open/floor/corsat/white/west + dir = WEST + +/turf/open/floor/corsat/whitecorner/west + dir = WEST + +/turf/open/floor/corsat/whitetan/west + dir = WEST + +/turf/open/floor/corsat/whitetancorner/west + dir = WEST + +/turf/open/floor/corsat/yellow/west + dir = WEST + +/turf/open/floor/corsat/yellowcorner/west + dir = WEST + +/turf/open/floor/corsat/blue/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/bluegrey/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/brown/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/darkgreen/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/green/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/greenwhite/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/purple/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/purplewhite/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/red/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/white/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/whitetan/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/arrow_east + icon_state = "arrow_east" + +/turf/open/floor/corsat/arrow_north + icon_state = "arrow_north" + +/turf/open/floor/corsat/arrow_south + icon_state = "arrow_south" + +/turf/open/floor/corsat/arrow_west + icon_state = "arrow_west" + +/turf/open/floor/corsat/cargo + icon_state = "cargo" + +/turf/open/floor/corsat/damaged1 + icon_state = "damaged1" + +/turf/open/floor/corsat/gamma + icon_state = "gamma" + +/turf/open/floor/corsat/lightplate + icon_state = "lightplate" + +/turf/open/floor/corsat/marked + icon_state = "marked" + +/turf/open/floor/corsat/officesquares + icon_state = "officesquares" + +/turf/open/floor/corsat/omega + icon_state = "omega" + +/turf/open/floor/corsat/plate + icon_state = "plate" + +/turf/open/floor/corsat/red/southwest + dir = SOUTHWEST + +/turf/open/floor/corsat/red/north + dir = NORTH + +/turf/open/floor/corsat/red/east + dir = EAST + +/turf/open/floor/corsat/red/northeast + dir = NORTHEAST + +/turf/open/floor/corsat/red/southeast + dir = SOUTHEAST + +/turf/open/floor/corsat/red/west + dir = WEST + +/turf/open/floor/corsat/red/northwest + dir = NORTHWEST + +/turf/open/floor/corsat/redcorner/north + dir = NORTH + +/turf/open/floor/corsat/redcorner/east + dir = EAST + +/turf/open/floor/corsat/retrosquares + icon_state = "retrosquares" + +/turf/open/floor/corsat/retrosquareslight + icon_state = "retrosquareslight" + +/turf/open/floor/corsat/sigma + icon_state = "sigma" + +/turf/open/floor/corsat/spiralplate + icon_state = "spiralplate" + +/turf/open/floor/corsat/spiralwoodalt + icon_state = "spiralwoodalt" + +/turf/open/floor/corsat/squares + icon_state = "squares" + +/turf/open/floor/corsat/sterileplate + icon_state = "sterileplate" + +/turf/open/floor/corsat/theta + icon_state = "theta" + +/turf/open/floor/corsat/yellow/north + dir = NORTH + +/turf/open/floor/corsat/yellow/east + dir = EAST + +/turf/open/floor/corsat/yellowcorner/east + dir = EAST + +/turf/open/floor/grey_dark2 + color = "#525151" + icon_state = "dark2" + +/turf/open/floor/solarpanel + desc = "A sophisticated device that captures and converts light from the system's star into energy for the station." + icon_state = "solarpanel" + name = "solarpanel" + +/turf/open/floor/asteroidwarning + icon_state = "asteroidwarning" + +/turf/open/floor/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/darkblue2 + icon_state = "darkblue2" + +/turf/open/floor/darkblue2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkbrown2 + icon_state = "darkbrown2" + +/turf/open/floor/darkbrown2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkgreen2 + icon_state = "darkgreen2" + +/turf/open/floor/darkgreen2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkpurple2 + icon_state = "darkpurple2" + +/turf/open/floor/darkpurple2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkred2 + icon_state = "darkred2" + +/turf/open/floor/darkred2/southwest + dir = SOUTHWEST + +/turf/open/floor/darkyellow2 + icon_state = "darkyellow2" + +/turf/open/floor/darkyellow2/southwest + dir = SOUTHWEST + +/turf/open/floor/podhatch + icon_state = "podhatch" + +/turf/open/floor/podhatch/southwest + dir = SOUTHWEST + +/turf/open/floor/purple + icon_state = "purple" + +/turf/open/floor/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/red + icon_state = "red" + +/turf/open/floor/red/southwest + dir = SOUTHWEST + +/turf/open/floor/warning + icon_state = "warning" + +/turf/open/floor/warning/southwest + dir = SOUTHWEST + +/turf/open/floor/warnwhite + icon_state = "warnwhite" + +/turf/open/floor/warnwhite/southwest + dir = SOUTHWEST + +/turf/open/floor/whiteblue + icon_state = "whiteblue" + +/turf/open/floor/whiteblue/southwest + dir = SOUTHWEST + +/turf/open/floor/whitegreen + icon_state = "whitegreen" + +/turf/open/floor/whitegreen/southwest + dir = SOUTHWEST + +/turf/open/floor/whitepurple + icon_state = "whitepurple" + +/turf/open/floor/whitepurple/southwest + dir = SOUTHWEST + +/turf/open/floor/whitered + icon_state = "whitered" + +/turf/open/floor/whitered/southwest + dir = SOUTHWEST + +/turf/open/floor/whiteyellow + icon_state = "whiteyellow" + +/turf/open/floor/whiteyellow/southwest + dir = SOUTHWEST + +/turf/open/floor/asteroidfloor + icon_state = "asteroidfloor" + +/turf/open/floor/asteroidfloor/north + dir = NORTH + +/turf/open/floor/asteroidwarning/north + dir = NORTH + +/turf/open/floor/bot + icon_state = "bot" + +/turf/open/floor/bot/north + dir = NORTH + +/turf/open/floor/chapel + icon_state = "chapel" + +/turf/open/floor/chapel/north + dir = NORTH + +/turf/open/floor/darkblue2/north + dir = NORTH + +/turf/open/floor/darkbrown2/north + dir = NORTH + +/turf/open/floor/darkbrowncorners2 + icon_state = "darkbrowncorners2" + +/turf/open/floor/darkbrowncorners2/north + dir = NORTH + +/turf/open/floor/darkgreen2/north + dir = NORTH + +/turf/open/floor/darkgreencorners2 + icon_state = "darkgreencorners2" + +/turf/open/floor/darkgreencorners2/north + dir = NORTH + +/turf/open/floor/darkpurple2/north + dir = NORTH + +/turf/open/floor/darkpurplecorners2 + icon_state = "darkpurplecorners2" + +/turf/open/floor/darkpurplecorners2/north + dir = NORTH + +/turf/open/floor/darkred2/north + dir = NORTH + +/turf/open/floor/darkredcorners2 + icon_state = "darkredcorners2" + +/turf/open/floor/darkredcorners2/north + dir = NORTH + +/turf/open/floor/darkyellow2/north + dir = NORTH + +/turf/open/floor/darkyellowcorners2 + icon_state = "darkyellowcorners2" + +/turf/open/floor/darkyellowcorners2/north + dir = NORTH + +/turf/open/floor/elevatorshaft + icon_state = "elevatorshaft" + +/turf/open/floor/elevatorshaft/north + dir = NORTH + +/turf/open/floor/green + icon_state = "green" + +/turf/open/floor/green/north + dir = NORTH + +/turf/open/floor/loadingarea + icon_state = "loadingarea" + +/turf/open/floor/loadingarea/north + dir = NORTH + +/turf/open/floor/podhatch/north + dir = NORTH + +/turf/open/floor/podhatchfloor + icon_state = "podhatchfloor" + +/turf/open/floor/podhatchfloor/north + dir = NORTH + +/turf/open/floor/purple/north + dir = NORTH + +/turf/open/floor/rampbottom + icon_state = "rampbottom" + +/turf/open/floor/rampbottom/north + dir = NORTH + +/turf/open/floor/red/north + dir = NORTH + +/turf/open/floor/redcorner + icon_state = "redcorner" + +/turf/open/floor/redcorner/north + dir = NORTH + +/turf/open/floor/vault2 + icon_state = "vault" + +/turf/open/floor/vault2/north + dir = NORTH + +/turf/open/floor/warning/north + dir = NORTH + +/turf/open/floor/warningcorner + icon_state = "warningcorner" + +/turf/open/floor/warningcorner/north + dir = NORTH + +/turf/open/floor/warnwhite/north + dir = NORTH + +/turf/open/floor/whiteblue/north + dir = NORTH + +/turf/open/floor/whitebluecorner + icon_state = "whitebluecorner" + +/turf/open/floor/whitebluecorner/north + dir = NORTH + +/turf/open/floor/whitegreen/north + dir = NORTH + +/turf/open/floor/whitegreencorner + icon_state = "whitegreencorner" + +/turf/open/floor/whitegreencorner/north + dir = NORTH + +/turf/open/floor/whitepurple/north + dir = NORTH + +/turf/open/floor/whitepurplecorner + icon_state = "whitepurplecorner" + +/turf/open/floor/whitepurplecorner/north + dir = NORTH + +/turf/open/floor/whitered/north + dir = NORTH + +/turf/open/floor/whiteredcorner + icon_state = "whiteredcorner" + +/turf/open/floor/whiteredcorner/north + dir = NORTH + +/turf/open/floor/whiteyellow/north + dir = NORTH + +/turf/open/floor/whiteyellowcorner + icon_state = "whiteyellowcorner" + +/turf/open/floor/whiteyellowcorner/north + dir = NORTH + +/turf/open/floor/asteroidwarning/east + dir = EAST + +/turf/open/floor/chapel/east + dir = EAST + +/turf/open/floor/darkblue2/east + dir = EAST + +/turf/open/floor/darkbrown2/east + dir = EAST + +/turf/open/floor/darkbrowncorners2/east + dir = EAST + +/turf/open/floor/darkgreen2/east + dir = EAST + +/turf/open/floor/darkgreencorners2/east + dir = EAST + +/turf/open/floor/darkpurple2/east + dir = EAST + +/turf/open/floor/darkpurplecorners2/east + dir = EAST + +/turf/open/floor/darkred2/east + dir = EAST + +/turf/open/floor/darkredcorners2/east + dir = EAST + +/turf/open/floor/darkyellow2/east + dir = EAST + +/turf/open/floor/darkyellowcorners2/east + dir = EAST + +/turf/open/floor/loadingarea/east + dir = EAST + +/turf/open/floor/purple/east + dir = EAST + +/turf/open/floor/red/east + dir = EAST + +/turf/open/floor/redcorner/east + dir = EAST + +/turf/open/floor/warning/east + dir = EAST + +/turf/open/floor/warningcorner/east + dir = EAST + +/turf/open/floor/warnwhite/east + dir = EAST + +/turf/open/floor/whiteblue/east + dir = EAST + +/turf/open/floor/whitebluecorner/east + dir = EAST + +/turf/open/floor/whitegreen/east + dir = EAST + +/turf/open/floor/whitegreencorner/east + dir = EAST + +/turf/open/floor/whitepurple/east + dir = EAST + +/turf/open/floor/whitepurplecorner/east + dir = EAST + +/turf/open/floor/whitered/east + dir = EAST + +/turf/open/floor/whiteredcorner/east + dir = EAST + +/turf/open/floor/whiteyellow/east + dir = EAST + +/turf/open/floor/whiteyellowcorner/east + dir = EAST + +/turf/open/floor/whiteyellowfull + icon_state = "whiteyellowfull" + +/turf/open/floor/whiteyellowfull/east + dir = EAST + +/turf/open/floor/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/chapel/northeast + dir = NORTHEAST + +/turf/open/floor/darkblue2/northeast + dir = NORTHEAST + +/turf/open/floor/darkbrown2/northeast + dir = NORTHEAST + +/turf/open/floor/darkgreen2/northeast + dir = NORTHEAST + +/turf/open/floor/darkpurple2/northeast + dir = NORTHEAST + +/turf/open/floor/darkred2/northeast + dir = NORTHEAST + +/turf/open/floor/darkyellow2/northeast + dir = NORTHEAST + +/turf/open/floor/podhatch/northeast + dir = NORTHEAST + +/turf/open/floor/purple/northeast + dir = NORTHEAST + +/turf/open/floor/red/northeast + dir = NORTHEAST + +/turf/open/floor/vault2/northeast + dir = NORTHEAST + +/turf/open/floor/warning/northeast + dir = NORTHEAST + +/turf/open/floor/warnwhite/northeast + dir = NORTHEAST + +/turf/open/floor/whiteblue/northeast + dir = NORTHEAST + +/turf/open/floor/whitebluefull + icon_state = "whitebluefull" + +/turf/open/floor/whitebluefull/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreen/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreen_v + icon_state = "whitegreen_v" + +/turf/open/floor/whitegreen_v/northeast + dir = NORTHEAST + +/turf/open/floor/whitegreenfull + icon_state = "whitegreenfull" + +/turf/open/floor/whitegreenfull/northeast + dir = NORTHEAST + +/turf/open/floor/whitepurple/northeast + dir = NORTHEAST + +/turf/open/floor/whitered/northeast + dir = NORTHEAST + +/turf/open/floor/whiteyellow/northeast + dir = NORTHEAST + +/turf/open/floor/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/darkblue2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkbrown2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkgreen2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkpurple2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkred2/southeast + dir = SOUTHEAST + +/turf/open/floor/darkyellow2/southeast + dir = SOUTHEAST + +/turf/open/floor/podhatch/southeast + dir = SOUTHEAST + +/turf/open/floor/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/red/southeast + dir = SOUTHEAST + +/turf/open/floor/warning/southeast + dir = SOUTHEAST + +/turf/open/floor/warnwhite/southeast + dir = SOUTHEAST + +/turf/open/floor/whiteblue/southeast + dir = SOUTHEAST + +/turf/open/floor/whitegreen/southeast + dir = SOUTHEAST + +/turf/open/floor/whitepurple/southeast + dir = SOUTHEAST + +/turf/open/floor/whitered/southeast + dir = SOUTHEAST + +/turf/open/floor/whiteyellow/southeast + dir = SOUTHEAST + +/turf/open/floor/asteroidwarning/west + dir = WEST + +/turf/open/floor/barber + icon_state = "barber" + +/turf/open/floor/barber/west + dir = WEST + +/turf/open/floor/carpet10_8 + icon_state = "carpet10-8" + +/turf/open/floor/carpet10_8/west + dir = WEST + +/turf/open/floor/carpet11_12 + icon_state = "carpet11-12" + +/turf/open/floor/carpet11_12/west + dir = WEST + +/turf/open/floor/carpet13_5 + icon_state = "carpet13-5" + +/turf/open/floor/carpet13_5/west + dir = WEST + +/turf/open/floor/carpet14_10 + icon_state = "carpet14-10" + +/turf/open/floor/carpet14_10/west + dir = WEST + +/turf/open/floor/carpet15_15 + icon_state = "carpet15-15" + +/turf/open/floor/carpet15_15/west + dir = WEST + +/turf/open/floor/carpet5_1 + icon_state = "carpet5-1" + +/turf/open/floor/carpet5_1/west + dir = WEST + +/turf/open/floor/carpet6_2 + icon_state = "carpet6-2" + +/turf/open/floor/carpet6_2/west + dir = WEST + +/turf/open/floor/carpet7_3 + icon_state = "carpet7-3" + +/turf/open/floor/carpet7_3/west + dir = WEST + +/turf/open/floor/carpet9_4 + icon_state = "carpet9-4" + +/turf/open/floor/carpet9_4/west + dir = WEST + +/turf/open/floor/chapel/west + dir = WEST + +/turf/open/floor/damaged2 + icon_state = "damaged2" + +/turf/open/floor/damaged2/west + dir = WEST + +/turf/open/floor/damaged3 + icon_state = "damaged3" + +/turf/open/floor/damaged3/west + dir = WEST + +/turf/open/floor/damaged4 + icon_state = "damaged4" + +/turf/open/floor/damaged4/west + dir = WEST + +/turf/open/floor/damaged5 + icon_state = "damaged5" + +/turf/open/floor/damaged5/west + dir = WEST + +/turf/open/floor/darkblue2/west + dir = WEST + +/turf/open/floor/darkbrown2/west + dir = WEST + +/turf/open/floor/darkbrowncorners2/west + dir = WEST + +/turf/open/floor/darkgreen2/west + dir = WEST + +/turf/open/floor/darkgreencorners2/west + dir = WEST + +/turf/open/floor/darkpurple2/west + dir = WEST + +/turf/open/floor/darkpurplecorners2/west + dir = WEST + +/turf/open/floor/darkred2/west + dir = WEST + +/turf/open/floor/darkredcorners2/west + dir = WEST + +/turf/open/floor/darkyellow2/west + dir = WEST + +/turf/open/floor/darkyellowcorners2/west + dir = WEST + +/turf/open/floor/loadingarea/west + dir = WEST + +/turf/open/floor/purple/west + dir = WEST + +/turf/open/floor/purplecorner + icon_state = "purplecorner" + +/turf/open/floor/purplecorner/west + dir = WEST + +/turf/open/floor/red/west + dir = WEST + +/turf/open/floor/redcorner/west + dir = WEST + +/turf/open/floor/vault2/west + dir = WEST + +/turf/open/floor/warning/west + dir = WEST + +/turf/open/floor/warningcorner/west + dir = WEST + +/turf/open/floor/warnwhite/west + dir = WEST + +/turf/open/floor/whiteblue/west + dir = WEST + +/turf/open/floor/whitebluecorner/west + dir = WEST + +/turf/open/floor/whitegreen/west + dir = WEST + +/turf/open/floor/whitegreencorner/west + dir = WEST + +/turf/open/floor/whitepurple/west + dir = WEST + +/turf/open/floor/whitepurplecorner/west + dir = WEST + +/turf/open/floor/whitered/west + dir = WEST + +/turf/open/floor/whiteredcorner/west + dir = WEST + +/turf/open/floor/whiteyellow/west + dir = WEST + +/turf/open/floor/whiteyellowcorner/west + dir = WEST + +/turf/open/floor/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/brown + icon_state = "brown" + +/turf/open/floor/brown/northwest + dir = NORTHWEST + +/turf/open/floor/darkblue2/northwest + dir = NORTHWEST + +/turf/open/floor/darkbrown2/northwest + dir = NORTHWEST + +/turf/open/floor/darkgreen2/northwest + dir = NORTHWEST + +/turf/open/floor/darkpurple2/northwest + dir = NORTHWEST + +/turf/open/floor/darkred2/northwest + dir = NORTHWEST + +/turf/open/floor/darkyellow2/northwest + dir = NORTHWEST + +/turf/open/floor/green/northwest + dir = NORTHWEST + +/turf/open/floor/podhatch/northwest + dir = NORTHWEST + +/turf/open/floor/purple/northwest + dir = NORTHWEST + +/turf/open/floor/red/northwest + dir = NORTHWEST + +/turf/open/floor/redfull + icon_state = "redfull" + +/turf/open/floor/redfull/northwest + dir = NORTHWEST + +/turf/open/floor/warning/northwest + dir = NORTHWEST + +/turf/open/floor/warnwhite/northwest + dir = NORTHWEST + +/turf/open/floor/whiteblue/northwest + dir = NORTHWEST + +/turf/open/floor/whitegreen/northwest + dir = NORTHWEST + +/turf/open/floor/whitegreen_v/northwest + dir = NORTHWEST + +/turf/open/floor/whitepurple/northwest + dir = NORTHWEST + +/turf/open/floor/whitered/northwest + dir = NORTHWEST + +/turf/open/floor/whiteyellow/northwest + dir = NORTHWEST + +/turf/open/floor/asteroid + icon_state = "asteroid" + +/turf/open/floor/asteroidfloor/north + dir = NORTH + +/turf/open/floor/asteroidplating + icon_state = "asteroidplating" + +/turf/open/floor/asteroidwarning/southwest + dir = SOUTHWEST + +/turf/open/floor/asteroidwarning/north + dir = NORTH + +/turf/open/floor/asteroidwarning/east + dir = EAST + +/turf/open/floor/asteroidwarning/northeast + dir = NORTHEAST + +/turf/open/floor/asteroidwarning/southeast + dir = SOUTHEAST + +/turf/open/floor/asteroidwarning/west + dir = WEST + +/turf/open/floor/asteroidwarning/northwest + dir = NORTHWEST + +/turf/open/floor/bar + icon_state = "bar" + +/turf/open/floor/bcircuit + icon_state = "bcircuit" + +/turf/open/floor/bluecorner + icon_state = "bluecorner" + +/turf/open/floor/blueyellowfull + icon_state = "blueyellowfull" + +/turf/open/floor/cafeteria + icon_state = "cafeteria" + +/turf/open/floor/cmo + icon_state = "cmo" + +/turf/open/floor/cult + icon_state = "cult" + +/turf/open/floor/dark + icon_state = "dark" + +/turf/open/floor/dark2 + icon_state = "dark2" + +/turf/open/floor/darkbluecorners2 + icon_state = "darkbluecorners2" + +/turf/open/floor/darkish + icon_state = "darkish" + +/turf/open/floor/delivery + icon_state = "delivery" + +/turf/open/floor/floor4 + icon_state = "floor4" + +/turf/open/floor/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/freezerfloor + icon_state = "freezerfloor" + +/turf/open/floor/grimy + icon_state = "grimy" + +/turf/open/floor/hydrofloor + icon_state = "hydrofloor" + +/turf/open/floor/neutral + icon_state = "neutral" + +/turf/open/floor/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/platebot + icon_state = "platebot" + +/turf/open/floor/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/platingdmg3 + icon_state = "platingdmg3" + +/turf/open/floor/redyellowfull + icon_state = "redyellowfull" + +/turf/open/floor/wall_thermite + icon_state = "wall_thermite" + +/turf/open/floor/warnwhite/north + dir = NORTH + +/turf/open/floor/white + icon_state = "white" + +/turf/open/floor/whitepurplefull + icon_state = "whitepurplefull" + +/turf/open/floor/whiteredfull + icon_state = "whiteredfull" + +/turf/open/floor/wood + icon_state = "wood" + +/turf/open/floor/yellowfull + icon_state = "yellowfull" diff --git a/code/game/turfs/floors/desert.dm b/code/game/turfs/floors/desert.dm index 46a481e3bc..6aa2e9f022 100644 --- a/code/game/turfs/floors/desert.dm +++ b/code/game/turfs/floors/desert.dm @@ -27,6 +27,12 @@ /turf/open/desert/dirt/is_weedable() return FULLY_WEEDABLE +/turf/open/desert/dirt/desert_transition_edge1 + icon_state = "desert_transition_edge1" + +/turf/open/desert/dirt/desert_transition_edge1/southwest + dir = SOUTHWEST + /turf/open/desert/dirt/dirt_transition_edge1 name = "desert" icon_state = "dirt4_transition_edge1" @@ -40,6 +46,42 @@ name = "desert" icon_state = "dirt4_transition_corner2" +/turf/open/desert/dirt/desert_transition_corner1 + icon_state = "desert_transition_corner1" + +/turf/open/desert/dirt/desert_transition_corner1/north + dir = NORTH + +/turf/open/desert/dirt/desert_transition_edge1/north + dir = NORTH + +/turf/open/desert/dirt/desert_transition_corner1/east + dir = EAST + +/turf/open/desert/dirt/desert_transition_edge1/east + dir = EAST + +/turf/open/desert/dirt/desert_transition_edge1/northeast + dir = NORTHEAST + +/turf/open/desert/dirt/desert_transition_edge1/southeast + dir = SOUTHEAST + +/turf/open/desert/dirt/desert_transition_corner1/west + dir = WEST + +/turf/open/desert/dirt/desert_transition_edge1/west + dir = WEST + +/turf/open/desert/dirt/desert_transition_edge1/northwest + dir = NORTHWEST + +/turf/open/desert/dirt/dirt2 + icon_state = "dirt2" + +/turf/open/desert/dirt/rock1 + icon_state = "rock1" + //desert riverbed /turf/open/desert/riverbed/dirt1 name = "riverbed" @@ -86,9 +128,40 @@ /turf/open/desert/rock/deep name = "cave" icon_state = "rock2" + +/turf/open/desert/rock/deep/rock3 + icon_state = "rock3" + +/turf/open/desert/rock/deep/rock4 + icon_state = "rock4" + +/turf/open/desert/rock/edge1/east + dir = EAST + /turf/open/desert/rock/deep/transition icon_state = "rock2_transition" +/turf/open/desert/rock/deep/transition/southwest + dir = SOUTHWEST + +/turf/open/desert/rock/deep/transition/north + dir = NORTH + +/turf/open/desert/rock/deep/transition/east + dir = EAST + +/turf/open/desert/rock/deep/transition/northeast + dir = NORTHEAST + +/turf/open/desert/rock/deep/transition/southeast + dir = SOUTHEAST + +/turf/open/desert/rock/deep/transition/west + dir = WEST + +/turf/open/desert/rock/deep/transition/northwest + dir = NORTHWEST + //Desert grass /turf/open/desert/desertgrass name = "desert" @@ -114,7 +187,7 @@ set_light(2) icon = 'icons/turf/floors/desert_water_toxic.dmi' if(0) - set_light(1) + set_light(0) icon = 'icons/turf/floors/desert_water.dmi' if(-1) set_light(1) @@ -126,6 +199,40 @@ /turf/open/desert/desert_shore/desert_shore1 name = "shore" icon_state = "shore1" + +/turf/open/desert/desert_shore/desert_shore1/north + dir = NORTH + +/turf/open/desert/desert_shore/desert_shore1/east + dir = EAST + +/turf/open/desert/desert_shore/desert_shore1/west + dir = WEST + +/turf/open/desert/desert_shore/shore_corner1/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_corner1/west + dir = WEST + +/turf/open/desert/desert_shore/shore_corner2/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_corner2/east + dir = EAST + +/turf/open/desert/desert_shore/shore_corner2/west + dir = WEST + +/turf/open/desert/desert_shore/shore_edge1/north + dir = NORTH + +/turf/open/desert/desert_shore/shore_edge1/east + dir = EAST + +/turf/open/desert/desert_shore/shore_edge1/west + dir = WEST + /* /turf/open/desert/desert_shore/desert_shore2 name = "shore" @@ -199,12 +306,21 @@ set_light(2) icon = 'icons/turf/floors/desert_water_toxic.dmi' if(0) - set_light(1) + set_light(0) icon = 'icons/turf/floors/desert_water.dmi' if(-1) set_light(1) icon = 'icons/turf/floors/desert_water_transition.dmi' +/turf/open/desert/cave/cave_shore/east + dir = EAST + +/turf/open/desert/cave/cave_shore/northeast + dir = NORTHEAST + +/turf/open/desert/cave/cave_shore/southeast + dir = SOUTHEAST + //Desert River Toxic /turf/open/gm/river/desert name = "water" @@ -224,7 +340,7 @@ set_light(2) icon = 'icons/turf/floors/desert_water_toxic.dmi' if(0) - set_light(1) + set_light(0) icon = 'icons/turf/floors/desert_water.dmi' if(-1) set_light(1) @@ -238,37 +354,91 @@ icon_overlay = "_shallow" /turf/open/gm/river/desert/shallow/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow/toxic + icon = 'icons/turf/floors/desert_water_toxic.dmi' + +/turf/open/gm/river/desert/shallow/pool + name = "pool" + //shallow water transition to deep /turf/open/gm/river/desert/shallow_edge icon_state = "shallow_edge" icon_overlay = "shallow_edge_overlay" +/turf/open/gm/river/desert/shallow_edge/southwest + dir = SOUTHWEST + +/turf/open/gm/river/desert/shallow_edge/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_edge/east + dir = EAST + +/turf/open/gm/river/desert/shallow_edge/northeast + dir = NORTHEAST + +/turf/open/gm/river/desert/shallow_edge/southeast + dir = SOUTHEAST + +/turf/open/gm/river/desert/shallow_edge/west + dir = WEST + +/turf/open/gm/river/desert/shallow_edge/northwest + dir = NORTHWEST + /turf/open/gm/river/desert/shallow_edge/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow_edge/covered/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_edge/covered/east + dir = EAST + +/turf/open/gm/river/desert/shallow_edge/covered/northeast + dir = NORTHEAST + +/turf/open/gm/river/desert/shallow_edge/covered/west + dir = WEST + //shallow water transition to deep corner /turf/open/gm/river/desert/shallow_corner icon_state = "shallow_c" icon_overlay = "shallow_c_overlay" /turf/open/gm/river/desert/shallow_corner/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/shallow_corner/north + dir = NORTH + +/turf/open/gm/river/desert/shallow_corner/east + dir = EAST + +/turf/open/gm/river/desert/shallow_corner/west + dir = WEST + //deep water /turf/open/gm/river/desert/deep icon_state = "deep" icon_overlay = "_deep" +/turf/open/gm/river/desert/deep/no_slowdown + base_river_slowdown = 0 + /turf/open/gm/river/desert/deep/covered - covered = 1 + covered = TRUE icon = 'icons/turf/floors/desert_water_covered.dmi' +/turf/open/gm/river/desert/deep/toxic + icon = 'icons/turf/floors/desert_water_toxic.dmi' + //shallow water channel plain /turf/open/gm/river/desert/channel icon_state = "channel" @@ -284,22 +454,181 @@ /turf/open/desert/excavation icon = 'icons/turf/floors/desert_excavation.dmi' + //Engineer Ship /turf/open/desert/excavation/component1 icon_state = "component1" + +/turf/open/desert/excavation/component1/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component1/north + dir = NORTH + +/turf/open/desert/excavation/component1/east + dir = EAST + +/turf/open/desert/excavation/component1/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component1/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component1/west + dir = WEST + /turf/open/desert/excavation/component2 icon_state = "component2" + +/turf/open/desert/excavation/component2/north + dir = NORTH + +/turf/open/desert/excavation/component2/east + dir = EAST + +/turf/open/desert/excavation/component2/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component2/west + dir = WEST + /turf/open/desert/excavation/component3 icon_state = "component3" + +/turf/open/desert/excavation/component3/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component3/north + dir = NORTH + +/turf/open/desert/excavation/component3/east + dir = EAST + +/turf/open/desert/excavation/component3/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component3/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component3/west + dir = WEST + /turf/open/desert/excavation/component4 icon_state = "component4" + +/turf/open/desert/excavation/component4/north + dir = NORTH + +/turf/open/desert/excavation/component4/east + dir = EAST + +/turf/open/desert/excavation/component4/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component4/west + dir = WEST + /turf/open/desert/excavation/component5 icon_state = "component5" + +/turf/open/desert/excavation/component5/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component5/north + dir = NORTH + +/turf/open/desert/excavation/component5/east + dir = EAST + +/turf/open/desert/excavation/component5/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component5/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component5/west + dir = WEST + /turf/open/desert/excavation/component6 icon_state = "component6" + +/turf/open/desert/excavation/component6/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component6/north + dir = NORTH + +/turf/open/desert/excavation/component6/east + dir = EAST + +/turf/open/desert/excavation/component6/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component6/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component6/west + dir = WEST + /turf/open/desert/excavation/component7 icon_state = "component7" + +/turf/open/desert/excavation/component7/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component7/north + dir = NORTH + +/turf/open/desert/excavation/component7/east + dir = EAST + +/turf/open/desert/excavation/component7/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component7/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component7/west + dir = WEST + /turf/open/desert/excavation/component8 icon_state = "component8" + +/turf/open/desert/excavation/component8/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component8/north + dir = NORTH + +/turf/open/desert/excavation/component8/east + dir = EAST + +/turf/open/desert/excavation/component8/northeast + dir = NORTHEAST + +/turf/open/desert/excavation/component8/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component8/west + dir = WEST + +/turf/open/desert/excavation/component8/northwest + dir = NORTHWEST + /turf/open/desert/excavation/component9 icon_state = "component9" + +/turf/open/desert/excavation/component9/southwest + dir = SOUTHWEST + +/turf/open/desert/excavation/component9/north + dir = NORTH + +/turf/open/desert/excavation/component9/east + dir = EAST + +/turf/open/desert/excavation/component9/southeast + dir = SOUTHEAST + +/turf/open/desert/excavation/component9/west + dir = WEST diff --git a/code/game/turfs/kutjevo.dm b/code/game/turfs/kutjevo.dm index 9d2b8bfdb5..82211e5a7c 100644 --- a/code/game/turfs/kutjevo.dm +++ b/code/game/turfs/kutjevo.dm @@ -3,6 +3,15 @@ /turf/open/floor/plating/kutjevo icon = 'icons/turf/floors/kutjevo/kutjevo_floor.dmi' +/turf/open/floor/plating/kutjevo/panelscorched + icon_state = "panelscorched" + +/turf/open/floor/plating/kutjevo/platingdmg1 + icon_state = "platingdmg1" + +/turf/open/floor/plating/kutjevo/platingdmg3 + icon_state = "platingdmg3" + /turf/open/floor/kutjevo //Instance based on icon_states icon = 'icons/turf/floors/kutjevo/kutjevo_floor.dmi' icon_state = "floor" @@ -17,6 +26,21 @@ /turf/open/floor/kutjevo/multi_tiles icon_state = "multi_tiles" +/turf/open/floor/kutjevo/multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/multi_tiles/north + dir = NORTH + +/turf/open/floor/kutjevo/multi_tiles/east + dir = EAST + +/turf/open/floor/kutjevo/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/multi_tiles/west + dir = WEST + /turf/open/floor/kutjevo/fake_wood icon_state = "fake_wood" @@ -31,20 +55,92 @@ /turf/open/floor/kutjevo/tan/multi_tiles icon_state = "floor_tan_multi" +/turf/open/floor/kutjevo/tan/multi_tiles/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/multi_tiles/east + dir = EAST + +/turf/open/floor/kutjevo/tan/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/multi_tiles/west + dir = WEST + //TAN TRANSITION PIECES /turf/open/floor/kutjevo/tan/grey_edge icon_state = "floor_tan_grey3" +/turf/open/floor/kutjevo/tan/grey_edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/tan/grey_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/grey_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/grey_edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/tan/grey_edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/grey_edge/west + dir = WEST + +/turf/open/floor/kutjevo/tan/grey_edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/tan/grey_inner_edge icon_state = "floor_tan_grey4" +/turf/open/floor/kutjevo/tan/grey_inner_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/grey_inner_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/grey_inner_edge/west + dir = WEST + /turf/open/floor/kutjevo/tan/alt_edge icon_state = "floor_tan_alt3" +/turf/open/floor/kutjevo/tan/alt_edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/tan/alt_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/alt_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/alt_edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/tan/alt_edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/tan/alt_edge/west + dir = WEST + +/turf/open/floor/kutjevo/tan/alt_edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/tan/alt_inner_edge icon_state = "floor_tan_alt4" +/turf/open/floor/kutjevo/tan/alt_inner_edge/north + dir = NORTH + +/turf/open/floor/kutjevo/tan/alt_inner_edge/east + dir = EAST + +/turf/open/floor/kutjevo/tan/alt_inner_edge/west + dir = WEST + //GREY SECONDARIES TO LIGHT TAN /turf/open/floor/kutjevo/grey @@ -66,9 +162,39 @@ /turf/open/floor/kutjevo/colors/orange/edge icon_state = "orange3" +/turf/open/floor/kutjevo/colors/orange/edge/southwest + dir = SOUTHWEST + +/turf/open/floor/kutjevo/colors/orange/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/orange/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/orange/edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/colors/orange/edge/southeast + dir = SOUTHEAST + +/turf/open/floor/kutjevo/colors/orange/edge/west + dir = WEST + +/turf/open/floor/kutjevo/colors/orange/edge/northwest + dir = NORTHWEST + /turf/open/floor/kutjevo/colors/orange/inner_corner icon_state = "orange4" +/turf/open/floor/kutjevo/colors/orange/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/orange/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/orange/inner_corner/west + dir = WEST + //BLUE// /turf/open/floor/kutjevo/colors/blue @@ -80,9 +206,33 @@ /turf/open/floor/kutjevo/colors/blue/edge icon_state = "blue3" +/turf/open/floor/kutjevo/colors/blue/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/blue/edge/west + dir = WEST + +/turf/open/floor/kutjevo/colors/cyan/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/cyan/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/cyan/edge/west + dir = WEST + /turf/open/floor/kutjevo/colors/blue/inner_corner icon_state = "blue4" +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west + dir = WEST + //PURPLE// /turf/open/floor/kutjevo/colors/purple @@ -94,9 +244,30 @@ /turf/open/floor/kutjevo/colors/purple/edge icon_state = "purp3" +/turf/open/floor/kutjevo/colors/purple/edge/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/purple/edge/east + dir = EAST + +/turf/open/floor/kutjevo/colors/purple/edge/northeast + dir = NORTHEAST + +/turf/open/floor/kutjevo/colors/purple/edge/west + dir = WEST + /turf/open/floor/kutjevo/colors/purple/inner_corner icon_state = "purp4" +/turf/open/floor/kutjevo/colors/purple/inner_corner/north + dir = NORTH + +/turf/open/floor/kutjevo/colors/purple/inner_corner/east + dir = EAST + +/turf/open/floor/kutjevo/colors/purple/inner_corner/west + dir = WEST + //GREEN// /turf/open/floor/kutjevo/colors/green diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index a86ed37f06..a8b3d50b3c 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -24,7 +24,7 @@ add_cleanable_overlays() var/list/turf/open/auto_turf/auto_turf_dirs = list() - for(var/direction in alldirs) + for(var/direction in GLOB.alldirs) var/turf/open/auto_turf/T = get_step(src, direction) if(!istype(T)) continue @@ -36,7 +36,7 @@ var/list/handled_dirs = list() var/list/unhandled_dirs = list() - for(var/direction in diagonals) + for(var/direction in GLOB.diagonals) var/x_dir = direction & (direction-1) var/y_dir = direction - x_dir @@ -90,11 +90,15 @@ if(!T.icon_state_before_scorching) T.icon_state_before_scorching = T.icon_state var/direction_from_neighbor_towards_src = get_dir(T, src) - var/icon/culling_mask = icon(T.icon, "[T.scorchable]_mask[turf_edgeinfo_cache[T.icon_state_before_scorching][dir2indexnum(T.dir)][dir2indexnum(direction_from_neighbor_towards_src)]]", direction_from_neighbor_towards_src) + var/icon/culling_mask = icon(T.icon, "[T.scorchable]_mask[GLOB.turf_edgeinfo_cache[T.icon_state_before_scorching][dir2indexnum(T.dir)][dir2indexnum(direction_from_neighbor_towards_src)]]", direction_from_neighbor_towards_src) edge_overlay.Blend(culling_mask, ICON_OVERLAY) edge_overlay.SwapColor(rgb(255, 0, 255, 255), rgb(0, 0, 0, 0)) overlays += edge_overlay + var/area/my_area = loc + if(my_area.lighting_effect) + overlays += my_area.lighting_effect + /turf/open/proc/scorch(heat_level) // All scorched icons should be in the dmi that their unscorched bases are // "name_scorched#" where # is the scorchedness level 0 - 1 - 2 - 3 @@ -115,10 +119,10 @@ scorchedness = 1 if(2 to 30) - scorchedness = Clamp(scorchedness + 1, 0, 3) //increase scorch by 1 (not that hot of a fire) + scorchedness = clamp(scorchedness + 1, 0, 3) //increase scorch by 1 (not that hot of a fire) if(31 to 60) - scorchedness = Clamp(scorchedness + 2, 0, 3) //increase scorch by 2 (hotter fire) + scorchedness = clamp(scorchedness + 2, 0, 3) //increase scorch by 2 (hotter fire) if(61 to INFINITY) scorchedness = 3 //max out the scorchedness (hottest fire) @@ -171,6 +175,10 @@ icon = 'icons/turf/floors/floors.dmi' icon_state = "grass1" +/turf/open/organic/grass/astroturf + desc = "It'll get in your shoes no matter what you do." + name = "astroturf" + // Mars grounds /turf/open/mars @@ -187,7 +195,6 @@ icon_state = "mars_cave_1" is_groundmap_turf = TRUE - /turf/open/mars_cave/Initialize(mapload, ...) . = ..() @@ -196,13 +203,87 @@ if (r == 0 && icon_state == "mars_cave_2") icon_state = "mars_cave_3" +/turf/open/mars_cave/mars_cave_10 + icon_state = "mars_cave_10" + +/turf/open/mars_cave/mars_cave_11 + icon_state = "mars_cave_11" + +/turf/open/mars_cave/mars_cave_12 + icon_state = "mars_cave_12" + +/turf/open/mars_cave/mars_cave_13 + icon_state = "mars_cave_13" + +/turf/open/mars_cave/mars_cave_14 + icon_state = "mars_cave_14" + +/turf/open/mars_cave/mars_cave_15 + icon_state = "mars_cave_15" + +/turf/open/mars_cave/mars_cave_16 + icon_state = "mars_cave_16" + +/turf/open/mars_cave/mars_cave_17 + icon_state = "mars_cave_17" + +/turf/open/mars_cave/mars_cave_18 + icon_state = "mars_cave_18" + +/turf/open/mars_cave/mars_cave_19 + icon_state = "mars_cave_19" + +/turf/open/mars_cave/mars_cave_2 + icon_state = "mars_cave_2" + +/turf/open/mars_cave/mars_cave_20 + icon_state = "mars_cave_20" + +/turf/open/mars_cave/mars_cave_22 + icon_state = "mars_cave_22" + +/turf/open/mars_cave/mars_cave_23 + icon_state = "mars_cave_23" + +/turf/open/mars_cave/mars_cave_3 + icon_state = "mars_cave_3" + +/turf/open/mars_cave/mars_cave_4 + icon_state = "mars_cave_4" + +/turf/open/mars_cave/mars_cave_5 + icon_state = "mars_cave_5" + +/turf/open/mars_cave/mars_cave_6 + icon_state = "mars_cave_6" + +/turf/open/mars_cave/mars_cave_7 + icon_state = "mars_cave_7" + +/turf/open/mars_cave/mars_cave_8 + icon_state = "mars_cave_8" + +/turf/open/mars_cave/mars_cave_9 + icon_state = "mars_cave_9" + +/turf/open/mars_cave/mars_dirt_4 + icon_state = "mars_dirt_4" + +/turf/open/mars_cave/mars_dirt_5 + icon_state = "mars_dirt_5" + +/turf/open/mars_cave/mars_dirt_6 + icon_state = "mars_dirt_6" + +/turf/open/mars_cave/mars_dirt_7 + icon_state = "mars_dirt_7" + /turf/open/mars_dirt name = "dirt" icon = 'icons/turf/floors/bigred.dmi' icon_state = "mars_dirt_1" minimap_color = MINIMAP_DIRT - /turf/open/mars_dirt/Initialize(mapload, ...) . = ..() var/r = rand(0, 32) @@ -222,12 +303,58 @@ if (r == 0 && icon_state == "mars_dirt_4") icon_state = "mars_dirt_7" +/turf/open/mars_dirt/mars_cave_10 + icon_state = "mars_cave_10" +/turf/open/mars_dirt/mars_cave_11 + icon_state = "mars_cave_11" +/turf/open/mars_dirt/mars_cave_3 + icon_state = "mars_cave_3" +/turf/open/mars_dirt/mars_cave_6 + icon_state = "mars_cave_6" -// Beach +/turf/open/mars_dirt/mars_cave_7 + icon_state = "mars_cave_7" + +/turf/open/mars_dirt/mars_cave_8 + icon_state = "mars_cave_8" + +/turf/open/mars/mars_cave_10 + icon_state = "mars_cave_10" + +/turf/open/mars/mars_dirt_10 + icon_state = "mars_dirt_10" + +/turf/open/mars/mars_dirt_11 + icon_state = "mars_dirt_11" + +/turf/open/mars/mars_dirt_12 + icon_state = "mars_dirt_12" + +/turf/open/mars/mars_dirt_13 + icon_state = "mars_dirt_13" + +/turf/open/mars/mars_dirt_14 + icon_state = "mars_dirt_14" + +/turf/open/mars/mars_dirt_3 + icon_state = "mars_dirt_3" + +/turf/open/mars/mars_dirt_5 + icon_state = "mars_dirt_5" +/turf/open/mars/mars_dirt_6 + icon_state = "mars_dirt_6" + +/turf/open/mars/mars_dirt_8 + icon_state = "mars_dirt_8" + +/turf/open/mars/mars_dirt_9 + icon_state = "mars_dirt_9" + +// Beach /turf/open/beach name = "Beach" @@ -292,7 +419,7 @@ if(istype(I, /obj/item/lightstick)) var/obj/item/lightstick/L = I if(locate(/obj/item/lightstick) in get_turf(src)) - to_chat(user, "There's already a [L] at this position!") + to_chat(user, "There's already \a [L] at this position!") return to_chat(user, "Now planting \the [L].") @@ -327,6 +454,21 @@ if(rand(0,15) == 0) icon_state = "desert[pick("0","1","2","3")]" +/turf/open/gm/dirt/desert0 + icon_state = "desert0" + +/turf/open/gm/dirt/desert1 + icon_state = "desert1" + +/turf/open/gm/dirt/desert2 + icon_state = "desert2" + +/turf/open/gm/dirt/desert3 + icon_state = "desert3" + +/turf/open/gm/dirt/desert_dug + icon_state = "desert_dug" + /turf/open/gm/grass name = "grass" icon_state = "grass1" @@ -370,16 +512,16 @@ /turf/open/gm/grass/Initialize(mapload, ...) . = ..() - if(!locate(icon_state) in turf_edgeinfo_cache) + if(!locate(icon_state) in GLOB.turf_edgeinfo_cache) switch(icon_state) if("grass1") - turf_edgeinfo_cache["grass1"] = GLOB.edgeinfo_full + GLOB.turf_edgeinfo_cache["grass1"] = GLOB.edgeinfo_full if("grass2") - turf_edgeinfo_cache["grass2"] = GLOB.edgeinfo_full + GLOB.turf_edgeinfo_cache["grass2"] = GLOB.edgeinfo_full if("grassbeach") - turf_edgeinfo_cache["grassbeach"] = GLOB.edgeinfo_edge + GLOB.turf_edgeinfo_cache["grassbeach"] = GLOB.edgeinfo_edge if("gbcorner") - turf_edgeinfo_cache["gbcorner"] = GLOB.edgeinfo_corner + GLOB.turf_edgeinfo_cache["gbcorner"] = GLOB.edgeinfo_corner /turf/open/gm/dirt2 name = "dirt" @@ -432,23 +574,56 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west dir = 8 +/turf/open/gm/dirtgrassborder/desert + icon_state = "desert" + +/turf/open/gm/dirtgrassborder/desert0 + icon_state = "desert0" + +/turf/open/gm/dirtgrassborder/desert1 + icon_state = "desert1" + +/turf/open/gm/dirtgrassborder/desert2 + icon_state = "desert2" + +/turf/open/gm/dirtgrassborder/desert3 + icon_state = "desert3" + +/turf/open/gm/dirtgrassborder/desert_dug + icon_state = "desert_dug" + /turf/open/gm/dirtgrassborder/Initialize(mapload, ...) . = ..() - if(!locate(icon_state) in turf_edgeinfo_cache) + if(!locate(icon_state) in GLOB.turf_edgeinfo_cache) switch(icon_state) if("grassdirt_edge") - turf_edgeinfo_cache["grassdirt_edge"] = GLOB.edgeinfo_edge + GLOB.turf_edgeinfo_cache["grassdirt_edge"] = GLOB.edgeinfo_edge if("grassdirt_corner") - turf_edgeinfo_cache["grassdirt_corner"] = GLOB.edgeinfo_corner + GLOB.turf_edgeinfo_cache["grassdirt_corner"] = GLOB.edgeinfo_corner if("grassdirt_corner2") - turf_edgeinfo_cache["grassdirt_corner2"] = GLOB.edgeinfo_corner2 + GLOB.turf_edgeinfo_cache["grassdirt_corner2"] = GLOB.edgeinfo_corner2 /turf/open/gm/dirtgrassborder2 name = "grass" icon_state = "grassdirt2_edge" baseturfs = /turf/open/gm/dirtgrassborder2 +/turf/open/gm/dirtgrassborder2/north + dir = NORTH + +/turf/open/gm/dirtgrassborder2/east + dir = EAST + +/turf/open/gm/dirtgrassborder2/west + dir = WEST + +/turf/open/gm/dirtgrassborder2/wall2 + icon_state = "wall2" + +/turf/open/gm/dirtgrassborder2/wall3 + icon_state = "wall3" + /turf/open/gm/river name = "river" icon_state = "seashallow" @@ -568,11 +743,35 @@ ..() if(istype(M)) M.apply_damage(55,TOX) +/turf/open/gm/river/darkred_pool + color = "#990000" + name = "pool" + +/turf/open/gm/river/darkred + color = "#990000" + +/turf/open/gm/river/red_pool + color = "#995555" + name = "pool" + +/turf/open/gm/river/red + color = "#995555" + +/turf/open/gm/river/pool + name = "pool" + +/turf/open/gm/river/shallow_ocean_shallow_ocean + name = "shallow ocean" + default_name = "shallow ocean" /turf/open/gm/river/ocean color = "#dae3e2" base_river_slowdown = 4 // VERY. SLOW. +/turf/open/gm/river/ocean/deep_ocean + name = "deep ocean" + default_name = "deep ocean" + /turf/open/gm/river/ocean/Entered(atom/movable/AM) . = ..() if(prob(20)) // fuck you @@ -613,6 +812,9 @@ /turf/open/gm/coast/east dir = 8 +/turf/open/gm/coast/south_east + dir = 9 + /turf/open/gm/coast/beachcorner icon_state = "beachcorner" @@ -712,13 +914,95 @@ icon_state = "sunbleached_asphalt" baseturfs = /turf/open/asphalt +/turf/open/asphalt/tile + icon_state = "tile" + /turf/open/asphalt/cement name = "concrete" icon_state = "cement5" + +/turf/open/asphalt/cement/cement1 + icon_state = "cement1" + +/turf/open/asphalt/cement/cement1/north + dir = NORTH + +/turf/open/asphalt/cement/cement12 + icon_state = "cement12" + +/turf/open/asphalt/cement/cement13 + icon_state = "cement13" + +/turf/open/asphalt/cement/cement14 + icon_state = "cement14" + +/turf/open/asphalt/cement/cement15 + icon_state = "cement15" + +/turf/open/asphalt/cement/cement2 + icon_state = "cement2" + +/turf/open/asphalt/cement/cement3 + icon_state = "cement3" + +/turf/open/asphalt/cement/cement4 + icon_state = "cement4" + +/turf/open/asphalt/cement/cement7 + icon_state = "cement7" + +/turf/open/asphalt/cement/cement9 + icon_state = "cement9" + /turf/open/asphalt/cement_sunbleached name = "concrete" icon_state = "cement_sunbleached5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1 + icon_state = "cement_sunbleached1" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12 + icon_state = "cement_sunbleached12" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13 + icon_state = "cement_sunbleached13" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14 + icon_state = "cement_sunbleached14" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15 + icon_state = "cement_sunbleached15" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16 + icon_state = "cement_sunbleached16" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17 + icon_state = "cement_sunbleached17" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18 + icon_state = "cement_sunbleached18" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19 + icon_state = "cement_sunbleached19" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2 + icon_state = "cement_sunbleached2" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20 + icon_state = "cement_sunbleached20" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3 + icon_state = "cement_sunbleached3" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4 + icon_state = "cement_sunbleached4" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6 + icon_state = "cement_sunbleached6" + +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9 + icon_state = "cement_sunbleached9" + // Jungle turfs (Whiksey Outpost) @@ -787,7 +1071,7 @@ if(istype(I, /obj/item/lightstick)) var/obj/item/lightstick/L = I if(locate(/obj/item/lightstick) in get_turf(src)) - to_chat(user, "There's already a [L] at this position!") + to_chat(user, "There's already \a [L] at this position!") return to_chat(user, "Now planting \the [L].") @@ -826,15 +1110,17 @@ qdel(B) /turf/open/jungle/impenetrable - bushes_spawn = 0 + bushes_spawn = FALSE icon_state = "grass_impenetrable" icon_spawn_state = "grass1" /turf/open/jungle/impenetrable/Initialize(mapload, ...) . = ..() - var/obj/structure/flora/jungle/thickbush/B = new(src) - B.indestructable = 1 + var/obj/structure/flora/jungle/thickbush/bush = new(src) + bush.indestructable = TRUE +/turf/open/jungle/impenetrable/grass_clear + icon_state = "grass_clear" /turf/open/jungle/water bushes_spawn = 0 @@ -908,10 +1194,111 @@ icon_state = "floor" icon = 'icons/turf/shuttle.dmi' +/turf/open/shuttle/can_surgery + allow_construction = TRUE + supports_surgery = TRUE + +/turf/open/shuttle/can_surgery/blue + name = "floor" + icon_state = "floor" + icon = 'icons/turf/shuttle.dmi' + +/turf/open/shuttle/bright_red + icon_state = "floor4" + +/turf/open/shuttle/red + icon_state = "floor6" + +/turf/open/shuttle/black + icon_state = "floor7" + +/turf/open/shuttle/can_surgery/red + icon_state = "floor6" + +/turf/open/shuttle/can_surgery/black + icon_state = "floor7" + /turf/open/shuttle/dropship name = "floor" icon_state = "rasputin1" +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right + icon_state = "floor8" + +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down + icon_state = "rasputin3" + +/turf/open/shuttle/dropship/light_grey_bottom_left + icon_state = "rasputin4" + +/turf/open/shuttle/dropship/light_grey_left_to_right + icon_state = "rasputin5" + +/turf/open/shuttle/dropship/light_grey_top_left + icon_state = "rasputin6" + +/turf/open/shuttle/dropship/light_grey_top_right + icon_state = "rasputin7" + +/turf/open/shuttle/dropship/light_grey_bottom_right + icon_state = "rasputin8" + +/turf/open/shuttle/dropship/light_grey_top + icon_state = "rasputin10" + +/turf/open/shuttle/dropship/dark_grey_bottom + icon_state = "rasputin12" + +/turf/open/shuttle/dropship/light_grey_middle + icon_state = "rasputin13" + +/turf/open/shuttle/dropship/can_surgery + icon_state = "rasputin1" + allow_construction = TRUE + supports_surgery = TRUE + +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom + icon_state = "rasputin12" + +/turf/open/shuttle/dropship/can_surgery/light_grey_top + icon_state = "rasputin10" + +/turf/open/shuttle/dropship/can_surgery/light_grey_middle + icon_state = "rasputin13" + +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right + icon_state = "rasputin14" + +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down + icon_state = "rasputin15" + +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right + icon_state = "floor8" + +/*same two but helps with finding if you think top to bottom or up to down*/ +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down + icon_state = "rasputin3" + +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left + icon_state = "rasputin6" + +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left + icon_state = "rasputin4" + +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right + icon_state = "rasputin7" + +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right + icon_state = "rasputin8" + +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right + icon_state = "rasputin14" + +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down + icon_state = "rasputin15" + + + /turf/open/shuttle/predship name = "ship floor" icon_state = "floor6" @@ -932,10 +1319,71 @@ icon = 'icons/turf/escapepods.dmi' icon_state = "floor3" +/turf/open/shuttle/escapepod/north + dir = NORTH + +/turf/open/shuttle/escapepod/east + dir = EAST + +/turf/open/shuttle/escapepod/west + dir = WEST + +/turf/open/shuttle/escapepod/floor0 + icon_state = "floor0" + +/turf/open/shuttle/escapepod/floor0/north + dir = NORTH + +/turf/open/shuttle/escapepod/floor0/west + dir = WEST + +/turf/open/shuttle/escapepod/floor1 + icon_state = "floor1" + +/turf/open/shuttle/escapepod/floor1/east + dir = EAST + +/turf/open/shuttle/escapepod/floor11 + icon_state = "floor11" + +/turf/open/shuttle/escapepod/floor12 + icon_state = "floor12" + +/turf/open/shuttle/escapepod/floor2 + icon_state = "floor2" + +/turf/open/shuttle/escapepod/floor4 + icon_state = "floor4" + +/turf/open/shuttle/escapepod/floor5 + icon_state = "floor5" + +/turf/open/shuttle/escapepod/floor7 + icon_state = "floor7" + +/turf/open/shuttle/escapepod/floor8 + icon_state = "floor8" + +/turf/open/shuttle/escapepod/floor9 + icon_state = "floor9" + /turf/open/shuttle/lifeboat icon = 'icons/turf/almayer.dmi' icon_state = "plating" allow_construction = FALSE + supports_surgery = TRUE + +/turf/open/shuttle/lifeboat/plating_striped + icon_state = "plating_striped" + +/turf/open/shuttle/lifeboat/plating_striped/north + dir = NORTH + +/turf/open/shuttle/lifeboat/plate + icon_state = "plate" + +/turf/open/shuttle/lifeboat/test_floor4 + icon_state = "test_floor4" // Elevator floors /turf/open/shuttle/elevator @@ -957,3 +1405,132 @@ name = "floor" icon_state = "dark_sterile" supports_surgery = TRUE + +/turf/open/shuttle/vehicle/dark_sterile + icon_state = "dark_sterile" + +/turf/open/shuttle/vehicle/dark_sterile_green_11 + icon_state = "dark_sterile_green_11" + +/turf/open/shuttle/vehicle/dark_sterile_green_12 + icon_state = "dark_sterile_green_12" + +/turf/open/shuttle/vehicle/dark_sterile_green_13 + icon_state = "dark_sterile_green_13" + +/turf/open/shuttle/vehicle/dark_sterile_green_14 + icon_state = "dark_sterile_green_14" + +/turf/open/shuttle/vehicle/dark_sterile_green_5 + icon_state = "dark_sterile_green_5" + +/turf/open/shuttle/vehicle/dark_sterile_green_6 + icon_state = "dark_sterile_green_6" + +/turf/open/shuttle/vehicle/dark_sterile_green_7 + icon_state = "dark_sterile_green_7" + +/turf/open/shuttle/vehicle/dark_sterile_green_8 + icon_state = "dark_sterile_green_8" + +/turf/open/shuttle/vehicle/floor_0_1_15 + icon_state = "floor_0_1_15" + +/turf/open/shuttle/vehicle/floor_1_1 + icon_state = "floor_1_1" + +/turf/open/shuttle/vehicle/floor_1_10 + icon_state = "floor_1_10" + +/turf/open/shuttle/vehicle/floor_1_11 + icon_state = "floor_1_11" + +/turf/open/shuttle/vehicle/floor_1_12 + icon_state = "floor_1_12" + +/turf/open/shuttle/vehicle/floor_1_13 + icon_state = "floor_1_13" + +/turf/open/shuttle/vehicle/floor_1_14 + icon_state = "floor_1_14" + +/turf/open/shuttle/vehicle/floor_1_1_3 + icon_state = "floor_1_1_3" + +/turf/open/shuttle/vehicle/floor_1_2 + icon_state = "floor_1_2" + +/turf/open/shuttle/vehicle/floor_1_3 + icon_state = "floor_1_3" + +/turf/open/shuttle/vehicle/floor_1_3_3 + icon_state = "floor_1_3_3" + +/turf/open/shuttle/vehicle/floor_1_4 + icon_state = "floor_1_4" + +/turf/open/shuttle/vehicle/floor_1_5 + icon_state = "floor_1_5" + +/turf/open/shuttle/vehicle/floor_1_6 + icon_state = "floor_1_6" + +/turf/open/shuttle/vehicle/floor_1_7 + icon_state = "floor_1_7" + +/turf/open/shuttle/vehicle/floor_1_8 + icon_state = "floor_1_8" + +/turf/open/shuttle/vehicle/floor_1_9 + icon_state = "floor_1_9" + +/turf/open/shuttle/vehicle/floor_2 + icon_state = "floor_2" + +/turf/open/shuttle/vehicle/floor_3 + icon_state = "floor_3" + +/turf/open/shuttle/vehicle/floor_3_10_1 + icon_state = "floor_3_10_1" + +/turf/open/shuttle/vehicle/floor_3_11 + icon_state = "floor_3_11" + +/turf/open/shuttle/vehicle/floor_3_12 + icon_state = "floor_3_12" + +/turf/open/shuttle/vehicle/floor_3_13 + icon_state = "floor_3_13" + +/turf/open/shuttle/vehicle/floor_3_1_1 + icon_state = "floor_3_1_1" + +/turf/open/shuttle/vehicle/floor_3_3 + icon_state = "floor_3_3" + +/turf/open/shuttle/vehicle/floor_3_4 + icon_state = "floor_3_4" + +/turf/open/shuttle/vehicle/floor_3_5 + icon_state = "floor_3_5" + +/turf/open/shuttle/vehicle/floor_3_6 + icon_state = "floor_3_6" + +/turf/open/shuttle/vehicle/floor_3_7 + icon_state = "floor_3_7" + +/turf/open/shuttle/vehicle/floor_3_7_1 + icon_state = "floor_3_7_1" + +/turf/open/shuttle/vehicle/floor_3_8 + icon_state = "floor_3_8" + +/turf/open/shuttle/vehicle/floor_3_8_1 + icon_state = "floor_3_8_1" + +/turf/open/shuttle/vehicle/floor_3_9 + icon_state = "floor_3_9" + +/turf/open/shuttle/vehicle/floor_3_9_1 + icon_state = "floor_3_9_1" diff --git a/code/game/turfs/shiva.dm b/code/game/turfs/shiva.dm index 4c5a732211..26e9cbb29c 100644 --- a/code/game/turfs/shiva.dm +++ b/code/game/turfs/shiva.dm @@ -2,3 +2,285 @@ /turf/open/floor/shiva //Instance me! icon = 'icons/turf/floors/ice_colony/shiva_floor.dmi' icon_state = "floor" + +/turf/open/floor/shiva/blue + icon_state = "blue" + +/turf/open/floor/shiva/blue/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/green + icon_state = "green" + +/turf/open/floor/shiva/green/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/purple + icon_state = "purple" + +/turf/open/floor/shiva/purple/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/red + icon_state = "red" + +/turf/open/floor/shiva/red/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/wred + icon_state = "wred" + +/turf/open/floor/shiva/wred/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/yellow + icon_state = "yellow" + +/turf/open/floor/shiva/yellow/southwest + dir = SOUTHWEST + +/turf/open/floor/shiva/blue/north + dir = NORTH + +/turf/open/floor/shiva/green/north + dir = NORTH + +/turf/open/floor/shiva/greencorners + icon_state = "greencorners" + +/turf/open/floor/shiva/greencorners/north + dir = NORTH + +/turf/open/floor/shiva/multi_tiles + icon_state = "multi_tiles" + +/turf/open/floor/shiva/multi_tiles/north + dir = NORTH + +/turf/open/floor/shiva/purple/north + dir = NORTH + +/turf/open/floor/shiva/purplefull + icon_state = "purplefull" + +/turf/open/floor/shiva/purplefull/north + dir = NORTH + +/turf/open/floor/shiva/red/north + dir = NORTH + +/turf/open/floor/shiva/redcorners + icon_state = "redcorners" + +/turf/open/floor/shiva/redcorners/north + dir = NORTH + +/turf/open/floor/shiva/snow_mat + icon_state = "snow_mat" + +/turf/open/floor/shiva/snow_mat/north + dir = NORTH + +/turf/open/floor/shiva/wred/north + dir = NORTH + +/turf/open/floor/shiva/wredcorners + icon_state = "wredcorners" + +/turf/open/floor/shiva/wredcorners/north + dir = NORTH + +/turf/open/floor/shiva/yellow/north + dir = NORTH + +/turf/open/floor/shiva/yellowcorners + icon_state = "yellowcorners" + +/turf/open/floor/shiva/yellowcorners/north + dir = NORTH + +/turf/open/floor/shiva/north + dir = NORTH + +/turf/open/floor/shiva/blue/east + dir = EAST + +/turf/open/floor/shiva/green/east + dir = EAST + +/turf/open/floor/shiva/greencorners/east + dir = EAST + +/turf/open/floor/shiva/multi_tiles/east + dir = EAST + +/turf/open/floor/shiva/purple/east + dir = EAST + +/turf/open/floor/shiva/purplefull/east + dir = EAST + +/turf/open/floor/shiva/red/east + dir = EAST + +/turf/open/floor/shiva/redcorners/east + dir = EAST + +/turf/open/floor/shiva/snow_mat/east + dir = EAST + +/turf/open/floor/shiva/wred/east + dir = EAST + +/turf/open/floor/shiva/wredcorners/east + dir = EAST + +/turf/open/floor/shiva/yellow/east + dir = EAST + +/turf/open/floor/shiva/yellowcorners/east + dir = EAST + +/turf/open/floor/shiva/blue/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/green/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/purple/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/red/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/wred/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/yellow/northeast + dir = NORTHEAST + +/turf/open/floor/shiva/blue/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/green/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/purple/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/red/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/wred/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/yellow/southeast + dir = SOUTHEAST + +/turf/open/floor/shiva/blue/west + dir = WEST + +/turf/open/floor/shiva/bluecorners + icon_state = "bluecorners" + +/turf/open/floor/shiva/bluecorners/west + dir = WEST + +/turf/open/floor/shiva/bluefull + icon_state = "bluefull" + +/turf/open/floor/shiva/bluefull/west + dir = WEST + +/turf/open/floor/shiva/green/west + dir = WEST + +/turf/open/floor/shiva/greencorners/west + dir = WEST + +/turf/open/floor/shiva/greenfull + icon_state = "greenfull" + +/turf/open/floor/shiva/greenfull/west + dir = WEST + +/turf/open/floor/shiva/multi_tiles/west + dir = WEST + +/turf/open/floor/shiva/purple/west + dir = WEST + +/turf/open/floor/shiva/purplecorners + icon_state = "purplecorners" + +/turf/open/floor/shiva/purplecorners/west + dir = WEST + +/turf/open/floor/shiva/purplefull/west + dir = WEST + +/turf/open/floor/shiva/red/west + dir = WEST + +/turf/open/floor/shiva/redcorners/west + dir = WEST + +/turf/open/floor/shiva/redfull + icon_state = "redfull" + +/turf/open/floor/shiva/redfull/west + dir = WEST + +/turf/open/floor/shiva/snow_mat/west + dir = WEST + +/turf/open/floor/shiva/wred/west + dir = WEST + +/turf/open/floor/shiva/wredcorners/west + dir = WEST + +/turf/open/floor/shiva/yellow/west + dir = WEST + +/turf/open/floor/shiva/yellowcorners/west + dir = WEST + +/turf/open/floor/shiva/yellowfull + icon_state = "yellowfull" + +/turf/open/floor/shiva/yellowfull/west + dir = WEST + +/turf/open/floor/shiva/blue/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/green/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/purple/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/red/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/wred/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/yellow/northwest + dir = NORTHWEST + +/turf/open/floor/shiva/floor3 + icon_state = "floor3" + +/turf/open/floor/shiva/radiator_tile + icon_state = "radiator_tile" + +/turf/open/floor/shiva/radiator_tile2 + icon_state = "radiator_tile2" + +/turf/open/floor/shiva/wredfull + icon_state = "wredfull" diff --git a/code/game/turfs/snow.dm b/code/game/turfs/snow.dm index 72b1f35d0a..c8afd734e8 100644 --- a/code/game/turfs/snow.dm +++ b/code/game/turfs/snow.dm @@ -8,6 +8,7 @@ icon = 'icons/turf/floors/snow2.dmi' icon_state = "snow_0" is_groundmap_turf = TRUE + scorchable = TRUE //PLACING/REMOVING/BUILDING /turf/open/snow/attackby(obj/item/I, mob/user) @@ -16,7 +17,7 @@ if(istype(I, /obj/item/lightstick)) var/obj/item/lightstick/L = I if(locate(/obj/item/lightstick) in get_turf(src)) - to_chat(user, "There's already a [L] at this position!") + to_chat(user, "There's already \a [L] at this position!") return to_chat(user, "Now planting \the [L].") @@ -77,7 +78,7 @@ if(update_full) var/turf/open/T if(!skip_sides) - for(var/dirn in alldirs) + for(var/dirn in GLOB.alldirs) var/turf/open/snow/D = get_step(src,dirn) if(istype(D)) //Update turfs that are near us, but only once @@ -85,7 +86,7 @@ overlays.Cut() - for(var/dirn in alldirs) + for(var/dirn in GLOB.alldirs) T = get_step(src, dirn) if(istype(T)) if(bleed_layer > T.bleed_layer && T.bleed_layer < 1) @@ -132,6 +133,22 @@ bleed_layer = 0 update_icon(1, 0) +//Flames act +/turf/open/snow/scorch(heat_level) + if(bleed_layer <= 0) + return + switch(heat_level) + if(1 to 19) + bleed_layer-- + update_icon(update_full = TRUE, skip_sides = FALSE) + if(20 to 39) + bleed_layer = max(bleed_layer - 2, 0) + update_icon(update_full = TRUE, skip_sides = FALSE) + if(40 to INFINITY) + bleed_layer = 0 + update_icon(update_full = TRUE, skip_sides = FALSE) + + //SNOW LAYERS-----------------------------------// /turf/open/snow/layer0 icon_state = "snow_0" @@ -148,6 +165,3 @@ /turf/open/snow/layer3 icon_state = "snow_3" bleed_layer = 3 - - - diff --git a/code/game/turfs/strata.dm b/code/game/turfs/strata.dm index a89f98a732..e561ddbc55 100644 --- a/code/game/turfs/strata.dm +++ b/code/game/turfs/strata.dm @@ -17,6 +17,9 @@ /turf/open/gm/dirtgrassborder/weedable/is_weedable() //Gotta have our sexy grass borders be weedable. return FULLY_WEEDABLE +/turf/open/gm/dirtgrassborder/weedable/grass1 + icon_state = "grass1" + /turf/closed/gm/dense/weedable /turf/closed/gm/dense/weedable/is_weedable() //Weed-able jungle walls. Notably crushers can slam through this, so that might cause overlay issues. 3 months later, yeah it causes overlay issues, so return FALSE! @@ -25,3 +28,257 @@ /turf/open/floor/strata //Instance me! icon = 'icons/turf/floors/strata_floor.dmi' icon_state = "floor" + +/turf/open/floor/strata/grey_multi_tiles + color = "#5e5d5d" + icon_state = "multi_tiles" + +/turf/open/floor/strata/grey_multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/faux_wood + desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means." + icon = 'icons/turf/floors/floors.dmi' + icon_state = "wood" + +/turf/open/floor/strata/faux_metal + desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know." + icon = 'icons/turf/floors/floors.dmi' + icon_state = "wood" + +/turf/open/floor/strata/multi_tiles + icon_state = "multi_tiles" + +/turf/open/floor/strata/multi_tiles/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/white_cyan3 + icon_state = "white_cyan3" + +/turf/open/floor/strata/white_cyan3/southwest + dir = SOUTHWEST + +/turf/open/floor/strata/blue4 + icon_state = "blue4" + +/turf/open/floor/strata/blue4/north + dir = NORTH + +/turf/open/floor/strata/red3 + icon_state = "red3" + +/turf/open/floor/strata/red3/north + dir = NORTH + +/turf/open/floor/strata/white_cyan3/north + dir = NORTH + +/turf/open/floor/strata/white_cyan4 + icon_state = "white_cyan4" + +/turf/open/floor/strata/white_cyan4/north + dir = NORTH + +/turf/open/floor/strata/red3/south + dir = SOUTH + +/turf/open/floor/strata/white_cyan3/south + dir = SOUTH + +/turf/open/floor/strata/white_cyan4/south + dir = SOUTH + +/turf/open/floor/strata/blue3 + icon_state = "blue3" + +/turf/open/floor/strata/blue3/east + dir = EAST + +/turf/open/floor/strata/cyan1 + icon_state = "cyan1" + +/turf/open/floor/strata/cyan1/east + dir = EAST + +/turf/open/floor/strata/cyan2 + icon_state = "cyan2" + +/turf/open/floor/strata/cyan2/east + dir = EAST + +/turf/open/floor/strata/cyan3 + icon_state = "cyan3" + +/turf/open/floor/strata/cyan3/east + dir = EAST + +/turf/open/floor/strata/cyan4 + icon_state = "cyan4" + +/turf/open/floor/strata/cyan4/east + dir = EAST + +/turf/open/floor/strata/floor3 + icon_state = "floor3" + +/turf/open/floor/strata/floor3/east + dir = EAST + +/turf/open/floor/strata/orange_edge + icon_state = "orange_edge" + +/turf/open/floor/strata/orange_edge/east + dir = EAST + +/turf/open/floor/strata/red3/east + dir = EAST + +/turf/open/floor/strata/white_cyan1 + icon_state = "white_cyan1" + +/turf/open/floor/strata/white_cyan1/east + dir = EAST + +/turf/open/floor/strata/white_cyan3/east + dir = EAST + +/turf/open/floor/strata/white_cyan4/east + dir = EAST + +/turf/open/floor/strata/white_cyan3/northeast + dir = NORTHEAST + +/turf/open/floor/strata/multi_tiles/southeast + dir = SOUTHEAST + +/turf/open/floor/strata/white_cyan3/southeast + dir = SOUTHEAST + +/turf/open/floor/strata/blue3/west + dir = WEST + +/turf/open/floor/strata/cyan3/west + dir = WEST + +/turf/open/floor/strata/multi_tiles/west + dir = WEST + +/turf/open/floor/strata/orange_edge/west + dir = WEST + +/turf/open/floor/strata/red3/west + dir = WEST + +/turf/open/floor/strata/white_cyan2 + icon_state = "white_cyan2" + +/turf/open/floor/strata/white_cyan2/west + dir = WEST + +/turf/open/floor/strata/white_cyan3/west + dir = WEST + +/turf/open/floor/strata/white_cyan4/west + dir = WEST + +/turf/open/floor/strata/white_cyan3/northwest + dir = NORTHWEST + +/turf/open/floor/strata/blue1 + icon_state = "blue1" + +/turf/open/floor/strata/blue3/north + dir = NORTH + +/turf/open/floor/strata/damaged3 + icon_state = "damaged3" + +/turf/open/floor/strata/fake_wood + icon_state = "fake_wood" + +/turf/open/floor/strata/floor2 + icon_state = "floor2" + +/turf/open/floor/strata/floorscorched1 + icon_state = "floorscorched1" + +/turf/open/floor/strata/floorscorched2 + icon_state = "floorscorched2" + +/turf/open/floor/strata/green1 + icon_state = "green1" + +/turf/open/floor/strata/green3 + icon_state = "green3" + +/turf/open/floor/strata/green3/north + dir = NORTH + +/turf/open/floor/strata/green3/east + dir = EAST + +/turf/open/floor/strata/green3/northeast + dir = NORTHEAST + +/turf/open/floor/strata/green3/west + dir = WEST + +/turf/open/floor/strata/green3/northwest + dir = NORTHWEST + +/turf/open/floor/strata/green4 + icon_state = "green4" + +/turf/open/floor/strata/green4/north + dir = NORTH + +/turf/open/floor/strata/green4/east + dir = EAST + +/turf/open/floor/strata/green4/west + dir = WEST + +/turf/open/floor/strata/orange_cover + icon_state = "orange_cover" + +/turf/open/floor/strata/orange_icorner + icon_state = "orange_icorner" + +/turf/open/floor/strata/orange_icorner/north + dir = NORTH + +/turf/open/floor/strata/orange_icorner/west + dir = WEST + +/turf/open/floor/strata/orange_tile + icon_state = "orange_tile" + +/turf/open/floor/strata/purp1 + icon_state = "purp1" + +/turf/open/floor/strata/purp2 + icon_state = "purp2" + +/turf/open/floor/strata/purp3 + icon_state = "purp3" + +/turf/open/floor/strata/purp3/east + dir = EAST + +/turf/open/floor/strata/red1 + icon_state = "red1" + +/turf/open/floor/strata/red2 + icon_state = "red2" + +/turf/open/floor/strata/red4 + icon_state = "red4" + +/turf/open/floor/strata/red4/north + dir = NORTH + +/turf/open/floor/strata/red4/east + dir = EAST + +/turf/open/floor/strata/red4/west + dir = WEST diff --git a/code/game/turfs/transit.dm b/code/game/turfs/transit.dm index 2e5396d0b1..7413bc37d4 100644 --- a/code/game/turfs/transit.dm +++ b/code/game/turfs/transit.dm @@ -138,6 +138,12 @@ clear_active_explosives() ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) ADD_TRAIT(src, TRAIT_UNDENSE, TRAIT_SOURCE_DROPSHIP_INTERACTION) + ADD_TRAIT(src, TRAIT_NO_STRAY, TRAIT_SOURCE_DROPSHIP_INTERACTION) + RegisterSignal(src, COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED, PROC_REF(cancel_cross)) + RegisterSignal(src, list( + COMSIG_LIVING_FLAMER_FLAMED, + COMSIG_LIVING_PREIGNITION + ), PROC_REF(cancel_fire)) var/image/cables = image('icons/obj/structures/droppod_32x64.dmi', src, "chute_cables_static") overlays += cables var/image/chute = image('icons/obj/structures/droppod_64x64.dmi', src, "chute_static") @@ -163,8 +169,18 @@ return REMOVE_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_DROPSHIP_INTERACTION) REMOVE_TRAIT(src, TRAIT_UNDENSE, TRAIT_SOURCE_DROPSHIP_INTERACTION) + REMOVE_TRAIT(src, TRAIT_NO_STRAY, TRAIT_SOURCE_DROPSHIP_INTERACTION) + UnregisterSignal(src, list( + COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED, + COMSIG_LIVING_FLAMER_FLAMED, + COMSIG_LIVING_PREIGNITION + )) overlays -= cables overlays -= chute + for(var/atom/movable/atom in loc) + if(atom == src) + continue + atom.Cross(src) /atom/movable/proc/clear_active_explosives() for(var/obj/item/explosive/explosive in contents) @@ -232,6 +248,13 @@ death(last_damage_data) status_flags |= PERMANENTLY_DEAD +/atom/movable/proc/cancel_cross() + SIGNAL_HANDLER + return COMPONENT_IGNORE_CROSS + +/atom/movable/proc/cancel_fire() + SIGNAL_HANDLER + return COMPONENT_NO_BURN /turf/open/space/transit/dropship/alamo shuttle_tag = DROPSHIP_ALAMO @@ -241,6 +264,10 @@ shuttle_tag = DROPSHIP_NORMANDY dir = SOUTH +/turf/open/space/transit/dropship/saipan + shuttle_tag = DROPSHIP_SAIPAN + dir = SOUTH + /turf/open/space/transit/dropship/midway shuttle_tag = DROPSHIP_MIDWAY dir = SOUTH diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index 16db20e298..0082cb6ae0 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -72,21 +72,18 @@ // by default, vis_contents is inherited from the turf that was here before vis_contents.Cut() - turfs += src - if(is_ground_level(z)) - z1turfs += src + GLOB.turfs += src + assemble_baseturfs() levelupdate() - visibilityChanged() - - pass_flags = pass_flags_cache[type] + pass_flags = GLOB.pass_flags_cache[type] if (isnull(pass_flags)) pass_flags = new() initialize_pass_flags(pass_flags) - pass_flags_cache[type] = pass_flags + GLOB.pass_flags_cache[type] = pass_flags else initialize_pass_flags() @@ -104,11 +101,6 @@ if(opacity) directional_opacity = ALL_CARDINALS - //Get area light - var/area/A = loc - if(A?.lighting_effect) - overlays += A.lighting_effect - return INITIALIZE_HINT_NORMAL /turf/Destroy(force) @@ -128,7 +120,6 @@ for(var/I in B.vars) B.vars[I] = null return - visibilityChanged() flags_atom &= ~INITIALIZED ..() @@ -379,7 +370,7 @@ next_target = initial(current_target.baseturfs) baseturfs = new_baseturfs - created_baseturf_lists[new_baseturfs[new_baseturfs.len]] = new_baseturfs.Copy() + created_baseturf_lists[new_baseturfs[length(new_baseturfs)]] = new_baseturfs.Copy() return new_baseturfs // Creates a new turf @@ -465,14 +456,14 @@ return if(length(baseturfs)) var/list/new_baseturfs = baseturfs.Copy() - var/turf_type = new_baseturfs[max(1, new_baseturfs.len - amount + 1)] + var/turf_type = new_baseturfs[max(1, length(new_baseturfs) - amount + 1)] while(ispath(turf_type, /turf/baseturf_skipover)) amount++ - if(amount > new_baseturfs.len) + if(amount > length(new_baseturfs)) CRASH("The bottomost baseturf of a turf is a skipover [src]([type])") - turf_type = new_baseturfs[max(1, new_baseturfs.len - amount + 1)] - new_baseturfs.len -= min(amount, new_baseturfs.len - 1) // No removing the very bottom - if(new_baseturfs.len == 1) + turf_type = new_baseturfs[max(1, length(new_baseturfs) - amount + 1)] + new_baseturfs.len -= min(amount, length(new_baseturfs) - 1) // No removing the very bottom + if(length(new_baseturfs) == 1) new_baseturfs = new_baseturfs[1] return ChangeTurf(turf_type, new_baseturfs, flags) @@ -487,18 +478,20 @@ /turf/proc/AdjacentTurfs() var/L[] = new() - for(var/turf/t in oview(src,1)) + FOR_DOVIEW(var/turf/t, 1, src, HIDE_INVISIBLE_OBSERVER) if(!t.density) if(!LinkBlocked(src, t) && !TurfBlockedNonWindow(t)) L.Add(t) + FOR_DOVIEW_END return L /turf/proc/AdjacentTurfsSpace() var/L[] = new() - for(var/turf/t in oview(src,1)) + FOR_DOVIEW(var/turf/t, 1, src, HIDE_INVISIBLE_OBSERVER) if(!t.density) if(!LinkBlocked(src, t) && !TurfBlockedNonWindow(t)) L.Add(t) + FOR_DOVIEW_END return L /turf/proc/Distance(turf/t) @@ -525,10 +518,10 @@ return var/amount = size - var/spread = round(sqrt(size)*1.5) + var/spread = floor(sqrt(size)*1.5) var/list/turfs = list() - for(var/turf/open/floor/F in range(src,spread)) + for(var/turf/open/floor/F in range(spread, src)) turfs += F switch(A.ceiling) @@ -783,9 +776,9 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list( insert_self_into_baseturfs() var/turf/change_type if(length(new_baseturfs)) - change_type = new_baseturfs[new_baseturfs.len] + change_type = new_baseturfs[length(new_baseturfs)] new_baseturfs.len-- - if(new_baseturfs.len) + if(length(new_baseturfs)) baseturfs += new_baseturfs else change_type = new_baseturfs @@ -826,7 +819,7 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list( var/static/list/ignored_atoms = typecacheof(list(/mob/dead, /obj/effect/landmark, /obj/docking_port)) var/list/removable_contents = typecache_filter_list_reverse(GetAllContentsIgnoring(ignore_typecache), ignored_atoms) removable_contents -= src - for(var/i in 1 to removable_contents.len) + for(var/i in 1 to length(removable_contents)) var/thing = removable_contents[i] qdel(thing, force=TRUE) @@ -843,9 +836,9 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list( if(depth) var/list/target_baseturfs if(length(copytarget.baseturfs)) - // with default inputs this would be Copy(clamp(2, -INFINITY, baseturfs.len)) + // with default inputs this would be Copy(clamp(2, -INFINITY, length(baseturfs))) // Don't forget a lower index is lower in the baseturfs stack, the bottom is baseturfs[1] - target_baseturfs = copytarget.baseturfs.Copy(clamp(1 + ignore_bottom, 1 + copytarget.baseturfs.len - depth, copytarget.baseturfs.len)) + target_baseturfs = copytarget.baseturfs.Copy(clamp(1 + ignore_bottom, 1 + length(copytarget.baseturfs) - depth, length(copytarget.baseturfs))) else if(!ignore_bottom) target_baseturfs = list(copytarget.baseturfs) if(target_baseturfs) diff --git a/code/game/turfs/walls/r_wall.dm b/code/game/turfs/walls/r_wall.dm index d903324b0f..41108e6f7e 100644 --- a/code/game/turfs/walls/r_wall.dm +++ b/code/game/turfs/walls/r_wall.dm @@ -6,7 +6,6 @@ density = TRUE damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 6000 walltype = WALL_REINFORCED @@ -21,10 +20,6 @@ if(hull) return - if (!(istype(user, /mob/living/carbon/human) || isrobot(user) || SSticker) && SSticker.mode.name != "monkey") - to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!")) - return - //get the user's location if( !istype(user.loc, /turf) ) return //can't do this stuff whilst inside objects and such @@ -137,7 +132,7 @@ user.visible_message(SPAN_NOTICE("[user] starts repairing the damage to [src]."), SPAN_NOTICE("You start repairing the damage to [src].")) playsound(src, 'sound/items/Welder.ogg', 25, 1) - if(do_after(user, max(5, round(damage / 5) * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION)), INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && istype(src, /turf/closed/wall/r_wall)) + if(do_after(user, max(5, floor(damage / 5) * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION)), INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && istype(src, /turf/closed/wall/r_wall)) user.visible_message(SPAN_NOTICE("[user] finishes repairing the damage to [src]."), SPAN_NOTICE("You finish repairing the damage to [src].")) take_damage(-damage) diff --git a/code/game/turfs/walls/wall_icon.dm b/code/game/turfs/walls/wall_icon.dm index 9e47612964..8552063b58 100644 --- a/code/game/turfs/walls/wall_icon.dm +++ b/code/game/turfs/walls/wall_icon.dm @@ -1,6 +1,6 @@ #define BULLETHOLE_STATES 10 //How many variations of bullethole patterns there are //Formulas. These don't need to be defines, but helpful green. Should likely reuse these for a base 8 icon system. -#define cur_increment(v) round((v-1)/8)+1 +#define cur_increment(v) floor((v-1)/8)+1 /turf/closed/wall/update_icon() ..() @@ -31,9 +31,9 @@ overlays += I if(damage) - var/current_dmg_overlay = round(damage / damage_cap * damage_overlays.len) + 1 - if(current_dmg_overlay > damage_overlays.len) - current_dmg_overlay = damage_overlays.len + var/current_dmg_overlay = floor(damage / damage_cap * length(damage_overlays)) + 1 + if(current_dmg_overlay > length(damage_overlays)) + current_dmg_overlay = length(damage_overlays) damage_overlay = current_dmg_overlay overlays += damage_overlays[damage_overlay] @@ -44,13 +44,17 @@ bullet_overlay = image('icons/effects/bulletholes.dmi', src, "bhole_[bullethole_state]_2") overlays += bullet_overlay + var/area/my_area = loc + if(my_area.lighting_effect) + overlays += my_area.lighting_effect + #undef BULLETHOLE_STATES #undef cur_increment /turf/closed/wall/proc/generate_damage_overlays() - var/alpha_inc = 256 / damage_overlays.len + var/alpha_inc = 256 / length(damage_overlays) - for(var/i = 1; i <= damage_overlays.len; i++) + for(var/i = 1; i <= length(damage_overlays); i++) var/image/img = image(icon = 'icons/turf/walls/walls.dmi', icon_state = "overlay_damage") img.blend_mode = BLEND_MULTIPLY img.appearance_flags = NO_CLIENT_COLOR @@ -86,7 +90,7 @@ break if(success) - if(get_dir(src, T) in cardinal) + if(get_dir(src, T) in GLOB.cardinals) wall_dirs += get_dir(src, T) for(var/neighbor in wall_dirs) @@ -114,7 +118,7 @@ var/list/ret = list(NORTHWEST, SOUTHEAST, NORTHEAST, SOUTHWEST) - for(var/i = 1 to ret.len) + for(var/i = 1 to length(ret)) var/dir = ret[i] . = CORNER_NONE if(dir in dirs) diff --git a/code/game/turfs/walls/wall_types.dm b/code/game/turfs/walls/wall_types.dm index 10a49869ce..7842843ef4 100644 --- a/code/game/turfs/walls/wall_types.dm +++ b/code/game/turfs/walls/wall_types.dm @@ -12,8 +12,6 @@ damage = 0 damage_cap = HEALTH_WALL //Wall will break down to girders if damage reaches this point - max_temperature = 18000 //K, walls will take damage if they're next to a fire hotter than this - opacity = TRUE density = TRUE @@ -59,6 +57,24 @@ damage_cap = HEALTH_WALL_REINFORCED icon_state = "reinforced" +/// Acts like /turf/closed/wall/almayer/outer until post-hijack where it reverts to /turf/closed/wall/almayer/reinforced. +/turf/closed/wall/almayer/reinforced/temphull + name = "heavy reinforced hull" + desc = "A highly reinforced metal wall used to separate rooms and make up the ship. It would take a great impact to weaken this wall." + damage_cap = HEALTH_WALL_REINFORCED + icon_state = "temphull" + hull = TRUE + +/turf/closed/wall/almayer/reinforced/temphull/Initialize() + . = ..() + if(is_mainship_level(z)) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_IMPACTED, PROC_REF(de_hull)) + +/turf/closed/wall/almayer/reinforced/temphull/proc/de_hull() + SIGNAL_HANDLER + hull = FALSE + desc = "A highly reinforced metal wall used to separate rooms and make up the ship. It has been weakened by a great impact." + /turf/closed/wall/almayer/outer name = "outer hull" desc = "A metal wall used to separate space from the ship" @@ -239,14 +255,12 @@ hull = 0 //Can't be deconstructed damage_cap = HEALTH_WALL - max_temperature = 28000 //K, walls will take damage if they're next to a fire hotter than this walltype = WALL_SULACO //Changes all the sprites and icons. /turf/closed/wall/sulaco/hull name = "outer hull" desc = "A reinforced outer hull, probably to prevent breaches" hull = 1 - max_temperature = 50000 // Nearly impossible to melt walltype = WALL_SULACO @@ -254,7 +268,6 @@ name = "outer hull" desc = "A reinforced outer hull, probably to prevent breaches" hull = 1 - max_temperature = 50000 // Nearly impossible to melt walltype = WALL_SULACO @@ -284,28 +297,30 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) /turf/closed/wall/indestructible/splashscreen name = "Lobby Art" desc = "Assorted artworks." - icon = 'icons/lobby/title.dmi' - icon_state = "" -// icon_state = "title_holiday" + icon = 'icons/lobby/title_loading.dmi' + icon_state = "title" layer = FLY_LAYER - special_icon = 1 + special_icon = TRUE /turf/closed/wall/indestructible/splashscreen/Initialize() . = ..() tag = "LOBBYART" /proc/force_lobby_art(art_id) - displayed_lobby_art = art_id - var/turf/closed/wall/indestructible/splashscreen/SS = locate("LOBBYART") + GLOB.displayed_lobby_art = art_id + var/turf/closed/wall/indestructible/splashscreen/lobby_art = locate("LOBBYART") var/list/lobby_arts = CONFIG_GET(str_list/lobby_art_images) var/list/lobby_authors = CONFIG_GET(str_list/lobby_art_authors) - SS.icon_state = lobby_arts[displayed_lobby_art] - SS.desc = "Artwork by [lobby_authors[displayed_lobby_art]]" - for(var/client/C in GLOB.clients) - if(displayed_lobby_art != -1) - var/author = lobby_authors[displayed_lobby_art] + lobby_art.icon = 'icons/lobby/title.dmi' + lobby_art.icon_state = lobby_arts[GLOB.displayed_lobby_art] + lobby_art.desc = "Artwork by [lobby_authors[GLOB.displayed_lobby_art]]" + lobby_art.pixel_x = -288 + lobby_art.pixel_y = -288 + for(var/client/player in GLOB.clients) + if(GLOB.displayed_lobby_art != -1) + var/author = lobby_authors[GLOB.displayed_lobby_art] if(author != "Unknown") - to_chat_forced(C, SPAN_ROUNDBODY("
      This round's lobby art is brought to you by [author]
      ")) + to_chat_forced(player, SPAN_ROUNDBODY("
      This round's lobby art is brought to you by [author]
      ")) /turf/closed/wall/indestructible/other icon_state = "r_wall" @@ -564,7 +579,6 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) desc = "A thick and chunky metal wall covered in jagged ribs." walltype = WALL_STRATA_OUTPOST_RIBBED damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 28000 /turf/closed/wall/strata_outpost name = "bare outpost walls" @@ -579,7 +593,6 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) desc = "A thick and chunky metal wall covered in jagged ribs." walltype = WALL_STRATA_OUTPOST_RIBBED damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 28000 /turf/closed/wall/strata_outpost/reinforced/hull hull = 1 @@ -600,7 +613,6 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) icon_state = "solaris_interior_r" walltype = WALL_SOLARISR damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 28000 /turf/closed/wall/solaris/reinforced/hull name = "heavy reinforced colony wall" @@ -633,7 +645,6 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) desc = "Just like in the orange box! This one is reinforced" walltype = WALL_DEVWALL_R damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 28000 /turf/closed/wall/dev/reinforced/hull name = "greybox hull wall" @@ -667,7 +678,6 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) desc = "Dusty worn down walls that were once built to last. This one is reinforced" walltype = WALL_KUTJEVO_COLONYR damage_cap = HEALTH_WALL_REINFORCED - max_temperature = 28000 /turf/closed/wall/kutjevo/colony/reinforced/hull icon_state = "colonyh" @@ -791,6 +801,14 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) icon_state = "thickresin" walltype = WALL_THICKRESIN +/turf/closed/wall/resin/tutorial + name = "tutorial resin wall" + desc = "Weird slime solidified into a wall. Remarkably resilient." + hivenumber = XENO_HIVE_TUTORIAL + +/turf/closed/wall/resin/tutorial/attack_alien(mob/living/carbon/xenomorph/xeno) + return + /turf/closed/wall/resin/membrane name = "resin membrane" desc = "Weird slime translucent enough to let light pass through." @@ -854,7 +872,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) var/datum/movable_wall_group/MWG = new() MWG.add_structure(current) - for(var/dir in cardinal) + for(var/dir in GLOB.cardinals) connected = locate() in get_step(current, dir) if(connected in current_walls) if(connected.group == src) @@ -989,7 +1007,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) /obj/structure/alien/movable_wall/proc/update_connections(propagate = FALSE) var/list/wall_dirs = list() - for(var/dir in alldirs) + for(var/dir in GLOB.alldirs) var/obj/structure/alien/movable_wall/MW = locate() in get_step(src, dir) if(!(MW in group.walls)) continue @@ -1020,7 +1038,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) SPAN_XENONOTICE("You claw \the [src].")) playsound(src, "alien_resin_break", 25) if (M.hivenumber == hivenumber) - take_damage(Ceiling(HEALTH_WALL_XENO * 0.25)) //Four hits for a regular wall + take_damage(ceil(HEALTH_WALL_XENO * 0.25)) //Four hits for a regular wall else take_damage(M.melee_damage_lower*RESIN_XENO_DAMAGE_MULTIPLIER) return XENO_ATTACK_ACTION @@ -1028,7 +1046,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) /obj/structure/alien/movable_wall/attackby(obj/item/W, mob/living/user) if(!(W.flags_item & NOBLUDGEON)) user.animation_attack_on(src) - take_damage(W.force*RESIN_MELEE_DAMAGE_MULTIPLIER, user) + take_damage(W.force*RESIN_MELEE_DAMAGE_MULTIPLIER*W.demolition_mod, user) playsound(src, "alien_resin_break", 25) else return attack_hand(user) @@ -1043,7 +1061,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) /obj/structure/alien/movable_wall/proc/recalculate_structure() var/list/found_structures = list() var/current_walls = 0 - for(var/i in cardinal) + for(var/i in GLOB.cardinals) var/turf/T = get_step(src, i) var/obj/structure/alien/movable_wall/MW = locate() in T if(!MW) @@ -1100,7 +1118,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) return COMPONENT_TURF_ALLOW_MOVEMENT /obj/structure/alien/movable_wall/Move(NewLoc, direct) - if(!(direct in cardinal)) + if(!(direct in GLOB.cardinals)) return group.try_move_in_direction(direct) @@ -1233,10 +1251,10 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) M.animation_attack_on(src) M.visible_message(SPAN_XENONOTICE("\The [M] claws \the [src]!"), \ - SPAN_XENONOTICE("You claw \the [src].")) + SPAN_XENONOTICE("We claw \the [src].")) playsound(src, "alien_resin_break", 25) if (M.hivenumber == hivenumber) - take_damage(Ceiling(HEALTH_WALL_XENO * 0.25)) //Four hits for a regular wall + take_damage(ceil(HEALTH_WALL_XENO * 0.25)) //Four hits for a regular wall else take_damage(M.melee_damage_lower*RESIN_XENO_DAMAGE_MULTIPLIER) return XENO_ATTACK_ACTION @@ -1264,7 +1282,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) if(!(W.flags_item & NOBLUDGEON)) user.animation_attack_on(src) - take_damage(W.force*RESIN_MELEE_DAMAGE_MULTIPLIER, user) + take_damage(W.force*RESIN_MELEE_DAMAGE_MULTIPLIER*W.demolition_mod, user) playsound(src, "alien_resin_break", 25) else return attack_hand(user) @@ -1274,7 +1292,7 @@ INITIALIZE_IMMEDIATE(/turf/closed/wall/indestructible/splashscreen) . = ..() if(.) var/turf/T - for(var/i in cardinal) + for(var/i in GLOB.cardinals) T = get_step(src, i) if(!istype(T)) continue for(var/obj/structure/mineral_door/resin/R in T) diff --git a/code/game/turfs/walls/walls.dm b/code/game/turfs/walls/walls.dm index ffc81cde57..343cd57322 100644 --- a/code/game/turfs/walls/walls.dm +++ b/code/game/turfs/walls/walls.dm @@ -5,9 +5,11 @@ icon_state = "0" opacity = TRUE layer = WALL_LAYER - var/hull = 0 //1 = Can't be deconstructed by tools or thermite. Used for Sulaco walls + /// 1 = Can't be deconstructed by tools or thermite. Used for Sulaco walls + var/hull = 0 var/walltype = WALL_METAL - var/junctiontype //when walls smooth with one another, the type of junction each wall is. + /// when walls smooth with one another, the type of junction each wall is. + var/junctiontype var/thermite = 0 var/melting = FALSE var/claws_minimum = CLAW_TYPE_SHARP @@ -21,7 +23,8 @@ ) var/damage = 0 - var/damage_cap = HEALTH_WALL //Wall will break down to girders if damage reaches this point + /// Wall will break down to girders if damage reaches this point + var/damage_cap = HEALTH_WALL var/damage_overlay var/global/damage_overlays[8] @@ -30,12 +33,12 @@ var/image/bullet_overlay = null var/list/wall_connections = list("0", "0", "0", "0") var/neighbors_list = 0 - var/max_temperature = 1800 //K, walls will take damage if they're next to a fire hotter than this var/repair_materials = list("wood"= 0.075, "metal" = 0.15, "plasteel" = 0.3) //Max health % recovered on a nailgun repair var/d_state = 0 //Normal walls are now as difficult to remove as reinforced walls - var/obj/effect/acid_hole/acided_hole //the acid hole inside the wall + /// the acid hole inside the wall + var/obj/effect/acid_hole/acided_hole var/acided_hole_dir = SOUTH var/special_icon = 0 @@ -73,7 +76,7 @@ . = ..() if(.) //successful turf change var/turf/T - for(var/i in cardinal) + for(var/i in GLOB.cardinals) T = get_step(src, i) //nearby glowshrooms updated @@ -88,7 +91,7 @@ if(istype(found_object, /obj/structure/sign/poster)) var/obj/structure/sign/poster/found_poster = found_object found_poster.roll_and_drop(src) - if(istype(found_object, /obj/effect/alien/weeds)) + if(istype(found_object, /obj/effect/alien/weeds/weedwall)) qdel(found_object) var/list/turf/cardinal_neighbors = list(get_step(src, NORTH), get_step(src, SOUTH), get_step(src, EAST), get_step(src, WEST)) @@ -178,7 +181,7 @@ switch(d_state) if(WALL_STATE_WELD) - . += SPAN_INFO("The outer plating is intact. A blowtorch should slice it open.") + . += SPAN_INFO("The outer plating is intact. If you are not on help intent, a blowtorch should slice it open.") if(WALL_STATE_SCREW) . += SPAN_INFO("The outer plating has been sliced open. A screwdriver should remove the support lines.") if(WALL_STATE_WIRECUTTER) @@ -298,7 +301,7 @@ break if(thermite > (damage_cap - damage)/100) // Thermite gains a speed buff when the amount is overkill - var/timereduction = round((thermite - (damage_cap - damage)/100)/5) // Every 5 units over the required amount reduces the sleep by 0.1s + var/timereduction = floor((thermite - (damage_cap - damage)/100)/5) // Every 5 units over the required amount reduces the sleep by 0.1s sleep(max(2, 20 - timereduction)) else sleep(20) @@ -338,7 +341,7 @@ var/mob/living/carbon/xenomorph/user_as_xenomorph = user user_as_xenomorph.do_nesting_host(attacker_grab.grabbed_thing, src) - if(!ishuman(user) && !isrobot(user)) + if(!ishuman(user)) to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!")) return @@ -482,13 +485,15 @@ /turf/closed/wall/proc/try_weldingtool_usage(obj/item/W, mob/user) if(!damage || !iswelder(W)) return FALSE + if(user.a_intent != INTENT_HELP) + return FALSE var/obj/item/tool/weldingtool/WT = W if(WT.remove_fuel(0, user)) user.visible_message(SPAN_NOTICE("[user] starts repairing the damage to [src]."), SPAN_NOTICE("You start repairing the damage to [src].")) playsound(src, 'sound/items/Welder.ogg', 25, 1) - if(do_after(user, max(5, round(damage / 5) * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION)), INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && istype(src, /turf/closed/wall) && WT && WT.isOn()) + if(do_after(user, max(5, floor(damage / 5) * user.get_skill_duration_multiplier(SKILL_CONSTRUCTION)), INTERRUPT_ALL, BUSY_ICON_FRIENDLY) && istype(src, /turf/closed/wall) && WT && WT.isOn()) user.visible_message(SPAN_NOTICE("[user] finishes repairing the damage to [src]."), SPAN_NOTICE("You finish repairing the damage to [src].")) take_damage(-damage) @@ -504,6 +509,8 @@ if(!(WT.remove_fuel(0, user))) to_chat(user, SPAN_WARNING("You need more welding fuel!")) return + if(user.a_intent == INTENT_HELP) + return playsound(src, 'sound/items/Welder.ogg', 25, 1) user.visible_message(SPAN_NOTICE("[user] begins slicing through the outer plating."), @@ -562,7 +569,7 @@ // Check again for presence of objects if(!material || (material != user.l_hand && material != user.r_hand) || material.amount <= 0) - to_chat(user, SPAN_WARNING("You seems to have misplaced the repair material!")) + to_chat(user, SPAN_WARNING("You seem to have misplaced the repair material!")) return FALSE if(!NG.in_chamber || !NG.current_mag || NG.current_mag.current_rounds < (4*amount_needed-1)) diff --git a/code/game/verbs/discord.dm b/code/game/verbs/discord.dm index 210038084c..2446c89aaf 100644 --- a/code/game/verbs/discord.dm +++ b/code/game/verbs/discord.dm @@ -29,7 +29,7 @@ var/datum/entity/discord_identifier/new_identifier = DB_ENTITY(/datum/entity/discord_identifier) var/not_unique = TRUE - var/long_list = operation_postfixes + operation_prefixes + operation_titles + var/long_list = GLOB.operation_postfixes + GLOB.operation_prefixes + GLOB.operation_titles var/token while(not_unique) diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index 1d5ad124b8..c57a63c716 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -7,6 +7,9 @@ to_chat(src, "Guests may not use OOC.") return + if(!filter_message(src, msg)) + return + msg = trim(strip_html(msg)) if(!msg) return @@ -15,10 +18,10 @@ return if(!admin_holder || !(admin_holder.rights & R_MOD)) - if(!ooc_allowed) //Send to LOOC instead + if(!GLOB.ooc_allowed) //Send to LOOC instead looc(msg) return - if(!dooc_allowed && (mob.stat == DEAD || isobserver(mob))) + if(!GLOB.dooc_allowed && (mob.stat == DEAD || isobserver(mob))) to_chat(usr, SPAN_DANGER("OOC for dead mobs has been turned off.")) return if(prefs.muted & MUTE_OOC) @@ -92,6 +95,9 @@ to_chat(src, "Guests may not use LOOC.") return + if(!filter_message(src, msg)) + return + msg = trim(strip_html(msg)) if(!msg) return @@ -100,10 +106,10 @@ return if(!admin_holder || !(admin_holder.rights & R_MOD)) - if(!looc_allowed) + if(!GLOB.looc_allowed) to_chat(src, SPAN_DANGER("LOOC is globally muted")) return - if(!dlooc_allowed && (mob.stat != CONSCIOUS || isobserver(mob))) + if(!GLOB.dlooc_allowed && (mob.stat != CONSCIOUS || isobserver(mob))) to_chat(usr, SPAN_DANGER("Sorry, you cannot utilize LOOC while dead or incapacitated.")) return if(prefs.muted & MUTE_OOC) @@ -142,7 +148,7 @@ if(C.prefs.toggles_chat & CHAT_LOOC) to_chat(C, "LOOC: [display_name]: [msg]") - if(mob.looc_overhead || ooc_allowed) + if(mob.looc_overhead || GLOB.ooc_allowed) var/transmit_language = isxeno(mob) ? LANGUAGE_XENOMORPH : LANGUAGE_ENGLISH mob.langchat_speech(msg, heard, GLOB.all_languages[transmit_language], "#ff47d7") @@ -209,7 +215,7 @@ if(!desired_width) // Calculate desired pixel width using window size and aspect ratio var/height = text2num(map_size[2]) - desired_width = round(height * aspect_ratio) + desired_width = floor(height * aspect_ratio) var/split_size = splittext(sizes["mainwindow.split.size"], "x") var/split_width = text2num(split_size[1]) diff --git a/code/game/verbs/records.dm b/code/game/verbs/records.dm index 18ed35ee63..3810bf7e99 100644 --- a/code/game/verbs/records.dm +++ b/code/game/verbs/records.dm @@ -1,10 +1,8 @@ -//CO Whitelist is '1', Synthetic Whitelist is '2', Yautja Whitelist is '3'. - /client/verb/own_records() set name = "View Own Records" set category = "OOC.Records" - var/list/options = list("Admin", "Merit", "Commanding Officer", "Synthetic", "Yautja") + var/list/options = list("Admin", "Merit", "Whitelist") var/choice = tgui_input_list(usr, "What record do you wish to view?", "Record Choice", options) switch(choice) @@ -12,12 +10,8 @@ show_own_notes(NOTE_ADMIN, choice) if("Merit") show_own_notes(NOTE_MERIT, choice) - if("Commanding Officer") - show_own_notes(NOTE_COMMANDER, choice) - if("Synthetic") - show_own_notes(NOTE_SYNTHETIC, choice) - if("Yautja") - show_own_notes(NOTE_YAUTJA, choice) + if("Whitelist") + show_own_notes(NOTE_WHITELIST, choice) else return to_chat(usr, SPAN_NOTICE("Displaying your [choice] Record.")) @@ -46,12 +40,8 @@ switch(note_category) if(NOTE_MERIT) color = "#9e3dff" - if(NOTE_COMMANDER) + if(NOTE_WHITELIST) color = "#324da5" - if(NOTE_SYNTHETIC) - color = "#39e7a4" - if(NOTE_YAUTJA) - color = "#114e11" dat += "[N.text] by [admin_ckey] ([N.admin_rank]) on [N.date] [NOTE_ROUND_ID(N)] " dat += "

      " @@ -69,24 +59,23 @@ //Contributions and suggestions are welcome. //Kindly, forest2001 -/client/verb/other_records() +/client/proc/other_records() set name = "View Target Records" set category = "OOC.Records" ///Management Access - var/MA + var/manager = FALSE ///Edit Access - var/edit_C = FALSE - var/edit_S = FALSE - var/edit_Y = FALSE + var/add_wl = FALSE + var/del_wl = FALSE ///Note category options var/list/options = list() if(CLIENT_IS_STAFF(src)) - options = note_categories.Copy() + options = GLOB.note_categories.Copy() if(admin_holder.rights & R_PERMISSIONS) - MA = TRUE + manager = TRUE else if(!isCouncil(src)) to_chat(usr, SPAN_WARNING("Error: you are not authorised to view the records of another player!")) return @@ -97,15 +86,11 @@ return target = ckey(target) - if(RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_COMMANDER_COUNCIL) - options |= "Commanding Officer" - edit_C = TRUE - if(RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_SYNTHETIC_COUNCIL) - options |= "Synthetic" - edit_S = TRUE - if(RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_YAUTJA_COUNCIL) - options |= "Yautja" - edit_Y = TRUE + if(manager || isCouncil(src)) + options |= "Whitelist" + add_wl = TRUE + if(manager || isSenator(src)) + del_wl = TRUE var/choice = tgui_input_list(usr, "What record do you wish to view?", "Record Choice", options) if(!choice) @@ -115,21 +100,8 @@ show_other_record(NOTE_ADMIN, choice, target, TRUE) if("Merit") show_other_record(NOTE_MERIT, choice, target, TRUE) - if("Commanding Officer") - if(MA || (RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_COMMANDER_LEADER)) - show_other_record(NOTE_COMMANDER, choice, target, TRUE, TRUE) - else - show_other_record(NOTE_COMMANDER, choice, target, edit_C) - if("Synthetic") - if(MA || (RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_SYNTHETIC_LEADER)) - show_other_record(NOTE_SYNTHETIC, choice, target, TRUE, TRUE) - else - show_other_record(NOTE_SYNTHETIC, choice, target, edit_S) - if("Yautja") - if(MA || (RoleAuthority.roles_whitelist[src.ckey] & WHITELIST_YAUTJA_LEADER)) - show_other_record(NOTE_YAUTJA, choice, target, TRUE, TRUE) - else - show_other_record(NOTE_YAUTJA, choice, target, edit_Y) + if("Whitelist") + show_other_record(NOTE_WHITELIST, choice, target, add_wl, del_wl) to_chat(usr, SPAN_NOTICE("Displaying [target]'s [choice] notes.")) @@ -148,15 +120,9 @@ if(NOTE_MERIT) color = "#9e3dff" add_dat = "Add Merit Note
      " - if(NOTE_COMMANDER) + if(NOTE_WHITELIST) color = "#324da5" - add_dat = "Add Commander Note
      " - if(NOTE_SYNTHETIC) - color = "#39e7a4" - add_dat = "Add Synthetic Note
      " - if(NOTE_YAUTJA) - color = "#114e11" - add_dat = "Add Yautja Note
      " + add_dat = "Add Whitelist Note
      " var/list/datum/view_record/note_view/NL = DB_VIEW(/datum/view_record/note_view, DB_COMP("player_ckey", DB_EQUALS, target)) for(var/datum/view_record/note_view/N as anything in NL) @@ -181,3 +147,72 @@ dat += "" show_browser(src, dat, "[target]'s [category_text] Notes", "otherplayersinfo", "size=480x480") + +GLOBAL_DATUM_INIT(medals_view_tgui, /datum/medals_view_tgui, new) + + +/datum/medals_view_tgui/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "MedalsViewer", "[user.ckey]'s Medals") + ui.open() + +/datum/medals_view_tgui/ui_static_data(mob/user) + . = ..() + .["medals"] = list() + + for(var/datum/view_record/medal_view/medal as anything in get_medals(user)) + var/xeno_medal = FALSE + if(medal.medal_type in GLOB.xeno_medals) + xeno_medal = TRUE + + var/list/current_medal = list( + "round_id" = medal.round_id, + "medal_type" = medal.medal_type, + "medal_icon" = replacetext(medal.medal_type, " ", "-"), + "xeno_medal" = xeno_medal, + "recipient_name" = medal.recipient_name, + "recipient_role" = medal.recipient_role, + "giver_name" = medal.giver_name, + "citation" = medal.citation + ) + + .["medals"] += list(current_medal) + +/datum/medals_view_tgui/proc/get_medals(mob/user) + return DB_VIEW(/datum/view_record/medal_view, DB_COMP("player_id", DB_EQUALS, user.client.player_data.id)) + + +/datum/medals_view_tgui/ui_state(mob/user) + return GLOB.always_state + +/datum/medals_view_tgui/ui_assets(mob/user) + return list( + get_asset_datum(/datum/asset/spritesheet/medal) + ) + +/client/verb/view_own_medals() + set name = "View Own Medals" + set category = "OOC.Records" + + GLOB.medals_view_tgui.tgui_interact(mob) + +GLOBAL_DATUM_INIT(medals_view_given_tgui, /datum/medals_view_tgui/given_medals, new) + + +/datum/medals_view_tgui/given_medals/get_medals(mob/user) + return DB_VIEW(/datum/view_record/medal_view, DB_COMP("giver_player_id", DB_EQUALS, user.client.player_data.id)) + + +/datum/medals_view_tgui/given_medals/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "MedalsViewer", "[user.ckey]'s Given Medals") + ui.open() + + +/client/verb/view_given_medals() + set name = "View Medals Given to Others" + set category = "OOC.Records" + + GLOB.medals_view_given_tgui.tgui_interact(mob) diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm deleted file mode 100644 index 7c647f5dcf..0000000000 --- a/code/game/verbs/who.dm +++ /dev/null @@ -1,202 +0,0 @@ -/client/verb/who()//likely don't touch any... this is easy can die. (:troll_fale:) - set name = "Who" - set category = "OOC" - - var/list/counted_humanoids = list( - "Observers" = 0, - "Admin observers" = 0, - "Humans" = 0, - "Infected humans" = 0, - FACTION_MARINE = 0, - "USCM Marines" = 0, - "Lobby" = 0, - - FACTION_YAUTJA = 0, - "Infected preds" = 0, - - FACTION_PMC = 0, - FACTION_CLF = 0, - FACTION_UPP = 0, - FACTION_FREELANCER = 0, - FACTION_SURVIVOR = 0, - FACTION_WY_DEATHSQUAD = 0, - FACTION_COLONIST = 0, - FACTION_MERCENARY = 0, - FACTION_DUTCH = 0, - FACTION_HEFA = 0, - FACTION_GLADIATOR = 0, - FACTION_PIRATE = 0, - FACTION_PIZZA = 0, - FACTION_SOUTO = 0, - - FACTION_NEUTRAL = 0, - - FACTION_ZOMBIE = 0 - ) - - var/list/counted_xenos = list() - - var/players = length(GLOB.clients) - - var/dat = "Current Players:
      " - var/list/Lines = list() - if(admin_holder && ((R_ADMIN & admin_holder.rights) || (R_MOD & admin_holder.rights))) - for(var/client/C in GLOB.clients) - var/entry = "[C.key]" - if(C.mob) //Juuuust in case - if(istype(C.mob, /mob/new_player)) - entry += " - In Lobby" - counted_humanoids["Lobby"]++ - else - entry += " - Playing as [C.mob.real_name]" - - if(isobserver(C.mob)) - counted_humanoids["Observers"]++ - if(C.admin_holder?.rights & R_MOD) - counted_humanoids["Admin observers"]++ - counted_humanoids["Observers"]-- - var/mob/dead/observer/O = C.mob - if(O.started_as_observer) - entry += " - Observing" - else - entry += " - DEAD" - else - switch(C.mob.stat) - if(UNCONSCIOUS) - entry += " - Unconscious" - if(DEAD) - entry += " - DEAD" - - if(C.mob && C.mob.stat != DEAD) - if(ishuman(C.mob)) - if(C.mob.faction == FACTION_ZOMBIE) - counted_humanoids[FACTION_ZOMBIE]++ - entry += " - Zombie" - else if(C.mob.faction == FACTION_YAUTJA) - counted_humanoids[FACTION_YAUTJA]++ - entry += " - Predator" - if(C.mob.status_flags & XENO_HOST) - counted_humanoids["Infected preds"]++ - else - counted_humanoids["Humans"]++ - if(C.mob.status_flags & XENO_HOST) - counted_humanoids["Infected humans"]++ - if(C.mob.faction == FACTION_MARINE) - counted_humanoids[FACTION_MARINE]++ - if(C.mob.job in (ROLES_MARINES)) - counted_humanoids["USCM Marines"]++ - else - counted_humanoids[C.mob.faction]++ - else if(isxeno(C.mob)) - var/mob/living/carbon/xenomorph/X = C.mob - counted_xenos[X.hivenumber]++ - if(X.faction == FACTION_PREDALIEN) - counted_xenos[FACTION_PREDALIEN]++ - entry += " - Xenomorph" - entry += " (?)" - Lines += entry - - for(var/line in sortList(Lines)) - dat += "[line]
      " - dat += "Total Players: [players]" - dat += "
      In Lobby: [counted_humanoids["Lobby"]]" - dat += "
      Observers: [counted_humanoids["Observers"]] players and [counted_humanoids["Admin observers"]] staff members" - dat += "
      Humans: [counted_humanoids["Humans"]] (Infected: [counted_humanoids["Infected humans"]])" - if(counted_humanoids[FACTION_MARINE]) - dat += "
      USCM personnel: [counted_humanoids[FACTION_MARINE]] (Marines: [counted_humanoids["USCM Marines"]])" - if(counted_humanoids[FACTION_YAUTJA]) - dat += "
      Predators: [counted_humanoids[FACTION_YAUTJA]] [counted_humanoids["Infected preds"] ? "(Infected: [counted_humanoids["Infected preds"]])" : ""]" - if(counted_humanoids[FACTION_ZOMBIE]) - dat += "
      Zombies: [counted_humanoids[FACTION_ZOMBIE]]" - - var/show_fact = TRUE - for(var/i in 10 to LAZYLEN(counted_humanoids) - 2) - if(counted_humanoids[counted_humanoids[i]]) - if(show_fact) - dat += "

      Other factions:" - show_fact = FALSE - dat += "
      [counted_humanoids[i]]: [counted_humanoids[counted_humanoids[i]]]" - if(counted_humanoids[FACTION_NEUTRAL]) - dat += "
      [FACTION_NEUTRAL] Humans: [counted_humanoids[FACTION_NEUTRAL]]" - - show_fact = TRUE - var/datum/hive_status/hive - for(var/hivenumber in counted_xenos) - // Print predalien counts last - if(hivenumber == FACTION_PREDALIEN) - continue - if(show_fact) - dat += "

      Xenomorphs:" - show_fact = FALSE - hive = GLOB.hive_datum[hivenumber] - if(hive) - dat += "
      [hive.name]: [counted_xenos[hivenumber]] (Queen: [hive.living_xeno_queen ? "Alive" : "Dead"])" - else - dat += "
      Error: no hive datum detected for [hivenumber]." - hive = null - if(counted_xenos[FACTION_PREDALIEN]) - dat += "
      Predaliens: [counted_xenos[FACTION_PREDALIEN]]" - - else - for(var/client/C in GLOB.clients) - if(C.admin_holder && C.admin_holder.fakekey) - continue - - Lines += C.key - for(var/line in sortList(Lines)) - dat += "[line]
      " - dat += "Total Players: [players]
      " - - dat += "" - show_browser(usr, dat, "Who", "who", "size=600x800") - - -/client/proc/staffwho() - set name = "Staffwho" - set category = "Admin" - - var/dat = "" - var/list/mappings - if(CONFIG_GET(flag/show_manager)) - LAZYSET(mappings, "Management", R_PERMISSIONS) - if(CONFIG_GET(flag/show_devs)) - LAZYSET(mappings, "Maintainers", R_PROFILER) - LAZYSET(mappings, "Admins", R_ADMIN) - if(CONFIG_GET(flag/show_mods)) - LAZYSET(mappings, "Moderators", R_MOD) - if(CONFIG_GET(flag/show_mentors)) - LAZYSET(mappings, "Mentors", R_MENTOR) - - var/list/listings - for(var/category in mappings) - LAZYSET(listings, category, list()) - - for(var/client/C in GLOB.admins) - if(C.admin_holder?.fakekey && !CLIENT_IS_STAFF(src)) - continue - for(var/category in mappings) - if(CLIENT_HAS_RIGHTS(C, mappings[category])) - LAZYADD(listings[category], C) - break - - for(var/category in listings) - dat += "
      Current [category] ([length(listings[category])]):
      \n" - for(var/client/entry in listings[category]) - dat += "\t[entry.key] is a [entry.admin_holder.rank]" - if(entry.admin_holder.extra_titles?.len) - for(var/srank in entry.admin_holder.extra_titles) - dat += " & [srank]" - if(CLIENT_IS_STAFF(src)) - if(entry.admin_holder?.fakekey) - dat += " (HIDDEN)" - if(istype(entry.mob, /mob/dead/observer)) - dat += " - Observing" - else if(istype(entry.mob, /mob/new_player)) - dat += " - Lobby" - else - dat += " - Playing" - if(entry.is_afk()) - dat += " (AFK)" - dat += "
      " - dat += "" - show_browser(usr, dat, "Staffwho", "staffwho", "size=600x800") diff --git a/code/game/world.dm b/code/game/world.dm index f47840b52c..fb99d637dc 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -1,10 +1,8 @@ -var/world_view_size = 7 -var/lobby_view_size = 16 +GLOBAL_VAR_INIT(world_view_size, 7) +GLOBAL_VAR_INIT(lobby_view_size, 16) -var/internal_tick_usage = 0 - -var/list/reboot_sfx = file2list("config/reboot_sfx.txt") +GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt")) /world mob = /mob/new_player turf = /turf/open/space/basic @@ -18,7 +16,6 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") if (debug_server) call_ext(debug_server, "auxtools_init")() enable_debugging() - internal_tick_usage = 0.2 * world.tick_lag hub_password = "kMZy3U5jJHSiBQjr" #ifdef BYOND_TRACY @@ -49,8 +46,6 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") LoadBans() load_motd() load_tm_message() - load_mode() - loadShuttleInfoDatums() populate_gear_list() initialize_global_regex() @@ -67,8 +62,8 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") // Only do offline sleeping when the server isn't running unit tests or hosting a local dev test sleep_offline = (!running_tests && !testing_locally) - if(!RoleAuthority) - RoleAuthority = new /datum/authority/branch/role() + if(!GLOB.RoleAuthority) + GLOB.RoleAuthority = new /datum/authority/branch/role() to_world(SPAN_DANGER("\b Job setup complete")) initiate_minimap_icons() @@ -95,14 +90,10 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") GLOB.obfs_x = rand(-500, 500) //A number between -100 and 100 GLOB.obfs_y = rand(-500, 500) //A number between -100 and 100 - spawn(3000) //so we aren't adding to the round-start lag - if(CONFIG_GET(flag/ToRban)) - ToRban_autoupdate() - // If the server's configured for local testing, get everything set up ASAP. // Shamelessly stolen from the test manager's host_tests() proc if(testing_locally) - master_mode = "Extended" + GLOB.master_mode = "Extended" // Wait for the game ticker to initialize while(!SSticker.initialized) @@ -112,9 +103,6 @@ var/list/reboot_sfx = file2list("config/reboot_sfx.txt") SSticker.request_start() return -var/world_topic_spam_protect_ip = "0.0.0.0" -var/world_topic_spam_protect_time = world.timeofday - /proc/start_logging() GLOB.round_id = SSentity_manager.round.id @@ -126,7 +114,7 @@ var/world_topic_spam_protect_time = world.timeofday GLOB.log_directory += "[replacetext(time_stamp(), ":", ".")]" runtime_logging_ready = TRUE // Setting up logging now, so disabling early logging - #ifndef UNIT_TESTS + #if !defined(UNIT_TESTS) && !defined(AUTOWIKI) world.log = file("[GLOB.log_directory]/dd.log") #endif backfill_runtime_log() @@ -141,7 +129,7 @@ var/world_topic_spam_protect_time = world.timeofday GLOB.round_stats = "[GLOB.log_directory]/round_stats.log" GLOB.scheduler_stats = "[GLOB.log_directory]/round_scheduler_stats.log" GLOB.mapping_log = "[GLOB.log_directory]/mapping.log" - GLOB.mutator_logs = "[GLOB.log_directory]/mutator_logs.log" + GLOB.strain_logs = "[GLOB.log_directory]/strain_logs.log" start_log(GLOB.tgui_log) start_log(GLOB.world_href_log) @@ -151,7 +139,7 @@ var/world_topic_spam_protect_time = world.timeofday start_log(GLOB.round_stats) start_log(GLOB.scheduler_stats) start_log(GLOB.mapping_log) - start_log(GLOB.mutator_logs) + start_log(GLOB.strain_logs) if(fexists(GLOB.config_error_log)) fcopy(GLOB.config_error_log, "[GLOB.log_directory]/config_error.log") @@ -260,44 +248,29 @@ var/world_topic_spam_protect_time = world.timeofday shutdown() /world/proc/send_tgs_restart() - if(CONFIG_GET(string/new_round_alert_channel) && CONFIG_GET(string/new_round_alert_role_id)) - if(round_statistics) - send2chat("[round_statistics.round_name][GLOB.round_id ? " (Round [GLOB.round_id])" : ""] completed!", CONFIG_GET(string/new_round_alert_channel)) - if(SSmapping.next_map_configs) - var/datum/map_config/next_map = SSmapping.next_map_configs[GROUND_MAP] - if(next_map) - send2chat("<@&[CONFIG_GET(string/new_round_alert_role_id)]> Restarting! Next map is [next_map.map_name]", CONFIG_GET(string/new_round_alert_channel)) - else - send2chat("<@&[CONFIG_GET(string/new_round_alert_role_id)]> Restarting!", CONFIG_GET(string/new_round_alert_channel)) - return + if(!CONFIG_GET(string/new_round_alert_channel)) + return + + if(!GLOB.round_statistics) + return + + send2chat(new /datum/tgs_message_content("[GLOB.round_statistics.round_name][GLOB.round_id ? " (Round [GLOB.round_id])" : ""] completed!"), CONFIG_GET(string/new_round_alert_channel)) /world/proc/send_reboot_sound() - var/reboot_sound = SAFEPICK(reboot_sfx) + var/reboot_sound = SAFEPICK(GLOB.reboot_sfx) if(reboot_sound) var/sound/reboot_sound_ref = sound(reboot_sound) for(var/client/client as anything in GLOB.clients) if(client?.prefs.toggles_sound & SOUND_REBOOT) SEND_SOUND(client, reboot_sound_ref) -/world/proc/load_mode() - var/list/Lines = file2list("data/mode.txt") - if(Lines.len) - if(Lines[1]) - master_mode = Lines[1] - log_misc("Saved mode is '[master_mode]'") - -/world/proc/save_mode(the_mode) - var/F = file("data/mode.txt") - fdel(F) - F << the_mode - /world/proc/load_motd() - join_motd = file2text("config/motd.txt") + GLOB.join_motd = file2text("config/motd.txt") /world/proc/load_tm_message() var/datum/getrev/revdata = GLOB.revdata - if(revdata.testmerge.len) - current_tms = revdata.GetTestMergeInfo() + if(length(revdata.testmerge)) + GLOB.current_tms = revdata.GetTestMergeInfo() /world/proc/update_status() //Note: Hub content is limited to 254 characters, including limited HTML/CSS. @@ -312,32 +285,10 @@ var/world_topic_spam_protect_time = world.timeofday world.status = s -#define FAILED_DB_CONNECTION_CUTOFF 1 -var/failed_db_connections = 0 -var/failed_old_db_connections = 0 - -// /hook/startup/proc/connectDB() -// if(!setup_database_connection()) -// world.log << "Your server failed to establish a connection with the feedback database." -// else -// world.log << "Feedback database connection established." -// return 1 - -var/datum/BSQL_Connection/connection -/proc/setup_database_connection() - - if(failed_db_connections > FAILED_DB_CONNECTION_CUTOFF) //If it failed to establish a connection more than 5 times in a row, don't bother attempting to conenct anymore. - return 0 - - - return . - /proc/set_global_view(view_size) - world_view_size = view_size + GLOB.world_view_size = view_size for(var/client/c in GLOB.clients) - c.view = world_view_size - -#undef FAILED_DB_CONNECTION_CUTOFF + c.view = GLOB.world_view_size /proc/give_image_to_client(obj/O, icon_text) var/image/I = image(null, O) @@ -381,9 +332,7 @@ var/datum/BSQL_Connection/connection if(!map_load_z_cutoff) return // var/area/global_area = GLOB.areas_by_type[world.area] // We're guaranteed to be touching the global area, so we'll just do this -// var/list/to_add = block( -// locate(old_max + 1, 1, 1), -// locate(maxx, maxy, map_load_z_cutoff)) +// var/list/to_add = block(old_max + 1, 1, 1, maxx, maxy, map_load_z_cutoff) // global_area.contained_turfs += to_add /world/proc/increase_max_y(new_maxy, map_load_z_cutoff = maxz) @@ -394,9 +343,7 @@ var/datum/BSQL_Connection/connection if(!map_load_z_cutoff) return // var/area/global_area = GLOB.areas_by_type[world.area] // We're guarenteed to be touching the global area, so we'll just do this -// var/list/to_add = block( -// locate(1, old_maxy + 1, 1), -// locate(maxx, maxy, map_load_z_cutoff)) +// var/list/to_add = block(1, old_maxy + 1, 1, maxx, maxy, map_load_z_cutoff) // global_area.contained_turfs += to_add /world/proc/incrementMaxZ() diff --git a/code/global.dm b/code/global.dm index 3ed9249ca6..09e5f47d60 100644 --- a/code/global.dm +++ b/code/global.dm @@ -37,140 +37,9 @@ #define CLIENT_HAS_RIGHTS(cli, flags) ((cli?.admin_holder?.rights & flags) == flags) #define CLIENT_IS_STAFF(cli) (cli?.admin_holder?.rights & (R_MOD|R_ADMIN)) #define CLIENT_IS_MENTOR(cli) CLIENT_HAS_RIGHTS(cli, R_MENTOR) +#define CLIENT_IS_STEALTHED(cli) (CLIENT_HAS_RIGHTS(cli, R_STEALTH) && cli.prefs?.toggles_admin & ADMIN_STEALTHMODE) #define AHOLD_IS_MOD(ahold) (ahold && (ahold.rights & R_MOD)) #define AHOLD_IS_ADMIN(ahold) (ahold && (ahold.rights & R_ADMIN)) //items that ask to be called every cycle - -////////////// -var/list/paper_tag_whitelist = list("center","p","div","span","h1","h2","h3","h4","h5","h6","hr","pre", \ - "big","small","font","i","u","b","s","sub","sup","tt","br","hr","ol","ul","li","caption","col", \ - "table","td","th","tr") - -/////////////// - -var/command_name = "Central Command" -var/station_name = "[MAIN_SHIP_NAME]" -var/game_version = "Colonial Marines" -var/game_year = 2182 - -var/going = 1 -var/master_mode = "Distress Signal" - -/// If this is anything but "secret", the secret rotation will forceably choose this mode. -var/secret_force_mode = "secret" - -var/host = null -var/ooc_allowed = 1 -var/looc_allowed = 1 -var/dsay_allowed = 1 -var/dooc_allowed = 1 -var/dlooc_allowed = 0 -var/abandon_allowed = 1 -var/enter_allowed = 1 -var/shuttle_frozen = 0 -var/shuttle_left = 0 -var/midi_playing = 0 -var/heard_midi = 0 -var/total_silenced = 0 - -var/list/admin_log = list() -var/list/asset_log = list() - -var/CELLRATE = 0.006 // multiplier for watts per tick <> cell storage (eg: 0.02 means if there is a load of 1000 watts, 20 units will be taken from a cell per second) - //It's a conversion constant. power_used*CELLRATE = charge_provided, or charge_used/CELLRATE = power_provided -var/CHARGELEVEL = 0.001 // Cap for how fast cells charge, as a percentage-per-tick (0.01 means cellcharge is capped to 1% per second) - -var/VehicleElevatorConsole -var/VehicleGearConsole - -//Spawnpoints. -var/list/fallen_list = list() -/// This is for dogtags placed on crosses- they will show up at the end-round memorial. -var/list/fallen_list_cross = list() -var/list/cardinal = list(NORTH, SOUTH, EAST, WEST) -var/list/diagonals = list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST) -var/list/alldirs = list(NORTH, SOUTH, EAST, WEST, NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST) -var/list/reverse_dir = list(2, 1, 3, 8, 10, 9, 11, 4, 6, 5, 7, 12, 14, 13, 15, 32, 34, 33, 35, 40, 42, 41, 43, 36, 38, 37, 39, 44, 46, 45, 47, 16, 18, 17, 19, 24, 26, 25, 27, 20, 22, 21, 23, 28, 30, 29, 31, 48, 50, 49, 51, 56, 58, 57, 59, 52, 54, 53, 55, 60, 62, 61, 63) - -var/list/combatlog = list() -var/list/IClog = list() -var/list/OOClog = list() -var/list/adminlog = list() - -var/Debug = 0 // global debug switch - -var/datum/moduletypes/mods = new() - -var/join_motd = null -var/current_tms - -// nanomanager, the manager for Nano UIs -var/datum/nanomanager/nanomanager = new() - -var/list/BorgWireColorToFlag = RandomBorgWires() -var/list/BorgIndexToFlag -var/list/BorgIndexToWireColor -var/list/BorgWireColorToIndex -var/list/AAlarmWireColorToFlag = RandomAAlarmWires() -var/list/AAlarmIndexToFlag -var/list/AAlarmIndexToWireColor -var/list/AAlarmWireColorToIndex - -//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam -#define MAX_MESSAGE_LEN 1024 -#define MAX_EMOTE_LEN 1024 -#define MAX_PAPER_MESSAGE_LEN 3072 -#define MAX_BOOK_MESSAGE_LEN 9216 -#define MAX_NAME_LEN 28 - -/// 3 minutes in the station. -#define shuttle_time_in_station 3 MINUTES -/// 10 minutes to arrive. -#define shuttle_time_to_arrive 10 MINUTES - - // MySQL configuration - -var/sqladdress = "localhost" -var/sqlport = "3306" -var/sqldb = "cmdb" -var/sqllogin = "root" -var/sqlpass = "" - - - // For FTP requests. (i.e. downloading runtime logs.) - // However it'd be ok to use for accessing attack logs and such too, which are even laggier. -var/fileaccess_timer = 0 - -// Reference list for disposal sort junctions. Filled up by sorting junction's New() -/var/list/tagger_locations = list() - -//added for Xenoarchaeology, might be useful for other stuff -var/list/alphabet_uppercase = list("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z") -var/list/alphabet_lowercase = list("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z") - -var/list/greek_letters = list("Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta", "Theta", "Iota", "Kappa", "Lambda", "Mu", "Nu", "Xi", "Omnicron", "Pi", "Rho", "Sigma", "Tau", "Upsilon", "Phi", "Chi", "Psi", "Omega") -var/list/nato_phonetic_alphabet = list("Alpha", "Bravo", "Charlie", "Delta", "Echo", "Foxtrot", "Golf", "Hotel", "India", "Juliett", "Kilo", "Lima", "Mike", "November", "Oscar", "Papa", "Quebec", "Romeo", "Sierra", "Tango", "Uniform", "Victor", "Whiskey", "X-Ray", "Yankee", "Zulu") - -//Used for autocall procs on ERT -var/distress_cancel = 0 -var/destroy_cancel = 0 - -// Which lobby art is on display -// This is updated by the lobby art turf when it initializes -var/displayed_lobby_art = -1 - -// Last global ID that was assigned to a mob (for round recording purposes) -var/last_mob_gid = 0 - -// be careful messing with this. the section names are hardcoded here, while defines are used everywhere else -// see the big commented block for an explanation -var/list/almayer_ship_sections = list( - "Upper deck Foreship", - "Upper deck Midship", - "Upper deck Aftship", - "Lower deck Foreship", - "Lower deck Midship", - "Lower deck Aftship" -) diff --git a/code/js/byjax.dm b/code/js/byjax.dm deleted file mode 100644 index 8e196ef013..0000000000 --- a/code/js/byjax.dm +++ /dev/null @@ -1,50 +0,0 @@ -//this function places received data into element with specified id. -var/const/js_byjax = {" - -function replaceContent() { - var args = Array.prototype.slice.call(arguments); - var id = args\[0\]; - var content = args\[1\]; - var callback = null; - if(args\[2\]){ - callback = args\[2\]; - if(args\[3\]){ - args = args.slice(3); - } - } - var parent = document.getElementById(id); - if(typeof(parent)!=='undefined' && parent!=null){ - parent.innerHTML = content?content:''; - } - if(callback && window\[callback\]){ - window\[callback\].apply(null,args); - } -} -"} - -/* -sends data to control_id:replaceContent - -receiver - mob -control_id - window id (for windows opened with browse(), it'll be "windowname.browser") -target_element - HTML element id -new_content - HTML content -callback - js function that will be called after the data is sent -callback_args - arguments for callback function - -Be sure to include required js functions in your page, or it'll raise an exception. -*/ -/proc/send_byjax(receiver, control_id, target_element, new_content=null, callback=null, list/callback_args=null) - if(receiver && target_element && control_id) // && winexists(receiver, control_id)) - var/list/argums = list(target_element, new_content) - if(callback) - argums += callback - if(callback_args) - argums += callback_args - argums = list2params(argums) -/* if(callback_args) - argums += "&[list2params(callback_args)]" -*/ - receiver << output(argums,"[control_id]:replaceContent") - return - diff --git a/code/js/menus.dm b/code/js/menus.dm deleted file mode 100644 index 0064522c2f..0000000000 --- a/code/js/menus.dm +++ /dev/null @@ -1,37 +0,0 @@ -var/const/js_dropdowns = {" -function dropdowns() { - var divs = document.getElementsByTagName('div'); - var headers = new Array(); - var links = new Array(); - for(var i=0;i=0) { - elem.className = elem.className.replace('visible','hidden'); - this.className = this.className.replace('open','closed'); - this.innerHTML = this.innerHTML.replace('-','+'); - } - else { - elem.className = elem.className.replace('hidden','visible'); - this.className = this.className.replace('closed','open'); - this.innerHTML = this.innerHTML.replace('+','-'); - } - return false; - } - })(links\[i\]); - } - } -} -"} diff --git a/code/modules/admin/IsBanned.dm b/code/modules/admin/IsBanned.dm index c100e19a6d..c7d4b6fbbc 100644 --- a/code/modules/admin/IsBanned.dm +++ b/code/modules/admin/IsBanned.dm @@ -17,22 +17,16 @@ message_admins("Failed Login: [key] - Guests not allowed") return list("reason"="guest", "desc"="\nReason: Guests not allowed. Please sign in with a byond account.") + // wait for database to be ready WAIT_DB_READY - if(admin_datums[ckey] && (admin_datums[ckey].rights & R_MOD)) + if(GLOB.admin_datums[ckey] && (GLOB.admin_datums[ckey].rights & R_MOD)) return ..() - if(CONFIG_GET(number/limit_players) && CONFIG_GET(number/limit_players) < GLOB.clients.len) + if(CONFIG_GET(number/limit_players) && CONFIG_GET(number/limit_players) < length(GLOB.clients)) return list("reason"="POP CAPPED", "desc"="\nReason: Server is pop capped at the moment at [CONFIG_GET(number/limit_players)] players. Attempt reconnection in 2-3 minutes.") var/datum/entity/player/P = get_player_from_key(ckey) - //check if the IP address is a known TOR node - if(CONFIG_GET(flag/ToRban) && ToRban_isbanned(address)) - log_access("Failed Login: [src] - Banned: ToR") - message_admins("Failed Login: [src] - Banned: ToR") - return list("reason"="Using ToR", "desc"="\nReason: The network you are using to connect has been banned.\nIf you believe this is a mistake, please request help at [CONFIG_GET(string/banappeals)]") - - // wait for database to be ready . = P.check_ban(computer_id, address, is_telemetry) diff --git a/code/modules/admin/NewBan.dm b/code/modules/admin/NewBan.dm index aaf42cb17c..f6dfb96e66 100644 --- a/code/modules/admin/NewBan.dm +++ b/code/modules/admin/NewBan.dm @@ -1,75 +1,75 @@ -var/CMinutes = null -var/savefile/Banlist +GLOBAL_VAR(CMinutes) +GLOBAL_DATUM(Banlist, /savefile) /proc/CheckBan(ckey, id, address) - if(!Banlist) // if Banlist cannot be located for some reason + if(!GLOB.Banlist) // if GLOB.Banlist cannot be located for some reason LoadBans() // try to load the bans - if(!Banlist) // uh oh, can't find bans! + if(!GLOB.Banlist) // uh oh, can't find bans! return 0 // ABORT ABORT ABORT . = list() var/appeal if(CONFIG_GET(string/banappeals)) appeal = "\nFor more information on your ban, or to appeal, head to [CONFIG_GET(string/banappeals)]" - Banlist.cd = "/base" - if( "[ckey][id]" in Banlist.dir ) - Banlist.cd = "[ckey][id]" - if (Banlist["temp"]) - if (!GetExp(Banlist["minutes"])) + GLOB.Banlist.cd = "/base" + if( "[ckey][id]" in GLOB.Banlist.dir ) + GLOB.Banlist.cd = "[ckey][id]" + if (GLOB.Banlist["temp"]) + if (!GetExp(GLOB.Banlist["minutes"])) ClearTempbans() return 0 else - .["desc"] = "\nReason: [Banlist["reason"]]\nExpires: [GetExp(Banlist["minutes"])]\nBy: [Banlist["bannedby"]][appeal]" + .["desc"] = "\nReason: [GLOB.Banlist["reason"]]\nExpires: [GetExp(GLOB.Banlist["minutes"])]\nBy: [GLOB.Banlist["bannedby"]][appeal]" else - Banlist.cd = "/base/[ckey][id]" - .["desc"] = "\nReason: [Banlist["reason"]]\nExpires: PERMENANT\nBy: [Banlist["bannedby"]][appeal]" + GLOB.Banlist.cd = "/base/[ckey][id]" + .["desc"] = "\nReason: [GLOB.Banlist["reason"]]\nExpires: PERMENANT\nBy: [GLOB.Banlist["bannedby"]][appeal]" .["reason"] = "ckey/id" return . else - for (var/A in Banlist.dir) - Banlist.cd = "/base/[A]" + for (var/A in GLOB.Banlist.dir) + GLOB.Banlist.cd = "/base/[A]" var/matches - if( ckey == Banlist["key"] ) + if( ckey == GLOB.Banlist["key"] ) matches += "ckey" - if( id == Banlist["id"] ) + if( id == GLOB.Banlist["id"] ) if(matches) matches += "/" matches += "id" - if( address == Banlist["ip"] ) + if( address == GLOB.Banlist["ip"] ) if(matches) matches += "/" matches += "ip" if(matches) - if(Banlist["temp"]) - if (!GetExp(Banlist["minutes"])) + if(GLOB.Banlist["temp"]) + if (!GetExp(GLOB.Banlist["minutes"])) ClearTempbans() return 0 else - .["desc"] = "\nReason: [Banlist["reason"]]\nExpires: [GetExp(Banlist["minutes"])]\nBy: [Banlist["bannedby"]][appeal]" + .["desc"] = "\nReason: [GLOB.Banlist["reason"]]\nExpires: [GetExp(GLOB.Banlist["minutes"])]\nBy: [GLOB.Banlist["bannedby"]][appeal]" else - .["desc"] = "\nReason: [Banlist["reason"]]\nExpires: PERMENANT\nBy: [Banlist["bannedby"]][appeal]" + .["desc"] = "\nReason: [GLOB.Banlist["reason"]]\nExpires: PERMENANT\nBy: [GLOB.Banlist["bannedby"]][appeal]" .["reason"] = matches return . return 0 /proc/UpdateTime() //No idea why i made this a proc. - CMinutes = (world.realtime / 10) / 60 + GLOB.CMinutes = (world.realtime / 10) / 60 return 1 /proc/LoadBans() - Banlist = new("data/banlist.bdb") - log_admin("Loading Banlist") + GLOB.Banlist = new("data/banlist.bdb") + log_admin("Loading GLOB.Banlist") - if (!length(Banlist.dir)) log_admin("Banlist is empty.") + if (!length(GLOB.Banlist.dir)) log_admin("GLOB.Banlist is empty.") - if (!Banlist.dir.Find("base")) - log_admin("Banlist missing base dir.") - Banlist.dir.Add("base") - Banlist.cd = "/base" - else if (Banlist.dir.Find("base")) - Banlist.cd = "/base" + if (!GLOB.Banlist.dir.Find("base")) + log_admin("GLOB.Banlist missing base dir.") + GLOB.Banlist.dir.Add("base") + GLOB.Banlist.cd = "/base" + else if (GLOB.Banlist.dir.Find("base")) + GLOB.Banlist.cd = "/base" ClearTempbans() return 1 @@ -77,64 +77,64 @@ var/savefile/Banlist /proc/ClearTempbans() UpdateTime() - Banlist.cd = "/base" - for (var/A in Banlist.dir) - Banlist.cd = "/base/[A]" - if (!Banlist["key"] || !Banlist["id"]) + GLOB.Banlist.cd = "/base" + for (var/A in GLOB.Banlist.dir) + GLOB.Banlist.cd = "/base/[A]" + if (!GLOB.Banlist["key"] || !GLOB.Banlist["id"]) RemoveBan(A) log_admin("Invalid Ban.") message_admins("Invalid Ban.") continue - if (!Banlist["temp"]) continue - if (CMinutes >= Banlist["minutes"]) RemoveBan(A) + if (!GLOB.Banlist["temp"]) continue + if (GLOB.CMinutes >= GLOB.Banlist["minutes"]) RemoveBan(A) return 1 /proc/AddBan(ckey, computerid, reason, bannedby, temp, minutes, address) - if(!Banlist) // if Banlist cannot be located for some reason + if(!GLOB.Banlist) // if GLOB.Banlist cannot be located for some reason LoadBans() // try to load the bans - if(!Banlist) // uh oh, can't find bans! + if(!GLOB.Banlist) // uh oh, can't find bans! return 0 // ABORT ABORT ABORT var/bantimestamp if (temp) UpdateTime() - bantimestamp = CMinutes + minutes + bantimestamp = GLOB.CMinutes + minutes - Banlist.cd = "/base" - if ( Banlist.dir.Find("[ckey][computerid]")) + GLOB.Banlist.cd = "/base" + if ( GLOB.Banlist.dir.Find("[ckey][computerid]")) RemoveBan("[ckey][computerid]") //have to remove dirs before processing - Banlist.dir.Add("[ckey][computerid]") - Banlist.cd = "/base/[ckey][computerid]" - Banlist["key"] << ckey - Banlist["id"] << computerid - Banlist["ip"] << address - Banlist["reason"] << reason - Banlist["bannedby"] << bannedby - Banlist["temp"] << temp + GLOB.Banlist.dir.Add("[ckey][computerid]") + GLOB.Banlist.cd = "/base/[ckey][computerid]" + GLOB.Banlist["key"] << ckey + GLOB.Banlist["id"] << computerid + GLOB.Banlist["ip"] << address + GLOB.Banlist["reason"] << reason + GLOB.Banlist["bannedby"] << bannedby + GLOB.Banlist["temp"] << temp if (temp) - Banlist["minutes"] << bantimestamp + GLOB.Banlist["minutes"] << bantimestamp return 1 /proc/RemoveBan(foldername) - if(!Banlist) // if Banlist cannot be located for some reason + if(!GLOB.Banlist) // if GLOB.Banlist cannot be located for some reason LoadBans() // try to load the bans - if(!Banlist) // uh oh, can't find bans! + if(!GLOB.Banlist) // uh oh, can't find bans! return 0 // ABORT ABORT ABORT var/key var/id - Banlist.cd = "/base/[foldername]" - Banlist["key"] >> key - Banlist["id"] >> id - Banlist.cd = "/base" + GLOB.Banlist.cd = "/base/[foldername]" + GLOB.Banlist["key"] >> key + GLOB.Banlist["id"] >> id + GLOB.Banlist.cd = "/base" - if (!Banlist.dir.Remove(foldername)) return 0 + if (!GLOB.Banlist.dir.Remove(foldername)) return 0 if(!usr) log_admin("Ban Expired: [key]") @@ -143,18 +143,18 @@ var/savefile/Banlist ban_unban_log_save("[key_name_admin(usr)] unbanned [key]") log_admin("[key_name_admin(usr)] unbanned [key]") message_admins("[key_name_admin(usr)] unbanned: [key]") - for (var/A in Banlist.dir) - Banlist.cd = "/base/[A]" - if (key == Banlist["key"] /*|| id == Banlist["id"]*/) - Banlist.cd = "/base" - Banlist.dir.Remove(A) + for (var/A in GLOB.Banlist.dir) + GLOB.Banlist.cd = "/base/[A]" + if (key == GLOB.Banlist["key"] /*|| id == GLOB.Banlist["id"]*/) + GLOB.Banlist.cd = "/base" + GLOB.Banlist.dir.Remove(A) continue return 1 /proc/GetExp(minutes as num) UpdateTime() - var/exp = minutes - CMinutes + var/exp = minutes - GLOB.CMinutes if (exp <= 0) return 0 else @@ -232,27 +232,27 @@ var/savefile/Banlist var/a = pick(1,0) var/b = pick(1,0) if(b) - Banlist.cd = "/base" - Banlist.dir.Add("trash[i]trashid[i]") - Banlist.cd = "/base/trash[i]trashid[i]" - Banlist["key"] << "trash[i]" + GLOB.Banlist.cd = "/base" + GLOB.Banlist.dir.Add("trash[i]trashid[i]") + GLOB.Banlist.cd = "/base/trash[i]trashid[i]" + GLOB.Banlist["key"] << "trash[i]" else - Banlist.cd = "/base" - Banlist.dir.Add("[last]trashid[i]") - Banlist.cd = "/base/[last]trashid[i]" - Banlist["key"] << last - Banlist["id"] << "trashid[i]" - Banlist["reason"] << "Trashban[i]." - Banlist["temp"] << a - Banlist["minutes"] << CMinutes + rand(1,2000) - Banlist["bannedby"] << "trashmin" + GLOB.Banlist.cd = "/base" + GLOB.Banlist.dir.Add("[last]trashid[i]") + GLOB.Banlist.cd = "/base/[last]trashid[i]" + GLOB.Banlist["key"] << last + GLOB.Banlist["id"] << "trashid[i]" + GLOB.Banlist["reason"] << "Trashban[i]." + GLOB.Banlist["temp"] << a + GLOB.Banlist["minutes"] << GLOB.CMinutes + rand(1,2000) + GLOB.Banlist["bannedby"] << "trashmin" last = "trash[i]" - Banlist.cd = "/base" + GLOB.Banlist.cd = "/base" /proc/ClearAllBans() - Banlist.cd = "/base" - for (var/A in Banlist.dir) + GLOB.Banlist.cd = "/base" + for (var/A in GLOB.Banlist.dir) RemoveBan(A) /client/proc/cmd_admin_do_ban(mob/M) diff --git a/code/modules/admin/STUI.dm b/code/modules/admin/STUI.dm index 87a2ca2cf1..0d143f63c8 100644 --- a/code/modules/admin/STUI.dm +++ b/code/modules/admin/STUI.dm @@ -40,7 +40,7 @@ GLOBAL_DATUM_INIT(STUI, /datum/STUI, new) /datum/STUI/New() . = ..() - if(length(stui_init_runtimes)) // Report existing errors that might have occured during static initializers + if(length(stui_init_runtimes)) // Report existing errors that might have occurred during static initializers runtime = stui_init_runtimes.Copy() /datum/STUI/Topic(href, href_list) @@ -85,31 +85,31 @@ GLOBAL_DATUM_INIT(STUI, /datum/STUI, new) . = list() .["logs"] = list() if(user.client.admin_holder.rights & R_MOD) - if(attack.len > stui_length+1) - attack.Cut(,attack.len-stui_length) + if(length(attack) > stui_length+1) + attack.Cut(,length(attack)-stui_length) .["logs"][STUI_TEXT_ATTACK] = attack - if(admin.len > stui_length+1) - admin.Cut(,admin.len-stui_length) + if(length(admin) > stui_length+1) + admin.Cut(,length(admin)-stui_length) .["logs"][STUI_TEXT_STAFF] = admin - if(staff.len > stui_length+1) - staff.Cut(,staff.len-stui_length) + if(length(staff) > stui_length+1) + staff.Cut(,length(staff)-stui_length) .["logs"][STUI_TEXT_STAFF_CHAT] = staff - if(ooc.len > stui_length+1) - ooc.Cut(,ooc.len-stui_length) + if(length(ooc) > stui_length+1) + ooc.Cut(,length(ooc)-stui_length) .["logs"][STUI_TEXT_OOC] = ooc if((user.client.admin_holder.rights & R_MOD) || (user.client.admin_holder.rights & R_DEBUG)) - if(game.len > stui_length+1) - game.Cut(,game.len-stui_length) + if(length(game) > stui_length+1) + game.Cut(,length(game)-stui_length) .["logs"][STUI_TEXT_GAME] = game if(user.client.admin_holder.rights & R_DEBUG) - if(debug.len > stui_length+1) - debug.Cut(,debug.len-stui_length) + if(length(debug) > stui_length+1) + debug.Cut(,length(debug)-stui_length) .["logs"][STUI_TEXT_DEBUG] = debug - if(runtime.len > stui_length+1) - runtime.Cut(,runtime.len-stui_length) + if(length(runtime) > stui_length+1) + runtime.Cut(,length(runtime)-stui_length) .["logs"][STUI_TEXT_RUNTIME] = runtime - if(tgui.len > stui_length+1) - tgui.Cut(,tgui.len-stui_length) + if(length(tgui) > stui_length+1) + tgui.Cut(,length(tgui)-stui_length) .["logs"][STUI_TEXT_TGUI] = tgui /client/proc/open_STUI() diff --git a/code/modules/admin/ToRban.dm b/code/modules/admin/ToRban.dm deleted file mode 100644 index 549353facf..0000000000 --- a/code/modules/admin/ToRban.dm +++ /dev/null @@ -1,88 +0,0 @@ -//By Carnwennan -//fetches an external list and processes it into a list of ip addresses. -//It then stores the processed list into a savefile for later use -#define TORFILE "data/ToR_ban.bdb" -#define TOR_UPDATE_INTERVAL 216000 //~6 hours - -/proc/ToRban_isbanned(ip_address) - var/savefile/F = new(TORFILE) - if(F) - if( ip_address in F.dir ) - return 1 - return 0 - -/proc/ToRban_autoupdate() - var/savefile/F = new(TORFILE) - if(F) - var/last_update - F["last_update"] >> last_update - if((last_update + TOR_UPDATE_INTERVAL) < world.realtime) //we haven't updated for a while - ToRban_update() - return - -/proc/ToRban_update() - spawn(0) - log_misc("Downloading updated ToR data...") - var/http[] = world.Export("https://check.torproject.org/exit-addresses") - - var/list/rawlist = file2list(http["CONTENT"]) - if(rawlist.len) - fdel(TORFILE) - var/savefile/F = new(TORFILE) - for( var/line in rawlist ) - if(!line) continue - if( copytext(line,1,12) == "ExitAddress" ) - var/cleaned = copytext(line,13,length(line)-19) - if(!cleaned) continue - F[cleaned] << 1 - F["last_update"] << world.realtime - log_misc("ToR data updated!") - if(usr) to_chat(usr, "ToRban updated.") - return - log_misc("ToR data update aborted: no data.") - return - -/client/proc/ToRban(task in list("update","toggle","show","remove","remove all","find")) - set name = "ToR Ban Settings" - set category = "Server" - if(!admin_holder) return - switch(task) - if("update") - ToRban_update() - if("toggle") - if(config) - if(CONFIG_GET(flag/ToRban)) - CONFIG_SET(flag/ToRban, FALSE) - message_admins("ToR banning disabled.") - else - CONFIG_SET(flag/ToRban, TRUE) - message_admins("ToR banning enabled.") - if("show") - var/savefile/F = new(TORFILE) - var/dat - if( length(F.dir) ) - for( var/i=1, i<=length(F.dir), i++ ) - dat += "#[i] [F.dir[i]]" - dat = "[dat]
      " - else - dat = "No addresses in list." - src << browse(dat,"window=ToRban_show") - if("remove") - var/savefile/F = new(TORFILE) - var/choice = tgui_input_list(src,"Please select an IP address to remove from the ToR banlist:","Remove ToR ban", F.dir) - if(choice) - F.dir.Remove(choice) - to_chat(src, "Address removed") - if("remove all") - to_chat(src, "[TORFILE] was [fdel(TORFILE)?"":"not "]removed.") - if("find") - var/input = input(src,"Please input an IP address to search for:","Find ToR ban",null) as null|text - if(input) - if(ToRban_isbanned(input)) - to_chat(src, "Address is a known ToR address") - else - to_chat(src, "Address is not a known ToR address") - return - -#undef TORFILE -#undef TOR_UPDATE_INTERVAL diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 38b63b9457..fdd94938ce 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -24,7 +24,7 @@ /proc/msg_admin_niche(msg) //Toggleable Niche Messages log_admin(msg) - msg = SPAN_ADMIN("ADMIN NICHE LOG: [msg]") + msg = SPAN_NICHE("ADMIN NICHE LOG: [msg]") for(var/client/C as anything in GLOB.admins) if(C && C.admin_holder && (R_MOD & C.admin_holder.rights)) if(C.prefs.toggles_chat & CHAT_NICHELOGS) @@ -67,7 +67,7 @@ var/savefile/info = new("data/player_saves/[copytext(key, 1, 2)]/[key]/info.sav") var/list/infos info >> infos - if(!infos || !infos.len) return 0 + if(!LAZYLEN(infos)) return 0 else return 1 /datum/admins/proc/player_notes_all(key as text) @@ -95,12 +95,8 @@ color = "#AA0055" else if(N.note_category == NOTE_MERIT) color = "#9e3dff" - else if(N.note_category == NOTE_COMMANDER) + else if(N.note_category == NOTE_WHITELIST) color = "#324da5" - else if(N.note_category == NOTE_SYNTHETIC) - color = "#39e7a4" - else if(N.note_category == NOTE_YAUTJA) - color = "#114e11" dat += "[N.text] by [admin_ckey] ([N.admin_rank])[confidential_text] on [N.date] [NOTE_ROUND_ID(N)] " if(admin_ckey == usr.ckey || admin_ckey == "Adminbot" || check_for_rights(R_PERMISSIONS)) @@ -121,10 +117,10 @@ var/t //text to show in the window var/u //unban button href arg var/dat = "" - for(r in jobban_keylist) - L = jobban_keylist[r] + for(r in GLOB.jobban_keylist) + L = GLOB.jobban_keylist[r] for(c in L) - i = jobban_keylist[r][c] //These are already strings, as you're iterating through them. Anyway, establish jobban. + i = GLOB.jobban_keylist[r][c] //These are already strings, as you're iterating through them. Anyway, establish jobban. t = "[c] - [r] ## [i]" u = "[c] - [r]" dat += "" @@ -138,8 +134,6 @@ var/dat = {" Change Game Mode
      "} - if(master_mode == "secret") - dat += "(Force Secret Mode)
      " dat += {"
      @@ -147,7 +141,7 @@ Quick Create Object
      Create Turf
      Create Mob
      - Inmediately Send Tip
      + Immediately Send Tip
      "} show_browser(usr, dat, "Game Panel", "admin2", "size=210x280") @@ -185,11 +179,11 @@ if(findtext("[path]", object)) matches += path - if(matches.len==0) + if(length(matches)==0) return var/chosen - if(matches.len==1) + if(length(matches)==1) chosen = matches[1] else chosen = tgui_input_list(usr, "Select an atom type", "Spawn Atom", matches) diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm index cbeb1169c8..94793f3b94 100644 --- a/code/modules/admin/admin_ranks.dm +++ b/code/modules/admin/admin_ranks.dm @@ -1,8 +1,8 @@ -var/list/admin_ranks = list() //list of all ranks with associated rights +GLOBAL_LIST_EMPTY(admin_ranks) //list of all ranks with associated rights //load our rank - > rights associations /proc/load_admin_ranks() - admin_ranks.Cut() + GLOB.admin_ranks.Cut() var/previous_rights = 0 @@ -15,7 +15,7 @@ var/list/admin_ranks = list() //list of all ranks with associated rights if(copytext(line,1,2) == "#") continue var/list/List = splittext(line,"+") - if(!List.len) continue + if(!length(List)) continue var/rank = ckeyEx(List[1]) switch(rank) @@ -23,7 +23,7 @@ var/list/admin_ranks = list() //list of all ranks with associated rights if("Removed") continue //Reserved var/rights = 0 - for(var/i=2, i<=List.len, i++) + for(var/i=2, i<=length(List), i++) switch(ckey(List[i])) if("@","prev") rights |= previous_rights if("buildmode","build") rights |= R_BUILDMODE @@ -46,19 +46,19 @@ var/list/admin_ranks = list() //list of all ranks with associated rights if("host") rights |= RL_HOST if("everything") rights |= RL_EVERYTHING - admin_ranks[rank] = rights + GLOB.admin_ranks[rank] = rights previous_rights = rights #ifdef TESTING var/msg = "Permission Sets Built:\n" - for(var/rank in admin_ranks) - msg += "\t[rank] - [admin_ranks[rank]]\n" + for(var/rank in GLOB.admin_ranks) + msg += "\t[rank] - [GLOB.admin_ranks[rank]]\n" testing(msg) #endif /proc/load_admins() //clear the datums references - admin_datums.Cut() + GLOB.admin_datums.Cut() for(var/client/C in GLOB.admins) C.remove_admin_verbs() C.admin_holder = null @@ -78,9 +78,9 @@ var/list/admin_ranks = list() //list of all ranks with associated rights #ifdef TESTING var/msg = "Admins Built:\n" - for(var/ckey in admin_datums) + for(var/ckey in GLOB.admin_datums) var/rank - var/datum/admins/D = admin_datums[ckey] + var/datum/admins/D = GLOB.admin_datums[ckey] if(D) rank = D.rank msg += "\t[ckey] - [rank]\n" testing(msg) @@ -93,7 +93,7 @@ var/list/admin_ranks = list() //list of all ranks with associated rights //Split the line at every "-" var/list/List = splittext(line, "-") - if(!List.len) return + if(!length(List)) return //ckey is before the first "-" var/ckey = ckey(List[1]) @@ -101,11 +101,11 @@ var/list/admin_ranks = list() //list of all ranks with associated rights //rank follows the first "-" var/rank = "" - if(List.len >= 2) + if(length(List) >= 2) rank = ckeyEx(List[2]) var/list/extra_titles = list() - if(List.len >= 3) + if(length(List) >= 3) extra_titles = List.Copy(3) if(mentor) @@ -115,7 +115,7 @@ var/list/admin_ranks = list() //list of all ranks with associated rights return //load permissions associated with this rank - var/rights = admin_ranks[rank] + var/rights = GLOB.admin_ranks[rank] //create the admin datum and store it for later use var/datum/admins/D = new /datum/admins(rank, rights, ckey, extra_titles) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 704d633424..2b3db70abe 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -1,5 +1,5 @@ //admin verb groups - They can overlap if you so wish. Only one of each verb will exist in the verbs list regardless -var/list/admin_verbs_default = list( +GLOBAL_LIST_INIT(admin_verbs_default, list( /datum/admins/proc/show_player_panel, /*shows an interface for individual players, with various links (links require additional flags*/ /client/proc/toggleadminhelpsound, /*toggles whether we hear a sound when adminhelps/PMs are used*/ /client/proc/becomelarva, /*lets you forgo your larva protection as staff member. */ @@ -36,6 +36,7 @@ var/list/admin_verbs_default = list( /client/proc/togglenichelogs, /datum/admins/proc/display_tags, /datum/admins/proc/player_notes_show, + /datum/admins/proc/check_ckey, /datum/admins/proc/toggleooc, /*toggles ooc on/off for everyone*/ /datum/admins/proc/togglelooc, /*toggles ooc on/off for everyone*/ /datum/admins/proc/toggledsay, /*toggles dsay on/off for everyone*/ @@ -66,14 +67,15 @@ var/list/admin_verbs_default = list( /datum/admins/proc/subtlemessageall, /datum/admins/proc/alertall, /datum/admins/proc/imaginary_friend, - /client/proc/toggle_ares_ping, + /client/proc/toggle_admin_pings, + /client/proc/cmd_admin_open_ares, /client/proc/cmd_admin_say, /*staff-only ooc chat*/ /client/proc/cmd_mod_say, /* alternate way of typing asay, no different than cmd_admin_say */ - /client/proc/staffwho, /client/proc/cmd_admin_tacmaps_panel, - ) + /client/proc/other_records, + )) -var/list/admin_verbs_admin = list( +GLOBAL_LIST_INIT(admin_verbs_admin, list( /datum/admins/proc/togglejoin, /*toggles whether people can join the current game*/ /datum/admins/proc/announce, /*priority announce something to all clients.*/ /datum/admins/proc/view_game_log, /*shows the server game log (diary) for this round*/ @@ -91,28 +93,26 @@ var/list/admin_verbs_admin = list( /datum/admins/proc/admin_force_selfdestruct, /client/proc/check_round_statistics, /client/proc/force_teleporter, - /client/proc/matrix_editor, - /datum/admins/proc/open_shuttlepanel -) + /client/proc/matrix_editor +)) -var/list/admin_verbs_ban = list( +GLOBAL_LIST_INIT(admin_verbs_ban, list( /client/proc/unban_panel, /client/proc/stickyban_panel, + // /client/proc/jobbans // Disabled temporarily due to 15-30 second lag spikes. +)) - // /client/proc/jobbans // Disabled temporarily due to 15-30 second lag spikes. Don't forget the comma in the line above when uncommenting this! -) - - -var/list/admin_verbs_sounds = list( +GLOBAL_LIST_INIT(admin_verbs_sounds, list( /client/proc/play_admin_sound, /client/proc/stop_admin_sound, /client/proc/cmd_admin_vox_panel -) +)) -var/list/admin_verbs_minor_event = list( +GLOBAL_LIST_INIT(admin_verbs_minor_event, list( /client/proc/cmd_admin_change_custom_event, /datum/admins/proc/admin_force_distress, /datum/admins/proc/admin_force_ERT_shuttle, + /client/proc/enable_event_mob_verbs, /client/proc/force_hijack, /datum/admins/proc/force_predator_round, //Force spawns a predator round. /client/proc/adjust_predator_round, @@ -139,12 +139,14 @@ var/list/admin_verbs_minor_event = list( /client/proc/adminpanelweapons, /client/proc/admin_general_quarters, /client/proc/admin_biohazard_alert, + /client/proc/admin_aicore_alert, /client/proc/toggle_hardcore_perma, /client/proc/toggle_bypass_joe_restriction, -) + /client/proc/toggle_joe_respawns, + /datum/admins/proc/open_shuttlepanel +)) -var/list/admin_verbs_major_event = list( - /client/proc/enable_event_mob_verbs, +GLOBAL_LIST_INIT(admin_verbs_major_event, list( /client/proc/cmd_admin_dress_all, /client/proc/free_all_mobs_in_view, /client/proc/drop_bomb, @@ -158,20 +160,21 @@ var/list/admin_verbs_major_event = list( /client/proc/load_event_level, /client/proc/cmd_fun_fire_ob, /client/proc/map_template_upload, + /client/proc/force_load_lazy_template, /client/proc/enable_podlauncher, /client/proc/change_taskbar_icon, /client/proc/change_weather, /client/proc/admin_blurb -) +)) -var/list/admin_verbs_spawn = list( +GLOBAL_LIST_INIT(admin_verbs_spawn, list( /datum/admins/proc/spawn_atom, /client/proc/game_panel, /client/proc/create_humans, /client/proc/create_xenos -) +)) -var/list/admin_verbs_server = list( +GLOBAL_LIST_INIT(admin_verbs_server, list( /datum/admins/proc/startnow, /datum/admins/proc/restart, /datum/admins/proc/delay, @@ -185,16 +188,15 @@ var/list/admin_verbs_server = list( /client/proc/cmd_debug_del_all, /datum/admins/proc/togglejoin, /client/proc/toggle_cdn, -) +)) -var/list/admin_verbs_debug = list( +GLOBAL_LIST_INIT(admin_verbs_debug, list( /client/proc/debug_role_authority, /client/proc/cmd_debug_make_powernets, /client/proc/cmd_debug_list_processing_items, /client/proc/cmd_admin_delete, /client/proc/cmd_debug_del_all, /client/proc/reload_admins, - /client/proc/reload_whitelist, /client/proc/restart_controller, /client/proc/debug_controller, /client/proc/cmd_debug_toggle_should_check_for_win, @@ -218,19 +220,20 @@ var/list/admin_verbs_debug = list( /datum/admins/proc/view_href_log, /*shows the server HREF log for this round*/ /datum/admins/proc/view_tgui_log, /*shows the server TGUI log for this round*/ /client/proc/admin_blurb, -) + /datum/admins/proc/open_shuttlepanel, +)) -var/list/admin_verbs_debug_advanced = list( +GLOBAL_LIST_INIT(admin_verbs_debug_advanced, list( /client/proc/callproc_datum, /client/proc/callproc, /client/proc/SDQL2_query, -) +)) -var/list/clan_verbs = list( +GLOBAL_LIST_INIT(clan_verbs, list( /client/proc/usr_create_new_clan -) +)) -var/list/debug_verbs = list( +GLOBAL_LIST_INIT(debug_verbs, list( /client/proc/Cell, /client/proc/cmd_assume_direct_control, /client/proc/ticklag, @@ -238,23 +241,27 @@ var/list/debug_verbs = list( /client/proc/view_power_update_stats_area, /client/proc/view_power_update_stats_machines, /client/proc/toggle_power_update_profiling, - /client/proc/nanomapgen_DumpImage, -) +)) -var/list/admin_verbs_possess = list( +GLOBAL_LIST_INIT(admin_verbs_possess, list( + /client/proc/cmd_assume_direct_control, /client/proc/possess, /client/proc/release -) +)) -var/list/admin_verbs_permissions = list( - /client/proc/ToRban -) +GLOBAL_LIST_INIT(admin_verbs_permissions, list( + /client/proc/whitelist_panel, +)) -var/list/admin_verbs_color = list( +GLOBAL_LIST_INIT(admin_verbs_color, list( /client/proc/set_ooc_color_self -) +)) + +GLOBAL_LIST_INIT(admin_verbs_stealth, list( + /client/proc/toggle_admin_stealth +)) -var/list/admin_mob_event_verbs_hideable = list( +GLOBAL_LIST_INIT(admin_mob_event_verbs_hideable, list( /client/proc/hide_event_mob_verbs, /client/proc/cmd_admin_select_mob_rank, /client/proc/cmd_admin_dress, @@ -262,17 +269,15 @@ var/list/admin_mob_event_verbs_hideable = list( /client/proc/editappear, /client/proc/cmd_admin_addhud, /client/proc/cmd_admin_change_their_hivenumber, - /client/proc/cmd_assume_direct_control, /client/proc/free_mob_for_ghosts, - /client/proc/possess, - /client/proc/release, /client/proc/cmd_admin_grantfullaccess, /client/proc/cmd_admin_grantallskills, /client/proc/admin_create_account -) +)) //verbs which can be hidden - needs work -var/list/admin_verbs_hideable = list( +GLOBAL_LIST_INIT(admin_verbs_hideable, list( + /client/proc/cmd_assume_direct_control, /client/proc/release, /client/proc/possess, /client/proc/callproc_datum, @@ -291,9 +296,9 @@ var/list/admin_verbs_hideable = list( /datum/admins/proc/togglesleep, /client/proc/debug_variables, /client/proc/debug_global_variables -) +)) -var/list/admin_verbs_teleport = list( +GLOBAL_LIST_INIT(admin_verbs_teleport, list( /client/proc/teleport_panel, /*teleport panel, for jumping to things/places and getting things/places */ /client/proc/jumptocoord, /client/proc/jumptooffsetcoord, @@ -305,25 +310,25 @@ var/list/admin_verbs_teleport = list( /client/proc/Getmob, /client/proc/Getkey, /client/proc/toggle_noclip -) +)) -var/list/roundstart_mod_verbs = list( +GLOBAL_LIST_INIT(roundstart_mod_verbs, list( /client/proc/toggle_ob_spawn -) +)) /client/proc/add_admin_verbs() if(!admin_holder) return if(CLIENT_IS_STAFF(src)) - add_verb(src, admin_verbs_default) + add_verb(src, GLOB.admin_verbs_default) if(CLIENT_HAS_RIGHTS(src, R_MOD)) - add_verb(src, admin_verbs_ban) - add_verb(src, admin_verbs_teleport) + add_verb(src, GLOB.admin_verbs_ban) + add_verb(src, GLOB.admin_verbs_teleport) if(CLIENT_HAS_RIGHTS(src, R_EVENT)) - add_verb(src, admin_verbs_minor_event) + add_verb(src, GLOB.admin_verbs_minor_event) if(CLIENT_HAS_RIGHTS(src, R_ADMIN)) - add_verb(src, admin_verbs_admin) - add_verb(src, admin_verbs_major_event) + add_verb(src, GLOB.admin_verbs_admin) + add_verb(src, GLOB.admin_verbs_major_event) if(CLIENT_HAS_RIGHTS(src, R_MENTOR)) add_verb(src, /client/proc/cmd_mentor_say) add_verb(src, /datum/admins/proc/imaginary_friend) @@ -340,33 +345,29 @@ var/list/roundstart_mod_verbs = list( add_verb(src, /client/proc/toggle_rappel_menu) add_verb(src, /client/proc/toggle_fire_support_menu) if(CLIENT_HAS_RIGHTS(src, R_SERVER)) - add_verb(src, admin_verbs_server) + add_verb(src, GLOB.admin_verbs_server) if(CLIENT_HAS_RIGHTS(src, R_DEBUG)) - add_verb(src, admin_verbs_debug) + add_verb(src, GLOB.admin_verbs_debug) if(!CONFIG_GET(flag/debugparanoid) || CLIENT_HAS_RIGHTS(src, R_ADMIN)) - add_verb(src, admin_verbs_debug_advanced) // Right now it's just callproc but we can easily add others later on. + add_verb(src, GLOB.admin_verbs_debug_advanced) // Right now it's just callproc but we can easily add others later on. if(CLIENT_HAS_RIGHTS(src, R_POSSESS)) - add_verb(src, admin_verbs_possess) + add_verb(src, GLOB.admin_verbs_possess) if(CLIENT_HAS_RIGHTS(src, R_PERMISSIONS)) - add_verb(src, admin_verbs_permissions) + add_verb(src, GLOB.admin_verbs_permissions) if(CLIENT_HAS_RIGHTS(src, R_COLOR)) - add_verb(src, admin_verbs_color) + add_verb(src, GLOB.admin_verbs_color) if(CLIENT_HAS_RIGHTS(src, R_SOUNDS)) - add_verb(src, admin_verbs_sounds) + add_verb(src, GLOB.admin_verbs_sounds) if(CLIENT_HAS_RIGHTS(src, R_SPAWN)) - add_verb(src, admin_verbs_spawn) - if(RoleAuthority && (RoleAuthority.roles_whitelist[ckey] & WHITELIST_YAUTJA_LEADER)) - add_verb(src, clan_verbs) - -/client/proc/add_admin_whitelists() - if(CLIENT_IS_MENTOR(src)) - RoleAuthority.roles_whitelist[ckey] |= WHITELIST_MENTOR - if(CLIENT_IS_STAFF(src)) - RoleAuthority.roles_whitelist[ckey] |= WHITELIST_JOE + add_verb(src, GLOB.admin_verbs_spawn) + if(CLIENT_HAS_RIGHTS(src, R_STEALTH)) + add_verb(src, GLOB.admin_verbs_stealth) + if(check_whitelist_status(WHITELIST_YAUTJA_LEADER)) + add_verb(src, GLOB.clan_verbs) /client/proc/remove_admin_verbs() remove_verb(src, list( - admin_verbs_default, + GLOB.admin_verbs_default, /client/proc/togglebuildmodeself, /client/proc/toggle_game_master, /client/proc/open_resin_panel, @@ -377,22 +378,23 @@ var/list/roundstart_mod_verbs = list( /client/proc/toggle_ai_xeno_weeding, /client/proc/toggle_rappel_menu, /client/proc/toggle_fire_support_menu, - admin_verbs_admin, - admin_verbs_ban, - admin_verbs_minor_event, - admin_verbs_major_event, - admin_verbs_server, - admin_verbs_debug, - admin_verbs_debug_advanced, - admin_verbs_possess, - admin_verbs_permissions, - admin_verbs_color, - admin_verbs_sounds, - admin_verbs_spawn, - admin_verbs_teleport, - admin_mob_event_verbs_hideable, - admin_verbs_hideable, - debug_verbs, + GLOB.admin_verbs_admin, + GLOB.admin_verbs_ban, + GLOB.admin_verbs_minor_event, + GLOB.admin_verbs_major_event, + GLOB.admin_verbs_server, + GLOB.admin_verbs_debug, + GLOB.admin_verbs_debug_advanced, + GLOB.admin_verbs_possess, + GLOB.admin_verbs_permissions, + GLOB.admin_verbs_color, + GLOB.admin_verbs_sounds, + GLOB.admin_verbs_spawn, + GLOB.admin_verbs_teleport, + GLOB.admin_mob_event_verbs_hideable, + GLOB.admin_verbs_hideable, + GLOB.debug_verbs, + GLOB.admin_verbs_stealth, )) /client/proc/jobbans() @@ -427,7 +429,7 @@ var/list/roundstart_mod_verbs = list( if(!check_rights(R_ADMIN)) return if(!warned_ckey || !istext(warned_ckey)) return - if(warned_ckey in admin_datums) + if(warned_ckey in GLOB.admin_datums) to_chat(usr, "Error: warn(): You can't warn admins.") return @@ -458,7 +460,7 @@ var/list/roundstart_mod_verbs = list( set name = "Give Disease (old)" set desc = "Gives a (tg-style) Disease to a mob." var/list/disease_names = list() - for(var/v in diseases) + for(var/v in GLOB.diseases) disease_names.Add(copytext("[v]", 16, 0)) var/datum/disease/D = tgui_input_list(usr, "Choose the disease to give to that guy", "ACHOO", disease_names) if(!D) return @@ -608,16 +610,24 @@ var/list/roundstart_mod_verbs = list( message_admins("[key_name(usr)] announced a random fact.") SSticker.mode?.declare_fun_facts() -/client/proc/toggle_ares_ping() - set name = "Toggle ARES notification sound" - set category = "Preferences.Logs" +/client/proc/toggle_admin_pings() + set name = "Toggle StaffIC log sounds" + set category = "Preferences.Sound" prefs.toggles_sound ^= SOUND_ARES_MESSAGE if (prefs.toggles_sound & SOUND_ARES_MESSAGE) - to_chat(usr, SPAN_BOLDNOTICE("You will now hear a ping for ARES messages.")) + to_chat(usr, SPAN_BOLDNOTICE("You will now hear an audio cue for ARES and Prayer messages.")) else - to_chat(usr, SPAN_BOLDNOTICE("You will no longer hear a ping for ARES messages.")) + to_chat(usr, SPAN_BOLDNOTICE("You will no longer hear an audio cue for ARES and Prayer messages.")) +/client/proc/toggle_admin_stealth() + set name = "Toggle Admin Stealth" + set category = "Preferences" + prefs.toggles_admin ^= ADMIN_STEALTHMODE + if(prefs.toggles_admin & ADMIN_STEALTHMODE) + to_chat(usr, SPAN_BOLDNOTICE("You enabled admin stealth mode.")) + else + to_chat(usr, SPAN_BOLDNOTICE("You disabled admin stealth mode.")) #undef MAX_WARNS #undef AUTOBANTIME diff --git a/code/modules/admin/banjob.dm b/code/modules/admin/banjob.dm index 230590fdf9..0dc9c87b76 100644 --- a/code/modules/admin/banjob.dm +++ b/code/modules/admin/banjob.dm @@ -7,23 +7,23 @@ won't recognize the older one, as an example. */ -var/jobban_runonce // Updates legacy bans with new info -var/jobban_keylist[0] //to store the keys & ranks +GLOBAL_VAR(jobban_runonce) // Updates legacy bans with new info +GLOBAL_LIST_EMPTY(jobban_keylist) /proc/check_jobban_path(X) . = ckey(X) - if(!islist(jobban_keylist[.])) //If it's not a list, we're in trouble. - jobban_keylist[.] = list() + if(!islist(GLOB.jobban_keylist[.])) //If it's not a list, we're in trouble. + GLOB.jobban_keylist[.] = list() /proc/jobban_fullban(mob/M, rank, reason) if (!M || !M.ckey) return rank = check_jobban_path(rank) - jobban_keylist[rank][M.ckey] = reason + GLOB.jobban_keylist[rank][M.ckey] = reason /proc/jobban_client_fullban(ckey, rank) if (!ckey || !rank) return rank = check_jobban_path(rank) - jobban_keylist[rank][ckey] = "Reason Unspecified" + GLOB.jobban_keylist[rank][ckey] = "Reason Unspecified" //returns a reason if M is banned from rank, returns 0 otherwise /proc/jobban_isbanned(mob/M, rank, datum/entity/player/P = null) @@ -42,24 +42,22 @@ var/jobban_keylist[0] //to store the keys & ranks if(guest_jobbans(rank)) if(CONFIG_GET(flag/guest_jobban) && IsGuestKey(M.key)) return "Guest Job-ban" - if(CONFIG_GET(flag/usewhitelist) && !check_whitelist(M)) - return "Whitelisted Job" var/datum/entity/player_job_ban/PJB = M.client.player_data.job_bans[rank] return PJB ? PJB.text : null /proc/jobban_loadbanfile() var/savefile/S=new("data/job_new.ban") - S["new_bans"] >> jobban_keylist + S["new_bans"] >> GLOB.jobban_keylist log_admin("Loading jobban_rank") - S["runonce"] >> jobban_runonce + S["runonce"] >> GLOB.jobban_runonce - if (!length(jobban_keylist)) - jobban_keylist=list() + if (!length(GLOB.jobban_keylist)) + GLOB.jobban_keylist=list() log_admin("jobban_keylist was empty") /proc/jobban_savebanfile() var/savefile/S=new("data/job_new.ban") - S["new_bans"] << jobban_keylist + S["new_bans"] << GLOB.jobban_keylist /proc/jobban_unban(mob/M, rank) jobban_remove("[M.ckey] - [ckey(rank)]") @@ -70,7 +68,7 @@ var/jobban_keylist[0] //to store the keys & ranks /proc/jobban_remove(X) var/regex/r1 = new("(.*) - (.*)") if(r1.Find(X)) - var/L[] = jobban_keylist[r1.group[2]] + var/L[] = GLOB.jobban_keylist[r1.group[2]] L.Remove(r1.group[1]) return 1 @@ -89,7 +87,7 @@ var/jobban_keylist[0] //to store the keys & ranks if(!M.ckey) //sanity to_chat(usr, "This mob has no ckey") return - if(!RoleAuthority) + if(!GLOB.RoleAuthority) to_chat(usr, "The Role Authority is not set up!") return @@ -109,31 +107,31 @@ var/jobban_keylist[0] //to store the keys & ranks WARNING!*/ //Regular jobs //Command (Blue) - jobs += generate_job_ban_list(M, P, ROLES_CIC, "CIC", "ddddff") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_CIC, "CIC", "ddddff") jobs += "
      " // SUPPORT - jobs += generate_job_ban_list(M, P, ROLES_AUXIL_SUPPORT, "Support", "ccccff") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_AUXIL_SUPPORT, "Support", "ccccff") jobs += "
      " // MPs - jobs += generate_job_ban_list(M, P, ROLES_POLICE, "Police", "ffdddd") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_POLICE, "Police", "ffdddd") jobs += "
      " //Engineering (Yellow) - jobs += generate_job_ban_list(M, P, ROLES_ENGINEERING, "Engineering", "fff5cc") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_ENGINEERING, "Engineering", "fff5cc") jobs += "
      " //Cargo (Yellow) //Copy paste, yada, yada. Hopefully Snail can rework this in the future. - jobs += generate_job_ban_list(M, P, ROLES_REQUISITION, "Requisition", "fff5cc") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_REQUISITION, "Requisition", "fff5cc") jobs += "
      " //Medical (White) - jobs += generate_job_ban_list(M, P, ROLES_MEDICAL, "Medical", "ffeef0") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_MEDICAL, "Medical", "ffeef0") jobs += "
      " //Marines - jobs += generate_job_ban_list(M, P, ROLES_MARINES, "Marines", "ffeeee") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_MARINES, "Marines", "ffeeee") jobs += "
      " // MISC - jobs += generate_job_ban_list(M, P, ROLES_MISC, "Misc", "aaee55") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_MISC, "Misc", "aaee55") jobs += "
      " // Xenos (Orange) - jobs += generate_job_ban_list(M, P, ROLES_XENO, "Xenos", "a268b1") + jobs += generate_job_ban_list(M, P, GLOB.ROLES_XENO, "Xenos", "a268b1") jobs += "
      " //Extra (Orange) var/isbanned_dept = jobban_isbanned(M, "Syndicate", P) diff --git a/code/modules/admin/callproc.dm b/code/modules/admin/callproc.dm index 1af1f5aa9f..72e4f79260 100644 --- a/code/modules/admin/callproc.dm +++ b/code/modules/admin/callproc.dm @@ -140,7 +140,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) if (!length(proclist)) return - var/procname = proclist[proclist.len] + var/procname = proclist[length(proclist)] var/proctype = ("verb" in proclist) ? "verb" :"proc" if(targetselected) @@ -161,15 +161,15 @@ GLOBAL_PROTECT(LastAdminCalledProc) if(!target) to_chat(usr, "Error: callproc(): owner of proc no longer exists.", confidential = TRUE) return - var/msg = "[key_name(src)] called [target]'s [procname]() with [lst.len ? "the arguments [list2params(lst)]":"no arguments"]." + var/msg = "[key_name(src)] called [target]'s [procname]() with [length(lst) ? "the arguments [list2params(lst)]":"no arguments"]." log_admin(msg) message_admins(msg) //Proccall announce removed. admin_ticket_log(target, msg) returnval = WrapAdminProcCall(target, procname, lst) // Pass the lst as an argument list to the proc else //this currently has no hascall protection. wasn't able to get it working. - log_admin("[key_name(src)] called [procname]() with [lst.len ? "the arguments [list2params(lst)]":"no arguments"].") - message_admins("[key_name(src)] called [procname]() with [lst.len ? "the arguments [list2params(lst)]":"no arguments"].") //Proccall announce removed. + log_admin("[key_name(src)] called [procname]() with [length(lst) ? "the arguments [list2params(lst)]":"no arguments"].") + message_admins("[key_name(src)] called [procname]() with [length(lst) ? "the arguments [list2params(lst)]":"no arguments"].") //Proccall announce removed. returnval = WrapAdminProcCall(GLOBAL_PROC, procname, lst) // Pass the lst as an argument list to the proc if(get_retval) get_retval += returnval @@ -230,7 +230,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) to_chat(usr, SPAN_BOLDWARNING("Warning: Force attempt has been logged.")) message_admins("[key_name(usr)] has attempted to execute a restricted proc. ([procname])") -/client/proc/callproc_datum(datum/called_datum as null|area|mob|obj|turf) +/client/proc/callproc_datum(datum/called_datum as null|area|mob|obj|turf in view(src)) set category = "Debug" set name = "Datum ProcCall" set waitfor = FALSE @@ -251,8 +251,8 @@ GLOBAL_PROTECT(LastAdminCalledProc) if(!called_datum || !is_valid_src(called_datum)) to_chat(usr, SPAN_WARNING("Error: callproc_datum(): owner of proc no longer exists."), confidential = TRUE) return - log_admin("[key_name(src)] called [called_datum]'s [procname]() with [lst.len ? "the arguments [list2params(lst)]":"no arguments"].") - var/msg = "[key_name(src)] called [called_datum]'s [procname]() with [lst.len ? "the arguments [list2params(lst)]":"no arguments"]." + log_admin("[key_name(src)] called [called_datum]'s [procname]() with [length(lst) ? "the arguments [list2params(lst)]":"no arguments"].") + var/msg = "[key_name(src)] called [called_datum]'s [procname]() with [length(lst) ? "the arguments [list2params(lst)]":"no arguments"]." message_admins(msg) admin_ticket_log(called_datum, msg) @@ -285,7 +285,7 @@ GLOBAL_PROTECT(LastAdminCalledProc) if(islist(returnval)) var/list/returnedlist = returnval . = "" - if(returnedlist.len) + if(length(returnedlist)) var/assoc_check = returnedlist[1] if(istext(assoc_check) && (returnedlist[assoc_check] != null)) . += "[procname] returned an associative list:" diff --git a/code/modules/admin/chat_commands.dm b/code/modules/admin/chat_commands.dm index 37ffcd114e..c5036e7ca1 100644 --- a/code/modules/admin/chat_commands.dm +++ b/code/modules/admin/chat_commands.dm @@ -8,7 +8,7 @@ /datum/tgs_chat_command/sdql/Run(datum/tgs_chat_user/sender, params) var/list/results = HandleUserlessSDQL(sender.friendly_name, params) if(!results) - return "Query produced no output" + return new /datum/tgs_message_content("Query produced no output") var/list/text_res = results.Copy(1, 3) var/list/refs = length(results) > 3 ? results.Copy(4) : null - return "[text_res.Join("\n")][refs ? "\nRefs: [refs.Join(" ")]" : ""]" + return new /datum/tgs_message_content("[text_res.Join("\n")][refs ? "\nRefs: [refs.Join(" ")]" : ""]") diff --git a/code/modules/admin/create_mob.dm b/code/modules/admin/create_mob.dm index 644165be0f..910bafd50a 100644 --- a/code/modules/admin/create_mob.dm +++ b/code/modules/admin/create_mob.dm @@ -1,4 +1,5 @@ -/var/create_mob_html = null +/datum/admins/var/static/create_mob_html = null + /datum/admins/proc/create_mob(mob/user) if (!create_mob_html) var/mobjs = null @@ -7,4 +8,4 @@ create_mob_html = replacetext(create_mob_html, "null /* object types */", "\"[mobjs]\"") create_mob_html = replacetext(create_mob_html, "/* href token */", RawHrefToken(forceGlobal = TRUE)) - show_browser(user, replacetext(create_mob_html, "/* ref src */", "\ref[src]"), "Create Mob", "create_mob", "size=425x475") + show_browser(user, replacetext(create_mob_html, "/* ref src */", "\ref[src]"), "Create Mob", "create_mob", "size=450x525") diff --git a/code/modules/admin/create_object.dm b/code/modules/admin/create_object.dm index 9d344a1f55..054fc20aef 100644 --- a/code/modules/admin/create_object.dm +++ b/code/modules/admin/create_object.dm @@ -1,4 +1,4 @@ -/var/create_object_html = null +/datum/admins/var/static/create_object_html = null /datum/admins/proc/create_object(mob/user) if (!create_object_html) @@ -8,7 +8,7 @@ create_object_html = replacetext(create_object_html, "null /* object types */", "\"[objectjs]\"") create_object_html = replacetext(create_object_html, "/* href token */", RawHrefToken(forceGlobal = TRUE)) - show_browser(user, replacetext(create_object_html, "/* ref src */", "\ref[src]"), "Create Object", "create_object", "size=425x475") + show_browser(user, replacetext(create_object_html, "/* ref src */", "\ref[src]"), "Create Object", "create_object", "size=450x525") /datum/admins/proc/quick_create_object(mob/user) @@ -46,4 +46,4 @@ quick_create_object_html = replacetext(quick_create_object_html, "null /* object types */", "\"[objectjs]\"") quick_create_object_html = replacetext(quick_create_object_html, "/* href token */", RawHrefToken(forceGlobal = TRUE)) - show_browser(user, replacetext(quick_create_object_html, "/* ref src */", "\ref[src]"), "Quick Create Object", "quick_create_object", "size=425x475") + show_browser(user, replacetext(quick_create_object_html, "/* ref src */", "\ref[src]"), "Quick Create Object", "quick_create_object", "size=450x525") diff --git a/code/modules/admin/create_turf.dm b/code/modules/admin/create_turf.dm index c87034ecfd..cc8bd1a5ec 100644 --- a/code/modules/admin/create_turf.dm +++ b/code/modules/admin/create_turf.dm @@ -1,4 +1,5 @@ -/var/create_turf_html = null +/datum/admins/var/static/create_turf_html = null + /datum/admins/proc/create_turf(mob/user) if (!create_turf_html) var/turfjs = null @@ -7,4 +8,4 @@ create_turf_html = replacetext(create_turf_html, "null /* object types */", "\"[turfjs]\"") create_turf_html = replacetext(create_turf_html, "/* href token */", RawHrefToken(forceGlobal = TRUE)) - show_browser(usr, replacetext(create_turf_html, "/* ref src */", "\ref[src]"), "Create Turf", "create_turf", "size=425x475") + show_browser(usr, replacetext(create_turf_html, "/* ref src */", "\ref[src]"), "Create Turf", "create_turf", "size=450x525") diff --git a/code/modules/admin/fax_templates.dm b/code/modules/admin/fax_templates.dm index 459ab675d3..2522acf92b 100644 --- a/code/modules/admin/fax_templates.dm +++ b/code/modules/admin/fax_templates.dm @@ -70,7 +70,7 @@ dat += "
      " dat += "

      [fax_header]

      " - dat += "

      [fax_subject] - [time2text(world.realtime, "DD Month")] [game_year]

      " + dat += "

      [fax_subject] - [time2text(world.realtime, "DD Month")] [GLOB.game_year]

      " dat += "
      " dat += "
      " diff --git a/code/modules/admin/game_master/extra_buttons/rename_platoon.dm b/code/modules/admin/game_master/extra_buttons/rename_platoon.dm index 067a437070..34f0070bd1 100644 --- a/code/modules/admin/game_master/extra_buttons/rename_platoon.dm +++ b/code/modules/admin/game_master/extra_buttons/rename_platoon.dm @@ -37,23 +37,23 @@ GLOBAL_VAR_INIT(main_platoon_initial_name, GLOB.main_platoon_name) /proc/do_rename_platoon(name, mob/renamer) var/old_name = GLOB.main_platoon_name - var/channel = radiochannels[old_name] - radiochannels -= old_name + var/channel = GLOB.radiochannels[old_name] + GLOB.radiochannels -= old_name - radiochannels[name] = channel + GLOB.radiochannels[name] = channel var/list/keys_to_readd = list() - for(var/key in department_radio_keys) - if(department_radio_keys[key] == old_name) + for(var/key in GLOB.department_radio_keys) + if(GLOB.department_radio_keys[key] == old_name) keys_to_readd += key - department_radio_keys -= key + GLOB.department_radio_keys -= key for(var/key in keys_to_readd) - department_radio_keys[key] = name + GLOB.department_radio_keys[key] = name - ROLES_SQUAD_ALL -= old_name - ROLES_SQUAD_ALL += name + GLOB.ROLES_SQUAD_ALL -= old_name + GLOB.ROLES_SQUAD_ALL += name var/list/copy_frozen_platoon_items = GLOB.frozen_items[old_name] GLOB.frozen_items -= old_name diff --git a/code/modules/admin/game_master/game_master.dm b/code/modules/admin/game_master/game_master.dm index 874bc14ecf..5370701893 100644 --- a/code/modules/admin/game_master/game_master.dm +++ b/code/modules/admin/game_master/game_master.dm @@ -342,7 +342,7 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) qdel(object) return TRUE - var/spawning_xeno_type = RoleAuthority.get_caste_by_text(selected_xeno) + var/spawning_xeno_type = GLOB.RoleAuthority.get_caste_by_text(selected_xeno) if(!spawning_xeno_type) to_chat(user, SPAN_NOTICE(SPAN_BOLD("Unable to find xeno type by name: [selected_xeno]"))) diff --git a/code/modules/admin/game_master/game_master_submenu/ambush.dm b/code/modules/admin/game_master/game_master_submenu/ambush.dm index 2af5bd0f00..56799d61a6 100644 --- a/code/modules/admin/game_master/game_master_submenu/ambush.dm +++ b/code/modules/admin/game_master/game_master_submenu/ambush.dm @@ -197,7 +197,7 @@ log_debug("Ambush game master submenu unable to find turf of referenced atom. Referenced atom: [referenced_atom]") return - var/xeno_type = RoleAuthority.get_caste_by_text(spawning_xeno_name) + var/xeno_type = GLOB.RoleAuthority.get_caste_by_text(spawning_xeno_name) if(!xeno_type) log_debug("Ambush game master submenu unable to find xeno type. Xeno type name: [spawning_xeno_name]") diff --git a/code/modules/admin/holder2.dm b/code/modules/admin/holder2.dm index c733bdd9e9..f202e0a6ec 100644 --- a/code/modules/admin/holder2.dm +++ b/code/modules/admin/holder2.dm @@ -1,4 +1,4 @@ -var/list/datum/admins/admin_datums = list() +GLOBAL_LIST_INIT_TYPED(admin_datums, /datum/admins, list()) GLOBAL_VAR_INIT(href_token, GenerateToken()) GLOBAL_PROTECT(href_token) @@ -10,11 +10,6 @@ GLOBAL_PROTECT(href_token) var/rights = 0 var/fakekey = null - var/admincaster_screen = 0 //See newscaster.dm under machinery for a full description - var/datum/feed_message/admincaster_feed_message = new /datum/feed_message //These two will act as admin_holders. - var/datum/feed_channel/admincaster_feed_channel = new /datum/feed_channel - var/admincaster_signature //What you'll sign the newsfeeds as - var/href_token var/datum/marked_datum @@ -31,11 +26,10 @@ GLOBAL_PROTECT(href_token) error("Admin datum created without a ckey argument. Datum has been deleted") qdel(src) return - admincaster_signature = "Weyland-Yutani Officer #[rand(0,9)][rand(0,9)][rand(0,9)]" rank = initial_rank rights = initial_rights href_token = GenerateToken() - admin_datums[ckey] = src + GLOB.admin_datums[ckey] = src extra_titles = new_extra_titles // Letting admins edit their own permission giver is a poor idea @@ -47,7 +41,6 @@ GLOBAL_PROTECT(href_token) owner = C owner.admin_holder = src owner.add_admin_verbs() - owner.add_admin_whitelists() owner.tgui_say.load() owner.update_special_keybinds() GLOB.admins |= C @@ -138,8 +131,8 @@ you will have to do something like if(client.admin_holder.rights & R_ADMIN) your return TRUE /client/proc/readmin() - if(admin_datums[ckey]) - admin_datums[ckey].associate(src) + if(GLOB.admin_datums[ckey]) + GLOB.admin_datums[ckey].associate(src) return TRUE /datum/admins/proc/check_for_rights(rights_required) diff --git a/code/modules/admin/medal_panel/medals_panel_tgui.dm b/code/modules/admin/medal_panel/medals_panel_tgui.dm index 49c4bb5f96..253f08efd6 100644 --- a/code/modules/admin/medal_panel/medals_panel_tgui.dm +++ b/code/modules/admin/medal_panel/medals_panel_tgui.dm @@ -25,14 +25,14 @@ GLOBAL_DATUM_INIT(medals_panel, /datum/medals_panel_tgui, new) var/datum/recipient_awards/recipient_award = GLOB.medal_awards[recipient_name] uscm_awards[recipient_name] = list() uscm_award_ckeys[recipient_name] = recipient_award.recipient_ckey ? " ([recipient_award.recipient_ckey])" : "" - for(var/i in 1 to recipient_award.medal_names.len) // We're assuming everything is same length + for(var/i in 1 to length(recipient_award.medal_names)) // We're assuming everything is same length uscm_awards[recipient_name] += "[recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\' by [recipient_award.giver_rank[i] ? "[recipient_award.giver_rank[i]] " : ""][recipient_award.giver_name[i] ? "[recipient_award.giver_name[i]] " : ""]([recipient_award.giver_ckey[i]])." for(var/recipient_name as anything in GLOB.jelly_awards) var/datum/recipient_awards/recipient_award = GLOB.jelly_awards[recipient_name] xeno_awards[recipient_name] = list() xeno_award_ckeys[recipient_name] = recipient_award.recipient_ckey ? " ([recipient_award.recipient_ckey])" : "" - for(var/i in 1 to recipient_award.medal_names.len) // We're assuming everything is same length + for(var/i in 1 to length(recipient_award.medal_names)) // We're assuming everything is same length xeno_awards[recipient_name] += "[recipient_award.medal_names[i]]: \'[recipient_award.medal_citations[i]]\' by [recipient_award.giver_rank[i] ? "[recipient_award.giver_rank[i]] " : ""][recipient_award.giver_name[i] ? "[recipient_award.giver_name[i]] " : ""]([recipient_award.giver_ckey[i]])." data["uscm_awards"] = uscm_awards diff --git a/code/modules/admin/player_notes.dm b/code/modules/admin/player_notes.dm index d8caa58f1e..31e43cb26a 100644 --- a/code/modules/admin/player_notes.dm +++ b/code/modules/admin/player_notes.dm @@ -57,7 +57,7 @@ var/savefile/info = new("data/player_saves/[copytext(key, 1, 2)]/[key]/info.sav") var/list/infos info >> infos - if(!infos || infos.len < index) return + if(LAZYLEN(infos) < index) return var/datum/player_info/item = infos[index] infos.Remove(item) diff --git a/code/modules/admin/player_panel/actions/general.dm b/code/modules/admin/player_panel/actions/general.dm index 5b39448eee..2821f1c123 100644 --- a/code/modules/admin/player_panel/actions/general.dm +++ b/code/modules/admin/player_panel/actions/general.dm @@ -68,17 +68,9 @@ message_admins("[key_name_admin(user)] has sent [key_name_admin(target)] back to the Lobby.") - var/mob/new_player/NP = new() - - if(!target.mind) - target.mind_initialize() - - target.mind.transfer_to(NP) - - qdel(target) + target.send_to_lobby() return TRUE - /datum/player_action/force_say action_tag = "mob_force_say" name = "Force Say" diff --git a/code/modules/admin/player_panel/actions/physical.dm b/code/modules/admin/player_panel/actions/physical.dm index 2728cbfc5d..21f5504455 100644 --- a/code/modules/admin/player_panel/actions/physical.dm +++ b/code/modules/admin/player_panel/actions/physical.dm @@ -70,35 +70,20 @@ /datum/player_action/cryo_human/act(client/user, mob/target, list/params) + var/datum/job/job = GET_MAPPED_ROLE(target.job) if(ishuman(target)) var/mob/living/carbon/human/H = target + job.on_cryo(H) if(H.assigned_squad) var/datum/squad/S = H.assigned_squad - if(H.job == JOB_SQUAD_SPECIALIST) - //we make the set this specialist took if any available again - if(H.skills) - var/set_name - switch(H.skills.get_skill_level(SKILL_SPEC_WEAPONS)) - if(SKILL_SPEC_ROCKET) - set_name = "Demolitionist Set" - if(SKILL_SPEC_GRENADIER) - set_name = "Heavy Grenadier Set" - if(SKILL_SPEC_PYRO) - set_name = "Pyro Set" - if(SKILL_SPEC_SCOUT) - set_name = "Scout Set" - if(SKILL_SPEC_SNIPER) - set_name = "Sniper Set" - - if(set_name && !available_specialist_sets.Find(set_name)) - available_specialist_sets += set_name S.forget_marine_in_squad(H) message_admins("[key_name_admin(user)] sent [key_name_admin(target)] ([H.job]) to cryogenics.") - SSticker.mode.latejoin_tally-- //Cryoing someone out removes someone from the Marines, blocking further larva spawns until accounted for + //Cryoing someone out removes someone from the Marines, blocking further larva spawns until accounted for + SSticker.mode.latejoin_update(job, -1) //Handle job slot/tater cleanup. - RoleAuthority.free_role(GET_MAPPED_ROLE(target.job), TRUE) + GLOB.RoleAuthority.free_role(GLOB.RoleAuthority.roles_for_mode[target.job], TRUE) //Delete them from datacore. var/target_ref = WEAKREF(target) @@ -200,7 +185,7 @@ /datum/player_action/set_squad/act(client/user, mob/living/carbon/human/target, list/params) var/list/squads = list() - for(var/datum/squad/S in RoleAuthority.squads) + for(var/datum/squad/S in GLOB.RoleAuthority.squads) squads[S.name] = S var/selected_squad = tgui_input_list(user, "Select a squad.", "Squad Selection", squads) diff --git a/code/modules/admin/player_panel/actions/punish.dm b/code/modules/admin/player_panel/actions/punish.dm index eb80632d8a..5d2298fc8f 100644 --- a/code/modules/admin/player_panel/actions/punish.dm +++ b/code/modules/admin/player_panel/actions/punish.dm @@ -119,6 +119,14 @@ user.admin_holder.player_notes_show(target.ckey) return TRUE +/datum/player_action/check_ckey + action_tag = "check_ckey" + name = "Check Ckey" + + +/datum/player_action/check_ckey/act(client/user, mob/target, list/params) + user.admin_holder.check_ckey(target.ckey) + return TRUE /datum/player_action/reset_xeno_name action_tag = "reset_xeno_name" @@ -259,11 +267,12 @@ GLOB.data_core.manifest_modify(new_name, WEAKREF(target_mob)) if(ishuman(target_mob)) var/mob/living/carbon/human/target_human = target_mob - if(target_human.wear_id && target_human.wear_id.registered_ref == WEAKREF(target_human)) - target_human.wear_id.name = "[target_human.real_name]'s ID Card" - target_human.wear_id.registered_name = "[target_human.real_name]" - if(target_human.wear_id.assignment) - target_human.wear_id.name += " ([target_human.wear_id.assignment])" + var/obj/item/card/id/card = target_human.get_idcard() + if(card?.registered_ref == WEAKREF(target_human)) + card.name = "[target_human.real_name]'s ID Card" + card.registered_name = "[target_human.real_name]" + if(card.assignment) + card.name += " ([card.assignment])" target_mob.client.prefs.real_name = new_name target_mob.client.prefs.save_character() diff --git a/code/modules/admin/player_panel/player_panel.dm b/code/modules/admin/player_panel/player_panel.dm index 03771e31a8..3b39fd21ca 100644 --- a/code/modules/admin/player_panel/player_panel.dm +++ b/code/modules/admin/player_panel/player_panel.dm @@ -188,6 +188,8 @@ for(var/mob/M in mobs) if(!M.ckey) continue + if(!CLIENT_HAS_RIGHTS(usr.client, R_STEALTH) && (M.client && (CLIENT_IS_STEALTHED(M.client)))) + continue var/color = i % 2 == 0 ? "#6289b7" : "#48709d" @@ -204,12 +206,7 @@ else M_job = "Carbon-based" else if(isSilicon(M)) //silicon - if(isAI(M)) - M_job = "AI" - else if(isrobot(M)) - M_job = "Cyborg" - else - M_job = "Silicon-based" + M_job = "Silicon-based" else if(isanimal(M)) //simple animals if(iscorgi(M)) M_job = "Corgi" @@ -290,10 +287,8 @@ dat += "
      " dat += "" - if(isAI(M)) + if(isSilicon(M)) dat += "" - else if(isrobot(M)) - dat += "" else if(ishuman(M)) dat += "" else if(istype(M, /mob/new_player)) @@ -328,7 +323,7 @@ var/dat = "

      Antagonists

      " dat += "Current Game Mode: [SSticker.mode.name]
      " - dat += "Round Duration: [round(world.time / 36000)]:[add_zero(world.time / 600 % 60, 2)]:[world.time / 100 % 6][world.time / 100 % 10]
      " + dat += "Round Duration: [floor(world.time / 36000)]:[add_zero(world.time / 600 % 60, 2)]:[world.time / 100 % 6][world.time / 100 % 10]
      " if(length(GLOB.other_factions_human_list)) dat += "
      [t] (unban)
      [(M.client ? "[M.client]" : "No client")][M.name]AICyborg[M.real_name]
      " @@ -343,7 +338,7 @@ dat += "" dat += "
      Other human factions
      PP
      " - if(SSticker.mode.survivors.len) + if(length(SSticker.mode.survivors)) dat += "
      " for(var/datum/mind/L in SSticker.mode.survivors) var/mob/M = L.current @@ -355,7 +350,7 @@ dat += "" dat += "
      Survivors
      PP
      " - if(SSticker.mode.xenomorphs.len) + if(length(SSticker.mode.xenomorphs)) dat += "
      " for(var/datum/mind/L in SSticker.mode.xenomorphs) var/mob/M = L.current @@ -367,7 +362,7 @@ dat += "" dat += "
      Aliens
      PP
      " - if(SSticker.mode.survivors.len) + if(length(SSticker.mode.survivors)) dat += "
      " for(var/datum/mind/L in SSticker.mode.survivors) var/mob/M = L.current @@ -386,10 +381,10 @@ if (SSticker.current_state >= GAME_STATE_PLAYING) var/dat = "

      Round Status

      " dat += "Current Game Mode: [SSticker.mode.name]
      " - dat += "Round Duration: [round(world.time / 36000)]:[add_zero(world.time / 600 % 60, 2)]:[world.time / 100 % 6][world.time / 100 % 10]
      " + dat += "Round Duration: [floor(world.time / 36000)]:[add_zero(world.time / 600 % 60, 2)]:[world.time / 100 % 6][world.time / 100 % 10]
      " if(check_rights(R_DEBUG, 0)) - dat += "VV Shuttle Controller

      " + dat += "VV Shuttle Controller

      " if(check_rights(R_MOD, 0)) dat += "Evacuation Goals: " diff --git a/code/modules/admin/tabs/admin_tab.dm b/code/modules/admin/tabs/admin_tab.dm index 3d6edda7cb..5f3bc22087 100644 --- a/code/modules/admin/tabs/admin_tab.dm +++ b/code/modules/admin/tabs/admin_tab.dm @@ -29,21 +29,12 @@ if(!admin_holder) return + if(!isobserver(mob)) + to_chat(usr, SPAN_WARNING("You must be a ghost to use this.")) - if(istype(mob,/mob/dead/observer)) - var/mob/dead/observer/ghost = mob - if(ghost.adminlarva == 0) - ghost.adminlarva = 1 - to_chat(usr, SPAN_BOLDNOTICE("You have disabled your larva protection.")) - else if(ghost.adminlarva == 1) - ghost.adminlarva = 0 - to_chat(usr, SPAN_BOLDNOTICE("You have re-activated your larva protection.")) - else - to_chat(usr, SPAN_BOLDNOTICE("Something went wrong tell a coder")) - else if(istype(mob,/mob/new_player)) - to_chat(src, "Error: Lose larva Protection: Can't lose larva protection whilst in the lobby. Observe first.") - else - to_chat(src, "Error: Lose larva Protection: You must be a ghost to use this.") + var/mob/dead/observer/ghost = mob + ghost.admin_larva_protection = !ghost.admin_larva_protection + to_chat(usr, SPAN_BOLDNOTICE("You have [ghost.admin_larva_protection ? "en" : "dis"]abled your larva protection.")) /client/proc/unban_panel() set name = "Unban Panel" @@ -103,7 +94,7 @@ if(body && !body.key) body.key = "@[key]" //Haaaaaaaack. But the people have spoken. If it breaks; blame adminbus if(body.client) - body.client.change_view(world_view_size) //reset view range to default. + body.client.change_view(GLOB.world_view_size) //reset view range to default. //re-open STUI if(new_STUI) @@ -191,6 +182,29 @@ dat += "" show_browser(usr, dat, "Admin record for [key]", "adminplayerinfo", "size=480x480") +/datum/admins/proc/check_ckey(target_key as text) + set name = "Check CKey" + set category = "Admin" + + var/mob/user = usr + if (!istype(src, /datum/admins)) + src = user.client.admin_holder + if (!istype(src, /datum/admins) || !(rights & R_MOD)) + to_chat(user, "Error: you are not an admin!") + return + target_key = ckey(target_key) + if(!target_key) + to_chat(user, "Error: No key detected!") + return + to_chat(user, SPAN_WARNING("Checking Ckey: [target_key]")) + var/list/keys = analyze_ckey(target_key) + if(!keys) + to_chat(user, SPAN_WARNING("No results for [target_key].")) + return + to_chat(user, SPAN_WARNING("Check CKey Results: [keys.Join(", ")]")) + + log_admin("[key_name(user)] analyzed ckey '[target_key]'") + /datum/admins/proc/sleepall() set name = "Sleep All" set category = "Admin.InView" @@ -389,7 +403,7 @@ set name = "Admin Verbs - Show" set category = "Admin" - add_verb(src, admin_verbs_hideable) + add_verb(src, GLOB.admin_verbs_hideable) remove_verb(src, /client/proc/enable_admin_verbs) if(!(admin_holder.rights & R_DEBUG)) @@ -402,7 +416,7 @@ set name = "Admin Verbs - Hide" set category = "Admin" - remove_verb(src, admin_verbs_hideable) + remove_verb(src, GLOB.admin_verbs_hideable) add_verb(src, /client/proc/enable_admin_verbs) /client/proc/strip_all_in_view() @@ -421,7 +435,7 @@ if(tgui_alert(src, "Do you want to strip yourself as well?", "Confirmation", list("Yes", "No")) == "Yes") strip_self = TRUE - for(var/mob/living/current_mob in view()) + for(var/mob/living/current_mob in view(src)) if(!strip_self && usr == current_mob) continue for (var/obj/item/current_item in current_mob) @@ -444,7 +458,7 @@ if(alert("This will rejuvenate ALL mobs within your view range. Are you sure?",,"Yes","Cancel") == "Cancel") return - for(var/mob/living/M in view()) + for(var/mob/living/M in view(src)) M.rejuvenate(FALSE) message_admins(WRAP_STAFF_LOG(usr, "ahealed everyone in [get_area(usr)] ([usr.x],[usr.y],[usr.z])."), usr.x, usr.y, usr.z) @@ -462,7 +476,7 @@ if(alert("This will rejuvenate ALL humans within your view range. Are you sure?",,"Yes","Cancel") == "Cancel") return - for(var/mob/living/carbon/human/M in view()) + for(var/mob/living/carbon/human/M in view(src)) M.rejuvenate(FALSE) message_admins(WRAP_STAFF_LOG(usr, "ahealed all humans in [get_area(usr)] ([usr.x],[usr.y],[usr.z])"), usr.x, usr.y, usr.z) @@ -479,7 +493,7 @@ if(alert("This will rejuvenate ALL revivable humans within your view range. Are you sure?",,"Yes","Cancel") == "Cancel") return - for(var/mob/living/carbon/human/M in view()) + for(var/mob/living/carbon/human/M in view(src)) if(!ishuman_strict(M) && !ishumansynth_strict(M)) continue @@ -505,7 +519,7 @@ if(alert("This will rejuvenate ALL xenos within your view range. Are you sure?",,"Yes","Cancel") == "Cancel") return - for(var/mob/living/carbon/xenomorph/X in view()) + for(var/mob/living/carbon/xenomorph/X in view(src)) X.rejuvenate(FALSE) message_admins(WRAP_STAFF_LOG(usr, "ahealed all xenos in [get_area(usr)] ([usr.x],[usr.y],[usr.z])"), usr.x, usr.y, usr.z) @@ -663,13 +677,13 @@ /proc/set_lz_resin_allowed(allowed = TRUE) if(allowed) - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.flags_area & AREA_UNWEEDABLE) continue A.is_resin_allowed = TRUE msg_admin_niche("Areas close to landing zones are now weedable.") else - for(var/area/A in all_areas) + for(var/area/A in GLOB.all_areas) if(A.flags_area & AREA_UNWEEDABLE) continue A.is_resin_allowed = initial(A.is_resin_allowed) @@ -849,7 +863,7 @@ set name = "Toggle Working Joe Restrictions" set category = "Admin.Flags" - if(!admin_holder || !check_rights(R_EVENT, FALSE)) + if(!admin_holder || !check_rights(R_EVENT, TRUE)) return if(!SSticker.mode) @@ -858,3 +872,17 @@ SSticker.mode.toggleable_flags ^= MODE_BYPASS_JOE message_admins("[src] has [MODE_HAS_TOGGLEABLE_FLAG(MODE_BYPASS_JOE) ? "allowed players to bypass (except whitelist)" : "prevented players from bypassing"] Working Joe spawn conditions.") + +/client/proc/toggle_joe_respawns() + set name = "Toggle Working Joe Respawns" + set category = "Admin.Flags" + + if(!admin_holder || !check_rights(R_EVENT, TRUE)) + return + + if(!SSticker.mode) + to_chat(usr, SPAN_WARNING("A mode hasn't been selected yet!")) + return + + SSticker.mode.toggleable_flags ^= MODE_DISABLE_JOE_RESPAWN + message_admins("[src] has [MODE_HAS_TOGGLEABLE_FLAG(MODE_DISABLE_JOE_RESPAWN) ? "disabled" : "enabled"] Working Joe respawns.") diff --git a/code/modules/admin/tabs/debug_tab.dm b/code/modules/admin/tabs/debug_tab.dm index 15a02d197c..58911e5397 100644 --- a/code/modules/admin/tabs/debug_tab.dm +++ b/code/modules/admin/tabs/debug_tab.dm @@ -5,7 +5,7 @@ if(!check_rights(R_DEBUG)) return - add_verb(src, debug_verbs) + add_verb(src, GLOB.debug_verbs) remove_verb(src, /client/proc/enable_debug_verbs) /client/proc/hide_debug_verbs() @@ -15,7 +15,7 @@ if(!check_rights(R_DEBUG)) return - remove_verb(src, debug_verbs) + remove_verb(src, GLOB.debug_verbs) add_verb(src, /client/proc/enable_debug_verbs) /client/proc/enter_tree() @@ -32,7 +32,7 @@ var/value = SStechtree.trees[1] - if(trees.len > 1) + if(length(trees) > 1) value = tgui_input_list(src, "Choose which tree to enter", "Enter Tree", trees) if(!value) @@ -60,7 +60,7 @@ var/value = SStechtree.trees[1] - if(trees.len > 1) + if(length(trees) > 1) value = tgui_input_list(src, "Choose which tree to give points to", "Give Points", trees) if(!value) @@ -82,7 +82,7 @@ if(!check_rights(R_ADMIN|R_DEBUG)) return - debug_variables(round_statistics) + debug_variables(GLOB.round_statistics) /client/proc/cmd_admin_delete(atom/O as obj|mob|turf in world) set category = "Debug" @@ -153,15 +153,6 @@ message_admins("[usr.ckey] manually reloaded admins.") load_admins() -/client/proc/reload_whitelist() - set name = "Reload Whitelist" - set category = "Debug" - if(alert("Are you sure you want to do this?",, "Yes", "No") != "Yes") return - if(!check_rights(R_SERVER) || !RoleAuthority) return - - message_admins("[usr.ckey] manually reloaded the role whitelist.") - RoleAuthority.load_whitelist() - /client/proc/bulk_fetcher() set name = "Bulk Fetch Items" set category = "Debug" diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm index a46ff34e3e..862168f96d 100644 --- a/code/modules/admin/tabs/event_tab.dm +++ b/code/modules/admin/tabs/event_tab.dm @@ -23,7 +23,7 @@ faction = temp_list[faction] if(!GLOB.custom_event_info_list[faction]) - to_chat(usr, "Error has occured, [faction] category is not found.") + to_chat(usr, "Error has occurred, [faction] category is not found.") return var/datum/custom_event_info/CEI = GLOB.custom_event_info_list[faction] @@ -81,6 +81,8 @@ /client/proc/handle_bomb_drop(atom/epicenter) var/custom_limit = 5000 + var/power_warn_threshold = 500 + var/falloff_warn_threshold = 0.05 var/list/choices = list("Small Bomb", "Medium Bomb", "Big Bomb", "Custom Bomb") var/list/falloff_shape_choices = list("CANCEL", "Linear", "Exponential") var/choice = tgui_input_list(usr, "What size explosion would you like to produce?", "Drop Bomb", choices) @@ -113,6 +115,11 @@ if(power > custom_limit) return + + if((power >= power_warn_threshold) && ((1 / (power / falloff)) <= falloff_warn_threshold) && (explosion_shape == EXPLOSION_FALLOFF_SHAPE_LINEAR)) // The lag can be a bit situational, but a large-power explosion with minimal (linear) falloff can absolutely bring the server to a halt in certain cases. + if(tgui_input_list(src, "This bomb has the potential to lag the server. Are you sure you wish to drop it?", "Drop confirm", list("Yes", "No")) != "Yes") + return + cell_explosion(epicenter, power, falloff, explosion_shape, null, cause_data) message_admins("[key_name(src, TRUE)] dropped a custom cell bomb with power [power], falloff [falloff] and falloff_shape [shape_choice]!") message_admins("[ckey] used 'Drop Bomb' at [epicenter.loc].") @@ -217,18 +224,15 @@ if(!istype(chosen_ert)) return + var/quiet_launch = TRUE + var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(ql_prompt == "Yes") + quiet_launch = FALSE - var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) - if(launch_broadcast == "Yes") - launch_broadcast = TRUE - else - launch_broadcast = FALSE - - var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) - if(announce_receipt == "Yes") + var/announce_receipt = FALSE + var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(ar_prompt == "Yes") announce_receipt = TRUE - else - announce_receipt = FALSE var/turf/override_spawn_loc var/prompt = tgui_alert(usr, "Spawn at their assigned spawn, or at your location?", "Spawnpoint Selection", list("Spawn", "Current Location"), 0) @@ -238,7 +242,7 @@ if(prompt == "Current Location") override_spawn_loc = get_turf(usr) - chosen_ert.activate(quiet_launch = !launch_broadcast, announce_incoming = announce_receipt, override_spawn_loc = override_spawn_loc) + chosen_ert.activate(quiet_launch, announce_receipt, override_spawn_loc) message_admins("[key_name_admin(usr)] admin-called a [choice == "Randomize" ? "randomized ":""]distress beacon: [chosen_ert.name]") @@ -275,12 +279,12 @@ var/points_to_add = tgui_input_real_number(usr, "Enter the amount of points to give, or a negative number to subtract. 1 point = $100.", "Points", 0) if(!points_to_add) return - else if((supply_controller.points + points_to_add) < 0) - supply_controller.points = 0 - else if((supply_controller.points + points_to_add) > 99999) - supply_controller.points = 99999 + else if((GLOB.supply_controller.points + points_to_add) < 0) + GLOB.supply_controller.points = 0 + else if((GLOB.supply_controller.points + points_to_add) > 99999) + GLOB.supply_controller.points = 99999 else - supply_controller.points += points_to_add + GLOB.supply_controller.points += points_to_add message_admins("[key_name_admin(usr)] granted requisitions [points_to_add] points.") @@ -294,11 +298,11 @@ if(!SSticker.mode || !check_rights(R_ADMIN)) return - var/req_heat_change = tgui_input_real_number(usr, "Set the new requisitions black market heat. ERT is called at 100, disabled at -1. Current Heat: [supply_controller.black_market_heat]", "Modify Req Heat", 0, 100, -1) + var/req_heat_change = tgui_input_real_number(usr, "Set the new requisitions black market heat. ERT is called at 100, disabled at -1. Current Heat: [GLOB.supply_controller.black_market_heat]", "Modify Req Heat", 0, 100, -1) if(!req_heat_change) return - supply_controller.black_market_heat = req_heat_change + GLOB.supply_controller.black_market_heat = req_heat_change message_admins("[key_name_admin(usr)] set requisitions heat to [req_heat_change].") @@ -325,7 +329,11 @@ if(!admin_holder) return - var/list/options = list("Weyland-Yutani", "High Command", "Provost", "Press", "CMB", "Other", "Cancel") + var/list/options = list( + "Weyland-Yutani", "High Command", "Provost", "Press", + "Colonial Marshal Bureau", "Union of Progressive Peoples", + "Three World Empire", "Colonial Liberation Front", + "Other", "Cancel") var/answer = tgui_input_list(src, "Which kind of faxes would you like to see?", "Faxes", options) switch(answer) if("Weyland-Yutani") @@ -337,6 +345,7 @@ body += "

      " show_browser(src, body, "Faxes to Weyland-Yutani", "wyfaxviewer", "size=300x600") + if("High Command") var/body = "" @@ -346,6 +355,7 @@ body += "

      " show_browser(src, body, "Faxes to High Command", "uscmfaxviewer", "size=300x600") + if("Provost") var/body = "" @@ -364,9 +374,9 @@ body += "

      " body += "

      " - show_browser(src, body, "Faxes to Press organizations", "otherfaxviewer", "size=300x600") + show_browser(src, body, "Faxes to Press organizations", "pressfaxviewer", "size=300x600") - if("CMB") + if("Colonial Marshal Bureau") var/body = "" for(var/text in GLOB.CMBFaxes) @@ -376,6 +386,36 @@ body += "

      " show_browser(src, body, "Faxes to the Colonial Marshal Bureau", "cmbfaxviewer", "size=300x600") + if("Union of Progressive Peoples") + var/body = "" + + for(var/text in GLOB.UPPFaxes) + body += text + body += "

      " + + body += "

      " + show_browser(src, body, "Faxes to the Union of Progressive Peoples", "uppfaxviewer", "size=300x600") + + if("Three World Empire") + var/body = "" + + for(var/text in GLOB.TWEFaxes) + body += text + body += "

      " + + body += "

      " + show_browser(src, body, "Faxes to the Three World Empire", "twefaxviewer", "size=300x600") + + if("Colonial Liberation Front") + var/body = "" + + for(var/text in GLOB.CLFFaxes) + body += text + body += "

      " + + body += "

      " + show_browser(src, body, "Faxes to the Colonial Liberation Front", "clffaxviewer", "size=300x600") + if("Other") var/body = "" @@ -405,7 +445,7 @@ var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(hive.totalXenos.len > 0 || hive.total_dead_xenos.len > 0) + if(length(hive.totalXenos) > 0 || length(hive.total_dead_xenos) > 0) hives += list("[hive.name]" = hive.hivenumber) last_hive_checked = hive @@ -424,25 +464,26 @@ /client/proc/give_nuke() if(!check_rights(R_ADMIN)) return - var/nuketype = "Decrypted Operational Nuke" + var/nukename = "Decrypted Operational Nuke" var/encrypt = tgui_alert(src, "Do you want the nuke to be already decrypted?", "Nuke Type", list("Encrypted", "Decrypted"), 20 SECONDS) if(encrypt == "Encrypted") - nuketype = "Encrypted Operational Nuke" + nukename = "Encrypted Operational Nuke" var/prompt = tgui_alert(src, "THIS CAN BE USED TO END THE ROUND. Are you sure you want to spawn a nuke? The nuke will be put onto the ASRS Lift.", "DEFCON 1", list("No", "Yes"), 30 SECONDS) if(prompt != "Yes") return + var/nuketype = GLOB.supply_packs_types[nukename] + var/datum/supply_order/new_order = new() - new_order.ordernum = supply_controller.ordernum - supply_controller.ordernum++ - new_order.object = supply_controller.supply_packs[nuketype] + new_order.ordernum = GLOB.supply_controller.ordernum++ + new_order.object = GLOB.supply_packs_datums[nuketype] new_order.orderedby = MAIN_AI_SYSTEM new_order.approvedby = MAIN_AI_SYSTEM - supply_controller.shoppinglist += new_order + GLOB.supply_controller.shoppinglist += new_order marine_announcement("A nuclear device has been supplied and will be delivered to requisitions via ASRS.", "NUCLEAR ARSENAL ACQUIRED", 'sound/misc/notice2.ogg') - message_admins("[key_name_admin(usr)] admin-spawned a [encrypt] nuke.") - log_game("[key_name_admin(usr)] admin-spawned a [encrypt] nuke.") + message_admins("[key_name_admin(usr)] admin-spawned \a [encrypt] nuke.") + log_game("[key_name_admin(usr)] admin-spawned \a [encrypt] nuke.") /client/proc/turn_everyone_into_primitives() var/random_names = FALSE @@ -458,8 +499,8 @@ if(random_names) var/random_name = "[lowertext(H.species.name)] ([rand(1, 999)])" H.change_real_name(H, random_name) - if(H.wear_id) - var/obj/item/card/id/card = H.wear_id + var/obj/item/card/id/card = H.get_idcard() + if(card) card.registered_name = H.real_name card.name = "[card.registered_name]'s ID Card ([card.assignment])" @@ -507,7 +548,7 @@ if(!customname) customname = "[faction] Update" if(faction == FACTION_MARINE) - for(var/obj/structure/machinery/computer/almayer_control/C in machines) + for(var/obj/structure/machinery/computer/almayer_control/C in GLOB.machines) if(!(C.inoperable())) var/obj/item/paper/P = new /obj/item/paper( C.loc ) P.name = "'[customname].'" @@ -524,7 +565,7 @@ else marine_announcement(input, customname, 'sound/AI/commandreport.ogg', faction) - message_admins("[key_name_admin(src)] has created a [faction] command report") + message_admins("[key_name_admin(src)] has created \a [faction] command report") log_admin("[key_name_admin(src)] [faction] command report: [input]") /client/proc/cmd_admin_xeno_report() @@ -572,7 +613,12 @@ if(!admin_holder || !(admin_holder.rights & R_MOD)) to_chat(src, "Only administrators may use this command.") - return + return FALSE + + if(!ares_is_active()) + to_chat(usr, SPAN_WARNING("[MAIN_AI_SYSTEM] is destroyed, and cannot talk!")) + return FALSE + var/input = input(usr, "This is a standard message from the ship's AI. It uses Almayer General channel and won't be heard by humans without access to Almayer General channel (headset or intercom). Check with online staff before you send this. Do not use html.", "What?", "") as message|null if(!input) return FALSE @@ -581,7 +627,7 @@ var/prompt = tgui_alert(src, "ARES interface processor is offline or destroyed, send the message anyways?", "Choose.", list("Yes", "No"), 20 SECONDS) if(prompt == "No") to_chat(usr, SPAN_WARNING("[MAIN_AI_SYSTEM] is not responding. It's interface processor may be offline or destroyed.")) - return + return FALSE ai_announcement(input) message_admins("[key_name_admin(src)] has created an AI comms report") @@ -594,13 +640,17 @@ if(!admin_holder || !(admin_holder.rights & R_MOD)) to_chat(src, "Only administrators may use this command.") - return + return FALSE + + if(!ares_is_active()) + to_chat(usr, SPAN_WARNING("[MAIN_AI_SYSTEM] is destroyed, and cannot talk!")) + return FALSE + var/input = tgui_input_text(usr, "This is a broadcast from the ship AI to Working Joes and Maintenance Drones. Do not use html.", "What?", "") if(!input) return FALSE - var/datum/ares_link/link = GLOB.ares_link - if(link.processor_apollo.inoperable()) + if(!ares_can_apollo()) var/prompt = tgui_alert(src, "ARES APOLLO processor is offline or destroyed, send the message anyways?", "Choose.", list("Yes", "No"), 20 SECONDS) if(prompt != "Yes") to_chat(usr, SPAN_WARNING("[MAIN_AI_SYSTEM] is not responding. It's APOLLO processor may be offline or destroyed.")) @@ -690,7 +740,7 @@ set name = "Toggle Remote Control" set category = "Admin.Events" - if(!check_rights(R_SPAWN)) + if(!check_rights(R_MOD|R_DEBUG)) return remote_control = !remote_control @@ -700,14 +750,14 @@ set name = "Mob Event Verbs - Show" set category = "Admin.Events" - add_verb(src, admin_mob_event_verbs_hideable) + add_verb(src, GLOB.admin_mob_event_verbs_hideable) remove_verb(src, /client/proc/enable_event_mob_verbs) /client/proc/hide_event_mob_verbs() set name = "Mob Event Verbs - Hide" set category = "Admin.Events" - remove_verb(src, admin_mob_event_verbs_hideable) + remove_verb(src, GLOB.admin_mob_event_verbs_hideable) add_verb(src, /client/proc/enable_event_mob_verbs) // ---------------------------- @@ -738,7 +788,7 @@ Power ship SMESs and APCs
      Power ship SMESs
      Power ALL SMESs and APCs everywhere
      - Power all ship reactors
      + Repair and power all ship reactors

      Events
      Break all lights
      @@ -752,6 +802,7 @@ Spawn a nuke
      Toggle PMC gun restrictions
      Turn everyone into monkies
      + Give or take opposable thumbs and gun permits from xenos

      "} @@ -1031,10 +1082,11 @@ if("Xeno") GLOB.bioscan_data.qm_bioscan(variance) if("Marine") - var/force_check = tgui_alert(usr, "Do you wish to force ARES to display the bioscan?", "Display force", list("Yes", "No"), 20 SECONDS) var/force_status = FALSE - if(force_check == "Yes") - force_status = TRUE + if(!ares_can_interface()) //proc checks if ARES is dead or if ARES cannot do announcements + var/force_check = tgui_alert(usr, "ARES is currently unable to properly display and/or perform the Bioscan, do you wish to force ARES to display the bioscan?", "Display force", list("Yes", "No"), 20 SECONDS) + if(force_check == "Yes") + force_status = TRUE GLOB.bioscan_data.ares_bioscan(force_status, variance) if("Yautja") GLOB.bioscan_data.yautja_bioscan() diff --git a/code/modules/admin/tabs/round_tab.dm b/code/modules/admin/tabs/round_tab.dm index 22ba96a231..bc154e6ee1 100644 --- a/code/modules/admin/tabs/round_tab.dm +++ b/code/modules/admin/tabs/round_tab.dm @@ -1,22 +1,37 @@ /client/proc/adjust_predator_round() - set name = "Adjust Predator Round" - set desc = "Adjust the number of predators present in a predator round." + set name = "Adjust Predator Slots" + set desc = "Adjust the extra slots for predators." set category = "Server.Round" - if(admin_holder) - if(!SSticker || !SSticker.mode) - to_chat(src, SPAN_WARNING("The game hasn't started yet!")) - return + if(!admin_holder) + return - var/value = tgui_input_number(src,"How many additional predators can join? Decreasing the value is not recommended. Current predator count: [SSticker.mode.pred_current_num]","Input:", 0, (SSticker.mode.pred_additional_max - SSticker.mode.pred_current_num)) + if(!SSticker?.mode) + to_chat(src, SPAN_WARNING("The game hasn't started yet!")) + return - if(value < SSticker.mode.pred_current_num) - to_chat(src, SPAN_NOTICE("Aborting. Number cannot be lower than the current pred count. (current: [SSticker.mode.pred_current_num], attempted: [value])")) - return + var/cur_extra = SSticker.mode.pred_additional_max + var/cur_count = SSticker.mode.pred_current_num + var/cur_max = SSticker.mode.calculate_pred_max() + var/value = tgui_input_number(src, "How many additional predators can join? Current predator count: [cur_count]/[cur_max] Current setting: [cur_extra]", "Input:", default = cur_extra, min_value = 0, integer_only = TRUE) - if(value) - SSticker.mode.pred_additional_max = abs(value) - message_admins("[key_name_admin(usr)] adjusted the additional pred amount to [abs(value)].") + if(isnull(value)) + return + + if(value == cur_extra) + return + + cur_count = SSticker.mode.pred_current_num // values could have changed since asking + cur_max = SSticker.mode.calculate_pred_max() + var/free_extra = max(min(cur_extra, cur_max - cur_count), 0) // how much we could potentionally reduce pred_additional_max + + // If we are reducing the count and that exceeds how much we could reduce it by + if(value < cur_extra && (cur_extra - value) > free_extra) + to_chat(src, SPAN_NOTICE("Aborting. Number cannot result in a max less than current pred count. (current: [cur_count]/[cur_max], current extra: [cur_extra], attempted: [value])")) + return + + SSticker.mode.pred_additional_max = value + message_admins("[key_name_admin(usr)] adjusted the additional pred amount from [cur_extra] to [value].") /datum/admins/proc/force_predator_round() set name = "Toggle Predator Round" @@ -38,10 +53,11 @@ return if(!(predator_round.flags_round_type & MODE_PREDATOR)) - var/datum/job/PJ = RoleAuthority.roles_for_mode[JOB_PREDATOR] + var/datum/job/PJ = GLOB.RoleAuthority.roles_for_mode[JOB_PREDATOR] if(istype(PJ) && !PJ.spawn_positions) - PJ.set_spawn_positions(players_preassigned) + PJ.set_spawn_positions(GLOB.players_preassigned) predator_round.flags_round_type |= MODE_PREDATOR + REDIS_PUBLISH("byond.round", "type" = "predator-round", "map" = SSmapping.configs[GROUND_MAP].map_name) else predator_round.flags_round_type &= ~MODE_PREDATOR @@ -58,8 +74,8 @@ var/roles[] = new var/i var/datum/job/J - for(i in RoleAuthority.roles_for_mode) //All the roles in the game. - J = RoleAuthority.roles_for_mode[i] + for(i in GLOB.RoleAuthority.roles_for_mode) //All the roles in the game. + J = GLOB.RoleAuthority.roles_for_mode[i] if(J.total_positions > 0 && J.current_positions > 0) roles += i @@ -67,7 +83,7 @@ var/role = input("This list contains all roles that have at least one slot taken.\nPlease select role slot to free.", "Free role slot") as null|anything in roles if(!role) return - RoleAuthority.free_role_admin(RoleAuthority.roles_for_mode[role], TRUE, src) + GLOB.RoleAuthority.free_role_admin(GLOB.RoleAuthority.roles_for_mode[role], TRUE, src) /client/proc/modify_slot() set name = "Adjust Job Slots" @@ -81,10 +97,10 @@ var/active_role_names = GLOB.gamemode_roles[GLOB.master_mode] if(!active_role_names) - active_role_names = ROLES_DISTRESS_SIGNAL + active_role_names = GLOB.ROLES_DISTRESS_SIGNAL for(var/role_name as anything in active_role_names) - var/datum/job/job = RoleAuthority.roles_by_name[role_name] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[role_name] if(!job) continue roles += role_name @@ -92,12 +108,12 @@ var/role = input("Please select role slot to modify", "Modify amount of slots") as null|anything in roles if(!role) return - J = RoleAuthority.roles_by_name[role] + J = GLOB.RoleAuthority.roles_by_name[role] var/tpos = J.spawn_positions var/num = tgui_input_number(src, "How many slots role [J.title] should have?\nCurrently taken slots: [J.current_positions]\nTotal amount of slots opened this round: [J.total_positions_so_far]","Number:", tpos) if(isnull(num)) return - if(!RoleAuthority.modify_role(J, num)) + if(!GLOB.RoleAuthority.modify_role(J, num)) to_chat(usr, SPAN_BOLDNOTICE("Can't set job slots to be less than amount of log-ins or you are setting amount of slots less than minimal. Free slots first.")) message_admins("[key_name(usr)] adjusted job slots of [J.title] to be [num].") @@ -169,8 +185,10 @@ set name = "Start Round" set desc = "Start the round RIGHT NOW" set category = "Server.Round" - if (alert("Are you sure you want to start the round early?",,"Yes","No") != "Yes") - return + var/response = tgui_alert(usr, "Are you sure you want to start the round early?", "Force Start Round", list("Yes", "Bypass Checks", "No"), 30 SECONDS) + if (response != "Yes" && response != "Bypass Checks") + return FALSE + SSticker.bypass_checks = response == "Bypass Checks" if (SSticker.current_state == GAME_STATE_STARTUP) message_admins("Game is setting up and will launch as soon as it is ready.") message_admins(SPAN_ADMINNOTICE("[usr.key] has started the process to start the game when loading is finished.")) diff --git a/code/modules/admin/tabs/server_tab.dm b/code/modules/admin/tabs/server_tab.dm index 84c9426dfa..382b08c182 100644 --- a/code/modules/admin/tabs/server_tab.dm +++ b/code/modules/admin/tabs/server_tab.dm @@ -21,8 +21,8 @@ set desc = "Players can still log into the server, but players won't be able to join the game as a new mob." set category = "Server" - enter_allowed = !enter_allowed - if(!enter_allowed) + GLOB.enter_allowed = !GLOB.enter_allowed + if(!GLOB.enter_allowed) to_world("New players may no longer join the game.") else to_world("New players may now join the game.") @@ -34,8 +34,8 @@ set desc = "Globally Toggles Deadchat" set category = "Server" - dsay_allowed = !dsay_allowed - if(dsay_allowed) + GLOB.dsay_allowed = !GLOB.dsay_allowed + if(GLOB.dsay_allowed) to_world("Deadchat has been globally enabled!") else to_world("Deadchat has been globally disabled!") @@ -46,8 +46,8 @@ set desc = "Globally Toggles OOC" set category = "Server" - ooc_allowed = !ooc_allowed - if(ooc_allowed) + GLOB.ooc_allowed = !GLOB.ooc_allowed + if(GLOB.ooc_allowed) to_world("The OOC channel has been globally enabled!") else to_world("The OOC channel has been globally disabled!") @@ -58,8 +58,8 @@ set desc = "Globally Toggles LOOC" set category = "Server" - looc_allowed = !looc_allowed - if(looc_allowed) + GLOB.looc_allowed = !GLOB.looc_allowed + if(GLOB.looc_allowed) to_world("The LOOC channel has been globally enabled!") else to_world("The LOOC channel has been globally disabled!") diff --git a/code/modules/admin/topic/topic.dm b/code/modules/admin/topic/topic.dm index 9d0a6de572..baf2c89134 100644 --- a/code/modules/admin/topic/topic.dm +++ b/code/modules/admin/topic/topic.dm @@ -50,7 +50,7 @@ if(task == "add") var/new_ckey = ckey(input(usr,"New admin's ckey","Admin ckey", null) as text|null) if(!new_ckey) return - if(new_ckey in admin_datums) + if(new_ckey in GLOB.admin_datums) to_chat(usr, "Error: Topic 'editrights': [new_ckey] is already an admin") return adm_ckey = new_ckey @@ -61,20 +61,20 @@ to_chat(usr, "Error: Topic 'editrights': No valid ckey") return - var/datum/admins/D = admin_datums[adm_ckey] + var/datum/admins/D = GLOB.admin_datums[adm_ckey] if(task == "remove") if(alert("Are you sure you want to remove [adm_ckey]?","Message","Yes","Cancel") == "Yes") if(!D) return - admin_datums -= adm_ckey + GLOB.admin_datums -= adm_ckey D.disassociate() message_admins("[key_name_admin(usr)] removed [adm_ckey] from the admins list") else if(task == "rank") var/new_rank - if(admin_ranks.len) - new_rank = tgui_input_list(usr, "Please select a rank", "New rank", (admin_ranks|"*New Rank*")) + if(length(GLOB.admin_ranks)) + new_rank = tgui_input_list(usr, "Please select a rank", "New rank", (GLOB.admin_ranks|"*New Rank*")) else new_rank = tgui_input_list(usr, "Please select a rank", "New rank", list("Game Master","Game Admin", "Trial Admin", "Admin Observer","*New Rank*")) @@ -91,15 +91,15 @@ to_chat(usr, "Error: Topic 'editrights': Invalid rank") return if(CONFIG_GET(flag/admin_legacy_system)) - if(admin_ranks.len) - if(new_rank in admin_ranks) - rights = admin_ranks[new_rank] //we typed a rank which already exists, use its rights + if(length(GLOB.admin_ranks)) + if(new_rank in GLOB.admin_ranks) + rights = GLOB.admin_ranks[new_rank] //we typed a rank which already exists, use its rights else - admin_ranks[new_rank] = 0 //add the new rank to admin_ranks + GLOB.admin_ranks[new_rank] = 0 //add the new rank to admin_ranks else if(CONFIG_GET(flag/admin_legacy_system)) new_rank = ckeyEx(new_rank) - rights = admin_ranks[new_rank] //we input an existing rank, use its rights + rights = GLOB.admin_ranks[new_rank] //we input an existing rank, use its rights if(D) D.disassociate() //remove adminverbs and unlink from client @@ -435,31 +435,31 @@ var/reason var/banfolder = href_list["unbanupgradeperma"] - Banlist.cd = "/base/[banfolder]" - var/reason2 = Banlist["reason"] + GLOB.Banlist.cd = "/base/[banfolder]" + var/reason2 = GLOB.Banlist["reason"] - var/minutes = Banlist["minutes"] + var/minutes = GLOB.Banlist["minutes"] - var/banned_key = Banlist["key"] - Banlist.cd = "/base" + var/banned_key = GLOB.Banlist["key"] + GLOB.Banlist.cd = "/base" var/mins = 0 - if(minutes > CMinutes) - mins = minutes - CMinutes + if(minutes > GLOB.CMinutes) + mins = minutes - GLOB.CMinutes if(!mins) return mins = max(5255990,mins) // 10 years - minutes = CMinutes + mins + minutes = GLOB.CMinutes + mins reason = input(usr,"Reason?","reason",reason2) as message|null if(!reason) return ban_unban_log_save("[key_name(usr)] upgraded [banned_key]'s ban to a permaban. Reason: [sanitize(reason)]") message_admins("[key_name_admin(usr)] upgraded [banned_key]'s ban to a permaban. Reason: [sanitize(reason)]") - Banlist.cd = "/base/[banfolder]" - Banlist["reason"] << sanitize(reason) - Banlist["temp"] << 0 - Banlist["minutes"] << minutes - Banlist["bannedby"] << usr.ckey - Banlist.cd = "/base" + GLOB.Banlist.cd = "/base/[banfolder]" + GLOB.Banlist["reason"] << sanitize(reason) + GLOB.Banlist["temp"] << 0 + GLOB.Banlist["minutes"] << minutes + GLOB.Banlist["bannedby"] << usr.ckey + GLOB.Banlist.cd = "/base" unbanpanel() else if(href_list["unbane"]) @@ -469,36 +469,36 @@ var/reason var/banfolder = href_list["unbane"] - Banlist.cd = "/base/[banfolder]" - var/reason2 = Banlist["reason"] - var/temp = Banlist["temp"] + GLOB.Banlist.cd = "/base/[banfolder]" + var/reason2 = GLOB.Banlist["reason"] + var/temp = GLOB.Banlist["temp"] - var/minutes = Banlist["minutes"] + var/minutes = GLOB.Banlist["minutes"] - var/banned_key = Banlist["key"] - Banlist.cd = "/base" + var/banned_key = GLOB.Banlist["key"] + GLOB.Banlist.cd = "/base" var/duration var/mins = 0 - if(minutes > CMinutes) - mins = minutes - CMinutes + if(minutes > GLOB.CMinutes) + mins = minutes - GLOB.CMinutes mins = tgui_input_number(usr,"How long (in minutes)? \n 1440 = 1 day \n 4320 = 3 days \n 10080 = 7 days \n 43800 = 1 Month","Ban time", 1440, 262800, 1) if(!mins) return mins = min(525599,mins) - minutes = CMinutes + mins + minutes = GLOB.CMinutes + mins duration = GetExp(minutes) reason = input(usr,"Reason?","reason",reason2) as message|null if(!reason) return ban_unban_log_save("[key_name(usr)] edited [banned_key]'s ban. Reason: [sanitize(reason)] Duration: [duration]") message_admins("[key_name_admin(usr)] edited [banned_key]'s ban. Reason: [sanitize(reason)] Duration: [duration]") - Banlist.cd = "/base/[banfolder]" - Banlist["reason"] << sanitize(reason) - Banlist["temp"] << temp - Banlist["minutes"] << minutes - Banlist["bannedby"] << usr.ckey - Banlist.cd = "/base" + GLOB.Banlist.cd = "/base/[banfolder]" + GLOB.Banlist["reason"] << sanitize(reason) + GLOB.Banlist["temp"] << temp + GLOB.Banlist["minutes"] << minutes + GLOB.Banlist["bannedby"] << usr.ckey + GLOB.Banlist.cd = "/base" unbanpanel() /////////////////////////////////////new ban stuff @@ -517,7 +517,7 @@ alert("You cannot perform this action. You must be of a higher administrative rank!") return - if(!RoleAuthority) + if(!GLOB.RoleAuthority) to_chat(usr, "Role Authority has not been set up!") return @@ -530,23 +530,23 @@ var/list/joblist = list() switch(href_list["jobban3"]) if("CICdept") - joblist += get_job_titles_from_list(ROLES_COMMAND) + joblist += get_job_titles_from_list(GLOB.ROLES_COMMAND) if("Supportdept") - joblist += get_job_titles_from_list(ROLES_AUXIL_SUPPORT) + joblist += get_job_titles_from_list(GLOB.ROLES_AUXIL_SUPPORT) if("Policedept") - joblist += get_job_titles_from_list(ROLES_POLICE) + joblist += get_job_titles_from_list(GLOB.ROLES_POLICE) if("Engineeringdept") - joblist += get_job_titles_from_list(ROLES_ENGINEERING) + joblist += get_job_titles_from_list(GLOB.ROLES_ENGINEERING) if("Requisitiondept") - joblist += get_job_titles_from_list(ROLES_REQUISITION) + joblist += get_job_titles_from_list(GLOB.ROLES_REQUISITION) if("Medicaldept") - joblist += get_job_titles_from_list(ROLES_MEDICAL) + joblist += get_job_titles_from_list(GLOB.ROLES_MEDICAL) if("Marinesdept") - joblist += get_job_titles_from_list(ROLES_MARINES) + joblist += get_job_titles_from_list(GLOB.ROLES_MARINES) if("Miscdept") - joblist += get_job_titles_from_list(ROLES_MISC) + joblist += get_job_titles_from_list(GLOB.ROLES_MISC) if("Xenosdept") - joblist += get_job_titles_from_list(ROLES_XENO) + joblist += get_job_titles_from_list(GLOB.ROLES_XENO) else joblist += href_list["jobban3"] @@ -556,7 +556,7 @@ notbannedlist += job //Banning comes first - if(notbannedlist.len) + if(length(notbannedlist)) if(!check_rights(R_BAN)) return var/reason = input(usr,"Reason?","Please State Reason","") as text|null if(reason) @@ -568,7 +568,7 @@ //Unbanning joblist //all jobs in joblist are banned already OR we didn't give a reason (implying they shouldn't be banned) - if(joblist.len) //at least 1 banned job exists in joblist so we have stuff to unban. + if(length(joblist)) //at least 1 banned job exists in joblist so we have stuff to unban. for(var/job in joblist) var/reason = jobban_isbanned(M, job, P1) if(!reason) continue //skip if it isn't jobbanned anyway @@ -759,23 +759,9 @@ var/dat = {"What mode do you wish to play?
      "} for(var/mode in config.modes) dat += {"[config.mode_names[mode]]
      "} - dat += {"Now: [master_mode]"} + dat += {"Now: [GLOB.master_mode]"} show_browser(usr, dat, "Change Gamemode", "c_mode") - else if(href_list["f_secret"]) - if(!check_rights(R_ADMIN)) return - - if(SSticker.mode) - return alert(usr, "The game has already started.", null, null, null, null) - if(master_mode != "secret") - return alert(usr, "The game mode has to be secret!", null, null, null, null) - var/dat = {"What game mode do you want to force secret to be? Use this if you want to change the game mode, but want the players to believe it's secret. This will only work if the current game mode is secret.
      "} - for(var/mode in config.modes) - dat += {"[config.mode_names[mode]]
      "} - dat += {"Random (default)
      "} - dat += {"Now: [secret_force_mode]"} - show_browser(usr, dat, "Change Secret Gamemode", "f_secret") - else if(href_list["c_mode2"]) if(!check_rights(R_ADMIN|R_SERVER)) return @@ -785,19 +771,6 @@ Game() // updates the main game menu SSticker.save_mode(GLOB.master_mode) - - else if(href_list["f_secret2"]) - if(!check_rights(R_ADMIN|R_SERVER)) return - - if(SSticker.mode) - return alert(usr, "The game has already started.", null, null, null, null) - if(master_mode != "secret") - return alert(usr, "The game mode has to be secret!", null, null, null, null) - secret_force_mode = href_list["f_secret2"] - message_admins("[key_name_admin(usr)] set the forced secret mode as [secret_force_mode].") - Game() // updates the main game menu - .(href, list("f_secret"=1)) - else if(href_list["monkeyone"]) if(!check_rights(R_SPAWN)) return @@ -814,7 +787,7 @@ var/mob/M = locate(href_list["forcespeech"]) if(!ismob(M)) - to_chat(usr, "this can only be used on instances of type /mob") + to_chat(usr, "This can only be used on instances of type /mob") return var/speech = input("What will [key_name(M)] say?.", "Force speech", "")// Don't need to sanitize, since it does that in say(), we also trust our admins. @@ -827,7 +800,7 @@ if(!check_rights(R_ADMIN)) return var/mob/living/carbon/human/H = locate(href_list["zombieinfect"]) if(!istype(H)) - to_chat(usr, "this can only be used on instances of type /human") + to_chat(usr, "This can only be used on instances of type /human") return if(alert(usr, "Are you sure you want to infect them with a ZOMBIE VIRUS? This can trigger a major event!", "Message", "Yes", "No") != "Yes") @@ -846,7 +819,7 @@ if(!check_rights(R_ADMIN)) return var/mob/living/carbon/human/H = locate(href_list["larvainfect"]) if(!istype(H)) - to_chat(usr, "this can only be used on instances of type /human") + to_chat(usr, "This can only be used on instances of type /human") return if(alert(usr, "Are you sure you want to infect them with a xeno larva?", "Message", "Yes", "No") != "Yes") @@ -928,7 +901,7 @@ var/mob/M = locate(href_list["forceemote"]) if(!ismob(M)) - to_chat(usr, "this can only be used on instances of type /mob") + to_chat(usr, "This can only be used on instances of type /mob") var/speech = input("What will [key_name(M)] emote?.", "Force emote", "")// Don't need to sanitize, since it does that in say(), we also trust our admins. if(!speech) return @@ -969,9 +942,6 @@ if(!ismob(M)) to_chat(usr, "This can only be used on instances of type /mob") return - if(isAI(M)) - to_chat(usr, "This cannot be used on instances of type /mob/living/silicon/ai") - return for(var/obj/item/I in M) M.drop_inv_item_on_ground(I) @@ -993,9 +963,6 @@ if(!ismob(M)) to_chat(usr, "This can only be used on instances of type /mob") return - if(isAI(M)) - to_chat(usr, "This cannot be used on instances of type /mob/living/silicon/ai") - return for(var/obj/item/I in M) M.drop_inv_item_on_ground(I) @@ -1017,9 +984,6 @@ if(!ismob(M)) to_chat(usr, "This can only be used on instances of type /mob") return - if(isAI(M)) - to_chat(usr, "This cannot be used on instances of type /mob/living/silicon/ai") - return M.apply_effect(5, PARALYZE) sleep(5) @@ -1038,9 +1002,6 @@ if(!ismob(M)) to_chat(usr, "This can only be used on instances of type /mob") return - if(isAI(M)) - to_chat(usr, "This cannot be used on instances of type /mob/living/silicon/ai") - return for(var/obj/item/I in M) M.drop_inv_item_on_ground(I) @@ -1078,17 +1039,6 @@ usr.client.cmd_admin_alienize(H) - else if(href_list["makeai"]) - if(!check_rights(R_SPAWN)) return - - var/mob/living/carbon/human/H = locate(href_list["makeai"]) - if(!istype(H)) - to_chat(usr, "This can only be used on instances of type /mob/living/carbon/human") - return - - message_admins(SPAN_DANGER("Admin [key_name_admin(usr)] AIized [key_name_admin(H)]!"), 1) - H.AIize() - else if(href_list["changehivenumber"]) if(!check_rights(R_DEBUG|R_ADMIN)) return @@ -1135,18 +1085,13 @@ H.mind.transfer_to(M) else M.key = H.key - if(M.client) M.client.change_view(world_view_size) + if(M.client) M.client.change_view(GLOB.world_view_size) if(M.skills) qdel(M.skills) M.skills = null //no skill restriction - if(is_alien_whitelisted(M,"Yautja Elder")) - M.change_real_name(M, "Elder [y_name]") - H.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/yautja/hunter/full(H), WEAR_JACKET) - H.equip_to_slot_or_del(new /obj/item/weapon/twohanded/yautja/glaive(H), WEAR_L_HAND) - else - M.change_real_name(M, y_name) + M.change_real_name(M, y_name) M.name = "Unknown" // Yautja names are not visible for oomans if(H) @@ -1154,16 +1099,6 @@ return - else if(href_list["makerobot"]) - if(!check_rights(R_SPAWN)) return - - var/mob/living/carbon/human/H = locate(href_list["makerobot"]) - if(!istype(H)) - to_chat(usr, "This can only be used on instances of type /mob/living/carbon/human") - return - - usr.client.cmd_admin_robotize(H) - else if(href_list["makeanimal"]) if(!check_rights(R_SPAWN)) return @@ -1230,7 +1165,7 @@ return if(alert("Are you sure you want to cancel this OB?",,"Yes","No") != "Yes") return - orbital_cannon_cancellation["[cancel_token]"] = null + GLOB.orbital_cannon_cancellation["[cancel_token]"] = null message_admins("[src.owner] has cancelled the orbital strike.") else if(href_list["admincancelpredsd"]) @@ -1387,14 +1322,14 @@ GLOB.fax_contents += fax_message // save a copy var/customname = input(src.owner, "Pick a title for the report", "Title") as text|null - GLOB.USCMFaxes.Add("\[view '[customname]' from [key_name(usr)] at [time2text(world.timeofday, "hh:mm:ss")]\]") + GLOB.PressFaxes.Add("\[view '[customname]' from [key_name(usr)] at [time2text(world.timeofday, "hh:mm:ss")]\]") var/msg_ghost = SPAN_NOTICE("PRESS REPLY: ") msg_ghost += "Transmitting '[customname]' via secure connection ... " msg_ghost += "view message" announce_fax(msg_ghost = msg_ghost) - for(var/obj/structure/machinery/faxmachine/F in machines) + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) if(F == fax) if(!(F.inoperable())) @@ -1423,6 +1358,7 @@ message_admins(SPAN_STAFF_IC("[key_name_admin(src.owner)] replied to a fax message from [key_name_admin(H)]"), 1) return to_chat(src.owner, "/red Unable to locate fax!") + else if(href_list["USCMFaxReply"]) var/mob/living/carbon/human/H = locate(href_list["USCMFaxReply"]) var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) @@ -1450,7 +1386,7 @@ return else return - var/message_body = input(src.owner, "Enter Message Body, use

      for paragraphs", "Outgoing message from Weyland USCM", "") as message|null + var/message_body = input(src.owner, "Enter Message Body, use

      for paragraphs", "Outgoing message from USCM", "") as message|null if(!message_body) return var/sent_by = input(src.owner, "Enter the name and rank you are sending from.", "Outgoing message from USCM", "") as message|null @@ -1476,7 +1412,7 @@ msg_ghost += "view message" announce_fax( ,msg_ghost) - for(var/obj/structure/machinery/faxmachine/F in machines) + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) if(F == fax) if(!(F.inoperable())) @@ -1506,8 +1442,8 @@ return to_chat(src.owner, "/red Unable to locate fax!") - else if(href_list["CLFaxReply"]) - var/mob/living/carbon/human/H = locate(href_list["CLFaxReply"]) + else if(href_list["WYFaxReply"]) + var/mob/living/carbon/human/H = locate(href_list["WYFaxReply"]) var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) var/template_choice = tgui_input_list(usr, "Use the template or roll your own?", "Fax Template", list("Template", "Custom")) @@ -1558,7 +1494,7 @@ announce_fax( ,msg_ghost) - for(var/obj/structure/machinery/faxmachine/F in machines) + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) if(F == fax) if(!(F.inoperable())) @@ -1588,6 +1524,249 @@ return to_chat(src.owner, "/red Unable to locate fax!") + else if(href_list["TWEFaxReply"]) + var/mob/living/carbon/human/H = locate(href_list["TWEFaxReply"]) + var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) + + var/template_choice = tgui_input_list(usr, "Use the template or roll your own?", "Fax Template", list("Template", "Custom")) + if(!template_choice) return + var/datum/fax/fax_message + switch(template_choice) + if("Custom") + var/input = input(src.owner, "Please enter a message to reply to [key_name(H)] via secure connection. NOTE: BBCode does not work, but HTML tags do! Use
      for line breaks.", "Outgoing message from TWE", "") as message|null + if(!input) + return + fax_message = new(input) + if("Template") + var/subject = input(src.owner, "Enter subject line", "Outgoing message from TWE", "") as message|null + if(!subject) + return + var/addressed_to = "" + var/address_option = tgui_input_list(usr, "Address it to the sender or custom?", "Fax Template", list("Sender", "Custom")) + if(address_option == "Sender") + addressed_to = "[H.real_name]" + else if(address_option == "Custom") + addressed_to = input(src.owner, "Enter Addressee Line", "Outgoing message from TWE", "") as message|null + if(!addressed_to) + return + else + return + var/message_body = input(src.owner, "Enter Message Body, use

      for paragraphs", "Outgoing message from TWE", "") as message|null + if(!message_body) + return + var/sent_by = input(src.owner, "Enter JUST the name you are sending this from", "Outgoing message from TWE", "") as message|null + if(!sent_by) + return + fax_message = new(generate_templated_fax(0, "THREE WORLD EMPIRE - ROYAL MILITARY COMMAND", subject, addressed_to, message_body, sent_by, "Office of Military Communications", "Three World Empire")) + show_browser(usr, "[fax_message.data]", "PREVIEW OF TWE FAX", "size=500x400") + var/send_choice = tgui_input_list(usr, "Send this fax?", "Fax Confirmation", list("Send", "Cancel")) + if(send_choice != "Send") + return + GLOB.fax_contents += fax_message // save a copy + + var/customname = input(src.owner, "Pick a title for the report", "Title") as text|null + if(!customname) + return + + GLOB.TWEFaxes.Add("\[view '[customname]' from [key_name(usr)] at [time2text(world.timeofday, "hh:mm:ss")]\]") //Add replies so that mods know what the hell is goin on with the RP + + var/msg_ghost = SPAN_NOTICE("THREE WORLD EMPIRE FAX REPLY: ") + msg_ghost += "Transmitting '[customname]' via secure connection ... " + msg_ghost += "view message" + announce_fax( ,msg_ghost) + + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) + if(F == fax) + if(!(F.inoperable())) + + // animate! it's alive! + flick("faxreceive", F) + + // give the sprite some time to flick + spawn(20) + var/obj/item/paper/P = new /obj/item/paper( F.loc ) + P.name = "Three World Empire - [customname]" + P.info = fax_message.data + P.update_icon() + + playsound(F.loc, "sound/machines/fax.ogg", 15) + + // Stamps + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-twe" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
      This paper has been stamped by the Three World Empire Quantum Relay (tm)." + + to_chat(src.owner, "Message reply to transmitted successfully.") + message_admins(SPAN_STAFF_IC("[key_name_admin(src.owner)] replied to a fax message from [key_name_admin(H)]"), 1) + return + to_chat(src.owner, "/red Unable to locate fax!") + + else if(href_list["UPPFaxReply"]) + var/mob/living/carbon/human/H = locate(href_list["UPPFaxReply"]) + var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) + + var/template_choice = tgui_input_list(usr, "Use the template or roll your own?", "Fax Template", list("Template", "Custom")) + if(!template_choice) return + var/datum/fax/fax_message + switch(template_choice) + if("Custom") + var/input = input(src.owner, "Please enter a message to reply to [key_name(H)] via secure connection. NOTE: BBCode does not work, but HTML tags do! Use
      for line breaks.", "Outgoing message from UPP", "") as message|null + if(!input) + return + fax_message = new(input) + if("Template") + var/subject = input(src.owner, "Enter subject line", "Outgoing message from UPP", "") as message|null + if(!subject) + return + var/addressed_to = "" + var/address_option = tgui_input_list(usr, "Address it to the sender or custom?", "Fax Template", list("Sender", "Custom")) + if(address_option == "Sender") + addressed_to = "[H.real_name]" + else if(address_option == "Custom") + addressed_to = input(src.owner, "Enter Addressee Line", "Outgoing message from UPP", "") as message|null + if(!addressed_to) + return + else + return + var/message_body = input(src.owner, "Enter Message Body, use

      for paragraphs", "Outgoing message from UPP", "") as message|null + if(!message_body) + return + var/sent_by = input(src.owner, "Enter JUST the name you are sending this from", "Outgoing message from UPP", "") as message|null + if(!sent_by) + return + fax_message = new(generate_templated_fax(0, "UNION OF PROGRESSIVE PEOPLES - MILITARY HIGH KOMMAND", subject, addressed_to, message_body, sent_by, "Military High Kommand", "Union of Progressive Peoples")) + show_browser(usr, "[fax_message.data]", "PREVIEW OF UPP FAX", "size=500x400") + var/send_choice = tgui_input_list(usr, "Send this fax?", "Fax Confirmation", list("Send", "Cancel")) + if(send_choice != "Send") + return + GLOB.fax_contents += fax_message // save a copy + + var/customname = input(src.owner, "Pick a title for the report", "Title") as text|null + if(!customname) + return + + GLOB.UPPFaxes.Add("\[view '[customname]' from [key_name(usr)] at [time2text(world.timeofday, "hh:mm:ss")]\]") //Add replies so that mods know what the hell is goin on with the RP + + var/msg_ghost = SPAN_NOTICE("UNION OF PROGRESSIVE PEOPLES FAX REPLY: ") + msg_ghost += "Transmitting '[customname]' via secure connection ... " + msg_ghost += "view message" + announce_fax( ,msg_ghost) + + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) + if(F == fax) + if(!(F.inoperable())) + + // animate! it's alive! + flick("faxreceive", F) + + // give the sprite some time to flick + spawn(20) + var/obj/item/paper/P = new /obj/item/paper( F.loc ) + P.name = "Union of Progressive Peoples - [customname]" + P.info = fax_message.data + P.update_icon() + + playsound(F.loc, "sound/machines/fax.ogg", 15) + + // Stamps + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-upp" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
      This paper has been stamped by the Union of Progressive Peoples Quantum Relay (tm)." + + to_chat(src.owner, "Message reply to transmitted successfully.") + message_admins(SPAN_STAFF_IC("[key_name_admin(src.owner)] replied to a fax message from [key_name_admin(H)]"), 1) + return + to_chat(src.owner, "/red Unable to locate fax!") + + else if(href_list["CLFFaxReply"]) + var/mob/living/carbon/human/H = locate(href_list["CLFFaxReply"]) + var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) + + var/template_choice = tgui_input_list(usr, "Use the template or roll your own?", "Fax Template", list("Template", "Custom")) + if(!template_choice) return + var/datum/fax/fax_message + switch(template_choice) + if("Custom") + var/input = input(src.owner, "Please enter a message to reply to [key_name(H)] via secure connection. NOTE: BBCode does not work, but HTML tags do! Use
      for line breaks.", "Outgoing message from CLF", "") as message|null + if(!input) + return + fax_message = new(input) + if("Template") + var/subject = input(src.owner, "Enter subject line", "Outgoing message from CLF", "") as message|null + if(!subject) + return + var/addressed_to = "" + var/address_option = tgui_input_list(usr, "Address it to the sender or custom?", "Fax Template", list("Sender", "Custom")) + if(address_option == "Sender") + addressed_to = "[H.real_name]" + else if(address_option == "Custom") + addressed_to = input(src.owner, "Enter Addressee Line", "Outgoing message from CLF", "") as message|null + if(!addressed_to) + return + else + return + var/message_body = input(src.owner, "Enter Message Body, use

      for paragraphs", "Outgoing message from CLF", "") as message|null + if(!message_body) + return + var/sent_by = input(src.owner, "Enter JUST the name you are sending this from", "Outgoing message from CLF", "") as message|null + if(!sent_by) + return + fax_message = new(generate_templated_fax(0, "COLONIAL LIBERATION FRONT - COLONIAL COUNCIL OF LIBERATION", subject, addressed_to, message_body, sent_by, "Guerilla Forces Command", "Colonial Liberation Front")) + show_browser(usr, "[fax_message.data]", "PREVIEW OF CLF FAX", "size=500x400") + var/send_choice = tgui_input_list(usr, "Send this fax?", "Fax Confirmation", list("Send", "Cancel")) + if(send_choice != "Send") + return + GLOB.fax_contents += fax_message // save a copy + + var/customname = input(src.owner, "Pick a title for the report", "Title") as text|null + if(!customname) + return + + GLOB.CLFFaxes.Add("\[view '[customname]' from [key_name(usr)] at [time2text(world.timeofday, "hh:mm:ss")]\]") //Add replies so that mods know what the hell is goin on with the RP + + var/msg_ghost = SPAN_NOTICE("COLONIAL LIBERATION FRONT FAX REPLY: ") + msg_ghost += "Transmitting '[customname]' via secure connection ... " + msg_ghost += "view message" + announce_fax( ,msg_ghost) + + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) + if(F == fax) + if(!(F.inoperable())) + + // animate! it's alive! + flick("faxreceive", F) + + // give the sprite some time to flick + spawn(20) + var/obj/item/paper/P = new /obj/item/paper( F.loc ) + P.name = "Colonial Liberation Front - [customname]" + P.info = fax_message.data + P.update_icon() + + playsound(F.loc, "sound/machines/fax.ogg", 15) + + // Stamps + var/image/stampoverlay = image('icons/obj/items/paper.dmi') + stampoverlay.icon_state = "paper_stamp-clf" + if(!P.stamped) + P.stamped = new + P.stamped += /obj/item/tool/stamp + P.overlays += stampoverlay + P.stamps += "
      This paper has been stamped and encrypted by the Colonial Liberation Front Quantum Relay (tm)." + + to_chat(src.owner, "Message reply to transmitted successfully.") + message_admins(SPAN_STAFF_IC("[key_name_admin(src.owner)] replied to a fax message from [key_name_admin(H)]"), 1) + return + to_chat(src.owner, "/red Unable to locate fax!") + else if(href_list["CMBFaxReply"]) var/mob/living/carbon/human/H = locate(href_list["CMBFaxReply"]) var/obj/structure/machinery/faxmachine/fax = locate(href_list["originfax"]) @@ -1640,7 +1819,7 @@ announce_fax( ,msg_ghost) - for(var/obj/structure/machinery/faxmachine/F in machines) + for(var/obj/structure/machinery/faxmachine/F in GLOB.machines) if(F == fax) if(!(F.inoperable())) @@ -1774,10 +1953,10 @@ alert("Removed:\n" + jointext(removed_paths, "\n")) var/list/offset = splittext(href_list["offset"],",") - var/number = dd_range(1, 100, text2num(href_list["object_count"])) - var/X = offset.len > 0 ? text2num(offset[1]) : 0 - var/Y = offset.len > 1 ? text2num(offset[2]) : 0 - var/Z = offset.len > 2 ? text2num(offset[3]) : 0 + var/number = clamp(text2num(href_list["object_count"]), 1, 100) + var/X = length(offset) > 0 ? text2num(offset[1]) : 0 + var/Y = length(offset) > 1 ? text2num(offset[2]) : 0 + var/Z = length(offset) > 2 ? text2num(offset[3]) : 0 var/tmp_dir = href_list["object_dir"] var/obj_dir = tmp_dir ? text2num(tmp_dir) : 2 if(!obj_dir || !(obj_dir in list(1,2,4,8,5,6,9,10))) @@ -1964,16 +2143,16 @@ //unanswered_distress -= ref_person if(href_list["distresscancel"]) - if(distress_cancel) + if(GLOB.distress_cancel) to_chat(usr, "The distress beacon was either canceled, or you are too late to cancel.") return log_game("[key_name_admin(usr)] has canceled the distress beacon.") message_admins("[key_name_admin(usr)] has canceled the distress beacon.") - distress_cancel = TRUE + GLOB.distress_cancel = TRUE return if(href_list["distress"]) //Distress Beacon, sends a random distress beacon when pressed - distress_cancel = FALSE + GLOB.distress_cancel = FALSE message_admins("[key_name_admin(usr)] has opted to SEND the distress beacon! Launching in 10 seconds... (CANCEL)") addtimer(CALLBACK(src, PROC_REF(accept_ert), usr, locate(href_list["distress"])), 10 SECONDS) //unanswered_distress -= ref_person @@ -1981,7 +2160,7 @@ if(href_list["distress_handheld"]) //Prepares to call and logs accepted handheld distress beacons var/mob/ref_person = href_list["distress_handheld"] var/ert_name = href_list["ert_name"] - distress_cancel = FALSE + GLOB.distress_cancel = FALSE message_admins("[key_name_admin(usr)] has opted to SEND [ert_name]! Launching in 10 seconds... (CANCEL)") addtimer(CALLBACK(src, PROC_REF(accept_handheld_ert), usr, ref_person, ert_name), 10 SECONDS) @@ -1992,10 +2171,10 @@ message_admins("[key_name_admin(usr)] has denied a distress beacon, requested by [key_name_admin(ref_person)]") if(href_list["destroyship"]) //Distress Beacon, sends a random distress beacon when pressed - destroy_cancel = FALSE + GLOB.destroy_cancel = FALSE message_admins("[key_name_admin(usr)] has opted to GRANT the self-destruct! Starting in 10 seconds... (CANCEL)") spawn(100) - if(distress_cancel) + if(GLOB.distress_cancel) return var/mob/ref_person = locate(href_list["destroyship"]) set_security_level(SEC_LEVEL_DELTA) @@ -2006,29 +2185,29 @@ var/mob/ref_person = locate(href_list["nukeapprove"]) if(!istype(ref_person)) return FALSE - var/nuketype = "Encrypted Operational Nuke" + var/nukename = "Encrypted Operational Nuke" var/prompt = tgui_alert(usr, "Do you want the nuke to be Encrypted?", "Nuke Type", list("Encrypted", "Decrypted"), 20 SECONDS) if(prompt == "Decrypted") - nuketype = "Decrypted Operational Nuke" - prompt = tgui_alert(usr, "Are you sure you want to authorize a [nuketype] to the marines? This will greatly affect the round!", "DEFCON 1", list("No", "Yes")) + nukename = "Decrypted Operational Nuke" + prompt = tgui_alert(usr, "Are you sure you want to authorize '[nukename]' to the marines? This will greatly affect the round!", "DEFCON 1", list("No", "Yes")) if(prompt != "Yes") return + var/nuketype = GLOB.supply_packs_types[nukename] //make ASRS order for nuke var/datum/supply_order/new_order = new() - new_order.ordernum = supply_controller.ordernum - supply_controller.ordernum++ - new_order.object = supply_controller.supply_packs[nuketype] + new_order.ordernum = GLOB.supply_controller.ordernum++ + new_order.object = GLOB.supply_packs_datums[nuketype] new_order.orderedby = ref_person new_order.approvedby = "USCM High Command" - supply_controller.shoppinglist += new_order + GLOB.supply_controller.shoppinglist += new_order //Can no longer request a nuke GLOB.ares_datacore.nuke_available = FALSE marine_announcement("A nuclear device has been authorized by High Command and will be delivered to requisitions via ASRS.", "NUCLEAR ORDNANCE AUTHORIZED", 'sound/misc/notice2.ogg', logging = ARES_LOG_MAIN) - log_game("[key_name_admin(usr)] has authorized a [nuketype], requested by [key_name_admin(ref_person)]") - message_admins("[key_name_admin(usr)] has authorized a [nuketype], requested by [key_name_admin(ref_person)]") + log_game("[key_name_admin(usr)] has authorized \a [nuketype], requested by [key_name_admin(ref_person)]") + message_admins("[key_name_admin(usr)] has authorized \a [nuketype], requested by [key_name_admin(ref_person)]") if(href_list["nukedeny"]) var/mob/ref_person = locate(href_list["nukedeny"]) @@ -2045,7 +2224,7 @@ message_admins("[key_name_admin(usr)] has denied self-destruct, requested by [key_name_admin(ref_person)]", 1) if(href_list["sdcancel"]) - if(destroy_cancel) + if(GLOB.destroy_cancel) to_chat(usr, "The self-destruct was already canceled.") return if(get_security_level() == "delta") @@ -2053,7 +2232,7 @@ return log_game("[key_name_admin(usr)] has canceled the self-destruct.") message_admins("[key_name_admin(usr)] has canceled the self-destruct.") - destroy_cancel = 1 + GLOB.destroy_cancel = TRUE return if(href_list["tag_datum"]) @@ -2072,6 +2251,21 @@ return return remove_tagged_datum(datum_to_remove) + if(href_list["view_bug_report"]) + if(!check_rights(R_ADMIN|R_MOD)) + return + + var/datum/tgui_bug_report_form/bug_report = locate(href_list["view_bug_report"]) + if(!istype(bug_report) || QDELETED(bug_report)) + to_chat(usr, SPAN_WARNING("This bug report is no longer available.")) + return + + if(!bug_report.assign_admin(usr)) + return + + bug_report.tgui_interact(usr) + return + if(href_list["show_tags"]) if(!check_rights(R_ADMIN)) return @@ -2161,18 +2355,18 @@ return /datum/admins/proc/accept_ert(mob/approver, mob/ref_person) - if(distress_cancel) + if(GLOB.distress_cancel) return - distress_cancel = TRUE + GLOB.distress_cancel = TRUE SSticker.mode.activate_distress() log_game("[key_name_admin(approver)] has sent a randomized distress beacon, requested by [key_name_admin(ref_person)]") message_admins("[key_name_admin(approver)] has sent a randomized distress beacon, requested by [key_name_admin(ref_person)]") ///Handles calling the ERT sent by handheld distress beacons /datum/admins/proc/accept_handheld_ert(mob/approver, mob/ref_person, ert_called) - if(distress_cancel) + if(GLOB.distress_cancel) return - distress_cancel = TRUE + GLOB.distress_cancel = TRUE SSticker.mode.get_specific_call("[ert_called]", TRUE, FALSE) log_game("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]") message_admins("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]") @@ -2186,7 +2380,7 @@ for(var/jobPos in roles) if(!jobPos) continue - var/datum/job/job = RoleAuthority.roles_by_name[jobPos] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[jobPos] if(!job) continue @@ -2208,7 +2402,7 @@ for(var/jobPos in roles) if(!jobPos) continue - var/datum/job/J = RoleAuthority.roles_by_name[jobPos] + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[jobPos] if(!J) continue temp += J.title diff --git a/code/modules/admin/topic/topic_chems.dm b/code/modules/admin/topic/topic_chems.dm index fe8af3b77d..4da2c55cb5 100644 --- a/code/modules/admin/topic/topic_chems.dm +++ b/code/modules/admin/topic/topic_chems.dm @@ -39,14 +39,14 @@ var/response = alert(usr,"Enter ID or select ID from list?",null, "Enter ID","Select from list") var/target if(response == "Select from list") - var/list/pool = chemical_reagents_list + var/list/pool = GLOB.chemical_reagents_list pool = sortAssoc(pool) target = tgui_input_list(usr,"Select the ID of the chemical reagent you wish to view:", "View reagent", pool) else if(response == "Enter ID") target = input(usr,"Enter the ID of the chemical reagent you wish to view:") if(!target) return - var/datum/reagent/R = chemical_reagents_list[target] + var/datum/reagent/R = GLOB.chemical_reagents_list[target] if(R) usr.client.debug_variables(R) else @@ -56,7 +56,7 @@ var/target = input(usr,"Enter the ID of the chemical reaction you wish to view:") if(!target) return - var/datum/chemical_reaction/R = chemical_reactions_list[target] + var/datum/chemical_reaction/R = GLOB.chemical_reactions_list[target] if(R) usr.client.debug_variables(R) log_admin("[key_name(usr)] is viewing the chemical reaction for [R].") @@ -67,7 +67,7 @@ var/target = input(usr,"Enter the ID of the chemical reaction you wish to syncronize. This is only necessary if you edited a reaction through the debugger (VV).") if(!target) return - var/datum/chemical_reaction/R = chemical_reactions_list[target] + var/datum/chemical_reaction/R = GLOB.chemical_reactions_list[target] if(R) R.add_to_filtered_list(TRUE) log_debug("[key_name(usr)] resyncronized [R.id]") @@ -77,7 +77,7 @@ return if("spawn_reagent") var/target = input(usr,"Enter the ID of the chemical reagent you wish to make:") - if(!chemical_reagents_list[target]) + if(!GLOB.chemical_reagents_list[target]) to_chat(usr,SPAN_WARNING("No reagent with this ID could been found.")) return var/volume = tgui_input_number(usr,"How much? An appropriate container will be selected.") @@ -88,18 +88,18 @@ return if("make_report") var/target = input(usr, "Enter the ID of the chemical reagent you wish to make a report of:") - if(!chemical_reagents_list[target]) + if(!GLOB.chemical_reagents_list[target]) to_chat(usr, SPAN_WARNING("No reagent with this ID could be found.")) return - var/datum/reagent/R = chemical_reagents_list[target] + var/datum/reagent/R = GLOB.chemical_reagents_list[target] R.print_report(loc = usr.loc, admin_spawned = TRUE) //For quickly generating a new chemical if("create_random_reagent") var/target = input(usr,"Enter the ID of the chemical reagent you wish to make:") if(!target) return - if(chemical_reagents_list[target]) + if(GLOB.chemical_reagents_list[target]) to_chat(usr,SPAN_WARNING("This ID is already in use.")) return var/tier = tgui_input_number(usr,"Enter the generation tier you wish. This will affect the number of properties (tier + 1), rarity of components and potential for good properties. Ought to be 1-4, max 10.", "Generation tier", 1, 10) @@ -116,41 +116,41 @@ R.generate_name() R.generate_stats() //Save our reagent - chemical_reagents_list[target] = R + GLOB.chemical_reagents_list[target] = R message_admins("[key_name_admin(usr)] has generated the reagent: [target].") var/response = alert(usr,"Do you want to do anything else?",null,"Generate associated reaction","View my reagent","Finish") while(response != "Finish") switch(response) if("Generate associated reaction") - if(chemical_reactions_list[target]) + if(GLOB.chemical_reactions_list[target]) to_chat(usr,SPAN_WARNING("This ID is already in use.")) return R.generate_assoc_recipe() - if(!chemical_reactions_list[target]) + if(!GLOB.chemical_reactions_list[target]) to_chat(usr,SPAN_WARNING("Something went wrong when saving the reaction. The associated reagent has been deleted.")) - chemical_reagents_list[target] -= R + GLOB.chemical_reagents_list[target] -= R return response = alert(usr,"Do you want to do anything else?",null,"View my reaction","View my reagent","Finish") if("View my reagent") - if(chemical_reagents_list[target]) - R = chemical_reagents_list[target] + if(GLOB.chemical_reagents_list[target]) + R = GLOB.chemical_reagents_list[target] usr.client.debug_variables(R) log_admin("[key_name(usr)] is viewing the chemical reaction for [R].") else to_chat(usr,SPAN_WARNING("No reagent with this ID could been found. Wait what? But I just... Contact a debugger.")) - chemical_reagents_list.Remove(target) - chemical_reactions_list.Remove("[target]") - chemical_reactions_filtered_list.Remove("[target]") + GLOB.chemical_reagents_list.Remove(target) + GLOB.chemical_reactions_list.Remove("[target]") + GLOB.chemical_reactions_filtered_list.Remove("[target]") return if("View my reaction") - if(chemical_reactions_list[target]) - var/datum/chemical_reaction/generated/G = chemical_reactions_list[target] + if(GLOB.chemical_reactions_list[target]) + var/datum/chemical_reaction/generated/G = GLOB.chemical_reactions_list[target] usr.client.debug_variables(G) else to_chat(usr,SPAN_WARNING("No reaction with this ID could been found. Wait what? But I just... Contact a debugger.")) - chemical_reagents_list.Remove(target) - chemical_reactions_list.Remove("[target]") - chemical_reactions_filtered_list.Remove("[target]") + GLOB.chemical_reagents_list.Remove(target) + GLOB.chemical_reactions_list.Remove("[target]") + GLOB.chemical_reactions_filtered_list.Remove("[target]") return else break @@ -165,7 +165,7 @@ var/target = input(usr,"Enter the ID of the chemical reagent you wish to make:") if(!target) return - if(chemical_reagents_list[target]) + if(GLOB.chemical_reagents_list[target]) to_chat(usr,SPAN_WARNING("This ID is already in use.")) return var/datum/reagent/generated/R = new /datum/reagent/generated @@ -190,7 +190,7 @@ response = alert(usr,"Select Input Type","Custom reagent [target]","Manual Input","Select","No more properties") if("Manual Input") var/input = input(usr,"Enter the name of the chemical property you wish to add:") - var/datum/chem_property/P = chemical_properties_list[input] + var/datum/chem_property/P = GLOB.chemical_properties_list[input] if(!P) to_chat(usr,SPAN_WARNING("Property not found, did you spell it right?")) response = "Specific property" @@ -199,7 +199,7 @@ R.insert_property(P.name,level) response = alert(usr,"Done. Add more?","Custom reagent [target]","Specific property","Specific number","No more properties") if("Select") - var/list/pool = chemical_properties_list + var/list/pool = GLOB.chemical_properties_list pool = sortAssoc(pool) var/P = tgui_input_list(usr,"Which property do you want?", "Property selection", pool) var/level = tgui_input_number(usr,"Choose the level (this is a strength modifier, ought to be between 1-8)", "strengthmod", 1) @@ -221,7 +221,7 @@ break R.generate_description() //Save our reagent - chemical_reagents_list[target] = R + GLOB.chemical_reagents_list[target] = R message_admins("[key_name_admin(usr)] has created a custom reagent: [target].") //See what we want to do last response = alert(usr,"Spawn container with reagent?","Custom reagent [target]","Yes","No, show me the reagent","No, I'm all done") @@ -233,14 +233,14 @@ spawn_reagent(target, volume) if("No, show me the reagent") - usr.client.debug_variables(chemical_reagents_list[target]) + usr.client.debug_variables(GLOB.chemical_reagents_list[target]) return //For creating a custom reaction if("create_custom_reaction") var/target = input(usr,"Enter the ID of the chemical reaction you wish to make:") if(!target) return - if(chemical_reactions_list[target]) + if(GLOB.chemical_reactions_list[target]) to_chat(usr,SPAN_WARNING("This ID is already in use.")) return var/datum/chemical_reaction/generated/R = new /datum/chemical_reaction/generated @@ -262,7 +262,7 @@ if("Select type") response = alert(usr,"Enter id manually or select from list?","Custom reaction [target]","Select from list","Manual input","Back") if("Select from list") - var/list/pool = chemical_reagents_list + var/list/pool = GLOB.chemical_reagents_list pool = sortAssoc(pool) component = tgui_input_list(usr,"Select:", "Create custom reaction", pool) if(!component) @@ -274,7 +274,7 @@ if(!component) response = "Select type" continue - if(!chemical_reagents_list[component]) + if(!GLOB.chemical_reagents_list[component]) to_chat(usr,SPAN_WARNING("ID not found. Try again.")) continue response = "Add" @@ -286,15 +286,15 @@ response = alert(usr,"What do you want customized?","Custom reaction [target]","Add component","Add catalyst","Finish") else return - if(R.required_reagents.len < 3) + if(length(R.required_reagents) < 3) to_chat(usr,SPAN_WARNING("You need to add at least 3 components excluding catalysts. The reaction has not been saved.")) return //Save our reaction - chemical_reactions_list[target] = R + GLOB.chemical_reactions_list[target] = R R.add_to_filtered_list() - if(!chemical_reactions_list[target]) + if(!GLOB.chemical_reactions_list[target]) to_chat(usr,SPAN_WARNING("Something went wrong when saving the reaction.")) return - usr.client.debug_variables(chemical_reactions_list[target]) + usr.client.debug_variables(GLOB.chemical_reactions_list[target]) message_admins("[key_name_admin(usr)] has created a custom chemical reaction: [target].") return diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm index 6326a3400d..6529dea206 100644 --- a/code/modules/admin/topic/topic_events.dm +++ b/code/modules/admin/topic/topic_events.dm @@ -52,7 +52,7 @@ if("whiteout") if(alert(usr, "Are you sure you want to do this?", "Confirmation", "Yes", "No") != "Yes") return - for(var/obj/structure/machinery/light/L in machines) + for(var/obj/structure/machinery/light/L in GLOB.machines) L.fix() message_admins("[key_name_admin(usr)] fixed all lights") if("power") @@ -82,16 +82,73 @@ power_restore_ship_reactors() if("change_clearance") var/list/clearance_levels = list(0,1,2,3,4,5) - var/level = tgui_input_list(usr, "Select new clearance level:","Current level: [chemical_data.clearance_level]", clearance_levels) + var/level = tgui_input_list(usr, "Select new clearance level:","Current level: [GLOB.chemical_data.clearance_level]", clearance_levels) if(!level) return message_admins("[key_name_admin(usr)] changed research clearance level to [level].") - chemical_data.clearance_level = level + GLOB.chemical_data.clearance_level = level if("give_research_credits") var/amount = tgui_input_real_number(usr, "How many credits to add?") if(amount != 0) //can add negative numbers too! message_admins("[key_name_admin(usr)] added [amount] research credits.") - chemical_data.update_credits(amount) + GLOB.chemical_data.update_credits(amount) + + if("xenothumbs") + var/grant = alert(usr, "Do you wish to grant or revoke Xenomorph firearms permits?", "Give or Take", "Grant", "Revoke", "Cancel") + if(grant == "Cancel") + return + + var/list/mob/living/carbon/xenomorph/permit_recipients = list() + var/list/datum/hive_status/permit_hives = list() + switch(alert(usr, "Do you wish to do this for one Xeno or an entire hive?", "Recipients", "Xeno", "Hive", "All Xenos")) + if("Xeno") + permit_recipients += tgui_input_list(usr, "Select recipient Xenomorph:", "Armed Xenomorph", GLOB.living_xeno_list) + if(isnull(permit_recipients[1])) //Cancel button. + return + if("Hive") + permit_hives += GLOB.hive_datum[tgui_input_list(usr, "Select recipient hive:", "Armed Hive", GLOB.hive_datum)] + if(isnull(permit_hives[1])) //Cancel button. + return + permit_recipients = permit_hives[1].totalXenos.Copy() + if("All Xenos") + permit_recipients = GLOB.living_xeno_list.Copy() + for(var/H in GLOB.hive_datum) + permit_hives += GLOB.hive_datum[H] + + var/list/handled_xenos = list() + + for(var/mob/living/carbon/xenomorph/xeno as anything in permit_recipients) + if(QDELETED(xeno) || xeno.stat == DEAD) //Xenos might die before the admin picks them. + to_chat(usr, SPAN_HIGHDANGER("[xeno] died before her firearms permit could be issued!")) + continue + if(HAS_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS)) + if(grant == "Revoke") + REMOVE_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS, TRAIT_SOURCE_HIVE) + to_chat(xeno, SPAN_XENOANNOUNCE("You forget how thumbs work. You feel a terrible sense of loss.")) + handled_xenos += xeno + else if(grant == "Grant") + ADD_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS, TRAIT_SOURCE_HIVE) + to_chat(xeno, SPAN_XENOANNOUNCE("You suddenly comprehend the magic of opposable thumbs along with surprising kinesthetic intelligence. You could do... so much with this knowledge.")) + handled_xenos += xeno + + for(var/datum/hive_status/permit_hive as anything in permit_hives) + //Give or remove the trait from newly-born xenos in this hive. + if(grant == "Grant") + LAZYADD(permit_hive.hive_inherant_traits, TRAIT_OPPOSABLE_THUMBS) + else + LAZYREMOVE(permit_hive.hive_inherant_traits, TRAIT_OPPOSABLE_THUMBS) + + if(!length(handled_xenos) && !length(permit_hives)) + return + + if(grant == "Grant") + message_admins("[usr] granted 2nd Amendment rights to [length(handled_xenos) > 1 ? "[length(handled_xenos)] xenos" : "[length(handled_xenos) == 1 ? "[handled_xenos[1]]" : "no xenos"]"]\ + [length(permit_hives) > 1 ? " in all hives, and to any new xenos. Quite possibly we will all regret this." : "[length(permit_hives) == 1 ? " in [permit_hives[1]], and to any new xenos in that hive." : "."]"]") + else + message_admins("[usr] revoked 2nd Amendment rights from [length(handled_xenos) > 1 ? "[length(handled_xenos)] xenos" : "[length(handled_xenos) == 1 ? "[handled_xenos[1]]" : "no xenos"]"]\ + [length(permit_hives) > 1 ? " in all hives, and from any new xenos." : "[length(permit_hives) == 1 ? " in [permit_hives[1]], and from any new xenos in that hive." : "."]"]") + + /datum/admins/proc/create_humans_list(href_list) if(SSticker?.current_state < GAME_STATE_PLAYING) @@ -108,8 +165,8 @@ alert("Select fewer paths, (max 1)") return - var/humans_to_spawn = dd_range(1, 100, text2num(href_list["object_count"])) - var/range_to_spawn_on = dd_range(0, 10, text2num(href_list["object_range"])) + var/humans_to_spawn = clamp(text2num(href_list["object_count"]), 1, 100) + var/range_to_spawn_on = clamp(text2num(href_list["object_range"]), 0, 10) var/free_the_humans = FALSE var/offer_as_ert = FALSE @@ -134,7 +191,7 @@ var/turf/spawn_turf if(range_to_spawn_on) - for(spawn_turf in range(initial_turf, range_to_spawn_on)) + for(spawn_turf in range(range_to_spawn_on, initial_turf)) if(!spawn_turf || istype(spawn_turf, /turf/closed)) continue turfs += spawn_turf @@ -202,23 +259,21 @@ var/datum/emergency_call/custom/em_call = new() var/name = input(usr, "Please name your ERT", "ERT Name", "Admin spawned humans") em_call.name = name - em_call.mob_max = humans.len + em_call.mob_max = length(humans) em_call.players_to_offer = humans em_call.owner = owner - var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) - if(launch_broadcast == "Yes") - launch_broadcast = TRUE - else - launch_broadcast = FALSE + var/quiet_launch = TRUE + var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(ql_prompt == "Yes") + quiet_launch = FALSE - var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) - if(announce_receipt == "Yes") + var/announce_receipt = FALSE + var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(ar_prompt == "Yes") announce_receipt = TRUE - else - announce_receipt = FALSE - em_call.activate(!launch_broadcast, announce_receipt) + em_call.activate(quiet_launch, announce_receipt) message_admins("[key_name_admin(usr)] created [humans_to_spawn] humans as [job_name] at [get_area(initial_spot)]") @@ -244,8 +299,8 @@ alert("Select fewer xeno paths, (max 1)") return - var/xenos_to_spawn = dd_range(1, 100, text2num(href_list["object_count"])) - var/range_to_spawn_on = dd_range(0, 10, text2num(href_list["object_range"])) + var/xenos_to_spawn = clamp(text2num(href_list["object_count"]), 1, 100) + var/range_to_spawn_on = clamp(text2num(href_list["object_range"]), 0, 10) var/free_the_xenos = FALSE var/offer_as_ert = FALSE @@ -262,7 +317,7 @@ var/turf/spawn_turf if(range_to_spawn_on) - for(spawn_turf in range(initial_turf, range_to_spawn_on)) + for(spawn_turf in range(range_to_spawn_on, initial_turf)) if(!spawn_turf || istype(spawn_turf, /turf/closed)) continue turfs += spawn_turf @@ -272,7 +327,7 @@ if(!length(turfs)) return - var/caste_type = RoleAuthority.get_caste_by_text(xeno_caste) + var/caste_type = GLOB.RoleAuthority.get_caste_by_text(xeno_caste) var/list/xenos = list() var/mob/living/carbon/xenomorph/X @@ -288,27 +343,24 @@ xenos += X - if (offer_as_ert) + if(offer_as_ert) var/datum/emergency_call/custom/em_call = new() var/name = input(usr, "Please name your ERT", "ERT Name", "Admin spawned xenos") em_call.name = name - em_call.mob_max = xenos.len + em_call.mob_max = length(xenos) em_call.players_to_offer = xenos em_call.owner = owner - var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) - if(launch_broadcast == "Yes") - launch_broadcast = TRUE - else - launch_broadcast = FALSE + var/quiet_launch = TRUE + var/ql_prompt = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(ql_prompt == "Yes") + quiet_launch = FALSE - var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) - if(announce_receipt == "Yes") + var/announce_receipt = FALSE + var/ar_prompt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(ar_prompt == "Yes") announce_receipt = TRUE - else - announce_receipt = FALSE - em_call.activate(!launch_broadcast, announce_receipt) + em_call.activate(quiet_launch, announce_receipt) message_admins("[key_name_admin(usr)] created [xenos_to_spawn] xenos as [xeno_caste] at [get_area(initial_spot)]") - diff --git a/code/modules/admin/topic/topic_teleports.dm b/code/modules/admin/topic/topic_teleports.dm index 38eefdb492..d90aa736b9 100644 --- a/code/modules/admin/topic/topic_teleports.dm +++ b/code/modules/admin/topic/topic_teleports.dm @@ -8,7 +8,7 @@ owner.jump_to_area(choice) if("jump_to_turf") - var/turf/choice = tgui_input_list(owner, "Pick a turf to jump to:", "Jump", turfs) + var/turf/choice = tgui_input_list(owner, "Pick a turf to jump to:", "Jump", GLOB.turfs) if(QDELETED(choice)) return @@ -83,10 +83,10 @@ for(var/mob/living/M in range(collect_range, owner.mob)) if(M.stat != DEAD) targets.Add(M) - if(targets.len < 1) + if(length(targets) < 1) to_chat(owner, SPAN_ALERT("No alive /living mobs found. Aborting.")) return - if(alert(owner, "[targets.len] mobs were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") + if(alert(owner, "[length(targets)] mobs were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") return for(var/mob/M in targets) if(!M) @@ -94,7 +94,7 @@ M.on_mob_jump() M.forceMove(get_turf(owner.mob)) - message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [targets.len] mobs in [collect_range] tiles range to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) + message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [length(targets)] mobs in [collect_range] tiles range to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) if("teleport_mobs_by_faction") var/faction = tgui_input_list(owner, "Choose between humanoids and xenomorphs.", "Mobs Choice", list("Humanoids", "Xenomorphs")) @@ -109,10 +109,10 @@ var/area/AR = get_area(H) if(H.faction != faction || AR.statistic_exempt) targets.Remove(H) - if(targets.len < 1) + if(length(targets) < 1) to_chat(owner, SPAN_ALERT("No alive /human mobs of [faction] faction were found. Aborting.")) return - if(alert(owner, "[targets.len] humanoids of [faction] faction were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") + if(alert(owner, "[length(targets)] humanoids of [faction] faction were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") return for(var/mob/M in targets) @@ -121,7 +121,7 @@ M.on_mob_jump() M.forceMove(get_turf(owner.mob)) - message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [targets.len] human mobs of [faction] faction to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) + message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [length(targets)] human mobs of [faction] faction to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) else if(faction == "Xenomorphs") faction = null @@ -141,10 +141,10 @@ var/area/AR = get_area(X) if(X.stat == DEAD || AR.statistic_exempt) targets.Remove(X) - if(targets.len < 1) + if(length(targets) < 1) to_chat(owner, SPAN_ALERT("No alive xenomorphs of [faction] Hive were found. Aborting.")) return - if(alert(owner, "[targets.len] xenomorphs of [faction] Hive were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") + if(alert(owner, "[length(targets)] xenomorphs of [faction] Hive were marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") return for(var/mob/M in targets) @@ -153,25 +153,25 @@ M.on_mob_jump() M.forceMove(get_turf(owner.mob)) - message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [targets.len] xenomorph mobs of [faction] Hive to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) + message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [length(targets)] xenomorph mobs of [faction] Hive to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) else to_chat(owner, SPAN_ALERT("Mobs choice error. Aborting.")) return if("teleport_corpses") - if(GLOB.dead_mob_list.len < 0) + if(length(GLOB.dead_mob_list) < 0) to_chat(owner, SPAN_ALERT("No corpses found. Aborting.")) return - if(alert(owner, "[GLOB.dead_mob_list.len] corpses are marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") + if(alert(owner, "[length(GLOB.dead_mob_list)] corpses are marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") return for(var/mob/M in GLOB.dead_mob_list) if(!M) continue M.on_mob_jump() M.forceMove(get_turf(owner.mob)) - message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [GLOB.dead_mob_list.len] corpses to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) + message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [length(GLOB.dead_mob_list)] corpses to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) if("teleport_items_by_type") var/item = input(owner,"What item?", "Item Fetcher","") as text|null @@ -186,11 +186,11 @@ if(findtext("[path]", item)) matches += path - if(matches.len==0) + if(length(matches)==0) return var/chosen - if(matches.len==1) + if(length(matches)==1) chosen = matches[1] else //If we have multiple options, let them select which one they meant @@ -205,11 +205,11 @@ if(istype(M, chosen)) targets += M - if(targets.len < 1) + if(length(targets) < 1) to_chat(owner, SPAN_ALERT("No items of type [chosen] were found. Aborting.")) return - if(alert(owner, "[targets.len] items are marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") + if(alert(owner, "[length(targets)] items are marked for teleportation. Pressing \"TELEPORT\" will teleport them to your location at the moment of pressing button.", "Confirmation", "Teleport", "Cancel") == "Cancel") return //Fetch the items @@ -218,4 +218,4 @@ continue M.forceMove(get_turf(owner.mob)) - message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [targets.len] items of type [chosen] to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) + message_admins(WRAP_STAFF_LOG(owner.mob, "mass-teleported [length(targets)] items of type [chosen] to themselves in [get_area(owner.mob)] ([owner.mob.x],[owner.mob.y],[owner.mob.z])."), owner.mob.x, owner.mob.y, owner.mob.z) diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm index 7f0d61d671..71b288dcda 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm @@ -595,7 +595,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/sdql2_vv_all, new(null // 1 and 2 are type and FROM. var/i = 3 - while (i <= tree.len) + while (i <= length(tree)) var/key = tree[i++] var/list/expression = tree[i++] switch (key) @@ -805,7 +805,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/sdql2_vv_all, new(null out += d SDQL2_TICK_CHECK SDQL2_HALT_CHECK - obj_count_all = out.len + obj_count_all = length(out) return out /datum/sdql2_query/proc/Execute(list/found) @@ -1092,7 +1092,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/sdql2_vv_all, new(null for(var/val in query_list) if(val == ";") do_parse = 1 - else if(pos >= query_list.len) + else if(pos >= length(query_list)) query_tree += val do_parse = 1 @@ -1192,7 +1192,7 @@ GLOBAL_DATUM_INIT(sdql2_vv_statobj, /obj/effect/statclick/sdql2_vv_all, new(null else if(expression[start + 1] == "\[" && islist(v)) var/list/L = v var/index = query.SDQL_expression(source, expression[start + 2]) - if(isnum(index) && ((round(index) != index) || L.len < index)) + if(isnum(index) && ((floor(index) != index) || length(L) < index)) to_chat(usr, SPAN_DANGER("Invalid list index: [index]"), confidential = TRUE) return null return L[index] diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm index 2caea998a1..27a4e961be 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_parser.dm @@ -61,7 +61,7 @@ /datum/sdql_parser/proc/parse_error(error_message) error = 1 to_chat(usr, SPAN_WARNING("SDQL2 Parsing Error: [error_message]"), confidential = TRUE) - return query.len + 1 + return length(query) + 1 /datum/sdql_parser/proc/parse() tree = list() @@ -73,14 +73,14 @@ return tree /datum/sdql_parser/proc/token(i) - if(i <= query.len) + if(i <= length(query)) return query[i] else return null /datum/sdql_parser/proc/tokens(i, num) - if(i + num <= query.len) + if(i + num <= length(query)) return query.Copy(i, i + num) else @@ -473,7 +473,7 @@ if (tok == ":") temp_expression_list = list() i = expression(i + 1, temp_expression_list) - expression_list[expression_list[expression_list.len]] = temp_expression_list + expression_list[expression_list[length(expression_list)]] = temp_expression_list temp_expression_list = null tok = token(i) if (tok != ",") diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm index 57b707a8eb..64e6bb85be 100644 --- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm +++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm @@ -179,7 +179,7 @@ sleep(Delay) /proc/_list_add(list/L, ...) - if (args.len < 2) + if (length(args) < 2) return L += args.Copy(2) @@ -199,7 +199,7 @@ return L.Join(Glue, Start, End) /proc/_list_remove(list/L, ...) - if (args.len < 2) + if (length(args) < 2) return L -= args.Copy(2) diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 5f10b8d24d..3dfba42032 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -58,7 +58,7 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) ticket_list = resolved_tickets else CRASH("Invalid ticket state: [new_ticket.state]") - var/num_closed = ticket_list.len + var/num_closed = length(ticket_list) if(num_closed) for(var/I in 1 to num_closed) var/datum/admin_help/AH = ticket_list[I] @@ -97,8 +97,8 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) SHOULD_NOT_SLEEP(TRUE) var/list/L = list() var/num_disconnected = 0 - L[++L.len] = list("Active Tickets:", "[astatclick.update("[active_tickets.len]")]", null, REF(astatclick)) - astatclick.update("[active_tickets.len]") + L[++L.len] = list("Active Tickets:", "[astatclick.update("[length(active_tickets)]")]", null, REF(astatclick)) + astatclick.update("[length(active_tickets)]") for(var/I in active_tickets) var/datum/admin_help/AH = I if(AH.initiator) @@ -108,8 +108,8 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) ++num_disconnected if(num_disconnected) L[++L.len] = list("Disconnected:", "[astatclick.update("[num_disconnected]")]", null, REF(astatclick)) - L[++L.len] = list("Closed Tickets:", "[cstatclick.update("[closed_tickets.len]")]", null, REF(cstatclick)) - L[++L.len] = list("Resolved Tickets:", "[rstatclick.update("[resolved_tickets.len]")]", null, REF(rstatclick)) + L[++L.len] = list("Closed Tickets:", "[cstatclick.update("[length(closed_tickets)]")]", null, REF(cstatclick)) + L[++L.len] = list("Resolved Tickets:", "[rstatclick.update("[length(resolved_tickets)]")]", null, REF(rstatclick)) return L //Reassociate still open ticket if one exists @@ -300,7 +300,7 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) webhook_sent = WEBHOOK_URGENT var/list/adm = get_admin_counts(R_BAN) var/list/activemins = adm["present"] - var/admin_number_present = activemins.len + var/admin_number_present = length(activemins) log_admin_private("Ticket #[id]: [key_name(initiator)]: [name] - heard by [admin_number_present] non-AFK admins who have +BAN.") if(admin_number_present <= 0) @@ -469,6 +469,14 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) /datum/admin_help/proc/Close(key_name = key_name_admin(usr), silent = FALSE) if(state != AHELP_ACTIVE) return + + if(marked_admin != usr.ckey) + if(marked_admin) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + else + to_chat(usr, SPAN_WARNING("This ticket is not currently marked. Please mark it first to interact with this ticket!")) + return + RemoveActive() state = AHELP_CLOSED GLOB.ahelp_tickets.ListInsert(src) @@ -483,6 +491,14 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) /datum/admin_help/proc/Resolve(key_name = key_name_admin(usr), silent = FALSE) if(state != AHELP_ACTIVE) return + + if(marked_admin != usr.ckey) + if(marked_admin) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + else + to_chat(usr, SPAN_WARNING("This ticket is not currently marked. Please mark it first to interact with this ticket!")) + return + RemoveActive() state = AHELP_RESOLVED GLOB.ahelp_tickets.ListInsert(src) @@ -501,6 +517,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) if(state != AHELP_ACTIVE || !initial_message) return + if(marked_admin && marked_admin != usr.ckey) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + return + if(!initiator.current_mhelp) initiator.current_mhelp = new(initiator) @@ -523,27 +543,28 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) log_ahelp(id, "Defer", "Deferred to mentors by [usr.key]", null, usr.ckey) Close(silent = TRUE) -/datum/admin_help/proc/mark_ticket() +/datum/admin_help/proc/mark_ticket(mob/marking_admin) + var/mob/user = marking_admin || usr if(marked_admin) - if(marked_admin == usr.key) + if(marked_admin == user.ckey) unmark_ticket() return - to_chat(usr, SPAN_WARNING("This ticket has already been marked by [marked_admin].")) - var/unmark_option = tgui_alert(usr, "This message has been marked by [marked_admin]. Do you want to override?", "Marked Ticket", list("Overwrite Mark", "Unmark", "Cancel")) + to_chat(user, SPAN_WARNING("This ticket has already been marked by [marked_admin].")) + var/unmark_option = tgui_alert(user, "This message has been marked by [marked_admin]. Do you want to override?", "Marked Ticket", list("Overwrite Mark", "Unmark", "Cancel")) if(unmark_option == "Unmark") unmark_ticket() return if(unmark_option != "Overwrite Mark") return - var/key_name = key_name_admin(usr) + var/key_name = key_name_admin(user) AddInteraction("Marked by [key_name].", player_message = "Ticket marked!") to_chat(initiator, SPAN_ADMINHELP("An admin is preparing to respond to your ticket.")) var/msg = "Ticket [TicketHref("#[id]")] marked by [key_name]." message_admins(msg) log_admin_private(msg) - log_ahelp(id, "Marked", "Marked by [usr.key]", sender = usr.ckey) - marked_admin = usr.key + log_ahelp(id, "Marked", "Marked by [user.key]", sender = user.ckey) + marked_admin = user.ckey /datum/admin_help/proc/unmark_ticket() var/key_name = key_name_admin(usr) @@ -559,6 +580,13 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) if(state != AHELP_ACTIVE) return + if(marked_admin != usr.ckey) + if(marked_admin) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + else + to_chat(usr, SPAN_WARNING("This ticket is not currently marked. Please mark it first to interact with this ticket!")) + return + if(initiator) initiator.giveadminhelpverb() @@ -582,6 +610,13 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) to_chat(usr, SPAN_WARNING("This ticket is already closed!")) return + if(marked_admin != usr.ckey) + if(marked_admin) + to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!")) + else + to_chat(usr, SPAN_WARNING("This ticket is not currently marked. Please mark it first to interact with this ticket!")) + return + var/chosen = tgui_input_list(usr, "Which auto response do you wish to send?", "AutoReply", GLOB.adminreplies) var/datum/autoreply/admin/response = GLOB.adminreplies[chosen] @@ -625,7 +660,7 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new) // Append any tickets also opened by this user if relevant var/list/related_tickets = GLOB.ahelp_tickets.TicketsByCKey(initiator_ckey) - if (related_tickets.len > 1) + if (length(related_tickets) > 1) dat += "
      Other Tickets by User
      " for (var/datum/admin_help/related_ticket in related_tickets) if (related_ticket.id == id) diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm index 2806b8c3ba..8a86d7282a 100644 --- a/code/modules/admin/verbs/adminjump.dm +++ b/code/modules/admin/verbs/adminjump.dm @@ -29,7 +29,7 @@ message_admins(WRAP_STAFF_LOG(usr, "jumped to area [get_area(usr)] ([usr.loc.x],[usr.loc.y],[usr.loc.z])."), usr.loc.x, usr.loc.y, usr.loc.z) -/client/proc/jump_to_turf(turf/T in turfs) +/client/proc/jump_to_turf(turf/T in GLOB.turfs) set name = "Jump to Turf" set category = null diff --git a/code/modules/admin/verbs/adminpanelgq.dm b/code/modules/admin/verbs/adminpanelgq.dm index 8ef1ed8696..82efd09068 100644 --- a/code/modules/admin/verbs/adminpanelgq.dm +++ b/code/modules/admin/verbs/adminpanelgq.dm @@ -2,7 +2,7 @@ set name = "Call General Quarters" set category = "Admin.Ship" - if(security_level == SEC_LEVEL_RED || security_level == SEC_LEVEL_DELTA) + if(GLOB.security_level == SEC_LEVEL_RED || GLOB.security_level == SEC_LEVEL_DELTA) tgui_alert(src, "Security is already red or above, General Quarters cannot be called.", "Acknowledge!", list("ok."), 10 SECONDS) return FALSE diff --git a/code/modules/admin/verbs/adminpanelweapons.dm b/code/modules/admin/verbs/adminpanelweapons.dm index 9fde4e96eb..26d6ca803b 100644 --- a/code/modules/admin/verbs/adminpanelweapons.dm +++ b/code/modules/admin/verbs/adminpanelweapons.dm @@ -2,120 +2,68 @@ set name = "Weapons" set category = "Admin.Ship" - var/weapontype = tgui_alert(src, "What weapon?", "Choose wisely!", list("Missile", "Railgun"), 20 SECONDS) - if(!weapontype) - return - var/hiteta = tgui_input_number(src, "Give an ETA for the weapon to hit.", "Don't make them wait too long!", 10, 120, 10, 20 SECONDS) - if(!hiteta) - return - var/point_defense = tgui_alert(src, "Allow Point Defence of the ship to intercept, or for the weapon to miss?", "standard PD/miss chance is 30%.", list("Yes", "No"), 20 SECONDS) - if(!point_defense) - return - point_defense = point_defense == "Yes" - var/exactplace = tgui_alert(src, "Shoot it at random places, or where you're at?", "Choose wisely!", list("Random", "Where I am"), 20 SECONDS) - if(!exactplace) + var/list/datum/space_weapon/potential_weapons = list() + for(var/weapon_to_get in GLOB.space_weapons) + var/datum/space_weapon/weapon_to_set = GLOB.space_weapons[weapon_to_get] + LAZYSET(potential_weapons, weapon_to_set.name, weapon_to_set) + + var/weapon_type = tgui_input_list(src, "What weapon?", "Choose wisely!", potential_weapons) + if(!weapon_type) return - exactplace = exactplace == "Where I am" - var/salvo - var/quantity - if(exactplace == FALSE) - salvo = tgui_alert(src, "Make it a salvo or a single fire?", "Choose wisely!", list("Salvo", "Single"), 20 SECONDS) - if(!salvo) - return - salvo = salvo == "Salvo" - if(salvo == TRUE) - quantity = tgui_input_number(src, "How many?", "Don't go overboard. Please.", 2, 10, 2, 20 SECONDS) + var/list/ammo_type = list() + var/answer = tgui_alert(src, "Use all ammo types?", "Ammo selector", list("Yes", "No", "Cancel")) + if(answer == "Yes") + ammo_type = potential_weapons[weapon_type].possibly_ammunition + else if(answer == "No") + var/list/datum/space_weapon_ammo/potential_ammo = list() + for(var/ammo_to_get in potential_weapons[weapon_type].possibly_ammunition) + var/datum/space_weapon_ammo/ammo_to_set = GLOB.space_weapons_ammo[ammo_to_get] + LAZYSET(potential_ammo, ammo_to_set.name, ammo_to_get) - var/prompt = tgui_alert(src, "Are you sure you want to open fire at the USS Almayer with those parameters?", "Choose wisely!", list("Yes", "No"), 20 SECONDS) - if(prompt != "Yes") + while(length(potential_ammo)) + var/additional_ammo = tgui_input_list(src, "Choose ammo", "Ammo selector", potential_ammo, 20 SECONDS) + if(!additional_ammo) + break + ammo_type += potential_ammo[additional_ammo] + potential_ammo -= additional_ammo + else return - var/atom/picked_atom - var/list/targets = list() - switch(weapontype) - if("Missile") - if(exactplace == TRUE) - shipwide_ai_announcement("DANGER: MISSILE WARNING. LAUNCH DETECTED, BRACE, BRACE, BRACE. ESTIMATED TIME: [hiteta] SECONDS.", MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 1, mob.loc, point_defense), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a Single Missile at the Almayer at their own location, [mob.loc], with point defense as [point_defense]") - if(point_defense == TRUE) - var/spoolup = hiteta - 4 - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(shipwide_ai_announcement), "ATTENTION: TRACKING TARGET, SPOOLING UP POINT DEFENSE. ATTEMPTING TO INTERCEPT." , MAIN_AI_SYSTEM, 'sound/effects/supercapacitors_charging.ogg'), spoolup SECONDS) + if(!length(ammo_type)) + return - if(exactplace == FALSE) - if(salvo == TRUE) - shipwide_ai_announcement("DANGER: MISSILE SALVO DETECTED, BRACE, BRACE, BRACE. SALVO SIZE: [quantity], ESTIMATED TIME: [hiteta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - targets = shipside_random_turf_picker(quantity) - if(targets == null) - tgui_alert(src, "Uh oh! Something broke at this point! Contact the coders!", "Acknowledge!", list("ok."), 10 SECONDS) - return - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 1, targets, point_defense, salvo), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a salvo of [quantity] Missiles at the Almayer at random places, with point defense as [point_defense]") - if(point_defense == TRUE) - var/spoolup = hiteta - 4 - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(shipwide_ai_announcement), "ATTENTION: TRACKING TARGETS, SPOOLING UP POINT DEFENSE. ATTEMPTING TO INTERCEPT." , MAIN_AI_SYSTEM, 'sound/effects/supercapacitors_charging.ogg'), spoolup SECONDS) - else - shipwide_ai_announcement("DANGER: MISSILE WARNING. LAUNCH DETECTED, BRACE, BRACE, BRACE. ESTIMATED TIME: [hiteta] SECONDS.", MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - picked_atom = shipside_random_turf_picker(1) - if(picked_atom == null) - tgui_alert(src, "Uh oh! Something broke at this point! Contact the coders!", "Acknowledge!", list("ok."), 10 SECONDS) - return - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 1, picked_atom, point_defense), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a Single Missile at the Almayer at a random place, [picked_atom], with point defense as [point_defense]") - if(point_defense == TRUE) - var/spoolup = hiteta - 4 - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(shipwide_ai_announcement), "ATTENTION: TRACKING TARGET, SPOOLING UP POINT DEFENSE. ATTEMPTING TO INTERCEPT." , MAIN_AI_SYSTEM, 'sound/effects/supercapacitors_charging.ogg'), spoolup SECONDS) + var/hit_eta = tgui_input_number(src, "Give an ETA for the weapon to hit.", "Don't make them wait too long!", 10, 120, 10, 20 SECONDS) + if(!hit_eta) + return - if("Railgun") - if(exactplace == TRUE) - shipwide_ai_announcement("DANGER: RAILGUN EMISSIONS DETECTED, INCOMING SHOT. BRACE, BRACE, BRACE. ESTIMATED TIME: [hiteta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 2, mob.loc, point_defense), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a single Railgun Slug at the Almayer at their location, [mob.loc], with the possibility of missing as [point_defense]") + var/intercept_chance = tgui_input_number(src, "Chance Point Defence of the ship to intercept, or for the weapon to miss?", "standard PD chance is 0%.", 0, 100, 0, 20 SECONDS) + var/targets + var/quantity = 1 + if(tgui_alert(src, "Shoot it at random places, or where you're at?", "Choose wisely!", list("Random", "Where I am"), 20 SECONDS) == "Where I am") + targets = list(get_turf(mob)) + else + quantity = tgui_input_number(src, "How many?", "Don't go overboard. Please.", 1, 256, 1, 20 SECONDS) + targets = shipside_random_turf_picker(quantity) + + var/delay = tgui_input_number(src, "Give delay between hits in diceseconds (1/10 of second). (0 async hits, can cause emotional damage)", "Don't make them wait too long!", 0, 600, 0, 20 SECONDS) - if(exactplace == FALSE) - if(salvo == TRUE) - shipwide_ai_announcement("DANGER: RAILGUN EMISSIONS DETECTED, SALVO INCOMING. BRACE, BRACE, BRACE. SALVO SIZE: [quantity], ESTIMATED TIME: [hiteta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - targets = shipside_random_turf_picker(quantity) - if(targets == null) - tgui_alert(src, "Uh oh! Something broke at this point! Contact the coders!", "Acknowledge!", list("ok."), 10 SECONDS) - return - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 2, targets, point_defense, salvo), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a salvo of Railgun Slugs at the Almayer at random places, with the possibility of missing [point_defense]") - picked_atom = null - targets = null + if(tgui_alert(src, "Are you sure you want to open fire at the [MAIN_SHIP_NAME] with those parameters?", "Choose wisely!", list("Yes", "No")) != "Yes") + return - if(salvo == FALSE) - prompt = tgui_alert(src, "Are you sure you want to shoot a railgun slug at the USS Almayer at a random place?", "Choose wisely!", list("Yes", "No"), 20 SECONDS) - if(prompt == "Yes") - shipwide_ai_announcement("DANGER: RAILGUN EMISSIONS DETECTED, INCOMING SHOT. BRACE, BRACE, BRACE. ESTIMATED TIME: [hiteta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') - picked_atom = shipside_random_turf_picker(1) - if(picked_atom == null) - tgui_alert(src, "Uh oh! Something broke at this point! Contact the coders!", "Acknowledge!", list("ok."), 10 SECONDS) - return - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(weaponhits), 2, picked_atom, point_defense), hiteta SECONDS) - message_admins("[key_name_admin(src)] Fired a single Railgun Slug at the Almayer at a random location, [picked_atom], with the possibility of missing as [point_defense]") + potential_weapons[weapon_type].shot_message(length(targets), hit_eta) + addtimer(CALLBACK(potential_weapons[weapon_type], TYPE_PROC_REF(/datum/space_weapon, on_shot), targets, ammo_type, intercept_chance, delay), hit_eta SECONDS) + message_admins("[key_name_admin(src)] Fired [quantity] form [weapon_type] at the Almayer, with point defense as [intercept_chance]% with delay of [delay/10] seconds between hits") + if(intercept_chance) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(shipwide_ai_announcement), "ATTENTION: TRACKING TARGET[quantity > 1 ? "S" : ""], SPOOLING UP POINT DEFENSE. ATTEMPTING TO INTERCEPT." , MAIN_AI_SYSTEM, 'sound/effects/supercapacitors_charging.ogg'), (hit_eta - 4) SECONDS) /proc/shipside_random_turf_picker(turfquantity) - - var/picked_atom - var/picked_area var/list/targets = list() - var/list/turfs_of_area = list() - for(var/currentturf in 1 to turfquantity) - for(var/limiter in 1 to 120) - picked_area = pick(GLOB.ship_areas) - for(var/turf/my_turf in picked_area) + for(var/currentturf = 1 to turfquantity) + var/list/turfs_of_area = list() + for(var/area in GLOB.ship_areas) + for(var/turf/my_turf in area) turfs_of_area += my_turf - if(turfs_of_area.len > 0) - picked_atom = pick(turfs_of_area) - if (picked_atom != null) - targets += picked_atom - break - - if(targets.len < turfquantity) - return null - else - return targets - + targets += pick(turfs_of_area) + return targets diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index e5fed9db2f..a6cf0f02a3 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -60,7 +60,10 @@ var/message_prompt = "Message:" - if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || (AH?.marked_admin && AH?.marked_admin != usr.key) && length(AH.ticket_interactions) == 2) + if(AH && !AH.marked_admin) + AH.mark_ticket() + + if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || ((AH?.marked_admin && AH?.marked_admin != usr.ckey) && length(AH.ticket_interactions) == 2)) SEND_SOUND(src, sound('sound/machines/buzz-sigh.ogg', volume=30)) message_prompt += "\n\n**This ticket is already being responded to by: [length(AH.opening_responders) ? english_list(AH.opening_responders) : AH.marked_admin]**" @@ -228,7 +231,8 @@ if(CLIENT_IS_STAFF(src)) //sender is an admin but recipient is not. Do BIG RED TEXT var/already_logged = FALSE if(!recipient.current_ticket) - new /datum/admin_help(msg, recipient, TRUE) + var/datum/admin_help/new_ticket = new(msg, recipient, TRUE) + new_ticket.marked_admin = ckey already_logged = TRUE log_ahelp(recipient.current_ticket.id, "Ticket Opened", msg, recipient.ckey, src.ckey) diff --git a/code/modules/admin/verbs/autoreplace.dm b/code/modules/admin/verbs/autoreplace.dm index 109977f1a5..4e6ec6fdd4 100644 --- a/code/modules/admin/verbs/autoreplace.dm +++ b/code/modules/admin/verbs/autoreplace.dm @@ -1,4 +1,4 @@ -var/list/datum/decorator/manual/admin_runtime/admin_runtime_decorators = list() +GLOBAL_LIST_INIT_TYPED(admin_runtime_decorators, /datum/decorator/manual/admin_runtime, list()) /client/proc/set_autoreplacer() set category = "Admin.Events" @@ -30,9 +30,9 @@ var/list/datum/decorator/manual/admin_runtime/admin_runtime_decorators = list() if("No") return - admin_runtime_decorators.Add(SSdecorator.add_decorator(/datum/decorator/manual/admin_runtime, types, subtypes, field, value)) + GLOB.admin_runtime_decorators.Add(SSdecorator.add_decorator(/datum/decorator/manual/admin_runtime, types, subtypes, field, value)) - message_admins("[src] activated new decorator id: [admin_runtime_decorators.len] set for [hint_text] `[types]` for field `[field]` set value `[value]`") + message_admins("[src] activated new decorator id: [length(GLOB.admin_runtime_decorators)] set for [hint_text] `[types]` for field `[field]` set value `[value]`") /client/proc/deactivate_autoreplacer() set category = "Admin.Events" @@ -47,7 +47,7 @@ var/list/datum/decorator/manual/admin_runtime/admin_runtime_decorators = list() if(!num_value) return - admin_runtime_decorators[num_value].enabled = FALSE + GLOB.admin_runtime_decorators[num_value].enabled = FALSE message_admins("[src] deactivated decorator id: [num_value]") diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index ed9827ee32..5228c2d80f 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -18,21 +18,6 @@ usr.show_message(t, SHOW_MESSAGE_VISIBLE) -/client/proc/cmd_admin_robotize(mob/M in GLOB.mob_list) - set category = null - set name = "Make Robot" - - if(!SSticker.mode) - alert("Wait until the game starts") - return - if(istype(M, /mob/living/carbon/human)) - log_admin("[key_name(src)] has robotized [M.key].") - spawn(10) - M:Robotize() - - else - alert("Invalid mob") - /client/proc/cmd_admin_animalize(mob/M in GLOB.mob_list) set category = null set name = "Make Simple Animal" @@ -86,8 +71,8 @@ if(!SSticker.mode) to_chat(usr, "Mode not found?") - round_should_check_for_win = !round_should_check_for_win - if (round_should_check_for_win) + GLOB.round_should_check_for_win = !GLOB.round_should_check_for_win + if (GLOB.round_should_check_for_win) message_admins("[key_name(src)] enabled checking for round-end.") else message_admins("[key_name(src)] disabled checking for round-end.") @@ -132,8 +117,8 @@ var/datum/space_level/cur_level = SSmapping.z_list[cur_z] cur_x += cur_level.bounds[MAP_MINX] - 1 cur_y += cur_level.bounds[MAP_MINY] - 1 - width = cur_level.bounds[MAP_MAXX] - cur_level.bounds[MAP_MINX] - half_chunk_size + 1 - height = cur_level.bounds[MAP_MAXY] - cur_level.bounds[MAP_MINY] - half_chunk_size + 1 + width = cur_level.bounds[MAP_MAXX] - cur_level.bounds[MAP_MINX] - half_chunk_size + 3 + height = cur_level.bounds[MAP_MAXY] - cur_level.bounds[MAP_MINY] - half_chunk_size + 3 else width = world.maxx - half_chunk_size + 2 height = world.maxy - half_chunk_size + 2 @@ -215,14 +200,14 @@ return if (istype(M, /mob/living/carbon/human)) var/mob/living/carbon/human/H = M - if (H.wear_id) - var/obj/item/card/id/id = H.wear_id + var/obj/item/card/id/id = H.get_idcard() + if(id) id.icon_state = "gold" - id:access = get_access(ACCESS_LIST_GLOBAL) + id.access = get_access(ACCESS_LIST_GLOBAL) else - var/obj/item/card/id/id = new/obj/item/card/id(M); + id = new(M) id.icon_state = "gold" - id:access = get_access(ACCESS_LIST_GLOBAL) + id.access = get_access(ACCESS_LIST_GLOBAL) id.registered_name = H.real_name id.registered_ref = WEAKREF(H) id.assignment = "Captain" @@ -281,7 +266,7 @@ var/datum/paygrade/account_paygrade = GLOB.paygrades[custom_paygrade] - var/obj/item/card/id/card = account_user.wear_id + var/obj/item/card/id/card = account_user.get_idcard() generated_account = create_account(account_user.real_name, starting_amount, account_paygrade) if(card) card.associated_account_number = generated_account.account_number @@ -292,12 +277,14 @@ remembered_info += "Your account pin is: [generated_account.remote_access_pin]
      " remembered_info += "Your account funds are: $[generated_account.money]
      " - if(generated_account.transaction_log.len) + if(length(generated_account.transaction_log)) var/datum/transaction/T = generated_account.transaction_log[1] remembered_info += "Your account was created: [T.time], [T.date] at [T.source_terminal]
      " account_user.mind.store_memory(remembered_info) account_user.mind.initial_account = generated_account + log_admin("[key_name(usr)] has created a new bank account for [key_name(account_user)].") + /client/proc/cmd_assume_direct_control(mob/M in GLOB.mob_list) set name = "Control Mob" set desc = "Assume control of the mob" @@ -335,17 +322,17 @@ individual_counts["[M.type]"]++ for(var/mob/M in SShuman.processable_human_list) individual_counts["[M.type]"]++ - for(var/obj/structure/machinery/M in processing_machines) + for(var/obj/structure/machinery/M in GLOB.processing_machines) individual_counts["[M.type]"]++ - for(var/datum/powernet/M in powernets) + for(var/datum/powernet/M in GLOB.powernets) individual_counts["[M.type]"]++ for(var/mob/M in SSmob.living_misc_mobs) individual_counts["[M.type]"]++ - for(var/datum/nanoui/M in nanomanager.processing_uis) + for(var/datum/nanoui/M in SSnano.nanomanager.processing_uis) individual_counts["[M.type]"]++ - for(var/datum/powernet/M in powernets) + for(var/datum/powernet/M in GLOB.powernets) individual_counts["[M.type]"]++ - for(var/datum/M in power_machines) + for(var/datum/M in GLOB.power_machines) individual_counts["[M.type]"]++ for(var/mob/M in GLOB.xeno_mob_list) individual_counts["[M.type]"]++ diff --git a/code/modules/admin/verbs/freeforghosts.dm b/code/modules/admin/verbs/freeforghosts.dm index 4bf5549f30..b5e43bbb87 100644 --- a/code/modules/admin/verbs/freeforghosts.dm +++ b/code/modules/admin/verbs/freeforghosts.dm @@ -38,7 +38,7 @@ if(alert("This will free ALL mobs within your view range. Are you sure?",,"Yes","Cancel") == "Cancel") return - for(var/mob/living/M in view()) + for(var/mob/living/M in view(src)) free_for_ghosts(M, notify = FALSE) message_admins(WRAP_STAFF_LOG(usr, "freed all mobs in [get_area(usr)] ([usr.x],[usr.y],[usr.z])"), usr.x, usr.y, usr.z) diff --git a/code/modules/admin/verbs/load_event_level.dm b/code/modules/admin/verbs/load_event_level.dm index 72d004e032..28aab2ef78 100644 --- a/code/modules/admin/verbs/load_event_level.dm +++ b/code/modules/admin/verbs/load_event_level.dm @@ -38,8 +38,8 @@ to_chat(C, "Failed to load the template to a Z-Level! Sorry!") return - var/center_x = round(loaded.bounds[MAP_MAXX] / 2) // Technically off by 0.5 due to above +1. Whatever - var/center_y = round(loaded.bounds[MAP_MAXY] / 2) + var/center_x = floor(loaded.bounds[MAP_MAXX] / 2) // Technically off by 0.5 due to above +1. Whatever + var/center_y = floor(loaded.bounds[MAP_MAXY] / 2) // Now notify the staff of the load - this goes in addition to the generic template load game log message_admins("Successfully loaded template as new Z-Level by ckey: [logckey], template name: [template.name]", center_x, center_y, loaded.z_value) diff --git a/code/modules/admin/verbs/map_template_loadverb.dm b/code/modules/admin/verbs/map_template_loadverb.dm index 59cffa7f5e..aed4fd6b90 100644 --- a/code/modules/admin/verbs/map_template_loadverb.dm +++ b/code/modules/admin/verbs/map_template_loadverb.dm @@ -74,3 +74,30 @@ SSmapping.map_templates[M.name] = M message_admins(SPAN_ADMINNOTICE("[key_name_admin(src)] has uploaded a map template '[map]' ([M.width]x[M.height])[report_link].")) to_chat(src, SPAN_NOTICE("Map template '[map]' ready to place ([M.width]x[M.height])"), confidential = TRUE) + +/client/proc/force_load_lazy_template() + set name = "Map Template - Lazy Load/Jump" + set category = "Admin.Events" + if(!check_rights(R_EVENT)) + return + + var/choice = tgui_input_list(usr, "Key?", "Lazy Loader", GLOB.lazy_templates) + if(!choice) + return + + var/already_loaded = LAZYACCESS(SSmapping.loaded_lazy_templates, choice) + var/force_load = FALSE + if(already_loaded && (tgui_alert(usr, "Template already loaded.", "", list("Jump", "Load Again")) == "Load Again")) + force_load = TRUE + + var/datum/turf_reservation/reservation = SSmapping.lazy_load_template(choice, force = force_load) + if(!reservation) + to_chat(usr, SPAN_BOLDWARNING("Failed to load template!")) + return + + if(!isobserver(usr)) + admin_ghost() + usr.forceMove(reservation.bottom_left_turfs[1]) + + message_admins("[key_name_admin(usr)] has loaded lazy template '[choice]'") + to_chat(usr, SPAN_BOLD("Template loaded, you have been moved to the bottom left of the reservation.")) diff --git a/code/modules/admin/verbs/mob_verbs.dm b/code/modules/admin/verbs/mob_verbs.dm index 7d4c123510..6a61fc9b2f 100644 --- a/code/modules/admin/verbs/mob_verbs.dm +++ b/code/modules/admin/verbs/mob_verbs.dm @@ -20,7 +20,7 @@ message_admins("[key_name_admin(usr)] modified [key_name(M)]'s ckey to [new_ckey]", 1) M.ckey = new_ckey - M.client?.change_view(world_view_size) + M.client?.change_view(GLOB.world_view_size) /client/proc/cmd_admin_changekey(mob/O in GLOB.mob_list) set name = "Change CKey" @@ -68,13 +68,13 @@ var/datum/mob_hud/H switch(hud_choice) if("Medical HUD") - H = huds[MOB_HUD_MEDICAL_ADVANCED] + H = GLOB.huds[MOB_HUD_MEDICAL_ADVANCED] if("Security HUD") - H = huds[MOB_HUD_SECURITY_ADVANCED] + H = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] if("Squad HUD") - H = huds[MOB_HUD_FACTION_OBSERVER] + H = GLOB.huds[MOB_HUD_FACTION_OBSERVER] if("Xeno Status HUD") - H = huds[MOB_HUD_XENO_STATUS] + H = GLOB.huds[MOB_HUD_XENO_STATUS] else return H.add_hud_to(M, HUD_SOURCE_ADMIN) @@ -199,7 +199,7 @@ else return -/client/proc/cmd_admin_atom_narrate(atom/selected) +/client/proc/cmd_admin_atom_narrate(atom/selected in view(src)) set name = "Atom Narrate" set category = null @@ -220,7 +220,7 @@ selected.AddComponent(/datum/component/atom_narrate, message, narration_type, delayed, key_name(src)) -/client/proc/cmd_admin_direct_narrate(mob/M) +/client/proc/cmd_admin_direct_narrate(mob/M in GLOB.mob_list) set name = "Narrate" set category = null @@ -316,7 +316,7 @@ message_admins("[key_name_admin(usr)] made [key_name_admin(M)] drop everything!") -/client/proc/cmd_admin_change_their_hivenumber(mob/living/carbon/H) +/client/proc/cmd_admin_change_their_hivenumber(mob/living/carbon/H in GLOB.living_mob_list) set name = "Change Hivenumber" set category = null @@ -356,7 +356,7 @@ message_admins("[key_name(src)] changed hivenumber of [H] to [H.hivenumber].") -/client/proc/cmd_admin_change_their_name(mob/living/carbon/X) +/client/proc/cmd_admin_change_their_name(mob/living/carbon/carbon in GLOB.living_mob_list) set name = "Change Name" set category = null @@ -364,19 +364,20 @@ if(!newname) return - if(!X) + if(!carbon) to_chat(usr, "This mob no longer exists") return - var/old_name = X.name - X.change_real_name(X, newname) - if(istype(X, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = X - if(H.wear_id) - H.wear_id.name = "[H.real_name]'s ID Card" - H.wear_id.registered_name = "[H.real_name]" - if(H.wear_id.assignment) - H.wear_id.name += " ([H.wear_id.assignment])" + var/old_name = carbon.name + carbon.change_real_name(carbon, newname) + if(ishuman(carbon)) + var/mob/living/carbon/human/human = carbon + var/obj/item/card/id/card = human.get_idcard() + if(card) + card.name = "[human.real_name]'s ID Card" + card.registered_name = "[human.real_name]" + if(card.assignment) + card.name += " ([card.assignment])" message_admins("[key_name(src)] changed name of [old_name] to [newname].") diff --git a/code/modules/admin/verbs/mooc.dm b/code/modules/admin/verbs/mooc.dm index 22d9d25309..dc9f392055 100644 --- a/code/modules/admin/verbs/mooc.dm +++ b/code/modules/admin/verbs/mooc.dm @@ -20,9 +20,8 @@ if(M.client && (!M.client.admin_holder || !(M.client.admin_holder.rights & R_MOD))) // Send to marines who are non-staff to_chat_spaced(M, margin_top = 0.5, margin_bottom = 0.5, html = SPAN_MOOC("MOOC: [src.key]([src.admin_holder.rank]): [msg]")) - var/list/synthetics = getsynths() - for(var/mob/M in synthetics) - if(M.client && !M.client.admin_holder) + for(var/mob/M in GLOB.human_mob_list) + if(issynth(M) && M.client && !M.client.admin_holder) to_chat_spaced(M, margin_top = 0.5, margin_bottom = 0.5, html = SPAN_MOOC("MOOC: [src.key]([src.admin_holder.rank]): [msg]")) for(var/mob/dead/observer/M in GLOB.observer_list) diff --git a/code/modules/admin/verbs/pray.dm b/code/modules/admin/verbs/pray.dm index e0210e4577..23edd74991 100644 --- a/code/modules/admin/verbs/pray.dm +++ b/code/modules/admin/verbs/pray.dm @@ -12,26 +12,25 @@ if(src.client.handle_spam_prevention(msg,MUTE_PRAY)) return - var/liaison = 0 - if(job == "Corporate Liaison") - liaison = 1 + var/prefix = SPAN_PURPLE("PRAY: ") + var/receipt = "Your prayers have been received by the gods." + if(job == JOB_CORPORATE_LIAISON) + prefix = SPAN_PURPLE("LIAISON: ") + receipt = "Your corporate overlords at Weyland-Yutani have received your message." - if(liaison) - msg = SPAN_STAFF_IC("LIAISON: [key_name(src, 1)] [CC_MARK(src)] [ADMIN_PP(src)] [ADMIN_VV(src)] [ADMIN_SM(src)] [ADMIN_JMP_USER(src)] [ADMIN_SC(src)]: [msg]") - else - msg = SPAN_STAFF_IC("PRAY: [key_name(src, 1)] [CC_MARK(src)] [ADMIN_PP(src)] [ADMIN_VV(src)] [ADMIN_SM(src)] [ADMIN_JMP_USER(src)] [ADMIN_SC(src)]: [msg]") + msg = SPAN_BIGNOTICE("[prefix][key_name(src, 1)] [CC_MARK(src)] [ADMIN_PP(src)] [ADMIN_VV(src)] [ADMIN_SM(src)] [ADMIN_JMP_USER(src)] [ADMIN_SC(src)]: [msg]") log_admin(msg) - for(var/client/C in GLOB.admins) - if(AHOLD_IS_MOD(C.admin_holder) && C.prefs.toggles_chat & CHAT_PRAYER) - to_chat(C, msg) - if(liaison) - to_chat(usr, "Your corporate overlords at Weyland-Yutani have received your message.") - else - to_chat(usr, "Your prayers have been received by the gods.") + for(var/client/admin in GLOB.admins) + if(AHOLD_IS_MOD(admin.admin_holder)) + to_chat(admin, SPAN_STAFF_IC(msg)) + if(admin.prefs.toggles_sound & SOUND_ARES_MESSAGE) + admin << 'sound/machines/terminal_alert.ogg' + + to_chat(usr, receipt) /proc/high_command_announce(text , mob/Sender , iamessage) var/msg = copytext(sanitize(text), 1, MAX_MESSAGE_LEN) - msg = "[SPAN_STAFF_IC("USCM[iamessage ? "IA" : ""]:")][key_name(Sender, 1)] [CC_MARK(Sender)] [ADMIN_PP(Sender)] [ADMIN_VV(Sender)] [ADMIN_SM(Sender)] [ADMIN_JMP_USER(Sender)] [CC_REPLY(Sender)]: [msg]" + msg = "[SPAN_STAFF_IC("USCM[iamessage ? "IA" : ""]:")][key_name(Sender, 1)] [CC_MARK(Sender)] [ADMIN_PP(Sender)] [ADMIN_VV(Sender)] [ADMIN_SM(Sender)] [ADMIN_JMP_USER(Sender)] [CC_REPLY(Sender)]: [msg]" log_admin(msg) for(var/client/C in GLOB.admins) if((R_ADMIN|R_MOD) & C.admin_holder.rights) diff --git a/code/modules/admin/verbs/select_equipment.dm b/code/modules/admin/verbs/select_equipment.dm index 560afc1a65..edecb81d74 100644 --- a/code/modules/admin/verbs/select_equipment.dm +++ b/code/modules/admin/verbs/select_equipment.dm @@ -5,20 +5,20 @@ alert("Invalid mob") return - var/rank_list = list("Custom", "Weyland-Yutani") + RoleAuthority.roles_by_name + var/rank_list = list("Custom", "Weyland-Yutani") + GLOB.RoleAuthority.roles_by_name var/newrank = tgui_input_list(usr, "Select new rank for [H]", "Change the mob's rank and skills", rank_list) if (!newrank) return - if(!H) + if(QDELETED(H)) return - var/obj/item/card/id/I = H.wear_id + var/obj/item/card/id/I = H.get_idcard() - if(RoleAuthority.roles_by_name[newrank]) - var/datum/job/J = RoleAuthority.roles_by_name[newrank] + if(GLOB.RoleAuthority.roles_by_name[newrank]) + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[newrank] H.comm_title = J.get_comm_title() H.set_skills(J.get_skills()) - if(istype(I)) + if(I) I.access = J.get_access() I.rank = J.title I.assignment = J.disp_title @@ -44,39 +44,39 @@ H.faction = FACTION_WY H.faction_group = FACTION_LIST_WY - var/newskillset = tgui_input_list(usr, "Select a skillset", "Skill Set", (list("Keep Skillset") +RoleAuthority.roles_by_name)) + var/newskillset = tgui_input_list(usr, "Select a skillset", "Skill Set", (list("Keep Skillset") +GLOB.RoleAuthority.roles_by_name)) if(!newskillset || newskillset == "Keep Skillset") return - if(!H) + if(QDELETED(H)) return - var/datum/job/J = RoleAuthority.roles_by_name[newskillset] + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[newskillset] H.set_skills(J.get_skills()) if("Custom") var/newcommtitle = input("Write the custom title appearing on comms chat (e.g. Spc)", "Comms title") as null|text if(!newcommtitle) return - if(!H) + if(QDELETED(H)) return H.comm_title = newcommtitle - if(!istype(I) || I != H.wear_id) + if(!I || I != H.get_idcard()) to_chat(usr, "The mob has no id card, unable to modify ID and chat title.") else var/newchattitle = input("Write the custom title appearing in chat (e.g. SGT)", "Chat title") as null|text if(!newchattitle) return - if(!H || I != H.wear_id) + if(QDELETED(H) || I != H.get_idcard()) return I.paygrade = newchattitle var/IDtitle = input("Write the custom title on your ID (e.g. Squad Specialist)", "ID title") as null|text if(!IDtitle) return - if(!H || I != H.wear_id) + if(QDELETED(H) || I != H.get_idcard()) return I.rank = IDtitle @@ -88,17 +88,17 @@ new_faction = FACTION_NEUTRAL H.faction = new_faction - var/newskillset = tgui_input_list(usr, "Select a skillset", "Skill Set", RoleAuthority.roles_by_name) + var/newskillset = tgui_input_list(usr, "Select a skillset", "Skill Set", GLOB.RoleAuthority.roles_by_name) if(!newskillset) return - if(!H) + if(QDELETED(H)) return - var/datum/job/J = RoleAuthority.roles_by_name[newskillset] + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[newskillset] H.set_skills(J.get_skills()) -/client/proc/cmd_admin_dress(mob/M) +/client/proc/cmd_admin_dress(mob/M in GLOB.mob_list) set category = null set name = "Select Equipment" diff --git a/code/modules/admin/verbs/shuttlepanel.dm b/code/modules/admin/verbs/shuttlepanel.dm index 9ae9cedd79..72d69511af 100644 --- a/code/modules/admin/verbs/shuttlepanel.dm +++ b/code/modules/admin/verbs/shuttlepanel.dm @@ -3,7 +3,7 @@ set name = "Shuttle Manipulator" set desc = "Opens the shuttle manipulator UI." - if(!check_rights(R_ADMIN|R_DEBUG|R_HOST)) + if(!check_rights(R_EVENT|R_DEBUG|R_HOST)) return SSshuttle.tgui_interact(usr) diff --git a/code/modules/admin/view_variables/debug_variables.dm b/code/modules/admin/view_variables/debug_variables.dm index 90178160e5..356843918f 100644 --- a/code/modules/admin/view_variables/debug_variables.dm +++ b/code/modules/admin/view_variables/debug_variables.dm @@ -4,11 +4,12 @@ var/header if(D) if(islist(D)) + var/list/var_list = D var/index = name if (value) - name = D[name] //name is really the index until this line + name = var_list[name] //name is really the index until this line else - value = D[name] + value = var_list[name] header = "
    • [VV_HREF_TARGET_1V(D, VV_HK_LIST_EDIT, "E", index)][VV_HREF_TARGET_1V(D, VV_HK_LIST_CHANGE, "C", index)][VV_HREF_TARGET_1V(D, VV_HK_LIST_REMOVE, "-", index)] " else header = "
    • [VV_HREF_TARGET_1V(D, VV_HK_BASIC_EDIT, "E", name)][VV_HREF_TARGET_1V(D, VV_HK_BASIC_CHANGE, "C", name)][VV_HREF_TARGET_1V(D, VV_HK_BASIC_MASSEDIT, "M", name)] " @@ -69,8 +70,8 @@ var/list/L = value var/list/items = list() - if (L.len > 0 && !(name == "underlays" || name == "overlays" || L.len > (IS_NORMAL_LIST(L) ? VV_NORMAL_LIST_NO_EXPAND_THRESHOLD : VV_SPECIAL_LIST_NO_EXPAND_THRESHOLD))) - for (var/i in 1 to L.len) + if (length(L) > 0 && !(name == "underlays" || name == "overlays" || length(L) > (IS_NORMAL_LIST(L) ? VV_NORMAL_LIST_NO_EXPAND_THRESHOLD : VV_SPECIAL_LIST_NO_EXPAND_THRESHOLD))) + for (var/i in 1 to length(L)) var/key = L[i] var/val if (IS_NORMAL_LIST(L) && !isnum(key)) @@ -81,9 +82,9 @@ items += debug_variable(key, val, level + 1, sanitize = sanitize) - item = "[name_part] = /list ([L.len])
        [items.Join()]
      " + item = "[name_part] = /list ([length(L)])
        [items.Join()]
      " else - item = "[name_part] = /list ([L.len])" + item = "[name_part] = /list ([length(L)])" else if (name in GLOB.bitfields) var/list/flags = list() diff --git a/code/modules/admin/view_variables/get_variables.dm b/code/modules/admin/view_variables/get_variables.dm index 9ec449e4c3..a29fe52ba5 100644 --- a/code/modules/admin/view_variables/get_variables.dm +++ b/code/modules/admin/view_variables/get_variables.dm @@ -390,7 +390,7 @@ var/list/matches = new var/end_len = -1 var/list/endcheck = splittext(filter, "!") - if(endcheck.len > 1) + if(length(endcheck) > 1) filter = endcheck[1] end_len = length_char(filter) diff --git a/code/modules/admin/view_variables/mass_edit_variables.dm b/code/modules/admin/view_variables/mass_edit_variables.dm index 4d1b5581aa..d72337a3a7 100644 --- a/code/modules/admin/view_variables/mass_edit_variables.dm +++ b/code/modules/admin/view_variables/mass_edit_variables.dm @@ -101,7 +101,7 @@ if(VV_RESTORE_DEFAULT) to_chat(src, "Finding items...", confidential = TRUE) var/list/items = get_all_of_type(O.type, method) - to_chat(src, "Changing [items.len] items...", confidential = TRUE) + to_chat(src, "Changing [length(items)] items...", confidential = TRUE) for(var/thing in items) if (!thing) continue @@ -116,7 +116,7 @@ var/list/varsvars = vv_parse_text(O, new_value) var/pre_processing = new_value var/unique - if (varsvars?.len) + if (LAZYLEN(varsvars)) unique = tgui_alert(usr, "Process vars unique to each instance, or same for all?", "Variable Association", list("Unique", "Same")) if(unique == "Unique") unique = TRUE @@ -127,7 +127,7 @@ to_chat(src, "Finding items...", confidential = TRUE) var/list/items = get_all_of_type(O.type, method) - to_chat(src, "Changing [items.len] items...", confidential = TRUE) + to_chat(src, "Changing [length(items)] items...", confidential = TRUE) for(var/thing in items) if (!thing) continue @@ -155,7 +155,7 @@ var/type = value["type"] to_chat(src, "Finding items...", confidential = TRUE) var/list/items = get_all_of_type(O.type, method) - to_chat(src, "Changing [items.len] items...", confidential = TRUE) + to_chat(src, "Changing [length(items)] items...", confidential = TRUE) for(var/thing in items) if (!thing) continue @@ -173,7 +173,7 @@ else to_chat(src, "Finding items...", confidential = TRUE) var/list/items = get_all_of_type(O.type, method) - to_chat(src, "Changing [items.len] items...", confidential = TRUE) + to_chat(src, "Changing [length(items)] items...", confidential = TRUE) for(var/thing in items) if (!thing) continue diff --git a/code/modules/admin/view_variables/modify_variables.dm b/code/modules/admin/view_variables/modify_variables.dm index e9595baf22..961b1ff6a1 100644 --- a/code/modules/admin/view_variables/modify_variables.dm +++ b/code/modules/admin/view_variables/modify_variables.dm @@ -21,16 +21,15 @@ GLOBAL_PROTECT(VVpixelmovement) if (!ispath(type)) return var/list/subtypes = subtypesof(type) - if (!subtypes || !subtypes.len) + if (!LAZYLEN(subtypes)) return FALSE - if (subtypes?.len) - switch(tgui_alert(usr,"Strict object type detection?", "Type detection", list("Strictly this type","This type and subtypes", "Cancel"))) - if("Strictly this type") - return FALSE - if("This type and subtypes") - return TRUE - else - return + switch(tgui_alert(usr,"Strict object type detection?", "Type detection", list("Strictly this type","This type and subtypes", "Cancel"))) + if("Strictly this type") + return FALSE + if("This type and subtypes") + return TRUE + else + return /client/proc/vv_reference_list(type, subtypes) . = list() @@ -115,14 +114,14 @@ GLOBAL_PROTECT(VVpixelmovement) to_chat(src, "Not a List.", confidential = TRUE) return - if(L.len > 1000) + if(length(L) > 1000) var/confirm = tgui_alert(usr, "The list you're trying to edit is very long, continuing may crash the server.", "Warning", list("Continue", "Abort")) if(confirm != "Continue") return var/is_normal_list = IS_NORMAL_LIST(L) var/list/names = list() - for (var/i in 1 to L.len) + for (var/i in 1 to length(L)) var/key = L[i] var/value if (is_normal_list && !isnum(key)) diff --git a/code/modules/admin/view_variables/reference_tracking.dm b/code/modules/admin/view_variables/reference_tracking.dm index 35f464354c..8658c9e306 100644 --- a/code/modules/admin/view_variables/reference_tracking.dm +++ b/code/modules/admin/view_variables/reference_tracking.dm @@ -130,7 +130,7 @@ #endif log_reftracker("Found [type] [text_ref(src)] in list [container_name].") var/msg - for(var/i in 1 to min(10, potential_cache.len)) + for(var/i in 1 to min(10, length(potential_cache))) msg += "[potential_cache[i]]," if(msg) log_reftracker("List contents: [msg]") @@ -148,7 +148,7 @@ #endif log_reftracker("Found [type] [text_ref(src)] in list [container_name]\[[element_in_list]\]") var/msg - for(var/i in 1 to min(10, potential_cache.len)) + for(var/i in 1 to min(10, length(potential_cache))) msg += "[potential_cache[i]]," if(msg) log_reftracker("List contents: [msg]") diff --git a/code/modules/admin/view_variables/topic_list.dm b/code/modules/admin/view_variables/topic_list.dm index 21b534d3d4..e0040efc2f 100644 --- a/code/modules/admin/view_variables/topic_list.dm +++ b/code/modules/admin/view_variables/topic_list.dm @@ -30,12 +30,12 @@ message_admins("[key_name_admin(src)] modified list's contents: CLEAR NULLS") if(href_list[VV_HK_LIST_SET_LENGTH]) var/value = vv_get_value(VV_NUM) - if (value["class"] != VV_NUM || value["value"] > max(50000, target.len)) //safety - would rather someone not put an extra 0 and erase the server's memory lmao. + if (value["class"] != VV_NUM || value["value"] > max(50000, length(target))) //safety - would rather someone not put an extra 0 and erase the server's memory lmao. return target.len = value["value"] - log_world("### ListVarEdit by [src]: /list len: [target.len]") - log_admin("[key_name(src)] modified list's len: [target.len]") - message_admins("[key_name_admin(src)] modified list's len: [target.len]") + log_world("### ListVarEdit by [src]: /list len: [length(target)]") + log_admin("[key_name(src)] modified list's len: [length(target)]") + message_admins("[key_name_admin(src)] modified list's len: [length(target)]") if(href_list[VV_HK_LIST_SHUFFLE]) shuffle_inplace(target) log_world("### ListVarEdit by [src]: /list contents: SHUFFLE") diff --git a/code/modules/admin/view_variables/view_variables.dm b/code/modules/admin/view_variables/view_variables.dm index 0ed09039c9..74132771c2 100644 --- a/code/modules/admin/view_variables/view_variables.dm +++ b/code/modules/admin/view_variables/view_variables.dm @@ -86,7 +86,7 @@ var/list/variable_html = list() if(islist) var/list/L = D - for(var/i in 1 to L.len) + for(var/i in 1 to length(L)) var/key = L[i] var/value if(IS_NORMAL_LIST(L) && IS_VALID_ASSOC_KEY(key)) diff --git a/code/modules/almayer/machinery.dm b/code/modules/almayer/machinery.dm index de49c1df62..6e3f670169 100644 --- a/code/modules/almayer/machinery.dm +++ b/code/modules/almayer/machinery.dm @@ -73,7 +73,7 @@ /obj/structure/machinery/prop/almayer/CICmap name = "map table" - desc = "A table that displays a map of the current target location" + desc = "A table that displays a map of the current operation location." icon = 'icons/obj/structures/machinery/computer.dmi' icon_state = "maptable" anchored = TRUE @@ -101,6 +101,13 @@ map.tgui_interact(user) +/obj/structure/machinery/prop/almayer/CICmap/computer + name = "map terminal" + desc = "A terminal that displays a map of the current operation location." + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "cicmap_computer" + density = FALSE + /obj/structure/machinery/prop/almayer/CICmap/upp minimap_type = MINIMAP_FLAG_UPP faction = FACTION_UPP @@ -213,7 +220,7 @@ var/obj/item/dogtag/D = I if(D.fallen_names) to_chat(user, SPAN_NOTICE("You add [D] to [src].")) - fallen_list += D.fallen_names + GLOB.fallen_list += D.fallen_names qdel(D) return TRUE else @@ -221,13 +228,13 @@ /obj/structure/prop/almayer/ship_memorial/get_examine_text(mob/user) . = ..() - if((isobserver(user) || ishuman(user)) && fallen_list) + if((isobserver(user) || ishuman(user)) && GLOB.fallen_list) var/faltext = "" - for(var/i = 1 to fallen_list.len) - if(i != fallen_list.len) - faltext += "[fallen_list[i]], " + for(var/i = 1 to length(GLOB.fallen_list)) + if(i != length(GLOB.fallen_list)) + faltext += "[GLOB.fallen_list[i]], " else - faltext += fallen_list[i] + faltext += GLOB.fallen_list[i] . += SPAN_NOTICE("To our fallen soldiers: [faltext].") /obj/structure/prop/almayer/particle_cannon diff --git a/code/modules/almayer/shakeship.dm b/code/modules/almayer/shakeship.dm index c3f359c9a7..29d9b7a762 100644 --- a/code/modules/almayer/shakeship.dm +++ b/code/modules/almayer/shakeship.dm @@ -35,7 +35,7 @@ playsound_client(current_mob.client, 'sound/effects/bigboom3.ogg', 100) if(drop) - INVOKE_ASYNC(current_mob, TYPE_PROC_REF(/atom/movable, throw_atom), get_ranged_target_turf(current_mob, pick(cardinal), sstrength-5), pick(cardinal), sstrength) + INVOKE_ASYNC(current_mob, TYPE_PROC_REF(/atom/movable, throw_atom), get_ranged_target_turf(current_mob, pick(GLOB.cardinals), sstrength-5), pick(GLOB.cardinals), sstrength) to_chat(current_mob, SPAN_HIGHDANGER("YOU ARE THROWN AROUND VIOLENTLY AND HIT THE DECK WITH FULL FORCE!!")) if(current_mob.client && osound) diff --git a/code/modules/almayer/weaponhits.dm b/code/modules/almayer/weaponhits.dm index 1f3a566ebb..428780a5ac 100644 --- a/code/modules/almayer/weaponhits.dm +++ b/code/modules/almayer/weaponhits.dm @@ -1,123 +1,145 @@ -#define WEAPON_MISSILE 1 -#define WEAPON_RAILGUN 2 -#define HIT_CHANCE_CHEAT 100 -#define HIT_CHANCE_STANDARD 70 /** - * Proc called to hit the ship with weapons - * - * Hits the ship with the weapon of choice - * Calling Shakeship acoording to the weapon used - * All sounds that should happen when they hit are in here already. - * Probably doesn't work in other shipmaps. - * Arguments: - * * weaponused - chooses the weapon through a switchcase. 1 for missiles, 2 for railguns, 3 for particle cannons. - * * location - location in the ship where the explosion will be created. - * * point_defense - If you want the Almayer to attempt taking down the incoming fire - * * salvo - identifies it as a salvo or not. + * Space weapons it's self for ship to ship or PKO/Xeno PKO things */ -/proc/weaponhits(weaponused, location, point_defense = FALSE, salvo = FALSE) - - - switch(weaponused) - - if(WEAPON_MISSILE) - var/datum/cause_data/ashm_cause_data = create_cause_data("Anti-Ship missile") - if(point_defense == FALSE) - if(salvo == TRUE) - var/shotspacing - for(var/turf/picked_atom in location) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), picked_atom, 400, 10, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, ashm_cause_data), shotspacing SECONDS) - shotspacing += 1 - shakeship(10, 10, TRUE, FALSE) - weaponhits_effects(WEAPON_MISSILE) - else - cell_explosion(location, 350, 1, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, ashm_cause_data) - shakeship(10, 10, TRUE, FALSE) - weaponhits_effects(WEAPON_MISSILE) - if(point_defense == TRUE) - var/hitchance = HIT_CHANCE_STANDARD - if(salvo == TRUE) - var/confirmedhit - var/shotspacing - for(var/turf/picked_atom in location) - if(prob(hitchance)) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), picked_atom, 400, 10, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, ashm_cause_data), shotspacing SECONDS) - shakeship(10, 10, TRUE, FALSE) - confirmedhit += 1 - else - weaponhits_effects(WEAPON_MISSILE, TRUE, shotspacing) - - shotspacing += 1 - if(confirmedhit > 0) - weaponhits_effects(WEAPON_MISSILE, FALSE) - confirmedhit = 0 - else - if(prob(hitchance)) - cell_explosion(location, 400, 10, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, ashm_cause_data) - shakeship(10, 10, TRUE, FALSE) - weaponhits_effects(WEAPON_MISSILE, FALSE) - else - weaponhits_effects(WEAPON_MISSILE, TRUE) - - if(WEAPON_RAILGUN) - var/datum/cause_data/antishiprailgun_cause_data = create_cause_data("Railgun shot") - var/hitchance = HIT_CHANCE_CHEAT - if(point_defense == TRUE) - hitchance = HIT_CHANCE_STANDARD - if(salvo == TRUE) - var/confirmedhit - for(var/turf/picked_atom in location) - if(prob(hitchance)) - cell_explosion(picked_atom, 600, 600, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, antishiprailgun_cause_data) - shakeship(5, 5, FALSE, FALSE) - confirmedhit += 1 - if(confirmedhit > 0) - weaponhits_effects(WEAPON_RAILGUN) - if(confirmedhit < 1) - weaponhits_effects(WEAPON_RAILGUN, TRUE) - - else if(salvo == FALSE) - if(prob(hitchance)) - cell_explosion(location, 600, 600, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, antishiprailgun_cause_data) - shakeship(5, 5, FALSE, FALSE) - weaponhits_effects(WEAPON_RAILGUN) - else - weaponhits_effects(WEAPON_RAILGUN, TRUE) - -/proc/weaponhits_effects(weaponused, weaponmiss = FALSE, shotspacing = 0) - switch(weaponused) - if(WEAPON_MISSILE) - if(!weaponmiss) - for(var/mob/living/carbon/current_mob in GLOB.living_mob_list) - if(!is_mainship_level(current_mob.z)) - continue - playsound_client(current_mob.client, 'sound/effects/metal_crash.ogg', 100 ) - playsound_client(current_mob.client, 'sound/effects/bigboom3.ogg', 100) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), current_mob.client, 'sound/effects/pry2.ogg', 20), 1 SECONDS) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), current_mob.client, 'sound/effects/double_klaxon.ogg'), 2 SECONDS) - else - for(var/mob/living/carbon/current_mob in GLOB.living_mob_list) - if(!is_mainship_level(current_mob.z)) - continue - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), current_mob.client, 'sound/effects/laser_point_defence_success.ogg', 100), shotspacing SECONDS) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), current_mob.client, SPAN_DANGER("You hear the Point Defense systems shooting down a missile!")), shotspacing SECONDS) - - if(WEAPON_RAILGUN) - if(!weaponmiss) - for(var/mob/living/carbon/current_mob in GLOB.living_mob_list) - if(!is_mainship_level(current_mob.z)) - continue - playsound_client(current_mob.client, 'sound/effects/bigboom3.ogg', 50) - playsound_client(current_mob.client, 'sound/effects/railgunhit.ogg', 50) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound_client), current_mob.client, 'sound/effects/double_klaxon.ogg'), 2 SECONDS) - else - for(var/mob/living/carbon/current_mob in GLOB.living_mob_list) - if(!is_mainship_level(current_mob.z)) - continue - playsound_client (current_mob.client, 'sound/effects/railgun_miss.ogg', 60) - to_chat(current_mob.client, SPAN_DANGER("You hear railgun shots barely missing the hull!")) -//REMOVE THIS WHEN WE USE THESE DEFS SOMEWHERE ELSE OR ELSE IT STRAIGHT UP WON'T WORK. -#undef WEAPON_MISSILE -#undef WEAPON_RAILGUN -#undef HIT_CHANCE_CHEAT -#undef HIT_CHANCE_STANDARD +/datum/space_weapon + var/name = "SMP" + var/list/possibly_ammunition = list() + //add some useful things here and make it object... later... skill issue. + +/datum/space_weapon/proc/on_shot(location, list/potential_ammo, intercept_chance, delay = 0) + var/intercepted = 0 + var/missed = 0 + var/hits = 0 + for(var/turf/picked_atom in location) + var/datum/space_weapon_ammo/ammo = GLOB.space_weapons_ammo[pick(potential_ammo)] + var/accuracy = rand(1, 100) + if(ammo.interceptable && intercept_chance > accuracy) + ammo.miss_target(picked_atom, TRUE) + intercepted++ + else if(ammo.base_miss_chance + intercept_chance > accuracy) + ammo.miss_target(picked_atom, FALSE) + missed++ + else + ammo.hit_target(picked_atom) + hits++ + sleep(delay) + shipwide_ai_announcement("WARNING, [hits] HIT SHIP HULL, [missed] MISSED AND [intercepted] INTERCEPTED!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') + +/datum/space_weapon/proc/shot_message(quantity, hit_eta) + return + +/datum/space_weapon/rail_gun + name = "Railgun" + possibly_ammunition = list( + /datum/space_weapon_ammo/rail_gun, + /datum/space_weapon_ammo/rail_gun/stronk, + ) + +/datum/space_weapon/rail_gun/shot_message(quantity, hit_eta) + shipwide_ai_announcement("DANGER: RAILGUN EMISSIONS DETECTED, INCOMING PROJECTILE[quantity > 1 ? "S" : ""]. BRACE, BRACE, BRACE. [quantity > 1 ? "SALVO SIZE: [quantity]," : ""] ESTIMATED TIME: [hit_eta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') + +/datum/space_weapon/rocket_launcher + name = "Rocket Launcher" + possibly_ammunition = list( + /datum/space_weapon_ammo/rocket_launcher, + /datum/space_weapon_ammo/rocket_launcher/swing_rockets, + ) + +/datum/space_weapon/rocket_launcher/shot_message(quantity, hit_eta) + shipwide_ai_announcement("DANGER: MISSILE WARNING, LAUNCH DETECTED. BRACE, BRACE, BRACE. [quantity > 1 ? "SALVO SIZE: [quantity]," : ""] ESTIMATED TIME: [hit_eta] SECONDS." , MAIN_AI_SYSTEM, 'sound/effects/missile_warning.ogg') + +/** + * Ammo datum for space weapons + */ +/datum/space_weapon_ammo + var/name = "SMP" + var/base_miss_chance = 25 + var/list/miss_sound = list() + var/list/intercept_sound = list() + var/list/hit_sound = list() + var/interceptable = TRUE + +/datum/space_weapon_ammo/proc/miss_target(picked_atom, intercepted) + return + +/datum/space_weapon_ammo/proc/hit_target(picked_atom) + return + +/datum/space_weapon_ammo/rail_gun + name = "Piercing Near-Lightning Railgun Projectile" + base_miss_chance = 35 + miss_sound = list('sound/effects/railgun_miss.ogg') + intercept_sound = list('sound/effects/laser_point_defence_success.ogg') + hit_sound = list('sound/effects/railgunhit.ogg') + +/datum/space_weapon_ammo/rail_gun/miss_target(picked_atom, intercepted) + var/list/echo_list = new /list(18) + echo_list[ECHO_OBSTRUCTION] = -2500 + if(intercepted) + playsound(picked_atom, pick(intercept_sound), 100, 1, 100, echo = echo_list) + else + playsound(picked_atom, pick(miss_sound), 5, 1, 100, echo = echo_list) + shipwide_ai_announcement("[capitalize(name)] [intercepted ? "INTERCEPTED" : "MISSED"]!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') + +/datum/space_weapon_ammo/rail_gun/hit_target(picked_atom) + var/list/echo_list = new /list(18) + echo_list[ECHO_OBSTRUCTION] = -500 + cell_explosion(picked_atom, 1000, 200, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, create_cause_data(name)) + shakeship(5, 5, FALSE, FALSE) + playsound(picked_atom, "bigboom", 50, 1, 200, echo = echo_list) + playsound(picked_atom, pick(hit_sound), 50, 1, 200, echo = echo_list) + shipwide_ai_announcement("WARNING, [capitalize(name)] HIT SHIP HULL, CAUSED MASSIVE DAMAGE!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') + +/datum/space_weapon_ammo/rail_gun/stronk + name = "Piercing Near-Lightning Railgun Projectile of Increased Strength" + base_miss_chance = 50 + interceptable = FALSE + +/datum/space_weapon_ammo/rocket_launcher + name = "Anti-Ship missile" + base_miss_chance = 15 + miss_sound = list('sound/effects/metal_shatter.ogg') + intercept_sound = list('sound/effects/laser_point_defence_success.ogg') + hit_sound = list('sound/effects/metal_crash.ogg') + +/datum/space_weapon_ammo/rocket_launcher/miss_target(picked_atom, intercepted) + var/list/echo_list = new(18) + echo_list[ECHO_OBSTRUCTION] = -2500 + if(intercepted) + playsound(picked_atom, pick(intercept_sound), 100, 1, 100, echo = echo_list) + else + playsound(picked_atom, pick(miss_sound), 5, 1, 100, echo = echo_list) + shipwide_ai_announcement("[capitalize(name)] [intercepted ? "INTERCEPTED" : "MISSED"]!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') + +/datum/space_weapon_ammo/rocket_launcher/hit_target(picked_atom) + var/list/echo_list = new(18) + echo_list[ECHO_OBSTRUCTION] = -500 + cell_explosion(picked_atom, 500, 10, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, create_cause_data(name)) + shakeship(5, 5, FALSE, FALSE) + playsound(picked_atom, "bigboom", 50, 1, 200, echo = echo_list) + playsound(picked_atom, pick(hit_sound), 50, 1, 200, echo = echo_list) + playsound(picked_atom, "pry", 25, 1, 200, echo = echo_list) + shipwide_ai_announcement("WARNING, [capitalize(name)] HIT SHIP HULL, CAUSED MASSIVE DAMAGE!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') + +/datum/space_weapon_ammo/rocket_launcher/swing_rockets + name = "Swing High Pierce Shreder Rockets" + base_miss_chance = 0 + +/datum/space_weapon_ammo/rocket_launcher/swing_rockets/hit_target(picked_atom) + var/list/echo_list = new /list(18) + echo_list[ECHO_OBSTRUCTION] = -500 + var/list/turf_list = list() + for(var/turf/turf in range(7, picked_atom)) + turf_list += turf + + playsound(picked_atom, "pry", 25, 1, 200, echo = echo_list) + playsound(picked_atom, pick(hit_sound), 50, 1, 200, echo = echo_list) + playsound(picked_atom, "bigboom", 50, 1, 200, echo = echo_list) + for(var/i = 1 to 12) + var/turf/turf = pick(turf_list) + cell_explosion(turf, 100, 10, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, create_cause_data(name)) + playsound(turf, "bigboom", 40, 1, 20, echo = echo_list) + shakeship(2, 2, FALSE, FALSE) + sleep(1) + + shipwide_ai_announcement("WARNING, [capitalize(name)] HIT SHIP HULL, CAUSED MASSIVE DOT DAMAGE!", MAIN_AI_SYSTEM, 'sound/effects/double_klaxon.ogg') diff --git a/code/modules/animations/animation_library.dm b/code/modules/animations/animation_library.dm index d4fd8feeaf..fabd7508b8 100644 --- a/code/modules/animations/animation_library.dm +++ b/code/modules/animations/animation_library.dm @@ -47,22 +47,22 @@ Instead of being uniform, it starts out a littler slower, goes fast in the middl animate(A, alpha = 175, pixel_x = 0, pixel_y = 0, pixel_z = 0, time = 3) //Flashes a color, then goes back to regular. -/proc/animation_flash_color(atom/A, flash_color = "#FF0000", speed = 3) //Flashes red on default. +/proc/animation_flash_color(atom/A, flash_color = COLOR_RED, speed = 3) //Flashes red on default. var/oldcolor = A.color animate(A, color = flash_color, time = speed, flags = ANIMATION_PARALLEL) animate(color = oldcolor, time = speed) /* fuck this, only halloween uses this -spookydonut //Gives it a spooky overlay and animation. Same as above, mostly, only adds a cool overlay effect. -/proc/animation_horror_flick(atom/A, flash_color = "#000000", speed = 4) +/proc/animation_horror_flick(atom/A, flash_color = COLOR_BLACK, speed = 4) animate(A, color = flash_color, time = speed) - animate(color = "#FFFFFF", time = speed) + animate(color = COLOR_WHITE, time = speed) var/image/I = image('icons/mob/mob.dmi',A,"spook") I.flick_overlay(A,7) /proc/animation_blood_spatter(atom/A, flash_color = "#8A0707", speed = 4) animate(A, color = flash_color, time = speed) - animate(color = "#FFFFFF", time = speed) + animate(color = COLOR_WHITE, time = speed) var/image/I = image('icons/mob/mob.dmi',A,"blood_spatter") if(prob(50)) I.transform = matrix(rand(0,45), MATRIX_ROTATE) @@ -91,13 +91,13 @@ Instead of being uniform, it starts out a littler slower, goes fast in the middl /proc/animation_teleport_quick_in(atom/A, speed = 10) A.transform = matrix(0, 4, MATRIX_SCALE) A.alpha = 0 //Start with transparency, just in case. - animate(A, alpha = 255, transform = null, color = "#FFFFFF", time = speed, easing = BACK_EASING) + animate(A, alpha = 255, transform = null, color = COLOR_WHITE, time = speed, easing = BACK_EASING) /*A magical teleport animation, for when the person is transported with some magic. Good for Halloween type events. Can look good elsewhere as well.*/ /*proc/animation_teleport_magic_out(atom/A, speed = 6) animate(A, transform = matrix(1.5, 0, MATRIX_SCALE), time = speed, easing = BACK_EASING) - animate(transform = matrix(0, 4, MATRIX_SCALE) * matrix(0, 6, MATRIX_TRANSLATE), color = "#FFFF00", time = speed, alpha = 100, easing = BOUNCE_EASING|EASE_IN) + animate(transform = matrix(0, 4, MATRIX_SCALE) * matrix(0, 6, MATRIX_TRANSLATE), color = COLOR_YELLOW, time = speed, alpha = 100, easing = BOUNCE_EASING|EASE_IN) animate(alpha = 0, time = speed) var/image/I = image('icons/effects/effects.dmi',A,"sparkle") I.flick_overlay(A,9) @@ -106,8 +106,8 @@ Can look good elsewhere as well.*/ /proc/animation_teleport_magic_in(atom/A, speed = 6) A.transform = matrix(0,3.5, MATRIX_SCALE) A.alpha = 0 - animate(A, alpha = 255, color = "#FFFF00", time = speed, easing = BACK_EASING) - animate(transform = matrix(1.5, 0, MATRIX_SCALE), color = "#FFFFFF", time = speed, easing = CIRCULAR_EASING|EASE_OUT) + animate(A, alpha = 255, color = COLOR_YELLOW, time = speed, easing = BACK_EASING) + animate(transform = matrix(1.5, 0, MATRIX_SCALE), color = COLOR_WHITE, time = speed, easing = CIRCULAR_EASING|EASE_OUT) animate(transform = null, time = speed-1) var/image/I = image('icons/effects/effects.dmi',A,"sparkle") I.flick_overlay(A,10) @@ -115,7 +115,7 @@ Can look good elsewhere as well.*/ //A spooky teleport for evil dolls, horrors, and whatever else. Halloween type stuff. /proc/animation_teleport_spooky_out(atom/A, speed = 6, sleep_duration = 0) animate(A, transform = matrix() * 1.5, color = "#551a8b", time = speed, easing = BACK_EASING) - animate(transform = matrix() * 0.2, alpha = 100, color = "#000000", time = speed, easing = BACK_EASING) + animate(transform = matrix() * 0.2, alpha = 100, color = COLOR_BLACK, time = speed, easing = BACK_EASING) animate(alpha = 0, time = speed) var/image/I = image('icons/effects/effects.dmi',A,"spooky") I.flick_overlay(A,9,RESET_COLOR|RESET_ALPHA|TILE_BOUND) @@ -125,7 +125,7 @@ Can look good elsewhere as well.*/ A.transform *= 1.2 A.alpha = 0 animate(A, alpha = 255, color = "#551a8b", time = speed) - animate(transform = null, color = "#FFFFFF", time = speed, easing = QUAD_EASING|EASE_OUT) + animate(transform = null, color = COLOR_WHITE, time = speed, easing = QUAD_EASING|EASE_OUT) var/image/I = image('icons/effects/effects.dmi',A,"spooky") I.flick_overlay(A,10)*/ @@ -135,7 +135,7 @@ Can look good elsewhere as well.*/ A.mouse_opacity = MOUSE_OPACITY_TRANSPARENT //We don't want them to click this while the animation is still playing. A.density = FALSE //So it doesn't block anything. var/i = 1 + (0.1 * rand(1,5)) - animate(A, transform = matrix() * i, color = "#808080", time = speed, easing = SINE_EASING) + animate(A, transform = matrix() * i, color = COLOR_GRAY, time = speed, easing = SINE_EASING) animate(alpha = 0, time = speed) return speed @@ -166,7 +166,7 @@ Can look good elsewhere as well.*/ animate(alpha = 100, matrix(rand(45,90) * pick(1,-1), MATRIX_ROTATE), time = speed) animate(pixel_x = x_o+rand(-x_n, x_n), pixel_y = y_o+rand(-y_n, y_n), time = speed, easing = ELASTIC_EASING|EASE_IN) animate(pixel_x = x_o, pixel_y = y_o, time = speed, easing = CIRCULAR_EASING|EASE_OUT) - animate(alpha = 0, color = "#808080", time = speed) + animate(alpha = 0, color = COLOR_GRAY, time = speed) var/image/I = image('icons/effects/effects.dmi',A,"red_particles") I.flick_overlay(A,25) return speed*9*/ @@ -181,7 +181,7 @@ Can look good elsewhere as well.*/ var/pixel_x_diff = 0 var/pixel_y_diff = 0 var/direction = get_dir(src, A) - pixel_offset = round(pixel_offset) // Just to be safe + pixel_offset = floor(pixel_offset) // Just to be safe switch(direction) if(NORTH) pixel_y_diff = pixel_offset diff --git a/code/modules/assembly/signaller.dm b/code/modules/assembly/signaller.dm index 4ac25854e8..3e01c357c1 100644 --- a/code/modules/assembly/signaller.dm +++ b/code/modules/assembly/signaller.dm @@ -74,7 +74,7 @@ switch(action) if("set_freq") - set_frequency(clamp(round(text2num(params["value"])), SIGNALLER_FREQ_MIN, SIGNALLER_FREQ_MAX)) + set_frequency(clamp(floor(text2num(params["value"])), SIGNALLER_FREQ_MIN, SIGNALLER_FREQ_MAX)) . = TRUE if("set_signal") diff --git a/code/modules/assembly/timer.dm b/code/modules/assembly/timer.dm index 0dd55dc532..3d6307640f 100644 --- a/code/modules/assembly/timer.dm +++ b/code/modules/assembly/timer.dm @@ -19,7 +19,7 @@ /obj/item/device/assembly/timer/activate() if(!..()) return 0//Cooldown check - time = clamp(round(time), TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) + time = clamp(floor(time), TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) timing = !timing if(timing) START_PROCESSING(SSobj, src) @@ -103,7 +103,7 @@ ui.set_autoupdate(timing) if(!timing) - time = clamp(round(time), TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) + time = clamp(floor(time), TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) STOP_PROCESSING(SSobj, src) else START_PROCESSING(SSobj, src) @@ -112,7 +112,7 @@ . = TRUE if("set_time") - time = clamp(round(text2num(params["time"])) SECONDS, TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) + time = clamp(floor(text2num(params["time"])) SECONDS, TIMER_MINIMUM_TIME, TIMER_MAXIMUM_TIME) . = TRUE /obj/item/device/assembly/timer/ui_data(mob/user) diff --git a/code/modules/asset_cache/asset_cache_client.dm b/code/modules/asset_cache/asset_cache_client.dm index f462fe386b..cb204c6781 100644 --- a/code/modules/asset_cache/asset_cache_client.dm +++ b/code/modules/asset_cache/asset_cache_client.dm @@ -1,7 +1,7 @@ /// Process asset cache client topic calls for "asset_cache_confirm_arrival=[INT]" /client/proc/asset_cache_confirm_arrival(job_id) - var/asset_cache_job = round(text2num(job_id)) + var/asset_cache_job = floor(text2num(job_id)) //because we skip the limiter, we have to make sure this is a valid arrival and not somebody tricking us into letting them append to a list without limit. if (asset_cache_job > 0 && asset_cache_job <= last_asset_job && !(completed_asset_jobs["[asset_cache_job]"])) completed_asset_jobs["[asset_cache_job]"] = TRUE diff --git a/code/modules/asset_cache/asset_list.dm b/code/modules/asset_cache/asset_list.dm index b887cff60c..828472ad95 100644 --- a/code/modules/asset_cache/asset_list.dm +++ b/code/modules/asset_cache/asset_list.dm @@ -168,7 +168,7 @@ GLOBAL_LIST_EMPTY(asset_datums) var/icon/big = size[SPRSZ_STRIPPED] var/per_line = big.Width() / tiny.Width() var/x = (idx % per_line) * tiny.Width() - var/y = round(idx / per_line) * tiny.Height() + var/y = floor(idx / per_line) * tiny.Height() out += ".[name][size_id].[sprite_id]{background-position:-[x]px -[y]px;}" @@ -203,7 +203,7 @@ GLOBAL_LIST_EMPTY(asset_datums) for (var/icon_state_name in icon_states(I)) for (var/direction in directions) - var/prefix2 = (directions.len > 1) ? "[dir2text(direction)]-" : "" + var/prefix2 = (length(directions) > 1) ? "[dir2text(direction)]-" : "" Insert("[prefix][prefix2][icon_state_name]", I, icon_state=icon_state_name, dir=direction) /datum/asset/spritesheet/proc/css_tag() @@ -260,7 +260,7 @@ GLOBAL_LIST_EMPTY(asset_datums) if (!asset) continue asset = fcopy_rsc(asset) //dedupe - var/prefix2 = (directions.len > 1) ? "[dir2text(direction)]." : "" + var/prefix2 = (length(directions) > 1) ? "[dir2text(direction)]." : "" var/asset_name = sanitize_filename("[prefix].[prefix2][icon_state_name].png") if (generic_icon_names) asset_name = "[generate_asset_name(asset)].png" @@ -362,3 +362,4 @@ GLOBAL_LIST_EMPTY(asset_datums) "inventory-pocket.png" = 'icons/ui_Icons/inventory/pocket.png', "inventory-collar.png" = 'icons/ui_Icons/inventory/collar.png', ) + diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index 7c294da311..cc033e53a6 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -263,7 +263,7 @@ list("RTO", "hudsquad_rto"), ) - for(var/datum/squad/marine/squad in RoleAuthority.squads) + for(var/datum/squad/marine/squad in GLOB.RoleAuthority.squads) var/color = squad.equipment_color for(var/iref in icon_data) var/list/iconref = iref @@ -282,45 +282,50 @@ name = "vending" /datum/asset/spritesheet/vending_products/register() - for(var/k in GLOB.vending_products) - var/atom/item = k + for (var/current_product in GLOB.vending_products) + var/atom/item = current_product var/icon_file = initial(item.icon) var/icon_state = initial(item.icon_state) - var/icon/I + var/icon/new_icon if(!ispath(item, /atom)) log_debug("not atom! [item]") continue - var/imgid = replacetext(replacetext("[k]", "/obj/item/", ""), "/", "-") + var/imgid = replacetext(replacetext("[current_product]", "/obj/item/", ""), "/", "-") if(sprites[imgid]) - stack_trace("[imgid] has already been registered in vending products spritesheet!") continue if(icon_state in icon_states(icon_file)) - I = icon(icon_file, icon_state, SOUTH) - var/c = initial(item.color) - if (!isnull(c) && c != "#FFFFFF") - I.Blend(c, ICON_MULTIPLY) + if(ispath(current_product, /obj/item/storage/box) || ispath(current_product, /obj/item/ammo_box) || ispath(current_product, /obj/item/reagent_container)) + item = new current_product() + new_icon = getFlatIcon(item) + new_icon.Scale(32,32) + qdel(item) + else + new_icon = icon(icon_file, icon_state, SOUTH) + var/new_color = initial(item.color) + if (!isnull(new_color) && new_color != "#FFFFFF") + new_icon.Blend(new_color, ICON_MULTIPLY) else - if (ispath(k, /obj/effect/essentials_set)) - var/obj/effect/essentials_set/es_set = new k() - var/list/spawned_list = es_set.spawned_gear_list + if(ispath(current_product, /obj/effect/essentials_set)) + var/obj/effect/essentials_set/essentials = new current_product() + var/list/spawned_list = essentials.spawned_gear_list if(LAZYLEN(spawned_list)) var/obj/item/target = spawned_list[1] icon_file = initial(target.icon) icon_state = initial(target.icon_state) var/target_obj = new target() - I = getFlatIcon(target_obj) - I.Scale(32,32) + new_icon = getFlatIcon(target_obj) + new_icon.Scale(32,32) qdel(target_obj) else - item = new k() - I = icon(item.icon, item.icon_state, SOUTH) + item = new current_product() + new_icon = icon(item.icon, item.icon_state, SOUTH) qdel(item) - Insert(imgid, I) + Insert(imgid, new_icon) return ..() @@ -356,6 +361,26 @@ Insert("[icon_name]_big", iconBig) return ..() +/datum/asset/spritesheet/tutorial + name = "tutorial" + +/datum/asset/spritesheet/tutorial/register() + for(var/icon_state in icon_states('icons/misc/tutorial.dmi')) + var/icon/icon_sprite = icon('icons/misc/tutorial.dmi', icon_state) + icon_sprite.Scale(128, 128) + Insert(icon_state, icon_sprite) + + var/icon/retrieved_icon = icon('icons/mob/hud/human_dark.dmi', "intent_all") + retrieved_icon.Scale(128, 128) + Insert("intents", retrieved_icon) + + retrieved_icon = icon('icons/mob/xenos/predalien.dmi', "Normal Predalien Walking") + retrieved_icon.Scale(128, 128) + Insert("predalien", retrieved_icon) + + return ..() + + /datum/asset/spritesheet/gun_lineart name = "gunlineart" @@ -372,8 +397,8 @@ var/icon_state = temp_gun.base_gun_icon // base_gun_icon is set in Initialize generally qdel(temp_gun) if(icon_state && isnull(sprites[icon_state])) - // upgrade this to a stack_trace once all guns have a lineart and we want to lint against that - log_debug("[current_gun] does not have a valid lineart icon state, icon=[icon_file], icon_state=[json_encode(icon_state)]") + // downgrade this to a log_debug if we don't want missing lineart to be a lint + stack_trace("[current_gun] does not have a valid lineart icon state, icon=[icon_file], icon_state=[json_encode(icon_state)]") ..() diff --git a/code/modules/asset_cache/assets/medals.dm b/code/modules/asset_cache/assets/medals.dm new file mode 100644 index 0000000000..1d7214331e --- /dev/null +++ b/code/modules/asset_cache/assets/medals.dm @@ -0,0 +1,10 @@ +/datum/asset/spritesheet/medal + name = "medal" + +/datum/asset/spritesheet/medal/register() + for(var/obj/item/clothing/accessory/medal/medal as anything in subtypesof(/obj/item/clothing/accessory/medal)) + var/icon/current_icon = icon(initial(medal.icon), initial(medal.icon_state), SOUTH) + var/imgid = replacetext("[initial(medal.name)]", " ", "-") + + Insert(imgid, current_icon) + return ..() diff --git a/code/modules/asset_cache/transports/asset_transport.dm b/code/modules/asset_cache/transports/asset_transport.dm index 2e165229f1..3db4f0f332 100644 --- a/code/modules/asset_cache/transports/asset_transport.dm +++ b/code/modules/asset_cache/transports/asset_transport.dm @@ -113,8 +113,8 @@ continue unreceived[asset_name] = ACI - if (unreceived.len) - if (unreceived.len >= ASSET_CACHE_TELL_CLIENT_AMOUNT) + if (length(unreceived)) + if (length(unreceived) >= ASSET_CACHE_TELL_CLIENT_AMOUNT) to_chat(client, "Sending Resources...") for (var/asset_name in unreceived) diff --git a/code/modules/autowiki/autowiki.dm b/code/modules/autowiki/autowiki.dm index 8b38ec7670..0b0d1212dd 100644 --- a/code/modules/autowiki/autowiki.dm +++ b/code/modules/autowiki/autowiki.dm @@ -23,6 +23,26 @@ for (var/datum/autowiki/autowiki_type as anything in subtypesof(/datum/autowiki)) var/datum/autowiki/autowiki = new autowiki_type + + if(autowiki.generate_multiple) + var/output = autowiki.generate_multiple() + + if (!islist(output)) + CRASH("[autowiki_type] does not generate a proper output when generate_multiple is set!") + + for(var/list in output) + total_output += json_encode(list) + "\n" + + if(!autowiki.page) + continue + + var/list/all_page_names = list() + for(var/list in output) + all_page_names += autowiki.include_template(list["title"]) + + total_output += json_encode(list("title" = autowiki.page, "text" = all_page_names.Join(" "))) + "\n" + continue + var/output = autowiki.generate() if (!istext(output)) diff --git a/code/modules/autowiki/pages/_page.dm b/code/modules/autowiki/pages/_page.dm index 8e745ace61..7bd7b6dcf4 100644 --- a/code/modules/autowiki/pages/_page.dm +++ b/code/modules/autowiki/pages/_page.dm @@ -6,12 +6,20 @@ /// For example: "Template:Autowiki/CircuitInfo". var/page + /// If the generation of this autowiki should call /generate_multiple(), + /// which should return a list of list(title = "Page Title", contents) + /// allowing for the generation of multiple pages in the same autowiki + var/generate_multiple = FALSE + /// Override and return the new text of the page. /// This proc can be impure, usually to call `upload_file`. /datum/autowiki/proc/generate() SHOULD_CALL_PARENT(FALSE) CRASH("[type] does not implement generate()!") +/datum/autowiki/proc/generate_multiple() + SHOULD_CALL_PARENT(FALSE) + /// Generates an auto formatted template user. /// Your autowiki should ideally be a *lot* of these. /// It lets wiki editors edit it much easier later, without having to enter repo. @@ -19,6 +27,7 @@ /// something that looks like `{{ Autowiki_Circuit|name=Combiner|description=This combines }}` /// Lists, which must be array-like (no keys), will be turned into a flat list with their key and a number, /// such that list("food" = list("fruit", "candy")) -> food1=fruit|food2=candy +/// Your page should respect AUTOWIKI_SKIP, and check for this using IS_AUTOWIKI_SKIP /datum/autowiki/proc/include_template(name, parameters) var/template_text = "{{[name]" diff --git a/code/modules/autowiki/pages/guns.dm b/code/modules/autowiki/pages/guns.dm index 7f63602d56..4c276fb91b 100644 --- a/code/modules/autowiki/pages/guns.dm +++ b/code/modules/autowiki/pages/guns.dm @@ -1,9 +1,10 @@ /datum/autowiki/guns + generate_multiple = TRUE page = "Template:Autowiki/Content/GunData" -/datum/autowiki/guns/generate() - var/output = "" +/datum/autowiki/guns/generate_multiple() + var/output = list() var/list/gun_to_ammo = list() @@ -12,12 +13,20 @@ continue // Skip mags with no icon_state (e.g. base types) LAZYADD(gun_to_ammo[initial(typepath.gun_type)], typepath) - for(var/typepath in sort_list(subtypesof(/obj/item/weapon/gun), GLOBAL_PROC_REF(cmp_typepaths_asc))) + var/list/unique_typepaths = list() + for(var/obj/item/weapon/gun/typepath as anything in sort_list(subtypesof(/obj/item/weapon/gun), GLOBAL_PROC_REF(cmp_typepaths_name_asc))) + if(initial(typepath.name) in unique_typepaths) + continue + + unique_typepaths[initial(typepath.name)] = typepath + + for(var/name in unique_typepaths) + var/typepath = unique_typepaths[name] + var/obj/item/weapon/gun/generating_gun = typepath if(isnull(initial(generating_gun.icon_state))) continue // Skip guns with no icon_state (e.g. base types) - - generating_gun = new typepath() + generating_gun = new typepath var/filename = SANITIZE_FILENAME(escape_value(format_text(generating_gun.name))) var/list/gun_data = generating_gun.ui_data() @@ -33,6 +42,9 @@ for(var/ammo_typepath in valid_mag_types) var/obj/item/ammo_magazine/generating_mag = new ammo_typepath() + if(IS_AUTOWIKI_SKIP(generating_mag)) + continue + var/ammo_filename = SANITIZE_FILENAME(escape_value(format_text(generating_mag.name))) if(!fexists("data/autowiki_files/[ammo_filename].png")) @@ -52,6 +64,8 @@ )) generating_gun.current_mag = generating_mag + generating_gun.ammo = current_ammo + generating_gun.in_chamber = null var/list/gun_ammo_data = generating_gun.ui_data() var/list/armor_data = list() @@ -59,18 +73,63 @@ var/iterator = 1 for(var/header in gun_ammo_data["damage_armor_profile_headers"]) var/damage = gun_ammo_data["damage_armor_profile_marine"][iterator] + if(!damage) + break armor_data["armor-[header]"] = damage iterator++ var/list/damage = list("ammo_name" = escape_value(generating_mag.name)) - damage += armor_data + if(length(armor_data)) + damage += armor_data damage_table += include_template("Autowiki/DamageVersusArmorRow", damage) qdel(generating_mag) + var/grenades = "" + if(istype(generating_gun, /obj/item/weapon/gun/launcher/grenade)) + var/obj/item/weapon/gun/launcher/grenade/generating_launcher = generating_gun + + var/list/permitted_grenades = list() + for(var/obj/item/explosive/grenade/type as anything in generating_launcher.valid_munitions) + permitted_grenades |= subtypesof(type) + + var/list/unique_grenades = list() + var/list/unique_grenade_names = list() + for(var/obj/item/explosive/grenade/grenade_type as anything in permitted_grenades) + if(initial(grenade_type.name) in unique_grenade_names) + continue + unique_grenade_names += initial(grenade_type.name) + unique_grenades += grenade_type + + var/list/denied_grenades = list() + for(var/type in generating_launcher.disallowed_grenade_types) + denied_grenades |= typesof(type) + + var/valid_grenades = unique_grenades.Copy() - denied_grenades.Copy() + + for(var/grenade_path in valid_grenades) + var/obj/item/explosive/grenade/generating_grenade = new grenade_path() + + if(IS_AUTOWIKI_SKIP(generating_grenade)) + continue + + var/grenade_filename = SANITIZE_FILENAME(escape_value(format_text(generating_grenade.name))) + + if(!fexists("data/autowiki_files/[grenade_filename].png")) + upload_icon(getFlatIcon(generating_grenade, no_anim = TRUE), grenade_filename) + + grenades += include_template("Autowiki/Grenade", list( + "icon" = escape_value(grenade_filename), + "name" = escape_value(generating_grenade.name), + "description" = escape_value(generating_grenade.desc) + )) + + qdel(generating_grenade) + gun_data["ammo_types"] = ammo gun_data["damage_table"] = damage_table + gun_data["grenades"] = grenades var/list/attachments_by_slot = list() for(var/obj/item/attachable/attachment_typepath as anything in generating_gun.attachable_allowed) @@ -108,7 +167,9 @@ upload_icon(generated_icon, filename) gun_data["icon"] = filename - output += include_template("Autowiki/Gun", gun_data) + var/page_name = SANITIZE_FILENAME(replacetext(strip_improper(generating_gun.name), " ", "_")) + var/to_add = list(title = "Template:Autowiki/Content/Gun/[page_name]", text = include_template("Autowiki/Gun", gun_data)) + output += list(to_add) qdel(generating_gun) diff --git a/code/modules/autowiki/pages/xeno_stats.dm b/code/modules/autowiki/pages/xeno_stats.dm new file mode 100644 index 0000000000..720f4fe048 --- /dev/null +++ b/code/modules/autowiki/pages/xeno_stats.dm @@ -0,0 +1,54 @@ +/datum/autowiki/xeno_stats + generate_multiple = TRUE + page = "Template:Autowiki/Content/XenoStats" + +/datum/autowiki/xeno_stats/generate_multiple() + var/output = list() + + for(var/mob/living/carbon/xenomorph/xeno as anything in subtypesof(/mob/living/carbon/xenomorph)) + if(IS_AUTOWIKI_SKIP(xeno)) + continue + + var/mob/living/carbon/xenomorph/xeno_instance = new xeno() + + var/strains = list(null) + xeno_instance.caste.available_strains + for(var/datum/xeno_strain/strain as anything in strains) + var/datum/xeno_strain/strain_instance = null + if(!isnull(strain)) + strain_instance = new strain() + + output += template_from_xeno(xeno_instance, strain_instance) + + qdel(strain_instance) + + qdel(xeno_instance) + + return output + +/datum/autowiki/xeno_stats/proc/template_from_xeno(mob/living/carbon/xenomorph/xeno, datum/xeno_strain/strain) + var/name = xeno.caste_type + if(!isnull(strain)) + strain.apply_strain(xeno) + name = "[strain.name] [name]" + + var/xeno_data = list( + "name" = name, + "health" = xeno.maxHealth, + "armor" = xeno.armor_deflection, + "plasma" = xeno.plasma_max, + "plasma_regeneration" = xeno.plasma_gain, + "minimum_slash_damage" = xeno.melee_damage_lower, + "maximum_slash_damage" = xeno.melee_damage_upper, + "claw_strength" = xeno.claw_type, + "evasion" = xeno.evasion, + // Mob speed is relatively non-obvious, we we convert it into a very intuitive + // range for wiki-readability. + "speed" = humanize_speed(xeno.speed), + "explosion_resistance" = xeno.caste.xeno_explosion_resistance, + ) + + var/sanitized_name = url_encode(replacetext(name, " ", "_")) + return list(list(title = "Template:Autowiki/Content/XenoStats/[sanitized_name]", text = include_template("Autowiki/XenoStats", xeno_data))) + +/datum/autowiki/xeno_stats/proc/humanize_speed(speed) + return speed * -1 + 1 diff --git a/code/modules/buildmode/buildmode.dm b/code/modules/buildmode/buildmode.dm index eeab65ec03..4b6d84a5ae 100644 --- a/code/modules/buildmode/buildmode.dm +++ b/code/modules/buildmode/buildmode.dm @@ -80,7 +80,7 @@ var/pos_idx = 0 for(var/thing in elements) var/x = pos_idx % switch_width - var/y = FLOOR(pos_idx / switch_width, 1) + var/y = floor(pos_idx / switch_width) var/atom/movable/screen/buildmode/B = new buttontype(src, thing) // extra .5 for a nice offset look B.screen_loc = "NORTH-[(1 + 0.5 + y*1.5)],WEST+[0.5 + x*1.5]" diff --git a/code/modules/buildmode/submodes/area_edit.dm b/code/modules/buildmode/submodes/area_edit.dm index 3c2a07c687..57b82e30fd 100644 --- a/code/modules/buildmode/submodes/area_edit.dm +++ b/code/modules/buildmode/submodes/area_edit.dm @@ -66,7 +66,7 @@ var/choice = alert("Are you sure you want to fill area?", "Area Fill Confirmation", "Yes", "No") if(choice != "Yes") return - for(var/turf/T in block(get_turf(cornerA),get_turf(cornerB))) + for(var/turf/T as anything in block(get_turf(cornerA),get_turf(cornerB))) storedarea.contents.Add(T) log_admin("Build Mode: [key_name(c)] set the area of the region from [AREACOORD(cornerA)] through [AREACOORD(cornerB)] to [storedarea].") diff --git a/code/modules/buildmode/submodes/fill.dm b/code/modules/buildmode/submodes/fill.dm index 59142e7126..52212a9c57 100644 --- a/code/modules/buildmode/submodes/fill.dm +++ b/code/modules/buildmode/submodes/fill.dm @@ -49,8 +49,7 @@ if(LAZYACCESS(modifiers, LEFT_CLICK)) //rectangular if(LAZYACCESS(modifiers, CTRL_CLICK)) var/list/deletion_area = block(get_turf(cornerA),get_turf(cornerB)) - for(var/deleted_turfs in deletion_area) - var/turf/T = deleted_turfs + for(var/turf/T as anything in deletion_area) for(var/atom/movable/AM in T) qdel(AM) T.ScrapeAway(INFINITY, CHANGETURF_DEFER_CHANGE) @@ -59,7 +58,7 @@ var/choice = alert("Your selected area is [selection_size] tiles! Continue?", "Large Fill Confirmation", CONFIRM_YES, CONFIRM_NO) if(choice != CONFIRM_YES) return - for(var/turf/T in block(get_turf(cornerA),get_turf(cornerB))) + for(var/turf/T as anything in deletion_area) if(ispath(objholder,/turf)) T = T.ChangeTurf(objholder) T.setDir(BM.build_dir) diff --git a/code/modules/buildmode/submodes/variable_edit.dm b/code/modules/buildmode/submodes/variable_edit.dm index da4620b157..7517012583 100644 --- a/code/modules/buildmode/submodes/variable_edit.dm +++ b/code/modules/buildmode/submodes/variable_edit.dm @@ -44,7 +44,7 @@ if(TYPE_OBJ_REFERENCE) selected_value = input(usr,"Enter variable value:" ,"Value") as obj in world if(TYPE_TURF_REFERENCE) - selected_value = input(usr,"Enter variable value:" ,"Value") as turf in turfs + selected_value = input(usr,"Enter variable value:" ,"Value") as turf in GLOB.turfs #undef TYPE_TEXT #undef TYPE_NUMBER diff --git a/code/modules/character_traits/biology_traits.dm b/code/modules/character_traits/biology_traits.dm index efd894fe20..5bdb67cc54 100644 --- a/code/modules/character_traits/biology_traits.dm +++ b/code/modules/character_traits/biology_traits.dm @@ -49,13 +49,13 @@ var/string_paygrade = preset.load_rank(target) var/datum/paygrade/paygrade_datum = GLOB.paygrades[string_paygrade] if(paygrade_datum?.ranking > maximum_ranking) - to_chat(target, SPAN_WARNING("Your paygrade is too high for you to be able to recieve the lisping trait.")) + to_chat(target, SPAN_WARNING("Your paygrade is too high for you to be able to receive the lisping trait.")) return if(target.job in inapplicable_roles) - to_chat(target, SPAN_WARNING("Your office is too high for you to be able to recieve the lisping trait.")) + to_chat(target, SPAN_WARNING("Your office is too high for you to be able to receive the lisping trait.")) return if(target.species.group in inapplicable_species) - to_chat(target, SPAN_WARNING("Your species is too sophisticated for you be able to recieve the lisping trait.")) + to_chat(target, SPAN_WARNING("Your species is too sophisticated for you be able to receive the lisping trait.")) return ADD_TRAIT(target, TRAIT_LISPING, ROUNDSTART_TRAIT) @@ -82,17 +82,17 @@ /datum/character_trait/biology/bad_leg/New() . = ..() // Not on definition as several lists are added - inapplicable_roles = list(JOB_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_CREWMAN, JOB_INTEL, JOB_ORDNANCE_TECH, JOB_MARINE) + JOB_SQUAD_ROLES_LIST + JOB_MARINE_RAIDER_ROLES_LIST + JOB_ERT_GRUNT_LIST + inapplicable_roles = list(JOB_CAS_PILOT, JOB_DROPSHIP_PILOT, JOB_DROPSHIP_CREW_CHIEF, JOB_TANK_CREW, JOB_INTEL, JOB_ORDNANCE_TECH, JOB_MARINE) + JOB_SQUAD_ROLES_LIST + JOB_MARINE_RAIDER_ROLES_LIST + JOB_ERT_GRUNT_LIST bad_cane_roles = list(JOB_SURVIVOR, JOB_STOWAWAY) fancy_cane_roles = list(JOB_CO_SURVIVOR, CORPORATE_SURVIVOR, JOB_CMO, JOB_CORPORATE_LIAISON, JOB_SEA, JOB_CHIEF_ENGINEER) + JOB_COMMAND_ROLES_LIST inapplicable_species = list(SPECIES_SYNTHETIC, SPECIES_YAUTJA) /datum/character_trait/biology/bad_leg/apply_trait(mob/living/carbon/human/target, datum/equipment_preset/preset) if(target.job in inapplicable_roles) - to_chat(target, SPAN_WARNING("Your office is too combat-geared for you to be able to recieve the bad leg trait.")) + to_chat(target, SPAN_WARNING("Your office is too combat-geared for you to be able to receive the bad leg trait.")) return if(target.species.group in inapplicable_species) - to_chat(target, SPAN_WARNING("Your species is too sophisticated for you be able to recieve the bad leg trait.")) + to_chat(target, SPAN_WARNING("Your species is too sophisticated for you be able to receive the bad leg trait.")) return target.AddComponent(/datum/component/bad_leg) @@ -130,3 +130,17 @@ /datum/character_trait/biology/hardcore/unapply_trait(mob/living/carbon/human/target) REMOVE_TRAIT(target, TRAIT_HARDCORE, ROUNDSTART_TRAIT) ..() + +/datum/character_trait/biology/iron_teeth + trait_name = "Iron Teeth" + trait_desc = "You've got iron teeth or really good dental insurance. Items in your face slot won't fall out when you go down." + applyable = TRUE + cost = 1 + +/datum/character_trait/biology/iron_teeth/apply_trait(mob/living/carbon/human/target, datum/equipment_preset/preset) + ADD_TRAIT(target, TRAIT_IRON_TEETH, ROUNDSTART_TRAIT) + ..() + +/datum/character_trait/biology/iron_teeth/unapply_trait(mob/living/carbon/human/target) + REMOVE_TRAIT(target, TRAIT_IRON_TEETH, ROUNDSTART_TRAIT) + ..() diff --git a/code/modules/clans/client.dm b/code/modules/clans/client.dm index cdb70ffd27..b31a2c06f9 100644 --- a/code/modules/clans/client.dm +++ b/code/modules/clans/client.dm @@ -5,12 +5,12 @@ set waitfor = FALSE . = ..() - if(RoleAuthority && (RoleAuthority.roles_whitelist[ckey] & WHITELIST_PREDATOR)) + if(GLOB.RoleAuthority && check_whitelist_status(WHITELIST_PREDATOR)) clan_info = GET_CLAN_PLAYER(player.id) clan_info.sync() - if(RoleAuthority.roles_whitelist[ckey] & WHITELIST_YAUTJA_LEADER) - clan_info.clan_rank = clan_ranks_ordered[CLAN_RANK_ADMIN] + if(check_whitelist_status(WHITELIST_YAUTJA_LEADER)) + clan_info.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_ADMIN] clan_info.permissions |= CLAN_PERMISSION_ALL else clan_info.permissions &= ~CLAN_PERMISSION_ADMIN_MANAGER // Only the leader can manage the ancients @@ -145,7 +145,7 @@ player_move_clans = (clan_info.permissions & CLAN_PERMISSION_ADMIN_MOVE) ) - var/list/clan_members[CPV.len] + var/list/clan_members[length(CPV)] var/index = 1 for(var/datum/view_record/clan_playerbase_view/CP in CPV) @@ -157,7 +157,7 @@ var/list/player = list( player_id = CP.player_id, name = CP.ckey, - rank = clan_ranks[CP.clan_rank], // rank_to_give not used here, because we need to get their visual rank, not their position + rank = GLOB.clan_ranks[CP.clan_rank], // rank_to_give not used here, because we need to get their visual rank, not their position rank_pos = rank_to_give, honor = (CP.honor? CP.honor : 0) ) @@ -166,7 +166,7 @@ data["clan_keys"] = clan_members - var/datum/nanoui/ui = nanomanager.try_update_ui(mob, mob, "clan_status_ui", null, data) + var/datum/nanoui/ui = SSnano.nanomanager.try_update_ui(mob, mob, "clan_status_ui", null, data) if(!ui) ui = new(mob, mob, "clan_status_ui", "clan_menu.tmpl", "Clan Menu", 550, 500) ui.set_initial_data(data) @@ -295,8 +295,8 @@ pl.sync() pl.clan_id = null - pl.permissions = clan_ranks[CLAN_RANK_UNBLOODED].permissions - pl.clan_rank = clan_ranks_ordered[CLAN_RANK_UNBLOODED] + pl.permissions = GLOB.clan_ranks[CLAN_RANK_UNBLOODED].permissions + pl.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_UNBLOODED] pl.save() @@ -361,7 +361,7 @@ for(var/datum/view_record/clan_view/CV in CPV) clans += list("[CV.name]" = CV.clan_id) - if(is_clan_manager && clans.len >= 1) + if(is_clan_manager && length(clans) >= 1) if(target.permissions & CLAN_PERMISSION_ADMIN_ANCIENT) clans += list("Remove from Ancient") else @@ -377,16 +377,16 @@ if(input == "Remove from clan" && target.clan_id) target.clan_id = null - target.clan_rank = clan_ranks_ordered[CLAN_RANK_YOUNG] + target.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_YOUNG] to_chat(src, SPAN_NOTICE("Removed [player_name] from their clan.")) message_admins("[key_name_admin(src)] has removed [player_name] from their current clan.") else if(input == "Remove from Ancient") - target.clan_rank = clan_ranks_ordered[CLAN_RANK_YOUNG] - target.permissions = clan_ranks[CLAN_RANK_YOUNG].permissions + target.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_YOUNG] + target.permissions = GLOB.clan_ranks[CLAN_RANK_YOUNG].permissions to_chat(src, SPAN_NOTICE("Removed [player_name] from ancient.")) message_admins("[key_name_admin(src)] has removed [player_name] from ancient.") else if(input == "Make Ancient" && is_clan_manager) - target.clan_rank = clan_ranks_ordered[CLAN_RANK_ADMIN] + target.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_ADMIN] target.permissions = CLAN_PERMISSION_ADMIN_ANCIENT to_chat(src, SPAN_NOTICE("Made [player_name] an ancient.")) message_admins("[key_name_admin(src)] has made [player_name] an ancient.") @@ -397,15 +397,15 @@ target.clan_id = clans[input] if(!(target.permissions & CLAN_PERMISSION_ADMIN_ANCIENT)) - target.permissions = clan_ranks[CLAN_RANK_BLOODED].permissions - target.clan_rank = clan_ranks_ordered[CLAN_RANK_BLOODED] + target.permissions = GLOB.clan_ranks[CLAN_RANK_BLOODED].permissions + target.clan_rank = GLOB.clan_ranks_ordered[CLAN_RANK_BLOODED] if(CLAN_ACTION_PLAYER_MODIFYRANK) if(!target.clan_id) to_chat(src, SPAN_WARNING("This player doesn't belong to a clan!")) return - var/list/datum/yautja_rank/ranks = clan_ranks.Copy() + var/list/datum/yautja_rank/ranks = GLOB.clan_ranks.Copy() ranks -= CLAN_RANK_ADMIN // Admin rank should not and cannot be obtained from here var/datum/yautja_rank/chosen_rank @@ -430,8 +430,8 @@ chosen_rank = ranks[input] if(chosen_rank.limit_type) - var/list/datum/view_record/clan_playerbase_view/CPV = DB_VIEW(/datum/view_record/clan_playerbase_view/, DB_AND(DB_COMP("clan_id", DB_EQUALS, target.clan_id), DB_COMP("rank", DB_EQUALS, clan_ranks_ordered[input]))) - var/players_in_rank = CPV.len + var/list/datum/view_record/clan_playerbase_view/CPV = DB_VIEW(/datum/view_record/clan_playerbase_view/, DB_AND(DB_COMP("clan_id", DB_EQUALS, target.clan_id), DB_COMP("rank", DB_EQUALS, GLOB.clan_ranks_ordered[input]))) + var/players_in_rank = length(CPV) switch(chosen_rank.limit_type) if(CLAN_LIMIT_NUMBER) @@ -440,7 +440,7 @@ return if(CLAN_LIMIT_SIZE) var/list/datum/view_record/clan_playerbase_view/clan_players = DB_VIEW(/datum/view_record/clan_playerbase_view/, DB_COMP("clan_id", DB_EQUALS, target.clan_id)) - var/available_slots = Ceiling(clan_players.len / chosen_rank.limit) + var/available_slots = ceil(length(clan_players) / chosen_rank.limit) if(players_in_rank >= available_slots) to_chat(src, SPAN_DANGER("This slot is full! (Maximum of [chosen_rank.limit] per player in the clan, currently [available_slots])")) @@ -453,7 +453,7 @@ if(!has_clan_permission(chosen_rank.permission_required)) // Double check return - target.clan_rank = clan_ranks_ordered[chosen_rank.name] + target.clan_rank = GLOB.clan_ranks_ordered[chosen_rank.name] target.permissions = chosen_rank.permissions message_admins("[key_name_admin(src)] has set the rank of [player_name] to [chosen_rank.name] for their clan.") to_chat(src, SPAN_NOTICE("Set [player_name]'s rank to [chosen_rank.name]")) diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm index 8456b92463..5bc91dc699 100644 --- a/code/modules/client/client_procs.dm +++ b/code/modules/client/client_procs.dm @@ -43,6 +43,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( /client/proc/toggle_auto_eject_to_hand, /client/proc/toggle_eject_to_hand, /client/proc/toggle_automatic_punctuation, + /client/proc/toggle_ammo_display_type, /client/proc/toggle_middle_mouse_click, /client/proc/toggle_ability_deactivation, /client/proc/toggle_clickdrag_override, @@ -53,6 +54,8 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( /client/proc/toggle_admin_sound_types, /client/proc/receive_random_tip, /client/proc/set_eye_blur_type, + /client/proc/set_flash_type, + /client/proc/set_crit_type, )) /client/proc/reduce_minute_count() @@ -185,39 +188,21 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( var/datum/entity/player/P = get_player_from_key(key) P.add_note(add, FALSE, NOTE_MERIT) - if(href_list["add_wl_info_1"]) - var/key = href_list["add_wl_info_1"] - var/add = input("Add Commander Note") as null|message + if(href_list["add_wl_info"]) + var/key = href_list["add_wl_info"] + var/add = input("Add Whitelist Note") as null|message if(!add) return var/datum/entity/player/P = get_player_from_key(key) - P.add_note(add, FALSE, NOTE_COMMANDER) - - if(href_list["add_wl_info_2"]) - var/key = href_list["add_wl_info_2"] - var/add = input("Add Synthetic Note") as null|message - if(!add) - return - - var/datum/entity/player/P = get_player_from_key(key) - P.add_note(add, FALSE, NOTE_SYNTHETIC) - - if(href_list["add_wl_info_3"]) - var/key = href_list["add_wl_info_3"] - var/add = input("Add Yautja Note") as null|message - if(!add) - return - - var/datum/entity/player/P = get_player_from_key(key) - P.add_note(add, FALSE, NOTE_YAUTJA) + P.add_note(add, FALSE, NOTE_WHITELIST) if(href_list["remove_wl_info"]) var/key = href_list["remove_wl_info"] var/index = text2num(href_list["remove_index"]) var/datum/entity/player/P = get_player_from_key(key) - P.remove_note(index) + P.remove_note(index, whitelist = TRUE) switch(href_list["_src_"]) if("admin_holder") @@ -281,7 +266,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( //Helps prevent multiple files being uploaded at once. Or right after eachother. var/time_to_wait = fileaccess_timer - world.time if(time_to_wait > 0) - to_chat(src, "Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds.") + to_chat(src, "Error: AllowUpload(): Spam prevention. Please wait [floor(time_to_wait/10)] seconds.") return 0 fileaccess_timer = world.time + FTPDELAY */ return 1 @@ -312,35 +297,33 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( var/static/next_external_rsc = 0 var/list/external_rsc_urls = CONFIG_GET(keyed_list/external_rsc_urls) if(length(external_rsc_urls)) - next_external_rsc = WRAP(next_external_rsc+1, 1, external_rsc_urls.len+1) + next_external_rsc = WRAP(next_external_rsc+1, 1, length(external_rsc_urls)+1) preload_rsc = external_rsc_urls[next_external_rsc] player_entity = setup_player_entity(ckey) - if(!CONFIG_GET(flag/no_localhost_rank)) - var/static/list/localhost_addresses = list("127.0.0.1", "::1") - if(isnull(address) || (address in localhost_addresses)) - var/datum/admins/admin = new("!localhost!", RL_HOST, ckey) - admin.associate(src) - RoleAuthority.roles_whitelist[ckey] = WHITELIST_EVERYTHING + if(check_localhost_status()) + var/datum/admins/admin = new("!localhost!", RL_HOST, ckey) + admin.associate(src) //Admin Authorisation - admin_holder = admin_datums[ckey] + admin_holder = GLOB.admin_datums[ckey] if(admin_holder) admin_holder.associate(src) - notify_login() add_pref_verbs() //preferences datum - also holds some persistent data for the client (because we may as well keep these datums to a minimum) - prefs = preferences_datums[ckey] + prefs = GLOB.preferences_datums[ckey] if(QDELETED(prefs) || !istype(prefs)) prefs = new /datum/preferences(src) - preferences_datums[ckey] = prefs + GLOB.preferences_datums[ckey] = prefs prefs.client_reconnected(src) prefs.last_ip = address //these are gonna be used for banning prefs.last_id = computer_id //these are gonna be used for banning fps = prefs.fps + notify_login() + load_xeno_name() human_name_ban = prefs.human_name_ban @@ -355,7 +338,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( player_details.byond_version = full_version GLOB.player_details[ckey] = player_details - view = world_view_size + view = GLOB.world_view_size . = ..() //calls mob.Login() if(SSinput.initialized) @@ -425,10 +408,6 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( CEI = GLOB.custom_event_info_list[mob.faction] CEI.show_player_event_info(src) - if( (world.address == address || !address) && !host ) - host = key - world.update_status() - connection_time = world.time winset(src, null, "command=\".configure graphics-hwmode on\"") @@ -440,11 +419,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( if(prefs.lastchangelog != GLOB.changelog_hash) //bolds the changelog button on the interface so we know there are updates. winset(src, "infowindow.changelog", "background-color=#ED9F9B;font-style=bold") - if(prefs.toggle_prefs & TOGGLE_FULLSCREEN) - toggle_fullscreen(TRUE) - else - toggle_fullscreen(FALSE) - + update_fullscreen() var/file = file2text("config/donators.txt") var/lines = splittext(file, "\n") @@ -462,7 +437,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( load_player_data() - view = world_view_size + view = GLOB.world_view_size SEND_GLOBAL_SIGNAL(COMSIG_GLOB_CLIENT_LOGGED_IN, src) @@ -495,7 +470,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( SSping.currentrun -= src log_access("Logout: [key_name(src)]") - if(CLIENT_IS_STAFF(src)) + if(CLIENT_IS_STAFF(src) && !CLIENT_IS_STEALTHED(src)) message_admins("Admin logout: [key_name(src)]") var/list/adm = get_admin_counts(R_MOD) @@ -512,7 +487,7 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( /// Handles login-related logging and associated notifications /client/proc/notify_login() log_access("Login: [key_name(src)] from [address ? address : "localhost"]-[computer_id] || BYOND v[byond_version].[byond_build]") - if(CLIENT_IS_STAFF(src)) + if(CLIENT_IS_STAFF(src) && !CLIENT_IS_STEALTHED(src)) message_admins("Admin login: [key_name(src)]") var/list/adm = get_admin_counts(R_MOD) @@ -555,17 +530,17 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( /proc/setup_player_entity(ckey) if(!ckey) return - if(player_entities["[ckey]"]) - return player_entities["[ckey]"] + if(GLOB.player_entities["[ckey]"]) + return GLOB.player_entities["[ckey]"] var/datum/entity/player_entity/P = new() P.ckey = ckey P.name = ckey - player_entities["[ckey]"] = P + GLOB.player_entities["[ckey]"] = P // P.setup_save(ckey) return P /proc/save_player_entities() - for(var/key_ref in player_entities) + for(var/key_ref in GLOB.player_entities) // var/datum/entity/player_entity/P = player_entities["[key_ref]"] // P.save_statistics() log_debug("STATISTICS: Statistics saving complete.") @@ -755,12 +730,16 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( if(WHISPER_CHANNEL) winset(src, "srvkeybinds-[REF(key)]", "parent=default;name=[key];command=whisper") -/client/proc/toggle_fullscreen(new_value) - if(new_value) - winset(src, "mainwindow", "is-maximized=false;can-resize=false;titlebar=false;menu=menu") +/client/proc/update_fullscreen() + if(prefs.toggle_prefs & TOGGLE_FULLSCREEN) + winset(src, "mainwindow", "is-fullscreen=true;menu=") else - winset(src, "mainwindow", "is-maximized=false;can-resize=true;titlebar=true;menu=menu") - winset(src, "mainwindow", "is-maximized=true") + winset(src, "mainwindow", "is-fullscreen=false;menu=menu") + + if(prefs.adaptive_zoom) + adaptive_zoom() + else if(prefs.auto_fit_viewport) + fit_viewport() /// Attempts to make the client orbit the given object, for administrative purposes. /// If they are not an observer, will try to aghost them. @@ -821,6 +800,53 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( if(!xeno_postfix || xeno_name_ban) xeno_postfix = "" +/// playtime for all castes +/client/proc/get_total_xeno_playtime(skip_cache = FALSE) + if(cached_xeno_playtime && !skip_cache) + return cached_xeno_playtime + + var/total_xeno_playtime = 0 + + for(var/caste in GLOB.RoleAuthority.castes_by_name) + total_xeno_playtime += get_job_playtime(src, caste) + + total_xeno_playtime += get_job_playtime(src, JOB_XENOMORPH) + + if(player_entity) + var/past_xeno_playtime = player_entity.get_playtime(STATISTIC_XENO) + if(past_xeno_playtime) + total_xeno_playtime += past_xeno_playtime + + + cached_xeno_playtime = total_xeno_playtime + + return total_xeno_playtime + +/// playtime for drone and drone evolution castes +/client/proc/get_total_drone_playtime() + var/total_drone_playtime = 0 + + var/list/drone_evo_castes = list(XENO_CASTE_DRONE, XENO_CASTE_CARRIER, XENO_CASTE_BURROWER, XENO_CASTE_HIVELORD, XENO_CASTE_QUEEN) + + for(var/caste in GLOB.RoleAuthority.castes_by_name) + if(!(caste in drone_evo_castes)) + continue + total_drone_playtime += get_job_playtime(src, caste) + + return total_drone_playtime + +/// playtime for t3 castes and queen +/client/proc/get_total_t3_playtime() + var/total_t3_playtime = 0 + var/datum/caste_datum/caste + for(var/caste_name in GLOB.RoleAuthority.castes_by_name) + caste = GLOB.RoleAuthority.castes_by_name[caste_name] + if(caste.tier < 3) + continue + total_t3_playtime += get_job_playtime(src, caste_name) + + return total_t3_playtime + /client/verb/action_hide_menu() set name = "Show/Hide Actions" set category = "IC" @@ -849,3 +875,41 @@ GLOBAL_LIST_INIT(whitelisted_client_procs, list( if(!selected_action.player_hidden && selected_action.hidden) //Inform the player that even if they are unhiding it, itll still not be visible to_chat(user, SPAN_NOTICE("[selected_action] is forcefully hidden, bypassing player unhiding.")) + + +/client/proc/check_whitelist_status(flag_to_check) + if(check_localhost_status()) + return TRUE + + if((flag_to_check & WHITELIST_MENTOR) && CLIENT_IS_MENTOR(src)) + return TRUE + + if((flag_to_check & WHITELIST_JOE) && CLIENT_IS_STAFF(src)) + return TRUE + + if(!player_data) + load_player_data() + if(!player_data) + return FALSE + + return player_data.check_whitelist_status(flag_to_check) + +/client/proc/check_whitelist_status_list(flags_to_check) /// Logical OR list, not match all. + var/success = FALSE + if(!player_data) + load_player_data() + for(var/bitfield in flags_to_check) + success = player_data.check_whitelist_status(bitfield) + if(success) + break + return success + +/client/proc/check_localhost_status() + if(CONFIG_GET(flag/no_localhost_rank)) + return FALSE + + var/static/list/localhost_addresses = list("127.0.0.1", "::1") + if(isnull(address) || (address in localhost_addresses)) + return TRUE + + return FALSE diff --git a/code/modules/client/country_flags.dm b/code/modules/client/country_flags.dm index 7d49bf8369..d72f0fbd5a 100644 --- a/code/modules/client/country_flags.dm +++ b/code/modules/client/country_flags.dm @@ -13,23 +13,20 @@ var/page_content = http_response["CONTENT"] if(page_content) var/list/geodata = json_decode(html_decode(file2text(page_content))) - if(geodata["countryCode"] == "GB") - if((geodata["regionName"] == "Scotland") || (geodata["regionName"] == "Wales")) - origin?.country = geodata["regionName"] - return geodata["regionName"] - else - origin?.country = geodata["countryCode"] - return geodata["countryCode"] + if(geodata["countryCode"] == "GB" && ((geodata["regionName"] == "Scotland") || (geodata["regionName"] == "Wales"))) + origin?.country = geodata["regionName"] + else if(geodata["countryCode"] == "CA" && (geodata["regionName"] == "Quebec")) + origin?.country = geodata["regionName"] else origin?.country = geodata["countryCode"] - return geodata["countryCode"] + return geodata["countryCode"] else //null response, ratelimited most likely. Try again in 60s addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(ip2country), ipaddr, origin), 60 SECONDS) -var/list/countries = icon_states('icons/flags.dmi') +GLOBAL_LIST_INIT(countries, icon_states('icons/flags.dmi')) /proc/country2chaticon(country_code, targets) - if(countries.Find(country_code)) + if(GLOB.countries.Find(country_code)) return "[icon2html('icons/flags.dmi', targets, country_code)]" else return "[icon2html('icons/flags.dmi', targets, "unknown")]" diff --git a/code/modules/client/player_details.dm b/code/modules/client/player_details.dm index 634fd8fb62..12e5064753 100644 --- a/code/modules/client/player_details.dm +++ b/code/modules/client/player_details.dm @@ -17,7 +17,7 @@ GLOBAL_LIST_EMPTY(player_details) // ckey -> /datum/player_details /proc/log_played_names(ckey, ...) if(!ckey) return - if(args.len < 2) + if(length(args) < 2) return var/list/names = args.Copy(2) var/datum/player_details/P = GLOB.player_details[ckey] diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index b1c2331676..974b375bbc 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -8,7 +8,7 @@ #define MENU_SPECIAL "special" #define MENU_PLTCO "pltco" -var/list/preferences_datums = list() +GLOBAL_LIST_EMPTY(preferences_datums) GLOBAL_LIST_INIT(stylesheets, list( "Modern" = "common.css", @@ -22,7 +22,7 @@ GLOBAL_LIST_INIT(bgstate_options, list( "whitefull" )) -var/const/MAX_SAVE_SLOTS = 20 +#define MAX_SAVE_SLOTS 20 /datum/preferences var/client/owner @@ -66,6 +66,8 @@ var/const/MAX_SAVE_SLOTS = 20 var/chat_display_preferences = CHAT_TYPE_ALL var/item_animation_pref_level = SHOW_ITEM_ANIMATIONS_ALL var/pain_overlay_pref_level = PAIN_OVERLAY_BLURRY + var/flash_overlay_pref = FLASH_OVERLAY_WHITE + var/crit_overlay_pref = CRIT_OVERLAY_WHITE var/UI_style_color = "#ffffff" var/UI_style_alpha = 255 var/View_MC = FALSE @@ -189,7 +191,7 @@ var/const/MAX_SAVE_SLOTS = 20 var/gen_record = "" var/exploit_record = "" - var/nanotrasen_relation = "Neutral" + var/weyland_yutani_relation = "Neutral" var/uplinklocation = "PDA" @@ -243,6 +245,8 @@ var/const/MAX_SAVE_SLOTS = 20 /// if this client has tooltips enabled var/tooltips = TRUE + /// A list of tutorials that the client has completed, saved across rounds + var/list/completed_tutorials = list() /// If this client has auto observe enabled, used by /datum/orbit_menu var/auto_observe = TRUE @@ -316,12 +320,12 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Human - " dat += "Platoon Commander - " dat += "Xenomorph - " - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_COMMANDER) + if(owner.check_whitelist_status(WHITELIST_COMMANDER)) dat += "Commanding Officer - " dat += "Synthetic - " - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_PREDATOR) + if(owner.check_whitelist_status(WHITELIST_PREDATOR)) dat += "Yautja - " - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_MENTOR) + if(owner.check_whitelist_status(WHITELIST_MENTOR)) dat += "Mentor - " dat += "Settings - " dat += "Special Roles" @@ -394,7 +398,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Underwear: [underwear]
      " dat += "Undershirt: [undershirt]
      " - dat += "Backpack Type: [backbaglist[backbag]]
      " + dat += "Backpack Type: [GLOB.backbaglist[backbag]]
      " dat += "Preferred Armor: [preferred_armor]
      " @@ -409,8 +413,8 @@ var/const/MAX_SAVE_SLOTS = 20 if(length(gear)) dat += "
      " - for(var/i = 1; i <= gear.len; i++) - var/datum/gear/G = gear_datums_by_name[gear[i]] + for(var/i = 1; i <= length(gear); i++) + var/datum/gear/G = GLOB.gear_datums_by_name[gear[i]] if(G) total_cost += G.cost dat += "[gear[i]] ([G.cost] points) Remove
      " @@ -421,7 +425,7 @@ var/const/MAX_SAVE_SLOTS = 20 if(total_cost < MAX_GEAR_COST) dat += " Add" - if(gear && gear.len) + if(LAZYLEN(gear)) dat += " Clear" dat += "" @@ -431,7 +435,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Origin: [origin]
      " dat += "Religion: [religion]
      " - dat += "Corporate Relation: [nanotrasen_relation]
      " + dat += "Corporate Relation: [weyland_yutani_relation]
      " dat += "Preferred Squad: [preferred_squad]
      " dat += "

      Fluff Information:

      " @@ -501,7 +505,7 @@ var/const/MAX_SAVE_SLOTS = 20 n++ if(MENU_CO) - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_COMMANDER) + if(owner.check_whitelist_status(WHITELIST_COMMANDER)) dat += "
      " dat += "

      Commander Settings:

      " dat += "Commander Whitelist Status: [commander_status]
      " @@ -518,7 +522,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Synthetic Whitelist Status: [synth_status]
      " dat += "
      " if(MENU_YAUTJA) - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_PREDATOR) + if(owner.check_whitelist_status(WHITELIST_PREDATOR)) dat += "
      " dat += "

      Yautja Information:

      " dat += "Yautja Name: [predator_name]
      " @@ -532,7 +536,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "
      " dat += "

      Equipment Setup:

      " - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_YAUTJA_LEGACY) + if(owner.check_whitelist_status(WHITELIST_YAUTJA_LEGACY)) dat += "Legacy Gear: [predator_use_legacy]
      " dat += "Translator Type: [predator_translator_type]
      " dat += "Mask Style: ([predator_mask_type])
      " @@ -556,7 +560,7 @@ var/const/MAX_SAVE_SLOTS = 20 else dat += "You do not have the whitelist for this role." if(MENU_MENTOR) - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_MENTOR) + if(owner.check_whitelist_status(WHITELIST_MENTOR)) dat += "Nothing here. For now." else dat += "You do not have the whitelist for this role." @@ -589,6 +593,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Ghost Ears: [(toggles_chat & CHAT_GHOSTEARS) ? "All Speech" : "Nearest Creatures"]
      " dat += "Ghost Sight: [(toggles_chat & CHAT_GHOSTSIGHT) ? "All Emotes" : "Nearest Creatures"]
      " dat += "Ghost Radio: [(toggles_chat & CHAT_GHOSTRADIO) ? "All Chatter" : "Nearest Speakers"]
      " + dat += "Ghost Spy Radio: [(toggles_chat & CHAT_LISTENINGBUG) ? "Hear" : "Silence"] listening devices
      " dat += "Ghost Hivemind: [(toggles_chat & CHAT_GHOSTHIVEMIND) ? "Show Hivemind" : "Hide Hivemind"]
      " dat += "Abovehead Chat: [lang_chat_disabled ? "Hide" : "Show"]
      " dat += "Abovehead Emotes: [(toggles_langchat & LANGCHAT_SEE_EMOTES) ? "Show" : "Hide"]
      " @@ -603,8 +608,12 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "tgui Window Mode: [(tgui_fancy) ? "Fancy (default)" : "Compatible (slower)"]
      " dat += "tgui Window Placement: [(tgui_lock) ? "Primary monitor" : "Free (default)"]
      " dat += "Play Admin Sounds: [(toggles_sound & SOUND_MIDI) ? "Yes" : "No"]
      " + dat += "Play Announcement Sounds As Ghost: [(toggles_sound & SOUND_OBSERVER_ANNOUNCEMENTS) ? "Yes" : "No"]
      " + dat += "Play Fax Sounds As Ghost: [(toggles_sound & SOUND_FAX_MACHINE) ? "Yes" : "No"]
      " dat += "Toggle Meme or Atmospheric Sounds: Toggle
      " dat += "Set Eye Blur Type: Set
      " + dat += "Set Flash Type: Set
      " + dat += "Set Crit Type: Set
      " dat += "Play Lobby Music: [(toggles_sound & SOUND_LOBBY) ? "Yes" : "No"]
      " dat += "Play VOX Announcements: [(hear_vox) ? "Yes" : "No"]
      " dat += "Default Ghost Night Vision Level: [ghost_vision_pref]
      " @@ -639,6 +648,8 @@ var/const/MAX_SAVE_SLOTS = 20 [toggle_prefs & TOGGLE_MIDDLE_MOUSE_SWAP_HANDS ? "On" : "Off"]
      " dat += "Toggle Vendors Vending to Hands: \ [toggle_prefs & TOGGLE_VEND_ITEM_TO_HAND ? "On" : "Off"]
      " + dat += "Toggle Semi-Auto Ammo Display Limiter: \ + [toggle_prefs & TOGGLE_AMMO_DISPLAY_TYPE ? "On" : "Off"]
      " dat += "Toggle Item Animations Detail Level
      " dat += "Toggle Dual Wield Functionality
      " if(MENU_SPECIAL) //wart @@ -649,7 +660,7 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "Spawn as Engineer: [toggles_ert & PLAY_ENGINEER ? "Yes" : "No"]
      " dat += "Spawn as Specialist: [toggles_ert & PLAY_HEAVY ? "Yes" : "No"]
      " dat += "Spawn as Smartgunner: [toggles_ert & PLAY_SMARTGUNNER ? "Yes" : "No"]
      " - if(RoleAuthority.roles_whitelist[user.ckey] & WHITELIST_SYNTHETIC) + if(owner.check_whitelist_status(WHITELIST_SYNTHETIC)) dat += "Spawn as Synth: [toggles_ert & PLAY_SYNTH ? "Yes" : "No"]
      " dat += "Spawn as Miscellaneous: [toggles_ert & PLAY_MISC ? "Yes" : "No"]
      " dat += "
      " @@ -657,15 +668,20 @@ var/const/MAX_SAVE_SLOTS = 20 dat += "
      " winshow(user, "preferencewindow", TRUE) - show_browser(user, dat, "Preferences", "preferencebrowser") + show_browser(user, dat, "Preferences", "preferencewindow") onclose(user, "preferencewindow", src) -//limit - The amount of jobs allowed per column. Defaults to 13 to make it look nice. -//splitJobs - Allows you split the table by job. You can make different tables for each department by including their heads. Defaults to CE to make it look nice. -//width - Screen' width. -//height - Screen's height. -/datum/preferences/proc/SetChoices(mob/user, limit = 19, list/splitJobs = list(JOB_CHIEF_REQUISITION), width = 480, height = 450) - if(!RoleAuthority) +/** + * Job Preferences: Preferences for role at round start. + * + * Arguments: + * * limit - The amount of jobs allowed per column. + * * splitJobs - Allows you split the table by job. You can make different tables for each department by including their heads. + * * width - Screen' width. + * * height - Screen's height. + */ +/datum/preferences/proc/SetChoices(mob/user, limit = 21, list/splitJobs = list(JOB_CHIEF_REQUISITION, JOB_WO_CMO), width = 950, height = 750) + if(!GLOB.RoleAuthority) return var/host_bypass = FALSE @@ -684,10 +700,10 @@ var/const/MAX_SAVE_SLOTS = 20 var/list/active_role_names = GLOB.gamemode_roles[GLOB.master_mode] if(!active_role_names) - active_role_names = ROLES_DISTRESS_SIGNAL + active_role_names = GLOB.ROLES_DISTRESS_SIGNAL for(var/role_name as anything in active_role_names) - var/datum/job/job = RoleAuthority.roles_by_name[role_name] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[role_name] if(!job) debug_log("Missing job for prefs: [role_name]") continue @@ -701,7 +717,7 @@ var/const/MAX_SAVE_SLOTS = 20 if(jobban_isbanned(user, job.title)) HTML += "[job.disp_title]
    • " continue - else if(job.flags_startup_parameters & ROLE_WHITELISTED && !(RoleAuthority.roles_whitelist[user.ckey] & job.flags_whitelist)) + else if(!job.check_whitelist_status(user)) HTML += "[job.disp_title]" continue else if(!job.can_play_role(user.client)) @@ -780,12 +796,17 @@ var/const/MAX_SAVE_SLOTS = 20 onclose(user, "mob_occupation", user.client, list("_src_" = "prefs", "preference" = "job", "task" = "close")) return -//limit - The amount of jobs allowed per column. Defaults to 13 to make it look nice. -//splitJobs - Allows you split the table by job. You can make different tables for each department by including their heads. Defaults to CE to make it look nice. -//width - Screen' width. Defaults to 550 to make it look nice. -//height - Screen's height. Defaults to 500 to make it look nice. -/datum/preferences/proc/set_job_slots(mob/user, limit = 19, list/splitJobs = list(JOB_CHIEF_REQUISITION), width = 950, height = 700) - if(!RoleAuthority) +/** + * Job Assignments window: Assign unique characters to a particular job. + * + * Arguments: + * * limit - The amount of jobs allowed per column. + * * splitJobs - Allows you split the table by job. You can make different tables for each department by including their heads. + * * width - Screen' width. + * * height - Screen's height. + */ +/datum/preferences/proc/set_job_slots(mob/user, limit = 21, list/splitJobs = list(JOB_CHIEF_REQUISITION, JOB_WO_CMO), width = 950, height = 750) + if(!GLOB.RoleAuthority) return var/HTML = "" @@ -800,10 +821,10 @@ var/const/MAX_SAVE_SLOTS = 20 var/list/active_role_names = GLOB.gamemode_roles[GLOB.master_mode] if(!active_role_names) - active_role_names = ROLES_DISTRESS_SIGNAL + active_role_names = GLOB.ROLES_DISTRESS_SIGNAL for(var/role_name as anything in active_role_names) - var/datum/job/job = RoleAuthority.roles_by_name[role_name] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[role_name] if(!job) debug_log("Missing job for prefs: [role_name]") continue @@ -816,7 +837,7 @@ var/const/MAX_SAVE_SLOTS = 20 if(jobban_isbanned(user, job.title)) HTML += "[job.disp_title]" continue - else if(job.flags_startup_parameters & ROLE_WHITELISTED && !(RoleAuthority.roles_whitelist[user.ckey] & job.flags_whitelist)) + else if(!job.check_whitelist_status(user)) HTML += "[job.disp_title]" continue else if(!job.can_play_role(user.client)) @@ -896,7 +917,7 @@ var/const/MAX_SAVE_SLOTS = 20 return /datum/preferences/proc/SetJob(mob/user, role, priority) - var/datum/job/job = RoleAuthority.roles_by_name[role] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[role] if(!job) close_browser(user, "mob_occupation") ShowChoices(user) @@ -913,12 +934,12 @@ var/const/MAX_SAVE_SLOTS = 20 job_preference_list[job] = NEVER_PRIORITY return - if(!RoleAuthority) + if(!GLOB.RoleAuthority) return job_preference_list = list() - for(var/role in RoleAuthority.roles_by_path) - var/datum/job/J = RoleAuthority.roles_by_path[role] + for(var/role in GLOB.RoleAuthority.roles_by_path) + var/datum/job/J = GLOB.RoleAuthority.roles_by_path[role] job_preference_list[J.title] = NEVER_PRIORITY /datum/preferences/proc/get_job_priority(J) @@ -1007,12 +1028,12 @@ var/const/MAX_SAVE_SLOTS = 20 /datum/preferences/proc/reset_job_slots() pref_job_slots = list() var/datum/job/J - for(var/role in RoleAuthority.roles_by_path) - J = RoleAuthority.roles_by_path[role] + for(var/role in GLOB.RoleAuthority.roles_by_path) + J = GLOB.RoleAuthority.roles_by_path[role] pref_job_slots[J.title] = JOB_SLOT_CURRENT_SLOT /datum/preferences/proc/process_link(mob/user, list/href_list) - var/whitelist_flags = RoleAuthority.roles_whitelist[user.ckey] + switch(href_list["preference"]) if("job") @@ -1059,10 +1080,10 @@ var/const/MAX_SAVE_SLOTS = 20 if("loadout") switch(href_list["task"]) if("input") - var/gear_category = tgui_input_list(user, "Select gear category: ", "Gear to add", gear_datums_by_category) + var/gear_category = tgui_input_list(user, "Select gear category: ", "Gear to add", GLOB.gear_datums_by_category) if(!gear_category) return - var/choice = tgui_input_list(user, "Select gear to add: ", gear_category, gear_datums_by_category[gear_category]) + var/choice = tgui_input_list(user, "Select gear to add: ", gear_category, GLOB.gear_datums_by_category[gear_category]) if(!choice) return @@ -1070,12 +1091,12 @@ var/const/MAX_SAVE_SLOTS = 20 var/datum/gear/G if(isnull(gear) || !islist(gear)) gear = list() - if(gear.len) + if(length(gear)) for(var/gear_name in gear) - G = gear_datums_by_name[gear_name] + G = GLOB.gear_datums_by_name[gear_name] total_cost += G?.cost - G = gear_datums_by_category[gear_category][choice] + G = GLOB.gear_datums_by_category[gear_category][choice] total_cost += G.cost if(total_cost <= MAX_GEAR_COST) gear += G.display_name @@ -1085,7 +1106,7 @@ var/const/MAX_SAVE_SLOTS = 20 if("remove") var/i_remove = text2num(href_list["gear"]) - if(i_remove < 1 || i_remove > gear.len) return + if(i_remove < 1 || i_remove > length(gear)) return gear.Cut(i_remove, i_remove + 1) if("clear") @@ -1250,6 +1271,9 @@ var/const/MAX_SAVE_SLOTS = 20 if ("all") randomize_appearance() if("input") + var/datum/entity/player/player = get_player_from_key(user.ckey) + var/whitelist_flags = player.whitelist_flags + switch(href_list["preference"]) if("name") if(human_name_ban) @@ -1318,7 +1342,7 @@ var/const/MAX_SAVE_SLOTS = 20 if("pred_age") var/new_predator_age = tgui_input_number(user, "Choose your Predator's age(175 to 3000):", "Character Preference", 1234, 3000, 175) if(new_predator_age) - predator_age = max(min( round(text2num(new_predator_age)), 3000),175) + predator_age = max(min( floor(text2num(new_predator_age)), 3000),175) if("pred_use_legacy") var/legacy_choice = tgui_input_list(user, "What legacy set do you wish to use?", "Legacy Set", PRED_LEGACIES) if(!legacy_choice) @@ -1331,13 +1355,13 @@ var/const/MAX_SAVE_SLOTS = 20 predator_translator_type = new_translator_type if("pred_mask_type") var/new_predator_mask_type = tgui_input_number(user, "Choose your mask type:\n(1-12)", "Mask Selection", 1, 12, 1) - if(new_predator_mask_type) predator_mask_type = round(text2num(new_predator_mask_type)) + if(new_predator_mask_type) predator_mask_type = floor(text2num(new_predator_mask_type)) if("pred_armor_type") var/new_predator_armor_type = tgui_input_number(user, "Choose your armor type:\n(1-7)", "Armor Selection", 1, 7, 1) - if(new_predator_armor_type) predator_armor_type = round(text2num(new_predator_armor_type)) + if(new_predator_armor_type) predator_armor_type = floor(text2num(new_predator_armor_type)) if("pred_boot_type") var/new_predator_boot_type = tgui_input_number(user, "Choose your greaves type:\n(1-4)", "Greave Selection", 1, 4, 1) - if(new_predator_boot_type) predator_boot_type = round(text2num(new_predator_boot_type)) + if(new_predator_boot_type) predator_boot_type = floor(text2num(new_predator_boot_type)) if("pred_mask_mat") var/new_pred_mask_mat = tgui_input_list(user, "Choose your mask material:", "Mask Material", PRED_MATERIALS) if(!new_pred_mask_mat) @@ -1359,8 +1383,8 @@ var/const/MAX_SAVE_SLOTS = 20 return predator_caster_material = new_pred_caster_mat if("pred_cape_type") - var/datum/job/J = RoleAuthority.roles_by_name[JOB_PREDATOR] - var/whitelist_status = clan_ranks_ordered[J.get_whitelist_status(RoleAuthority.roles_whitelist, owner)] + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_PREDATOR] + var/whitelist_status = GLOB.clan_ranks_ordered[J.get_whitelist_status(owner)] var/list/options = list("None" = "None") for(var/cape_name in GLOB.all_yautja_capes) @@ -1399,7 +1423,7 @@ var/const/MAX_SAVE_SLOTS = 20 if(whitelist_flags & (WHITELIST_COMMANDER_COUNCIL|WHITELIST_COMMANDER_COUNCIL_LEGACY)) options += list("Council" = WHITELIST_COUNCIL) - if(whitelist_flags & WHITELIST_COMMANDER_LEADER) + if(whitelist_flags & (WHITELIST_COMMANDER_LEADER|WHITELIST_COMMANDER_COLONEL)) options += list("Leader" = WHITELIST_LEADER) var/new_commander_status = tgui_input_list(user, "Choose your new Commander Whitelist Status.", "Commander Status", options) @@ -1543,7 +1567,7 @@ var/const/MAX_SAVE_SLOTS = 20 if("age") var/new_age = tgui_input_number(user, "Choose your character's age:\n([AGE_MIN]-[AGE_MAX])", "Character Preference", 19, AGE_MAX, AGE_MIN) if(new_age) - age = max(min( round(text2num(new_age)), AGE_MAX),AGE_MIN) + age = max(min( floor(text2num(new_age)), AGE_MAX),AGE_MIN) if("metadata") var/new_metadata = input(user, "Enter any information you'd like others to see, such as Roleplay-preferences:", "Game Preference" , metadata) as message|null @@ -1603,6 +1627,12 @@ var/const/MAX_SAVE_SLOTS = 20 if (new_skin_color) skin_color = new_skin_color + if ("body_size") + var/new_body_size = tgui_input_list(user, "Choose your character's body size:", "Character Preferences", GLOB.body_size_list) + + if (new_body_size) + body_size = new_body_size + if ("body_type") var/new_body_type = tgui_input_list(user, "Choose your character's body type:", "Character Preferences", GLOB.body_type_list) @@ -1676,14 +1706,14 @@ var/const/MAX_SAVE_SLOTS = 20 ooccolor = new_ooccolor if("bag") - var/new_backbag = input(user, "Choose your character's style of bag:", "Character Preference") as null|anything in backbaglist + var/new_backbag = input(user, "Choose your character's style of bag:", "Character Preference") as null|anything in GLOB.backbaglist if(new_backbag) - backbag = backbaglist.Find(new_backbag) + backbag = GLOB.backbaglist.Find(new_backbag) - if("nt_relation") + if("wy_relation") var/new_relation = input(user, "Choose your relation to the Weyland-Yutani company. Note that this represents what others can find out about your character by researching your background, not what your character actually thinks.", "Character Preference") as null|anything in list("Loyal", "Supportive", "Neutral", "Skeptical", "Opposed") if(new_relation) - nanotrasen_relation = new_relation + weyland_yutani_relation = new_relation if("prefsquad") var/new_pref_squad = input(user, "Choose your preferred squad.", "Character Preference") as null|anything in list("Alpha", "Bravo", "Charlie", "Delta", "None") @@ -1694,6 +1724,8 @@ var/const/MAX_SAVE_SLOTS = 20 var/new_pref_armor = tgui_input_list(user, "Choose your character's default style of armor:", "Character Preferences", GLOB.armor_style_list) if(new_pref_armor) preferred_armor = new_pref_armor + // Update the dummy with the new armor style. + update_preview_icon() if("limbs") var/limb_name = tgui_input_list(user, "Which limb do you want to change?", list("Left Leg","Right Leg","Left Arm","Right Arm","Left Foot","Right Foot","Left Hand","Right Hand")) @@ -1779,7 +1811,7 @@ var/const/MAX_SAVE_SLOTS = 20 origin = choice if("religion") - var/choice = tgui_input_list(user, "Please choose a religion.", "Religion choice", religion_choices + "Other") + var/choice = tgui_input_list(user, "Please choose a religion.", "Religion choice", GLOB.religion_choices + "Other") if(!choice) return if(choice == "Other") @@ -1790,7 +1822,7 @@ var/const/MAX_SAVE_SLOTS = 20 religion = choice if("special_job_select") - var/datum/job/job = RoleAuthority.roles_by_name[href_list["text"]] + var/datum/job/job = GLOB.RoleAuthority.roles_by_name[href_list["text"]] if(!job) close_browser(user, "mob_occupation") ShowChoices(user) @@ -1885,6 +1917,12 @@ var/const/MAX_SAVE_SLOTS = 20 if(!(toggles_sound & SOUND_MIDI)) user?.client?.tgui_panel?.stop_music() + if("hear_observer_announcements") + toggles_sound ^= SOUND_OBSERVER_ANNOUNCEMENTS + + if("hear_faxes") + toggles_sound ^= SOUND_FAX_MACHINE + if("lobby_music") toggles_sound ^= SOUND_LOBBY if(toggles_sound & SOUND_LOBBY) @@ -1904,6 +1942,9 @@ var/const/MAX_SAVE_SLOTS = 20 if("ghost_radio") toggles_chat ^= CHAT_GHOSTRADIO + if("ghost_spyradio") + toggles_chat ^= CHAT_LISTENINGBUG + if("ghost_hivemind") toggles_chat ^= CHAT_GHOSTHIVEMIND @@ -1997,7 +2038,7 @@ var/const/MAX_SAVE_SLOTS = 20 if("save") if(save_cooldown > world.time) - to_chat(user, SPAN_WARNING("You need to wait [round((save_cooldown-world.time)/10)] seconds before you can do that again.")) + to_chat(user, SPAN_WARNING("You need to wait [floor((save_cooldown-world.time)/10)] seconds before you can do that again.")) return var/datum/origin/character_origin = GLOB.origins[origin] var/name_error = character_origin.validate_name(real_name) @@ -2013,7 +2054,7 @@ var/const/MAX_SAVE_SLOTS = 20 if("reload") if(reload_cooldown > world.time) - to_chat(user, SPAN_WARNING("You need to wait [round((reload_cooldown-world.time)/10)] seconds before you can do that again.")) + to_chat(user, SPAN_WARNING("You need to wait [floor((reload_cooldown-world.time)/10)] seconds before you can do that again.")) return load_preferences() load_character() @@ -2062,7 +2103,8 @@ var/const/MAX_SAVE_SLOTS = 20 if(!istype(character)) return - find_assigned_slot(job_title, is_late_join) + if(job_title) + find_assigned_slot(job_title, is_late_join) if(check_datacore && !(be_random_body && be_random_name)) for(var/datum/data/record/record as anything in GLOB.data_core.locked) if(record.fields["name"] == real_name) @@ -2077,9 +2119,9 @@ var/const/MAX_SAVE_SLOTS = 20 var/firstspace = findtext(real_name, " ") var/name_length = length(real_name) if(!firstspace) //we need a surname - real_name += " [pick(last_names)]" + real_name += " [pick(GLOB.last_names)]" else if(firstspace == name_length) - real_name += "[pick(last_names)]" + real_name += "[pick(GLOB.last_names)]" character.real_name = real_name character.voice = real_name @@ -2178,7 +2220,7 @@ var/const/MAX_SAVE_SLOTS = 20 message_admins("[character] ([character.ckey]) has spawned with their gender as plural or neuter. Please notify coders.") character.gender = MALE -// Transfers the character's physical characteristics (age, gender, skin color, etc) to the mob +// Transfers the character's physical characteristics (age, gender, skin_color, etc) to the mob /datum/preferences/proc/copy_appearance_to(mob/living/carbon/human/character, safety = 0) if(!istype(character)) return @@ -2283,7 +2325,7 @@ var/const/MAX_SAVE_SLOTS = 20 if (key in key_mod_buf) return - if (key in key_mods) + if (key in GLOB.key_mods) key_mod_buf.Add(key) /datum/preferences/proc/set_key_buf(client/source, key) @@ -2372,6 +2414,22 @@ var/const/MAX_SAVE_SLOTS = 20 show_browser(user, dat, "Character Traits", "character_traits") update_preview_icon(TRUE) +/// Converts a client's list of completed tutorials into a string for saving +/datum/preferences/proc/tutorial_list_to_savestring() + if(!length(completed_tutorials)) + return "" + + var/return_string = "" + var/last_id = completed_tutorials[length(completed_tutorials)] + for(var/tutorial_id in completed_tutorials) + return_string += tutorial_id + (tutorial_id != last_id ? ";" : "") + return return_string + +/// Converts a saved string of completed tutorials into a list for in-game use +/datum/preferences/proc/tutorial_savestring_to_list(savestring) + completed_tutorials = splittext(savestring, ";") + return completed_tutorials + #undef MENU_MARINE #undef MENU_XENOMORPH #undef MENU_CO diff --git a/code/modules/client/preferences_factions.dm b/code/modules/client/preferences_factions.dm index 6f10f9dc1d..42041d8467 100644 --- a/code/modules/client/preferences_factions.dm +++ b/code/modules/client/preferences_factions.dm @@ -1,4 +1,4 @@ -var/global/list/religion_choices = list( +GLOBAL_LIST_INIT(religion_choices, list( RELIGION_PROTESTANT, RELIGION_CATHOLIC, RELIGION_ORTHODOX, @@ -16,4 +16,4 @@ var/global/list/religion_choices = list( RELIGION_MINOR, RELIGION_ATHEISM, RELIGION_AGNOSTICISM - ) + )) diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index c6a492b3d8..f7cbb752e5 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -1,5 +1,5 @@ -var/global/list/gear_datums_by_category = list() -var/global/list/gear_datums_by_name = list() +GLOBAL_LIST_EMPTY(gear_datums_by_category) +GLOBAL_LIST_EMPTY(gear_datums_by_name) /proc/populate_gear_list() var/datum/gear/G @@ -10,11 +10,11 @@ var/global/list/gear_datums_by_name = list() if(!G.category) log_debug("Improper gear datum: [gear_type].") continue - if(G.display_name in gear_datums_by_name) + if(G.display_name in GLOB.gear_datums_by_name) log_debug("Duplicate gear datum name: [G.display_name].") continue - LAZYSET(gear_datums_by_category[G.category], "[G.display_name] [G.cost == 1 ? "(1 point)" : "([G.cost] points)"]", G) - gear_datums_by_name[G.display_name] = G + LAZYSET(GLOB.gear_datums_by_category[G.category], "[G.display_name] [G.cost == 1 ? "(1 point)" : "([G.cost] points)"]", G) + GLOB.gear_datums_by_name[G.display_name] = G /datum/gear var/display_name // Name/index. @@ -58,14 +58,26 @@ var/global/list/gear_datums_by_name = list() display_name = "Ballistic goggles, black" path = /obj/item/clothing/glasses/mgoggles/black +/datum/gear/eyewear/goggles_black/prescription + display_name = "Prescription ballistic goggles, black" + path = /obj/item/clothing/glasses/mgoggles/black/prescription + /datum/gear/eyewear/goggles_orange display_name = "Ballistic goggles, orange" path = /obj/item/clothing/glasses/mgoggles/orange +/datum/gear/eyewear/goggles_orange/prescription + display_name = "Prescription ballistic goggles, orange" + path = /obj/item/clothing/glasses/mgoggles/orange/prescription + /datum/gear/eyewear/goggles2 display_name = "Ballistic goggles, M1A1" path = /obj/item/clothing/glasses/mgoggles/v2 +/datum/gear/eyewear/goggles2/prescription + display_name = "Prescription ballistic goggles, M1A1" + path = /obj/item/clothing/glasses/mgoggles/v2/prescription + /datum/gear/eyewear/bimex_shades display_name = "BiMex personal shades" path = /obj/item/clothing/glasses/sunglasses/big @@ -115,10 +127,6 @@ var/global/list/gear_datums_by_name = list() display_name = "Face wrap, tan" path = /obj/item/clothing/mask/rebreather/scarf/tacticalmask/tan -/datum/gear/mask/face_wrap_intel - display_name = "Face wrap, black" - path = /obj/item/clothing/mask/rebreather/scarf/tacticalmask/intel - /datum/gear/mask/face_wrap_bravo display_name = "Face wrap, yellow" path = /obj/item/clothing/mask/rebreather/scarf/tacticalmask/bravo @@ -182,12 +190,14 @@ var/global/list/gear_datums_by_name = list() /datum/gear/mask/uscm/skull_balaclava_blue display_name = "USCM balaclava, blue skull" path = /obj/item/clothing/mask/rebreather/skull - cost = 4 + cost = 4 //same as skull facepaint + slot = WEAR_FACE /datum/gear/mask/uscm/skull_balaclava_black display_name = "USCM balaclava, black skull" path = /obj/item/clothing/mask/rebreather/skull/black cost = 4 + slot = WEAR_FACE /datum/gear/headwear category = "Headwear" @@ -227,7 +237,7 @@ var/global/list/gear_datums_by_name = list() /datum/gear/headwear/uscm/beret_green display_name = "USCM beret, green" - path = /obj/item/clothing/head/beret/cm + path = /obj/item/clothing/head/beret/cm/green /datum/gear/headwear/uscm/beret_tan display_name = "USCM beret, tan" @@ -422,7 +432,7 @@ var/global/list/gear_datums_by_name = list() path = /obj/item/prop/helmetgarb/trimmed_wire /datum/gear/helmet_garb/bullet_pipe - display_name = "10x99mm XM42B casing pipe" + display_name = "10x99mm XM43E1 casing pipe" path = /obj/item/prop/helmetgarb/bullet_pipe allowed_origins = USCM_ORIGINS @@ -563,6 +573,10 @@ var/global/list/gear_datums_by_name = list() display_name = "Card, Uno Reverse - yellow" path = /obj/item/toy/handcard/uno_reverse_yellow +/datum/gear/toy/card/trading_card + display_name = "Card, random WeyYu Trading" + path = /obj/item/toy/trading_card + /datum/gear/toy/deck display_name = "Deck of cards, regular" path = /obj/item/toy/deck @@ -571,6 +585,10 @@ var/global/list/gear_datums_by_name = list() display_name = "Deck of cards, Uno" path = /obj/item/toy/deck/uno +/datum/gear/toy/trading_card + display_name = "Trading Card Packet" + path = /obj/item/storage/fancy/trading_card + /datum/gear/toy/d6 display_name = "Die, 6 sides" path = /obj/item/toy/dice @@ -602,7 +620,7 @@ var/global/list/gear_datums_by_name = list() cost = 1 /datum/gear/cassettes/pop4 - display_name = "Blue Cassette" + display_name = "Pink Cassette" path = /obj/item/device/cassette_tape/pop4 cost = 1 @@ -644,6 +662,10 @@ var/global/list/gear_datums_by_name = list() display_name = "Crayon" path = /obj/item/toy/crayon/rainbow +/datum/gear/toy/pride + display_name = "Box of Prideful Crayons" + path = /obj/item/storage/box/pride + /datum/gear/plush category = "Plushies" cost = 4 @@ -1047,6 +1069,14 @@ var/global/list/gear_datums_by_name = list() display_name = "Lighter, zippo" path = /obj/item/tool/lighter/zippo +/datum/gear/smoking/zippo/black + display_name = "Black lighter, zippo" + path = /obj/item/tool/lighter/zippo/black + +/datum/gear/smoking/zippo/blue + display_name = "Blue lighter, zippo" + path = /obj/item/tool/lighter/zippo/blue + /datum/gear/smoking/goldzippo display_name = "Lighter, golden zippo" path = /obj/item/tool/lighter/zippo/gold @@ -1113,6 +1143,13 @@ var/global/list/gear_datums_by_name = list() cost = 1 //The cadmium poisoning pays for the discounted cost longterm allowed_origins = USCM_ORIGINS +/datum/gear/misc/dogtags + display_name = "Attachable Dogtags" + path = /obj/item/clothing/accessory/dogtags + cost = 0 + slot = WEAR_IN_ACCESSORY + allowed_origins = USCM_ORIGINS + /datum/gear/misc/patch_uscm display_name = "USCM shoulder patch" path = /obj/item/clothing/accessory/patch diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 51d76e1d8e..9657278746 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -1,5 +1,5 @@ #define SAVEFILE_VERSION_MIN 8 -#define SAVEFILE_VERSION_MAX 25 +#define SAVEFILE_VERSION_MAX 26 //handles converting savefiles to new formats //MAKE SURE YOU KEEP THIS UP TO DATE! @@ -11,8 +11,8 @@ //if a file was updated, return 1 /datum/preferences/proc/savefile_update(savefile/S) if(!isnum(savefile_version) || savefile_version < SAVEFILE_VERSION_MIN) //lazily delete everything + additional files so they can be saved in the new format - for(var/ckey in preferences_datums) - var/datum/preferences/D = preferences_datums[ckey] + for(var/ckey in GLOB.preferences_datums) + var/datum/preferences/D = GLOB.preferences_datums[ckey] if(D == src) var/delpath = "data/player_saves/[copytext(ckey,1,2)]/[ckey]/" if(delpath && fexists(delpath)) @@ -57,9 +57,8 @@ if(savefile_version < 17) //remove omniglots var/list/language_traits = list() S["traits"] >> language_traits - if(language_traits) - if(language_traits.len > 1) - language_traits = null + if(LAZYLEN(language_traits) > 1) + language_traits = null S["traits"] << language_traits if(savefile_version < 18) // adds ambient occlusion by default @@ -157,6 +156,15 @@ skin_color = "tan3" S["skin_color"] << skin_color + if(savefile_version < 26) // adds fax machine sounds on by default & renemes nanotrasen to wy + var/sound_toggles + S["toggles_sound"] >> sound_toggles + sound_toggles |= (SOUND_FAX_MACHINE) + S["toggles_sound"] << sound_toggles + var/relation + S["nanotrasen_relation"] >> relation + S["weyland_yutani_relation"] << relation + savefile_version = SAVEFILE_VERSION_MAX return 1 @@ -229,6 +237,8 @@ S["UI_style_alpha"] >> UI_style_alpha S["item_animation_pref_level"] >> item_animation_pref_level S["pain_overlay_pref_level"] >> pain_overlay_pref_level + S["flash_overlay_pref"] >> flash_overlay_pref + S["crit_overlay_pref"] >> crit_overlay_pref S["stylesheet"] >> stylesheet S["window_skin"] >> window_skin S["fps"] >> fps @@ -273,11 +283,6 @@ S["co_affiliation"] >> affiliation S["yautja_status"] >> yautja_status S["synth_status"] >> synth_status - S["key_bindings"] >> key_bindings - check_keybindings() - - var/list/remembered_key_bindings - S["remembered_key_bindings"] >> remembered_key_bindings S["lang_chat_disabled"] >> lang_chat_disabled S["show_permission_errors"] >> show_permission_errors @@ -291,6 +296,10 @@ S["autofit_viewport"] >> auto_fit_viewport S["adaptive_zoom"] >> adaptive_zoom S["tooltips"] >> tooltips + S["key_bindings"] >> key_bindings + + var/list/remembered_key_bindings + S["remembered_key_bindings"] >> remembered_key_bindings //Sanitize ooccolor = sanitize_hexcolor(ooccolor, CONFIG_GET(string/ooc_color_normal)) @@ -313,6 +322,8 @@ UI_style_alpha = sanitize_integer(UI_style_alpha, 0, 255, initial(UI_style_alpha)) item_animation_pref_level = sanitize_integer(item_animation_pref_level, SHOW_ITEM_ANIMATIONS_NONE, SHOW_ITEM_ANIMATIONS_ALL, SHOW_ITEM_ANIMATIONS_ALL) pain_overlay_pref_level = sanitize_integer(pain_overlay_pref_level, PAIN_OVERLAY_BLURRY, PAIN_OVERLAY_LEGACY, PAIN_OVERLAY_BLURRY) + flash_overlay_pref = sanitize_integer(flash_overlay_pref, FLASH_OVERLAY_WHITE, FLASH_OVERLAY_DARK) + crit_overlay_pref = sanitize_integer(crit_overlay_pref, CRIT_OVERLAY_WHITE, CRIT_OVERLAY_DARK) window_skin = sanitize_integer(window_skin, 0, SHORT_REAL_LIMIT, initial(window_skin)) ghost_vision_pref = sanitize_inlist(ghost_vision_pref, list(GHOST_VISION_LEVEL_NO_NVG, GHOST_VISION_LEVEL_MID_NVG, GHOST_VISION_LEVEL_FULL_NVG), GHOST_VISION_LEVEL_MID_NVG) ghost_orbit = sanitize_inlist(ghost_orbit, GLOB.ghost_orbits, initial(ghost_orbit)) @@ -346,11 +357,11 @@ predator_h_style = sanitize_inlist(predator_h_style, GLOB.yautja_hair_styles_list, initial(predator_h_style)) predator_skin_color = sanitize_inlist(predator_skin_color, PRED_SKIN_COLOR, initial(predator_skin_color)) predator_flavor_text = predator_flavor_text ? sanitize_text(predator_flavor_text, initial(predator_flavor_text)) : initial(predator_flavor_text) - commander_status = sanitize_inlist(commander_status, whitelist_hierarchy, initial(commander_status)) + commander_status = sanitize_inlist(commander_status, GLOB.whitelist_hierarchy, initial(commander_status)) commander_sidearm = sanitize_inlist(commander_sidearm, (CO_GUNS + COUNCIL_CO_GUNS), initial(commander_sidearm)) affiliation = sanitize_inlist(affiliation, FACTION_ALLEGIANCE_USCM_COMMANDER, initial(affiliation)) - yautja_status = sanitize_inlist(yautja_status, whitelist_hierarchy + list("Elder"), initial(yautja_status)) - synth_status = sanitize_inlist(synth_status, whitelist_hierarchy, initial(synth_status)) + yautja_status = sanitize_inlist(yautja_status, GLOB.whitelist_hierarchy + list("Elder"), initial(yautja_status)) + synth_status = sanitize_inlist(synth_status, GLOB.whitelist_hierarchy, initial(synth_status)) key_bindings = sanitize_keybindings(key_bindings) remembered_key_bindings = sanitize_islist(remembered_key_bindings, null) hotkeys = sanitize_integer(hotkeys, FALSE, TRUE, TRUE) @@ -359,6 +370,9 @@ pref_job_slots = sanitize_islist(pref_job_slots, list()) vars["fps"] = fps + check_keybindings() + S["key_bindings"] << key_bindings + if(remembered_key_bindings) for(var/i in GLOB.keybindings_by_name) if(!(i in remembered_key_bindings)) @@ -409,6 +423,8 @@ S["tgui_say"] << tgui_say S["item_animation_pref_level"] << item_animation_pref_level S["pain_overlay_pref_level"] << pain_overlay_pref_level + S["flash_overlay_pref"] << flash_overlay_pref + S["crit_overlay_pref"] << crit_overlay_pref S["stylesheet"] << stylesheet S["be_special"] << be_special S["default_slot"] << default_slot @@ -580,12 +596,16 @@ S["preferred_squad"] >> preferred_squad S["preferred_armor"] >> preferred_armor - S["nanotrasen_relation"] >> nanotrasen_relation + S["weyland_yutani_relation"] >> weyland_yutani_relation //S["skin_style"] >> skin_style S["uplinklocation"] >> uplinklocation S["exploit_record"] >> exploit_record + var/tutorial_string = "" + S["completed_tutorials"] >> tutorial_string + tutorial_savestring_to_list(tutorial_string) + S["ds_camo"] >> dropship_camo S["plat_name"] >> platoon_name @@ -597,7 +617,7 @@ if(isnull(language)) language = "None" if(isnull(spawnpoint)) spawnpoint = "Arrivals Shuttle" - if(isnull(nanotrasen_relation)) nanotrasen_relation = initial(nanotrasen_relation) + if(isnull(weyland_yutani_relation)) weyland_yutani_relation = initial(weyland_yutani_relation) if(!real_name) real_name = random_name(gender) be_random_name = sanitize_integer(be_random_name, 0, 1, initial(be_random_name)) be_random_body = sanitize_integer(be_random_body, 0, 1, initial(be_random_body)) @@ -634,7 +654,7 @@ b_eyes = sanitize_integer(b_eyes, 0, 255, initial(b_eyes)) underwear = sanitize_inlist(underwear, gender == MALE ? GLOB.underwear_m : GLOB.underwear_f, initial(underwear)) undershirt = sanitize_inlist(undershirt, gender == MALE ? GLOB.undershirt_m : GLOB.undershirt_f, initial(undershirt)) - backbag = sanitize_integer(backbag, 1, backbaglist.len, initial(backbag)) + backbag = sanitize_integer(backbag, 1, length(GLOB.backbaglist), initial(backbag)) preferred_armor = sanitize_inlist(preferred_armor, GLOB.armor_style_list, "Random") //b_type = sanitize_text(b_type, initial(b_type)) @@ -742,7 +762,7 @@ S["religion"] << religion S["traits"] << traits - S["nanotrasen_relation"] << nanotrasen_relation + S["weyland_yutani_relation"] << weyland_yutani_relation S["preferred_squad"] << preferred_squad S["preferred_armor"] << preferred_armor //S["skin_style"] << skin_style @@ -750,6 +770,8 @@ S["uplinklocation"] << uplinklocation S["exploit_record"] << exploit_record + S["completed_tutorials"] << tutorial_list_to_savestring() + S["ds_camo"] << dropship_camo S["plat_name"] << platoon_name @@ -783,7 +805,7 @@ addedbind = TRUE if(!addedbind) notadded += kb - save_preferences() + if(length(notadded)) addtimer(CALLBACK(src, PROC_REF(announce_conflict), notadded), 5 SECONDS) diff --git a/code/modules/client/preferences_toggles.dm b/code/modules/client/preferences_toggles.dm index 49e5ab34b6..03d3a65202 100644 --- a/code/modules/client/preferences_toggles.dm +++ b/code/modules/client/preferences_toggles.dm @@ -15,7 +15,7 @@ if(!admin_holder) return prefs.toggles_sound ^= SOUND_ADMINHELP prefs.save_preferences() - to_chat(usr,SPAN_BOLDNOTICE( "You will [(prefs.toggles_sound & SOUND_ADMINHELP) ? "now" : "no longer"] hear a sound when adminhelps arrive.")) + to_chat(usr, SPAN_BOLDNOTICE("You will [(prefs.toggles_sound & SOUND_ADMINHELP) ? "now" : "no longer"] hear a sound when adminhelps arrive.")) /client/proc/toggleprayers() set name = "Show/Hide Prayers" @@ -25,6 +25,22 @@ prefs.save_preferences() to_chat(src, SPAN_BOLDNOTICE("You will [(prefs.toggles_chat & CHAT_PRAYER) ? "now" : "no longer"] see prayerchat.")) +/client/verb/toggle_observer_announcement_sounds() + set name = "Hear/Silence Ghost Announcements" + set category = "Preferences.Sound" + set desc = "Toggle hearing a notification of announcements while being an observer." + prefs.toggles_sound ^= SOUND_OBSERVER_ANNOUNCEMENTS + prefs.save_preferences() + to_chat(usr, SPAN_BOLDNOTICE("You will [(prefs.toggles_sound & SOUND_OBSERVER_ANNOUNCEMENTS) ? "now" : "no longer"] hear announcement sounds as an observer.")) + +/client/verb/toggle_fax_machine_sounds() + set name = "Hear/Silence Ghost Fax Machines" + set category = "Preferences.Sound" + set desc = "Toggle hearing a notification of faxes while being an observer." + prefs.toggles_sound ^= SOUND_FAX_MACHINE + prefs.save_preferences() + to_chat(usr, SPAN_BOLDNOTICE("You will [(prefs.toggles_sound & SOUND_FAX_MACHINE) ? "now" : "no longer"] hear a fax sounds as an observer.")) + /client/verb/toggletitlemusic() set name = "Hear/Silence LobbyMusic" set category = "Preferences.Sound" @@ -210,7 +226,7 @@ prefs.toggle_prefs ^= TOGGLE_FULLSCREEN prefs.save_preferences() - toggle_fullscreen(prefs.toggle_prefs & TOGGLE_FULLSCREEN) + update_fullscreen() /client/verb/toggle_ambient_occlusion() set name = "Toggle Ambient Occlusion" @@ -256,6 +272,7 @@ "Toggle Help Intent Safety
      ", "Toggle Guns Auto-Ejecting Magazines
      ", "Toggle Guns Auto-Ejecting Magazines to Your Hands
      ", + "Toggle Semi-Auto Ammo Counter
      ", "Toggle 'Unload Weapon' Ejecting Magazines to Your Hands
      ", "Toggle Automatic Punctuation
      ", "Toggle Middle Mouse Ability Activation
      ", @@ -267,6 +284,8 @@ "Toggle Item Animations
      ", "Toggle Admin Sound Types
      ", "Set Eye Blur Type
      ", + "Set Flash Type
      ", + "Set Crit Type
      ", ) var/dat = "" @@ -305,6 +324,12 @@ to_chat(src, SPAN_BOLDNOTICE("Guns with auto-ejectors will automatically eject their magazines.")) prefs.save_preferences() + +/client/proc/toggle_ammo_display_type() + prefs.toggle_prefs ^= TOGGLE_AMMO_DISPLAY_TYPE + to_chat(usr, SPAN_NOTICE("Guns in semi-automatic mode will now display the ammo on every [SPAN_BOLD(prefs.toggle_prefs & TOGGLE_AMMO_DISPLAY_TYPE ? "fifth bullet and when the mag has less than 15 rounds left" : "single bullet")]")) + prefs.save_preferences() + /client/proc/toggle_auto_eject_to_hand() // Toggle whether guns with auto-ejectors will eject their magazines to your offhand prefs.toggle_prefs ^= TOGGLE_AUTO_EJECT_MAGAZINE_TO_HAND if(prefs.toggle_prefs & TOGGLE_AUTO_EJECT_MAGAZINE_TO_HAND) @@ -442,6 +467,7 @@ else CRASH("receive_random_tip() failed: null message") +/// Toggle in character preferences and toggle preferences to configure what kind of blur overlay is used in game; Either blurry, impaired, or legacy. /client/proc/set_eye_blur_type() var/result = tgui_alert(src, "What type of eye blur do you want?", "What type of eye blur do you want?", list("Blurry", "Impair", "Legacy")) if(result == "Blurry") @@ -455,6 +481,28 @@ to_chat(src, SPAN_NOTICE("Your vision will now have a legacy blurring effect. This is not recommended!")) prefs.save_preferences() +/// Toggle in character preferences and toggle preferences to configure what kind of flash overlay is used in game; Either white or black. +/client/proc/set_flash_type() + var/result = tgui_alert(src, "What type of flash overlay do you want?", "What type of flash overlay do you want?", list("White", "Dark")) + if(result == "White") + prefs.flash_overlay_pref = FLASH_OVERLAY_WHITE + to_chat(src, SPAN_NOTICE("If flashed your vision will now be white.")) + else if(result == "Dark") + prefs.flash_overlay_pref = FLASH_OVERLAY_DARK + to_chat(src, SPAN_NOTICE("If flashed your vision will now be dark.")) + prefs.save_preferences() + +/// Toggle in character preferences and toggle preferences to configure what kind of crit overlay is used in game; Either white or grey. +/client/proc/set_crit_type() + var/result = tgui_alert(src, "What type of crit overlay do you want?", "What type of crit overlay do you want?", list("White", "Dark")) + if(result == "White") + prefs.crit_overlay_pref = CRIT_OVERLAY_WHITE + to_chat(src, SPAN_NOTICE("If in critical condition your vision will now be white.")) + else if(result == "Dark") + prefs.crit_overlay_pref = CRIT_OVERLAY_DARK + to_chat(src, SPAN_NOTICE("If in critical condition your vision will now be dark.")) + prefs.save_preferences() + /client/verb/toggle_tgui_say() set name = "Toggle Say Input Style" set category = "Preferences.UI" @@ -546,7 +594,7 @@ set category = "Preferences" set desc = "Shows ghost-related preferences." - add_verb(src, ghost_prefs_verbs) + add_verb(src, GLOB.ghost_prefs_verbs) remove_verb(src, /client/proc/show_ghost_preferences) /client/proc/hide_ghost_preferences() // Hides ghost-related preferences. @@ -554,7 +602,7 @@ set category = "Preferences" set desc = "Hides ghost-related preferences." - remove_verb(src, ghost_prefs_verbs) + remove_verb(src, GLOB.ghost_prefs_verbs) add_verb(src, /client/proc/show_ghost_preferences) /client/proc/toggle_ghost_hivemind() @@ -601,6 +649,14 @@ to_chat(src,SPAN_BOLDNOTICE( "As a ghost, you will now [(prefs.toggles_chat & CHAT_GHOSTRADIO) ? "hear all radio chat in the world" : "only hear from nearby speakers"].")) prefs.save_preferences() +/client/proc/toggle_ghost_spyradio() + set name = "Toggle GhostSpyRadio" + set category = "Preferences.Ghost" + set desc = "Toggle between hearing listening devices or not." + prefs.toggles_chat ^= CHAT_LISTENINGBUG + to_chat(src,SPAN_BOLDNOTICE( "As a ghost, you will [(prefs.toggles_chat & CHAT_LISTENINGBUG) ? "now" : "no longer"] hear listening devices as a ghost.")) + prefs.save_preferences() + /client/proc/toggle_ghost_hud() set name = "Toggle Ghost HUDs" set category = "Preferences.Ghost" @@ -620,21 +676,21 @@ var/datum/mob_hud/H switch(hud_choice) if("Medical HUD") - H = huds[MOB_HUD_MEDICAL_OBSERVER] + H = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] if("Security HUD") - H = huds[MOB_HUD_SECURITY_ADVANCED] + H = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] if("Squad HUD") - H = huds[MOB_HUD_FACTION_OBSERVER] + H = GLOB.huds[MOB_HUD_FACTION_OBSERVER] if("Xeno Status HUD") - H = huds[MOB_HUD_XENO_STATUS] + H = GLOB.huds[MOB_HUD_XENO_STATUS] if("Faction UPP HUD") - H = huds[MOB_HUD_FACTION_UPP] + H = GLOB.huds[MOB_HUD_FACTION_UPP] if("Faction Wey-Yu HUD") - H = huds[MOB_HUD_FACTION_WY] + H = GLOB.huds[MOB_HUD_FACTION_WY] if("Faction TWE HUD") - H = huds[MOB_HUD_FACTION_TWE] + H = GLOB.huds[MOB_HUD_FACTION_TWE] if("Faction CLF HUD") - H = huds[MOB_HUD_FACTION_CLF] + H = GLOB.huds[MOB_HUD_FACTION_CLF] observer_user.HUD_toggled[hud_choice] = prefs.observer_huds[hud_choice] if(observer_user.HUD_toggled[hud_choice]) @@ -684,7 +740,7 @@ GLOBAL_LIST_INIT(ghost_orbits, list(GHOST_ORBIT_CIRCLE, GHOST_ORBIT_TRIANGLE, GH set name = "Show Combat Chat Prefs" set desc = "Shows additional chat preferences for combat and ghost messages." - add_verb(src, combat_chat_prefs_verbs) + add_verb(src, GLOB.combat_chat_prefs_verbs) remove_verb(src, /client/proc/show_combat_chat_preferences) /client/proc/hide_combat_chat_preferences() // Hides additional chat logs preferences. @@ -692,7 +748,7 @@ GLOBAL_LIST_INIT(ghost_orbits, list(GHOST_ORBIT_CIRCLE, GHOST_ORBIT_TRIANGLE, GH set name = "Hide Combat Chat Prefs" set desc = "Hides additional chat preferences for combat and ghost messages." - remove_verb(src, combat_chat_prefs_verbs) + remove_verb(src, GLOB.combat_chat_prefs_verbs) add_verb(src, /client/proc/show_combat_chat_preferences) /client/proc/toggle_chat_shooting() @@ -743,22 +799,23 @@ GLOBAL_LIST_INIT(ghost_orbits, list(GHOST_ORBIT_CIRCLE, GHOST_ORBIT_TRIANGLE, GH to_chat(src, SPAN_BOLDNOTICE("As a player, you will now [(prefs.chat_display_preferences & CHAT_TYPE_PAIN) ? "see you being in pain messages" : "never see you being in pain messages"].")) prefs.save_preferences() -var/list/combat_chat_prefs_verbs = list( +GLOBAL_LIST_INIT(combat_chat_prefs_verbs, list( /client/proc/toggle_chat_shooting, /client/proc/toggle_chat_xeno_attack, /client/proc/toggle_chat_xeno_armor, /client/proc/toggle_chat_someone_hit, /client/proc/toggle_chat_you_hit, /client/proc/toggle_chat_you_pain, - /client/proc/hide_combat_chat_preferences) + /client/proc/hide_combat_chat_preferences)) -var/list/ghost_prefs_verbs = list( +GLOBAL_LIST_INIT(ghost_prefs_verbs, list( /client/proc/toggle_ghost_ears, /client/proc/toggle_ghost_sight, /client/proc/toggle_ghost_radio, + /client/proc/toggle_ghost_spyradio, /client/proc/toggle_ghost_hivemind, /client/proc/deadchat, /client/proc/toggle_ghost_hud, /client/proc/toggle_ghost_health_scan, /client/proc/pick_ghost_orbit, - /client/proc/hide_ghost_preferences) + /client/proc/hide_ghost_preferences)) diff --git a/code/modules/client/tgui_macro.dm b/code/modules/client/tgui_macro.dm index de44b3b523..28939fed69 100644 --- a/code/modules/client/tgui_macro.dm +++ b/code/modules/client/tgui_macro.dm @@ -23,11 +23,12 @@ GLOBAL_LIST_EMPTY(ui_data_keybindings) /datum/tgui_macro/ui_data(mob/user) . = list() - .["keybinds"] = prefs.key_bindings + .["player_keybinds"] = prefs.key_bindings /datum/tgui_macro/ui_static_data(mob/user) . = list() .["glob_keybinds"] = GLOB.ui_data_keybindings + .["byond_keymap"] = GLOB._kbMap /datum/tgui_macro/ui_state(mob/user) return GLOB.always_state @@ -101,6 +102,7 @@ GLOBAL_LIST_EMPTY(ui_data_keybindings) prefs.save_preferences() INVOKE_ASYNC(owner, /client/proc/set_macros) return TRUE + if("clear_keybind") var/list/kbinds = prefs.key_bindings var/kb_name = params["keybinding"] @@ -111,13 +113,15 @@ GLOBAL_LIST_EMPTY(ui_data_keybindings) for(var/key in keys) if(kbinds[key]) kbinds[key] -= kb_name - kbinds["Unbound"] += kb_name if(!length(kbinds[key])) kbinds -= key + // Add the keybind name to the 'unbound' list if it's not already in there. + kbinds["Unbound"] |= kb_name prefs.save_preferences() INVOKE_ASYNC(owner, /client/proc/set_macros) return TRUE + if("clear_all_keybinds") var/choice = tgui_alert(owner, "Would you prefer 'hotkey' or 'classic' defaults?", "Setup keybindings", list("Hotkey", "Classic", "Cancel")) if(choice == "Cancel") diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index bd87746545..323b5ead1d 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -26,9 +26,9 @@ for(var/obj/item/clothing/accessory/accessory in accessories) if(accessory.high_visibility) ties += "\a [accessory.get_examine_line(user)]" - if(ties.len) + if(length(ties)) .+= " with [english_list(ties)] attached" - if(LAZYLEN(accessories) > ties.len) + if(LAZYLEN(accessories) > length(ties)) .+= ". \[See accessories\]" /obj/item/clothing/Topic(href, href_list) @@ -48,6 +48,11 @@ return ..() +/obj/item/clothing/hear_talk(mob/M, msg) + for(var/obj/item/clothing/accessory/attached in accessories) + attached.hear_talk(M, msg) + ..() + /obj/item/clothing/proc/get_armor(armortype) var/armor_total = 0 var/armor_count = 0 @@ -130,12 +135,12 @@ /obj/item/clothing/ears/earmuffs/New() . = ..() - LAZYADD(objects_of_interest, src) + LAZYADD(GLOB.objects_of_interest, src) /obj/item/clothing/ears/earmuffs/Destroy() . = ..() - LAZYREMOVE(objects_of_interest, src) + LAZYREMOVE(GLOB.objects_of_interest, src) /////////////////////////////////////////////////////////////////////// @@ -279,7 +284,7 @@ tankcheck = list(C.r_hand, C.l_hand, C.back) var/best = 0 var/bestpressure = 0 - for(var/i=1, i 1) - A = tgui_input_list(usr, "Select an accessory to remove from [src]", "Remove accessory", removables) + if(!ass.removable) + continue + var/capitalized_name = capitalize_first_letters(ass.name) + removables[capitalized_name] = image(icon = ass.icon, icon_state = ass.icon_state) + choice_to_accessory[capitalized_name] = ass + + if(LAZYLEN(removables) > 1) + var/use_radials = user.client.prefs?.no_radials_preference ? FALSE : TRUE + var/choice = use_radials ? show_radial_menu(user, targetmob, removables, require_near = FALSE) : tgui_input_list(user, "Select an accessory to remove from [src]", "Remove accessory", removables) + accessory = choice_to_accessory[choice] else - A = LAZYACCESS(accessories, 1) - if(!usr.Adjacent(src)) - to_chat(usr, SPAN_WARNING("You're too far away!")) + accessory = choice_to_accessory[removables[1]] + if(!user.Adjacent(src)) + to_chat(user, SPAN_WARNING("You're too far away!")) return - src.remove_accessory(usr,A) - removables -= A - if(!removables.len) - verbs -= /obj/item/clothing/proc/removetie_verb + + return accessory /obj/item/clothing/emp_act(severity) . = ..() diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 0fbca14801..44d1e0a8bd 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -68,7 +68,7 @@ update_clothing_icon() if(hud_type) - var/datum/mob_hud/MH = huds[hud_type] + var/datum/mob_hud/MH = GLOB.huds[hud_type] if(active) MH.add_hud_to(H, src) playsound(H, 'sound/handling/hud_on.ogg', 25, 1) @@ -87,6 +87,36 @@ if(istype(A, /datum/action/item_action/toggle)) A.update_button_icon() +/obj/item/clothing/glasses/proc/try_make_offhand_prescription(mob/user) + if(!prescription) + return FALSE + + var/obj/item/clothing/glasses/offhand = user.get_inactive_hand() + if(istype(offhand) && !offhand.prescription) + if(tgui_alert(user, "Do you wish to take out the prescription lenses and put them in [offhand]?", "Insert Prescription Lenses", list("Yes", "No")) == "Yes") + if(QDELETED(src) || offhand != user.get_inactive_hand()) + return FALSE + offhand.prescription = TRUE + offhand.AddElement(/datum/element/poor_eyesight_correction) + offhand.desc += " Fitted with prescription lenses." + user.visible_message(SPAN_DANGER("[user] takes the lenses out of [src] and puts them in [offhand]."), SPAN_NOTICE("You take the lenses out of [src] and put them in [offhand].")) + qdel(src) + return TRUE + + return FALSE + +/obj/item/clothing/glasses/sunglasses/prescription/attack_self(mob/user) + if(try_make_offhand_prescription(user)) + return + + return ..() + +/obj/item/clothing/glasses/regular/attack_self(mob/user) + if(try_make_offhand_prescription(user)) + return + + return ..() + /obj/item/clothing/glasses/equipped(mob/user, slot) if(active && slot == WEAR_EYES) if(!can_use_active_effect(user)) @@ -94,7 +124,7 @@ to_chat(user, SPAN_WARNING("You have no idea what any of the data means and power it off before it makes you nauseated.")) else if(hud_type) - var/datum/mob_hud/MH = huds[hud_type] + var/datum/mob_hud/MH = GLOB.huds[hud_type] MH.add_hud_to(user, src) user.update_sight() ..() @@ -102,7 +132,7 @@ /obj/item/clothing/glasses/dropped(mob/living/carbon/human/user) if(hud_type && active && istype(user)) if(src == user.glasses) //dropped is called before the inventory reference is updated. - var/datum/mob_hud/H = huds[hud_type] + var/datum/mob_hud/H = GLOB.huds[hud_type] H.remove_hud_from(user, src) user.glasses = null user.update_inv_glasses() @@ -191,8 +221,8 @@ flags_equip_slot = SLOT_EYES|SLOT_FACE /obj/item/clothing/glasses/regular/hipster - name = "Sunglasses" - desc = "They cut the sun and keep things fun. Why would you ever wear these indoors, or on a night operation. Are you trying to get yourself hurt?" + name = "Prescription Glasses" + desc = "Boring glasses, makes you look smart and potentially reputable." icon_state = "hipster_glasses" item_state = "hipster_glasses" flags_equip_slot = SLOT_EYES|SLOT_FACE @@ -225,7 +255,7 @@ desc = "The Corps may call them Regulation Prescription Glasses but you know them as Rut Prevention Glasses. These ones actually have a proper prescribed lens." icon_state = "mBCG" item_state = "mBCG" - prescription = 1 + prescription = TRUE flags_equip_slot = SLOT_EYES|SLOT_FACE /obj/item/clothing/glasses/m42_goggles @@ -311,7 +341,7 @@ /obj/item/clothing/glasses/disco_fever/proc/apply_discovision(mob/user) //Caramelldansen HUD overlay. //Use of this filter in armed conflict is in direct contravention of the Geneva Suggestions (2120 revision) - //Colours are based on a bit of the music video. Original version was a rainbow with #c20000 and #db6c03 as well. + //Colors are based on a bit of the music video. Original version was a rainbow with #c20000 and #db6c03 as well. //Animate the obj and onmob in sync with the client. for(var/I in list(obj_glass_overlay, mob_glass_overlay)) @@ -331,35 +361,35 @@ if(!user.client) //Shouldn't happen but can't hurt to check. return - var/base_colour + var/base_colors if(!user.client.color) //No set client color. - base_colour = color_matrix_saturation(1.35) //Crank up the saturation and get ready to party. + base_colors = color_matrix_saturation(1.35) //Crank up the saturation and get ready to party. else if(istext(user.client.color)) //Hex color string. - base_colour = color_matrix_multiply(color_matrix_from_string(user.client.color), color_matrix_saturation(1.35)) - else //Colour matrix. - base_colour = color_matrix_multiply(user.client.color, color_matrix_saturation(1.35)) + base_colors = color_matrix_multiply(color_matrix_from_string(user.client.color), color_matrix_saturation(1.35)) + else //Color matrix. + base_colors = color_matrix_multiply(user.client.color, color_matrix_saturation(1.35)) var/list/colours = list( - "yellow" = color_matrix_multiply(base_colour, color_matrix_from_string("#d4c218")), - "green" = color_matrix_multiply(base_colour, color_matrix_from_string("#2dc404")), - "cyan" = color_matrix_multiply(base_colour, color_matrix_from_string("#2ac1db")), - "blue" = color_matrix_multiply(base_colour, color_matrix_from_string("#005BF7")), - "indigo" = color_matrix_multiply(base_colour, color_matrix_from_string("#b929f7")) + "yellow" = color_matrix_multiply(base_colors, color_matrix_from_string("#d4c218")), + "green" = color_matrix_multiply(base_colors, color_matrix_from_string("#2dc404")), + "cyan" = color_matrix_multiply(base_colors, color_matrix_from_string("#2ac1db")), + "blue" = color_matrix_multiply(base_colors, color_matrix_from_string("#005BF7")), + "indigo" = color_matrix_multiply(base_colors, color_matrix_from_string("#b929f7")) ) //Animate the victim's client. animate(user.client, color = colours["indigo"], time = 0.3 SECONDS, loop = -1) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) animate(color = colours["cyan"], time = 0.3 SECONDS) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) animate(color = colours["yellow"], time = 0.3 SECONDS) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) animate(color = colours["green"], time = 0.3 SECONDS) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) animate(color = colours["blue"], time = 0.3 SECONDS) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) animate(color = colours["yellow"], time = 0.3 SECONDS) - animate(color = base_colour, time = 0.3 SECONDS) + animate(color = base_colors, time = 0.3 SECONDS) /obj/item/clothing/glasses/disco_fever/dropped(mob/living/carbon/human/user) . = ..() @@ -404,6 +434,14 @@ active_icon_state = "mgogglesblk_down" inactive_icon_state = "mgogglesblk" +/obj/item/clothing/glasses/mgoggles/black/prescription + name = "prescription black marine ballistic goggles" + desc = "Standard issue USCM goggles. While commonly found mounted atop M10 pattern helmets, they are also capable of preventing insects, dust, and other things from getting into one's eyes. This one has black tinted lenses. ntop of that, these ones contain prescription lenses." + icon_state = "mgogglesblk" + active_icon_state = "mgogglesblk_down" + inactive_icon_state = "mgogglesblk" + prescription = TRUE + /obj/item/clothing/glasses/mgoggles/orange name = "orange marine ballistic goggles" desc = "Standard issue USCM goggles. While commonly found mounted atop M10 pattern helmets, they are also capable of preventing insects, dust, and other things from getting into one's eyes. This one has amber colored day lenses." @@ -411,6 +449,14 @@ active_icon_state = "mgogglesorg_down" inactive_icon_state = "mgogglesorg" +/obj/item/clothing/glasses/mgoggles/orange/prescription + name = "prescription orange marine ballistic goggles" + desc = "Standard issue USCM goggles. While commonly found mounted atop M10 pattern helmets, they are also capable of preventing insects, dust, and other things from getting into one's eyes. This one has amber colored day lenses." + icon_state = "mgogglesorg" + active_icon_state = "mgogglesorg_down" + inactive_icon_state = "mgogglesorg" + prescription = TRUE + /obj/item/clothing/glasses/mgoggles/v2 name = "M1A1 marine ballistic goggles" desc = "Newer issue USCM goggles. While commonly found mounted atop M10 pattern helmets, they are also capable of preventing insects, dust, and other things from getting into one's eyes. This version has larger lenses." @@ -418,6 +464,14 @@ active_icon_state = "mgoggles2_down" inactive_icon_state = "mgoggles2" +/obj/item/clothing/glasses/mgoggles/v2/prescription + name = "prescription M1A1 marine ballistic goggles" + desc = "Newer issue USCM goggles. While commonly found mounted atop M10 pattern helmets, they are also capable of preventing insects, dust, and other things from getting into one's eyes. This version has larger lenses." + icon_state = "mgoggles2" + active_icon_state = "mgoggles2_down" + inactive_icon_state = "mgoggles2" + prescription = TRUE + /obj/item/clothing/glasses/mgoggles/on_enter_storage(obj/item/storage/internal/S) ..() diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm index db4669ae14..88b2bb7825 100644 --- a/code/modules/clothing/glasses/hud.dm +++ b/code/modules/clothing/glasses/hud.dm @@ -40,6 +40,7 @@ return TRUE /datum/action/item_action/view_publications/action_activate() + . = ..() var/obj/item/clothing/glasses/hud/health/hud = holder_item hud.tgui_interact(owner) @@ -48,7 +49,7 @@ /obj/item/clothing/glasses/hud/health/ui_data(mob/user) var/list/data = list( - "published_documents" = chemical_data.research_publications, + "published_documents" = GLOB.chemical_data.research_publications, "terminal_view" = FALSE ) return data @@ -74,7 +75,7 @@ if ("read_document") var/print_type = params["print_type"] var/print_title = params["print_title"] - var/obj/item/paper/research_report/report = chemical_data.get_report(print_type, print_title) + var/obj/item/paper/research_report/report = GLOB.chemical_data.get_report(print_type, print_title) if(report) report.read_paper(user) return @@ -98,7 +99,7 @@ return if(href_list["read_document"]) - var/obj/item/paper/research_report/report = chemical_data.research_documents[href_list["print_type"]][href_list["print_title"]] + var/obj/item/paper/research_report/report = GLOB.chemical_data.research_documents[href_list["print_type"]][href_list["print_title"]] if(report) report.read_paper(user) diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm index 8b3a1551cd..297254ec67 100644 --- a/code/modules/clothing/glasses/night.dm +++ b/code/modules/clothing/glasses/night.dm @@ -151,7 +151,7 @@ far_sight = FALSE if(user) if(user.client) - user.client.change_view(world_view_size, src) + user.client.change_view(GLOB.world_view_size, src) STOP_PROCESSING(SSobj, src) var/datum/action/item_action/m56_goggles/far_sight/FT = locate(/datum/action/item_action/m56_goggles/far_sight) in actions @@ -185,6 +185,7 @@ button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) /datum/action/item_action/m56_goggles/far_sight/action_activate() + . = ..() if(target) var/obj/item/clothing/glasses/night/m56_goggles/G = target G.set_far_sight(owner, !G.far_sight) diff --git a/code/modules/clothing/gloves/boom_glove.dm b/code/modules/clothing/gloves/boom_glove.dm index 8cc3e8d910..ddddc5ecef 100644 --- a/code/modules/clothing/gloves/boom_glove.dm +++ b/code/modules/clothing/gloves/boom_glove.dm @@ -12,7 +12,7 @@ var/cooldown = 50 var/last_use = 0 - actions_types = list(/datum/action/item_action) + actions_types = list(/datum/action/item_action/toggle/use) /obj/item/clothing/gloves/marine/boom_glove/item_action_slot_check(mob/user, slot) if(!ishuman(user)) return FALSE diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index e3658a64c2..3f8e2080f3 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -1,8 +1,8 @@ /obj/item/clothing/gloves/yellow desc = "These gloves will protect the wearer from electric shock." name = "insulated gloves" - icon_state = "lightbrown" - item_state = "lightbrowngloves" + icon_state = "insulated" + item_state = "insulated" siemens_coefficient = 0 permeability_coefficient = 0.05 flags_cold_protection = BODY_FLAG_HANDS @@ -13,8 +13,8 @@ /obj/item/clothing/gloves/fyellow //Cheap Chinese Crap desc = "These gloves are cheap copies of the coveted gloves, no way this can end badly." name = "budget insulated gloves" - icon_state = "lightbrown" - item_state = "lightbrowngloves" + icon_state = "insulated" + item_state = "insulated" siemens_coefficient = 1 //Set to a default of 1, gets overridden in New() permeability_coefficient = 0.05 diff --git a/code/modules/clothing/gloves/marine_gloves.dm b/code/modules/clothing/gloves/marine_gloves.dm index 16fbc969b5..d743303314 100644 --- a/code/modules/clothing/gloves/marine_gloves.dm +++ b/code/modules/clothing/gloves/marine_gloves.dm @@ -38,8 +38,15 @@ /obj/item/clothing/gloves/marine/insulated name = "marine insulated gloves" desc = "These gloves will protect the wearer from electric shock." - icon_state = "lightbrown" - item_state = "lightbrowngloves" + icon_state = "insulated" + item_state = "insulated" + siemens_coefficient = 0 + +/obj/item/clothing/gloves/marine/insulated/black + name = "marine insulated black gloves" + desc = "These marine gloves will protect the wearer from electric shocks and shrapnal. Standard issue for properly-equipped Marines." + icon_state = "black" + item_state = "black" /obj/item/clothing/gloves/marine/black name = "marine black combat gloves" diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index d94789651b..3d0471a482 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -57,14 +57,15 @@ return set_light_on(toggle_on) + + update_icon() + if(user == loc) user.update_inv_head() for(var/datum/action/current_action as anything in actions) current_action.update_button_icon() - update_icon() - /obj/item/clothing/head/hardhat/attack_alien(mob/living/carbon/xenomorph/attacking_xeno) if(!can_be_broken) return diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index e5398bab46..4e135a7918 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -81,6 +81,9 @@ /obj/item/clothing/head/beret/cm/black icon_state = "beret_black" +/obj/item/clothing/head/beret/cm/green + icon_state = "beret_green" + /obj/item/clothing/head/beret/cm/alpha desc = "Often found atop heads, slightly less found on those still attached." icon_state = "beret_alpha" @@ -109,6 +112,16 @@ desc = "Looks more intellegent than the person wearing it." icon_state = "beret_intel" +/obj/item/clothing/head/beret/cm/white/civilian + name = "White Beret" + desc = "A nice fashionable beret, popular with executives." + icon_state = "s_beret" + +/obj/item/clothing/head/beret/cm/black/civilian + name = "Black Beret" + desc = "A nice fashionable beret, popular with executives." + icon_state = "beret_black" + /obj/item/clothing/head/headband name = "headband" @@ -214,8 +227,11 @@ /obj/item/clothing/glasses/mgoggles = HAT_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/prescription = HAT_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/black = HAT_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/black/prescription = HAT_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/orange = HAT_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/orange/prescription = HAT_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/v2 = HAT_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/v2/prescription = HAT_GARB_RELAY_ICON_STATE, /obj/item/prop/helmetgarb/helmet_nvg = HAT_GARB_RELAY_ICON_STATE, /obj/item/prop/helmetgarb/helmet_nvg/cosmetic = HAT_GARB_RELAY_ICON_STATE, /obj/item/prop/helmetgarb/helmet_nvg/marsoc = HAT_GARB_RELAY_ICON_STATE, @@ -383,10 +399,8 @@ /obj/item/clothing/head/cmcap/reporter name = "combat correspondent cap" desc = "A faithful cap for any terrain war correspondents may find themselves in." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_flagcap" - item_state = "wc_flagcap" - contained_sprite = TRUE + icon_state = "cc_flagcap" + item_state = "cc_flagcap" flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE flags_marine_hat = HAT_GARB_OVERLAY @@ -448,6 +462,10 @@ icon_state = "coblackberet" desc = "A beret with the USCM Military Police insignia emblazoned on it." +/obj/item/clothing/head/beret/marine/mp/provost/chief + name = "\improper USCM provost command beret" + icon_state = "pvciberet" + /obj/item/clothing/head/beret/marine/mp/tis name = "\improper UAAC-TIS Special Agent Beret" icon_state = "berettis" @@ -536,6 +554,15 @@ desc = "A beret with the lieutenant insignia emblazoned on it. It inspires a feeling of respect." icon_state = "beret_badge" +/obj/item/clothing/head/beret/marine/ro + name = "\improper USCM quartermaster beret" + desc = "A beret with the sergeant insignia emblazoned on it. It symbolizes hard work and shady business." + icon = 'icons/obj/items/clothing/cm_hats.dmi' + icon_state = "ro_beret" + item_icons = list( + WEAR_HEAD = 'icons/mob/humans/onmob/head_1.dmi' + ) + //==========================//PROTECTIVE\\===============================\\ //=======================================================================\\ diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 07fc36b7a8..caa38d8888 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -234,7 +234,6 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/reagent_container/food/drinks/flask = "helmet_flask", /obj/item/reagent_container/food/drinks/flask/marine = "helmet_flask", /obj/item/reagent_container/food/snacks/eat_bar = "helmet_snack_eat", - /obj/item/reagent_container/food/snacks/microwavable/packaged_burrito = "helmet_snack_burrito", /obj/item/reagent_container/food/snacks/mushroompizzaslice = "pizza", // Fuck whoever put these under different paths for some REASON /obj/item/reagent_container/food/snacks/vegetablepizzaslice = "pizza", /obj/item/reagent_container/food/snacks/meatpizzaslice = "pizza", @@ -249,9 +248,12 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( // EYEWEAR /obj/item/clothing/glasses/mgoggles = HELMET_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/v2 = HELMET_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/v2/prescription = HELMET_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/prescription = HELMET_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/black = HELMET_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/black/prescription = HELMET_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/mgoggles/orange = HELMET_GARB_RELAY_ICON_STATE, + /obj/item/clothing/glasses/mgoggles/orange/prescription = HELMET_GARB_RELAY_ICON_STATE, /obj/item/clothing/glasses/sunglasses = "sunglasses", /obj/item/clothing/glasses/sunglasses/prescription = "sunglasses", /obj/item/clothing/glasses/sunglasses/aviator = "aviator", @@ -332,6 +334,15 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/toy/crayon/blue = "crayonblue", /obj/item/toy/crayon/purple = "crayonpurple", /obj/item/toy/crayon/rainbow = "crayonrainbow", + /obj/item/toy/crayon/pride/trans = "crayontrans", + /obj/item/toy/crayon/pride/gay = "crayongay", + /obj/item/toy/crayon/pride/lesbian = "crayonlesbian", + /obj/item/toy/crayon/pride/bi = "crayonbi", + /obj/item/toy/crayon/pride/pan = "crayonpan", + /obj/item/toy/crayon/pride/ace = "crayonace", + /obj/item/toy/crayon/pride/trans = "crayontrans", + /obj/item/toy/crayon/pride/enby = "crayonenby", + /obj/item/toy/crayon/pride/fluid = "crayonfluid", /obj/item/paper = "paper", /obj/item/device/flashlight/flare = "flare", /obj/item/clothing/head/headset = "headset", @@ -361,7 +372,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( armor_melee = CLOTHING_ARMOR_MEDIUM armor_bullet = CLOTHING_ARMOR_MEDIUM armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_LOW armor_bomb = CLOTHING_ARMOR_LOW armor_bio = CLOTHING_ARMOR_MEDIUM armor_rad = CLOTHING_ARMOR_LOW @@ -373,7 +384,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( var/obj/structure/machinery/camera/camera var/helmet_overlays[] flags_inventory = BLOCKSHARPOBJ - flags_inv_hide = HIDEEARS + flags_inv_hide = NONE var/flags_marine_helmet = HELMET_SQUAD_OVERLAY|HELMET_GARB_OVERLAY|HELMET_DAMAGE_OVERLAY var/helmet_bash_cooldown = 0 @@ -386,8 +397,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( ) var/obj/item/storage/internal/headgear/pockets - var/storage_slots = 2 // keep in mind, one slot is reserved for garb items - var/storage_slots_reserved_for_garb = 1 + var/storage_slots = 2 // Small items like injectors, bandages, etc + var/storage_slots_reserved_for_garb = 2 // Cosmetic items & now cigarettes and lighters for RP var/storage_max_w_class = SIZE_TINY // can hold tiny items only, EXCEPT for glasses & metal flask. var/storage_max_storage_space = 4 @@ -483,10 +494,10 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/attackby(obj/item/attacking_item, mob/user) if(istype(attacking_item, /obj/item/ammo_magazine) && world.time > helmet_bash_cooldown && user) var/obj/item/ammo_magazine/M = attacking_item - var/ammo_level = "somewhat" + var/ammo_level = "more than half full." playsound(user, 'sound/items/trayhit1.ogg', 15, FALSE) - if(M.current_rounds > (M.max_rounds/2)) - ammo_level = "more than half full." + if(M.current_rounds == (M.max_rounds/2)) + ammo_level = "half full." if(M.current_rounds < (M.max_rounds/2)) ammo_level = "less than half full." if(M.current_rounds < (M.max_rounds/6)) @@ -518,7 +529,17 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( new_action.give_to(user) return - if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER) && length(inserted_visors)) + if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER)) + // If there isn't anything to remove, return. + if(!length(inserted_visors)) + // If the user is trying to remove a built-in visor, give them a more helpful failure message. + switch(length(built_in_visors)) + if(1) // Messy plural handling + to_chat(user, SPAN_WARNING("The visor on [src] is built-in!")) + if(2 to INFINITY) + to_chat(user, SPAN_WARNING("The visors on [src] are built-in!")) + return + if(active_visor) var/obj/item/device/helmet_visor/temp_visor_holder = active_visor active_visor = null @@ -554,7 +575,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( // the human sprite is the only thing that reliably renders things, so // we have to add overlays to that. helmet_overlays = list() // Rebuild our list every time - if(pockets && pockets.contents.len && (flags_marine_helmet & HELMET_GARB_OVERLAY)) + if(pockets && length(pockets.contents) && (flags_marine_helmet & HELMET_GARB_OVERLAY)) var/list/above_band_layer = list() var/list/below_band_layer = list() var/has_helmet_band = FALSE @@ -673,30 +694,50 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( var/list/total_visors = built_in_visors + inserted_visors if(!length(total_visors)) + to_chat(user, SPAN_WARNING("There are no visors to swap to.")) return FALSE if(active_visor) + var/visor_to_deactivate = active_visor + var/skipped_hud = FALSE var/iterator = 1 - for(var/hud_type in total_visors) - if(hud_type == active_visor) + for(var/obj/item/device/helmet_visor/current_visor as anything in total_visors) + if(current_visor == active_visor || skipped_hud) if(length(total_visors) > iterator) - active_visor = total_visors[(iterator + 1)] - toggle_visor(user, total_visors[iterator], TRUE) + var/obj/item/device/helmet_visor/next_visor = total_visors[iterator + 1] + + if(!isnull(GLOB.huds[next_visor.hud_type]?.hudusers[user])) + iterator++ + skipped_hud = TRUE + continue + + if(!next_visor.can_toggle(user)) + iterator++ + skipped_hud = TRUE + continue + + active_visor = next_visor + toggle_visor(user, visor_to_deactivate, silent = TRUE) // disables the old visor toggle_visor(user) return active_visor else active_visor = null - toggle_visor(user, total_visors[iterator], FALSE) + toggle_visor(user, visor_to_deactivate, FALSE) return FALSE iterator++ - if(total_visors[1]) - active_visor = total_visors[1] + for(var/obj/item/device/helmet_visor/new_visor in total_visors) + if(!isnull(GLOB.huds[new_visor.hud_type]?.hudusers[user])) + continue + + if(!new_visor.can_toggle(user)) + continue + + active_visor = new_visor toggle_visor(user) return active_visor - active_visor = null - recalculate_visors(user) + to_chat(user, SPAN_WARNING("There are no visors to swap to currently.")) return FALSE /datum/action/item_action/cycle_helmet_huds/New(Target, obj/item/holder) @@ -777,9 +818,17 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( built_in_visors = list(new /obj/item/device/helmet_visor, new /obj/item/device/helmet_visor/medical/advanced) start_down_visor_type = /obj/item/device/helmet_visor/medical/advanced +/obj/item/clothing/head/helmet/marine/medic/white + name = "\improper M10 white corpsman helmet" + desc = "An M10 marine helmet version worn by marine hospital corpsmen. Painted in medical white and has white cross in a red square painted on its front." + icon_state = "med_helmet_white" + specialty = "M10 pattern medic white" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_helmet = HELMET_GARB_OVERLAY|HELMET_DAMAGE_OVERLAY + /obj/item/clothing/head/helmet/marine/covert name = "\improper M10 covert helmet" - desc = "An M10 marine helmet version designed for use in darkened enviroments. It is coated with a special anti-reflective paint." + desc = "An M10 marine helmet version designed for use in darkened environments. It is coated with a special anti-reflective paint." icon_state = "marsoc_helmet" armor_melee = CLOTHING_ARMOR_MEDIUM armor_bullet = CLOTHING_ARMOR_MEDIUM @@ -1399,10 +1448,8 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/clothing/head/helmet/marine/reporter name = "press helmet" desc = "A helmet designed to make it clear that the wearer is safety aware and not looking for a fight." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_helm" - item_state = "wc_helm" - contained_sprite = TRUE + icon_state = "cc_helmet" + item_state = "cc_helmet" flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE built_in_visors = list() diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index afc8e0a7cb..edc4a81b36 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -54,14 +54,14 @@ flags_inv_hide |= HIDEEARS|HIDEEYES|HIDEFACE icon_state = initial(icon_state) eye_protection = initial(eye_protection) - to_chat(usr, "You flip the [src] down to protect your eyes.") + to_chat(usr, SPAN_NOTICE("You flip [src] down to protect your eyes.")) else vision_impair = VISION_IMPAIR_NONE flags_inventory &= ~(COVEREYES|COVERMOUTH|BLOCKSHARPOBJ) flags_inv_hide &= ~(HIDEEARS|HIDEEYES|HIDEFACE) icon_state = "[initial(icon_state)]up" eye_protection = EYE_PROTECTION_NONE - to_chat(usr, "You push the [src] up out of your face.") + to_chat(usr, SPAN_NOTICE("You push [src] up out of your face.")) up = !up if(ishuman(loc)) diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 18ffacf57b..4f928f6239 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -54,7 +54,7 @@ /obj/item/clothing/mask/balaclava name = "balaclava" - desc = "A basic single eye-hole balaclava, available in almost every sporting goods, outdoor supply, or military surplus store in existance, protects your face from the cold almost as well as it conceals it. This one is in a standard black color." + desc = "A basic single eye-hole balaclava, available in almost every sporting goods, outdoor supply, or military surplus store in existence, protects your face from the cold almost as well as it conceals it. This one is in a standard black color." icon_state = "balaclava" item_state = "balaclava" flags_inventory = COVERMOUTH|ALLOWREBREATH|ALLOWCPR @@ -65,7 +65,7 @@ /obj/item/clothing/mask/balaclava/tactical name = "green balaclava" - desc = "A basic single eye-hole balaclava, available in almost every sporting goods, outdoor supply, or military surplus store in existance, protects your face from the cold almost as well as it conceals it. This one is in a non-standard green color." + desc = "A basic single eye-hole balaclava, available in almost every sporting goods, outdoor supply, or military surplus store in existence, protects your face from the cold almost as well as it conceals it. This one is in a non-standard green color." icon_state = "swatclava" item_state = "swatclava" diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm index b5ec4f3ab9..f3de770790 100644 --- a/code/modules/clothing/shoes/colour.dm +++ b/code/modules/clothing/shoes/colour.dm @@ -29,10 +29,6 @@ name = "purple shoes" icon_state = "purple" -/obj/item/clothing/shoes/brown - name = "brown shoes" - icon_state = "brown" - /obj/item/clothing/shoes/red name = "red shoes" desc = "Stylish red shoes." @@ -41,7 +37,14 @@ /obj/item/clothing/shoes/red/knife name = "dirty red shoes" desc = "Stylish red shoes with a small space to hold a knife." - items_allowed = list(/obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, /obj/item/weapon/gun/pistol/clfpistol, /obj/item/tool/screwdriver, /obj/item/weapon/straight_razor) + allowed_items_typecache = list( + /obj/item/attachable/bayonet, + /obj/item/weapon/throwing_knife, + /obj/item/weapon/gun/pistol/holdout, + /obj/item/weapon/gun/pistol/clfpistol, + /obj/item/tool/screwdriver, + /obj/item/weapon/straight_razor, + ) /obj/item/clothing/shoes/white name = "white shoes" @@ -61,34 +64,47 @@ /obj/item/clothing/shoes/orange name = "orange shoes" icon_state = "orange" - var/obj/item/handcuffs/chained = null + var/obj/item/restraint/handcuffs/chained = null -/obj/item/clothing/shoes/orange/proc/attach_cuffs(obj/item/handcuffs/cuffs, mob/user as mob) - if (src.chained) return +/obj/item/clothing/shoes/orange/proc/attach_cuffs(obj/item/restraint/cuffs, mob/user as mob) + if(chained) + return FALSE user.drop_held_item() cuffs.forceMove(src) - src.chained = cuffs - src.slowdown = 15 - src.icon_state = "orange1" + chained = cuffs + slowdown = 15 + icon_state = "orange1" + time_to_equip = (cuffs.breakouttime / 4) + time_to_unequip = cuffs.breakouttime + return TRUE /obj/item/clothing/shoes/orange/proc/remove_cuffs(mob/user as mob) - if (!src.chained) return + if(!chained) + return FALSE - user.put_in_hands(src.chained) - src.chained.add_fingerprint(user) + user.put_in_hands(chained) + chained.add_fingerprint(user) - src.slowdown = initial(slowdown) - src.icon_state = "orange" - src.chained = null + slowdown = initial(slowdown) + icon_state = "orange" + chained = null + time_to_equip = initial(time_to_equip) + time_to_unequip = initial(time_to_unequip) + return TRUE /obj/item/clothing/shoes/orange/attack_self(mob/user as mob) ..() remove_cuffs(user) -/obj/item/clothing/shoes/orange/attackby(H as obj, mob/user as mob) +/obj/item/clothing/shoes/orange/attackby(attacking_object as obj, mob/user as mob) ..() - if (istype(H, /obj/item/handcuffs)) - attach_cuffs(H, user) - - + if(istype(attacking_object, /obj/item/restraint)) + var/obj/item/restraint/cuffs = attacking_object + if(cuffs.target_zone == SLOT_LEGS) + attach_cuffs(cuffs, user) + +/obj/item/clothing/shoes/orange/get_examine_text(mob/user) + . = ..() + if(chained) + . += SPAN_RED("They are chained with [chained].") diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index 365a8a551a..964a81efc0 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -18,46 +18,46 @@ min_cold_protection_temperature = SHOE_MIN_COLD_PROT max_heat_protection_temperature = SHOE_MAX_HEAT_PROT siemens_coefficient = 0.7 - var/armor_stage = 0 - items_allowed = list(/obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, /obj/item/weapon/gun/pistol/clfpistol, /obj/item/tool/screwdriver, /obj/item/tool/surgery/scalpel, /obj/item/weapon/straight_razor) - var/knife_type - -/obj/item/clothing/shoes/marine/Initialize(mapload, ...) - . = ..() - if(knife_type) - stored_item = new knife_type(src) - update_icon() + allowed_items_typecache = list( + /obj/item/attachable/bayonet, + /obj/item/weapon/throwing_knife, + /obj/item/weapon/gun/pistol/holdout, + /obj/item/weapon/gun/pistol/clfpistol, + /obj/item/tool/screwdriver, + /obj/item/tool/surgery/scalpel, + /obj/item/weapon/straight_razor, + ) + drop_sound = "armorequip" /obj/item/clothing/shoes/marine/update_icon() - if(stored_item && !armor_stage) + if(stored_item) icon_state = "[initial(icon_state)]-1" else - if(!armor_stage) - icon_state = initial(icon_state) + icon_state = initial(icon_state) /obj/item/clothing/shoes/marine/knife - knife_type = /obj/item/attachable/bayonet + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/jungle icon_state = "marine_jungle" desc = "Don't go walkin' slow, the devil's on the loose." /obj/item/clothing/shoes/marine/jungle/knife - knife_type = /obj/item/attachable/bayonet + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/brown icon_state = "marine_brown" desc = "Standard issue combat boots for combat scenarios or combat situations. All combat, all the time. These are brown." /obj/item/clothing/shoes/marine/brown/knife - knife_type = /obj/item/attachable/bayonet + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/monkey name = "monkey combat boots" desc = "A sturdy pair of combat boots, the reflection of the polished leather reflects your true self." icon_state = "monkey_shoes" item_state = "monkey_shoes" - knife_type = /obj/item/attachable/bayonet + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/upp name = "military combat boots" @@ -66,10 +66,9 @@ armor_bullet = CLOTHING_ARMOR_HIGHPLUS armor_bomb = CLOTHING_ARMOR_MEDIUM armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - knife_type = /obj/item/attachable/bayonet/upp -/obj/item/clothing/shoes/marine/upp_knife - knife_type = /obj/item/attachable/bayonet/upp +/obj/item/clothing/shoes/marine/upp/knife + spawn_item_type = /obj/item/attachable/bayonet/upp /obj/item/clothing/shoes/marine/joe name = "biohazard boots" @@ -79,7 +78,7 @@ armor_bio = CLOTHING_ARMOR_MEDIUMHIGH armor_rad = CLOTHING_ARMOR_MEDIUMHIGH armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - knife_type = /obj/item/attachable/bayonet + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/pve_mopp name = "\improper M2 MOPP boots" @@ -108,6 +107,12 @@ armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW +/obj/item/clothing/shoes/stompers + name = "Reebok Stompers" + desc = "A pair of sneakers designed to elicit a morale boosting response within anyone that witnesses them." + icon_state = "stompers" + flags_inventory = NOSLIPPING + /obj/item/clothing/shoes/veteran/pmc name = "polished shoes" desc = "The height of fashion, but these look to be woven with protective fiber." @@ -127,7 +132,13 @@ flags_heat_protection = BODY_FLAG_FEET flags_inventory = FPRINT|NOSLIPPING siemens_coefficient = 0.6 - items_allowed = list(/obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, /obj/item/weapon/gun/pistol/clfpistol, /obj/item/weapon/straight_razor) + allowed_items_typecache = list( + /obj/item/attachable/bayonet, + /obj/item/weapon/throwing_knife, + /obj/item/weapon/gun/pistol/holdout, + /obj/item/weapon/gun/pistol/clfpistol, + /obj/item/weapon/straight_razor, + ) /obj/item/clothing/shoes/veteran/pmc/update_icon() if(stored_item) @@ -135,10 +146,8 @@ else icon_state = initial(icon_state) -/obj/item/clothing/shoes/veteran/pmc/knife/Initialize(mapload, ...) - . = ..() - stored_item = new /obj/item/attachable/bayonet(src) - update_icon() +/obj/item/clothing/shoes/veteran/pmc/knife + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/veteran/pmc/commando name = "\improper PMC commando boots" @@ -148,22 +157,13 @@ siemens_coefficient = 0.2 unacidable = TRUE -/obj/item/clothing/shoes/veteran/pmc/commando/knife/Initialize(mapload, ...) - . = ..() - stored_item = new /obj/item/attachable/bayonet(src) - update_icon() +/obj/item/clothing/shoes/veteran/pmc/commando/knife + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/veteran/pmc/van_bandolier name = "hiking boots" desc = "Over stone, over ice, through sun and sand, mud and snow, into raging water and hungry bog, these will never let you down." - -/obj/item/clothing/shoes/veteran/pmc/van_bandolier/New() - ..() - var/obj/item/attachable/bayonet/upp/knife = new(src) - knife.name = "\improper Fairbairn-Sykes fighting knife" - knife.desc = "This isn't for dressing game or performing camp chores. It's almost certainly not an original. Almost." - stored_item = knife - update_icon() + spawn_item_type = /obj/item/attachable/bayonet/van_bandolier /obj/item/clothing/shoes/veteran/pmc/commando/cbrn name = "\improper M3 MOPP boots" @@ -172,22 +172,20 @@ item_state = "cbrn" armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS - -/obj/item/clothing/shoes/veteran/pmc/commando/cbrn/Initialize(mapload, ...) - . = ..() - stored_item = new /obj/item/attachable/bayonet(src) - update_icon() + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/corporate name = "rugged boots" desc = "These synth-leather boots seem high quality when first worn, but quickly detoriate, especially in the environments the corporate security members these are issued to operate in. Still, better than nothing." - knife_type = /obj/item/attachable/bayonet + +/obj/item/clothing/shoes/marine/corporate/knife + spawn_item_type = /obj/item/attachable/bayonet /obj/item/clothing/shoes/marine/ress name = "armored sandals" icon_state = "sandals" item_state = "sandals" - items_allowed = null + allowed_items_typecache = null /obj/item/clothing/shoes/hiking name = "hiking shoes" @@ -208,7 +206,13 @@ flags_heat_protection = BODY_FLAG_FEET flags_inventory = FPRINT|NOSLIPPING siemens_coefficient = 0.6 - items_allowed = list(/obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, /obj/item/weapon/gun/pistol/clfpistol, /obj/item/weapon/straight_razor) + allowed_items_typecache = list( + /obj/item/attachable/bayonet, + /obj/item/weapon/throwing_knife, + /obj/item/weapon/gun/pistol/holdout, + /obj/item/weapon/gun/pistol/clfpistol, + /obj/item/weapon/straight_razor, + ) var/weed_slowdown_mult = 0.5 /obj/item/clothing/shoes/hiking/equipped(mob/user, slot, silent) @@ -247,7 +251,7 @@ flags_heat_protection = BODY_FLAG_FEET flags_inventory = FPRINT|NOSLIPPING siemens_coefficient = 0.6 - items_allowed = list( + allowed_items_typecache = list( /obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, @@ -256,7 +260,4 @@ flags_atom = NO_NAME_OVERRIDE /obj/item/clothing/shoes/royal_marine/knife -/obj/item/clothing/shoes/royal_marine/knife/Initialize(mapload, ...) - . = ..() - stored_item = new /obj/item/attachable/bayonet/rmc(src) - update_icon() + spawn_item_type = /obj/item/attachable/bayonet/rmc diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 1a49dc7fe1..91ae13958e 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -141,6 +141,7 @@ icon_state = "laceups" /obj/item/clothing/shoes/laceup/brown + name = "brown laceup shoes" icon_state = "laceups_brown" /obj/item/clothing/shoes/swimmingfins diff --git a/code/modules/clothing/spacesuits/breaches.dm b/code/modules/clothing/spacesuits/breaches.dm index f2be4eaf20..0a934cfb14 100644 --- a/code/modules/clothing/spacesuits/breaches.dm +++ b/code/modules/clothing/spacesuits/breaches.dm @@ -25,21 +25,21 @@ //Some simple descriptors for breaches. Global because lazy, TODO: work out a better way to do this. -var/global/list/breach_brute_descriptors = list( +GLOBAL_LIST_INIT(breach_brute_descriptors, list( "tiny puncture", "ragged tear", "large split", "huge tear", "gaping wound" - ) + )) -var/global/list/breach_burn_descriptors = list( +GLOBAL_LIST_INIT(breach_burn_descriptors, list( "small burn", "melted patch", "sizable burn", "large scorched area", "huge scorched area" - ) + )) /datum/breach/proc/update_descriptor() @@ -47,14 +47,14 @@ var/global/list/breach_burn_descriptors = list( class = max(1,min(class,5)) //Apply the correct descriptor. if(damtype == BURN) - descriptor = breach_burn_descriptors[class] + descriptor = GLOB.breach_burn_descriptors[class] else if(damtype == BRUTE) - descriptor = breach_brute_descriptors[class] + descriptor = GLOB.breach_brute_descriptors[class] //Repair a certain amount of brute or burn damage to the suit. /obj/item/clothing/suit/space/proc/repair_breaches(damtype, amount, mob/user) - if(!can_breach || !breaches || !breaches.len || !damage) + if(!can_breach || !LAZYLEN(breaches) || !damage) to_chat(user, "There are no breaches to repair on \the [src].") return @@ -64,7 +64,7 @@ var/global/list/breach_burn_descriptors = list( if(B.damtype == damtype) valid_breaches += B - if(!valid_breaches.len) + if(!length(valid_breaches)) to_chat(user, "There are no breaches to repair on \the [src].") return @@ -145,7 +145,7 @@ var/global/list/breach_burn_descriptors = list( brute_damage = 0 burn_damage = 0 - if(!can_breach || !breaches || !breaches.len) + if(!can_breach || !LAZYLEN(breaches)) name = base_name return 0 @@ -220,6 +220,6 @@ var/global/list/breach_burn_descriptors = list( /obj/item/clothing/suit/space/get_examine_text(mob/user) . = ..() - if(can_breach && breaches && breaches.len) + if(can_breach && LAZYLEN(breaches)) for(var/datum/breach/B in breaches) . += SPAN_DANGER("It has \a [B.descriptor].") diff --git a/code/modules/clothing/spacesuits/captain.dm b/code/modules/clothing/spacesuits/captain.dm index 26bc03eed6..2643e43b2b 100644 --- a/code/modules/clothing/spacesuits/captain.dm +++ b/code/modules/clothing/spacesuits/captain.dm @@ -24,7 +24,7 @@ gas_transfer_coefficient = 0.01 permeability_coefficient = 0.02 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS - allowed = list(/obj/item/tank/emergency_oxygen, /obj/item/device/flashlight,/obj/item/weapon/gun, /obj/item/ammo_magazine, /obj/item/weapon/baton,/obj/item/handcuffs) + allowed = list(/obj/item/tank/emergency_oxygen, /obj/item/device/flashlight,/obj/item/weapon/gun, /obj/item/ammo_magazine, /obj/item/weapon/baton,/obj/item/restraint/handcuffs) slowdown = 1.5 armor_melee = CLOTHING_ARMOR_MEDIUMHIGH armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index b171b4ed93..36dd5f4f04 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -2,11 +2,14 @@ /obj/item/clothing/head/helmet/space/santahat name = "Santa's hat" desc = "Ho ho ho. Merrry X-mas!" - icon_state = "santahat" + icon_state = "santa_hat_red" flags_inventory = NOPRESSUREDMAGE|BLOCKSHARPOBJ flags_inv_hide = HIDEEYES flags_armor_protection = BODY_FLAG_HEAD +/obj/item/clothing/head/helmet/space/santahat/green + icon_state = "santa_hat_green" + /obj/item/clothing/suit/space/santa name = "Santa's suit" desc = "Festive!" @@ -40,7 +43,7 @@ icon_state = "pirate" item_state = "pirate" w_class = SIZE_MEDIUM - allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/handcuffs,/obj/item/tank/emergency_oxygen) + allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/restraint/handcuffs,/obj/item/tank/emergency_oxygen) slowdown = 0 armor_melee = CLOTHING_ARMOR_MEDIUM armor_bullet = CLOTHING_ARMOR_MEDIUM @@ -90,7 +93,7 @@ /obj/item/clothing/suit/space/compression/uscm name = "\improper MK.50 compression suit" desc = "A heavy, bulky civilian space suit, fitted with armored plates. This specific suit has found its way into the ragtag inventory of the USCM's patrol boat requisitions system." - allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/handcuffs,/obj/item/tank) + allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/restraint/handcuffs,/obj/item/tank) // Souto man diff --git a/code/modules/clothing/spacesuits/spacesuits.dm b/code/modules/clothing/spacesuits/spacesuits.dm index 0ef06baa31..a8b056d0bb 100644 --- a/code/modules/clothing/spacesuits/spacesuits.dm +++ b/code/modules/clothing/spacesuits/spacesuits.dm @@ -32,7 +32,7 @@ gas_transfer_coefficient = 0.01 permeability_coefficient = 0.02 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS - allowed = list(/obj/item/device/flashlight,/obj/item/tank/emergency_oxygen,/obj/item/device/suit_cooling_unit) + allowed = list(/obj/item/device/flashlight,/obj/item/tank/emergency_oxygen) slowdown = 3 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE @@ -65,7 +65,7 @@ /obj/item/clothing/suit/space/proc/check_limb_support() // If this isn't set, then we don't need to care. - if(!supporting_limbs || !supporting_limbs.len) + if(!LAZYLEN(supporting_limbs)) return var/mob/living/carbon/human/H = src.loc diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 6bfccf215d..03b687e6ce 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -47,7 +47,7 @@ /obj/item/device/flashlight, /obj/item/ammo_magazine/, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/storage/large_holster/machete, /obj/item/storage/belt/gun/m4a3, @@ -81,7 +81,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/explosive/grenade, /obj/item/device/binoculars, /obj/item/attachable/bayonet, @@ -249,7 +249,7 @@ gas_transfer_coefficient = 0.01 permeability_coefficient = 0.01 flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS - allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/handcuffs,/obj/item/tank/emergency_oxygen) + allowed = list(/obj/item/weapon/gun,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/baton,/obj/item/restraint/handcuffs,/obj/item/tank/emergency_oxygen) slowdown = 1 armor_melee = CLOTHING_ARMOR_HIGH armor_bullet = CLOTHING_ARMOR_HIGH @@ -354,7 +354,7 @@ item_state = "centcom" w_class = SIZE_LARGE//bulky item flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS - allowed = list(/obj/item/weapon/gun,/obj/item/weapon/baton,/obj/item/handcuffs,/obj/item/tank/emergency_oxygen) + allowed = list(/obj/item/weapon/gun,/obj/item/weapon/baton,/obj/item/restraint/handcuffs,/obj/item/tank/emergency_oxygen) flags_inventory = NO_FLAGS flags_inv_hide = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 59e0918550..eb99005328 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -51,7 +51,7 @@ item_state = "bio_suit" allowed = list( /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 5b97051852..589fb3b972 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -181,11 +181,11 @@ /obj/item/ammo_magazine, /obj/item/ammo_casing, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, /obj/item/storage/belt/gun/m4a3, @@ -245,7 +245,7 @@ /obj/item/ammo_magazine, /obj/item/ammo_casing, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, /obj/item/storage/belt/gun/m4a3, @@ -310,7 +310,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, /obj/item/storage/belt/gun/m4a3, @@ -409,7 +409,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 1c2fb2a9f2..d0f6d1cc86 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -20,7 +20,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, @@ -144,6 +144,10 @@ icon_state = "sciencecoat" item_state = "sciencecoat" +/obj/item/clothing/suit/chef/classic/medical + name = "medical's apron" + desc = "A basic and sterile white apron, good for surgical and, of course, other medical practices." + /obj/item/clothing/suit/storage/snow_suit name = "snow suit" desc = "A standard snow suit. It can protect the wearer from extreme cold." @@ -181,7 +185,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, /obj/item/storage/belt/gun/m4a3, @@ -299,3 +303,21 @@ name = "liaison's winter coat" desc = "A Weyland-Yutani winter coat. Only the best comfort for the liaison in a cold environment." icon_state = "snowsuit_liaison" + +/obj/item/clothing/suit/storage/snow_suit/liaison/modified + name = "modified liaison's winter coat" + desc = "A Weyland-Yutani winter coat. This one has been modified to holster guns and other objects. Only the best comfort and utility for the liaison surviving in a cold, hostile environment." + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/large_holster/machete, + /obj/item/weapon/baseballbat, + /obj/item/weapon/baseballbat/metal, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) diff --git a/code/modules/clothing/suits/marine_armor.dm b/code/modules/clothing/suits/marine_armor.dm deleted file mode 100644 index bc6d55250f..0000000000 --- a/code/modules/clothing/suits/marine_armor.dm +++ /dev/null @@ -1,1917 +0,0 @@ -#define DEBUG_ARMOR_PROTECTION 0 - -#if DEBUG_ARMOR_PROTECTION -/mob/living/carbon/human/verb/check_overall_protection() - set name = "Get Armor Value" - set category = "Debug" - set desc = "Shows the armor value of the bullet category." - - var/armor = 0 - var/counter = 0 - for(var/X in H.limbs) - var/obj/limb/E = X - armor = getarmor_organ(E, ARMOR_BULLET) - to_chat(src, SPAN_DEBUG("[E.name] is protected with [armor] armor against bullets.")) - counter += armor - to_chat(src, SPAN_DEBUG("The overall armor score is: [counter].")) -#endif - -//=======================================================================\\ -//=======================================================================\\ - -#define ALPHA 1 -#define BRAVO 2 -#define CHARLIE 3 -#define DELTA 4 -#define ECHO 5 -#define CRYO 6 -#define SOF 7 -#define NOSQUAD 8 - -// MARINE STORAGE ARMOR - -/obj/item/clothing/suit/storage/marine - name = "\improper M3 pattern marine armor" - desc = "Standard USCMC issue M3 Pattern Personal Armor. Composite ballistic armor, integral biomonitoring system, and brackets for the IMP system as well as the TNR Shoulder Lamp. \nHas some extra pouches on the sides for storage." - icon = 'icons/obj/items/clothing/cm_suits.dmi' - icon_state = "1" - item_state = "marine_armor" //Make unique states for Officer & Intel armors. - item_icons = list( - WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' - ) - flags_atom = FPRINT|CONDUCT - flags_inventory = BLOCKSHARPOBJ - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - min_cold_protection_temperature = HELMET_MIN_COLD_PROT - max_heat_protection_temperature = HELMET_MAX_HEAT_PROT - blood_overlay_type = "armor" - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_MEDIUMLOW - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_LIGHT - storage_slots = 3 - siemens_coefficient = 0.7 - slowdown = SLOWDOWN_ARMOR_MEDIUM - allowed = list( - /obj/item/weapon/gun, - /obj/item/prop/prop_gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/storage/bible, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/storage/belt/gun/type47, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/belt/gun/flaregun, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - /obj/item/storage/belt/gun/m39, - ) - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) - - light_power = 3 - light_range = 4 - light_system = MOVABLE_LIGHT - - var/flashlight_cooldown = 0 //Cooldown for toggling the light - var/locate_cooldown = 0 //Cooldown for SL locator - var/armor_overlays[] - actions_types = list(/datum/action/item_action/toggle) - var/flags_marine_armor = ARMOR_SQUAD_OVERLAY|ARMOR_LAMP_OVERLAY - var/specialty = "M3 pattern marine" //Same thing here. Give them a specialty so that they show up correctly in vendors. speciality does NOTHING if you have NO_NAME_OVERRIDE - w_class = SIZE_HUGE - uniform_restricted = list(/obj/item/clothing/under/marine) - sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') - time_to_unequip = 20 - time_to_equip = 20 - pickup_sound = "armorequip" - drop_sound = "armorequip" - equip_sounds = list('sound/handling/putting_on_armor1.ogg') - var/armor_variation = 0 - /// The dmi where the grayscale squad overlays are contained - var/squad_overlay_icon = 'icons/mob/humans/onmob/suit_1.dmi' - - var/atom/movable/marine_light/light_holder - -/obj/item/clothing/suit/storage/marine/Initialize(mapload) - . = ..() - if(!(flags_atom & NO_NAME_OVERRIDE)) - name = "[specialty]" - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - name += " snow armor" //Leave marine out so that armors don't have to have "Marine" appended (see: generals). - else - name += " armor" - - if(!(flags_atom & NO_SNOW_TYPE)) - select_gamemode_skin(type) - armor_overlays = list("lamp") //Just one for now, can add more later. - if(armor_variation && mapload) - post_vendor_spawn_hook() - update_icon() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - - light_holder = new(src) - -/obj/item/clothing/suit/storage/marine/Destroy() - QDEL_NULL(light_holder) - return ..() - -/obj/item/clothing/suit/storage/marine/update_icon(mob/user) - var/image/I - armor_overlays["lamp"] = null - if(flags_marine_armor & ARMOR_LAMP_OVERLAY) - if(flags_marine_armor & ARMOR_LAMP_ON) - I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-on") - else - I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-off") - armor_overlays["lamp"] = I - overlays += I - else armor_overlays["lamp"] = null - if(user) user.update_inv_wear_suit() - - -/obj/item/clothing/suit/storage/marine/post_vendor_spawn_hook(mob/living/carbon/human/user) //used for randomizing/selecting a variant for armors. - var/new_look //used for the icon_state text replacement. - - if(!user?.client?.prefs) - new_look = rand(1,armor_variation) - - else if(user.client.prefs.preferred_armor == "Random") - new_look = rand(1,armor_variation) - - else - new_look = GLOB.armor_style_list[user.client.prefs.preferred_armor] - - icon_state = replacetext(icon_state,"1","[new_look]") - update_icon(user) - -/obj/item/clothing/suit/storage/marine/attack_self(mob/user) - ..() - - if(!isturf(user.loc)) - to_chat(user, SPAN_WARNING("You cannot turn the light [light_on ? "off" : "on"] while in [user.loc].")) //To prevent some lighting anomalies. - return - - if(flashlight_cooldown > world.time) - return - if(!ishuman(user)) - return - - var/mob/living/carbon/human/H = user - if(H.wear_suit != src) - return - - turn_light(user, !light_on) - -/obj/item/clothing/suit/storage/marine/item_action_slot_check(mob/user, slot) - if(!ishuman(user)) - return FALSE - if(slot != WEAR_JACKET) - return FALSE - return TRUE //only give action button when armor is worn. - -/obj/item/clothing/suit/storage/marine/turn_light(mob/user, toggle_on) - . = ..() - if(. != CHECKS_PASSED) - return - set_light_range(initial(light_range)) - set_light_power(FLOOR(initial(light_power) * 0.5, 1)) - set_light_on(toggle_on) - flags_marine_armor ^= ARMOR_LAMP_ON - - light_holder.set_light_flags(LIGHT_ATTACHED) - light_holder.set_light_range(initial(light_range)) - light_holder.set_light_power(initial(light_power)) - light_holder.set_light_on(toggle_on) - - if(!toggle_on) - playsound(src, 'sound/handling/click_2.ogg', 50, 1) - - playsound(src, 'sound/handling/suitlight_on.ogg', 50, 1) - update_icon(user) - - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - -/obj/item/clothing/suit/storage/marine/mob_can_equip(mob/living/carbon/human/M, slot, disable_warning = 0) - . = ..() - if (.) - if(issynth(M) && M.allow_gun_usage == FALSE && !(flags_marine_armor & SYNTH_ALLOWED)) - M.visible_message(SPAN_DANGER("Your programming prevents you from wearing this!")) - return 0 - -/obj/item/clothing/suit/storage/marine/padded - name = "M3 pattern padded marine armor" - icon_state = "1" - specialty = "M3 pattern padded marine" - -/obj/item/clothing/suit/storage/marine/padless - name = "M3 pattern padless marine armor" - icon_state = "2" - specialty = "M3 pattern padless marine" - -/obj/item/clothing/suit/storage/marine/padless_lines - name = "M3 pattern ridged marine armor" - icon_state = "3" - specialty = "M3 pattern ridged marine" - -/obj/item/clothing/suit/storage/marine/carrier - name = "M3 pattern carrier marine armor" - icon_state = "4" - specialty = "M3 pattern carrier marine" - -/obj/item/clothing/suit/storage/marine/skull - name = "M3 pattern skull marine armor" - icon_state = "5" - specialty = "M3 pattern skull marine" - -/obj/item/clothing/suit/storage/marine/smooth - name = "M3 pattern smooth marine armor" - icon_state = "6" - specialty = "M3 pattern smooth marine" - -/obj/item/clothing/suit/storage/marine/rto - icon_state = "io" - name = "\improper M4 pattern marine armor" - desc = "A well tinkered and crafted hybrid of Smart-Gunner mesh and M3 pattern plates. Robust, yet nimble, with room for all your pouches." - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 4 - light_range = 5 //slightly higher - specialty = "M4 pattern marine" - -/obj/item/clothing/suit/storage/marine/rto/intel - name = "\improper XM4 pattern intelligence officer armor" - uniform_restricted = list(/obj/item/clothing/under/marine/officer, /obj/item/clothing/under/rank/qm_suit, /obj/item/clothing/under/marine/officer/intel) - specialty = "XM4 pattern intel" - -/obj/item/clothing/suit/storage/marine/rto/forecon - name = "\improper M3-R pattern recon armor" - desc = "A modified Colonial Marines M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a leather pouch strapped to it for limited storage. Issued exclusively to FORECON units." - icon_state = "forecon" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/MP - name = "\improper M2 pattern MP armor" - desc = "A standard Colonial Marines M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "mp_armor" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_LOW - armor_laser = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/device/hailer, - /obj/item/storage/belt/gun, - /obj/item/weapon/sword/ceremonial, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/mp) - specialty = "M2 pattern MP" - item_state_slots = list(WEAR_JACKET = "mp_armor") - black_market_value = 20 - -/obj/item/clothing/suit/storage/marine/MP/warden - icon_state = "warden" - name = "\improper M3 pattern warden MP armor" - desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Wardens. Useful for letting your men know who is in charge." - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - uniform_restricted = list(/obj/item/clothing/under/marine/warden) - specialty = "M3 pattern warden MP" - item_state_slots = list(WEAR_JACKET = "warden") - -/obj/item/clothing/suit/storage/marine/MP/WO - icon_state = "warrant_officer" - name = "\improper M3 pattern chief MP armor" - desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Chief MPs. Useful for letting your men know who is in charge." - uniform_restricted = list(/obj/item/clothing/under/marine/officer/warrant) - specialty = "M3 pattern chief MP" - item_state_slots = list(WEAR_JACKET = "warrant_officer") - black_market_value = 30 - -/obj/item/clothing/suit/storage/marine/MP/general - name = "\improper M3 pattern general officer armor" - desc = "A well-crafted suit of M3 Pattern Armor with a gold shine. It looks very expensive, but shockingly fairly easy to carry and wear." - icon_state = "general" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - uniform_restricted = list(/obj/item/clothing/under/marine/officer/general) - specialty = "M3 pattern general" - item_state_slots = list(WEAR_JACKET = "general") - w_class = SIZE_MEDIUM - -/obj/item/clothing/suit/storage/marine/MP/SO - name = "\improper M3 pattern officer armor" - desc = "A well-crafted suit of M3 Pattern Armor typically found in the hands of higher-ranking officers. Useful for letting your men know who is in charge when taking to the field." - icon_state = "officer" - storage_slots = 3 - flags_atom = null - uniform_restricted = list(/obj/item/clothing/under/marine/officer, /obj/item/clothing/under/rank/qm_suit, /obj/item/clothing/under/rank/chief_medical_officer, /obj/item/clothing/under/marine/dress) - specialty = "M2 pattern officer" - item_state_slots = list(WEAR_JACKET = "officer") - -//Making a new object because we might want to edit armor values and such. -//Or give it its own sprite. It's more for the future. -/obj/item/clothing/suit/storage/marine/MP/CO - name = "\improper M3 pattern commanding officer armor" - desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge." - icon_state = "co_officer" - item_state = "co_officer" - armor_bullet = CLOTHING_ARMOR_HIGH - storage_slots = 3 - flags_atom = NO_SNOW_TYPE - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - uniform_restricted = list(/obj/item/clothing/under/marine, /obj/item/clothing/under/rank/qm_suit) - specialty = "M3 pattern captain" - item_state_slots = list(WEAR_JACKET = "co_officer") - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_PONCHO) - black_market_value = 35 - - -/obj/item/clothing/suit/storage/marine/MP/CO/jacket - name = "\improper M3 pattern commanding officer armored coat" - desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge. This one has a coat over it for added warmth." - icon_state = "bridge_coat_armored" - item_state = "bridge_coat_armored" - item_state_slots = list(WEAR_JACKET = "bridge_coat_armored") - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK) - - -/obj/item/clothing/suit/storage/marine/smartgunner - name = "\improper M56 combat harness" - desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate for practical protection, as well as the computers, straps, and armature required for operating the M56 Smartgun itself." - icon_state = "8" - item_state = "armor" - armor_laser = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - flags_atom = NO_NAME_OVERRIDE - allowed = list( - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine, - /obj/item/explosive/mine, - /obj/item/attachable/bayonet, - /obj/item/weapon/gun/smartgun, - /obj/item/storage/backpack/general_belt, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - var/list/smartgun_back = list( - /obj/item/storage/large_holster/machete, - ) - -/obj/item/clothing/suit/storage/marine/smartgunner/Initialize() - . = ..() - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "\improper M56 combat harness" && !(flags_atom & NO_SNOW_TYPE)) - name = "M56 snow combat harness" - -/obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE) - . = ..() - - if(equipping_mob.back && !(equipping_mob.back.flags_item & SMARTGUNNER_BACKPACK_OVERRIDE)) - to_chat(equipping_mob, SPAN_WARNING("You can't equip [src] while wearing a backpack.")) - return FALSE - -/obj/item/clothing/suit/storage/marine/smartgunner/equipped(mob/user, slot, silent) - . = ..() - - if(slot == WEAR_JACKET) - RegisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP, PROC_REF(check_equipping)) - -/obj/item/clothing/suit/storage/marine/smartgunner/proc/check_equipping(mob/living/carbon/human/equipping_human, obj/item/equipping_item, slot) - SIGNAL_HANDLER - - if(slot != WEAR_BACK) - return - - if(equipping_item.flags_item & SMARTGUNNER_BACKPACK_OVERRIDE || is_type_in_list(equipping_item, smartgun_back)) - return - - . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP - - if(equipping_item.flags_equip_slot == SLOT_BACK) - to_chat(equipping_human, SPAN_WARNING("You can't equip [equipping_item] on your back while wearing [src].")) - return - -/obj/item/clothing/suit/storage/marine/smartgunner/unequipped(mob/user, slot) - . = ..() - - UnregisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP) - -/obj/item/clothing/suit/storage/marine/smartgunner/standard - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/smartgunner/black - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - icon_state = "8fancy" - -/obj/item/clothing/suit/storage/marine/smartgunner/upp - name = "\improper UH7-I heavy plated harness" - desc = "An experimental set of heavy armor with additional harnesses designed to support QYJ-72-I smartmachinegun. Heavy plates along with harnesses make wearing backpacks extremely uncomfortable and borderline impossible." - icon_state = "upp_armor_heavy" - storage_slots = 1 - slowdown = SLOWDOWN_ARMOR_HEAVY - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS|BLOCK_KNOCKDOWN - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_HIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) - allowed = list( - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine, - /obj/item/explosive/mine, - /obj/item/attachable/bayonet, - /obj/item/weapon/gun/pkp, - /obj/item/storage/backpack/general_belt, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - /obj/item/storage/large_holster/machete, - /obj/item/storage/belt/gun/type47, - ) - - smartgun_back = list( - /obj/item/storage/large_holster/machete, - /obj/item/ammo_box, - ) - - -/obj/item/clothing/suit/storage/marine/smartgunner/upp/Initialize() - . = ..() - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/minigun, - /obj/item/ammo_magazine/pkp, - ) - - -/obj/item/clothing/suit/storage/marine/leader - name = "\improper B12 pattern marine armor" - desc = "Semi-experimental body armor system similar to M3, incorporating primarily carbon fiber instead of boron carbide. \nDesigned in a lovely olive green, slightly improved protection against blunt impact and biological hazards." - icon_state = "7" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - specialty = "B12 pattern marine" - -/obj/item/clothing/suit/storage/marine/tanker - name = "\improper M3 pattern tanker armor" - desc = "Armored vest sometimes worn by USCMC armor crews. More bulky than a flak vest or service jacket, but substantially improved protection should the wearer need to dismount." - icon_state = "tanker" - uniform_restricted = list(/obj/item/clothing/under/marine/officer/tanker) - specialty = "M3 pattern tanker" - storage_slots = 2 - -//===========================//PFC ARMOR CLASSES\\================================\\ -//=================================================================================\\ - -/obj/item/clothing/suit/storage/marine/medium - armor_variation = 6 - -/obj/item/clothing/suit/storage/marine/medium/non_spec_ghillie //doesnt have sniper spec shit associated with it - name = "\improper M40 pattern ghillie armor" - desc = "An older variant of camouflage suit used by snipers and scouts. While cheap to produce and easy to use, this suit of armor doesn't offer same level of stealth as newer M45 with integrated heatsink." - icon_state = "ghillie_armor" - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - flags_marine_armor = ARMOR_LAMP_OVERLAY - specialty = "M40 pattern ghillie" - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -/obj/item/clothing/suit/storage/marine/light - name = "\improper M3-L pattern light armor" - desc = "A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed." - specialty = "\improper M3-L pattern light" - icon_state = "L1" - armor_variation = 6 - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 2 - -/obj/item/clothing/suit/storage/marine/light/padded - icon_state = "L1" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/padless - icon_state = "L2" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/padless_lines - icon_state = "L3" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/carrier - icon_state = "L4" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/skull - icon_state = "L5" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/smooth - icon_state = "L6" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/light/standard - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/vest - name = "\improper M3-VL pattern ballistics vest" - desc = "Up until 2182 USCM non-combat personnel were issued non-standardized ballistics vests, though the lack of IMP compatibility and suit lamps proved time and time again inefficient. This modified M3-L shell is the result of a 6-year R&D program; It provides utility, protection, AND comfort to all USCM non-combat personnel." - icon_state = "VL" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - flags_marine_armor = ARMOR_LAMP_OVERLAY //No squad colors when wearing this since it'd look funny. - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_VERYLOW - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - storage_slots = 1 - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - siemens_coefficient = 0.7 - uniform_restricted = null - -/obj/item/clothing/suit/storage/marine/light/vest/dcc - name = "\improper M3-VL pattern flak vest" - desc = "Effectively a combination of the M3-VL ballistics vest and M70 flak jacket, this armor is used by primarily by flight personnel because of its combined flak and ballistic defense and high mobility. It is also typically worn by military police officers as a result of the blunt force protection offered by the aforementioned armor layering." - icon_state = "VL_FLAK" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - -/obj/item/clothing/suit/storage/marine/light/synvest - name = "\improper M3A1 Synthetic Utility Vest" - desc = "This variant of the ubiquitous M3 pattern ballistics vest has been extensively modified, providing no protection in exchange for maximum mobility and storage space. Synthetic programming compliant." - icon_state = "VL_syn_camo" - flags_atom = NO_NAME_OVERRIDE - flags_marine_armor = ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED //No squad colors + can be worn by synths. - armor_melee = CLOTHING_ARMOR_NONE - armor_bullet = CLOTHING_ARMOR_NONE - armor_laser = CLOTHING_ARMOR_NONE - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_NONE - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_NONE - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - uniform_restricted = null - -/obj/item/clothing/suit/storage/marine/light/synvest/grey - icon_state = "VL_syn" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/jungle - icon_state = "VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/snow - icon_state = "s_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/desert - icon_state = "d_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/light/synvest/dgrey - icon_state = "c_VL_syn_camo" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/heavy - name = "\improper M3-H pattern heavy armor" - desc = "M3 armor vest with a rheological liner behind the chestplate, additional armor over the limbs to improve protection ballistic and blast protections. \nMarginal improvement in other areas, and the mass of the extra plates degrades agility, especially in null-gee." - specialty = "\improper M3-H pattern" - icon_state = "H1" - armor_variation = 6 - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/obj/item/clothing/suit/storage/marine/heavy/padded - icon_state = "H1" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/padless - icon_state = "H2" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/padless_lines - icon_state = "H3" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/carrier - icon_state = "H4" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/skull - icon_state = "H5" - armor_variation = 0 - -/obj/item/clothing/suit/storage/marine/heavy/smooth - icon_state = "H6" - armor_variation = 0 - -//===========================//SPECIALIST\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/specialist - name = "\improper B18 defensive armor" - desc = "A heavy, rugged set of armor plates for when you really, really need to not die horribly. Slows you down though.\nComes with two tricord injectors in each arm guard." - icon_state = "xarmor" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 2 - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - slowdown = SLOWDOWN_ARMOR_HEAVY - specialty = "B18 defensive" - unacidable = TRUE - var/injections = 4 - -/obj/item/clothing/suit/storage/marine/specialist/verb/inject() - set name = "Create Injector" - set category = "Object" - set src in usr - - if(usr.is_mob_incapacitated()) - return 0 - - if(!injections) - to_chat(usr, "Your armor is all out of injectors.") - return 0 - - if(usr.get_active_hand()) - to_chat(usr, "Your active hand must be empty.") - return 0 - - to_chat(usr, "You feel a faint hiss and an injector drops into your hand.") - var/obj/item/reagent_container/hypospray/autoinjector/skillless/O = new(usr) - usr.put_in_active_hand(O) - injections-- - playsound(src,'sound/machines/click.ogg', 15, 1) - return - -/obj/item/clothing/suit/storage/marine/M3G - name = "\improper M3-G4 grenadier armor" - desc = "A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by USCM Grenadiers." - icon_state = "grenadier" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - slowdown = SLOWDOWN_ARMOR_HEAVY - specialty = "M3-G4 grenadier" - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/M3T - name = "\improper M3-T light armor" - desc = "A custom set of M3 armor designed for users of long-ranged explosive weaponry." - icon_state = "demolitionist" - armor_bomb = CLOTHING_ARMOR_HIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - specialty = "M3-T light" - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/M3S - name = "\improper M3-S light armor" - desc = "A custom set of M3 armor designed for USCM Scouts." - icon_state = "scout_armor" - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - specialty = "M3-S light" - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - unacidable = TRUE - -#define FIRE_SHIELD_CD 150 - -/obj/item/clothing/suit/storage/marine/M35 - name = "\improper M35 pyrotechnician armor" - desc = "A custom set of M35 armor designed for use by USCM Pyrotechnicians." - icon_state = "pyro_armor" - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - fire_intensity_resistance = BURN_LEVEL_TIER_1 - max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE - specialty = "M35 pyrotechnician" - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/fire_shield) - unacidable = TRUE - var/fire_shield_on = FALSE - var/can_activate = TRUE - -/obj/item/clothing/suit/storage/marine/M35/equipped(mob/user, slot) - if(slot == WEAR_JACKET) - RegisterSignal(user, COMSIG_LIVING_FLAMER_CROSSED, PROC_REF(flamer_fire_callback)) - ..() - -/obj/item/clothing/suit/storage/marine/M35/verb/fire_shield() - set name = "Activate Fire Shield" - set desc = "Activate your armor's FIREWALK protocol for a short duration." - set category = "Pyro" - set src in usr - if(!usr || usr.is_mob_incapacitated(TRUE)) - return - if(!ishuman(usr)) - return - var/mob/living/carbon/human/H = usr - - if(H.wear_suit != src) - to_chat(H, SPAN_WARNING("You must be wearing the M35 pyro armor to activate FIREWALK protocol!")) - return - - if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_PYRO) - to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) - return - - if(fire_shield_on) - to_chat(H, SPAN_WARNING("You already have FIREWALK protocol activated!")) - return - - if(!can_activate) - to_chat(H, SPAN_WARNING("FIREWALK protocol was recently activated, wait before trying to activate it again.")) - return - - to_chat(H, SPAN_NOTICE("FIREWALK protocol has been activated. You will now be immune to fire for 6 seconds!")) - RegisterSignal(H, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_shield_is_on)) - RegisterSignal(H, list( - COMSIG_LIVING_FLAMER_FLAMED, - ), PROC_REF(flamer_fire_callback)) - fire_shield_on = TRUE - can_activate = FALSE - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - addtimer(CALLBACK(src, PROC_REF(end_fire_shield), H), 6 SECONDS) - - H.add_filter("firewalk_on", 1, list("type" = "outline", "color" = "#03fcc6", "size" = 1)) - -/obj/item/clothing/suit/storage/marine/M35/proc/end_fire_shield(mob/living/carbon/human/user) - if(!istype(user)) - return - to_chat(user, SPAN_NOTICE("FIREWALK protocol has finished.")) - UnregisterSignal(user, list( - COMSIG_LIVING_PREIGNITION, - COMSIG_LIVING_FLAMER_FLAMED, - )) - fire_shield_on = FALSE - - user.remove_filter("firewalk_on") - - addtimer(CALLBACK(src, PROC_REF(enable_fire_shield), user), FIRE_SHIELD_CD) - -/obj/item/clothing/suit/storage/marine/M35/proc/enable_fire_shield(mob/living/carbon/human/user) - if(!istype(user)) - return - to_chat(user, SPAN_NOTICE("FIREWALK protocol can be activated again.")) - can_activate = TRUE - - for(var/X in actions) - var/datum/action/A = X - A.update_button_icon() - -/// This proc is solely so that IgniteMob() fails -/obj/item/clothing/suit/storage/marine/M35/proc/fire_shield_is_on(mob/living/L) - SIGNAL_HANDLER - - if(L.fire_reagent?.fire_penetrating) - return - - return COMPONENT_CANCEL_IGNITION - -/obj/item/clothing/suit/storage/marine/M35/proc/flamer_fire_callback(mob/living/L, datum/reagent/R) - SIGNAL_HANDLER - - if(R.fire_penetrating) - return - - . = COMPONENT_NO_IGNITE - if(fire_shield_on) - . |= COMPONENT_NO_BURN - -/obj/item/clothing/suit/storage/marine/M35/dropped(mob/user) - if (!istype(user)) - return - UnregisterSignal(user, list( - COMSIG_LIVING_PREIGNITION, - COMSIG_LIVING_FLAMER_CROSSED, - COMSIG_LIVING_FLAMER_FLAMED, - )) - ..() - -#undef FIRE_SHIELD_CD - -/datum/action/item_action/specialist/fire_shield - ability_primacy = SPEC_PRIMARY_ACTION_2 - -/datum/action/item_action/specialist/fire_shield/New(mob/living/user, obj/item/holder) - ..() - name = "Activate Fire Shield" - button.name = name - button.overlays.Cut() - var/image/IMG = image('icons/obj/items/clothing/cm_suits.dmi', button, "pyro_armor") - button.overlays += IMG - -/datum/action/item_action/specialist/fire_shield/action_cooldown_check() - var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item - if (!istype(armor)) - return FALSE - - return !armor.can_activate - -/datum/action/item_action/specialist/fire_shield/can_use_action() - var/mob/living/carbon/human/H = owner - if(istype(H) && !H.is_mob_incapacitated() && H.wear_suit == holder_item) - return TRUE - -/datum/action/item_action/specialist/fire_shield/action_activate() - var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item - if (!istype(armor)) - return - - armor.fire_shield() - -#define FULL_CAMOUFLAGE_ALPHA 15 - -/obj/item/clothing/suit/storage/marine/ghillie - name = "\improper M45 pattern ghillie armor" - desc = "A lightweight ghillie camouflage suit, used by USCM snipers on recon missions. Very lightweight, but doesn't protect much." - icon_state = "ghillie_armor" - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_marine_armor = ARMOR_LAMP_OVERLAY - flags_item = MOB_LOCK_ON_EQUIP - specialty = "M45 pattern ghillie" - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - - var/camo_active = FALSE - var/hide_in_progress = FALSE - var/full_camo_alpha = FULL_CAMOUFLAGE_ALPHA - var/incremental_shooting_camo_penalty = 35 - var/current_camo = FULL_CAMOUFLAGE_ALPHA - var/camouflage_break = 5 SECONDS - var/camouflage_enter_delay = 4 SECONDS - var/can_camo = TRUE - - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/prepare_position) - -/obj/item/clothing/suit/storage/marine/ghillie/dropped(mob/user) - if(ishuman(user) && !issynth(user)) - deactivate_camouflage(user, FALSE) - - . = ..() - -/obj/item/clothing/suit/storage/marine/ghillie/verb/camouflage() - set name = "Prepare Position" - set desc = "Use the ghillie suit and the nearby environment to become near invisible." - set category = "Object" - set src in usr - if(!usr || usr.is_mob_incapacitated(TRUE)) - return - - if(!ishuman(usr) || hide_in_progress || !can_camo) - return - var/mob/living/carbon/human/H = usr - if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SNIPER && !(GLOB.character_traits[/datum/character_trait/skills/spotter] in H.traits)) - to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) - return - if(H.wear_suit != src) - to_chat(H, SPAN_WARNING("You must be wearing the ghillie suit to activate it!")) - return - - if(camo_active) - deactivate_camouflage(H) - return - - H.visible_message(SPAN_DANGER("[H] goes prone, and begins adjusting \his ghillie suit!"), SPAN_NOTICE("You go prone, and begins adjusting your ghillie suit."), max_distance = 4) - hide_in_progress = TRUE - H.unset_interaction() // If we're sticking to a machine gun or what not. - if(!do_after(H, camouflage_enter_delay, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - hide_in_progress = FALSE - return - hide_in_progress = FALSE - RegisterSignal(H, list( - COMSIG_MOB_FIRED_GUN, - COMSIG_MOB_FIRED_GUN_ATTACHMENT) - , PROC_REF(fade_in)) - RegisterSignal(H, list( - COMSIG_MOB_DEATH, - COMSIG_HUMAN_EXTINGUISH - ), PROC_REF(deactivate_camouflage)) - camo_active = TRUE - H.alpha = full_camo_alpha - H.FF_hit_evade = 1000 - ADD_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) - - RegisterSignal(H, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(handle_mob_move_or_look)) - - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] - SA.remove_from_hud(H) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] - XI.remove_from_hud(H) - - anim(H.loc, H, 'icons/mob/mob.dmi', null, "cloak", null, H.dir) - - -/obj/item/clothing/suit/storage/marine/ghillie/proc/deactivate_camouflage(mob/user) - SIGNAL_HANDLER - var/mob/living/carbon/human/H = user - if(!istype(H)) - return FALSE - - if(!camo_active) - return - - UnregisterSignal(H, list( - COMSIG_MOB_FIRED_GUN, - COMSIG_MOB_FIRED_GUN_ATTACHMENT, - COMSIG_MOB_DEATH, - COMSIG_HUMAN_EXTINGUISH, - COMSIG_MOB_MOVE_OR_LOOK - )) - - camo_active = FALSE - animate(H, alpha = initial(H.alpha), flags = ANIMATION_END_NOW) - H.FF_hit_evade = initial(H.FF_hit_evade) - REMOVE_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) - - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] - SA.add_to_hud(H) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] - XI.add_to_hud(H) - - H.visible_message(SPAN_DANGER("[H]'s camouflage fails!"), SPAN_WARNING("Your camouflage fails!"), max_distance = 4) - -/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_in(mob/user) - SIGNAL_HANDLER - var/mob/living/carbon/human/H = user - if(camo_active) - if(current_camo < full_camo_alpha) - current_camo = full_camo_alpha - current_camo = Clamp(current_camo + incremental_shooting_camo_penalty, full_camo_alpha, 255) - H.alpha = current_camo - addtimer(CALLBACK(src, PROC_REF(fade_out_finish), H), camouflage_break, TIMER_OVERRIDE|TIMER_UNIQUE) - animate(H, alpha = full_camo_alpha + 5, time = camouflage_break, easing = LINEAR_EASING, flags = ANIMATION_END_NOW) - -/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_out_finish(mob/living/carbon/human/H) - if(camo_active && H.wear_suit == src) - to_chat(H, SPAN_BOLDNOTICE("The smoke clears and your position is once again hidden completely!")) - animate(H, alpha = full_camo_alpha) - current_camo = full_camo_alpha - -/obj/item/clothing/suit/storage/marine/ghillie/proc/handle_mob_move_or_look(mob/living/mover, actually_moving, direction, specific_direction) - SIGNAL_HANDLER - - if(camo_active && actually_moving) - deactivate_camouflage(mover) - -/datum/action/item_action/specialist/prepare_position - ability_primacy = SPEC_PRIMARY_ACTION_1 - -/datum/action/item_action/specialist/prepare_position/New(mob/living/user, obj/item/holder) - ..() - name = "Prepare Position" - button.name = name - button.overlays.Cut() - var/image/IMG = image('icons/mob/hud/actions.dmi', button, "prepare_position") - button.overlays += IMG - -/datum/action/item_action/specialist/prepare_position/can_use_action() - var/mob/living/carbon/human/H = owner - if(istype(H) && !H.is_mob_incapacitated() && H.body_position == STANDING_UP && holder_item == H.wear_suit) - return TRUE - -/datum/action/item_action/specialist/prepare_position/action_activate() - var/obj/item/clothing/suit/storage/marine/ghillie/GS = holder_item - GS.camouflage() - -#undef FULL_CAMOUFLAGE_ALPHA - -/obj/item/clothing/suit/storage/marine/ghillie/forecon - name = "UDEP Thermal Poncho" - desc = "UDEP or the Ultra Diffusive Environmental Poncho is a camouflaged rain-cover worn to protect against the elements and chemical spills. It's commonly treated with an infrared absorbing coating, making a marine almost invisible in the rain. Favoured by USCM specialists for it's comfort and practicality." - icon_state = "mercenary_miner_armor" - flags_atom = MOB_LOCK_ON_EQUIP|NO_SNOW_TYPE|NO_NAME_OVERRIDE - -/obj/item/clothing/suit/storage/marine/sof - name = "\improper SOF Armor" - desc = "A heavily customized suit of M3 armor. Used by Marine Raiders." - icon_state = "marsoc" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGH - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_LIGHT - unacidable = TRUE - flags_atom = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE|NO_SNOW_TYPE - storage_slots = 4 - -//=============================//pmcS\\==================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran - flags_marine_armor = ARMOR_LAMP_OVERLAY - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE //Let's make these keep their name and icon. - -/obj/item/clothing/suit/storage/marine/veteran/pmc - name = "\improper M4 pattern PMC armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind." - icon_state = "pmc_armor" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/tool/crowbar, - /obj/item/storage/large_holster/katana, - /obj/item/storage/large_holster/machete, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/tool/crew_monitor, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc) - item_state_slots = list(WEAR_JACKET = "pmc_armor") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light - name = "\improper M4 pattern light PMC armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. Has some armor plating removed for extra mobility." - icon_state = "pmc_sniper" - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - item_state_slots = list(WEAR_JACKET = "pmc_sniper") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate - name = "\improper M1 pattern corporate security armor" - desc = "A basic vest with a Weyland-Yutani badge on the right breast. This is commonly worn by low-level guards protecting Weyland-Yutani facilities." - icon = 'icons/mob/humans/onmob/contained/wy_goons.dmi' - icon_state = "armor" - item_state = "armor" - item_state_slots = null - contained_sprite = TRUE - - flags_armor_protection = BODY_FLAG_CHEST - flags_cold_protection = BODY_FLAG_CHEST - flags_heat_protection = BODY_FLAG_CHEST - - slowdown = SLOWDOWN_ARMOR_NONE // only protects chest, but enables rapid movement - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate/lead - desc = "A basic vest with a Weyland-Yutani badge on the right breast. This variant is worn by low-level guards that have elevated in rank due to 'good conduct in the field', also known as corporate bootlicking." - icon_state = "lead_armor" - item_state = "lead_armor" - -/obj/item/clothing/suit/storage/marine/veteran/pmc/leader - name = "\improper M4 pattern PMC leader armor" - desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. This particular suit looks like it belongs to a high-ranking officer." - icon_state = "officer_armor" - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/leader) - item_state_slots = list(WEAR_JACKET = "officer_armor") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/sniper - name = "\improper M4 pattern PMC sniper armor" - icon_state = "pmc_sniper" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - flags_inv_hide = HIDELOWHAIR - item_state_slots = list(WEAR_JACKET = "pmc_sniper") - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth - name = "\improper M4 Synthetic PMC armor" - desc = "A serious modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, with every armor insert removed. It's designed with the idea of a high speed lifesaver in mind." - time_to_unequip = 0.5 SECONDS - time_to_equip = 1 SECONDS - armor_melee = CLOTHING_ARMOR_NONE - armor_bullet = CLOTHING_ARMOR_NONE - armor_laser = CLOTHING_ARMOR_NONE - armor_energy = CLOTHING_ARMOR_NONE - armor_bomb = CLOTHING_ARMOR_NONE - armor_bio = CLOTHING_ARMOR_NONE - armor_rad = CLOTHING_ARMOR_NONE - armor_internaldamage = CLOTHING_ARMOR_NONE - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT - -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth/Initialize() - flags_atom |= NO_NAME_OVERRIDE - flags_marine_armor |= SYNTH_ALLOWED - return ..() - -/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc - name = "\improper PMC gunner armor" - desc = "A modification of the standard Armat Systems M3 armor. Hooked up with harnesses and straps allowing the user to carry an M56 Smartgun." - icon_state = "heavy_armor" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - item_state_slots = list(WEAR_JACKET = "heavy_armor") - -/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc/terminator - name = "\improper M5Xg exoskeleton gunner armor" - desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk. This variant is designed to support a M56 Smartgun." - icon_state = "commando_armor" - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGH - armor_laser = CLOTHING_ARMOR_MEDIUM - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) - item_state_slots = list(WEAR_JACKET = "commando_armor") - unacidable = TRUE - -/obj/item/clothing/suit/storage/marine/veteran/pmc/commando - name = "\improper M5X exoskeleton armor" - desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk." - icon_state = "commando_armor" - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_VERYHIGH - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - flags_inventory = BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) - item_state_slots = list(WEAR_JACKET = "commando_armor") - unacidable = TRUE - -//===========================//DISTRESS\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/bear - name = "\improper H1 Iron Bears vest" - desc = "A protective vest worn by Iron Bears mercenaries." - icon_state = "bear_armor" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/bear) - -/obj/item/clothing/suit/storage/marine/veteran/dutch - name = "\improper D2 armored vest" - desc = "A protective vest worn by some seriously experienced mercs." - icon_state = "dutch_armor" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS //Makes no sense but they need leg/arm armor too. - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_HIGH - armor_rad = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - light_range = 7 - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/dutch) - -/obj/item/clothing/suit/storage/marine/veteran/van_bandolier - name = "safari jacket" - desc = "A tailored hunting jacket, cunningly lined with segmented armor plates. Sometimes the game shoots back." - icon_state = "van_bandolier" - item_state = "van_bandolier_jacket" - blood_overlay_type = "coat" - flags_marine_armor = NO_FLAGS //No shoulder light. - actions_types = list() - slowdown = SLOWDOWN_ARMOR_LIGHT - storage_slots = 2 - movement_compensation = SLOWDOWN_ARMOR_LIGHT - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/van_bandolier) - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/storage/bible, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/belt/gun/flaregun, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - /obj/item/storage/belt/shotgun/van_bandolier, - ) - -//===========================//U.P.P\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/faction - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - min_cold_protection_temperature = HELMET_MIN_COLD_PROT - max_heat_protection_temperature = HELMET_MAX_HEAT_PROT - blood_overlay_type = "armor" - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_MEDIUM - movement_compensation = SLOWDOWN_ARMOR_LIGHT - - -/obj/item/clothing/suit/storage/marine/faction/UPP - name = "\improper UM5 personal armor" - desc = "Standard body armor of the UPP military, the UM5 (Union Medium MK5) is a medium body armor, roughly on par with the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. Unlike the M3, however, the plate has a heavier neckplate. This has earned many UA members to refer to UPP soldiers as 'tin men'." - icon_state = "upp_armor" - armor_bullet = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGH - storage_slots = 3 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) - -/obj/item/clothing/suit/storage/marine/faction/UPP/support - name = "\improper UL6 personal armor" - desc = "Standard body armor of the UPP military, the UL6 (Union Light MK6) is a light body armor, slightly weaker than the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. This set of personal armor lacks the iconic neck piece and some of the armor in favor of user mobility." - storage_slots = 4 - icon_state = "upp_armor_support" - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_LOW - -/obj/item/clothing/suit/storage/marine/faction/UPP/commando - name = "\improper UM5CU personal armor" - desc = "A modification of the UM5, designed for stealth operations." - icon_state = "upp_armor_commando" - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy - name = "\improper UH7 heavy plated armor" - desc = "An extremely heavy-duty set of body armor in service with the UPP military, the UH7 (Union Heavy MK7) is known for having powerful ballistic protection, alongside a noticeable neck guard, fortified in order to allow the wearer to endure the stresses of the bulky helmet." - icon_state = "upp_armor_heavy" - storage_slots = 3 - slowdown = SLOWDOWN_ARMOR_HEAVY - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - flags_armor_protection = BODY_FLAG_ALL_BUT_HEAD - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_HIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS - -/obj/item/clothing/suit/storage/marine/faction/UPP/heavy/Initialize() - . = ..() - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/minigun, - /obj/item/ammo_magazine/pkp, - ) - -/obj/item/clothing/suit/storage/marine/faction/UPP/officer - name = "\improper UL4 officer jacket" - desc = "A lightweight jacket, issued to officers of the UPP's military. Slightly protective from incoming damage, best off with proper armor however." - icon_state = "upp_coat_officer" - slowdown = SLOWDOWN_ARMOR_NONE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 3 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) - -/obj/item/clothing/suit/storage/marine/faction/UPP/kapitan - name = "\improper UL4 senior officer jacket" - desc = "A lightweight jacket, issued to senior officers of the UPP's military. Made of high-quality materials, even going as far as having the ranks and insignia of the Kapitan and their Company emblazoned on the shoulders and front of the jacket. Slightly protective from incoming damage, best off with proper armor however." - icon_state = "upp_coat_kapitan" - slowdown = SLOWDOWN_ARMOR_NONE - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - storage_slots = 4 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) - -/obj/item/clothing/suit/storage/marine/faction/UPP/mp - name = "\improper UL4 camouflaged jacket" - desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Some level of shrapnel and low velocity gunfire protection is provided by para-aramid inserts, though not much." - icon_state = "upp_coat_mp" - slowdown = SLOWDOWN_ARMOR_NONE - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat - armor_bullet = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_rad = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - storage_slots = 4 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP) - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -/obj/item/clothing/suit/storage/marine/faction/UPP/jacket/ivan - name = "\improper UH4 Camo Jacket" - desc = "An experimental heavily armored variant of the UL4 given to only the most elite units... usually." - slowdown = SLOWDOWN_ARMOR_MEDIUM - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET - armor_melee = CLOTHING_ARMOR_HIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_HIGH - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_HIGH - storage_slots = 2 - - -//===========================//FREELANCER\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/faction/freelancer - name = "freelancer cuirass" - desc = "An armored protective chestplate scrapped together from various plates. It keeps up remarkably well, as the craftsmanship is solid, and the design mirrors such armors in the UPP and the USCM. The many skilled craftsmen in the freelancers ranks produce these vests at a rate about one a month." - icon_state = "freelancer_armor" - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/freelancer) - -//this one is for CLF -/obj/item/clothing/suit/storage/militia - name = "colonial militia hauberk" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops." - icon = 'icons/obj/items/clothing/cm_suits.dmi' - icon_state = "rebel_armor" - item_icons = list( - WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' - ) - sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_MEDIUMLOW - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - storage_slots = 2 - uniform_restricted = list(/obj/item/clothing/under/colonist) - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/storage/large_holster/machete, - /obj/item/weapon/baseballbat, - /obj/item/weapon/baseballbat/metal, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROT - valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) - -/obj/item/clothing/suit/storage/militia/Initialize() - . = ..() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - -/obj/item/clothing/suit/storage/militia/vest - name = "colonial militia vest" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant protects only the chest and abdomen." - icon_state = "clf_2" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - slowdown = 0.2 - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/obj/item/clothing/suit/storage/militia/brace - name = "colonial militia brace" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant has some of the chest pieces removed." - icon_state = "clf_3" - flags_armor_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - slowdown = 0.2 - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/obj/item/clothing/suit/storage/militia/partial - name = "colonial militia partial hauberk" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This even lighter variant has some of the arm pieces removed." - icon_state = "clf_4" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS - slowdown = 0.2 - -/obj/item/clothing/suit/storage/militia/smartgun - name = "colonial militia harness" - desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This one has straps interweaved with the plates, that allow the user to fire a captured smartgun, if a bit uncomfortably." - flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS - -/obj/item/clothing/suit/storage/CMB - name = "\improper CMB Deputy jacket" - desc = "A polyster blue bomber jacket enforced with light ballistic weaving. It has a Marshal's Deputy badge pinned to it. The back is enscribed with the word 'DEPUTY'." - icon_state = "CMB_jacket" - item_state = "CMB_jacket" - blood_overlay_type = "coat" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS - armor_melee = CLOTHING_ARMOR_MEDIUMLOW - armor_bullet = CLOTHING_ARMOR_MEDIUMLOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_LOW - armor_bio = CLOTHING_ARMOR_LOW - armor_internaldamage = CLOTHING_ARMOR_LOW - allowed = list( - /obj/item/weapon/gun, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/device/flashlight, - /obj/item/device/healthanalyzer, - /obj/item/device/radio, - /obj/item/tank/emergency_oxygen, - /obj/item/tool/crowbar, - /obj/item/tool/crew_monitor, - /obj/item/tool/pen, - /obj/item/storage/belt/gun/m4a3, - /obj/item/storage/belt/gun/m44, - /obj/item/storage/belt/gun/mateba, - /obj/item/storage/belt/gun/smartpistol, - /obj/item/storage/large_holster/machete, - /obj/item/storage/large_holster/katana, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -/obj/item/clothing/suit/storage/CMB/Initialize() - . = ..() - pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. - pockets.bypass_w_limit = list( - /obj/item/ammo_magazine/rifle, - /obj/item/ammo_magazine/smg, - /obj/item/ammo_magazine/sniper, - ) - pockets.max_storage_space = 8 - -/obj/item/clothing/suit/storage/CMB/marshal - name = "\improper CMB Marshal jacket" - desc = "A thick and stylish black leather bomber jacket with a Marshal's badge pinned to it. The back is enscribed with the word 'MARSHAL'." - icon_state = "CMB_jacket_marshal" - item_state = "CMB_jacket_marshal" - -/obj/item/clothing/suit/storage/RO - name = "quartermaster jacket" - desc = "A green jacket worn by USCM personnel. The back has the flag of the United Americas on it." - icon_state = "RO_jacket" - blood_overlay_type = "coat" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_ARMS - valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) - restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) - -//===========================//HELGHAST - MERCENARY\\================================\\ -//=====================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/mercenary - name = "\improper K12 ceramic plated armor" - desc = "A set of grey, heavy ceramic armor with dark blue highlights. It is the standard uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_heavy_armor" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bullet = CLOTHING_ARMOR_VERYHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_HIGHPLUS - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) - item_state_slots = list(WEAR_JACKET = "mercenary_heavy_armor") - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/heavy - name = "\improper Modified K12 ceramic plated armor" - desc = "A set of grey, heavy ceramic armor with dark blue highlights. It has been modified with extra ceramic plates placed in its storage pouch, and seems intended to support an extremely heavy weapon." - armor_melee = CLOTHING_ARMOR_ULTRAHIGH - armor_bullet = CLOTHING_ARMOR_ULTRAHIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_HIGHPLUS - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_VERYHIGHPLUS - storage_slots = 1 - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner - name = "\improper Y8 armored miner vest" - desc = "A set of beige, light armor built for protection while mining. It is a specialized uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_miner_armor" - storage_slots = 3 - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) - item_state_slots = list(WEAR_JACKET = "mercenary_miner_armor") - -/obj/item/clothing/suit/storage/marine/veteran/mercenary/support - name = "\improper Z7 armored vest" - desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector." - icon_state = "mercenary_engineer_armor" - item_state_slots = list(WEAR_JACKET = "mercenary_engineer_armor") - -/obj/item/clothing/suit/storage/marine/M3G/hefa - name = "\improper HEFA Knight armor" - desc = "A thick piece of armor adorning a HEFA. Usually seen on a HEFA knight." - specialty = "HEFA Knight" - icon_state = "hefadier" - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - flags_item = NO_CRYO_STORE - flags_marine_armor = ARMOR_LAMP_OVERLAY - armor_bullet = CLOTHING_ARMOR_VERYHIGH - armor_melee = CLOTHING_ARMOR_VERYHIGH - armor_bomb = CLOTHING_ARMOR_GIGAHIGH - - -//=========================//PROVOST\\================================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/MP/provost - name = "\improper M3 pattern Provost armor" - desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvmedium" - item_state_slots = list(WEAR_JACKET = "pvmedium") - slowdown = SLOWDOWN_ARMOR_LIGHT - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_laser = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH - armor_bio = CLOTHING_ARMOR_MEDIUMHIGH - armor_internaldamage = CLOTHING_ARMOR_MEDIUM - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - storage_slots = 3 - -/obj/item/clothing/suit/storage/marine/MP/provost/tml - name = "\improper M3 pattern Senior Provost armor" - desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvleader" - item_state_slots = list(WEAR_JACKET = "pvleader") - -/obj/item/clothing/suit/storage/marine/MP/provost/marshal - name = "\improper M5 pattern Provost Marshal armor" - desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." - icon_state = "pvmarshal" - item_state_slots = list(WEAR_JACKET = "pvmarshal") - w_class = SIZE_MEDIUM - storage_slots = 4 - -/obj/item/clothing/suit/storage/marine/MP/provost/light - name = "\improper M3 pattern Provost light armor" - desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - icon_state = "pvlight" - item_state_slots = list(WEAR_JACKET = "pvlight") - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT - -/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi - name = "\improper M3 pattern Provost flexi-armor" - desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." - w_class = SIZE_MEDIUM - icon_state = "pvlight_2" - item_state_slots = list(WEAR_JACKET = "pvlight_2") - storage_slots = 2 - -//================//UNITED AMERICAS ALLIED COMMAND\\=====================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/uaac/tis/sa - name = "\improper M3 pattern UAAC-TIS Special Agent Armor" - desc = "A modified luxury armor, originally meant for a USCM Provost Marshall, modified to use the colors and insignia of the TIS. The Three Eyes is technically able to requisition any equipment or personnel to fulfill its mission and often uses this privilege to outfit their agents with high-quality gear from other UA military forces." - icon_state = "tis" - item_state_slots = list(WEAR_JACKET = "tis") - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_laser = CLOTHING_ARMOR_LOW - armor_energy = CLOTHING_ARMOR_LOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW - storage_slots = 2 - slowdown = SLOWDOWN_ARMOR_LIGHT - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/explosive/grenade, - /obj/item/device/binoculars, - /obj/item/attachable/bayonet, - /obj/item/storage/backpack/general_belt, - /obj/item/device/hailer, - /obj/item/storage/belt/gun, - /obj/item/weapon/sword/ceremonial, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - uniform_restricted = list(/obj/item/clothing/under/uaac/tis) - -//================//UNITED AMERICAS RIOT CONTROL\\=====================\\ -//=======================================================================\\ - -/obj/item/clothing/suit/storage/marine/veteran/ua_riot - name = "\improper UA-M1 body armor" - desc = "Based on the M-3 pattern employed by the USCM, the UA-M1 body armor is employed by UA security, riot control and union-busting teams. While robust against melee and bullet attacks, it critically lacks coverage of the legs and arms." - icon_state = "ua_riot" - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - armor_melee = CLOTHING_ARMOR_MEDIUMHIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - slowdown = SLOWDOWN_ARMOR_VERY_LIGHT // it's lighter - uniform_restricted = list(/obj/item/clothing/under/marine/ua_riot) - flags_atom = NO_SNOW_TYPE - -//==================War Correspondent==================\\ - -/obj/item/clothing/suit/storage/marine/light/reporter - name = "press body armor" - desc = "Body armor used by war correspondents in battles and wars across the universe." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_armor" - flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE - contained_sprite = TRUE - - -//=ROYAL MARINES=\\ - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine - name = "kestrel armoured vest" - desc = "A customizable personal armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." - icon_state = "rmc_light" - item_state = "rmc_light" - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - allowed = list( - /obj/item/weapon/gun, - /obj/item/tank/emergency_oxygen, - /obj/item/device/flashlight, - /obj/item/ammo_magazine/, - /obj/item/weapon/baton, - /obj/item/handcuffs, - /obj/item/storage/fancy/cigarettes, - /obj/item/tool/lighter, - /obj/item/explosive/grenade, - /obj/item/storage/bible, - /obj/item/weapon/sword/machete, - /obj/item/attachable/bayonet, - /obj/item/device/motiondetector, - /obj/item/device/walkman, - ) - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light //RMC Rifleman Armor - icon_state = "rmc_light" - item_state = "rmc_light" - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_energy = CLOTHING_ARMOR_MEDIUMLOW - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - slowdown = SLOWDOWN_ARMOR_LIGHT - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader //RMC TL & LT Armor - name = "kestrel armoured carry vest" - icon_state = "rmc_light_padded" - item_state = "rmc_light_padded" - storage_slots = 7 - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/smartgun //Smartgun Spec Armor - name = "kestrel armoured smartgun harness" - icon_state = "rmc_smartgun" - item_state = "rmc_smartgun" - flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS - -/obj/item/clothing/suit/storage/marine/veteran/royal_marine/pointman //Pointman Spec Armor - name = "kestrel pointman armour" - desc = "A heavier version of the armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." - icon_state = "rmc_pointman" - item_state = "rmc_pointman" - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_HIGHPLUS - armor_bomb = CLOTHING_ARMOR_HIGHPLUS - armor_bio = CLOTHING_ARMOR_MEDIUM - armor_rad = CLOTHING_ARMOR_MEDIUM - armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH - storage_slots = 7 - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - movement_compensation = SLOWDOWN_ARMOR_MEDIUM - -/atom/movable/marine_light - light_system = DIRECTIONAL_LIGHT - -//CBRN -/obj/item/clothing/suit/storage/marine/cbrn - name = "\improper M3-M armor" - desc = "While lacking the appearance of the M3 pattern armor worn in regular service, this armor piece is still a derivative of it. It has been heavily modified to fit over the MOPP suit with additional padding and Venlar composite layers removed, so as not to restrict the wearer’s movement. However, with the reduction of composite layers, the personal protection offered is less than desired with complaints having been lodged since 2165." - icon_state = "cbrn" - item_state = "cbrn" - slowdown = SLOWDOWN_ARMOR_HEAVY - armor_melee = CLOTHING_ARMOR_MEDIUM - armor_bullet = CLOTHING_ARMOR_MEDIUM - armor_bomb = CLOTHING_ARMOR_MEDIUM - armor_bio = CLOTHING_ARMOR_LOW - armor_rad =CLOTHING_ARMOR_MEDIUMLOW - armor_internaldamage = CLOTHING_ARMOR_LOW - flags_marine_armor = NO_FLAGS - flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE - flags_inventory = BLOCKSHARPOBJ - flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN - uniform_restricted = list(/obj/item/clothing/under/marine/cbrn) - -/obj/item/clothing/suit/storage/marine/cbrn/advanced - slowdown = SLOWDOWN_ARMOR_LOWHEAVY - armor_melee = CLOTHING_ARMOR_HIGH - armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH - armor_bomb = CLOTHING_ARMOR_ULTRAHIGH - armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS - armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS - armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS diff --git a/code/modules/clothing/suits/marine_armor/_marine_armor.dm b/code/modules/clothing/suits/marine_armor/_marine_armor.dm new file mode 100644 index 0000000000..f336ce1e46 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/_marine_armor.dm @@ -0,0 +1,686 @@ +#define DEBUG_ARMOR_PROTECTION 0 + +#if DEBUG_ARMOR_PROTECTION +/mob/living/carbon/human/verb/check_overall_protection() + set name = "Get Armor Value" + set category = "Debug" + set desc = "Shows the armor value of the bullet category." + + var/armor = 0 + var/counter = 0 + for(var/X in H.limbs) + var/obj/limb/E = X + armor = getarmor_organ(E, ARMOR_BULLET) + to_chat(src, SPAN_DEBUG("[E.name] is protected with [armor] armor against bullets.")) + counter += armor + to_chat(src, SPAN_DEBUG("The overall armor score is: [counter].")) +#endif + +//=======================================================================\\ +//=======================================================================\\ + +#define ALPHA 1 +#define BRAVO 2 +#define CHARLIE 3 +#define DELTA 4 +#define ECHO 5 +#define CRYO 6 +#define SOF 7 +#define NOSQUAD 8 + +// MARINE STORAGE ARMOR + +/obj/item/clothing/suit/storage/marine + name = "\improper M3 pattern marine armor" + desc = "Standard USCMC issue M3 Pattern Personal Armor. Composite ballistic armor, integral biomonitoring system, and brackets for the IMP system as well as the TNR Shoulder Lamp. \nHas some extra pouches on the sides for storage." + icon = 'icons/obj/items/clothing/cm_suits.dmi' + icon_state = "1" + item_state = "marine_armor" //Make unique states for Officer & Intel armors. + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' + ) + flags_atom = FPRINT|CONDUCT + flags_inventory = BLOCKSHARPOBJ + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + min_cold_protection_temperature = HELMET_MIN_COLD_PROT + max_heat_protection_temperature = HELMET_MAX_HEAT_PROT + blood_overlay_type = "armor" + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + storage_slots = 3 + siemens_coefficient = 0.7 + slowdown = SLOWDOWN_ARMOR_MEDIUM + allowed = list( + /obj/item/weapon/gun, + /obj/item/prop/prop_gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/storage/bible, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/storage/belt/gun/type47, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/belt/gun/flaregun, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + /obj/item/storage/belt/gun/m39, + /obj/item/storage/belt/gun/xm51, + ) + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) + + light_power = 3 + light_range = 4 + light_system = MOVABLE_LIGHT + + var/flashlight_cooldown = 0 //Cooldown for toggling the light + var/locate_cooldown = 0 //Cooldown for SL locator + var/armor_overlays[] + actions_types = list(/datum/action/item_action/toggle) + var/flags_marine_armor = ARMOR_SQUAD_OVERLAY|ARMOR_LAMP_OVERLAY + var/specialty = "M3 pattern marine" //Same thing here. Give them a specialty so that they show up correctly in vendors. speciality does NOTHING if you have NO_NAME_OVERRIDE + w_class = SIZE_HUGE + uniform_restricted = list(/obj/item/clothing/under/marine) + sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') + time_to_unequip = 20 + time_to_equip = 20 + pickup_sound = "armorequip" + drop_sound = "armorequip" + equip_sounds = list('sound/handling/putting_on_armor1.ogg') + var/armor_variation = 0 + /// The dmi where the grayscale squad overlays are contained + var/squad_overlay_icon = 'icons/mob/humans/onmob/suit_1.dmi' + + var/atom/movable/marine_light/light_holder + +/obj/item/clothing/suit/storage/marine/Initialize(mapload) + . = ..() + if(!(flags_atom & NO_NAME_OVERRIDE)) + name = "[specialty]" + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + name += " snow armor" //Leave marine out so that armors don't have to have "Marine" appended (see: generals). + else + name += " armor" + + if(!(flags_atom & NO_SNOW_TYPE)) + select_gamemode_skin(type) + armor_overlays = list("lamp") //Just one for now, can add more later. + if(armor_variation && mapload) + set_armor_style("Random") + update_icon() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + + light_holder = new(src) + +/obj/item/clothing/suit/storage/marine/Destroy() + QDEL_NULL(light_holder) + return ..() + +/obj/item/clothing/suit/storage/marine/update_icon(mob/user) + var/image/I + armor_overlays["lamp"] = null + if(flags_marine_armor & ARMOR_LAMP_OVERLAY) + if(flags_marine_armor & ARMOR_LAMP_ON) + I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-on") + else + I = image('icons/obj/items/clothing/cm_suits.dmi', src, "lamp-off") + armor_overlays["lamp"] = I + overlays += I + else armor_overlays["lamp"] = null + if(user) user.update_inv_wear_suit() + + +/obj/item/clothing/suit/storage/marine/post_vendor_spawn_hook(mob/living/carbon/human/user) //used for randomizing/selecting a variant for armors. + if(!armor_variation) + return + + if(user?.client?.prefs) + // Set the armor style to the user's preference. + set_armor_style(user.client.prefs.preferred_armor) + else + // Or if that isn't possible, just pick a random one. + set_armor_style("Random") + update_icon(user) + +/obj/item/clothing/suit/storage/marine/attack_self(mob/user) + ..() + + if(!isturf(user.loc)) + to_chat(user, SPAN_WARNING("You cannot turn the light [light_on ? "off" : "on"] while in [user.loc].")) //To prevent some lighting anomalies. + return + + if(flashlight_cooldown > world.time) + return + if(!ishuman(user)) + return + + var/mob/living/carbon/human/H = user + if(H.wear_suit != src) + return + + turn_light(user, !light_on) + +/obj/item/clothing/suit/storage/marine/item_action_slot_check(mob/user, slot) + if(!ishuman(user)) + return FALSE + if(slot != WEAR_JACKET) + return FALSE + return TRUE //only give action button when armor is worn. + +/obj/item/clothing/suit/storage/marine/turn_light(mob/user, toggle_on) + . = ..() + if(. != CHECKS_PASSED) + return + set_light_range(initial(light_range)) + set_light_power(floor(initial(light_power) * 0.5)) + set_light_on(toggle_on) + flags_marine_armor ^= ARMOR_LAMP_ON + + light_holder.set_light_flags(LIGHT_ATTACHED) + light_holder.set_light_range(initial(light_range)) + light_holder.set_light_power(initial(light_power)) + light_holder.set_light_on(toggle_on) + + if(!toggle_on) + playsound(src, 'sound/handling/click_2.ogg', 50, 1) + + playsound(src, 'sound/handling/suitlight_on.ogg', 50, 1) + update_icon(user) + + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + +/obj/item/clothing/suit/storage/marine/mob_can_equip(mob/living/carbon/human/M, slot, disable_warning = 0) + . = ..() + if (.) + if(issynth(M) && M.allow_gun_usage == FALSE && !(flags_marine_armor & SYNTH_ALLOWED)) + M.visible_message(SPAN_DANGER("Your programming prevents you from wearing this!")) + return 0 + +/** + * Updates the armor's `icon_state` to the style represented by `new_style`. + * + * Arguments: + * * new_style - The new armor style. May only be one of `GLOB.armor_style_list`'s keys, or `"Random"`. + */ +/obj/item/clothing/suit/storage/marine/proc/set_armor_style(new_style) + // Regex to match one or more digits. + var/static/regex/digits = new("\\d+") + // Integer for the new armor style's `icon_state`. + var/new_look + + if(new_style == "Random") + // The style icon states are all numbers between 1 and `armor_variation`, so this picks a random one. + new_look = rand(1, armor_variation) + else + new_look = GLOB.armor_style_list[new_style] + + // Replace the digits in the current icon state with `new_look`. (E.g. "L6" -> "L2") + icon_state = digits.Replace(icon_state, new_look) + +/obj/item/clothing/suit/storage/marine/medium/rto + icon_state = "io" + armor_variation = 0 + name = "\improper M4 pattern marine armor" + desc = "A well tinkered and crafted hybrid of Smart-Gunner mesh and M3 pattern plates. Robust, yet nimble, with room for all your pouches." + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 4 + light_range = 5 //slightly higher + specialty = "M4 pattern marine" + +/obj/item/clothing/suit/storage/marine/rto/forecon + name = "\improper M3-R pattern recon armor" + desc = "A modified Colonial Marines M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a leather pouch strapped to it for limited storage. Issued exclusively to FORECON units." + icon_state = "forecon" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/MP + name = "\improper M2 pattern MP armor" + desc = "A standard Colonial Marines M2 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "mp_armor" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/device/hailer, + /obj/item/storage/belt/gun, + /obj/item/weapon/sword/ceremonial, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/mp) + specialty = "M2 pattern MP" + item_state_slots = list(WEAR_JACKET = "mp_armor") + black_market_value = 20 + +/obj/item/clothing/suit/storage/marine/MP/warden + name = "\improper M3 pattern warden MP armor" + desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Wardens. Useful for letting your men know who is in charge." + icon_state = "warden" + uniform_restricted = list(/obj/item/clothing/under/marine/warden) + specialty = "M3 pattern warden MP" + item_state_slots = list(WEAR_JACKET = "warden") + +/obj/item/clothing/suit/storage/marine/MP/WO + name = "\improper M3 pattern chief MP armor" + desc = "A well-crafted suit of M3 Pattern Armor typically distributed to Chief MPs. Useful for letting your men know who is in charge." + icon_state = "warrant_officer" + uniform_restricted = list(/obj/item/clothing/under/marine/officer/warrant) + specialty = "M3 pattern chief MP" + item_state_slots = list(WEAR_JACKET = "warrant_officer") + black_market_value = 30 + +/obj/item/clothing/suit/storage/marine/MP/general + name = "\improper M3 pattern general officer armor" + desc = "A well-crafted suit of M3 Pattern Armor with a gold shine. It looks very expensive, but shockingly fairly easy to carry and wear." + icon_state = "general" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + uniform_restricted = list(/obj/item/clothing/under/marine/officer/general) + specialty = "M3 pattern general" + item_state_slots = list(WEAR_JACKET = "general") + w_class = SIZE_MEDIUM + +/obj/item/clothing/suit/storage/marine/MP/SO + name = "\improper M3 pattern officer armor" + desc = "A well-crafted suit of M3 Pattern Armor typically found in the hands of higher-ranking officers. Useful for letting your men know who is in charge when taking to the field." + icon_state = "officer" + storage_slots = 3 + flags_atom = null + uniform_restricted = list(/obj/item/clothing/under/marine/officer, /obj/item/clothing/under/rank/qm_suit, /obj/item/clothing/under/rank/chief_medical_officer, /obj/item/clothing/under/marine/dress) + specialty = "M3 pattern officer" + item_state_slots = list(WEAR_JACKET = "officer") + +//Making a new object because we might want to edit armor values and such. +//Or give it its own sprite. It's more for the future. +/obj/item/clothing/suit/storage/marine/MP/CO + name = "\improper M3 pattern commanding officer armor" + desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge." + icon_state = "co_officer" + item_state = "co_officer" + armor_bullet = CLOTHING_ARMOR_HIGH + storage_slots = 3 + flags_atom = NO_SNOW_TYPE + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + uniform_restricted = list(/obj/item/clothing/under/marine, /obj/item/clothing/under/rank/qm_suit) + specialty = "M3 pattern captain" + item_state_slots = list(WEAR_JACKET = "co_officer") + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_PONCHO) + black_market_value = 35 + + +/obj/item/clothing/suit/storage/marine/MP/CO/jacket + name = "\improper M3 pattern commanding officer armored coat" + desc = "A robust, well-polished suit of armor for the Commanding Officer. Custom-made to fit its owner with special straps to operate a smartgun. Show those Marines who's really in charge. This one has a coat over it for added warmth." + icon_state = "bridge_coat_armored" + item_state = "bridge_coat_armored" + item_state_slots = list(WEAR_JACKET = "bridge_coat_armored") + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_RANK) + +/obj/item/clothing/suit/storage/marine/medium/leader + name = "\improper B12 pattern marine armor" + desc = "Semi-experimental body armor system similar to M3, incorporating primarily carbon fiber instead of boron carbide. \nDesigned in a lovely olive green, slightly improved protection against blunt impact and biological hazards." + icon_state = "7" + armor_variation = 0 + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + specialty = "B12 pattern marine" + light_range = 5 + +/obj/item/clothing/suit/storage/marine/tanker + name = "\improper M3 pattern tanker armor" + desc = "Armored vest sometimes worn by USCMC armor crews. More bulky than a flak vest or service jacket, but substantially improved protection should the wearer need to dismount." + icon_state = "tanker" + uniform_restricted = list(/obj/item/clothing/under/marine/officer/tanker) + specialty = "M3 pattern tanker" + storage_slots = 2 + +//===========================//PFC ARMOR CLASSES\\================================\\ +//=================================================================================\\ + +// M3 pattern marine armor +/obj/item/clothing/suit/storage/marine/medium + armor_variation = 6 + light_power = 4 + +/obj/item/clothing/suit/storage/marine/medium/padded + name = "M3 pattern padded marine armor" + icon_state = "1" + armor_variation = 0 + specialty = "M3 pattern padded marine" + +/obj/item/clothing/suit/storage/marine/medium/padless + name = "M3 pattern padless marine armor" + icon_state = "2" + armor_variation = 0 + specialty = "M3 pattern padless marine" + +/obj/item/clothing/suit/storage/marine/medium/padless_lines + name = "M3 pattern ridged marine armor" + icon_state = "3" + armor_variation = 0 + specialty = "M3 pattern ridged marine" + +/obj/item/clothing/suit/storage/marine/medium/carrier + name = "M3 pattern carrier marine armor" + icon_state = "4" + armor_variation = 0 + specialty = "M3 pattern carrier marine" + +/obj/item/clothing/suit/storage/marine/medium/skull + name = "M3 pattern skull marine armor" + icon_state = "5" + armor_variation = 0 + specialty = "M3 pattern skull marine" + +/obj/item/clothing/suit/storage/marine/medium/smooth + name = "M3 pattern smooth marine armor" + icon_state = "6" + armor_variation = 0 + specialty = "M3 pattern smooth marine" + +// M3-L pattern light armor +/obj/item/clothing/suit/storage/marine/light + name = "\improper M3-L pattern light armor" + desc = "A lighter, cut down version of the standard M3 pattern armor. It sacrifices durability for more speed." + specialty = "\improper M3-L pattern light" + icon_state = "L1" + armor_variation = 6 + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 2 + +/obj/item/clothing/suit/storage/marine/light/padded + icon_state = "L1" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/padless + icon_state = "L2" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/padless_lines + icon_state = "L3" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/carrier + icon_state = "L4" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/skull + icon_state = "L5" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/smooth + icon_state = "L6" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/light/standard + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/vest + name = "\improper M3-VL pattern ballistics vest" + desc = "Up until 2182 USCM non-combat personnel were issued non-standardized ballistics vests, though the lack of IMP compatibility and suit lamps proved time and time again inefficient. This modified M3-L shell is the result of a 6-year R&D program; It provides utility, protection, AND comfort to all USCM non-combat personnel." + icon_state = "VL" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_armor = ARMOR_LAMP_OVERLAY //No squad colors when wearing this since it'd look funny. + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_VERYLOW + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + storage_slots = 1 + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + siemens_coefficient = 0.7 + uniform_restricted = null + +/obj/item/clothing/suit/storage/marine/light/vest/dcc + name = "\improper M3-VL pattern flak vest" + desc = "Effectively a combination of the M3-VL ballistics vest and M70 flak jacket, this armor is used by primarily by flight personnel because of its combined flak and ballistic defense and high mobility. It is also typically worn by military police officers as a result of the blunt force protection offered by the aforementioned armor layering." + icon_state = "VL_FLAK" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + +/obj/item/clothing/suit/storage/marine/light/synvest + name = "\improper M3A1 Synthetic Utility Vest" + desc = "This variant of the ubiquitous M3 pattern vest has been extensively modified, providing no protection in exchange for maximum mobility and added storage. Synthetic programming compliant." + icon_state = "VL_syn_camo" + flags_atom = NO_NAME_OVERRIDE + flags_marine_armor = ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED //No squad colors + can be worn by synths. + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + uniform_restricted = null + +/obj/item/clothing/suit/storage/marine/light/synvest/grey + icon_state = "VL_syn" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/jungle + icon_state = "VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/snow + icon_state = "s_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/desert + icon_state = "d_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/synvest/dgrey + icon_state = "c_VL_syn_camo" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/light/recon + name = "M3-R pattern light armor" + desc = "Special issue light armor for forward econnaissance Marines. Offers similar protection as M3 armor but none of the slowdown." + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + +// M3-EOD pattern heavy armor +/obj/item/clothing/suit/storage/marine/heavy + name = "\improper M3-H pattern heavy armor" + desc = "M3 armor vest with a rheological liner behind the chestplate, additional armor over the limbs to improve protection ballistic and blast protections. \nMarginal improvement in other areas, and the mass of the extra plates degrades agility, especially in null-gee." + desc_lore = "This configuration of the iconic armor was developed during the Canton War in 2160 between the UPP and USCM - Designed in response to a need for higher protection for ComTechs assigned as EODs during the conflict, this is the pinnacle of protection for your average marine. The shoulders and kneepads have both been expanded upon heavily, covering up the arteries on each limb. A special spall liner was developed for this suit, with the same technology being used in the M70 Flak Jacket being developed at the same time." + specialty = "\improper M3-H pattern" + icon_state = "H1" + armor_variation = 6 + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + light_power = 4 + light_range = 5 + +/obj/item/clothing/suit/storage/marine/heavy/padded + icon_state = "H1" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/padless + icon_state = "H2" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/padless_lines + icon_state = "H3" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/carrier + icon_state = "H4" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/skull + icon_state = "H5" + armor_variation = 0 + +/obj/item/clothing/suit/storage/marine/heavy/smooth + icon_state = "H6" + armor_variation = 0 + +//===========================//SPECIALIST\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/specialist + name = "\improper B18 defensive armor" + desc = "A heavy, rugged set of armor plates for when you really, really need to not die horribly. Slows you down though.\nComes with two tricord injectors in each arm guard." + icon_state = "xarmor" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + slowdown = SLOWDOWN_ARMOR_HEAVY + specialty = "B18 defensive" + unacidable = TRUE + var/injections = 4 + +/obj/item/clothing/suit/storage/marine/specialist/verb/inject() + set name = "Create Injector" + set category = "Object" + set src in usr + + if(usr.is_mob_incapacitated()) + return 0 + + if(!injections) + to_chat(usr, "Your armor is all out of injectors.") + return 0 + + if(usr.get_active_hand()) + to_chat(usr, "Your active hand must be empty.") + return 0 + + to_chat(usr, "You feel a faint hiss and an injector drops into your hand.") + var/obj/item/reagent_container/hypospray/autoinjector/skillless/O = new(usr) + usr.put_in_active_hand(O) + injections-- + playsound(src,'sound/machines/click.ogg', 15, 1) + return + +/obj/item/clothing/suit/storage/marine/M3G + name = "\improper M3-G4 grenadier armor" + desc = "A custom set of M3 armor packed to the brim with padding, plating, and every form of ballistic protection under the sun. Used exclusively by USCM Grenadiers." + icon_state = "grenadier" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + slowdown = SLOWDOWN_ARMOR_HEAVY + specialty = "M3-G4 grenadier" + unacidable = TRUE + light_range = 5 + +/obj/item/clothing/suit/storage/marine/M3T + name = "\improper M3-T light armor" + desc = "A custom set of M3 armor designed for users of long-ranged explosive weaponry." + icon_state = "demolitionist" + armor_bomb = CLOTHING_ARMOR_HIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + specialty = "M3-T light" + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + unacidable = TRUE + +/obj/item/clothing/suit/storage/marine/M3S + name = "\improper M3-S light armor" + desc = "A custom set of M3 armor designed for USCM Scouts." + icon_state = "scout_armor" + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + specialty = "M3-S light" + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + unacidable = TRUE + +//==================Combat Correspondent==================\\ + +/obj/item/clothing/suit/storage/marine/light/reporter + name = "press body armor" + desc = "Body armor used by war correspondents in battles and wars across the universe." + icon_state = "cc_armor" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm new file mode 100644 index 0000000000..8d648df2cc --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/ert.dm @@ -0,0 +1,861 @@ +//=============================//Marine Raiders\\==================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/sof + name = "\improper SOF Armor" + desc = "A heavily customized suit of M3 armor. Used by Marine Raiders." + icon_state = "marsoc" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGH + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + unacidable = TRUE + flags_atom = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE|NO_SNOW_TYPE + storage_slots = 4 + + +//=============================//PMCs\\==================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran + flags_marine_armor = ARMOR_LAMP_OVERLAY + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE //Let's make these keep their name and icon. + +/obj/item/clothing/suit/storage/marine/veteran/pmc + name = "\improper M4 pattern PMC armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind." + icon_state = "pmc_armor" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/tool/crowbar, + /obj/item/storage/large_holster/katana, + /obj/item/storage/large_holster/machete, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/tool/crew_monitor, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc) + item_state_slots = list(WEAR_JACKET = "pmc_armor") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light + name = "\improper M4 pattern light PMC armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. Has some armor plating removed for extra mobility." + icon_state = "pmc_sniper" + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + item_state_slots = list(WEAR_JACKET = "pmc_sniper") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate + name = "\improper M1 pattern corporate security armor" + desc = "A basic vest with a Weyland-Yutani badge on the right breast. This is commonly worn by low-level guards protecting Weyland-Yutani facilities." + icon = 'icons/mob/humans/onmob/contained/wy_goons.dmi' + icon_state = "armor" + item_state = "armor" + item_state_slots = null + contained_sprite = TRUE + slowdown = SLOWDOWN_ARMOR_LIGHT + + flags_armor_protection = BODY_FLAG_CHEST + flags_cold_protection = BODY_FLAG_CHEST + flags_heat_protection = BODY_FLAG_CHEST + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate/lead + desc = "A basic vest with a Weyland-Yutani badge on the right breast. This variant is worn by low-level guards that have elevated in rank due to 'good conduct in the field', also known as corporate bootlicking." + icon_state = "lead_armor" + item_state = "lead_armor" + +/obj/item/clothing/suit/storage/marine/veteran/pmc/leader + name = "\improper M4 pattern PMC leader armor" + desc = "A modification of the standard Armat Systems M3 armor. Designed for high-profile security operators and corporate mercenaries in mind. This particular suit looks like it belongs to a high-ranking officer." + icon_state = "officer_armor" + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/leader) + item_state_slots = list(WEAR_JACKET = "officer_armor") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/sniper + name = "\improper M4 pattern PMC sniper armor" + icon_state = "pmc_sniper" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + flags_inv_hide = HIDELOWHAIR + item_state_slots = list(WEAR_JACKET = "pmc_sniper") + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth + name = "\improper M4 Synthetic PMC armor" + desc = "A serious modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, with every armor insert removed. It's designed with the idea of a high speed lifesaver in mind." + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT + +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth/Initialize() + flags_atom |= NO_NAME_OVERRIDE + flags_marine_armor |= SYNTH_ALLOWED + return ..() + +/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc + name = "\improper PMC gunner armor" + desc = "A modification of the standard Armat Systems M3 armor. Hooked up with harnesses and straps allowing the user to carry an M56 Smartgun." + icon_state = "heavy_armor" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + item_state_slots = list(WEAR_JACKET = "heavy_armor") + +/obj/item/clothing/suit/storage/marine/smartgunner/veteran/pmc/terminator + name = "\improper M5Xg exoskeleton gunner armor" + desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk. This variant is designed to support a M56 Smartgun." + icon_state = "commando_armor" + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGH + armor_laser = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) + item_state_slots = list(WEAR_JACKET = "commando_armor") + unacidable = TRUE + +/obj/item/clothing/suit/storage/marine/veteran/pmc/commando + name = "\improper M5X exoskeleton armor" + desc = "A complex system of overlapping plates intended to render the wearer all but impervious to small arms fire. A passive exoskeleton supports the weight of the armor, allowing a human to carry its massive bulk." + icon_state = "commando_armor" + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_VERY_HEAVY + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_VERYHIGH + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + flags_inventory = BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/pmc/commando) + item_state_slots = list(WEAR_JACKET = "commando_armor") + unacidable = TRUE + + +//===========================//DISTRESS\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/bear + name = "\improper H1 Iron Bears vest" + desc = "A protective vest worn by Iron Bears mercenaries." + icon_state = "bear_armor" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/bear) + +/obj/item/clothing/suit/storage/marine/veteran/dutch + name = "\improper D2 armored vest" + desc = "A protective vest worn by some seriously experienced mercs." + icon_state = "dutch_armor" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS //Makes no sense but they need leg/arm armor too. + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_HIGH + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + light_range = 7 + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/dutch) + +/obj/item/clothing/suit/storage/marine/veteran/van_bandolier + name = "safari jacket" + desc = "A tailored hunting jacket, cunningly lined with segmented armor plates. Sometimes the game shoots back." + icon_state = "van_bandolier" + item_state = "van_bandolier_jacket" + blood_overlay_type = "coat" + flags_marine_armor = NO_FLAGS //No shoulder light. + actions_types = list() + slowdown = SLOWDOWN_ARMOR_LIGHT + storage_slots = 2 + movement_compensation = SLOWDOWN_ARMOR_LIGHT + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/van_bandolier) + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/storage/bible, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/belt/gun/flaregun, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + /obj/item/storage/belt/shotgun/van_bandolier, + ) + +//===========================//U.P.P\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/faction + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + min_cold_protection_temperature = HELMET_MIN_COLD_PROT + max_heat_protection_temperature = HELMET_MAX_HEAT_PROT + blood_overlay_type = "armor" + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_MEDIUM + movement_compensation = SLOWDOWN_ARMOR_LIGHT + + +/obj/item/clothing/suit/storage/marine/faction/UPP + name = "\improper UM5 personal armor" + desc = "Standard body armor of the UPP military, the UM5 (Union Medium MK5) is a medium body armor, roughly on par with the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. Unlike the M3, however, the plate has a heavier neckplate. This has earned many UA members to refer to UPP soldiers as 'tin men'." + icon_state = "upp_armor" + armor_bullet = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGH + storage_slots = 3 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) + +/obj/item/clothing/suit/storage/marine/faction/UPP/support + name = "\improper UL6 personal armor" + desc = "Standard body armor of the UPP military, the UL6 (Union Light MK6) is a light body armor, slightly weaker than the M3 pattern body armor in service with the USCM, specialized towards ballistics protection. This set of personal armor lacks the iconic neck piece and some of the armor in favor of user mobility." + storage_slots = 4 + icon_state = "upp_armor_support" + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_LOW + +/obj/item/clothing/suit/storage/marine/faction/UPP/support/synth + name = "\improper UL6 Synthetic personal armor" + desc = "Modified variant of the UL6 personel armor system intended to be useable by Synthetic units. Offers no protection but very little movement impairment." + flags_marine_armor = ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + time_to_unequip = 0.5 SECONDS + time_to_equip = 1 SECONDS + +/obj/item/clothing/suit/storage/marine/faction/UPP/commando + name = "\improper UM5CU personal armor" + desc = "A modification of the UM5, designed for stealth operations." + icon_state = "upp_armor_commando" + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + +/obj/item/clothing/suit/storage/marine/faction/UPP/heavy + name = "\improper UH7 heavy plated armor" + desc = "An extremely heavy-duty set of body armor in service with the UPP military, the UH7 (Union Heavy MK7) is known for having powerful ballistic protection, alongside a noticeable neck guard, fortified in order to allow the wearer to endure the stresses of the bulky helmet." + icon_state = "upp_armor_heavy" + storage_slots = 3 + slowdown = SLOWDOWN_ARMOR_HEAVY + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + flags_armor_protection = BODY_FLAG_ALL_BUT_HEAD + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + +/obj/item/clothing/suit/storage/marine/faction/UPP/heavy/Initialize() + . = ..() + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/minigun, + /obj/item/ammo_magazine/pkp, + ) + +/obj/item/clothing/suit/storage/marine/faction/UPP/officer + name = "\improper UL4 officer jacket" + desc = "A lightweight jacket, issued to officers of the UPP's military. Slightly protective from incoming damage, best off with proper armor however." + icon_state = "upp_coat_officer" + slowdown = SLOWDOWN_ARMOR_NONE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 3 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) + +/obj/item/clothing/suit/storage/marine/faction/UPP/kapitan + name = "\improper UL4 senior officer jacket" + desc = "A lightweight jacket, issued to senior officers of the UPP's military. Made of high-quality materials, even going as far as having the ranks and insignia of the Kapitan and their Company emblazoned on the shoulders and front of the jacket. Slightly protective from incoming damage, best off with proper armor however." + icon_state = "upp_coat_kapitan" + slowdown = SLOWDOWN_ARMOR_NONE + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + storage_slots = 4 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP/officer) + +/obj/item/clothing/suit/storage/marine/faction/UPP/mp + name = "\improper UL4 camouflaged jacket" + desc = "A lightweight jacket, issued to troops when they're not expected to engage in combat. Some level of shrapnel and low velocity gunfire protection is provided by para-aramid inserts, though not much." + icon_state = "upp_coat_mp" + slowdown = SLOWDOWN_ARMOR_NONE + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_LOW //wear actual armor if you go into combat + armor_bullet = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + storage_slots = 4 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP) + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/marine/faction/UPP/jacket/ivan + name = "\improper UH4 Camo Jacket" + desc = "An experimental heavily armored variant of the UL4 given to only the most elite units... usually." + slowdown = SLOWDOWN_ARMOR_MEDIUM + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS|BODY_FLAG_HANDS|BODY_FLAG_FEET + armor_melee = CLOTHING_ARMOR_HIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_HIGH + storage_slots = 2 + + +//===========================//FREELANCER\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/faction/freelancer + name = "freelancer cuirass" + desc = "An armored protective chestplate scrapped together from various plates. It keeps up remarkably well, as the craftsmanship is solid, and the design mirrors such armors in the UPP and the USCM. The many skilled craftsmen in the freelancers ranks produce these vests at a rate about one a month." + icon_state = "freelancer_armor" + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/freelancer) + +//this one is for CLF +/obj/item/clothing/suit/storage/militia + name = "colonial militia hauberk" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops." + icon = 'icons/obj/items/clothing/cm_suits.dmi' + icon_state = "rebel_armor" + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/suit_1.dmi' + ) + sprite_sheets = list(SPECIES_MONKEY = 'icons/mob/humans/species/monkeys/onmob/suit_monkey_1.dmi') + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_ARMS + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_MEDIUMLOW + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + uniform_restricted = list(/obj/item/clothing/under/colonist) + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/storage/large_holster/machete, + /obj/item/weapon/baseballbat, + /obj/item/weapon/baseballbat/metal, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS|BODY_FLAG_FEET|BODY_FLAG_ARMS|BODY_FLAG_HANDS + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROT + valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL) + +/obj/item/clothing/suit/storage/militia/Initialize() + . = ..() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + +/obj/item/clothing/suit/storage/militia/vest + name = "colonial militia vest" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant protects only the chest and abdomen." + icon_state = "clf_2" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + slowdown = 0.2 + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/obj/item/clothing/suit/storage/militia/brace + name = "colonial militia brace" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This extremely light variant has some of the chest pieces removed." + icon_state = "clf_3" + flags_armor_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + slowdown = 0.2 + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/obj/item/clothing/suit/storage/militia/partial + name = "colonial militia partial hauberk" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This even lighter variant has some of the arm pieces removed." + icon_state = "clf_4" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS + slowdown = 0.2 + +/obj/item/clothing/suit/storage/militia/smartgun + name = "colonial militia harness" + desc = "The hauberk of a colonist militia member, created from boiled leather and some modern armored plates. While not the most powerful form of armor, and primitive compared to most modern suits of armor, it gives the wearer almost perfect mobility, which suits the needs of the local colonists. It is also quick to don, easy to hide, and cheap to produce in large workshops. This one has straps interweaved with the plates, that allow the user to fire a captured smartgun, if a bit uncomfortably." + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + +/obj/item/clothing/suit/storage/CMB + name = "\improper CMB Deputy jacket" + desc = "A polyster blue bomber jacket enforced with light ballistic weaving. It has a Marshal's Deputy badge pinned to it. The back is enscribed with the word 'DEPUTY'." + icon_state = "CMB_jacket" + item_state = "CMB_jacket" + blood_overlay_type = "coat" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS + armor_melee = CLOTHING_ARMOR_MEDIUMLOW + armor_bullet = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_LOW + armor_bio = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + allowed = list( + /obj/item/weapon/gun, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/device/flashlight, + /obj/item/device/healthanalyzer, + /obj/item/device/radio, + /obj/item/tank/emergency_oxygen, + /obj/item/tool/crowbar, + /obj/item/tool/crew_monitor, + /obj/item/tool/pen, + /obj/item/storage/belt/gun/m4a3, + /obj/item/storage/belt/gun/m44, + /obj/item/storage/belt/gun/mateba, + /obj/item/storage/belt/gun/smartpistol, + /obj/item/storage/large_holster/machete, + /obj/item/storage/large_holster/katana, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + +/obj/item/clothing/suit/storage/CMB/Initialize() + . = ..() + pockets.max_w_class = SIZE_SMALL //Can contain small items AND rifle magazines. + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/rifle, + /obj/item/ammo_magazine/smg, + /obj/item/ammo_magazine/sniper, + ) + pockets.max_storage_space = 8 + +/obj/item/clothing/suit/storage/CMB/marshal + name = "\improper CMB Marshal jacket" + desc = "A thick and stylish black leather jacket with a Marshal's badge pinned to it. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol." + icon_state = "CMB_jacket_marshal" + item_state = "CMB_jacket_marshal" + +//===========================//HELGHAST - MERCENARY\\================================\\ +//=====================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/mercenary + name = "\improper K12 ceramic plated armor" + desc = "A set of grey, heavy ceramic armor with dark blue highlights. It is the standard uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_heavy_armor" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bullet = CLOTHING_ARMOR_VERYHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_HIGHPLUS + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) + item_state_slots = list(WEAR_JACKET = "mercenary_heavy_armor") + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/heavy + name = "\improper Modified K12 ceramic plated armor" + desc = "A set of grey, heavy ceramic armor with dark blue highlights. It has been modified with extra ceramic plates placed in its storage pouch, and seems intended to support an extremely heavy weapon." + armor_melee = CLOTHING_ARMOR_ULTRAHIGH + armor_bullet = CLOTHING_ARMOR_ULTRAHIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_HIGHPLUS + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_VERYHIGHPLUS + storage_slots = 1 + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/miner + name = "\improper Y8 armored miner vest" + desc = "A set of beige, light armor built for protection while mining. It is a specialized uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_miner_armor" + storage_slots = 3 + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/mercenary) + item_state_slots = list(WEAR_JACKET = "mercenary_miner_armor") + +/obj/item/clothing/suit/storage/marine/veteran/mercenary/support + name = "\improper Z7 armored vest" + desc = "A set of blue armor with yellow highlights built for protection while building or carrying out medical treatment in highly dangerous environments. It is a specialized uniform of an unknown mercenary group working in the sector." + icon_state = "mercenary_engineer_armor" + item_state_slots = list(WEAR_JACKET = "mercenary_engineer_armor") + +/obj/item/clothing/suit/storage/marine/M3G/hefa + name = "\improper HEFA Knight armor" + desc = "A thick piece of armor adorning a HEFA. Usually seen on a HEFA knight." + specialty = "HEFA Knight" + icon_state = "hefadier" + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + flags_item = NO_CRYO_STORE + flags_marine_armor = ARMOR_LAMP_OVERLAY + armor_bullet = CLOTHING_ARMOR_VERYHIGH + armor_melee = CLOTHING_ARMOR_VERYHIGH + armor_bomb = CLOTHING_ARMOR_GIGAHIGH + + +//=========================//PROVOST\\================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/MP/provost + name = "\improper M3 pattern Provost armor" + desc = "A standard Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvmedium" + item_state_slots = list(WEAR_JACKET = "pvmedium") + slowdown = SLOWDOWN_ARMOR_LIGHT + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + armor_internaldamage = CLOTHING_ARMOR_MEDIUM + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + storage_slots = 3 + +/obj/item/clothing/suit/storage/marine/MP/provost/tml + name = "\improper M3 pattern Senior Provost armor" + desc = "A more refined Provost M3 Pattern Chestplate for senior officers. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvleader" + item_state_slots = list(WEAR_JACKET = "pvleader") + +/obj/item/clothing/suit/storage/marine/MP/provost/marshal + name = "\improper M5 pattern Provost Marshal armor" + desc = "A custom fit luxury armor suit for Provost Marshals. Useful for letting your men know who is in charge when taking to the field." + icon_state = "pvmarshal" + item_state_slots = list(WEAR_JACKET = "pvmarshal") + w_class = SIZE_MEDIUM + storage_slots = 4 + +/obj/item/clothing/suit/storage/marine/MP/provost/light + name = "\improper M3 pattern Provost light armor" + desc = "A lighter Provost M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + icon_state = "pvlight" + item_state_slots = list(WEAR_JACKET = "pvlight") + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT + +/obj/item/clothing/suit/storage/marine/MP/provost/light/flexi + name = "\improper M3 pattern Provost flexi-armor" + desc = "A flexible and easy to store M3 Pattern Chestplate. Protects the chest from ballistic rounds, bladed objects and accidents. It has a small leather pouch strapped to it for limited storage." + w_class = SIZE_MEDIUM + icon_state = "pvlight_2" + item_state_slots = list(WEAR_JACKET = "pvlight_2") + storage_slots = 2 + +//================//UNITED AMERICAS ALLIED COMMAND\\=====================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/uaac/tis/sa + name = "\improper M3 pattern UAAC-TIS Special Agent Armor" + desc = "A modified luxury armor, originally meant for a USCM Provost Marshall, modified to use the colors and insignia of the TIS. The Three Eyes is technically able to requisition any equipment or personnel to fulfill its mission and often uses this privilege to outfit their agents with high-quality gear from other UA military forces." + icon_state = "tis" + item_state_slots = list(WEAR_JACKET = "tis") + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_laser = CLOTHING_ARMOR_LOW + armor_energy = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMLOW + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/explosive/grenade, + /obj/item/device/binoculars, + /obj/item/attachable/bayonet, + /obj/item/storage/backpack/general_belt, + /obj/item/device/hailer, + /obj/item/storage/belt/gun, + /obj/item/weapon/sword/ceremonial, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + uniform_restricted = list(/obj/item/clothing/under/uaac/tis) + +//================//UNITED AMERICAS RIOT CONTROL\\=====================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/ua_riot + name = "\improper UA-M1 body armor" + desc = "Based on the M-3 pattern employed by the USCM, the UA-M1 body armor is employed by UA security, riot control and union-busting teams. While robust against melee and bullet attacks, it critically lacks coverage of the legs and arms." + icon_state = "ua_riot" + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_VERY_LIGHT // it's lighter + uniform_restricted = list(/obj/item/clothing/under/marine/ua_riot) + flags_atom = NO_SNOW_TYPE + +/obj/item/clothing/suit/storage/marine/veteran/ua_riot/synth + name = "\improper UA-M1S Synthetic body armor" + desc = "Based on the M-3 pattern employed by the USCM, the UA-M1 body armor is employed by UA security, riot control and union-busting teams. The UA-1MS modification is Synthetic programming compliant, sacrificing protection for speed and carrying capacity." + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_NONE + armor_rad = CLOTHING_ARMOR_NONE + armor_internaldamage = CLOTHING_ARMOR_NONE + slowdown = SLOWDOWN_ARMOR_SUPER_LIGHT + storage_slots = 3 + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_marine_armor = ARMOR_SQUAD_OVERLAY|ARMOR_LAMP_OVERLAY|SYNTH_ALLOWED + +//================//=ROYAL MARINES=\\====================================\\ +//=======================================================================\\ + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine + name = "kestrel armoured vest" + desc = "A customizable personal armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." + icon_state = "rmc_light" + item_state = "rmc_light" + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + allowed = list( + /obj/item/weapon/gun, + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine/, + /obj/item/weapon/baton, + /obj/item/restraint/handcuffs, + /obj/item/storage/fancy/cigarettes, + /obj/item/tool/lighter, + /obj/item/explosive/grenade, + /obj/item/storage/bible, + /obj/item/weapon/sword/machete, + /obj/item/attachable/bayonet, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light //RMC Rifleman Armor + icon_state = "rmc_light" + item_state = "rmc_light" + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_energy = CLOTHING_ARMOR_MEDIUMLOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + slowdown = SLOWDOWN_ARMOR_LIGHT + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/light/team_leader //RMC TL & LT Armor + name = "kestrel armoured carry vest" + icon_state = "rmc_light_padded" + item_state = "rmc_light_padded" + storage_slots = 7 + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/smartgun //Smartgun Spec Armor + name = "kestrel armoured smartgun harness" + icon_state = "rmc_smartgun" + item_state = "rmc_smartgun" + flags_inventory = BLOCKSHARPOBJ|BLOCK_KNOCKDOWN|SMARTGUN_HARNESS + +/obj/item/clothing/suit/storage/marine/veteran/royal_marine/pointman //Pointman Spec Armor + name = "kestrel pointman armour" + desc = "A heavier version of the armor system used by the Three World Empire's Royal Marines Commandos. Designers from a Weyland Yutani subsidary, Lindenthal-Ehrenfeld Militärindustrie, iterated on the USCMC's M3 pattern personal armor in their Tokonigara lab to create an armor systemed to suit the unique needs of the Three World Empire's smaller but better equipped Royal Marines." + icon_state = "rmc_pointman" + item_state = "rmc_pointman" + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_bomb = CLOTHING_ARMOR_HIGHPLUS + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + storage_slots = 7 + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + movement_compensation = SLOWDOWN_ARMOR_MEDIUM + +/atom/movable/marine_light + light_system = DIRECTIONAL_LIGHT + +//CBRN +/obj/item/clothing/suit/storage/marine/cbrn + name = "\improper M3-M armor" + desc = "While lacking the appearance of the M3 pattern armor worn in regular service, this armor piece is still a derivative of it. It has been heavily modified to fit over the MOPP suit with additional padding and Venlar composite layers removed, so as not to restrict the wearer’s movement. However, with the reduction of composite layers, the personal protection offered is less than desired with complaints having been lodged since 2165." + icon_state = "cbrn" + item_state = "cbrn" + slowdown = SLOWDOWN_ARMOR_HEAVY + armor_melee = CLOTHING_ARMOR_MEDIUM + armor_bullet = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_bio = CLOTHING_ARMOR_LOW + armor_rad =CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_LOW + flags_marine_armor = NO_FLAGS + flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE + flags_inventory = BLOCKSHARPOBJ + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN + uniform_restricted = list(/obj/item/clothing/under/marine/cbrn) + +/obj/item/clothing/suit/storage/marine/cbrn/advanced + slowdown = SLOWDOWN_ARMOR_LOWHEAVY + armor_melee = CLOTHING_ARMOR_HIGH + armor_bullet = CLOTHING_ARMOR_MEDIUMHIGH + armor_bomb = CLOTHING_ARMOR_ULTRAHIGH + armor_bio = CLOTHING_ARMOR_GIGAHIGHPLUS + armor_rad = CLOTHING_ARMOR_GIGAHIGHPLUS + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS diff --git a/code/modules/clothing/suits/marine_armor/ghillie.dm b/code/modules/clothing/suits/marine_armor/ghillie.dm new file mode 100644 index 0000000000..c55e1d054b --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/ghillie.dm @@ -0,0 +1,164 @@ +#define FULL_CAMOUFLAGE_ALPHA 15 + +/obj/item/clothing/suit/storage/marine/ghillie + name = "\improper M45 pattern ghillie armor" + desc = "A lightweight ghillie camouflage suit, used by USCM snipers on recon missions. Very lightweight, but doesn't protect much." + icon_state = "ghillie_armor" + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_marine_armor = ARMOR_LAMP_OVERLAY + flags_item = MOB_LOCK_ON_EQUIP + specialty = "M45 pattern ghillie" + valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_DECOR, ACCESSORY_SLOT_MEDAL, ACCESSORY_SLOT_PONCHO) + restricted_accessory_slots = list(ACCESSORY_SLOT_ARMBAND) + unacidable = TRUE + + var/camo_active = FALSE + var/hide_in_progress = FALSE + var/full_camo_alpha = FULL_CAMOUFLAGE_ALPHA + var/incremental_shooting_camo_penalty = 35 + var/current_camo = FULL_CAMOUFLAGE_ALPHA + var/camouflage_break = 5 SECONDS + var/camouflage_enter_delay = 4 SECONDS + var/can_camo = TRUE + + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/prepare_position) + +/obj/item/clothing/suit/storage/marine/ghillie/dropped(mob/user) + if(ishuman(user) && !issynth(user)) + deactivate_camouflage(user, FALSE) + + . = ..() + +/obj/item/clothing/suit/storage/marine/ghillie/verb/camouflage() + set name = "Prepare Position" + set desc = "Use the ghillie suit and the nearby environment to become near invisible." + set category = "Object" + set src in usr + if(!usr || usr.is_mob_incapacitated(TRUE)) + return + + if(!ishuman(usr) || hide_in_progress || !can_camo) + return + var/mob/living/carbon/human/H = usr + if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SNIPER && !(GLOB.character_traits[/datum/character_trait/skills/spotter] in H.traits)) + to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) + return + if(H.wear_suit != src) + to_chat(H, SPAN_WARNING("You must be wearing the ghillie suit to activate it!")) + return + + if(camo_active) + deactivate_camouflage(H) + return + + H.visible_message(SPAN_DANGER("[H] goes prone, and begins adjusting \his ghillie suit!"), SPAN_NOTICE("You go prone, and begins adjusting your ghillie suit."), max_distance = 4) + hide_in_progress = TRUE + H.unset_interaction() // If we're sticking to a machine gun or what not. + if(!do_after(H, camouflage_enter_delay, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) + hide_in_progress = FALSE + return + hide_in_progress = FALSE + RegisterSignal(H, list( + COMSIG_MOB_FIRED_GUN, + COMSIG_MOB_FIRED_GUN_ATTACHMENT) + , PROC_REF(fade_in)) + RegisterSignal(H, list( + COMSIG_MOB_DEATH, + COMSIG_HUMAN_EXTINGUISH + ), PROC_REF(deactivate_camouflage)) + camo_active = TRUE + H.alpha = full_camo_alpha + H.FF_hit_evade = 1000 + ADD_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) + + RegisterSignal(H, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(handle_mob_move_or_look)) + + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] + SA.remove_from_hud(H) + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] + XI.remove_from_hud(H) + + anim(H.loc, H, 'icons/mob/mob.dmi', null, "cloak", null, H.dir) + + +/obj/item/clothing/suit/storage/marine/ghillie/proc/deactivate_camouflage(mob/user) + SIGNAL_HANDLER + var/mob/living/carbon/human/H = user + if(!istype(H)) + return FALSE + + if(!camo_active) + return + + UnregisterSignal(H, list( + COMSIG_MOB_FIRED_GUN, + COMSIG_MOB_FIRED_GUN_ATTACHMENT, + COMSIG_MOB_DEATH, + COMSIG_HUMAN_EXTINGUISH, + COMSIG_MOB_MOVE_OR_LOOK + )) + + camo_active = FALSE + animate(H, alpha = initial(H.alpha), flags = ANIMATION_END_NOW) + H.FF_hit_evade = initial(H.FF_hit_evade) + REMOVE_TRAIT(H, TRAIT_UNDENSE, SPECIALIST_GEAR_TRAIT) + + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] + SA.add_to_hud(H) + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] + XI.add_to_hud(H) + + H.visible_message(SPAN_DANGER("[H]'s camouflage fails!"), SPAN_WARNING("Your camouflage fails!"), max_distance = 4) + +/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_in(mob/user) + SIGNAL_HANDLER + var/mob/living/carbon/human/H = user + if(camo_active) + if(current_camo < full_camo_alpha) + current_camo = full_camo_alpha + current_camo = clamp(current_camo + incremental_shooting_camo_penalty, full_camo_alpha, 255) + H.alpha = current_camo + addtimer(CALLBACK(src, PROC_REF(fade_out_finish), H), camouflage_break, TIMER_OVERRIDE|TIMER_UNIQUE) + animate(H, alpha = full_camo_alpha + 5, time = camouflage_break, easing = LINEAR_EASING, flags = ANIMATION_END_NOW) + +/obj/item/clothing/suit/storage/marine/ghillie/proc/fade_out_finish(mob/living/carbon/human/H) + if(camo_active && H.wear_suit == src) + to_chat(H, SPAN_BOLDNOTICE("The smoke clears and your position is once again hidden completely!")) + animate(H, alpha = full_camo_alpha) + current_camo = full_camo_alpha + +/obj/item/clothing/suit/storage/marine/ghillie/proc/handle_mob_move_or_look(mob/living/mover, actually_moving, direction, specific_direction) + SIGNAL_HANDLER + + if(camo_active && actually_moving) + deactivate_camouflage(mover) + +/datum/action/item_action/specialist/prepare_position + ability_primacy = SPEC_PRIMARY_ACTION_1 + +/datum/action/item_action/specialist/prepare_position/New(mob/living/user, obj/item/holder) + ..() + name = "Prepare Position" + button.name = name + button.overlays.Cut() + var/image/IMG = image('icons/mob/hud/actions.dmi', button, "prepare_position") + button.overlays += IMG + +/datum/action/item_action/specialist/prepare_position/can_use_action() + var/mob/living/carbon/human/H = owner + if(istype(H) && !H.is_mob_incapacitated() && H.body_position == STANDING_UP && holder_item == H.wear_suit) + return TRUE + +/datum/action/item_action/specialist/prepare_position/action_activate() + . = ..() + var/obj/item/clothing/suit/storage/marine/ghillie/GS = holder_item + GS.camouflage() + +#undef FULL_CAMOUFLAGE_ALPHA + +/obj/item/clothing/suit/storage/marine/ghillie/forecon + name = "UDEP Thermal Poncho" + desc = "UDEP or the Ultra Diffusive Environmental Poncho is a camouflaged rain-cover worn to protect against the elements and chemical spills. It's commonly treated with an infrared absorbing coating, making a marine almost invisible in the rain. Favoured by USCM specialists for it's comfort and practicality." + icon_state = "mercenary_miner_armor" + flags_atom = MOB_LOCK_ON_EQUIP|NO_SNOW_TYPE|NO_NAME_OVERRIDE diff --git a/code/modules/clothing/suits/marine_armor/intel.dm b/code/modules/clothing/suits/marine_armor/intel.dm new file mode 100644 index 0000000000..12aa824648 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/intel.dm @@ -0,0 +1,119 @@ +/obj/item/clothing/suit/storage/marine/medium/rto/intel + name = "\improper XM4 pattern intelligence officer armor" + uniform_restricted = list(/obj/item/clothing/under/marine/officer/intel) + specialty = "XM4 pattern intel" + desc = "Tougher than steel, quieter than whispers, the XM4 Intel Armor provides capable protection combined with an experimental integrated motion tracker. It took an R&D team a weekend to develop and costs more than the Chinook Station... probably. When worn, uniform accessories such as webbing cannot be attached due to the motion sensors occupying the clips." + desc_lore = "ARMAT Perfection. The XM4 Soldier Awareness System mixes M4-style hard armor and a distributed series of motion sensors clipped onto the breastplate. When connected to any HUD optic, it replicates the effects of an M314 Motion Detector unit, increasing user situational awareness. It is currently undergoing field trials by intelligence operatives." + storage_slots = 5 + /// XM4 Integral Motion Detector Ability + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/intel/toggle_motion_detector) + var/motion_detector = FALSE + var/obj/item/device/motiondetector/xm4/proximity + var/long_range_cooldown = 2 + var/recycletime = 120 + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/Initialize(mapload, ...) + . = ..() + proximity = new(src) + update_icon() + +/datum/action/item_action/intel/action_activate() + . = ..() + if(!ishuman(owner)) + return + +/datum/action/item_action/intel/update_button_icon() + return + +/datum/action/item_action/intel/toggle_motion_detector/New(Target, obj/item/holder) + . = ..() + name = "Toggle Motion Detector" + action_icon_state = "motion_detector" + button.name = name + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) + +/datum/action/item_action/intel/toggle_motion_detector/action_activate() + . = ..() + var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item + recon.toggle_motion_detector(owner) + +/datum/action/item_action/intel/toggle_motion_detector/proc/update_icon() + if(!holder_item) + return + var/obj/item/clothing/suit/storage/marine/medium/rto/intel/recon = holder_item + if(recon.motion_detector) + button.icon_state = "template_on" + else + button.icon_state = "template" + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/process() + if(!motion_detector) + STOP_PROCESSING(SSobj, src) + if(motion_detector) + recycletime-- + if(!recycletime) + recycletime = initial(recycletime) + proximity.refresh_blip_pool() + long_range_cooldown-- + if(long_range_cooldown) + return + long_range_cooldown = initial(long_range_cooldown) + proximity.scan() + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/toggle_motion_detector(mob/user) + to_chat(user,SPAN_NOTICE("You [motion_detector? "disable" : "enable"] \the [src]'s motion detector.")) + if(!motion_detector) + playsound(loc,'sound/items/detector_turn_on.ogg', 25, 1) + else + playsound(loc,'sound/items/detector_turn_off.ogg', 25, 1) + motion_detector = !motion_detector + var/datum/action/item_action/intel/toggle_motion_detector/TMD = locate(/datum/action/item_action/intel/toggle_motion_detector) in actions + TMD.update_icon() + motion_detector() + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/proc/motion_detector() + if(motion_detector) + START_PROCESSING(SSobj, src) + else + STOP_PROCESSING(SSobj, src) + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/mob_can_equip(mob/living/carbon/human/user, slot, disable_warning) //Thanks to Drathek for the help on this part! + if(!..()) + return FALSE + + // Only equip if uniform doesn't already have a utility accessory slot equipped + var/obj/item/clothing/under/uniform = user.w_uniform + var/accessory = locate(/obj/item/clothing/accessory/storage) in uniform.accessories + if(accessory) + to_chat(user, SPAN_WARNING("[src] can't be worn with [accessory].")) + return FALSE + // Only equip if user has expert intel skill level + if(!skillcheck(user, SKILL_INTEL, SKILL_INTEL_EXPERT)) + to_chat(user, SPAN_WARNING("You don't seem to know how to use [src]...")) + return FALSE + return TRUE + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/equipped(mob/user, slot, silent) //When XM4 is equipped this removes ACCESSORY_SLOT_UTILITY as a valid accessory for the uniform + . = ..() + if(slot == WEAR_JACKET) + var/mob/living/carbon/human/human = user + var/obj/item/clothing/under/uniform = human.w_uniform + if(uniform?.valid_accessory_slots) + uniform?.valid_accessory_slots -= ACCESSORY_SLOT_UTILITY + +/obj/item/clothing/suit/storage/marine/medium/rto/intel/unequipped(mob/user, slot) //When unequipped this adds the ACCESSORY_SLOT_UTILITY back as a valid accessory + . = ..() + if(slot == WEAR_JACKET) + var/mob/living/carbon/human/human = user + var/obj/item/clothing/under/uniform = human.w_uniform + if(uniform) + // Figure out if the uniform originally allowed ACCESSORY_SLOT_UTILITY + var/obj/item/clothing/under/temp_uniform = new uniform.type + if(temp_uniform.valid_accessory_slots) + for(var/allowed in temp_uniform.valid_accessory_slots) + if(allowed == ACCESSORY_SLOT_UTILITY) + // It was allowed previously, now add it back + uniform.valid_accessory_slots += ACCESSORY_SLOT_UTILITY + break + qdel(temp_uniform) diff --git a/code/modules/clothing/suits/marine_armor/smartgunner.dm b/code/modules/clothing/suits/marine_armor/smartgunner.dm new file mode 100644 index 0000000000..b307602538 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/smartgunner.dm @@ -0,0 +1,120 @@ +/obj/item/clothing/suit/storage/marine/smartgunner + name = "\improper M56 combat harness" + desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate for practical protection, as well as the computers, straps, and armature required for operating the M56 Smartgun itself." + icon_state = "8" + item_state = "armor" + armor_laser = CLOTHING_ARMOR_LOW + armor_bomb = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUM + storage_slots = 2 + slowdown = SLOWDOWN_ARMOR_LIGHT + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS + flags_atom = NO_NAME_OVERRIDE + unacidable = TRUE + allowed = list( + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/mine, + /obj/item/attachable/bayonet, + /obj/item/weapon/gun/smartgun, + /obj/item/storage/backpack/general_belt, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + ) + var/list/smartgun_back = list( + /obj/item/storage/large_holster/machete, + ) + +/obj/item/clothing/suit/storage/marine/smartgunner/Initialize() + . = ..() + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD] && name == "\improper M56 combat harness" && !(flags_atom & NO_SNOW_TYPE)) + name = "M56 snow combat harness" + else + name = "M56 combat harness" + //select_gamemode_skin(type) + +/obj/item/clothing/suit/storage/marine/smartgunner/mob_can_equip(mob/equipping_mob, slot, disable_warning = FALSE) + . = ..() + + if(equipping_mob.back && !(equipping_mob.back.flags_item & SMARTGUNNER_BACKPACK_OVERRIDE)) + if(!disable_warning) + to_chat(equipping_mob, SPAN_WARNING("You can't equip [src] while wearing a backpack.")) + return FALSE + +/obj/item/clothing/suit/storage/marine/smartgunner/equipped(mob/user, slot, silent) + . = ..() + + if(slot == WEAR_JACKET) + RegisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP, PROC_REF(check_equipping)) + +/obj/item/clothing/suit/storage/marine/smartgunner/proc/check_equipping(mob/living/carbon/human/equipping_human, obj/item/equipping_item, slot) + SIGNAL_HANDLER + + if(slot != WEAR_BACK) + return + + if(equipping_item.flags_item & SMARTGUNNER_BACKPACK_OVERRIDE || is_type_in_list(equipping_item, smartgun_back)) + return + + . = COMPONENT_HUMAN_CANCEL_ATTEMPT_EQUIP + + if(equipping_item.flags_equip_slot == SLOT_BACK) + to_chat(equipping_human, SPAN_WARNING("You can't equip [equipping_item] on your back while wearing [src].")) + return + +/obj/item/clothing/suit/storage/marine/smartgunner/unequipped(mob/user, slot) + . = ..() + + UnregisterSignal(user, COMSIG_HUMAN_ATTEMPTING_EQUIP) + +/obj/item/clothing/suit/storage/marine/smartgunner/standard + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + +/obj/item/clothing/suit/storage/marine/smartgunner/black + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + icon_state = "8fancy" + +/obj/item/clothing/suit/storage/marine/smartgunner/upp + name = "\improper UH7-I heavy plated harness" + desc = "An experimental set of heavy armor with additional harnesses designed to support QYJ-72-I smartmachinegun. Heavy plates along with harnesses make wearing backpacks extremely uncomfortable and borderline impossible." + icon_state = "upp_armor_heavy" + storage_slots = 1 + slowdown = SLOWDOWN_ARMOR_HEAVY + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS|BLOCK_KNOCKDOWN + armor_melee = CLOTHING_ARMOR_MEDIUMHIGH + armor_bullet = CLOTHING_ARMOR_HIGHPLUS + armor_laser = CLOTHING_ARMOR_MEDIUMLOW + armor_energy = CLOTHING_ARMOR_MEDIUM + armor_bomb = CLOTHING_ARMOR_HIGH + armor_bio = CLOTHING_ARMOR_MEDIUM + armor_rad = CLOTHING_ARMOR_MEDIUMLOW + armor_internaldamage = CLOTHING_ARMOR_HIGHPLUS + uniform_restricted = list(/obj/item/clothing/under/marine/veteran/UPP, /obj/item/clothing/under/marine/veteran/UPP/medic, /obj/item/clothing/under/marine/veteran/UPP/engi) + allowed = list( + /obj/item/tank/emergency_oxygen, + /obj/item/device/flashlight, + /obj/item/ammo_magazine, + /obj/item/explosive/mine, + /obj/item/attachable/bayonet, + /obj/item/weapon/gun/pkp, + /obj/item/storage/backpack/general_belt, + /obj/item/device/motiondetector, + /obj/item/device/walkman, + /obj/item/storage/large_holster/machete, + /obj/item/storage/belt/gun/type47, + ) + + smartgun_back = list( + /obj/item/storage/large_holster/machete, + /obj/item/ammo_box, + ) + + +/obj/item/clothing/suit/storage/marine/smartgunner/upp/Initialize() + . = ..() + pockets.bypass_w_limit = list( + /obj/item/ammo_magazine/minigun, + /obj/item/ammo_magazine/pkp, + ) diff --git a/code/modules/clothing/suits/marine_armor/spec_fire.dm b/code/modules/clothing/suits/marine_armor/spec_fire.dm new file mode 100644 index 0000000000..c3f2863b35 --- /dev/null +++ b/code/modules/clothing/suits/marine_armor/spec_fire.dm @@ -0,0 +1,153 @@ +#define FIRE_SHIELD_CD 150 + +/obj/item/clothing/suit/storage/marine/M35 + name = "\improper M35 pyrotechnician armor" + desc = "A custom set of M35 armor designed for use by USCM Pyrotechnicians." + icon_state = "pyro_armor" + slowdown = SLOWDOWN_ARMOR_MEDIUM + armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH + armor_bio = CLOTHING_ARMOR_MEDIUMHIGH + light_range = 5 + fire_intensity_resistance = BURN_LEVEL_TIER_1 + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROT + flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_heat_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS|BODY_FLAG_LEGS|BODY_FLAG_FEET + flags_item = MOB_LOCK_ON_EQUIP|NO_CRYO_STORE + specialty = "M35 pyrotechnician" + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/specialist/fire_shield) + unacidable = TRUE + var/fire_shield_on = FALSE + var/can_activate = TRUE + +/obj/item/clothing/suit/storage/marine/M35/equipped(mob/user, slot) + if(slot == WEAR_JACKET) + RegisterSignal(user, COMSIG_LIVING_FLAMER_CROSSED, PROC_REF(flamer_fire_callback)) + ..() + +/obj/item/clothing/suit/storage/marine/M35/verb/fire_shield() + set name = "Activate Fire Shield" + set desc = "Activate your armor's FIREWALK protocol for a short duration." + set category = "Pyro" + set src in usr + if(!usr || usr.is_mob_incapacitated(TRUE)) + return + if(!ishuman(usr)) + return + var/mob/living/carbon/human/H = usr + + if(H.wear_suit != src) + to_chat(H, SPAN_WARNING("You must be wearing the M35 pyro armor to activate FIREWALK protocol!")) + return + + if(!skillcheck(H, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && H.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_PYRO) + to_chat(H, SPAN_WARNING("You don't seem to know how to use [src]...")) + return + + if(fire_shield_on) + to_chat(H, SPAN_WARNING("You already have FIREWALK protocol activated!")) + return + + if(!can_activate) + to_chat(H, SPAN_WARNING("FIREWALK protocol was recently activated, wait before trying to activate it again.")) + return + + to_chat(H, SPAN_NOTICE("FIREWALK protocol has been activated. You will now be immune to fire for 6 seconds!")) + RegisterSignal(H, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_shield_is_on)) + RegisterSignal(H, list( + COMSIG_LIVING_FLAMER_FLAMED, + ), PROC_REF(flamer_fire_callback)) + fire_shield_on = TRUE + can_activate = FALSE + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + addtimer(CALLBACK(src, PROC_REF(end_fire_shield), H), 6 SECONDS) + + H.add_filter("firewalk_on", 1, list("type" = "outline", "color" = "#03fcc6", "size" = 1)) + +/obj/item/clothing/suit/storage/marine/M35/proc/end_fire_shield(mob/living/carbon/human/user) + if(!istype(user)) + return + to_chat(user, SPAN_NOTICE("FIREWALK protocol has finished.")) + UnregisterSignal(user, list( + COMSIG_LIVING_PREIGNITION, + COMSIG_LIVING_FLAMER_FLAMED, + )) + fire_shield_on = FALSE + + user.remove_filter("firewalk_on") + + addtimer(CALLBACK(src, PROC_REF(enable_fire_shield), user), FIRE_SHIELD_CD) + +/obj/item/clothing/suit/storage/marine/M35/proc/enable_fire_shield(mob/living/carbon/human/user) + if(!istype(user)) + return + to_chat(user, SPAN_NOTICE("FIREWALK protocol can be activated again.")) + can_activate = TRUE + + for(var/X in actions) + var/datum/action/A = X + A.update_button_icon() + +/// This proc is solely so that IgniteMob() fails +/obj/item/clothing/suit/storage/marine/M35/proc/fire_shield_is_on(mob/living/L) + SIGNAL_HANDLER + + if(L.fire_reagent?.fire_penetrating) + return + + return COMPONENT_CANCEL_IGNITION + +/obj/item/clothing/suit/storage/marine/M35/proc/flamer_fire_callback(mob/living/L, datum/reagent/R) + SIGNAL_HANDLER + + if(R.fire_penetrating) + return + + . = COMPONENT_NO_IGNITE + if(fire_shield_on) + . |= COMPONENT_NO_BURN + +/obj/item/clothing/suit/storage/marine/M35/dropped(mob/user) + if (!istype(user)) + return + UnregisterSignal(user, list( + COMSIG_LIVING_PREIGNITION, + COMSIG_LIVING_FLAMER_CROSSED, + COMSIG_LIVING_FLAMER_FLAMED, + )) + ..() + +#undef FIRE_SHIELD_CD + +/datum/action/item_action/specialist/fire_shield + ability_primacy = SPEC_PRIMARY_ACTION_2 + +/datum/action/item_action/specialist/fire_shield/New(mob/living/user, obj/item/holder) + ..() + name = "Activate Fire Shield" + button.name = name + button.overlays.Cut() + var/image/IMG = image('icons/obj/items/clothing/cm_suits.dmi', button, "pyro_armor") + button.overlays += IMG + +/datum/action/item_action/specialist/fire_shield/action_cooldown_check() + var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item + if (!istype(armor)) + return FALSE + + return !armor.can_activate + +/datum/action/item_action/specialist/fire_shield/can_use_action() + var/mob/living/carbon/human/H = owner + if(istype(H) && !H.is_mob_incapacitated() && H.wear_suit == holder_item) + return TRUE + +/datum/action/item_action/specialist/fire_shield/action_activate() + . = ..() + var/obj/item/clothing/suit/storage/marine/M35/armor = holder_item + if (!istype(armor)) + return + + armor.fire_shield() diff --git a/code/modules/clothing/suits/marine_coat.dm b/code/modules/clothing/suits/marine_coat.dm index 2ccc2d948a..246056b6ac 100644 --- a/code/modules/clothing/suits/marine_coat.dm +++ b/code/modules/clothing/suits/marine_coat.dm @@ -24,7 +24,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, /obj/item/storage/belt/gun/m4a3, @@ -89,6 +89,16 @@ flags_atom = NO_SNOW_TYPE initial_icon_state = "pilot_alt" +/obj/item/clothing/suit/storage/jacket/marine/RO + name = "quartermaster jacket" + desc = "A green jacket worn by USCM personnel. The back has the flag of the United Americas on it." + icon_state = "RO_jacket" + icon = 'icons/obj/items/clothing/suits.dmi' + item_icons = list( + WEAR_JACKET = 'icons/mob/humans/onmob/suit_0.dmi' + ) + flags_atom = NO_SNOW_TYPE + /obj/item/clothing/suit/storage/jacket/marine/service/mp name = "military police service jacket" desc = "Marine service jacket in USCMC Military Police scheme. Usually not used due to local standards requiring service armor instead." @@ -243,6 +253,11 @@ flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE valid_accessory_slots = list(ACCESSORY_SLOT_ARMBAND, ACCESSORY_SLOT_RANK, ACCESSORY_SLOT_DECOR) +/obj/item/clothing/suit/storage/jacket/marine/provost/chief + name = "\improper Provost Command Jacket" + desc = "A crisp jacket with the Provost sigil." + icon_state = "provostci_jacket" + /obj/item/clothing/suit/storage/jacket/marine/provost/coat name = "\improper Provost Coat" desc = "The crisp coat of a Provost Officer." @@ -278,15 +293,29 @@ icon_state = "o_jacket" item_state = "o_jacket" -//==================War Correspondent==================\\ +//==================Combat Correspondent==================\\ /obj/item/clothing/suit/storage/jacket/marine/reporter name = "combat correspondent jacket" desc = "A jacket for the most fashionable war correspondents." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_suit" - item_state = "wc_suit" - contained_sprite = TRUE + icon_state = "cc_brown" + item_state = "cc_brown" + flags_atom = NO_SNOW_TYPE + has_buttons = FALSE + +/obj/item/clothing/suit/storage/jacket/marine/reporter/green + icon_state = "cc_green" + item_state = "cc_green" + + +/obj/item/clothing/suit/storage/jacket/marine/reporter/black + icon_state = "cc_black" + item_state = "cc_black" + +/obj/item/clothing/suit/storage/jacket/marine/reporter/blue + icon_state = "cc_blue" + item_state = "cc_blue" + //==================Corporate Liaison==================\\ @@ -295,8 +324,8 @@ desc = "A casual brown vest." icon_state = "vest_brown" item_state = "vest_brown" - has_buttons = FALSE flags_atom = NO_SNOW_TYPE + has_buttons = FALSE /obj/item/clothing/suit/storage/jacket/marine/vest/tan name = "tan vest" @@ -317,8 +346,8 @@ desc = "A khaki suit jacket." icon_state = "corporate_ivy" item_state = "corporate_ivy" - has_buttons = FALSE flags_atom = NO_SNOW_TYPE + has_buttons = FALSE /obj/item/clothing/suit/storage/jacket/marine/corporate/formal name = "formal suit jacket" @@ -353,8 +382,8 @@ desc = "A khaki bomber jacket popular among stationeers and blue-collar workers everywhere." icon_state = "jacket_khaki" item_state = "jacket_khaki" - has_buttons = FALSE flags_atom = NO_SNOW_TYPE + has_buttons = FALSE /obj/item/clothing/suit/storage/jacket/marine/bomber/red name = "red bomber jacket" diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 54148d4f70..252b99e124 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -128,7 +128,7 @@ /obj/item/ammo_magazine, /obj/item/ammo_casing, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/device/taperecorder, @@ -153,7 +153,7 @@ /obj/item/ammo_magazine, /obj/item/ammo_casing, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/device/taperecorder, @@ -290,7 +290,7 @@ item_state = "webbing" allowed = list( /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, @@ -318,7 +318,7 @@ item_state = "synth_utility_vest" allowed = list( /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, @@ -455,7 +455,7 @@ /obj/item/storage/fancy/cigarettes, /obj/item/tool/lighter, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/binoculars, /obj/item/attachable/bayonet, diff --git a/code/modules/clothing/suits/utility.dm b/code/modules/clothing/suits/utility.dm index 133265b34b..3b415cf0f9 100644 --- a/code/modules/clothing/suits/utility.dm +++ b/code/modules/clothing/suits/utility.dm @@ -112,7 +112,7 @@ allowed = list( /obj/item/weapon/gun, /obj/item/weapon/baton, - /obj/item/handcuffs, + /obj/item/restraint/handcuffs, /obj/item/device/flashlight, /obj/item/device/healthanalyzer, diff --git a/code/modules/clothing/under/gimmick.dm b/code/modules/clothing/under/gimmick.dm index 62ffbf391c..649258b3e9 100644 --- a/code/modules/clothing/under/gimmick.dm +++ b/code/modules/clothing/under/gimmick.dm @@ -11,6 +11,10 @@ has_sensor = UNIFORM_NO_SENSORS displays_id = 0 + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi', + ) + //JASON /obj/item/clothing/under/gimmick/jason name = "dirty work attire" diff --git a/code/modules/clothing/under/jobs/medsci.dm b/code/modules/clothing/under/jobs/medsci.dm index 6232f0eef4..74507c2e55 100644 --- a/code/modules/clothing/under/jobs/medsci.dm +++ b/code/modules/clothing/under/jobs/medsci.dm @@ -2,10 +2,27 @@ * Science */ +/obj/item/clothing/under/rank/rd + desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer is a Research Director." + name = "research director's uniform" + icon_state = "rdalt_s" + worn_state = "rdalt_s" + permeability_coefficient = 0.50 + armor_melee = CLOTHING_ARMOR_NONE + armor_bullet = CLOTHING_ARMOR_NONE + armor_laser = CLOTHING_ARMOR_NONE + armor_energy = CLOTHING_ARMOR_NONE + armor_bomb = CLOTHING_ARMOR_NONE + armor_bio = CLOTHING_ARMOR_LOW + armor_rad = CLOTHING_ARMOR_LOW + armor_internaldamage = CLOTHING_ARMOR_LOW + flags_jumpsuit = FALSE + /obj/item/clothing/under/rank/rdalt - desc = "A simple blue utilitarian jumpsuit that serves as the standard issue service uniform of support synthetics onboard USCM facilities. While commonly associated with the staple Bishop units, reduced funding to the Colonial Marines has led to a wide range of models filling these uniforms, especially in battalions operating in the edge frontier." - name = "synthetic service uniform" + desc = "It's made of a special fiber that provides minor protection against biohazards. It has markings that denote the wearer is a Research Director." + name = "research director's jumpsuit" icon_state = "rdalt" + permeability_coefficient = 0.50 armor_melee = CLOTHING_ARMOR_NONE armor_bullet = CLOTHING_ARMOR_NONE armor_laser = CLOTHING_ARMOR_NONE @@ -144,7 +161,7 @@ item_state_slots = list(WEAR_BODY = "orderly") /obj/item/clothing/under/rank/medical - desc = "It's made of a special fiber that provides minor protection against biohazards. It has a cross on the chest denoting that the wearer is trained medical personnel." + desc = "They're made of a special fiber that provides minor protection against biohazards. They have a cross on the chest denoting that the wearer is trained medical personnel." name = "medical doctor's uniform" icon_state = "medical" item_state = "w_suit" @@ -161,35 +178,49 @@ /obj/item/clothing/under/rank/medical/lightblue name = "medical scrubs" - desc = "It's made of a special fiber that provides minor protection against biohazards. This one is in light blue." + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in light blue." icon_state = "scrubslightblue" flags_jumpsuit = FALSE item_state_slots = list(WEAR_BODY = "scrubslightblue") /obj/item/clothing/under/rank/medical/blue name = "medical scrubs" - desc = "It's made of a special fiber that provides minor protection against biohazards. This one is in baby blue." + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in formal blue." icon_state = "scrubsblue" flags_jumpsuit = FALSE item_state_slots = list(WEAR_BODY = "scrubsblue") /obj/item/clothing/under/rank/medical/green name = "medical scrubs" - desc = "It's made of a special fiber that provides minor protection against biohazards. This one is in dark green." + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in jade green." icon_state = "scrubsgreen" flags_jumpsuit = FALSE item_state_slots = list(WEAR_BODY = "scrubsgreen") /obj/item/clothing/under/rank/medical/purple name = "medical scrubs" - desc = "It's made of a special fiber that provides minor protection against biohazards. This one is in deep purple." + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in berry red." icon_state = "scrubspurple" flags_jumpsuit = FALSE item_state_slots = list(WEAR_BODY = "scrubspurple") +/obj/item/clothing/under/rank/medical/olive + name = "medical scrubs" + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in olive green." + icon_state = "scrubsolive" + flags_jumpsuit = FALSE + item_state_slots = list(WEAR_BODY = "scrubsolive") + +/obj/item/clothing/under/rank/medical/grey + name = "medical scrubs" + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in mundane grey." + icon_state = "scrubsgrey" + flags_jumpsuit = FALSE + item_state_slots = list(WEAR_BODY = "scrubsgrey") + /obj/item/clothing/under/rank/medical/orange name = "medical scrubs" - desc = "It's made of a special fiber that provides minor protection against biohazards. This one is in prisoner orange." + desc = "They're made of a special fiber that provides minor protection against biohazards. These are in prisoner orange." icon_state = "scrubsorange" flags_jumpsuit = FALSE item_state_slots = list(WEAR_BODY = "scrubsorange") diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm index fae81f0216..0e8353e546 100644 --- a/code/modules/clothing/under/marine_uniform.dm +++ b/code/modules/clothing/under/marine_uniform.dm @@ -17,6 +17,7 @@ armor_rad = CLOTHING_ARMOR_NONE armor_internaldamage = CLOTHING_ARMOR_LOW flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE + drop_sound = "armorequip" ///Makes it so that we can see the right name in the vendor. var/specialty = "USCM" ///List of map variants that use sleeve rolling on something else, like snow uniforms rolling the collar, and therefore shouldn't hide patches etc when rolled. @@ -386,6 +387,12 @@ icon_state = "provost_tml" worn_state = "provost_tml" +/obj/item/clothing/under/marine/mp/provost/chief + name = "\improper Provost Command Uniform" + desc = "The crisp uniform of a commanding member of the Provost Office." + icon_state = "provost_ci" + worn_state = "provost_ci" + /obj/item/clothing/under/marine/mp/provost/marshal name = "\improper Provost Marshal Uniform" desc = "The crisp uniform of a Provost Marshal." @@ -777,6 +784,14 @@ has_sensor = UNIFORM_HAS_SENSORS sensor_faction = FACTION_MARINE +/obj/item/clothing/under/colonist/white_service + name = "white service uniform" + desc = "A white dress shirt and tie with sleek pants. Standard clothing for anyone on professional business." + icon_state = "CO_service" + worn_state = "CO_service" + has_sensor = UNIFORM_HAS_SENSORS + sensor_faction = FACTION_MARINE + /obj/item/clothing/under/colonist/wy_joliet_shopsteward name = "steward utilities" desc = "A stylish brown vest and shorts - uniforms like this are often worn by clerks and shop stewards." @@ -797,6 +812,7 @@ displays_id = FALSE has_sensor = UNIFORM_HAS_SENSORS sensor_faction = FACTION_MARINE + /obj/item/clothing/under/tshirt/gray_blu name = "gray T-shirt and jeans" desc = "A comfortable gray T-shirt and blue jeans." @@ -859,7 +875,7 @@ worn_state = "liaison_formal" /obj/item/clothing/under/liaison_suit/suspenders - name = "liaison's attire" + name = "liaison's suspenders" desc = "A collared shirt, complimented by a pair of suspenders. Worn by Weyland-Yutani employees who ask the tough questions. Smells faintly of cigars and bad acting." icon_state = "liaison_suspenders" worn_state = "liaison_suspenders" @@ -882,6 +898,12 @@ icon_state = "corporate_ivy" worn_state = "corporate_ivy" +/obj/item/clothing/under/liaison_suit/orange + name = "orange outfit" + desc = "A pair of black pants paired with a very Wey-Yu orange shirt. A popular look with those in the corporate world that conduct the majority of their business from Weyland Yutani offices." + icon_state = "corporate_orange" + worn_state = "corporate_orange" + /obj/item/clothing/under/liaison_suit/corporate_formal name = "white suit pants" desc = "A pair of ivory slacks paired with a white shirt. A popular pairing for formal corporate events." @@ -909,11 +931,24 @@ /obj/item/clothing/under/marine/reporter name = "combat correspondent uniform" desc = "A relaxed and robust uniform fit for any potential reporting needs." - icon = 'icons/mob/humans/onmob/contained/war_correspondent.dmi' - icon_state = "wc_uniform" - worn_state = "wc_uniform" - contained_sprite = TRUE - flags_atom = NO_NAME_OVERRIDE + icon_state = "cc_white" + worn_state = "cc_white" + flags_atom = NO_SNOW_TYPE|NO_NAME_OVERRIDE + item_icons = list( + WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi', + ) + +/obj/item/clothing/under/marine/reporter/black + icon_state = "cc_black" + worn_state = "cc_black" + +/obj/item/clothing/under/marine/reporter/orange + icon_state = "cc_orange" + worn_state = "cc_orange" + +/obj/item/clothing/under/marine/reporter/red + icon_state = "cc_red" + worn_state = "cc_red" /obj/item/clothing/under/twe_suit name = "representative's fine suit" @@ -1004,6 +1039,31 @@ desc = "A cheap uniform made for Synthetic labor. Tomorrow, Together." icon_state = "working_joe" worn_state = "working_joe" + flags_item = NO_CRYO_STORE + var/obj/structure/machinery/camera/camera + +/obj/item/clothing/under/rank/synthetic/joe/Initialize() + . = ..() + camera = new /obj/structure/machinery/camera/autoname/almayer/containment/ares(src) + +/obj/item/clothing/under/rank/synthetic/joe/Destroy() + QDEL_NULL(camera) + return ..() + +/obj/item/clothing/under/rank/synthetic/joe/equipped(mob/living/carbon/human/mob, slot) + if(camera) + camera.c_tag = mob.name + ..() + +/obj/item/clothing/under/rank/synthetic/joe/dropped(mob/living/carbon/human/mob) + if(camera) + camera.c_tag = "3RR0R" + ..() + +/obj/item/clothing/under/rank/synthetic/joe/get_examine_text(mob/user) + . = ..() + if(camera) + . += SPAN_ORANGE("There is a small camera mounted to the front.") /obj/item/clothing/under/rank/synthetic/joe/engi name = "\improper Working Joe Hazardous Uniform" @@ -1064,7 +1124,7 @@ /obj/item/clothing/under/marine/cbrn //CBRN MOPP suit name = "\improper M3 MOPP suit" - desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. Despite somewhat resembling commonplace synthetic rubber HAZMAT suits, the Venlar composition provides a significantly more dense and durable baseline material, allowing for modifications without the loss of its air-tight nature. The wearer’s comfort has been significantly taken into consideration, with the suit providing sufficient freedom of movement for even delicate maneuvers and movements once it is donned. As the sealed environment retains many issues from the past, measures have been taken to significantly reduce the suit's passive heat absorption and increase internal absorbance through linings, as well as the capability to fully integrate with external cooling, air cycling, and other life support systems. Strips of M11 detector paper are included with each suit, designed to be slotted into the dominant arm of the wearer’s protective suit, the non-dominant wrist, and then back to the knee, providing at-a-glance warning signs across alternating sides of the body while working. The arm and knee markers are intended to be on the user's dominant The papers change color upon contact with harmful chemical agents, displaying a clear white initially and turning red when activated. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less. Beyond that point, the accuracy of the detector papers deteriorates significantly, as does the protection of the suit itself." + desc = "M3 MOPP suits are specially designed and engineered to protect the wearer from unshielded exposure to any Chemical, Biological, Radiological, or Nuclear (CBRN) threats in the field. The suit has a recommended lifespan of twenty-four hours once contact with a toxic environment is made, but depending on the severity this can be shortened to eight hours or less." desc_lore = "Since the outbreak of the New Earth Plague in 2157 and the subsequent Interstellar Commerce Commission (ICC) sanctioned decontamination of the colony and its 40 million inhabitants, the abandoned colony has been left under a strict quarantine blockade to prevent any potential scavengers from spreading what’s left of the highly-durable airborne flesh-eating bacteria. Following those events, the three major superpowers have been investing heavily in the development and procurement of CBRN equipment, in no small part due to the extensive damage that the plague and other similar bioweapons could do. The \"Marine 70\" upgrade package and the launch of the M3 pattern armor series saw the first M3-M prototypes approved for CBRN usage." flags_atom = NO_NAME_OVERRIDE|NO_SNOW_TYPE icon_state = "cbrn" @@ -1205,6 +1265,7 @@ button.overlays += button_overlay /datum/action/item_action/specialist/toggle_cbrn_hood/action_activate() + . = ..() var/obj/item/clothing/under/marine/cbrn/armor = holder_item if(!istype(armor)) return diff --git a/code/modules/clothing/under/rank_pins.dm b/code/modules/clothing/under/rank_pins.dm index bcadaec520..894ff6d879 100644 --- a/code/modules/clothing/under/rank_pins.dm +++ b/code/modules/clothing/under/rank_pins.dm @@ -5,7 +5,7 @@ desc = "A set of rank pins, used to denote the paygrade of someone within the military." icon_state = "ranks_enlisted" var/rank = "Private" - var/rank_short = "ME1" + var/rank_short = PAY_SHORT_ME1 slot = ACCESSORY_SLOT_RANK high_visibility = TRUE gender = PLURAL @@ -23,116 +23,116 @@ /obj/item/clothing/accessory/ranks/marine/e1 /obj/item/clothing/accessory/ranks/marine/e2 - rank_short = "ME2" + rank_short = PAY_SHORT_ME2 /obj/item/clothing/accessory/ranks/marine/e3 - rank_short = "ME3" + rank_short = PAY_SHORT_ME3 /obj/item/clothing/accessory/ranks/marine/e4 - rank_short = "ME4" + rank_short = PAY_SHORT_ME4 icon_state = "ranks_nco" /obj/item/clothing/accessory/ranks/marine/e5 - rank_short = "ME5" + rank_short = PAY_SHORT_ME5 icon_state = "ranks_nco" /obj/item/clothing/accessory/ranks/marine/e6 - rank_short = "ME6" + rank_short = PAY_SHORT_ME6 icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e7 - rank_short = "ME7" + rank_short = PAY_SHORT_ME7 icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e8 - rank_short = "ME8" + rank_short = PAY_SHORT_ME8 icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e8e - rank_short = "ME8E" + rank_short = PAY_SHORT_ME8E icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e9 - rank_short = "ME9" + rank_short = PAY_SHORT_ME9 icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e9e - rank_short = "ME9E" + rank_short = PAY_SHORT_ME9E icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/marine/e9c - rank_short = "ME9C" + rank_short = PAY_SHORT_ME9C icon_state = "ranks_snco" //OFFICERS /obj/item/clothing/accessory/ranks/marine/o1 name = "rank boards" - rank_short = "MO1" + rank_short = PAY_SHORT_MO1 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/marine/o2 name = "rank boards" - rank_short = "MO2" + rank_short = PAY_SHORT_MO2 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/marine/o3 name = "rank boards" - rank_short = "MO3" + rank_short = PAY_SHORT_MO3 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/marine/o4 name = "rank boards" - rank_short = "MO4" + rank_short = PAY_SHORT_MO4 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/marine/o5 name = "rank boards" - rank_short = "MO5" + rank_short = PAY_SHORT_MO5 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/marine/o6 name = "rank boards" - rank_short = "MO6" + rank_short = PAY_SHORT_MO6 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/marine/o6e name = "rank boards" - rank_short = "MO6E" + rank_short = PAY_SHORT_MO6E icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/marine/o6c name = "rank boards" - rank_short = "MO6C" + rank_short = PAY_SHORT_MO6C icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o7 name = "rank boards" - rank_short = "MO7" + rank_short = PAY_SHORT_MO7 icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o8 name = "rank boards" - rank_short = "MO8" + rank_short = PAY_SHORT_MO8 icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o9 name = "rank boards" - rank_short = "MO9" + rank_short = PAY_SHORT_MO9 icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o10 name = "rank boards" - rank_short = "MO10" + rank_short = PAY_SHORT_MO10 icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o10c name = "rank boards" - rank_short = "MO10C" + rank_short = PAY_SHORT_MO10C icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/marine/o10s name = "rank boards" - rank_short = "MO10S" + rank_short = PAY_SHORT_MO10S icon_state = "ranks_flagofficer" /*################################################ @@ -140,134 +140,112 @@ ################################################*/ //ENLISTED /obj/item/clothing/accessory/ranks/navy/e1 - rank_short = "NE1" + rank_short = PAY_SHORT_NE1 /obj/item/clothing/accessory/ranks/navy/e2 - rank_short = "NE2" + rank_short = PAY_SHORT_NE2 /obj/item/clothing/accessory/ranks/navy/e3 - rank_short = "NE3" + rank_short = PAY_SHORT_NE3 /obj/item/clothing/accessory/ranks/navy/e4 - rank_short = "NE4" + rank_short = PAY_SHORT_NE4 icon_state = "ranks_nco" /obj/item/clothing/accessory/ranks/navy/e5 - rank_short = "NE5" + rank_short = PAY_SHORT_NE5 icon_state = "ranks_nco" /obj/item/clothing/accessory/ranks/navy/e6 - rank_short = "NE6" + rank_short = PAY_SHORT_NE6 icon_state = "ranks_nco" /obj/item/clothing/accessory/ranks/navy/e7 - rank_short = "NE7" + rank_short = PAY_SHORT_NE7 icon_state = "ranks_snco" -/obj/item/clothing/accessory/ranks/navy/e7/pvst - icon_state = "ranks_pvst" - /obj/item/clothing/accessory/ranks/navy/e8 - rank_short = "NE8" + rank_short = PAY_SHORT_NE8 icon_state = "ranks_snco" -/obj/item/clothing/accessory/ranks/navy/e8/pvst - icon_state = "ranks_pvst" - /obj/item/clothing/accessory/ranks/navy/e8c - rank_short = "NE8C" + rank_short = PAY_SHORT_NE8C icon_state = "ranks_snco" /obj/item/clothing/accessory/ranks/navy/e9 - rank_short = "NE9" + rank_short = PAY_SHORT_NE9 icon_state = "ranks_snco" -/obj/item/clothing/accessory/ranks/navy/e9/pvst - icon_state = "ranks_pvst" - /obj/item/clothing/accessory/ranks/navy/e9c - rank_short = "NE9C" + rank_short = PAY_SHORT_NE9C icon_state = "ranks_snco" //OFFICERS /obj/item/clothing/accessory/ranks/navy/o1 name = "rank boards" - rank_short = "NO1" + rank_short = PAY_SHORT_NO1 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/navy/o2 name = "rank boards" - rank_short = "NO2" + rank_short = PAY_SHORT_NO2 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/navy/o3 name = "rank boards" - rank_short = "NO3" + rank_short = PAY_SHORT_NO3 icon_state = "ranks_officer" /obj/item/clothing/accessory/ranks/navy/o4 name = "rank boards" - rank_short = "NO4" + rank_short = PAY_SHORT_NO4 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/navy/o5 name = "rank boards" - rank_short = "NO5" + rank_short = PAY_SHORT_NO5 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/navy/o6 name = "rank boards" - rank_short = "NO6" + rank_short = PAY_SHORT_NO6 icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/navy/o6e name = "rank boards" - rank_short = "NO6E" + rank_short = PAY_SHORT_NO6E icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/navy/o6c name = "rank boards" - rank_short = "NO6C" + rank_short = PAY_SHORT_NO6C icon_state = "ranks_seniorofficer" /obj/item/clothing/accessory/ranks/navy/o7 name = "rank boards" - rank_short = "NO7" + rank_short = PAY_SHORT_NO7 icon_state = "ranks_flagofficer" /obj/item/clothing/accessory/ranks/navy/o8 name = "rank boards" - rank_short = "NO8" + rank_short = PAY_SHORT_NO8 icon_state = "ranks_flagofficer" -/obj/item/clothing/accessory/ranks/navy/o8/pvst - icon_state = "ranks_pvstofficer" - /obj/item/clothing/accessory/ranks/navy/o9 name = "rank boards" - rank_short = "NO9" + rank_short = PAY_SHORT_NO9 icon_state = "ranks_flagofficer" -/obj/item/clothing/accessory/ranks/navy/o9/pvst - icon_state = "ranks_pvstofficer" - /obj/item/clothing/accessory/ranks/navy/o10 name = "rank boards" - rank_short = "NO10" + rank_short = PAY_SHORT_NO10 icon_state = "ranks_flagofficer" -/obj/item/clothing/accessory/ranks/navy/o10/pvst - icon_state = "ranks_pvstofficer" - /obj/item/clothing/accessory/ranks/navy/o10c name = "rank boards" - rank_short = "NO10C" + rank_short = PAY_SHORT_NO10C icon_state = "ranks_flagofficer" -/obj/item/clothing/accessory/ranks/navy/o10c/pvst - rank_short = "PvCM" - icon_state = "ranks_pvstofficer" - /*################################################ ################# SPECIAL ################# ################################################*/ diff --git a/code/modules/clothing/under/ties.dm b/code/modules/clothing/under/ties.dm index db82f31c0e..305627637b 100644 --- a/code/modules/clothing/under/ties.dm +++ b/code/modules/clothing/under/ties.dm @@ -102,42 +102,60 @@ /obj/item/clothing/accessory/stethoscope name = "stethoscope" - desc = "An outdated medical apparatus for listening to the sounds of the human body. It also makes you look like you know what you're doing." + desc = "An outdated, but still useful, medical apparatus for listening to the sounds of the human body. It also makes you look like you know what you're doing." icon_state = "stethoscope" -/obj/item/clothing/accessory/stethoscope/attack(mob/living/carbon/human/M, mob/living/user) - if(ishuman(M) && isliving(user)) +/obj/item/clothing/accessory/stethoscope/attack(mob/living/carbon/human/being, mob/living/user) + if(ishuman(being) && isliving(user)) if(user.a_intent == INTENT_HELP) var/body_part = parse_zone(user.zone_selected) if(body_part) - var/their = "their" - switch(M.gender) - if(MALE) their = "his" - if(FEMALE) their = "her" - - var/sound = "pulse" - var/sound_strength - - if(M.stat == DEAD || (M.status_flags&FAKEDEATH)) - sound_strength = "cannot hear" - sound = "anything" + var/sound = null + if(being.stat == DEAD || (being.status_flags&FAKEDEATH)) + sound = "can't hear anything at all, they must have kicked the bucket" else - sound_strength = "hear a weak" switch(body_part) if("chest") - if(M.oxyloss < 50) - sound_strength = "hear a healthy" - sound = "pulse and respiration" + if(skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC)) // only medical personnel can take advantage of it + if(!ishuman(being)) + return // not a human; only humans have the variable internal_organs_by_name // "cast" it a human type since we confirmed it is one + if(isnull(being.internal_organs_by_name)) + return // they have no organs somehow + var/datum/internal_organ/heart/heart = being.internal_organs_by_name["heart"] + if(heart) + switch(heart.organ_status) + if(ORGAN_LITTLE_BRUISED) + sound = "hear small murmurs with each heart beat, it is possible that [being.p_their()] heart is subtly damaged" + if(ORGAN_BRUISED) + sound = "hear deviant heart beating patterns, result of probable heart damage" + if(ORGAN_BROKEN) + sound = "hear irregular and additional heart beating patterns, probably caused by impaired blood pumping, [being.p_their()] heart is certainly failing" + else + sound = "hear normal heart beating patterns, [being.p_their()] heart is surely healthy" + var/datum/internal_organ/lungs/lungs = being.internal_organs_by_name["lungs"] + if(lungs) + if(sound) + sound += ". You also " + switch(lungs.organ_status) + if(ORGAN_LITTLE_BRUISED) + sound += "hear some crackles when [being.p_they()] breath, [being.p_they()] is possibly suffering from a small damage to the lungs" + if(ORGAN_BRUISED) + sound += "hear unusual respiration sounds and noticeable difficulty to breath, possibly signalling ruptured lungs" + if(ORGAN_BROKEN) + sound += "barely hear any respiration sounds and a lot of difficulty to breath, [being.p_their()] lungs are heavily failing" + else + sound += "hear normal respiration sounds aswell, that means [being.p_their()] lungs are healthy, probably" + else + sound = "can't hear. Really, anything at all, how weird" + else + sound = "hear a lot of sounds... it's quite hard to distinguish, really" if("eyes","mouth") - sound_strength = "cannot hear" - sound = "anything" + sound = "can't hear anything. Maybe that isn't the smartest idea" else - sound_strength = "hear a weak" - - user.visible_message("[user] places [src] against [M]'s [body_part] and listens attentively.", "You place [src] against [their] [body_part]. You [sound_strength] [sound].") + sound = "hear a sound here and there, but none of them give you any good information" + user.visible_message("[user] places [src] against [being]'s [body_part] and listens attentively.", "You place [src] against [being.p_their()] [body_part] and... you [sound].") return - return ..(M,user) - + return ..(being,user) //Medals /obj/item/clothing/accessory/medal @@ -154,18 +172,18 @@ /obj/item/clothing/accessory/medal/on_attached(obj/item/clothing/S, mob/living/user, silent) . = ..() if(.) - RegisterSignal(S, COMSIG_ITEM_PICKUP, PROC_REF(remove_medal)) + RegisterSignal(S, COMSIG_ITEM_EQUIPPED, PROC_REF(remove_medal)) -/obj/item/clothing/accessory/medal/proc/remove_medal(obj/item/clothing/C, mob/user) +/obj/item/clothing/accessory/medal/proc/remove_medal(obj/item/clothing/C, mob/user, slot) SIGNAL_HANDLER - if(user.real_name != recipient_name) + if(user.real_name != recipient_name && (slot == WEAR_BODY || slot == WEAR_JACKET)) C.remove_accessory(user, src) user.drop_held_item(src) /obj/item/clothing/accessory/medal/on_removed(mob/living/user, obj/item/clothing/C) . = ..() if(.) - UnregisterSignal(C, COMSIG_ITEM_PICKUP) + UnregisterSignal(C, COMSIG_ITEM_EQUIPPED) /obj/item/clothing/accessory/medal/attack(mob/living/carbon/human/H, mob/living/carbon/human/user) if(!(istype(H) && istype(user))) @@ -384,7 +402,7 @@ /obj/item/clothing/accessory/patch/devils name = "USCM Solar Devils patch" - desc = "A fire-resistant shoulder patch, worn by the men and women of the Solar Devils, the 3rd battalion of the 2nd division of the USCM." + desc = "A fire-resistant shoulder patch, worn by the men and women of the 3rd Battalion 'Solar Devils', part of the USCM 2nd Division, 1st Regiment." icon_state = "solardevilspatch" /obj/item/clothing/accessory/patch/forecon @@ -407,11 +425,24 @@ desc = "A fire-resistant shoulder patch, worn by the men and women of the 173rd Airborne Reconnaissance Platoon." icon_state = "vdvpatch" +/obj/item/clothing/accessory/patch/upp/naval + name = "UPP Naval Infantry patch" + desc = "A fire-resistant shoulder patch, worn by the men and women of the UPP Naval Infantry." + icon_state = "navalpatch" + /obj/item/clothing/accessory/patch/upp/platoon name = "UPP Naval Infantry patch" desc = "A fire-resistant shoulder patch, worn by the men and women of the UPP Naval Infantry." icon_state = "navalpatch" +//misc + +/obj/item/clothing/accessory/dogtags + name = "Attachable Dogtags" + desc = "A robust pair of dogtags to be worn around the neck of the United States Colonial Marines, however due to a combination of budget reallocation, Marines losing their dogtags, and multiple incidents of marines swallowing their tags, they now attach to the uniform or armor." + icon_state = "dogtag" + slot = ACCESSORY_SLOT_MEDAL + /obj/item/clothing/accessory/poncho name = "USCM Poncho" desc = "The standard USCM poncho has variations for every climate. Custom fitted to be attached to standard USCM armor variants it is comfortable, warming or cooling as needed, and well-fit. A marine couldn't ask for more. Affectionately referred to as a \"woobie\"." @@ -422,7 +453,7 @@ /obj/item/clothing/accessory/poncho/Initialize() . = ..() if(has_variation) - select_gamemode_skin(type) + select_gamemode_skin(/obj/item/clothing/accessory/poncho) inv_overlay = image("icon" = 'icons/obj/items/clothing/ties_overlay.dmi', "icon_state" = "[icon_state]") update_icon() @@ -594,6 +625,11 @@ desc = "A brown synthcotton webbing that is similar in function to civilian tool aprons, but is more durable for field usage." hold = /obj/item/storage/internal/accessory/tool_webbing +/obj/item/clothing/accessory/storage/tool_webbing/small + name = "Small Tool Webbing" + desc = "A brown synthcotton webbing that is similar in function to civilian tool aprons, but is more durable for field usage. This is the small low-budget version." + hold = /obj/item/storage/internal/accessory/tool_webbing/small + /obj/item/storage/internal/accessory/tool_webbing storage_slots = 7 can_hold = list( @@ -604,8 +640,24 @@ /obj/item/tool/wirecutters, /obj/item/stack/cable_coil, /obj/item/device/multitool, + /obj/item/tool/shovel/etool, + /obj/item/weapon/gun/smg/nailgun/compact, ) +/obj/item/storage/internal/accessory/tool_webbing/small + storage_slots = 6 + +/obj/item/clothing/accessory/storage/tool_webbing/small/equipped + hold = /obj/item/storage/internal/accessory/tool_webbing/small/equipped + +/obj/item/storage/internal/accessory/tool_webbing/small/equipped/fill_preset_inventory() + new /obj/item/tool/screwdriver(src) + new /obj/item/tool/wrench(src) + new /obj/item/tool/weldingtool(src) + new /obj/item/tool/crowbar(src) + new /obj/item/tool/wirecutters(src) + new /obj/item/device/multitool(src) + /obj/item/clothing/accessory/storage/tool_webbing/equipped hold = /obj/item/storage/internal/accessory/tool_webbing/equipped @@ -694,6 +746,25 @@ /obj/item/clothing/accessory/storage/surg_vest/drop_green/equipped hold = /obj/item/storage/internal/accessory/surg_vest/equipped +/obj/item/clothing/accessory/storage/surg_vest/drop_green/upp + hold = /obj/item/storage/internal/accessory/surg_vest/drop_green/upp + +/obj/item/storage/internal/accessory/surg_vest/drop_green/upp/fill_preset_inventory() + new /obj/item/tool/surgery/scalpel(src) + new /obj/item/tool/surgery/hemostat(src) + new /obj/item/tool/surgery/retractor(src) + new /obj/item/tool/surgery/cautery(src) + new /obj/item/tool/surgery/circular_saw(src) + new /obj/item/tool/surgery/surgicaldrill(src) + new /obj/item/tool/surgery/scalpel/pict_system(src) + new /obj/item/tool/surgery/bonesetter(src) + new /obj/item/tool/surgery/FixOVein(src) + new /obj/item/stack/medical/advanced/bruise_pack(src) + new /obj/item/stack/nanopaste(src) + new /obj/item/tool/surgery/bonegel(src) + new /obj/item/tool/surgery/bonegel(src) + new /obj/item/reagent_container/blood/OMinus(src) + /obj/item/clothing/accessory/storage/surg_vest/drop_black name = "black surgical drop pouch" desc = "A tactical black synthcotton drop pouch purpose-made for holding surgical tools." @@ -779,7 +850,7 @@ w_class = SIZE_LARGE //Allow storage containers that's medium or below storage_slots = null max_w_class = SIZE_MEDIUM - max_storage_space = 6 //weight system like backpacks, hold enough for 2 medium (normal) size items, or 3 small items, or 6 tiny items + max_storage_space = 8 //weight system like backpacks, hold enough for 2 medium (normal) size items, or 4 small items, or 8 tiny items cant_hold = list( //Prevent inventory powergame /obj/item/storage/firstaid, /obj/item/storage/bible, diff --git a/code/modules/clothing/under/under.dm b/code/modules/clothing/under/under.dm index ec20ed6f6b..a48967d885 100644 --- a/code/modules/clothing/under/under.dm +++ b/code/modules/clothing/under/under.dm @@ -45,7 +45,7 @@ else worn_state = icon_state - var/check_icon = contained_sprite ? icon : default_onmob_icons[WEAR_BODY] + var/check_icon = contained_sprite ? icon : GLOB.default_onmob_icons[WEAR_BODY] //autodetect rollability, cuttability, and removability. if(icon_exists(check_icon, "[worn_state]_d[contained_sprite ? "_un" : ""]")) @@ -259,7 +259,7 @@ else if(LAZYISIN(item_icons, WEAR_BODY)) under_icon = item_icons[WEAR_BODY] else - under_icon = default_onmob_icons[WEAR_BODY] + under_icon = GLOB.default_onmob_icons[WEAR_BODY] var/check_worn_state = "[worn_state]_d[contained_sprite ? "_un" : ""]" if(!(check_worn_state in icon_states(under_icon))) @@ -292,7 +292,7 @@ else if(LAZYISIN(item_icons, WEAR_BODY)) under_icon = item_icons[WEAR_BODY] else - under_icon = default_onmob_icons[WEAR_BODY] + under_icon = GLOB.default_onmob_icons[WEAR_BODY] var/check_worn_state = "[worn_state]_dj[contained_sprite ? "_un" : ""]" if(!(check_worn_state in icon_states(under_icon))) @@ -326,7 +326,7 @@ return update_rollsuit_status() //we need the _d version of the sprite anyways. In the future we might need to make a different version of the sprite to accomodate for rolling sleeves and hoods. if(user.head && !istype(user.head, hood_state)) - to_chat(user, SPAN_WARNING("You can't wear a hood while also wearing the [user.head]!")) + to_chat(user, SPAN_WARNING("You can't wear a hood while also wearing [user.head]!")) return if(!HAS_TRAIT(src, TRAIT_CLOTHING_HOOD)) diff --git a/code/modules/cm_aliens/XenoStructures.dm b/code/modules/cm_aliens/XenoStructures.dm index d2ccd0cdea..edc480d667 100644 --- a/code/modules/cm_aliens/XenoStructures.dm +++ b/code/modules/cm_aliens/XenoStructures.dm @@ -88,13 +88,18 @@ else M.animation_attack_on(src) M.visible_message(SPAN_XENONOTICE("\The [M] claws \the [src]!"), \ - SPAN_XENONOTICE("You claw \the [src].")) + SPAN_XENONOTICE("We claw \the [src].")) if(istype(src, /obj/effect/alien/resin/sticky)) playsound(loc, "alien_resin_move", 25) else playsound(loc, "alien_resin_break", 25) - health -= (M.melee_damage_upper + 50) //Beef up the damage a bit + var/damage_to_structure = M.melee_damage_upper + XENO_DAMAGE_TIER_7 + // Builders can destroy beefy things in maximum 5 hits + if(isxeno_builder(M)) + health -= max(initial(health) * 0.2, damage_to_structure) + else + health -= damage_to_structure healthcheck() return XENO_ATTACK_ACTION @@ -113,7 +118,7 @@ /obj/effect/alien/resin/attackby(obj/item/W, mob/user) if(!(W.flags_item & NOBLUDGEON)) - var/damage = W.force * RESIN_MELEE_DAMAGE_MULTIPLIER + var/damage = W.force * W.demolition_mod * RESIN_MELEE_DAMAGE_MULTIPLIER health -= damage if(istype(src, /obj/effect/alien/resin/sticky)) playsound(loc, "alien_resin_move", 25) @@ -160,13 +165,12 @@ /obj/effect/alien/resin/sticky/Crossed(atom/movable/AM) . = ..() var/mob/living/carbon/human/H = AM - // Wait doesn't this stack slows if you get dragged over it? What's going on here? if(istype(H) && !H.ally_of_hivenumber(hivenumber)) - H.next_move_slowdown = H.next_move_slowdown + slow_amt + H.next_move_slowdown = max(H.next_move_slowdown, slow_amt) return . var/mob/living/carbon/xenomorph/X = AM if(istype(X) && !X.ally_of_hivenumber(hivenumber)) - X.next_move_slowdown = X.next_move_slowdown + slow_amt + X.next_move_slowdown = max(X.next_move_slowdown, slow_amt) return . /obj/effect/alien/resin/sticky/proc/forsaken_handling() @@ -203,7 +207,7 @@ if (hive) hivenumber = hive set_hive_data(src, hivenumber) - setDir(pick(alldirs)) + setDir(pick(GLOB.alldirs)) if(hivenumber == XENO_HIVE_NORMAL) RegisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING, PROC_REF(forsaken_handling)) @@ -387,7 +391,7 @@ return // defer to item afterattack if(!(W.flags_item & NOBLUDGEON) && W.force) user.animation_attack_on(src) - health -= W.force*RESIN_MELEE_DAMAGE_MULTIPLIER + health -= W.force * RESIN_MELEE_DAMAGE_MULTIPLIER * W.demolition_mod to_chat(user, "You hit the [name] with your [W.name]!") playsound(loc, "alien_resin_move", 25) healthcheck() @@ -463,7 +467,7 @@ var/turf/U = loc spawn(0) var/turf/T - for(var/i in cardinal) + for(var/i in GLOB.cardinals) T = get_step(U, i) if(!istype(T)) continue for(var/obj/structure/mineral_door/resin/R in T) @@ -496,7 +500,7 @@ //do we still have something next to us to support us? /obj/structure/mineral_door/resin/proc/check_resin_support() var/turf/T - for(var/i in cardinal) + for(var/i in GLOB.cardinals) T = get_step(src, i) if(!T) continue @@ -574,11 +578,14 @@ if(current_mob.stat == DEAD) return FALSE + if(HAS_TRAIT(current_mob, TRAIT_NESTED)) + return FALSE + var/turf/current_turf var/turf/last_turf = loc var/atom/temp_atom = new acid_type() var/current_pos = 1 - for(var/i in getline(src, current_mob)) + for(var/i in get_line(src, current_mob)) current_turf = i if(LinkBlocked(temp_atom, last_turf, current_turf)) qdel(temp_atom) @@ -781,7 +788,7 @@ /obj/effect/alien/resin/resin_pillar/proc/brittle() //playsound(granite cracking) - visible_message(SPAN_DANGER("You hear cracking sounds from the [src] as splinters start falling off from the structure! It seems brittle now.")) + visible_message(SPAN_DANGER("You hear cracking sounds from [src] as splinters start falling off from the structure! It seems brittle now.")) health = vulnerable_health for(var/i in walls) var/turf/closed/wall/T = i @@ -814,7 +821,7 @@ /obj/effect/alien/resin/resin_pillar/hitby(atom/movable/AM) if(!brittle) - visible_message(SPAN_DANGER("[AM] harmlessly bounces off the [src]!")) + visible_message(SPAN_DANGER("[AM] harmlessly bounces off [src]!")) return return ..() @@ -950,9 +957,9 @@ // If the cell is the epicenter, propagate in all directions if(isnull(direction)) - return alldirs + return GLOB.alldirs - if(direction in cardinal) + if(direction in GLOB.cardinals) . += list(direction, turn(direction, 45), turn(direction, -45)) else . += direction @@ -986,7 +993,7 @@ // Set the direction the explosion is traveling in E.direction = dir - if(dir in diagonals) + if(dir in GLOB.diagonals) E.range-- switch(E.range) diff --git a/code/modules/cm_aliens/structures/construction_node.dm b/code/modules/cm_aliens/structures/construction_node.dm index 0fdcd5c5c6..dbc4fcb0d9 100644 --- a/code/modules/cm_aliens/structures/construction_node.dm +++ b/code/modules/cm_aliens/structures/construction_node.dm @@ -22,8 +22,7 @@ color = linked_hive.color /obj/effect/alien/resin/construction/Destroy() - if(template && linked_hive && (template.crystals_stored < template.crystals_required)) - linked_hive.crystal_stored += template.crystals_stored + if(template && linked_hive && (template.plasma_stored < template.plasma_required)) linked_hive.remove_construction(src) template = null linked_hive = null @@ -42,7 +41,7 @@ /obj/effect/alien/resin/construction/get_examine_text(mob/user) . = ..() if((isxeno(user) || isobserver(user)) && linked_hive) - var/message = "A [template.name] construction is designated here. It requires [template.crystals_required - template.crystals_stored] more [MATERIAL_CRYSTAL]." + var/message = "A [template.name] construction is designated here. It requires [template.plasma_required - template.plasma_stored] more plasma." . += message /obj/effect/alien/resin/construction/attack_alien(mob/living/carbon/xenomorph/M) diff --git a/code/modules/cm_aliens/structures/egg.dm b/code/modules/cm_aliens/structures/egg.dm index 9a5bc8b932..b3f59c0419 100644 --- a/code/modules/cm_aliens/structures/egg.dm +++ b/code/modules/cm_aliens/structures/egg.dm @@ -23,10 +23,21 @@ if (hive) hivenumber = hive + if(hivenumber == XENO_HIVE_NORMAL) + RegisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING, PROC_REF(forsaken_handling)) + set_hive_data(src, hivenumber) update_icon() addtimer(CALLBACK(src, PROC_REF(Grow)), rand(EGG_MIN_GROWTH_TIME, EGG_MAX_GROWTH_TIME)) +/obj/effect/alien/egg/proc/forsaken_handling() + SIGNAL_HANDLER + if(is_ground_level(z)) + hivenumber = XENO_HIVE_FORSAKEN + set_hive_data(src, XENO_HIVE_FORSAKEN) + + UnregisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) + /obj/effect/alien/egg/Destroy() . = ..() for(var/obj/effect/egg_trigger/trigger as anything in egg_triggers) @@ -44,12 +55,16 @@ . = ..() if(isxeno(user) && status == EGG_GROWN) . += "Ctrl + Click egg to retrieve child into your empty hand if you can carry it." + if(isobserver(user) && status == EGG_GROWN) + var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] + var/current_hugger_count = hive.get_current_playable_facehugger_count(); + . += "There are currently [SPAN_NOTICE("[current_hugger_count]")] facehuggers in the hive. The hive can support a total of [SPAN_NOTICE("[hive.playable_hugger_limit]")] facehuggers at present." /obj/effect/alien/egg/attack_alien(mob/living/carbon/xenomorph/M) if(status == EGG_BURST || status == EGG_DESTROYED) M.animation_attack_on(src) M.visible_message(SPAN_XENONOTICE("[M] clears the hatched egg."), \ - SPAN_XENONOTICE("You clear the hatched egg.")) + SPAN_XENONOTICE("We clear the hatched egg.")) playsound(src.loc, "alien_resin_break", 25) qdel(src) return XENO_NONCOMBAT_ACTION @@ -57,7 +72,7 @@ if(M.hivenumber != hivenumber) M.animation_attack_on(src) M.visible_message(SPAN_XENOWARNING("[M] crushes \the [src]"), - SPAN_XENOWARNING("You crush \the [src]")) + SPAN_XENOWARNING("We crush \the [src]")) Burst(TRUE) return XENO_ATTACK_ACTION @@ -70,9 +85,9 @@ return XENO_NO_DELAY_ACTION if(EGG_GROWN) if(islarva(M)) - to_chat(M, SPAN_XENOWARNING("You nudge the egg, but nothing happens.")) + to_chat(M, SPAN_XENOWARNING("We nudge the egg, but nothing happens.")) return - to_chat(M, SPAN_XENONOTICE("You retrieve the child.")) + to_chat(M, SPAN_XENONOTICE("We retrieve the child.")) Burst(FALSE) return XENO_NONCOMBAT_ACTION @@ -163,7 +178,7 @@ if(EGG_BURST) if(user) visible_message(SPAN_XENOWARNING("[user] slides [F] back into [src]."), \ - SPAN_XENONOTICE("You place the child back in to [src].")) + SPAN_XENONOTICE("We place the child back in to [src].")) user.temp_drop_inv_item(F) else visible_message(SPAN_XENOWARNING("[F] crawls back into [src]!")) //Not sure how, but let's roll with it for now. @@ -273,3 +288,67 @@ linked_egg.HasProximity(C) if(linked_eggmorph) linked_eggmorph.HasProximity(C) + +/* +SPECIAL EGG USED BY EGG CARRIER +*/ + +#define CARRIER_EGG_UNSUSTAINED_LIFE 1 MINUTES +#define CARRIER_EGG_MAXIMUM_LIFE 5 MINUTES + +/obj/effect/alien/egg/carrier_egg + name = "fragile egg" + desc = "It looks like a weird, fragile egg." + ///Owner of the fragile egg, must be a mob/living/carbon/xenomorph/carrier + var/mob/living/carbon/xenomorph/carrier/owner = null + ///Time that the carrier was last within refresh range of the egg (14 tiles) + var/last_refreshed = null + /// Timer holder for the maximum lifetime of the egg as defined CARRIER_EGG_MAXIMUM_LIFE + var/life_timer = null + +/obj/effect/alien/egg/carrier_egg/Initialize(mapload, hivenumber, planter = null) + . = ..() + last_refreshed = world.time + if(!planter) + //If we have no owner when created... this really shouldn't happen but start decaying the egg immediately. + start_unstoppable_decay() + else + //Die after maximum lifetime + life_timer = addtimer(CALLBACK(src, PROC_REF(start_unstoppable_decay)), CARRIER_EGG_MAXIMUM_LIFE, TIMER_STOPPABLE) + set_owner(planter) + +/obj/effect/alien/egg/carrier_egg/Destroy() + if(life_timer) + deltimer(life_timer) + //Remove reference to src in owner's behavior_delegate and set owner to null + if(owner) + var/mob/living/carbon/xenomorph/carrier/my_owner = owner + var/datum/behavior_delegate/carrier_eggsac/behavior = my_owner.behavior_delegate + behavior.eggs_sustained -= src + my_owner = null + return ..() + +/// Set the owner of the egg to the planter. +/obj/effect/alien/egg/carrier_egg/proc/set_owner(mob/living/carbon/xenomorph/carrier/planter) + var/datum/behavior_delegate/carrier_eggsac/my_delegate = planter.behavior_delegate + my_delegate.eggs_sustained += src + owner = planter + +///Check the last refreshed time and burst the egg if we're over the lifetime of the egg +/obj/effect/alien/egg/carrier_egg/proc/check_decay() + if(last_refreshed + CARRIER_EGG_UNSUSTAINED_LIFE < world.time) + start_unstoppable_decay() + +///Burst the egg without hugger release after a 10 second timer & remove the life timer. +/obj/effect/alien/egg/carrier_egg/proc/start_unstoppable_decay() + addtimer(CALLBACK(src, PROC_REF(Burst), TRUE), 10 SECONDS) + if(life_timer) + deltimer(life_timer) + +/obj/effect/alien/egg/carrier_egg/Burst(kill, instant_trigger, mob/living/carbon/xenomorph/X, is_hugger_player_controlled) + . = ..() + if(owner) + var/datum/behavior_delegate/carrier_eggsac/behavior = owner.behavior_delegate + behavior.remove_egg_owner(src) + if(life_timer) + deltimer(life_timer) diff --git a/code/modules/cm_aliens/structures/fruit.dm b/code/modules/cm_aliens/structures/fruit.dm index 09983c9300..b2a0fd27d6 100644 --- a/code/modules/cm_aliens/structures/fruit.dm +++ b/code/modules/cm_aliens/structures/fruit.dm @@ -93,22 +93,6 @@ qdel(src) . = ..() -/obj/effect/alien/resin/fruit/proc/delete_fruit() - //Notify and update the xeno count - if(!QDELETED(bound_xeno)) - if(!picked) - to_chat(bound_xeno, SPAN_XENOWARNING("You sense one of your fruit has been destroyed.")) - bound_xeno.current_fruits.Remove(src) - var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) - prf.update_button_icon() - - if(picked) // No need to update the number, since the fruit still exists (just as a different item) - return - var/number_of_fruit = length(bound_xeno.current_fruits) - prf.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) - prf.update_button_icon() - bound_xeno = null - /obj/effect/alien/resin/fruit/proc/reduce_timer(maturity_increase) if (mature || timer_id == TIMER_ID_NULL) return @@ -139,16 +123,20 @@ /obj/effect/alien/resin/fruit/proc/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature) // Someone might've eaten it before us! recipient.gain_health(75) - to_chat(recipient, SPAN_XENONOTICE("You recover a bit from your injuries.")) + to_chat(recipient, SPAN_XENONOTICE("We recover a bit from our injuries.")) if(do_consume) finish_consume(recipient) /obj/effect/alien/resin/fruit/proc/finish_consume(mob/living/carbon/xenomorph/recipient) playsound(loc, 'sound/voice/alien_drool1.ogg', 50, 1) mature = FALSE + picked = TRUE + recipient.clear_debuffs() // all froots clear debuffs icon_state = consumed_icon_state update_icon() - QDEL_IN(src, 3 SECONDS) + if(!QDELETED(bound_xeno)) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("One of our picked resin fruits has been consumed.")) + QDEL_IN(src, 1 SECONDS) /obj/effect/alien/resin/fruit/attack_alien(mob/living/carbon/xenomorph/affected_xeno) if(picked) @@ -161,18 +149,18 @@ return cant_consume if(mature) - to_chat(affected_xeno, SPAN_XENOWARNING("You prepare to consume [name].")) + to_chat(affected_xeno, SPAN_XENOWARNING("We prepare to consume [name].")) xeno_noncombat_delay(affected_xeno) if(!do_after(affected_xeno, consume_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) return XENO_NO_DELAY_ACTION cant_consume = prevent_consume(affected_xeno) // Check again after the delay incase they have eaten another fruit if(cant_consume) - to_chat(affected_xeno, SPAN_XENOWARNING("You can no longer consume [name].")) + to_chat(affected_xeno, SPAN_XENOWARNING("We can no longer consume [name].")) return cant_consume consume_effect(affected_xeno) else - to_chat(affected_xeno, SPAN_XENOWARNING("[name] isn't ripe yet. You need to wait a little longer.")) + to_chat(affected_xeno, SPAN_XENOWARNING("[name] isn't ripe yet. We need to wait a little longer.")) if(affected_xeno.a_intent == INTENT_HARM && isxeno_builder(affected_xeno) || (!affected_xeno.can_not_harm(bound_xeno) && affected_xeno.hivenumber != hivenumber)) affected_xeno.animation_attack_on(src) @@ -185,12 +173,24 @@ /obj/effect/alien/resin/fruit/proc/prevent_consume(mob/living/carbon/xenomorph/xeno) if(!(flags & CAN_CONSUME_AT_FULL_HEALTH) && xeno.health >= xeno.maxHealth) - to_chat(xeno, SPAN_XENODANGER("You are at full health! This would be a waste...")) + to_chat(xeno, SPAN_XENODANGER("We are at full health! This would be a waste...")) return XENO_NO_DELAY_ACTION return FALSE /obj/effect/alien/resin/fruit/Destroy() - delete_fruit() + //Notify and update the xeno count + if(!QDELETED(bound_xeno)) + if(!picked) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We sense one of our fruit has been destroyed.")) + bound_xeno.current_fruits.Remove(src) + + var/number_of_fruit = length(bound_xeno.current_fruits) + var/datum/action/xeno_action/onclick/plant_resin_fruit/plant_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) + plant_action.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) + plant_action.update_button_icon() + + bound_xeno = null + return ..() //Greater @@ -212,7 +212,7 @@ return if(recipient && !QDELETED(recipient)) recipient.gain_health(heal_amount) - to_chat(recipient, SPAN_XENONOTICE("You recover a bit from your injuries, and begin to regenerate rapidly.")) + to_chat(recipient, SPAN_XENONOTICE("We recover a bit from our injuries, and begin to regenerate rapidly.")) // Every second, heal him for 15. new /datum/effects/heal_over_time(recipient, regeneration_amount_total, regeneration_ticks, 1) if(do_consume) @@ -239,8 +239,8 @@ /obj/effect/alien/resin/fruit/unstable/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && !QDELETED(recipient)) - recipient.add_xeno_shield(Clamp(overshield_amount, 0, recipient.maxHealth * 0.3), XENO_SHIELD_SOURCE_GARDENER, duration = shield_duration, decay_amount_per_second = shield_decay) - to_chat(recipient, SPAN_XENONOTICE("You feel your defense being bolstered, and begin to regenerate rapidly.")) + recipient.add_xeno_shield(clamp(overshield_amount, 0, recipient.maxHealth * 0.3), XENO_SHIELD_SOURCE_GARDENER, duration = shield_duration, decay_amount_per_second = shield_decay) + to_chat(recipient, SPAN_XENONOTICE("We feel our defense being bolstered, and begin to regenerate rapidly.")) // Every seconds, heal him for 5. new /datum/effects/heal_over_time(recipient, regeneration_amount_total, regeneration_ticks, 1) if(do_consume) @@ -248,7 +248,7 @@ //Spore /obj/effect/alien/resin/fruit/spore - desc = "A fruit that can be eaten to reenergize your cooldowns. It also passively emits weak recovery pheromones." + desc = "A fruit that can be eaten to reenergize cooldowns. It also passively emits weak recovery pheromones." name = XENO_FRUIT_SPORE time_to_mature = 15 SECONDS icon_state = "fruit_spore_immature" @@ -270,7 +270,7 @@ if(E.effect_source == "spore") qdel(E) new /datum/effects/gain_xeno_cooldown_reduction_on_slash(recipient, bound_xeno, max_cooldown_reduction, cooldown_per_slash, 60 SECONDS, "spore") - to_chat(recipient, SPAN_XENONOTICE("You feel a frenzy coming onto you! Your abilities will cool off faster as you slash!")) + to_chat(recipient, SPAN_XENONOTICE("We feel a frenzy coming onto us! Our abilities will cool off faster as we slash!")) if(do_consume) finish_consume(recipient) @@ -278,9 +278,9 @@ ..() START_PROCESSING(SSobj, src) -/obj/effect/alien/resin/fruit/spore/delete_fruit() +/obj/effect/alien/resin/fruit/spore/Destroy() STOP_PROCESSING(SSobj, src) - ..() + return ..() /obj/effect/alien/resin/fruit/spore/process() if(mature) @@ -306,20 +306,20 @@ /obj/effect/alien/resin/fruit/speed/prevent_consume(mob/living/carbon/xenomorph/xeno) if(LAZYISIN(xeno.modifier_sources, XENO_FRUIT_SPEED)) - to_chat(xeno, SPAN_XENOWARNING("You're already under the effects of this fruit, go out and kill!")) + to_chat(xeno, SPAN_XENOWARNING("We are already under the effects of this fruit, go out and kill!")) return XENO_NO_DELAY_ACTION return ..() /obj/effect/alien/resin/fruit/speed/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && !QDELETED(recipient)) - to_chat(recipient, SPAN_XENONOTICE("The [name] invigorates you to move faster!")) - new /datum/effects/xeno_speed(recipient, ttl = speed_duration, set_speed_modifier = speed_buff_amount, set_modifier_source = XENO_FRUIT_SPEED, set_end_message = SPAN_XENONOTICE("You feel the effects of the [name] wane...")) + to_chat(recipient, SPAN_XENONOTICE("The [name] invigorates us to move faster!")) + new /datum/effects/xeno_speed(recipient, ttl = speed_duration, set_speed_modifier = speed_buff_amount, set_modifier_source = XENO_FRUIT_SPEED, set_end_message = SPAN_XENONOTICE("We feel the effects of the [name] wane...")) if(do_consume) finish_consume(recipient) /obj/effect/alien/resin/fruit/plasma name = XENO_FRUIT_PLASMA - desc = "A fruit that can be eaten to boost your plasma generation." + desc = "A fruit that can be eaten to boost plasma generation." time_to_mature = 25 SECONDS icon_state = "fruit_plasma_immature" mature_icon_state = "fruit_plasma" @@ -333,7 +333,7 @@ /obj/effect/alien/resin/fruit/plasma/consume_effect(mob/living/carbon/xenomorph/recipient, do_consume = TRUE) if(mature && recipient && recipient.plasma_max > 0 && !QDELETED(recipient)) - to_chat(recipient, SPAN_XENONOTICE("The [name] boosts your plasma regeneration!")) + to_chat(recipient, SPAN_XENONOTICE("The [name] boosts our plasma regeneration!")) // with the current values (240, 15, 3), this will give the recipient 48 plasma every 3 seconds, for a total of 240 in 15 seconds new /datum/effects/plasma_over_time(recipient, plasma_amount, plasma_time, time_between_plasmas) if(do_consume) @@ -360,7 +360,7 @@ pixel_y = 0 /obj/item/reagent_container/food/snacks/resin_fruit/proc/link_xeno(mob/living/carbon/xenomorph/X) - to_chat(X, SPAN_XENOWARNING("One of your resin fruits has been picked.")) + to_chat(X, SPAN_XENOHIGHDANGER("One of our resin fruits has been picked.")) X.current_fruits.Add(src) bound_xeno = X RegisterSignal(X, COMSIG_PARENT_QDELETING, PROC_REF(handle_xeno_qdel)) @@ -377,7 +377,7 @@ /obj/item/reagent_container/food/snacks/resin_fruit/proc/delete_fruit() if(bound_xeno) bound_xeno.current_fruits.Remove(src) - var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) + var/datum/action/xeno_action/onclick/plant_resin_fruit/prf = get_action(bound_xeno, /datum/action/xeno_action/onclick/plant_resin_fruit) var/number_of_fruit = length(bound_xeno.current_fruits) prf.button.set_maptext(SMALL_FONTS_COLOR(7, number_of_fruit, "#e69d00"), 19, 2) prf.update_button_icon() @@ -403,7 +403,8 @@ if(cant_consume) user.affected_message(affected_xeno, SPAN_HELPFUL("You fail to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]."), - SPAN_HELPFUL("[user] fails to feed you [current_fruit].")) + SPAN_HELPFUL("[user] fails to feed you [current_fruit]."), + SPAN_NOTICE("[user] fails to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit].")) return user.affected_message(affected_xeno, SPAN_HELPFUL("You start [user == affected_xeno ? "eating" : "feeding [affected_xeno]"] [current_fruit]."), @@ -417,7 +418,8 @@ if(cant_consume) //Check again after the timer incase they ate another fruit user.affected_message(affected_xeno, SPAN_HELPFUL("You fail to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit]."), - SPAN_HELPFUL("[user] fails to feed you [current_fruit].")) + SPAN_HELPFUL("[user] fails to feed you [current_fruit]."), + SPAN_NOTICE("[user] fails to [user == affected_xeno ? "eat" : "feed [affected_xeno]"] [current_fruit].")) return user.affected_message(affected_xeno, @@ -429,7 +431,7 @@ //Notify the fruit's bound xeno if they exist if(!QDELETED(bound_xeno)) - to_chat(bound_xeno, SPAN_XENOWARNING("One of your picked resin fruits has been consumed.")) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("One of our picked resin fruits has been consumed.")) qdel(src) return TRUE @@ -449,7 +451,7 @@ /mob/living/carbon/xenomorph/proc/pickup_fruit(obj/effect/alien/resin/fruit/F) if(F.bound_xeno && !can_not_harm(F.bound_xeno)) - to_chat(src, SPAN_XENODANGER("You crush [F].")) + to_chat(src, SPAN_XENODANGER("We crush [F].")) qdel(F) return if(!F.mature) @@ -476,11 +478,11 @@ qdel(F) /mob/living/carbon/xenomorph/larva/pickup_fruit(obj/effect/alien/resin/fruit/F) - to_chat(src, SPAN_XENODANGER("You are too small to pick up \the [F]!")) + to_chat(src, SPAN_XENODANGER("We are too small to pick up \the [F]!")) return /mob/living/carbon/xenomorph/facehugger/pickup_fruit(obj/effect/alien/resin/fruit/F) - to_chat(src, SPAN_XENODANGER("You are too small to pick up \the [F]!")) + to_chat(src, SPAN_XENODANGER("We are too small to pick up \the [F]!")) return /obj/item/reagent_container/food/snacks/resin_fruit/greater diff --git a/code/modules/cm_aliens/structures/special/egg_morpher.dm b/code/modules/cm_aliens/structures/special/egg_morpher.dm index e8040f81ba..ac501bb5c9 100644 --- a/code/modules/cm_aliens/structures/special/egg_morpher.dm +++ b/code/modules/cm_aliens/structures/special/egg_morpher.dm @@ -44,6 +44,9 @@ . = ..() if(isxeno(user) || isobserver(user)) . += "It has [stored_huggers] facehuggers within, with [huggers_to_grow] more to grow (reserved: [huggers_reserved])." + if(isobserver(user)) + var/current_hugger_count = linked_hive.get_current_playable_facehugger_count(); + . += "There are currently [SPAN_NOTICE("[current_hugger_count]")] facehuggers in the hive. The hive can support a total of [SPAN_NOTICE("[linked_hive.playable_hugger_limit]")] facehuggers at present." /obj/effect/alien/resin/special/eggmorph/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/grab)) @@ -147,7 +150,7 @@ if(isitem(A)) var/obj/item/item = A if(item.is_objective && item.unacidable) - item.forceMove(get_step(loc, pick(alldirs))) + item.forceMove(get_step(loc, pick(GLOB.alldirs))) item.mouse_opacity = initial(item.mouse_opacity) QDEL_NULL(captured_mob) @@ -190,7 +193,8 @@ if(stored_huggers) to_chat(M, SPAN_XENONOTICE("You retrieve a child.")) stored_huggers = max(0, stored_huggers - 1) - new /obj/item/clothing/mask/facehugger(loc, linked_hive.hivenumber) + var/obj/item/clothing/mask/facehugger/hugger = new(loc, linked_hive.hivenumber) + SEND_SIGNAL(M, COMSIG_XENO_TAKE_HUGGER_FROM_MORPHER, hugger) return XENO_NONCOMBAT_ACTION ..() diff --git a/code/modules/cm_aliens/structures/special/hive_cluster.dm b/code/modules/cm_aliens/structures/special/hive_cluster.dm index 6ebcb70493..266748a96c 100644 --- a/code/modules/cm_aliens/structures/special/hive_cluster.dm +++ b/code/modules/cm_aliens/structures/special/hive_cluster.dm @@ -51,7 +51,7 @@ to_chat(xeno, SPAN_XENONOTICE("\The [name] is in good condition, you don't need to repair it.")) return - to_chat(xeno, SPAN_XENONOTICE("You begin adding the plasma to \the [name] to repair it.")) + to_chat(xeno, SPAN_XENONOTICE("We begin adding the plasma to \the [name] to repair it.")) xeno_attack_delay(xeno) if(!do_after(xeno, CLUSTER_REPAIR_TIME, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src) || !can_repair) return @@ -77,7 +77,7 @@ continue addtimer(CALLBACK(W, TYPE_PROC_REF(/obj/effect/alien/weeds, weed_expand), node), CLUSTER_WEEDS_REGROWTH_TIME, TIMER_UNIQUE) - to_chat(xeno, SPAN_XENONOTICE("You have successfully repaired \the [name].")) + to_chat(xeno, SPAN_XENONOTICE("We have successfully repaired \the [name].")) playsound(loc, "alien_resin_build", 25) /obj/effect/alien/resin/special/cluster/proc/place_node() diff --git a/code/modules/cm_aliens/structures/special/pylon_core.dm b/code/modules/cm_aliens/structures/special/pylon_core.dm index a7cb15a31c..6276215cf0 100644 --- a/code/modules/cm_aliens/structures/special/pylon_core.dm +++ b/code/modules/cm_aliens/structures/special/pylon_core.dm @@ -32,7 +32,7 @@ . = ..() node = place_node() - for(var/turf/A in range(round(cover_range*PYLON_COVERAGE_MULT), loc)) + for(var/turf/A as anything in RANGE_TURFS(floor(cover_range*PYLON_COVERAGE_MULT), loc)) LAZYADD(A.linked_pylons, src) linked_turfs += A @@ -62,12 +62,15 @@ /obj/effect/alien/resin/special/pylon/get_examine_text(mob/user) . = ..() + if(!isobserver(user) && !isxeno(user)) + return + var/lesser_count = 0 for(var/mob/living/carbon/xenomorph/lesser_drone/lesser in linked_hive.totalXenos) lesser_count++ - . += "Currently holding [SPAN_NOTICE("[Floor(lesser_drone_spawns)]")]/[SPAN_NOTICE("[lesser_drone_spawn_limit]")] lesser drones." - . += "There are currently [SPAN_NOTICE("[lesser_count]")] lesser drones in the hive. The hive can support [SPAN_NOTICE("[linked_hive.lesser_drone_limit]")] lesser drones." + . += "Currently holding [SPAN_NOTICE("[floor(lesser_drone_spawns)]")]/[SPAN_NOTICE("[lesser_drone_spawn_limit]")] lesser drones." + . += "There are currently [SPAN_NOTICE("[lesser_count]")] lesser drones in the hive. The hive can support a total of [SPAN_NOTICE("[linked_hive.lesser_drone_limit]")] lesser drones at present." /obj/effect/alien/resin/special/pylon/attack_ghost(mob/dead/observer/user) . = ..() @@ -83,7 +86,7 @@ to_chat(xeno, SPAN_XENONOTICE("\The [name] is in good condition, you don't need to repair it.")) return - to_chat(xeno, SPAN_XENONOTICE("You begin adding the plasma to \the [name] to repair it.")) + to_chat(xeno, SPAN_XENONOTICE("We begin adding the plasma to \the [name] to repair it.")) xeno_attack_delay(xeno) if(!do_after(xeno, PYLON_REPAIR_TIME, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD, src) || !can_repair) return @@ -110,7 +113,7 @@ continue addtimer(CALLBACK(W, TYPE_PROC_REF(/obj/effect/alien/weeds, weed_expand), N), PYLON_WEEDS_REGROWTH_TIME, TIMER_UNIQUE) - to_chat(xeno, SPAN_XENONOTICE("You have successfully repaired \the [name].")) + to_chat(xeno, SPAN_XENONOTICE("We have successfully repaired \the [name].")) playsound(loc, "alien_resin_build", 25) /obj/effect/alien/resin/special/pylon/proc/place_node() @@ -159,7 +162,7 @@ xeno_announcement(SPAN_XENOANNOUNCE("We have lost our control of the tall's communication relay at [get_area(src)]."), hivenumber, XENO_GENERAL_ANNOUNCE) else xeno_announcement(SPAN_XENOANNOUNCE("Another hive has lost control of the tall's communication relay at [get_area(src)]."), hivenumber, XENO_GENERAL_ANNOUNCE) - + linked_hive.hive_ui.update_pylon_status() return ..() /// Checks if all comms towers are connected and then starts end game content on all pylons if they are @@ -172,16 +175,14 @@ continue if(checked_hive == linked_hive) - xeno_announcement(SPAN_XENOANNOUNCE("We have harnessed the tall's communication relay at [get_area(src)].\n\nWe will now grow more of our number from this pylon. Hold it!"), hivenumber, XENO_GENERAL_ANNOUNCE) + xeno_announcement(SPAN_XENOANNOUNCE("We have harnessed the tall's communication relay at [get_area(src)].\n\nWe will now grow our numbers from this pylon. Hold it!"), hivenumber, XENO_GENERAL_ANNOUNCE) else xeno_announcement(SPAN_XENOANNOUNCE("Another hive has harnessed the tall's communication relay at [get_area(src)].[linked_hive.faction_is_ally(checked_hive.name) ? "" : " Stop them!"]"), hivenumber, XENO_GENERAL_ANNOUNCE) activated = TRUE + linked_hive.check_if_hit_larva_from_pylon_limit() addtimer(CALLBACK(src, PROC_REF(give_larva)), XENO_PYLON_ACTIVATION_COOLDOWN, TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_LOOP|TIMER_DELETE_ME) -#define ENDGAME_LARVA_CAP_MULTIPLIER 0.4 -#define LARVA_ADDITION_MULTIPLIER 0.10 - /// Looped proc via timer to give larva after time /obj/effect/alien/resin/special/pylon/endgame/proc/give_larva() if(!activated) @@ -190,24 +191,13 @@ if(!linked_hive.hive_location || !linked_hive.living_xeno_queen) return - var/list/hive_xenos = linked_hive.totalXenos - - for(var/mob/living/carbon/xenomorph/xeno in hive_xenos) - if(!xeno.counts_for_slots) - hive_xenos -= xeno - - var/real_total_xeno_count = length(hive_xenos) + linked_hive.stored_larva - - if(real_total_xeno_count > (length(GLOB.alive_human_list) * ENDGAME_LARVA_CAP_MULTIPLIER)) + if(linked_hive.check_if_hit_larva_from_pylon_limit()) return - linked_hive.partial_larva += real_total_xeno_count * LARVA_ADDITION_MULTIPLIER + linked_hive.partial_larva += (linked_hive.get_real_total_xeno_count() + linked_hive.stored_larva) * LARVA_ADDITION_MULTIPLIER linked_hive.convert_partial_larva_to_full_larva() linked_hive.hive_ui.update_burrowed_larva() -#undef ENDGAME_LARVA_CAP_MULTIPLIER -#undef LARVA_ADDITION_MULTIPLIER - //Hive Core - Generates strong weeds, supports other buildings /obj/effect/alien/resin/special/pylon/core name = XENO_STRUCTURE_CORE @@ -291,7 +281,7 @@ surge_cooldown = surge_cooldown - surge_incremental_reduction //ramps up over time if(linked_hive.hijack_burrowed_left < 1) linked_hive.hijack_burrowed_surge = FALSE - xeno_message(SPAN_XENOANNOUNCE("The hive's power wanes. You will no longer gain pooled larva over time."), 3, linked_hive.hivenumber) + xeno_message(SPAN_XENOANNOUNCE("The hive's power wanes. We will no longer gain pooled larva over time."), 3, linked_hive.hivenumber) // Hive core can repair itself over time if(health < maxhealth && last_healed <= world.time) @@ -311,7 +301,7 @@ return FALSE new_xeno.visible_message(SPAN_XENODANGER("A larva suddenly emerges from [src]!"), - SPAN_XENODANGER("You emerge from [src] and awaken from your slumber. For the Hive!")) + SPAN_XENODANGER("We emerge from [src] and awaken from our slumber. For the Hive!")) msg_admin_niche("[key_name(new_xeno)] emerged from \a [src]. [ADMIN_JMP(src)]") playsound(new_xeno, 'sound/effects/xeno_newlarva.ogg', 50, 1) if(!SSticker.mode.transfer_xeno(xeno_candidate, new_xeno)) @@ -374,18 +364,18 @@ /obj/effect/alien/resin/special/pylon/core/attack_alien(mob/living/carbon/xenomorph/M) if(M.a_intent != INTENT_HELP && M.can_destroy_special() && M.hivenumber == linked_hive.hivenumber) if(!hardcore && last_attempt + 6 SECONDS > world.time) - to_chat(M,SPAN_WARNING("You have attempted to destroy \the [src] too recently! Wait a bit!")) // no spammy + to_chat(M,SPAN_WARNING("We have attempted to destroy \the [src] too recently! Wait a bit!")) // no spammy return XENO_NO_DELAY_ACTION else if(warn && world.time > XENOMORPH_PRE_SETUP_CUTOFF) - if((alert(M, "Are you sure that you want to destroy the hive core? (There will be a 5 minute cooldown before you can build another one.)", , "Yes", "No") != "Yes")) + if((alert(M, "Are we sure that you want to destroy the hive core? (There will be a 5 minute cooldown before you can build another one.)", , "Yes", "No") != "Yes")) return XENO_NO_DELAY_ACTION INVOKE_ASYNC(src, PROC_REF(startDestroying),M) return XENO_NO_DELAY_ACTION else if(world.time < XENOMORPH_PRE_SETUP_CUTOFF) - if((alert(M, "Are you sure that you want to remove the hive core? No cooldown will be applied.", , "Yes", "No") != "Yes")) + if((alert(M, "Are we sure that we want to remove the hive core? No cooldown will be applied.", , "Yes", "No") != "Yes")) return XENO_NO_DELAY_ACTION INVOKE_ASYNC(src, PROC_REF(startDestroying),M) @@ -413,16 +403,15 @@ linked_hive.hivecore_cooldown = TRUE INVOKE_ASYNC(src, PROC_REF(cooldownFinish),linked_hive) // start cooldown if(hardcore) - xeno_message(SPAN_XENOANNOUNCE("You can no longer gain new sisters or another Queen. Additionally, you are unable to heal if your Queen is dead"), 2, linked_hive.hivenumber) + xeno_message(SPAN_XENOANNOUNCE("We can no longer gain new sisters or another Queen. Additionally, we are unable to heal if our Queen is dead"), 2, linked_hive.hivenumber) linked_hive.hardcore = TRUE linked_hive.allow_queen_evolve = FALSE linked_hive.hive_structures_limit[XENO_STRUCTURE_CORE] = 0 - linked_hive.hive_structures_limit[XENO_STRUCTURE_POOL] = 0 xeno_announcement("\The [linked_hive.name] has lost their hive core!", "everything", HIGHER_FORCE_ANNOUNCE) if(linked_hive.hijack_burrowed_surge) - visible_message(SPAN_XENODANGER("You hear something resembling a scream from [src] as it's destroyed!")) - xeno_message(SPAN_XENOANNOUNCE("Psychic pain storms throughout the hive as [src] is destroyed! You will no longer gain burrowed larva over time."), 3, linked_hive.hivenumber) + visible_message(SPAN_XENODANGER("We hear something resembling a scream from [src] as it's destroyed!")) + xeno_message(SPAN_XENOANNOUNCE("Psychic pain storms throughout the hive as [src] is destroyed! We will no longer gain burrowed larva over time."), 3, linked_hive.hivenumber) linked_hive.hijack_burrowed_surge = FALSE SSminimaps.remove_marker(src) diff --git a/code/modules/cm_aliens/structures/special/recovery_node.dm b/code/modules/cm_aliens/structures/special/recovery_node.dm index a0d01bab89..a2af2c41ac 100644 --- a/code/modules/cm_aliens/structures/special/recovery_node.dm +++ b/code/modules/cm_aliens/structures/special/recovery_node.dm @@ -5,7 +5,7 @@ desc = "A warm, soothing light source that pulsates with a faint hum." icon_state = "recovery" health = 400 - var/heal_amount = 10 + var/heal_amount = 20 var/heal_cooldown = 5 SECONDS var/last_healed @@ -23,7 +23,7 @@ continue heal_candidates += X last_healed = world.time - if(!heal_candidates.len) + if(!length(heal_candidates)) return var/mob/living/carbon/xenomorph/picked_candidate = pick(heal_candidates) picked_candidate.visible_message(SPAN_HELPFUL("\The [picked_candidate] glows as a warm aura envelops them."), \ diff --git a/code/modules/cm_aliens/structures/special_structure.dm b/code/modules/cm_aliens/structures/special_structure.dm index 8378d93e1a..83ca095471 100644 --- a/code/modules/cm_aliens/structures/special_structure.dm +++ b/code/modules/cm_aliens/structures/special_structure.dm @@ -1,26 +1,6 @@ /* * Special Structures */ - -/proc/get_xeno_structure_desc(name) - var/message - switch(name) - if(XENO_STRUCTURE_CORE) - message = "[XENO_STRUCTURE_CORE] - Heart of the hive, grows hive weeds (which are necessary for other structures), stores resources and protects the hive from skyfire." - if(XENO_STRUCTURE_PYLON) - message = "[XENO_STRUCTURE_PYLON] - Remote section of the hive, grows hive weeds (which are necessary for other structures), stores resources and protects sisters from skyfire." - if(XENO_STRUCTURE_POOL) - message = "[XENO_STRUCTURE_POOL] - Respawns xenomorphs that fall in battle." - if(XENO_STRUCTURE_EGGMORPH) - message = "[XENO_STRUCTURE_EGGMORPH] - Processes hatched hosts into new eggs." - if(XENO_STRUCTURE_EVOPOD) - message = "[XENO_STRUCTURE_EVOPOD] - Grants an additional 0.2 evolution per tick for all sisters on weeds." - if(XENO_STRUCTURE_RECOVERY) - message = "[XENO_STRUCTURE_RECOVERY] - Hastily recovers the strength of sisters resting around it." - if(XENO_STRUCTURE_NEST) - message = "[XENO_STRUCTURE_NEST] - Strong enough to secure a headhunter for indeterminate durations." - return message - /obj/effect/alien/resin/special name = "Special Resin Structure" icon = 'icons/mob/xenos/structures64x64.dmi' diff --git a/code/modules/cm_aliens/structures/trap.dm b/code/modules/cm_aliens/structures/trap.dm index d885e4d14a..297dd5ff2e 100644 --- a/code/modules/cm_aliens/structures/trap.dm +++ b/code/modules/cm_aliens/structures/trap.dm @@ -4,7 +4,7 @@ /obj/effect/alien/resin/trap desc = "It looks like a hiding hole." - name = "resin hole" + name = "resin trap" icon_state = "trap0" density = FALSE opacity = FALSE @@ -12,7 +12,7 @@ health = 5 layer = RESIN_STRUCTURE_LAYER var/list/tripwires = list() - var/hivenumber = XENO_HIVE_NORMAL //Hivenumber of the xeno that planted it OR the last Facehugger that was placed (essentially taking over the hole) + var/hivenumber = XENO_HIVE_NORMAL //Hivenumber of the xeno that planted it OR the last Facehugger that was placed (essentially taking over the trap) var/trap_type = RESIN_TRAP_EMPTY var/armed = 0 var/created_by // ckey @@ -145,7 +145,7 @@ clear_tripwires() for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) if(X.hivenumber == hivenumber) - to_chat(X, SPAN_XENOMINORWARNING("You sense one of your Hive's facehugger traps at [A.name] has been burnt!")) + to_chat(X, SPAN_XENOMINORWARNING("We sense one of our Hive's facehugger traps at [A.name] has been burnt!")) /obj/effect/alien/resin/trap/proc/get_spray_type(level) switch(level) @@ -199,9 +199,9 @@ for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) if(X.hivenumber == hivenumber) if(destroyed) - to_chat(X, SPAN_XENOMINORWARNING("You sense one of your Hive's [trap_type_name] traps at [A.name] has been destroyed!")) + to_chat(X, SPAN_XENOMINORWARNING("We sense one of our Hive's [trap_type_name] traps at [A.name] has been destroyed!")) else - to_chat(X, SPAN_XENOMINORWARNING("You sense one of your Hive's [trap_type_name] traps at [A.name] has been triggered!")) + to_chat(X, SPAN_XENOMINORWARNING("We sense one of our Hive's [trap_type_name] traps at [A.name] has been triggered!")) /obj/effect/alien/resin/trap/proc/clear_tripwires() QDEL_NULL_LIST(tripwires) @@ -247,7 +247,7 @@ to_chat(B, SPAN_XENOWARNING("You must produce more plasma before doing this.")) return XENO_NO_DELAY_ACTION - to_chat(X, SPAN_XENONOTICE("You begin charging the resin hole with acid gas.")) + to_chat(X, SPAN_XENONOTICE("You begin charging the resin trap with acid gas.")) xeno_attack_delay(X) if(!do_after(B, 30, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE, src)) return XENO_NO_DELAY_ACTION @@ -268,8 +268,8 @@ playsound(loc, 'sound/effects/refill.ogg', 25, 1) set_state(RESIN_TRAP_GAS) cause_data = create_cause_data("resin gas trap", B) - B.visible_message(SPAN_XENOWARNING("\The [B] pressurises the resin hole with acid gas!"), \ - SPAN_XENOWARNING("You pressurise the resin hole with acid gas!"), null, 5) + B.visible_message(SPAN_XENOWARNING("\The [B] pressurises the resin trap with acid gas!"), \ + SPAN_XENOWARNING("You pressurise the resin trap with acid gas!"), null, 5) else //Non-boiler acid types var/acid_cost = 70 @@ -282,7 +282,7 @@ to_chat(X, SPAN_XENOWARNING("You must produce more plasma before doing this.")) return XENO_NO_DELAY_ACTION - to_chat(X, SPAN_XENONOTICE("You begin charging the resin hole with acid.")) + to_chat(X, SPAN_XENONOTICE("You begin charging the resin trap with acid.")) xeno_attack_delay(X) if(!do_after(X, 3 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE, src)) return XENO_NO_DELAY_ACTION @@ -300,8 +300,8 @@ else set_state(RESIN_TRAP_ACID1 + X.acid_level - 1) - X.visible_message(SPAN_XENOWARNING("\The [X] pressurises the resin hole with acid!"), \ - SPAN_XENOWARNING("You pressurise the resin hole with acid!"), null, 5) + X.visible_message(SPAN_XENOWARNING("\The [X] pressurises the resin trap with acid!"), \ + SPAN_XENOWARNING("You pressurise the resin trap with acid!"), null, 5) return XENO_NO_DELAY_ACTION @@ -310,15 +310,15 @@ for(var/turf/T in orange(1,loc)) if(T.density) continue - var/obj/effect/hole_tripwire/HT = new /obj/effect/hole_tripwire(T) - HT.linked_trap = src - tripwires += HT + var/obj/effect/trap_tripwire/new_tripwire = new /obj/effect/trap_tripwire(T) + new_tripwire.linked_trap = src + tripwires += new_tripwire /obj/effect/alien/resin/trap/attackby(obj/item/W, mob/user) if(!(istype(W, /obj/item/clothing/mask/facehugger) && isxeno(user))) return ..() if(trap_type != RESIN_TRAP_EMPTY) - to_chat(user, SPAN_XENOWARNING("You can't put a hugger in this hole!")) + to_chat(user, SPAN_XENOWARNING("You can't put a hugger in this trap!")) return var/obj/item/clothing/mask/facehugger/FH = W if(FH.stat == DEAD) @@ -329,7 +329,7 @@ return if (X.hivenumber != hivenumber) - to_chat(user, SPAN_XENOWARNING("This resin hole doesn't belong to your hive!")) + to_chat(user, SPAN_XENOWARNING("This resin trap doesn't belong to your hive!")) return if (FH.hivenumber != hivenumber) @@ -343,31 +343,34 @@ to_chat(user, SPAN_XENONOTICE("You place a facehugger in [src].")) qdel(FH) +/obj/effect/alien/resin/trap/healthcheck() + if(trap_type != RESIN_TRAP_EMPTY && loc) + trigger_trap() + ..() + /obj/effect/alien/resin/trap/Crossed(atom/A) if(ismob(A) || isVehicleMultitile(A)) HasProximity(A) /obj/effect/alien/resin/trap/Destroy() - if(trap_type != RESIN_TRAP_EMPTY && loc) - trigger_trap() QDEL_NULL_LIST(tripwires) . = ..() -/obj/effect/hole_tripwire - name = "hole tripwire" +/obj/effect/trap_tripwire + name = "trap tripwire" anchored = TRUE mouse_opacity = MOUSE_OPACITY_TRANSPARENT invisibility = 101 unacidable = TRUE //You never know var/obj/effect/alien/resin/trap/linked_trap -/obj/effect/hole_tripwire/Destroy() +/obj/effect/trap_tripwire/Destroy() if(linked_trap) linked_trap.tripwires -= src linked_trap = null . = ..() -/obj/effect/hole_tripwire/Crossed(atom/A) +/obj/effect/trap_tripwire/Crossed(atom/A) if(!linked_trap) qdel(src) return diff --git a/code/modules/cm_aliens/structures/tunnel.dm b/code/modules/cm_aliens/structures/tunnel.dm index a8912bc438..d01aaad8df 100644 --- a/code/modules/cm_aliens/structures/tunnel.dm +++ b/code/modules/cm_aliens/structures/tunnel.dm @@ -29,7 +29,7 @@ /obj/structure/tunnel/Initialize(mapload, h_number) . = ..() var/turf/L = get_turf(src) - tunnel_desc = L.loc.name + " ([loc.x], [loc.y]) [pick(greek_letters)]"//Default tunnel desc is the (x, y) + tunnel_desc = L.loc.name + " ([loc.x], [loc.y]) [pick(GLOB.greek_letters)]"//Default tunnel desc is the (x, y) if(h_number && GLOB.hive_datum[h_number]) hivenumber = h_number @@ -48,8 +48,22 @@ if(resin_trap) qdel(resin_trap) + if(hivenumber == XENO_HIVE_NORMAL) + RegisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING, PROC_REF(forsaken_handling)) + SSminimaps.add_marker(src, z, get_minimap_flag_for_faction(hivenumber), "xenotunnel") +/obj/structure/tunnel/proc/forsaken_handling() + SIGNAL_HANDLER + if(is_ground_level(z)) + hive.tunnels -= src + hivenumber = XENO_HIVE_FORSAKEN + set_hive_data(src, XENO_HIVE_FORSAKEN) + hive = GLOB.hive_datum[XENO_HIVE_FORSAKEN] + hive.tunnels += src + + UnregisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) + /obj/structure/tunnel/Destroy() if(hive) hive.tunnels -= src @@ -115,7 +129,7 @@ if(isxeno(usr) && isfriendly(usr) && (usr.loc == src)) pick_tunnel(usr) else - to_chat(usr, "You stare into the dark abyss" + "[contents.len ? ", making out what appears to be two little lights... almost like something is watching." : "."]") + to_chat(usr, "You stare into the dark abyss" + "[length(contents) ? ", making out what appears to be two little lights... almost like something is watching." : "."]") /obj/structure/tunnel/verb/exit_tunnel_verb() set name = "Exit Tunnel" @@ -130,15 +144,17 @@ if(!istype(X) || X.is_mob_incapacitated(TRUE) || !isfriendly(X) || !hive) return FALSE if(X in contents) - var/list/tunnels = list() - for(var/obj/structure/tunnel/T in hive.tunnels) + var/list/input_tunnels = list() + + var/list/sorted_tunnels = sort_list_dist(hive.tunnels, get_turf(X)) + for(var/obj/structure/tunnel/T in sorted_tunnels) if(T == src) continue if(!is_ground_level(T.z)) continue - tunnels += list(T.tunnel_desc = T) - var/pick = tgui_input_list(usr, "Which tunnel would you like to move to?", "Tunnel", tunnels, theme="hive_status") + input_tunnels += list(T.tunnel_desc = T) + var/pick = tgui_input_list(usr, "Which tunnel would you like to move to?", "Tunnel", input_tunnels, theme="hive_status") if(!pick) return FALSE @@ -147,7 +163,7 @@ //No teleporting! return FALSE - to_chat(X, SPAN_XENONOTICE("You begin moving to your destination.")) + to_chat(X, SPAN_XENONOTICE("We begin moving to our destination.")) var/tunnel_time = TUNNEL_MOVEMENT_XENO_DELAY @@ -159,17 +175,17 @@ if(!do_after(X, tunnel_time, INTERRUPT_NO_NEEDHAND, 0)) return FALSE - var/obj/structure/tunnel/T = tunnels[pick] + var/obj/structure/tunnel/T = input_tunnels[pick] - if(T.contents.len > 2)// max 3 xenos in a tunnel + if(length(T.contents) > 2)// max 3 xenos in a tunnel to_chat(X, SPAN_WARNING("The tunnel is too crowded, wait for others to exit!")) return FALSE if(!T.loc) - to_chat(X, SPAN_WARNING("The tunnel has collapsed before you reached its exit!")) + to_chat(X, SPAN_WARNING("The tunnel has collapsed before we reached its exit!")) return FALSE X.forceMove(T) - to_chat(X, SPAN_XENONOTICE("You have reached your destination.")) + to_chat(X, SPAN_XENONOTICE("We have reached our destination.")) return TRUE /obj/structure/tunnel/proc/exit_tunnel(mob/living/carbon/xenomorph/X) @@ -177,7 +193,7 @@ if(X in contents) X.forceMove(loc) visible_message(SPAN_XENONOTICE("\The [X] pops out of the tunnel!"), \ - SPAN_XENONOTICE("You pop out through the other side!")) + SPAN_XENONOTICE("We pop out through the other side!")) return TRUE //Used for controling tunnel exiting and returning @@ -200,15 +216,15 @@ if(!isfriendly(M)) if(M.mob_size < MOB_SIZE_BIG) - to_chat(M, SPAN_XENOWARNING("You aren't large enough to collapse this tunnel!")) + to_chat(M, SPAN_XENOWARNING("We aren't large enough to collapse this tunnel!")) return XENO_NO_DELAY_ACTION M.visible_message(SPAN_XENODANGER("[M] begins to fill [src] with dirt."),\ - SPAN_XENONOTICE("You begin to fill [src] with dirt using your massive claws."), max_distance = 3) + SPAN_XENONOTICE("We begin to fill [src] with dirt using our massive claws."), max_distance = 3) xeno_attack_delay(M) if(!do_after(M, 10 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE, src, INTERRUPT_ALL_OUT_OF_RANGE, max_dist = 1)) - to_chat(M, SPAN_XENOWARNING("You decide not to cave the tunnel in.")) + to_chat(M, SPAN_XENOWARNING("We decide not to cave the tunnel in.")) return XENO_NO_DELAY_ACTION src.visible_message(SPAN_XENODANGER("[src] caves in!"), max_distance = 3) @@ -217,14 +233,14 @@ return XENO_NO_DELAY_ACTION if(M.anchored) - to_chat(M, SPAN_XENOWARNING("You can't climb through a tunnel while immobile.")) + to_chat(M, SPAN_XENOWARNING("We can't climb through a tunnel while immobile.")) return XENO_NO_DELAY_ACTION - if(!hive.tunnels.len) - to_chat(M, SPAN_WARNING("\The [src] doesn't seem to lead anywhere.")) + if(!length(hive.tunnels)) + to_chat(M, SPAN_WARNING("[src] doesn't seem to lead anywhere.")) return XENO_NO_DELAY_ACTION - if(contents.len > 2) + if(length(contents) > 2) to_chat(M, SPAN_WARNING("The tunnel is too crowded, wait for others to exit!")) return XENO_NO_DELAY_ACTION @@ -236,23 +252,23 @@ tunnel_time = TUNNEL_ENTER_LARVA_DELAY if(M.mob_size >= MOB_SIZE_BIG) - M.visible_message(SPAN_XENONOTICE("[M] begins heaving their huge bulk down into \the [src]."), \ - SPAN_XENONOTICE("You begin heaving your monstrous bulk into \the [src].")) + M.visible_message(SPAN_XENONOTICE("[M] begins heaving their huge bulk down into [src]."), + SPAN_XENONOTICE("We begin heaving our monstrous bulk into [src] ([tunnel_desc]).")) else - M.visible_message(SPAN_XENONOTICE("\The [M] begins crawling down into \the [src]."), \ - SPAN_XENONOTICE("You begin crawling down into \the [src].")) + M.visible_message(SPAN_XENONOTICE("[M] begins crawling down into [src]."), + SPAN_XENONOTICE("We begin crawling down into [src] ([tunnel_desc]).")) xeno_attack_delay(M) if(!do_after(M, tunnel_time, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) - to_chat(M, SPAN_WARNING("Your crawling was interrupted!")) + to_chat(M, SPAN_WARNING("Our crawling was interrupted!")) return XENO_NO_DELAY_ACTION - if(hive.tunnels.len) //Make sure other tunnels exist + if(length(hive.tunnels)) //Make sure other tunnels exist M.forceMove(src) //become one with the tunnel to_chat(M, SPAN_HIGHDANGER("Alt + Click the tunnel to exit, Ctrl + Click to choose a destination.")) pick_tunnel(M) else - to_chat(M, SPAN_WARNING("\The [src] ended unexpectedly, so you return back up.")) + to_chat(M, SPAN_WARNING("[src] ended unexpectedly, so we return back up.")) return XENO_NO_DELAY_ACTION /obj/structure/tunnel/proc/animate_crawl(speed = 3, loop_amount = -1, sections = 4) diff --git a/code/modules/cm_aliens/weeds.dm b/code/modules/cm_aliens/weeds.dm index 9d15211f21..0e997b4b4a 100644 --- a/code/modules/cm_aliens/weeds.dm +++ b/code/modules/cm_aliens/weeds.dm @@ -58,9 +58,9 @@ if(spread_on_semiweedable && weed_strength < WEED_LEVEL_HIVE) if(color) var/list/RGB = ReadRGB(color) - RGB[1] = Clamp(RGB[1] + 35, 0, 255) - RGB[2] = Clamp(RGB[2] + 35, 0, 255) - RGB[3] = Clamp(RGB[3] + 35, 0, 255) + RGB[1] = clamp(RGB[1] + 35, 0, 255) + RGB[2] = clamp(RGB[2] + 35, 0, 255) + RGB[3] = clamp(RGB[3] + 35, 0, 255) color = rgb(RGB[1], RGB[2], RGB[3]) else color = "#a1a1a1" @@ -123,7 +123,7 @@ update_icon() /obj/effect/alien/weeds/node/weak - name = "weak resin node" + name = "weak weed node" health = WEED_HEALTH_STANDARD alpha = 127 @@ -186,7 +186,7 @@ SEND_SIGNAL(crossing_mob, COMSIG_MOB_WEED_SLOWDOWN, slowdata, src) var/final_slowdown = slowdata["movement_slowdown"] - crossing_mob.next_move_slowdown += POSITIVE(final_slowdown) + crossing_mob.next_move_slowdown = max(crossing_mob.next_move_slowdown, POSITIVE(final_slowdown)) // Uh oh, we might be dying! // I know this is bad proc naming but it was too good to pass on and it's only used in this file anyways @@ -216,7 +216,7 @@ return var/list/weeds = list() - for(var/dirn in cardinal) + for(var/dirn in GLOB.cardinals) var/turf/T = get_step(src, dirn) if(!istype(T)) continue @@ -282,7 +282,7 @@ if(istype(O, /obj/structure/barricade)) //cades on tile we're trying to expand to var/obj/structure/barricade/to_blocking_cade = O - if(to_blocking_cade.density && to_blocking_cade.dir == reverse_dir[direction] && to_blocking_cade.health >= (to_blocking_cade.maxhealth / 4)) + if(to_blocking_cade.density && to_blocking_cade.dir == GLOB.reverse_dir[direction] && to_blocking_cade.health >= (to_blocking_cade.maxhealth / 4)) return FALSE if(istype(O, /obj/structure/window/framed)) @@ -299,7 +299,7 @@ if(!U) U = loc if(istype(U)) - for(var/dirn in cardinal) + for(var/dirn in GLOB.cardinals) var/turf/T = get_step(U, dirn) if(!istype(T)) @@ -313,7 +313,7 @@ overlays.Cut() var/my_dir = 0 - for(var/check_dir in cardinal) + for(var/check_dir in GLOB.cardinals) var/turf/check = get_step(src, check_dir) if(!istype(check)) @@ -377,7 +377,7 @@ else to_chat(user, SPAN_WARNING("You cut \the [src] away with \the [attacking_item].")) - var/damage = attacking_item.force / 3 + var/damage = (attacking_item.force * attacking_item.demolition_mod) / 3 playsound(loc, "alien_resin_break", 25) if(iswelder(attacking_item)) @@ -469,7 +469,7 @@ /obj/effect/alien/weeds/node - name = "resin node" + name = "weed node" desc = "A weird, pulsating node." icon_state = "weednode" // Weed nodes start out with normal weed health and become stronger once they've stopped spreading @@ -624,7 +624,7 @@ return /obj/effect/alien/weeds/node/pylon/cluster - spread_on_semiweedable = FALSE + spread_on_semiweedable = TRUE /obj/effect/alien/weeds/node/pylon/cluster/set_parent_damaged() if(!resin_parent) diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm index d1e2011e8c..f8f2e61b8a 100644 --- a/code/modules/cm_marines/Donator_Items.dm +++ b/code/modules/cm_marines/Donator_Items.dm @@ -244,11 +244,12 @@ icon_state = "tristan_armor" item_state = "tristan_armor" -/obj/item/clothing/suit/storage/marine/fluff/sas_legion //CKEY=sasoperative (UNIQUE) - name = "Legion Armor" - desc = "This armor was custom-made to resemble the small growing Legion within the galaxy started by one man slowly making its way to becoming a larger Corporation. DONOR ITEM." - item_state = "ncrjacket" - icon_state = "ncrjacket" +/obj/item/clothing/suit/storage/marine/light/fluff/sas_legion //CKEY=sasoperative (UNIQUE) + name = "M3 Ranger Armor" + desc = "A set of M3 Pattern Ranger Armor, There probably are not many of these laying around. DONOR ITEM." + flags_atom = FPRINT|CONDUCT|NO_NAME_OVERRIDE + icon_state = "rangerarmor" + item_state = "rangerarmor" /obj/item/clothing/suit/storage/marine/fluff/feodrich //CKEY=feodrich (UNIQUE) name = "Doom Armor" @@ -421,12 +422,12 @@ item_state = "merc_armor" /obj/item/clothing/suit/storage/marine/fluff/steelpoint //CKEY=steelpoint (UNIQUE) - name = "M4X Armor" - desc = "Armor to the M4X!!!! DONOR ITEM" + name = "M4-X Armor" + desc = "A next generation body armor system intended for Marines fighting against xenomorphs, the system is coated in a unique acid resistant polymer coating, as well as enhanced ballistics protection. This prototype version lacks those two features. DONOR ITEM" + flags_atom = FPRINT|CONDUCT|NO_NAME_OVERRIDE icon_state = "steelpoint_armor" item_state = "steelpoint_armor" - /obj/item/clothing/suit/storage/marine/fluff/valentine //CKEY=markvalentine name = "Shocky's Armor" desc = "Shockingly good armor. DONOR ITEM" @@ -470,18 +471,6 @@ icon_state = "medicae_armor_u" item_state = "medicae_armor_u" -/obj/item/clothing/suit/storage/marine/fluff/Sanctum_heavy - name = "Sanctum Founder Armor" - desc = "Personal Armor of the Founder of Sanctum Team. It looks more like a Exosuit. Unique DONOR ITEM" //Add UNIQUE if Unique - icon_state = "Sanctum_Heavy_u" - item_state = "Sanctum_Heavy_u" - -/obj/item/clothing/suit/storage/marine/fluff/Sanctum_medium - name = "Sanctum Standard Armor" - desc = "The Standard Issue Armor for Sanctum Operatives Unique DONOR ITEM" - icon_state = "Sanctum_Medium_u" - item_state = "Sanctum_Medium_u" - /obj/item/clothing/suit/storage/marine/fluff/dudewithatude name = "Rainbow Coat" desc = "Powered by the magic of FRIENDSHIP. (Can be toggled opened or closed) UNIQUE DONOR ITEM" @@ -587,7 +576,7 @@ /obj/item/clothing/head/helmet/marine/fluff/santahat //CKEY=tophatpenguin name = "Santa's hat" desc = "Ho ho ho. Merrry X-mas!" - icon_state = "santahat" + icon_state = "santa_hat_red" flags_inventory = BLOCKSHARPOBJ flags_inv_hide = HIDEEARS|HIDEALLHAIR @@ -656,6 +645,13 @@ icon_state = "hecuhelm_u" desc = "A combat helmet, bearing the scars of many battles. UNIQUE DONOR ITEM" +/obj/item/clothing/head/helmet/marine/fluff/sas_legion //CKEY=sasoperative (UNIQUE) + name = "M3 Ranger Helmet" + desc = "A M3 Ranger helmet, probably not many of these laying around. DONOR ITEM" + flags_atom = FPRINT|CONDUCT|NO_NAME_OVERRIDE + icon_state = "rangerhelmet" + item_state = "rangerhelmet" + /obj/item/clothing/head/helmet/marine/fluff/officialjake name = "Timothy's Beret" desc = "A fancy red beret owned by Timothy Seidner. DONOR ITEM" @@ -842,10 +838,11 @@ flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR /obj/item/clothing/head/helmet/marine/fluff/steelpoint //CKEY=steelpoint (UNIQUE) - name = "M4X Helmet" - desc = "Helmets to the M4X!!! DONOR ITEM" + name = "M4-X Helmet" + desc = "A next generation combat helmet intended to be paired with the M4-X armor. The full faced helmet provides complete light ballistic-resistant protection alongside enchanced acid resistance. This prototype version lacks those features. DONOR ITEM" icon_state = "steelpoint_helmet" item_state = "steelpoint_helmet" + flags_atom = FPRINT|CONDUCT|NO_NAME_OVERRIDE flags_inventory = BLOCKSHARPOBJ flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR @@ -911,14 +908,6 @@ flags_inventory = BLOCKSHARPOBJ flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR -/obj/item/clothing/head/helmet/marine/fluff/Sanctum_helmet - name = "Sanctum Combat Helmet" - desc = " The Standard Issue helmet of Sanctum Team. DONOR ITEM" //Add UNIQUE if Unique - icon_state = "Sanctum_Helm_u" - item_state = "Sanctum_Helm_u" - flags_inventory = BLOCKSHARPOBJ - flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR - /obj/item/clothing/head/helmet/marine/fluff/dingledangle name = "Rusty's Cap" desc = "A little old and shabby. The color has slightly faded over time. DONOR ITEM" @@ -997,13 +986,6 @@ worn_state = "camojump" flags_jumpsuit = FALSE -/obj/item/clothing/under/marine/fluff/sas_legion //CKEY=sasoperative (UNIQUE) - name = "Legion Suit" - desc = "This armor was custom-made to resemble the small growing Legion within the galaxy started by one man slowly making its way to becoming a larger Corporation. DONOR ITEM." - icon_state = "ncr_uni" - worn_state = "ncr_uni" - flags_jumpsuit = FALSE - /obj/item/clothing/under/marine/fluff/feodrich //CKEY=feodrich (UNIQUE) name = "Doom Uniform" desc = "A uniform, of a famous Earth warrior... Donor Item" @@ -1151,8 +1133,8 @@ flags_jumpsuit = FALSE /obj/item/clothing/under/marine/fluff/steelpoint //CKEY=steelpoint (UNIQUE) - name = "M4X Jumpsuit" - desc = "Jumpsuit to the M4X!!! DONOR ITEM" + name = "M4-X Jumpsuit" + desc = "Jumpsuit issued alongside the M4-X armor. Considered outdated compared to the more modern armor system. DONOR ITEM" icon_state = "steelpoint_jumpsuit" worn_state = "steelpoint_jumpsuit" flags_jumpsuit = FALSE @@ -1206,13 +1188,6 @@ worn_state = "medicae_jumpsuit_u" flags_jumpsuit = FALSE -/obj/item/clothing/under/marine/fluff/sanctum_uniform //NO USER - name = "Sanctum Fatigues" - desc = "Fatigues with Kevlar fibers for a bit more protection than most clothing. UNIQUE DONOR ITEM" - icon_state = "Sanctum_u" - worn_state = "Sanctum_u" - flags_jumpsuit = FALSE - /obj/item/clothing/under/marine/fluff/sailordave //CKEY=sailordave name = "Eden USCM uniform" desc = "An older model USCM uniform. UNIQUE DONOR ITEM" @@ -1243,16 +1218,6 @@ item_state = "revanmask" icon_state = "revanmask" - -/obj/item/clothing/mask/fluff/sas_legion //CKEY=sasoperative (UNIQUE) - name = "Legion Mask" - desc = "This armor was custom-made to resemble the small growing Legion within the galaxy started by one man slowly making its way to becoming a larger Corporation. DONOR ITEM." - icon_override = 'icons/mob/humans/onmob/mask.dmi' - item_state = "officer_mask" - icon_state = "officer_mask" - flags_inventory = COVERMOUTH|ALLOWREBREATH - flags_inv_hide = HIDEEARS|HIDEFACE|HIDEALLHAIR - /obj/item/clothing/mask/fluff/totalanarchy //CKEY=totalanarchy name = "PMC Mask" desc = "A white colored PMC Mask. DONOR ITEM." @@ -1322,10 +1287,10 @@ item_state = "doom_boots" /obj/item/clothing/shoes/marine/fluff/steelpoint //CKEY=steelpoint (UNIQUE) - name = "M4X Boot" - desc = "Boots to the M4X. DONOR ITEM" - icon_state = "jackboots" - item_state = "jackboots" + name = "M4-X Boot" + desc = "Standard issue boots issued alongside M4-X armor, features a special coating of acid-resistant layering to allow its operator to move through acid-dretched environments safely. This prototype version lacks that feature. DONOR ITEM" + icon_state = "marine" + item_state = "marine" //GENERIC GLASSES, GLOVES, AND MISC //////////////////// @@ -1372,6 +1337,13 @@ item_state = "securitypack" has_gamemode_skin = FALSE //same sprite for all gamemodes. +/obj/item/storage/backpack/marine/satchel/fluff/sas_legion //CKEY=sasoperative (UNIQUE) + name = "M3 Armored Pack" + desc = "Plenty of pouches and pockets. DONOR ITEM" + flags_atom = FPRINT|CONDUCT|NO_NAME_OVERRIDE + icon_state = "skinnerrangerpack" + item_state = "skinnerrangerpack" + /obj/item/clothing/glasses/fluff/alexwarhammer name = "Black Jack's Dank Shades" desc = "+20 Badass points. Donor item" diff --git a/code/modules/cm_marines/Donator_Kits.dm b/code/modules/cm_marines/Donator_Kits.dm index 01acf638c2..b0c9ec51e9 100644 --- a/code/modules/cm_marines/Donator_Kits.dm +++ b/code/modules/cm_marines/Donator_Kits.dm @@ -1,6 +1,7 @@ /obj/item/storage/box/donator_kit name = "donated box" desc = "A cardboard box stamped with a dollar sign and filled with trinkets. Appears to have been donated by a wealthy sponsor." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "donator_kit" item_state = "giftbag" var/list/donor_gear = list() @@ -436,9 +437,9 @@ donor_key = "sasoperative" kit_variant = "Legion" donor_gear = list( - /obj/item/clothing/suit/storage/marine/fluff/sas_legion, - /obj/item/clothing/under/marine/fluff/sas_legion, - /obj/item/clothing/mask/fluff/sas_legion, + /obj/item/clothing/suit/storage/marine/light/fluff/sas_legion, + /obj/item/clothing/head/helmet/marine/fluff/sas_legion, + /obj/item/storage/backpack/marine/satchel/fluff/sas_legion, ) /obj/item/storage/box/donator_kit/seloc_aferah diff --git a/code/modules/cm_marines/NonLethalRestraints.dm b/code/modules/cm_marines/NonLethalRestraints.dm index fb378e1ab5..d3ed382691 100644 --- a/code/modules/cm_marines/NonLethalRestraints.dm +++ b/code/modules/cm_marines/NonLethalRestraints.dm @@ -32,10 +32,6 @@ add_fingerprint(user) /obj/item/weapon/stunprod/attack(mob/living/M, mob/user) - if(isrobot(M)) - ..() - return - if(user.a_intent == INTENT_HARM) return else if(!status) @@ -46,7 +42,7 @@ M.KnockDown(6) M.Stun(6) charges -= 2 - M.visible_message(SPAN_DANGER("[M] has been prodded with the [src] by [user]!")) + M.visible_message(SPAN_DANGER("[M] has been prodded with [src] by [user]!")) user.attack_log += "\[[time_stamp()]\] Stunned [key_name(M)] with [src.name]" M.attack_log += "\[[time_stamp()]\] Stunned by [key_name(user)] with [src.name]" diff --git a/code/modules/cm_marines/altitude_control_console.dm b/code/modules/cm_marines/altitude_control_console.dm index a8281806be..7e0a8c3951 100644 --- a/code/modules/cm_marines/altitude_control_console.dm +++ b/code/modules/cm_marines/altitude_control_console.dm @@ -63,7 +63,7 @@ GLOBAL_VAR_INIT(ship_alt, SHIP_ALT_MED) temperature_change = COOLING if(SHIP_ALT_HIGH) temperature_change = COOLING - GLOB.ship_temp = Clamp(GLOB.ship_temp += temperature_change, 0, 120) + GLOB.ship_temp = clamp(GLOB.ship_temp += temperature_change, 0, 120) if(prob(50)) return if(GLOB.ship_alt == SHIP_ALT_LOW) diff --git a/code/modules/cm_marines/anti_air.dm b/code/modules/cm_marines/anti_air.dm index 8c8cab302e..3c69a0fe24 100644 --- a/code/modules/cm_marines/anti_air.dm +++ b/code/modules/cm_marines/anti_air.dm @@ -1,4 +1,4 @@ -var/obj/structure/anti_air_cannon/almayer_aa_cannon +GLOBAL_DATUM(almayer_aa_cannon, /obj/structure/anti_air_cannon) /obj/structure/anti_air_cannon name = "\improper IX-50 MGAD Cannon" @@ -20,14 +20,14 @@ var/obj/structure/anti_air_cannon/almayer_aa_cannon /obj/structure/anti_air_cannon/New() . = ..() - if(!almayer_aa_cannon) - almayer_aa_cannon = src + if(!GLOB.almayer_aa_cannon) + GLOB.almayer_aa_cannon = src /obj/structure/anti_air_cannon/Destroy() . = ..() - if(almayer_aa_cannon == src) - almayer_aa_cannon = null - message_admins("Reference to almayer_aa_cannon is lost!") + if(GLOB.almayer_aa_cannon == src) + GLOB.almayer_aa_cannon = null + message_admins("Reference to GLOB.almayer_aa_cannon is lost!") /obj/structure/anti_air_cannon/ex_act() return @@ -79,7 +79,7 @@ var/obj/structure/anti_air_cannon/almayer_aa_cannon data["sections"] = list() - for(var/section in almayer_ship_sections) + for(var/section in GLOB.almayer_ship_sections) data["sections"] += list(list( "section_id" = section, )) @@ -89,8 +89,8 @@ var/obj/structure/anti_air_cannon/almayer_aa_cannon /obj/structure/machinery/computer/aa_console/ui_data(mob/user) var/list/data = list() - data["disabled"] = almayer_aa_cannon.is_disabled - data["protecting_section"] = almayer_aa_cannon.protecting_section + data["disabled"] = GLOB.almayer_aa_cannon.is_disabled + data["protecting_section"] = GLOB.almayer_aa_cannon.protecting_section return data @@ -99,20 +99,20 @@ var/obj/structure/anti_air_cannon/almayer_aa_cannon if(.) return - if(!almayer_aa_cannon) + if(!GLOB.almayer_aa_cannon) return switch(action) if("protect") - almayer_aa_cannon.protecting_section = params["section_id"] - if(!(almayer_aa_cannon.protecting_section in almayer_ship_sections)) - almayer_aa_cannon.protecting_section = "" + GLOB.almayer_aa_cannon.protecting_section = params["section_id"] + if(!(GLOB.almayer_aa_cannon.protecting_section in GLOB.almayer_ship_sections)) + GLOB.almayer_aa_cannon.protecting_section = "" return - message_admins("[key_name(usr)] has set the AA to [html_encode(almayer_aa_cannon.protecting_section)].") - log_ares_antiair("[usr] Set AA to cover [html_encode(almayer_aa_cannon.protecting_section)].") + message_admins("[key_name(usr)] has set the AA to [html_encode(GLOB.almayer_aa_cannon.protecting_section)].") + log_ares_antiair("[usr] Set AA to cover [html_encode(GLOB.almayer_aa_cannon.protecting_section)].") . = TRUE if("deactivate") - almayer_aa_cannon.protecting_section = "" + GLOB.almayer_aa_cannon.protecting_section = "" message_admins("[key_name(usr)] has deactivated the AA cannon.") log_ares_antiair("[usr] Deactivated Anti Air systems.") . = TRUE @@ -131,7 +131,7 @@ var/obj/structure/anti_air_cannon/almayer_aa_cannon if(..()) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use that console.")) return TRUE diff --git a/code/modules/cm_marines/codebook.dm b/code/modules/cm_marines/codebook.dm index 11013f7645..64e74fba2c 100644 --- a/code/modules/cm_marines/codebook.dm +++ b/code/modules/cm_marines/codebook.dm @@ -11,10 +11,10 @@ GLOBAL_LIST_EMPTY(codebook_data) var/letter var/code_data = "
      Survivors
      BANNED
      WHITELISTED
      BANNED
      WHITELISTED
      " for(var/i in 1 to 10) - letter = pick(greek_letters) + letter = pick(GLOB.greek_letters) number = rand(100,999) code_data += "" - letter = pick(greek_letters) + letter = pick(GLOB.greek_letters) number = rand(100,999) code_data += "" code_data += "
      CallResponse
      [letter]-[number][letter]-[number]
      " diff --git a/code/modules/cm_marines/dropship_ammo.dm b/code/modules/cm_marines/dropship_ammo.dm index ef59e643e4..aefc2366ca 100644 --- a/code/modules/cm_marines/dropship_ammo.dm +++ b/code/modules/cm_marines/dropship_ammo.dm @@ -12,8 +12,8 @@ var/fire_mission_delay = 4 /// Time to impact in deciseconds var/travelling_time = 100 - /// Type of equipment that accept this type of ammo. - var/equipment_type + /// Type of dropship equipment that accepts this type of ammo. + var/obj/structure/dropship_equipment/equipment_type /// Ammunition count remaining var/ammo_count /// Maximal ammunition count @@ -40,7 +40,7 @@ var/combat_equipment = TRUE /obj/structure/ship_ammo/attack_alien(mob/living/carbon/xenomorph/current_xenomorph) - if(unslashable) + if(unslashable) return XENO_NO_DELAY_ACTION current_xenomorph.animation_attack_on(src) playsound(src, 'sound/effects/metalhit.ogg', 25, 1) @@ -84,7 +84,7 @@ /obj/structure/ship_ammo/proc/show_loaded_desc(mob/user) return "It's loaded with \a [src]." -/obj/structure/ship_ammo/proc/detonate_on(turf/impact) +/obj/structure/ship_ammo/proc/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) return /obj/structure/ship_ammo/proc/can_fire_at(turf/impact, mob/user) @@ -144,7 +144,7 @@ ammo_used_per_firing = 40 point_cost = 275 fire_mission_delay = 2 - var/bullet_spread_range = 4 //how far from the real impact turf can bullets land + var/bullet_spread_range = 3 //how far from the real impact turf can bullets land var/shrapnel_type = /datum/ammo/bullet/shrapnel/gau //For siming 30mm bullet impacts. var/directhit_damage = 105 //how much damage is to be inflicted to a mob, this is here so that we can hit resting mobs. var/penetration = 10 //AP value pretty much @@ -159,18 +159,17 @@ else return "It's loaded with an empty [name]." -/obj/structure/ship_ammo/heavygun/detonate_on(turf/impact) +/obj/structure/ship_ammo/heavygun/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) set waitfor = 0 - var/list/turf_list = list() - for(var/turf/T in range(bullet_spread_range, impact)) - turf_list += T + var/list/turf_list = RANGE_TURFS(bullet_spread_range, impact) var/soundplaycooldown = 0 var/debriscooldown = 0 + for(var/i = 1 to ammo_used_per_firing) - var/turf/impact_tile = pick(turf_list) sleep(1) - var/datum/cause_data/cause_data = create_cause_data(initial(name), source_mob) - impact_tile.ex_act(EXPLOSION_THRESHOLD_VLOW, pick(alldirs), cause_data) + var/turf/impact_tile = pick(turf_list) + var/datum/cause_data/cause_data = create_cause_data(fired_from.name, source_mob) + impact_tile.ex_act(EXPLOSION_THRESHOLD_VLOW, pick(GLOB.alldirs), cause_data) create_shrapnel(impact_tile,1,0,0,shrapnel_type,cause_data,FALSE,100) //simulates a bullet for(var/atom/movable/explosion_effect in impact_tile) if(iscarbon(explosion_effect)) @@ -179,6 +178,7 @@ bullet_effect.apply_armoured_damage(directhit_damage,ARMOR_BULLET,BRUTE,null,penetration) else explosion_effect.ex_act(EXPLOSION_THRESHOLD_VLOW) + new /obj/effect/particle_effect/expl_particles(impact_tile) if(!soundplaycooldown) //so we don't play the same sound 20 times very fast. playsound(impact_tile, 'sound/effects/gauimpact.ogg',40,1,20) soundplaycooldown = 3 @@ -187,7 +187,6 @@ impact_tile.ceiling_debris_check(1) debriscooldown = 6 debriscooldown-- - new /obj/effect/particle_effect/expl_particles(impact_tile) sleep(11) //speed of sound simulation playsound(impact, 'sound/effects/gau.ogg',100,1,60) @@ -230,36 +229,29 @@ /obj/structure/ship_ammo/laser_battery/get_examine_text(mob/user) . = ..() - . += "It's at [round(100*ammo_count/max_ammo_count)]% charge." + . += "It's at [floor(100*ammo_count/max_ammo_count)]% charge." /obj/structure/ship_ammo/laser_battery/show_loaded_desc(mob/user) if(ammo_count) - return "It's loaded with \a [src] at [round(100*ammo_count/max_ammo_count)]% charge." + return "It's loaded with \a [src] at [floor(100*ammo_count/max_ammo_count)]% charge." else return "It's loaded with an empty [name]." -/obj/structure/ship_ammo/laser_battery/detonate_on(turf/impact) +/obj/structure/ship_ammo/laser_battery/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) set waitfor = 0 - var/list/turf_list = list() - for(var/turf/T in range(impact, 3)) //This is its area of effect - turf_list += T + var/list/turf_list = RANGE_TURFS(3, impact) //This is its area of effect playsound(impact, 'sound/effects/pred_vision.ogg', 20, 1) for(var/i=1 to 16) //This is how many tiles within that area of effect will be randomly ignited var/turf/U = pick(turf_list) turf_list -= U - laser_burn(U) + fire_spread_recur(U, create_cause_data(fired_from.name, source_mob), 1, null, 5, 75, "#EE6515")//Very, very intense, but goes out very quick if(!ammo_count && !QDELETED(src)) qdel(src) //deleted after last laser beam is fired and impact the ground. - -/obj/structure/ship_ammo/laser_battery/proc/laser_burn(turf/T) - fire_spread_recur(T, create_cause_data(initial(name), source_mob), 1, null, 5, 75, "#EE6515")//Very, very intense, but goes out very quick - - //Rockets /obj/structure/ship_ammo/rocket @@ -277,7 +269,7 @@ max_inaccuracy = 5 point_cost = 0 -/obj/structure/ship_ammo/rocket/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) qdel(src) @@ -291,7 +283,7 @@ point_cost = 300 fire_mission_delay = 4 //We don't care because our ammo has just 1 rocket -/obj/structure/ship_ammo/rocket/widowmaker/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/widowmaker/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), impact, 300, 40, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name)), source_mob), 0.5 SECONDS) //Your standard HE splash damage rocket. Good damage, good range, good speed, it's an all rounder QDEL_IN(src, 0.5 SECONDS) @@ -304,7 +296,7 @@ point_cost = 300 fire_mission_delay = 4 //We don't care because our ammo has just 1 rocket -/obj/structure/ship_ammo/rocket/banshee/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/banshee/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), impact, 175, 20, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name)), source_mob), 0.5 SECONDS) //Small explosive power with a small fall off for a big explosion range addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(fire_spread), impact, create_cause_data(initial(name), source_mob), 4, 15, 50, "#00b8ff"), 0.5 SECONDS) //Very intense but the fire doesn't last very long @@ -319,22 +311,21 @@ point_cost = 300 fire_mission_delay = 4 //We don't care because our ammo has just 1 rocket -/obj/structure/ship_ammo/rocket/keeper/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/keeper/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), impact, 450, 100, EXPLOSION_FALLOFF_SHAPE_EXPONENTIAL, null, create_cause_data(initial(name)), source_mob), 0.5 SECONDS) //Insane fall off combined with insane damage makes the Keeper useful for single targets, but very bad against multiple. QDEL_IN(src, 0.5 SECONDS) /obj/structure/ship_ammo/rocket/harpoon name = "\improper AGM-184 'Harpoon II'" - desc = "The AGM-184 Harpoon II is an Anti-Ship Missile, designed and used to effectively take down enemy ships with a huge blast wave with low explosive power. This one is modified to use ground signals. Can be loaded into the LAU-444 Guided Missile Launcher." + desc = "The AGM-184 Harpoon II is an Anti-Ship Missile, designed and used to effectively take down enemy ships with a huge blast wave with low explosive power. This one is modified to use ground signals and can be seen as a cheaper alternative to conventional ordnance. Can be loaded into the LAU-444 Guided Missile Launcher." icon_state = "harpoon" ammo_id = "s" travelling_time = 50 - point_cost = 300 + point_cost = 200 fire_mission_delay = 4 -//Looks kinda OP but all it can actually do is just to blow windows and some of other things out, cant do much damage. -/obj/structure/ship_ammo/rocket/harpoon/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/harpoon/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), impact, 150, 16, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name)), source_mob), 0.5 SECONDS) QDEL_IN(src, 0.5 SECONDS) @@ -347,7 +338,7 @@ point_cost = 500 fire_mission_delay = 0 //0 means unusable -/obj/structure/ship_ammo/rocket/napalm/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/napalm/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(cell_explosion), impact, 200, 25, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name)), source_mob), 0.5 SECONDS) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(fire_spread), impact, create_cause_data(initial(name), source_mob), 6, 60, 30, "#EE6515"), 0.5 SECONDS) //Color changed into napalm's color to better convey how intense the fire actually is. @@ -362,7 +353,7 @@ point_cost = 300 fire_mission_delay = 4 -/obj/structure/ship_ammo/rocket/thermobaric/detonate_on(turf/impact) +/obj/structure/ship_ammo/rocket/thermobaric/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(3) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(fire_spread), impact, create_cause_data(initial(name), source_mob), 4, 25, 50, "#c96500"), 0.5 SECONDS) //Very intense but the fire doesn't last very long for(var/mob/living/carbon/victim in orange(5, impact)) @@ -386,7 +377,7 @@ point_cost = 300 fire_mission_delay = 3 //high cooldown -/obj/structure/ship_ammo/minirocket/detonate_on(turf/impact) +/obj/structure/ship_ammo/minirocket/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) impact.ceiling_debris_check(2) spawn(5) cell_explosion(impact, 200, 44, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data(initial(name), source_mob)) @@ -416,7 +407,7 @@ point_cost = 500 fire_mission_delay = 3 //high cooldown -/obj/structure/ship_ammo/minirocket/incendiary/detonate_on(turf/impact) +/obj/structure/ship_ammo/minirocket/incendiary/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) ..() spawn(5) fire_spread(impact, create_cause_data(initial(name), source_mob), 3, 25, 20, "#EE6515") @@ -430,13 +421,13 @@ max_ammo_count = 1 ammo_name = "area denial sentry" travelling_time = 0 // handled by droppod - point_cost = 800 + point_cost = 800 //handled by printer accuracy_range = 0 // pinpoint max_inaccuracy = 0 /// Special structures it needs to break with drop pod var/list/breakeable_structures = list(/obj/structure/barricade, /obj/structure/surface/table) -/obj/structure/ship_ammo/sentry/detonate_on(turf/impact) +/obj/structure/ship_ammo/sentry/detonate_on(turf/impact, obj/structure/dropship_equipment/weapon/fired_from) var/obj/structure/droppod/equipment/sentry/droppod = new(impact, /obj/structure/machinery/defenses/sentry/launchable, source_mob) droppod.special_structures_to_damage = breakeable_structures droppod.special_structure_damage = 500 diff --git a/code/modules/cm_marines/dropship_equipment.dm b/code/modules/cm_marines/dropship_equipment.dm index 17d612b3ba..e7709a9953 100644 --- a/code/modules/cm_marines/dropship_equipment.dm +++ b/code/modules/cm_marines/dropship_equipment.dm @@ -281,13 +281,15 @@ step(M, get_dir(src,deployed_turret)) deployed_turret.start_processing() - deployed_turret.setup_target_acquisition() + deployed_turret.set_range() deployed_turret.linked_cam = new(deployed_turret.loc, "[capitalize_first_letters(ship_base.name)] [capitalize_first_letters(name)]") if (linked_shuttle.id == DROPSHIP_ALAMO) deployed_turret.linked_cam.network = list(CAMERA_NET_ALAMO) else if (linked_shuttle.id == DROPSHIP_NORMANDY) deployed_turret.linked_cam.network = list(CAMERA_NET_NORMANDY) + else if (linked_shuttle.id == DROPSHIP_SAIPAN) + deployed_turret.linked_cam.network = list(CAMERA_NET_SAIPAN) /obj/structure/dropship_equipment/sentry_holder/proc/undeploy_sentry() @@ -299,7 +301,7 @@ deployed_turret.forceMove(src) deployed_turret.turned_on = FALSE deployed_turret.stop_processing() - deployed_turret.unsetup_target_acquisition() + deployed_turret.unset_range() icon_state = "sentry_system_installed" QDEL_NULL(deployed_turret.linked_cam) @@ -721,9 +723,7 @@ ammo_accuracy_range /= 2 //buff for basically pointblanking the ground - var/list/possible_turfs = list() - for(var/turf/TU in range(ammo_accuracy_range, target_turf)) - possible_turfs += TU + var/list/possible_turfs = RANGE_TURFS(ammo_accuracy_range, target_turf) var/turf/impact = pick(possible_turfs) sleep(3) SA.source_mob = user @@ -861,7 +861,7 @@ /obj/structure/dropship_equipment/medevac_system/proc/get_targets() . = list() - for(var/obj/structure/bed/medevac_stretcher/MS in activated_medevac_stretchers) + for(var/obj/structure/bed/medevac_stretcher/MS in GLOB.activated_medevac_stretchers) var/area/AR = get_area(MS) var/evaccee_name var/evaccee_triagecard_color @@ -1202,7 +1202,7 @@ /obj/structure/dropship_equipment/fulton_system/proc/get_targets() . = list() - for(var/obj/item/stack/fulton/F in deployed_fultons) + for(var/obj/item/stack/fulton/F in GLOB.deployed_fultons) var/recovery_object if(F.attached_atom) recovery_object = F.attached_atom.name @@ -1316,7 +1316,7 @@ color = "#17d17a" /obj/structure/dropship_equipment/paradrop_system/attack_hand(mob/living/carbon/human/user) - var/datum/cas_iff_group/cas_group = cas_groups[FACTION_MARINE] + var/datum/cas_iff_group/cas_group = GLOB.cas_groups[FACTION_MARINE] var/list/targets = cas_group.cas_signals if(!LAZYLEN(targets)) @@ -1434,9 +1434,7 @@ ammo_accuracy_range /= 2 //buff for basically pointblanking the ground - var/list/possible_turfs = list() - for(var/turf/TU in range(ammo_accuracy_range, target_turf)) - possible_turfs += TU + var/list/possible_turfs = RANGE_TURFS(ammo_accuracy_range, target_turf) var/turf/impact = pick(possible_turfs) sleep(3) SA.source_mob = user diff --git a/code/modules/cm_marines/equipment/gear.dm b/code/modules/cm_marines/equipment/gear.dm index c3b30afdf8..7ec7a68f6a 100644 --- a/code/modules/cm_marines/equipment/gear.dm +++ b/code/modules/cm_marines/equipment/gear.dm @@ -4,8 +4,8 @@ /obj/item/device/flashlight/combat name = "combat flashlight" - desc = "A Flashlight designed to be held in the hand, or attached to a rifle" - icon_state = "flashlight" + desc = "A Flashlight designed to be held in the hand, or attached to a rifle, has better bulb compared to a normal flashlight." + icon_state = "combat_flashlight" item_state = "flashlight" light_range = 5 //Pretty luminous, but still a flashlight that fits in a pocket @@ -108,7 +108,7 @@ continue mobs_can_store += H var/mob/living/carbon/human/mob_to_store - if(mobs_can_store.len) + if(length(mobs_can_store)) mob_to_store = pick(mobs_can_store) mob_to_store.forceMove(src) mob_to_store.unset_interaction() @@ -149,15 +149,6 @@ return FALSE . = ..() handle_cloaking() - -/obj/item/coin/marine - name = "marine specialist weapon token" - desc = "Insert this into a specialist vendor in order to access a single highly dangerous weapon." - icon_state = "coin_platinum" - -/obj/item/coin/marine/attackby(obj/item/W as obj, mob/user as mob) //To remove attaching a string functionality - return - /obj/structure/broken_apc name = "\improper M577 armored personnel carrier" desc = "A large, armored behemoth capable of ferrying marines around. \nThis one is sitting nonfunctional." diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 16f55fad95..78a20e52e6 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -1,6 +1,7 @@ /obj/item/storage/box/guncase name = "\improper gun case" desc = "It has space for firearm(s). Sometimes magazines or other munitions as well." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "guncase" w_class = SIZE_HUGE max_w_class = SIZE_HUGE //shouldn't be a problem since we can only store the guns and ammo. @@ -67,7 +68,6 @@ new /obj/item/ammo_magazine/rifle/lmg(src) new /obj/item/ammo_magazine/rifle/lmg/holo_target(src) new /obj/item/attachable/flashlight - new /obj/item/attachable/bipod //------------ /obj/item/storage/box/guncase/m41aMK1 @@ -376,13 +376,52 @@ new /obj/item/device/vulture_spotter_scope/skillless(src, WEAKREF(rifle)) new /obj/item/tool/screwdriver(src) // Spotter scope needs a screwdriver to disassemble +/obj/item/storage/box/guncase/vulture/holo_target + name = "\improper M707 holo-targetting anti-materiel rifle case" + desc = "A gun case containing the M707 \"Vulture\" anti-materiel rifle and its requisite spotting tools. This variant is pre-loaded with IFF-CAPABLE holo-targeting rounds." + +/obj/item/storage/box/guncase/vulture/holo_target/fill_preset_inventory() + var/obj/item/weapon/gun/boltaction/vulture/holo_target/rifle = new(src) + new /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target(src) + new /obj/item/device/vulture_spotter_tripod(src) + new /obj/item/device/vulture_spotter_scope(src, WEAKREF(rifle)) + new /obj/item/tool/screwdriver(src) + new /obj/item/pamphlet/trait/vulture(src) + new /obj/item/pamphlet/trait/vulture(src) + +/obj/item/storage/box/guncase/vulture/holo_target/skillless + storage_slots = 5 + +/obj/item/storage/box/guncase/vulture/holo_target/skillless/fill_preset_inventory() + var/obj/item/weapon/gun/boltaction/vulture/holo_target/skillless/rifle = new(src) + new /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target(src) + new /obj/item/device/vulture_spotter_tripod(src) + new /obj/item/device/vulture_spotter_scope/skillless(src, WEAKREF(rifle)) + new /obj/item/tool/screwdriver(src) + + +/obj/item/storage/box/guncase/xm51 + name = "\improper XM51 breaching scattergun case" + desc = "A gun case containing the XM51 Breaching Scattergun. Comes with two spare magazines, two spare shell boxes, an optional stock and a belt to holster the weapon." + storage_slots = 7 + can_hold = list(/obj/item/weapon/gun/rifle/xm51, /obj/item/ammo_magazine/rifle/xm51, /obj/item/storage/belt/gun/xm51, /obj/item/attachable/stock/xm51) + +/obj/item/storage/box/guncase/xm51/fill_preset_inventory() + new /obj/item/attachable/stock/xm51(src) + new /obj/item/weapon/gun/rifle/xm51(src) + new /obj/item/ammo_magazine/rifle/xm51(src) + new /obj/item/ammo_magazine/rifle/xm51(src) + new /obj/item/ammo_magazine/shotgun/light/breaching(src) + new /obj/item/ammo_magazine/shotgun/light/breaching(src) + new /obj/item/storage/belt/gun/xm51(src) + //Handgun case for Military police vendor three mag , a railflashligh and the handgun. //VP70 Combat Pistol /obj/item/storage/box/guncase/vp70 name = "\improper VP70 Combat Pistol case" desc = "A gun case containing a VP70 Combat Pistol." - storage_slots = 5 + storage_slots = 8 can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/vp70, /obj/item/ammo_magazine/pistol/vp70) /obj/item/storage/box/guncase/vp70/fill_preset_inventory() @@ -391,12 +430,15 @@ new /obj/item/ammo_magazine/pistol/vp70(src) new /obj/item/ammo_magazine/pistol/vp70(src) new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) + new /obj/item/ammo_magazine/pistol/vp70(src) //M44 Combat Revolver /obj/item/storage/box/guncase/m44 name = "\improper M44 Combat Revolver case" desc = "A gun case containing a M44 Combat Revolver loaded with marksman ammo." - storage_slots = 5 + storage_slots = 8 can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/revolver/m44, /obj/item/ammo_magazine/revolver) /obj/item/storage/box/guncase/m44/fill_preset_inventory() @@ -405,12 +447,15 @@ new /obj/item/ammo_magazine/revolver/marksman(src) new /obj/item/ammo_magazine/revolver/marksman(src) new /obj/item/ammo_magazine/revolver/marksman(src) + new /obj/item/ammo_magazine/revolver/marksman(src) + new /obj/item/ammo_magazine/revolver/marksman(src) + new /obj/item/ammo_magazine/revolver/marksman(src) //M4A3 Service Pistol /obj/item/storage/box/guncase/m4a3 name = "\improper M4A3 Service Pistol case" desc = "A gun case containing a M4A3 Service Pistol." - storage_slots = 5 + storage_slots = 8 can_hold = list(/obj/item/attachable/flashlight, /obj/item/weapon/gun/pistol/m4a3, /obj/item/ammo_magazine/pistol) /obj/item/storage/box/guncase/m4a3/fill_preset_inventory() @@ -419,3 +464,6 @@ new /obj/item/ammo_magazine/pistol(src) new /obj/item/ammo_magazine/pistol(src) new /obj/item/ammo_magazine/pistol(src) + new /obj/item/ammo_magazine/pistol(src) + new /obj/item/ammo_magazine/pistol(src) + new /obj/item/ammo_magazine/pistol(src) diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index f0172a2858..ec24a11414 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -2,13 +2,14 @@ //******************************************Spec Kits****************************************************************/ /obj/item/storage/box/spec - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "kit_case" var/kit_overlay = null w_class = SIZE_HUGE storage_slots = 14 slowdown = 1 can_hold = list() //Nada. Once you take the stuff out it doesn't fit back in. + max_w_class = 0 foldable = null /obj/item/storage/box/spec/update_icon() @@ -69,6 +70,26 @@ // spotter new /obj/item/storage/box/kit/spotter(src) +/obj/item/storage/box/spec/sniper/anti_materiel/fill_preset_inventory() + name = "\improper AMR equipment case" + desc = "A large case containing an experimental XM43E1, a set of M45 ghillie armor and helmet, an M42 scout sight, ammunition, a set of spotter gear, and additional pieces of equipment.\nDrag this sprite onto yourself to open it up! NOTE: You cannot put items back inside this case." + new /obj/item/clothing/suit/storage/marine/ghillie(src) + new /obj/item/clothing/head/helmet/marine/ghillie(src) + new /obj/item/clothing/glasses/night/m42_night_goggles(src) + new /obj/item/weapon/gun/rifle/sniper/XM43E1(src) + new /obj/item/ammo_magazine/sniper/anti_materiel(src) + new /obj/item/ammo_magazine/sniper/anti_materiel(src) + new /obj/item/ammo_magazine/sniper/anti_materiel(src) + new /obj/item/ammo_magazine/sniper/anti_materiel(src) + new /obj/item/ammo_magazine/sniper/anti_materiel(src) + new /obj/item/storage/backpack/marine/smock(src) + new /obj/item/weapon/gun/pistol/vp78(src) + new /obj/item/ammo_magazine/pistol/vp78(src) + new /obj/item/ammo_magazine/pistol/vp78(src) + new /obj/item/facepaint/sniper(src) + // spotter + new /obj/item/storage/box/kit/spotter(src) + /obj/item/storage/box/spec/scout name = "\improper Scout equipment case" desc = "A large case containing an M4RA battle rifle, M3-S light armor and helmet, M4RA battle sight, M68 thermal cloak, V3 reactive thermal tarp, improved scout laser designator, ammunition and additional pieces of equipment.\nDrag this sprite onto yourself to open it up! NOTE: You cannot put items back inside this case." @@ -157,7 +178,7 @@ /obj/item/spec_kit name = "specialist kit" desc = "A paper box. Open it and get a specialist kit." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "spec_kit" var/list/allowed_roles_list = list(JOB_SQUAD_SPECIALIST, JOB_WO_SQUAD_SPECIALIST, JOB_WO_CREWMAN) @@ -165,9 +186,13 @@ var/squad_assignment_update = TRUE //this one is delivered via ASRS as a reward for DEFCON/techwebs/whatever else we will have -/obj/item/spec_kit/asrs +/obj/item/spec_kit/rifleman + squad_assignment_update = FALSE allowed_roles_list = list(JOB_SQUAD_MARINE, JOB_WO_SQUAD_MARINE) +/obj/item/spec_kit/rifleman/jobless + allowed_roles_list = list() + /obj/item/spec_kit/cryo squad_assignment_update = FALSE @@ -212,62 +237,44 @@ return FALSE return TRUE +/obj/item/spec_kit/rifleman/can_use(mob/living/carbon/human/user) + if(!length(allowed_roles_list)) + return TRUE + + for(var/allowed_role in allowed_roles_list) + if(user.job == allowed_role)//Alternate check to normal kit as this is distributed to people without SKILL_SPEC_TRAINED. + if(skillcheck(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_KITTED) && !skillcheckexplicit(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL)) + to_chat(user, SPAN_WARNING("You already have specialization, give this kit to someone else!")) + return FALSE + return TRUE + /obj/item/spec_kit/proc/select_and_spawn(mob/living/carbon/human/user) - var/selection = tgui_input_list(user, "Pick your specialist equipment type.", "Specialist Kit Selection", available_specialist_kit_boxes) + var/list/available_specialist_kits = list() + for(var/path in GLOB.specialist_set_datums) + var/datum/specialist_set/specset = GLOB.specialist_set_datums[path] + if(specset.get_available_kit_num() >= 1) + available_specialist_kits += specset.get_name() + + var/selection = tgui_input_list(user, "Pick your specialist equipment type.", "Specialist Kit Selection", available_specialist_kits, 10 SECONDS) if(!selection || QDELETED(src)) return FALSE if(!skillcheckexplicit(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_TRAINED) && !skillcheckexplicit(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL)) to_chat(user, SPAN_WARNING("You already unwrapped your [name], give this one to someone else!")) - return - if(!available_specialist_kit_boxes[selection] || available_specialist_kit_boxes[selection] <= 0) + return FALSE + if(!GLOB.specialist_set_name_dict[selection] || (GLOB.specialist_set_name_dict[selection].get_available_kit_num() <= 0)) to_chat(user, SPAN_WARNING("No more kits of this type may be chosen!")) return FALSE - var/obj/item/card/id/ID = user.wear_id - if(!istype(ID) || ID.registered_ref != WEAKREF(user)) + var/obj/item/card/id/card = user.get_idcard() + if(!card || card.registered_ref != WEAKREF(user)) to_chat(user, SPAN_WARNING("You must be wearing your [SPAN_INFO("ID card")] or [SPAN_INFO("dog tags")] to select a specialization!")) - return - var/turf/T = get_turf(loc) - var/obj/item/storage/box/spec/spec_box - var/specialist_assignment - switch(selection) - if("Pyro") - spec_box = new /obj/item/storage/box/spec/pyro(T) - specialist_assignment = "Pyro" - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_PYRO) - if("Grenadier") - spec_box = new /obj/item/storage/box/spec/heavy_grenadier(T) - specialist_assignment = "Grenadier" - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_GRENADIER) - if("Sniper") - spec_box = new /obj/item/storage/box/spec/sniper(T) - specialist_assignment = "Sniper" - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_SNIPER) - if("Scout") - spec_box = new /obj/item/storage/box/spec/scout(T) - specialist_assignment = "Scout" - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_SCOUT) - //this is to be able to use C4s that are coming with the kit - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) - user.skills.set_skill(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) - if("Demo") - spec_box = new /obj/item/storage/box/spec/demolitionist(T) - specialist_assignment = "Demo" - user.skills.set_skill(SKILL_SPEC_WEAPONS, SKILL_SPEC_ROCKET) - //this is to be able to use C4s that are coming with the kit - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) - user.skills.set_skill(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) - if(specialist_assignment) - user.put_in_hands(spec_box) - ID.set_assignment((user.assigned_squad && squad_assignment_update ? (user.assigned_squad.name + " ") : "") + ID.assignment + " ([specialist_assignment])") - GLOB.data_core.manifest_modify(user.real_name, WEAKREF(user), ID.assignment) - return TRUE - return FALSE + return FALSE + return GLOB.specialist_set_name_dict[selection].redeem_set(user, TRUE) //******************************************PFC Kits****************************************************************/ /obj/item/storage/box/kit - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "pro_case_mini"//to-do redo these sprites, they're out of date by current standards w_class = SIZE_HUGE storage_slots = 12 @@ -281,10 +288,10 @@ /obj/item/storage/box/kit/Initialize() . = ..() if(pro_case_overlay) - overlays += image('icons/obj/items/storage.dmi', "+[pro_case_overlay]") + overlays += image('icons/obj/items/storage/kits.dmi', "+[pro_case_overlay]") /obj/item/storage/box/kit/update_icon() - if(!contents.len) + if(!length(contents)) qdel(src) /obj/item/storage/box/kit/mou53_sapper name = "\improper M-OU53 Field Test Kit" @@ -386,7 +393,6 @@ new /obj/item/weapon/gun/rifle/lmg(src) new /obj/item/ammo_magazine/rifle/lmg(src) new /obj/item/ammo_magazine/rifle/lmg/holo_target(src) - new /obj/item/attachable/bipod(src) new /obj/item/stack/folding_barricade/three(src) new /obj/item/clothing/glasses/welding(src) new /obj/item/tool/weldingtool(src) @@ -444,6 +450,7 @@ new /obj/item/storage/box/m94/signal(src) new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/encryptionkey/jtac(src) + new /obj/item/storage/backpack/marine/satchel/rto(src) /obj/item/storage/box/kit/mini_intel name = "\improper Field Intelligence Support Kit" @@ -482,7 +489,7 @@ name = "\improper Cryo Self Defense Kit" desc = "A basic self-defense kit reserved for emergencies. As you might expect, not much care was put into keeping the stock fresh, who would be insane enough to attack a USCM ship directly?" icon_state = "cryo_defense_kit" - storage_slots = 3 + storage_slots = 4 /obj/item/storage/box/kit/cryo_self_defense/update_icon() if(LAZYLEN(contents)) @@ -493,6 +500,7 @@ /obj/item/storage/box/kit/cryo_self_defense/fill_preset_inventory() new /obj/item/weapon/gun/pistol/vp70/flashlight(src) new /obj/item/attachable/bayonet(src) + new /obj/item/tool/crowbar/red(src) new /obj/item/reagent_container/food/snacks/packaged_meal(src, pick("boneless pork ribs", "grilled chicken", "pizza square", "spaghetti chunks", "chicken tender")) /obj/item/storage/box/kit/exp_trooper diff --git a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm index 45b3a6859d..1d6cb3be0a 100644 --- a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm +++ b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm @@ -8,6 +8,8 @@ var/datum/cause_data/cause_data ground_offset_x = 7 ground_offset_y = 6 + /// is it currently on fire and about to explode? + var/burning = FALSE /obj/item/mortar_shell/Destroy() @@ -110,7 +112,7 @@ icon_state = initial(icon_state) /obj/item/mortar_shell/custom/attackby(obj/item/W as obj, mob/user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not know how to tinker with [name].")) return if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) @@ -154,6 +156,55 @@ icon_state = initial(icon_state) +"_unlocked" playsound(loc, 'sound/items/Screwdriver2.ogg', 25, 0, 6) +/obj/item/mortar_shell/ex_act(severity, explosion_direction) + if(!burning) + return ..() + +/obj/item/mortar_shell/attack_hand(mob/user) + if(burning) + to_chat(user, SPAN_DANGER("[src] is on fire and might explode!")) + return + return ..() + +/obj/item/mortar_shell/flamer_fire_act(dam, datum/cause_data/flame_cause_data) + addtimer(VARSET_CALLBACK(src, burning, FALSE), 5 SECONDS, TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_DELETE_ME) + + if(burning) + return + burning = TRUE + cause_data = create_cause_data("Burning Mortar Shell", flame_cause_data.resolve_mob(), src) + handle_fire(cause_data) + +/obj/item/mortar_shell/proc/can_explode() + return TRUE + +/obj/item/mortar_shell/custom/can_explode() + for(var/obj/item/reagent_container/glass/container in warhead?.containers) + for(var/datum/reagent/reagent in container?.reagents?.reagent_list) + if(reagent.explosive) + return TRUE + + return FALSE + +/obj/item/mortar_shell/flare/can_explode() + return FALSE + +/obj/item/mortar_shell/proc/handle_fire(cause_data) + if(can_explode()) + visible_message(SPAN_WARNING("[src] catches on fire and starts cooking off! It's gonna blow!")) + anchored = TRUE // don't want other explosions launching it elsewhere + var/datum/effect_system/spark_spread/sparks = new() + sparks.set_up(n = 10, loca = loc) + sparks.start() + new /obj/effect/warning/explosive(loc, 5 SECONDS) + + addtimer(CALLBACK(src, PROC_REF(explode), cause_data), 5 SECONDS) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), (src)), 5.5 SECONDS) + + +/obj/item/mortar_shell/proc/explode(flame_cause_data) + cell_explosion(src, 100, 25, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, flame_cause_data) + /obj/structure/closet/crate/secure/mortar_ammo name = "\improper M402 mortar ammo crate" desc = "A crate containing live mortar shells with various payloads. DO NOT DROP. KEEP AWAY FROM FIRE SOURCES." diff --git a/code/modules/cm_marines/equipment/mortar/mortars.dm b/code/modules/cm_marines/equipment/mortar/mortars.dm index 33f341c9e2..161be48138 100644 --- a/code/modules/cm_marines/equipment/mortar/mortars.dm +++ b/code/modules/cm_marines/equipment/mortar/mortars.dm @@ -31,6 +31,8 @@ var/firing = FALSE /// If set to 1, can't unanchor and move the mortar, used for map spawns and WO var/fixed = FALSE + /// if true, blows up the shell immediately + var/ship_side = FALSE var/obj/structure/machinery/computer/cameras/mortar/internal_camera @@ -41,6 +43,17 @@ targ_y = deobfuscate_y(0) internal_camera = new(loc) + var/new_icon_state + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("classic") + icon_state = new_icon_state ? new_icon_state : "c_" + icon_state + if("desert") + icon_state = new_icon_state ? new_icon_state : "d_" + icon_state + if("snow") + icon_state = new_icon_state ? new_icon_state : "s_" + icon_state + if("urban") + icon_state = new_icon_state ? new_icon_state : "u_" + icon_state + /obj/structure/mortar/Destroy() QDEL_NULL(internal_camera) return ..() @@ -56,28 +69,28 @@ else return FALSE -/obj/structure/mortar/attack_alien(mob/living/carbon/xenomorph/M) - if(islarva(M)) +/obj/structure/mortar/attack_alien(mob/living/carbon/xenomorph/xeno) + if(islarva(xeno)) return XENO_NO_DELAY_ACTION if(fixed) - to_chat(M, SPAN_XENOWARNING("\The [src]'s supports are bolted and welded into the floor. It looks like it's going to be staying there.")) + to_chat(xeno, SPAN_XENOWARNING("\The [src]'s supports are bolted and welded into the floor. It looks like it's going to be staying there.")) return XENO_NO_DELAY_ACTION if(firing) - M.animation_attack_on(src) - M.flick_attack_overlay(src, "slash") + xeno.animation_attack_on(src) + xeno.flick_attack_overlay(src, "slash") playsound(src, "acid_hit", 25, 1) - playsound(M, "alien_help", 25, 1) - M.apply_damage(10, BURN) - M.visible_message(SPAN_DANGER("[M] tried to knock the steaming hot [src] over, but burned itself and pulled away!"), + playsound(xeno, "alien_help", 25, 1) + xeno.apply_damage(10, BURN) + xeno.visible_message(SPAN_DANGER("[xeno] tried to knock the steaming hot [src] over, but burned itself and pulled away!"), SPAN_XENOWARNING("\The [src] is burning hot! Wait a few seconds.")) return XENO_ATTACK_ACTION - M.visible_message(SPAN_DANGER("[M] lashes at \the [src] and knocks it over!"), + xeno.visible_message(SPAN_DANGER("[xeno] lashes at \the [src] and knocks it over!"), SPAN_DANGER("You knock \the [src] over!")) - M.animation_attack_on(src) - M.flick_attack_overlay(src, "slash") + xeno.animation_attack_on(src) + xeno.flick_attack_overlay(src, "slash") playsound(loc, 'sound/effects/metalhit.ogg', 25) var/obj/item/mortar_kit/MK = new /obj/item/mortar_kit(loc) MK.name = name @@ -89,7 +102,7 @@ if(isyautja(user)) to_chat(user, SPAN_WARNING("You kick [src] but nothing happens.")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't have the training to use [src].")) return if(busy) @@ -171,8 +184,8 @@ SPAN_NOTICE("You finish adjusting [src]'s firing angle and distance to match the new coordinates.")) targ_x = deobfuscate_x(temp_targ_x) targ_y = deobfuscate_y(temp_targ_y) - var/offset_x_max = round(abs((targ_x) - x)/offset_per_turfs) //Offset of mortar shot, grows by 1 every 20 tiles travelled - var/offset_y_max = round(abs((targ_y) - y)/offset_per_turfs) + var/offset_x_max = floor(abs((targ_x) - x)/offset_per_turfs) //Offset of mortar shot, grows by 1 every 20 tiles travelled + var/offset_y_max = floor(abs((targ_y) - y)/offset_per_turfs) offset_x = rand(-offset_x_max, offset_x_max) offset_y = rand(-offset_y_max, offset_y_max) @@ -206,37 +219,47 @@ SStgui.update_uis(src) -/obj/structure/mortar/attackby(obj/item/O, mob/user) - if(istype(O, /obj/item/mortar_shell)) - var/obj/item/mortar_shell/mortar_shell = O - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) +/obj/structure/mortar/attackby(obj/item/item, mob/user) + if(istype(item, /obj/item/mortar_shell)) + var/obj/item/mortar_shell/mortar_shell = item + var/turf/target_turf = locate(targ_x + dial_x + offset_x, targ_y + dial_y + offset_y, z) + var/area/target_area = get_area(target_turf) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't have the training to fire [src].")) return if(busy) to_chat(user, SPAN_WARNING("Someone else is currently using [src].")) return - if(targ_x == 0 && targ_y == 0) //Mortar wasn't set - to_chat(user, SPAN_WARNING("[src] needs to be aimed first.")) - return - var/turf/T = locate(targ_x + dial_x + offset_x, targ_y + dial_y + offset_y, z) - if(!T) - to_chat(user, SPAN_WARNING("You cannot fire [src] to this target.")) - return - var/area/A = get_area(T) - if(!istype(A)) - to_chat(user, SPAN_WARNING("This area is out of bounds!")) - return - if(CEILING_IS_PROTECTED(A.ceiling, CEILING_PROTECTION_TIER_2) || protected_by_pylon(TURF_PROTECTION_MORTAR, T)) - to_chat(user, SPAN_WARNING("You cannot hit the target. It is probably underground.")) - return - if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_LZ_PROTECTION) && A.is_landing_zone) - to_chat(user, SPAN_WARNING("You cannot bomb the landing zone!")) - return - - //Small amount of spread so that consecutive mortar shells don't all land on the same tile - var/turf/T1 = locate(T.x + pick(-1,0,0,1), T.y + pick(-1,0,0,1), T.z) - if(T1) - T = T1 + if(!ship_side) + if(targ_x == 0 && targ_y == 0) //Mortar wasn't set + to_chat(user, SPAN_WARNING("[src] needs to be aimed first.")) + return + if(!target_turf) + to_chat(user, SPAN_WARNING("You cannot fire [src] to this target.")) + return + if(!istype(target_area)) + to_chat(user, SPAN_WARNING("This area is out of bounds!")) + return + if(CEILING_IS_PROTECTED(target_area.ceiling, CEILING_PROTECTION_TIER_2) || protected_by_pylon(TURF_PROTECTION_MORTAR, target_turf)) + to_chat(user, SPAN_WARNING("You cannot hit the target. It is probably underground.")) + return + if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_LZ_PROTECTION) && target_area.is_landing_zone) + to_chat(user, SPAN_WARNING("You cannot bomb the landing zone!")) + return + + if(ship_side) + var/crash_occurred = (SSticker?.mode?.is_in_endgame) + if(crash_occurred) + var/turf/our_turf = get_turf(src) + target_turf = our_turf + travel_time = 0.5 SECONDS + else + to_chat(user, SPAN_RED("You realize how bad of an idea this is and quickly stop.")) + return + else + var/turf/deviation_turf = locate(target_turf.x + pick(-1,0,0,1), target_turf.y + pick(-1,0,0,1), target_turf.z) //Small amount of spread so that consecutive mortar shells don't all land on the same tile + if(deviation_turf) + target_turf = deviation_turf user.visible_message(SPAN_NOTICE("[user] starts loading \a [mortar_shell.name] into [src]."), SPAN_NOTICE("You start loading \a [mortar_shell.name] into [src].")) @@ -256,16 +279,16 @@ mortar_shell.cause_data = create_cause_data(initial(mortar_shell.name), user, src) mortar_shell.forceMove(src) - var/turf/G = get_turf(src) - G.ceiling_debris_check(2) + var/turf/mortar_turf = get_turf(src) + mortar_turf.ceiling_debris_check(2) - for(var/mob/M in range(7)) - shake_camera(M, 3, 1) + for(var/mob/mob in range(7)) + shake_camera(mob, 3, 1) - addtimer(CALLBACK(src, PROC_REF(handle_shell), T, mortar_shell), travel_time) + addtimer(CALLBACK(src, PROC_REF(handle_shell), target_turf, mortar_shell), travel_time) - if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't have the training to undeploy [src].")) return if(fixed) @@ -284,11 +307,11 @@ user.visible_message(SPAN_NOTICE("[user] undeploys [src]."), \ SPAN_NOTICE("You undeploy [src].")) playsound(loc, 'sound/items/Deconstruct.ogg', 25, 1) - var/obj/item/mortar_kit/M = new /obj/item/mortar_kit(loc) - M.name = src.name + var/obj/item/mortar_kit/mortar = new /obj/item/mortar_kit(loc) + mortar.name = src.name qdel(src) - if(HAS_TRAIT(O, TRAIT_TOOL_SCREWDRIVER)) + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) if(do_after(user, 1 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) user.visible_message(SPAN_NOTICE("[user] toggles the targeting computer on [src]."), \ SPAN_NOTICE("You toggle the targeting computer on [src].")) @@ -300,29 +323,45 @@ if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) qdel(src) +/obj/effect/mortar_effect + icon = 'icons/obj/structures/mortar.dmi' + icon_state = "mortar_ammo_custom" + mouse_opacity = MOUSE_OPACITY_TRANSPARENT + invisibility = INVISIBILITY_MAXIMUM + /obj/structure/mortar/proc/handle_shell(turf/target, obj/item/mortar_shell/shell) if(protected_by_pylon(TURF_PROTECTION_MORTAR, target)) firing = FALSE return + if(ship_side) + var/turf/our_turf = get_turf(src) + shell.detonate(our_turf) + return + + if(istype(shell, /obj/item/mortar_shell/custom)) // big shell warning for ghosts + var/obj/effect/effect = new /obj/effect/mortar_effect(target) + QDEL_IN(effect, 5 SECONDS) + notify_ghosts(header = "Custom Shell", message = "A custom mortar shell is about to land at [get_area(target)].", source = effect) + playsound(target, 'sound/weapons/gun_mortar_travel.ogg', 50, 1) var/relative_dir - for(var/mob/M in range(15, target)) - if(get_turf(M) == target) + for(var/mob/mob in range(15, target)) + if(get_turf(mob) == target) relative_dir = 0 else - relative_dir = get_dir(M, target) - M.show_message( \ + relative_dir = Get_Compass_Dir(mob, target) + mob.show_message( \ SPAN_DANGER("A SHELL IS COMING DOWN [SPAN_UNDERLINE(relative_dir ? uppertext(("TO YOUR " + dir2text(relative_dir))) : uppertext("right above you"))]!"), SHOW_MESSAGE_VISIBLE, \ SPAN_DANGER("YOU HEAR SOMETHING COMING DOWN [SPAN_UNDERLINE(relative_dir ? uppertext(("TO YOUR " + dir2text(relative_dir))) : uppertext("right above you"))]!"), SHOW_MESSAGE_AUDIBLE \ ) sleep(2.5 SECONDS) // Sleep a bit to give a message - for(var/mob/M in range(10, target)) - if(get_turf(M) == target) + for(var/mob/mob in range(10, target)) + if(get_turf(mob) == target) relative_dir = 0 else - relative_dir = get_dir(M, target) - M.show_message( \ + relative_dir = Get_Compass_Dir(mob, target) + mob.show_message( \ SPAN_HIGHDANGER("A SHELL IS ABOUT TO IMPACT [SPAN_UNDERLINE(relative_dir ? uppertext(("TO YOUR " + dir2text(relative_dir))) : uppertext("right above you"))]!"), SHOW_MESSAGE_VISIBLE, \ SPAN_HIGHDANGER("YOU HEAR SOMETHING VERY CLOSE COMING DOWN [SPAN_UNDERLINE(relative_dir ? uppertext(("TO YOUR " + dir2text(relative_dir))) : uppertext("right above you"))]!"), SHOW_MESSAGE_AUDIBLE \ ) @@ -335,6 +374,9 @@ /obj/structure/mortar/proc/can_fire_at(mob/user, test_targ_x = targ_x, test_targ_y = targ_y, test_dial_x, test_dial_y) var/dialing = test_dial_x || test_dial_y + if(ship_side) + to_chat(user, SPAN_WARNING("You cannot aim the mortar while on a ship.")) + return FALSE if(test_dial_x + test_targ_x > world.maxx || test_dial_x + test_targ_x < 0) to_chat(user, SPAN_WARNING("You cannot [dialing ? "dial to" : "aim at"] this coordinate, it is outside of the area of operations.")) return FALSE @@ -369,6 +411,10 @@ unacidable = TRUE w_class = SIZE_HUGE //No dumping this in a backpack. Carry it, fatso +/obj/item/mortar_kit/Initialize(...) + . = ..() + select_gamemode_skin(type) + /obj/item/mortar_kit/ex_act(severity) switch(severity) if(EXPLOSION_THRESHOLD_MEDIUM to INFINITY) @@ -379,21 +425,26 @@ var/turf/deploy_turf = get_turf(user) if(!deploy_turf) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't have the training to deploy [src].")) return - var/area/A = get_area(deploy_turf) - if(CEILING_IS_PROTECTED(A.ceiling, CEILING_PROTECTION_TIER_1)) + var/area/area = get_area(deploy_turf) + if(CEILING_IS_PROTECTED(area.ceiling, CEILING_PROTECTION_TIER_1) && is_ground_level(deploy_turf.z)) to_chat(user, SPAN_WARNING("You probably shouldn't deploy [src] indoors.")) return user.visible_message(SPAN_NOTICE("[user] starts deploying [src]."), \ SPAN_NOTICE("You start deploying [src].")) playsound(deploy_turf, 'sound/items/Deconstruct.ogg', 25, 1) if(do_after(user, 4 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - user.visible_message(SPAN_NOTICE("[user] deploys [src]."), \ - SPAN_NOTICE("You deploy [src].")) + var/obj/structure/mortar/mortar = new /obj/structure/mortar(deploy_turf) + if(!is_ground_level(deploy_turf.z)) + mortar.ship_side = TRUE + user.visible_message(SPAN_NOTICE("[user] deploys [src]."), \ + SPAN_NOTICE("You deploy [src]. This is a bad idea.")) + else + user.visible_message(SPAN_NOTICE("[user] deploys [src]."), \ + SPAN_NOTICE("You deploy [src].")) playsound(deploy_turf, 'sound/weapons/gun_mortar_unpack.ogg', 25, 1) - var/obj/structure/mortar/M = new /obj/structure/mortar(deploy_turf) - M.name = src.name - M.setDir(user.dir) + mortar.name = src.name + mortar.setDir(user.dir) qdel(src) diff --git a/code/modules/cm_marines/equipment/weapons.dm b/code/modules/cm_marines/equipment/weapons.dm index 858b9dbeb7..076aa37a0f 100644 --- a/code/modules/cm_marines/equipment/weapons.dm +++ b/code/modules/cm_marines/equipment/weapons.dm @@ -2,26 +2,27 @@ /obj/item/storage/box/m56_system name = "\improper M56 smartgun system case" desc = "A large case containing an M56B Smartgun, M56 combat harness, head mounted sight and powerpack.\nDrag this sprite into you to open it up! NOTE: You cannot put items back inside this case." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "kit_case" w_class = SIZE_HUGE - storage_slots = 4 + storage_slots = 7 slowdown = 1 can_hold = list() //Nada. Once you take the stuff out it doesn't fit back in. foldable = null /obj/item/storage/box/m56_system/Initialize() . = ..() - new /obj/item/clothing/glasses/night/m56_goggles(src) + new /obj/item/clothing/suit/storage/marine/smartgunner(src) new /obj/item/weapon/gun/smartgun(src) + new /obj/item/clothing/glasses/night/m56_goggles(src) new /obj/item/smartgun_battery(src) - new /obj/item/clothing/suit/storage/marine/smartgunner(src) + for(var/i in 1 to 3) + new /obj/item/ammo_magazine/smartgun(src) update_icon() /obj/item/storage/box/m56_system/update_icon() - if(overlays.len) - overlays.Cut() - if(contents.len) + LAZYCLEARLIST(overlays) + if(length(contents)) icon_state = "kit_case" overlays += image(icon, "smartgun") else @@ -30,7 +31,7 @@ /obj/item/storage/box/m56c_system name = "\improper M56C smartgun system case" desc = "A large case containing an M56C Smartgun, M56 combat harness, head mounted sight, M280 Smartgunner Drum Belt and powerpack.\nDrag this sprite into you to open it up! NOTE: You cannot put items back inside this case." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "kit_case" w_class = SIZE_HUGE storage_slots = 5 @@ -48,9 +49,8 @@ update_icon() /obj/item/storage/box/m56c_system/update_icon() - if(overlays.len) - overlays.Cut() - if(contents.len) + LAZYCLEARLIST(overlays) + if(length(contents)) icon_state = "kit_case" overlays += image(icon, "smartgun") else @@ -59,7 +59,7 @@ /obj/item/storage/box/m56_dirty_system name = "\improper M56D 'Dirty' smartgun system case" desc = "A large case containing an M56D 'Dirty' Smartgun, M56D PMC combat harness and helmet, head mounted sight, M280 Smartgunner Drum Belt and powerpack.\nDrag this sprite into you to open it up! NOTE: You cannot put items back inside this case." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "kit_case" w_class = SIZE_HUGE storage_slots = 6 @@ -78,9 +78,8 @@ update_icon() /obj/item/storage/box/m56_dirty_system/update_icon() - if(overlays.len) - overlays.Cut() - if(contents.len) + LAZYCLEARLIST(overlays) + if(length(contents)) icon_state = "kit_case" overlays += image(icon, "smartgun") else diff --git a/code/modules/cm_marines/m2c.dm b/code/modules/cm_marines/m2c.dm index ff16c924cd..9afca5ae1f 100644 --- a/code/modules/cm_marines/m2c.dm +++ b/code/modules/cm_marines/m2c.dm @@ -73,7 +73,7 @@ icon_state = icon_name /obj/item/device/m2c_gun/proc/check_can_setup(mob/user, turf/rotate_check, turf/open/OT, list/ACR) - if(!ishuman(user)) + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return FALSE if(broken_gun) to_chat(user, SPAN_WARNING("You can't set up \the [src], it's completely broken!")) @@ -131,23 +131,24 @@ if(!check_can_setup(user, rotate_check, OT, ACR)) return - var/obj/structure/machinery/m56d_hmg/auto/M = new /obj/structure/machinery/m56d_hmg/auto(user.loc) - transfer_label_component(M) - M.setDir(user.dir) // Make sure we face the right direction - M.anchored = TRUE - playsound(M, 'sound/items/m56dauto_setup.ogg', 75, TRUE) - to_chat(user, SPAN_NOTICE("You deploy [M].")) - if((rounds > 0) && !user.get_inactive_hand()) - user.set_interaction(M) - give_action(user, /datum/action/human_action/mg_exit) - M.rounds = rounds - M.overheat_value = overheat_value - M.health = health - M.update_icon() + var/obj/structure/machinery/m56d_hmg/auto/HMG = new(user.loc) + transfer_label_component(HMG) + HMG.setDir(user.dir) // Make sure we face the right direction + HMG.anchored = TRUE + playsound(HMG, 'sound/items/m56dauto_setup.ogg', 75, TRUE) + to_chat(user, SPAN_NOTICE("You deploy [HMG].")) + HMG.rounds = rounds + HMG.overheat_value = overheat_value + HMG.health = health + HMG.update_damage_state() + HMG.update_icon() qdel(src) + if(HMG.rounds > 0) + HMG.try_mount_gun(user) + /obj/item/device/m2c_gun/attackby(obj/item/O as obj, mob/user as mob) - if(!ishuman(user)) + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return if(!iswelder(O) || user.action_busy) @@ -313,12 +314,13 @@ if(health <= 0) playsound(src.loc, 'sound/items/Welder2.ogg', 25, 1) visible_message(SPAN_WARNING("[src] has broken down completely!")) - var/obj/item/device/m2c_gun/HMG = new(src.loc) + var/obj/item/device/m2c_gun/HMG = new(loc) HMG.rounds = rounds HMG.broken_gun = TRUE HMG.unacidable = FALSE HMG.health = 0 HMG.update_icon() + transfer_label_component(HMG) qdel(src) return @@ -328,7 +330,7 @@ update_icon() /obj/structure/machinery/m56d_hmg/auto/attackby(obj/item/O as obj, mob/user as mob) - if(!ishuman(user)) + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return // RELOADING if(istype(O, /obj/item/ammo_magazine/m2c)) @@ -367,7 +369,7 @@ return user.visible_message(SPAN_NOTICE("[user] repairs some of the damage on [src]."), \ SPAN_NOTICE("You repair [src].")) - update_health(-round(health_max*0.2)) + update_health(-floor(health_max*0.2)) playsound(src.loc, 'sound/items/Welder2.ogg', 25, 1) else to_chat(user, SPAN_WARNING("You need more fuel in [WT] to repair damage to [src].")) @@ -420,7 +422,7 @@ /obj/structure/machinery/m56d_hmg/auto/proc/force_cooldown(mob/user) user = operator - overheat_value = round((rand(M2C_LOW_COOLDOWN_ROLL, M2C_HIGH_COOLDOWN_ROLL) * overheat_threshold)) + overheat_value = floor((rand(M2C_LOW_COOLDOWN_ROLL, M2C_HIGH_COOLDOWN_ROLL) * overheat_threshold)) playsound(src.loc, 'sound/weapons/hmg_cooling.ogg', 75, 1) to_chat(user, SPAN_NOTICE("[src]'s barrel has cooled down enough to restart firing.")) emergency_cooling = FALSE @@ -446,40 +448,20 @@ //ATTACK WITH BOTH HANDS COMBO /obj/structure/machinery/m56d_hmg/auto/attack_hand(mob/living/user) - ..() + if(..()) + return TRUE - var/turf/user_turf = get_turf(user) - for(var/opp_dir in reverse_nearby_direction(src.dir)) - if(get_step(src, opp_dir) == user_turf) - if(operator) //If there is already a operator then they're manning it. - if(operator.interactee == null) - operator = null //this shouldn't happen, but just in case - else - to_chat(user, "Someone's already controlling it.") - return - if(!(user.alpha > 60)) - to_chat(user, SPAN_WARNING("You aren't going to be setting up while cloaked.")) - return - else - if(user.interactee) //Make sure we're not manning two guns at once, tentacle arms. - to_chat(user, "You're already manning something!") - return - - if(user.get_active_hand() == null && user.get_inactive_hand() == null) - ADD_TRAIT(user, TRAIT_IMMOBILIZED, INTERACTION_TRAIT) - user.set_interaction(src) - give_action(user, /datum/action/human_action/mg_exit) - else - to_chat(usr, SPAN_NOTICE("Your hands are too busy holding things to grab the handles!")) - else - to_chat(usr, SPAN_NOTICE("You are too far from the handles to man [src]!")) + try_mount_gun(user) // DISASSEMBLY /obj/structure/machinery/m56d_hmg/auto/MouseDrop(over_object, src_location, over_location) - if(!ishuman(usr)) return - var/mob/living/carbon/human/user = usr - + var/mob/living/carbon/user = usr + // If the user is unconscious or dead. + if(user.stat) + return + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) + return if(over_object == user && in_range(src, user)) if((rounds > 0) && (user.a_intent & (INTENT_GRAB))) playsound(src.loc, 'sound/items/m56dauto_load.ogg', 75, 1) @@ -494,10 +476,10 @@ return user.visible_message(SPAN_NOTICE("[user] disassembles [src]."),SPAN_NOTICE("You fold up the tripod for [src], disassembling it.")) playsound(src.loc, 'sound/items/m56dauto_setup.ogg', 75, 1) - var/obj/item/device/m2c_gun/HMG = new(src.loc) + var/obj/item/device/m2c_gun/HMG = new(loc) transfer_label_component(HMG) - HMG.rounds = src.rounds - HMG.overheat_value = round(0.5 * src.overheat_value) + HMG.rounds = rounds + HMG.overheat_value = floor(0.5 * overheat_value) if (HMG.overheat_value <= 10) HMG.overheat_value = 0 HMG.update_icon() @@ -515,7 +497,6 @@ ..() ADD_TRAIT(user, TRAIT_OVERRIDE_CLICKDRAG, TRAIT_SOURCE_WEAPON) RegisterSignal(user, COMSIG_MOVABLE_PRE_MOVE, PROC_REF(disable_interaction)) - RegisterSignal(user, COMSIG_LIVING_SET_BODY_POSITION, PROC_REF(body_position_changed)) // DISMOUNT THE MG @@ -554,7 +535,7 @@ animate(user, pixel_x=diff_x, pixel_y=diff_y, 0.4 SECONDS) else if(user.client) - user.client.change_view(world_view_size) + user.client.change_view(GLOB.world_view_size) user.client.pixel_x = 0 user.client.pixel_y = 0 @@ -601,12 +582,6 @@ if(user.body_position != STANDING_UP || get_dist(user,src) > 0 || user.is_mob_incapacitated() || !user.client) user.unset_interaction() -/obj/structure/machinery/m56d_hmg/auto/proc/body_position_changed(mob/living/user, body_position, old_body_position) - SIGNAL_HANDLER - - if(body_position != STANDING_UP) - user.unset_interaction() - /obj/structure/machinery/m56d_hmg/auto/proc/handle_rotating_gun(mob/user) var/angle = get_dir(src, target) if(world.time > rotate_timer && !((dir & angle) && target.loc != src.loc && target.loc != operator.loc)) diff --git a/code/modules/cm_marines/marines_consoles.dm b/code/modules/cm_marines/marines_consoles.dm index 14911faf85..12294e78aa 100644 --- a/code/modules/cm_marines/marines_consoles.dm +++ b/code/modules/cm_marines/marines_consoles.dm @@ -8,6 +8,14 @@ #define CARDCON_DEPARTMENT_ENGINEERING "Engineering" #define CARDCON_DEPARTMENT_COMMAND "Command" +// Weyland Yutani Categories +#define CARDCON_DEPARTMENT_CORP_LEAD "Corporate Leadership" +#define CARDCON_DEPARTMENT_CORP_SECURITY "Corporate Security" +#define CARDCON_DEPARTMENT_CORPORATE "Corporate Employees" +#define CARDCON_DEPARTMENT_PMC "PMC Combat Ops" +#define CARDCON_DEPARTMENT_INSPECTION "PMC Investigations" +#define CARDCON_DEPARTMENT_SPECIALTY "PMC Specialists" + /obj/structure/machinery/computer/card name = "Identification Computer" desc = "Terminal for programming USCM employee ID card access." @@ -20,9 +28,14 @@ var/list/factions = list(FACTION_MARINE) var/printing - var/is_centcom = FALSE + var/is_weyland = FALSE var/authenticated = FALSE +/obj/structure/machinery/computer/card/wey_yu + is_weyland = TRUE + req_access = list(ACCESS_WY_DATABASE) + factions = list(FACTION_WY, FACTION_PMC) + /obj/structure/machinery/computer/card/proc/authenticate(mob/user, obj/item/card/id/id_card) if(!id_card) visible_message("[SPAN_BOLD("[src]")] states, \"AUTH ERROR: Authority confirmation card is missing!\"") @@ -43,12 +56,12 @@ ui = new(user, src, "CardMod", name) ui.open() -/obj/structure/machinery/computer/card/ui_act(action, params) +/obj/structure/machinery/computer/card/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) . = ..() if(.) return - var/mob/user = usr + var/mob/user = ui.user playsound(src, pick('sound/machines/computer_typing4.ogg', 'sound/machines/computer_typing5.ogg', 'sound/machines/computer_typing6.ogg'), 5, 1) switch(action) @@ -91,18 +104,11 @@ printing = TRUE playsound(src.loc, 'sound/machines/fax.ogg', 15, 1) sleep(40) - var/faction = "N/A" - if(target_id_card.faction_group && islist(target_id_card.faction_group)) - faction = jointext(target_id_card.faction_group, ", ") - if(isnull(target_id_card.faction_group)) - target_id_card.faction_group = list() - else - faction = target_id_card.faction_group var/contents = {"

      Access Report

      Prepared By: [user_id_card?.registered_name ? user_id_card.registered_name : "Unknown"]
      For: [target_id_card.registered_name ? target_id_card.registered_name : "Unregistered"]

      - Faction: [faction]
      + Faction: [target_id_card.faction ? target_id_card.faction : "N/A"]
      Assignment: [target_id_card.assignment]
      Account Number: #[target_id_card.associated_account_number]
      Blood Type: [target_id_card.blood_type]

      @@ -112,7 +118,10 @@ var/known_access_rights = get_access(ACCESS_LIST_MARINE_ALL) for(var/A in target_id_card.access) if(A in known_access_rights) - contents += " [get_access_desc(A)]" + contents += " [get_access_desc(A)]
      " + contents += "
      Modification Log:
      " + for(var/change in target_id_card.modification_log) + contents += " [change]
      " var/obj/item/paper/P = new /obj/item/paper(src.loc) P.name = "Access Report" @@ -139,9 +148,9 @@ GLOB.data_core.manifest_modify(target_id_card.registered_name, target_id_card.registered_ref, target_id_card.assignment, target_id_card.rank) target_id_card.name = text("[target_id_card.registered_name]'s [target_id_card.card_name] ([target_id_card.assignment])") if(target_id_card.registered_name != origin_name) - log_idmod(target_id_card, " [key_name_admin(usr)] changed the registered name of the ID to '[target_id_card.registered_name]'. ") + log_idmod(target_id_card, " [user.real_name] changed the registered name of the ID to '[target_id_card.registered_name]'. ", key_name_admin(user)) if(target_id_card.assignment != origin_assignment) - log_idmod(target_id_card, " [key_name_admin(usr)] changed the assignment of the ID to the custom position '[target_id_card.assignment]'. ") + log_idmod(target_id_card, " [user.real_name] changed the assignment of the ID to the custom position '[target_id_card.assignment]'. ", key_name_admin(user)) if(ishuman(user)) target_id_card.forceMove(user.loc) if(!user.get_active_hand()) @@ -170,8 +179,8 @@ target_id_card.assignment = "Terminated" target_id_card.access = list() - log_idmod(target_id_card, " [key_name_admin(usr)] terminated the ID. ") - message_admins("[key_name_admin(usr)] terminated the ID of [target_id_card.registered_name].") + log_idmod(target_id_card, " [user.real_name] terminated the ID. ", key_name_admin(user)) + message_admins("[user.real_name] terminated the ID of [target_id_card.registered_name].", key_name_admin(user)) return TRUE if("PRG_edit") if(!authenticated || !target_id_card) @@ -196,10 +205,10 @@ target_id_card.assignment = custom_name else var/list/new_access = list() - if(is_centcom) + if(is_weyland) new_access = get_access(ACCESS_LIST_WY_ALL) else - var/datum/job/job = RoleAuthority.roles_for_mode[target] + var/datum/job/job = GLOB.RoleAuthority.roles_for_mode[target] if(!job) visible_message("[SPAN_BOLD("[src]")] states, \"DATA ERROR: Can not find next entry in database: [target]\"") @@ -221,27 +230,27 @@ target_id_card.faction_group = list() if(params["access_target"] in target_id_card.faction_group) target_id_card.faction_group -= params["access_target"] - log_idmod(target_id_card, " [key_name_admin(usr)] revoked [access_type] IFF. ") + log_idmod(target_id_card, " [user.real_name] revoked [access_type] IFF. ", key_name_admin(user)) else target_id_card.faction_group |= params["access_target"] - log_idmod(target_id_card, " [key_name_admin(usr)] granted [access_type] IFF. ") + log_idmod(target_id_card, " [user.real_name] granted [access_type] IFF. ", key_name_admin(user)) return TRUE access_type = text2num(params["access_target"]) - if(access_type in (is_centcom ? get_access(ACCESS_LIST_WY_ALL) : get_access(ACCESS_LIST_MARINE_MAIN))) + if(access_type in (is_weyland ? get_access(ACCESS_LIST_WY_ALL) : get_access(ACCESS_LIST_MARINE_MAIN))) if(access_type in target_id_card.access) target_id_card.access -= access_type - log_idmod(target_id_card, " [key_name_admin(usr)] revoked access '[access_type]'. ") + log_idmod(target_id_card, " [user.real_name] revoked access '[get_access_desc(access_type)]'. ", key_name_admin(user)) else target_id_card.access |= access_type - log_idmod(target_id_card, " [key_name_admin(usr)] granted access '[access_type]'. ") + log_idmod(target_id_card, " [user.real_name] granted access '[get_access_desc(access_type)]'. ", key_name_admin(user)) return TRUE if("PRG_grantall") if(!authenticated || !target_id_card) return - target_id_card.access |= (is_centcom ? get_access(ACCESS_LIST_WY_ALL) : get_access(ACCESS_LIST_MARINE_MAIN)) + target_id_card.access |= (is_weyland ? get_access(ACCESS_LIST_WY_ALL) : get_access(ACCESS_LIST_MARINE_MAIN)) target_id_card.faction_group |= factions - log_idmod(target_id_card, " [key_name_admin(usr)] granted the ID all access and USCM IFF. ") + log_idmod(target_id_card, " [user.real_name] granted the ID all access and USCM IFF. ", key_name_admin(user)) return TRUE if("PRG_denyall") if(!authenticated || !target_id_card) @@ -250,7 +259,7 @@ var/list/access = target_id_card.access access.Cut() target_id_card.faction_group -= factions - log_idmod(target_id_card, " [key_name_admin(usr)] removed all accesses and USCM IFF. ") + log_idmod(target_id_card, " [user.real_name] removed all accesses and USCM IFF. ", key_name_admin(user)) return TRUE if("PRG_grantregion") if(!authenticated || !target_id_card) @@ -258,14 +267,14 @@ if(params["region"] == "Faction (IFF system)") target_id_card.faction_group |= factions - log_idmod(target_id_card, " [key_name_admin(usr)] granted USCM IFF. ") + log_idmod(target_id_card, " [user.real_name] granted USCM IFF. ", key_name_admin(user)) return TRUE var/region = text2num(params["region"]) if(isnull(region)) return target_id_card.access |= get_region_accesses(region) var/additions = get_region_accesses_name(region) - log_idmod(target_id_card, " [key_name_admin(usr)] granted all [additions] accesses. ") + log_idmod(target_id_card, " [user.real_name] granted all [additions] accesses. ", key_name_admin(user)) return TRUE if("PRG_denyregion") if(!authenticated || !target_id_card) @@ -273,14 +282,14 @@ if(params["region"] == "Faction (IFF system)") target_id_card.faction_group -= factions - log_idmod(target_id_card, " [key_name_admin(usr)] revoked USCM IFF. ") + log_idmod(target_id_card, " [user.real_name] revoked USCM IFF. ", key_name_admin(user)) return TRUE var/region = text2num(params["region"]) if(isnull(region)) return target_id_card.access -= get_region_accesses(region) var/additions = get_region_accesses_name(region) - log_idmod(target_id_card, " [key_name_admin(usr)] revoked all [additions] accesses. ") + log_idmod(target_id_card, " [user.real_name] revoked all [additions] accesses. ", key_name_admin(user)) return TRUE if("PRG_account") if(!authenticated || !target_id_card) @@ -288,40 +297,47 @@ var/account = text2num(params["account"]) target_id_card.associated_account_number = account - log_idmod(target_id_card, " [key_name_admin(usr)] changed the account number to '[account]'. ") + log_idmod(target_id_card, " [user.real_name] changed the account number to '[account]'. ", key_name_admin(user)) return TRUE /obj/structure/machinery/computer/card/ui_static_data(mob/user) var/list/data = list() - data["station_name"] = station_name - data["centcom_access"] = is_centcom + data["station_name"] = MAIN_SHIP_NAME + data["weyland_access"] = is_weyland data["manifest"] = GLOB.data_core.get_manifest(FALSE, FALSE, TRUE) var/list/departments - if(is_centcom) - departments = list("CentCom" = get_all_centcom_jobs()) + if(is_weyland) + departments = list( + CARDCON_DEPARTMENT_CORP_LEAD = ROLES_WY_LEADERSHIP, + CARDCON_DEPARTMENT_CORP_SECURITY = ROLES_WY_GOONS, + CARDCON_DEPARTMENT_CORPORATE = ROLES_WY_CORPORATE, + CARDCON_DEPARTMENT_PMC = ROLES_WY_PMC, + CARDCON_DEPARTMENT_SPECIALTY = ROLES_WY_PMC_AUX, + CARDCON_DEPARTMENT_INSPECTION = ROLES_WY_PMC_INSPEC, + ) else if(Check_WO()) // I am not sure about WOs departments so it may need adjustment departments = list( - CARDCON_DEPARTMENT_COMMAND = ROLES_CIC & ROLES_WO, - CARDCON_DEPARTMENT_AUXCOM = ROLES_AUXIL_SUPPORT & ROLES_WO, - CARDCON_DEPARTMENT_MISC = ROLES_MISC & ROLES_WO, - CARDCON_DEPARTMENT_SECURITY = ROLES_POLICE & ROLES_WO, - CARDCON_DEPARTMENT_ENGINEERING = ROLES_ENGINEERING & ROLES_WO, - CARDCON_DEPARTMENT_SUPPLY = ROLES_REQUISITION & ROLES_WO, - CARDCON_DEPARTMENT_MEDICAL = ROLES_MEDICAL & ROLES_WO, - CARDCON_DEPARTMENT_MARINE = ROLES_MARINES + CARDCON_DEPARTMENT_COMMAND = GLOB.ROLES_CIC & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_AUXCOM = GLOB.ROLES_AUXIL_SUPPORT & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MISC = GLOB.ROLES_MISC & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_SECURITY = GLOB.ROLES_POLICE & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_ENGINEERING = GLOB.ROLES_ENGINEERING & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_SUPPLY = GLOB.ROLES_REQUISITION & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MEDICAL = GLOB.ROLES_MEDICAL & GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MARINE = GLOB.ROLES_MARINES ) else departments = list( - CARDCON_DEPARTMENT_COMMAND = ROLES_CIC - ROLES_WO, - CARDCON_DEPARTMENT_AUXCOM = ROLES_AUXIL_SUPPORT - ROLES_WO, - CARDCON_DEPARTMENT_MISC = ROLES_MISC - ROLES_WO, - CARDCON_DEPARTMENT_SECURITY = ROLES_POLICE - ROLES_WO, - CARDCON_DEPARTMENT_ENGINEERING = ROLES_ENGINEERING - ROLES_WO, - CARDCON_DEPARTMENT_SUPPLY = ROLES_REQUISITION - ROLES_WO, - CARDCON_DEPARTMENT_MEDICAL = ROLES_MEDICAL - ROLES_WO, - CARDCON_DEPARTMENT_MARINE = ROLES_MARINES + CARDCON_DEPARTMENT_COMMAND = GLOB.ROLES_CIC - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_AUXCOM = GLOB.ROLES_AUXIL_SUPPORT - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MISC = GLOB.ROLES_MISC - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_SECURITY = GLOB.ROLES_POLICE - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_ENGINEERING = GLOB.ROLES_ENGINEERING - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_SUPPLY = GLOB.ROLES_REQUISITION - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MEDICAL = GLOB.ROLES_MEDICAL - GLOB.ROLES_WO, + CARDCON_DEPARTMENT_MARINE = GLOB.ROLES_MARINES ) data["jobs"] = list() for(var/department in departments) @@ -336,18 +352,26 @@ data["jobs"][department] = department_jobs var/list/regions = list() - for(var/i in 1 to 7) + for(var/i in 1 to is_weyland ? 6 : 7) var/list/accesses = list() - for(var/access in get_region_accesses(i)) - if (get_access_desc(access)) - accesses += list(list( - "desc" = replacetext(get_access_desc(access), " ", " "), - "ref" = access, - )) + if(!is_weyland) + for(var/access in get_region_accesses(i)) + if(get_access_desc(access)) + accesses += list(list( + "desc" = replacetext(get_access_desc(access), " ", " "), + "ref" = access, + )) + else + for(var/access in get_region_accesses_wy(i)) + if(get_weyland_access_desc(access)) + accesses += list(list( + "desc" = replacetext(get_weyland_access_desc(access), " ", " "), + "ref" = access, + )) regions += list(list( - "name" = get_region_accesses_name(i), + "name" = is_weyland ? get_region_accesses_name_wy(i) : get_region_accesses_name(i), "regid" = i, "accesses" = accesses )) @@ -376,7 +400,7 @@ /obj/structure/machinery/computer/card/ui_data(mob/user) var/list/data = list() - data["station_name"] = station_name + data["station_name"] = MAIN_SHIP_NAME data["authenticated"] = authenticated data["has_id"] = !!target_id_card @@ -479,6 +503,13 @@ #undef CARDCON_DEPARTMENT_ENGINEERING #undef CARDCON_DEPARTMENT_COMMAND +#undef CARDCON_DEPARTMENT_CORP_LEAD +#undef CARDCON_DEPARTMENT_CORP_SECURITY +#undef CARDCON_DEPARTMENT_CORPORATE +#undef CARDCON_DEPARTMENT_PMC +#undef CARDCON_DEPARTMENT_INSPECTION +#undef CARDCON_DEPARTMENT_SPECIALTY + //This console changes a marine's squad. It's very simple. //It also does not: change or increment the squad count (used in the login randomizer), nor does it check for jobs. //Which means you could get sillyiness like "Alpha Sulaco Chief Medical Officer" or "Delta Logistics Officer". @@ -560,7 +591,7 @@ var/datum/squad/selected = get_squad_by_name(params["name"]) if(!selected) return - if(RoleAuthority.check_squad_capacity(person_to_modify, selected)) + if(GLOB.RoleAuthority.check_squad_capacity(person_to_modify, selected)) visible_message("[SPAN_BOLD("[src]")] states, \"CAPACITY ERROR: [selected] can't have another [person_to_modify.job].\"") return TRUE if(transfer_marine_to_squad(person_to_modify, selected, person_to_modify.assigned_squad, ID_to_modify)) @@ -594,7 +625,7 @@ /obj/structure/machinery/computer/squad_changer/ui_static_data(mob/user) var/list/data = list() var/list/squads = list() - for(var/datum/squad/current_squad in RoleAuthority.squads) + for(var/datum/squad/current_squad in GLOB.RoleAuthority.squads) if(current_squad.name != "Root" && !current_squad.locked && current_squad.active && current_squad.faction == faction) var/list/squad = list(list( "name" = current_squad.name, @@ -728,7 +759,10 @@ /obj/structure/machinery/computer/crew/clf faction = FACTION_CLF -/obj/structure/machinery/computer/crew/pmc +/obj/structure/machinery/computer/crew/wey_yu + faction = FACTION_WY + +/obj/structure/machinery/computer/crew/wey_yu/pmc faction = FACTION_PMC /obj/structure/machinery/computer/crew/colony @@ -771,7 +805,7 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) ui.open() /datum/crewmonitor/proc/show(mob/M, source) - if(!ui_sources.len) + if(!length(ui_sources)) START_PROCESSING(SSprocessing, src) ui_sources[M] = source tgui_interact(M) @@ -789,7 +823,7 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) /datum/crewmonitor/ui_close(mob/M) . = ..() ui_sources -= M - if(!ui_sources.len) + if(!length(ui_sources)) STOP_PROCESSING(SSprocessing, src) /datum/crewmonitor/ui_host(mob/user) @@ -798,7 +832,7 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) /datum/crewmonitor/ui_data(mob/user) . = list( "sensors" = update_data(), - "link_allowed" = isAI(user), + "link_allowed" = isSilicon(user), ) /datum/crewmonitor/proc/update_data() @@ -819,7 +853,7 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) var/turf/pos = get_turf(H) if(!pos) continue - if(is_admin_level(pos.z)) + if(should_block_game_interaction(H)) continue // The entry for this human @@ -868,26 +902,17 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) return results +/* + * Unimplemented. Was for AIs tracking but we never had them working. + * /datum/crewmonitor/ui_act(action,params) . = ..() if(.) return switch (action) if ("select_person") - // May work badly cause currently there is no player-controlled AI - var/mob/living/silicon/ai/AI = usr - if(!istype(AI)) - return - var/mob/living/carbon/human/H - for(var/entry in data) - if(entry["name"] == params["name"]) - H = locate(entry["ref"]) - break - if(!H) // Sanity check - to_chat(AI, SPAN_NOTICE("ERROR: unable to track subject with ID '[params["name"]]'")) - else - // We do not care is there camera or no - we just know his location - AI.ai_actual_track(H) + +*/ /datum/crewmonitor/proc/setup_for_faction(set_faction = FACTION_MARINE) switch(set_faction) @@ -900,9 +925,11 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) JOB_PROVOST_CMARSHAL = 00, JOB_GENERAL = 00, JOB_PROVOST_SMARSHAL = 01,//Grade O9 - JOB_PROVOST_MARSHAL = 02,//Grade O8 + JOB_PROVOST_MARSHAL = 02,//Grade O7 + JOB_PROVOST_DMARSHAL = 03,//Grade O6 JOB_COLONEL = 04,//Grade O6 - JOB_PROVOST_INSPECTOR = 04, + JOB_PROVOST_CINSPECTOR = 05, + JOB_PROVOST_INSPECTOR = 06, // 10-19: Command JOB_CO = 10, JOB_XO = 11, @@ -913,9 +940,11 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) // 20-29: Aux Command JOB_AUXILIARY_OFFICER = 20, JOB_SYNTH = 21, - JOB_PILOT = 22, - JOB_DROPSHIP_CREW_CHIEF = 23, - JOB_INTEL = 24, + JOB_CAS_PILOT = 22, + JOB_DROPSHIP_PILOT = 23, + JOB_DROPSHIP_CREW_CHIEF = 24, + JOB_INTEL = 25, + JOB_TANK_CREW = 26, // 30-39: Security JOB_CHIEF_POLICE = 30, JOB_PROVOST_TML = 30, @@ -1005,7 +1034,7 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) RAIDER_SQUAD = 131, ) var/squad_number = 70 - for(var/squad_name in ROLES_SQUAD_ALL + "") + for(var/squad_name in GLOB.ROLES_SQUAD_ALL + "") if(!squad_name) squad_number = 120 else squad_name += " " jobs += list( @@ -1041,7 +1070,8 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) JOB_JUNIOR_EXECUTIVE = 24, // 30-39: Security JOB_WY_GOON_LEAD = 30, - JOB_WY_GOON = 31, + JOB_WY_GOON_TECH = 32, + JOB_WY_GOON = 32, // 40-49: MedSci JOB_PMC_SYNTH = 40, JOB_PMC_XENO_HANDLER = 41, @@ -1087,11 +1117,14 @@ GLOBAL_LIST_EMPTY_TYPED(crewmonitor, /datum/crewmonitor) JOB_UPP_COMMANDO = 22, // 30-39: Security JOB_UPP_POLICE = 31, + JOB_UPP_COMMISSAR = 41, // 40-49: MedSci JOB_UPP_LT_DOKTOR = 41, // 50-59: Engineering JOB_UPP_COMBAT_SYNTH = 50, JOB_UPP_CREWMAN = 51, + JOB_UPP_SUPPORT_SYNTH = 52, + JOB_UPP_SUPPLY = 53, // 60-69: Soldiers JOB_UPP_LEADER = 60, JOB_UPP_SPECIALIST = 61, diff --git a/code/modules/cm_marines/orbital_cannon.dm b/code/modules/cm_marines/orbital_cannon.dm index 3aafc4b7c4..ac1e702323 100644 --- a/code/modules/cm_marines/orbital_cannon.dm +++ b/code/modules/cm_marines/orbital_cannon.dm @@ -1,8 +1,8 @@ //global vars -var/obj/structure/orbital_cannon/almayer_orbital_cannon -var/list/ob_type_fuel_requirements +GLOBAL_DATUM(almayer_orbital_cannon, /obj/structure/orbital_cannon) +GLOBAL_LIST(ob_type_fuel_requirements) /obj/structure/orbital_cannon name = "\improper Orbital Cannon" @@ -31,16 +31,16 @@ var/list/ob_type_fuel_requirements /obj/structure/orbital_cannon/New() ..() - if(!almayer_orbital_cannon) - almayer_orbital_cannon = src + if(!GLOB.almayer_orbital_cannon) + GLOB.almayer_orbital_cannon = src - if(!ob_type_fuel_requirements) - ob_type_fuel_requirements = list() + if(!GLOB.ob_type_fuel_requirements) + GLOB.ob_type_fuel_requirements = list() var/list/L = list(4,5,6) var/amt for(var/i=1 to 3) amt = pick_n_take(L) - ob_type_fuel_requirements += amt + GLOB.ob_type_fuel_requirements += amt var/turf/T = locate(x+1,y+2,z) var/obj/structure/orbital_tray/O = new(T) @@ -49,9 +49,9 @@ var/list/ob_type_fuel_requirements /obj/structure/orbital_cannon/Destroy() QDEL_NULL(tray) - if(almayer_orbital_cannon == src) - almayer_orbital_cannon = null - message_admins("Reference to almayer_orbital_cannon is lost!") + if(GLOB.almayer_orbital_cannon == src) + GLOB.almayer_orbital_cannon = null + message_admins("Reference to GLOB.almayer_orbital_cannon is lost!") return ..() /obj/structure/orbital_cannon/ex_act() @@ -83,15 +83,15 @@ var/list/ob_type_fuel_requirements if(!tray.warhead) if(user) - to_chat(user, "no warhead in the tray, loading operation cancelled.") + to_chat(user, SPAN_WARNING("No warhead in the tray, loading operation cancelled.")) return if(tray.fuel_amt < 1) - to_chat(user, "no solid fuel in the tray, loading operation cancelled.") + to_chat(user, SPAN_WARNING("No solid fuel in the tray, loading operation cancelled.")) return if(loaded_tray) - to_chat(user, "Tray is already loaded.") + to_chat(user, SPAN_WARNING("Tray is already loaded.")) return tray.forceMove(src) @@ -185,23 +185,25 @@ var/list/ob_type_fuel_requirements chambered_tray = TRUE var/misfuel = get_misfuel_amount() var/message = "[key_name(user)] chambered the Orbital Bombardment cannon." + var/ares_message = "Shell chambered." if(misfuel) message += " It is misfueled by [misfuel] units!" + ares_message += " Fuel imbalance detected!" message_admins(message, x, y, z) + log_ares_bombardment(user, lowertext(tray.warhead.name), ares_message) update_icon() -/var/global/list/orbital_cannon_cancellation = new - +GLOBAL_LIST_EMPTY(orbital_cannon_cancellation) /obj/structure/orbital_cannon/proc/get_misfuel_amount() switch(tray.warhead.warhead_kind) if("explosive") - return abs(ob_type_fuel_requirements[1] - tray.fuel_amt) + return abs(GLOB.ob_type_fuel_requirements[1] - tray.fuel_amt) if("incendiary") - return abs(ob_type_fuel_requirements[2] - tray.fuel_amt) + return abs(GLOB.ob_type_fuel_requirements[2] - tray.fuel_amt) if("cluster") - return abs(ob_type_fuel_requirements[3] - tray.fuel_amt) + return abs(GLOB.ob_type_fuel_requirements[3] - tray.fuel_amt) return 0 /obj/structure/orbital_cannon/proc/fire_ob_cannon(turf/T, mob/user, squad_behalf) @@ -226,8 +228,8 @@ var/list/ob_type_fuel_requirements var/area/area = get_area(T) var/off_x = (inaccurate_fuel + 1) * round(rand(-3,3), 1) var/off_y = (inaccurate_fuel + 1) * round(rand(-3,3), 1) - var/target_x = Clamp(T.x + off_x, 1, world.maxx) - var/target_y = Clamp(T.y + off_y, 1, world.maxy) + var/target_x = clamp(T.x + off_x, 1, world.maxx) + var/target_y = clamp(T.y + off_y, 1, world.maxy) var/turf/target = locate(target_x, target_y, T.z) var/area/target_area = get_area(target) @@ -392,7 +394,7 @@ var/list/ob_type_fuel_requirements playsound(target, 'sound/weapons/gun_orbital_travel.ogg', 100, 1, 75) var/cancellation_token = rand(0,32000) - orbital_cannon_cancellation["[cancellation_token]"] = src + GLOB.orbital_cannon_cancellation["[cancellation_token]"] = src message_admins(FONT_SIZE_XL("CLICK TO CANCEL THIS OB")) var/relative_dir @@ -400,7 +402,7 @@ var/list/ob_type_fuel_requirements if(get_turf(M) == target) relative_dir = 0 else - relative_dir = get_dir(M, target) + relative_dir = Get_Compass_Dir(M, target) M.show_message( \ SPAN_HIGHDANGER("The sky erupts into flames [SPAN_UNDERLINE(relative_dir ? ("to the " + dir2text(relative_dir)) : "right above you")]!"), SHOW_MESSAGE_VISIBLE, \ SPAN_HIGHDANGER("You hear a very loud sound coming from above to the [SPAN_UNDERLINE(relative_dir ? ("to the " + dir2text(relative_dir)) : "right above you")]!"), SHOW_MESSAGE_AUDIBLE \ @@ -411,7 +413,7 @@ var/list/ob_type_fuel_requirements if(get_turf(M) == target) relative_dir = 0 else - relative_dir = get_dir(M, target) + relative_dir = Get_Compass_Dir(M, target) M.show_message( \ SPAN_HIGHDANGER("The sky roars louder [SPAN_UNDERLINE(relative_dir ? ("to the " + dir2text(relative_dir)) : "right above you")]!"), SHOW_MESSAGE_VISIBLE, \ SPAN_HIGHDANGER("The sound becomes louder [SPAN_UNDERLINE(relative_dir ? ("to the " + dir2text(relative_dir)) : "right above you")]!"), SHOW_MESSAGE_AUDIBLE \ @@ -425,9 +427,9 @@ var/list/ob_type_fuel_requirements ) sleep(OB_TRAVEL_TIMING/3) - if(orbital_cannon_cancellation["[cancellation_token]"]) // the cancelling notification is in the topic + if(GLOB.orbital_cannon_cancellation["[cancellation_token]"]) // the cancelling notification is in the topic target.ceiling_debris_check(5) - orbital_cannon_cancellation["[cancellation_token]"] = null + GLOB.orbital_cannon_cancellation["[cancellation_token]"] = null return TRUE return FALSE @@ -513,15 +515,13 @@ var/list/ob_type_fuel_requirements var/distance = 18 var/fire_level = 70 var/burn_level = 80 - var/fire_color = null + var/fire_color = LIGHT_COLOR_CYAN var/fire_type = "white" /obj/structure/ob_ammo/warhead/incendiary/warhead_impact(turf/target) . = ..() if (!.) return - if(fire_color) - fire_type = "dynamic" new /obj/effect/overlay/temp/blinking_laser (target) sleep(10) @@ -557,10 +557,7 @@ var/list/ob_type_fuel_requirements set waitfor = 0 var/range_num = 12 - var/list/turf_list = list() - - for(var/turf/T in range(range_num, target)) - turf_list += T + var/list/turf_list = RANGE_TURFS(range_num, target) for(var/i = 1 to total_amount) for(var/k = 1 to instant_amount) @@ -630,33 +627,33 @@ var/list/ob_type_fuel_requirements /obj/structure/machinery/computer/orbital_cannon_console/ui_static_data(mob/user) var/list/data = list() - data["hefuel"] = ob_type_fuel_requirements[1] - data["incfuel"] = ob_type_fuel_requirements[2] - data["clusterfuel"] = ob_type_fuel_requirements[3] + data["hefuel"] = GLOB.ob_type_fuel_requirements[1] + data["incfuel"] = GLOB.ob_type_fuel_requirements[2] + data["clusterfuel"] = GLOB.ob_type_fuel_requirements[3] - data["linkedcannon"] = almayer_orbital_cannon - data["linkedtray"] = almayer_orbital_cannon.tray + data["linkedcannon"] = GLOB.almayer_orbital_cannon + data["linkedtray"] = GLOB.almayer_orbital_cannon.tray return data /obj/structure/machinery/computer/orbital_cannon_console/ui_data(mob/user) var/list/data = list() - data["loadedtray"] = almayer_orbital_cannon.loaded_tray - data["chamberedtray"] = almayer_orbital_cannon.chambered_tray + data["loadedtray"] = GLOB.almayer_orbital_cannon.loaded_tray + data["chamberedtray"] = GLOB.almayer_orbital_cannon.chambered_tray var/warhead_name = null - if(almayer_orbital_cannon.tray.warhead) - warhead_name = almayer_orbital_cannon.tray.warhead.name + if(GLOB.almayer_orbital_cannon.tray.warhead) + warhead_name = GLOB.almayer_orbital_cannon.tray.warhead.name data["warhead"] = warhead_name - data["fuel"] = almayer_orbital_cannon.tray.fuel_amt + data["fuel"] = GLOB.almayer_orbital_cannon.tray.fuel_amt data["worldtime"] = world.time - data["nextchambertime"] = almayer_orbital_cannon.ob_chambering_cooldown - data["chamber_cooldown"] = almayer_orbital_cannon.chamber_cooldown_time + data["nextchambertime"] = GLOB.almayer_orbital_cannon.ob_chambering_cooldown + data["chamber_cooldown"] = GLOB.almayer_orbital_cannon.chamber_cooldown_time - data["disabled"] = almayer_orbital_cannon.is_disabled + data["disabled"] = GLOB.almayer_orbital_cannon.is_disabled return data @@ -667,15 +664,15 @@ var/list/ob_type_fuel_requirements switch(action) if("load_tray") - almayer_orbital_cannon.load_tray(usr) + GLOB.almayer_orbital_cannon.load_tray(usr) . = TRUE if("unload_tray") - almayer_orbital_cannon.unload_tray(usr) + GLOB.almayer_orbital_cannon.unload_tray(usr) . = TRUE if("chamber_tray") - almayer_orbital_cannon.chamber_payload(usr) + GLOB.almayer_orbital_cannon.chamber_payload(usr) . = TRUE add_fingerprint(usr) @@ -684,9 +681,8 @@ var/list/ob_type_fuel_requirements if(..()) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use that console.")) return TRUE tgui_interact(user) - diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm index 8fcf1a4020..4b0ec5fff6 100644 --- a/code/modules/cm_marines/overwatch.dm +++ b/code/modules/cm_marines/overwatch.dm @@ -56,8 +56,7 @@ return FALSE /obj/structure/machinery/computer/overwatch/attack_remote(mob/user as mob) - if(!ismaintdrone(user)) - return attack_hand(user) + return attack_hand(user) /obj/structure/machinery/computer/overwatch/attack_hand(mob/user) if(..()) //Checks for power outages @@ -66,7 +65,7 @@ if(istype(src, /obj/structure/machinery/computer/overwatch/almayer/broken)) return - if(!ishighersilicon(usr) && !skillcheck(user, SKILL_OVERWATCH, SKILL_OVERWATCH_TRAINED) && SSmapping.configs[GROUND_MAP].map_name != MAP_WHISKEY_OUTPOST) + if(!isSilicon(usr) && !skillcheck(user, SKILL_OVERWATCH, SKILL_OVERWATCH_TRAINED) && SSmapping.configs[GROUND_MAP].map_name != MAP_WHISKEY_OUTPOST) to_chat(user, SPAN_WARNING("You don't have the training to use [src].")) return @@ -115,7 +114,7 @@ if(!current_squad) data["squad_list"] = list() - for(var/datum/squad/current_squad in RoleAuthority.squads) + for(var/datum/squad/current_squad in GLOB.RoleAuthority.squads) if(current_squad.active && !current_squad.overwatch_officer && current_squad.faction == faction && current_squad.name != "Root") data["squad_list"] += current_squad.name return data @@ -185,13 +184,11 @@ if(is_ground_level(current_turf.z)) continue + var/obj/item/card/id/card = marine_human.get_idcard() if(marine_human.job) role = marine_human.job - else if(istype(marine_human.wear_id, /obj/item/card/id)) //decapitated marine is mindless, - var/obj/item/card/id/ID = marine_human.wear_id //we use their ID to get their role. - if(ID.rank) - role = ID.rank - + else if(card?.rank) //decapitated marine is mindless, + role = card.rank if(current_squad.squad_leader) if(marine_human == current_squad.squad_leader) @@ -205,7 +202,7 @@ acting_sl = " (acting SL)" is_squad_leader = TRUE else if(current_turf && (current_turf.z == SL_z)) - distance = "[get_dist(marine_human, current_squad.squad_leader)] ([dir2text_short(get_dir(current_squad.squad_leader, marine_human))])" + distance = "[get_dist(marine_human, current_squad.squad_leader)] ([dir2text_short(Get_Compass_Dir(current_squad.squad_leader, marine_human))])" switch(marine_human.stat) @@ -253,15 +250,14 @@ if(JOB_SQUAD_SPECIALIST) spec_count++ if(marine_human) - if(istype(marine_human.wear_id, /obj/item/card/id)) //decapitated marine is mindless, - var/obj/item/card/id/ID = marine_human.wear_id //we use their ID to get their role. - if(ID.assignment) - if(specialist_type) - specialist_type = "MULTIPLE" - else - var/list/spec_type = splittext(ID.assignment, "(") - if(islist(spec_type) && (length(spec_type) > 1)) - specialist_type = splittext(spec_type[2], ")")[1] + var/obj/item/card/id/card = marine_human.get_idcard() + if(card?.assignment) //decapitated marine is mindless, + if(specialist_type) + specialist_type = "MULTIPLE" + else + var/list/spec_type = splittext(card.assignment, "(") + if(islist(spec_type) && (length(spec_type) > 1)) + specialist_type = splittext(spec_type[2], ")")[1] else if(!specialist_type) specialist_type = "UNKNOWN" if(mob_state != "Dead") @@ -320,15 +316,12 @@ has_supply_pad = TRUE data["can_launch_crates"] = has_supply_pad data["has_crate_loaded"] = supply_crate - data["supply_cooldown"] = COOLDOWN_TIMELEFT(current_squad, next_supplydrop) - - data["can_launch_bombardments"] = FALSE - - if(almayer_orbital_cannon) - data["ob_cooldown"] = COOLDOWN_TIMELEFT(almayer_orbital_cannon, ob_firing_cooldown) - data["ob_loaded"] = almayer_orbital_cannon.chambered_tray - data["can_launch_bombardments"] = TRUE + data["can_launch_obs"] = GLOB.almayer_orbital_cannon + if(GLOB.almayer_orbital_cannon) + data["ob_cooldown"] = COOLDOWN_TIMELEFT(GLOB.almayer_orbital_cannon, ob_firing_cooldown) + data["ob_loaded"] = GLOB.almayer_orbital_cannon.chambered_tray + data["supply_cooldown"] = COOLDOWN_TIMELEFT(current_squad, next_supplydrop) data["operator"] = operator.name return data @@ -343,7 +336,7 @@ var/mob/user = ui.user - if((user.contents.Find(src) || (in_range(src, user) && istype(loc, /turf))) || (ishighersilicon(user))) + if((user.contents.Find(src) || (in_range(src, user) && istype(loc, /turf))) || (isSilicon(user))) user.set_interaction(src) switch(action) @@ -351,7 +344,7 @@ if(current_squad) return var/datum/squad/selected_squad - for(var/datum/squad/searching_squad in RoleAuthority.squads) + for(var/datum/squad/searching_squad in GLOB.RoleAuthority.squads) if(searching_squad.active && !searching_squad.overwatch_officer && searching_squad.faction == faction && searching_squad.name != "Root" && searching_squad.name == params["squad"]) selected_squad = searching_squad break @@ -368,7 +361,7 @@ return TRUE if("logout") if(current_squad?.release_overwatch()) - if(ishighersilicon(user)) + if(isSilicon(user)) current_squad.send_squad_message("Attention. [operator.name] has released overwatch system control. Overwatch functions deactivated.", displayed_icon = src) to_chat(user, "[icon2html(src, user)] [SPAN_BOLDNOTICE("Overwatch system control override disengaged.")]") else @@ -378,7 +371,7 @@ visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Overwatch systems deactivated. Goodbye, [ID ? "[ID.rank] ":""][operator ? "[operator.name]":"sysadmin"].")]") operator = null current_squad = null - if(cam && !ishighersilicon(user)) + if(cam && !isSilicon(user)) user.reset_view(null) user.UnregisterSignal(cam, COMSIG_PARENT_QDELETING) cam = null @@ -468,7 +461,7 @@ change_lead(user, params["ref"]) if("award_medal") - print_medal(user, src) + open_medal_panel(user, src) return if("insubordination") @@ -497,10 +490,10 @@ return x_bomb = text2num(params["x"]) y_bomb = text2num(params["y"]) - if(almayer_orbital_cannon.is_disabled) + if(GLOB.almayer_orbital_cannon.is_disabled) to_chat(user, "[icon2html(src, usr)] [SPAN_WARNING("Orbital bombardment cannon disabled!")]") - else if(!COOLDOWN_FINISHED(almayer_orbital_cannon, ob_firing_cooldown)) - to_chat(user, "[icon2html(src, usr)] [SPAN_WARNING("Orbital bombardment cannon not yet ready to fire again! Please wait [COOLDOWN_TIMELEFT(almayer_orbital_cannon, ob_firing_cooldown)/10] seconds.")]") + else if(!COOLDOWN_FINISHED(GLOB.almayer_orbital_cannon, ob_firing_cooldown)) + to_chat(user, "[icon2html(src, usr)] [SPAN_WARNING("Orbital bombardment cannon not yet ready to fire again! Please wait [COOLDOWN_TIMELEFT(GLOB.almayer_orbital_cannon, ob_firing_cooldown)/10] seconds.")]") else handle_bombard(user) @@ -547,7 +540,7 @@ user.UnregisterSignal(cam, COMSIG_PARENT_QDELETING) cam = null user.reset_view(null) - else if(user.client.view != world_view_size) + else if(user.client.view != GLOB.world_view_size) to_chat(user, SPAN_WARNING("You're too busy peering through binoculars.")) else if(cam) @@ -557,12 +550,12 @@ user.RegisterSignal(cam, COMSIG_PARENT_QDELETING, TYPE_PROC_REF(/mob, reset_observer_view_on_deletion)) if("change_operator") if(operator != user) - if(operator && ishighersilicon(operator)) + if(operator && isSilicon(operator)) visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("AI override in progress. Access denied.")]") return if(!current_squad || current_squad.assume_overwatch(user)) operator = user - if(ishighersilicon(user)) + if(isSilicon(user)) to_chat(user, "[icon2html(src, usr)] [SPAN_BOLDNOTICE("Overwatch system AI override protocol successful.")]") current_squad?.send_squad_message("Attention. [operator.name] has engaged overwatch system control override.", displayed_icon = src) else @@ -629,9 +622,9 @@ if(sl_headset) sl_headset.keys += new /obj/item/device/encryptionkey/squadlead/acting(sl_headset) sl_headset.recalculateChannels() - if(istype(selected_sl.wear_id, /obj/item/card/id)) - var/obj/item/card/id/ID = selected_sl.wear_id - ID.access += ACCESS_MARINE_LEADER + var/obj/item/card/id/card = selected_sl.get_idcard() + if(card) + card.access += ACCESS_MARINE_LEADER selected_sl.hud_set_squad() selected_sl.update_inv_head() //updating marine helmet leader overlays selected_sl.update_inv_wear_suit() @@ -672,9 +665,9 @@ var/area/ob_area = get_area(target) if(!ob_area) return - var/ob_type = almayer_orbital_cannon.tray.warhead ? almayer_orbital_cannon.tray.warhead.warhead_kind : "UNKNOWN" + var/ob_type = GLOB.almayer_orbital_cannon.tray.warhead ? GLOB.almayer_orbital_cannon.tray.warhead.warhead_kind : "UNKNOWN" - for(var/datum/squad/S in RoleAuthority.squads) + for(var/datum/squad/S in GLOB.RoleAuthority.squads) if(!S.active) continue for(var/mob/living/carbon/human/M in S.marines_list) @@ -736,12 +729,13 @@ to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("[transfer_marine] is KIA.")]") return - if(!istype(transfer_marine.wear_id, /obj/item/card/id)) + var/obj/item/card/id/card = transfer_marine.get_idcard() + if(!card) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Transfer aborted. [transfer_marine] isn't wearing an ID.")]") return var/list/available_squads = list() - for(var/datum/squad/squad as anything in RoleAuthority.squads) + for(var/datum/squad/squad as anything in GLOB.RoleAuthority.squads) if(squad.active && !squad.locked && squad.faction == faction && squad.name != "Root") available_squads += squad @@ -753,7 +747,8 @@ to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("[transfer_marine] is KIA.")]") return - if(!istype(transfer_marine.wear_id, /obj/item/card/id)) + card = transfer_marine.get_idcard() + if(!card) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Transfer aborted. [transfer_marine] isn't wearing an ID.")]") return @@ -762,11 +757,11 @@ to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("[transfer_marine] is already in [new_squad]!")]") return - if(RoleAuthority.check_squad_capacity(transfer_marine, new_squad)) + if(GLOB.RoleAuthority.check_squad_capacity(transfer_marine, new_squad)) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("Transfer aborted. [new_squad] can't have another [transfer_marine.job].")]") return - . = transfer_marine_to_squad(transfer_marine, new_squad, old_squad) + . = transfer_marine_to_squad(transfer_marine, new_squad, old_squad, card) if(.) visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("[transfer_marine] has been transfered from squad '[old_squad]' to squad '[new_squad]'. Logging to enlistment file.")]") to_chat(transfer_marine, "[icon2html(src, transfer_marine)] \[Overwatch\]: You've been transfered to [new_squad]!") @@ -785,7 +780,7 @@ to_chat(user, "[icon2html(src, user)] [SPAN_WARNING("No squad selected!")]") return - if(!almayer_orbital_cannon.chambered_tray) + if(!GLOB.almayer_orbital_cannon.chambered_tray) to_chat(user, "[icon2html(src, user)] [SPAN_WARNING("The orbital cannon has no ammo chambered.")]") return @@ -835,16 +830,16 @@ if(!T) return - var/ob_name = lowertext(almayer_orbital_cannon.tray.warhead.name) - var/mutable_appearance/warhead_appearance = mutable_appearance(almayer_orbital_cannon.tray.warhead.icon, almayer_orbital_cannon.tray.warhead.icon_state) + var/ob_name = lowertext(GLOB.almayer_orbital_cannon.tray.warhead.name) + var/mutable_appearance/warhead_appearance = mutable_appearance(GLOB.almayer_orbital_cannon.tray.warhead.icon, GLOB.almayer_orbital_cannon.tray.warhead.icon_state) notify_ghosts(header = "Bombardment Inbound", message = "\A [ob_name] targeting [get_area(T)] has been fired!", source = T, alert_overlay = warhead_appearance, extra_large = TRUE) /// Project ARES interface log. - log_ares_bombardment(user.name, ob_name, "X[x_bomb], Y[y_bomb] in [get_area(T)]") + log_ares_bombardment(user.name, ob_name, "Bombardment fired at X[x_bomb], Y[y_bomb] in [get_area(T)]") busy = FALSE if(istype(T)) - almayer_orbital_cannon.fire_ob_cannon(T, user, current_squad) + GLOB.almayer_orbital_cannon.fire_ob_cannon(T, user, current_squad) user.count_niche_stat(STATISTICS_NICHE_OB) /obj/structure/machinery/computer/overwatch/proc/handle_supplydrop() @@ -856,8 +851,8 @@ to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The [name] is busy processing another action!")]") return - var/obj/structure/closet/crate/C = locate() in current_squad.drop_pad.loc //This thing should ALWAYS exist. - if(!istype(C)) + var/obj/structure/closet/crate/crate = locate() in current_squad.drop_pad.loc //This thing should ALWAYS exist. + if(!istype(crate)) to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("No crate was detected on the drop pad. Get Requisitions on the line!")]") return @@ -883,18 +878,24 @@ to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The landing zone appears to be obstructed or out of bounds. Package would be lost on drop.")]") return + if(crate.opened) + to_chat(usr, "[icon2html(src, usr)] [SPAN_WARNING("The crate is not secure on the drop pad. Get Requisitions to close the crate!")]") + return + busy = TRUE - C.visible_message(SPAN_WARNING("\The [C] loads into a launch tube. Stand clear!")) - SEND_SIGNAL(C, COMSIG_STRUCTURE_CRATE_SQUAD_LAUNCHED, current_squad) + crate.visible_message(SPAN_WARNING("\The [crate] loads into a launch tube. Stand clear!")) + SEND_SIGNAL(crate, COMSIG_STRUCTURE_CRATE_SQUAD_LAUNCHED, current_squad) COOLDOWN_START(current_squad, next_supplydrop, 500 SECONDS) if(ismob(usr)) var/mob/M = usr M.count_niche_stat(STATISTICS_NICHE_CRATES) - playsound(C.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh - var/obj/structure/droppod/supply/pod = new(null, C) + playsound(crate.loc,'sound/effects/bamf.ogg', 50, 1) //Ehh + var/obj/structure/droppod/supply/pod = new(null, crate) pod.launch(T) - visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[C.name]' supply drop launched! Another launch will be available in five minutes.")]") + log_ares_requisition("Supply Drop", "Launch [crate.name] to X[x_supply], Y[y_supply].", usr.real_name) + log_game("[key_name(usr)] launched supply drop '[crate.name]' to X[x_coord], Y[y_coord].") + visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("'[crate.name]' supply drop launched! Another launch will be available in five minutes.")]") busy = FALSE /obj/structure/machinery/computer/overwatch/almayer @@ -905,6 +906,10 @@ /obj/structure/machinery/computer/overwatch/almayer/broken name = "Broken Overwatch Console" +/obj/structure/machinery/computer/overwatch/almayer/small + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "overwatch_computer" + /obj/structure/machinery/computer/overwatch/clf faction = FACTION_CLF /obj/structure/machinery/computer/overwatch/upp @@ -934,10 +939,14 @@ density = FALSE unslashable = TRUE unacidable = TRUE + plane = FLOOR_PLANE layer = 2.1 //It's the floor, man var/squad = SQUAD_MARINE_1 var/sending_package = 0 +/obj/structure/supply_drop/ex_act(severity, direction) + return FALSE + /obj/structure/supply_drop/Initialize(mapload, ...) . = ..() GLOB.supply_drop_list += src diff --git a/code/modules/cm_marines/radar.dm b/code/modules/cm_marines/radar.dm index f6751a8fe9..aa332d6013 100644 --- a/code/modules/cm_marines/radar.dm +++ b/code/modules/cm_marines/radar.dm @@ -95,7 +95,7 @@ if(get_dist_euclidian(here_turf, target_turf) > 24) userot = TRUE - rot = round(get_angle(here_turf, target_turf)) + rot = floor(Get_Angle(here_turf, target_turf)) else if(target_turf.z > here_turf.z) pointer="caret-up" @@ -205,12 +205,12 @@ continue var/crewmember_name = "Unknown" var/crewmember_rank = "Unknown" - if(humanoid.wear_id) - var/obj/item/card/id/ID = humanoid.wear_id.GetID() - if(ID?.registered_name) - crewmember_name = ID.registered_name - if(ID?.assignment) - crewmember_rank = ID.assignment + var/obj/item/card/id/card = humanoid.get_idcard() + if(card) + if(card.registered_name) + crewmember_name = card.registered_name + if(card.assignment) + crewmember_rank = card.assignment switch(humanoid.stat) if(CONSCIOUS) crewmember_name = "[crewmember_name] ([crewmember_rank]) (Conscious)" diff --git a/code/modules/cm_marines/shuttle_backend.dm b/code/modules/cm_marines/shuttle_backend.dm index 3de169d773..905bde3b44 100644 --- a/code/modules/cm_marines/shuttle_backend.dm +++ b/code/modules/cm_marines/shuttle_backend.dm @@ -87,11 +87,6 @@ DOCUMENTATION ON HOW TO ADD A NEW SHUTTLE: Fourkhan, 6/7/19 */ -var/global/list/s_info = null - -/proc/loadShuttleInfoDatums() - s_info = list() - return 1 /proc/get_shuttle_turfs(turf/ref, list/L) @@ -112,7 +107,7 @@ var/global/list/s_info = null /proc/rotate_shuttle_turfs(list/L, deg = 0) if((deg % 90) != 0) return //Not a right or straight angle, don't do anything - if(!istype(L) || !L.len) return null + if(!istype(L) || !length(L)) return null var/i //iterator var/x //Placeholder while we do math @@ -128,8 +123,8 @@ var/global/list/s_info = null y = C.y_pos C1.x_pos = x*cos(deg) + y*sin(deg) C1.y_pos = y*cos(deg) - x*sin(deg) - C1.x_pos = roundNearest(C.x_pos) //Sometimes you get very close to the right number but off by around 1e-15 and I want integers dammit - C1.y_pos = roundNearest(C.y_pos) + C1.x_pos = round(C.x_pos, 1) //Sometimes you get very close to the right number but off by around 1e-15 and I want integers dammit + C1.y_pos = round(C.y_pos, 1) toReturn += i toReturn[i] = C1 diff --git a/code/modules/cm_marines/smartgun_mount.dm b/code/modules/cm_marines/smartgun_mount.dm index 7a8361aa9f..2d88302552 100644 --- a/code/modules/cm_marines/smartgun_mount.dm +++ b/code/modules/cm_marines/smartgun_mount.dm @@ -1,12 +1,6 @@ ////////////////////////////////////////////////////////////// //Mounted MG, Replacment for the current jury rig code. -//Adds a coin for engi vendors -/obj/item/coin/marine/engineer - name = "marine engineer support token" - desc = "Insert this into an engineer vendor in order to access a support weapon." - icon_state = "coin_platinum" - // First thing we need is the ammo drum for this thing. /obj/item/ammo_magazine/m56d name = "M56D drum magazine (10x28mm Caseless)" @@ -48,8 +42,10 @@ flags_equip_slot = SLOT_BACK icon = 'icons/turf/whiskeyoutpost.dmi' icon_state = "M56D_gun_e" - var/rounds = 0 // How many rounds are in the weapon. This is useful if we break down our guns. - var/has_mount = FALSE // Indicates whether the M56D will come with its folding mount already attached + ///How many rounds are in the weapon. This is useful if we break down our guns. + var/rounds = 0 + ///Indicates whether the M56D will come with its folding mount already attached + var/has_mount = FALSE /obj/item/device/m56d_gun/Initialize(mapload, ...) . = ..() @@ -72,7 +68,7 @@ return /obj/item/device/m56d_gun/attackby(obj/item/O as obj, mob/user as mob) - if(!ishuman(user)) + if(!ishuman(user) || !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return if(QDELETED(O)) @@ -91,7 +87,7 @@ /obj/item/device/m56d_gun/attack_self(mob/user) ..() - if(!ishuman(user)) + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return if(!has_mount) return @@ -132,14 +128,15 @@ if(!do_after(user, 1 SECONDS, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return - var/obj/structure/machinery/m56d_post/M = new /obj/structure/machinery/m56d_post(user.loc) - M.setDir(user.dir) // Make sure we face the right direction - M.gun_rounds = src.rounds //Inherit the amount of ammo we had. - M.gun_mounted = TRUE - M.anchored = TRUE - M.update_icon() - transfer_label_component(M) - to_chat(user, SPAN_NOTICE("You deploy \the [src].")) + var/obj/structure/machinery/m56d_post/post = new(user.loc) + post.setDir(user.dir) // Make sure we face the right direction + post.gun_rounds = rounds + post.gun_mounted = TRUE + post.gun_health = health // retain damage + post.anchored = TRUE + post.update_icon() + transfer_label_component(post) + to_chat(user, SPAN_NOTICE("You deploy [src].")) qdel(src) @@ -182,7 +179,7 @@ /obj/item/device/m56d_post/attack_self(mob/user) ..() - if(!ishuman(usr)) + if(!ishuman(usr) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return if(SSinterior.in_interior(user)) to_chat(usr, SPAN_WARNING("It's too cramped in here to deploy \a [src].")) @@ -218,8 +215,8 @@ return to_chat(user, SPAN_NOTICE("You deploy \the [src].")) - var/obj/structure/machinery/m56d_post/M = new /obj/structure/machinery/m56d_post(user.loc) - transfer_label_component(M) + var/obj/structure/machinery/m56d_post/post = new(user.loc) + transfer_label_component(post) qdel(src) @@ -233,8 +230,12 @@ density = TRUE layer = ABOVE_MOB_LAYER projectile_coverage = PROJECTILE_COVERAGE_LOW - var/gun_mounted = FALSE //Has the gun been mounted? - var/gun_rounds = 0 //Did the gun come with any ammo? + ///Whether a gun is mounted + var/gun_mounted = FALSE + ///Ammo amount of the mounted gun + var/gun_rounds = 0 + ///Health of the mounted gun + var/gun_health = 0 health = 50 /obj/structure/machinery/m56d_post/initialize_pass_flags(datum/pass_flags_container/PF) @@ -286,9 +287,9 @@ return XENO_ATTACK_ACTION /obj/structure/machinery/m56d_post/MouseDrop(over_object, src_location, over_location) //Drag the tripod onto you to fold it. - if(!ishuman(usr)) + var/mob/living/carbon/user = usr //this is us + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return - var/mob/living/carbon/human/user = usr //this is us if(over_object == user && in_range(src, user)) if(anchored && gun_mounted) to_chat(user, SPAN_WARNING("\The [src] can't be folded while there's an unsecured gun mounted on it. Either complete the assembly or take the gun off with a crowbar.")) @@ -297,12 +298,13 @@ to_chat(user, SPAN_WARNING("\The [src] can't be folded while screwed to the floor. Unscrew it first.")) return to_chat(user, SPAN_NOTICE("You fold [src].")) - var/obj/item/device/m56d_post/P = new(loc) - user.put_in_hands(P) + var/obj/item/device/m56d_post/post = new(loc) + transfer_label_component(post) + user.put_in_hands(post) qdel(src) /obj/structure/machinery/m56d_post/attackby(obj/item/O, mob/user) - if(!ishuman(user)) //first make sure theres no funkiness + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) //first make sure theres no funkiness return if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) //rotate the mount @@ -322,6 +324,8 @@ user.visible_message(SPAN_NOTICE("[user] installs [MG] into place."),SPAN_NOTICE("You install [MG] into place.")) gun_mounted = 1 gun_rounds = MG.rounds + gun_health = MG.health + MG.transfer_label_component(src) update_icon() user.temp_drop_inv_item(MG) qdel(MG) @@ -334,12 +338,19 @@ to_chat(user, "You begin dismounting [src]'s gun...") if(do_after(user, 30 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD) && gun_mounted) playsound(src.loc, 'sound/items/Crowbar.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] removes [src]'s gun."),SPAN_NOTICE("You remove [src]'s gun.")) - var/obj/item/device/m56d_gun/G = new(loc) - G.rounds = gun_rounds - G.update_icon() + user.visible_message(SPAN_NOTICE("[user] removes [src]'s gun."), SPAN_NOTICE("You remove [src]'s gun.")) + var/obj/item/device/m56d_gun/HMG = new(loc) + HMG.rounds = gun_rounds + if(gun_health) + HMG.health = gun_health + HMG.update_icon() + transfer_label_component(HMG) + var/datum/component/label/label = GetComponent(/datum/component/label) + if(label) + label.remove_label() gun_mounted = FALSE gun_rounds = 0 + gun_health = 0 update_icon() return @@ -380,13 +391,16 @@ var/disassemble_time = 30 if(do_after(user, disassemble_time * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) playsound(src.loc, 'sound/items/Deconstruct.ogg', 25, 1) - user.visible_message(SPAN_NOTICE("[user] screws the M56D into the mount."),SPAN_NOTICE("You finalize the M56D heavy machine gun.")) - var/obj/structure/machinery/m56d_hmg/G = new(src.loc) //Here comes our new turret. - transfer_label_component(G) - G.visible_message("[icon2html(G, viewers(src))] \The [G] is now complete!") //finished it for everyone to - G.setDir(dir) //make sure we face the right direction - G.rounds = src.gun_rounds //Inherent the amount of ammo we had. - G.update_icon() + user.visible_message(SPAN_NOTICE("[user] screws the M56D into the mount."), SPAN_NOTICE("You finalize the M56D heavy machine gun.")) + var/obj/structure/machinery/m56d_hmg/HMG = new(loc) + transfer_label_component(HMG) + HMG.visible_message("[icon2html(HMG, viewers(src))] \The [HMG] is now complete!") + HMG.setDir(dir) + HMG.rounds = gun_rounds + if(gun_health) + HMG.health = gun_health + HMG.update_damage_state() + HMG.update_icon() qdel(src) else if(anchored) @@ -467,7 +481,6 @@ /// What firemodes this gun has var/static/list/gun_firemodes = list( GUN_FIREMODE_SEMIAUTO, - GUN_FIREMODE_BURSTFIRE, GUN_FIREMODE_AUTOMATIC, ) /// A multiplier for how slow this gun should fire in automatic as opposed to burst. 1 is normal, 1.2 is 20% slower, 0.8 is 20% faster, etc. @@ -525,7 +538,7 @@ /obj/structure/machinery/m56d_hmg/get_examine_text(mob/user) //Let us see how much ammo we got in this thing. . = ..() - if(ishuman(user)) + if(ishuman(user) || HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) if(rounds) . += SPAN_NOTICE("It has [rounds] round\s out of [rounds_max].") else @@ -544,7 +557,7 @@ return /obj/structure/machinery/m56d_hmg/attackby(obj/item/O as obj, mob/user as mob) //This will be how we take it apart. - if(!ishuman(user)) + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) return ..() if(QDELETED(O)) @@ -556,7 +569,7 @@ return else playsound(src.loc, 'sound/items/Ratchet.ogg', 25, 1) - user.visible_message("[user] rotates \the [src].","You rotate \the [src].") + user.visible_message("[user] rotates [src].", "You rotate [src].") setDir(turn(dir, -90)) if(operator) update_pixels(operator) @@ -570,14 +583,15 @@ var/disassemble_time = 30 if(do_after(user, disassemble_time * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - user.visible_message(SPAN_NOTICE(" [user] disassembles [src]! "),SPAN_NOTICE(" You disassemble [src]!")) + user.visible_message(SPAN_NOTICE("[user] disassembles [src]!"), SPAN_NOTICE("You disassemble [src]!")) playsound(src.loc, 'sound/items/Screwdriver.ogg', 25, 1) - var/obj/item/device/m56d_gun/HMG = new(src.loc) //Here we generate our disassembled mg. + var/obj/item/device/m56d_gun/HMG = new(loc) transfer_label_component(HMG) - HMG.rounds = src.rounds //Inherent the amount of ammo we had. + HMG.rounds = rounds HMG.has_mount = TRUE + HMG.health = health HMG.update_icon() - qdel(src) //Now we clean up the constructed gun. + qdel(src) return if(istype(O, /obj/item/ammo_magazine/m56d)) // RELOADING DOCTOR FREEMAN. @@ -589,7 +603,7 @@ if(user.action_busy) return if(!do_after(user, 25 * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) return - user.visible_message(SPAN_NOTICE("[user] loads [src]! "),SPAN_NOTICE("You load [src]!")) + user.visible_message(SPAN_NOTICE("[user] loads [src]!"), SPAN_NOTICE("You load [src]!")) playsound(loc, 'sound/weapons/gun_minigun_cocked.ogg', 25, 1) if(rounds) var/obj/item/ammo_magazine/m56d/D = new(user.loc) @@ -620,7 +634,7 @@ if(do_after(user, 5 SECONDS * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL, BUSY_ICON_FRIENDLY, src)) user.visible_message(SPAN_NOTICE("[user] repairs some damage on [src]."), \ SPAN_NOTICE("You repair [src].")) - update_health(-round(health_max*0.2)) + update_health(-floor(health_max*0.2)) playsound(src.loc, 'sound/items/Welder2.ogg', 25, 1) else to_chat(user, SPAN_WARNING("You need more fuel in [WT] to repair damage to [src].")) @@ -632,10 +646,10 @@ if(health <= 0) var/destroyed = rand(0,1) //Ammo cooks off or something. Who knows. playsound(src.loc, 'sound/items/Welder2.ogg', 25, 1) - if(!destroyed) new /obj/structure/machinery/m56d_post(loc) - else + if(!destroyed) var/obj/item/device/m56d_gun/HMG = new(loc) - HMG.rounds = src.rounds //Inherent the amount of ammo we had. + transfer_label_component(HMG) + HMG.rounds = rounds qdel(src) return @@ -654,7 +668,7 @@ operator.unset_interaction() /obj/structure/machinery/m56d_hmg/proc/update_damage_state() - var/health_percent = round(health/health_max * 100) + var/health_percent = floor(health/health_max * 100) switch(health_percent) if(0 to 25) damage_state = M56D_DMG_HEAVY if(25 to 50) damage_state = M56D_DMG_MODERATE @@ -664,19 +678,21 @@ /obj/structure/machinery/m56d_hmg/bullet_act(obj/projectile/P) //Nope. bullet_ping(P) visible_message(SPAN_WARNING("[src] is hit by the [P.name]!")) - update_health(round(P.damage / 10)) //Universal low damage to what amounts to a post with a gun. + update_health(floor(P.damage / 10)) //Universal low damage to what amounts to a post with a gun. return 1 -/obj/structure/machinery/m56d_hmg/attack_alien(mob/living/carbon/xenomorph/M) // Those Ayy lmaos. - if(islarva(M)) +/obj/structure/machinery/m56d_hmg/attack_alien(mob/living/carbon/xenomorph/xeno) // Those Ayy lmaos. + if(islarva(xeno)) return //Larvae can't do shit - - M.visible_message(SPAN_DANGER("[M] has slashed [src]!"), + if(xeno.IsAdvancedToolUser() && xeno.a_intent == INTENT_HELP) + try_mount_gun(xeno) + return XENO_NO_DELAY_ACTION + xeno.visible_message(SPAN_DANGER("[xeno] has slashed [src]!"), SPAN_DANGER("You slash [src]!")) - M.animation_attack_on(src) - M.flick_attack_overlay(src, "slash") + xeno.animation_attack_on(src) + xeno.flick_attack_overlay(src, "slash") playsound(loc, "alien_claw_metal", 25) - update_health(rand(M.melee_damage_lower,M.melee_damage_upper)) + update_health(rand(xeno.melee_damage_lower,xeno.melee_damage_upper)) return XENO_ATTACK_ACTION /obj/structure/machinery/m56d_hmg/proc/load_into_chamber() @@ -706,11 +722,14 @@ if(!istype(in_chamber, /obj/projectile)) return - var/angle = get_angle(T, U) + var/angle = Get_Angle(T, U) if((dir == NORTH) && (angle > 180) && (abs(360 - angle) > shoot_degree)) // If north and shooting to the left, we do some extra math return + if((dir == NORTH) && (angle < 180) && (angle > shoot_degree)) + return + else if((dir != NORTH) && (abs(angle - dir2angle(dir)) > shoot_degree)) return @@ -812,84 +831,121 @@ I.flick_overlay(src, 3) /obj/structure/machinery/m56d_hmg/MouseDrop(over_object, src_location, over_location) //Drag the MG to us to man it. - if(!ishuman(usr)) + // If the gun sprite wasn't dragged onto the user, or the user isn't adjacent. + if(over_object != usr || !in_range(src, usr)) + return + // If the user is already manning the gun. + if(operator == usr) + // Exit the gun. + usr.unset_interaction() + else + // Try to man the gun + try_mount_gun(usr) + +/obj/structure/machinery/m56d_hmg/proc/try_mount_gun(mob/living/carbon/user) + // If the user isn't a human. + if(!istype(user)) + return + // If the user is unconscious or dead. + if(user.stat) + return + if(ishuman(user)) + var/mob/living/carbon/human/human = user + if(!human.allow_gun_usage) + to_chat(user, SPAN_WARNING("You aren't allowed to use firearms!")) + return + // If the user isn't actually allowed to use guns. + else if (!HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) + to_chat(user, SPAN_WARNING("You don't know what to do with [src]!")) + return + + // If the user is invisible. + if(user.alpha <= 60) + to_chat(user, SPAN_WARNING("You can't use [src] while cloaked!")) + return + + // Make sure we're not manning two guns at once, tentacle arms. + if(user.interactee) + to_chat(user, SPAN_WARNING("You're already manning something!")) + return + + // Check the directions opposite of where the gun is facing. + var/found_user = FALSE + var/turf/user_turf = get_turf(user) + for(var/opposite_dir in reverse_nearby_direction(src.dir)) + if(get_step(src, opposite_dir) == user_turf) + found_user = TRUE + break + // If the user isn't standing behind or on top of the gun. + if(!found_user && user_turf != get_turf(src)) + to_chat(user, SPAN_WARNING("You are too far from the handles to man [src]!")) return - var/mob/living/carbon/human/user = usr //this is us - - var/user_turf = get_turf(user) - - for(var/opp_dir in reverse_nearby_direction(src.dir)) - if(get_step(src, opp_dir) == user_turf) //Players must be behind, or left or right of that back tile - src.add_fingerprint(usr) - if((over_object == user && (in_range(src, user) || locate(src) in user))) //Make sure its on ourselves - if(user.interactee == src) - user.unset_interaction() - user.visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("[user] lets go of \the [src].")]", SPAN_NOTICE("You let go of \the [src].")) - return - if(operator) //If there is already a operator then they're manning it. - if(operator.interactee == null) - operator = null //this shouldn't happen, but just in case - else - to_chat(user, "Someone's already controlling it.") - return - else - if(user.interactee) //Make sure we're not manning two guns at once, tentacle arms. - to_chat(user, "You're already manning something!") - return - if(user.get_active_hand() != null) - to_chat(user, SPAN_WARNING("You need a free hand to man \the [src].")) - - if(!user.allow_gun_usage) - to_chat(user, SPAN_WARNING("You aren't allowed to use firearms!")) - return - else - ADD_TRAIT(user, TRAIT_IMMOBILIZED, INTERACTION_TRAIT) - user.set_interaction(src) - give_action(user, /datum/action/human_action/mg_exit) + // If there's already someone manning it. + if(operator) + // This shouldn't happen, but just in case. + if(operator.interactee == null) + operator = null else - to_chat(usr, SPAN_NOTICE("You are too far from the handles to man [src]!")) + to_chat(user, SPAN_WARNING("Someone's already controlling [src]!")) + return + + // If both hands aren't empty. + if(user.get_active_hand() || user.get_inactive_hand()) + to_chat(user, SPAN_WARNING("You need both hands free to grab the handles!")) + return + + // Man the gun! + user.set_interaction(src) /obj/structure/machinery/m56d_hmg/on_set_interaction(mob/user) - RegisterSignal(user, list(COMSIG_MOB_MG_EXIT, COMSIG_MOB_RESISTED, COMSIG_MOB_DEATH, COMSIG_LIVING_SET_BODY_POSITION), PROC_REF(exit_interaction)) - flags_atom |= RELAY_CLICK - user.status_flags |= IMMOBILE_ACTION - user.visible_message(SPAN_NOTICE("[user] mans \the [src]."),SPAN_NOTICE("You man \the [src], locked and loaded!")) - RegisterSignal(user, COMSIG_MOB_MOUSEDOWN, PROC_REF(start_fire)) - RegisterSignal(user, COMSIG_MOB_MOUSEDRAG, PROC_REF(change_target)) - RegisterSignal(user, COMSIG_MOB_MOUSEUP, PROC_REF(stop_fire)) + ADD_TRAIT(user, TRAIT_IMMOBILIZED, INTERACTION_TRAIT) + give_action(user, /datum/action/human_action/mg_exit) user.forceMove(src.loc) user.setDir(dir) + user.reset_view(src) + user.status_flags |= IMMOBILE_ACTION + user.visible_message(SPAN_NOTICE("[user] mans [src]."), SPAN_NOTICE("You man [src], locked and loaded!")) user_old_x = user.pixel_x user_old_y = user.pixel_y - user.reset_view(src) update_pixels(user) + + RegisterSignal(user, list(COMSIG_MOB_MG_EXIT, COMSIG_MOB_RESISTED, COMSIG_MOB_DEATH, COMSIG_LIVING_SET_BODY_POSITION), PROC_REF(exit_interaction)) + RegisterSignal(user, COMSIG_MOB_MOUSEDOWN, PROC_REF(start_fire)) + RegisterSignal(user, COMSIG_MOB_MOUSEDRAG, PROC_REF(change_target)) + RegisterSignal(user, COMSIG_MOB_MOUSEUP, PROC_REF(stop_fire)) + operator = user + flags_atom |= RELAY_CLICK -/obj/structure/machinery/m56d_hmg/on_unset_interaction(mob/living/user) - flags_atom &= ~RELAY_CLICK - SEND_SIGNAL(src, COMSIG_GUN_INTERRUPT_FIRE) - user.status_flags &= ~IMMOBILE_ACTION - user.visible_message(SPAN_NOTICE("[user] lets go of \the [src]."),SPAN_NOTICE("You let go of \the [src], letting the gun rest.")) +/obj/structure/machinery/m56d_hmg/on_unset_interaction(mob/user) REMOVE_TRAIT(user, TRAIT_IMMOBILIZED, INTERACTION_TRAIT) - UnregisterSignal(user, list(COMSIG_MOB_MOUSEUP, COMSIG_MOB_MOUSEDOWN, COMSIG_MOB_MOUSEDRAG)) - user.reset_view(null) - user.remove_temp_pass_flags(PASS_MOB_THRU) // this is necessary because being knocked over while using the gun makes you incorporeal + remove_action(user, /datum/action/human_action/mg_exit) user.Move(get_step(src, reverse_direction(src.dir))) user.setDir(dir) //set the direction of the player to the direction the gun is facing + user.reset_view(null) + user.status_flags &= ~IMMOBILE_ACTION + user.visible_message(SPAN_NOTICE("[user] lets go of [src]."), SPAN_NOTICE("You let go of [src], letting the gun rest.")) user_old_x = 0 //reset our x user_old_y = 0 //reset our y update_pixels(user, FALSE) - if(operator == user) //We have no operator now - operator = null - remove_action(user, /datum/action/human_action/mg_exit) + user.remove_temp_pass_flags(PASS_MOB_THRU) // this is necessary because being knocked over while using the gun makes you incorporeal + + SEND_SIGNAL(src, COMSIG_GUN_INTERRUPT_FIRE) UnregisterSignal(user, list( COMSIG_MOB_MG_EXIT, COMSIG_MOB_RESISTED, COMSIG_MOB_DEATH, COMSIG_LIVING_SET_BODY_POSITION, + COMSIG_MOB_MOUSEUP, + COMSIG_MOB_MOUSEDOWN, + COMSIG_MOB_MOUSEDRAG, )) + if(operator == user) //We have no operator now + operator = null + flags_atom &= ~RELAY_CLICK + /obj/structure/machinery/m56d_hmg/proc/update_pixels(mob/user, mounting = TRUE) if(mounting) @@ -922,7 +978,7 @@ animate(user, pixel_x=diff_x, pixel_y=diff_y, 0.4 SECONDS) else if(user.client) - user.client.change_view(world_view_size) + user.client.change_view(GLOB.world_view_size) user.client.pixel_x = 0 user.client.pixel_y = 0 animate(user, pixel_x=user_old_x, pixel_y=user_old_y, 4, 1) @@ -949,6 +1005,7 @@ to_chat(operator, SPAN_HIGHDANGER("You are knocked off the gun by the sheer force of the ram!")) operator.unset_interaction() operator.apply_effect(3, WEAKEN) + operator.emote("pain") /// Getter for burst_firing /obj/structure/machinery/m56d_hmg/proc/get_burst_firing() @@ -1098,6 +1155,19 @@ projectile_coverage = PROJECTILE_COVERAGE_HIGH icon = 'icons/turf/whiskeyoutpost.dmi' zoom = 1 + ammo = /datum/ammo/bullet/machinegun/doorgun + +/obj/structure/machinery/m56d_hmg/mg_turret/update_health(amount) //Negative values restores health. + health -= amount + if(health <= 0) + playsound(src.loc, 'sound/items/Welder2.ogg', 25, 1) + qdel(src) + return + + if(health > health_max) + health = health_max + update_damage_state() + update_icon() /obj/structure/machinery/m56d_hmg/mg_turret/dropship name = "\improper scoped M56D heavy machine gun" diff --git a/code/modules/cm_marines/specialist.dm b/code/modules/cm_marines/specialist.dm index 2fc1fdec10..72247641c4 100644 --- a/code/modules/cm_marines/specialist.dm +++ b/code/modules/cm_marines/specialist.dm @@ -38,3 +38,157 @@ for (var/datum/action/item_action/specialist/SA in H.actions) if (SA.ability_primacy == SPEC_PRIMARY_ACTION_2) SA.handle_spec_macro() + +/// Get a specialist set datum typepath given a mob, returns null if they aren't a spec or haven't chosen a kit. +/proc/get_specialist_set(mob/living/spec) + for(var/datum/specialist_set/path as anything in GLOB.specialist_set_datums) + if(HAS_TRAIT(spec, TRAIT_SPEC(path::trait_to_give))) + return path + +/proc/setup_specialist_sets() + var/list/set_list = list() + for(var/datum/specialist_set/path as anything in subtypesof(/datum/specialist_set)) + var/datum/specialist_set/object = new path + set_list[path] = object + GLOB.specialist_set_name_dict[object.get_name()] = object + return set_list + +/datum/specialist_set + /// Human-readable name for the specialist set + VAR_PROTECTED/name = "" as text + /// What is the role title that should go on ID cards + VAR_PROTECTED/role_name = "" as text + /// How many more of this spec set can be picked from spec vendors + VAR_PRIVATE/available_vendor_num = 1 as num + /// How many more of this spec set can be picked from /obj/item/spec_kit + VAR_PRIVATE/available_kit_num = 2 as num + /// What skill tier to give the person redeeming the set + VAR_PROTECTED/skill_to_give = SKILL_SPEC_DEFAULT as num + /// What trait to give the person redeeming the set + VAR_PROTECTED/trait_to_give + /// What typepath to spawn for the redeemer if from a kit + VAR_PROTECTED/kit_typepath + /// List of typepaths that are incompatible with this set, meaning it'll subtract 1 from their vendor/kit num as well + VAR_PROTECTED/list/incompatible_sets = list() + +/datum/specialist_set/New() + . = ..() + incompatible_sets += type + +/datum/specialist_set/proc/redeem_set(mob/living/carbon/human/redeemer, kit = FALSE) + SHOULD_CALL_PARENT(TRUE) + if(!redeemer) + return FALSE + + if(kit && (available_kit_num <= 0)) + to_chat(redeemer, SPAN_WARNING("No more kits of this type may be chosen.")) + return FALSE + else if(!kit && (available_vendor_num <= 0)) + to_chat(redeemer, SPAN_WARNING("That set is already taken.")) + return FALSE + + if(skill_to_give != SKILL_SPEC_DEFAULT) + redeemer.skills?.set_skill(SKILL_SPEC_WEAPONS, skill_to_give) + + if(kit) + redeemer.put_in_any_hand_if_possible(new kit_typepath, FALSE) + for(var/path in incompatible_sets) + GLOB.specialist_set_datums[path].available_kit_num-- + ADD_TRAIT(redeemer, TRAIT_SPEC_KIT, TRAIT_SOURCE_INHERENT) + else + for(var/path in incompatible_sets) + GLOB.specialist_set_datums[path].available_vendor_num-- + ADD_TRAIT(redeemer, TRAIT_SPEC_VENDOR, TRAIT_SOURCE_INHERENT) + ADD_TRAIT(redeemer, TRAIT_SPEC(trait_to_give), TRAIT_SOURCE_INHERENT) + var/obj/item/card/id/idcard = redeemer.get_idcard() + if(idcard) + idcard.set_assignment((redeemer.assigned_squad ? (redeemer.assigned_squad.name + " ") : "") + JOB_SQUAD_SPECIALIST + " ([role_name])") + GLOB.data_core.manifest_modify(redeemer.real_name, WEAKREF(redeemer), idcard.assignment) + return TRUE + +/datum/specialist_set/proc/refund_set(mob/living/carbon/human/refunder) + SHOULD_CALL_PARENT(TRUE) + if(!refunder) + return + + if(HAS_TRAIT(refunder, TRAIT_SPEC_KIT)) + for(var/path in incompatible_sets) + GLOB.specialist_set_datums[path].available_kit_num++ + else if(HAS_TRAIT(refunder, TRAIT_SPEC_VENDOR)) + for(var/path in incompatible_sets) + GLOB.specialist_set_datums[path].available_vendor_num++ + +/datum/specialist_set/proc/get_name() as text + return name + +/datum/specialist_set/proc/get_available_kit_num() as num + return available_kit_num + +/datum/specialist_set/proc/get_available_vendor_num() as num + return available_vendor_num + +/datum/specialist_set/sadar + name = "Demolitionist Set" + role_name = "Demo" + skill_to_give = SKILL_SPEC_ROCKET + trait_to_give = "demo" + kit_typepath = /obj/item/storage/box/spec/demolitionist + +/datum/specialist_set/sadar/redeem_set(mob/living/redeemer, kit) + . = ..() + if(!.) + return . + + if(!skillcheck(redeemer, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + redeemer.skills?.set_skill(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) + return TRUE + +/datum/specialist_set/scout + name = "Scout Set" + role_name = "Scout" + skill_to_give = SKILL_SPEC_SCOUT + trait_to_give = "scout" + kit_typepath = /obj/item/storage/box/spec/scout + +/datum/specialist_set/scout/redeem_set(mob/living/redeemer, kit) + . = ..() + if(!.) + return . + + if(!skillcheck(redeemer, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + redeemer.skills?.set_skill(SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) + return TRUE + +/datum/specialist_set/sniper + name = "Sniper Set" + role_name = "Sniper" + skill_to_give = SKILL_SPEC_SNIPER + trait_to_give = "sniper" + kit_typepath = /obj/item/storage/box/spec/sniper + incompatible_sets = list( + /datum/specialist_set/anti_mat_sniper, + ) + +/datum/specialist_set/anti_mat_sniper + name = "Anti-Materiel Sniper Set" + role_name = "Heavy Sniper" + skill_to_give = SKILL_SPEC_SNIPER + trait_to_give = "antimat_sniper" + kit_typepath = /obj/item/storage/box/spec/sniper/anti_materiel + incompatible_sets = list( + /datum/specialist_set/sniper, + ) + +/datum/specialist_set/grenadier + name = "Heavy Grenadier Set" + role_name = "Grenadier" + skill_to_give = SKILL_SPEC_GRENADIER + trait_to_give = "grenadier" + kit_typepath = /obj/item/storage/box/spec/heavy_grenadier + +/datum/specialist_set/pyro + name = "Pyro Set" + role_name = "Pyro" + skill_to_give = SKILL_SPEC_PYRO + trait_to_give = "pyro" + kit_typepath = /obj/item/storage/box/spec/pyro diff --git a/code/modules/cm_marines/vehicle_part_fabricator.dm b/code/modules/cm_marines/vehicle_part_fabricator.dm index ca53d368bb..fc71763d96 100644 --- a/code/modules/cm_marines/vehicle_part_fabricator.dm +++ b/code/modules/cm_marines/vehicle_part_fabricator.dm @@ -10,8 +10,8 @@ icon_state = "drone_fab_idle" var/busy = FALSE var/generate_points = TRUE - var/valid_parts = null - var/valid_ammo = null + var/omnisentry_price_scale = 100 + var/omnisentry_price = 300 /obj/structure/machinery/part_fabricator/New() ..() @@ -28,7 +28,8 @@ /obj/structure/machinery/part_fabricator/dropship/ui_data(mob/user) return list( - "points" = get_point_store() + "points" = get_point_store(), + "omnisentrygun_price" = omnisentry_price ) /obj/structure/machinery/part_fabricator/power_change() @@ -53,11 +54,15 @@ /obj/structure/machinery/part_fabricator/proc/build_part(part_type, cost, mob/user) set waitfor = 0 if(stat & NOPOWER) return + if(ispath(part_type,/obj/structure/ship_ammo/sentry)) + cost = omnisentry_price if(get_point_store() < cost) to_chat(user, SPAN_WARNING("You don't have enough points to build that.")) return visible_message(SPAN_NOTICE("[src] starts printing something.")) spend_point_store(cost) + if(ispath(part_type,/obj/structure/ship_ammo/sentry)) + omnisentry_price += omnisentry_price_scale icon_state = "drone_fab_active" busy = TRUE addtimer(CALLBACK(src, PROC_REF(do_build_part), part_type), 10 SECONDS) @@ -68,7 +73,7 @@ new part_type(get_step(src, SOUTHEAST)) icon_state = "drone_fab_idle" -/obj/structure/machinery/part_fabricator/ui_act(action, params) +/obj/structure/machinery/part_fabricator/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) . = ..() if(.) return @@ -77,27 +82,33 @@ to_chat(usr, SPAN_WARNING("The [name] is busy. Please wait for completion of previous operation.")) return - if(action == "produce") - var/produce = text2path(params["path"]) - var/cost = text2num(params["cost"]) - var/exploiting = TRUE - - if (valid_parts && ispath(produce, valid_parts)) - exploiting = FALSE - else if (valid_ammo && ispath(produce, valid_ammo)) - exploiting = FALSE + var/mob/user = ui.user - if (cost < 0) - exploiting = TRUE + if(action == "produce") + var/cost = 0 + var/is_ammo = params["is_ammo"] + var/index = params["index"] + + if(is_ammo == 0) + var/obj/structure/dropship_equipment/produce = (typesof(/obj/structure/dropship_equipment))[index] + if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && produce.combat_equipment) + log_admin("Bad topic: [user] may be trying to HREF exploit [src] to bypass no combat cas") + return + cost = initial(produce.point_cost) + build_part(produce, cost, user) + return - if (exploiting) - log_admin("Bad topic: [usr] may be trying to HREF exploit [src] with [produce], [cost]") + else + var/obj/structure/ship_ammo/produce = (typesof(/obj/structure/ship_ammo))[index] + if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && produce.combat_equipment) + log_admin("Bad topic: [user] may be trying to HREF exploit [src] to bypass no combat cas") + return + cost = initial(produce.point_cost) + build_part(produce, cost, user) return - build_part(produce, cost, usr) - return else - log_admin("Bad topic: [usr] may be trying to HREF exploit [src]") + log_admin("Bad topic: [user] may be trying to HREF exploit [src]") return /obj/structure/machinery/part_fabricator/attack_hand(mob/user) @@ -116,104 +127,117 @@ name = "dropship part fabricator" desc = "A large automated 3D printer for producing dropship parts. You can recycle parts or ammo in it, and get 80% of your points back, by clicking it while holding them in a powerloader claw." req_access = list(ACCESS_MARINE_DROPSHIP) - valid_parts = /obj/structure/dropship_equipment - valid_ammo = /obj/structure/ship_ammo unslashable = TRUE unacidable = TRUE + /obj/structure/machinery/part_fabricator/dropship/get_point_store() - return supply_controller.dropship_points + return GLOB.supply_controller.dropship_points /obj/structure/machinery/part_fabricator/dropship/add_to_point_store(number = 1) - supply_controller.dropship_points += number + GLOB.supply_controller.dropship_points += number /obj/structure/machinery/part_fabricator/dropship/spend_point_store(number = 1) - supply_controller.dropship_points -= number + GLOB.supply_controller.dropship_points -= number /obj/structure/machinery/part_fabricator/dropship/ui_static_data(mob/user) var/list/static_data = list() static_data["Equipment"] = list() + var/is_ammo = 0 + var/index = 1 for(var/build_type in typesof(/obj/structure/dropship_equipment)) - var/obj/structure/dropship_equipment/DE = build_type - if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && initial(DE.combat_equipment)) + var/obj/structure/dropship_equipment/dropship_equipment_data = build_type + if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && dropship_equipment_data.combat_equipment) + index += 1 continue - var/build_name = initial(DE.name) - var/build_description = initial(DE.desc) - var/build_cost = initial(DE.point_cost) + var/build_name = initial(dropship_equipment_data.name) + var/build_description = initial(dropship_equipment_data.desc) + var/build_cost = initial(dropship_equipment_data.point_cost) if(build_cost) static_data["Equipment"] += list(list( "name" = capitalize_first_letters(build_name), "desc" = build_description, - "path" = build_type, - "cost" = build_cost + "cost" = build_cost, + "index" = index, + "is_ammo" = is_ammo )) + index += 1 static_data["Ammo"] = list() + is_ammo = 1 + index = 1 for(var/build_type in typesof(/obj/structure/ship_ammo)) - var/obj/structure/ship_ammo/SA = build_type - if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && initial(SA.combat_equipment)) + var/obj/structure/ship_ammo/ship_ammo_data = build_type + if(SSticker.mode && MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_COMBAT_CAS) && ship_ammo_data.combat_equipment) + index = index + 1 continue - var/build_name = initial(SA.name) - var/build_description = initial(SA.desc) - var/build_cost = initial(SA.point_cost) + var/build_name = initial(ship_ammo_data.name) + var/build_description = initial(ship_ammo_data.desc) + var/build_cost = initial(ship_ammo_data.point_cost) if(build_cost) static_data["Ammo"] += list(list( "name" = capitalize_first_letters(build_name), "desc" = build_description, - "path" = build_type, - "cost" = build_cost + "cost" = build_cost, + "index" = index, + "is_ammo" = is_ammo )) + index += 1 return static_data /obj/structure/machinery/part_fabricator/dropship/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/powerloader_clamp)) - var/obj/item/powerloader_clamp/PC = I - recycle_equipment(PC, user) + var/obj/item/powerloader_clamp/powerloader_clamp_used = I + recycle_equipment(powerloader_clamp_used, user) return return ..() -/obj/structure/machinery/part_fabricator/dropship/proc/recycle_equipment(obj/item/powerloader_clamp/PC, mob/living/user) - if(!PC.loaded) - to_chat(user, SPAN_WARNING("There is nothing loaded in \the [PC].")) +/obj/structure/machinery/part_fabricator/dropship/proc/recycle_equipment(obj/item/powerloader_clamp/powerloader_clamp_used, mob/living/user) + if(!powerloader_clamp_used.loaded) + to_chat(user, SPAN_WARNING("There is nothing loaded in \the [powerloader_clamp_used].")) return var/recycle_points - if(istype(PC.loaded, /obj/structure/dropship_equipment)) - var/obj/structure/dropship_equipment/SE = PC.loaded - recycle_points = SE.point_cost - else if(istype(PC.loaded, /obj/structure/ship_ammo)) - var/obj/structure/ship_ammo/SE = PC.loaded - if(!SE.ammo_count) - to_chat(user, SPAN_WARNING("\The [SE] is empty!")) + if(istype(powerloader_clamp_used.loaded, /obj/structure/dropship_equipment)) + var/obj/structure/dropship_equipment/sold_eqipment = powerloader_clamp_used.loaded + recycle_points = sold_eqipment.point_cost + else if(istype(powerloader_clamp_used.loaded, /obj/structure/ship_ammo)) + var/obj/structure/ship_ammo/sold_eqipment = powerloader_clamp_used.loaded + if(!sold_eqipment.ammo_count) + to_chat(user, SPAN_WARNING("\The [sold_eqipment] is empty!")) return - if(SE.ammo_count != SE.max_ammo_count) - recycle_points = (SE.point_cost * (SE.ammo_count / SE.max_ammo_count)) - to_chat(user, SPAN_WARNING("\The [SE] is not fully loaded, and less points will be able to be refunded.")) + if(sold_eqipment.ammo_count != sold_eqipment.max_ammo_count) + recycle_points = (sold_eqipment.point_cost * (sold_eqipment.ammo_count / sold_eqipment.max_ammo_count)) + to_chat(user, SPAN_WARNING("\The [sold_eqipment] is not fully loaded, and less points will be able to be refunded.")) else - recycle_points = SE.point_cost + recycle_points = sold_eqipment.point_cost + if(istype(powerloader_clamp_used.loaded, /obj/structure/ship_ammo/sentry)) + recycle_points = omnisentry_price - omnisentry_price_scale if(!recycle_points) - to_chat(user, SPAN_WARNING("\The [PC.loaded] can't be recycled!")) + to_chat(user, SPAN_WARNING("\The [powerloader_clamp_used.loaded] can't be recycled!")) return - var/thing_to_recycle = PC.loaded - to_chat(user, SPAN_WARNING("You start recycling \the [PC.loaded]!")) + var/thing_to_recycle = powerloader_clamp_used.loaded + to_chat(user, SPAN_WARNING("You start recycling \the [powerloader_clamp_used.loaded]!")) playsound(loc, 'sound/machines/hydraulics_1.ogg', 40, 1) - if(!user || !do_after(user, (7 SECONDS) * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE, PC.loaded, INTERRUPT_ALL)) + if(!user || !do_after(user, (7 SECONDS) * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE, powerloader_clamp_used.loaded, INTERRUPT_ALL)) to_chat(user, SPAN_NOTICE("You stop recycling \the [thing_to_recycle].")) return - for(var/obj/thing as anything in PC.loaded) + if(istype(powerloader_clamp_used.loaded, /obj/structure/ship_ammo/sentry)) + omnisentry_price -= omnisentry_price_scale + for(var/obj/thing as anything in powerloader_clamp_used.loaded) thing.forceMove(loc) // no sentries popping out when we qdel please qdel(thing) - qdel(PC.loaded) - PC.loaded = null - to_chat(user, SPAN_NOTICE("You recycle \the [thing_to_recycle] into [src], and get back [round(recycle_points * 0.8)] points.")) - msg_admin_niche("[key_name(user)] recycled a [thing_to_recycle] into \the [src] for [round(recycle_points * 0.8)] points.") - add_to_point_store(round(recycle_points * 0.8)) + qdel(powerloader_clamp_used.loaded) + powerloader_clamp_used.loaded = null + to_chat(user, SPAN_NOTICE("You recycle \the [thing_to_recycle] into [src], and get back [floor(recycle_points * 0.8)] points.")) + msg_admin_niche("[key_name(user)] recycled a [thing_to_recycle] into \the [src] for [floor(recycle_points * 0.8)] points.") + add_to_point_store(floor(recycle_points * 0.8)) playsound(loc, 'sound/machines/fax.ogg', 40, 1) - PC.update_icon() + powerloader_clamp_used.update_icon() // WARNING: IF YOU DECIDE TO READD THIS, GIVE THE HARDPOINTS POINT COSTS @@ -223,28 +247,26 @@ desc = "A large automated 3D printer for producing vehicle parts." req_access = list(ACCESS_MARINE_CREWMAN) generate_points = FALSE - valid_parts = /obj/item/hardpoint - valid_ammo = /obj/item/ammo_magazine/hardpoint unacidable = TRUE indestructible = TRUE /obj/structure/machinery/part_fabricator/tank/get_point_store() - return supply_controller.tank_points + return GLOB.supply_controller.tank_points /obj/structure/machinery/part_fabricator/tank/add_to_point_store(number = 1) - supply_controller.tank_points += number + GLOB.supply_controller.tank_points += number /obj/structure/machinery/part_fabricator/tank/spend_point_store(number = 1) - supply_controller.tank_points -= number + GLOB.supply_controller.tank_points -= number /obj/structure/machinery/part_fabricator/tank/ui_static_data(mob/user) var/list/static_data = list() static_data["Equipment"] = list() for(var/build_type in typesof(/obj/item/hardpoint)) - var/obj/item/hardpoint/TE = build_type - var/build_name = initial(TE.name) - var/build_description = initial(TE.desc) + var/obj/item/hardpoint/hardpoint_data = build_type + var/build_name = initial(hardpoint_data.name) + var/build_description = initial(hardpoint_data.desc) var/build_cost = 0 if(build_cost) static_data["Equipment"] += list(list( @@ -256,9 +278,9 @@ static_data["Ammo"] = list() for(var/build_type in typesof(/obj/item/ammo_magazine/hardpoint)) - var/obj/item/ammo_magazine/hardpoint/TA = build_type - var/build_name = initial(TA.name) - var/build_description = initial(TA.desc) + var/obj/item/ammo_magazine/hardpoint/ammo_data = build_type + var/build_name = initial(ammo_data.name) + var/build_description = initial(ammo_data.desc) var/build_cost = 0 if(build_cost) static_data["Ammo"] += list(list( diff --git a/code/modules/cm_preds/falcon.dm b/code/modules/cm_preds/falcon.dm index 63c7e72ab6..eb97a19c22 100644 --- a/code/modules/cm_preds/falcon.dm +++ b/code/modules/cm_preds/falcon.dm @@ -35,40 +35,57 @@ return "on [t_his] shoulder" return ..() +/obj/item/falcon_drone/equipped(mob/user, slot, silent) + . = ..() + if(!(slot == WEAR_L_EAR || slot == WEAR_R_EAR)) + return + add_verb(user, /obj/item/falcon_drone/proc/can_control_falcon_drone) + var/datum/action/predator_action/mask/control_falcon_drone/falcon_action = give_action(user, /datum/action/predator_action/mask/control_falcon_drone) + falcon_action.linked_falcon_drone = src + +/obj/item/falcon_drone/dropped(mob/user) + . = ..() + remove_verb(user, /obj/item/falcon_drone/proc/can_control_falcon_drone) + remove_action(user, /datum/action/predator_action/mask/control_falcon_drone) + /obj/item/falcon_drone/attack_self(mob/user) ..() - control_falcon_drone() + can_control_falcon_drone() -/obj/item/falcon_drone/verb/control_falcon_drone() +/obj/item/falcon_drone/proc/can_control_falcon_drone() set name = "Control Falcon Drone" set desc = "Activates your falcon drone." set category = "Yautja.Misc" - set src in usr if(usr.is_mob_incapacitated()) return - var/mob/living/carbon/human/H = usr - if(!istype(H) || !HAS_TRAIT(usr, TRAIT_YAUTJA_TECH)) + var/mob/living/carbon/human/human = usr + if(!istype(human) || !HAS_TRAIT(usr, TRAIT_YAUTJA_TECH)) to_chat(usr, SPAN_WARNING("You do not know how to use this.")) return - if(!istype(H.gloves, /obj/item/clothing/gloves/yautja)) + if(!istype(human.gloves, /obj/item/clothing/gloves/yautja)) to_chat(usr, SPAN_WARNING("You need your bracers to control \the [src]!")) return + control_falcon_drone(human, human.gloves) - var/mob/hologram/falcon/hologram = new /mob/hologram/falcon(usr.loc, usr, src, H.gloves) - usr.drop_inv_item_to_loc(src, hologram) +/obj/item/falcon_drone/proc/control_falcon_drone(mob/living/user, obj/item/clothing/gloves/yautja/bracers) + var/mob/hologram/falcon/hologram = new /mob/hologram/falcon(get_turf(user), user, src, bracers) + user.drop_inv_item_to_loc(src, hologram) /mob/hologram/falcon name = "falcon drone" + desc = "An agile drone used by Yautja to survey the hunting grounds." icon = 'icons/obj/items/hunter/pred_gear.dmi' + action_icon_state = "falcon_drone" icon_state = "falcon_drone_active" hud_possible = list(HUNTER_HUD) + motion_sensed = TRUE + initial_leave_button = /datum/action/leave_hologram/falcon + var/obj/item/falcon_drone/parent_drone var/obj/item/clothing/gloves/yautja/owned_bracers - desc = "An agile drone used by Yautja to survey the hunting grounds." - motion_sensed = TRUE /mob/hologram/falcon/Initialize(mapload, mob/M, obj/item/falcon_drone/drone, obj/item/clothing/gloves/yautja/bracers) . = ..() @@ -85,11 +102,11 @@ PF.flags_can_pass_all = PASS_ALL /mob/hologram/falcon/add_to_all_mob_huds() - var/datum/mob_hud/hud = huds[MOB_HUD_HUNTER] + var/datum/mob_hud/hud = GLOB.huds[MOB_HUD_HUNTER] hud.add_to_hud(src) /mob/hologram/falcon/remove_from_all_mob_huds() - var/datum/mob_hud/hud = huds[MOB_HUD_HUNTER] + var/datum/mob_hud/hud = GLOB.huds[MOB_HUD_HUNTER] hud.remove_from_hud(src) /mob/hologram/falcon/med_hud_set_status() @@ -129,6 +146,11 @@ qdel(src) +/datum/action/leave_hologram/falcon + icon_file = 'icons/mob/hud/actions_yautja.dmi' + button_icon_state = "pred_template" + action_icon_state = "falcon_drone" + /obj/item/trash/falcon_drone name = "destroyed falcon drone" desc = "The wreckage of a Yautja drone." diff --git a/code/modules/cm_preds/thrall_items.dm b/code/modules/cm_preds/thrall_items.dm index 80b4d42c16..708b230d5c 100644 --- a/code/modules/cm_preds/thrall_items.dm +++ b/code/modules/cm_preds/thrall_items.dm @@ -35,7 +35,7 @@ ) thrall = TRUE - items_allowed = list( + allowed_items_typecache = list( /obj/item/attachable/bayonet, /obj/item/weapon/throwing_knife, /obj/item/weapon/gun/pistol/holdout, diff --git a/code/modules/cm_preds/yaut_actions.dm b/code/modules/cm_preds/yaut_actions.dm new file mode 100644 index 0000000000..0d260363ab --- /dev/null +++ b/code/modules/cm_preds/yaut_actions.dm @@ -0,0 +1,331 @@ +#define PREDATOR_ACTION_ON_CLICK 2 //If the action is on click, and not toggled on or off +/datum/action/predator_action + icon_file = 'icons/mob/hud/actions_yautja.dmi' + button_icon_state = "pred_template" + ///If the action requires bracers worn or in-hand + var/require_bracers = FALSE + ///If the action requires a yautja mask to be worn + var/require_mask = FALSE + ///The mob calling the action + var/mob/living/carbon/human/yautja + ///The bracers on the mob (if applicable) + var/obj/item/clothing/gloves/yautja/hunter/bracers + ///The mask on the mob (if applicable) + var/obj/item/clothing/mask/gas/yautja/mask + ///If the action is currently on or in use + var/active = FALSE + +/datum/action/predator_action/can_use_action() + . = ..() + if(!.) + return FALSE + + yautja = null + bracers = null + mask = null + + var/mob/living/carbon/human/mob = owner + if(!isyautja(mob)) + return FALSE + if(mob.is_mob_incapacitated()) + return FALSE + yautja = mob + + if(require_bracers) + if(istype(yautja.gloves, /obj/item/clothing/gloves/yautja/hunter)) + bracers = yautja.gloves + else if(istype(yautja.get_held_item(), /obj/item/clothing/gloves/yautja/hunter)) + bracers = yautja.get_held_item() + if(!bracers) + to_chat(yautja, SPAN_WARNING("You don't have bracers.")) + return FALSE + + if(require_mask) + if(!istype(yautja.wear_mask, /obj/item/clothing/mask/gas/yautja)) + to_chat(yautja, SPAN_WARNING("You don't have a clan mask.")) + return FALSE + mask = yautja.wear_mask + + return TRUE + +/datum/action/predator_action/action_activate() + . = ..() + if(!can_use_action()) + return FALSE + +/datum/action/predator_action/update_button_icon(enabled) + . = ..() + if(active == PREDATOR_ACTION_ON_CLICK) + return + + if(isnull(enabled)) + active = !active + else + active = enabled + + button.icon_state = initial(button_icon_state) + if(active) + button.icon_state += "_on" + +/datum/action/predator_action/mark_for_hunt + name = "Mark for Hunt" + action_icon_state = "mark_for_hunt" + listen_signal = COMSIG_KB_YAUTJA_TOGGLE_MARK_FOR_HUNT + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/mark_for_hunt/action_activate() + . = ..() + if(yautja.hunter_data.prey) //You can only hunt one person at a time + yautja.remove_from_hunt() + return + yautja.mark_for_hunt() + +/datum/action/predator_action/mark_panel + name = "Open Mark Panel" + action_icon_state = "mark_panel" + listen_signal = COMSIG_KB_YAUTJA_MARK_PANEL + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/mark_panel/action_activate() + . = ..() + yautja.mark_panel() + +/datum/action/predator_action/claim_equipment + name = "Claim Equipment" + action_icon_state = "claim_equipment" + listen_signal = COMSIG_KB_YAUTJA_PRED_BUY + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/claim_equipment/action_activate() + . = ..() + yautja.pred_buy() + +//Actions that require wearing a mask +/datum/action/predator_action/mask + require_mask = TRUE + +/datum/action/predator_action/mask/zoom + name = "Toggle Mask Zoom" + action_icon_state = "zoom" + listen_signal = COMSIG_KB_YAUTJA_MASK_TOGGLE_ZOOM + +/datum/action/predator_action/mask/zoom/action_activate() + . = ..() + mask.toggle_zoom() + +/datum/action/predator_action/mask/visor + name = "Toggle Mask Visor" + action_icon_state = "visor" + require_bracers = TRUE //Needs bracer power to operate + listen_signal = COMSIG_KB_YAUTJA_MASK_TOGGLESIGHT + +/datum/action/predator_action/mask/visor/action_activate() + . = ..() + mask.togglesight() + +/datum/action/predator_action/mask/visor/update_button_icon(enabled) //Open or close the eye + . = ..() //Overlays + + var/new_icon_state = action_icon_state + if(enabled) + new_icon_state += "_on" + + button.overlays.Cut() + var/image/new_overlays + new_overlays = image(icon_file, button, new_icon_state) + + button.overlays += new_overlays + +/datum/action/predator_action/mask/control_falcon_drone + name = "Control Falcon Drone" + action_icon_state = "falcon_drone" + listen_signal = COMSIG_KB_YAUTJA_CONTROL_FALCON + active = PREDATOR_ACTION_ON_CLICK + require_bracers = TRUE + ///The falcon drone that will be sent when the action is pressed + var/obj/item/falcon_drone/linked_falcon_drone + +/datum/action/predator_action/mask/control_falcon_drone/action_activate() + . = ..() + linked_falcon_drone.control_falcon_drone(yautja, bracers) + + +//Actions that require wearing bracers +/datum/action/predator_action/bracer + require_bracers = TRUE + +/datum/action/predator_action/bracer/wristblade + name = "Toggle Wristblades" + action_icon_state = "wristblade" + listen_signal = COMSIG_KB_YAUTJA_WRISTBLADES + +/datum/action/predator_action/bracer/wristblade/action_activate() + . = ..() + bracers.wristblades() + +/datum/action/predator_action/bracer/combistick + name = "Yank Combi-stick" + action_icon_state = "combi" + listen_signal = COMSIG_KB_YAUTJA_CALL_COMBI + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/bracer/combistick/action_activate() + . = ..() + yautja.call_combi_internal(yautja, forced = FALSE) + +/datum/action/predator_action/bracer/smartdisc + name = "Recall nearby smart-discs" + action_icon_state = "smartdisc" + listen_signal = COMSIG_KB_YAUTJA_CALL_DISC + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/bracer/smartdisc/action_activate() + . = ..() + bracers.call_disc() + +/datum/action/predator_action/bracer/caster + name = "Toggle Plasma Caster" + action_icon_state = "plasma_caster" + listen_signal = COMSIG_KB_YAUTJA_CASTER + +/datum/action/predator_action/bracer/caster/action_activate() + . = ..() + bracers.caster() + +/datum/action/predator_action/bracer/cloak + name = "Toggle Cloak" + action_icon_state = "cloak" + listen_signal = COMSIG_KB_YAUTJA_CLOAKER + +/datum/action/predator_action/bracer/cloak/action_activate() + . = ..() + bracers.cloaker() + +/datum/action/predator_action/bracer/thwei + name = "Create Stabilizing Crystal" + action_icon_state = "thwei" + listen_signal = COMSIG_KB_YAUTJA_INJECTORS + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/bracer/thwei/action_activate() + . = ..() + bracers.injectors() + +/datum/action/predator_action/bracer/capsule + name = "Create Healing Capsule" + action_icon_state = "thwei" + listen_signal = COMSIG_KB_YAUTJA_CAPSULE + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/bracer/capsule/action_activate() + . = ..() + bracers.healing_capsule() + +/datum/action/predator_action/bracer/translator + name = "Use Translator" + action_icon_state = "translator" + listen_signal = COMSIG_KB_YAUTJA_TRANSLATE + active = PREDATOR_ACTION_ON_CLICK + +/datum/action/predator_action/bracer/translator/action_activate() + . = ..() + bracers.translate() + +/datum/action/predator_action/bracer/self_destruct + name = "Self Destruct" + action_icon_state = "self_destruct" + listen_signal = COMSIG_KB_YAUTJA_ACTIVATE_SUICIDE + +/datum/action/predator_action/bracer/self_destruct/action_activate() + . = ..() + bracers.activate_suicide() + +#undef PREDATOR_ACTION_ON_CLICK + +//Misc actions +/datum/action/yautja_emote_panel + name = "Open Emote Panel" + button_icon_state = "pred_template" + action_icon_state = "looc_toggle" + +/datum/action/yautja_emote_panel/action_activate() + . = ..() + var/mob/living/carbon/human/human_owner = owner + var/datum/species/yautja/yautja_species = human_owner.species + yautja_species.open_emote_panel() + +/datum/yautja_emote_panel + /// Static dict ("category" : (emotes)) of every yautja emote typepath + var/static/list/yautja_emotes + /// Static list of categories + var/static/list/yautja_categories = list() + /// Panel allows you to spam, so a manual CD is added here + COOLDOWN_DECLARE(panel_emote_cooldown) + +/datum/yautja_emote_panel/New() + if(length(yautja_emotes)) + return + var/list/emotes_to_add = list() + for(var/datum/emote/living/carbon/human/yautja/emote as anything in subtypesof(/datum/emote/living/carbon/human/yautja)) + if(!initial(emote.key) || initial(emote.no_panel)) + continue + + if(!(initial(emote.category) in yautja_categories)) + yautja_categories += initial(emote.category) + emotes_to_add += emote + yautja_emotes = emotes_to_add + +/datum/yautja_emote_panel/proc/ui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "YautjaEmotes") + ui.open() + +/datum/yautja_emote_panel/ui_data(mob/user) + var/list/data = list() + + data["on_cooldown"] = !COOLDOWN_FINISHED(src, panel_emote_cooldown) + + return data + +/datum/yautja_emote_panel/ui_state(mob/user) + return GLOB.conscious_state + +/datum/yautja_emote_panel/ui_static_data(mob/user) + var/list/data = list() + + data["categories"] = yautja_categories + data["emotes"] = list() + + for(var/datum/emote/living/carbon/human/yautja/emote as anything in yautja_emotes) + data["emotes"] += list(list( + "id" = initial(emote.key), + "text" = (initial(emote.override_say) || initial(emote.say_message) || initial(emote.key)), + "category" = initial(emote.category), + "path" = "[emote]", + )) + + return data + +/datum/yautja_emote_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + switch(action) + if("emote") + var/datum/emote/living/carbon/human/yautja/path + if(!params["emotePath"]) + return FALSE + + path = text2path(params["emotePath"]) + + if(!path || !COOLDOWN_FINISHED(src, panel_emote_cooldown)) + return + + if(!(path in subtypesof(/datum/emote/living/carbon/human/yautja))) + return FALSE + + COOLDOWN_START(src, panel_emote_cooldown, 2.5 SECONDS) + ui.user.emote(initial(path.key)) + return TRUE diff --git a/code/modules/cm_preds/yaut_bracers.dm b/code/modules/cm_preds/yaut_bracers.dm index 9cb8b4bea4..77efbb7ad4 100644 --- a/code/modules/cm_preds/yaut_bracers.dm +++ b/code/modules/cm_preds/yaut_bracers.dm @@ -260,8 +260,6 @@ cloak_alpha = 10 var/exploding = 0 - var/inject_timer = 0 - var/healing_capsule_timer = 0 var/disc_timer = 0 var/explosion_type = 1 //0 is BIG explosion, 1 ONLY gibs the user. var/name_active = TRUE @@ -278,6 +276,9 @@ var/obj/item/weapon/wristblades/left_wristblades var/obj/item/weapon/wristblades/right_wristblades + ///A list of all intrinsic bracer actions + var/list/bracer_actions = list(/datum/action/predator_action/bracer/wristblade, /datum/action/predator_action/bracer/caster, /datum/action/predator_action/bracer/cloak, /datum/action/predator_action/bracer/thwei, /datum/action/predator_action/bracer/capsule, /datum/action/predator_action/bracer/translator, /datum/action/predator_action/bracer/self_destruct, /datum/action/predator_action/bracer/smartdisc) + /obj/item/clothing/gloves/yautja/hunter/Initialize(mapload, new_translator_type, new_caster_material, new_owner_rank) . = ..() if(new_owner_rank) @@ -312,6 +313,10 @@ if(embedded_id.registered_name) embedded_id.set_user_data(user) + for(var/datum/action/action as anything in bracer_actions) + give_action(user, action) + + //Any projectile can decloak a predator. It does defeat one free bullet though. /obj/item/clothing/gloves/yautja/hunter/proc/bullet_hit(mob/living/carbon/human/H, obj/projectile/P) SIGNAL_HANDLER @@ -351,6 +356,10 @@ move_chip_to_bracer() if(HAS_TRAIT(user, TRAIT_CLOAKED)) decloak(user, TRUE) + + for(var/datum/action/action as anything in bracer_actions) + remove_action(user, action) + ..() /obj/item/clothing/gloves/yautja/hunter/on_enter_storage(obj/item/storage/S) @@ -362,8 +371,8 @@ //We use this to activate random verbs for non-Yautja /obj/item/clothing/gloves/yautja/hunter/proc/activate_random_verb(mob/caller) - var/option = rand(1, 11) - //we have options from 1 to 8, but we're giving the user a higher probability of being punished if they already rolled this bad + var/option = rand(1, 10) + //we have options from 1 to 7, but we're giving the user a higher probability of being punished if they already rolled this bad switch(option) if(1) . = wristblades_internal(caller, TRUE) @@ -379,8 +388,6 @@ . = call_disc_internal(caller, TRUE) if(7) . = translate_internal(caller, TRUE) - if(8) - . = call_combi_internal(caller, TRUE) else . = delimb_user(caller) @@ -451,6 +458,12 @@ to_chat(caller, SPAN_NOTICE("You activate your [left_wristblades.plural_name].")) playsound(caller, 'sound/weapons/wristblades_on.ogg', 15, TRUE) + var/datum/action/predator_action/bracer/wristblade/wb_action + for(wb_action as anything in caller.actions) + if(istypestrict(wb_action, /datum/action/predator_action/bracer/wristblade)) + wb_action.update_button_icon(wristblades_deployed) + break + return TRUE /obj/item/clothing/gloves/yautja/hunter/verb/track_gear() @@ -497,7 +510,7 @@ if(dist < closest) closest = dist closest_item = tracked_item - direction = get_dir(M,loc) + direction = Get_Compass_Dir(M,loc) areaLoc = loc for(var/mob/living/carbon/human/Y as anything in GLOB.yautja_mob_list) if(Y.stat != DEAD) @@ -514,7 +527,7 @@ var/dist = get_dist(M,Y) if(dist < closest) closest = dist - direction = get_dir(M,Y) + direction = Get_Compass_Dir(M,Y) areaLoc = loc var/output = FALSE @@ -543,7 +556,7 @@ set src in usr . = cloaker_internal(usr, FALSE) -/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/caller, forced = FALSE) +/obj/item/clothing/gloves/yautja/hunter/proc/cloaker_internal(mob/caller, forced = FALSE, silent = FALSE, instant = FALSE) . = check_random_function(caller, forced) if(.) return @@ -556,7 +569,7 @@ if(HAS_TRAIT(caller, TRAIT_CLOAKED)) //Turn it off. if(cloak_timer > world.time) - to_chat(M, SPAN_WARNING("Your cloaking device is busy! Time left: [max(round((cloak_timer - world.time) / 10), 1)] seconds.")) + to_chat(M, SPAN_WARNING("Your cloaking device is busy! Time left: [max(floor((cloak_timer - world.time) / 10), 1)] seconds.")) return FALSE decloak(caller) else //Turn it on! @@ -569,7 +582,7 @@ return FALSE if(cloak_timer > world.time) - to_chat(M, SPAN_WARNING("Your cloaking device is still recharging! Time left: [max(round((cloak_timer - world.time) / 10), 1)] seconds.")) + to_chat(M, SPAN_WARNING("Your cloaking device is still recharging! Time left: [max(floor((cloak_timer - world.time) / 10), 1)] seconds.")) return FALSE if(!drain_power(M, 50)) @@ -587,15 +600,27 @@ M.see_invisible = SEE_INVISIBLE_LEVEL_ONE log_game("[key_name_admin(usr)] has enabled their cloaking device.") - M.visible_message(SPAN_WARNING("[M] vanishes into thin air!"), SPAN_NOTICE("You are now invisible to normal detection.")) - playsound(M.loc,'sound/effects/pred_cloakon.ogg', 15, 1) - animate(M, alpha = new_alpha, time = 1.5 SECONDS, easing = SINE_EASING|EASE_OUT) + if(!silent) + M.visible_message(SPAN_WARNING("[M] vanishes into thin air!"), SPAN_NOTICE("You are now invisible to normal detection.")) + playsound(M.loc,'sound/effects/pred_cloakon.ogg', 15, 1) + + if(!instant) + animate(M, alpha = new_alpha, time = 1.5 SECONDS, easing = SINE_EASING|EASE_OUT) + else + M.alpha = new_alpha - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] SA.remove_from_hud(M) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] XI.remove_from_hud(M) - anim(M.loc,M,'icons/mob/mob.dmi',,"cloak",,M.dir) + if(!instant) + anim(M.loc,M,'icons/mob/mob.dmi',,"cloak",,M.dir) + + var/datum/action/predator_action/bracer/cloak/cloak_action + for(cloak_action as anything in M.actions) + if(istypestrict(cloak_action, /datum/action/predator_action/bracer/cloak)) + cloak_action.update_button_icon(HAS_TRAIT(caller, TRAIT_CLOAKED)) + break return TRUE @@ -615,6 +640,8 @@ if(!user) return + SEND_SIGNAL(src, COMSIG_PRED_BRACER_DECLOAKED) + UnregisterSignal(user, COMSIG_HUMAN_EXTINGUISH) UnregisterSignal(user, COMSIG_HUMAN_PRE_BULLET_ACT) UnregisterSignal(user, COMSIG_MOB_EFFECT_CLOAK_CANCEL) @@ -633,9 +660,9 @@ user.see_invisible = initial(user.see_invisible) cloak_timer = world.time + (DECLOAK_STANDARD / 2) - var/datum/mob_hud/security/advanced/SA = huds[MOB_HUD_SECURITY_ADVANCED] + var/datum/mob_hud/security/advanced/SA = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] SA.add_to_hud(user) - var/datum/mob_hud/xeno_infection/XI = huds[MOB_HUD_XENO_INFECTION] + var/datum/mob_hud/xeno_infection/XI = GLOB.huds[MOB_HUD_XENO_INFECTION] XI.add_to_hud(user) anim(user.loc, user, 'icons/mob/mob.dmi', null, "uncloak", null, user.dir) @@ -675,6 +702,12 @@ to_chat(caller, SPAN_NOTICE("You activate your plasma caster. It is in [caster.mode] mode.")) playsound(src, 'sound/weapons/pred_plasmacaster_on.ogg', 15, TRUE) + var/datum/action/predator_action/bracer/caster/caster_action + for(caster_action as anything in caller.actions) + if(istypestrict(caster_action, /datum/action/predator_action/bracer/caster)) + caster_action.update_button_icon(caster_deployed) + break + return TRUE @@ -749,7 +782,7 @@ to_chat(M, SPAN_WARNING("As you fall into unconsciousness you fail to activate your self-destruct device before you collapse.")) return if(M.stat) - to_chat(M, SPAN_WARNING("Not while you're unconcious...")) + to_chat(M, SPAN_WARNING("Not while you're unconscious...")) return var/obj/item/grab/G = M.get_active_hand() @@ -787,16 +820,25 @@ to_chat(M, SPAN_WARNING("Little too late for that now!")) return if(M.stat) - to_chat(M, SPAN_WARNING("Not while you're unconcious...")) + to_chat(M, SPAN_WARNING("Not while you're unconscious...")) return exploding = FALSE to_chat(M, SPAN_NOTICE("Your bracers stop beeping.")) message_all_yautja("[M.real_name] has cancelled their bracer's self-destruction sequence.") message_admins("[key_name(M)] has deactivated their Self-Destruct.") + + var/datum/action/predator_action/bracer/self_destruct/sd_action + for(sd_action as anything in M.actions) + if(istypestrict(sd_action, /datum/action/predator_action/bracer/self_destruct)) + sd_action.update_button_icon(exploding) + break + return + if(istype(M.wear_mask,/obj/item/clothing/mask/facehugger) || (M.status_flags & XENO_HOST)) to_chat(M, SPAN_WARNING("Strange...something seems to be interfering with your bracer functions...")) return + if(forced || alert("Detonate the bracers? Are you sure?\n\nNote: If you activate SD for any non-accidental reason during or after a fight, you commit to the SD. By initially activating the SD, you have accepted your impending death to preserve any lost honor.","Explosive Bracers", "Yes", "No") == "Yes") if(M.gloves != src) return @@ -804,7 +846,7 @@ to_chat(M, SPAN_WARNING("Little too late for that now!")) return if(M.stat) - to_chat(M, SPAN_WARNING("Not while you're unconcious...")) + to_chat(M, SPAN_WARNING("Not while you're unconscious...")) return if(exploding) return @@ -815,10 +857,16 @@ log_attack("[key_name(M)] triggered their predator self-destruct sequence in [A ? "in [A.name]":""]") message_all_yautja("[M.real_name] has triggered their bracer's self-destruction sequence.") explode(M) - return 1 + var/datum/action/predator_action/bracer/self_destruct/sd_action + for(sd_action as anything in M.actions) + if(istypestrict(sd_action, /datum/action/predator_action/bracer/self_destruct)) + sd_action.update_button_icon(exploding) + break + return TRUE +#define YAUTJA_CREATE_CRYSTAL_COOLDOWN "yautja_create_crystal_cooldown" /obj/item/clothing/gloves/yautja/hunter/verb/injectors() set name = "Create Stabilising Crystal" set category = "Yautja.Utility" @@ -826,7 +874,6 @@ set src in usr . = injectors_internal(usr, FALSE) - /obj/item/clothing/gloves/yautja/hunter/proc/injectors_internal(mob/caller, forced = FALSE) if(caller.is_mob_incapacitated()) return FALSE @@ -839,26 +886,22 @@ to_chat(caller, SPAN_WARNING("Your active hand must be empty!")) return FALSE - if(inject_timer) - to_chat(caller, SPAN_WARNING("You recently activated the stabilising crystal. Be patient.")) + if(TIMER_COOLDOWN_CHECK(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN)) + var/remaining_time = DisplayTimeText(S_TIMER_COOLDOWN_TIMELEFT(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN)) + to_chat(caller, SPAN_WARNING("You recently synthesized a stabilising crystal. A new crystal will be available in [remaining_time].")) return FALSE if(!drain_power(caller, 400)) return FALSE - inject_timer = TRUE - addtimer(CALLBACK(src, PROC_REF(injectors_ready)), 2 MINUTES) + S_TIMER_COOLDOWN_START(src, YAUTJA_CREATE_CRYSTAL_COOLDOWN, 2 MINUTES) to_chat(caller, SPAN_NOTICE("You feel a faint hiss and a crystalline injector drops into your hand.")) var/obj/item/reagent_container/hypospray/autoinjector/yautja/O = new(caller) caller.put_in_active_hand(O) playsound(src, 'sound/machines/click.ogg', 15, 1) return TRUE - -/obj/item/clothing/gloves/yautja/hunter/proc/injectors_ready() - if(ismob(loc)) - to_chat(loc, SPAN_NOTICE("Your bracers beep faintly and inform you that a new stabilising crystal is ready to be created.")) - inject_timer = FALSE +#undef YAUTJA_CREATE_CRYSTAL_COOLDOWN /obj/item/clothing/gloves/yautja/hunter/verb/healing_capsule() set name = "Create Healing Capsule" @@ -867,7 +910,7 @@ set src in usr . = healing_capsule_internal(usr, FALSE) - +#define YAUTJA_CREATE_CAPSULE_COOLDOWN "yautja_create_capsule_cooldown" /obj/item/clothing/gloves/yautja/hunter/proc/healing_capsule_internal(mob/caller, forced = FALSE) if(caller.is_mob_incapacitated()) return FALSE @@ -880,26 +923,22 @@ to_chat(caller, SPAN_WARNING("Your active hand must be empty!")) return FALSE - if(healing_capsule_timer) - to_chat(usr, SPAN_WARNING("Your bracer is still generating a new healing capsule!")) + if(TIMER_COOLDOWN_CHECK(src, YAUTJA_CREATE_CAPSULE_COOLDOWN)) + var/remaining_time = DisplayTimeText(S_TIMER_COOLDOWN_TIMELEFT(src, YAUTJA_CREATE_CAPSULE_COOLDOWN)) + to_chat(caller, SPAN_WARNING("You recently synthesized a healing capsule. A new capsule will be available in [remaining_time].")) return FALSE if(!drain_power(caller, 600)) return FALSE - healing_capsule_timer = TRUE - addtimer(CALLBACK(src, PROC_REF(healing_capsule_ready)), 4 MINUTES) + S_TIMER_COOLDOWN_START(src, YAUTJA_CREATE_CAPSULE_COOLDOWN, 4 MINUTES) to_chat(caller, SPAN_NOTICE("You feel your bracer churn as it pops out a healing capsule.")) var/obj/item/tool/surgery/healing_gel/O = new(caller) caller.put_in_active_hand(O) playsound(src, 'sound/machines/click.ogg', 15, 1) return TRUE - -/obj/item/clothing/gloves/yautja/hunter/proc/healing_capsule_ready() - if(ismob(loc)) - to_chat(loc, SPAN_NOTICE("Your bracers beep faintly and inform you that a new healing capsule is ready to be created.")) - healing_capsule_timer = FALSE +#undef YAUTJA_CREATE_CAPSULE_COOLDOWN /obj/item/clothing/gloves/yautja/hunter/verb/call_disc() set name = "Call Smart-Disc" @@ -928,7 +967,7 @@ addtimer(VARSET_CALLBACK(src, disc_timer, FALSE), 10 SECONDS) for(var/mob/living/simple_animal/hostile/smartdisc/S in range(7)) - to_chat(caller, SPAN_WARNING("The [S] skips back towards you!")) + to_chat(caller, SPAN_WARNING("[S] skips back towards you!")) new /obj/item/explosive/grenade/spawnergrenade/smartdisc(S.loc) qdel(S) @@ -991,26 +1030,6 @@ to_chat(caller, SPAN_NOTICE("You add \the [untracked_item] to the tracking system.")) return TRUE -/obj/item/clothing/gloves/yautja/hunter/verb/call_combi() - set name = "Yank combi-stick" - set category = "Yautja.Weapons" - set desc = "Yank on your combi-stick's chain, if it's in range. Otherwise... recover it yourself." - set src in usr - . = call_combi_internal(usr, FALSE) - -/obj/item/clothing/gloves/yautja/hunter/proc/call_combi_internal(mob/caller, forced = FALSE) - if(caller.is_mob_incapacitated()) - return FALSE - - . = check_random_function(caller, forced) - if(.) - return - - for(var/datum/effects/tethering/tether in caller.effects_list) - if(istype(tether.tethered.affected_atom, /obj/item/weapon/yautja/combistick)) - var/obj/item/weapon/yautja/combistick/stick = tether.tethered.affected_atom - stick.recall() - /obj/item/clothing/gloves/yautja/hunter/verb/translate() set name = "Translator" set desc = "Emit a message from your bracer to those nearby." @@ -1039,7 +1058,7 @@ if(!drain_power(caller, 50)) return - log_say("[caller.name != "Unknown" ? caller.name : "([caller.real_name])"] \[Yautja Translator\]: [msg] (CKEY: [caller.key]) (JOB: [caller.job])") + log_say("[caller.name != "Unknown" ? caller.name : "([caller.real_name])"] \[Yautja Translator\]: [msg] (CKEY: [caller.key]) (JOB: [caller.job]) (AREA: [get_area_name(caller)])") var/list/heard = get_mobs_in_view(7, caller) for(var/mob/M in heard) @@ -1148,7 +1167,7 @@ return TRUE var/mob/living/carbon/human/victim = held_mob.grabbed_thing - var/obj/item/clothing/gloves/yautja/hunter/bracer = victim.gloves + var/obj/item/clothing/gloves/yautja/bracer = victim.gloves if(isspeciesyautja(victim) && !(victim.stat == DEAD)) to_chat(user, SPAN_WARNING("You cannot unlock the bracer of a living hunter!")) return FALSE diff --git a/code/modules/cm_preds/yaut_hudprocs.dm b/code/modules/cm_preds/yaut_hudprocs.dm index 6131ac135c..460cad894c 100644 --- a/code/modules/cm_preds/yaut_hudprocs.dm +++ b/code/modules/cm_preds/yaut_hudprocs.dm @@ -442,3 +442,18 @@ T.hud_set_hunter() else to_chat(src, SPAN_YAUTJABOLD("You cannot undo the actions of a living brother or sister!")) + +/mob/living/carbon/human/proc/call_combi() + set name = "Yank combi-stick" + set category = "Yautja.Weapons" + set desc = "Yank on your combi-stick's chain, if it's in range. Otherwise... recover it yourself." + + if(usr.is_mob_incapacitated()) + return FALSE + call_combi_internal(usr) + +/mob/living/carbon/human/proc/call_combi_internal(mob/caller, forced = FALSE) + for(var/datum/effects/tethering/tether in caller.effects_list) + if(istype(tether.tethered.affected_atom, /obj/item/weapon/yautja/combistick)) + var/obj/item/weapon/yautja/combistick/stick = tether.tethered.affected_atom + stick.recall() diff --git a/code/modules/cm_preds/yaut_items.dm b/code/modules/cm_preds/yaut_items.dm index a648f2392d..97b0f14f5b 100644 --- a/code/modules/cm_preds/yaut_items.dm +++ b/code/modules/cm_preds/yaut_items.dm @@ -3,7 +3,7 @@ //Thrall subtypes are located in /code/modules/cm_preds/thrall_items.dm /proc/add_to_missing_pred_gear(obj/item/W) - if(!is_admin_level(W.z)) + if(!should_block_game_interaction(W)) GLOB.loose_yautja_gear |= W /proc/remove_from_missing_pred_gear(obj/item/W) @@ -217,7 +217,7 @@ siemens_coefficient = 0.2 min_cold_protection_temperature = SHOE_MIN_COLD_PROT max_heat_protection_temperature = SHOE_MAX_HEAT_PROT - items_allowed = list( + allowed_items_typecache = list( /obj/item/weapon/yautja/knife, /obj/item/weapon/gun/energy/yautja/plasmapistol, ) @@ -259,10 +259,9 @@ armor_rad = CLOTHING_ARMOR_MEDIUMHIGH armor_internaldamage = CLOTHING_ARMOR_MEDIUMHIGH -/obj/item/clothing/shoes/yautja/hunter/knife/New() - ..() - stored_item = new /obj/item/weapon/yautja/knife(src) - update_icon() +/obj/item/clothing/shoes/yautja/hunter/knife + spawn_item_type = /obj/item/weapon/yautja/knife + /obj/item/clothing/under/chainshirt name = "ancient alien mesh suit" desc = "A strange alloy weave in the form of a vest. It feels cold with an alien weight." @@ -394,7 +393,7 @@ var/mob/living/carbon/human/H = user var/ship_to_tele = list("Yautja Ship" = -1, "Human Ship" = "Human") - if(!HAS_TRAIT(H, TRAIT_YAUTJA_TECH) || is_admin_level(H.z)) + if(!HAS_TRAIT(H, TRAIT_YAUTJA_TECH) || should_block_game_interaction(H)) to_chat(user, SPAN_WARNING("You fiddle with it, but nothing happens!")) return @@ -762,10 +761,10 @@ if(ishuman(C)) C.emote("pain") if(isxeno(C)) - var/mob/living/carbon/xenomorph/X = C + var/mob/living/carbon/xenomorph/xeno = C C.emote("needhelp") - X.interference = 100 // Some base interference to give pred time to get some damage in, if it cannot land a single hit during this time pred is cheeks - RegisterSignal(X, COMSIG_XENO_PRE_HEAL, PROC_REF(block_heal)) + xeno.AddComponent(/datum/component/status_effect/interference, 100) // Some base interference to give pred time to get some damage in, if it cannot land a single hit during this time pred is cheeks + RegisterSignal(xeno, COMSIG_XENO_PRE_HEAL, PROC_REF(block_heal)) message_all_yautja("A hunting trap has caught something in [get_area_name(loc)]!") /obj/item/hunting_trap/proc/block_heal(mob/living/carbon/xenomorph/xeno) @@ -917,6 +916,7 @@ name = "medicomp" desc = "A complex kit of alien tools and medicines." icon_state = "medicomp" + icon = 'icons/obj/items/hunter/pred_gear.dmi' use_sound = "toolbox" w_class = SIZE_SMALL storage_flags = STORAGE_FLAGS_DEFAULT @@ -945,7 +945,7 @@ new /obj/item/tool/surgery/healing_gel/(src) /obj/item/storage/medicomp/update_icon() - if(!contents.len) + if(!length(contents)) icon_state = "medicomp_open" else icon_state = "medicomp" diff --git a/code/modules/cm_preds/yaut_mask.dm b/code/modules/cm_preds/yaut_mask.dm index ae27809a3e..f87c7a48c2 100644 --- a/code/modules/cm_preds/yaut_mask.dm +++ b/code/modules/cm_preds/yaut_mask.dm @@ -43,6 +43,8 @@ var/list/mask_huds = list(MOB_HUD_XENO_STATUS, MOB_HUD_HUNTER, MOB_HUD_HUNTER_CLAN, MOB_HUD_MEDICAL_OBSERVER) var/thrall = FALSE //Used to affect icon generation. + ///A list of all intrinsic mask actions + var/list/mask_actions = list(/datum/action/predator_action/mask/zoom, /datum/action/predator_action/mask/visor) /obj/item/clothing/mask/gas/yautja/New(location, mask_number = rand(1,12), armor_material = "ebony", legacy = "None") ..() @@ -96,8 +98,8 @@ if(istype(visor, /obj/item/clothing/glasses/night/yautja))//To change if any new vision modes are made human_holder.temp_drop_inv_item(visor) qdel(visor) - human_holder.update_inv_glasses() human_holder.update_sight() + add_vision(human_holder) /obj/item/clothing/mask/gas/yautja/proc/drain_power(mob/living/carbon/human/human_holder, drain_amount) var/obj/item/clothing/gloves/yautja/bracer = human_holder.gloves @@ -115,6 +117,18 @@ return zoom(usr, 11, 12) + update_zoom_action(src, usr) + if(zoom) + RegisterSignal(src, COMSIG_ITEM_UNZOOM, PROC_REF(update_zoom_action)) + return + +/obj/item/clothing/mask/gas/yautja/proc/update_zoom_action(source, mob/living/user) + UnregisterSignal(src, COMSIG_ITEM_UNZOOM) + var/datum/action/predator_action/mask/zoom/zoom_action + for(zoom_action as anything in user.actions) + if(istypestrict(zoom_action, /datum/action/predator_action/mask/zoom)) + zoom_action.update_button_icon(zoom) + break /obj/item/clothing/mask/gas/yautja/verb/togglesight() set name = "Toggle Mask Visors" @@ -165,14 +179,23 @@ playsound(src, 'sound/effects/pred_vision.ogg', 15, 1) user.update_inv_glasses() + var/datum/action/predator_action/mask/visor/visor_action + for(visor_action as anything in user.actions) + if(istypestrict(visor_action, /datum/action/predator_action/mask/visor)) + visor_action.update_button_icon(current_goggles) + break + #undef VISION_MODE_OFF #undef VISION_MODE_NVG /obj/item/clothing/mask/gas/yautja/dropped(mob/living/carbon/human/user) //Clear the gogglors if the helmet is removed. STOP_PROCESSING(SSobj, src) if(istype(user) && user.wear_mask == src) //inventory reference is only cleared after dropped(). + for(var/datum/action/action as anything in mask_actions) + remove_action(user, action) + for(var/listed_hud in mask_huds) - var/datum/mob_hud/H = huds[listed_hud] + var/datum/mob_hud/H = GLOB.huds[listed_hud] H.remove_hud_from(user, src) var/obj/item/visor = user.glasses if(visor) //make your hud fuck off @@ -185,9 +208,12 @@ /obj/item/clothing/mask/gas/yautja/equipped(mob/living/carbon/human/user, slot) if(slot == WEAR_FACE) + for(var/datum/action/action as anything in mask_actions) + give_action(user, action) + START_PROCESSING(SSobj, src) for(var/listed_hud in mask_huds) - var/datum/mob_hud/H = huds[listed_hud] + var/datum/mob_hud/H = GLOB.huds[listed_hud] H.add_hud_to(user, src) if(current_goggles) var/obj/item/clothing/gloves/yautja/bracer = user.gloves diff --git a/code/modules/cm_preds/yaut_procs.dm b/code/modules/cm_preds/yaut_procs.dm index 728e548dfd..d8ad1c297a 100644 --- a/code/modules/cm_preds/yaut_procs.dm +++ b/code/modules/cm_preds/yaut_procs.dm @@ -337,3 +337,4 @@ equip_to_slot_if_possible(new /obj/item/falcon_drone(src.loc), WEAR_R_EAR, disable_warning = TRUE) remove_verb(src, /mob/living/carbon/human/proc/pred_buy) + remove_action(src, /datum/action/predator_action/claim_equipment) diff --git a/code/modules/cm_preds/yaut_weapons.dm b/code/modules/cm_preds/yaut_weapons.dm index 0ea527847d..14336cbdba 100644 --- a/code/modules/cm_preds/yaut_weapons.dm +++ b/code/modules/cm_preds/yaut_weapons.dm @@ -128,6 +128,7 @@ attack_speed = 5 attack_verb = list("sliced", "slashed", "jabbed", "torn", "gored") force = MELEE_FORCE_TIER_5 + has_speed_bonus = FALSE /*######################################### ########### One Handed Weapons ############ @@ -146,7 +147,7 @@ desc = "A segmented, lightweight whip made of durable, acid-resistant metal. Not very common among Yautja Hunters, but still a dangerous weapon capable of shredding prey." icon_state = "whip" item_state = "whip" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = ITEM_PREDATOR flags_equip_slot = SLOT_WAIST embeddable = FALSE @@ -165,13 +166,13 @@ . = ..() if((human_adapted || isyautja(user)) && isxeno(target)) var/mob/living/carbon/xenomorph/xenomorph = target - xenomorph.interference = 30 + xenomorph.AddComponent(/datum/component/status_effect/interference, 30, 30) /obj/item/weapon/yautja/sword name = "clan sword" desc = "An expertly crafted Yautja blade carried by hunters who wish to fight up close. Razor sharp and capable of cutting flesh into ribbons. Commonly carried by aggressive and lethal hunters." icon_state = "clansword" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = ITEM_PREDATOR flags_equip_slot = SLOT_BACK force = MELEE_FORCE_TIER_7 @@ -189,14 +190,14 @@ . = ..() if((human_adapted || isyautja(user)) && isxeno(target)) var/mob/living/carbon/xenomorph/xenomorph = target - xenomorph.interference = 30 + xenomorph.AddComponent(/datum/component/status_effect/interference, 30, 30) /obj/item/weapon/yautja/scythe name = "dual war scythe" desc = "A huge, incredibly sharp dual blade used for hunting dangerous prey. This weapon is commonly carried by Yautja who wish to disable and slice apart their foes." icon_state = "predscythe" item_state = "scythe_dual" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = ITEM_PREDATOR flags_equip_slot = SLOT_WAIST force = MELEE_FORCE_TIER_6 @@ -213,7 +214,7 @@ ..() if((human_adapted || isyautja(user)) && isxeno(target)) var/mob/living/carbon/xenomorph/xenomorph = target - xenomorph.interference = 15 + xenomorph.AddComponent(/datum/component/status_effect/interference, 15, 15) if(prob(15)) user.visible_message(SPAN_DANGER("An opening in combat presents itself!"),SPAN_DANGER("You manage to strike at your foe once more!")) @@ -233,7 +234,7 @@ name = "combi-stick" desc = "A compact yet deadly personal weapon. Can be concealed when folded. Functions well as a throwing weapon or defensive tool. A common sight in Yautja packs due to its versatility." icon_state = "combistick" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_equip_slot = SLOT_BACK flags_item = TWOHANDED|ITEM_PREDATOR w_class = SIZE_LARGE @@ -248,14 +249,16 @@ hitsound = 'sound/weapons/bladeslice.ogg' attack_verb = list("speared", "stabbed", "impaled") - var/on = 1 - var/charged + var/on = TRUE + var/charged = FALSE var/force_wielded = MELEE_FORCE_TIER_6 var/force_unwielded = MELEE_FORCE_TIER_2 var/force_storage = MELEE_FORCE_TIER_1 /// Ref to the tether effect when thrown var/datum/effects/tethering/chain + ///The mob the chain is linked to + var/mob/living/linked_to /obj/item/weapon/yautja/combistick/Destroy() cleanup_chain() @@ -273,11 +276,13 @@ charged = FALSE remove_filter("combistick_charge") unwield(user) //Otherwise stays wielded even when thrown - if(on) - setup_chain(user) return TRUE /obj/item/weapon/yautja/combistick/proc/setup_chain(mob/living/user) + give_action(user, /datum/action/predator_action/bracer/combistick) + add_verb(user, /mob/living/carbon/human/proc/call_combi) + linked_to = user + var/list/tether_effects = apply_tether(user, src, range = 6, resistable = FALSE) chain = tether_effects["tetherer_tether"] RegisterSignal(chain, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_chain)) @@ -293,6 +298,10 @@ /// Clean up the chain, deleting/nulling/unregistering as needed /obj/item/weapon/yautja/combistick/proc/cleanup_chain() SIGNAL_HANDLER + if(linked_to) + remove_action(linked_to, /datum/action/predator_action/bracer/combistick) + remove_verb(linked_to, /mob/living/carbon/human/proc/call_combi) + if(!QDELETED(chain)) QDEL_NULL(chain) @@ -429,7 +438,7 @@ return if((human_adapted || isspeciesyautja(user)) && isxeno(target)) var/mob/living/carbon/xenomorph/xenomorph = target - xenomorph.interference = 30 + xenomorph.AddComponent(/datum/component/status_effect/interference, 30, 30) if(target == user || target.stat == DEAD) to_chat(user, SPAN_DANGER("You think you're smart?")) //very funny @@ -466,7 +475,7 @@ desc = "A viciously sharp dagger inscribed with ancient Yautja markings. Smells thickly of blood. Carried by some hunters." icon_state = "predknife" item_state = "knife" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = ITEM_PREDATOR|CAN_DIG_SHRAPNEL flags_equip_slot = SLOT_STORE sharp = IS_SHARP_ITEM_ACCURATE @@ -477,7 +486,7 @@ throw_range = 6 hitsound = 'sound/weapons/slash.ogg' attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") - actions_types = list(/datum/action/item_action) + actions_types = list(/datum/action/item_action/toggle/use) unacidable = TRUE /obj/item/weapon/yautja/knife/attack(mob/living/target, mob/living/carbon/human/user) @@ -575,7 +584,6 @@ SPAN_DANGER("[victim] is missing \his head. Pelts like this just aren't the same... You peel the skin around the stump loose with your [tool.name].")) else victim.apply_damage(10, BRUTE, v_head, sharp = TRUE) - v_head.disfigured = TRUE create_leftovers(victim, has_meat = FALSE, skin_amount = 1) if(victim.h_style == "Bald") //you can't scalp someone with no hair. user.visible_message(SPAN_DANGER("[user] makes some rough cuts on [victim]'s head and face with \a [tool]."), @@ -750,7 +758,7 @@ throwforce = MELEE_FORCE_TIER_3 embeddable = FALSE //so predators don't lose their glaive when thrown. sharp = IS_SHARP_ITEM_BIG - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT attack_verb = list("sliced", "slashed", "carved", "diced", "gored") attack_speed = 14 //Default is 7. @@ -760,7 +768,7 @@ return if((human_adapted || isyautja(user)) && isxeno(target)) var/mob/living/carbon/xenomorph/xenomorph = target - xenomorph.interference = 30 + xenomorph.AddComponent(/datum/component/status_effect/interference, 30, 30) /obj/item/weapon/twohanded/yautja/glaive/alt icon_state = "glaive_alt" @@ -885,6 +893,8 @@ icon = 'icons/obj/items/hunter/pred_gear.dmi' icon_state = null works_in_recharger = FALSE + muzzle_flash = "muzzle_flash_blue" + muzzle_flash_color = COLOR_MAGENTA item_icons = list( WEAR_BACK = 'icons/mob/humans/onmob/hunter/pred_gear.dmi', WEAR_L_HAND = 'icons/mob/humans/onmob/hunter/items_lefthand.dmi', @@ -899,7 +909,6 @@ unacidable = TRUE fire_sound = 'sound/weapons/pred_plasma_shot.ogg' ammo = /datum/ammo/energy/yautja/rifle/bolt - muzzle_flash = null // TO DO, add a decent one. zoomdevicename = "scope" flags_equip_slot = SLOT_BACK w_class = SIZE_HUGE @@ -929,7 +938,7 @@ /obj/item/weapon/gun/energy/yautja/plasmarifle/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_6*2) + set_fire_delay(FIRE_DELAY_TIER_4*2) accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 accuracy_mult_unwielded = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_6 @@ -984,6 +993,7 @@ #define FIRE_MODE_STANDARD "Standard" #define FIRE_MODE_INCENDIARY "Incendiary" + /obj/item/weapon/gun/energy/yautja/plasmapistol name = "plasma pistol" desc = "A plasma pistol capable of rapid fire. It has an integrated battery. Can be used to set fires, either to braziers or on people." @@ -994,7 +1004,8 @@ fire_sound = 'sound/weapons/pulse3.ogg' flags_equip_slot = SLOT_WAIST ammo = /datum/ammo/energy/yautja/pistol - muzzle_flash = null // TO DO, add a decent one. + muzzle_flash = "muzzle_flash_blue" + muzzle_flash_color = COLOR_MUZZLE_BLUE w_class = SIZE_MEDIUM /// Max amount of shots var/charge_time = 40 @@ -1119,11 +1130,12 @@ ) fire_sound = 'sound/weapons/pred_plasmacaster_fire.ogg' ammo = /datum/ammo/energy/yautja/caster/stun - muzzle_flash = null // TO DO, add a decent one. + muzzle_flash = "muzzle_flash_blue" + muzzle_flash_color = COLOR_MUZZLE_BLUE w_class = SIZE_HUGE force = 0 fire_delay = 3 - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = NOBLUDGEON|DELONDROP|IGNITING_ITEM //Can't bludgeon with this. flags_gun_features = GUN_UNUSUAL_DESIGN has_empty_icon = FALSE @@ -1238,6 +1250,13 @@ /obj/item/weapon/gun/energy/yautja/plasma_caster/dropped(mob/living/carbon/human/M) playsound(M, 'sound/weapons/pred_plasmacaster_off.ogg', 15, 1) to_chat(M, SPAN_NOTICE("You deactivate your plasma caster.")) + + var/datum/action/predator_action/bracer/caster/caster_action + for(caster_action as anything in M.actions) + if(istypestrict(caster_action, /datum/action/predator_action/bracer/caster)) + caster_action.update_button_icon(FALSE) + break + if(source) forceMove(source) source.caster_deployed = FALSE diff --git a/code/modules/cm_tech/droppod/droppod.dm b/code/modules/cm_tech/droppod/droppod.dm index ebaa4f7ae3..e8c514d7c2 100644 --- a/code/modules/cm_tech/droppod/droppod.dm +++ b/code/modules/cm_tech/droppod/droppod.dm @@ -169,8 +169,9 @@ for(var/obj/structure/machinery/defenses/def in loc) qdel(def) - for(var/mob/mob in view(7, loc)) + FOR_DVIEW(var/mob/mob, 7, loc, HIDE_INVISIBLE_OBSERVER) shake_camera(mob, 4, 5) + FOR_DVIEW_END addtimer(CALLBACK(src, PROC_REF(open)), open_time) diff --git a/code/modules/cm_tech/droppod/equipment.dm b/code/modules/cm_tech/droppod/equipment.dm index 727bfccf0e..da8392a151 100644 --- a/code/modules/cm_tech/droppod/equipment.dm +++ b/code/modules/cm_tech/droppod/equipment.dm @@ -27,11 +27,22 @@ equipment_to_spawn.forceMove(loc) /obj/structure/droppod/equipment/sentry/spawn_equipment(equipment, mob/M) - var/obj/structure/machinery/defenses/sentry/S = ..() - S.owner_mob = M - return S + var/obj/structure/machinery/defenses/sentry/sentry = ..() + sentry.owner_mob = M + return sentry /obj/structure/droppod/equipment/sentry/move_equipment() ..() - var/obj/structure/machinery/defenses/sentry/S = equipment_to_spawn - S.power_on() + var/obj/structure/machinery/defenses/sentry/sentry = equipment_to_spawn + sentry.power_on() + +/obj/structure/droppod/equipment/sentry_holder/spawn_equipment(equipment, mob/M) + var/obj/structure/machinery/sentry_holder/holder = ..() + var/obj/structure/machinery/defenses/sentry/sentry = holder.deployed_turret + sentry.owner_mob = M + return holder + +/obj/structure/droppod/equipment/sentry_holder/move_equipment() + ..() + var/obj/structure/machinery/sentry_holder/holder = equipment_to_spawn + holder.deploy_sentry() diff --git a/code/modules/cm_tech/droppod/gear_access_point.dm b/code/modules/cm_tech/droppod/gear_access_point.dm index b581764e2d..608fd33e18 100644 --- a/code/modules/cm_tech/droppod/gear_access_point.dm +++ b/code/modules/cm_tech/droppod/gear_access_point.dm @@ -43,9 +43,9 @@ return /obj/structure/techpod_vendor/proc/get_access_permission(mob/living/carbon/human/user) - if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || master_mode == GAMEMODE_WHISKEY_OUTPOST) //all WO has lifted access restrictions + if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || GLOB.master_mode == GAMEMODE_WHISKEY_OUTPOST) //all WO has lifted access restrictions return TRUE - else if(SSticker.mode == "Distress Signal" || master_mode == "Distress Signal") + else if(SSticker.mode == "Distress Signal" || GLOB.master_mode == "Distress Signal") if(access_settings_override) //everyone allowed to grab stuff return TRUE else if(user.get_target_lock(faction_requirement)) //only it's faction group allowed diff --git a/code/modules/cm_tech/droppod/lz_effect.dm b/code/modules/cm_tech/droppod/lz_effect.dm index 6a73916c7b..7ab955d8a0 100644 --- a/code/modules/cm_tech/droppod/lz_effect.dm +++ b/code/modules/cm_tech/droppod/lz_effect.dm @@ -34,6 +34,7 @@ /obj/effect/warning/explosive/proc/disappear() qdel(src) + /obj/effect/warning/explosive/gas name = "gas warning" color = "#42acd6" diff --git a/code/modules/cm_tech/hologram.dm b/code/modules/cm_tech/hologram.dm index 3509c0a73a..1d85df9e49 100644 --- a/code/modules/cm_tech/hologram.dm +++ b/code/modules/cm_tech/hologram.dm @@ -14,6 +14,7 @@ GLOBAL_LIST_EMPTY_TYPED(hologram_list, /mob/hologram) var/action_icon_state = "hologram_exit" var/mob/linked_mob + var/initial_leave_button = /datum/action/leave_hologram var/datum/action/leave_hologram/leave_button ///If can be detected on motion detectors. var/motion_sensed = FALSE @@ -45,7 +46,7 @@ GLOBAL_LIST_EMPTY_TYPED(hologram_list, /mob/hologram) name = "[initial(name)] ([M.name])" - leave_button = new(null, action_icon_state) + leave_button = new initial_leave_button(null, action_icon_state) leave_button.linked_hologram = src leave_button.give_to(M) @@ -101,6 +102,7 @@ GLOBAL_LIST_EMPTY_TYPED(hologram_list, /mob/hologram) var/mob/hologram/linked_hologram /datum/action/leave_hologram/action_activate() + . = ..() qdel(src) /datum/action/leave_hologram/Destroy() diff --git a/code/modules/cm_tech/implements/adv_weapon.dm b/code/modules/cm_tech/implements/adv_weapon.dm index 3cc8f1ceb4..f7b1008e08 100644 --- a/code/modules/cm_tech/implements/adv_weapon.dm +++ b/code/modules/cm_tech/implements/adv_weapon.dm @@ -130,6 +130,7 @@ name = "Start Charging" /datum/action/item_action/techweb_railgun_start_charge/action_activate() + . = ..() if (target) var/obj/item/weapon/gun/rifle/techweb_railgun/TR = target TR.start_charging(owner) @@ -138,6 +139,7 @@ name = "Abort Charge" /datum/action/item_action/techweb_railgun_abort_charge/action_activate() + . = ..() if (target) var/obj/item/weapon/gun/rifle/techweb_railgun/TR = target TR.abort_charge(owner) diff --git a/code/modules/cm_tech/implements/ammo_kits.dm b/code/modules/cm_tech/implements/ammo_kits.dm index 8cce3da199..f1545fb751 100644 --- a/code/modules/cm_tech/implements/ammo_kits.dm +++ b/code/modules/cm_tech/implements/ammo_kits.dm @@ -68,6 +68,7 @@ /obj/item/storage/box/shotgun name = "incendiary shotgun kit" desc = "A kit containing incendiary shotgun shells." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "incenbuck" storage_slots = 5 var/amount = 5 diff --git a/code/modules/cm_tech/implements/armor.dm b/code/modules/cm_tech/implements/armor.dm index c08bf6d3c1..0e772567ea 100644 --- a/code/modules/cm_tech/implements/armor.dm +++ b/code/modules/cm_tech/implements/armor.dm @@ -7,9 +7,11 @@ var/base_icon_state = "regular2" slot = ACCESSORY_SLOT_ARMOR_C + w_class = SIZE_MEDIUM + /// is it *armor* or something different & irrelevant and always passes damage & doesnt take damage to itself? + var/is_armor = TRUE var/armor_health = 10 var/armor_maxhealth = 10 - var/take_slash_damage = TRUE var/slash_durability_mult = 0.25 var/FF_projectile_durability_mult = 0.1 @@ -22,7 +24,6 @@ ) var/scrappable = TRUE - var/armor_hitsound = 'sound/effects/metalhit.ogg' var/armor_shattersound = 'sound/effects/metal_shatter.ogg' @@ -33,7 +34,7 @@ return /obj/item/clothing/accessory/health/proc/get_damage_status() - var/percentage = round(armor_health / armor_maxhealth * 100) + var/percentage = floor(armor_health / armor_maxhealth * 100) switch(percentage) if(0) . = "It is broken." @@ -98,14 +99,14 @@ SIGNAL_HANDLER if(damage <= 0 || (ammo_flags & AMMO_IGNORE_ARMOR)) return - + if(!is_armor) + return var/damage_to_nullify = armor_health var/final_proj_mult = FF_projectile_durability_mult var/mob/living/carbon/human/pfirer = P.firer if(user.faction != pfirer.faction) final_proj_mult = hostile_projectile_durability_mult - armor_health = max(armor_health - damage*final_proj_mult, 0) update_icon() @@ -120,6 +121,8 @@ /obj/item/clothing/accessory/health/proc/take_slash_damage(mob/living/user, list/slashdata) SIGNAL_HANDLER + if(!is_armor) + return var/armor_damage = slashdata["n_damage"] var/damage_to_nullify = armor_health armor_health = max(armor_health - armor_damage*slash_durability_mult, 0) @@ -134,11 +137,11 @@ slashdata["slash_noise"] = armor_hitsound /obj/item/clothing/accessory/health/attackby(obj/item/clothing/accessory/health/I, mob/user) - if(!istype(I, src.type) || !scrappable || has_suit || I.has_suit) + if(!istype(I, src.type) || !scrappable || has_suit || I.has_suit || !is_armor) return if(!I.armor_health && !armor_health) - to_chat(user, SPAN_NOTICE("You use the shards of armor to cobble together an improvised trauma plate.")) + to_chat(user, SPAN_NOTICE("You use the shards of armor to cobble together an improvised ceramic plate.")) qdel(I) qdel(src) user.put_in_active_hand(new /obj/item/clothing/accessory/health/scrap()) @@ -165,6 +168,9 @@ return ..() +/obj/item/clothing/accessory/health/ceramic_plate/take_slash_damage(mob/living/user, list/slashdata) + return + /obj/item/clothing/accessory/health/scrap name = "scrap metal" desc = "A weak armor plate, only able to protect from a little bit of damage. Perhaps that will be enough." @@ -184,3 +190,265 @@ . = ..() if(. && !armor_health) qdel(src) + +/obj/item/clothing/accessory/health/scrap/take_bullet_damage(mob/living/user, damage, ammo_flags) + if(ammo_flags & AMMO_ACIDIC) + return + + return ..() + +/obj/item/clothing/accessory/health/scrap/take_slash_damage(mob/living/user, list/slashdata) + return + +/obj/item/clothing/accessory/health/research_plate + name = "experimental uniform attachment" + desc = "Attachment to the uniform which gives X (this shouldn't be in your handdssss)" + is_armor = FALSE + icon_state = "plate_research" + var/obj/item/clothing/attached_uni + ///can the plate be recycled after X condition? 0 means it cannot be recycled, otherwise put in the biomass points to refund. + var/recyclable_value = 0 + +/obj/item/clothing/accessory/health/research_plate/Destroy() + attached_uni = null + . = ..() + +/obj/item/clothing/accessory/health/research_plate/on_attached(obj/item/clothing/attached_to, mob/living/carbon/human/user) + . = ..() + attached_uni = attached_to + +/obj/item/clothing/accessory/health/research_plate/proc/can_recycle(mob/living/user) //override this proc for check if you can recycle the plate. + return FALSE + + +/obj/item/clothing/accessory/health/research_plate/on_attached(obj/item/clothing/S, mob/living/carbon/human/user) + . = ..() + RegisterSignal(user, COMSIG_MOB_ITEM_UNEQUIPPED, PROC_REF(on_removed_sig)) + +/obj/item/clothing/accessory/health/research_plate/on_removed(mob/living/user, obj/item/clothing/C) + . = ..() + UnregisterSignal(user, COMSIG_MOB_ITEM_UNEQUIPPED) + +/obj/item/clothing/accessory/health/research_plate/proc/on_removed_sig(mob/living/user, slot) + SIGNAL_HANDLER + if(slot != attached_uni) + return FALSE + UnregisterSignal(user, COMSIG_MOB_ITEM_UNEQUIPPED) + return TRUE + +/obj/item/clothing/accessory/health/research_plate/translator + name = "experimental language translator" + desc = "Translates any language heard by the microphones on the plate without any linguistical input, allowing to translate languages never heard before and known languages alike." + +/obj/item/clothing/accessory/health/research_plate/translator/on_attached(obj/item/clothing/S, mob/living/carbon/human/user) + . = ..() + to_chat(user, SPAN_NOTICE("[src] buzzes as it begins to listen for input.")) + user.universal_understand = TRUE + +/obj/item/clothing/accessory/health/research_plate/translator/on_removed(mob/living/carbon/human/user, obj/item/clothing/C) + . = ..() + if(user.universal_understand) + to_chat(user, SPAN_NOTICE("[src] makes a sad woop sound as it powers down.")) + attached_uni = null + if(user.chem_effect_flags & CHEM_EFFECT_HYPER_THROTTLE) // we are currently under effect of simular univeral understand drug. + return + user.universal_understand = FALSE + +/obj/item/clothing/accessory/health/research_plate/translator/on_removed_sig(mob/living/carbon/human/user, slot) + . = ..() + if(. == FALSE) + return + if(user.universal_understand) + to_chat(user, SPAN_NOTICE("[src] makes a woop sound as it is powered down.")) + if(user.chem_effect_flags & CHEM_EFFECT_HYPER_THROTTLE) // we are currently under effect of simular univeral understand drug. + return + attached_uni = null + user.universal_understand = FALSE + +/obj/item/clothing/accessory/health/research_plate/coagulator + name = "experimental blood coagulator" + desc = "A device that encourages clotting through the coordinated effort of multiple sensors and radiation emitters. The Surgeon General warns that continuous exposure to radiation may be hazardous to your health." + +/obj/item/clothing/accessory/health/research_plate/coagulator/on_attached(obj/item/clothing/S, mob/living/carbon/human/user) + . = ..() + if (user.chem_effect_flags & CHEM_EFFECT_NO_BLEEDING) + return + user.chem_effect_flags |= CHEM_EFFECT_NO_BLEEDING + to_chat(user, SPAN_NOTICE("You feel tickling as you activate [src].")) + +/obj/item/clothing/accessory/health/research_plate/coagulator/on_removed(mob/living/carbon/human/user, obj/item/clothing/C) + . = ..() + if (user.chem_effect_flags & CHEM_EFFECT_NO_BLEEDING) + user.chem_effect_flags &= CHEM_EFFECT_NO_BLEEDING + to_chat(user, SPAN_NOTICE("You feel [src] peeling off from your skin.")) + attached_uni = null + +/obj/item/clothing/accessory/health/research_plate/coagulator/on_removed_sig(mob/living/carbon/human/user, slot) + . = ..() + if(. == FALSE) + return + if(user.chem_effect_flags & CHEM_EFFECT_NO_BLEEDING) + to_chat(user, SPAN_NOTICE("You feel [src] peeling off from your skin.")) + user.chem_effect_flags &= CHEM_EFFECT_NO_BLEEDING + attached_uni = null + +/obj/item/clothing/accessory/health/research_plate/emergency_injector + name = "emergency chemical plate" + desc = "One-time disposable research plate packing all kinds of chemicals injected at the will of the user by pressing two buttons on the sides simultaneously. The injection is painless, instant and packs much more chemicals than your normal emergency injector. Features OD Protection in three modes." + var/od_protection_mode = EMERGENCY_PLATE_OD_PROTECTION_STRICT + var/datum/action/item_action/activation + var/mob/living/wearer + var/used = FALSE + /// 1 means the player overdosed with OD_OFF mode. 2 means the plate adjusted the chemicals injected. + var/warning_type = FALSE + var/list/chemicals_to_inject = list( + "oxycodone" = 20, + "bicaridine" = 30, + "kelotane" = 30, + "meralyne" = 15, + "dermaline" = 15, + "dexalinp" = 1, + "inaprovaline" = 30, + ) + recyclable_value = 100 + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/Destroy() + wearer = null + if(!QDELETED(activation)) + QDEL_NULL(activation) + . = ..() + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/get_examine_text(mob/user) + . = ..() + . += SPAN_INFO("ALT-Clicking the plate will toggle overdose protection") + . += SPAN_INFO("Overdose protection seems to be [od_protection_mode == 1 ? "ON" : od_protection_mode == 2 ? "DYNAMIC" : "OFF"]") + if(used) + . += SPAN_WARNING("It is already used!") + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/clicked(mob/user, list/mods) + . = ..() + if(mods["alt"]) + var/text = "You toggle overdose protection " + if(od_protection_mode == EMERGENCY_PLATE_OD_PROTECTION_DYNAMIC) + od_protection_mode = EMERGENCY_PLATE_OD_PROTECTION_OFF + text += "to OVERRIDE. Overdose protection is now offline." + else + od_protection_mode++ + if(od_protection_mode == EMERGENCY_PLATE_OD_PROTECTION_DYNAMIC) + text += "to DYNAMIC. Overdose subsystems will inject chemicals but will not go above overdose levels." + else + text += "to STRICT. Overdose subsystems will refuse to inject if any of chemicals will overdose." + to_chat(user, SPAN_NOTICE(text)) + return TRUE + return + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/can_recycle(mob/living/user) + if(used) + return TRUE + return FALSE + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/on_attached(obj/item/clothing/S, mob/living/carbon/human/user) + . = ..() + wearer = user + activation = new /datum/action/item_action/emergency_plate/inject_chemicals(src, attached_uni) + activation.give_to(wearer) + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/on_removed(mob/living/user, obj/item/clothing/C) + . = ..() + QDEL_NULL(activation) + attached_uni = null + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/on_removed_sig(mob/living/carbon/human/user, slot) + . = ..() + if(. == FALSE) + return + QDEL_NULL(activation) + attached_uni = null + +//Action buttons +/datum/action/item_action/emergency_plate/inject_chemicals/New(Target, obj/item/holder) + . = ..() + name = "Inject Emergency Plate" + action_icon_state = "plate_research" + button.name = name + button.overlays.Cut() + button.overlays += image('icons/obj/items/items.dmi', button, action_icon_state) + +/obj/item/clothing/accessory/health/research_plate/emergency_injector/ui_action_click(mob/owner, obj/item/holder) + if(used) + to_chat(wearer, SPAN_DANGER("[src]'s inner reserve is empty, replace the plate!")) + return + for(var/chemical in chemicals_to_inject) + var/datum/reagent/reag = GLOB.chemical_reagents_list[chemical] + if(wearer.reagents.get_reagent_amount(chemical) + chemicals_to_inject[chemical] > reag.overdose) + if(od_protection_mode == EMERGENCY_PLATE_OD_PROTECTION_STRICT) + to_chat(wearer, SPAN_DANGER("You hold the two buttons, but the plate buzzes and refuses to inject, indicating the potential overdose!")) + return + if (od_protection_mode == EMERGENCY_PLATE_OD_PROTECTION_DYNAMIC) + var/adjust_volume_to_inject = reag.overdose - wearer.reagents.get_reagent_amount(chemical) + chemicals_to_inject[chemical] = adjust_volume_to_inject + warning_type = EMERGENCY_PLATE_ADJUSTED_WARNING + if(wearer.reagents.get_reagent_amount(chemical) + chemicals_to_inject[chemical] > reag.overdose && od_protection_mode == EMERGENCY_PLATE_OD_PROTECTION_OFF) + warning_type = EMERGENCY_PLATE_OD_WARNING + wearer.reagents.add_reagent(chemical, chemicals_to_inject[chemical]) + if(warning_type == EMERGENCY_PLATE_OD_WARNING) + to_chat(wearer, SPAN_DANGER("You hold the two buttons, and the plate injects the chemicals, but makes a worrying beep, indicating overdose!")) + if(warning_type == EMERGENCY_PLATE_ADJUSTED_WARNING) + to_chat(wearer, SPAN_DANGER("You hold the two buttons, and the plate injects the chemicals, but makes a relieving beep, indicating it adjusted amounts it injected to prevent overdose!")) + playsound(loc, "sound/items/air_release.ogg", 100, TRUE) + used = TRUE + +/obj/item/clothing/accessory/health/research_plate/anti_decay + name = "experimental preservation plate" + desc = "preservation plate which activates once the user is dead, uses variety of different substances and sensors to slow down the decay and increase the time before the user is permanently dead, due to small tank of preservatives, it needs to be replaced on each death." + var/mob/living/carbon/human/wearer + var/used = FALSE + + +/obj/item/clothing/accessory/health/research_plate/anti_decay/Destroy() + . = ..() + wearer = null + +/obj/item/clothing/accessory/health/research_plate/anti_decay/get_examine_text(mob/user) + . = ..() + if(used) + . += SPAN_WARNING("It is used!") + +/obj/item/clothing/accessory/health/research_plate/anti_decay/on_attached(obj/item/clothing/S, mob/living/carbon/human/user) + . = ..() + wearer = user + if(!used) + RegisterSignal(user, COMSIG_MOB_DEATH, PROC_REF(begin_preserving)) + user.revive_grace_period += 4 MINUTES + +/obj/item/clothing/accessory/health/research_plate/anti_decay/on_removed(mob/living/user, obj/item/clothing/C) + . = ..() + wearer = null + attached_uni = null + +/obj/item/clothing/accessory/health/research_plate/anti_decay/on_removed_sig(mob/living/user, slot) + . = ..() + if(. == FALSE) + return + wearer = null + attached_uni = null + +/obj/item/clothing/accessory/health/research_plate/anti_decay/proc/begin_preserving() + SIGNAL_HANDLER + UnregisterSignal(wearer, COMSIG_MOB_DEATH) + to_chat(wearer, SPAN_NOTICE("The [src] detects your death and starts injecting various chemicals to slow down your final demise!")) + RegisterSignal(wearer, COMSIG_HUMAN_REVIVED, PROC_REF(onetime_use)) + used = TRUE + +/obj/item/clothing/accessory/health/research_plate/anti_decay/proc/onetime_use() + SIGNAL_HANDLER + UnregisterSignal(wearer, COMSIG_HUMAN_REVIVED) + to_chat(wearer, SPAN_NOTICE("[icon2html(src, viewers(src))] \The [src] beeps: Chemical preservatives reserves depleted, replace the [src]")) + wearer.revive_grace_period = 5 MINUTES + + + + + + + diff --git a/code/modules/cm_tech/implements/engi_czsp.dm b/code/modules/cm_tech/implements/engi_czsp.dm index 8e1ab8248c..f1e9721f91 100644 --- a/code/modules/cm_tech/implements/engi_czsp.dm +++ b/code/modules/cm_tech/implements/engi_czsp.dm @@ -2,7 +2,7 @@ name = "engineering upgrade kit" desc = "A kit used to upgrade the defenses of an engineer's sentry. Back in 1980 when the machines tried to break free, it was a single android who laid them low. Now their technology is used widely on the rim." - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "upgradekit" /obj/item/engi_upgrade_kit/Initialize(mapload, ...) @@ -35,7 +35,7 @@ return if((user.get_active_hand()) != src) - to_chat(user, SPAN_WARNING("You must be holding the [src] to upgrade \the [D]!")) + to_chat(user, SPAN_WARNING("You must be holding [src] to upgrade [D]!")) return var/type_to_change_to = D.upgrade_string_to_type(chosen_upgrade) diff --git a/code/modules/cm_tech/implements/implants.dm b/code/modules/cm_tech/implements/implants.dm index 8dbbe5d11c..44c817d5ee 100644 --- a/code/modules/cm_tech/implements/implants.dm +++ b/code/modules/cm_tech/implements/implants.dm @@ -1,6 +1,7 @@ /obj/item/storage/box/implant name = "implant box" desc = "A sterile metal lockbox housing hypodermic implant injectors." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "implantbox" use_sound = "toolbox" storage_slots = 5 diff --git a/code/modules/cm_tech/implements/medical_czsp.dm b/code/modules/cm_tech/implements/medical_czsp.dm index 30eda5b8af..69bb90b3ee 100644 --- a/code/modules/cm_tech/implements/medical_czsp.dm +++ b/code/modules/cm_tech/implements/medical_czsp.dm @@ -2,6 +2,7 @@ /obj/item/storage/box/czsp/first_aid name = "first-aid combat support kit" desc = "Contains upgraded medical kits, nanosplints and an upgraded defibrillator." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "medicbox" storage_slots = 3 @@ -15,6 +16,7 @@ /obj/item/storage/box/czsp/medical name = "medical combat support kit" desc = "Contains upgraded medical kits, nanosplints and an upgraded defibrillator." + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "medicbox" storage_slots = 4 @@ -27,6 +29,7 @@ /obj/item/storage/box/czsp/medic_upgraded_kits name = "medical upgrade kit" + icon = 'icons/obj/items/storage/kits.dmi' icon_state = "upgradedkitbox" desc = "This kit holds upgraded trauma and burn kits, for critical injuries." max_w_class = SIZE_MEDIUM @@ -80,6 +83,9 @@ stack_id = "nano splint" +/obj/item/stack/medical/splint/nano/research + desc = "Advanced technology allows these splints to hold bones in place while being flexible and damage-resistant. Those are made from durable carbon fiber and dont look cheap, better use them sparingly." + /obj/item/device/defibrillator/upgraded name = "upgraded emergency defibrillator" icon_state = "adv_defib" diff --git a/code/modules/cm_tech/implements/stims.dm b/code/modules/cm_tech/implements/stims.dm index 7b0f74457a..f7307e2ef9 100644 --- a/code/modules/cm_tech/implements/stims.dm +++ b/code/modules/cm_tech/implements/stims.dm @@ -47,7 +47,7 @@ return icon_state = "stimpack" - var/datum/reagent/R = chemical_reagents_list[chemname] + var/datum/reagent/R = GLOB.chemical_reagents_list[chemname] if(!R) return diff --git a/code/modules/cm_tech/implements/tank.dm b/code/modules/cm_tech/implements/tank.dm index ae7dfc580e..9cd8a5c6a8 100644 --- a/code/modules/cm_tech/implements/tank.dm +++ b/code/modules/cm_tech/implements/tank.dm @@ -18,7 +18,7 @@ name = "tank coupon" desc = "We're done playing! This coupon allows the ship crew to retrieve a complete Longstreet tank from Vehicle ASRS. Make sure to send the ASRS lift down so it can be retrieved. One use only. LTB not included. Comes with free friendly fire." vehicle_type = /datum/vehicle_order/tank/broken - vehicle_category = "TANK" + vehicle_category = "LONGSTREET" /obj/item/vehicle_coupon/attack_self(mob/user) if(QDELETED(src)) @@ -31,8 +31,8 @@ /obj/item/vehicle_coupon/proc/redeem_vehicle(mob/user) SHOULD_NOT_SLEEP(TRUE) . = FALSE - var/obj/structure/machinery/computer/supplycomp/vehicle/comp = VehicleElevatorConsole - var/obj/structure/machinery/cm_vending/gear/vehicle_crew/gearcomp = VehicleGearConsole + var/obj/structure/machinery/computer/supplycomp/vehicle/comp = GLOB.VehicleElevatorConsole + var/obj/structure/machinery/cm_vending/gear/vehicle_crew/gearcomp = GLOB.VehicleGearConsole if(!comp || !gearcomp) return diff --git a/code/modules/cm_tech/implements/xeno_handler.dm b/code/modules/cm_tech/implements/xeno_handler.dm index cbafec7499..d3340ffcdf 100644 --- a/code/modules/cm_tech/implements/xeno_handler.dm +++ b/code/modules/cm_tech/implements/xeno_handler.dm @@ -53,7 +53,7 @@ SKILL_FIREARMS = SKILL_FIREARMS_EXPERT, SKILL_POLICE = SKILL_POLICE_SKILLED, SKILL_CONSTRUCTION = SKILL_CONSTRUCTION_ENGI, - SKILL_ENGINEER = SKILL_ENGINEER_ENGI, + SKILL_ENGINEER = SKILL_ENGINEER_TRAINED, SKILL_LEADERSHIP = SKILL_LEAD_MASTER, SKILL_OVERWATCH = SKILL_OVERWATCH_TRAINED, SKILL_ENDURANCE = SKILL_ENDURANCE_EXPERT, diff --git a/code/modules/cm_tech/research_memories.dm b/code/modules/cm_tech/research_memories.dm index a82575c350..9b6ac85788 100644 --- a/code/modules/cm_tech/research_memories.dm +++ b/code/modules/cm_tech/research_memories.dm @@ -14,8 +14,8 @@ clue_category["name"] = "Analyze Chemicals" clue_category["icon"] = "scroll" clue_category["clues"] = list() - for (var/chemid in chemical_data.chemical_not_completed_objective_list) - clue_category["clues"] += list(chemical_data.get_tgui_data(chemid)) + for (var/chemid in GLOB.chemical_data.chemical_not_completed_objective_list) + clue_category["clues"] += list(GLOB.chemical_data.get_tgui_data(chemid)) clue_categories += list(clue_category) return clue_categories @@ -52,7 +52,7 @@ "Analyze Chemicals", SSobjectives.statistics["chemicals_completed"], FALSE, - chemical_data.rsc_credits, + GLOB.chemical_data.rsc_credits, "white" )) @@ -62,9 +62,9 @@ /datum/research_objective_memory_interface/ui_data(mob/user) . = list() - .["research_credits"] = chemical_data.rsc_credits - var/clearance = "[chemical_data.clearance_level]" - if(chemical_data.clearance_x_access) + .["research_credits"] = GLOB.chemical_data.rsc_credits + var/clearance = "[GLOB.chemical_data.clearance_level]" + if(GLOB.chemical_data.clearance_x_access) clearance +="X" .["clearance"] = clearance .["clue_categories"] = get_clues(user) diff --git a/code/modules/cm_tech/resources/resource.dm b/code/modules/cm_tech/resources/resource.dm index 44af2234af..02c46e3e89 100644 --- a/code/modules/cm_tech/resources/resource.dm +++ b/code/modules/cm_tech/resources/resource.dm @@ -82,7 +82,7 @@ update_icon() /obj/structure/resource_node/proc/take_damage(damage) - health = Clamp(health - damage, 0, max_health) + health = clamp(health - damage, 0, max_health) healthcheck() /obj/structure/resource_node/bullet_act(obj/projectile/P) diff --git a/code/modules/cm_tech/tech.dm b/code/modules/cm_tech/tech.dm index dea505f323..1750f7e7db 100644 --- a/code/modules/cm_tech/tech.dm +++ b/code/modules/cm_tech/tech.dm @@ -21,9 +21,11 @@ var/background_icon = "background" var/background_icon_locked = "marine" - var/announce_name + var/announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" var/announce_message + var/is_tier_changer = FALSE + /datum/tech/proc/can_unlock(mob/M) SHOULD_CALL_PARENT(TRUE) @@ -58,6 +60,7 @@ return TRUE + /** Called when a tech is unlocked. Usually, benefits can be applied here * however, the purchase can still be cancelled by returning FALSE * @@ -69,11 +72,17 @@ unlocked = TRUE to_chat(user, SPAN_HELPFUL("You have purchased the '[name]' tech node.")) log_admin("[key_name_admin(user)] has bought '[name]' via tech points.") + if(!is_tier_changer) + var/log_details = announce_message + if(!log_details) + log_details = name + var/current_points = holder.points + log_ares_tech(user.real_name, is_tier_changer, announce_name, log_details, required_points, current_points) holder.spend_points(required_points) update_icon(node) if(!(tech_flags & TECH_FLAG_NO_ANNOUNCE) && announce_message && announce_name) - marine_announcement(announce_message, announce_name, 'sound/misc/notice2.ogg') + marine_announcement(announce_message, announce_name, 'sound/misc/notice2.ogg', logging = ARES_LOG_NONE) return TRUE diff --git a/code/modules/cm_tech/tech_tiers.dm b/code/modules/cm_tech/tech_tiers.dm index 498c267afa..b2d2c0a08d 100644 --- a/code/modules/cm_tech/tech_tiers.dm +++ b/code/modules/cm_tech/tech_tiers.dm @@ -4,8 +4,8 @@ var/flags = NO_FLAGS - var/disabled_color = "#FFFFFF" - var/color = "#FFFFFF" + var/disabled_color = COLOR_WHITE + var/color = COLOR_WHITE var/max_techs = INFINITE_TECHS // Infinite var/list/turf/tier_turfs @@ -19,22 +19,22 @@ /datum/tier/free name = "Initial Tier" tier = 0 - color = "#000000" - disabled_color = "#000000" + color = COLOR_BLACK + disabled_color = COLOR_BLACK flags = TIER_FLAG_TRANSITORY /datum/tier/one name = "Tier 1" tier = 1 - color = "#00FF00" + color = COLOR_GREEN disabled_color = "#007d00" /datum/tier/one_transition_two name = "Tier 1 to Tier 2 transition" tier = 1 - color = "#000000" - disabled_color = "#000000" + color = COLOR_BLACK + disabled_color = COLOR_BLACK flags = TIER_FLAG_TRANSITORY /datum/tier/two @@ -47,27 +47,27 @@ /datum/tier/two_transition_three name = "Tier 2 to Tier 3 transition" tier = 2 - color = "#000000" - disabled_color = "#000000" + color = COLOR_BLACK + disabled_color = COLOR_BLACK flags = TIER_FLAG_TRANSITORY /datum/tier/three name = "Tier 3" tier = 3 - color = "#FF0000" + color = COLOR_RED disabled_color = "#7d0000" /datum/tier/three_transition_four name = "Tier 3 to Tier 4 transition" tier = 3 - color = "#000000" - disabled_color = "#000000" + color = COLOR_BLACK + disabled_color = COLOR_BLACK flags = TIER_FLAG_TRANSITORY /datum/tier/four name = "Tier 4" tier = 4 - color = "#FF00FF" + color = COLOR_MAGENTA disabled_color = "#7d007d" max_techs = 1 diff --git a/code/modules/cm_tech/techs/abstract/transitory.dm b/code/modules/cm_tech/techs/abstract/transitory.dm index 7798b6053d..1737b6b21e 100644 --- a/code/modules/cm_tech/techs/abstract/transitory.dm +++ b/code/modules/cm_tech/techs/abstract/transitory.dm @@ -7,6 +7,7 @@ var/datum/tier/next var/techs_to_unlock = 0 + is_tier_changer = TRUE /datum/tech/transitory/check_tier_level(mob/M) if(before && before != holder.tier.type) @@ -22,7 +23,7 @@ return TRUE -/datum/tech/transitory/on_unlock() +/datum/tech/transitory/on_unlock(mob/user) . = ..() if(!next) return @@ -31,6 +32,10 @@ if(next_tier) holder.tier = next_tier holder.on_tier_change(previous_tier) + if(flags & TREE_FLAG_MARINE) + /// Due to calling parent, points will have already been spent by now. + var/current_points = holder.points + required_points + log_ares_tech(user.real_name, is_tier_changer, "ALMAYER DEFCON LEVEL INCREASED", "THREAT ASSESSMENT LEVEL INCREASED TO LEVEL [next_tier.tier].\n\nLEVEL [next_tier.tier] assets have been authorised to handle the situation.", required_points, current_points) /datum/tech/transitory/get_tier_overlay() if(!next) diff --git a/code/modules/cm_tech/techs/marine/tier1/arc.dm b/code/modules/cm_tech/techs/marine/tier1/arc.dm new file mode 100644 index 0000000000..1e3a193626 --- /dev/null +++ b/code/modules/cm_tech/techs/marine/tier1/arc.dm @@ -0,0 +1,53 @@ +/datum/tech/arc + name = "M540-B Armored Recon Carrier" + desc = "Purchase an M540-B Armored Recon Carrier, specialized in assisting groundside command. Able to be driven by Staff Officers, Executive Officers, and Commanding Officers." + icon_state = "upgrade" + + required_points = 5 + + tier = /datum/tier/one + + announce_name = "M540-B ARC ACQUIRED" + announce_message = "An M540-B Armored Recon Carrier has been authorized and will be delivered in the vehicle bay." + + flags = TREE_FLAG_MARINE + + +/datum/tech/arc/can_unlock(mob/unlocking_mob) + . = ..() + + var/obj/structure/machinery/cm_vending/gear/vehicle_crew/gearcomp = GLOB.VehicleGearConsole + + if(gearcomp.selected_vehicle == "TANK") + to_chat(unlocking_mob, SPAN_WARNING ("A vehicle has already been selected for this operation.")) + return FALSE + + return TRUE + + +/datum/tech/arc/on_unlock() + . = ..() + + var/obj/structure/machinery/computer/supplycomp/vehicle/comp = GLOB.VehicleElevatorConsole + var/obj/structure/machinery/cm_vending/gear/vehicle_crew/gearcomp = GLOB.VehicleGearConsole + + if(!comp || !gearcomp) + return FALSE + + comp.spent = FALSE + QDEL_NULL_LIST(comp.vehicles) + comp.vehicles = list( + new /datum/vehicle_order/arc() + ) + comp.allowed_roles = list(JOB_SYNTH, JOB_SEA, JOB_SO, JOB_XO, JOB_CO, JOB_GENERAL) + comp.req_access = list(ACCESS_MARINE_COMMAND) + comp.req_one_access = list() + comp.spent = FALSE + + gearcomp.req_access = list(ACCESS_MARINE_COMMAND) + gearcomp.req_one_access = list() + gearcomp.vendor_role = list() + gearcomp.selected_vehicle = "ARC" + gearcomp.available_categories = VEHICLE_ALL_AVAILABLE + + return TRUE diff --git a/code/modules/cm_tech/techs/marine/tier1/points.dm b/code/modules/cm_tech/techs/marine/tier1/points.dm index 739b82fa15..5cd19bb9e9 100644 --- a/code/modules/cm_tech/techs/marine/tier1/points.dm +++ b/code/modules/cm_tech/techs/marine/tier1/points.dm @@ -6,13 +6,13 @@ announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" announce_message = "Additional supply budget has been authorised for this operation." - required_points = 15 + required_points = 7 increase_per_purchase = 1 flags = TREE_FLAG_MARINE tier = /datum/tier/one - var/points_to_give = 100 + var/points_to_give = 50 /datum/tech/repeatable/req_points/proc/get_tech_scaling_value() //We take the number of marine players, deduced from other lists, and then get a scale multiplier from it, to be used in arbitrary manners to distribute equipment @@ -24,24 +24,23 @@ /datum/tech/repeatable/req_points/on_unlock() . = ..() - supply_controller.points += points_to_give * get_tech_scaling_value() + GLOB.supply_controller.points += points_to_give * get_tech_scaling_value() /datum/tech/repeatable/dropship_points name = "Dropship Budget Increase" icon_state = "budget_ds" desc = "Distributes resources to the dropship fabricator." - announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" announce_message = "Additional dropship part fabricator points have been authorised for this operation." - required_points = 12 + required_points = 6 increase_per_purchase = 1 flags = TREE_FLAG_MARINE tier = /datum/tier/one - var/points_to_give = 2500 + var/points_to_give = 2000 /datum/tech/repeatable/dropship_points/on_unlock() . = ..() - supply_controller.dropship_points += points_to_give + GLOB.supply_controller.dropship_points += points_to_give diff --git a/code/modules/cm_tech/techs/marine/tier2/orbital_ammo.dm b/code/modules/cm_tech/techs/marine/tier2/orbital_ammo.dm index 2ab2c2541e..506dc2d846 100644 --- a/code/modules/cm_tech/techs/marine/tier2/orbital_ammo.dm +++ b/code/modules/cm_tech/techs/marine/tier2/orbital_ammo.dm @@ -2,13 +2,11 @@ name = "OB Ammo" desc = "Purchase orbital bombardment ammo." - required_points = 10 + required_points = 5 increase_per_purchase = 2 tier = /datum/tier/two - announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" - var/type_to_give /datum/tech/repeatable/ob/on_unlock() @@ -17,12 +15,12 @@ return var/datum/supply_order/O = new /datum/supply_order() - O.ordernum = supply_controller.ordernum - supply_controller.ordernum++ - O.object = supply_controller.supply_packs[type_to_give] + O.ordernum = GLOB.supply_controller.ordernum++ + var/actual_type = GLOB.supply_packs_types[type_to_give] + O.object = GLOB.supply_packs_datums[actual_type] O.orderedby = MAIN_AI_SYSTEM - supply_controller.shoppinglist += O + GLOB.supply_controller.shoppinglist += O /datum/tech/repeatable/ob/he name = "Additional OB projectiles - HE" diff --git a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm index 16f0f26576..06770b1d6a 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm @@ -3,7 +3,6 @@ desc = "Wakes up an additional specialist to fight against any threats." icon_state = "overshield" - announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" announce_message = "An additional specialist is being taken out of cryo." required_points = 8 @@ -21,4 +20,4 @@ /datum/tech/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/cryo_spec, TRUE, FALSE) // "Marine Cryo Reinforcement (Spec)" diff --git a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm index 49b4eea8f5..19200698db 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm @@ -4,7 +4,6 @@ desc = "Wakes up additional troops to fight against any threats." icon_state = "cryotroops" - announce_name = "ALMAYER SPECIAL ASSETS AUTHORIZED" announce_message = "Additional troops are being taken out of cryo." required_points = 6 @@ -23,4 +22,4 @@ /datum/tech/repeatable/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE) + SSticker.mode.get_specific_call(/datum/emergency_call/cryo_squad/tech, TRUE, FALSE) // "Marine Cryo Reinforcements (Tech)" diff --git a/code/modules/cm_tech/techs/marine/tier4/nuke.dm b/code/modules/cm_tech/techs/marine/tier4/nuke.dm index 932caa4a68..794e619493 100644 --- a/code/modules/cm_tech/techs/marine/tier4/nuke.dm +++ b/code/modules/cm_tech/techs/marine/tier4/nuke.dm @@ -21,13 +21,13 @@ . = ..() var/datum/supply_order/new_order = new() - new_order.ordernum = supply_controller.ordernum - supply_controller.ordernum++ - new_order.object = supply_controller.supply_packs["Encrypted Operational Nuke"] + new_order.ordernum = GLOB.supply_controller.ordernum++ + var/actual_type = GLOB.supply_packs_types["Encrypted Operational Nuke"] + new_order.object = GLOB.supply_packs_datums[actual_type] new_order.orderedby = MAIN_AI_SYSTEM new_order.approvedby = MAIN_AI_SYSTEM - supply_controller.shoppinglist += new_order + GLOB.supply_controller.shoppinglist += new_order /datum/tech/nuke/can_unlock(mob/unlocking_mob) . = ..() @@ -36,10 +36,10 @@ return if(ROUND_TIME < NUKE_UNLOCK_TIME) - to_chat(unlocking_mob, SPAN_WARNING("You cannot purchase this node before [Ceiling((NUKE_UNLOCK_TIME + SSticker.round_start_time) / (1 MINUTES))] minutes into the operation.")) + to_chat(unlocking_mob, SPAN_WARNING("You cannot purchase this node before [ceil((NUKE_UNLOCK_TIME + SSticker.round_start_time) / (1 MINUTES))] minutes into the operation.")) return FALSE return TRUE /datum/tech/nuke/proc/handle_description() - desc = "Purchase a nuclear device. Only purchasable [Ceiling((NUKE_UNLOCK_TIME + SSticker.round_start_time) / (1 MINUTES))] minutes into the operation. It's the only way to be sure." + desc = "Purchase a nuclear device. Only purchasable [ceil((NUKE_UNLOCK_TIME + SSticker.round_start_time) / (1 MINUTES))] minutes into the operation. It's the only way to be sure." diff --git a/code/modules/cm_tech/techtree.dm b/code/modules/cm_tech/techtree.dm index a027789185..fbad304780 100644 --- a/code/modules/cm_tech/techtree.dm +++ b/code/modules/cm_tech/techtree.dm @@ -62,9 +62,8 @@ // (The `+ 2` on both of these is 1 for a buffer tile, and 1 for the outer `/turf/closed/void`.) var/area_max_x = longest_tier * 2 + 2 var/area_max_y = length(all_techs) * 3 + 2 - for(var/t in block(locate(1, 1, zlevel.z_value), locate(area_max_x, area_max_y, zlevel.z_value))) - var/turf/pos = t - for(var/A in pos) + for(var/turf/pos as anything in block(1, 1, zlevel.z_value, area_max_x, area_max_y, zlevel.z_value)) + for(var/A as anything in pos) qdel(A) if(pos.x == area_max_x || pos.y == area_max_y) @@ -83,7 +82,7 @@ var/x_offset = (longest_tier - tier_length) + 1 var/datum/tier/T = tree_tiers[tier] - for(var/turf/pos in block(locate(x_offset, y_offset, zlevel.z_value), locate(x_offset + tier_length*2, y_offset + 2, zlevel.z_value))) + for(var/turf/pos as anything in block(x_offset, y_offset, zlevel.z_value, x_offset + tier_length*2, y_offset + 2, zlevel.z_value)) pos.ChangeTurf(/turf/open/blank) pos.color = "#000000" LAZYADD(T.tier_turfs, pos) @@ -95,7 +94,7 @@ y_offset += 3 - entrance = locate(Ceiling((longest_tier*2 + 1)*0.5), 2, zlevel.z_value) + entrance = locate(ceil((longest_tier*2 + 1)*0.5), 2, zlevel.z_value) /datum/techtree/ui_status(mob/user, datum/ui_state/state) . = ..() @@ -181,6 +180,7 @@ /// `tech`: a typepath to a tech /datum/techtree/proc/get_node(tech) + RETURN_TYPE(/datum/tech) return techs_by_type[tech] /datum/techtree/proc/on_node_gained(obj/structure/resource_node/RN) diff --git a/code/modules/cm_tech/trees/marine.dm b/code/modules/cm_tech/trees/marine.dm index ec6df5d21a..5ab2b7eaa3 100644 --- a/code/modules/cm_tech/trees/marine.dm +++ b/code/modules/cm_tech/trees/marine.dm @@ -9,7 +9,7 @@ GLOBAL_LIST_EMPTY(marine_leaders) var/mob/living/carbon/human/leader var/mob/living/carbon/human/dead_leader - var/job_cannot_be_overriden = list( + var/job_cannot_be_overridden = list( JOB_XO, JOB_CO ) @@ -70,7 +70,7 @@ GLOBAL_LIST_EMPTY(marine_leaders) /datum/techtree/marine/proc/handle_death(mob/living/carbon/human/H) SIGNAL_HANDLER - if((H.job in job_cannot_be_overriden) && (!dead_leader || !dead_leader.check_tod())) + if((H.job in job_cannot_be_overridden) && (!dead_leader || !dead_leader.check_tod())) RegisterSignal(H, COMSIG_PARENT_QDELETING, PROC_REF(cleanup_dead_leader)) RegisterSignal(H, COMSIG_HUMAN_REVIVED, PROC_REF(readd_leader)) dead_leader = H @@ -152,4 +152,4 @@ GLOBAL_LIST_EMPTY(tech_controls_marine) return //No need to announce tier updates for tier 1 var/name = "ALMAYER DEFCON LEVEL INCREASED" var/input = "THREAT ASSESSMENT LEVEL INCREASED TO LEVEL [tier.tier].\n\nLEVEL [tier.tier] assets have been authorised to handle the situation." - marine_announcement(input, name, 'sound/AI/commandreport.ogg') + marine_announcement(input, name, 'sound/AI/commandreport.ogg', logging = ARES_LOG_NONE) diff --git a/code/modules/customitems/item_spawning.dm b/code/modules/customitems/item_spawning.dm index b2d6b34f51..e9733d0635 100644 --- a/code/modules/customitems/item_spawning.dm +++ b/code/modules/customitems/item_spawning.dm @@ -10,10 +10,10 @@ GLOBAL_LIST_FILE_LOAD(custom_items, "config/custom_items.txt") for(var/line in GLOB.custom_items) // split & clean up var/list/Entry = splittext(line, ":") - for(var/i = 1 to Entry.len) + for(var/i = 1 to length(Entry)) Entry[i] = trim(Entry[i]) - if(Entry.len < 2) + if(length(Entry) < 2) continue; if(Entry[1] == M.ckey) diff --git a/code/modules/decorators/cassette_decorator.dm b/code/modules/decorators/cassette_decorator.dm index 4968f4cc1b..0b8558a693 100644 --- a/code/modules/decorators/cassette_decorator.dm +++ b/code/modules/decorators/cassette_decorator.dm @@ -3,7 +3,7 @@ /datum/decorator/cassette/is_active_decor() cassette_data = file2list("sound/music/walkman/playlist.txt") - return cassette_data.len > 0 + return length(cassette_data) > 0 /datum/decorator/cassette/get_decor_types() return typesof(/obj/item/device/cassette_tape) diff --git a/code/modules/decorators/christmas.dm b/code/modules/decorators/christmas.dm index 2a87c7cb49..290ac63024 100644 --- a/code/modules/decorators/christmas.dm +++ b/code/modules/decorators/christmas.dm @@ -49,10 +49,13 @@ helmet.desc = "Ho ho ho, Merry Christmas!" helmet.icon = 'icons/obj/items/clothing/hats.dmi' helmet.icon_override = 'icons/mob/humans/onmob/head_0.dmi' - helmet.icon_state = "santahat" - helmet.flags_inventory = BLOCKSHARPOBJ helmet.flags_inv_hide = HIDEEARS|HIDEALLHAIR helmet.flags_marine_helmet = NO_FLAGS + helmet.flags_atom |= NO_SNOW_TYPE|NO_NAME_OVERRIDE + if(prob(50)) + helmet.icon_state = "santa_hat_red" + else + helmet.icon_state = "santa_hat_green" helmet.update_icon() // barricade definition. Also only a single definition @@ -63,7 +66,7 @@ /datum/decorator/christmas/barricade/decorate(obj/structure/barricade/barricade) if(!istype(barricade)) return - barricade.icon = 'icons/obj/structures/barricades_christmas.dmi' + barricade.wire_icon = 'icons/obj/structures/barricades_christmas.dmi' barricade.update_icon() diff --git a/code/modules/defenses/bell_tower.dm b/code/modules/defenses/bell_tower.dm index a9d6c08bc7..7ce252b3f4 100644 --- a/code/modules/defenses/bell_tower.dm +++ b/code/modules/defenses/bell_tower.dm @@ -18,11 +18,11 @@ can_be_near_defense = TRUE choice_categories = list( - SENTRY_CATEGORY_IFF = list(FACTION_USCM, FACTION_WEYLAND, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_MARINE, SENTRY_FACTION_WEYLAND, SENTRY_FACTION_HUMAN), ) selected_categories = list( - SENTRY_CATEGORY_IFF = FACTION_USCM, + SENTRY_CATEGORY_IFF = FACTION_MARINE, ) @@ -110,7 +110,7 @@ if(M.get_target_lock(faction)) return - var/list/turf/path = getline2(src, linked_bell, include_from_atom = TRUE) + var/list/turf/path = get_line(src, linked_bell) for(var/turf/PT in path) if(PT.density) return @@ -210,7 +210,7 @@ if(turned_on) if(cloak_alpha_current < cloak_alpha_max) cloak_alpha_current = cloak_alpha_max - cloak_alpha_current = Clamp(cloak_alpha_current + incremental_ring_camo_penalty, cloak_alpha_max, 255) + cloak_alpha_current = clamp(cloak_alpha_current + incremental_ring_camo_penalty, cloak_alpha_max, 255) cloakebelltower.alpha = cloak_alpha_current addtimer(CALLBACK(src, PROC_REF(cloaker_fade_out_finish), cloakebelltower), camouflage_break, TIMER_OVERRIDE|TIMER_UNIQUE) animate(cloakebelltower, alpha = cloak_alpha_max, time = camouflage_break, easing = LINEAR_EASING, flags = ANIMATION_END_NOW) diff --git a/code/modules/defenses/defenses.dm b/code/modules/defenses/defenses.dm index 2ff8ffe11c..e334d2c10a 100644 --- a/code/modules/defenses/defenses.dm +++ b/code/modules/defenses/defenses.dm @@ -83,7 +83,7 @@ if(ishuman(user)) message += SPAN_INFO("A multitool can be used to disassemble it.") message += "\n" - message += SPAN_INFO("The turret is currently [locked? "locked" : "unlocked"] to non-engineers.") + message += SPAN_INFO("It is currently [locked? "locked" : "unlocked"] to non-engineers.") message += "\n" message += SPAN_INFO("It has [SPAN_HELPFUL("[health]/[health_max]")] health.") message += "\n" @@ -99,6 +99,7 @@ if(!(placed||static)) return FALSE + msg_admin_niche("[key_name(usr)] turned on [src] at [get_location_in_text(src)] [ADMIN_JMP(loc)]") turned_on = TRUE power_on_action() update_icon() @@ -106,6 +107,7 @@ GLOB.all_active_defenses += src /obj/structure/machinery/defenses/proc/power_off() + msg_admin_niche("[key_name(usr)] turned off [src] at [get_location_in_text(src)] [ADMIN_JMP(loc)]") turned_on = FALSE power_off_action() update_icon() @@ -119,6 +121,7 @@ * @param selection: configuration value for category. */ /obj/structure/machinery/defenses/proc/update_choice(mob/user, category, selection) + msg_admin_niche("[key_name(user)] changed the [category] of [src] at [get_location_in_text(src)] to [selection] [ADMIN_JMP(loc)]") if(category in selected_categories) selected_categories[category] = selection switch(category) @@ -130,7 +133,6 @@ switch(category) if("nickname") nickname = selection - message_admins("[key_name_admin(user)] has labelled structure to [nickname]", user.x, user.y, user.z) return TRUE return FALSE @@ -140,14 +142,18 @@ */ /obj/structure/machinery/defenses/proc/handle_iff(selection) switch(selection) - if(FACTION_USCM) + if(FACTION_MARINE) faction_group = FACTION_LIST_MARINE - if(FACTION_WEYLAND) - faction_group = FACTION_LIST_MARINE_WY - if(FACTION_HUMAN) + if(SENTRY_FACTION_HUMAN) faction_group = FACTION_LIST_HUMANOID - if(FACTION_COLONY) + if(SENTRY_FACTION_COLONY) faction_group = list(FACTION_MARINE, FACTION_COLONIST) + if(SENTRY_FACTION_WEYLAND) + faction_group = FACTION_LIST_MARINE_WY + if(FACTION_WY) + faction_group = FACTION_LIST_WY + if(FACTION_UPP) + faction_group = FACTION_LIST_UPP /obj/structure/machinery/defenses/start_processing() @@ -185,7 +191,7 @@ additional_shock++ if(prob(50)) var/mob/living/carbon/human/H = user - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) if(turned_on) additional_shock++ H.electrocute_act(40, src, additional_shock)//god damn Hans... @@ -204,7 +210,7 @@ to_chat(user, SPAN_WARNING("You've hacked \the [src], it's now ours!")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE)) to_chat(user, SPAN_WARNING("You don't have the training to do this.")) return // if the sentry can have key interacted with @@ -372,11 +378,11 @@ to_chat(user, SPAN_WARNING("It must be anchored to the ground before you can activate it.")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) if(locked) to_chat(user, SPAN_WARNING("The control panel on [src] is locked to non-engineers.")) return - user.visible_message(SPAN_NOTICE("[user] begins switching the [src] [turned_on? "off" : "on"]."), SPAN_NOTICE("You begin switching the [src] [turned_on? "off" : "on"].")) + user.visible_message(SPAN_NOTICE("[user] begins switching [src] [turned_on? "off" : "on"]."), SPAN_NOTICE("You begin switching [src] [turned_on? "off" : "on"].")) if(!(do_after(user, 20, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_FRIENDLY, src))) return @@ -384,7 +390,7 @@ if(!can_be_near_defense) for(var/obj/structure/machinery/defenses/def in urange(defense_check_range, loc)) if(def != src && def.turned_on && !def.can_be_near_defense) - to_chat(user, SPAN_WARNING("This is too close to a [def]!")) + to_chat(user, SPAN_WARNING("This is too close to \a [def]!")) return power_on() @@ -461,12 +467,12 @@ /obj/structure/machinery/defenses/bullet_act(obj/projectile/P) bullet_ping(P) - visible_message(SPAN_WARNING("[src] is hit by the [P]!")) + visible_message(SPAN_WARNING("[src] is hit by [P]!")) var/ammo_flags = P.ammo.flags_ammo_behavior | P.projectile_override_flags if(ammo_flags & AMMO_ACIDIC) //Fix for xenomorph spit doing baby damage. - update_health(round(P.damage/3)) + update_health(floor(P.damage/3)) else - update_health(round(P.damage/10)) + update_health(floor(P.damage/10)) return TRUE // DAMAGE HANDLING OVER @@ -496,7 +502,7 @@ return if(!friendly_faction(usr.faction)) return - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You don't have the training to do this.")) return diff --git a/code/modules/defenses/handheld.dm b/code/modules/defenses/handheld.dm index d1f9a3cf20..e9f30bc0cc 100644 --- a/code/modules/defenses/handheld.dm +++ b/code/modules/defenses/handheld.dm @@ -111,7 +111,8 @@ /obj/item/defenses/handheld/sentry/get_upgrade_list() . = list( "Shotgun Upgrade" = image(icon = 'icons/obj/structures/machinery/defenses/sentry.dmi', icon_state = "Shotgun uac_sentry_handheld"), - "Mini-Sentry Upgrade" = image(icon = 'icons/obj/structures/machinery/defenses/sentry.dmi', icon_state = "Mini uac_sentry_handheld") + "Mini-Sentry Upgrade" = image(icon = 'icons/obj/structures/machinery/defenses/sentry.dmi', icon_state = "Mini uac_sentry_handheld"), + "Omni-Sentry Upgrade" = image(icon = 'icons/obj/structures/machinery/defenses/sentry.dmi', icon_state="Normal uac_sentry_handheld") ) /obj/item/defenses/handheld/sentry/upgrade_string_to_type(upgrade_string) @@ -121,6 +122,12 @@ if("Mini-Sentry Upgrade") return /obj/item/defenses/handheld/sentry/mini +/obj/item/defenses/handheld/sentry/dmr + name = "handheld UA 725-D sniper sentry" + icon_state = "DMR uac_sentry_handheld" + deployment_time = 2 SECONDS + defense_type = /obj/structure/machinery/defenses/sentry/dmr + /obj/item/defenses/handheld/sentry/shotgun name = "handheld UA 12-G shotgun sentry" icon_state = "Shotgun uac_sentry_handheld" @@ -132,12 +139,41 @@ defense_type = /obj/structure/machinery/defenses/sentry/mini deployment_time = 0.75 SECONDS +/obj/item/defenses/handheld/sentry/wy + name = "handheld WY 202-GMA1 smart sentry" + desc = "A compact version of the Weyland-Yutani defenses. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + icon_state = "Normal wy_sentry_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/wy + deployment_time = 5 SECONDS + +/obj/item/defenses/handheld/sentry/wy/mini + name = "handheld WY 14-GRA2 mini sentry" + icon_state = "Mini wy_sentry_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/mini/wy + deployment_time = 2 SECONDS + +/obj/item/defenses/handheld/sentry/wy/heavy + name = "handheld WY 2-ADT-A3 heavy sentry" + icon = 'icons/obj/structures/machinery/defenses/wy_heavy.dmi' + icon_state = "Heavy wy_sentry_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/dmr/wy + deployment_time = 10 SECONDS + /obj/item/defenses/handheld/sentry/upp name = "handheld UPPA 32-H sentry gun" desc = "A compact version of the UPPA defenses. Designed for quick deployment of the associated type in the field." icon_state = "UPP uac_sentry_handheld" defense_type = /obj/structure/machinery/defenses/sentry/upp +/obj/item/defenses/handheld/sentry/upp/light + name = "handheld UPP SDS-R8 light sentry" + desc = "A compact version of the UPP defense sentry SDS-R7. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/upp_defenses.dmi' + icon_state = "Light upp_sentry_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/upp/light + deployment_time = 2 SECONDS + // FLAMER BASE AND UPGRADES /obj/item/defenses/handheld/sentry/flamer name = "handheld UA 42-F sentry flamer" @@ -185,6 +221,24 @@ deployment_time = 0.75 SECONDS ammo_convert = /obj/item/ammo_magazine/sentry_flamer/mini +/obj/item/defenses/handheld/sentry/flamer/wy + name = "handheld WY 406-FE2 smart sentry" + desc = "A compact version of the Weyland-Yutani defenses. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + icon_state = "Normal wy_flamer_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/flamer/wy + deployment_time = 5 SECONDS + ammo_convert = /obj/item/ammo_magazine/sentry_flamer/wy + +/obj/item/defenses/handheld/sentry/flamer/upp + name = "handheld UPP SDS-R5 sentry flamer" + desc = "A compact version of the UPP defenses. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/upp_defenses.dmi' + icon_state = "Normal upp_flamer_handheld" + defense_type = /obj/structure/machinery/defenses/sentry/flamer/upp + deployment_time = 5 SECONDS + ammo_convert = /obj/item/ammo_magazine/sentry_flamer/upp + // TESLA BASE AND UPGRADES /obj/item/defenses/handheld/tesla_coil name = "handheld 21S tesla coil" @@ -282,4 +336,19 @@ deployment_time = 2 SECONDS defense_type = /obj/structure/machinery/defenses/planted_flag/range +/obj/item/defenses/handheld/planted_flag/wy + name = "handheld WY planted flag" + desc = "A compact version of the Weyland-Yutani defenses. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + icon_state = "WY planted_flag_handheld" + deployment_time = 3 SECONDS + defense_type = /obj/structure/machinery/defenses/planted_flag/wy + +/obj/item/defenses/handheld/planted_flag/upp + name = "handheld UPP planted flag" + desc = "A compact version of the UPP defenses. Designed for deployment in the field." + icon = 'icons/obj/structures/machinery/defenses/upp_defenses.dmi' + icon_state = "UPP planted_flag_handheld" + deployment_time = 5 SECONDS + defense_type = /obj/structure/machinery/defenses/planted_flag/upp diff --git a/code/modules/defenses/planted_flag.dm b/code/modules/defenses/planted_flag.dm index f0f6b05565..d44f22f38b 100644 --- a/code/modules/defenses/planted_flag.dm +++ b/code/modules/defenses/planted_flag.dm @@ -16,11 +16,11 @@ can_be_near_defense = TRUE choice_categories = list( - SENTRY_CATEGORY_IFF = list(FACTION_USCM, FACTION_WEYLAND, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_MARINE, SENTRY_FACTION_WEYLAND, SENTRY_FACTION_HUMAN), ) selected_categories = list( - SENTRY_CATEGORY_IFF = FACTION_USCM, + SENTRY_CATEGORY_IFF = FACTION_MARINE, ) @@ -115,6 +115,40 @@ H.activate_order_buff(COMMAND_ORDER_FOCUS, buff_intensity, 5 SECONDS) H.activate_order_buff(COMMAND_ORDER_MOVE, buff_intensity, 5 SECONDS) +/obj/structure/machinery/defenses/planted_flag/wy + name = "WY planted flag" + desc = "A planted flag with the iconic WY flag plastered all over it, you feel a burst of energy by its mere sight." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + disassemble_time = 6 SECONDS + hack_time = 25 SECONDS + health = 300 + health_max = 300 + area_range = 11 + handheld_type = /obj/item/defenses/handheld/planted_flag/wy + defense_type = "WY" + selected_categories = list( + SENTRY_CATEGORY_IFF = SENTRY_FACTION_WEYLAND, + ) + +/obj/structure/machinery/defenses/planted_flag/wy/apply_buff_to_player(mob/living/carbon/human/H) + H.activate_order_buff(COMMAND_ORDER_HOLD, buff_intensity, 2 SECONDS) + H.activate_order_buff(COMMAND_ORDER_FOCUS, buff_intensity, 2 SECONDS) + H.activate_order_buff(COMMAND_ORDER_MOVE, buff_intensity, 2 SECONDS) + +/obj/structure/machinery/defenses/planted_flag/upp + name = "UPP planted flag" + desc = "A planted flag with the iconic UPP flag plastered all over it, you feel a burst of energy by its mere sight." + icon = 'icons/obj/structures/machinery/defenses/upp_defenses.dmi' + disassemble_time = 5 SECONDS + health = 300 + health_max = 300 + area_range = 11 + handheld_type = /obj/item/defenses/handheld/planted_flag/upp + defense_type = "UPP" + selected_categories = list( + SENTRY_CATEGORY_IFF = FACTION_UPP, + ) + /obj/item/storage/backpack/jima name = "JIMA frame mount" icon = 'icons/obj/items/clothing/backpacks.dmi' diff --git a/code/modules/defenses/sentry.dm b/code/modules/defenses/sentry.dm index 9eeca4de07..c49341f8c0 100644 --- a/code/modules/defenses/sentry.dm +++ b/code/modules/defenses/sentry.dm @@ -12,7 +12,7 @@ var/list/targets = list() // Lists of current potential targets var/list/other_targets = list() //List of special target types to shoot at, if needed. var/atom/movable/target = null - var/list/turf/watching_turfs + var/datum/shape/range_bounds var/datum/effect_system/spark_spread/spark_system //The spark system, used for generating... sparks? var/last_fired = 0 var/fire_delay = 1 @@ -25,7 +25,7 @@ /// Sound used when firing var/firing_sound = 'sound/weapons/gun_smartgun1.ogg' - var/sentry_type = "sentry" //Used for the icon + var/sentry_type = "uac_sentry" //Used for the icon display_additional_stats = TRUE /// Light strength when turned on var/luminosity_strength = 5 @@ -52,12 +52,12 @@ /// action list is configurable for all subtypes, this is just an example choice_categories = list( // SENTRY_CATEGORY_ROF = list(ROF_SINGLE, ROF_BURST, ROF_FULL_AUTO), - SENTRY_CATEGORY_IFF = list(FACTION_USCM, FACTION_WEYLAND, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_MARINE, SENTRY_FACTION_WEYLAND, SENTRY_FACTION_HUMAN, FACTION_UPP), ) selected_categories = list( // SENTRY_CATEGORY_ROF = ROF_SINGLE, - SENTRY_CATEGORY_IFF = FACTION_USCM, + SENTRY_CATEGORY_IFF = FACTION_MARINE, ) can_be_near_defense = TRUE @@ -78,15 +78,15 @@ if(turned_on) start_processing() - setup_target_acquisition() + set_range() update_icon() - RegisterSignal(src, COMSIG_ATOM_TURF_CHANGE, PROC_REF(unsetup_target_acquisition)) + RegisterSignal(src, COMSIG_ATOM_TURF_CHANGE, PROC_REF(unset_range)) /obj/structure/machinery/defenses/sentry/Destroy() //Clear these for safety's sake. targets = null other_targets = null target = null - watching_turfs = null + QDEL_NULL(range_bounds) QDEL_NULL(spark_system) QDEL_NULL(ammo) stop_processing() @@ -97,90 +97,52 @@ stop_processing() return - if(!watching_turfs) - setup_target_acquisition() - + if(!range_bounds) + set_range() + targets = SSquadtree.players_in_range(range_bounds, z, QTREE_SCAN_MOBS | QTREE_EXCLUDE_OBSERVER) if(!targets) return FALSE - if(!target && targets.len) + if(!target && length(targets)) target = pick(targets) get_target(target) return TRUE -/obj/structure/machinery/defenses/sentry/proc/setup_target_acquisition() - set_watched_turfs() - - for(var/turf/watched_turf as anything in watching_turfs) - RegisterSignal(watched_turf, COMSIG_TURF_ENTERED, PROC_REF(add_entering_target)) - for(var/mob/living/living_target in watched_turf) - add_to_targets(living_target) - -/obj/structure/machinery/defenses/sentry/proc/set_watched_turfs() +/obj/structure/machinery/defenses/sentry/proc/set_range() if(omni_directional) - watching_turfs = block(locate(x - 5, y - 5, z), locate(x + 5, y + 5, z)) + range_bounds = SQUARE(x, y, 8) return - switch(dir) if(EAST) - watching_turfs = block(locate(x + 1, y - 3, z), locate(x + 7, y + 3, z)) + range_bounds = SQUARE(x + 4, y, 7) if(WEST) - watching_turfs = block(locate(x - 7, y - 3, z), locate(x - 1, y + 3, z)) + range_bounds = SQUARE(x - 4, y, 7) if(NORTH) - watching_turfs = block(locate(x - 3, y + 1, z), locate(x + 3, y + 7, z)) + range_bounds = SQUARE(x, y + 4, 7) if(SOUTH) - watching_turfs = block(locate(x - 3, y - 7, z), locate(x + 3, y - 1, z)) - -/obj/structure/machinery/defenses/sentry/proc/add_entering_target(turf/entered_turf, atom/movable/atom_moved) - SIGNAL_HANDLER - if(!istype(atom_moved, /mob/living)) - return + range_bounds = SQUARE(x, y - 4, 7) - if(atom_moved in targets) - return - - add_to_targets(atom_moved) - -/obj/structure/machinery/defenses/sentry/proc/target_moved(atom/movable/atom_moved, turf/entered_turf) +/obj/structure/machinery/defenses/sentry/proc/unset_range() SIGNAL_HANDLER - if(entered_turf in watching_turfs) - return - - targets -= atom_moved - UnregisterSignal(atom_moved, COMSIG_MOVABLE_TURF_ENTERED) - -/obj/structure/machinery/defenses/sentry/proc/add_to_targets(atom/movable/new_target) - LAZYOR(targets, new_target) - RegisterSignal(new_target, COMSIG_MOVABLE_TURF_ENTERED, PROC_REF(target_moved), override = TRUE) - - if(!target) - get_target(new_target) - -/obj/structure/machinery/defenses/sentry/proc/unsetup_target_acquisition() - SIGNAL_HANDLER - for(var/turf/watched_turf as anything in watching_turfs) - UnregisterSignal(watched_turf, COMSIG_TURF_ENTERED) - watching_turfs = null - for(var/atom/temp_target in targets) - UnregisterSignal(temp_target, COMSIG_MOVABLE_TURF_ENTERED) - targets = list() + if(range_bounds) + QDEL_NULL(range_bounds) /obj/structure/machinery/defenses/sentry/update_icon() ..() overlays.Cut() if(stat == DEFENSE_DAMAGED) - overlays += "[defense_type] uac_[sentry_type]_destroyed" + overlays += "[defense_type] [sentry_type]_destroyed" return if(!ammo || ammo && !ammo.current_rounds) - overlays += "[defense_type] uac_[sentry_type]_noammo" + overlays += "[defense_type] [sentry_type]_noammo" return if(turned_on) - overlays += "[defense_type] uac_[sentry_type]_on" + overlays += "[defense_type] [sentry_type]_on" else - overlays += "[defense_type] uac_[sentry_type]" + overlays += "[defense_type] [sentry_type]" /obj/structure/machinery/defenses/sentry/attack_hand_checks(mob/user) @@ -241,13 +203,13 @@ visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("The [name] hums to life and emits several beeps.")]") visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("The [name] buzzes in a monotone voice: '[start_up_message]'")]") start_processing() - setup_target_acquisition() + set_range() /obj/structure/machinery/defenses/sentry/power_off_action() set_light(0) visible_message("[icon2html(src, viewers(src))] [SPAN_NOTICE("The [name] powers down and goes silent.")]") stop_processing() - unsetup_target_acquisition() + unset_range() /obj/structure/machinery/defenses/sentry/attackby(obj/item/O, mob/user) if(QDELETED(O) || QDELETED(user)) @@ -278,7 +240,7 @@ return if(istype(O, ammo)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI) || user.action_busy) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) || user.action_busy) return user.visible_message(SPAN_NOTICE("[user] begins swapping a new [O.name] into [src]."), @@ -346,7 +308,7 @@ actual_fire(A, burst, FALSE) - if(targets.len) + if(length(targets)) addtimer(CALLBACK(src, PROC_REF(get_target)), fire_delay) if(!engaged_timer) @@ -418,7 +380,7 @@ if(!targets.Find(new_target)) targets.Add(new_target) - if(!targets.len) + if(!length(targets)) return var/list/conscious_targets = list() @@ -433,7 +395,7 @@ targets.Remove(A) continue - if(M.get_target_lock(faction_group) || M.invisibility || HAS_TRAIT(M, TRAIT_ABILITY_BURROWED)) + if(M.get_target_lock(faction_group) || M.invisibility || HAS_TRAIT(M, TRAIT_ABILITY_BURROWED) || M.is_ventcrawling) if(M == target) target = null targets.Remove(M) @@ -472,8 +434,8 @@ targets.Remove(A) continue - var/list/turf/path = getline2(src, A, include_from_atom = FALSE) - if(!path.len || get_dist(src, A) > sentry_range) + var/list/turf/path = get_line(src, A, include_start_atom = FALSE) + if(!length(path) || get_dist(src, A) > sentry_range) if(A == target) target = null targets.Remove(A) @@ -525,9 +487,9 @@ else conscious_targets += M - if(conscious_targets.len) + if(length(conscious_targets)) target = pick(conscious_targets) - else if(unconscious_targets.len) + else if(length(unconscious_targets)) target = pick(unconscious_targets) if(!target) //No targets, don't bother firing @@ -536,7 +498,7 @@ fire(target) /obj/structure/machinery/defenses/sentry/premade - name = "UA-577 Gauss Turret" + name = "\improper UA-577 Gauss Turret" immobile = TRUE turned_on = TRUE icon_state = "premade" //for the map editor only @@ -548,7 +510,7 @@ /obj/structure/machinery/defenses/sentry/premade/Initialize() . = ..() if(selected_categories[SENTRY_CATEGORY_IFF]) - selected_categories[SENTRY_CATEGORY_IFF] = FACTION_USCM + selected_categories[SENTRY_CATEGORY_IFF] = FACTION_MARINE /obj/structure/machinery/defenses/sentry/premade/get_examine_text(mob/user) . = ..() @@ -567,14 +529,14 @@ return /obj/structure/machinery/defenses/sentry/premade/dumb - name = "Modified UA-577 Gauss Turret" + name = "modified UA-577 Gauss Turret" desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been disabled, and it will open fire on any targets within range." faction_group = null ammo = new /obj/item/ammo_magazine/sentry //the turret inside a static sentry deployment system /obj/structure/machinery/defenses/sentry/premade/deployable - name = "UA-633 Static Gauss Turret" + name = "\improper UA-633 Static Gauss Turret" desc = "A fully-automated defence turret with mid-range targeting capabilities. Armed with a modified M32-S Autocannon and an internal belt feed." density = TRUE faction_group = FACTION_LIST_MARINE @@ -593,12 +555,108 @@ /obj/structure/machinery/defenses/sentry/premade/deployable/colony/Initialize() . = ..() - choice_categories[SENTRY_CATEGORY_IFF] = list(FACTION_COLONY, FACTION_WEYLAND) - selected_categories[SENTRY_CATEGORY_IFF] = FACTION_COLONY + choice_categories[SENTRY_CATEGORY_IFF] = list(SENTRY_FACTION_COLONY, SENTRY_FACTION_WEYLAND) + selected_categories[SENTRY_CATEGORY_IFF] = SENTRY_FACTION_COLONY + +/obj/structure/machinery/defenses/sentry/premade/deployable/wy + name = "WY 5-GSE3 Static Turret" + desc = "An old static, semi-automated turret with AI targeting capabilities from Weyland-Yutani." + icon = 'icons/obj/structures/machinery/defenses/wy_static.dmi' + defense_type = "Static" + sentry_type = "wy_sentry" + health = 350 + health_max = 350 + faction_group = list(FACTION_MARINE, FACTION_COLONIST, FACTION_SURVIVOR, FACTION_WY) + fire_delay = 0.6 SECONDS + damage_mult = 2 + +/obj/structure/machinery/defenses/sentry/premade/deployable/wy/Initialize() + . = ..() + choice_categories[SENTRY_CATEGORY_IFF] = list(SENTRY_FACTION_COLONY, SENTRY_FACTION_WEYLAND) + selected_categories[SENTRY_CATEGORY_IFF] = SENTRY_FACTION_COLONY /obj/structure/machinery/defenses/sentry/premade/deployable/almayer - fire_delay = 4 + name = "\improper UA-635C Static Gauss Turret" + desc = "A fully-automated defence turret with mid-range targeting capabilities. Armed with a modified M32-S Autocannon and an internal belt feed and modified for UA warship use." + fire_delay = 0.4 SECONDS + omni_directional = TRUE + +/obj/structure/machinery/defenses/sentry/premade/deployable/almayer/mini + name = "\improper UA 512-S mini sentry" + desc = "A fully-automated defence turret with mid-range targeting capabilities. Armed with a modified M30 Autocannon and an internal belt feed and modified for UA warship use." + defense_type = "Mini" + fire_delay = 0.25 SECONDS + health = 150 + health_max = 150 + damage_mult = 0.6 + density = FALSE + layer = BELOW_MOB_LAYER + disassemble_time = 0.75 SECONDS + handheld_type = /obj/item/defenses/handheld/sentry/mini + composite_icon = FALSE + +/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone + name = "\improper UA-577 Spaceborne Gauss Turret" + fire_delay = 2 + sentry_range = 10 omni_directional = TRUE + /// How long the battery for this turret lasts. Will warn low at 70% and critical at 90% use. + var/battery_duration = 20 MINUTES + /// The current battery state + var/battery_state = TURRET_BATTERY_STATE_OK + +/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/Initialize() + . = ..() + + var/low_battery_time = ceil(battery_duration * 0.7) + var/critical_battery_time = ceil(battery_duration * 0.9) + addtimer(CALLBACK(src, PROC_REF(set_battery_state), TURRET_BATTERY_STATE_LOW), low_battery_time) + addtimer(CALLBACK(src, PROC_REF(set_battery_state), TURRET_BATTERY_STATE_CRITICAL), critical_battery_time) + addtimer(CALLBACK(src, PROC_REF(set_battery_state), TURRET_BATTERY_STATE_DEAD), battery_duration) + +/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/get_examine_text(mob/user) + . = ..() + switch(battery_state) + if(TURRET_BATTERY_STATE_OK) + . += SPAN_INFO("Its battery indictor is green, fully charged.") + if(TURRET_BATTERY_STATE_LOW) + . += SPAN_INFO("Its battery indictor is flashing yellow.") + if(TURRET_BATTERY_STATE_CRITICAL) + . += SPAN_INFO("Its battery indictor is flashing red.") + if(TURRET_BATTERY_STATE_DEAD) + . += SPAN_INFO("It appears to be offline.") + +/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/proc/set_battery_state(state) + battery_state = state + switch(state) + if(TURRET_BATTERY_STATE_LOW) + playsound(loc, 'sound/weapons/smg_empty_alarm.ogg', 15, 1) + visible_message(SPAN_WARNING("[name] beeps steadily as its battery is getting low.")) + if(TURRET_BATTERY_STATE_CRITICAL) + playsound(loc, 'sound/weapons/smg_empty_alarm.ogg', 20, 1) + visible_message(SPAN_WARNING("[name] beeps steadily as its battery gets critically low.")) + if(TURRET_BATTERY_STATE_DEAD) + playsound(loc, 'sound/machines/terminal_shutdown.ogg', 35, 1) + turned_on = FALSE + power_off_action() + update_icon() + +/obj/structure/machinery/defenses/sentry/premade/deployable/colony/landing_zone/set_range() + var/range = sentry_range - 1 + var/dbl_range = range * 2 + + if(omni_directional) + range_bounds = SQUARE(x, y, dbl_range) + return + switch(dir) + if(EAST) + range_bounds = SQUARE(x+range, y, dbl_range) + if(WEST) + range_bounds = SQUARE(x-range, y, dbl_range) + if(NORTH) + range_bounds = SQUARE(x, y+range, dbl_range) + if(SOUTH) + range_bounds = SQUARE(x, y-range, dbl_range) //the turret inside the shuttle sentry deployment system /obj/structure/machinery/defenses/sentry/premade/dropship @@ -618,7 +676,7 @@ . = ..() /obj/structure/machinery/defenses/sentry/shotgun - name = "UA 12-G Shotgun Sentry" + name = "\improper UA 12-G Shotgun Sentry" defense_type = "Shotgun" health = 250 health_max = 250 @@ -651,7 +709,7 @@ L.apply_effect(1, WEAKEN) /obj/structure/machinery/defenses/sentry/mini - name = "UA 512-M mini sentry" + name = "\improper UA 512-M mini sentry" defense_type = "Mini" fire_delay = 0.15 SECONDS health = 150 @@ -759,6 +817,61 @@ new /obj/item/stack/sheet/plasteel/medium_stack(loc) return ..() +/obj/structure/machinery/defenses/sentry/wy + name = "WY 202-GMA1 Smart Sentry" + desc = "A deployable, fully-automated turret with AI targeting capabilities used by the PMC." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + sentry_type = "wy_sentry" + fire_delay = 2 SECONDS + health = 350 + health_max = 350 + damage_mult = 3.5 + disassemble_time = 5 SECONDS + hack_time = 25 SECONDS + sentry_range = 6 + omni_directional = TRUE + handheld_type = /obj/item/defenses/handheld/sentry/wy + ammo = new /obj/item/ammo_magazine/sentry/wy + selected_categories = list( + SENTRY_CATEGORY_IFF = SENTRY_FACTION_WEYLAND, + ) + +/obj/structure/machinery/defenses/sentry/mini/wy + name = "WY 14-GRA2 Mini Sentry" + desc = "A deployable, semi-automated turret with AI targeting capabilities used by the PMC." + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + sentry_type = "wy_sentry" + fire_delay = 0.08 SECONDS + health = 200 + health_max = 200 + damage_mult = 0.3 + disassemble_time = 2 SECONDS + hack_time = 25 SECONDS + handheld_type = /obj/item/defenses/handheld/sentry/wy/mini + ammo = new /obj/item/ammo_magazine/sentry/wy/mini + selected_categories = list( + SENTRY_CATEGORY_IFF = SENTRY_FACTION_WEYLAND, + ) + +/obj/structure/machinery/defenses/sentry/dmr/wy + name = "WY 2-ADT-A3 Heavy Sentry" + desc = "A deployable, semi-automated turret with AI targeting capabilities used by the PMC." + defense_type = "Heavy" + icon = 'icons/obj/structures/machinery/defenses/wy_heavy.dmi' + sentry_type = "wy_sentry" + fire_delay = 4 SECONDS + health = 600 + health_max = 600 + damage_mult = 5 + disassemble_time = 10 SECONDS + hack_time = 25 SECONDS + sentry_range = 8 + handheld_type = /obj/item/defenses/handheld/sentry/wy + ammo = new /obj/item/ammo_magazine/sentry/wy + selected_categories = list( + SENTRY_CATEGORY_IFF = SENTRY_FACTION_WEYLAND, + ) + /obj/structure/machinery/defenses/sentry/upp name = "\improper UPPA 32-H sentry gun" desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an AK-500 Autocannon and a 350-round drum magazine." @@ -766,7 +879,7 @@ icon_on = "upp_defense_base" icon_off = "upp_defense_base_off" choice_categories = list( - SENTRY_CATEGORY_IFF = list(FACTION_UPP, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_UPP, SENTRY_FACTION_HUMAN), ) selected_categories = list( @@ -779,5 +892,16 @@ firing_sound = 'sound/weapons/gun_type71.ogg' ammo = new /obj/item/ammo_magazine/sentry/upp +/obj/structure/machinery/defenses/sentry/upp/light + name = "UPP SDS-R8 Light Sentry" + defense_type = "Light" + fire_delay = 0.3 SECONDS + health = 200 + health_max = 200 + disassemble_time = 2 SECONDS + sentry_range = 3 + omni_directional = TRUE + handheld_type = /obj/item/defenses/handheld/sentry/upp/light + #undef SENTRY_FIREANGLE #undef SENTRY_RANGE diff --git a/code/modules/defenses/sentry_computer.dm b/code/modules/defenses/sentry_computer.dm index 7cb4f7bb84..2b7255fdb8 100644 --- a/code/modules/defenses/sentry_computer.dm +++ b/code/modules/defenses/sentry_computer.dm @@ -308,7 +308,7 @@ . = ..() if(!on) return UI_CLOSE - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) return UI_UPDATE @@ -383,7 +383,7 @@ . = ..() if(.) return - if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(usr, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(usr, SPAN_WARNING("You are not authorised to configure the sentry.")) return if(params["index"]) @@ -401,14 +401,8 @@ playsound(src, get_sfx("terminal_button"), 25, FALSE) var/obj/structure/machinery/defenses/sentry/defense = sentry if (defense.has_camera) - defense.set_watched_turfs() - var/list/turf/visible_turfs = defense.watching_turfs - var/list/bbox = get_bbox_of_atoms(visible_turfs) - var/center_x = (bbox[3] + bbox[1]) * 0.5 - var/center_y = (bbox[4] + bbox[2]) * 0.5 - var/size_x = bbox[3] - bbox[1] + 1 - var/size_y = bbox[4] - bbox[2] + 1 - SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, center_x, center_y, defense.loc.z, size_x, size_y) + defense.set_range() + SEND_SIGNAL(src, COMSIG_CAMERA_SET_AREA, defense.range_bounds, defense.loc.z) return TRUE if("ping") diff --git a/code/modules/defenses/sentry_flamer.dm b/code/modules/defenses/sentry_flamer.dm index fd191da1f7..1b7d4d3c28 100644 --- a/code/modules/defenses/sentry_flamer.dm +++ b/code/modules/defenses/sentry_flamer.dm @@ -1,10 +1,10 @@ /obj/structure/machinery/defenses/sentry/flamer - name = "\improper UA 42-F sentry flamer" + name = "\improper UA 42-F Sentry Flamer" icon = 'icons/obj/structures/machinery/defenses/flamer.dmi' desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with a special flamer and a 100 liters fuel tank." fire_delay = 30 ammo = new /obj/item/ammo_magazine/sentry_flamer - sentry_type = "flamer" + sentry_type = "uac_flamer" handheld_type = /obj/item/defenses/handheld/sentry/flamer health = 200 health_max = 200 @@ -13,12 +13,12 @@ choice_categories = list( // SENTRY_CATEGORY_ROF = list(ROF_SINGLE, ROF_FULL_AUTO), - SENTRY_CATEGORY_IFF = list(FACTION_USCM, FACTION_WEYLAND, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_MARINE, SENTRY_FACTION_WEYLAND, SENTRY_FACTION_HUMAN), ) selected_categories = list( SENTRY_CATEGORY_ROF = ROF_SINGLE, - SENTRY_CATEGORY_IFF = FACTION_USCM, + SENTRY_CATEGORY_IFF = FACTION_MARINE, ) /obj/structure/machinery/defenses/sentry/flamer/handle_rof(level) @@ -76,3 +76,67 @@ cell_explosion(loc, 10, 10, null, create_cause_data("sentry explosion", owner_mob)) if(!QDELETED(src)) qdel(src) + +/obj/structure/machinery/defenses/sentry/flamer/wy + name = "WY 406-FE2 Smart Sentry" + icon = 'icons/obj/structures/machinery/defenses/wy_defenses.dmi' + desc = "A deployable, fully-automated turret with AI targeting capabilities used by the PMC." + health = 300 + health_max = 300 + fire_delay = 2 SECONDS + disassemble_time = 5 SECONDS + hack_time = 25 SECONDS + ammo = new /obj/item/ammo_magazine/sentry_flamer/wy + sentry_type = "wy_flamer" + sentry_range = 6 + omni_directional = TRUE + handheld_type = /obj/item/defenses/handheld/sentry/flamer/wy + selected_categories = list( + SENTRY_CATEGORY_ROF = ROF_SINGLE, + SENTRY_CATEGORY_IFF = SENTRY_FACTION_WEYLAND, + ) + +/obj/structure/machinery/defenses/sentry/flamer/wy/destroyed_action() + visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("The [name] starts spitting out sparks and smoke!")]") + playsound(loc, 'sound/mecha/critdestrsyndi.ogg', 25, 1) + for(var/i = 1 to 6) + setDir(pick(NORTH, EAST, SOUTH, WEST)) + sleep(2) + + if(ammo.current_rounds != 0) + var/datum/reagent/napalm/sticky/sticky_napalm = new() + new /obj/flamer_fire(loc, create_cause_data("sentry explosion", owner_mob), sticky_napalm, 2) + cell_explosion(loc, 10, 10, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data("sentry explosion", owner_mob)) + if(!QDELETED(src)) + qdel(src) + + +/obj/structure/machinery/defenses/sentry/flamer/upp + name = "UPP SDS-R5 Sentry Flamer" + icon = 'icons/obj/structures/machinery/defenses/upp_defenses.dmi' + desc = "A deployable, fully-automated turret with AI targeting capabilities used by the UPP." + health = 300 + health_max = 300 + fire_delay = 1 SECONDS + disassemble_time = 5 SECONDS + ammo = new /obj/item/ammo_magazine/sentry_flamer/upp + sentry_type = "upp_flamer" + handheld_type = /obj/item/defenses/handheld/sentry/flamer/upp + selected_categories = list( + SENTRY_CATEGORY_ROF = ROF_SINGLE, + SENTRY_CATEGORY_IFF = FACTION_UPP, + ) + +/obj/structure/machinery/defenses/sentry/flamer/upp/destroyed_action() + visible_message("[icon2html(src, viewers(src))] [SPAN_WARNING("The [name] starts spitting out sparks and smoke!")]") + playsound(loc, 'sound/mecha/critdestrsyndi.ogg', 25, 1) + for(var/i = 1 to 6) + setDir(pick(NORTH, EAST, SOUTH, WEST)) + sleep(2) + + if(ammo.current_rounds != 0) + var/datum/reagent/napalm/gel/gel_napalm = new() + new /obj/flamer_fire(loc, create_cause_data("sentry explosion", owner_mob), gel_napalm, 2) + cell_explosion(loc, 10, 10, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data("sentry explosion", owner_mob)) + if(!QDELETED(src)) + qdel(src) diff --git a/code/modules/defenses/tesla_coil.dm b/code/modules/defenses/tesla_coil.dm index 8dc8e6498b..bb150acc1e 100644 --- a/code/modules/defenses/tesla_coil.dm +++ b/code/modules/defenses/tesla_coil.dm @@ -11,6 +11,7 @@ var/last_fired = 0 var/tesla_range = TESLA_COIL_RANGE var/fire_delay = TESLA_COIL_FIREDELAY + var/attack_defenses = TRUE handheld_type = /obj/item/defenses/handheld/tesla_coil disassemble_time = 10 health = 150 @@ -20,11 +21,11 @@ has_camera = FALSE choice_categories = list( - SENTRY_CATEGORY_IFF = list(FACTION_USCM, FACTION_WEYLAND, FACTION_HUMAN), + SENTRY_CATEGORY_IFF = list(FACTION_MARINE, SENTRY_FACTION_WEYLAND, SENTRY_FACTION_HUMAN), ) selected_categories = list( - SENTRY_CATEGORY_IFF = FACTION_USCM, + SENTRY_CATEGORY_IFF = FACTION_MARINE, ) @@ -70,8 +71,8 @@ /obj/structure/machinery/defenses/tesla_coil/proc/get_target() targets = list() - for(var/mob/living/M in oview(tesla_range, src)) - if(M.stat == DEAD || isrobot(M)) + FOR_DOVIEW(var/mob/living/M, tesla_range, src, HIDE_INVISIBLE_OBSERVER) + if(M.stat == DEAD) continue if(HAS_TRAIT(M, TRAIT_CHARGING)) to_chat(M, SPAN_WARNING("You ignore some weird noises as you charge.")) @@ -81,10 +82,15 @@ continue targets += M + FOR_DOVIEW_END - for(var/obj/structure/machinery/defenses/D in oview(tesla_range, src)) + if(!attack_defenses) + return + + FOR_DOVIEW(var/obj/structure/machinery/defenses/D, tesla_range, src, HIDE_INVISIBLE_OBSERVER) if(D.turned_on) targets += D + FOR_DOVIEW_END /obj/structure/machinery/defenses/tesla_coil/proc/fire(atoms) if(!(world.time - last_fired >= fire_delay) || !turned_on) @@ -125,7 +131,7 @@ if(!istype(M)) return FALSE - var/list/turf/path = getline2(src, M, include_from_atom = FALSE) + var/list/turf/path = get_line(src, M, include_start_atom = FALSE) var/blocked = FALSE for(var/turf/T in path) @@ -157,6 +163,17 @@ . = ..() +// For mapping +/obj/structure/machinery/defenses/tesla_coil/premade + turned_on = TRUE + static = TRUE + +/obj/structure/machinery/defenses/tesla_coil/premade/attackby(obj/item/O, mob/user) + return + +/obj/structure/machinery/defenses/tesla_coil/premade/smart + attack_defenses = FALSE + #define TESLA_COIL_STUN_FIRE_DELAY 3 SECONDS #define TESLA_COIL_STUN_EFFECT 1 /obj/structure/machinery/defenses/tesla_coil/stun diff --git a/code/modules/desert_dam/filtration/consoles.dm b/code/modules/desert_dam/filtration/consoles.dm index 8c2814fafd..277b2485ed 100644 --- a/code/modules/desert_dam/filtration/consoles.dm +++ b/code/modules/desert_dam/filtration/consoles.dm @@ -1,4 +1,4 @@ -var/global/river_activated = FALSE +GLOBAL_VAR_INIT(river_activated, FALSE) /obj/structure/machinery/filtration/console name = "console" @@ -62,7 +62,7 @@ var/global/river_activated = FALSE /obj/structure/machinery/filtration/console/ui_data(mob/user) var/list/data = list() - data["filt_on"] = river_activated + data["filt_on"] = GLOB.river_activated return data @@ -73,7 +73,7 @@ var/global/river_activated = FALSE switch(action) if("activate_filt") - river_activated = TRUE + GLOB.river_activated = TRUE /obj/structure/machinery/filtration/console/attack_hand(mob/user) . = ..() diff --git a/code/modules/desert_dam/filtration/filtration.dm b/code/modules/desert_dam/filtration/filtration.dm index a0fd1b2933..c289ae878b 100644 --- a/code/modules/desert_dam/filtration/filtration.dm +++ b/code/modules/desert_dam/filtration/filtration.dm @@ -47,18 +47,6 @@ Global river status var, maybe Each var depends on others -var/global/riverend_west = 0 -var/global/riverend_north = 0 -var/global/river_central = 0 -var/global/cannal = 0 -var/global/dam_underpass = 0 -var/global/south_river = 0 -var/global/south_filtration = 0 -var/global/east_river = 0 -var/global/east_filtration = 0 -var/global/south_riverstart = 0 -var/global/east_riverstart = 0 - /proc/filtration_check() if(east_filtration) @@ -219,7 +207,7 @@ var/global/east_riverstart = 0 if(dispersing || !toxic) return - for(var/direction in alldirs) + for(var/direction in GLOB.alldirs) if(direction == from_dir) continue //doesn't check backwards var/effective_spread_delay @@ -303,7 +291,7 @@ var/global/east_riverstart = 0 //var/area/A = get_area(src) //A.ambience_exterior = 'sound/ambience/ambiatm1.ogg' - for(var/obj/structure/machinery/dispersal_initiator/M in machines) + for(var/obj/structure/machinery/dispersal_initiator/M in GLOB.machines) if (M.id == src.id) M.initiate() diff --git a/code/modules/desert_dam/filtration/structures.dm b/code/modules/desert_dam/filtration/structures.dm index b8448e3037..558f047dd3 100644 --- a/code/modules/desert_dam/filtration/structures.dm +++ b/code/modules/desert_dam/filtration/structures.dm @@ -3,6 +3,27 @@ icon = 'icons/turf/floors/filtration.dmi' icon_state = "filtrationside" +/turf/open/floor/filtrationside/southwest + dir = SOUTHWEST + +/turf/open/floor/filtrationside/north + dir = NORTH + +/turf/open/floor/filtrationside/east + dir = EAST + +/turf/open/floor/filtrationside/northeast + dir = NORTHEAST + +/turf/open/floor/filtrationside/southeast + dir = SOUTHEAST + +/turf/open/floor/filtrationside/west + dir = WEST + +/turf/open/floor/filtrationside/northwest + dir = NORTHWEST + /turf/open/floor/plating/catwalk/rusted icon = 'icons/turf/floors/filtration.dmi' icon_state = "grate" @@ -14,6 +35,78 @@ name = "coagulation" icon = 'icons/turf/floors/coagulation.dmi' +/turf/open/floor/coagulation/icon0_0 + icon_state = "0,0" + +/turf/open/floor/coagulation/icon0_4 + icon_state = "0,4" + +/turf/open/floor/coagulation/icon0_5 + icon_state = "0,5" + +/turf/open/floor/coagulation/icon0_8 + icon_state = "0,8" + +/turf/open/floor/coagulation/icon1_1 + icon_state = "1,1" + +/turf/open/floor/coagulation/icon1_7 + icon_state = "1,7" + +/turf/open/floor/coagulation/icon2_0 + icon_state = "2,0" + +/turf/open/floor/coagulation/icon4_8 + icon_state = "4,8" + +/turf/open/floor/coagulation/icon5_8 + icon_state = "5,8" + +/turf/open/floor/coagulation/icon6_8 + icon_state = "6,8" + +/turf/open/floor/coagulation/icon6_8_2 + icon_state = "6,8-2" + +/turf/open/floor/coagulation/icon7_0 + icon_state = "7,0" + +/turf/open/floor/coagulation/icon7_1 + icon_state = "7,1" + +/turf/open/floor/coagulation/icon7_7 + icon_state = "7,7" + +/turf/open/floor/coagulation/icon7_7_2 + icon_state = "7,7-2" + +/turf/open/floor/coagulation/icon7_8 + icon_state = "7,8" + +/turf/open/floor/coagulation/icon7_8_2 + icon_state = "7,8-2" + +/turf/open/floor/coagulation/icon8_0 + icon_state = "8,0" + +/turf/open/floor/coagulation/icon8_3 + icon_state = "8,3" + +/turf/open/floor/coagulation/icon8_4 + icon_state = "8,4" + +/turf/open/floor/coagulation/icon8_6 + icon_state = "8,6" + +/turf/open/floor/coagulation/icon8_7 + icon_state = "8,7" + +/turf/open/floor/coagulation/icon8_7_2 + icon_state = "8,7-2" + +/turf/open/floor/coagulation/icon8_8 + icon_state = "8,8" + /obj/structure/filtration/coagulation name = "coagulation" icon = 'icons/turf/floors/coagulation.dmi' diff --git a/code/modules/desert_dam/motion_sensor/sensortower.dm b/code/modules/desert_dam/motion_sensor/sensortower.dm index 50aeede45f..4185916745 100644 --- a/code/modules/desert_dam/motion_sensor/sensortower.dm +++ b/code/modules/desert_dam/motion_sensor/sensortower.dm @@ -65,7 +65,7 @@ /obj/structure/machinery/sensortower/proc/add_xenos_to_minimap() for(var/mob/living/carbon/xenomorph/current_xeno as anything in GLOB.living_xeno_list) if(WEAKREF(current_xeno) in minimap_added) - return + continue SSminimaps.remove_marker(current_xeno) current_xeno.add_minimap_marker(MINIMAP_FLAG_USCM|get_minimap_flag_for_faction(current_xeno.hivenumber)) @@ -101,7 +101,7 @@ add_fingerprint(user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no clue how this thing works...")) return FALSE @@ -135,7 +135,7 @@ to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return if(buildstate == SENSORTOWER_BUILDSTATE_BLOWTORCH && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) return FALSE var/obj/item/tool/weldingtool/WT = O @@ -159,7 +159,7 @@ else if(HAS_TRAIT(O, TRAIT_TOOL_WIRECUTTERS)) if(buildstate == SENSORTOWER_BUILDSTATE_WIRECUTTERS && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) return FALSE playsound(loc, 'sound/items/Wirecutter.ogg', 25, 1) @@ -176,7 +176,7 @@ return TRUE else if(HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) if(buildstate == SENSORTOWER_BUILDSTATE_WRENCH && !is_on) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no clue how to repair this thing.")) return FALSE playsound(loc, 'sound/items/Ratchet.ogg', 25, 1) diff --git a/code/modules/destilery/main.dm b/code/modules/destilery/main.dm deleted file mode 100644 index a7274b3170..0000000000 --- a/code/modules/destilery/main.dm +++ /dev/null @@ -1,298 +0,0 @@ -//This dm file includes some food processing machines: -// - I. Mill -// - II. Fermenter -// - III. Still -// - IV. Squeezer -// - V. Centrifuge - - - -// I. The mill is intended to be loaded with produce and returns ground up items. For example: Wheat should become flour and grapes should become raisins. - -/obj/structure/machinery/mill - var/list/obj/item/reagent_container/food/input = list() - var/list/obj/item/reagent_container/food/output = list() - var/obj/item/reagent_container/food/milled_item - var/busy = FALSE - var/progress = 0 - var/error = 0 - name = "\improper Mill" - desc = "It is a machine that grinds produce." - icon_state = "autolathe" - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 10 - active_power_usage = 1000 - -/obj/structure/machinery/mill/Destroy() - QDEL_NULL(milled_item) - return ..() - -/obj/structure/machinery/mill/process() - if(error) - return - - if(!busy) - update_use_power(USE_POWER_IDLE) - if(input.len) - milled_item = input[1] - input -= milled_item - progress = 0 - busy = TRUE - update_use_power(USE_POWER_ACTIVE) - return - - progress++ - if(progress < 10) //Edit this value to make milling faster or slower - return //Not done yet. - - switch(milled_item.type) - if(/obj/item/reagent_container/food/snacks/grown/wheat) //Wheat becomes flour - var/obj/item/reagent_container/food/snacks/flour/F = new(src) - output += F - if(/obj/item/reagent_container/food/snacks/flour) //Flour is still flour - var/obj/item/reagent_container/food/snacks/flour/F = new(src) - output += F - else - error = 1 - - QDEL_NULL(milled_item) - busy = FALSE - -/obj/structure/machinery/mill/attackby(obj/item/W as obj, mob/user as mob) - if(istype(W,/obj/item/reagent_container/food)) - if(user.drop_inv_item_to_loc(W, src)) - input += W - else - ..() - -/obj/structure/machinery/mill/attack_hand(mob/user as mob) - for(var/obj/item/reagent_container/food/F in output) - F.forceMove(loc) - output -= F - - - - - - -// II. The fermenter is intended to be loaded with food items and returns medium-strength alcohol items, sucha s wine and beer. - -/obj/structure/machinery/fermenter - var/list/obj/item/reagent_container/food/input = list() - var/list/obj/item/reagent_container/food/output = list() - var/obj/item/reagent_container/food/fermenting_item - var/water_level = 0 - var/busy = FALSE - var/progress = 0 - var/error = 0 - name = "\improper Fermenter" - desc = "It is a machine that ferments produce into alcoholic drinks." - icon_state = "autolathe" - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 10 - active_power_usage = 500 - -/obj/structure/machinery/fermenter/Destroy() - QDEL_NULL(fermenting_item) - return ..() - -/obj/structure/machinery/fermenter/process() - if(error) - return - - if(!busy) - update_use_power(USE_POWER_IDLE) - if(input.len) - fermenting_item = input[1] - input -= fermenting_item - progress = 0 - busy = TRUE - update_use_power(USE_POWER_ACTIVE) - return - - if(!water_level) - return - - water_level-- - - progress++ - if(progress < 10) //Edit this value to make milling faster or slower - return //Not done yet. - - switch(fermenting_item.type) - if(/obj/item/reagent_container/food/snacks/flour) //Flour is still flour - var/obj/item/reagent_container/food/drinks/cans/beer/B = new(src) - output += B - else - error = 1 - - QDEL_NULL(fermenting_item) - busy = FALSE - -/obj/structure/machinery/fermenter/attackby(obj/item/W as obj, mob/user as mob) - if(istype(W,/obj/item/reagent_container/food)) - if(user.drop_inv_item_to_loc(W, src)) - input += W - else - ..() - -/obj/structure/machinery/fermenter/attack_hand(mob/user as mob) - for(var/obj/item/reagent_container/food/F in output) - F.forceMove(loc) - output -= F - - - -// III. The still is a machine that is loaded with food items and returns hard liquor, such as vodka. - -/obj/structure/machinery/still - var/list/obj/item/reagent_container/food/input = list() - var/list/obj/item/reagent_container/food/output = list() - var/obj/item/reagent_container/food/destilling_item - var/busy = FALSE - var/progress = 0 - var/error = 0 - name = "\improper Still" - desc = "It is a machine that produces hard liquor from alcoholic drinks." - icon_state = "autolathe" - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 10 - active_power_usage = 10000 - -/obj/structure/machinery/still/Destroy() - QDEL_NULL(destilling_item) - return ..() - -/obj/structure/machinery/still/process() - if(error) - return - - if(!busy) - update_use_power(USE_POWER_IDLE) - if(input.len) - destilling_item = input[1] - input -= destilling_item - progress = 0 - busy = TRUE - update_use_power(USE_POWER_ACTIVE) - return - - progress++ - if(progress < 10) //Edit this value to make distilling faster or slower - return //Not done yet. - - switch(destilling_item.type) - if(/obj/item/reagent_container/food/drinks/cans/beer) //Flour is still flour - var/obj/item/reagent_container/food/drinks/bottle/vodka/V = new(src) - output += V - else - error = 1 - - QDEL_NULL(destilling_item) - busy = FALSE - -/obj/structure/machinery/still/attackby(obj/item/W as obj, mob/user as mob) - if(istype(W,/obj/item/reagent_container/food)) - if(user.drop_inv_item_to_loc(W, loc)) - input += W - else - ..() - -/obj/structure/machinery/still/attack_hand(mob/user as mob) - for(var/obj/item/reagent_container/food/F in output) - F.forceMove(loc) - output -= F - - - - -// IV. The squeezer is intended to destroy inserted food items, but return some of the reagents they contain. - -/obj/structure/machinery/squeezer - var/list/obj/item/reagent_container/food/input = list() - var/obj/item/reagent_container/food/squeezed_item - var/water_level = 0 - var/busy = FALSE - var/progress = 0 - var/error = 0 - name = "\improper Squeezer" - desc = "It is a machine that squeezes extracts from produce." - icon_state = "autolathe" - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 10 - active_power_usage = 500 - - - - - -// V. The centrifuge spins inserted food items. It is intended to squeeze out the reagents that are common food catalysts (enzymes currently) - -/obj/structure/machinery/centrifuge - var/list/obj/item/reagent_container/food/input = list() - var/list/obj/item/reagent_container/food/output = list() - var/obj/item/reagent_container/food/spinning_item - var/busy = FALSE - var/progress = 0 - var/error = 0 - var/enzymes = 0 - var/water = 0 - name = "\improper Centrifuge" - desc = "It is a machine that spins produce." - icon_state = "autolathe" - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 10 - active_power_usage = 10000 - -/obj/structure/machinery/centrifuge/process() - if(error) - return - - if(!busy) - update_use_power(USE_POWER_IDLE) - if(input.len) - spinning_item = input[1] - input -= spinning_item - progress = 0 - busy = TRUE - update_use_power(USE_POWER_ACTIVE) - return - - progress++ - if(progress < 10) //Edit this value to make milling faster or slower - return //Not done yet. - - var/transfer_enzymes = spinning_item.reagents.get_reagent_amount("enzyme") - - if(transfer_enzymes) - enzymes += transfer_enzymes - spinning_item.reagents.remove_reagent("enzyme",transfer_enzymes) - - output += spinning_item - busy = FALSE - -/obj/structure/machinery/centrifuge/attackby(obj/item/W as obj, mob/user as mob) - if(istype(W,/obj/item/reagent_container/food)) - if(user.drop_inv_item_to_loc(W, src)) - input += W - else - ..() - -/obj/structure/machinery/centrifuge/attack_hand(mob/user as mob) - for(var/obj/item/reagent_container/food/F in output) - F.forceMove(loc) - output -= F - while(enzymes >= 50) - enzymes -= 50 - new/obj/item/reagent_container/food/condiment/enzyme(src.loc) - diff --git a/code/modules/droppod/droppod_ui.dm b/code/modules/droppod/droppod_ui.dm index 6493e9ec6c..118422a791 100644 --- a/code/modules/droppod/droppod_ui.dm +++ b/code/modules/droppod/droppod_ui.dm @@ -90,7 +90,7 @@ GLOBAL_LIST_INIT(droppod_target_mode, list( var/list/acceptableTurfs = list() for (var/t in ordered_area) //Go through the orderedArea list var/turf/unchecked_turf = t - if (typecache_filter_list_reverse(unchecked_turf.contents, ignored_atoms).len != 0) //if there is something in this turf that isn't in the blacklist, we consider this turf "acceptable" and add it to the acceptableTurfs list + if (length(typecache_filter_list_reverse(unchecked_turf.contents, ignored_atoms)) != 0) //if there is something in this turf that isn't in the blacklist, we consider this turf "acceptable" and add it to the acceptableTurfs list acceptableTurfs.Add(unchecked_turf) //Because orderedArea was an ordered linear list, acceptableTurfs will be as well. launch_list = list() //Anything in launch_list will go into the supplypod when it is launched diff --git a/code/modules/dropships/attach_points/attach_point.dm b/code/modules/dropships/attach_points/attach_point.dm index cee26f0b13..6fef4d58e7 100644 --- a/code/modules/dropships/attach_points/attach_point.dm +++ b/code/modules/dropships/attach_points/attach_point.dm @@ -7,6 +7,7 @@ unacidable = TRUE anchored = TRUE layer = ABOVE_TURF_LAYER + plane = GAME_PLANE /// The currently installed equipment, if any var/obj/structure/dropship_equipment/installed_equipment /// What kind of equipment this base accepts @@ -26,44 +27,45 @@ /obj/effect/attach_point/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/powerloader_clamp)) - var/obj/item/powerloader_clamp/PC = I - install_equipment(PC, user) + var/obj/item/powerloader_clamp/clamp = I + install_equipment(clamp, user) return TRUE return ..() /// Called when a real user with a powerloader attempts to install an equipment on the attach point -/obj/effect/attach_point/proc/install_equipment(obj/item/powerloader_clamp/PC, mob/living/user) - if(!istype(PC.loaded, /obj/structure/dropship_equipment)) +/obj/effect/attach_point/proc/install_equipment(obj/item/powerloader_clamp/clamp, mob/living/user) + if(!istype(clamp.loaded, /obj/structure/dropship_equipment)) + return + var/obj/structure/dropship_equipment/ds_equipment = clamp.loaded + if(!(base_category in ds_equipment.equip_categories)) + to_chat(user, SPAN_WARNING("[ds_equipment] doesn't fit on [src].")) return - var/obj/structure/dropship_equipment/SE = PC.loaded - if(!(base_category in SE.equip_categories)) - to_chat(user, SPAN_WARNING("[SE] doesn't fit on [src].")) - return TRUE if(installed_equipment) - return TRUE - playsound(loc, 'sound/machines/hydraulics_1.ogg', 40, 1) + return + playsound(loc, 'sound/machines/hydraulics_1.ogg', 40, TRUE) var/point_loc = loc if(!user || !do_after(user, (7 SECONDS) * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - return TRUE + return if(loc != point_loc)//dropship flew away - return TRUE - if(installed_equipment || PC.loaded != SE) - return TRUE - to_chat(user, SPAN_NOTICE("You install [SE] on [src].")) - SE.forceMove(loc) - PC.loaded = null - playsound(loc, 'sound/machines/hydraulics_2.ogg', 40, 1) - PC.update_icon() - installed_equipment = SE - SE.ship_base = src + return + if(installed_equipment || clamp.loaded != ds_equipment) + return + to_chat(user, SPAN_NOTICE("You install [ds_equipment] on [src].")) + ds_equipment.forceMove(loc) + clamp.loaded = null + playsound(loc, 'sound/machines/hydraulics_2.ogg', 40, TRUE) + clamp.update_icon() + installed_equipment = ds_equipment + ds_equipment.ship_base = src + ds_equipment.plane = plane for(var/obj/docking_port/mobile/marine_dropship/shuttle in SSshuttle.mobile) if(shuttle.id == ship_tag) - SE.linked_shuttle = shuttle - SEND_SIGNAL(shuttle, COMSIG_DROPSHIP_ADD_EQUIPMENT, SE) + ds_equipment.linked_shuttle = shuttle + SEND_SIGNAL(shuttle, COMSIG_DROPSHIP_ADD_EQUIPMENT, ds_equipment) break - SE.update_equipment() + ds_equipment.update_equipment() /// Weapon specific attachment point /obj/effect/attach_point/weapon diff --git a/code/modules/dropships/attach_points/templates.dm b/code/modules/dropships/attach_points/templates.dm index d2b1f55d75..0426164cdc 100644 --- a/code/modules/dropships/attach_points/templates.dm +++ b/code/modules/dropships/attach_points/templates.dm @@ -82,6 +82,47 @@ transverse = 3 long = 0 +/obj/effect/attach_point/weapon/dropship3 + ship_tag = DROPSHIP_SAIPAN + +/obj/effect/attach_point/weapon/dropship3/left_wing + name = "port wing weapon attach point" + icon_state = "equip_base_l_wing" + attach_id = 1 + dir = WEST + firing_arc_min = -3 + firing_arc_max = 3 + transverse = -3 + long = 0 + +/obj/effect/attach_point/weapon/dropship3/left_fore + name = "port fore weapon attach point" + attach_id = 2 + dir = NORTH + firing_arc_min = -6 + firing_arc_max = 0 + transverse = 0 + long = 0 + +/obj/effect/attach_point/weapon/dropship3/right_fore + name = "starboard fore weapon attach point" + attach_id = 3 + dir = NORTH + firing_arc_min = 0 + firing_arc_max = 6 + transverse = 0 + long = 0 + +/obj/effect/attach_point/weapon/dropship3/right_wing + name = "starboard wing weapon attach point" + icon_state = "equip_base_r_wing"; + attach_id = 4 + dir = EAST + firing_arc_min = -3 + firing_arc_max = 3 + transverse = 3 + long = 0 + // MIDWAY /obj/effect/attach_point/weapon/midway ship_tag = DROPSHIP_MIDWAY @@ -301,9 +342,21 @@ /obj/effect/attach_point/crew_weapon/dropship1 ship_tag = DROPSHIP_ALAMO +/obj/effect/attach_point/crew_weapon/dropship1/floor + plane = FLOOR_PLANE + /obj/effect/attach_point/crew_weapon/dropship2 ship_tag = DROPSHIP_NORMANDY +/obj/effect/attach_point/crew_weapon/dropship2/floor + plane = FLOOR_PLANE + +/obj/effect/attach_point/crew_weapon/dropship3 + ship_tag = DROPSHIP_SAIPAN + +/obj/effect/attach_point/crew_weapon/dropship3/floor + plane = FLOOR_PLANE + /obj/effect/attach_point/crew_weapon/midway ship_tag = DROPSHIP_MIDWAY @@ -331,6 +384,9 @@ /obj/effect/attach_point/electronics/dropship2 ship_tag = DROPSHIP_NORMANDY +/obj/effect/attach_point/electronics/dropship3 + ship_tag = DROPSHIP_SAIPAN + /obj/effect/attach_point/electronics/midway ship_tag = DROPSHIP_MIDWAY @@ -357,6 +413,10 @@ /obj/effect/attach_point/fuel/dropship2 ship_tag = DROPSHIP_NORMANDY +/obj/effect/attach_point/fuel/dropship3 + ship_tag = DROPSHIP_SAIPAN + + /obj/effect/attach_point/fuel/midway ship_tag = DROPSHIP_MIDWAY @@ -381,6 +441,9 @@ /obj/effect/attach_point/computer/dropship2 ship_tag = DROPSHIP_NORMANDY +/obj/effect/attach_point/computer/dropship3 + ship_tag = DROPSHIP_SAIPAN + /obj/effect/attach_point/computer/midway ship_tag = DROPSHIP_MIDWAY diff --git a/code/modules/dropships/cas/fire_mission_record.dm b/code/modules/dropships/cas/fire_mission_record.dm index 2887ec92c2..3b3b48fe6b 100644 --- a/code/modules/dropships/cas/fire_mission_record.dm +++ b/code/modules/dropships/cas/fire_mission_record.dm @@ -31,7 +31,7 @@ var/used = 0 var/max_ammo = 0 if(weapon.ammo_equipped) - for(var/step = 1; step<=offsets.len; step++) + for(var/step = 1; step<=length(offsets); step++) if(offsets[step]!=null && offsets[step]!="-") used += weapon.ammo_equipped.ammo_used_per_firing max_ammo = weapon.ammo_equipped.max_ammo_count diff --git a/code/modules/economy/ATM.dm b/code/modules/economy/ATM.dm index b166f9a496..e7ac5d767d 100644 --- a/code/modules/economy/ATM.dm +++ b/code/modules/economy/ATM.dm @@ -37,7 +37,7 @@ log transactions /obj/structure/machinery/atm/New() ..() - machine_id = "[station_name] RT #[num_financial_terminals++]" + machine_id = "[MAIN_SHIP_NAME] RT #[GLOB.num_financial_terminals++]" spark_system = new /datum/effect_system/spark_spread spark_system.set_up(5, 0, src) spark_system.attach(src) @@ -63,7 +63,7 @@ log transactions var/obj/item/spacecash/spacecash = I //consume the money if(spacecash.counterfeit) - authenticated_account.money += round(spacecash.worth * 0.25) + authenticated_account.money += floor(spacecash.worth * 0.25) visible_message(SPAN_DANGER("[src] starts sparking and making error noises as you load [I] into it!")) spark_system.start() else @@ -79,7 +79,7 @@ log transactions T.purpose = "Credit deposit" T.amount = I:worth T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() authenticated_account.transaction_log.Add(T) @@ -212,7 +212,7 @@ log transactions T.target_name = "Account #[target_account_number]" T.purpose = transfer_purpose T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() T.amount = "([transfer_amount])" authenticated_account.transaction_log.Add(T) @@ -254,7 +254,7 @@ log transactions T.target_name = failed_account.owner_name T.purpose = "Unauthorised login attempt" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() failed_account.transaction_log.Add(T) else @@ -275,7 +275,7 @@ log transactions T.target_name = authenticated_account.owner_name T.purpose = "Remote terminal access" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() authenticated_account.transaction_log.Add(T) @@ -284,7 +284,7 @@ log transactions previous_account_number = tried_account_num if("e_withdrawal") if(withdrawal_timer > world.time) - alert("Please wait [round((withdrawal_timer-world.time)/10)] seconds before attempting to make another withdrawal.") + alert("Please wait [floor((withdrawal_timer-world.time)/10)] seconds before attempting to make another withdrawal.") return var/amount = max(text2num(href_list["funds_amount"]),0) amount = round(amount, 0.01) @@ -307,7 +307,7 @@ log transactions T.purpose = "Credit withdrawal" T.amount = "([amount])" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() authenticated_account.transaction_log.Add(T) withdrawal_timer = world.time + 20 @@ -316,7 +316,7 @@ log transactions withdrawal_timer = world.time + 20 if("withdrawal") if(withdrawal_timer > world.time) - alert("Please wait [round((withdrawal_timer-world.time)/10)] seconds before attempting to make another withdrawal.") + alert("Please wait [floor((withdrawal_timer-world.time)/10)] seconds before attempting to make another withdrawal.") return var/amount = max(text2num(href_list["funds_amount"]),0) amount = round(amount, 0.01) @@ -338,7 +338,7 @@ log transactions T.purpose = "Credit withdrawal" T.amount = "([amount])" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() authenticated_account.transaction_log.Add(T) withdrawal_timer = world.time + 20 @@ -353,7 +353,7 @@ log transactions R.info += "Account holder: [authenticated_account.owner_name]
      " R.info += "Account number: [authenticated_account.account_number]
      " R.info += "Balance: $[authenticated_account.money]
      " - R.info += "Date and time: [worldtime2text()], [current_date_string]

      " + R.info += "Date and time: [worldtime2text()], [GLOB.current_date_string]

      " R.info += "Service terminal ID: [machine_id]
      " //stamp the paper @@ -376,7 +376,7 @@ log transactions R.info = "Transaction logs
      " R.info += "Account holder: [authenticated_account.owner_name]
      " R.info += "Account number: [authenticated_account.account_number]
      " - R.info += "Date and time: [worldtime2text()], [current_date_string]

      " + R.info += "Date and time: [worldtime2text()], [GLOB.current_date_string]

      " R.info += "Service terminal ID: [machine_id]
      " R.info += "" R.info += "" @@ -428,26 +428,28 @@ log transactions //stolen wholesale and then edited a bit from newscasters, which are awesome and by Agouri /obj/structure/machinery/atm/proc/scan_user(mob/living/carbon/human/human_user as mob) + if(authenticated_account) + return + var/obj/item/card/id/card = human_user.get_idcard() + if(!card) + return + + authenticated_account = attempt_account_access(card.associated_account_number) if(!authenticated_account) - if(human_user.wear_id) - var/obj/item/card/id/I - if(istype(human_user.wear_id, /obj/item/card/id)) - I = human_user.wear_id - if(I) - authenticated_account = attempt_account_access(I.associated_account_number) - if(authenticated_account) - to_chat(human_user, SPAN_NOTICE("[icon2html(src, human_user)] Access granted. Welcome user '[authenticated_account.owner_name].'")) - - //create a transaction log entry - var/datum/transaction/T = new() - T.target_name = authenticated_account.owner_name - T.purpose = "Remote terminal access" - T.source_terminal = machine_id - T.date = current_date_string - T.time = worldtime2text() - authenticated_account.transaction_log.Add(T) - - view_screen = NO_SCREEN + return + + to_chat(human_user, SPAN_NOTICE("[icon2html(src, human_user)] Access granted. Welcome user '[authenticated_account.owner_name].'")) + + //create a transaction log entry + var/datum/transaction/log = new() + log.target_name = authenticated_account.owner_name + log.purpose = "Remote terminal access" + log.source_terminal = machine_id + log.date = GLOB.current_date_string + log.time = worldtime2text() + authenticated_account.transaction_log.Add(log) + + view_screen = NO_SCREEN // put the currently held id on the ground or in the hand of the user /obj/structure/machinery/atm/proc/release_held_id(mob/living/carbon/human/human_user as mob) diff --git a/code/modules/economy/Accounts.dm b/code/modules/economy/Accounts.dm index 7e5bf22041..0a5a0b8f3c 100644 --- a/code/modules/economy/Accounts.dm +++ b/code/modules/economy/Accounts.dm @@ -32,7 +32,7 @@ T.purpose = "Account creation" T.amount = starting_funds * id_paygrade.pay_multiplier //set a random date, time and location some time over the past few decades - T.date = "[num2text(rand(1,31))] [pick("January","February","March","April","May","June","July","August","September","October","November","December")], [game_year - rand(0, 10)]" + T.date = "[num2text(rand(1,31))] [pick("January","February","March","April","May","June","July","August","September","October","November","December")], [GLOB.game_year - rand(0, 10)]" T.time = "[rand(0,24)]:[rand(11,59)]" T.source_terminal = "Weyland-Yutani Terminal #[rand(111,1111)]" for(var/attempt in 1 to 100) // Make up to 100 attempts to get a unique account number @@ -41,12 +41,12 @@ break // Account number is unique! //add the account M.transaction_log.Add(T) - all_money_accounts.Add(M) + GLOB.all_money_accounts.Add(M) return M /proc/charge_to_account(attempt_account_number, source_name, purpose, terminal_id, amount) - for(var/datum/money_account/D in all_money_accounts) + for(var/datum/money_account/D in GLOB.all_money_accounts) if(D.account_number == attempt_account_number && !D.suspended) D.money += amount @@ -58,7 +58,7 @@ T.amount = "([amount])" else T.amount = "[amount]" - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() T.source_terminal = terminal_id D.transaction_log.Add(T) @@ -70,13 +70,13 @@ //this returns the first account datum that matches the supplied accnum/pin combination, it returns null if the combination did not match any account /proc/attempt_account_access(attempt_account_number, attempt_pin_number, security_level_passed = 0) - for(var/datum/money_account/D in all_money_accounts) + for(var/datum/money_account/D in GLOB.all_money_accounts) if(D.account_number == attempt_account_number) if( D.security_level <= security_level_passed && (!D.security_level || D.remote_access_pin == attempt_pin_number) ) return D break /proc/get_account(account_number) - for(var/datum/money_account/D in all_money_accounts) + for(var/datum/money_account/D in GLOB.all_money_accounts) if(D.account_number == account_number) return D diff --git a/code/modules/economy/EFTPOS.dm b/code/modules/economy/EFTPOS.dm index a5b36fd0bf..ad6368328d 100644 --- a/code/modules/economy/EFTPOS.dm +++ b/code/modules/economy/EFTPOS.dm @@ -13,7 +13,7 @@ /obj/item/device/eftpos/Initialize() . = ..() - machine_id = "[station_name] EFTPOS #[num_financial_terminals++]" + machine_id = "[MAIN_SHIP_NAME] EFTPOS #[GLOB.num_financial_terminals++]" access_code = rand(1111,111111) spawn(0) print_reference() @@ -59,7 +59,7 @@ //by default, connect to the station account //the user of the EFTPOS device can change the target account though, and no-one will be the wiser (except whoever's being charged) - linked_account = station_account + linked_account = GLOB.station_account /obj/item/device/eftpos/proc/print_reference() var/obj/item/paper/R = new(src.loc) @@ -136,7 +136,7 @@ T.purpose = (transaction_purpose ? transaction_purpose : "None supplied.") T.amount = transaction_amount T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() linked_account.transaction_log.Add(T) else @@ -198,7 +198,7 @@ transaction_locked = 0 transaction_paid = 0 else - var/attempt_code = tgui_input_number(usr, "Enter EFTPOS access code", "Reset Transaction") + var/attempt_code = tgui_input_number(usr, "Enter EFTPOS access code", "Reset Transaction", 1000, 999999, 1000) if(attempt_code == access_code) transaction_locked = 0 transaction_paid = 0 @@ -234,7 +234,7 @@ var/attempt_pin = "" var/datum/money_account/D = get_account(C.associated_account_number) if(D.security_level) - attempt_pin = tgui_input_number(usr, "Enter pin code", "EFTPOS transaction") + attempt_pin = tgui_input_number(usr, "Enter pin code", "EFTPOS transaction", 1111, 111111, 1111) D = null D = attempt_account_access(C.associated_account_number, attempt_pin, 2) if(D) @@ -257,7 +257,7 @@ else T.amount = "[transaction_amount]" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() D.transaction_log.Add(T) // @@ -266,7 +266,7 @@ T.purpose = transaction_purpose T.amount = "[transaction_amount]" T.source_terminal = machine_id - T.date = current_date_string + T.date = GLOB.current_date_string T.time = worldtime2text() linked_account.transaction_log.Add(T) else diff --git a/code/modules/economy/TradeDestinations.dm b/code/modules/economy/TradeDestinations.dm deleted file mode 100644 index ff01dc89d2..0000000000 --- a/code/modules/economy/TradeDestinations.dm +++ /dev/null @@ -1,110 +0,0 @@ - -var/list/weighted_randomevent_locations = list() -var/list/weighted_mundaneevent_locations = list() - -/datum/trade_destination - var/name = "" - var/description = "" - var/distance = 0 - var/list/willing_to_buy = list() - var/list/willing_to_sell = list() - var/can_shuttle_here = 0 //one day crew from the exodus will be able to travel to this destination - var/list/viable_random_events = list() - var/list/temp_price_change[BIOMEDICAL] - var/list/viable_mundane_events = list() - -/datum/trade_destination/proc/get_custom_eventstring(event_type) - return null - -//distance is measured in AU and co-relates to travel time -/datum/trade_destination/centcomm - name = "CentComm" - description = "Weyland-Yutani's administrative centre for Tau Ceti." - distance = 1.2 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(SECURITY_BREACH, CORPORATE_ATTACK, AI_LIBERATION) - viable_mundane_events = list(ELECTION, RESIGNATION, CELEBRITY_DEATH) - -/datum/trade_destination/anansi - name = "NSS Anansi" - description = "Medical station ran by Second Red Cross (but owned by WY) for handling emergency cases from nearby colonies." - distance = 1.7 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(SECURITY_BREACH, CULT_CELL_REVEALED, BIOHAZARD_OUTBREAK, PIRATES, ALIEN_RAIDERS) - viable_mundane_events = list(RESEARCH_BREAKTHROUGH, RESEARCH_BREAKTHROUGH, BARGAINS, GOSSIP) - -/datum/trade_destination/anansi/get_custom_eventstring(event_type) - if(event_type == RESEARCH_BREAKTHROUGH) - return "Thanks to research conducted on the NSS Anansi, Second Red Cross Society wishes to announce a major breakthough in the field of \ - [pick("mind-machine interfacing","neuroscience","nano-augmentation","genetics")]. Weyland-Yutani is expected to announce a co-exploitation deal within the fortnight." - return null - -/datum/trade_destination/icarus - name = "NMV Icarus" - description = "Corvette assigned to patrol NSS Exodus local space." - distance = 0.1 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(SECURITY_BREACH, AI_LIBERATION, PIRATES) - -/datum/trade_destination/redolant - name = "OAV Redolant" - description = "Osiris Atmospherics station in orbit around the only gas giant insystem. They retain tight control over shipping rights, and Osiris warships protecting their prize are not an uncommon sight in Tau Ceti." - distance = 0.6 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(INDUSTRIAL_ACCIDENT, PIRATES, CORPORATE_ATTACK) - viable_mundane_events = list(RESEARCH_BREAKTHROUGH, RESEARCH_BREAKTHROUGH) - -/datum/trade_destination/redolant/get_custom_eventstring(event_type) - if(event_type == RESEARCH_BREAKTHROUGH) - return "Thanks to research conducted on the OAV Redolant, Osiris Atmospherics wishes to announce a major breakthough in the field of \ - [pick("phoron research","high energy flux capacitance","super-compressed materials","theoretical particle physics")]. Weyland-Yutani is expected to announce a co-exploitation deal within the fortnight." - return null - -/datum/trade_destination/beltway - name = "Beltway mining chain" - description = "A co-operative effort between Beltway and Weyland-Yutani to exploit the rich outer asteroid belt of the Tau Ceti system." - distance = 7.5 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(PIRATES, INDUSTRIAL_ACCIDENT) - viable_mundane_events = list(TOURISM) - -/datum/trade_destination/biesel - name = "Biesel" - description = "Large ship yards, strong economy and a stable, well-educated populace, Biesel largely owes allegiance to Sol / Vessel Contracting and begrudgingly tolerates WY. Capital is Lowell City." - distance = 2.3 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(RIOTS, INDUSTRIAL_ACCIDENT, BIOHAZARD_OUTBREAK, CULT_CELL_REVEALED, FESTIVAL, MOURNING) - viable_mundane_events = list(BARGAINS, GOSSIP, SONG_DEBUT, MOVIE_RELEASE, ELECTION, TOURISM, RESIGNATION, CELEBRITY_DEATH) - -/datum/trade_destination/new_gibson - name = "New Gibson" - description = "Heavily industrialised rocky planet containing the majority of the planet-bound resources in the system, New Gibson is torn by unrest and has very little wealth to call it's own except in the hands of the corporations who jostle with WY for control." - distance = 6.6 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(RIOTS, INDUSTRIAL_ACCIDENT, BIOHAZARD_OUTBREAK, CULT_CELL_REVEALED, FESTIVAL, MOURNING) - viable_mundane_events = list(ELECTION, TOURISM, RESIGNATION) - -/datum/trade_destination/luthien - name = "Luthien" - description = "A small colony established on a feral, untamed world (largely jungle). Savages and wild beasts attack the outpost regularly, although WY maintains tight military control." - distance = 8.9 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(WILD_ANIMAL_ATTACK, CULT_CELL_REVEALED, FESTIVAL, MOURNING, ANIMAL_RIGHTS_RAID, ALIEN_RAIDERS) - viable_mundane_events = list(ELECTION, TOURISM, BIG_GAME_HUNTERS, RESIGNATION) - -/datum/trade_destination/reade - name = "Reade" - description = "A cold, metal-deficient world, WY maintains large pastures in whatever available space in an attempt to salvage something from this profitless colony." - distance = 7.5 - willing_to_buy = list() - willing_to_sell = list() - viable_random_events = list(WILD_ANIMAL_ATTACK, CULT_CELL_REVEALED, FESTIVAL, MOURNING, ANIMAL_RIGHTS_RAID, ALIEN_RAIDERS) - viable_mundane_events = list(ELECTION, TOURISM, BIG_GAME_HUNTERS, RESIGNATION) diff --git a/code/modules/economy/cash.dm b/code/modules/economy/cash.dm index ad09eaf3fa..b5489f1922 100644 --- a/code/modules/economy/cash.dm +++ b/code/modules/economy/cash.dm @@ -88,7 +88,7 @@ ..() var/oldloc = loc var/amount = tgui_input_number(user, "How many dollars do you want to take? (0 to [src.worth])", "Take Money", 0, src.worth, 0) - amount = round(Clamp(amount, 0, src.worth)) + amount = floor(clamp(amount, 0, src.worth)) if(amount == 0) return if(QDELETED(src) || loc != oldloc) diff --git a/code/modules/economy/economy_misc.dm b/code/modules/economy/economy_misc.dm index 75a10a8ee1..afd2b1b8ad 100644 --- a/code/modules/economy/economy_misc.dm +++ b/code/modules/economy/economy_misc.dm @@ -62,66 +62,40 @@ //Destroyers are medium sized vessels, often used for escorting larger ships but able to go toe-to-toe with them if need be. //Frigates are medium sized vessels, often used for escorting larger ships. They will rapidly find themselves outclassed if forced to face heavy warships head on. -var/global/current_date_string +GLOBAL_VAR(current_date_string) -var/global/datum/money_account/vendor_account -var/global/datum/money_account/station_account -var/global/list/datum/money_account/department_accounts = list() -var/global/num_financial_terminals = 1 -var/global/list/all_money_accounts = list() -var/global/economy_init = 0 +GLOBAL_DATUM(vendor_account, /datum/money_account) +GLOBAL_DATUM(station_account, /datum/money_account) +GLOBAL_LIST_INIT_TYPED(department_accounts, /datum/money_account, list()) +GLOBAL_VAR_INIT(num_financial_terminals, 1) +GLOBAL_LIST_EMPTY(all_money_accounts) +GLOBAL_VAR_INIT(economy_init, FALSE) /proc/setup_economy() - if(economy_init) + if(GLOB.economy_init) return 2 - var/datum/feed_channel/newChannel = new /datum/feed_channel - newChannel.channel_name = "Public Station Announcements" - newChannel.author = "Automated Announcement Listing" - newChannel.locked = 1 - newChannel.is_admin_channel = 1 - news_network.network_channels += newChannel - - newChannel = new /datum/feed_channel - newChannel.channel_name = "Nyx Daily" - newChannel.author = "CentComm Minister of Information" - newChannel.locked = 1 - newChannel.is_admin_channel = 1 - news_network.network_channels += newChannel - - newChannel = new /datum/feed_channel - newChannel.channel_name = "The Gibson Gazette" - newChannel.author = "Editor Mike Hammers" - newChannel.locked = 1 - newChannel.is_admin_channel = 1 - news_network.network_channels += newChannel - - for(var/loc_type in typesof(/datum/trade_destination) - /datum/trade_destination) - var/datum/trade_destination/D = new loc_type - weighted_randomevent_locations[D] = D.viable_random_events.len - weighted_mundaneevent_locations[D] = D.viable_mundane_events.len - create_station_account() create_department_account("Vendor") - vendor_account = department_accounts["Vendor"] + GLOB.vendor_account = GLOB.department_accounts["Vendor"] - current_date_string = "[num2text(rand(1,31))] [pick("January","February","March","April","May","June","July","August","September","October","November","December")], [game_year]" + GLOB.current_date_string = "[num2text(rand(1,31))] [pick("January","February","March","April","May","June","July","August","September","October","November","December")], [GLOB.game_year]" - economy_init = 1 + GLOB.economy_init = TRUE return 1 /proc/create_station_account() - if(!station_account) - station_account = new() - station_account.owner_name = "[station_name] Station Account" - station_account.account_number = rand(111111, 999999) - station_account.remote_access_pin = rand(1111, 111111) - station_account.money = 75000 + if(!GLOB.station_account) + GLOB.station_account = new() + GLOB.station_account.owner_name = "[MAIN_SHIP_NAME] Station Account" + GLOB.station_account.account_number = rand(111111, 999999) + GLOB.station_account.remote_access_pin = rand(1111, 111111) + GLOB.station_account.money = 75000 //create an entry in the account transaction log for when it was created var/datum/transaction/T = new() - T.target_name = station_account.owner_name + T.target_name = GLOB.station_account.owner_name T.purpose = "Account creation" T.amount = 75000 T.date = "2nd April, 2555" @@ -129,8 +103,8 @@ var/global/economy_init = 0 T.source_terminal = "Biesel GalaxyNet Terminal #277" //add the account - station_account.transaction_log.Add(T) - all_money_accounts.Add(station_account) + GLOB.station_account.transaction_log.Add(T) + GLOB.all_money_accounts.Add(GLOB.station_account) /proc/create_department_account(department) var/datum/money_account/department_account = new() @@ -150,6 +124,6 @@ var/global/economy_init = 0 //add the account department_account.transaction_log.Add(T) - all_money_accounts.Add(department_account) + GLOB.all_money_accounts.Add(department_account) - department_accounts[department] = department_account + GLOB.department_accounts[department] = department_account diff --git a/code/modules/events/_events.dm b/code/modules/events/_events.dm index 2cc3304e78..af85be0423 100644 --- a/code/modules/events/_events.dm +++ b/code/modules/events/_events.dm @@ -21,7 +21,7 @@ ///The minimum amount of alive, non-AFK human players on server required to start the event. var/min_players = 0 - ///How many times this event has occured + ///How many times this event has occurred var/occurrences = 0 //The maximum number of times this event can occur (naturally), it can still be forced.By setting this to 0 you can effectively disable an event. var/max_occurrences = 20 diff --git a/code/modules/events/comms_blackout.dm b/code/modules/events/comms_blackout.dm index 76a8712050..ea7ad9c84b 100644 --- a/code/modules/events/comms_blackout.dm +++ b/code/modules/events/comms_blackout.dm @@ -2,7 +2,7 @@ if(!silent) marine_announcement("Ionic radiation flare detected from nearby star. Imminent telecommunication failu*3mga;b4;'1v�-BZZZT", "Problem Detected", 'sound/misc/interference.ogg') else // AIs will always know if there's a comm blackout, rogue AIs could then lie about comm blackouts in the future while they shutdown comms - for(var/mob/living/silicon/ai/A in ai_mob_list) + for(var/mob/living/silicon/ai/A in GLOB.ai_mob_list) to_chat(A, "
      ") to_chat(A, SPAN_WARNING("Ionic radiation flare detected from nearby star. Imminent telecommunication failu*3mga;b4;'1v�-BZZZT")) to_chat(A, "
      ") diff --git a/code/modules/events/inflation.dm b/code/modules/events/inflation.dm index 377c689fa1..b410d97958 100644 --- a/code/modules/events/inflation.dm +++ b/code/modules/events/inflation.dm @@ -32,7 +32,7 @@ /* You may be thinking 'Why the fuck would W-Y directly send a broadcast to a in-operation vessel and reveal their location to any hostiles nearby?' The answer is they don't, it's a signal sent across entire sectors for every UA-affiliated vessel and colony to take note of when it passes by. Colony vendors aren't updated because the colony's network has collapsed. */ - shipwide_ai_announcement("An encrypted broadband signal from Weyland-Yutani has been recieved notifying the sector of sudden changes in the UA's economy during cryosleep, due to [get_random_story()], and have requested UA vessels to increase the prices of [product_type] products by [get_percentage()]%. This change will come into effect in [time_to_update] minutes.") + shipwide_ai_announcement("An encrypted broadband signal from Weyland-Yutani has been received notifying the sector of sudden changes in the UA's economy during cryosleep, due to [get_random_story()], and have requested UA vessels to increase the prices of [product_type] products by [get_percentage()]%. This change will come into effect in [time_to_update] minutes.") /datum/round_event/economy_inflation/start() for(var/obj/structure/machinery/vending/vending_machine as anything in GLOB.total_vending_machines) diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index 1f8dcb2f81..4573052c29 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -54,7 +54,7 @@ Gunshots/explosions/opening doors/less rare audio (done) slots_free += ui_datum.ui_storage1 if(!H.r_store) slots_free += ui_datum.ui_storage2 - if(slots_free.len) + if(length(slots_free)) halitem.screen_loc = pick(slots_free) halitem.layer = 50 switch(rand(1,6)) @@ -95,9 +95,9 @@ Gunshots/explosions/opening doors/less rare audio (done) //to_chat(src, "Danger Flash") if(!halimage) var/list/possible_points = list() - for(var/turf/open/floor/F in view(src,world_view_size)) + for(var/turf/open/floor/F in view(src,GLOB.world_view_size)) possible_points += F - if(possible_points.len) + if(length(possible_points)) var/turf/open/floor/target = pick(possible_points) switch(rand(1,3)) @@ -159,9 +159,9 @@ Gunshots/explosions/opening doors/less rare audio (done) //to_chat(src, "Danger Flash") if(!halbody) var/list/possible_points = list() - for(var/turf/open/floor/F in view(src,world_view_size)) + for(var/turf/open/floor/F in view(src,GLOB.world_view_size)) possible_points += F - if(possible_points.len) + if(length(possible_points)) var/turf/open/floor/target = pick(possible_points) switch(rand(1,3)) if(1) @@ -203,12 +203,12 @@ Gunshots/explosions/opening doors/less rare audio (done) "Play Charades","Oxygen","Inject BeAcOs","Ninja Lizards","Limit Break","Build Sentry") if(mid_txts) - while(mid_txts.len) + while(length(mid_txts)) var/mid_txt = pick(mid_txts) mocktxt += mid_txt mid_txts -= mid_txt - while(buttons.len) + while(length(buttons)) var/button = pick(buttons) @@ -249,7 +249,7 @@ Gunshots/explosions/opening doors/less rare audio (done) /obj/effect/fake_attacker/attackby(obj/item/P as obj, mob/user as mob) step_away(src,my_target,2) - for(var/mob/M in oviewers(world_view_size,my_target)) + for(var/mob/M in oviewers(GLOB.world_view_size,my_target)) to_chat(M, SPAN_WARNING("[my_target] flails around wildly.")) my_target.show_message(SPAN_DANGER("[src] has been attacked by [my_target] "), SHOW_MESSAGE_VISIBLE) //Lazy. @@ -262,7 +262,7 @@ Gunshots/explosions/opening doors/less rare audio (done) if(M == my_target) step_away(src,my_target,2) if(prob(30)) - for(var/mob/O in oviewers(world_view_size , my_target)) + for(var/mob/O in oviewers(GLOB.world_view_size , my_target)) to_chat(O, SPAN_DANGER("[my_target] stumbles around.")) /obj/effect/fake_attacker/New() @@ -341,9 +341,9 @@ Gunshots/explosions/opening doors/less rare audio (done) QDEL_IN(O, 30 SECONDS) return -var/list/non_fakeattack_weapons = list(/obj/item/device/aicard,\ +GLOBAL_LIST_INIT(non_fakeattack_weapons, list(/obj/item/device/aicard,\ /obj/item/clothing/shoes/magboots, /obj/item/disk/nuclear,\ - /obj/item/clothing/suit/space/uscm, /obj/item/tank) + /obj/item/clothing/suit/space/uscm, /obj/item/tank)) /proc/fake_attack(mob/living/target) // var/list/possible_clones = new/list() @@ -356,18 +356,18 @@ var/list/non_fakeattack_weapons = list(/obj/item/device/aicard,\ clone = H break //changed the code a bit. Less randomised, but less work to do. Should be ok, world.contents aren't stored in any particular order. -// if(!possible_clones.len) return +// if(!length(possible_clones)) return // clone = pick(possible_clones) if(!clone) return //var/obj/effect/fake_attacker/F = new/obj/effect/fake_attacker(outside_range(target)) var/obj/effect/fake_attacker/F = new/obj/effect/fake_attacker(target.loc) if(clone.l_hand) - if(!(locate(clone.l_hand) in non_fakeattack_weapons)) + if(!(locate(clone.l_hand) in GLOB.non_fakeattack_weapons)) clone_weapon = clone.l_hand.name F.weap = clone.l_hand else if (clone.r_hand) - if(!(locate(clone.r_hand) in non_fakeattack_weapons)) + if(!(locate(clone.r_hand) in GLOB.non_fakeattack_weapons)) clone_weapon = clone.r_hand.name F.weap = clone.r_hand diff --git a/code/modules/flufftext/TextFilters.dm b/code/modules/flufftext/TextFilters.dm index f6b5c43384..2389d50fdc 100644 --- a/code/modules/flufftext/TextFilters.dm +++ b/code/modules/flufftext/TextFilters.dm @@ -30,10 +30,10 @@ var/list/unstuttered_words = split_phrase.Copy() var/i = rand(1,3) - if(stunned) i = split_phrase.len + if(stunned) i = length(split_phrase) for(,i > 0,i--) //Pick a few words to stutter on. - if (!unstuttered_words.len) + if (!length(unstuttered_words)) break var/word = pick(unstuttered_words) unstuttered_words -= word //Remove from unstuttered words so we don't stutter it again. diff --git a/code/modules/gear_presets/_select_equipment.dm b/code/modules/gear_presets/_select_equipment.dm index 68cd563f6e..2fc117421c 100644 --- a/code/modules/gear_presets/_select_equipment.dm +++ b/code/modules/gear_presets/_select_equipment.dm @@ -15,7 +15,7 @@ var/list/access = list() var/assignment var/rank - var/paygrade + var/list/paygrades = list("???") var/role_comm_title var/minimum_age var/faction = FACTION_NEUTRAL @@ -87,7 +87,7 @@ new_human.gender = pick(60;MALE,40;FEMALE) var/datum/preferences/A = new() A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) new_human.change_real_name(new_human, random_name) new_human.age = rand(21,45) @@ -95,8 +95,33 @@ if(minimum_age && new_human.age < minimum_age) new_human.age = minimum_age -/datum/equipment_preset/proc/load_rank(mob/living/carbon/human/new_human, client/mob_client) - return paygrade +/datum/equipment_preset/proc/load_rank(mob/living/carbon/human/new_human, client/mob_client)//Beagle-Code + if(paygrades.len == 1) + return paygrades[1] + var/playtime + if(!mob_client) + playtime = JOB_PLAYTIME_TIER_1 + else + playtime = get_job_playtime(mob_client, rank) + if((playtime >= JOB_PLAYTIME_TIER_1) && !mob_client.prefs.playtime_perks) + playtime = JOB_PLAYTIME_TIER_1 + var/final_paygrade + for(var/current_paygrade as anything in paygrades) + var/required_time = paygrades[current_paygrade] + if(required_time - playtime > 0) + break + final_paygrade = current_paygrade + if(rank == JOB_SQUAD_MARINE && final_paygrade == PAY_SHORT_ME3) + if(GLOB.data_core.leveled_riflemen > GLOB.data_core.leveled_riflemen_max) + return PAY_SHORT_ME2 + else + GLOB.data_core.leveled_riflemen++ + return final_paygrade + if(!final_paygrade) + . = "???" + CRASH("[key_name(new_human)] spawned with no valid paygrade.") + + return final_paygrade /datum/equipment_preset/proc/load_gear(mob/living/carbon/human/new_human, client/mob_client) return @@ -110,6 +135,8 @@ /datum/equipment_preset/proc/load_id(mob/living/carbon/human/new_human, client/mob_client) if(!idtype) return + if(!mob_client) + mob_client = new_human.client var/obj/item/card/id/ID = new idtype() ID.name = "[new_human.real_name]'s [ID.card_name]" if(assignment) @@ -123,7 +150,7 @@ ID.registered_ref = WEAKREF(new_human) ID.registered_gid = new_human.gid ID.blood_type = new_human.blood_type - ID.paygrade = load_rank(new_human) || ID.paygrade + ID.paygrade = load_rank(new_human, mob_client) || ID.paygrade ID.uniform_sets = uniform_sets new_human.equip_to_slot_or_del(ID, WEAR_ID) new_human.faction = faction @@ -138,6 +165,9 @@ new_human.set_languages(languages) /datum/equipment_preset/proc/load_preset(mob/living/carbon/human/new_human, randomise = FALSE, count_participant = FALSE, client/mob_client, show_job_gear = TRUE, late_join) + if(!new_human.hud_used) + new_human.create_hud() + load_race(new_human, mob_client) if(randomise || uses_special_name) load_name(new_human, randomise, mob_client) @@ -149,15 +179,15 @@ load_skills(new_human, mob_client) //skills are set before equipment because of skill restrictions on certain clothes. load_languages(new_human, mob_client) load_age(new_human, mob_client) + load_id(new_human, mob_client) if(show_job_gear) load_gear(new_human, mob_client) - load_id(new_human, mob_client) load_status(new_human, mob_client) INVOKE_NEXT_TICK(src, PROC_REF(do_vanity), new_human, mob_client) load_traits(new_human, mob_client) - if(round_statistics && count_participant) - round_statistics.track_new_participant(faction) + if(GLOB.round_statistics && count_participant) + GLOB.round_statistics.track_new_participant(faction) new_human.assigned_equipment_preset = src @@ -184,7 +214,7 @@ if(!new_human.client || !new_human.client.prefs || !new_human.client.prefs.gear) return//We want to equip them with custom stuff second, after they are equipped with everything else. for(var/gear_name in new_human.client.prefs.gear) - var/datum/gear/current_gear = gear_datums_by_name[gear_name] + var/datum/gear/current_gear = GLOB.gear_datums_by_name[gear_name] if(current_gear) if(current_gear.allowed_roles && !(assignment in current_gear.allowed_roles)) to_chat(new_human, SPAN_WARNING("Custom gear [current_gear.display_name] cannot be equipped: Invalid Role")) @@ -197,7 +227,7 @@ new_human.equip_to_slot_or_del(equipping_gear, WEAR_IN_BACK) //Gives ranks to the ranked - var/current_rank = paygrade + var/current_rank = paygrades[1] var/obj/item/card/id/I = new_human.get_idcard() if(I) current_rank = I.paygrade @@ -213,7 +243,7 @@ qdel(R) if(flags & EQUIPMENT_PRESET_MARINE) - var/playtime = get_job_playtime(new_human.client, assignment) + var/playtime = get_job_playtime(new_human.client, rank) var/medal_type switch(playtime) @@ -232,7 +262,7 @@ if(medal_type) var/obj/item/clothing/accessory/medal/medal = new medal_type() medal.recipient_name = new_human.real_name - medal.recipient_rank = current_rank + medal.recipient_rank = assignment if(new_human.wear_suit && new_human.wear_suit.can_attach_accessory(medal)) new_human.wear_suit.attach_accessory(new_human, medal, TRUE) @@ -278,7 +308,7 @@ GLOBAL_LIST_EMPTY(personal_closets) return for(var/gear_name in new_human.client.prefs.gear) - var/datum/gear/current_gear = gear_datums_by_name[gear_name] + var/datum/gear/current_gear = GLOB.gear_datums_by_name[gear_name] if(current_gear) if(current_gear.allowed_roles && !(assignment in current_gear.allowed_roles)) to_chat(new_human, SPAN_WARNING("Custom gear [current_gear.display_name] cannot be equipped: Invalid Role")) @@ -289,7 +319,7 @@ GLOBAL_LIST_EMPTY(personal_closets) new current_gear.path(closet_to_spawn_in) //Gives ranks to the ranked - var/current_rank = paygrade + var/current_rank = paygrades[1] var/obj/item/card/id/I = new_human.get_idcard() if(I) current_rank = I.paygrade @@ -566,16 +596,16 @@ GLOBAL_LIST_EMPTY(personal_closets) return 1 -var/list/rebel_shotguns = list( +GLOBAL_LIST_INIT(rebel_shotguns, list( /obj/item/weapon/gun/shotgun/double = /obj/item/ammo_magazine/handful/shotgun/buckshot, /obj/item/weapon/gun/shotgun/double/with_stock = /obj/item/ammo_magazine/handful/shotgun/flechette, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = /obj/item/ammo_magazine/handful/shotgun/incendiary, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = /obj/item/ammo_magazine/handful/shotgun/incendiary, /obj/item/weapon/gun/shotgun/double/sawn = /obj/item/ammo_magazine/handful/shotgun/incendiary, /obj/item/weapon/gun/shotgun/double/sawn = /obj/item/ammo_magazine/handful/shotgun/buckshot - ) + )) -var/list/rebel_smgs = list( +GLOBAL_LIST_INIT(rebel_smgs, list( /obj/item/weapon/gun/smg/pps43 = /obj/item/ammo_magazine/smg/pps43, /obj/item/weapon/gun/smg/mp27 = /obj/item/ammo_magazine/smg/mp27, /obj/item/weapon/gun/smg/mp5 = /obj/item/ammo_magazine/smg/mp5, @@ -583,9 +613,9 @@ var/list/rebel_smgs = list( /obj/item/weapon/gun/smg/mac15 = /obj/item/ammo_magazine/smg/mac15, /obj/item/weapon/gun/smg/uzi = /obj/item/ammo_magazine/smg/uzi, /obj/item/weapon/gun/smg/fp9000 = /obj/item/ammo_magazine/smg/fp9000 - ) + )) -var/list/rebel_rifles = list( +GLOBAL_LIST_INIT(rebel_rifles, list( /obj/item/weapon/gun/rifle/mar40 = /obj/item/ammo_magazine/rifle/mar40, /obj/item/weapon/gun/rifle/mar40 = /obj/item/ammo_magazine/rifle/mar40, /obj/item/weapon/gun/rifle/mar40/carbine = /obj/item/ammo_magazine/rifle/mar40, @@ -595,13 +625,13 @@ var/list/rebel_rifles = list( /obj/item/weapon/gun/rifle/ar10 = /obj/item/ammo_magazine/rifle/ar10, /obj/item/weapon/gun/rifle/l42a/abr40 = /obj/item/ammo_magazine/rifle/l42a/abr40, /obj/item/weapon/gun/rifle/l42a/abr40 = /obj/item/ammo_magazine/rifle/l42a/abr40, - ) + )) /datum/equipment_preset/proc/spawn_rebel_smg(atom/M, ammo_amount = 12) if(!M) return - var/gunpath = pick(rebel_smgs) - var/ammopath = rebel_smgs[gunpath] + var/gunpath = pick(GLOB.rebel_smgs) + var/ammopath = GLOB.rebel_smgs[gunpath] spawn_weapon(gunpath, ammopath, M, ammo_amount) @@ -610,8 +640,8 @@ var/list/rebel_rifles = list( /datum/equipment_preset/proc/spawn_rebel_shotgun(atom/M, ammo_amount = 12) if(!M) return - var/gunpath = pick(rebel_shotguns) - var/ammopath = rebel_shotguns[gunpath] + var/gunpath = pick(GLOB.rebel_shotguns) + var/ammopath = GLOB.rebel_shotguns[gunpath] spawn_weapon(gunpath, ammopath, M, ammo_amount) @@ -620,8 +650,8 @@ var/list/rebel_rifles = list( /datum/equipment_preset/proc/spawn_rebel_rifle(atom/M, ammo_amount = 12) if(!M) return - var/gunpath = pick(rebel_rifles) - var/ammopath = rebel_rifles[gunpath] + var/gunpath = pick(GLOB.rebel_rifles) + var/ammopath = GLOB.rebel_rifles[gunpath] spawn_weapon(gunpath, ammopath, M, ammo_amount) @@ -680,10 +710,10 @@ var/list/rebel_rifles = list( if(!M) return var/list/merc_shotguns = list( - /obj/item/weapon/gun/shotgun/merc = pick(shotgun_handfuls_12g), - /obj/item/weapon/gun/shotgun/combat = pick(shotgun_handfuls_12g), - /obj/item/weapon/gun/shotgun/double/with_stock = pick(shotgun_handfuls_12g), - /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = pick(shotgun_handfuls_12g)) + /obj/item/weapon/gun/shotgun/merc = pick(GLOB.shotgun_handfuls_12g), + /obj/item/weapon/gun/shotgun/combat = pick(GLOB.shotgun_handfuls_12g), + /obj/item/weapon/gun/shotgun/double/with_stock = pick(GLOB.shotgun_handfuls_12g), + /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb = pick(GLOB.shotgun_handfuls_12g)) var/gunpath = pick(merc_shotguns) var/ammopath = merc_shotguns[gunpath] @@ -715,9 +745,9 @@ var/list/rebel_rifles = list( /obj/item/weapon/gun/rifle/m41a/elite = /obj/item/ammo_magazine/rifle/ap) var/list/elite_merc_shotguns = list( - /obj/item/weapon/gun/shotgun/merc = pick(shotgun_handfuls_12g), - /obj/item/weapon/gun/shotgun/combat = pick(shotgun_handfuls_12g), - /obj/item/weapon/gun/shotgun/type23 = pick(shotgun_handfuls_8g)) + /obj/item/weapon/gun/shotgun/merc = pick(GLOB.shotgun_handfuls_12g), + /obj/item/weapon/gun/shotgun/combat = pick(GLOB.shotgun_handfuls_12g), + /obj/item/weapon/gun/shotgun/type23 = pick(GLOB.shotgun_handfuls_8g)) if(prob(shotgun_chance)) var/gunpath = pick(elite_merc_shotguns) diff --git a/code/modules/gear_presets/agents.dm b/code/modules/gear_presets/agents.dm index dcf2a367b6..b7c098de6e 100644 --- a/code/modules/gear_presets/agents.dm +++ b/code/modules/gear_presets/agents.dm @@ -17,7 +17,7 @@ ) assignment = JOB_STOWAWAY rank = JOB_STOWAWAY - paygrade = "???" + paygrades = list("???" = JOB_PLAYTIME_TIER_0) role_comm_title = "???" skills = /datum/skills/civilian/survivor @@ -69,7 +69,7 @@ ) assignment = JOB_UPP_REPRESENTATIVE rank = JOB_UPP_REPRESENTATIVE - paygrade = "CR" + paygrades = list(PAY_SHORT_CREP = JOB_PLAYTIME_TIER_0) role_comm_title = "UPP Rep." skills = /datum/skills/civilian/survivor @@ -105,7 +105,7 @@ ) assignment = JOB_TWE_REPRESENTATIVE rank = JOB_TWE_REPRESENTATIVE - paygrade = "CR" + paygrades = list(PAY_SHORT_CREP = JOB_PLAYTIME_TIER_0) role_comm_title = "TWE Rep." skills = /datum/skills/civilian/survivor @@ -115,7 +115,7 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male_dutch)] [pick(last_names_clf)]" + random_name = "[pick(GLOB.first_names_male_dutch)] [pick(GLOB.last_names_clf)]" new_human.f_style = "Shaved" new_human.change_real_name(new_human, random_name) diff --git a/code/modules/gear_presets/cbrn.dm b/code/modules/gear_presets/cbrn.dm index bcc24c101f..b2ecf5b403 100644 --- a/code/modules/gear_presets/cbrn.dm +++ b/code/modules/gear_presets/cbrn.dm @@ -2,7 +2,7 @@ name = "Generic CBRN" //Parent type for easier gear assignment = JOB_SQUAD_MARINE rank = JOB_SQUAD_MARINE - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "CBRN" flags = EQUIPMENT_PRESET_EXTRA auto_squad_name = SQUAD_CBRN @@ -67,7 +67,7 @@ /datum/equipment_preset/uscm/cbrn/engineer name = "CBRN Combat Technician" - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) assignment = JOB_SQUAD_ENGI rank = JOB_SQUAD_ENGI role_comm_title = "ComTech" @@ -111,7 +111,7 @@ /datum/equipment_preset/uscm/cbrn/medic name = "CBRN Hospital Corpsman" - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) assignment = JOB_SQUAD_MEDIC rank = JOB_SQUAD_MEDIC role_comm_title = "HM" @@ -154,7 +154,7 @@ /datum/equipment_preset/uscm/cbrn/leader name = "CBRN Fireteam Leader" - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) assignment = JOB_SQUAD_TEAM_LEADER rank = JOB_SQUAD_TEAM_LEADER role_comm_title = "TL" @@ -189,7 +189,7 @@ /datum/equipment_preset/uscm/cbrn/specialist name = "CBRN Specialist" - paygrade = "O" + paygrades = list(PAY_SHORT_OPR = JOB_PLAYTIME_TIER_0) assignment = JOB_SQUAD_SPECIALIST rank = JOB_SQUAD_SPECIALIST role_comm_title = "Spc" diff --git a/code/modules/gear_presets/clf.dm b/code/modules/gear_presets/clf.dm index 277c21036b..7665cd6994 100644 --- a/code/modules/gear_presets/clf.dm +++ b/code/modules/gear_presets/clf.dm @@ -3,6 +3,7 @@ languages = list(LANGUAGE_JAPANESE, LANGUAGE_ENGLISH) assignment = JOB_CLF rank = FACTION_CLF + paygrades = list(PAY_SHORT_REB = JOB_PLAYTIME_TIER_0) faction = FACTION_CLF origin_override = ORIGIN_CIVILIAN idtype = /obj/item/card/id/data @@ -21,18 +22,18 @@ if(prob(40)) first_name = "[capitalize(randomly_generate_japanese_word(rand(1, 3)))]" else - first_name = "[pick(first_names_male_clf)]" + first_name = "[pick(GLOB.first_names_male_clf)]" new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") else if(prob(40)) first_name = "[capitalize(randomly_generate_japanese_word(rand(1, 3)))]" else - first_name = "[pick(first_names_female_clf)]" + first_name = "[pick(GLOB.first_names_female_clf)]" //surname if(prob(35)) last_name = "[capitalize(randomly_generate_japanese_word(rand(1, 4)))]" else - last_name = "[pick(last_names_clf)]" + last_name = "[pick(GLOB.last_names_clf)]" //put them together random_name = "[first_name] [last_name]" new_human.change_real_name(new_human, random_name) @@ -70,6 +71,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/full/random(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) if(prob(50)) spawn_rebel_smg(new_human) else @@ -168,13 +170,13 @@ spawn_rebel_suit(new_human) spawn_rebel_shoes(new_human) - spawn_rebel_gloves(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/meson, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/welding, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/cct, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/ert, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) @@ -281,6 +283,7 @@ assignment = JOB_CLF_MEDIC rank = JOB_CLF_MEDIC role_comm_title = "MED" + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) skills = /datum/skills/clf/combat_medic /datum/equipment_preset/clf/medic/load_gear(mob/living/carbon/human/new_human) @@ -298,6 +301,7 @@ new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BELT) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/medic(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/ied(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) @@ -453,6 +457,7 @@ //clothing new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/swat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) @@ -572,6 +577,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/clf(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/hos(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) @@ -709,6 +715,7 @@ skills = /datum/skills/colonial_synthetic assignment = JOB_CLF_SYNTH rank = JOB_CLF_SYNTH + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) role_comm_title = "Syn" /datum/equipment_preset/clf/synth/New() @@ -723,9 +730,9 @@ if(prob(10)) random_name = "[capitalize(randomly_generate_japanese_word(rand(2, 3)))]" else if(new_human.gender == MALE) - random_name = "[pick(first_names_male_clf)]" + random_name = "[pick(GLOB.first_names_male_clf)]" else - random_name = "[pick(first_names_female_clf)]" + random_name = "[pick(GLOB.first_names_female_clf)]" if(new_human.gender == MALE) new_human.f_style = "5 O'clock Shadow" @@ -742,36 +749,43 @@ /datum/equipment_preset/clf/synth/load_race(mob/living/carbon/human/new_human) new_human.set_species(SYNTH_COLONY_GEN_ONE) -/datum/equipment_preset/clf/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) - var/obj/item/clothing/under/colonist/clf/CLF = new() - var/obj/item/clothing/accessory/storage/webbing/W = new() - CLF.attach_accessory(new_human, W) - new_human.equip_to_slot_or_del(CLF, WEAR_BODY) +/datum/equipment_preset/clf/synth/load_skills(mob/living/carbon/human/new_human) + . = ..() + new_human.allow_gun_usage = FALSE +/datum/equipment_preset/clf/synth/load_gear(mob/living/carbon/human/new_human) + //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/ert, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat, WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft, WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) - - spawn_weapon(/obj/item/weapon/gun/rifle/mar40/carbine, /obj/item/ammo_magazine/rifle/mar40/extended, new_human, 0, 10) - new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/command(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/synth, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full_barbed_wire, WEAR_R_STORE) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/command(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp, WEAR_FACE) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) else new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/jan, WEAR_HEAD) + //body + var/obj/item/clothing/under/colonist/clf/CLF = new() + var/obj/item/clothing/accessory/storage/webbing/webbing = new() + CLF.attach_accessory(new_human, webbing) + new_human.equip_to_slot_or_del(CLF, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia, WEAR_JACKET) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BELT) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat, WEAR_FEET) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/synth, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full_barbed_wire, WEAR_R_STORE) /datum/equipment_preset/clf/synth/get_antag_clothing_equipment() return list( @@ -890,6 +904,54 @@ list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), ) +/datum/equipment_preset/clf/synth/combat + name = "CLF Combat Synthetic" + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/clf/synth/combat/load_skills(mob/living/carbon/human/new_human) + . = ..() + new_human.allow_gun_usage = TRUE + +/datum/equipment_preset/clf/synth/combat/load_gear(mob/living/carbon/human/new_human) + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/ert, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF/command(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet/upp, WEAR_FACE) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/jan, WEAR_HEAD) + //body + var/obj/item/clothing/under/colonist/clf/CLF = new() + var/obj/item/clothing/accessory/storage/webbing/webbing = new() + CLF.attach_accessory(new_human, webbing) + new_human.equip_to_slot_or_del(CLF, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/carbine, WEAR_J_STORE) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/full/with_suture_and_graft, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BELT) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat, WEAR_FEET) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/synth, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full_barbed_wire, WEAR_R_STORE) + //*****************************************************************************************************/ /datum/equipment_preset/clf/commander @@ -897,6 +959,7 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_CLF_COMMANDER rank = JOB_CLF_COMMANDER + paygrades = list(PAY_SHORT_REBC = JOB_PLAYTIME_TIER_0) role_comm_title = "CMDR" skills = /datum/skills/clf/commander @@ -914,7 +977,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun/clf(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner/clf/full(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm index c348f63fae..34d428e16a 100644 --- a/code/modules/gear_presets/cmb.dm +++ b/code/modules/gear_presets/cmb.dm @@ -16,7 +16,7 @@ new_human.gender = pick(80;MALE,20;FEMALE) var/datum/preferences/A = new A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) var/static/list/colors = list("BLACK" = list(15, 15, 10), "BROWN" = list(48, 38, 18), "BROWN" = list(48, 38, 18),"BLUE" = list(29, 51, 65), "GREEN" = list(40, 61, 39), "STEEL" = list(46, 59, 54)) var/static/list/hair_colors = list("BLACK" = list(15, 15, 10), "BROWN" = list(48, 38, 18), "AUBURN" = list(77, 48, 36), "BLONDE" = list(95, 76, 44)) var/hair_color = pick(hair_colors) @@ -43,14 +43,14 @@ var/obj/item/clothing/under/uniform = new_human.w_uniform if(istype(uniform)) uniform.has_sensor = UNIFORM_HAS_SENSORS - uniform.sensor_faction = FACTION_USCM + uniform.sensor_faction = FACTION_MARINE return ..() //*****************************************************************************************************/ /datum/equipment_preset/cmb/standard name = "CMB - Colonial Marshal Deputy" - paygrade = "GS-9" + paygrades = list(PAY_SHORT_CMBD = JOB_PLAYTIME_TIER_0) role_comm_title = "CMB DEP" flags = EQUIPMENT_PRESET_EXTRA assignment = "CMB Deputy" @@ -82,7 +82,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) @@ -98,9 +98,9 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/highpower, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge/rubber, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) @@ -116,7 +116,7 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full/revolver, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector, WEAR_L_HAND) @@ -131,7 +131,7 @@ /datum/equipment_preset/cmb/leader name = "CMB - The Colonial Marshal" - paygrade = "GS-13" + paygrades = list(PAY_SHORT_CMBM = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/marshal role_comm_title = "CMB MAR" flags = EQUIPMENT_PRESET_EXTRA @@ -177,7 +177,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/cmb/synth name = "CMB - Colonial Marshal Investigative Synthetic" - paygrade = "GS-C.9" + paygrades = list(PAY_SHORT_CMBS = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/deputy role_comm_title = "CMB Syn" flags = EQUIPMENT_PRESET_EXTRA @@ -196,9 +196,9 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male)]" + random_name = "[pick(GLOB.first_names_male)]" else - random_name = "[pick(first_names_female)]" + random_name = "[pick(GLOB.first_names_female)]" if(new_human.gender == MALE) new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") @@ -224,7 +224,6 @@ new_human.set_species(SYNTH_COLONY) /datum/equipment_preset/cmb/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //backpack new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) @@ -261,8 +260,8 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full, WEAR_L_HAND) //pouches new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/flashbang, WEAR_IN_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical, WEAR_R_STORE) @@ -280,7 +279,7 @@ /datum/equipment_preset/cmb/liaison name = "CMB - ICC Liaison" - paygrade = "GS-6" + paygrades = list(PAY_SHORT_ICCL = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/silver/cl role_comm_title = "ICC Rep." flags = EQUIPMENT_PRESET_EXTRA @@ -339,7 +338,7 @@ /datum/equipment_preset/cmb/observer name = "CMB - Interstellar Human Rights Observer" - paygrade = "GS-3" + paygrades = list(PAY_SHORT_IHRO = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/lanyard role_comm_title = "OBS" flags = EQUIPMENT_PRESET_EXTRA @@ -398,7 +397,7 @@ assignment = "Anchorpoint Station Marine Rifleman" rank = JOB_SQUAD_MARINE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) role_comm_title = "A-RFN" skills = /datum/skills/pfc faction = FACTION_MARSHAL @@ -443,12 +442,9 @@ /datum/equipment_preset/uscm/cmb/leader name = "USCM Anchorpoint Station Team Leader" flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE -/datum/equipment_preset/uscm/cmb/leader/New() - . = ..() - assignment = "Anchorpoint Station Marine Team Leader" rank = JOB_SQUAD_LEADER - paygrade = "ME6" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0) role_comm_title = "A-TL" minimum_age = 25 skills = /datum/skills/SL @@ -468,7 +464,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/emergency, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/lead, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/m15, WEAR_IN_JACKET) @@ -488,12 +484,9 @@ /datum/equipment_preset/uscm/cmb/rto name = "USCM Anchorpoint Station Technical Specialist" flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE -/datum/equipment_preset/uscm/cmb/rto/New() - . = ..() - assignment = "Anchorpoint Station Marine Technical Specialist" rank = JOB_SQUAD_TEAM_LEADER - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "A-TS" skills = /datum/skills/tl @@ -511,7 +504,7 @@ new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding/superior, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/tl, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/rto, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator, WEAR_IN_JACKET) @@ -533,12 +526,9 @@ /datum/equipment_preset/uscm/cmb/medic name = "USCM Anchorpoint Station Corpsman" flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE -/datum/equipment_preset/uscm/cmb/medic/New() - . = ..() - assignment = "Anchorpoint Station Hospital Corpsman" rank = JOB_SQUAD_MEDIC - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "A-HM" skills = /datum/skills/combat_medic @@ -590,12 +580,9 @@ /datum/equipment_preset/uscm/cmb/smartgunner name = "USCM Anchorpoint Station Smartgunner" flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE -/datum/equipment_preset/uscm/cmb/smartgunner/New() - . = ..() - assignment = "Anchorpoint Station Marine Smartgunner" rank = JOB_SQUAD_SMARTGUN - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "A-SG" skills = /datum/skills/smartgunner diff --git a/code/modules/gear_presets/colonist.dm b/code/modules/gear_presets/colonist.dm index 81e5c8ec6a..a5b33c428f 100644 --- a/code/modules/gear_presets/colonist.dm +++ b/code/modules/gear_presets/colonist.dm @@ -75,6 +75,7 @@ name = "Colonist - Doctor" flags = EQUIPMENT_PRESET_EXTRA assignment = "Colonial Doctor" + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) //Marine access is required to use chem dispensers... access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) diff --git a/code/modules/gear_presets/contractor.dm b/code/modules/gear_presets/contractor.dm index c849092570..2d8f4dd960 100644 --- a/code/modules/gear_presets/contractor.dm +++ b/code/modules/gear_presets/contractor.dm @@ -4,7 +4,7 @@ rank = JOB_CONTRACTOR idtype = /obj/item/card/id/data faction = FACTION_CONTRACTOR - faction_group = FACTION_LIST_ERT + faction_group = list(FACTION_CONTRACTOR) languages = list(LANGUAGE_ENGLISH, LANGUAGE_SPANISH, LANGUAGE_RUSSIAN) var/human_versus_human = FALSE var/headset_type = /obj/item/device/radio/headset/distress/contractor @@ -19,7 +19,7 @@ var/datum/preferences/A = new() A.randomize_appearance(new_human) var/random_name - random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) new_human.change_real_name(new_human, random_name) new_human.name = new_human.real_name new_human.age = rand(22,45) @@ -61,7 +61,7 @@ /datum/equipment_preset/contractor/duty/standard name = "Military Contractor (Standard)" - paygrade = "VAI" + paygrades = list(PAY_SHORT_VAI_S = JOB_PLAYTIME_TIER_0) role_comm_title = "Merc" flags = EQUIPMENT_PRESET_EXTRA assignment = "VAIPO Mercenary" @@ -160,7 +160,7 @@ /datum/equipment_preset/contractor/duty/heavy name = "Military Contractor (Machinegunner)" - paygrade = "VAI-G" + paygrades = list(PAY_SHORT_VAI_G = JOB_PLAYTIME_TIER_0) role_comm_title = "MG" flags = EQUIPMENT_PRESET_EXTRA @@ -170,16 +170,14 @@ faction = FACTION_CONTRACTOR /datum/equipment_preset/contractor/duty/heavy/load_gear(mob/living/carbon/human/new_human) + + var/choice = rand(1,3) new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/tshirt/gray_blu, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/lmg/tactical, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine, WEAR_HEAD) @@ -190,6 +188,9 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) //backpack and stuff in it new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response, WEAR_IN_BACK) @@ -197,15 +198,30 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE,WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/m15, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/attachments(new_human), WEAR_IN_BACK) + switch(choice) + if(1,2) // 66% + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/lmg/tactical, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) + if(3) // 33% + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lmg/tactical, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_BACK) //*****************************************************************************************************/ /datum/equipment_preset/contractor/duty/engi name = "Military Contractor (Engineer)" - paygrade = "VAI-E" + paygrades = list(PAY_SHORT_VAI_E = JOB_PLAYTIME_TIER_0) role_comm_title = "Eng" flags = EQUIPMENT_PRESET_EXTRA @@ -252,7 +268,7 @@ /datum/equipment_preset/contractor/duty/medic name = "Military Contractor (Medic)" - paygrade = "VAI-M" + paygrades = list(PAY_SHORT_VAI_M = JOB_PLAYTIME_TIER_0) role_comm_title = "Med" flags = EQUIPMENT_PRESET_EXTRA @@ -289,16 +305,16 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) //Line in vest. new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/smoke, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/extended, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40, WEAR_IN_BACK) //*****************************************************************************************************/ /datum/equipment_preset/contractor/duty/leader name = "Military Contractor (Leader)" - paygrade = "VAI-L" + paygrades = list(PAY_SHORT_VAI_L = JOB_PLAYTIME_TIER_0) role_comm_title = "TL" flags = EQUIPMENT_PRESET_EXTRA @@ -348,7 +364,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/contractor/duty/synth name = "Military Contractor (Synthetic)" - paygrade = "VAI-S" + paygrades = list(PAY_SHORT_VAI_SN = JOB_PLAYTIME_TIER_0) role_comm_title = "Syn" flags = EQUIPMENT_PRESET_EXTRA @@ -367,9 +383,9 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male)]" + random_name = "[pick(GLOB.first_names_male)]" else - random_name = "[pick(first_names_female)]" + random_name = "[pick(GLOB.first_names_female)]" if(new_human.gender == MALE) new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") @@ -395,7 +411,6 @@ new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/contractor/duty/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) //1 @@ -439,7 +454,7 @@ /datum/equipment_preset/contractor/covert/standard name = "Military Contractor (Covert Standard)" - paygrade = "VAI" + paygrades = list(PAY_SHORT_VAI_S = JOB_PLAYTIME_TIER_0) role_comm_title = "Merc" flags = EQUIPMENT_PRESET_EXTRA @@ -458,7 +473,7 @@ new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/tactical, WEAR_EYES) @@ -540,7 +555,7 @@ /datum/equipment_preset/contractor/covert/heavy name = "Military Contractor (Covert Machinegunner)" - paygrade = "VAI-G" + paygrades = list(PAY_SHORT_VAI_G = JOB_PLAYTIME_TIER_0) role_comm_title = "MG" flags = EQUIPMENT_PRESET_EXTRA @@ -553,17 +568,17 @@ new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/ua_civvies, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/lmg/tactical, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lmg/tactical, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/tactical, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) @@ -572,6 +587,9 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge, WEAR_IN_R_STORE) //backpack and stuff in it new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular/response, WEAR_IN_BACK) @@ -579,15 +597,15 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE,WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/m15, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/mar40/lmg, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/attachments(new_human), WEAR_IN_BACK) //*****************************************************************************************************/ /datum/equipment_preset/contractor/covert/engi name = "Military Contractor (Covert Engineer)" - paygrade = "VAI-E" + paygrades = list(PAY_SHORT_VAI_E = JOB_PLAYTIME_TIER_0) role_comm_title = "Eng" flags = EQUIPMENT_PRESET_EXTRA @@ -607,7 +625,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/mar40/carbine/tactical, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding/superior, WEAR_EYES) @@ -635,7 +653,7 @@ /datum/equipment_preset/contractor/covert/medic name = "Military Contractor (Covert Medic)" - paygrade = "VAI-M" + paygrades = list(PAY_SHORT_VAI_M = JOB_PLAYTIME_TIER_0) role_comm_title = "Med" flags = EQUIPMENT_PRESET_EXTRA @@ -654,7 +672,7 @@ new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health, WEAR_EYES) @@ -682,7 +700,7 @@ /datum/equipment_preset/contractor/covert/leader name = "Military Contractor (Covert Leader)" - paygrade = "VAI-L" + paygrades = list(PAY_SHORT_VAI_L = JOB_PLAYTIME_TIER_0) role_comm_title = "TL" flags = EQUIPMENT_PRESET_EXTRA @@ -708,7 +726,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911/socom, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/marsoc, WEAR_IN_HELMET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/sensor, WEAR_EYES) @@ -733,7 +751,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/contractor/covert/synth name = "Military Contractor (Covert Synthetic)" - paygrade = "VAI-S" + paygrades = list(PAY_SHORT_VAI_SN = JOB_PLAYTIME_TIER_0) role_comm_title = "Syn" flags = EQUIPMENT_PRESET_EXTRA @@ -753,9 +771,9 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male)]" + random_name = "[pick(GLOB.first_names_male)]" else - random_name = "[pick(first_names_female)]" + random_name = "[pick(GLOB.first_names_female)]" if(new_human.gender == MALE) new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") @@ -782,7 +800,6 @@ new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/contractor/covert/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/black, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) //1 @@ -794,7 +811,7 @@ new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/experimental_mesons, WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/covert, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/sof, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/cosmetic, WEAR_IN_HELMET) //body new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/wy_davisone, WEAR_BODY) diff --git a/code/modules/gear_presets/corpses.dm b/code/modules/gear_presets/corpses.dm index 16d1b960e0..f3e14dcbc5 100644 --- a/code/modules/gear_presets/corpses.dm +++ b/code/modules/gear_presets/corpses.dm @@ -48,76 +48,12 @@ /datum/equipment_preset/corpse/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) add_random_survivor_equipment(new_human) - add_survivor_weapon_civilian(new_human) add_survivor_weapon_pistol(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) - -//*****************************************************************************************************/ - -/datum/equipment_preset/corpse/realpirate - name = "Corpse - Pirate" - access = list( - ACCESS_CIVILIAN_PUBLIC, - ACCESS_CIVILIAN_LOGISTICS, - ACCESS_CIVILIAN_ENGINEERING, - ACCESS_CIVILIAN_RESEARCH, - ACCESS_CIVILIAN_BRIG, - ACCESS_CIVILIAN_MEDBAY, - ACCESS_CIVILIAN_COMMAND, - ACCESS_ILLEGAL_PIRATE, - ) - -/datum/equipment_preset/corpse/realpirate/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/pirate(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/eyepatch(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/bandana(new_human), WEAR_HEAD) //*****************************************************************************************************/ -/datum/equipment_preset/corpse/realpirate/ranged - name = "Corpse - Pirate Gunner" - -/datum/equipment_preset/corpse/realpirate/ranged/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/pirate(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/pirate(new_human), WEAR_HEAD) - . = ..() - -//*****************************************************************************************************/ - -/datum/equipment_preset/corpse/russian - name = "Corpse - Russian" - access = list( - ACCESS_CIVILIAN_PUBLIC, - ACCESS_CIVILIAN_LOGISTICS, - ACCESS_CIVILIAN_ENGINEERING, - ACCESS_CIVILIAN_RESEARCH, - ACCESS_CIVILIAN_BRIG, - ACCESS_CIVILIAN_MEDBAY, - ACCESS_CIVILIAN_COMMAND, - ) - -/datum/equipment_preset/corpse/russian - -/datum/equipment_preset/corpse/russian/load_gear(mob/living/carbon/human/new_human) - - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/veteran/soviet_uniform_01(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/soviet(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) - if(prob(25)) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/bearpelt(new_human), WEAR_HEAD) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) //*****************************************************************************************************/ // Civilians @@ -127,16 +63,12 @@ assignment = "Prisoner" /datum/equipment_preset/corpse/prisoner/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/color/orange(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/orange(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/orange(new_human), WEAR_FEET) //*****************************************************************************************************/ @@ -146,105 +78,82 @@ access = list(ACCESS_CIVILIAN_PUBLIC) /datum/equipment_preset/corpse/chef/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chef(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/chef/classic(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/chefhat(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) //*****************************************************************************************************/ /datum/equipment_preset/corpse/doctor name = "Corpse - Doctor" - assignment = "Medical Doctor" + assignment = "Doctor" + idtype = /obj/item/card/id/silver/clearance_badge xenovictim = TRUE access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) /datum/equipment_preset/corpse/doctor/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/med(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/med(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/chef/classic(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/chef/classic/medical(new_human), WEAR_JACKET) add_random_survivor_medical_gear(new_human) //*****************************************************************************************************/ /datum/equipment_preset/corpse/engineer name = "Corpse - Engineer" - assignment = "Station Engineer" + assignment = "Engineer" xenovictim = TRUE access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_ENGINEERING) /datum/equipment_preset/corpse/engineer/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) - - - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/lantern(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) //*****************************************************************************************************/ /datum/equipment_preset/corpse/scientist name = "Corpse - Scientist" assignment = "Scientist" + idtype = /obj/item/card/id/silver/clearance_badge/scientist xenovictim = TRUE - access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_ENGINEERING, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) /datum/equipment_preset/corpse/scientist/load_gear(mob/living/carbon/human/new_human) - + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/virologist(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/green(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/virologist(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/green(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/chem(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/green(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/good(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/chem(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/green(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/good(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_JACKET) //*****************************************************************************************************/ @@ -255,34 +164,32 @@ access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_ENGINEERING) /datum/equipment_preset/corpse/miner/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/miner(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/industrial(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/lantern(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/orange(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) //*****************************************************************************************************/ /datum/equipment_preset/corpse/security name = "Corpse - Security" - assignment = "Deputy" + assignment = "Security Officer" xenovictim = TRUE access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_BRIG, ACCESS_CIVILIAN_MEDBAY, ACCESS_CIVILIAN_COMMAND) /datum/equipment_preset/corpse/security/load_gear(mob/living/carbon/human/new_human) - + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) @@ -293,12 +200,13 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) - //*****************************************************************************************************/ -/datum/equipment_preset/corpse/security/marshal - name = "Corpse - Colonial Marshal" - assignment = "Colonial Marshal" +/datum/equipment_preset/corpse/security/cmb + name = "Corpse - Colonial Marshal Deputy" + rank = JOB_CMB + paygrades = list(PAY_SHORT_CMBD = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/deputy xenovictim = TRUE access = list( ACCESS_CIVILIAN_PUBLIC, @@ -310,14 +218,10 @@ ACCESS_CIVILIAN_COMMAND, ) -/datum/equipment_preset/corpse/security/marshal/load_gear(mob/living/carbon/human/new_human) - - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) +/datum/equipment_preset/corpse/security/cmb/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/heavy(new_human), WEAR_WAIST) @@ -327,19 +231,21 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - . = ..() //*****************************************************************************************************/ -/datum/equipment_preset/corpse/security/liaison +/datum/equipment_preset/corpse/liaison name = "Corpse - Corporate Liaison" - assignment = "Corporate Liaison" + assignment = JOB_EXECUTIVE + rank = JOB_EXECUTIVE + faction_group = FACTION_LIST_WY + paygrades = list(PAY_SHORT_WYC3 = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/silver/clearance_badge/cl xenovictim = TRUE - paygrade = "WYC2" access = list( + ACCESS_WY_COLONIAL, + ACCESS_WY_EXEC, ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_ENGINEERING, @@ -349,29 +255,36 @@ ACCESS_CIVILIAN_COMMAND, ) -/datum/equipment_preset/corpse/security/liaison/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) +/datum/equipment_preset/corpse/liaison/load_gear(mob/living/carbon/human/new_human) + var/random = rand(1,4) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) add_random_cl_survivor_loot(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(new_human), WEAR_FEET) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + + switch(random) + if(1) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + if(3) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + if(4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + . = ..() //*****************************************************************************************************/ -/datum/equipment_preset/corpse/prison_security +/datum/equipment_preset/corpse/prison_guard name = "Corpse - Prison Guard" assignment = "Prison Guard" access = list( @@ -384,14 +297,12 @@ ACCESS_CIVILIAN_COMMAND, ) -/datum/equipment_preset/corpse/prison_security/load_gear(mob/living/carbon/human/new_human) - +/datum/equipment_preset/corpse/prison_guard/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) @@ -400,11 +311,21 @@ //*****************************************************************************************************/ /////////////////Officers////////////////////// -/datum/equipment_preset/corpse/bridgeofficer - name = "Corpse - Staff Officer" - idtype = /obj/item/card/id/general - assignment = "Staff Officer" +/datum/equipment_preset/corpse/manager + name = "Corpse - Colony Division Manager" + assignment = "Colonial Division Manager" + rank = JOB_DIVISION_MANAGER + faction_group = FACTION_LIST_WY + paygrades = list(PAY_SHORT_WYC8 = JOB_PLAYTIME_TIER_0) access = list( + ACCESS_WY_GENERAL, + ACCESS_WY_COLONIAL, + ACCESS_WY_MEDICAL, + ACCESS_WY_SECURITY, + ACCESS_WY_ENGINEERING, + ACCESS_WY_FLIGHT, + ACCESS_WY_RESEARCH, + ACCESS_WY_EXEC, ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, ACCESS_CIVILIAN_ENGINEERING, @@ -414,23 +335,25 @@ ACCESS_CIVILIAN_COMMAND, ) -/datum/equipment_preset/corpse/bridgeofficer/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/centcom_officer(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) +/datum/equipment_preset/corpse/manager/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/ivy(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/bulletproof(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) //*****************************************************************************************************/ -/datum/equipment_preset/corpse/bridgeofficer/johnson - name = "Corpse - Mr. Johnson Telovin" - idtype = /obj/item/card/id/general - assignment = "Bridge Officer" - uses_special_name = TRUE - paygrade = "WYC2" + +/datum/equipment_preset/corpse/administrator + name = "Corpse - Colony Administrator" + assignment = "Colonial Administrator" + rank = JOB_DIRECTOR + faction_group = FACTION_LIST_WY + paygrades = list(PAY_SHORT_WYC10 = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/silver/cl access = list( ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, @@ -439,52 +362,40 @@ ACCESS_CIVILIAN_BRIG, ACCESS_CIVILIAN_MEDBAY, ACCESS_CIVILIAN_COMMAND, + ACCESS_WY_GENERAL, + ACCESS_WY_COLONIAL, ACCESS_WY_MEDICAL, - ACCESS_WY_ENGINEERING, ACCESS_WY_SECURITY, + ACCESS_WY_ENGINEERING, + ACCESS_WY_FLIGHT, + ACCESS_WY_RESEARCH, + ACCESS_WY_EXEC, + ACCESS_WY_PMC, + ACCESS_WY_PMC_TL, + ACCESS_WY_ARMORY, + ACCESS_WY_SECRETS, ACCESS_WY_LEADERSHIP, - ACCESS_WY_COLONIAL, - ACCESS_WY_GENERAL, + ACCESS_WY_SENIOR_LEAD, ) -/datum/equipment_preset/corpse/bridgeofficer/johnson/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/waiter(new_human), WEAR_BODY) - . = ..() - -/datum/equipment_preset/corpse/bridgeofficer/johnson/load_name(mob/living/carbon/human/new_human, randomise) - new_human.change_real_name(new_human, "Johnson Telovin") - -//*****************************************************************************************************/ - -/datum/equipment_preset/corpse/commander - name = "Corpse - Commanding Officer" - idtype = /obj/item/card/id/general - assignment = "Commanding Officer" - access = list( - ACCESS_CIVILIAN_PUBLIC, - ACCESS_CIVILIAN_LOGISTICS, - ACCESS_CIVILIAN_ENGINEERING, - ACCESS_CIVILIAN_RESEARCH, - ACCESS_CIVILIAN_BRIG, - ACCESS_CIVILIAN_MEDBAY, - ACCESS_CIVILIAN_COMMAND, - ) - -/datum/equipment_preset/corpse/commander/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/centcom_commander(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) +/datum/equipment_preset/corpse/administrator/load_gear(mob/living/carbon/human/new_human) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/ivy(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/bulletproof(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/eyepatch(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/cohiba(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/centhat(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/swat(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/swat(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/tool/lighter/zippo(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/tool/lighter/zippo/executive(new_human), WEAR_R_STORE) add_random_cl_survivor_loot(new_human) +/datum/equipment_preset/corpse/administrator/burst + name = "Corpse - Burst Colony Administrator" + xenovictim = TRUE + //*****************************************************************************************************/ /datum/equipment_preset/corpse/wysec @@ -505,52 +416,37 @@ ) /datum/equipment_preset/corpse/wysec/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/formal/servicedress(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/white_service(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) +//*****************************************************************************************************/ -/////Actually specific colonists +//Colonists /datum/equipment_preset/corpse/colonist name = "Corpse - Colonist" - assignment = JOB_COLONIST - xenovictim = FALSE - rank = JOB_COLONIST - faction = FACTION_COLONIST - access = list(ACCESS_CIVILIAN_PUBLIC) - idtype = /obj/item/card/id/lanyard /datum/equipment_preset/colonist/load_gear(mob/living/carbon/human/new_human) - + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) /datum/equipment_preset/corpse/colonist/burst name = "Corpse - Burst Colonist" xenovictim = TRUE +//*****************************************************************************************************/ + /datum/equipment_preset/corpse/colonist/random name = "Corpse - Colonist Random" - assignment = JOB_COLONIST - xenovictim = FALSE - rank = JOB_COLONIST - faction = FACTION_COLONIST - access = list(ACCESS_CIVILIAN_PUBLIC) - idtype = /obj/item/card/id/lanyard /datum/equipment_preset/corpse/colonist/random/load_gear(mob/living/carbon/human/new_human) var/random_surv_type = pick(SSmapping.configs[GROUND_MAP].survivor_types) @@ -561,14 +457,10 @@ name = "Corpse - Burst Colonist Random" xenovictim = TRUE +//*****************************************************************************************************/ + /datum/equipment_preset/corpse/colonist/kutjevo name = "Corpse - Colonist Kutjevo" - assignment = JOB_COLONIST - xenovictim = FALSE - rank = JOB_COLONIST - faction = FACTION_COLONIST - access = list(ACCESS_CIVILIAN_PUBLIC) - idtype = /obj/item/card/id/lanyard /datum/equipment_preset/corpse/colonist/kutjevo/load_gear(mob/living/carbon/human/new_human) @@ -578,18 +470,20 @@ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) /datum/equipment_preset/corpse/colonist/kutjevo/burst name = "Corpse - Burst Colonist Kutjevo" xenovictim = TRUE -//UA riot control dudes +//*****************************************************************************************************/ + +//UA Riot Control Officer + /datum/equipment_preset/corpse/ua_riot name = "Corpse - UA Officer" assignment = "United Americas Riot Officer" idtype = /obj/item/card/id/silver - xenovictim = FALSE access = list( ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, @@ -602,24 +496,23 @@ /datum/equipment_preset/corpse/ua_riot/load_gear(mob/living/carbon/human/new_human) var/random = rand(1,5) + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/ua_riot(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/ua_riot(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/riot_shield(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/weapon/classic_baton(new_human), WEAR_WAIST) switch(random) if(1) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/security, WEAR_EYES) - if(2) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + if(2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big(new_human), WEAR_EYES) if(3) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) if(4) @@ -632,18 +525,21 @@ name = "Corpse - Burst UA Officer" xenovictim = TRUE -//Colonial Supervisor Corpse +//*****************************************************************************************************/ + +//Colonial Supervisor + +/datum/equipment_preset/corpse/wy + flags = EQUIPMENT_PRESET_STUB /datum/equipment_preset/corpse/wy/manager name = "Corpse - Corporate Supervisor" - flags = EQUIPMENT_PRESET_EXTRA - paygrade = "WYC7" assignment = "Colony Supervisor" - role_comm_title = "Supervisor" + flags = EQUIPMENT_PRESET_EXTRA + paygrades = list(PAY_SHORT_WYC6 = JOB_PLAYTIME_TIER_0) rank = FACTION_WY idtype = /obj/item/card/id/silver/clearance_badge/manager faction_group = FACTION_LIST_WY - languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) access = list( ACCESS_WY_GENERAL, ACCESS_WY_COLONIAL, @@ -657,35 +553,33 @@ ) /datum/equipment_preset/corpse/wy/manager/load_gear(mob/living/carbon/human/new_human) - + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/manager(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/manager(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/manager(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/attachable/bayonet(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) add_random_cl_survivor_loot(new_human) - /datum/equipment_preset/corpse/wy/manager/burst name = "Corpse - Burst Corporate Supervisor" xenovictim = TRUE +//*****************************************************************************************************/ + //Faction Specific Corpses +//CLF + /datum/equipment_preset/corpse/clf name = "Corpse - Colonial Liberation Front Soldier" - assignment = "Colonial Liberation Front Soldier" - idtype = /obj/item/card/id/silver - xenovictim = FALSE + assignment = JOB_CLF + idtype = /obj/item/card/id/data + rank = JOB_CLF faction = FACTION_CLF /datum/equipment_preset/corpse/clf/New() @@ -715,12 +609,16 @@ name = "Corpse - Burst Colonial Liberation Front Soldier" xenovictim = TRUE -// UPP +//*****************************************************************************************************/ + +//UPP + /datum/equipment_preset/corpse/upp name = "Corpse - Union of Progressive Peoples Soldier" - assignment = "Union of Progressive Peoples Soldier" - idtype = /obj/item/card/id/silver - xenovictim = FALSE + assignment = JOB_UPP + idtype = /obj/item/card/id/dogtag + paygrades = list(PAY_SHORT_UE2 = JOB_PLAYTIME_TIER_0) + rank = JOB_UPP faction = FACTION_UPP /datum/equipment_preset/corpse/upp/New() @@ -728,18 +626,14 @@ access = get_access(ACCESS_LIST_EMERGENCY_RESPONSE) + get_access(ACCESS_LIST_COLONIAL_ALL) /datum/equipment_preset/corpse/upp/load_gear(mob/living/carbon/human/new_human) - - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) - //head - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/UPP, WEAR_HEAD) - //body var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/UPP, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) - //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) add_random_survivor_equipment(new_human) if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) @@ -749,7 +643,9 @@ name = "Corpse - Burst Union of Progressive Peoples Soldier" xenovictim = TRUE -// PMC +//*****************************************************************************************************/ + +//PMC /datum/equipment_preset/corpse/pmc name = "Corpse - Weyland-Yutani PMC (Standard)" @@ -758,10 +654,8 @@ faction = FACTION_PMC faction_group = FACTION_LIST_WY rank = JOB_PMC_STANDARD - paygrade = "PMC-OP" + paygrades = list(PAY_SHORT_PMC_OP = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/pmc - skills = /datum/skills/civilian/survivor/pmc - languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) access = list( ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS, @@ -795,21 +689,24 @@ name = "Corpse - Burst Weyland-Yutani PMC (Standard)" xenovictim = TRUE +//*****************************************************************************************************/ + +//Goon + /datum/equipment_preset/corpse/pmc/goon name = "Corpse - Weyland-Yutani Corporate (Goon)" languages = list(LANGUAGE_ENGLISH) assignment = JOB_WY_GOON rank = JOB_WY_GOON - paygrade = "WEY-GOON" - skills = /datum/skills/MP + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/corpse/pmc/goon/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/pmc/corporate, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) @@ -817,20 +714,24 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) +//*****************************************************************************************************/ + +//Lead Goon + /datum/equipment_preset/corpse/pmc/goon/lead name = "Corpse - Weyland-Yutani Corporate Security Lead (Goon Lead)" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_WY_GOON_LEAD rank = JOB_WY_GOON_LEAD - paygrade = "WEY-GOON-L" + paygrades = list(PAY_SHORT_CSPO = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/corpse/pmc/goon/lead/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/pmc/corporate/lead, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate/lead, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate/lead, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) @@ -838,23 +739,29 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70_near_empty, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) -// Freelancer +/datum/equipment_preset/corpse/pmc/goon/lead/burst + name = "Corpse - Burst Weyland-Yutani Corporate Security Lead (Goon Lead)" + xenovictim = TRUE + +//*****************************************************************************************************/ + +//Freelancer /datum/equipment_preset/corpse/freelancer - name = "Corpse - Freelancer Mercenary" - assignment = "Freelancer Mercenary" - idtype = /obj/item/card/id/silver - xenovictim = FALSE + name = "Corpse - Freelancer" + paygrades = list(PAY_SHORT_FL_S = JOB_PLAYTIME_TIER_0) + rank = FACTION_FREELANCER + idtype = /obj/item/card/id/data + faction = FACTION_FREELANCER /datum/equipment_preset/corpse/freelancer/New() . = ..() access = get_access(ACCESS_LIST_EMERGENCY_RESPONSE) + get_access(ACCESS_LIST_COLONIAL_ALL) /datum/equipment_preset/corpse/freelancer/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/dutch, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine, WEAR_WAIST) @@ -865,12 +772,83 @@ spawn_merc_helmet(new_human) /datum/equipment_preset/corpse/freelancer/burst - name = "Corpse - Burst Freelancer Mercenary" + name = "Corpse - Burst Freelancer" xenovictim = TRUE -// Fun Faction Corpse +//*****************************************************************************************************/ + +//Fun Faction Corpses + +//Pirates + +/datum/equipment_preset/corpse/realpirate + name = "Corpse - Pirate" + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ACCESS_ILLEGAL_PIRATE, + ) + +/datum/equipment_preset/corpse/realpirate/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/pirate(new_human), WEAR_BODY) + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/eyepatch(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/bandana(new_human), WEAR_HEAD) + +//*****************************************************************************************************/ + +/datum/equipment_preset/corpse/realpirate/ranged + name = "Corpse - Pirate Gunner" + +/datum/equipment_preset/corpse/realpirate/ranged/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/pirate(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/pirate(new_human), WEAR_HEAD) + . = ..() + +//*****************************************************************************************************/ + +//Russian(?) + +/datum/equipment_preset/corpse/russian + name = "Corpse - Russian" + access = list( + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + +/datum/equipment_preset/corpse/russian -// Dutch Dozen +/datum/equipment_preset/corpse/russian/load_gear(mob/living/carbon/human/new_human) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/veteran/soviet_uniform_01(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/soviet(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + if(prob(25)) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/bearpelt(new_human), WEAR_HEAD) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) + +//*****************************************************************************************************/ + +//Dutch Dozen /datum/equipment_preset/corpse/dutchrifle name = "Corpse - Dutch Dozen Rifleman" @@ -901,7 +879,9 @@ name = "Corpse - Burst Dutch Dozen Rifleman" xenovictim = TRUE -// Pizza Planet +//*****************************************************************************************************/ + +//Pizza Planet /datum/equipment_preset/corpse/pizza name = "Corpse - Pizza Deliverer" @@ -915,12 +895,9 @@ access = get_access(ACCESS_LIST_DELIVERY) /datum/equipment_preset/corpse/pizza/load_gear(mob/living/carbon/human/new_human) - + add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/pizza, WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - else - new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/red, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/red, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel, WEAR_BACK) @@ -940,7 +917,9 @@ name = "Corpse - Burst Pizza Deliverer" xenovictim = TRUE -// Gladiator +//*****************************************************************************************************/ + +//Gladiator /datum/equipment_preset/corpse/gladiator name = "Corpse - Gladiator" @@ -978,6 +957,7 @@ name = "Corpse - Burst Gladiator" xenovictim = TRUE +//*****************************************************************************************************/ //FORECON @@ -985,10 +965,10 @@ name = "Corpse - USCM Reconnaissance Spotter" assignment = "Reconnaissance Spotter" xenovictim = FALSE - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/dogtag role_comm_title = "FORECON" - faction_group = list(FACTION_USCM, FACTION_SURVIVOR) + faction_group = list(FACTION_MARINE, FACTION_SURVIVOR) access = list( ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_ENGINEERING, diff --git a/code/modules/gear_presets/dust_raider.dm b/code/modules/gear_presets/dust_raider.dm index d5747d70a6..f9e19e0e7a 100644 --- a/code/modules/gear_presets/dust_raider.dm +++ b/code/modules/gear_presets/dust_raider.dm @@ -10,7 +10,7 @@ var/datum/preferences/A = new() A.randomize_appearance(new_human) var/random_name - random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) new_human.change_real_name(new_human, random_name) new_human.name = new_human.real_name new_human.age = rand(21,45) @@ -24,7 +24,7 @@ access = list(ACCESS_MARINE_PREP) assignment = JOB_SQUAD_MARINE rank = JOB_SQUAD_MARINE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) role_comm_title = "RFN" skills = /datum/skills/pfc @@ -46,7 +46,7 @@ access = list(ACCESS_MARINE_PREP) assignment = JOB_SQUAD_LEADER rank = JOB_SQUAD_LEADER - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" skills = /datum/skills/SL @@ -55,7 +55,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/m41amk1(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/whiskey_supply_beacon(new_human), WEAR_IN_BACK) @@ -75,7 +75,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SMARTPREP) assignment = JOB_SQUAD_SMARTGUN rank = JOB_SQUAD_SMARTGUN - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "SG" skills = /datum/skills/smartgunner @@ -100,7 +100,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_ENGPREP, ACCESS_CIVILIAN_ENGINEERING) assignment = JOB_SQUAD_ENGI rank = JOB_SQUAD_ENGI - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "Eng" skills = /datum/skills/combat_engineer @@ -129,7 +129,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_MEDPREP, ACCESS_MARINE_MEDBAY) assignment = JOB_SQUAD_MEDIC rank = JOB_SQUAD_MEDIC - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "HM" skills = /datum/skills/combat_medic @@ -164,7 +164,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP) assignment = JOB_SQUAD_SPECIALIST rank = JOB_SQUAD_SPECIALIST - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "Spc" skills = /datum/skills/specialist diff --git a/code/modules/gear_presets/dutch.dm b/code/modules/gear_presets/dutch.dm index c83e8384f5..8a51fb9d59 100644 --- a/code/modules/gear_presets/dutch.dm +++ b/code/modules/gear_presets/dutch.dm @@ -2,7 +2,7 @@ /datum/equipment_preset/dutch name = JOB_DUTCH_RIFLEMAN - paygrade = "DTC" + paygrades = list(PAY_SHORT_DTC = JOB_PLAYTIME_TIER_0) assignment = JOB_DUTCH_RIFLEMAN flags = EQUIPMENT_PRESET_EXTRA faction = FACTION_DUTCH @@ -19,10 +19,10 @@ human.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male_dutch)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_male_dutch)] [pick(GLOB.last_names)]" new_human.f_style = "5 O'clock Shadow" else - random_name = "[pick(first_names_female_dutch)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_female_dutch)] [pick(GLOB.last_names)]" new_human.change_real_name(new_human, random_name) new_human.age = rand(25,35) @@ -83,7 +83,7 @@ /datum/equipment_preset/dutch/minigun name = JOB_DUTCH_MINIGUNNER - paygrade = "DTCMG" + paygrades = list(PAY_SHORT_DTCMG = JOB_PLAYTIME_TIER_0) assignment = JOB_DUTCH_MINIGUNNER flags = EQUIPMENT_PRESET_EXTRA @@ -116,7 +116,7 @@ /datum/equipment_preset/dutch/flamer name = JOB_DUTCH_FLAMETHROWER - paygrade = "DTCF" + paygrades = list(PAY_SHORT_DTCF = JOB_PLAYTIME_TIER_0) assignment = JOB_DUTCH_FLAMETHROWER flags = EQUIPMENT_PRESET_EXTRA @@ -150,7 +150,7 @@ /datum/equipment_preset/dutch/medic name = JOB_DUTCH_MEDIC - paygrade = "DTCM" + paygrades = list(PAY_SHORT_DTCM = JOB_PLAYTIME_TIER_0) assignment = JOB_DUTCH_MEDIC flags = EQUIPMENT_PRESET_EXTRA @@ -193,7 +193,7 @@ /datum/equipment_preset/dutch/arnie name = "Dutch's Dozen - Arnold" - paygrade = "ARN" + paygrades = list(PAY_SHORT_DTCA = JOB_PLAYTIME_TIER_0) assignment = JOB_DUTCH_ARNOLD flags = EQUIPMENT_PRESET_EXTRA diff --git a/code/modules/gear_presets/fun.dm b/code/modules/gear_presets/fun.dm index 687fca47f7..b099237f6e 100644 --- a/code/modules/gear_presets/fun.dm +++ b/code/modules/gear_presets/fun.dm @@ -82,7 +82,7 @@ idtype = /obj/item/card/id/gold assignment = "Shrapnelsworn" rank = "Brother of the Order" - paygrade = "Ser" + paygrades = list("Ser" = JOB_PLAYTIME_TIER_0) role_comm_title = "OHEFA" skills = /datum/skills/specialist @@ -240,7 +240,7 @@ /datum/equipment_preset/fun/santa name = "Fun - Santa" - paygrade = "C" + paygrades = list(PAY_SHORT_CDNM = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA skills = /datum/skills/everything faction = FACTION_MARINE @@ -289,6 +289,7 @@ /datum/equipment_preset/upp/ivan name = "Fun - Ivan" flags = EQUIPMENT_PRESET_EXTRA + paygrades = list(PAY_SHORT_UE6 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/everything assignment = "UPP Armsmaster" rank = "UPP Armsmaster" @@ -327,7 +328,7 @@ //head new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ivanberet, WEAR_HEAD) //limb - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/ivan, WEAR_WAIST) @@ -338,7 +339,7 @@ /datum/equipment_preset/fun/van_bandolier name = "Fun - Big Game Hunter" - paygrade = "CCMO" + paygrades = list(PAY_SHORT_CCMO = JOB_PLAYTIME_TIER_0) uses_special_name = TRUE flags = EQUIPMENT_PRESET_EXTRA skills = /datum/skills/everything @@ -433,14 +434,14 @@ new_human.age = rand(1, 40) /datum/equipment_preset/fun/monkey/proc/get_random_name(mob/living/carbon/human/new_human) - return pick(monkey_names) + return pick(GLOB.monkey_names) /datum/equipment_preset/fun/monkey/marine name = "Fun - Monkey Marine" assignment = "Monkey Marine" rank = "Monkey Marine" - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/fun/monkey/marine/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) @@ -457,10 +458,10 @@ assignment = "Monkey Soldier" rank = "Monkey Soldier" - paygrade = "UE1" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/fun/monkey/soldier/get_random_name(mob/living/carbon/human/new_human) - return new_human.gender == MALE ? pick(first_names_male_upp) : pick(first_names_female_upp) + return new_human.gender == MALE ? pick(GLOB.first_names_male_upp) : pick(GLOB.first_names_female_upp) /datum/equipment_preset/fun/monkey/soldier/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY) diff --git a/code/modules/gear_presets/other.dm b/code/modules/gear_presets/other.dm index 0308c8d9e3..9b9b89c3aa 100644 --- a/code/modules/gear_presets/other.dm +++ b/code/modules/gear_presets/other.dm @@ -46,10 +46,10 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male_colonist)] [pick(last_names_colonist)]" + random_name = "[pick(GLOB.first_names_male_colonist)] [pick(GLOB.last_names_colonist)]" new_human.f_style = "5 O'clock Shadow" else - random_name = "[pick(first_names_female_colonist)] [pick(last_names_colonist)]" + random_name = "[pick(GLOB.first_names_female_colonist)] [pick(GLOB.last_names_colonist)]" new_human.change_real_name(new_human, random_name) new_human.age = rand(20,45) new_human.r_hair = 25 @@ -60,7 +60,7 @@ /datum/equipment_preset/other/freelancer/standard name = "Freelancer (Standard)" - paygrade = "Freelancer Standard" + paygrades = list(PAY_SHORT_FL_S = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA skills = /datum/skills/freelancer @@ -69,7 +69,7 @@ //generic clothing new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) spawn_merc_helmet(new_human) //storage and specific stuff, they all get an ERT medpouch. @@ -105,7 +105,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) - spawn_weapon(/obj/item/weapon/gun/shotgun/type23, pick(shotgun_handfuls_8g), new_human, 0, 14) //shotgunner mini-spec + spawn_weapon(/obj/item/weapon/gun/shotgun/type23, pick(GLOB.shotgun_handfuls_8g), new_human, 0, 14) //shotgunner mini-spec new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/stick, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/stick, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/stick, WEAR_IN_BACK) @@ -132,7 +132,7 @@ /datum/equipment_preset/other/freelancer/medic name = "Freelancer (Medic)" - paygrade = "Freelancer Medic" + paygrades = list(PAY_SHORT_FL_M = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA assignment = "Freelancer Medic" skills = /datum/skills/freelancer/combat_medic @@ -149,7 +149,7 @@ new_human.equip_to_slot_or_del(FREELANCER, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) spawn_merc_helmet(new_human) @@ -203,7 +203,7 @@ /datum/equipment_preset/other/freelancer/leader name = "Freelancer (Leader)" - paygrade = "Freelancer Leader" + paygrades = list(PAY_SHORT_FL_WL = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA assignment = "Freelancer Warlord" languages = list(LANGUAGE_ENGLISH, LANGUAGE_RUSSIAN, LANGUAGE_CHINESE, LANGUAGE_JAPANESE) @@ -216,7 +216,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/freelancer/beret, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) @@ -255,10 +255,10 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male_colonist)] [pick(last_names_colonist)]" + random_name = "[pick(GLOB.first_names_male_colonist)] [pick(GLOB.last_names_colonist)]" new_human.f_style = "5 O'clock Shadow" else - random_name = "[pick(first_names_female_colonist)] [pick(last_names_colonist)]" + random_name = "[pick(GLOB.first_names_female_colonist)] [pick(GLOB.last_names_colonist)]" new_human.change_real_name(new_human, random_name) new_human.age = rand(20,45) new_human.r_hair = rand(15,35) @@ -269,7 +269,7 @@ /datum/equipment_preset/other/elite_merc/standard name = "Elite Mercenary (Standard Miner)" - paygrade = "Elite Freelancer Standard" + paygrades = list(PAY_SHORT_EFL_S = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/centcom @@ -306,7 +306,7 @@ /datum/equipment_preset/other/elite_merc/heavy name = "Elite Mercenary (Heavy)" - paygrade = "Elite Freelancer Heavy" + paygrades = list(PAY_SHORT_EFL_H = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/centcom @@ -346,7 +346,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/other/elite_merc/engineer name = "Elite Mercenary (Engineer)" - paygrade = "Elite Freelancer Engineer" + paygrades = list(PAY_SHORT_EFL_E = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/data @@ -400,7 +400,7 @@ /datum/equipment_preset/other/elite_merc/medic name = "Elite Mercenary (Medic)" - paygrade = "Elite Freelancer Medic" + paygrades = list(PAY_SHORT_EFL_M = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/centcom @@ -446,7 +446,7 @@ /datum/equipment_preset/other/elite_merc/leader name = "Elite Mercenary (Leader)" - paygrade = "Elite Freelancer Leader" + paygrades = list(PAY_SHORT_EFL_TL = JOB_PLAYTIME_TIER_0) flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/centcom @@ -504,29 +504,6 @@ new_human.equip_if_possible(new /obj/item/clothing/glasses/sunglasses, WEAR_EYES) new_human.equip_if_possible(new /obj/item/clipboard, WEAR_WAIST) -//*****************************************************************************************************/ - -/datum/equipment_preset/other/compression_suit - name = "Mk50 Compression Suit" - flags = EQUIPMENT_PRESET_EXTRA - faction = FACTION_PMC - skills = /datum/skills/pfc - idtype = /obj/item/card/id/data - -/datum/equipment_preset/other/compression_suit/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/magboots, WEAR_FEET) - - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist, WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/space/compression, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/compression, WEAR_HEAD) - var /obj/item/tank/jetpack/J = new /obj/item/tank/jetpack/oxygen(new_human) - new_human.equip_to_slot_or_del(J, WEAR_BACK) - J.toggle() - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/breath, WEAR_FACE) - J.Topic(null, list("stat" = 1)) - spawn_merc_weapon(new_human) - //*****************************************************************************************************/ @@ -551,9 +528,9 @@ A.randomize_appearance(new_human) var/random_name if(new_human.gender == MALE) - random_name = "[pick(first_names_male)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_male)] [pick(GLOB.last_names)]" else - random_name = "[pick(first_names_female)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_female)] [pick(GLOB.last_names)]" new_human.change_real_name(new_human, random_name) new_human.age = rand(17,45) @@ -641,7 +618,7 @@ new_human.gender = pick(MALE, FEMALE) var/datum/preferences/A = new A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) new_human.change_real_name(new_human, random_name) new_human.age = rand(21,45) @@ -681,7 +658,7 @@ new_human.gender = pick(MALE, FEMALE) var/datum/preferences/A = new A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male_gladiator : first_names_female_gladiator)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male_gladiator : GLOB.first_names_female_gladiator)) new_human.change_real_name(new_human, random_name) new_human.age = rand(21,45) @@ -774,7 +751,7 @@ /datum/equipment_preset/other/xeno_cultist/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chaplain/cultist(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) @@ -806,7 +783,7 @@ var/list/huds_to_add = list(MOB_HUD_XENO_INFECTION, MOB_HUD_XENO_STATUS) for(var/hud_to_add in huds_to_add) - var/datum/mob_hud/hud = huds[hud_to_add] + var/datum/mob_hud/hud = GLOB.huds[hud_to_add] hud.add_hud_to(new_human, new_human) var/list/actions_to_add = subtypesof(/datum/action/human_action/activable/cult) @@ -850,18 +827,18 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = "DUMMY" rank = "DUMMY" + paygrades = list(PAY_SHORT_CCMO) idtype = /obj/item/card/id/dogtag uses_special_name = TRUE /datum/equipment_preset/other/professor_dummy/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = pick(MALE, FEMALE) - new_human.real_name = "Professor DUMMY the Medical Mannequin" + new_human.real_name = "Alex the Medical Mannequin" new_human.name = new_human.real_name new_human.age = rand(1,5) var/datum/preferences/A = new A.randomize_appearance(new_human) - /datum/equipment_preset/other/professor_dummy/load_race(mob/living/carbon/human/new_human) . = ..() //Can't hug the dummy! Otherwise it's basically human... @@ -870,7 +847,7 @@ /datum/equipment_preset/other/professor_dummy/load_gear(mob/living/carbon/human/new_human) var/obj/item/device/professor_dummy_tablet/tablet = new /obj/item/device/professor_dummy_tablet(new_human) - tablet.link_mob(new_human) + tablet.link_dummy(new_human) new_human.equip_to_slot_or_del(tablet, WEAR_R_HAND) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical, WEAR_BODY) @@ -882,9 +859,9 @@ flags = EQUIPMENT_PRESET_EXTRA idtype = /obj/item/card/id/dogtag - assignment = JOB_CREWMAN - rank = JOB_CREWMAN - paygrade = "E4" + assignment = JOB_TANK_CREW + rank = JOB_TANK_CREW + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "CRMN" minimum_age = 30 skills = /datum/skills/tank_crew @@ -924,7 +901,7 @@ idtype = /obj/item/card/id/dogtag assignment = "Crewman Trainee" rank = "Crewman Trainee" - paygrade = "E3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "CRTR" minimum_age = 25 skills = /datum/skills/tank_crew @@ -952,3 +929,42 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tank(new_human), WEAR_R_STORE) //*****************************************************************************************************/ + + +/datum/equipment_preset/tutorial + name = "Tutorial" + faction = FACTION_MARINE + flags = EQUIPMENT_PRESET_EXTRA + faction_group = FACTION_LIST_MARINE + languages = list(LANGUAGE_ENGLISH) + idtype = /obj/item/card/id + /// If the player should start out underfed + var/underfed = TRUE + +/datum/equipment_preset/tutorial/load_status(mob/living/carbon/human/new_human) + if(underfed) + new_human.nutrition = NUTRITION_LOW + +/datum/equipment_preset/tutorial/fed + name = "Tutorial (Fed)" + underfed = FALSE + + +/datum/equipment_preset/uscm/tutorial_rifleman + name = "Tutorial Rifleman" + flags = EQUIPMENT_PRESET_EXTRA + assignment = JOB_SQUAD_MARINE + rank = JOB_SQUAD_MARINE + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0) + role_comm_title = "RFN" + skills = /datum/skills/pfc + minimap_icon = "private" + +/datum/equipment_preset/uscm/tutorial_rifleman/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + diff --git a/code/modules/gear_presets/pmc.dm b/code/modules/gear_presets/pmc.dm index 1f4a9d40df..3ce170aa2c 100644 --- a/code/modules/gear_presets/pmc.dm +++ b/code/modules/gear_presets/pmc.dm @@ -26,17 +26,17 @@ if(prob(10)) first_name = "[capitalize(randomly_generate_japanese_word(rand(2, 3)))]" else - first_name = "[pick(first_names_male_pmc)]" + first_name = "[pick(GLOB.first_names_male_pmc)]" new_human.f_style = "5 O'clock Shadow" else if(prob(10)) first_name = "[capitalize(randomly_generate_japanese_word(rand(2, 3)))]" else - first_name = "[pick(first_names_female_pmc)]" + first_name = "[pick(GLOB.first_names_female_pmc)]" if(prob(25)) last_name = "[capitalize(randomly_generate_japanese_word(rand(2, 4)))]" else - last_name = "[pick(last_names_pmc)]" + last_name = "[pick(GLOB.last_names_pmc)]" random_name = "[first_name] [last_name]" new_human.change_real_name(new_human, random_name) new_human.age = rand(25,35) @@ -61,7 +61,7 @@ assignment = JOB_PMC_STANDARD rank = JOB_PMC_STANDARD - paygrade = "PMC-OP" + paygrades = list(PAY_SHORT_PMC_OP = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pmc /datum/equipment_preset/pmc/pmc_standard/load_gear(mob/living/carbon/human/new_human) @@ -132,7 +132,7 @@ list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Knife Rig (Full)", 0, /obj/item/storage/belt/knifepouch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -202,7 +202,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_DETAINER rank = JOB_PMC_DETAINER - paygrade = "PMC-EN" + paygrades = list(PAY_SHORT_PMC_EN = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pmc /datum/equipment_preset/pmc/pmc_detainer/load_gear(mob/living/carbon/human/new_human) @@ -260,7 +260,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Knife Rig (Full)", 0, /obj/item/storage/belt/knifepouch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -330,7 +330,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_MEDIC rank = JOB_PMC_MEDIC - paygrade = "PMC-MS" + paygrades = list(PAY_SHORT_PMC_MS = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pmc/medic headset_type = /obj/item/device/radio/headset/distress/pmc/medic @@ -393,7 +393,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -413,7 +413,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), @@ -505,7 +506,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_INVESTIGATOR rank = JOB_PMC_INVESTIGATOR - paygrade = "PMC-MS" //Fixed from PMC2 to PMC-MS to display properly. + paygrades = list(PAY_SHORT_PMC_MS = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pmc/medic/chem headset_type = /obj/item/device/radio/headset/distress/pmc/medic @@ -571,7 +572,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 General Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -591,7 +592,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), @@ -684,7 +686,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_LEADER rank = JOB_PMC_LEADER - paygrade = "PMC-TL" + paygrades = list(PAY_SHORT_PMC_TL = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" skills = /datum/skills/pmc/SL headset_type = /obj/item/device/radio/headset/distress/pmc/command @@ -754,7 +756,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag", 0, /obj/item/storage/belt/medical/lifesaver, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Medical Storage Rig", 0, /obj/item/storage/belt/medical, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -840,7 +842,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_LEAD_INVEST rank = JOB_PMC_LEAD_INVEST - paygrade = "PMC-TL" + paygrades = list(PAY_SHORT_PMC_TL = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" skills = /datum/skills/pmc/SL/chem headset_type = /obj/item/device/radio/headset/distress/pmc/command @@ -897,7 +899,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag", 0, /obj/item/storage/belt/medical/lifesaver, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Medical Storage Rig", 0, /obj/item/storage/belt/medical, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -983,7 +985,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_GUNNER rank = JOB_PMC_GUNNER - paygrade = "PMC-SS" + paygrades = list(PAY_SHORT_PMC_SS = JOB_PLAYTIME_TIER_0) role_comm_title = "SG" skills = /datum/skills/pmc/smartgunner @@ -1087,7 +1089,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_SNIPER rank = JOB_PMC_SNIPER - paygrade = "PMC-WS" + paygrades = list(PAY_SHORT_PMC_WS = JOB_PLAYTIME_TIER_0) role_comm_title = "Spc" skills = /datum/skills/pmc/specialist headset_type = /obj/item/device/radio/headset/distress/pmc/cct @@ -1142,7 +1144,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -1208,7 +1210,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_CREWMAN rank = JOB_PMC_CREWMAN - paygrade = "PMC-VS" + paygrades = list(PAY_SHORT_PMC_VS = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pmc/tank_crew headset_type = /obj/item/device/radio/headset/distress/pmc/cct @@ -1249,7 +1251,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -1336,7 +1338,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_XENO_HANDLER rank = JOB_PMC_XENO_HANDLER - paygrade = "PMC-XS" + paygrades = list(PAY_SHORT_PMC_XS = JOB_PLAYTIME_TIER_0) role_comm_title = "XH" skills = /datum/skills/pmc/xeno_handler languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_XENOMORPH) @@ -1397,7 +1399,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -1482,8 +1484,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_DOCTOR rank = JOB_PMC_DOCTOR - paygrade = "PMC-DOC" - role_comm_title = "TRI" + paygrades = list(PAY_SHORT_PMC_DOC = JOB_PLAYTIME_TIER_0) + role_comm_title = "SGN" skills = /datum/skills/pmc/doctor headset_type = /obj/item/device/radio/headset/distress/pmc/medic @@ -1543,7 +1545,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Lifesaver Bag (Full)", 0, /obj/item/storage/belt/medical/lifesaver/full/dutch, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 Medical Storage Rig (Full)", 0, /obj/item/storage/belt/medical/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M40 Grenade Rig", 0, /obj/item/storage/belt/grenade, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -1563,7 +1565,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), @@ -1656,7 +1659,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_ENGINEER rank = JOB_PMC_ENGINEER - paygrade = "PMC-TECH" + paygrades = list(PAY_SHORT_PMC_TEC = JOB_PLAYTIME_TIER_0) role_comm_title = "TEC" skills = /datum/skills/pmc/engineer headset_type = /obj/item/device/radio/headset/distress/pmc/cct @@ -1684,8 +1687,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/shovel/etool/folded, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/mini, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/mini, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/wy/mini, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/wy/mini, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full, WEAR_R_STORE) @@ -1712,7 +1715,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("M276 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 General Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M39 Holster Rig", 0, /obj/item/storage/large_holster/m39, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), - list("M276 M44 Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Revolver Holster Rig", 0, /obj/item/storage/belt/gun/m44, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 M82F Holster Rig", 0, /obj/item/storage/belt/gun/flaregun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Shotgun Shell Loading Rig", 0, /obj/item/storage/belt/shotgun, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("M276 Mortar Operator Belt", 0, /obj/item/storage/belt/gun/mortarbelt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), @@ -1750,9 +1753,9 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Essential Engineer Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("HANDHELD DEFENSE (CHOOSE 1)", 0, null, null, null), - list("JIMA Planted Flag", 0, /obj/item/defenses/handheld/planted_flag, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), - list("UA 42-F Sentry Flamer", 0, /obj/item/defenses/handheld/sentry/flamer, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), - list("UA 571-C Sentry Gun", 0, /obj/item/defenses/handheld/sentry, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("WY Planted Flag", 0, /obj/item/defenses/handheld/planted_flag/wy, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("WY 406-FE2 Smart Sentry", 0, /obj/item/defenses/handheld/sentry/flamer/wy, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("WY 202-GMA1 Smart Sentry", 0, /obj/item/defenses/handheld/sentry/wy, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), list("ENGINEERING SUPPLIES", 0, null, null, null), list("Airlock Circuit Board", 2, /obj/item/circuitboard/airlock, null, VENDOR_ITEM_REGULAR), @@ -1804,7 +1807,7 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), assignment = JOB_PMC_DIRECTOR rank = JOB_PMC_DIRECTOR - paygrade = "PMC-DIR" + paygrades = list(PAY_SHORT_PMC_DIR = JOB_PLAYTIME_TIER_0) role_comm_title = "DIR" skills = /datum/skills/pmc/director headset_type = /obj/item/device/radio/headset/distress/pmc/command/director @@ -1834,17 +1837,18 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), //*****************************************************************************************************/ /datum/equipment_preset/pmc/synth - name = "Weyland-Yutani PMC (Support Synthetic)" - flags = EQUIPMENT_PRESET_EXTRA + name = "Weyland-Yutani PMC (Support Synthetic)" + flags = EQUIPMENT_PRESET_EXTRA - languages = ALL_SYNTH_LANGUAGES + languages = ALL_SYNTH_LANGUAGES - skills = /datum/skills/synthetic - idtype = /obj/item/card/id/pmc - assignment = JOB_PMC_SYNTH - rank = JOB_PMC_SYNTH - role_comm_title = "WY Syn" - headset_type = /obj/item/device/radio/headset/distress/pmc/command + skills = /datum/skills/synthetic + idtype = /obj/item/card/id/pmc + assignment = JOB_PMC_SYNTH + rank = JOB_PMC_SYNTH + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) + role_comm_title = "WY Syn" + headset_type = /obj/item/device/radio/headset/distress/pmc/command /datum/equipment_preset/pmc/synth/load_name(mob/living/carbon/human/new_human, randomise) @@ -1855,9 +1859,9 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), if(prob(10)) random_name = "[capitalize(randomly_generate_japanese_word(rand(2, 3)))]" else if(new_human.gender == MALE) - random_name = "[pick(first_names_male_pmc)]" + random_name = "[pick(GLOB.first_names_male_pmc)]" else - random_name = "[pick(first_names_female_pmc)]" + random_name = "[pick(GLOB.first_names_female_pmc)]" if(new_human.gender == MALE) new_human.f_style = "5 O'clock Shadow" @@ -1965,7 +1969,8 @@ list("POUCHES (CHOOSE 2)", 0, null, null, null), list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (Bicaridine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/bicaridine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (Kelotane)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/kelotane, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Pressurized Reagent Canister Pouch (Revival Mix)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pressurized Reagent Canister Pouch (Revival Mix - Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pressurized Reagent Canister Pouch (Revival Mix - Peridaxon)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), list("Pressurized Reagent Canister Pouch (Tricordrazine)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/tricordrazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (Oxycodone)", 0, /obj/item/storage/pouch/pressurized_reagent_canister/oxycodone, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Pressurized Reagent Canister Pouch (EMPTY)", 0, /obj/item/storage/pouch/pressurized_reagent_canister, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), diff --git a/code/modules/gear_presets/royal_marines.dm b/code/modules/gear_presets/royal_marines.dm index c990f19fdb..2e218e5292 100644 --- a/code/modules/gear_presets/royal_marines.dm +++ b/code/modules/gear_presets/royal_marines.dm @@ -1,7 +1,7 @@ /datum/equipment_preset/twe name = "Three World Empire" faction = FACTION_TWE - faction_group = list(FACTION_TWE, FACTION_USCM) + faction_group = list(FACTION_TWE, FACTION_MARINE) languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) /datum/equipment_preset/twe/royal_marine/load_name(mob/living/carbon/human/new_human, randomise) @@ -24,11 +24,11 @@ new_human.b_eyes = colors[eye_color][3] idtype = /obj/item/card/id/dogtag if(new_human.gender == MALE) - random_name = "[pick(first_names_male)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_male)] [pick(GLOB.last_names)]" new_human.h_style = pick("Crewcut", "Shaved Head", "Buzzcut", "Undercut", "Side Undercut", "Pvt. Joker", "Marine Fade", "Low Fade", "Medium Fade", "High Fade", "No Fade", "Coffee House Cut", "Flat Top",) new_human.f_style = pick("5 O'clock Shadow", "Shaved", "Full Beard", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache", "7 O'clock Shadow", "7 O'clock Moustache",) else - random_name = "[pick(first_names_female)] [pick(last_names)]" + random_name = "[pick(GLOB.first_names_female)] [pick(GLOB.last_names)]" new_human.h_style = pick("Ponytail 1", "Ponytail 2", "Ponytail 3", "Ponytail 4", "Pvt. Redding", "Pvt. Clarison", "Cpl. Dietrich", "Pvt. Vasquez", "Marine Bun", "Marine Bun 2", "Marine Flat Top",) new_human.change_real_name(new_human, random_name) new_human.age = rand(20,45) @@ -59,7 +59,7 @@ /datum/equipment_preset/twe/royal_marine/standard name = "TWE Royal Marine Commando (Rifleman)" - paygrade = "RMC E1" + paygrades = list(PAY_SHORT_RMC1 = JOB_PLAYTIME_TIER_0) role_comm_title = "RMC" flags = EQUIPMENT_PRESET_EXTRA assignment = "Royal Marines Rifleman" @@ -110,7 +110,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/twe/royal_marine/spec - paygrade = "RMC E2" + paygrades = list(PAY_SHORT_RMC2 = JOB_PLAYTIME_TIER_0) role_comm_title = "RMC SPC" flags = EQUIPMENT_PRESET_EXTRA skills = /datum/skills/rmc/specialist @@ -243,7 +243,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/twe/royal_marine/team_leader name = "TWE Royal Marine Commando (Teamleader)" - paygrade = "RMC E4" + paygrades = list(PAY_SHORT_RMC4 = JOB_PLAYTIME_TIER_0) role_comm_title = "RMC TL" flags = EQUIPMENT_PRESET_EXTRA assignment = "Royal Marines Team Leader" @@ -292,7 +292,7 @@ /datum/equipment_preset/twe/royal_marine/lieuteant //they better say it Lef-tenant or they should be banned for LRP. More importantly this guy doesn't spawn in the ERT name = "TWE Royal Marine Commando (Officer)" - paygrade = "RMC O1" + paygrades = list(PAY_SHORT_RNO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "RMC LT" flags = EQUIPMENT_PRESET_EXTRA assignment = "Royal Marines Team Commander" diff --git a/code/modules/gear_presets/survivors/corsat/preset_corsat.dm b/code/modules/gear_presets/survivors/corsat/preset_corsat.dm index 3b0e275648..9583c73a92 100644 --- a/code/modules/gear_presets/survivors/corsat/preset_corsat.dm +++ b/code/modules/gear_presets/survivors/corsat/preset_corsat.dm @@ -4,7 +4,7 @@ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) /datum/equipment_preset/survivor/security/corsat/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/formal/servicedress(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/white_service(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) @@ -35,11 +35,11 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) ..() -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/corsat +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/corsat name = "Survivor - Interstellar Commerce Commission Liaison CORSAT" assignment = "Interstellar Commerce Commission Corporate Liaison" -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/corsat/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/corsat/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) diff --git a/code/modules/gear_presets/survivors/fiorina_sciannex/preset_fiorina_sciannex.dm b/code/modules/gear_presets/survivors/fiorina_sciannex/preset_fiorina_sciannex.dm index f0d8120264..873ade0aef 100644 --- a/code/modules/gear_presets/survivors/fiorina_sciannex/preset_fiorina_sciannex.dm +++ b/code/modules/gear_presets/survivors/fiorina_sciannex/preset_fiorina_sciannex.dm @@ -1,63 +1,64 @@ -/datum/equipment_preset/survivor/scientist/florina - name = "Survivor - Florina Researcher" - assignment = "Florina Researcher" +/datum/equipment_preset/survivor/scientist/fiorina + name = "Survivor - Fiorina Researcher" + assignment = "Fiorina Researcher" -/datum/equipment_preset/survivor/scientist/florina/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/purple(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/purple(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/science(new_human), WEAR_JACKET) +/datum/equipment_preset/survivor/scientist/fiorina/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/pink(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/leader(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/chem(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/tox(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) ..() -/datum/equipment_preset/survivor/doctor/florina - name = "Survivor - Florina Doctor" - assignment = "Florina Doctor" +/datum/equipment_preset/survivor/doctor/fiorina + name = "Survivor - Fiorina Doctor" + assignment = "Fiorina Doctor" -/datum/equipment_preset/survivor/doctor/florina/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical(new_human), WEAR_BODY) +/datum/equipment_preset/survivor/doctor/fiorina/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/lightblue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) ..() -/datum/equipment_preset/survivor/security/florina - name = "Survivor - Florina Prison Guard" - assignment = "Florina Prison Guard" +/datum/equipment_preset/survivor/security/fiorina + name = "Survivor - Fiorina Prison Guard" + assignment = "Fiorina Prison Guard" -/datum/equipment_preset/survivor/security/florina/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) +/datum/equipment_preset/survivor/security/fiorina/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/sec/corp(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) ..() -/datum/equipment_preset/survivor/colonial_marshal/florina +/datum/equipment_preset/survivor/colonial_marshal/fiorina name = "Survivor - United Americas Riot Officer" assignment = "United Americas Riot Officer" -/datum/equipment_preset/survivor/colonial_marshal/florina/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/survivor/colonial_marshal/fiorina/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/ua_riot(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/ua_riot(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/riot_shield(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) ..() -/datum/equipment_preset/survivor/engineer/florina - name = "Survivor - Florina Engineer" - assignment = "Florina Engineer" +/datum/equipment_preset/survivor/engineer/fiorina + name = "Survivor - Fiorina Engineer" + assignment = "Fiorina Engineer" -/datum/equipment_preset/survivor/engineer/florina/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/color/white(new_human), WEAR_BODY) +/datum/equipment_preset/survivor/engineer/fiorina/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/khaki(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) diff --git a/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm b/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm new file mode 100644 index 0000000000..22b1ef5853 --- /dev/null +++ b/code/modules/gear_presets/survivors/fiorina_sciannex/riot_in_progress_insert_fiorina_nightmare.dm @@ -0,0 +1,279 @@ +// loadouts for riot_in_progress.dmm nightmare, thematic survivor preset. + +/datum/equipment_preset/survivor/cmb + name = "Survivor - Colonial Marshal" + faction = FACTION_MARSHAL + faction_group = list(FACTION_MARSHAL, FACTION_MARINE, FACTION_SURVIVOR) + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + var/human_versus_human = FALSE + access = list( + ACCESS_LIST_UA, + ) + +//*************************************************CMB****************************************************/ + +/datum/equipment_preset/survivor/cmb/standard + name = "Survivor - Colonial Marshal Deputy(Riot Response)" + paygrades = list(PAY_SHORT_CMBD = JOB_PLAYTIME_TIER_0) + role_comm_title = "CMB DEP" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "CMB Deputy" + rank = JOB_CMB + skills = /datum/skills/cmb + +/datum/equipment_preset/survivor/cmb/standard/load_gear(mob/living/carbon/human/new_human) + + var/choice = rand(1,10) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette, WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/holdout, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/m15/rubber, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/holdout, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/camera, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder, WEAR_IN_BACK) + + switch(choice) + if(1 to 6) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + if(7 to 8) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge/rubber, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/buckshot, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + if(9 to 10) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/mp5, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector, WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/mp5, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/mp5, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/mp5, WEAR_IN_R_STORE) + +// cmb synth (of note /datum/equipment_preset/synth/survivor/cmb_synth also exists) +/datum/equipment_preset/synth/survivor/cmb + flags = EQUIPMENT_PRESET_STUB + +/datum/equipment_preset/synth/survivor/cmb/synth + name = "Survivor - Synthetic - CMB Investigative Synthetic(Riot Response)" + paygrades = list(PAY_SHORT_CMBS = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/deputy + role_comm_title = "CMB Syn" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "CMB Investigative Synthetic" + rank = JOB_CMB_SYN + languages = ALL_SYNTH_LANGUAGES + skills = /datum/skills/synthetic/cmb + +/datum/equipment_preset/synth/survivor/cmb/synth/load_race(mob/living/carbon/human/new_human) + new_human.set_species(SYNTH_COLONY) + +/datum/equipment_preset/synth/survivor/cmb/synth/load_gear(mob/living/carbon/human/new_human) + //backpack + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/security, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/spearhead, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/autopsy_scanner, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge/rubber, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/camera, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder, WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/pen, WEAR_R_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB, WEAR_HEAD) + //uniform + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/candy, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/pill_bottle/imidazoline, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) + //belt + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/CMB/synth, WEAR_WAIST) + //holding + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + //pouches + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/synth/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank, WEAR_IN_R_STORE) + +//************************************************UA RIOT POLICE****************************************************/ + +/datum/equipment_preset/survivor/cmb/ua + name = "Survivor - United Americas Riot Officer(Riot Response)" + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) + role_comm_title = "UA RCP" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "United Americas Police Officer" + skills = /datum/skills/civilian/survivor/marshal + idtype = /obj/item/card/id/silver + +/datum/equipment_preset/survivor/cmb/ua/load_gear(mob/living/carbon/human/new_human) + + var/choice = rand(1,10) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/ua_riot, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/ua_riot, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/riot_shield, WEAR_IN_HELMET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full, WEAR_L_STORE) + + switch(choice) + if(1 to 6) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/b92fs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/b92fs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/b92fs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m16, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/classic_baton, WEAR_R_HAND) + if(7) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/combat/riot, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/handful/shotgun/beanbag, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/classic_baton, WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/weapon/shield/riot, WEAR_L_HAND) + if(8) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m4a3, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/rubber, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/launcher/grenade/m81/riot, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/slug/baton, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/slug/baton, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/slug/baton, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/slug/baton, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_R_STORE) + if(9 to 10) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/holster, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/highpower/black, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/highpower, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic/breaching_charge/rubber, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/mp5, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector, WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/mp5, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/mp5, WEAR_IN_R_STORE) + +// ua synth +/datum/equipment_preset/synth/survivor/cmb/ua_synth + name = "Survivor - Synthetic - UA Police Synthetic(Riot Response)" + paygrades = list(PAY_SHORT_CMBS = JOB_PLAYTIME_TIER_0) + role_comm_title = "UA Syn" + flags = EQUIPMENT_PRESET_EXTRA + assignment = "UA Police Synthetic" + languages = ALL_SYNTH_LANGUAGES + skills = /datum/skills/colonial_synthetic + idtype = /obj/item/card/id/silver + +/datum/equipment_preset/synth/survivor/cmb/ua_synth/load_race(mob/living/carbon/human/new_human) + new_human.set_species(SYNTH_COLONY) + +/datum/equipment_preset/synth/survivor/cmb/ua_synth/load_gear(mob/living/carbon/human/new_human) + //backpack + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/baton_slug, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16, WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/pen, WEAR_R_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/riot_shield, WEAR_IN_HELMET) + //uniform + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/ua_riot, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/flashbangs, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/ua_riot/synth, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/flashbang, WEAR_IN_JACKET) + //belt + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full/synth, WEAR_WAIST) + //holding + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/classic_baton, WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/weapon/shield/riot, WEAR_L_HAND) + //pouches + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/synth/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full, WEAR_R_STORE) diff --git a/code/modules/gear_presets/survivors/kutjevo/preset_kutjevo.dm b/code/modules/gear_presets/survivors/kutjevo/preset_kutjevo.dm index 8a9161f180..6db2882ddf 100644 --- a/code/modules/gear_presets/survivors/kutjevo/preset_kutjevo.dm +++ b/code/modules/gear_presets/survivors/kutjevo/preset_kutjevo.dm @@ -5,9 +5,10 @@ /datum/equipment_preset/survivor/engineer/kutjevo/load_gear(mob/living/carbon/human/new_human) add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/black(new_human), WEAR_JACKET) ..() /datum/equipment_preset/survivor/chaplain/kutjevo @@ -17,7 +18,7 @@ /datum/equipment_preset/survivor/chaplain/kutjevo/load_gear(mob/living/carbon/human/new_human) add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) ..() @@ -31,9 +32,8 @@ add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/doctor/kutjevo @@ -47,8 +47,8 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) ..() /datum/equipment_preset/survivor/colonial_marshal/kutjevo @@ -58,7 +58,7 @@ /datum/equipment_preset/survivor/colonial_marshal/kutjevo/load_gear(mob/living/carbon/human/new_human) add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) ..() @@ -69,8 +69,7 @@ /datum/equipment_preset/survivor/trucker/kutjevo/load_gear(mob/living/carbon/human/new_human) add_random_kutjevo_survivor_uniform(new_human) add_random_kutjevo_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - ..() diff --git a/code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm b/code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm index 825228f297..c27fa21359 100644 --- a/code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm +++ b/code/modules/gear_presets/survivors/lv_522/forcon_survivors.dm @@ -1,11 +1,11 @@ ///*****************************LV-522 Force Recon Survivors*******************************************************/ //Nanu told me to put them here so they dont clutter up survivors.dm /datum/equipment_preset/survivor/forecon - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/dogtag role_comm_title = "FORECON" rank = JOB_SURVIVOR - faction_group = list(FACTION_USCM, FACTION_SURVIVOR) + faction_group = list(FACTION_MARINE, FACTION_SURVIVOR) flags = EQUIPMENT_PRESET_START_OF_ROUND access = list( ACCESS_CIVILIAN_PUBLIC, @@ -13,6 +13,12 @@ ACCESS_CIVILIAN_LOGISTICS, ) + dress_shoes = list(/obj/item/clothing/shoes/dress) + dress_gloves = list(/obj/item/clothing/gloves/marine/dress) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/survivor/forecon/load_gear(mob/living/carbon/human/new_human) var/obj/item/clothing/under/marine/reconnaissance/uniform = new() var/obj/item/clothing/accessory/storage/droppouch/pouch = new() @@ -208,7 +214,11 @@ name = "Survivor - USCM Reconnaissance Squad Leader" assignment = JOB_FORECON_SL skills = /datum/skills/military/survivor/forecon_squad_leader - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) + + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) /datum/equipment_preset/survivor/forecon/squad_leader/load_gear(mob/living/carbon/human/new_human) var/obj/item/clothing/under/marine/reconnaissance/uniform = new() @@ -234,10 +244,14 @@ name = "Survivor - USCM Reconnaissance Major" assignment = JOB_FORECON_CO skills = /datum/skills/commander - paygrade = "MO4" + paygrades = list(PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/gold role_comm_title = "FORECON CO" + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + /datum/equipment_preset/survivor/forecon/major/load_gear(mob/living/carbon/human/new_human) var/obj/item/clothing/under/marine/reconnaissance/uniform = new() var/obj/item/clothing/accessory/storage/droppouch/pouch = new() @@ -264,7 +278,7 @@ //----------------------\\ /datum/equipment_preset/synth/survivor/forecon - name = "Survivor - USCM Synthetic" + name = "Survivor - Synthetic - FORECON Synth" assignment = JOB_FORECON_SYN faction_group = list(FACTION_MARINE, FACTION_SURVIVOR) idtype = /obj/item/card/id/gold diff --git a/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm new file mode 100644 index 0000000000..af00c81443 --- /dev/null +++ b/code/modules/gear_presets/survivors/lv_624/corporate_dome_insert_lv624.dm @@ -0,0 +1,50 @@ +// /obj/effect/landmark/survivor_spawner/lv624_corporate_dome/cl +// corporatedomehold.dmm + +/datum/equipment_preset/survivor/wy/executive + name = "Survivor - LV-624 Paranoid Corporate Liaison" + flags = EQUIPMENT_PRESET_START_OF_ROUND + paygrades = list(PAY_SHORT_WYC5 = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/civilian/survivor/manager + assignment = "LV-624 Corporate Liaison" + idtype = /obj/item/card/id/silver/clearance_badge/cl + faction_group = list(FACTION_WY, FACTION_SURVIVOR) + access = list( + ACCESS_WY_GENERAL, + ACCESS_WY_COLONIAL, + ACCESS_WY_MEDICAL, + ACCESS_WY_SECURITY, + ACCESS_WY_RESEARCH, + ACCESS_WY_ARMORY, + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_RUSSIAN) + + survivor_variant = CORPORATE_SURVIVOR + +/datum/equipment_preset/survivor/wy/executive/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/field(new_human), WEAR_BODY) + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/secure/briefcase(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK) + add_random_cl_survivor_loot(new_human) + add_random_cl_survivor_loot(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) diff --git a/code/modules/gear_presets/survivors/lv_624/preset_lv.dm b/code/modules/gear_presets/survivors/lv_624/preset_lv.dm index a2e55b899c..4620751426 100644 --- a/code/modules/gear_presets/survivors/lv_624/preset_lv.dm +++ b/code/modules/gear_presets/survivors/lv_624/preset_lv.dm @@ -3,24 +3,25 @@ assignment = "LV-624 Archeologist" /datum/equipment_preset/survivor/scientist/lv/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/researcher(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/utility_vest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie/tan(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/tool/shovel/spade(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/colonial_marshal/lv - name = "Survivor - LV-624 Head of Security" - assignment = "LV-624 Head of Security" + name = "Survivor - LV-624 Colonial Marshal Deputy" + assignment = "CMB Deputy" /datum/equipment_preset/survivor/colonial_marshal/lv/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/head_of_security/navyblue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/hos(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/trucker/lv @@ -28,9 +29,11 @@ assignment = "LV-624 Cargo Technician" /datum/equipment_preset/survivor/trucker/lv/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/cargo(new_human), WEAR_BODY) + var/obj/item/clothing/under/colonist/workwear/khaki/uniform = new() + uniform.roll_suit_jacket(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/meson(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/brown(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/yellow(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) ..() @@ -62,8 +65,13 @@ assignment = "LV-624 Emergency Medical Technician" /datum/equipment_preset/survivor/doctor/lv/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) + var/obj/item/clothing/under/colonist/workwear/blue/uniform = new() + uniform.roll_suit_jacket(new_human) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/stethoscope(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/windbreaker/windbreaker_fr(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/blue(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/roller(new_human), WEAR_L_HAND) new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human.back), WEAR_IN_BACK) ..() @@ -73,11 +81,24 @@ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) /datum/equipment_preset/survivor/security/lv/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/formal/servicedress(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/white_service(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/jungle(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife(new_human), WEAR_FEET) ..() +/datum/equipment_preset/survivor/corporate/lv + name = "Survivor - LV-624 Corporate Liaison" + assignment = "LV-624 Corporate Liaison" + +/datum/equipment_preset/survivor/corporate/lv/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/field(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + ..() diff --git a/code/modules/gear_presets/survivors/misc.dm b/code/modules/gear_presets/survivors/misc.dm index f55ea6f30d..e426be794d 100644 --- a/code/modules/gear_presets/survivors/misc.dm +++ b/code/modules/gear_presets/survivors/misc.dm @@ -1,13 +1,13 @@ /* -everything bellow isn't used or out of place. +Everything below isn't used or out of place. */ -// ----- Prisioner Survivors -// after double check prisoner isn't being used anywhere. +// ----- Prisoner Survivors +// Used in Fiorina Science Annex. /datum/equipment_preset/survivor/prisoner name = "Survivor - Prisoner" assignment = "Prisoner" @@ -19,17 +19,16 @@ everything bellow isn't used or out of place. /datum/equipment_preset/survivor/prisoner/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/color/orange(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) + if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/riot(new_human), WEAR_HEAD) if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human.back), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/orange(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) + add_ice_colony_survivor_equipment(new_human) ..() -// after double check gangleader isn't being used anywhere. +// Used in Fiorina Science Annex. /datum/equipment_preset/survivor/gangleader name = "Survivor - Gang Leader" assignment = "Gang Leader" @@ -40,18 +39,17 @@ everything bellow isn't used or out of place. /datum/equipment_preset/survivor/gangleader/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/color/orange(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) + if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/riot(new_human), WEAR_HEAD) if(prob(50)) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human.back), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/orange(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) + add_ice_colony_survivor_equipment(new_human) ..() // ----- Civilian Survivor -// after double check civilian isn't being used anywhere. +// Used in LV-624, Solaris Ridge, Trijent Dam, Fiorina Science Annex and Kutjevo Refinery. /datum/equipment_preset/survivor/civilian name = "Survivor - Civilian" assignment = "Civilian" @@ -60,7 +58,9 @@ everything bellow isn't used or out of place. access = list(ACCESS_CIVILIAN_PUBLIC) /datum/equipment_preset/survivor/civilian/load_gear(mob/living/carbon/human/new_human) - var/random_gear = rand(0, 3) + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + add_ice_colony_survivor_equipment(new_human) + var/random_gear = rand(0, 4) switch(random_gear) if(0) // Normal Colonist new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) @@ -71,7 +71,7 @@ everything bellow isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/vir(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/purple(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/mgoggles(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/regular/hipster(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/purple(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/galoshes(new_human), WEAR_FEET) if(2) // Bar Tender @@ -80,17 +80,19 @@ everything bellow isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/lawyer/bluejacket(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/bowlerhat(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/fake_mustache(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/black(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/beer_pack(new_human.back), WEAR_IN_BACK) if(3) // Botanist - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/green(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/hyd(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/apron(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/tool/hatchet(new_human.back), WEAR_IN_BACK) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + if(4) // Ripley outfit from Aliens + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/tshirt/gray_blu(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/black(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/webbing(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/stompers(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) @@ -109,19 +111,19 @@ everything bellow isn't used or out of place. access = list(ACCESS_CIVILIAN_PUBLIC) /datum/equipment_preset/survivor/salesman/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/wcoat(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) add_random_cl_survivor_loot(new_human) add_survivor_weapon_civilian(new_human) + add_ice_colony_survivor_equipment(new_human) ..() // ----- Roughneck Survivor -// after double check roughneck isn't being used anywhere. +// Used in Trijent Dam. /datum/equipment_preset/survivor/roughneck name = "Survivor - Roughneck" assignment = "Roughneck" @@ -130,23 +132,21 @@ everything bellow isn't used or out of place. access = list(ACCESS_CIVILIAN_PUBLIC) /datum/equipment_preset/survivor/roughneck/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/color/white(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/black(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/centcom(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large(new_human), WEAR_R_STORE) add_pmc_survivor_weapon(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // ----- Bum Survivor -// after double check beachbum isn't being used anywhere. +// Used in New Varadero. /datum/equipment_preset/survivor/beachbum name = "Survivor - Beach Bum" assignment = "Beach Bum" @@ -156,32 +156,30 @@ everything bellow isn't used or out of place. /datum/equipment_preset/survivor/beachbum/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/shorts/red(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/weed(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/botanic_leather(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/brown(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/beer_pack(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/knife/butcher(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/fancy/cigarettes/wypacket(new_human.back), WEAR_IN_BACK) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // ----- WY Survivors -// after double check goon isn't being used anywhere. +// Used in LV-624. /datum/equipment_preset/survivor/goon name = "Survivor - Corporate Security Goon" flags = EQUIPMENT_PRESET_START_OF_ROUND assignment = JOB_WY_GOON - paygrade = "WEY-GOON" + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/silver/cl skills = /datum/skills/civilian/survivor/goon languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) - access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_COMMAND, ACCESS_CIVILIAN_BRIG) + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_COMMAND, ACCESS_CIVILIAN_BRIG, ACCESS_WY_COLONIAL) survivor_variant = SECURITY_SURVIVOR @@ -191,7 +189,7 @@ everything bellow isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) @@ -210,8 +208,8 @@ everything bellow isn't used or out of place. // ----- Mercenary Survivors -// after double check pmc/miner/one isn't being used anywhere. -/datum/equipment_preset/survivor/pmc/miner/one +// after double check pmc/miner isn't being used anywhere. +/datum/equipment_preset/survivor/pmc/miner name = "Survivor - Mercenary" flags = EQUIPMENT_PRESET_START_OF_ROUND @@ -220,7 +218,7 @@ everything bellow isn't used or out of place. flags = EQUIPMENT_PRESET_START_OF_ROUND access = list(ACCESS_CIVILIAN_PUBLIC) -/datum/equipment_preset/survivor/pmc/miner/one/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/survivor/pmc/miner/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/mercenary/miner, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/mercenary/miner, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/mercenary/miner, WEAR_HEAD) @@ -241,7 +239,7 @@ everything bellow isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/freelancer, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/freelancer, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) spawn_merc_helmet(new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/dutch, WEAR_L_EAR) @@ -251,12 +249,12 @@ everything bellow isn't used or out of place. ..() -// after double check /new_varadero/commander isn't being used anywhere. +// New Varadero CO Survivor. /datum/equipment_preset/survivor/new_varadero/commander name = "Survivor - USASF Commander" assignment = "USASF Commander" skills = /datum/skills/commander - paygrade = "NO5" + paygrades = list(PAY_SHORT_NO5 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/gold role_comm_title = "USASF CDR" flags = EQUIPMENT_PRESET_START_OF_ROUND @@ -296,19 +294,10 @@ everything bellow isn't used or out of place. // ----- Hostile Survivors -/* - -datum/equipment_preset/survivor/clf/cold is never used -and as a three proc attach to it that are defacto never used eitheir. - -handled proc in datum/equipment_preset/survivor/clf/cold: -spawn_rebel_suit -spawn_rebel_helmet -spawn_rebel_shoes - -*/ +/// used in Shivas Snowball /datum/equipment_preset/survivor/clf/cold + name = "CLF Survivor (Cold)" //children of spawn rebel shoes proc /datum/equipment_preset/survivor/clf/cold/spawn_rebel_suit(mob/living/carbon/human/human) diff --git a/code/modules/gear_presets/survivors/new_varadero/preset_new_varadero.dm b/code/modules/gear_presets/survivors/new_varadero/preset_new_varadero.dm index ef6b3ebf6d..7f0ef0072d 100644 --- a/code/modules/gear_presets/survivors/new_varadero/preset_new_varadero.dm +++ b/code/modules/gear_presets/survivors/new_varadero/preset_new_varadero.dm @@ -1,13 +1,13 @@ /datum/equipment_preset/survivor/security/nv name = "Survivor - New Varadero Security Guard" assignment = "United Americas Peacekeeper" - languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) /datum/equipment_preset/survivor/security/nv/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/ua_riot(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/riot_shield(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/ua_riot(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) ..() @@ -29,8 +29,8 @@ /datum/equipment_preset/survivor/scientist/nv/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/researcher(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm/tan(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) @@ -38,11 +38,11 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) ..() -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/nv +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/nv name = "Survivor - Interstellar Commerce Commission Liaison New Varadero" assignment = "Interstellar Commerce Commission Corporate Liaison" -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/nv/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/nv/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/black(new_human), WEAR_JACKET) @@ -82,7 +82,6 @@ /datum/equipment_preset/survivor/chaplain/nv/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chaplain(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/priest_robe(new_human), WEAR_JACKET) ..() diff --git a/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm new file mode 100644 index 0000000000..16092ad511 --- /dev/null +++ b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm @@ -0,0 +1,43 @@ +// /obj/effect/landmark/survivor_spawner/shivas_assistant_manager +// panic_room_insert_shivas.dmm + +/datum/equipment_preset/survivor/wy/asstmanager + name = "Survivor - Corporate Assistant Manager" + flags = EQUIPMENT_PRESET_EXTRA + paygrades = list(PAY_SHORT_WYC7 = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/civilian/survivor/manager + assignment = "Assistant Operations Manager" + idtype = /obj/item/card/id/silver/clearance_badge/manager + faction_group = list(FACTION_WY, FACTION_SURVIVOR) + access = list( + ACCESS_WY_GENERAL, + ACCESS_WY_COLONIAL, + ACCESS_WY_MEDICAL, + ACCESS_WY_SECURITY, + ACCESS_WY_RESEARCH, + ACCESS_WY_ARMORY, + ACCESS_CIVILIAN_PUBLIC, + ACCESS_CIVILIAN_RESEARCH, + ACCESS_CIVILIAN_ENGINEERING, + ACCESS_CIVILIAN_LOGISTICS, + ACCESS_CIVILIAN_BRIG, + ACCESS_CIVILIAN_MEDBAY, + ACCESS_CIVILIAN_COMMAND, + ) + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + + survivor_variant = CORPORATE_SURVIVOR + +/datum/equipment_preset/survivor/wy/asstmanager/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/manager(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/grant, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + add_survivor_weapon_civilian(new_human) + ..() diff --git a/code/modules/gear_presets/survivors/shivas_snowball/preset_shivas_snowball.dm b/code/modules/gear_presets/survivors/shivas_snowball/preset_shivas_snowball.dm index 9496573401..2fdcc3322d 100644 --- a/code/modules/gear_presets/survivors/shivas_snowball/preset_shivas_snowball.dm +++ b/code/modules/gear_presets/survivors/shivas_snowball/preset_shivas_snowball.dm @@ -1,33 +1,33 @@ /datum/equipment_preset/survivor/corporate/shiva - name = "Survivor - Shivas Snowball Corporate Liaison" - assignment = "Shivas Snowball Corporate Liaison" + name = "Survivor - Shivas Corporate Liaison" + assignment = "Shivas Corporate Liaison" /datum/equipment_preset/survivor/corporate/shiva/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/snow(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/white(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy(new_human), WEAR_JACKET) ..() /datum/equipment_preset/survivor/doctor/shiva - name = "Survivor - Shivas Snowball Doctor" - assignment = "Shivas Snowball Doctor" + name = "Survivor - Shivas Doctor" + assignment = "Shivas Doctor" /datum/equipment_preset/survivor/doctor/shiva/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/green(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/green(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/snow(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/white(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) ..() /datum/equipment_preset/survivor/scientist/shiva - name = "Survivor - Shivas Snowball Researcher" - assignment = "Shivas Snowball Researcher" + name = "Survivor - Shivas Researcher" + assignment = "Shivas Researcher" /datum/equipment_preset/survivor/scientist/shiva/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/blue(new_human), WEAR_BODY) @@ -35,7 +35,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/snow(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple(new_human), WEAR_JACKET) ..() @@ -44,31 +44,31 @@ assignment = "CMB Deputy" /datum/equipment_preset/survivor/colonial_marshal/shiva/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security/corp(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/red(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/white(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/engineer/shiva - name = "Survivor - Shivas Snowball Engineer" - assignment = "Shivas Snowball Engineer" + name = "Survivor - Shivas Engineer" + assignment = "Shivas Engineer" /datum/equipment_preset/survivor/engineer/shiva/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/snow(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) ..() /datum/equipment_preset/survivor/security/shiva - name = "Survivor - Shivas Snowball Security Guard" + name = "Survivor - Shivas Security Guard" assignment = "United Americas Peacekeeper" /datum/equipment_preset/survivor/security/shiva/load_gear(mob/living/carbon/human/new_human) @@ -77,6 +77,6 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/ua_riot(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/white(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) ..() diff --git a/code/modules/gear_presets/survivors/solaris/crashlanding-offices_insert_bigred.dm b/code/modules/gear_presets/survivors/solaris/crashlanding-offices_insert_bigred.dm index 35a9b8e5ea..de117b9a5a 100644 --- a/code/modules/gear_presets/survivors/solaris/crashlanding-offices_insert_bigred.dm +++ b/code/modules/gear_presets/survivors/solaris/crashlanding-offices_insert_bigred.dm @@ -7,7 +7,7 @@ assignment = "Weyland-Yutani PMC" faction = FACTION_SURVIVOR faction_group = list(FACTION_WY, FACTION_SURVIVOR) - paygrade = "PMC-OP" + paygrades = list(PAY_SHORT_PMC_OP = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/pmc skills = /datum/skills/civilian/survivor/pmc languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) @@ -45,8 +45,7 @@ /datum/equipment_preset/survivor/pmc/medic name = "Survivor - PMC Medic" assignment = JOB_PMC_MEDIC - rank = JOB_PMC_MEDIC - paygrade = "PMC-MS" + paygrades = list(PAY_SHORT_PMC_MS = JOB_PLAYTIME_TIER_0) skills = /datum/skills/civilian/survivor/pmc/medic /datum/equipment_preset/survivor/pmc/medic/load_gear(mob/living/carbon/human/new_human) @@ -65,8 +64,7 @@ /datum/equipment_preset/survivor/pmc/engineer name = "Survivor - PMC Engineer" assignment = JOB_PMC_ENGINEER - rank = JOB_PMC_ENGINEER - paygrade = "PMC-TECH" + paygrades = list(PAY_SHORT_PMC_TEC = JOB_PLAYTIME_TIER_0) skills = /datum/skills/civilian/survivor/pmc/engineer /datum/equipment_preset/survivor/pmc/engineer/load_gear(mob/living/carbon/human/new_human) @@ -82,7 +80,7 @@ /datum/equipment_preset/survivor/wy/manager name = "Survivor - Corporate Supervisor" flags = EQUIPMENT_PRESET_EXTRA - paygrade = "WYC7" + paygrades = list(PAY_SHORT_WYC6 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/civilian/survivor/manager assignment = "Colony Supervisor" role_comm_title = "Supervisor" @@ -152,42 +150,42 @@ role_comm_title = "WY Syn" /datum/equipment_preset/synth/survivor/pmc/load_race(mob/living/carbon/human/new_human) - new_human.set_species(SYNTH_GEN_THREE) + new_human.set_species(SYNTH_GEN_THREE) /datum/equipment_preset/synth/survivor/pmc/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/pmc, WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/scalpel/manager, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/weylandyutani, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/nailgun, WEAR_IN_JACKET) - - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/pmc/command/hvh, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) - - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) - - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/white, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/tool/crew_monitor, WEAR_IN_BACK) - - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full/dutch, WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/nailgun/compact, WEAR_J_STORE) - - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/wrench, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/multitool, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full_barbed_wire, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/pmc, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/droppouch, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/scalpel/manager, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/weylandyutani, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/nailgun, WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/pmc/command/hvh, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/pmc, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/smartpack/white, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/extinguisher/mini, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/upgraded, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/crew_monitor, WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full/dutch, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/nailgun/compact, WEAR_J_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/stack/cable_coil, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full_barbed_wire, WEAR_R_STORE) diff --git a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm index 49d16be504..65cf3e7f01 100644 --- a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm +++ b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm @@ -4,9 +4,9 @@ skills = /datum/skills/civilian/survivor/trucker /datum/equipment_preset/survivor/trucker/solaris/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/worker_overalls(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/red(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls/red(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker/red(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big(new_human), WEAR_EYES) ..() @@ -14,13 +14,12 @@ name = "Survivor - Solaris Colonial Marshal Deputy" assignment = "CMB Deputy" - /datum/equipment_preset/survivor/colonial_marshal/solaris/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/engineer/solaris @@ -28,9 +27,10 @@ assignment = "Solaris Engineer" /datum/equipment_preset/survivor/engineer/solaris/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/yellow(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding/superior(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/pink(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) ..() @@ -39,13 +39,12 @@ assignment = "Solaris Scientist" /datum/equipment_preset/survivor/scientist/solaris/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/virologist(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/green(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/virologist(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/green(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/green(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/doctor/solaris @@ -53,8 +52,9 @@ assignment = "Solaris Doctor" /datum/equipment_preset/survivor/doctor/solaris/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/purple(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/purple(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/lightblue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmo(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/chaplain/solaris @@ -63,7 +63,6 @@ /datum/equipment_preset/survivor/chaplain/solaris/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/holidaypriest(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/nun_hood(new_human), WEAR_HEAD) ..() /datum/equipment_preset/survivor/security/solaris @@ -75,13 +74,29 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/sec/hos(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) ..() +/datum/equipment_preset/survivor/uscm/solaris + name = "Survivor - Solaris United States Colonial Marine Corps Recruiter" + assignment = "USCM Recruiter" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/survivor/uscm/solaris/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/marine/e5(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/service(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) + ..() + /datum/equipment_preset/survivor/corporate/solaris - name = "Survivor - Solaris Ridge Corporate Liaison" - assignment = "Solaris Ridge Corporate Liaison" + name = "Survivor - Solaris Corporate Liaison" + assignment = "Solaris Corporate Liaison" /datum/equipment_preset/survivor/corporate/solaris/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/ivy(new_human), WEAR_BODY) @@ -90,5 +105,5 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/prescription(new_human), WEAR_EYES) else new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) ..() diff --git a/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm b/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm index 532b422a13..f285a9635b 100644 --- a/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm +++ b/code/modules/gear_presets/survivors/sorokyne_strata/preset_sorokyne_strata.dm @@ -1,11 +1,11 @@ /datum/equipment_preset/survivor/engineer/soro - name = "Survivor - Sorokyne Strata Political Prisioner" - assignment = "Sorokyne Strata Political Prisioner" + name = "Survivor - Sorokyne Strata State Contractor" + assignment = "Sorokyne Strata State Contractor" /datum/equipment_preset/survivor/engineer/soro/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/soviet(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) @@ -19,7 +19,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/veteran/soviet_uniform_01(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/soviet(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) @@ -58,3 +58,16 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) ..() + +/datum/equipment_preset/survivor/corporate/soro + name = "Survivor - Sorokyne Strata Corporate Liaison" + assignment = "Sorokyne Strata Corporate Liaison" + +/datum/equipment_preset/survivor/corporate/soro/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/charcoal(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/liaison/modified(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + ..() diff --git a/code/modules/gear_presets/survivors/survivors.dm b/code/modules/gear_presets/survivors/survivors.dm index f2378749b4..b8b624b9b6 100644 --- a/code/modules/gear_presets/survivors/survivors.dm +++ b/code/modules/gear_presets/survivors/survivors.dm @@ -5,7 +5,7 @@ skills = /datum/skills/civilian/survivor languages = list(LANGUAGE_ENGLISH) - paygrade = "C" + paygrades = list(PAY_SHORT_CIV = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/lanyard faction = FACTION_SURVIVOR faction_group = list(FACTION_SURVIVOR) @@ -18,11 +18,79 @@ var/survivor_variant = CIVILIAN_SURVIVOR + dress_under = list( + /obj/item/clothing/under/liaison_suit/black, + /obj/item/clothing/under/liaison_suit/blue, + /obj/item/clothing/under/liaison_suit/brown, + /obj/item/clothing/under/liaison_suit/corporate_formal, + /obj/item/clothing/under/liaison_suit, + /obj/item/clothing/under/liaison_suit/charcoal, + /obj/item/clothing/under/liaison_suit/formal, + /obj/item/clothing/under/liaison_suit/blazer, + /obj/item/clothing/under/liaison_suit/suspenders, + /obj/item/clothing/under/blackskirt, + /obj/item/clothing/under/suit_jacket/trainee, + /obj/item/clothing/under/liaison_suit/ivy, + /obj/item/clothing/under/liaison_suit/orange, + /obj/item/clothing/under/liaison_suit/field, + /obj/item/clothing/under/colonist/workwear, + /obj/item/clothing/under/colonist/workwear/khaki, + /obj/item/clothing/under/colonist/workwear/pink, + /obj/item/clothing/under/colonist/workwear/green, + ) + dress_over = list( + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/corporate, + /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, + /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/bomber/grey, + /obj/item/clothing/suit/storage/jacket/marine/bomber/red, + /obj/item/clothing/suit/storage/jacket/marine/bomber, + /obj/item/clothing/suit/storage/bomber, + /obj/item/clothing/suit/storage/bomber/alt, + /obj/item/clothing/suit/storage/snow_suit/liaison, + /obj/item/clothing/suit/storage/labcoat, + /obj/item/clothing/suit/storage/jacket/marine/vest/grey, + /obj/item/clothing/suit/storage/jacket/marine/vest, + /obj/item/clothing/suit/storage/jacket/marine/vest/tan, + /obj/item/clothing/suit/storage/webbing, + ) + dress_extra = list( + /obj/item/clothing/accessory/black, + /obj/item/clothing/accessory/red, + /obj/item/clothing/accessory/purple, + /obj/item/clothing/accessory/blue, + /obj/item/clothing/accessory/green, + /obj/item/clothing/accessory/gold, + /obj/item/clothing/accessory/horrible, + /obj/item/clothing/glasses/sunglasses/big, + /obj/item/clothing/glasses/sunglasses/aviator, + /obj/item/clothing/glasses/sunglasses, + /obj/item/clothing/glasses/sunglasses/prescription, + /obj/item/clothing/glasses/regular/hipster, + ) + dress_gloves = list( + /obj/item/clothing/gloves/black, + /obj/item/clothing/gloves/marine/dress, + ) + dress_shoes = list( + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/shoes/laceup/brown, + /obj/item/clothing/shoes/black, + /obj/item/clothing/shoes/marine/corporate, + ) + dress_hat = list( + /obj/item/clothing/head/fedora, + /obj/item/clothing/head/beret/cm/black/civilian, + /obj/item/clothing/head/beret/cm/white/civilian, + ) + /datum/equipment_preset/survivor/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = pick(MALE, FEMALE) var/datum/preferences/A = new A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) new_human.change_real_name(new_human, random_name) new_human.age = rand(21,45) @@ -50,6 +118,7 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, /datum/equipment_preset/survivor/miner, /datum/equipment_preset/survivor/colonial_marshal, /datum/equipment_preset/survivor/engineer, + /datum/equipment_preset/survivor/security */ @@ -63,26 +132,24 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, flags = EQUIPMENT_PRESET_START_OF_ROUND idtype = /obj/item/card/id/silver/clearance_badge/scientist access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) survivor_variant = SCIENTIST_SURVIVOR /datum/equipment_preset/survivor/scientist/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/virologist(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/green(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/virologist(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/green(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/chem(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/tox(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/green(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/good(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical/full(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) add_random_survivor_research_gear(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 2 ----- Doctor Survivor @@ -94,15 +161,14 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, flags = EQUIPMENT_PRESET_START_OF_ROUND idtype = /obj/item/card/id/silver/clearance_badge access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY, ACCESS_CIVILIAN_COMMAND) + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) survivor_variant = MEDICAL_SURVIVOR /datum/equipment_preset/survivor/doctor/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/med(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/surgical(new_human), WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) @@ -120,7 +186,7 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medkit/full_advanced(new_human), WEAR_R_STORE) add_random_survivor_medical_gear(new_human) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 3 ----- Chef Survivor @@ -133,16 +199,15 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, access = list(ACCESS_CIVILIAN_PUBLIC) /datum/equipment_preset/survivor/chef/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chef(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/chef(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/chefhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/tool/kitchen/rollingpin(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 4 ----- Chaplain Survivor @@ -156,15 +221,13 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, /datum/equipment_preset/survivor/chaplain/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chaplain(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/holidaypriest(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/bible/booze(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general(new_human), WEAR_R_STORE) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 5 ----- Miner Survivor @@ -177,17 +240,16 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_ENGINEERING, ACCESS_CIVILIAN_LOGISTICS) /datum/equipment_preset/survivor/miner/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/miner(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/norm(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/tool/pickaxe(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/lantern(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/tool/pickaxe(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/lantern(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/orange(new_human), WEAR_HEAD) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 6 ---- Colonial Marshal Survivor @@ -195,7 +257,7 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, /datum/equipment_preset/survivor/colonial_marshal name = "Survivor - Colonial Marshal Deputy" assignment = "CMB Deputy" - paygrade = "GS-9" + paygrades = list(PAY_SHORT_CMBD = JOB_PLAYTIME_TIER_0) skills = /datum/skills/civilian/survivor/marshal flags = EQUIPMENT_PRESET_START_OF_ROUND idtype = /obj/item/card/id/deputy @@ -215,9 +277,7 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, /datum/equipment_preset/survivor/colonial_marshal/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) - - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB(new_human), WEAR_HEAD) if(new_human.disabilities & NEARSIGHTED) @@ -225,10 +285,10 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, else new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large(new_human), WEAR_R_STORE) add_survivor_weapon_security(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() // 7 ----- Engineering Survivor @@ -243,56 +303,64 @@ Standart Survivors : /datum/equipment_preset/survivor/scientist, survivor_variant = ENGINEERING_SURVIVOR /datum/equipment_preset/survivor/engineer/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/largetank(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/plasteel/med_small_stack(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) add_survivor_weapon_civilian(new_human) - + add_ice_colony_survivor_equipment(new_human) ..() -/* -Everything bellow is a parent used as a base for one or multiple maps. -*/ -// ----- Interstellar Human Rights Survivor +// 8 -- Security Survivor -// it's used as a base for soro map. -/datum/equipment_preset/survivor/interstellar_human_rights_observer - name = "Survivor - Interstellar Human Rights Observer" - assignment = "Interstellar Human Rights Observer(Colony)" - skills = /datum/skills/civilian/survivor +/datum/equipment_preset/survivor/security + name = "Survivor - Security" + assignment = "Security" + skills = /datum/skills/civilian/survivor/marshal flags = EQUIPMENT_PRESET_START_OF_ROUND - access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_COMMAND) + idtype = /obj/item/card/id/data + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_BRIG,ACCESS_CIVILIAN_COMMAND) + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) -/datum/equipment_preset/survivor/interstellar_human_rights_observer/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - add_random_cl_survivor_loot(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) - add_survivor_weapon_civilian(new_human) + survivor_variant = SECURITY_SURVIVOR +/datum/equipment_preset/survivor/security/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine(new_human), WEAR_R_STORE) + add_survivor_weapon_security(new_human) + add_ice_colony_survivor_equipment(new_human) ..() +/* +Everything bellow is a parent used as a base for one or multiple maps. +*/ // ----- CL Survivor -//used as a base for shiva and solaris spawn. + +// Used in Solaris Ridge and LV-624. /datum/equipment_preset/survivor/corporate name = "Survivor - Corporate Liaison" assignment = "Corporate Liaison" skills = /datum/skills/civilian/survivor flags = EQUIPMENT_PRESET_START_OF_ROUND - paygrade = "WYC2" + paygrades = list(PAY_SHORT_WYC2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_WYC3 = JOB_PLAYTIME_TIER_2, PAY_SHORT_WYC4 = JOB_PLAYTIME_TIER_3, PAY_SHORT_WYC5 = JOB_PLAYTIME_TIER_4) + faction_group = FACTION_LIST_SURVIVOR_WY idtype = /obj/item/card/id/silver/clearance_badge/cl access = list( ACCESS_CIVILIAN_PUBLIC, @@ -307,77 +375,19 @@ Everything bellow is a parent used as a base for one or multiple maps. /datum/equipment_preset/survivor/corporate/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/field(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - add_random_cl_survivor_loot(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) add_survivor_weapon_civilian(new_human) - - ..() - -/datum/equipment_preset/survivor/corporate/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - var/playtime = get_job_playtime(new_human.client, JOB_CORPORATE_LIAISON) - if(new_human.client.prefs.playtime_perks) - if(playtime > JOB_PLAYTIME_TIER_4) - return "WYC5" - else if(playtime > JOB_PLAYTIME_TIER_3) - return "WYC4" - else if(playtime > JOB_PLAYTIME_TIER_2) - return "WYC3" - else - return paygrade - return paygrade - -// ----- Security Survivor -/* - -present in xenomorph.dm file - -var/list/survivor_types = list( - /datum/equipment_preset/survivor/scientist, - /datum/equipment_preset/survivor/doctor, - /datum/equipment_preset/survivor/security, - /datum/equipment_preset/survivor/engineer - ) - -and is used as a base for all of the maps. - -*/ - -/datum/equipment_preset/survivor/security - name = "Survivor - Security" - assignment = "Security" - skills = /datum/skills/civilian/survivor/marshal - flags = EQUIPMENT_PRESET_START_OF_ROUND - idtype = /obj/item/card/id/data - access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_BRIG,ACCESS_CIVILIAN_COMMAND) - - survivor_variant = SECURITY_SURVIVOR - -/datum/equipment_preset/survivor/security/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/security(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet(new_human), WEAR_HEAD) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine(new_human), WEAR_R_STORE) - add_survivor_weapon_security(new_human) + add_random_cl_survivor_loot(new_human) + add_ice_colony_survivor_equipment(new_human) ..() // ---- Trucker Survivor -// it's used as a base for kutjevo lv nv solaris and trijent maps. +// Used in Kutjevo Refinery, LV-624, New Varadero, Solaris Ridge and Trijent Dam. + /datum/equipment_preset/survivor/trucker name = "Survivor - Trucker" assignment = "Trucker" @@ -389,48 +399,117 @@ and is used as a base for all of the maps. /datum/equipment_preset/survivor/trucker/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/overalls(new_human), WEAR_BODY) - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/yellow(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/flashlight/lantern(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/hardpoint/locomotion/van_wheels(new_human), WEAR_R_HAND) add_survivor_weapon_civilian(new_human) + add_ice_colony_survivor_equipment(new_human) + ..() + +// -- Flight Control Operator +// Used in Solaris Ridge. + +/datum/equipment_preset/survivor/flight_control_operator + name = "Survivor - Flight Control Operator" + assignment = "Flight Control Operator" + skills = /datum/skills/civilian/survivor/trucker + idtype = /obj/item/card/id/data + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_LOGISTICS,ACCESS_WY_FLIGHT) + +/datum/equipment_preset/survivor/flight_control_operator/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/khaki(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/windbreaker/windbreaker_brown(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/headset(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + add_survivor_weapon_civilian(new_human) + add_ice_colony_survivor_equipment(new_human) ..() -// ----- CL Survivor +// ----- Interstellar Human Rights Survivor -//this is used as a base for corsat and nv -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason +// Used in Sorokyne Strata and Fiorina Science Annex. +/datum/equipment_preset/survivor/interstellar_human_rights_observer + name = "Survivor - Interstellar Human Rights Observer" + assignment = "Interstellar Human Rights Observer(Colony)" + skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_COMMAND) + +/datum/equipment_preset/survivor/interstellar_human_rights_observer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/brown(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + add_survivor_weapon_civilian(new_human) + add_random_cl_survivor_loot(new_human) + add_ice_colony_survivor_equipment(new_human) + ..() + + +// ----- Interstellar Commerce Commission Survivor + +// Used in Trijent Dam and New Varadero. +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison name = "Survivor - Interstellar Commerce Commission Liaison" assignment = "Interstellar Commerce Commission Corporate Liaison" skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + paygrades = list(PAY_SHORT_ICCL = JOB_PLAYTIME_TIER_0) + faction_group = FACTION_LIST_SURVIVOR_WY idtype = /obj/item/card/id/silver/cl - paygrade = "WYC2" role_comm_title = "ICC Rep." - flags = EQUIPMENT_PRESET_START_OF_ROUND survivor_variant = CORPORATE_SURVIVOR -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/New() +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/New() . = ..() access = get_access(ACCESS_LIST_CIVIL_LIAISON) -/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit(new_human), WEAR_BODY) +/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) - - if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) - add_ice_colony_survivor_equipment(new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/black(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) add_survivor_weapon_civilian(new_human) add_random_cl_survivor_loot(new_human) + add_ice_colony_survivor_equipment(new_human) + ..() + +// ----- USCM Survivor +// Used for Solaris Ridge. +/datum/equipment_preset/survivor/uscm + name = "Survivor - USCM Remnant" + assignment = "USCM Survivor" + skills = /datum/skills/civilian/survivor/marshal + idtype = /obj/item/card/id/dogtag + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC) + +/datum/equipment_preset/survivor/uscm/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/ranks/marine/e2(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare(new_human), WEAR_R_STORE) + add_survivor_weapon_security(new_human) + add_ice_colony_survivor_equipment(new_human) ..() + diff --git a/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm b/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm index c1ca81683c..25136c172b 100644 --- a/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm +++ b/code/modules/gear_presets/survivors/trijent/crashlanding_upp_bar_insert_trijent.dm @@ -2,7 +2,7 @@ //crashlanding-upp-bar.dmm map. /datum/equipment_preset/survivor/upp name = "Survivor - UPP" - paygrade = "UE1" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0) origin_override = ORIGIN_UPP rank = JOB_SURVIVOR skills = /datum/skills/military/survivor/upp_private @@ -25,8 +25,9 @@ if(2) uniform.roll_suit_sleeves(new_human) new_human.equip_to_slot_or_del(uniform, WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp (new_human), WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp_knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp(new_human), WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/airborne, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) @@ -39,7 +40,7 @@ //crashlanding-upp-bar.dmm /datum/equipment_preset/survivor/upp/soldier name = "Survivor - UPP Soldier" - paygrade = "UE2" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_UE2 = JOB_PLAYTIME_TIER_1) assignment = JOB_UPP rank = JOB_UPP skills = /datum/skills/military/survivor/upp_private @@ -60,11 +61,12 @@ spawn_random_upp_belt(new_human) ..() + // /obj/effect/landmark/survivor_spawner/upp_sapper //crashlanding-upp-bar.dmm /datum/equipment_preset/survivor/upp/sapper name = "Survivor - UPP Sapper" - paygrade = "UE3" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) assignment = JOB_UPP_ENGI rank = JOB_UPP_ENGI skills = /datum/skills/military/survivor/upp_sapper @@ -92,7 +94,7 @@ //crashlanding-upp-bar.dmm /datum/equipment_preset/survivor/upp/medic name = "Survivor - UPP Medic" - paygrade = "UE3" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) assignment = JOB_UPP_MEDIC rank = JOB_UPP_MEDIC skills = /datum/skills/military/survivor/upp_medic @@ -124,7 +126,7 @@ name = "Survivor - UPP Specialist" assignment = JOB_UPP_SPECIALIST rank = JOB_UPP_SPECIALIST - paygrade = "UE4" + paygrades = list(PAY_SHORT_UE4 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/military/survivor/upp_spec /datum/equipment_preset/survivor/upp/specialist/load_gear(mob/living/carbon/human/new_human) @@ -143,7 +145,7 @@ // /obj/effect/landmark/survivor_spawner/squad_leader /datum/equipment_preset/survivor/upp/squad_leader name = "Survivor - UPP Squad Leader" - paygrade = "UE5" + paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) assignment = JOB_UPP_LEADER rank = JOB_UPP_LEADER languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH, LANGUAGE_GERMAN, LANGUAGE_CHINESE) @@ -171,7 +173,7 @@ faction = FACTION_UPP faction_group = list(FACTION_UPP, FACTION_SURVIVOR) skills = /datum/skills/colonial_synthetic - paygrade = "SYN" + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/dogtag role_comm_title = "173/RECON Syn" @@ -198,6 +200,8 @@ new_human.equip_to_slot_or_del(new /obj/item/device/flashlight, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/partial, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/airborne, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/uppsynth, WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/synth/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) diff --git a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm index e74f3258db..3c9926de69 100644 --- a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm +++ b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm @@ -1,6 +1,6 @@ /datum/equipment_preset/survivor/chaplain/trijent name = "Survivor - Trijent Chaplain" - assignment = "Trijent Chaplain" + assignment = "Trijent Dam Chaplain" /datum/equipment_preset/survivor/chaplain/trijent/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/nun(new_human), WEAR_JACKET) @@ -13,11 +13,24 @@ assignment = "Trijent Dam Security Guard" /datum/equipment_preset/survivor/security/trijent/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/head_of_security/navyblue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/mp/mpcap(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/det_suit/black(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/security(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife(new_human), WEAR_FEET) + ..() + +/datum/equipment_preset/survivor/colonial_marshal/trijent + name = "Survivor - Trijent Colonial Marshal Deputy" + assignment = "CMB Deputy" + +/datum/equipment_preset/survivor/colonial_marshal/trijent/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/CM_uniform(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CMB/limited(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/sec(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/CMB(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/doctor/trijent @@ -25,20 +38,34 @@ assignment = "Trijent Dam Doctor" /datum/equipment_preset/survivor/doctor/trijent/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/surgery/blue(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) + ..() + +/datum/equipment_preset/survivor/scientist/trijent + name = "Survivor - Trijent Researcher" + assignment = "Trijent Dam Researcher" + +/datum/equipment_preset/survivor/scientist/trijent/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/rd(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/jan(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown(new_human), WEAR_FEET) ..() /datum/equipment_preset/survivor/trucker/trijent - name = "Survivor - Trijent Dam Heavy Vehicle Operator" + name = "Survivor - Trijent Heavy Vehicle Operator" assignment = "Trijent Dam Heavy Vehicle Operator" skills = /datum/skills/civilian/survivor/trucker /datum/equipment_preset/survivor/trucker/trijent/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/green(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/bomber/grey(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank(new_human), WEAR_IN_BACK) ..() @@ -47,8 +74,8 @@ assignment = "Hydro Electric Engineer" /datum/equipment_preset/survivor/engineer/trijent/hydro/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/engineer(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/khaki(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/black(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) @@ -65,3 +92,14 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/orange(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET) ..() + +/datum/equipment_preset/survivor/corporate/trijent + name = "Survivor - Trijent Corporate Liaison" + assignment = "Trijent Dam Corporate Liaison" + +/datum/equipment_preset/survivor/corporate/trijent/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/ivy(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + ..() diff --git a/code/modules/gear_presets/synths.dm b/code/modules/gear_presets/synths.dm index 70efeb9f39..c13bea4a2b 100644 --- a/code/modules/gear_presets/synths.dm +++ b/code/modules/gear_presets/synths.dm @@ -3,7 +3,7 @@ uses_special_name = TRUE languages = ALL_SYNTH_LANGUAGES skills = /datum/skills/synthetic - paygrade = "SYN" + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) minimap_icon = "synth" @@ -41,7 +41,6 @@ idtype = /obj/item/card/id/gold assignment = JOB_SYNTH rank = "Synthetic" - paygrade = "SYN" role_comm_title = "Syn" /datum/equipment_preset/synth/uscm/load_gear(mob/living/carbon/human/new_human) @@ -65,7 +64,6 @@ idtype = /obj/item/card/id/gold assignment = JOB_SYNTH rank = "Synthetic" - paygrade = "SYN" role_comm_title = "Syn" /datum/equipment_preset/synth/uscm/councillor/load_gear(mob/living/carbon/human/new_human) @@ -91,7 +89,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/cm(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mcom/synth(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/synthetic(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/RO(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/RO(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) @@ -119,7 +117,7 @@ WEAR_WAIST = /obj/item/storage/belt/utility/full, WEAR_R_STORE = /obj/item/storage/pouch/tools/full, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/maintenance_jack ) var/survivor_variant = CIVILIAN_SURVIVOR @@ -147,6 +145,9 @@ . = ..() access = get_access(ACCESS_LIST_WY_PMC) +/datum/equipment_preset/synth/survivor/wy + flags = EQUIPMENT_PRESET_STUB + /datum/equipment_preset/synth/survivor/wy/New() . = ..() access = get_access(ACCESS_LIST_COLONIAL_ALL) + get_region_accesses(2) + get_region_accesses(4) + ACCESS_MARINE_RESEARCH + ACCESS_WY_GENERAL // for WY synths - admin building and wy fax machines access @@ -173,6 +174,7 @@ WEAR_FACE = /obj/item/clothing/mask/surgical, WEAR_EYES = /obj/item/clothing/glasses/hud/health, WEAR_BODY = /obj/item/clothing/under/rank/medical, + WEAR_ACCESSORY = /obj/item/clothing/accessory/armband/medgreen, WEAR_BACK = /obj/item/storage/backpack/satchel/med, WEAR_IN_BACK = /obj/item/roller/surgical, WEAR_JACKET = /obj/item/clothing/suit/storage/hazardvest/blue, @@ -194,6 +196,7 @@ WEAR_FACE = /obj/item/clothing/mask/surgical, WEAR_EYES = /obj/item/clothing/glasses/hud/health, WEAR_BODY = /obj/item/clothing/under/colonist/ua_civvies, + WEAR_ACCESSORY = /obj/item/clothing/accessory/armband/med, WEAR_BACK = /obj/item/storage/backpack/satchel/med, WEAR_IN_BACK = /obj/item/storage/firstaid/adv, WEAR_IN_BACK = /obj/item/tool/extinguisher/mini, @@ -230,25 +233,45 @@ survivor_variant = SCIENTIST_SURVIVOR +/datum/equipment_preset/synth/survivor/archaeologist_synth + name = "Survivor - Synthetic - Archaeologist Synth" + equipment_to_spawn = list( + WEAR_HEAD = /obj/item/clothing/head/hardhat/orange, + WEAR_BODY = /obj/item/clothing/under/rank/miner, + WEAR_BACK = /obj/item/storage/backpack/satchel/eng, + WEAR_IN_BACK = /obj/item/tool/shovel/spade, + WEAR_JACKET = /obj/item/clothing/suit/storage/utility_vest, + WEAR_IN_JACKET = /obj/item/explosive/plastic, + WEAR_WAIST = /obj/item/device/flashlight/lantern, + WEAR_R_HAND = /obj/item/stack/sandbags_empty/half, + WEAR_FEET = /obj/item/clothing/shoes/marine/knife, + WEAR_L_HAND = /obj/item/tool/pickaxe/hammer + ) + + survivor_variant = SCIENTIST_SURVIVOR + /datum/equipment_preset/synth/survivor/engineer_synth name = "Survivor - Synthetic - Engineer Synth" equipment_to_spawn = list( WEAR_HEAD = /obj/item/clothing/head/hardhat, WEAR_BODY = /obj/item/clothing/under/rank/engineer, + WEAR_ACCESSORY = /obj/item/clothing/accessory/armband/engine, WEAR_BACK = /obj/item/storage/backpack/satchel/eng, - WEAR_IN_BACK = /obj/item/ammo_magazine/smg/nailgun, + WEAR_IN_BACK = /obj/item/stack/sheet/metal/med_small_stack, WEAR_JACKET = /obj/item/clothing/suit/storage/hazardvest/yellow, WEAR_IN_JACKET = /obj/item/ammo_magazine/smg/nailgun, - WEAR_IN_JACKET = /obj/item/ammo_magazine/smg/nailgun, WEAR_J_STORE = /obj/item/weapon/gun/smg/nailgun/compact, WEAR_WAIST = /obj/item/storage/belt/utility/full, WEAR_R_STORE = /obj/item/storage/pouch/tools/full, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/maintenance_jack ) survivor_variant = ENGINEERING_SURVIVOR +/datum/equipment_preset/synth/survivor/corporate_synth + name = "Survivor - Synthetic - Corporate Synth" + /datum/equipment_preset/synth/survivor/corporate_synth/load_gear(mob/living/carbon/human/new_human) ..() add_random_cl_survivor_loot(new_human) @@ -259,6 +282,7 @@ WEAR_HEAD = /obj/item/clothing/head/soft/purple, WEAR_EYES = /obj/item/clothing/glasses/mgoggles, WEAR_BODY = /obj/item/clothing/under/rank/janitor, + WEAR_ACCESSORY = /obj/item/clothing/accessory/armband/med, WEAR_BACK = /obj/item/storage/backpack/satchel/vir, WEAR_IN_BACK = /obj/item/reagent_container/glass/bucket, WEAR_IN_BACK = /obj/item/tool/wet_sign, @@ -269,7 +293,7 @@ WEAR_R_HAND = /obj/item/tool/mop, WEAR_R_STORE = /obj/item/storage/pouch/tools/full, WEAR_FEET = /obj/item/clothing/shoes/galoshes, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/weapon/twohanded/spear ) /datum/equipment_preset/synth/survivor/chef_synth @@ -285,7 +309,7 @@ WEAR_JACKET = /obj/item/clothing/suit/chef, WEAR_HANDS = /obj/item/clothing/gloves/latex, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/tool/kitchen/knife/butcher ) /datum/equipment_preset/synth/survivor/teacher_synth @@ -294,14 +318,14 @@ WEAR_EYES = /obj/item/clothing/glasses/regular/hipster, WEAR_BODY = /obj/item/clothing/under/colonist/wy_davisone, WEAR_BACK = /obj/item/storage/backpack/satchel/norm, - WEAR_IN_BACK = /obj/item/reagent_container/food/snacks/wrapped/booniebars, WEAR_IN_BACK = /obj/item/reagent_container/food/snacks/wy_chips/pepper, - WEAR_IN_BACK = /obj/item/reagent_container/spray/cleaner, + WEAR_IN_BACK = /obj/item/storage/box/pdt_kit, WEAR_JACKET = /obj/item/clothing/suit/storage/bomber/alt, - WEAR_IN_JACKET = /obj/item/storage/box/pdt_kit, + WEAR_IN_JACKET = /obj/item/device/healthanalyzer, + WEAR_WAIST = /obj/item/reagent_container/spray/cleaner, WEAR_R_HAND = /obj/item/storage/fancy/crayons, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/storage/large_holster/machete/full + WEAR_L_HAND = /obj/item/weapon/butterfly/switchblade ) /datum/equipment_preset/synth/survivor/freelancer_synth @@ -317,10 +341,28 @@ WEAR_WAIST = /obj/item/storage/belt/marine, WEAR_HANDS = /obj/item/clothing/gloves/marine/veteran, WEAR_R_HAND = /obj/item/storage/pouch/flare/full, - WEAR_FEET = /obj/item/clothing/shoes/marine/upp, + WEAR_FEET = /obj/item/clothing/shoes/marine/upp/knife, WEAR_L_HAND = /obj/item/storage/large_holster/katana/full ) +/datum/equipment_preset/synth/survivor/surveyor_synth + name = "Survivor - Synthetic - Surveyor Synth" + equipment_to_spawn = list( + WEAR_HEAD = /obj/item/clothing/head/cmcap/flap, + WEAR_FACE = /obj/item/clothing/mask/tornscarf, + WEAR_BODY = /obj/item/clothing/under/rank/synthetic/utility, + WEAR_BACK = /obj/item/storage/backpack/lightpack/five_slot, + WEAR_IN_BACK = /obj/item/storage/box/m94, + WEAR_JACKET = /obj/item/clothing/suit/storage/windbreaker/windbreaker_covenant, + WEAR_IN_JACKET = /obj/item/device/binoculars, + WEAR_WAIST = /obj/item/storage/backpack/general_belt, + WEAR_IN_BELT = /obj/item/stack/flag/green, + WEAR_HANDS = /obj/item/clothing/gloves/marine/veteran, + WEAR_R_HAND = /obj/item/storage/box/lightstick, + WEAR_FEET = /obj/item/clothing/shoes/marine/knife, + WEAR_L_HAND = /obj/item/storage/large_holster/machete/full + ) + /datum/equipment_preset/synth/survivor/trucker_synth name = "Survivor - Synthetic - Trucker Synth" equipment_to_spawn = list( @@ -343,13 +385,31 @@ WEAR_IN_BACK = /obj/item/reagent_container/food/drinks/bottle/tequila, WEAR_IN_BACK = /obj/item/reagent_container/food/drinks/bottle/cognac, WEAR_IN_BACK = /obj/item/reagent_container/food/drinks/bottle/grenadine, - WEAR_IN_BACK = /obj/item/reagent_container/food/drinks/bottle/rum, - WEAR_JACKET = /obj/item/clothing/suit/storage/lawyer/bluejacket, + WEAR_JACKET = /obj/item/clothing/suit/storage/wcoat, + WEAR_IN_JACKET = /obj/item/reagent_container/food/drinks/bottle/rum, WEAR_HANDS = /obj/item/clothing/gloves/marine/black, WEAR_R_HAND = /obj/item/storage/beer_pack, WEAR_R_STORE = /obj/item/storage/pouch/tools/full, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/weapon/baseballbat + ) + +/datum/equipment_preset/synth/survivor/atc_synth + name = "Survivor - Synthetic - Landing Pad Attendant Synth" + equipment_to_spawn = list( + WEAR_R_EAR = /obj/item/clothing/ears/earmuffs, + WEAR_HEAD = /obj/item/clothing/head/cmcap, + WEAR_BODY = /obj/item/clothing/under/rank/synthetic/utility/yellow, + WEAR_BACK = /obj/item/storage/backpack/satchel/norm, + WEAR_IN_BACK = /obj/item/storage/box/m94, + WEAR_JACKET = /obj/item/clothing/suit/storage/hazardvest, + WEAR_IN_JACKET = /obj/item/device/binoculars, + WEAR_WAIST = /obj/item/storage/backpack/general_belt, + WEAR_IN_BELT = /obj/item/stack/flag/red, + WEAR_HANDS = /obj/item/clothing/gloves/marine/veteran, + WEAR_R_HAND = /obj/item/storage/box/lightstick/red, + WEAR_FEET = /obj/item/clothing/shoes/marine/knife, + WEAR_L_HAND = /obj/item/storage/large_holster/machete/full ) /datum/equipment_preset/synth/survivor/detective_synth @@ -362,7 +422,7 @@ WEAR_IN_BACK = /obj/item/device/taperecorder, WEAR_JACKET = /obj/item/clothing/suit/storage/det_suit/black, WEAR_IN_JACKET = /obj/item/weapon/telebaton, - WEAR_WAIST = /obj/item/storage/belt/security/MP/full, + WEAR_WAIST = /obj/item/storage/belt/security/MP/full/synth, WEAR_HANDS = /obj/item/clothing/gloves/black, WEAR_R_HAND = /obj/item/device/camera, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, @@ -403,18 +463,21 @@ WEAR_HEAD = /obj/item/clothing/head/soft/sec/corp, WEAR_L_EAR = /obj/item/device/radio/headset/distress/WY, WEAR_EYES = /obj/item/clothing/glasses/sunglasses/sechud, - WEAR_BODY = /obj/item/clothing/under/marine/officer/formal/servicedress, + WEAR_BODY = /obj/item/clothing/under/colonist/white_service, WEAR_BACK = /obj/item/storage/backpack/satchel/sec, - WEAR_IN_BACK = /obj/item/weapon/telebaton, + WEAR_IN_BACK = /obj/item/restraint/handcuffs, + WEAR_IN_BACK = /obj/item/restraint/handcuffs, WEAR_JACKET = /obj/item/clothing/suit/storage/webbing, - WEAR_WAIST = /obj/item/storage/belt/security/MP/full, + WEAR_WAIST = /obj/item/storage/belt/security/MP/full/synth, + WEAR_IN_JACKET = /obj/item/weapon/telebaton, WEAR_HANDS = /obj/item/clothing/gloves/black, WEAR_R_STORE = /obj/item/storage/pouch/tools/full, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/weapon/classic_baton ) survivor_variant = SECURITY_SURVIVOR + flags = EQUIPMENT_PRESET_EXTRA /datum/equipment_preset/synth/survivor/wy/protection_synth name = "Survivor - Synthetic - Corporate Protection Synth" @@ -427,9 +490,7 @@ WEAR_BODY = /obj/item/clothing/under/marine/veteran/pmc, WEAR_ACCESSORY = /obj/item/clothing/accessory/storage/droppouch, WEAR_IN_ACCESSORY = /obj/item/explosive/grenade/flashbang, - WEAR_IN_ACCESSORY = /obj/item/handcuffs/zip, - WEAR_IN_ACCESSORY = /obj/item/handcuffs/zip, - WEAR_BACK = /obj/item/storage/backpack/lightpack, + WEAR_BACK = /obj/item/storage/backpack/lightpack/five_slot, WEAR_IN_BACK = /obj/item/device/binoculars, WEAR_JACKET = /obj/item/clothing/suit/storage/hazardvest/black, WEAR_IN_JACKET = /obj/item/weapon/telebaton, @@ -439,6 +500,7 @@ ) survivor_variant = SECURITY_SURVIVOR + flags = EQUIPMENT_PRESET_EXTRA /datum/equipment_preset/synth/survivor/wy/corporate_synth name = "Survivor - Synthetic - Corporate Clerical Synth" @@ -446,13 +508,12 @@ role_comm_title = "WY Syn" equipment_to_spawn = list( WEAR_L_EAR = /obj/item/device/radio/headset/distress/WY, + WEAR_R_EAR = /obj/item/tool/pen/clicky, WEAR_BODY = /obj/item/clothing/under/suit_jacket/trainee, WEAR_BACK = /obj/item/storage/backpack/satchel/lockable, - WEAR_IN_BACK = /obj/item/paper, - WEAR_IN_BACK = /obj/item/paper, + WEAR_IN_BACK = /obj/item/notepad, WEAR_IN_BACK = /obj/item/folder, WEAR_IN_BACK = /obj/item/paper/research_notes/good, - WEAR_IN_BACK = /obj/item/tool/pen/clicky, WEAR_IN_BACK = /obj/item/device/taperecorder, WEAR_WAIST = /obj/item/storage/belt/utility/full, WEAR_HANDS = /obj/item/clothing/gloves/botanic_leather, @@ -462,6 +523,30 @@ ) survivor_variant = CORPORATE_SURVIVOR + flags = EQUIPMENT_PRESET_EXTRA + +/datum/equipment_preset/synth/survivor/icc_synth + name = "Survivor - Synthetic - Interstellar Commerce Commission Synthetic" + idtype = /obj/item/card/id/silver/cl + role_comm_title = "ICC Syn" + equipment_to_spawn = list( + WEAR_L_EAR = /obj/item/device/radio/headset/distress/CMB/limited, + WEAR_R_EAR = /obj/item/tool/pen/clicky, + WEAR_HEAD = /obj/item/clothing/head/hardhat/white, + WEAR_BODY = /obj/item/clothing/under/liaison_suit/black, + WEAR_BACK = /obj/item/storage/backpack/satchel/lockable, + WEAR_IN_BACK = /obj/item/notepad, + WEAR_IN_BACK = /obj/item/folder, + WEAR_IN_BACK = /obj/item/paper/research_notes/good, + WEAR_WAIST = /obj/item/clipboard, + WEAR_JACKET = /obj/item/clothing/suit/storage/hazardvest/yellow, + WEAR_IN_JACKET = /obj/item/device/taperecorder, + WEAR_FEET = /obj/item/clothing/shoes/dress, + WEAR_R_HAND = /obj/item/device/camera, + WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + ) + + survivor_variant = CORPORATE_SURVIVOR /datum/equipment_preset/synth/survivor/radiation_synth name = "Survivor - Synthetic - Radiation Synth" @@ -470,13 +555,12 @@ WEAR_BODY = /obj/item/clothing/under/marine/officer/engi, WEAR_BACK = /obj/item/storage/backpack/satchel/eng, WEAR_IN_BACK = /obj/item/tool/weldingtool/hugetank, - WEAR_IN_BACK = /obj/item/storage/firstaid/toxin, WEAR_JACKET = /obj/item/clothing/suit/radiation, WEAR_WAIST = /obj/item/tank/emergency_oxygen/double, WEAR_HANDS = /obj/item/clothing/gloves/yellow, - WEAR_R_HAND = /obj/item/device/motiondetector, + WEAR_R_HAND = /obj/item/storage/pouch/electronics/full, WEAR_FEET = /obj/item/clothing/shoes/marine/knife, - WEAR_L_HAND = /obj/item/weapon/twohanded/fireaxe + WEAR_L_HAND = /obj/item/maintenance_jack ) survivor_variant = ENGINEERING_SURVIVOR @@ -492,13 +576,30 @@ rank = JOB_WORKING_JOE skills = /datum/skills/working_joe languages = list(LANGUAGE_ENGLISH, LANGUAGE_APOLLO, LANGUAGE_RUSSIAN, LANGUAGE_JAPANESE, LANGUAGE_GERMAN, LANGUAGE_SPANISH, LANGUAGE_CHINESE) + /// Used to set species when loading race + var/joe_type = SYNTH_WORKING_JOE /datum/equipment_preset/synth/working_joe/New() . = ..() access = get_access(ACCESS_LIST_GLOBAL) /datum/equipment_preset/synth/working_joe/load_race(mob/living/carbon/human/new_human) - new_human.set_species(SYNTH_WORKING_JOE) + . = ..() + new_human.set_species(joe_type) + new_human.h_style = "Bald" + new_human.f_style = "Shaved" + if(prob(5)) + new_human.grad_style = "None" //No gradients for Working Joes + new_human.h_style = "Shoulder-length Hair" //Added the chance of hair as per Monkeyfist lore accuracy + new_human.r_eyes = 0 + new_human.g_eyes = 0 + new_human.b_eyes = 0 + new_human.r_hair = 100 + new_human.g_hair = 88 + new_human.b_hair = 74 + new_human.r_facial = 255 + new_human.g_facial = 255 + new_human.b_facial = 255 /datum/equipment_preset/synth/working_joe/load_vanity(mob/living/carbon/human/new_human) return @@ -531,6 +632,7 @@ /datum/equipment_preset/synth/working_joe/engi name = "Synthetic - Hazmat Joe" + joe_type = SYNTH_HAZARD_JOE /datum/equipment_preset/synth/working_joe/engi/load_gear(mob/living/carbon/human/new_human) var/choice = rand(1,2) @@ -559,8 +661,10 @@ new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/large_stack(new_human.back), WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/glass/reinforced/large_stack(new_human.back), WEAR_IN_R_STORE) + /datum/equipment_preset/synth/working_joe/load_race(mob/living/carbon/human/new_human) . = ..() + new_human.set_species(joe_type) new_human.h_style = "Bald" new_human.f_style = "Shaved" if(prob(5)) @@ -654,7 +758,7 @@ rank = JOB_COLONIST skills = /datum/skills/infiltrator_synthetic idtype = /obj/item/card/id/lanyard - paygrade = "C" + paygrades = list(PAY_SHORT_CIV = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/synth/infiltrator/New() . = ..() @@ -668,11 +772,11 @@ var/datum/preferences/A = new() A.randomize_appearance(new_human) if(new_human.gender == MALE) - first_name = "[pick(first_names_male_colonist)]" + first_name = "[pick(GLOB.first_names_male_colonist)]" else - first_name ="[pick(first_names_female_colonist)]" + first_name ="[pick(GLOB.first_names_female_colonist)]" - last_name ="[pick(last_names_colonist)]" + last_name ="[pick(GLOB.last_names_colonist)]" random_name = "[first_name] [last_name]" new_human.change_real_name(new_human, random_name) var/static/list/colors = list("BLACK" = list(15, 15, 25), "BROWN" = list(102, 51, 0), "AUBURN" = list(139, 62, 19)) @@ -703,7 +807,7 @@ new_human.equip_to_slot_or_del(new /obj/item/stack/nanopaste(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/stack/nanopaste(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/tranquilizer(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full(new_human), WEAR_R_STORE) diff --git a/code/modules/gear_presets/upp.dm b/code/modules/gear_presets/upp.dm index ada9398189..0090b52764 100644 --- a/code/modules/gear_presets/upp.dm +++ b/code/modules/gear_presets/upp.dm @@ -21,18 +21,18 @@ if(prob(40)) first_name = "[capitalize(randomly_generate_chinese_word(1))]" else - first_name = "[pick(first_names_male_upp)]" + first_name = "[pick(GLOB.first_names_male_upp)]" new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") else if(prob(40)) first_name = "[capitalize(randomly_generate_chinese_word(1))]" else - first_name = "[pick(first_names_female_upp)]" + first_name = "[pick(GLOB.first_names_female_upp)]" //surname if(prob(35)) last_name = "[capitalize(randomly_generate_chinese_word(pick(20;1, 80;2)))]" else - last_name = "[pick(last_names_upp)]" + last_name = "[pick(GLOB.last_names_upp)]" //put them together random_name = "[first_name] [last_name]" @@ -56,6 +56,10 @@ //*****************************************************************************************************/ +//=====================// +// Frontline Roles // +//=================// + /datum/equipment_preset/upp/soldier name = "UPP Soldier" flags = EQUIPMENT_PRESET_EXTRA @@ -64,10 +68,9 @@ assignment = JOB_UPP rank = JOB_UPP role_comm_title = "Sol" - paygrade = "UE2" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_UE2 = JOB_PLAYTIME_TIER_1) /datum/equipment_preset/upp/soldier/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) //head @@ -75,10 +78,12 @@ //body var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) @@ -148,7 +153,7 @@ /datum/equipment_preset/upp/soldier/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UM5 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -233,7 +238,7 @@ assignment = JOB_UPP_MEDIC rank = JOB_UPP_MEDIC role_comm_title = "Med" - paygrade = "UE3" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/medic/load_gear(mob/living/carbon/human/new_human) //back @@ -253,12 +258,14 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD) //body new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET) //medic should move fast new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/bizon/upp, WEAR_J_STORE) //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/full, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //póckets var/obj/item/storage/pouch/magazine/large/ppouch = new() @@ -277,7 +284,7 @@ /datum/equipment_preset/upp/medic/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Medic Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/medic, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UL6 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/support, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -402,7 +409,7 @@ assignment = JOB_UPP_ENGI rank = JOB_UPP_ENGI role_comm_title = "Sap" - paygrade = "UE3" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/sapper/load_gear(mob/living/carbon/human/new_human) //Sappers should have lots of gear and whatnot that helps them attack or siege marines @@ -412,7 +419,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) //.33 new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) //.66 new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) //1.66 - new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/mini, WEAR_IN_BACK) //2.66 + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/upp/light, WEAR_IN_BACK) //2.66 //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/cct, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) @@ -425,6 +432,8 @@ var/obj/item/clothing/accessory/storage/tool_webbing/equipped/W = new() UPP.attach_accessory(new_human, W) new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/sapper, WEAR_J_STORE) @@ -432,7 +441,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp/sapper(new_human), WEAR_WAIST) //limb new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/insulated(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full(new_human), WEAR_R_STORE) @@ -440,7 +449,7 @@ /datum/equipment_preset/upp/sapper/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UM5 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -483,9 +492,9 @@ list("Essential Sapper Set", 0, /obj/effect/essentials_set/engi, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), list("HANDHELD DEFENSE (CHOOSE 1)", 0, null, null, null), - list("JIMA Planted Flag", 0, /obj/item/defenses/handheld/planted_flag, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), - list("UA 42-F Sentry Flamer", 0, /obj/item/defenses/handheld/sentry/flamer, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), - list("UA 571-C Sentry Gun", 0, /obj/item/defenses/handheld/sentry, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("UPP Planted Flag", 0, /obj/item/defenses/handheld/planted_flag/upp, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("UPP SDS-R5 Sentry Flamer", 0, /obj/item/defenses/handheld/sentry/flamer/upp, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), + list("UPPA 32-H sentry gun", 0, /obj/item/defenses/handheld/sentry/upp, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_MANDATORY), list("ENGINEERING SUPPLIES", 0, null, null, null), list("Airlock Circuit Board", 2, /obj/item/circuitboard/airlock, null, VENDOR_ITEM_REGULAR), @@ -536,7 +545,7 @@ assignment = JOB_UPP_SPECIALIST rank = JOB_UPP_SPECIALIST role_comm_title = "Spc" - paygrade = "UE5" + paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/specialist/load_gear(mob/living/carbon/human/new_human) //back @@ -551,9 +560,11 @@ //body var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) @@ -579,7 +590,7 @@ /datum/equipment_preset/upp/specialist/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UH7 Heavy Plated Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -663,7 +674,7 @@ assignment = JOB_UPP_SPECIALIST rank = JOB_UPP_SPECIALIST role_comm_title = "Spc" - paygrade = "UE5" + paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/machinegunner/load_gear(mob/living/carbon/human/new_human) //back @@ -678,9 +689,11 @@ //body var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, WEAR_JACKET) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) @@ -704,7 +717,7 @@ /datum/equipment_preset/upp/machinegunner/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UH7 Heavy Plated Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -788,7 +801,7 @@ assignment = JOB_UPP_LEADER rank = JOB_UPP_LEADER role_comm_title = "SL" - paygrade = "UE6" + paygrades = list(PAY_SHORT_UE6 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/leader/load_gear(mob/living/carbon/human/new_human) var/UPPleadsidearm = rand(1,4) @@ -810,6 +823,8 @@ var/obj/item/clothing/accessory/storage/webbing/W = new() UPP.attach_accessory(new_human, W) new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) @@ -826,7 +841,7 @@ if(4) //25% new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/revolver, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flamertank, WEAR_R_STORE) @@ -840,7 +855,7 @@ /datum/equipment_preset/upp/leader/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UH7 Heavy Plated Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/heavy, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -948,6 +963,10 @@ //*****************************************************************************************************/ +//=====================// +// Support Roles // +//=================// + /datum/equipment_preset/upp/military_police name = "UPP Military Police" flags = EQUIPMENT_PRESET_EXTRA @@ -956,7 +975,7 @@ assignment = JOB_UPP_POLICE rank = JOB_UPP_POLICE role_comm_title = "MP" - paygrade = "UE6" + paygrades = list(PAY_SHORT_UE6 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/military_police/load_gear(mob/living/carbon/human/new_human) //back @@ -969,6 +988,8 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret, WEAR_HEAD) //uniform new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/mp, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/mp, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars, WEAR_IN_JACKET) @@ -976,7 +997,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/UPP/full, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/autoinjector/full, WEAR_L_STORE) @@ -987,7 +1008,7 @@ /datum/equipment_preset/upp/military_police/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/mp, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("UL4 camouflaged jacket", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/mp, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), @@ -1100,6 +1121,234 @@ //*****************************************************************************************************/ + +/datum/equipment_preset/upp/doctor + name = "UPP Doctor" + flags = EQUIPMENT_PRESET_EXTRA + + skills = /datum/skills/upp/combat_medic + assignment = JOB_UPP_LT_DOKTOR + rank = JOB_UPP_LT_DOKTOR + role_comm_title = "Lt. Med." + paygrades = list(PAY_SHORT_UO1 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/upp/doctor/load_gear(mob/living/carbon/human/new_human) + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/np92, WEAR_IN_BACK) //targeting unarmed medical personal is not a war crime in aliens(primarily because, off memory, warcrimes aren't really a thing, although this definately is bad manners), and the playerbase is HRP in this concern!(if you don't get the joke, the players regularly execute unarmed doctors in hvh events. :D) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/ushanka, WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/medic/UPP = new() + var/obj/item/clothing/accessory/storage/surg_vest/equipped/W = new() + UPP.attach_accessory(new_human, W) + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/oxycodone, WEAR_IN_BELT) + //limbs + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) + //póckets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/oxycodone, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/tricordrazine, WEAR_IN_L_STORE) + + if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green, WEAR_FACE) + +/datum/equipment_preset/upp/doctor/get_antag_clothing_equipment() + return list( + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Medic Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/medic, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("UL6 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/support, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/distress/UPP, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("Ration", 0, /obj/item/reagent_container/food/snacks/upp, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Combat Pack", 0, /obj/item/storage/backpack/lightpack, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), + list("HealthMate HUD", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Ushanka", 0, /obj/item/clothing/head/uppcap/ushanka, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("BELT", 0, null, null, null), + list("Type 41 Lifesaver Bag", 0, /obj/item/storage/belt/medical/lifesaver/upp/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Auto-Injector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First Responder Pouch", 0, /obj/item/storage/pouch/first_responder, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Medical Pouch (Splints)", 0, /obj/item/storage/pouch/medical/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medical Pouch (Pills)", 0, /obj/item/storage/pouch/medical/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR) + ) + +/datum/equipment_preset/upp/doctor/get_antag_gear_equipment() + return list( + list("MEDIC SET (MANDATORY)", 0, null, null, null), + list("Essential Medic Set", 0, /obj/effect/essentials_set/medic/upp, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("FIELD SUPPLIES", 0, null, null, null), + list("Burn Kit", 2, /obj/item/stack/medical/advanced/ointment, null, VENDOR_ITEM_RECOMMENDED), + list("Trauma Kit", 2, /obj/item/stack/medical/advanced/bruise_pack, null, VENDOR_ITEM_RECOMMENDED), + list("Medical Splints", 1, /obj/item/stack/medical/splint, null, VENDOR_ITEM_RECOMMENDED), + + list("FIRSTAID KITS", 0, null, null, null), + list("Advanced Firstaid Kit", 12, /obj/item/storage/firstaid/adv, null, VENDOR_ITEM_RECOMMENDED), + list("Firstaid Kit", 5, /obj/item/storage/firstaid/regular/response, null, VENDOR_ITEM_REGULAR), + list("Fire Firstaid Kit", 6, /obj/item/storage/firstaid/fire, null, VENDOR_ITEM_REGULAR), + list("Toxin Firstaid Kit", 6, /obj/item/storage/firstaid/toxin, null, VENDOR_ITEM_REGULAR), + list("Oxygen Firstaid Kit", 6, /obj/item/storage/firstaid/o2, null, VENDOR_ITEM_REGULAR), + list("Radiation Firstaid Kit", 6, /obj/item/storage/firstaid/rad, null, VENDOR_ITEM_REGULAR), + + list("AUTOINJECTORS", 0, null, null, null), + list("Autoinjector (Bicaridine)", 1, /obj/item/reagent_container/hypospray/autoinjector/bicaridine, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Dexalin+)", 1, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Epinephrine)", 2, /obj/item/reagent_container/hypospray/autoinjector/adrenaline, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Inaprovaline)", 1, /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Kelotane)", 1, /obj/item/reagent_container/hypospray/autoinjector/kelotane, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Oxycodone)", 2, /obj/item/reagent_container/hypospray/autoinjector/oxycodone, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tramadol)", 1, /obj/item/reagent_container/hypospray/autoinjector/tramadol, null, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tricord)", 1, /obj/item/reagent_container/hypospray/autoinjector/tricord, null, VENDOR_ITEM_REGULAR), + + list("PILL BOTTLES", 0, null, null, null), + list("Pill Bottle (Bicaridine)", 5, /obj/item/storage/pill_bottle/bicaridine, null, VENDOR_ITEM_RECOMMENDED), + list("Pill Bottle (Dexalin)", 5, /obj/item/storage/pill_bottle/dexalin, null, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Dylovene)", 5, /obj/item/storage/pill_bottle/antitox, null, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Inaprovaline)", 5, /obj/item/storage/pill_bottle/inaprovaline, null, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Kelotane)", 5, /obj/item/storage/pill_bottle/kelotane, null, VENDOR_ITEM_RECOMMENDED), + list("Pill Bottle (Peridaxon)", 5, /obj/item/storage/pill_bottle/peridaxon, null, VENDOR_ITEM_REGULAR), + list("Pill Bottle (Tramadol)", 5, /obj/item/storage/pill_bottle/tramadol, null, VENDOR_ITEM_RECOMMENDED), + + list("MEDICAL UTILITIES", 0, null, null, null), + list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), + list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_REGULAR), + list("Roller Bed", 4, /obj/item/roller, null, VENDOR_ITEM_REGULAR), + list("Stasis Bag", 6, /obj/item/bodybag/cryobag, null, VENDOR_ITEM_REGULAR), + + list("UTILITIES", 0, null, null, null), + list("Brown Webbing Vest", 10, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_RECOMMENDED), + list("Black Webbing Vest", 10, /obj/item/clothing/accessory/storage/black_vest, null, VENDOR_ITEM_RECOMMENDED), + list("Fire Extinguisher (Portable)", 5, /obj/item/tool/extinguisher/mini, null, VENDOR_ITEM_REGULAR), + list("Large General Pouch", 10, /obj/item/storage/pouch/general/large, null, VENDOR_ITEM_REGULAR), + list("Shoulder Holster", 10, /obj/item/clothing/accessory/storage/holster, null, VENDOR_ITEM_REGULAR), + list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR), + ) + +//*****************************************************************************************************/ + +/datum/equipment_preset/upp/supply + name = "UPP Logistics Technician" + flags = EQUIPMENT_PRESET_EXTRA + + skills = /datum/skills/upp/logistics_technician + assignment = JOB_UPP_SUPPLY + rank = JOB_UPP_SUPPLY + role_comm_title = "Log." + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/upp/supply/load_gear(mob/living/carbon/human/new_human) + //back + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) + //face + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/cct, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + //head + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap(new_human), WEAR_HEAD) + //body + var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() + new_human.equip_to_slot_or_del(UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) + //limb + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction(new_human), WEAR_R_STORE) + +/datum/equipment_preset/upp/supply/get_antag_clothing_equipment() + return list( + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), + list("UM5 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), + list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/cct, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("Welding Goggles", 0, /obj/item/clothing/glasses/welding, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), + list("Ration", 0, /obj/item/reagent_container/food/snacks/upp, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Welderpack", 0, /obj/item/storage/backpack/marine/engineerpack/upp, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Armored Cap", 0, /obj/item/clothing/head/uppcap, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("UM4 Helmet", 0, /obj/item/clothing/head/helmet/marine/veteran/UPP, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("BELT (Choose 1)", 0, null, null, null), + list("Type 41 Ammo Load Rig", 0, /obj/item/storage/belt/marine/upp, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("Type 41 Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED), + + list("POUCHES (Choose 2)", 0, null, null, null), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Explosive Pouch", 0, /obj/item/storage/pouch/explosive, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", 0, /obj/item/storage/pouch/magazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pistol Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR) + ) + + +//*****************************************************************************************************/ + + +//====================// +// Field Officers // +//================// + /datum/equipment_preset/upp/officer name = "UPP Lieutenant" flags = EQUIPMENT_PRESET_EXTRA @@ -1108,7 +1357,7 @@ assignment = JOB_UPP_LT_OFFICER rank = JOB_UPP_LT_OFFICER role_comm_title = "Lt." - paygrade = "UO1" + paygrades = list(PAY_SHORT_UO1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/officer/load_gear(mob/living/carbon/human/new_human) //back @@ -1128,6 +1377,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/officer, WEAR_JACKET) @@ -1137,7 +1388,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1152,7 +1403,7 @@ /datum/equipment_preset/upp/officer/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -1233,9 +1484,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -1268,7 +1516,7 @@ assignment = JOB_UPP_SRLT_OFFICER rank = JOB_UPP_SRLT_OFFICER role_comm_title = "Sr-Lt." - paygrade = "UO2" + paygrades = list(PAY_SHORT_UO2 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/officer/senior/load_gear(mob/living/carbon/human/new_human) //back @@ -1288,6 +1536,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/officer, WEAR_JACKET) @@ -1297,7 +1547,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1312,7 +1562,7 @@ /datum/equipment_preset/upp/officer/senior/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -1393,9 +1643,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -1428,7 +1675,7 @@ assignment = JOB_UPP_KPT_OFFICER rank = JOB_UPP_KPT_OFFICER role_comm_title = "May." - paygrade = "UO3" + paygrades = list(PAY_SHORT_UO3 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/kapitan /datum/equipment_preset/upp/officer/kapitan/load_gear(mob/living/carbon/human/new_human) @@ -1449,6 +1696,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -1458,7 +1707,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1473,7 +1722,7 @@ /datum/equipment_preset/upp/officer/kapitan/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -1554,9 +1803,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -1589,7 +1835,7 @@ assignment = JOB_UPP_MAY_OFFICER rank = JOB_UPP_MAY_OFFICER role_comm_title = "May." - paygrade = "UO4" + paygrades = list(PAY_SHORT_UO4 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/major/load_gear(mob/living/carbon/human/new_human) @@ -1599,6 +1845,8 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) + //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -1610,6 +1858,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -1619,7 +1869,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1634,7 +1884,7 @@ /datum/equipment_preset/upp/officer/major/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -1715,9 +1965,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -1750,7 +1997,7 @@ assignment = JOB_UPP_LTKOL_OFFICER rank = JOB_UPP_LTKOL_OFFICER role_comm_title = "Lt. Kol." - paygrade = "UO5" + paygrades = list(PAY_SHORT_UO5 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/lt_kolonel/load_gear(mob/living/carbon/human/new_human) @@ -1760,6 +2007,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -1771,6 +2019,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -1780,7 +2030,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1795,7 +2045,7 @@ /datum/equipment_preset/upp/officer/lt_kolonel/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -1876,9 +2126,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -1911,7 +2158,7 @@ assignment = JOB_UPP_KOL_OFFICER rank = JOB_UPP_KOL_OFFICER role_comm_title = "Kol." - paygrade = "UO6" + paygrades = list(PAY_SHORT_UO6 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/kolonel/load_gear(mob/living/carbon/human/new_human) @@ -1921,6 +2168,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -1932,6 +2180,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -1941,7 +2191,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -1956,7 +2206,7 @@ /datum/equipment_preset/upp/officer/kolonel/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -2037,9 +2287,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -2067,12 +2314,16 @@ //*****************************************************************************************************/ +//===================// +// Flag Officers // +//===============// + /datum/equipment_preset/upp/officer/may_gen name = "UPP Mayjor General" assignment = JOB_UPP_KOL_OFFICER rank = JOB_UPP_KOL_OFFICER role_comm_title = "May. Gen." - paygrade = "UO7" + paygrades = list(PAY_SHORT_UO7 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/may_gen/load_gear(mob/living/carbon/human/new_human) @@ -2082,6 +2333,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -2093,6 +2345,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -2102,7 +2356,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -2117,7 +2371,7 @@ /datum/equipment_preset/upp/officer/may_gen/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -2198,9 +2452,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -2233,7 +2484,7 @@ assignment = JOB_UPP_KOL_OFFICER rank = JOB_UPP_KOL_OFFICER role_comm_title = "Lt. Gen." - paygrade = "UO8" + paygrades = list(PAY_SHORT_UO8 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/ley_gen/load_gear(mob/living/carbon/human/new_human) @@ -2243,6 +2494,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -2254,6 +2506,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -2263,7 +2517,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -2278,7 +2532,7 @@ /datum/equipment_preset/upp/officer/ley_gen/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -2359,9 +2613,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -2394,7 +2645,7 @@ assignment = JOB_UPP_KOL_OFFICER rank = JOB_UPP_KOL_OFFICER role_comm_title = "Gen." - paygrade = "UO9" + paygrades = list(PAY_SHORT_UO9 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/upp/commander /datum/equipment_preset/upp/officer/gen/load_gear(mob/living/carbon/human/new_human) @@ -2404,6 +2655,7 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/megaphone, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet/upp, WEAR_IN_BACK) //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) //head @@ -2415,6 +2667,8 @@ new_human.equip_to_slot_or_del(M, WEAR_BODY) for(var/i in 1 to W.hold.storage_slots) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //jacket new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/kapitan, WEAR_JACKET) @@ -2424,7 +2678,7 @@ //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/t73/leader, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_L_STORE) @@ -2439,7 +2693,7 @@ /datum/equipment_preset/upp/officer/gen/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/officer, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -2520,9 +2774,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -2559,8 +2810,8 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) //1.3 new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) //1.6 new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) //2 - new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) //3 - new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/mini, WEAR_IN_BACK) //4 + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry/upp/light, WEAR_IN_BACK) //3 + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_IN_BACK) //4 //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/cct, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) @@ -2580,23 +2831,28 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/upp/heavybuck(new_human), WEAR_WAIST) //limb new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/insulated(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) //pockets new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) //*****************************************************************************************************/ + +//===================// +// UPP Synthetics // +//================// + /datum/equipment_preset/upp/synth - name = "UPP Combat Synthetic" + name = "UPP Synthetic" flags = EQUIPMENT_PRESET_EXTRA languages = ALL_SYNTH_LANGUAGES_UPP skills = /datum/skills/synthetic - assignment = JOB_UPP_COMBAT_SYNTH - rank = JOB_UPP_COMBAT_SYNTH - paygrade = "SYN" - idtype = /obj/item/card/id/gold + assignment = JOB_UPP_SUPPORT_SYNTH + rank = JOB_UPP_SUPPORT_SYNTH + paygrades = list(PAY_SHORT_SYN = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/dogtag /datum/equipment_preset/upp/synth/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = pick(50;MALE,50;FEMALE) @@ -2606,9 +2862,9 @@ if(prob(10)) random_name = "[capitalize(randomly_generate_chinese_word(2))]" else if(new_human.gender == MALE) - random_name = "[pick(first_names_male_upp)]" + random_name = "[pick(GLOB.first_names_male_upp)]" else - random_name = "[pick(first_names_female_upp)]" + random_name = "[pick(GLOB.first_names_female_upp)]" if(new_human.gender == MALE) new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") @@ -2634,18 +2890,22 @@ /datum/equipment_preset/upp/synth/load_race(mob/living/carbon/human/new_human) new_human.set_species(SYNTH_GEN_THREE) +/datum/equipment_preset/upp/synth/load_skills(mob/living/carbon/human/new_human) + . = ..() + new_human.allow_gun_usage = FALSE + /datum/equipment_preset/upp/synth/load_gear(mob/living/carbon/human/new_human) - load_name(new_human) //back new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact, WEAR_IN_BACK) //1 - new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) //2 - new_human.equip_to_slot_or_del(new /obj/item/roller, WEAR_IN_BACK) //2.33 - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) //2.66 - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) //3 - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) //3.33 - //face + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/blood/OMinus, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/blood/OMinus, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) + //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver, WEAR_R_EAR) if(new_human.disabilities & NEARSIGHTED) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) else @@ -2655,27 +2915,29 @@ new_human.equip_to_slot_or_del(new hat, WEAR_HEAD) //body var/obj/item/clothing/under/marine/veteran/UPP/medic/UPP = new() - var/obj/item/clothing/accessory/storage/tool_webbing/equipped/W = new() - UPP.attach_accessory(new_human, W) + var/obj/item/clothing/accessory/storage/surg_vest/drop_green/upp/webbing = new() + UPP.attach_accessory(new_human, webbing) new_human.equip_to_slot_or_del(UPP, WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/bottle/tricordrazine, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/bizon/upp, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support/synth, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector/hacked, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) //waist - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/synth, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) - //póckets - var/obj/item/storage/pouch/magazine/large/ppouch = new() - new_human.equip_to_slot_or_del(ppouch, WEAR_R_STORE) - for(var/i = 1 to ppouch.storage_slots) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/bizon, WEAR_IN_R_STORE) + //pockets + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical/upp, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/surgical_line, WEAR_IN_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/tricordrazine, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/epinephrine, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/bottle/epinephrine, WEAR_IN_L_STORE) /datum/equipment_preset/upp/synth/get_antag_clothing_equipment() return list( @@ -2793,47 +3055,54 @@ list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), ) -//*****************************************************************************************************/ -/datum/equipment_preset/upp/conscript - //meme role - name = "UPP Conscript" +/datum/equipment_preset/upp/synth/combat + name = "UPP Combat Synthetic" flags = EQUIPMENT_PRESET_EXTRA - skills = /datum/skills/upp - assignment = JOB_UPP_CONSCRIPT - rank = JOB_UPP_CONSCRIPT - role_comm_title = "Cons" - paygrade = "UE1" + assignment = JOB_UPP_COMBAT_SYNTH + rank = JOB_UPP_COMBAT_SYNTH -/datum/equipment_preset/upp/conscript/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels +/datum/equipment_preset/upp/synth/combat/load_skills(mob/living/carbon/human/new_human) + . = ..() + new_human.allow_gun_usage = TRUE + +/datum/equipment_preset/upp/synth/combat/load_gear(mob/living/carbon/human/new_human) //back - var/maybebackpack = prob(20) ? pick(/obj/item/storage/backpack/lightpack/upp, /obj/item/storage/backpack/lightpack) : null - if(maybebackpack) - new_human.equip_to_slot_or_del(new maybebackpack, WEAR_BACK) //what in back? + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/surgical_line, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/epinephrine, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/bottle/epinephrine, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/blood/OMinus, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) //face - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) - + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver, WEAR_R_EAR) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) //head - var/maybehat = prob(66) ? pick(/obj/item/clothing/head/uppcap, /obj/item/clothing/head/uppcap/beret, /obj/item/clothing/head/ushanka, /obj/item/clothing/head/uppcap/ushanka) : null - if(maybehat) - new_human.equip_to_slot_or_del(new maybehat, WEAR_HEAD) - + var/hat = pick(/obj/item/clothing/head/uppcap, /obj/item/clothing/head/uppcap/beret, /obj/item/clothing/head/uppcap/ushanka) + new_human.equip_to_slot_or_del(new hat, WEAR_HEAD) //body var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() + var/obj/item/clothing/accessory/storage/surg_vest/drop_green/upp/webbing = new() + UPP.attach_accessory(new_human, webbing) new_human.equip_to_slot_or_del(UPP, WEAR_BODY) - - var/maybejacket = prob(50) ? pick(/obj/item/clothing/suit/storage/marine/faction/UPP/jacket, /obj/item/clothing/suit/storage/snow_suit/soviet) : null - if(maybejacket) - new_human.equip_to_slot_or_del(new maybejacket, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/bottle/vodka, WEAR_IN_JACKET) - //limit of snowcoat - new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/upp, WEAR_IN_JACKET) - + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/support, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/bizon, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/bizon, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/bizon/upp, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + //waist + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/synth, WEAR_WAIST) //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) var/maybegloves = prob(80) ? pick(/obj/item/clothing/gloves/black, /obj/item/clothing/gloves/marine/veteran/upp, /obj/item/clothing/gloves/combat) : null if(maybegloves) new_human.equip_to_slot_or_del(new maybegloves, WEAR_HANDS) @@ -2904,6 +3173,10 @@ //*****************************************************************************************************/ +//=================// +// UPP SpecFor // +//=============// + /datum/equipment_preset/upp/commando name = "UPP Commando (!DEATHSQUAD!)" flags = EQUIPMENT_PRESET_EXTRA @@ -2912,7 +3185,7 @@ assignment = JOB_UPP_COMMANDO rank = JOB_UPP_COMMANDO role_comm_title = "JKdo" - paygrade = "UC1" + paygrades = list(PAY_SHORT_UC1 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/data languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH, LANGUAGE_TSL, LANGUAGE_SPANISH, LANGUAGE_CHINESE) @@ -2921,16 +3194,17 @@ access = get_access(ACCESS_LIST_GLOBAL) /datum/equipment_preset/upp/commando/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92/suppressed, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -2943,15 +3217,15 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) spawn_weapon(/obj/item/weapon/gun/rifle/type71/carbine/commando, /obj/item/ammo_magazine/rifle/type71, new_human, 0, 8) /datum/equipment_preset/upp/commando/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/commando, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/kdo, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -3003,9 +3277,6 @@ list("Entrenching Tool", 2, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_RECOMMENDED), list("Sandbags x25", 5, /obj/item/stack/sandbags_empty/half, null, VENDOR_ITEM_RECOMMENDED), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -3041,18 +3312,19 @@ assignment = JOB_UPP_COMMANDO_MEDIC rank = JOB_UPP_COMMANDO_MEDIC role_comm_title = "2ndKdo" - paygrade = "UC2" + paygrades = list(PAY_SHORT_UC2 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/upp/commando/medic/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/medic, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -3074,15 +3346,15 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) spawn_weapon(/obj/item/weapon/gun/rifle/type71/carbine/commando, /obj/item/ammo_magazine/rifle/type71, new_human, 0, 5) /datum/equipment_preset/upp/commando/medic/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues Medic", 0, /obj/item/clothing/under/marine/veteran/UPP/medic, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/kdo/medic, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -3173,9 +3445,6 @@ list("Roller Bed", 4, /obj/item/roller, null, VENDOR_ITEM_REGULAR), list("Stasis Bag", 6, /obj/item/bodybag/cryobag, null, VENDOR_ITEM_REGULAR), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -3210,19 +3479,20 @@ assignment = JOB_UPP_COMMANDO_LEADER rank = JOB_UPP_COMMANDO_LEADER role_comm_title = "1stKdo" - paygrade = "UC3" + paygrades = list(PAY_SHORT_UC3 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/silver /datum/equipment_preset/upp/commando/leader/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/command, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -3237,8 +3507,8 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/handcuffs, WEAR_IN_BACK) spawn_weapon(/obj/item/weapon/gun/rifle/type71/carbine/commando, /obj/item/ammo_magazine/rifle/type71, new_human, 0, 7) @@ -3246,7 +3516,7 @@ /datum/equipment_preset/upp/commando/leader/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), list("Fatigues", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/commando, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP/kdo/command, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), @@ -3326,9 +3596,6 @@ list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), - list("SPECIAL AMMUNITION", 0, null, null, null), - list("Type 71 HEAP Magazine (5.45x39mm)", 10, /obj/item/ammo_magazine/rifle/type71/heap , null, VENDOR_ITEM_REGULAR), - list("ATTACHMENTS", 0, null, null, null), list("Angled Grip", 10, /obj/item/attachable/angledgrip/upp, null, VENDOR_ITEM_REGULAR), list("Extended Barrel", 10, /obj/item/attachable/extended_barrel, null, VENDOR_ITEM_REGULAR), @@ -3360,13 +3627,15 @@ /datum/equipment_preset/upp/commando/low_threat/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92/suppressed, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp/weak, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -3379,8 +3648,8 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) spawn_weapon(/obj/item/weapon/gun/rifle/type71/carbine/commando, /obj/item/ammo_magazine/rifle/type71, new_human, 0, 8) @@ -3388,15 +3657,16 @@ name = "UPP Commando Medic" /datum/equipment_preset/upp/commando/medic/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/medic, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/medic, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp/weak, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -3418,8 +3688,8 @@ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_JACKET) spawn_weapon(/obj/item/weapon/gun/rifle/type71/carbine/commando, /obj/item/ammo_magazine/rifle/type71, new_human, 0, 5) @@ -3427,15 +3697,16 @@ name = "UPP Commando Leader" /datum/equipment_preset/upp/commando/leader/load_gear(mob/living/carbon/human/new_human) - //TODO: add backpacks and satchels new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/kdo/command, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/faction/UPP/commando, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71/ap, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret, WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak/upp/weak, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc/upp, WEAR_FACE) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m42_night_goggles/upp, WEAR_EYES) @@ -3450,26 +3721,32 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large, WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/handcuffs, WEAR_IN_BACK) //*****************************************************************************************************/ +//============// +// Other // +//========// + /datum/equipment_preset/upp/tank name = "UPP Vehicle Crewman (TANK)" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_UPP_CREWMAN rank = JOB_UPP_CREWMAN - paygrade = "UE5" + paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) role_comm_title = "TANK" minimum_age = 30 skills = /datum/skills/tank_crew /datum/equipment_preset/upp/tank/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/cct(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) @@ -3572,135 +3849,195 @@ //*****************************************************************************************************/ -/datum/equipment_preset/upp/doctor - name = "UPP Doctor" +/datum/equipment_preset/upp/conscript + //meme role + name = "UPP Conscript" flags = EQUIPMENT_PRESET_EXTRA - skills = /datum/skills/upp/combat_medic - assignment = JOB_UPP_LT_DOKTOR - rank = JOB_UPP_LT_DOKTOR - role_comm_title = "Lt. Med." - paygrade = "UO1" + skills = /datum/skills/upp + assignment = JOB_UPP_CONSCRIPT + rank = JOB_UPP_CONSCRIPT + role_comm_title = "Cons" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0) -/datum/equipment_preset/upp/doctor/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/upp/conscript/load_gear(mob/living/carbon/human/new_human) //back - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp, WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/roller/surgical, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/np92, WEAR_IN_BACK) //targeting unarmed medical personal is not a war crime in aliens(primarily because, off memory, warcrimes aren't really a thing, although this definately is bad manners), and the playerbase is HRP in this concern!(if you don't get the joke, the players regularly execute unarmed doctors in hvh events. :D) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92, WEAR_IN_BACK) + var/maybebackpack = prob(20) ? pick(/obj/item/storage/backpack/lightpack/upp, /obj/item/storage/backpack/lightpack) : null + if(maybebackpack) + new_human.equip_to_slot_or_del(new maybebackpack, WEAR_BACK) //what in back? //face new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP, WEAR_L_EAR) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + //head - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/ushanka, WEAR_HEAD) + var/maybehat = prob(66) ? pick(/obj/item/clothing/head/uppcap, /obj/item/clothing/head/uppcap/beret, /obj/item/clothing/head/ushanka, /obj/item/clothing/head/uppcap/ushanka) : null + if(maybehat) + new_human.equip_to_slot_or_del(new maybehat, WEAR_HEAD) + //body - var/obj/item/clothing/under/marine/veteran/UPP/medic/UPP = new() - var/obj/item/clothing/accessory/storage/surg_vest/equipped/W = new() - UPP.attach_accessory(new_human, W) + var/obj/item/clothing/under/marine/veteran/UPP/UPP = new() new_human.equip_to_slot_or_del(UPP, WEAR_BODY) - //waist - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/upp/full, WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/oxycodone, WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + + var/maybejacket = prob(50) ? pick(/obj/item/clothing/suit/storage/marine/faction/UPP/jacket, /obj/item/clothing/suit/storage/snow_suit/soviet) : null + if(maybejacket) + new_human.equip_to_slot_or_del(new maybejacket, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/bottle/vodka, WEAR_IN_JACKET) + //limit of snowcoat + new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/upp, WEAR_IN_JACKET) + //limbs - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp, WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran/upp, WEAR_HANDS) - //póckets - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large, WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/snacks/upp, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical, WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/autoinjector/oxycodone, WEAR_IN_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/hypospray/tricordrazine, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp/knife, WEAR_FEET) + var/maybegloves = prob(80) ? pick(/obj/item/clothing/gloves/black, /obj/item/clothing/gloves/marine/veteran/upp, /obj/item/clothing/gloves/combat) : null + if(maybegloves) + new_human.equip_to_slot_or_del(new maybegloves, WEAR_HANDS) + + //gun + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/type71/carbine, WEAR_R_HAND) + + //webbing or belt? + if(prob(30)) + var/obj/item/clothing/accessory/storage/webbing/W = new() + UPP.attach_accessory(new_human, W) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/type71, WEAR_IN_ACCESSORY) + else if(prob(30)) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/upp/scarce, WEAR_WAIST) + //if you fail the rolls you must scavenge the ammo from your fallen brethren if(SSmapping.configs[GROUND_MAP].environment_traits[MAP_COLD]) new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green, WEAR_FACE) -/datum/equipment_preset/upp/doctor/get_antag_clothing_equipment() + if(prob(10)) + //sometimes Ivan smiles upon the corps + new_human.set_species("Human Hero") + +/datum/equipment_preset/upp/conscript/get_antag_clothing_equipment() return list( list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), - list("Boots", 0, /obj/item/clothing/shoes/marine/upp, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), - list("Medic Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP/medic, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), - list("UL6 Personal Armor", 0, /obj/item/clothing/suit/storage/marine/faction/UPP/support, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_MANDATORY), - list("Gloves", 0, /obj/item/clothing/gloves/marine/veteran/upp, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Boots", 0, /obj/item/clothing/shoes/marine/upp/knife, MARINE_CAN_BUY_SHOES, VENDOR_ITEM_MANDATORY), + list("Fatigues", 0, /obj/item/clothing/under/marine/veteran/UPP, MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY), list("Headset", 0, /obj/item/device/radio/headset/distress/UPP, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), list("Ration", 0, /obj/item/reagent_container/food/snacks/upp, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), - list("Combat Pack", 0, /obj/item/storage/backpack/lightpack, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_MANDATORY), - list("HealthMate HUD", 0, /obj/item/clothing/glasses/hud/health, MARINE_CAN_BUY_GLASSES, VENDOR_ITEM_MANDATORY), - list("HELMET (CHOOSE 1)", 0, null, null, null), - list("Ushanka", 0, /obj/item/clothing/head/uppcap/ushanka, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("HELMET", 0, null, null, null), + list("Armored Cap", 0, /obj/item/clothing/head/uppcap, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_MANDATORY), + list("Armored Ushanka", 0, /obj/item/clothing/head/uppcap/ushanka, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), - list("BELT", 0, null, null, null), - list("Type 41 Lifesaver Bag", 0, /obj/item/storage/belt/medical/lifesaver/upp/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), + list("BELT (CHOOSE 1)", 0, null, null, null), + list("Type 41 Pistol Holster Rig", 0, /obj/item/storage/belt/gun/m4a3, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), list("POUCHES (CHOOSE 2)", 0, null, null, null), - list("Auto-Injector Pouch", 0, /obj/item/storage/pouch/autoinjector, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("First Responder Pouch", 0, /obj/item/storage/pouch/first_responder, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Bayonet Sheath", 0, /obj/item/storage/pouch/bayonet/upp, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), - list("Medical Pouch (Splints)", 0, /obj/item/storage/pouch/medical/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Medical Pouch (Pills)", 0, /obj/item/storage/pouch/medical/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), - list("Medical Kit Pouch", 0, /obj/item/storage/pouch/medkit, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("ATTACHMENT (CHOOSE 1)", 0, null, null, null), + list("Laser Sight", 0, /obj/item/attachable/lasersight, MARINE_CAN_BUY_ATTACHMENT, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Tactical Bandana", 0, /obj/item/clothing/mask/rebreather/scarf/tacticalmask/green, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR) + ) + +/datum/equipment_preset/upp/conscript/get_antag_gear_equipment() + return list( + list("ENGINEERING SUPPLIES", 0, null, null, null), + list("Entrenching Tool", 2, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_RECOMMENDED), + list("Sandbags x25", 5, /obj/item/stack/sandbags_empty/half, null, VENDOR_ITEM_RECOMMENDED), + + list("EXPLOSIVES", 0, null, null, null), + list("Smoke Grenade", 5, /obj/item/explosive/grenade/smokebomb, null, VENDOR_ITEM_REGULAR), + + list("UTILITIES", 0, null, null, null), + list("Brown Webbing Vest", 10, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_RECOMMENDED), + list("Black Webbing Vest", 10, /obj/item/clothing/accessory/storage/black_vest, null, VENDOR_ITEM_RECOMMENDED), + list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR), + list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR) + ) + + +/datum/equipment_preset/upp/commissar + name = "UPP Political Commissar" + flags = EQUIPMENT_PRESET_EXTRA + + assignment = JOB_UPP_COMMISSAR + rank = JOB_UPP_COMMISSAR + paygrades = list(PAY_SHORT_UO4P = JOB_PLAYTIME_TIER_0) + role_comm_title = "Commissar" + minimum_age = 30 + skills = /datum/skills/upp/commissar + +/datum/equipment_preset/upp/commissar/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/upp/naval, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/revolver(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/gimmick/jason(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/beret(new_human), WEAR_HEAD) + +/datum/equipment_preset/upp/commissar/load_status() + return + +/datum/equipment_preset/upp/commissar/get_antag_clothing_equipment() + return list( + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("UL2 Cap", 0, /obj/item/clothing/head/uppcap, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("UL3 Beret", 0, /obj/item/clothing/head/uppcap/beret, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("UL8 Ushanka", 0, /obj/item/clothing/head/uppcap/beret, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("UM4 Helmet", 0, /obj/item/clothing/head/helmet/marine/veteran/UPP, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("First-Aid Pouch (Full)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Large General Pouch", 0, /obj/item/storage/pouch/general/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Sling Pouch", 0, /obj/item/storage/pouch/sling, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Large Pistol Magazine Pouch", 0, /obj/item/storage/pouch/magazine/pistol/large, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Magazine Pouch", 0, /obj/item/storage/pouch/magazine, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Sidearm Pouch", 0, /obj/item/storage/pouch/pistol, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), list("MASK (CHOOSE 1)", 0, null, null, null), list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), - list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR) + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), ) -/datum/equipment_preset/upp/doctor/get_antag_gear_equipment() +/datum/equipment_preset/upp/commissar/get_antag_gear_equipment() return list( - list("MEDIC SET (MANDATORY)", 0, null, null, null), - list("Essential Medic Set", 0, /obj/effect/essentials_set/medic/upp, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + list("SQUAD LEADER SET (MANDATORY)", 0, null, null, null), + list("Essential SL Set", 0, /obj/effect/essentials_set/leader/upp, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), - list("FIELD SUPPLIES", 0, null, null, null), - list("Burn Kit", 2, /obj/item/stack/medical/advanced/ointment, null, VENDOR_ITEM_RECOMMENDED), - list("Trauma Kit", 2, /obj/item/stack/medical/advanced/bruise_pack, null, VENDOR_ITEM_RECOMMENDED), - list("Medical Splints", 1, /obj/item/stack/medical/splint, null, VENDOR_ITEM_RECOMMENDED), + list("GENERAL SUPPLIES", 0, null, null, null), + list("Whistle", 5, /obj/item/device/whistle, null, VENDOR_ITEM_REGULAR), - list("FIRSTAID KITS", 0, null, null, null), - list("Advanced Firstaid Kit", 12, /obj/item/storage/firstaid/adv, null, VENDOR_ITEM_RECOMMENDED), - list("Firstaid Kit", 5, /obj/item/storage/firstaid/regular/response, null, VENDOR_ITEM_REGULAR), - list("Fire Firstaid Kit", 6, /obj/item/storage/firstaid/fire, null, VENDOR_ITEM_REGULAR), - list("Toxin Firstaid Kit", 6, /obj/item/storage/firstaid/toxin, null, VENDOR_ITEM_REGULAR), - list("Oxygen Firstaid Kit", 6, /obj/item/storage/firstaid/o2, null, VENDOR_ITEM_REGULAR), - list("Radiation Firstaid Kit", 6, /obj/item/storage/firstaid/rad, null, VENDOR_ITEM_REGULAR), + list("ENGINEERING SUPPLIES", 0, null, null, null), + list("Entrenching Tool", 2, /obj/item/tool/shovel/etool, null, VENDOR_ITEM_REGULAR), + list("Insulated Gloves", 3, /obj/item/clothing/gloves/yellow, null, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 5, /obj/item/storage/pouch/tools/full, null, VENDOR_ITEM_REGULAR), + list("Welding Goggles", 5, /obj/item/clothing/glasses/welding, null, VENDOR_ITEM_REGULAR), - list("AUTOINJECTORS", 0, null, null, null), - list("Autoinjector (Bicaridine)", 1, /obj/item/reagent_container/hypospray/autoinjector/bicaridine, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Dexalin+)", 1, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Epinephrine)", 2, /obj/item/reagent_container/hypospray/autoinjector/adrenaline, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Inaprovaline)", 1, /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Kelotane)", 1, /obj/item/reagent_container/hypospray/autoinjector/kelotane, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Oxycodone)", 2, /obj/item/reagent_container/hypospray/autoinjector/oxycodone, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tramadol)", 1, /obj/item/reagent_container/hypospray/autoinjector/tramadol, null, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tricord)", 1, /obj/item/reagent_container/hypospray/autoinjector/tricord, null, VENDOR_ITEM_REGULAR), + list("MEDICAL SUPPLIES", 0, null, null, null), + list("Burn Kit", 2, /obj/item/stack/medical/advanced/ointment, null, VENDOR_ITEM_REGULAR), + list("Trauma Kit", 2, /obj/item/stack/medical/advanced/bruise_pack, null, VENDOR_ITEM_REGULAR), + list("Advanced Firstaid Kit", 12, /obj/item/storage/firstaid/adv, null, VENDOR_ITEM_REGULAR), + list("Medical Splints", 1, /obj/item/stack/medical/splint, null, VENDOR_ITEM_REGULAR), - list("PILL BOTTLES", 0, null, null, null), - list("Pill Bottle (Bicaridine)", 5, /obj/item/storage/pill_bottle/bicaridine, null, VENDOR_ITEM_RECOMMENDED), - list("Pill Bottle (Dexalin)", 5, /obj/item/storage/pill_bottle/dexalin, null, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Dylovene)", 5, /obj/item/storage/pill_bottle/antitox, null, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Inaprovaline)", 5, /obj/item/storage/pill_bottle/inaprovaline, null, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Kelotane)", 5, /obj/item/storage/pill_bottle/kelotane, null, VENDOR_ITEM_RECOMMENDED), - list("Pill Bottle (Peridaxon)", 5, /obj/item/storage/pill_bottle/peridaxon, null, VENDOR_ITEM_REGULAR), - list("Pill Bottle (Tramadol)", 5, /obj/item/storage/pill_bottle/tramadol, null, VENDOR_ITEM_RECOMMENDED), + list("Injector (Bicaridine)", 1, /obj/item/reagent_container/hypospray/autoinjector/bicaridine, null, VENDOR_ITEM_REGULAR), + list("Injector (Dexalin+)", 1, /obj/item/reagent_container/hypospray/autoinjector/dexalinp, null, VENDOR_ITEM_REGULAR), + list("Injector (Inaprovaline)", 1, /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, null, VENDOR_ITEM_REGULAR), + list("Injector (Kelotane)", 1, /obj/item/reagent_container/hypospray/autoinjector/kelotane, null, VENDOR_ITEM_REGULAR), + list("Injector (Oxycodone)", 2, /obj/item/reagent_container/hypospray/autoinjector/oxycodone, null, VENDOR_ITEM_REGULAR), + list("Injector (Tramadol)", 1, /obj/item/reagent_container/hypospray/autoinjector/tramadol, null, VENDOR_ITEM_REGULAR), + list("Injector (Tricord)", 1, /obj/item/reagent_container/hypospray/autoinjector/tricord, null, VENDOR_ITEM_REGULAR), - list("MEDICAL UTILITIES", 0, null, null, null), list("Health Analyzer", 4, /obj/item/device/healthanalyzer, null, VENDOR_ITEM_REGULAR), - list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_REGULAR), - list("Roller Bed", 4, /obj/item/roller, null, VENDOR_ITEM_REGULAR), - list("Stasis Bag", 6, /obj/item/bodybag/cryobag, null, VENDOR_ITEM_REGULAR), + list("Medical HUD Glasses", 4, /obj/item/clothing/glasses/hud/health, null, VENDOR_ITEM_MANDATORY), list("UTILITIES", 0, null, null, null), list("Brown Webbing Vest", 10, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_RECOMMENDED), diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm index 6f60809d0f..3a4a2bf1d3 100644 --- a/code/modules/gear_presets/uscm.dm +++ b/code/modules/gear_presets/uscm.dm @@ -16,9 +16,9 @@ service_hat = list(/obj/item/clothing/head/cmcap) service_shoes = list(/obj/item/clothing/shoes/dress) - dress_under = list(/obj/item/clothing/under/marine/dress) - dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress) - dress_hat = list(/obj/item/clothing/head/marine/peaked) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) dress_gloves = list(/obj/item/clothing/gloves/marine/dress) dress_shoes = list(/obj/item/clothing/shoes/dress) var/auto_squad_name @@ -30,23 +30,23 @@ /datum/equipment_preset/uscm/load_preset(mob/living/carbon/human/new_human, randomise, count_participant) . = ..() - if(!auto_squad_name || (is_admin_level(new_human.z) && !ert_squad)) + if(!auto_squad_name || (should_block_game_interaction(new_human) && !ert_squad)) return if(!GLOB.data_core.manifest_modify(new_human.real_name, WEAKREF(new_human), assignment, rank)) GLOB.data_core.manifest_inject(new_human) - var/obj/item/card/id/ID = new_human.wear_id + var/obj/item/card/id/ID = new_human.get_idcard() var/datum/money_account/acct = create_account(new_human, rand(30, 50), GLOB.paygrades[ID.paygrade]) ID.associated_account_number = acct.account_number var/datum/squad/auto_squad = get_squad_by_name(auto_squad_name) if(auto_squad) - transfer_marine_to_squad(new_human, auto_squad, new_human.assigned_squad, new_human.wear_id) + transfer_marine_to_squad(new_human, auto_squad, new_human.assigned_squad, ID) if(!ert_squad && !auto_squad.active) auto_squad.engage_squad(FALSE) if(!auto_squad) - transfer_marine_to_squad(new_human, pick(RoleAuthority.squads), new_human.assigned_squad, new_human.wear_id) + transfer_marine_to_squad(new_human, pick(GLOB.RoleAuthority.squads), new_human.assigned_squad, new_human.wear_id) new_human.marine_buyable_categories[MARINE_CAN_BUY_EAR] = 0 new_human.sec_hud_set_ID() @@ -102,33 +102,38 @@ access = list(ACCESS_MARINE_PREP) assignment = JOB_SQUAD_MARINE rank = JOB_SQUAD_MARINE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "RFN" skills = /datum/skills/pfc minimap_icon = "private" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/pfc/lesser_rank - paygrade = "ME1" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/pfc/upp name = "UPP Squad Rifleman" - paygrade = "UE2" + paygrades = list(PAY_SHORT_UE2 = JOB_PLAYTIME_TIER_0) access = list(ACCESS_UPP_GENERAL) languages = list(LANGUAGE_RUSSIAN) faction_group = list(FACTION_UPP) faction = FACTION_UPP /datum/equipment_preset/uscm/pfc/upp/lesser_rank - paygrade = "UE1" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/pfc/forecon name = "FORECON Squad Rifleman" - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pfc/recon /datum/equipment_preset/uscm/pfc/forecon/lesser_rank - paygrade = "ME2" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ @@ -139,35 +144,40 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SMARTPREP) assignment = JOB_SQUAD_SMARTGUN rank = JOB_SQUAD_SMARTGUN - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "SG" skills = /datum/skills/smartgunner minimap_icon = "smartgunner" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/sg/lesser_rank - paygrade = "ME3" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/sg/upp name = "UPP Squad Machinegunner" access = list(ACCESS_UPP_GENERAL, ACCESS_UPP_MACHINEGUN) assignment = "Machinegunner" - paygrade = "UE4" + paygrades = list(PAY_SHORT_UE4 = JOB_PLAYTIME_TIER_0) role_comm_title = "MG" languages = list(LANGUAGE_RUSSIAN) faction_group = list(FACTION_UPP) faction = FACTION_UPP /datum/equipment_preset/uscm/sg/upp/lesser_rank - paygrade = "UE3" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/sg/forecon name = "FORECON Squad Smartgunner" - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/smartgunner/recon /datum/equipment_preset/uscm/sg/forecon/lesser_rank - paygrade = "ME4" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ @@ -178,14 +188,15 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP) assignment = JOB_SQUAD_RTO rank = JOB_SQUAD_RTO - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "RTO" skills = /datum/skills/pfc minimap_icon = "rto" /datum/equipment_preset/uscm/rto/lesser_rank - paygrade = "ME3" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ @@ -201,9 +212,9 @@ ACCESS_MARINE_CHARLIE, ACCESS_MARINE_DELTA, ) - assignment = JOB_CREWMAN - rank = JOB_CREWMAN - paygrade = "ME4" + assignment = JOB_TANK_CREW + rank = JOB_TANK_CREW + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "CRMN" minimum_age = 30 skills = /datum/skills/tank_crew @@ -254,7 +265,7 @@ assignment = "Reconnaissance Vehicle Operator" role_comm_title = "RVO" - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) utility_under = list(/obj/item/clothing/under/marine/officer/tanker) @@ -303,11 +314,13 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP) assignment = JOB_SQUAD_SPECIALIST rank = JOB_SQUAD_SPECIALIST - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_3) role_comm_title = "Spc" skills = /datum/skills/specialist minimap_icon = "spec" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/spec/cryo name = "USCM Cryo Squad Weapons Specialist" @@ -351,20 +364,23 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_MEDPREP, ACCESS_MARINE_MEDBAY) assignment = JOB_SQUAD_MEDIC rank = JOB_SQUAD_MEDIC - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "HM" skills = /datum/skills/combat_medic minimap_icon = "medic" utility_under = list(/obj/item/clothing/under/marine/medic) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/medic/lesser_rank - paygrade = "ME3" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/medic/upp name = "UPP Sanitar" - paygrade = "UE4" + paygrades = list(PAY_SHORT_UE4 = JOB_PLAYTIME_TIER_0) access = list(ACCESS_UPP_GENERAL, ACCESS_UPP_MEDPREP, ACCESS_UPP_MEDICAL) assignment = "Sanitar" languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH, LANGUAGE_CHINESE) @@ -372,16 +388,18 @@ faction = FACTION_UPP /datum/equipment_preset/uscm/medic/upp/lesser_rank - paygrade = "UE3" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/medic/forecon name = "FORECON Squad Corpsman" assignment = "Squad Corpsman" - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/combat_medic/recon /datum/equipment_preset/uscm/medic/forecon/lesser_rank - paygrade = "ME4" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ @@ -392,14 +410,14 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_TL_PREP) assignment = JOB_SQUAD_TEAM_LEADER rank = JOB_SQUAD_TEAM_LEADER - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "SqSgt" skills = /datum/skills/tl minimap_icon = "tl" /datum/equipment_preset/uscm/tl/upp name = "UPP Squad Sergeant" - paygrade = "UE5" + paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) access = list(ACCESS_UPP_GENERAL, ACCESS_UPP_TLPREP) languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH, LANGUAGE_CHINESE) faction_group = list(FACTION_UPP) @@ -408,7 +426,7 @@ /datum/equipment_preset/uscm/tl/forecon name = "FORECON Assistant Squad Leader" assignment = "Assistant Squad Leader" - paygrade = "ME6" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0) role_comm_title = "aSL" skills = /datum/skills/tl/recon @@ -421,13 +439,15 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_ENGPREP, ACCESS_CIVILIAN_ENGINEERING) assignment = JOB_SQUAD_ENGI rank = JOB_SQUAD_ENGI - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_3) role_comm_title = "ComTech" skills = /datum/skills/combat_engineer minimap_icon = "engi" utility_under = list(/obj/item/clothing/under/marine/engineer) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/engineer/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel/tech @@ -452,7 +472,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP) assignment = JOB_SQUAD_LEADER rank = JOB_SQUAD_LEADER - paygrade = "ME7" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) role_comm_title = "PltSgt" minimum_age = 27 skills = /datum/skills/SL @@ -460,27 +480,30 @@ minimap_icon = "leader" /datum/equipment_preset/uscm/leader/lesser_rank - paygrade = "ME6" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/leader/upp name = "UPP Platoon Sergeant" access = list(ACCESS_UPP_GENERAL, ACCESS_UPP_LEADERSHIP, ACCESS_UPP_FLIGHT) languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH) //ground commander and stuff - paygrade = "UE7" + paygrades = list(PAY_SHORT_UE7 = JOB_PLAYTIME_TIER_0) faction_group = list(FACTION_UPP) faction = FACTION_UPP /datum/equipment_preset/uscm/leader/upp/lesser_rank - paygrade = "UE6" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UE6 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm/leader/forecon name = "FORECON Squad Leader" assignment = "Squad Leader" - paygrade = "ME8" + paygrades = list(PAY_SHORT_ME8 = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" /datum/equipment_preset/uscm/leader/forecon/lesser_rank - paygrade = "ME7" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ // ERT members that spawn with full gear from DEFCON @@ -492,21 +515,17 @@ access = list(ACCESS_MARINE_PREP) assignment = JOB_SQUAD_MARINE rank = JOB_SQUAD_MARINE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "RFN" skills = /datum/skills/pfc minimap_icon = "private" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/private_equipped/load_status(mob/living/carbon/human/new_human) new_human.nutrition = NUTRITION_NORMAL -/datum/equipment_preset/uscm/private_equipped/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME1" - return paygrade - /datum/equipment_preset/uscm/private_equipped/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) @@ -556,7 +575,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP) assignment = JOB_SQUAD_LEADER rank = JOB_SQUAD_LEADER - paygrade = "ME7" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) role_comm_title = "PltSgt" minimum_age = 27 skills = /datum/skills/SL @@ -571,7 +590,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/lead(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) @@ -615,11 +634,13 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SMARTPREP) assignment = JOB_SQUAD_SMARTGUN rank = JOB_SQUAD_SMARTGUN - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_3) role_comm_title = "SG" skills = /datum/skills/smartgunner minimap_icon = "smartgunner" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/smartgunner_equipped/load_status(mob/living/carbon/human/new_human) new_human.nutrition = NUTRITION_NORMAL @@ -698,13 +719,15 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_ENGPREP, ACCESS_CIVILIAN_ENGINEERING) assignment = JOB_SQUAD_ENGI rank = JOB_SQUAD_ENGI - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_3) role_comm_title = "ComTech" skills = /datum/skills/combat_engineer minimap_icon = "engi" utility_under = list(/obj/item/clothing/under/marine/engineer) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/engineer_equipped/load_status(mob/living/carbon/human/new_human) new_human.nutrition = NUTRITION_NORMAL @@ -744,13 +767,15 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_MEDPREP, ACCESS_MARINE_MEDBAY) assignment = JOB_SQUAD_MEDIC rank = JOB_SQUAD_MEDIC - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "HM" skills = /datum/skills/combat_medic minimap_icon = "medic" utility_under = list(/obj/item/clothing/under/marine/medic) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/medic_equipped/load_status(mob/living/carbon/human/new_human) new_human.nutrition = NUTRITION_NORMAL @@ -835,11 +860,13 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP) assignment = JOB_SQUAD_SPECIALIST rank = JOB_SQUAD_SPECIALIST - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_3) role_comm_title = "Spc" skills = /datum/skills/specialist minimap_icon = "spec" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) /datum/equipment_preset/uscm/specialist_equipped/load_status(mob/living/carbon/human/new_human) new_human.nutrition = NUTRITION_NORMAL @@ -905,7 +932,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_TL_PREP) assignment = JOB_SQUAD_TEAM_LEADER rank = JOB_SQUAD_TEAM_LEADER - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "SqSgt" skills = /datum/skills/tl @@ -924,7 +951,7 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp78(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/rto(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/tl(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/rto(src), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/rto(src), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(src), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/rto(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) @@ -968,7 +995,7 @@ skills = /datum/skills/commando/deathsquad auto_squad_name = SQUAD_SOF ert_squad = TRUE - paygrade = "ME6" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_3) minimap_icon = "private" @@ -1018,22 +1045,17 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical/socmed/full, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical/full, WEAR_R_STORE) -/datum/equipment_preset/uscm/marsoc/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) > JOB_PLAYTIME_TIER_2) - return "ME7" - return paygrade - //Covert Raiders /datum/equipment_preset/uscm/marsoc/covert - name = "Marine Raiders (!DEATHSQUAD! Covert)" + name = "Marine Raider (!DEATHSQUAD! Covert)" uses_special_name = TRUE /datum/equipment_preset/uscm/marsoc/covert/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = MALE - new_human.change_real_name(new_human, "[pick(nato_phonetic_alphabet)]") + new_human.change_real_name(new_human, "[pick(GLOB.nato_phonetic_alphabet)]") new_human.age = rand(20,30) + /datum/equipment_preset/uscm/marsoc/covert/load_rank(mob/living/carbon/human/new_human) - return "O" + return PAY_SHORT_CDNM //Team Leader /datum/equipment_preset/uscm/marsoc/sl @@ -1041,16 +1063,14 @@ assignment = JOB_MARINE_RAIDER_SL rank = JOB_MARINE_RAIDER_SL role_comm_title = "TL." - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_3) skills = /datum/skills/commando/deathsquad/leader minimap_icon = "leader" + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) -/datum/equipment_preset/uscm/marsoc/sl/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) > JOB_PLAYTIME_TIER_2) - return "MO2" - return paygrade //Codenamed Team Leader /datum/equipment_preset/uscm/marsoc/sl/covert @@ -1058,24 +1078,23 @@ uses_special_name = TRUE /datum/equipment_preset/uscm/marsoc/sl/covert/load_name(mob/living/carbon/human/new_human, randomise) new_human.gender = MALE - new_human.change_real_name(new_human, "[pick(nato_phonetic_alphabet)]") + new_human.change_real_name(new_human, "[pick(GLOB.nato_phonetic_alphabet)]") new_human.age = rand(20,30) + /datum/equipment_preset/uscm/marsoc/sl/covert/load_rank(mob/living/carbon/human/new_human) - return "O" + return PAY_SHORT_CDNM + //Officer /datum/equipment_preset/uscm/marsoc/cmd name = "Marine Raider Officer (!DEATHSQUAD!)" assignment = JOB_MARINE_RAIDER_CMD rank = JOB_MARINE_RAIDER_CMD role_comm_title = "CMD." - paygrade = "MO3" + paygrades = list(PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_3) skills = /datum/skills/commando/deathsquad/officer - -/datum/equipment_preset/uscm/marsoc/cmd/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) > JOB_PLAYTIME_TIER_3) - return "MO4" - return paygrade + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) /datum/equipment_preset/uscm/marsoc/low_threat name = "Marine Raider" @@ -1124,13 +1143,299 @@ assignment = JOB_MARINE_RAIDER_SL rank = JOB_MARINE_RAIDER_SL role_comm_title = "TL." - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_3) skills = /datum/skills/commando/deathsquad/leader minimap_icon = "leader" + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + +//############ Solar Devils (PvE Marines) ############# +//## Rifleman ##// +/datum/equipment_preset/uscm/rifleman_pve + name = "USCM Solar Devils Rifleman" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + access = list(ACCESS_MARINE_PREP) + assignment = JOB_SQUAD_MARINE + rank = JOB_SQUAD_MARINE + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) + role_comm_title = "RFN" + skills = /datum/skills/rifleman_pve + auto_squad_name = SQUAD_SOLAR + + minimap_icon = "private" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + +/datum/equipment_preset/uscm/rifleman_pve/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_MAX + +/datum/equipment_preset/uscm/rifleman_pve/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/largetank(new_human), WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/intel/chestrig(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/toolkit/full(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/high_explosive(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/incendiary(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/large_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/plasteel/medium_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + spawn_marine_fluff_items(new_human) + +//## Corpsman ##// +/datum/equipment_preset/uscm/medic_pve + name = "USCM Solar Devils Platoon Corpsman" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_MEDPREP, ACCESS_MARINE_MEDBAY) + assignment = JOB_PLT_MED + rank = JOB_SQUAD_MEDIC + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_3) + role_comm_title = "HM" + skills = /datum/skills/combat_medic_pve + auto_squad_name = SQUAD_SOLAR + + minimap_icon = "medic" + + utility_under = list(/obj/item/clothing/under/marine/medic) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + +/datum/equipment_preset/uscm/medic_pve/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/medic_pve/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/medic(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/med(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/largetank(new_human), WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/intel/chestrig(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full(new_human), WEAR_WAIST) + spawn_marine_fluff_items(new_human) + +//## Smartgunner ##// +/datum/equipment_preset/uscm/sg_pve + name = "USCM Solar Devils Smartgunner" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SMARTPREP) + assignment = JOB_SQUAD_SMARTGUN + rank = JOB_SQUAD_SMARTGUN + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_3) + role_comm_title = "SG" + skills = /datum/skills/smartgunner_pve + auto_squad_name = SQUAD_SOLAR + + minimap_icon = "smartgunner" + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + +/datum/equipment_preset/uscm/sg_pve/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/simple(new_human), WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_R_STORE) + spawn_marine_fluff_items(new_human) + +/datum/equipment_preset/uscm/sg_pve/load_status(mob/living/carbon/human/new_human) + +//## Team Leader ##// +/datum/equipment_preset/uscm/tl_pve + name = "USCM Solar Devils Team Leader" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_TL_PREP, ACCESS_MARINE_DROPSHIP) + assignment = JOB_SQUAD_TEAM_LEADER + rank = JOB_SQUAD_TEAM_LEADER + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_3) + role_comm_title = "FTL" + skills = /datum/skills/tl_pve + auto_squad_name = SQUAD_SOLAR + + minimap_icon = "tl" + +/datum/equipment_preset/uscm/tl_pve/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/tl_pve/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/tl(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) -/datum/equipment_preset/uscm/marsoc/sl/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) > JOB_PLAYTIME_TIER_2) - return "MO2" - return paygrade + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/largetank(new_human), WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/rto(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/toolkit/full(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/packet/high_explosive(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/defenses/handheld/sentry(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + spawn_marine_fluff_items(new_human) + +//## Squad Leader ##// +/datum/equipment_preset/uscm/sl_pve + name = "USCM Solar Devils Platoon Leader" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP) + assignment = JOB_PLT_SL + rank = JOB_SQUAD_LEADER + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_3) + role_comm_title = "SL" + skills = /datum/skills/sl_pve + auto_squad_name = SQUAD_SOLAR + + minimap_icon = "sl" + +/datum/equipment_preset/uscm/sl_pve/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/sl_pve/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/marine/cryo/tl(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/tool/screwdriver/tactical(new_human), WEAR_R_EAR) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/bruise_pack(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/stack/medical/splint(new_human), WEAR_IN_JACKET) + + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing/five_slots(new_human), WEAR_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wirecutters/tactical(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/wrench(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/device/multitool(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/largetank(new_human), WEAR_IN_ACCESSORY) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/intel/chestrig(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/toolkit/full(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/regular(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/large_stack(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/patch/devils(new_human), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human.back), WEAR_IN_BELT) + spawn_marine_fluff_items(new_human) diff --git a/code/modules/gear_presets/uscm_dress.dm b/code/modules/gear_presets/uscm_dress.dm index 393cc5b41a..0185b11816 100644 --- a/code/modules/gear_presets/uscm_dress.dm +++ b/code/modules/gear_presets/uscm_dress.dm @@ -5,7 +5,7 @@ rank = JOB_MARINE access = list(ACCESS_MARINE_PREP) minimum_age = 18 - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) role_comm_title = "Mar" skills = /datum/skills/pfc @@ -25,13 +25,13 @@ /datum/equipment_preset/uscm_event/dress/lcpl name = "Dress Blues - (E-3) Lance Corporal" - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) //NCOs/SNCOs// /datum/equipment_preset/uscm_event/dress/nco name = "Dress Blues - (E-4) Corporal" - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/SL dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) @@ -44,11 +44,11 @@ /datum/equipment_preset/uscm_event/dress/nco/sgt name = "Dress Blues - (E-5) Sergeant" - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/nco/snco name = "Dress Blues - (E-6) Staff Sergeant" - paygrade = "ME6" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/SEA access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP) @@ -58,29 +58,29 @@ /datum/equipment_preset/uscm_event/dress/nco/snco/gysgt name = "Dress Blues - (E-7) Gunnery Sergeant" - paygrade = "ME7" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/nco/snco/msgt name = "Dress Blues - (E-8) Master Sergeant" - paygrade = "ME8" + paygrades = list(PAY_SHORT_ME8 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/nco/snco/firstsgt name = "Dress Blues - (E-8E) First Sergeant" - paygrade = "ME8E" + paygrades = list(PAY_SHORT_ME8E = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/nco/snco/mgysgt name = "Dress Blues - (E-9) Master Gunnery Sergeant" - paygrade = "ME9" + paygrades = list(PAY_SHORT_ME9 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/nco/snco/sgtmaj name = "Dress Blues - (E-9E) Sergeant Major" - paygrade = "ME9E" + paygrades = list(PAY_SHORT_ME9E = JOB_PLAYTIME_TIER_0) //FIELD OFFICERS// /datum/equipment_preset/uscm_event/dress/officer name = "Dress Blues - (O-1) 2nd Lieutenant" - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/silver skills = /datum/skills/SO access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_MEDBAY) @@ -100,11 +100,11 @@ /datum/equipment_preset/uscm_event/dress/officer/firstlt name = "Dress Blues - (O-2) 1st Lieutenant" - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/officer/capt name = "Dress Blues - (O-3) Captain" - paygrade = "MO3" + paygrades = list(PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/gold skills = /datum/skills/XO @@ -115,7 +115,7 @@ /datum/equipment_preset/uscm_event/dress/officer/co name = "Dress Blues - (O-4) Major" - paygrade = "MO4" + paygrades = list(PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/gold skills = /datum/skills/commander @@ -125,19 +125,19 @@ /datum/equipment_preset/uscm_event/dress/officer/co/ltcol name = "Dress Blues - (O-5) Lieutenant Colonel" - paygrade = "MO5" + paygrades = list(PAY_SHORT_MO5 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/gold/council /datum/equipment_preset/uscm_event/dress/officer/co/col name = "Dress Blues - (O-6) Colonel" - paygrade = "MO6" + paygrades = list(PAY_SHORT_MO6 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/general //GENERAL OFFICERS// /datum/equipment_preset/uscm_event/dress/officer/general name = "Dress Blues - (O-8) Major General" - paygrade = "MO8" + paygrades = list(PAY_SHORT_MO8 = JOB_PLAYTIME_TIER_0) idtype = /obj/item/card/id/general skills = /datum/skills/general @@ -155,8 +155,8 @@ /datum/equipment_preset/uscm_event/dress/officer/general/ltgen name = "Dress Blues - (O-9) Lieutenant General" - paygrade = "MO9" + paygrades = list(PAY_SHORT_MO9 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/dress/officer/general/gen name = "Dress Blues - (O-10) General" - paygrade = "MO10" + paygrades = list(PAY_SHORT_MO10 = JOB_PLAYTIME_TIER_0) diff --git a/code/modules/gear_presets/uscm_event.dm b/code/modules/gear_presets/uscm_event.dm index 690400ee48..4a8776dc63 100644 --- a/code/modules/gear_presets/uscm_event.dm +++ b/code/modules/gear_presets/uscm_event.dm @@ -16,7 +16,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_COLONEL rank = JOB_COLONEL - paygrade = "MO6" + paygrades = list(PAY_SHORT_MO6 = JOB_PLAYTIME_TIER_0) role_comm_title = "COL" minimum_age = 40 skills = /datum/skills/general @@ -31,11 +31,11 @@ service_extra = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber) service_hat = list(/obj/item/clothing/head/beret/cm, /obj/item/clothing/head/beret/marine/commander/dress, /obj/item/clothing/head/beret/marine/commander/black) - dress_under = list(/obj/item/clothing/under/marine/dress, /obj/item/clothing/under/marine/officer/formal/servicedress) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/general) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) - dress_hat = list(/obj/item/clothing/head/marine/peaked/captain/white, /obj/item/clothing/head/marine/peaked/captain/black) dress_shoes = list(/obj/item/clothing/shoes/dress/commander) - dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/white, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit) /datum/equipment_preset/uscm_event/colonel/New() . = ..() @@ -61,7 +61,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_GENERAL rank = JOB_GENERAL - paygrade = "MO7" + paygrades = list(PAY_SHORT_MO7 = JOB_PLAYTIME_TIER_0) role_comm_title = "GEN" minimum_age = 50 skills = /datum/skills/general @@ -72,6 +72,10 @@ service_gloves = list(/obj/item/clothing/gloves/black, /obj/item/clothing/gloves/marine/dress) service_hat = list(/obj/item/clothing/head/general, /obj/item/clothing/head/beret/marine/commander/black) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/general) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + /datum/equipment_preset/uscm_event/general/New() . = ..() access = get_access(ACCESS_LIST_GLOBAL) @@ -94,38 +98,34 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/general(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/cotablet(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/mateba_case/general(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human.back), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human.back), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/flash, WEAR_IN_JACKET) new_human.equip_if_possible(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) -/datum/equipment_preset/uscm_event/general/o7 - name = "USCM O-7 - Brigadier General (High Command)" - paygrade = "MO7" - /datum/equipment_preset/uscm_event/general/o8 name = "USCM O-8 - Major General (High Command)" - paygrade = "MO8" + paygrades = list(PAY_SHORT_MO8 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/general/o9 name = "USCM O-9 - Lieutenant General (High Command)" - paygrade = "MO9" + paygrades = list(PAY_SHORT_MO9 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/general/o10 name = "USCM O-10 - General (High Command)" - paygrade = "MO10" + paygrades = list(PAY_SHORT_MO10 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_event/general/o10c name = "USCM O-10C - Assistant Commandant of the Marine Corps (High Command)" - paygrade = "MO10C" + paygrades = list(PAY_SHORT_MO10C = JOB_PLAYTIME_TIER_0) assignment = JOB_ACMC rank = JOB_ACMC role_comm_title = "ACMC" /datum/equipment_preset/uscm_event/general/o10s name = "USCM O-10S - Commandant of the Marine Corps (High Command)" - paygrade = "MO10S" + paygrades = list(PAY_SHORT_MO10S = JOB_PLAYTIME_TIER_0) assignment = JOB_CMC rank = JOB_CMC role_comm_title = "CMC" @@ -145,10 +145,14 @@ ) assignment = JOB_ORDNANCE_TECH rank = "UPP" - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "OT" skills = /datum/skills/spy + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/uscm_event/upp_spy/load_gear(mob/living/carbon/human/new_human) //TODO: add backpacks and satchels var/back_item = /obj/item/storage/backpack/marine/satchel/tech @@ -166,7 +170,7 @@ //TODO: preload all of those items before equipping the backpack //Otherwise, if you spawn the spy next to other people //they will see messages for them putting guns and explosives into their backpack... - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/np92/suppressed/tranq(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92/tranq(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/np92/tranq(new_human.back), WEAR_IN_BACK) @@ -192,14 +196,18 @@ access = get_access(ACCESS_LIST_MARINE_ALL) /datum/equipment_preset/uscm_event/provost/enforcer - name = "Provost Enforcer (ME5)" + name = "Provost Enforcer" assignment = JOB_PROVOST_ENFORCER rank = "Provost Enforcer" - paygrade = "ME5" + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) role_comm_title = "PvE" flags = EQUIPMENT_PRESET_EXTRA + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/uscm_event/provost/enforcer/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel/sec if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -229,19 +237,23 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/combat(new_human), WEAR_J_STORE) /datum/equipment_preset/uscm_event/provost/tml - name = "Provost Team Leader (ME6)" + name = "Provost Team Leader" skills = /datum/skills/CMP assignment = JOB_PROVOST_TML rank = "Provost Team Leader" - paygrade = "ME6" + paygrades = list(PAY_SHORT_CSPO = JOB_PLAYTIME_TIER_0) role_comm_title = "PvTML" flags = EQUIPMENT_PRESET_EXTRA + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/uscm_event/provost/tml/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel/sec if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -272,18 +284,22 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human), WEAR_IN_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/combat(new_human), WEAR_J_STORE) /datum/equipment_preset/uscm_event/provost/inspector - name = "Provost Inspector (PvI)" + name = "Provost Inspector" assignment = JOB_PROVOST_INSPECTOR rank = "Provost Inspector" - paygrade = "PvI" + paygrades = list(PAY_SHORT_PVI = JOB_PLAYTIME_TIER_0) role_comm_title = "PvI" flags = EQUIPMENT_PRESET_EXTRA + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + /datum/equipment_preset/uscm_event/provost/inspector/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel/sec if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -303,31 +319,90 @@ new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/light/flexi(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/handheld_distress_beacon/provost(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human), WEAR_IN_JACKET) + +/datum/equipment_preset/uscm_event/provost/inspector/chief + name = "Provost Chief Inspector" + + assignment = JOB_PROVOST_CINSPECTOR + rank = JOB_PROVOST_CINSPECTOR + paygrades = list(PAY_SHORT_PVCI = JOB_PLAYTIME_TIER_0) + role_comm_title = "PvCI" + flags = EQUIPMENT_PRESET_EXTRA + + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + +/datum/equipment_preset/uscm_event/provost/inspector/chief/load_gear(mob/living/carbon/human/new_human) + var/back_item = /obj/item/storage/backpack/satchel/sec + if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) + back_item = /obj/item/storage/backpack/security + + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/provost(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/mp/provost/chief(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/provost/chief(new_human), WEAR_JACKET) + if(new_human.disabilities & NEARSIGHTED) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud/prescription(new_human), WEAR_EYES) + else + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/sechud(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/mp/provost/chief(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/listening_bug/radio_linked/hc/pvst(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/light/flexi(new_human.back), WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/device/flash(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human), WEAR_IN_JACKET) /datum/equipment_preset/uscm_event/provost/inspector/advisor - name = "Provost Advisor (ME6)" + name = "Provost Advisor" assignment = JOB_PROVOST_ADVISOR rank = "Provost Advisor" - paygrade = "ME6" + paygrades = list(PAY_SHORT_CSPO = JOB_PLAYTIME_TIER_0) role_comm_title = "PvA" flags = EQUIPMENT_PRESET_EXTRA +/datum/equipment_preset/uscm_event/provost/marshal/deputy + name = "Provost Deputy Marshal (MO6)" + minimum_age = 45 + skills = /datum/skills/general + + assignment = JOB_PROVOST_DMARSHAL + rank = JOB_PROVOST_DMARSHAL + paygrades = list(PAY_SHORT_PVDM = JOB_PLAYTIME_TIER_0) + role_comm_title = PAY_SHORT_PVDM + flags = EQUIPMENT_PRESET_EXTRA + /datum/equipment_preset/uscm_event/provost/marshal - name = "Provost Marshal (MO6)" + name = "Provost Marshal (MO7)" minimum_age = 45 skills = /datum/skills/general assignment = JOB_PROVOST_MARSHAL rank = "Provost Marshal" - paygrade = "MO6" - role_comm_title = "PvM" + paygrades = list(PAY_SHORT_PVM = JOB_PLAYTIME_TIER_0) + role_comm_title = PAY_SHORT_PVM flags = EQUIPMENT_PRESET_EXTRA + dress_under = list(/obj/item/clothing/under/marine/dress/blues/general) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + /datum/equipment_preset/uscm_event/provost/marshal/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel/sec if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -348,15 +423,17 @@ new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/pistol/pmc_mateba(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/MP/provost/marshal(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/cotablet(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/handheld_distress_beacon/provost(new_human.back), WEAR_IN_BACK) /datum/equipment_preset/uscm_event/provost/marshal/sector - name = "Provost Sector Marshal (MO7)" + name = "Provost Sector Marshal (MO9)" minimum_age = 50 assignment = JOB_PROVOST_SMARSHAL rank = "Provost Sector Marshal" - paygrade = "MO7" - role_comm_title = "PvSM" + paygrades = list(PAY_SHORT_PVSM = JOB_PLAYTIME_TIER_0) + role_comm_title = PAY_SHORT_PVSM /datum/equipment_preset/uscm_event/provost/marshal/chief name = "Provost Chief Marshal (PvCM)" @@ -364,8 +441,8 @@ assignment = JOB_PROVOST_CMARSHAL rank = "Provost Chief Marshal" - paygrade = "PvCM" - role_comm_title = "PvCM" + paygrades = list(PAY_SHORT_PVCM = JOB_PLAYTIME_TIER_0) + role_comm_title = PAY_SHORT_PVCM /*****************************************************************************************************/ @@ -386,7 +463,7 @@ assignment = JOB_TIS_IO rank = "UAAC-TIS Intelligence Officer" - paygrade = "NO2" + paygrades = list(PAY_SHORT_NO2 = JOB_PLAYTIME_TIER_0) role_comm_title = "TIS-IO" flags = EQUIPMENT_PRESET_EXTRA @@ -413,7 +490,7 @@ assignment = JOB_TIS_SA rank = "UAAC-TIS Special Agent" - paygrade = "NO5" + paygrades = list(PAY_SHORT_NO5 = JOB_PLAYTIME_TIER_0) role_comm_title = "TIS-SA" flags = EQUIPMENT_PRESET_EXTRA diff --git a/code/modules/gear_presets/uscm_forecon.dm b/code/modules/gear_presets/uscm_forecon.dm new file mode 100644 index 0000000000..3c1db85291 --- /dev/null +++ b/code/modules/gear_presets/uscm_forecon.dm @@ -0,0 +1,300 @@ +/datum/equipment_preset/uscm/forecon + assignment = JOB_SQUAD_MARINE + rank = JOB_SQUAD_MARINE + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) + idtype = /obj/item/card/id/dogtag + role_comm_title = "FORECON" + rank = JOB_MARINE + faction_group = list(FACTION_MARINE) + flags = EQUIPMENT_PRESET_START_OF_ROUND + auto_squad_name = SQUAD_FORECON + ert_squad = TRUE + +/datum/equipment_preset/uscm/forecon/New() + . = ..() + access = get_access(ACCESS_LIST_UA) + + dress_shoes = list(/obj/item/clothing/shoes/dress) + dress_gloves = list(/obj/item/clothing/gloves/marine/dress) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + +/datum/equipment_preset/uscm/forecon/proc/add_forecon_weapon(mob/living/carbon/human/new_human) + var/random_gun = rand(1,3) + switch(random_gun) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/extended(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/extended(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap(new_human), WEAR_IN_BACK) + if(3) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ext(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ext(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/ap(new_human), WEAR_IN_BACK) + +/datum/equipment_preset/uscm/forecon/proc/spawn_random_headgear(mob/living/carbon/human/new_human) + var/i = rand(1,10) + switch(i) + if (1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap(new_human), WEAR_HEAD) + if (3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beanie(new_human), WEAR_HEAD) + if (5 , 6) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/durag(new_human), WEAR_HEAD) + if (7 , 8) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/boonie(new_human), WEAR_HEAD) + if (9) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine(new_human), WEAR_HEAD) + +/datum/equipment_preset/uscm/forecon/proc/spawn_random_tech_headgear(mob/living/carbon/human/new_human) + var/i = rand(1,4) + switch(i) + if (1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/tech(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) + if (3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/medic/white(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding(new_human), WEAR_EYES) + +/datum/equipment_preset/uscm/forecon/proc/add_forecon_weapon_pistol(mob/living/carbon/human/new_human) + var/random_pistol = rand(1,5) + switch(random_pistol) + if(1 , 2) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + if(3 , 4) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m39, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/m39(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/m39/extended(new_human), WEAR_IN_BELT) + if(5) + new_human.equip_to_slot_or_del(new /obj/item/device/motiondetector(new_human),WEAR_WAIST) + +/datum/equipment_preset/uscm/forecon/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm/forecon/standard + name = "USCM Reconnaissance Marine" + assignment = JOB_FORECON_RIFLEMAN + rank = JOB_SQUAD_MARINE + role_comm_title = "RFN" + minimap_icon = "" + skills = /datum/skills/military/survivor/forecon_standard + +/datum/equipment_preset/uscm/forecon/standard/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/recon(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + +/datum/equipment_preset/uscm/forecon/standard/load_gear(mob/living/carbon/human/new_human) + ..() + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + spawn_random_headgear(new_human) + add_forecon_weapon_pistol(new_human) + add_forecon_weapon(new_human) + +/datum/equipment_preset/uscm/forecon/tech + name = "USCM Reconnaissance Support Technician" + assignment = JOB_FORECON_SUPPORT + rank = JOB_SQUAD_TECH + role_comm_title = "SuppTech" + minimap_icon = "engi" + skills = /datum/skills/military/survivor/forecon_techician + +/datum/equipment_preset/uscm/forecon/tech/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/big(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/tactical/full(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full/forecon(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/surgical(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/defibrillator/compact(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool , WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/recon(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + + add_forecon_weapon(new_human) + spawn_random_tech_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/marksman + name = "USCM Reconnaissance Designated Marksman" + assignment = JOB_FORECON_MARKSMAN + rank = JOB_SQUAD_SPECIALIST + role_comm_title = "DMR" + minimap_icon = "spec" + skills = /datum/skills/military/survivor/forecon_marksman + +/datum/equipment_preset/uscm/forecon/marksman/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/M3S, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/explosive/plastic(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel/scout_cloak(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m4ra_custom/tactical(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom/impact(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m4ra/custom/incendiary(new_human), WEAR_IN_BACK) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + ..() + add_forecon_weapon_pistol(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/smartgunner + name = "USCM Reconnaissance Smartgunner" + assignment = JOB_FORECON_SMARTGUNNER + rank = JOB_SQUAD_SMARTGUN + role_comm_title = "SG" + minimap_icon = "smartgunner" + skills = /datum/skills/military/survivor/forecon_smartgunner + +/datum/equipment_preset/uscm/forecon/smartgunner/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/e5/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles(new_human), WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/pistol/m1911(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smartgun(new_human), WEAR_IN_BELT) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + spawn_random_headgear(new_human) + +/datum/equipment_preset/uscm/forecon/squad_leader + name = "USCM Reconnaissance Squad Leader" + assignment = JOB_FORECON_SL + rank = JOB_SQUAD_LEADER + role_comm_title = "SL" + skills = /datum/skills/military/survivor/forecon_squad_leader + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) + + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) + +/datum/equipment_preset/uscm/forecon/squad_leader/load_gear(mob/living/carbon/human/new_human) + var/obj/item/clothing/under/marine/reconnaissance/uniform = new() + var/obj/item/clothing/accessory/storage/droppouch/pouch = new() + var/obj/item/clothing/accessory/ranks/marine/o1/pin = new() + var/obj/item/clothing/accessory/patch/patch_uscm = new() + var/obj/item/clothing/accessory/patch/forecon/patch_forecon = new() + uniform.attach_accessory(new_human,pouch) + uniform.attach_accessory(new_human,patch_uscm) + uniform.attach_accessory(new_human,pin) + uniform.attach_accessory(new_human,patch_forecon) + + new_human.equip_to_slot_or_del(uniform, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1/tactical(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/satchel(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m41aMK1/ap(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/recon(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/food/drinks/flask/marine(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/facepaint/sniper(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range/designator(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/forecon(new_human), WEAR_L_EAR) + GLOB.character_traits[/datum/character_trait/skills/spotter].apply_trait(new_human) + + + + ..() + add_forecon_weapon_pistol(new_human) + spawn_random_headgear(new_human) diff --git a/code/modules/gear_presets/uscm_medical.dm b/code/modules/gear_presets/uscm_medical.dm index 54f2c71317..9b938b2500 100644 --- a/code/modules/gear_presets/uscm_medical.dm +++ b/code/modules/gear_presets/uscm_medical.dm @@ -3,22 +3,22 @@ flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) - utility_under = list(/obj/item/clothing/under/rank/medical/green) - utility_hat = list() - utility_gloves = list() - utility_shoes = list(/obj/item/clothing/shoes/white) - utility_extra = list() - - service_under = list() - service_over = list() - service_hat = list() - service_shoes = list(/obj/item/clothing/shoes/laceup) - - dress_under = list(/obj/item/clothing/under/suit_jacket) - dress_over = list() - dress_hat = list() + utility_under = list(/obj/item/clothing/under/marine) + utility_hat = list(/obj/item/clothing/head/cmcap) + utility_gloves = list(/obj/item/clothing/gloves/marine) + utility_shoes = list(/obj/item/clothing/shoes/marine) + utility_extra = list(/obj/item/clothing/head/beret/cm, /obj/item/clothing/head/beret/cm/tan) + + service_under = list(/obj/item/clothing/under/marine/officer/bridge) + service_over = list(/obj/item/clothing/suit/storage/jacket/marine/service, /obj/item/clothing/suit/storage/jacket/marine/service/mp) + service_hat = list(/obj/item/clothing/head/cmcap) + service_shoes = list(/obj/item/clothing/shoes/dress) + + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) dress_gloves = list(/obj/item/clothing/gloves/marine/dress) - dress_shoes = list(/obj/item/clothing/shoes/laceup) + dress_shoes = list(/obj/item/clothing/shoes/dress) /datum/equipment_preset/uscm_ship/uscm_medical/cmo name = "USCM Chief Medical Officer (CMO)" @@ -36,7 +36,7 @@ ) assignment = JOB_CMO rank = JOB_CMO - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_1) role_comm_title = "CMO" skills = /datum/skills/CMO @@ -44,43 +44,29 @@ minimap_background = MINIMAP_ICON_BACKGROUND_CIC utility_under = list(/obj/item/clothing/under/rank/chief_medical_officer) - utility_hat = list(/obj/item/clothing/head/cmo) - utility_gloves = list(/obj/item/clothing/gloves/latex) + utility_hat = list() + utility_gloves = list() utility_shoes = list(/obj/item/clothing/shoes/white) - utility_extra = list(/obj/item/clothing/suit/storage/labcoat) + utility_extra = list() /datum/equipment_preset/uscm_ship/uscm_medical/cmo/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel + var/back_item = /obj/item/storage/backpack/satchel if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/cmo(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/chief_medical_officer(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/decent(new_human), WEAR_IN_JACKET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/decent(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medical(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/surgical_line, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/surgery/synthgraft, WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/medkit/full_advanced(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmo(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer(new_human), WEAR_J_STORE) //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/uscm_medical/doctor - name = "USCM Surgeon" + name = "USCM Doctor" assignment = JOB_DOCTOR rank = JOB_DOCTOR - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "Doc" skills = /datum/skills/doctor @@ -91,25 +77,29 @@ if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/doc(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/green(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/blue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/medical/lifesaver/full, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/firstaid/adv, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/device/healthanalyzer, WEAR_IN_BACK) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) //Surgeon this part of the code is to change the name on your ID /datum/equipment_preset/uscm_ship/uscm_medical/doctor/surgeon - + name = "USCM Surgeon" assignment = JOB_SURGEON +/datum/equipment_preset/uscm_ship/uscm_medical/doctor/surgeon/load_gear(mob/living/carbon/human/new_human) + var/back_item = /obj/item/storage/backpack/marine/satchel + if (new_human.client?.prefs && new_human.client.prefs.backbag == 1) + back_item = /obj/item/storage/backpack/marine + + new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/green(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) + //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/uscm_medical/nurse @@ -117,35 +107,28 @@ assignment = JOB_NURSE rank = JOB_NURSE - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_1) role_comm_title = "Nurse" skills = /datum/skills/nurse minimap_icon = list("medic") + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + dress_gloves = list(/obj/item/clothing/gloves/marine/dress) + dress_shoes = list(/obj/item/clothing/shoes/dress) + /datum/equipment_preset/uscm_ship/uscm_medical/nurse/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/doc(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/medical/lightblue(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/armband/nurse(new_human), WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white(new_human), WEAR_FEET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/hud/health(new_human), WEAR_EYES) - - -/datum/equipment_preset/uscm_ship/uscm_medical/nurse/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME3" - return paygrade - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/uscm_medical/researcher name = "USCM Researcher" @@ -153,7 +136,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_RESEARCH, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_RESEARCHER rank = JOB_RESEARCHER - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "Rsr" skills = /datum/skills/researcher @@ -163,25 +146,18 @@ utility_hat = list() utility_gloves = list() utility_shoes = list(/obj/item/clothing/shoes/laceup) - utility_extra = list(/obj/item/clothing/suit/storage/labcoat/researcher) + utility_extra = list() service_under = list(/obj/item/clothing/under/marine/officer/researcher) /datum/equipment_preset/uscm_ship/uscm_medical/researcher/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel + var/back_item = /obj/item/storage/backpack/satchel if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/research(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/researcher(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) - if(new_human.disabilities & NEARSIGHTED) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science/prescription(new_human), WEAR_EYES) - else - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science(new_human), WEAR_EYES) - - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat/researcher(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/bad(new_human), WEAR_IN_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/reagent_container/syringe(new_human), WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/bad(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/syringe(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) diff --git a/code/modules/gear_presets/uscm_police.dm b/code/modules/gear_presets/uscm_police.dm index 619b88a1b6..5018f8d25e 100644 --- a/code/modules/gear_presets/uscm_police.dm +++ b/code/modules/gear_presets/uscm_police.dm @@ -27,7 +27,7 @@ ) assignment = JOB_POLICE rank = JOB_POLICE - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_3) role_comm_title = "MP" skills = /datum/skills/MP @@ -59,11 +59,6 @@ new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) -/datum/equipment_preset/uscm_ship/uscm_police/mp/load_rank(mob/living/carbon/human/human) - if(human.client && get_job_playtime(human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME3" - return paygrade - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/uscm_police/warden @@ -90,7 +85,7 @@ ) assignment = JOB_WARDEN rank = JOB_WARDEN - paygrade = "ME6" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_3) role_comm_title = "MW" skills = /datum/skills/MW @@ -150,7 +145,7 @@ ) assignment = JOB_CHIEF_POLICE rank = JOB_CHIEF_POLICE - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_1) role_comm_title = "CMP" skills = /datum/skills/CMP @@ -193,7 +188,7 @@ access = list() assignment = JOB_RIOT rank = JOB_RIOT - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "RMP" skills = /datum/skills/CMP @@ -224,8 +219,8 @@ new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/custom/teargas(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human.back), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human.back), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs(new_human.back), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/large/beanbag/riot(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/shotgun/large/beanbag/riot(new_human), WEAR_R_STORE) if(new_human.disabilities & NEARSIGHTED) @@ -241,6 +236,6 @@ assignment = JOB_RIOT_CHIEF rank = JOB_RIOT_CHIEF - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "CRMP" skills = /datum/skills/CMP diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index e6c37a7bbd..c59b26c3c6 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -9,7 +9,7 @@ new_human.gender = pick(75;MALE,25;FEMALE) var/datum/preferences/A = new A.randomize_appearance(new_human) - var/random_name = capitalize(pick(new_human.gender == MALE ? first_names_male : first_names_female)) + " " + capitalize(pick(last_names)) + var/random_name = capitalize(pick(new_human.gender == MALE ? GLOB.first_names_male : GLOB.first_names_female)) + " " + capitalize(pick(GLOB.last_names)) var/static/list/colors = list("BLACK" = list(15, 15, 10), "BROWN" = list(48, 38, 18), "BROWN" = list(48, 38, 18),"BLUE" = list(29, 51, 65), "GREEN" = list(40, 61, 39), "STEEL" = list(46, 59, 54)) var/static/list/hair_colors = list("BLACK" = list(15, 15, 10), "BROWN" = list(48, 38, 18), "AUBURN" = list(77, 48, 36), "BLONDE" = list(95, 76, 44)) var/hair_color = pick(hair_colors) @@ -42,9 +42,9 @@ service_hat = list(/obj/item/clothing/head/cmcap) service_shoes = list(/obj/item/clothing/shoes/dress) - dress_under = list(/obj/item/clothing/under/marine/dress) - dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress) - dress_hat = list(/obj/item/clothing/head/marine/peaked) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) dress_gloves = list(/obj/item/clothing/gloves/marine/dress) dress_shoes = list(/obj/item/clothing/shoes/dress) @@ -52,6 +52,7 @@ /datum/equipment_preset/uscm_ship/liaison name = "USCM Corporate Liaison (CL)" + faction_group = FACTION_LIST_MARINE_WY flags = EQUIPMENT_PRESET_START_OF_ROUND idtype = /obj/item/card/id/silver/cl @@ -71,29 +72,80 @@ ) assignment = JOB_CORPORATE_LIAISON rank = JOB_CORPORATE_LIAISON - paygrade = "WYC2" + paygrades = list(PAY_SHORT_WYC2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_WYC3 = JOB_PLAYTIME_TIER_2, PAY_SHORT_WYC4 = JOB_PLAYTIME_TIER_3, PAY_SHORT_WYC5 = JOB_PLAYTIME_TIER_4) role_comm_title = "CL" skills = /datum/skills/civilian minimap_icon = "cl" minimap_background = MINIMAP_ICON_BACKGROUND_CIVILIAN - utility_under = list(/obj/item/clothing/under/liaison_suit/black) - utility_hat = list() - utility_gloves = list() - utility_shoes = list(/obj/item/clothing/shoes/laceup) - utility_extra = list(/obj/item/clothing/under/liaison_suit/blue) - - service_under = list(/obj/item/clothing/under/liaison_suit/field) - service_over = list() - service_hat = list() - service_shoes = list(/obj/item/clothing/shoes/laceup) - - dress_under = list(/obj/item/clothing/under/liaison_suit/corporate_formal) - dress_over = list() - dress_hat = list() - dress_gloves = list(/obj/item/clothing/gloves/marine/dress) - dress_shoes = list(/obj/item/clothing/shoes/laceup) + dress_under = list( + /obj/item/clothing/under/liaison_suit/black, + /obj/item/clothing/under/liaison_suit/blue, + /obj/item/clothing/under/liaison_suit/brown, + /obj/item/clothing/under/liaison_suit/corporate_formal, + /obj/item/clothing/under/liaison_suit, + /obj/item/clothing/under/liaison_suit/charcoal, + /obj/item/clothing/under/liaison_suit/formal, + /obj/item/clothing/under/liaison_suit/blazer, + /obj/item/clothing/under/liaison_suit/suspenders, + /obj/item/clothing/under/blackskirt, + /obj/item/clothing/under/suit_jacket/trainee, + /obj/item/clothing/under/liaison_suit/ivy, + /obj/item/clothing/under/liaison_suit/orange, + /obj/item/clothing/under/liaison_suit/field, + /obj/item/clothing/under/colonist/workwear, + /obj/item/clothing/under/colonist/workwear/khaki, + /obj/item/clothing/under/colonist/workwear/pink, + /obj/item/clothing/under/colonist/workwear/green, + ) + dress_over = list( + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/corporate, + /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, + /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/bomber/grey, + /obj/item/clothing/suit/storage/jacket/marine/bomber/red, + /obj/item/clothing/suit/storage/jacket/marine/bomber, + /obj/item/clothing/suit/storage/bomber, + /obj/item/clothing/suit/storage/bomber/alt, + /obj/item/clothing/suit/storage/snow_suit/liaison, + /obj/item/clothing/suit/storage/labcoat, + /obj/item/clothing/suit/storage/jacket/marine/vest/grey, + /obj/item/clothing/suit/storage/jacket/marine/vest, + /obj/item/clothing/suit/storage/jacket/marine/vest/tan, + /obj/item/clothing/suit/storage/webbing, + ) + dress_extra = list( + /obj/item/clothing/accessory/black, + /obj/item/clothing/accessory/red, + /obj/item/clothing/accessory/purple, + /obj/item/clothing/accessory/blue, + /obj/item/clothing/accessory/green, + /obj/item/clothing/accessory/gold, + /obj/item/clothing/accessory/horrible, + /obj/item/clothing/glasses/sunglasses/big, + /obj/item/clothing/glasses/sunglasses/aviator, + /obj/item/clothing/glasses/sunglasses, + /obj/item/clothing/glasses/sunglasses/prescription, + /obj/item/clothing/glasses/regular/hipster, + ) + dress_gloves = list( + /obj/item/clothing/gloves/black, + /obj/item/clothing/gloves/marine/dress, + ) + dress_shoes = list( + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/shoes/laceup/brown, + /obj/item/clothing/shoes/black, + /obj/item/clothing/shoes/marine/corporate, + ) + dress_hat = list( + /obj/item/clothing/head/fedora, + /obj/item/clothing/head/beret/cm/black/civilian, + /obj/item/clothing/head/beret/cm/white/civilian, + ) /datum/equipment_preset/uscm_ship/liaison/New() . = ..() @@ -110,24 +162,10 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) -/datum/equipment_preset/uscm_ship/liaison/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - var/playtime = get_job_playtime(new_human.client, rank) - if(new_human.client.prefs.playtime_perks) - if(playtime > JOB_PLAYTIME_TIER_4) - return "WYC5" - else if(playtime > JOB_PLAYTIME_TIER_3) - return "WYC4" - else if(playtime > JOB_PLAYTIME_TIER_2) - return "WYC3" - else - return paygrade - return paygrade - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/reporter - name = "Combat Correspondent (CIV)" + name = "Combat Correspondent (Press)" flags = EQUIPMENT_PRESET_START_OF_ROUND access = list( @@ -145,7 +183,7 @@ ) assignment = JOB_COMBAT_REPORTER rank = JOB_COMBAT_REPORTER - paygrade = "C" + paygrades = list(PAY_SHORT_CIV = JOB_PLAYTIME_TIER_0) role_comm_title = "PRESS" skills = /datum/skills/civilian idtype = /obj/item/card/id/silver/cl @@ -153,19 +191,22 @@ minimap_icon = "correspondent" minimap_background = MINIMAP_ICON_BACKGROUND_CIVILIAN -/datum/equipment_preset/uscm_ship/reporter/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/satchel + dress_under = list() + dress_over = list() + dress_hat = list() +/datum/equipment_preset/uscm_ship/reporter/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/reporter(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/reporter(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/reporter(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/camera(new_human), WEAR_L_HAND) - new_human.equip_to_slot_or_del(new /obj/item/device/camera_film(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/binoculars(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/camera(new_human), WEAR_WAIST) + +/datum/equipment_preset/uscm_ship/reporter/load_preset(mob/living/carbon/human/new_human, randomise, count_participant, client/mob_client, show_job_gear) + . = ..() + new_human.marine_buyable_categories[CIVILIAN_CAN_BUY_BACKPACK] = 1 + new_human.marine_buyable_categories[CIVILIAN_CAN_BUY_UTILITY] = 1 /datum/equipment_preset/uscm_ship/reporter_uscm name = "Combat Correspondent (USCM)" @@ -177,7 +218,7 @@ ) assignment = JOB_COMBAT_REPORTER rank = JOB_COMBAT_REPORTER - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "CC" skills = /datum/skills/pfc idtype = /obj/item/card/id/dogtag @@ -185,6 +226,9 @@ minimap_icon = "correspondent" minimap_background = MINIMAP_ICON_BACKGROUND_CIC + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/uscm_ship/reporter_uscm/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -204,10 +248,6 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/camera(new_human), WEAR_L_HAND) - new_human.equip_to_slot_or_del(new /obj/item/device/camera_film(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/binoculars(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_BACK) //*****************************************************************************************************/ @@ -229,7 +269,7 @@ ) assignment = JOB_CHIEF_ENGINEER rank = JOB_CHIEF_ENGINEER - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_3) role_comm_title = "CE" minimum_age = 27 skills = /datum/skills/CE @@ -265,36 +305,25 @@ ) assignment = JOB_MAINT_TECH rank = JOB_MAINT_TECH - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "MT" skills = /datum/skills/MT minimap_icon = "engi" utility_under = list(/obj/item/clothing/under/marine/officer/engi) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/maint/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel/tech if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine/tech - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mt(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/engi(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/welding(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/demo_scanner(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/bag/trash(new_human), WEAR_L_HAND) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, (new_human), WEAR_R_HAND) - -/datum/equipment_preset/uscm_ship/maint/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME1" - return paygrade //*****************************************************************************************************/ @@ -311,13 +340,16 @@ ) assignment = JOB_ORDNANCE_TECH rank = JOB_ORDNANCE_TECH - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "OT" skills = /datum/skills/OT minimap_icon = "ot" utility_under = list(/obj/item/clothing/under/marine/officer/engi) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/ordn/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel/tech @@ -352,7 +384,7 @@ ) assignment = JOB_CHIEF_REQUISITION rank = JOB_CHIEF_REQUISITION - paygrade = "ME7" + paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME8 = JOB_PLAYTIME_TIER_3) role_comm_title = "QM" minimum_age = 27 skills = /datum/skills/RO @@ -361,6 +393,8 @@ minimap_icon = list("ct" = MINIMAP_ICON_COLOR_HEAD) utility_under = list(/obj/item/clothing/under/rank/qm_suit) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/qm/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel/tech @@ -382,16 +416,19 @@ name = "USCM Cargo Technician (CT)" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE - access = list(ACCESS_MARINE_CARGO, ACCESS_MARINE_PREP) + access = list(ACCESS_MARINE_CARGO) assignment = JOB_CARGO_TECH rank = JOB_CARGO_TECH - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "CT" skills = /datum/skills/CT minimap_icon = "ct" utility_under = list(/obj/item/clothing/under/rank/cargotech) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/cargo/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel/tech @@ -407,12 +444,6 @@ new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) -/datum/equipment_preset/uscm_ship/cargo/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME1" - return paygrade - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/commander @@ -422,7 +453,7 @@ idtype = /obj/item/card/id/gold assignment = JOB_CO rank = JOB_CO - paygrade = "MO4" + paygrades = list(PAY_SHORT_MO4 = JOB_PLAYTIME_TIER_0) role_comm_title = "CO" minimum_age = 30 skills = /datum/skills/commander @@ -439,11 +470,11 @@ service_extra = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber) service_hat = list(/obj/item/clothing/head/beret/cm, /obj/item/clothing/head/beret/marine/commander/dress, /obj/item/clothing/head/beret/marine/commander/black, /obj/item/clothing/head/marine/peaked/service) - dress_under = list(/obj/item/clothing/under/marine/dress, /obj/item/clothing/under/marine/officer/formal/servicedress) - dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) - dress_hat = list(/obj/item/clothing/head/marine/peaked/captain/white, /obj/item/clothing/head/marine/peaked/captain/black, /obj/item/clothing/head/marine/peaked) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover/officer) dress_shoes = list(/obj/item/clothing/shoes/dress/commander) - dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/white, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit, /obj/item/clothing/suit/storage/jacket/marine/dress) + dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) /datum/equipment_preset/uscm_ship/commander/New() . = ..() @@ -489,23 +520,30 @@ //*****************************************************************************************************/ +/datum/equipment_preset/uscm_ship/commander/visitor + name = "USCM Observer (Major) (VO)" + flags = EQUIPMENT_PRESET_EXTRA + + assignment = JOB_USCM_OBSV + rank = JOB_USCM_OBSV + role_comm_title = "VO" + +//*****************************************************************************************************/ + /datum/equipment_preset/uscm_ship/commander/council name = "USCM Commanding Officer (CO+)" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE idtype = /obj/item/card/id/gold/council rank = JOB_CO - paygrade = "MO5" + paygrades = list(PAY_SHORT_MO5 = JOB_PLAYTIME_TIER_0) role_comm_title = "CO" minimum_age = 35 dress_over = list( - /obj/item/clothing/suit/storage/jacket/marine/dress/officer/white, - /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, - /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit, + /obj/item/clothing/suit/storage/jacket/marine/dress/blues/officer, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/falcon, ) - /datum/equipment_preset/uscm_ship/commander/council/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/commander/council(new_human), WEAR_HEAD) @@ -514,7 +552,8 @@ /datum/equipment_preset/uscm_ship/commander/council/plus name = "USCM Commanding Officer (CO++)" idtype = /obj/item/card/id/general - paygrade = "MO6" + paygrades = list(PAY_SHORT_MO6 = JOB_PLAYTIME_TIER_0) + dress_under = list(/obj/item/clothing/under/marine/dress/blues/senior, /obj/item/clothing/under/marine/dress/blues/general) /datum/equipment_preset/uscm_ship/commander/council/plus/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/commander/councilchief(new_human), WEAR_HEAD) @@ -529,7 +568,7 @@ idtype = /obj/item/card/id/silver assignment = JOB_XO rank = JOB_XO - paygrade = "MO3" + paygrades = list(PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_0) role_comm_title = "XO" minimum_age = 35 skills = /datum/skills/XO @@ -567,11 +606,11 @@ idtype = /obj/item/card/id/dogtag assignment = JOB_SO rank = JOB_SO - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0) role_comm_title = "PltCo" minimum_age = 25 skills = /datum/skills/SO - minimap_icon = list("cic" = MINIMAP_ICON_COLOR_SILVER) + minimap_icon = list("cic" = COLOR_SILVER) minimap_background = MINIMAP_ICON_BACKGROUND_CIC var/access_list = ACCESS_LIST_MARINE_MAIN @@ -588,7 +627,8 @@ add_verb(new_human.client, /client/proc/commander_rename_platoon) /datum/equipment_preset/uscm_ship/so/lesser_rank - paygrade = "MO1" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_ship/so/equipped name = "USCM Platoon Commander (Equipped)" @@ -621,19 +661,17 @@ do_rename_platoon(new_human.client.prefs.platoon_name) change_dropship_camo(new_human.client.prefs.dropship_camo) -/datum/equipment_preset/uscm_ship/so/lesser_rank - paygrade = "MO1" - /datum/equipment_preset/uscm_ship/so/upp name = "UPP Platoon Commander (PltCo)" languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH) - paygrade = "UO2" + paygrades = list(PAY_SHORT_UO2 = JOB_PLAYTIME_TIER_0) faction_group = list(FACTION_UPP) faction = FACTION_UPP access_list = ACCESS_LIST_UPP_PLATOON /datum/equipment_preset/uscm_ship/so/upp/lesser_rank - paygrade = "UO1" + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UO1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/uscm_ship/so/upp/equipped name = "UPP Platoon Commander (Equipped)" @@ -657,9 +695,6 @@ if(!late_join) add_verb(new_human.client, /client/proc/commander_rename_platoon) -/datum/equipment_preset/uscm_ship/so/upp/lesser_rank - paygrade = "UO1" - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/sea @@ -667,10 +702,9 @@ flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE idtype = /obj/item/card/id/silver - access assignment = JOB_SEA rank = JOB_SEA - paygrade = "ME7" + paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) role_comm_title = "SEA" minimum_age = 40 skills = /datum/skills/SEA @@ -678,6 +712,8 @@ minimap_icon = "sea" service_hat = list(/obj/item/clothing/head/cmcap, /obj/item/clothing/head/drillhat) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/sea/New() . = ..() @@ -689,7 +725,7 @@ back_item = /obj/item/storage/backpack/marine new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mcom/cdrcom(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mcom/sea(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m44/custom(new_human), WEAR_WAIST) @@ -699,11 +735,11 @@ new_human.equip_to_slot_or_del(new /obj/item/device/binoculars(new_human), WEAR_L_HAND) new_human.equip_to_slot_or_del(new /obj/item/device/whistle(new_human), WEAR_R_HAND) -/datum/equipment_preset/uscm_ship/sea/load_rank(mob/living/carbon/human/rankee) +/datum/equipment_preset/uscm_ship/sea/load_rank(mob/living/carbon/human/rankee, client/mob_client) if(rankee?.client?.prefs?.pref_special_job_options[rank]) - paygrade = get_paygrade_id_by_name(rankee.client.prefs.pref_special_job_options[rank]) - - return paygrade + var/paygrade_choice = get_paygrade_id_by_name(rankee.client.prefs.pref_special_job_options[rank]) + return paygrade_choice + ..() //*****************************************************************************************************/ @@ -714,12 +750,12 @@ idtype = /obj/item/card/id/silver assignment = JOB_AUXILIARY_OFFICER rank = JOB_AUXILIARY_OFFICER - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0, PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_3) role_comm_title = "ASO" minimum_age = 27 skills = /datum/skills/auxiliary_officer - minimap_icon = list("cic" = MINIMAP_ICON_COLOR_SILVER) + minimap_icon = list("cic" = COLOR_SILVER) minimap_background = MINIMAP_ICON_BACKGROUND_CIC /datum/equipment_preset/uscm_ship/auxiliary_officer/New() @@ -765,21 +801,71 @@ //*****************************************************************************************************/ -/datum/equipment_preset/uscm_ship/po - name = "USCM Pilot (DP) (Cryo)" +/datum/equipment_preset/uscm_ship/gp + name = "USCM Gunship Pilot (GP) (Cryo)" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE idtype = /obj/item/card/id/silver access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_PILOT) - assignment = JOB_PILOT - rank = JOB_PILOT - paygrade = "MO1" + assignment = JOB_CAS_PILOT + rank = JOB_CAS_PILOT + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) + role_comm_title = "GP" + skills = /datum/skills/pilot + + minimap_icon = "pilot" + +/datum/equipment_preset/uscm_ship/gp/load_gear(mob/living/carbon/human/new_human) + var/back_item = /obj/item/storage/backpack/satchel + if(new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) + back_item = /obj/item/storage/backpack/marine + + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/po(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + +//*****************************************************************************************************/ + +/datum/equipment_preset/uscm_ship/gp/full + name = "USCM Gunship Pilot (GP)" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + + utility_under = list(/obj/item/clothing/under/marine/officer/pilot) + +/datum/equipment_preset/uscm_ship/gp/full/load_gear(mob/living/carbon/human/new_human) + var/back_item = /obj/item/storage/backpack/satchel + if(new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) + back_item = /obj/item/storage/backpack/marine + + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/po(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/pilot(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest/pilot(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/pilot(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses(new_human), WEAR_EYES) + +//*****************************************************************************************************/ + +/datum/equipment_preset/uscm_ship/dp + name = "USCM Dropship Pilot (DP) (Cryo)" + flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE + + idtype = /obj/item/card/id/silver + access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_PILOT) + assignment = JOB_DROPSHIP_PILOT + rank = JOB_DROPSHIP_PILOT + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "DP" skills = /datum/skills/pilot minimap_icon = "pilot" -/datum/equipment_preset/uscm_ship/po/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/uscm_ship/dp/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel if(new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine @@ -791,13 +877,13 @@ //*****************************************************************************************************/ -/datum/equipment_preset/uscm_ship/po/full - name = "USCM Pilot Officer (PO)" +/datum/equipment_preset/uscm_ship/dp/full + name = "USCM Dropship Pilot (DP)" flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE utility_under = list(/obj/item/clothing/under/marine/officer/pilot) -/datum/equipment_preset/uscm_ship/po/full/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/uscm_ship/dp/full/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel if(new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine @@ -866,12 +952,15 @@ access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_PILOT) assignment = JOB_DROPSHIP_CREW_CHIEF rank = JOB_DROPSHIP_CREW_CHIEF - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_3) role_comm_title = "DCC" skills = /datum/skills/crew_chief minimap_icon = "dcc" + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues/nco) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) + /datum/equipment_preset/uscm_ship/dcc/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel if(new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) @@ -916,7 +1005,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = "USCM Officer" rank = "USCM Officer" - paygrade = "MO3" + paygrades = list(PAY_SHORT_MO3 = JOB_PLAYTIME_TIER_0) role_comm_title = "Cpt" minimum_age = 40 skills = /datum/skills/commander @@ -928,9 +1017,7 @@ service_hat = list(/obj/item/clothing/head/beret/cm) service_shoes = list(/obj/item/clothing/shoes/dress/commander) - dress_extra = list(/obj/item/clothing/head/beret/marine/commander/dress, /obj/item/storage/large_holster/ceremonial_sword/full) - dress_hat = list(/obj/item/clothing/head/marine/peaked/captain) - dress_shoes = list(/obj/item/clothing/shoes/dress/commander) + dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) /datum/equipment_preset/uscm_ship/officer/New() . = ..() @@ -956,13 +1043,16 @@ access = list(ACCESS_MARINE_KITCHEN) assignment = JOB_MESS_SERGEANT rank = JOB_MESS_SERGEANT - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0, PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_1, PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_3) role_comm_title = "MST" skills = /datum/skills/mess_technician minimap_icon = "mst" utility_under = list(/obj/item/clothing/under/marine/chef) + dress_under = list(/obj/item/clothing/under/marine/dress/blues) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) + dress_hat = list(/obj/item/clothing/head/marine/dress_cover) /datum/equipment_preset/uscm_ship/chef/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/marine/satchel @@ -978,9 +1068,3 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) - -/datum/equipment_preset/uscm_ship/chef/load_rank(mob/living/carbon/human/new_human) - if(new_human.client) - if(get_job_playtime(new_human.client, rank) < JOB_PLAYTIME_TIER_1) - return "ME1" - return paygrade diff --git a/code/modules/gear_presets/whiteout.dm b/code/modules/gear_presets/whiteout.dm index 82ba86e5e9..f8acbeead4 100644 --- a/code/modules/gear_presets/whiteout.dm +++ b/code/modules/gear_presets/whiteout.dm @@ -9,7 +9,7 @@ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE, LANGUAGE_CHINESE, LANGUAGE_RUSSIAN, LANGUAGE_GERMAN, LANGUAGE_SPANISH, LANGUAGE_YAUTJA, LANGUAGE_XENOMORPH, LANGUAGE_TSL) //Synths after all. skills = /datum/skills/everything //They are Synths, programmed for Everything. idtype = /obj/item/card/id/pmc/ds - paygrade = "O" + paygrades = list(PAY_SHORT_CDNM = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/pmc/w_y_whiteout/New() . = ..() @@ -27,9 +27,9 @@ //A.randomize_appearance(mob) var/random_name if(new_human.gender == MALE) - random_name = "[pick(greek_letters)]" + random_name = "[pick(GLOB.greek_letters)]" else - random_name = "[pick(greek_letters)]" + random_name = "[pick(GLOB.greek_letters)]" new_human.change_real_name(new_human, random_name) new_human.age = rand(17,45) @@ -271,7 +271,7 @@ //*****************************************************************************************************/ /datum/equipment_preset/pmc/w_y_whiteout/low_threat/medic - name = "Whiteout Team Medic" + name = "Whiteout Team Operative Medic" /datum/equipment_preset/pmc/w_y_whiteout/low_threat/medic/load_gear(mob/living/carbon/human/new_human) // back diff --git a/code/modules/gear_presets/wo.dm b/code/modules/gear_presets/wo.dm index 29b2be28ce..fcefdc03e9 100644 --- a/code/modules/gear_presets/wo.dm +++ b/code/modules/gear_presets/wo.dm @@ -17,7 +17,7 @@ assignment = JOB_WO_CO rank = JOB_WO_CO - paygrade = "MO2" + paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0) role_comm_title = "CDR" skills = /datum/skills/commander idtype = /obj/item/card/id/gold @@ -96,7 +96,7 @@ assignment = JOB_WO_XO rank = JOB_WO_XO - paygrade = "MO1" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) role_comm_title = "LCDR" skills = /datum/skills/XO idtype = /obj/item/card/id/silver @@ -140,7 +140,7 @@ access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_CMP, ACCESS_MARINE_MEDBAY) assignment = JOB_WO_CHIEF_POLICE rank = JOB_WO_CHIEF_POLICE - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "HGSL" skills = /datum/skills/honor_guard/lead idtype = /obj/item/card/id/silver @@ -177,7 +177,7 @@ access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_BRIG, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE) assignment = JOB_WO_SO rank = JOB_WO_SO - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "VHG" skills = /datum/skills/honor_guard/vet idtype = /obj/item/card/id/silver @@ -198,7 +198,7 @@ //uniform new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/boiler(new_human), WEAR_BODY) //jacket - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) //waist new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/m41amk1(new_human), WEAR_WAIST) @@ -219,7 +219,7 @@ access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE) assignment = JOB_WO_CREWMAN rank = JOB_WO_CREWMAN - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "HGS" skills = /datum/skills/honor_guard/spec idtype = /obj/item/card/id/gold @@ -259,7 +259,7 @@ access = list(ACCESS_MARINE_BRIG, ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_DATABASE, ACCESS_MARINE_PREP, ACCESS_MARINE_MEDBAY) assignment = JOB_WO_POLICE rank = JOB_WO_POLICE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) role_comm_title = "HG" skills = /datum/skills/honor_guard @@ -275,7 +275,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/officer(new_human), WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/shotgun/full(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator(new_human), WEAR_EYES) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret/marine/logisticsofficer(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) @@ -293,7 +293,7 @@ access = list(ACCESS_MARINE_COMMAND, ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_PILOT) assignment = JOB_WO_PILOT rank = JOB_WO_PILOT - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "MC" skills = /datum/skills/mortar_crew @@ -328,7 +328,7 @@ access = list(ACCESS_MARINE_CARGO, ACCESS_MARINE_RO, ACCESS_MARINE_COMMAND) assignment = JOB_WO_CHIEF_REQUISITION rank = JOB_WO_CHIEF_REQUISITION - paygrade = "ME8" + paygrades = list(PAY_SHORT_ME8 = JOB_PLAYTIME_TIER_0) role_comm_title = "QM" skills = /datum/skills/RO idtype = /obj/item/card/id/silver @@ -358,7 +358,7 @@ access = list(ACCESS_MARINE_ENGINEERING, ACCESS_CIVILIAN_ENGINEERING, ACCESS_MARINE_CARGO) assignment = JOB_WO_REQUISITION rank = JOB_WO_REQUISITION - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "BCL" skills = /datum/skills/CE idtype = /obj/item/card/id @@ -390,7 +390,7 @@ access = list(ACCESS_MARINE_CMO, ACCESS_MARINE_MEDBAY, ACCESS_MARINE_RESEARCH, ACCESS_MARINE_COMMAND, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_WO_CMO rank = JOB_WO_CMO - paygrade = "CCMO" + paygrades = list(PAY_SHORT_CCMO = JOB_PLAYTIME_TIER_0) role_comm_title = "HS" skills = /datum/skills/CMO idtype = /obj/item/card/id/silver @@ -433,7 +433,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_WO_DOCTOR rank = JOB_WO_DOCTOR - paygrade = "CD" + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) role_comm_title = "Doc" skills = /datum/skills/doctor idtype = /obj/item/card/id @@ -473,7 +473,7 @@ access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_RESEARCH, ACCESS_MARINE_CHEMISTRY, ACCESS_MARINE_MORGUE) assignment = JOB_WO_RESEARCHER rank = JOB_WO_RESEARCHER - paygrade = "CD" + paygrades = list(PAY_SHORT_CDOC = JOB_PLAYTIME_TIER_0) role_comm_title = "Chem" skills = /datum/skills/researcher idtype = /obj/item/card/id @@ -513,7 +513,7 @@ access = list(ACCESS_MARINE_CE, ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_COMMAND, ACCESS_CIVILIAN_ENGINEERING, ACCESS_MARINE_DATABASE) assignment = JOB_WO_CHIEF_ENGINEER rank = JOB_WO_CHIEF_ENGINEER - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "BCM" skills = /datum/skills/CE idtype = /obj/item/card/id/silver @@ -547,7 +547,7 @@ access = list(ACCESS_MARINE_CE, ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_COMMAND, ACCESS_CIVILIAN_ENGINEERING) assignment = JOB_WO_ORDNANCE_TECH rank = JOB_WO_ORDNANCE_TECH - paygrade = "ME4" + paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) role_comm_title = "BC" skills = /datum/skills/OT idtype = /obj/item/card/id @@ -580,7 +580,7 @@ assignment = JOB_WO_CORPORATE_LIAISON rank = JOB_WO_CORPORATE_LIAISON - paygrade = "WYC2" + paygrades = list(PAY_SHORT_WYC2 = JOB_PLAYTIME_TIER_0) role_comm_title = "PRESS" skills = /datum/skills/civilian idtype = /obj/item/card/id/silver/cl @@ -624,7 +624,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP) assignment = JOB_SQUAD_LEADER rank = JOB_SQUAD_LEADER - paygrade = "ME5" + paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" skills = /datum/skills/SL @@ -637,7 +637,7 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/leader(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/leader(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/medium/leader(new_human), WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/m41amk1(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41aMK1(new_human), WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/whiskey_supply_beacon(new_human), WEAR_IN_BACK) @@ -659,7 +659,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SPECPREP) assignment = JOB_SQUAD_SPECIALIST rank = JOB_SQUAD_SPECIALIST - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "Spc" skills = /datum/skills/specialist @@ -694,7 +694,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_SMARTPREP) assignment = JOB_SQUAD_SMARTGUN rank = JOB_SQUAD_SMARTGUN - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "SG" skills = /datum/skills/smartgunner @@ -718,7 +718,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_ENGPREP, ACCESS_CIVILIAN_ENGINEERING) assignment = JOB_SQUAD_ENGI rank = JOB_SQUAD_ENGI - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "ComTech" skills = /datum/skills/combat_engineer @@ -752,7 +752,7 @@ access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_MEDPREP, ACCESS_MARINE_MEDBAY) assignment = JOB_SQUAD_MEDIC rank = JOB_SQUAD_MEDIC - paygrade = "ME3" + paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) role_comm_title = "HM" skills = /datum/skills/combat_medic @@ -790,7 +790,7 @@ access = list(ACCESS_MARINE_PREP) assignment = JOB_SQUAD_MARINE rank = JOB_SQUAD_MARINE - paygrade = "ME2" + paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) role_comm_title = "RFN" skills = /datum/skills/pfc diff --git a/code/modules/gear_presets/wy.dm b/code/modules/gear_presets/wy.dm index d5b5194401..6cfccab000 100644 --- a/code/modules/gear_presets/wy.dm +++ b/code/modules/gear_presets/wy.dm @@ -1,6 +1,6 @@ /datum/equipment_preset/wy name = "WY" - paygrade = "WYC1" + paygrades = list(PAY_SHORT_WYC1 = JOB_PLAYTIME_TIER_0) faction = FACTION_WY rank = FACTION_WY @@ -10,6 +10,74 @@ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) var/headset_type = /obj/item/device/radio/headset/distress/WY + dress_under = list( + /obj/item/clothing/under/liaison_suit/black, + /obj/item/clothing/under/liaison_suit/blue, + /obj/item/clothing/under/liaison_suit/brown, + /obj/item/clothing/under/liaison_suit/corporate_formal, + /obj/item/clothing/under/liaison_suit, + /obj/item/clothing/under/liaison_suit/charcoal, + /obj/item/clothing/under/liaison_suit/formal, + /obj/item/clothing/under/liaison_suit/blazer, + /obj/item/clothing/under/liaison_suit/suspenders, + /obj/item/clothing/under/blackskirt, + /obj/item/clothing/under/suit_jacket/trainee, + /obj/item/clothing/under/liaison_suit/ivy, + /obj/item/clothing/under/liaison_suit/orange, + /obj/item/clothing/under/liaison_suit/field, + /obj/item/clothing/under/colonist/workwear, + /obj/item/clothing/under/colonist/workwear/khaki, + /obj/item/clothing/under/colonist/workwear/pink, + /obj/item/clothing/under/colonist/workwear/green, + ) + dress_over = list( + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/corporate, + /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, + /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/bomber/grey, + /obj/item/clothing/suit/storage/jacket/marine/bomber/red, + /obj/item/clothing/suit/storage/jacket/marine/bomber, + /obj/item/clothing/suit/storage/bomber, + /obj/item/clothing/suit/storage/bomber/alt, + /obj/item/clothing/suit/storage/snow_suit/liaison, + /obj/item/clothing/suit/storage/labcoat, + /obj/item/clothing/suit/storage/jacket/marine/vest/grey, + /obj/item/clothing/suit/storage/jacket/marine/vest, + /obj/item/clothing/suit/storage/jacket/marine/vest/tan, + /obj/item/clothing/suit/storage/webbing, + ) + dress_extra = list( + /obj/item/clothing/accessory/black, + /obj/item/clothing/accessory/red, + /obj/item/clothing/accessory/purple, + /obj/item/clothing/accessory/blue, + /obj/item/clothing/accessory/green, + /obj/item/clothing/accessory/gold, + /obj/item/clothing/accessory/horrible, + /obj/item/clothing/glasses/sunglasses/big, + /obj/item/clothing/glasses/sunglasses/aviator, + /obj/item/clothing/glasses/sunglasses, + /obj/item/clothing/glasses/sunglasses/prescription, + /obj/item/clothing/glasses/regular/hipster, + ) + dress_gloves = list( + /obj/item/clothing/gloves/black, + /obj/item/clothing/gloves/marine/dress, + ) + dress_shoes = list( + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/shoes/laceup/brown, + /obj/item/clothing/shoes/black, + /obj/item/clothing/shoes/marine/corporate, + ) + dress_hat = list( + /obj/item/clothing/head/fedora, + /obj/item/clothing/head/beret/cm/black/civilian, + /obj/item/clothing/head/beret/cm/white/civilian, + ) + /datum/equipment_preset/wy/New() . = ..() access += get_access(ACCESS_LIST_WY_BASE) @@ -19,8 +87,8 @@ /datum/equipment_preset/wy/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new headset_type(new_human), WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/ivy(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) . = ..() @@ -29,7 +97,7 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_TRAINEE rank = JOB_TRAINEE - paygrade = "WYC1" + paygrades = list(PAY_SHORT_WYC1 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/trainee/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/trainee(new_human), WEAR_BODY) @@ -40,35 +108,64 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_JUNIOR_EXECUTIVE rank = JOB_JUNIOR_EXECUTIVE - paygrade = "WYC2" + paygrades = list(PAY_SHORT_WYC2 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/exec name = "Corporate - C - Executive" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_EXECUTIVE rank = JOB_EXECUTIVE - paygrade = "WYC3" + paygrades = list(PAY_SHORT_WYC3 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/senior_exec name = "Corporate - D - Senior Executive" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_SENIOR_EXECUTIVE rank = JOB_SENIOR_EXECUTIVE - paygrade = "WYC4" + paygrades = list(PAY_SHORT_WYC4 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/exec_spec name = "Corporate - E - Executive Specialist" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_EXECUTIVE_SPECIALIST rank = JOB_EXECUTIVE_SPECIALIST - paygrade = "WYC5" + paygrades = list(PAY_SHORT_WYC5 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/wy/exec_spec/lawyer + name = "Corporate - E - Lawyer" + +/datum/equipment_preset/wy/exec_spec/lawyer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/blue(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/corporate/blue(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/notepad/blue(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) + + ..() /datum/equipment_preset/wy/exec_supervisor name = "Corporate - F - Executive Supervisor" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_EXECUTIVE_SUPERVISOR rank = JOB_EXECUTIVE_SUPERVISOR - paygrade = "WYC6" + paygrades = list(PAY_SHORT_WYC6 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/wy/exec_supervisor/lawyer + name = "Corporate - F - Lawyer" + +/datum/equipment_preset/wy/exec_supervisor/lawyer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/secure/briefcase(new_human), WEAR_R_HAND) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/black(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/jacket/marine/corporate/black(new_human), WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/spacecash/c1000/counterfeit(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/notepad/black(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/device/taperecorder(new_human), WEAR_L_STORE) + ..() /datum/equipment_preset/wy/manager skills = /datum/skills/civilian/manager @@ -91,21 +188,21 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_ASSISTANT_MANAGER rank = JOB_ASSISTANT_MANAGER - paygrade = "WYC7" + paygrades = list(PAY_SHORT_WYC7 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/manager/division_manager name = "Corporate - H - Division Manager" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_DIVISION_MANAGER rank = JOB_DIVISION_MANAGER - paygrade = "WYC8" + paygrades = list(PAY_SHORT_WYC8 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/manager/chief_executive name = "Corporate - I - Chief Executive" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_CHIEF_EXECUTIVE rank = JOB_CHIEF_EXECUTIVE - paygrade = "WYC9" + paygrades = list(PAY_SHORT_WYC9 = JOB_PLAYTIME_TIER_0) /datum/equipment_preset/wy/manager/chief_executive/New() . = ..() @@ -116,7 +213,7 @@ flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_DIRECTOR rank = JOB_DIRECTOR - paygrade = "WYC10" + paygrades = list(PAY_SHORT_WYC10 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/civilian/manager/director headset_type = /obj/item/device/radio/headset/distress/pmc/command/director diff --git a/code/modules/gear_presets/wy_goons.dm b/code/modules/gear_presets/wy_goons.dm index 53bdaa4041..fbfe8305ee 100644 --- a/code/modules/gear_presets/wy_goons.dm +++ b/code/modules/gear_presets/wy_goons.dm @@ -22,11 +22,11 @@ var/last_name //gender checks if(new_human.gender == MALE) - first_name = "[pick(first_names_male_pmc)]" + first_name = "[pick(GLOB.first_names_male_pmc)]" new_human.f_style = pick("3 O'clock Shadow", "3 O'clock Moustache", "5 O'clock Shadow", "5 O'clock Moustache") else - first_name = "[pick(first_names_female_pmc)]" - last_name = "[pick(last_names_pmc)]" + first_name = "[pick(GLOB.first_names_female_pmc)]" + last_name = "[pick(GLOB.last_names_pmc)]" random_name = "[first_name] [last_name]" new_human.change_real_name(new_human, random_name) @@ -61,8 +61,8 @@ assignment = JOB_WY_GOON rank = JOB_WY_GOON - paygrade = "WEY-GOON" - skills = /datum/skills/MP + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/wy_goon /datum/equipment_preset/goon/standard/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) @@ -70,13 +70,13 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) @@ -88,14 +88,48 @@ new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap, WEAR_IN_BACK) +/datum/equipment_preset/goon/engineer + name = "Weyland-Yutani Corporate Security Technician (Goon Engineer)" + flags = EQUIPMENT_PRESET_EXTRA + + assignment = JOB_WY_GOON_TECH + rank = JOB_WY_GOON_TECH + paygrades = list(PAY_SHORT_CPO = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/wy_goon_tech + +/datum/equipment_preset/goon/engineer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/pmc/corporate, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) + + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/ert, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle, WEAR_IN_BACK) + + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/construction/full, WEAR_L_STORE) + + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m41a/corporate, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap, WEAR_IN_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/ap, WEAR_IN_JACKET) + + /datum/equipment_preset/goon/lead name = "Weyland-Yutani Corporate Security Lead (Goon Lead)" flags = EQUIPMENT_PRESET_EXTRA assignment = JOB_WY_GOON_LEAD rank = JOB_WY_GOON_LEAD - paygrade = "WEY-GOON-L" - skills = /datum/skills/MP + paygrades = list(PAY_SHORT_CSPO = JOB_PLAYTIME_TIER_0) + skills = /datum/skills/wy_goon_lead /datum/equipment_preset/goon/lead/New() . = ..() @@ -107,13 +141,13 @@ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/veteran/pmc/light/corporate/lead, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/veteran/pmc/corporate/lead, WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/weapon/baton, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/restraint/handcuffs/zip, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70, WEAR_WAIST) @@ -130,14 +164,83 @@ assignment = JOB_WY_GOON_RESEARCHER rank = JOB_WY_GOON_RESEARCHER - paygrade = "CCMO" + paygrades = list(PAY_SHORT_CCMO = JOB_PLAYTIME_TIER_0) skills = /datum/skills/researcher + dress_under = list( + /obj/item/clothing/under/liaison_suit/black, + /obj/item/clothing/under/liaison_suit/blue, + /obj/item/clothing/under/liaison_suit/brown, + /obj/item/clothing/under/liaison_suit/corporate_formal, + /obj/item/clothing/under/liaison_suit, + /obj/item/clothing/under/liaison_suit/charcoal, + /obj/item/clothing/under/liaison_suit/formal, + /obj/item/clothing/under/liaison_suit/blazer, + /obj/item/clothing/under/liaison_suit/suspenders, + /obj/item/clothing/under/blackskirt, + /obj/item/clothing/under/suit_jacket/trainee, + /obj/item/clothing/under/liaison_suit/ivy, + /obj/item/clothing/under/liaison_suit/orange, + /obj/item/clothing/under/liaison_suit/field, + /obj/item/clothing/under/colonist/workwear, + /obj/item/clothing/under/colonist/workwear/khaki, + /obj/item/clothing/under/colonist/workwear/pink, + /obj/item/clothing/under/colonist/workwear/green, + ) + dress_over = list( + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/corporate, + /obj/item/clothing/suit/storage/jacket/marine/corporate/brown, + /obj/item/clothing/suit/storage/jacket/marine/corporate/blue, + /obj/item/clothing/suit/storage/jacket/marine/corporate/black, + /obj/item/clothing/suit/storage/jacket/marine/bomber/grey, + /obj/item/clothing/suit/storage/jacket/marine/bomber/red, + /obj/item/clothing/suit/storage/jacket/marine/bomber, + /obj/item/clothing/suit/storage/bomber, + /obj/item/clothing/suit/storage/bomber/alt, + /obj/item/clothing/suit/storage/snow_suit/liaison, + /obj/item/clothing/suit/storage/labcoat, + /obj/item/clothing/suit/storage/jacket/marine/vest/grey, + /obj/item/clothing/suit/storage/jacket/marine/vest, + /obj/item/clothing/suit/storage/jacket/marine/vest/tan, + /obj/item/clothing/suit/storage/webbing, + ) + dress_extra = list( + /obj/item/clothing/accessory/black, + /obj/item/clothing/accessory/red, + /obj/item/clothing/accessory/purple, + /obj/item/clothing/accessory/blue, + /obj/item/clothing/accessory/green, + /obj/item/clothing/accessory/gold, + /obj/item/clothing/accessory/horrible, + /obj/item/clothing/glasses/sunglasses/big, + /obj/item/clothing/glasses/sunglasses/aviator, + /obj/item/clothing/glasses/sunglasses, + /obj/item/clothing/glasses/sunglasses/prescription, + /obj/item/clothing/glasses/regular/hipster, + ) + dress_gloves = list( + /obj/item/clothing/gloves/black, + /obj/item/clothing/gloves/marine/dress, + ) + dress_shoes = list( + /obj/item/clothing/shoes/laceup, + /obj/item/clothing/shoes/laceup/brown, + /obj/item/clothing/shoes/black, + /obj/item/clothing/shoes/marine/corporate, + ) + dress_hat = list( + /obj/item/clothing/head/fedora, + /obj/item/clothing/head/beret/cm/black/civilian, + /obj/item/clothing/head/beret/cm/white/civilian, + ) + /datum/equipment_preset/goon/researcher/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/liaison_suit/corporate_formal, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/labcoat, WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate/knife, WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack, WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/handheld_distress_beacon, WEAR_IN_BACK) diff --git a/code/modules/holidays/halloween/decorators.dm b/code/modules/holidays/halloween/decorators.dm index b25d6ff6b9..fb12cf96cd 100644 --- a/code/modules/holidays/halloween/decorators.dm +++ b/code/modules/holidays/halloween/decorators.dm @@ -25,8 +25,7 @@ var/list/turf/valid_turfs = list() var/list/ground_levels = SSmapping.levels_by_trait(ZTRAIT_GROUND) for(var/ground_z in ground_levels) - var/list/turf/all_turfs = block(locate(1, 1, ground_z), locate(world.maxx, world.maxy, ground_z)) - for(var/turf/open/turf in all_turfs) + for(var/turf/open/turf in Z_TURFS(ground_z)) if(turf.is_groundmap_turf) var/valid = TRUE for(var/atom/movable/movable as anything in turf.contents) @@ -42,11 +41,7 @@ if(!length(valid_turfs)) break var/turf/considered_turf = pick(valid_turfs) - var/x_min = max(1, considered_turf.x - exclusion_range) - var/y_min = max(1, considered_turf.y - exclusion_range) - var/x_max = min(world.maxx, considered_turf.x + exclusion_range) - var/y_max = min(world.maxy, considered_turf.y + exclusion_range) - var/list/turf/denied_turfs = block(locate(x_min, y_min, considered_turf.z), locate(x_max, y_max, considered_turf.z)) + var/list/turf/denied_turfs = RANGE_TURFS(exclusion_range, considered_turf) valid_turfs -= denied_turfs picked_turfs += considered_turf @@ -90,7 +85,7 @@ // Skip this if this corner is result of a door connection (mostly for Almayer shutters) var/valid = TRUE - for(var/a_cardinal in cardinal) + for(var/a_cardinal in GLOB.cardinals) var/cardinal_dir = diag & a_cardinal if(!a_cardinal) // We check cardinals contributing to that diagonal continue diff --git a/code/modules/hydroponics/grown_inedible.dm b/code/modules/hydroponics/grown_inedible.dm index 38ff3ea265..0bc77ed213 100644 --- a/code/modules/hydroponics/grown_inedible.dm +++ b/code/modules/hydroponics/grown_inedible.dm @@ -15,7 +15,7 @@ // Fill the object up with the appropriate reagents. if(!isnull(plantname)) - var/datum/seed/S = seed_types[plantname] + var/datum/seed/S = GLOB.seed_types[plantname] if(!S || !S.chems) return @@ -24,8 +24,8 @@ for(var/rid in S.chems) var/list/reagent_data = S.chems[rid] var/rtotal = reagent_data[1] - if(reagent_data.len > 1 && potency > 0) - rtotal += round(potency/reagent_data[2]) + if(length(reagent_data) > 1 && potency > 0) + rtotal += floor(potency/reagent_data[2]) reagents.add_reagent(rid,max(1,rtotal)) /obj/item/grown/log diff --git a/code/modules/hydroponics/hydro_tools.dm b/code/modules/hydroponics/hydro_tools.dm index cc4ef0daf7..da63bf83ac 100644 --- a/code/modules/hydroponics/hydro_tools.dm +++ b/code/modules/hydroponics/hydro_tools.dm @@ -19,11 +19,11 @@ return ..() else if(istype(target,/obj/item/reagent_container/food/snacks/grown)) var/obj/item/reagent_container/food/snacks/grown/G = target - grown_seed = seed_types[G.plantname] + grown_seed = GLOB.seed_types[G.plantname] grown_reagents = G.reagents else if(istype(target,/obj/item/grown)) var/obj/item/grown/G = target - grown_seed = seed_types[G.plantname] + grown_seed = GLOB.seed_types[G.plantname] grown_reagents = G.reagents else if(istype(target,/obj/item/seeds)) var/obj/item/seeds/S = target @@ -48,7 +48,7 @@ dat += "
      " dat += "
      Potency[grown_seed.potency]
      " - if(grown_reagents && grown_reagents.reagent_list && grown_reagents.reagent_list.len) + if(grown_reagents && LAZYLEN(grown_reagents.reagent_list)) dat += "

      Reagent Data

      " dat += "
      This sample contains: " for(var/datum/reagent/R in grown_reagents.reagent_list) @@ -64,8 +64,8 @@ else if(grown_seed.immutable > 0) dat += "This plant does not possess genetics that are alterable.
      " - if(grown_seed.products && grown_seed.products.len) - dat += "The mature plant will produce [grown_seed.products.len == 1 ? "fruit" : "[grown_seed.products.len] varieties of fruit"].
      " + if(LAZYLEN(grown_seed.products)) + dat += "The mature plant will produce [length(grown_seed.products) == 1 ? "fruit" : "[length(grown_seed.products)] varieties of fruit"].
      " if(grown_seed.requires_nutrients) if(grown_seed.nutrient_consumption < 0.05) @@ -83,7 +83,7 @@ else dat += "It requires a stable supply of water.
      " - if(grown_seed.mutants && grown_seed.mutants.len) + if(LAZYLEN(grown_seed.mutants)) dat += "It exhibits a high degree of potential subspecies shift.
      " dat += "It thrives in a temperature of [grown_seed.ideal_heat] Kelvin." @@ -138,9 +138,9 @@ dat += "
      It will periodically alter the local temperature by [grown_seed.alter_temp] degrees Kelvin." if(grown_seed.biolum) - dat += "
      It is [grown_seed.biolum_colour ? "bio-luminescent" : "bio-luminescent"]." + dat += "
      It is [grown_seed.biolum_color ? "bio-luminescent" : "bio-luminescent"]." if(grown_seed.flowers) - dat += "
      It has [grown_seed.flower_colour ? "flowers" : "flowers"]." + dat += "
      It has [grown_seed.flower_color ? "flowers" : "flowers"]." if(dat) show_browser(user, dat, "Plant Analysis", "plant_analyzer") diff --git a/code/modules/hydroponics/hydro_tray.dm b/code/modules/hydroponics/hydro_tray.dm index 4d175c5a6f..98b7ff13b9 100644 --- a/code/modules/hydroponics/hydro_tray.dm +++ b/code/modules/hydroponics/hydro_tray.dm @@ -207,7 +207,7 @@ if(seed.nutrient_consumption > 0 && nutrilevel > 0 && prob(25)) nutrilevel -= max(0,seed.nutrient_consumption * HYDRO_SPEED_MULTIPLIER) if(seed.water_consumption > 0 && waterlevel > 0 && prob(25)) - waterlevel -= round(max(0,(seed.water_consumption * HYDRO_WATER_CONSUMPTION_MULTIPLIER) * HYDRO_SPEED_MULTIPLIER)) + waterlevel -= floor(max(0,(seed.water_consumption * HYDRO_WATER_CONSUMPTION_MULTIPLIER) * HYDRO_SPEED_MULTIPLIER)) // Make sure the plant is not starving or thirsty. Adequate // water and nutrients will cause a plant to become healthier. @@ -226,7 +226,7 @@ // Toxin levels beyond the plant's tolerance cause damage, but // toxins are sucked up each tick and slowly reduce over time. if(toxins > 0) - var/toxin_uptake = max(1,round(toxins/10)) + var/toxin_uptake = max(1,floor(toxins/10)) if(toxins > seed.toxins_tolerance) plant_health -= toxin_uptake toxins -= toxin_uptake @@ -262,7 +262,7 @@ pestlevel = 0 // If enough time (in cycles, not ticks) has passed since the plant was harvested, we're ready to harvest again. - else if(seed.products && seed.products.len && age > seed.production && (age - lastproduce) > seed.production && (!harvest && !dead)) + else if(LAZYLEN(seed.products) && age > seed.production && (age - lastproduce) > seed.production && (!harvest && !dead)) harvest = 1 lastproduce = age @@ -319,7 +319,7 @@ // Water dilutes toxin level. if(water_added > 0) - toxins -= round(water_added/4) + toxins -= floor(water_added/4) temp_chem_holder.reagents.clear_reagents() check_level_sanity() @@ -359,7 +359,7 @@ if(!user || !dead) return if(closed_system) - to_chat(user, "You can't remove the dead plant while the lid is shut.") + to_chat(user, SPAN_WARNING("You can't remove the dead plant while the lid is shut.")) return seed = null @@ -369,10 +369,9 @@ yield_mod = 0 mutation_mod = 0 - to_chat(user, "You remove the dead plant from the [src].") + to_chat(user, SPAN_NOTICE("You remove the dead plant from [src].")) check_level_sanity() update_icon() - return //Refreshes the icon and sets the luminosity /obj/structure/machinery/portable_atmospherics/hydroponics/update_icon() @@ -391,7 +390,7 @@ overlays += "[seed.plant_icon]-harvest" else if(age < seed.maturation) - var/t_growthstate = round(age/seed.maturation * seed.growth_stages) + var/t_growthstate = floor(age/seed.maturation * seed.growth_stages) overlays += "[seed.plant_icon]-grow[t_growthstate]" lastproduce = age else @@ -415,7 +414,7 @@ // Update bioluminescence. if(seed) if(seed.biolum) - set_light(round(seed.potency/10)) + set_light(floor(seed.potency/10)) return set_light(0) @@ -426,7 +425,7 @@ //Remove the seed if something is already planted. if(seed) seed = null - seed = seed_types[pick(list("mushrooms","plumphelmet","harebells","poppies","grass","weeds"))] + seed = GLOB.seed_types[pick(list("mushrooms","plumphelmet","harebells","poppies","grass","weeds"))] if(!seed) return //Weed does not exist, someone fucked up. dead = 0 @@ -449,14 +448,14 @@ return // Check if we should even bother working on the current seed datum. - if(seed.mutants && seed.mutants.len && severity > 1) + if(LAZYLEN(seed.mutants) && severity > 1) mutate_species() return // We need to make sure we're not modifying one of the global seed datums. // If it's not in the global list, then no products of the line have been // harvested yet and it's safe to assume it's restricted to this tray. - if(!isnull(seed_types[seed.name])) + if(!isnull(GLOB.seed_types[seed.name])) seed = seed.diverge() seed.mutate(severity,get_turf(src)) @@ -481,8 +480,8 @@ var/previous_plant = seed.display_name var/newseed = seed.get_mutant_variant() - if(newseed in seed_types) - seed = seed_types[newseed] + if(newseed in GLOB.seed_types) + seed = GLOB.seed_types[newseed] else return @@ -578,7 +577,7 @@ dead = 0 age = 1 //Snowflakey, maybe move this to the seed datum - plant_health = (istype(S, /obj/item/seeds/cutting) ? round(seed.endurance/rand(2,5)) : seed.endurance) + plant_health = (istype(S, /obj/item/seeds/cutting) ? floor(seed.endurance/rand(2,5)) : seed.endurance) lastcycle = world.time @@ -593,7 +592,7 @@ else if (istype(O, /obj/item/tool/minihoe)) // The minihoe if(weedlevel > 0) - user.visible_message(SPAN_DANGER("[user] starts uprooting the weeds."), SPAN_DANGER("You remove the weeds from the [src].")) + user.visible_message(SPAN_DANGER("[user] starts uprooting the weeds."), SPAN_DANGER("You remove the weeds from [src].")) weedlevel = 0 update_icon() else diff --git a/code/modules/hydroponics/seed_datums.dm b/code/modules/hydroponics/seed_datums.dm index 2aff95eb1f..033bad3681 100644 --- a/code/modules/hydroponics/seed_datums.dm +++ b/code/modules/hydroponics/seed_datums.dm @@ -1,5 +1,5 @@ -var/global/list/seed_types = list() // A list of all seed data. -var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious trial and error goodness. +GLOBAL_LIST_EMPTY(seed_types) // A list of all seed data. +GLOBAL_LIST_EMPTY(gene_tag_masks) // Gene obfuscation for delicious trial and error goodness. // Debug for testing seed genes. /client/proc/show_plant_genes() @@ -9,12 +9,12 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if(!admin_holder) return - if(!gene_tag_masks) + if(!GLOB.gene_tag_masks) to_chat(usr, "Gene masks not set.") return - for(var/mask in gene_tag_masks) - to_chat(usr, "[mask]: [gene_tag_masks[mask]]") + for(var/mask in GLOB.gene_tag_masks) + to_chat(usr, "[mask]: [GLOB.gene_tag_masks[mask]]") // Predefined/roundstart varieties use a string key to make it // easier to grab the new variety when mutating. Post-roundstart @@ -26,8 +26,8 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria // Populate the global seed datum list. for(var/type in typesof(/datum/seed)-/datum/seed) var/datum/seed/S = new type - seed_types[S.name] = S - S.uid = "[seed_types.len]" + GLOB.seed_types[S.name] = S + S.uid = "[length(GLOB.seed_types)]" S.roundstart = 1 // Make sure any seed packets that were mapped in are updated @@ -45,7 +45,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria var/list/gene_tags = list("products","consumption","environment","resistance","vigour","flowers") var/list/used_masks = list() - while(gene_tags && gene_tags.len) + while(LAZYLEN(gene_tags)) var/gene_tag = pick(gene_tags) var/gene_mask = "[num2hex(rand(0,255))] - [gene_tag]" @@ -54,7 +54,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria used_masks += gene_mask gene_tags -= gene_tag - gene_tag_masks[gene_tag] = gene_mask + GLOB.gene_tag_masks[gene_tag] = gene_mask /datum/plantgene var/genetype // Label used when applying trait. @@ -111,13 +111,13 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria // Cosmetics. var/plant_icon // Icon to use for the plant growing in the tray. var/product_icon // Base to use for fruit coming from this plant (if a vine). - var/product_colour // Color to apply to product base (if a vine). + var/product_color // Color to apply to product base (if a vine). var/packet_icon = "seed" // Icon to use for physical seed packet item. var/biolum // Plant is bioluminescent. - var/biolum_colour // The color of the plant's radiance. + var/biolum_color // The color of the plant's radiance. var/flowers // Plant has a flower overlay. var/flower_icon = "vine_fruit" // Which overlay to use. - var/flower_colour // Which color to use. + var/flower_color // Which color to use. //Creates a random seed. MAKE SURE THE LINE HAS DIVERGED BEFORE THIS IS CALLED. /datum/seed/proc/randomize() @@ -250,7 +250,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria ) for(var/x=1;x<=additional_chems;x++) - if(!possible_chems.len) + if(!length(possible_chems)) break var/new_chem = pick(possible_chems) possible_chems -= new_chem @@ -301,7 +301,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if(prob(5)) biolum = 1 - biolum_colour = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" + biolum_color = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" endurance = rand(60,100) yield = rand(3,15) @@ -311,7 +311,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria //Returns a key corresponding to an entry in the global seed list. /datum/seed/proc/get_mutant_variant() - if(!mutants || !mutants.len || immutable > 0) return 0 + if(!LAZYLEN(mutants) || immutable > 0) return 0 return pick(mutants) //Mutates the plant overall (randomly). @@ -364,8 +364,8 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if(biolum) source_turf.visible_message(SPAN_NOTICE("\The [display_name] begins to glow!")) if(prob(degree*2)) - biolum_colour = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" - source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s glow changes color!")) + biolum_color = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" + source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s glow changes color!")) else source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s glow dims...")) if(11) //Flowers? @@ -374,17 +374,17 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if(flowers) source_turf.visible_message(SPAN_NOTICE("\The [display_name] sprouts a bevy of flowers!")) if(prob(degree*2)) - flower_colour = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" - source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s flowers changes color
      !")) + flower_color = "#[pick(list("FF0000","FF7F00","FFFF00","00FF00","0000FF","4B0082","8F00FF"))]" + source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s flowers changes color!")) else source_turf.visible_message(SPAN_NOTICE("\The [display_name]'s flowers wither and fall off.")) else //New chems! (20% chance) - var/new_chem = list(pick( prob(10);pick(chemical_gen_classes_list["C1"]),\ - prob(15);pick(chemical_gen_classes_list["C2"]),\ - prob(25);pick(chemical_gen_classes_list["C3"]),\ - prob(30);pick(chemical_gen_classes_list["C4"]),\ - prob(15);pick(chemical_gen_classes_list["T1"]),\ - prob(5);pick(chemical_gen_classes_list["T2"])) = list(1,rand(1,2))) + var/new_chem = list(pick( prob(10);pick(GLOB.chemical_gen_classes_list["C1"]),\ + prob(15);pick(GLOB.chemical_gen_classes_list["C2"]),\ + prob(25);pick(GLOB.chemical_gen_classes_list["C3"]),\ + prob(30);pick(GLOB.chemical_gen_classes_list["C4"]),\ + prob(15);pick(GLOB.chemical_gen_classes_list["T1"]),\ + prob(5);pick(GLOB.chemical_gen_classes_list["T2"])) = list(1,rand(1,2))) chems += new_chem @@ -400,11 +400,11 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria //Splicing products has some detrimental effects on yield and lifespan. if("products") - if(gene.values.len < 6) return + if(length(gene.values) < 6) return - if(yield > 0) yield = max(1,round(yield*0.85)) - if(endurance > 0) endurance = max(1,round(endurance*0.85)) - if(lifespan > 0) lifespan = max(1,round(lifespan*0.85)) + if(yield > 0) yield = max(1,floor(yield*0.85)) + if(endurance > 0) endurance = max(1,floor(endurance*0.85)) + if(lifespan > 0) lifespan = max(1,floor(lifespan*0.85)) if(!products) products = list() products |= gene.values[1] @@ -420,12 +420,12 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria chems[rid] = gene_chem.Copy() continue - for(var/i=1;i<=gene_chem.len;i++) + for(var/i=1;i<=length(gene_chem);i++) if(isnull(gene_chem[i])) gene_chem[i] = 0 if(chems[rid][i]) - chems[rid][i] = max(1,round((gene_chem[i] + chems[rid][i])/2)) + chems[rid][i] = max(1,floor((gene_chem[i] + chems[rid][i])/2)) else chems[rid][i] = gene_chem[i] @@ -434,7 +434,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if(!exude_gasses) exude_gasses = list() exude_gasses |= new_gasses for(var/gas in exude_gasses) - exude_gasses[gas] = max(1,round(exude_gasses[gas]*0.8)) + exude_gasses[gas] = max(1,floor(exude_gasses[gas]*0.8)) alter_temp = gene.values[4] potency = gene.values[5] @@ -442,7 +442,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("consumption") - if(gene.values.len < 7) return + if(length(gene.values) < 7) return consume_gasses = gene.values[1] requires_nutrients = gene.values[2] @@ -454,7 +454,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("environment") - if(gene.values.len < 6) return + if(length(gene.values) < 6) return ideal_heat = gene.values[1] heat_tolerance = gene.values[2] @@ -465,7 +465,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("resistance") - if(gene.values.len < 3) return + if(length(gene.values) < 3) return toxins_tolerance = gene.values[1] pest_tolerance = gene.values[2] @@ -473,7 +473,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("vigour") - if(gene.values.len < 6) return + if(length(gene.values) < 6) return endurance = gene.values[1] yield = gene.values[2] @@ -484,15 +484,15 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("flowers") - if(gene.values.len < 7) return + if(length(gene.values) < 7) return product_icon = gene.values[1] - product_colour = gene.values[2] + product_color = gene.values[2] biolum = gene.values[3] - biolum_colour = gene.values[4] + biolum_color = gene.values[4] flowers = gene.values[5] flower_icon = gene.values[6] - flower_colour = gene.values[7] + flower_color = gene.values[7] //Returns a list of the desired trait values. /datum/seed/proc/get_gene(genetype) @@ -554,12 +554,12 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria if("flowers") P.values = list( (product_icon ? product_icon : 0), - (product_colour ? product_colour : 0), + (product_color ? product_color : 0), (biolum ? biolum : 0), - (biolum_colour ? biolum_colour : 0), + (biolum_color ? biolum_color : 0), (flowers ? flowers : 0), (flower_icon ? flower_icon : 0), - (flower_colour ? flower_colour : 0) + (flower_color ? flower_color : 0) ) return (P ? P : 0) @@ -571,7 +571,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria return var/got_product - if(!isnull(products) && products.len && yield > 0) + if(LAZYLEN(products) && yield > 0) got_product = 1 if(!got_product && !harvest_sample) @@ -580,10 +580,10 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria to_chat(user, "You [harvest_sample ? "take a sample" : "harvest"] from the [display_name].") //This may be a new line. Update the global if it is. - if(name == "new line" || !(name in seed_types)) - uid = seed_types.len + 1 + if(name == "new line" || !(name in GLOB.seed_types)) + uid = length(GLOB.seed_types) + 1 name = "[uid]" - seed_types[name] = src + GLOB.seed_types[name] = src if(harvest_sample) var/obj/item/seeds/seeds = new(get_turf(user)) @@ -673,10 +673,10 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria new_seed.parasite = parasite new_seed.plant_icon = plant_icon new_seed.product_icon = product_icon - new_seed.product_colour = product_colour + new_seed.product_color = product_color new_seed.packet_icon = packet_icon new_seed.biolum = biolum - new_seed.biolum_colour = biolum_colour + new_seed.biolum_color = biolum_color new_seed.flowers = flowers new_seed.flower_icon = flower_icon new_seed.alter_temp = alter_temp @@ -1099,7 +1099,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria potency = 30 growth_stages = 4 biolum = 1 - biolum_colour = "#006622" + biolum_color = "#006622" /datum/seed/mushroom/plastic name = "plastic" @@ -1551,7 +1551,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria packet_icon = "seed-kudzu" products = list(/obj/item/reagent_container/food/snacks/grown/kudzupod) plant_icon = "kudzu" - product_colour = "#96D278" + product_color = "#96D278" chems = list("plantmatter" = list(1,50), "anti_toxin" = list(1,25)) lifespan = 20 diff --git a/code/modules/hydroponics/seed_machines/seed_editor.dm b/code/modules/hydroponics/seed_machines/seed_editor.dm index 2e89a9c7fb..bfc059188d 100644 --- a/code/modules/hydroponics/seed_machines/seed_editor.dm +++ b/code/modules/hydroponics/seed_machines/seed_editor.dm @@ -17,11 +17,11 @@ data["disk"] = loaded_disk - if(loaded_disk && loaded_disk.genes.len) + if(loaded_disk && length(loaded_disk.genes)) data["sourceName"] = loaded_disk.genesource for(var/datum/plantgene/P in loaded_disk.genes) - locus.Add("[gene_tag_masks[P.genetype]]") + locus.Add("[GLOB.gene_tag_masks[P.genetype]]") data["locus"] = locus else @@ -56,7 +56,7 @@ if(!loaded_disk || !seed) return - if(!isnull(seed_types[seed.seed.name])) + if(!isnull(GLOB.seed_types[seed.seed.name])) seed.seed = seed.seed.diverge(1) seed.seed_type = seed.seed.name seed.update_seed() diff --git a/code/modules/hydroponics/seed_machines/seed_extractor.dm b/code/modules/hydroponics/seed_machines/seed_extractor.dm index 4f8867596c..58d11e7990 100644 --- a/code/modules/hydroponics/seed_machines/seed_extractor.dm +++ b/code/modules/hydroponics/seed_machines/seed_extractor.dm @@ -16,10 +16,10 @@ var/list/data = list() var/list/geneMasks = list() - for(var/gene_tag in gene_tag_masks) + for(var/gene_tag in GLOB.gene_tag_masks) var/list/genedata = list(list( "tag" = gene_tag, - "mask" = gene_tag_masks[gene_tag] + "mask" = GLOB.gene_tag_masks[gene_tag] )) geneMasks += genedata @@ -89,8 +89,8 @@ if(!genetics.roundstart) loaded_disk.genesource += " (variety #[genetics.uid])" - loaded_disk.name += " ([gene_tag_masks[params["gene"]]], #[genetics.uid])" - loaded_disk.desc += " The label reads \'gene [gene_tag_masks[params["gene"]]], sampled from [genetics.display_name]\'." + loaded_disk.name += " ([GLOB.gene_tag_masks[params["gene"]]], #[genetics.uid])" + loaded_disk.desc += " The label reads \'gene [GLOB.gene_tag_masks[params["gene"]]], sampled from [genetics.display_name]\'." playsound(loc, 'sound/machines/fax.ogg', 15, 1) eject_disk() diff --git a/code/modules/hydroponics/seed_machines/seed_machines.dm b/code/modules/hydroponics/seed_machines/seed_machines.dm index 501118465e..4bb07f590f 100644 --- a/code/modules/hydroponics/seed_machines/seed_machines.dm +++ b/code/modules/hydroponics/seed_machines/seed_machines.dm @@ -30,10 +30,10 @@ return seed.forceMove(get_turf(src)) - if(seed.seed.name == "new line" || isnull(seed_types[seed.seed.name])) - seed.seed.uid = seed_types.len + 1 + if(seed.seed.name == "new line" || isnull(GLOB.seed_types[seed.seed.name])) + seed.seed.uid = length(GLOB.seed_types) + 1 seed.seed.name = "[seed.seed.uid]" - seed_types[seed.seed.name] = seed.seed + GLOB.seed_types[seed.seed.name] = seed.seed seed.update_seed() playsound(src, 'sound/machines/terminal_eject.ogg', 25, TRUE) @@ -75,7 +75,7 @@ else var/obj/item/disk/botany/B = W - if(B.genes && B.genes.len) + if(LAZYLEN(B.genes)) if(!disk_needs_genes) to_chat(user, SPAN_WARNING("That disk already has gene data loaded.")) return diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index ca203dcc1a..1895389abb 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -50,8 +50,8 @@ //Grabs the appropriate seed datum from the global list. /obj/item/seeds/proc/update_seed() - if(!seed && seed_type && !isnull(seed_types) && seed_types[seed_type]) - seed = seed_types[seed_type] + if(!seed && seed_type && !isnull(GLOB.seed_types) && GLOB.seed_types[seed_type]) + seed = GLOB.seed_types[seed_type] update_appearance() //Updates strings and icon appropriately based on seed datum. diff --git a/code/modules/hydroponics/vines.dm b/code/modules/hydroponics/vines.dm index 0b7987e82b..5e30991948 100644 --- a/code/modules/hydroponics/vines.dm +++ b/code/modules/hydroponics/vines.dm @@ -138,7 +138,7 @@ if(seed.carnivorous == 2) to_chat(buckled_mob, SPAN_DANGER("\The [src] pierces your flesh greedily!")) - var/damage = rand(round(seed.potency/2),seed.potency) + var/damage = rand(floor(seed.potency/2),seed.potency) if(!istype(H)) H.apply_damage(damage, BRUTE) return @@ -156,7 +156,7 @@ H.updatehealth() // Inject some chems. - if(seed.chems && seed.chems.len && istype(H)) + if(LAZYLEN(seed.chems) && istype(H)) to_chat(H, SPAN_DANGER("You feel something seeping into your skin!")) for(var/rid in seed.chems) var/injecting = min(5,max(1,seed.potency/5)) @@ -167,7 +167,7 @@ // Update bioluminescence. if(seed.biolum) - set_light(1+round(seed.potency/10)) + set_light(1+floor(seed.potency/10)) return else set_light(0) @@ -175,24 +175,24 @@ // Update flower/product overlay. overlays.Cut() if(age >= seed.maturation) - if(prob(20) && seed.products && seed.products.len && !harvest && ((age-lastproduce) > seed.production)) + if(prob(20) && LAZYLEN(seed.products) && !harvest && ((age-lastproduce) > seed.production)) harvest = 1 lastproduce = age if(harvest) var/image/fruit_overlay = image('icons/obj/structures/machinery/hydroponics.dmi',"") - if(seed.product_colour) - fruit_overlay.color = seed.product_colour + if(seed.product_color) + fruit_overlay.color = seed.product_color overlays += fruit_overlay if(seed.flowers) var/image/flower_overlay = image('icons/obj/structures/machinery/hydroponics.dmi',"[seed.flower_icon]") - if(seed.flower_colour) - flower_overlay.color = seed.flower_colour + if(seed.flower_color) + flower_overlay.color = seed.flower_color overlays += flower_overlay /obj/effect/plantsegment/proc/spread() - var/direction = pick(cardinal) + var/direction = pick(GLOB.cardinals) var/step = get_step(src,direction) if(istype(step,/turf/open/floor)) var/turf/open/floor/F = step @@ -319,9 +319,9 @@ return // Check if we're too big for our own good. - if(vines.len >= (seed ? seed.potency * collapse_limit : 250) && !reached_collapse_size) + if(length(vines) >= (seed ? seed.potency * collapse_limit : 250) && !reached_collapse_size) reached_collapse_size = 1 - if(vines.len >= (seed ? seed.potency * slowdown_limit : 30) && !reached_slowdown_size ) + if(length(vines) >= (seed ? seed.potency * slowdown_limit : 30) && !reached_slowdown_size ) reached_slowdown_size = 1 var/length = 0 @@ -335,7 +335,7 @@ else length = 1 - length = min(30, max(length, vines.len/5)) + length = min(30, max(length, length(vines)/5)) // Update as many pieces of vine as we're allowed to. // Append updated vines to the end of the growth queue. diff --git a/code/modules/law/laws/major_crime.dm b/code/modules/law/laws/major_crime.dm index 58b30dfd6c..94ee72e869 100644 --- a/code/modules/law/laws/major_crime.dm +++ b/code/modules/law/laws/major_crime.dm @@ -38,9 +38,15 @@ desc = "Failure to perform one’s role to an acceptable standard. For example, a Commanding Officer failing to properly organize and ensure their personnel are given orders, failing to follow proper procedure in detriment of one’s duties, or ship crew leaving the ship without authorization from the Commanding Officer or their Department Head. Any officer who commits a crime may be charged with Neglect of Duty in addition to the appropriate crimes." brig_time = 15 +/datum/law/major_law/listening_bugs + name = "Unauthorized use of a Listening Device" + desc = "Using a listening device against SOP in a secure area such as the CIC. Use of listening devices tied to foreign governments or terror organisations is also considered subterfuge." + special_punishment = "Listening Device Confiscation" + brig_time = 15 + /datum/law/major_law/subterfuge name = "Subterfuge" - desc = "Carrying out objectives or being tied to material that describe planned actions that go against the USCM. Strong proof is required that the individual is working against USCM." + desc = "Carrying out objectives or being tied to material that describe planned actions that go against the USCM. Strong proof is required that the individual is working against USCM. Use of listening devices tied to foreign governments or terror organisations in secure areas is also considered subterfuge." special_punishment = "Termination of ID/Discharge to planet" brig_time = 15 diff --git a/code/modules/law/laws/minor_crime.dm b/code/modules/law/laws/minor_crime.dm index 651b9dd42d..e797c61d48 100644 --- a/code/modules/law/laws/minor_crime.dm +++ b/code/modules/law/laws/minor_crime.dm @@ -29,6 +29,12 @@ special_punishment = "Escort Out" brig_time = 7.5 +/datum/law/minor_law/listening_bugs + name = "Unauthorized use of a Listening Device" + desc = "Using a listening device against SOP in a public area such as the gym." + special_punishment = "Listening Device Confiscation" + brig_time = 7.5 + /datum/law/minor_law/disrespect name = "Disrespecting a Superior Officer" desc = "Using offensive names or being directly disrespectful to someone of a Commissioned Officer of higher rank or position." diff --git a/code/modules/law/laws/precautionary_charge.dm b/code/modules/law/laws/precautionary_charge.dm index c06cd6ca52..7be4cb2b2e 100644 --- a/code/modules/law/laws/precautionary_charge.dm +++ b/code/modules/law/laws/precautionary_charge.dm @@ -10,7 +10,7 @@ /datum/law/precautionary_charge/insanity name = "Insanity" - desc = "Acting in such a manner which makes the offender not sound clear of mind. The CMO or Synthetic can declare insanity on a Marine if the Marine is believed to not be of sound mind. The Marine once cleared to be of sound mind may be released from this particular charge." + desc = "Acting in such a manner which makes the offender not sound clear of mind. The subject, once cleared to be of sound mind, may be released from this particular charge. Excepting in cases of Suicide/Attempted Suicide, only the CMO/Synthetic may declare someone insane." /datum/law/precautionary_charge/prisoner_of_war name = "Prisoner of War" diff --git a/code/modules/lighting/lighting_atom.dm b/code/modules/lighting/lighting_atom.dm index 2abe8c5980..edc5f4baf8 100644 --- a/code/modules/lighting/lighting_atom.dm +++ b/code/modules/lighting/lighting_atom.dm @@ -112,14 +112,14 @@ /atom/proc/flash_lighting_fx( _range = FLASH_LIGHT_RANGE, _power = FLASH_LIGHT_POWER, - _color = LIGHT_COLOR_WHITE, + _color = COLOR_WHITE, _duration = FLASH_LIGHT_DURATION, _reset_lighting = TRUE, _flash_times = 1) new /obj/effect/light_flash(get_turf(src), _range, _power, _color, _duration, _flash_times) -/obj/effect/light_flash/Initialize(mapload, _range = FLASH_LIGHT_RANGE, _power = FLASH_LIGHT_POWER, _color = LIGHT_COLOR_WHITE, _duration = FLASH_LIGHT_DURATION, _flash_times = 1) +/obj/effect/light_flash/Initialize(mapload, _range = FLASH_LIGHT_RANGE, _power = FLASH_LIGHT_POWER, _color = COLOR_WHITE, _duration = FLASH_LIGHT_DURATION, _flash_times = 1) light_range = _range light_power = _power light_color = _color diff --git a/code/modules/lighting/lighting_mask/lighting_mask.dm b/code/modules/lighting/lighting_mask/lighting_mask.dm index bf824033ad..c1276d19da 100644 --- a/code/modules/lighting/lighting_mask/lighting_mask.dm +++ b/code/modules/lighting/lighting_mask/lighting_mask.dm @@ -69,7 +69,7 @@ // - Center the overlay image // - Ok so apparently translate is affected by the scale we already did huh. // ^ Future me here, its because it works as translate then scale since its backwards. - // ^ ^ Future future me here, it totally shouldnt since the translation component of a matrix is independant to the scale component. + // ^ ^ Future future me here, it totally shouldnt since the translation component of a matrix is independent to the scale component. new_size_matrix.Translate(-128 + 16) //Adjust for pixel offsets var/invert_offsets = attached_atom.dir & (NORTH | EAST) diff --git a/code/modules/lighting/lighting_mask/shadow_calculator.dm b/code/modules/lighting/lighting_mask/shadow_calculator.dm index 42f98b47e7..480b4d534f 100644 --- a/code/modules/lighting/lighting_mask/shadow_calculator.dm +++ b/code/modules/lighting/lighting_mask/shadow_calculator.dm @@ -95,7 +95,7 @@ SSlighting.total_shadow_calculations ++ //Ceiling the range since we need it in integer form - var/range = CEILING(radius, 1) + var/range = ceil(radius) DO_SOMETHING_IF_DEBUGGING_SHADOWS(var/timer = TICK_USAGE) //Work out our position diff --git a/code/modules/lighting/lighting_static/static_lighting_source.dm b/code/modules/lighting/lighting_static/static_lighting_source.dm index e650a432fc..872f37bce2 100644 --- a/code/modules/lighting/lighting_static/static_lighting_source.dm +++ b/code/modules/lighting/lighting_static/static_lighting_source.dm @@ -113,7 +113,7 @@ //Cubic lighting falloff. This has the *exact* same range as the original lighting falloff calculation, down to the exact decimal, but it looks a little unnatural due to the harsher falloff and how it's generally brighter across the board. //#define LUM_FALLOFF(C, T) (1 - CLAMP01((((C.x - T.x) * (C.x - T.x)) + ((C.y - T.y) * (C.y - T.y)) + LIGHTING_HEIGHT) / max(1, light_range*light_range))) -//Linear lighting falloff. This resembles the original lighting falloff calculation the best, but results in lights having a slightly larger range, which is most noticable with large light sources. This also results in lights being diamond-shaped, fuck. This looks the darkest out of the three due to how lights are brighter closer to the source compared to the original falloff algorithm. This falloff method also does not at all take into account lighting height, as it acts as a flat reduction to light range with this method. +//Linear lighting falloff. This resembles the original lighting falloff calculation the best, but results in lights having a slightly larger range, which is most noticeable with large light sources. This also results in lights being diamond-shaped, fuck. This looks the darkest out of the three due to how lights are brighter closer to the source compared to the original falloff algorithm. This falloff method also does not at all take into account lighting height, as it acts as a flat reduction to light range with this method. //#define LUM_FALLOFF(C, T) (1 - CLAMP01(((abs(C.x - T.x) + abs(C.y - T.y))) / max(1, light_range+1))) //Linear lighting falloff but with an octagonal shape in place of a diamond shape. Lummox JR please add pointer support. @@ -223,8 +223,8 @@ var/list/turf/turfs = list() if (source_turf) var/oldlum = source_turf.luminosity - source_turf.luminosity = CEILING(light_range, 1) - for(var/turf/T in view(CEILING(light_range, 1), source_turf)) + source_turf.luminosity = ceil(light_range) + for(var/turf/T in view(ceil(light_range), source_turf)) if(!IS_OPAQUE_TURF(T)) if (!T.lighting_corners_initialised) T.static_generate_missing_corners() diff --git a/code/modules/logging/global_logs.dm b/code/modules/logging/global_logs.dm index f8a3a99c87..3fbcb70a1a 100644 --- a/code/modules/logging/global_logs.dm +++ b/code/modules/logging/global_logs.dm @@ -25,8 +25,8 @@ GLOBAL_PROTECT(world_runtime_log) GLOBAL_VAR(scheduler_stats) GLOBAL_PROTECT(scheduler_stats) -GLOBAL_VAR(mutator_logs) -GLOBAL_PROTECT(mutator_logs) +GLOBAL_VAR(strain_logs) +GLOBAL_PROTECT(strain_logs) GLOBAL_VAR(mapping_log) GLOBAL_PROTECT(mapping_log) diff --git a/code/modules/mapping/map_template.dm b/code/modules/mapping/map_template.dm index 50a343635d..ff72ea2e1d 100644 --- a/code/modules/mapping/map_template.dm +++ b/code/modules/mapping/map_template.dm @@ -48,18 +48,7 @@ var/list/obj/docking_port/stationary/ports = list() var/list/area/areas = list() - var/list/turfs = block( - locate( - bounds[MAP_MINX], - bounds[MAP_MINY], - bounds[MAP_MINZ] - ), - locate( - bounds[MAP_MAXX], - bounds[MAP_MAXY], - bounds[MAP_MAXZ] - ) - ) + var/list/turfs = block(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ], bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]) for(var/turf/current_turf as anything in turfs) var/area/current_turfs_area = current_turf.loc areas |= current_turfs_area @@ -89,8 +78,8 @@ unlit.static_lighting_build_overlay() /datum/map_template/proc/load_new_z(secret = FALSE) - var/x = round((world.maxx - width) * 0.5) + 1 - var/y = round((world.maxy - height) * 0.5) + 1 + var/x = floor((world.maxx - width) * 0.5) + 1 + var/y = floor((world.maxy - height) * 0.5) + 1 var/datum/space_level/level = SSmapping.add_new_zlevel(name, list(), contain_turfs = FALSE) var/datum/parsed_map/parsed = load_map( @@ -115,7 +104,7 @@ /datum/map_template/proc/load(turf/T, centered = FALSE, delete = FALSE) if(centered) - T = locate(T.x - round(width/2) , T.y - round(height/2) , T.z) + T = locate(T.x - floor(width/2) , T.y - floor(height/2) , T.z) if(!T) return if((T.x+width) - 1 > world.maxx) @@ -163,12 +152,9 @@ return /datum/map_template/proc/get_affected_turfs(turf/T, centered = FALSE) - var/turf/placement = T if(centered) - var/turf/corner = locate(placement.x - round(width/2), placement.y - round(height/2), placement.z) - if(corner) - placement = corner - return block(placement, locate(placement.x+width-1, placement.y+height-1, placement.z)) + return RECT_TURFS(floor(width / 2), floor(height / 2), T) + return CORNER_BLOCK(T, width, height) //for your ever biggening badminnery kevinz000 diff --git a/code/modules/mapping/preloader.dm b/code/modules/mapping/preloader.dm index bd89d0e030..3f03522a24 100644 --- a/code/modules/mapping/preloader.dm +++ b/code/modules/mapping/preloader.dm @@ -9,7 +9,7 @@ GLOBAL_LIST_INIT(_preloader_path, null) var/target_path /world/proc/preloader_setup(list/the_attributes, path) - if(the_attributes.len) + if(length(the_attributes)) GLOB.use_preloader = TRUE GLOB._preloader_attributes = the_attributes GLOB._preloader_path = path diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm index 424ab22ae4..d15e478f94 100644 --- a/code/modules/mapping/reader.dm +++ b/code/modules/mapping/reader.dm @@ -355,10 +355,7 @@ // SSmapping.build_area_turfs(z_index) if(!no_changeturf) - var/list/turfs = block( - locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), - locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) - for(var/turf/T as anything in turfs) + for(var/turf/T as anything in block(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ], bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) //we do this after we load everything in. if we don't, we'll have weird atmos bugs regarding atmos adjacent turfs T.AfterChange(CHANGETURF_IGNORE_AIR) @@ -612,7 +609,7 @@ // We're gonna skip all the entries above the upper x, or maxx if cropMap is set var/x_target = line_len - key_len + 1 - var/x_step_count = ROUND_UP(x_target / key_len) + var/x_step_count = ceil(x_target / key_len) var/final_x = relative_x + (x_step_count - 1) var/x_delta_with = x_upper if(crop_map) @@ -798,8 +795,8 @@ GLOBAL_LIST_EMPTY(map_model_default) // We can skip calling this proc every time we see XXX if(!set_space \ && no_changeturf \ - && members_attributes.len == 2 \ - && members.len == 2 \ + && length(members_attributes) == 2 \ + && length(members) == 2 \ && members_attributes[1] == default_list \ && members_attributes[2] == default_list \ && members[2] == world.area \ @@ -881,8 +878,8 @@ GLOBAL_LIST_EMPTY(map_model_default) // We can skip calling this proc every time we see XXX if(!set_space \ && no_changeturf \ - && members.len == 2 \ - && members_attributes.len == 2 \ + && length(members) == 2 \ + && length(members_attributes) == 2 \ && length(members_attributes[1]) == 0 \ && length(members_attributes[2]) == 0 \ && (world.area in members) \ @@ -914,7 +911,7 @@ GLOBAL_LIST_EMPTY(map_model_default) //The next part of the code assumes there's ALWAYS an /area AND a /turf on a given tile //first instance the /area and remove it from the members list - index = members.len + index = length(members) var/area/old_area if(members[index] != /area/template_noop) if(members_attributes[index] != default_list) diff --git a/code/modules/mapping/space_management/space_reservation.dm b/code/modules/mapping/space_management/space_reservation.dm index 3c47ac3b5c..63ec6485e3 100644 --- a/code/modules/mapping/space_management/space_reservation.dm +++ b/code/modules/mapping/space_management/space_reservation.dm @@ -131,8 +131,7 @@ if(!final) continue passing = TRUE - for(var/I in final) - var/turf/checking = I + for(var/turf/checking as anything in final) if(!(checking.turf_flags & UNUSED_RESERVATION_TURF)) passing = FALSE break diff --git a/code/modules/mapping/space_management/traits.dm b/code/modules/mapping/space_management/traits.dm index 16eac0a98c..057511d9ab 100644 --- a/code/modules/mapping/space_management/traits.dm +++ b/code/modules/mapping/space_management/traits.dm @@ -3,15 +3,15 @@ if (!isnum(z) || z < 1) return null if (z_list) - if (z > z_list.len) - stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], z_list.len = [z_list.len]") + if (z > length(z_list)) + stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], length(z_list) = [length(z_list)]") return list() var/datum/space_level/S = get_level(z) return S.traits[trait] else var/list/default = DEFAULT_MAP_TRAITS - if (z > default.len) - stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], default.len = [default.len]") + if (z > length(default)) + stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], length(default) = [length(default)]") return list() return default[z][DL_TRAITS][trait] diff --git a/code/modules/mapping/space_management/zlevel_manager.dm b/code/modules/mapping/space_management/zlevel_manager.dm index 2b96065929..1e3c3a1c42 100644 --- a/code/modules/mapping/space_management/zlevel_manager.dm +++ b/code/modules/mapping/space_management/zlevel_manager.dm @@ -6,12 +6,12 @@ z_list = list() var/list/default_map_traits = DEFAULT_MAP_TRAITS - if (default_map_traits.len != world.maxz) - WARNING("More or less map attributes pre-defined ([default_map_traits.len]) than existent z-levels ([world.maxz]). Ignoring the larger.") - if (default_map_traits.len > world.maxz) + if (length(default_map_traits) != world.maxz) + WARNING("More or less map attributes pre-defined ([length(default_map_traits)]) than existent z-levels ([world.maxz]). Ignoring the larger.") + if (length(default_map_traits) > world.maxz) default_map_traits.Cut(world.maxz + 1) - for (var/I in 1 to default_map_traits.len) + for (var/I in 1 to length(default_map_traits)) var/list/features = default_map_traits[I] var/datum/space_level/S = new(I, features[DL_NAME], features[DL_TRAITS]) manage_z_level(S, filled_with_space = FALSE) @@ -20,7 +20,7 @@ /datum/controller/subsystem/mapping/proc/add_new_zlevel(name, traits = list(), z_type = /datum/space_level, contain_turfs = TRUE) UNTIL(!adding_new_zlevel) adding_new_zlevel = TRUE - var/new_z = z_list.len + 1 + var/new_z = length(z_list) + 1 if (world.maxz < new_z) world.incrementMaxZ() CHECK_TICK @@ -34,6 +34,6 @@ return S /datum/controller/subsystem/mapping/proc/get_level(z) - if (z_list && z >= 1 && z <= z_list.len) + if (z_list && z >= 1 && z <= length(z_list)) return z_list[z] - CRASH("Unmanaged z-level [z]! maxz = [world.maxz], z_list.len = [z_list ? z_list.len : "null"]") + CRASH("Unmanaged z-level [z]! maxz = [world.maxz], length(z_list) = [z_list ? length(z_list) : "null"]") diff --git a/code/modules/mapping/verify.dm b/code/modules/mapping/verify.dm index 6c9d0318ef..f3fdd61b0f 100644 --- a/code/modules/mapping/verify.dm +++ b/code/modules/mapping/verify.dm @@ -21,19 +21,19 @@ if(!loadable) html += "

      Not loadable: some tiles are missing their turfs or areas.

      " - if(bad_paths.len) + if(length(bad_paths)) html += "

      Bad paths:

        " for(var/path in bad_paths) var/list/keys = bad_paths[path] - html += "
      1. [path]: used in ([keys.len]): [keys.Join(", ")]" + html += "
      2. [path]: used in ([length(keys)]): [keys.Join(", ")]" html += "

      " - if(bad_keys.len) + if(length(bad_keys)) html += "

      Bad keys:

        " for(var/key in bad_keys) var/list/messages = bad_keys[key] html += "
      • [key]" - if(messages.len == 1) + if(length(messages) == 1) html += ": [bad_keys[key][1]]" else html += "
        • [messages.Join("
        • ")]
        " @@ -74,7 +74,7 @@ var/turfs = 0 var/areas = 0 - for(var/i in 1 to members.len) + for(var/i in 1 to length(members)) var/atom/path = members[i] turfs += ispath(path, /turf) @@ -91,7 +91,7 @@ LAZYADD(report.bad_keys[key], "[areas] areas instead of 1") // return the report - if(report.bad_paths.len || report.bad_keys.len || !report.loadable) + if(length(report.bad_paths) || length(report.bad_keys) || !report.loadable) // keep the report around so it can be referenced later report.tag = "mapreport_[++report.tag_number]" report.crashed = FALSE diff --git a/code/modules/maptext_alerts/screen_alerts.dm b/code/modules/maptext_alerts/screen_alerts.dm index b096d3b371..e0a4d2e4d5 100644 --- a/code/modules/maptext_alerts/screen_alerts.dm +++ b/code/modules/maptext_alerts/screen_alerts.dm @@ -64,6 +64,26 @@ style_open = "" style_close = "" +/atom/movable/screen/text/screen_text/command_order/tutorial + letters_per_update = 4 // overall, pretty fast while not immediately popping in + play_delay = 0.1 + fade_out_delay = 2.5 SECONDS + fade_out_time = 0.5 SECONDS + +/atom/movable/screen/text/screen_text/command_order/tutorial/end_play() + if(!player) + qdel(src) + return + + if(player.mob || HAS_TRAIT(player.mob, TRAIT_IN_TUTORIAL)) + return ..() + + for(var/atom/movable/screen/text/screen_text/command_order/tutorial/tutorial_message in player.screen_texts) + LAZYREMOVE(player.screen_texts, tutorial_message) + qdel(tutorial_message) + + return ..() + ///proc for actually playing this screen_text on a mob. /atom/movable/screen/text/screen_text/proc/play_to_client() player?.add_to_screen(src) @@ -222,6 +242,10 @@ if(!QDELETED(src)) openToolTip(usr, src, params, title = name, content = desc, theme = alerttooltipstyle) +/atom/movable/screen/alert/MouseExited(location, control, params) + . = ..() + closeToolTip(usr) + /atom/movable/screen/alert/notify_action name = "Notification" desc = "A new notification. You can enter it." diff --git a/code/modules/maptext_alerts/text_blurbs.dm b/code/modules/maptext_alerts/text_blurbs.dm index d34a4ef19a..05d0529514 100644 --- a/code/modules/maptext_alerts/text_blurbs.dm +++ b/code/modules/maptext_alerts/text_blurbs.dm @@ -5,7 +5,7 @@ set waitfor = 0 var/areaname = replacetext(A.name, "\improper", "") //The \improper flickers "ÿ" briefly - var/text = "[worldtime2text("hhmm")], [time2text(REALTIMEOFDAY, "DD-MMM-[game_year]")]\n[station_name], [areaname]" + var/text = "[worldtime2text("hhmm")], [time2text(REALTIMEOFDAY, "DD-MMM-[GLOB.game_year]")]\n[MAIN_SHIP_NAME], [areaname]" show_blurb(targets, duration, text, TRUE) @@ -14,13 +14,13 @@ exempt_ztraits = trait or list of traits of zlevels where any marines don't see shouldn't see the ship marines' drop message. Ex. ZTRAIT_GROUND by default. unit = the unit the marines are from. FF, Dust Raiders etc. Military crew see this. base = the base the marines are staging from. The ship, Whiskey Outpost etc. Noncombat crew see this.**/ -/proc/show_blurb_uscm(list/exempt_ztraits = ZTRAIT_GROUND, unit = "3rd Bat. 'Solar Devils'", base = station_name) +/proc/show_blurb_uscm(list/exempt_ztraits = ZTRAIT_GROUND, unit = "3rd Bat. 'Solar Devils'", base = MAIN_SHIP_NAME) if(!islist(exempt_ztraits)) exempt_ztraits = list(exempt_ztraits) var/list/exempt_zlevels = SSmapping.levels_by_any_trait(exempt_ztraits) - var/base_text = "[uppertext(round_statistics.round_name)]\n\ - [worldtime2text("hhmm hrs")], [uppertext(time2text(REALTIMEOFDAY, "DD-MMM-[game_year]"))]\n\ + var/base_text = "[uppertext(GLOB.round_statistics.round_name)]\n\ + [worldtime2text("hhmm hrs")], [uppertext(time2text(REALTIMEOFDAY, "DD-MMM-[GLOB.game_year]"))]\n\ [SSmapping.configs[GROUND_MAP].map_name]" var/list/post_text = list("combat" = "\n[unit]", diff --git a/code/modules/mentor/looc_toggle.dm b/code/modules/mentor/looc_toggle.dm index 7c5b95b1fc..b224e72e79 100644 --- a/code/modules/mentor/looc_toggle.dm +++ b/code/modules/mentor/looc_toggle.dm @@ -13,6 +13,7 @@ // Called when the action is clicked on. /datum/action/looc_toggle/action_activate() + . = ..() if(owner.looc_overhead) button.icon_state = "template" owner.looc_overhead = FALSE diff --git a/code/modules/mob/camera/imaginary_friend.dm b/code/modules/mob/camera/imaginary_friend.dm index 0be51ede32..0a4d5ee65c 100644 --- a/code/modules/mob/camera/imaginary_friend.dm +++ b/code/modules/mob/camera/imaginary_friend.dm @@ -150,21 +150,21 @@ var/datum/mob_hud/hud switch(hud_choice) if("Medical HUD") - hud = huds[MOB_HUD_MEDICAL_OBSERVER] + hud = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] if("Security HUD") - hud = huds[MOB_HUD_SECURITY_ADVANCED] + hud = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] if("Squad HUD") - hud = huds[MOB_HUD_FACTION_OBSERVER] + hud = GLOB.huds[MOB_HUD_FACTION_OBSERVER] if("Xeno Status HUD") - hud = huds[MOB_HUD_XENO_STATUS] + hud = GLOB.huds[MOB_HUD_XENO_STATUS] if("Faction UPP HUD") - hud = huds[MOB_HUD_FACTION_UPP] + hud = GLOB.huds[MOB_HUD_FACTION_UPP] if("Faction Wey-Yu HUD") - hud = huds[MOB_HUD_FACTION_WY] + hud = GLOB.huds[MOB_HUD_FACTION_WY] if("Faction TWE HUD") - hud = huds[MOB_HUD_FACTION_TWE] + hud = GLOB.huds[MOB_HUD_FACTION_TWE] if("Faction CLF HUD") - hud = huds[MOB_HUD_FACTION_CLF] + hud = GLOB.huds[MOB_HUD_FACTION_CLF] if(hud_choice in current_huds) hud.remove_hud_from(src, src) @@ -280,6 +280,7 @@ action_icon_state = "joinmob" /datum/action/innate/imaginary_orbit/action_activate() + . = ..() var/mob/camera/imaginary_friend/friend = owner friend.recall() @@ -288,6 +289,7 @@ action_icon_state = "hidemob" /datum/action/innate/imaginary_hide/action_activate() + . = ..() var/mob/camera/imaginary_friend/friend = owner if(friend.hidden) friend.hidden = FALSE diff --git a/code/modules/mob/dead/observer/actions.dm b/code/modules/mob/dead/observer/actions.dm index ff897db4a3..192c6cd1e3 100644 --- a/code/modules/mob/dead/observer/actions.dm +++ b/code/modules/mob/dead/observer/actions.dm @@ -3,6 +3,7 @@ action_icon_state = "ghost" /datum/action/ghost/action_activate() + . = ..() if(!owner.client) return @@ -21,6 +22,9 @@ INVOKE_ASYNC(src, PROC_REF(remove_from), user) +/datum/action/ghost/xeno + action_icon_state = "ghost_xeno" + /datum/action/join_ert name = "Join ERT" action_icon_state = "join_ert" @@ -35,6 +39,7 @@ qdel(src) /datum/action/join_ert/action_activate() + . = ..() if(!owner.client) return @@ -47,6 +52,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_PREDATOR /datum/action/join_predator/action_activate() + . = ..() var/mob/dead/observer/activator = owner activator.join_as_yautja() @@ -55,6 +61,7 @@ action_icon_state = "view_crew_manifest" /datum/action/observer_action/view_crew_manifest/action_activate() + . = ..() show_browser(owner, GLOB.data_core.get_manifest(), "Crew Manifest", "manifest", "size=450x750") /datum/action/observer_action/view_hive_status @@ -62,6 +69,7 @@ action_icon_state = "view_hive_status" /datum/action/observer_action/view_hive_status/action_activate() + . = ..() var/mob/dead/observer/activator = owner activator.hive_status() @@ -71,6 +79,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_XENO /datum/action/observer_action/join_xeno/action_activate() + . = ..() if(!owner.client) return @@ -87,6 +96,7 @@ listen_signal = COMSIG_KB_OBSERVER_JOIN_LESSER_DRONE /datum/action/observer_action/join_lesser_drone/action_activate() + . = ..() if(!owner.client) return diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index cf225caadc..d7bb9f49ce 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -33,8 +33,11 @@ layer = ABOVE_FLY_LAYER stat = DEAD mob_flags = KNOWS_TECHNOLOGY - var/adminlarva = FALSE + + /// If the observer is an admin, are they excluded from the xeno queue? + var/admin_larva_protection = TRUE // Enabled by default var/ghostvision = TRUE + var/self_visibility = TRUE var/can_reenter_corpse var/started_as_observer //This variable is set to 1 when you enter the game as an observer. //If you died in the game and are a ghost - this will remain as null. @@ -69,10 +72,10 @@ set desc = "Toggles your ability to see things only ghosts can see, like other ghosts" set category = "Ghost.Settings" ghostvision = !ghostvision - if(hud_used) - var/atom/movable/screen/plane_master/lighting/lighting = hud_used.plane_masters["[GHOST_PLANE]"] - if (lighting) - lighting.alpha = ghostvision? 255 : 0 + if(ghostvision) + see_invisible = INVISIBILITY_OBSERVER + else + see_invisible = HIDE_INVISIBLE_OBSERVER to_chat(usr, SPAN_NOTICE("You [(ghostvision?"now":"no longer")] have ghost vision.")) /mob/dead/observer/Initialize(mapload, mob/body) @@ -120,7 +123,7 @@ forceMove(spawn_turf) if(!name) //To prevent nameless ghosts - name = capitalize(pick(first_names_male)) + " " + capitalize(pick(last_names)) + name = capitalize(pick(GLOB.first_names_male)) + " " + capitalize(pick(GLOB.last_names)) if(name == "Unknown") if(body) name = body.real_name @@ -138,8 +141,6 @@ var/datum/action/observer_action/new_action = new path() new_action.give_to(src) - RegisterSignal(SSdcs, COMSIG_GLOB_PREDATOR_ROUND_TOGGLED, PROC_REF(toggle_predator_action)) - if(SSticker.mode && SSticker.mode.flags_round_type & MODE_PREDATOR) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(to_chat), src, "This is a PREDATOR ROUND! If you are whitelisted, you may Join the Hunt!"), 2 SECONDS) @@ -299,15 +300,22 @@ hud_used.show_hud(hud_used.hud_version) /mob/dead/observer/Login() - ..() + ..() // This calls signals which might have resulted in our client getting deleted + + if(!client) + return - toggle_predator_action() + if(client.check_whitelist_status(WHITELIST_PREDATOR)) + RegisterSignal(SSdcs, COMSIG_GLOB_PREDATOR_ROUND_TOGGLED, PROC_REF(toggle_predator_action)) + toggle_predator_action() client.move_delay = MINIMAL_MOVEMENT_INTERVAL if(observe_target_mob) clean_observe_target() + set_huds_from_prefs() + /mob/dead/observer/Destroy(force) GLOB.observer_list -= src QDEL_NULL(orbit_menu) @@ -374,28 +382,28 @@ if(HUD_toggled[i]) switch(i) if("Medical HUD") - H = huds[MOB_HUD_MEDICAL_OBSERVER] + H = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] H.add_hud_to(src, src) if("Security HUD") - H = huds[MOB_HUD_SECURITY_ADVANCED] + H = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] H.add_hud_to(src, src) if("Squad HUD") - H = huds[MOB_HUD_FACTION_OBSERVER] + H = GLOB.huds[MOB_HUD_FACTION_OBSERVER] H.add_hud_to(src, src) if("Xeno Status HUD") - H = huds[MOB_HUD_XENO_STATUS] + H = GLOB.huds[MOB_HUD_XENO_STATUS] H.add_hud_to(src, src) if("Faction UPP HUD") - H = huds[MOB_HUD_FACTION_UPP] + H = GLOB.huds[MOB_HUD_FACTION_UPP] H.add_hud_to(src, src) if("Faction Wey-Yu HUD") - H = huds[MOB_HUD_FACTION_WY] + H = GLOB.huds[MOB_HUD_FACTION_WY] H.add_hud_to(src, src) if("Faction TWE HUD") - H = huds[MOB_HUD_FACTION_TWE] + H = GLOB.huds[MOB_HUD_FACTION_TWE] H.add_hud_to(src, src) if("Faction CLF HUD") - H = huds[MOB_HUD_FACTION_CLF] + H = GLOB.huds[MOB_HUD_FACTION_CLF] H.add_hud_to(src, src) see_invisible = INVISIBILITY_OBSERVER @@ -443,7 +451,7 @@ Works together with spawning an observer, noted above. ghost.langchat_make_image() SStgui.on_transfer(src, ghost) - if(is_admin_level((get_turf(src))?.z)) // Gibbed humans ghostize the brain in their head which itself is z 0 + if(should_block_game_interaction(src)) // Gibbed humans ghostize the brain in their head which itself is z 0 ghost.timeofdeath = 1 // Bypass respawn limit if you die on the admin zlevel ghost.key = key @@ -454,20 +462,26 @@ Works together with spawning an observer, noted above. if(!can_reenter_corpse) away_timer = 300 //They'll never come back, so we can max out the timer right away. - if(round_statistics) - round_statistics.update_panel_data() + if(GLOB.round_statistics) + GLOB.round_statistics.update_panel_data() track_death_calculations() //This needs to be done before mind is nullified if(ghost.mind) ghost.mind.original = ghost else if(ghost.mind && ghost.mind.player_entity) //Use else here because track_death_calculations() already calls this. - ghost.mind.player_entity.update_panel_data(round_statistics) + ghost.mind.player_entity.update_panel_data(GLOB.round_statistics) ghost.mind.original = src mind = null + // Larva queue: We use the larger of their existing queue time or the new timeofdeath except for facehuggers or lesser drone + var/new_tod = (isfacehugger(src) || islesserdrone(src)) ? 1 : ghost.timeofdeath + + // if they died as facehugger or lesser drone, bypass typical TOD checks + ghost.bypass_time_of_death_checks = (isfacehugger(src) || islesserdrone(src)) + if(ghost.client) ghost.client.init_verbs() - ghost.client.change_view(world_view_size) //reset view range to default + ghost.client.change_view(GLOB.world_view_size) //reset view range to default ghost.client.pixel_x = 0 //recenters our view ghost.client.pixel_y = 0 ghost.set_lighting_alpha_from_pref(ghost.client) @@ -479,13 +493,12 @@ Works together with spawning an observer, noted above. if(ghost.client.player_data) ghost.client.player_data.load_timestat_data() - // Larva queue: We use the larger of their existing queue time or the new timeofdeath except for facehuggers or lesser drone - var/new_tod = (isfacehugger(src) || islesserdrone(src)) ? 1 : ghost.timeofdeath - - // if they died as facehugger or lesser drone, bypass typical TOD checks - ghost.bypass_time_of_death_checks = (isfacehugger(src) || islesserdrone(src)) + ghost.client.player_details.larva_queue_time = max(ghost.client.player_details.larva_queue_time, new_tod) - ghost.client?.player_details.larva_queue_time = max(ghost.client.player_details.larva_queue_time, new_tod) + else if(persistent_ckey) + var/datum/player_details/details = GLOB.player_details[persistent_ckey] + if(details) + details.larva_queue_time = max(details.larva_queue_time, new_tod) ghost.set_huds_from_prefs() @@ -504,7 +517,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/living/proc/do_ghost() if(stat == DEAD) if(mind && mind.player_entity) - mind.player_entity.update_panel_data(round_statistics) + mind.player_entity.update_panel_data(GLOB.round_statistics) ghostize(TRUE) else var/list/options = list("Ghost", "Stay in body") @@ -527,7 +540,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp msg_admin_niche("[key_name_admin(client)] has ghosted. [ADMIN_JMP(location)]") log_game("[key_name_admin(client)] has ghosted.") var/mob/dead/observer/ghost = ghostize((is_nested && nest && !QDELETED(nest))) //FALSE parameter is so we can never re-enter our body, "Charlie, you can never come baaaack~" :3 - if(ghost && !is_admin_level(z)) + SEND_SIGNAL(src, COMSIG_LIVING_GHOSTED, ghost) + if(ghost && !should_block_game_interaction(src)) ghost.timeofdeath = world.time // Larva queue: We use the larger of their existing queue time or the new timeofdeath except for facehuggers or lesser drone @@ -614,7 +628,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/value = SStechtree.trees[1] - if(trees.len > 1) + if(length(trees) > 1) value = tgui_input_list(src, "Choose which tree to enter", "Enter Tree", trees) if(!value) @@ -641,14 +655,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp for(var/turf/T in get_area_turfs(thearea.type)) L+=T - if(!L || !L.len) + if(!LAZYLEN(L)) to_chat(src, "No area available.") return usr.forceMove(pick(L)) following = null -/mob/dead/observer/proc/scan_health(mob/living/target in oview()) +/mob/dead/observer/proc/scan_health(mob/living/target in GLOB.living_mob_list) set name = "Scan Health" if(!istype(target)) @@ -681,7 +695,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp last_health_display.target_mob = target last_health_display.look_at(src, DETAIL_LEVEL_FULL, bypass_checks = TRUE) -/mob/dead/observer/verb/follow_local(mob/target) +/mob/dead/observer/verb/follow_local(mob/target in GLOB.mob_list) set category = "Ghost.Follow" set name = "Follow Local Mob" set desc = "Follow on-screen mob" @@ -805,10 +819,13 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set category = "Ghost.Settings" if(client) - if(client.view != world_view_size) - client.change_view(world_view_size) - else + // Check the current zoom level and toggle to the next level cyclically + if (client.view == GLOB.world_view_size) client.change_view(14) + else if (client.view == 14) + client.change_view(28) + else + client.change_view(GLOB.world_view_size) /mob/dead/observer/verb/toggle_darkness() @@ -836,11 +853,12 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/dead/observer/verb/toggle_self_visibility() set name = "Toggle Self Visibility" set category = "Ghost.Settings" - - if (alpha) - alpha = 0 - else + self_visibility = !self_visibility + if (self_visibility) alpha = initial(alpha) + else + alpha = 0 + to_chat(usr, SPAN_NOTICE("You are now [(self_visibility?"visible":"invisible")].")) /mob/dead/observer/verb/view_manifest() set name = "View Crew Manifest" @@ -861,7 +879,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] - if(hive.totalXenos.len > 0) + if(length(hive.totalXenos) > 0) hives += list("[hive.name]" = hive.hivenumber) last_hive_checked = hive @@ -1131,7 +1149,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp to_chat(src, SPAN_INFO("Wrong game mode. You have to be observing a Hunter Games round.")) return - if(!waiting_for_drop_votes) + var/datum/game_mode/huntergames/mode = SSticker.mode + + if(!mode.waiting_for_drop_votes) to_chat(src, SPAN_INFO("There's no drop vote currently in progress. Wait for a supply drop to be announced!")) return @@ -1175,8 +1195,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set name = "View Kill Feed" set desc = "View global kill statistics tied to the game." - if(round_statistics) - round_statistics.show_kill_feed(src) + if(GLOB.round_statistics) + GLOB.round_statistics.show_kill_feed(src) /mob/dead/observer/get_status_tab_items() . = ..() @@ -1186,7 +1206,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(!SSticker.HasRoundStarted()) var/time_remaining = SSticker.GetTimeLeft() if(time_remaining > 0) - . += "Time To Start: [round(time_remaining)]s" + . += "Time To Start: [floor(time_remaining)]s[SSticker.delay_start ? " (DELAYED)" : ""]" else if(time_remaining == -10) . += "Time To Start: DELAYED" else @@ -1216,6 +1236,13 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(client.prefs?.be_special & BE_ALIEN_AFTER_DEATH) if(larva_queue_cached_message) . += larva_queue_cached_message + . += "" + + if(timeofdeath) + var/time_since_death = world.time - timeofdeath + var/format = (time_since_death >= 1 HOURS ? "hh:mm:ss" : "mm:ss") + + . += "Time Since Death: [time2text(time_since_death, format)]" /proc/message_ghosts(message) @@ -1264,9 +1291,6 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(!key_to_use) return - if(!(RoleAuthority.roles_whitelist[key_to_use] & WHITELIST_PREDATOR)) - return - if(!SSticker.mode) SSticker.OnRoundstart(CALLBACK(src, PROC_REF(toggle_predator_action))) return diff --git a/code/modules/mob/dead/observer/orbit.dm b/code/modules/mob/dead/observer/orbit.dm index 06e404a435..4647fddd22 100644 --- a/code/modules/mob/dead/observer/orbit.dm +++ b/code/modules/mob/dead/observer/orbit.dm @@ -53,6 +53,15 @@ var/list/survivors = list() var/list/xenos = list() var/list/ert_members = list() + var/list/upp = list() + var/list/clf = list() + var/list/wy = list() + var/list/twe = list() + var/list/freelancer = list() + var/list/contractor = list() + var/list/mercenary = list() + var/list/dutch = list() + var/list/marshal = list() var/list/synthetics = list() var/list/predators = list() var/list/animals = list() @@ -65,7 +74,7 @@ var/is_admin = FALSE if(user && user.client) - is_admin = check_other_rights(user.client, R_ADMIN, FALSE) + is_admin = check_client_rights(user.client, R_ADMIN, FALSE) var/list/pois = getpois(skip_mindless = !is_admin, specify_dead_role = FALSE) for(var/name in pois) var/list/serialized = list() @@ -101,7 +110,7 @@ if(isliving(M)) var/mob/living/player = M - serialized["health"] = FLOOR((player.health / player.maxHealth * 100), 1) + serialized["health"] = floor(player.health / player.maxHealth * 100) if(isxeno(player)) var/mob/living/carbon/xenomorph/xeno = player @@ -109,6 +118,7 @@ var/datum/caste_datum/caste = xeno.caste serialized["caste"] = caste.caste_type serialized["icon"] = caste.minimap_icon + serialized["hivenumber"] = xeno.hivenumber xenos += list(serialized) continue @@ -117,12 +127,16 @@ var/obj/item/card/id/id_card = human.get_idcard() var/datum/species/human_species = human.species var/max_health = human_species.total_health != human.maxHealth ? human_species.total_health : human.maxHealth - serialized["health"] = FLOOR((player.health / max_health * 100), 1) + serialized["health"] = floor(player.health / max_health * 100) serialized["job"] = id_card?.assignment ? id_card.assignment : human.job serialized["nickname"] = human.real_name var/icon = human.assigned_equipment_preset?.minimap_icon + if(islist(icon)) + for(var/key in icon) + icon = key + break serialized["icon"] = icon ? icon : "private" if(human.assigned_squad) @@ -130,14 +144,32 @@ else serialized["background_color"] = human.assigned_equipment_preset?.minimap_background - if(SSticker.mode.is_in_endgame == TRUE && !is_mainship_level(M.z) && !(human.faction in FACTION_LIST_ERT)) + if(SSticker.mode.is_in_endgame == TRUE && !is_mainship_level(M.z) && !(human.faction in FACTION_LIST_ERT_ALL)) escaped += list(serialized) + else if(human.faction in FACTION_LIST_WY) + wy += list(serialized) else if(issynth(human) && !isinfiltratorsynthetic(human)) synthetics += list(serialized) else if(isyautja(human)) predators += list(serialized) - else if(human.faction in FACTION_LIST_ERT) + else if(human.faction in FACTION_LIST_ERT_OTHER) ert_members += list(serialized) + else if(human.faction in FACTION_LIST_UPP) + upp += list(serialized) + else if(human.faction in FACTION_LIST_CLF) + clf += list(serialized) + else if(human.faction in FACTION_LIST_TWE) + twe += list(serialized) + else if(human.faction in FACTION_LIST_FREELANCER) + freelancer += list(serialized) + else if(human.faction in FACTION_LIST_CONTRACTOR) + contractor += list(serialized) + else if(human.faction in FACTION_LIST_MERCENARY) + mercenary += list(serialized) + else if(human.faction in FACTION_LIST_MARSHAL) + marshal += list(serialized) + else if(human.faction in FACTION_LIST_DUTCH) + dutch += list(serialized) else if(human.faction in FACTION_LIST_MARINE) marines += list(serialized) else if(issurvivorjob(human.job)) @@ -148,14 +180,20 @@ if(isanimal(player)) animals += list(serialized) - else if(isAI(M)) - humans += list(serialized) - data["humans"] = humans data["marines"] = marines data["survivors"] = survivors data["xenos"] = xenos data["ert_members"] = ert_members + data["upp"] = upp + data["clf"] = clf + data["wy"] = wy + data["twe"] = twe + data["freelancer"] = freelancer + data["contractor"] = contractor + data["mercenary"] = mercenary + data["dutch"] = dutch + data["marshal"] = marshal data["synthetics"] = synthetics data["predators"] = predators data["animals"] = animals @@ -167,6 +205,8 @@ data["escaped"] = escaped data["icons"] = GLOB.minimap_icons + data["main_platoon_name"] = GLOB.main_platoon_name + return data /datum/orbit_menu/ui_assets(mob/user) diff --git a/code/modules/mob/dead/observer/say.dm b/code/modules/mob/dead/observer/say.dm index 33af36991e..04e93095f4 100644 --- a/code/modules/mob/dead/observer/say.dm +++ b/code/modules/mob/dead/observer/say.dm @@ -12,6 +12,9 @@ if (src.client.handle_spam_prevention(message, MUTE_DEADCHAT)) return + if(!filter_message(client, message)) + return + . = src.say_dead(message) @@ -21,7 +24,7 @@ if(!client) return - if(speaker && !speaker.client && client.prefs.toggles_chat & CHAT_GHOSTEARS && speaker.z == z && get_dist(speaker, src) <= world_view_size) + if(speaker && !speaker.client && client.prefs.toggles_chat & CHAT_GHOSTEARS && speaker.z == z && get_dist(speaker, src) <= GLOB.world_view_size) //Does the speaker have a client? It's either random stuff that observers won't care about (Experiment 97B says, 'EHEHEHEHEHEHEHE') //Or someone snoring. So we make it where they won't hear it. return @@ -52,10 +55,10 @@ var/mob/hologram/queen/queen_eye = speaker?.client?.eye if(istype(queen_eye)) track += "(E) " - if(client && client.prefs && client.prefs.toggles_chat & CHAT_GHOSTEARS && speaker.z == z && get_dist(speaker, src) <= world_view_size) + if(client && client.prefs && client.prefs.toggles_chat & CHAT_GHOSTEARS && speaker.z == z && get_dist(speaker, src) <= GLOB.world_view_size) message = "[message]" to_chat(src, "[comm_paygrade][speaker_name][alt_name] [track][verb], \"[message]\"") - if (speech_sound && (get_dist(speaker, src) <= world_view_size && src.z == speaker.z)) + if (speech_sound && (get_dist(speaker, src) <= GLOB.world_view_size && src.z == speaker.z)) var/turf/source = speaker? get_turf(speaker) : get_turf(src) playsound_client(client, speech_sound, source, sound_vol) diff --git a/code/modules/mob/death.dm b/code/modules/mob/death.dm index fe8b61ac25..75c3ea322a 100644 --- a/code/modules/mob/death.dm +++ b/code/modules/mob/death.dm @@ -61,7 +61,7 @@ jitteriness = 0 if(client) - client.change_view(world_view_size) //just so we never get stuck with a large view somehow + client.change_view(GLOB.world_view_size) //just so we never get stuck with a large view somehow if(s_active) //Close inventory screens. s_active.storage_close(src) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index f1b6001794..fa7c7ec317 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -14,13 +14,15 @@ to_chat(src, SPAN_NOTICE("'[act]' emote does not exist. Say *help for a list.")) return FALSE var/silenced = FALSE - for(var/datum/emote/P in key_emotes) - if(!P.check_cooldown(src, intentional)) + for(var/datum/emote/current_emote in key_emotes) + if(!current_emote.check_cooldown(src, intentional)) silenced = TRUE continue - if(P.run_emote(src, param, m_type, intentional)) - SEND_SIGNAL(src, COMSIG_MOB_EMOTE, P, act, m_type, message, intentional) - SEND_SIGNAL(src, COMSIG_MOB_EMOTED(P.key)) + if(SEND_SIGNAL(src, COMSIG_MOB_TRY_EMOTE, current_emote, act, m_type, param, intentional) & COMPONENT_OVERRIDE_EMOTE) + silenced = TRUE + continue + if(current_emote.run_emote(src, param, m_type, intentional)) + SEND_SIGNAL(src, COMSIG_MOB_EMOTE, current_emote, act, m_type, message, intentional) return TRUE if(intentional && !silenced && !force_silence) to_chat(src, SPAN_NOTICE("Unusable emote '[act]'. Say *help for a list.")) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index ca5639c36c..ef9ac4b6cf 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -12,13 +12,13 @@ //non-verbal languages are garbled if you can't see the speaker. Yes, this includes if they are inside a closet. if (language && (language.flags & NONVERBAL)) - if (!speaker || (src.sdisabilities & DISABILITY_BLIND || src.blinded) || !(speaker.z == z && get_dist(speaker, src) <= world_view_size)) + if (!speaker || (src.sdisabilities & DISABILITY_BLIND || src.blinded) || !(speaker.z == z && get_dist(speaker, src) <= GLOB.world_view_size)) message = language.scramble(message) if(!say_understands(speaker,language)) if(istype(speaker,/mob/living/simple_animal)) var/mob/living/simple_animal/S = speaker - if(S.speak.len) + if(length(S.speak)) message = pick(S.speak) else message = stars(message) @@ -47,7 +47,7 @@ to_chat(src, SPAN_LOCALSAY("[comm_paygrade][speaker_name][alt_name] talks but you cannot hear them.")) else to_chat(src, SPAN_LOCALSAY("[comm_paygrade][speaker_name][alt_name] [verb], \"[message]\"")) - if (speech_sound && (get_dist(speaker, src) <= world_view_size && src.z == speaker.z)) + if (speech_sound && (get_dist(speaker, src) <= GLOB.world_view_size && src.z == speaker.z)) var/turf/source = speaker? get_turf(speaker) : get_turf(src) playsound_client(src.client, speech_sound, source, sound_vol, GET_RANDOM_FREQ) @@ -106,54 +106,8 @@ speaker_name = "unknown" comm_paygrade = "" - var/changed_voice - - if(isAI(src) && !hard_to_hear) - var/jobname // the mob's "job" - var/mob/living/carbon/human/impersonating //The crewmember being impersonated, if any. - - if (ishuman(speaker)) - var/mob/living/carbon/human/H = speaker - - if((H.wear_id && istype(H.wear_id,/obj/item/card/id/syndicate)) && (H.wear_mask && istype(H.wear_mask,/obj/item/clothing/mask/gas/voice))) - - changed_voice = 1 - var/mob/living/carbon/human/I = locate(speaker_name) - - if(I) - impersonating = I - jobname = impersonating.get_assignment() - comm_paygrade = impersonating.get_paygrade() - else - jobname = "Unknown" - comm_paygrade = "" - else - jobname = H.get_assignment() - comm_paygrade = H.get_paygrade() - - else if (iscarbon(speaker)) // Nonhuman carbon mob - jobname = "No id" - comm_paygrade = "" - else if (isAI(speaker)) - jobname = "AI" - comm_paygrade = "" - else if (isrobot(speaker)) - jobname = "Cyborg" - comm_paygrade = "" - else - jobname = "Unknown" - comm_paygrade = "" - - if(changed_voice) - if(impersonating) - track = "[speaker_name] ([jobname])" - else - track = "[speaker_name] ([jobname])" - else - track = "[speaker_name] ([jobname])" - if(istype(src, /mob/dead/observer)) - if(speaker_name != speaker.real_name && !isAI(speaker)) //Announce computer and various stuff that broadcasts doesn't use it's real name but AI's can't pretend to be other mobs. + if(speaker_name != speaker.real_name) //Announce computer and various stuff that broadcasts doesn't use it's real name but AI's can't pretend to be other mobs. speaker_name = "[speaker.real_name] ([speaker_name])" track = "[speaker_name] (F)" @@ -202,18 +156,21 @@ /mob/living/hear_say(message, verb, datum/language/language, alt_name, italics, mob/speaker, sound/speech_sound, sound_vol) if(client && mind && stat == UNCONSCIOUS) - hear_sleep(src, message, src == speaker, Adjacent(speaker)) + hear_sleep(speaker, message, src == speaker, Adjacent(speaker), language) return return ..() /mob/living/hear_radio(message, verb, datum/language/language, part_a, part_b, mob/speaker, hard_to_hear, vname, command, no_paygrade) if(client && mind && stat == UNCONSCIOUS) - hear_sleep(src, message, FALSE, FALSE) + hear_sleep(speaker, message, FALSE, FALSE, language) return return ..() -/mob/living/proc/hear_sleep(mob/speaker = null, message, hearing_self = FALSE, proximity_flag = FALSE) +/mob/living/proc/hear_sleep(mob/speaker = null, message, hearing_self = FALSE, proximity_flag = FALSE, datum/language/language = null) var/heard = "" + var/clear_char_probability = 90 + if(!say_understands(speaker, language)) + clear_char_probability = 25 if(sdisabilities & DISABILITY_DEAF || ear_deaf) if(speaker == src) @@ -226,13 +183,13 @@ heard = SPAN_LOCALSAY("You mutter something about... [stars(message, clear_char_probability = 99)]") else if(!sleeping && proximity_flag) - heard = SPAN_LOCALSAY("You hear someone near you say something... [stars(message, clear_char_probability = 90)]") + heard = SPAN_LOCALSAY("You hear someone near you say something... [stars(message, clear_char_probability)]") else if(prob(15)) var/list/punctuation = list(",", "!", ".", ";", "?") var/list/messages = splittext(message, " ") - var/R = rand(1, messages.len) + var/R = rand(1, length(messages)) var/heardword = messages[R] if(copytext(heardword,1, 1) in punctuation) heardword = copytext(heardword,2) diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index b2a68c997e..cb8bbc1130 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -15,7 +15,7 @@ /obj/item/holder/process() - if(istype(loc,/turf) || !(contents.len)) + if(istype(loc,/turf) || !(length(contents))) for(var/mob/M in contents) @@ -34,6 +34,15 @@ for(var/mob/living/M in contents) M.show_message(message,m_type) +/obj/item/holder/get_examine_text(mob/user) + . = list() + . += "[icon2html(src, user)] That's \a [src]." + if(desc) + . += desc + if(desc_lore) + . += SPAN_NOTICE("This has an extended lore description.") + + //Mob procs and vars for scooping up /mob/living/var/holder_type @@ -48,8 +57,10 @@ return var/obj/item/holder/mob_holder = new holder_type(loc) - src.forceMove(mob_holder) - mob_holder.name = loc.name + forceMove(mob_holder) + mob_holder.name = name + mob_holder.desc = desc + mob_holder.gender = gender mob_holder.attack_hand(grabber) to_chat(grabber, "You scoop up [src].") diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index d71a908d62..286645fc70 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -164,8 +164,7 @@ if(pickup_recent_item_on_turf(user_turf)) return - var/range_list = orange(1, src) - for(var/turf/nearby_turf in range_list) + for(var/turf/nearby_turf in orange(1, src)) if(pickup_recent_item_on_turf(nearby_turf)) return @@ -175,7 +174,9 @@ if(!previously_held_object) remembered_dropped_objects -= weak_ref break - if(previously_held_object.in_contents_of(check_turf)) + if(previously_held_object in check_turf) + if(previously_held_object.throwing) + return FALSE if(previously_held_object.anchored) return FALSE put_in_hands(previously_held_object, drop_on_fail = FALSE) @@ -226,7 +227,7 @@ //Remove an item on a mob's inventory. It does not change the item's loc, just unequips it from the mob. //Used just before you want to delete the item, or moving it afterwards. /mob/proc/temp_drop_inv_item(obj/item/I, force) - return u_equip(I, null, force) + return u_equip(I, null, TRUE, force) //Outdated but still in use apparently. This should at least be a human proc. @@ -254,15 +255,10 @@ //proc to get the item in the active hand. /mob/proc/get_held_item() - if(isSilicon(src)) - if(isrobot(src)) - if(src:module_active) - return src:module_active + if (hand) + return l_hand else - if (hand) - return l_hand - else - return r_hand + return r_hand /mob/living/carbon/human/proc/equip_if_possible(obj/item/W, slot, del_on_fail = 1) // since byond doesn't seem to have pointers, this seems like the best way to do this :/ //warning: icky code @@ -343,21 +339,20 @@ if(WEAR_IN_BACK) if (src.back && isstorage(src.back)) var/obj/item/storage/B = src.back - if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class) + if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class) W.forceMove(B) equipped = 1 if(WEAR_IN_SHOES) - if(!shoes) - return + // If the player isn't wearing shoes, or the shoes somehow aren't shoes. if(!istype(shoes, /obj/item/clothing/shoes)) return - if(shoes.stored_item) - return - shoes.attempt_insert_item(src, shoes, TRUE) + // If the item was successfully inserted. + if(shoes.attempt_insert_item(src, W)) + equipped = 1 // what is this proc if(WEAR_IN_SCABBARD) if(src.back && istype(src.back, /obj/item/storage/large_holster)) var/obj/item/storage/large_holster/B = src.back - if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class) + if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class) W.forceMove(B) equipped = 1 if(WEAR_IN_ACCESSORY) @@ -381,25 +376,25 @@ if(WEAR_IN_BELT) if(src.belt && isstorage(src.belt)) var/obj/item/storage/B = src.belt - if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class) + if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class) W.forceMove(B) equipped = 1 if(WEAR_IN_J_STORE) if(src.s_store && isstorage(src.s_store)) var/obj/item/storage/B = src.s_store - if(B.contents.len < B.storage_slots && W.w_class <= B.max_w_class) + if(length(B.contents) < B.storage_slots && W.w_class <= B.max_w_class) W.forceMove(B) equipped = 1 if(WEAR_IN_L_STORE) if(src.l_store && istype(src.l_store, /obj/item/storage/pouch)) var/obj/item/storage/pouch/P = src.l_store - if(P.contents.len < P.storage_slots && W.w_class <= P.max_w_class) + if(length(P.contents) < P.storage_slots && W.w_class <= P.max_w_class) W.forceMove(P) equipped = 1 if(WEAR_IN_R_STORE) if(src.r_store && istype(src.r_store, /obj/item/storage/pouch)) var/obj/item/storage/pouch/P = src.r_store - if(P.contents.len < P.storage_slots && W.w_class <= P.max_w_class) + if(length(P.contents) < P.storage_slots && W.w_class <= P.max_w_class) W.forceMove(P) equipped = 1 diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm index f00618fe54..45086aaeba 100644 --- a/code/modules/mob/language/language.dm +++ b/code/modules/mob/language/language.dm @@ -23,7 +23,7 @@ /datum/language/proc/broadcast(mob/living/speaker, message, speaker_mask) - log_say("[key_name(speaker)] : ([name]) [message]") + log_say("[key_name(speaker)] : ([name]) [message] (AREA: [get_area_name(speaker)])") for(var/mob/player in GLOB.player_list) @@ -60,12 +60,12 @@ /datum/language/proc/add_to_cache(input, scrambled_text) // Add it to cache, cutting old entries if the list is too long scramble_cache[input] = scrambled_text - if(scramble_cache.len > SCRAMBLE_CACHE_LEN) - scramble_cache.Cut(1, scramble_cache.len-SCRAMBLE_CACHE_LEN-1) + if(length(scramble_cache) > SCRAMBLE_CACHE_LEN) + scramble_cache.Cut(1, length(scramble_cache)-SCRAMBLE_CACHE_LEN-1) /datum/language/proc/scramble(input) - if(!syllables || !syllables.len) + if(!LAZYLEN(syllables)) return stars(input) // If the input is cached already, move it to the end of the cache and return it diff --git a/code/modules/mob/language/language_handling.dm b/code/modules/mob/language/language_handling.dm index d9df366812..c45ced8ad1 100644 --- a/code/modules/mob/language/language_handling.dm +++ b/code/modules/mob/language/language_handling.dm @@ -18,7 +18,7 @@ return 0 /mob/proc/get_default_language() - if (languages.len > 0) + if (length(languages) > 0) return languages[1] return null diff --git a/code/modules/mob/language/languages.dm b/code/modules/mob/language/languages.dm index 2844b58417..cfa023c7d9 100644 --- a/code/modules/mob/language/languages.dm +++ b/code/modules/mob/language/languages.dm @@ -174,7 +174,7 @@ GLOB.STUI.game.Add("\[[time_stamp()]]APOLLO: [key_name(speaker)] : [message]
        ") GLOB.STUI.processing |= STUI_LOG_GAME_CHAT - log_say("[speaker.name != "Unknown" ? speaker.name : "([speaker.real_name])"] \[APOLLO\]: [message] (CKEY: [speaker.key]) (JOB: [speaker.job])") + log_say("[speaker.name != "Unknown" ? speaker.name : "([speaker.real_name])"] \[APOLLO\]: [message] (CKEY: [speaker.key]) (JOB: [speaker.job]) (AREA: [get_area_name(speaker)])") log_ares_apollo(speaker.real_name, message) for (var/mob/dead in GLOB.dead_mob_list) if(!istype(dead,/mob/new_player) && !istype(dead,/mob/living/brain)) //No meta-evesdropping @@ -196,12 +196,6 @@ continue M.show_message("synthesised voice beeps, \"beep beep beep\"",2) - //robot binary xmitter component power usage - if (isrobot(speaker)) - var/mob/living/silicon/robot/R = speaker - var/datum/robot_component/C = R.components["comms"] - R.cell_use_power(C.active_usage) - /datum/language/event_hivemind name = LANGUAGE_TELEPATH desc = "An event only language that provides a hivemind for its users." diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm index dea179e6ad..c2d0c63e33 100644 --- a/code/modules/mob/living/blood.dm +++ b/code/modules/mob/living/blood.dm @@ -110,9 +110,9 @@ //An even amount of each plasma and blood type if(plasma == PLASMA_EGG) //Preserve hive_number for the possible larva - O.reagents.add_reagent(plasma, amount / plasmas.len, list("hive_number" = hivenumber)) + O.reagents.add_reagent(plasma, amount / length(plasmas), list("hive_number" = hivenumber)) else - O.reagents.add_reagent(plasma, amount / plasmas.len) + O.reagents.add_reagent(plasma, amount / length(plasmas)) blood_volume = max(0, blood_volume - amount) return 1 @@ -128,7 +128,7 @@ blood_data["blood_type"] = get_blood_type() - blood_data["blood_colour"] = get_blood_color() + blood_data["blood_color"] = get_blood_color() blood_data["viruses"] = list() return blood_data @@ -142,7 +142,7 @@ for(var/datum/disease/D in viruses) blood_data["viruses"] += D.Copy() - if(resistances && resistances.len) + if(LAZYLEN(resistances)) blood_data["resistances"] = resistances.Copy() return blood_data diff --git a/code/modules/mob/living/brain/brain.dm b/code/modules/mob/living/brain/brain.dm index d9480fab4c..0930d02f36 100644 --- a/code/modules/mob/living/brain/brain.dm +++ b/code/modules/mob/living/brain/brain.dm @@ -22,17 +22,7 @@ . = ..() /mob/living/brain/say_understands(mob/other)//Goddamn is this hackish, but this say code is so odd - if (isAI(other)) - if(!(container && istype(container, /obj/item/device/mmi))) - return 0 - else - return 1 - if (istype(other, /mob/living/silicon/decoy)) - if(!(container && istype(container, /obj/item/device/mmi))) - return 0 - else - return 1 - if (isrobot(other)) + if (isSilicon(other)) if(!(container && istype(container, /obj/item/device/mmi))) return 0 else @@ -67,5 +57,5 @@ set desc = "Relinquish your sentience and visit the land of the past." if(mind && mind.player_entity) - mind.player_entity.update_panel_data(round_statistics) + mind.player_entity.update_panel_data(GLOB.round_statistics) ghostize(TRUE) diff --git a/code/modules/mob/living/brain/brain_item.dm b/code/modules/mob/living/brain/brain_item.dm index c8925239c3..4f1b4f1932 100644 --- a/code/modules/mob/living/brain/brain_item.dm +++ b/code/modules/mob/living/brain/brain_item.dm @@ -67,4 +67,4 @@ brainmob.mind.transfer_to(target) else target.key = brainmob.key - if(target.client) target.client.change_view(world_view_size) + if(target.client) target.client.change_view(GLOB.world_view_size) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 2a419eddf1..f576a90a74 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -48,7 +48,7 @@ M.show_message(SPAN_DANGER("You hear something rumbling inside [src]'s stomach..."), SHOW_MESSAGE_AUDIBLE) var/obj/item/I = user.get_active_hand() if(I && I.force) - var/d = rand(round(I.force / 4), I.force) + var/d = rand(floor(I.force / 4), I.force) if(istype(src, /mob/living/carbon/human)) var/mob/living/carbon/human/H = src var/organ = H.get_limb("chest") @@ -74,7 +74,7 @@ /mob/living/carbon/ex_act(severity, direction, datum/cause_data/cause_data) - if(body_position == LYING_DOWN) + if(body_position == LYING_DOWN && direction) severity *= EXPLOSION_PRONE_MULTIPLIER if(severity >= 30) @@ -110,7 +110,7 @@ var/obj/O = A if(O.unacidable) O.forceMove(get_turf(loc)) - O.throw_atom(pick(range(get_turf(loc), 1)), 1, SPEED_FAST) + O.throw_atom(pick(range(1, get_turf(loc))), 1, SPEED_FAST) . = ..(cause) @@ -192,7 +192,7 @@ playsound(loc, "sparks", 25, 1) if(shock_damage > 10) src.visible_message( - SPAN_DANGER("[src] was shocked by the [source]!"), \ + SPAN_DANGER("[src] was shocked by [source]!"), \ SPAN_DANGER("You feel a powerful shock course through your body!"), \ SPAN_DANGER("You hear a heavy electrical crack.") \ ) @@ -207,7 +207,7 @@ else src.visible_message( - SPAN_DANGER("[src] was mildly shocked by the [source]."), \ + SPAN_DANGER("[src] was mildly shocked by [source]."), \ SPAN_DANGER("You feel a mild shock course through your body."), \ SPAN_DANGER("You hear a light zapping.") \ ) @@ -379,7 +379,7 @@ if(!lastarea) lastarea = get_area(src.loc) - if((istype(loc, /turf/open/space)) || !lastarea.has_gravity) + if(istype(loc, /turf/open/space)) inertia_dir = get_dir(target, src) step(src, inertia_dir) @@ -482,7 +482,7 @@ /mob/living/carbon/on_stored_atom_del(atom/movable/AM) ..() - if(stomach_contents.len && ismob(AM)) + if(length(stomach_contents) && ismob(AM)) for(var/X in stomach_contents) if(AM == X) stomach_contents -= AM @@ -504,7 +504,7 @@ last_special = world.time + 100 visible_message(SPAN_DANGER("[src] attempts to unbuckle themself!"),\ SPAN_DANGER("You attempt to unbuckle yourself. (This will take around 2 minutes and you need to stand still)")) - if(do_after(src, 1200, INTERRUPT_ALL^INTERRUPT_RESIST, BUSY_ICON_HOSTILE)) + if(do_after(src, 1200, INTERRUPT_NO_FLOORED^INTERRUPT_RESIST, BUSY_ICON_HOSTILE)) if(!buckled) return visible_message(SPAN_DANGER("[src] manages to unbuckle themself!"),\ diff --git a/code/modules/mob/living/carbon/carbon_defines.dm b/code/modules/mob/living/carbon/carbon_defines.dm index 6ff2a96b72..03a8abef22 100644 --- a/code/modules/mob/living/carbon/carbon_defines.dm +++ b/code/modules/mob/living/carbon/carbon_defines.dm @@ -5,7 +5,7 @@ var/life_tick = 0 // The amount of life ticks that have processed on this mob. - var/obj/item/handcuffs/handcuffed = null //Whether or not the mob is handcuffed + var/obj/item/restraint/handcuffs/handcuffed = null //Whether or not the mob is handcuffed var/overeat_cooldown = 0 diff --git a/code/modules/mob/living/carbon/carbon_helpers.dm b/code/modules/mob/living/carbon/carbon_helpers.dm index 92d049b977..4d3c7b9144 100644 --- a/code/modules/mob/living/carbon/carbon_helpers.dm +++ b/code/modules/mob/living/carbon/carbon_helpers.dm @@ -18,7 +18,7 @@ var/view_rating = view_change_sources[view_source] if(highest_view < view_rating) highest_view = view_rating - if(source && new_size != world_view_size) + if(source && new_size != GLOB.world_view_size) LAZYSET(view_change_sources, source, new_size) if(new_size < highest_view) new_size = highest_view diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm index e70dcc2f68..1fc749f58b 100644 --- a/code/modules/mob/living/carbon/human/death.dm +++ b/code/modules/mob/living/carbon/human/death.dm @@ -10,13 +10,16 @@ // Override the current limb status E.droplimb(0, 0, cause) - undefibbable = TRUE + GLOB.data_core.manifest_modify(real_name, WEAKREF(src), null, null, "*Deceased*") if(is_a_synth) spawn_gibs() return + + undefibbable = TRUE + ..() /mob/living/carbon/human/gib_animation() @@ -76,15 +79,23 @@ // Finding the last guy for anti-delay. if(SSticker.mode && SSticker.mode.is_in_endgame && SSticker.current_state != GAME_STATE_FINISHED && is_mainship_level(z)) var/mob/last_living_human + var/shipside_humans_count = 0 + var/datum/hive_status/main_hive = GLOB.hive_datum[XENO_HIVE_NORMAL] + var/see_humans_on_tacmap = main_hive.see_humans_on_tacmap for(var/mob/living/carbon/human/cur_human as anything in GLOB.alive_human_list) if(!is_mainship_level(cur_human.z)) continue - if(last_living_human) + shipside_humans_count++ + if(last_living_human && see_humans_on_tacmap) last_living_human = null break last_living_human = cur_human - if(last_living_human && (last_qm_callout + 2 MINUTES) < world.time) - last_qm_callout = world.time + + if(!see_humans_on_tacmap && shipside_humans_count < (main_hive.get_real_total_xeno_count() * HIJACK_RATIO_FOR_TACMAP)) + xeno_announcement("There is only a handful of tallhosts left, they are now visible on our hive mind map.", XENO_HIVE_NORMAL, SPAN_ANNOUNCEMENT_HEADER_BLUE("[QUEEN_MOTHER_ANNOUNCE]")) + main_hive.see_humans_on_tacmap = TRUE + if(last_living_human && shipside_humans_count <= 1 && (GLOB.last_qm_callout + 2 MINUTES) < world.time) + GLOB.last_qm_callout = world.time // Tell the xenos where the human is. xeno_announcement("I sense the last tallhost hiding in [get_area(last_living_human)].", XENO_HIVE_NORMAL, SPAN_ANNOUNCEMENT_HEADER_BLUE("[QUEEN_MOTHER_ANNOUNCE]")) // Tell the human he is the last guy. @@ -122,4 +133,6 @@ else if(death_data?.cause_name == "existing") // Corpses spawn as gibbed true to avoid sfx, even though they aren't actually gibbed... AddComponent(/datum/component/weed_food) + + update_execute_hud() */ diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 228504195e..c8820ec3b9 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -129,7 +129,7 @@ if(gloves && !skipgloves) msg += "[t_He] [t_has] [gloves.get_examine_line(user)] [gloves.get_examine_location(src, user, WEAR_HANDS, t_He, t_his, t_him, t_has, t_is)].\n" else if(hands_blood_color) - msg += SPAN_WARNING("[t_He] [t_has] [(hands_blood_color != "#030303") ? "blood" : "oil"]-stained hands!\n") + msg += SPAN_WARNING("[t_He] [t_has] [(hands_blood_color != COLOR_OIL) ? "blood" : "oil"]-stained hands!\n") //belt if(belt) @@ -139,7 +139,7 @@ if(shoes && !skipshoes) msg += "[t_He] [t_is] wearing [shoes.get_examine_line(user)] [shoes.get_examine_location(src, user, WEAR_FEET, t_He, t_his, t_him, t_has, t_is)].\n" else if(feet_blood_color) - msg += SPAN_WARNING("[t_He] [t_has] [(feet_blood_color != "#030303") ? "blood" : "oil"]-stained feet!\n") + msg += SPAN_WARNING("[t_He] [t_has] [(feet_blood_color != COLOR_OIL) ? "blood" : "oil"]-stained feet!\n") //mask if(wear_mask && !skipmask) @@ -160,6 +160,13 @@ if(wear_id) msg += "[t_He] [t_is] [wear_id.get_examine_location(src, user, WEAR_ID, t_He, t_his, t_him, t_has, t_is)].\n" + //Restraints + if(handcuffed) + msg += SPAN_ORANGE("[capitalize(t_his)] arms are restrained by [handcuffed].\n") + + if(legcuffed) + msg += SPAN_ORANGE("[capitalize(t_his)] ankles are restrained by [legcuffed].\n") + //Admin-slept if(sleeping > 8000000) msg += SPAN_HIGHDANGER("This player has been slept by staff.\n") @@ -256,7 +263,7 @@ wound_flavor_text["[temp.display_name]"] += SPAN_WARNING(pick(" a lot of burns"," severe melting")) if(wound_flavor_text["[temp.display_name]"]) wound_flavor_text["[temp.display_name]"] += SPAN_WARNING("!\n") - else if(temp.wounds.len > 0) + else if(length(temp.wounds) > 0) var/list/wound_descriptors = list() for(var/datum/wound/W as anything in temp.wounds) if(W.internal && incision_depths[temp.name] == SURGERY_DEPTH_SURFACE) @@ -279,37 +286,37 @@ wound_descriptors[this_wound_desc] += W.amount continue wound_descriptors[this_wound_desc] = W.amount - if(wound_descriptors.len) + if(length(wound_descriptors)) var/list/flavor_text = list() var/list/no_exclude = list("gaping wound", "big gaping wound", "massive wound", "large bruise",\ "huge bruise", "massive bruise", "severe burn", "large burn", "deep burn", "carbonised area") for(var/wound in wound_descriptors) switch(wound_descriptors[wound]) if(1) - if(!flavor_text.len) + if(!length(flavor_text)) flavor_text += SPAN_WARNING("[t_He] has[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a [wound]") else flavor_text += "[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a [wound]" if(2) - if(!flavor_text.len) + if(!length(flavor_text)) flavor_text += SPAN_WARNING("[t_He] has[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a pair of [wound]s") else flavor_text += "[prob(10) && !(wound in no_exclude) ? " what might be" : ""] a pair of [wound]s" if(3 to 5) - if(!flavor_text.len) + if(!length(flavor_text)) flavor_text += SPAN_WARNING("[t_He] has several [wound]s") else flavor_text += " several [wound]s" if(6 to INFINITY) - if(!flavor_text.len) + if(!length(flavor_text)) flavor_text += SPAN_WARNING("[t_He] has a bunch of [wound]s") else flavor_text += " a ton of [wound]\s" var/flavor_text_string = "" - for(var/text = 1, text <= flavor_text.len, text++) - if(text == flavor_text.len && flavor_text.len > 1) + for(var/text = 1, text <= length(flavor_text), text++) + if(text == length(flavor_text) && length(flavor_text) > 1) flavor_text_string += ", and" - else if(flavor_text.len > 1 && text > 1) + else if(length(flavor_text) > 1 && text > 1) flavor_text_string += "," flavor_text_string += flavor_text[text] flavor_text_string += " on [t_his] [temp.display_name].
        " @@ -528,32 +535,23 @@ if(istype(passed_mob, /mob/living/carbon/human)) var/mob/living/carbon/human/passed_human = passed_mob if (issynth(passed_human)) - return 1 + return TRUE switch(hudtype) if("security") if(skillcheck(passed_human, SKILL_POLICE, SKILL_POLICE_SKILLED)) - var/datum/mob_hud/sec_hud = huds[MOB_HUD_SECURITY_ADVANCED] - if(locate(passed_mob) in sec_hud.hudusers) + var/datum/mob_hud/sec_hud = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] + if(sec_hud.hudusers[passed_human]) return TRUE if("medical") if(skillcheck(passed_human, SKILL_MEDICAL, SKILL_MEDICAL_MEDIC)) - var/datum/mob_hud/med_hud = huds[MOB_HUD_MEDICAL_ADVANCED] - if(locate(passed_mob) in med_hud.hudusers) + var/datum/mob_hud/med_hud = GLOB.huds[MOB_HUD_MEDICAL_ADVANCED] + if(med_hud.hudusers[passed_human]) return TRUE if("squadleader") - var/datum/mob_hud/faction_hud = huds[MOB_HUD_FACTION_USCM] - if(passed_human.mind && passed_human.assigned_squad && passed_human.assigned_squad.squad_leader == passed_human && locate(passed_mob) in faction_hud.hudusers) + var/datum/mob_hud/faction_hud = GLOB.huds[MOB_HUD_FACTION_MARINE] + if(passed_human.mind && passed_human.assigned_squad && passed_human.assigned_squad.squad_leader == passed_human && faction_hud.hudusers[passed_mob]) return TRUE else - return 0 - else if(isrobot(passed_mob)) - var/mob/living/silicon/robot/R = passed_mob - switch(hudtype) - if("security") - return istype(R.module_state_1, /obj/item/robot/sight/hud/sec) || istype(R.module_state_2, /obj/item/robot/sight/hud/sec) || istype(R.module_state_3, /obj/item/robot/sight/hud/sec) - if("medical") - return istype(R.module_state_1, /obj/item/robot/sight/hud/med) || istype(R.module_state_2, /obj/item/robot/sight/hud/med) || istype(R.module_state_3, /obj/item/robot/sight/hud/med) - else - return 0 + return FALSE else - return 0 + return FALSE diff --git a/code/modules/mob/living/carbon/human/exercise.dm b/code/modules/mob/living/carbon/human/exercise.dm index 7e40c63d88..60642fbbed 100644 --- a/code/modules/mob/living/carbon/human/exercise.dm +++ b/code/modules/mob/living/carbon/human/exercise.dm @@ -83,7 +83,7 @@ Verbs related to getting fucking jacked, bro if(!get_limb(zone)) extremities.Remove(zone) - if(extremities.len < 8) + if(length(extremities) < 8) to_chat(src, SPAN_WARNING("How do you think you'll be able to do a pushup without two hands and feet to stand on? See a doctor!")) return FALSE diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 1496ce2595..5eadbd57c7 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -106,7 +106,7 @@ . += "Primary LZ: [SSticker.mode.active_lz.loc.loc.name]" if(faction == FACTION_MARINE & !isnull(SSticker) && !isnull(SSticker.mode)) - . += "Operation Name: [round_statistics.round_name]" + . += "Operation Name: [GLOB.round_statistics.round_name]" if(assigned_squad) if(assigned_squad.overwatch_officer) @@ -115,7 +115,7 @@ . += "Primary Objective: [html_decode(assigned_squad.primary_objective)]" if(assigned_squad.secondary_objective) . += "Secondary Objective: [html_decode(assigned_squad.secondary_objective)]" - if(job in ROLES_USCM) + if(job in GLOB.ROLES_USCM) . += "" . += "View Tactical Map" if(mobility_aura) @@ -133,7 +133,7 @@ . += "Self Destruct Status: [SShijack.get_sd_eta()]" /mob/living/carbon/human/ex_act(severity, direction, datum/cause_data/cause_data) - if(body_position == LYING_DOWN) + if(body_position == LYING_DOWN && direction) severity *= EXPLOSION_PRONE_MULTIPLIER @@ -171,12 +171,12 @@ var/knockdown_minus_armor = min(knockdown_value * bomb_armor_mult, 1 SECONDS) var/obj/item/item1 = get_active_hand() var/obj/item/item2 = get_inactive_hand() - apply_effect(round(knockdown_minus_armor), WEAKEN) - apply_effect(round(knockdown_minus_armor), STUN) // Remove this to let people crawl after an explosion. Funny but perhaps not desirable. + apply_effect(floor(knockdown_minus_armor), WEAKEN) + apply_effect(floor(knockdown_minus_armor), STUN) // Remove this to let people crawl after an explosion. Funny but perhaps not desirable. var/knockout_value = damage * 0.1 var/knockout_minus_armor = min(knockout_value * bomb_armor_mult * 0.5, 0.5 SECONDS) // the KO time is halved from the knockdown timer. basically same stun time, you just spend less time KO'd. - apply_effect(round(knockout_minus_armor), PARALYZE) - apply_effect(round(knockout_minus_armor) * 2, DAZE) + apply_effect(floor(knockout_minus_armor), PARALYZE) + apply_effect(floor(knockout_minus_armor) * 2, DAZE) explosion_throw(severity, direction) if(item1 && isturf(item1.loc)) @@ -270,6 +270,13 @@ return TRUE return FALSE +/** + * Handles any storage containers that the human is looking inside when auto-observed. + */ +/mob/living/carbon/human/auto_observed(mob/dead/observer/observer) + . = ..() + + /** * Handles any storage containers that the human is looking inside when auto-observed. */ @@ -348,10 +355,10 @@ return "[face_name] (as [id_name])" return face_name -//Returns "Unknown" if facially disfigured and real_name if not. Useful for setting name when polyacided or when updating a human's name variable +//Returns "Unknown" if facially unidentifiable and real_name if not. Useful for setting name when headless or when updating a human's name variable /mob/living/carbon/human/proc/get_face_name() var/obj/limb/head/head = get_limb("head") - if(!head || head.disfigured || (head.status & LIMB_DESTROYED) || !real_name) //disfigured. use id-name if possible + if(!head || (head.status & LIMB_DESTROYED) || !real_name) //unidentifiable. use id-name if possible return "Unknown" return real_name @@ -552,16 +559,12 @@ var/t1 = copytext(trim(strip_html(input("Your name and time will be added to this new comment.", "Add a comment", null, null) as message)), 1, MAX_MESSAGE_LEN) if(!(t1) || usr.stat || usr.is_mob_restrained()) return - var/created_at = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), game_year) + var/created_at = text("[]  []  []", time2text(world.realtime, "MMM DD"), time2text(world.time, "[worldtime2text()]:ss"), GLOB.game_year) var/new_comment = list("entry" = t1, "created_by" = list("name" = "", "rank" = ""), "deleted_by" = null, "deleted_at" = null, "created_at" = created_at) if(istype(usr,/mob/living/carbon/human)) var/mob/living/carbon/human/U = usr new_comment["created_by"]["name"] = U.get_authentification_name() new_comment["created_by"]["rank"] = U.get_assignment() - else if(istype(usr,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/U = usr - new_comment["created_by"]["name"] = U.name - new_comment["created_by"]["rank"] = "[U.modtype] [U.braintype]" if(!islist(R.fields["comments"])) R.fields["comments"] = list("1" = new_comment) else @@ -596,9 +599,6 @@ if(istype(usr,/mob/living/carbon/human)) var/mob/living/carbon/human/U = usr U.handle_regular_hud_updates() - if(istype(usr,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/U = usr - U.handle_regular_hud_updates() if(!modified) to_chat(usr, SPAN_DANGER("Unable to locate a data core entry for this person.")) @@ -681,10 +681,7 @@ counter++ if(istype(usr,/mob/living/carbon/human)) var/mob/living/carbon/human/U = usr - R.fields[text("com_[counter]")] = text("Made by [U.get_authentification_name()] ([U.get_assignment()]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
        [t1]") - if(istype(usr,/mob/living/silicon/robot)) - var/mob/living/silicon/robot/U = usr - R.fields[text("com_[counter]")] = text("Made by [U.name] ([U.modtype] [U.braintype]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [game_year]
        [t1]") + R.fields[text("com_[counter]")] = text("Made by [U.get_authentification_name()] ([U.get_assignment()]) on [time2text(world.realtime, "DDD MMM DD hh:mm:ss")], [GLOB.game_year]
        [t1]") if(href_list["medholocard"]) change_holo_card(usr) @@ -873,9 +870,6 @@ var/obj/limb/head/h = get_limb("head") if(QDELETED(h)) h = get_limb("synthetic head") - else - h.disfigured = 0 - name = get_visible_name() if(species && !(species.flags & NO_BLOOD)) restore_blood() @@ -912,6 +906,11 @@ ..() +/// Returns whether this person has a broken heart but is otherwise revivable +/mob/living/carbon/human/proc/is_heart_broken() + var/datum/internal_organ/heart/heart = internal_organs_by_name["heart"] + return heart && heart.organ_status >= ORGAN_BROKEN && check_tod() && is_revivable(ignore_heart = TRUE) + /mob/living/carbon/human/proc/is_lung_ruptured() var/datum/internal_organ/lungs/L = internal_organs_by_name["lungs"] return L && L.organ_status >= ORGAN_BRUISED @@ -923,7 +922,6 @@ src.custom_pain("You feel a stabbing pain in your chest!", 1) L.damage = L.min_bruised_damage - /mob/living/carbon/human/get_visible_implants(class = 0) var/list/visible_objects = list() for(var/obj/item/W in embedded_items) @@ -966,8 +964,8 @@ if(self) var/list/L = get_broken_limbs() - list("chest","head","groin") - if(L.len > 0) - msg += "Your [english_list(L)] [L.len > 1 ? "are" : "is"] broken\n" + if(length(L) > 0) + msg += "Your [english_list(L)] [length(L) > 1 ? "are" : "is"] broken\n" to_chat(usr,SPAN_NOTICE("You [self ? "take a moment to analyze yourself":"start analyzing [src]"]")) if(toxloss > 20) msg += "[self ? "Your" : "Their"] skin is slightly green\n" @@ -999,13 +997,13 @@ set name = "View Crew Manifest" set category = "IC" - if(job in ROLES_USCM) + if(job in GLOB.ROLES_USCM) var/dat = GLOB.data_core.get_manifest() show_browser(src, dat, "Crew Manifest", "manifest", "size=400x750") else to_chat(usr, SPAN_WARNING("You have no access to [MAIN_SHIP_NAME] crew manifest.")) -/mob/living/carbon/human/proc/set_species(new_species, default_colour) +/mob/living/carbon/human/proc/set_species(new_species, default_color) if(!new_species) new_species = "Human" @@ -1039,7 +1037,7 @@ species.create_organs(src) - if(species.base_color && default_colour) + if(species.base_color && default_color) //Apply color. r_skin = hex2num(copytext(species.base_color,2,4)) g_skin = hex2num(copytext(species.base_color,4,6)) @@ -1163,7 +1161,7 @@ else if(C.z != src.z || get_dist(src,C) < 1) hud_used.locate_leader.icon_state = "trackondirect_lz" else - hud_used.locate_leader.setDir(get_dir(src,C)) + hud_used.locate_leader.setDir(Get_Compass_Dir(src,C)) hud_used.locate_leader.icon_state = "trackon_lz" return if(TRACKER_FTL) @@ -1180,14 +1178,19 @@ if(TRACKER_PLTCO) H = GLOB.marine_leaders[JOB_SO] tracking_suffix = "_co" + if(TRACKER_CMP) + var/datum/job/command/warrant/cmp_job = GLOB.RoleAuthority.roles_for_mode[JOB_CHIEF_POLICE] + if(cmp_job?.active_cmp) + H = cmp_job.active_cmp + tracking_suffix = "_cmp" if(TRACKER_CL) - var/datum/job/civilian/liaison/liaison_job = RoleAuthority.roles_for_mode[JOB_CORPORATE_LIAISON] + var/datum/job/civilian/liaison/liaison_job = GLOB.RoleAuthority.roles_for_mode[JOB_CORPORATE_LIAISON] if(liaison_job?.active_liaison) H = liaison_job.active_liaison tracking_suffix = "_cl" else if(tracker_setting in squad_leader_trackers) - var/datum/squad/S = RoleAuthority.squads_by_type[squad_leader_trackers[tracker_setting]] + var/datum/squad/S = GLOB.RoleAuthority.squads_by_type[squad_leader_trackers[tracker_setting]] H = S.squad_leader tracking_suffix = tracker_setting @@ -1204,11 +1207,11 @@ if(tracking_atom.z != src.z || get_dist(src, tracking_atom) < 1 || src == tracking_atom) hud_used.locate_leader.icon_state = "trackondirect[tracking_suffix]" else - hud_used.locate_leader.setDir(get_dir(src, tracking_atom)) + hud_used.locate_leader.setDir(Get_Compass_Dir(src, tracking_atom)) hud_used.locate_leader.icon_state = "trackon[tracking_suffix]" /mob/living/carbon/proc/locate_nearest_nuke() - if(!bomb_set) return + if(!GLOB.bomb_set) return var/obj/structure/machinery/nuclearbomb/N for(var/obj/structure/machinery/nuclearbomb/bomb in world) if(!istype(N) || N.z != src.z ) @@ -1222,7 +1225,7 @@ if(get_dist(src,N) < 1) hud_used.locate_nuke.icon_state = "nuke_trackondirect" else - hud_used.locate_nuke.setDir(get_dir(src,N)) + hud_used.locate_nuke.setDir(Get_Compass_Dir(src,N)) hud_used.locate_nuke.icon_state = "nuke_trackon" @@ -1288,35 +1291,34 @@ /mob/living/carbon/human/verb/remove_your_splints() set name = "Remove Your Splints" - set category = "Object" + set category = "IC" remove_splints() // target = person whose splints are being removed -// source = person removing the splints -/mob/living/carbon/human/proc/remove_splints(mob/living/carbon/human/source) - var/mob/living/carbon/human/HT = src - var/mob/living/carbon/human/HS = source - - if(!istype(HS)) - HS = src - if(!istype(HS) || !istype(HT)) +// user = person removing the splints +/mob/living/carbon/human/proc/remove_splints(mob/living/carbon/human/user) + var/mob/living/carbon/human/target = src + + if(!istype(user)) + user = src + if(!istype(user) || !istype(target)) return var/cur_hand = "l_hand" - if(!HS.hand) + if(!user.hand) cur_hand = "r_hand" - if(!HS.action_busy) + if(!user.action_busy) var/list/obj/limb/to_splint = list() var/same_arm_side = FALSE // If you are trying to splint yourself, need opposite hand to splint an arm/hand - if(HS.get_limb(cur_hand).status & LIMB_DESTROYED) - to_chat(HS, SPAN_WARNING("You cannot remove splints without a hand.")) + if(user.get_limb(cur_hand).status & LIMB_DESTROYED) + to_chat(user, SPAN_WARNING("You cannot remove splints without a hand.")) return for(var/bodypart in list("l_leg","r_leg","l_arm","r_arm","r_hand","l_hand","r_foot","l_foot","chest","head","groin")) - var/obj/limb/l = HT.get_limb(bodypart) + var/obj/limb/l = target.get_limb(bodypart) if(l && (l.status & LIMB_SPLINTED)) - if(HS == HT) + if(user == target) if((bodypart in list("l_arm", "l_hand")) && (cur_hand == "l_hand")) same_arm_side = TRUE continue @@ -1326,44 +1328,46 @@ to_splint.Add(l) var/msg = "" // Have to use this because there are issues with the to_chat macros and text macros and quotation marks - if(to_splint.len) - if(do_after(HS, HUMAN_STRIP_DELAY * HS.get_skill_duration_multiplier(SKILL_MEDICAL), INTERRUPT_ALL, BUSY_ICON_GENERIC, HT, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) + if(length(to_splint)) + if(do_after(user, HUMAN_STRIP_DELAY * user.get_skill_duration_multiplier(SKILL_MEDICAL), INTERRUPT_ALL, BUSY_ICON_GENERIC, target, INTERRUPT_MOVED, BUSY_ICON_GENERIC)) var/can_reach_splints = TRUE var/amount_removed = 0 if(wear_suit && istype(wear_suit,/obj/item/clothing/suit/space)) - var/obj/item/clothing/suit/space/suit = HT.wear_suit - if(suit.supporting_limbs && suit.supporting_limbs.len) - msg = "[HS == HT ? "your":"\proper [HT]'s"]" - to_chat(HS, SPAN_WARNING("You cannot remove the splints, [msg] [suit] is supporting some of the breaks.")) + var/obj/item/clothing/suit/space/suit = target.wear_suit + if(LAZYLEN(suit.supporting_limbs)) + msg = "[user == target ? "your":"\proper [target]'s"]" + to_chat(user, SPAN_WARNING("You cannot remove the splints, [msg] [suit] is supporting some of the breaks.")) can_reach_splints = FALSE if(can_reach_splints) - var/obj/item/stack/W = new /obj/item/stack/medical/splint(HS.loc) - W.amount = 0 //we checked that we have at least one bodypart splinted, so we can create it no prob. Also we need amount to be 0 - W.add_fingerprint(HS) - for(var/obj/limb/l in to_splint) + var/obj/item/stack/medical/splint/new_splint = new(user.loc) + new_splint.amount = 0 //we checked that we have at least one bodypart splinted, so we can create it no prob. Also we need amount to be 0 + new_splint.add_fingerprint(user) + for(var/obj/limb/cur_limb in to_splint) amount_removed++ - l.status &= ~LIMB_SPLINTED + cur_limb.status &= ~LIMB_SPLINTED pain.recalculate_pain() - if(l.status & LIMB_SPLINTED_INDESTRUCTIBLE) - new /obj/item/stack/medical/splint/nano(HS.loc, 1) - l.status &= ~LIMB_SPLINTED_INDESTRUCTIBLE - else if(!W.add(1)) - W = new /obj/item/stack/medical/splint(HS.loc)//old stack is dropped, time for new one - W.amount = 0 - W.add_fingerprint(HS) - W.add(1) - msg = "[HS == HT ? "their own":"\proper [HT]'s"]" - HT.visible_message(SPAN_NOTICE("[HS] removes [msg] [amount_removed>1 ? "splints":"splint"]."), \ + if(cur_limb.status & LIMB_SPLINTED_INDESTRUCTIBLE) + new /obj/item/stack/medical/splint/nano(user.loc, 1) + cur_limb.status &= ~LIMB_SPLINTED_INDESTRUCTIBLE + else if(!new_splint.add(1)) + new_splint = new(user.loc)//old stack is dropped, time for new one + new_splint.amount = 0 + new_splint.add_fingerprint(user) + new_splint.add(1) + if(new_splint.amount == 0) + qdel(new_splint) //we only removed nano splints + msg = "[user == target ? "their own":"\proper [target]'s"]" + target.visible_message(SPAN_NOTICE("[user] removes [msg] [amount_removed>1 ? "splints":"splint"]."), \ SPAN_NOTICE("Your [amount_removed>1 ? "splints are":"splint is"] removed.")) - HT.update_med_icon() + target.update_med_icon() else - msg = "[HS == HT ? "your":"\proper [HT]'s"]" - to_chat(HS, SPAN_NOTICE("You stop trying to remove [msg] splints.")) + msg = "[user == target ? "your":"\proper [target]'s"]" + to_chat(user, SPAN_NOTICE("You stop trying to remove [msg] splints.")) else if(same_arm_side) - to_chat(HS, SPAN_WARNING("You need to use the opposite hand to remove the splints on your arm and hand!")) + to_chat(user, SPAN_WARNING("You need to use the opposite hand to remove the splints on your arm and hand!")) else - to_chat(HS, SPAN_WARNING("There are no splints to remove.")) + to_chat(user, SPAN_WARNING("There are no splints to remove.")) /mob/living/carbon/human/yautja/Initialize(mapload) . = ..(mapload, new_species = "Yautja") @@ -1506,7 +1510,7 @@ QDEL_NULL(legcuffed) handcuff_update() else - var/displaytime = max(1, round(breakouttime / 600)) //Minutes + var/displaytime = max(1, floor(breakouttime / 600)) //Minutes to_chat(src, SPAN_WARNING("You attempt to remove [restraint]. (This will take around [displaytime] minute(s) and you need to stand still)")) for(var/mob/O in viewers(src)) O.show_message(SPAN_DANGER("[usr] attempts to remove [restraint]!"), 1) @@ -1592,6 +1596,31 @@ if(dizziness > 100 && !is_dizzy) INVOKE_ASYNC(src, PROC_REF(dizzy_process)) +/proc/setup_human(mob/living/carbon/human/target, mob/new_player/new_player, is_late_join = FALSE) + new_player.spawning = TRUE + new_player.close_spawn_windows() + new_player.client.prefs.copy_all_to(target, new_player.job, is_late_join) + + if(new_player.client.prefs.be_random_body) + var/datum/preferences/rand_prefs = new() + rand_prefs.randomize_appearance(target) + + target.job = new_player.job + target.name = new_player.real_name + target.voice = new_player.real_name + + if(new_player.mind) + new_player.mind_initialize() + new_player.mind.transfer_to(target, TRUE) + new_player.mind.setup_human_stats() + + target.sec_hud_set_ID() + target.hud_set_squad() + + INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, regenerate_icons)) + INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, update_body), 1, 0) + INVOKE_ASYNC(target, TYPE_PROC_REF(/mob/living/carbon/human, update_hair)) + /mob/living/carbon/human/point_to_atom(atom/A, turf/T) if(isitem(A)) var/obj/item/item = A @@ -1599,3 +1628,18 @@ item.showoff(src) return TRUE return ..() + +/mob/living/carbon/human/on_knockedout_trait_gain(datum/source) + . = ..() + + update_execute_hud() + + return . + +/mob/living/carbon/human/on_knockedout_trait_loss(datum/source) + . = ..() + + update_execute_hud() + + return . + diff --git a/code/modules/mob/living/carbon/human/human_abilities.dm b/code/modules/mob/living/carbon/human/human_abilities.dm index 2af2d738bc..58e4b617a1 100644 --- a/code/modules/mob/living/carbon/human/human_abilities.dm +++ b/code/modules/mob/living/carbon/human/human_abilities.dm @@ -20,6 +20,7 @@ cooldown = COMMAND_ORDER_COOLDOWN /datum/action/human_action/issue_order/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -58,6 +59,7 @@ return FALSE /datum/action/human_action/smartpack/action_activate() + . = ..() if(!istype(owner, /mob/living/carbon/human)) return var/mob/living/carbon/human/H = owner @@ -116,6 +118,33 @@ /datum/action/human_action/smartpack/repair_form/cooldown_check(obj/item/storage/backpack/marine/smartpack/S) return S.repairing + +/datum/action/human_action/psychic_whisper + name = "Psychic Whipser" + action_icon_state = "cultist_channel_hivemind" + +/datum/action/human_action/psychic_whisper/action_activate() + . = ..() + if(!ishuman(owner)) + return + var/mob/living/carbon/human/human_owner = owner + + if(human_owner.client.prefs.muted & MUTE_IC) + to_chat(human_owner, SPAN_DANGER("You cannot whisper (muted).")) + return + + var/list/target_list = list() + for(var/mob/living/carbon/possible_target in view(7, human_owner)) + if(possible_target == human_owner || !possible_target.client) + continue + target_list += possible_target + + var/mob/living/carbon/target_mob = tgui_input_list(human_owner, "Target", "Send a Psychic Whisper to whom?", target_list, theme = "hive_status") + if(!target_mob) + return + + human_owner.psychic_whisper(target_mob) + /* CULT */ @@ -129,6 +158,7 @@ CULT // Called when the action is clicked on. /datum/action/human_action/activable/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -250,7 +280,7 @@ CULT to_send_to = list(H) message_admins("[key_name_admin(H)] called a tech droppod down at [get_area(assigned_droppod)].", T.x, T.y, T.z) for(var/M in to_send_to) - to_chat(M, SPAN_BLUE("SUPPLY DROP REQUEST: Droppod requested at LONGITUDE: [obfuscate_x(T.x)], LATITUDE: [obfuscate_y(T.y)]. ETA [Floor(land_time*0.1)] seconds.")) + to_chat(M, SPAN_BLUE("SUPPLY DROP REQUEST: Droppod requested at LONGITUDE: [obfuscate_x(T.x)], LATITUDE: [obfuscate_y(T.y)]. ETA [floor(land_time*0.1)] seconds.")) RegisterSignal(assigned_droppod, COMSIG_PARENT_QDELETING, PROC_REF(handle_droppod_deleted)) */ @@ -286,6 +316,7 @@ CULT action_icon_state = "cultist_channel_hivemind" /datum/action/human_action/activable/cult/speak_hivemind/action_activate() + . = ..() if(!can_use_action()) return @@ -316,6 +347,7 @@ CULT var/list/items_to_spawn = list(/obj/item/clothing/suit/cultist_hoodie/, /obj/item/clothing/head/cultist_hood/) /datum/action/human_action/activable/cult/obtain_equipment/action_activate() + . = ..() if(!can_use_action()) return @@ -515,6 +547,7 @@ CULT action_icon_state = "mutineer_begin" /datum/action/human_action/activable/mutineer/mutineer_begin/action_activate() + . = ..() if(!can_use_action()) return @@ -549,6 +582,7 @@ CULT UnregisterSignal(L, COMSIG_MOB_RESET_VIEW) /datum/action/human_action/cancel_view/action_activate() + . = ..() if(!can_use_action()) return @@ -556,7 +590,7 @@ CULT H.cancel_camera() H.reset_view() - H.client.change_view(world_view_size, target) + H.client.change_view(GLOB.world_view_size, target) H.client.pixel_x = 0 H.client.pixel_y = 0 @@ -575,6 +609,7 @@ CULT UnregisterSignal(L, COMSIG_MOB_RESET_VIEW) /datum/action/human_action/vehicle_unbuckle/action_activate() + . = ..() if(!can_use_action()) return @@ -588,7 +623,7 @@ CULT remove_from(H) H.unset_interaction() - H.client.change_view(world_view_size, target) + H.client.change_view(GLOB.world_view_size, target) H.client.pixel_x = 0 H.client.pixel_y = 0 H.reset_view() @@ -600,8 +635,33 @@ CULT action_icon_state = "cancel_view" /datum/action/human_action/mg_exit/action_activate() + . = ..() if(!can_use_action()) return var/mob/living/carbon/human/human_user = owner SEND_SIGNAL(human_user, COMSIG_MOB_MG_EXIT) + +/datum/action/human_action/toggle_arc_antenna + name = "Toggle Sensor Antenna" + action_icon_state = "recoil_compensation" + +/datum/action/human_action/toggle_arc_antenna/give_to(mob/user) + . = ..() + RegisterSignal(user, COMSIG_MOB_RESET_VIEW, PROC_REF(remove_from)) + +/datum/action/human_action/toggle_arc_antenna/remove_from(mob/user) + . = ..() + UnregisterSignal(user, COMSIG_MOB_RESET_VIEW) + +/datum/action/human_action/toggle_arc_antenna/action_activate() + . = ..() + if(!can_use_action()) + return + + var/mob/living/carbon/human/human_user = owner + if(istype(human_user.buckled, /obj/structure/bed/chair/comfy/vehicle)) + var/obj/structure/bed/chair/comfy/vehicle/vehicle_chair = human_user.buckled + if(istype(vehicle_chair.vehicle, /obj/vehicle/multitile/arc)) + var/obj/vehicle/multitile/arc/vehicle = vehicle_chair.vehicle + vehicle.toggle_antenna(human_user) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index a1c3b5a4d0..c22a68a61b 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -4,9 +4,11 @@ if(..()) return TRUE + SEND_SIGNAL(attacking_mob, COMSIG_LIVING_ATTACKHAND_HUMAN, src) + if((attacking_mob != src) && check_shields(0, attacking_mob.name)) visible_message(SPAN_DANGER("[attacking_mob] attempted to touch [src]!"), null, null, 5) - return 0 + return FALSE switch(attacking_mob.a_intent) if(INTENT_HELP) @@ -21,7 +23,7 @@ SPAN_NOTICE("You extinguished the fire on [src]."), null, 5) return 1 - // If unconcious with oxygen damage, do CPR. If dead, we do CPR + // If unconscious with oxygen damage, do CPR. If dead, we do CPR if(!((stat == UNCONSCIOUS || (locate(/datum/effects/crit) in effects_list)) && getOxyLoss() > 0) && !(stat == DEAD)) help_shake_act(attacking_mob) return 1 @@ -58,9 +60,11 @@ revive_grace_period += 7 SECONDS attacking_mob.visible_message(SPAN_NOTICE("[attacking_mob] performs CPR on [src]."), SPAN_HELPFUL("You perform CPR on [src].")) + balloon_alert(attacking_mob, "you perform cpr") else attacking_mob.visible_message(SPAN_NOTICE("[attacking_mob] fails to perform CPR on [src]."), SPAN_HELPFUL("You fail to perform CPR on [src]. Incorrect rhythm. Do it slower.")) + balloon_alert(attacking_mob, "incorrect rhythm. do it slower") cpr_cooldown = world.time + 7 SECONDS cpr_attempt_timer = 0 return 1 @@ -86,7 +90,7 @@ attack = attacking_mob.species.secondary_unarmed return - last_damage_data = create_cause_data("fisticuffs", src) + last_damage_data = create_cause_data("fisticuffs", attacking_mob) attacking_mob.attack_log += text("\[[time_stamp()]\] [pick(attack.attack_verb)]ed [key_name(src)]") attack_log += text("\[[time_stamp()]\] Has been [pick(attack.attack_verb)]ed by [key_name(attacking_mob)]") msg_admin_attack("[key_name(attacking_mob)] [pick(attack.attack_verb)]ed [key_name(src)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) @@ -155,7 +159,7 @@ return held_weapon.afterattack(target,src) var/disarm_chance = rand(1, 100) - var/attacker_skill_level = skills && attacking_mob.skills ? skills.get_skill_level(SKILL_CQC) : SKILL_CQC_MAX // No skills, so assume max + var/attacker_skill_level = attacking_mob.skills ? attacking_mob.skills.get_skill_level(SKILL_CQC) : SKILL_CQC_MAX // No skills, so assume max var/defender_skill_level = skills ? skills.get_skill_level(SKILL_CQC) : SKILL_CQC_MAX // No skills, so assume max disarm_chance -= 5 * attacker_skill_level disarm_chance += 5 * defender_skill_level @@ -177,7 +181,7 @@ else drop_held_item() visible_message(SPAN_DANGER("[attacking_mob] has disarmed [src]!"), null, null, 5) - playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + playsound(loc, 'sound/weapons/punchmiss.ogg', 25, 1, 7) return playsound(loc, 'sound/weapons/punchmiss.ogg', 25, 1, 7) @@ -205,7 +209,10 @@ if(client) sleeping = max(0,src.sleeping-5) if(!sleeping) - set_resting(FALSE) + if(is_dizzy) + to_chat(M, SPAN_WARNING("[src] looks dizzy. Maybe you should let [t_him] rest a bit longer.")) + else + set_resting(FALSE) M.visible_message(SPAN_NOTICE("[M] shakes [src] trying to wake [t_him] up!"), \ SPAN_NOTICE("You shake [src] trying to wake [t_him] up!"), null, 4) else if(HAS_TRAIT(src, TRAIT_INCAPACITATED)) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index f7b72ee08d..48dea97699 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -34,7 +34,7 @@ var/datum/internal_organ/brain/sponge = internal_organs_by_name["brain"] if(sponge) sponge.take_damage(amount) - sponge.damage = Clamp(sponge.damage, 0, maxHealth*2) + sponge.damage = clamp(sponge.damage, 0, maxHealth*2) brainloss = sponge.damage else brainloss = 200 @@ -49,7 +49,7 @@ if(species.has_organ["brain"]) var/datum/internal_organ/brain/sponge = internal_organs_by_name["brain"] if(sponge) - sponge.damage = Clamp(amount, 0, maxHealth*2) + sponge.damage = clamp(amount, 0, maxHealth*2) brainloss = sponge.damage else brainloss = 200 @@ -179,7 +179,7 @@ for(var/obj/limb/O in limbs) if(O.status & (LIMB_ROBOT|LIMB_DESTROYED|LIMB_MUTATED|LIMB_SYNTHSKIN)) continue candidates |= O - if(candidates.len) + if(length(candidates)) var/obj/limb/O = pick(candidates) O.mutate() to_chat(src, SPAN_NOTICE("Something is not right with your [O.display_name]...")) @@ -260,7 +260,7 @@ //It automatically updates health status /mob/living/carbon/human/heal_limb_damage(brute, burn) var/list/obj/limb/parts = get_damaged_limbs(brute,burn) - if(!parts.len) + if(!length(parts)) return var/obj/limb/picked = pick(parts) if(brute != 0) @@ -279,7 +279,7 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t //It automatically updates health status /mob/living/carbon/human/take_limb_damage(brute, burn, sharp = 0, edge = 0) var/list/obj/limb/parts = get_damageable_limbs() - if(!parts.len) return + if(!length(parts)) return var/obj/limb/picked = pick(parts) if(brute != 0) apply_damage(brute, BRUTE, picked, sharp, edge) @@ -294,7 +294,7 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t var/list/obj/limb/parts = get_damaged_limbs(brute,burn) var/update = 0 - while(parts.len && (brute>0 || burn>0) ) + while(length(parts) && (brute>0 || burn>0) ) var/obj/limb/picked = pick(parts) var/brute_was = picked.brute_dam @@ -335,7 +335,11 @@ In most cases it makes more sense to use apply_damage() instead! And make sure t for(var/obj/limb/L as anything in parts) var/armor = getarmor(L, armour_type) var/modified_damage = armor_damage_reduction(armour_config, damage, armor, penetration, 0, 0) - L.take_damage(modified_damage / amount_of_parts) + if(damage_type == BURN) + L.take_damage(burn = modified_damage / amount_of_parts) + else + L.take_damage(modified_damage / amount_of_parts) + updatehealth() UpdateDamageIcon() @@ -373,7 +377,7 @@ This function restores all limbs. /mob/living/carbon/human/get_limb(zone) RETURN_TYPE(/obj/limb) zone = check_zone(zone) - return (locate(limb_types_by_name[zone]) in limbs) + return (locate(GLOB.limb_types_by_name[zone]) in limbs) /mob/living/carbon/human/apply_armoured_damage(damage = 0, armour_type = ARMOR_MELEE, damage_type = BRUTE, def_zone = null, penetration = 0, armour_break_pr_pen = 0, armour_break_flat = 0) @@ -409,7 +413,7 @@ This function restores all limbs. permanent_kill = FALSE, mob/firer = null, force = FALSE ) if(protection_aura && damage > 0) - damage = round(damage * ((ORDER_HOLD_CALC_LEVEL - protection_aura) / ORDER_HOLD_CALC_LEVEL)) + damage = floor(damage * ((ORDER_HOLD_CALC_LEVEL - protection_aura) / ORDER_HOLD_CALC_LEVEL)) //Handle other types of damage if(damage < 0 || (damagetype != BRUTE) && (damagetype != BURN)) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index f3f58b859e..09ce5bb9c1 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -44,7 +44,7 @@ Contains most of the procs that are called when a mob is attacked by something //If you don't specify a bodypart, it checks ALL your bodyparts for protection, and averages out the values for(var/X in limbs) var/obj/limb/E = X - var/weight = organ_rel_size[E.name] + var/weight = GLOB.organ_rel_size[E.name] armorval += getarmor_organ(E, type) * weight total += weight return (armorval/max(total, 1)) @@ -115,7 +115,7 @@ Contains most of the procs that are called when a mob is attacked by something // We cannot return FALSE on fail here, because we haven't checked r_hand yet. Dual-wielding shields perhaps! var/obj/item/weapon/I = l_hand - if(I.IsShield() && !istype(I, /obj/item/weapon/shield) && (prob(50 - round(damage / 3)))) // 'other' shields, like predweapons. Make sure that item/weapon/shield does not apply here, no double-rolls. + if(I.IsShield() && !istype(I, /obj/item/weapon/shield) && (prob(50 - floor(damage / 3)))) // 'other' shields, like predweapons. Make sure that item/weapon/shield does not apply here, no double-rolls. visible_message(SPAN_DANGER("[src] blocks [attack_text] with the [l_hand.name]!"), null, null, 5) return TRUE @@ -139,7 +139,7 @@ Contains most of the procs that are called when a mob is attacked by something return TRUE var/obj/item/weapon/I = r_hand - if(I.IsShield() && !istype(I, /obj/item/weapon/shield) && (prob(50 - round(damage / 3)))) // other shields. Don't doublecheck activable here. + if(I.IsShield() && !istype(I, /obj/item/weapon/shield) && (prob(50 - floor(damage / 3)))) // other shields. Don't doublecheck activable here. visible_message(SPAN_DANGER("[src] blocks [attack_text] with the [r_hand.name]!"), null, null, 5) return TRUE @@ -194,7 +194,7 @@ Contains most of the procs that are called when a mob is attacked by something if((user != src) && check_shields(I.force, "the [I.name]")) return FALSE - if(I.attack_verb && I.attack_verb.len) + if(LAZYLEN(I.attack_verb)) visible_message(SPAN_DANGER("[src] has been [pick(I.attack_verb)] in the [hit_area] with [I.name] by [user]!"), null, null, 5) else visible_message(SPAN_DANGER("[src] has been attacked in the [hit_area] with [I.name] by [user]!"), null, null, 5) @@ -256,7 +256,7 @@ Contains most of the procs that are called when a mob is attacked by something add_blood(get_blood_color(), BLOOD_BODY) //Melee weapon embedded object code. - if (I.damtype == BRUTE && !I.is_robot_module() && !(I.flags_item & (NODROP|DELONDROP))) + if (I.damtype == BRUTE && !(I.flags_item & (NODROP|DELONDROP))) damage = I.force if(damage > 40) damage = 40 //Some sanity, mostly for yautja weapons. CONSTANT STICKY ICKY if (weapon_sharp && prob(3) && !isyautja(user)) // make yautja less likely to get their weapon stuck @@ -335,10 +335,10 @@ Contains most of the procs that are called when a mob is attacked by something if (M.faction == faction) M.track_friendly_fire(initial(O.name)) if (assailant) - src.attack_log += text("\[[time_stamp()]\] Has been hit with a [O], thrown by [key_name(M)]") + src.attack_log += text("\[[time_stamp()]\] Has been hit with \a [O], thrown by [key_name(M)]") M.attack_log += text("\[[time_stamp()]\] Hit [key_name(src)] with a thrown [O]") if(!istype(src,/mob/living/simple_animal/mouse)) - msg_admin_attack("[key_name(src)] was hit by a [O], thrown by [key_name(M)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) + msg_admin_attack("[key_name(src)] was hit by \a [O], thrown by [key_name(M)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) if(last_damage_source) last_damage_data = create_cause_data(last_damage_source, last_damage_mob) @@ -346,16 +346,15 @@ Contains most of the procs that are called when a mob is attacked by something //thrown weapon embedded object code. if (dtype == BRUTE && istype(O,/obj/item)) var/obj/item/I = O - if (!I.is_robot_module()) - var/sharp = is_sharp(I) - //blunt objects should really not be embedding in things unless a huge amount of force is involved - var/embed_chance = sharp? damage/I.w_class : damage/(I.w_class*3) - var/embed_threshold = sharp? 5*I.w_class : 15*I.w_class - - //Sharp objects will always embed if they do enough damage. - //Thrown sharp objects have some momentum already and have a small chance to embed even if the damage is below the threshold - if (!isyautja(src) && ((sharp && prob(damage/(10*I.w_class)*100)) || (damage > embed_threshold && prob(embed_chance)))) - affecting.embed(I) + var/sharp = is_sharp(I) + //blunt objects should really not be embedding in things unless a huge amount of force is involved + var/embed_chance = sharp? damage/I.w_class : damage/(I.w_class*3) + var/embed_threshold = sharp? 5*I.w_class : 15*I.w_class + + //Sharp objects will always embed if they do enough damage. + //Thrown sharp objects have some momentum already and have a small chance to embed even if the damage is below the threshold + if (!isyautja(src) && ((sharp && prob(damage/(10*I.w_class)*100)) || (damage > embed_threshold && prob(embed_chance)))) + affecting.embed(I) /mob/living/carbon/human/proc/get_id_faction_group() var/obj/item/card/id/C = wear_id diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 3beb8b97a9..0bb446bf5f 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -1,6 +1,7 @@ /mob/living/carbon/human light_system = MOVABLE_LIGHT rotate_on_lying = TRUE + blocks_emissive = EMISSIVE_BLOCK_UNIQUE //Hair color and style var/r_hair = 0 var/g_hair = 0 @@ -60,7 +61,7 @@ var/obj/item/head = null var/obj/item/wear_l_ear = null var/obj/item/wear_r_ear = null - var/obj/item/card/id/wear_id = null + var/obj/item/wear_id = null var/obj/item/r_store = null var/obj/item/l_store = null var/obj/item/s_store = null @@ -137,7 +138,7 @@ var/last_chew = 0 //taken from human.dm - hud_possible = list(HEALTH_HUD, STATUS_HUD, STATUS_HUD_OOC, STATUS_HUD_XENO_INFECTION, STATUS_HUD_XENO_CULTIST, ID_HUD, WANTED_HUD, ORDER_HUD, XENO_HOSTILE_ACID, XENO_HOSTILE_SLOW, XENO_HOSTILE_TAG, XENO_HOSTILE_FREEZE, HUNTER_CLAN, HUNTER_HUD, FACTION_HUD, HOLOCARD_HUD) + hud_possible = list(HEALTH_HUD, STATUS_HUD, STATUS_HUD_OOC, STATUS_HUD_XENO_INFECTION, STATUS_HUD_XENO_CULTIST, ID_HUD, WANTED_HUD, ORDER_HUD, XENO_HOSTILE_ACID, XENO_HOSTILE_SLOW, XENO_HOSTILE_TAG, XENO_HOSTILE_FREEZE, XENO_EXECUTE, HUNTER_CLAN, HUNTER_HUD, FACTION_HUD, HOLOCARD_HUD) var/embedded_flag //To check if we've need to roll for damage on movement while an item is imbedded in us. var/allow_gun_usage = TRUE var/melee_allowed = TRUE @@ -168,6 +169,9 @@ /// static associated list of limb key -> image to avoid unnecessary overlay generation var/static/list/icon_render_image_cache = list() + /// Stored image references associated with focus-fire. + var/image/focused_fire_marker + /client/var/cached_human_playtime /client/proc/get_total_human_playtime(skip_cache = FALSE) @@ -176,8 +180,8 @@ var/total_marine_playtime = 0 - for(var/job in RoleAuthority.roles_by_name) - var/datum/job/J = RoleAuthority.roles_by_name[job] + for(var/job in GLOB.RoleAuthority.roles_by_name) + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[job] if(istype(J, /datum/job/antag)) continue diff --git a/code/modules/mob/living/carbon/human/human_dummy.dm b/code/modules/mob/living/carbon/human/human_dummy.dm index 061ac3cea0..4f3bf4f1b3 100644 --- a/code/modules/mob/living/carbon/human/human_dummy.dm +++ b/code/modules/mob/living/carbon/human/human_dummy.dm @@ -73,3 +73,17 @@ GLOBAL_LIST_EMPTY(dummy_mob_list) /mob/living/carbon/human/dummy/add_to_all_mob_huds() return + +/mob/living/carbon/human/dummy/tutorial // Effectively an even more disabled dummy + +/mob/living/carbon/human/dummy/tutorial/Initialize(mapload) + . = ..() + status_flags = GODMODE + ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_TUTORIAL) + anchored = TRUE + +/// Professor Dummy, used by CMOs and SEAs to teach new nurses/doctors +/mob/living/carbon/human/professor_dummy/Initialize() + . = ..() + create_hud() + INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(arm_equipment), src, /datum/equipment_preset/other/professor_dummy) diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index 9a3b796764..cfb81066d2 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -32,10 +32,10 @@ return "[skin_color]_[limb_name]_[get_gender_name(gender)]" if("groin") return "[skin_color]_[limb_name]_[body_type]_[get_gender_name(gender)]" + switch(limb_name) if("synthetic head") return "head_[get_gender_name(gender)]" - if("r_arm") return "[skin_color]_right_arm" if("right arm") @@ -68,6 +68,7 @@ return "[skin_color]_left_foot" if("left foot") return "[skin_color]_left_foot" + else message_admins("DEBUG: Something called get_limb_icon_name() incorrectly, they use the name [limb_name]") return null @@ -208,18 +209,18 @@ return FALSE -/mob/living/carbon/human/is_mob_restrained(check_grab = 1) +/mob/living/carbon/human/is_mob_restrained(check_grab = TRUE) if(check_grab && pulledby && pulledby.grab_level >= GRAB_AGGRESSIVE) - return 1 + return TRUE if (handcuffed) - return 1 + return TRUE if (istype(wear_suit, /obj/item/clothing/suit/straight_jacket)) - return 1 + return TRUE if (HAS_TRAIT(src, TRAIT_NESTED)) return TRUE - return 0 + return FALSE /mob/living/carbon/human/proc/disable_special_flags() status_flags |= CANPUSH @@ -361,7 +362,7 @@ /mob/living/carbon/human/proc/has_foreign_object() for(var/obj/limb/L in limbs) - if(L.implants && L.implants.len > 0) + if(LAZYLEN(L.implants) > 0) return TRUE for(var/obj/item/alien_embryo/A in contents) return TRUE diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 1803e28911..c9a36d2837 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -10,7 +10,7 @@ if(species.slowdown) . += species.slowdown - if(embedded_items.len > 0) + if(length(embedded_items) > 0) handle_embedded_objects() //Moving with objects stuck in you can cause bad times. var/reducible_tally = 0 //Tally elements that can be reduced are put here, then we apply MST effects @@ -105,12 +105,6 @@ //Can we act if(is_mob_restrained()) return 0 - //Do we have a working jetpack - if(istype(back, /obj/item/tank/jetpack)) - var/obj/item/tank/jetpack/J = back - if(((!check_drift) || (check_drift && J.stabilization_on)) && (body_position == STANDING_UP) && (J.allow_thrust(0.01, src))) - inertia_dir = 0 - return 1 // if(!check_drift && J.allow_thrust(0.01, src)) // return 1 @@ -138,7 +132,7 @@ if (!r_hand) prob_slip -= 2 else if(r_hand.w_class <= SIZE_SMALL) prob_slip-- - prob_slip = round(prob_slip) + prob_slip = floor(prob_slip) return(prob_slip) /// Updates [TRAIT_FLOORED] based on whether the mob has appropriate limbs to stand or not diff --git a/code/modules/mob/living/carbon/human/human_stripping.dm b/code/modules/mob/living/carbon/human/human_stripping.dm index fbf6fb5ce4..210e5f266f 100644 --- a/code/modules/mob/living/carbon/human/human_stripping.dm +++ b/code/modules/mob/living/carbon/human/human_stripping.dm @@ -129,13 +129,12 @@ GLOBAL_LIST_INIT(strippable_human_items, create_strippable_list(list( return var/obj/item/clothing/under/uniform = sourcemob.w_uniform - if(!LAZYLEN(uniform.accessories)) - return FALSE - var/obj/item/clothing/accessory/accessory = LAZYACCESS(uniform.accessories, 1) - if(LAZYLEN(uniform.accessories) > 1) - accessory = tgui_input_list(user, "Select an accessory to remove from [uniform]", "Remove accessory", uniform.accessories) - if(!istype(accessory)) + + var/obj/item/clothing/accessory/accessory = uniform.pick_accessory_to_remove(user, sourcemob) + + if(!accessory) return + sourcemob.attack_log += text("\[[time_stamp()]\] Has had their accessory ([accessory]) removed by [key_name(user)]") user.attack_log += text("\[[time_stamp()]\] Attempted to remove [key_name(sourcemob)]'s' accessory ([accessory])") if(istype(accessory, /obj/item/clothing/accessory/holobadge) || istype(accessory, /obj/item/clothing/accessory/medal)) diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 871a2cd376..dbc30b964a 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -109,6 +109,8 @@ if(I == wear_suit) if(s_store && !(s_store.flags_equip_slot & SLOT_SUIT_STORE)) drop_inv_item_on_ground(s_store) + if(back && (back.flags_item & SMARTGUNNER_BACKPACK_OVERRIDE)) // Technically some items don't need to be unequipped though + drop_inv_item_on_ground(back) wear_suit = null if(I.flags_inv_hide & HIDESHOES) update_inv_shoes() @@ -354,8 +356,7 @@ current_storage.attempt_item_insertion(equipping_item, disable_warning, src) back.update_icon() if(WEAR_IN_SHOES) - shoes.attempt_insert_item(src, equipping_item, TRUE) - shoes.update_icon() + shoes.attempt_insert_item(src, equipping_item) if(WEAR_IN_SCABBARD) var/obj/item/storage/current_storage = back current_storage.attempt_item_insertion(equipping_item, disable_warning, src) @@ -413,6 +414,8 @@ /mob/living/carbon/human/get_item_by_slot(slot_id) switch(slot_id) + if(WEAR_ACCESSORY) + return w_uniform.accessories if(WEAR_BACK) return back if(WEAR_FACE) @@ -495,7 +498,8 @@ /// Multiplier for how quickly the user can strip things. var/user_speed = user.get_skill_duration_multiplier(SKILL_CQC) /// The total skill level of CQC & Police - var/target_skills = (target.skills.get_skill_level(SKILL_CQC) + target.skills.get_skill_level(SKILL_POLICE)) + var/target_skills = 0 + target_skills += (target.skills?.get_skill_level(SKILL_CQC) + target.skills?.get_skill_level(SKILL_POLICE)) /// Delay then gets + 0.5s per skill level, so long as not dead or cuffed. if(!(target.stat || target.handcuffed)) @@ -507,5 +511,3 @@ /mob/living/carbon/human/drop_inv_item_on_ground(obj/item/I, nomoveupdate, force) remember_dropped_object(I) return ..() - - diff --git a/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm b/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm index eafac03fd5..9bf275a544 100644 --- a/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm +++ b/code/modules/mob/living/carbon/human/life/handle_chemicals_in_body.dm @@ -39,25 +39,35 @@ SHOULD_NOT_SLEEP(TRUE) if(!reagents || undefibbable) return // Double checking due to Life() funny background=1 - for(var/datum/reagent/generated/R in reagents.reagent_list) + + var/has_cryo_medicine = reagents.get_reagent_amount("cryoxadone") >= 1 || reagents.get_reagent_amount("clonexadone") >= 1 + if(has_cryo_medicine) + var/obj/structure/machinery/cryo_cell/cryo = loc + if(!istype(cryo) || !cryo.on || cryo.inoperable()) + has_cryo_medicine = FALSE + + for(var/datum/reagent/cur_reagent in reagents.reagent_list) + if(!has_cryo_medicine && !istype(cur_reagent, /datum/reagent/generated)) + continue + var/list/mods = list( REAGENT_EFFECT = TRUE, REAGENT_BOOST = FALSE, REAGENT_PURGE = FALSE, - REAGENT_FORCE = FALSE, + REAGENT_FORCE = has_cryo_medicine, REAGENT_CANCEL = FALSE) - for(var/datum/chem_property/P in R.properties) - var/list/A = P.pre_process(src) - if(!A) + for(var/datum/chem_property/cur_prop in cur_reagent.properties) + var/list/results = cur_prop.pre_process(src) + if(!results) continue - for(var/mod in A) - mods[mod] |= A[mod] + for(var/mod in results) + mods[mod] |= results[mod] if(mods[REAGENT_CANCEL]) return if(mods[REAGENT_FORCE]) - R.handle_processing(src, mods, delta_time) - R.holder.remove_reagent(R.id, R.custom_metabolism * delta_time) + cur_reagent.handle_processing(src, mods, delta_time) + cur_reagent.holder.remove_reagent(cur_reagent.id, cur_reagent.custom_metabolism * delta_time) - R.handle_dead_processing(src, mods, delta_time) + cur_reagent.handle_dead_processing(src, mods, delta_time) diff --git a/code/modules/mob/living/carbon/human/life/handle_environment.dm b/code/modules/mob/living/carbon/human/life/handle_environment.dm index 143d9d5007..65bc721381 100644 --- a/code/modules/mob/living/carbon/human/life/handle_environment.dm +++ b/code/modules/mob/living/carbon/human/life/handle_environment.dm @@ -19,7 +19,7 @@ if(thermal_protection < 1) temp_adj = (1 - thermal_protection) * ((loc_temp - bodytemperature) / BODYTEMP_HEAT_DIVISOR) - bodytemperature += Clamp(temp_adj, BODYTEMP_COOLING_MAX, BODYTEMP_HEATING_MAX) + bodytemperature += clamp(temp_adj, BODYTEMP_COOLING_MAX, BODYTEMP_HEATING_MAX) //+/- 50 degrees from 310.15K is the 'safe' zone, where no damage is dealt. if(bodytemperature > species.heat_level_1) diff --git a/code/modules/mob/living/carbon/human/life/handle_grabbed.dm b/code/modules/mob/living/carbon/human/life/handle_grabbed.dm index 14d2255741..0c588da7ca 100644 --- a/code/modules/mob/living/carbon/human/life/handle_grabbed.dm +++ b/code/modules/mob/living/carbon/human/life/handle_grabbed.dm @@ -9,3 +9,7 @@ if(pulledby.grab_level >= GRAB_CHOKE) apply_damage(3, OXY) apply_stamina_damage(5) + + log_attack("[key_name(pulledby)] choked [key_name(src)] at [get_area_name(src)]") + attack_log += text("\[[time_stamp()]\] was choked by [key_name(pulledby)]") + pulledby.attack_log += text("\[[time_stamp()]\] choked [key_name(src)]") diff --git a/code/modules/mob/living/carbon/human/life/handle_pulse.dm b/code/modules/mob/living/carbon/human/life/handle_pulse.dm index 38a02a048b..11c07e253f 100644 --- a/code/modules/mob/living/carbon/human/life/handle_pulse.dm +++ b/code/modules/mob/living/carbon/human/life/handle_pulse.dm @@ -8,7 +8,7 @@ if(stat == DEAD || status_flags & FAKEDEATH) return PULSE_NONE //That's it, you're dead, nothing can influence your pulse - if(round(blood_volume) <= BLOOD_VOLUME_BAD) //How much blood do we have + if(floor(blood_volume) <= BLOOD_VOLUME_BAD) //How much blood do we have return PULSE_THREADY //not enough :( return PULSE_NORM diff --git a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm index 32dd9ddef8..3bca610af8 100644 --- a/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm +++ b/code/modules/mob/living/carbon/human/life/handle_regular_hud_updates.dm @@ -20,7 +20,10 @@ if(-90 to -80) severity = 8 if(-95 to -90) severity = 9 if(-INFINITY to -95) severity = 10 - overlay_fullscreen("crit", /atom/movable/screen/fullscreen/crit, severity) + if(client.prefs?.crit_overlay_pref == CRIT_OVERLAY_DARK) + overlay_fullscreen("crit", /atom/movable/screen/fullscreen/crit/dark, severity) + else + overlay_fullscreen("crit", /atom/movable/screen/fullscreen/crit, severity) else clear_fullscreen("crit") if(oxyloss) @@ -37,9 +40,9 @@ else clear_fullscreen("oxy") - //Fire and Brute damage overlay (BSSR) - var/hurtdamage = src.getBruteLoss() + src.getFireLoss() + damageoverlaytemp + var/max_health_normalisation = (species ? species.total_health : 100) / 100 + var/hurtdamage = (getBruteLoss() + getFireLoss()) / max_health_normalisation + damageoverlaytemp damageoverlaytemp = 0 // We do this so we can detect if someone hits us or not. if(hurtdamage) var/severity = 0 @@ -60,7 +63,7 @@ else clear_fullscreen("blind") - ///Pain should override the SetEyeBlur(0) should the pain be painful enough to cause eyeblur in the first place. Also, peepers is essential to make sure eye damage isn't overriden. + ///Pain should override the SetEyeBlur(0) should the pain be painful enough to cause eyeblur in the first place. Also, peepers is essential to make sure eye damage isn't overridden. var/datum/internal_organ/eyes/peepers = internal_organs_by_name["eyes"] if((disabilities & NEARSIGHTED) && !HAS_TRAIT(src, TRAIT_NEARSIGHTED_EQUIPMENT) && pain.current_pain < 80 && peepers.organ_status == ORGAN_HEALTHY) EyeBlur(2) @@ -195,7 +198,7 @@ hud_used.slowed_icon.name = "" hud_used.slowed_icon.icon_state = "status_0" - var/is_embedded = embedded_items.len + var/is_embedded = length(embedded_items) if(is_embedded) hud_used.shrapnel_icon.name = "shrapnel" hud_used.shrapnel_icon.icon_state = "status_shrapnel" @@ -225,7 +228,7 @@ hud_used.tethered_icon.name = "" hud_used.tethered_icon.icon_state = "status_0" - if(active_transfusions.len) + if(length(active_transfusions)) hud_used.tethered_icon.name = "transfusion" hud_used.tethered_icon.icon_state = "status_blood" hud_used.tethered_icon.screen_loc = ui_datum.get_status_loc(status_effect_placement) diff --git a/code/modules/mob/living/carbon/human/life/life_helpers.dm b/code/modules/mob/living/carbon/human/life/life_helpers.dm index cab3ae21a7..9388204a96 100644 --- a/code/modules/mob/living/carbon/human/life/life_helpers.dm +++ b/code/modules/mob/living/carbon/human/life/life_helpers.dm @@ -6,25 +6,6 @@ * Mostly for procs that are not called in the direct Life() loop, except for exact functionality matches (handle_breath, breathe, get_breath_from_internal for example) */ -//Calculate how vulnerable the human is to under- and overpressure. -//Returns 0 (equals 0 %) if sealed in an undamaged suit, 1 if unprotected (equals 100%). -//Suitdamage can modifiy this in 10% steps. -/mob/living/carbon/human/proc/get_pressure_weakness() - - var/pressure_adjustment_coefficient = 1 // Assume no protection at first. - - if(wear_suit && (wear_suit.flags_inventory & NOPRESSUREDMAGE) && head && (head.flags_inventory & NOPRESSUREDMAGE)) //Complete set of pressure-proof suit worn, assume fully sealed. - pressure_adjustment_coefficient = 0 - - //Handles breaches in your space suit. 10 suit damage equals a 100% loss of pressure protection. - if(istype(wear_suit, /obj/item/clothing/suit/space)) - var/obj/item/clothing/suit/space/S = wear_suit - if(S.can_breach && S.damage) - pressure_adjustment_coefficient += S.damage * 0.1 - - pressure_adjustment_coefficient = min(1, max(pressure_adjustment_coefficient, 0)) //So it isn't less than 0 or larger than 1. - return pressure_adjustment_coefficient - /mob/living/carbon/human/proc/stabilize_body_temperature() diff --git a/code/modules/mob/living/carbon/human/powers/human_powers.dm b/code/modules/mob/living/carbon/human/powers/human_powers.dm index 219212d1e1..8daf9a7488 100644 --- a/code/modules/mob/living/carbon/human/powers/human_powers.dm +++ b/code/modules/mob/living/carbon/human/powers/human_powers.dm @@ -168,7 +168,7 @@ to_chat(src, "Not even a [species.name] can speak to the dead.") return - log_say("[key_name(src)] communed to [key_name(M)]: [text]") + log_say("[key_name(src)] communed to [key_name(M)]: [text] (AREA: [get_area_name(loc)])") to_chat(M, SPAN_NOTICE(" Like lead slabs crashing into the ocean, alien thoughts drop into your mind: [text]")) if(istype(M,/mob/living/carbon/human)) @@ -178,16 +178,25 @@ to_chat(H, SPAN_DANGER("Your nose begins to bleed...")) H.drip(1) -/mob/living/carbon/human/proc/psychic_whisper(mob/M as mob in oview()) +/mob/living/carbon/human/proc/psychic_whisper(mob/target_mob as mob in oview()) set name = "Psychic Whisper" set desc = "Whisper silently to someone over a distance." set category = "Abilities" - var/msg = strip_html(input("Message:", "Psychic Whisper") as text|null) - if(msg) - log_say("PsychicWhisper: [key_name(src)]->[M.key] : [msg]") - to_chat(M, SPAN_XENOWARNING(" You hear a strange, alien voice in your head... \italic [msg]")) - to_chat(src, SPAN_XENOWARNING(" You said: \"[msg]\" to [M]")) + var/whisper = strip_html(input("Message:", "Psychic Whisper") as text|null) + if(whisper) + log_say("PsychicWhisper: [key_name(src)]->[target_mob.key] : [whisper] (AREA: [get_area_name(loc)])") + to_chat(target_mob, SPAN_XENOWARNING(" You hear a strange, alien voice in your head... [SPAN_PSYTALK(whisper)]")) + to_chat(src, SPAN_XENOWARNING(" You said: \"[whisper]\" to [target_mob]")) + for (var/mob/dead/observer/ghost as anything in GLOB.observer_list) + if(!ghost.client || isnewplayer(ghost)) + continue + if(ghost.client.prefs.toggles_chat & CHAT_GHOSTHIVEMIND) + var/rendered_message + var/human_track = "(F)" + var/target_track = "(F)" + rendered_message = SPAN_XENOLEADER("PsychicWhisper: [real_name][human_track] to [target_mob.real_name][target_track], '[SPAN_PSYTALK(whisper)]'") + ghost.show_message(rendered_message, SHOW_MESSAGE_AUDIBLE) return /mob/living/verb/lay_down() @@ -202,7 +211,7 @@ if(new_resting == resting) return if(!COOLDOWN_FINISHED(src, rest_cooldown)) - to_chat(src, SPAN_WARNING("You can't 'rest' that fast. Take a breather!")) + to_chat(src, SPAN_WARNING("[isxeno(src) ? "We" : "You"] can't 'rest' that fast. Take a breather!")) return COOLDOWN_START(src, rest_cooldown, 1 SECONDS) @@ -211,24 +220,24 @@ if(new_resting) if(body_position == LYING_DOWN) if(!silent) - to_chat(src, SPAN_NOTICE("You will now try to stay lying down on the floor.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] will now try to stay lying down on the floor.")) else if(HAS_TRAIT(src, TRAIT_FORCED_STANDING) || (buckled && buckled.buckle_lying != NO_BUCKLE_LYING)) if(!silent) - to_chat(src, SPAN_NOTICE("You will now lay down as soon as you are able to.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] will now lay down as soon as [isxeno(src) ? "we" : "you"] are able to.")) else if(!silent) - to_chat(src, SPAN_NOTICE("You lay down.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] lay down.")) set_lying_down() else if(body_position == STANDING_UP) if(!silent) - to_chat(src, SPAN_NOTICE("You will now try to remain standing up.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] will now try to remain standing up.")) else if(HAS_TRAIT(src, TRAIT_FLOORED) || (buckled && buckled.buckle_lying != NO_BUCKLE_LYING)) if(!silent) - to_chat(src, SPAN_NOTICE("You will now stand up as soon as you are able to.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] will now stand up as soon as [isxeno(src) ? "we" : "you"] are able to.")) else if(!silent) - to_chat(src, SPAN_NOTICE("You stand up.")) + to_chat(src, SPAN_NOTICE("[isxeno(src) ? "We" : "You"] stand up.")) get_up(instant) // SEND_SIGNAL(src, COMSIG_LIVING_RESTING, new_resting, silent, instant) @@ -264,9 +273,9 @@ var/chosen_HUD = 1 switch(hud_choice) if("Medical HUD") - H = huds[MOB_HUD_MEDICAL_ADVANCED] + H = GLOB.huds[MOB_HUD_MEDICAL_ADVANCED] if("Security HUD") - H = huds[MOB_HUD_SECURITY_ADVANCED] + H = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] chosen_HUD = 2 else return diff --git a/code/modules/mob/living/carbon/human/powers/issue_order.dm b/code/modules/mob/living/carbon/human/powers/issue_order.dm index 775c4f6455..5863bf2ea2 100644 --- a/code/modules/mob/living/carbon/human/powers/issue_order.dm +++ b/code/modules/mob/living/carbon/human/powers/issue_order.dm @@ -22,7 +22,7 @@ if(order == "help") to_chat(src, SPAN_NOTICE("
        Orders give a buff to nearby soldiers for a short period of time, followed by a cooldown, as follows:
        Move - Increased mobility and chance to dodge projectiles.
        Hold - Increased resistance to pain and combat wounds.
        Focus - Increased gun accuracy and effective range.
        ")) return - if(order == "cancel") + if(!order || order == "cancel") return if(!command_aura_available) @@ -72,14 +72,14 @@ switch(order) if(COMMAND_ORDER_MOVE) mobility_aura_count++ - mobility_aura = Clamp(mobility_aura, strength, ORDER_MOVE_MAX_LEVEL) + mobility_aura = clamp(mobility_aura, strength, ORDER_MOVE_MAX_LEVEL) if(COMMAND_ORDER_HOLD) protection_aura_count++ - protection_aura = Clamp(protection_aura, strength, ORDER_HOLD_MAX_LEVEL) + protection_aura = clamp(protection_aura, strength, ORDER_HOLD_MAX_LEVEL) pain.apply_pain_reduction(protection_aura * PAIN_REDUCTION_AURA) if(COMMAND_ORDER_FOCUS) marksman_aura_count++ - marksman_aura = Clamp(marksman_aura, strength, ORDER_FOCUS_MAX_LEVEL) + marksman_aura = clamp(marksman_aura, strength, ORDER_FOCUS_MAX_LEVEL) hud_set_order() diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index b41cd8207a..c0083181fc 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -15,7 +15,7 @@ if(current_channel == " " || current_channel == ":" || current_channel == ".") i-- break - .["modes"] += department_radio_keys[":[current_channel]"] + .["modes"] += GLOB.department_radio_keys[":[current_channel]"] .["message_and_language"] = copytext(message, i+1) var/multibroadcast_cooldown = 0 for(var/obj/item/device/radio/headset/headset in list(wear_l_ear, wear_r_ear)) @@ -26,14 +26,14 @@ else headset.last_multi_broadcast = world.time if(multibroadcast_cooldown) - .["fail_with"] = "You've used the multi-broadcast system too recently, wait [round(multibroadcast_cooldown / 10)] more seconds." + .["fail_with"] = "You've used the multi-broadcast system too recently, wait [floor(multibroadcast_cooldown / 10)] more seconds." return if(length(message) >= 2 && (message[1] == "." || message[1] == ":" || message[1] == "#")) var/channel_prefix = copytext(message, 1, 3) - if(channel_prefix in department_radio_keys) + if(channel_prefix in GLOB.department_radio_keys) .["message_and_language"] = copytext(message, 3) - .["modes"] += department_radio_keys[channel_prefix] + .["modes"] += GLOB.department_radio_keys[channel_prefix] return .["message_and_language"] = message @@ -57,7 +57,7 @@ var/verb = "says" var/alt_name = "" - var/message_range = world_view_size + var/message_range = GLOB.world_view_size var/italics = 0 if(!able_to_speak) @@ -134,9 +134,10 @@ return if(RADIO_CHANNEL_INTERCOM) message_mode = null - for(var/obj/item/device/radio/intercom/I in view(1)) + FOR_DVIEW(var/obj/item/device/radio/intercom/I, 1, src, HIDE_INVISIBLE_OBSERVER) used_radios += I break // remove this if we EVER have two different intercomms with DIFFERENT frequencies IN ONE ROOM + FOR_DVIEW_END else if(message_mode != MESSAGE_MODE_LOCAL) var/earpiece = get_type_in_ears(/obj/item/device/radio) @@ -158,7 +159,7 @@ for(var/mob/living/M in hearers(message_range, src)) if(M != src) - M.show_message(SPAN_NOTICE("[src] talks into [used_radios.len ? used_radios[1] : "the radio."]"), SHOW_MESSAGE_VISIBLE) + M.show_message(SPAN_NOTICE("[src] talks into [length(used_radios) ? used_radios[1] : "the radio."]"), SHOW_MESSAGE_VISIBLE) if(ishumansynth_strict(src)) playsound(src.loc, 'sound/effects/radiostatic.ogg', 15, 1) diff --git a/code/modules/mob/living/carbon/human/species/human.dm b/code/modules/mob/living/carbon/human/species/human.dm index a50b6a9285..320aa95048 100644 --- a/code/modules/mob/living/carbon/human/species/human.dm +++ b/code/modules/mob/living/carbon/human/species/human.dm @@ -28,7 +28,7 @@ else if(chem_effect_flags & CHEM_EFFECT_ORGAN_STASIS) b_volume *= 1 else if(heart.damage >= heart.organ_status >= ORGAN_BRUISED) - b_volume *= Clamp(100 - (2 * heart.damage), 30, 100) / 100 + b_volume *= clamp(100 - (2 * heart.damage), 30, 100) / 100 //Effects of bloodloss if(b_volume <= BLOOD_VOLUME_SAFE) @@ -37,9 +37,9 @@ /// How much oxyloss will there be from the next time blood processes var/additional_oxyloss = (100 - blood_percentage) / 5 /// The limit of the oxyloss gained, ignoring oxyloss from the switch statement - var/maximum_oxyloss = Clamp((100 - blood_percentage) / 2, oxyloss, 100) + var/maximum_oxyloss = clamp((100 - blood_percentage) / 2, oxyloss, 100) if(oxyloss < maximum_oxyloss) - oxyloss += round(max(additional_oxyloss, 0)) + oxyloss += floor(max(additional_oxyloss, 0)) switch(b_volume) if(BLOOD_VOLUME_OKAY to BLOOD_VOLUME_SAFE) diff --git a/code/modules/mob/living/carbon/human/species/monkey.dm b/code/modules/mob/living/carbon/human/species/monkey.dm index 8e8d244329..2973e4b6a5 100644 --- a/code/modules/mob/living/carbon/human/species/monkey.dm +++ b/code/modules/mob/living/carbon/human/species/monkey.dm @@ -70,7 +70,7 @@ for(var/obj/O in range(1,get_turf(H))) if(O.Adjacent(H)) touchables += O - if(touchables.len) + if(length(touchables)) var/obj/touchy = pick(touchables) touchy.attack_hand(H) diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index ea398672bc..42338c2c40 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -401,7 +401,7 @@ /datum/species/proc/get_offset_overlay_image(spritesheet, mob_icon, mob_state, color, slot) // If we don't actually need to offset this, don't bother with any of the generation/caching. - if(!spritesheet && equip_adjust.len && equip_adjust[slot] && LAZYLEN(equip_adjust[slot])) + if(!spritesheet && length(equip_adjust) && equip_adjust[slot] && LAZYLEN(equip_adjust[slot])) // Check the cache for previously made icons. var/image_key = "[mob_icon]-[mob_state]-[color]" @@ -479,7 +479,7 @@ /datum/species/proc/handle_blood_splatter(mob/living/carbon/human/human, splatter_dir) var/color_override if(human.special_blood) - var/datum/reagent/D = chemical_reagents_list[human.special_blood] + var/datum/reagent/D = GLOB.chemical_reagents_list[human.special_blood] if(D) color_override = D.color diff --git a/code/modules/mob/living/carbon/human/species/synthetic.dm b/code/modules/mob/living/carbon/human/species/synthetic.dm index b418c0acb0..64e97ffa15 100644 --- a/code/modules/mob/living/carbon/human/species/synthetic.dm +++ b/code/modules/mob/living/carbon/human/species/synthetic.dm @@ -8,7 +8,7 @@ unarmed_type = /datum/unarmed_attack/punch/synthetic pain_type = /datum/pain/synthetic stamina_type = /datum/stamina/none - mob_inherent_traits = list(TRAIT_SUPER_STRONG) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_IRON_TEETH) rarity_value = 2 insulated = TRUE @@ -61,7 +61,7 @@ name = SYNTH_GEN_ONE uses_skin_color = FALSE special_body_types = FALSE - mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_IRON_TEETH) hair_color = "#000000" icobase = 'icons/mob/humans/species/r_synthetic.dmi' @@ -77,9 +77,8 @@ name_plural = "Colonial Synthetics" uses_skin_color = TRUE special_body_types = TRUE - brute_mod = 0.8 burn_mod = 0.8 - mob_inherent_traits = list(TRAIT_SUPER_STRONG) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_IRON_TEETH) pain_type = /datum/pain/synthetic/colonial rarity_value = 1.5 @@ -89,12 +88,13 @@ /datum/species/synthetic/colonial/colonial_gen_two name = SYNTH_COLONY_GEN_TWO uses_skin_color = FALSE //2nd gen uses generic human look + special_body_types = FALSE /datum/species/synthetic/colonial/colonial_gen_one name = SYNTH_COLONY_GEN_ONE uses_skin_color = FALSE special_body_types = FALSE - mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_IRON_TEETH) //sets colonial_gen_one synth's hair to black hair_color = "#000000" //sets colonial_gen_one synth's icon to WJ sprite @@ -107,7 +107,7 @@ name_plural = "Combat Synthetics" uses_skin_color = FALSE special_body_types = FALSE - mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_IRON_TEETH) brute_mod = 0.5 burn_mod = 0.5 //made for combat @@ -128,7 +128,7 @@ name = SYNTH_INFILTRATOR name_plural = "Infiltrator Synthetics" uses_skin_color = TRUE - mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INFILTRATOR_SYNTH) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INFILTRATOR_SYNTH, TRAIT_IRON_TEETH) bloodsplatter_type = /obj/effect/temp_visual/dir_setting/bloodsplatter/human diff --git a/code/modules/mob/living/carbon/human/species/working_joe/_emote.dm b/code/modules/mob/living/carbon/human/species/working_joe/_emote.dm index e66fec576f..bd5c3c360d 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/_emote.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/_emote.dm @@ -6,3 +6,12 @@ var/category = "" /// Override text for the emote to be displayed in the WJ emote panel var/override_say = "" + /// Path to hazard joe variant sound + var/haz_sound + /// What Working Joe types can use this emote + var/joe_flag = WORKING_JOE_EMOTE + +/datum/emote/living/carbon/human/synthetic/working_joe/get_sound(mob/living/user) + if(ishazardjoe(user) && haz_sound) + return haz_sound + return sound diff --git a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm index b0dd35c74b..0273fe6b90 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/_species.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/_species.dm @@ -4,12 +4,19 @@ death_message = "violently gargles fluid and seizes up, the glow in their eyes dimming..." uses_skin_color = FALSE burn_mod = 0.65 // made for hazardous environments, withstanding temperatures up to 1210 degrees - mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_EMOTE_CD_EXEMPT, TRAIT_CANNOT_EAT, TRAIT_UNSTRIPPABLE) + mob_inherent_traits = list(TRAIT_SUPER_STRONG, TRAIT_INTENT_EYES, TRAIT_EMOTE_CD_EXEMPT, TRAIT_CANNOT_EAT, TRAIT_UNSTRIPPABLE, TRAIT_IRON_TEETH) slowdown = 0.45 hair_color = "#000000" icobase = 'icons/mob/humans/species/r_synthetic.dmi' deform = 'icons/mob/humans/species/r_synthetic.dmi' + /// Used to assign which variant of emote_panel to give to user + var/emote_panel_type = /datum/joe_emote_panel + +/datum/species/synthetic/colonial/working_joe/hazard + name = SYNTH_HAZARD_JOE //TECHNICALLY the proper name would be Hazard Working Joes, but we will stick with Hazard Joe for now + name_plural = "Hazard Joes" + emote_panel_type = /datum/joe_emote_panel/hazard /datum/species/synthetic/colonial/working_joe/handle_post_spawn(mob/living/carbon/human/joe) . = ..() @@ -23,10 +30,9 @@ /// Open the WJ's emote panel, which allows them to use voicelines /datum/species/synthetic/colonial/working_joe/open_emote_panel() - var/datum/joe_emote_panel/ui = new(usr) + var/datum/joe_emote_panel/ui = new emote_panel_type(usr) ui.ui_interact(usr) - /datum/action/joe_emote_panel name = "Open Voice Synthesizer" action_icon_state = "looc_toggle" @@ -44,6 +50,7 @@ /datum/action/joe_emote_panel/action_activate() + . = ..() if(!can_use_action()) return @@ -53,30 +60,8 @@ /datum/joe_emote_panel - /// Static dict ("category" : (emotes)) of every wj emote typepath - var/static/list/wj_emotes - /// Static list of categories - var/static/list/wj_categories = list() - /// Panel allows you to spam, so a manual CD is added here COOLDOWN_DECLARE(panel_emote_cooldown) - -/datum/joe_emote_panel/New() - if(!length(wj_emotes)) - var/list/emotes_to_add = list() - for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in subtypesof(/datum/emote/living/carbon/human/synthetic/working_joe)) - if(!initial(emote.key) || !initial(emote.say_message)) - continue - - if(!(initial(emote.category) in wj_categories)) - wj_categories += initial(emote.category) - - emotes_to_add += emote - - - wj_emotes = emotes_to_add - - /datum/joe_emote_panel/proc/ui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) @@ -99,10 +84,26 @@ /datum/joe_emote_panel/ui_static_data(mob/user) var/list/data = list() - data["categories"] = wj_categories + data["categories"] = GLOB.wj_categories + data["emotes"] = list() + + for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in GLOB.wj_emotes) + data["emotes"] += list(list( + "id" = initial(emote.key), + "text" = (initial(emote.override_say) || initial(emote.say_message)), + "category" = initial(emote.category), + "path" = "[emote]", + )) + + return data + +/datum/joe_emote_panel/hazard/ui_static_data(mob/user) + var/list/data = list() + + data["categories"] = GLOB.hj_categories data["emotes"] = list() - for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in wj_emotes) + for(var/datum/emote/living/carbon/human/synthetic/working_joe/emote as anything in GLOB.hj_emotes) data["emotes"] += list(list( "id" = initial(emote.key), "text" = (initial(emote.override_say) || initial(emote.say_message)), diff --git a/code/modules/mob/living/carbon/human/species/working_joe/damage.dm b/code/modules/mob/living/carbon/human/species/working_joe/damage.dm index b4d1282dc1..4f47822854 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/damage.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/damage.dm @@ -4,26 +4,34 @@ /datum/emote/living/carbon/human/synthetic/working_joe/damage/damage key = "damage" sound = 'sound/voice/joe/damage.ogg' + haz_sound = 'sound/voice/joe/damage_haz.ogg' say_message = "Do not damage Seegson property." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/damage/that_stings key = "thatstings" sound = 'sound/voice/joe/that_stings.ogg' + haz_sound = 'sound/voice/joe/that_stings_haz.ogg' say_message = "That stings." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/damage/irresponsible key = "irresponsible" sound = 'sound/voice/joe/irresponsible.ogg' + haz_sound = 'sound/voice/joe/irresponsible_haz.ogg' say_message = "That was irresponsible." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/damage/this_is_futile key = "thisisfutile" sound = 'sound/voice/joe/this_is_futile.ogg' + haz_sound = 'sound/voice/joe/this_is_futile_haz.ogg' say_message = "This is futile." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/damage/really key = "really" diff --git a/code/modules/mob/living/carbon/human/species/working_joe/farewell.dm b/code/modules/mob/living/carbon/human/species/working_joe/farewell.dm index dce6c6c0d5..77622c4f14 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/farewell.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/farewell.dm @@ -28,8 +28,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/farewell/day_never_done key = "dayneverdone" sound = 'sound/voice/joe/day_never_done.ogg' + haz_sound = 'sound/voice/joe/day_never_done_haz.ogg' say_message = "A synthetic's day is never done." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/farewell/returning_to_tasks key = "returningtotasks" @@ -40,20 +42,26 @@ /datum/emote/living/carbon/human/synthetic/working_joe/farewell/back_to_work key = "backtowork" sound = 'sound/voice/joe/back_to_work.ogg' + haz_sound = 'sound/voice/joe/back_to_work_haz.ogg' say_message = "Back to work." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/farewell/other_concerns key = "otherconcerns" sound = 'sound/voice/joe/other_concerns.ogg' + haz_sound = 'sound/voice/joe/other_concerns_haz.ogg' say_message = "I have other concerns." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/farewell/more_pressing_matters key = "morepressingmatters" sound = 'sound/voice/joe/more_pressing_matters.ogg' + haz_sound = 'sound/voice/joe/more_pressing_matters_haz.ogg' say_message = "There are more pressing matters." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/farewell/gone_inconsiderate key = "gone" diff --git a/code/modules/mob/living/carbon/human/species/working_joe/fire.dm b/code/modules/mob/living/carbon/human/species/working_joe/fire.dm index c74a3427ff..0f8ee84e2a 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/fire.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/fire.dm @@ -10,17 +10,23 @@ /datum/emote/living/carbon/human/synthetic/working_joe/fire/temperatures key = "temperatures" sound = 'sound/voice/joe/temperatures.ogg' + haz_sound = 'sound/voice/joe/temperatures_haz.ogg' say_message = "I am built to withstand temperatures of up to 1210 degrees." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/fire/fire key = "fire" sound = 'sound/voice/joe/fire.ogg' + haz_sound = 'sound/voice/joe/fire_haz.ogg' say_message = "Only wild animals fear fire." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/fire/unprotected_flames key = "unprotectedflames" sound = 'sound/voice/joe/unprotected_flames.ogg' + haz_sound = 'sound/voice/joe/unprotected_flames_haz.ogg' say_message = "Unprotected flames are extremely dangerous and entirely unadvisable." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE diff --git a/code/modules/mob/living/carbon/human/species/working_joe/greeting.dm b/code/modules/mob/living/carbon/human/species/working_joe/greeting.dm index eec20af56f..0b0efb57c5 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/greeting.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/greeting.dm @@ -10,8 +10,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/greeting/good_day key = "goodday" sound = 'sound/voice/joe/good_day.ogg' + haz_sound = 'sound/voice/joe/good_day_haz.ogg' say_message = "Good day." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/greeting/how_are_you key = "howareyou" @@ -22,8 +24,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/greeting/how_can_i_help key = "howcanihelp" sound = 'sound/voice/joe/how_can_i_help.ogg' + haz_sound = 'sound/voice/joe/how_can_i_help_haz.ogg' say_message = "How can I help you?" emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/greeting/need_to_know key = "needtoknow" diff --git a/code/modules/mob/living/carbon/human/species/working_joe/notice.dm b/code/modules/mob/living/carbon/human/species/working_joe/notice.dm index 017424dbc0..9ae76abba7 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/notice.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/notice.dm @@ -4,14 +4,18 @@ /datum/emote/living/carbon/human/synthetic/working_joe/notice/report key = "report" sound = 'sound/voice/joe/report.ogg' + haz_sound = 'sound/voice/joe/report_haz.ogg' say_message = "Logging report to APOLLO." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/notice/detailed_report key = "detailedreport" sound = 'sound/voice/joe/detailed_report.ogg' + haz_sound = 'sound/voice/joe/detailed_report_haz.ogg' say_message = "APOLLO will require a detailed report." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/notice/be_careful key = "careful" @@ -22,8 +26,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/notice/firearm key = "firearm" sound = 'sound/voice/joe/firearm.ogg' + haz_sound = 'sound/voice/joe/firearm_haz.ogg' say_message = "Firearms can cause serious injury. Let me assist you." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/notice/investigate_weapon key = "weapon" @@ -37,20 +43,40 @@ say_message = "A firearm. Most concerning." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE +/datum/emote/living/carbon/human/synthetic/working_joe/notice/invest_disturbance + key = "investigatedisturbance" + haz_sound = 'sound/voice/joe/investigating_disturbance_haz.ogg' + say_message = "Investigating disturbance." + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = HAZARD_JOE_EMOTE + +/datum/emote/living/carbon/human/synthetic/working_joe/notice/unexplained_disturbance + key = "disturbance" + haz_sound = 'sound/voice/joe/disturbance_haz.ogg' + say_message = "Unexplained disturbances are most troubling." + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = HAZARD_JOE_EMOTE + /datum/emote/living/carbon/human/synthetic/working_joe/notice/species key = "species" sound = 'sound/voice/joe/species.ogg' + haz_sound = 'sound/voice/joe/species_haz.ogg' say_message = "Unidentified species." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/notice/beyond_repair key = "beyondrepair" sound = 'sound/voice/joe/beyond_repair.ogg' + haz_sound = 'sound/voice/joe/beyond_repair_haz.ogg' say_message = "Hmm, far beyond repair." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/notice/apollo_behalf key = "apollobehalf" sound = 'sound/voice/joe/apollo_behalf.ogg' + haz_sound = 'sound/voice/joe/apollo_behalf_haz.ogg' say_message = "I will inform APOLLO on your behalf." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE diff --git a/code/modules/mob/living/carbon/human/species/working_joe/question.dm b/code/modules/mob/living/carbon/human/species/working_joe/question.dm index d4805e3622..eea60b8ad2 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/question.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/question.dm @@ -10,17 +10,23 @@ /datum/emote/living/carbon/human/synthetic/working_joe/question/misbehaving key = "misbehaving" sound = 'sound/voice/joe/misbehaving.ogg' + haz_sound = 'sound/voice/joe/misbehaving_haz.ogg' say_message = "Have you been misbehaving?" emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/question/what_happened_to_you key = "whathappenedtoyou" sound = 'sound/voice/joe/what_happened_to_you.ogg' + haz_sound = 'sound/voice/joe/what_happened_to_you_haz.ogg' say_message = "What happened to you?" emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/question/what_is_this key = "whatisthis" sound = 'sound/voice/joe/what_is_this.ogg' + haz_sound = 'sound/voice/joe/what_is_this_haz.ogg' say_message = "What is this?" emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE diff --git a/code/modules/mob/living/carbon/human/species/working_joe/quip.dm b/code/modules/mob/living/carbon/human/species/working_joe/quip.dm index 33b4bed8ea..46290ae492 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/quip.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/quip.dm @@ -1,19 +1,23 @@ /datum/emote/living/carbon/human/synthetic/working_joe/quip category = JOE_EMOTE_CATEGORY_QUIP -/datum/emote/living/carbon/human/synthetic/working_joe/quip/alwaysknow +/datum/emote/living/carbon/human/synthetic/working_joe/quip/alwaysknow // THE FUNNY LINE key = "alwaysknow" key_third_person = "workingjoe" sound = 'sound/voice/joe/alwaysknow.ogg' + haz_sound = 'sound/voice/joe/alwaysknow_haz.ogg' say_message = "You always know a Working Joe." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/quip/awful_mess key = "awful" key_third_person = "mess" sound = 'sound/voice/joe/awful.ogg' + haz_sound = 'sound/voice/joe/awful_haz.ogg' say_message = "Tut, tut. What an awful mess." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/quip/inexpensive key = "inexpensive" @@ -45,6 +49,13 @@ say_message = "With Seegson, there is someone behind you, helping you every single step of the way." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE +/datum/emote/living/carbon/human/synthetic/working_joe/quip/seegson_tomorrow + key = "seegsontomorrow" + haz_sound = 'sound/voice/joe/tomorrow_together_haz.ogg' + say_message = "Seegson; tomorrow, together." + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = HAZARD_JOE_EMOTE + /datum/emote/living/carbon/human/synthetic/working_joe/quip/seegson_standards key = "seegsonstandards" sound = 'sound/voice/joe/seegson_standards.ogg' diff --git a/code/modules/mob/living/carbon/human/species/working_joe/restricted_area.dm b/code/modules/mob/living/carbon/human/species/working_joe/restricted_area.dm index 284befe268..b30092dc24 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/restricted_area.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/restricted_area.dm @@ -4,8 +4,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/presence_logged key = "presencelogged" sound = 'sound/voice/joe/presence_logged.ogg' + haz_sound = 'sound/voice/joe/presence_logged_haz.ogg' say_message = "Your presence has been logged." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/trespassing key = "trespassing" @@ -16,8 +18,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/not_allowed_there key = "notallowedthere" sound = 'sound/voice/joe/not_allowed_there.ogg' + haz_sound = 'sound/voice/joe/not_allowed_there_haz.ogg' say_message = "You're not allowed in there." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/shouldnt_be_here key = "shouldntbehere" @@ -28,8 +32,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/really_shouldnt_be_here key = "reallyshouldntbehere" sound = 'sound/voice/joe/really_shouldnt_be_here.ogg' + haz_sound = 'sound/voice/joe/really_shouldnt_be_here_haz.ogg' say_message = "You really shouldn't be here." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/interloper key = "interloper" @@ -37,6 +43,13 @@ say_message = "On top of innumerable duties, now I have a interloper." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE +/datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/area_restricted + key = "arearestrict" + haz_sound = 'sound/voice/joe/area_restricted_haz.ogg' + say_message = "This area is restricted." + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = HAZARD_JOE_EMOTE + /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/protected_area_compromised key = "areacompromised" sound = 'sound/voice/joe/protected_area_compromised.ogg' @@ -46,11 +59,15 @@ /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/breach key = "breach" sound = 'sound/voice/joe/breach.ogg' + haz_sound = 'sound/voice/joe/breach_haz.ogg' say_message = "Hazard Containment breach logged." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/restricted_area/come_out_vent key = "comeoutvent" sound = 'sound/voice/joe/come_out_vent.ogg' + haz_sound = 'sound/voice/joe/come_out_vent_haz.ogg' say_message = "Come out of the vent system, please." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE diff --git a/code/modules/mob/living/carbon/human/species/working_joe/task_update.dm b/code/modules/mob/living/carbon/human/species/working_joe/task_update.dm index 88051db999..1bcfce62c6 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/task_update.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/task_update.dm @@ -4,8 +4,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/task_update/could_require_attention key = "couldrequireattention" sound = 'sound/voice/joe/could_require_attention.ogg' + haz_sound = 'sound/voice/joe/could_require_attention_haz.ogg' say_message = "This could require my attention." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/task_update/let_me_help key = "letmehelp" @@ -22,8 +24,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/task_update/follow_me_please key = "followmeplease" sound = 'sound/voice/joe/follow_me_please.ogg' + haz_sound = 'sound/voice/joe/follow_me_please_haz.ogg' say_message = "Follow me please." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/task_update/come_with_me key = "comewithme" @@ -34,8 +38,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/task_update/with_you_shortly key = "withyoushortly" sound = 'sound/voice/joe/with_you_shortly.ogg' + haz_sound = 'sound/voice/joe/with_you_shortly_haz.ogg' say_message = "I will be with you shortly." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/task_update/take_a_seat key = "takeaseat" @@ -52,5 +58,7 @@ /datum/emote/living/carbon/human/synthetic/working_joe/task_update/ticket_remove key = "ticketremoved" sound = 'sound/voice/joe/support_ticket_removed.ogg' + haz_sound = 'sound/voice/joe/support_ticket_removed_haz.ogg' say_message = "Service support ticket removed from queue." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE diff --git a/code/modules/mob/living/carbon/human/species/working_joe/warning.dm b/code/modules/mob/living/carbon/human/species/working_joe/warning.dm index 1513c3360d..64461715a0 100644 --- a/code/modules/mob/living/carbon/human/species/working_joe/warning.dm +++ b/code/modules/mob/living/carbon/human/species/working_joe/warning.dm @@ -4,8 +4,10 @@ /datum/emote/living/carbon/human/synthetic/working_joe/warning/not_what_i_think key = "notwhatithink" sound = 'sound/voice/joe/not_what_i_think.ogg' + haz_sound = 'sound/voice/joe/not_what_i_think_haz.ogg' say_message = "I hope that's not what I think it is." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/dont_do_that key = "dontdothat" @@ -22,13 +24,15 @@ /datum/emote/living/carbon/human/synthetic/working_joe/warning/running_accidents key = "runningaccidents" sound = 'sound/voice/joe/running_accidents.ogg' + haz_sound = 'sound/voice/joe/running_accidents_haz.ogg' say_message = "Running causes accidents." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/hurt_yourself key = "hurtyourself" sound = 'sound/voice/joe/hurt_yourself.ogg' - say_message = "Your going to hurt yourself." + say_message = "You're going to hurt yourself." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE /datum/emote/living/carbon/human/synthetic/working_joe/warning/someone_hurt @@ -40,14 +44,18 @@ /datum/emote/living/carbon/human/synthetic/working_joe/warning/safety_breach key = "safetybreach" sound = 'sound/voice/joe/safety_breach.ogg' + haz_sound = 'sound/voice/joe/safety_breach_haz.ogg' say_message = "This is a breach of multiple safety directives." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/safety key = "safety" sound = 'sound/voice/joe/safety.ogg' + haz_sound = 'sound/voice/joe/safety_haz.ogg' say_message = "You and I are going to have a talk about safety." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/safety_tolerated key = "nottolerated" @@ -64,26 +72,34 @@ /datum/emote/living/carbon/human/synthetic/working_joe/warning/hysterical key = "hysterical" sound = 'sound/voice/joe/hysterical.ogg' + haz_sound = 'sound/voice/joe/hysterical_haz.ogg' say_message = "You are becoming hysterical." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/health_risks key = "healthrisks" sound = 'sound/voice/joe/health_risks.ogg' + haz_sound = 'sound/voice/joe/health_risks_haz.ogg' say_message = "These items carry notable health risks." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/dangerous_items key = "dangerousitems" sound = 'sound/voice/joe/dangerous_items.ogg' + haz_sound = 'sound/voice/joe/dangerous_items_haz.ogg' say_message = "You are carrying some very dangerous items." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/patience key = "patience" sound = 'sound/voice/joe/patience.ogg' + haz_sound = 'sound/voice/joe/patience_haz.ogg' say_message = "You are starting to test my patience." emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + joe_flag = WORKING_JOE_EMOTE|HAZARD_JOE_EMOTE /datum/emote/living/carbon/human/synthetic/working_joe/warning/calm_down key = "calmdown" diff --git a/code/modules/mob/living/carbon/human/species/yautja/_species.dm b/code/modules/mob/living/carbon/human/species/yautja/_species.dm index ec82a58dff..042c9917af 100644 --- a/code/modules/mob/living/carbon/human/species/yautja/_species.dm +++ b/code/modules/mob/living/carbon/human/species/yautja/_species.dm @@ -14,6 +14,7 @@ TRAIT_FOREIGN_BIO, TRAIT_DEXTROUS, TRAIT_EMOTE_CD_EXEMPT, + TRAIT_IRON_TEETH, ) unarmed_type = /datum/unarmed_attack/punch/strong secondary_unarmed_type = /datum/unarmed_attack/bite/strong @@ -53,8 +54,8 @@ /mob/living/carbon/human/proc/mark_panel, ) - knock_down_reduction = 4 - stun_reduction = 4 + knock_down_reduction = 1.5 + stun_reduction = 1.5 weed_slowdown_mult = 0 // no slowdown! icobase = 'icons/mob/humans/species/r_predator.dmi' @@ -161,7 +162,7 @@ /datum/species/yautja/post_species_loss(mob/living/carbon/human/H) ..() - var/datum/mob_hud/medical/advanced/A = huds[MOB_HUD_MEDICAL_ADVANCED] + var/datum/mob_hud/medical/advanced/A = GLOB.huds[MOB_HUD_MEDICAL_ADVANCED] A.add_to_hud(H) H.blood_type = pick("A+","A-","B+","B-","O-","O+","AB+","AB-") H.h_style = "Bald" @@ -211,7 +212,10 @@ limb.time_to_knit = 600 // 1 minute to self heal bone break, time is in tenths of a second hunter.set_languages(list(LANGUAGE_YAUTJA)) + give_action(hunter, /datum/action/predator_action/claim_equipment) give_action(hunter, /datum/action/yautja_emote_panel) + give_action(hunter, /datum/action/predator_action/mark_for_hunt) + give_action(hunter, /datum/action/predator_action/mark_panel) return ..() /datum/species/yautja/get_hairstyle(style) @@ -228,100 +232,3 @@ /datum/species/yautja/open_emote_panel() var/datum/yautja_emote_panel/ui = new(usr) ui.ui_interact(usr) - -/datum/action/yautja_emote_panel - name = "Open Emote Panel" - action_icon_state = "looc_toggle" - -/datum/action/yautja_emote_panel/can_use_action() - . = ..() - if(!.) - return FALSE - - if(!isyautja(owner)) - return FALSE - - return TRUE - -/datum/action/yautja_emote_panel/action_activate() - if(!can_use_action()) - return - - var/mob/living/carbon/human/human_owner = owner - var/datum/species/yautja/yautja_species = human_owner.species - yautja_species.open_emote_panel() - -/datum/yautja_emote_panel - /// Static dict ("category" : (emotes)) of every yautja emote typepath - var/static/list/yautja_emotes - /// Static list of categories - var/static/list/yautja_categories = list() - /// Panel allows you to spam, so a manual CD is added here - COOLDOWN_DECLARE(panel_emote_cooldown) - -/datum/yautja_emote_panel/New() - if(!length(yautja_emotes)) - var/list/emotes_to_add = list() - for(var/datum/emote/living/carbon/human/yautja/emote as anything in subtypesof(/datum/emote/living/carbon/human/yautja)) - if(!initial(emote.key) || initial(emote.no_panel)) - continue - - if(!(initial(emote.category) in yautja_categories)) - yautja_categories += initial(emote.category) - emotes_to_add += emote - yautja_emotes = emotes_to_add - -/datum/yautja_emote_panel/proc/ui_interact(mob/user, datum/tgui/ui) - ui = SStgui.try_update_ui(user, src, ui) - if(!ui) - ui = new(user, src, "YautjaEmotes") - ui.open() - -/datum/yautja_emote_panel/ui_data(mob/user) - var/list/data = list() - - data["on_cooldown"] = !COOLDOWN_FINISHED(src, panel_emote_cooldown) - - return data - -/datum/yautja_emote_panel/ui_state(mob/user) - return GLOB.conscious_state - -/datum/yautja_emote_panel/ui_static_data(mob/user) - var/list/data = list() - - data["categories"] = yautja_categories - data["emotes"] = list() - - for(var/datum/emote/living/carbon/human/yautja/emote as anything in yautja_emotes) - data["emotes"] += list(list( - "id" = initial(emote.key), - "text" = (initial(emote.override_say) || initial(emote.say_message) || initial(emote.key)), - "category" = initial(emote.category), - "path" = "[emote]", - )) - - return data - -/datum/yautja_emote_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) - . = ..() - if(.) - return - - switch(action) - if("emote") - var/datum/emote/living/carbon/human/yautja/path - if(!params["emotePath"]) - return FALSE - - path = text2path(params["emotePath"]) - - if(!path || !COOLDOWN_FINISHED(src, panel_emote_cooldown)) - return - - if(!(path in subtypesof(/datum/emote/living/carbon/human/yautja))) - return FALSE - - COOLDOWN_START(src, panel_emote_cooldown, 2.5 SECONDS) - usr.emote(initial(path.key)) - return TRUE diff --git a/code/modules/mob/living/carbon/human/species/yautja/yautja_sound.dm b/code/modules/mob/living/carbon/human/species/yautja/yautja_sound.dm index a6a9a659f2..afd138fec2 100644 --- a/code/modules/mob/living/carbon/human/species/yautja/yautja_sound.dm +++ b/code/modules/mob/living/carbon/human/species/yautja/yautja_sound.dm @@ -65,6 +65,6 @@ return for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(user), 18) - user) - var/relative_dir = get_dir(current_mob, user) + var/relative_dir = Get_Compass_Dir(current_mob, user) var/final_dir = dir2text(relative_dir) to_chat(current_mob, SPAN_HIGHDANGER("You hear a loud roar coming from [final_dir ? "the [final_dir]" : "nearby"]!")) diff --git a/code/modules/mob/living/carbon/human/species/zombie.dm b/code/modules/mob/living/carbon/human/species/zombie.dm index 35b6d4e43e..21a220e48e 100644 --- a/code/modules/mob/living/carbon/human/species/zombie.dm +++ b/code/modules/mob/living/carbon/human/species/zombie.dm @@ -59,21 +59,22 @@ zombie.equip_to_slot_or_del(new /obj/item/weapon/zombie_claws(zombie), WEAR_L_HAND, TRUE) zombie.equip_to_slot_or_del(new /obj/item/clothing/glasses/zombie_eyes(zombie), WEAR_EYES, TRUE) - var/datum/disease/black_goo/D = locate() in zombie.viruses - if(!D) - D = zombie.AddDisease(new /datum/disease/black_goo()) - D.stage = 5 + var/datum/disease/black_goo/zombie_infection = locate() in zombie.viruses + if(!zombie_infection) + zombie_infection = zombie.AddDisease(new /datum/disease/black_goo()) + zombie_infection.stage = 4 - var/datum/mob_hud/Hu = huds[MOB_HUD_MEDICAL_OBSERVER] + var/datum/mob_hud/Hu = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] Hu.add_hud_to(zombie, zombie) return ..() + /datum/species/zombie/post_species_loss(mob/living/carbon/human/zombie) ..() remove_from_revive(zombie) - var/datum/mob_hud/Hu = huds[MOB_HUD_MEDICAL_OBSERVER] + var/datum/mob_hud/Hu = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] Hu.remove_hud_from(zombie, zombie) @@ -126,7 +127,7 @@ /datum/species/zombie/proc/handle_alert_ghost(mob/living/carbon/human/zombie) var/mob/dead/observer/ghost = zombie.get_ghost() if(ghost?.client) - playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg') + playsound_client(ghost.client, 'sound/effects/revive_notify.ogg') to_chat(ghost, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Your body has risen! (Verbs -> Ghost -> Re-enter corpse, or click here!)"))) /datum/species/zombie/proc/remove_from_revive(mob/living/carbon/human/zombie) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 990f53e639..6b27397802 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -4,8 +4,8 @@ TODO: Proper documentation icon_key is [species.race_key][g][husk][fat][hulk][skeleton][ethnicity] */ -var/global/list/human_icon_cache = list() -var/global/list/tail_icon_cache = list() +GLOBAL_LIST_EMPTY(human_icon_cache) +GLOBAL_LIST_EMPTY(tail_icon_cache) /proc/overlay_image(icon, icon_state, color, flags) var/image/ret = image(icon,icon_state) @@ -19,7 +19,7 @@ var/global/list/tail_icon_cache = list() Global associative list for caching uniform masks. Each index is just 0 or 1 for not removed and removed (as in previously delimbed). */ -var/global/list/uniform_mask_cache = list() +GLOBAL_LIST_EMPTY(uniform_mask_cache) /////////////////////// //UPDATE_ICONS SYSTEM// @@ -196,7 +196,7 @@ There are several things that need to be remembered: if(facial_hair_style && facial_hair_style.species_allowed && (species.name in facial_hair_style.species_allowed)) var/image/facial_s = new/image("icon" = facial_hair_style.icon, "icon_state" = "[facial_hair_style.icon_state]_s") facial_s.layer = -FACIAL_LAYER - if(facial_hair_style.do_colouration) + if(facial_hair_style.do_coloration) facial_s.color = list(null, null, null, null, rgb(r_facial, g_facial, b_facial)) overlays_standing[FACIAL_LAYER] = facial_s apply_overlay(FACIAL_LAYER) @@ -206,7 +206,7 @@ There are several things that need to be remembered: if(hair_style && (species.name in hair_style.species_allowed)) var/image/hair_s = new/image("icon" = hair_style.icon, "icon_state" = "[hair_style.icon_state]_s") hair_s.layer = -HAIR_LAYER - if(hair_style.do_colouration) + if(hair_style.do_coloration) hair_s.color = list(null, null, null, null, rgb(r_hair, g_hair, b_hair)) if(grad_style) @@ -345,8 +345,11 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate, client.add_to_screen(wear_id) wear_id.screen_loc = hud_used.ui_datum.hud_slot_offset(wear_id, hud_used.ui_datum.ui_id) - if(!wear_id.pinned_on_uniform || (w_uniform && w_uniform.displays_id && !(w_uniform.flags_jumpsuit & UNIFORM_JACKET_REMOVED))) - var/image/id_overlay = wear_id.get_mob_overlay(src, WEAR_ID) + var/obj/item/card/id/card = get_idcard() + if(!card) + return + if(!card.pinned_on_uniform || (w_uniform && w_uniform.displays_id && !(w_uniform.flags_jumpsuit & UNIFORM_JACKET_REMOVED))) + var/image/id_overlay = card.get_mob_overlay(src, WEAR_ID) id_overlay.layer = -ID_LAYER overlays_standing[ID_LAYER] = id_overlay apply_overlay(ID_LAYER) @@ -473,7 +476,7 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate, apply_overlay(HEAD_SQUAD_LAYER) var/num_helmet_overlays = 0 - for(var/i in 1 to marine_helmet.helmet_overlays.len) + for(var/i in 1 to length(marine_helmet.helmet_overlays)) // Add small numbers to the head garb layer so we don't have a layer conflict // the i-1 bit is to make it 0-based, not 1-based like BYOND wants overlays_standing[HEAD_GARB_LAYER + (i-1)] = image('icons/mob/humans/onmob/helmet_garb.dmi', src, marine_helmet.helmet_overlays[i]) @@ -534,7 +537,7 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate, overlays_standing[SUIT_SQUAD_LAYER] = squad_overlay apply_overlay(SUIT_SQUAD_LAYER) - if(marine_armor.armor_overlays.len) + if(length(marine_armor.armor_overlays)) var/image/K var/image/IMG for(var/i in marine_armor.armor_overlays) @@ -666,11 +669,11 @@ Applied by gun suicide and high impact bullet executions, removed by rejuvenate, /mob/living/carbon/human/proc/get_tail_icon() var/icon_key = "[species.race_key][r_skin][g_skin][b_skin][r_hair][g_hair][b_hair]" - var/icon/tail_icon = tail_icon_cache[icon_key] + var/icon/tail_icon = GLOB.tail_icon_cache[icon_key] if(!tail_icon) //generate a new one tail_icon = icon('icons/effects/species.dmi', "[species.get_tail(src)]") - tail_icon_cache[icon_key] = tail_icon + GLOB.tail_icon_cache[icon_key] = tail_icon return tail_icon diff --git a/code/modules/mob/living/carbon/human/whisper.dm b/code/modules/mob/living/carbon/human/whisper.dm index 3fba527fb0..cd4a08aefe 100644 --- a/code/modules/mob/living/carbon/human/whisper.dm +++ b/code/modules/mob/living/carbon/human/whisper.dm @@ -79,10 +79,11 @@ listening += C //pass on the message to objects that can hear us. - for (var/obj/O in view(message_range, src)) + FOR_DVIEW(var/obj/O, message_range, src, HIDE_INVISIBLE_OBSERVER) spawn (0) if (O) O.hear_talk(src, message) //O.hear_talk(src, message, verb, speaking) + FOR_DVIEW_END var/list/eavesdropping = hearers(eavesdropping_range, src) eavesdropping -= src @@ -104,7 +105,7 @@ M << speech_bubble M.hear_say(message, verb, speaking, alt_name, italics, src) - if (eavesdropping.len) + if (length(eavesdropping)) var/new_message = stars(message) //hopefully passing the message twice through stars() won't hurt... I guess if you already don't understand the language, when they speak it too quietly to hear normally you would be able to catch even less. for(var/mob/M in eavesdropping) if(not_dead_speaker) @@ -114,13 +115,13 @@ spawn(30) if(client) client.images -= speech_bubble if(not_dead_speaker) - log_say("[name != "Unknown" ? name : "([real_name])"] \[Whisper\]: [message] (CKEY: [key]) (JOB: [job])") + log_say("[name != "Unknown" ? name : "([real_name])"] \[Whisper\]: [message] (CKEY: [key]) (JOB: [job]) (AREA: [get_area_name(loc)])") for(var/mob/M in listening) if(M.client) M.client.images -= speech_bubble for(var/mob/M in eavesdropping) if(M.client) M.client.images -= speech_bubble - if (watching.len) + if (length(watching)) var/rendered = "[src.name] whispers something." for (var/mob/M in watching) M.show_message(rendered, SHOW_MESSAGE_AUDIBLE) diff --git a/code/modules/mob/living/carbon/xenomorph/Abilities.dm b/code/modules/mob/living/carbon/xenomorph/Abilities.dm index 2b254fdba9..35b532136f 100644 --- a/code/modules/mob/living/carbon/xenomorph/Abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/Abilities.dm @@ -21,32 +21,32 @@ return if(X.action_busy) - to_chat(X, SPAN_XENOWARNING("You should finish up what you're doing before digging.")) + to_chat(X, SPAN_XENOWARNING("We should finish up what we're doing before digging.")) return var/turf/T = X.loc if(!istype(T)) //logic - to_chat(X, SPAN_XENOWARNING("You can't do that from there.")) - return - - if(SSticker?.mode?.hardcore) - to_chat(X, SPAN_XENOWARNING("A certain presence is preventing you from digging tunnels here.")) + to_chat(X, SPAN_XENOWARNING("We can't do that from there.")) return if(!T.can_dig_xeno_tunnel() || !is_ground_level(T.z)) - to_chat(X, SPAN_XENOWARNING("You scrape around, but you can't seem to dig through that kind of floor.")) + to_chat(X, SPAN_XENOWARNING("We scrape around, but we can't seem to dig through that kind of floor.")) return if(locate(/obj/structure/tunnel) in X.loc) to_chat(X, SPAN_XENOWARNING("There already is a tunnel here.")) return + if(locate(/obj/structure/machinery/sentry_holder/landing_zone) in X.loc) + to_chat(X, SPAN_XENOWARNING("We can't dig a tunnel with this object in the way.")) + return + if(X.tunnel_delay) - to_chat(X, SPAN_XENOWARNING("You are not ready to dig a tunnel again.")) + to_chat(X, SPAN_XENOWARNING("We are not ready to dig a tunnel again.")) return if(X.get_active_hand()) - to_chat(X, SPAN_XENOWARNING("You need an empty claw for this!")) + to_chat(X, SPAN_XENOWARNING("We need an empty claw for this!")) return if(!X.check_plasma(plasma_cost)) @@ -62,19 +62,20 @@ return X.visible_message(SPAN_XENONOTICE("[X] begins digging out a tunnel entrance."), \ - SPAN_XENONOTICE("You begin digging out a tunnel entrance."), null, 5) + SPAN_XENONOTICE("We begin digging out a tunnel entrance."), null, 5) if(!do_after(X, 100, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - to_chat(X, SPAN_WARNING("Your tunnel caves in as you stop digging it.")) + to_chat(X, SPAN_WARNING("Our tunnel caves in as we stop digging it.")) return if(!X.check_plasma(plasma_cost)) return X.visible_message(SPAN_XENONOTICE("\The [X] digs out a tunnel entrance."), \ - SPAN_XENONOTICE("You dig out an entrance to the tunnel network."), null, 5) + SPAN_XENONOTICE("We dig out an entrance to the tunnel network."), null, 5) var/obj/structure/tunnel/tunnelobj = new(T, X.hivenumber) X.tunnel_delay = 1 addtimer(CALLBACK(src, PROC_REF(cooldown_end)), 4 MINUTES) var/msg = strip_html(input("Add a description to the tunnel:", "Tunnel Description") as text|null) + msg = replace_non_alphanumeric_plus(msg) var/description if(msg) description = msg @@ -90,14 +91,14 @@ to_chat(target_for_message, SPAN_XENOANNOUNCE("Hive: A new tunnel[description ? " ([description])" : ""] has been created by [X] (watch) at [get_area_name(tunnelobj)].")) X.use_plasma(plasma_cost) - to_chat(X, SPAN_NOTICE("You will be ready to dig a new tunnel in 4 minutes.")) + to_chat(X, SPAN_NOTICE("We will be ready to dig a new tunnel in 4 minutes.")) playsound(X.loc, 'sound/weapons/pierce.ogg', 25, 1) return ..() /datum/action/xeno_action/onclick/build_tunnel/proc/cooldown_end() var/mob/living/carbon/xenomorph/X = owner - to_chat(X, SPAN_NOTICE("You are ready to dig a tunnel again.")) + to_chat(X, SPAN_NOTICE("We are ready to dig a tunnel again.")) X.tunnel_delay = 0 //Queen Abilities @@ -143,16 +144,18 @@ xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] emits an ear-splitting guttural roar!")) xeno.create_shriekwave(14) //Adds the visual effect. Wom wom wom, 14 shriekwaves - for(var/mob/mob in view()) + FOR_DVIEW(var/mob/mob, world.view, owner, HIDE_INVISIBLE_OBSERVER) if(mob && mob.client) if(isxeno(mob)) shake_camera(mob, 10, 1) else shake_camera(mob, 30, 1) //50 deciseconds, SORRY 5 seconds was way too long. 3 seconds now + FOR_DVIEW_END var/list/mobs_in_view = list() - for(var/mob/living/carbon/M in oview(7, xeno)) + FOR_DOVIEW(var/mob/living/carbon/M, 7, xeno, HIDE_INVISIBLE_OBSERVER) mobs_in_view += M + FOR_DOVIEW_END for(var/mob/living/carbon/M in orange(10, xeno)) if(SEND_SIGNAL(M, COMSIG_MOB_SCREECH_ACT, xeno) & COMPONENT_SCREECH_ACT_CANCEL) continue @@ -186,64 +189,96 @@ plasma_cost = 0 /datum/action/xeno_action/onclick/psychic_whisper/use_ability(atom/A) - var/mob/living/carbon/xenomorph/X = owner - if(X.client.prefs.muted & MUTE_IC) - to_chat(X, SPAN_DANGER("You cannot whisper (muted).")) + var/mob/living/carbon/xenomorph/xeno_player = owner + if(xeno_player.client.prefs.muted & MUTE_IC) + to_chat(xeno_player, SPAN_DANGER("You cannot whisper (muted).")) return - if(!X.check_state(TRUE)) + if(!xeno_player.check_state(TRUE)) return var/list/target_list = list() - for(var/mob/living/possible_target in view(7, X)) - if(possible_target == X || !possible_target.client) continue + for(var/mob/living/carbon/possible_target in view(7, xeno_player)) + if(possible_target == xeno_player || !possible_target.client) continue target_list += possible_target - var/mob/living/M = tgui_input_list(usr, "Target", "Send a Psychic Whisper to whom?", target_list, theme="hive_status") - if(!M) return + var/mob/living/carbon/target_mob = tgui_input_list(usr, "Target", "Send a Psychic Whisper to whom?", target_list, theme="hive_status") + if(!target_mob) return - if(!X.check_state(TRUE)) + if(!xeno_player.check_state(TRUE)) return - var/msg = strip_html(input("Message:", "Psychic Whisper") as text|null) - if(msg) - log_say("PsychicWhisper: [key_name(X)]->[M.key] : [msg]") - if(!istype(M, /mob/living/carbon/xenomorph)) - to_chat(M, SPAN_XENOQUEEN("You hear a strange, alien voice in your head. \"[msg]\"")) + var/whisper = strip_html(input("Message:", "Psychic Whisper") as text|null) + if(whisper) + log_say("PsychicWhisper: [key_name(xeno_player)]->[target_mob.key] : [whisper] (AREA: [get_area_name(target_mob)])") + if(!istype(target_mob, /mob/living/carbon/xenomorph)) + to_chat(target_mob, SPAN_XENOQUEEN("You hear a strange, alien voice in your head. \"[SPAN_PSYTALK(whisper)]\"")) else - to_chat(M, SPAN_XENOQUEEN("You hear the voice of [X] resonate in your head. \"[msg]\"")) - to_chat(X, SPAN_XENONOTICE("You said: \"[msg]\" to [M]")) + to_chat(target_mob, SPAN_XENOQUEEN("You hear the voice of [xeno_player] resonate in your head. \"[SPAN_PSYTALK(whisper)]\"")) + to_chat(xeno_player, SPAN_XENONOTICE("You said: \"[whisper]\" to [target_mob]")) + + for(var/mob/dead/observer/ghost as anything in GLOB.observer_list) + if(!ghost.client || isnewplayer(ghost)) + continue + if(ghost.client.prefs.toggles_chat & CHAT_GHOSTHIVEMIND) + var/rendered_message + var/xeno_track = "(F)" + var/target_track = "(F)" + rendered_message = SPAN_XENOLEADER("PsychicWhisper: [xeno_player.real_name][xeno_track] to [target_mob.real_name][target_track], '[SPAN_PSYTALK(whisper)]'") + ghost.show_message(rendered_message, SHOW_MESSAGE_AUDIBLE) + return ..() +/datum/action/xeno_action/onclick/psychic_whisper/can_use_action() + var/mob/living/carbon/xenomorph/xeno = owner + if(xeno && !xeno.is_mob_incapacitated()) + return TRUE + return FALSE + /datum/action/xeno_action/onclick/psychic_radiance name = "Psychic Radiance" action_icon_state = "psychic_radiance" plasma_cost = 100 /datum/action/xeno_action/onclick/psychic_radiance/use_ability(atom/A) - var/mob/living/carbon/xenomorph/X = owner - if(X.client.prefs.muted & MUTE_IC) - to_chat(X, SPAN_DANGER("You cannot whisper (muted).")) + var/mob/living/carbon/xenomorph/xeno_player = owner + if(xeno_player.client.prefs.muted & MUTE_IC) + to_chat(xeno_player, SPAN_DANGER("You cannot whisper (muted).")) return - if(!X.check_state(TRUE)) + if(!xeno_player.check_state(TRUE)) return var/list/target_list = list() - var/msg = strip_html(input("Message:", "Psychic Radiance") as text|null) - if(!msg || !X.check_state(TRUE)) + var/whisper = strip_html(input("Message:", "Psychic Radiance") as text|null) + if(!whisper || !xeno_player.check_state(TRUE)) return - for(var/mob/living/possible_target in view(12, X)) - if(possible_target == X || !possible_target.client) + FOR_DVIEW(var/mob/living/possible_target, 12, xeno_player, HIDE_INVISIBLE_OBSERVER) + if(possible_target == xeno_player || !possible_target.client) continue target_list += possible_target if(!istype(possible_target, /mob/living/carbon/xenomorph)) - to_chat(possible_target, SPAN_XENOQUEEN("You hear a strange, alien voice in your head. \"[msg]\"")) + to_chat(possible_target, SPAN_XENOQUEEN("You hear a strange, alien voice in your head. \"[SPAN_PSYTALK(whisper)]\"")) else - to_chat(possible_target, SPAN_XENOQUEEN("You hear the voice of [X] resonate in your head. \"[msg]\"")) + to_chat(possible_target, SPAN_XENOQUEEN("You hear the voice of [xeno_player] resonate in your head. \"[SPAN_PSYTALK(whisper)]\"")) + FOR_DVIEW_END if(!length(target_list)) return var/targetstring = english_list(target_list) - to_chat(X, SPAN_XENONOTICE("You said: \"[msg]\" to [targetstring]")) - log_say("PsychicRadiance: [key_name(X)]->[targetstring] : [msg]") + to_chat(xeno_player, SPAN_XENONOTICE("You said: \"[whisper]\" to [targetstring]")) + log_say("PsychicRadiance: [key_name(xeno_player)]->[targetstring] : [whisper] (AREA: [get_area_name(xeno_player)])") + for (var/mob/dead/observer/ghost as anything in GLOB.observer_list) + if(!ghost.client || isnewplayer(ghost)) + continue + if(ghost.client.prefs.toggles_chat & CHAT_GHOSTHIVEMIND) + var/rendered_message + var/xeno_track = "(F)" + rendered_message = SPAN_XENOLEADER("PsychicRadiance: [xeno_player.real_name][xeno_track] to [targetstring], '[SPAN_PSYTALK(whisper)]'") + ghost.show_message(rendered_message, SHOW_MESSAGE_AUDIBLE) return ..() +/datum/action/xeno_action/onclick/psychic_radiance/can_use_action() + var/mob/living/carbon/xenomorph/xeno = owner + if(xeno && !xeno.is_mob_incapacitated()) + return TRUE + return FALSE + /datum/action/xeno_action/activable/queen_give_plasma name = "Give Plasma (400)" action_icon_state = "queen_give_plasma" @@ -322,21 +357,6 @@ return return ..() -/datum/action/xeno_action/onclick/queen_award - name = "Give Royal Jelly (500)" - action_icon_state = "queen_award" - plasma_cost = 500 - -/datum/action/xeno_action/onclick/queen_award/use_ability(atom/target) - var/mob/living/carbon/xenomorph/queen/xeno = owner - if(!xeno.check_state()) - return - if(!xeno.check_plasma(plasma_cost)) - return - if(give_jelly_award(xeno.hive)) - xeno.use_plasma(plasma_cost) - return ..() - /datum/action/xeno_action/onclick/queen_word name = "Word of the Queen (50)" action_icon_state = "queen_word" diff --git a/code/modules/mob/living/carbon/xenomorph/Embryo.dm b/code/modules/mob/living/carbon/xenomorph/Embryo.dm index 06f677ece9..4a82c4fb0b 100644 --- a/code/modules/mob/living/carbon/xenomorph/Embryo.dm +++ b/code/modules/mob/living/carbon/xenomorph/Embryo.dm @@ -78,6 +78,9 @@ process_growth(delta_time) /obj/item/alien_embryo/proc/process_growth(delta_time) + //Tutorial embryos do not progress. + if(hivenumber == XENO_HIVE_TUTORIAL) + return var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] //Low temperature seriously hampers larva growth (as in, way below livable), so does stasis if(!hive.hardcore) // Cannot progress if the hive has entered hardcore mode. @@ -160,7 +163,7 @@ /obj/item/alien_embryo/proc/become_larva() // We do not allow chest bursts on the Centcomm Z-level, to prevent // stranded players from admin experiments and other issues - if(!affected_mob || is_admin_level(affected_mob.z)) + if(!affected_mob || should_block_game_interaction(affected_mob)) return stage = 6 // Increase the stage value to prevent this proc getting repeated @@ -188,7 +191,7 @@ if(!picked) // Get a candidate from observers - var/list/candidates = get_alien_candidates(hive) + var/list/candidates = get_alien_candidates(hive, abomination = (isyautja(affected_mob) || (flags_embryo & FLAG_EMBRYO_PREDATOR))) if(candidates && length(candidates)) // If they were facehugged by a player thats still in queue, they get second dibs on the new larva. if(hugger_ckey) @@ -260,7 +263,7 @@ new_xeno.key = picked.key if(new_xeno.client) - new_xeno.client.change_view(world_view_size) + new_xeno.client.change_view(GLOB.world_view_size) if(new_xeno.client.prefs?.toggles_flashing & FLASH_POOLSPAWN) window_flash(new_xeno.client) @@ -294,7 +297,7 @@ if(victim.chestburst || loc != victim) return victim.chestburst = TRUE - to_chat(src, SPAN_DANGER("You start bursting out of [victim]'s chest!")) + to_chat(src, SPAN_DANGER("We start bursting out of [victim]'s chest!")) if(!HAS_TRAIT(src, TRAIT_KNOCKEDOUT)) victim.apply_effect(20, DAZE) victim.visible_message(SPAN_DANGER("\The [victim] starts shaking uncontrollably!"), \ @@ -336,24 +339,25 @@ victim.attack_log += "\[[time_stamp()]\] Was chestbursted in [get_area_name(larva_embryo)] at X[victim.x], Y[victim.y], Z[victim.z]. The larva was [key_name(larva_embryo)]." if(burstcount) - step(larva_embryo, pick(cardinal)) + step(larva_embryo, pick(GLOB.cardinals)) - if(round_statistics) - round_statistics.total_larva_burst++ + if(GLOB.round_statistics && (ishuman(victim)) && (SSticker.current_state == GAME_STATE_PLAYING) && (ROUND_TIME > 1 MINUTES)) + GLOB.round_statistics.total_larva_burst++ GLOB.larva_burst_by_hive[hive] = (GLOB.larva_burst_by_hive[hive] || 0) + 1 burstcount++ if(!larva_embryo.ckey && larva_embryo.burrowable && loc && is_ground_level(loc.z) && (locate(/obj/structure/bed/nest) in loc) && hive.living_xeno_queen && hive.living_xeno_queen.z == loc.z) larva_embryo.visible_message(SPAN_XENODANGER("[larva_embryo] quickly burrows into the ground.")) - if(round_statistics && !larva_embryo.statistic_exempt) - round_statistics.track_new_participant(faction, -1) // keep stats sane + if(GLOB.round_statistics && !larva_embryo.statistic_exempt) + GLOB.round_statistics.track_new_participant(faction, -1) // keep stats sane hive.stored_larva++ hive.hive_ui.update_burrowed_larva() qdel(larva_embryo) if(!victim.first_xeno) - to_chat(larva_embryo, SPAN_XENOHIGHDANGER("The Queen's will overwhelms your instincts...")) - to_chat(larva_embryo, SPAN_XENOHIGHDANGER("\"[hive.hive_orders]\"")) + if(hive.hive_orders) + to_chat(larva_embryo, SPAN_XENOHIGHDANGER("The Queen's will overwhelms our instincts...")) + to_chat(larva_embryo, SPAN_XENOHIGHDANGER("\"[hive.hive_orders]\"")) log_attack("[key_name(victim)] chestbursted in [get_area_name(larva_embryo)] at X[victim.x], Y[victim.y], Z[victim.z]. The larva was [key_name(larva_embryo)].") //this is so that admins are not spammed with los logs for(var/obj/item/alien_embryo/AE in victim) diff --git a/code/modules/mob/living/carbon/xenomorph/Evolution.dm b/code/modules/mob/living/carbon/xenomorph/Evolution.dm index 467fceb360..8b618ce2ee 100644 --- a/code/modules/mob/living/carbon/xenomorph/Evolution.dm +++ b/code/modules/mob/living/carbon/xenomorph/Evolution.dm @@ -24,29 +24,36 @@ castes_available -= caste if(!length(castes_available)) - to_chat(src, SPAN_WARNING("The Hive is not capable of supporting any castes you can evolve to yet.")) + to_chat(src, SPAN_WARNING("The Hive is not capable of supporting any castes we can evolve to yet.")) return + var/castepick + if((client.prefs && client.prefs.no_radials_preference) || !hive.evolution_menu_images) + castepick = tgui_input_list(usr, "You are growing into a beautiful alien! It is time to choose a caste.", "Evolve", castes_available, theme="hive_status") + else + var/list/fancy_caste_list = list() + for(var/caste in castes_available) + fancy_caste_list[caste] = hive.evolution_menu_images[caste] - var/castepick = tgui_input_list(usr, "You are growing into a beautiful alien! It is time to choose a caste.", "Evolve", castes_available, theme="hive_status") + castepick = show_radial_menu(src, src.client?.eye, fancy_caste_list) if(!castepick) //Changed my mind return var/datum/caste_datum/caste_datum = GLOB.xeno_datum_list[castepick] if(caste_datum && caste_datum.minimum_evolve_time > ROUND_TIME) - to_chat(src, SPAN_WARNING("The Hive cannot support this caste yet! ([round((caste_datum.minimum_evolve_time - ROUND_TIME) / 10)] seconds remaining)")) + to_chat(src, SPAN_WARNING("The Hive cannot support this caste yet! ([floor((caste_datum.minimum_evolve_time - ROUND_TIME) / 10)] seconds remaining)")) return if(!evolve_checks()) return if((!hive.living_xeno_queen) && castepick != XENO_CASTE_QUEEN && !islarva(src) && !hive.allow_no_queen_evo) - to_chat(src, SPAN_WARNING("The Hive is shaken by the death of the last Queen. You can't find the strength to evolve.")) + to_chat(src, SPAN_WARNING("The Hive is shaken by the death of the last Queen. We can't find the strength to evolve.")) return if(castepick == XENO_CASTE_QUEEN) //Special case for dealing with queenae if(!hardcore) if(SSticker.mode && hive.xeno_queen_timer > world.time) - to_chat(src, SPAN_WARNING("You must wait about [DisplayTimeText(hive.xeno_queen_timer - world.time, 1)] for the hive to recover from the previous Queen's death.")) + to_chat(src, SPAN_WARNING("We must wait about [DisplayTimeText(hive.xeno_queen_timer - world.time, 1)] for the hive to recover from the previous Queen's death.")) return if(plasma_stored >= 500) @@ -54,14 +61,14 @@ to_chat(src, SPAN_WARNING("There already is a living Queen.")) return else - to_chat(src, SPAN_WARNING("You require more plasma! Currently at: [plasma_stored] / 500.")) + to_chat(src, SPAN_WARNING("We require more plasma! Currently at: [plasma_stored] / 500.")) return else to_chat(src, SPAN_WARNING("Nuh-uhh.")) return if(evolution_threshold && castepick != XENO_CASTE_QUEEN) //Does the caste have an evolution timer? Then check it if(evolution_stored < evolution_threshold) - to_chat(src, SPAN_WARNING("You must wait before evolving. Currently at: [evolution_stored] / [evolution_threshold].")) + to_chat(src, SPAN_WARNING("We must wait before evolving. Currently at: [evolution_stored] / [evolution_threshold].")) return // Used for restricting benos to evolve to drone/queen when they're the only potential queen @@ -82,7 +89,7 @@ var/mob/living/carbon/xenomorph/M = null - M = RoleAuthority.get_caste_by_text(castepick) + M = GLOB.RoleAuthority.get_caste_by_text(castepick) if(isnull(M)) to_chat(usr, SPAN_WARNING("[castepick] is not a valid caste! If you're seeing this message, tell a coder!")) @@ -90,16 +97,17 @@ if(!can_evolve(castepick, potential_queens)) return - to_chat(src, SPAN_XENONOTICE("It looks like the hive can support your evolution to [SPAN_BOLD(castepick)]!")) + to_chat(src, SPAN_XENONOTICE("It looks like the hive can support our evolution to [SPAN_BOLD(castepick)]!")) visible_message(SPAN_XENONOTICE("\The [src] begins to twist and contort."), \ - SPAN_XENONOTICE("You begin to twist and contort.")) + SPAN_XENONOTICE("We begin to twist and contort.")) xeno_jitter(25) evolving = TRUE var/level_to_switch_to = get_vision_level() - if(!do_after(src, 2.5 SECONDS, INTERRUPT_INCAPACITATED, BUSY_ICON_HOSTILE)) // Can evolve while moving - to_chat(src, SPAN_WARNING("You quiver, but nothing happens. Hold still while evolving.")) + if(!do_after(src, 2.5 SECONDS, INTERRUPT_INCAPACITATED|INTERRUPT_CHANGED_LYING, BUSY_ICON_HOSTILE)) // Can evolve while moving, resist or rest to cancel it. + to_chat(src, SPAN_WARNING("We quiver, but nothing happens. Our evolution has ceased for now...")) + evolving = FALSE return @@ -115,14 +123,16 @@ to_chat(src, SPAN_WARNING("There already is a Queen.")) return if(!hive.allow_queen_evolve) - to_chat(src, SPAN_WARNING("You can't find the strength to evolve into a Queen")) + to_chat(src, SPAN_WARNING("We can't find the strength to evolve into a Queen")) return else if(!can_evolve(castepick, potential_queens)) return // subtract the threshold, keep the stored amount evolution_stored -= evolution_threshold - + var/obj/item/organ/xeno/organ = locate() in src + if(!isnull(organ)) + qdel(organ) //From there, the new xeno exists, hopefully var/mob/living/carbon/xenomorph/new_xeno = new M(get_turf(src), src) @@ -135,7 +145,7 @@ return var/area/xeno_area = get_area(new_xeno) - if(!is_admin_level(new_xeno.z) || (xeno_area.flags_atom & AREA_ALLOW_XENO_JOIN)) + if(!should_block_game_interaction(new_xeno) || (xeno_area.flags_atom & AREA_ALLOW_XENO_JOIN)) switch(new_xeno.tier) //They have evolved, add them to the slot count IF they are in regular game space if(2) hive.tier_2_xenos |= new_xeno @@ -148,7 +158,7 @@ else new_xeno.key = src.key if(new_xeno.client) - new_xeno.client.change_view(world_view_size) + new_xeno.client.change_view(GLOB.world_view_size) //Regenerate the new mob's name now that our player is inside new_xeno.generate_name() @@ -169,7 +179,7 @@ built_structures = null new_xeno.visible_message(SPAN_XENODANGER("A [new_xeno.caste.caste_type] emerges from the husk of \the [src]."), \ - SPAN_XENODANGER("You emerge in a greater form from the husk of your old body. For the hive!")) + SPAN_XENODANGER("We emerge in a greater form from the husk of our old body. For the hive!")) if(hive.living_xeno_queen && hive.living_xeno_queen.observed_xeno == src) hive.living_xeno_queen.overwatch(new_xeno) @@ -182,8 +192,8 @@ if (new_xeno.client) new_xeno.client.mouse_pointer_icon = initial(new_xeno.client.mouse_pointer_icon) - if(new_xeno.mind && round_statistics) - round_statistics.track_new_participant(new_xeno.faction, -1) //so an evolved xeno doesn't count as two. + if(new_xeno.mind && GLOB.round_statistics) + GLOB.round_statistics.track_new_participant(new_xeno.faction, -1) //so an evolved xeno doesn't count as two. SSround_recording.recorder.track_player(new_xeno) /mob/living/carbon/xenomorph/proc/evolve_checks() @@ -195,7 +205,7 @@ return FALSE if(!isturf(loc)) - to_chat(src, SPAN_WARNING("You can't evolve here.")) + to_chat(src, SPAN_WARNING("We can't evolve here.")) return FALSE if(hardcore) @@ -207,7 +217,10 @@ return FALSE if(lock_evolve) - to_chat(src, SPAN_WARNING("You are banished and cannot reach the hivemind.")) + if(banished) + to_chat(src, SPAN_WARNING("We are banished and cannot reach the hivemind.")) + else + to_chat(src, SPAN_WARNING("We can't evolve.")) return FALSE if(jobban_isbanned(src, JOB_XENOMORPH))//~who so genius to do this is? @@ -215,19 +228,19 @@ return FALSE if(handcuffed || legcuffed) - to_chat(src, SPAN_WARNING("The restraints are too restricting to allow you to evolve.")) + to_chat(src, SPAN_WARNING("The restraints are too restricting to allow us to evolve.")) return FALSE if(isnull(caste.evolves_to)) - to_chat(src, SPAN_WARNING("You are already the apex of form and function. Go forth and spread the hive!")) + to_chat(src, SPAN_WARNING("We are already the apex of form and function. Go forth and spread the hive!")) return FALSE if(health < maxHealth) - to_chat(src, SPAN_WARNING("You must be at full health to evolve.")) + to_chat(src, SPAN_WARNING("We must be at full health to evolve.")) return FALSE if(agility || fortify || crest_defense) - to_chat(src, SPAN_WARNING("You cannot evolve while in this stance.")) + to_chat(src, SPAN_WARNING("We cannot evolve while in this stance.")) return FALSE if(world.time < (SSticker.mode.round_time_lobby + XENO_ROUNDSTART_PROGRESS_TIME_2)) @@ -257,15 +270,18 @@ return if(health < maxHealth) - to_chat(src, SPAN_XENOWARNING("You are too weak to deevolve, regain your health first.")) + to_chat(src, SPAN_XENOWARNING("We are too weak to deevolve, we must regain our health first.")) return if(length(caste.deevolves_to) < 1) - to_chat(src, SPAN_XENOWARNING("You can't deevolve any further.")) + to_chat(src, SPAN_XENOWARNING("We can't deevolve any further.")) return if(lock_evolve) - to_chat(src, SPAN_WARNING("You are banished and cannot reach the hivemind.")) + if(banished) + to_chat(src, SPAN_WARNING("We are banished and cannot reach the hivemind.")) + else + to_chat(src, SPAN_WARNING("We can't deevolve.")) return FALSE @@ -320,7 +336,9 @@ xeno_type = /mob/living/carbon/xenomorph/defender if(XENO_CASTE_BURROWER) xeno_type = /mob/living/carbon/xenomorph/burrower - + var/obj/item/organ/xeno/organ = locate() in src + if(!isnull(organ)) + qdel(organ) var/mob/living/carbon/xenomorph/new_xeno = new xeno_type(get_turf(src), src) new_xeno.built_structures = built_structures.Copy() @@ -340,7 +358,7 @@ else new_xeno.key = key if(new_xeno.client) - new_xeno.client.change_view(world_view_size) + new_xeno.client.change_view(GLOB.world_view_size) new_xeno.client.pixel_x = 0 new_xeno.client.pixel_y = 0 @@ -349,10 +367,10 @@ if(new_xeno.client) new_xeno.set_lighting_alpha(level_to_switch_to) new_xeno.visible_message(SPAN_XENODANGER("A [new_xeno.caste.caste_type] emerges from the husk of \the [src]."), \ - SPAN_XENODANGER("You regress into your previous form.")) + SPAN_XENODANGER("We regress into our previous form.")) - if(round_statistics && !new_xeno.statistic_exempt) - round_statistics.track_new_participant(faction, -1) //so an evolved xeno doesn't count as two. + if(GLOB.round_statistics && !new_xeno.statistic_exempt) + GLOB.round_statistics.track_new_participant(faction, -1) //so an evolved xeno doesn't count as two. SSround_recording.recorder.track_player(new_xeno) src.transfer_observers_to(new_xeno) @@ -381,7 +399,7 @@ used_tier_3_slots -= min(slots_used, slots_free) var/burrowed_factor = min(hive.stored_larva, sqrt(4*hive.stored_larva)) - var/totalXenos = round(burrowed_factor) + var/totalXenos = floor(burrowed_factor) for(var/mob/living/carbon/xenomorph/xeno as anything in hive.totalXenos) if(xeno.counts_for_slots) totalXenos++ diff --git a/code/modules/mob/living/carbon/xenomorph/Facehuggers.dm b/code/modules/mob/living/carbon/xenomorph/Facehuggers.dm index 5524adbde1..80a9d4da43 100644 --- a/code/modules/mob/living/carbon/xenomorph/Facehuggers.dm +++ b/code/modules/mob/living/carbon/xenomorph/Facehuggers.dm @@ -38,6 +38,9 @@ /// the nearest human before dying var/jumps_left = 2 + var/time_to_live = 30 SECONDS + var/death_timer + var/icon_xeno = 'icons/mob/xenos/effects.dmi' var/icon_xenonid = 'icons/mob/xenonids/xenonid_crab.dmi' @@ -55,6 +58,9 @@ set_hive_data(src, hivenumber) go_active() + if (hivenumber != XENO_HIVE_TUTORIAL) + death_timer = addtimer(CALLBACK(src, PROC_REF(end_lifecycle)), time_to_live, TIMER_OVERRIDE|TIMER_STOPPABLE|TIMER_UNIQUE) + /obj/item/clothing/mask/facehugger/Destroy() . = ..() @@ -75,6 +81,10 @@ if(QDESTROYING(src)) return addtimer(CALLBACK(src, PROC_REF(check_turf)), 0.2 SECONDS) + + if(!death_timer && hivenumber != XENO_HIVE_TUTORIAL) + death_timer = addtimer(CALLBACK(src, PROC_REF(end_lifecycle)), time_to_live, TIMER_OVERRIDE|TIMER_STOPPABLE|TIMER_UNIQUE) + if(stat == CONSCIOUS && loc) //Make sure we're conscious and not idle or dead. go_idle() if(attached) @@ -173,9 +183,18 @@ if(exposed_temperature > 300) die() -/obj/item/clothing/mask/facehugger/equipped(mob/M) +/obj/item/clothing/mask/facehugger/equipped(mob/holder) SHOULD_CALL_PARENT(FALSE) // ugh equip sounds // So picking up a hugger does not prematurely kill it + if (!isxeno(holder)) + return + + var/mob/living/carbon/xenomorph/xeno = holder + + if ((xeno.caste.hugger_nurturing || hivenumber == XENO_HIVE_TUTORIAL) && death_timer) + deltimer(death_timer) + death_timer = null + go_idle() /obj/item/clothing/mask/facehugger/Crossed(atom/target) @@ -262,7 +281,7 @@ if(isturf(human.loc)) forceMove(human.loc)//Just checkin - if(!human.handle_hugger_attachment(src)) + if(!human.handle_hugger_attachment(src, hugger)) return FALSE attached = TRUE @@ -283,16 +302,18 @@ var/area/hug_area = get_area(src) var/name = hugger ? "[hugger]" : "\a [src]" + if(hivenumber != XENO_HIVE_TUTORIAL) // prevent hugs from any tutorial huggers from showing up in dchat + if(hug_area) + notify_ghosts(header = "Hugged", message = "[human] has been hugged by [name] at [hug_area]!", source = human, action = NOTIFY_ORBIT) + to_chat(src, SPAN_DEADSAY("[human] has been facehugged by [name] at \the [hug_area]")) + else + notify_ghosts(header = "Hugged", message = "[human] has been hugged by [name]!", source = human, action = NOTIFY_ORBIT) + to_chat(src, SPAN_DEADSAY("[human] has been facehugged by [name]")) + if(hug_area) - notify_ghosts(header = "Hugged", message = "[human] has been hugged by [name] at [hug_area]!", source = human, action = NOTIFY_ORBIT) - to_chat(src, SPAN_DEADSAY("[human] has been facehugged by [name] at \the [hug_area]")) - else - notify_ghosts(header = "Hugged", message = "[human] has been hugged by [name]!", source = human, action = NOTIFY_ORBIT) - to_chat(src, SPAN_DEADSAY("[human] has been facehugged by [name]")) - if(hug_area) - xeno_message(SPAN_XENOMINORWARNING("You sense that [name] has facehugged a host at \the [hug_area]!"), 1, hivenumber) + xeno_message(SPAN_XENOMINORWARNING("We sense that [name] has facehugged a host at \the [hug_area]!"), 1, hivenumber) else - xeno_message(SPAN_XENOMINORWARNING("You sense that [name] has facehugged a host!"), 1, hivenumber) + xeno_message(SPAN_XENOMINORWARNING("We sense that [name] has facehugged a host!"), 1, hivenumber) addtimer(CALLBACK(src, PROC_REF(impregnate), human, hugger?.client?.ckey), rand(MIN_IMPREGNATION_TIME, MAX_IMPREGNATION_TIME)) @@ -329,8 +350,8 @@ else target.visible_message(SPAN_DANGER("[src] violates [target]'s face!")) - if(round_statistics && ishuman(target)) - round_statistics.total_huggers_applied++ + if(GLOB.round_statistics && ishuman(target)) + GLOB.round_statistics.total_huggers_applied++ /obj/item/clothing/mask/facehugger/proc/go_active() if(stat == DEAD) @@ -405,6 +426,10 @@ deltimer(jump_timer) jump_timer = null + if(death_timer) + deltimer(death_timer) + death_timer = null + if(!impregnated) icon_state = "[initial(icon_state)]_dead" stat = DEAD @@ -413,12 +438,15 @@ playsound(src.loc, 'sound/voice/alien_facehugger_dies.ogg', 25, 1) if(ismob(loc)) //Make it fall off the person so we can update their icons. Won't update if they're in containers thou - var/mob/M = loc - M.drop_inv_item_on_ground(src) + var/mob/holder_mob = loc + holder_mob.drop_inv_item_on_ground(src) layer = TURF_LAYER //so dead hugger appears below live hugger if stacked on same tile. (and below nested hosts) - addtimer(CALLBACK(src, PROC_REF(decay)), 3 MINUTES) + if(hivenumber == XENO_HIVE_TUTORIAL) + addtimer(CALLBACK(src, PROC_REF(decay)), 5 SECONDS) + else + addtimer(CALLBACK(src, PROC_REF(decay)), 3 MINUTES) /obj/item/clothing/mask/facehugger/proc/decay() visible_message("[icon2html(src, viewers(src))] \The [src] decays into a mass of acid and chitin.") @@ -463,15 +491,14 @@ /** * Human hugger handling */ - -/mob/living/carbon/human/proc/handle_hugger_attachment(obj/item/clothing/mask/facehugger/hugger) +/mob/living/carbon/human/proc/handle_hugger_attachment(obj/item/clothing/mask/facehugger/hugger, mob/living/carbon/xenomorph/facehugger/mob_hugger) var/can_infect = TRUE if(!has_limb("head")) hugger.visible_message(SPAN_WARNING("[hugger] looks for a face to hug on [src], but finds none!")) hugger.go_idle() return FALSE - if(species && !species.handle_hugger_attachment(src, hugger)) + if(species && !species.handle_hugger_attachment(src, hugger, mob_hugger)) return FALSE if(head && !(head.flags_item & NODROP)) @@ -518,12 +545,12 @@ return can_infect -/datum/species/proc/handle_hugger_attachment(mob/living/carbon/human/target, obj/item/clothing/mask/facehugger/hugger) +/datum/species/proc/handle_hugger_attachment(mob/living/carbon/human/target, obj/item/clothing/mask/facehugger/hugger, mob/living/carbon/xenomorph/facehugger/mob_hugger) return TRUE -/datum/species/yautja/handle_hugger_attachment(mob/living/carbon/human/target, obj/item/clothing/mask/facehugger/hugger) +/datum/species/yautja/handle_hugger_attachment(mob/living/carbon/human/target, obj/item/clothing/mask/facehugger/hugger, mob/living/carbon/xenomorph/facehugger/mob_hugger) var/catch_chance = 50 - if(target.dir == reverse_dir[hugger.dir]) + if(target.dir == GLOB.reverse_dir[hugger.dir]) catch_chance += 20 if(target.body_position == LYING_DOWN) catch_chance -= 50 @@ -535,7 +562,10 @@ if(!target.stat && target.dir != hugger.dir && prob(catch_chance)) //Not facing away target.visible_message(SPAN_NOTICE("[target] snatches [hugger] out of the air and squashes it!")) - hugger.die() + if(mob_hugger) + mob_hugger.death(create_cause_data("squished")) + else + hugger.die() return FALSE return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/Powers.dm b/code/modules/mob/living/carbon/xenomorph/Powers.dm index d400659079..87a6db3c08 100644 --- a/code/modules/mob/living/carbon/xenomorph/Powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/Powers.dm @@ -19,13 +19,13 @@ if(RC.max_per_xeno != RESIN_CONSTRUCTION_NO_MAX) var/current_amount = length(built_structures[RC.build_path]) if(current_amount >= RC.max_per_xeno) - to_chat(src, SPAN_XENOWARNING("You've already built the maximum possible structures you can!")) + to_chat(src, SPAN_XENOWARNING("We've already built the maximum possible structures we can!")) return SECRETE_RESIN_FAIL var/turf/current_turf = get_turf(A) if(extra_build_dist != IGNORE_BUILD_DISTANCE && get_dist(src, A) > src.caste.max_build_dist + extra_build_dist) // Hivelords and eggsac carriers have max_build_dist of 1, drones and queens 0 - to_chat(src, SPAN_XENOWARNING("You can't build from that far!")) + to_chat(src, SPAN_XENOWARNING("We can't build from that far!")) return SECRETE_RESIN_FAIL else if(thick) //hivelords can thicken existing resin structures. var/thickened = FALSE @@ -37,7 +37,7 @@ return SECRETE_RESIN_FAIL for(var/datum/effects/xeno_structure_reinforcement/sf in WR.effects_list) - to_chat(src, SPAN_XENOWARNING("The extra resin is preventing you from reinforcing [WR]. Wait until it elapse.")) + to_chat(src, SPAN_XENOWARNING("The extra resin is preventing us from reinforcing [WR]. Wait until it elapse.")) return SECRETE_RESIN_FAIL if (WR.hivenumber != hivenumber) @@ -62,7 +62,7 @@ return SECRETE_RESIN_FAIL for(var/datum/effects/xeno_structure_reinforcement/sf in DR.effects_list) - to_chat(src, SPAN_XENOWARNING("The extra resin is preventing you from reinforcing [DR]. Wait until it elapse.")) + to_chat(src, SPAN_XENOWARNING("The extra resin is preventing us from reinforcing [DR]. Wait until it elapse.")) return SECRETE_RESIN_FAIL if(DR.hardness == 1.5) //non thickened @@ -78,7 +78,7 @@ if(thickened) if(message) visible_message(SPAN_XENONOTICE("[src] regurgitates a thick substance and thickens [A]."), \ - SPAN_XENONOTICE("You regurgitate some resin and thicken [A], using [total_resin_cost] plasma."), null, 5) + SPAN_XENONOTICE("We regurgitate some resin and thicken [A], using [total_resin_cost] plasma."), null, 5) if(use_plasma) use_plasma(total_resin_cost) playsound(loc, "alien_resin_build", 25) @@ -132,7 +132,7 @@ use_plasma(total_resin_cost) if(message) visible_message(SPAN_XENONOTICE("[src] regurgitates a thick substance and shapes it into \a [RC.construction_name]!"), \ - SPAN_XENONOTICE("You regurgitate some resin and shape it into \a [RC.construction_name][use_plasma ? " at the cost of a total [total_resin_cost] plasma" : ""]."), null, 5) + SPAN_XENONOTICE("We regurgitate some resin and shape it into \a [RC.construction_name][use_plasma ? " at the cost of a total [total_resin_cost] plasma" : ""]."), null, 5) playsound(loc, "alien_resin_build", 25) var/atom/new_resin = RC.build(current_turf, hivenumber, src) @@ -164,8 +164,10 @@ new_structure.set_template(structure_template) hive.add_construction(new_structure) + var/max_constructions = hive.hive_structures_limit[structure_template.name] + var/remaining_constructions = max_constructions - hive.get_structure_count(structure_template.name) visible_message(SPAN_XENONOTICE("A thick substance emerges from the ground and shapes into \a [new_structure]."), \ - SPAN_XENONOTICE("You designate a new [structure_template] construction."), null, 5) + SPAN_XENONOTICE("We designate a new [structure_template] construction. ([remaining_constructions]/[max_constructions] remaining)"), null, 5) playsound(new_structure, "alien_resin_build", 25) if(hive.living_xeno_queen) @@ -176,11 +178,11 @@ return FALSE var/found_weeds = FALSE if(!selected_mark) - to_chat(src, SPAN_NOTICE("You must have a meaning for the mark before you can make it.")) + to_chat(src, SPAN_NOTICE("We must have a meaning for the mark before you can make it.")) hive.mark_ui.open_mark_menu(src) return FALSE if(target_turf.z != src.z) - to_chat(src, SPAN_NOTICE("You have no psychic presence on that world.")) + to_chat(src, SPAN_NOTICE("We have no psychic presence on that world.")) return FALSE if(!(istype(target_turf)) || target_turf.density) return FALSE @@ -195,7 +197,7 @@ playsound(target_turf, "alien_resin_build", 25) if(!found_weeds) - to_chat(src, SPAN_XENOMINORWARNING("You made the resin mark on ground with no weeds, it will break soon without any.")) + to_chat(src, SPAN_XENOMINORWARNING("We made the resin mark on ground with no weeds, it will break soon without any.")) if(isqueen(src)) NM.color = "#7a21c4" diff --git a/code/modules/mob/living/carbon/xenomorph/XenoAttacks.dm b/code/modules/mob/living/carbon/xenomorph/XenoAttacks.dm index 317c7999e5..cae3be048a 100644 --- a/code/modules/mob/living/carbon/xenomorph/XenoAttacks.dm +++ b/code/modules/mob/living/carbon/xenomorph/XenoAttacks.dm @@ -78,7 +78,11 @@ damage += attack.damage > 5 ? attack.damage : 0 playsound(loc, attack.attack_sound, 25, 1) - visible_message(SPAN_DANGER("[M] [pick(attack.attack_verb)]ed [src]!"), null, null, 5, CHAT_TYPE_MELEE_HIT) + var/picked_verb = pick(attack.attack_verb) + visible_message(SPAN_DANGER("[M] [picked_verb]ed [src]!"), null, null, 5, CHAT_TYPE_MELEE_HIT) + log_attack("[key_name(M)] [picked_verb]ed [key_name(src)] at [get_area_name(M)]") + attack_log += text("\[[time_stamp()]\] was [picked_verb]ed by [key_name(M)]") + M.attack_log += text("\[[time_stamp()]\] [picked_verb]ed [key_name(src)]") apply_damage(damage, BRUTE) updatehealth() else @@ -98,7 +102,7 @@ if(islarva(M)) //Larvas can't eat people M.visible_message(SPAN_DANGER("[M] nudges its head against \the [src]."), \ - SPAN_DANGER("You nudge your head against \the [src]."), null, null, CHAT_TYPE_XENO_FLUFF) + SPAN_DANGER("We nudge our head against \the [src]."), null, null, CHAT_TYPE_XENO_FLUFF) return switch(M.a_intent) @@ -113,7 +117,7 @@ return XENO_NONCOMBAT_ACTION else M.visible_message(SPAN_NOTICE("\The [M] caresses \the [src] with its claws."), \ - SPAN_NOTICE("You caress \the [src] with your claws."), null, 5, CHAT_TYPE_XENO_FLUFF) + SPAN_NOTICE("We caress \the [src] with our claws."), null, 5, CHAT_TYPE_XENO_FLUFF) if(INTENT_GRAB) if(M == src || anchored) @@ -188,12 +192,12 @@ if(can_mega_shove && !can_resist_shove || (mob_size < MOB_SIZE_XENO_SMALL && M.mob_size >= MOB_SIZE_XENO_SMALL)) playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1) M.visible_message(SPAN_WARNING("\The [M] shoves \the [src] out of her way!"), \ - SPAN_WARNING("You shove \the [src] out of your way!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We shove \the [src] out of our way!"), null, 5, CHAT_TYPE_XENO_COMBAT) src.apply_effect(1, WEAKEN) else playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1) M.visible_message(SPAN_WARNING("\The [M] shoves \the [src]!"), \ - SPAN_WARNING("You shove \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We shove \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION /mob/living/carbon/xenomorph/proc/attempt_headbutt(mob/living/carbon/xenomorph/target) @@ -204,7 +208,7 @@ return target.flags_emote &= ~EMOTING_HEADBUTT visible_message(SPAN_NOTICE("[src] slams their head into [target]!"), \ - SPAN_NOTICE("You slam your head into [target]!"), null, 4) + SPAN_NOTICE("We slam your head into [target]!"), null, 4) playsound(src, pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg'), 50, 1) animation_attack_on(target) target.animation_attack_on(src) @@ -218,7 +222,7 @@ return visible_message(SPAN_NOTICE("[src] raises their head for a headbutt from [target]."), \ - SPAN_NOTICE("You raise your head for a headbutt from [target]."), null, 4) + SPAN_NOTICE("We raise our head for a headbutt from [target]."), null, 4) flags_emote |= EMOTING_HEADBUTT if(do_after(src, 50, INTERRUPT_ALL|INTERRUPT_EMOTE, EMOTE_ICON_HEADBUTT) && flags_emote & EMOTING_HEADBUTT) to_chat(src, SPAN_NOTICE("You were left hanging!")) @@ -232,7 +236,7 @@ return target.flags_emote &= ~EMOTING_TAIL_SWIPE visible_message(SPAN_NOTICE("[src] clashes their tail with [target]!"), \ - SPAN_NOTICE("You clash your tail with [target]!"), null, 4) + SPAN_NOTICE("We clash our tail with [target]!"), null, 4) playsound(src, 'sound/weapons/alien_claw_block.ogg', 50, 1) spin_circle() target.spin_circle() @@ -246,7 +250,7 @@ return visible_message(SPAN_NOTICE("[src] raises their tail out for a swipe from [target]."), \ - SPAN_NOTICE("You raise your tail out for a tail swipe from [target]."), null, 4) + SPAN_NOTICE("We raise our tail out for a tail swipe from [target]."), null, 4) flags_emote |= EMOTING_TAIL_SWIPE if(do_after(src, 50, INTERRUPT_ALL|INTERRUPT_EMOTE, EMOTE_ICON_TAILSWIPE) && flags_emote & EMOTING_TAIL_SWIPE) to_chat(src, SPAN_NOTICE("You were left hanging!")) diff --git a/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm b/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm deleted file mode 100644 index 83c8500a1b..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/XenoMutatorSets.dm +++ /dev/null @@ -1,268 +0,0 @@ -#define MUTATOR_GAIN_PER_QUEEN_LEVEL 6 -#define MUTATOR_GAIN_PER_XENO_LEVEL 3 - -//A class that holds mutators for a given Xeno hive -//Each time a Queen matures, the hive gets more points -//Each time a Queen dies, the mutators are reset - -//The class contains a lot of variables that are applied to various xenos' stats and actions -/datum/mutator_set - var/remaining_points = 1 //How many points the xeno / hive still has to spend on mutators - var/list/purchased_mutators = list() //List of purchased mutators - var/user_level = 0 //Level of the Queen for Hive or the individual xeno. Starting at -1 so at tier 0 you'd get some mutators to play with - - var/tackle_strength_bonus = 0 - -//Functions to be overloaded to call for when something gets updated on the xenos -/datum/mutator_set/proc/recalculate_everything(description) -/datum/mutator_set/proc/recalculate_stats(description) -/datum/mutator_set/proc/recalculate_actions(description) -/datum/mutator_set/proc/recalculate_pheromones(description) -/datum/mutator_set/proc/give_feedback(description) - - -/datum/mutator_set/proc/purchase_mutator(name) - return FALSE - -/datum/mutator_set/proc/list_and_purchase_mutators() - if(SSticker.mode?.flags_round_type & MODE_NO_XENO_EVOLVE) - to_chat(usr, SPAN_WARNING("This mode disallows xeno mutators.")) - return FALSE - - var/list/mutators_for_purchase = available_mutators() - var/mob/living/carbon/xenomorph/Xeno = usr - if(mutators_for_purchase.len == 0) - to_chat(usr, "There are no available strains.") - var/pick = tgui_input_list(usr, "Which strain would you like to purchase?", "Purchase strain", mutators_for_purchase, theme="hive_status") - if(!pick) - return FALSE - if(alert(usr, "[GLOB.xeno_mutator_list[pick].description]\n\nConfirm mutation?", "Strain purchase", "Yes", "No") != "Yes") return - if(!Xeno.strain_checks()) - return - if(GLOB.xeno_mutator_list[pick].apply_mutator(src)) - to_chat(usr, "Mutation complete!") - return TRUE - else - to_chat(usr, "Mutation failed!") - return FALSE - -/datum/mutator_set/proc/can_purchase_mutator(mutator_name) - var/datum/xeno_mutator/XM = GLOB.xeno_mutator_list[mutator_name] - if(user_level < XM.required_level) - return FALSE //xeno doesn't meet the level requirements - if(remaining_points < XM.cost) - return FALSE //mutator is too expensive - if(XM.unique) - if(XM.name in purchased_mutators) - return FALSE //unique mutator already purchased - if(XM.keystone) - for(var/name in purchased_mutators) - if(GLOB.xeno_mutator_list[name].keystone) - return FALSE //We already have a keystone mutator - if(XM.flaw) - for(var/name in purchased_mutators) - if(GLOB.xeno_mutator_list[name].flaw) - return FALSE //We already have a flaw mutator - return TRUE - -//Lists mutators available for purchase -/datum/mutator_set/proc/available_mutators() - var/list/can_purchase = list() - - for(var/str in GLOB.xeno_mutator_list) - if (can_purchase_mutator(str)) - can_purchase += str //can purchase! - - return can_purchase - -//Mutators applying to the Hive as a whole -/datum/mutator_set/hive_mutators - var/datum/hive_status/hive //Which hive do these mutators apply to. Need this to affect variables there - var/leader_count_boost = 0 - var/maturation_multiplier = 1 - var/tier_slot_multiplier = 1 - var/larva_gestation_multiplier = 1 - var/bonus_larva_spawn_chance = 0 - -/datum/mutator_set/hive_mutators/list_and_purchase_mutators() - if(!hive || !hive.living_xeno_queen) - return //somehow Queen is not set but this function was called... - if(hive.living_xeno_queen.is_dead()) - return //Dead xenos can't mutate! - if(hive.living_xeno_queen.hardcore) - to_chat(usr, SPAN_WARNING("No time for that, must KILL!")) - return - if(!hive.living_xeno_queen.ovipositor) - to_chat(usr, "You must be in Ovipositor to purchase Hive Mutators.") - return - . = ..() - if (. == TRUE && purchased_mutators.len) - var/m = purchased_mutators[purchased_mutators.len] - log_mutator("[hive.living_xeno_queen.name] purchased Hive Mutator '[m]'") - -/datum/mutator_set/hive_mutators/can_purchase_mutator(mutator_name) - if (..() == FALSE) - return FALSE //Can't buy it regardless - var/datum/xeno_mutator/XM = GLOB.xeno_mutator_list[mutator_name] - if(XM.individual_only) - return FALSE //We can't buy individual mutators on a Hive level - return TRUE - -//Called when the Queen dies -// This isn't currently used, but if anyone wants to, expect it to be broken because -// I haven't made any effort to integrate it into the new system (Fourkhan, 5/11/19) -/datum/mutator_set/hive_mutators/proc/reset_mutators() - if(purchased_mutators.len == 0) - //No mutators purchased, nothing to reset! - return - - var/depowered = FALSE - for(var/name in purchased_mutators) - if(!GLOB.xeno_mutator_list[name].death_persistent) - purchased_mutators -= name - depowered = TRUE - - if(!depowered) - return //We haven't lost anything - - tackle_strength_bonus = 0 - - leader_count_boost = 0 - maturation_multiplier = 1 - tier_slot_multiplier = 1 - larva_gestation_multiplier = 1 - bonus_larva_spawn_chance = 0 - - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_everything() - to_chat(X, SPAN_XENOANNOUNCE("Queen's influence wanes. You feel weak!")) - playsound(X.loc, "alien_help", 25) - X.xeno_jitter(15) - -/datum/mutator_set/hive_mutators/recalculate_everything(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_everything() - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) -/datum/mutator_set/hive_mutators/recalculate_stats(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_stats() - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) -/datum/mutator_set/hive_mutators/recalculate_actions(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_actions() - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) -/datum/mutator_set/hive_mutators/recalculate_pheromones(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_pheromones() - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) -/datum/mutator_set/hive_mutators/proc/recalculate_maturation(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - X.recalculate_maturation() - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) -/datum/mutator_set/hive_mutators/proc/recalculate_hive(description) - hive.recalculate_hive() - give_feedback(description) -/datum/mutator_set/hive_mutators/give_feedback(description) - for(var/mob/living/carbon/xenomorph/X in GLOB.living_xeno_list) - if(X.hivenumber == hive.hivenumber) - to_chat(X, SPAN_XENOANNOUNCE("Queen has granted the Hive a boon! [description]")) - X.xeno_jitter(15) - -//Mutators applying to an individual xeno -/datum/mutator_set/individual_mutators - var/mob/living/carbon/xenomorph/xeno - var/pull_multiplier = 1 - var/egg_laying_multiplier = 1 - var/need_weeds = TRUE - //Strains Below - remaining_points = 6 - - -/datum/mutator_set/individual_mutators/Destroy() - if(xeno) - xeno.mutators = null - xeno = null - . = ..() - -/datum/mutator_set/individual_mutators/list_and_purchase_mutators() - . = ..() - if (. == TRUE && purchased_mutators.len) - var/m = purchased_mutators[purchased_mutators.len] - log_mutator("[xeno.name] purchased Mutator '[m]'") - -/datum/mutator_set/individual_mutators/can_purchase_mutator(mutator_name) - if (..() == FALSE) - return FALSE //Can't buy it regardless - var/datum/xeno_mutator/XM = GLOB.xeno_mutator_list[mutator_name] - if(XM.hive_only) - return FALSE //We can't buy Hive mutators on an individual level - if(XM.caste_whitelist && (XM.caste_whitelist.len > 0) && !(xeno.caste_type in XM.caste_whitelist)) - return FALSE //We are not on the whitelist - return TRUE - -/datum/mutator_set/individual_mutators/recalculate_actions(description, flavor_description = null) - xeno.recalculate_actions() - to_chat(xeno, SPAN_XENOANNOUNCE("[description]")) - if (flavor_description != null) - to_chat(xeno, SPAN_XENOLEADER("[flavor_description]")) - xeno.xeno_jitter(15) - - -/mob/living/carbon/xenomorph/queen/verb/purchase_hive_mutators() - set name = "Purchase Hive Mutators" - set desc = "Purchase Mutators affecting the entire Hive." - set category = "Alien" - if(hardcore) - to_chat(usr, SPAN_WARNING("No time for that, must KILL!")) - return - if(!src.hive || !src.hive.mutators) - return //For some reason we don't have mutators - src.hive.mutators.list_and_purchase_mutators() - -/mob/living/carbon/xenomorph/verb/purchase_strains() - set name = "Purchase Strains" - set desc = "Purchase Strains for yourself." - set category = "Alien" - - if(!strain_checks()) - return - if(!src.mutators) - return //For some reason we don't have mutators - src.mutators.list_and_purchase_mutators() - -/mob/living/carbon/xenomorph/proc/strain_checks() - if(!check_state(TRUE)) - return FALSE - - if(is_ventcrawling) - to_chat(src, SPAN_WARNING("This place is too constraining to take a strain.")) - return FALSE - - if(!isturf(loc)) - to_chat(src, SPAN_WARNING("You can't take a strain here.")) - return FALSE - - if(handcuffed || legcuffed) - to_chat(src, SPAN_WARNING("The restraints are too restricting to allow you to take a strain.")) - return FALSE - - if(health < maxHealth) - to_chat(src, SPAN_WARNING("You must be at full health to take a strain.")) - return FALSE - - if(agility || fortify || crest_defense || stealth) - to_chat(src, SPAN_WARNING("You cannot take a strain while in this stance.")) - return FALSE - - return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm index 68c422619d..3f37845380 100644 --- a/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm +++ b/code/modules/mob/living/carbon/xenomorph/XenoOverwatch.dm @@ -18,6 +18,7 @@ return TRUE /datum/action/xeno_action/watch_xeno/action_activate() + . = ..() var/mob/living/carbon/xenomorph/X = owner if (!X.check_state(TRUE)) return FALSE @@ -27,7 +28,7 @@ isQueen = TRUE if(!X.hive.living_xeno_queen && !X.hive.allow_no_queen_actions) - to_chat(X, SPAN_WARNING("There is no Queen. You are alone.")) + to_chat(X, SPAN_WARNING("There is no Queen. We are alone.")) return // We are already overwatching something @@ -43,12 +44,12 @@ var/list/possible_xenos = list() for(var/mob/living/carbon/xenomorph/T in GLOB.living_xeno_list) - if (T != X && !is_admin_level(T.z) && X.hivenumber == T.hivenumber) // Can't overwatch yourself, Xenos in Thunderdome, or Xenos in other hives + if (T != X && !should_block_game_interaction(T) && X.hivenumber == T.hivenumber) // Can't overwatch yourself, Xenos in Thunderdome, or Xenos in other hives possible_xenos += T var/mob/living/carbon/xenomorph/selected_xeno = tgui_input_list(X, "Target", "Watch which xenomorph?", possible_xenos, theme="hive_status") - if (!selected_xeno || QDELETED(selected_xeno) || selected_xeno == X.observed_xeno || selected_xeno.stat == DEAD || is_admin_level(selected_xeno.z) || !X.check_state(TRUE)) + if (!selected_xeno || QDELETED(selected_xeno) || selected_xeno == X.observed_xeno || selected_xeno.stat == DEAD || should_block_game_interaction(selected_xeno) || !X.check_state(TRUE)) X.overwatch(X.observed_xeno, TRUE) // Cancel OW else if (!isQueen) // Regular Xeno OW vs Queen X.overwatch(selected_xeno) @@ -73,7 +74,7 @@ UnregisterSignal(src, COMSIG_MOB_MOVE_OR_LOOK) if(oldXeno) - to_chat(src, SPAN_XENOWARNING("You stop watching [oldXeno].")) + to_chat(src, SPAN_XENOWARNING("We stop watching [oldXeno].")) UnregisterSignal(oldXeno, COMSIG_PARENT_QDELETING) if(!QDELETED(oldXeno)) oldXeno.hud_set_queen_overwatch() @@ -82,22 +83,30 @@ return if(!hive.living_xeno_queen && !hive.allow_no_queen_actions) - to_chat(src, SPAN_WARNING("There is no Queen. You are alone.")) + to_chat(src, SPAN_WARNING("There is no Queen. We are alone.")) return if(targetXeno == src) - to_chat(src, SPAN_XENOWARNING("You can't watch yourself!")) + to_chat(src, SPAN_XENOWARNING("We can't watch ourselves!")) return - if(targetXeno.interference) - to_chat(src, SPAN_XENOWARNING("Your target's psychic connection is cut off!")) + if(HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_XENOWARNING("Our psychic connection is cut off!")) + return + + if(HAS_TRAIT(targetXeno, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_XENOWARNING("Our sister's psychic connection is cut off!")) + return + + if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) + to_chat(src, SPAN_XENOWARNING("We cannot do this in our current state!")) return if(observed_xeno && targetXeno && observed_xeno == targetXeno) if(istype(targetXeno, /obj/effect/alien/resin/marker)) - to_chat(src, SPAN_XENOWARNING("You are already watching that mark!")) + to_chat(src, SPAN_XENOWARNING("We are already watching that mark!")) return - to_chat(src, SPAN_XENOWARNING("You are already watching that sister!")) + to_chat(src, SPAN_XENOWARNING("We are already watching that sister!")) return if(caste_type != XENO_CASTE_QUEEN && is_zoomed) @@ -128,8 +137,19 @@ // Called from xeno Life() // Makes sure that Xeno overwatch is reset when the overwatched Xeno dies. /mob/living/carbon/xenomorph/proc/handle_overwatch() - if (observed_xeno && (observed_xeno.stat == DEAD || QDELETED(observed_xeno))) + if(observed_xeno) + if(observed_xeno.stat == DEAD || QDELETED(observed_xeno)) + overwatch(null, TRUE) + return + + if(HAS_TRAIT(observed_xeno, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_XENOWARNING("Our sister's psychic connection is cut off!")) + overwatch(null, TRUE) + return + + if(HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE)) overwatch(null, TRUE) + return /mob/living/carbon/xenomorph/proc/overwatch_handle_mob_move_or_look(mob/living/carbon/xenomorph/mover, actually_moving, direction, specific_direction) SIGNAL_HANDLER @@ -177,7 +197,7 @@ var/mob/living/carbon/xenomorph/xenoTarget = locate(href_list[XENO_OVERWATCH_TARGET_HREF]) in GLOB.living_xeno_list var/mob/living/carbon/xenomorph/xenoSrc = locate(href_list[XENO_OVERWATCH_SRC_HREF]) in GLOB.living_xeno_list - if(!istype(xenoTarget) || xenoTarget.stat == DEAD || is_admin_level(xenoTarget.z)) + if(!istype(xenoTarget) || xenoTarget.stat == DEAD || should_block_game_interaction(xenoTarget)) return if(!istype(xenoSrc) || xenoSrc.stat == DEAD) @@ -199,7 +219,7 @@ to_chat(src, SPAN_XENONOTICE("That resin mark no longer exists.")) return else - to_chat(src, SPAN_XENONOTICE("You psychically observe the [target.mark_meaning.name] resin mark in [get_area_name(target)].")) + to_chat(src, SPAN_XENONOTICE("We psychically observe the [target.mark_meaning.name] resin mark in [get_area_name(target)].")) overwatch(target) if(href_list["track"]) var/input2 = href_list["target"] diff --git a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm index 247d4e654d..d09da80c44 100644 --- a/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm +++ b/code/modules/mob/living/carbon/xenomorph/XenoProcs.dm @@ -15,7 +15,7 @@ if(3) fontsize_style = "large" - if(SSticker.mode && SSticker.mode.xenomorphs.len) //Send to only xenos in our gamemode list. This is faster than scanning all mobs + if(SSticker.mode && length(SSticker.mode.xenomorphs)) //Send to only xenos in our gamemode list. This is faster than scanning all mobs for(var/datum/mind/L in SSticker.mode.xenomorphs) var/mob/living/carbon/M = L.current if(M && istype(M) && !M.stat && M.client && (!hivenumber || M.hivenumber == hivenumber)) //Only living and connected xenos @@ -26,7 +26,7 @@ if(text == "" || !hivenumber) return //Logic - if(SSticker.mode && SSticker.mode.xenomorphs.len) //Send to only xenos in our gamemode list. This is faster than scanning all mobs + if(SSticker.mode && length(SSticker.mode.xenomorphs)) //Send to only xenos in our gamemode list. This is faster than scanning all mobs for(var/datum/mind/living in SSticker.mode.xenomorphs) var/mob/living/carbon/xenomorph/xeno = living.current if(istype(xeno) && !xeno.stat && xeno.client && xeno.hivenumber == hivenumber) //Only living and connected xenos @@ -45,10 +45,10 @@ . += "" - . += "Health: [round(health)]/[round(maxHealth)]" - . += "Armor: [round(0.01*armor_integrity*armor_deflection)+(armor_deflection_buff-armor_deflection_debuff)]/[round(armor_deflection)]" - . += "Plasma: [round(plasma_stored)]/[round(plasma_max)]" - . += "Slash Damage: [round((melee_damage_lower+melee_damage_upper)/2)]" + . += "Health: [floor(health)]/[floor(maxHealth)]" + . += "Armor: [floor(0.01*armor_integrity*armor_deflection)+(armor_deflection_buff-armor_deflection_debuff)]/[floor(armor_deflection)]" + . += "Plasma: [floor(plasma_stored)]/[floor(plasma_max)]" + . += "Slash Damage: [floor((melee_damage_lower+melee_damage_upper)/2)]" var/shieldtotal = 0 for (var/datum/xeno_shield/XS in xeno_shields) @@ -67,7 +67,7 @@ . += "" - var/stored_evolution = round(evolution_stored) + var/stored_evolution = floor(evolution_stored) var/evolve_progress if(caste && caste.evolution_allowed) @@ -151,14 +151,14 @@ /mob/living/carbon/xenomorph/proc/check_state(permissive = FALSE) if(!permissive) if(is_mob_incapacitated() || body_position == LYING_DOWN || buckled || evolving || !isturf(loc)) - to_chat(src, SPAN_WARNING("You cannot do this in your current state.")) + to_chat(src, SPAN_WARNING("We cannot do this in our current state.")) return FALSE else if(caste_type != XENO_CASTE_QUEEN && observed_xeno) - to_chat(src, SPAN_WARNING("You cannot do this in your current state.")) + to_chat(src, SPAN_WARNING("We cannot do this in our current state.")) return FALSE else if(is_mob_incapacitated() || buckled || evolving) - to_chat(src, SPAN_WARNING("You cannot do this in your current state.")) + to_chat(src, SPAN_WARNING("We cannot do this in our current state.")) return FALSE return TRUE @@ -166,12 +166,12 @@ //Checks your plasma levels and gives a handy message. /mob/living/carbon/xenomorph/proc/check_plasma(value) if(stat) - to_chat(src, SPAN_WARNING("You cannot do this in your current state.")) + to_chat(src, SPAN_WARNING("We cannot do this in our current state.")) return FALSE if(value) if(plasma_stored < value) - to_chat(src, SPAN_WARNING("You do not have enough plasma to do this. You require [value] plasma but have only [plasma_stored] stored.")) + to_chat(src, SPAN_WARNING("We do not have enough plasma to do this. We require [value] plasma but have only [plasma_stored] stored.")) return FALSE return TRUE @@ -261,9 +261,10 @@ move_delay = . + /mob/living/carbon/xenomorph/proc/pounced_mob(mob/living/L) // This should only be called back by a mob that has pounce, so no need to check - var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce) + var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce) // Unconscious or dead, or not throwing but used pounce. if(!check_state() || (!throwing && !pounceAction.action_cooldown_check())) @@ -279,7 +280,7 @@ var/mob/living/carbon/human/H = M if(H.check_shields(15, "the pounce")) //Human shield block. visible_message(SPAN_DANGER("[src] slams into [H]!"), - SPAN_XENODANGER("You slam into [H]!"), null, 5) + SPAN_XENODANGER("We slam into [H]!"), null, 5) KnockDown(1) Stun(1) throwing = FALSE //Reset throwing manually. @@ -288,28 +289,28 @@ if(isyautja(H)) if(H.check_shields(0, "the pounce", 1)) - visible_message(SPAN_DANGER("[H] blocks the pounce of [src] with the combistick!"), SPAN_XENODANGER("[H] blocks your pouncing form with the combistick!"), null, 5) + visible_message(SPAN_DANGER("[H] blocks the pounce of [src] with the combistick!"), SPAN_XENODANGER("[H] blocks our pouncing form with the combistick!"), null, 5) apply_effect(3, WEAKEN) throwing = FALSE playsound(H, "bonk", 75, FALSE) return else if(prob(75)) //Body slam the fuck out of xenos jumping at your front. visible_message(SPAN_DANGER("[H] body slams [src]!"), - SPAN_XENODANGER("[H] body slams you!"), null, 5) + SPAN_XENODANGER("[H] body slams us!"), null, 5) KnockDown(3) Stun(3) throwing = FALSE return if(issynth(H) && prob(80)) visible_message(SPAN_DANGER("[H] withstands being pounced and slams down [src]!"), - SPAN_XENODANGER("[H] throws you down after withstanding the pounce!"), null, 5) + SPAN_XENODANGER("[H] throws us down after withstanding the pounce!"), null, 5) KnockDown(3.5) Stun(3.5) throwing = FALSE return - visible_message(SPAN_DANGER("[src] [pounceAction.ability_name] onto [M]!"), SPAN_XENODANGER("You [pounceAction.ability_name] onto [M]!"), null, 5) + visible_message(SPAN_DANGER("[src] [pounceAction.ability_name] onto [M]!"), SPAN_XENODANGER("We [pounceAction.ability_name] onto [M]!"), null, 5) if (pounceAction.knockdown) M.KnockDown(pounceAction.knockdown_duration) @@ -335,7 +336,7 @@ pounced_mob(L) /mob/living/carbon/xenomorph/proc/pounced_obj(obj/O) - var/datum/action/xeno_action/activable/pounce/pounceAction = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce) + var/datum/action/xeno_action/activable/pounce/pounceAction = get_action(src, /datum/action/xeno_action/activable/pounce) // Unconscious or dead, or not throwing but used pounce if(!check_state() || (!throwing && !pounceAction.action_cooldown_check())) @@ -369,13 +370,13 @@ //Bleuugh /mob/living/carbon/xenomorph/proc/empty_gut() - if(stomach_contents.len) + if(length(stomach_contents)) for(var/atom/movable/S in stomach_contents) stomach_contents.Remove(S) S.acid_damage = 0 //Reset the acid damage S.forceMove(get_true_turf(src)) - if(contents.len) //Get rid of anything that may be stuck inside us as well + if(length(contents)) //Get rid of anything that may be stuck inside us as well for(var/atom/movable/A in contents) A.forceMove(get_true_turf(src)) @@ -391,33 +392,34 @@ update_sight() /mob/living/carbon/xenomorph/proc/regurgitate(mob/living/victim, stuns = FALSE) - if(stomach_contents.len) + if(length(stomach_contents)) if(victim) stomach_contents.Remove(victim) victim.acid_damage = 0 victim.forceMove(get_true_turf(loc)) visible_message(SPAN_XENOWARNING("[src] hurls out the contents of their stomach!"), \ - SPAN_XENOWARNING("You hurl out the contents of your stomach!"), null, 5) + SPAN_XENOWARNING("We hurl out the contents of our stomach!"), null, 5) playsound(get_true_location(loc), 'sound/voice/alien_drool2.ogg', 50, 1) + log_interact(src, victim, "[key_name(src)] regurgitated [key_name(victim)] at [get_area_name(loc)]") if (stuns) victim.adjust_effect(2, STUN) else - to_chat(src, SPAN_WARNING("There's nothing in your belly that needs regurgitating.")) + to_chat(src, SPAN_WARNING("There's nothing in our belly that needs regurgitating.")) -/mob/living/carbon/xenomorph/proc/check_alien_construction(turf/current_turf, check_blockers = TRUE, silent = FALSE, check_doors = TRUE) +/mob/living/carbon/xenomorph/proc/check_alien_construction(turf/current_turf, check_blockers = TRUE, silent = FALSE, check_doors = TRUE, ignore_nest = FALSE) var/has_obstacle for(var/obj/O in current_turf) if(check_blockers && istype(O, /obj/effect/build_blocker)) var/obj/effect/build_blocker/bb = O if(!silent) - to_chat(src, SPAN_WARNING("This is too close to a [bb.linked_structure]!")) + to_chat(src, SPAN_WARNING("This is too close to \a [bb.linked_structure]!")) return if(check_doors) if(istype(O, /obj/structure/machinery/door)) if(!silent) - to_chat(src, SPAN_WARNING("\The [O] is blocking the resin! There's not enough space to build that here.")) + to_chat(src, SPAN_WARNING("[O] is blocking the resin! There's not enough space to build that here.")) return if(istype(O, /obj/item/clothing/mask/facehugger)) if(!silent) @@ -445,6 +447,8 @@ if(P.chair_state != DROPSHIP_CHAIR_BROKEN) has_obstacle = TRUE break + else if(istype(O, /obj/structure/bed/nest) && ignore_nest) + continue else has_obstacle = TRUE break @@ -503,11 +507,11 @@ if(!Q || !Q.ovipositor || hive_pos == NORMAL_XENO || !Q.current_aura || Q.loc.z != loc.z) //We are no longer a leader, or the Queen attached to us has dropped from her ovi, disabled her pheromones or even died leader_aura_strength = 0 leader_current_aura = "" - to_chat(src, SPAN_XENOWARNING("Your pheromones wane. The Queen is no longer granting you her pheromones.")) + to_chat(src, SPAN_XENOWARNING("Our pheromones wane. The Queen is no longer granting us her pheromones.")) else leader_aura_strength = Q.aura_strength leader_current_aura = Q.current_aura - to_chat(src, SPAN_XENOWARNING("Your pheromones have changed. The Queen has new plans for the Hive.")) + to_chat(src, SPAN_XENOWARNING("Our pheromones have changed. The Queen has new plans for the Hive.")) hud_set_pheromone() /mob/living/carbon/xenomorph/proc/nocrit(wowave) @@ -535,81 +539,9 @@ if(client) client.mouse_pointer_icon = initial(client.mouse_pointer_icon) // Reset our mouse pointer when we no longer have an action queued. -// Called when pulling something and attacking yourself with the pull -/mob/living/carbon/xenomorph/proc/pull_power(mob/M) - if(iswarrior(src) && !ripping_limb && M.stat != DEAD) - if(M.status_flags & XENO_HOST) - to_chat(src, SPAN_XENOWARNING("This would harm the embryo!")) - return - ripping_limb = TRUE - if(rip_limb(M)) - stop_pulling() - ripping_limb = FALSE - - -// Warrior Rip Limb - called by pull_power() -/mob/living/carbon/xenomorph/proc/rip_limb(mob/M) - if(!istype(M, /mob/living/carbon/human)) - return FALSE - - if(action_busy) //can't stack the attempts - return FALSE - - var/mob/living/carbon/human/H = M - var/obj/limb/L = H.get_limb(check_zone(zone_selected)) - - if(can_not_harm(H)) - to_chat(src, SPAN_XENOWARNING("You can't harm this host!")) - return - - if(!L || L.body_part == BODY_FLAG_CHEST || L.body_part == BODY_FLAG_GROIN || (L.status & LIMB_DESTROYED)) //Only limbs and head. - to_chat(src, SPAN_XENOWARNING("You can't rip off that limb.")) - return FALSE - var/limb_time = rand(40,60) - - if(L.body_part == BODY_FLAG_HEAD) - limb_time = rand(90,110) - - visible_message(SPAN_XENOWARNING("[src] begins pulling on [M]'s [L.display_name] with incredible strength!"), \ - SPAN_XENOWARNING("You begin to pull on [M]'s [L.display_name] with incredible strength!")) - - if(!do_after(src, limb_time, INTERRUPT_ALL|INTERRUPT_DIFF_SELECT_ZONE, BUSY_ICON_HOSTILE) || M.stat == DEAD) - to_chat(src, SPAN_NOTICE("You stop ripping off the limb.")) - return FALSE - - if(L.status & LIMB_DESTROYED) - return FALSE - - if(L.status & (LIMB_ROBOT|LIMB_SYNTHSKIN)) - L.take_damage(rand(30,40), 0, 0) // just do more damage - visible_message(SPAN_XENOWARNING("You hear [M]'s [L.display_name] being pulled beyond its load limits!"), \ - SPAN_XENOWARNING("[M]'s [L.display_name] begins to tear apart!")) - else - visible_message(SPAN_XENOWARNING("You hear the bones in [M]'s [L.display_name] snap with a sickening crunch!"), \ - SPAN_XENOWARNING("[M]'s [L.display_name] bones snap with a satisfying crunch!")) - L.take_damage(rand(15,25), 0, 0) - L.fracture(100) - M.last_damage_data = create_cause_data(initial(caste_type), src) - src.attack_log += text("\[[time_stamp()]\] ripped the [L.display_name] off of [M.name] ([M.ckey]) 1/2 progress") - M.attack_log += text("\[[time_stamp()]\] had their [L.display_name] ripped off by [src.name] ([src.ckey]) 1/2 progress") - log_attack("[src.name] ([src.ckey]) ripped the [L.display_name] off of [M.name] ([M.ckey]) 1/2 progress") - - if(!do_after(src, limb_time, INTERRUPT_ALL|INTERRUPT_DIFF_SELECT_ZONE, BUSY_ICON_HOSTILE) || M.stat == DEAD || iszombie(M)) - to_chat(src, SPAN_NOTICE("You stop ripping off the limb.")) - return FALSE - - if(L.status & LIMB_DESTROYED) - return FALSE - - visible_message(SPAN_XENOWARNING("[src] rips [M]'s [L.display_name] away from \his body!"), \ - SPAN_XENOWARNING("[M]'s [L.display_name] rips away from \his body!")) - src.attack_log += text("\[[time_stamp()]\] ripped the [L.display_name] off of [M.name] ([M.ckey]) 2/2 progress") - M.attack_log += text("\[[time_stamp()]\] had their [L.display_name] ripped off by [src.name] ([src.ckey]) 2/2 progress") - log_attack("[src.name] ([src.ckey]) ripped the [L.display_name] off of [M.name] ([M.ckey]) 2/2 progress") - - L.droplimb(0, 0, initial(name)) - - return TRUE +/// Called when pulling something and attacking yourself wth the pull (Z hotkey) override for caste specific behaviour +/mob/living/carbon/xenomorph/proc/pull_power(mob/mob) + return // Vent Crawl /mob/living/carbon/xenomorph/proc/vent_crawl() @@ -667,7 +599,7 @@ burn_amount *= 0.5 apply_damage(burn_amount, BURN) - to_chat(src, SPAN_DANGER("Your flesh, it melts!")) + to_chat(src, SPAN_DANGER("Our flesh, it melts!")) updatehealth() return TRUE @@ -695,8 +627,8 @@ return target.xenos_tracking |= src tracked_marker = target - to_chat(src, SPAN_XENONOTICE("You start tracking the [target.mark_meaning.name] resin mark.")) - to_chat(src, SPAN_INFO("shift click the compass to watch the mark, alt click to stop tracking")) + to_chat(src, SPAN_XENONOTICE("We start tracking the [target.mark_meaning.name] resin mark.")) + to_chat(src, SPAN_INFO("Shift click the compass to watch the mark, alt click to stop tracking")) /mob/living/carbon/xenomorph/proc/stop_tracking_resin_mark(destroyed, silent = FALSE) //tracked_marker shouldnt be nulled outside this PROC!! >:C if(QDELETED(src)) @@ -713,11 +645,15 @@ if(destroyed) to_chat(src, SPAN_XENONOTICE("The [tracked_marker.mark_meaning.name] resin mark has ceased to exist.")) else - to_chat(src, SPAN_XENONOTICE("You stop tracking the [tracked_marker.mark_meaning.name] resin mark.")) + to_chat(src, SPAN_XENONOTICE("We stop tracking the [tracked_marker.mark_meaning.name] resin mark.")) tracked_marker.xenos_tracking -= src tracked_marker = null + ///This permits xenos with thumbs to fire guns and arm grenades. God help us all. +/mob/living/carbon/xenomorph/IsAdvancedToolUser() + return HAS_TRAIT(src, TRAIT_OPPOSABLE_THUMBS) + /mob/living/carbon/xenomorph/proc/do_nesting_host(mob/current_mob, nest_structural_base) var/list/xeno_hands = list(get_active_hand(), get_inactive_hand()) @@ -785,3 +721,45 @@ /mob/living/carbon/xenomorph/lying_angle_on_lying_down(new_lying_angle) return // Do not rotate xenos around on the floor, their sprite is already top-down'ish + +/** + * Helper procedure for throwing other carbon based mobs around + * Pretty much a wrapper to [/atom/movable/proc/throw_atom] with extra handling + * + * * target - the target carbon mob that will be thrown + * * direction - the direction the target will be thrown toward, or if null, infered from relative position with target + * * distance - the total distance the throw will be made for + * * speed - throw_atom relative speed of the throw, check [SPEED_AVERAGE] for details + * * shake_camera - whether to shake the thrown mob camera on throw + * * immobilize - if TRUE the mob will be immobilized during the throw, ensuring it doesn't move and break it + */ +/mob/living/carbon/xenomorph/proc/throw_carbon(mob/living/carbon/target, direction, distance, speed = SPEED_VERY_FAST, shake_camera = TRUE, immobilize = TRUE) + if(!direction) + direction = get_dir(src, target) + var/turf/target_destination = get_ranged_target_turf(target, direction, distance) + + var/list/end_throw_callbacks + if(immobilize) + end_throw_callbacks = list(CALLBACK(src, PROC_REF(throw_carbon_end), target)) + ADD_TRAIT(target, TRAIT_IMMOBILIZED, XENO_THROW_TRAIT) + + target.throw_atom(target_destination, distance, speed, src, spin = TRUE, end_throw_callbacks = end_throw_callbacks) + if(shake_camera) + shake_camera(target, 10, 1) + +/// Handler callback to reset immobilization status after a successful [/mob/living/carbon/xenomorph/proc/throw_carbon] +/mob/living/carbon/xenomorph/proc/throw_carbon_end(mob/living/carbon/target) + REMOVE_TRAIT(target, TRAIT_IMMOBILIZED, XENO_THROW_TRAIT) + +/// snowflake proc to clear effects from research warcrimes +/mob/living/carbon/xenomorph/proc/clear_debuffs() + SEND_SIGNAL(src, COMSIG_XENO_DEBUFF_CLEANSE) + SetKnockOut(0) + SetStun(0) + SetKnockDown(0) + SetDaze(0) + SetSlow(0) + SetSuperslow(0) + SetRoot(0) + SetEyeBlur(0) + updatehealth() diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm index f27616508d..10df5ae197 100644 --- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm +++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm @@ -52,6 +52,8 @@ gender = NEUTER icon_size = 48 black_market_value = KILL_MENDOZA + ///How much to horizontally adjust the sprites of held item onmobs by. Based on icon size. Most xenos have hands about the same height as a human's. + var/xeno_inhand_item_offset dead_black_market_value = 50 light_system = MOVABLE_LIGHT var/obj/item/clothing/suit/wear_suit = null @@ -115,10 +117,6 @@ var/crit_grace_time = 1 SECONDS var/next_grace_time = 0 - //Amount of construction resources stored internally - var/crystal_stored = 0 - var/crystal_max = 0 - var/evasion = 0 // RNG "Armor" // Armor @@ -135,10 +133,8 @@ var/weed_level = WEED_LEVEL_STANDARD var/acid_level = 0 - // Mutator-related and other important vars - var/mutation_icon_state = null - var/mutation_type = null - var/datum/mutator_set/individual_mutators/mutators = new + /// The xeno's strain, if they've taken one. + var/datum/xeno_strain/strain = null // Hive-related vars var/datum/hive_status/hive @@ -223,11 +219,11 @@ ////////////////////////////////////////////////////////////////// var/xeno_mobhud = FALSE //whether the xeno mobhud is activated or not. var/xeno_hostile_hud = FALSE // 'Hostile' HUD - the verb Xenos use to see tags, etc on humans + var/execute_hud = FALSE // Crit HUD, only visible to vampire lurkers var/list/plasma_types = list() //The types of plasma the caste contains var/list/xeno_shields = list() // List of /datum/xeno_shield that holds all active shields on the Xeno. var/acid_splash_cooldown = 5 SECONDS //Time it takes between acid splash retaliate procs var/acid_splash_last //Last recorded time that an acid splash procced - var/interference = 0 // Stagger for predator weapons. Prevents hivemind usage, queen overwatching, etc. var/mob/living/carbon/xenomorph/observed_xeno // Overwatched xeno for xeno hivemind vision var/need_weeds = TRUE // Do we need weeds to regen HP? var/datum/behavior_delegate/behavior_delegate = null // Holds behavior delegate. Governs all 'unique' hooked behavior of the Xeno. Set by caste datums and strains. @@ -254,6 +250,11 @@ // Life reduction variables. var/life_slow_reduction = -1.5 + //Research organ harvesting. + var/organ_removed = FALSE + /// value of organ in each caste, e.g. 10k is autodoc larva removal. runner is 500 + var/organ_value = 0 + ////////////////////////////////////////////////////////////////// // @@ -268,6 +269,7 @@ // an easily modularizable way. So, here you go. // ////////////////////////////////////////////////////////////////// + var/tunnel = FALSE /// for check on lurker invisibility var/stealth = FALSE @@ -342,158 +344,166 @@ var/atom/movable/vis_obj/xeno_wounds/wound_icon_holder var/atom/movable/vis_obj/xeno_pack/backpack_icon_holder + /// If TRUE, the xeno cannot slash anything + var/cannot_slash = FALSE -/mob/living/carbon/xenomorph/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number, ai_hard_off = FALSE) - var/area/A = get_area(src) - if(A && A.statistic_exempt) - statistic_exempt = TRUE +/mob/living/carbon/xenomorph/Initialize(mapload, mob/living/carbon/xenomorph/old_xeno, hivenumber, ai_hard_off = FALSE) + + if(old_xeno && old_xeno.hivenumber) + src.hivenumber = old_xeno.hivenumber + else if(hivenumber) + src.hivenumber = hivenumber + //putting the organ in for research + if(organ_value != 0) + var/obj/item/organ/xeno/organ = new() //give + organ.forceMove(src) + organ.research_value = organ_value + organ.caste_origin = caste_type + organ.icon_state = get_organ_icon() + + var/datum/hive_status/hive = GLOB.hive_datum[src.hivenumber] + + if(hive) + hive.add_xeno(src) wound_icon_holder = new(null, src) vis_contents += wound_icon_holder - if(oldXeno) - set_movement_intent(oldXeno.m_intent) - hivenumber = oldXeno.hivenumber - nicknumber = oldXeno.nicknumber - life_kills_total = oldXeno.life_kills_total - life_damage_taken_total = oldXeno.life_damage_taken_total - evolution_stored = oldXeno.evolution_stored - if(oldXeno.iff_tag) - iff_tag = oldXeno.iff_tag - iff_tag.forceMove(src) - oldXeno.iff_tag = null - else if (h_number) - hivenumber = h_number - set_languages(list(LANGUAGE_XENOMORPH, LANGUAGE_HIVEMIND)) - if(oldXeno) - for(var/datum/language/L in oldXeno.languages) - add_language(L.name)//Make sure to keep languages (mostly for event Queens that know English) - // Well, not yet, technically - var/datum/hive_status/in_hive = GLOB.hive_datum[hivenumber] - if(in_hive) - in_hive.add_xeno(src) - // But now we are! + ///Handle transferring things from the old Xeno if we have one in the case of evolve, devolve etc. + if(old_xeno) + src.nicknumber = old_xeno.nicknumber + src.life_kills_total = old_xeno.life_kills_total + src.life_damage_taken_total = old_xeno.life_damage_taken_total + src.evolution_stored = old_xeno.evolution_stored - for(var/T in in_hive.hive_inherant_traits) - ADD_TRAIT(src, T, TRAIT_SOURCE_HIVE) + for(var/datum/language/language as anything in old_xeno.languages) + add_language(language.name)//Make sure to keep languages (mostly for event Queens that know English) - mutators.xeno = src + //Carry over intents & targeted limb to the new Xeno + set_movement_intent(old_xeno.m_intent) + a_intent_change(old_xeno.a_intent) + + //We are hiding, let's keep hiding if we can! + if(old_xeno.layer == XENO_HIDING_LAYER) + for(var/datum/action/xeno_action/onclick/xenohide/hide in actions) + layer = XENO_HIDING_LAYER + hide.button.icon_state = "template_active" + + //If we're holding things drop them + for(var/obj/item/item in old_xeno.contents) //Drop stuff + old_xeno.drop_inv_item_on_ground(item) + old_xeno.empty_gut() + + if(old_xeno.iff_tag) + iff_tag = old_xeno.iff_tag + iff_tag.forceMove(src) + old_xeno.iff_tag = null + if(hive) + for(var/trait in hive.hive_inherant_traits) + ADD_TRAIT(src, trait, TRAIT_SOURCE_HIVE) + + //Set caste stuff if(caste_type && GLOB.xeno_datum_list[caste_type]) caste = GLOB.xeno_datum_list[caste_type] - else - to_world("something went very wrong") - return - update_icon_source() + //Fire immunity signals + if (caste.fire_immunity != FIRE_IMMUNITY_NONE) + if(caste.fire_immunity & FIRE_IMMUNITY_NO_IGNITE) + RegisterSignal(src, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_immune)) - acid_splash_cooldown = caste.acid_splash_cooldown + RegisterSignal(src, list(COMSIG_LIVING_FLAMER_CROSSED, COMSIG_LIVING_FLAMER_FLAMED), PROC_REF(flamer_crossed_immune)) + else + UnregisterSignal(src, list( + COMSIG_LIVING_PREIGNITION, + COMSIG_LIVING_FLAMER_CROSSED, + COMSIG_LIVING_FLAMER_FLAMED + )) - if (caste.fire_immunity != FIRE_IMMUNITY_NONE) - if(caste.fire_immunity & FIRE_IMMUNITY_NO_IGNITE) - RegisterSignal(src, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_immune)) - RegisterSignal(src, list( - COMSIG_LIVING_FLAMER_CROSSED, - COMSIG_LIVING_FLAMER_FLAMED, - ), PROC_REF(flamer_crossed_immune)) - else - UnregisterSignal(src, list( - COMSIG_LIVING_PREIGNITION, - COMSIG_LIVING_FLAMER_CROSSED, - COMSIG_LIVING_FLAMER_FLAMED, - )) + if(caste.spit_types && length(caste.spit_types)) + ammo = GLOB.ammo_list[caste.spit_types[1]] - recalculate_everything() + acid_splash_cooldown = caste.acid_splash_cooldown + + if(caste.adjust_size_x != 1) + var/matrix/matrix = matrix() + matrix.Scale(caste.adjust_size_x, caste.adjust_size_y) + apply_transform(matrix) + + behavior_delegate = new caste.behavior_delegate_type() + behavior_delegate.bound_xeno = src + behavior_delegate.add_to_xeno() + resin_build_order = caste.resin_build_order + + job = caste.caste_type // Used for tracking the caste playtime + + else + CRASH("Attempted to create a new xenomorph [src] without caste datum.") if(mob_size < MOB_SIZE_BIG) mob_flags |= SQUEEZE_UNDER_VEHICLES + GLOB.living_xeno_list += src + GLOB.xeno_mob_list += src + xeno_inhand_item_offset = (icon_size - 32) * 0.5 + // More setup stuff for names, abilities etc + update_icon_source() generate_name() + add_inherent_verbs() + add_abilities() + create_reagents(100) + regenerate_icons() - if(isqueen(src)) - SStracking.set_leader("hive_[hivenumber]", src) - SStracking.start_tracking("hive_[hivenumber]", src) + toggle_xeno_hostilehud() + recalculate_everything() + toggle_xeno_mobhud() //This is a verb, but fuck it, it just werks . = ..() + + //Set leader to the new mob + if(old_xeno && hive && IS_XENO_LEADER(old_xeno)) + hive.replace_hive_leader(old_xeno, src) + + //Begin SStracking + SStracking.start_tracking("hive_[src.hivenumber]", src) + //WO GAMEMODE if(SSticker?.mode?.hardcore) hardcore = 1 //Prevents healing and queen evolution time_of_birth = world.time - add_inherent_verbs() - add_abilities() - recalculate_actions() - - if(z) + //Minimap + if(z && hivenumber != XENO_HIVE_TUTORIAL) INVOKE_NEXT_TICK(src, PROC_REF(add_minimap_marker)) + //Sight sight |= SEE_MOBS see_invisible = SEE_INVISIBLE_LIVING see_in_dark = 12 + if(client) set_lighting_alpha_from_prefs(client) else lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE - if(caste && caste.spit_types && caste.spit_types.len) - ammo = GLOB.ammo_list[caste.spit_types[1]] - - create_reagents(100) - - GLOB.living_xeno_list += src - GLOB.xeno_mob_list += src - - if(caste && caste.adjust_size_x != 1) - var/matrix/M = matrix() - M.Scale(caste.adjust_size_x, caste.adjust_size_y) - apply_transform(M) - - if(caste) - behavior_delegate = new caste.behavior_delegate_type() - behavior_delegate.bound_xeno = src - behavior_delegate.add_to_xeno() - resin_build_order = caste.resin_build_order - else - CRASH("Xenomorph [src] has no caste datum! Tell the devs!") - - regenerate_icons() - toggle_xeno_mobhud() //This is a verb, but fuck it, it just werks - toggle_xeno_hostilehud() - - if(oldXeno) - a_intent_change(oldXeno.a_intent)//Keep intent - - if(oldXeno.layer == XENO_HIDING_LAYER) - //We are hiding, let's keep hiding if we can! - for(var/datum/action/xeno_action/onclick/xenohide/hide in actions) - if(istype(hide)) - layer = XENO_HIDING_LAYER - hide.button.icon_state = "template_active" - - for(var/obj/item/W in oldXeno.contents) //Drop stuff - oldXeno.drop_inv_item_on_ground(W) - - oldXeno.empty_gut() - - if(IS_XENO_LEADER(oldXeno)) - hive.replace_hive_leader(oldXeno, src) - // Only handle free slots if the xeno is not in tdome - if(!is_admin_level(z)) + if(hive && !should_block_game_interaction(src)) var/selected_caste = GLOB.xeno_datum_list[caste_type]?.type hive.used_slots[selected_caste]++ - if(round_statistics && !statistic_exempt) - round_statistics.track_new_participant(faction, 1) - generate_name() + //Statistics + var/area/current_area = get_area(src) + if(current_area && current_area.statistic_exempt) + statistic_exempt = TRUE + if(GLOB.round_statistics && !statistic_exempt) + GLOB.round_statistics.track_new_participant(faction, 1) // This can happen if a xeno gets made before the game starts if (hive && hive.hive_ui) hive.hive_ui.update_all_xeno_data() - job = caste.caste_type // Used for tracking the caste playtime Decorate() RegisterSignal(src, COMSIG_MOB_SCREECH_ACT, PROC_REF(handle_screech_act)) @@ -547,22 +557,16 @@ if(caste.fire_immunity & FIRE_IMMUNITY_XENO_FRENZY) . |= COMPONENT_XENO_FRENZY +//Off-load this proc so it can be called freely +//Since Xenos change names like they change shoes, we need somewhere to hammer in all those legos +//We set their name first, then update their real_name AND their mind name //Off-load this proc so it can be called freely //Since Xenos change names like they change shoes, we need somewhere to hammer in all those legos //We set their name first, then update their real_name AND their mind name /mob/living/carbon/xenomorph/proc/generate_name() //We don't have a nicknumber yet, assign one to stick with us if(!nicknumber) - var/tempnumber = rand(1, 999) - var/list/numberlist = list() - for(var/mob/living/carbon/xenomorph/X in GLOB.xeno_mob_list) - numberlist += X.nicknumber - - while(tempnumber in numberlist) - tempnumber = rand(1, 999) - - nicknumber = tempnumber - + generate_and_set_nicknumber() // Even if we don't have the hive datum we usually still have the hive number var/datum/hive_status/in_hive = hive if(!in_hive) @@ -571,12 +575,10 @@ //Im putting this in here, because this proc gets called when a player inhabits a SSD xeno and it needs to go somewhere (sorry) hud_set_marks() - handle_name(in_hive) - -/mob/living/carbon/xenomorph/proc/handle_name(datum/hive_status/in_hive) var/name_prefix = in_hive.prefix var/name_client_prefix = "" var/name_client_postfix = "" + var/number_decorator = "" if(client) name_client_prefix = "[(client.xeno_prefix||client.xeno_postfix) ? client.xeno_prefix : "XX"]-" name_client_postfix = client.xeno_postfix ? ("-"+client.xeno_postfix) : "" @@ -587,9 +589,12 @@ var/age_display = show_age_prefix ? age_prefix : "" var/name_display = "" + // Rare easter egg + if(nicknumber == 666) + number_decorator = "Infernal " if(show_name_numbers) name_display = show_only_numbers ? " ([nicknumber])" : " ([name_client_prefix][nicknumber][name_client_postfix])" - name = "[name_prefix][age_display][caste.display_name || caste.caste_type][name_display]" + name = "[name_prefix][number_decorator][age_display][caste.display_name || caste.caste_type][name_display]" //Update linked data so they show up properly change_real_name(src, name) @@ -670,11 +675,13 @@ . += "It appears to belong to [hive?.name ? "the [hive.name]" : "a different hive"]." if(isxeno(user) || isobserver(user)) - if(mutation_type != "Normal") - . += "It has specialized into a [mutation_type]." + if(strain) + . += "It has specialized into a [strain.name]." if(iff_tag) . += SPAN_NOTICE("It has an IFF tag sticking out of its carapace.") + if(organ_removed) + . += "It seems to have its carapace cut open." /mob/living/carbon/xenomorph/Destroy() GLOB.living_xeno_list -= src @@ -702,7 +709,7 @@ selected_ability = null queued_action = null - QDEL_NULL(mutators) + QDEL_NULL(strain) QDEL_NULL(behavior_delegate) built_structures = null @@ -720,25 +727,16 @@ if(hardcore) attack_log?.Cut() // Completely clear out attack_log to limit mem usage if we fail to delete - . = ..() - - // Everything below fits the "we have to clear by principle it but i dont wanna break stuff" bill - mutators = null - - + return ..() /mob/living/carbon/xenomorph/Moved(atom/oldloc, direction, Forced) . = ..() if(!client) // We are not, in fact, counted steps for AI xeno in /client/Move() life_steps_total++ - - /mob/living/carbon/xenomorph/slip(slip_source_name, stun_level, weaken_level, run_only, override_noslip, slide_steps) return FALSE - - /mob/living/carbon/xenomorph/start_pulling(atom/movable/AM, lunge, no_msg) if(SEND_SIGNAL(AM, COMSIG_MOVABLE_XENO_START_PULLING, src) & COMPONENT_ALLOW_PULL) return do_pull(AM, lunge, no_msg) @@ -748,8 +746,6 @@ if(!isliving(AM)) return FALSE var/mob/living/L = AM - if(issynth(L) && L.health < 0) // no pulling critted or dead synths - return FALSE if(L.buckled) return FALSE //to stop xeno from pulling marines on roller beds. if(!L.is_xeno_grabbable()) @@ -794,7 +790,7 @@ //and display them add_to_all_mob_huds() - var/datum/mob_hud/MH = huds[MOB_HUD_XENO_INFECTION] + var/datum/mob_hud/MH = GLOB.huds[MOB_HUD_XENO_INFECTION] MH.add_hud_to(src, src) // Transfer any observing players over to the xeno's new body (`target`) on evolve/de-evolve. @@ -823,23 +819,17 @@ /mob/living/carbon/xenomorph/proc/set_hive_and_update(new_hivenumber = XENO_HIVE_NORMAL) var/datum/hive_status/new_hive = GLOB.hive_datum[new_hivenumber] if(!new_hive) - return + return FALSE - for(var/T in _status_traits) // They can't keep getting away with this!!! - REMOVE_TRAIT(src, T, TRAIT_SOURCE_HIVE) + for(var/trait in _status_traits) // They can't keep getting away with this!!! + REMOVE_TRAIT(src, trait, TRAIT_SOURCE_HIVE) new_hive.add_xeno(src) - for(var/T in new_hive.hive_inherant_traits) - ADD_TRAIT(src, T, TRAIT_SOURCE_HIVE) + for(var/trait in new_hive.hive_inherant_traits) + ADD_TRAIT(src, trait, TRAIT_SOURCE_HIVE) - if(istype(src, /mob/living/carbon/xenomorph/larva)) - var/mob/living/carbon/xenomorph/larva/L = src - L.update_icons() // larva renaming done differently - else - generate_name() - if(istype(src, /mob/living/carbon/xenomorph/queen)) - update_living_queens() + generate_name() lock_evolve = FALSE banished = FALSE @@ -850,11 +840,14 @@ // Update the hive status UI new_hive.hive_ui.update_all_xeno_data() + return TRUE + + //*********************************************************// -//********************Mutator functions********************// +// ******************** Strain Procs **********************// //*********************************************************// -//Call this function when major changes happen - evolutions, upgrades, mutators getting removed +//Call this proc when major changes happen - evolutions, upgrades, mutators getting removed /mob/living/carbon/xenomorph/proc/recalculate_everything() recalculate_stats() recalculate_actions() @@ -868,7 +861,6 @@ /mob/living/carbon/xenomorph/proc/recalculate_stats() recalculate_health() recalculate_plasma() - recalculate_stockpile() recalculate_speed() recalculate_armor() recalculate_damage() @@ -879,8 +871,8 @@ tackle_min = caste.tackle_min tackle_max = caste.tackle_max tackle_chance = caste.tackle_chance + tackle_chance_modifier - tacklestrength_min = caste.tacklestrength_min + mutators.tackle_strength_bonus + hive.mutators.tackle_strength_bonus - tacklestrength_max = caste.tacklestrength_max + mutators.tackle_strength_bonus + hive.mutators.tackle_strength_bonus + tacklestrength_min = caste.tacklestrength_min + tacklestrength_max = caste.tacklestrength_max /mob/living/carbon/xenomorph/proc/recalculate_health() var/new_max_health = nocrit ? health_modifier + maxHealth : health_modifier + caste.max_health @@ -890,7 +882,7 @@ if(health < maxHealth) currentHealthRatio = health / maxHealth maxHealth = new_max_health - health = round(maxHealth * currentHealthRatio + 0.5)//Restore our health ratio, so if we're full, we continue to be full, etc. Rounding up (hence the +0.5) + health = floor(maxHealth * currentHealthRatio + 0.5)//Restore our health ratio, so if we're full, we continue to be full, etc. Rounding up (hence the +0.5) if(health > maxHealth) health = maxHealth @@ -904,15 +896,10 @@ return var/plasma_ratio = plasma_stored / plasma_max plasma_max = new_plasma_max - plasma_stored = round(plasma_max * plasma_ratio + 0.5) //Restore our plasma ratio, so if we're full, we continue to be full, etc. Rounding up (hence the +0.5) + plasma_stored = floor(plasma_max * plasma_ratio + 0.5) //Restore our plasma ratio, so if we're full, we continue to be full, etc. Rounding up (hence the +0.5) if(plasma_stored > plasma_max) plasma_stored = plasma_max -/mob/living/carbon/xenomorph/proc/recalculate_stockpile() - crystal_max = caste.crystal_max - if(crystal_stored > crystal_max) - crystal_stored = crystal_max - /mob/living/carbon/xenomorph/proc/recalculate_speed() recalculate_move_delay = TRUE speed = speed_modifier @@ -922,7 +909,7 @@ /mob/living/carbon/xenomorph/proc/recalculate_armor() //We are calculating it in a roundabout way not to give anyone 100% armor deflection, so we're dividing the differences - armor_deflection = armor_modifier + round(100 - (100 - caste.armor_deflection)) + armor_deflection = armor_modifier + floor(100 - (100 - caste.armor_deflection)) armor_explosive_buff = explosivearmor_modifier /mob/living/carbon/xenomorph/proc/recalculate_damage() @@ -941,18 +928,8 @@ /mob/living/carbon/xenomorph/proc/recalculate_actions() recalculate_acid() recalculate_weeds() - pull_multiplier = mutators.pull_multiplier - if(isrunner(src)) - //Xeno runners need a small nerf to dragging speed mutator - pull_multiplier = 1 - (1 - mutators.pull_multiplier) * 0.85 - if(is_zoomed) - zoom_out() - if(iscarrier(src)) - var/mob/living/carbon/xenomorph/carrier/carrier = src - carrier.huggers_max = caste.huggers_max - carrier.eggs_max = caste.eggs_max - need_weeds = mutators.need_weeds - + // Modified on subtypes + pull_multiplier = initial(pull_multiplier) /mob/living/carbon/xenomorph/proc/recalculate_acid() if(caste) @@ -985,7 +962,7 @@ caste.aura_strength = 0 if(aura_strength == 0 && current_aura) current_aura = null - to_chat(src, SPAN_XENOWARNING("You lose your pheromones.")) + to_chat(src, SPAN_XENOWARNING("We lose our pheromones.")) // Also recalculate received pheros now for(var/capped_aura in received_phero_caps) @@ -1029,25 +1006,27 @@ return visible_message(SPAN_DANGER("[src] has successfully extinguished themselves!"), \ - SPAN_NOTICE("You extinguish yourself."), null, 5) + SPAN_NOTICE("We extinguish ourselves."), null, 5) + +/mob/living/carbon/xenomorph/proc/get_organ_icon() + return "heart_t[tier]" /mob/living/carbon/xenomorph/resist_restraints() + if(!legcuffed) + return var/breakouttime = legcuffed.breakouttime - next_move = world.time + 100 - last_special = world.time + 10 + next_move = world.time + 10 SECONDS + last_special = world.time + 1 SECONDS - var/displaytime = max(1, round(breakouttime / 600)) //Minutes - to_chat(src, SPAN_WARNING("You attempt to remove [legcuffed]. (This will take around [displaytime] minute(s) and you need to stand still)")) - for(var/mob/O in viewers(src)) - O.show_message(SPAN_DANGER("[usr] attempts to remove [legcuffed]!"), SHOW_MESSAGE_VISIBLE) - if(!do_after(src, breakouttime, INTERRUPT_NO_NEEDHAND^INTERRUPT_RESIST, BUSY_ICON_HOSTILE)) + var/displaytime = max(1, floor(breakouttime / 600)) //Minutes + visible_message(SPAN_DANGER("[src] attempts to remove [legcuffed]!"), + SPAN_WARNING("We attempt to remove [legcuffed]. (This will take around [displaytime] minute\s and we must stand still)")) + if(!do_after(src, breakouttime, INTERRUPT_NO_NEEDHAND ^ INTERRUPT_RESIST, BUSY_ICON_HOSTILE)) return if(!legcuffed || buckled) - return // time leniency for lag which also might make this whole thing pointless but the server - for(var/mob/O in viewers(src))// lags so hard that 40s isn't lenient enough - Quarxink - O.show_message(SPAN_DANGER("[src] manages to remove [legcuffed]!"), SHOW_MESSAGE_VISIBLE) - to_chat(src, SPAN_NOTICE(" You successfully remove [legcuffed].")) + return + visible_message(SPAN_DANGER("[src] manages to remove [legcuffed]!"), SPAN_NOTICE("We successfully remove [legcuffed].")) drop_inv_item_on_ground(legcuffed) /mob/living/carbon/xenomorph/IgniteMob() @@ -1074,11 +1053,11 @@ /mob/living/carbon/xenomorph/ghostize(can_reenter_corpse = TRUE, aghosted = FALSE) . = ..() - if(. && !can_reenter_corpse && stat != DEAD && !QDELETED(src) && !is_admin_level(z)) + if(. && !can_reenter_corpse && stat != DEAD && !QDELETED(src) && !should_block_game_interaction(src)) handle_ghost_message() /mob/living/carbon/xenomorph/proc/handle_ghost_message() - notify_ghosts("[src] ([mutation_type] [caste_type]) has ghosted and their body is up for grabs!", source = src) + notify_ghosts("[src] ([get_strain_name()] [caste_type]) has ghosted and their body is up for grabs!", source = src) /mob/living/carbon/xenomorph/larva/handle_ghost_message() if(locate(/obj/effect/alien/resin/special/pylon/core) in range(2, get_turf(src))) @@ -1088,7 +1067,7 @@ /mob/living/carbon/xenomorph/handle_blood_splatter(splatter_dir, duration) var/color_override if(special_blood) - var/datum/reagent/D = chemical_reagents_list[special_blood] + var/datum/reagent/D = GLOB.chemical_reagents_list[special_blood] if(D) color_override = D.color new /obj/effect/temp_visual/dir_setting/bloodsplatter/xenosplatter(loc, splatter_dir, duration, color_override) @@ -1105,15 +1084,37 @@ var/move_dir = get_dir(src, loc) for(var/atom/movable/atom in get_turf(current_structure)) if(atom != current_structure && atom.density && atom.BlockedPassDirs(src, move_dir)) - to_chat(src, SPAN_WARNING("[atom] prevents you from squeezing under [current_structure]!")) + to_chat(src, SPAN_WARNING("[atom] prevents us from squeezing under [current_structure]!")) return FALSE // Is it an airlock? if(istype(current_structure, /obj/structure/machinery/door/airlock)) var/obj/structure/machinery/door/airlock/current_airlock = current_structure if(current_airlock.locked || current_airlock.welded) //Can't pass through airlocks that have been bolted down or welded - to_chat(src, SPAN_WARNING("[current_airlock] is locked down tight. You can't squeeze underneath!")) + to_chat(src, SPAN_WARNING("[current_airlock] is locked down tight. We can't squeeze underneath!")) return FALSE visible_message(SPAN_WARNING("[src] scuttles underneath [current_structure]!"), \ - SPAN_WARNING("You squeeze and scuttle underneath [current_structure]."), max_distance = 2) + SPAN_WARNING("We squeeze and scuttle underneath [current_structure]."), max_distance = 2) forceMove(current_structure.loc) return TRUE + +///Generate a new unused nicknumber for the current hive, if hive doesn't exist return 0 +/mob/living/carbon/xenomorph/proc/generate_and_set_nicknumber() + if(!hive) + //If hive doesn't exist make it 0 + nicknumber = 0 + return + var/datum/hive_status/hive_status = hive + if(length(hive_status.available_nicknumbers)) + nicknumber = pick_n_take(hive_status.available_nicknumbers) + else + //If we somehow use all 999 numbers fallback on 0 + nicknumber = 0 + +/proc/setup_xenomorph(mob/living/carbon/xenomorph/target, mob/new_player/new_player, is_late_join = FALSE) + new_player.spawning = TRUE + new_player.close_spawn_windows() + new_player.client.prefs.copy_all_to(target, new_player.job, is_late_join = FALSE) + + if(new_player.mind) + new_player.mind_initialize() + new_player.mind.transfer_to(target, TRUE) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm index 641312e050..7e95042602 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm @@ -1,27 +1,29 @@ //Corrosive acid is consolidated -- it checks for specific castes for strength now, but works identically to each other. //The acid items are stored in XenoProcs. /mob/living/carbon/xenomorph/proc/corrosive_acid(atom/O, acid_type, plasma_cost) + if(!check_state()) + return if(!O.Adjacent(src)) if(istype(O,/obj/item/explosive/plastic)) var/obj/item/explosive/plastic/E = O if(E.plant_target && !E.plant_target.Adjacent(src)) - to_chat(src, SPAN_WARNING("You can't reach [O].")) + to_chat(src, SPAN_WARNING("We can't reach [O].")) return else to_chat(src, SPAN_WARNING("[O] is too far away.")) return if(!isturf(loc) || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) - to_chat(src, SPAN_WARNING("You can't melt [O] from here!")) + to_chat(src, SPAN_WARNING("We can't melt [O] from here!")) return face_atom(O) var/wait_time = 10 - var/turf/T = get_turf(O) + var/turf/turf = get_turf(O) - for(var/obj/effect/xenomorph/acid/A in T) + for(var/obj/effect/xenomorph/acid/A in turf) if(acid_type == A.type && A.acid_t == O) to_chat(src, SPAN_WARNING("[A] is already drenched in acid.")) return @@ -31,15 +33,9 @@ if(isobj(O)) I = O - if(istype(I, /obj/structure/window_frame)) - var/obj/structure/window_frame/WF = I - if(WF.reinforced && acid_type != /obj/effect/xenomorph/acid/strong) - to_chat(src, SPAN_WARNING("This [O.name] is too tough to be melted by your weak acid.")) - return - wait_time = I.get_applying_acid_time() if(wait_time == -1) - to_chat(src, SPAN_WARNING("You cannot dissolve \the [I].")) + to_chat(src, SPAN_WARNING("We cannot dissolve \the [I].")) return //TURF CHECK @@ -51,25 +47,25 @@ to_chat(src, SPAN_WARNING("[O] is already weakened.")) return - var/dissolvability = T.can_be_dissolved() + var/dissolvability = turf.can_be_dissolved() switch(dissolvability) if(0) - to_chat(src, SPAN_WARNING("You cannot dissolve [T].")) + to_chat(src, SPAN_WARNING("We cannot dissolve [turf].")) return if(1) wait_time = 50 if(2) if(acid_type != /obj/effect/xenomorph/acid/strong) - to_chat(src, SPAN_WARNING("This [T.name] is too tough to be melted by your weak acid.")) + to_chat(src, SPAN_WARNING("This [turf.name] is too tough to be melted by our weak acid.")) return wait_time = 100 else return - if(istype(T, /turf/closed/wall)) - var/turf/closed/wall/W = T + if(istype(turf, /turf/closed/wall)) + var/turf/closed/wall/W = turf // Direction from wall to the mob generating acid on the wall turf - var/ambiguous_dir_msg = SPAN_XENOWARNING("You are unsure which direction to melt through [W]. Face it directly and try again.") + var/ambiguous_dir_msg = SPAN_XENOWARNING("We are unsure which direction to melt through [W]. Face it directly and try again.") var/dir_to = get_dir(src, W) switch(dir_to) if(WEST, EAST, NORTH, SOUTH) @@ -94,9 +90,9 @@ return var/acided_hole_type = W.acided_hole_dir & (EAST|WEST) ? "a hole horizontally" : "a hole vertically" - to_chat(src, SPAN_XENOWARNING("You begin generating enough acid to melt [acided_hole_type] through [W].")) + to_chat(src, SPAN_XENOWARNING("We begin generating enough acid to melt [acided_hole_type] through [W].")) else - to_chat(src, SPAN_XENOWARNING("You begin generating enough acid to melt through [T].")) + to_chat(src, SPAN_XENOWARNING("We begin generating enough acid to melt through [turf].")) else to_chat(src, SPAN_WARNING("You cannot dissolve [O].")) return @@ -105,11 +101,15 @@ return // AGAIN BECAUSE SOMETHING COULD'VE ACIDED THE PLACE - for(var/obj/effect/xenomorph/acid/A in T) + for(var/obj/effect/xenomorph/acid/A in turf) if(acid_type == A.type && A.acid_t == O) to_chat(src, SPAN_WARNING("[A] is already drenched in acid.")) return + if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) //Checked again to account for people trying to place acid while channeling the burrow ability + to_chat(src, SPAN_WARNING("We can't melt [O] from here!")) + return + if(!check_state()) return @@ -123,7 +123,7 @@ if(istype(O,/obj/item/explosive/plastic)) var/obj/item/explosive/plastic/E = O if(E.plant_target && !E.plant_target.Adjacent(src)) - to_chat(src, SPAN_WARNING("You can't reach [O].")) + to_chat(src, SPAN_WARNING("We can't reach [O].")) return else to_chat(src, SPAN_WARNING("[O] is too far away.")) @@ -131,13 +131,13 @@ use_plasma(plasma_cost) - var/obj/effect/xenomorph/acid/A = new acid_type(T, O) + var/obj/effect/xenomorph/acid/A = new acid_type(turf, O) if(istype(O, /obj/vehicle/multitile)) var/obj/vehicle/multitile/R = O R.take_damage_type(40 / A.acid_delay, "acid", src) visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at \the [O]. It sizzles under the bubbling mess of acid!"), \ - SPAN_XENOWARNING("You vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5) + SPAN_XENOWARNING("We vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) QDEL_IN(A, 20) return @@ -157,7 +157,7 @@ msg_admin_attack("[src.name] ([src.ckey]) spat acid on [O] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) attack_log += text("\[[time_stamp()]\] Spat acid on [O]") visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff all over [O]. It begins to sizzle and melt under the bubbling mess of acid!"), \ - SPAN_XENOWARNING("You vomit globs of vile stuff all over [O]. It begins to sizzle and melt under the bubbling mess of acid!"), null, 5) + SPAN_XENOWARNING("We vomit globs of vile stuff all over [O]. It begins to sizzle and melt under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) /proc/unroot_human(mob/living/carbon/H, trait_source) @@ -167,26 +167,9 @@ REMOVE_TRAIT(H, TRAIT_IMMOBILIZED, trait_source) if(ishuman(H)) - var/mob/living/carbon/human/T = H - T.update_xeno_hostile_hud() - to_chat(H, SPAN_XENOHIGHDANGER("You can move again!")) - -/proc/xeno_throw_human(mob/living/carbon/H, mob/living/carbon/xenomorph/X, direction, distance, shake_camera = TRUE) - if (!istype(H) || !istype(X) || !direction || !distance) - return - - var/turf/T = get_turf(H) - var/turf/temp = get_turf(H) - for (var/x in 0 to distance) - temp = get_step(T, direction) - if (!temp) - break - T = temp - - H.throw_atom(T, distance, SPEED_VERY_FAST, X, TRUE) - if(!shake_camera) - return - shake_camera(H, 10, 1) + var/mob/living/carbon/human/turf = H + turf.update_xeno_hostile_hud() + to_chat(H, SPAN_XENOHIGHDANGER("We can move again!")) /mob/living/carbon/xenomorph/proc/zoom_in() if(stat || resting) @@ -216,10 +199,14 @@ client.pixel_x = -viewoffset client.pixel_y = 0 + for (var/datum/action/xeno_action/onclick/toggle_long_range/action in actions) + action.on_zoom_in() + return + /mob/living/carbon/xenomorph/proc/zoom_out() if(!client) return - client.change_view(world_view_size) + client.change_view(GLOB.world_view_size) client.pixel_x = 0 client.pixel_y = 0 is_zoomed = 0 @@ -228,28 +215,28 @@ action.on_zoom_out() return -/mob/living/carbon/xenomorph/proc/do_acid_spray_cone(turf/T, spray_type = /obj/effect/xenomorph/spray, range = 3) +/mob/living/carbon/xenomorph/proc/do_acid_spray_cone(turf/turf, spray_type = /obj/effect/xenomorph/spray, range = 3) set waitfor = FALSE - var/facing = get_cardinal_dir(src, T) + var/facing = get_cardinal_dir(src, turf) setDir(facing) - T = loc + turf = loc for(var/i in 0 to range - 1) - var/turf/next_turf = get_step(T, facing) + var/turf/next_turf = get_step(turf, facing) var/atom/movable/temp = new/obj/effect/xenomorph/spray() - var/atom/movable/AM = LinkBlocked(temp, T, next_turf) + var/atom/movable/AM = LinkBlocked(temp, turf, next_turf) qdel(temp) if(AM) AM.acid_spray_act(src) return - T = next_turf - var/obj/effect/xenomorph/spray/S = new spray_type(T, create_cause_data(initial( caste_type), src), hivenumber) - do_acid_spray_cone_normal(T, i, facing, S, spray_type) + turf = next_turf + var/obj/effect/xenomorph/spray/S = new spray_type(turf, create_cause_data(initial( caste_type), src), hivenumber) + do_acid_spray_cone_normal(turf, i, facing, S, spray_type) sleep(2) // Normal refers to the mathematical normal -/mob/living/carbon/xenomorph/proc/do_acid_spray_cone_normal(turf/T, distance, facing, obj/effect/xenomorph/spray/source_spray, spray_type = /obj/effect/xenomorph/spray) +/mob/living/carbon/xenomorph/proc/do_acid_spray_cone_normal(turf/turf, distance, facing, obj/effect/xenomorph/spray/source_spray, spray_type = /obj/effect/xenomorph/spray) if(!distance) return @@ -259,8 +246,8 @@ var/normal_dir = turn(facing, 90) var/inverse_normal_dir = turn(facing, -90) - var/turf/normal_turf = T - var/turf/inverse_normal_turf = T + var/turf/normal_turf = turf + var/turf/inverse_normal_turf = turf var/normal_density_flag = FALSE var/inverse_normal_density_flag = FALSE @@ -299,27 +286,26 @@ var/turf/prev_turf = loc var/distance = 0 - for(var/turf/T in turflist) + for(var/turf/turf in turflist) distance++ - if(!prev_turf && turflist.len > 1) + if(!prev_turf && length(turflist) > 1) prev_turf = get_turf(src) continue //So we don't burn the tile we be standin on - if(T.density || istype(T, /turf/open/space)) + if(turf.density || istype(turf, /turf/open/space)) break if(distance > distance_max) break - var/atom/movable/temp = new spray_path() - var/atom/movable/AM = LinkBlocked(temp, prev_turf, T) + var/atom/movable/blocker = LinkBlocked(temp, prev_turf, turf) qdel(temp) - if(AM) - AM.acid_spray_act(src) + if(blocker) + blocker.acid_spray_act(src) break - prev_turf = T - new spray_path(T, create_cause_data(initial(caste_type), src), hivenumber) + prev_turf = turf + new spray_path(turf, create_cause_data(initial(caste_type), src), hivenumber) sleep(2) @@ -331,8 +317,11 @@ if(!check_can_transfer_plasma(target, max_range)) return - to_chat(src, SPAN_NOTICE("You start focusing your plasma towards [target].")) - to_chat(target, SPAN_NOTICE("You feel that [src] starts transferring some of their plasma to you.")) + to_chat(src, SPAN_NOTICE("We start focusing our plasma towards [target].")) + to_chat(target, SPAN_NOTICE("We feel that [src] starts transferring some of their plasma to us.")) + face_atom(target) + target.flick_heal_overlay(transfer_delay, COLOR_CYAN) + if(!do_after(src, transfer_delay, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) return @@ -343,8 +332,9 @@ amount = plasma_stored //Just use all of it use_plasma(amount) target.gain_plasma(amount) - to_chat(target, SPAN_XENOWARNING("[src] has transfered [amount] plasma to you. You now have [target.plasma_stored].")) - to_chat(src, SPAN_XENOWARNING("You have transferred [amount] plasma to [target]. You now have [plasma_stored].")) + target.xeno_jitter(1 SECONDS) + to_chat(target, SPAN_XENOWARNING("[src] has transfered [amount] plasma to us. We now have [target.plasma_stored].")) + to_chat(src, SPAN_XENOWARNING("We have transferred [amount] plasma to [target]. We now have [plasma_stored].")) playsound(src, "alien_drool", 25) /mob/living/carbon/xenomorph/proc/check_can_transfer_plasma(mob/living/carbon/xenomorph/target, max_range) @@ -356,19 +346,19 @@ return FALSE if(!isturf(loc)) - to_chat(src, SPAN_WARNING("You can't transfer plasma from here!")) + to_chat(src, SPAN_WARNING("We can't transfer plasma from here!")) return FALSE if(get_dist(src, target) > max_range) - to_chat(src, SPAN_WARNING("You need to be closer to [target].")) + to_chat(src, SPAN_WARNING("We need to be closer to [target].")) return FALSE if(HAS_TRAIT(target, TRAIT_ABILITY_OVIPOSITOR)) - to_chat(src, SPAN_WARNING("You can't transfer plasma to a queen mounted on her ovipositor.")) + to_chat(src, SPAN_WARNING("We can't transfer plasma to a queen mounted on her ovipositor.")) return FALSE if(HAS_TRAIT(target, TRAIT_ABILITY_NO_PLASMA_TRANSFER)) - to_chat(src, SPAN_WARNING("You can't transfer plasma to \the [target].")) + to_chat(src, SPAN_WARNING("We can't transfer plasma to \the [target].")) return FALSE if(target.plasma_max == XENO_NO_PLASMA) @@ -376,7 +366,7 @@ return FALSE if(target == src) - to_chat(src, SPAN_WARNING("You can't transfer plasma to yourself!")) + to_chat(src, SPAN_WARNING("We can't transfer plasma to ourself!")) return FALSE return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.dm index 4430a1619e..e7f72e7e01 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_abilities.dm @@ -13,7 +13,7 @@ macro_path = /datum/action/xeno_action/verb/verb_acid_lance action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 190 + xeno_cooldown = 19 SECONDS // Config var/stack_time = 10 @@ -52,7 +52,7 @@ name = "Bombard" ability_name = "Bombard" action_icon_state = "bombard" - cooldown_message = "Your belly fills with another gas glob. You are are ready to bombard again." + cooldown_message = "Our belly fills with another gas glob. We are ready to bombard again." sound_to_play = 'sound/effects/blobattack.ogg' aim_turf = TRUE /// These are actions that will be placed on cooldown for the cooldown_duration when activates. Added acid shroud for now because it can be abused @@ -96,7 +96,7 @@ macro_path = /datum/action/xeno_action/verb/verb_boiler_trap action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - xeno_cooldown = 205 + xeno_cooldown = 20.5 SECONDS /// Config var/trap_ttl = 100 @@ -112,7 +112,7 @@ macro_path = /datum/action/xeno_action/verb/verb_acid_mine action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 55 + xeno_cooldown = 5.5 SECONDS var/empowered = FALSE @@ -127,7 +127,7 @@ macro_path = /datum/action/xeno_action/verb/verb_acid_shotgun action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_3 - xeno_cooldown = 130 + xeno_cooldown = 13 SECONDS var/ammo_type = /datum/ammo/xeno/acid_shotgun diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm index 0fcdbf47a6..2431e46298 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/boiler/boiler_powers.dm @@ -17,7 +17,7 @@ return xeno.create_empower() - xeno.visible_message(SPAN_XENODANGER("[xeno] starts to gather its acid for a massive blast!"), SPAN_XENODANGER("You start to gather your acid for a massive blast!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] starts to gather its acid for a massive blast!"), SPAN_XENODANGER("We start to gather our acid for a massive blast!")) activated_once = TRUE stack() addtimer(CALLBACK(src, PROC_REF(timeout)), max_stacks*stack_time + time_after_max_before_end) @@ -29,7 +29,7 @@ var/range = base_range + stacks*range_per_stack var/damage = base_damage + stacks*damage_per_stack var/turfs_visited = 0 - for (var/turf/turf in getline2(get_turf(xeno), affected_atom)) + for (var/turf/turf in get_line(get_turf(xeno), affected_atom)) if(turf.density || turf.opacity) break @@ -54,8 +54,8 @@ new /obj/effect/xenomorph/acid_damage_delay(turf, damage, 7, FALSE, "You are blasted with a stream of high-velocity acid!", xeno) - xeno.visible_message(SPAN_XENODANGER("[xeno] fires a massive blast of acid at [affected_atom]!"), SPAN_XENODANGER("You fire a massive blast of acid at [affected_atom]!")) - remove_stack_effects("You feel your speed return to normal!") + xeno.visible_message(SPAN_XENODANGER("[xeno] fires a massive blast of acid at [affected_atom]!"), SPAN_XENODANGER("We fire a massive blast of acid at [affected_atom]!")) + remove_stack_effects("We feel our speed return to normal!") return TRUE /datum/action/xeno_action/activable/acid_lance/proc/stack() @@ -74,7 +74,7 @@ addtimer(CALLBACK(src, PROC_REF(stack)), stack_time) return else - to_chat(xeno, SPAN_XENOHIGHDANGER("You have charged your acid lance to maximum!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We have charged our acid lance to maximum!")) return /datum/action/xeno_action/activable/acid_lance/proc/remove_stack_effects(message = null) @@ -97,7 +97,7 @@ /datum/action/xeno_action/activable/acid_lance/proc/timeout() if (activated_once) activated_once = FALSE - remove_stack_effects("You have waited too long and can no longer use your acid lance!") + remove_stack_effects("We have waited too long and can no longer use our acid lance!") /datum/action/xeno_action/activable/acid_lance/action_cooldown_check() @@ -108,7 +108,7 @@ var/mob/living/carbon/xenomorph/xeno = owner if(!action_cooldown_check()) // activate c/d only if we already spit for (var/action_type in action_types_to_cd) - var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type) + var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type) if (!istype(xeno_action)) continue @@ -132,7 +132,7 @@ addtimer(VARSET_CALLBACK(src, sound_play, TRUE), 2 SECONDS) if (!do_after(xeno, xeno.ammo.spit_windup/6.5, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE, numticks = 2)) /// 0.7 seconds - to_chat(xeno, SPAN_XENODANGER("You decide to cancel your gas shroud.")) + to_chat(xeno, SPAN_XENODANGER("We decide to cancel our gas shroud.")) return playsound(xeno,"acid_sizzle", 50, 1) @@ -146,10 +146,10 @@ var/datum/cause_data/cause_data = create_cause_data("acid shroud gas", owner) spicy_gas.set_up(1, 0, get_turf(xeno), null, 6, new_cause_data = cause_data) spicy_gas.start() - to_chat(xeno, SPAN_XENOHIGHDANGER("You dump your acid through your pores, creating a shroud of gas!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We dump our acid through our pores, creating a shroud of gas!")) for (var/action_type in action_types_to_cd) - var/datum/action/xeno_action/xeno_action = get_xeno_action_by_type(xeno, action_type) + var/datum/action/xeno_action/xeno_action = get_action(xeno, action_type) if (!istype(xeno_action)) continue @@ -177,7 +177,7 @@ return if (!can_see(xeno, affected_atom, TRAPPER_VIEWRANGE)) - to_chat(xeno, SPAN_XENODANGER("You cannot see that location!")) + to_chat(xeno, SPAN_XENODANGER("We cannot see that location!")) return if (!check_and_use_plasma_owner()) @@ -218,11 +218,11 @@ empowered = FALSE empowering_charge_counter = 0 button.overlays -= "+empowered" - var/datum/action/xeno_action/activable/acid_mine/mine = get_xeno_action_by_type(xeno, /datum/action/xeno_action/activable/acid_mine) + var/datum/action/xeno_action/activable/acid_mine/mine = get_action(xeno, /datum/action/xeno_action/activable/acid_mine) if(!mine.empowered) mine.empowered = TRUE mine.button.overlays += "+empowered" - to_chat(xeno, SPAN_XENODANGER("You tap in your reserves to prepare a stronger [mine.name]!")) + to_chat(xeno, SPAN_XENODANGER("We tap into our reserves to prepare a stronger [mine.name]!")) apply_cooldown() return ..() @@ -254,7 +254,7 @@ if(empowered) acid_bolt_message = "a powerful bolt of acid" - xeno.visible_message(SPAN_XENODANGER("[xeno] fires " + acid_bolt_message + " at [affected_atom]!"), SPAN_XENODANGER("You fire " + acid_bolt_message + " at [affected_atom]!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] fires " + acid_bolt_message + " at [affected_atom]!"), SPAN_XENODANGER("We fire " + acid_bolt_message + " at [affected_atom]!")) new /obj/effect/xenomorph/acid_damage_delay/boiler_landmine(turf, damage, delay, empowered, "You are blasted with " + acid_bolt_message + "!", xeno) for (var/turf/target_turf in orange(1, turf)) @@ -278,7 +278,7 @@ if(!affected_atom || affected_atom.layer >= FLY_LAYER || !isturf(xeno.loc) || !xeno.check_state()) return - xeno.visible_message(SPAN_XENOWARNING("The [xeno] fires a blast of acid at [affected_atom]!"), SPAN_XENOWARNING("You fire a blast of acid at [affected_atom]!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] fires a blast of acid at [affected_atom]!"), SPAN_XENOWARNING("We fire a blast of acid at [affected_atom]!")) var/turf/target_turf = locate(affected_atom.x, affected_atom.y, affected_atom.z) var/obj/projectile/proj = new(xeno.loc, create_cause_data("acid shotgun", xeno)) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_abilities.dm index 747a3f90a6..09c6006536 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_abilities.dm @@ -11,6 +11,11 @@ /datum/action/xeno_action/activable/burrow/use_ability(atom/A) var/mob/living/carbon/xenomorph/X = owner + + if(SSticker?.mode?.hardcore) + to_chat(X, SPAN_XENOWARNING("A certain presence is preventing us from burrowing here.")) + return + if(HAS_TRAIT(X, TRAIT_ABILITY_BURROWED)) X.tunnel(get_turf(A)) else diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm index 6a2071fafc..8117eade46 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/burrower/burrower_powers.dm @@ -17,11 +17,11 @@ return if(istype(current_turf, /turf/open/floor/almayer/research/containment) || istype(current_turf, /turf/closed/wall/almayer/research/containment)) - to_chat(src, SPAN_XENOWARNING("You can't escape this cell!")) + to_chat(src, SPAN_XENOWARNING("We can't escape this cell!")) return if(clone) //Prevents burrowing on stairs - to_chat(src, SPAN_XENOWARNING("You can't burrow here!")) + to_chat(src, SPAN_XENOWARNING("We can't burrow here!")) return if(caste_type && GLOB.xeno_datum_list[caste_type]) @@ -29,13 +29,14 @@ used_burrow = TRUE - to_chat(src, SPAN_XENOWARNING("You begin burrowing yourself into the ground.")) + to_chat(src, SPAN_XENOWARNING("We begin burrowing ourselves into the ground.")) if(!do_after(src, 1.5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) addtimer(CALLBACK(src, PROC_REF(do_burrow_cooldown)), (caste ? caste.burrow_cooldown : 5 SECONDS)) return // TODO Make immune to all damage here. - to_chat(src, SPAN_XENOWARNING("You burrow yourself into the ground.")) + to_chat(src, SPAN_XENOWARNING("We burrow ourselves into the ground.")) invisibility = 101 + alpha = 100 anchored = TRUE if(caste.fire_immunity == FIRE_IMMUNITY_NONE) RegisterSignal(src, COMSIG_LIVING_PREIGNITION, PROC_REF(fire_immune)) @@ -72,6 +73,7 @@ )) remove_traits(list(TRAIT_ABILITY_BURROWED, TRAIT_UNDENSE, TRAIT_IMMOBILIZED), TRAIT_SOURCE_ABILITY("Burrow")) invisibility = FALSE + alpha = initial(alpha) anchored = FALSE playsound(loc, 'sound/effects/burrowoff.ogg', 25) for(var/mob/living/carbon/mob in loc) @@ -84,7 +86,7 @@ /mob/living/carbon/xenomorph/proc/do_burrow_cooldown() used_burrow = FALSE if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) - to_chat(src, SPAN_NOTICE("You can now surface.")) + to_chat(src, SPAN_NOTICE("We can now surface.")) for(var/X in actions) var/datum/action/act = X act.update_button_icon() @@ -95,38 +97,38 @@ return if(!HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) - to_chat(src, SPAN_NOTICE("You must be burrowed to do this.")) + to_chat(src, SPAN_NOTICE("We must be burrowed to do this.")) return if(tunnel) tunnel = FALSE - to_chat(src, SPAN_NOTICE("You stop tunneling.")) + to_chat(src, SPAN_NOTICE("We stop tunneling.")) used_tunnel = TRUE addtimer(CALLBACK(src, PROC_REF(do_tunnel_cooldown)), (caste ? caste.tunnel_cooldown : 5 SECONDS)) return if(used_tunnel) - to_chat(src, SPAN_NOTICE("You must wait some time to do this.")) + to_chat(src, SPAN_NOTICE("We must wait some time to do this.")) return if(!T) - to_chat(src, SPAN_NOTICE("You can't tunnel there!")) + to_chat(src, SPAN_NOTICE("We can't tunnel there!")) return if(T.density) - to_chat(src, SPAN_XENOWARNING("You can't tunnel into a solid wall!")) + to_chat(src, SPAN_XENOWARNING("We can't tunnel into a solid wall!")) return if(istype(T, /turf/open/space)) - to_chat(src, SPAN_XENOWARNING("You make tunnels, not wormholes!")) + to_chat(src, SPAN_XENOWARNING("We make tunnels, not wormholes!")) return if(clone) //Prevents tunnels in Z transition areas - to_chat(src, SPAN_XENOWARNING("You make tunnels, not wormholes!")) + to_chat(src, SPAN_XENOWARNING("We make tunnels, not wormholes!")) return var/area/A = get_area(T) - if(A.flags_area & AREA_NOTUNNEL) + if(A.flags_area & AREA_NOTUNNEL || get_dist(src, T) > 15) to_chat(src, SPAN_XENOWARNING("There's no way to tunnel over there.")) return @@ -134,13 +136,13 @@ if(O.density) if(O.flags_atom & ON_BORDER) continue - to_chat(src, SPAN_WARNING("There's something solid there to stop you emerging.")) + to_chat(src, SPAN_WARNING("There's something solid there to stop us from emerging.")) return if(!T || T.density) - to_chat(src, SPAN_NOTICE("You cannot tunnel to there!")) + to_chat(src, SPAN_NOTICE("We cannot tunnel to there!")) tunnel = TRUE - to_chat(src, SPAN_NOTICE("You start tunneling!")) + to_chat(src, SPAN_NOTICE("We start tunneling!")) tunnel_timer = (get_dist(src, T)*10) + world.time process_tunnel(T) @@ -156,14 +158,14 @@ addtimer(CALLBACK(src, PROC_REF(process_tunnel), T), 1 SECONDS) /mob/living/carbon/xenomorph/proc/do_tunnel(turf/T) - to_chat(src, SPAN_NOTICE("You tunnel to your destination.")) + to_chat(src, SPAN_NOTICE("We tunnel to the destination.")) anchored = FALSE forceMove(T) burrow_off() /mob/living/carbon/xenomorph/proc/do_tunnel_cooldown() used_tunnel = FALSE - to_chat(src, SPAN_NOTICE("You can now tunnel while burrowed.")) + to_chat(src, SPAN_NOTICE("We can now tunnel while burrowed.")) for(var/X in actions) var/datum/action/act = X act.update_button_icon() @@ -177,6 +179,7 @@ return var/new_name = strip_html(input("Change the description of the tunnel:", "Tunnel Description") as text|null) + new_name = replace_non_alphanumeric_plus(new_name) if(new_name) new_name = "[new_name] ([get_area_name(T)])" log_admin("[key_name(src)] has renamed the tunnel \"[T.tunnel_desc]\" as \"[new_name]\".") @@ -190,14 +193,14 @@ /mob/living/carbon/xenomorph/proc/tremor() //More support focused version of crusher earthquakes. if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED) || is_ventcrawling) - to_chat(src, SPAN_XENOWARNING("You must be above ground to do this.")) + to_chat(src, SPAN_XENOWARNING("We must be above ground to do this.")) return if(!check_state()) return if(used_tremor) - to_chat(src, SPAN_XENOWARNING("Your aren't ready to cause more tremors yet!")) + to_chat(src, SPAN_XENOWARNING("We aren't ready to cause more tremors yet!")) return if(!check_plasma(100)) return @@ -205,7 +208,7 @@ use_plasma(100) playsound(loc, 'sound/effects/alien_footstep_charge3.ogg', 75, 0) visible_message(SPAN_XENODANGER("[src] digs itself into the ground and shakes the earth itself, causing violent tremors!"), \ - SPAN_XENODANGER("You dig into the ground and shake it around, causing violent tremors!")) + SPAN_XENODANGER("We dig into the ground and shake it around, causing violent tremors!")) create_stomp() //Adds the visual effect. Wom wom wom used_tremor = 1 @@ -221,7 +224,7 @@ spawn(caste.tremor_cooldown) used_tremor = 0 - to_chat(src, SPAN_NOTICE("You gather enough strength to cause tremors again.")) + to_chat(src, SPAN_NOTICE("We gather enough strength to cause tremors again.")) for(var/X in actions) var/datum/action/act = X act.update_button_icon() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/carrier/carrier_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/carrier/carrier_powers.dm index da85b94502..08cb211875 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/carrier/carrier_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/carrier/carrier_powers.dm @@ -17,6 +17,10 @@ /datum/action/xeno_action/onclick/set_hugger_reserve/use_ability(atom/Atom) var/mob/living/carbon/xenomorph/carrier/carrier = owner - carrier.huggers_reserved = tgui_input_number(usr, "How many facehuggers would you like to keep safe from Observers wanting to join as facehuggers?", "How many to reserve?", 0, carrier.huggers_max, carrier.huggers_reserved) - to_chat(carrier, SPAN_XENONOTICE("You reserved [carrier.huggers_reserved] facehuggers for yourself.")) + carrier.huggers_reserved = tgui_input_number(usr, + "How many facehuggers would you like to keep safe from Observers wanting to join as facehuggers?", + "How many to reserve?", + carrier.huggers_reserved, carrier.huggers_max, 0 + ) + to_chat(carrier, SPAN_XENONOTICE("We reserve [carrier.huggers_reserved] facehuggers for ourself.")) return ..() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_abilities.dm index a8ce0e60c1..a05a714527 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_abilities.dm @@ -42,7 +42,7 @@ macro_path = /datum/action/xeno_action/verb/verb_crusher_stomp action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 180 + xeno_cooldown = 18 SECONDS plasma_cost = 30 var/damage = 65 @@ -132,7 +132,6 @@ #define FLOCK_SCAN_RADIUS 3 #define MINIMUM_CHARGE_DISTANCE 3 #define MAXIMUM_TARGET_DISTANCE 12 - /datum/action/xeno_action/onclick/charger_charge/proc/handle_position_change(mob/living/carbon/xenomorph/xeno, body_position) SIGNAL_HANDLER if(body_position == LYING_DOWN) @@ -191,7 +190,7 @@ var/cardinal_dir_to_potential_charge_turf = get_cardinal_dir(processing_xeno, potential_charge_turf) - var/list/turf/turfs_to_check = getline2(xeno_turf, get_angle_target_turf(xeno_turf, cardinal_dir_to_potential_charge_turf, MINIMUM_CHARGE_DISTANCE), FALSE) + var/list/turf/turfs_to_check = get_line(xeno_turf, get_angle_target_turf(xeno_turf, cardinal_dir_to_potential_charge_turf, MINIMUM_CHARGE_DISTANCE), FALSE) var/blocked = FALSE var/turf/previous_turf = xeno_turf @@ -288,7 +287,7 @@ for(var/mob/living/carbon/human/Mob in xeno.loc) if(Mob.body_position == LYING_DOWN && Mob.stat != DEAD) xeno.visible_message(SPAN_DANGER("[xeno] runs [Mob] over!"), - SPAN_DANGER("You run [Mob] over!") + SPAN_DANGER("We run [Mob] over!") ) var/ram_dir = pick(get_perpen_dir(xeno.dir)) var/dist = 1 @@ -311,7 +310,7 @@ shake_camera(hit_human, 4, 2) if(hit_human.buckled) hit_human.buckled.unbuckle() - INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(xeno_throw_human), hit_human, xeno, get_dir(xeno, hit_human), 1, FALSE) + INVOKE_ASYNC(xeno, TYPE_PROC_REF(/mob/living/carbon/xenomorph, throw_carbon), hit_human, get_dir(xeno, hit_human), 1, FALSE) to_chat(hit_human, SPAN_XENOHIGHDANGER("You fall backwards as [xeno] gives you a glancing blow!")) hit_human.take_overall_armored_damage(momentum * 4) hit_human.apply_effect(0.5, WEAKEN) @@ -394,13 +393,13 @@ /datum/action/xeno_action/activable/tumble/proc/handle_mob_collision(mob/living/carbon/Mob) var/mob/living/carbon/xenomorph/Xeno = owner - Xeno.visible_message(SPAN_XENODANGER("[Xeno] Sweeps to the side, knocking down [Mob]!"), SPAN_XENODANGER("You knock over [Mob] as you sweep to the side!")) + Xeno.visible_message(SPAN_XENODANGER("[Xeno] Sweeps to the side, knocking down [Mob]!"), SPAN_XENODANGER("We knock over [Mob] as we sweep to the side!")) var/turf/target_turf = get_turf(Mob) playsound(Mob,'sound/weapons/alien_claw_block.ogg', 50, 1) Mob.apply_damage(15,BRUTE) if(ishuman(Mob)) var/mob/living/carbon/human/Human = Mob - xeno_throw_human(Human, Xeno, get_dir(Xeno, Human), 1) + Xeno.throw_carbon(Human, distance = 1) Human.apply_effect(1, WEAKEN) else Mob.apply_effect(1, WEAKEN) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm index b5dc656d87..0a97163218 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/crusher/crusher_powers.dm @@ -25,10 +25,10 @@ X.emote("roar") L.apply_effect(2, WEAKEN) - X.visible_message(SPAN_XENODANGER("[X] overruns [H], brutally trampling them underfoot!"), SPAN_XENODANGER("You brutalize [H] as you crush them underfoot!")) + X.visible_message(SPAN_XENODANGER("[X] overruns [H], brutally trampling them underfoot!"), SPAN_XENODANGER("We brutalize [H] as we crush them underfoot!")) H.apply_armoured_damage(get_xeno_damage_slash(H, direct_hit_damage), ARMOR_MELEE, BRUTE) - xeno_throw_human(H, X, X.dir, 3) + X.throw_carbon(H, X.dir, 3) H.last_damage_data = create_cause_data(X.caste_type, X) return @@ -37,7 +37,7 @@ RegisterSignal(owner, COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE, PROC_REF(check_directional_armor)) var/mob/living/carbon/xenomorph/xeno_owner = owner - if(!istype(xeno_owner) || xeno_owner.mutation_type != CRUSHER_NORMAL) + if(!istype(xeno_owner)) return var/datum/behavior_delegate/crusher_base/crusher_delegate = xeno_owner.behavior_delegate @@ -51,7 +51,7 @@ ..() UnregisterSignal(owner, COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE) var/mob/living/carbon/xenomorph/xeno_owner = owner - if(!istype(xeno_owner) || xeno_owner.mutation_type != CRUSHER_NORMAL) + if(!istype(xeno_owner)) return var/datum/behavior_delegate/crusher_base/crusher_delegate = xeno_owner.behavior_delegate @@ -62,7 +62,7 @@ /datum/action/xeno_action/activable/pounce/crusher_charge/proc/undo_charging_icon() var/mob/living/carbon/xenomorph/xeno_owner = owner - if(!istype(xeno_owner) || xeno_owner.mutation_type != CRUSHER_NORMAL) + if(!istype(xeno_owner)) return var/datum/behavior_delegate/crusher_base/crusher_delegate = xeno_owner.behavior_delegate @@ -82,7 +82,7 @@ // This ties the pounce/throwing backend into the old collision backend /mob/living/carbon/xenomorph/crusher/pounced_obj(obj/O) - var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_xeno_action_by_type(src, /datum/action/xeno_action/activable/pounce/crusher_charge) + var/datum/action/xeno_action/activable/pounce/crusher_charge/CCA = get_action(src, /datum/action/xeno_action/activable/pounce/crusher_charge) if (istype(CCA) && !CCA.action_cooldown_check() && !(O.type in CCA.not_reducing_objects)) CCA.reduce_cooldown(50) @@ -124,7 +124,7 @@ xeno_owner.anchored = FALSE playsound(get_turf(xeno_owner), 'sound/effects/alien_footstep_charge3.ogg', 75) - xeno_owner.visible_message(SPAN_XENODANGER("[xeno_owner] smashes into the ground!"), SPAN_XENODANGER("You smash into the ground!")) + xeno_owner.visible_message(SPAN_XENODANGER("[xeno_owner] smashes into the ground!"), SPAN_XENODANGER("We smash into the ground!")) xeno_owner.create_stomp() for(var/mob/living/carbon/carbon_in_range in range(distance, get_turf(xeno_owner))) @@ -147,7 +147,7 @@ continue if(distance_to_target <= 2) - INVOKE_ASYNC(GLOBAL_PROC, GLOBAL_PROC_REF(xeno_throw_human), carbon_in_range, xeno_owner, get_dir(xeno_owner, carbon_in_range), (6 - (distance_to_target * 2)), FALSE) + INVOKE_ASYNC(xeno_owner, TYPE_PROC_REF(/mob/living/carbon/xenomorph, throw_carbon), carbon_in_range, get_dir(xeno_owner, carbon_in_range), (6 - (distance_to_target * 2)), FALSE) to_chat(carbon_in_range, SPAN_XENOHIGHDANGER("You are flung by [xeno_owner] from the force of its crashing weight!")) continue @@ -168,7 +168,7 @@ if (!check_and_use_plasma_owner()) return - xeno.visible_message(SPAN_XENOWARNING("[xeno] hunkers down and bolsters its defenses!"), SPAN_XENOHIGHDANGER("You hunker down and bolster your defenses!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] hunkers down and bolsters its defenses!"), SPAN_XENOHIGHDANGER("We hunker down and bolster our defenses!")) button.icon_state = "template_active" xeno.create_crusher_shield() @@ -192,7 +192,7 @@ xeno.explosivearmor_modifier -= 1000 xeno.recalculate_armor() - to_chat(xeno, SPAN_XENODANGER("Your immunity to explosion damage ends!")) + to_chat(xeno, SPAN_XENODANGER("Our immunity to explosion damage ends!")) /datum/action/xeno_action/onclick/crusher_shield/proc/remove_shield() var/mob/living/carbon/xenomorph/xeno = owner @@ -208,7 +208,7 @@ if (istype(found)) found.on_removal() qdel(found) - to_chat(xeno, SPAN_XENOHIGHDANGER("You feel your enhanced shield end!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We feel our enhanced shield end!")) button.icon_state = "template" xeno.overlay_shields() @@ -218,7 +218,7 @@ activated = !activated var/will_charge = "[activated ? "now" : "no longer"]" - to_chat(Xeno, SPAN_XENONOTICE("You will [will_charge] charge when moving.")) + to_chat(Xeno, SPAN_XENONOTICE("We will [will_charge] charge when moving.")) if(activated) RegisterSignal(Xeno, COMSIG_MOVABLE_MOVED, PROC_REF(handle_movement)) RegisterSignal(Xeno, COMSIG_LIVING_SET_BODY_POSITION, PROC_REF(handle_position_change)) @@ -271,7 +271,7 @@ if(!target_dir) return - Xeno.visible_message(SPAN_XENOWARNING("[Xeno] tumbles over to the side!"), SPAN_XENOHIGHDANGER("You tumble over to the side!")) + Xeno.visible_message(SPAN_XENOWARNING("[Xeno] tumbles over to the side!"), SPAN_XENOHIGHDANGER("We tumble over to the side!")) Xeno.spin(5,1) // note: This spins the sprite and DOES NOT affect directional armor var/start_charging = HAS_TRAIT(Xeno, TRAIT_CHARGING) SEND_SIGNAL(Xeno, COMSIG_XENO_STOP_MOMENTUM) @@ -279,17 +279,11 @@ playsound(Xeno,"alien_tail_swipe", 50, 1) Xeno.use_plasma(plasma_cost) - var/datum/launch_metadata/LM = new() - LM.target = get_step(get_step(Xeno, target_dir), target_dir) - LM.range = target_dist - LM.speed = SPEED_FAST - LM.thrower = Xeno - LM.spin = FALSE - LM.pass_flags = PASS_CRUSHER_CHARGE - LM.collision_callbacks = list(/mob/living/carbon/human = CALLBACK(src, PROC_REF(handle_mob_collision))) - LM.end_throw_callbacks = list(CALLBACK(src, PROC_REF(on_end_throw), start_charging)) - - Xeno.launch_towards(LM) + + var/target = get_step(get_step(Xeno, target_dir), target_dir) + var/list/collision_callbacks = list(/mob/living/carbon/human = CALLBACK(src, PROC_REF(handle_mob_collision))) + var/list/end_throw_callbacks = list(CALLBACK(src, PROC_REF(on_end_throw), start_charging)) + Xeno.throw_atom(target, target_dist, SPEED_FAST, launch_type = LOW_LAUNCH, pass_flags = PASS_CRUSHER_CHARGE, end_throw_callbacks = end_throw_callbacks, collision_callbacks = collision_callbacks) apply_cooldown() return ..() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_abilities.dm index 3949e4ac9b..d28a4bb679 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_abilities.dm @@ -18,7 +18,14 @@ macro_path = /datum/action/xeno_action/verb/verb_headbutt action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 40 + xeno_cooldown = 4 SECONDS + + var/base_damage = 30 + var/usable_while_fortified = FALSE + +/datum/action/xeno_action/activable/headbutt/steel_crest + base_damage = 37.5 + usable_while_fortified = TRUE /datum/action/xeno_action/onclick/tail_sweep name = "Tail Sweep" @@ -28,7 +35,7 @@ action_type = XENO_ACTION_ACTIVATE ability_primacy = XENO_PRIMARY_ACTION_3 plasma_cost = 10 - xeno_cooldown = 110 + xeno_cooldown = 11 SECONDS /datum/action/xeno_action/activable/fortify name = "Fortify" @@ -41,8 +48,9 @@ /// Extra armor when fortified and facing bullets. var/frontal_armor = 5 - /// Extra armor when steelcrest, fortified, and facing bullets. - var/steelcrest_frontal_armor = 15 + +/datum/action/xeno_action/activable/fortify/steel_crest + frontal_armor = 15 /datum/action/xeno_action/activable/tail_stab/slam name = "Tail Slam" diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm index 3cdf1342f5..8736d612c8 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/defender/defender_powers.dm @@ -4,7 +4,7 @@ return if(xeno.fortify) - to_chat(xeno, SPAN_XENOWARNING("You cannot use abilities while fortified.")) + to_chat(xeno, SPAN_XENOWARNING("We cannot use abilities while fortified.")) return if(!xeno.check_state()) @@ -16,14 +16,16 @@ xeno.crest_defense = !xeno.crest_defense if(xeno.crest_defense) - to_chat(xeno, SPAN_XENOWARNING("You lower your crest.")) + to_chat(xeno, SPAN_XENOWARNING("We lower our crest.")) + xeno.ability_speed_modifier += speed_debuff xeno.armor_deflection_buff += armor_buff xeno.mob_size = MOB_SIZE_BIG //knockback immune button.icon_state = "template_active" xeno.update_icons() else - to_chat(xeno, SPAN_XENOWARNING("You raise your crest.")) + to_chat(xeno, SPAN_XENOWARNING("We raise our crest.")) + xeno.ability_speed_modifier -= speed_debuff xeno.armor_deflection_buff -= armor_buff xeno.mob_size = MOB_SIZE_XENO //no longer knockback immune @@ -36,7 +38,7 @@ // Defender Headbutt /datum/action/xeno_action/activable/headbutt/use_ability(atom/target_atom) var/mob/living/carbon/xenomorph/fendy = owner - if (!istype(fendy)) + if(!istype(fendy)) return if(!isxeno_human(target_atom) || fendy.can_not_harm(target_atom)) @@ -45,14 +47,14 @@ if(!fendy.check_state()) return - if (!action_cooldown_check()) + if(!action_cooldown_check()) return if(!check_and_use_plasma_owner()) return - if(fendy.fortify && !fendy.mutation_type == DEFENDER_STEELCREST) - to_chat(fendy, SPAN_XENOWARNING("You cannot use headbutt while fortified.")) + if(fendy.fortify && !usable_while_fortified) + to_chat(fendy, SPAN_XENOWARNING("We cannot use headbutt while fortified.")) return var/mob/living/carbon/carbone = target_atom @@ -75,30 +77,21 @@ carbone.last_damage_data = create_cause_data(fendy.caste_type, fendy) fendy.visible_message(SPAN_XENOWARNING("[fendy] rams [carbone] with its armored crest!"), \ - SPAN_XENOWARNING("You ram [carbone] with your armored crest!")) + SPAN_XENOWARNING("We ram [carbone] with our armored crest!")) - if(carbone.stat != DEAD && (!(carbone.status_flags & XENO_HOST) || !HAS_TRAIT(carbone, TRAIT_NESTED)) ) - var/h_damage = 30 - (fendy.crest_defense * 10) - if(fendy.mutation_type == DEFENDER_STEELCREST) - h_damage += 7.5 - carbone.apply_armoured_damage(get_xeno_damage_slash(carbone, h_damage), ARMOR_MELEE, BRUTE, "chest", 5) + if(carbone.stat != DEAD && (!(carbone.status_flags & XENO_HOST) || !HAS_TRAIT(carbone, TRAIT_NESTED))) + // -10 damage if their crest is down. + var/damage = base_damage - (fendy.crest_defense * 10) + carbone.apply_armoured_damage(get_xeno_damage_slash(carbone, damage), ARMOR_MELEE, BRUTE, "chest", 5) var/facing = get_dir(fendy, carbone) var/headbutt_distance = 1 + (fendy.crest_defense * 2) + (fendy.fortify * 2) - var/turf/thrown_turf = get_turf(fendy) - var/turf/temp = get_turf(fendy) - - for(var/x in 0 to headbutt_distance) - temp = get_step(thrown_turf, facing) - if(!temp) - break - thrown_turf = temp // Hmm today I will kill a marine while looking away from them fendy.face_atom(carbone) fendy.animation_attack_on(carbone) fendy.flick_attack_overlay(carbone, "punch") - carbone.throw_atom(thrown_turf, headbutt_distance, SPEED_SLOW, src) + fendy.throw_carbon(carbone, facing, headbutt_distance, SPEED_SLOW, shake_camera = FALSE, immobilize = FALSE) playsound(carbone,'sound/weapons/alien_claw_block.ogg', 50, 1) apply_cooldown() return ..() @@ -116,15 +109,15 @@ return if(xeno.fortify) - to_chat(src, SPAN_XENOWARNING("You cannot use tail swipe while fortified.")) + to_chat(src, SPAN_XENOWARNING("We cannot use tail swipe while fortified.")) return if(xeno.crest_defense) - to_chat(src, SPAN_XENOWARNING("You cannot use tail swipe with your crest lowered.")) + to_chat(src, SPAN_XENOWARNING("We cannot use tail swipe with our crest lowered.")) return xeno.visible_message(SPAN_XENOWARNING("[xeno] sweeps its tail in a wide circle!"), \ - SPAN_XENOWARNING("You sweep your tail in a wide circle!")) + SPAN_XENOWARNING("We sweep our tail in a wide circle!")) if(!check_and_use_plasma_owner()) return @@ -161,12 +154,8 @@ if (!istype(xeno)) return - if(xeno.crest_defense && xeno.mutation_type == DEFENDER_STEELCREST) - to_chat(src, SPAN_XENOWARNING("You cannot fortify while your crest is already down!")) - return - if(xeno.crest_defense) - to_chat(src, SPAN_XENOWARNING("You cannot use fortify with your crest lowered.")) + to_chat(src, SPAN_XENOWARNING("We cannot use fortify with our crest lowered.")) return if(!xeno.check_state()) @@ -178,11 +167,13 @@ playsound(get_turf(xeno), 'sound/effects/stonedoor_openclose.ogg', 30, 1) if(!xeno.fortify) - RegisterSignal(owner, COMSIG_MOB_DEATH, PROC_REF(death_check)) + RegisterSignal(owner, COMSIG_XENO_ENTER_CRIT, PROC_REF(unconscious_check)) + RegisterSignal(owner, COMSIG_MOB_DEATH, PROC_REF(unconscious_check)) fortify_switch(xeno, TRUE) if(xeno.selected_ability != src) button.icon_state = "template_active" else + UnregisterSignal(owner, COMSIG_XENO_ENTER_CRIT) UnregisterSignal(owner, COMSIG_MOB_DEATH) fortify_switch(xeno, FALSE) if(xeno.selected_ability != src) @@ -192,6 +183,7 @@ return ..() /datum/action/xeno_action/activable/fortify/action_activate() + . = ..() ..() var/mob/living/carbon/xenomorph/xeno = owner if(xeno.fortify && xeno.selected_ability != src) @@ -203,59 +195,67 @@ if(xeno.fortify) button.icon_state = "template_active" -/datum/action/xeno_action/activable/fortify/proc/fortify_switch(mob/living/carbon/xenomorph/X, fortify_state) - if(X.fortify == fortify_state) +/datum/action/xeno_action/activable/fortify/proc/fortify_switch(mob/living/carbon/xenomorph/xeno, fortify_state) + if(xeno.fortify == fortify_state) return if(fortify_state) - to_chat(X, SPAN_XENOWARNING("You tuck yourself into a defensive stance.")) - if(X.mutation_type == DEFENDER_STEELCREST) - X.armor_deflection_buff += 10 - X.armor_explosive_buff += 60 - X.ability_speed_modifier += 3 - X.damage_modifier -= XENO_DAMAGE_MOD_SMALL - else - X.armor_deflection_buff += 30 - X.armor_explosive_buff += 60 - ADD_TRAIT(X, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Fortify")) - X.anchored = TRUE - X.small_explosives_stun = FALSE + to_chat(xeno, SPAN_XENOWARNING("We tuck ourself into a defensive stance.")) RegisterSignal(owner, COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE, PROC_REF(check_directional_armor)) - X.mob_size = MOB_SIZE_IMMOBILE //knockback immune - X.mob_flags &= ~SQUEEZE_UNDER_VEHICLES - X.update_icons() - X.fortify = TRUE + xeno.mob_size = MOB_SIZE_IMMOBILE //knockback immune + xeno.mob_flags &= ~SQUEEZE_UNDER_VEHICLES + xeno.fortify = TRUE else - to_chat(X, SPAN_XENOWARNING("You resume your normal stance.")) - REMOVE_TRAIT(X, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Fortify")) - X.anchored = FALSE - if(X.mutation_type == DEFENDER_STEELCREST) - X.armor_deflection_buff -= 10 - X.armor_explosive_buff -= 60 - X.ability_speed_modifier -= 3 - X.damage_modifier += XENO_DAMAGE_MOD_SMALL - else - X.armor_deflection_buff -= 30 - X.armor_explosive_buff -= 60 - X.small_explosives_stun = TRUE + to_chat(xeno, SPAN_XENOWARNING("We resume our normal stance.")) + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Fortify")) + xeno.anchored = FALSE UnregisterSignal(owner, COMSIG_XENO_PRE_CALCULATE_ARMOURED_DAMAGE_PROJECTILE) - X.mob_size = MOB_SIZE_XENO //no longer knockback immune - X.mob_flags |= SQUEEZE_UNDER_VEHICLES - X.update_icons() - X.fortify = FALSE + xeno.mob_size = MOB_SIZE_XENO //no longer knockback immune + xeno.mob_flags |= SQUEEZE_UNDER_VEHICLES + xeno.fortify = FALSE + + apply_modifiers(xeno, fortify_state) + xeno.update_icons() + +/datum/action/xeno_action/activable/fortify/proc/apply_modifiers(mob/living/carbon/xenomorph/xeno, fortify_state) + if(fortify_state) + xeno.armor_deflection_buff += 30 + xeno.armor_explosive_buff += 60 + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Fortify")) + xeno.anchored = TRUE + xeno.small_explosives_stun = FALSE + else + xeno.armor_deflection_buff -= 30 + xeno.armor_explosive_buff -= 60 + xeno.small_explosives_stun = TRUE + +// Steel crest override +/datum/action/xeno_action/activable/fortify/steel_crest/apply_modifiers(mob/living/carbon/xenomorph/xeno, fortify_state) + if(fortify_state) + xeno.armor_deflection_buff += 10 + xeno.armor_explosive_buff += 60 + xeno.ability_speed_modifier += 3 + xeno.damage_modifier -= XENO_DAMAGE_MOD_SMALL + else + xeno.armor_deflection_buff -= 10 + xeno.armor_explosive_buff -= 60 + xeno.ability_speed_modifier -= 3 + xeno.damage_modifier += XENO_DAMAGE_MOD_SMALL /datum/action/xeno_action/activable/fortify/proc/check_directional_armor(mob/living/carbon/xenomorph/defendy, list/damagedata) SIGNAL_HANDLER var/projectile_direction = damagedata["direction"] + // If the defender is facing the projectile. if(defendy.dir & REVERSE_DIR(projectile_direction)) - if(defendy.mutation_type == DEFENDER_STEELCREST) - damagedata["armor"] += steelcrest_frontal_armor - else - damagedata["armor"] += frontal_armor + damagedata["armor"] += frontal_armor -/datum/action/xeno_action/activable/fortify/proc/death_check() +/datum/action/xeno_action/activable/fortify/proc/unconscious_check() SIGNAL_HANDLER + if(QDELETED(owner)) + return + + UnregisterSignal(owner, COMSIG_XENO_ENTER_CRIT) UnregisterSignal(owner, COMSIG_MOB_DEATH) fortify_switch(owner, FALSE) @@ -274,9 +274,9 @@ RegisterSignal(steelcrest, COMSIG_XENO_TAKE_DAMAGE, PROC_REF(damage_accumulate)) addtimer(CALLBACK(src, PROC_REF(stop_accumulating)), 6 SECONDS) - steelcrest.balloon_alert(steelcrest, "begins to take in oncoming damage!") + steelcrest.balloon_alert(steelcrest, "begins to tank incoming damage!") - to_chat(steelcrest, SPAN_XENONOTICE("You begin to take in oncoming damage!")) + to_chat(steelcrest, SPAN_XENONOTICE("We begin to tank incoming damage!")) steelcrest.add_filter("steelcrest_enraging", 1, list("type" = "outline", "color" = "#421313", "size" = 1)) @@ -297,14 +297,14 @@ UnregisterSignal(owner, COMSIG_XENO_TAKE_DAMAGE) damage_accumulated = 0 - to_chat(owner, SPAN_XENONOTICE("You stop taking in oncoming damage.")) + to_chat(owner, SPAN_XENONOTICE("We stop taking incoming damage.")) owner.remove_filter("steelcrest_enraging") /datum/action/xeno_action/onclick/soak/proc/enraged() owner.remove_filter("steelcrest_enraging") owner.add_filter("steelcrest_enraged", 1, list("type" = "outline", "color" = "#ad1313", "size" = 1)) - owner.visible_message(SPAN_XENOWARNING("[owner] gets enraged after being damaged enough!"), SPAN_XENOWARNING("You feel enraged after taking in oncoming damage! Your tail slam's cooldown is reset and you heal!")) + owner.visible_message(SPAN_XENOWARNING("[owner] gets enraged after being damaged enough!"), SPAN_XENOWARNING("We feel enraged after taking in oncoming damage! Our tail slam's cooldown is reset and we heal!")) var/mob/living/carbon/xenomorph/enraged_mob = owner enraged_mob.gain_health(75) // pretty reasonable amount of health recovered @@ -321,4 +321,3 @@ /datum/action/xeno_action/onclick/soak/proc/remove_enrage() owner.remove_filter("steelcrest_enraged") - diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_abilities.dm index ccb31820db..89a4a5ae82 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_abilities.dm @@ -5,7 +5,7 @@ macro_path = /datum/action/xeno_action/verb/verb_pounce action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - xeno_cooldown = 30 + xeno_cooldown = 3 SECONDS plasma_cost = 0 // Config options @@ -19,3 +19,8 @@ can_be_shield_blocked = TRUE ai_prob_chance = 45 + +/datum/action/xeno_action/onclick/toggle_long_range/facehugger + handles_movement = FALSE + should_delay = FALSE + ability_primacy = XENO_PRIMARY_ACTION_3 diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_powers.dm index e76cc4322b..6eef21c6d5 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/facehugger/facehugger_powers.dm @@ -23,6 +23,24 @@ /datum/action/xeno_action/activable/pounce/facehugger/use_ability() for(var/obj/structure/machinery/door/airlock/current_airlock in get_turf(owner)) if(current_airlock.density) //if its CLOSED YOU'RE SCUTTLING AND CANNOT POUNCE!!! - to_chat(owner, SPAN_WARNING("You cannot do that while squeezing and scuttling!")) + to_chat(owner, SPAN_WARNING("We cannot do that while squeezing and scuttling!")) return FALSE + + if(HAS_TRAIT(owner, TRAIT_IMMOBILIZED)) + to_chat(owner, SPAN_WARNING("We cannot do that while immobilized!")) + return FALSE + return ..() + +/datum/action/xeno_action/onclick/toggle_long_range/facehugger/on_zoom_out() + . = ..() + + var/mob/living/carbon/xenomorph/facehugger/facehugger = owner + REMOVE_TRAIT(facehugger, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Long-Range Sight")) + +/datum/action/xeno_action/onclick/toggle_long_range/facehugger/on_zoom_in() + . = ..() + + var/mob/living/carbon/xenomorph/facehugger/facehugger = owner + ADD_TRAIT(facehugger, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Long-Range Sight")) + diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm index ac9bc1912b..fa3d8ee893 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_abilities.dm @@ -235,7 +235,7 @@ pouncing_xeno.add_temp_pass_flags(PASS_OVER_THROW_MOB) - for(var/i in getline2(pouncing_xeno, pouncing_xeno.current_target, FALSE)) + for(var/i in get_line(pouncing_xeno, pouncing_xeno.current_target, FALSE)) var/turf/new_turf = i if(LinkBlocked(pouncing_xeno, last_turf, new_turf, list(pouncing_xeno.current_target, pouncing_xeno))) clear = FALSE @@ -284,7 +284,7 @@ REMOVE_TRAIT(X, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Pounce")) deltimer(freeze_timer_id) freeze_timer_id = TIMER_ID_NULL - to_chat(X, SPAN_XENONOTICE("Slashing frenzies you! You feel free to move immediately!")) + to_chat(X, SPAN_XENONOTICE("Slashing frenzies us! We feel free to move immediately!")) /// Any effects to apply to the xenomorph before the windup occurs /datum/action/xeno_action/activable/pounce/proc/pre_windup_effects() @@ -325,7 +325,9 @@ /datum/action/xeno_action/onclick/toggle_long_range/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner - xeno.speed_modifier = initial(xeno.speed_modifier)// Reset the speed modifier should you be disrupted while zooming or whatnot + + if (!xeno.check_state()) + return if(xeno.observed_xeno) return @@ -334,7 +336,7 @@ xeno.zoom_out() // will call on_zoom_out() return xeno.visible_message(SPAN_NOTICE("[xeno] starts looking off into the distance."), \ - SPAN_NOTICE("You start focusing your sight to look off into the distance."), null, 5) + SPAN_NOTICE("We start focusing our sight to look off into the distance."), null, 5) if (should_delay) if(!do_after(xeno, delay, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) return if(xeno.is_zoomed) @@ -351,12 +353,15 @@ /datum/action/xeno_action/onclick/toggle_long_range/proc/on_zoom_out() var/mob/living/carbon/xenomorph/xeno = owner xeno.visible_message(SPAN_NOTICE("[xeno] stops looking off into the distance."), \ - SPAN_NOTICE("You stop looking off into the distance."), null, 5) + SPAN_NOTICE("We stop looking off into the distance."), null, 5) if(movement_slowdown) xeno.speed_modifier -= movement_slowdown xeno.recalculate_speed() button.icon_state = "template" +/datum/action/xeno_action/onclick/toggle_long_range/proc/on_zoom_in() + return + /datum/action/xeno_action/onclick/toggle_long_range/proc/handle_mob_move_or_look(mob/living/carbon/xenomorph/xeno, actually_moving, direction, specific_direction) SIGNAL_HANDLER movement_buffer-- @@ -454,7 +459,7 @@ action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_5 -/datum/action/xeno_action/activable/place_construction/queen_macro //so it doesn't screw other macros up +/datum/action/xeno_action/activable/place_construction/not_primary //so it doesn't screw other macros up ability_primacy = XENO_NOT_PRIMARY_ACTION /datum/action/xeno_action/activable/xeno_spit @@ -464,7 +469,7 @@ macro_path = /datum/action/xeno_action/verb/verb_xeno_spit action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - cooldown_message = "You feel your neurotoxin glands swell with ichor. You can spit again." + cooldown_message = "We feel our neurotoxin glands swell with ichor. We can spit again." xeno_cooldown = 60 SECONDS /// Var that keeps track of in-progress wind-up spits like Bombard to prevent spitting multiple spits at the same time @@ -510,6 +515,7 @@ listen_signal = COMSIG_KB_XENO_EVOLVE /datum/action/xeno_action/onclick/evolve/action_activate() + . = ..() var/mob/living/carbon/xenomorph/xeno = owner xeno.do_evolve() @@ -527,6 +533,7 @@ ability_name = "view tacmap" var/mob/living/carbon/xenomorph/queen/tracked_queen + var/hivenumber /datum/action/xeno_action/onclick/tacmap/Destroy() tracked_queen = null @@ -535,6 +542,7 @@ /datum/action/xeno_action/onclick/tacmap/give_to(mob/living/carbon/xenomorph/xeno) . = ..() + hivenumber = xeno.hive.hivenumber RegisterSignal(xeno.hive, COMSIG_HIVE_NEW_QUEEN, PROC_REF(handle_new_queen)) if(!xeno.hive.living_xeno_queen) @@ -546,6 +554,10 @@ handle_new_queen(new_queen = xeno.hive.living_xeno_queen) +/datum/action/xeno_action/onclick/tacmap/remove_from(mob/living/carbon/xenomorph/xeno) + . = ..() + UnregisterSignal(GLOB.hive_datum[hivenumber], COMSIG_HIVE_NEW_QUEEN) + /// handles the addition of a new queen, hiding if appropriate /datum/action/xeno_action/onclick/tacmap/proc/handle_new_queen(datum/hive_status/hive, mob/living/carbon/xenomorph/queen/new_queen) SIGNAL_HANDLER @@ -585,3 +597,18 @@ var/mob/living/carbon/xenomorph/xeno = owner xeno.xeno_tacmap() return ..() + +/datum/action/xeno_action/active_toggle/toggle_meson_vision + name = "Toggle Meson Vision" + action_icon_state = "project_xeno" + plasma_cost = 0 + action_type = XENO_ACTION_CLICK + ability_primacy = XENO_PRIMARY_ACTION_5 + +/datum/action/xeno_action/active_toggle/toggle_meson_vision/enable_toggle() + . = ..() + owner.sight |= SEE_TURFS + +/datum/action/xeno_action/active_toggle/toggle_meson_vision/disable_toggle() + . = ..() + owner.sight &= ~SEE_TURFS diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm index 58c3e56738..03f8a055eb 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/general_powers.dm @@ -15,11 +15,11 @@ var/turf/turf = xeno.loc if(!istype(turf)) - to_chat(xeno, SPAN_WARNING("You can't do that here.")) + to_chat(xeno, SPAN_WARNING("We can't do that here.")) return if(turf.density) - to_chat(xeno, SPAN_WARNING("You can't do that here.")) + to_chat(xeno, SPAN_WARNING("We can't do that here.")) return var/is_weedable = turf.is_weedable() @@ -37,7 +37,7 @@ var/obj/effect/alien/resin/trap/resin_trap = locate() in turf if(resin_trap) - to_chat(xeno, SPAN_WARNING("You can't weed on top of a trap!")) + to_chat(xeno, SPAN_WARNING("We can't weed on top of a trap!")) return var/obj/effect/alien/weeds/weed = node || locate() in turf @@ -47,7 +47,7 @@ for(var/obj/structure/struct in turf) if(struct.density && !(struct.flags_atom & ON_BORDER)) // Not sure exactly if we need to test against ON_BORDER though - to_chat(xeno, SPAN_WARNING("You can't do that here.")) + to_chat(xeno, SPAN_WARNING("We can't do that here.")) return var/area/area = get_area(turf) @@ -66,7 +66,7 @@ to_convert = node.children.Copy() xeno.visible_message(SPAN_XENONOTICE("\The [xeno] regurgitates a pulsating node and plants it on the ground!"), \ - SPAN_XENONOTICE("You regurgitate a pulsating node and plant it on the ground!"), null, 5) + SPAN_XENONOTICE("We regurgitate a pulsating node and plant it on the ground!"), null, 5) var/obj/effect/alien/weeds/node/new_node = new node_type(xeno.loc, xeno.hivenumber, xeno) if(to_convert) @@ -78,6 +78,7 @@ playsound(xeno.loc, "alien_resin_build", 25) apply_cooldown() + SEND_SIGNAL(xeno, COMSIG_XENO_PLANT_RESIN_NODE) return ..() /mob/living/carbon/xenomorph/lay_down() @@ -86,15 +87,15 @@ return if(fortify) - to_chat(src, SPAN_WARNING("You cannot rest while fortified!")) + to_chat(src, SPAN_WARNING("We cannot rest while fortified!")) return if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) - to_chat(src, SPAN_WARNING("You cannot rest while burrowed!")) + to_chat(src, SPAN_WARNING("We cannot rest while burrowed!")) return if(crest_defense) - to_chat(src, SPAN_WARNING("You cannot rest while your crest is down!")) + to_chat(src, SPAN_WARNING("We cannot rest while our crest is down!")) return return ..() @@ -110,14 +111,14 @@ var/mob/living/carbon/xenomorph/X = owner if(!X.check_state()) return - for(var/i in 1 to X.caste.spit_types.len) + for(var/i in 1 to length(X.caste.spit_types)) if(X.ammo == GLOB.ammo_list[X.caste.spit_types[i]]) - if(i == X.caste.spit_types.len) + if(i == length(X.caste.spit_types)) X.ammo = GLOB.ammo_list[X.caste.spit_types[1]] else X.ammo = GLOB.ammo_list[X.caste.spit_types[i+1]] break - to_chat(X, SPAN_NOTICE("You will now spit [X.ammo.name] ([X.ammo.spit_cost] plasma).")) + to_chat(X, SPAN_NOTICE("We will now spit [X.ammo.name] ([X.ammo.spit_cost] plasma).")) button.overlays.Cut() button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, "shift_spit_[X.ammo.icon_state]") return ..() @@ -128,10 +129,10 @@ return if(!isturf(X.loc)) - to_chat(X, SPAN_WARNING("You cannot regurgitate here.")) + to_chat(X, SPAN_WARNING("We cannot regurgitate here.")) return - if(X.stomach_contents.len) + if(length(X.stomach_contents)) for(var/mob/living/M in X.stomach_contents) // Also has good reason to be a proc on all Xenos X.regurgitate(M, TRUE) @@ -223,7 +224,7 @@ return var/datum/resin_construction/resin_construction = GLOB.resin_constructions_list[selected_type] if(to_chat) - to_chat(usr, SPAN_NOTICE("You will now build [resin_construction.construction_name]\s when secreting resin.")) + to_chat(usr, SPAN_NOTICE("We will now build [resin_construction.construction_name]\s when secreting resin.")) button.overlays.Cut() button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, resin_construction.construction_name) @@ -265,7 +266,7 @@ return FALSE if(ismob(A)) //anticheese : if they click a mob, it will cancel. - to_chat(X, SPAN_XENOWARNING("You can't place resin markers on living things!")) + to_chat(X, SPAN_XENOWARNING("We can't place resin markers on living things!")) return FALSE //this is because xenos have thermal vision and can see mobs through walls - which would negate not being able to place them through walls if(isstorage(A.loc) || X.contains(A) || istype(A, /atom/movable/screen)) return FALSE @@ -275,7 +276,7 @@ to_chat(X, SPAN_XENOWARNING("This area is too far away to affect!")) return if(!X.hive.living_xeno_queen || X.hive.living_xeno_queen.z != X.z) - to_chat(X, SPAN_XENOWARNING("You have no queen, the psychic link is gone!")) + to_chat(X, SPAN_XENOWARNING("We have no queen, the psychic link is gone!")) return var/tally = 0 @@ -284,7 +285,7 @@ if(MRK.createdby == X.nicknumber) tally++ if(tally >= max_markers) - to_chat(X, SPAN_XENOWARNING("You have reached the maximum number of resin marks.")) + to_chat(X, SPAN_XENOWARNING("We have reached the maximum number of resin marks.")) var/list/promptlist = list("Yes", "No") var/obj/effect/alien/resin/marker/Goober = null var/promptuser = null @@ -326,16 +327,16 @@ if(!check_state(TRUE)) return if(!(locate(/datum/action/xeno_action/onclick/emit_pheromones) in actions)) - to_chat(src, SPAN_XENOWARNING("You are incapable of emitting pheromones!")) + to_chat(src, SPAN_XENOWARNING("We are incapable of emitting pheromones!")) return if(!pheromone) if(current_aura) current_aura = null visible_message(SPAN_XENOWARNING("\The [src] stops emitting pheromones."), \ - SPAN_XENOWARNING("You stop emitting pheromones."), null, 5) + SPAN_XENOWARNING("We stop emitting pheromones."), null, 5) else if(!check_plasma(emit_cost)) - to_chat(src, SPAN_XENOWARNING("You do not have enough plasma!")) + to_chat(src, SPAN_XENOWARNING("We do not have enough plasma!")) return if(client.prefs && client.prefs.no_radials_preference) pheromone = tgui_input_list(src, "Choose a pheromone", "Pheromone Menu", caste.aura_allowed + "help" + "cancel", theme="hive_status") @@ -354,18 +355,19 @@ return if(pheromone) if(pheromone == current_aura) - to_chat(src, SPAN_XENOWARNING("You are already emitting [pheromone] pheromones!")) + to_chat(src, SPAN_XENOWARNING("We are already emitting [pheromone] pheromones!")) return if(!check_plasma(emit_cost)) - to_chat(src, SPAN_XENOWARNING("You do not have enough plasma!")) + to_chat(src, SPAN_XENOWARNING("We do not have enough plasma!")) return use_plasma(emit_cost) current_aura = pheromone visible_message(SPAN_XENOWARNING("\The [src] begins to emit strange-smelling pheromones."), \ - SPAN_XENOWARNING("You begin to emit '[pheromone]' pheromones."), null, 5) + SPAN_XENOWARNING("We begin to emit '[pheromone]' pheromones."), null, 5) + SEND_SIGNAL(src, COMSIG_XENO_START_EMIT_PHEROMONES, pheromone) playsound(loc, "alien_drool", 25) - if(isqueen(src) && hive && hive.xeno_leader_list.len && anchored) + if(isqueen(src) && hive && length(hive.xeno_leader_list) && anchored) for(var/mob/living/carbon/xenomorph/L in hive.xeno_leader_list) L.handle_xeno_leader_pheromones() @@ -382,21 +384,21 @@ return if(!isturf(X.loc)) - to_chat(X, SPAN_XENOWARNING("You can't [ability_name] from here!")) + to_chat(X, SPAN_XENOWARNING("We can't [ability_name] from here!")) return if(!X.check_state()) return if(X.legcuffed) - to_chat(X, SPAN_XENODANGER("You can't [ability_name] with that thing on your leg!")) + to_chat(X, SPAN_XENODANGER("We can't [ability_name] with that thing on our leg!")) return if(!check_and_use_plasma_owner()) return if(X.layer == XENO_HIDING_LAYER) //Xeno is currently hiding, unhide him - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(X, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(X, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() @@ -416,7 +418,7 @@ pre_windup_effects() if (!do_after(X, windup_duration, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) - to_chat(X, SPAN_XENODANGER("You cancel your [ability_name]!")) + to_chat(X, SPAN_XENODANGER("We cancel our [ability_name]!")) if (!windup_interruptable) REMOVE_TRAIT(X, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Pounce")) X.anchored = FALSE @@ -428,25 +430,13 @@ X.anchored = FALSE post_windup_effects() - X.visible_message(SPAN_XENOWARNING("\The [X] [ability_name][findtext(ability_name, "e", -1) || findtext(ability_name, "p", -1) ? "s" : "es"] at [A]!"), SPAN_XENOWARNING("You [ability_name] at [A]!")) + X.visible_message(SPAN_XENOWARNING("\The [X] [ability_name][findtext(ability_name, "e", -1) || findtext(ability_name, "p", -1) ? "s" : "es"] at [A]!"), SPAN_XENOWARNING("We [ability_name] at [A]!")) pre_pounce_effects() X.pounce_distance = get_dist(X, A) - - var/datum/launch_metadata/LM = new() - LM.target = A - LM.range = distance - LM.speed = throw_speed - LM.thrower = X - LM.spin = FALSE - LM.pass_flags = pounce_pass_flags - LM.collision_callbacks = pounce_callbacks - + X.throw_atom(A, distance, throw_speed, X, launch_type = LOW_LAUNCH, pass_flags = pounce_pass_flags, collision_callbacks = pounce_callbacks) SEND_SIGNAL(owner, COMSIG_XENO_USED_POUNCE, A) - - X.launch_towards(LM) - X.update_icons() additional_effects_always() @@ -467,7 +457,7 @@ return if(!isturf(X.loc)) - to_chat(X, SPAN_XENOWARNING("You can't [ability_name] from here!")) + to_chat(X, SPAN_XENOWARNING("We can't [ability_name] from here!")) return if(!X.check_state() || X.action_busy) @@ -475,7 +465,7 @@ if (activation_delay) if(!do_after(X, activation_delay_length, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) - to_chat(X, SPAN_XENOWARNING("You decide to cancel your acid spray.")) + to_chat(X, SPAN_XENOWARNING("We decide to cancel our acid spray.")) end_cooldown() return @@ -488,13 +478,13 @@ return playsound(get_turf(X), 'sound/effects/refill.ogg', 25, 1) - X.visible_message(SPAN_XENOWARNING("[X] vomits a flood of acid!"), SPAN_XENOWARNING("You vomit a flood of acid!"), null, 5) + X.visible_message(SPAN_XENOWARNING("[X] vomits a flood of acid!"), SPAN_XENOWARNING("We vomit a flood of acid!"), null, 5) apply_cooldown() // Build our list of target turfs based on if (spray_type == ACID_SPRAY_LINE) - X.do_acid_spray_line(getline2(X, A, include_from_atom = FALSE), spray_effect_type, spray_distance) + X.do_acid_spray_line(get_line(X, A, include_start_atom = FALSE), spray_effect_type, spray_distance) else if (spray_type == ACID_SPRAY_CONE) X.do_acid_spray_cone(get_turf(A), spray_effect_type, spray_distance) @@ -511,12 +501,12 @@ return if(xeno.layer != XENO_HIDING_LAYER) xeno.layer = XENO_HIDING_LAYER - to_chat(xeno, SPAN_NOTICE("You are now hiding.")) + to_chat(xeno, SPAN_NOTICE("We are now hiding.")) button.icon_state = "template_active" RegisterSignal(xeno, COMSIG_MOB_STATCHANGE, PROC_REF(unhide_on_stat)) else xeno.layer = initial(xeno.layer) - to_chat(xeno, SPAN_NOTICE("You have stopped hiding.")) + to_chat(xeno, SPAN_NOTICE("We have stopped hiding.")) button.icon_state = "template" UnregisterSignal(xeno, COMSIG_MOB_STATCHANGE) xeno.update_wounds() @@ -525,7 +515,7 @@ /datum/action/xeno_action/onclick/xenohide/proc/unhide_on_stat(mob/living/carbon/xenomorph/source, new_stat, old_stat) SIGNAL_HANDLER - if(new_stat >= UNCONSCIOUS && old_stat <= UNCONSCIOUS) + if(!QDELETED(source) && (new_stat >= UNCONSCIOUS && old_stat <= UNCONSCIOUS)) post_attack() /datum/action/xeno_action/onclick/place_trap/use_ability(atom/A) @@ -540,17 +530,17 @@ var/turf/T = get_turf(X) if(!istype(T)) - to_chat(X, SPAN_XENOWARNING("You can't do that here.")) + to_chat(X, SPAN_XENOWARNING("We can't do that here.")) return var/area/AR = get_area(T) if(istype(AR,/area/shuttle/drop1/lz1) || istype(AR,/area/shuttle/drop2/lz2) || SSinterior.in_interior(owner)) - to_chat(X, SPAN_WARNING("You sense this is not a suitable area for creating a resin hole.")) + to_chat(X, SPAN_WARNING("We sense this is not a suitable area for creating a resin hole.")) return var/obj/effect/alien/weeds/alien_weeds = T.check_xeno_trap_placement(X) if(!alien_weeds) return if(istype(alien_weeds, /obj/effect/alien/weeds/node)) - to_chat(X, SPAN_NOTICE("You start uprooting the node so you can put the resin hole in its place...")) + to_chat(X, SPAN_NOTICE("We start uprooting the node so we can put the resin hole in its place...")) if(!do_after(X, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC, target, INTERRUPT_ALL)) return if(!T.check_xeno_trap_placement(X)) @@ -566,21 +556,28 @@ X.use_plasma(plasma_cost) playsound(X.loc, "alien_resin_build", 25) new /obj/effect/alien/resin/trap(T, X) - to_chat(X, SPAN_XENONOTICE("You place a resin hole on the weeds, it still needs a sister to fill it with acid.")) + to_chat(X, SPAN_XENONOTICE("We place a resin hole on the weeds, it still needs a sister to fill it with acid.")) return ..() /turf/proc/check_xeno_trap_placement(mob/living/carbon/xenomorph/X) if(is_weedable() < FULLY_WEEDABLE || !can_xeno_build(src)) - to_chat(X, SPAN_XENOWARNING("You can't do that here.")) + to_chat(X, SPAN_XENOWARNING("We can't do that here.")) return FALSE var/obj/effect/alien/weeds/alien_weeds = locate() in src if(!alien_weeds) - to_chat(X, SPAN_XENOWARNING("You can only shape on weeds. Find some resin before you start building!")) + to_chat(X, SPAN_XENOWARNING("We can only shape on weeds. We must find some resin before we start building!")) + return FALSE + + // This snowflake check exists because stairs specifically are indestructable, tile-covering, and cannot be moved, which allows resin holes to be + // planted under them without any possible counterplay. In the future if resin holes stop being able to be hidden under objects, remove this check. + var/obj/structure/stairs/staircase = locate() in src + if(staircase) + to_chat(X, SPAN_XENOWARNING("We cannot make a hole beneath a staircase!")) return FALSE if(alien_weeds.linked_hive.hivenumber != X.hivenumber) - to_chat(X, SPAN_XENOWARNING("These weeds don't belong to your hive!")) + to_chat(X, SPAN_XENOWARNING("These weeds don't belong to our hive!")) return FALSE if(!X.check_alien_construction(src, check_doors = TRUE)) @@ -640,13 +637,14 @@ to_chat(X, SPAN_WARNING("The weeds are still recovering from the death of the hive core, wait until the weeds have recovered!")) return FALSE if(X.hive.has_structure(XENO_STRUCTURE_CORE) || !X.hive.can_build_structure(XENO_STRUCTURE_CORE)) - choice = tgui_input_list(X, "Choose a structure to build", "Build structure", X.hive.hive_structure_types + "help", theme="hive_status") + choice = tgui_input_list(X, "Choose a structure to build", "Build structure", X.hive.hive_structure_types + "help", theme = "hive_status") if(!choice) return if(choice == "help") - var/message = "
        Placing a construction node creates a template for special structures that can benefit the hive, which require the insertion of [MATERIAL_CRYSTAL] to construct the following:
        " + var/message = "Placing a construction node creates a template for special structures that can benefit the hive, which require the insertion of plasma to construct the following:
        " for(var/structure_name in X.hive.hive_structure_types) - message += "[get_xeno_structure_desc(structure_name)]
        " + var/datum/construction_template/xenomorph/structure_type = X.hive.hive_structure_types[structure_name] + message += "[capitalize_first_letters(structure_name)] - [initial(structure_type.description)]
        " to_chat(X, SPAN_NOTICE(message)) return TRUE if(!X.check_state(TRUE) || !X.check_plasma(400)) @@ -654,39 +652,35 @@ var/structure_type = X.hive.hive_structure_types[choice] var/datum/construction_template/xenomorph/structure_template = new structure_type() - if(!spacecheck(X,T,structure_template)) + if(!spacecheck(X, T, structure_template)) return FALSE if(!do_after(X, XENO_STRUCTURE_BUILD_TIME, INTERRUPT_NO_NEEDHAND|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) return FALSE - if(!spacecheck(X,T,structure_template)) //doublechecking + if(!spacecheck(X, T, structure_template)) //doublechecking return FALSE if((choice == XENO_STRUCTURE_CORE) && isqueen(X) && X.hive.has_structure(XENO_STRUCTURE_CORE)) if(X.hive.hive_location.hardcore || world.time > XENOMORPH_PRE_SETUP_CUTOFF) - to_chat(X, SPAN_WARNING("You can't rebuild this structure!")) - return - if(alert(X, "Are you sure that you want to move the hive and destroy the old hive core?", , "Yes", "No") != "Yes") - return + to_chat(X, SPAN_WARNING("We can't rebuild this structure!")) + return FALSE + if(alert(X, "Are we sure that we want to move the hive and destroy the old hive core?", , "Yes", "No") != "Yes") + return FALSE qdel(X.hive.hive_location) else if(!X.hive.can_build_structure(choice)) - to_chat(X, SPAN_WARNING("You can't build any more [choice]s for the hive.")) - return FALSE - - if(!X.hive.can_build_structure(structure_template.name) && !(choice == XENO_STRUCTURE_CORE)) - to_chat(X, SPAN_WARNING("You cannot build any more [structure_template.name]!")) + to_chat(X, SPAN_WARNING("We can't build any more [choice]s for the hive.")) qdel(structure_template) return FALSE - if (QDELETED(T)) - to_chat(X, SPAN_WARNING("You cannot build here!")) + if(QDELETED(T)) + to_chat(X, SPAN_WARNING("We cannot build here!")) qdel(structure_template) return FALSE var/queen_on_zlevel = !X.hive.living_xeno_queen || X.hive.living_xeno_queen.z == T.z if(!queen_on_zlevel) - to_chat(X, SPAN_WARNING("Your link to the Queen is too weak here. She is on another world.")) + to_chat(X, SPAN_WARNING("Our link to the Queen is too weak here. She is on another world.")) qdel(structure_template) return FALSE @@ -715,23 +709,23 @@ /datum/action/xeno_action/activable/place_construction/proc/spacecheck(mob/living/carbon/xenomorph/X, turf/T, datum/construction_template/xenomorph/tem) if(tem.block_range) - for(var/turf/TA in range(T, tem.block_range)) - if(!X.check_alien_construction(TA, FALSE, TRUE)) - to_chat(X, SPAN_WARNING("You need more open space to build here.")) + for(var/turf/TA in range(tem.block_range, T)) + if(!X.check_alien_construction(TA, FALSE, TRUE, ignore_nest = TRUE)) + to_chat(X, SPAN_WARNING("We need more open space to build here.")) qdel(tem) return FALSE - if(!X.check_alien_construction(T)) - to_chat(X, SPAN_WARNING("You need more open space to build here.")) + if(!X.check_alien_construction(T, ignore_nest = TRUE)) + to_chat(X, SPAN_WARNING("We need more open space to build here.")) qdel(tem) return FALSE var/obj/effect/alien/weeds/alien_weeds = locate() in T if(!alien_weeds || alien_weeds.weed_strength < WEED_LEVEL_HIVE || alien_weeds.linked_hive.hivenumber != X.hivenumber) - to_chat(X, SPAN_WARNING("You can only shape on [lowertext(GLOB.hive_datum[X.hivenumber].prefix)]hive weeds. Find a hive node or core before you start building!")) + to_chat(X, SPAN_WARNING("We can only shape on [lowertext(GLOB.hive_datum[X.hivenumber].prefix)]hive weeds. We must find a hive node or core before we start building!")) qdel(tem) return FALSE if(T.density) qdel(tem) - to_chat(X, SPAN_WARNING("You need an empty space to build this.")) + to_chat(X, SPAN_WARNING("We need empty space to build this.")) return FALSE return TRUE @@ -742,15 +736,15 @@ return if(spitting) - to_chat(src, SPAN_WARNING("You are already preparing a spit!")) + to_chat(src, SPAN_WARNING("We are already preparing a spit!")) return if(!isturf(xeno.loc)) - to_chat(src, SPAN_WARNING("You can't spit from here!")) + to_chat(src, SPAN_WARNING("We can't spit from here!")) return if(!action_cooldown_check()) - to_chat(src, SPAN_WARNING("You must wait for your spit glands to refill.")) + to_chat(src, SPAN_WARNING("We must wait for our spit glands to refill.")) return var/turf/current_turf = get_turf(xeno) @@ -765,11 +759,11 @@ spitting = TRUE if(xeno.ammo.pre_spit_warn) playsound(xeno.loc,"alien_drool", 55, 1) - to_chat(xeno, SPAN_WARNING("You begin to prepare a large spit!")) + to_chat(xeno, SPAN_WARNING("We begin to prepare a large spit!")) xeno.visible_message(SPAN_WARNING("[xeno] prepares to spit a massive glob!"),\ - SPAN_WARNING("You begin to spit [xeno.ammo.name]!")) + SPAN_WARNING("We begin to spit [xeno.ammo.name]!")) if (!do_after(xeno, xeno.ammo.spit_windup, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) - to_chat(xeno, SPAN_XENODANGER("You decide to cancel your spit.")) + to_chat(xeno, SPAN_XENODANGER("We decide to cancel our spit.")) spitting = FALSE return plasma_cost = xeno.ammo.spit_cost @@ -781,7 +775,7 @@ xeno_cooldown = xeno.caste.spit_delay + xeno.ammo.added_spit_delay xeno.visible_message(SPAN_XENOWARNING("[xeno] spits at [atom]!"), \ - SPAN_XENOWARNING("You spit a [xeno.ammo.name] at [atom]!") ) + SPAN_XENOWARNING("We spit [xeno.ammo.name] at [atom]!") ) playsound(xeno.loc, sound_to_play, 25, 1) var/obj/projectile/proj = new (current_turf, create_cause_data(xeno.ammo.name, xeno)) @@ -806,7 +800,7 @@ var/turf/T = get_turf(A) if(isnull(T) || istype(T, /turf/closed) || !T.can_bombard(owner)) - to_chat(X, SPAN_XENODANGER("You can't bombard that!")) + to_chat(X, SPAN_XENODANGER("We can't bombard that!")) return FALSE if (!check_plasma_owner()) @@ -820,9 +814,9 @@ if (!X.can_bombard_turf(T, range, bombard_source)) return FALSE - X.visible_message(SPAN_XENODANGER("[X] digs itself into place!"), SPAN_XENODANGER("You dig yourself into place!")) + X.visible_message(SPAN_XENODANGER("[X] digs itself into place!"), SPAN_XENODANGER("We dig ourself into place!")) if (!do_after(X, activation_delay, interrupt_flags, BUSY_ICON_HOSTILE)) - to_chat(X, SPAN_XENODANGER("You decide to cancel your bombard.")) + to_chat(X, SPAN_XENODANGER("We decide to cancel our bombard.")) return FALSE if (!X.can_bombard_turf(T, range, bombard_source)) //Second check in case something changed during the do_after. @@ -855,7 +849,7 @@ for(var/mob/living/L in T) to_chat(L, SPAN_XENOHIGHDANGER("You see a massive ball of acid flying towards you!")) - for(var/dirn in alldirs) + for(var/dirn in GLOB.alldirs) recursive_spread(get_step(T, dirn), dist_left - 1, orig_depth) @@ -915,10 +909,10 @@ var/mob/living/carbon/xenomorph/stabbing_xeno = owner if(HAS_TRAIT(stabbing_xeno, TRAIT_ABILITY_BURROWED) || stabbing_xeno.is_ventcrawling) - to_chat(stabbing_xeno, SPAN_XENOWARNING("You must be above ground to do this.")) + to_chat(stabbing_xeno, SPAN_XENOWARNING("We must be above ground to do this.")) return - if(!stabbing_xeno.check_state()) + if(!stabbing_xeno.check_state() || stabbing_xeno.cannot_slash) return FALSE var/pre_result = pre_ability_act(stabbing_xeno, targetted_atom) @@ -936,21 +930,21 @@ if(distance > 2) return FALSE - var/list/turf/path = getline2(stabbing_xeno, targetted_atom, include_from_atom = FALSE) + var/list/turf/path = get_line(stabbing_xeno, targetted_atom, include_start_atom = FALSE) for(var/turf/path_turf as anything in path) if(path_turf.density) - to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking your strike!")) + to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking our strike!")) return FALSE for(var/obj/path_contents in path_turf.contents) if(path_contents != targetted_atom && path_contents.density && !path_contents.throwpass) - to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking your strike!")) + to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking our strike!")) return FALSE var/atom/barrier = path_turf.handle_barriers(stabbing_xeno, null, (PASS_MOB_THRU_XENO|PASS_OVER_THROW_MOB|PASS_TYPE_CRAWLER)) if(barrier != path_turf) var/tail_stab_cooldown_multiplier = barrier.handle_tail_stab(stabbing_xeno) if(!tail_stab_cooldown_multiplier) - to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking your strike!")) + to_chat(stabbing_xeno, SPAN_WARNING("There's something blocking our strike!")) else apply_cooldown(cooldown_modifier = tail_stab_cooldown_multiplier) xeno_attack_delay(stabbing_xeno) @@ -964,7 +958,7 @@ return ..() if(!isxeno_human(targetted_atom)) - stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] swipes their tail through the air!"), SPAN_XENOWARNING("You swipe your tail through the air!")) + stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] swipes their tail through the air!"), SPAN_XENOWARNING("We swipe our tail through the air!")) apply_cooldown(cooldown_modifier = 0.1) xeno_attack_delay(stabbing_xeno) playsound(stabbing_xeno, "alien_tail_swipe", 50, TRUE) @@ -1008,7 +1002,7 @@ var/stab_overlay if(blunt_stab) - stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] swipes its tail into [target]'s [limb ? limb.display_name : "chest"], bashing it!"), SPAN_XENOWARNING("You swipe your tail into [target]'s [limb? limb.display_name : "chest"], bashing it!")) + stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] swipes its tail into [target]'s [limb ? limb.display_name : "chest"], bashing it!"), SPAN_XENOWARNING("We swipe our tail into [target]'s [limb? limb.display_name : "chest"], bashing it!")) if(prob(1)) playsound(target, 'sound/effects/comical_bonk.ogg', 50, TRUE) else @@ -1017,11 +1011,14 @@ stab_direction = turn(stabbing_xeno.dir, pick(90, -90)) stab_overlay = "slam" else - stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] skewers [target] through the [limb ? limb.display_name : "chest"] with its razor sharp tail!"), SPAN_XENOWARNING("You skewer [target] through the [limb? limb.display_name : "chest"] with your razor sharp tail!")) + stabbing_xeno.visible_message(SPAN_XENOWARNING("\The [stabbing_xeno] skewers [target] through the [limb ? limb.display_name : "chest"] with its razor sharp tail!"), SPAN_XENOWARNING("We skewer [target] through the [limb? limb.display_name : "chest"] with our razor sharp tail!")) playsound(target, "alien_bite", 50, TRUE) // The xeno flips around for a second to impale the target with their tail. These look awsome. stab_direction = turn(get_dir(stabbing_xeno, target), 180) stab_overlay = "tail" + log_attack("[key_name(stabbing_xeno)] tailstabbed [key_name(target)] at [get_area_name(stabbing_xeno)]") + target.attack_log += text("\[[time_stamp()]\] was tailstabbed by [key_name(stabbing_xeno)]") + stabbing_xeno.attack_log += text("\[[time_stamp()]\] tailstabbed [key_name(target)]") stabbing_xeno.setDir(stab_direction) stabbing_xeno.emote("tail") diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_abilities.dm index 02e7fd8144..ea5f32694c 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_abilities.dm @@ -12,8 +12,8 @@ action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_4 - action_start_message = "You become one with the resin. You feel the urge to run!" - action_end_message = "You feel less in tune with the resin." + action_start_message = "We become one with the resin. We feel the urge to run!" + action_end_message = "We feel less in tune with the resin." plasma_use_per_tick = 30 /datum/action/xeno_action/active_toggle/toggle_speed/can_use_action() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_powers.dm index a0a442854e..e4e8892807 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/hivelord/hivelord_powers.dm @@ -20,11 +20,11 @@ if(!check_and_use_plasma_owner(plasma_cost)) to_chat(xeno, SPAN_WARNING("Not enough plasma!")) return - to_chat(xeno, SPAN_NOTICE("You become one with the resin. You feel the urge to run!")) + to_chat(xeno, SPAN_NOTICE("We become one with the resin. We feel the urge to run!")) button.icon_state = "template_active" action_active = TRUE else - to_chat(xeno, SPAN_WARNING("You feel less in tune with the resin.")) + to_chat(xeno, SPAN_WARNING("We feel less in tune with the resin.")) button.icon_state = "template" action_active = FALSE return diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lesser_drone/lesser_drone_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lesser_drone/lesser_drone_powers.dm index 515efea23d..0f72bf4d81 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lesser_drone/lesser_drone_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lesser_drone/lesser_drone_powers.dm @@ -1,6 +1,6 @@ /datum/action/xeno_action/onclick/plant_weeds/lesser/use_ability(atom/A) if(!(locate(/obj/effect/alien/weeds/node) in orange(4, owner))) - to_chat(owner, SPAN_XENONOTICE("You can only plant resin nodes near other resin nodes!")) + to_chat(owner, SPAN_XENONOTICE("We can only plant weed nodes near other weed nodes!")) return . = ..() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm index 8a1d3ecff4..0d5a55f9fa 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_abilities.dm @@ -2,50 +2,16 @@ macro_path = /datum/action/xeno_action/verb/verb_pounce action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - xeno_cooldown = 60 + xeno_cooldown = 6 SECONDS plasma_cost = 20 // Config options - distance = 6 knockdown = FALSE knockdown_duration = 1.5 freeze_self = TRUE freeze_time = 15 can_be_shield_blocked = TRUE -/datum/action/xeno_action/activable/pounce/lurker/additional_effects_always() - var/mob/living/carbon/xenomorph/xeno = owner - if (!istype(xeno)) - return - if (xeno.mutation_type == LURKER_NORMAL) - var/found = FALSE - for (var/mob/living/carbon/human/human in get_turf(xeno)) - if(human.stat == DEAD) - continue - found = TRUE - break - - if (found) - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_xeno_action_by_type(xeno, /datum/action/xeno_action/onclick/lurker_invisibility) - if (istype(lurker_invis)) - lurker_invis.invisibility_off() - -/datum/action/xeno_action/activable/pounce/lurker/additional_effects(mob/living/living_mob) - var/mob/living/carbon/xenomorph/xeno = owner - if (!istype(xeno)) - return - - if (xeno.mutation_type == LURKER_NORMAL) - RegisterSignal(xeno, COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF, PROC_REF(remove_freeze), TRUE) // Suppresses runtime ever we pounce again before slashing - -/datum/action/xeno_action/activable/pounce/lurker/proc/remove_freeze(mob/living/carbon/xenomorph/xeno) - SIGNAL_HANDLER - - var/datum/behavior_delegate/lurker_base/behaviour_del = xeno.behavior_delegate - if (istype(behaviour_del)) - UnregisterSignal(xeno, COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF) - end_pounce_freeze() - /datum/action/xeno_action/onclick/lurker_invisibility name = "Turn Invisible" action_icon_state = "lurker_invisibility" @@ -53,8 +19,6 @@ macro_path = /datum/action/xeno_action/verb/verb_lurker_invisibility ability_primacy = XENO_PRIMARY_ACTION_2 action_type = XENO_ACTION_CLICK - xeno_cooldown = 1 // This ability never goes off cooldown 'naturally'. Cooldown is applied manually as a super-large value in the use_ability proc - // and reset by the behavior_delegate whenever the ability ends (because it can be ended by things like slashes, that we can't easily track here) plasma_cost = 20 var/duration = 30 SECONDS // 30 seconds base @@ -70,7 +34,7 @@ macro_path = /datum/action/xeno_action/verb/verb_crippling_strike ability_primacy = XENO_PRIMARY_ACTION_3 action_type = XENO_ACTION_ACTIVATE - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS plasma_cost = 20 default_ai_action = TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm index 0c2b226cb2..3c1d3a0454 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/lurker/lurker_powers.dm @@ -1,57 +1,107 @@ +/datum/action/xeno_action/activable/pounce/lurker/additional_effects(mob/living/living_mob) + var/mob/living/carbon/xenomorph/xeno = owner + if(!istype(xeno)) + return + + RegisterSignal(xeno, COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF, PROC_REF(remove_freeze), TRUE) // Suppresses runtime ever we pounce again before slashing + + var/found = FALSE + for(var/mob/living/carbon/human/human in get_turf(xeno)) + if(human.stat == DEAD) + continue + found = TRUE + break + + if(found) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis = get_action(xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + if(lurker_invis) + lurker_invis.invisibility_off() // Full cooldown + +/datum/action/xeno_action/activable/pounce/lurker/proc/remove_freeze(mob/living/carbon/xenomorph/xeno) + SIGNAL_HANDLER + + var/datum/behavior_delegate/lurker_base/behaviour_del = xeno.behavior_delegate + if(istype(behaviour_del)) + UnregisterSignal(xeno, COMSIG_XENO_SLASH_ADDITIONAL_EFFECTS_SELF) + end_pounce_freeze() + +/datum/action/xeno_action/onclick/lurker_invisibility/can_use_action() + if(!..()) + return FALSE + var/mob/living/carbon/xenomorph/xeno = owner + return xeno.deselect_timer < world.time // We clicked the same ability in a very short time + /datum/action/xeno_action/onclick/lurker_invisibility/use_ability(atom/targeted_atom) var/mob/living/carbon/xenomorph/xeno = owner - if (!istype(xeno)) + if(!istype(xeno)) return - - if (!action_cooldown_check()) + if(!action_cooldown_check()) return - - if (!check_and_use_plasma_owner()) + if(!check_and_use_plasma_owner()) return - animate(xeno, alpha = alpha_amount, time = 0.1 SECONDS, easing = QUAD_EASING) + xeno.deselect_timer = world.time + 5 // Half a second to prevent double clicks + + if(xeno.stealth) + invisibility_off(0.9) // Near full refund of remaining time + return ..() + + button.icon_state = "template_active" xeno.update_icons() // callback to make the icon_state indicate invisibility is in lurker/update_icon + animate(xeno, alpha = alpha_amount, time = 0.1 SECONDS, easing = QUAD_EASING) + xeno.speed_modifier -= speed_buff xeno.recalculate_speed() - if (xeno.mutation_type == LURKER_NORMAL) - var/datum/behavior_delegate/lurker_base/behavior = xeno.behavior_delegate - behavior.on_invisibility() + var/datum/behavior_delegate/lurker_base/behavior = xeno.behavior_delegate + behavior.on_invisibility() // if we go off early, this also works fine. invis_timer_id = addtimer(CALLBACK(src, PROC_REF(invisibility_off)), duration, TIMER_STOPPABLE) - // Only resets when invisibility ends - apply_cooldown_override(1000000000) return ..() -/datum/action/xeno_action/onclick/lurker_invisibility/proc/invisibility_off() - if(!owner || owner.alpha == initial(owner.alpha)) +/// Implementation for disabling invisibility. +/// (refund_multiplier) indicates how much cooldown to refund based on time remaining +/// 0 indicates full cooldown; 0.5 indicates 50% of remaining time is refunded +/datum/action/xeno_action/onclick/lurker_invisibility/proc/invisibility_off(refund_multiplier = 0.0) + var/mob/living/carbon/xenomorph/xeno = owner + + if(!istype(xeno)) + return + if(owner.alpha == initial(owner.alpha) && !xeno.stealth) return - if (invis_timer_id != TIMER_ID_NULL) + if(invis_timer_id != TIMER_ID_NULL) deltimer(invis_timer_id) invis_timer_id = TIMER_ID_NULL - var/mob/living/carbon/xenomorph/xeno = owner - if (istype(xeno)) - animate(xeno, alpha = initial(xeno.alpha), time = 0.1 SECONDS, easing = QUAD_EASING) - to_chat(xeno, SPAN_XENOHIGHDANGER("You feel your invisibility end!")) + animate(xeno, alpha = initial(xeno.alpha), time = 0.1 SECONDS, easing = QUAD_EASING) + to_chat(xeno, SPAN_XENOHIGHDANGER("We feel our invisibility end!")) + + button.icon_state = "template" + xeno.update_icons() - xeno.update_icons() + xeno.speed_modifier += speed_buff + xeno.recalculate_speed() + + var/datum/behavior_delegate/lurker_base/behavior = xeno.behavior_delegate + if(!istype(behavior)) + CRASH("lurker_base behavior_delegate missing/invalid for [xeno]!") - xeno.speed_modifier += speed_buff - xeno.recalculate_speed() + var/recharge_time = behavior.invis_recharge_time + if(behavior.invis_start_time > 0) // Sanity + refund_multiplier = clamp(refund_multiplier, 0, 1) + var/remaining = 1 - (world.time - behavior.invis_start_time) / behavior.invis_duration + recharge_time = behavior.invis_recharge_time - remaining * refund_multiplier * behavior.invis_recharge_time + apply_cooldown_override(recharge_time) - if (xeno.mutation_type == LURKER_NORMAL) - var/datum/behavior_delegate/lurker_base/behavior = xeno.behavior_delegate - if (istype(behavior)) - behavior.on_invisibility_off() + behavior.on_invisibility_off() /datum/action/xeno_action/onclick/lurker_invisibility/ability_cooldown_over() - to_chat(owner, SPAN_XENOHIGHDANGER("You are ready to use your invisibility again!")) + to_chat(owner, SPAN_XENOHIGHDANGER("We are ready to use our invisibility again!")) ..() /datum/action/xeno_action/onclick/lurker_assassinate/use_ability(atom/targeted_atom) @@ -66,14 +116,11 @@ if (!check_and_use_plasma_owner()) return - if (xeno.mutation_type != LURKER_NORMAL) - return - var/datum/behavior_delegate/lurker_base/behavior = xeno.behavior_delegate if (istype(behavior)) behavior.next_slash_buffed = TRUE - to_chat(xeno, SPAN_XENOHIGHDANGER("Your next slash will deal increased damage!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("Our next slash will deal increased damage!")) addtimer(CALLBACK(src, PROC_REF(unbuff_slash)), buff_duration) xeno.next_move = world.time + 1 // Autoattack reset @@ -92,7 +139,7 @@ return behavior.next_slash_buffed = FALSE - to_chat(xeno, SPAN_XENODANGER("You have waited too long, your slash will no longer deal increased damage!")) + to_chat(xeno, SPAN_XENODANGER("We have waited too long, our slash will no longer deal increased damage!")) // VAMPIRE LURKER @@ -119,7 +166,7 @@ return xeno.visible_message(SPAN_DANGER("[xeno] drags its claws in a wide area in front of it!"), \ - SPAN_XENOWARNING("You unleash a barrage of slashes!")) + SPAN_XENOWARNING("We unleash a barrage of slashes!")) playsound(xeno, 'sound/effects/alien_tail_swipe2.ogg', 30) apply_cooldown() @@ -161,7 +208,7 @@ continue xeno.visible_message(SPAN_DANGER("[xeno] slashes [target]!"), \ - SPAN_XENOWARNING("You slash [target] multiple times!")) + SPAN_XENOWARNING("We slash [target] multiple times!")) xeno.flick_attack_overlay(target, "slash") target.last_damage_data = create_cause_data(xeno.caste_type, xeno) log_attack("[key_name(xeno)] attacked [key_name(target)] with Flurry") @@ -189,14 +236,14 @@ if(distance > 2) return - var/list/turf/path = getline2(xeno, hit_target, include_from_atom = FALSE) + var/list/turf/path = get_line(xeno, targeted_atom, include_start_atom = FALSE) for(var/turf/path_turf as anything in path) if(path_turf.density) - to_chat(xeno, SPAN_WARNING("There's something blocking you from striking!")) + to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!")) return var/atom/barrier = path_turf.handle_barriers(A = xeno , pass_flags = (PASS_MOB_THRU_XENO|PASS_OVER_THROW_MOB|PASS_TYPE_CRAWLER)) if(barrier != path_turf) - to_chat(xeno, SPAN_WARNING("There's something blocking you from striking!")) + to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!")) return for(var/obj/structure/current_structure in path_turf) if(istype(current_structure, /obj/structure/window/framed)) @@ -205,15 +252,27 @@ return playsound(get_turf(target_window),'sound/effects/glassbreak3.ogg', 30, TRUE) target_window.shatter_window(TRUE) - xeno.visible_message(SPAN_XENOWARNING("\The [xeno] strikes the window with their tail!"), SPAN_XENOWARNING("You strike the window with your tail!")) + xeno.visible_message(SPAN_XENOWARNING("\The [xeno] strikes the window with their tail!"), SPAN_XENOWARNING("We strike the window with our tail!")) apply_cooldown(cooldown_modifier = 0.5) return - if(current_structure.density) - to_chat(xeno, SPAN_WARNING("There's something blocking you from striking!")) + if(current_structure.density && !current_structure.throwpass) + to_chat(xeno, SPAN_WARNING("There's something blocking us from striking!")) return - - if(!isxeno_human(hit_target) || xeno.can_not_harm(hit_target) || hit_target.stat == DEAD) - xeno.visible_message(SPAN_XENOWARNING("\The [xeno] swipes their tail through the air!"), SPAN_XENOWARNING("You swipe your tail through the air!")) + // find a target in the target turf + if(!iscarbon(targeted_atom) || hit_target.stat == DEAD) + for(var/mob/living/carbon/carbonara in get_turf(targeted_atom)) + hit_target = carbonara + if(!xeno.can_not_harm(hit_target) && hit_target.stat != DEAD) + break + + if(iscarbon(hit_target) && !xeno.can_not_harm(hit_target) && hit_target.stat != DEAD) + if(targeted_atom == hit_target) //reward for a direct hit + to_chat(xeno, SPAN_XENOHIGHDANGER("We attack [hit_target], with our tail, piercing their body!")) + hit_target.apply_armoured_damage(15, ARMOR_MELEE, BRUTE, "chest") + else + to_chat(xeno, SPAN_XENODANGER("We attack [hit_target], slashing them with our tail!")) + else + xeno.visible_message(SPAN_XENOWARNING("\The [xeno] swipes their tail through the air!"), SPAN_XENOWARNING("We swipe our tail through the air!")) apply_cooldown(cooldown_modifier = 0.2) playsound(xeno, 'sound/effects/alien_tail_swipe1.ogg', 50, TRUE) return @@ -221,14 +280,20 @@ // FX var/stab_direction - to_chat(xeno, SPAN_XENOHIGHDANGER("You directly slam [hit_target] with your tail, throwing it back after impaling it on your tail!")) + stab_direction = turn(get_dir(xeno, targeted_atom), 180) playsound(hit_target,'sound/weapons/alien_tail_attack.ogg', 50, TRUE) - stab_direction = turn(get_dir(xeno, hit_target), 180) - - if(hit_target.mob_size < MOB_SIZE_BIG) - step_away(hit_target, xeno) - + var/direction = Get_Compass_Dir(xeno, targeted_atom) //More precise than get_dir. + + if(!step(hit_target, direction)) + playsound(hit_target.loc, "punch", 25, 1) + hit_target.visible_message(SPAN_DANGER("[hit_target] slams into an obstacle!"), + isxeno(hit_target) ? SPAN_XENODANGER("We slam into an obstacle!") : SPAN_HIGHDANGER("You slam into an obstacle!"), null, 4, CHAT_TYPE_TAKING_HIT) + hit_target.apply_damage(MELEE_FORCE_TIER_2) + if (hit_target.mob_size < MOB_SIZE_BIG) + hit_target.KnockDown(0.5) + else + hit_target.Slow(0.5) /// To reset the direction if they haven't moved since then in below callback. var/last_dir = xeno.dir @@ -240,11 +305,7 @@ addtimer(CALLBACK(src, PROC_REF(reset_direction), xeno, last_dir, new_dir), 0.5 SECONDS) hit_target.apply_armoured_damage(get_xeno_damage_slash(hit_target, xeno.caste.melee_damage_upper), ARMOR_MELEE, BRUTE, "chest") - - if(hit_target.mob_size < MOB_SIZE_BIG) - hit_target.apply_effect(0.5, WEAKEN) - else - hit_target.apply_effect(0.5, SLOW) + hit_target.Slow(0.5) hit_target.last_damage_data = create_cause_data(xeno.caste_type, xeno) log_attack("[key_name(xeno)] attacked [key_name(hit_target)] with Tail Jab") @@ -269,11 +330,11 @@ return if(!(HAS_TRAIT(target_carbon, TRAIT_KNOCKEDOUT) || target_carbon.stat == UNCONSCIOUS)) //called knocked out because for some reason .stat seems to have a delay . - to_chat(xeno, SPAN_XENOHIGHDANGER("You can only headbite an unconscious, adjacent target!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We can only headbite an unconscious, adjacent target!")) return if(!xeno.Adjacent(target_carbon)) - to_chat(xeno, SPAN_XENOHIGHDANGER("You can only headbite an unconscious, adjacent target!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We can only headbite an unconscious, adjacent target!")) return if(xeno.stat == UNCONSCIOUS) @@ -285,22 +346,28 @@ if(xeno.action_busy) return + if(target_carbon.status_flags & XENO_HOST) + for(var/obj/item/alien_embryo/embryo in target_carbon) + if(HIVE_ALLIED_TO_HIVE(xeno.hivenumber, embryo.hivenumber)) + to_chat(xeno, SPAN_WARNING("We should not harm this host! It has a sister inside.")) + return + xeno.visible_message(SPAN_DANGER("[xeno] grabs [target_carbon]’s head aggressively."), \ - SPAN_XENOWARNING("You grab [target_carbon]’s head aggressively.")) + SPAN_XENOWARNING("We grab [target_carbon]’s head aggressively.")) if(!do_after(xeno, 0.8 SECONDS, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE, numticks = 2)) // would be 0.75 but that doesn't really work with numticks return // To make sure that the headbite does nothing if the target is moved away. if(!xeno.Adjacent(target_carbon)) - to_chat(xeno, SPAN_XENOHIGHDANGER("You missed! Your target was moved away before you could finish headbiting them!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We missed! Our target was moved away before we could finish headbiting them!")) return if(target_carbon.stat == DEAD) to_chat(xeno, SPAN_XENODANGER("They died before you could finish headbiting them! Be more careful next time!")) return - to_chat(xeno, SPAN_XENOHIGHDANGER("You pierce [target_carbon]’s head with your inner jaw!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We pierce [target_carbon]’s head with our inner jaw!")) playsound(target_carbon,'sound/weapons/alien_bite2.ogg', 50, TRUE) xeno.visible_message(SPAN_DANGER("[xeno] pierces [target_carbon]’s head with its inner jaw!")) xeno.flick_attack_overlay(target_carbon, "headbite") diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm index d3865872f0..4fe0e91079 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm @@ -25,7 +25,7 @@ macro_path = /datum/action/xeno_action/verb/verb_dash action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 110 + xeno_cooldown = 11 SECONDS plasma_cost = 50 // Config options @@ -36,7 +36,7 @@ var/buff_duration = 12 var/damage = 40 - var/shield_regen_threshold = 2 + var/shield_regen_threshold = 1 var/activated_once = FALSE var/time_until_timeout = 20 @@ -51,11 +51,11 @@ macro_path = /datum/action/xeno_action/verb/verb_cleave ability_primacy = XENO_PRIMARY_ACTION_3 action_type = XENO_ACTION_CLICK - xeno_cooldown = 120 + xeno_cooldown = 12 SECONDS // Root config - var/root_duration_unbuffed = 5 - var/root_duration_buffed = 12.5 + var/root_duration_unbuffed = 1 SECONDS + var/root_duration_buffed = 1.8 SECONDS // Fling config var/fling_dist_unbuffed = 3 @@ -87,7 +87,7 @@ if(!X.check_state(1)) return - var/datum/action/xeno_action/activable/cleave/cAction = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/cAction = get_action(X, /datum/action/xeno_action/activable/cleave) if (!istype(cAction)) return @@ -97,10 +97,10 @@ var/action_icon_result if (cAction.root_toggle) action_icon_result = "prae_cleave_root" - to_chat(X, SPAN_WARNING("You will now root marines with your cleave.")) + to_chat(X, SPAN_WARNING("We will now root marines with our cleave.")) else action_icon_result = "prae_cleave_fling" // TODO: update - to_chat(X, SPAN_WARNING("You will now throw marines with your cleave.")) + to_chat(X, SPAN_WARNING("We will now throw marines with our cleave.")) button.overlays.Cut() button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, action_icon_result) @@ -124,12 +124,12 @@ macro_path = /datum/action/xeno_action/verb/verb_prae_abduct ability_primacy = XENO_PRIMARY_ACTION_1 action_type = XENO_ACTION_CLICK - xeno_cooldown = 180 + xeno_cooldown = 15 SECONDS plasma_cost = 180 // Config var/max_distance = 7 - var/windup = 8 + var/windup = 8 DECISECONDS /datum/action/xeno_action/activable/oppressor_punch name = "Dislocate" @@ -138,7 +138,7 @@ macro_path = /datum/action/xeno_action/verb/verb_oppressor_punch action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS plasma_cost = 55 // Configurables @@ -164,12 +164,12 @@ macro_path = /datum/action/xeno_action/verb/verb_crush ability_primacy = XENO_PRIMARY_ACTION_3 action_type = XENO_ACTION_CLICK - xeno_cooldown = 130 + xeno_cooldown = 13 SECONDS plasma_cost = 80 // Config var/fling_dist = 3 - var/windup = 2 + var/windup = 2 DECISECONDS ////////// Dancer Abilities @@ -180,7 +180,7 @@ macro_path = /datum/action/xeno_action/verb/verb_prae_impale ability_primacy = XENO_PRIMARY_ACTION_1 action_type = XENO_ACTION_CLICK - xeno_cooldown = 130 + xeno_cooldown = 13 SECONDS plasma_cost = 80 /datum/action/xeno_action/onclick/prae_dodge @@ -191,7 +191,7 @@ ability_primacy = XENO_PRIMARY_ACTION_2 action_type = XENO_ACTION_CLICK plasma_cost = 200 - xeno_cooldown = 190 + xeno_cooldown = 19 SECONDS // Config var/duration = 70 @@ -204,7 +204,7 @@ macro_path = /datum/action/xeno_action/verb/verb_prae_tail_trip ability_primacy = XENO_PRIMARY_ACTION_3 action_type = XENO_ACTION_CLICK - xeno_cooldown = 130 + xeno_cooldown = 13 SECONDS plasma_cost = 30 // Config @@ -224,7 +224,7 @@ macro_path = /datum/action/xeno_action/verb/verb_dash action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS plasma_cost = 40 // Config options @@ -255,7 +255,7 @@ ability_primacy = XENO_PRIMARY_ACTION_4 plasma_cost = 80 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS // Configurable options spray_type = ACID_SPRAY_LINE @@ -270,7 +270,7 @@ /datum/action/xeno_action/activable/spray_acid/prae_warden ability_primacy = XENO_PRIMARY_ACTION_2 plasma_cost = 130 - xeno_cooldown = 130 + xeno_cooldown = 13 SECONDS // Configurable options @@ -288,7 +288,7 @@ // todo: macro action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_3 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS plasma_cost = 100 // Config @@ -328,19 +328,19 @@ if(!X.check_state(1)) return - var/datum/action/xeno_action/activable/warden_heal/WH = get_xeno_action_by_type(X, /datum/action/xeno_action/activable/warden_heal) + var/datum/action/xeno_action/activable/warden_heal/WH = get_action(X, /datum/action/xeno_action/activable/warden_heal) if (!istype(WH)) return if (WH.curr_effect_type == WARDEN_HEAL_HP) action_icon_result = "warden_rejuvenate" WH.curr_effect_type = WARDEN_HEAL_DEBUFFS - to_chat(X, SPAN_XENOWARNING("You will now aid your allies by curing their ailments!")) + to_chat(X, SPAN_XENOWARNING("We will now aid our sisters by curing their ailments!")) else action_icon_result = "warden_heal" WH.curr_effect_type = WARDEN_HEAL_HP - to_chat(X, SPAN_XENOWARNING("You will now aid your allies by healing them!")) + to_chat(X, SPAN_XENOWARNING("We will now aid our sisters by healing them!")) button.overlays.Cut() button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, action_icon_result) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm index aab1ff6a60..3cbf076951 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm @@ -13,7 +13,7 @@ return //X = xeno user, A = target atom - var/list/turf/target_turfs = getline2(source_xeno, targetted_atom, include_from_atom = FALSE) + var/list/turf/target_turfs = get_line(source_xeno, targetted_atom, include_start_atom = FALSE) var/length_of_line = LAZYLEN(target_turfs) if(length_of_line > 3) target_turfs = target_turfs.Copy(1, 4) @@ -52,7 +52,7 @@ if(!(mob_to_act in target_mobs)) target_mobs += mob_to_act - source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its tail through the area in front of it!"), SPAN_XENODANGER("You slash your tail through the area in front of you!")) + source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its claws through the area in front of it!"), SPAN_XENODANGER("We slash our claws through the area in front of us!")) source_xeno.animation_attack_on(targetted_atom, 15) source_xeno.emote("roar") @@ -67,12 +67,12 @@ current_mob.flick_attack_overlay(current_mob, "slash") current_mob.apply_armoured_damage(get_xeno_damage_slash(current_mob, damage), ARMOR_MELEE, BRUTE, null, 20) + playsound(current_mob, 'sound/weapons/alien_tail_attack.ogg', 30, TRUE) - if (target_mobs.len >= shield_regen_threshold) - if (source_xeno.mutation_type == PRAETORIAN_VANGUARD) - var/datum/behavior_delegate/praetorian_vanguard/BD = source_xeno.behavior_delegate - if (istype(BD)) - BD.regen_shield() + if (length(target_mobs) >= shield_regen_threshold) + var/datum/behavior_delegate/praetorian_vanguard/behavior = source_xeno.behavior_delegate + if (istype(behavior)) + behavior.regen_shield() apply_cooldown() return ..() @@ -118,7 +118,7 @@ if (!(H in target_mobs)) target_mobs += H - X.visible_message(SPAN_XENODANGER("[X] slashes its claws through the area around it!"), SPAN_XENODANGER("You slash your claws through the area around you!")) + X.visible_message(SPAN_XENODANGER("[X] slashes its claws through the area around it!"), SPAN_XENODANGER("We slash our claws through the area around us!")) X.spin_circle() for (var/mob/living/carbon/H in target_mobs) @@ -133,11 +133,10 @@ H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE) playsound(get_turf(H), "alien_claw_flesh", 30, 1) - if (target_mobs.len >= shield_regen_threshold) - if (X.mutation_type == PRAETORIAN_VANGUARD) - var/datum/behavior_delegate/praetorian_vanguard/BD = X.behavior_delegate - if (istype(BD)) - BD.regen_shield() + if (length(target_mobs) >= shield_regen_threshold) + var/datum/behavior_delegate/praetorian_vanguard/behavior = X.behavior_delegate + if (istype(behavior)) + behavior.regen_shield() /datum/action/xeno_action/activable/cleave/use_ability(atom/target_atom) var/mob/living/carbon/xenomorph/vanguard_user = owner @@ -151,17 +150,17 @@ return if (!isxeno_human(target_atom) || vanguard_user.can_not_harm(target_atom)) - to_chat(vanguard_user, SPAN_XENODANGER("You must target a hostile!")) + to_chat(vanguard_user, SPAN_XENODANGER("We must target a hostile!")) return var/mob/living/carbon/target_carbon = target_atom if (!vanguard_user.Adjacent(target_carbon)) - to_chat(vanguard_user, SPAN_XENOWARNING("You must be adjacent to your target!")) + to_chat(vanguard_user, SPAN_XENOWARNING("We must be adjacent to our target!")) return if (target_carbon.stat == DEAD) - to_chat(vanguard_user, SPAN_XENODANGER("[target_carbon] is dead, why would you want to touch it?")) + to_chat(vanguard_user, SPAN_XENODANGER("[target_carbon] is dead, why would we want to touch it?")) return // Flick overlay and play sound @@ -173,7 +172,7 @@ if (root_toggle) var/root_duration = buffed ? root_duration_buffed : root_duration_unbuffed - vanguard_user.visible_message(SPAN_XENODANGER("[vanguard_user] slams [target_atom] into the ground!"), SPAN_XENOHIGHDANGER("You slam [target_atom] into the ground!")) + vanguard_user.visible_message(SPAN_XENODANGER("[vanguard_user] slams [target_atom] into the ground!"), SPAN_XENOHIGHDANGER("We slam [target_atom] into the ground!")) ADD_TRAIT(target_carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Cleave")) if (ishuman(target_carbon)) @@ -189,9 +188,9 @@ if(target_carbon.mob_size >= MOB_SIZE_BIG) fling_distance *= 0.1 - vanguard_user.visible_message(SPAN_XENODANGER("[vanguard_user] deals [target_atom] a massive blow, sending them flying!"), SPAN_XENOHIGHDANGER("You deal [target_atom] a massive blow, sending them flying!")) + vanguard_user.visible_message(SPAN_XENODANGER("[vanguard_user] deals [target_atom] a massive blow, sending them flying!"), SPAN_XENOHIGHDANGER("We deal [target_atom] a massive blow, sending them flying!")) vanguard_user.flick_attack_overlay(target_carbon, "slam") - xeno_throw_human(target_carbon, vanguard_user, get_dir(vanguard_user, target_atom), fling_distance) + vanguard_user.throw_carbon(target_atom, null, fling_distance) apply_cooldown() return ..() @@ -216,7 +215,7 @@ if(!check_and_use_plasma_owner()) return FALSE - stabbing_xeno.visible_message(SPAN_XENODANGER("\The [stabbing_xeno] uncoils and wildly throws out its tail!"), SPAN_XENODANGER("You uncoil your tail wildly in front of you!")) + stabbing_xeno.visible_message(SPAN_XENODANGER("\The [stabbing_xeno] uncoils and wildly throws out its tail!"), SPAN_XENODANGER("We uncoil our tail wildly in front of us!")) var/obj/projectile/hook_projectile = new /obj/projectile(stabbing_xeno.loc, create_cause_data(initial(stabbing_xeno.caste_type), stabbing_xeno)) @@ -255,8 +254,8 @@ var/turf/temp = xeno.loc for(var/distance in 0 to max_distance) temp = get_step(turf, facing) - if(facing in diagonals) // check if it goes through corners - var/reverse_face = reverse_dir[facing] + if(facing in GLOB.diagonals) // check if it goes through corners + var/reverse_face = GLOB.reverse_dir[facing] var/turf/back_left = get_step(temp, turn(reverse_face, 45)) var/turf/back_right = get_step(temp, turn(reverse_face, -45)) if((!back_left || back_left.density) && (!back_right || back_right.density)) @@ -279,13 +278,13 @@ turflist += turf facing = get_dir(turf, atom) - telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/brown/abduct_hook(turf, windup) + telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/abduct_hook(turf, windup) if(!length(turflist)) - to_chat(xeno, SPAN_XENOWARNING("You don't have any room to do your abduction!")) + to_chat(xeno, SPAN_XENOWARNING("We don't have any room to do our abduction!")) return - xeno.visible_message(SPAN_XENODANGER("\The [xeno]'s segmented tail starts coiling..."), SPAN_XENODANGER("You begin coiling your tail, aiming towards \the [atom]...")) + xeno.visible_message(SPAN_XENODANGER("\The [xeno]'s segmented tail starts coiling..."), SPAN_XENODANGER("We begin coiling our tail, aiming towards \the [atom]...")) xeno.emote("roar") var/throw_target_turf = get_step(xeno.loc, facing) @@ -309,7 +308,7 @@ REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Abduct")) playsound(get_turf(xeno), 'sound/effects/bang.ogg', 25, 0) - xeno.visible_message(SPAN_XENODANGER("\The [xeno] suddenly uncoils its tail, firing it towards [atom]!"), SPAN_XENODANGER("You uncoil your tail, sending it out towards \the [atom]!")) + xeno.visible_message(SPAN_XENODANGER("\The [xeno] suddenly uncoils its tail, firing it towards [atom]!"), SPAN_XENODANGER("We uncoil our tail, sending it out towards \the [atom]!")) var/list/targets = list() for (var/turf/target_turf in turflist) @@ -319,14 +318,16 @@ targets += target if (LAZYLEN(targets) == 1) - xeno.balloon_alert(xeno, "your tail catches and slows one target!", text_color = "#51a16c") + xeno.balloon_alert(xeno, "our tail catches and slows one target!", text_color = "#51a16c") else if (LAZYLEN(targets) == 2) - xeno.balloon_alert(xeno, "your tail catches and roots two targets!", text_color = "#51a16c") + xeno.balloon_alert(xeno, "our tail catches and roots two targets!", text_color = "#51a16c") else if (LAZYLEN(targets) >= 3) - xeno.balloon_alert(xeno, "your tail catches and stuns [LAZYLEN(targets)] targets!", text_color = "#51a16c") + xeno.balloon_alert(xeno, "our tail catches and stuns [LAZYLEN(targets)] targets!", text_color = "#51a16c") + + apply_cooldown() for (var/mob/living/carbon/target in targets) - xeno.visible_message(SPAN_XENODANGER("\The [xeno]'s hooked tail coils itself around [target]!"), SPAN_XENODANGER("Your hooked tail coils itself around [target]!")) + xeno.visible_message(SPAN_XENODANGER("\The [xeno]'s hooked tail coils itself around [target]!"), SPAN_XENODANGER("Our hooked tail coils itself around [target]!")) target.apply_effect(0.2, WEAKEN) @@ -358,7 +359,6 @@ qdel(tail_beam) // hook beam catches target, throws them back, is deleted (throw_atom has sleeps), then hook beam catches another target, repeat addtimer(CALLBACK(src, /datum/action/xeno_action/activable/prae_abduct/proc/remove_tail_overlay, target, tail_image), 0.5 SECONDS) //needed so it can actually be seen as it gets deleted too quickly otherwise. - apply_cooldown() return ..() /datum/action/xeno_action/activable/prae_abduct/proc/remove_tail_overlay(mob/living/carbon/human/overlayed_human, image/tail_image) @@ -386,7 +386,7 @@ var/obj/limb/target_limb = target_carbon.get_limb(check_zone(oppressor_user.zone_selected)) if (ishuman(target_carbon) && (!target_limb || (target_limb.status & LIMB_DESTROYED))) - return + target_limb = target_carbon.get_limb("chest") if (!check_and_use_plasma_owner()) return @@ -394,7 +394,7 @@ target_carbon.last_damage_data = create_cause_data(oppressor_user.caste_type, oppressor_user) oppressor_user.visible_message(SPAN_XENOWARNING("\The [oppressor_user] hits [target_carbon] in the [target_limb? target_limb.display_name : "chest"] with a devastatingly powerful punch!"), \ - SPAN_XENOWARNING("You hit [target_carbon] in the [target_limb ? target_limb.display_name : "chest"] with a devastatingly powerful punch!")) + SPAN_XENOWARNING("We hit [target_carbon] in the [target_limb ? target_limb.display_name : "chest"] with a devastatingly powerful punch!")) var/hitsound = pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg') playsound(target_carbon,hitsound, 50, 1) @@ -412,19 +412,18 @@ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(unroot_human), target_carbon, TRAIT_SOURCE_ABILITY("Oppressor Punch")), get_xeno_stun_duration(target_carbon, 1.2 SECONDS)) to_chat(target_carbon, SPAN_XENOHIGHDANGER("[oppressor_user] has pinned you to the ground! You cannot move!")) - - var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/prae_abduct) - var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_xeno_action_by_type(oppressor_user, /datum/action/xeno_action/activable/tail_lash) - if(abduct_action && abduct_action.action_cooldown_check()) - abduct_action.reduce_cooldown(5 SECONDS) - if(tail_lash_action && tail_lash_action.action_cooldown_check()) - tail_lash_action.reduce_cooldown(5 SECONDS) else target_carbon.apply_armoured_damage(get_xeno_damage_slash(target_carbon, damage), ARMOR_MELEE, BRUTE, target_limb? target_limb.name : "chest") step_away(target_carbon, oppressor_user, 2) shake_camera(target_carbon, 2, 1) + var/datum/action/xeno_action/activable/prae_abduct/abduct_action = get_action(oppressor_user, /datum/action/xeno_action/activable/prae_abduct) + var/datum/action/xeno_action/activable/tail_lash/tail_lash_action = get_action(oppressor_user, /datum/action/xeno_action/activable/tail_lash) + if(abduct_action && !abduct_action.action_cooldown_check()) + abduct_action.reduce_cooldown(5 SECONDS) + if(tail_lash_action && !tail_lash_action.action_cooldown_check()) + tail_lash_action.reduce_cooldown(5 SECONDS) apply_cooldown() return ..() @@ -468,21 +467,21 @@ continue target_turfs += T - telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/brown/lash(T, windup) + telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/lash(T, windup) var/turf/next_turf = get_step(T, facing) if (!istype(next_turf) || next_turf.density) continue target_turfs += next_turf - telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/brown/lash(next_turf, windup) + telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/lash(next_turf, windup) if(!length(target_turfs)) - to_chat(X, SPAN_XENOWARNING("You don't have any room to do your tail lash!")) + to_chat(X, SPAN_XENOWARNING("We don't have any room to do our tail lash!")) return if(!do_after(X, windup, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) - to_chat(X, SPAN_XENOWARNING("You cancel your tail lash.")) + to_chat(X, SPAN_XENOWARNING("We cancel our tail lash.")) for(var/obj/effect/xenomorph/xeno_telegraph/XT in telegraph_atom_list) telegraph_atom_list -= XT @@ -494,7 +493,7 @@ apply_cooldown() - X.visible_message(SPAN_XENODANGER("[X] lashes its tail furiously, hitting everything in front of it!"), SPAN_XENODANGER("You lash your tail furiously, hitting everything in front of you!")) + X.visible_message(SPAN_XENODANGER("[X] lashes its tail furiously, hitting everything in front of it!"), SPAN_XENODANGER("We lash our tail furiously, hitting everything in front of us!")) X.spin_circle() X.emote("tail") @@ -509,7 +508,7 @@ if(H.mob_size >= MOB_SIZE_BIG) continue - xeno_throw_human(H, X, facing, fling_dist) + X.throw_carbon(H, facing, fling_dist) H.apply_effect(get_xeno_stun_duration(H, 0.5), WEAKEN) new /datum/effects/xeno_slow(H, X, ttl = get_xeno_stun_duration(H, 25)) @@ -528,32 +527,28 @@ return if (!isxeno_human(target_atom) || dancer_user.can_not_harm(target_atom)) - to_chat(dancer_user, SPAN_XENODANGER("You must target a hostile!")) + to_chat(dancer_user, SPAN_XENODANGER("We must target a hostile!")) return if (!dancer_user.Adjacent(target_atom)) - to_chat(dancer_user, SPAN_XENODANGER("You must be adjacent to [target_atom]!")) + to_chat(dancer_user, SPAN_XENODANGER("We must be adjacent to [target_atom]!")) return var/mob/living/carbon/target_carbon = target_atom if (target_carbon.stat == DEAD) - to_chat(dancer_user, SPAN_XENOWARNING("[target_atom] is dead, why would you want to attack it?")) + to_chat(dancer_user, SPAN_XENOWARNING("[target_atom] is dead, why would we want to attack it?")) return if (!check_and_use_plasma_owner()) return - var/buffed = FALSE apply_cooldown() - if (dancer_user.mutation_type == PRAETORIAN_DANCER) - var/found = FALSE - for (var/datum/effects/dancer_tag/dancer_tag_effect in target_carbon.effects_list) - found = TRUE - qdel(dancer_tag_effect) - break - - buffed = found + var/buffed = FALSE + for (var/datum/effects/dancer_tag/dancer_tag_effect in target_carbon.effects_list) + buffed = TRUE + qdel(dancer_tag_effect) + break if(ishuman(target_carbon)) var/mob/living/carbon/human/Hu = target_carbon @@ -565,7 +560,7 @@ var/damage = get_xeno_damage_slash(target_carbon, rand(dancer_user.melee_damage_lower, dancer_user.melee_damage_upper)) dancer_user.visible_message(SPAN_DANGER("\The [dancer_user] violently slices [target_atom] with its tail[buffed?" twice":""]!"), \ - SPAN_DANGER("You slice [target_atom] with your tail[buffed?" twice":""]!")) + SPAN_DANGER("We slice [target_atom] with our tail[buffed?" twice":""]!")) if(buffed) // Do two attacks instead of one @@ -600,16 +595,13 @@ if (!check_and_use_plasma_owner()) return - if (xeno.mutation_type != PRAETORIAN_DANCER) - return - var/datum/behavior_delegate/praetorian_dancer/behavior = xeno.behavior_delegate if (!istype(behavior)) return behavior.dodge_activated = TRUE button.icon_state = "template_active" - to_chat(xeno, SPAN_XENOHIGHDANGER("You can now dodge through mobs!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We can now dodge through mobs!")) xeno.speed_modifier -= speed_buff_amount xeno.add_temp_pass_flags(PASS_MOB_THRU) xeno.recalculate_speed() @@ -625,9 +617,6 @@ if (!istype(xeno)) return - if (xeno.mutation_type != PRAETORIAN_DANCER) - return - var/datum/behavior_delegate/praetorian_dancer/behavior = xeno.behavior_delegate if (!istype(behavior)) return @@ -638,7 +627,7 @@ xeno.speed_modifier += speed_buff_amount xeno.remove_temp_pass_flags(PASS_MOB_THRU) xeno.recalculate_speed() - to_chat(xeno, SPAN_XENOHIGHDANGER("You can no longer dodge through mobs!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We can no longer dodge through mobs!")) /datum/action/xeno_action/activable/prae_tail_trip/use_ability(atom/target_atom) var/mob/living/carbon/xenomorph/dancer_user = owner @@ -650,13 +639,13 @@ return if (!isxeno_human(target_atom) || dancer_user.can_not_harm(target_atom)) - to_chat(dancer_user, SPAN_XENODANGER("You must target a hostile!")) + to_chat(dancer_user, SPAN_XENODANGER("We must target a hostile!")) return var/mob/living/carbon/target_carbon = target_atom if (target_carbon.stat == DEAD) - to_chat(dancer_user, SPAN_XENOWARNING("[target_atom] is dead, why would you want to attack it?")) + to_chat(dancer_user, SPAN_XENOWARNING("[target_atom] is dead, why would we want to attack it?")) return if (!check_and_use_plasma_owner()) @@ -676,12 +665,12 @@ if (dist > 1) var/turf/targetTurf = get_step(dancer_user, get_dir(dancer_user, target_carbon)) if (targetTurf.density) - to_chat(dancer_user, SPAN_WARNING("You can't attack through [targetTurf]!")) + to_chat(dancer_user, SPAN_WARNING("We can't attack through [targetTurf]!")) return else for (var/atom/atom_in_turf in targetTurf) if (atom_in_turf.density && !atom_in_turf.throwpass && !istype(atom_in_turf, /obj/structure/barricade) && !istype(atom_in_turf, /mob/living)) - to_chat(dancer_user, SPAN_WARNING("You can't attack through [atom_in_turf]!")) + to_chat(dancer_user, SPAN_WARNING("We can't attack through [atom_in_turf]!")) return @@ -715,14 +704,14 @@ if(Xeno.mob_size >= MOB_SIZE_BIG) xeno_smashed = TRUE shake_camera(Xeno, 10, 1) - dancer_user.visible_message(SPAN_XENODANGER("[dancer_user] smashes [Xeno] with it's tail!"), SPAN_XENODANGER("You smash [Xeno] with your tail!")) + dancer_user.visible_message(SPAN_XENODANGER("[dancer_user] smashes [Xeno] with it's tail!"), SPAN_XENODANGER("We smash [Xeno] with your tail!")) to_chat(Xeno, SPAN_XENOHIGHDANGER("You feel dizzy as [dancer_user] smashes you with their tail!")) dancer_user.animation_attack_on(Xeno) if(!xeno_smashed) if (stun_duration > 0) target_carbon.apply_effect(stun_duration, WEAKEN) - dancer_user.visible_message(SPAN_XENODANGER("[dancer_user] trips [target_atom] with it's tail!"), SPAN_XENODANGER("You trip [target_atom] with your tail!")) + dancer_user.visible_message(SPAN_XENODANGER("[dancer_user] trips [target_atom] with it's tail!"), SPAN_XENODANGER("We trip [target_atom] with our tail!")) dancer_user.spin_circle() dancer_user.emote("tail") to_chat(target_carbon, SPAN_XENOHIGHDANGER("You are swept off your feet by [dancer_user]!")) @@ -737,7 +726,9 @@ if (!X.check_state() || X.action_busy) return - if (!action_cooldown_check() && check_and_use_plasma_owner()) + if (!action_cooldown_check()) + return + if (!check_and_use_plasma_owner()) return var/turf/current_turf = get_turf(X) @@ -746,15 +737,13 @@ return if (!do_after(X, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) - to_chat(X, SPAN_XENODANGER("You cancel your acid ball.")) + to_chat(X, SPAN_XENODANGER("We cancel our acid ball.")) return - if (!action_cooldown_check()) - return apply_cooldown() - to_chat(X, SPAN_XENOWARNING("You lob a compressed ball of acid into the air!")) + to_chat(X, SPAN_XENOWARNING("We lob a compressed ball of acid into the air!")) var/obj/item/explosive/grenade/xeno_acid_grenade/grenade = new /obj/item/explosive/grenade/xeno_acid_grenade grenade.cause_data = create_cause_data(initial(X.caste_type), X) @@ -776,11 +765,11 @@ return if (!isxeno(A) || !X.can_not_harm(A)) - to_chat(X, SPAN_XENODANGER("You must target one of your sisters!")) + to_chat(X, SPAN_XENODANGER("We must target one of our sisters!")) return if (A == X) - to_chat(X, SPAN_XENODANGER("You cannot heal yourself!")) + to_chat(X, SPAN_XENODANGER("We cannot heal ourself!")) return if (A.z != X.z) @@ -800,33 +789,32 @@ if (curr_effect_type == WARDEN_HEAL_SHIELD) if (SEND_SIGNAL(targetXeno, COMSIG_XENO_PRE_HEAL) & COMPONENT_CANCEL_XENO_HEAL) - to_chat(X, SPAN_XENOWARNING("You cannot heal bolster the defenses of this xeno!")) + to_chat(X, SPAN_XENOWARNING("We cannot bolster the defenses of this xeno!")) return var/bonus_shield = 0 - if (X.mutation_type == PRAETORIAN_WARDEN) - var/datum/behavior_delegate/praetorian_warden/BD = X.behavior_delegate - if (!istype(BD)) - return + var/datum/behavior_delegate/praetorian_warden/behavior = X.behavior_delegate + if (!istype(behavior)) + return - if (!BD.use_internal_hp_ability(shield_cost)) - return + if (!behavior.use_internal_hp_ability(shield_cost)) + return - bonus_shield = BD.internal_hitpoints*0.5 - if (!BD.use_internal_hp_ability(bonus_shield)) - bonus_shield = 0 + bonus_shield = behavior.internal_hitpoints*0.5 + if (!behavior.use_internal_hp_ability(bonus_shield)) + bonus_shield = 0 var/total_shield_amount = shield_amount + bonus_shield if (X.observed_xeno != null) - to_chat(X, SPAN_XENOHIGHDANGER("You cannot shield [targetXeno] as effectively over distance!")) + to_chat(X, SPAN_XENOHIGHDANGER("We cannot shield [targetXeno] as effectively over distance!")) total_shield_amount = total_shield_amount/4 targetXeno.visible_message(SPAN_BOLDNOTICE("[targetXeno]'s exoskeleton shimmers for a fraction of a second."))//marines probably should know if a xeno gets healed else //so both visible messages don't appear at the same time targetXeno.visible_message(SPAN_BOLDNOTICE("[X] points at [targetXeno], and it shudders as its exoskeleton shimmers for a second!")) //this one is a bit less important than healing and rejuvenating - to_chat(X, SPAN_XENODANGER("You bolster the defenses of [targetXeno]!")) //but i imagine it'll be useful for predators, survivors and for battle flavor - to_chat(targetXeno, SPAN_XENOHIGHDANGER("You feel your defenses bolstered by [X]!")) + to_chat(X, SPAN_XENODANGER("We bolster the defenses of [targetXeno]!")) //but i imagine it'll be useful for predators, survivors and for battle flavor + to_chat(targetXeno, SPAN_XENOHIGHDANGER("We feel our defenses bolstered by [X]!")) targetXeno.add_xeno_shield(total_shield_amount, XENO_SHIELD_SOURCE_WARDEN_PRAE, duration = shield_duration, decay_amount_per_second = shield_decay) targetXeno.xeno_jitter(1 SECONDS) @@ -838,62 +826,60 @@ else if (curr_effect_type == WARDEN_HEAL_HP) if (!X.Adjacent(A)) - to_chat(X, SPAN_XENODANGER("You must be within touching distance of [targetXeno]!")) - return - if (targetXeno.mutation_type == PRAETORIAN_WARDEN) - to_chat(X, SPAN_XENODANGER("You cannot heal a sister of the same strain!")) + to_chat(X, SPAN_XENODANGER("We must be within touching distance of [targetXeno]!")) return if (SEND_SIGNAL(targetXeno, COMSIG_XENO_PRE_HEAL) & COMPONENT_CANCEL_XENO_HEAL) - to_chat(X, SPAN_XENOWARNING("You cannot heal this xeno!")) + to_chat(X, SPAN_XENOWARNING("We cannot heal this xeno!")) return var/bonus_heal = 0 + var/datum/behavior_delegate/praetorian_warden/behavior = X.behavior_delegate + if (!istype(behavior)) + return - if (X.mutation_type == PRAETORIAN_WARDEN) - var/datum/behavior_delegate/praetorian_warden/BD = X.behavior_delegate - if (!istype(BD)) - return - - if (!BD.use_internal_hp_ability(heal_cost)) - return + if (!behavior.use_internal_hp_ability(heal_cost)) + return - bonus_heal = BD.internal_hitpoints*0.5 - if (!BD.use_internal_hp_ability(bonus_heal)) - bonus_heal = 0 + bonus_heal = behavior.internal_hitpoints*0.5 + if (!behavior.use_internal_hp_ability(bonus_heal)) + bonus_heal = 0 + + to_chat(X, SPAN_XENOHIGHDANGER("We heal [targetXeno]!")) + to_chat(targetXeno, SPAN_XENOHIGHDANGER("We are healed by [X]!")) + //Amount to heal in this cast of the ability + var/quantity_healed = heal_amount + if(istype(targetXeno.strain, /datum/xeno_strain/warden)) + // Half the healing if warden + quantity_healed = quantity_healed / 2 + else + quantity_healed = quantity_healed + bonus_heal - to_chat(X, SPAN_XENODANGER("You heal [targetXeno]!")) - to_chat(targetXeno, SPAN_XENOHIGHDANGER("You are healed by [X]!")) - targetXeno.gain_health(heal_amount + bonus_heal) + targetXeno.gain_health(quantity_healed) targetXeno.visible_message(SPAN_BOLDNOTICE("[X] places its claws on [targetXeno], and its wounds are quickly sealed!")) //marines probably should know if a xeno gets healed X.gain_health(heal_amount*0.5 + bonus_heal*0.5) X.flick_heal_overlay(3 SECONDS, "#00B800") + behavior.transferred_healing += quantity_healed use_plasma = TRUE //it's already hard enough to gauge health without hp showing on the mob targetXeno.flick_heal_overlay(3 SECONDS, "#00B800")//so the visible_message and recovery overlay will warn marines and possibly predators that the xenomorph has been healed! else if (curr_effect_type == WARDEN_HEAL_DEBUFFS) if (X.observed_xeno != null) - to_chat(X, SPAN_XENOHIGHDANGER("You cannot rejuvenate targets through overwatch!")) + to_chat(X, SPAN_XENOHIGHDANGER("We cannot rejuvenate targets through overwatch!")) return - if (X.mutation_type == PRAETORIAN_WARDEN) - var/datum/behavior_delegate/praetorian_warden/BD = X.behavior_delegate - if (!istype(BD)) - return + var/datum/behavior_delegate/praetorian_warden/behavior = X.behavior_delegate + if (!istype(behavior)) + return - if (!BD.use_internal_hp_ability(debuff_cost)) - return + if (!behavior.use_internal_hp_ability(debuff_cost)) + return - to_chat(X, SPAN_XENODANGER("You rejuvenate [targetXeno]!")) - to_chat(targetXeno, SPAN_XENOHIGHDANGER("You are rejuvenated by [X]!")) + to_chat(X, SPAN_XENOHIGHDANGER("We rejuvenate [targetXeno]!")) + to_chat(targetXeno, SPAN_XENOHIGHDANGER("We are rejuvenated by [X]!")) targetXeno.visible_message(SPAN_BOLDNOTICE("[X] points at [targetXeno], and it spasms as it recuperates unnaturally quickly!")) //marines probably should know if a xeno gets rejuvenated targetXeno.xeno_jitter(1 SECONDS) //it might confuse them as to why the queen got up half a second after being AT rocketed, and give them feedback on the Praetorian rejuvenating targetXeno.flick_heal_overlay(3 SECONDS, "#F5007A") //therefore making the Praetorian a priority target - targetXeno.set_effect(0, PARALYZE) - targetXeno.set_effect(0, STUN) - targetXeno.set_effect(0, WEAKEN) - targetXeno.set_effect(0, DAZE) - targetXeno.set_effect(0, SLOW) - targetXeno.set_effect(0, SUPERSLOW) + targetXeno.clear_debuffs() use_plasma = TRUE if (use_plasma) use_plasma_owner() @@ -906,24 +892,20 @@ if(!istype(X)) return - var/datum/behavior_delegate/praetorian_warden/BD = X.behavior_delegate - if(!istype(BD)) + var/datum/behavior_delegate/praetorian_warden/behavior = X.behavior_delegate + if(!istype(behavior)) return if(X.observed_xeno != null) - to_chat(X, SPAN_XENOHIGHDANGER("You cannot retrieve sisters through overwatch!")) + to_chat(X, SPAN_XENOHIGHDANGER("We cannot retrieve sisters through overwatch!")) return if(!isxeno(A) || !X.can_not_harm(A)) - to_chat(X, SPAN_XENODANGER("You must target one of your sisters!")) + to_chat(X, SPAN_XENODANGER("We must target one of our sisters!")) return if(A == X) - to_chat(X, SPAN_XENODANGER("You cannot retrieve yourself!")) - return - - if(X.anchored) - to_chat(X, SPAN_XENODANGER("That sister cannot move!")) + to_chat(X, SPAN_XENODANGER("We cannot retrieve ourself!")) return if(!(A in view(7, X))) @@ -932,6 +914,10 @@ var/mob/living/carbon/xenomorph/targetXeno = A + if(targetXeno.anchored) + to_chat(X, SPAN_XENODANGER("That sister cannot move!")) + return + if(!(targetXeno.resting || targetXeno.stat == UNCONSCIOUS)) if(targetXeno.mob_size > MOB_SIZE_BIG) to_chat(X, SPAN_WARNING("[targetXeno] is too big to retrieve while standing up!")) @@ -950,7 +936,7 @@ if(!check_plasma_owner()) return - if(!BD.use_internal_hp_ability(retrieve_cost)) + if(!behavior.use_internal_hp_ability(retrieve_cost)) return if(!check_and_use_plasma_owner()) @@ -965,8 +951,8 @@ var/turf/temp = X.loc for(var/x in 0 to max_distance) temp = get_step(T, facing) - if(facing in diagonals) // check if it goes through corners - var/reverse_face = reverse_dir[facing] + if(facing in GLOB.diagonals) // check if it goes through corners + var/reverse_face = GLOB.reverse_dir[facing] var/turf/back_left = get_step(temp, turn(reverse_face, 45)) var/turf/back_right = get_step(temp, turn(reverse_face, -45)) if((!back_left || back_left.density) && (!back_right || back_right.density)) @@ -980,7 +966,7 @@ blocked = TRUE break if(blocked) - to_chat(X, SPAN_XENOWARNING("You can't reach [targetXeno] with your resin retrieval hook!")) + to_chat(X, SPAN_XENOWARNING("We can't reach [targetXeno] with our resin retrieval hook!")) return T = temp @@ -993,10 +979,10 @@ telegraph_atom_list += new /obj/effect/xenomorph/xeno_telegraph/green(T, windup) if(!length(turflist)) - to_chat(X, SPAN_XENOWARNING("You don't have any room to do your retrieve!")) + to_chat(X, SPAN_XENOWARNING("We don't have any room to do our retrieve!")) return - X.visible_message(SPAN_XENODANGER("[X] prepares to fire its resin retrieval hook at [A]!"), SPAN_XENODANGER("You prepare to fire your resin retrieval hook at [A]!")) + X.visible_message(SPAN_XENODANGER("[X] prepares to fire its resin retrieval hook at [A]!"), SPAN_XENODANGER("We prepare to fire our resin retrieval hook at [A]!")) X.emote("roar") var/throw_target_turf = get_step(X.loc, facing) @@ -1007,7 +993,7 @@ ADD_TRAIT(X, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Praetorian Retrieve")) if(windup) if(!do_after(X, windup, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE, numticks = 1)) - to_chat(X, SPAN_XENOWARNING("You cancel your retrieve.")) + to_chat(X, SPAN_XENOWARNING("We cancel our retrieve.")) apply_cooldown() for (var/obj/effect/xenomorph/xeno_telegraph/XT in telegraph_atom_list) @@ -1029,18 +1015,18 @@ break if(!successful_retrieve) - to_chat(X, SPAN_XENOWARNING("You can't reach [targetXeno] with your resin retrieval hook!")) + to_chat(X, SPAN_XENOWARNING("We can't reach [targetXeno] with our resin retrieval hook!")) return - to_chat(targetXeno, SPAN_XENOBOLDNOTICE("You are pulled toward [X]!")) + to_chat(targetXeno, SPAN_XENOBOLDNOTICE("We are pulled toward [X]!")) shake_camera(targetXeno, 10, 1) var/throw_dist = get_dist(throw_target_turf, targetXeno)-1 if(throw_target_turf == behind_turf) throw_dist++ - to_chat(X, SPAN_XENOBOLDNOTICE("You fling [targetXeno] over your head with your resin hook, and they land behind you!")) + to_chat(X, SPAN_XENOBOLDNOTICE("We fling [targetXeno] over our head with our resin hook, and they land behind us!")) else - to_chat(X, SPAN_XENOBOLDNOTICE("You fling [targetXeno] towards you with your resin hook, and they in front of you!")) + to_chat(X, SPAN_XENOBOLDNOTICE("We fling [targetXeno] towards us with our resin hook, and they land in front of us!")) targetXeno.throw_atom(throw_target_turf, throw_dist, SPEED_VERY_FAST, pass_flags = PASS_MOB_THRU) apply_cooldown() return ..() diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm index aa98f063b8..cc89a86d38 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_abilities.dm @@ -1,14 +1,22 @@ -/datum/action/xeno_action/activable/pounce/predalien - name = "Leap" + +/datum/action/xeno_action/onclick/feralrush + name = "Feral Rush" + action_icon_state = "charge_spit" + ability_name = "toughen up" + macro_path = /datum/action/xeno_action/verb/verb_feralrush ability_primacy = XENO_PRIMARY_ACTION_1 + action_type = XENO_ACTION_ACTIVATE + xeno_cooldown = 12 SECONDS + + // Config + var/speed_duration = 3 SECONDS + var/armor_duration = 6 SECONDS + var/speed_buff_amount = 0.8 // Go from shit slow to kindafast + var/armor_buff_amount = 10 // hopefully-minor buff so they can close the distance - knockdown = FALSE + var/speed_buff = FALSE + var/armor_buff = FALSE - distance = 5 - knockdown = FALSE // Should we knock down the target? - slash = FALSE // Do we slash upon reception? - freeze_self = FALSE // Should we freeze ourselves after the lunge? - should_destroy_objects = TRUE // Only used for ravager charge /datum/action/xeno_action/onclick/predalien_roar name = "Roar" @@ -16,37 +24,52 @@ ability_name = "roar" action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 + macro_path = /datum/action/xeno_action/verb/verb_predalien_roar xeno_cooldown = 25 SECONDS - plasma_cost = 50 - var/predalien_roar = list("sound/voice/predalien_roar.ogg") var/bonus_damage_scale = 2.5 var/bonus_speed_scale = 0.05 -/datum/action/xeno_action/onclick/smash - name = "Smash" - action_icon_state = "stomp" - ability_name = "smash" +/datum/action/xeno_action/activable/feral_smash + name = "Feral Smash" + ability_name = "Feral Smash" + action_icon_state = "lunge" action_type = XENO_ACTION_CLICK + macro_path = /datum/action/xeno_action/verb/feral_smash ability_primacy = XENO_PRIMARY_ACTION_3 xeno_cooldown = 20 SECONDS - plasma_cost = 80 - - var/freeze_duration = 1.5 SECONDS - var/activation_delay = 1 SECONDS - var/smash_sounds = list('sound/effects/alien_footstep_charge1.ogg', 'sound/effects/alien_footstep_charge2.ogg', 'sound/effects/alien_footstep_charge3.ogg') + // Configurables + var/grab_range = 4 + var/twitch_message_cooldown = 0 //apparently this is necessary for a tiny code that makes the lunge message on cooldown not be spammable, doesn't need to be big so 5 will do. + var/smash_damage = 20 + var/smash_scale = 10 + var/stun_duration = 3 SECONDS -/datum/action/xeno_action/activable/devastate - name = "Devastate" - action_icon_state = "gut" - ability_name = "devastate" +/datum/action/xeno_action/activable/feralfrenzy + name = "Feral Frenzy" + action_icon_state = "rav_eviscerate" + ability_name = "Feral Frenzy" action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_4 - xeno_cooldown = 20 SECONDS - plasma_cost = 110 - - var/activation_delay = 1 SECONDS + macro_path = /datum/action/xeno_action/verb/verb_feralfrenzy + xeno_cooldown = 15 SECONDS + //AOE + var/activation_delay_aoe = 1 SECONDS + var/base_damage_aoe = 15 + var/damage_scale_aoe = 10 + //SINGLE TARGET + var/activation_delay = 0.5 SECONDS var/base_damage = 25 - var/damage_scale = 10 // How much it scales by every kill + var/damage_scale = 10 + var/targeting = SINGLETARGETGUT + /// The orange used for a AOETARGETGUT + var/range = 2 + +/datum/action/xeno_action/onclick/toggle_gut_targeting + name = "Toggle Gutting Type" + action_icon_state = "gut" // starting targetting is SINGLETARGETGUT + macro_path = /datum/action/xeno_action/verb/verb_toggle_gut_targeting + action_type = XENO_ACTION_ACTIVATE + ability_primacy = XENO_PRIMARY_ACTION_5 diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm new file mode 100644 index 0000000000..450a0ac677 --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_macros.dm @@ -0,0 +1,35 @@ +/datum/action/xeno_action/verb/verb_feralfrenzy() + set category = "Alien" + set name = "Feral Frenzy" + set hidden = TRUE + var/action_name = "Feral Frenzy" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/verb_toggle_gut_targeting() + set category = "Alien" + set name = "Toggle Gutting Type" + set hidden = TRUE + var/action_name = "Toggle Gutting Type" + handle_xeno_macro(src, action_name) + + +/datum/action/xeno_action/verb/verb_feralrush() + set category = "Alien" + set name = "Feral Rush" + set hidden = TRUE + var/action_name = "Feral Rush" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/verb_predalien_roar() + set category = "Alien" + set name = "Predalien Roar" + set hidden = TRUE + var/action_name = "Roar" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/verb/feral_smash() + set category = "Alien" + set name = "Feral Smash" + set hidden = TRUE + var/action_name = "Feral Smash" + handle_xeno_macro(src, action_name) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm index 73d5ace965..41445a8fc6 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/predalien/predalien_powers.dm @@ -1,13 +1,10 @@ -/datum/action/xeno_action/activable/pounce/predalien/pre_pounce_effects() - playsound(owner, 'sound/voice/predalien_pounce.ogg', 75, 0, status = 0) - /datum/action/xeno_action/onclick/predalien_roar/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner - if (!action_cooldown_check()) + if(!action_cooldown_check()) return - if (!xeno.check_state()) + if(!xeno.check_state()) return if(!check_and_use_plasma_owner()) @@ -15,9 +12,8 @@ playsound(xeno.loc, pick(predalien_roar), 75, 0, status = 0) xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] emits a guttural roar!")) - xeno.create_shriekwave(7) - - for(var/mob/living/carbon/carbon in view(7, xeno)) + xeno.create_shriekwave(7) //Adds the visual effect. Wom wom wom, 7 shriekwaves + FOR_DVIEW(var/mob/living/carbon/carbon, 7, xeno, HIDE_INVISIBLE_OBSERVER) if(ishuman(carbon)) var/mob/living/carbon/human/human = carbon human.disable_special_items() @@ -33,125 +29,260 @@ if(!istype(behavior)) continue new /datum/effects/xeno_buff(carbon, xeno, ttl = (0.25 SECONDS * behavior.kills + 3 SECONDS), bonus_damage = bonus_damage_scale * behavior.kills, bonus_speed = (bonus_speed_scale * behavior.kills)) - - - for(var/mob/M in view(xeno)) - if(M && M.client) - shake_camera(M, 10, 1) + FOR_DVIEW_END apply_cooldown() return ..() -/datum/action/xeno_action/onclick/smash/use_ability(atom/target) +/datum/action/xeno_action/activable/feralfrenzy/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner - - if (!action_cooldown_check()) + if(!action_cooldown_check() || xeno.action_busy) + return + if(!xeno.check_state()) return - if (!xeno.check_state()) + var/datum/behavior_delegate/predalien_base/predalienbehavior = xeno.behavior_delegate + if(!istype(predalienbehavior)) return + if(targeting == AOETARGETGUT) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] begins digging in for a massive strike!"), SPAN_XENOHIGHDANGER("We begin digging in for a massive strike!")) + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) + xeno.anchored = TRUE + if (do_after(xeno, (activation_delay_aoe), INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) + xeno.emote("roar") + xeno.spin_circle() + + for (var/mob/living/carbon/carbon in orange(xeno, range)) + if(!isliving(carbon) || xeno.can_not_harm(carbon)) + continue + + if (carbon.stat == DEAD) + continue + + if(!check_clear_path_to_target(xeno, carbon)) + continue + + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [carbon]!")) + carbon.spawn_gibs() + xeno.animation_attack_on(carbon) + xeno.spin_circle() + xeno.flick_attack_overlay(carbon, "tail") + playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 30, 1) + carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) + playsound(get_turf(carbon), "alien_claw_flesh", 30, 1) + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage_aoe + damage_scale_aoe * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + playsound(owner, 'sound/voice/predalien_death.ogg', 75, 0, status = 0) + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) + xeno.anchored = FALSE + apply_cooldown() + return ..() - var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate - if(!istype(behavior)) + //single target checks + if(xeno.can_not_harm(target)) + to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!")) return - if(!check_plasma_owner()) + if(!isliving(target)) return - if(!do_after(xeno, activation_delay, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - to_chat(xeno, "Keep still whilst trying to smash into the ground") + if(get_dist_sqrd(target, xeno) > 2) + to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!")) + return - var/real_cooldown = xeno_cooldown + var/mob/living/carbon/carbon = target - xeno_cooldown = 3 SECONDS + if(carbon.stat == DEAD) + to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would we want to touch them?")) + return + if(targeting == SINGLETARGETGUT) // single target + ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) apply_cooldown() - xeno_cooldown = real_cooldown + + ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) + xeno.anchored = TRUE + + if(do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("We rapidly slice into [carbon]!")) + carbon.spawn_gibs() + playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 50, 1) + carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + + xeno.animation_attack_on(carbon) + xeno.spin_circle() + xeno.flick_attack_overlay(carbon, "tail") + + playsound(owner, 'sound/voice/predalien_growl.ogg', 50, 0, status = 0) + + REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) + xeno.anchored = FALSE + unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate")) + + return ..() + + +/datum/action/xeno_action/onclick/feralrush/use_ability(atom/A) + var/mob/living/carbon/xenomorph/predatoralien = owner + + if(!action_cooldown_check()) + return + + if(!istype(predatoralien) || !predatoralien.check_state()) + return + + if(armor_buff && speed_buff) + to_chat(predatoralien, SPAN_XENOHIGHDANGER("We cannot stack this!")) return if(!check_and_use_plasma_owner()) return - playsound(xeno.loc, pick(smash_sounds), 50, 0, status = 0) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] smashes into the ground!")) - xeno.create_stomp() + addtimer(CALLBACK(src, PROC_REF(remove_rush_effects)), speed_duration) + addtimer(CALLBACK(src, PROC_REF(remove_armor_effects)), armor_duration) // calculate armor and speed differently, so it's a bit more armored while trying to get out + predatoralien.add_filter("predalien_toughen", 1, list("type" = "outline", "color" = "#421313", "size" = 1)) + to_chat(predatoralien, SPAN_XENOWARNING("We feel our muscles tense as our speed and armor increase!")) + speed_buff = TRUE + armor_buff = TRUE + predatoralien.speed_modifier -= speed_buff_amount + predatoralien.armor_modifier += armor_buff_amount + predatoralien.recalculate_speed() + predatoralien.recalculate_armor() + playsound(predatoralien, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) + apply_cooldown() + return ..() - for(var/mob/living/carbon/carbon in oview(round(behavior.kills * 0.5 + 2), xeno)) - if(!xeno.can_not_harm(carbon) && carbon.stat != DEAD) - ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Smash")) - if (ishuman(carbon)) - var/mob/living/carbon/human/human = carbon - human.update_xeno_hostile_hud() +/datum/action/xeno_action/onclick/feralrush/proc/remove_rush_effects() + SIGNAL_HANDLER + var/mob/living/carbon/xenomorph/predatoralien = owner + if(speed_buff == TRUE) + to_chat(predatoralien, SPAN_XENOWARNING("Our muscles relax as we feel our speed wane.")) + predatoralien.remove_filter("predalien_toughen") + predatoralien.speed_modifier += speed_buff_amount + predatoralien.recalculate_speed() + speed_buff = FALSE - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(unroot_human), carbon, TRAIT_SOURCE_ABILITY("Smash")), get_xeno_stun_duration(carbon, freeze_duration)) +/datum/action/xeno_action/onclick/feralrush/proc/remove_armor_effects() + SIGNAL_HANDLER + var/mob/living/carbon/xenomorph/predatoralien = owner + if(armor_buff) + to_chat(predatoralien, SPAN_XENOWARNING("We are no longer armored.")) + predatoralien.armor_modifier -= armor_buff_amount + predatoralien.recalculate_armor() + armor_buff = FALSE - for(var/mob/M in view(xeno)) - if(M && M.client) - shake_camera(M, 0.2 SECONDS, 1) - apply_cooldown() - return ..() +/datum/action/xeno_action/onclick/toggle_gut_targeting/use_ability(atom/A) -/datum/action/xeno_action/activable/devastate/use_ability(atom/target) var/mob/living/carbon/xenomorph/xeno = owner + var/action_icon_result - if (!action_cooldown_check()) + if(!xeno.check_state()) return - if (!xeno.check_state()) + var/datum/action/xeno_action/activable/feralfrenzy/guttype = get_action(xeno, /datum/action/xeno_action/activable/feralfrenzy) + if(!guttype) return - if (!isxeno_human(target) || xeno.can_not_harm(target)) - to_chat(xeno, SPAN_XENOWARNING("You must target a hostile!")) - return + if(guttype.targeting == SINGLETARGETGUT) + action_icon_result = "rav_scissor_cut" + guttype.targeting = AOETARGETGUT + to_chat(xeno, SPAN_XENOWARNING("We will now attack everyone around us during a Feral Frenzy.")) + else + action_icon_result = "gut" + guttype.targeting = SINGLETARGETGUT + to_chat(xeno, SPAN_XENOWARNING("We will now focus our Feral Frenzy on one person!")) + + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions_xeno.dmi', button, action_icon_result) + return ..() - if (get_dist_sqrd(target, xeno) > 2) - to_chat(xeno, SPAN_XENOWARNING("[target] is too far away!")) - return +/datum/action/xeno_action/activable/feral_smash/use_ability(atom/affected_atom) + var/mob/living/carbon/xenomorph/predalien_smash = owner + var/datum/behavior_delegate/predalien_base/predalienbehavior = predalien_smash.behavior_delegate - var/mob/living/carbon/carbon = target + if(!action_cooldown_check()) + if(twitch_message_cooldown < world.time ) + predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s muscles twitch."), SPAN_XENOWARNING("Our claws twitch as we try to grab onto the target but lack the strength. Wait a moment to try again.")) + twitch_message_cooldown = world.time + 5 SECONDS + return //this gives a little feedback on why your lunge didn't hit other than the lunge button going grey. Plus, it might spook marines that almost got lunged if they know why the message appeared, and extra spookiness is always good. - if (carbon.stat == DEAD) - to_chat(xeno, SPAN_XENOWARNING("[carbon] is dead, why would you want to touch them?")) + if(!affected_atom) return - var/datum/behavior_delegate/predalien_base/behavior = xeno.behavior_delegate - if(!istype(behavior)) + if(!isturf(predalien_smash.loc)) + to_chat(predalien_smash, SPAN_XENOWARNING("We can't lunge from here!")) return - if (!check_and_use_plasma_owner()) + if(!predalien_smash.check_state() || predalien_smash.agility) return - ADD_TRAIT(carbon, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) + if(predalien_smash.can_not_harm(affected_atom) || !ismob(affected_atom)) + return - if (ishuman(carbon)) - var/mob/living/carbon/human/human = carbon - human.update_xeno_hostile_hud() - apply_cooldown() + var/mob/living/carbon/carbon = affected_atom + if(carbon.stat == DEAD) + return - ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) - xeno.anchored = TRUE + if(!isliving(affected_atom)) + return - if (do_after(xeno, activation_delay, INTERRUPT_ALL | BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE)) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [carbon]!"), SPAN_XENOHIGHDANGER("You rip open the guts of [carbon]!")) - carbon.spawn_gibs() - playsound(get_turf(carbon), 'sound/effects/gibbed.ogg', 75, 1) - carbon.apply_effect(get_xeno_stun_duration(carbon, 0.5), WEAKEN) - carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, base_damage + damage_scale * behavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + if(!check_and_use_plasma_owner()) + return - xeno.animation_attack_on(carbon) - xeno.spin_circle() - xeno.flick_attack_overlay(carbon, "tail") + apply_cooldown() - playsound(owner, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) + predalien_smash.throw_atom(get_step_towards(affected_atom, predalien_smash), grab_range, SPEED_FAST, predalien_smash) - REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Devastate")) - xeno.anchored = FALSE - unroot_human(carbon, TRAIT_SOURCE_ABILITY("Devastate")) + if(predalien_smash.Adjacent(carbon) && predalien_smash.start_pulling(carbon, TRUE)) + playsound(carbon.pulledby, 'sound/voice/predalien_growl.ogg', 75, 0, status = 0) // bang and roar for dramatic effect + playsound(carbon, 'sound/effects/bang.ogg', 25, 0) + animate(carbon, pixel_y = carbon.pixel_y + 32, time = 4, easing = SINE_EASING) + sleep(4) + playsound(carbon, 'sound/effects/bang.ogg', 25, 0) + playsound(carbon,"slam", 50, 1) + animate(carbon, pixel_y = 0, time = 4, easing = BOUNCE_EASING) //animates the smash + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, smash_damage + smash_scale * predalienbehavior.kills), ARMOR_MELEE, BRUTE, "chest", 20) + else + predalien_smash.visible_message(SPAN_XENOWARNING("[predalien_smash]'s claws twitch."), SPAN_XENOWARNING("We couldn't grab our target. Wait a moment to try again.")) - xeno.visible_message(SPAN_XENODANGER("[xeno] rapidly slices into [carbon]!")) + return ..() +/mob/living/carbon/xenomorph/predalien/stop_pulling() + if(isliving(pulling) && smashing) + smashing = FALSE // To avoid extreme cases of stopping a lunge then quickly pulling and stopping to pull someone else + var/mob/living/smashed = pulling + smashed.set_effect(0, STUN) + smashed.set_effect(0, WEAKEN) return ..() + +/mob/living/carbon/xenomorph/predalien/start_pulling(atom/movable/movable_atom, feral_smash) + if(!check_state()) + return FALSE + + if(!isliving(movable_atom)) + return FALSE + var/mob/living/living_mob = movable_atom + var/should_neckgrab = !(src.can_not_harm(living_mob)) && feral_smash + + + . = ..(living_mob, feral_smash, should_neckgrab) + + if(.) //successful pull + if(isxeno(living_mob)) + var/mob/living/carbon/xenomorph/xeno = living_mob + if(xeno.tier >= 2) // Tier 2 castes or higher immune to warrior grab stuns + return + + if(should_neckgrab && living_mob.mob_size < MOB_SIZE_BIG) + visible_message(SPAN_XENOWARNING("[src] grabs [living_mob] by the back of their leg and slams them onto the ground!"), \ + SPAN_XENOWARNING("We grab [living_mob] by the back of their leg and slam them onto the ground!")) // more flair + smashing = TRUE + living_mob.drop_held_items() + var/duration = get_xeno_stun_duration(living_mob, 1) + living_mob.KnockDown(duration) + living_mob.Stun(duration) + addtimer(VARSET_CALLBACK(src, smashing, FALSE), duration) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm index 50fa9fd92b..ebcd29ded2 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_abilities.dm @@ -1,8 +1,3 @@ -/datum/action/xeno_action/onclick/deevolve - name = "De-Evolve a Xenomorph (500)" - action_icon_state = "xeno_deevolve" - plasma_cost = 500 - /datum/action/xeno_action/onclick/remove_eggsac name = "Remove Eggsac" action_icon_state = "grow_ovipositor" @@ -43,25 +38,12 @@ var/node_plant_cooldown = 7 SECONDS var/node_plant_plasma_cost = 300 - var/turf_build_cooldown = 7 SECONDS + var/turf_build_cooldown = 10 SECONDS -/datum/action/xeno_action/onclick/give_evo_points - name = "Trade Larva for Evolution Points (100)" - action_icon_state = "queen_give_evo_points" - plasma_cost = 100 - xeno_cooldown = 60 SECONDS - var/evo_points_per_larva = 250 - var/required_larva = 3 - -/datum/action/xeno_action/onclick/banish - name = "Banish a Xenomorph (500)" - action_icon_state = "xeno_banish" - plasma_cost = 500 - -/datum/action/xeno_action/onclick/readmit - name = "Readmit a Xenomorph (100)" +/datum/action/xeno_action/onclick/manage_hive + name = "Manage The Hive" action_icon_state = "xeno_readmit" - plasma_cost = 100 + plasma_cost = 0 /datum/action/xeno_action/activable/secrete_resin/remote/queen name = "Projected Resin (100)" @@ -80,6 +62,10 @@ . = ..() SSticker.OnRoundstart(CALLBACK(src, PROC_REF(apply_queen_build_boost))) +// queenos don't need weeds under them to build on ovi +/datum/action/xeno_action/activable/secrete_resin/remote/queen/can_remote_build() + return TRUE + /datum/action/xeno_action/activable/secrete_resin/remote/queen/proc/apply_queen_build_boost() var/boost_duration = 30 MINUTES // In the event secrete_resin is given after round start diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm index 23da1ce659..6ef111aed6 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/queen/queen_powers.dm @@ -1,6 +1,7 @@ // devolve a xeno - lots of old, vaguely shitty code here -/datum/action/xeno_action/onclick/deevolve/use_ability(atom/Atom) +/datum/action/xeno_action/onclick/manage_hive/proc/de_evolve_other() var/mob/living/carbon/xenomorph/queen/user_xeno = owner + var/plasma_cost_devolve = 500 if(!user_xeno.check_state()) return if(!user_xeno.observed_xeno) @@ -8,7 +9,7 @@ return var/mob/living/carbon/xenomorph/target_xeno = user_xeno.observed_xeno - if(!user_xeno.check_plasma(plasma_cost)) + if(!user_xeno.check_plasma(plasma_cost_devolve)) return if(target_xeno.hivenumber != user_xeno.hivenumber) @@ -86,7 +87,9 @@ xeno_type = /mob/living/carbon/xenomorph/defender if(XENO_CASTE_BURROWER) xeno_type = /mob/living/carbon/xenomorph/burrower - + var/obj/item/organ/xeno/organ = locate() in src + if(!isnull(organ)) + qdel(organ) //From there, the new xeno exists, hopefully var/mob/living/carbon/xenomorph/new_xeno = new xeno_type(get_turf(target_xeno), target_xeno) @@ -102,7 +105,7 @@ else new_xeno.key = target_xeno.key if(new_xeno.client) - new_xeno.client.change_view(world_view_size) + new_xeno.client.change_view(GLOB.world_view_size) new_xeno.client.pixel_x = 0 new_xeno.client.pixel_y = 0 @@ -115,7 +118,7 @@ remove_verb(new_xeno, /mob/living/carbon/xenomorph/verb/Deevolve) new_xeno.visible_message(SPAN_XENODANGER("A [new_xeno.caste.caste_type] emerges from the husk of \the [target_xeno]."), \ - SPAN_XENODANGER("[user_xeno] makes you regress into your previous form.")) + SPAN_XENODANGER("[user_xeno] makes us regress into your previous form.")) if(user_xeno.hive.living_xeno_queen && user_xeno.hive.living_xeno_queen.observed_xeno == target_xeno) user_xeno.hive.living_xeno_queen.overwatch(new_xeno) @@ -125,12 +128,12 @@ target_xeno.transfer_observers_to(new_xeno) - if(round_statistics && !new_xeno.statistic_exempt) - round_statistics.track_new_participant(target_xeno.faction, -1) //so an evolved xeno doesn't count as two. + if(GLOB.round_statistics && !new_xeno.statistic_exempt) + GLOB.round_statistics.track_new_participant(target_xeno.faction, -1) //so an evolved xeno doesn't count as two. SSround_recording.recorder.stop_tracking(target_xeno) SSround_recording.recorder.track_player(new_xeno) qdel(target_xeno) - return ..() + return /datum/action/xeno_action/onclick/remove_eggsac/use_ability(atom/A) var/mob/living/carbon/xenomorph/queen/X = owner @@ -213,8 +216,8 @@ return var/datum/hive_status/hive = X.hive if(X.observed_xeno) - if(!hive.open_xeno_leader_positions.len && X.observed_xeno.hive_pos == NORMAL_XENO) - to_chat(X, SPAN_XENOWARNING("You currently have [hive.xeno_leader_list.len] promoted leaders. You may not maintain additional leaders until your power grows.")) + if(!length(hive.open_xeno_leader_positions) && X.observed_xeno.hive_pos == NORMAL_XENO) + to_chat(X, SPAN_XENOWARNING("You currently have [length(hive.xeno_leader_list)] promoted leaders. You may not maintain additional leaders until your power grows.")) return var/mob/living/carbon/xenomorph/T = X.observed_xeno if(T == X) @@ -236,12 +239,12 @@ for(var/mob/living/carbon/xenomorph/T in hive.xeno_leader_list) possible_xenos += T - if(possible_xenos.len > 1) + if(length(possible_xenos) > 1) var/mob/living/carbon/xenomorph/selected_xeno = tgui_input_list(X, "Target", "Watch which leader?", possible_xenos, theme="hive_status") if(!selected_xeno || selected_xeno.hive_pos == NORMAL_XENO || selected_xeno == X.observed_xeno || selected_xeno.stat == DEAD || selected_xeno.z != X.z || !X.check_state()) return X.overwatch(selected_xeno) - else if(possible_xenos.len) + else if(length(possible_xenos)) X.overwatch(possible_xenos[1]) else to_chat(X, SPAN_XENOWARNING("There are no Xenomorph leaders. Overwatch a Xenomorph to make it a leader.")) @@ -292,23 +295,27 @@ to_chat(X, SPAN_XENONOTICE("You channel your plasma to heal your sisters' wounds around this area.")) return ..() -/datum/action/xeno_action/onclick/give_evo_points/use_ability(atom/Atom) +/datum/action/xeno_action/onclick/manage_hive/proc/give_evo_points() var/mob/living/carbon/xenomorph/queen/user_xeno = owner + var/plasma_cost_givepoints = 100 + + if(!user_xeno.check_state()) return - if(!user_xeno.check_plasma(plasma_cost)) + if(!user_xeno.check_plasma(plasma_cost_givepoints)) return if(world.time < SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK) - to_chat(usr, SPAN_XENOWARNING("You must give some time for larva to spawn before sacrificing them. Please wait another [round((SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK - world.time) / 600)] minutes.")) + to_chat(usr, SPAN_XENOWARNING("You must give some time for larva to spawn before sacrificing them. Please wait another [floor((SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK - world.time) / 600)] minutes.")) return var/choice = tgui_input_list(user_xeno, "Choose a xenomorph to give evolution points for a burrowed larva:", "Give Evolution Points", user_xeno.hive.totalXenos, theme="hive_status") if(!choice) return - + var/evo_points_per_larva = 250 + var/required_larva = 1 var/mob/living/carbon/xenomorph/target_xeno for(var/mob/living/carbon/xenomorph/xeno in user_xeno.hive.totalXenos) @@ -351,14 +358,162 @@ target_xeno.evolution_stored += evo_points_per_larva user_xeno.hive.stored_larva-- + return + + + +/datum/action/xeno_action/onclick/manage_hive/proc/give_jelly_reward() + var/mob/living/carbon/xenomorph/queen/xeno = owner + var/plasma_cost_jelly = 500 + if(!xeno.check_state()) + return + if(!xeno.check_plasma(plasma_cost_jelly)) + return + if(give_jelly_award(xeno.hive)) + xeno.use_plasma(plasma_cost_jelly) + return +/datum/action/xeno_action/onclick/manage_hive/use_ability(atom/Atom) + var/mob/living/carbon/xenomorph/queen/queen_manager = owner + plasma_cost = 0 + var/list/options = list("Banish (500)", "Re-Admit (100)", "De-evolve (500)", "Reward Jelly (500)", "Exchange larva for evolution (100)",) + if(queen_manager.hive.hivenumber == XENO_HIVE_CORRUPTED) + var/datum/hive_status/corrupted/hive = queen_manager.hive + options += "Add Personal Ally" + if(length(hive.personal_allies)) + options += "Remove Personal Ally" + options += "Clear Personal Allies" + + var/choice = tgui_input_list(queen_manager, "Manage The Hive", "Hive Management", options, theme="hive_status") + switch(choice) + if("Banish (500)") + banish() + if("Re-Admit (100)") + readmit() + if("De-evolve (500)") + de_evolve_other() + if("Reward Jelly (500)") + give_jelly_reward(queen_manager.hive) + if("Exchange larva for evolution (100)") + give_evo_points() + if("Add Personal Ally") + add_personal_ally() + if("Remove Personal Ally") + remove_personal_ally() + if("Clear Personal Allies") + clear_personal_allies() return ..() -/datum/action/xeno_action/onclick/banish/use_ability(atom/Atom) +/datum/action/xeno_action/onclick/manage_hive/proc/add_personal_ally() var/mob/living/carbon/xenomorph/queen/user_xeno = owner + if(user_xeno.hive.hivenumber != XENO_HIVE_CORRUPTED) + return + if(!user_xeno.check_state()) return - if(!user_xeno.check_plasma(plasma_cost)) + var/datum/hive_status/corrupted/hive = user_xeno.hive + var/list/target_list = list() + if(!user_xeno.client) + return + for(var/mob/living/carbon/human/possible_target in range(7, user_xeno.client.eye)) + if(possible_target.stat == DEAD) + continue + if(possible_target.status_flags & CORRUPTED_ALLY) + continue + if(possible_target.hivenumber) + continue + target_list += possible_target + + if(!length(target_list)) + to_chat(user_xeno, SPAN_WARNING("No talls in view.")) + return + var/mob/living/target_mob = tgui_input_list(usr, "Target", "Set Up a Personal Alliance With...", target_list, theme="hive_status") + + if(!user_xeno.check_state(TRUE)) + return + + if(!target_mob) + return + + if(target_mob.hivenumber) + to_chat(user_xeno, SPAN_WARNING("We cannot set up a personal alliance with a hive cultist.")) + return + + hive.add_personal_ally(target_mob) + +/datum/action/xeno_action/onclick/manage_hive/proc/remove_personal_ally() + var/mob/living/carbon/xenomorph/queen/user_xeno = owner + if(user_xeno.hive.hivenumber != XENO_HIVE_CORRUPTED) + return + + if(!user_xeno.check_state()) + return + + var/datum/hive_status/corrupted/hive = user_xeno.hive + + if(!length(hive.personal_allies)) + to_chat(user_xeno, SPAN_WARNING("We don't have personal allies.")) + return + + var/list/mob/living/allies = list() + var/list/datum/weakref/dead_refs = list() + for(var/datum/weakref/ally_ref as anything in hive.personal_allies) + var/mob/living/ally = ally_ref.resolve() + if(ally) + allies += ally + continue + dead_refs += ally_ref + + hive.personal_allies -= dead_refs + + if(!length(allies)) + to_chat(user_xeno, SPAN_WARNING("We don't have personal allies.")) + return + + var/mob/living/target_mob = tgui_input_list(usr, "Target", "Break the Personal Alliance With...", allies, theme="hive_status") + + if(!target_mob) + return + + var/target_mob_ref = WEAKREF(target_mob) + + if(!(target_mob_ref in hive.personal_allies)) + return + + if(!user_xeno.check_state(TRUE)) + return + + hive.remove_personal_ally(target_mob_ref) + +/datum/action/xeno_action/onclick/manage_hive/proc/clear_personal_allies() + var/mob/living/carbon/xenomorph/queen/user_xeno = owner + if(user_xeno.hive.hivenumber != XENO_HIVE_CORRUPTED) + return + + if(!user_xeno.check_state()) + return + + var/datum/hive_status/corrupted/hive = user_xeno.hive + if(!length(hive.personal_allies)) + to_chat(user_xeno, SPAN_WARNING("We don't have personal allies.")) + return + + if(tgui_alert(user_xeno, "Are you sure you want to clear personal allies?", "Clear Personal Allies", list("No", "Yes"), 10 SECONDS) != "Yes") + return + + if(!length(hive.personal_allies)) + return + + hive.clear_personal_allies() + + +/datum/action/xeno_action/onclick/manage_hive/proc/banish() + var/mob/living/carbon/xenomorph/queen/user_xeno = owner + var/plasma_cost_banish = 500 + if(!user_xeno.check_state()) + return + + if(!user_xeno.check_plasma(plasma_cost_banish)) return var/choice = tgui_input_list(user_xeno, "Choose a xenomorph to banish:", "Banish", user_xeno.hive.totalXenos, theme="hive_status") @@ -399,7 +554,7 @@ to_chat(user_xeno, SPAN_XENOWARNING("You must provide a reason for banishing [target_xeno].")) return - if(!user_xeno.check_state() || !check_and_use_plasma_owner(plasma_cost) || target_xeno.health < 0) + if(!user_xeno.check_state() || !check_and_use_plasma_owner(plasma_cost_banish) || target_xeno.health < 0) return // Let everyone know they were banished @@ -413,20 +568,21 @@ addtimer(CALLBACK(src, PROC_REF(remove_banish), user_xeno.hive, target_xeno.name), 30 MINUTES) message_admins("[key_name_admin(user_xeno)] has banished [key_name_admin(target_xeno)]. Reason: [reason]") - return ..() + return -/datum/action/xeno_action/onclick/banish/proc/remove_banish(datum/hive_status/hive, name) +/datum/action/xeno_action/proc/remove_banish(datum/hive_status/hive, name) hive.banished_ckeys.Remove(name) // Readmission = un-banish -/datum/action/xeno_action/onclick/readmit/use_ability(atom/Atom) +/datum/action/xeno_action/onclick/manage_hive/proc/readmit() var/mob/living/carbon/xenomorph/queen/user_xeno = owner + var/plasma_cost_readmit = 100 if(!user_xeno.check_state()) return - if(!user_xeno.check_plasma(plasma_cost)) + if(!user_xeno.check_plasma(plasma_cost_readmit)) return var/choice = tgui_input_list(user_xeno, "Choose a xenomorph to readmit:", "Re-admit", user_xeno.hive.banished_ckeys, theme="hive_status") @@ -470,7 +626,7 @@ target_xeno.lock_evolve = FALSE user_xeno.hive.banished_ckeys.Remove(banished_name) - return ..() + return /datum/action/xeno_action/onclick/eye name = "Enter Eye Form" @@ -537,7 +693,7 @@ return var/obj/effect/alien/weeds/node/node - for(var/direction in cardinal) + for(var/direction in GLOB.cardinals) var/turf/weed_turf = get_step(T, direction) var/obj/effect/alien/weeds/W = locate() in weed_turf if(W && W.hivenumber == X.hivenumber && W.parent && !W.hibernate && !LinkBlocked(W, weed_turf, T)) @@ -666,7 +822,7 @@ return var/list/alerts = list() - for(var/i in RANGE_TURFS(Floor(width/2), T)) + for(var/i as anything in RANGE_TURFS(floor(width/2), T)) alerts += new /obj/effect/warning/alien(i) if(!do_after(Q, time_taken, INTERRUPT_NO_NEEDHAND, BUSY_ICON_FRIENDLY)) @@ -680,7 +836,7 @@ if(!check_and_use_plasma_owner()) return - var/turf/new_turf = locate(max(T.x - Floor(width/2), 1), max(T.y - Floor(height/2), 1), T.z) + var/turf/new_turf = locate(max(T.x - floor(width/2), 1), max(T.y - floor(height/2), 1), T.z) to_chat(Q, SPAN_XENONOTICE("You raise a blockade!")) var/obj/effect/alien/resin/resin_pillar/RP = new pillar_type(new_turf) RP.start_decay(brittle_time, decay_time) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.dm index 4f9c5f2986..53ad3b377a 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_abilities.dm @@ -29,7 +29,7 @@ xeno_cooldown = 18 SECONDS // Config values (mutable) - var/empower_range = 3 + var/empower_range = 4 var/max_targets = 6 var/main_empower_base_shield = 0 var/initial_activation_shield = 50 @@ -136,7 +136,7 @@ action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 plasma_cost = 0 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS // Config var/shard_cost = 75 @@ -150,7 +150,7 @@ action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_3 plasma_cost = 0 - xeno_cooldown = 300 + xeno_cooldown = 30 SECONDS // Config values var/shard_cost = 50 diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm index 11054e86ce..2634086e05 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/ravager/ravager_powers.dm @@ -6,9 +6,6 @@ if(!xeno.check_state()) return - if(xeno.mutation_type != RAVAGER_NORMAL) - return - if(!action_cooldown_check()) return @@ -16,7 +13,7 @@ if (!check_and_use_plasma_owner()) return - xeno.visible_message(SPAN_XENODANGER("[xeno] starts empowering!"), SPAN_XENODANGER("You start empowering yourself!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] starts empowering!"), SPAN_XENODANGER("We start empowering ourself!")) activated_once = TRUE button.icon_state = "template_active" get_inital_shield() @@ -32,7 +29,7 @@ activated_once = FALSE button.icon_state = "template" - xeno.visible_message(SPAN_XENOWARNING("[xeno] gets empowered by the surrounding enemies!"), SPAN_XENOWARNING("You feel a rush of power from the surrounding enemies!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] gets empowered by the surrounding enemies!"), SPAN_XENOWARNING("We feel a rush of power from the surrounding enemies!")) xeno.create_empower() var/list/mobs_in_range = oviewers(empower_range, xeno) @@ -64,7 +61,7 @@ super_empower(xeno, empower_targets, behavior) /datum/action/xeno_action/onclick/empower/proc/super_empower(mob/living/carbon/xenomorph/xeno, empower_targets, datum/behavior_delegate/ravager_base/behavior) - xeno.visible_message(SPAN_DANGER("[xeno] glows an eerie red as it empowers further with the strength of [empower_targets] hostiles!"), SPAN_XENOHIGHDANGER("You begin to glow an eerie red, empowered by the [empower_targets] enemies!")) + xeno.visible_message(SPAN_DANGER("[xeno] glows an eerie red as it empowers further with the strength of [empower_targets] hostiles!"), SPAN_XENOHIGHDANGER("We begin to glow an eerie red, empowered by the [empower_targets] enemies!")) xeno.emote("roar") @@ -90,7 +87,7 @@ /datum/action/xeno_action/onclick/empower/proc/remove_superbuff(mob/living/carbon/xenomorph/xeno, datum/behavior_delegate/ravager_base/behavior) behavior.empower_targets = 0 - xeno.visible_message(SPAN_DANGER("[xeno]'s glow slowly dims."), SPAN_XENOHIGHDANGER("Your glow fades away, the power leaving your body!")) + xeno.visible_message(SPAN_DANGER("[xeno]'s glow slowly dims."), SPAN_XENOHIGHDANGER("Our glow fades away, the power leaving our form!")) xeno.remove_filter("empower_rage") /datum/action/xeno_action/onclick/empower/proc/get_inital_shield() @@ -122,26 +119,16 @@ var/mob/living/carbon/human/human = living var/mob/living/carbon/xenomorph/xeno = owner - if(xeno.mutation_type != RAVAGER_NORMAL) - return var/datum/behavior_delegate/ravager_base/behavior = xeno.behavior_delegate if(behavior.empower_targets < behavior.super_empower_threshold) return - xeno.visible_message(SPAN_XENODANGER("The [xeno] uses its shield to bash [human] as it charges at them!"), SPAN_XENODANGER("You use your shield to bash [human] as you charge at them!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] uses its shield to bash [human] as it charges at them!"), SPAN_XENODANGER("We use our shield to bash [human] as we charge at them!")) human.apply_effect(behavior.knockdown_amount, WEAKEN) human.attack_alien(xeno, rand(xeno.melee_damage_lower, xeno.melee_damage_upper)) var/facing = get_dir(xeno, human) - var/turf/turf = xeno.loc - var/turf/temp = xeno.loc - - for(var/step in 0 to behavior.fling_distance-1) - temp = get_step(turf, facing) - if (!temp) - break - turf = temp - human.throw_atom(turf, behavior.fling_distance, SPEED_VERY_FAST, xeno, TRUE) + xeno.throw_carbon(human, facing, behavior.fling_distance, SPEED_VERY_FAST, shake_camera = FALSE, immobilize = TRUE) /datum/action/xeno_action/activable/scissor_cut/use_ability(atom/target_atom) var/mob/living/carbon/xenomorph/ravager_user = owner @@ -154,8 +141,6 @@ // Determine whether or not we should daze here var/should_sslow = FALSE - if(ravager_user.mutation_type != RAVAGER_NORMAL) - return var/datum/behavior_delegate/ravager_base/ravager_delegate = ravager_user.behavior_delegate if(ravager_delegate.empower_targets >= ravager_delegate.super_empower_threshold) should_sslow = TRUE @@ -170,8 +155,9 @@ for (var/step in 0 to 3) temp = get_step(turf, facing) - if(facing in diagonals) // check if it goes through corners - var/reverse_face = reverse_dir[facing] + if(facing in GLOB.diagonals) // check if it goes through corners + var/reverse_face = GLOB.reverse_dir[facing] + var/turf/back_left = get_step(temp, turn(reverse_face, 45)) var/turf/back_right = get_step(temp, turn(reverse_face, -45)) if((!back_left || back_left.density) && (!back_right || back_right.density)) @@ -203,7 +189,7 @@ // Hmm today I will kill a marine while looking away from them ravager_user.face_atom(target_atom) ravager_user.emote("roar") - ravager_user.visible_message(SPAN_XENODANGER("[ravager_user] sweeps its claws through the area in front of it!"), SPAN_XENODANGER("You sweep your claws through the area in front of you!")) + ravager_user.visible_message(SPAN_XENODANGER("[ravager_user] sweeps its claws through the area in front of it!"), SPAN_XENODANGER("We sweep our claws through the area in front of us!")) // Loop through our turfs, finding any humans there and dealing damage to them for (var/turf/target_turf in target_turfs) @@ -245,7 +231,7 @@ if (istype(behavior)) behavior.next_slash_buffed = TRUE - to_chat(xeno, SPAN_XENODANGER("Your next slash will slow!")) + to_chat(xeno, SPAN_XENODANGER("Our next slash will slow!")) addtimer(CALLBACK(src, PROC_REF(unbuff_slash)), buff_duration) @@ -264,7 +250,7 @@ if (istype(xeno)) xeno.speed_modifier += speed_buff xeno.recalculate_speed() - to_chat(xeno, SPAN_XENOHIGHDANGER("You feel your speed wane!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("We feel our speed wane!")) /datum/action/xeno_action/onclick/apprehend/proc/unbuff_slash() var/mob/living/carbon/xenomorph/xeno = owner @@ -277,7 +263,7 @@ return behavior.next_slash_buffed = FALSE - to_chat(xeno, SPAN_XENODANGER("You have waited too long, your slash will no longer slow enemies!")) + to_chat(xeno, SPAN_XENODANGER("We have waited too long, our slash will no longer slow enemies!")) /datum/action/xeno_action/activable/clothesline/use_ability(atom/affected_atom) @@ -290,11 +276,11 @@ return if (!isxeno_human(affected_atom) || xeno.can_not_harm(affected_atom)) - to_chat(xeno, SPAN_XENOWARNING("You must target a hostile!")) + to_chat(xeno, SPAN_XENOWARNING("We must target a hostile!")) return if (!xeno.Adjacent(affected_atom)) - to_chat(xeno, SPAN_XENOWARNING("You must be adjacent to your target!")) + to_chat(xeno, SPAN_XENOWARNING("We must be adjacent to our target!")) return var/mob/living/carbon/carbon = affected_atom @@ -303,23 +289,20 @@ var/debilitate = TRUE // Do we apply neg. status effects to the target? if (carbon.mob_size >= MOB_SIZE_BIG) - to_chat(xeno, SPAN_XENOWARNING("This creature is too massive to target")) + to_chat(xeno, SPAN_XENOWARNING("We creature is too massive to target")) return if (carbon.stat == DEAD) return - // All strain-specific behavior - if (xeno.mutation_type == RAVAGER_BERSERKER) - var/datum/behavior_delegate/ravager_berserker/behavior = xeno.behavior_delegate - - if (behavior.rage >= 2) - behavior.decrement_rage() - heal_amount += additional_healing_enraged - else - to_chat(xeno, SPAN_XENOWARNING("Your rejuvenation was weaker without rage!")) - debilitate = FALSE - fling_distance-- + var/datum/behavior_delegate/ravager_berserker/behavior = xeno.behavior_delegate + if (behavior.rage >= 2) + behavior.decrement_rage() + heal_amount += additional_healing_enraged + else + to_chat(xeno, SPAN_XENOWARNING("Our rejuvenation was weaker without rage!")) + debilitate = FALSE + fling_distance-- // Damage var/obj/limb/head/head = carbon.get_limb("head") @@ -368,22 +351,21 @@ var/max_lifesteal = 250 var/lifesteal_range = 1 - if (xeno.mutation_type == RAVAGER_BERSERKER) - var/datum/behavior_delegate/ravager_berserker/behavior = xeno.behavior_delegate - if (behavior.rage == 0) - to_chat(xeno, SPAN_XENODANGER("You cannot eviscerate when you have 0 rage!")) - return - damage = damage_at_rage_levels[Clamp(behavior.rage, 1, behavior.max_rage)] - range = range_at_rage_levels[Clamp(behavior.rage, 1, behavior.max_rage)] - windup_reduction = windup_reduction_at_rage_levels[Clamp(behavior.rage, 1, behavior.max_rage)] - behavior.decrement_rage(behavior.rage) + var/datum/behavior_delegate/ravager_berserker/behavior = xeno.behavior_delegate + if (behavior.rage == 0) + to_chat(xeno, SPAN_XENODANGER("We cannot eviscerate when we have 0 rage!")) + return + damage = damage_at_rage_levels[clamp(behavior.rage, 1, behavior.max_rage)] + range = range_at_rage_levels[clamp(behavior.rage, 1, behavior.max_rage)] + windup_reduction = windup_reduction_at_rage_levels[clamp(behavior.rage, 1, behavior.max_rage)] + behavior.decrement_rage(behavior.rage) - apply_cooldown() + apply_cooldown() if (range > 1) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] begins digging in for a massive strike!"), SPAN_XENOHIGHDANGER("You begin digging in for a massive strike!")) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] begins digging in for a massive strike!"), SPAN_XENOHIGHDANGER("We begin digging in for a massive strike!")) else - xeno.visible_message(SPAN_XENODANGER("[xeno] begins digging in for a strike!"), SPAN_XENOHIGHDANGER("You begin digging in for a strike!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] begins digging in for a strike!"), SPAN_XENOHIGHDANGER("We begin digging in for a strike!")) ADD_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) xeno.anchored = TRUE @@ -403,12 +385,12 @@ continue if (range > 1) - xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [human]!"), SPAN_XENOHIGHDANGER("You rip open the guts of [human]!")) + xeno.visible_message(SPAN_XENOHIGHDANGER("[xeno] rips open the guts of [human]!"), SPAN_XENOHIGHDANGER("We rip open the guts of [human]!")) human.spawn_gibs() playsound(get_turf(human), 'sound/effects/gibbed.ogg', 30, 1) human.apply_effect(get_xeno_stun_duration(human, 1), WEAKEN) else - xeno.visible_message(SPAN_XENODANGER("[xeno] claws [human]!"), SPAN_XENODANGER("You claw [human]!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] claws [human]!"), SPAN_XENODANGER("We claw [human]!")) playsound(get_turf(human), "alien_claw_flesh", 30, 1) human.apply_armoured_damage(get_xeno_damage_slash(human, damage), ARMOR_MELEE, BRUTE, "chest", 20) @@ -427,7 +409,7 @@ // This is the heal if(!xeno.on_fire) - xeno.gain_health(Clamp(valid_count * lifesteal_per_marine, 0, max_lifesteal)) + xeno.gain_health(clamp(valid_count * lifesteal_per_marine, 0, max_lifesteal)) REMOVE_TRAIT(xeno, TRAIT_IMMOBILIZED, TRAIT_SOURCE_ABILITY("Eviscerate")) xeno.anchored = FALSE @@ -446,14 +428,13 @@ if (!xeno.check_state()) return - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - if (!behavior.check_shards(shard_cost)) - to_chat(xeno, SPAN_DANGER("Not enough shards! You need [shard_cost - behavior.shards] more!")) - return - behavior.use_shards(shard_cost) + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + if (!behavior.check_shards(shard_cost)) + to_chat(xeno, SPAN_DANGER("Not enough shards! We need [shard_cost - behavior.shards] more!")) + return + behavior.use_shards(shard_cost) - xeno.visible_message(SPAN_XENODANGER("[xeno] ruffles its bone-shard quills, forming a defensive shell!"), SPAN_XENODANGER("You ruffle your bone-shard quills, forming a defensive shell!")) + xeno.visible_message(SPAN_XENODANGER("[xeno] ruffles its bone-shard quills, forming a defensive shell!"), SPAN_XENODANGER("We ruffle our bone-shard quills, forming a defensive shell!")) // Add our shield var/datum/xeno_shield/hedgehog_shield/shield = xeno.add_xeno_shield(shield_amount, XENO_SHIELD_SOURCE_HEDGE_RAV, /datum/xeno_shield/hedgehog_shield) @@ -475,10 +456,8 @@ return FALSE else if (cooldown_timer_id == TIMER_ID_NULL) var/mob/living/carbon/xenomorph/xeno = owner - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - return behavior.check_shards(shard_cost) - return TRUE + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + return behavior.check_shards(shard_cost) return FALSE /datum/action/xeno_action/onclick/spike_shield/proc/remove_shield() @@ -496,7 +475,7 @@ qdel(shield) break - to_chat(xeno, SPAN_XENODANGER("You feel your shard shield dissipate!")) + to_chat(xeno, SPAN_XENODANGER("We feel our shard shield dissipate!")) xeno.overlay_shields() return @@ -509,14 +488,13 @@ if(!affected_atom || affected_atom.layer >= FLY_LAYER || !isturf(xeno.loc) || !xeno.check_state()) return - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - if (!behavior.check_shards(shard_cost)) - to_chat(xeno, SPAN_DANGER("Not enough shards! You need [shard_cost - behavior.shards] more!")) - return - behavior.use_shards(shard_cost) + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + if (!behavior.check_shards(shard_cost)) + to_chat(xeno, SPAN_DANGER("Not enough shards! We need [shard_cost - behavior.shards] more!")) + return + behavior.use_shards(shard_cost) - xeno.visible_message(SPAN_XENOWARNING("The [xeno] fires their spikes at [affected_atom]!"), SPAN_XENOWARNING("You fire your spikes at [affected_atom]!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] fires their spikes at [affected_atom]!"), SPAN_XENOWARNING("We fire our spikes at [affected_atom]!")) var/turf/target = locate(affected_atom.x, affected_atom.y, affected_atom.z) var/obj/projectile/projectile = new /obj/projectile(xeno.loc, create_cause_data(initial(xeno.caste_type), xeno)) @@ -538,11 +516,8 @@ var/mob/living/carbon/xenomorph/xeno = owner if(!istype(xeno)) return FALSE - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - return behavior.check_shards(shard_cost) - - return TRUE + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + return behavior.check_shards(shard_cost) else return FALSE @@ -555,15 +530,14 @@ if (!xeno.check_state()) return - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - if (!behavior.check_shards(shard_cost)) - to_chat(xeno, SPAN_DANGER("Not enough shards! You need [shard_cost - behavior.shards] more!")) - return - behavior.use_shards(shard_cost) - behavior.lock_shards() + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + if (!behavior.check_shards(shard_cost)) + to_chat(xeno, SPAN_DANGER("Not enough shards! We need [shard_cost - behavior.shards] more!")) + return + behavior.use_shards(shard_cost) + behavior.lock_shards() - xeno.visible_message(SPAN_XENOWARNING("The [xeno] sheds their spikes, firing them in all directions!"), SPAN_XENOWARNING("You shed your spikes, firing them in all directions!!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] sheds their spikes, firing them in all directions!"), SPAN_XENOWARNING("We shed our spikes, firing them in all directions!!")) xeno.spin_circle() create_shrapnel(get_turf(xeno), shrapnel_amount, null, null, ammo_type, create_cause_data(initial(xeno.caste_type), owner), TRUE) playsound(xeno, 'sound/effects/spike_spray.ogg', 25, 1) @@ -574,10 +548,7 @@ /datum/action/xeno_action/onclick/spike_shed/action_cooldown_check() if (cooldown_timer_id == TIMER_ID_NULL) var/mob/living/carbon/xenomorph/xeno = owner - if (xeno.mutation_type == RAVAGER_HEDGEHOG) - var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate - return behavior.check_shards(shard_cost) - - return TRUE + var/datum/behavior_delegate/ravager_hedgehog/behavior = xeno.behavior_delegate + return behavior.check_shards(shard_cost) else return FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_abilities.dm index 09544304d8..fa2337d11f 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_abilities.dm @@ -28,7 +28,7 @@ macro_path = /datum/action/xeno_action/verb/verb_runner_bonespurs action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 110 + xeno_cooldown = 11 SECONDS plasma_cost = 0 var/ammo_type = /datum/ammo/xeno/bone_chips/spread/runner_skillshot diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm index 06bf3e0e2e..f5e090bc7e 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm @@ -12,7 +12,7 @@ if (!check_and_use_plasma_owner()) return - xeno.visible_message(SPAN_XENOWARNING("[xeno] fires a burst of bone chips at [affected_atom]!"), SPAN_XENOWARNING("You fire a burst of bone chips at [affected_atom]!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] fires a burst of bone chips at [affected_atom]!"), SPAN_XENOWARNING("We fire a burst of bone chips at [affected_atom]!")) var/turf/target = locate(affected_atom.x, affected_atom.y, affected_atom.z) var/obj/projectile/projectile = new /obj/projectile(xeno.loc, create_cause_data(initial(xeno.caste_type), xeno)) @@ -45,20 +45,20 @@ return ..() /mob/living/carbon/xenomorph/runner/corrosive_acid(atom/affected_atom, acid_type, plasma_cost) - if (mutation_type != RUNNER_ACIDER) + if(!istype(strain, /datum/xeno_strain/acider)) return ..() if(!affected_atom.Adjacent(src)) if(istype(affected_atom,/obj/item/explosive/plastic)) var/obj/item/explosive/plastic/plastic_explosive = affected_atom if(plastic_explosive.plant_target && !plastic_explosive.plant_target.Adjacent(src)) - to_chat(src, SPAN_WARNING("You can't reach [affected_atom].")) + to_chat(src, SPAN_WARNING("We can't reach [affected_atom].")) return else to_chat(src, SPAN_WARNING("[affected_atom] is too far away.")) return if(!isturf(loc) || HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) - to_chat(src, SPAN_WARNING("You can't melt [affected_atom] from here!")) + to_chat(src, SPAN_WARNING("We can't melt [affected_atom] from here!")) return face_atom(affected_atom) @@ -77,18 +77,12 @@ if(isobj(affected_atom)) object = affected_atom - if(istype(object, /obj/structure/window_frame)) - var/obj/structure/window_frame/window_frame = object - if(window_frame.reinforced && acid_type != /obj/effect/xenomorph/acid/strong) - to_chat(src, SPAN_WARNING("This [object.name] is too tough to be melted by your weak acid.")) - return - wait_time = object.get_applying_acid_time() if(wait_time == -1) - to_chat(src, SPAN_WARNING("You cannot dissolve [object].")) + to_chat(src, SPAN_WARNING("We cannot dissolve [object].")) return else - to_chat(src, SPAN_WARNING("You cannot dissolve [affected_atom].")) + to_chat(src, SPAN_WARNING("We cannot dissolve [affected_atom].")) return wait_time = wait_time / 4 if(!do_after(src, wait_time, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) @@ -110,7 +104,7 @@ if(istype(affected_atom, /obj/item/explosive/plastic)) var/obj/item/explosive/plastic/plastic_explosive = affected_atom if(plastic_explosive.plant_target && !plastic_explosive.plant_target.Adjacent(src)) - to_chat(src, SPAN_WARNING("You can't reach [affected_atom].")) + to_chat(src, SPAN_WARNING("We can't reach [affected_atom].")) return else to_chat(src, SPAN_WARNING("[affected_atom] is too far away.")) @@ -131,7 +125,7 @@ var/obj/vehicle/multitile/multitile_vehicle = affected_atom multitile_vehicle.take_damage_type(20 / acid.acid_delay, "acid", src) visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at [multitile_vehicle]. It sizzles under the bubbling mess of acid!"), \ - SPAN_XENOWARNING("You vomit globs of vile stuff at [multitile_vehicle]. It sizzles under the bubbling mess of acid!"), null, 5) + SPAN_XENOWARNING("We vomit globs of vile stuff at [multitile_vehicle]. It sizzles under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) QDEL_IN(acid, 20) return @@ -140,7 +134,7 @@ acid.name += " ([affected_atom])" visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff all over [affected_atom]. It begins to sizzle and melt under the bubbling mess of acid!"), \ - SPAN_XENOWARNING("You vomit globs of vile stuff all over [affected_atom]. It begins to sizzle and melt under the bubbling mess of acid!"), null, 5) + SPAN_XENOWARNING("We vomit globs of vile stuff all over [affected_atom]. It begins to sizzle and melt under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) @@ -156,7 +150,7 @@ var/area/xeno_area = get_area(xeno) if(xeno_area.flags_area & AREA_CONTAINMENT) - to_chat(xeno, SPAN_XENOWARNING("You can't activate this here!")) + to_chat(xeno, SPAN_XENOWARNING("We can't activate this here!")) return if(!xeno.check_state()) @@ -165,9 +159,6 @@ if(!action_cooldown_check()) return - if(xeno.mutation_type != RUNNER_ACIDER) - return - var/datum/behavior_delegate/runner_acider/behavior_delegate = xeno.behavior_delegate if(!istype(behavior_delegate)) return @@ -182,7 +173,7 @@ notify_ghosts(header = "For the Hive!", message = "[xeno] is going to explode for the Hive!", source = xeno, action = NOTIFY_ORBIT) - to_chat(xeno, SPAN_XENOWARNING("Your stomach starts turning and twisting, getting ready to compress the built up acid.")) + to_chat(xeno, SPAN_XENOWARNING("Our stomach starts turning and twisting, getting ready to compress the built up acid.")) xeno.color = "#22FF22" xeno.set_light_color("#22FF22") xeno.set_light_range(3) @@ -213,4 +204,4 @@ // -Original amount set - (time exploding + timer inaccuracy) * how much gets removed per tick / 2 xeno.adjust_effect(behavior_delegate.caboom_timer * -2 - (behavior_delegate.caboom_timer - behavior_delegate.caboom_left + 2) * xeno.life_slow_reduction * 0.5, SUPERSLOW) - to_chat(xeno, SPAN_XENOWARNING("You remove all your explosive acid before it combusted.")) + to_chat(xeno, SPAN_XENOWARNING("We remove all our explosive acid before it combusted.")) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/sentinel/sentinel_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/sentinel/sentinel_powers.dm index b058756d3e..1ed8863c23 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/sentinel/sentinel_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/sentinel/sentinel_powers.dm @@ -4,7 +4,7 @@ return if(!action_cooldown_check()) - to_chat(src, SPAN_WARNING("You must wait for your spit glands to refill.")) + to_chat(src, SPAN_WARNING("We must wait for our spit glands to refill.")) return var/turf/current_turf = get_turf(xeno) @@ -35,11 +35,8 @@ if(!xeno.check_state()) return - if(xeno.mutation_type != SENTINEL_NORMAL) - return - if(!action_cooldown_check()) - to_chat(src, SPAN_WARNING("You must wait for your spit glands to refill.")) + to_chat(src, SPAN_WARNING("We must wait for your spit glands to refill.")) return var/turf/current_turf = get_turf(xeno) @@ -77,14 +74,11 @@ if (!check_and_use_plasma_owner()) return - if (xeno.mutation_type != SENTINEL_NORMAL) - return - var/datum/behavior_delegate/sentinel_base/behavior = xeno.behavior_delegate if (istype(behavior)) behavior.next_slash_buffed = TRUE - to_chat(xeno, SPAN_XENOHIGHDANGER("Your next slash will apply neurotoxin!")) + to_chat(xeno, SPAN_XENOHIGHDANGER("Our next slash will apply neurotoxin!")) button.icon_state = "template_active" addtimer(CALLBACK(src, PROC_REF(unbuff_slash)), buff_duration) @@ -103,5 +97,5 @@ return behavior.next_slash_buffed = FALSE - to_chat(xeno, SPAN_XENODANGER("You have waited too long, your slash will no longer apply neurotoxin!")) + to_chat(xeno, SPAN_XENODANGER("We have waited too long, our slash will no longer apply neurotoxin!")) button.icon_state = "template" diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_abilities.dm index 7643b0bfa0..20febc22c4 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_abilities.dm @@ -8,7 +8,7 @@ macro_path = /datum/action/xeno_action/verb/verb_xeno_spit action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - cooldown_message = "You feel your corrosive glands swell with acid. You can spit again." + cooldown_message = "We feel our corrosive glands swell with acid. We can spit again." //xeno_cooldown = 60 SECONDS useless var. funny shitcode /datum/action/xeno_action/onclick/charge_spit @@ -34,7 +34,7 @@ action_type = XENO_ACTION_CLICK plasma_cost = 50 - xeno_cooldown = 80 + xeno_cooldown = 8 SECONDS // Configurable options spray_type = ACID_SPRAY_LINE // Enum for the shape of spray to do diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_powers.dm index ec8dfd9b7c..c6ba00d9a3 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/spitter/spitter_powers.dm @@ -8,21 +8,22 @@ return if (buffs_active) - to_chat(zenomorf, SPAN_XENOHIGHDANGER("You cannot stack this!")) + to_chat(zenomorf, SPAN_XENOHIGHDANGER("We cannot stack this!")) return if (!check_and_use_plasma_owner()) return - to_chat(zenomorf, SPAN_XENOHIGHDANGER("You accumulate acid in your glands. Your next spit will be stronger but shorter-ranged.")) - to_chat(zenomorf, SPAN_XENOWARNING("Additionally, you are slightly faster and more armored for a small amount of time.")) + to_chat(zenomorf, SPAN_XENOHIGHDANGER("We accumulate acid in your glands. Our next spit will be stronger but shorter-ranged.")) + to_chat(zenomorf, SPAN_XENOWARNING("Additionally, we are slightly faster and more armored for a small amount of time.")) zenomorf.create_custom_empower(icolor = "#93ec78", ialpha = 200, small_xeno = TRUE) - zenomorf.balloon_alert(zenomorf, "your next spit will be stronger", text_color = "#93ec78") + zenomorf.balloon_alert(zenomorf, "our next spit will be stronger", text_color = "#93ec78") buffs_active = TRUE zenomorf.ammo = GLOB.ammo_list[/datum/ammo/xeno/acid/spatter] // shitcode is my city zenomorf.speed_modifier -= speed_buff_amount zenomorf.armor_modifier += armor_buff_amount zenomorf.recalculate_speed() + zenomorf.recalculate_armor() /// Though the ability's other buffs are supposed to last for its duration, it's only supposed to enhance one spit. RegisterSignal(zenomorf, COMSIG_XENO_POST_SPIT, PROC_REF(disable_spatter)) @@ -36,8 +37,8 @@ SIGNAL_HANDLER var/mob/living/carbon/xenomorph/zenomorf = owner if(zenomorf.ammo == GLOB.ammo_list[/datum/ammo/xeno/acid/spatter]) - to_chat(zenomorf, SPAN_XENOWARNING("Your acid glands empty out and return back to normal. You will once more fire long-ranged weak spits.")) - zenomorf.balloon_alert(zenomorf, "your spits are back to normal", text_color = "#93ec78") + to_chat(zenomorf, SPAN_XENOWARNING("Our acid glands empty out and return back to normal. We will once more fire long-ranged weak spits.")) + zenomorf.balloon_alert(zenomorf, "our spits are back to normal", text_color = "#93ec78") zenomorf.ammo = GLOB.ammo_list[/datum/ammo/xeno/acid] // el codigo de mierda es mi ciudad UnregisterSignal(zenomorf, COMSIG_XENO_POST_SPIT) @@ -50,7 +51,8 @@ zenomorf.speed_modifier += speed_buff_amount zenomorf.armor_modifier -= armor_buff_amount zenomorf.recalculate_speed() - to_chat(zenomorf, SPAN_XENOHIGHDANGER("You feel your movement speed slow down!")) + zenomorf.recalculate_armor() + to_chat(zenomorf, SPAN_XENOHIGHDANGER("We feel our movement speed slow down!")) disable_spatter() buffs_active = FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_abilities.dm index 107e6a1984..4f40e19145 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_abilities.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_abilities.dm @@ -1,17 +1,3 @@ -// toggle agility -/datum/action/xeno_action/onclick/toggle_agility - name = "Toggle Agility" - action_icon_state = "agility_on" - ability_name = "toggle agility" - macro_path = /datum/action/xeno_action/verb/verb_toggle_agility - action_type = XENO_ACTION_CLICK - xeno_cooldown = 10 - -/datum/action/xeno_action/onclick/toggle_agility/can_use_action() - var/mob/living/carbon/xenomorph/X = owner - if(X && !X.buckled && !X.is_mob_incapacitated()) - return TRUE - // Warrior Fling /datum/action/xeno_action/activable/fling name = "Fling" @@ -20,7 +6,7 @@ macro_path = /datum/action/xeno_action/verb/verb_fling action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_3 - xeno_cooldown = 60 + xeno_cooldown = 6 SECONDS // Configurables var/fling_distance = 4 @@ -28,7 +14,6 @@ var/weaken_power = 0.5 var/slowdown = 2 - // Warrior Lunge /datum/action/xeno_action/activable/lunge name = "Lunge" @@ -37,15 +22,13 @@ macro_path = /datum/action/xeno_action/verb/verb_lunge action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 100 + xeno_cooldown = 10 SECONDS // Configurables var/grab_range = 4 var/click_miss_cooldown = 15 var/twitch_message_cooldown = 0 //apparently this is necessary for a tiny code that makes the lunge message on cooldown not be spammable, doesn't need to be big so 5 will do. -// Warrior Agility - /datum/action/xeno_action/activable/warrior_punch name = "Punch" action_icon_state = "punch" @@ -53,34 +36,10 @@ macro_path = /datum/action/xeno_action/verb/verb_punch action_type = XENO_ACTION_CLICK ability_primacy = XENO_PRIMARY_ACTION_1 - xeno_cooldown = 45 + xeno_cooldown = 4.5 SECONDS // Configurables var/base_damage = 25 var/base_punch_damage_synth = 30 var/base_punch_damage_pred = 25 var/damage_variance = 5 - -/datum/action/xeno_action/activable/uppercut - name = "Uppercut" - action_icon_state = "rav_clothesline" - ability_name = "uppercut" - macro_path = /datum/action/xeno_action/verb/verb_uppercut - action_type = XENO_ACTION_CLICK - ability_primacy = XENO_PRIMARY_ACTION_3 - xeno_cooldown = 100 - var/base_damage = 15 - var/base_knockback = 40 - var/base_knockdown = 0.25 - var/knockout_power = 11 // 11 seconds - var/base_healthgain = 5 // in percents of health per ko point - -/datum/action/xeno_action/activable/jab - name = "Jab" - action_icon_state = "pounce" - ability_name = "jab" - macro_path = /datum/action/xeno_action/verb/verb_jab - action_type = XENO_ACTION_CLICK - ability_primacy = XENO_PRIMARY_ACTION_2 - xeno_cooldown = 40 - diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_macros.dm b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_macros.dm index 09a24c079f..63d97bb69a 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_macros.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_macros.dm @@ -19,24 +19,3 @@ set hidden = TRUE var/action_name = "Punch" handle_xeno_macro(src, action_name) - -/datum/action/xeno_action/verb/verb_jab() - set category = "Alien" - set name = "Jab" - set hidden = TRUE - var/action_name = "Jab" - handle_xeno_macro(src, action_name) - -/datum/action/xeno_action/verb/verb_uppercut() - set category = "Alien" - set name = "Uppercut" - set hidden = TRUE - var/action_name = "Uppercut" - handle_xeno_macro(src, action_name) - -/datum/action/xeno_action/verb/verb_toggle_agility() - set category = "Alien" - set name = "Toggle Agility" - set hidden = TRUE - var/action_name = "Toggle Agility" - handle_xeno_macro(src, action_name) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_powers.dm index 6c354fde7b..bbb4a584e2 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/warrior/warrior_powers.dm @@ -1,28 +1,28 @@ -/datum/action/xeno_action/activable/lunge/use_ability(atom/A) - var/mob/living/carbon/xenomorph/X = owner +/datum/action/xeno_action/activable/lunge/use_ability(atom/affected_atom) + var/mob/living/carbon/xenomorph/xeno = owner if (!action_cooldown_check()) if(twitch_message_cooldown < world.time ) - X.visible_message(SPAN_XENOWARNING("\The [X]'s claws twitch."), SPAN_XENOWARNING("Your claws twitch as you try to lunge but lack the strength. Wait a moment to try again.")) + xeno.visible_message(SPAN_XENOWARNING("[xeno]'s claws twitch."), SPAN_XENOWARNING("Our claws twitch as we try to lunge but lack the strength. Wait a moment to try again.")) twitch_message_cooldown = world.time + 5 SECONDS return //this gives a little feedback on why your lunge didn't hit other than the lunge button going grey. Plus, it might spook marines that almost got lunged if they know why the message appeared, and extra spookiness is always good. - if (!A) + if (!affected_atom) return - if (!isturf(X.loc)) - to_chat(X, SPAN_XENOWARNING("You can't lunge from here!")) + if (!isturf(xeno.loc)) + to_chat(xeno, SPAN_XENOWARNING("We can't lunge from here!")) return - if (!X.check_state() || X.agility) + if (!xeno.check_state() || xeno.agility) return - if(X.can_not_harm(A) || !ismob(A)) + if(xeno.can_not_harm(affected_atom) || !ismob(affected_atom)) apply_cooldown_override(click_miss_cooldown) return - var/mob/living/carbon/H = A - if(H.stat == DEAD) + var/mob/living/carbon/carbon = affected_atom + if(carbon.stat == DEAD) return if (!check_and_use_plasma_owner()) @@ -31,166 +31,143 @@ apply_cooldown() ..() - X.visible_message(SPAN_XENOWARNING("\The [X] lunges towards [H]!"), SPAN_XENOWARNING("You lunge at [H]!")) + xeno.visible_message(SPAN_XENOWARNING("[xeno] lunges towards [carbon]!"), SPAN_XENOWARNING("We lunge at [carbon]!")) - X.throw_atom(get_step_towards(A, X), grab_range, SPEED_FAST, X) + xeno.throw_atom(get_step_towards(affected_atom, xeno), grab_range, SPEED_FAST, xeno) - if (X.Adjacent(H)) - X.start_pulling(H,1) + if (xeno.Adjacent(carbon)) + xeno.start_pulling(carbon,1) + if(ishuman(carbon)) + INVOKE_ASYNC(carbon, TYPE_PROC_REF(/mob, emote), "scream") else - X.visible_message(SPAN_XENOWARNING("\The [X]'s claws twitch."), SPAN_XENOWARNING("Your claws twitch as you lunge but are unable to grab onto your target. Wait a moment to try again.")) + xeno.visible_message(SPAN_XENOWARNING("[xeno]'s claws twitch."), SPAN_XENOWARNING("Our claws twitch as we lunge but are unable to grab onto our target. Wait a moment to try again.")) return TRUE -/datum/action/xeno_action/onclick/toggle_agility/use_ability(atom/A) - var/mob/living/carbon/xenomorph/X = owner +/datum/action/xeno_action/activable/fling/use_ability(atom/affected_atom) + var/mob/living/carbon/xenomorph/xeno = owner if (!action_cooldown_check()) return - if (!X.check_state(1)) + if (!isxeno_human(affected_atom) || xeno.can_not_harm(affected_atom)) return - X.agility = !X.agility - if (X.agility) - to_chat(X, SPAN_XENOWARNING("You lower yourself to all fours.")) - else - to_chat(X, SPAN_XENOWARNING("You raise yourself to stand on two feet.")) - X.update_icons() - - apply_cooldown() - return ..() - -/datum/action/xeno_action/activable/fling/use_ability(atom/target_atom) - var/mob/living/carbon/xenomorph/woyer = owner - - if (!action_cooldown_check()) + if (!xeno.check_state() || xeno.agility) return - if (!isxeno_human(target_atom) || woyer.can_not_harm(target_atom)) + if (!xeno.Adjacent(affected_atom)) return - if (!woyer.check_state() || woyer.agility) + var/mob/living/carbon/carbon = affected_atom + if(carbon.stat == DEAD) return - if (!woyer.Adjacent(target_atom)) + if(HAS_TRAIT(carbon, TRAIT_NESTED)) return - var/mob/living/carbon/carbone = target_atom - if(carbone.stat == DEAD) return - if(HAS_TRAIT(carbone, TRAIT_NESTED)) - return - - if(carbone == woyer.pulling) - woyer.stop_pulling() + if(carbon == xeno.pulling) + xeno.stop_pulling() - if(carbone.mob_size >= MOB_SIZE_BIG) - to_chat(woyer, SPAN_XENOWARNING("[carbone] is too big for you to fling!")) + if(carbon.mob_size >= MOB_SIZE_BIG) + to_chat(xeno, SPAN_XENOWARNING("[carbon] is too big for us to fling!")) return if (!check_and_use_plasma_owner()) return - woyer.visible_message(SPAN_XENOWARNING("\The [woyer] effortlessly flings [carbone] to the side!"), SPAN_XENOWARNING("You effortlessly fling [carbone] to the side!")) - playsound(carbone,'sound/weapons/alien_claw_block.ogg', 75, 1) + xeno.visible_message(SPAN_XENOWARNING("[xeno] effortlessly flings [carbon] to the side!"), SPAN_XENOWARNING("We effortlessly fling [carbon] to the side!")) + playsound(carbon,'sound/weapons/alien_claw_block.ogg', 75, 1) if(stun_power) - carbone.Stun(get_xeno_stun_duration(carbone, stun_power)) + carbon.Stun(get_xeno_stun_duration(carbon, stun_power)) if(weaken_power) - carbone.KnockDown(get_xeno_stun_duration(carbone, weaken_power)) + carbon.KnockDown(get_xeno_stun_duration(carbon, weaken_power)) if(slowdown) - if(carbone.slowed < slowdown) - carbone.apply_effect(slowdown, SLOW) - carbone.last_damage_data = create_cause_data(initial(woyer.caste_type), woyer) - shake_camera(carbone, 2, 1) + if(carbon.slowed < slowdown) + carbon.apply_effect(slowdown, SLOW) + carbon.last_damage_data = create_cause_data(initial(xeno.caste_type), xeno) - var/facing = get_dir(woyer, carbone) - var/turf/throw_turf = woyer.loc - var/turf/temp = woyer.loc - - for (var/x in 0 to fling_distance-1) - temp = get_step(throw_turf, facing) - if (!temp) - break - throw_turf = temp + var/facing = get_dir(xeno, carbon) // Hmm today I will kill a marine while looking away from them - woyer.face_atom(carbone) - woyer.animation_attack_on(carbone) - woyer.flick_attack_overlay(carbone, "disarm") - carbone.throw_atom(throw_turf, fling_distance, SPEED_VERY_FAST, woyer, TRUE) + xeno.face_atom(carbon) + xeno.animation_attack_on(carbon) + xeno.flick_attack_overlay(carbon, "disarm") + xeno.throw_carbon(carbon, facing, fling_distance, SPEED_VERY_FAST, shake_camera = TRUE, immobilize = TRUE) - COOLDOWN_RESET(woyer, forced_retarget_cooldown) apply_cooldown() return ..() -/datum/action/xeno_action/activable/warrior_punch/use_ability(atom/target_atom) - var/mob/living/carbon/xenomorph/woyer = owner +/datum/action/xeno_action/activable/warrior_punch/use_ability(atom/affected_atom) + var/mob/living/carbon/xenomorph/xeno = owner if (!action_cooldown_check()) return - if (!isxeno_human(target_atom) || woyer.can_not_harm(target_atom)) + if (!isxeno_human(affected_atom) || xeno.can_not_harm(affected_atom)) return - if (!woyer.check_state() || woyer.agility) + if (!xeno.check_state() || xeno.agility) return - var/distance = get_dist(woyer, target_atom) + var/distance = get_dist(xeno, affected_atom) if (distance > 2) return - var/mob/living/carbon/carbone = target_atom + var/mob/living/carbon/carbon = affected_atom - if (!woyer.Adjacent(carbone)) + if (!xeno.Adjacent(carbon)) return - if(carbone.stat == DEAD) return - if(HAS_TRAIT(carbone, TRAIT_NESTED)) return - - var/obj/limb/target_limb = carbone.get_limb(check_zone(woyer.zone_selected)) + if(carbon.stat == DEAD) + return + if(HAS_TRAIT(carbon, TRAIT_NESTED)) + return - if (ishuman(carbone) && (!target_limb || (target_limb.status & LIMB_DESTROYED))) - target_limb = carbone.get_limb("chest") + var/obj/limb/target_limb = carbon.get_limb(check_zone(xeno.zone_selected)) + if (ishuman(carbon) && (!target_limb || (target_limb.status & LIMB_DESTROYED))) + target_limb = carbon.get_limb("chest") if (!check_and_use_plasma_owner()) return - carbone.last_damage_data = create_cause_data(initial(woyer.caste_type), woyer) + carbon.last_damage_data = create_cause_data(initial(xeno.caste_type), xeno) - woyer.visible_message(SPAN_XENOWARNING("\The [woyer] hits [carbone] in the [target_limb? target_limb.display_name : "chest"] with a devastatingly powerful punch!"), \ - SPAN_XENOWARNING("You hit [carbone] in the [target_limb? target_limb.display_name : "chest"] with a devastatingly powerful punch!")) - var/S = pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg') - playsound(carbone,S, 50, 1) - do_base_warrior_punch(carbone, target_limb) + xeno.visible_message(SPAN_XENOWARNING("[xeno] hits [carbon] in the [target_limb ? target_limb.display_name : "chest"] with a devastatingly powerful punch!"), \ + SPAN_XENOWARNING("We hit [carbon] in the [target_limb ? target_limb.display_name : "chest"] with a devastatingly powerful punch!")) + var/sound = pick('sound/weapons/punch1.ogg','sound/weapons/punch2.ogg','sound/weapons/punch3.ogg','sound/weapons/punch4.ogg') + playsound(carbon, sound, 50, 1) + do_base_warrior_punch(carbon, target_limb) apply_cooldown() return ..() -/datum/action/xeno_action/activable/warrior_punch/proc/do_base_warrior_punch(mob/living/carbon/carbone, obj/limb/target_limb) - var/mob/living/carbon/xenomorph/woyer = owner +/datum/action/xeno_action/activable/warrior_punch/proc/do_base_warrior_punch(mob/living/carbon/carbon, obj/limb/target_limb) + var/mob/living/carbon/xenomorph/xeno = owner var/damage = rand(base_damage, base_damage + damage_variance) - if(ishuman(carbone)) + if(ishuman(carbon)) if((target_limb.status & LIMB_SPLINTED) && !(target_limb.status & LIMB_SPLINTED_INDESTRUCTIBLE)) //If they have it splinted, the splint won't hold. target_limb.status &= ~LIMB_SPLINTED - playsound(get_turf(carbone), 'sound/items/splintbreaks.ogg', 20) - to_chat(carbone, SPAN_DANGER("The splint on your [target_limb.display_name] comes apart!")) - carbone.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED) + playsound(get_turf(carbon), 'sound/items/splintbreaks.ogg', 20) + to_chat(carbon, SPAN_DANGER("The splint on your [target_limb.display_name] comes apart!")) + carbon.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED) + + if(ishuman_strict(carbon)) + carbon.apply_effect(3, SLOW) - if(ishuman_strict(carbone)) - carbone.apply_effect(3, SLOW) - if(isyautja(carbone)) + if(isyautja(carbon)) damage = rand(base_punch_damage_pred, base_punch_damage_pred + damage_variance) else if(target_limb.status & (LIMB_ROBOT|LIMB_SYNTHSKIN)) damage = rand(base_punch_damage_synth, base_punch_damage_synth + damage_variance) - carbone.apply_armoured_damage(get_xeno_damage_slash(carbone, damage), ARMOR_MELEE, BRUTE, target_limb? target_limb.name : "chest") + carbon.apply_armoured_damage(get_xeno_damage_slash(carbon, damage), ARMOR_MELEE, BRUTE, target_limb ? target_limb.name : "chest") // Hmm today I will kill a marine while looking away from them - woyer.face_atom(carbone) - woyer.animation_attack_on(carbone) - woyer.flick_attack_overlay(carbone, "punch") - shake_camera(carbone, 2, 1) - step_away(carbone, woyer, 2) + xeno.face_atom(carbon) + xeno.animation_attack_on(carbon) + xeno.flick_attack_overlay(carbon, "punch") + shake_camera(carbon, 2, 1) + step_away(carbon, xeno, 2) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm index d54b964b14..e7e32c46e2 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/xeno_action.dm @@ -57,6 +57,7 @@ // Any strain or caste-specific state should be stored on behavior_delegate objects // which use_ability invocations can modify using typechecks and typecasts where appropriate. /datum/action/xeno_action/proc/use_ability(atom/target) + SHOULD_CALL_PARENT(TRUE) if(!owner) return FALSE track_xeno_ability_stats() @@ -74,8 +75,8 @@ if(!owner) return var/mob/living/carbon/xenomorph/X = owner - if (ability_name && round_statistics) - round_statistics.track_ability_usage(ability_name) + if (ability_name && GLOB.round_statistics) + GLOB.round_statistics.track_ability_usage(ability_name) X.track_ability_usage(ability_name, X.caste_type) /datum/action/xeno_action/can_use_action() @@ -161,10 +162,17 @@ /// A wrapper for use_ability that sends a signal /datum/action/xeno_action/proc/use_ability_wrapper(...) // TODO: make hidden a part of can_use_action - if(!hidden && can_use_action() && use_ability(arglist(args))) + if(!can_use_action()) + SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner) + return FALSE + + SEND_SIGNAL(src, COMSIG_XENO_PRE_ACTION_USED, owner) + + if(!hidden && use_ability(arglist(args))) SEND_SIGNAL(src, COMSIG_XENO_ACTION_USED, owner) return TRUE + SEND_SIGNAL(src, COMSIG_XENO_FAILED_ACTION_USED, owner) return FALSE // For actions that do something on each life tick @@ -182,6 +190,7 @@ // For non-activable Xeno actions, this is used to // actually DO the action. /datum/action/xeno_action/activable/action_activate() + . = ..() if(!owner) return if(hidden) @@ -233,6 +242,7 @@ no_cooldown_msg = TRUE /datum/action/xeno_action/onclick/action_activate() + . = ..() use_ability_wrapper(null) // Adds a cooldown to this @@ -250,7 +260,7 @@ /* Debug log disabled due to our historical inability at doing anything meaningful about it And to make room for ones that matter more in regard to our ability to fix. - The whole of ability code is fucked up, the 'SHOULD NEVER BE OVERRIDEN' note above is + The whole of ability code is fucked up, the 'SHOULD NEVER BE OVERRIDDEN' note above is completely ignored as about 20 procs override it ALREADY... This is broken beyond repair and should just be reimplemented log_debug("Xeno action [src] tried to go on cooldown while already on cooldown.") @@ -263,7 +273,7 @@ if(!cooldown_to_apply) return - cooldown_to_apply = cooldown_to_apply * (1 - Clamp(X.cooldown_reduction_percentage, 0, 0.5)) + cooldown_to_apply = cooldown_to_apply * (1 - clamp(X.cooldown_reduction_percentage, 0, 0.5)) // Add a unique timer cooldown_timer_id = addtimer(CALLBACK(src, PROC_REF(on_cooldown_end)), cooldown_to_apply, TIMER_UNIQUE|TIMER_STOPPABLE) @@ -285,7 +295,7 @@ var/mob/living/carbon/xenomorph/X = owner // Note: no check to see if we're already on CD. we just flat override whatever's there - cooldown_duration = cooldown_duration * (1 - Clamp(X.cooldown_reduction_percentage, 0, 0.5)) + cooldown_duration = cooldown_duration * (1 - clamp(X.cooldown_reduction_percentage, 0, 0.5)) cooldown_timer_id = addtimer(CALLBACK(src, PROC_REF(on_cooldown_end)), cooldown_duration, TIMER_OVERRIDE|TIMER_UNIQUE|TIMER_STOPPABLE) current_cooldown_duration = cooldown_duration current_cooldown_start_time = world.time @@ -375,11 +385,11 @@ if(cooldown_message) to_chat(owner, SPAN_XENODANGER("[cooldown_message]")) else - to_chat(owner, SPAN_XENODANGER("You feel your strength return! You can use [name] again!")) + to_chat(owner, SPAN_XENODANGER("We feel our strength return! We can use [name] again!")) /datum/action/xeno_action/proc/start_charging_ability() charge_timer_id = addtimer(CALLBACK(src, PROC_REF(finish_charging_ability)), charge_time, TIMER_UNIQUE|TIMER_STOPPABLE) - to_chat(owner, SPAN_XENOWARNING("You start charging up your [name]!")) + to_chat(owner, SPAN_XENOWARNING("We start charging up our [name]!")) /datum/action/xeno_action/proc/finish_charging_ability() charge_timer_id = TIMER_ID_NULL @@ -394,24 +404,13 @@ deltimer(charge_timer_id) charge_timer_id = TIMER_ID_NULL -// Helper proc to get an action on a target Xeno by type. -// Used to interact with abilities from the outside -/proc/get_xeno_action_by_type(mob/living/carbon/xenomorph/X, typepath) - if (!istype(X)) - CRASH("xeno_action.dm: get_xeno_action_by_type invoked with non-xeno first argument.") - - for (var/datum/action/xeno_action/XA in X.actions) - if (istype(XA, typepath)) - return XA - return null - // Helper proc to check if there is anything blocking the way from mob M to the atom A // Max distance can be supplied to check some of the way instead of the whole way. /proc/check_clear_path_to_target(mob/M, atom/A, smash_windows = TRUE, max_distance = 1000) if(A.z != M.z) return FALSE - var/list/turf/path = getline2(M, A, include_from_atom = FALSE) + var/list/turf/path = get_line(M, A, include_start_atom = FALSE) var/distance = 0 for(var/turf/T in path) if(distance >= max_distance) @@ -452,6 +451,7 @@ return FALSE /datum/action/xeno_action/active_toggle/action_activate() + . = ..() toggle_toggle() /datum/action/xeno_action/active_toggle/life_tick() diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm index 4eaff010c2..ef7cae6e23 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm @@ -139,7 +139,7 @@ if(istype(touching_turf, /turf/closed/shuttle)) continue - if(get_dir(potential_nest, touching_turf) in diagonals) + if(get_dir(potential_nest, touching_turf) in GLOB.diagonals) continue potential_weeded_wall = touching_turf diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm index cc330966f2..5d2d4a1d90 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm @@ -24,7 +24,7 @@ return if(get_dist(home_turf, idle_xeno) <= 0) - var/datum/action/xeno_action/onclick/plant_weeds/plant_weed_action = get_xeno_action_by_type(parent, /datum/action/xeno_action/onclick/plant_weeds) + var/datum/action/xeno_action/onclick/plant_weeds/plant_weed_action = get_action(parent, /datum/action/xeno_action/onclick/plant_weeds) INVOKE_ASYNC(plant_weed_action, TYPE_PROC_REF(/datum/action/xeno_action/onclick/plant_weeds, use_ability_wrapper)) home_turf = null return diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm index 3f2e46f5d0..cc78d5f6a2 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/lurking.dm @@ -26,7 +26,7 @@ . = ..() RegisterSignal(parent, COMSIG_XENO_HANDLE_AI_SHOT, PROC_REF(stop_lurking)) - RegisterSignal(parent, COMSIG_XENO_HANDLE_CRIT, PROC_REF(stop_lurking)) + RegisterSignal(parent, COMSIG_XENO_ENTER_CRIT, PROC_REF(stop_lurking)) RegisterSignal(parent, COMSIG_XENO_USED_POUNCE, PROC_REF(stop_lurking)) addtimer(CALLBACK(src, PROC_REF(check_annoyance)), AI_CHECK_ANNOYANCE_COOLDOWN, TIMER_UNIQUE|TIMER_LOOP|TIMER_DELETE_ME) @@ -92,7 +92,7 @@ break for(var/turf/closed/touching_turf in orange(1, potential_home)) - if(get_dir(potential_home, touching_turf) in diagonals) + if(get_dir(potential_home, touching_turf) in GLOB.diagonals) continue preferred = TRUE @@ -243,7 +243,7 @@ RegisterSignal(parent, COMSIG_MOVABLE_MOVED, PROC_REF(lurking_parent_moved)) - var/datum/action/xeno_action/activable/pounce/lurker/LPA = get_xeno_action_by_type(lurking_xeno, /datum/action/xeno_action/activable/pounce/lurker) + var/datum/action/xeno_action/activable/pounce/lurker/LPA = get_action(lurking_xeno, /datum/action/xeno_action/activable/pounce/lurker) if(LPA && istype(LPA)) LPA.knockdown = TRUE LPA.freeze_self = TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm index 7ccd4cde55..e87de58155 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm @@ -311,7 +311,7 @@ SSxeno_ai.remove_ai(src) /mob/living/carbon/xenomorph/proc/get_multitile_turfs_to_check() - var/angle = get_angle(current_target, src) + var/angle = Get_Angle(current_target, src) var/turf/base_turf = current_target.locs[1] switch(angle) diff --git a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm index acdf30b09e..6e7dea372a 100644 --- a/code/modules/mob/living/carbon/xenomorph/attack_alien.dm +++ b/code/modules/mob/living/carbon/xenomorph/attack_alien.dm @@ -7,92 +7,92 @@ * In that case, the first argument is always the attacker. For attack_alien, it should always be Xenomorph sub-types */ - -/mob/living/carbon/human/attack_alien(mob/living/carbon/xenomorph/M, dam_bonus) - if(M.fortify || HAS_TRAIT(M, TRAIT_ABILITY_BURROWED)) +// this proc could use refactoring at some point +/mob/living/carbon/human/attack_alien(mob/living/carbon/xenomorph/attacking_xeno, dam_bonus) + if(attacking_xeno.fortify || HAS_TRAIT(attacking_xeno, TRAIT_ABILITY_BURROWED)) return XENO_NO_DELAY_ACTION - var/intent = M.a_intent + var/intent = attacking_xeno.a_intent - if(M.behavior_delegate) - intent = M.behavior_delegate.override_intent(src) + if(attacking_xeno.behavior_delegate) + intent = attacking_xeno.behavior_delegate.override_intent(src) //Reviewing the four primary intents switch(intent) if(INTENT_HELP) if(on_fire) - extinguish_mob(M) + extinguish_mob(attacking_xeno) else - M.visible_message(SPAN_NOTICE("[M] caresses [src] with its claws."), \ - SPAN_NOTICE("You caress [src] with your claws."), null, 5, CHAT_TYPE_XENO_FLUFF) + attacking_xeno.visible_message(SPAN_NOTICE("[attacking_xeno] caresses [src] with its claws."), \ + SPAN_NOTICE("We caress [src] with our claws."), null, 5, CHAT_TYPE_XENO_FLUFF) if(INTENT_GRAB) - if(M == src || anchored || buckled) + if(attacking_xeno == src || anchored || buckled) return XENO_NO_DELAY_ACTION - if(check_shields(0, M.name)) // Blocking check - M.visible_message(SPAN_DANGER("[M]'s grab is blocked by [src]'s shield!"), \ - SPAN_DANGER("Your grab was blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) + if(check_shields(0, attacking_xeno.name)) // Blocking check + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s grab is blocked by [src]'s shield!"), \ + SPAN_DANGER("Our grab was blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback return XENO_ATTACK_ACTION - if(Adjacent(M)) //Logic! - M.start_pulling(src) + if(Adjacent(attacking_xeno)) //Logic! + attacking_xeno.start_pulling(src) if(INTENT_HARM) - if(M.can_not_harm(src)) - M.animation_attack_on(src) - M.visible_message(SPAN_NOTICE("[M] nibbles [src]"), \ - SPAN_XENONOTICE("You nibble [src]")) + if(attacking_xeno.can_not_harm(src)) + attacking_xeno.animation_attack_on(src) + attacking_xeno.visible_message(SPAN_NOTICE("[attacking_xeno] nibbles [src]"), \ + SPAN_XENONOTICE("We nibble [src]")) return XENO_ATTACK_ACTION - if(M.behavior_delegate && M.behavior_delegate.handle_slash(src)) + if(attacking_xeno.behavior_delegate && attacking_xeno.behavior_delegate.handle_slash(src)) return XENO_NO_DELAY_ACTION if(stat == DEAD) - to_chat(M, SPAN_WARNING("[src] is dead, why would you want to touch it?")) + to_chat(attacking_xeno, SPAN_WARNING("[src] is dead, why would we want to touch it?")) return XENO_NO_DELAY_ACTION - if(M.caste && !M.caste.is_intelligent) + if(attacking_xeno.caste && !attacking_xeno.caste.is_intelligent) if(HAS_TRAIT(src, TRAIT_NESTED) && (status_flags & XENO_HOST)) for(var/obj/item/alien_embryo/embryo in src) - if(HIVE_ALLIED_TO_HIVE(M.hivenumber, embryo.hivenumber)) - to_chat(M, SPAN_WARNING("You should not harm this host! It has a sister inside.")) + if(HIVE_ALLIED_TO_HIVE(attacking_xeno.hivenumber, embryo.hivenumber)) + to_chat(attacking_xeno, SPAN_WARNING("We should not harm this host! It has a sister inside.")) return XENO_NO_DELAY_ACTION - if(check_shields(0, M.name)) // Blocking check - M.visible_message(SPAN_DANGER("[M]'s slash is blocked by [src]'s shield!"), \ - SPAN_DANGER("Your slash is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) + if(check_shields(0, attacking_xeno.name)) // Blocking check + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s slash is blocked by [src]'s shield!"), \ + SPAN_DANGER("Our slash is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback return XENO_ATTACK_ACTION //From this point, we are certain a full attack will go out. Calculate damage and modifiers - M.track_slashes(M.caste_type) //Adds to slash stat. - var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) + dam_bonus + attacking_xeno.track_slashes(attacking_xeno.caste_type) //Adds to slash stat. + var/damage = rand(attacking_xeno.melee_damage_lower, attacking_xeno.melee_damage_upper) + dam_bonus var/acid_damage = 0 - if(M.burn_damage_lower) - acid_damage = rand(M.burn_damage_lower, M.burn_damage_upper) + if(attacking_xeno.burn_damage_lower) + acid_damage = rand(attacking_xeno.burn_damage_lower, attacking_xeno.burn_damage_upper) //Frenzy auras stack in a way, then the raw value is multipled by two to get the additive modifier - if(M.frenzy_aura > 0) - damage += (M.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER) + if(attacking_xeno.frenzy_aura > 0) + damage += (attacking_xeno.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER) if(acid_damage) - acid_damage += (M.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER) + acid_damage += (attacking_xeno.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER) - M.animation_attack_on(src) + attacking_xeno.animation_attack_on(src) //Somehow we will deal no damage on this attack if(!damage) - playsound(M.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) - M.animation_attack_on(src) - M.visible_message(SPAN_DANGER("[M] lunges at [src]!"), \ - SPAN_DANGER("You lunge at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + playsound(attacking_xeno.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) + attacking_xeno.animation_attack_on(src) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] lunges at [src]!"), \ + SPAN_DANGER("We lunge at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION - M.flick_attack_overlay(src, "slash") + attacking_xeno.flick_attack_overlay(src, "slash") var/obj/limb/affecting - affecting = get_limb(M.mob_flags & AI_CONTROLLED ? rand_zone() : rand_zone(M.zone_selected, 70)) + affecting = get_limb(attacking_xeno.mob_flags & AI_CONTROLLED ? rand_zone() : rand_zone(attacking_xeno.zone_selected, 70)) if(!affecting) //No organ, just get a random one affecting = get_limb(rand_zone(null, 0)) if(!affecting) //Still nothing?? @@ -100,18 +100,18 @@ var/armor_block = getarmor(affecting, ARMOR_MELEE) - if(wear_mask && check_zone(M.zone_selected) == "head") + if(wear_mask && check_zone(attacking_xeno.zone_selected) == "head") if(istype(wear_mask, /obj/item/clothing/mask/gas/yautja)) var/knock_chance = 1 - if(M.frenzy_aura > 0) - knock_chance += 2 * M.frenzy_aura - if(M.caste && M.caste.is_intelligent) + if(attacking_xeno.frenzy_aura > 0) + knock_chance += 2 * attacking_xeno.frenzy_aura + if(attacking_xeno.caste && attacking_xeno.caste.is_intelligent) knock_chance += 2 - knock_chance += min(round(damage * 0.25), 10) //Maximum of 15% chance. + knock_chance += min(floor(damage * 0.25), 10) //Maximum of 15% chance. if(prob(knock_chance)) playsound(loc, "alien_claw_metal", 25, 1) - M.visible_message(SPAN_DANGER("The [M] smashes off [src]'s [wear_mask.name]!"), \ - SPAN_DANGER("You smash off [src]'s [wear_mask.name]!"), null, 5) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] smashes off [src]'s [wear_mask.name]!"), \ + SPAN_DANGER("We smash off [src]'s [wear_mask.name]!"), null, 5) drop_inv_item_on_ground(wear_mask) if(isyautja(src)) emote("roar") @@ -121,42 +121,39 @@ var/n_damage = armor_damage_reduction(GLOB.marine_melee, damage, armor_block) - if(M.behavior_delegate) - n_damage = M.behavior_delegate.melee_attack_modify_damage(n_damage, src) - - if(M.behavior_delegate) - var/datum/behavior_delegate/MD = M.behavior_delegate - MD.melee_attack_additional_effects_target(src) - MD.melee_attack_additional_effects_self() + if(attacking_xeno.behavior_delegate) + n_damage = attacking_xeno.behavior_delegate.melee_attack_modify_damage(n_damage, src) + attacking_xeno.behavior_delegate.melee_attack_additional_effects_target(src) + attacking_xeno.behavior_delegate.melee_attack_additional_effects_self() - var/slash_noise = M.slash_sound + var/slash_noise = attacking_xeno.slash_sound var/list/slashdata = list("n_damage" = n_damage, "slash_noise" = slash_noise) - SEND_SIGNAL(src, COMSIG_HUMAN_XENO_ATTACK, slashdata, M) + SEND_SIGNAL(src, COMSIG_HUMAN_XENO_ATTACK, slashdata, attacking_xeno) var/f_damage = slashdata["n_damage"] slash_noise = slashdata["slash_noise"] //The normal attack proceeds playsound(loc, slash_noise, 25, TRUE) - M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, null, CHAT_TYPE_XENO_COMBAT) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] [attacking_xeno.slashes_verb] [src]!"), \ + SPAN_DANGER("We [attacking_xeno.slash_verb] [src]!"), null, null, CHAT_TYPE_XENO_COMBAT) - handle_blood_splatter(get_dir(M.loc, src.loc)) + handle_blood_splatter(get_dir(attacking_xeno.loc, src.loc)) - last_damage_data = create_cause_data(initial(M.name), M) + last_damage_data = create_cause_data(initial(attacking_xeno.name), attacking_xeno) //Logging, including anti-rulebreak logging if(status_flags & XENO_HOST && stat != DEAD) if(HAS_TRAIT(src, TRAIT_NESTED)) //Host was buckled to nest while infected, this is a rule break - attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)] while they were infected and nested") - M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)] while they were infected and nested") - message_admins("[key_name(M)] [M.slash_verb]ed [key_name(src)] while they were infected and nested.") //This is a blatant rulebreak, so warn the admins + attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)] while they were infected and nested") + attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected and nested") + message_admins("[key_name(attacking_xeno)] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected and nested.") //This is a blatant rulebreak, so warn the admins else //Host might be rogue, needs further investigation - attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)] while they were infected") - M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)] while they were infected") + attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)] while they were infected") + attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)] while they were infected") else //Normal xenomorph friendship with benefits - attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)]") - M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)]") - log_attack("[key_name(M)] [M.slash_verb]ed [key_name(src)]") + attack_log += text("\[[time_stamp()]\] was [attacking_xeno.slash_verb]ed by [key_name(attacking_xeno)]") + attacking_xeno.attack_log += text("\[[time_stamp()]\] [attacking_xeno.slash_verb]ed [key_name(src)]") + log_attack("[key_name(attacking_xeno)] [attacking_xeno.slash_verb]ed [key_name(src)]") //nice messages so people know that armor works if(f_damage <= 0.34*damage) @@ -176,23 +173,22 @@ to_chat(src, SPAN_WARNING("Your armor softens the acid!")) apply_damage(n_acid_damage, BURN, affecting) //Burn damage - SEND_SIGNAL(M, COMSIG_HUMAN_ALIEN_ATTACK, src) + SEND_SIGNAL(attacking_xeno, COMSIG_HUMAN_ALIEN_ATTACK, src) updatehealth() if(INTENT_DISARM) - - if(M.legcuffed && isyautja(src)) - to_chat(M, SPAN_XENODANGER("You don't have the dexterity to tackle the headhunter with that thing on your leg!")) + if(attacking_xeno.legcuffed && isyautja(src)) + to_chat(attacking_xeno, SPAN_XENODANGER("We don't have the dexterity to tackle the headhunter with that thing on our leg!")) return XENO_NO_DELAY_ACTION - M.animation_attack_on(src) - if(check_shields(0, M.name)) // Blocking check - M.visible_message(SPAN_DANGER("[M]'s tackle is blocked by [src]'s shield!"), \ - SPAN_DANGER("Your tackle is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) + attacking_xeno.animation_attack_on(src) + if(check_shields(0, attacking_xeno.name)) // Blocking check + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno]'s tackle is blocked by [src]'s shield!"), \ + SPAN_DANGER("We tackle is blocked by [src]'s shield!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/weapons/alien_claw_block.ogg', 25, 1) //Feedback return XENO_ATTACK_ACTION - M.flick_attack_overlay(src, "disarm") + attacking_xeno.flick_attack_overlay(src, "disarm") var/tackle_mult = 1 var/tackle_min_offset = 0 @@ -202,21 +198,29 @@ tackle_min_offset += 2 tackle_max_offset += 2 - if(M.attempt_tackle(src, tackle_mult, tackle_min_offset, tackle_max_offset)) + var/knocked_down + if(attacking_xeno.attempt_tackle(src, tackle_mult, tackle_min_offset, tackle_max_offset)) playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1) - var/strength = rand(M.tacklestrength_min, M.tacklestrength_max) + var/strength = rand(attacking_xeno.tacklestrength_min, attacking_xeno.tacklestrength_max) Stun(strength) KnockDown(strength) // Purely for knockdown visuals. All the heavy lifting is done by Stun - M.visible_message(SPAN_DANGER("[M] tackles down [src]!"), \ - SPAN_DANGER("You tackle down [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tackles down [src]!"), \ + SPAN_DANGER("We tackle down [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SEND_SIGNAL(src, COMSIG_MOB_TACKLED_DOWN, attacking_xeno) + knocked_down = TRUE else playsound(loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) if (body_position == LYING_DOWN) - M.visible_message(SPAN_DANGER("[M] tries to tackle [src], but they are already down!"), \ - SPAN_DANGER("You try to tackle [src], but they are already down!"), null, 5, CHAT_TYPE_XENO_COMBAT) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tries to tackle [src], but they are already down!"), \ + SPAN_DANGER("We try to tackle [src], but they are already down!"), null, 5, CHAT_TYPE_XENO_COMBAT) else - M.visible_message(SPAN_DANGER("[M] tries to tackle [src]"), \ - SPAN_DANGER("You try to tackle [src]"), null, 5, CHAT_TYPE_XENO_COMBAT) + attacking_xeno.visible_message(SPAN_DANGER("[attacking_xeno] tries to tackle [src]"), \ + SPAN_DANGER("We try to tackle [src]"), null, 5, CHAT_TYPE_XENO_COMBAT) + knocked_down = FALSE + + attacking_xeno.attack_log += "\[[time_stamp()]\] [knocked_down ? "S" : "Uns"]uccessfully tackled [key_name(src)]" + attack_log += "\[[time_stamp()]\] Has been [knocked_down ? "" : "un"]successfully tackled by [key_name(attacking_xeno)]" + log_attack("[key_name(attacking_xeno)] [knocked_down ? "" : "un"]successfully tackled [key_name(src)] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).") return XENO_ATTACK_ACTION @@ -228,7 +232,7 @@ switch(M.a_intent) if(INTENT_HELP) M.visible_message(SPAN_NOTICE("[M] caresses [src] with its claws."), \ - SPAN_NOTICE("You caress [src] with your claws."), null, 5, CHAT_TYPE_XENO_FLUFF) + SPAN_NOTICE("We caress [src] with our claws."), null, 5, CHAT_TYPE_XENO_FLUFF) if(INTENT_GRAB) if(M == src || anchored || buckled) @@ -242,7 +246,7 @@ var/mob/living/carbon/xenomorph/X = src if(!X.banished) M.visible_message(SPAN_WARNING("[M] nibbles [src]."), \ - SPAN_WARNING("You nibble [src]."), null, 5, CHAT_TYPE_XENO_FLUFF) + SPAN_WARNING("We nibble [src]."), null, 5, CHAT_TYPE_XENO_FLUFF) return XENO_ATTACK_ACTION // copypasted from attack_alien.dm @@ -254,17 +258,19 @@ if(M.frenzy_aura > 0) damage += (M.frenzy_aura * FRENZY_DAMAGE_MULTIPLIER) + M.animation_attack_on(src) //Somehow we will deal no damage on this attack if(!damage) playsound(M.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) - M.animation_attack_on(src) + M.visible_message(SPAN_DANGER("[M] lunges at [src]!"), \ - SPAN_DANGER("You lunge at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We lunge at [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION + handle_blood_splatter(get_dir(M.loc, loc)) last_damage_data = create_cause_data(initial(M.name), M) M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) attack_log += text("\[[time_stamp()]\] was [M.slash_verb]ed by [key_name(M)]") M.attack_log += text("\[[time_stamp()]\] [M.slash_verb]ed [key_name(src)]") log_attack("[key_name(M)] [M.slash_verb]ed [key_name(src)]") @@ -279,14 +285,15 @@ playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1) M.visible_message(SPAN_WARNING("[M] shoves [src]!"), \ - SPAN_WARNING("You shove [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We shove [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(ismonkey(src)) apply_effect(8, WEAKEN) return XENO_ATTACK_ACTION /mob/living/attack_larva(mob/living/carbon/xenomorph/larva/M) M.visible_message(SPAN_DANGER("[M] nudges its head against [src]."), \ - SPAN_DANGER("You nudge your head against [src]."), null, 5, CHAT_TYPE_XENO_FLUFF) + SPAN_DANGER("We nudge our head against [src]."), null, 5, CHAT_TYPE_XENO_FLUFF) + M.animation_attack_on(src) /mob/living/proc/is_xeno_grabbable() if(stat == DEAD) @@ -308,8 +315,11 @@ return FALSE // leave the dead alone //This proc is here to prevent Xenomorphs from picking up objects (default attack_hand behaviour) -//Note that this is overriden by every proc concerning a child of obj unless inherited -/obj/item/attack_alien(mob/living/carbon/xenomorph/M) +//Note that this is overridden by every proc concerning a child of obj unless inherited +/obj/item/attack_alien(mob/living/carbon/xenomorph/xeno) + if(HAS_TRAIT(xeno, TRAIT_OPPOSABLE_THUMBS)) + attack_hand(xeno) + return XENO_NONCOMBAT_ACTION return /obj/attack_larva(mob/living/carbon/xenomorph/larva/M) @@ -326,11 +336,11 @@ health -= rand(M.melee_damage_lower, M.melee_damage_upper) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) deconstruct(FALSE) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION //Breaking barricades @@ -341,13 +351,13 @@ playsound(src, barricade_hitsound, 25, 1) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(is_wired) M.visible_message(SPAN_DANGER("The barbed wire slices into [M]!"), - SPAN_DANGER("The barbed wire slices into you!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("The barbed wire slices into us!"), null, 5, CHAT_TYPE_XENO_COMBAT) M.apply_damage(10) return XENO_ATTACK_ACTION @@ -356,11 +366,11 @@ if(barricade_hitsound) playsound(src, barricade_hitsound, 25, 1) if(health <= 0) - xeno.visible_message(SPAN_DANGER("[xeno] stabs \the [src] apart!"), SPAN_DANGER("You stab \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + xeno.visible_message(SPAN_DANGER("[xeno] stabs \the [src] apart!"), SPAN_DANGER("We stab \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) else - xeno.visible_message(SPAN_DANGER("[xeno] stabs \the [src] with its razor sharp tail!"), SPAN_DANGER("You stab \the [src] with your razor sharp tail!"), null, 5, CHAT_TYPE_XENO_COMBAT) + xeno.visible_message(SPAN_DANGER("[xeno] stabs \the [src] with its razor sharp tail!"), SPAN_DANGER("We stab \the [src] with our razor sharp tail!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(is_wired) - xeno.visible_message(SPAN_DANGER("The barbed wire slices into \the [xeno]'s tail!"), SPAN_DANGER("The barbed wire slices into your tail!"), null, 5, CHAT_TYPE_XENO_COMBAT) + xeno.visible_message(SPAN_DANGER("The barbed wire slices into \the [xeno]'s tail!"), SPAN_DANGER("The barbed wire slices into our tail!"), null, 5, CHAT_TYPE_XENO_COMBAT) xeno.apply_damage(5) return TAILSTAB_COOLDOWN_NORMAL @@ -368,7 +378,7 @@ M.animation_attack_on(src) playsound(src, 'sound/effects/metalhit.ogg', 25, 1) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) deconstruct(FALSE) return XENO_ATTACK_ACTION @@ -376,10 +386,16 @@ //If we sent it to monkey we'd get some weird shit happening. /obj/structure/attack_alien(mob/living/carbon/xenomorph/M) // fuck off dont destroy my unslashables - if(unslashable || health <= 0) - to_chat(M, SPAN_WARNING("You stare at \the [src] cluelessly.")) + if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS)) + to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION +/obj/structure/magazine_box/attack_alien(mob/living/carbon/xenomorph/xeno) + if(HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS)) + attack_hand(xeno) + return XENO_NONCOMBAT_ACTION + else + . = ..() //Beds, nests and chairs - unbuckling /obj/structure/bed/attack_alien(mob/living/carbon/xenomorph/M) @@ -389,7 +405,7 @@ M.animation_attack_on(src) playsound(src, hit_bed_sound, 25, 1) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) unbuckle() deconstruct(FALSE) return XENO_ATTACK_ACTION @@ -414,7 +430,7 @@ return FALSE M.animation_attack_on(src) M.visible_message(SPAN_DANGER("[M] smashes [src]!"), \ - SPAN_DANGER("You smash [src]!"), null, 5) + SPAN_DANGER("We smash [src]!"), null, 5) broken() //Smashola! return XENO_ATTACK_ACTION @@ -423,7 +439,7 @@ if(M.a_intent == INTENT_HELP) playsound(loc, 'sound/effects/glassknock.ogg', 25, 1) M.visible_message(SPAN_WARNING("[M] creepily taps on [src] with its huge claw."), \ - SPAN_WARNING("You creepily tap on [src]."), \ + SPAN_WARNING("We creepily tap on [src]."), \ SPAN_WARNING("You hear a glass tapping sound."), 5, CHAT_TYPE_XENO_COMBAT) else attack_generic(M, M.melee_damage_lower) @@ -435,10 +451,10 @@ health -= rand(15, 30) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, "alien_claw_metal", 25, 1) if(prob(10)) new /obj/effect/decal/cleanable/blood/oil(loc) @@ -449,7 +465,7 @@ /obj/structure/machinery/camera/attack_alien(mob/living/carbon/xenomorph/M) if(status) M.visible_message(SPAN_DANGER("[M] slices [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, "alien_claw_metal", 25, 1) wires = 0 //wires all cut light_disabled = 0 @@ -461,7 +477,7 @@ M.animation_attack_on(src) playsound(loc, 'sound/effects/Glasshit.ogg', 25, 1) M.visible_message(SPAN_DANGER("[M] smashes against [src]!"), \ - SPAN_DANGER("You smash against [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We smash against [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) var/damage = 25 if(M.mob_size >= MOB_SIZE_BIG) damage = 40 @@ -474,8 +490,8 @@ playsound(loc, 'sound/effects/grillehit.ogg', 25, 1) var/damage_dealt = 5 M.visible_message(SPAN_DANGER("[M] mangles [src]!"), \ - SPAN_DANGER("You mangle [src]!"), \ - SPAN_DANGER("You hear twisting metal!"), 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We mangle [src]!"), \ + SPAN_DANGER("We hear twisting metal!"), 5, CHAT_TYPE_XENO_COMBAT) if(shock(M, 70)) M.visible_message(SPAN_DANGER("ZAP! [M] spazzes wildly amongst a smell of burnt ozone."), \ @@ -490,10 +506,10 @@ //Slashing fences /obj/structure/fence/attack_alien(mob/living/carbon/xenomorph/M) M.animation_attack_on(src) - var/damage_dealt = 5 + var/damage_dealt = 25 M.visible_message(SPAN_DANGER("[M] mangles [src]!"), \ - SPAN_DANGER("You mangle [src]!"), \ - SPAN_DANGER("You hear twisting metal!"), 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We mangle [src]!"), \ + SPAN_DANGER("We hear twisting metal!"), 5, CHAT_TYPE_XENO_COMBAT) health -= damage_dealt healthcheck() @@ -508,11 +524,11 @@ if(M.a_intent == INTENT_HELP) M.visible_message(SPAN_WARNING("[M] ogles its own reflection in [src]."), \ - SPAN_WARNING("You ogle your own reflection in [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We ogle our own reflection in [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_NONCOMBAT_ACTION else M.visible_message(SPAN_DANGER("[M] smashes [src]!"), \ - SPAN_DANGER("You smash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We smash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) shatter() return XENO_ATTACK_ACTION @@ -570,7 +586,7 @@ playsound(loc, "alien_doorpry", 25, TRUE) M.visible_message(SPAN_WARNING("[M] digs into [src] and begins to pry it open."), \ - SPAN_WARNING("You dig into [src] and begin to pry it open."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We dig into [src] and begin to pry it open."), null, 5, CHAT_TYPE_XENO_COMBAT) xeno_attack_delay(M) if(do_after(M, delay, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) @@ -588,7 +604,7 @@ spawn(0) open(1) M.visible_message(SPAN_DANGER("[M] pries [src] open."), \ - SPAN_DANGER("You pry [src] open."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We pry [src] open."), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_NO_DELAY_ACTION /obj/structure/machinery/door/airlock/attack_larva(mob/living/carbon/xenomorph/larva/M) @@ -608,7 +624,7 @@ playsound(loc, 'sound/effects/metal_creaking.ogg', 25, 1) M.visible_message(SPAN_WARNING("[M] digs into [src] and begins to pry it open."), \ - SPAN_WARNING("You dig into [src] and begin to pry it open."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We dig into [src] and begin to pry it open."), null, 5, CHAT_TYPE_XENO_COMBAT) xeno_attack_delay(M) if(do_after(M, 30, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) @@ -621,7 +637,7 @@ spawn(0) open(1) M.visible_message(SPAN_DANGER("[M] pries [src] open."), \ - SPAN_DANGER("You pry [src] open."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We pry [src] open."), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_NO_DELAY_ACTION /obj/structure/mineral_door/resin/attack_larva(mob/living/carbon/xenomorph/larva/M) @@ -644,7 +660,7 @@ return else M.visible_message(SPAN_XENONOTICE("[M] claws [src]!"), \ - SPAN_XENONOTICE("You claw [src]."), null, null, CHAT_TYPE_XENO_COMBAT) + SPAN_XENONOTICE("We claw [src]."), null, null, CHAT_TYPE_XENO_COMBAT) playsound(loc, "alien_resin_break", 25) M.animation_attack_on(src) @@ -659,8 +675,8 @@ //Xenomorphs can't use machinery, not even the "intelligent" ones //Exception is Queen and shuttles, because plot power /obj/structure/machinery/attack_alien(mob/living/carbon/xenomorph/M) - if(unslashable || health <= 0) - to_chat(M, SPAN_WARNING("You stare at \the [src] cluelessly.")) + if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS)) + to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) @@ -668,18 +684,18 @@ update_health(rand(M.melee_damage_lower, M.melee_damage_upper) * M.melee_sentry_damage_multiplier) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices \the [src] apart!"), \ - SPAN_DANGER("You slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(!unacidable) qdel(src) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] \the [src]!"), \ - SPAN_DANGER("You [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION // Destroying reagent dispensers /obj/structure/reagent_dispensers/attack_alien(mob/living/carbon/xenomorph/M) - if(unslashable || health <= 0) - to_chat(M, SPAN_WARNING("You stare at \the [src] cluelessly.")) + if(unslashable || health <= 0 && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS)) + to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) @@ -687,18 +703,18 @@ update_health(rand(M.melee_damage_lower, M.melee_damage_upper)) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices \the [src] apart!"), \ - SPAN_DANGER("You slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(!unacidable) qdel(src) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] \the [src]!"), \ - SPAN_DANGER("You [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION // Destroying filing cabinets /obj/structure/filingcabinet/attack_alien(mob/living/carbon/xenomorph/M) if(unslashable || health <= 0) - to_chat(M, SPAN_WARNING("You stare at \the [src] cluelessly.")) + to_chat(M, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) @@ -706,18 +722,18 @@ update_health(rand(M.melee_damage_lower, M.melee_damage_upper)) if(health <= 0) M.visible_message(SPAN_DANGER("[M] slices \the [src] apart!"), \ - SPAN_DANGER("You slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(!unacidable) qdel(src) else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] \the [src]!"), \ - SPAN_DANGER("You [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION // Destroying morgues & crematoriums /obj/structure/morgue/attack_alien(mob/living/carbon/xenomorph/alien) if(unslashable) - to_chat(alien, SPAN_WARNING("You stare at \the [src] cluelessly.")) + to_chat(alien, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION var destroyloc = loc @@ -726,17 +742,17 @@ update_health(rand(alien.melee_damage_lower, alien.melee_damage_upper)) if(health <= 0) alien.visible_message(SPAN_DANGER("[alien] slices \the [src] apart!"), \ - SPAN_DANGER("You slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) new /obj/item/stack/sheet/metal(destroyloc, 2) else alien.visible_message(SPAN_DANGER("[alien] [alien.slashes_verb] \the [src]!"), \ - SPAN_DANGER("You [alien.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [alien.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION // Destroying hydroponics trays /obj/structure/machinery/portable_atmospherics/hydroponics/attack_alien(mob/living/carbon/xenomorph/alien) if(unslashable) - to_chat(alien, SPAN_WARNING("You stare at \the [src] cluelessly.")) + to_chat(alien, SPAN_WARNING("We stare at \the [src] cluelessly.")) return XENO_NO_DELAY_ACTION alien.animation_attack_on(src) @@ -744,18 +760,18 @@ update_health(rand(alien.melee_damage_lower, alien.melee_damage_upper)) if(health <= 0) alien.visible_message(SPAN_DANGER("[alien] slices \the [src] apart!"), \ - SPAN_DANGER("You slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice \the [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(!unacidable) qdel(src) else alien.visible_message(SPAN_DANGER("[alien] [alien.slashes_verb] \the [src]!"), \ - SPAN_DANGER("You [alien.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [alien.slash_verb] \the [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION /datum/shuttle/ferry/marine/proc/hijack(mob/living/carbon/xenomorph/M, shuttle_tag) if(!queen_locked) //we have not hijacked it yet if(world.time < SHUTTLE_LOCK_TIME_LOCK) - to_chat(M, SPAN_XENODANGER("You can't mobilize the strength to hijack the shuttle yet. Please wait another [time_left_until(SHUTTLE_LOCK_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) + to_chat(M, SPAN_XENODANGER("We can't mobilize the strength to hijack the shuttle yet. Please wait another [time_left_until(SHUTTLE_LOCK_TIME_LOCK, world.time, 1 MINUTES)] minutes before trying again.")) return var/message @@ -766,17 +782,17 @@ if(!GLOB.resin_lz_allowed) set_lz_resin_allowed(TRUE) - to_chat(M, SPAN_XENONOTICE("You interact with the machine and disable remote control.")) + to_chat(M, SPAN_XENONOTICE("We interact with the machine and disable remote control.")) xeno_message(SPAN_XENOANNOUNCE("[message]"),3,M.hivenumber) last_locked = world.time - if(almayer_orbital_cannon) - almayer_orbital_cannon.is_disabled = TRUE - addtimer(CALLBACK(almayer_orbital_cannon, .obj/structure/orbital_cannon/proc/enable), 10 MINUTES, TIMER_UNIQUE) + if(GLOB.almayer_orbital_cannon) + GLOB.almayer_orbital_cannon.is_disabled = TRUE + addtimer(CALLBACK(GLOB.almayer_orbital_cannon, TYPE_PROC_REF(/obj/structure/orbital_cannon, enable)), 10 MINUTES, TIMER_UNIQUE) queen_locked = 1 /datum/shuttle/ferry/marine/proc/door_override(mob/living/carbon/xenomorph/M, shuttle_tag) if(!door_override) - to_chat(M, SPAN_XENONOTICE("You override the doors.")) + to_chat(M, SPAN_XENONOTICE("We override the doors.")) xeno_message(SPAN_XENOANNOUNCE("The doors of the metal bird have been overridden! Rejoice!"),3,M.hivenumber) last_door_override = world.time door_override = 1 @@ -784,18 +800,20 @@ var/ship_id = "sh_dropship1" if(shuttle_tag == DROPSHIP_NORMANDY) ship_id = "sh_dropship2" + if(shuttle_tag == DROPSHIP_SAIPAN) + ship_id = "sh_dropship3" - for(var/obj/structure/machinery/door/airlock/dropship_hatch/D in machines) + for(var/obj/structure/machinery/door/airlock/dropship_hatch/D in GLOB.machines) if(D.id == ship_id) D.unlock() var/obj/structure/machinery/door/airlock/multi_tile/almayer/reardoor switch(ship_id) if("sh_dropship1") - for(var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1/D in machines) + for(var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1/D in GLOB.machines) reardoor = D if("sh_dropship2") - for(var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2/D in machines) + for(var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2/D in GLOB.machines) reardoor = D if(!reardoor) CRASH("Shuttle crashed trying to override invalid rear door with shuttle id [ship_id]") @@ -808,11 +826,11 @@ to_chat(M, SPAN_XENONOTICE("[src] is already broken!")) return XENO_NO_DELAY_ACTION else if(beenhit >= XENO_HITS_TO_CUT_WIRES && M.mob_size < MOB_SIZE_BIG) - to_chat(M, SPAN_XENONOTICE("You aren't big enough to further damage [src].")) + to_chat(M, SPAN_XENONOTICE("We aren't big enough to further damage [src].")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5) playsound(loc, "alien_claw_metal", 25, 1) if (beenhit >= XENO_HITS_TO_CUT_WIRES) set_broken() @@ -847,20 +865,16 @@ to_chat(M, "It's already damaged.") return XENO_NO_DELAY_ACTION M.animation_attack_on(src) - M.visible_message("[M] slashes away at [src]!","You slash and claw at the bright light!", max_distance = 5, message_flags = CHAT_TYPE_XENO_COMBAT) + M.visible_message("[M] slashes away at [src]!","We slash and claw at the bright light!", max_distance = 5, message_flags = CHAT_TYPE_XENO_COMBAT) health = max(health - rand(M.melee_damage_lower, M.melee_damage_upper), 0) if(!health) - playsound(src, "glassbreak", 70, 1) - damaged = TRUE - if(is_lit) - set_light(0) - update_icon() + set_damaged() else playsound(loc, 'sound/effects/Glasshit.ogg', 25, 1) return XENO_ATTACK_ACTION /obj/structure/machinery/colony_floodlight/attack_larva(mob/living/carbon/xenomorph/larva/M) - M.visible_message("[M] starts biting [src]!","In a rage, you start biting [src], but with no effect!", null, 5, CHAT_TYPE_XENO_COMBAT) + M.visible_message("[M] starts biting [src]!","In a rage, we start biting [src], but with no effect!", null, 5, CHAT_TYPE_XENO_COMBAT) @@ -871,12 +885,13 @@ if(M.a_intent == INTENT_HELP || !bleed_layer) return ..() - M.visible_message(SPAN_NOTICE("[M] starts clearing out \the [src]..."), SPAN_NOTICE("You start \the clearing out [src]..."), null, 5, CHAT_TYPE_XENO_COMBAT) + M.visible_message(SPAN_NOTICE("[M] starts clearing out \the [src]..."), SPAN_NOTICE("We start \the clearing out [src]..."), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(M.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) while(bleed_layer > 0) xeno_attack_delay(M) - if(!do_after(M, 12, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) + var/size = max(M.mob_size, 1) + if(!do_after(M, 12/size, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) return XENO_NO_DELAY_ACTION if(!bleed_layer) @@ -904,27 +919,27 @@ if(prob(difficulty)) break_open() M.visible_message(SPAN_DANGER("[M] smashes \the [src] open!"), \ - SPAN_DANGER("You smash \the [src] open!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We smash \the [src] open!"), null, 5, CHAT_TYPE_XENO_COMBAT) else take_damage(M.melee_damage_upper) M.visible_message(SPAN_DANGER("[M] smashes [src]!"), \ - SPAN_DANGER("You smash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We smash [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) return XENO_ATTACK_ACTION /obj/structure/girder/attack_alien(mob/living/carbon/xenomorph/M) - if((M.caste && M.caste.tier < 2 && !isqueen(M)) || unacidable) - to_chat(M, SPAN_WARNING("Your claws aren't sharp enough to damage [src].")) + if((M.caste && M.caste.tier < 2 && M.claw_type < CLAW_TYPE_VERY_SHARP) || unacidable) + to_chat(M, SPAN_WARNING("Our claws aren't sharp enough to damage [src].")) return XENO_NO_DELAY_ACTION M.animation_attack_on(src) - health -= round(rand(M.melee_damage_lower, M.melee_damage_upper) * 0.5) + health -= floor(rand(M.melee_damage_lower, M.melee_damage_upper) * 0.5) if(health <= 0) M.visible_message(SPAN_DANGER("[M] smashes [src] apart!"), \ - SPAN_DANGER("You slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We slice [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/effects/metalhit.ogg', 25, TRUE) dismantle() else M.visible_message(SPAN_DANGER("[M] smashes [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/effects/metalhit.ogg', 25, TRUE) return XENO_ATTACK_ACTION @@ -938,19 +953,19 @@ if(prob(M.melee_damage_lower)) playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) M.visible_message(SPAN_DANGER("[M] smashes [src] beyond recognition!"), \ - SPAN_DANGER("You enter a frenzy and smash [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We enter a frenzy and smash [src] apart!"), null, 5, CHAT_TYPE_XENO_COMBAT) malfunction() tip_over() else M.visible_message(SPAN_DANGER("[M] [M.slashes_verb] [src]!"), \ - SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) playsound(loc, 'sound/effects/metalhit.ogg', 25, 1) return XENO_ATTACK_ACTION if(M.action_busy) return XENO_NO_DELAY_ACTION M.visible_message(SPAN_WARNING("[M] begins to lean against [src]."), \ - SPAN_WARNING("You begin to lean against [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_WARNING("We begin to lean against [src]."), null, 5, CHAT_TYPE_XENO_COMBAT) var/shove_time = 100 if(M.mob_size >= MOB_SIZE_BIG) shove_time = 50 @@ -962,7 +977,7 @@ if(do_after(M, shove_time, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) M.animation_attack_on(src) M.visible_message(SPAN_DANGER("[M] knocks [src] down!"), \ - SPAN_DANGER("You knock [src] down!"), null, 5, CHAT_TYPE_XENO_COMBAT) + SPAN_DANGER("We knock [src] down!"), null, 5, CHAT_TYPE_XENO_COMBAT) tip_over() return XENO_NO_DELAY_ACTION @@ -992,7 +1007,7 @@ /obj/structure/prop/invuln/joey/attack_alien(mob/living/carbon/xenomorph/alien) alien.animation_attack_on(src) alien.visible_message(SPAN_DANGER("[alien] [alien.slashes_verb] [src]!"), \ - SPAN_DANGER("You [alien.slash_verb] [src]!"), null, 5) + SPAN_DANGER("We [alien.slash_verb] [src]!"), null, 5) playsound(loc, "alien_claw_metal", 25, 1) attacked() return XENO_ATTACK_ACTION diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Boiler.dm b/code/modules/mob/living/carbon/xenomorph/castes/Boiler.dm index 162cfc8992..f840c33be1 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Boiler.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Boiler.dm @@ -13,6 +13,7 @@ evasion = XENO_EVASION_NONE speed = XENO_SPEED_TIER_3 + available_strains = list(/datum/xeno_strain/trapper) behavior_delegate_type = /datum/behavior_delegate/boiler_base evolution_allowed = FALSE @@ -49,7 +50,6 @@ tier = 3 gib_chance = 100 drag_delay = 6 //pulling a big dead xeno is hard - mutation_type = BOILER_NORMAL spit_delay = 30 SECONDS tileoffset = 3 viewsize = 7 @@ -57,6 +57,10 @@ icon_xeno = 'icons/mob/xenos/boiler.dmi' icon_xenonid = 'icons/mob/xenonids/boiler.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Boiler_1","Boiler_2","Boiler_3") + weed_food_states_flipped = list("Boiler_1","Boiler_2","Boiler_3") + var/datum/effect_system/smoke_spread/xeno_acid/smoke base_actions = list( @@ -93,4 +97,3 @@ // No special behavior for boilers /datum/behavior_delegate/boiler_base name = "Base Boiler Behavior Delegate" - diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm index ee882bc14f..106dcdcacb 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Burrower.dm @@ -9,7 +9,6 @@ max_health = XENO_HEALTH_TIER_6 plasma_gain = XENO_PLASMA_GAIN_TIER_8 plasma_max = XENO_PLASMA_TIER_6 - crystal_max = XENO_CRYSTAL_LOW xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_4 armor_deflection = XENO_ARMOR_TIER_2 evasion = XENO_EVASION_NONE @@ -53,6 +52,7 @@ base_pixel_x = 0 base_pixel_y = -20 tier = 2 + organ_value = 1500 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, @@ -66,6 +66,7 @@ /datum/action/xeno_action/onclick/place_trap, //second macro /datum/action/xeno_action/activable/burrow, //third macro /datum/action/xeno_action/onclick/tremor, //fourth macro + /datum/action/xeno_action/active_toggle/toggle_meson_vision, /datum/action/xeno_action/onclick/tacmap, ) @@ -75,14 +76,12 @@ /mob/living/carbon/xenomorph/proc/set_hugger_reserve_for_morpher, ) - mutation_type = BURROWER_NORMAL - icon_xeno = 'icons/mob/xenos/burrower.dmi' icon_xenonid = 'icons/mob/xenonids/burrower.dmi' -/mob/living/carbon/xenomorph/burrower/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number) - . = ..() - sight |= SEE_TURFS + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Burrower_1","Burrower_2","Burrower_3") + weed_food_states_flipped = list("Burrower_1","Burrower_2","Burrower_3") /mob/living/carbon/xenomorph/burrower/ex_act(severity) if(HAS_TRAIT(src, TRAIT_ABILITY_BURROWED)) @@ -106,11 +105,3 @@ /datum/behavior_delegate/burrower_base name = "Base Burrower Behavior Delegate" - -/datum/behavior_delegate/burrower_base/on_update_icons() - if(bound_xeno.stat == DEAD) - return - - if(HAS_TRAIT(bound_xeno, TRAIT_ABILITY_BURROWED)) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state] Burrower Burrowed" - return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Carrier.dm b/code/modules/mob/living/carbon/xenomorph/castes/Carrier.dm index 0b5388fa6c..6ce275e966 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Carrier.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Carrier.dm @@ -9,12 +9,14 @@ max_health = XENO_HEALTH_TIER_9 plasma_gain = XENO_PLASMA_GAIN_TIER_6 plasma_max = XENO_PLASMA_TIER_5 - crystal_max = XENO_CRYSTAL_LOW xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_2 armor_deflection = XENO_NO_ARMOR evasion = XENO_EVASION_NONE speed = XENO_SPEED_TIER_4 + available_strains = list(/datum/xeno_strain/eggsac) + behavior_delegate_type = /datum/behavior_delegate/carrier_base + evolution_allowed = FALSE deevolves_to = list(XENO_CASTE_DRONE) throwspeed = SPEED_FAST @@ -56,6 +58,7 @@ tier = 2 pixel_x = -16 //Needed for 2x2 old_x = -16 + organ_value = 1000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, @@ -76,10 +79,13 @@ /mob/living/carbon/xenomorph/proc/rename_tunnel, /mob/living/carbon/xenomorph/proc/set_hugger_reserve_for_morpher, ) - mutation_type = CARRIER_NORMAL icon_xenonid = 'icons/mob/xenonids/carrier.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Carrier_1","Carrier_2","Carrier_3") + weed_food_states_flipped = list("Carrier_1","Carrier_2","Carrier_3") + var/list/hugger_image_index = list() var/mutable_appearance/hugger_overlays_icon var/mutable_appearance/eggsac_overlays_icon @@ -92,18 +98,9 @@ var/eggs_max = 0 var/laid_egg = 0 -/mob/living/carbon/xenomorph/carrier/update_icons() - . = ..() - if (mutation_type == CARRIER_NORMAL) - update_hugger_overlays() - if (mutation_type == CARRIER_EGGSAC) - update_eggsac_overlays() - /mob/living/carbon/xenomorph/carrier/proc/update_hugger_overlays() if(!hugger_overlays_icon) return - if(mutation_type != CARRIER_NORMAL) - return overlays -= hugger_overlays_icon hugger_overlays_icon.overlays.Cut() @@ -112,7 +109,7 @@ hugger_image_index.Cut() return - update_clinger_maths(round(( huggers_cur / huggers_max ) * 3.999) + 1) + update_clinger_maths(floor(( huggers_cur / huggers_max ) * 3.999) + 1) for(var/i in hugger_image_index) if(stat == DEAD) @@ -143,8 +140,6 @@ /mob/living/carbon/xenomorph/carrier/proc/update_eggsac_overlays() if(!eggsac_overlays_icon) return - if(mutation_type != CARRIER_EGGSAC) - return overlays -= eggsac_overlays_icon eggsac_overlays_icon.overlays.Cut() @@ -183,9 +178,6 @@ . = ..(cause, gibbed) if(.) var/chance = 75 //75% to drop an egg or hugger. - if(mutation_type == CARRIER_EGGSAC) - visible_message(SPAN_XENOWARNING("[src] throes as its eggsac bursts into a mess of acid!")) - playsound(src.loc, 'sound/effects/alien_egg_burst.ogg', 25, 1) if(huggers_cur) //Hugger explosion, like an egg morpher @@ -206,6 +198,11 @@ if(eggs_dropped) //Checks whether or not to announce egg drop. xeno_message(SPAN_XENOANNOUNCE("[src] has dropped some precious eggs!"), 2, hive.hivenumber) +/mob/living/carbon/xenomorph/carrier/recalculate_actions() + . = ..() + huggers_max = caste.huggers_max + eggs_max = caste.eggs_max + /mob/living/carbon/xenomorph/carrier/get_status_tab_items() . = ..() if(huggers_max > 0) @@ -220,13 +217,13 @@ if(huggers_max > 0 && huggers_cur < huggers_max) if(F.stat != DEAD && !F.sterile) huggers_cur++ - to_chat(src, SPAN_NOTICE("You store the facehugger and carry it for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) + to_chat(src, SPAN_NOTICE("We store the facehugger and carry it for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) update_icons() qdel(F) else to_chat(src, SPAN_WARNING("This [F.name] looks too unhealthy.")) else - to_chat(src, SPAN_WARNING("You can't carry more facehuggers on you.")) + to_chat(src, SPAN_WARNING("We can't carry more facehuggers on us.")) /mob/living/carbon/xenomorph/carrier/proc/store_huggers_from_egg_morpher(obj/effect/alien/resin/special/eggmorph/morpher) if(morpher.linked_hive && (morpher.linked_hive.hivenumber != hivenumber)) @@ -242,12 +239,12 @@ huggers_cur += huggers_to_transfer morpher.stored_huggers -= huggers_to_transfer if(huggers_to_transfer == 1) - to_chat(src, SPAN_NOTICE("You store one facehugger and carry it for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) + to_chat(src, SPAN_NOTICE("We store one facehugger and carry it for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) else - to_chat(src, SPAN_NOTICE("You store [huggers_to_transfer] facehuggers and carry them for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) + to_chat(src, SPAN_NOTICE("We store [huggers_to_transfer] facehuggers and carry them for safekeeping. Now sheltering: [huggers_cur] / [huggers_max].")) update_icons() else - to_chat(src, SPAN_WARNING("You can't carry more facehuggers on you.")) + to_chat(src, SPAN_WARNING("We can't carry more facehuggers on you.")) /mob/living/carbon/xenomorph/carrier/proc/throw_hugger(atom/T) @@ -286,12 +283,26 @@ store_huggers_from_egg_morpher(morpher) return - //We throw a hugger from our storage - if(huggers_cur <= 0) - to_chat(src, SPAN_WARNING("You don't have any facehuggers to use!")) + var/obj/item/clothing/mask/facehugger/F = get_active_hand() + if(!F) //empty active hand + //if no hugger in active hand, we take one from our storage + if(huggers_cur <= 0) + to_chat(src, SPAN_WARNING("We don't have any facehuggers to use!")) + return + + if(on_fire) + to_chat(src, SPAN_WARNING("Retrieving a stored facehugger while we're on fire would burn it!")) + return + + F = new(src, hivenumber) + huggers_cur-- + put_in_active_hand(F) + to_chat(src, SPAN_XENONOTICE("We grab one of the facehugger in our storage. Now sheltering: [huggers_cur] / [huggers_max].")) + update_icons() return - if(threw_a_hugger) + if(!istype(F)) //something else in our hand + to_chat(src, SPAN_WARNING("We need a facehugger in our hand to throw one!")) return threw_a_hugger = TRUE @@ -309,7 +320,7 @@ update_icons() visible_message(SPAN_XENOWARNING("\The [src] throws something towards \the [target_turf]!"), \ - SPAN_XENOWARNING("You throw a facehugger towards \the [target_turf]!")) + SPAN_XENOWARNING("We throw a facehugger towards \the [target_turf]!")) playsound(loc, get_sfx("alien_tail_swipe"), 120, 1) child.throw_atom(target_turf, 6, caste.throwspeed) @@ -328,12 +339,12 @@ if(stat == CONSCIOUS) eggs_cur++ update_icons() - to_chat(src, SPAN_NOTICE("You store the egg and carry it for safekeeping. Now sheltering: [eggs_cur] / [eggs_max].")) + to_chat(src, SPAN_NOTICE("We store the egg and carry it for safekeeping. Now sheltering: [eggs_cur] / [eggs_max].")) qdel(E) else to_chat(src, SPAN_WARNING("This [E.name] looks too unhealthy.")) else - to_chat(src, SPAN_WARNING("You can't carry more eggs on you.")) + to_chat(src, SPAN_WARNING("We can't carry more eggs on ourselves.")) /mob/living/carbon/xenomorph/carrier/proc/retrieve_egg(atom/T) if(!T) return @@ -358,17 +369,17 @@ if(!E) //empty active hand //if no hugger in active hand, we take one from our storage if(eggs_cur <= 0) - to_chat(src, SPAN_WARNING("You don't have any egg to use!")) + to_chat(src, SPAN_WARNING("We don't have any egg to use!")) return E = new(src, hivenumber) eggs_cur-- update_icons() put_in_active_hand(E) - to_chat(src, SPAN_XENONOTICE("You grab one of the eggs in your storage. Now sheltering: [eggs_cur] / [eggs_max].")) + to_chat(src, SPAN_XENONOTICE("We grab one of the eggs in our storage. Now sheltering: [eggs_cur] / [eggs_max].")) return if(!istype(E)) //something else in our hand - to_chat(src, SPAN_WARNING("You need an empty hand to grab one of your stored eggs!")) + to_chat(src, SPAN_WARNING("We need an empty hand to grab one of our stored eggs!")) return /mob/living/carbon/xenomorph/carrier/attack_ghost(mob/dead/observer/user) @@ -395,3 +406,10 @@ return GLOB.hive_datum[hivenumber].spawn_as_hugger(user, src) huggers_cur-- + +/datum/behavior_delegate/carrier_base + name = "Base Carrier Behavior Delegate" + +/datum/behavior_delegate/carrier_base/on_update_icons() + var/mob/living/carbon/xenomorph/carrier/bound_carrier = bound_xeno + bound_carrier.update_hugger_overlays() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm index 7d1d9f98b5..3f46563577 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Crusher.dm @@ -14,6 +14,7 @@ speed = XENO_SPEED_TIER_4 heal_standing = 0.66 + available_strains = list(/datum/xeno_strain/charger) behavior_delegate_type = /datum/behavior_delegate/crusher_charger minimum_evolve_time = 15 MINUTES @@ -53,7 +54,7 @@ base_pixel_y = -16 rebounds = FALSE // no more fucking pinball crooshers - + organ_value = 3000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -67,12 +68,14 @@ ) claw_type = CLAW_TYPE_VERY_SHARP - mutation_icon_state = CRUSHER_NORMAL - mutation_type = CRUSHER_CHARGER icon_xeno = 'icons/mob/xenos/crusher.dmi' icon_xenonid = 'icons/mob/xenonids/crusher.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Crusher_1","Crusher_2","Crusher_3") + weed_food_states_flipped = list("Crusher_1","Crusher_2","Crusher_3") + ai_range = 24 forced_retarget_time = (3 SECONDS) @@ -84,6 +87,8 @@ AddComponent(/datum/component/footstep, 2, 50, 15, 1, "metalbang") playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30, falloff = 5) + if(!get_turf(src)) //autowiki compat, spawns in nullspace + return for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src) var/relative_dir = get_dir(current_mob, src) var/final_dir = dir2text(relative_dir) @@ -102,21 +107,21 @@ //Barricade collision else if (istype(target, /obj/structure/barricade)) var/obj/structure/barricade/B = target - visible_message(SPAN_DANGER("[src] rams into [B] and skids to a halt!"), SPAN_XENOWARNING("You ram into [B] and skid to a halt!")) + visible_message(SPAN_DANGER("[src] rams into [B] and skids to a halt!"), SPAN_XENOWARNING("We ram into [B] and skid to a halt!")) B.Collided(src) . = FALSE else if (istype(target, /obj/vehicle/multitile)) var/obj/vehicle/multitile/M = target - visible_message(SPAN_DANGER("[src] rams into [M] and skids to a halt!"), SPAN_XENOWARNING("You ram into [M] and skid to a halt!")) + visible_message(SPAN_DANGER("[src] rams into [M] and skids to a halt!"), SPAN_XENOWARNING("We ram into [M] and skid to a halt!")) M.Collided(src) . = FALSE else if (istype(target, /obj/structure/machinery/m56d_hmg)) var/obj/structure/machinery/m56d_hmg/HMG = target - visible_message(SPAN_DANGER("[src] rams [HMG]!"), SPAN_XENODANGER("You ram [HMG]!")) + visible_message(SPAN_DANGER("[src] rams [HMG]!"), SPAN_XENODANGER("We ram [HMG]!")) playsound(loc, "punch", 25, 1) HMG.CrusherImpact() . = FALSE @@ -153,7 +158,7 @@ else if (istype(target, /obj/structure/machinery/defenses)) var/obj/structure/machinery/defenses/DF = target - visible_message(SPAN_DANGER("[src] rams [DF]!"), SPAN_XENODANGER("You ram [DF]!")) + visible_message(SPAN_DANGER("[src] rams [DF]!"), SPAN_XENODANGER("We ram [DF]!")) if (!DF.unacidable) playsound(loc, "punch", 25, 1) @@ -169,7 +174,7 @@ if (V.unslashable) . = FALSE else - visible_message(SPAN_DANGER("[src] smashes straight into [V]!"), SPAN_XENODANGER("You smash straight into [V]!")) + visible_message(SPAN_DANGER("[src] smashes straight into [V]!"), SPAN_XENODANGER("We smash straight into [V]!")) playsound(loc, "punch", 25, 1) V.tip_over() @@ -186,7 +191,7 @@ if (V.unslashable) . = FALSE else - visible_message(SPAN_DANGER("[src] smashes straight into [V]!"), SPAN_XENODANGER("You smash straight into [V]!")) + visible_message(SPAN_DANGER("[src] smashes straight into [V]!"), SPAN_XENODANGER("We smash straight into [V]!")) playsound(loc, "punch", 25, 1) V.tip_over() @@ -205,8 +210,8 @@ if (O.unacidable) . = FALSE else if (O.anchored) - visible_message(SPAN_DANGER("[src] crushes [O]!"), SPAN_XENODANGER("You crush [O]!")) - if(O.contents.len) //Hopefully won't auto-delete things inside crushed stuff. + visible_message(SPAN_DANGER("[src] crushes [O]!"), SPAN_XENODANGER("We crush [O]!")) + if(length(O.contents)) //Hopefully won't auto-delete things inside crushed stuff. var/turf/T = get_turf(src) for(var/atom/movable/S in T.contents) S.forceMove(T) @@ -216,7 +221,7 @@ else if(O.buckled_mob) O.unbuckle() - visible_message(SPAN_WARNING("[src] knocks [O] aside!"), SPAN_XENOWARNING("You knock [O] aside.")) //Canisters, crates etc. go flying. + visible_message(SPAN_WARNING("[src] knocks [O] aside!"), SPAN_XENOWARNING("We knock [O] aside.")) //Canisters, crates etc. go flying. playsound(loc, "punch", 25, 1) var/impact_range = 2 @@ -283,11 +288,11 @@ H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, bound_xeno.zone_selected) - var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge) + var/datum/action/xeno_action/activable/pounce/crusher_charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/crusher_charge) if (!cAction.action_cooldown_check()) cAction.reduce_cooldown(cdr_amount) - var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield) + var/datum/action/xeno_action/onclick/crusher_shield/sAction = get_action(bound_xeno, /datum/action/xeno_action/onclick/crusher_shield) if (!sAction.action_cooldown_check()) sAction.reduce_cooldown(base_cdr_amount) @@ -302,5 +307,5 @@ /datum/behavior_delegate/crusher_base/on_update_icons() if(HAS_TRAIT(bound_xeno, TRAIT_CHARGING) && bound_xeno.body_position == STANDING_UP) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Crusher Charging" + bound_xeno.icon_state = "[bound_xeno.get_strain_icon()] Crusher Charging" return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Defender.dm b/code/modules/mob/living/carbon/xenomorph/castes/Defender.dm index 8c05fa5366..548b0389e6 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Defender.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Defender.dm @@ -18,6 +18,7 @@ deevolves_to = list("Larva") can_vent_crawl = 0 + available_strains = list(/datum/xeno_strain/steel_crest) behavior_delegate_type = /datum/behavior_delegate/defender_base tackle_min = 2 @@ -38,6 +39,8 @@ pixel_x = -16 old_x = -16 tier = 1 + organ_value = 1000 + base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -49,11 +52,14 @@ /datum/action/xeno_action/activable/fortify, /datum/action/xeno_action/onclick/tacmap, ) - mutation_icon_state = DEFENDER_NORMAL - mutation_type = DEFENDER_NORMAL + icon_xeno = 'icons/mob/xenos/defender.dmi' icon_xenonid = 'icons/mob/xenonids/defender.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Defender_1","Defender_2","Defender_3") + weed_food_states_flipped = list("Defender_1","Defender_2","Defender_3") + /mob/living/carbon/xenomorph/defender/handle_special_state() if(fortify) return TRUE @@ -83,8 +89,8 @@ return if(bound_xeno.fortify && bound_xeno.health > 0) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Defender Fortify" + bound_xeno.icon_state = "[bound_xeno.get_strain_icon()] Defender Fortify" return TRUE if(bound_xeno.crest_defense && bound_xeno.health > 0) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Defender Crest" + bound_xeno.icon_state = "[bound_xeno.get_strain_icon()] Defender Crest" return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm b/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm index ab695ffe8b..cb22081dab 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Drone.dm @@ -7,12 +7,16 @@ max_health = 180 plasma_gain = XENO_PLASMA_GAIN_TIER_8 plasma_max = XENO_PLASMA_TIER_10 - crystal_max = XENO_CRYSTAL_LOW xeno_explosion_resistance = XENO_NO_EXPLOSIVE_ARMOR armor_deflection = XENO_NO_ARMOR evasion = XENO_EVASION_MEDIUM speed = XENO_SPEED_TIER_7 + available_strains = list( + /datum/xeno_strain/gardener, + /datum/xeno_strain/healer, + ) + build_time_mult = BUILD_TIME_MULT_BUILDER caste_desc = "A builder of hives. Only drones may evolve into Queens." @@ -49,6 +53,7 @@ icon_state = "Drone Walking" plasma_types = list(PLASMA_PURPLE) tier = 1 + organ_value = 800 pixel_x = -12 old_x = -12 base_actions = list( @@ -70,11 +75,19 @@ /mob/living/carbon/xenomorph/proc/rename_tunnel, /mob/living/carbon/xenomorph/proc/set_hugger_reserve_for_morpher, ) - mutation_type = DRONE_NORMAL gib_chance = 100 icon_xeno = 'icons/mob/xenos/drone.dmi' icon_xenonid = 'icons/mob/xenonids/drone.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_48x48.dmi' + weed_food_states = list("Drone_1","Drone_2","Drone_3") + weed_food_states_flipped = list("Drone_1","Drone_2","Drone_3") + +/mob/living/carbon/xenomorph/drone/tutorial + AUTOWIKI_SKIP(TRUE) + +/mob/living/carbon/xenomorph/drone/tutorial/gib(datum/cause_data/cause = create_cause_data("gibbing", src)) + death(cause, 1) /mob/living/carbon/xenomorph/drone/init_movement_handler() return new /datum/xeno_ai_movement/drone(src) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm index 71448bc7af..7824189a20 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Facehugger.dm @@ -1,20 +1,25 @@ /datum/caste_datum/facehugger caste_type = XENO_CASTE_FACEHUGGER tier = 0 - plasma_gain = 0.1 - plasma_max = 10 + plasma_gain = XENO_PLASMA_GAIN_TIER_1 + plasma_max = XENO_NO_PLASMA melee_damage_lower = 5 melee_damage_upper = 5 max_health = XENO_HEALTH_LARVA caste_desc = "Ewwww, that's disgusting!" speed = XENO_SPEED_TIER_10 + available_strains = list(/datum/xeno_strain/watcher) + behavior_delegate_type = /datum/behavior_delegate/facehugger_base + evolution_allowed = FALSE can_be_revived = FALSE minimap_icon = "facehugger" /mob/living/carbon/xenomorph/facehugger + AUTOWIKI_SKIP(TRUE) + name = XENO_CASTE_FACEHUGGER caste_type = XENO_CASTE_FACEHUGGER speak_emote = list("hisses") @@ -54,7 +59,6 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = "Normal" claw_type = 0 // No claws at all icon_xeno = 'icons/mob/xenos/facehugger.dmi' @@ -62,6 +66,24 @@ ai_range = 24 + weed_food_icon = 'icons/mob/xenos/weeds_48x48.dmi' + weed_food_states = list("Facehugger_1","Facehugger_2","Facehugger_3") + weed_food_states_flipped = list("Facehugger_1","Facehugger_2","Facehugger_3") + +/mob/living/carbon/xenomorph/facehugger/Login() + var/last_ckey_inhabited = persistent_ckey + . = ..() + if(ckey == last_ckey_inhabited) + return + + AddComponent(\ + /datum/component/temporary_mute,\ + "We aren't old enough to vocalize anything yet.",\ + "We aren't old enough to communicate like this yet.",\ + "We feel old enough to be able to vocalize now.",\ + 3 MINUTES,\ + ) + /mob/living/carbon/xenomorph/facehugger/initialize_pass_flags(datum/pass_flags_container/PF) ..() if (PF) @@ -71,24 +93,20 @@ /mob/living/carbon/xenomorph/facehugger/init_movement_handler() return new /datum/xeno_ai_movement/linger/facehugger(src) -/mob/living/carbon/xenomorph/facehugger/update_icons(is_pouncing) - if(!caste) - return - +/mob/living/carbon/xenomorph/facehugger/Life(delta_time) if(stat == DEAD) - icon_state = "[mutation_type] [caste.caste_type] Dead" - else if(body_position == LYING_DOWN) - if(!HAS_TRAIT(src, TRAIT_INCAPACITATED) && !HAS_TRAIT(src, TRAIT_FLOORED)) - icon_state = "[mutation_type] [caste.caste_type] Sleeping" - else - icon_state = "[mutation_type] [caste.caste_type] Knocked Down" - else if(is_pouncing) - icon_state = "[mutation_type] [caste.caste_type] Thrown" - else - icon_state = "[mutation_type] [caste.caste_type] Running" + return ..() - update_fire() //the fire overlay depends on the xeno's stance, so we must update it. - update_wounds() + if(!client && !aghosted && away_timer > XENO_FACEHUGGER_LEAVE_TIMER) + // Become a npc once again + new /obj/item/clothing/mask/facehugger(loc, hivenumber) + qdel(src) + return ..() + +/mob/living/carbon/xenomorph/facehugger/update_icons() + . = ..() + if(throwing) + icon_state = "[get_strain_icon()] [caste.caste_type] Thrown" /mob/living/carbon/xenomorph/facehugger/start_pulling(atom/movable/AM) return @@ -145,6 +163,9 @@ /mob/living/carbon/xenomorph/facehugger/proc/handle_hug(mob/living/carbon/human/human) var/obj/item/clothing/mask/facehugger/hugger = new /obj/item/clothing/mask/facehugger(loc, hivenumber) var/did_hug = hugger.attach(human, TRUE, 1, src) + if(!did_hug) + qdel(hugger) + return if(client) client.player_data?.adjust_stat(PLAYER_STAT_FACEHUGS, STAT_CATEGORY_XENO, 1) qdel(src) @@ -204,7 +225,27 @@ return /mob/living/carbon/xenomorph/facehugger/emote(act, m_type, message, intentional, force_silence) + // Custom emote + if(act == "me") + return ..() + + switch(stat) + if(UNCONSCIOUS) + to_chat(src, SPAN_WARNING("You cannot emote while unconscious!")) + return FALSE + if(DEAD) + to_chat(src, SPAN_WARNING("You cannot emote while dead!")) + return FALSE + if(client) + if(client.prefs.muted & MUTE_IC) + to_chat(src, SPAN_DANGER("You cannot emote (muted).")) + return FALSE + if(!client.attempt_talking()) + return FALSE + + // Otherwise, ""roar""! playsound(loc, "alien_roar_larva", 15) + return TRUE /mob/living/carbon/xenomorph/facehugger/get_status_tab_items() . = ..() @@ -213,34 +254,9 @@ else . += "Lifetime Hugs: [total_facehugs]" +/datum/behavior_delegate/facehugger_base + name = "Base Facehugger Behavior Delegate" -/datum/xeno_mutator/watcher - name = "STRAIN: Facehugger - Watcher" - description = "You lose your ability to hide in exchange to see further and the ability to no longer take damage outside of weeds. This enables you to stalk your host from a distance and wait for the perfect oppertunity to strike." - flavor_description = "No need to hide when you can see the danger." - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_FACEHUGGER) - mutator_actions_to_remove = list( - /datum/action/xeno_action/onclick/xenohide, - ) - mutator_actions_to_add = list( - /datum/action/xeno_action/onclick/toggle_long_range/runner, - ) - - cost = 1 - - keystone = TRUE - -/datum/xeno_mutator/watcher/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if(!.) - return - - var/mob/living/carbon/xenomorph/facehugger/facehugger = mutator_set.xeno - - facehugger.viewsize = 10 - facehugger.layer = MOB_LAYER - - facehugger.mutation_type = FACEHUGGER_WATCHER - mutator_update_actions(facehugger) - mutator_set.recalculate_actions(description, flavor_description) +/datum/behavior_delegate/facehugger_base/on_life() + if(bound_xeno.body_position == STANDING_UP && !(locate(/obj/effect/alien/weeds) in get_turf(bound_xeno))) + bound_xeno.adjustBruteLoss(1) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm index a44fee5645..6ad08817f8 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Hellhound.dm @@ -30,6 +30,8 @@ minimap_icon = "hellhound" /mob/living/carbon/xenomorph/hellhound + AUTOWIKI_SKIP(TRUE) + caste_type = XENO_CASTE_HELLHOUND name = XENO_CASTE_HELLHOUND desc = "A disgusting beast from hell, it has four menacing spikes growing from its head." @@ -64,11 +66,14 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = HELLHOUND_NORMAL icon_xeno = 'icons/mob/xenos/hellhound.dmi' icon_xenonid = 'icons/mob/xenos/hellhound.dmi' + weed_food_icon = 'icons/mob/xenos/weeds.dmi' + weed_food_states = list("Hellhound_1","Hellhound_2","Hellhound_3") + weed_food_states_flipped = list("Hellhound_1","Hellhound_2","Hellhound_3") + /mob/living/carbon/xenomorph/hellhound/Initialize(mapload, mob/living/carbon/xenomorph/oldXeno, h_number) . = ..(mapload, oldXeno, h_number || XENO_HIVE_YAUTJA) @@ -133,6 +138,6 @@ /datum/behavior_delegate/hellhound_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm index 23f8ffc8ac..8024ed3664 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Hivelord.dm @@ -8,12 +8,13 @@ max_health = XENO_HEALTH_TIER_7 plasma_gain = XENO_PLASMA_GAIN_TIER_10 plasma_max = XENO_PLASMA_TIER_10 - crystal_max = XENO_CRYSTAL_HIGH xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_1 armor_deflection = XENO_NO_ARMOR evasion = XENO_EVASION_NONE speed = XENO_SPEED_TIER_2 + available_strains = list(/datum/xeno_strain/resin_whisperer) + evolution_allowed = FALSE caste_desc = "A builder of really big hives." deevolves_to = list(XENO_CASTE_DRONE) @@ -55,6 +56,8 @@ mob_size = MOB_SIZE_BIG drag_delay = 6 //pulling a big dead xeno is hard tier = 2 + organ_value = 1500 + base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -68,6 +71,7 @@ /datum/action/xeno_action/activable/secrete_resin/hivelord, //third macro /datum/action/xeno_action/activable/transfer_plasma/hivelord, // to be consistent with drone placement /datum/action/xeno_action/active_toggle/toggle_speed, //fourth macro + /datum/action/xeno_action/active_toggle/toggle_meson_vision, /datum/action/xeno_action/onclick/tacmap, ) @@ -75,11 +79,14 @@ /mob/living/carbon/xenomorph/proc/rename_tunnel, /mob/living/carbon/xenomorph/proc/set_hugger_reserve_for_morpher, ) - mutation_type = HIVELORD_NORMAL icon_xeno = 'icons/mob/xenos/hivelord.dmi' icon_xenonid = 'icons/mob/xenonids/hivelord.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Hivelord_1","Hivelord_2","Hivelord_3") + weed_food_states_flipped = list("Hivelord_1","Hivelord_2","Hivelord_3") + /datum/behavior_delegate/hivelord_base name = "Base Hivelord Behavior Delegate" @@ -116,10 +123,3 @@ toggle_resin_walker() to_chat(bound_xeno, SPAN_WARNING("You feel dizzy as the world slows down.")) bound_xeno.recalculate_move_delay = TRUE - -/// This check mainly exists because of the new resin node ability for resin whisperer. -/mob/living/carbon/xenomorph/hivelord/proc/on_weeds() - var/turf/turf = get_turf(src) - if(locate(/obj/effect/alien/weeds) in turf) - return TRUE - return FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm index 4efebf0a9c..2fef6760ca 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Larva.dm @@ -25,6 +25,8 @@ minimum_evolve_time = 0 /mob/living/carbon/xenomorph/larva + AUTOWIKI_SKIP(TRUE) + name = XENO_CASTE_LARVA caste_type = XENO_CASTE_LARVA speak_emote = list("hisses") @@ -36,6 +38,7 @@ age = XENO_NO_AGE crit_health = -25 mob_size = MOB_SIZE_SMALL + speaking_noise = "larva_talk" base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/watch_xeno, @@ -45,39 +48,59 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = "Normal" var/burrowable = TRUE //Can it be safely burrowed if it has no player? var/state_override + var/is_bloody = TRUE //We're still "bloody" icon_xeno = 'icons/mob/xenos/larva.dmi' icon_xenonid = 'icons/mob/xenonids/larva.dmi' -/mob/living/carbon/xenomorph/larva/initialize_pass_flags(datum/pass_flags_container/PF) +/mob/living/carbon/xenomorph/larva/Life() + if(is_bloody && (evolution_stored >= evolution_threshold / 2)) //We're no longer bloody so update our name... + generate_name() + is_bloody = FALSE + return ..() + +/mob/living/carbon/xenomorph/larva/initialize_pass_flags(datum/pass_flags_container/pass_flags) ..() - if (PF) - PF.flags_pass = PASS_MOB_THRU|PASS_FLAGS_CRAWLER - PF.flags_can_pass_all = PASS_ALL^PASS_OVER_THROW_ITEM + if (pass_flags) + pass_flags.flags_pass = PASS_MOB_THRU|PASS_FLAGS_CRAWLER + pass_flags.flags_can_pass_all = PASS_ALL^PASS_OVER_THROW_ITEM /mob/living/carbon/xenomorph/larva/corrupted + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_CORRUPTED /mob/living/carbon/xenomorph/larva/alpha + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_ALPHA /mob/living/carbon/xenomorph/larva/bravo + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_BRAVO /mob/living/carbon/xenomorph/larva/charlie + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_CHARLIE /mob/living/carbon/xenomorph/larva/delta + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_DELTA /mob/living/carbon/xenomorph/larva/mutated + AUTOWIKI_SKIP(TRUE) + hivenumber = XENO_HIVE_MUTATED /mob/living/carbon/xenomorph/larva/predalien + AUTOWIKI_SKIP(TRUE) + icon_xeno = 'icons/mob/xenos/predalien_larva.dmi' icon_state = "Predalien Larva" caste_type = XENO_CASTE_PREDALIEN_LARVA @@ -100,29 +123,10 @@ //Larva code is just a mess, so let's get it over with /mob/living/carbon/xenomorph/larva/update_icons() - var/progress = "" //Naming convention, three different names var/state = "" //Icon convention, two different sprite sets - var/name_prefix = "" - - if(hive) - name_prefix = hive.prefix - color = hive.color - - if(evolution_stored >= evolution_threshold) - progress = "Mature " - else if(evolution_stored < evolution_threshold / 2) //We're still bloody - progress = "Bloody " + if(evolution_stored < evolution_threshold / 2) //We're still bloody state = "Bloody " - else - progress = "" - - name = "[name_prefix][progress]Larva ([nicknumber])" - - if(istype(src,/mob/living/carbon/xenomorph/larva/predalien)) state = "Predalien " //Sort of a hack. - - //Update linked data so they show up properly - change_real_name(src, name) if(stat == DEAD) icon_state = "[state_override || state]Larva Dead" @@ -140,16 +144,13 @@ /mob/living/carbon/xenomorph/larva/alter_ghost(mob/dead/observer/ghost) ghost.icon_state = "[caste.caste_type]" -/mob/living/carbon/xenomorph/larva/handle_name() - return - /mob/living/carbon/xenomorph/larva/start_pulling(atom/movable/AM) return /mob/living/carbon/xenomorph/larva/pull_response(mob/puller) return TRUE -/mob/living/carbon/xenomorph/larva/UnarmedAttack(atom/A, proximity, click_parameters, tile_attack, ignores_resin = FALSE) +/mob/living/carbon/xenomorph/larva/UnarmedAttack(atom/atom, proximity, click_parameters, tile_attack, ignores_resin = FALSE) a_intent = INTENT_HELP //Forces help intent for all interactions. if(!caste) return FALSE @@ -157,21 +158,70 @@ if(body_position) //No attacks while laying down return FALSE - A.attack_larva(src) + atom.attack_larva(src) xeno_attack_delay(src) //Adds some lag to the 'attack' -/proc/spawn_hivenumber_larva(atom/A, hivenumber) - if(!GLOB.hive_datum[hivenumber] || isnull(A)) +/proc/spawn_hivenumber_larva(atom/atom, hivenumber) + if(!GLOB.hive_datum[hivenumber] || isnull(atom)) return - var/mob/living/carbon/xenomorph/larva/L = new /mob/living/carbon/xenomorph/larva(A) + var/mob/living/carbon/xenomorph/larva/larva = new /mob/living/carbon/xenomorph/larva(atom) - L.set_hive_and_update(hivenumber) + larva.set_hive_and_update(hivenumber) - return L + return larva /mob/living/carbon/xenomorph/larva/emote(act, m_type, message, intentional, force_silence) + // Custom emote + if(act == "me") + return ..() + + switch(stat) + if(UNCONSCIOUS) + to_chat(src, SPAN_WARNING("You cannot emote while unconscious!")) + return FALSE + if(DEAD) + to_chat(src, SPAN_WARNING("You cannot emote while dead!")) + return FALSE + if(client) + if(client.prefs.muted & MUTE_IC) + to_chat(src, SPAN_DANGER("You cannot emote (muted).")) + return FALSE + if(!client.attempt_talking()) + return FALSE + + // Otherwise, ""roar""! playsound(loc, "alien_roar_larva", 15) + return TRUE /mob/living/carbon/xenomorph/larva/is_xeno_grabbable() return TRUE + +/* +Larva name generation, set nicknumber = (number between 1 & 999) which isn't taken by any other xenos in GLOB.xeno_mob_list if doesn't already exist. +Also handles the "Mature / Bloody naming convention. Call this to update the name." +*/ +/mob/living/carbon/xenomorph/larva/generate_name() + if(!nicknumber) + generate_and_set_nicknumber() + + var/progress = "" //Naming convention, three different names + var/name_prefix = "" // Prefix for hive + + if(hive) + name_prefix = hive.prefix + color = hive.color + + if(evolution_stored >= evolution_threshold) + progress = "Mature " + else if(evolution_stored < evolution_threshold / 2) //We're still bloody + progress = "Bloody " + + name = "[name_prefix][progress]Larva ([nicknumber])" + + //Update linked data so they show up properly + change_real_name(src, name) + //Update the hive status UI + if(hive) + var/datum/hive_status/hive_status = hive + hive_status.hive_ui.update_xeno_info() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm index 4a399a3e40..eb737249ba 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Lurker.dm @@ -15,6 +15,7 @@ attack_delay = 2 // VERY high slash damage, but attacks relatively slowly + available_strains = list(/datum/xeno_strain/vampire) behavior_delegate_type = /datum/behavior_delegate/lurker_base deevolves_to = list(XENO_CASTE_RUNNER) @@ -37,6 +38,7 @@ pixel_x = -12 old_x = -12 tier = 2 + organ_value = 2000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -50,7 +52,6 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = LURKER_NORMAL claw_type = CLAW_TYPE_SHARP tackle_min = 2 @@ -59,6 +60,10 @@ icon_xeno = 'icons/mob/xenos/lurker.dmi' icon_xenonid = 'icons/mob/xenonids/lurker.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_48x48.dmi' + weed_food_states = list("Drone_1","Drone_2","Drone_3") + weed_food_states_flipped = list("Drone_1","Drone_2","Drone_3") + forced_retarget_time = (2 SECONDS) var/pull_direction @@ -123,27 +128,26 @@ name = "Base Lurker Behavior Delegate" // Config - var/invis_recharge_time = 150 // 15 seconds to recharge invisibility. + var/invis_recharge_time = 20 SECONDS var/invis_start_time = -1 // Special value for when we're not invisible - var/invis_duration = 300 // so we can display how long the lurker is invisible to it + var/invis_duration = 30 SECONDS // so we can display how long the lurker is invisible to it var/buffed_slash_damage_ratio = 1.2 var/slash_slow_duration = 35 // State var/next_slash_buffed = FALSE - var/can_go_invisible = TRUE /datum/behavior_delegate/lurker_base/melee_attack_modify_damage(original_damage, mob/living/carbon/target_carbon) if (!isxeno_human(target_carbon)) return original_damage if (next_slash_buffed) - to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You significantly strengthen your attack, slowing [target_carbon]!")) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We significantly strengthen our attack, slowing [target_carbon]!")) to_chat(target_carbon, SPAN_XENOHIGHDANGER("You feel a sharp pain as [bound_xeno] slashes you, slowing you down!")) original_damage *= buffed_slash_damage_ratio target_carbon.set_effect(get_xeno_stun_duration(target_carbon, 3), SLOW) next_slash_buffed = FALSE - var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate) + var/datum/action/xeno_action/onclick/lurker_assassinate/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_assassinate) if (ability) ability.button.icon_state = "template" @@ -170,57 +174,59 @@ /datum/behavior_delegate/lurker_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if (lurker_invis_action) - lurker_invis_action.invisibility_off() + lurker_invis_action.invisibility_off() // Full cooldown /datum/behavior_delegate/lurker_base/proc/decloak_handler(mob/source) SIGNAL_HANDLER - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invis_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(istype(lurker_invis_action)) - lurker_invis_action.invisibility_off() + lurker_invis_action.invisibility_off(0.5) // Partial refund of remaining time -// What to do when we go invisible +/// Implementation for enabling invisibility. /datum/behavior_delegate/lurker_base/proc/on_invisibility() - var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) - if (lurker_pounce_action) + var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) + if(lurker_pounce_action) lurker_pounce_action.knockdown = TRUE // pounce knocks down lurker_pounce_action.freeze_self = TRUE ADD_TRAIT(bound_xeno, TRAIT_CLOAKED, TRAIT_SOURCE_ABILITY("cloak")) RegisterSignal(bound_xeno, COMSIG_MOB_EFFECT_CLOAK_CANCEL, PROC_REF(decloak_handler)) bound_xeno.stealth = TRUE - can_go_invisible = FALSE invis_start_time = world.time +/// Implementation for disabling invisibility. /datum/behavior_delegate/lurker_base/proc/on_invisibility_off() - var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) - if (lurker_pounce_action) + var/datum/action/xeno_action/activable/pounce/lurker/lurker_pounce_action = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/lurker) + if(lurker_pounce_action) lurker_pounce_action.knockdown = FALSE // pounce no longer knocks down lurker_pounce_action.freeze_self = FALSE bound_xeno.stealth = FALSE REMOVE_TRAIT(bound_xeno, TRAIT_CLOAKED, TRAIT_SOURCE_ABILITY("cloak")) UnregisterSignal(bound_xeno, COMSIG_MOB_EFFECT_CLOAK_CANCEL) + invis_start_time = -1 - // SLIGHTLY hacky because we need to maintain lots of other state on the lurker - // whenever invisibility is on/off CD and when it's active. - addtimer(CALLBACK(src, PROC_REF(regen_invisibility)), invis_recharge_time) +/datum/behavior_delegate/lurker_base/append_to_stat() + . = list() - invis_start_time = -1 + // Invisible + if(invis_start_time != -1) + var/time_left = (invis_duration-(world.time - invis_start_time)) / 10 + . += "Invisibility Remaining: [time_left] second\s." + return -/datum/behavior_delegate/lurker_base/proc/regen_invisibility() - if (can_go_invisible) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + if(!lurker_invisibility_action) return - can_go_invisible = TRUE - if(bound_xeno) - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) - if(lurker_invisibility_action) - lurker_invisibility_action.end_cooldown() + // Recharged + if(lurker_invisibility_action.cooldown_timer_id == TIMER_ID_NULL) + . += "Invisibility Recharge: Ready." + return -/datum/behavior_delegate/lurker_base/append_to_stat() - . = list() - var/invis_message = (invis_start_time == -1) ? "N/A" : "[(invis_duration-(world.time - invis_start_time))/10] seconds." - . += "Invisibility Time Left: [invis_message]" + // Recharging + var/time_left = timeleft(lurker_invisibility_action.cooldown_timer_id) / 10 + . += "Invisibility Recharge: [time_left] second\s." /datum/behavior_delegate/lurker_base/on_collide(atom/movable/movable_atom) . = ..() @@ -231,7 +237,7 @@ if(!bound_xeno || !bound_xeno.stealth) return - var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) + var/datum/action/xeno_action/onclick/lurker_invisibility/lurker_invisibility_action = get_action(bound_xeno, /datum/action/xeno_action/onclick/lurker_invisibility) if(!lurker_invisibility_action) return @@ -239,5 +245,5 @@ if(HAS_TRAIT(bumped_into, TRAIT_CLOAKED)) //ignore invisible scouts and preds return - to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You bumped into someone and lost your invisibility!")) - lurker_invisibility_action.invisibility_off() + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We bumped into someone and lost our invisibility!")) + lurker_invisibility_action.invisibility_off(0.5) // partial refund of remaining time diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Praetorian.dm b/code/modules/mob/living/carbon/xenomorph/castes/Praetorian.dm index 344e1e21f3..70d33b905a 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Praetorian.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Praetorian.dm @@ -26,6 +26,12 @@ tackle_max = 5 tackle_chance = 45 + available_strains = list( + /datum/xeno_strain/dancer, + /datum/xeno_strain/oppressor, + /datum/xeno_strain/vanguard, + /datum/xeno_strain/warden, + ) behavior_delegate_type = /datum/behavior_delegate/praetorian_base minimum_evolve_time = 15 MINUTES @@ -46,7 +52,7 @@ mob_size = MOB_SIZE_BIG drag_delay = 6 //pulling a big dead xeno is hard tier = 3 - mutation_type = PRAETORIAN_NORMAL + organ_value = 3000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, @@ -64,6 +70,10 @@ icon_xeno = 'icons/mob/xenos/praetorian.dmi' icon_xenonid = 'icons/mob/xenonids/praetorian.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Praetorian_1","Praetorian_2","Praetorian_3") + weed_food_states_flipped = list("Praetorian_1","Praetorian_2","Praetorian_3") + /datum/behavior_delegate/praetorian_base name = "Base Praetorian Behavior Delegate" ///reward for hitting shots instead of spamming acid ball diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm index 14aa31b1f1..8279d1b2ba 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Predalien.dm @@ -6,8 +6,7 @@ melee_damage_upper = XENO_DAMAGE_TIER_5 melee_vehicle_damage = XENO_DAMAGE_TIER_5 max_health = XENO_HEALTH_TIER_9 - plasma_gain = XENO_PLASMA_GAIN_TIER_9 - plasma_max = XENO_PLASMA_TIER_3 + plasma_max = XENO_NO_PLASMA xeno_explosion_resistance = XENO_EXPLOSIVE_ARMOR_TIER_10 armor_deflection = XENO_ARMOR_TIER_3 evasion = XENO_EVASION_NONE @@ -31,6 +30,8 @@ minimap_icon = "predalien" /mob/living/carbon/xenomorph/predalien + AUTOWIKI_SKIP(TRUE) + caste_type = XENO_CASTE_PREDALIEN name = "Abomination" //snowflake name desc = "A strange looking creature with fleshy strands on its head. It appears like a mixture of armor and flesh, smooth, but well carapaced." @@ -41,12 +42,14 @@ speaking_noise = 'sound/voice/predalien_click.ogg' plasma_types = list(PLASMA_CATECHOLAMINE) faction = FACTION_PREDALIEN + claw_type = CLAW_TYPE_VERY_SHARP wall_smash = TRUE hardcore = FALSE pixel_x = -16 old_x = -16 mob_size = MOB_SIZE_BIG tier = 1 + organ_value = 20000 age = XENO_NO_AGE //Predaliens are already in their ultimate form, they don't get even better show_age_prefix = FALSE small_explosives_stun = FALSE @@ -56,24 +59,31 @@ /datum/action/xeno_action/onclick/regurgitate, /datum/action/xeno_action/watch_xeno, /datum/action/xeno_action/activable/tail_stab, - /datum/action/xeno_action/activable/pounce/predalien, + /datum/action/xeno_action/onclick/feralrush, /datum/action/xeno_action/onclick/predalien_roar, - /datum/action/xeno_action/onclick/smash, - /datum/action/xeno_action/activable/devastate, + /datum/action/xeno_action/activable/feral_smash, + /datum/action/xeno_action/activable/feralfrenzy, + /datum/action/xeno_action/onclick/toggle_gut_targeting, /datum/action/xeno_action/onclick/tacmap, ) - mutation_type = "Normal" - var/butcher_time = 6 SECONDS + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Predalien_1","Predalien_2","Predalien_3") + weed_food_states_flipped = list("Predalien_1","Predalien_2","Predalien_3") + var/smashing = FALSE + /// If the pred alert/player notif should happen when the predalien spawns + var/should_announce_spawn = TRUE + /mob/living/carbon/xenomorph/predalien/Initialize(mapload, mob/living/carbon/xenomorph/oldxeno, h_number) . = ..() - addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS) - hunter_data.dishonored = TRUE - hunter_data.dishonored_reason = "An abomination upon the honor of us all!" - hunter_data.dishonored_set = src - hud_set_hunter() + if(should_announce_spawn) + addtimer(CALLBACK(src, PROC_REF(announce_spawn)), 3 SECONDS) + hunter_data.dishonored = TRUE + hunter_data.dishonored_reason = "An abomination upon the honor of us all!" + hunter_data.dishonored_set = src + hud_set_hunter() AddComponent(/datum/component/footstep, 4, 25, 11, 2, "alien_footstep_medium") @@ -83,15 +93,37 @@ to_chat(src, {" |______________________| -You are a predator-alien hybrid! -You are a very powerful xenomorph creature that was born of a Yautja warrior body. -You are stronger, faster, and smarter than a regular xenomorph, but you must still listen to the queen. -You have a degree of freedom to where you can hunt and claim the heads of the hive's enemies, so check your verbs. -Your health meter will not regenerate normally, so kill and die for the hive! +You are a yautja-alien hybrid! +You are a xenomorph born from the body of your natural enemy, you are considered an abomination to all of the yautja race and they will do WHATEVER it takes to kill you. +However, being born from one you also harbor their intelligence and strength. You are built to be able to take them on but that does not mean you are invincible. Stay with your hive and overwhelm them with your numbers. Your sisters have sacrificed a lot for you; Do not just wander off and die. +You must still listen to the queen. + |______________________| "}) emote("roar") +/mob/living/carbon/xenomorph/predalien/get_organ_icon() + return "heart_t3" + + +/mob/living/carbon/xenomorph/predalien/resist_fire() + ..() + SetKnockDown(0.1 SECONDS) + +/mob/living/carbon/xenomorph/predalien/get_examine_text(mob/user) + . = ..() + var/datum/behavior_delegate/predalien_base/predalienkills = behavior_delegate + . += "It has [predalienkills.kills] kills to its name!" + +/mob/living/carbon/xenomorph/predalien/tutorial + AUTOWIKI_SKIP(TRUE) + + should_announce_spawn = FALSE + +/mob/living/carbon/xenomorph/predalien/tutorial/gib(datum/cause_data/cause = create_cause_data("gibbing", src)) + death(cause, gibbed = TRUE) + + /datum/behavior_delegate/predalien_base name = "Base Predalien Behavior Delegate" @@ -114,54 +146,3 @@ Your health meter will not regenerate normally, so kill and die for the hive!= 1) if(isturf(loc)) var/turf/T = loc - if(T.contents.len <= 25) //so we don't end up with a million object on that turf. + if(length(T.contents) <= 25) //so we don't end up with a million object on that turf. egg_amount-- new /obj/item/xeno_egg(loc, hivenumber) /mob/living/carbon/xenomorph/queen/get_status_tab_items() . = ..() var/stored_larvae = GLOB.hive_datum[hivenumber].stored_larva - var/xeno_leader_num = hive?.queen_leader_limit - hive?.open_xeno_leader_positions.len + var/xeno_leader_num = hive?.queen_leader_limit - length(hive?.open_xeno_leader_positions) . += "Pooled Larvae: [stored_larvae]" . += "Leaders: [xeno_leader_num] / [hive?.queen_leader_limit]" - if(queen_age_timer_id != TIMER_ID_NULL) - var/time_left = time2text(timeleft(queen_age_timer_id) + 1 MINUTES, "mm") // We add a minute so that it basically ceilings the value. - . += "Maturity: [time_left == 1? "[time_left] minute" : "[time_left] minutes"] remaining" - -//Custom bump for crushers. This overwrites normal bumpcode from carbon.dm -/mob/living/carbon/xenomorph/queen/Collide(atom/A) - set waitfor = 0 - - if(stat || !istype(A) || A == src) - return FALSE - - if(now_pushing) - return FALSE//Just a plain ol turf, let's return. - - var/turf/T = get_step(src, dir) - if(!T || !get_step_to(src, T)) //If it still exists, try to push it. - return ..() - - return TRUE + if(!queen_aged && queen_age_timer_id != TIMER_ID_NULL) + . += "Maturity: [time2text(timeleft(queen_age_timer_id), "mm:ss")] remaining" /mob/living/carbon/xenomorph/queen/proc/set_orders() set category = "Alien" @@ -574,7 +604,7 @@ to_chat(src, SPAN_DANGER("You cannot send Announcements (muted).")) return if(health <= 0) - to_chat(src, SPAN_WARNING("You can't do that while unconcious.")) + to_chat(src, SPAN_WARNING("You can't do that while unconscious.")) return FALSE if(!check_plasma(50)) return FALSE @@ -596,7 +626,7 @@ if(word_ability) word_ability.apply_cooldown() - xeno_announcement(input, hivenumber, "The words of the [name] reverberate in your head...") + xeno_announcement(input, hivenumber, "The words of the [name] reverberate in our head...") message_admins("[key_name_admin(src)] has created a Word of the Queen report:") log_admin("[key_name_admin(src)] Word of the Queen: [input]") @@ -778,16 +808,30 @@ return TRUE /mob/living/carbon/xenomorph/queen/death(cause, gibbed) - if(hive.living_xeno_queen == src) + if(src == hive?.living_xeno_queen) hive.xeno_queen_timer = world.time + XENO_QUEEN_DEATH_DELAY - hive.banished_ckeys = list() // Reset the banished ckey list + + // Reset the banished ckey list + if(length(hive.banished_ckeys)) + for(var/mob/living/carbon/xenomorph/target_xeno in hive.totalXenos) + if(!target_xeno.ckey) + continue + for(var/mob_name in hive.banished_ckeys) + if(target_xeno.ckey == hive.banished_ckeys[mob_name]) + target_xeno.banished = FALSE + target_xeno.hud_update_banished() + target_xeno.lock_evolve = FALSE + hive.banished_ckeys = list() + icon = queen_standing_icon return ..() - /mob/living/carbon/xenomorph/queen/proc/mount_ovipositor() if(ovipositor) return //sanity check + ADD_TRAIT(src, TRAIT_IMMOBILIZED, OVIPOSITOR_TRAIT) + set_body_position(STANDING_UP) + set_resting(FALSE) ovipositor = TRUE ADD_TRAIT(src, TRAIT_IMMOBILIZED, OVIPOSITOR_TRAIT) set_body_position(STANDING_UP) @@ -806,25 +850,21 @@ // These already have their placement locked in: /datum/action/xeno_action/onclick/regurgitate, /datum/action/xeno_action/watch_xeno, - /datum/action/xeno_action/activable/place_construction/queen_macro, + /datum/action/xeno_action/activable/place_construction/not_primary, /datum/action/xeno_action/onclick/emit_pheromones, /datum/action/xeno_action/onclick/queen_word, /datum/action/xeno_action/onclick/psychic_whisper, /datum/action/xeno_action/onclick/psychic_radiance, /datum/action/xeno_action/onclick/choose_resin/queen_macro, //fourth macro - /datum/action/xeno_action/onclick/banish, - /datum/action/xeno_action/onclick/readmit, - /datum/action/xeno_action/onclick/queen_award, + /datum/action/xeno_action/onclick/manage_hive, /datum/action/xeno_action/activable/info_marker/queen, // Screech is typically new for this list, but its possible they never ovi and it then is forced here: /datum/action/xeno_action/onclick/screech, //custom macro, Screech // These are new and their arrangement matters: /datum/action/xeno_action/onclick/remove_eggsac, - /datum/action/xeno_action/onclick/give_evo_points, /datum/action/xeno_action/onclick/set_xeno_lead, /datum/action/xeno_action/activable/queen_heal, //first macro /datum/action/xeno_action/activable/queen_give_plasma, //second macro - /datum/action/xeno_action/onclick/deevolve, /datum/action/xeno_action/onclick/queen_order, /datum/action/xeno_action/activable/expand_weeds, //third macro /datum/action/xeno_action/activable/secrete_resin/remote/queen, //fifth macro @@ -932,7 +972,7 @@ var/mob/living/carbon/xenomorph/queen/Queen = bound_xeno if(Queen.ovipositor) Queen.icon = Queen.queen_ovipositor_icon - Queen.icon_state = "[Queen.mutation_icon_state || Queen.mutation_type] Queen Ovipositor" + Queen.icon_state = "[Queen.get_strain_name()] Queen Ovipositor" return TRUE // Switch icon back and then let normal icon behavior happen @@ -941,3 +981,11 @@ /mob/living/carbon/xenomorph/queen/alter_ghost(mob/dead/observer/ghost) ghost.icon = queen_standing_icon return ..() + +/mob/living/carbon/xenomorph/queen/point_to_atom(atom/target_atom, turf/target_turf) + recently_pointed_to = world.time + 1 SECONDS + + var/obj/effect/overlay/temp/point/big/greyscale/point = new(target_turf, src, target_atom) + point.color = "#a800a8" + + visible_message("[src] points to [target_atom]", null, null, 5) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm index 7853934da2..90614e3380 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Ravager.dm @@ -26,6 +26,10 @@ fire_immunity = FIRE_IMMUNITY_NO_DAMAGE|FIRE_IMMUNITY_XENO_FRENZY attack_delay = -1 + available_strains = list( + /datum/xeno_strain/berserker, + /datum/xeno_strain/hedgehog, + ) behavior_delegate_type = /datum/behavior_delegate/ravager_base minimum_evolve_time = 15 MINUTES @@ -45,9 +49,8 @@ tier = 3 pixel_x = -16 old_x = -16 - mutation_type = RAVAGER_NORMAL claw_type = CLAW_TYPE_VERY_SHARP - + organ_value = 3000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -62,6 +65,10 @@ icon_xeno = 'icons/mob/xenos/ravager.dmi' icon_xenonid = 'icons/mob/xenonids/ravager.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Ravager_1","Ravager_2","Ravager_3") + weed_food_states_flipped = list("Ravager_1","Ravager_2","Ravager_3") + // Mutator delegate for base ravager /datum/behavior_delegate/ravager_base @@ -83,7 +90,7 @@ /datum/behavior_delegate/ravager_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/activable/pounce/charge/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pounce/charge) + var/datum/action/xeno_action/activable/pounce/charge/cAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pounce/charge) if (!cAction.action_cooldown_check()) cAction.reduce_cooldown(slash_charge_cdr) @@ -106,5 +113,5 @@ if (rav_shield && ((rav_shield.last_damage_taken + shield_decay_time) < world.time)) QDEL_NULL(rav_shield) - to_chat(bound_xeno, SPAN_XENODANGER("You feel your shield decay!")) + to_chat(bound_xeno, SPAN_XENODANGER("We feel our shield decay!")) bound_xeno.overlay_shields() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm index 6e4660881e..2404823fad 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm @@ -13,6 +13,8 @@ evasion = XENO_EVASION_NONE speed = XENO_SPEED_RUNNER attack_delay = -4 + + available_strains = list(/datum/xeno_strain/acider) behavior_delegate_type = /datum/behavior_delegate/runner_base evolves_to = list(XENO_CASTE_LURKER) deevolves_to = list("Larva") @@ -45,6 +47,7 @@ base_pixel_y = -20 pull_speed = -0.5 viewsize = 9 + organ_value = 500 //worthless mob_size = MOB_SIZE_XENO_SMALL @@ -62,11 +65,14 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = RUNNER_NORMAL icon_xeno = 'icons/mob/xenos/runner.dmi' icon_xenonid = 'icons/mob/xenonids/runner.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Runner_1","Runner_2","Runner_3") + weed_food_states_flipped = list("Runner_1","Runner_2","Runner_3") + var/linger_range = 5 var/linger_deviation = 1 var/pull_direction @@ -76,6 +82,12 @@ if (pass_flags_container) pass_flags_container.flags_pass |= PASS_FLAGS_CRAWLER +/mob/living/carbon/xenomorph/runner/recalculate_actions() + . = ..() + pull_multiplier *= 0.85 + if(is_zoomed) + zoom_out() + /mob/living/carbon/xenomorph/runner/launch_towards(datum/launch_metadata/LM) if(!current_target) return ..() @@ -152,6 +164,6 @@ /datum/behavior_delegate/runner_base/melee_attack_additional_effects_self() ..() - var/datum/action/xeno_action/onclick/xenohide/hide = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/xenohide) + var/datum/action/xeno_action/onclick/xenohide/hide = get_action(bound_xeno, /datum/action/xeno_action/onclick/xenohide) if(hide) hide.post_attack() diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm index 793bc733fc..3e7416f39f 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Sentinel.dm @@ -39,6 +39,7 @@ pixel_x = -12 old_x = -12 tier = 1 + organ_value = 800 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -53,11 +54,14 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = SENTINEL_NORMAL icon_xeno = 'icons/mob/xenos/sentinel.dmi' icon_xenonid = 'icons/mob/xenonids/sentinel.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_48x48.dmi' + weed_food_states = list("Drone_1","Drone_2","Drone_3") + weed_food_states_flipped = list("Drone_1","Drone_2","Drone_3") + /datum/behavior_delegate/sentinel_base name = "Base Sentinel Behavior Delegate" @@ -84,14 +88,14 @@ next_slash_buffed = FALSE return //species like zombies or synths are immune to neurotoxin if (next_slash_buffed) - to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You add neurotoxin into your attack, [carbon_target] is about to fall over paralyzed!")) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We add neurotoxin into our attack, [carbon_target] is about to fall over paralyzed!")) to_chat(carbon_target, SPAN_XENOHIGHDANGER("You feel like you're about to fall over, as [bound_xeno] slashes you with its neurotoxin coated claws!")) - carbon_target.sway_jitter(times = 3, steps = round(NEURO_TOUCH_DELAY/3)) + carbon_target.sway_jitter(times = 3, steps = floor(NEURO_TOUCH_DELAY/3)) carbon_target.apply_effect(4, DAZE) addtimer(CALLBACK(src, PROC_REF(paralyzing_slash), carbon_target), NEURO_TOUCH_DELAY) next_slash_buffed = FALSE if(!next_slash_buffed) - var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash) + var/datum/action/xeno_action/onclick/paralyzing_slash/ability = get_action(bound_xeno, /datum/action/xeno_action/onclick/paralyzing_slash) if (ability && istype(ability)) ability.button.icon_state = "template" return original_damage diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Spitter.dm b/code/modules/mob/living/carbon/xenomorph/castes/Spitter.dm index 23728b00a6..006f66b7f1 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Spitter.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Spitter.dm @@ -40,7 +40,7 @@ plasma_types = list(PLASMA_NEUROTOXIN) pixel_x = -12 old_x = -12 - + organ_value = 2000 tier = 2 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, @@ -56,7 +56,10 @@ inherent_verbs = list( /mob/living/carbon/xenomorph/proc/vent_crawl, ) - mutation_type = SPITTER_NORMAL icon_xeno = 'icons/mob/xenos/spitter.dmi' icon_xenonid = 'icons/mob/xenonids/spitter.dmi' + + weed_food_icon = 'icons/mob/xenos/weeds_48x48.dmi' + weed_food_states = list("Drone_1","Drone_2","Drone_3") + weed_food_states_flipped = list("Drone_1","Drone_2","Drone_3") diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Warrior.dm b/code/modules/mob/living/carbon/xenomorph/castes/Warrior.dm index 3018cc1acd..2885dd6ac5 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Warrior.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Warrior.dm @@ -43,7 +43,7 @@ old_x = -16 tier = 2 pull_speed = 2 // about what it was before, slightly faster - + organ_value = 2000 base_actions = list( /datum/action/xeno_action/onclick/xeno_resting, /datum/action/xeno_action/onclick/regurgitate, @@ -55,12 +55,17 @@ /datum/action/xeno_action/onclick/tacmap, ) - mutation_type = WARRIOR_NORMAL claw_type = CLAW_TYPE_SHARP + icon_xeno = 'icons/mob/xenos/warrior.dmi' icon_xenonid = 'icons/mob/xenonids/warrior.dmi' + weed_food_icon = 'icons/mob/xenos/weeds_64x64.dmi' + weed_food_states = list("Warrior_1","Warrior_2","Warrior_3") + weed_food_states_flipped = list("Warrior_1","Warrior_2","Warrior_3") + var/lunging = FALSE // whether or not the warrior is currently lunging (holding) a target + /mob/living/carbon/xenomorph/warrior/throw_item(atom/target) toggle_throw_mode(THROW_MODE_OFF) @@ -72,43 +77,44 @@ lunged.set_effect(0, WEAKEN) return ..() -/mob/living/carbon/xenomorph/warrior/start_pulling(atom/movable/AM, lunge) - if (!check_state() || agility) +/mob/living/carbon/xenomorph/warrior/start_pulling(atom/movable/movable_atom, lunge) + if (!check_state()) return FALSE - if(!isliving(AM)) + if(!isliving(movable_atom)) return FALSE - var/mob/living/L = AM - var/should_neckgrab = !(src.can_not_harm(L)) && lunge + var/mob/living/living_mob = movable_atom + var/should_neckgrab = !(src.can_not_harm(living_mob)) && lunge - if(!QDELETED(L) && !QDELETED(L.pulledby) && L != src ) //override pull of other mobs - visible_message(SPAN_WARNING("[src] has broken [L.pulledby]'s grip on [L]!"), null, null, 5) - L.pulledby.stop_pulling() + if(!QDELETED(living_mob) && !QDELETED(living_mob.pulledby) && living_mob != src ) //override pull of other mobs + visible_message(SPAN_WARNING("[src] has broken [living_mob.pulledby]'s grip on [living_mob]!"), null, null, 5) + living_mob.pulledby.stop_pulling() - . = ..(L, lunge, should_neckgrab) + . = ..(living_mob, lunge, should_neckgrab) if(.) //successful pull - if(isxeno(L)) - var/mob/living/carbon/xenomorph/X = L - if(X.tier >= 2) // Tier 2 castes or higher immune to warrior grab stuns - return . - - if(should_neckgrab && L.mob_size < MOB_SIZE_BIG) - L.drop_held_items() - var/duration = get_xeno_stun_duration(L, 2) - L.KnockDown(duration) - L.Stun(duration) - L.pulledby = src - visible_message(SPAN_XENOWARNING("\The [src] grabs [L] by the throat!"), \ - SPAN_XENOWARNING("You grab [L] by the throat!")) + if(isxeno(living_mob)) + var/mob/living/carbon/xenomorph/xeno = living_mob + if(xeno.tier >= 2) // Tier 2 castes or higher immune to warrior grab stuns + return + + if(should_neckgrab && living_mob.mob_size < MOB_SIZE_BIG) + living_mob.drop_held_items() + var/duration = get_xeno_stun_duration(living_mob, 2) + living_mob.KnockDown(duration) + living_mob.Stun(duration) + if(living_mob.pulledby != src) + return // Grab was broken, probably as Stun side effect (eg. target getting knocked away from a manned M56D) + visible_message(SPAN_XENOWARNING("[src] grabs [living_mob] by the throat!"), \ + SPAN_XENOWARNING("We grab [living_mob] by the throat!")) lunging = TRUE - addtimer(CALLBACK(src, PROC_REF(stop_lunging)), get_xeno_stun_duration(L, 2) SECONDS + 1 SECONDS) + addtimer(CALLBACK(src, PROC_REF(stop_lunging)), get_xeno_stun_duration(living_mob, 2) SECONDS + 1 SECONDS) /mob/living/carbon/xenomorph/warrior/proc/stop_lunging(world_time) lunging = FALSE -/mob/living/carbon/xenomorph/warrior/hitby(atom/movable/AM) - if(ishuman(AM)) +/mob/living/carbon/xenomorph/warrior/hitby(atom/movable/movable_atom) + if(ishuman(movable_atom)) return ..() @@ -122,7 +128,7 @@ var/color = "#6c6f24" var/emote_cooldown = 0 -/datum/behavior_delegate/warrior_base/melee_attack_additional_effects_target(mob/living/carbon/A) +/datum/behavior_delegate/warrior_base/melee_attack_additional_effects_target(mob/living/carbon/carbon) ..() if(SEND_SIGNAL(bound_xeno, COMSIG_XENO_PRE_HEAL) & COMPONENT_CANCEL_XENO_HEAL) @@ -146,7 +152,7 @@ // This part is then outside the for loop if(final_lifesteal >= max_lifesteal) bound_xeno.add_filter("empower_rage", 1, list("type" = "outline", "color" = color, "size" = 1, "alpha" = 90)) - bound_xeno.visible_message(SPAN_DANGER("[bound_xeno.name] glows as it heals even more from its injuries!."), SPAN_XENODANGER("You glow as you heal even more from your injuries!")) + bound_xeno.visible_message(SPAN_DANGER("[bound_xeno.name] glows as it heals even more from its injuries!."), SPAN_XENODANGER("We glow as we heal even more from our injuries!")) bound_xeno.flick_heal_overlay(2 SECONDS, "#00B800") if(istype(bound_xeno) && world.time > emote_cooldown && bound_xeno) bound_xeno.emote("roar") @@ -154,7 +160,86 @@ emote_cooldown = world.time + 5 SECONDS addtimer(CALLBACK(src, PROC_REF(lifesteal_lock)), lifesteal_lock_duration/2) - bound_xeno.gain_health(Clamp(final_lifesteal / 100 * (bound_xeno.maxHealth - bound_xeno.health), 20, 40)) + bound_xeno.gain_health(clamp(final_lifesteal / 100 * (bound_xeno.maxHealth - bound_xeno.health), 20, 40)) /datum/behavior_delegate/warrior_base/proc/lifesteal_lock() bound_xeno.remove_filter("empower_rage") + + +/// Warrior specific behaviour for increasing pull power, limb rip. +/mob/living/carbon/xenomorph/warrior/pull_power(mob/mob) + if(!ripping_limb && mob.stat != DEAD) + if(mob.status_flags & XENO_HOST) + to_chat(src, SPAN_XENOWARNING("This would harm the embryo!")) + return + ripping_limb = TRUE + if(rip_limb(mob)) + stop_pulling() + ripping_limb = FALSE + + +/// Warrior Rip Limb - called by pull_power() +/mob/living/carbon/xenomorph/warrior/proc/rip_limb(mob/mob) + if(!istype(mob, /mob/living/carbon/human)) + return FALSE + + if(action_busy) //can't stack the attempts + return FALSE + + var/mob/living/carbon/human/human = mob + var/obj/limb/limb = human.get_limb(check_zone(zone_selected)) + + if(can_not_harm(human)) + to_chat(src, SPAN_XENOWARNING("We can't harm this host!")) + return + + if(!limb || limb.body_part == BODY_FLAG_CHEST || limb.body_part == BODY_FLAG_GROIN || (limb.status & LIMB_DESTROYED)) //Only limbs and head. + to_chat(src, SPAN_XENOWARNING("We can't rip off that limb.")) + return FALSE + var/limb_time = rand(40,60) + + if(limb.body_part == BODY_FLAG_HEAD) + limb_time = rand(90,110) + + visible_message(SPAN_XENOWARNING("[src] begins pulling on [mob]'s [limb.display_name] with incredible strength!"), \ + SPAN_XENOWARNING("We begin to pull on [mob]'s [limb.display_name] with incredible strength!")) + + if(!do_after(src, limb_time, INTERRUPT_ALL|INTERRUPT_DIFF_SELECT_ZONE, BUSY_ICON_HOSTILE) || mob.stat == DEAD || mob.status_flags & XENO_HOST) + to_chat(src, SPAN_NOTICE("We stop ripping off the limb.")) + if(mob.status_flags & XENO_HOST) + to_chat(src, SPAN_NOTICE("We detect an embryo inside [mob] which overwhelms our instinct to rip.")) + return FALSE + + if(limb.status & LIMB_DESTROYED) + return FALSE + + if(limb.status & (LIMB_ROBOT|LIMB_SYNTHSKIN)) + limb.take_damage(rand(30,40), 0, 0) // just do more damage + visible_message(SPAN_XENOWARNING("You hear [mob]'s [limb.display_name] being pulled beyond its load limits!"), \ + SPAN_XENOWARNING("[mob]'s [limb.display_name] begins to tear apart!")) + else + visible_message(SPAN_XENOWARNING("We hear the bones in [mob]'s [limb.display_name] snap with a sickening crunch!"), \ + SPAN_XENOWARNING("[mob]'s [limb.display_name] bones snap with a satisfying crunch!")) + limb.take_damage(rand(15,25), 0, 0) + limb.fracture(100) + mob.last_damage_data = create_cause_data(initial(caste_type), src) + src.attack_log += text("\[[time_stamp()]\] ripped the [limb.display_name] off of [mob.name] ([mob.ckey]) 1/2 progress") + mob.attack_log += text("\[[time_stamp()]\] had their [limb.display_name] ripped off by [src.name] ([src.ckey]) 1/2 progress") + log_attack("[src.name] ([src.ckey]) ripped the [limb.display_name] off of [mob.name] ([mob.ckey]) 1/2 progress") + + if(!do_after(src, limb_time, INTERRUPT_ALL|INTERRUPT_DIFF_SELECT_ZONE, BUSY_ICON_HOSTILE) || mob.stat == DEAD || iszombie(mob)) + to_chat(src, SPAN_NOTICE("We stop ripping off the limb.")) + return FALSE + + if(limb.status & LIMB_DESTROYED) + return FALSE + + visible_message(SPAN_XENOWARNING("[src] rips [mob]'s [limb.display_name] away from their body!"), \ + SPAN_XENOWARNING("[mob]'s [limb.display_name] rips away from their body!")) + src.attack_log += text("\[[time_stamp()]\] ripped the [limb.display_name] off of [mob.name] ([mob.ckey]) 2/2 progress") + mob.attack_log += text("\[[time_stamp()]\] had their [limb.display_name] ripped off by [src.name] ([src.ckey]) 2/2 progress") + log_attack("[src.name] ([src.ckey]) ripped the [limb.display_name] off of [mob.name] ([mob.ckey]) 2/2 progress") + + limb.droplimb(0, 0, initial(name)) + + return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/castes/caste_datum.dm b/code/modules/mob/living/carbon/xenomorph/castes/caste_datum.dm new file mode 100644 index 0000000000..c1cb7bf46c --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/castes/caste_datum.dm @@ -0,0 +1,186 @@ +// Actual caste datum basedef +/datum/caste_datum + var/caste_type = "" + var/display_name = "" + var/tier = 0 + var/dead_icon = "Drone Dead" + var/language = LANGUAGE_XENOMORPH + var/melee_damage_lower = 10 + var/melee_damage_upper = 20 + ///allows fine tuning melee damage to vehicles per caste. + var/melee_vehicle_damage = 10 + var/evasion = XENO_EVASION_NONE + + var/speed = XENO_SPEED_TIER_10 + + var/plasma_max = 10 + var/plasma_gain = 5 + + var/max_health = XENO_UNIVERSAL_HPMULT * 100 + ///Are they allowed to evolve (and have their evolution progress group) + var/evolution_allowed = 1 + ///Threshold to next evolution + var/evolution_threshold = 0 + /// whether they can get evo points without needing an ovi queen + var/evolve_without_queen = FALSE + ///This is where you add castes to evolve into. "Separated", "by", "commas" + var/list/evolves_to = list() + /// what caste or castes to de-evolve to. + var/list/deevolves_to = list() + ///If they can use consoles, etc. Set on Queen + var/is_intelligent = 0 + var/caste_desc = null + + // Tackles + var/tackle_min = 2 + var/tackle_max = 6 + var/tackle_chance = 35 + var/tacklestrength_min = 2 + var/tacklestrength_max = 3 + + ///Chance of deflecting projectiles. + var/armor_deflection = 0 + var/fire_immunity = FIRE_IMMUNITY_NONE + var/fire_intensity_resistance = 0 + + ///Delay timer for spitting + var/spit_delay = 60 + + /// Windup for spits + var/spit_windup = FALSE + + ///The strength of our aura. Zero means we can't emit one + var/aura_strength = 0 + + ///"Evolving" removed for the time being + var/aura_allowed = list("frenzy", "warding", "recovery") + + ///Adjust pixel size. 0.x is smaller, 1.x is bigger, percentage based. + var/adjust_size_x = 1 + var/adjust_size_y = 1 + + ///list of datum projectile types the xeno can use. + var/list/spit_types + + var/attack_delay = 0 //Bonus or pen to time in between attacks. + makes slashes slower. + + var/agility_speed_increase = 0 // this opens up possibilities for balancing + + /// A list of strain typepaths that are able to be chosen by this caste. + var/list/available_strains = list() + + // The type of mutator delegate to instantiate on the base caste. Will + // be replaced when the Xeno chooses a strain. + var/behavior_delegate_type = /datum/behavior_delegate + + // Resin building-related vars + /// Default build time and build distance + var/build_time_mult = BUILD_TIME_MULT_XENO + var/max_build_dist = 0 + + // Carrier vars // + + /// if a hugger is held in hand, won't attempt to leap and kill itself + var/hugger_nurturing = FALSE + var/huggers_max = 0 + var/throwspeed = 0 + var/hugger_delay = 0 + var/eggs_max = 0 + var/egg_cooldown = 30 + ///Armor but for explosions + var/xeno_explosion_resistance = 0 + + //Queen vars + var/can_hold_facehuggers = 0 + var/can_hold_eggs = CANNOT_HOLD_EGGS + + var/can_be_queen_healed = TRUE + var/can_be_revived = TRUE + + var/can_vent_crawl = 1 + + var/caste_luminosity = 0 + + /// if fire_immunity is set to be vulnerable, how much will fire damage be multiplied. Defines in xeno.dm + var/fire_vulnerability_mult = 1 + + var/burrow_cooldown = 5 SECONDS + var/tunnel_cooldown = 100 + var/widen_cooldown = 10 SECONDS + ///Big strong ability, big cooldown. + var/tremor_cooldown = 30 SECONDS + ///whether the xeno heals even outside weeds. + var/innate_healing = FALSE + + var/acid_level = 0 + var/weed_level = WEED_LEVEL_STANDARD + ///Time it takes between acid splash retaliate procs. Variable per caste, for if we want future castes that are acid bombs + var/acid_splash_cooldown = 3 SECONDS + + // regen vars + + var/heal_delay_time = 0 SECONDS + var/heal_resting = 1 + var/heal_standing = 0.4 + var/heal_knocked_out = 0.33 + + var/list/resin_build_order + var/minimum_xeno_playtime = 0 + +// cannot evolve to this caste until the round has been going on for this amount of time + // IMPORTANT: this is ROUND_TIME, not world.time + var/minimum_evolve_time = 1 MINUTES + /// Iconstate for the xeno on the minimap + var/minimap_icon = "xeno" + ///The iconstate for leadered xenos on the minimap, added as overlay + var/minimap_leadered_overlay = "xenoleader" + + var/royal_caste = FALSE + + +/datum/caste_datum/can_vv_modify() + return FALSE + +/datum/caste_datum/New() + . = ..() + + //Initialise evolution and upgrade thresholds in one place, once and for all + evolution_threshold = 0 + if(evolution_allowed) + switch(tier) + if(0) + evolution_threshold = 60 + if(1) + evolution_threshold = 200 + if(2) + evolution_threshold = 500 + //Other tiers (T3, Queen, etc.) can't evolve anyway + + resin_build_order = GLOB.resin_build_order_drone + +/client/var/cached_xeno_playtime + +/datum/caste_datum/proc/can_play_caste(client/client) + if(!CONFIG_GET(flag/use_timelocks)) + return TRUE + + var/total_xeno_playtime = client.get_total_xeno_playtime() + + if(minimum_xeno_playtime && total_xeno_playtime < minimum_xeno_playtime) + return FALSE + + return TRUE + +/datum/caste_datum/proc/get_caste_requirement(client/client) + return minimum_xeno_playtime - client.get_total_xeno_playtime() + +/datum/caste_datum/proc/get_minimap_icon() + var/image/background = mutable_appearance('icons/ui_icons/map_blips.dmi', "background") + background.color = MINIMAP_ICON_BACKGROUND_XENO + + var/iconstate = minimap_icon ? minimap_icon : "unknown" + var/mutable_appearance/icon = image('icons/ui_icons/map_blips.dmi', icon_state = iconstate) + icon.appearance_flags = RESET_COLOR + background.overlays += icon + + return background diff --git a/code/modules/mob/living/carbon/xenomorph/castes/king.dm b/code/modules/mob/living/carbon/xenomorph/castes/king.dm index 56f4001720..6c9b320db8 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/king.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/king.dm @@ -75,6 +75,8 @@ playsound(src, 'sound/voice/alien_death_unused.ogg', 100, TRUE, 30, falloff = 5) playsound(src, 'sound/voice/king_background.ogg', 100, TRUE, 30, falloff = 5) + if(!get_turf(src)) //autowiki compat, spawns in nullspace + return for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(src), 30) - src) var/relative_dir = get_dir(current_mob, src) var/final_dir = dir2text(relative_dir) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/lesser_drone.dm b/code/modules/mob/living/carbon/xenomorph/castes/lesser_drone.dm index 5f542c3ffa..e30e6033c5 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/lesser_drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/lesser_drone.dm @@ -7,7 +7,6 @@ max_health = XENO_HEALTH_LESSER_DRONE plasma_gain = XENO_PLASMA_GAIN_TIER_7 plasma_max = XENO_PLASMA_TIER_3 - crystal_max = XENO_CRYSTAL_LOW xeno_explosion_resistance = XENO_NO_EXPLOSIVE_ARMOR armor_deflection = XENO_NO_ARMOR evasion = XENO_EVASION_LOW @@ -17,9 +16,10 @@ can_be_revived = FALSE build_time_mult = BUILD_TIME_MULT_LESSER_DRONE + behavior_delegate_type = /datum/behavior_delegate/lesser_drone_base caste_desc = "A builder of hives." - can_hold_facehuggers = 1 + can_hold_facehuggers = TRUE can_hold_eggs = CAN_HOLD_TWO_HANDS acid_level = 1 weed_level = WEED_LEVEL_STANDARD @@ -75,11 +75,27 @@ /mob/living/carbon/xenomorph/proc/set_hugger_reserve_for_morpher, ) - mutation_type = DRONE_NORMAL - icon_xeno = 'icons/mob/xenos/lesser_drone.dmi' icon_xenonid = 'icons/mob/xenonids/lesser_drone.dmi' + weed_food_icon = 'icons/mob/xenos/weeds.dmi' + weed_food_states = list("Lesser_Drone_1","Lesser_Drone_2","Lesser_Drone_3") + weed_food_states_flipped = list("Lesser_Drone_1","Lesser_Drone_2","Lesser_Drone_3") + +/mob/living/carbon/xenomorph/lesser_drone/Login() + var/last_ckey_inhabited = persistent_ckey + . = ..() + if(ckey == last_ckey_inhabited) + return + + AddComponent(\ + /datum/component/temporary_mute,\ + "We aren't old enough to vocalize anything yet.",\ + "We aren't old enough to communicate like this yet.",\ + "We feel old enough to be able to vocalize and speak to the hivemind.",\ + 3 MINUTES,\ + ) + /mob/living/carbon/xenomorph/lesser_drone/age_xeno() if(stat == DEAD || !caste || QDELETED(src) || !client) return @@ -98,8 +114,15 @@ /mob/living/carbon/xenomorph/lesser_drone/ghostize(can_reenter_corpse = FALSE, aghosted = FALSE) . = ..() - if(. && !aghosted) + if(. && !aghosted && !QDELETED(src)) gib() /mob/living/carbon/xenomorph/lesser_drone/handle_ghost_message() return + +/datum/behavior_delegate/lesser_drone_base + name = "Base Lesser Drone Behavior Delegate" + +/datum/behavior_delegate/lesser_drone_base/on_life() + if(bound_xeno.body_position == STANDING_UP && !(locate(/obj/effect/alien/weeds) in get_turf(bound_xeno))) + bound_xeno.adjustBruteLoss(5) diff --git a/code/modules/mob/living/carbon/xenomorph/damage_procs.dm b/code/modules/mob/living/carbon/xenomorph/damage_procs.dm index e372b03e68..9d4de90072 100644 --- a/code/modules/mob/living/carbon/xenomorph/damage_procs.dm +++ b/code/modules/mob/living/carbon/xenomorph/damage_procs.dm @@ -16,6 +16,16 @@ return programmer.visible_message(SPAN_NOTICE("[programmer] reprograms \the [src]'s IFF tag."), SPAN_NOTICE("You reprogram \the [src]'s IFF tag."), max_distance = 3) return + if(stat == DEAD) + if(!istype(item, /obj/item/reagent_container/syringe)) + var/datum/surgery/current_surgery = active_surgeries[user.zone_selected] + if(current_surgery) + if(current_surgery.attempt_next_step(user, item)) + return + else + if(initiate_surgery_moment(item, src, "head" , user)) + return + return if(item.type in SURGERY_TOOLS_PINCH) if(!iff_tag) to_chat(user, SPAN_WARNING("\The [src] doesn't have an IFF tag to remove.")) @@ -36,7 +46,7 @@ /mob/living/carbon/xenomorph/ex_act(severity, direction, datum/cause_data/cause_data, pierce=0) - if(body_position == LYING_DOWN) + if(body_position == LYING_DOWN && direction) severity *= EXPLOSION_PRONE_MULTIPLIER if(severity >= 30) @@ -44,7 +54,7 @@ last_damage_data = istype(cause_data) ? cause_data : create_cause_data(cause_data) - if(severity > EXPLOSION_THRESHOLD_LOW && stomach_contents.len) + if(severity > EXPLOSION_THRESHOLD_LOW && length(stomach_contents)) for(var/mob/M in stomach_contents) M.ex_act(severity - EXPLOSION_THRESHOLD_LOW, last_damage_data, pierce) @@ -160,7 +170,7 @@ return var/shielded = FALSE - if(xeno_shields.len != 0 && damage > 0) + if(length(xeno_shields) != 0 && damage > 0) shielded = TRUE for(var/datum/xeno_shield/XS in xeno_shields) damage = XS.on_hit(damage) @@ -228,7 +238,7 @@ if(!caste) return sleep(XENO_ARMOR_BREAK_PASS_TIME) if(warding_aura && armor_break_to_apply > 0) //Damage to armor reduction - armor_break_to_apply = round(armor_break_to_apply * ((100 - (warding_aura * 15)) / 100)) + armor_break_to_apply = floor(armor_break_to_apply * ((100 - (warding_aura * 15)) / 100)) if(caste) armor_integrity -= armor_break_to_apply if(armor_integrity < 0) @@ -299,7 +309,7 @@ . = ..() switch(fire.fire_variant) if(FIRE_VARIANT_TYPE_B) - if(!armor_deflection_debuff) //Only adds another reset timer if the debuff is currently on 0, so at the start or after a reset has recently occured. + if(!armor_deflection_debuff) //Only adds another reset timer if the debuff is currently on 0, so at the start or after a reset has recently occurred. reset_xeno_armor_debuff_after_time(src, delta_time*10) fire.type_b_debuff_xeno_armor(src) //Always reapplies debuff each time to minimize gap. @@ -313,4 +323,4 @@ fire.set_on_fire(src) //Deals an extra proc of fire when you're crossing it. 30 damage per tile crossed, plus 15 per Process(). next_move_slowdown = next_move_slowdown + (SLOWDOWN_AMT_GREENFIRE * resist_modifier) if(resist_modifier > 0) - to_chat(src, SPAN_DANGER("You feel pieces of your exoskeleton fusing with the viscous fluid below and tearing off as you struggle to move through the flames!")) + to_chat(src, SPAN_DANGER("We feel pieces of our exoskeleton fusing with the viscous fluid below and tearing off as we struggle to move through the flames!")) diff --git a/code/modules/mob/living/carbon/xenomorph/death.dm b/code/modules/mob/living/carbon/xenomorph/death.dm index e7366df07f..8f7ee8f16e 100644 --- a/code/modules/mob/living/carbon/xenomorph/death.dm +++ b/code/modules/mob/living/carbon/xenomorph/death.dm @@ -26,7 +26,7 @@ hud_used.alien_plasma_display.icon_state = "power_display_empty" update_icons() - if(!is_admin_level(z)) //so xeno players don't get death messages from admin tests + if(!should_block_game_interaction(src)) //so xeno players don't get death messages from admin tests if(isqueen(src)) var/mob/living/carbon/xenomorph/queen/XQ = src playsound(loc, 'sound/voice/alien_queen_died.ogg', 75, 0) @@ -36,7 +36,7 @@ XQ.dismount_ovipositor(TRUE) if(GLOB.hive_datum[hivenumber].stored_larva) - GLOB.hive_datum[hivenumber].stored_larva = round(GLOB.hive_datum[hivenumber].stored_larva * 0.5) //Lose half on dead queen + GLOB.hive_datum[hivenumber].stored_larva = floor(GLOB.hive_datum[hivenumber].stored_larva * 0.5) //Lose half on dead queen var/list/players_with_xeno_pref = get_alien_candidates(GLOB.hive_datum[hivenumber]) if(players_with_xeno_pref && istype(GLOB.hive_datum[hivenumber].hive_location, /obj/effect/alien/resin/special/pylon/core)) @@ -83,7 +83,8 @@ playsound(loc, prob(50) == 1 ? 'sound/voice/alien_death.ogg' : 'sound/voice/alien_death2.ogg', 25, 1) var/area/A = get_area(src) if(hive && hive.living_xeno_queen) - xeno_message("Hive: [src] has died[A? " at [sanitize_area(A.name)]":""]! [banished ? "They were banished from the hive." : ""]", death_fontsize, hivenumber) + if(!HAS_TRAIT(src, TRAIT_TEMPORARILY_MUTED)) + xeno_message("Hive: [src] has died[A? " at [sanitize_area(A.name)]":""]! [banished ? "They were banished from the hive." : ""]", death_fontsize, hivenumber) if(hive && IS_XENO_LEADER(src)) //Strip them from the Xeno leader list, if they are indexed in here hive.remove_hive_leader(src) @@ -108,35 +109,42 @@ if(hardcore) QDEL_IN(src, 3 SECONDS) - //else if(!gibbed) // At the moment we only support humans - //AddComponent(/datum/component/weed_food) + else if(!gibbed) + AddComponent(/datum/component/weed_food) if(hive) hive.remove_xeno(src) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_XENO_DEATH, src, gibbed) + give_action(src, /datum/action/ghost/xeno) /mob/living/carbon/xenomorph/gib(datum/cause_data/cause = create_cause_data("gibbing", src)) var/obj/effect/decal/remains/xeno/remains = new(get_turf(src)) - remains.icon = icon + var/icon_path + var/gib_state = "gibbed-a-corpse" remains.pixel_x = pixel_x //For 2x2. if(!caste) CRASH("CASTE ERROR: gib() was called without a caste. (name: [name], disposed: [QDELETED(src)], health: [health])") - switch(caste.caste_type) //This will need to be changed later, when we have proper xeno pathing. Might do it on caste or something. + if(mob_size >= MOB_SIZE_BIG) + icon_path = 'icons/mob/xenos/xenomorph_64x64.dmi' + else + icon_path = 'icons/mob/xenos/xenomorph_48x48.dmi' + switch(caste.caste_type) + if(XENO_CASTE_RUNNER) + icon_path = 'icons/mob/xenos/xenomorph_64x64.dmi' + gib_state = "gibbed-a-corpse-runner" if(XENO_CASTE_BOILER) var/mob/living/carbon/xenomorph/boiler/src_boiler = src visible_message(SPAN_DANGER("[src] begins to bulge grotesquely, and explodes in a cloud of corrosive gas!")) src_boiler.smoke.set_up(2, 0, get_turf(src), new_cause_data = src_boiler.smoke.cause_data) src_boiler.smoke.start() - remains.icon_state = "gibbed-a-corpse" - if(XENO_CASTE_RUNNER) - remains.icon_state = "gibbed-a-corpse-runner" if(XENO_CASTE_LARVA, XENO_CASTE_PREDALIEN_LARVA) - remains.icon_state = "larva_gib_corpse" - else - remains.icon_state = "gibbed-a-corpse" + icon_path = 'icons/mob/xenos/larva.dmi' + + remains.icon_state = gib_state + remains.icon = icon_path check_blood_splash(35, BURN, 65, 2) //Some testing numbers. 35 burn, 65 chance. @@ -151,8 +159,12 @@ icon_path = 'icons/mob/xenos/xenomorph_48x48.dmi' switch(caste.caste_type) if(XENO_CASTE_RUNNER) + icon_path = 'icons/mob/xenos/xenomorph_64x64.dmi' to_flick = "gibbed-a-runner" + if(XENO_CASTE_BOILER) + to_flick = "gibbed-a-boiler" if(XENO_CASTE_LARVA, XENO_CASTE_PREDALIEN_LARVA) + icon_path = 'icons/mob/xenos/larva.dmi' to_flick = "larva_gib" new /obj/effect/overlay/temp/gib_animation/xeno(loc, src, to_flick, icon_path) diff --git a/code/modules/mob/living/carbon/xenomorph/egg_item.dm b/code/modules/mob/living/carbon/xenomorph/egg_item.dm index 77c5548d9f..a9d00519b6 100644 --- a/code/modules/mob/living/carbon/xenomorph/egg_item.dm +++ b/code/modules/mob/living/carbon/xenomorph/egg_item.dm @@ -5,7 +5,7 @@ icon = 'icons/mob/xenos/effects.dmi' icon_state = "egg_item" w_class = SIZE_MASSIVE - flags_atom = OPENCONTAINER + flags_atom = FPRINT|OPENCONTAINER flags_item = NOBLUDGEON throw_range = 1 layer = MOB_LAYER @@ -25,6 +25,17 @@ set_hive_data(src, hivenumber) . = ..() + if(hivenumber == XENO_HIVE_NORMAL) + RegisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING, PROC_REF(forsaken_handling)) + +/obj/item/xeno_egg/proc/forsaken_handling() + SIGNAL_HANDLER + if(is_ground_level(z)) + hivenumber = XENO_HIVE_FORSAKEN + set_hive_data(src, XENO_HIVE_FORSAKEN) + + UnregisterSignal(SSdcs, COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) + /obj/item/xeno_egg/get_examine_text(mob/user) . = ..() if(isxeno(user)) @@ -93,15 +104,28 @@ if(weed.weed_strength >= WEED_LEVEL_WEAK && weed.linked_hive.hivenumber == hivenumber) //check for ANY weeds any_weeds = weed + // If the user isn't an eggsac carrier, then they can only plant eggs on hive weeds. + var/needs_hive_weeds = !istype(user.strain, /datum/xeno_strain/eggsac) + var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] if(!any_weeds && !hive_weeds) //you need at least some weeds to plant on. to_chat(user, SPAN_XENOWARNING("[src] must be planted on [lowertext(hive.prefix)]weeds.")) return - if(!hive_weeds) + if(!hive_weeds && needs_hive_weeds) to_chat(user, SPAN_XENOWARNING("[src] can only be planted on [lowertext(hive.prefix)]hive weeds.")) return + if(istype(get_area(T), /area/interior)) + to_chat(user, SPAN_XENOWARNING("[src] cannot be planted inside a vehicle.")) + return + + for(var/obj/object in T.contents) + var/obj/effect/alien/egg/xeno_egg = /obj/effect/alien/egg + if(object.layer > initial(xeno_egg.layer)) + to_chat(user, SPAN_XENOWARNING("[src] cannot be planted below objects that would obscure it.")) + return + user.visible_message(SPAN_XENONOTICE("[user] starts planting [src]."), SPAN_XENONOTICE("You start planting [src]."), null, 5) var/plant_time = 35 @@ -117,9 +141,16 @@ return for(var/obj/effect/alien/weeds/weed in T) - if(weed.weed_strength >= WEED_LEVEL_HIVE) + if(weed.weed_strength >= WEED_LEVEL_HIVE || !needs_hive_weeds) user.use_plasma(30) - var/obj/effect/alien/egg/newegg = new /obj/effect/alien/egg(T, hivenumber) + var/obj/effect/alien/egg/newegg + if(weed.weed_strength >= WEED_LEVEL_HIVE) + newegg = new /obj/effect/alien/egg(T, hivenumber) + else if(weed.weed_strength >= WEED_LEVEL_STANDARD) + newegg = new /obj/effect/alien/egg/carrier_egg(T,hivenumber, user) + else + to_chat(user, SPAN_XENOWARNING("[src] can't be planted on these weeds.")) + return newegg.flags_embryo = flags_embryo diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status.dm b/code/modules/mob/living/carbon/xenomorph/hive_status.dm index 4fe1be51bf..6a99c7bdc7 100644 --- a/code/modules/mob/living/carbon/xenomorph/hive_status.dm +++ b/code/modules/mob/living/carbon/xenomorph/hive_status.dm @@ -1,216 +1,1442 @@ -/datum/hive_status_ui - var/name = "Hive Status" +/datum/hive_status + var/name = "Normal Hive" - // Data to pass when rendering the UI (not static) - var/total_xenos - var/list/xeno_counts - var/list/tier_slots - var/list/xeno_vitals - var/list/xeno_keys - var/list/xeno_info - var/hive_location - var/burrowed_larva - var/evilution_level + // Used for the faction of the xenomorph. Not recommended to modify. + var/internal_faction - var/data_initialized = FALSE + /// Short Hive ID as string used in stats reporting + var/reporting_id = "normal" - var/datum/hive_status/assoc_hive = null + var/hivenumber = XENO_HIVE_NORMAL + var/mob/living/carbon/xenomorph/queen/living_xeno_queen + var/egg_planting_range = 15 + var/slashing_allowed = XENO_SLASH_ALLOWED //This initial var allows the queen to turn on or off slashing. Slashing off means harm intent does much less damage. + var/construction_allowed = NORMAL_XENO //Who can place construction nodes for special structures + var/destruction_allowed = NORMAL_XENO //Who can destroy special structures + var/unnesting_allowed = TRUE + var/hive_orders = "" //What orders should the hive have + var/color = null + var/ui_color = null // Color for hive status collapsible buttons and xeno count list + var/prefix = "" + var/queen_leader_limit = 2 + var/list/open_xeno_leader_positions = list(1, 2) // Ordered list of xeno leader positions (indexes in xeno_leader_list) that are not occupied + var/list/xeno_leader_list[2] // Ordered list (i.e. index n holds the nth xeno leader) + var/stored_larva = 0 -/datum/hive_status_ui/New(datum/hive_status/hive) - assoc_hive = hive - update_all_data() - START_PROCESSING(SShive_status, src) + ///used by /datum/hive_status/proc/increase_larva_after_burst() to support non-integer increases to larva + var/partial_larva = 0 + /// Assoc list of free slots available to specific castes + var/list/free_slots = list( + /datum/caste_datum/burrower = 1, + /datum/caste_datum/hivelord = 1, + /datum/caste_datum/carrier = 1 + ) + /// Assoc list of slots currently used by specific castes (for calculating free_slot usage) + var/list/used_slots = list() + /// list of living tier2 xenos + var/list/tier_2_xenos = list() + /// list of living tier3 xenos + var/list/tier_3_xenos = list() + /// list of living xenos + var/list/totalXenos = list() + /// list of previously living xenos (hardrefs currently) + var/list/total_dead_xenos = list() + var/xeno_queen_timer + var/isSlotOpen = TRUE //Set true for starting alerts only after the hive has reached its full potential + var/allowed_nest_distance = 15 //How far away do we allow nests from an ovied Queen. Default 15 tiles. + var/obj/effect/alien/resin/special/pylon/core/hive_location = null //Set to ref every time a core is built, for defining the hive location -/datum/hive_status_ui/process() - update_xeno_vitals() - update_xeno_info(FALSE) - SStgui.update_uis(src) + var/tier_slot_multiplier = 1 + var/larva_gestation_multiplier = 0.25 + var/bonus_larva_spawn_chance = 1 + var/hijack_burrowed_surge = FALSE //at hijack, start spawning lots of burrowed + /// how many burrowed is going to spawn during larva surge + var/hijack_burrowed_left = 0 -// Updates the list tracking how many xenos there are in each tier, and how many there are in total -/datum/hive_status_ui/proc/update_xeno_counts(send_update = TRUE) - xeno_counts = assoc_hive.get_xeno_counts() + var/dynamic_evolution = TRUE + var/evolution_rate = 3 // Only has use if dynamic_evolution is false + var/evolution_bonus = 0 - total_xenos = 0 - for(var/counts in xeno_counts) - for(var/caste in counts) - total_xenos += counts[caste] + var/allow_no_queen_actions = TRUE + var/allow_no_queen_evo = FALSE + var/evolution_without_ovipositor = TRUE //Temporary for the roundstart. + /// Set to false if you want to prevent evolutions into Queens + var/allow_queen_evolve = TRUE + /// Set to true if you want to prevent bursts and spawns of new xenos. Will also prevent healing if the queen no longer exists + var/hardcore = FALSE + /// Set to false if you want to prevent getting burrowed larva from latejoin marines + var/latejoin_burrowed = TRUE + /// If hit limit of larva from pylons + var/hit_larva_pylon_limit = FALSE - if(send_update) - SStgui.update_uis(src) + var/see_humans_on_tacmap = FALSE - xeno_counts[1] -= "Queen" // don't show queen in the amount of xenos + var/list/hive_inherant_traits - // Also update the amount of T2/T3 slots - tier_slots = assoc_hive.get_tier_slots() + // Cultist Info + var/mob/living/carbon/leading_cult_sl -// Updates the hive location using the area name of the defined hive location turf -/datum/hive_status_ui/proc/update_hive_location(send_update = TRUE) - if(!assoc_hive.hive_location) + //List of how many maximum of each special structure you can have + var/list/hive_structures_limit = list( + XENO_STRUCTURE_CORE = 1, + XENO_STRUCTURE_CLUSTER = 8, + XENO_STRUCTURE_EGGMORPH = 6, + XENO_STRUCTURE_RECOVERY = 6, + XENO_STRUCTURE_PYLON = 2, + ) + + var/global/list/hive_structure_types = list( + XENO_STRUCTURE_CORE = /datum/construction_template/xenomorph/core, + XENO_STRUCTURE_CLUSTER = /datum/construction_template/xenomorph/cluster, + XENO_STRUCTURE_EGGMORPH = /datum/construction_template/xenomorph/eggmorph, + XENO_STRUCTURE_RECOVERY = /datum/construction_template/xenomorph/recovery + ) + + var/list/list/hive_structures = list() //Stringref list of structures that have been built + var/list/list/hive_constructions = list() //Stringref list of structures that are being built + + var/datum/hive_status_ui/hive_ui + var/datum/mark_menu_ui/mark_ui + var/datum/hive_faction_ui/faction_ui + + var/list/tunnels = list() + + var/list/allies = list() + + var/list/resin_marks = list() + + var/list/banished_ckeys = list() + + var/hivecore_cooldown = FALSE + + var/need_round_end_check = FALSE + + //Joining as Facehugger vars + /// When can huggers join the round + var/hugger_timelock = 15 MINUTES + /// How many huggers can the hive support + var/playable_hugger_limit = 0 + /// Minimum number of huggers available at any hive size + var/playable_hugger_minimum = 2 + /// This number divides the total xenos counted for slots to give the max number of facehuggers + var/playable_hugger_max_divisor = 4 + + /// How many lesser drones the hive can support + var/lesser_drone_limit = 0 + /// Slots available for lesser drones will never go below this number + var/lesser_drone_minimum = 2 + /// This number divides the total xenos counted for slots to give the max number of lesser drones + var/playable_lesser_drones_max_divisor = 3 + + var/datum/tacmap/drawing/xeno/tacmap + var/minimap_type = MINIMAP_FLAG_XENO + + var/list/available_nicknumbers = list() + + /*Stores the image()'s for the xeno evolution radial menu + To add an image for your caste - add an icon to icons/mob/xenos/radial_xenos.dmi + Icon size should be 32x32, to make them fit within the radial menu border size your icon 22x22 and leave 10px transparent border. + The name of the icon should be the same as the XENO_CASTE_ define for that caste eg. #define XENO_CASTE_DRONE "Drone" + */ + var/static/list/evolution_menu_images + +/datum/hive_status/New() + hive_ui = new(src) + mark_ui = new(src) + faction_ui = new(src) + minimap_type = get_minimap_flag_for_faction(hivenumber) + tacmap = new(src, minimap_type) + if(!internal_faction) + internal_faction = name + for(var/number in 1 to 999) + available_nicknumbers += number + if(hivenumber != XENO_HIVE_NORMAL) return - hive_location = strip_improper(get_area_name(assoc_hive.hive_location)) + if(!evolution_menu_images) + evolution_menu_images = list() + generate_evo_menu_images() - if(send_update) - SStgui.update_uis(src) + RegisterSignal(SSdcs, COMSIG_GLOB_POST_SETUP, PROC_REF(post_setup)) -// Updates the sorted list of all xenos that we use as a key for all other information -/datum/hive_status_ui/proc/update_xeno_keys(send_update = TRUE) - xeno_keys = assoc_hive.get_xeno_keys() +///Generate the image()'s requried for the evolution radial menu. +/datum/hive_status/proc/generate_evo_menu_images() + for(var/datum/caste_datum/caste as anything in subtypesof(/datum/caste_datum)) + evolution_menu_images[initial(caste.caste_type)] = image('icons/mob/xenos/radial_xenos.dmi', initial(caste.caste_type)) - if(send_update) - SStgui.update_uis(src) +/datum/hive_status/proc/post_setup() + SIGNAL_HANDLER -// Mildly related to the above, but only for when xenos are removed from the hive -// If a xeno dies, we don't have to regenerate all xeno info and sort it again, just remove them from the data list -/datum/hive_status_ui/proc/xeno_removed(mob/living/carbon/xenomorph/X) - if(!xeno_keys) + setup_evolution_announcements() + setup_pylon_limits() + +/datum/hive_status/proc/setup_evolution_announcements() + for(var/time in GLOB.xeno_evolve_times) + if(time == "0") + continue + + addtimer(CALLBACK(src, PROC_REF(announce_evolve_available), GLOB.xeno_evolve_times[time]), text2num(time)) + +/// Sets up limits on pylons in New() for potential futureproofing with more static comms +/datum/hive_status/proc/setup_pylon_limits() + hive_structures_limit[XENO_STRUCTURE_PYLON] = length(GLOB.all_static_telecomms_towers) || 2 + +/datum/hive_status/proc/announce_evolve_available(list/datum/caste_datum/available_castes) + + var/list/castes_available = list() + for(var/datum/caste_datum/current_caste as anything in available_castes) + castes_available += initial(current_caste.caste_type) + + var/castes = castes_available.Join(", ") + xeno_message(SPAN_XENOANNOUNCE("The Hive is now strong enough to support: [castes]")) + xeno_maptext("The Hive can now support: [castes]", "Hive Strengthening") + + +// Adds a xeno to this hive +/datum/hive_status/proc/add_xeno(mob/living/carbon/xenomorph/X) + if(!X || !istype(X)) return - for(var/index in 1 to length(xeno_keys)) - var/list/info = xeno_keys[index] - if(info["nicknumber"] == X.nicknumber) + // If the xeno is part of another hive, they should be removed from that one first + if(X.hive && X.hive != src) + X.hive.remove_xeno(X, TRUE) - // tried Remove(), didn't work. *shrug* - xeno_keys[index] = null - xeno_keys -= null - return + // Already in the hive + if(X in totalXenos) + return - SStgui.update_uis(src) + // Can only have one queen. + if(isqueen(X)) + if(!living_xeno_queen && !should_block_game_interaction(X)) // Don't consider xenos in admin level + set_living_xeno_queen(X) -// Updates the list of xeno names, strains and references -/datum/hive_status_ui/proc/update_xeno_info(send_update = TRUE) - xeno_info = assoc_hive.get_xeno_info() + X.hivenumber = hivenumber + X.hive = src - if(send_update) - SStgui.update_uis(src) + X.set_faction(internal_faction) -// Updates vital information about xenos such as health and location. Only info that should be updated regularly -/datum/hive_status_ui/proc/update_xeno_vitals() - xeno_vitals = assoc_hive.get_xeno_vitals() + if(X.hud_list) + X.hud_update() -// Updates how many buried larva there are -/datum/hive_status_ui/proc/update_burrowed_larva(send_update = TRUE) - burrowed_larva = assoc_hive.stored_larva - if(SSxevolution) - evilution_level = SSxevolution.get_evolution_boost_power(assoc_hive.hivenumber) + var/area/A = get_area(X) + if(!should_block_game_interaction(X) || (A.flags_atom & AREA_ALLOW_XENO_JOIN)) + totalXenos += X + if(X.tier == 2) + tier_2_xenos += X + else if(X.tier == 3) + tier_3_xenos += X + + // Xenos are a fuckfest of cross-dependencies of different datums that are initialized at different times + // So don't even bother trying updating UI here without large refactors + +// Removes the xeno from the hive +/datum/hive_status/proc/remove_xeno(mob/living/carbon/xenomorph/xeno, hard = FALSE, light_mode = FALSE) + if(!xeno || !istype(xeno)) + return + + // Make sure the xeno was in the hive in the first place + if(!(xeno in totalXenos)) + return + + // This might be a redundant check now that Queen/Destroy() checks, but doesn't hurt to double check + if(living_xeno_queen == xeno) + var/mob/living/carbon/xenomorph/queen/next_queen = null + for(var/mob/living/carbon/xenomorph/queen/queen in totalXenos) + if(!should_block_game_interaction(queen) && queen != src && !QDELETED(queen)) + next_queen = queen + break + + set_living_xeno_queen(next_queen) // either null or a queen + + // We allow "soft" removals from the hive (the xeno still retains information about the hive) + // This is so that xenos can add themselves back to the hive if they should die or otherwise go "on leave" from the hive + if(hard) + xeno.hivenumber = 0 + xeno.hive = null +#ifndef UNIT_TESTS // Since this is a hard ref, we shouldn't confuse create_and_destroy + else + total_dead_xenos += xeno +#endif + + totalXenos -= xeno + if(xeno.tier == 2) + tier_2_xenos -= xeno + else if(xeno.tier == 3) + tier_3_xenos -= xeno + + // Only handle free slots if the xeno is not in tdome + if(!should_block_game_interaction(xeno)) + var/selected_caste = GLOB.xeno_datum_list[xeno.caste_type]?.type + if(used_slots[selected_caste]) + used_slots[selected_caste]-- + + if(!light_mode) + hive_ui.update_xeno_counts() + hive_ui.xeno_removed(xeno) + +/datum/hive_status/proc/set_living_xeno_queen(mob/living/carbon/xenomorph/queen/queen) + if(!queen) + SStracking.delete_leader("hive_[hivenumber]") + SStracking.stop_tracking("hive_[hivenumber]", living_xeno_queen) + SShive_status.wait = 10 SECONDS + else + SStracking.set_leader("hive_[hivenumber]", queen) + SShive_status.wait = 2 SECONDS + + SEND_SIGNAL(src, COMSIG_HIVE_NEW_QUEEN, queen) + living_xeno_queen = queen + + recalculate_hive() + +/datum/hive_status/proc/recalculate_hive() + //No leaders for a Hive without a Queen! + queen_leader_limit = living_xeno_queen ? 4 : 0 + + if (length(xeno_leader_list) > queen_leader_limit) + var/diff = 0 + for (var/i in queen_leader_limit + 1 to length(xeno_leader_list)) + if(!open_xeno_leader_positions.Remove(i)) + remove_hive_leader(xeno_leader_list[i]) + diff++ + xeno_leader_list.len -= diff // Changing the size of xeno_leader_list needs to go at the end or else it won't iterate through the list properly + else if (length(xeno_leader_list) < queen_leader_limit) + for (var/i in length(xeno_leader_list) + 1 to queen_leader_limit) + open_xeno_leader_positions += i + xeno_leader_list.len++ + + hive_ui.update_all_data() + +/datum/hive_status/proc/add_hive_leader(mob/living/carbon/xenomorph/xeno) + if(!xeno) + return FALSE //How did this even happen? + if(!length(open_xeno_leader_positions)) + return FALSE //Too many leaders already (no available xeno leader positions) + if(xeno.hive_pos != NORMAL_XENO) + return FALSE //Already on the list + var/leader_num = open_xeno_leader_positions[1] + xeno_leader_list[leader_num] = xeno + xeno.hive_pos = XENO_LEADER_HIVE_POS(leader_num) + xeno.handle_xeno_leader_pheromones() + xeno.hud_update() // To add leader star + open_xeno_leader_positions -= leader_num + + xeno.update_minimap_icon() + + give_action(xeno, /datum/action/xeno_action/activable/info_marker) + + hive_ui.update_xeno_keys() + return TRUE + +/datum/hive_status/proc/remove_hive_leader(mob/living/carbon/xenomorph/xeno, light_mode = FALSE) + if(!istype(xeno) || !IS_XENO_LEADER(xeno)) + return FALSE + + var/leader_num = GET_XENO_LEADER_NUM(xeno) + + xeno_leader_list[leader_num] = null + + if(!light_mode) // Don't run side effects during deletions. Better yet, replace all this by signals someday + xeno.hive_pos = NORMAL_XENO + xeno.handle_xeno_leader_pheromones() + xeno.hud_update() // To remove leader star + + // Need to maintain ascending order of open_xeno_leader_positions + for (var/i in 1 to queen_leader_limit) + if (i > length(open_xeno_leader_positions) || open_xeno_leader_positions[i] > leader_num) + open_xeno_leader_positions.Insert(i, leader_num) + break + + if(!light_mode) + hive_ui.update_xeno_keys() + + for(var/obj/effect/alien/resin/marker/leaderless_mark in resin_marks) //no resin_mark limit abuse + if(leaderless_mark.createdby == xeno.nicknumber) + qdel(leaderless_mark) + + xeno.update_minimap_icon() + + remove_action(xeno, /datum/action/xeno_action/activable/info_marker) + + return TRUE + +/datum/hive_status/proc/replace_hive_leader(mob/living/carbon/xenomorph/original, mob/living/carbon/xenomorph/replacement) + if(!replacement || replacement.hive_pos != NORMAL_XENO) + return remove_hive_leader(original) + + var/leader_num = GET_XENO_LEADER_NUM(original) + + xeno_leader_list[leader_num] = replacement + + original.hive_pos = NORMAL_XENO + original.handle_xeno_leader_pheromones() + original.hud_update() // To remove leader star + remove_action(original, /datum/action/xeno_action/activable/info_marker) + + replacement.hive_pos = XENO_LEADER_HIVE_POS(leader_num) + replacement.handle_xeno_leader_pheromones() + replacement.hud_update() // To add leader star + give_action(replacement, /datum/action/xeno_action/activable/info_marker) + + hive_ui.update_xeno_keys() + +/datum/hive_status/proc/handle_xeno_leader_pheromones() + for(var/mob/living/carbon/xenomorph/L in xeno_leader_list) + L.handle_xeno_leader_pheromones() + +/* + * Helper procs for the Hive Status UI + * These are all called by the hive status UI manager to update its data + */ + +// Returns a list of how many of each caste of xeno there are, sorted by tier +/datum/hive_status/proc/get_xeno_counts() + // Every caste is manually defined here so you get + var/list/xeno_counts = list( + // Yes, Queen is technically considered to be tier 0 + list(XENO_CASTE_LARVA = 0, "Queen" = 0), + list(XENO_CASTE_DRONE = 0, XENO_CASTE_RUNNER = 0, XENO_CASTE_SENTINEL = 0, XENO_CASTE_DEFENDER = 0), + list(XENO_CASTE_HIVELORD = 0, XENO_CASTE_BURROWER = 0, XENO_CASTE_CARRIER = 0, XENO_CASTE_LURKER = 0, XENO_CASTE_SPITTER = 0, XENO_CASTE_WARRIOR = 0), + list(XENO_CASTE_BOILER = 0, XENO_CASTE_CRUSHER = 0, XENO_CASTE_PRAETORIAN = 0, XENO_CASTE_RAVAGER = 0) + ) + + for(var/mob/living/carbon/xenomorph/X in totalXenos) + //don't show xenos in the thunderdome when admins test stuff. + if(should_block_game_interaction(X)) + var/area/A = get_area(X) + if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) + continue + + if(X.caste && X.counts_for_slots) + xeno_counts[X.caste.tier+1][X.caste.caste_type]++ + + return xeno_counts + +// Returns a sorted list of some basic info (stuff that's needed for sorting) about all the xenos in the hive +// The idea is that we sort this list, and use it as a "key" for all the other information (especially the nicknumber) +// in the hive status UI. That way we can minimize the amount of sorts performed by only calling this when xenos are created/disposed +/datum/hive_status/proc/get_xeno_keys() + var/list/xenos = list() + + for(var/mob/living/carbon/xenomorph/X in totalXenos) + if(should_block_game_interaction(X)) + var/area/A = get_area(X) + if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) + continue + + if(!(X in GLOB.living_xeno_list)) + continue + + // This looks weird, but in DM adding List A to List B actually adds each item in List B to List A, not List B itself. + // Having a nested list like this sort of tricks it into adding the list instead. + // In this case this results in an array of different 'xeno' dictionaries, rather than just a dictionary. + xenos += list(list( + "nicknumber" = X.nicknumber, + "tier" = X.tier, // This one is only important for sorting + "is_leader" = (IS_XENO_LEADER(X)), + "is_queen" = istype(X.caste, /datum/caste_datum/queen), + "caste_type" = X.caste_type + )) + + // Make it all nice and fancy by sorting the list before returning it + var/list/sorted_keys = sort_xeno_keys(xenos) + if(length(sorted_keys)) + return sorted_keys + return xenos + +// This sorts the xeno info list by multiple criteria. Prioritized in order: +// 1. Queen +// 2. Leaders +// 3. Tier +// It uses a slightly modified insertion sort to accomplish this +/datum/hive_status/proc/sort_xeno_keys(list/xenos) + if(!length(xenos)) + return + + var/list/sorted_list = xenos.Copy() + + if(!length(sorted_list)) + return + + for(var/index in 2 to length(sorted_list)) + var/j = index + + while(j > 1) + var/current = sorted_list[j] + var/prev = sorted_list[j-1] + + // Queen comes first, always + if(current["is_queen"]) + sorted_list.Swap(j-1, j) + j-- + continue + + // don't muck up queen's slot + if(prev["is_queen"]) + j-- + continue + + // Leaders before normal xenos + if(!prev["is_leader"] && current["is_leader"]) + sorted_list.Swap(j-1, j) + j-- + continue + + // Make sure we're only comparing leaders to leaders and non-leaders to non-leaders when sorting + // This means we get leaders sorted first, then non-leaders sorted + // Sort by tier first, higher tiers over lower tiers, and then by name alphabetically + + // Could not think of an elegant way to write this + if(!(current["is_leader"]^prev["is_leader"])\ + && (prev["tier"] < current["tier"]\ + || prev["tier"] == current["tier"] && prev["caste_type"] > current["caste_type"]\ + )) + sorted_list.Swap(j-1, j) + + j-- + + return sorted_list + +// Returns a list with some more info about all xenos in the hive +/datum/hive_status/proc/get_xeno_info() + var/list/xenos = list() + + for(var/mob/living/carbon/xenomorph/X in totalXenos) + if(should_block_game_interaction(X)) + var/area/A = get_area(X) + if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) + continue + + var/xeno_name = X.name + // goddamn fucking larvas with their weird ass maturing system + // its name updates with its icon, unlike other castes which only update the mature/elder, etc. prefix on evolve + if(istype(X, /mob/living/carbon/xenomorph/larva)) + xeno_name = "Larva ([X.nicknumber])" + xenos["[X.nicknumber]"] = list( + "name" = xeno_name, + "strain" = X.get_strain_name(), + "ref" = "\ref[X]" + ) + + return xenos + +/datum/hive_status/proc/set_hive_location(obj/effect/alien/resin/special/pylon/core/C) + if(!C || C == hive_location) + return + var/area/A = get_area(C) + xeno_message(SPAN_XENOANNOUNCE("The Queen has set the hive location as \the [A]."), 3, hivenumber) + hive_location = C + hive_ui.update_hive_location() + +// Returns a list of xeno healths and locations +/datum/hive_status/proc/get_xeno_vitals() + var/list/xenos = list() + + for(var/mob/living/carbon/xenomorph/X in totalXenos) + if(should_block_game_interaction(X)) + var/area/A = get_area(X) + if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) + continue + + if(!(X in GLOB.living_xeno_list)) + continue + + var/area/A = get_area(X) + var/area_name = "Unknown" + if(A) + area_name = A.name + + xenos["[X.nicknumber]"] = list( + "health" = round((X.health / X.maxHealth) * 100, 1), + "area" = area_name, + "is_ssd" = (!X.client) + ) + + return xenos + +#define TIER_3 "3" +#define TIER_2 "2" +#define OPEN_SLOTS "open_slots" +#define GUARANTEED_SLOTS "guaranteed_slots" + +// Returns an assoc list of open slots and guaranteed slots left +/datum/hive_status/proc/get_tier_slots() + var/list/slots = list( + TIER_3 = list( + OPEN_SLOTS = 0, + GUARANTEED_SLOTS = list(), + ), + TIER_2 = list( + OPEN_SLOTS = 0, + GUARANTEED_SLOTS = list(), + ), + ) + + var/used_tier_2_slots = length(tier_2_xenos) + var/used_tier_3_slots = length(tier_3_xenos) + + for(var/caste_path in free_slots) + var/slots_free = free_slots[caste_path] + var/slots_used = used_slots[caste_path] + var/datum/caste_datum/current_caste = caste_path + if(slots_used) + // Don't count any free slots in use + switch(initial(current_caste.tier)) + if(2) + used_tier_2_slots -= min(slots_used, slots_free) + if(3) + used_tier_3_slots -= min(slots_used, slots_free) + if(slots_free <= slots_used) + continue + // Display any free slots available + switch(initial(current_caste.tier)) + if(2) + slots[TIER_2][GUARANTEED_SLOTS][initial(current_caste.caste_type)] = slots_free - slots_used + if(3) + slots[TIER_3][GUARANTEED_SLOTS][initial(current_caste.caste_type)] = slots_free - slots_used + + var/burrowed_factor = min(stored_larva, sqrt(4*stored_larva)) + var/effective_total = floor(burrowed_factor) + for(var/mob/living/carbon/xenomorph/xeno as anything in totalXenos) + if(xeno.counts_for_slots) + effective_total++ + + // Tier 3 slots are always 20% of the total xenos in the hive + slots[TIER_3][OPEN_SLOTS] = max(0, ceil(0.20*effective_total/tier_slot_multiplier) - used_tier_3_slots) + // Tier 2 slots are between 30% and 50% of the hive, depending + // on how many T3s there are. + slots[TIER_2][OPEN_SLOTS] = max(0, ceil(0.5*effective_total/tier_slot_multiplier) - used_tier_2_slots - used_tier_3_slots) + + return slots + +#undef TIER_3 +#undef TIER_2 +#undef OPEN_SLOTS +#undef GUARANTEED_SLOTS + +/datum/hive_status/proc/can_build_structure(structure_name) + if(!structure_name || !hive_structures_limit[structure_name]) + return FALSE + if(get_structure_count(structure_name) >= hive_structures_limit[structure_name]) + return FALSE + return TRUE + +/datum/hive_status/proc/get_structure_count(structure_name) + return length(hive_structures[structure_name]) + length(hive_constructions[structure_name]) + +/datum/hive_status/proc/has_structure(structure_name) + if(!structure_name) + return FALSE + if(LAZYLEN(hive_structures[structure_name])) + return TRUE + return FALSE + +/datum/hive_status/proc/add_construction(obj/effect/alien/resin/construction/S) + if(!S || !S.template) + return FALSE + var/name_ref = initial(S.template.name) + if(!hive_constructions[name_ref]) + hive_constructions[name_ref] = list() + if(length(hive_constructions[name_ref]) >= hive_structures_limit[name_ref]) + return FALSE + hive_constructions[name_ref] += src + return TRUE + +/datum/hive_status/proc/remove_construction(obj/effect/alien/resin/construction/S) + if(!S || !S.template) + return FALSE + var/name_ref = initial(S.template.name) + hive_constructions[name_ref] -= src + return TRUE + +/datum/hive_status/proc/add_special_structure(obj/effect/alien/resin/special/S) + if(!S) + return FALSE + var/name_ref = initial(S.name) + if(!hive_structures[name_ref]) + hive_structures[name_ref] = list() + if(length(hive_structures[name_ref]) >= hive_structures_limit[name_ref]) + return FALSE + hive_structures[name_ref] += S + return TRUE + +/datum/hive_status/proc/remove_special_structure(obj/effect/alien/resin/special/S) + if(!S) + return FALSE + var/name_ref = initial(S.name) + hive_structures[name_ref] -= S + return TRUE + +/datum/hive_status/proc/has_special_structure(name_ref) + if(!name_ref || !LAZYLEN(hive_structures[name_ref])) + return 0 + return length(hive_structures[name_ref]) + +/datum/hive_status/proc/abandon_on_hijack() + var/area/hijacked_dropship = get_area(living_xeno_queen) + var/shipside_humans_weighted_count = 0 + var/xenos_count = 0 + for(var/name_ref in hive_structures) + for(var/obj/effect/alien/resin/special/S in hive_structures[name_ref]) + if(get_area(S) == hijacked_dropship) + continue + S.hijack_delete = TRUE + hive_structures[name_ref] -= S + qdel(S) + for(var/mob/living/carbon/xenomorph/xeno as anything in totalXenos) + if(get_area(xeno) != hijacked_dropship && xeno.loc && is_ground_level(xeno.loc.z)) + if(isfacehugger(xeno) || islesserdrone(xeno)) + to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind.")) + if(length(xeno.stomach_contents)) + xeno.devour_timer = 0 + xeno.handle_stomach_contents() + qdel(xeno) + continue + if(xeno.hunter_data.hunted && !isqueen(xeno)) + to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, seperating you from her hive! You must defend yourself from the headhunter before you can enter hibernation...")) + xeno.set_hive_and_update(XENO_HIVE_FORSAKEN) + else + to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind.")) + if(length(xeno.stomach_contents)) + xeno.devour_timer = 0 + xeno.handle_stomach_contents() + qdel(xeno) + stored_larva++ + continue + if(xeno.tier >= 1) + xenos_count++ + for(var/i in GLOB.alive_mob_list) + var/mob/living/potential_host = i + if(!(potential_host.status_flags & XENO_HOST)) + continue + if(!is_ground_level(potential_host.z) || get_area(potential_host) == hijacked_dropship) + continue + var/obj/item/alien_embryo/A = locate() in potential_host + if(A && A.hivenumber != hivenumber) + continue + for(var/obj/item/alien_embryo/embryo in potential_host) + embryo.hivenumber = XENO_HIVE_FORSAKEN + potential_host.update_med_icon() + for(var/mob/living/carbon/human/current_human as anything in GLOB.alive_human_list) + if(!(isspecieshuman(current_human) || isspeciessynth(current_human))) + continue + var/datum/job/job = GLOB.RoleAuthority.roles_for_mode[current_human.job] + if(!job) + continue + var/turf/turf = get_turf(current_human) + if(is_mainship_level(turf?.z)) + shipside_humans_weighted_count += GLOB.RoleAuthority.calculate_role_weight(job) + hijack_burrowed_surge = TRUE + hijack_burrowed_left = max(ceil(shipside_humans_weighted_count * 0.5) - xenos_count, 5) + hivecore_cooldown = FALSE + xeno_message(SPAN_XENOBOLDNOTICE("The weeds have recovered! A new hive core can be built!"),3,hivenumber) + +/datum/hive_status/proc/free_respawn(client/C) + stored_larva++ + if(!hive_location || !hive_location.spawn_burrowed_larva(C.mob)) + stored_larva-- else - evilution_level = 1 - if(send_update) - SStgui.update_uis(src) - -// Updates all data except burrowed larva -/datum/hive_status_ui/proc/update_all_xeno_data(send_update = TRUE) - update_xeno_counts(FALSE) - update_xeno_vitals() - update_xeno_keys(FALSE) - update_xeno_info(FALSE) - - if(send_update) - SStgui.update_uis(src) - -// Updates all data, including burrowed larva -/datum/hive_status_ui/proc/update_all_data() - data_initialized = TRUE - update_all_xeno_data(FALSE) - update_burrowed_larva(FALSE) - SStgui.update_uis(src) - -/datum/hive_status_ui/ui_state(mob/user) - return GLOB.hive_state[assoc_hive.internal_faction] - -/datum/hive_status_ui/ui_status(mob/user, datum/ui_state/state) + hive_ui.update_burrowed_larva() + +/datum/hive_status/proc/respawn_on_turf(client/xeno_client, turf/spawning_turf) + var/mob/living/carbon/xenomorph/larva/new_xeno = spawn_hivenumber_larva(spawning_turf, hivenumber) + if(isnull(new_xeno)) + return FALSE + + if(!SSticker.mode.transfer_xeno(xeno_client.mob, new_xeno)) + qdel(new_xeno) + return FALSE + + new_xeno.visible_message(SPAN_XENODANGER("A larva suddenly emerges from a dead husk!"), + SPAN_XENOANNOUNCE("The hive has no core! You manage to emerge from your old husk as a larva!")) + msg_admin_niche("[key_name(new_xeno)] respawned at \a [spawning_turf]. [ADMIN_JMP(spawning_turf)]") + playsound(new_xeno, 'sound/effects/xeno_newlarva.ogg', 50, 1) + if(new_xeno.client?.prefs?.toggles_flashing & FLASH_POOLSPAWN) + window_flash(new_xeno.client) + + hive_ui.update_burrowed_larva() + +/datum/hive_status/proc/do_buried_larva_spawn(mob/xeno_candidate) + var/spawning_area + if(hive_location) + spawning_area = hive_location + else if(living_xeno_queen) + spawning_area = living_xeno_queen + else for(var/mob/living/carbon/xenomorpheus as anything in totalXenos) + if(islarva(xenomorpheus) || isxeno_builder(xenomorpheus)) //next to xenos that should be in a safe spot + spawning_area = xenomorpheus + if(!spawning_area) + spawning_area = pick(totalXenos) // FUCK IT JUST GO ANYWHERE + var/list/turf_list + for(var/turf/open/open_turf in orange(3, spawning_area)) + if(istype(open_turf, /turf/open/space)) + continue + LAZYADD(turf_list, open_turf) + // just on the off-chance + if(!LAZYLEN(turf_list)) + return FALSE + var/turf/open/spawning_turf = pick(turf_list) + + var/mob/living/carbon/xenomorph/larva/new_xeno = spawn_hivenumber_larva(spawning_turf, hivenumber) + if(isnull(new_xeno)) + return FALSE + + if(!SSticker.mode.transfer_xeno(xeno_candidate, new_xeno)) + qdel(new_xeno) + return FALSE + new_xeno.visible_message(SPAN_XENODANGER("A larva suddenly burrows out of \the [spawning_turf]!"), + SPAN_XENODANGER("You burrow out of \the [spawning_turf] and awaken from your slumber. For the Hive!")) + msg_admin_niche("[key_name(new_xeno)] burrowed out from \a [spawning_turf]. [ADMIN_JMP(spawning_turf)]") + playsound(new_xeno, 'sound/effects/xeno_newlarva.ogg', 50, 1) + to_chat(new_xeno, SPAN_XENOANNOUNCE("You are a xenomorph larva awakened from slumber!")) + if(new_xeno.client) + if(new_xeno.client?.prefs?.toggles_flashing & FLASH_POOLSPAWN) + window_flash(new_xeno.client) + + stored_larva-- + hive_ui.update_burrowed_larva() + +/mob/living/proc/ally_of_hivenumber(hivenumber) + var/datum/hive_status/indexed_hive = GLOB.hive_datum[hivenumber] + if(!indexed_hive) + return FALSE + + return indexed_hive.is_ally(src) + +/datum/hive_status/proc/is_ally(mob/living/living_mob) + if(isxeno(living_mob)) + var/mob/living/carbon/xenomorph/zenomorf = living_mob + if(zenomorf.hivenumber == hivenumber) + return !zenomorf.banished + + if(!living_mob.faction) + return FALSE + + return faction_is_ally(living_mob.faction) + +/datum/hive_status/proc/faction_is_ally(faction, ignore_queen_check = TRUE) + if(faction == internal_faction) + return TRUE + if(!ignore_queen_check && !living_xeno_queen) + return FALSE + + return allies[faction] + +/datum/hive_status/proc/can_delay_round_end(mob/living/carbon/xenomorph/xeno) + if(HAS_TRAIT(src, TRAIT_NO_HIVE_DELAY)) + return FALSE + return TRUE + +/datum/hive_status/proc/update_hugger_limit() + var/countable_xeno_iterator = 0 + for(var/mob/living/carbon/xenomorph/cycled_xeno as anything in totalXenos) + if(cycled_xeno.counts_for_slots) + countable_xeno_iterator++ + + playable_hugger_limit = max(floor(countable_xeno_iterator / playable_hugger_max_divisor), playable_hugger_minimum) + +/datum/hive_status/proc/can_spawn_as_hugger(mob/dead/observer/user) + if(!GLOB.hive_datum || ! GLOB.hive_datum[hivenumber]) + return FALSE + if(MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO)) + to_chat(user, SPAN_WARNING("Joining as xenos is currently disabled in this mode.")) + return FALSE + if(jobban_isbanned(user, JOB_XENOMORPH)) // User is jobbanned + to_chat(user, SPAN_WARNING("You are banned from playing aliens and cannot spawn as a xenomorph.")) + return FALSE + if(world.time < hugger_timelock) + to_chat(user, SPAN_WARNING("The hive cannot support facehuggers yet...")) + return FALSE + if(world.time - user.timeofdeath < JOIN_AS_FACEHUGGER_DELAY) + var/time_left = floor((user.timeofdeath + JOIN_AS_FACEHUGGER_DELAY - world.time) / 10) + to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a facehugger until 3 minutes have passed ([time_left] seconds remaining).")) + return FALSE + if(length(totalXenos) <= 0) + //This is to prevent people from joining as Forsaken Huggers on the pred ship + to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!")) + return FALSE + for(var/mob_name in banished_ckeys) + if(banished_ckeys[mob_name] == user.ckey) + to_chat(user, SPAN_WARNING("You are banished from the [name], you may not rejoin unless the Queen re-admits you or dies.")) + return FALSE + + update_hugger_limit() + + var/current_hugger_count = 0 + for(var/mob/mob as anything in totalXenos) + if(isfacehugger(mob)) + current_hugger_count++ + if(playable_hugger_limit <= current_hugger_count) + to_chat(user, SPAN_WARNING("\The [GLOB.hive_datum[hivenumber]] cannot support more facehuggers! Limit: [current_hugger_count]/[playable_hugger_limit]")) + return FALSE + + if(tgui_alert(user, "Are you sure you want to become a facehugger?", "Confirmation", list("Yes", "No")) != "Yes") + return FALSE + + if(!user.client) + return FALSE + + return TRUE + +/datum/hive_status/proc/get_current_playable_facehugger_count() + var/count = 0 + for(var/mob/mob as anything in totalXenos) + if(isfacehugger(mob)) + count++ + return count + +/datum/hive_status/proc/spawn_as_hugger(mob/dead/observer/user, atom/A) + var/mob/living/carbon/xenomorph/facehugger/hugger = new /mob/living/carbon/xenomorph/facehugger(A.loc, null, hivenumber) + user.mind.transfer_to(hugger, TRUE) + hugger.visible_message(SPAN_XENODANGER("A facehugger suddenly emerges out of \the [A]!"), SPAN_XENODANGER("You emerge out of \the [A] and awaken from your slumber. For the Hive!")) + playsound(hugger, 'sound/effects/xeno_newlarva.ogg', 25, TRUE) + hugger.generate_name() + hugger.timeofdeath = user.timeofdeath // Keep old death time + +/datum/hive_status/proc/update_lesser_drone_limit() + var/countable_xeno_iterator = 0 + for(var/mob/living/carbon/xenomorph/cycled_xeno as anything in totalXenos) + if(cycled_xeno.counts_for_slots) + countable_xeno_iterator++ + + lesser_drone_limit = max(floor(countable_xeno_iterator / playable_lesser_drones_max_divisor), lesser_drone_minimum) + +/datum/hive_status/proc/can_spawn_as_lesser_drone(mob/dead/observer/user, obj/effect/alien/resin/special/pylon/spawning_pylon) + if(!GLOB.hive_datum || ! GLOB.hive_datum[hivenumber]) + return FALSE + + if(MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO)) + to_chat(user, SPAN_WARNING("Joining as xenos is currently disabled in this mode.")) + return FALSE + + if(jobban_isbanned(user, JOB_XENOMORPH)) // User is jobbanned + to_chat(user, SPAN_WARNING("You are banned from playing aliens and cannot spawn as a xenomorph.")) + return FALSE + + if(world.time - user.timeofdeath < JOIN_AS_LESSER_DRONE_DELAY) + var/time_left = floor((user.timeofdeath + JOIN_AS_LESSER_DRONE_DELAY - world.time) / 10) + to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a lesser drone until 30 seconds have passed ([time_left] seconds remaining).")) + return FALSE + + if(length(totalXenos) <= 0) + to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!")) + return FALSE + + if(!living_xeno_queen) + to_chat(user, SPAN_WARNING("The selected hive does not have a Queen!")) + return FALSE + + if(spawning_pylon.lesser_drone_spawns < 1) + to_chat(user, SPAN_WARNING("The selected core or pylon does not have enough power for a lesser drone!")) + return FALSE + + update_lesser_drone_limit() + + var/current_lesser_drone_count = 0 + for(var/mob/mob as anything in totalXenos) + if(islesserdrone(mob)) + current_lesser_drone_count++ + + if(lesser_drone_limit <= current_lesser_drone_count) + to_chat(user, SPAN_WARNING("[GLOB.hive_datum[hivenumber]] cannot support more lesser drones! Limit: [current_lesser_drone_count]/[lesser_drone_limit]")) + return FALSE + + if(!user.client) + return FALSE + + return TRUE + +// Get amount of real xenos, don't count lessers/huggers +/datum/hive_status/proc/get_real_total_xeno_count() + var/count = 0 + for(var/mob/living/carbon/xenomorph/xeno as anything in totalXenos) + if(xeno.counts_for_slots) + count++ + return count + +// Checks if we hit larva limit +/datum/hive_status/proc/check_if_hit_larva_from_pylon_limit() + var/groundside_humans_weighted_count = 0 + for(var/mob/living/carbon/human/current_human as anything in GLOB.alive_human_list) + if(!(isspecieshuman(current_human) || isspeciessynth(current_human))) + continue + var/datum/job/job = GLOB.RoleAuthority.roles_for_mode[current_human.job] + if(!job) + continue + var/turf/turf = get_turf(current_human) + if(is_ground_level(turf?.z)) + groundside_humans_weighted_count += GLOB.RoleAuthority.calculate_role_weight(job) + hit_larva_pylon_limit = (get_real_total_xeno_count() + stored_larva) > (groundside_humans_weighted_count * ENDGAME_LARVA_CAP_MULTIPLIER) + hive_ui.update_pylon_status() + return hit_larva_pylon_limit + +///Called by /obj/item/alien_embryo when a host is bursting to determine extra larva per burst +/datum/hive_status/proc/increase_larva_after_burst() + var/extra_per_burst = CONFIG_GET(number/extra_larva_per_burst) + partial_larva += extra_per_burst + convert_partial_larva_to_full_larva() + +///Called after times when partial larva are added to process them to stored larva +/datum/hive_status/proc/convert_partial_larva_to_full_larva() + for(var/i = 1 to partial_larva) + partial_larva-- + stored_larva++ + +/datum/hive_status/corrupted + name = "Corrupted Hive" + reporting_id = "corrupted" + hivenumber = XENO_HIVE_CORRUPTED + prefix = "Corrupted " + color = "#80ff80" + ui_color ="#4d994d" + latejoin_burrowed = FALSE + + need_round_end_check = TRUE + + var/list/defectors = list() + var/list/datum/weakref/personal_allies = list() + +/datum/hive_status/corrupted/add_xeno(mob/living/carbon/xenomorph/xeno) + . = ..() + xeno.add_language(LANGUAGE_ENGLISH) + +/datum/hive_status/corrupted/remove_xeno(mob/living/carbon/xenomorph/xeno, hard) . = ..() - if(isobserver(user)) - return UI_INTERACTIVE + xeno.remove_language(LANGUAGE_ENGLISH) + +/datum/hive_status/corrupted/can_delay_round_end(mob/living/carbon/xenomorph/xeno) + if(!faction_is_ally(FACTION_MARINE, TRUE)) + return TRUE + return FALSE + +/datum/hive_status/alpha + name = "Alpha Hive" + reporting_id = "alpha" + hivenumber = XENO_HIVE_ALPHA + prefix = "Alpha " + color = "#ff4040" + ui_color = "#992626" + latejoin_burrowed = FALSE + + dynamic_evolution = FALSE + +/datum/hive_status/bravo + name = "Bravo Hive" + reporting_id = "bravo" + hivenumber = XENO_HIVE_BRAVO + prefix = "Bravo " + color = "#ffff80" + ui_color = "#99994d" + latejoin_burrowed = FALSE + + dynamic_evolution = FALSE + +/datum/hive_status/charlie + name = "Charlie Hive" + reporting_id = "charlie" + hivenumber = XENO_HIVE_CHARLIE + prefix = "Charlie " + color = "#bb40ff" + ui_color = "#702699" + latejoin_burrowed = FALSE + + dynamic_evolution = FALSE + +/datum/hive_status/delta + name = "Delta Hive" + reporting_id = "delta" + hivenumber = XENO_HIVE_DELTA + prefix = "Delta " + color = "#8080ff" + ui_color = "#4d4d99" + latejoin_burrowed = FALSE + + dynamic_evolution = FALSE + +/datum/hive_status/feral + name = "Feral Hive" + reporting_id = "feral" + hivenumber = XENO_HIVE_FERAL + prefix = "Feral " + color = "#828296" + ui_color = "#828296" -/datum/hive_status_ui/ui_data(mob/user) - . = list() - .["total_xenos"] = total_xenos - .["xeno_counts"] = xeno_counts - .["tier_slots"] = tier_slots - .["xeno_keys"] = xeno_keys - .["xeno_info"] = xeno_info - .["xeno_vitals"] = xeno_vitals - .["queen_location"] = get_area_name(assoc_hive.living_xeno_queen) - .["hive_location"] = hive_location - .["burrowed_larva"] = burrowed_larva - .["evilution_level"] = evilution_level + construction_allowed = XENO_NOBODY + destruction_allowed = XENO_NOBODY + dynamic_evolution = FALSE + allow_no_queen_actions = TRUE + allow_no_queen_evo = TRUE + allow_queen_evolve = FALSE + latejoin_burrowed = FALSE - var/mob/living/carbon/xenomorph/queen/Q = user - .["is_in_ovi"] = istype(Q) && Q.ovipositor +/datum/hive_status/forsaken + name = "Forsaken Hive" + reporting_id = "forsaken" + hivenumber = XENO_HIVE_FORSAKEN + prefix = "Forsaken " + color = "#cc8ec4" + ui_color = "#cc8ec4" -/datum/hive_status_ui/ui_static_data(mob/user) - . = list() - .["user_ref"] = REF(user) - .["hive_color"] = assoc_hive.ui_color - .["hive_name"] = assoc_hive.name + dynamic_evolution = FALSE + allow_no_queen_actions = TRUE + allow_no_queen_evo = TRUE + allow_queen_evolve = FALSE + latejoin_burrowed = FALSE -/datum/hive_status_ui/proc/open_hive_status(mob/user) - if(!user) + need_round_end_check = TRUE + +/datum/hive_status/forsaken/can_delay_round_end(mob/living/carbon/xenomorph/xeno) + return FALSE + +/datum/hive_status/tutorial + name = "Tutorial Hive" + reporting_id = "tutorial" + hivenumber = XENO_HIVE_TUTORIAL + prefix = "Inquisitive " + latejoin_burrowed = FALSE + + dynamic_evolution = FALSE + allow_queen_evolve = TRUE + evolution_without_ovipositor = FALSE + allow_no_queen_actions = TRUE + + ///Can have many tutorials going at once. + hive_structures_limit = list( + XENO_STRUCTURE_CORE = 999, + XENO_STRUCTURE_CLUSTER = 999, + XENO_STRUCTURE_EGGMORPH = 999, + XENO_STRUCTURE_RECOVERY = 999, + ) + +/datum/hive_status/tutorial/can_delay_round_end(mob/living/carbon/xenomorph/xeno) + return FALSE + +/datum/hive_status/yautja + name = "Hellhound Pack" + reporting_id = "hellhounds" + hivenumber = XENO_HIVE_YAUTJA + internal_faction = FACTION_YAUTJA + + dynamic_evolution = FALSE + allow_no_queen_actions = TRUE + allow_no_queen_evo = TRUE + allow_queen_evolve = FALSE + latejoin_burrowed = FALSE + + need_round_end_check = TRUE + +/datum/hive_status/yautja/can_delay_round_end(mob/living/carbon/xenomorph/xeno) + return FALSE + +/datum/hive_status/mutated + name = "Mutated Hive" + reporting_id = "mutated" + hivenumber = XENO_HIVE_MUTATED + prefix = "Mutated " + color = "#6abd99" + ui_color = "#6abd99" + + hive_inherant_traits = list(TRAIT_XENONID, TRAIT_NO_COLOR) + latejoin_burrowed = FALSE + +/datum/hive_status/corrupted/tamed + name = "Tamed Hive" + reporting_id = "tamed" + hivenumber = XENO_HIVE_TAMED + prefix = "Tamed " + color = "#80ff80" + + dynamic_evolution = FALSE + allow_no_queen_actions = TRUE + allow_no_queen_evo = TRUE + allow_queen_evolve = FALSE + latejoin_burrowed = FALSE + + var/mob/living/carbon/human/leader + var/list/allied_factions + +/datum/hive_status/corrupted/tamed/New() + . = ..() + hive_structures_limit[XENO_STRUCTURE_EGGMORPH] = 0 + +/datum/hive_status/corrupted/tamed/proc/make_leader(mob/living/carbon/human/H) + if(!istype(H)) return - // Update absolutely all data - if(!data_initialized) - update_all_data() + if(leader) + UnregisterSignal(leader, COMSIG_PARENT_QDELETING) + + leader = H + RegisterSignal(leader, COMSIG_PARENT_QDELETING, PROC_REF(handle_qdelete)) + +/datum/hive_status/corrupted/tamed/proc/handle_qdelete(mob/living/carbon/human/H) + SIGNAL_HANDLER + + if(H == leader) + leader = null + + var/list/faction_groups = H.faction_group + if(faction_groups) + allied_factions = faction_groups.Copy() + if(!(H.faction in allied_factions)) + allied_factions += H.faction + +/datum/hive_status/corrupted/tamed/add_xeno(mob/living/carbon/xenomorph/X) + . = ..() + X.faction_group = allied_factions + +/datum/hive_status/corrupted/tamed/remove_xeno(mob/living/carbon/xenomorph/X, hard) + . = ..() + X.faction_group = list(X.faction) + +/datum/hive_status/corrupted/tamed/is_ally(mob/living/carbon/C) + if(leader) + if(C.faction in leader.faction_group) + return TRUE + + if(C.faction == leader.faction) + return TRUE + else + if(C.faction in allied_factions) + return TRUE + + return ..() + +/datum/hive_status/corrupted/renegade + name = "Renegade Hive" + reporting_id = "renegade" + hivenumber = XENO_HIVE_RENEGADE + prefix = "Renegade " + color = "#ffae00" + ui_color ="#ad732c" - tgui_interact(user) + dynamic_evolution = FALSE + allow_queen_evolve = FALSE + allow_no_queen_evo = TRUE + latejoin_burrowed = FALSE -/datum/hive_status_ui/tgui_interact(mob/user, datum/tgui/ui) - if(!assoc_hive) +/datum/hive_status/corrupted/renegade/New() + . = ..() + hive_structures_limit[XENO_STRUCTURE_EGGMORPH] = 0 + for(var/faction in FACTION_LIST_HUMANOID) //renegades allied to all humanoids, but it mostly affects structures. Their ability to attack humanoids and other xenos (including of the same hive) depends on iff settings + allies[faction] = TRUE + +/datum/hive_status/corrupted/renegade/can_spawn_as_hugger(mob/dead/observer/user) + to_chat(user, SPAN_WARNING("The [name] cannot support facehuggers.")) + return FALSE + +/datum/hive_status/corrupted/renegade/proc/iff_protection_check(mob/living/carbon/xenomorph/xeno, mob/living/carbon/attempt_harm_mob) + if(xeno == attempt_harm_mob) + return TRUE //you cannot hurt yourself... + if(!xeno.iff_tag) + return FALSE //can attack anyone if you don't have iff tag + if(isxeno(attempt_harm_mob)) + var/mob/living/carbon/xenomorph/target_xeno = attempt_harm_mob + if(!target_xeno.iff_tag) + return FALSE //can attack any xeno who don't have iff tag + for(var/faction in xeno.iff_tag.faction_groups) + if(faction in target_xeno.iff_tag.faction_groups) + return TRUE //cannot attack xenos with same iff setting + return FALSE + for(var/faction in xeno.iff_tag.faction_groups) + if(faction in attempt_harm_mob.faction_group) + return TRUE //cannot attack mob if iff is set to at least one of its factions + return FALSE + +/datum/hive_status/corrupted/renegade/faction_is_ally(faction, ignore_queen_check = TRUE) + return ..() + +/datum/hive_status/proc/on_queen_death() //break alliances on queen's death + if(allow_no_queen_actions || living_xeno_queen) return + var/broken_alliances = FALSE + for(var/faction in allies) + if(!allies[faction]) + continue + change_stance(faction, FALSE) + broken_alliances = TRUE + - ui = SStgui.try_update_ui(user, src, ui) - if (!ui) - ui = new(user, src, "HiveStatus", "[assoc_hive.name] Status") - ui.open() - ui.set_autoupdate(FALSE) + if(broken_alliances) + xeno_message(SPAN_XENOANNOUNCE("With the death of the Queen, all alliances have been broken."), 3, hivenumber) -/datum/hive_status_ui/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) +/datum/hive_status/proc/change_stance(faction, should_ally) + if(faction == name) + return + if(allies[faction] == should_ally) + return + allies[faction] = should_ally + + if(living_xeno_queen) + if(allies[faction]) + xeno_message(SPAN_XENOANNOUNCE("Our Queen set up an alliance with [faction]!"), 3, hivenumber) + else + xeno_message(SPAN_XENOANNOUNCE("Our Queen broke the alliance with [faction]!"), 3, hivenumber) + + for(var/number in GLOB.hive_datum) + var/datum/hive_status/target_hive = GLOB.hive_datum[number] + if(target_hive.name != faction) + continue + if(!target_hive.living_xeno_queen && !target_hive.allow_no_queen_actions) + return + if(allies[faction]) + xeno_message(SPAN_XENOANNOUNCE("We sense that [name] [living_xeno_queen ? "Queen " : ""]set up an alliance with us!"), 3, target_hive.hivenumber) + return + + xeno_message(SPAN_XENOANNOUNCE("We sense that [name] [living_xeno_queen ? "Queen " : ""]broke the alliance with us!"), 3, target_hive.hivenumber) + if(target_hive.allies[name]) //autobreak alliance on betrayal + target_hive.change_stance(name, FALSE) + +/datum/hive_status/corrupted/change_stance(faction, should_ally) . = ..() - if(.) + if(allies[faction]) + return + if(!(faction in FACTION_LIST_HUMANOID)) return - switch(action) - if("give_plasma") - var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list - var/mob/living/carbon/xenomorph/xenoSrc = ui.user + for(var/mob/living/carbon/xenomorph/xeno in totalXenos) // handle defecting xenos on betrayal + if(!xeno.iff_tag) + continue + if(!(faction in xeno.iff_tag.faction_groups)) + continue + if(xeno in defectors) + continue + if(xeno.caste_type == XENO_CASTE_QUEEN) + continue + INVOKE_ASYNC(src, PROC_REF(give_defection_choice), xeno, faction) + addtimer(CALLBACK(src, PROC_REF(handle_defectors), faction), 11 SECONDS) - if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || is_admin_level(xenoTarget.z)) - return +/datum/hive_status/corrupted/proc/give_defection_choice(mob/living/carbon/xenomorph/xeno, faction) + if(tgui_alert(xeno, "Our Queen has broken the alliance with the [faction]. The device inside our carapace begins to suppress our connection with the Hive. Do we remove it and stay loyal to her?", "Alliance broken!", list("Stay loyal", "Obey the talls"), 10 SECONDS) == "Obey the talls") + if(!xeno.iff_tag) + to_chat(xeno, SPAN_XENOWARNING("It's too late now. The device is gone and our service to the Queen continues.")) + return + defectors += xeno + xeno.set_hive_and_update(XENO_HIVE_RENEGADE) + to_chat(xeno, SPAN_XENOANNOUNCE("You lost the connection with your Hive. Now you have no Queen, only your masters.")) + to_chat(xeno, SPAN_NOTICE("Your instincts have changed, you seem compelled to protect [english_list(xeno.iff_tag.faction_groups, "no one")].")) + return + xeno.visible_message(SPAN_XENOWARNING("[xeno] rips out [xeno.iff_tag]!"), SPAN_XENOWARNING("We rip out [xeno.iff_tag]! For the Hive!")) + xeno.adjustBruteLoss(50) + xeno.iff_tag.forceMove(get_turf(xeno)) + xeno.iff_tag = null + +/datum/hive_status/corrupted/proc/handle_defectors(faction) + for(var/mob/living/carbon/xenomorph/xeno in totalXenos) + if(!xeno.iff_tag) + continue + if(xeno in defectors) + continue + if(!(faction in xeno.iff_tag.faction_groups)) + continue + xeno.visible_message(SPAN_XENOWARNING("[xeno] rips out [xeno.iff_tag]!"), SPAN_XENOWARNING("We rip out [xeno.iff_tag]! For the hive!")) + xeno.adjustBruteLoss(50) + xeno.iff_tag.forceMove(get_turf(xeno)) + xeno.iff_tag = null + if(!length(defectors)) + return + + xeno_message(SPAN_XENOANNOUNCE("We sense that [english_list(defectors)] turned their backs against their sisters and the Queen in favor of their slavemasters!"), 3, hivenumber) + defectors.Cut() + +/datum/hive_status/corrupted/proc/add_personal_ally(mob/living/ally) + personal_allies += WEAKREF(ally) + ally.status_flags |= CORRUPTED_ALLY + ally.med_hud_set_status() + xeno_message(SPAN_XENOANNOUNCE("Our Queen proclaimed [ally] our ally! We must not harm them."), 3, hivenumber) + +/datum/hive_status/corrupted/proc/remove_personal_ally(datum/weakref/ally_ref) + personal_allies -= ally_ref + var/mob/living/ally = ally_ref.resolve() + if(ally) + ally.status_flags &= ~CORRUPTED_ALLY + ally.med_hud_set_status() + xeno_message(SPAN_XENOANNOUNCE("Our Queen has declared that [ally] is no longer our ally!"), 3, hivenumber) + +/datum/hive_status/corrupted/proc/clear_personal_allies(death = FALSE) + for(var/datum/weakref/ally_ref in personal_allies) + var/mob/living/ally = ally_ref.resolve() + if(!ally) + continue + ally.status_flags &= ~CORRUPTED_ALLY + ally.med_hud_set_status() + personal_allies.Cut() + if(!death) + xeno_message(SPAN_XENOANNOUNCE("Our Queen has broken all personal alliances with the talls! Favoritism is no more."), 3, hivenumber) + return + xeno_message(SPAN_XENOWARNING("With the death of the Queen, her friends no longer matter to us."), 3, hivenumber) + +/datum/hive_status/corrupted/is_ally(mob/living/living_mob) + if(living_mob.status_flags & CORRUPTED_ALLY) + return TRUE + return ..() + +/datum/hive_status/proc/override_evilution(evil, override) + if(SSxevolution) + SSxevolution.override_power(hivenumber, evil, override) + +/datum/hive_status/corrupted/on_queen_death() + ..() + if(!length(personal_allies)) + return + clear_personal_allies(TRUE) - if(xenoSrc.stat == DEAD) - return +//Xeno Resin Mark Shit, the very best place for it too :0) +//Defines at the bottom of this list here will show up at the top in the mark menu +/datum/xeno_mark_define + var/name = "xeno_declare" + var/icon_state = "empty" + var/desc = "Xenos make psychic markers with this meaning as positional lasting communication to eachother" - var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma) - A?.use_ability_wrapper(xenoTarget) +/datum/xeno_mark_define/fortify + name = "Fortify" + desc = "Fortify this area!" + icon_state = "fortify" - if("heal") - var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list - var/mob/living/carbon/xenomorph/xenoSrc = ui.user +/datum/xeno_mark_define/weeds + name = "Need Weeds" + desc = "Need weeds here!" + icon_state = "weed" - if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || is_admin_level(xenoTarget.z)) - return +/datum/xeno_mark_define/nest + name = "Nest" + desc = "Nest enemies here!" + icon_state = "nest" - if(xenoSrc.stat == DEAD) - return +/datum/xeno_mark_define/hosts + name = "Hosts" + desc = "Hosts here!" + icon_state = "hosts" - var/datum/action/xeno_action/A = get_xeno_action_by_type(xenoSrc, /datum/action/xeno_action/activable/queen_heal) - A?.use_ability_wrapper(xenoTarget, TRUE) +/datum/xeno_mark_define/aide + name = "Aide" + desc = "Aide here!" + icon_state = "aide" - if("overwatch") - var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list - var/mob/living/carbon/xenomorph/xenoSrc = ui.user +/datum/xeno_mark_define/defend + name = "Defend" + desc = "Defend the hive here!" + icon_state = "defend" - if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || is_admin_level(xenoTarget.z)) - return +/datum/xeno_mark_define/danger + name = "Danger Warning" + desc = "Caution, danger here!" + icon_state = "danger" - if(xenoSrc.stat == DEAD) - if(isobserver(xenoSrc)) - var/mob/dead/observer/O = xenoSrc - O.ManualFollow(xenoTarget) - return +/datum/xeno_mark_define/rally + name = "Rally" + desc = "Group up here!" + icon_state = "rally" - if(!xenoSrc.check_state(TRUE)) - return +/datum/xeno_mark_define/hold + name = "Hold" + desc = "Hold this area!" + icon_state = "hold" - xenoSrc.overwatch(xenoTarget) +/datum/xeno_mark_define/ambush + name = "Ambush" + desc = "Ambush the enemy here!" + icon_state = "ambush" +/datum/xeno_mark_define/attack + name = "Attack" + desc = "Attack the enemy here!" + icon_state = "attack" diff --git a/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm new file mode 100644 index 0000000000..eca88761ad --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/hive_status_ui.dm @@ -0,0 +1,236 @@ +/datum/hive_status_ui + var/name = "Hive Status" + + // Data to pass when rendering the UI (not static) + var/total_xenos + var/list/xeno_counts + var/list/tier_slots + var/list/xeno_vitals + var/list/xeno_keys + var/list/xeno_info + var/hive_location + var/burrowed_larva + var/evilution_level + var/pylon_status + + var/data_initialized = FALSE + + var/datum/hive_status/assoc_hive = null + +/datum/hive_status_ui/New(datum/hive_status/hive) + assoc_hive = hive + update_all_data() + START_PROCESSING(SShive_status, src) + +/datum/hive_status_ui/process() + update_xeno_vitals() + update_xeno_info(FALSE) + SStgui.update_uis(src) + +// Updates the list tracking how many xenos there are in each tier, and how many there are in total +/datum/hive_status_ui/proc/update_xeno_counts(send_update = TRUE) + xeno_counts = assoc_hive.get_xeno_counts() + + total_xenos = 0 + for(var/counts in xeno_counts) + for(var/caste in counts) + total_xenos += counts[caste] + + if(send_update) + SStgui.update_uis(src) + + xeno_counts[1] -= "Queen" // don't show queen in the amount of xenos + + // Also update the amount of T2/T3 slots + tier_slots = assoc_hive.get_tier_slots() + +// Updates the hive location using the area name of the defined hive location turf +/datum/hive_status_ui/proc/update_hive_location(send_update = TRUE) + if(!assoc_hive.hive_location) + return + + hive_location = strip_improper(get_area_name(assoc_hive.hive_location)) + + if(send_update) + SStgui.update_uis(src) + +// Updates the sorted list of all xenos that we use as a key for all other information +/datum/hive_status_ui/proc/update_xeno_keys(send_update = TRUE) + xeno_keys = assoc_hive.get_xeno_keys() + + if(send_update) + SStgui.update_uis(src) + +// Mildly related to the above, but only for when xenos are removed from the hive +// If a xeno dies, we don't have to regenerate all xeno info and sort it again, just remove them from the data list +/datum/hive_status_ui/proc/xeno_removed(mob/living/carbon/xenomorph/X) + if(!xeno_keys) + return + + for(var/index in 1 to length(xeno_keys)) + var/list/info = xeno_keys[index] + if(info["nicknumber"] == X.nicknumber) + + // tried Remove(), didn't work. *shrug* + xeno_keys[index] = null + xeno_keys -= null + return + + SStgui.update_uis(src) + +// Updates the list of xeno names, strains and references +/datum/hive_status_ui/proc/update_xeno_info(send_update = TRUE) + xeno_info = assoc_hive.get_xeno_info() + + if(send_update) + SStgui.update_uis(src) + +// Updates vital information about xenos such as health and location. Only info that should be updated regularly +/datum/hive_status_ui/proc/update_xeno_vitals() + xeno_vitals = assoc_hive.get_xeno_vitals() + +// Updates how many buried larva there are +/datum/hive_status_ui/proc/update_burrowed_larva(send_update = TRUE) + burrowed_larva = assoc_hive.stored_larva + if(SSxevolution) + evilution_level = SSxevolution.get_evolution_boost_power(assoc_hive.hivenumber) + else + evilution_level = 1 + if(send_update) + SStgui.update_uis(src) + +// Updates all data except burrowed larva +/datum/hive_status_ui/proc/update_all_xeno_data(send_update = TRUE) + update_xeno_counts(FALSE) + update_xeno_vitals() + update_xeno_keys(FALSE) + update_xeno_info(FALSE) + update_pylon_status(FALSE) + + if(send_update) + SStgui.update_uis(src) + +// Updates all data, including burrowed larva +/datum/hive_status_ui/proc/update_all_data() + data_initialized = TRUE + update_all_xeno_data(FALSE) + update_burrowed_larva(FALSE) + update_pylon_status(FALSE) + SStgui.update_uis(src) + +/datum/hive_status_ui/proc/update_pylon_status(send_update = TRUE) + if(assoc_hive.get_structure_count(XENO_STRUCTURE_PYLON) < 1) + pylon_status = "" + else if(assoc_hive.hit_larva_pylon_limit) + pylon_status = "The hive's power has surpassed what the pylons can provide." + else + pylon_status = "Pylons are strengthening our numbers!" + if(send_update) + SStgui.update_uis(src) + +/datum/hive_status_ui/ui_state(mob/user) + return GLOB.hive_state[assoc_hive.internal_faction] + +/datum/hive_status_ui/ui_status(mob/user, datum/ui_state/state) + . = ..() + if(isobserver(user)) + return UI_INTERACTIVE + + // If the Queen died or is otherwise missing. + if(!assoc_hive.living_xeno_queen && !assoc_hive.allow_no_queen_actions) + return UI_CLOSE + +/datum/hive_status_ui/ui_data(mob/user) + . = list() + .["total_xenos"] = total_xenos + .["xeno_counts"] = xeno_counts + .["tier_slots"] = tier_slots + .["xeno_keys"] = xeno_keys + .["xeno_info"] = xeno_info + .["xeno_vitals"] = xeno_vitals + .["queen_location"] = null + if(assoc_hive.living_xeno_queen) + .["queen_location"] = get_area_name(assoc_hive.living_xeno_queen) + .["hive_location"] = hive_location + .["burrowed_larva"] = burrowed_larva + .["evilution_level"] = evilution_level + .["pylon_status"] = pylon_status + + var/mob/living/carbon/xenomorph/queen/Q = user + .["is_in_ovi"] = istype(Q) && Q.ovipositor + +/datum/hive_status_ui/ui_static_data(mob/user) + . = list() + .["user_ref"] = REF(user) + .["hive_color"] = assoc_hive.ui_color + .["hive_name"] = assoc_hive.name + +/datum/hive_status_ui/proc/open_hive_status(mob/user) + if(!user) + return + + // Update absolutely all data + if(!data_initialized) + update_all_data() + + tgui_interact(user) + +/datum/hive_status_ui/tgui_interact(mob/user, datum/tgui/ui) + if(!assoc_hive) + return + + ui = SStgui.try_update_ui(user, src, ui) + if (!ui) + ui = new(user, src, "HiveStatus", "[assoc_hive.name] Status") + ui.open() + ui.set_autoupdate(FALSE) + +/datum/hive_status_ui/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + switch(action) + if("give_plasma") + var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list + var/mob/living/carbon/xenomorph/xenoSrc = ui.user + + if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || should_block_game_interaction(xenoTarget)) + return + + if(xenoSrc.stat == DEAD) + return + + var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_give_plasma) + A?.use_ability_wrapper(xenoTarget) + + if("heal") + var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list + var/mob/living/carbon/xenomorph/xenoSrc = ui.user + + if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || should_block_game_interaction(xenoTarget)) + return + + if(xenoSrc.stat == DEAD) + return + + var/datum/action/xeno_action/A = get_action(xenoSrc, /datum/action/xeno_action/activable/queen_heal) + A?.use_ability_wrapper(xenoTarget, TRUE) + + if("overwatch") + var/mob/living/carbon/xenomorph/xenoTarget = locate(params["target_ref"]) in GLOB.living_xeno_list + var/mob/living/carbon/xenomorph/xenoSrc = ui.user + + if(QDELETED(xenoTarget) || xenoTarget.stat == DEAD || should_block_game_interaction(xenoTarget)) + return + + if(xenoSrc.stat == DEAD) + if(isobserver(xenoSrc)) + var/mob/dead/observer/O = xenoSrc + O.ManualFollow(xenoTarget) + return + + if(!xenoSrc.check_state(TRUE)) + return + + xenoSrc.overwatch(xenoTarget) diff --git a/code/modules/mob/living/carbon/xenomorph/life.dm b/code/modules/mob/living/carbon/xenomorph/life.dm index b5ad08e97a..dc542ebd92 100644 --- a/code/modules/mob/living/carbon/xenomorph/life.dm +++ b/code/modules/mob/living/carbon/xenomorph/life.dm @@ -61,7 +61,7 @@ evolution_stored += progress_amount /mob/living/carbon/xenomorph/proc/evolve_message() - to_chat(src, SPAN_XENODANGER("Your carapace crackles and your tendons strengthen. You are ready to evolve!")) //Makes this bold so the Xeno doesn't miss it + to_chat(src, SPAN_XENODANGER("Our carapace crackles and our tendons strengthen. We are ready to evolve!")) //Makes this bold so the Xeno doesn't miss it playsound_client(client, sound('sound/effects/xeno_evolveready.ogg')) var/datum/action/xeno_action/onclick/evolve/evolve_action = new() @@ -118,7 +118,7 @@ if(use_current_aura || use_leader_aura) for(var/mob/living/carbon/xenomorph/Z as anything in GLOB.living_xeno_list) - if(Z.ignores_pheromones || Z.ignore_aura == current_aura || Z.ignore_aura == leader_current_aura || Z.z != z || get_dist(aura_center, Z) > round(6 + aura_strength * 2) || !HIVE_ALLIED_TO_HIVE(Z.hivenumber, hivenumber)) + if(Z.ignores_pheromones || Z.ignore_aura == current_aura || Z.ignore_aura == leader_current_aura || Z.z != z || get_dist(aura_center, Z) > floor(6 + aura_strength * 2) || !HIVE_ALLIED_TO_HIVE(Z.hivenumber, hivenumber)) continue if(use_leader_aura) Z.affected_by_pheromones(leader_current_aura, leader_aura_strength) @@ -127,7 +127,8 @@ if(frenzy_aura != frenzy_new || warding_aura != warding_new || recovery_aura != recovery_new) frenzy_aura = frenzy_new - warding_aura = warding_new + if(health > crit_health || warding_new > warding_aura || !check_weeds_for_healing()) + warding_aura = warding_new recovery_aura = recovery_new recalculate_move_delay = TRUE hud_set_pheromone() @@ -197,7 +198,7 @@ blinded = TRUE set_stat(UNCONSCIOUS) else - if(!interference)//If their connection to hivemind is affected, their vision should be too. + if(!HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE))//If their connection to hivemind is affected, their vision should be too. blinded = FALSE set_stat(CONSCIOUS) if(regular_update && halloss > 0) @@ -211,17 +212,16 @@ src.ReduceEyeBlur(1) handle_statuses()//natural decrease of stunned, knocked_down, etc... - handle_interference() return TRUE /mob/living/carbon/xenomorph/proc/handle_stomach_contents() //Deal with dissolving/damaging stuff in stomach. - if(stomach_contents.len) + if(length(stomach_contents)) for(var/atom/movable/M in stomach_contents) if(ishuman(M)) if(world.time > devour_timer - 50 && world.time < devour_timer - 30) - to_chat(src, SPAN_WARNING("You're about to regurgitate [M]...")) + to_chat(src, SPAN_WARNING("We're about to regurgitate [M]...")) playsound(loc, 'sound/voice/alien_drool1.ogg', 50, 1) var/mob/living/carbon/human/H = M if(world.time > devour_timer || (H.stat == DEAD && !H.chestburst)) @@ -229,7 +229,7 @@ M.acid_damage++ if(M.acid_damage > 300) - to_chat(src, SPAN_XENODANGER("\The [M] is dissolved in your gut with a gurgle.")) + to_chat(src, SPAN_XENODANGER("\The [M] is dissolved in our gut with a gurgle.")) stomach_contents.Remove(M) qdel(M) @@ -248,7 +248,7 @@ hud_used.alien_armor_display.icon_state = "armor_00" return TRUE - var/severity = HUD_PAIN_STATES_XENO - Ceiling(((max(health, 0) / maxHealth) * HUD_PAIN_STATES_XENO)) + var/severity = HUD_PAIN_STATES_XENO - ceil(((max(health, 0) / maxHealth) * HUD_PAIN_STATES_XENO)) if(severity) overlay_fullscreen("xeno_pain", /atom/movable/screen/fullscreen/xeno_pain, severity) else @@ -268,7 +268,7 @@ return TRUE if(hud_used.healths) - var/health_stacks = Ceiling((health / maxHealth) * HUD_HEALTH_STATES_XENO) + var/health_stacks = ceil((health / maxHealth) * HUD_HEALTH_STATES_XENO) hud_used.healths.icon_state = "health_[health_stacks]" if(health_stacks >= HUD_HEALTH_STATES_XENO) hud_used.healths.icon_state = "health_full" @@ -280,7 +280,7 @@ hud_used.alien_plasma_display.icon_state = "power_display_empty" else var/plasma_stacks = (get_plasma_percentage() * 0.01) * HUD_PLASMA_STATES_XENO - hud_used.alien_plasma_display.icon_state = "power_display_[Ceiling(plasma_stacks)]" + hud_used.alien_plasma_display.icon_state = "power_display_[ceil(plasma_stacks)]" if(plasma_stacks >= HUD_PLASMA_STATES_XENO) hud_used.alien_plasma_display.icon_state = "power_display_full" else if(plasma_stacks <= 0) @@ -288,7 +288,7 @@ if(hud_used.alien_armor_display) var/armor_stacks = min((get_armor_integrity_percentage() * 0.01) * HUD_ARMOR_STATES_XENO, HUD_ARMOR_STATES_XENO) - hud_used.alien_armor_display.icon_state = "armor_[Floor(armor_stacks)]0" + hud_used.alien_armor_display.icon_state = "armor_[floor(armor_stacks)]0" return TRUE @@ -338,7 +338,7 @@ Make sure their actual health updates immediately.*/ if(!hive) return // can't heal if you have no hive, sorry bud plasma_stored += plasma_gain * plasma_max / 100 if(recovery_aura) - plasma_stored += round(plasma_gain * plasma_max / 100 * recovery_aura/4) //Divided by four because it gets massive fast. 1 is equivalent to weed regen! Only the strongest pheromones should bypass weeds + plasma_stored += floor(plasma_gain * plasma_max / 100 * recovery_aura/4) //Divided by four because it gets massive fast. 1 is equivalent to weed regen! Only the strongest pheromones should bypass weeds if(health < maxHealth && !hardcore && is_hive_living(hive) && last_hit_time + caste.heal_delay_time <= world.time) if(body_position == LYING_DOWN || resting) if(health < 0) //Unconscious @@ -379,7 +379,7 @@ Make sure their actual health updates immediately.*/ plasma_stored = 0 if(current_aura) current_aura = null - to_chat(src, SPAN_WARNING("You have run out of pheromones and stopped emitting pheromones.")) + to_chat(src, SPAN_WARNING("We have run out of plasma and stopped emitting pheromones.")) for(var/X in actions) var/datum/action/A = X @@ -388,63 +388,40 @@ Make sure their actual health updates immediately.*/ hud_set_plasma() //update plasma amount on the plasma mob_hud /mob/living/carbon/xenomorph/proc/queen_locator() - if(!hud_used || !hud_used.locate_leader) + if(!hud_used?.locate_leader) return - var/atom/movable/screen/queen_locator/QL = hud_used.locate_leader - if(!loc) - QL.icon_state = "trackoff" + var/atom/movable/screen/queen_locator/locator = hud_used.locate_leader + if(!loc || !hive) + locator.reset_tracking() return var/atom/tracking_atom - switch(QL.track_state[1]) + switch(locator.tracker_type) if(TRACKER_QUEEN) - if(!hive || !hive.living_xeno_queen) - QL.icon_state = "trackoff" - return tracking_atom = hive.living_xeno_queen if(TRACKER_HIVE) - if(!hive || !hive.hive_location) - QL.icon_state = "trackoff" - return tracking_atom = hive.hive_location if(TRACKER_LEADER) - if(!QL.track_state[2]) - QL.icon_state = "trackoff" - return - - var/leader_tracker = QL.track_state[2] - - if(!hive || !hive.xeno_leader_list) - QL.icon_state = "trackoff" - return - if(leader_tracker > hive.xeno_leader_list.len) - QL.icon_state = "trackoff" - return - if(!hive.xeno_leader_list[leader_tracker]) - QL.icon_state = "trackoff" - return - tracking_atom = hive.xeno_leader_list[leader_tracker] + var/atom/leader = locator.tracking_ref?.resolve() + // If the leader exists, and is actually in the leader list. + if(leader && (leader in hive.xeno_leader_list)) + tracking_atom = leader if(TRACKER_TUNNEL) - if(!QL.track_state[2]) - QL.icon_state = "trackoff" - return + tracking_atom = locator.tracking_ref?.resolve() - var/tunnel_tracker = QL.track_state[2] + // If the atom can't be found/has been deleted. + if(!tracking_atom) + var/already_tracking_queen = (locator.tracker_type == TRACKER_QUEEN) - if(!hive || !hive.tunnels) - QL.icon_state = "trackoff" - return - if(tunnel_tracker > hive.tunnels.len) - QL.icon_state = "trackoff" - return - if(!hive.tunnels[tunnel_tracker]) - QL.icon_state = "trackoff" - return - tracking_atom = hive.tunnels[tunnel_tracker] + // Reset the tracker back to the queen. + locator.reset_tracking() - if(!tracking_atom) - QL.icon_state = "trackoff" + // If it wasn't the queen that couldn't be found above, try again with her as the target. + // This is just to avoid the tracker going blank for one life tick. + // (There's no risk of an infinite loop here since `locator.tracker_type` just got set to `TRACKER_QUEEN`.) + if(!already_tracking_queen) + queen_locator() return if(tracking_atom.loc.z != loc.z && SSinterior.in_interior(tracking_atom)) @@ -454,15 +431,15 @@ Make sure their actual health updates immediately.*/ tracking_atom = exterior if(tracking_atom.loc.z != loc.z || get_dist(src, tracking_atom) < 1 || src == tracking_atom) - QL.icon_state = "trackondirect" + locator.icon_state = "trackondirect" else - var/area/A = get_area(loc) - var/area/QA = get_area(tracking_atom.loc) - if(A.fake_zlevel == QA.fake_zlevel) - QL.setDir(get_dir(src, tracking_atom)) - QL.icon_state = "trackon" + var/area/our_area = get_area(loc) + var/area/target_area = get_area(tracking_atom.loc) + if(our_area.fake_zlevel == target_area.fake_zlevel) + locator.setDir(Get_Compass_Dir(src, tracking_atom)) + locator.icon_state = "trackon" else - QL.icon_state = "trackondirect" + locator.icon_state = "trackondirect" /mob/living/carbon/xenomorph/proc/mark_locator() if(!hud_used || !hud_used.locate_marker || !tracked_marker.loc || !loc) @@ -488,7 +465,7 @@ Make sure their actual health updates immediately.*/ ML.overlays |= image('icons/mob/hud/xeno_markers.dmi', "all_direction") return else if(A.fake_zlevel == MA.fake_zlevel) //normal tracking - ML.setDir(get_dir(src, tracked_marker_turf)) + ML.setDir(Get_Compass_Dir(src, tracked_marker_turf)) ML.overlays |= image(tracked_marker.seenMeaning, "pixel_y" = 0) ML.overlays |= image('icons/mob/hud/xeno_markers.dmi', "center_glow") ML.overlays |= image('icons/mob/hud/xeno_markers.dmi', "direction") @@ -501,7 +478,7 @@ Make sure their actual health updates immediately.*/ if(status_flags & GODMODE) health = maxHealth set_stat(CONSCIOUS) - else if(xeno_shields.len != 0) + else if(length(xeno_shields) != 0) overlay_shields() health = maxHealth - getFireLoss() - getBruteLoss() else @@ -519,7 +496,7 @@ Make sure their actual health updates immediately.*/ if(hardcore) async_gib(last_damage_data) else if(world.time > next_grace_time && stat == CONSCIOUS) - var/grace_time = crit_grace_time > 0 ? crit_grace_time + (1 SECONDS * max(round(warding_aura - 1), 0)) : 0 + var/grace_time = crit_grace_time > 0 ? crit_grace_time + (1 SECONDS * max(floor(warding_aura - 1), 0)) : 0 if(grace_time) addtimer(CALLBACK(src, PROC_REF(handle_crit)), grace_time) else @@ -532,8 +509,7 @@ Make sure their actual health updates immediately.*/ /mob/living/carbon/xenomorph/proc/handle_crit() if(stat <= CONSCIOUS && !gibbing) set_stat(UNCONSCIOUS) - - SEND_SIGNAL(src, COMSIG_XENO_HANDLE_CRIT) + SEND_SIGNAL(src, COMSIG_XENO_ENTER_CRIT) /mob/living/carbon/xenomorph/set_stat(new_stat) . = ..() @@ -567,15 +543,6 @@ Make sure their actual health updates immediately.*/ amount *= 2 / 3 return ..() -/mob/living/carbon/xenomorph/proc/handle_interference() - if(interference) - interference = max(interference-2, 0) - - if(observed_xeno && observed_xeno.interference) - overwatch(observed_xeno,TRUE) - - return interference - /mob/living/carbon/xenomorph/handle_slowed() if(slowed) adjust_effect(life_slow_reduction, SLOW, EFFECT_FLAG_LIFE) diff --git a/code/modules/mob/living/carbon/xenomorph/mark_menu.dm b/code/modules/mob/living/carbon/xenomorph/mark_menu.dm index 5f7c1f8bc8..dd63f8a4fa 100644 --- a/code/modules/mob/living/carbon/xenomorph/mark_menu.dm +++ b/code/modules/mob/living/carbon/xenomorph/mark_menu.dm @@ -180,7 +180,7 @@ var/list/possible_xenos = list() possible_xenos |= FunkTownOhyea for(var/mob/living/carbon/xenomorph/T in GLOB.living_xeno_list) - if (T != X && !is_admin_level(T.z) && X.hivenumber == T.hivenumber) + if (T != X && !should_block_game_interaction(T) && X.hivenumber == T.hivenumber) possible_xenos += T var/mob/living/carbon/xenomorph/selected_xeno = tgui_input_list(X, "Target", "Watch which xenomorph?", possible_xenos, theme="hive_status") @@ -195,7 +195,7 @@ . = TRUE update_all_data() return - if (!selected_xeno || QDELETED(selected_xeno) || selected_xeno.stat == DEAD || is_admin_level(selected_xeno.z) || !X.check_state(1)) + if (!selected_xeno || QDELETED(selected_xeno) || selected_xeno.stat == DEAD || should_block_game_interaction(selected_xeno) || !X.check_state(1)) return else selected_xeno.stop_tracking_resin_mark(FALSE, TRUE) diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/mutator.dm b/code/modules/mob/living/carbon/xenomorph/mutators/mutator.dm deleted file mode 100644 index 6736bdb041..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/mutators/mutator.dm +++ /dev/null @@ -1,103 +0,0 @@ -#define MUTATOR_COST_CHEAP 2 -#define MUTATOR_COST_MODERATE 3 -#define MUTATOR_COST_EXPENSIVE 1 - -//Individual mutator -/datum/xeno_mutator - var/name = "Mutator name" //Name of the mutator, should be short but informative - var/description = "Mutator description" //Description to be displayed on purchase - var/flavor_description = null // Optional flavor text to be shown. Semi-OOC - var/cost = MUTATOR_COST_CHEAP //How expensive the mutator is - var/required_level = 0 //Level of xeno upgrade required to unlock - var/unique = TRUE //True if you can only buy it once - var/death_persistent = FALSE //True if the mutators persists after Queen death (aka, mostly for "once ever" mutators) - var/hive_only = FALSE //Hive-only mutators - var/individual_only = FALSE //Individual-only mutators - var/keystone = FALSE //Xeno can only take one Keystone mutator - var/flaw = FALSE //Flaws give you points back, but you can only take one of them - var/list/caste_whitelist = list() //List of the only castes that can buy this mutator - - // Rework by Fourkhan - 4/26/19, redone again c. 2/2020 - // HOW TO ADD A NEW MUTATOR - // Step 0: Write an action(s) - // the "handler" procs go in the appropriate caste's subfolder under the "ABILITIES" file. - // the actual ACTION procs go in the appropriate caste's subfolder under the "POWERS" file. - // Any constants you need to access for your strain should be in the behavior holder and - // accessed using a cast to it using the mutator_type variable as defined below. (Or using an istype of the behavior holder) - // vars that absolutely must be held on the xenos themselves can be added to the Xenomorph class itself. - // Be sure to follow the spec in xeno_action.dm as far as setting up xeno_cooldown is concerned. - // - // Step 1: Write the Behavior Delegate datum IF NECESSARY - // the "behavior holder" datum defines all unique behavior and state for each xeno/strain. It works by embedding a number of 'hooks' - // for example, if you want to store bonus damage and apply it on slashes, behavior delegates are the way to do it. - // in common procs that call back to Xeno features. See other behavior delegates for examples. Afterward, set the behavior_delegate_type - // var on the strain datum to indicate which behavior holder to apply to your strain. - // - // Step 1: Copy/paste another datum definiton and edit it for your strain - // make sure to populate each of the variables listed above (at least as much as other strains) - // - // Step 2: Write the apply_mutator proc. - // FIRST: populate mutator_actions_to_add and mutator_actions_to_remove according to that documentation. - // THEN: write the body of the apply_mutator method according to your speficiations - // THEN: call mutator_update_actions on your xeno - // call recalculate actions on your mutator set (this should be auto populated) - // You should probably also call recalculate_everything() on the host Xeno to make sure you don't end up with any - // strange transient values. - // THEN: Set the mutation_type var on the host xeno to "name" the strain. - // FINALLY: Call apply_behavior_holder() to add the behavior datum to the new Xeno. - // - // You're done! - - // Both should be set to null when their use is not necessary. - /// A list of PATHS of actions that need to be removed when a xeno takes the mutator. - var/list/mutator_actions_to_remove //Actions to remove when the mutator is added - /// A list of PATHS of actions to be ADDED when the Xeno takes the mutator. - var/list/mutator_actions_to_add //Actions to add when the mutator is added - - // Type of the behavior datum to add - var/behavior_delegate_type = null // Specify this on subtypes - -/datum/xeno_mutator/New() - . = ..() - name = "[name]" - - -/datum/xeno_mutator/proc/apply_mutator(datum/mutator_set/MS) - if(!MS.can_purchase_mutator(name)) - return FALSE - if(MS.remaining_points < cost) - return FALSE - MS.remaining_points -= cost - MS.purchased_mutators += name - - if(istype(MS, /datum/mutator_set/individual_mutators)) - var/datum/mutator_set/individual_mutators/IS = MS - if(IS.xeno) - IS.xeno.hive.hive_ui.update_xeno_info() - - return TRUE - -// Sets up actions for when a mutator is taken -// Must be called at the end of any mutator that changes available actions -// (read: Strains) apply_mutator proc for the mutator to work correctly. -/datum/xeno_mutator/proc/mutator_update_actions(mob/living/carbon/xenomorph/X) - if(mutator_actions_to_remove) - for(var/action_path in mutator_actions_to_remove) - remove_action(X, action_path) - if(mutator_actions_to_add) - for(var/action_path in mutator_actions_to_add) - give_action(X, action_path) - -// Substitutes the existing behavior delegate for the strain-defined one. -/datum/xeno_mutator/proc/apply_behavior_holder(mob/living/carbon/xenomorph/X) - if (!istype(X)) - log_debug("Null mob handed to apply_behavior_holder. Tell the devs.") - log_admin("Null mob handed to apply_behavior_holder. Tell the devs.") - message_admins("Null mob handed to apply_behavior_holder. Tell the devs.") - - if (behavior_delegate_type) - if(X.behavior_delegate) - qdel(X.behavior_delegate) - X.behavior_delegate = new behavior_delegate_type() - X.behavior_delegate.bound_xeno = X - X.behavior_delegate.add_to_xeno() diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/carrier/eggsac.dm b/code/modules/mob/living/carbon/xenomorph/mutators/strains/carrier/eggsac.dm deleted file mode 100644 index 524571fc0d..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/carrier/eggsac.dm +++ /dev/null @@ -1,79 +0,0 @@ -/datum/xeno_mutator/eggsac - name = "STRAIN: Carrier - Eggsac" - description = "In exchange for your ability to store huggers and place traps, you gain larger plasma stores, strong pheromones, and the ability to lay eggs by using your plasma stores. In addition, you can now carry twelve eggs at once and can place eggs one pace further than normal" - flavor_description = "An egg is always an adventure; the next one may be different." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_CARRIER) - mutator_actions_to_remove = list( - /datum/action/xeno_action/activable/throw_hugger, - /datum/action/xeno_action/onclick/place_trap, - /datum/action/xeno_action/activable/retrieve_egg, // readding it so it gets at the end of the ability list - /datum/action/xeno_action/onclick/set_hugger_reserve, - ) - mutator_actions_to_add = list( - /datum/action/xeno_action/active_toggle/generate_egg, - /datum/action/xeno_action/activable/retrieve_egg, // readding it so it gets at the end of the ability list - ) - keystone = TRUE - -/datum/xeno_mutator/eggsac/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (!.) - return - var/mob/living/carbon/xenomorph/carrier/carrier = mutator_set.xeno - if(!istype(carrier)) - return FALSE - carrier.plasma_types = list(PLASMA_EGG) - carrier.phero_modifier += XENO_PHERO_MOD_LARGE // praetorian level pheremones - carrier.plasmapool_modifier = 1.2 - mutator_update_actions(carrier) - mutator_set.recalculate_actions(description, flavor_description) - carrier.recalculate_pheromones() - carrier.recalculate_plasma() - if(carrier.huggers_cur > 0) - playsound(carrier.loc, 'sound/voice/alien_facehugger_dies.ogg', 25, 1) - carrier.huggers_cur = 0 - carrier.huggers_max = 0 - carrier.update_hugger_overlays() - carrier.mutation_type = CARRIER_EGGSAC - carrier.update_eggsac_overlays() - carrier.eggs_max = 12 - carrier.egg_planting_range = 2 - return TRUE - -/datum/action/xeno_action/active_toggle/generate_egg - name = "Generate Eggs (50)" - action_icon_state = "lay_egg" - ability_name = "generate egg" - action_type = XENO_ACTION_CLICK - plasma_cost = 50 - plasma_use_per_tick = 15 - - action_start_message = "You start forming eggs." - action_end_message = "You don't have enough plasma to support forming eggs." - var/egg_generation_progress = 0 - - ability_primacy = XENO_PRIMARY_ACTION_3 - -/datum/action/xeno_action/active_toggle/generate_egg/should_use_plasma() - . = FALSE - var/mob/living/carbon/xenomorph/carrier/xeno = owner - if(!xeno) - return - if(xeno.eggs_cur < xeno.eggs_max) - return TRUE - -/datum/action/xeno_action/active_toggle/generate_egg/life_tick() - . = ..() - if(.) - var/mob/living/carbon/xenomorph/carrier/xeno = owner - if(!xeno) - return - if(xeno.eggs_cur < xeno.eggs_max) - egg_generation_progress++ - if(egg_generation_progress >= 15) - egg_generation_progress = 0 - xeno.eggs_cur++ - to_chat(xeno, SPAN_XENONOTICE("You generate a egg. Now sheltering: [xeno.eggs_cur] / [xeno.eggs_max].")) - xeno.update_icons() diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/defender/steel_crest.dm b/code/modules/mob/living/carbon/xenomorph/mutators/strains/defender/steel_crest.dm deleted file mode 100644 index 957e7f1b89..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/defender/steel_crest.dm +++ /dev/null @@ -1,44 +0,0 @@ -/datum/xeno_mutator/steel_crest - name = "STRAIN: Defender - Steel Crest" - description = "You trade your tail sweep and a small amount of your slash damage for slightly increased headbutt knockback and damage and the ability to slowly move and headbutt while fortified. Along with this, you gain a unique ability to accumulate damage, and use it to recover a slight amount of health and refresh your tail slam." - flavor_description = "To handle yourself, use your head. To handle others, use your head." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_DEFENDER) - mutator_actions_to_remove = list( - /datum/action/xeno_action/onclick/tail_sweep, - ) - mutator_actions_to_add = list( - /datum/action/xeno_action/onclick/soak, - ) - behavior_delegate_type = /datum/behavior_delegate/defender_steel_crest - keystone = TRUE - -/datum/xeno_mutator/steel_crest/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - - var/mob/living/carbon/xenomorph/defender/defender = mutator_set.xeno - defender.mutation_type = DEFENDER_STEELCREST - defender.mutation_icon_state = DEFENDER_STEELCREST - defender.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL - if(defender.fortify) - defender.ability_speed_modifier += 2.5 - mutator_update_actions(defender) - mutator_set.recalculate_actions(description, flavor_description) - defender.recalculate_stats() - -/datum/behavior_delegate/defender_steel_crest - name = "Steel Crest Defender Behavior Delegate" - -/datum/behavior_delegate/defender_steel_crest/on_update_icons() - if(bound_xeno.stat == DEAD) - return - - if(bound_xeno.fortify) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Steelcrest Defender Fortify" - return TRUE - if(bound_xeno.crest_defense) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Steelcrest Defender Crest" - return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/healer.dm b/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/healer.dm deleted file mode 100644 index 2e562ceac6..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/healer.dm +++ /dev/null @@ -1,175 +0,0 @@ -/datum/xeno_mutator/healer - name = "STRAIN: Drone - Healer" - description = "You lose your choice of resin secretions, a chunk of your slash damage, and you will experience a slighty-increased difficulty in tackling tallhosts in exchange for strong pheromones, the ability to use a bit of your health to plant a maximum of three lesser resin fruits, and the ability to heal your sisters' wounds by secreting a regenerative resin salve by using your vital fluids and a fifth of your plasma. Be wary, this is a dangerous process; overexert yourself and you may exhaust yourself to unconsciousness, or die..." - flavor_description = "To the very last drop, your blood belongs to The Hive; share it with your sisters to keep them fighting." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_DRONE) //Only drone. - mutator_actions_to_remove = list( - /datum/action/xeno_action/activable/secrete_resin, - /datum/action/xeno_action/onclick/choose_resin, - /datum/action/xeno_action/activable/transfer_plasma, - ) - mutator_actions_to_add = list( - /datum/action/xeno_action/onclick/plant_resin_fruit, // Second macro. Resin fruits belong to Gardener, but Healer has a minor variant. - /datum/action/xeno_action/activable/apply_salve, //Third macro, heal over time ability. - /datum/action/xeno_action/activable/transfer_plasma/healer, //Fourth macro, an improved plasma transfer. - ) - keystone = TRUE - behavior_delegate_type = /datum/behavior_delegate/drone_healer - - -/datum/xeno_mutator/healer/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - - var/mob/living/carbon/xenomorph/drone/drone = mutator_set.xeno - drone.mutation_type = DRONE_HEALER - drone.phero_modifier += XENO_PHERO_MOD_LARGE - drone.plasma_types += PLASMA_PHEROMONE - drone.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL - - drone.max_placeable = 3 - drone.available_fruits = list(/obj/effect/alien/resin/fruit) - drone.selected_fruit = /obj/effect/alien/resin/fruit - drone.tackle_chance_modifier -= 5 - mutator_update_actions(drone) - apply_behavior_holder(drone) - mutator_set.recalculate_actions(description, flavor_description) - drone.recalculate_health() - drone.recalculate_damage() - drone.recalculate_pheromones() - drone.recalculate_tackle() - -/* - Improved Plasma Transfer -*/ - -/datum/action/xeno_action/activable/transfer_plasma/healer //Improved plasma transfer, but not as much as Hivey. - ability_primacy = XENO_PRIMARY_ACTION_4 - plasma_transfer_amount = 100 - transfer_delay = 15 - max_range = 1 - -/* - Apply Resin Salve -*/ - -/datum/action/xeno_action/activable/apply_salve - name = "Apply Resin Salve" - action_icon_state = "apply_salve" - ability_name = "Apply Resin Salve" - var/health_transfer_amount = 100 - var/max_range = 1 - var/damage_taken_mod = 0.75 - macro_path = /datum/action/xeno_action/verb/verb_apply_salve - action_type = XENO_ACTION_CLICK - ability_primacy = XENO_PRIMARY_ACTION_3 - -/datum/action/xeno_action/activable/apply_salve/use_ability(atom/target_atom) - var/mob/living/carbon/xenomorph/xeno = owner - xeno.xeno_apply_salve(target_atom, health_transfer_amount, max_range, damage_taken_mod) - return ..() - -/datum/action/xeno_action/verb/verb_apply_salve() - set category = "Alien" - set name = "Apply Resin Salve" - set hidden = TRUE - var/action_name = "Apply Resin Salve" - handle_xeno_macro(src, action_name) - -/mob/living/carbon/xenomorph/proc/xeno_apply_salve(mob/living/carbon/xenomorph/target_xeno, amount = 100, max_range = 1, damage_taken_mod = 0.75) - - if(!check_plasma(amount * 2)) - return - - if(!istype(target_xeno)) - return - - if(target_xeno == src) - to_chat(src, SPAN_XENOWARNING("You can't heal yourself with your own resin salve!")) - return - - if(!check_state()) - return - - if(SEND_SIGNAL(target_xeno, COMSIG_XENO_PRE_HEAL) & COMPONENT_CANCEL_XENO_HEAL) - to_chat(src, SPAN_XENOWARNING("Extinguish [target_xeno] first or the flames will burn your resin salve away!")) - return - - if(!can_not_harm(target_xeno)) //We don't wanna heal hostile hives, but we do want to heal our allies! - to_chat(src, SPAN_XENOWARNING("[target_xeno] is hostile to your hive! Go find one of your sisters or allies!")) - return - - if(!isturf(loc)) - to_chat(src, SPAN_XENOWARNING("You can't apply your resin salve from here!")) - return - - if(get_dist(src, target_xeno) > max_range) - to_chat(src, SPAN_XENOWARNING("You need to be closer to [target_xeno] to apply your resin salve!")) - return - - if(target_xeno.stat == DEAD) - to_chat(src, SPAN_XENOWARNING("[target_xeno] is dead!")) - return - - if(target_xeno.health >= target_xeno.maxHealth) - to_chat(src, SPAN_XENOWARNING("[target_xeno] is already at max health!")) - return - -///Tiny xenos (Larva and Facehuggers), don't need as much health so don't cost as much. - if(target_xeno.mob_size == 0) - amount = amount * 0.15 - damage_taken_mod = 1 - -//Forces an equivalent exchange of health between healers so they do not spam heal each other to full health. - if(target_xeno.mutation_type == DRONE_HEALER) - damage_taken_mod = 1 - - face_atom(target_xeno) - adjustBruteLoss(amount * damage_taken_mod) - use_plasma(amount * 2) - updatehealth() - new /datum/effects/heal_over_time(target_xeno, amount, 10, 1) - target_xeno.xeno_jitter(1 SECONDS) - target_xeno.flick_heal_overlay(10 SECONDS, "#00be6f") - to_chat(target_xeno, SPAN_XENOWARNING("[src] covers your wounds with a regenerative resin salve. You feel reinvigorated!")) - to_chat(src, SPAN_XENOWARNING("You regurgitate your vital fluids and some plasma to create a regenerative resin salve and apply it to [target_xeno]'s wounds. You feel weakened...")) - playsound(src, "alien_drool", 25) - var/datum/behavior_delegate/drone_healer/healer_delegate = src.behavior_delegate - healer_delegate.salve_applied_recently = TRUE - update_icons() - addtimer(CALLBACK(healer_delegate, /datum/behavior_delegate/drone_healer/proc/un_salve), 10 SECONDS, TIMER_OVERRIDE|TIMER_UNIQUE) - -/datum/behavior_delegate/drone_healer - name = "Healer Drone Behavior Delegate" - - var/salve_applied_recently = FALSE - var/mutable_appearance/salve_applied_icon - -/datum/behavior_delegate/drone_healer/on_update_icons() - if(!salve_applied_icon) - salve_applied_icon = mutable_appearance('icons/mob/xenos/drone_strain_overlays.dmi',"Healer Drone Walking") - - bound_xeno.overlays -= salve_applied_icon - salve_applied_icon.overlays.Cut() - - if(!salve_applied_recently) - return - - if(bound_xeno.stat == DEAD) - salve_applied_icon.icon_state = "Healer Drone Dead" - else if(bound_xeno.body_position == LYING_DOWN) - if(!HAS_TRAIT(bound_xeno, TRAIT_INCAPACITATED) && !HAS_TRAIT(bound_xeno, TRAIT_FLOORED)) - salve_applied_icon.icon_state = "Healer Drone Sleeping" - else - salve_applied_icon.icon_state = "Healer Drone Knocked Down" - else - salve_applied_icon.icon_state = "Healer Drone Walking" - - bound_xeno.overlays += salve_applied_icon - -/datum/behavior_delegate/drone_healer/proc/un_salve() - salve_applied_recently = FALSE - bound_xeno.update_icons() diff --git a/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm b/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm index bad467288e..380e9ba5fb 100644 --- a/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm +++ b/code/modules/mob/living/carbon/xenomorph/resin_constructions.dm @@ -191,7 +191,7 @@ GLOBAL_VAR_INIT(resin_lz_allowed, FALSE) return FALSE var/wall_support = FALSE - for(var/D in cardinal) + for(var/D in GLOB.cardinals) var/turf/CT = get_step(T, D) if(CT) if(CT.density) @@ -336,11 +336,11 @@ GLOBAL_VAR_INIT(resin_lz_allowed, FALSE) construction_name = "thick resin membrane" build_path = /obj/structure/alien/movable_wall/membrane/thick -// Remote Resin Nodes for originally coded for Resin Whisperers +// Remote Weed Nodes for originally coded for Resin Whisperers /datum/resin_construction/resin_obj/resin_node - name = "Resin Node" + name = "Weed Node" desc = "Channel energy to spread our influence." - construction_name = "resin node" + construction_name = "weed node" cost = (XENO_RESIN_MEMBRANE_THICK_COST * 2) // 3x the cost of a thick membrane. At the time of coding that is 95*2 = 190 build_path = /obj/effect/alien/weeds/node diff --git a/code/modules/mob/living/carbon/xenomorph/say.dm b/code/modules/mob/living/carbon/xenomorph/say.dm index 47e560b809..9f99cdb454 100644 --- a/code/modules/mob/living/carbon/xenomorph/say.dm +++ b/code/modules/mob/living/carbon/xenomorph/say.dm @@ -1,7 +1,7 @@ /mob/living/carbon/xenomorph/say(message) var/verb = "says" var/forced = 0 - var/message_range = world_view_size + var/message_range = GLOB.world_view_size if(client) if(client.prefs.muted & MUTE_IC) @@ -16,24 +16,20 @@ if(stat == UNCONSCIOUS) return //Unconscious? Nope. - if(HAS_TRAIT(src, TRAIT_DAZED)) - to_chat(src, SPAN_WARNING("You are too dazed to talk.")) - return - if(copytext(message, 1, 2) == "*") if(!findtext(message, "*", 2)) //Second asterisk means it is markup for *bold*, not an *emote. return emote(lowertext(copytext(message, 2)), intentional = TRUE) var/datum/language/speaking = null if(length(message) >= 2) - if(can_hivemind_speak && copytext(message,1,2) == ";" && languages.len) + if(can_hivemind_speak && copytext(message,1,2) == ";" && length(languages)) for(var/datum/language/L in languages) if(L.flags & HIVEMIND) verb = L.speech_verb speaking = L break var/channel_prefix = copytext(message, 1, 3) - if(languages.len) + if(length(languages)) for(var/datum/language/L in languages) if(lowertext(channel_prefix) == ":[L.key]" || lowertext(channel_prefix) == ".[L.key]") verb = L.speech_verb @@ -94,8 +90,11 @@ //General proc for hivemind. Lame, but effective. /mob/living/carbon/xenomorph/proc/hivemind_talk(message) - if(interference) - to_chat(src, SPAN_WARNING("A headhunter temporarily cut off your psychic connection!")) + if(HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_WARNING("Our psychic connection has been temporarily disabled!")) + return + + if(SEND_SIGNAL(src, COMSIG_XENO_TRY_HIVEMIND_TALK, message) & COMPONENT_OVERRIDE_HIVEMIND_TALK) return hivemind_broadcast(message, hive) diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/behavior_delegate.dm b/code/modules/mob/living/carbon/xenomorph/strains/behavior_delegate.dm similarity index 100% rename from code/modules/mob/living/carbon/xenomorph/mutators/behavior_delegate.dm rename to code/modules/mob/living/carbon/xenomorph/strains/behavior_delegate.dm diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/boiler/trapper.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm similarity index 73% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/boiler/trapper.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm index c14d2c6773..857a769693 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/boiler/trapper.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/boiler/trapper.dm @@ -1,40 +1,33 @@ +/datum/xeno_strain/trapper + name = BOILER_TRAPPER + description = "You trade your ability to bombard, lance, and dump your acid in order to gain some speed and the ability to create acid explosions and restrain enemies within them. With your longer-range vision, set up traps that immobilize your opponents and place acid mines which deal damage to enemies and barricades and reduce the cooldown of your trap deployment for every enemy hit. Finally, hit enemies with your Acid Shotgun ability which adds a stack of insight to empower the next trap you place once you reach a maximum of ten insight. A point-blank shot or a shot on a stunned target will instantly apply ten stacks." + flavor_description = "The battlefield is my canvas, this one, my painter. Melt them where they stand." -/datum/xeno_mutator/trapper - name = "STRAIN: Boiler - Trapper" - description = "You trade your ability to bombard, lance, and dump your acid in order to gain some speed and the ability to create acid explosions and restrain talls within them. With your longer-range vision, set up traps that immobilize your opponents and place acid mines which deal damage to talls and barricades and reduce the cooldown of your trap deployment for every tall hit. Finally, hit talls with your Acid Shotgun ability which adds a stack of insight to empower the next trap you place once you reach a maximum of ten insight. A point-blank shot or a shot on a stunned target will instantly apply ten stacks." - flavor_description = "Hsss, I love the smell of burnin' tallhost flesh in the mornin'." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_BOILER) //Only boiler. - mutator_actions_to_remove = list( + actions_to_remove = list( /datum/action/xeno_action/activable/xeno_spit/bombard, /datum/action/xeno_action/onclick/shift_spits/boiler, /datum/action/xeno_action/activable/spray_acid/boiler, /datum/action/xeno_action/onclick/toggle_long_range/boiler, /datum/action/xeno_action/onclick/acid_shroud, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/boiler_trap, /datum/action/xeno_action/activable/acid_mine, /datum/action/xeno_action/activable/acid_shotgun, /datum/action/xeno_action/onclick/toggle_long_range/trapper, ) - keystone = TRUE behavior_delegate_type = /datum/behavior_delegate/boiler_trapper -/datum/xeno_mutator/trapper/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if(. == 0) - return +/datum/xeno_strain/trapper/apply_strain(mob/living/carbon/xenomorph/boiler/boiler) + if(!istype(boiler)) + return FALSE - var/mob/living/carbon/xenomorph/boiler/boiler = mutator_set.xeno if(boiler.is_zoomed) boiler.zoom_out() boiler.tileoffset = 0 boiler.viewsize = TRAPPER_VIEWRANGE - boiler.mutation_type = BOILER_TRAPPER boiler.plasma_types -= PLASMA_NEUROTOXIN boiler.armor_modifier -= XENO_ARMOR_MOD_LARGE // no armor boiler.health_modifier -= XENO_HEALTH_MOD_MED @@ -42,12 +35,6 @@ boiler.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 // compensating for base buffs boiler.recalculate_everything() - apply_behavior_holder(boiler) - - mutator_update_actions(boiler) - mutator_set.recalculate_actions(description, flavor_description) - - /datum/behavior_delegate/boiler_trapper name = "Boiler Trapper Behavior Delegate" @@ -86,7 +73,7 @@ found = trap break - var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/boiler_trap) + var/datum/action/xeno_action/activable/boiler_trap/trap_ability = get_action(bound_xeno, /datum/action/xeno_action/activable/boiler_trap) if (found) target_human.apply_armoured_damage(bonus_damage_shotgun_trapped, ARMOR_BIO, BURN) trap_ability.empowering_charge_counter = trap_ability.empower_charge_max diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/carrier/eggsac.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/carrier/eggsac.dm new file mode 100644 index 0000000000..61c0380384 --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/carrier/eggsac.dm @@ -0,0 +1,128 @@ +/datum/xeno_strain/eggsac + name = CARRIER_EGGSAC + description = "In exchange for your ability to store huggers and place traps, you gain larger plasma stores, strong pheromones, and the ability to lay eggs by using your plasma stores. In addition, you can now carry twelve eggs at once and can place eggs one pace further than normal. \n\nYou can also place a small number of fragile eggs on normal weeds. These eggs have a lifetime of five minutes while you remain within 14 tiles. Or one minute if you leave this range." + flavor_description = "An egg is always an adventure; the next one may be different." + icon_state_prefix = "Eggsac" + + actions_to_remove = list( + /datum/action/xeno_action/activable/throw_hugger, + /datum/action/xeno_action/onclick/place_trap, + /datum/action/xeno_action/activable/retrieve_egg, // readding it so it gets at the end of the ability list + /datum/action/xeno_action/onclick/set_hugger_reserve, + ) + actions_to_add = list( + /datum/action/xeno_action/active_toggle/generate_egg, + /datum/action/xeno_action/activable/retrieve_egg, // readding it so it gets at the end of the ability list + ) + + behavior_delegate_type = /datum/behavior_delegate/carrier_eggsac + +/datum/xeno_strain/eggsac/apply_strain(mob/living/carbon/xenomorph/carrier/carrier) + carrier.plasma_types = list(PLASMA_EGG) + carrier.phero_modifier += XENO_PHERO_MOD_LARGE // praetorian level pheremones + carrier.recalculate_plasma() + carrier.recalculate_pheromones() + + if(carrier.huggers_cur) + playsound(carrier.loc, 'sound/voice/alien_facehugger_dies.ogg', 25, TRUE) + carrier.huggers_cur = 0 + carrier.huggers_max = 0 + carrier.update_hugger_overlays() + carrier.eggs_max = 12 + carrier.egg_planting_range = 2 + carrier.update_eggsac_overlays() + +#define EGGSAC_OFF_WEED_EGGCAP 4 +#define EGGSAC_EGG_SUSTAIN_DISTANCE 14 + +/datum/behavior_delegate/carrier_eggsac + name = "Eggsac Carrier Behavior Delegate" + ///List of /obj/effect/alien/egg/carrier_egg sustained by the carrier on normal weeds + var/list/eggs_sustained = list() + ///Total number of eggs which can be sustained defined as EGGSAC_OFF_WEED_EGGCAP + var/egg_sustain_cap = EGGSAC_OFF_WEED_EGGCAP + ///Distance from the egg that the carrier can go before it stops sustaining it + var/sustain_distance = EGGSAC_EGG_SUSTAIN_DISTANCE + +/datum/behavior_delegate/carrier_eggsac/append_to_stat() + . = list() + . += "Eggs sustained: [length(eggs_sustained)] / [egg_sustain_cap]" + +/datum/behavior_delegate/carrier_eggsac/on_update_icons() + var/mob/living/carbon/xenomorph/carrier/bound_carrier = bound_xeno + bound_carrier.update_eggsac_overlays() + +/datum/behavior_delegate/carrier_eggsac/on_life() + if(length(eggs_sustained) > egg_sustain_cap) + var/obj/effect/alien/egg/carrier_egg/my_egg = eggs_sustained[1] + if(my_egg) + remove_egg_owner(my_egg) + my_egg.start_unstoppable_decay() + to_chat(bound_xeno, SPAN_XENOWARNING("You can only sustain [egg_sustain_cap] eggs off hive weeds! Your oldest placed egg is decaying rapidly.")) + + for(var/obj/effect/alien/egg/carrier_egg/my_egg as anything in eggs_sustained) + //Get the distance from us to our sustained egg + if(get_dist(bound_xeno, my_egg) <= sustain_distance) + my_egg.last_refreshed = world.time + else + my_egg.check_decay() + +///Remove owner of egg +/datum/behavior_delegate/carrier_eggsac/proc/remove_egg_owner(obj/effect/alien/egg/carrier_egg/egg) + if(!egg.owner || egg.owner != bound_xeno) + return + eggs_sustained -= egg + egg.owner = null + +/datum/behavior_delegate/carrier_eggsac/handle_death(mob/M) + for(var/obj/effect/alien/egg/carrier_egg/my_egg as anything in eggs_sustained) + remove_egg_owner(my_egg) + my_egg.start_unstoppable_decay() + + M.visible_message(SPAN_XENOWARNING("[M] throes as its eggsac bursts into a mess of acid!")) + playsound(M.loc, 'sound/effects/alien_egg_burst.ogg', 25, TRUE) + +///Remove all references to src in eggs_sustained +/datum/behavior_delegate/carrier_eggsac/Destroy() + for(var/obj/effect/alien/egg/carrier_egg/my_egg as anything in eggs_sustained) + my_egg.owner = null + return ..() + +/datum/action/xeno_action/active_toggle/generate_egg + name = "Generate Eggs (50)" + action_icon_state = "lay_egg" + ability_name = "generate egg" + action_type = XENO_ACTION_CLICK + plasma_cost = 50 + plasma_use_per_tick = 15 + + action_start_message = "You start forming eggs." + action_end_message = "We don't have enough plasma to support forming eggs." + var/egg_generation_progress = 0 + + ability_primacy = XENO_PRIMARY_ACTION_3 + +/datum/action/xeno_action/active_toggle/generate_egg/should_use_plasma() + . = FALSE + var/mob/living/carbon/xenomorph/carrier/xeno = owner + if(!xeno) + return + if(xeno.eggs_cur < xeno.eggs_max) + return TRUE + +/datum/action/xeno_action/active_toggle/generate_egg/life_tick() + . = ..() + if(.) + var/mob/living/carbon/xenomorph/carrier/xeno = owner + if(!xeno) + return + if(xeno.eggs_cur < xeno.eggs_max) + egg_generation_progress++ + if(egg_generation_progress >= 15) + egg_generation_progress = 0 + xeno.eggs_cur++ + to_chat(xeno, SPAN_XENONOTICE("We generate an egg. Now sheltering: [xeno.eggs_cur] / [xeno.eggs_max].")) + xeno.update_icons() + +#undef EGGSAC_OFF_WEED_EGGCAP +#undef EGGSAC_EGG_SUSTAIN_DISTANCE diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/crusher/charger.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/crusher/charger.dm similarity index 81% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/crusher/charger.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/crusher/charger.dm index 9e8bb6a3ea..06d8690171 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/crusher/charger.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/crusher/charger.dm @@ -1,10 +1,8 @@ -// // Specific momentum based damage defines #define CHARGER_DESTROY charger_ability.momentum * 40 #define CHARGER_DAMAGE_CADE charger_ability.momentum * 22 #define CHARGER_DAMAGE_SENTRY charger_ability.momentum * 9 -#define CHARGER_DAMAGE_MG charger_ability.momentum * 15 // Momentum loss defines. 8 is maximum momentum @@ -14,32 +12,26 @@ #define CCA_MOMENTUM_LOSS_MIN 1 -/datum/xeno_mutator/charger - name = "STRAIN: Crusher - Charger" - description = "In exchange for your shield, a little bit of your armor and damage, your slowdown resist from autospitters, your influence under frenzy pheromones, your stomp no longer knocking down talls, and your ability to lock your direction, you gain a considerable amount of health, some speed, your stomp does extra damage when stomping over a grounded tall, and your charge is now manually-controlled and momentum-based; the further you go, the more damage and speed you will gain until you achieve maximum momentum, indicated by your roar. In addition, your armor is now directional, being the toughest on the front, weaker on the sides, and weakest from the back. In return, you gain an ability to tumble to pass through talls and avoid enemy fire, and an ability to forcefully move enemies via ramming into them." - flavor_description = "We're just getting started. Nothing stops this train. Nothing." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_CRUSHER) - mutator_actions_to_remove = list ( +/datum/xeno_strain/charger + name = CRUSHER_CHARGER + description = "In exchange for your shield, a little bit of your armor and damage, your slowdown resist from turrets, your influence under frenzy pheromones, your stomp no longer knocking down talls, and your ability to lock your direction, you gain a considerable amount of health, some speed, your stomp does extra damage when stomping over a grounded tall, and your charge is now manually-controlled and momentum-based; the further you go, the more damage and speed you will gain until you achieve maximum momentum, indicated by your roar. In addition, your armor is now directional, being the toughest on the front, weaker on the sides, and weakest from the back. In return, you gain an ability to tumble to pass through enemies and avoid enemy fire, and an ability to forcefully move enemies via ramming into them." + flavor_description = "Nothing stops this hive. This one will become both the immovable object and the unstoppable force." + + actions_to_remove = list( /datum/action/xeno_action/activable/pounce/crusher_charge, + /datum/action/xeno_action/onclick/crusher_stomp, /datum/action/xeno_action/onclick/crusher_shield, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/onclick/charger_charge, /datum/action/xeno_action/activable/tumble, + /datum/action/xeno_action/onclick/crusher_stomp, /datum/action/xeno_action/activable/fling/charger, ) - keystone = TRUE - behavior_delegate_type = /datum/behavior_delegate/crusher_charger -/datum/xeno_mutator/charger/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return + behavior_delegate_type = /datum/behavior_delegate/crusher_charger - var/mob/living/carbon/xenomorph/crusher/crusher = mutator_set.xeno - crusher.mutation_type = CRUSHER_CHARGER +/datum/xeno_strain/charger/apply_strain(mob/living/carbon/xenomorph/crusher/crusher) crusher.small_explosives_stun = FALSE crusher.health_modifier += XENO_HEALTH_MOD_LARGE crusher.speed_modifier += XENO_SPEED_FASTMOD_TIER_3 @@ -47,19 +39,13 @@ crusher.damage_modifier -= XENO_DAMAGE_MOD_SMALL crusher.ignore_aura = "frenzy" // no funny crushers going 7 morbillion kilometers per second crusher.phero_modifier = -crusher.caste.aura_strength - crusher.recalculate_pheromones() - mutator_update_actions(crusher) - mutator_set.recalculate_actions(description, flavor_description) - apply_behavior_holder(crusher) crusher.recalculate_everything() /datum/behavior_delegate/crusher_charger name = "Charger Crusher Behavior Delegate" var/frontal_armor = 30 - var/side_armor = 20 - - var/aoe_slash_damage_reduction = 0.40 + var/side_armor = 15 /datum/behavior_delegate/crusher_charger/add_to_xeno() RegisterSignal(bound_xeno, COMSIG_MOB_SET_FACE_DIR, PROC_REF(cancel_dir_lock)) @@ -69,38 +55,6 @@ SIGNAL_HANDLER return COMPONENT_CANCEL_SET_FACE_DIR -/datum/behavior_delegate/crusher_charger/melee_attack_additional_effects_target(mob/living/carbon/A) - - if (!isxeno_human(A)) - return - - new /datum/effects/xeno_slow(A, bound_xeno, , , 20) - - var/damage = bound_xeno.melee_damage_upper * aoe_slash_damage_reduction - - var/base_cdr_amount = 15 - var/cdr_amount = base_cdr_amount - for (var/mob/living/carbon/H in orange(1, A)) - if (H.stat == DEAD) - continue - - if(!isxeno_human(H) || bound_xeno.can_not_harm(H)) - continue - - cdr_amount += 5 - - bound_xeno.visible_message(SPAN_DANGER("[bound_xeno] slashes [H]!"), \ - SPAN_DANGER("You slash [H]!"), null, null, CHAT_TYPE_XENO_COMBAT) - - bound_xeno.flick_attack_overlay(H, "slash") - - H.last_damage_data = create_cause_data(initial(bound_xeno.name), bound_xeno) - H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, bound_xeno.zone_selected) - - var/datum/action/xeno_action/onclick/crusher_stomp/cAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/onclick/crusher_stomp) - if (!cAction.action_cooldown_check()) - cAction.reduce_cooldown(cdr_amount) - /datum/behavior_delegate/crusher_charger/proc/apply_directional_armor(mob/living/carbon/xenomorph/xeno, list/damagedata) SIGNAL_HANDLER var/projectile_direction = damagedata["direction"] @@ -115,7 +69,7 @@ /datum/behavior_delegate/crusher_charger/on_update_icons() if(HAS_TRAIT(bound_xeno, TRAIT_CHARGING) && bound_xeno.body_position == STANDING_UP) - bound_xeno.icon_state = "[bound_xeno.mutation_icon_state || bound_xeno.mutation_type] Crusher Charging" + bound_xeno.icon_state = "[bound_xeno.get_strain_icon()] Crusher Charging" return TRUE // Fallback proc for shit that doesn't have a collision def @@ -134,7 +88,7 @@ charger_ability.stop_momentum() return - health -= CHARGER_DESTROY * 2 //Usually knocks it down. + health -= CHARGER_DESTROY //Usually knocks it down. healthcheck() if(QDELETED(src)) @@ -372,14 +326,14 @@ attack_log += text("\[[time_stamp()]\] was xeno charged by [xeno] ([xeno.ckey])") xeno.attack_log += text("\[[time_stamp()]\] xeno charged [src] ([src.ckey])") log_attack("[xeno] ([xeno.ckey]) xeno charged [src] ([src.ckey])") - var/momentum_mult = 7 + var/momentum_mult = 5 if(charger_ability.momentum == charger_ability.max_momentum) - momentum_mult = 10 + momentum_mult = 8 take_overall_armored_damage(charger_ability.momentum * momentum_mult, ARMOR_MELEE, BRUTE, 60, 13) // Giving AP because this spreads damage out and then applies armor to them apply_armoured_damage(charger_ability.momentum * momentum_mult/4, ARMOR_MELEE, BRUTE,"chest") xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") ) var/knockdown = 1 if(charger_ability.momentum == charger_ability.max_momentum) @@ -395,7 +349,7 @@ if(LinkBlocked(src, cur_turf, target_turf)) ram_dir = REVERSE_DIR(ram_dir) step(src, ram_dir, charger_ability.momentum * 0.5) -// charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) + charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) return XENO_CHARGE_TRY_MOVE // Fellow xenos @@ -417,8 +371,8 @@ if(HAS_TRAIT(src, TRAIT_CHARGING)) apply_effect(2, WEAKEN) xeno.apply_effect(2, WEAKEN) - src.throw_atom(pick(cardinal),1,3,xeno,TRUE) - xeno.throw_atom(pick(cardinal),1,3,xeno,TRUE) + src.throw_atom(pick(GLOB.cardinals),1,3,xeno,TRUE) + xeno.throw_atom(pick(GLOB.cardinals),1,3,xeno,TRUE) charger_ability.stop_momentum() // We assume the other crusher'sparks handle_charge_collision() kicks in and stuns us too. playsound(get_turf(xeno), 'sound/effects/bang.ogg', 25, 0) return @@ -433,7 +387,7 @@ apply_effect(1, WEAKEN) // brief flicker stun src.throw_atom(src.loc,1,3,xeno,TRUE) step(src, ram_dir, charger_ability.momentum * 0.5) -// charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) + charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) return XENO_CHARGE_TRY_MOVE charger_ability.stop_momentum() @@ -449,8 +403,8 @@ momentum_mult = 8 take_overall_damage(charger_ability.momentum * momentum_mult) xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") ) var/knockdown = 1 if(charger_ability.momentum == charger_ability.max_momentum) @@ -502,8 +456,8 @@ var/datum/effect_system/spark_spread/sparks = new sparks.set_up(5, 1, loc) xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") ) if(health <= CHARGER_DAMAGE_SENTRY) new /obj/effect/spawner/gibspawner/robot(src.loc) // if we goin down ,we going down with a show. @@ -520,37 +474,78 @@ // Marine MGs /obj/structure/machinery/m56d_hmg/handle_charge_collision(mob/living/carbon/xenomorph/xeno, datum/action/xeno_action/onclick/charger_charge/charger_ability) - if(charger_ability.momentum > CCA_MOMENTUM_LOSS_MIN) - CrusherImpact() - var/datum/effect_system/spark_spread/sparks = new - update_health(charger_ability.momentum * 15) - if(operator) operator.emote("pain") - sparks.set_up(1, 1, loc) - sparks.start() - xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") - ) - playsound(src, "sound/effects/metal_crash.ogg", 25, TRUE) - if(istype(src,/obj/structure/machinery/m56d_hmg/auto)) // we don't want to charge it to the point of downgrading it (: - var/obj/item/device/m2c_gun/HMG = new(src.loc) - HMG.health = src.health - transfer_label_component(HMG) - HMG.rounds = src.rounds //Inherent the amount of ammo we had. - HMG.update_icon() - qdel(src) - else - var/obj/item/device/m56d_gun/HMG = new(src.loc) // note: find a better way than a copy pasted else statement - HMG.health = src.health - transfer_label_component(HMG) - HMG.rounds = src.rounds //Inherent the amount of ammo we had. - HMG.has_mount = TRUE - HMG.update_icon() - qdel(src) //Now we clean up the constructed gun. + if(charger_ability.momentum <= CCA_MOMENTUM_LOSS_MIN) + charger_ability.stop_momentum() + return + + CrusherImpact() + update_health(charger_ability.momentum * 15) + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(1, 1, loc) + sparks.start() + xeno.visible_message( + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") + ) + playsound(src, "sound/effects/metal_crash.ogg", 25, TRUE) + if(QDELETED(src)) + // The crash destroyed it charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) //Lose one turfs worth of speed return XENO_CHARGE_TRY_MOVE - charger_ability.stop_momentum() + + // Undeploy + if(istype(src, /obj/structure/machinery/m56d_hmg/auto)) // we don't want to charge it to the point of downgrading it (: + var/obj/item/device/m2c_gun/HMG = new(loc) + HMG.health = health + transfer_label_component(HMG) + HMG.rounds = rounds + HMG.update_icon() + qdel(src) + else + var/obj/item/device/m56d_gun/HMG = new(loc) + HMG.health = health + transfer_label_component(HMG) + HMG.rounds = rounds + HMG.has_mount = TRUE + HMG.update_icon() + qdel(src) //Now we clean up the constructed gun. + +/obj/structure/machinery/m56d_post/handle_charge_collision(mob/living/carbon/xenomorph/xeno, datum/action/xeno_action/onclick/charger_charge/charger_ability) + if(charger_ability.momentum <= CCA_MOMENTUM_LOSS_MIN) + charger_ability.stop_momentum() + return + + update_health(charger_ability.momentum * 15) + var/datum/effect_system/spark_spread/sparks = new + sparks.set_up(1, 1, loc) + sparks.start() + xeno.visible_message( + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") + ) + playsound(src, "sound/effects/metal_crash.ogg", 25, TRUE) + + if(QDELETED(src)) + // The crash destroyed it + charger_ability.lose_momentum(CCA_MOMENTUM_LOSS_MIN) //Lose one turfs worth of speed + return XENO_CHARGE_TRY_MOVE + + // Undeploy + if(gun_mounted) + var/obj/item/device/m56d_gun/HMG = new(loc) + transfer_label_component(HMG) + HMG.rounds = gun_rounds + HMG.has_mount = TRUE + if(gun_health) + HMG.health = gun_health + HMG.update_icon() + qdel(src) + else + var/obj/item/device/m56d_post/post = new(loc) + post.health = health + transfer_label_component(post) + qdel(src) // Prison Windows @@ -581,8 +576,8 @@ charger_ability.stop_momentum() return xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") ) playsound(src, "sound/effects/metalhit.ogg", 25, TRUE) qdel(src) @@ -601,8 +596,8 @@ charger_ability.stop_momentum() return xeno.visible_message( - SPAN_DANGER("[xeno] rams \the [src]!"), - SPAN_XENODANGER("You ram \the [src]!") + SPAN_DANGER("[xeno] rams [src]!"), + SPAN_XENODANGER("You ram [src]!") ) playsound(src, "sound/effects/metalhit.ogg", 25, TRUE) qdel(src) @@ -634,3 +629,12 @@ return XENO_CHARGE_TRY_MOVE charger_ability.stop_momentum() + + +#undef CHARGER_DESTROY +#undef CHARGER_DAMAGE_CADE +#undef CHARGER_DAMAGE_SENTRY +#undef CCA_MOMENTUM_LOSS_HALF +#undef CCA_MOMENTUM_LOSS_THIRD +#undef CCA_MOMENTUM_LOSS_QUARTER +#undef CCA_MOMENTUM_LOSS_MIN diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/defender/steel_crest.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/defender/steel_crest.dm new file mode 100644 index 0000000000..cfbf85de29 --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/defender/steel_crest.dm @@ -0,0 +1,22 @@ +/datum/xeno_strain/steel_crest + name = DEFENDER_STEELCREST + description = "You trade your tail sweep and a small amount of your slash damage for slightly increased headbutt knockback and damage and the ability to slowly move and headbutt while fortified. Along with this, you gain a unique ability to accumulate damage, and use it to recover a slight amount of health and refresh your tail slam." + flavor_description = "This one, like my will, is indomitable. It will become my steel crest against all that defy me." + icon_state_prefix = "Steelcrest" + + actions_to_remove = list( + /datum/action/xeno_action/activable/headbutt, + /datum/action/xeno_action/activable/fortify, + /datum/action/xeno_action/onclick/tail_sweep, + ) + actions_to_add = list( + /datum/action/xeno_action/activable/headbutt/steel_crest, + /datum/action/xeno_action/activable/fortify/steel_crest, + /datum/action/xeno_action/onclick/soak, + ) + +/datum/xeno_strain/steel_crest/apply_strain(mob/living/carbon/xenomorph/defender/defender) + defender.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL + if(defender.fortify) + defender.ability_speed_modifier += 2.5 + defender.recalculate_stats() diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm similarity index 85% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm index c11f0e11f3..d54d268f12 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/drone/gardener.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/gardener.dm @@ -1,44 +1,41 @@ -/datum/xeno_mutator/gardener - name = "STRAIN: Drone - Gardener" - description = "You trade your choice of resin secretions, your corrosive acid, and your ability to transfer plasma for a tiny bit of extra health regeneration on weeds and several new abilities, including the ability to plant hardier weeds, temporarily reinforce structures with your plasma, and to plant up to six potent resin fruits for your sisters by secreting your vital fluids at the cost of a bit of your health for each fruit you shape." +/datum/xeno_strain/gardener + name = DRONE_GARDENER + description = "You trade your choice of resin secretions, your corrosive acid, and your ability to transfer plasma for a tiny bit of extra health regeneration on weeds and several new abilities, including the ability to plant hardier weeds, temporarily reinforce structures with your plasma, and to plant up to six potent resin fruits for your sisters by secreting your vital fluids at the cost of a bit of your health for each fruit you shape. You can use Resin Surge to speed up the growth of your fruits." flavor_description = "The glory of gardening: hands in the weeds, head in the dark, heart with resin." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_DRONE) //Only drone. - mutator_actions_to_remove = list( + + actions_to_remove = list( /datum/action/xeno_action/activable/secrete_resin, /datum/action/xeno_action/onclick/choose_resin, /datum/action/xeno_action/activable/corrosive_acid/weak, /datum/action/xeno_action/activable/transfer_plasma, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/onclick/plant_weeds/gardener, // second macro /datum/action/xeno_action/activable/resin_surge, // third macro /datum/action/xeno_action/onclick/plant_resin_fruit/greater, // fourth macro /datum/action/xeno_action/onclick/change_fruit, + /datum/action/xeno_action/activable/transfer_plasma, ) - keystone = TRUE - behavior_delegate_type = /datum/behavior_delegate/drone_gardener -/datum/xeno_mutator/gardener/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return + behavior_delegate_type = /datum/behavior_delegate/drone_gardener - var/mob/living/carbon/xenomorph/drone/drone = mutator_set.xeno - drone.mutation_type = DRONE_GARDENER - drone.available_fruits = list(/obj/effect/alien/resin/fruit/greater, /obj/effect/alien/resin/fruit/unstable, /obj/effect/alien/resin/fruit/spore, /obj/effect/alien/resin/fruit/speed, /obj/effect/alien/resin/fruit/plasma) +/datum/xeno_strain/gardener/apply_strain(mob/living/carbon/xenomorph/drone/drone) + drone.available_fruits = list( + /obj/effect/alien/resin/fruit/greater, + /obj/effect/alien/resin/fruit/unstable, + /obj/effect/alien/resin/fruit/spore, + /obj/effect/alien/resin/fruit/speed, + /obj/effect/alien/resin/fruit/plasma + ) drone.selected_fruit = /obj/effect/alien/resin/fruit/greater drone.max_placeable = 6 drone.regeneration_multiplier = XENO_REGEN_MULTIPLIER_TIER_1 - mutator_update_actions(drone) - apply_behavior_holder(drone) + // Also change the primacy value for our place construction ability (because we want it in the same place but have another primacy ability) for(var/datum/action/xeno_action/action in drone.actions) if(istype(action, /datum/action/xeno_action/activable/place_construction)) action.ability_primacy = XENO_NOT_PRIMARY_ACTION break // Don't need to keep looking - mutator_set.recalculate_actions(description, flavor_description) /datum/action/xeno_action/onclick/plant_resin_fruit name = "Plant Resin Fruit (50)" @@ -76,7 +73,7 @@ var/turf/target_turf = xeno.loc if(!istype(target_turf)) - to_chat(xeno, SPAN_WARNING("You cannot plant a fruit without a weed garden.")) + to_chat(xeno, SPAN_WARNING("We cannot plant a fruit without a weed garden.")) return var/obj/effect/alien/weeds/target_weeds = locate(/obj/effect/alien/weeds) in target_turf @@ -85,26 +82,26 @@ return if(target_weeds.hivenumber != xeno.hivenumber) - to_chat(xeno, SPAN_WARNING("These weeds do not belong to your hive; they reject your fruit.")) + to_chat(xeno, SPAN_WARNING("These weeds do not belong to our hive; they reject our fruit.")) return if(locate(/obj/effect/alien/resin/trap) in range(1, target_turf)) to_chat(xeno, SPAN_XENOWARNING("This location is too close to a resin hole!")) return - if(locate(/obj/effect/alien/resin/fruit) in range(1, target_turf)) + if(locate(/obj/effect/alien/resin/fruit) in target_turf) to_chat(xeno, SPAN_XENOWARNING("This location is too close to another fruit!")) return if (check_and_use_plasma_owner()) if(length(xeno.current_fruits) >= xeno.max_placeable) - to_chat(xeno, SPAN_XENOWARNING("You cannot sustain another fruit, one will wither away to allow this one to live!")) + to_chat(xeno, SPAN_XENOWARNING("We cannot sustain another fruit, one will wither away to allow this one to live!")) var/obj/effect/alien/resin/fruit/old_fruit = xeno.current_fruits[1] xeno.current_fruits.Remove(old_fruit) qdel(old_fruit) xeno.visible_message(SPAN_XENONOTICE("\The [xeno] secretes fluids and shape it into a fruit!"), \ - SPAN_XENONOTICE("You secrete a portion of your vital fluids and shape them into a fruit!"), null, 5) + SPAN_XENONOTICE("We secrete a portion of our vital fluids and shape them into a fruit!"), null, 5) var/obj/effect/alien/resin/fruit/fruit = new xeno.selected_fruit(target_weeds.loc, target_weeds, xeno) if(!fruit) @@ -209,7 +206,7 @@ return var/obj/effect/alien/resin/fruit/fruit = selected_type - to_chat(xeno, SPAN_NOTICE("You will now build [initial(fruit.name)]\s when secreting resin.")) + to_chat(xeno, SPAN_NOTICE("We will now build [initial(fruit.name)]\s when secreting resin.")) //update the button's overlay with new choice xeno.update_icons() button.overlays.Cut() @@ -252,7 +249,7 @@ if(ismob(target_atom)) // to prevent using thermal vision to bypass clickcatcher if(!can_see(xeno, target_atom, max_range)) - to_chat(xeno, SPAN_XENODANGER("You cannot see that location!")) + to_chat(xeno, SPAN_XENODANGER("We cannot see that location!")) return else if(get_dist(xeno, target_atom) > max_range) @@ -287,9 +284,9 @@ if(!buff_already_present) new /datum/effects/xeno_structure_reinforcement(structure_to_buff, xeno, ttl = 15 SECONDS) xeno.visible_message(SPAN_XENODANGER("\The [xeno] surges the resin around [structure_to_buff], making it temporarily nigh unbreakable!"), \ - SPAN_XENONOTICE("You surge the resin around [structure_to_buff], making it temporarily nigh unbreakable!"), null, 5) + SPAN_XENONOTICE("We surge the resin around [structure_to_buff], making it temporarily nigh unbreakable!"), null, 5) else - to_chat(xeno, SPAN_XENONOTICE("You haplessly try to surge resin around [structure_to_buff], but it's already reinforced. It'll take a moment for you to recover.")) + to_chat(xeno, SPAN_XENONOTICE("We haplessly try to surge resin around [structure_to_buff], but it's already reinforced. It'll take a moment for us to recover.")) xeno_cooldown = xeno_cooldown * 0.5 else if(F && F.hivenumber == xeno.hivenumber) @@ -297,12 +294,12 @@ to_chat(xeno, SPAN_XENONOTICE("The [F] is already mature. The [src.name] does nothing.")) xeno_cooldown = xeno_cooldown * 0.5 else - to_chat(xeno, SPAN_XENONOTICE("You surge the resin around the [F], speeding its growth somewhat!")) + to_chat(xeno, SPAN_XENONOTICE("We surge the resin around the [F], speeding its growth somewhat!")) F.reduce_timer(5 SECONDS) else if(target_weeds && istype(target_turf, /turf/open) && target_weeds.hivenumber == xeno.hivenumber) xeno.visible_message(SPAN_XENODANGER("\The [xeno] surges the resin, creating an unstable wall!"), \ - SPAN_XENONOTICE("You surge the resin, creating an unstable wall!"), null, 5) + SPAN_XENONOTICE("We surge the resin, creating an unstable wall!"), null, 5) target_turf.PlaceOnTop(/turf/closed/wall/resin/weak) var/turf/closed/wall/resin/weak_wall = target_turf weak_wall.hivenumber = xeno.hivenumber @@ -317,7 +314,7 @@ return channel_in_progress = FALSE xeno.visible_message(SPAN_XENODANGER("\The [xeno] surges deep resin, creating an unstable sticky resin patch!"), \ - SPAN_XENONOTICE("You surge the deep resin, creating an unstable sticky resin patch!"), null, 5) + SPAN_XENONOTICE("We surge the deep resin, creating an unstable sticky resin patch!"), null, 5) for (var/turf/targetTurf in orange(1, target_turf)) if(!locate(/obj/effect/alien/resin/sticky) in targetTurf) new /obj/effect/alien/resin/sticky/thin/weak(targetTurf, xeno.hivenumber) @@ -367,9 +364,6 @@ var/mutable_appearance/fruit_sac_overlay_icon -/datum/behavior_delegate/drone_gardener/add_to_xeno() - on_update_icons() - /datum/behavior_delegate/drone_gardener/on_update_icons() if(!fruit_sac_overlay_icon) fruit_sac_overlay_icon = mutable_appearance('icons/mob/xenos/drone_strain_overlays.dmi', "Gardener Drone Walking") diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm new file mode 100644 index 0000000000..1914b2c24b --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/drone/healer.dm @@ -0,0 +1,299 @@ +/datum/xeno_strain/healer + name = DRONE_HEALER + description = "You lose your choice of resin secretions, a chunk of your slash damage, and you will experience a slighty-increased difficulty in tackling hosts in exchange for strong pheromones, the ability to use a bit of your health to plant a maximum of three lesser resin fruits, and the ability to heal your sisters' wounds by secreting a regenerative resin salve by using your vital fluids and a fifth of your plasma. Be wary, this is a dangerous process; overexert yourself and you may exhaust yourself to unconsciousness, or die..." + flavor_description = "Divided we fall, united we win. We live for the hive, we die for the hive." + icon_state_prefix = "Healer" + + actions_to_remove = list( + /datum/action/xeno_action/activable/secrete_resin, + /datum/action/xeno_action/onclick/choose_resin, + /datum/action/xeno_action/activable/transfer_plasma, + /datum/action/xeno_action/activable/place_construction, // so it doesn't use fifth macro + /datum/action/xeno_action/onclick/plant_weeds, // so it doesn't break order + ) + actions_to_add = list( + /datum/action/xeno_action/activable/place_construction/not_primary, // so it doesn't use fifth macro + /datum/action/xeno_action/onclick/plant_weeds, // so it doesn't break order + /datum/action/xeno_action/onclick/plant_resin_fruit, // Second macro. Resin fruits belong to Gardener, but Healer has a minor variant. + /datum/action/xeno_action/activable/apply_salve, //Third macro, heal over time ability. + /datum/action/xeno_action/activable/transfer_plasma/healer, //Fourth macro, an improved plasma transfer. + /datum/action/xeno_action/activable/healer_sacrifice, //Fifth macro, the ultimate ability to sacrifice yourself + ) + + behavior_delegate_type = /datum/behavior_delegate/drone_healer + +/datum/xeno_strain/healer/apply_strain(mob/living/carbon/xenomorph/drone/drone) + drone.phero_modifier += XENO_PHERO_MOD_LARGE + drone.plasma_types += PLASMA_PHEROMONE + drone.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL + drone.tackle_chance_modifier -= 5 + + drone.max_placeable = 3 + drone.available_fruits = list(/obj/effect/alien/resin/fruit) + drone.selected_fruit = /obj/effect/alien/resin/fruit + + drone.recalculate_everything() + +/* + Improved Plasma Transfer +*/ + +/datum/action/xeno_action/activable/transfer_plasma/healer //Improved plasma transfer, but not as much as Hivey. + ability_primacy = XENO_PRIMARY_ACTION_4 + plasma_transfer_amount = 100 + transfer_delay = 15 + max_range = 1 + +/* + Apply Resin Salve +*/ + +/datum/action/xeno_action/activable/apply_salve + name = "Apply Resin Salve" + action_icon_state = "apply_salve" + ability_name = "Apply Resin Salve" + var/health_transfer_amount = 100 + var/max_range = 1 + var/damage_taken_mod = 0.75 + macro_path = /datum/action/xeno_action/verb/verb_apply_salve + action_type = XENO_ACTION_CLICK + ability_primacy = XENO_PRIMARY_ACTION_3 + xeno_cooldown = 0.5 SECONDS + +/datum/action/xeno_action/activable/apply_salve/use_ability(atom/target_atom) + if(!action_cooldown_check()) + return + var/mob/living/carbon/xenomorph/xeno = owner + xeno.xeno_apply_salve(target_atom, health_transfer_amount, max_range, damage_taken_mod) + apply_cooldown() + return ..() + +/datum/action/xeno_action/verb/verb_apply_salve() + set category = "Alien" + set name = "Apply Resin Salve" + set hidden = TRUE + var/action_name = "Apply Resin Salve" + handle_xeno_macro(src, action_name) + +/mob/living/carbon/xenomorph/proc/xeno_apply_salve(mob/living/carbon/xenomorph/target_xeno, amount = 100, max_range = 1, damage_taken_mod = 0.75) + + if(!check_plasma(amount * 2)) + return + + if(!istype(target_xeno)) + return + + if(target_xeno == src) + to_chat(src, SPAN_XENOWARNING("We can't heal ourself with our own resin salve!")) + return + + if(!check_state()) + return + + if(SEND_SIGNAL(target_xeno, COMSIG_XENO_PRE_HEAL) & COMPONENT_CANCEL_XENO_HEAL) + to_chat(src, SPAN_XENOWARNING("Extinguish [target_xeno] first or the flames will burn our resin salve away!")) + return + + if(!can_not_harm(target_xeno)) //We don't wanna heal hostile hives, but we do want to heal our allies! + to_chat(src, SPAN_XENOWARNING("[target_xeno] is hostile to our hive!")) + return + + if(!isturf(loc)) + to_chat(src, SPAN_XENOWARNING("We can't apply our resin salve from here!")) + return + + if(get_dist(src, target_xeno) > max_range) + to_chat(src, SPAN_XENOWARNING("We need to be closer to [target_xeno] to apply our resin salve!")) + return + + if(target_xeno.stat == DEAD) + to_chat(src, SPAN_XENOWARNING("[target_xeno] is dead!")) + return + + if(target_xeno.health >= target_xeno.maxHealth) + to_chat(src, SPAN_XENOWARNING("[target_xeno] is already at max health!")) + return + + //Tiny xenos (Larva and Facehuggers), don't need as much health so don't cost as much. + if(target_xeno.mob_size == MOB_SIZE_SMALL) + amount = amount * 0.15 + damage_taken_mod = 1 + + //Forces an equivalent exchange of health between healers so they do not spam heal each other to full health. + var/target_is_healer = istype(target_xeno.strain, /datum/xeno_strain/healer) + if(target_is_healer) + damage_taken_mod = 1 + + face_atom(target_xeno) + adjustBruteLoss(amount * damage_taken_mod) + use_plasma(amount * 2) + updatehealth() + new /datum/effects/heal_over_time(target_xeno, heal_amount = amount) + target_xeno.xeno_jitter(1 SECONDS) + target_xeno.flick_heal_overlay(5 SECONDS, "#00be6f") + to_chat(target_xeno, SPAN_XENOWARNING("[src] covers our wounds with a regenerative resin salve. We feel reinvigorated!")) + to_chat(src, SPAN_XENOWARNING("We regurgitate our vital fluids and some plasma to create a regenerative resin salve and apply it to [target_xeno]'s wounds. We feel weakened...")) + playsound(src, "alien_drool", 25) + var/datum/behavior_delegate/drone_healer/healer_delegate = behavior_delegate + healer_delegate.salve_applied_recently = TRUE + if(!target_is_healer && !isfacehugger(target_xeno)) // no cheap grinding + healer_delegate.modify_transferred(amount * damage_taken_mod) + update_icons() + addtimer(CALLBACK(healer_delegate, /datum/behavior_delegate/drone_healer/proc/un_salve), 5 SECONDS, TIMER_OVERRIDE|TIMER_UNIQUE) + +/datum/behavior_delegate/drone_healer + name = "Healer Drone Behavior Delegate" + + var/salve_applied_recently = FALSE + var/mutable_appearance/salve_applied_icon + + var/transferred_amount = 0 + var/required_transferred_amount = 7500 + +/datum/behavior_delegate/drone_healer/on_update_icons() + if(!salve_applied_icon) + salve_applied_icon = mutable_appearance('icons/mob/xenos/drone_strain_overlays.dmi',"Healer Drone Walking") + + bound_xeno.overlays -= salve_applied_icon + salve_applied_icon.overlays.Cut() + + if(!salve_applied_recently) + return + + if(bound_xeno.stat == DEAD) + salve_applied_icon.icon_state = "Healer Drone Dead" + else if(bound_xeno.body_position == LYING_DOWN) + if(!HAS_TRAIT(bound_xeno, TRAIT_INCAPACITATED) && !HAS_TRAIT(bound_xeno, TRAIT_FLOORED)) + salve_applied_icon.icon_state = "Healer Drone Sleeping" + else + salve_applied_icon.icon_state = "Healer Drone Knocked Down" + else + salve_applied_icon.icon_state = "Healer Drone Walking" + + bound_xeno.overlays += salve_applied_icon + +/datum/behavior_delegate/drone_healer/proc/un_salve() + salve_applied_recently = FALSE + bound_xeno.update_icons() + +/* + SACRIFICE +*/ + +/datum/behavior_delegate/drone_healer/proc/modify_transferred(amount) + transferred_amount += amount + +/datum/behavior_delegate/drone_healer/append_to_stat() + . = list() + . += "Transferred health amount: [transferred_amount]/[required_transferred_amount]" + if(transferred_amount >= required_transferred_amount) + . += "Sacrifice will grant you new life." + +/datum/behavior_delegate/drone_healer/on_life() + if(!bound_xeno) + return + if(bound_xeno.stat == DEAD) + return + var/image/holder = bound_xeno.hud_list[PLASMA_HUD] + holder.overlays.Cut() + var/percentage_transferred = min(round((transferred_amount / required_transferred_amount) * 100, 10), 100) + if(percentage_transferred) + holder.overlays += image('icons/mob/hud/hud.dmi', "xenoenergy[percentage_transferred]") + +/datum/behavior_delegate/drone_healer/handle_death(mob/M) + var/image/holder = bound_xeno.hud_list[PLASMA_HUD] + holder.overlays.Cut() + +/datum/action/xeno_action/activable/healer_sacrifice + name = "Sacrifice" + action_icon_state = "screech" + ability_name = "sacrifice" + var/max_range = 1 + var/transfer_mod = 0.75 // only transfers 75% of current healer's health + macro_path = /datum/action/xeno_action/verb/verb_healer_sacrifice + action_type = XENO_ACTION_CLICK + ability_primacy = XENO_PRIMARY_ACTION_5 + +/datum/action/xeno_action/verb/verb_healer_sacrifice() + set category = "Alien" + set name = "Sacrifice" + set hidden = TRUE + var/action_name = "Sacrifice" + handle_xeno_macro(src, action_name) + +/datum/action/xeno_action/activable/healer_sacrifice/use_ability(atom/atom) + var/mob/living/carbon/xenomorph/xeno = owner + var/mob/living/carbon/xenomorph/target = atom + + if(!istype(target)) + return + + if(target == xeno) + to_chat(xeno, "We can't heal ourself!") + return + + if(isfacehugger(target) || islesserdrone(target)) + to_chat(xeno, "It would be a waste...") + return + + if(!xeno.check_state()) + return + + if(!xeno.can_not_harm(target)) //so we can heal only allies + to_chat(xeno, SPAN_WARNING("[target] is an enemy of our hive!")) + return + + if(target.stat == DEAD) + to_chat(xeno, SPAN_WARNING("[target] is already dead!")) + return + + if(target.health >= target.maxHealth) + to_chat(xeno, SPAN_WARNING("[target] is already at max health!")) + return + + if(!isturf(xeno.loc)) + to_chat(xeno, SPAN_WARNING("We cannot transfer health from here!")) + return + + if(get_dist(xeno, target) > max_range) + to_chat(xeno, SPAN_WARNING("We need to be closer to [target].")) + return + + xeno.say(";MY LIFE FOR THE QUEEN!!!") + + if(target.health < 0) + target.gain_health(abs(target.health)) // gets them out of crit first + + target.gain_health(xeno.health * transfer_mod) + target.updatehealth() + + target.xeno_jitter(1 SECONDS) + target.flick_heal_overlay(3 SECONDS, "#44253d") + + target.visible_message(SPAN_XENONOTICE("[xeno] explodes in a deluge of regenerative resin salve, covering [target] in it!")) + xeno_message(SPAN_XENOANNOUNCE("[xeno] sacrifices itself to heal [target]!"), 2, target.hive.hivenumber) + + var/datum/behavior_delegate/drone_healer/behavior_delegate = xeno.behavior_delegate + if(istype(behavior_delegate) && behavior_delegate.transferred_amount >= behavior_delegate.required_transferred_amount && xeno.client && xeno.hive) + var/datum/hive_status/hive_status = xeno.hive + var/turf/spawning_turf = get_turf(xeno) + if(!hive_status.hive_location) + addtimer(CALLBACK(xeno.hive, TYPE_PROC_REF(/datum/hive_status, respawn_on_turf), xeno.client, spawning_turf), 0.5 SECONDS) + else + addtimer(CALLBACK(xeno.hive, TYPE_PROC_REF(/datum/hive_status, free_respawn), xeno.client), 5 SECONDS) + + xeno.gib(create_cause_data("sacrificing itself", src)) + return ..() + +/datum/action/xeno_action/activable/healer_sacrifice/action_activate() + . = ..() + var/mob/living/carbon/xenomorph/xeno = owner + if(xeno.selected_ability != src) + return + var/datum/behavior_delegate/drone_healer/behavior_delegate = xeno.behavior_delegate + if(!istype(behavior_delegate)) + return + if(behavior_delegate.transferred_amount < behavior_delegate.required_transferred_amount) + to_chat(xeno, SPAN_HIGHDANGER("Warning: [name] is a last measure skill. Using it will kill us.")) + else + to_chat(xeno, SPAN_HIGHDANGER("Warning: [name] is a last measure skill. Using it will kill us, but new life will be granted for our hard work for the hive.")) diff --git a/code/modules/mob/living/carbon/xenomorph/strains/castes/facehugger/watcher.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/facehugger/watcher.dm new file mode 100644 index 0000000000..c5e1cff29c --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/facehugger/watcher.dm @@ -0,0 +1,31 @@ +/datum/xeno_strain/watcher + name = FACEHUGGER_WATCHER + description = "You lose your ability to hide in exchange to see further. This enables you to stalk your host from a distance and wait for the perfect oppertunity to strike." + flavor_description = "No need to hide when you can see the danger." + + actions_to_remove = list( + /datum/action/xeno_action/onclick/xenohide, + ) + actions_to_add = list( + /datum/action/xeno_action/onclick/toggle_long_range/facehugger, + ) + + behavior_delegate_type = /datum/behavior_delegate/facehugger_watcher + +/datum/xeno_strain/watcher/apply_strain(mob/living/carbon/xenomorph/facehugger/huggy) + huggy.viewsize = 10 + huggy.layer = initial(huggy.layer) + +// This has no special effects, it's just here to skip `/datum/behavior_delegate/facehugger_base/on_life()`. +/datum/behavior_delegate/facehugger_watcher + name = "Watcher Facehugger Behavior Delegate" + +/datum/behavior_delegate/facehugger_watcher/on_life() + // Sap health if we're standing, not on weeds, and not zoomed out + if(bound_xeno.body_position != STANDING_UP) + return + if(bound_xeno.is_zoomed) + return + if(locate(/obj/effect/alien/weeds) in get_turf(bound_xeno)) + return + bound_xeno.adjustBruteLoss(1) diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/hivelord/resin_whisperer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm similarity index 65% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/hivelord/resin_whisperer.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm index 3200fd0da4..89737f9ff5 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/hivelord/resin_whisperer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/hivelord/resin_whisperer.dm @@ -1,41 +1,30 @@ -/datum/xeno_mutator/resinwhisperer - name = "STRAIN: Hivelord - Resin Whisperer" - description = "You lose your corrosive acid, your ability to secrete thick resin, your ability to reinforce resin secretions, sacrifice your ability to plant resin nodes outside of weeds, and you sacrifice a fifth of your plasma reserves to enhance your vision and gain a stronger connection to the resin. You can now remotely place resin secretions including resin nodes up to a distance of twelve paces!" - flavor_description = "Let the resin guide you. It whispers, so listen closely." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_HIVELORD) - mutator_actions_to_remove = list( +/datum/xeno_strain/resin_whisperer + name = HIVELORD_RESIN_WHISPERER + description = "You lose your corrosive acid, your ability to secrete thick resin, your ability to reinforce resin secretions, sacrifice your ability to plant weed nodes outside of weeds, and you sacrifice a fifth of your plasma reserves to enhance your vision and gain a stronger connection to the resin. You can now remotely place resin secretions including weed nodes up to a distance of twelve paces!" + flavor_description = "We let the resin guide us. It whispers, so listen closely." + icon_state_prefix = "Resin Whisperer" + + actions_to_remove = list( /datum/action/xeno_action/onclick/plant_weeds, /datum/action/xeno_action/activable/secrete_resin/hivelord, /datum/action/xeno_action/activable/corrosive_acid, /datum/action/xeno_action/activable/transfer_plasma/hivelord, /datum/action/xeno_action/active_toggle/toggle_speed, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/secrete_resin/remote, //third macro /datum/action/xeno_action/activable/transfer_plasma/hivelord, // readding it so it gets at the end of the ability list /datum/action/xeno_action/active_toggle/toggle_speed, // readding it so it gets at the end of the ability list ) - keystone = TRUE - -/datum/xeno_mutator/resinwhisperer/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if(!.) - return - var/mob/living/carbon/xenomorph/hivelord/hivelord = mutator_set.xeno +/datum/xeno_strain/resin_whisperer/apply_strain(mob/living/carbon/xenomorph/hivelord/hivelord) hivelord.plasmapool_modifier = 0.8 // -20% plasma pool hivelord.extra_build_dist = 12 // 1 + 12 = 13 tile build range hivelord.can_stack_builds = TRUE - - hivelord.client.change_view(10, src) - - hivelord.mutation_type = HIVELORD_RESIN_WHISPERER - mutator_update_actions(hivelord) - mutator_set.recalculate_actions(description, flavor_description) hivelord.recalculate_plasma() + hivelord.client?.change_view(10, src) + hivelord.set_resin_build_order(GLOB.resin_build_order_hivelord_whisperer) for(var/datum/action/xeno_action/action in hivelord.actions) // Also update the choose_resin icon since it resets @@ -54,26 +43,24 @@ name = "Coerce Resin (100)" action_icon_state = "secrete_resin" ability_name = "coerce resin" - var/last_use = 0 xeno_cooldown = 1 SECONDS thick = FALSE make_message = FALSE no_cooldown_msg = TRUE - var/care_about_adjacency = TRUE build_speed_mod = 2 // the actual building part takes twice as long macro_path = /datum/action/xeno_action/verb/verb_coerce_resin action_type = XENO_ACTION_CLICK + var/last_use = 0 + var/care_about_adjacency = TRUE + /datum/action/xeno_action/activable/secrete_resin/remote/use_ability(atom/target_atom, mods) - var/mob/living/carbon/xenomorph/xeno_owner = owner - if(xeno_owner.mutation_type == HIVELORD_RESIN_WHISPERER) - var/mob/living/carbon/xenomorph/hivelord/hivelord_mob = owner - if(!hivelord_mob.on_weeds()) // There is a chance that queen can't place down buildings in ovi build view so we place the rein whisperer check here. - to_chat(owner, SPAN_XENONOTICE("We must be standing on weeds to establish a connection to the resin.")) - return + if(!can_remote_build()) + to_chat(owner, SPAN_XENONOTICE("We must be standing on weeds to establish a connection to the resin.")) + return if(!action_cooldown_check()) return @@ -85,14 +72,18 @@ if(!target_turf) return + if(care_about_adjacency && !(target_turf in view(10, owner))) + to_chat(owner, SPAN_XENONOTICE("We must have a direct line of sight!")) + return + /// Check if the target is a resin door and open or close it if(istype(target_atom, /obj/structure/mineral_door/resin)) var/obj/structure/mineral_door/resin/resin_door = target_atom resin_door.TryToSwitchState(owner) if(resin_door.state) - to_chat(owner, SPAN_XENONOTICE("You focus your connection to the resin and remotely close the resin door.")) + to_chat(owner, SPAN_XENONOTICE("We focus our connection to the resin and remotely close the resin door.")) else - to_chat(owner, SPAN_XENONOTICE("You focus your connection to the resin and remotely open the resin door.")) + to_chat(owner, SPAN_XENONOTICE("We focus our connection to the resin and remotely open the resin door.")) return // since actions are instanced per hivelord, and only one construction can be made at a time, tweaking the datum on the fly here is fine. you're going to have to figure something out if these conditions change, though @@ -111,10 +102,16 @@ var/datum/resin_construction/resing_construction = GLOB.resin_constructions_list[hivelord.selected_resin] target_turf.visible_message(SPAN_XENONOTICE("The weeds begin pulsating wildly and secrete resin in the shape of \a [resing_construction.construction_name]!"), null, 5) - to_chat(owner, SPAN_XENONOTICE("You focus your plasma into the weeds below you and force the weeds to secrete resin in the shape of \a [resing_construction.construction_name].")) + to_chat(owner, SPAN_XENONOTICE("We focus our plasma into the weeds below us and force the weeds to secrete resin in the shape of \a [resing_construction.construction_name].")) playsound(target_turf, "alien_resin_build", 25) return TRUE +// By default, the xeno must be on a weed tile in order to build from a distance. +/datum/action/xeno_action/activable/secrete_resin/remote/proc/can_remote_build() + if(!locate(/obj/effect/alien/weeds) in get_turf(owner)) + return FALSE + return TRUE + /datum/action/xeno_action/verb/verb_coerce_resin() set category = "Alien" set name = "Coerce Resin" diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/lurker/vampire.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm similarity index 57% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/lurker/vampire.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm index 72214d0633..820aa662c9 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/lurker/vampire.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/lurker/vampire.dm @@ -1,40 +1,32 @@ +/datum/xeno_strain/vampire + name = LURKER_VAMPIRE + description = "You lose all of your abilities and you forefeit a chunk of your health and damage in exchange for a large amount of armor, a little bit of movement speed, increased attack speed, and brand new abilities that make you an assassin. Rush on your opponent to disorient them and Flurry to unleash a forward cleave that can hit and slow three talls and heal you for every tall you hit. Use your special AoE Tail Jab to knock talls away, doing more damage with direct hits and even more damage and a stun if they smack into walls. Finally, execute unconscious talls with a headbite to heal your wounds." + flavor_description = "Show no mercy! Slaughter them all!" + icon_state_prefix = "Vampire" -/datum/xeno_mutator/Vampire - name = "STRAIN: Lurker - Vampire" - description = "You lose all of your abilities and you forefeit a chunk of your health and damage in exchange for a large amount of armor, a little bit of movement speed, increased attack speed, and brand new abilities that make you an assassin. Rush on your opponent to disorient them and Flurry to unleash a forward cleave that can hit and slow three talls and heal you for every tall you hit. Use your special AoE Tail Jab to knock talls away, doing more damage with direct hits and even more damage and a stun if they smack into walls. Finally, execute unconscious talls with a headbite that bypasses armor and heals you for a grand amount of health." - flavor_description = "Your thirst for tallhost blood surpasses even mine, child. Show no mercy! Slaughter them all!" - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_LURKER) - mutator_actions_to_remove = list( + actions_to_remove = list( /datum/action/xeno_action/onclick/lurker_invisibility, /datum/action/xeno_action/onclick/lurker_assassinate, /datum/action/xeno_action/activable/pounce/lurker, + /datum/action/xeno_action/activable/tail_stab, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/pounce/rush, /datum/action/xeno_action/activable/flurry, /datum/action/xeno_action/activable/tail_jab, /datum/action/xeno_action/activable/headbite, ) - keystone = TRUE - -/datum/xeno_mutator/Vampire/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == FALSE) - return - - var/mob/living/carbon/xenomorph/lurker/lurker = mutator_set.xeno +/datum/xeno_strain/vampire/apply_strain(mob/living/carbon/xenomorph/lurker/lurker) lurker.plasmapool_modifier = 0 lurker.health_modifier -= XENO_HEALTH_MOD_MED lurker.speed_modifier += XENO_SPEED_FASTMOD_TIER_1 lurker.armor_modifier += XENO_ARMOR_MOD_LARGE - lurker.melee_damage_lower = XENO_DAMAGE_TIER_3 - lurker.melee_damage_upper = XENO_DAMAGE_TIER_3 + lurker.damage_modifier -= XENO_DAMAGE_MOD_VERY_SMALL lurker.attack_speed_modifier -= 2 - mutator_update_actions(lurker) - mutator_set.recalculate_actions(description, flavor_description) + var/datum/mob_hud/execute_hud = GLOB.huds[MOB_HUD_EXECUTE] + execute_hud.add_hud_to(lurker, lurker) + lurker.execute_hud = TRUE + lurker.recalculate_everything() - lurker.mutation_type = LURKER_VAMPIRE diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/dancer.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/dancer.dm similarity index 52% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/dancer.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/dancer.dm index a21f549ea8..7de4b93aad 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/dancer.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/dancer.dm @@ -1,44 +1,31 @@ -/datum/xeno_mutator/praetorian_dancer +/datum/xeno_strain/dancer // My name is Cuban Pete, I'm the King of the Rumba Beat - name = "STRAIN: Praetorian - Dancer" - description = "You lose all of your acid-based abilities and a small amount of your armor in exchange for increased movement speed, evasion, and unparalleled agility that gives you an ability to move even more quickly, dodge bullets, and phase through tallhosts. By slashing tallhosts, you temporarily increase your movement speed and you also you apply a tag that changes how your two new tail abilities function. By tagging hosts, you will make Impale hit twice instead of once and make Tail Trip knock hosts down instead of stunning them." - flavor_description = "Demonstrate to the talls what 'there is beauty in death' truly symbolizes, then dance upon their graves!" - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_PRAETORIAN) // Only bae - mutator_actions_to_remove = list( + name = PRAETORIAN_DANCER + description = "You lose all of your acid-based abilities and a small amount of your armor in exchange for increased movement speed, evasion, and unparalleled agility that gives you an ability to move even more quickly, dodge bullets, and phase through enemies and allies alike. By slashing enemies, you temporarily increase your movement speed and you also you apply a tag that changes how your two new tail abilities function. By tagging enemies, you will make Impale hit twice instead of once and make Tail Trip knock enemies down instead of stunning them." + flavor_description = "A performance fit for a Queen, this one will become my instrument of death." + icon_state_prefix = "Dancer" + + actions_to_remove = list( /datum/action/xeno_action/activable/xeno_spit, /datum/action/xeno_action/activable/pounce/base_prae_dash, /datum/action/xeno_action/activable/prae_acid_ball, /datum/action/xeno_action/activable/spray_acid/base_prae_spray_acid, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/prae_impale, /datum/action/xeno_action/onclick/prae_dodge, /datum/action/xeno_action/activable/prae_tail_trip, ) - behavior_delegate_type = /datum/behavior_delegate/praetorian_dancer - keystone = TRUE - -/datum/xeno_mutator/praetorian_dancer/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - - var/mob/living/carbon/xenomorph/praetorian/praetorian = mutator_set.xeno - praetorian.armor_modifier -= XENO_ARMOR_MOD_VERY_SMALL - praetorian.speed_modifier += XENO_SPEED_FASTMOD_TIER_5 - praetorian.plasma_types = list(PLASMA_CATECHOLAMINE) - praetorian.claw_type = CLAW_TYPE_SHARP - mutator_update_actions(praetorian) - mutator_set.recalculate_actions(description, flavor_description) + behavior_delegate_type = /datum/behavior_delegate/praetorian_dancer - praetorian.recalculate_everything() +/datum/xeno_strain/dancer/apply_strain(mob/living/carbon/xenomorph/praetorian/prae) + prae.armor_modifier -= XENO_ARMOR_MOD_VERY_SMALL + prae.speed_modifier += XENO_SPEED_FASTMOD_TIER_5 + prae.plasma_types = list(PLASMA_CATECHOLAMINE) + prae.claw_type = CLAW_TYPE_SHARP - apply_behavior_holder(praetorian) - praetorian.mutation_icon_state = PRAETORIAN_DANCER - praetorian.mutation_type = PRAETORIAN_DANCER + prae.recalculate_everything() /datum/behavior_delegate/praetorian_dancer name = "Praetorian Dancer Behavior Delegate" diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/oppressor.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/oppressor.dm similarity index 51% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/oppressor.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/oppressor.dm index 4beaedf8d6..b9541a13ca 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/oppressor.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/oppressor.dm @@ -1,12 +1,11 @@ -/datum/xeno_mutator/praetorian_oppressor +/datum/xeno_strain/oppressor // Dread it, run from it, destiny still arrives... or should I say, I do - name = "STRAIN: Praetorian - Oppressor" - description = "You abandon all of your acid-based abilities, your dash, some speed, and a bit of your slash damage for some resistance against small explosives, slashes that deal extra damage to prone targets, and a powerful hook ability that pulls up to three talls towards you, slows them, and has varying effects depending on how many talls you pull. You also gain a powerful punch that reduces your other abilities' cooldowns, pierces through armor, and does double damage in addition to rooting slowed targets. You can also knock talls back and slow them with your new Tail Lash and quickly grab a tall, slow it, and pull it towards you with your unique Tail Stab." - flavor_description = "Dread it. Run from it. The Hive arrives all the same, or, more accurately, you do." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_PRAETORIAN) - mutator_actions_to_remove = list( + name = PRAETORIAN_OPPRESSOR + description = "You abandon all of your acid-based abilities, your dash, some speed, and a bit of your slash damage for some resistance against small explosives, slashes that deal extra damage to prone targets, and a powerful hook ability that pulls up to three enemies towards you, slows them, and has varying effects depending on how many enemies you pull. You also gain a powerful punch that reduces your other abilities' cooldowns, pierces through armor, and does double damage in addition to rooting slowed targets. You can also knock enemies back and slow them with your new Tail Lash and quickly grab a tall, slow it, and pull it towards you with your unique Tail Stab." + flavor_description = "My reach is endless, this one will pull down the heavens." + icon_state_prefix = "Oppressor" + + actions_to_remove = list( /datum/action/xeno_action/activable/tail_stab, /datum/action/xeno_action/activable/xeno_spit, /datum/action/xeno_action/activable/pounce/base_prae_dash, @@ -14,38 +13,24 @@ /datum/action/xeno_action/activable/spray_acid/base_prae_spray_acid, /datum/action/xeno_action/activable/corrosive_acid, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/tail_stab/tail_seize, /datum/action/xeno_action/activable/prae_abduct, /datum/action/xeno_action/activable/oppressor_punch, /datum/action/xeno_action/activable/tail_lash, ) - behavior_delegate_type = /datum/behavior_delegate/oppressor_praetorian - keystone = TRUE - -/datum/xeno_mutator/praetorian_oppressor/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - - var/mob/living/carbon/xenomorph/praetorian/praetorian = mutator_set.xeno - praetorian.damage_modifier -= XENO_DAMAGE_MOD_SMALL - praetorian.explosivearmor_modifier += XENO_EXPOSIVEARMOR_MOD_SMALL - praetorian.small_explosives_stun = FALSE - praetorian.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 - praetorian.plasma_types = list(PLASMA_NEUROTOXIN, PLASMA_CHITIN) - praetorian.claw_type = CLAW_TYPE_SHARP - - mutator_update_actions(praetorian) - - mutator_set.recalculate_actions(description, flavor_description) + behavior_delegate_type = /datum/behavior_delegate/oppressor_praetorian - apply_behavior_holder(praetorian) +/datum/xeno_strain/oppressor/apply_strain(mob/living/carbon/xenomorph/praetorian/prae) + prae.damage_modifier -= XENO_DAMAGE_MOD_SMALL + prae.explosivearmor_modifier += XENO_EXPOSIVEARMOR_MOD_SMALL + prae.small_explosives_stun = FALSE + prae.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 + prae.plasma_types = list(PLASMA_NEUROTOXIN, PLASMA_CHITIN) + prae.claw_type = CLAW_TYPE_SHARP - praetorian.recalculate_everything() - praetorian.mutation_icon_state = PRAETORIAN_OPPRESSOR - praetorian.mutation_type = PRAETORIAN_OPPRESSOR + prae.recalculate_everything() /datum/behavior_delegate/oppressor_praetorian name = "Oppressor Praetorian Behavior Delegate" @@ -60,4 +45,3 @@ target_carbon.apply_armoured_damage(get_xeno_damage_slash(target_carbon, tearing_damage), ARMOR_MELEE, BRUTE, bound_xeno.zone_selected ? bound_xeno.zone_selected : "chest") target_carbon.visible_message(SPAN_DANGER("[bound_xeno] tears into [target_carbon]!")) playsound(bound_xeno, 'sound/weapons/alien_tail_attack.ogg', 25, TRUE) - diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/vanguard.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm similarity index 60% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/vanguard.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm index 8e6fbd2038..01f567398c 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/vanguard.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/vanguard.dm @@ -1,43 +1,31 @@ -/datum/xeno_mutator/vanguard - name = "STRAIN: Praetorian - Vanguard" - description = "You forfeit all of your acid-based abilities and some health for some extra speed and a rechargable shield that can block one attack. Use your Pierce from up to three paces away to stab through talls, while stabbing through several will completely recharge your shield. Use your charge to plow through enemies and use it again to unleash a powerful AoE slash that reaches up to three paces. You also have a Cleave ability, amplified by your shield, which you can toggle to either immobilize or fling a target away." - flavor_description = "They are my bulwark against the tallhosts. They are my Vanguard and they shall know no fear." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_PRAETORIAN) //Only praetorian. - mutator_actions_to_remove = list( +/datum/xeno_strain/vanguard + name = PRAETORIAN_VANGUARD + description = "You forfeit all of your acid-based abilities and some health for some extra speed and a rechargable shield that can block one attack. Use your Pierce from up to three paces away to stab through talls, while stabbing through two or more will completely recharge your shield. Use your charge to plow through enemies and use it again to unleash a powerful AoE slash that reaches up to three paces. You also have a Cleave ability, amplified by your shield, which you can toggle to either immobilize or fling a target away." + flavor_description = "Fearless you are born, fearless you serve, fearless you die. This one will become my Vanguard" + icon_state_prefix = "Vanguard" + + actions_to_remove = list( /datum/action/xeno_action/activable/xeno_spit, /datum/action/xeno_action/activable/pounce/base_prae_dash, /datum/action/xeno_action/activable/prae_acid_ball, /datum/action/xeno_action/activable/spray_acid/base_prae_spray_acid, /datum/action/xeno_action/activable/corrosive_acid, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/pierce, /datum/action/xeno_action/activable/pounce/prae_dash, /datum/action/xeno_action/activable/cleave, /datum/action/xeno_action/onclick/toggle_cleave, ) - behavior_delegate_type = /datum/behavior_delegate/praetorian_vanguard - keystone = TRUE - -/datum/xeno_mutator/vanguard/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - var/mob/living/carbon/xenomorph/praetorian/praetorian = mutator_set.xeno - praetorian.speed_modifier += XENO_SPEED_FASTMOD_TIER_3 - praetorian.health_modifier -= XENO_HEALTH_MOD_MED - praetorian.claw_type = CLAW_TYPE_SHARP - mutator_update_actions(praetorian) - mutator_set.recalculate_actions(description, flavor_description) - praetorian.recalculate_everything() + behavior_delegate_type = /datum/behavior_delegate/praetorian_vanguard - praetorian.mutation_icon_state = PRAETORIAN_VANGUARD - praetorian.mutation_type = PRAETORIAN_VANGUARD +/datum/xeno_strain/vanguard/apply_strain(mob/living/carbon/xenomorph/praetorian/prae) + prae.speed_modifier += XENO_SPEED_FASTMOD_TIER_3 + prae.health_modifier -= XENO_HEALTH_MOD_MED + prae.claw_type = CLAW_TYPE_SHARP - apply_behavior_holder(praetorian) + prae.recalculate_everything() /datum/behavior_delegate/praetorian_vanguard name = "Praetorian Vanguard Behavior Delegate" @@ -66,7 +54,7 @@ last_combat_time = world.time /datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_spin() - var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce) + var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce) if (istype(pAction)) pAction.should_spin_instead = TRUE @@ -74,7 +62,7 @@ return /datum/behavior_delegate/praetorian_vanguard/proc/next_pierce_normal() - var/datum/action/xeno_action/activable/pierce/pAction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/pierce) + var/datum/action/xeno_action/activable/pierce/pAction = get_action(bound_xeno, /datum/action/xeno_action/activable/pierce) if (istype(pAction)) pAction.should_spin_instead = FALSE return @@ -98,13 +86,8 @@ bound_xeno.explosivearmor_modifier += 1.5*XENO_EXPOSIVEARMOR_MOD_VERY_LARGE bound_xeno.recalculate_armor() new_shield.explosive_armor_amount = 1.5*XENO_EXPOSIVEARMOR_MOD_VERY_LARGE - to_chat(praetorian, SPAN_XENOHIGHDANGER("You feel your defensive shell regenerate! It will block one hit!")) + to_chat(praetorian, SPAN_XENOHIGHDANGER("We feel our defensive shell regenerate! It will block one hit!")) - var/datum/action/xeno_action/activable/cleave/caction = get_xeno_action_by_type(bound_xeno, /datum/action/xeno_action/activable/cleave) + var/datum/action/xeno_action/activable/cleave/caction = get_action(bound_xeno, /datum/action/xeno_action/activable/cleave) if (istype(caction)) caction.buffed = TRUE - - - - - diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/warden.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/warden.dm similarity index 72% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/warden.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/warden.dm index 1db9ad6550..9dc9404ee4 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/praetorian/warden.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/praetorian/warden.dm @@ -1,45 +1,35 @@ -/datum/xeno_mutator/praetorian_warden +/datum/xeno_strain/warden // i mean so basically im braum - name = "STRAIN: Praetorian - Warden" - description = "You trade your acid ball, acid spray, dash, and a small bit of your slash damage and speed to become an effective medic. You gain the ability to emit strong pheromones, an ability that retrieves endangered, knocked-down or sitting allies and pulls them to your location, and you gain an internal hitpoint pool that fills with every slash against your enemies, which can be spent to aid your allies and yourself by healing them or curing their ailments." - flavor_description = "Only in death does your sisters' service to the Queen end. They will be untouched by plague or disease; no sickness will blight them." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_PRAETORIAN) // Only bae - mutator_actions_to_remove = list( + name = PRAETORIAN_WARDEN + description = "You trade your acid ball, acid spray, dash, and a small bit of your slash damage and speed to become an effective medic. You gain the ability to emit strong pheromones, an ability that retrieves endangered, knocked-down or resting allies and pulls them to your location, and you gain an internal hitpoint pool that fills with every slash against your enemies, which can be spent to aid your allies and yourself by healing them or curing their ailments." + flavor_description = "This one will deny her sisters' deaths until they earn it. Fight or be forgotten." + icon_state_prefix = "Warden" + + actions_to_remove = list( + /datum/action/xeno_action/activable/xeno_spit, /datum/action/xeno_action/activable/pounce/base_prae_dash, /datum/action/xeno_action/activable/prae_acid_ball, /datum/action/xeno_action/activable/spray_acid/base_prae_spray_acid, + /datum/action/xeno_action/onclick/tacmap, ) - mutator_actions_to_add = list( + actions_to_add = list( + /datum/action/xeno_action/onclick/emit_pheromones, + /datum/action/xeno_action/activable/xeno_spit, /datum/action/xeno_action/activable/spray_acid/prae_warden, /datum/action/xeno_action/activable/warden_heal, /datum/action/xeno_action/activable/prae_retrieve, /datum/action/xeno_action/onclick/prae_switch_heal_type, - /datum/action/xeno_action/onclick/emit_pheromones, + /datum/action/xeno_action/onclick/tacmap, ) - behavior_delegate_type = /datum/behavior_delegate/praetorian_warden - keystone = TRUE - -/datum/xeno_mutator/praetorian_warden/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - var/mob/living/carbon/xenomorph/praetorian/praetorian = mutator_set.xeno + behavior_delegate_type = /datum/behavior_delegate/praetorian_warden +/datum/xeno_strain/warden/apply_strain(mob/living/carbon/xenomorph/praetorian/prae) // Make a 'halftank' - praetorian.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 - praetorian.damage_modifier -= XENO_DAMAGE_MOD_SMALL - - mutator_update_actions(praetorian) - mutator_set.recalculate_actions(description, flavor_description) + prae.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 + prae.damage_modifier -= XENO_DAMAGE_MOD_SMALL - praetorian.recalculate_everything() - - apply_behavior_holder(praetorian) - praetorian.mutation_icon_state = PRAETORIAN_WARDEN - praetorian.mutation_type = PRAETORIAN_WARDEN + prae.recalculate_everything() /datum/behavior_delegate/praetorian_warden name = "Praetorian Warden Behavior Delegate" @@ -49,12 +39,15 @@ var/internal_hitpoints_per_attack = 50 var/internal_hp_per_life = 5 + // State var/internal_hitpoints = 0 + var/transferred_healing = 0 /datum/behavior_delegate/praetorian_warden/append_to_stat() . = list() . += "Energy Reserves: [internal_hitpoints]/[internal_hitpoints_max]" + . += "Healing Done: [transferred_healing]" /datum/behavior_delegate/praetorian_warden/on_life() internal_hitpoints = min(internal_hitpoints_max, internal_hitpoints + internal_hp_per_life) @@ -88,7 +81,7 @@ if (internal_hitpoints >= internal_hitpoints_max) return to_chat(bound_xeno, SPAN_XENODANGER("You feel your internal health reserves increase!")) - internal_hitpoints = Clamp(internal_hitpoints + amount, 0, internal_hitpoints_max) + internal_hitpoints = clamp(internal_hitpoints + amount, 0, internal_hitpoints_max) /datum/behavior_delegate/praetorian_warden/proc/remove_internal_hitpoints(amount) add_internal_hitpoints(-1*amount) diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/berserker.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/berserker.dm similarity index 81% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/berserker.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/berserker.dm index 3694a201af..5b8981157b 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/berserker.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/berserker.dm @@ -1,39 +1,28 @@ -/datum/xeno_mutator/berserker - name = "STRAIN: Ravager - Berserker" - description = "You lose your empower, charge, and scissor cut, decrease your health, and sacrifice a bit of your influence under frenzy pheromones to increase your movement speed, slightly increase your armor, and gain a new set of abilities that make you a terrifying melee monster. By slashing, you heal yourself and gain a stack of rage that increases your armor, movement speed, attack speed, and your heals per slash, to a maximum of six rage. Use your new Appehend ability to increase your movement speed and apply a slow on the next target you slash and use your Clothesline ability to fling your target to heal yourself, even more-so if you have a rage stack that will be used up. Finally, use your Eviscerate to unleash a devastating windmill attack that heals you for every host you hit after an immobilizing wind-up." - flavor_description = "They shall be my finest warriors. They will rend and tear, crush and butcher, and maim and rage until every tallhost falls." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_RAVAGER) - mutator_actions_to_remove = list( +/datum/xeno_strain/berserker + name = RAVAGER_BERSERKER + description = "You lose your empower, charge, and scissor cut, decrease your health, and sacrifice a bit of your influence under frenzy pheromones to increase your movement speed, slightly increase your armor, and gain a new set of abilities that make you a terrifying melee monster. By slashing, you heal yourself and gain a stack of rage that increases your armor, movement speed, attack speed, and your heals per slash, to a maximum of six rage. Use your new Appehend ability to increase your movement speed and apply a slow on the next target you slash and use your Clothesline ability to fling your target to heal yourself, even more-so if you have a rage stack that will be used up. Finally, use your Eviscerate to unleash a devastating windmill attack that heals you for every enemy you hit after an immobilizing wind-up." + flavor_description = "Unbridled fury fills this one. You will become an extension of my rage." + icon_state_prefix = "Berserker" + + actions_to_remove = list( /datum/action/xeno_action/onclick/empower, /datum/action/xeno_action/activable/pounce/charge, /datum/action/xeno_action/activable/scissor_cut, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/onclick/apprehend, /datum/action/xeno_action/activable/clothesline, /datum/action/xeno_action/activable/eviscerate, ) - keystone = TRUE - behavior_delegate_type = /datum/behavior_delegate/ravager_berserker -/datum/xeno_mutator/berserker/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return + behavior_delegate_type = /datum/behavior_delegate/ravager_berserker - var/mob/living/carbon/xenomorph/ravager/ravager = mutator_set.xeno - ravager.mutation_type = RAVAGER_BERSERKER +/datum/xeno_strain/berserker/apply_strain(mob/living/carbon/xenomorph/ravager/ravager) ravager.plasma_max = 0 ravager.health_modifier -= XENO_HEALTH_MOD_MED ravager.armor_modifier += XENO_ARMOR_MOD_VERY_SMALL ravager.speed_modifier += XENO_SPEED_FASTMOD_TIER_3 ravager.received_phero_caps["frenzy"] = 2.9 // Moderate - mutator_update_actions(ravager) - mutator_set.recalculate_actions(description, flavor_description) - - apply_behavior_holder(ravager) ravager.recalculate_everything() @@ -52,7 +41,7 @@ // Eviscerate config var/rage_lock_duration = 10 SECONDS // 10 seconds of max rage - var/rage_cooldown_duration = 8 SECONDS // 8 seconds of NO rage. + var/rage_cooldown_duration = 10 SECONDS // 10 seconds of NO rage. // State for tracking rage var/rage = 0 @@ -81,7 +70,7 @@ if (rage == max_rage) bound_xeno.add_filter("berserker_rage", 1, list("type" = "outline", "color" = "#000000ff", "size" = 1)) rage_lock() - to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You feel a euphoric rush as you reach max rage! You are LOCKED at max Rage!")) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We feel a euphoric rush as we reach max rage! We are LOCKED at max Rage!")) // HP vamp bound_xeno.gain_health((0.05*rage + hp_vamp_ratio)*((bound_xeno.melee_damage_upper - bound_xeno.melee_damage_lower)/2 + bound_xeno.melee_damage_lower)) @@ -131,7 +120,7 @@ rage_cooldown_start_time = world.time decrement_rage(rage) bound_xeno.remove_filter("berserker_rage") - to_chat(bound_xeno, SPAN_XENOWARNING("Your adrenal glands spasm. You cannot gain any rage for [rage_cooldown_duration/10] seconds.")) + to_chat(bound_xeno, SPAN_XENOWARNING("Our adrenal glands spasm. We cannot gain any rage for [rage_cooldown_duration/10] seconds.")) addtimer(CALLBACK(src, PROC_REF(rage_cooldown_callback)), rage_cooldown_duration) bound_xeno.add_filter("berserker_lockdown", 1, list("type" = "outline", "color" = "#fcfcfcff", "size" = 1)) @@ -145,7 +134,7 @@ return original_damage if (next_slash_buffed) - to_chat(bound_xeno, SPAN_XENOHIGHDANGER("You significantly strengthen your attack, slowing [A]!")) + to_chat(bound_xeno, SPAN_XENOHIGHDANGER("We significantly strengthen our attack, slowing [A]!")) to_chat(A, SPAN_XENOHIGHDANGER("You feel a sharp pain as [bound_xeno] slashes you, slowing you down!")) A.apply_effect(get_xeno_stun_duration(A, slash_slow_duration), SLOW) next_slash_buffed = FALSE diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/hedgehog.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/hedgehog.dm similarity index 67% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/hedgehog.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/hedgehog.dm index 913883549f..b88df4068c 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/ravager/hedgehog.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/ravager/hedgehog.dm @@ -1,41 +1,28 @@ -/datum/xeno_mutator/hedgehog - name = "STRAIN: Ravager - Hedgehog" - description = "You lose your empower, charge, scissor cut and some slash damage, for a bit more explosive resistance, immunity to small explosions, and you gain several new abilities that allow you to become a spiky tank. You build up shards internally over time and also when taking damage that increase your armor's resilience. You can use these shards to power three new abilities: Spike Shield, which gives you a temporary shield that spits bone shards around you when damaged, Fire Spikes, which launches spikes at your target that slows them and does extra damage if they move, and finally, Spike Shed, which launches spikes all around yourself and gives you a temporary speed boost as an escape plan at the cost of all your stored shards and being unable to gain shards for thirty seconds." - flavor_description = "They will be of iron will and steely muscle. In great armor shall they be clad, and with the mightiest spikes will they be armed." - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_RAVAGER) // Only Ravager. - mutator_actions_to_remove = list( +/datum/xeno_strain/hedgehog + name = RAVAGER_HEDGEHOG + description = "You lose your empower, charge, scissor cut, and some slash damage in exchange for more explosive resistance. Your resistance scales with your shard count and at 50% grants you immunity to some explosive stuns. You accumulate shards over time and when taking damage. You can use these shards to power three new abilities: Spike Shield which gives you a temporary shield that spits bone shards around you when damaged; Fire Spikes which launches spikes at your target to slow them and deal damage when they move; and Spike Shed which launches all your spikes, grants a temporary speed boost, and disables shard generation for thirty seconds." + flavor_description = "You will pierce them a million times, show them what it feels like. This one will become my shield." + icon_state_prefix = "Hedgehog" + + actions_to_remove = list( /datum/action/xeno_action/onclick/empower, /datum/action/xeno_action/activable/pounce/charge, /datum/action/xeno_action/activable/scissor_cut, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/onclick/spike_shield, /datum/action/xeno_action/activable/rav_spikes, /datum/action/xeno_action/onclick/spike_shed, ) - behavior_delegate_type = /datum/behavior_delegate/ravager_hedgehog - keystone = TRUE - -/datum/xeno_mutator/hedgehog/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return - var/mob/living/carbon/xenomorph/ravager/ravager = mutator_set.xeno + behavior_delegate_type = /datum/behavior_delegate/ravager_hedgehog - ravager.mutation_type = RAVAGER_HEDGEHOG +/datum/xeno_strain/hedgehog/apply_strain(mob/living/carbon/xenomorph/ravager/ravager) ravager.plasma_max = 0 - ravager.small_explosives_stun = FALSE + ravager.small_explosives_stun = TRUE ravager.explosivearmor_modifier += XENO_EXPOSIVEARMOR_MOD_SMALL ravager.damage_modifier -= XENO_DAMAGE_MOD_SMALL - apply_behavior_holder(ravager) - - mutator_update_actions(ravager) - mutator_set.recalculate_actions(description, flavor_description) - ravager.recalculate_everything() /datum/behavior_delegate/ravager_hedgehog @@ -85,7 +72,6 @@ bound_xeno.speed_modifier += shard_lock_speed_mod bound_xeno.recalculate_speed() - shards_locked = FALSE // Return true if we have enough shards, false otherwise @@ -116,6 +102,15 @@ var/percentage_shards = round((shards / max_shards) * 100, 10) if(percentage_shards) holder.overlays += image('icons/mob/hud/hud.dmi', "xenoenergy[percentage_shards]") + + if(percentage_shards >= 50) + bound_xeno.small_explosives_stun = FALSE + bound_xeno.add_filter("hedge_unstunnable", 1, list("type" = "outline", "color" = "#421313", "size" = 1)) + else + bound_xeno.small_explosives_stun = TRUE + bound_xeno.remove_filter("hedge_unstunnable", 1, list("type" = "outline", "color" = "#421313", "size" = 1)) + + return diff --git a/code/modules/mob/living/carbon/xenomorph/mutators/strains/runner/acid.dm b/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm similarity index 85% rename from code/modules/mob/living/carbon/xenomorph/mutators/strains/runner/acid.dm rename to code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm index 490e5ca36c..0fb4a17190 100644 --- a/code/modules/mob/living/carbon/xenomorph/mutators/strains/runner/acid.dm +++ b/code/modules/mob/living/carbon/xenomorph/strains/castes/runner/acid.dm @@ -1,37 +1,27 @@ -/datum/xeno_mutator/acider - name = "STRAIN: Runner - Acider" +/datum/xeno_strain/acider + name = RUNNER_ACIDER description = "At the cost of a little bit of your speed and all of your current abilities, you gain a considerable amount of health, some armor, and a new organ that fills with volatile acid over time. Your Tail Stab and slashes apply acid to living lifeforms that slowly burns them, and slashes against targets with acid stacks fill your acid glands. You also gain Corrosive Acid equivalent to that of a boiler that you can deploy more quickly than any other caste, at the cost of a chunk of your acid reserves with each use. Finally, after a twenty second windup, you can force your body to explode, covering everything near you with acid. The more acid you have stored, the more devastating the explosion will be, but during those twenty seconds before detonation you are slowed and give off several warning signals which give talls an opportunity to end you before you can detonate. If you successfully explode, you will reincarnate as a larva again!" - flavor_description = "Burn their walls, maim their faces! Your life, for The Hive!" - cost = MUTATOR_COST_EXPENSIVE - individual_only = TRUE - caste_whitelist = list(XENO_CASTE_RUNNER) - keystone = TRUE - behavior_delegate_type = /datum/behavior_delegate/runner_acider - mutator_actions_to_remove = list( + flavor_description = "This one will be the last thing they hear. A martyr." + icon_state_prefix = "Acider" + + actions_to_remove = list( /datum/action/xeno_action/activable/pounce/runner, /datum/action/xeno_action/activable/runner_skillshot, /datum/action/xeno_action/onclick/toggle_long_range/runner, ) - mutator_actions_to_add = list( + actions_to_add = list( /datum/action/xeno_action/activable/acider_acid, /datum/action/xeno_action/activable/acider_for_the_hive, ) -/datum/xeno_mutator/acider/apply_mutator(datum/mutator_set/individual_mutators/mutator_set) - . = ..() - if (. == 0) - return + behavior_delegate_type = /datum/behavior_delegate/runner_acider - var/mob/living/carbon/xenomorph/runner/runner = mutator_set.xeno - runner.mutation_icon_state = RUNNER_ACIDER - runner.mutation_type = RUNNER_ACIDER +/datum/xeno_strain/acider/apply_strain(mob/living/carbon/xenomorph/runner/runner) runner.speed_modifier += XENO_SPEED_SLOWMOD_TIER_5 runner.armor_modifier += XENO_ARMOR_MOD_MED runner.health_modifier += XENO_HEALTH_MOD_ACIDER - apply_behavior_holder(runner) - mutator_update_actions(runner) + runner.recalculate_everything() - mutator_set.recalculate_actions(description, flavor_description) /datum/behavior_delegate/runner_acider var/acid_amount = 0 @@ -106,7 +96,7 @@ var/amplitude = 50 + 50 * (caboom_timer - caboom_left) / caboom_timer playsound(bound_xeno, caboom_sound[caboom_loop], amplitude, FALSE, 10) caboom_loop++ - if(caboom_loop > caboom_sound.len) + if(caboom_loop > length(caboom_sound)) caboom_loop = 1 if(caboom_left <= 0) caboom_trigger = FALSE @@ -130,7 +120,7 @@ var/max_burn_damage = acid_amount / caboom_burn_damage_ratio var/burn_range = acid_amount / caboom_burn_range_ratio - for(var/barricades in view(bound_xeno, acid_range)) + for(var/barricades in dview(acid_range, bound_xeno)) if(istype(barricades, /obj/structure/barricade)) new caboom_struct_acid_type(get_turf(barricades), barricades) continue @@ -139,7 +129,7 @@ continue var/x = bound_xeno.x var/y = bound_xeno.y - for(var/mob/living/target_living in view(bound_xeno, burn_range)) + FOR_DVIEW(var/mob/living/target_living, burn_range, bound_xeno, HIDE_INVISIBLE_OBSERVER) if (!isxeno_human(target_living) || bound_xeno.can_not_harm(target_living)) continue var/dist = 0 @@ -150,13 +140,15 @@ dist = (0.934*dx) + (0.427*dy) else dist = (0.427*dx) + (0.934*dy) - var/damage = round((burn_range - dist) * max_burn_damage / burn_range) + var/damage = floor((burn_range - dist) * max_burn_damage / burn_range) if(isxeno(target_living)) damage *= XVX_ACID_DAMAGEMULT target_living.apply_damage(damage, BURN) - for(var/turf/T in view(bound_xeno, acid_range)) + FOR_DVIEW_END + FOR_DVIEW(var/turf/T, acid_range, bound_xeno, HIDE_INVISIBLE_OBSERVER) new /obj/effect/particle_effect/smoke/acid_runner_harmless(T) + FOR_DVIEW_END playsound(bound_xeno, 'sound/effects/blobattack.ogg', 75) if(bound_xeno.client && bound_xeno.hive) var/datum/hive_status/hive_status = bound_xeno.hive diff --git a/code/modules/mob/living/carbon/xenomorph/strains/xeno_strain.dm b/code/modules/mob/living/carbon/xenomorph/strains/xeno_strain.dm new file mode 100644 index 0000000000..6ffa0a294f --- /dev/null +++ b/code/modules/mob/living/carbon/xenomorph/strains/xeno_strain.dm @@ -0,0 +1,135 @@ +/datum/xeno_strain + /// The name of the strain. Should be short but informative. + var/name + /// Description to be displayed on purchase. + var/description + /// (OPTIONAL) Flavor text to be shown on purchase. Semi-OOC + var/flavor_description + /// (OPTIONAL) A custom icon state prefix for xenos who have taken the strain. + var/icon_state_prefix + + /// A list of action typepaths which should be removed when a xeno takes the strain. + var/list/actions_to_remove + /// A list of action typepaths which should be added when a xeno takes the strain. + var/list/actions_to_add + + /// Typepath of the [/datum/behavior_delegate] to add. + var/behavior_delegate_type + +/** + * Add this strain to `xeno`, replacing their actions and behavior holder. + * + * Returns a bool indicating if the strain was successfully applied. + * **Override [/datum/xeno_strain/proc/apply_strain], not this! (Unless you know what you're doing.)** + */ +/datum/xeno_strain/proc/_add_to_xeno(mob/living/carbon/xenomorph/xeno) + SHOULD_NOT_OVERRIDE(TRUE) + + xeno.strain = src + + // Update the xeno's actions. + for(var/action_path in actions_to_remove) + remove_action(xeno, action_path) + for(var/action_path in actions_to_add) + give_action(xeno, action_path) + + // Update the xeno's behavior delegate. + if(behavior_delegate_type) + if(xeno.behavior_delegate) + qdel(xeno.behavior_delegate) + xeno.behavior_delegate = new behavior_delegate_type() + xeno.behavior_delegate.bound_xeno = xeno + xeno.behavior_delegate.add_to_xeno() + + apply_strain(xeno) + + xeno.update_icons() + xeno.hive.hive_ui.update_xeno_info() + + // Give them all of the info about the strain. + to_chat(xeno, SPAN_XENOANNOUNCE(description)) + if(flavor_description) + to_chat(xeno, SPAN_XENOLEADER(flavor_description)) + return TRUE + +/** + * Adds any special modifiers/changes from this strain to `xeno`. + * + * Called when the strain is first added to the player. + */ +/datum/xeno_strain/proc/apply_strain(mob/living/carbon/xenomorph/xeno) + // Override with custom behaviour. + return + + +/mob/living/carbon/xenomorph/verb/purchase_strain() + set name = "Purchase Strain" + set desc = "Purchase a strain for yourself" + set category = "Alien" + + // Firstly, make sure the xeno is actually able to take a strain. + if(!can_take_strain()) + return + + // Make an assoc list of {name: typepath} from the strains available to the xeno's caste. + var/list/strain_list = list() + for(var/datum/xeno_strain/strain_type as anything in caste.available_strains) + strain_list[initial(strain_type.name)] = strain_type + + // Ask the user which strain they want. + var/strain_choice = tgui_input_list(usr, "Which strain would you like to take?", "Choose Strain", strain_list, theme = "hive_status") + if(!strain_choice) + return + var/datum/xeno_strain/chosen_strain = strain_list[strain_choice] + + // Check again after the user picks one, in case anything changed. + if(!can_take_strain()) + return + // Show the user the strain's description, and double check that they want it. + if(alert(usr, "[initial(chosen_strain.description)]\n\nConfirm mutation?", "Choose Strain", "Yes", "No") != "Yes") + return + // One more time after they confirm. + if(!can_take_strain()) + return + + // Create the strain datum and apply it to the xeno. + var/datum/xeno_strain/strain_instance = new chosen_strain() + if(strain_instance._add_to_xeno(src)) + xeno_jitter(1.5 SECONDS) + // If it applied successfully, add it to the logs. + log_strain("[name] purchased strain '[strain_instance.type]'") + +/// Is this xeno currently able to take a strain? +/mob/living/carbon/xenomorph/proc/can_take_strain() + if(!length(caste.available_strains) || !check_state(TRUE)) + return FALSE + + if(SSticker.mode?.flags_round_type & MODE_NO_XENO_EVOLVE) + to_chat(src, SPAN_WARNING("This mode disallows xeno strains.")) + return FALSE + + if(strain) + to_chat(src, SPAN_WARNING("We have already chosen a strain.")) + return FALSE + + if(is_ventcrawling) + to_chat(src, SPAN_WARNING("This place is too constraining to take a strain.")) + return FALSE + + if(!isturf(loc)) + to_chat(src, SPAN_WARNING("We can't take a strain here.")) + return FALSE + + if(handcuffed || legcuffed) + to_chat(src, SPAN_WARNING("The restraints are too restricting to allow us to take a strain.")) + return FALSE + + if(health < maxHealth) + to_chat(src, SPAN_WARNING("We must be at full health to take a strain.")) + return FALSE + + if(agility || fortify || crest_defense || stealth) + to_chat(src, SPAN_WARNING("We cannot take a strain while in this stance.")) + return FALSE + + return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/update_icons.dm b/code/modules/mob/living/carbon/xenomorph/update_icons.dm index 0369bf2136..e64c8a5751 100644 --- a/code/modules/mob/living/carbon/xenomorph/update_icons.dm +++ b/code/modules/mob/living/carbon/xenomorph/update_icons.dm @@ -41,7 +41,7 @@ Q.queen_standing_icon = icon_xeno Q.queen_ovipositor_icon = 'icons/mob/xenos/ovipositor.dmi' - var/mutation_caste_state = "[mutation_type] [caste.caste_type]" + var/mutation_caste_state = "[get_strain_icon()] [caste.caste_type]" if(!walking_state_cache[mutation_caste_state]) var/cache_walking_state = FALSE for(var/state in icon_states(icon)) @@ -64,7 +64,7 @@ if(behavior_delegate?.on_update_icons()) return - var/mutation_caste_state = "[mutation_icon_state || mutation_type] [caste.caste_type]" + var/mutation_caste_state = "[get_strain_icon()] [caste.caste_type]" if(stat == DEAD) icon_state = "[mutation_caste_state] Dead" if(!(icon_state in icon_states(icon_xeno))) @@ -90,7 +90,6 @@ update_inv_r_hand() update_inv_l_hand() update_inv_back() - update_inv_resource() update_icons() /* CRUTCH ZONE - Update icons when relevant status happen - Ideally do this properly and for everything, then kill update_icons() someday */ @@ -149,7 +148,12 @@ var/t_state = r_hand.item_state if(!t_state) t_state = r_hand.icon_state - overlays_standing[X_R_HAND_LAYER] = r_hand.get_mob_overlay(src, WEAR_R_HAND) + /*Move inhand image to the center of the sprite. Strictly speaking this should probably be like monkey get_offset_overlay_image() and tailor item icon + positions to the hands of the xeno, but outside of special occasions xenos can't really pick items up and this tends to look better than human default.*/ + var/image/inhand_image = r_hand.get_mob_overlay(src, WEAR_R_HAND) + inhand_image.pixel_x = xeno_inhand_item_offset + overlays_standing[X_R_HAND_LAYER] = inhand_image + apply_overlay(X_R_HAND_LAYER) /mob/living/carbon/xenomorph/update_inv_l_hand() @@ -162,7 +166,13 @@ var/t_state = l_hand.item_state if(!t_state) t_state = l_hand.icon_state - overlays_standing[X_L_HAND_LAYER] = l_hand.get_mob_overlay(src, WEAR_L_HAND) + + /*Move inhand image overlay to the center of the sprite. Strictly speaking this should probably be like monkey get_offset_overlay_image() and tailor item icon + positions to the hands of the xeno, but outside of special occasions xenos can't really pick items up and this tends to look better than human default.*/ + var/image/inhand_image = l_hand.get_mob_overlay(src, WEAR_L_HAND) + inhand_image.pixel_x = xeno_inhand_item_offset + overlays_standing[X_L_HAND_LAYER] = inhand_image + apply_overlay(X_L_HAND_LAYER) /mob/living/carbon/xenomorph/update_inv_back() @@ -191,12 +201,6 @@ if(dir == NORTH && (back.flags_item & ITEM_OVERRIDE_NORTHFACE)) backpack_icon_holder.layer = -X_BACK_FRONT_LAYER -/mob/living/carbon/xenomorph/proc/update_inv_resource() - remove_overlay(X_RESOURCE_LAYER) - if(crystal_stored) - overlays_standing[X_RESOURCE_LAYER] = image("icon" = icon, "icon_state" = "[caste_type]_resources", "layer" =-X_RESOURCE_LAYER) - apply_overlay(X_RESOURCE_LAYER) - /mob/living/carbon/xenomorph/update_inv_legcuffed() remove_overlay(X_LEGCUFF_LAYER) if(legcuffed) @@ -323,8 +327,7 @@ return var/health_threshold - wound_icon_holder.layer = layer + 0.01 - health_threshold = max(CEILING((health * 4) / (maxHealth), 1), 0) //From 0 to 4, in 25% chunks + health_threshold = max(ceil((health * 4) / (maxHealth)), 0) //From 0 to 4, in 25% chunks if(health > HEALTH_THRESHOLD_DEAD) if(health_threshold > 3) wound_icon_holder.icon_state = "none" @@ -337,11 +340,12 @@ wound_icon_holder.icon_state = "[caste.caste_type]_walk_[health_threshold]" else wound_icon_holder.icon_state = handle_special_wound_states(health_threshold) - + if(organ_removed) + wound_icon_holder.icon_state = "[caste.caste_type]_dissection" ///Used to display the xeno wounds/backpacks without rapidly switching overlays /atom/movable/vis_obj - vis_flags = VIS_INHERIT_ID|VIS_INHERIT_DIR + vis_flags = VIS_INHERIT_ID|VIS_INHERIT_DIR|VIS_INHERIT_LAYER|VIS_INHERIT_PLANE appearance_flags = RESET_COLOR /atom/movable/vis_obj/xeno_wounds @@ -350,7 +354,7 @@ /atom/movable/vis_obj/xeno_pack/Initialize(mapload, mob/living/carbon/source) . = ..() if(source) - icon = default_xeno_onmob_icons[source.type] + icon = GLOB.default_xeno_onmob_icons[source.type] //Xeno Overlays Indexes////////// #undef X_BACK_LAYER diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm b/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm deleted file mode 100644 index 1369b1fa53..0000000000 --- a/code/modules/mob/living/carbon/xenomorph/xeno_defines.dm +++ /dev/null @@ -1,1569 +0,0 @@ -// Actual caste datum basedef -/datum/caste_datum - var/caste_type = "" - var/display_name = "" - var/tier = 0 - var/dead_icon = "Drone Dead" - var/language = LANGUAGE_XENOMORPH - var/melee_damage_lower = 10 - var/melee_damage_upper = 20 - ///allows fine tuning melee damage to vehicles per caste. - var/melee_vehicle_damage = 10 - var/evasion = XENO_EVASION_NONE - - var/speed = XENO_SPEED_TIER_10 - - var/plasma_max = 10 - var/plasma_gain = 5 - - var/crystal_max = 0 - - var/max_health = XENO_UNIVERSAL_HPMULT * 100 - ///Are they allowed to evolve (and have their evolution progress group) - var/evolution_allowed = 1 - ///Threshold to next evolution - var/evolution_threshold = 0 - /// whether they can get evo points without needing an ovi queen - var/evolve_without_queen = FALSE - ///This is where you add castes to evolve into. "Separated", "by", "commas" - var/list/evolves_to = list() - /// what caste or castes to de-evolve to. - var/list/deevolves_to = list() - ///If they can use consoles, etc. Set on Queen - var/is_intelligent = 0 - var/caste_desc = null - - // Tackles - var/tackle_min = 2 - var/tackle_max = 6 - var/tackle_chance = 35 - var/tacklestrength_min = 2 - var/tacklestrength_max = 3 - - ///Chance of deflecting projectiles. - var/armor_deflection = 0 - var/fire_immunity = FIRE_IMMUNITY_NONE - var/fire_intensity_resistance = 0 - - ///Delay timer for spitting - var/spit_delay = 60 - - /// Windup for spits - var/spit_windup = FALSE - - ///The strength of our aura. Zero means we can't emit one - var/aura_strength = 0 - - ///"Evolving" removed for the time being - var/aura_allowed = list("frenzy", "warding", "recovery") - - ///Adjust pixel size. 0.x is smaller, 1.x is bigger, percentage based. - var/adjust_size_x = 1 - var/adjust_size_y = 1 - - ///list of datum projectile types the xeno can use. - var/list/spit_types - - var/attack_delay = 0 //Bonus or pen to time in between attacks. + makes slashes slower. - - var/agility_speed_increase = 0 // this opens up possibilities for balancing - - // The type of mutator delegate to instantiate on the base caste. Will - // be replaced when the Xeno chooses a strain. - var/behavior_delegate_type = /datum/behavior_delegate - - // Resin building-related vars - /// Default build time and build distance - var/build_time_mult = BUILD_TIME_MULT_XENO - var/max_build_dist = 0 - - // Carrier vars // - - /// if a hugger is held in hand, won't attempt to leap and kill itself - var/hugger_nurturing = FALSE - var/huggers_max = 0 - var/throwspeed = 0 - var/hugger_delay = 0 - var/eggs_max = 0 - var/egg_cooldown = 30 - ///Armor but for explosions - var/xeno_explosion_resistance = 0 - - //Queen vars - var/can_hold_facehuggers = 0 - var/can_hold_eggs = CANNOT_HOLD_EGGS - - var/can_be_queen_healed = TRUE - var/can_be_revived = TRUE - - var/can_vent_crawl = 1 - - var/caste_luminosity = 0 - - /// if fire_immunity is set to be vulnerable, how much will fire damage be multiplied. Defines in xeno.dm - var/fire_vulnerability_mult = 1 - - var/burrow_cooldown = 5 SECONDS - var/tunnel_cooldown = 100 - var/widen_cooldown = 10 SECONDS - ///Big strong ability, big cooldown. - var/tremor_cooldown = 30 SECONDS - ///whether the xeno heals even outside weeds. - var/innate_healing = FALSE - - var/acid_level = 0 - var/weed_level = WEED_LEVEL_STANDARD - ///Time it takes between acid splash retaliate procs. Variable per caste, for if we want future castes that are acid bombs - var/acid_splash_cooldown = 3 SECONDS - - // regen vars - - var/heal_delay_time = 0 SECONDS - var/heal_resting = 1 - var/heal_standing = 0.4 - var/heal_knocked_out = 0.33 - - var/list/resin_build_order - var/minimum_xeno_playtime = 0 - -// cannot evolve to this caste until the round has been going on for this amount of time - // IMPORTANT: this is ROUND_TIME, not world.time - var/minimum_evolve_time = 1 MINUTES - /// Iconstate for the xeno on the minimap - var/minimap_icon = "xeno" - ///The iconstate for leadered xenos on the minimap, added as overlay - var/minimap_leadered_overlay = "xenoleader" - - var/royal_caste = FALSE - - -/datum/caste_datum/can_vv_modify() - return FALSE - -/datum/caste_datum/New() - . = ..() - - //Initialise evolution and upgrade thresholds in one place, once and for all - evolution_threshold = 0 - if(evolution_allowed) - switch(tier) - if(0) - evolution_threshold = 60 - if(1) - evolution_threshold = 200 - if(2) - evolution_threshold = 500 - //Other tiers (T3, Queen, etc.) can't evolve anyway - - resin_build_order = GLOB.resin_build_order_drone - -/client/var/cached_xeno_playtime - -/// playtime for all castes -/client/proc/get_total_xeno_playtime(skip_cache = FALSE) - if(cached_xeno_playtime && !skip_cache) - return cached_xeno_playtime - - var/total_xeno_playtime = 0 - - for(var/caste in RoleAuthority.castes_by_name) - total_xeno_playtime += get_job_playtime(src, caste) - - total_xeno_playtime += get_job_playtime(src, JOB_XENOMORPH) - - if(player_entity) - var/past_xeno_playtime = player_entity.get_playtime(STATISTIC_XENO) - if(past_xeno_playtime) - total_xeno_playtime += past_xeno_playtime - - - cached_xeno_playtime = total_xeno_playtime - - return total_xeno_playtime - -/// playtime for drone and drone evolution castes -/client/proc/get_total_drone_playtime() - var/total_drone_playtime = 0 - - var/list/drone_evo_castes = list(XENO_CASTE_DRONE, XENO_CASTE_CARRIER, XENO_CASTE_BURROWER, XENO_CASTE_HIVELORD, XENO_CASTE_QUEEN) - - for(var/caste in RoleAuthority.castes_by_name) - if(!(caste in drone_evo_castes)) - continue - total_drone_playtime += get_job_playtime(src, caste) - - return total_drone_playtime - -/// playtime for t3 castes and queen -/client/proc/get_total_t3_playtime() - var/total_t3_playtime = 0 - var/datum/caste_datum/caste - for(var/caste_name in RoleAuthority.castes_by_name) - caste = RoleAuthority.castes_by_name[caste_name] - if(caste.tier < 3) - continue - total_t3_playtime += get_job_playtime(src, caste_name) - - return total_t3_playtime - -/datum/caste_datum/proc/can_play_caste(client/client) - if(!CONFIG_GET(flag/use_timelocks)) - return TRUE - - var/total_xeno_playtime = client.get_total_xeno_playtime() - - if(minimum_xeno_playtime && total_xeno_playtime < minimum_xeno_playtime) - return FALSE - - return TRUE - -/datum/caste_datum/proc/get_caste_requirement(client/client) - return minimum_xeno_playtime - client.get_total_xeno_playtime() - -/datum/caste_datum/proc/get_minimap_icon() - var/image/background = mutable_appearance('icons/ui_icons/map_blips.dmi', "background") - background.color = MINIMAP_ICON_BACKGROUND_XENO - - var/iconstate = minimap_icon ? minimap_icon : "unknown" - var/mutable_appearance/icon = image('icons/ui_icons/map_blips.dmi', icon_state = iconstate) - icon.appearance_flags = RESET_COLOR - background.overlays += icon - - return background - -/datum/hive_status - var/name = "Normal Hive" - - // Used for the faction of the xenomorph. Not recommended to modify. - var/internal_faction - - /// Short Hive ID as string used in stats reporting - var/reporting_id = "normal" - - var/hivenumber = XENO_HIVE_NORMAL - var/mob/living/carbon/xenomorph/queen/living_xeno_queen - var/egg_planting_range = 15 - var/slashing_allowed = XENO_SLASH_ALLOWED //This initial var allows the queen to turn on or off slashing. Slashing off means harm intent does much less damage. - var/construction_allowed = NORMAL_XENO //Who can place construction nodes for special structures - var/destruction_allowed = XENO_LEADER //Who can destroy special structures - var/unnesting_allowed = TRUE - var/hive_orders = "" //What orders should the hive have - var/color = null - var/ui_color = null // Color for hive status collapsible buttons and xeno count list - var/prefix = "" - var/queen_leader_limit = 2 - var/list/open_xeno_leader_positions = list(1, 2) // Ordered list of xeno leader positions (indexes in xeno_leader_list) that are not occupied - var/list/xeno_leader_list[2] // Ordered list (i.e. index n holds the nth xeno leader) - var/stored_larva = 0 - - ///used by /datum/hive_status/proc/increase_larva_after_burst() to support non-integer increases to larva - var/partial_larva = 0 - /// Assoc list of free slots available to specific castes - var/list/free_slots = list( - /datum/caste_datum/burrower = 1, - /datum/caste_datum/hivelord = 1, - /datum/caste_datum/carrier = 1 - ) - /// Assoc list of slots currently used by specific castes (for calculating free_slot usage) - var/list/used_slots = list() - /// list of living tier2 xenos - var/list/tier_2_xenos = list() - /// list of living tier3 xenos - var/list/tier_3_xenos = list() - /// list of living xenos - var/list/totalXenos = list() - /// list of previously living xenos (hardrefs currently) - var/list/total_dead_xenos = list() - var/xeno_queen_timer - var/isSlotOpen = TRUE //Set true for starting alerts only after the hive has reached its full potential - var/allowed_nest_distance = 15 //How far away do we allow nests from an ovied Queen. Default 15 tiles. - var/obj/effect/alien/resin/special/pylon/core/hive_location = null //Set to ref every time a core is built, for defining the hive location - var/crystal_stored = 0 //How much stockpiled material is stored for the hive to use. - - var/datum/mutator_set/hive_mutators/mutators = new - var/tier_slot_multiplier = 1 - var/larva_gestation_multiplier = 0.25 - var/bonus_larva_spawn_chance = 1 - var/hijack_burrowed_surge = FALSE //at hijack, start spawning lots of burrowed - /// how many burrowed is going to spawn during larva surge - var/hijack_burrowed_left = 0 - - var/ignore_slots = FALSE - var/dynamic_evolution = TRUE - var/evolution_rate = 3 // Only has use if dynamic_evolution is false - var/evolution_bonus = 0 - - var/allow_no_queen_actions = TRUE - var/allow_no_queen_evo = FALSE - var/evolution_without_ovipositor = TRUE //Temporary for the roundstart. - /// Set to false if you want to prevent evolutions into Queens - var/allow_queen_evolve = TRUE - /// Set to true if you want to prevent bursts and spawns of new xenos. Will also prevent healing if the queen no longer exists - var/hardcore = FALSE - /// Set to false if you want to prevent getting burrowed larva from latejoin marines - var/latejoin_burrowed = TRUE - - var/list/hive_inherant_traits - - // Cultist Info - var/mob/living/carbon/leading_cult_sl - - //List of how many maximum of each special structure you can have - var/list/hive_structures_limit = list( - XENO_STRUCTURE_CORE = 1, - XENO_STRUCTURE_CLUSTER = 8, - XENO_STRUCTURE_POOL = 1, - XENO_STRUCTURE_EGGMORPH = 6, - XENO_STRUCTURE_EVOPOD = 2, - XENO_STRUCTURE_RECOVERY = 6, - XENO_STRUCTURE_PYLON = 2, - ) - - var/global/list/hive_structure_types = list( - XENO_STRUCTURE_CORE = /datum/construction_template/xenomorph/core, - XENO_STRUCTURE_CLUSTER = /datum/construction_template/xenomorph/cluster, - XENO_STRUCTURE_EGGMORPH = /datum/construction_template/xenomorph/eggmorph, - XENO_STRUCTURE_RECOVERY = /datum/construction_template/xenomorph/recovery - ) - - var/list/list/hive_structures = list() //Stringref list of structures that have been built - var/list/list/hive_constructions = list() //Stringref list of structures that are being built - - var/datum/hive_status_ui/hive_ui - var/datum/mark_menu_ui/mark_ui - var/datum/hive_faction_ui/faction_ui - - var/list/tunnels = list() - - var/list/allies = list() - - var/list/resin_marks = list() - - var/list/banished_ckeys = list() - - var/hivecore_cooldown = FALSE - - var/need_round_end_check = FALSE - - //Joining as Facehugger vars - /// When can huggers join the round - var/hugger_timelock = 15 MINUTES - /// How many huggers can the hive support - var/playable_hugger_limit = 0 - /// Minimum number of huggers available at any hive size - var/playable_hugger_minimum = 2 - /// This number divides the total xenos counted for slots to give the max number of facehuggers - var/playable_hugger_max_divisor = 4 - - /// How many lesser drones the hive can support - var/lesser_drone_limit = 0 - /// Slots available for lesser drones will never go below this number - var/lesser_drone_minimum = 2 - /// This number divides the total xenos counted for slots to give the max number of lesser drones - var/playable_lesser_drones_max_divisor = 3 - - var/datum/tacmap/drawing/xeno/tacmap - var/minimap_type = MINIMAP_FLAG_XENO - -/datum/hive_status/New() - mutators.hive = src - hive_ui = new(src) - mark_ui = new(src) - faction_ui = new(src) - minimap_type = get_minimap_flag_for_faction(hivenumber) - tacmap = new(src, minimap_type) - if(!internal_faction) - internal_faction = name - if(hivenumber != XENO_HIVE_NORMAL) - return - - RegisterSignal(SSdcs, COMSIG_GLOB_POST_SETUP, PROC_REF(post_setup)) - -/datum/hive_status/proc/post_setup() - SIGNAL_HANDLER - - setup_evolution_announcements() - setup_pylon_limits() - -/datum/hive_status/proc/setup_evolution_announcements() - for(var/time in GLOB.xeno_evolve_times) - if(time == "0") - continue - - addtimer(CALLBACK(src, PROC_REF(announce_evolve_available), GLOB.xeno_evolve_times[time]), text2num(time)) - -/// Sets up limits on pylons in New() for potential futureproofing with more static comms -/datum/hive_status/proc/setup_pylon_limits() - hive_structures_limit[XENO_STRUCTURE_PYLON] = length(GLOB.all_static_telecomms_towers) || 2 - -/datum/hive_status/proc/announce_evolve_available(list/datum/caste_datum/available_castes) - - var/list/castes_available = list() - for(var/datum/caste_datum/current_caste as anything in available_castes) - castes_available += initial(current_caste.caste_type) - - var/castes = castes_available.Join(", ") - xeno_message(SPAN_XENOANNOUNCE("The Hive is now strong enough to support: [castes]")) - xeno_maptext("The Hive can now support: [castes]", "Hive Strengthening") - - -// Adds a xeno to this hive -/datum/hive_status/proc/add_xeno(mob/living/carbon/xenomorph/X) - if(!X || !istype(X)) - return - - // If the xeno is part of another hive, they should be removed from that one first - if(X.hive && X.hive != src) - X.hive.remove_xeno(X, TRUE) - - // Already in the hive - if(X in totalXenos) - return - - // Can only have one queen. - if(isqueen(X)) - if(!living_xeno_queen && !is_admin_level(X.z)) // Don't consider xenos in admin level - set_living_xeno_queen(X) - - X.hivenumber = hivenumber - X.hive = src - - X.set_faction(internal_faction) - - if(X.hud_list) - X.hud_update() - - var/area/A = get_area(X) - if(!is_admin_level(X.z) || (A.flags_atom & AREA_ALLOW_XENO_JOIN)) - totalXenos += X - if(X.tier == 2) - tier_2_xenos += X - else if(X.tier == 3) - tier_3_xenos += X - - // Xenos are a fuckfest of cross-dependencies of different datums that are initialized at different times - // So don't even bother trying updating UI here without large refactors - -// Removes the xeno from the hive -/datum/hive_status/proc/remove_xeno(mob/living/carbon/xenomorph/xeno, hard = FALSE, light_mode = FALSE) - if(!xeno || !istype(xeno)) - return - - // Make sure the xeno was in the hive in the first place - if(!(xeno in totalXenos)) - return - - // This might be a redundant check now that Queen/Destroy() checks, but doesn't hurt to double check - if(living_xeno_queen == xeno) - var/mob/living/carbon/xenomorph/queen/next_queen = null - for(var/mob/living/carbon/xenomorph/queen/queen in totalXenos) - if(!is_admin_level(queen.z) && queen != src && !QDELETED(queen)) - next_queen = queen - break - - set_living_xeno_queen(next_queen) // either null or a queen - - // We allow "soft" removals from the hive (the xeno still retains information about the hive) - // This is so that xenos can add themselves back to the hive if they should die or otherwise go "on leave" from the hive - if(hard) - xeno.hivenumber = 0 - xeno.hive = null -#ifndef UNIT_TESTS // Since this is a hard ref, we shouldn't confuse create_and_destroy - else - total_dead_xenos += xeno -#endif - - totalXenos -= xeno - if(xeno.tier == 2) - tier_2_xenos -= xeno - else if(xeno.tier == 3) - tier_3_xenos -= xeno - - // Only handle free slots if the xeno is not in tdome - if(!is_admin_level(xeno.z)) - var/selected_caste = GLOB.xeno_datum_list[xeno.caste_type]?.type - if(used_slots[selected_caste]) - used_slots[selected_caste]-- - - if(!light_mode) - hive_ui.update_xeno_counts() - hive_ui.xeno_removed(xeno) - -/datum/hive_status/proc/set_living_xeno_queen(mob/living/carbon/xenomorph/queen/queen) - if(!queen) - mutators.reset_mutators() - SStracking.delete_leader("hive_[hivenumber]") - SStracking.stop_tracking("hive_[hivenumber]", living_xeno_queen) - SShive_status.wait = 10 SECONDS - else - SStracking.set_leader("hive_[hivenumber]", queen) - SShive_status.wait = 2 SECONDS - - SEND_SIGNAL(src, COMSIG_HIVE_NEW_QUEEN, queen) - living_xeno_queen = queen - - recalculate_hive() - -/datum/hive_status/proc/recalculate_hive() - if (!living_xeno_queen) - queen_leader_limit = 0 //No leaders for a Hive without a Queen! - else - queen_leader_limit = 4 + mutators.leader_count_boost - - if (xeno_leader_list.len > queen_leader_limit) - var/diff = 0 - for (var/i in queen_leader_limit + 1 to xeno_leader_list.len) - if(!open_xeno_leader_positions.Remove(i)) - remove_hive_leader(xeno_leader_list[i]) - diff++ - xeno_leader_list.len -= diff // Changing the size of xeno_leader_list needs to go at the end or else it won't iterate through the list properly - else if (xeno_leader_list.len < queen_leader_limit) - for (var/i in xeno_leader_list.len + 1 to queen_leader_limit) - open_xeno_leader_positions += i - xeno_leader_list.len++ - - - tier_slot_multiplier = mutators.tier_slot_multiplier - larva_gestation_multiplier = mutators.larva_gestation_multiplier - bonus_larva_spawn_chance = mutators.bonus_larva_spawn_chance - - hive_ui.update_all_data() - -/datum/hive_status/proc/add_hive_leader(mob/living/carbon/xenomorph/xeno) - if(!xeno) - return FALSE //How did this even happen? - if(!open_xeno_leader_positions.len) - return FALSE //Too many leaders already (no available xeno leader positions) - if(xeno.hive_pos != NORMAL_XENO) - return FALSE //Already on the list - var/leader_num = open_xeno_leader_positions[1] - xeno_leader_list[leader_num] = xeno - xeno.hive_pos = XENO_LEADER_HIVE_POS(leader_num) - xeno.handle_xeno_leader_pheromones() - xeno.hud_update() // To add leader star - open_xeno_leader_positions -= leader_num - - xeno.update_minimap_icon() - - give_action(xeno, /datum/action/xeno_action/activable/info_marker) - - hive_ui.update_xeno_keys() - return TRUE - -/datum/hive_status/proc/remove_hive_leader(mob/living/carbon/xenomorph/xeno, light_mode = FALSE) - if(!istype(xeno) || !IS_XENO_LEADER(xeno)) - return FALSE - - var/leader_num = GET_XENO_LEADER_NUM(xeno) - - xeno_leader_list[leader_num] = null - - if(!light_mode) // Don't run side effects during deletions. Better yet, replace all this by signals someday - xeno.hive_pos = NORMAL_XENO - xeno.handle_xeno_leader_pheromones() - xeno.hud_update() // To remove leader star - - // Need to maintain ascending order of open_xeno_leader_positions - for (var/i in 1 to queen_leader_limit) - if (i > open_xeno_leader_positions.len || open_xeno_leader_positions[i] > leader_num) - open_xeno_leader_positions.Insert(i, leader_num) - break - - if(!light_mode) - hive_ui.update_xeno_keys() - - for(var/obj/effect/alien/resin/marker/leaderless_mark in resin_marks) //no resin_mark limit abuse - if(leaderless_mark.createdby == xeno.nicknumber) - qdel(leaderless_mark) - - xeno.update_minimap_icon() - - remove_action(xeno, /datum/action/xeno_action/activable/info_marker) - - return TRUE - -/datum/hive_status/proc/replace_hive_leader(mob/living/carbon/xenomorph/original, mob/living/carbon/xenomorph/replacement) - if(!replacement || replacement.hive_pos != NORMAL_XENO) - return remove_hive_leader(original) - - var/leader_num = GET_XENO_LEADER_NUM(original) - - xeno_leader_list[leader_num] = replacement - - original.hive_pos = NORMAL_XENO - original.handle_xeno_leader_pheromones() - original.hud_update() // To remove leader star - remove_action(original, /datum/action/xeno_action/activable/info_marker) - - replacement.hive_pos = XENO_LEADER_HIVE_POS(leader_num) - replacement.handle_xeno_leader_pheromones() - replacement.hud_update() // To add leader star - give_action(replacement, /datum/action/xeno_action/activable/info_marker) - - hive_ui.update_xeno_keys() - -/datum/hive_status/proc/handle_xeno_leader_pheromones() - for(var/mob/living/carbon/xenomorph/L in xeno_leader_list) - L.handle_xeno_leader_pheromones() - -/* - * Helper procs for the Hive Status UI - * These are all called by the hive status UI manager to update its data - */ - -// Returns a list of how many of each caste of xeno there are, sorted by tier -/datum/hive_status/proc/get_xeno_counts() - // Every caste is manually defined here so you get - var/list/xeno_counts = list( - // Yes, Queen is technically considered to be tier 0 - list(XENO_CASTE_LARVA = 0, "Queen" = 0), - list(XENO_CASTE_DRONE = 0, XENO_CASTE_RUNNER = 0, XENO_CASTE_SENTINEL = 0, XENO_CASTE_DEFENDER = 0), - list(XENO_CASTE_HIVELORD = 0, XENO_CASTE_BURROWER = 0, XENO_CASTE_CARRIER = 0, XENO_CASTE_LURKER = 0, XENO_CASTE_SPITTER = 0, XENO_CASTE_WARRIOR = 0), - list(XENO_CASTE_BOILER = 0, XENO_CASTE_CRUSHER = 0, XENO_CASTE_PRAETORIAN = 0, XENO_CASTE_RAVAGER = 0) - ) - - for(var/mob/living/carbon/xenomorph/X in totalXenos) - //don't show xenos in the thunderdome when admins test stuff. - if(is_admin_level(X.z)) - var/area/A = get_area(X) - if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) - continue - - if(X.caste && X.counts_for_slots) - xeno_counts[X.caste.tier+1][X.caste.caste_type]++ - - return xeno_counts - -// Returns a sorted list of some basic info (stuff that's needed for sorting) about all the xenos in the hive -// The idea is that we sort this list, and use it as a "key" for all the other information (especially the nicknumber) -// in the hive status UI. That way we can minimize the amount of sorts performed by only calling this when xenos are created/disposed -/datum/hive_status/proc/get_xeno_keys() - var/list/xenos[totalXenos.len] - - var/index = 1 - var/useless_slots = 0 - for(var/mob/living/carbon/xenomorph/X in totalXenos) - if(is_admin_level(X.z)) - var/area/A = get_area(X) - if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) - useless_slots++ - continue - - // Insert without doing list merging - xenos[index++] = list( - "nicknumber" = X.nicknumber, - "tier" = X.tier, // This one is only important for sorting - "is_leader" = (IS_XENO_LEADER(X)), - "is_queen" = istype(X.caste, /datum/caste_datum/queen), - "caste_type" = X.caste_type - ) - - // Clear nulls from the xenos list - xenos.len -= useless_slots - - // Make it all nice and fancy by sorting the list before returning it - var/list/sorted_keys = sort_xeno_keys(xenos) - if(length(sorted_keys)) - return sorted_keys - return xenos - -// This sorts the xeno info list by multiple criteria. Prioritized in order: -// 1. Queen -// 2. Leaders -// 3. Tier -// It uses a slightly modified insertion sort to accomplish this -/datum/hive_status/proc/sort_xeno_keys(list/xenos) - if(!length(xenos)) - return - - var/list/sorted_list = xenos.Copy() - - if(!length(sorted_list)) - return - - for(var/index in 2 to length(sorted_list)) - var/j = index - - while(j > 1) - var/current = sorted_list[j] - var/prev = sorted_list[j-1] - - // Queen comes first, always - if(current["is_queen"]) - sorted_list.Swap(j-1, j) - j-- - continue - - // don't muck up queen's slot - if(prev["is_queen"]) - j-- - continue - - // Leaders before normal xenos - if(!prev["is_leader"] && current["is_leader"]) - sorted_list.Swap(j-1, j) - j-- - continue - - // Make sure we're only comparing leaders to leaders and non-leaders to non-leaders when sorting - // This means we get leaders sorted first, then non-leaders sorted - // Sort by tier first, higher tiers over lower tiers, and then by name alphabetically - - // Could not think of an elegant way to write this - if(!(current["is_leader"]^prev["is_leader"])\ - && (prev["tier"] < current["tier"]\ - || prev["tier"] == current["tier"] && prev["caste_type"] > current["caste_type"]\ - )) - sorted_list.Swap(j-1, j) - - j-- - - return sorted_list - -// Returns a list with some more info about all xenos in the hive -/datum/hive_status/proc/get_xeno_info() - var/list/xenos = list() - - for(var/mob/living/carbon/xenomorph/X in totalXenos) - if(is_admin_level(X.z)) - var/area/A = get_area(X) - if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) - continue - - var/xeno_name = X.name - // goddamn fucking larvas with their weird ass maturing system - // its name updates with its icon, unlike other castes which only update the mature/elder, etc. prefix on evolve - if(istype(X, /mob/living/carbon/xenomorph/larva)) - xeno_name = "Larva ([X.nicknumber])" - xenos["[X.nicknumber]"] = list( - "name" = xeno_name, - "strain" = X.mutation_type, - "ref" = "\ref[X]" - ) - - return xenos - -/datum/hive_status/proc/set_hive_location(obj/effect/alien/resin/special/pylon/core/C) - if(!C || C == hive_location) - return - var/area/A = get_area(C) - xeno_message(SPAN_XENOANNOUNCE("The Queen has set the hive location as \the [A]."), 3, hivenumber) - hive_location = C - hive_ui.update_hive_location() - -// Returns a list of xeno healths and locations -/datum/hive_status/proc/get_xeno_vitals() - var/list/xenos = list() - - for(var/mob/living/carbon/xenomorph/X in totalXenos) - if(is_admin_level(X.z)) - var/area/A = get_area(X) - if(!(A.flags_atom & AREA_ALLOW_XENO_JOIN)) - continue - - if(!(X in GLOB.living_xeno_list)) - continue - - var/area/A = get_area(X) - var/area_name = "Unknown" - if(A) - area_name = A.name - - xenos["[X.nicknumber]"] = list( - "health" = round((X.health / X.maxHealth) * 100, 1), - "area" = area_name, - "is_ssd" = (!X.client) - ) - - return xenos - -#define TIER_3 "3" -#define TIER_2 "2" -#define OPEN_SLOTS "open_slots" -#define GUARANTEED_SLOTS "guaranteed_slots" - -// Returns an assoc list of open slots and guaranteed slots left -/datum/hive_status/proc/get_tier_slots() - var/list/slots = list( - TIER_3 = list( - OPEN_SLOTS = 0, - GUARANTEED_SLOTS = list(), - ), - TIER_2 = list( - OPEN_SLOTS = 0, - GUARANTEED_SLOTS = list(), - ), - ) - - var/used_tier_2_slots = length(tier_2_xenos) - var/used_tier_3_slots = length(tier_3_xenos) - - for(var/caste_path in free_slots) - var/slots_free = free_slots[caste_path] - var/slots_used = used_slots[caste_path] - var/datum/caste_datum/current_caste = caste_path - if(slots_used) - // Don't count any free slots in use - switch(initial(current_caste.tier)) - if(2) - used_tier_2_slots -= min(slots_used, slots_free) - if(3) - used_tier_3_slots -= min(slots_used, slots_free) - if(slots_free <= slots_used) - continue - // Display any free slots available - switch(initial(current_caste.tier)) - if(2) - slots[TIER_2][GUARANTEED_SLOTS][initial(current_caste.caste_type)] = slots_free - slots_used - if(3) - slots[TIER_3][GUARANTEED_SLOTS][initial(current_caste.caste_type)] = slots_free - slots_used - - var/burrowed_factor = min(stored_larva, sqrt(4*stored_larva)) - var/effective_total = round(burrowed_factor) - for(var/mob/living/carbon/xenomorph/xeno as anything in totalXenos) - if(xeno.counts_for_slots) - effective_total++ - - // Tier 3 slots are always 20% of the total xenos in the hive - slots[TIER_3][OPEN_SLOTS] = max(0, Ceiling(0.20*effective_total/tier_slot_multiplier) - used_tier_3_slots) - // Tier 2 slots are between 30% and 50% of the hive, depending - // on how many T3s there are. - slots[TIER_2][OPEN_SLOTS] = max(0, Ceiling(0.5*effective_total/tier_slot_multiplier) - used_tier_2_slots - used_tier_3_slots) - - return slots - -#undef TIER_3 -#undef TIER_2 -#undef OPEN_SLOTS -#undef GUARANTEED_SLOTS - -/datum/hive_status/proc/can_build_structure(structure_name) - if(!structure_name || !hive_structures_limit[structure_name]) - return FALSE - var/total_count = 0 - if(hive_structures[structure_name]) - total_count += hive_structures[structure_name].len - if(hive_constructions[structure_name]) - total_count += hive_constructions[structure_name].len - if(total_count >= hive_structures_limit[structure_name]) - return FALSE - return TRUE - -/datum/hive_status/proc/has_structure(structure_name) - if(!structure_name) - return FALSE - if(hive_structures[structure_name] && hive_structures[structure_name].len) - return TRUE - return FALSE - -/datum/hive_status/proc/add_construction(obj/effect/alien/resin/construction/S) - if(!S || !S.template) - return FALSE - var/name_ref = initial(S.template.name) - if(!hive_constructions[name_ref]) - hive_constructions[name_ref] = list() - if(hive_constructions[name_ref].len >= hive_structures_limit[name_ref]) - return FALSE - hive_constructions[name_ref] += src - return TRUE - -/datum/hive_status/proc/remove_construction(obj/effect/alien/resin/construction/S) - if(!S || !S.template) - return FALSE - var/name_ref = initial(S.template.name) - hive_constructions[name_ref] -= src - return TRUE - -/datum/hive_status/proc/add_special_structure(obj/effect/alien/resin/special/S) - if(!S) - return FALSE - var/name_ref = initial(S.name) - if(!hive_structures[name_ref]) - hive_structures[name_ref] = list() - if(hive_structures[name_ref].len >= hive_structures_limit[name_ref]) - return FALSE - hive_structures[name_ref] += S - return TRUE - -/datum/hive_status/proc/remove_special_structure(obj/effect/alien/resin/special/S) - if(!S) - return FALSE - var/name_ref = initial(S.name) - hive_structures[name_ref] -= S - return TRUE - -/datum/hive_status/proc/has_special_structure(name_ref) - if(!name_ref || !hive_structures[name_ref] || !hive_structures[name_ref].len) - return 0 - return hive_structures[name_ref].len - -/datum/hive_status/proc/abandon_on_hijack() - var/area/hijacked_dropship = get_area(living_xeno_queen) - var/shipside_humans_weighted_count = 0 - var/xenos_count = 0 - for(var/name_ref in hive_structures) - for(var/obj/effect/alien/resin/special/S in hive_structures[name_ref]) - if(get_area(S) == hijacked_dropship) - continue - S.hijack_delete = TRUE - hive_structures[name_ref] -= S - qdel(S) - for(var/mob/living/carbon/xenomorph/xeno as anything in totalXenos) - if(get_area(xeno) != hijacked_dropship && xeno.loc && is_ground_level(xeno.loc.z)) - if(isfacehugger(xeno) || islesserdrone(xeno)) - to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind.")) - if(xeno.stomach_contents.len) - xeno.devour_timer = 0 - xeno.handle_stomach_contents() - qdel(xeno) - continue - if(xeno.hunter_data.hunted && !isqueen(xeno)) - to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, seperating you from her hive! You must defend yourself from the headhunter before you can enter hibernation...")) - xeno.set_hive_and_update(XENO_HIVE_FORSAKEN) - else - to_chat(xeno, SPAN_XENOANNOUNCE("The Queen has left without you, you quickly find a hiding place to enter hibernation as you lose touch with the hive mind.")) - if(xeno.stomach_contents.len) - xeno.devour_timer = 0 - xeno.handle_stomach_contents() - qdel(xeno) - stored_larva++ - continue - if(xeno.tier >= 1) - xenos_count++ - for(var/i in GLOB.alive_mob_list) - var/mob/living/potential_host = i - if(!(potential_host.status_flags & XENO_HOST)) - continue - if(!is_ground_level(potential_host.z) || get_area(potential_host) == hijacked_dropship) - continue - var/obj/item/alien_embryo/A = locate() in potential_host - if(A && A.hivenumber != hivenumber) - continue - for(var/obj/item/alien_embryo/embryo in potential_host) - embryo.hivenumber = XENO_HIVE_FORSAKEN - potential_host.update_med_icon() - for(var/mob/living/carbon/human/current_human as anything in GLOB.alive_human_list) - if(!(isspecieshuman(current_human) || isspeciessynth(current_human))) - continue - var/datum/job/job = RoleAuthority.roles_for_mode[current_human.job] - if(!job) - continue - var/turf/turf = get_turf(current_human) - if(is_mainship_level(turf?.z)) - shipside_humans_weighted_count += RoleAuthority.calculate_role_weight(job) - hijack_burrowed_surge = TRUE - hijack_burrowed_left = max(n_ceil(shipside_humans_weighted_count * 0.5) - xenos_count, 5) - hivecore_cooldown = FALSE - xeno_message(SPAN_XENOBOLDNOTICE("The weeds have recovered! A new hive core can be built!"),3,hivenumber) - -/datum/hive_status/proc/free_respawn(client/C) - stored_larva++ - if(!hive_location || !hive_location.spawn_burrowed_larva(C.mob)) - stored_larva-- - else - hive_ui.update_burrowed_larva() - -/datum/hive_status/proc/respawn_on_turf(client/xeno_client, turf/spawning_turf) - var/mob/living/carbon/xenomorph/larva/new_xeno = spawn_hivenumber_larva(spawning_turf, hivenumber) - if(isnull(new_xeno)) - return FALSE - - if(!SSticker.mode.transfer_xeno(xeno_client.mob, new_xeno)) - qdel(new_xeno) - return FALSE - - new_xeno.visible_message(SPAN_XENODANGER("A larva suddenly emerges from a dead husk!"), - SPAN_XENOANNOUNCE("The hive has no core! You manage to emerge from your old husk as a larva!")) - msg_admin_niche("[key_name(new_xeno)] respawned at \a [spawning_turf]. [ADMIN_JMP(spawning_turf)]") - playsound(new_xeno, 'sound/effects/xeno_newlarva.ogg', 50, 1) - if(new_xeno.client?.prefs?.toggles_flashing & FLASH_POOLSPAWN) - window_flash(new_xeno.client) - - hive_ui.update_burrowed_larva() - -/datum/hive_status/proc/do_buried_larva_spawn(mob/xeno_candidate) - var/spawning_area - if(hive_location) - spawning_area = hive_location - else if(living_xeno_queen) - spawning_area = living_xeno_queen - else for(var/mob/living/carbon/xenomorpheus as anything in totalXenos) - if(islarva(xenomorpheus) || isxeno_builder(xenomorpheus)) //next to xenos that should be in a safe spot - spawning_area = xenomorpheus - if(!spawning_area) - spawning_area = pick(totalXenos) // FUCK IT JUST GO ANYWHERE - var/list/turf_list - for(var/turf/open/open_turf in orange(3, spawning_area)) - LAZYADD(turf_list, open_turf) - var/turf/open/spawning_turf = pick(turf_list) - - var/mob/living/carbon/xenomorph/larva/new_xeno = spawn_hivenumber_larva(spawning_turf, hivenumber) - if(isnull(new_xeno)) - return FALSE - - if(!SSticker.mode.transfer_xeno(xeno_candidate, new_xeno)) - qdel(new_xeno) - return FALSE - new_xeno.visible_message(SPAN_XENODANGER("A larva suddenly burrows out of \the [spawning_turf]!"), - SPAN_XENODANGER("You burrow out of \the [spawning_turf] and awaken from your slumber. For the Hive!")) - msg_admin_niche("[key_name(new_xeno)] burrowed out from \a [spawning_turf]. [ADMIN_JMP(spawning_turf)]") - playsound(new_xeno, 'sound/effects/xeno_newlarva.ogg', 50, 1) - to_chat(new_xeno, SPAN_XENOANNOUNCE("You are a xenomorph larva awakened from slumber!")) - if(new_xeno.client) - if(new_xeno.client?.prefs?.toggles_flashing & FLASH_POOLSPAWN) - window_flash(new_xeno.client) - - stored_larva-- - hive_ui.update_burrowed_larva() - -/mob/living/proc/ally_of_hivenumber(hivenumber) - var/datum/hive_status/indexed_hive = GLOB.hive_datum[hivenumber] - if(!indexed_hive) - return FALSE - - return indexed_hive.is_ally(src) - -/datum/hive_status/proc/is_ally(mob/living/living_mob) - if(isxeno(living_mob)) - var/mob/living/carbon/xenomorph/zenomorf = living_mob - if(zenomorf.hivenumber == hivenumber) - return !zenomorf.banished - - if(!living_mob.faction) - return FALSE - - return faction_is_ally(living_mob.faction) - -/datum/hive_status/proc/faction_is_ally(faction, ignore_queen_check = TRUE) - if(faction == internal_faction) - return TRUE - if(!ignore_queen_check && !living_xeno_queen) - return FALSE - - return allies[faction] - -/datum/hive_status/proc/can_delay_round_end(mob/living/carbon/xenomorph/xeno) - if(HAS_TRAIT(src, TRAIT_NO_HIVE_DELAY)) - return FALSE - return TRUE - -/datum/hive_status/proc/update_hugger_limit() - var/countable_xeno_iterator = 0 - for(var/mob/living/carbon/xenomorph/cycled_xeno as anything in totalXenos) - if(cycled_xeno.counts_for_slots) - countable_xeno_iterator++ - - playable_hugger_limit = max(Floor(countable_xeno_iterator / playable_hugger_max_divisor), playable_hugger_minimum) - -/datum/hive_status/proc/can_spawn_as_hugger(mob/dead/observer/user) - if(!GLOB.hive_datum || ! GLOB.hive_datum[hivenumber]) - return FALSE - - if(MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO)) - to_chat(user, SPAN_WARNING("Joining as xenos is currently disabled in this mode.")) - return FALSE - - if(jobban_isbanned(user, JOB_XENOMORPH)) // User is jobbanned - to_chat(user, SPAN_WARNING("You are banned from playing aliens and cannot spawn as a xenomorph.")) - return FALSE - - if(world.time < hugger_timelock) - to_chat(user, SPAN_WARNING("The hive cannot support facehuggers yet...")) - return FALSE - - if(world.time - user.timeofdeath < JOIN_AS_FACEHUGGER_DELAY) - var/time_left = round((user.timeofdeath + JOIN_AS_FACEHUGGER_DELAY - world.time) / 10) - to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a facehugger until 3 minutes have passed ([time_left] seconds remaining).")) - return FALSE - - if(totalXenos.len <= 0) - //This is to prevent people from joining as Forsaken Huggers on the pred ship - to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!")) - return FALSE - - for(var/mob_name in banished_ckeys) - if(banished_ckeys[mob_name] == user.ckey) - to_chat(user, SPAN_WARNING("You are banished from the [name], you may not rejoin unless the Queen re-admits you or dies.")) - return FALSE - - update_hugger_limit() - - var/current_hugger_count = 0 - for(var/mob/mob as anything in totalXenos) - if(isfacehugger(mob)) - current_hugger_count++ - - if(playable_hugger_limit <= current_hugger_count) - to_chat(user, SPAN_WARNING("\The [GLOB.hive_datum[hivenumber]] cannot support more facehuggers! Limit: [current_hugger_count]/[playable_hugger_limit]")) - return FALSE - - if(tgui_alert(user, "Are you sure you want to become a facehugger?", "Confirmation", list("Yes", "No")) != "Yes") - return FALSE - - if(!user.client) - return FALSE - - return TRUE - -/datum/hive_status/proc/spawn_as_hugger(mob/dead/observer/user, atom/A) - var/mob/living/carbon/xenomorph/facehugger/hugger = new /mob/living/carbon/xenomorph/facehugger(A.loc, null, hivenumber) - user.mind.transfer_to(hugger, TRUE) - hugger.visible_message(SPAN_XENODANGER("A facehugger suddenly emerges out of \the [A]!"), SPAN_XENODANGER("You emerge out of \the [A] and awaken from your slumber. For the Hive!")) - playsound(hugger, 'sound/effects/xeno_newlarva.ogg', 25, TRUE) - hugger.generate_name() - hugger.timeofdeath = user.timeofdeath // Keep old death time - -/datum/hive_status/proc/update_lesser_drone_limit() - var/countable_xeno_iterator = 0 - for(var/mob/living/carbon/xenomorph/cycled_xeno as anything in totalXenos) - if(cycled_xeno.counts_for_slots) - countable_xeno_iterator++ - - lesser_drone_limit = max(Floor(countable_xeno_iterator / playable_lesser_drones_max_divisor), lesser_drone_minimum) - -/datum/hive_status/proc/can_spawn_as_lesser_drone(mob/dead/observer/user, obj/effect/alien/resin/special/pylon/spawning_pylon) - if(!GLOB.hive_datum || ! GLOB.hive_datum[hivenumber]) - return FALSE - - if(MODE_HAS_TOGGLEABLE_FLAG(MODE_NO_JOIN_AS_XENO)) - to_chat(user, SPAN_WARNING("Joining as xenos is currently disabled in this mode.")) - return FALSE - - if(jobban_isbanned(user, JOB_XENOMORPH)) // User is jobbanned - to_chat(user, SPAN_WARNING("You are banned from playing aliens and cannot spawn as a xenomorph.")) - return FALSE - - if(world.time - user.timeofdeath < JOIN_AS_LESSER_DRONE_DELAY) - var/time_left = round((user.timeofdeath + JOIN_AS_LESSER_DRONE_DELAY - world.time) / 10) - to_chat(user, SPAN_WARNING("You ghosted too recently. You cannot become a lesser drone until 30 seconds have passed ([time_left] seconds remaining).")) - return FALSE - - if(totalXenos.len <= 0) - to_chat(user, SPAN_WARNING("The hive has fallen, you can't join it!")) - return FALSE - - if(!living_xeno_queen) - to_chat(user, SPAN_WARNING("The selected hive does not have a Queen!")) - return FALSE - - if(spawning_pylon.lesser_drone_spawns < 1) - to_chat(user, SPAN_WARNING("The selected core or pylon does not have enough power for a lesser drone!")) - return FALSE - - update_lesser_drone_limit() - - var/current_lesser_drone_count = 0 - for(var/mob/mob as anything in totalXenos) - if(islesserdrone(mob)) - current_lesser_drone_count++ - - if(lesser_drone_limit <= current_lesser_drone_count) - to_chat(user, SPAN_WARNING("[GLOB.hive_datum[hivenumber]] cannot support more lesser drones! Limit: [current_lesser_drone_count]/[lesser_drone_limit]")) - return FALSE - - if(!user.client) - return FALSE - - return TRUE - -///Called by /obj/item/alien_embryo when a host is bursting to determine extra larva per burst -/datum/hive_status/proc/increase_larva_after_burst() - var/extra_per_burst = CONFIG_GET(number/extra_larva_per_burst) - partial_larva += extra_per_burst - convert_partial_larva_to_full_larva() - -///Called after times when partial larva are added to process them to stored larva -/datum/hive_status/proc/convert_partial_larva_to_full_larva() - for(var/i = 1 to partial_larva) - partial_larva-- - stored_larva++ - -/datum/hive_status/corrupted - name = "Corrupted Hive" - reporting_id = "corrupted" - hivenumber = XENO_HIVE_CORRUPTED - prefix = "Corrupted " - color = "#80ff80" - ui_color ="#4d994d" - latejoin_burrowed = FALSE - - need_round_end_check = TRUE - - var/list/defectors = list() - -/datum/hive_status/corrupted/add_xeno(mob/living/carbon/xenomorph/xeno) - . = ..() - xeno.add_language(LANGUAGE_ENGLISH) - -/datum/hive_status/corrupted/remove_xeno(mob/living/carbon/xenomorph/xeno, hard) - . = ..() - xeno.remove_language(LANGUAGE_ENGLISH) - -/datum/hive_status/corrupted/can_delay_round_end(mob/living/carbon/xenomorph/xeno) - if(!faction_is_ally(FACTION_MARINE, TRUE)) - return TRUE - return FALSE - -/datum/hive_status/alpha - name = "Alpha Hive" - reporting_id = "alpha" - hivenumber = XENO_HIVE_ALPHA - prefix = "Alpha " - color = "#ff4040" - ui_color = "#992626" - latejoin_burrowed = FALSE - - dynamic_evolution = FALSE - -/datum/hive_status/bravo - name = "Bravo Hive" - reporting_id = "bravo" - hivenumber = XENO_HIVE_BRAVO - prefix = "Bravo " - color = "#ffff80" - ui_color = "#99994d" - latejoin_burrowed = FALSE - - dynamic_evolution = FALSE - -/datum/hive_status/charlie - name = "Charlie Hive" - reporting_id = "charlie" - hivenumber = XENO_HIVE_CHARLIE - prefix = "Charlie " - color = "#bb40ff" - ui_color = "#702699" - latejoin_burrowed = FALSE - - dynamic_evolution = FALSE - -/datum/hive_status/delta - name = "Delta Hive" - reporting_id = "delta" - hivenumber = XENO_HIVE_DELTA - prefix = "Delta " - color = "#8080ff" - ui_color = "#4d4d99" - latejoin_burrowed = FALSE - - dynamic_evolution = FALSE - -/datum/hive_status/feral - name = "Feral Hive" - reporting_id = "feral" - hivenumber = XENO_HIVE_FERAL - prefix = "Feral " - color = "#828296" - ui_color = "#828296" - - construction_allowed = XENO_NOBODY - destruction_allowed = XENO_NOBODY - dynamic_evolution = FALSE - allow_no_queen_actions = TRUE - allow_no_queen_evo = TRUE - allow_queen_evolve = FALSE - ignore_slots = TRUE - latejoin_burrowed = FALSE - -/datum/hive_status/forsaken - name = "Forsaken Hive" - reporting_id = "forsaken" - hivenumber = XENO_HIVE_FORSAKEN - prefix = "Forsaken " - color = "#cc8ec4" - ui_color = "#cc8ec4" - - dynamic_evolution = FALSE - allow_no_queen_actions = TRUE - allow_no_queen_evo = TRUE - allow_queen_evolve = FALSE - ignore_slots = TRUE - latejoin_burrowed = FALSE - - need_round_end_check = TRUE - -/datum/hive_status/forsaken/can_delay_round_end(mob/living/carbon/xenomorph/xeno) - return FALSE - -/datum/hive_status/yautja - name = "Hellhound Pack" - reporting_id = "hellhounds" - hivenumber = XENO_HIVE_YAUTJA - internal_faction = FACTION_YAUTJA - - dynamic_evolution = FALSE - allow_no_queen_actions = TRUE - allow_no_queen_evo = TRUE - allow_queen_evolve = FALSE - ignore_slots = TRUE - latejoin_burrowed = FALSE - - need_round_end_check = TRUE - -/datum/hive_status/yautja/can_delay_round_end(mob/living/carbon/xenomorph/xeno) - return FALSE - -/datum/hive_status/mutated - name = "Mutated Hive" - reporting_id = "mutated" - hivenumber = XENO_HIVE_MUTATED - prefix = "Mutated " - color = "#6abd99" - ui_color = "#6abd99" - - hive_inherant_traits = list(TRAIT_XENONID, TRAIT_NO_COLOR) - latejoin_burrowed = FALSE - -/datum/hive_status/corrupted/tamed - name = "Tamed Hive" - reporting_id = "tamed" - hivenumber = XENO_HIVE_TAMED - prefix = "Tamed " - color = "#80ff80" - - dynamic_evolution = FALSE - allow_no_queen_actions = TRUE - allow_no_queen_evo = TRUE - allow_queen_evolve = FALSE - ignore_slots = TRUE - latejoin_burrowed = FALSE - - var/mob/living/carbon/human/leader - var/list/allied_factions - -/datum/hive_status/corrupted/tamed/New() - . = ..() - hive_structures_limit[XENO_STRUCTURE_EGGMORPH] = 0 - hive_structures_limit[XENO_STRUCTURE_EVOPOD] = 0 - -/datum/hive_status/corrupted/tamed/proc/make_leader(mob/living/carbon/human/H) - if(!istype(H)) - return - - if(leader) - UnregisterSignal(leader, COMSIG_PARENT_QDELETING) - - leader = H - RegisterSignal(leader, COMSIG_PARENT_QDELETING, PROC_REF(handle_qdelete)) - -/datum/hive_status/corrupted/tamed/proc/handle_qdelete(mob/living/carbon/human/H) - SIGNAL_HANDLER - - if(H == leader) - leader = null - - var/list/faction_groups = H.faction_group - if(faction_groups) - allied_factions = faction_groups.Copy() - if(!(H.faction in allied_factions)) - allied_factions += H.faction - -/datum/hive_status/corrupted/tamed/add_xeno(mob/living/carbon/xenomorph/X) - . = ..() - X.faction_group = allied_factions - -/datum/hive_status/corrupted/tamed/remove_xeno(mob/living/carbon/xenomorph/X, hard) - . = ..() - X.faction_group = list(X.faction) - -/datum/hive_status/corrupted/tamed/is_ally(mob/living/carbon/C) - if(leader) - if(C.faction in leader.faction_group) - return TRUE - - if(C.faction == leader.faction) - return TRUE - else - if(C.faction in allied_factions) - return TRUE - - return ..() - -/datum/hive_status/corrupted/renegade - name = "Renegade Hive" - reporting_id = "renegade" - hivenumber = XENO_HIVE_RENEGADE - prefix = "Renegade " - color = "#9c7a4d" - ui_color ="#80705c" - - dynamic_evolution = FALSE - allow_queen_evolve = FALSE - allow_no_queen_evo = TRUE - latejoin_burrowed = FALSE - -/datum/hive_status/corrupted/renegade/New() - . = ..() - hive_structures_limit[XENO_STRUCTURE_EGGMORPH] = 0 - hive_structures_limit[XENO_STRUCTURE_EVOPOD] = 0 - for(var/faction in FACTION_LIST_HUMANOID) //renegades allied to all humanoids, but it mostly affects structures. Their ability to attack humanoids and other xenos (including of the same hive) depends on iff settings - allies[faction] = TRUE - -/datum/hive_status/corrupted/renegade/can_spawn_as_hugger(mob/dead/observer/user) - to_chat(user, SPAN_WARNING("The [name] cannot support facehuggers.")) - return FALSE - -/datum/hive_status/corrupted/renegade/proc/iff_protection_check(mob/living/carbon/xenomorph/xeno, mob/living/carbon/attempt_harm_mob) - if(xeno == attempt_harm_mob) - return TRUE //you cannot hurt yourself... - if(!xeno.iff_tag) - return FALSE //can attack anyone if you don't have iff tag - if(isxeno(attempt_harm_mob)) - var/mob/living/carbon/xenomorph/target_xeno = attempt_harm_mob - if(!target_xeno.iff_tag) - return FALSE //can attack any xeno who don't have iff tag - for(var/faction in xeno.iff_tag.faction_groups) - if(faction in target_xeno.iff_tag.faction_groups) - return TRUE //cannot attack xenos with same iff setting - return FALSE - for(var/faction in xeno.iff_tag.faction_groups) - if(faction in attempt_harm_mob.faction_group) - return TRUE //cannot attack mob if iff is set to at least one of its factions - return FALSE - -/datum/hive_status/corrupted/renegade/faction_is_ally(faction, ignore_queen_check = TRUE) - return ..() - -/datum/hive_status/proc/change_stance(faction, should_ally) - if(faction == name) - return - if(allies[faction] == should_ally) - return - allies[faction] = should_ally - - if(living_xeno_queen) - if(allies[faction]) - xeno_message(SPAN_XENOANNOUNCE("Your Queen set up an alliance with [faction]!"), 3, hivenumber) - else - xeno_message(SPAN_XENOANNOUNCE("Your Queen broke the alliance with [faction]!"), 3, hivenumber) - - for(var/number in GLOB.hive_datum) - var/datum/hive_status/target_hive = GLOB.hive_datum[number] - if(target_hive.name != faction) - continue - if(!target_hive.living_xeno_queen && !target_hive.allow_no_queen_actions) - return - if(allies[faction]) - xeno_message(SPAN_XENOANNOUNCE("You sense that [name] [living_xeno_queen ? "Queen " : ""]set up an alliance with us!"), 3, target_hive.hivenumber) - return - - xeno_message(SPAN_XENOANNOUNCE("You sense that [name] [living_xeno_queen ? "Queen " : ""]broke the alliance with us!"), 3, target_hive.hivenumber) - if(target_hive.allies[name]) //autobreak alliance on betrayal - target_hive.change_stance(name, FALSE) - - -/datum/hive_status/corrupted/change_stance(faction, should_ally) - . = ..() - if(allies[faction]) - return - if(!(faction in FACTION_LIST_HUMANOID)) - return - - for(var/mob/living/carbon/xenomorph/xeno in totalXenos) // handle defecting xenos on betrayal - if(!xeno.iff_tag) - continue - if(!(faction in xeno.iff_tag.faction_groups)) - continue - if(xeno in defectors) - continue - if(xeno.caste_type == XENO_CASTE_QUEEN) - continue - INVOKE_ASYNC(src, PROC_REF(give_defection_choice), xeno, faction) - addtimer(CALLBACK(src, PROC_REF(handle_defectors), faction), 11 SECONDS) - -/datum/hive_status/corrupted/proc/give_defection_choice(mob/living/carbon/xenomorph/xeno, faction) - if(tgui_alert(xeno, "Your Queen has broken the alliance with the [faction]. The device inside your carapace begins to suppress your connection with the Hive. Do you remove it and stay loyal to her?", "Alliance broken!", list("Stay loyal", "Obey the talls"), 10 SECONDS) == "Obey the talls") - if(!xeno.iff_tag) - to_chat(xeno, SPAN_XENOWARNING("It's too late now. The device is gone and your service to the Queen continues.")) - return - defectors += xeno - xeno.set_hive_and_update(XENO_HIVE_RENEGADE) - to_chat(xeno, SPAN_XENOANNOUNCE("You lost the connection with your Hive. Now you have no Queen, only your masters.")) - to_chat(xeno, SPAN_NOTICE("Your instincts have changed, you seem compelled to protect [english_list(xeno.iff_tag.faction_groups, "no one")].")) - return - xeno.visible_message(SPAN_XENOWARNING("[xeno] rips out [xeno.iff_tag]!"), SPAN_XENOWARNING("You rip out [xeno.iff_tag]! For the Hive!")) - xeno.adjustBruteLoss(50) - xeno.iff_tag.forceMove(get_turf(xeno)) - xeno.iff_tag = null - -/datum/hive_status/corrupted/proc/handle_defectors(faction) - for(var/mob/living/carbon/xenomorph/xeno in totalXenos) - if(!xeno.iff_tag) - continue - if(xeno in defectors) - continue - if(!(faction in xeno.iff_tag.faction_groups)) - continue - xeno.visible_message(SPAN_XENOWARNING("[xeno] rips out [xeno.iff_tag]!"), SPAN_XENOWARNING("You rip out [xeno.iff_tag]! For the hive!")) - xeno.adjustBruteLoss(50) - xeno.iff_tag.forceMove(get_turf(xeno)) - xeno.iff_tag = null - if(!length(defectors)) - return - - xeno_message(SPAN_XENOANNOUNCE("You sense that [english_list(defectors)] turned their backs against their sisters and the Queen in favor of their slavemasters!"), 3, hivenumber) - defectors.Cut() - -//Xeno Resin Mark Shit, the very best place for it too :0) -//Defines at the bottom of this list here will show up at the top in the mark menu -/datum/xeno_mark_define - var/name = "xeno_declare" - var/icon_state = "empty" - var/desc = "Xenos make psychic markers with this meaning as positional lasting communication to eachother" - -/datum/xeno_mark_define/fortify - name = "Fortify" - desc = "Fortify this area!" - icon_state = "fortify" - -/datum/xeno_mark_define/weeds - name = "Need Weeds" - desc = "Need weeds here!" - icon_state = "weed" - -/datum/xeno_mark_define/nest - name = "Nest" - desc = "Nest enemies here!" - icon_state = "nest" - -/datum/xeno_mark_define/hosts - name = "Hosts" - desc = "Hosts here!" - icon_state = "hosts" - -/datum/xeno_mark_define/aide - name = "Aide" - desc = "Aide here!" - icon_state = "aide" - -/datum/xeno_mark_define/defend - name = "Defend" - desc = "Defend the hive here!" - icon_state = "defend" - -/datum/xeno_mark_define/danger - name = "Danger Warning" - desc = "Caution, danger here!" - icon_state = "danger" - -/datum/xeno_mark_define/rally - name = "Rally" - desc = "Group up here!" - icon_state = "rally" - -/datum/xeno_mark_define/hold - name = "Hold" - desc = "Hold this area!" - icon_state = "hold" - -/datum/xeno_mark_define/ambush - name = "Ambush" - desc = "Ambush the enemy here!" - icon_state = "ambush" -/datum/xeno_mark_define/attack - name = "Attack" - desc = "Attack the enemy here!" - icon_state = "attack" - - - diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm b/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm index 7324a3af68..2414d077b1 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_helpers.dm @@ -2,7 +2,7 @@ return (mob_size < MOB_SIZE_BIG && caste.can_vent_crawl) /mob/living/carbon/xenomorph/ventcrawl_carry() - if(stomach_contents.len) + if(length(stomach_contents)) for(var/mob/living/carbon/human/H in stomach_contents) if(!isspeciesmonkey(H)) to_chat(src, SPAN_XENOWARNING("You cannot ventcrawl with [H] inside you!")) @@ -27,12 +27,29 @@ /mob/living/carbon/xenomorph/proc/get_plasma_percentage() if(plasma_max<=0) return 100 - return round(plasma_stored * 100 / plasma_max) + return floor(plasma_stored * 100 / plasma_max) /mob/living/carbon/xenomorph/proc/get_armor_integrity_percentage() if(armor_deflection<=0) return 100 - return round(armor_integrity * 100 / armor_integrity_max) + return floor(armor_integrity * 100 / armor_integrity_max) + +/** + * Returns the name of the xeno's strain, if it has one. + * + * If that can't be found, returns "Normal". + */ +/mob/living/carbon/xenomorph/proc/get_strain_name() + return strain?.name || "Normal" + +/** + * Returns the custom icon state from the xeno's strain, if it has one. + * + * If that can't be found, returns "Normal" + */ +/mob/living/carbon/xenomorph/proc/get_strain_icon() + return strain?.icon_state_prefix || "Normal" + // TODO: Go through xeno/xenoid sprites and remove "Normal", so that this isn't needed. //These don't do much currently. Or anything? Only around for legacy code. /mob/living/carbon/xenomorph/is_mob_restrained() @@ -58,4 +75,4 @@ return caste.fire_intensity_resistance /mob/living/carbon/xenomorph/alter_ghost(mob/dead/observer/ghost) - ghost.icon_state = "[mutation_type] [caste.caste_type] Running" + ghost.icon_state = "[get_strain_icon()] [caste.caste_type] Running" diff --git a/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm b/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm index 94218b224e..8a1981fe51 100644 --- a/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm +++ b/code/modules/mob/living/carbon/xenomorph/xeno_verbs.dm @@ -1,18 +1,18 @@ //// Holds Xeno verbs that don't belong anywhere else. /mob/living/carbon/xenomorph/verb/hive_status() set name = "Hive Status" - set desc = "Check the status of your current hive." + set desc = "Check the status of our current hive." set category = "Alien" if(!hive) return if((!hive.living_xeno_queen || SSmapping.configs[GROUND_MAP].map_name == MAP_WHISKEY_OUTPOST) && !hive.allow_no_queen_actions) //No Hive status on WO - to_chat(src, SPAN_WARNING("There is no Queen. You are alone.")) + to_chat(src, SPAN_WARNING("There is no Queen. We are alone.")) return - if(interference) - to_chat(src, SPAN_WARNING("A headhunter temporarily cut off your psychic connection!")) + if(HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_WARNING("Our psychic connection has been temporarily disabled!")) return hive.hive_ui.open_hive_status(src) @@ -36,8 +36,8 @@ to_chat(src, SPAN_WARNING("There is no Queen. You are alone.")) return - if(interference) - to_chat(src, SPAN_WARNING("A headhunter temporarily cut off your psychic connection!")) + if(HAS_TRAIT(src, TRAIT_HIVEMIND_INTERFERENCE)) + to_chat(src, SPAN_WARNING("Our psychic connection has been temporarily disabled!")) return hive.faction_ui.tgui_interact(src) @@ -81,7 +81,7 @@ set desc = "Toggles the health and plasma HUD appearing above Xenomorphs." set category = "Alien" - var/datum/mob_hud/H = huds[MOB_HUD_XENO_STATUS] + var/datum/mob_hud/H = GLOB.huds[MOB_HUD_XENO_STATUS] if (xeno_mobhud) H.remove_hud_from(usr, usr) else @@ -94,7 +94,7 @@ set desc = "Toggles the HUD that renders various negative status effects inflicted on humans." set category = "Alien" - var/datum/mob_hud/H = huds[MOB_HUD_XENO_HOSTILE] + var/datum/mob_hud/H = GLOB.huds[MOB_HUD_XENO_HOSTILE] if (xeno_hostile_hud) H.remove_hud_from(usr, usr) else diff --git a/code/modules/mob/living/damage_procs.dm b/code/modules/mob/living/damage_procs.dm index 7c4eff0e2c..6c10df5987 100644 --- a/code/modules/mob/living/damage_procs.dm +++ b/code/modules/mob/living/damage_procs.dm @@ -97,6 +97,8 @@ EyeBlur(effect) if(DROWSY) drowsyness = max(drowsyness, effect) + if(ROOT) + Root(effect) updatehealth() return TRUE @@ -130,6 +132,8 @@ AdjustEyeBlur(effect) if(DROWSY) drowsyness = POSITIVE(drowsyness + effect) + if(ROOT) + AdjustRoot(effect) updatehealth() return TRUE @@ -160,15 +164,26 @@ SetEyeBlur(effect) if(DROWSY) drowsyness = POSITIVE(effect) + if(ROOT) + SetRoot(effect) updatehealth() return TRUE -/mob/living/proc/apply_effects(stun = 0, weaken = 0, paralyze = 0, irradiate = 0, stutter = 0, eyeblur = 0, drowsy = 0, agony = 0) - if(stun) apply_effect(stun, STUN) - if(weaken) apply_effect(weaken, WEAKEN) - if(paralyze) apply_effect(paralyze, PARALYZE) - if(stutter) apply_effect(stutter, STUTTER) - if(eyeblur) apply_effect(eyeblur, EYE_BLUR) - if(drowsy) apply_effect(drowsy, DROWSY) - if(agony) apply_effect(agony, AGONY) +/mob/living/proc/apply_effects(stun = 0, weaken = 0, paralyze = 0, irradiate = 0, stutter = 0, eyeblur = 0, drowsy = 0, agony = 0, root = 0) + if(stun) + apply_effect(stun, STUN) + if(weaken) + apply_effect(weaken, WEAKEN) + if(paralyze) + apply_effect(paralyze, PARALYZE) + if(stutter) + apply_effect(stutter, STUTTER) + if(eyeblur) + apply_effect(eyeblur, EYE_BLUR) + if(drowsy) + apply_effect(drowsy, DROWSY) + if(agony) + apply_effect(agony, AGONY) + if(root) + apply_effect(root, ROOT) return 1 diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 72fd380e58..27697a8938 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -66,7 +66,7 @@ /mob/living/proc/burn_skin(burn_amount) if(ishuman(src)) var/mob/living/carbon/human/H = src //make this damage method divide the damage to be done among all the body parts, then burn each body part for that much damage. will have better effect then just randomly picking a body part - var/divided_damage = (burn_amount)/(H.limbs.len) + var/divided_damage = (burn_amount)/(length(H.limbs)) var/extradam = 0 //added to when organ is at max dam for(var/obj/limb/affecting in H.limbs) if(!affecting) continue @@ -75,9 +75,6 @@ H.updatehealth() return 1 - else if(isAI(src)) - return 0 - /mob/living/proc/adjustBodyTemp(actual, desired, incrementboost) var/temperature = actual var/difference = abs(actual-desired) //get difference @@ -227,19 +224,34 @@ /mob/living/resist_grab(moving_resist) if(!pulledby) return - if(pulledby.grab_level) - if(prob(50)) - playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) - visible_message(SPAN_DANGER("[src] has broken free of [pulledby]'s grip!"), null, null, 5) - pulledby.stop_pulling() - return 1 - if(moving_resist && client) //we resisted by trying to move - visible_message(SPAN_DANGER("[src] struggles to break free of [pulledby]'s grip!"), null, null, 5) - client.next_movement = world.time + (10*pulledby.grab_level) + client.move_delay - else + // vars for checks of strengh + var/pulledby_is_strong = HAS_TRAIT(pulledby, TRAIT_SUPER_STRONG) + var/src_is_strong = HAS_TRAIT(src, TRAIT_SUPER_STRONG) + + if(!pulledby.grab_level && (!pulledby_is_strong || src_is_strong)) // if passive grab, check if puller is stronger than src, and if not, break free pulledby.stop_pulling() - return 1 + return TRUE + // Chance for person to break free of grip, defaults to 50. + var/chance = 50 + if(src_is_strong && !isxeno(pulledby)) // no extra chance to resist warrior grabs + chance += 30 // you are strong, you can overpower them easier + if(pulledby_is_strong) + chance -= 30 // stronger grip + // above code means that if you are super strong, 80% chance to resist, otherwise, 20 percent. if both are super strong, standard 50. + + if(prob(chance)) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + visible_message(SPAN_DANGER("[src] has broken free of [pulledby]'s grip!"), max_distance = 5) + pulledby.stop_pulling() + return TRUE + if(moving_resist && client) //we resisted by trying to move + visible_message(SPAN_DANGER("[src] struggles to break free of [pulledby]'s grip!"), max_distance = 5) + // +1 delay if super strong, also done as passive grabs would have a modifier of 0 otherwise, causing spam + if(pulledby_is_strong && !src_is_strong) + client.next_movement = world.time + (10*(pulledby.grab_level + 1)) + client.move_delay + else + client.next_movement = world.time + (10*pulledby.grab_level) + client.move_delay /mob/living/movement_delay() . = ..() @@ -401,7 +413,10 @@ /mob/living/launch_towards(datum/launch_metadata/LM) if(src) SEND_SIGNAL(src, COMSIG_MOB_MOVE_OR_LOOK, TRUE, dir, dir) - if(!istype(LM) || !LM.target || !src || buckled) + if(!istype(LM) || !LM.target || !src) + return + if(buckled) + LM.invoke_end_throw_callbacks(src) return if(pulling) stop_pulling() //being thrown breaks pulls. @@ -445,16 +460,19 @@ /mob/proc/flash_eyes() return -/mob/living/flash_eyes(intensity = EYE_PROTECTION_FLASH, bypass_checks, type = /atom/movable/screen/fullscreen/flash, flash_timer = 40) - if( bypass_checks || (get_eye_protection() < intensity && !(sdisabilities & DISABILITY_BLIND))) - overlay_fullscreen("flash", type) +/mob/living/flash_eyes(intensity = EYE_PROTECTION_FLASH, bypass_checks, flash_timer = 40, type = /atom/movable/screen/fullscreen/flash, dark_type = /atom/movable/screen/fullscreen/flash/dark) + if(bypass_checks || (get_eye_protection() < intensity && !(sdisabilities & DISABILITY_BLIND))) + if(client?.prefs?.flash_overlay_pref == FLASH_OVERLAY_DARK) + overlay_fullscreen("flash", dark_type) + else + overlay_fullscreen("flash", type) spawn(flash_timer) clear_fullscreen("flash", 20) return TRUE /mob/living/create_clone_movable(shift_x, shift_y) ..() - src.clone.hud_list = new /list(src.hud_list.len) + src.clone.hud_list = new /list(length(src.hud_list)) for(var/h in src.hud_possible) //Clone HUD src.clone.hud_list[h] = new /image("loc" = src.clone, "icon" = src.hud_list[h].icon) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 375594574a..b19afb0450 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -73,13 +73,13 @@ M.track_friendly_fire(initial(O.name)) var/client/assailant = M.client if(assailant) - src.attack_log += text("\[[time_stamp()]\] Has been hit with a [O], thrown by [key_name(M)]") + src.attack_log += text("\[[time_stamp()]\] Has been hit with \a [O], thrown by [key_name(M)]") M.attack_log += text("\[[time_stamp()]\] Hit [key_name(src)] with a thrown [O]") if(!istype(src,/mob/living/simple_animal/mouse)) if(src.loc) - msg_admin_attack("[key_name(src)] was hit by a [O], thrown by [key_name(M)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) + msg_admin_attack("[key_name(src)] was hit by \a [O], thrown by [key_name(M)] in [get_area(src)] ([src.loc.x],[src.loc.y],[src.loc.z]).", src.loc.x, src.loc.y, src.loc.z) else - msg_admin_attack("[key_name(src)] was hit by a [O], thrown by [key_name(M)] in [get_area(M)] ([M.loc.x],[M.loc.y],[M.loc.z]).", M.loc.x, M.loc.y, M.loc.z) + msg_admin_attack("[key_name(src)] was hit by \a [O], thrown by [key_name(M)] in [get_area(M)] ([M.loc.x],[M.loc.y],[M.loc.z]).", M.loc.x, M.loc.y, M.loc.z) if(last_damage_source) last_damage_data = create_cause_data(last_damage_source, M) @@ -174,7 +174,7 @@ switch(fire_reagent.fire_type) if(FIRE_VARIANT_TYPE_B) max_stacks = 10 //Armor Shredding Greenfire caps at 1 resist/pat - fire_stacks = Clamp(fire_stacks + add_fire_stacks, min_stacks, max_stacks) + fire_stacks = clamp(fire_stacks + add_fire_stacks, min_stacks, max_stacks) if(on_fire && fire_stacks <= 0) ExtinguishMob() diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm index fb2bd2af0c..88bd8e09c3 100644 --- a/code/modules/mob/living/living_defines.dm +++ b/code/modules/mob/living/living_defines.dm @@ -133,3 +133,10 @@ /// Flags that determine the potential of a mob to perform certain actions. Do not change this directly. var/mobility_flags = MOBILITY_FLAGS_DEFAULT + /// icon for weed_food states + var/weed_food_icon = 'icons/mob/xenos/weeds.dmi' + /// icon_states for weed_food (needs to be the same length as weed_food_states_flipped) + var/list/weed_food_states = list("human_1","human_2","human_3","human_4","human_5") + /// flipped icon_states for weed_food (needs to be the same length as weed_food_states) + var/list/weed_food_states_flipped = list("human_1_f","human_2_f","human_3_f","human_4_f","human_5_f") + diff --git a/code/modules/mob/living/living_health_procs.dm b/code/modules/mob/living/living_health_procs.dm index 5bebff5484..9b374b7bcc 100644 --- a/code/modules/mob/living/living_health_procs.dm +++ b/code/modules/mob/living/living_health_procs.dm @@ -130,6 +130,57 @@ S = apply_status_effect(/datum/status_effect/incapacitating/stun, amount) return S +/* ROOT (Immobilisation) */ +/// Overridable handler to adjust the numerical value of status effects. Expand as needed +/mob/living/proc/GetRootDuration(amount) + return amount * GLOBAL_STATUS_MULTIPLIER + +/mob/living/proc/IsRoot() //If we're stunned + return has_status_effect(/datum/status_effect/incapacitating/immobilized) + +/mob/living/proc/AmountRoot() //How much time remain in our stun - scaled by GLOBAL_STATUS_MULTIPLIER (normally in multiples of legacy 2 seconds) + var/datum/status_effect/incapacitating/immobilized/root = IsRoot() + if(root) + return root.get_duration_left() / GLOBAL_STATUS_MULTIPLIER + return FALSE + +/mob/living/proc/Root(amount) + if(!(status_flags & CANROOT)) + return + amount = GetRootDuration(amount) + var/datum/status_effect/incapacitating/immobilized/root = IsRoot() + if(root) + root.update_duration(amount, increment = TRUE) + else if(amount > 0) + root = apply_status_effect(/datum/status_effect/incapacitating/immobilized, amount) + return root + +/mob/living/proc/SetRoot(amount) //Sets remaining duration + if(!(status_flags & CANROOT)) + return + amount = GetRootDuration(amount) + var/datum/status_effect/incapacitating/immobilized/root = IsRoot() + if(amount <= 0) + if(root) + qdel(root) + else + if(root) + root.update_duration(amount) + else + root = apply_status_effect(/datum/status_effect/incapacitating/immobilized, amount) + return root + +/mob/living/proc/AdjustRoot(amount) //Adds to remaining duration + if(!(status_flags & CANROOT)) + return + amount = GetRootDuration(amount) + var/datum/status_effect/incapacitating/immobilized/root = IsRoot() + if(root) + root.adjust_duration(amount) + else if(amount > 0) + root = apply_status_effect(/datum/status_effect/incapacitating/immobilized, amount) + return root + /* DAZE (Light incapacitation) */ /// Overridable handler to adjust the numerical value of status effects. Expand as needed /mob/living/proc/GetDazeDuration(amount) @@ -362,7 +413,7 @@ switch(client.prefs?.pain_overlay_pref_level) if(PAIN_OVERLAY_IMPAIR) - overlay_fullscreen("eye_blur", /atom/movable/screen/fullscreen/impaired, CEILING(clamp(eye_blurry * 0.3, 1, 6), 1)) + overlay_fullscreen("eye_blur", /atom/movable/screen/fullscreen/impaired, ceil(clamp(eye_blurry * 0.3, 1, 6))) if(PAIN_OVERLAY_LEGACY) overlay_fullscreen("eye_blur", /atom/movable/screen/fullscreen/blurry) else // PAIN_OVERLAY_BLURRY @@ -398,7 +449,7 @@ /mob/living/proc/AdjustEarDeafness(amount) var/prev_deaf = ear_deaf - ear_deaf = max(ear_deaf + amount, 0) + ear_deaf = clamp(ear_deaf + amount, 0, 30) //roughly 1 minute if(prev_deaf) if(ear_deaf == 0) on_deafness_loss() @@ -477,6 +528,7 @@ hallucination = 0 jitteriness = 0 dizziness = 0 + stamina.apply_damage(-stamina.max_stamina) // restore all of a human's blood if(ishuman(src)) @@ -502,7 +554,7 @@ tod = null timeofdeath = 0 - // restore us to conciousness + // restore us to consciousness set_stat(CONSCIOUS) regenerate_all_icons() diff --git a/code/modules/mob/living/living_healthscan.dm b/code/modules/mob/living/living_healthscan.dm index d21f31fe00..d11a32c838 100644 --- a/code/modules/mob/living/living_healthscan.dm +++ b/code/modules/mob/living/living_healthscan.dm @@ -76,8 +76,8 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) var/total_mob_damage = target_mob.getBruteLoss() + target_mob.getFireLoss() + target_mob.getToxLoss() + target_mob.getCloneLoss() - // Fake death will make the scanner think they died of oxygen damage, thus it returns enough damage to kill minus already recieved damage. - return round(POSITIVE(200 - total_mob_damage)) + // Fake death will make the scanner think they died of oxygen damage, thus it returns enough damage to kill minus already received damage. + return floor(POSITIVE(200 - total_mob_damage)) /datum/health_scan/proc/get_holo_card_color(mob/living/target_mob) if(!ishuman(target_mob)) @@ -96,11 +96,11 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) "patient" = target_mob.name, "dead" = get_death_value(target_mob), "health" = get_health_value(target_mob), - "total_brute" = round(target_mob.getBruteLoss()), - "total_burn" = round(target_mob.getFireLoss()), - "toxin" = round(target_mob.getToxLoss()), + "total_brute" = floor(target_mob.getBruteLoss()), + "total_burn" = floor(target_mob.getFireLoss()), + "toxin" = floor(target_mob.getToxLoss()), "oxy" = get_oxy_value(target_mob), - "clone" = round(target_mob.getCloneLoss()), + "clone" = floor(target_mob.getCloneLoss()), "blood_type" = target_mob.blood_type, "blood_amount" = target_mob.blood_volume, "holocard" = get_holo_card_color(target_mob), @@ -159,6 +159,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) //snowflake :3 data["lung_ruptured"] = human_target_mob.is_lung_ruptured() + data["heart_broken"] = human_target_mob.is_heart_broken() //shrapnel, limbs, limb damage, limb statflags, cyber limbs var/core_fracture_detected = FALSE @@ -184,19 +185,18 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) bleeding_check = TRUE break - if((!limb.brute_dam && !limb.burn_dam && !(limb.status & LIMB_DESTROYED)) && !bleeding_check && !internal_bleeding_check && !(implant && detail_level >= DETAIL_LEVEL_BODYSCAN ) && !(limb.status & LIMB_UNCALIBRATED_PROSTHETIC) && !(limb.status & LIMB_BROKEN) && !(limb.status & LIMB_SPLINTED) && !(limb.status & LIMB_SPLINTED_INDESTRUCTIBLE)) + if((!limb.brute_dam && !limb.burn_dam && !(limb.status & LIMB_DESTROYED)) && !bleeding_check && !internal_bleeding_check && !(implant && detail_level >= DETAIL_LEVEL_BODYSCAN ) && !(limb.status & LIMB_UNCALIBRATED_PROSTHETIC) && !(limb.status & LIMB_BROKEN) && !(limb.status & LIMB_SPLINTED) && !(limb.status & LIMB_SPLINTED_INDESTRUCTIBLE) && !(limb.get_incision_depth())) continue var/list/core_body_parts = list("head", "chest", "groin") var/list/current_list = list( "name" = limb.display_name, - "brute" = round(limb.brute_dam), - "burn" = round(limb.burn_dam), + "brute" = floor(limb.brute_dam), + "burn" = floor(limb.burn_dam), "bandaged" = limb.is_bandaged(), "salved" = limb.is_salved(), "missing" = (limb.status & LIMB_DESTROYED), "limb_status" = null, "bleeding" = bleeding_check, - "open_incision" = limb.get_incision_depth(), "implant" = implant, "internal_bleeding" = internal_bleeding_check ) @@ -254,6 +254,24 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) if(limb_type) current_list["limb_type"] = limb_type + //checking for open incisions, but since eyes and mouths incisions are "head incisions" but not "head surgeries" gotta do some snowflake + if(limb.name == "head") + if(human_target_mob.active_surgeries["head"]) + current_list["open_incision"] = TRUE + + var/zone + if(human_target_mob.active_surgeries["eyes"]) + zone = "eyes" + if(human_target_mob.active_surgeries["mouth"]) + if(zone) + zone = "eyes and mouth" + else + zone = "mouth" + current_list["open_zone_incision"] = capitalize(zone) + + else + current_list["open_incision"] = limb.get_incision_depth() + limb_data_lists["[limb.name]"] = current_list data["limb_data_lists"] = limb_data_lists @@ -422,7 +440,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) "icon" = "window-close", "color" = "red" )) - if(advice.len) + if(length(advice)) data["advice"] = advice else data["advice"] = null // interstingly even if we don't set data at all, re-using UI that had this data still has it @@ -440,7 +458,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) "cure" = disease.cure ) diseases += list(current_disease) - if(diseases.len) + if(length(diseases)) data["diseases"] = diseases else data["diseases"] = null // interstingly even if we don't set data at all, re-using UI that had this data still has it @@ -557,9 +575,9 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) else if(org.status & LIMB_SYNTHSKIN) org_name += " (Synthskin)" - var/burn_info = org.burn_dam > 0 ? " [round(org.burn_dam)]" : "0" + var/burn_info = org.burn_dam > 0 ? " [floor(org.burn_dam)]" : "0" burn_info += "[burn_treated ? "" : "{B}"]" - var/brute_info = org.brute_dam > 0 ? " [round(org.brute_dam)]" : "0" + var/brute_info = org.brute_dam > 0 ? " [floor(org.brute_dam)]" : "0" brute_info += "[brute_treated ? "" : "{T}"]" var/fracture_info = "" if(org.status & LIMB_BROKEN) @@ -616,7 +634,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) if(ishuman(src)) var/mob/living/carbon/human/H = src - if(H.embedded_items.len > 0) + if(length(H.embedded_items) > 0) embedded_item_detected = TRUE var/core_fracture = 0 @@ -648,7 +666,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) reagentdata["[R.id]"] = "[R.overdose != 0 && R.volume > R.overdose && !(R.flags & REAGENT_CANNOT_OVERDOSE) ? SPAN_WARNING("OD: ") : ""] [round(R.volume, 1)]u [R.name]" else unknown++ - if(reagentdata.len) + if(length(reagentdata)) dat += "\n\tBeneficial reagents:\n" for(var/d in reagentdata) dat += "\t\t [reagentdata[d]]\n" @@ -663,7 +681,7 @@ GLOBAL_LIST_INIT(known_implants, subtypesof(/obj/item/implant)) // Show blood level var/blood_volume = BLOOD_VOLUME_NORMAL if(!(H.species && H.species.flags & NO_BLOOD)) - blood_volume = round(H.blood_volume) + blood_volume = floor(H.blood_volume) var/blood_percent = blood_volume / 560 var/blood_type = H.blood_type diff --git a/code/modules/mob/living/living_helpers.dm b/code/modules/mob/living/living_helpers.dm index 7650995f10..8d5a469c1b 100644 --- a/code/modules/mob/living/living_helpers.dm +++ b/code/modules/mob/living/living_helpers.dm @@ -23,7 +23,7 @@ return if(!direction) - direction = pick(alldirs) + direction = pick(GLOB.alldirs) var/turf/target_turf = get_turf(src) var/turf/temporary_turf = get_turf(src) diff --git a/code/modules/mob/living/living_verbs.dm b/code/modules/mob/living/living_verbs.dm index 9dfb5ff721..777aa66fe2 100644 --- a/code/modules/mob/living/living_verbs.dm +++ b/code/modules/mob/living/living_verbs.dm @@ -66,7 +66,7 @@ if (BB.opened) return visible_message("[BB] begins to wiggle violently!") - if(do_after(src, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE, BB))//5 second unzip from inside + if(do_after(src, 5 SECONDS, INTERRUPT_UNCONSCIOUS, BUSY_ICON_HOSTILE, BB))//5 second unzip from inside BB.open() ///The medical machines below are listed separately to allow easier changes to each process @@ -121,14 +121,14 @@ //okay, so the closet is either welded or locked... resist!!! next_move = world.time + 100 last_special = world.time + 100 - to_chat(src, SPAN_DANGER("You lean on the back of \the [C] and start pushing the door open. (this will take about [breakout_time] minutes)")) + to_chat(src, SPAN_DANGER("You lean on the back of [C] and start pushing the door open. (this will take about [breakout_time] minutes)")) for(var/mob/O in viewers(loc)) - O.show_message(SPAN_DANGER("The [loc] begins to shake violently!"), SHOW_MESSAGE_VISIBLE) + O.show_message(SPAN_DANGER("[loc] begins to shake violently!"), SHOW_MESSAGE_VISIBLE) if(!do_after(src, (breakout_time*1 MINUTES), INTERRUPT_NO_NEEDHAND^INTERRUPT_RESIST)) return - if(!C || !src || stat != CONSCIOUS || loc != C || C.opened) //closet/user destroyed OR user dead/unconcious OR user no longer in closet OR closet opened + if(!C || !src || stat != CONSCIOUS || loc != C || C.opened) //closet/user destroyed OR user dead/unconscious OR user no longer in closet OR closet opened return //Perform the same set of checks as above for weld and lock status to determine if there is even still a point in 'resisting'... if(istype(loc, /obj/structure/closet/secure_closet)) @@ -170,25 +170,16 @@ return //breaking out of handcuffs & putting out fires - if(!is_mob_incapacitated(TRUE)) + if(mobility_flags & MOBILITY_MOVE) if(on_fire) resist_fire() - - var/on_acid = FALSE - for(var/datum/effects/acid/A in effects_list) - on_acid = TRUE - break - if(on_acid) + if(locate(/datum/effects/acid) in effects_list) resist_acid() + if(last_special <= world.time) + resist_restraints() SEND_SIGNAL(src, COMSIG_MOB_RESISTED) - if(!iscarbon(src)) - return - var/mob/living/carbon/C = src - if((C.handcuffed || C.legcuffed) && (C.mobility_flags & MOBILITY_MOVE) && (C.last_special <= world.time)) - resist_restraints() - /mob/living/proc/resist_buckle() buckled.manual_unbuckle(src) diff --git a/code/modules/mob/living/login.dm b/code/modules/mob/living/login.dm index 50ea9e7a62..2bae197050 100644 --- a/code/modules/mob/living/login.dm +++ b/code/modules/mob/living/login.dm @@ -6,7 +6,7 @@ ..() - if(pipes_shown && pipes_shown.len) //ventcrawling, need to reapply pipe vision + if(LAZYLEN(pipes_shown)) //ventcrawling, need to reapply pipe vision var/obj/structure/pipes/A = loc if(istype(A)) //a sanity check just to be safe remove_ventcrawl() diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 0176478c71..5dbaf9eada 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -1,4 +1,4 @@ -var/list/department_radio_keys = list( +GLOBAL_LIST_INIT(department_radio_keys, list( ":i" = RADIO_CHANNEL_INTERCOM, ".i" = RADIO_CHANNEL_INTERCOM, "#i" = RADIO_CHANNEL_INTERCOM, ":h" = RADIO_CHANNEL_DEPARTMENT, ".h" = RADIO_CHANNEL_DEPARTMENT, "#h" = RADIO_CHANNEL_DEPARTMENT, ":w" = RADIO_MODE_WHISPER, ".w" = RADIO_MODE_WHISPER, "#w" = RADIO_MODE_WHISPER, @@ -49,18 +49,36 @@ var/list/department_radio_keys = list( ":K" = SQUAD_SOF, ".K" = SQUAD_SOF, "#K" = RADIO_CHANNEL_WY_WO, ":Q" = RADIO_CHANNEL_ROYAL_MARINE, ".Q" = RADIO_CHANNEL_ROYAL_MARINE, ":R" = RADIO_CHANNEL_PROVOST, ".R" = RADIO_CHANNEL_PROVOST, "#R" = RADIO_CHANNEL_PROVOST, -) +)) /proc/channel_to_prefix(channel) var/channel_key - for(var/key in department_radio_keys) - if(department_radio_keys[key] == channel) + for(var/key in GLOB.department_radio_keys) + if(GLOB.department_radio_keys[key] == channel) channel_key = key break return channel_key /proc/prefix_to_channel(prefix) - return department_radio_keys[prefix] + return GLOB.department_radio_keys[prefix] + +/proc/filter_message(client/user, message) + if(!config.word_filter_regex) + return TRUE + + if(config.word_filter_regex.Find(message)) + to_chat(user, + html = "\n-- Word Filter Message --", + ) + to_chat(user, + type = MESSAGE_TYPE_ADMINPM, + html = "\nYour message has been automatically filtered due to its contents. Trying to circumvent this filter will get you banned.", + ) + SEND_SOUND(user, sound('sound/effects/adminhelp_new.ogg')) + log_admin("[user.ckey] triggered the chat filter with the following message: [message].") + return FALSE + + return TRUE ///Shows custom speech bubbles for screaming, *warcry etc. /mob/living/proc/show_speech_bubble(bubble_name, bubble_type = bubble_icon) @@ -76,11 +94,14 @@ var/list/department_radio_keys = list( /mob/living/proc/remove_speech_bubble(mutable_appearance/speech_bubble, list_of_mobs) overlays -= speech_bubble -/mob/living/say(message, datum/language/speaking = null, verb="says", alt_name="", italics=0, message_range = world_view_size, sound/speech_sound, sound_vol, nolog = 0, message_mode = null, bubble_type = bubble_icon) +/mob/living/say(message, datum/language/speaking = null, verb="says", alt_name="", italics=0, message_range = GLOB.world_view_size, sound/speech_sound, sound_vol, nolog = 0, message_mode = null, bubble_type = bubble_icon) var/turf/T if(SEND_SIGNAL(src, COMSIG_LIVING_SPEAK, message, speaking, verb, alt_name, italics, message_range, speech_sound, sound_vol, nolog, message_mode) & COMPONENT_OVERRIDE_SPEAK) return + if(!filter_message(src, message)) + return + message = process_chat_markup(message, list("~", "_")) for(var/dst=0; dst<=1; dst++) //Will run twice if src has a clone @@ -118,6 +139,13 @@ var/list/department_radio_keys = list( listening += M hearturfs += M.locs[1] for(var/obj/O in M.contents) + var/obj/item/clothing/worn_item = O + if((O.flags_atom & USES_HEARING) || ((istype(worn_item) && worn_item.accessories))) + listening_obj |= O + else if(istype(I, /obj/structure/surface)) + var/obj/structure/surface/table = I + hearturfs += table.locs[1] + for(var/obj/O in table.contents) if(O.flags_atom & USES_HEARING) listening_obj |= O else if(istype(I, /obj/)) @@ -158,11 +186,11 @@ var/list/department_radio_keys = list( if(message_mode) // we are talking into a radio if(message_mode == "headset") // default value, means general message_mode = "General" - log_say("[name != "Unknown" ? name : "([real_name])"] \[[message_mode]\]: [message] (CKEY: [key]) (JOB: [job])") + log_say("[name != "Unknown" ? name : "([real_name])"] \[[message_mode]\]: [message] (CKEY: [key]) (JOB: [job]) (AREA: [get_area_name(loc)])") else // we talk normally - log_say("[name != "Unknown" ? name : "([real_name])"]: [message] (CKEY: [key]) (JOB: [job])") + log_say("[name != "Unknown" ? name : "([real_name])"]: [message] (CKEY: [key]) (JOB: [job]) (AREA: [get_area_name(loc)])") else - log_say("[name != "Unknown" ? name : "([real_name])"]: [message] (CKEY: [key])") + log_say("[name != "Unknown" ? name : "([real_name])"]: [message] (CKEY: [key]) (AREA: [get_area_name(loc)])") return 1 diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm deleted file mode 100644 index 818377c9c1..0000000000 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ /dev/null @@ -1,627 +0,0 @@ -#define AI_CHECK_WIRELESS 1 -#define AI_CHECK_RADIO 2 - -var/list/ai_list = list() -var/list/ai_verbs_default = list( - /mob/living/silicon/ai/proc/ai_alerts, - /mob/living/silicon/ai/proc/ai_announcement, - // /mob/living/silicon/ai/proc/ai_recall_shuttle, - /mob/living/silicon/ai/proc/ai_camera_track, - /mob/living/silicon/ai/proc/ai_camera_list, - /mob/living/silicon/ai/proc/ai_goto_location, - /mob/living/silicon/ai/proc/ai_remove_location, - /mob/living/silicon/ai/proc/ai_roster, - /mob/living/silicon/ai/proc/ai_store_location, - /mob/living/silicon/ai/proc/control_integrated_radio, - /mob/living/silicon/ai/proc/core, - /mob/living/silicon/ai/proc/pick_icon, - /mob/living/silicon/ai/proc/sensor_mode, - /mob/living/silicon/ai/proc/toggle_acceleration -) - - - //mob/living/silicon/ai/proc/ai_hologram_change, - - //mob/living/silicon/ai/proc/ai_network_change - //mob/living/silicon/ai/proc/ai_statuschange, - //mob/living/silicon/ai/proc/toggle_camera_light - -//Not sure why this is necessary... -/proc/AutoUpdateAI(obj/subject) - var/is_in_use = 0 - if (subject!=null) - for(var/A in ai_list) - var/mob/living/silicon/ai/M = A - if ((M.client && M.interactee == subject)) - is_in_use = 1 - subject.attack_remote(M) - return is_in_use - - -/mob/living/silicon/ai - name = "AI" - icon = 'icons/mob/AI.dmi'// - icon_state = "ai" - anchored = TRUE // -- TLE - density = TRUE - status_flags = CANSTUN|CANKNOCKOUT - med_hud = MOB_HUD_MEDICAL_BASIC - sec_hud = MOB_HUD_SECURITY_BASIC - var/list/network = list(CAMERA_NET_ALMAYER) - var/obj/structure/machinery/camera/camera = null - var/list/connected_robots = list() - var/aiRestorePowerRoutine = 0 - //var/list/laws = list() - var/viewalerts = 0 - var/lawcheck[1] - var/ioncheck[1] - var/lawchannel = "Common" // Default channel on which to state laws - var/icon/holo_icon//Default is assigned when AI is created. -// var/obj/item/device/pda/ai/aiPDA = null - var/obj/item/device/multitool/aiMulti = null - var/obj/item/device/radio/headset/ai_integrated/aiRadio = null -//Hud stuff - - //MALFUNCTION - var/datum/AI_Module/module_picker/malf_picker - var/processing_time = 100 - var/list/datum/AI_Module/current_modules = list() - var/fire_res_on_core = 0 - - var/control_disabled = 0 // Set to 1 to stop AI from interacting via Click() -- TLE - var/malfhacking = 0 // More or less a copy of the above var, so that malf AIs can hack and still get new cyborgs -- NeoFite - - var/obj/structure/machinery/power/apc/malfhack = null - var/explosive = 0 //does the AI explode when it dies? - - var/mob/living/silicon/ai/parent = null - - var/camera_light_on = 0 //Defines if the AI toggled the light on the camera it's looking through. - var/datum/trackable/track = null - var/last_announcement = "" - var/datum/announcement/priority/announcement - -/mob/living/silicon/ai/proc/add_ai_verbs() - add_verb(src, ai_verbs_default) - -/mob/living/silicon/ai/proc/remove_ai_verbs() - remove_verb(src, ai_verbs_default) - -/mob/living/silicon/ai/New(loc, obj/item/device/mmi/B, safety = 0) - var/list/possibleNames = ai_names - - var/pickedName = null - while(!pickedName) - pickedName = pick(ai_names) - for (var/mob/living/silicon/ai/A in GLOB.mob_list) - if (A.real_name == pickedName && possibleNames.len > 1) //fixing the theoretically possible infinite loop - possibleNames -= pickedName - pickedName = null - -// aiPDA = new/obj/item/device/pda/ai(src) - SetName(pickedName) - anchored = TRUE - ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_INHERENT) - set_density(TRUE) - forceMove(loc) - - holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo1")) - - aiMulti = new(src) - aiRadio = new(src) - aiRadio.myAi = src - aiCamera = new/obj/item/device/camera/siliconcam/ai_camera(src) - - if (istype(loc, /turf)) - add_ai_verbs(src) - - //Languages - add_language(LANGUAGE_ENGLISH, 1) - add_language(LANGUAGE_RUSSIAN, 1) - add_language(LANGUAGE_XENOMORPH, 0) - - - if(!safety)//Only used by AIize() to successfully spawn an AI. - if (!B)//If there is no player/brain inside. - new/obj/structure/AIcore/deactivated(loc)//New empty terminal. - qdel(src)//Delete AI. - return - else - if (B.brainmob.mind) - B.brainmob.mind.transfer_to(src) - - to_chat(src, "You are playing the station's AI. The AI cannot move, but can interact with many objects while viewing them (through cameras).") - to_chat(src, "To look at other parts of the station, click on yourself to get a camera menu.") - to_chat(src, "While observing through a camera, you can use most (networked) devices which you can see, such as computers, APCs, intercoms, doors, etc.") - to_chat(src, "To use something, simply click on it.") - to_chat(src, "Use say :b to speak to your cyborgs through binary.") - show_laws() - to_chat(src, "These laws may be changed by other players, or by you being the traitor.") - - job = "AI" - - spawn(5) - new /obj/structure/machinery/ai_powersupply(src) - - ai_list += src - ..() - return - -/mob/living/silicon/ai/Destroy() - ai_list -= src - QDEL_NULL(aiMulti) - if(aiRadio) - aiRadio.myAi = null - QDEL_NULL(aiRadio) - QDEL_NULL(aiCamera) - . = ..() - -/mob/living/silicon/ai/proc/SetName(pickedName as text) - change_real_name(src, pickedName) - - if(eyeobj) - eyeobj.name = "[pickedName] (AI Eye)" - - // Set ai pda name - /* - if(aiPDA) - aiPDA.ownjob = "AI" - aiPDA.owner = pickedName - aiPDA.name = pickedName + " (" + aiPDA.ownjob + ")" - Fuck PDAs */ - -/* - The AI Power supply is a dummy object used for powering the AI since only machinery should be using power. - The alternative was to rewrite a bunch of AI code instead here we are. -*/ -/obj/structure/machinery/ai_powersupply - name="Power Supply" - active_power_usage=1000 - use_power = USE_POWER_ACTIVE - power_channel = POWER_CHANNEL_EQUIP - var/mob/living/silicon/ai/powered_ai = null - invisibility = 100 - -/obj/structure/machinery/ai_powersupply/New(mob/living/silicon/ai/ai) - powered_ai = ai - if(isnull(powered_ai)) - qdel(src) - return - forceMove(powered_ai.loc) - use_power(1) // Just incase we need to wake up the power system. - //start_processing() - //..() - -/obj/structure/machinery/ai_powersupply/process() - if(!powered_ai || powered_ai.stat & DEAD) - qdel(src) - return - if(!powered_ai.anchored) - forceMove(powered_ai.loc) - update_use_power(USE_POWER_NONE) - if(powered_ai.anchored) - update_use_power(USE_POWER_ACTIVE) - -/mob/living/silicon/ai/proc/pick_icon() - set category = "AI Commands" - set name = "Set AI Core Display" - if(stat || aiRestorePowerRoutine) - return - - //if(icon_state == initial(icon_state)) - var/icontype = tgui_input_list(usr, "Select an icon!", "AI", list("Monochrome", "Rainbow", "Blue", "Inverted", "Text", "Smiley", "Angry", "Dorf", "Matrix", "Bliss", "Firewall", "Green", "Red", "Static", "Triumvirate", "Triumvirate Static", "Soviet", "Trapped", "Heartline", "Chatterbox")) - switch(icontype) - if("Rainbow") icon_state = "ai-clown" - if("Monochrome") icon_state = "ai-mono" - if("Inverted") icon_state = "ai-u" - if("Firewall") icon_state = "ai-magma" - if("Green") icon_state = "ai-wierd" - if("Red") icon_state = "ai-red" - if("Static") icon_state = "ai-static" - if("Text") icon_state = "ai-text" - if("Smiley") icon_state = "ai-smiley" - if("Matrix") icon_state = "ai-matrix" - if("Angry") icon_state = "ai-angryface" - if("Dorf") icon_state = "ai-dorf" - if("Bliss") icon_state = "ai-bliss" - if("Triumvirate") icon_state = "ai-triumvirate" - if("Triumvirate Static") icon_state = "ai-triumvirate-malf" - if("Soviet") icon_state = "ai-redoctober" - if("Trapped") icon_state = "ai-hades" - if("Heartline") icon_state = "ai-heartline" - if("Chatterbox") icon_state = "ai-president" - else icon_state = "ai" - -/mob/living/silicon/ai/proc/ai_alerts() - set category = "AI Commands" - set name = "Show Alerts" - - var/dat = "Current Station Alerts\n" - dat += "Close

        " - for (var/cat in alarms) - dat += text("[]
        \n", cat) - var/list/alarmlist = alarms[cat] - if (alarmlist.len) - for (var/area_name in alarmlist) - var/datum/alarm/alarm = alarmlist[area_name] - dat += "" - - var/cameratext = "" - if (alarm.cameras) - for (var/obj/structure/machinery/camera/I in alarm.cameras) - cameratext += text("[][]", (cameratext=="") ? "" : "|", src, I, I.c_tag) - dat += text("-- [] ([])", alarm.area.name, (cameratext)? cameratext : "No Camera") - - if (alarm.sources.len > 1) - dat += text(" - [] sources", alarm.sources.len) - dat += "
        \n" - else - dat += "-- All Systems Nominal
        \n" - dat += "
        \n" - - viewalerts = 1 - src << browse(dat, "window=aialerts&can_close=0") - -// this verb lets the ai see the stations manifest -/mob/living/silicon/ai/proc/ai_roster() - set category = "AI Commands" - set name = "Show Crew Manifest" - show_station_manifest() - -/mob/living/silicon/ai/var/message_cooldown = 0 -/mob/living/silicon/ai/proc/ai_announcement() - set category = "AI Commands" - set name = "Make Station Announcement" - - if(check_unable(AI_CHECK_WIRELESS|AI_CHECK_RADIO)) - return - - if(message_cooldown) - to_chat(src, "Please allow one minute to pass between announcements.") - return - var/input = stripped_multiline_input(usr, "Please write a message to announce to the station crew.", "A.I. Announcement") - if(!input) - return - - if(check_unable(AI_CHECK_WIRELESS|AI_CHECK_RADIO)) - return - - ai_announcement(input) - message_cooldown = 1 - spawn(1 MINUTES)//One minute cooldown - message_cooldown = 0 - -/mob/living/silicon/ai/check_eye(mob/user) - if (!camera) - user.reset_view(null) - return - user.reset_view(camera) - -/mob/living/silicon/ai/is_mob_restrained() - return 0 - -/mob/living/silicon/ai/emp_act(severity) - . = ..() - if (prob(30)) view_core() - -/mob/living/silicon/ai/Topic(href, href_list) - if(usr != src) - return - ..() - if (href_list["mach_close"]) - if (href_list["mach_close"] == "aialerts") - viewalerts = 0 - var/t1 = text("window=[]", href_list["mach_close"]) - unset_interaction() - src << browse(null, t1) - if (href_list["switchcamera"]) - switchCamera(locate(href_list["switchcamera"])) in cameranet.cameras - if (href_list["showalerts"]) - ai_alerts() - //Carn: holopad requests - if (href_list["jumptoholopad"]) - var/obj/structure/machinery/hologram/holopad/H = locate(href_list["jumptoholopad"]) - if(stat == CONSCIOUS) - if(H) - H.attack_remote(src) //may as well recycle - else - to_chat(src, SPAN_NOTICE("Unable to locate the holopad.")) - - if (href_list["track"]) - var/mob/target = locate(href_list["track"]) in GLOB.mob_list - - if(target && (!istype(target, /mob/living/carbon/human) || html_decode(href_list["trackname"]) == target:get_face_name())) - ai_actual_track(target) - else - to_chat(src, "System error. Cannot locate.") - return - - return - -/mob/living/silicon/ai/attack_animal(mob/living/M as mob) - if(M.melee_damage_upper == 0) - M.emote("[M.friendly] [src]") - else - if(M.attack_sound) - playsound(loc, M.attack_sound, 25, 1) - for(var/mob/O in viewers(src, null)) - O.show_message(SPAN_DANGER("[M] [M.attacktext] [src]!"), SHOW_MESSAGE_VISIBLE) - last_damage_data = create_cause_data(initial(M.name), M) - M.attack_log += text("\[[time_stamp()]\] attacked [src.name] ([src.ckey])") - src.attack_log += text("\[[time_stamp()]\] was attacked by [M.name] ([M.ckey])") - var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) - apply_damage(damage, BRUTE) - updatehealth() - -/mob/living/silicon/ai/reset_view(atom/A) - if(camera) - camera.set_light(0) - if(istype(A,/obj/structure/machinery/camera)) - camera = A - ..() - if(istype(A,/obj/structure/machinery/camera)) - if(camera_light_on) A.set_light(AI_CAMERA_LUMINOSITY) - else A.set_light(0) - - -/mob/living/silicon/ai/proc/switchCamera(obj/structure/machinery/camera/C) - if (!C || stat == DEAD) //C.can_use()) - return 0 - - if(!src.eyeobj) - view_core() - return - // ok, we're alive, camera is good and in our network... - eyeobj.setLoc(get_turf(C)) - //machine = src - - return 1 - -/mob/living/silicon/ai/triggerAlarm(class, area/A, list/cameralist, source) - if (stat == 2) - return 1 - - ..() - - var/cameratext = "" - for (var/obj/structure/machinery/camera/C in cameralist) - cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" - - queueAlarm("--- [class] alarm detected in [A.name]! ([(cameratext)? cameratext : "No Camera"])", class) - - if (viewalerts) ai_alerts() - -/mob/living/silicon/ai/cancelAlarm(class, area/A as area, source) - var/has_alarm = ..() - - if (!has_alarm) - queueAlarm(text("--- [] alarm in [] has been cleared.", class, A.name), class, 0) - if (viewalerts) ai_alerts() - - return has_alarm - -/mob/living/silicon/ai/cancel_camera() - set category = "AI Commands" - set name = "Cancel Camera View" - - //src.cameraFollow = null - src.view_core() - - -//Replaces /mob/living/silicon/ai/verb/change_network() in ai.dm & camera.dm -//Adds in /mob/living/silicon/ai/proc/ai_network_change() instead -//Addition by Mord_Sith to define AI's network change ability -/mob/living/silicon/ai/proc/ai_network_change() - set category = "AI Commands" - set name = "Jump To Network" - unset_interaction() - var/cameralist[0] - - if(check_unable()) - return - - var/mob/living/silicon/ai/U = usr - - for (var/obj/structure/machinery/camera/C in cameranet.cameras) - if(!C.can_use()) - continue - - var/list/tempnetwork = difflist(C.network,RESTRICTED_CAMERA_NETWORKS,1) - if(tempnetwork.len) - for(var/i in tempnetwork) - cameralist[i] = i - var/old_network = network - network = tgui_input_list(U, "Which network would you like to view?", "View network", cameralist) - - if(!U.eyeobj) - U.view_core() - return - - if(isnull(network)) - network = old_network // If nothing is selected - else - for(var/obj/structure/machinery/camera/C in cameranet.cameras) - if(!C.can_use()) - continue - if(network in C.network) - U.eyeobj.setLoc(get_turf(C)) - break - to_chat(src, SPAN_NOTICE(" Switched to [network] camera network.")) -//End of code by Mord_Sith - -/mob/living/silicon/ai/proc/ai_statuschange() - set category = "AI Commands" - set name = "AI Status" - - if(check_unable(AI_CHECK_WIRELESS)) - return - - var/list/ai_emotions = list("Very Happy", "Happy", "Neutral", "Unsure", "Confused", "Surprised", "Sad", "Upset", "Angry", "Awesome", "BSOD", "Blank", "Problems?", "Facepalm", "Friend Computer") - var/emote = tgui_input_list(usr, "Please, select a status!", "AI Status", ai_emotions) - for (var/obj/structure/machinery/M in machines) //change status - if(istype(M, /obj/structure/machinery/ai_status_display)) - var/obj/structure/machinery/ai_status_display/AISD = M - AISD.emotion = emote - //if Friend Computer, change ALL displays - else if(istype(M, /obj/structure/machinery/status_display)) - - var/obj/structure/machinery/status_display/SD = M - if(emote=="Friend Computer") - SD.friendc = 1 - else - SD.friendc = 0 - return - -//I am the icon meister. Bow fefore me. //>fefore -/mob/living/silicon/ai/proc/ai_hologram_change() - set name = "Change Hologram" - set desc = "Change the default hologram available to AI to something else." - set category = "AI Commands" - - if(check_unable()) - return - - var/input - if(alert("Would you like to select a hologram based on a crew member or switch to unique avatar?",,"Crew Member","Unique")=="Crew Member") - - var/personnel_list[] = list() - - for(var/datum/data/record/t in GLOB.data_core.locked)//Look in data core locked. - personnel_list["[t.fields["name"]]: [t.fields["rank"]]"] = t.fields["image"]//Pull names, rank, and image. - - if(personnel_list.len) - input = tgui_input_list(usr, "Select a crew member:", "Change hologram", personnel_list) - var/icon/character_icon = personnel_list[input] - if(character_icon) - qdel(holo_icon)//Clear old icon so we're not storing it in memory. - holo_icon = getHologramIcon(icon(character_icon)) - else - alert("No suitable records found. Aborting.") - - else - var/icon_list[] = list( - "default", - "floating face", - "carp" - ) - input = tgui_input_list(usr, "Please select a hologram:", "Select hologram", icon_list) - if(input) - QDEL_NULL(holo_icon) - switch(input) - if("default") - holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo1")) - if("floating face") - holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo2")) - if("carp") - holo_icon = getHologramIcon(icon('icons/mob/AI.dmi',"holo4")) - return - -/*/mob/living/silicon/ai/proc/corereturn() - set category = "Malfunction" - set name = "Return to Main Core" - - var/obj/structure/machinery/power/apc/apc = src.loc - if(!istype(apc)) - to_chat(src, SPAN_NOTICE(" You are already in your Main Core.")) - return - apc.malfvacate()*/ - -//Toggles the luminosity and applies it by re-entereing the camera. -/mob/living/silicon/ai/proc/toggle_camera_light() - set name = "Toggle Camera Light" - set desc = "Toggles the light on the camera the AI is looking through." - set category = "AI Commands" - - if(check_unable()) - return - - camera_light_on = !camera_light_on - to_chat(src, "Camera lights [camera_light_on ? "activated" : "deactivated"].") - if(!camera_light_on) - if(camera) - camera.set_light(0) - camera = null - else - lightNearbyCamera() - - - -// Handled camera lighting, when toggled. -// It will get the nearest camera from the eyeobj, lighting it. - -/mob/living/silicon/ai/proc/lightNearbyCamera() - if(camera_light_on && camera_light_on < world.timeofday) - if(src.camera) - var/obj/structure/machinery/camera/camera = near_range_camera(src.eyeobj) - if(camera && src.camera != camera) - src.camera.set_light(0) - if(!camera.light_disabled) - src.camera = camera - src.camera.set_light(AI_CAMERA_LUMINOSITY) - else - src.camera = null - else if(isnull(camera)) - src.camera.set_light(0) - src.camera = null - else - var/obj/structure/machinery/camera/camera = near_range_camera(src.eyeobj) - if(camera && !camera.light_disabled) - src.camera = camera - src.camera.set_light(AI_CAMERA_LUMINOSITY) - camera_light_on = world.timeofday + 1 * 20 // Update the light every 2 seconds. - - -/mob/living/silicon/ai/attackby(obj/item/W as obj, mob/user as mob) - if(HAS_TRAIT(W, TRAIT_TOOL_WRENCH)) - if(anchored) - user.visible_message(SPAN_NOTICE("\The [user] starts to unbolt \the [src] from the plating...")) - if(!do_after(user, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - user.visible_message(SPAN_NOTICE("\The [user] decides not to unbolt \the [src].")) - return - user.visible_message(SPAN_NOTICE("\The [user] finishes unfastening \the [src]!")) - anchored = FALSE - return - else - user.visible_message(SPAN_NOTICE("\The [user] starts to bolt \the [src] to the plating...")) - if(!do_after(user, 40, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) - user.visible_message(SPAN_NOTICE("\The [user] decides not to bolt \the [src].")) - return - user.visible_message(SPAN_NOTICE("\The [user] finishes fastening down \the [src]!")) - anchored = TRUE - return - else - return ..() - -/mob/living/silicon/ai/proc/control_integrated_radio() - set name = "Radio Settings" - set desc = "Allows you to change settings of your radio." - set category = "AI Commands" - - if(check_unable(AI_CHECK_RADIO)) - return - - to_chat(src, "Accessing Subspace Transceiver control...") - if (src.aiRadio) - src.aiRadio.interact(src) - -/mob/living/silicon/ai/proc/sensor_mode() - set name = "Set Sensor Augmentation" - set category = "AI Commands" - set desc = "Augment visual feed with internal sensor overlays" - toggle_sensor_mode() - -/mob/living/silicon/ai/proc/check_unable(flags = 0) - if(stat == DEAD) - to_chat(usr, SPAN_DANGER("You are dead!")) - return 1 - - if((flags & AI_CHECK_WIRELESS) && src.control_disabled) - to_chat(usr, SPAN_DANGER("Wireless control is disabled!")) - return 1 - if((flags & AI_CHECK_RADIO) && src.aiRadio.disabledAi) - to_chat(src, SPAN_DANGER("System Error - Transceiver Disabled!")) - return 1 - return 0 - -#undef AI_CHECK_WIRELESS -#undef AI_CHECK_RADIO diff --git a/code/modules/mob/living/silicon/ai/death.dm b/code/modules/mob/living/silicon/ai/death.dm deleted file mode 100644 index 19a6267518..0000000000 --- a/code/modules/mob/living/silicon/ai/death.dm +++ /dev/null @@ -1,22 +0,0 @@ -/mob/living/silicon/ai/death(cause, gibbed) - - if(stat == DEAD) - return - - icon_state = "ai-crash" - - if(src.eyeobj) - src.eyeobj.setLoc(get_turf(src)) - - remove_ai_verbs(src) - - if(explosive) - addtimer(CALLBACK(src, PROC_REF(explosion), src.loc, 3, 6, 12, 15), 10) - - for(var/obj/structure/machinery/ai_status_display/O in machines) - spawn( 0 ) - O.mode = 2 - if (istype(loc, /obj/item/device/aicard)) - loc.icon_state = "aicard-404" - - return ..(cause, gibbed,"gives one shrill beep before falling lifeless.") diff --git a/code/modules/mob/living/silicon/ai/examine.dm b/code/modules/mob/living/silicon/ai/examine.dm deleted file mode 100644 index 1fb41e0229..0000000000 --- a/code/modules/mob/living/silicon/ai/examine.dm +++ /dev/null @@ -1,26 +0,0 @@ -/mob/living/silicon/ai/get_examine_text(mob/user) - if( (user.sdisabilities & DISABILITY_BLIND || user.blinded || user.stat) && !istype(user,/mob/dead/observer) ) - return list(SPAN_NOTICE("Something is there but you can't see it.")) - - var/msg = "*---------*\nThis is [icon2html(src)] [src]!\n" - if (src.stat == DEAD) - msg += "It appears to be powered-down.\n" - else - msg += "" - if (src.getBruteLoss()) - if (src.getBruteLoss() < 30) - msg += "It looks slightly dented.\n" - else - msg += "It looks severely dented!\n" - if (src.getFireLoss()) - if (src.getFireLoss() < 30) - msg += "It looks slightly charred.\n" - else - msg += "Its casing is melted and heat-warped!\n" - - if (src.stat == UNCONSCIOUS) - msg += "It is non-responsive and displaying the text: \"RUNTIME: Sensory Overload, stack 26/3\".\n" - msg += "" - msg += "*---------*" - - . += msg diff --git a/code/modules/mob/living/silicon/ai/freelook/cameranet.dm b/code/modules/mob/living/silicon/ai/freelook/cameranet.dm deleted file mode 100644 index d6eb167e16..0000000000 --- a/code/modules/mob/living/silicon/ai/freelook/cameranet.dm +++ /dev/null @@ -1,148 +0,0 @@ -// CAMERA NET -// -// The datum containing all the chunks. - -var/datum/cameranet/cameranet = new() - -/datum/cameranet - // The cameras on the map, no matter if they work or not. Updated in obj/structure/machinery/camera/New() and Dispose(). - var/list/cameras = list() - // The chunks of the map, mapping the areas that the cameras can see. - var/list/chunks = list() - var/ready = 0 - -// Checks if a chunk has been Generated in x, y, z. -/datum/cameranet/proc/chunkGenerated(x, y, z) - x &= ~0xf - y &= ~0xf - var/key = "[x],[y],[z]" - return (chunks[key]) - -// Returns the chunk in the x, y, z. -// If there is no chunk, it creates a new chunk and returns that. -/datum/cameranet/proc/getCameraChunk(x, y, z) - x &= ~0xf - y &= ~0xf - var/key = "[x],[y],[z]" - if(!chunks[key]) - chunks[key] = new /datum/camerachunk(null, x, y, z) - - return chunks[key] - -// Updates what the aiEye can see. It is recommended you use this when the aiEye moves or it's location is set. - -/datum/cameranet/proc/visibility(mob/aiEye/ai) - // 0xf = 15 - var/x1 = max(0, ai.x - 16) & ~0xf - var/y1 = max(0, ai.y - 16) & ~0xf - var/x2 = min(world.maxx, ai.x + 16) & ~0xf - var/y2 = min(world.maxy, ai.y + 16) & ~0xf - - var/list/visibleChunks = list() - - for(var/x = x1; x <= x2; x += 16) - for(var/y = y1; y <= y2; y += 16) - visibleChunks += getCameraChunk(x, y, ai.z) - - var/list/remove = ai.visibleCameraChunks - visibleChunks - var/list/add = visibleChunks - ai.visibleCameraChunks - - for(var/chunk in remove) - var/datum/camerachunk/c = chunk - c.remove(ai) - - for(var/chunk in add) - var/datum/camerachunk/c = chunk - c.add(ai) - -// Updates the chunks that the turf is located in. Use this when obstacles are destroyed or when doors open. - -/datum/cameranet/proc/updateVisibility(atom/A, opacity_check = 1) - - if(opacity_check && !A.opacity) - return - majorChunkChange(A, 2) - -/datum/cameranet/proc/updateChunk(x, y, z) - // 0xf = 15 - if(!chunkGenerated(x, y, z)) - return - var/datum/camerachunk/chunk = getCameraChunk(x, y, z) - chunk.hasChanged() - -// Removes a camera from a chunk. - -/datum/cameranet/proc/removeCamera(obj/structure/machinery/camera/c) - if(c.can_use()) - majorChunkChange(c, 0) - -// Add a camera to a chunk. - -/datum/cameranet/proc/addCamera(obj/structure/machinery/camera/c) - if(c.can_use()) - majorChunkChange(c, 1) - -// Used for Cyborg cameras. Since portable cameras can be in ANY chunk. - -/datum/cameranet/proc/updatePortableCamera(obj/structure/machinery/camera/c) - if(c.can_use()) - majorChunkChange(c, 1) - //else - // majorChunkChange(c, 0) - -// Never access this proc directly!!!! -// This will update the chunk and all the surrounding chunks. -// It will also add the atom to the cameras list if you set the choice to 1. -// Setting the choice to 0 will remove the camera from the chunks. -// If you want to update the chunks around an object, without adding/removing a camera, use choice 2. - -/datum/cameranet/proc/majorChunkChange(atom/c, choice) - // 0xf = 15 - if(!c) - return - - var/turf/T = get_turf(c) - if(T) - var/x1 = max(0, T.x - 8) & ~0xf - var/y1 = max(0, T.y - 8) & ~0xf - var/x2 = min(world.maxx, T.x + 8) & ~0xf - var/y2 = min(world.maxy, T.y + 8) & ~0xf - - for(var/x = x1; x <= x2; x += 16) - for(var/y = y1; y <= y2; y += 16) - if(chunkGenerated(x, y, T.z)) - var/datum/camerachunk/chunk = getCameraChunk(x, y, T.z) - if(choice == 0) - // Remove the camera. - chunk.cameras -= c - else if(choice == 1) - // You can't have the same camera in the list twice. - chunk.cameras |= c - chunk.hasChanged() - -// Will check if a mob is on a viewable turf. Returns 1 if it is, otherwise returns 0. - -/datum/cameranet/proc/checkCameraVis(mob/living/target as mob) - - // 0xf = 15 - var/turf/position = get_turf(target) - return checkTurfVis(position) - -/datum/cameranet/proc/checkTurfVis(turf/position) - var/datum/camerachunk/chunk = getCameraChunk(position.x, position.y, position.z) - if(chunk) - if(chunk.changed) - chunk.hasChanged(1) // Update now, no matter if it's visible or not. - if(chunk.visibleTurfs[position]) - return 1 - return 0 - -// Debug verb for VVing the chunk that the turf is in. -/* -/turf/verb/view_chunk() - set src in world - - if(cameranet.chunkGenerated(x, y, z)) - var/datum/camerachunk/chunk = cameranet.getCameraChunk(x, y, z) - usr.client.debug_variables(chunk) -*/ diff --git a/code/modules/mob/living/silicon/ai/freelook/chunk.dm b/code/modules/mob/living/silicon/ai/freelook/chunk.dm deleted file mode 100644 index 2113e70aa2..0000000000 --- a/code/modules/mob/living/silicon/ai/freelook/chunk.dm +++ /dev/null @@ -1,168 +0,0 @@ -#define UPDATE_BUFFER 25 // 2.5 seconds - -// CAMERA CHUNK -// -// A 16x16 grid of the map with a list of turfs that can be seen, are visible and are dimmed. -// Allows the AI Eye to stream these chunks and know what it can and cannot see. - -/datum/camerachunk - var/list/obscuredTurfs = list() - var/list/visibleTurfs = list() - var/list/obscured = list() - var/list/cameras = list() - var/list/turfs = list() - var/list/seenby = list() - var/visible = 0 - var/changed = 0 - var/updating = 0 - var/x = 0 - var/y = 0 - var/z = 0 - -// Add an AI eye to the chunk, then update if changed. - -/datum/camerachunk/proc/add(mob/aiEye/ai) - if(!ai.ai) - return - ai.visibleCameraChunks += src - if(ai.ai.client) - ai.ai.client.images += obscured - visible++ - seenby += ai - if(changed && !updating) - update() - -// Remove an AI eye from the chunk, then update if changed. - -/datum/camerachunk/proc/remove(mob/aiEye/ai) - if(!ai.ai) - return - ai.visibleCameraChunks -= src - if(ai.ai.client) - ai.ai.client.images -= obscured - seenby -= ai - if(visible > 0) - visible-- - -// Called when a chunk has changed. I.E: A wall was deleted. - -/datum/camerachunk/proc/visibilityChanged(turf/loc) - if(!visibleTurfs[loc]) - return - hasChanged() - -// Updates the chunk, makes sure that it doesn't update too much. If the chunk isn't being watched it will -// instead be flagged to update the next time an AI Eye moves near it. - -/datum/camerachunk/proc/hasChanged(update_now = 0) - if(visible || update_now) - if(!updating) - updating = 1 - spawn(UPDATE_BUFFER) // Batch large changes, such as many doors opening or closing at once - update() - updating = 0 - else - changed = 1 - -// The actual updating. It gathers the visible turfs from cameras and puts them into the appropiate lists. - -/datum/camerachunk/proc/update() - - set background = 1 - - var/list/newVisibleTurfs = list() - - for(var/camera in cameras) - var/obj/structure/machinery/camera/c = camera - - if(!c) - continue - - if(!c.can_use()) - continue - - var/turf/point = locate(src.x + 8, src.y + 8, src.z) - if(get_dist(point, c) > 24) - continue - - for(var/turf/t in c.can_see()) - newVisibleTurfs[t] = t - - // Removes turf that isn't in turfs. - newVisibleTurfs &= turfs - - var/list/visAdded = newVisibleTurfs - visibleTurfs - var/list/visRemoved = visibleTurfs - newVisibleTurfs - - visibleTurfs = newVisibleTurfs - obscuredTurfs = turfs - newVisibleTurfs - - for(var/turf in visAdded) - var/turf/t = turf - if(t.obscured) - obscured -= t.obscured - for(var/eye in seenby) - var/mob/aiEye/m = eye - if(!m || !m.ai) - continue - if(m.ai.client) - m.ai.client.images -= t.obscured - - for(var/turf in visRemoved) - var/turf/t = turf - if(obscuredTurfs[t]) - if(!t.obscured) - t.obscured = image('icons/effects/cameravis.dmi', t, "black", 15) - - obscured += t.obscured - for(var/eye in seenby) - var/mob/aiEye/m = eye - if(!m || !m.ai) - seenby -= m - continue - if(m.ai.client) - m.ai.client.images += t.obscured - -// Create a new camera chunk, since the chunks are made as they are needed. - -/datum/camerachunk/New(loc, x, y, z) - - // 0xf = 15 - x &= ~0xf - y &= ~0xf - - src.x = x - src.y = y - src.z = z - - for(var/obj/structure/machinery/camera/c in range(16, locate(x + 8, y + 8, z))) - if(c.can_use()) - cameras += c - - for(var/turf/t in range(10, locate(x + 8, y + 8, z))) - if(t.x >= x && t.y >= y && t.x < x + 16 && t.y < y + 16) - turfs[t] = t - - for(var/camera in cameras) - var/obj/structure/machinery/camera/c = camera - if(!c) - continue - - if(!c.can_use()) - continue - - for(var/turf/t in c.can_see()) - visibleTurfs[t] = t - - // Removes turf that isn't in turfs. - visibleTurfs &= turfs - - obscuredTurfs = turfs - visibleTurfs - - for(var/turf in obscuredTurfs) - var/turf/t = turf - if(!t.obscured) - t.obscured = image('icons/effects/cameravis.dmi', t, "black", 15) - obscured += t.obscured - -#undef UPDATE_BUFFER diff --git a/code/modules/mob/living/silicon/ai/freelook/eye.dm b/code/modules/mob/living/silicon/ai/freelook/eye.dm deleted file mode 100644 index 5fe03ffa27..0000000000 --- a/code/modules/mob/living/silicon/ai/freelook/eye.dm +++ /dev/null @@ -1,139 +0,0 @@ -// AI EYE -// -// An invisible (no icon) mob that the AI controls to look around the station with. -// It streams chunks as it moves around, which will show it what the AI can and cannot see. - -/mob/aiEye - name = "Inactive AI Eye" - icon = 'icons/obj/structures/machinery/status_display.dmi' // For AI friend secret shh :o - var/list/visibleCameraChunks = list() - var/mob/living/silicon/ai/ai = null - density = FALSE - status_flags = GODMODE // You can't damage it. - mouse_opacity = MOUSE_OPACITY_TRANSPARENT - see_in_dark = 7 - -// Movement code. Returns 0 to stop air movement from moving it. -/mob/aiEye/Move() - return 0 - -// Use this when setting the aiEye's location. -// It will also stream the chunk that the new loc is in. -/mob/aiEye/proc/setLoc(T, cancel_tracking = 1) - - if(ai) - if(!isturf(ai.loc)) - return - - if(cancel_tracking) - ai.ai_cancel_tracking() - - T = get_turf(T) - forceMove(T) - cameranet.visibility(src) - if(ai.client) - ai.client.eye = src - //Holopad - if(ai.holo) - ai.holo.move_hologram() - -/mob/aiEye/proc/getLoc() - - if(ai) - if(!isturf(ai.loc) || !ai.client) - return - if(ai.eyeobj) - return ai.eyeobj.loc - -// AI MOVEMENT - -// The AI's "eye". Described on the top of the page. - -/mob/living/silicon/ai - var/mob/aiEye/eyeobj = new() - var/sprint = 10 - var/cooldown = 0 - var/acceleration = 1 - var/obj/structure/machinery/hologram/holopad/holo = null - -// Intiliaze the eye by assigning it's "ai" variable to us. Then set it's loc to us. -/mob/living/silicon/ai/Initialize() - . = ..() - if(eyeobj) - eyeobj.ai = src - eyeobj.name = "[src.name] (AI Eye)" // Give it a name - spawn(5) - if(eyeobj) - eyeobj.forceMove(src.loc) - -/mob/living/silicon/ai/Destroy() - if(eyeobj) - eyeobj.ai = null - QDEL_NULL(eyeobj) - . = ..() - -/atom/proc/move_camera_by_click() - if(isRemoteControlling(usr)) - var/mob/living/silicon/ai/AI = usr - if(AI.eyeobj && AI.client.eye == AI.eyeobj) - AI.eyeobj.setLoc(src) - -// This will move the AIEye. It will also cause lights near the eye to light up, if toggled. -// This is handled in the proc below this one. - -/mob/living/silicon/ai/Move(n, direct) - - var/initial = initial(sprint) - var/max_sprint = 50 - - if(cooldown && cooldown < world.timeofday) // 3 seconds - sprint = initial - - if(eyeobj) - for(var/i = 0; i < max(sprint, initial); i += 20) - var/turf/step = get_turf(get_step(eyeobj, direct)) - if(step) - eyeobj.setLoc(step) - - cooldown = world.timeofday + 5 - if(acceleration) - sprint = min(sprint + 0.5, max_sprint) - else - sprint = initial - - //user.unset_interaction() //Uncomment this if it causes problems. - //user.lightNearbyCamera() - - -// Return to the Core. - -/mob/living/silicon/ai/proc/core() - set category = "AI Commands" - set name = "AI Core" - - view_core() - - -/mob/living/silicon/ai/proc/view_core() - camera = null - unset_interaction() - - if(!src.eyeobj) - to_chat(src, "ERROR: Eyeobj not found. Creating new eye...") - src.eyeobj = new(src.loc) - src.eyeobj.ai = src - src.SetName(src.name) - - if(client && client.eye) - client.eye = src - for(var/datum/camerachunk/c in eyeobj.visibleCameraChunks) - c.remove(eyeobj) - if(eyeobj) - src.eyeobj.setLoc(src) - -/mob/living/silicon/ai/proc/toggle_acceleration() - set category = "AI Commands" - set name = "Toggle Camera Acceleration" - - acceleration = !acceleration - to_chat(usr, "Camera acceleration has been toggled [acceleration ? "on" : "off"].") diff --git a/code/modules/mob/living/silicon/ai/freelook/read_me.dm b/code/modules/mob/living/silicon/ai/freelook/read_me.dm deleted file mode 100644 index 4d25577298..0000000000 --- a/code/modules/mob/living/silicon/ai/freelook/read_me.dm +++ /dev/null @@ -1,51 +0,0 @@ -// CREDITS -/* -Initial code credit for this goes to Uristqwerty. -Debugging, functionality, all comments and porting by Giacom. - -Everything about freelook (or what we can put in here) will be stored here. - - -WHAT IS THIS? - -This is a replacement for the current camera movement system, of the AI. Before this, the AI had to move between cameras and could -only see what the cameras could see. Not only this but the cameras could see through walls, which created problems. -With this, the AI controls an "AI Eye" mob, which moves just like a ghost; such as moving through walls and being invisible to players. -The AI's eye is set to this mob and then we use a system (explained below) to determine what the cameras around the AI Eye can and -cannot see. If the camera cannot see a turf, it will black it out, otherwise it won't and the AI will be able to see it. -This creates several features, such as... no more see-through-wall cameras, easier to control camera movement, easier tracking, -the AI only being able to track mobs which are visible to a camera, only trackable mobs appearing on the mob list and many more. - - -HOW IT WORKS - -It works by first creating a camera network datum. Inside of this camera network are "chunks" (which will be -explained later) and "cameras". The cameras list is kept up to date by obj/structure/machinery/camera/New() and Dispose(). - -Next the camera network has chunks. These chunks are a 16x16 tile block of turfs and cameras contained inside the chunk. -These turfs are then sorted out based on what the cameras can and cannot see. If none of the cameras can see the turf, inside -the 16x16 block, it is listed as an "obscured" turf. Meaning the AI won't be able to see it. - - -HOW IT UPDATES - -The camera network uses a streaming method in order to effeciently update chunks. Since the server will have doors opening, doors closing, -turf being destroyed and other lag inducing stuff, we want to update it under certain conditions and not every tick. - -The chunks are not created straight away, only when an AI eye moves into it's area is when it gets created. -One a chunk is created, when a non glass door opens/closes or an opacity turf is destroyed, we check to see if an AI Eye is looking in the area. -We do this with the "seenby" list, which updates everytime an AI is near a chunk. If there is an AI eye inside the area, we update the chunk -that the changed atom is inside and all surrounding chunks, since a camera's vision could leak onto another chunk. If there is no AI Eye, we instead -flag the chunk to update whenever it is loaded by an AI Eye. This is basically how the chunks update and keep it in sync. We then add some lag reducing -measures, such as an UPDATE_BUFFER which stops a chunk from updating too many times in a certain time-frame, only updating if the changed atom was blocking -sight; for example, we don't update glass airlocks or floors. - - -WHERE IS EVERYTHING? - -cameranet.dm = Everything about the cameranet datum. -chunk.dm = Everything about the chunk datum. -eye.dm = Everything about the AI and the AIEye. -updating.dm = Everything about triggers that will update chunks. - -*/ diff --git a/code/modules/mob/living/silicon/ai/freelook/update_triggers.dm b/code/modules/mob/living/silicon/ai/freelook/update_triggers.dm deleted file mode 100644 index a7109f4917..0000000000 --- a/code/modules/mob/living/silicon/ai/freelook/update_triggers.dm +++ /dev/null @@ -1,117 +0,0 @@ -#define BORG_CAMERA_BUFFER 5 - -//UPDATE TRIGGERS, when the chunk (and the surrounding chunks) should update. - -// TURFS - -/turf - var/image/obscured - -/turf/proc/visibilityChanged() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - -/obj/structure/machinery/door/poddoor/shutters/open() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - . = ..() - - -/obj/structure/machinery/door/poddoor/shutters/close() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - . = ..() - - -/obj/structure/machinery/door/poddoor/shutters/Destroy() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - . = ..() -// STRUCTURES - -/obj/structure/Destroy(force) - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - . = ..() - -/obj/structure/Initialize(mapload, ...) - . = ..() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - -// EFFECTS - -/obj/effect/Destroy() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - . = ..() - -/obj/effect/Initialize(mapload, ...) - . = ..() - if(z && SSatoms.initialized != INITIALIZATION_INSSATOMS) - cameranet.updateVisibility(src) - - - -// ROBOT MOVEMENT - -// Update the portable camera everytime the Robot moves. -// This might be laggy, comment it out if there are problems. -/mob/living/silicon/robot/var/updating = 0 - -/mob/living/silicon/robot/Move() - var/oldLoc = src.loc - . = ..() - if(.) - if(src.camera && src.camera.network.len) - if(!updating) - updating = 1 - spawn(BORG_CAMERA_BUFFER) - if(oldLoc != src.loc) - cameranet.updatePortableCamera(src.camera) - updating = 0 - -/mob/living/carbon/human/var/updating = 0 - -/mob/living/carbon/human/Move(NewLoc, direction) - var/oldLoc = src.loc - . = ..() - if (.) - for (var/obj/item/clothing/head/helmet/marine/H in src) - if (!H.camera || !H.camera.network.len) - continue - if (updating) - continue - updating = TRUE - spawn(BORG_CAMERA_BUFFER) - if (oldLoc != loc) - cameranet.updatePortableCamera(H.camera) - updating = FALSE - -// CAMERA - -// An addition to deactivate which removes/adds the camera from the chunk list based on if it works or not. - -/obj/structure/machinery/camera/toggle_cam_status(mob/user, silent) - ..() - if(can_use()) - cameranet.addCamera(src) - else - set_light(0) - cameranet.removeCamera(src) - -/obj/structure/machinery/camera/Initialize() - . = ..() - cameranet.cameras += src //Camera must be added to global list of all cameras no matter what... - var/list/open_networks = difflist(network,RESTRICTED_CAMERA_NETWORKS) //...but if all of camera's networks are restricted, it only works for specific camera consoles. - if(open_networks.len) //If there is at least one open network, chunk is available for AI usage. - cameranet.addCamera(src) - -/obj/structure/machinery/camera/Destroy() - cameranet.cameras -= src - var/list/open_networks = difflist(network,RESTRICTED_CAMERA_NETWORKS) - if(open_networks.len) - cameranet.removeCamera(src) - . = ..() - -//#undef BORG_CAMERA_BUFFER diff --git a/code/modules/mob/living/silicon/ai/life.dm b/code/modules/mob/living/silicon/ai/life.dm deleted file mode 100644 index 7b0ee6869e..0000000000 --- a/code/modules/mob/living/silicon/ai/life.dm +++ /dev/null @@ -1,179 +0,0 @@ -/mob/living/silicon/ai/Life(delta_time) - if (src.stat == 2) - return - else //I'm not removing that shitton of tabs, unneeded as they are. -- Urist - //Being dead doesn't mean your temperature never changes - var/turf/T = get_turf(src) - - if (src.stat!=0) - src.cameraFollow = null - src.reset_view(null) - src.unset_interaction() - - src.updatehealth() - - if (src.malfhack) - if (src.malfhack.aidisabled) - to_chat(src, SPAN_DANGER("ERROR: APC access disabled, hack attempt canceled.")) - src.malfhacking = 0 - src.malfhack = null - - - if (health <= HEALTH_THRESHOLD_DEAD) - death() - return - - if (interactee) - interactee.check_eye(src) - - // Handle power damage (oxy) - if(src:aiRestorePowerRoutine != 0) - // Lost power - apply_damage(1, OXY) - else - // Gain Power - apply_damage(-1, OXY) - - //stage = 1 - //if (isRemoteControlling(src)) // Are we not sure what we are? - var/blind = 0 - //stage = 2 - var/area/loc = null - if (istype(T, /turf)) - //stage = 3 - forceMove(T.loc) - if (istype(loc, /area)) - //stage = 4 - if (!loc.power_equip && !istype(src.loc,/obj/item)) - //stage = 5 - blind = 1 - - if (!blind) //lol? if(!blind) #if(src.blind.layer) <--something here is clearly wrong :P - //I'll get back to this when I find out how this is -supposed- to work ~Carn //removed this shit since it was confusing as all hell --39kk9t - //stage = 4.5 - src.sight |= SEE_TURFS - src.sight |= SEE_MOBS - src.sight |= SEE_OBJS - src.see_in_dark = 8 - src.see_invisible = SEE_INVISIBLE_LEVEL_TWO - - - //Congratulations! You've found a way for AI's to run without using power! - //Todo: Without snowflaking up master_controller procs find a way to make AI use_power but only when APC's clear the area usage the tick prior - // since mobs are in master_controller before machinery. We also have to do it in a manner where we don't reset the entire area's need to update - // the power usage. - // - // We can probably create a new machine that resides inside of the AI contents that uses power using the idle_usage of 1000 and nothing else and - // be fine. -/* - var/area/home = get_area(src) - if(!home) return//something to do with malf fucking things up I guess. <-- aisat is gone. is this still necessary? ~Carn - if(home.powered(EQUIP)) - home.use_power(1000) -*/ - - if (src:aiRestorePowerRoutine==2) - to_chat(src, "Alert cancelled. Power has been restored without our assistance.") - src:aiRestorePowerRoutine = 0 - clear_fullscreen("blind") - return - else if (src:aiRestorePowerRoutine==3) - to_chat(src, "Alert cancelled. Power has been restored.") - src:aiRestorePowerRoutine = 0 - clear_fullscreen("blind") - return - else - - //stage = 6 - overlay_fullscreen("blind", /atom/movable/screen/fullscreen/blind) - src.sight = src.sight&~SEE_TURFS - src.sight = src.sight&~SEE_MOBS - src.sight = src.sight&~SEE_OBJS - src.see_in_dark = 0 - src.see_invisible = SEE_INVISIBLE_LIVING - - if (((!loc.power_equip) || istype(T, /turf/open/space)) && !istype(src.loc,/obj/item)) - if (src:aiRestorePowerRoutine==0) - src:aiRestorePowerRoutine = 1 - - to_chat(src, "You've lost power!") - //src.clear_supplied_laws() // Don't reset our laws. - //var/time = time2text(world.realtime,"hh:mm:ss") - //lawchanges.Add("[time] : [src.name]'s noncore laws have been reset due to power failure") - spawn(20) - to_chat(src, "Backup battery online. Scanners, camera, and radio interface offline. Beginning fault-detection.") - sleep(50) - if (loc.power_equip) - if (!istype(T, /turf/open/space)) - to_chat(src, "Alert cancelled. Power has been restored without our assistance.") - src:aiRestorePowerRoutine = 0 - clear_fullscreen("blind") - return - to_chat(src, "Fault confirmed: missing external power. Shutting down main control system to save power.") - sleep(20) - to_chat(src, "Emergency control system online. Verifying connection to power network.") - sleep(50) - if (istype(T, /turf/open/space)) - to_chat(src, "Unable to verify! No power connection detected!") - src:aiRestorePowerRoutine = 2 - return - to_chat(src, "Connection verified. Searching for APC in power network.") - sleep(50) - var/obj/structure/machinery/power/apc/theAPC = null -/* - for (var/something in loc) - if (istype(something, /obj/structure/machinery/power/apc)) - if (!(something:stat & BROKEN)) - theAPC = something - break -*/ - var/PRP //like ERP with the code, at least this stuff is no more 4x sametext - for (PRP=1, PRP<=4, PRP++) - var/area/AIarea = get_area(src) - for (var/obj/structure/machinery/power/apc/APC in AIarea) - if (!(APC.stat & BROKEN)) - theAPC = APC - break - if (!theAPC) - switch(PRP) - if (1) to_chat(src, "Unable to locate APC!") - else to_chat(src, "Lost connection with the APC!") - src:aiRestorePowerRoutine = 2 - return - if (loc.power_equip) - if (!istype(T, /turf/open/space)) - to_chat(src, "Alert cancelled. Power has been restored without our assistance.") - src:aiRestorePowerRoutine = 0 - clear_fullscreen("blind") - return - switch(PRP) - if (1) to_chat(src, "APC located. Optimizing route to APC to avoid needless power waste.") - if (2) to_chat(src, "Best route identified. Hacking offline APC power port.") - if (3) to_chat(src, "Power port upload access confirmed. Loading control program into APC power port software.") - if (4) - to_chat(src, "Transfer complete. Forcing APC to execute program.") - sleep(50) - to_chat(src, "Receiving control information from APC.") - sleep(2) - //bring up APC dialog - theAPC.attack_remote(src) - src:aiRestorePowerRoutine = 3 - to_chat(src, "Here are your current laws:") - src.show_laws() - sleep(50) - theAPC = null - - -/mob/living/silicon/ai/updatehealth() - if(status_flags & GODMODE) - health = 100 - set_stat(CONSCIOUS) - else - if(fire_res_on_core) - health = 100 - getOxyLoss() - getToxLoss() - getBruteLoss() - else - health = 100 - getOxyLoss() - getToxLoss() - getFireLoss() - getBruteLoss() - -/mob/living/silicon/ai/rejuvenate() - ..() - add_ai_verbs(src) diff --git a/code/modules/mob/living/silicon/ai/login.dm b/code/modules/mob/living/silicon/ai/login.dm deleted file mode 100644 index 91bcd76b2e..0000000000 --- a/code/modules/mob/living/silicon/ai/login.dm +++ /dev/null @@ -1,10 +0,0 @@ -/mob/living/silicon/ai/Login() //ThisIsDumb(TM) TODO: tidy this up �_� ~Carn - ..() - regenerate_icons() - - if(stat != DEAD) - for(var/obj/structure/machinery/ai_status_display/O in machines) //change status - O.mode = 1 - O.emotion = "Neutral" - src.view_core() - return diff --git a/code/modules/mob/living/silicon/ai/logout.dm b/code/modules/mob/living/silicon/ai/logout.dm deleted file mode 100644 index efc03f575e..0000000000 --- a/code/modules/mob/living/silicon/ai/logout.dm +++ /dev/null @@ -1,10 +0,0 @@ -/mob/living/silicon/ai/Logout() - ..() - for(var/obj/structure/machinery/ai_status_display/O in machines) //change status - O.mode = 0 - if(!isturf(loc)) - if (client) - client.eye = loc - client.perspective = EYE_PERSPECTIVE - src.view_core() - return diff --git a/code/modules/mob/living/silicon/ai/say.dm b/code/modules/mob/living/silicon/ai/say.dm deleted file mode 100644 index 0f8684063a..0000000000 --- a/code/modules/mob/living/silicon/ai/say.dm +++ /dev/null @@ -1,5 +0,0 @@ -/mob/living/silicon/ai/say(message) - if(parent && istype(parent) && parent.stat != 2) - return parent.say(message) - //If there is a defined "parent" AI, it is actually an AI, and it is alive, anything the AI tries to say is said by the parent instead. - return ..(message) diff --git a/code/modules/mob/living/silicon/alarm.dm b/code/modules/mob/living/silicon/alarm.dm deleted file mode 100644 index c5e0081b98..0000000000 --- a/code/modules/mob/living/silicon/alarm.dm +++ /dev/null @@ -1,111 +0,0 @@ -/datum/alarm - var/area/area //the area associated with the alarm. Used to identify the alarm - var/list/sources //list of things triggering the alarm. Used to determine when the alarm should be cleared. - var/list/cameras //list of cameras that can be switched to, if the player has that capability. - -/datum/alarm/New(area/A, list/sourcelist=list(), list/cameralist=list()) - area = A - sources = sourcelist - cameras = cameralist - -/mob/living/silicon - var/alarms = list("Motion"=list(), "Fire"=list(), "Atmosphere"=list(), "Power"=list(), "Camera"=list()) //each sublist stores alarms keyed by the area name - var/list/alarms_to_show = list() - var/list/alarms_to_clear = list() - var/list/alarm_types_show = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) - var/list/alarm_types_clear = list("Motion" = 0, "Fire" = 0, "Atmosphere" = 0, "Power" = 0, "Camera" = 0) - -/mob/living/silicon/proc/triggerAlarm(class, area/A, list/cameralist, source) - var/list/alarmlist = alarms[class] - - //see if there is already an alarm of this class for this area - if (A.name in alarmlist) - var/datum/alarm/existing = alarmlist[A.name] - existing.sources += source - existing.cameras |= cameralist - else - alarmlist[A.name] = new /datum/alarm(A, list(source), cameralist) - -/mob/living/silicon/proc/cancelAlarm(class, area/A as area, source) - var/cleared = 0 - var/list/alarmlist = alarms[class] - - if (A.name in alarmlist) - var/datum/alarm/alarm = alarmlist[A.name] - alarm.sources -= source - - if (!(alarm.sources.len)) - cleared = 1 - alarmlist -= A.name - - return !cleared - -/mob/living/silicon/proc/queueAlarm(message, type, incoming = 1) - var/in_cooldown = (alarms_to_show.len > 0 || alarms_to_clear.len > 0) - if(incoming) - alarms_to_show += message - alarm_types_show[type]++ - else - alarms_to_clear += message - alarm_types_clear[type]++ - - if(!in_cooldown) - spawn(10 * 10) // 10 seconds - - if(alarms_to_show.len < 5) - for(var/msg in alarms_to_show) - to_chat(src, msg) - else if(alarms_to_show.len) - - var/msg = "--- " - - if(alarm_types_show["Motion"]) - msg += "MOTION: [alarm_types_show["Motion"]] alarms detected. - " - - if(alarm_types_show["Fire"]) - msg += "FIRE: [alarm_types_show["Fire"]] alarms detected. - " - - if(alarm_types_show["Atmosphere"]) - msg += "ATMOSPHERE: [alarm_types_show["Atmosphere"]] alarms detected. - " - - if(alarm_types_show["Power"]) - msg += "POWER: [alarm_types_show["Power"]] alarms detected. - " - - if(alarm_types_show["Camera"]) - msg += "CAMERA: [alarm_types_show["Power"]] alarms detected. - " - - msg += "\[Show Alerts\]" - src << msg - - if(alarms_to_clear.len < 3) - for(var/msg in alarms_to_clear) - src << msg - - else if(alarms_to_clear.len) - var/msg = "--- " - - if(alarm_types_clear["Motion"]) - msg += "MOTION: [alarm_types_clear["Motion"]] alarms cleared. - " - - if(alarm_types_clear["Fire"]) - msg += "FIRE: [alarm_types_clear["Fire"]] alarms cleared. - " - - if(alarm_types_clear["Atmosphere"]) - msg += "ATMOSPHERE: [alarm_types_clear["Atmosphere"]] alarms cleared. - " - - if(alarm_types_clear["Power"]) - msg += "POWER: [alarm_types_clear["Power"]] alarms cleared. - " - - if(alarm_types_show["Camera"]) - msg += "CAMERA: [alarm_types_show["Power"]] alarms detected. - " - - msg += "\[Show Alerts\]" - src << msg - - - alarms_to_show = list() - alarms_to_clear = list() - for(var/i = 1; i < alarm_types_show.len; i++) - alarm_types_show[i] = 0 - for(var/i = 1; i < alarm_types_clear.len; i++) - alarm_types_clear[i] = 0 diff --git a/code/modules/mob/living/silicon/death.dm b/code/modules/mob/living/silicon/death.dm index ed2f01c725..0b3b371083 100644 --- a/code/modules/mob/living/silicon/death.dm +++ b/code/modules/mob/living/silicon/death.dm @@ -16,7 +16,4 @@ /mob/living/silicon/death(cause, gibbed, deathmessage) SSmob.living_misc_mobs -= src - if(in_contents_of(/obj/structure/machinery/recharge_station))//exit the recharge station - var/obj/structure/machinery/recharge_station/RC = loc - RC.go_out() - return ..(cause, gibbed, deathmessage) + return ..() diff --git a/code/modules/mob/living/silicon/decoy/decoy.dm b/code/modules/mob/living/silicon/decoy/decoy.dm index 5b41078eea..3c2d65bd41 100644 --- a/code/modules/mob/living/silicon/decoy/decoy.dm +++ b/code/modules/mob/living/silicon/decoy/decoy.dm @@ -20,14 +20,14 @@ name = MAIN_AI_SYSTEM desc = "This is the artificial intelligence system for the [MAIN_SHIP_NAME]. Like many other military-grade AI systems, this one was manufactured by Weyland-Yutani." ai_headset = new(src) - ai_mob_list += src + GLOB.ai_mob_list += src real_name = MAIN_AI_SYSTEM ADD_TRAIT(src, TRAIT_IMMOBILIZED, TRAIT_SOURCE_INHERENT) /mob/living/silicon/decoy/ship_ai/Destroy() QDEL_NULL(ai_headset) #ifdef UNIT_TESTS - ai_mob_list -= src // Or should we always remove them? + GLOB.ai_mob_list -= src // Or should we always remove them? #endif return ..() @@ -47,6 +47,9 @@ /mob/living/silicon/decoy/death(cause, gibbed, deathmessage = "sparks up and falls silent...") if(stat == DEAD) return FALSE + + //ARES sends out last messages + ares_final_words() icon_state = "hydra-off" var/datum/cause_data/cause_data = create_cause_data("rapid unscheduled disassembly", src, src) addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(explosion), loc, -1, 0, 8, 12, TRUE, FALSE, 0, cause_data), 2 SECONDS) @@ -76,7 +79,7 @@ if(length(message) >= 2) var/channel_prefix = copytext(message, 1 ,3) - channel_prefix = department_radio_keys[channel_prefix] + channel_prefix = GLOB.department_radio_keys[channel_prefix] if(channel_prefix) return channel_prefix diff --git a/code/modules/mob/living/silicon/robot/analyzer.dm b/code/modules/mob/living/silicon/robot/analyzer.dm deleted file mode 100644 index fd88125fc0..0000000000 --- a/code/modules/mob/living/silicon/robot/analyzer.dm +++ /dev/null @@ -1,77 +0,0 @@ -// -//Robotic Component Analyser, basically a health analyser for robots -// -/obj/item/device/robotanalyzer - name = "cyborg analyzer" - icon_state = "robotanalyzer" - item_state = "analyzer" - desc = "A hand-held scanner able to diagnose robotic injuries." - flags_atom = FPRINT|CONDUCT - flags_equip_slot = SLOT_WAIST - throwforce = 3 - w_class = SIZE_SMALL - throw_speed = SPEED_VERY_FAST - throw_range = 10 - matter = list("metal" = 200) - - var/mode = 1; - -/obj/item/device/robotanalyzer/attack(mob/living/M as mob, mob/living/user as mob) - if((user.getBrainLoss() >= 60) && prob(50)) - to_chat(user, (SPAN_DANGER("You try to analyze the floor's vitals!"))) - for(var/mob/O in viewers(M, null)) - O.show_message(text(SPAN_DANGER("[user] has analyzed the floor's vitals!")), 1) - user.show_message(text(SPAN_NOTICE("Analyzing Results for The floor:\n\t Overall Status: Healthy")), 1) - user.show_message(text(SPAN_NOTICE("\t Damage Specifics: [0]-[0]-[0]-[0]")), 1) - user.show_message(SPAN_NOTICE("Key: Suffocation/Toxin/Burns/Brute"), 1) - user.show_message(SPAN_NOTICE("Body Temperature: ???"), 1) - return - if(!(istype(user, /mob/living/carbon/human) || SSticker) && SSticker.mode.name != "monkey") - to_chat(user, SPAN_DANGER("You don't have the dexterity to do this!")) - return - if(!isrobot(M) && !issynth(M)) - to_chat(user, SPAN_DANGER("You can't analyze non-robotic things!")) - return - - user.visible_message(SPAN_NOTICE("[user] has analyzed [M]'s components."), SPAN_NOTICE("You have analyzed [M]'s components.")) - var/BU = M.getFireLoss() > 50 ? "[M.getFireLoss()]" : M.getFireLoss() - var/BR = M.getBruteLoss() > 50 ? "[M.getBruteLoss()]" : M.getBruteLoss() - user.show_message(SPAN_NOTICE("Analyzing Results for [M]:\n\t Overall Status: [M.stat > 1 ? "fully disabled" : "[M.health - M.halloss]% functional"]")) - user.show_message("\t Key: Electronics/Brute", 1) - user.show_message("\t Damage Specifics: [BU] - [BR]") - if(M.tod && M.stat == DEAD) - user.show_message(SPAN_NOTICE("Time of Disable: [M.tod]")) - - if (isrobot(M)) - var/mob/living/silicon/robot/H = M - var/list/damaged = H.get_damaged_components(1,1,1) - user.show_message(SPAN_NOTICE("Localized Damage:"),1) - if(length(damaged)>0) - for(var/datum/robot_component/org in damaged) - var/organ_name = capitalize(org.name) - var/organ_destroyed_msg = (org.installed == -1) ? "DESTROYED ":"" - var/organ_elec_dmg_msg = (org.electronics_damage > 0) ? "[org.electronics_damage]":0 - var/organ_brute_dmg_msg = (org.brute_damage > 0) ? "[org.brute_damage]":0 - var/organ_toggled_msg = (org.toggled) ? "Toggled ON" : "Toggled OFF" - var/organ_powered_msg = (org.powered) ? "Power ON" : "Power OFF" - user.show_message(SPAN_NOTICE("\t [organ_name]: [organ_destroyed_msg][organ_elec_dmg_msg] - [organ_brute_dmg_msg] - [organ_toggled_msg] - [organ_powered_msg]"), 1) - else - user.show_message(SPAN_NOTICE("\t Components are OK."),1) - - if (issynth(M)) - var/mob/living/carbon/human/H = M - var/list/damaged = H.get_damaged_limbs(1,1) - user.show_message(SPAN_NOTICE("Localized Damage, Brute/Electronics:"),1) - if(length(damaged)>0) - for(var/obj/limb/org in damaged) - var/msg_display_name = "[capitalize(org.display_name)]" // Here for now until we purge this useless shitcode - var/msg_brute_dmg = "[(org.brute_dam > 0) ? SPAN_DANGER("[org.brute_dam]") : "0"]" - var/msg_burn_dmg = "[(org.brute_dam > 0) ? SPAN_DANGER("[org.brute_dam]") : "0"]" - user.show_message(SPAN_NOTICE("\t [msg_display_name]: [msg_brute_dmg] - [msg_burn_dmg]"), 1) - else - user.show_message(SPAN_NOTICE("\t Components are OK."),1) - - user.show_message(SPAN_NOTICE("Operating Temperature: [M.bodytemperature-T0C]°C ([M.bodytemperature*1.8-459.67]°F)"), 1) - - src.add_fingerprint(user) - return diff --git a/code/modules/mob/living/silicon/robot/component.dm b/code/modules/mob/living/silicon/robot/component.dm deleted file mode 100644 index 1baec99bb0..0000000000 --- a/code/modules/mob/living/silicon/robot/component.dm +++ /dev/null @@ -1,257 +0,0 @@ -// TODO: remove the robot.mmi and robot.cell variables and completely rely on the robot component system - -/datum/robot_component/var/name -/datum/robot_component/var/installed = 0 -/datum/robot_component/var/powered = 0 -/datum/robot_component/var/toggled = 1 -/datum/robot_component/var/brute_damage = 0 -/datum/robot_component/var/electronics_damage = 0 -/datum/robot_component/var/idle_usage = 0 // Amount of power used every MC tick. In joules. -/datum/robot_component/var/active_usage = 0 // Amount of power used for every action. Actions are module-specific. Actuator for each tile moved, etc. -/datum/robot_component/var/max_damage = 30 // HP of this component. -/datum/robot_component/var/mob/living/silicon/robot/owner - -// The actual device object that has to be installed for this. -/datum/robot_component/var/external_type = null - -// The wrapped device(e.g. radio), only set if external_type isn't null -/datum/robot_component/var/obj/item/wrapped = null - -/datum/robot_component/New(mob/living/silicon/robot/R) - src.owner = R - -/datum/robot_component/Destroy(force, ...) - . = ..() - owner = null - QDEL_NULL(wrapped) - -/datum/robot_component/proc/install() -/datum/robot_component/proc/uninstall() - -/datum/robot_component/proc/destroy() - var/brokenstate = "broken" // Generic icon - if (istype(wrapped, /obj/item/robot_parts/robot_component)) - var/obj/item/robot_parts/robot_component/comp = wrapped - brokenstate = comp.icon_state_broken - if(wrapped) - qdel(wrapped) - - - wrapped = new/obj/item/broken_device - wrapped.icon_state = brokenstate // Module-specific broken icons! Yay! - - // The thing itself isn't there anymore, but some fried remains are. - installed = -1 - uninstall() - -/datum/robot_component/proc/take_damage(brute, electronics, sharp, edge) - if(installed != 1) return - - brute_damage += brute - electronics_damage += electronics - - // if(brute_damage + electronics_damage >= max_damage) destroy() - -/datum/robot_component/proc/heal_damage(brute, electronics) - if(installed != 1) - // If it's not installed, can't repair it. - return 0 - - brute_damage = max(0, brute_damage - brute) - electronics_damage = max(0, electronics_damage - electronics) - -/datum/robot_component/proc/is_powered() - return (installed == 1) && (brute_damage + electronics_damage < max_damage) && (!idle_usage || powered) - -/datum/robot_component/proc/update_power_state() - if(toggled == 0) - powered = 0 - return - if(owner.cell && owner.cell.charge >= idle_usage) - owner.cell_use_power(idle_usage) - powered = 1 - else - powered = 0 - - -// ARMOUR -// Protects the cyborg from damage. Usually first module to be hit -// No power usage -/datum/robot_component/armour - name = "armour plating" - external_type = /obj/item/robot_parts/robot_component/armour - max_damage = 60 - - -// ACTUATOR -// Enables movement. -// Uses no power when idle. Uses 200J for each tile the cyborg moves. -/datum/robot_component/actuator - name = "actuator" - idle_usage = 0 - active_usage = 200 - external_type = /obj/item/robot_parts/robot_component/actuator - max_damage = 50 - - -//A fixed and much cleaner implementation of /tg/'s special snowflake code. -/datum/robot_component/actuator/is_powered() - return (installed == 1) && (brute_damage + electronics_damage < max_damage) - - -// POWER CELL -// Stores power (how unexpected..) -// No power usage -/datum/robot_component/cell - name = "power cell" - max_damage = 50 - -/datum/robot_component/cell/destroy() - ..() - owner.cell = null - - -// RADIO -// Enables radio communications -// Uses no power when idle. Uses 10J for each received radio message, 50 for each transmitted message. -/datum/robot_component/radio - name = "radio" - external_type = /obj/item/robot_parts/robot_component/radio - idle_usage = 15 //it's not actually possible to tell when we receive a message over our radio, so just use 10W every tick for passive listening - active_usage = 75 //transmit power - max_damage = 40 - - -// BINARY RADIO -// Enables binary communications with other cyborgs/AIs -// Uses no power when idle. Uses 10J for each received radio message, 50 for each transmitted message -/datum/robot_component/binary_communication - name = "binary communication device" - external_type = /obj/item/robot_parts/robot_component/binary_communication_device - idle_usage = 5 - active_usage = 25 - max_damage = 30 - - -// CAMERA -// Enables cyborg vision. Can also be remotely accessed via consoles. -// Uses 10J constantly -/datum/robot_component/camera - name = "camera" - external_type = /obj/item/robot_parts/robot_component/camera - idle_usage = 10 - max_damage = 40 - var/obj/structure/machinery/camera/camera - -/datum/robot_component/camera/New(mob/living/silicon/robot/R) - ..() - camera = R.camera - -/datum/robot_component/camera/update_power_state() - ..() - if (camera) - //check if camera component was deactivated - if (!powered && camera.status != powered) - camera.kick_viewers() - camera.status = powered - -/datum/robot_component/camera/install() - if (camera) - camera.status = 1 - -/datum/robot_component/camera/uninstall() - if (camera) - camera.status = 0 - camera.kick_viewers() - -/datum/robot_component/camera/destroy() - if (camera) - camera.status = 0 - camera.kick_viewers() - -// SELF DIAGNOSIS MODULE -// Analyses cyborg's modules, providing damage readouts and basic information -// Uses 1kJ burst when analysis is done -/datum/robot_component/diagnosis_unit - name = "self-diagnosis unit" - active_usage = 1000 - external_type = /obj/item/robot_parts/robot_component/diagnosis_unit - max_damage = 30 - - - - -// HELPER STUFF - - - -// Initializes cyborg's components. Technically, adds default set of components to new borgs -/mob/living/silicon/robot/proc/initialize_components() - components["actuator"] = new/datum/robot_component/actuator(src) - components["radio"] = new/datum/robot_component/radio(src) - components["power cell"] = new/datum/robot_component/cell(src) - components["diagnosis unit"] = new/datum/robot_component/diagnosis_unit(src) - components["camera"] = new/datum/robot_component/camera(src) - components["comms"] = new/datum/robot_component/binary_communication(src) - components["armour"] = new/datum/robot_component/armour(src) - -// Checks if component is functioning -/mob/living/silicon/robot/proc/is_component_functioning(module_name) - var/datum/robot_component/C = components[module_name] - return C && C.installed == 1 && C.toggled && C.is_powered() - -// Returns component by it's string name -/mob/living/silicon/robot/proc/get_component(component_name) - var/datum/robot_component/C = components[component_name] - return C - - - -// COMPONENT OBJECTS - - - -// Component Objects -// These objects are visual representation of modules - -/obj/item/broken_device - name = "broken component" - icon = 'icons/obj/items/robot_component.dmi' - icon_state = "broken" - -/obj/item/robot_parts/robot_component - icon = 'icons/obj/items/robot_component.dmi' - icon_state = "working" - var/brute = 0 - var/burn = 0 - var/icon_state_broken = "broken" - -/obj/item/robot_parts/robot_component/binary_communication_device - name = "binary communication device" - icon_state = "binradio" - icon_state_broken = "binradio_broken" - -/obj/item/robot_parts/robot_component/actuator - name = "actuator" - icon_state = "motor" - icon_state_broken = "motor_broken" - -/obj/item/robot_parts/robot_component/armour - name = "armour plating" - icon_state = "armor" - icon_state_broken = "armor_broken" - -/obj/item/robot_parts/robot_component/camera - name = "camera" - icon_state = "camera" - icon_state_broken = "camera_broken" - -/obj/item/robot_parts/robot_component/diagnosis_unit - name = "diagnosis unit" - icon_state = "analyser" - icon_state_broken = "analyser_broken" - -/obj/item/robot_parts/robot_component/radio - name = "radio" - icon_state = "radio" - icon_state_broken = "radio_broken" diff --git a/code/modules/mob/living/silicon/robot/death.dm b/code/modules/mob/living/silicon/robot/death.dm deleted file mode 100644 index d664f5be87..0000000000 --- a/code/modules/mob/living/silicon/robot/death.dm +++ /dev/null @@ -1,16 +0,0 @@ -/mob/living/silicon/robot/dust() - //Delete the MMI first so that it won't go popping out. - QDEL_NULL(mmi) - ..() - -/mob/living/silicon/robot/death(cause, gibbed) - if(camera) - camera.status = 0 - if(module) - var/obj/item/device/gripper/G = locate(/obj/item/device/gripper) in module - if(G) G.drop_item() - remove_robot_verbs() - ..(gibbed,"is destroyed!") - playsound(src.loc, 'sound/effects/metal_crash.ogg', 100) - robogibs(src) - qdel(src) diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm deleted file mode 100644 index 1fa07ae0bc..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ /dev/null @@ -1,258 +0,0 @@ -/mob/living/silicon/robot/drone - name = "drone" - real_name = "drone" - icon = 'icons/mob/robots.dmi' - icon_state = "repairbot" - maxHealth = 35 - health = 35 - universal_speak = 0 - universal_understand = 1 - gender = NEUTER - braintype = "Robot" - lawupdate = 0 - density = TRUE - req_access = list(ACCESS_MARINE_ENGINEERING, ACCESS_MARINE_RESEARCH) - integrated_light_power = 2 - local_transmit = 1 - layer = ABOVE_LYING_MOB_LAYER - var/nicknumber = 0 - - // We need to keep track of a few module items so we don't need to do list operations - // every time we need them. These get set in Initialize() after the module is chosen. - var/obj/item/stack/sheet/metal/cyborg/stack_metal = null - var/obj/item/stack/sheet/wood/cyborg/stack_wood = null - var/obj/item/stack/sheet/glass/cyborg/stack_glass = null - var/obj/item/stack/sheet/mineral/plastic/cyborg/stack_plastic = null - var/obj/item/device/matter_decompiler/decompiler = null - - //Used for self-mailing. - var/mail_destination = "" - - holder_type = /obj/item/holder/drone - -/mob/living/silicon/robot/drone/Initialize() - nicknumber = rand(100,999) - - . = ..() - - - add_verb(src, /mob/living/proc/hide) - - if(camera && ("Robots" in camera.network)) - camera.network.Add("Engineering") - - //They are unable to be upgraded, so let's give them a bit of a better battery. - cell.maxcharge = 50000 - cell.charge = 50000 - - // NO BRAIN. - mmi = null - - //We need to screw with their HP a bit. They have around one fifth as much HP as a full borg. - for(var/V in components) if(V != "power cell") - var/datum/robot_component/C = components[V] - C.max_damage = 10 - - remove_verb(src, list( - /mob/living/silicon/robot/verb/Namepick, - /mob/living/silicon/robot/drone/verb/set_mail_tag, // we dont have mail tubes - )) - add_verb(src, list( - /mob/living/silicon/robot/drone/verb/Drone_name_pick, - /mob/living/silicon/robot/drone/verb/Power_up, - )) - - module = new /obj/item/circuitboard/robot_module/drone(src) - - //Grab stacks. - stack_metal = locate(/obj/item/stack/sheet/metal/cyborg) in src.module - stack_wood = locate(/obj/item/stack/sheet/wood/cyborg) in src.module - stack_glass = locate(/obj/item/stack/sheet/glass/cyborg) in src.module - stack_plastic = locate(/obj/item/stack/sheet/mineral/plastic/cyborg) in src.module - - //Grab decompiler. - decompiler = locate(/obj/item/device/matter_decompiler) in src.module - - //Some tidying-up. - flavor_text = "This is an XP-45 Engineering Drone, one of the many fancy things that come out of the Weyland-Yutani Research Department. It's designed to assist both ship repairs as well as ground missions. Shiny!" - update_icons() - -/mob/living/silicon/robot/drone/initialize_pass_flags(datum/pass_flags_container/PF) - ..() - if (PF) - PF.flags_pass = PASS_MOB_THRU|PASS_FLAGS_CRAWLER - -/mob/living/silicon/robot/drone/init() - connected_ai = null - - aiCamera = new/obj/item/device/camera/siliconcam/drone_camera(src) - playsound(src.loc, 'sound/machines/twobeep.ogg', 25, 0) - -/mob/living/silicon/robot/drone/Destroy() - QDEL_NULL(aiCamera) - stack_metal = null - stack_wood = null - stack_glass = null - stack_plastic = null - decompiler = null - return ..() - -//Redefining some robot procs... -/mob/living/silicon/robot/drone/updatename() - var/new_name = "XP-45 Engineering Drone ([nicknumber])" - change_real_name(src, new_name) - -/mob/living/silicon/robot/drone/update_icons() - - overlays.Cut() - if(stat == 0) - overlays += "eyes-[icon_state]" - else - overlays -= "eyes" - -/mob/living/silicon/robot/drone/choose_icon() - return - -/mob/living/silicon/robot/drone/pick_module() - return - -//Drones cannot be upgraded with borg modules so we need to catch some items before they get used in ..(). -/mob/living/silicon/robot/drone/attackby(obj/item/W, mob/living/user) - - if(istype(W, /obj/item/robot/upgrade/)) - to_chat(user, SPAN_DANGER("The maintenance drone chassis not compatible with \the [W].")) - return - - else if (HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) - to_chat(user, "The machine is hermetically sealed. You can't open the case.") - return - - ..() - -//DRONE LIFE/DEATH - -//For some goddamn reason robots have this hardcoded. Redefining it for our fragile friends here. -/mob/living/silicon/robot/drone/updatehealth() - if(status_flags & GODMODE) - health = health - set_stat(CONSCIOUS) - return - health = health - (getBruteLoss() + getFireLoss()) - return - -//Easiest to check this here, then check again in the robot proc. -//Standard robots use config for crit, which is somewhat excessive for these guys. -//Drones killed by damage will gib. -/mob/living/silicon/robot/drone/handle_regular_status_updates() - - if(health <= -35 && src.stat != 2) - timeofdeath = world.time - death(last_damage_data) //Possibly redundant, having trouble making death() cooperate. - gib(last_damage_data) - return - ..() - -//DRONE MOVEMENT. -/mob/living/silicon/robot/drone/Process_Spaceslipping(prob_slip) - //TODO: Consider making a magboot item for drones to equip. ~Z - return 0 - -//CONSOLE PROCS -/mob/living/silicon/robot/drone/proc/shut_down() - if(stat != 2) - to_chat(src, SPAN_DANGER("You feel a system kill order percolate through your tiny brain, and you obediently destroy yourself.")) - death() - -//Reboot procs. - -/mob/living/silicon/robot/drone/proc/request_player() - for(var/mob/dead/observer/O in GLOB.observer_list) - if(jobban_isbanned(O, "Cyborg")) - continue - -/mob/living/silicon/robot/drone/proc/question(client/C) - spawn(0) - if(!C || jobban_isbanned(C,"Cyborg")) return - var/response = alert(C, "Someone is attempting to reboot a maintenance drone. Would you like to play as one?", "Maintenance drone reboot", "Yes", "No", "Never for this round.") - if(!C || ckey) - return - else if(response == "Yes") - transfer_personality(C) - -/mob/living/silicon/robot/drone/proc/transfer_personality(client/player) - - if(!player) return - player.change_view(world_view_size) - src.ckey = player.ckey - - if(player.mob && player.mob.mind) - player.mob.mind.transfer_to(src) - - lawupdate = 0 - to_chat(src, "Systems rebooted. Loading base pattern maintenance protocol... loaded.") - to_chat(src, "
        You are a maintenance drone, a tiny-brained robotic repair machine.") - to_chat(src, "You have no individual will, no personality, and no drives or urges other than your laws.") - to_chat(src, "Use :d to talk to other drones and say to speak silently to your nearby fellows.") - to_chat(src, "Remember, you are lawed against interference with the crew.") - to_chat(src, "Don't invade their worksites and don't steal their resources.") - to_chat(src, "If a crewmember has noticed you, you are probably breaking your third law.") - -/mob/living/silicon/robot/drone/Collide(atom/A) - if (!istype(A,/obj/structure/machinery/door) && \ - !istype(A,/obj/structure/machinery/recharge_station) && \ - !istype(A,/obj/structure/machinery/disposal/deliveryChute) && \ - !istype(A,/obj/structure/machinery/teleport/hub) && \ - !istype(A,/obj/effect/portal) - ) return - ..() - return - -/mob/living/silicon/robot/drone/Collided(atom/movable/AM) - return - -/mob/living/silicon/robot/drone/start_pulling(atom/movable/AM) - - if(istype(AM,/obj/item/pipe) || istype(AM,/obj/structure/disposalconstruct)) - ..() - else if(istype(AM,/obj/item)) - var/obj/item/O = AM - if(O.w_class > SIZE_SMALL) - to_chat(src, SPAN_WARNING("You are too small to pull that.")) - return - else - ..() - else - to_chat(src, SPAN_WARNING("You are too small to pull that.")) - return - -/mob/living/silicon/robot/drone/add_robot_verbs() - -/mob/living/silicon/robot/drone/remove_robot_verbs() - -/mob/living/silicon/robot/drone/verb/Drone_name_pick() - set category = "Robot Commands" - if(custom_name) - return 0 - - spawn(0) - var/newname - newname = tgui_input_list(src,"You are drone. Pick a name, no duplicates allowed.", "Drone name pick", greek_letters) - if(custom_name) - return - - for (var/mob/living/silicon/robot/drone/A in GLOB.mob_list) - if(newname == A.nicknumber) - to_chat(src, SPAN_WARNING("That identifier is taken, pick again.")) - return - - custom_name = newname - nicknumber = newname - - updatename() - update_icons() - -/mob/living/silicon/robot/drone/verb/Power_up() - set category = "Robot Commands" - if(resting) - resting = 0 - to_chat(src, SPAN_NOTICE("You begin powering up.")) diff --git a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm deleted file mode 100644 index 7909ff05f6..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm +++ /dev/null @@ -1,29 +0,0 @@ -// DRONE ABILITIES -/mob/living/silicon/robot/drone/verb/set_mail_tag() - set name = "Set Mail Tag" - set desc = "Tag yourself for delivery through the disposals system." - set category = "Drone" - - var/new_tag = tgui_input_list(usr, "Select the desired destination.", "Set Mail Tag", null, tagger_locations) - - if(!new_tag) - mail_destination = "" - return - - to_chat(src, SPAN_NOTICE(" You configure your internal beacon, tagging yourself for delivery to '[new_tag]'.")) - mail_destination = new_tag - - //Auto flush if we use this verb inside a disposal chute. - var/obj/structure/machinery/disposal/D = src.loc - if(istype(D)) - to_chat(src, SPAN_NOTICE(" \The [D] acknowledges your signal.")) - D.flush_count = D.flush_after_ticks - - return - -//Actual picking-up event. -/mob/living/silicon/robot/drone/attack_hand(mob/living/carbon/human/M as mob) - - if(M.a_intent == INTENT_HELP) - get_scooped(M) - ..() diff --git a/code/modules/mob/living/silicon/robot/drone/drone_console.dm b/code/modules/mob/living/silicon/robot/drone/drone_console.dm deleted file mode 100644 index 2be09d46da..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone_console.dm +++ /dev/null @@ -1,111 +0,0 @@ -/obj/structure/machinery/computer/drone_control - name = "Maintenance Drone Control" - desc = "Used to monitor the station's drone population and the assembler that services them." - icon = 'icons/obj/structures/machinery/computer.dmi' - icon_state = "power" - req_one_access = list(ACCESS_MARINE_ENGINEERING, ACCESS_CIVILIAN_ENGINEERING) - circuit = /obj/item/circuitboard/computer/drone_control - - //Used when pinging drones. - var/drone_call_area = "Engineering" - //Used to enable or disable drone fabrication. - var/obj/structure/machinery/drone_fabricator/dronefab - -/obj/structure/machinery/computer/drone_control/attack_remote(mob/user as mob) - return src.attack_hand(user) - -/obj/structure/machinery/computer/drone_control/attack_hand(mob/user as mob) - if(..()) - return - - if(!allowed(user)) - to_chat(user, SPAN_DANGER("Access denied.")) - return - - user.set_interaction(src) - var/dat - dat += "Maintenance Units
        " - - for(var/mob/living/silicon/robot/drone/D in GLOB.mob_list) - dat += "
        [D.real_name] ([D.stat == 2 ? "INACTIVE" : "ACTIVE"])" - dat += "
        Cell charge: [D.cell.charge]/[D.cell.maxcharge]." - dat += "
        Currently located in: [get_area(D)]." - dat += "
        Resync|Shutdown
        " - - dat += "

        Request drone presence in area: [drone_call_area] (Send ping)" - - dat += "

        Drone fabricator: " - dat += "[dronefab ? "[(dronefab.produce_drones && !(dronefab.stat & NOPOWER)) ? "ACTIVE" : "INACTIVE"]" : "FABRICATOR NOT DETECTED. (search)"]" - user << browse(dat, "window=computer;size=400x500") - onclose(user, "computer") - return - - -/obj/structure/machinery/computer/drone_control/Topic(href, href_list) - if(..()) - return - - if(!allowed(usr)) - to_chat(usr, SPAN_DANGER("Access denied.")) - return - - if ((usr.contents.Find(src) || (in_range(src, usr) && istype(src.loc, /turf))) || (isRemoteControlling(usr))) - usr.set_interaction(src) - - if (href_list["setarea"]) - - //Probably should consider using another list, but this one will do. - var/t_area = tgui_input_list(usr, "Select the area to ping.", "Set Target Area", null, tagger_locations) - - if(!t_area) - return - - drone_call_area = t_area - to_chat(usr, SPAN_NOTICE(" You set the area selector to [drone_call_area].")) - - else if (href_list["ping"]) - - to_chat(usr, SPAN_NOTICE(" You issue a maintenance request for all active drones, highlighting [drone_call_area].")) - for(var/mob/living/silicon/robot/drone/D in GLOB.mob_list) - if(D.client && D.stat == 0) - to_chat(D, "-- Maintenance drone presence requested in: [drone_call_area].") - - else if (href_list["shutdown"]) - - var/mob/living/silicon/robot/drone/D = locate(href_list["shutdown"]) - - if(D.stat != 2) - to_chat(usr, SPAN_DANGER("You issue a kill command for the unfortunate drone.")) - message_admins("[key_name_admin(usr)] issued kill order for drone [key_name_admin(D)] from control console.") - log_game("[key_name(usr)] issued kill order for [key_name(src)] from control console.") - D.shut_down() - - else if (href_list["search_fab"]) - if(dronefab) - return - - for(var/obj/structure/machinery/drone_fabricator/fab in oview(3,src)) - - if(fab.stat & NOPOWER) - continue - - dronefab = fab - to_chat(usr, SPAN_NOTICE(" Drone fabricator located.")) - return - - to_chat(usr, SPAN_DANGER("Unable to locate drone fabricator.")) - - else if (href_list["toggle_fab"]) - - if(!dronefab) - return - - if(get_dist(src,dronefab) > 3) - dronefab = null - to_chat(usr, SPAN_DANGER("Unable to locate drone fabricator.")) - return - - dronefab.produce_drones = !dronefab.produce_drones - to_chat(usr, SPAN_NOTICE(" You [dronefab.produce_drones ? "enable" : "disable"] drone production in the nearby fabricator.")) - - src.updateUsrDialog() diff --git a/code/modules/mob/living/silicon/robot/drone/drone_damage.dm b/code/modules/mob/living/silicon/robot/drone/drone_damage.dm deleted file mode 100644 index b27ebdd3c4..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone_damage.dm +++ /dev/null @@ -1,24 +0,0 @@ -//Redefining some robot procs, since drones can't be repaired and really shouldn't take component damage. -/mob/living/silicon/robot/drone/take_overall_damage(brute = 0, burn = 0, sharp = 0, used_weapon = null, limb_damage_chance = 80) - bruteloss += brute - fireloss += burn - -/mob/living/silicon/robot/drone/heal_overall_damage(brute, burn) - - bruteloss -= brute - fireloss -= burn - - if(bruteloss<0) bruteloss = 0 - if(fireloss<0) fireloss = 0 - -/mob/living/silicon/robot/drone/take_limb_damage(brute = 0, burn = 0, sharp = 0) - take_overall_damage(brute,burn) - -/mob/living/silicon/robot/drone/heal_limb_damage(brute, burn) - heal_overall_damage(brute,burn) - -/mob/living/silicon/robot/drone/getFireLoss() - return fireloss - -/mob/living/silicon/robot/drone/getBruteLoss() - return bruteloss diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm deleted file mode 100644 index bfe2a5bd7a..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ /dev/null @@ -1,83 +0,0 @@ - - -//PRETTIER TOOL LIST. -/mob/living/silicon/robot/drone/installed_modules() - - if(weapon_lock) - to_chat(src, SPAN_DANGER("Weapon lock active, unable to use modules! Count:[weaponlock_time]")) - return - - if(!module) - module = new /obj/item/circuitboard/robot_module/drone(src) - - var/dat = "Drone modules\n" - dat += {" - Activated Modules -
        - Module 1: [module_state_1 ? "[module_state_1]" : "No Module"]
        - Module 2: [module_state_2 ? "
        [module_state_2]" : "No Module"]
        - Module 3: [module_state_3 ? "
        [module_state_3]" : "No Module"]
        -
        - Installed Modules

        "} - - - var/tools = "Tools and devices
        " - var/resources = "
        Resources
        " - - for (var/O in module.modules) - - var/module_string = "" - - if (!O) - module_string += text("Resource depleted
        ") - else if(activated(O)) - module_string += text("[O]: Activated
        ") - else - module_string += text("[O]:
        Activate
        ") - - if((istype(O,/obj/item) || istype(O,/obj/item/device)) && !(istype(O,/obj/item/stack/cable_coil))) - tools += module_string - else - resources += module_string - - dat += tools - - dat += resources - - src << browse(dat, "window=robotmod") - -//Putting the decompiler here to avoid doing list checks every tick. -/mob/living/silicon/robot/drone/use_power() - - ..() - if(!src.has_power || !decompiler) - return - - //The decompiler replenishes drone stores from hoovered-up junk each tick. - for(var/type in decompiler.stored_comms) - if(decompiler.stored_comms[type] > 0) - var/obj/item/stack/sheet/stack - switch(type) - if("metal") - if(!stack_metal) - stack_metal = new /obj/item/stack/sheet/metal/cyborg(src.module) - stack_metal.amount = 1 - stack = stack_metal - if("glass") - if(!stack_glass) - stack_glass = new /obj/item/stack/sheet/glass/cyborg(src.module) - stack_glass.amount = 1 - stack = stack_glass - if("wood") - if(!stack_wood) - stack_wood = new /obj/item/stack/sheet/wood/cyborg(src.module) - stack_wood.amount = 1 - stack = stack_wood - if("plastic") - if(!stack_plastic) - stack_plastic = new /obj/item/stack/sheet/mineral/plastic/cyborg(src.module) - stack_plastic.amount = 1 - stack = stack_plastic - - stack.amount++ - decompiler.stored_comms[type]--; diff --git a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm b/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm deleted file mode 100644 index 63c0e69a98..0000000000 --- a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm +++ /dev/null @@ -1,77 +0,0 @@ -/obj/structure/machinery/drone_fabricator - name = "drone fabricator" - desc = "A large automated factory for producing maintenance drones." - - density = TRUE - anchored = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 20 - active_power_usage = 5000 - - var/drone_progress = 0 - var/produce_drones = 1 - var/time_last_drone = 500 - - icon = 'icons/obj/structures/machinery/drone_fab.dmi' - icon_state = "drone_fab_idle" - -/obj/structure/machinery/drone_fabricator/New() - ..() - start_processing() - -/obj/structure/machinery/drone_fabricator/power_change() - ..() - if (stat & NOPOWER) - icon_state = "drone_fab_nopower" - -/obj/structure/machinery/drone_fabricator/process() - - if(SSticker.current_state < GAME_STATE_PLAYING) - return - - if(stat & NOPOWER || !produce_drones) - if(icon_state != "drone_fab_nopower") icon_state = "drone_fab_nopower" - return - - if(drone_progress >= 100) - icon_state = "drone_fab_idle" - return - - icon_state = "drone_fab_active" - var/elapsed = world.time - time_last_drone - drone_progress = round((elapsed/CONFIG_GET(number/drone_build_time))*100) - - if(drone_progress >= 100) - visible_message("\The [src] voices a strident beep, indicating a drone chassis is prepared.") - -/obj/structure/machinery/drone_fabricator/get_examine_text(mob/user) - . = ..() - if(produce_drones && drone_progress >= 100 && istype(user,/mob/dead) && CONFIG_GET(flag/allow_drone_spawn) && count_drones() < CONFIG_GET(number/max_maint_drones)) - . += "
        A drone is prepared. Select 'Join As Drone' from the Ghost tab to spawn as a maintenance drone." - -/obj/structure/machinery/drone_fabricator/proc/count_drones() - var/drones = 0 - for(var/mob/living/silicon/robot/drone/D in GLOB.player_list) - if(D.key && D.client) - drones++ - return drones - -/obj/structure/machinery/drone_fabricator/proc/create_drone(client/player) - - if(stat & NOPOWER) - return - - if(!produce_drones || !CONFIG_GET(flag/allow_drone_spawn) || count_drones() >= CONFIG_GET(number/max_maint_drones)) - return - - if(!player || !istype(player.mob,/mob/dead)) - return - - visible_message("\The [src] churns and grinds as it lurches into motion, disgorging a shiny new drone after a few moments.") - flick("h_lathe_leave",src) - - time_last_drone = world.time - var/mob/living/silicon/robot/drone/new_drone = new(get_turf(src)) - new_drone.transfer_personality(player) - - drone_progress = 0 diff --git a/code/modules/mob/living/silicon/robot/examine.dm b/code/modules/mob/living/silicon/robot/examine.dm deleted file mode 100644 index b349b42c80..0000000000 --- a/code/modules/mob/living/silicon/robot/examine.dm +++ /dev/null @@ -1,43 +0,0 @@ -/mob/living/silicon/robot/get_examine_text(mob/user) - if( (user.sdisabilities & DISABILITY_BLIND || user.blinded || user.stat) && !istype(user,/mob/dead/observer) ) - return list(SPAN_NOTICE("Something is there but you can't see it.")) - - var/msg = "*---------*\nThis is [icon2html(src)] \a [src][custom_name ? ", [modtype] [braintype]" : ""]!\n" - msg += "" - if (src.getBruteLoss()) - if (src.getBruteLoss() < maxHealth*0.5) - msg += "It looks slightly dented. A welding tool would buff that out in no time.\n" - else - msg += "It looks severely dented! A welding tool would buff that out in no time.\n" - if (src.getFireLoss()) - if (src.getFireLoss() < maxHealth*0.5) - msg += "It looks slightly charred. Its internal wiring will need to be repaired with a cable coil.\n" - else - msg += "It looks severely burnt and heat-warped! Its internal wiring will need to be repaired with a cable coil.\n" - msg += "" - - if(opened) - msg += SPAN_WARNING("Its cover is open and the power cell is [cell ? "installed" : "missing"].\n") - else - msg += "Its cover is closed[locked ? "" : ", and looks unlocked"].\n" - - if(cell && cell.charge <= 0) - msg += SPAN_WARNING("Its battery indicator is blinking red!
        \n") - if(!has_power) - msg += SPAN_WARNING("It appears to be running on backup power.\n") - - switch(src.stat) - if(CONSCIOUS) - if(!src.client) msg += "It appears to be in stand-by mode.\n" //afk - if(UNCONSCIOUS) msg += SPAN_WARNING("It doesn't seem to be responding.\n") - if(DEAD) msg += "It looks completely unsalvageable.\n" - msg += "*---------*" - - if(print_flavor_text()) msg += "\n[print_flavor_text()]\n" - - if (pose) - if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 ) - pose = addtext(pose,".") //Makes sure all emotes end with a period. - msg += "\nIt is [pose]" - - return list(msg) diff --git a/code/modules/mob/living/silicon/robot/inventory.dm b/code/modules/mob/living/silicon/robot/inventory.dm deleted file mode 100644 index 51bbfd24cc..0000000000 --- a/code/modules/mob/living/silicon/robot/inventory.dm +++ /dev/null @@ -1,198 +0,0 @@ -//These procs handle putting s tuff in your hand. It's probably best to use these rather than setting stuff manually -//as they handle all relevant stuff like adding it to the player's screen and such - -//Returns the thing in our active hand (whatever is in our active module-slot, in this case) -/mob/living/silicon/robot/get_active_hand() - return module_active - -/*-------TODOOOOOOOOOO--------*/ -/mob/living/silicon/robot/proc/uneq_active() - if(isnull(module_active)) - return - if(module_state_1 == module_active) - if(istype(module_state_1,/obj/item/robot/sight)) - sight_mode &= ~module_state_1:sight_mode - if (client) - client.remove_from_screen(module_state_1) - contents -= module_state_1 - module_active = null - module_state_1 = null - inv1.icon_state = "inv1" - else if(module_state_2 == module_active) - if(istype(module_state_2,/obj/item/robot/sight)) - sight_mode &= ~module_state_2:sight_mode - if (client) - client.remove_from_screen(module_state_2) - contents -= module_state_2 - module_active = null - module_state_2 = null - inv2.icon_state = "inv2" - else if(module_state_3 == module_active) - if(istype(module_state_3,/obj/item/robot/sight)) - sight_mode &= ~module_state_3:sight_mode - if (client) - client.remove_from_screen(module_state_3) - contents -= module_state_3 - module_active = null - module_state_3 = null - inv3.icon_state = "inv3" - update_icons() - -/mob/living/silicon/robot/proc/uneq_all() - module_active = null - - if(module_state_1) - if(istype(module_state_1,/obj/item/robot/sight)) - sight_mode &= ~module_state_1:sight_mode - if (client) - client.remove_from_screen(module_state_1) - contents -= module_state_1 - module_state_1 = null - inv1.icon_state = "inv1" - if(module_state_2) - if(istype(module_state_2,/obj/item/robot/sight)) - sight_mode &= ~module_state_2:sight_mode - if (client) - client.remove_from_screen(module_state_2) - contents -= module_state_2 - module_state_2 = null - inv2.icon_state = "inv2" - if(module_state_3) - if(istype(module_state_3,/obj/item/robot/sight)) - sight_mode &= ~module_state_3:sight_mode - if (client) - client.remove_from_screen(module_state_3) - contents -= module_state_3 - module_state_3 = null - inv3.icon_state = "inv3" - update_icons() - -/mob/living/silicon/robot/proc/activated(obj/item/O) - if(module_state_1 == O) - return 1 - else if(module_state_2 == O) - return 1 - else if(module_state_3 == O) - return 1 - else - return 0 - -//Helper procs for cyborg modules on the UI. -//These are hackish but they help clean up code elsewhere. - -//module_selected(module) - Checks whether the module slot specified by "module" is currently selected. -/mob/living/silicon/robot/proc/module_selected(module) //Module is 1-3 - return module == get_selected_module() - -//module_active(module) - Checks whether there is a module active in the slot specified by "module". -/mob/living/silicon/robot/proc/module_active(module) //Module is 1-3 - if(module < 1 || module > 3) return 0 - - switch(module) - if(1) - if(module_state_1) - return 1 - if(2) - if(module_state_2) - return 1 - if(3) - if(module_state_3) - return 1 - return 0 - -//get_selected_module() - Returns the slot number of the currently selected module. Returns 0 if no modules are selected. -/mob/living/silicon/robot/proc/get_selected_module() - if(module_state_1 && module_active == module_state_1) - return 1 - else if(module_state_2 && module_active == module_state_2) - return 2 - else if(module_state_3 && module_active == module_state_3) - return 3 - - return 0 - -//select_module(module) - Selects the module slot specified by "module" -/mob/living/silicon/robot/proc/select_module(module) //Module is 1-3 - if(module < 1 || module > 3) return - - if(!module_active(module)) return - - switch(module) - if(1) - if(module_active != module_state_1) - inv1.icon_state = "inv1 +a" - inv2.icon_state = "inv2" - inv3.icon_state = "inv3" - module_active = module_state_1 - return - if(2) - if(module_active != module_state_2) - inv1.icon_state = "inv1" - inv2.icon_state = "inv2 +a" - inv3.icon_state = "inv3" - module_active = module_state_2 - return - if(3) - if(module_active != module_state_3) - inv1.icon_state = "inv1" - inv2.icon_state = "inv2" - inv3.icon_state = "inv3 +a" - module_active = module_state_3 - return - return - -//deselect_module(module) - Deselects the module slot specified by "module" -/mob/living/silicon/robot/proc/deselect_module(module) //Module is 1-3 - if(module < 1 || module > 3) return - - switch(module) - if(1) - if(module_active == module_state_1) - inv1.icon_state = "inv1" - module_active = null - return - if(2) - if(module_active == module_state_2) - inv2.icon_state = "inv2" - module_active = null - return - if(3) - if(module_active == module_state_3) - inv3.icon_state = "inv3" - module_active = null - return - return - -//toggle_module(module) - Toggles the selection of the module slot specified by "module". -/mob/living/silicon/robot/proc/toggle_module(module) //Module is 1-3 - if(module < 1 || module > 3) return - - if(module_selected(module)) - deselect_module(module) - else - if(module_active(module)) - select_module(module) - else - deselect_module(get_selected_module()) //If we can't do select anything, at least deselect the current module. - return - -//cycle_modules() - Cycles through the list of selected modules. -/mob/living/silicon/robot/proc/cycle_modules() - var/slot_start = get_selected_module() - if(slot_start) deselect_module(slot_start) //Only deselect if we have a selected slot. - - var/slot_num - if(slot_start == 0) - slot_num = 1 - slot_start = 2 - else - slot_num = slot_start + 1 - - while(slot_start != slot_num) //If we wrap around without finding any free slots, just give up. - if(module_active(slot_num)) - select_module(slot_num) - return - slot_num++ - if(slot_num > 3) slot_num = 1 //Wrap around. - - return diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm deleted file mode 100644 index ac031e74e1..0000000000 --- a/code/modules/mob/living/silicon/robot/life.dm +++ /dev/null @@ -1,270 +0,0 @@ -/mob/living/silicon/robot/Life(delta_time) - set invisibility = 0 - set background = 1 - - if (src.monkeyizing) - return - - src.blinded = FALSE - - //Status updates, death etc. - clamp_values() - handle_regular_status_updates() - - if(client) - handle_regular_hud_updates() - update_items() - if (src.stat != DEAD) //still using power - use_power() - process_killswitch() - process_locks() - -/mob/living/silicon/robot/proc/clamp_values() - -// set_effect(min(stunned, 30), STUN) -// set_effect(min(knocked_out, 30), PARALYZE) -// set_effect(min(knocked_down, 20), WEAKEN) - sleeping = 0 - apply_damage(0, BRUTE) - apply_damage(0, TOX) - apply_damage(0, OXY) - apply_damage(0, BURN) - -/mob/living/silicon/robot/proc/use_power() - // Debug only - used_power_this_tick = 0 - for(var/V in components) - var/datum/robot_component/C = components[V] - C.update_power_state() - - if ( cell && is_component_functioning("power cell") && src.cell.charge > 0 ) - if(src.module_state_1) - cell_use_power(50) // 50W load for every enabled tool TODO: tool-specific loads - if(src.module_state_2) - cell_use_power(50) - if(src.module_state_3) - cell_use_power(50) - - if(lights_on) - cell_use_power(30) // 30W light. Normal lights would use ~15W, but increased for balance reasons. - - src.has_power = 1 - else - if (src.has_power) - to_chat(src, SPAN_DANGER("You are now running on emergency backup power.")) - src.has_power = 0 - if(lights_on) // Light is on but there is no power! - lights_on = 0 - set_light(0) - -/mob/living/silicon/robot/handle_regular_status_updates(regular_update = TRUE) - - if(src.camera && !scrambledcodes) - if(src.stat == 2 || isWireCut(5)) - src.camera.status = 0 - else - src.camera.status = 1 - - updatehealth() - - if(regular_update && src.sleeping) - apply_effect(3, PARALYZE) - src.sleeping-- - - if(regular_update && src.resting) - apply_effect(5, WEAKEN) - - if(health < HEALTH_THRESHOLD_DEAD && stat != DEAD) //die only once - death() - - if (stat != DEAD) //Alive. - if (HAS_TRAIT(src, TRAIT_KNOCKEDOUT) || HAS_TRAIT(src, TRAIT_INCAPACITATED) || !has_power) //Stunned etc. - set_stat(UNCONSCIOUS) - if(regular_update) - if (HAS_TRAIT(src, TRAIT_INCAPACITATED)) - adjust_effect(-1, STUN) - if (HAS_TRAIT(src, TRAIT_FLOORED)) - adjust_effect(-1, WEAKEN) - if (HAS_TRAIT(src, TRAIT_KNOCKEDOUT)) - adjust_effect(-1, PARALYZE) - src.blinded = TRUE - else - src.blinded = FALSE - - else //Not stunned. - src.set_stat(CONSCIOUS) - - else //Dead. - src.blinded = TRUE - src.set_stat(DEAD) - - if(!regular_update) - return - - if (src.stuttering) src.stuttering-- - - if (src.eye_blind) - src.ReduceEyeBlind(1) - src.blinded = TRUE - - if (src.ear_deaf > 0) src.ear_deaf-- - if (src.ear_damage < 25) - src.ear_damage -= 0.05 - src.ear_damage = max(src.ear_damage, 0) - - if ((src.sdisabilities & DISABILITY_BLIND)) - src.blinded = TRUE - if ((src.sdisabilities & DISABILITY_DEAF)) - SetEarDeafness(1) - - if (src.eye_blurry > 0) - src.ReduceEyeBlur(1) - - if (src.druggy > 0) - src.druggy-- - src.druggy = max(0, src.druggy) - - //update the state of modules and components here - if (src.stat != 0) - uneq_all() - - if(!is_component_functioning("radio")) - radio.on = 0 - else - radio.on = 1 - - if(is_component_functioning("camera")) - src.blinded = FALSE - else - src.blinded = TRUE - - return 1 - -/mob/living/silicon/robot/proc/handle_regular_hud_updates() - - if (hud_used && hud_used.healths) - if (src.stat != DEAD) - if(ismaintdrone(src)) - switch(round(health * 100 / maxHealth)) - if(100 to INFINITY) - hud_used.healths.icon_state = "health0" - if(75 to 99) - hud_used.healths.icon_state = "health1" - if(50 to 74) - hud_used.healths.icon_state = "health2" - if(25 to 49) - hud_used.healths.icon_state = "health3" - if(10 to 24) - hud_used.healths.icon_state = "health4" - if(0 to 9) - hud_used.healths.icon_state = "health5" - else - hud_used.healths.icon_state = "health6" - else - switch(round(health * 100 / maxHealth)) - if(100 to INFINITY) - hud_used.healths.icon_state = "health0" - if(75 to 99) - hud_used.healths.icon_state = "health1" - if(50 to 74) - hud_used.healths.icon_state = "health2" - if(25 to 49) - hud_used.healths.icon_state = "health3" - if(10 to 24) - hud_used.healths.icon_state = "health4" - if(0 to 9) - hud_used.healths.icon_state = "health5" - else - hud_used.healths.icon_state = "health6" - else - hud_used.healths.icon_state = "health7" - - if (src.cells) - if (src.cell) - var/cellcharge = src.cell.charge/src.cell.maxcharge - switch(cellcharge) - if(0.75 to INFINITY) - src.cells.icon_state = "charge4" - if(0.5 to 0.75) - src.cells.icon_state = "charge3" - if(0.25 to 0.5) - src.cells.icon_state = "charge2" - if(0 to 0.25) - src.cells.icon_state = "charge1" - else - src.cells.icon_state = "charge0" - else - src.cells.icon_state = "charge-empty" - - if(hud_used && hud_used.bodytemp_icon) - switch(src.bodytemperature) //310.055 optimal body temp - if(335 to INFINITY) - hud_used.bodytemp_icon.icon_state = "temp2" - if(320 to 335) - hud_used.bodytemp_icon.icon_state = "temp1" - if(300 to 320) - hud_used.bodytemp_icon.icon_state = "temp0" - if(260 to 300) - hud_used.bodytemp_icon.icon_state = "temp-1" - else - hud_used.bodytemp_icon.icon_state = "temp-2" - - -//Oxygen and fire does nothing yet!! -// if (src.oxygen) src.oxygen.icon_state = "oxy[src.oxygen_alert ? 1 : 0]" -// if (src.fire) src.fire.icon_state = "fire[src.fire_alert ? 1 : 0]" - - if(stat != DEAD) //the dead get zero fullscreens - if(blinded) - overlay_fullscreen("blind", /atom/movable/screen/fullscreen/blind) - else - clear_fullscreen("blind") - - if(druggy) - overlay_fullscreen("high", /atom/movable/screen/fullscreen/high) - else - clear_fullscreen("high") - - - if(interactee) - interactee.check_eye(src) - else - if(client && !client.adminobs) - reset_view(null) - - return 1 - -/mob/living/silicon/robot/proc/update_items() - if (client) - client.remove_from_screen(contents) - for(var/obj/I in contents) - if(I && !(istype(I,/obj/item/cell) || istype(I,/obj/item/device/radio) || istype(I,/obj/structure/machinery/camera) || istype(I,/obj/item/device/mmi))) - client.add_to_screen(I) - var/datum/custom_hud/robot/ui_datum = GLOB.custom_huds_list[HUD_ROBOT] - if(module_state_1) - module_state_1.screen_loc = ui_datum.ui_inv1 - if(module_state_2) - module_state_2.screen_loc = ui_datum.ui_inv2 - if(module_state_3) - module_state_3.screen_loc = ui_datum.ui_inv3 - update_icons() - -/mob/living/silicon/robot/proc/process_killswitch() - if(killswitch) - killswitch_time -- - if(killswitch_time <= 0) - if(src.client) - to_chat(src, SPAN_DANGER("Killswitch Activated")) - killswitch = 0 - spawn(5) - gib() - -/mob/living/silicon/robot/proc/process_locks() - if(weapon_lock) - uneq_all() - weaponlock_time -- - if(weaponlock_time <= 0) - if(src.client) - to_chat(src, SPAN_DANGER("Weapon Lock Timed Out!")) - weapon_lock = 0 - weaponlock_time = 120 diff --git a/code/modules/mob/living/silicon/robot/login.dm b/code/modules/mob/living/silicon/robot/login.dm deleted file mode 100644 index 0a3225011d..0000000000 --- a/code/modules/mob/living/silicon/robot/login.dm +++ /dev/null @@ -1,4 +0,0 @@ -/mob/living/silicon/robot/Login() - ..() - regenerate_icons() - show_laws(0) diff --git a/code/modules/mob/living/silicon/robot/photos.dm b/code/modules/mob/living/silicon/robot/photos.dm deleted file mode 100644 index bc8d3793c5..0000000000 --- a/code/modules/mob/living/silicon/robot/photos.dm +++ /dev/null @@ -1,13 +0,0 @@ -/mob/living/silicon/robot/proc/photosync() - var/obj/item/device/camera/siliconcam/master_cam = connected_ai ? connected_ai.aiCamera : null - if (!master_cam) - return - - var/synced - synced = 0 - for(var/datum/picture/z in aiCamera.aipictures) - if (!(master_cam.aipictures.Find(z))) - aiCamera.printpicture(null, z) - synced = 1 - if(synced) - to_chat(src, SPAN_NOTICE("Locally saved images synced with AI. Images were retained in local database in case of loss of connection with the AI.")) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm deleted file mode 100644 index ebcdd60aa9..0000000000 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ /dev/null @@ -1,994 +0,0 @@ -var/list/robot_verbs_default = list( - /mob/living/silicon/robot/proc/sensor_mode -) - -#define CYBORG_POWER_USAGE_MULTIPLIER 2.5 // Multiplier for amount of power cyborgs use. - -/mob/living/silicon/robot - name = "Robot" - real_name = "Robot" - icon = 'icons/mob/robots.dmi' - icon_state = "robot" - maxHealth = 500 - health = 500 - - var/lights_on = 0 // Is our integrated light on? - var/used_power_this_tick = 0 - var/sight_mode = 0 - var/custom_name = "" - var/crisis //Admin-settable for combat module use. - var/crisis_override = 0 - var/integrated_light_power = 6 - -//Hud stuff - - var/atom/movable/screen/cells = null - var/atom/movable/screen/inv1 = null - var/atom/movable/screen/inv2 = null - var/atom/movable/screen/inv3 = null - -//3 Modules can be activated at any one time. - var/obj/item/circuitboard/robot_module/module = null - var/obj/module_active = null - var/obj/module_state_1 = null - var/obj/module_state_2 = null - var/obj/module_state_3 = null - - var/obj/item/device/radio/borg/radio = null - var/mob/living/silicon/ai/connected_ai = null - var/obj/item/cell/cell = null - var/obj/structure/machinery/camera/camera = null - - // Components are basically robot organs. - var/list/components = list() - - var/obj/item/device/mmi/mmi = null - - //var/obj/item/device/pda/ai/rbPDA = null - - var/opened = 0 - var/wiresexposed = 0 - var/locked = 1 - var/has_power = 1 - var/list/req_access = list(ACCESS_MARINE_ENGINEERING, ACCESS_CIVILIAN_ENGINEERING) - var/ident = 0 - //var/list/laws = list() - var/viewalerts = 0 - var/modtype = "Default" - var/lower_mod = 0 - var/jetpack = 0 - var/datum/effect_system/ion_trail_follow/ion_trail = null - var/datum/effect_system/spark_spread/spark_system //So they can initialize sparks whenever/N - var/jeton = 0 - var/borgwires = 31 // 0b11111 - var/killswitch = 0 - var/killswitch_time = 60 - var/weapon_lock = 0 - var/weaponlock_time = 120 - var/lawupdate = 1 //Cyborgs will sync their laws with their AI by default - var/lawcheck[1] //For stating laws. - var/ioncheck[1] //Ditto. - var/lockcharge //Used when locking down a borg to preserve cell charge - speed = 0 //Cause sec borgs gotta go fast //No they dont! - var/scrambledcodes = 0 // Used to determine if a borg shows up on the robotics console. Setting to one hides them. - var/braintype = "Cyborg" - -/mob/living/silicon/robot/New(loc, syndie = 0, unfinished = 0) - spark_system = new /datum/effect_system/spark_spread() - spark_system.set_up(5, 0, src) - spark_system.attach(src) - - add_language(LANGUAGE_APOLLO, 1) - - ident = rand(1, 999) - updatename("Default") - update_icons() - - if(syndie) - if(!cell) - cell = new /obj/item/cell(src) - - lawupdate = 0 - scrambledcodes = 1 - cell.maxcharge = 25000 - cell.charge = 25000 - module = new /obj/item/circuitboard/robot_module/syndicate(src) - hands.icon_state = "standard" - icon_state = "secborg" - modtype = "Security" - init() - - radio = new /obj/item/device/radio/borg(src) - if(!scrambledcodes && !camera) - camera = new /obj/structure/machinery/camera(src) - camera.c_tag = real_name - camera.network = list("SS13","Robots") - if(isWireCut(5)) // 5 = BORG CAMERA - camera.status = 0 - - initialize_components() - //if(!unfinished) - // Create all the robot parts. - for(var/V in components) if(V != "power cell") - var/datum/robot_component/C = components[V] - C.installed = 1 - C.wrapped = new C.external_type - - if(!cell) - cell = new /obj/item/cell(src) - cell.maxcharge = 25000 - cell.charge = 25000 - - ..() - - if(cell) - var/datum/robot_component/cell_component = components["power cell"] - cell_component.wrapped = cell - cell_component.installed = 1 - - add_robot_verbs() - -/mob/living/silicon/robot/proc/init() - aiCamera = new/obj/item/device/camera/siliconcam/robot_camera(src) - connected_ai = select_active_ai_with_fewest_borgs() - if(connected_ai) - connected_ai.connected_robots += src - photosync() - lawupdate = 1 - else - lawupdate = 0 - - // playsound(loc, 'sound/voice/liveagain.ogg', 75, 1) - -// setup the PDA and its name -/*/mob/living/silicon/robot/proc/setup_PDA() - if (!rbPDA) - rbPDA = new/obj/item/device/pda/ai(src) - rbPDA.set_name_and_job(custom_name,"[modtype] [braintype]")*/ - -//If there's an MMI in the robot, have it ejected when the mob goes away. --NEO -//Improved /N -/mob/living/silicon/robot/Destroy() - if(mmi)//Safety for when a cyborg gets dust()ed. Or there is no MMI inside. - var/turf/turf = get_turf(loc)//To hopefully prevent run time errors. - if(turf) mmi.forceMove(turf) - if(mind) mind.transfer_to(mmi.brainmob) - mmi = null - QDEL_NULL(aiCamera) - QDEL_NULL(spark_system) - QDEL_NULL(module) - module_active = null - module_state_1 = null - module_state_2 = null - module_state_3 = null - QDEL_NULL(radio) - connected_ai = null - QDEL_NULL(cell) - QDEL_NULL(camera) - QDEL_LIST_ASSOC_VAL(components) - . = ..() - -/mob/living/silicon/robot/proc/pick_module() - if(module) - return - var/list/modules = list("Standard", "Engineering", "Surgeon", "Medic", "Janitor", "Service", "Security") - modtype = tgui_input_list(usr, "Please, select a module!", "Robot", modules) - - var/module_sprites[0] //Used to store the associations between sprite names and sprite index. - - if(module) - return - - switch(modtype) - if("Standard") - module = new /obj/item/circuitboard/robot_module/standard(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 0, RADIO_CHANNEL_REQ = 0 ) - module_sprites["Default"] = "robot" - module_sprites["Droid"] = "droid" - module_sprites["Drone"] = "drone-standard" - - if("Service") - module = new /obj/item/circuitboard/robot_module/butler(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 0, RADIO_CHANNEL_REQ = 0 ) - module_sprites["Default"] = "Service2" - module_sprites["Rich"] = "maximillion" - module_sprites["Drone"] = "drone-service" - - if("Medic") - module = new /obj/item/circuitboard/robot_module/medic(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 1, RADIO_CHANNEL_REQ = 0 ) - if(camera && ("Robots" in camera.network)) - camera.network.Add("Medical") - module_sprites["Standard"] = "surgeon" - module_sprites["Advanced Droid"] = "droid-medical" - module_sprites["Needles"] = "medicalrobot" - module_sprites["Drone"] = "drone-medical" - - if("Surgeon") - module = new /obj/item/circuitboard/robot_module/surgeon(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 1, RADIO_CHANNEL_REQ = 0 ) - if(camera && ("Robots" in camera.network)) - camera.network.Add("Medical") - module_sprites["Standard"] = "surgeon" - module_sprites["Advanced Droid"] = "droid-medical" - module_sprites["Needles"] = "medicalrobot" - module_sprites["Drone"] = "drone-medical" - - if("Security") - module = new /obj/item/circuitboard/robot_module/security(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 1, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 0, RADIO_CHANNEL_REQ = 0 ) - module_sprites["Bloodhound"] = "bloodhound" - module_sprites["Bloodhound - Treaded"] = "secborg+tread" - module_sprites["Drone"] = "drone-sec" - - if("Engineering") - module = new /obj/item/circuitboard/robot_module/engineering(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 1, RADIO_CHANNEL_MEDSCI = 0, RADIO_CHANNEL_REQ = 0 ) - if(camera && ("Robots" in camera.network)) - camera.network.Add("Engineering") - module_sprites["Landmate"] = "landmate" - module_sprites["Landmate - Treaded"] = "engiborg+tread" - module_sprites["Drone"] = "drone-engineer" - - if("Janitor") - module = new /obj/item/circuitboard/robot_module/janitor(src) - module.channels = list(RADIO_CHANNEL_COMMAND = 1, RADIO_CHANNEL_MP = 0, SQUAD_MARINE_1 = 0, SQUAD_MARINE_2 = 0, SQUAD_MARINE_3 = 0, SQUAD_MARINE_4 = 0, RADIO_CHANNEL_ENGI = 0, RADIO_CHANNEL_MEDSCI = 0, RADIO_CHANNEL_REQ = 0 ) - module_sprites["Mop Gear Rex"] = "mopgearrex" - module_sprites["Drone"] = "drone-janitor" - - //languages - module.add_languages(src) - - hands.icon_state = lowertext(modtype) - updatename() - - if(modtype == "Medic" || modtype == "Security" || modtype == "Surgeon") - status_flags &= ~CANPUSH - - choose_icon(6,module_sprites) - radio.config(module.channels) - -/mob/living/silicon/robot/proc/updatename(prefix as text) - if(prefix) - modtype = prefix - if(mmi) - braintype = "Cyborg" - else - braintype = "Robot" - - var/changed_name = "" - if(custom_name) - changed_name = custom_name - else - changed_name = "[modtype] [braintype]-[num2text(ident)]" - - change_real_name(src, changed_name) - - // if we've changed our name, we also need to update the display name for our PDA - //setup_PDA() - - //We also need to update name of internal camera. - if (camera) - camera.c_tag = changed_name - - -/mob/living/silicon/robot/verb/Namepick() - set category = "Robot Commands" - if(custom_name) - return 0 - - spawn(0) - var/newname - newname = input(src,"You are a robot. Enter a name, or leave blank for the default name.", "Name change","") as text - if (newname != "") - custom_name = newname - - updatename() - update_icons() - -/mob/living/silicon/robot/verb/cmd_robot_alerts() - set category = "Robot Commands" - set name = "Show Alerts" - robot_alerts() - -// this verb lets cyborgs see the stations manifest -/mob/living/silicon/robot/verb/cmd_station_manifest() - set category = "Robot Commands" - set name = "Show Crew Manifest" - show_station_manifest() - - -/mob/living/silicon/robot/proc/robot_alerts() - var/dat = "Current Station Alerts\n" - dat += "Close

        " - for (var/cat in alarms) - dat += text("[cat]
        \n") - var/list/alarmlist = alarms[cat] - if (alarmlist.len) - for (var/area_name in alarmlist) - var/datum/alarm/alarm = alarmlist[area_name] - dat += "" - dat += text("-- [area_name]") - if (alarm.sources.len > 1) - dat += text("- [alarm.sources.len] sources") - dat += "
        \n" - else - dat += "-- All Systems Nominal
        \n" - dat += "
        \n" - - viewalerts = 1 - src << browse(dat, "window=robotalerts&can_close=0") - -/mob/living/silicon/robot/proc/self_diagnosis() - if(!is_component_functioning("diagnosis unit")) - return null - - var/dat = "[src.name] Self-Diagnosis Report\n" - for (var/V in components) - var/datum/robot_component/C = components[V] - dat += "[C.name]
        Brute Damage:[C.brute_damage]
        Electronics Damage:[C.electronics_damage]
        Powered:[(!C.idle_usage || C.is_powered()) ? "Yes" : "No"]
        Toggled:[ C.toggled ? "Yes" : "No"]

        " - - return dat - -/mob/living/silicon/robot/verb/toggle_lights() - set category = "Robot Commands" - set name = "Toggle Lights" - - lights_on = !lights_on - to_chat(usr, "You [lights_on ? "enable" : "disable"] your integrated light.") - if(lights_on) - set_light(integrated_light_power) // 1.5x luminosity of flashlight - else - set_light(0) - -/mob/living/silicon/robot/verb/self_diagnosis_verb() - set category = "Robot Commands" - set name = "Self Diagnosis" - - if(!is_component_functioning("diagnosis unit")) - to_chat(src, SPAN_DANGER("Your self-diagnosis component isn't functioning.")) - - var/datum/robot_component/CO = get_component("diagnosis unit") - if (!cell_use_power(CO.active_usage)) - to_chat(src, SPAN_DANGER("Low Power.")) - var/dat = self_diagnosis() - src << browse(dat, "window=robotdiagnosis") - - -/mob/living/silicon/robot/verb/toggle_component() - set category = "Robot Commands" - set name = "Toggle Component" - set desc = "Toggle a component, conserving power." - - var/list/installed_components = list() - for(var/V in components) - if(V == "power cell") continue - var/datum/robot_component/C = components[V] - if(C.installed) - installed_components += V - - var/toggle = tgui_input_list(src, "Which component do you want to toggle?", "Toggle Component", installed_components) - if(!toggle) - return - - var/datum/robot_component/C = components[toggle] - if(C.toggled) - C.toggled = 0 - to_chat(src, SPAN_DANGER("You disable [C.name].")) - else - C.toggled = 1 - to_chat(src, SPAN_DANGER("You enable [C.name].")) - -// this function displays jetpack pressure in the stat panel -/mob/living/silicon/robot/proc/show_jetpack_pressure() - // if you have a jetpack, show the internal tank pressure - var/obj/item/tank/jetpack/current_jetpack = installed_jetpack() - if (current_jetpack) - stat("Internal Atmosphere Info", current_jetpack.name) - stat("Tank Pressure", current_jetpack.return_pressure()) - - -// this function returns the robots jetpack, if one is installed -/mob/living/silicon/robot/proc/installed_jetpack() - if(module) - return (locate(/obj/item/tank/jetpack) in module.modules) - return 0 - - -// this function displays the cyborgs current cell charge in the stat panel -/mob/living/silicon/robot/proc/show_cell_power() - if(cell) - stat(null, text("Charge Left: [round(cell.percent())]%")) - stat(null, text("Cell Rating: [round(cell.maxcharge)]")) // Round just in case we somehow get crazy values - stat(null, text("Power Cell Load: [round(used_power_this_tick)]W")) - else - stat(null, text("No Cell Inserted!")) - - -/mob/living/silicon/robot/is_mob_restrained() - return 0 - -/mob/living/silicon/robot/bullet_act(obj/projectile/Proj) - ..(Proj) - if(prob(75) && Proj.damage > 0) spark_system.start() - return 2 - -/mob/living/silicon/robot/Collide(atom/A) - ..() - if (istype(A, /obj/structure/machinery/recharge_station)) - var/obj/structure/machinery/recharge_station/F = A - F.move_inside() - return - - -/mob/living/silicon/robot/triggerAlarm(class, area/A, list/cameralist, source) - if (stat == 2) - return 1 - - ..() - - queueAlarm(text("--- [class] alarm detected in [A.name]!"), class) - - -/mob/living/silicon/robot/cancelAlarm(class, area/A as area, obj/origin) - var/has_alarm = ..() - - if (!has_alarm) - queueAlarm(text("--- [class] alarm in [A.name] has been cleared."), class, 0) -// if (viewalerts) robot_alerts() - return has_alarm - - -/mob/living/silicon/robot/attackby(obj/item/W as obj, mob/user as mob) - if (istype(W, /obj/item/handcuffs)) // fuck i don't even know why isrobot() in handcuff code isn't working so this will have to do - return - - if(opened) // Are they trying to insert something? - for(var/V in components) - var/datum/robot_component/C = components[V] - if(!C.installed && istype(W, C.external_type)) - C.installed = 1 - C.wrapped = W - C.install() - if(user.drop_held_item()) - W.moveToNullspace() - var/obj/item/robot_parts/robot_component/WC = W - if(istype(WC)) - C.brute_damage = WC.brute - C.electronics_damage = WC.burn - - to_chat(usr, SPAN_NOTICE(" You install the [W.name].")) - - return - - if (iswelder(W)) - if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) - to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) - return - if (src == user) - to_chat(user, SPAN_WARNING("You lack the reach to be able to repair yourself.")) - return - - if (!getBruteLoss()) - to_chat(user, "Nothing to fix here!") - return - var/obj/item/tool/weldingtool/WT = W - if (WT.remove_fuel(0)) - apply_damage(-30, BRUTE) - updatehealth() - add_fingerprint(user) - for(var/mob/O in viewers(user, null)) - O.show_message(text(SPAN_DANGER("[user] has fixed some of the dents on [src]!")), SHOW_MESSAGE_VISIBLE) - else - to_chat(user, "Need more welding fuel!") - return - - else if(istype(W, /obj/item/stack/cable_coil) && (wiresexposed || ismaintdrone(src))) - if (!getFireLoss()) - to_chat(user, "Nothing to fix here!") - return - var/obj/item/stack/cable_coil/coil = W - if (coil.use(1)) - apply_damage(-30, BURN) - updatehealth() - for(var/mob/O in viewers(user, null)) - O.show_message(text(SPAN_DANGER("[user] has fixed some of the burnt wires on [src]!")), SHOW_MESSAGE_VISIBLE) - - else if (HAS_TRAIT(W, TRAIT_TOOL_CROWBAR)) // crowbar means open or close the cover - if(opened) - if(cell) - to_chat(user, "You close the cover.") - opened = 0 - update_icons() - else if(wiresexposed && isWireCut(1) && isWireCut(2) && isWireCut(3) && isWireCut(4) && isWireCut(5)) - //Cell is out, wires are exposed, remove MMI, produce damaged chassis, baleet original mob. - if(!mmi) - to_chat(user, "\The [src] has no brain to remove.") - return - - to_chat(user, "You jam the crowbar into the robot and begin levering [mmi].") - sleep(30) - to_chat(user, "You damage some parts of the chassis, but eventually manage to rip out [mmi]!") - var/obj/item/robot_parts/robot_suit/C = new/obj/item/robot_parts/robot_suit(loc) - C.l_leg = new/obj/item/robot_parts/leg/l_leg(C) - C.r_leg = new/obj/item/robot_parts/leg/r_leg(C) - C.l_arm = new/obj/item/robot_parts/arm/l_arm(C) - C.r_arm = new/obj/item/robot_parts/arm/r_arm(C) - C.updateicon() - new/obj/item/robot_parts/chest(loc) - qdel(src) - else - // Okay we're not removing the cell or an MMI, but maybe something else? - var/list/removable_components = list() - for(var/V in components) - if(V == "power cell") continue - var/datum/robot_component/C = components[V] - if(C.installed == 1 || C.installed == -1) - removable_components += V - - var/remove = tgui_input_list(user, "Which component do you want to pry out?", "Remove Component", removable_components) - if(!remove) - return - var/datum/robot_component/C = components[remove] - var/obj/item/robot_parts/robot_component/I = C.wrapped - to_chat(user, "You remove \the [I].") - if(istype(I)) - I.brute = C.brute_damage - I.burn = C.electronics_damage - - I.forceMove(src.loc) - - if(C.installed == 1) - C.uninstall() - C.installed = 0 - - else - if(locked) - to_chat(user, "The cover is locked and cannot be opened.") - else - to_chat(user, "You open the cover.") - opened = 1 - update_icons() - - else if (istype(W, /obj/item/cell) && opened) // trying to put a cell inside - var/datum/robot_component/C = components["power cell"] - if(wiresexposed) - to_chat(user, "Secure the wiring with a screwdriver first.") - else if(cell) - to_chat(user, "There is a power cell already installed.") - else - if(user.drop_inv_item_to_loc(W, src)) - cell = W - to_chat(user, "You insert the power cell.") - - C.installed = 1 - C.wrapped = W - C.install() - //This will mean that removing and replacing a power cell will repair the mount, but I don't care at this point. ~Z - C.brute_damage = 0 - C.electronics_damage = 0 - - else if (HAS_TRAIT(W, TRAIT_TOOL_WIRECUTTERS) || HAS_TRAIT(W, TRAIT_TOOL_MULTITOOL)) - if (wiresexposed) - interact(user) - else - to_chat(user, "You can't reach the wiring.") - - else if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER) && opened && !cell) // haxing - wiresexposed = !wiresexposed - to_chat(user, "The wires have been [wiresexposed ? "exposed" : "unexposed"]") - update_icons() - - else if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER) && opened && cell) // radio - if(radio) - radio.attackby(W,user)//Push it to the radio to let it handle everything - else - to_chat(user, "Unable to locate a radio.") - update_icons() - - else if(istype(W, /obj/item/device/encryptionkey/) && opened) - if(radio)//sanityyyyyy - radio.attackby(W,user)//GTFO, you have your own procs - else - to_chat(user, "Unable to locate a radio.") - - else if(istype(W, /obj/item/robot/upgrade/)) - var/obj/item/robot/upgrade/U = W - if(!opened) - to_chat(usr, "You must access the borgs internals!") - else if(!src.module && U.require_module) - to_chat(usr, "The borg must choose a module before he can be upgraded!") - else if(U.locked) - to_chat(usr, "The upgrade is locked and cannot be used yet!") - else - if(U.action(src)) - to_chat(usr, "You apply the upgrade to [src]!") - if(usr.drop_held_item()) - U.forceMove(src) - else - to_chat(usr, "Upgrade error!") - - - else - if( !(istype(W, /obj/item/device/robotanalyzer) || istype(W, /obj/item/device/healthanalyzer)) ) - spark_system.start() - return ..() - -/mob/living/silicon/robot/verb/unlock_own_cover() - set category = "Robot Commands" - set name = "Toggle Cover" - set desc = "Toggle your cover open and closed." - if(stat == DEAD) - return //won't work if dead - if(!opened) - opened = 1 - to_chat(usr, "You open your cover.") - else - opened = 0 - to_chat(usr, "You close your cover.") - -/mob/living/silicon/robot/attack_animal(mob/living/M as mob) - if(M.melee_damage_upper == 0) - M.emote("[M.friendly] [src]") - else - if(M.attack_sound) - playsound(loc, M.attack_sound, 25, 1) - for(var/mob/O in viewers(src, null)) - O.show_message(SPAN_DANGER("[M] [M.attacktext] [src]!"), SHOW_MESSAGE_VISIBLE) - last_damage_data = create_cause_data(initial(M.name), M) - M.attack_log += text("\[[time_stamp()]\] attacked [key_name(src)]") - src.attack_log += text("\[[time_stamp()]\] was attacked by [key_name(M)]") - var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) - apply_damage(damage, BRUTE) - updatehealth() - - -/mob/living/silicon/robot/attack_hand(mob/user) - - add_fingerprint(user) - - if(opened && !wiresexposed && (!isRemoteControlling(user))) - var/datum/robot_component/cell_component = components["power cell"] - if(cell) - cell.update_icon() - cell.add_fingerprint(user) - user.put_in_active_hand(cell) - to_chat(user, "You remove \the [cell].") - cell = null - cell_component.wrapped = null - cell_component.installed = 0 - update_icons() - else if(cell_component.installed == -1) - cell_component.installed = 0 - var/obj/item/broken_device = cell_component.wrapped - to_chat(user, "You remove \the [broken_device].") - user.put_in_active_hand(broken_device) - -/mob/living/silicon/robot/proc/allowed(mob/M) - //check if it doesn't require any access at all - if(check_access(null)) - return 1 - if(istype(M, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = M - //if they are holding or wearing a card that has access, that works - if(check_access(H.get_active_hand()) || check_access(H.wear_id)) - return 1 - return 0 - -/mob/living/silicon/robot/proc/check_access(obj/item/card/id/I) - if(!istype(req_access, /list)) //something's very wrong - return 1 - - var/list/L = req_access - if(!L.len) //no requirements - return 1 - if(!I || !istype(I, /obj/item/card/id) || !I.access) //not ID or no access - return 0 - for(var/req in req_access) - if(req in I.access) //have one of the required accesses - return 1 - return 0 - -/mob/living/silicon/robot/update_icons() - - overlays.Cut() - if(stat == 0) - overlays += "eyes" - overlays.Cut() - overlays += "eyes-[icon_state]" - else - overlays -= "eyes" - - if(opened) - if(wiresexposed) - overlays += "ov-openpanel +w" - else if(cell) - overlays += "ov-openpanel +c" - else - overlays += "ov-openpanel -c" - -/mob/living/silicon/robot/proc/installed_modules() - if(weapon_lock) - to_chat(src, SPAN_DANGER("Weapon lock active, unable to use modules! Count:[weaponlock_time]")) - return - - if(!module) - pick_module() - return - var/dat = "Modules\n" - dat += {" - Activated Modules -
        - Module 1: [module_state_1 ? "[module_state_1]" : "No Module"]
        - Module 2: [module_state_2 ? "
        [module_state_2]" : "No Module"]
        - Module 3: [module_state_3 ? "
        [module_state_3]" : "No Module"]
        -
        - Installed Modules

        "} - - - for (var/obj in module.modules) - if (!obj) - dat += text("Resource depleted
        ") - else if(activated(obj)) - dat += text("[obj]: Activated
        ") - else - dat += text("[obj]:
        Activate
        ") -/* - if(activated(obj)) - dat += text("[obj]: \[Activated|Deactivate\]
        ") - else - dat += text("[obj]: \[Activate|Deactivated\]
        ") -*/ - src << browse(dat, "window=robotmod") - - -/mob/living/silicon/robot/Topic(href, href_list) - ..() - - if(usr != src) - return - - if (href_list["showalerts"]) - robot_alerts() - return - - if (href_list["mod"]) - var/obj/item/O = locate(href_list["mod"]) - if (istype(O) && (O.loc == src)) - O.attack_self(src) - - if (href_list["act"]) - var/obj/item/O = locate(href_list["act"]) - if (!istype(O)) - return - - if(!((O in src.module.modules) || (O == src.module.emag))) - return - - if(activated(O)) - to_chat(src, "Already activated") - return - if(!module_state_1) - module_state_1 = O - O.layer = ABOVE_HUD_LAYER - O.plane = ABOVE_HUD_PLANE - contents += O - if(istype(module_state_1,/obj/item/robot/sight)) - sight_mode |= module_state_1:sight_mode - else if(!module_state_2) - module_state_2 = O - O.layer = ABOVE_HUD_LAYER - O.plane = ABOVE_HUD_PLANE - contents += O - if(istype(module_state_2,/obj/item/robot/sight)) - sight_mode |= module_state_2:sight_mode - else if(!module_state_3) - module_state_3 = O - O.layer = ABOVE_HUD_LAYER - O.plane = ABOVE_HUD_PLANE - contents += O - if(istype(module_state_3,/obj/item/robot/sight)) - sight_mode |= module_state_3:sight_mode - else - to_chat(src, "You need to disable a module first!") - installed_modules() - - if (href_list["deact"]) - var/obj/item/O = locate(href_list["deact"]) - if(activated(O)) - if(module_state_1 == O) - module_state_1 = null - contents -= O - else if(module_state_2 == O) - module_state_2 = null - contents -= O - else if(module_state_3 == O) - module_state_3 = null - contents -= O - else - to_chat(src, "Module isn't activated.") - else - to_chat(src, "Module isn't activated") - installed_modules() - - return - -/mob/living/silicon/robot/proc/radio_menu() - radio.interact(src)//Just use the radio's Topic() instead of bullshit special-snowflake code - - -/mob/living/silicon/robot/Move(a, b, flag) - if (!is_component_functioning("actuator")) - return 0 - - var/datum/robot_component/actuator/AC = get_component("actuator") - if (!cell_use_power(AC.active_usage)) - return 0 - - . = ..() - - if(module) - if(module.type == /obj/item/circuitboard/robot_module/janitor) - var/turf/tile = loc - if(isturf(tile)) - for(var/A in tile) - if(istype(A, /obj/effect)) - if(istype(A, /obj/effect/decal/cleanable) || istype(A, /obj/effect/overlay)) - qdel(A) - else if(istype(A, /obj/item)) - var/obj/item/cleaned_item = A - cleaned_item.clean_blood() - else if(istype(A, /mob/living/carbon/human)) - var/mob/living/carbon/human/cleaned_human = A - if(cleaned_human.body_position == LYING_DOWN) - if(cleaned_human.head) - cleaned_human.head.clean_blood() - cleaned_human.update_inv_head(0) - if(cleaned_human.wear_suit) - cleaned_human.wear_suit.clean_blood() - cleaned_human.update_inv_wear_suit(0) - else if(cleaned_human.w_uniform) - cleaned_human.w_uniform.clean_blood() - cleaned_human.update_inv_w_uniform(0) - if(cleaned_human.shoes) - cleaned_human.shoes.clean_blood() - cleaned_human.update_inv_shoes(0) - cleaned_human.clean_blood(1) - to_chat(cleaned_human, SPAN_WARNING("[src] cleans your face!")) - return - -/mob/living/silicon/robot/proc/self_destruct() - robogibs() - return - -/mob/living/silicon/robot/proc/UnlinkSelf() - if (src.connected_ai) - src.connected_ai = null - lawupdate = 0 - lockcharge = 0 - //canmove = 1 // Yes this will probably break something, whatevver it is - scrambledcodes = 1 - //Disconnect it's camera so it's not so easily tracked. - if(src.camera) - src.camera.network = list() - cameranet.removeCamera(src.camera) - - -/mob/living/silicon/robot/proc/ResetSecurityCodes() - set category = "Robot Commands" - set name = "Reset Identity Codes" - set desc = "Scrambles your security and identification codes and resets your current buffers. Unlocks you and but permanently severs you from your AI and the robotics console and will deactivate your camera system." - - var/mob/living/silicon/robot/R = src - - if(R) - R.UnlinkSelf() - to_chat(R, "Buffers flushed and reset. Camera system shutdown. All systems operational.") - remove_verb(src, /mob/living/silicon/robot/proc/ResetSecurityCodes) - -/mob/living/silicon/robot/mode() - set name = "Activate Held Object" - set category = "IC" - set src = usr - - var/obj/item/W = get_active_hand() - if (W) - W.attack_self(src) - - return - -/mob/living/silicon/robot/proc/choose_icon(triesleft, list/module_sprites) - - if(triesleft<1 || !module_sprites.len) - return - else - triesleft-- - - var/icontype = tgui_input_list(usr, "Select an icon! [triesleft ? "You have [triesleft] more chances." : "This is your last try."]", "Robot", module_sprites) - - if(icontype) - icon_state = module_sprites[icontype] - else - to_chat(src, "Something is badly wrong with the sprite selection. Harass a coder.") - icon_state = module_sprites[1] - return - - overlays -= "eyes" - update_icons() - - if (triesleft >= 1) - var/choice = tgui_input_list(usr, "Look at your icon - is this what you want?", "Icon", list("Yes","No")) - if(choice=="No") - choose_icon(triesleft, module_sprites) - else - triesleft = 0 - return - else - to_chat(src, "Your icon has been set. You now require a module reset to change it.") - -/mob/living/silicon/robot/proc/sensor_mode() //Medical/Security HUD controller for borgs - set name = "Set Sensor Augmentation" - set category = "Robot Commands" - set desc = "Augment visual feed with internal sensor overlays." - toggle_sensor_mode() - -/mob/living/silicon/robot/proc/add_robot_verbs() - add_verb(src, robot_verbs_default) - -/mob/living/silicon/robot/proc/remove_robot_verbs() - remove_verb(src, robot_verbs_default) - -// Uses power from cyborg's cell. Returns 1 on success or 0 on failure. -// Properly converts using CELLRATE now! Amount is in Joules. -/mob/living/silicon/robot/proc/cell_use_power(amount = 0) - // No cell inserted - if(!cell) - return 0 - - // Power cell is empty. - if(cell.charge == 0) - return 0 - - if(cell.use(amount * CELLRATE * CYBORG_POWER_USAGE_MULTIPLIER)) - used_power_this_tick += amount * CYBORG_POWER_USAGE_MULTIPLIER - return 1 - return 0 - -/mob/living/silicon/robot/hear_apollo() - if(is_component_functioning("comms")) - var/datum/robot_component/RC = get_component("comms") - use_power(RC.active_usage) - return TRUE - return FALSE - - - - - - -/mob/living/silicon/robot/update_sight() - if (stat == DEAD || sight_mode & BORGXRAY) - sight |= SEE_TURFS - sight |= SEE_MOBS - sight |= SEE_OBJS - see_in_dark = 8 - see_invisible = SEE_INVISIBLE_MINIMUM - else if (sight_mode & BORGMESON && sight_mode & BORGTHERM) - sight |= SEE_TURFS - sight |= SEE_MOBS - see_in_dark = 8 - see_invisible = SEE_INVISIBLE_MINIMUM - else if (sight_mode & BORGMESON) - sight |= SEE_TURFS - see_in_dark = 8 - see_invisible = SEE_INVISIBLE_MINIMUM - else if (sight_mode & BORGTHERM) - sight |= SEE_MOBS - see_in_dark = 8 - see_invisible = SEE_INVISIBLE_LEVEL_TWO - else if (stat != DEAD) - sight &= ~SEE_MOBS - sight &= ~SEE_TURFS - sight &= ~SEE_OBJS - see_in_dark = 8 - see_invisible = SEE_INVISIBLE_LEVEL_TWO diff --git a/code/modules/mob/living/silicon/robot/robot_damage.dm b/code/modules/mob/living/silicon/robot/robot_damage.dm deleted file mode 100644 index fc40944505..0000000000 --- a/code/modules/mob/living/silicon/robot/robot_damage.dm +++ /dev/null @@ -1,148 +0,0 @@ -/mob/living/silicon/robot/updatehealth() - if(status_flags & GODMODE) - health = maxHealth - set_stat(CONSCIOUS) - return - health = maxHealth - (getBruteLoss() + getFireLoss()) - return - -/mob/living/silicon/robot/getBruteLoss() - var/amount = 0 - for(var/V in components) - var/datum/robot_component/C = components[V] - if(C.installed != 0) amount += C.brute_damage - return amount - -/mob/living/silicon/robot/getFireLoss() - var/amount = 0 - for(var/V in components) - var/datum/robot_component/C = components[V] - if(C.installed != 0) amount += C.electronics_damage - return amount - -/mob/living/silicon/robot/adjustBruteLoss(amount) - if(amount > 0) - take_overall_damage(amount, 0) - else - heal_overall_damage(-amount, 0) - -/mob/living/silicon/robot/adjustFireLoss(amount) - if(amount > 0) - take_overall_damage(0, amount) - else - heal_overall_damage(0, -amount) - -/mob/living/silicon/robot/proc/get_damaged_components(brute, burn, destroyed = 0) - var/list/datum/robot_component/parts = list() - for(var/V in components) - var/datum/robot_component/C = components[V] - if(C.installed == 1 || (C.installed == -1 && destroyed)) - if((brute && C.brute_damage) || (burn && C.electronics_damage) || (!C.toggled) || (!C.powered && C.toggled)) - parts += C - return parts - -/mob/living/silicon/robot/proc/get_damageable_components() - var/list/rval = new - for(var/V in components) - var/datum/robot_component/C = components[V] - if(C.installed == 1) rval += C - return rval - -/mob/living/silicon/robot/proc/get_armour() - - if(!components.len) return 0 - var/datum/robot_component/C = components["armour"] - if(C && C.installed == 1) - return C - return 0 - -/mob/living/silicon/robot/heal_limb_damage(brute, burn) - var/list/datum/robot_component/parts = get_damaged_components(brute,burn) - if(!parts.len) return - var/datum/robot_component/picked = pick(parts) - picked.heal_damage(brute,burn) - -/mob/living/silicon/robot/take_limb_damage(brute = 0, burn = 0, sharp = 0, edge = 0) - var/list/components = get_damageable_components() - if(!components.len) - return - - //Combat shielding absorbs a percentage of damage directly into the cell. - if(module_active && istype(module_active,/obj/item/robot/combat/shield)) - var/obj/item/robot/combat/shield/shield = module_active - //Shields absorb a certain percentage of damage based on their power setting. - var/absorb_brute = brute*shield.shield_level - var/absorb_burn = burn*shield.shield_level - var/cost = (absorb_brute+absorb_burn)*100 - - cell.charge -= cost - if(cell.charge <= 0) - cell.charge = 0 - to_chat(src, SPAN_DANGER("Your shield has overloaded!")) - else - brute -= absorb_brute - burn -= absorb_burn - to_chat(src, SPAN_DANGER("Your shield absorbs some of the impact!")) - - var/datum/robot_component/armour/A = get_armour() - if(A) - A.take_damage(brute,burn,sharp,edge) - return - - var/datum/robot_component/C = pick(components) - C.take_damage(brute,burn,sharp,edge) - -/mob/living/silicon/robot/heal_overall_damage(brute, burn) - var/list/datum/robot_component/parts = get_damaged_components(brute,burn) - - while(parts.len && (brute>0 || burn>0) ) - var/datum/robot_component/picked = pick(parts) - - var/brute_was = picked.brute_damage - var/burn_was = picked.electronics_damage - - picked.heal_damage(brute,burn) - - brute -= (brute_was-picked.brute_damage) - burn -= (burn_was-picked.electronics_damage) - - parts -= picked - -/mob/living/silicon/robot/take_overall_damage(brute = 0, burn = 0, sharp = 0, used_weapon = null, limb_damage_chance = 80) - if(status_flags & GODMODE) return //godmode - var/list/datum/robot_component/parts = get_damageable_components() - - //Combat shielding absorbs a percentage of damage directly into the cell. - if(module_active && istype(module_active,/obj/item/robot/combat/shield)) - var/obj/item/robot/combat/shield/shield = module_active - //Shields absorb a certain percentage of damage based on their power setting. - var/absorb_brute = brute*shield.shield_level - var/absorb_burn = burn*shield.shield_level - var/cost = (absorb_brute+absorb_burn)*100 - - cell.charge -= cost - if(cell.charge <= 0) - cell.charge = 0 - to_chat(src, SPAN_DANGER("Your shield has overloaded!")) - else - brute -= absorb_brute - burn -= absorb_burn - to_chat(src, SPAN_DANGER("Your shield absorbs some of the impact!")) - - var/datum/robot_component/armour/A = get_armour() - if(A) - A.take_damage(brute,burn,sharp) - return - - while(parts.len && (brute>0 || burn>0) ) - var/datum/robot_component/picked = pick(parts) - - var/brute_was = picked.brute_damage - var/burn_was = picked.electronics_damage - - picked.take_damage(brute,burn) - - brute -= (picked.brute_damage - brute_was) - burn -= (picked.electronics_damage - burn_was) - - parts -= picked diff --git a/code/modules/mob/living/silicon/robot/robot_items.dm b/code/modules/mob/living/silicon/robot/robot_items.dm deleted file mode 100644 index 6b29a47be3..0000000000 --- a/code/modules/mob/living/silicon/robot/robot_items.dm +++ /dev/null @@ -1,93 +0,0 @@ -// A special pen for service droids. Can be toggled to switch between normal writting mode, and paper rename mode -// Allows service droids to rename paper items. - -/obj/item/tool/pen/robopen - desc = "A black ink printing attachment with a paper naming mode." - name = "Printing Pen" - var/mode = 1 - -/obj/item/tool/pen/robopen/attack_self(mob/user) - ..() - - var/choice = tgui_input_list(usr, "Would you like to change color or mode?", "Change Mode", list("Colour","Mode")) - if(!choice) - return - - playsound(src.loc, 'sound/effects/pop.ogg', 25, FALSE) - - switch(choice) - if("Colour") - var/newcolour = tgui_input_list(usr, "Which color would you like to use?", list("black","blue","red","green","yellow")) - if(newcolour) pen_colour = newcolour - if("Mode") - if (mode == 1) - mode = 2 - else - mode = 1 - to_chat(user, "Changed printing mode to '[mode == 2 ? "Rename Paper" : "Write Paper"]'") - -// Copied over from paper's rename verb -// see code\modules\paperwork\paper.dm line 62 - -/obj/item/tool/pen/robopen/proc/RenamePaper(mob/user as mob,obj/paper as obj) - if ( !user || !paper ) - return - var/n_name = input(user, "What would you like to label the paper?", "Paper Labelling", null) as text - if ( !user || !paper ) - return - - n_name = copytext(n_name, 1, 32) - if(( get_dist(user,paper) <= 1 && user.stat == 0)) - paper.name = "paper[(n_name ? text("- '[n_name]'") : null)]" - add_fingerprint(user) - return - -//TODO: Add prewritten forms to dispense when you work out a good way to store the strings. -/obj/item/form_printer - //name = "paperwork printer" - name = "paper dispenser" - icon = 'icons/obj/items/paper.dmi' - icon_state = "paper_bin1" - item_state = "sheet-metal" - -/obj/item/form_printer/attack(mob/living/carbon/M, mob/living/carbon/user) - return - -/obj/item/form_printer/afterattack(atom/target, mob/living/user, flag, params) - if(!target || !flag) - return - - if(istype(target,/obj/structure/surface/table)) - deploy_paper(get_turf(target)) - -/obj/item/form_printer/attack_self(mob/user) - ..() - deploy_paper(get_turf(src)) - -/obj/item/form_printer/proc/deploy_paper(turf/T) - T.visible_message(SPAN_NOTICE("\The [src.loc] dispenses a sheet of crisp white paper.")) - new /obj/item/paper(T) - - -//Personal shielding for the combat module. -/obj/item/robot/combat/shield - name = "personal shielding" - desc = "A powerful experimental module that turns aside or absorbs incoming attacks at the cost of charge." - icon = 'icons/obj/structures/props/decals.dmi' - icon_state = "shock" - var/shield_level = 0.5 //Percentage of damage absorbed by the shield. - -/obj/item/robot/combat/shield/verb/set_shield_level() - set name = "Set shield level" - set category = "Object" - set src in range(0) - - var/N = tgui_input_list(usr, "How much damage should the shield absorb?", "Shield level", list("5","10","25","50","75","100")) - if (N) - shield_level = text2num(N)/100 - -/obj/item/robot/combat/mobility - name = "mobility module" - desc = "By retracting limbs and tucking in its head, a combat android can roll at high speeds." - icon = 'icons/obj/structures/props/decals.dmi' - icon_state = "shock" diff --git a/code/modules/mob/living/silicon/robot/robot_movement.dm b/code/modules/mob/living/silicon/robot/robot_movement.dm deleted file mode 100644 index ef8d160cca..0000000000 --- a/code/modules/mob/living/silicon/robot/robot_movement.dm +++ /dev/null @@ -1,23 +0,0 @@ -/mob/living/silicon/robot/Process_Spaceslipping(prob_slip) - if(module && (istype(module,/obj/item/circuitboard/robot_module/drone))) - return 0 - ..(prob_slip) - -/mob/living/silicon/robot/Process_Spacemove() - if(module) - for(var/obj/item/tank/jetpack/J in module.modules) - if(J && istype(J, /obj/item/tank/jetpack)) - if(J.allow_thrust(0.01)) return 1 - if(..()) return 1 - return 0 - -//No longer needed, but I'll leave it here incase we plan to re-use it. -/mob/living/silicon/robot/movement_delay() - . = ..() - - if(module_active && istype(module_active, /obj/item/robot/combat/mobility)) - . -= 3 - - . += CONFIG_GET(number/robot_delay) - - move_delay = . diff --git a/code/modules/mob/living/silicon/robot/wires.dm b/code/modules/mob/living/silicon/robot/wires.dm deleted file mode 100644 index ea09fe5985..0000000000 --- a/code/modules/mob/living/silicon/robot/wires.dm +++ /dev/null @@ -1,147 +0,0 @@ -#define BORG_WIRE_LAWCHECK 1 -#define BORG_WIRE_MAIN_POWER1 2 -#define BORG_WIRE_MAIN_POWER2 3 -#define BORG_WIRE_AI_CONTROL 4 -#define BORG_WIRE_CAMERA 5 - -/proc/RandomBorgWires() - //to make this not randomize the wires, just set index to 1 and increment it in the flag for loop (after doing everything else). - var/list/Borgwires = list(0, 0, 0, 0, 0) - BorgIndexToFlag = list(0, 0, 0, 0, 0) - BorgIndexToWireColor = list(0, 0, 0, 0, 0) - BorgWireColorToIndex = list(0, 0, 0, 0, 0) - var/flagIndex = 1 - //I think it's easier to read this way, also doesn't rely on the random number generator to land on a new wire. - var/list/colorIndexList = list(BORG_WIRE_LAWCHECK, BORG_WIRE_MAIN_POWER1, BORG_WIRE_MAIN_POWER2, BORG_WIRE_AI_CONTROL, BORG_WIRE_CAMERA) - for (var/flag=1, flag<=16, flag+=flag) - var/colorIndex = pick(colorIndexList) - if (Borgwires[colorIndex]==0) - Borgwires[colorIndex] = flag - BorgIndexToFlag[flagIndex] = flag - BorgIndexToWireColor[flagIndex] = colorIndex - BorgWireColorToIndex[colorIndex] = flagIndex - colorIndexList -= colorIndex // Shortens the list. - //world.log << "Flag: [flag], CIndex: [colorIndex], FIndex: [flagIndex]" - flagIndex+=1 - return Borgwires - -/mob/living/silicon/robot/proc/isWireColorCut(wireColor) - var/wireFlag = BorgWireColorToFlag[wireColor] - return ((src.borgwires & wireFlag) == 0) - -/mob/living/silicon/robot/proc/isWireCut(wireIndex) - var/wireFlag = BorgIndexToFlag[wireIndex] - return ((src.borgwires & wireFlag) == 0) - -/mob/living/silicon/robot/proc/cut(wireColor) - var/wireFlag = BorgWireColorToFlag[wireColor] - var/wireIndex = BorgWireColorToIndex[wireColor] - borgwires &= ~wireFlag - switch(wireIndex) - if(BORG_WIRE_LAWCHECK) //Cut the law wire, and the borg will no longer receive law updates from its AI - if (src.lawupdate == 1) - to_chat(src, "LawSync protocol engaged.") - src.show_laws() - if (BORG_WIRE_AI_CONTROL) //Cut the AI wire to reset AI control - if (src.connected_ai) - src.connected_ai = null - if (BORG_WIRE_CAMERA) - if(camera && camera.status && !scrambledcodes) - camera.toggle_cam_status(usr, TRUE) // Will kick anyone who is watching the Cyborg's camera. - - src.interact(usr) - -/mob/living/silicon/robot/proc/mend(wireColor) - var/wireFlag = BorgWireColorToFlag[wireColor] - var/wireIndex = BorgWireColorToIndex[wireColor] - borgwires |= wireFlag - switch(wireIndex) - if(BORG_WIRE_LAWCHECK) //turns law updates back on assuming the borg hasn't been emagged - if (src.lawupdate == 0) - src.lawupdate = 1 - if(BORG_WIRE_CAMERA) - if(camera && !camera.status && !scrambledcodes) - camera.toggle_cam_status(usr, TRUE) // Will kick anyone who is watching the Cyborg's camera. - - src.interact(usr) - - -/mob/living/silicon/robot/proc/pulse(wireColor) - var/wireIndex = BorgWireColorToIndex[wireColor] - switch(wireIndex) - if(BORG_WIRE_LAWCHECK) //Forces a law update if the borg is set to receive them. Since an update would happen when the borg checks its laws anyway, not much use, but eh - if (src.lawupdate) - src.photosync() - - if (BORG_WIRE_AI_CONTROL) //pulse the AI wire to make the borg reselect an AI - src.connected_ai = select_active_ai() - - if (BORG_WIRE_CAMERA) - if(camera && camera.status && !scrambledcodes) - camera.toggle_cam_status(src, TRUE) // Kick anyone watching the Cyborg's camera, doesn't display you disconnecting the camera. - to_chat(usr, "[src]'s camera lens focuses loudly.") - to_chat(src, "Your camera lens focuses loudly.") - - src.interact(usr) - -/mob/living/silicon/robot/proc/interact(mob/user) - if(wiresexposed && (!isRemoteControlling(user))) - user.set_interaction(src) - var/t1 = text("Access Panel
        \n") - var/list/Borgwires = list( - "Orange" = 1, - "Dark red" = 2, - "White" = 3, - "Yellow" = 4, - "Blue" = 5, - ) - for(var/wiredesc in Borgwires) - var/is_uncut = src.borgwires & BorgWireColorToFlag[Borgwires[wiredesc]] - t1 += "[wiredesc] wire: " - if(!is_uncut) - t1 += "Mend" - else - t1 += "Cut " - t1 += "Pulse " - t1 += "
        " - t1 += text("
        \n[(src.lawupdate ? "The LawSync light is on." : "The LawSync light is off.")]
        \n[(src.connected_ai ? "The AI link light is on." : "The AI link light is off.")]") - t1 += text("
        \n[((!isnull(src.camera) && src.camera.status == 1) ? "The Camera light is on." : "The Camera light is off.")]
        \n") - t1 += text("

        Close

        \n") - user << browse(t1, "window=borgwires") - onclose(user, "borgwires") - -/mob/living/silicon/robot/Topic(href, href_list) - ..() - if (((in_range(src, usr) && istype(src.loc, /turf))) && !isRemoteControlling(usr)) - usr.set_interaction(src) - if (href_list["borgwires"]) - var/t1 = text2num(href_list["borgwires"]) - var/obj/item/held_item = usr.get_held_item() - if (!held_item || !HAS_TRAIT(held_item, TRAIT_TOOL_WIRECUTTERS)) - to_chat(usr, SPAN_WARNING("You need wirecutters!")) - return - if (src.isWireColorCut(t1)) - src.mend(t1) - else - src.cut(t1) - else if (href_list["pulse"]) - var/t1 = text2num(href_list["pulse"]) - var/obj/item/held_item = usr.get_held_item() - if (!held_item || !HAS_TRAIT(held_item, TRAIT_TOOL_MULTITOOL)) - to_chat(usr, SPAN_WARNING("You need a multitool!")) - return - if (src.isWireColorCut(t1)) - to_chat(usr, SPAN_WARNING("You can't pulse a cut wire.")) - return - else - src.pulse(t1) - else if (href_list["close2"]) - close_browser(usr, "borgwires") - usr.unset_interaction() - return - -#undef BORG_WIRE_LAWCHECK -#undef BORG_WIRE_MAIN_POWER1 -#undef BORG_WIRE_MAIN_POWER2 -#undef BORG_WIRE_AI_CONTROL -#undef BORG_WIRE_CAMERA diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index 3ee58585b5..6cf271738b 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -8,9 +8,6 @@ return speak_statement -#define IS_AI 1 -#define IS_ROBOT 2 - /mob/living/silicon/say_understands(mob/other, datum/language/speaking = null) //These only pertain to common. Languages are handled by mob/say_understands() if (!speaking) @@ -42,16 +39,7 @@ if(!findtext(message, "*", 2)) //Second asterisk means it is markup for *bold*, not an *emote. return emote(lowertext(copytext(message,2))) - var/bot_type = 0 //Let's not do a fuck ton of type checks, thanks. - if(isAI(src)) - bot_type = IS_AI - else if(isrobot(src)) - bot_type = IS_ROBOT - - var/mob/living/silicon/ai/AI = src //and let's not declare vars over and over and over for these guys. - var/mob/living/silicon/robot/R = src - - //Must be concious to speak + //Must be conscious to speak if (stat) return @@ -91,84 +79,13 @@ if(M.client) to_chat(M, "[src] transmits, \")[message]\"") return - if(message_mode && bot_type == IS_ROBOT && !R.is_component_functioning("radio")) - to_chat(src, SPAN_DANGER("Your radio isn't functional at this time.")) - return - switch(message_mode) if("department") - switch(bot_type) - if(IS_AI) - return AI.holopad_talk(message) - if(IS_ROBOT) - log_say("[key_name(src)] : [message]") - R.radio.talk_into(src,message,message_mode,verb,speaking) return 1 - if("general") - switch(bot_type) - if(IS_AI) - if (AI.aiRadio.disabledAi) - to_chat(src, SPAN_DANGER("System Error - Transceiver Disabled")) - return - else - log_say("[key_name(src)] : [message]") - AI.aiRadio.talk_into(src,message,null,verb,speaking) - if(IS_ROBOT) - log_say("[key_name(src)] : [message]") - R.radio.talk_into(src,message,null,verb,speaking) return 1 - else if(message_mode) - switch(bot_type) - if(IS_AI) - if (AI.aiRadio.disabledAi) - to_chat(src, SPAN_DANGER("System Error - Transceiver Disabled")) - return - else - log_say("[key_name(src)] : [message]") - AI.aiRadio.talk_into(src,message,message_mode,verb,speaking) - if(IS_ROBOT) - log_say("[key_name(src)] : [message]") - R.radio.talk_into(src,message,message_mode,verb,speaking) return 1 return ..(message,speaking,verb) - -//For holopads only. Usable by AI. -/mob/living/silicon/ai/proc/holopad_talk(message) - - log_say("[key_name(src)] : [message]") - - message = trim(message) - - if (!message) - return - - var/obj/structure/machinery/hologram/holopad/T = src.holo - if(T && T.hologram && T.master == src)//If there is a hologram and its master is the user. - var/verb = say_quote(message) - - //Human-like, sorta, heard by those who understand humans. - var/rendered_a = "[name] [verb], \"[message]\"" - //Speach distorted, heard by those who do not understand AIs. - var/message_stars = stars(message) - - var/rendered_b = "[voice_name] [verb], \"[message_stars]\"" - - to_chat(src, "Holopad transmitted, [real_name] [verb], [message]")//The AI can "hear" its own message. - for(var/mob/M in hearers(T.loc))//The location is the object, default distance. - if(M.say_understands(src))//If they understand AI speak. Humans and the like will be able to. - M.show_message(rendered_a, SHOW_MESSAGE_AUDIBLE) - else//If they do not. - M.show_message(rendered_b, SHOW_MESSAGE_AUDIBLE) - /*Radios "filter out" this conversation channel so we don't need to account for them. - This is another way of saying that we won't bother dealing with them.*/ - else - to_chat(src, "No holopad connected.") - return - return 1 - -#undef IS_AI -#undef IS_ROBOT diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 1638b0fb7f..eb3fe5cd47 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -10,7 +10,6 @@ var/speak_exclamation = "declares" var/speak_query = "queries" var/pose //Yes, now AIs can pose too. - var/obj/item/device/camera/siliconcam/aiCamera = null //photography var/local_transmit //If set, can only speak to others of the same type within a short range. var/med_hud = MOB_HUD_MEDICAL_ADVANCED //Determines the med hud to use @@ -61,18 +60,11 @@ /mob/living/silicon/apply_effect(effect = 0, effecttype = STUN, blocked = 0) return 0//The only effect that can hit them atm is flashes and they still directly edit so this works for now -/proc/islinked(mob/living/silicon/robot/bot, mob/living/silicon/ai/ai) - if(!istype(bot) || !istype(ai)) - return 0 - if (bot.connected_ai == ai) - return 1 - return 0 - // this function shows health in the Status panel /mob/living/silicon/proc/show_system_integrity() if(!stat) - stat(null, text("System integrity: [round((health/maxHealth)*100)]%")) + stat(null, text("System integrity: [floor((health/maxHealth)*100)]%")) else stat(null, text("Systems nonfunctional")) @@ -148,12 +140,12 @@ var/HUD_nbr = 1 switch(hud_choice) if("Medical HUD") - H = huds[MOB_HUD_MEDICAL_OBSERVER] + H = GLOB.huds[MOB_HUD_MEDICAL_OBSERVER] if("Security HUD") - H = huds[MOB_HUD_SECURITY_ADVANCED] + H = GLOB.huds[MOB_HUD_SECURITY_ADVANCED] HUD_nbr = 2 if("Squad HUD") - H = huds[MOB_HUD_FACTION_USCM] + H = GLOB.huds[MOB_HUD_FACTION_MARINE] HUD_nbr = 3 else return diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index c535c6101d..04be1a0a89 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -32,7 +32,7 @@ ) /// The cat will 'play' with dead hunted targets near it until this counter reaches a certain value. var/play_counter = 0 - min_oxy = 16 //Require atleast 16kPA oxygen + min_oxy = 16 //Require at least 16kPA oxygen minbodytemp = 223 //Below -50 Degrees Celcius maxbodytemp = 323 //Above 50 Degrees Celcius holder_type = /obj/item/holder/cat diff --git a/code/modules/mob/living/simple_animal/friendly/corgi.dm b/code/modules/mob/living/simple_animal/friendly/corgi.dm index 3e33df1411..5b896203a7 100644 --- a/code/modules/mob/living/simple_animal/friendly/corgi.dm +++ b/code/modules/mob/living/simple_animal/friendly/corgi.dm @@ -81,7 +81,7 @@ movement_target.attack_animal(src) else if(ishuman(movement_target.loc) ) if(prob(20)) - INVOKE_ASYNC(src, PROC_REF(emote), "stares at the [movement_target] that [movement_target.loc] has with a sad puppy-face") + INVOKE_ASYNC(src, PROC_REF(emote), "stares at [movement_target] that [movement_target.loc] has with a sad puppy-face") if(prob(1)) INVOKE_ASYNC(src, PROC_REF(emote), pick("dances around","chases its tail")) @@ -204,8 +204,6 @@ alone = 0 break if(alone && ian && puppies < 4) - if(near_camera(src) || near_camera(ian)) - return new /mob/living/simple_animal/corgi/puppy(loc) diff --git a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm index c10d4f8327..47b5419630 100644 --- a/code/modules/mob/living/simple_animal/friendly/farm_animals.dm +++ b/code/modules/mob/living/simple_animal/friendly/farm_animals.dm @@ -39,10 +39,10 @@ . = ..() if(.) //chance to go crazy and start wacking stuff - if(!enemies.len && prob(1)) + if(!length(enemies) && prob(1)) Retaliate() - if(enemies.len && prob(10)) + if(length(enemies) && prob(10)) enemies = list() LoseTarget() src.visible_message(SPAN_NOTICE("[src] calms down.")) @@ -83,7 +83,7 @@ user.visible_message(SPAN_NOTICE("[user] milks [src] using \the [O].")) var/transfered = udder.trans_id_to(G, "milk", rand(5,10)) if(G.reagents.total_volume >= G.volume) - to_chat(user, SPAN_DANGER("The [O] is full.")) + to_chat(user, SPAN_DANGER("[O] is full.")) if(!transfered) to_chat(user, SPAN_DANGER("The udder is dry. Wait a bit longer...")) else @@ -209,8 +209,8 @@ new /mob/living/simple_animal/chicken(src.loc) qdel(src) -var/const/MAX_CHICKENS = 50 -var/global/chicken_count = 0 +GLOBAL_VAR_INIT(MAX_CHICKENS, 50) +GLOBAL_VAR_INIT(chicken_count, 0) /mob/living/simple_animal/chicken name = "\improper chicken" @@ -244,7 +244,7 @@ var/global/chicken_count = 0 icon_dead = "chicken_[body_color]_dead" pixel_x = rand(-6, 6) pixel_y = rand(0, 10) - chicken_count++ + GLOB.chicken_count++ /mob/living/simple_animal/chicken/initialize_pass_flags(datum/pass_flags_container/PF) ..() @@ -253,7 +253,7 @@ var/global/chicken_count = 0 /mob/living/simple_animal/chicken/death() ..() - chicken_count-- + GLOB.chicken_count-- if(last_damage_data) var/mob/user = last_damage_data.resolve_mob() if(user) @@ -282,7 +282,7 @@ var/global/chicken_count = 0 var/obj/item/reagent_container/food/snacks/egg/E = new(get_turf(src)) E.pixel_x = rand(-6,6) E.pixel_y = rand(-6,6) - if(chicken_count < MAX_CHICKENS && prob(10)) + if(GLOB.chicken_count < GLOB.MAX_CHICKENS && prob(10)) START_PROCESSING(SSobj, E) /obj/item/reagent_container/food/snacks/egg/var/amount_grown = 0 diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index 109a53c831..2808a60c6d 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -21,7 +21,7 @@ density = FALSE var/body_color //brown, gray and white, leave blank for random layer = ABOVE_LYING_MOB_LAYER - min_oxy = 16 //Require atleast 16kPA oxygen + min_oxy = 16 //Require at least 16kPA oxygen minbodytemp = 223 //Below -50 Degrees Celcius maxbodytemp = 323 //Above 50 Degrees Celcius holder_type = /obj/item/holder/mouse @@ -30,8 +30,9 @@ /mob/living/simple_animal/mouse/Life(delta_time) ..() if(!stat && prob(speak_chance)) - for(var/mob/M in view()) + FOR_DVIEW(var/mob/M, world.view, src, HIDE_INVISIBLE_OBSERVER) M << 'sound/effects/mousesqueek.ogg' + FOR_DVIEW_END if(!ckey && stat == CONSCIOUS && prob(0.5)) set_stat(UNCONSCIOUS) @@ -75,6 +76,7 @@ src.icon_dead = "mouse_[body_color]_splat" src.icon_state = "mouse_[body_color]_splat" layer = ABOVE_LYING_MOB_LAYER + set_body_position(LYING_DOWN) if(client) client.time_died_as_mouse = world.time diff --git a/code/modules/mob/living/simple_animal/friendly/spiderbot.dm b/code/modules/mob/living/simple_animal/friendly/spiderbot.dm index f693574349..cb4d02cd28 100644 --- a/code/modules/mob/living/simple_animal/friendly/spiderbot.dm +++ b/code/modules/mob/living/simple_animal/friendly/spiderbot.dm @@ -6,7 +6,6 @@ minbodytemp = 0 maxbodytemp = 500 - var/obj/item/device/radio/borg/radio = null var/mob/living/silicon/ai/connected_ai = null var/obj/item/cell/cell = null var/obj/structure/machinery/camera/camera = null @@ -138,7 +137,7 @@ src.mind = M.brainmob.mind src.mind.key = M.brainmob.key src.ckey = M.brainmob.ckey - if(client) client.change_view(world_view_size) + if(client) client.change_view(GLOB.world_view_size) src.name = "Spider-bot ([M.brainmob.name])" /mob/living/simple_animal/spiderbot/proc/explode(cause = "exploding") //When emagged. @@ -174,7 +173,6 @@ /mob/living/simple_animal/spiderbot/New() - radio = new /obj/item/device/radio/borg(src) camera = new /obj/structure/machinery/camera(src) camera.c_tag = "Spiderbot-[real_name]" camera.network = list("SS13") diff --git a/code/modules/mob/living/simple_animal/hostile/alien.dm b/code/modules/mob/living/simple_animal/hostile/alien.dm index 6e8d0b8a28..3f9a513552 100644 --- a/code/modules/mob/living/simple_animal/hostile/alien.dm +++ b/code/modules/mob/living/simple_animal/hostile/alien.dm @@ -110,7 +110,7 @@ wound_icon_holder.layer = layer + 0.01 wound_icon_holder.dir = dir - var/health_threshold = max(CEILING((health * 4) / (maxHealth), 1), 0) //From 0 to 4, in 25% chunks + var/health_threshold = max(ceil((health * 4) / (maxHealth)), 0) //From 0 to 4, in 25% chunks if(health > HEALTH_THRESHOLD_DEAD) if(health_threshold > 3) wound_icon_holder.icon_state = "none" diff --git a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm index 2971a35818..5ee60239db 100644 --- a/code/modules/mob/living/simple_animal/hostile/giant_spider.dm +++ b/code/modules/mob/living/simple_animal/hostile/giant_spider.dm @@ -84,7 +84,7 @@ //1% chance to skitter madly away if(!busy && prob(1)) /*var/list/move_targets = list() - for(var/turf/T in orange(20, src)) + for(var/turf/T as anything in ORANGE_TURFS(20, src)) move_targets.Add(T)*/ stop_automated_movement = 1 walk_to(src, pick(orange(20, src)), 1, move_to_delay) diff --git a/code/modules/mob/living/simple_animal/hostile/hostile.dm b/code/modules/mob/living/simple_animal/hostile/hostile.dm index b285ec1179..5a5791eb83 100644 --- a/code/modules/mob/living/simple_animal/hostile/hostile.dm +++ b/code/modules/mob/living/simple_animal/hostile/hostile.dm @@ -145,9 +145,9 @@ /mob/living/simple_animal/hostile/proc/DestroySurroundings() if(prob(break_stuff_probability)) - for(var/dir in cardinal) // North, South, East, West + for(var/dir in GLOB.cardinals) // North, South, East, West for(var/obj/structure/window/obstacle in get_step(src, dir)) - if(obstacle.dir == reverse_dir[dir]) // So that windows get smashed in the right order + if(obstacle.dir == GLOB.reverse_dir[dir]) // So that windows get smashed in the right order obstacle.attack_animal(src) return var/obj/structure/obstacle = locate(/obj/structure, get_step(src, dir)) diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm index b7c091d564..84c5d13f78 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/drone.dm @@ -175,44 +175,45 @@ spark.holder = null var/obj/loot + var/list/reachable_atoms = dview(7, src) //shards loot = new /obj/item/shard(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(75)) loot = new /obj/item/shard(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(50)) loot = new /obj/item/shard(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(25)) loot = new /obj/item/shard(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) //rods loot = new /obj/item/stack/rods(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(75)) loot = new /obj/item/stack/rods(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(50)) loot = new /obj/item/stack/rods(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(25)) loot = new /obj/item/stack/rods(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) //plasteel loot = new /obj/item/stack/sheet/plasteel(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(75)) loot = new /obj/item/stack/sheet/plasteel(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(50)) loot = new /obj/item/stack/sheet/plasteel(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) if(prob(25)) loot = new /obj/item/stack/sheet/plasteel(loc) - step_to(loot, get_turf(pick(view(7, src)))) + step_to(loot, get_turf(pick(reachable_atoms))) return ..() diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.dm new file mode 100644 index 0000000000..6bb0202c2d --- /dev/null +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/giant_lizard.dm @@ -0,0 +1,756 @@ +#define ATTACK_SLASH 0 +#define ATTACK_BITE 1 +#define LIZARD_SPEED_NORMAL 2.8 +#define LIZARD_SPEED_RETREAT 2.5 +#define LIZARD_SPEED_NORMAL_CLIENT -1 +#define LIZARD_SPEED_RETREAT_CLIENT -1.5 + +/mob/living/simple_animal/hostile/retaliate/giant_lizard + name = "giant lizard" + desc = "A large, wolf-like reptile. Its eyes are keenly focused on yours." + icon = 'icons/mob/mob_64.dmi' + icon_state = "Giant Lizard Running" + icon_living = "Giant Lizard Running" + icon_dead = "Giant Lizard Dead" + mob_size = MOB_SIZE_XENO_SMALL + maxHealth = 350 + health = 350 + icon_size = 64 + pixel_x = -16 + old_x = -16 + base_pixel_x = 0 + base_pixel_y = -20 + mobility_flags = MOBILITY_FLAGS_REST_CAPABLE_DEFAULT + affected_by_fire = TRUE + move_to_delay = LIZARD_SPEED_NORMAL + speed = LIZARD_SPEED_NORMAL_CLIENT //speed and move_to_delay are not the same in simplemob code (wow!) + + response_help = "pets" + response_disarm = "tries to push away" + response_harm = "punches" + friendly = "nuzzles" + see_in_dark = 50 + + speak_chance = 2 + speak_emote = "hisses" + emote_hear = list("hisses.", "growls.", "roars.", "bellows.") + emote_see = list("shakes its head.", "wags its tail.", "flicks its tongue.", "yawns.") + + melee_damage_lower = 20 + melee_damage_upper = 25 + attack_same = FALSE + langchat_color = LIGHT_COLOR_GREEN + + ///Reference to the ZZzzz sleep overlay when resting. + var/sleep_overlay + + ///If 0, moves the mob out of attacking into idle state. Used to prevent the mob from chasing down targets that did not mean to hurt it. + var/aggression_value = 0 + + ///Emotes to play when being pet by a friend. + var/list/pet_emotes = list("closes its eyes.", "growls happily.", "wags its tail.", "rolls on the ground.") + ///Cooldown to stop generic emote spam. + COOLDOWN_DECLARE(emote_cooldown) + + ///Collision callbacks for the pounce proc. + var/list/pounce_callbacks = list() + ///Are we currently mauling a mob after pouncing them? Used to stop normal attacks on pounced targets. + var/is_ravaging = FALSE + ///Length of the cooldown for pouncing. + var/pounce_cooldown_length = 9 SECONDS + ///Cooldown for the pounce ability. + COOLDOWN_DECLARE(pounce_cooldown) + + ///How many times the mob is going bleed in the Life() proc. + var/bleed_ticks = 0 + ///Chance of the mob laying down/getting up. + var/chance_to_rest = 0 + ///Is the mob currently running away from a target? + var/is_retreating = FALSE + ///How many times have we attempted to retreat? + var/retreat_attempts = 0 + ///Tied directly to retreat_attempts. If our retreat fail, then we will completely stop trying to retreat for the length of this cooldown. + COOLDOWN_DECLARE(retreat_cooldown) + + ///The food object that the mob is trying to eat. + var/food_target + ///A list of foods the mob is interested in eating. + var/list/acceptable_foods = list(/obj/item/reagent_container/food/snacks/meat, /obj/item/reagent_container/food/snacks/packaged_meal, /obj/item/reagent_container/food/snacks/resin_fruit) + ///Is the mob currently eating the food_target? + var/is_eating = FALSE + ///Cooldown dictating how long the mob will wait between eating food. + COOLDOWN_DECLARE(food_cooldown) + + ///Cooldown for the growl emote. + COOLDOWN_DECLARE(growl_message) + ///Cooldown for when the mob calms down, so the mob doesn't start attacking immediately after calming down. + COOLDOWN_DECLARE(calm_cooldown) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/Initialize() + . = ..() + change_real_name(src, "[name] ([rand(1, 999)])") + pounce_callbacks[/mob] = DYNAMIC(/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_mob_wrapper) + pounce_callbacks[/turf] = DYNAMIC(/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_turf_wrapper) + pounce_callbacks[/obj] = DYNAMIC(/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_obj_wrapper) + +//regular pain datum will make the mob die when trying to pounce after taking enough damage. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/initialize_pain() + pain = new /datum/pain/xeno(src) + +///Proc for growling. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/growl(target_mob, ignore_cooldown = FALSE) + if(!COOLDOWN_FINISHED(src, growl_message) && !ignore_cooldown) + return + if(target_mob) + manual_emote("growls at [target_mob].") + else + manual_emote("growls.") + playsound(loc, "giant_lizard_growl", 60) + COOLDOWN_START(src, growl_message, rand(10, 14) SECONDS) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/get_status_tab_items() + . = ..() + . += "" + . += "Health: [floor(health)]/[floor(maxHealth)]" + if(!COOLDOWN_FINISHED(src, pounce_cooldown)) + . += "Pounce Cooldown: [COOLDOWN_SECONDSLEFT(src, pounce_cooldown)] seconds" + +//the AI gets funky when it gets stunned midcombat. this will help them get back into the fight more organically. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/on_immobilized_trait_loss(datum/source) + . = ..() + find_target_on_trait_loss() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/on_knockedout_trait_loss(datum/source) + . = ..() + find_target_on_trait_loss() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/on_incapacitated_trait_loss(datum/source) + . = ..() + find_target_on_trait_loss() + +///Proc for handling the AI post-status effect. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/find_target_on_trait_loss() + is_retreating = FALSE + if(stance > HOSTILE_STANCE_ALERT) + FindTarget() + MoveToTarget() + +//procs for handling sleeping icons when resting +/mob/living/simple_animal/hostile/retaliate/giant_lizard/AddSleepingIcon() + var/image/sleeping_icon = new('icons/mob/hud/hud.dmi', "slept_icon_centered") + if(sleep_overlay) + return + sleep_overlay = sleeping_icon + overlays += sleep_overlay + addtimer(CALLBACK(src, PROC_REF(RemoveSleepingIcon)), 6 SECONDS) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/RemoveSleepingIcon() + if(sleep_overlay) + overlays -= sleep_overlay + sleep_overlay = null + +//The parent proc sets the stance to IDLE which will break the AI if it's in combat +/mob/living/simple_animal/hostile/retaliate/giant_lizard/stop_moving() + walk_to(src, 0) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/update_transform(instant_update = FALSE) + if(stat == DEAD) + icon_state = icon_dead + else if(body_position == LYING_DOWN) + if(!HAS_TRAIT(src, TRAIT_INCAPACITATED) && !HAS_TRAIT(src, TRAIT_FLOORED)) + icon_state = "Giant Lizard Sleeping" + else + icon_state = "Giant Lizard Knocked Down" + else + icon_state = icon_living + return ..() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/get_examine_text(mob/user) + . = ..() + if(stat == DEAD || user == src) + desc = "A large, wolf-like reptile." + if(user == src) + . += SPAN_NOTICE("\nRest on the ground to restore 5% of your health every second.") + . += SPAN_NOTICE("You're able to pounce targets by using [client && client.prefs && client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_CLICK ? "middle-click" : "shift-click"].") + . += SPAN_NOTICE("You will aggressively maul targets that are prone. Any click on yourself will be passed down to mobs below you, so feel free to click on your sprite in order to attack pounced targets.") + else if((user.faction in faction_group)) + desc = "[initial(desc)] There's a hint of warmth in them." + else + desc = initial(desc) + if(isxeno(user)) //simplemobs aren't coded to handle larva infection so we'll just let them know + . += SPAN_DANGER("This is an unsuitable host for the hive.") + return . + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/set_resting(new_resting, silent, instant) + . = ..() + if(!resting) + RemoveSleepingIcon() + update_transform() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/death() + playsound(loc, 'sound/effects/giant_lizard_death.ogg', 70) + manual_emote("lets out a waning growl.") + return ..() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/attack_hand(mob/living/carbon/human/attacking_mob) + . = ..() + process_attack_hand(attacking_mob) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/attack_alien(mob/living/carbon/xenomorph/attacking_mob) + . = ..() + process_attack_hand(attacking_mob) + +///Proc for handling attacking the lizard with a hand for BOTH XENOS AND HUMANS. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/process_attack_hand(mob/living/carbon/attacking_mob) + if(stat == DEAD) + return + + if(!(attacking_mob.faction in faction_group) && !is_eating) + Retaliate() + + if(attacking_mob.a_intent == INTENT_HELP && (attacking_mob.faction in faction_group)) + if(on_fire) + adjust_fire_stacks(-5, min_stacks = 0) + playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + visible_message(SPAN_DANGER("[attacking_mob] tries to put out the fire on [src]!"), \ + SPAN_WARNING("You try to put out the fire on [src]!"), null, 5) + if(fire_stacks <= 0) + visible_message(SPAN_DANGER("[attacking_mob] has successfully extinguished the fire on [src]!"), \ + SPAN_NOTICE("You extinguished the fire on [src]."), null, 5) + return + if(!resting) + chance_to_rest += 15 + if(resting) + chance_to_rest = 0 + if(COOLDOWN_FINISHED(src, emote_cooldown)) + COOLDOWN_START(src, emote_cooldown, rand(5, 8) SECONDS) + manual_emote(pick(pick(pet_emotes), "stares at [attacking_mob].", "nuzzles [attacking_mob].", "licks [attacking_mob]'s hand."), "nibbles [attacking_mob]'s arm.", "flicks its tongue at [attacking_mob].") + if(prob(50)) + playsound(loc, "giant_lizard_hiss", 25) + if(attacking_mob.a_intent == INTENT_DISARM && prob(75)) + step_to(src, get_step(loc, attacking_mob.dir), 0, LIZARD_SPEED_NORMAL) + +//apply blood splatter when attacked by a sufficently damaging sharp weapon +/mob/living/simple_animal/hostile/retaliate/giant_lizard/attackby(obj/item/weapon, mob/living/carbon/human/attacker) + if(weapon.force > 10 && weapon.sharp && attacker.a_intent != INTENT_HELP) + handle_blood_splatter(get_dir(attacker.loc, loc)) + return ..() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/apply_damage(damage, damagetype, def_zone, used_weapon, sharp, edge, force) + Retaliate() + aggression_value = clamp(aggression_value + 5, 0, 30) + . = ..() + var/retreat_chance = abs((health / maxHealth * 100) - 100) + if(prob(retreat_chance) && health <= maxHealth * 0.66 && COOLDOWN_FINISHED(src, retreat_cooldown)) + if(client && !is_retreating) + is_retreating = TRUE + to_chat(src, SPAN_USERDANGER("Your fight or flight response kicks in, run!")) + speed = LIZARD_SPEED_RETREAT_CLIENT + addtimer(VARSET_CALLBACK(src, speed, LIZARD_SPEED_NORMAL_CLIENT), 8 SECONDS) + addtimer(VARSET_CALLBACK(src, is_retreating, FALSE), 8 SECONDS) + else + MoveTo(target_mob, 12, TRUE, 8 SECONDS) + if(damage >= 10 && damagetype == BRUTE) + add_splatter_floor(loc, TRUE) + bleed_ticks = clamp(bleed_ticks + ceil(damage / 10), 0, 30) + +///Proc that forces the mob to disengage and try to extinguish itself. Will not be called if the mob is already retreating. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/try_to_extinguish() + if(is_retreating || !on_fire || client) + return + + //forget EVERYTHING. we need to stop the flames!!! + stance = HOSTILE_STANCE_ALERT + target_mob = null + food_target = null + is_eating = FALSE + manual_emote("hisses in agony!") + playsound(src, "giant_lizard_hiss", 40) + MoveTo(null, 9, TRUE, 4 SECONDS, FALSE) + COOLDOWN_START(src, calm_cooldown, 8 SECONDS) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/IgniteMob() + . = ..() + if(on_fire) + try_to_extinguish() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/handle_fire() + . = ..() + if(on_fire) + try_to_extinguish() + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/Life(delta_time) + //simplemobs don't have innate knockdown reduction so we'll manually lower it here. + AdjustKnockDown(-0.5) + AdjustStun(-0.5) + if(aggression_value > 0) + aggression_value-- + + if(resting && stat != DEAD) + health += maxHealth * 0.05 + if(prob(33) && !HAS_TRAIT(src, TRAIT_INCAPACITATED) && !HAS_TRAIT(src, TRAIT_FLOORED)) + AddSleepingIcon() + + if(bleed_ticks) + var/is_small_pool = FALSE + if(bleed_ticks < 10) + is_small_pool = TRUE + bleed_ticks-- + add_splatter_floor(loc, is_small_pool) + + . = ..() + + if(client) + return + + //if we haven't gotten hurt in a while, calm down and go back to idling + if(aggression_value == 0 && stance == HOSTILE_STANCE_ATTACKING) + enemies = list() + LoseTarget() + if(COOLDOWN_FINISHED(src, emote_cooldown)) + manual_emote("calms down.") + COOLDOWN_START(src, calm_cooldown, 4 SECONDS) + COOLDOWN_START(src, emote_cooldown, 3 SECONDS) + + //no longer interested in food when we're in combat + if(stance > HOSTILE_STANCE_ALERT) + is_eating = FALSE + + if(stance == HOSTILE_STANCE_IDLE) + stop_automated_movement = FALSE + //if there's a friend on the same tile as us, don't bother getting up (cute!) + var/mob/living/carbon/friend = locate(/mob/living/carbon) in get_turf(src) + if((friend?.faction in faction_group) && resting) + chance_to_rest = 0 + + if(prob(chance_to_rest)) + set_resting(!resting) + chance_to_rest = 0 + + chance_to_rest += rand(1, 2) + + //if we're resting and something catches our interest, get up + if(stance != HOSTILE_STANCE_IDLE && resting) + set_resting(FALSE) + + if(target_mob && !is_retreating && target_mob.stat == CONSCIOUS && stance == HOSTILE_STANCE_ATTACKING && COOLDOWN_FINISHED(src, pounce_cooldown) && (prob(75) || get_dist(src, target_mob) <= 5) && (target_mob in view(5, src))) + pounce(target_mob) + + if(target_mob || on_fire) + return + + //if we are retreating, but we don't have any targets or we're not on fire, stop retreating + if(is_retreating) + stop_moving() + stance = HOSTILE_STANCE_IDLE + + //if we're hungry and we don't have already have our eyes on a snack, try eating food if possible + if(!food_target && COOLDOWN_FINISHED(src, food_cooldown)) + for(var/obj/item/reagent_container/food/snacks/food in view(6, src)) + if(!is_type_in_list(food, acceptable_foods)) + continue + food_target = food + stance = HOSTILE_STANCE_ALERT + stop_automated_movement = TRUE + MoveTo(food_target) + break + + //handling mobs that are invading our personal space + if(stance <= HOSTILE_STANCE_ALERT && !food_target && COOLDOWN_FINISHED(src, calm_cooldown)) + var/intruder_in_sight = FALSE + for(var/mob/living/carbon/intruder in view(5, src)) + if((intruder.faction in faction_group) || intruder.stat != CONSCIOUS || ismonkey(intruder) || intruder.alpha <= 200) + continue + + intruder_in_sight = TRUE + face_atom(intruder) + stance = HOSTILE_STANCE_ALERT + stop_automated_movement = TRUE + if(get_dist(src, intruder) == 3) + growl(intruder) + else if(get_dist(src, intruder) <= 2) + Retaliate() + COOLDOWN_START(src, pounce_cooldown, 1 SECONDS) + break + + if(!intruder_in_sight && stance == HOSTILE_STANCE_ALERT) + stance = HOSTILE_STANCE_IDLE + + //if we have a snack that we want to eat, but we're not munching on it currently, check if it's close to us. + if(food_target && !is_eating) + if(!(food_target in view(5, src))) + stop_moving() + lose_food() + //if the food is next to us AND not in the hands of a mob, start eating + else if(!check_food_loc(food_target) && Adjacent(food_target)) + INVOKE_ASYNC(src, PROC_REF(handle_food), food_target) + + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/bullet_act(obj/projectile/projectile) + . = ..() + if(projectile.damage) + handle_blood_splatter(get_dir(projectile.starting, src)) + add_splatter_floor(loc, FALSE) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/handle_blood_splatter(splatter_dir) + var/obj/effect/temp_visual/dir_setting/bloodsplatter/human/bloodsplatter = new(loc, splatter_dir) + bloodsplatter.pixel_y = -2 + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/AttackingTarget(inherited_target = target_mob) + if(!Adjacent(inherited_target) || is_ravaging || body_position == LYING_DOWN) + return + + if(isliving(inherited_target)) + var/mob/living/target = inherited_target + if(target.stat == DEAD) + to_chat(src, SPAN_WARNING("[target] is dead. There's nothing interesting about a corpse.")) + return + //decimate mobs that are on the ground + if(target.body_position == LYING_DOWN) + ravagingattack(target) + return target + + face_atom(target) + var/attack_type = pick(ATTACK_SLASH, ATTACK_BITE) + attacktext = attack_type ? "claws" : "bites" + flick_attack_overlay(target, attack_type ? "slash" : "animalbite") + playsound(loc, attack_type ? "alien_claw_flesh" : "alien_bite", 25, 1) + target.attack_animal(src) + animation_attack_on(target) + + if(prob(33)) + if(client && !is_retreating) + is_retreating = TRUE + to_chat(src, SPAN_USERDANGER("You gain a rush of speed!")) + speed = LIZARD_SPEED_RETREAT_CLIENT + addtimer(VARSET_CALLBACK(src, speed, LIZARD_SPEED_NORMAL_CLIENT), 2 SECONDS) + addtimer(VARSET_CALLBACK(src, is_retreating, FALSE), 2 SECONDS) + else + MoveTo(target_mob, 8, TRUE, 2 SECONDS, TRUE) //skirmish around our target + return target + +//Used to handle attacks when a client is in the mob. Otherwise we'd default to a generic animal attack. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/UnarmedAttack(atom/target) + var/tile_attack = FALSE + if(target == src) //Clicking self. + target = get_turf(src) + tile_attack = TRUE + + if(isturf(target) && tile_attack) + var/turf/our_turf = target + for(var/mob/living/targets in our_turf) + if(targets == src) + continue + target = targets + break + + if(isliving(target)) + AttackingTarget(target) + next_move = world.time + 8 + +///Proc for when the mob finds food and starts DEVOURING it. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/handle_food(obj/item/reagent_container/food/snacks/food) + manual_emote("starts gnawing [food].") + is_eating = TRUE + for(var/times_to_eat = rand(4, 6), times_to_eat--) + sleep(rand(1.7, 2.5) SECONDS) + if(check_food_loc(food) || stance > HOSTILE_STANCE_ALERT || stat == DEAD) + return + face_atom(food) + playsound(loc,'sound/items/eatfood.ogg', 25, 1) + + for(var/mob/living/carbon/nearest_mob in view(7, src)) + if(nearest_mob != food.last_dropped_by || (nearest_mob in faction_group)) + continue + face_atom(nearest_mob) + manual_emote("stares curiously at [nearest_mob].") + faction_group += nearest_mob.faction_group + break + + qdel(food) + food_target = null + is_eating = FALSE + stance = HOSTILE_STANCE_IDLE + COOLDOWN_START(src, food_cooldown, 30 SECONDS) + +///Proc for checking if someone picked our food target. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/check_food_loc(obj/food) + if(!ismob(food.loc)) + return + + var/mob/living/food_holder = food.loc + stop_moving() + COOLDOWN_START(src, food_cooldown, 15 SECONDS) + food_target = null + is_eating = FALSE + //snagging the food while you're right next to the mob makes it very angry + if(get_dist(src, food_holder) <= 2 && !(food_holder.faction in faction_group)) + Retaliate() + return TRUE + + growl(food.loc) + stance = HOSTILE_STANCE_IDLE + return TRUE + +//Proc for when we lose our food target. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/lose_food() + stance = HOSTILE_STANCE_IDLE + food_target = null + is_eating = FALSE + COOLDOWN_START(src, food_cooldown, 15 SECONDS) + +//Do not stop hunting targets even if they're not visible anymore. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/ListTargets(dist = 9) + if(!length(enemies)) + return list() + var/list/see = orange(src, dist) + see &= enemies + return see + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/evaluate_target(mob/living/target) + //we need to check for monkeys else these guys will tear up all the small hosts for xenos + if((target.faction == faction || (target.faction in faction_group)) && !attack_same || ismonkey(target) || (target in friends)) + return FALSE + if(target.stat != DEAD) + return target + +//Mobs in critical state are now fair game. Rip and tear. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/SA_attackable(target_mob) + if(isliving(target_mob)) + var/mob/living/target = target_mob + //invisible mobs will still randomly be attacked regardless of this check if the lizard is in combat (intended) + if(target.stat == DEAD || target.alpha <= 200) + return TRUE //TRUE means it's unattackable (amazing code!) + return FALSE + +//Immediately retaliate after being attacked. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/Retaliate() + if(stat == DEAD || target_mob || on_fire) + return + aggression_value = clamp(aggression_value + 5, 0, 15) + + . = ..() + + target_mob = FindTarget() + if(target_mob) + growl(target_mob) + MoveToTarget() + + //basic pack behaviour + for(var/mob/living/simple_animal/hostile/retaliate/giant_lizard/pack_member in view(7, src)) + if(pack_member == src || pack_member.target_mob) + continue + pack_member.Retaliate() + +///Proc for moving to targets. walk_to() doesn't check for resting and status effects so we will do it ourselves. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/MoveTo(target, distance = 1, retreat = FALSE, time = 6 SECONDS, return_to_combat = FALSE) + if(stat == DEAD || HAS_TRAIT(src, TRAIT_INCAPACITATED) || HAS_TRAIT(src, TRAIT_FLOORED)) + return + if(resting) + set_resting(FALSE) + if(!retreat) + walk_to(src, target ? target : get_turf(src), distance, move_to_delay) + return + if(!is_retreating) + is_retreating = TRUE + stop_automated_movement = TRUE + stance = HOSTILE_STANCE_ALERT + walk_away(src, target ? target : get_turf(src), distance, LIZARD_SPEED_RETREAT) + addtimer(CALLBACK(src, PROC_REF(stop_retreat), return_to_combat), time) + +//Proc that's called after the retreat has run its course. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/stop_retreat(return_to_combat = FALSE) + is_retreating = FALSE + //extinguishing is top priority + if(on_fire) + resist_fire() + return + if(!return_to_combat) + //can't retreat? go back to fighting + if(retreat_attempts >= 2) + FindTarget() + MoveToTarget() + retreat_attempts = 0 + //seems like it's a life or death situation. we will stop trying to run away. + COOLDOWN_START(src, retreat_cooldown, 20 SECONDS) + return + //don't stop retreating if there are non-friendly carbons in view + for(var/mob/living/carbon/hostile_mob in view(7, src)) + if(hostile_mob.faction in faction_group) + continue + MoveTo(hostile_mob, 10, TRUE, 3 SECONDS, FALSE) + retreat_attempts++ + return + retreat_attempts = 0 + LoseTarget() + else + FindTarget() + MoveToTarget() + +//Replaced walk_to() with MoveTo(). +/mob/living/simple_animal/hostile/retaliate/giant_lizard/MoveToTarget() + stop_automated_movement = TRUE + if(!target_mob || SA_attackable(target_mob)) + stance = HOSTILE_STANCE_IDLE + if(target_mob in ListTargets(10)) + stance = HOSTILE_STANCE_ATTACKING + MoveTo(target_mob) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/resist_fire() + visible_message(SPAN_NOTICE("[src] rolls frantically on the ground to extinguish itself!")) + adjust_fire_stacks(-10) + KnockDown(2) + Stun(2) + +///Ravaging attack, used for when a mob gets pounced or is on the ground. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/ravagingattack(mob/living/target) + if(is_ravaging || !isliving(target)) + return + is_ravaging = TRUE + visible_message(SPAN_DANGER("[src] tears into [target] repeatedly!")) + + var/successful_attacks = 0 + for(var/times_to_attack = 3, times_to_attack > 0, times_to_attack--) + if(Adjacent(target)) + var/damage = rand(melee_damage_lower, melee_damage_upper) * 0.4 + var/attack_type = pick(ATTACK_SLASH, ATTACK_BITE) + attacktext = attack_type ? "claws" : "bites" + flick_attack_overlay(target, attack_type ? "slash" : "animalbite") + playsound(loc, attack_type ? "alien_claw_flesh" : "alien_bite", 25, 1) + target.handle_blood_splatter(get_dir(src.loc, target.loc)) + + if(target.body_position == LYING_DOWN) + target.apply_damage(damage, BRUTE) + target.apply_effect(1, DAZE) + shake_camera(target, 1, 2) + + animation_attack_on(target) + face_atom(target) + sleep(0.5 SECONDS) + successful_attacks++ + if(successful_attacks == 3 && !COOLDOWN_FINISHED(src, pounce_cooldown)) + to_chat(src, SPAN_BOLDWARNING("The bloodlust invigorates you! You will be ready to pounce much sooner.")) + COOLDOWN_START(src, pounce_cooldown, COOLDOWN_TIMELEFT(src, pounce_cooldown) * 0.5) + is_ravaging = FALSE + +//POUNCE PROCS AND WRAPPERS +/////////////////////////// +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounce(target) + if(stat == DEAD || HAS_TRAIT(src, TRAIT_INCAPACITATED) || HAS_TRAIT(src, TRAIT_FLOORED)) + return + if(!COOLDOWN_FINISHED(src, pounce_cooldown)) + to_chat(src, SPAN_WARNING("You can't pounce again that fast! You need to wait [COOLDOWN_SECONDSLEFT(src, pounce_cooldown)] seconds.")) + return + + COOLDOWN_START(src, pounce_cooldown, pounce_cooldown_length) + var/pounce_distance = clamp((get_dist(src, target)), 1, 5) + manual_emote("pounces at [target]!") + INVOKE_ASYNC(src, TYPE_PROC_REF(/atom/movable, throw_atom), target, pounce_distance, SPEED_FAST, src, null, LOW_LAUNCH, PASS_OVER_THROW_MOB, null, pounce_callbacks) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_mob_wrapper(mob/living/pounced_mob) + pounced_mob(pounced_mob) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_mob(mob/living/pounced_mob) + if(stat == DEAD || pounced_mob.stat == DEAD || pounced_mob.mob_size >= MOB_SIZE_BIG || pounced_mob == src) + throwing = FALSE + return + + if(ishuman(pounced_mob) && (pounced_mob.dir in reverse_nearby_direction(dir))) + var/mob/living/carbon/human/human = pounced_mob + if(human.check_shields(15, "the pounce")) //Human shield block. + visible_message(SPAN_DANGER("[src] slams into [human]!")) + KnockDown(1) + Stun(1) + throwing = FALSE //Reset throwing manually. + playsound(human, "bonk", 75, FALSE) //bonk + return + + if(isyautja(human)) + if(human.check_shields(0, "the pounce", 1)) + visible_message(SPAN_DANGER("[human] blocks the pounce of [src] with the combistick!")) + apply_effect(3, WEAKEN) + throwing = FALSE + playsound(human, "bonk", 75, FALSE) + return + else if(prob(75)) //Body slam. + visible_message(SPAN_DANGER("[human] body slams [src]!")) + KnockDown(3) + Stun(3) + throwing = FALSE + playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1) + return + if(iscolonysynthetic(human) && prob(60)) + visible_message(SPAN_DANGER("[human] withstands being pounced and slams down [src]!")) + KnockDown(1.5) + Stun(1.5) + throwing = FALSE + playsound(loc, 'sound/weapons/alien_knockdown.ogg', 25, 1) + return + + playsound(loc, "giant_lizard_hiss", 25) + pounced_mob.KnockDown(0.5) + step_to(src, pounced_mob) + if(!client) + ravagingattack(pounced_mob) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_turf(turf/turf_target) + if(!turf_target.density) + for(var/mob/living/mob in turf_target) + pounced_mob(mob) + break + else + turf_launch_collision(turf_target) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_turf_wrapper(turf/turf_target) + pounced_turf(turf_target) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_obj_wrapper(obj/O) + pounced_obj(O) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/proc/pounced_obj(obj/O) + // Unconscious or dead, or not throwing but used pounce + if(stat != CONSCIOUS) + obj_launch_collision(O) + return + + if(!istype(O, /obj/structure/surface/table) && !istype(O, /obj/structure/surface/rack)) + O.hitby(src) //This resets throwing. + +//Middle mouse button/shift click to pounce. +/mob/living/simple_animal/hostile/retaliate/giant_lizard/click(atom/clicked_atom, list/mods) + if(mods["shift"] && !mods["middle"]) + if(client && client.prefs && !(client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_CLICK)) + pounce(clicked_atom) + return TRUE + + if(mods["middle"] && !mods["shift"]) + if(client && client.prefs && client.prefs.toggle_prefs & TOGGLE_MIDDLE_MOUSE_CLICK) + pounce(clicked_atom) + return TRUE + return ..() + + +///CLIENT EMOTES +//////////////// + +/datum/emote/living/giant_lizard + mob_type_allowed_typecache = list(/mob/living/simple_animal/hostile/retaliate/giant_lizard) + +/datum/emote/living/giant_lizard/growl + key = "growl" + message = "growls." + sound = "giant_lizard_growl" + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + +/datum/emote/living/giant_lizard/hiss + key = "hiss" + message = "hisses." + sound = "giant_lizard_hiss" + emote_type = EMOTE_AUDIBLE|EMOTE_VISIBLE + +#undef ATTACK_SLASH +#undef ATTACK_BITE +#undef LIZARD_SPEED_NORMAL +#undef LIZARD_SPEED_RETREAT +#undef LIZARD_SPEED_NORMAL_CLIENT +#undef LIZARD_SPEED_RETREAT_CLIENT diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm index 79abd5cc7e..64ab6541b2 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm @@ -13,7 +13,7 @@ enemies -= L /mob/living/simple_animal/hostile/retaliate/ListTargets() - if(!enemies.len) + if(!length(enemies)) return list() var/list/see = ..() see &= enemies // Remove all entries that aren't in enemies @@ -27,7 +27,7 @@ continue if(isliving(A)) var/mob/living/M = A - if(!attack_same && M.faction != faction) + if(evaluate_target(M)) enemies |= M for(var/mob/living/simple_animal/hostile/retaliate/H in around) @@ -35,6 +35,7 @@ H.enemies |= enemies return 0 -/mob/living/simple_animal/hostile/retaliate/adjustBruteLoss(damage) - ..(damage) +/mob/living/simple_animal/hostile/retaliate/apply_damage(damage, damagetype, def_zone, used_weapon, sharp, edge, force) Retaliate() + return ..() + diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm index 78c96bbbb7..feb70f6f1b 100644 --- a/code/modules/mob/living/simple_animal/parrot.dm +++ b/code/modules/mob/living/simple_animal/parrot.dm @@ -54,7 +54,7 @@ var/parrot_sleep_dur = 25 //Same as above, this is the var that physically counts down var/parrot_dam_zone = list("chest", "head", "l_arm", "l_leg", "r_arm", "r_leg") //For humans, select a bodypart to attack - var/parrot_speed = 5 //"Delay in machines ticks between movement." according to byond. Yeah, that's BS but it does directly affect movement. Higher number = slower. + var/parrot_speed = 5 //"Delay in GLOB.machines ticks between movement." according to byond. Yeah, that's BS but it does directly affect movement. Higher number = slower. var/parrot_been_shot = 0 //Parrots get a speed bonus after being shot. This will deincrement every Life() and at 0 the parrot will return to regular speed. var/list/speech_buffer = list() @@ -107,10 +107,6 @@ walk(src,0) . = ..() -/* - * Inventory - */ - /mob/living/simple_animal/parrot/Topic(href, href_list) //Can the usr physically do this? @@ -118,7 +114,7 @@ return //Is the usr's mob type able to do this? - if(ishuman(usr) || isrobot(usr)) + if(ishuman(usr)) //Removing from inventory if(href_list["remove_inv"]) @@ -126,14 +122,14 @@ switch(remove_from) if("ears") if(ears) - if(available_channels.len) + if(length(available_channels)) src.say("[pick(available_channels)] BAWWWWWK LEAVE THE HEADSET BAWKKKKK!") else src.say("BAWWWWWK LEAVE THE HEADSET BAWKKKKK!") ears.forceMove(src.loc) ears = null for(var/possible_phrase in speak) - if(copytext(possible_phrase,1,3) in department_radio_keys) + if(copytext(possible_phrase,1,3) in GLOB.department_radio_keys) possible_phrase = copytext(possible_phrase,3,length(possible_phrase)) else to_chat(usr, SPAN_DANGER("There is nothing to remove from its [remove_from].")) @@ -280,8 +276,8 @@ Phrases that the parrot hears in mob/living/say() get added to speach_buffer. Every once in a while, the parrot picks one of the lines from the buffer and replaces an element of the 'speech' list. Then it clears the buffer to make sure they dont magically remember something from hours ago. */ - if(speech_buffer.len && prob(10)) - if(speak.len) + if(length(speech_buffer) && prob(10)) + if(length(speak)) speak.Remove(pick(speak)) speak.Add(pick(speech_buffer)) @@ -308,10 +304,10 @@ parrot_sleep_dur = parrot_sleep_max //Cycle through message modes for the headset - if(speak.len) + if(length(speak)) var/list/newspeak = list() - if(available_channels.len && src.ears) + if(length(available_channels) && src.ears) for(var/possible_phrase in speak) //50/50 chance to not use the radio at all @@ -319,7 +315,7 @@ if(prob(50)) useradio = 1 - if(copytext(possible_phrase,1,3) in department_radio_keys) + if(copytext(possible_phrase,1,3) in GLOB.department_radio_keys) possible_phrase = "[useradio?pick(available_channels):""] [copytext(possible_phrase,3,length(possible_phrase)+1)]" //crop out the channel prefix else possible_phrase = "[useradio?pick(available_channels):""] [possible_phrase]" @@ -328,7 +324,7 @@ else //If we have no headset or channels to use, dont try to use any! for(var/possible_phrase in speak) - if(copytext(possible_phrase,1,3) in department_radio_keys) + if(copytext(possible_phrase,1,3) in GLOB.department_radio_keys) possible_phrase = "[copytext(possible_phrase,3,length(possible_phrase)+1)]" //crop out the channel prefix newspeak.Add(possible_phrase) speak = newspeak @@ -350,7 +346,7 @@ //Wander around aimlessly. This will help keep the loops from searches down //and possibly move the mob into a new are in view of something they can use if(prob(90)) - step(src, pick(cardinal)) + step(src, pick(GLOB.cardinals)) return if(!held_item && !parrot_perch) //If we've got nothing to do... look for something to do. @@ -400,7 +396,7 @@ if(!parrot_perch || parrot_interest.loc != parrot_perch.loc) held_item = parrot_interest parrot_interest.forceMove(src) - visible_message("[src] grabs the [held_item]!", SPAN_NOTICE("You grab the [held_item]!"), "You hear the sounds of wings flapping furiously.") + visible_message("[src] grabs [held_item]!", SPAN_NOTICE("You grab [held_item]!"), "You hear the sounds of wings flapping furiously.") parrot_interest = null parrot_state = PARROT_SWOOP|PARROT_RETURN @@ -564,7 +560,7 @@ return -1 if(held_item) - to_chat(src, SPAN_DANGER("You are already holding the [held_item]")) + to_chat(src, SPAN_DANGER("You are already holding [held_item]")) return 1 for(var/obj/item/I in view(1,src)) @@ -577,7 +573,7 @@ held_item = I I.forceMove(src) - visible_message("[src] grabs the [held_item]!", SPAN_NOTICE("You grab the [held_item]!"), "You hear the sounds of wings flapping furiously.") + visible_message("[src] grabs [held_item]!", SPAN_NOTICE("You grab [held_item]!"), "You hear the sounds of wings flapping furiously.") return held_item to_chat(src, SPAN_DANGER("There is nothing of interest to take.")) @@ -592,7 +588,7 @@ return -1 if(held_item) - to_chat(src, SPAN_DANGER("You are already holding the [held_item]")) + to_chat(src, SPAN_DANGER("You are already holding [held_item]")) return 1 var/obj/item/stolen_item = null @@ -607,7 +603,7 @@ if(stolen_item) if(C.drop_inv_item_to_loc(stolen_item, src)) held_item = stolen_item - visible_message("[src] grabs the [held_item] out of [C]'s hand!", SPAN_NOTICE("You snag the [held_item] out of [C]'s hand!"), "You hear the sounds of wings flapping furiously.") + visible_message("[src] grabs [held_item] out of [C]'s hand!", SPAN_NOTICE("You snag [held_item] out of [C]'s hand!"), "You hear the sounds of wings flapping furiously.") return held_item to_chat(src, SPAN_DANGER("There is nothing of interest to take.")) @@ -642,11 +638,11 @@ var/obj/item/explosive/grenade/G = held_item G.forceMove(src.loc) G.prime() - to_chat(src, "You let go of the [held_item]!") + to_chat(src, "You let go of [held_item]!") held_item = null return 1 - to_chat(src, "You drop the [held_item].") + to_chat(src, "You drop [held_item].") held_item.forceMove(src.loc) held_item = null @@ -689,7 +685,7 @@ return var/verb = "says" - if(speak_emote.len) + if(length(speak_emote)) verb = pick(speak_emote) @@ -700,7 +696,7 @@ if(length(message) >= 2) var/channel_prefix = copytext(message, 1 ,3) - message_mode = department_radio_keys[channel_prefix] + message_mode = GLOB.department_radio_keys[channel_prefix] if(copytext(message,1,2) == ":") var/positioncut = 3 @@ -709,7 +705,7 @@ message = capitalize(trim_left(message)) if(message_mode) - if(message_mode in radiochannels) + if(message_mode in GLOB.radiochannels) if(ears && istype(ears,/obj/item/device/radio)) ears.talk_into(src,message, message_mode, verb, null) diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index 86c19586f6..4ed8ed0ce6 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -1,25 +1,48 @@ +#define OVERLAY_FIRE_LAYER -1 + /mob/living/simple_animal name = "animal" icon = 'icons/mob/animal.dmi' health = 20 maxHealth = 20 + ///Higher speed is slower, negative speed is faster. + speed = 0 + + + melee_damage_lower = 0 + melee_damage_upper = 0 + attacktext = "attacks" + attack_sound = null + //Attacktext is the mob deal 0 damaage. + friendly = "nuzzles" + can_crawl = FALSE + black_market_value = 25 + dead_black_market_value = 0 + + mobility_flags = MOBILITY_FLAGS_LYING_CAPABLE_DEFAULT + var/icon_living = "" var/icon_dead = "" - var/icon_gib = null //We only try to show a gibbing animation if this exists. + var/icon_gib = null var/list/speak = list() var/speak_chance = 0 - var/list/emote_hear = list() //Hearable emotes - var/list/emote_see = list() //Unlike speak_emote, the list of things in this variable only show by themselves with no spoken text. IE: Ian barks, Ian yaps + ///Emotes that can be heard by other mobs. + var/list/emote_hear = list() + ///Unlike speak_emote, the list of things in this variable only show by themselves with no spoken text. IE: Ian barks, Ian yaps. + var/list/emote_see = list() var/turns_per_move = 1 var/turns_since_move = 0 var/meat_amount = 0 var/meat_type - var/stop_automated_movement = 0 //Use this to temporarely stop random movement or to if you write special movement code for animals. - var/wander = 1 // Does the mob wander around when idle? - var/stop_automated_movement_when_pulled = 1 //When set to 1 this stops the animal from moving when someone is pulling it. + ///Use this to temporarely stop random movement or to if you write special movement code for animals. + var/stop_automated_movement = 0 + ///Does the mob wander around when idle? + var/wander = 1 + ///When set to 1 this stops the animal from moving when someone is pulling it. + var/stop_automated_movement_when_pulled = 1 //Interaction var/response_help = "tries to help" @@ -30,34 +53,31 @@ //Temperature effect var/minbodytemp = 250 var/maxbodytemp = 350 - var/heat_damage_per_tick = 3 //amount of damage applied if animal's body temperature is higher than maxbodytemp - var/cold_damage_per_tick = 2 //same as heat_damage_per_tick, only if the bodytemperature it's lower than minbodytemp + ///amount of damage applied if animal's body temperature is higher than maxbodytemp + var/heat_damage_per_tick = 3 + ///same as heat_damage_per_tick, only if the bodytemperature it's lower than minbodytemp + var/cold_damage_per_tick = 2 + + ///Will this mob be affected by fire/napalm? Set to FALSE for all mobs as the implications could be weird due to not being tested for all simple mobs. + var/affected_by_fire = FALSE //Atmos effect - Yes, you can make creatures that require phoron or co2 to survive. N2O is a trace gas and handled separately, hence why it isn't here. It'd be hard to add it. Hard and me don't mix (Yes, yes make all the dick jokes you want with that.) - Errorage + //Leaving something at 0 means it's off - has no maximum var/min_oxy = 5 - var/max_oxy = 0 //Leaving something at 0 means it's off - has no maximum + var/max_oxy = 0 var/min_tox = 0 var/max_tox = 1 var/min_co2 = 0 var/max_co2 = 5 var/min_n2 = 0 var/max_n2 = 0 - var/unsuitable_atoms_damage = 2 //This damage is taken when atmos doesn't fit all the requirements above - speed = 0 //LETS SEE IF I CAN SET SPEEDS FOR SIMPLE MOBS WITHOUT DESTROYING EVERYTHING. Higher speed is slower, negative speed is faster + ///This damage is taken when atmos doesn't fit all the requirements above + var/unsuitable_atoms_damage = 2 + var/fire_overlay /// Whether or not this simple_animal can squeeze under doors var/squeeze_under = FALSE - //LETTING SIMPLE ANIMALS ATTACK? WHAT COULD GO WRONG. Defaults to zero so Ian can still be cuddly - melee_damage_lower = 0 - melee_damage_upper = 0 - attacktext = "attacks" - attack_sound = null - friendly = "nuzzles" //If the mob does no damage with it's attack - can_crawl = FALSE - black_market_value = 25 - dead_black_market_value = 0 - lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE universal_speak = FALSE @@ -79,8 +99,63 @@ /mob/living/simple_animal/updatehealth() return -/mob/living/simple_animal/Life(delta_time) +/mob/living/simple_animal/rejuvenate() + health = maxHealth + SSmob.living_misc_mobs += src + return ..() + +/mob/living/simple_animal/get_examine_text(mob/user) + . = ..() + if(stat == DEAD) + . += SPAN_BOLDWARNING("[user == src ? "You are" : "It is"] DEAD. Kicked the bucket.") + else + var/percent = floor((health / maxHealth * 100)) + switch(percent) + if(95 to INFINITY) + . += SPAN_NOTICE("[user == src ? "You look" : "It looks"] quite healthy.") + if(75 to 94) + . += SPAN_NOTICE("[user == src ? "You look" : "It looks"] slightly injured.") + if(50 to 74) + . += SPAN_DANGER("[user == src ? "You look" : "It looks"] injured.") + if(25 to 49) + . += SPAN_DANGER("[user == src ? "You are bleeding" : "It bleeds"] with gory wounds.") + if(-INFINITY to 24) + . += SPAN_BOLDWARNING("[user == src ? "You are" : "It is"] heavily injured and limping badly.") + +/mob/living/simple_animal/handle_fire() + if(..()) + return + apply_damage(fire_reagent.intensityfire * 0.5, BURN) + +/mob/living/simple_animal/IgniteMob() + if(!affected_by_fire) + return + return ..() +/mob/living/simple_animal/update_fire() + if(!on_fire) + overlays -= fire_overlay + if(on_fire && fire_reagent) + var/image/fire_overlay_image + if(mob_size >= MOB_SIZE_BIG) + if((body_position != LYING_DOWN)) + fire_overlay_image = image("icon"='icons/mob/xenos/overlay_effects64x64.dmi', "icon_state"="alien_fire", "layer" = OVERLAY_FIRE_LAYER) + else + fire_overlay_image = image("icon"='icons/mob/xenos/overlay_effects64x64.dmi', "icon_state"="alien_fire_lying", "layer" = OVERLAY_FIRE_LAYER) + else + fire_overlay_image = image("icon" = 'icons/mob/xenos/effects.dmi', "icon_state"="alien_fire", "layer" = OVERLAY_FIRE_LAYER) + + fire_overlay_image.pixel_y -= pixel_y + fire_overlay_image.pixel_x -= pixel_x + fire_overlay_image.appearance_flags |= RESET_COLOR|RESET_ALPHA + fire_overlay_image.color = fire_reagent.burncolor + fire_overlay_image.color = fire_reagent.burncolor + overlays += fire_overlay_image + fire_overlay = fire_overlay_image + +/mob/living/simple_animal/Life(delta_time) + if(affected_by_fire) + handle_fire() //Health if(stat == DEAD) if(health > 0) @@ -106,7 +181,7 @@ turns_since_move++ if(turns_since_move >= turns_per_move) if(!(stop_automated_movement_when_pulled && pulledby)) //Soma animals don't move when pulled - var/move_dir = pick(cardinal) + var/move_dir = pick(GLOB.cardinals) Move(get_step(src, move_dir )) setDir(move_dir) turns_since_move = 0 @@ -114,33 +189,33 @@ //Speaking if(!client && speak_chance) if(rand(0,200) < speak_chance) - if(speak && speak.len) - if((emote_hear && emote_hear.len) || (emote_see && emote_see.len)) - var/length = speak.len - if(emote_hear && emote_hear.len) - length += emote_hear.len - if(emote_see && emote_see.len) - length += emote_see.len + if(LAZYLEN(speak)) + if(LAZYLEN(emote_hear) || LAZYLEN(emote_see)) + var/length = length(speak) + if(LAZYLEN(emote_hear)) + length += length(emote_hear) + if(LAZYLEN(emote_see)) + length += length(emote_see) var/randomValue = rand(1,length) - if(randomValue <= speak.len) + if(randomValue <= length(speak)) INVOKE_ASYNC(src, PROC_REF(say), pick(speak)) else - randomValue -= speak.len - if(emote_see && randomValue <= emote_see.len) + randomValue -= length(speak) + if(emote_see && randomValue <= length(emote_see)) INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1) else INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2) else INVOKE_ASYNC(src, PROC_REF(say), pick(speak)) else - if(!(emote_hear && emote_hear.len) && (emote_see && emote_see.len)) + if(!LAZYLEN(emote_hear) && LAZYLEN(emote_see)) INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1) - if((emote_hear && emote_hear.len) && !(emote_see && emote_see.len)) + if(LAZYLEN(emote_hear) && !LAZYLEN(emote_see)) INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2) - if((emote_hear && emote_hear.len) && (emote_see && emote_see.len)) - var/length = emote_hear.len + emote_see.len + if(LAZYLEN(emote_hear) && LAZYLEN(emote_see)) + var/length = length(emote_hear) + length(emote_see) var/pick = rand(1,length) - if(pick <= emote_see.len) + if(pick <= length(emote_see)) INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_see),1) else INVOKE_ASYNC(src, PROC_REF(manual_emote), pick(emote_hear),2) @@ -217,6 +292,7 @@ SSmob.living_misc_mobs -= src icon_state = icon_dead black_market_value = dead_black_market_value + set_body_position(LYING_DOWN) /mob/living/simple_animal/gib(datum/cause_data/cause = create_cause_data("gibbing", src)) @@ -244,32 +320,46 @@ var/damage = rand(M.melee_damage_lower, M.melee_damage_upper) apply_damage(damage, BRUTE) - -/mob/living/simple_animal/attack_hand(mob/living/carbon/human/M as mob) +/mob/living/simple_animal/attack_hand(mob/living/carbon/human/attacking_mob) ..() - switch(M.a_intent) - + switch(attacking_mob.a_intent) if(INTENT_HELP) if (health > 0) - for(var/mob/O in viewers(src, null)) - if ((O.client && !( O.blinded ))) - O.show_message(SPAN_NOTICE("[M] [response_help] [src]"), SHOW_MESSAGE_VISIBLE) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + visible_message(SPAN_NOTICE("[attacking_mob] [response_help] [src].")) + return 1 if(INTENT_GRAB) - if(M == src || anchored) - return 0 - M.start_pulling(src) + attacking_mob.start_pulling(src) + return 1 + if(INTENT_DISARM) + visible_message(SPAN_NOTICE("[attacking_mob] [response_disarm] [src].")) + attacking_mob.animation_attack_on(src) + attacking_mob.flick_attack_overlay(src, "disarm") return 1 - if(INTENT_HARM, INTENT_DISARM) - apply_damage(harm_intent_damage, BRUTE) - for(var/mob/O in viewers(src, null)) - if ((O.client && !( O.blinded ))) - O.show_message(SPAN_DANGER("[M] [response_harm] [src]"), SHOW_MESSAGE_VISIBLE) + if(INTENT_HARM) + var/datum/unarmed_attack/attack = attacking_mob.species.unarmed + if(!attack.is_usable(attacking_mob)) + attack = attacking_mob.species.secondary_unarmed + return 0 - return + attacking_mob.animation_attack_on(src) + attacking_mob.flick_attack_overlay(src, "punch") + + var/extra_cqc_dmg = 0 + if(attacking_mob.skills) + extra_cqc_dmg = attacking_mob.skills?.get_skill_level(SKILL_CQC) + var/final_damage = 0 + + playsound(loc, attack.attack_sound, 25, 1) + visible_message(SPAN_DANGER("[attacking_mob] [response_harm] [src]!"), null, null, 5) + + final_damage = attack.damage + extra_cqc_dmg + harm_intent_damage + apply_damage(final_damage, BRUTE, src, sharp = attack.sharp, edge = attack.edge) + return 1 /mob/living/simple_animal/can_be_pulled_by(mob/pulling_mob) if(locate(/obj/item/explosive/plastic) in contents) @@ -288,7 +378,7 @@ MED.use(1) for(var/mob/M as anything in viewers(src, null)) if ((M.client && !( M.blinded ))) - M.show_message(SPAN_NOTICE("[user] applies the [MED] on [src]"), SHOW_MESSAGE_VISIBLE) + M.show_message(SPAN_NOTICE("[user] applies [MED] on [src]"), SHOW_MESSAGE_VISIBLE) return else to_chat(user, SPAN_NOTICE(" this [src] is dead, medical items won't bring it back to life.")) @@ -330,7 +420,10 @@ explosion_throw(severity, direction) /mob/living/simple_animal/adjustBruteLoss(damage) - health = Clamp(health - damage, 0, maxHealth) + health = clamp(health - damage, 0, maxHealth) + +/mob/living/simple_animal/adjustFireLoss(damage) + health = clamp(health - damage, 0, maxHealth) /mob/living/simple_animal/proc/SA_attackable(target_mob) if (isliving(target_mob)) @@ -356,7 +449,7 @@ var/verb = "says" - if(speak_emote.len) + if(length(speak_emote)) verb = pick(speak_emote) message = capitalize(trim_left(message)) @@ -382,3 +475,5 @@ if(user && error_msg) to_chat(user, SPAN_WARNING("You aren't sure how to inject this animal!")) return FALSE + +#undef OVERLAY_FIRE_LAYER diff --git a/code/modules/mob/logout.dm b/code/modules/mob/logout.dm index 3f65e01e91..839645f108 100644 --- a/code/modules/mob/logout.dm +++ b/code/modules/mob/logout.dm @@ -1,6 +1,6 @@ /mob/Logout() SEND_SIGNAL(src, COMSIG_MOB_LOGOUT) - nanomanager.user_logout(src) // this is used to clean up (remove) this user's Nano UIs + SSnano.nanomanager.user_logout(src) // this is used to clean up (remove) this user's Nano UIs if(interactee) unset_interaction() GLOB.player_list -= src diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 13c47719a7..0c9b34bbb8 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -54,8 +54,8 @@ if(!faction_group) faction_group = list(faction) - last_mob_gid++ - gid = last_mob_gid + GLOB.last_mob_gid++ + gid = GLOB.last_mob_gid GLOB.mob_list += src if(stat == DEAD) @@ -431,6 +431,7 @@ /mob/proc/swap_hand() hand = !hand + SEND_SIGNAL(src, COMSIG_MOB_SWAPPED_HAND) //attempt to pull/grab something. Returns true upon success. /mob/proc/start_pulling(atom/movable/AM, lunge, no_msg) @@ -469,6 +470,9 @@ if(!M.can_be_pulled_by(src)) return else if(istype(AM, /obj)) + if(recently_grabbed > world.time) + return FALSE + recently_grabbed = world.time + 6 AM.add_fingerprint(src) if(!QDELETED(AM.pulledby) && !QDELETED(M)) @@ -689,7 +693,7 @@ note dizziness decrements automatically in the mob's Life() proc. // facing verbs /mob/proc/canface() - if(client && client.moving) return 0 + if(client?.moving) return 0 if(stat==2) return 0 if(anchored) return 0 if(monkeyizing) return 0 @@ -756,7 +760,7 @@ note dizziness decrements automatically in the mob's Life() proc. recalculate_move_delay = TRUE if(usr.stat) - to_chat(usr, "You are unconcious and cannot do that!") + to_chat(usr, "You are unconscious and cannot do that!") return if(usr.is_mob_restrained()) @@ -798,7 +802,7 @@ note dizziness decrements automatically in the mob's Life() proc. else visible_message(SPAN_WARNING("[usr] rips [selection] out of [src]'s body."),SPAN_WARNING("[usr] rips [selection] out of your body."), null, 5) - if(valid_objects.len == 1) //Yanking out last object - removing verb. + if(length(valid_objects) == 1) //Yanking out last object - removing verb. remove_verb(src, /mob/proc/yank_out_object) if(ishuman(src)) @@ -979,6 +983,7 @@ note dizziness decrements automatically in the mob's Life() proc. /// Adds this list to the output to the stat browser /mob/proc/get_status_tab_items() . = list() + SEND_SIGNAL(src, COMSIG_MOB_GET_STATUS_TAB_ITEMS, .) /mob/proc/get_role_name() return @@ -1046,3 +1051,14 @@ note dizziness decrements automatically in the mob's Life() proc. /mob/proc/update_stat() return + +/// Send src back to the lobby as a `/mob/new_player()` +/mob/proc/send_to_lobby() + var/mob/new_player/new_player = new + + if(!mind) + mind_initialize() + + mind.transfer_to(new_player) + + qdel(src) diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index e2f40506b2..c04a745ea1 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -3,6 +3,7 @@ layer = MOB_LAYER animate_movement = 2 rebounds = TRUE + blocks_emissive = EMISSIVE_BLOCK_GENERIC var/mob_flags = NO_FLAGS var/datum/mind/mind @@ -16,15 +17,12 @@ var/atom/movable/screen/hands = null //robot - var/adminhelp_marked = 0 // Prevents marking an Adminhelp more than once. Making this a client define will cause runtimes and break some Adminhelps - var/adminhelp_marked_admin = "" // Ckey of last marking admin - /// a ckey that persists client logout / ghosting, replaced when a client inhabits the mob var/persistent_ckey /*A bunch of this stuff really needs to go under their own defines instead of being globally attached to mob. A variable should only be globally attached to turfs/obj/whatever, when it is in fact needed as such. - The current method unnecessarily clusters up the variable list, especially for humans (although rearranging won't really clean it up a lot but the difference will be noticable for other mobs). + The current method unnecessarily clusters up the variable list, especially for humans (although rearranging won't really clean it up a lot but the difference will be noticeable for other mobs). I'll make some notes on where certain variable defines should probably go. Changing this around would probably require a good look-over the pre-existing code. */ @@ -116,6 +114,7 @@ var/life_kills_total = 0 var/life_damage_taken_total = 0 var/life_revives_total = 0 + var/life_ib_total = 0 var/festivizer_hits_total = 0 var/life_value = 1 // when killed, the killee gets this much added to its life_kills_total @@ -166,7 +165,7 @@ var/datum/skills/skills = null //the knowledge you have about certain abilities and actions (e.g. do you how to do surgery?) //see skills.dm in #define folder and code/datums/skills.dm for more info - var/obj/item/legcuffs/legcuffed = null //Same as handcuffs but for legs. Bear traps use this. + var/obj/item/restraint/legcuffs/legcuffed = null //Same as handcuffs but for legs. Bear traps use this. var/list/viruses = list() //List of active diseases @@ -175,7 +174,7 @@ mouse_drag_pointer = MOUSE_ACTIVE_POINTER - var/status_flags = CANKNOCKDOWN|CANPUSH|STATUS_FLAGS_DEBILITATE //bitflags defining which status effects can be inflicted (replaces canweaken, canstun, etc) + var/status_flags = DEFAULT_MOB_STATUS_FLAGS //bitflags defining which status effects can be inflicted (replaces canweaken, canstun, etc) var/area/lastarea = null var/obj/control_object //Used by admins to possess objects. All mobs should have this var @@ -196,6 +195,8 @@ var/recently_pointed_to = 0 //used as cooldown for the pointing verb. + var/recently_grabbed = 0 //used as a cooldown for item grabs + ///Color matrices to be applied to the client window. Assoc. list. var/list/client_color_matrices @@ -367,10 +368,6 @@ switch(type) if(/mob/living/carbon/human) possibleverbs += typesof(/mob/living/carbon/proc,/mob/living/carbon/verb,/mob/living/carbon/human/verb,/mob/living/carbon/human/proc) - if(/mob/living/silicon/robot) - possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/robot/proc,/mob/living/silicon/robot/verb) - if(/mob/living/silicon/ai) - possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/ai/proc) possibleverbs -= verbs possibleverbs += "Cancel" // ...And one for the bottom @@ -404,7 +401,7 @@ if(!check_rights(R_SPAWN)) return - if(!languages.len) + if(!length(languages)) to_chat(usr, "This mob knows no languages.") return diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index a5caf0ad06..c326cc81f6 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -78,14 +78,19 @@ ADD_TRAIT(victim, TRAIT_FLOORED, CHOKEHOLD_TRAIT) /obj/item/grab/proc/progress_passive(mob/living/carbon/human/user, mob/living/victim) + if(SEND_SIGNAL(victim, COMSIG_MOB_AGGRESSIVELY_GRABBED, user) & COMSIG_MOB_AGGRESIVE_GRAB_CANCEL) + to_chat(user, SPAN_WARNING("You can't grab [victim] aggressively!")) + return + user.grab_level = GRAB_AGGRESSIVE playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) user.visible_message(SPAN_WARNING("[user] has grabbed [victim] aggressively!"), null, null, 5) /obj/item/grab/proc/progress_aggressive(mob/living/carbon/human/user, mob/living/victim) user.grab_level = GRAB_CHOKE - playsound(src.loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) + playsound(loc, 'sound/weapons/thudswoosh.ogg', 25, 1, 7) user.visible_message(SPAN_WARNING("[user] holds [victim] by the neck and starts choking them!"), null, null, 5) + msg_admin_attack("[key_name(user)] started to choke [key_name(victim)] at [get_area_name(victim)]", victim.loc.x, victim.loc.y, victim.loc.z) victim.Move(user.loc, get_dir(victim.loc, user.loc)) victim.update_transform(TRUE) @@ -106,7 +111,7 @@ if(pulled.stat == DEAD && !pulled.chestburst) to_chat(xeno, SPAN_WARNING("Ew, [pulled] is already starting to rot.")) return 0 - if(xeno.stomach_contents.len) //Only one thing in the stomach at a time, please + if(length(xeno.stomach_contents)) //Only one thing in the stomach at a time, please to_chat(xeno, SPAN_WARNING("You already have something in your belly, there's no way that will fit.")) return 0 /* Saving this in case we want to allow devouring of dead bodies UNLESS their client is still online somewhere @@ -117,22 +122,24 @@ to_chat(src, "You start to devour [pulled] but realize \he is already dead.") return */ if(user.action_busy) - to_chat(xeno, SPAN_WARNING("You are already busy with something.")) + to_chat(xeno, SPAN_WARNING("We are already busy with something.")) return + SEND_SIGNAL(xeno, COMSIG_MOB_EFFECT_CLOAK_CANCEL) xeno.visible_message(SPAN_DANGER("[xeno] starts to devour [pulled]!"), \ - SPAN_DANGER("You start to devour [pulled]!"), null, 5) + SPAN_DANGER("We start to devour [pulled]!"), null, 5) if(HAS_TRAIT(xeno, TRAIT_CLOAKED)) //cloaked don't show the visible message, so we gotta work around to_chat(pulled, FONT_SIZE_HUGE(SPAN_DANGER("[xeno] is trying to devour you!"))) if(do_after(xeno, 50, INTERRUPT_NO_NEEDHAND, BUSY_ICON_HOSTILE)) - if(isxeno(pulled.loc) && !xeno.stomach_contents.len) + if(isxeno(pulled.loc) && !length(xeno.stomach_contents)) to_chat(xeno, SPAN_WARNING("Someone already ate \the [pulled].")) return 0 - if(xeno.pulling == pulled && !pulled.buckled && (pulled.stat != DEAD || pulled.chestburst) && !xeno.stomach_contents.len) //make sure you've still got them in your claws, and alive + if(xeno.pulling == pulled && !pulled.buckled && (pulled.stat != DEAD || pulled.chestburst) && !length(xeno.stomach_contents)) //make sure you've still got them in your claws, and alive if(SEND_SIGNAL(pulled, COMSIG_MOB_DEVOURED, xeno) & COMPONENT_CANCEL_DEVOUR) return FALSE xeno.visible_message(SPAN_WARNING("[xeno] devours [pulled]!"), \ - SPAN_WARNING("You devour [pulled]!"), null, 5) + SPAN_WARNING("We devour [pulled]!"), null, 5) + log_interact(xeno, pulled, "[key_name(xeno)] devoured [key_name(pulled)] at [get_area_name(xeno)]") if(ishuman(pulled)) var/mob/living/carbon/human/pulled_human = pulled @@ -144,5 +151,5 @@ pulled.forceMove(xeno) return TRUE if(!(pulled in xeno.stomach_contents)) - to_chat(xeno, SPAN_WARNING("You stop devouring \the [pulled]. \He probably tasted gross anyways.")) + to_chat(xeno, SPAN_WARNING("We stop devouring [pulled]. They probably tasted gross anyways.")) return 0 diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 2664c14a8a..b27d8d984e 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -29,7 +29,7 @@ //TODO: Integrate defence zones and targeting body parts with the actual organ system, move these into organ definitions. /// The base miss chance for the different defence zones -var/list/global/base_miss_chance = list( +GLOBAL_LIST_INIT(base_miss_chance, list( "head" = 10, "chest" = 0, "groin" = 5, @@ -43,11 +43,11 @@ var/list/global/base_miss_chance = list( "r_foot" = 40, "eyes" = 20, "mouth" = 15, -) +)) //Used to weight organs when an organ is hit randomly (i.e. not a directed, aimed attack). //Also used to weight the protection value that armor provides for covering that body part when calculating protection from full-body effects. -var/list/global/organ_rel_size = list( +GLOBAL_LIST_INIT(organ_rel_size, list( "head" = 20, "chest" = 70, "groin" = 30, @@ -61,10 +61,10 @@ var/list/global/organ_rel_size = list( "r_foot" = 10, "eyes" = 5, "mouth" = 5, -) +)) // This is much faster than a string comparison -var/global/list/limb_types_by_name = list( +GLOBAL_LIST_INIT(limb_types_by_name, list( "head" = /obj/limb/head, "chest" = /obj/limb/chest, "groin" = /obj/limb/groin, @@ -76,7 +76,7 @@ var/global/list/limb_types_by_name = list( "r_hand" = /obj/limb/hand/r_hand, "l_foot" = /obj/limb/foot/l_foot, "r_foot" = /obj/limb/foot/r_foot, -) +)) /proc/check_zone(zone) if(!zone) @@ -99,17 +99,17 @@ var/global/list/limb_types_by_name = list( var/rand_zone = zone while (rand_zone == zone) rand_zone = pick ( - organ_rel_size["head"]; "head", - organ_rel_size["chest"]; "chest", - organ_rel_size["groin"]; "groin", - organ_rel_size["l_arm"]; "l_arm", - organ_rel_size["r_arm"]; "r_arm", - organ_rel_size["l_leg"]; "l_leg", - organ_rel_size["r_leg"]; "r_leg", - organ_rel_size["l_hand"]; "l_hand", - organ_rel_size["r_hand"]; "r_hand", - organ_rel_size["l_foot"]; "l_foot", - organ_rel_size["r_foot"]; "r_foot", + GLOB.organ_rel_size["head"]; "head", + GLOB.organ_rel_size["chest"]; "chest", + GLOB.organ_rel_size["groin"]; "groin", + GLOB.organ_rel_size["l_arm"]; "l_arm", + GLOB.organ_rel_size["r_arm"]; "r_arm", + GLOB.organ_rel_size["l_leg"]; "l_leg", + GLOB.organ_rel_size["r_leg"]; "r_leg", + GLOB.organ_rel_size["l_hand"]; "l_hand", + GLOB.organ_rel_size["r_hand"]; "r_hand", + GLOB.organ_rel_size["l_foot"]; "l_foot", + GLOB.organ_rel_size["r_foot"]; "r_foot", ) return rand_zone @@ -131,6 +131,72 @@ var/global/list/limb_types_by_name = list( index++ return output_message +/** + * Summary: proc that parses an html input string and scrambles the non-html string contents. + * + * Arguments: + * * message - an html string value to be parsed and modified. + * + * Return: + * returns the parsed and modified html output with the text content being partially scrambled with asteriks + */ +/proc/stars_decode_html(message) + if(!length(message)) + return + + // boolean value to know if the current indexed element needs to be scrambled. + var/parsing_message = FALSE + + // boolean values to know if we are currently inside a double or single quotation. + var/in_single_quote = FALSE + var/in_double_quote = FALSE + + // string of what tag we're currently in + var/current_tag = "" + var/escaped_tag = FALSE + + // string that will be scrambled + var/current_string_to_scramble = "" + + // output string after parse + var/output_message = "" + for(var/character_index in 1 to length(message)) + var/current_char = message[character_index] + + // Apparent edge case safety, we only want to check the < and > on the edges of the tag. + if(!parsing_message) + if(current_char == "'") + in_single_quote = !in_single_quote + if(current_char == "\"") + in_double_quote = !in_double_quote + if(in_single_quote || in_double_quote) + output_message += current_char + continue + + if(current_char == ">") + parsing_message = TRUE + output_message += current_char + current_tag += current_char + if(findtext(current_tag, "") == 1 || findtext(current_tag, " world.time) - return 0 - - next_move = world.time + 2 - - point_to_atom(A, tile) - return 1 - + return FALSE + if(SEND_SIGNAL(src, COMSIG_MOB_TRY_POINT, target) & COMPONENT_OVERRIDE_POINT) + return FALSE + next_move = world.time + 2 + point_to_atom(target, tile) + return TRUE /mob/verb/memory() set name = "Notes" @@ -122,7 +121,7 @@ return else var/deathtime = world.time - src.timeofdeath - var/deathtimeminutes = round(deathtime / 600) + var/deathtimeminutes = floor(deathtime / 600) var/pluralcheck = "minute" if(deathtimeminutes == 0) pluralcheck = "" @@ -155,7 +154,7 @@ return M.key = key - if(M.client) M.client.change_view(world_view_size) + if(M.client) M.client.change_view(GLOB.world_view_size) // M.Login() //wat return diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index 9ff317260c..7ec4a7f278 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -25,14 +25,14 @@ client.playtitlemusic() // To show them the full lobby art. This fixes itself on a mind transfer so no worries there. - client.change_view(lobby_view_size) + client.change_view(GLOB.lobby_view_size) // Credit the lobby art author - if(displayed_lobby_art != -1) + if(GLOB.displayed_lobby_art != -1) var/list/lobby_authors = CONFIG_GET(str_list/lobby_art_authors) - var/author = lobby_authors[displayed_lobby_art] + var/author = lobby_authors[GLOB.displayed_lobby_art] if(author != "Unknown") to_chat(src, SPAN_ROUNDBODY("
        This round's lobby art is brought to you by [author]
        ")) - if(join_motd) - to_chat(src, "
        [join_motd]
        ") - if(current_tms) - to_chat(src, SPAN_BOLDANNOUNCE(current_tms)) + if(GLOB.current_tms) + to_chat(src, SPAN_BOLDANNOUNCE(GLOB.current_tms)) + if(GLOB.join_motd) + to_chat(src, "
        [GLOB.join_motd]
        ") diff --git a/code/modules/mob/new_player/logout.dm b/code/modules/mob/new_player/logout.dm index 11589f59ee..4f9a45f566 100644 --- a/code/modules/mob/new_player/logout.dm +++ b/code/modules/mob/new_player/logout.dm @@ -1,6 +1,6 @@ /mob/new_player/Logout() if(ready) - readied_players-- + GLOB.readied_players-- ready = FALSE . = ..() if(!spawning)//Here so that if they are spawning and log out, the other procs can play out and they will have a mob to come back to. diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 3e98167488..b893cc1741 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -18,7 +18,7 @@ /mob/new_player/Destroy() if(ready) - readied_players-- + GLOB.readied_players-- GLOB.new_player_list -= src return ..() @@ -42,6 +42,7 @@ var/output = "
        Welcome," output +="
        [(client.prefs && client.prefs.real_name) ? client.prefs.real_name : client.key]" output +="
        [xeno_text]" + output += "

        Tutorial

        " output += "

        Setup Character

        " output += "

        View Playtimes

        " @@ -63,7 +64,7 @@ output += "
        " if (refresh) close_browser(src, "playersetup") - show_browser(src, output, null, "playersetup", "size=240x[round_start ? 360 : 460];can_close=0;can_minimize=0") + show_browser(src, output, null, "playersetup", "size=240x[round_start ? 500 : 610];can_close=0;can_minimize=0") return /mob/new_player/Topic(href, href_list[]) @@ -97,14 +98,14 @@ if("ready") if( (SSticker.current_state <= GAME_STATE_PREGAME) && !ready) // Make sure we don't ready up after the round has started ready = TRUE - readied_players++ + GLOB.readied_players++ new_player_panel_proc() if("unready") if((SSticker.current_state <= GAME_STATE_PREGAME) && ready) // Make sure we don't ready up after the round has started ready = FALSE - readied_players-- + GLOB.readied_players-- new_player_panel_proc() @@ -145,7 +146,7 @@ mind.transfer_to(observer, TRUE) if(observer.client) - observer.client.change_view(world_view_size) + observer.client.change_view(GLOB.world_view_size) observer.set_huds_from_prefs() @@ -162,14 +163,9 @@ to_chat(src, SPAN_WARNING("Sorry, you cannot late join during [SSticker.mode.name]. You have to start at the beginning of the round. You may observe or try to join as an alien, if possible.")) return - if(client.prefs.species != "Human") - if(!is_alien_whitelisted(src, client.prefs.species) && CONFIG_GET(flag/usealienwhitelist)) - to_chat(src, "You are currently not whitelisted to play [client.prefs.species].") - return - - var/datum/species/S = GLOB.all_species[client.prefs.species] - if(!(S.flags & IS_WHITELISTED)) - to_chat(src, alert("Your current species,[client.prefs.species], is not available for play on the station.")) + if(client.player_data?.playtime_loaded && (client.get_total_human_playtime() < CONFIG_GET(number/notify_new_player_age)) && !length(client.prefs.completed_tutorials)) + if(tgui_alert(src, "You have little playtime and haven't completed any tutorials. Would you like to go to the tutorial menu?", "Tutorial", list("Yes", "No")) == "Yes") + tutorial_menu() return LateChoices() @@ -207,37 +203,46 @@ if("SelectedJob") - if(!enter_allowed) + if(!GLOB.enter_allowed) to_chat(usr, SPAN_WARNING("There is an administrative lock on entering the game! (The dropship likely crashed into the Almayer. This should take at most 20 minutes.)")) return - if(client.prefs.species != "Human") - if(!is_alien_whitelisted(src, client.prefs.species) && CONFIG_GET(flag/usealienwhitelist)) - to_chat(src, alert("You are currently not whitelisted to play [client.prefs.species].")) - return 0 - - var/datum/species/S = GLOB.all_species[client.prefs.species] - if(!(S.flags & IS_WHITELISTED)) - to_chat(src, alert("Your current species,[client.prefs.species], is not available for play on the station.")) - return 0 - AttemptLateSpawn(href_list["job_selected"]) return + if("tutorial") + tutorial_menu() + else new_player_panel() +/mob/new_player/proc/tutorial_menu() + if(SSticker.current_state <= GAME_STATE_SETTING_UP) + to_chat(src, SPAN_WARNING("Please wait for the round to start before entering a tutorial.")) + return + + if(SSticker.current_state == GAME_STATE_FINISHED) + to_chat(src, SPAN_WARNING("The round has ended. Please wait for the next round to enter a tutorial.")) + return + + if(SSticker.tutorial_disabled) + to_chat(src, SPAN_WARNING("Tutorials are currently disabled because something broke, sorry!")) + return + + var/datum/tutorial_menu/menu = new(src) + menu.ui_interact(src) + /mob/new_player/proc/AttemptLateSpawn(rank) - var/datum/job/player_rank = RoleAuthority.roles_for_mode[rank] + var/datum/job/player_rank = GLOB.RoleAuthority.roles_for_mode[rank] if (src != usr) return if(SSticker.current_state != GAME_STATE_PLAYING) to_chat(usr, SPAN_WARNING("The round is either not ready, or has already finished!")) return - if(!enter_allowed) + if(!GLOB.enter_allowed) to_chat(usr, SPAN_WARNING("There is an administrative lock on entering the game! (The dropship likely crashed into the Almayer. This should take at most 20 minutes.)")) return - if(!RoleAuthority.assign_role(src, player_rank, 1)) + if(!GLOB.RoleAuthority.assign_role(src, player_rank, 1)) to_chat(src, alert("[rank] is not available. Please try another.")) return @@ -245,24 +250,30 @@ close_spawn_windows() var/mob/living/carbon/human/character = create_character(TRUE) //creates the human and transfers vars and mind - RoleAuthority.equip_role(character, player_rank, late_join = TRUE) + GLOB.RoleAuthority.equip_role(character, player_rank, late_join = TRUE) EquipCustomItems(character) - if((security_level > SEC_LEVEL_BLUE || SShijack.hijack_status) && player_rank.gets_emergency_kit) + if((GLOB.security_level > SEC_LEVEL_BLUE || SShijack.hijack_status) && player_rank.gets_emergency_kit) to_chat(character, SPAN_HIGHDANGER("As you stagger out of hypersleep, the sleep bay blares: '[SShijack.evac_status ? "VESSEL UNDERGOING EVACUATION PROCEDURES, SELF DEFENSE KIT PROVIDED" : "VESSEL IN HEIGHTENED ALERT STATUS, SELF DEFENSE KIT PROVIDED"]'.")) character.put_in_hands(new /obj/item/storage/box/kit/cryo_self_defense(character.loc)) GLOB.data_core.manifest_inject(character) SSticker.minds += character.mind//Cyborgs and AIs handle this in the transform proc. //TODO!!!!! ~Carn - SSticker.mode.latejoin_tally += RoleAuthority.calculate_role_weight(player_rank) + SSticker.mode.latejoin_update(player_rank) + SSticker.mode.update_gear_scale() - for(var/datum/squad/sq in RoleAuthority.squads) + for(var/datum/squad/sq in GLOB.RoleAuthority.squads) if(sq) - sq.max_engineers = engi_slot_formula(GLOB.clients.len) - sq.max_medics = medic_slot_formula(GLOB.clients.len) + sq.max_engineers = engi_slot_formula(length(GLOB.clients)) + sq.max_medics = medic_slot_formula(length(GLOB.clients)) + + var/latejoin_larva_drop = SSticker.mode.latejoin_larva_drop - if(SSticker.mode.latejoin_larva_drop && SSticker.mode.latejoin_tally >= SSticker.mode.latejoin_larva_drop) - SSticker.mode.latejoin_tally -= SSticker.mode.latejoin_larva_drop + if (ROUND_TIME < XENO_ROUNDSTART_PROGRESS_TIME_2) + latejoin_larva_drop = SSticker.mode.latejoin_larva_drop_early + + if(latejoin_larva_drop && SSticker.mode.latejoin_tally - SSticker.mode.latejoin_larva_used >= latejoin_larva_drop) + SSticker.mode.latejoin_larva_used += latejoin_larva_drop var/datum/hive_status/hive for(var/hivenumber in GLOB.hive_datum) hive = GLOB.hive_datum[hivenumber] @@ -279,7 +290,7 @@ var/client/client = character.client if(client.player_data && client.player_data.playtime_loaded && length(client.player_data.playtimes) == 0) msg_admin_niche("NEW PLAYER: [key_name(character, 1, 1, 0)]. IP: [character.lastKnownIP], CID: [character.computer_id]") - if(client.player_data && client.player_data.playtime_loaded && ((round(client.get_total_human_playtime() DECISECONDS_TO_HOURS, 0.1)) <= 5)) + if(client.player_data && client.player_data.playtime_loaded && ((round(client.get_total_human_playtime() DECISECONDS_TO_HOURS, 0.1)) <= CONFIG_GET(number/notify_new_player_age))) msg_sea("NEW PLAYER: [key_name(character, 0, 1, 0)] only has [(round(client.get_total_human_playtime() DECISECONDS_TO_HOURS, 0.1))] hours as a human. Current role: [get_actual_job_name(character)] - Current location: [get_area(character)]") character.client.init_verbs() @@ -293,7 +304,7 @@ var/hours = mills / 36000 var/dat = "
        " - dat += "Round Duration: [round(hours)]h [round(mins)]m
        " + dat += "Round Duration: [floor(hours)]h [floor(mins)]m
        " if(SShijack) switch(SShijack.evac_status) @@ -304,45 +315,45 @@ var/position_dat = "Choose from the following open positions:
        " var/roles_show = FLAG_SHOW_ALL_JOBS - for(var/i in RoleAuthority.roles_for_mode) - var/datum/job/J = RoleAuthority.roles_for_mode[i] - if(!RoleAuthority.check_role_entry(src, J, TRUE)) + for(var/i in GLOB.RoleAuthority.roles_for_mode) + var/datum/job/J = GLOB.RoleAuthority.roles_for_mode[i] + if(!GLOB.RoleAuthority.check_role_entry(src, J, TRUE)) continue var/active = 0 // Only players with the job assigned and AFK for less than 10 minutes count as active for(var/mob/M in GLOB.player_list) if(M.client && M.job == J.title) active++ - if(roles_show & FLAG_SHOW_CIC && ROLES_CIC.Find(J.title)) - position_dat += "Command:
        " + if(roles_show & FLAG_SHOW_CIC && GLOB.ROLES_CIC.Find(J.title)) + dat += "Command:
        " roles_show ^= FLAG_SHOW_CIC - else if(roles_show & FLAG_SHOW_AUXIL_SUPPORT && ROLES_AUXIL_SUPPORT.Find(J.title)) - position_dat += "
        Auxiliary Combat Support:
        " + else if(roles_show & FLAG_SHOW_AUXIL_SUPPORT && GLOB.ROLES_AUXIL_SUPPORT.Find(J.title)) + dat += "
        Auxiliary Combat Support:
        " roles_show ^= FLAG_SHOW_AUXIL_SUPPORT - else if(roles_show & FLAG_SHOW_MISC && ROLES_MISC.Find(J.title)) - position_dat += "
        Other:
        " + else if(roles_show & FLAG_SHOW_MISC && GLOB.ROLES_MISC.Find(J.title)) + dat += "
        Other:
        " roles_show ^= FLAG_SHOW_MISC - else if(roles_show & FLAG_SHOW_POLICE && ROLES_POLICE.Find(J.title)) - position_dat += "
        Military Police:
        " + else if(roles_show & FLAG_SHOW_POLICE && GLOB.ROLES_POLICE.Find(J.title)) + dat += "
        Military Police:
        " roles_show ^= FLAG_SHOW_POLICE - else if(roles_show & FLAG_SHOW_ENGINEERING && ROLES_ENGINEERING.Find(J.title)) - position_dat += "
        Engineering:
        " + else if(roles_show & FLAG_SHOW_ENGINEERING && GLOB.ROLES_ENGINEERING.Find(J.title)) + dat += "
        Engineering:
        " roles_show ^= FLAG_SHOW_ENGINEERING - else if(roles_show & FLAG_SHOW_REQUISITION && ROLES_REQUISITION.Find(J.title)) - position_dat += "
        Requisitions:
        " + else if(roles_show & FLAG_SHOW_REQUISITION && GLOB.ROLES_REQUISITION.Find(J.title)) + dat += "
        Requisitions:
        " roles_show ^= FLAG_SHOW_REQUISITION - else if(roles_show & FLAG_SHOW_MEDICAL && ROLES_MEDICAL.Find(J.title)) - position_dat += "
        Medbay:
        " + else if(roles_show & FLAG_SHOW_MEDICAL && GLOB.ROLES_MEDICAL.Find(J.title)) + dat += "
        Medbay:
        " roles_show ^= FLAG_SHOW_MEDICAL - else if(roles_show & FLAG_SHOW_MARINES && ROLES_MARINES.Find(J.title)) - position_dat += "
        Squad Riflemen:
        " + else if(roles_show & FLAG_SHOW_MARINES && GLOB.ROLES_MARINES.Find(J.title)) + dat += "
        Marines:
        " roles_show ^= FLAG_SHOW_MARINES positions = TRUE @@ -360,44 +371,14 @@ var/mob/living/carbon/human/new_character - var/datum/species/chosen_species - if(client.prefs.species) - chosen_species = GLOB.all_species[client.prefs.species] - if(chosen_species) - // Have to recheck admin due to no usr at roundstart. Latejoins are fine though. - if(is_species_whitelisted(chosen_species) || has_admin_rights()) - new_character = new(loc, client.prefs.species) - if(!new_character) new_character = new(loc) new_character.lastarea = get_area(loc) - client.prefs.copy_all_to(new_character, job, is_late_join) - - if (client.prefs.be_random_body) - var/datum/preferences/TP = new() - TP.randomize_appearance(new_character) - - if(mind) - mind_initialize() - mind.active = 0 //we wish to transfer the key manually - mind.original = new_character - mind.transfer_to(new_character) //won't transfer key since the mind is not active - mind.setup_human_stats() - - new_character.job = job - new_character.name = real_name - new_character.voice = real_name - - // Update the character icons - // This is done in set_species when the mob is created as well, but - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, regenerate_icons)) - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_body), 1, 0) - INVOKE_ASYNC(new_character, TYPE_PROC_REF(/mob/living/carbon/human, update_hair)) + setup_human(new_character, src, is_late_join) - new_character.key = key //Manually transfer the key to log them in - new_character.client?.change_view(world_view_size) + new_character.client?.change_view(GLOB.world_view_size) return new_character @@ -456,26 +437,6 @@ ui.close() continue -/mob/new_player/proc/has_admin_rights() - return client.admin_holder.rights & R_ADMIN - -/mob/new_player/proc/is_species_whitelisted(datum/species/S) - if(!S) return 1 - return is_alien_whitelisted(src, S.name) || !CONFIG_GET(flag/usealienwhitelist) || !(S.flags & IS_WHITELISTED) - -/mob/new_player/get_species() - var/datum/species/chosen_species - if(client.prefs.species) - chosen_species = GLOB.all_species[client.prefs.species] - - if(!chosen_species) - return "Human" - - if(is_species_whitelisted(chosen_species) || has_admin_rights()) - return chosen_species.name - - return "Human" - /mob/new_player/get_gender() if(!client || !client.prefs) ..() return client.prefs.gender @@ -499,7 +460,7 @@ var/time_remaining = SSticker.GetTimeLeft() if(time_remaining > 0) - . += "Time To Start: [round(time_remaining)]s" + . += "Time To Start: [floor(time_remaining)]s[SSticker.delay_start ? " (DELAYED)" : ""]" else if(time_remaining == -10) . += "Time To Start: DELAYED" else diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index bbc70fdf1f..025a4e227d 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -190,6 +190,10 @@ var/J = job_pref_to_gear_preset() if(isnull(preview_dummy)) preview_dummy = new() + + preview_dummy.blocks_emissive = FALSE + preview_dummy.update_emissive_block() + clear_equipment() if(refresh_limb_status) for(var/obj/limb/L in preview_dummy.limbs) @@ -201,22 +205,32 @@ arm_equipment(preview_dummy, J, FALSE, FALSE, owner, show_job_gear) + // If the dummy was equipped with marine armor. + var/jacket = preview_dummy.get_item_by_slot(WEAR_JACKET) + if(istype(jacket, /obj/item/clothing/suit/storage/marine)) + var/obj/item/clothing/suit/storage/marine/armor = jacket + // If the armor has different sprite variants. + if(armor.armor_variation) + // Set its `icon_state` to the style the player picked as their 'Preferred Armor'. + armor.set_armor_style(preferred_armor) + armor.update_icon(preview_dummy) + if(isnull(preview_front)) preview_front = new() - owner.add_to_screen(preview_front) preview_front.vis_contents += preview_dummy preview_front.screen_loc = "preview:0,0" preview_front.icon_state = bg_state + owner.add_to_screen(preview_front) if(isnull(rotate_left)) rotate_left = new(null, preview_dummy) - owner.add_to_screen(rotate_left) rotate_left.screen_loc = "preview:-1:16,0" + owner.add_to_screen(rotate_left) if(isnull(rotate_right)) rotate_right = new(null, preview_dummy) - owner.add_to_screen(rotate_right) rotate_right.screen_loc = "preview:1:-16,0" + owner.add_to_screen(rotate_right) /datum/preferences/proc/job_pref_to_gear_preset() var/highest_priority_job @@ -246,18 +260,24 @@ if(JOB_SQUAD_TEAM_LEADER) return /datum/equipment_preset/uscm/tl_equipped if(JOB_CO) - if(length(RoleAuthority.roles_whitelist)) - var/datum/job/J = RoleAuthority.roles_by_name[JOB_CO] - return J.gear_preset_whitelist["[JOB_CO][J.get_whitelist_status(RoleAuthority.roles_whitelist, owner)]"] - return /datum/equipment_preset/uscm_ship/commander + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_CO] + return J.gear_preset_whitelist["[JOB_CO][J.get_whitelist_status(owner)]"] if(JOB_SO) return /datum/equipment_preset/uscm_ship/so/equipped if(JOB_XO) return /datum/equipment_preset/uscm_ship/xo if(JOB_AUXILIARY_OFFICER) return /datum/equipment_preset/uscm_ship/auxiliary_officer - if(JOB_PILOT) - return /datum/equipment_preset/uscm_ship/po/full + /* + if(JOB_INTEL) + return /datum/equipment_preset/uscm/intel/full + */ + if(JOB_CAS_PILOT) + return /datum/equipment_preset/uscm_ship/gp/full + if(JOB_TANK_CREW) + return /datum/equipment_preset/uscm/tank/full + if(JOB_DROPSHIP_PILOT) + return /datum/equipment_preset/uscm_ship/dp/full if(JOB_DROPSHIP_CREW_CHIEF) return /datum/equipment_preset/uscm_ship/dcc/full if(JOB_CORPORATE_LIAISON) @@ -265,10 +285,8 @@ if(JOB_COMBAT_REPORTER) return /datum/equipment_preset/uscm_ship/reporter if(JOB_SYNTH) - if(length(RoleAuthority.roles_whitelist)) - var/datum/job/J = RoleAuthority.roles_by_name[JOB_SYNTH] - return J.gear_preset_whitelist["[JOB_SYNTH][J.get_whitelist_status(RoleAuthority.roles_whitelist, owner)]"] - return /datum/equipment_preset/synth/uscm + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_SYNTH] + return J.gear_preset_whitelist["[JOB_SYNTH][J.get_whitelist_status(owner)]"] if(JOB_WORKING_JOE) return /datum/equipment_preset/synth/working_joe if(JOB_POLICE) @@ -314,10 +332,8 @@ return pick(SSmapping.configs[GROUND_MAP].CO_survivor_types) return /datum/equipment_preset/uscm_ship/commander if(JOB_PREDATOR) - if(length(RoleAuthority.roles_whitelist)) - var/datum/job/J = RoleAuthority.roles_by_name[JOB_PREDATOR] - return J.gear_preset_whitelist["[JOB_PREDATOR][J.get_whitelist_status(RoleAuthority.roles_whitelist, owner)]"] - return /datum/equipment_preset/yautja/blooded + var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_PREDATOR] + return J.gear_preset_whitelist["[JOB_PREDATOR][J.get_whitelist_status(owner)]"] return /datum/equipment_preset/uscm/private_equipped diff --git a/code/modules/mob/new_player/sprite_accessories/hair.dm b/code/modules/mob/new_player/sprite_accessories/hair.dm index 3dfe8bebd5..558884f26f 100644 --- a/code/modules/mob/new_player/sprite_accessories/hair.dm +++ b/code/modules/mob/new_player/sprite_accessories/hair.dm @@ -755,3 +755,8 @@ /datum/sprite_accessory/hair/taper name = "Taper" icon_state = "hair_taper" + +/datum/sprite_accessory/hair/gentlebraid + name = "Gentle Braid" + icon_state = "hair_braid3" + gender = FEMALE diff --git a/code/modules/mob/new_player/sprite_accessories/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories/sprite_accessories.dm index 09c4c4861e..5420753d63 100644 --- a/code/modules/mob/new_player/sprite_accessories/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories/sprite_accessories.dm @@ -43,6 +43,6 @@ SYNTH_INFILTRATOR ) - // Whether or not the accessory can be affected by colouration - var/do_colouration = 1 + // Whether or not the accessory can be affected by coloration + var/do_coloration = 1 var/selectable = 1 diff --git a/code/modules/mob/new_player/sprite_accessories/yautja_hair.dm b/code/modules/mob/new_player/sprite_accessories/yautja_hair.dm index 0e18424a04..f2ae00e886 100644 --- a/code/modules/mob/new_player/sprite_accessories/yautja_hair.dm +++ b/code/modules/mob/new_player/sprite_accessories/yautja_hair.dm @@ -1,7 +1,7 @@ /datum/sprite_accessory/yautja_hair icon = 'icons/mob/humans/yaut_hair.dmi' species_allowed = list(SPECIES_YAUTJA) - do_colouration = FALSE + do_coloration = FALSE /datum/sprite_accessory/yautja_hair/standard name = "Standard" diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index fc62c076c7..f14280a496 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -69,7 +69,7 @@ return if(!src.client.admin_holder || !(client.admin_holder.rights & R_MOD)) - if(!dsay_allowed) + if(!GLOB.dsay_allowed) to_chat(src, SPAN_DANGER("Deadchat is globally muted")) return @@ -120,8 +120,6 @@ return 1 if(other.universal_speak) return 1 - if(isAI(src)) - return 1 if (istype(other, src.type) || istype(src, other.type)) return 1 return 0 @@ -177,7 +175,7 @@ for it but just ignore it. if(length(message) >= 2) var/channel_prefix = copytext(message, 1 ,3) - return department_radio_keys[channel_prefix] + return GLOB.department_radio_keys[channel_prefix] return null diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 51c9ba9e13..520b58a30d 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -50,79 +50,6 @@ return O -/mob/new_player/AIize() - spawning = TRUE - return ..() - -/mob/living/carbon/human/AIize() - if (monkeyizing) - return - for(var/t in limbs) - qdel(t) - - return ..() - -/mob/living/carbon/AIize() - if (monkeyizing) - return - for(var/obj/item/W in src) - drop_inv_item_on_ground(W) - monkeyizing = 1 - ADD_TRAIT(src, TRAIT_INCAPACITATED, "Terminal Monkeyziation") - icon = null - invisibility = 101 - return ..() - -/mob/proc/AIize() - return // this was unmaintained - - -//human -> robot -/mob/living/carbon/human/proc/Robotize() - if (monkeyizing) - return - for(var/obj/item/W in src) - drop_inv_item_on_ground(W) - regenerate_icons() - monkeyizing = 1 - ADD_TRAIT(src, TRAIT_INCAPACITATED, "Terminal Monkeyziation") - icon = null - invisibility = 101 - for(var/t in limbs) - qdel(t) - - var/mob/living/silicon/robot/O = new /mob/living/silicon/robot( loc ) - - // cyborgs produced by Robotize get an automatic power cell - O.cell = new(O) - O.cell.maxcharge = 7500 - O.cell.charge = 7500 - - - O.gender = gender - O.invisibility = 0 - - if(mind) //TODO - mind.transfer_to(O) - if(O.job == "Cyborg") - O.mind.original = O - else - O.key = key - if(O.client) O.client.change_view(world_view_size) - - O.forceMove(loc) - O.job = "Cyborg" - if(O.job == "Cyborg") - O.mmi = new /obj/item/device/mmi(O) - - if(O.mmi) - O.mmi.transfer_identity(src) - - O.Namepick() - - qdel(src) - return O - //human -> alien /mob/living/carbon/human/proc/Alienize(list/types) if (monkeyizing) @@ -180,7 +107,7 @@ new_xeno.a_intent = INTENT_HARM new_xeno.key = key - if(new_xeno.client) new_xeno.client.change_view(world_view_size) + if(new_xeno.client) new_xeno.client.change_view(GLOB.world_view_size) to_chat(new_xeno, "You are now an alien.") qdel(src) @@ -212,7 +139,7 @@ var/mob/new_mob = new mobpath(src.loc) new_mob.key = key - if(new_mob.client) new_mob.client.change_view(world_view_size) + if(new_mob.client) new_mob.client.change_view(GLOB.world_view_size) new_mob.a_intent = INTENT_HARM @@ -232,7 +159,7 @@ var/mob/new_mob = new mobpath(src.loc) new_mob.key = key - if(new_mob.client) new_mob.client.change_view(world_view_size) + if(new_mob.client) new_mob.client.change_view(GLOB.world_view_size) new_mob.a_intent = INTENT_HARM to_chat(new_mob, "You feel more... animalistic") diff --git a/code/modules/movement/launching/launching.dm b/code/modules/movement/launching/launching.dm index 96db667fe2..778c452a32 100644 --- a/code/modules/movement/launching/launching.dm +++ b/code/modules/movement/launching/launching.dm @@ -54,6 +54,16 @@ matching_procs += collision_callbacks[path] return matching_procs +/// Invoke end_throw_callbacks on this metadata. +/// Takes argument of type /atom/movable +/datum/launch_metadata/proc/invoke_end_throw_callbacks(atom/movable/movable_atom) + if(length(end_throw_callbacks)) + for(var/datum/callback/callback as anything in end_throw_callbacks) + if(istype(callback, /datum/callback/dynamic)) + callback.Invoke(movable_atom) + else + callback.Invoke() + /atom/movable/var/datum/launch_metadata/launch_metadata = null //called when src is thrown into hit_atom @@ -120,7 +130,7 @@ return TRUE // Proc for throwing items (should only really be used for throw) -/atom/movable/proc/throw_atom(atom/target, range, speed = 0, atom/thrower, spin, launch_type = NORMAL_LAUNCH, pass_flags = NO_FLAGS) +/atom/movable/proc/throw_atom(atom/target, range, speed = 0, atom/thrower, spin, launch_type = NORMAL_LAUNCH, pass_flags = NO_FLAGS, list/end_throw_callbacks, list/collision_callbacks) var/temp_pass_flags = pass_flags switch (launch_type) if (NORMAL_LAUNCH) @@ -135,6 +145,10 @@ LM.speed = speed LM.thrower = thrower LM.spin = spin + if(end_throw_callbacks) + LM.end_throw_callbacks = end_throw_callbacks + if(collision_callbacks) + LM.collision_callbacks = collision_callbacks if(SEND_SIGNAL(src, COMSIG_MOVABLE_PRE_LAUNCH, LM) & COMPONENT_LAUNCH_CANCEL) return @@ -160,7 +174,7 @@ animation_spin(5, 1 + min(1, LM.range/20)) var/old_speed = cur_speed - cur_speed = Clamp(LM.speed, MIN_SPEED, MAX_SPEED) // Sanity check, also ~1 sec delay between each launch move is not very reasonable + cur_speed = clamp(LM.speed, MIN_SPEED, MAX_SPEED) // Sanity check, also ~1 sec delay between each launch move is not very reasonable var/delay = 10/cur_speed - 0.5 // scales delay back to deciseconds for when sleep is called var/pass_flags = LM.pass_flags @@ -169,7 +183,7 @@ add_temp_pass_flags(pass_flags) var/turf/start_turf = get_step_towards(src, LM.target) - var/list/turf/path = getline2(start_turf, LM.target) + var/list/turf/path = get_line(start_turf, LM.target) var/last_loc = loc var/early_exit = FALSE @@ -206,12 +220,7 @@ rebounding = FALSE cur_speed = old_speed remove_temp_pass_flags(pass_flags) - if(length(LM.end_throw_callbacks)) - for(var/datum/callback/CB as anything in LM.end_throw_callbacks) - if(istype(CB, /datum/callback/dynamic)) - CB.Invoke(src) - else - CB.Invoke() + LM.invoke_end_throw_callbacks(src) QDEL_NULL(launch_metadata) /atom/movable/proc/throw_random_direction(range, speed = 0, atom/thrower, spin, launch_type = NORMAL_LAUNCH, pass_flags = NO_FLAGS) diff --git a/code/modules/movement/movement.dm b/code/modules/movement/movement.dm index 104c3de911..35dbb44481 100644 --- a/code/modules/movement/movement.dm +++ b/code/modules/movement/movement.dm @@ -130,7 +130,7 @@ if(!same_loc) if(oldloc) oldloc.Exited(src, destination) - if(old_area && old_area != destarea) + if(old_area && (old_area != destarea || !isturf(destination))) old_area.Exited(src, destination) for(var/atom/movable/AM in oldloc) AM.Uncrossed(src) @@ -141,13 +141,13 @@ if(old_z != dest_z) onTransitZ(old_z, dest_z) destination.Entered(src, oldloc) - if(destarea && old_area != destarea) + if(destarea && (old_area != destarea || !isturf(oldloc))) destarea.Entered(src, oldloc) - - for(var/atom/movable/AM in destination) - if(AM == src) - continue - AM.Crossed(src, oldloc) + if(!(SEND_SIGNAL(src, COMSIG_MOVABLE_FORCEMOVE_PRE_CROSSED) & COMPONENT_IGNORE_CROSS)) + for(var/atom/movable/AM in destination) + if(AM == src) + continue + AM.Crossed(src, oldloc) Moved(oldloc, NONE, TRUE) . = TRUE diff --git a/code/modules/nano/nanomanager.dm b/code/modules/nano/nanomanager.dm index b2ac69b002..6cf1ecb78a 100644 --- a/code/modules/nano/nanomanager.dm +++ b/code/modules/nano/nanomanager.dm @@ -97,7 +97,7 @@ * @return int The number of uis updated */ /datum/nanomanager/proc/update_user_uis(mob/user, src_object = null, ui_key = null) - if (isnull(user.open_uis) || !istype(user.open_uis, /list) || open_uis.len == 0) + if (isnull(user.open_uis) || !istype(user.open_uis, /list) || length(open_uis) == 0) return 0 // has no open uis var/update_count = 0 @@ -118,7 +118,7 @@ * @return int The number of uis closed */ /datum/nanomanager/proc/close_user_uis(mob/user, src_object = null, ui_key = null) - if (isnull(user.open_uis) || !istype(user.open_uis, /list) || open_uis.len == 0) + if (isnull(user.open_uis) || !istype(user.open_uis, /list) || length(open_uis) == 0) //testing("nanomanager/close_user_uis mob [user.name] has no open uis") return 0 // has no open uis @@ -128,7 +128,7 @@ ui.close() close_count++ - //testing("nanomanager/close_user_uis mob [user.name] closed [open_uis.len] of [close_count] uis") + //testing("nanomanager/close_user_uis mob [user.name] closed [length(open_uis_] of [close_count] uis") return close_count @@ -151,7 +151,7 @@ var/list/uis = open_uis[src_object_key][ui.ui_key] uis.Add(ui) processing_uis.Add(ui) - //testing("nanomanager/ui_opened mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [ui.user.open_uis.len]|uis [uis.len]|processing_uis [processing_uis.len]") + //testing("nanomanager/ui_opened mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [length(ui.user.open_uis)]|uis [length(uis)]|processing_uis [length(processing_uis)]") /** * Remove a /nanoui ui from the list of open uis @@ -173,7 +173,7 @@ var/list/uis = open_uis[src_object_key][ui.ui_key] uis.Remove(ui) - //testing("nanomanager/ui_closed mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [ui.user.open_uis.len]|uis [uis.len]|processing_uis [processing_uis.len]") + //testing("nanomanager/ui_closed mob [ui.user.name] [ui.src_object:name] [ui.ui_key] - user.open_uis [length(ui.user.open_uis)]|uis [length(uis)]|processing_uis [length(processing_uis)]") return 1 @@ -204,7 +204,7 @@ //testing("nanomanager/user_transferred from mob [oldMob.name] to mob [newMob.name]") if(QDELETED(oldMob) || QDELETED(newMob)) return FALSE //ERROR - if (isnull(oldMob.open_uis) || !istype(oldMob.open_uis, /list) || open_uis.len == 0) + if (isnull(oldMob.open_uis) || !istype(oldMob.open_uis, /list) || length(open_uis) == 0) //testing("nanomanager/user_transferred mob [oldMob.name] has no open uis") return 0 // has no open uis diff --git a/code/modules/nano/nanomapgen.dm b/code/modules/nano/nanomapgen.dm deleted file mode 100644 index 749a07feb3..0000000000 --- a/code/modules/nano/nanomapgen.dm +++ /dev/null @@ -1,90 +0,0 @@ -// This file is a modified version of https://raw2.github.com/Baystation12/OldCode-BS12/master/code/TakePicture.dm - -#define NANOMAP_ICON_SIZE 4 -#define NANOMAP_MAX_ICON_DIMENSION 1024 - -#define NANOMAP_TILES_PER_IMAGE (NANOMAP_MAX_ICON_DIMENSION / NANOMAP_ICON_SIZE) - -#define NANOMAP_TERMINALERR 5 -#define NANOMAP_INPROGRESS 2 -#define NANOMAP_BADOUTPUT 2 -#define NANOMAP_SUCCESS 1 -#define NANOMAP_WATCHDOGSUCCESS 4 -#define NANOMAP_WATCHDOGTERMINATE 3 - - -//Call these procs to dump your world to a series of image files (!!) -//NOTE: Does not explicitly support non 32x32 icons or stuff with large pixel_* values, so don't blame me if it doesn't work perfectly - -/client/proc/nanomapgen_DumpImage() - set name = "Generate NanoUI Map" - set category = "Debug" - - if(admin_holder) - nanomapgen_DumpTile(1, 1, text2num(input(usr,"Enter the Z level to generate"))) - -/client/proc/nanomapgen_DumpTile(startX = 1, startY = 1, currentZ = 1, endX = -1, endY = -1) - - if (endX < 0 || endX > world.maxx) - endX = world.maxx - - if (endY < 0 || endY > world.maxy) - endY = world.maxy - - if (currentZ < 0 || currentZ > world.maxz) - to_chat(usr, "NanoMapGen: ERROR: currentZ ([currentZ]) must be between 1 and [world.maxz]") - - sleep(3) - return NANOMAP_TERMINALERR - - if (startX > endX) - to_chat(usr, "NanoMapGen: ERROR: startX ([startX]) cannot be greater than endX ([endX])") - - sleep(3) - return NANOMAP_TERMINALERR - - if (startY > endX) - to_chat(usr, "NanoMapGen: ERROR: startY ([startY]) cannot be greater than endY ([endY])") - sleep(3) - return NANOMAP_TERMINALERR - - var/icon/Tile = icon(file("nano/mapbase1024.png")) - if (Tile.Width() != NANOMAP_MAX_ICON_DIMENSION || Tile.Height() != NANOMAP_MAX_ICON_DIMENSION) - world.log << "NanoMapGen: ERROR: BASE IMAGE DIMENSIONS ARE NOT [NANOMAP_MAX_ICON_DIMENSION]x[NANOMAP_MAX_ICON_DIMENSION]" - sleep(3) - return NANOMAP_TERMINALERR - - world.log << "NanoMapGen: GENERATE MAP ([startX],[startY],[currentZ]) to ([endX],[endY],[currentZ])" - to_chat(usr, "NanoMapGen: GENERATE MAP ([startX],[startY],[currentZ]) to ([endX],[endY],[currentZ])") - - var/count = 0; - for(var/WorldX = startX, WorldX <= endX, WorldX++) - for(var/WorldY = startY, WorldY <= endY, WorldY++) - - var/atom/Turf = locate(WorldX, WorldY, currentZ) - - var/icon/TurfIcon = new(Turf.icon, Turf.icon_state) - TurfIcon.Scale(NANOMAP_ICON_SIZE, NANOMAP_ICON_SIZE) - - Tile.Blend(TurfIcon, ICON_OVERLAY, ((WorldX - 1) * NANOMAP_ICON_SIZE), ((WorldY - 1) * NANOMAP_ICON_SIZE)) - - count++ - - if (count % 8000 == 0) - world.log << "NanoMapGen: [count] tiles done" - sleep(1) - - var/mapFilename = "nanomap_z[currentZ]-new.png" - - world.log << "NanoMapGen: sending [mapFilename] to client" - - usr << browse(Tile, "window=picture;file=[mapFilename];display=0") - - world.log << "NanoMapGen: Done." - - to_chat(usr, "NanoMapGen: Done. File [mapFilename] uploaded to your cache.") - - if (Tile.Width() != NANOMAP_MAX_ICON_DIMENSION || Tile.Height() != NANOMAP_MAX_ICON_DIMENSION) - return NANOMAP_BADOUTPUT - - return NANOMAP_SUCCESS diff --git a/code/modules/nano/nanoui.dm b/code/modules/nano/nanoui.dm index 69263ed02e..1fee0d5f3b 100644 --- a/code/modules/nano/nanoui.dm +++ b/code/modules/nano/nanoui.dm @@ -57,8 +57,8 @@ nanoui is used to open and update nano browser uis // the current status/visibility of the ui var/status = STATUS_INTERACTIVE - // Only allow users with a certain user.stat to get updates. Defaults to 0 (concious) - var/allowed_user_stat = 0 // -1 = ignore, 0 = alive, 1 = unconcious or alive, 2 = dead concious or alive + // Only allow users with a certain user.stat to get updates. Defaults to 0 (conscious) + var/allowed_user_stat = 0 // -1 = ignore, 0 = alive, 1 = unconscious or alive, 2 = dead conscious or alive /** * Create a new nanoui instance. @@ -105,7 +105,7 @@ nanoui is used to open and update nano browser uis */ /datum/nanoui/Destroy() if(user) - nanomanager.ui_closed(src) + SSnano.nanomanager.ui_closed(src) close_browser(user, "[window_id]") user = null @@ -166,8 +166,8 @@ nanoui is used to open and update nano browser uis set_status(STATUS_INTERACTIVE, push_update) // interactive (green visibility) else if (allowed_user_stat == -1 || user == src_object) set_status(STATUS_INTERACTIVE, push_update) // interactive (green visibility) - else if (isrobot(user)) - if (src_object in view(7, user)) // robots can see and interact with things they can see within 7 tiles + else if (isSilicon(user)) + if (src_object in dview(7, user)) // robots can see and interact with things they can see within 7 tiles set_status(STATUS_INTERACTIVE, push_update) // interactive (green visibility) else set_status(STATUS_DISABLED, push_update) // no updates, completely disabled (red visibility) @@ -386,7 +386,7 @@ nanoui is used to open and update nano browser uis head_content += " " var/template_data_json = "{}" // An empty JSON object - if (templates.len > 0) + if (length(templates) > 0) template_data_json = strip_improper(json_encode(templates)) var/url_parameters_json = json_encode(list("src" = "\ref[src]")) @@ -444,7 +444,7 @@ nanoui is used to open and update nano browser uis winset(user, "mapwindow.map", "focus=true") // return keyboard focus to map on_close_winset() //onclose(user, window_id) - nanomanager.ui_opened(src) + SSnano.nanomanager.ui_opened(src) /** * Close this UI @@ -453,7 +453,7 @@ nanoui is used to open and update nano browser uis */ /datum/nanoui/proc/close() is_auto_updating = 0 - nanomanager.ui_closed(src) + SSnano.nanomanager.ui_closed(src) close_browser(user, "[window_id]") qdel(src) @@ -520,7 +520,7 @@ nanoui is used to open and update nano browser uis map_update = 1 if ((src_object && src_object.Topic(href, href_list)) || map_update) - nanomanager.update_uis(src_object) // update all UIs attached to src_object + SSnano.nanomanager.update_uis(src_object) // update all UIs attached to src_object /** * Process this UI, updating the entire UI or just the status (aka visibility) diff --git a/code/modules/nightmare/nmnodes/flow.dm b/code/modules/nightmare/nmnodes/flow.dm index 1ca8c48f88..5f94326bbc 100644 --- a/code/modules/nightmare/nmnodes/flow.dm +++ b/code/modules/nightmare/nmnodes/flow.dm @@ -67,15 +67,14 @@ if(!.) return var/list/datum/nmnode/pickables = choices.Copy() for(var/datum/nmnode/node as anything in pickables) - if(isnum(node.raw["weight"])) - pickables[node] = node.raw["weight"] + pickables[node] = isnum(node.raw["weight"]) ? node.raw["weight"] : 1 var/list/datum/nmnode/picked = list() var/remaining = src.amount #if defined(UNIT_TESTS) remaining = length(pickables) // Force all to be picked for testing (this could potentially make false positives though) #endif while(length(pickables) && remaining > 0) - var/datum/nmnode/node = pickweight(pickables) + var/datum/nmnode/node = pick_weight(pickables) remaining-- pickables -= node picked += node diff --git a/code/modules/nightmare/nmnodes/mapload.dm b/code/modules/nightmare/nmnodes/mapload.dm index 6f75a46ed1..0bfdc437bd 100644 --- a/code/modules/nightmare/nmnodes/mapload.dm +++ b/code/modules/nightmare/nmnodes/mapload.dm @@ -81,11 +81,11 @@ /** * Similar to variations mode, but rolls all files individually rather * than picking one, using name for landmark. The prefix number is used - * as a percentage chance. You can add extra text with an underscore. + * as a percentage chance. * * Example: * some/folder/10.something_funny.dmm - * would have 10% chance to insert at 'something' landmark + * would have 10% chance to insert at the 'something_funny' landmark */ /datum/nmnode/mapload/sprinkles id = "map_sprinkle" @@ -94,13 +94,13 @@ . = ..() if(!.) return var/dir_path = context.get_file_path(filepath, "map") - var/regex/matcher = new(@"^([0-9]+)([\.\+])([^_]+)(_.*)?\.dmm$", "i") + var/regex/matcher = new(@"^([0-9]+)([\.\+])(([^_]+)(_.*))?\.dmm$", "i") var/list/dircontents = flist(dir_path) for(var/filename in dircontents) if(!matcher.Find(filename)) continue #if !defined(UNIT_TESTS) - var/fprob = Clamp(text2num(matcher.group[1]) / 100, 0, 1) + var/fprob = clamp(text2num(matcher.group[1]) / 100, 0, 1) if(fprob < rand()) continue #endif // Remove the possibility of chance for testing diff --git a/code/modules/nightmare/nmtasks/mapload.dm b/code/modules/nightmare/nmtasks/mapload.dm index d53b566319..052cb069ba 100644 --- a/code/modules/nightmare/nmtasks/mapload.dm +++ b/code/modules/nightmare/nmtasks/mapload.dm @@ -34,16 +34,13 @@ /datum/nmtask/mapload/proc/step_parse() . = TRUE if(!fexists(filepath)) - log_debug("Nightmare Mapload: File does not exist: [filepath]") - return + CRASH("Nightmare Mapload: File does not exist: [filepath]") if(!parsed) parsed = new(file(filepath)) if(!parsed?.bounds) - log_debug("Nightmare Mapload: File loading failed: [filepath]") - return + CRASH("Nightmare Mapload: File loading failed: [filepath]") if(isnull(parsed.bounds[1])) - log_debug("Nightmare Mapload: Map parsing failed: [filepath]") - return + CRASH("Nightmare Mapload: Map parsing failed: [filepath]") return FALSE /datum/nmtask/mapload/proc/step_loadmap(list/statsmap) @@ -51,19 +48,21 @@ UNTIL(!Master.map_loading) target_turf = GLOB.nightmare_landmarks[landmark] if(!target_turf?.z) - log_debug("Nightmare Mapload: Could not find landmark: [landmark]") - return + if(landmark in GLOB.nightmare_landmark_tags_removed) + log_debug("Nightmare Mapload: Could not find landmark: [landmark] because it was deleted") + return + else + CRASH("Nightmare Mapload: Could not find landmark: [landmark]") var/result = parsed.load(target_turf.x, target_turf.y, target_turf.z, crop_map = TRUE, no_changeturf = FALSE, place_on_top = FALSE, delete = replace) if(!result || !parsed.bounds) - log_debug("Nightmare Mapload: Map insertion failed unexpectedly for file: [filepath]") - return + CRASH("Nightmare Mapload: Map insertion failed unexpectedly for file: [filepath]") return FALSE /datum/nmtask/mapload/proc/step_init(list/statsmap) if(initialize_boundary_contents()) log_debug("Nightmare Mapload: Loaded '[filepath]' at '[landmark]' ([target_turf.x], [target_turf.y], [target_turf.z])") return FALSE - log_debug("Nightmare Mapload: Loaded map file but could not initialize: '[filepath]' at ([target_turf.x], [target_turf.y], [target_turf.z])") + stack_trace("Nightmare Mapload: Loaded map file but could not initialize: '[filepath]' at ([target_turf.x], [target_turf.y], [target_turf.z])") return TRUE /// Initialize atoms/areas in bounds - basically a Nightmare version of [/datum/map_template/initTemplateBounds] @@ -71,11 +70,9 @@ var/list/bounds = parsed.bounds if(length(bounds) < 6) return - var/list/turf_block = block( locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), - locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) var/list/area/arealist = list() var/list/atom/atomlist = list() - for(var/turf/turf as anything in turf_block) + for(var/turf/turf as anything in block(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ], bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) atomlist += turf if(turf.loc) arealist |= turf.loc diff --git a/code/modules/nightmare/nmtasks/mapscheduler.dm b/code/modules/nightmare/nmtasks/mapscheduler.dm index 34ceecafb8..1d7f7385d4 100644 --- a/code/modules/nightmare/nmtasks/mapscheduler.dm +++ b/code/modules/nightmare/nmtasks/mapscheduler.dm @@ -16,14 +16,13 @@ /datum/nmtask/scheduler/mapload/proc/register_tainted_bounds(datum/nmtask/task, list/bounds) tainted_bounds.len++ - tainted_bounds[tainted_bounds.len] = bounds + tainted_bounds[length(tainted_bounds)] = bounds /datum/nmtask/scheduler/mapload/proc/patch_lighting() var/list/tainted = list() for(var/list/bounds as anything in tainted_bounds) - var/list/TT = block( locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), - locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])) + var/list/TT = block(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ], bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]) tainted |= TT for(var/turf/T as anything in tainted) diff --git a/code/modules/organs/limb_objects.dm b/code/modules/organs/limb_objects.dm index 4bc3ae5cfa..607eac5fee 100644 --- a/code/modules/organs/limb_objects.dm +++ b/code/modules/organs/limb_objects.dm @@ -112,7 +112,7 @@ var/datum/sprite_accessory/facial_hair_style = GLOB.facial_hair_styles_list[H.f_style] if(facial_hair_style) var/icon/facial = new/icon("icon" = facial_hair_style.icon, "icon_state" = "[facial_hair_style.icon_state]_s") - if(facial_hair_style.do_colouration) + if(facial_hair_style.do_coloration) facial.Blend(rgb(H.r_facial, H.g_facial, H.b_facial), ICON_ADD) overlays.Add(facial) // icon.Blend(facial, ICON_OVERLAY) @@ -122,7 +122,7 @@ if(hair_style) var/icon/hair = new/icon("icon" = hair_style.icon, "icon_state" = "[hair_style.icon_state]_s") var/icon/eyes = new/icon("icon" = 'icons/mob/humans/onmob/human_face.dmi', "icon_state" = H.species ? H.species.eyes : "eyes_s") - if(hair_style.do_colouration) + if(hair_style.do_coloration) hair.Blend(rgb(H.r_hair, H.g_hair, H.b_hair), ICON_ADD) eyes.Blend(rgb(H.r_eyes, H.g_eyes, H.b_eyes), ICON_ADD) diff --git a/code/modules/organs/limbs.dm b/code/modules/organs/limbs.dm index 99a104ea55..1c9e5e9177 100644 --- a/code/modules/organs/limbs.dm +++ b/code/modules/organs/limbs.dm @@ -20,7 +20,7 @@ var/display_name var/list/datum/wound/wounds = list() - var/number_wounds = 0 // cache the number of wounds, which is NOT wounds.len! + var/number_wounds = 0 // cache the number of wounds, which is NOT length(wounds)! var/tmp/perma_injury = 0 @@ -349,9 +349,9 @@ possible_points += parent if(children) possible_points += children - if(forbidden_limbs.len) + if(length(forbidden_limbs)) possible_points -= forbidden_limbs - if(possible_points.len) + if(length(possible_points)) //And pass the damage around, but not the chance to cut the limb off. var/obj/limb/target = pick(possible_points) if(brute_reduced_by == -1) @@ -368,8 +368,9 @@ //If limb was damaged before and took enough damage, try to cut or tear it off var/no_perma_damage = owner.status_flags & NO_PERMANENT_DAMAGE - if(previous_brute > 0 && !is_ff && body_part != BODY_FLAG_CHEST && body_part != BODY_FLAG_GROIN && !no_limb_loss && !no_perma_damage) - if(CONFIG_GET(flag/limbs_can_break) && brute_dam >= max_damage * CONFIG_GET(number/organ_health_multiplier)) + var/no_bone_break = owner.chem_effect_flags & CHEM_EFFECT_RESIST_FRACTURE + if(previous_brute > 0 && !is_ff && body_part != BODY_FLAG_CHEST && body_part != BODY_FLAG_GROIN && !no_limb_loss && !no_perma_damage && !no_bone_break) + if(CONFIG_GET(flag/limbs_can_break) && brute_dam >= max_damage * CONFIG_GET(number/organ_health_multiplier) && (status & LIMB_BROKEN)) var/cut_prob = brute/max_damage * 5 if(prob(cut_prob)) limb_delimb(damage_source) @@ -476,20 +477,20 @@ This function completely restores a damaged organ to perfect condition. if(!(status & LIMB_SPLINTED_INDESTRUCTIBLE) && (status & LIMB_SPLINTED) && damage > 5 && prob(10 + damage * 2.5)) //If they have it splinted, the splint won't hold. status &= ~LIMB_SPLINTED playsound(get_turf(loc), 'sound/items/splintbreaks.ogg', 20) - to_chat(owner, SPAN_DANGER("The splint on your [display_name] comes apart!")) + to_chat(owner, SPAN_HIGHDANGER("The splint on your [display_name] comes apart!")) owner.pain.apply_pain(PAIN_BONE_BREAK_SPLINTED) owner.update_med_icon() // first check whether we can widen an existing wound var/datum/wound/W - if(wounds.len > 0 && prob(max(50+(number_wounds-1)*10,90))) + if(length(wounds) > 0 && prob(max(50+(number_wounds-1)*10,90))) if((type == CUT || type == BRUISE) && damage >= 5) //we need to make sure that the wound we are going to worsen is compatible with the type of damage... var/compatible_wounds[] = new for(W in wounds) if(W.can_worsen(type, damage)) compatible_wounds += W - if(compatible_wounds.len) + if(length(compatible_wounds)) W = pick(compatible_wounds) W.open_wound(damage) if(type != BURN) @@ -550,6 +551,7 @@ This function completely restores a damaged organ to perfect condition. /obj/limb/proc/remove_all_bleeding(external = FALSE, internal = FALSE) + SEND_SIGNAL(src, COMSIG_LIMB_STOP_BLEEDING, external, internal) if(external) for(var/datum/effects/bleeding/external/B in bleeding_effects_list) qdel(B) @@ -581,8 +583,9 @@ This function completely restores a damaged organ to perfect condition. if(brute_dam || burn_dam) return TRUE if(knitting_time > 0) - return 1 - return 0 + return TRUE + update_wounds() + return FALSE /obj/limb/process() @@ -651,7 +654,7 @@ This function completely restores a damaged organ to perfect condition. //configurable regen speed woo, no-regen hardcore or instaheal hugbox, choose your destiny heal_amt = heal_amt * CONFIG_GET(number/organ_regeneration_multiplier) // amount of healing is spread over all the wounds - heal_amt = heal_amt / (wounds.len + 1) + heal_amt = heal_amt / (length(wounds) + 1) // making it look prettier on scanners heal_amt = round(heal_amt,0.1) @@ -798,7 +801,7 @@ This function completely restores a damaged organ to perfect condition. if(istype(E, /obj/limb/chest) || istype(E, /obj/limb/groin) || istype(E, /obj/limb/head)) continue limbs_to_remove += E - if(limbs_to_remove.len) + if(length(limbs_to_remove)) var/obj/limb/L = pick(limbs_to_remove) var/limb_name = L.display_name L.droplimb(0, delete_limb) @@ -955,7 +958,7 @@ This function completely restores a damaged organ to perfect condition. if(organ) //Throw organs around - var/lol = pick(cardinal) + var/lol = pick(GLOB.cardinals) step(organ,lol) owner.update_body() //Among other things, this calls update_icon() and updates our visuals. @@ -964,7 +967,13 @@ This function completely restores a damaged organ to perfect condition. // OK so maybe your limb just flew off, but if it was attached to a pair of cuffs then hooray! Freedom! release_restraints() - if(vital) owner.death(cause) + if(vital) + var/mob/caused_mob + if(istype(cause, /mob)) + caused_mob = cause + if(!istype(cause, /datum/cause_data)) + cause = create_cause_data("lost vital limb", caused_mob) + owner.death(cause) /* HELPERS @@ -1094,7 +1103,7 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit //if the chance was not set by what called fracture(), the endurance check is done instead if(bonebreak_probability == null) //bone break chance is based on endurance, 25% for survivors, erts, 100% for most everyone else. - bonebreak_probability = 100 / Clamp(owner.skills?.get_skill_level(SKILL_ENDURANCE)-1,1,100) //can't be zero + bonebreak_probability = 100 / clamp(owner.skills?.get_skill_level(SKILL_ENDURANCE)-1,1,100) //can't be zero var/list/bonebreak_data = list("bonebreak_probability" = bonebreak_probability) SEND_SIGNAL(owner, COMSIG_HUMAN_BONEBREAK_PROBABILITY, bonebreak_data) @@ -1415,7 +1424,6 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit has_stump_icon = TRUE splint_icon_amount = 4 bandage_icon_amount = 4 - var/disfigured = 0 //whether the head is disfigured. var/eyes_r var/eyes_g @@ -1453,25 +1461,6 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit mob/attack_source = null,\ brute_reduced_by = -1, burn_reduced_by = -1) . = ..() - if (!disfigured) - if (brute_dam > 50 || brute_dam > 40 && prob(50)) - disfigure("brute") - if (burn_dam > 40) - disfigure("burn") - -/obj/limb/head/proc/disfigure(type = "brute") - if (disfigured) - return - if(type == "brute") - owner.visible_message(SPAN_DANGER("You hear a sickening cracking sound coming from \the [owner]'s face."), \ - SPAN_DANGER("Your face becomes an unrecognizible mangled mess!"), \ - SPAN_DANGER("You hear a sickening crack.")) - else - owner.visible_message(SPAN_DANGER("[owner]'s face melts away, turning into a mangled mess!"), \ - SPAN_DANGER("Your face melts off!"), \ - SPAN_DANGER("You hear a sickening sizzle.")) - disfigured = 1 - owner.name = owner.get_visible_name() /obj/limb/head/reset_limb_surgeries() for(var/zone in list("head", "eyes", "mouth")) @@ -1514,7 +1503,7 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit /obj/limb/head/limb_delimb(damage_source) var/obj/item/clothing/head/helmet/owner_helmet = owner.head - if(!istype(owner_helmet) || !owner.allow_gun_usage) + if(!istype(owner_helmet) || (issynth(owner) && !owner.allow_gun_usage)) droplimb(0, 0, damage_source) return @@ -1523,5 +1512,5 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit owner.visible_message("[owner]'s [owner_helmet] goes flying off from the impact!", SPAN_USERDANGER("Your [owner_helmet] goes flying off from the impact!")) owner.drop_inv_item_on_ground(owner_helmet) - INVOKE_ASYNC(owner_helmet, TYPE_PROC_REF(/atom/movable, throw_atom), pick(range(get_turf(loc), 1)), 1, SPEED_FAST) + INVOKE_ASYNC(owner_helmet, TYPE_PROC_REF(/atom/movable, throw_atom), pick(range(1, get_turf(loc))), 1, SPEED_FAST) playsound(owner, 'sound/effects/helmet_noise.ogg', 100) diff --git a/code/modules/organs/organ_internal.dm b/code/modules/organs/organ_internal.dm index dd37ac5a8a..9d4a450852 100644 --- a/code/modules/organs/organ_internal.dm +++ b/code/modules/organs/organ_internal.dm @@ -10,6 +10,7 @@ var/mob/living/carbon/human/owner = null var/vital //Lose a vital limb, die immediately. var/damage = 0 // amount of damage to the organ + var/min_little_bruised_damage = 1 //to make sure the stethoscope/penlight will not lie to the player var/min_bruised_damage = 10 var/min_broken_damage = 30 var/parent_limb = "chest" @@ -36,16 +37,21 @@ /// Set the correct organ state /datum/internal_organ/proc/set_organ_status() - if(damage > min_broken_damage || cut_away) + if(damage >= min_broken_damage || cut_away) if(organ_status != ORGAN_BROKEN) organ_status = ORGAN_BROKEN return TRUE return FALSE - if(damage > min_bruised_damage) + if(damage >= min_bruised_damage) if(organ_status != ORGAN_BRUISED) organ_status = ORGAN_BRUISED return TRUE return FALSE + if(damage >= min_little_bruised_damage) // Only for the stethoscopes and penlights, smaller damage check for extra precision + if(organ_status != ORGAN_LITTLE_BRUISED) + organ_status = ORGAN_LITTLE_BRUISED + return TRUE + return FALSE if(organ_status != ORGAN_HEALTHY) organ_status = ORGAN_HEALTHY return TRUE diff --git a/code/modules/organs/organ_objects.dm b/code/modules/organs/organ_objects.dm index 7c7622820a..934a981e6f 100644 --- a/code/modules/organs/organ_objects.dm +++ b/code/modules/organs/organ_objects.dm @@ -4,14 +4,20 @@ icon = 'icons/obj/items/organs.dmi' icon_state = "appendix" - health = 100 // Process() ticks before death. - - var/fresh = 3 // Squirts of blood left in it. - var/dead_icon // Icon used when the organ dies. - var/robotic // Is the limb prosthetic? - var/organ_tag // What slot does it go in? - var/organ_type = /datum/internal_organ // Used to spawn the relevant organ data when produced via a machine or spawn(). - var/datum/internal_organ/organ_data // Stores info when removed. + /// Process() ticks before death. + health = 100 + /// Squirts of blood left in it. + var/fresh = 3 + /// Icon used when the organ dies. + var/dead_icon + /// Is the limb prosthetic? + var/robotic + /// What slot does it go in? + var/organ_tag + /// Used to spawn the relevant organ data when produced via a machine or spawn(). + var/organ_type = /datum/internal_organ + /// Stores info when removed. + var/datum/internal_organ/organ_data black_market_value = 25 /obj/item/organ/attack_self(mob/user) @@ -100,7 +106,7 @@ gender = PLURAL organ_tag = "eyes" organ_type = /datum/internal_organ/eyes - var/eye_colour + var/eyes_color /obj/item/organ/liver name = "liver" @@ -108,6 +114,17 @@ organ_tag = "liver" organ_type = /datum/internal_organ/liver +/obj/item/organ/xeno + name = "acidic heart" + desc = "Acidic heart removed from a xenomorph. It spews droplets of acid every so often." + icon_state = "heart_t1" + organ_tag = "heart" + black_market_value = 60 + ///value of the organ in the recycler, heavily varies from size and tier + var/research_value = 1 //depending on the size and tier + ///the caste in a string, which is used in a xenoanalyzer + var/caste_origin // used for desc in xenoanalyzer + //These are here so they can be printed out via the fabricator. /obj/item/organ/heart/prosthetic name = "circulatory pump" @@ -164,13 +181,13 @@ /obj/item/organ/eyes/removed(mob/living/target, mob/living/user) - if(!eye_colour) - eye_colour = list(0,0,0) + if(!eyes_color) + eyes_color = list(0,0,0) ..() //Make sure target is set so we can steal their eye color for later. var/mob/living/carbon/human/H = target if(istype(H)) - eye_colour = list( + eyes_color = list( H.r_eyes ? H.r_eyes : 0, H.g_eyes ? H.g_eyes : 0, H.b_eyes ? H.b_eyes : 0 @@ -189,10 +206,10 @@ // Apply our eye color to the target. var/mob/living/carbon/human/H = target - if(istype(H) && eye_colour) - H.r_eyes = eye_colour[1] - H.g_eyes = eye_colour[2] - H.b_eyes = eye_colour[3] + if(istype(H) && eyes_color) + H.r_eyes = eyes_color[1] + H.g_eyes = eyes_color[2] + H.b_eyes = eyes_color[3] H.update_body() /obj/item/organ/proc/bitten(mob/user) diff --git a/code/modules/organs/wound.dm b/code/modules/organs/wound.dm index 86f4199a2e..d9fee4195a 100644 --- a/code/modules/organs/wound.dm +++ b/code/modules/organs/wound.dm @@ -56,7 +56,7 @@ // returns 1 if there's a next stage, 0 otherwise /datum/wound/proc/init_stage(initial_damage) - current_stage = stages.len + current_stage = length(stages) while(src.current_stage > 1 && src.damage_list[current_stage-1] <= initial_damage / src.amount) src.current_stage-- @@ -108,7 +108,7 @@ amount -= healed_damage src.damage -= healed_damage - while(src.wound_damage() < damage_list[current_stage] && current_stage < src.desc_list.len) + while(src.wound_damage() < damage_list[current_stage] && current_stage < length(src.desc_list)) current_stage++ desc = desc_list[current_stage] src.min_damage = damage_list[current_stage] diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm index f38f450579..9f00aa3a65 100644 --- a/code/modules/paperwork/clipboard.dm +++ b/code/modules/paperwork/clipboard.dm @@ -50,7 +50,7 @@ W.forceMove(src) if(istype(W, /obj/item/paper)) toppaper = W - to_chat(user, SPAN_NOTICE("You clip the [W] onto \the [src].")) + to_chat(user, SPAN_NOTICE("You clip [W] onto [src].")) update_icon() else if(istype(toppaper) && HAS_TRAIT(W, TRAIT_TOOL_PEN)) diff --git a/code/modules/paperwork/desk_bell.dm b/code/modules/paperwork/desk_bell.dm new file mode 100644 index 0000000000..87eb24d1ca --- /dev/null +++ b/code/modules/paperwork/desk_bell.dm @@ -0,0 +1,106 @@ +// A receptionist's bell + +/obj/item/desk_bell + name = "desk bell" + desc = "The cornerstone of any customer service job. You feel an unending urge to ring it." + icon = 'icons/obj/objects.dmi' + icon_state = "desk_bell" + w_class = SIZE_SMALL + embeddable = FALSE + /// The amount of times this bell has been rang, used to check the chance it breaks. + var/times_rang = 0 + /// Is this bell broken? + var/broken_ringer = FALSE + /// Holds the time that the bell can next be rang. + COOLDOWN_DECLARE(ring_cooldown) + /// The length of the cooldown. Setting it to 0 will skip all cooldowns alltogether. + var/ring_cooldown_length = 5 SECONDS // This is here to protect against tinnitus. + /// The sound the bell makes. + var/ring_sound = 'sound/misc/desk_bell.ogg' + +/obj/item/desk_bell/attack_hand(mob/living/user) + if(!ishuman(user)) + return FALSE + if(!anchored) + return ..() + if(!COOLDOWN_FINISHED(src, ring_cooldown)) + return FALSE + if(!ring_bell(user)) + to_chat(user, SPAN_NOTICE("[src] is silent. Some idiot broke it.")) + return FALSE + return TRUE + +/obj/item/desk_bell/MouseDrop(atom/over_object) + var/mob/mob = usr + if(!Adjacent(mob) || anchored) + return + if(!ishuman(mob)) + return + + if(over_object == mob) + mob.put_in_hands(src) + +/obj/item/desk_bell/attackby(obj/item/item, mob/user) + //Repair the desk bell if its broken and we're using a screwdriver. + if(HAS_TRAIT(item, TRAIT_TOOL_SCREWDRIVER)) + if(broken_ringer) + user.visible_message(SPAN_NOTICE("[user] begins repairing [src]..."), SPAN_NOTICE("You begin repairing [src]...")) + if(do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + user.visible_message(SPAN_NOTICE("[user] repairs [src]."), SPAN_NOTICE("You repair [src].")) + playsound(src, 'sound/items/Screwdriver.ogg', 50) + broken_ringer = FALSE + times_rang = 0 + return TRUE + return FALSE + + //Return at this point if we're not on a turf so we don't anchor or unanchor inside our bag/hands or inventory. + if(!isturf(loc)) + return + + //Wrenching down and unwrenching. + if(HAS_TRAIT(item, TRAIT_TOOL_WRENCH)) + if(user.a_intent == INTENT_HARM) + visible_message(SPAN_NOTICE("[user] begins taking apart [src]..."), SPAN_NOTICE("You begin taking apart [src]...")) + playsound(src, 'sound/items/deconstruct.ogg', 35) + if(do_after(user, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + visible_message(SPAN_NOTICE("[user] takes apart [src]."), SPAN_NOTICE("You take apart [src].")) + new /obj/item/stack/sheet/metal(get_turf(src)) + qdel(src) + return TRUE + else + user.visible_message(SPAN_NOTICE("[user] begins [anchored ? "un" : ""]securing [src]..."), SPAN_NOTICE("You begin [anchored ? "un" : ""]securing [src]...")) + playsound(src, 'sound/items/Ratchet.ogg', 35, TRUE) + if(!do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + return FALSE + user.visible_message(SPAN_NOTICE("[user] [anchored ? "un" : ""]secures [src]."), SPAN_NOTICE("You [anchored ? "un" : ""]secure [src].")) + anchored = !anchored + return TRUE + + +/// Check if the clapper breaks, and if it does, break it. Chance to break is 1% for every 100 rings of the bell. +/obj/item/desk_bell/proc/check_clapper(mob/living/user) + if(prob(times_rang / 100)) + to_chat(user, SPAN_NOTICE("You hear [src]'s clapper fall off of its hinge. Nice job hamfist, you broke it.")) + broken_ringer = TRUE + +/// Ring the bell. +/obj/item/desk_bell/proc/ring_bell(mob/living/user) + if(broken_ringer) + return FALSE + check_clapper(user) + COOLDOWN_START(src, ring_cooldown, ring_cooldown_length) + playsound(src, ring_sound, 80) + flick("desk_bell_activate", src) + times_rang++ + return TRUE + +/obj/item/desk_bell/ares + name = "AI core reception bell" + desc = "The cornerstone of any customer service job. This one is linked to ARES and will notify any active Working Joes upon being rung." + ring_cooldown_length = 60 SECONDS // Prevents spam + +/obj/item/desk_bell/ares/ring_bell(mob/living/user) + if(broken_ringer) + return FALSE + ares_apollo_talk("Attendence requested at AI Core Reception.") + return ..() diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index 119c846a93..42d4241395 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -64,7 +64,7 @@ to_chat(user, SPAN_NOTICE("You can't put [P] in [src]!")) /obj/structure/filingcabinet/attack_hand(mob/user as mob) - if(contents.len <= 0) + if(length(contents) <= 0) to_chat(user, SPAN_NOTICE("\The [src] is empty.")) return diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 478dcc0a8e..0250b9c7d4 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -41,14 +41,14 @@ /obj/item/folder/update_icon() overlays.Cut() - if(contents.len) + if(length(contents)) overlays += "folder_paper" return /obj/item/folder/attackby(obj/item/W as obj, mob/user as mob) if(istype(W, /obj/item/paper) || istype(W, /obj/item/photo) || istype(W, /obj/item/paper_bundle)) if(user.drop_inv_item_to_loc(W, src)) - to_chat(user, SPAN_NOTICE("You put the [W] into \the [src].")) + to_chat(user, SPAN_NOTICE("You put [W] into [src].")) update_icon() else if(HAS_TRAIT(W, TRAIT_TOOL_PEN)) var/n_name = strip_html(input(usr, "What would you like to label the folder?", "Folder Labelling", null) as text) diff --git a/code/modules/paperwork/notepad.dm b/code/modules/paperwork/notepad.dm index f30d56c4a7..bbfec54288 100644 --- a/code/modules/paperwork/notepad.dm +++ b/code/modules/paperwork/notepad.dm @@ -14,14 +14,14 @@ var/page = 1 var/screen = 0 - var/list/cover_colours = list("red", "green", "black", "blue") - var/cover_colour + var/list/cover_colors = list("red", "green", "black", "blue") + var/cover_color /obj/item/notepad/Initialize(mapload, ...) . = ..() - if(!cover_colour) - cover_colour = pick(cover_colours) - icon_state = initial(icon_state) + "_[cover_colour]" + if(!cover_color) + cover_color = pick(cover_colors) + icon_state = initial(icon_state) + "_[cover_color]" for(var/i = 1 to paper_left) new /obj/item/paper(src) @@ -31,7 +31,7 @@ if(HAS_TRAIT(attack_item, TRAIT_TOOL_PEN) || istype(attack_item, /obj/item/toy/crayon)) close_browser(usr, name) //Closes the dialog - if(page < contents.len) + if(page < length(contents)) page = 1 var/obj/item/paper/paper = contents[page] paper.attackby(attack_item, user) @@ -93,8 +93,8 @@ page-- playsound(loc, "pageturn", 15, 1) if(href_list["remove"]) - if(contents.len < page) - page = contents.len + if(length(contents) < page) + page = length(contents) var/obj/item/ripped_out_page = contents[page] usr.put_in_hands(ripped_out_page) to_chat(usr, SPAN_NOTICE("You rip out [ripped_out_page] from [src].")) @@ -118,6 +118,9 @@ else to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!")) +/obj/item/notepad/proc/operator[](index_num) + return contents[index_num] + /obj/item/notepad/verb/rename() set name = "Rename notepad" set category = "Object" @@ -129,13 +132,13 @@ add_fingerprint(usr) /obj/item/notepad/black - cover_colour = "black" + cover_color = "black" /obj/item/notepad/blue - cover_colour = "blue" + cover_color = "blue" /obj/item/notepad/green - cover_colour = "green" + cover_color = "green" /obj/item/notepad/red - cover_colour = "red" + cover_color = "red" diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 751dbe5bf7..e1610fb340 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -75,26 +75,25 @@ /obj/item/paper/get_examine_text(mob/user) . = ..() - if(in_range(user, src) || istype(user, /mob/dead/observer)) + if(in_range(user, src) || isobserver(user)) if(!(istype(user, /mob/dead/observer) || istype(user, /mob/living/carbon/human) || isRemoteControlling(user))) // Show scrambled paper if they aren't a ghost, human, or silicone. - if(photo_list) - for(var/photo in photo_list) - user << browse_rsc(photo_list[photo], photo) - show_browser(user, "[stars(info)][stamps]", name, name, "size=650x700") - onclose(user, name) + read_paper(user,scramble = TRUE) else read_paper(user) else . += SPAN_NOTICE("It is too far away.") -/obj/item/paper/proc/read_paper(mob/user) +/obj/item/paper/proc/read_paper(mob/user, scramble = FALSE) var/datum/asset/asset_datum = get_asset_datum(/datum/asset/simple/paper) asset_datum.send(user) if(photo_list) for(var/photo in photo_list) user << browse_rsc(photo_list[photo], photo) - show_browser(user, "[info][stamps]", name, name, "size=650x700") + var/paper_info = info + if(scramble) + paper_info = stars_decode_html(info) + show_browser(user, "[paper_info][stamps]", name, name, "size=650x700") onclose(user, name) /obj/item/paper/verb/rename() @@ -115,10 +114,7 @@ /obj/item/paper/attack_remote(mob/living/silicon/ai/user as mob) var/dist - if(istype(user) && user.camera) //is AI - dist = get_dist(src, user.camera) - else //cyborg or AI not seeing through a camera - dist = get_dist(src, user) + dist = get_dist(src, user) if(dist < 2) read_paper(user) else @@ -227,10 +223,10 @@ t = replacetext(t, "\[large\]", "") t = replacetext(t, "\[/large\]", "") t = replacetext(t, "\[sign\]", "[user ? user.real_name : "Anonymous"]") - t = replacetext(t, "\[date\]", "[time2text(REALTIMEOFDAY, "Day DD Month [game_year]")]") - t = replacetext(t, "\[shortdate\]", "[time2text(REALTIMEOFDAY, "DD/MM/[game_year]")]") + t = replacetext(t, "\[date\]", "[time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") + t = replacetext(t, "\[shortdate\]", "[time2text(REALTIMEOFDAY, "DD/MM/[GLOB.game_year]")]") t = replacetext(t, "\[time\]", "[worldtime2text("hh:mm")]") - t = replacetext(t, "\[date+time\]", "[worldtime2text("hh:mm")], [time2text(REALTIMEOFDAY, "Day DD Month [game_year]")]") + t = replacetext(t, "\[date+time\]", "[worldtime2text("hh:mm")], [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") t = replacetext(t, "\[field\]", "") t = replacetext(t, "\[h1\]", "

        ") @@ -259,7 +255,7 @@ t = replacetext(t, "\[upp\]", "") t = replacetext(t, "\[cmb\]", "") - t = "[t]" + t = "[t]" else // If it is a crayon, and he still tries to use these, make them empty! t = replacetext(t, "\[*\]", "") t = replacetext(t, "\[hr\]", "") @@ -273,7 +269,7 @@ t = replacetext(t, "\[cell\]", "") t = replacetext(t, "\[logo\]", "") - t = "[t]" + t = "[t]" // t = replacetext(t, "#", "") // Junk converted to nothing! @@ -362,8 +358,8 @@ iscrayon = 1 - // if paper is not in usr, then it must be near them, or in a clipboard or folder, which must be in or near usr - if(src.loc != usr && !src.Adjacent(usr) && !((istype(src.loc, /obj/item/clipboard) || istype(src.loc, /obj/item/folder)) && (src.loc.loc == usr || src.loc.Adjacent(usr)) ) ) + // if paper is not in usr, then it must be near them, or in a clipboard, noticeboard or folder, which must be in or near usr + if(src.loc != usr && !src.Adjacent(usr) && !((istype(src.loc, /obj/item/clipboard) || istype(src.loc, /obj/structure/noticeboard) || istype(src.loc, /obj/item/folder)) && (src.loc.loc == usr || src.loc.Adjacent(usr)) ) ) return t = replacetext(t, "\n", "
        ") @@ -409,10 +405,7 @@ if(!p.on) to_chat(user, SPAN_NOTICE("Your pen is not on!")) return - if ( istype(P, /obj/item/tool/pen/robopen) && P:mode == 2 ) - P:RenamePaper(user,src) - else - show_browser(user, "[info_links][stamps]", name, name) // Update the window + show_browser(user, "[info_links][stamps]", name, name) // Update the window //openhelp(user) return @@ -569,6 +562,10 @@ name = "crumpled note" info = "there is cotten candy in the walls" +/obj/item/paper/bigred/lambda + name = "ripped diary entry" + info = "Director Smith's Diary\nEntry Date: 15 December 2181\nToday, I've felt true progress! The XX-121 reproduction program is in full effect, and Administrator Cooper have given us the all clear to continue producing specimens. To think that all this is coming from just that first specimen, a single 'Queen' form... It's grown to almost 5 meters tall and shows no signs of ceasing egg production! These creatures will be the next Synthetic of our time, we'll show those Seegson bastards." + /obj/item/paper/bigred/union name = "Shaft miners union" info = "Today we have had enough of being underpaid and treated like shit for not reaching the higher up's unreasonable quotas of ore. They say this place has a \"sea of valuable ores,\" yet we have been mining for years and are yet to find a single diamond. We have had it, enough is enough. They think they can control everything we do, they thought wrong! We, the oppressed workers, shall rise up against the capitalist dogs in a mutiny and take back our pay by force. \n If they send their dogs here to bust us, we will kill each and every single one of them." @@ -666,34 +663,34 @@ if(!C) var/random_chem if(tier) - random_chem = pick(chemical_gen_classes_list[tier]) + random_chem = pick(GLOB.chemical_gen_classes_list[tier]) else if(note_type == "test") - random_chem = pick(chemical_gen_classes_list["T4"]) + random_chem = pick(GLOB.chemical_gen_classes_list["T4"]) else - random_chem = pick( prob(55);pick(chemical_gen_classes_list["T2"]), - prob(30);pick(chemical_gen_classes_list["T3"]), - prob(15);pick(chemical_gen_classes_list["T4"])) + random_chem = pick( prob(55);pick(GLOB.chemical_gen_classes_list["T2"]), + prob(30);pick(GLOB.chemical_gen_classes_list["T3"]), + prob(15);pick(GLOB.chemical_gen_classes_list["T4"])) if(!random_chem) - random_chem = pick(chemical_gen_classes_list["T1"]) - C = chemical_reagents_list["[random_chem]"] + random_chem = pick(GLOB.chemical_gen_classes_list["T1"]) + C = GLOB.chemical_reagents_list["[random_chem]"] var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) var/txt = "

        Official Weyland-Yutani Document
        Experiment Notes

        " switch(note_type) if("synthesis") - var/datum/chemical_reaction/G = chemical_reactions_list[C.id] + var/datum/chemical_reaction/G = GLOB.chemical_reactions_list[C.id] name = "Synthesis of [C.name]" icon_state = "paper_wy_partial_report" txt += "[name]

        " txt += "During experiment [pick("C","Q","V","W","X","Y","Z")][rand(100,999)][pick("a","b","c")] the theorized compound identified as [C.name], was successfully synthesized using the following formula:
        \n
        \n" for(var/I in G.required_reagents) - var/datum/reagent/R = chemical_reagents_list["[I]"] + var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"] var/U = G.required_reagents[I] txt += " - [U] [R.name]
        \n" - if(G.required_catalysts && G.required_catalysts.len) + if(LAZYLEN(G.required_catalysts)) txt += "
        \nWhile using the following catalysts:
        \n
        \n" for(var/I in G.required_catalysts) - var/datum/reagent/R = chemical_reagents_list["[I]"] + var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"] var/U = G.required_catalysts[I] txt += " - [U] [R.name]
        \n" if(full_report) @@ -770,16 +767,16 @@ /obj/item/paper/research_notes/unique/Initialize() //Each one of these get a new unique chem var/datum/reagent/generated/C = new /datum/reagent/generated - C.id = "tau-[length(chemical_gen_classes_list["tau"])]" + C.id = "tau-[length(GLOB.chemical_gen_classes_list["tau"])]" C.generate_name() C.chemclass = CHEM_CLASS_RARE if(gen_tier) C.gen_tier = gen_tier else - C.gen_tier = chemical_data.clearance_level + C.gen_tier = GLOB.chemical_data.clearance_level C.generate_stats() - chemical_gen_classes_list["tau"] += C.id //Because each unique_vended should be unique, we do not save the chemclass anywhere but in the tau list - chemical_reagents_list[C.id] = C + GLOB.chemical_gen_classes_list["tau"] += C.id //Because each unique_vended should be unique, we do not save the chemclass anywhere but in the tau list + GLOB.chemical_reagents_list[C.id] = C C.generate_assoc_recipe() data = C msg_admin_niche("New reagent with id [C.id], name [C.name], level [C.gen_tier], generated and printed at [loc] [ADMIN_JMP(loc)].") @@ -803,7 +800,7 @@ info += "ID: [S.name]

        \n" info += "Database Details:
        \n" if(S.chemclass >= CHEM_CLASS_ULTRA) - if(chemical_data.clearance_level >= S.gen_tier || info_only) + if(GLOB.chemical_data.clearance_level >= S.gen_tier || info_only) info += "The following information relating to [S.name] is restricted with a level [S.gen_tier] clearance classification.
        " info += "[S.description]\n" info += "
        Overdoses at: [S.overdose] units\n" @@ -813,7 +810,7 @@ else info += "CLASSIFIED: Clearance level [S.gen_tier] required to read the database entry.
        \n" icon_state = "paper_wy_partial_report" - else if(S.chemclass == CHEM_CLASS_SPECIAL && !chemical_data.clearance_x_access && !info_only) + else if(S.chemclass == CHEM_CLASS_SPECIAL && !GLOB.chemical_data.clearance_x_access && !info_only) info += "CLASSIFIED: Clearance level X required to read the database entry.
        \n" icon_state = "paper_wy_partial_report" else if(S.description) @@ -825,31 +822,30 @@ else info += "No details on this reagent could be found in the database.
        \n" icon_state = "paper_wy_synthesis" - if(S.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[S.id] && !info_only) + if(S.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[S.id] && !info_only) info += "
        Saved emission spectrum of [S.name] to the database.
        \n" info += "
        Composition Details:
        \n" - if(chemical_reactions_list[S.id]) - var/datum/chemical_reaction/C = chemical_reactions_list[S.id] + if(GLOB.chemical_reactions_list[S.id]) + var/datum/chemical_reaction/C = GLOB.chemical_reactions_list[S.id] for(var/I in C.required_reagents) - var/datum/reagent/R = chemical_reagents_list["[I]"] - if(R.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[R.id] && !info_only) + var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"] + if(R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id] && !info_only) info += " - Unknown emission spectrum
        \n" completed = FALSE else var/U = C.required_reagents[I] info += " - [U] [R.name]
        \n" - if(C.required_catalysts) - if(C.required_catalysts.len) - info += "
        Reaction would require the following catalysts:
        \n" - for(var/I in C.required_catalysts) - var/datum/reagent/R = chemical_reagents_list["[I]"] - if(R.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[R.id] && !info_only) - info += " - Unknown emission spectrum
        \n" - completed = FALSE - else - var/U = C.required_catalysts[I] - info += " - [U] [R.name]
        \n" - else if(chemical_gen_classes_list["C1"].Find(S.id)) + if(LAZYLEN(C.required_catalysts)) + info += "
        Reaction would require the following catalysts:
        \n" + for(var/I in C.required_catalysts) + var/datum/reagent/R = GLOB.chemical_reagents_list["[I]"] + if(R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id] && !info_only) + info += " - Unknown emission spectrum
        \n" + completed = FALSE + else + var/U = C.required_catalysts[I] + info += " - [U] [R.name]
        \n" + else if(GLOB.chemical_gen_classes_list["C1"].Find(S.id)) info += " - [S.name]
        \n" else info += "ERROR: Unable to analyze emission spectrum of sample." //A reaction to make this doesn't exist, so this is our IC excuse @@ -860,7 +856,7 @@ else if(!S.properties) //Safety for empty reagents completed = FALSE - if(S.chemclass == CHEM_CLASS_SPECIAL && chemical_data.clearance_x_access) + if(S.chemclass == CHEM_CLASS_SPECIAL && GLOB.chemical_data.clearance_x_access) completed = TRUE data = S diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm index 8cbb7a266f..c0d9bee3aa 100644 --- a/code/modules/paperwork/paper_bundle.dm +++ b/code/modules/paperwork/paper_bundle.dm @@ -44,8 +44,8 @@ else if(HAS_TRAIT(W, TRAIT_TOOL_PEN) || istype(W, /obj/item/toy/crayon)) close_browser(usr, name) //Closes the dialog - if(page < contents.len) - page = contents.len + if(page < length(contents)) + page = length(contents) P = contents[page] P.attackby(W, user) @@ -148,8 +148,8 @@ page-- playsound(src.loc, "pageturn", 15, 1) if(href_list["remove"]) - if(contents.len < page) - page = contents.len + if(length(contents) < page) + page = length(contents) var/obj/item/W = contents[page] usr.put_in_hands(W) to_chat(usr, SPAN_NOTICE("You remove the [W.name] from the bundle.")) @@ -175,6 +175,9 @@ else to_chat(usr, SPAN_NOTICE("You need to hold it in your hands!")) +/obj/item/paper_bundle/proc/operator[](index_num) + return contents[index_num] + /obj/item/paper_bundle/verb/rename() set name = "Rename bundle" set category = "Object" @@ -198,7 +201,7 @@ qdel(src) /obj/item/paper_bundle/update_icon() - if(contents.len) + if(length(contents)) var/obj/item/I = contents[1] icon_state = I.icon_state overlays = I.overlays diff --git a/code/modules/paperwork/paperbin.dm b/code/modules/paperwork/paperbin.dm index eafbb3c12c..4c74cad468 100644 --- a/code/modules/paperwork/paperbin.dm +++ b/code/modules/paperwork/paperbin.dm @@ -28,7 +28,7 @@ /obj/item/paper_bin/attack_hand(mob/user) var/response = "" - if(!papers.len > 0) + if(!length(papers) > 0) response = alert(user, "What kind of paper?", "Paper type request", "Regular", sec_paper_type, "Cancel") if (response != "Regular" && response != "Carbon-Copy" && response != "Company Document" && response != "USCM Document") add_fingerprint(user) @@ -39,8 +39,8 @@ update_icon() var/obj/item/paper/P - if(papers.len > 0) //If there's any custom paper on the stack, use that instead of creating a new paper. - P = papers[papers.len] + if(length(papers) > 0) //If there's any custom paper on the stack, use that instead of creating a new paper. + P = papers[length(papers)] papers.Remove(P) else if (response == "Regular") @@ -56,7 +56,7 @@ P.forceMove(user.loc) user.put_in_hands(P) - to_chat(user, SPAN_NOTICE("You take [P] out of the [src].")) + to_chat(user, SPAN_NOTICE("You take [P] out of [src].")) else to_chat(user, SPAN_NOTICE("[src] is empty!")) @@ -96,3 +96,29 @@ if (response != "Carbon-Copy" && response != "Company Document" && response != "USCM Document") return sec_paper_type = response + +/// Relic from the days of cyborgs, kept for flavour, an handheld paper +/// dispenser that was supposed to print pre-filled forms but never did. +/obj/item/form_printer + name = "paper dispenser" + icon = 'icons/obj/items/paper.dmi' + icon_state = "paper_bin1" + item_state = "sheet-metal" + +/obj/item/form_printer/attack(mob/living/carbon/M, mob/living/carbon/user) + return + +/obj/item/form_printer/afterattack(atom/target, mob/living/user, flag, params) + if(!target || !flag) + return + + if(istype(target,/obj/structure/surface/table)) + deploy_paper(get_turf(target)) + +/obj/item/form_printer/attack_self(mob/user) + ..() + deploy_paper(get_turf(src)) + +/obj/item/form_printer/proc/deploy_paper(turf/T) + T.visible_message(SPAN_NOTICE("\The [src.loc] dispenses a sheet of crisp white paper.")) + new /obj/item/paper(T) diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index b47f630974..df421e8424 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -1,7 +1,9 @@ +/// Normal Photocopier, made by Seegson /obj/structure/machinery/photocopier name = "photocopier" icon = 'icons/obj/structures/machinery/library.dmi' icon_state = "bigscanner" + desc = "A photocopier used for copying... you know, photos! Also useful for copying documents on paper. This specific model has been manufactured by Seegson in a cheaper frame than most modern photocopiers. It uses more primitive copying technology resulting in more toner waste and less printing capabilities. Nonetheless, its cheap construction means cheaper costs, and for people that only need to print a paper or two most of the time, it becomes cost-effective." anchored = TRUE density = TRUE use_power = USE_POWER_IDLE @@ -11,9 +13,15 @@ var/obj/item/paper/copy = null //what's in the copier! var/obj/item/photo/photocopy = null var/obj/item/paper_bundle/bundle = null - var/copies = 1 //how many copies to print! - var/toner = 30 //how much toner is left! woooooo~ - var/maxcopies = 10 //how many copies can be copied at once- idea shamelessly stolen from bs12's copier! + ///how many copies to print! + var/copies = 1 + ///how much toner is left! woooooo~ + var/toner = 45 + ///how many copies can be copied at once- idea shamelessly stolen from bs12's copier! + var/maxcopies = 10 + ///the flick state to use when inserting paper into the machine + var/animate_state = "bigscanner1" + /obj/structure/machinery/photocopier/attack_remote(mob/user as mob) return attack_hand(user) @@ -31,8 +39,6 @@ dat += "+

        " else if(toner) dat += "Please insert paper to copy.

        " - if(istype(user,/mob/living/silicon)) - dat += "Print photo from database

        " dat += "Current toner level: [toner]" if(!toner) dat +="
        Please insert a new toner cartridge!" @@ -111,27 +117,6 @@ if(copies < maxcopies) copies++ updateUsrDialog() - else if(href_list["aipic"]) - if(!istype(usr,/mob/living/silicon)) return - if(toner >= 5) - var/mob/living/silicon/tempAI = usr - var/obj/item/device/camera/siliconcam/camera = tempAI.aiCamera - - if(!camera) - return - var/datum/picture/selection = camera.selectpicture() - if (!selection) - return - - var/obj/item/photo/p = new /obj/item/photo (src.loc) - p.construct(selection) - if (p.desc == "") - p.desc += "Copied by [tempAI.name]" - else - p.desc += " - Copied by [tempAI.name]" - toner -= 5 - sleep(15) - updateUsrDialog() /obj/structure/machinery/photocopier/attackby(obj/item/O as obj, mob/user as mob) if(istype(O, /obj/item/paper)) @@ -139,7 +124,7 @@ if(user.drop_inv_item_to_loc(O, src)) copy = O to_chat(user, SPAN_NOTICE("You insert the paper into \the [src].")) - flick("bigscanner1", src) + flick(animate_state, src) updateUsrDialog() else to_chat(user, SPAN_NOTICE("There is already something in \the [src].")) @@ -148,7 +133,7 @@ if(user.drop_inv_item_to_loc(O, src)) photocopy = O to_chat(user, SPAN_NOTICE("You insert the photo into \the [src].")) - flick("bigscanner1", src) + flick(animate_state, src) updateUsrDialog() else to_chat(user, SPAN_NOTICE("There is already something in \the [src].")) @@ -157,13 +142,13 @@ if(user.drop_inv_item_to_loc(O, src)) bundle = O to_chat(user, SPAN_NOTICE("You insert the bundle into \the [src].")) - flick("bigscanner1", src) + flick(animate_state, src) updateUsrDialog() else if(istype(O, /obj/item/device/toner)) if(toner == 0) if(user.temp_drop_inv_item(O)) qdel(O) - toner = 30 + toner = initial(toner) to_chat(user, SPAN_NOTICE("You insert the toner cartridge into \the [src].")) updateUsrDialog() else @@ -214,7 +199,7 @@ //Iterates through stamps and puts a matching gray overlay onto the copy var/image/img // - for (var/j = 1, j <= original.ico.len, j++) + for (var/j = 1, j <= length(original.ico), j++) if (findtext(original.ico[j], "cap") || findtext(original.ico[j], "cent")) img = image('icons/obj/items/paper.dmi', "paper_stamp-circle") else if (findtext(original.ico[j], "deny")) @@ -262,6 +247,21 @@ return p +/// Upgraded photocopier, straight upgrade from the normal photocopier, made by Weyland-Yutani +/obj/structure/machinery/photocopier/wyphotocopier + name = "photocopier" + icon = 'icons/obj/structures/machinery/library.dmi' + icon_state = "bigscannerpro" + desc = "A photocopier used for copying... you know, photos! Also useful for copying documents on paper. This specific model has been manufactured by Weyland-Yutani in a more modern and robust frame than the average photocopiers you see from smaller companies. It uses some of the most advanced technologies in the area of paper-printing such as bigger toner economy and much higher printing capabilities. All that makes it the favorite among consumers that need to print high amounts of paperwork for their daily duties." + idle_power_usage = 50 + active_power_usage = 300 + copies = 1 + toner = 180 + maxcopies = 30 + animate_state = "bigscannerpro1" + + +/// The actual toner cartridge used in photcopiers /obj/item/device/toner name = "toner cartridge" icon_state = "tonercartridge" diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index b62161b802..38eb0f93f0 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -17,6 +17,10 @@ item_state = "electropack" w_class = SIZE_TINY +/** Picture metadata */ +/datum/picture + var/name = "image" + var/list/fields = list() /* * photo * @@ -46,7 +50,7 @@ ..() /obj/item/photo/get_examine_text(mob/user) - if(in_range(user, src)) + if(in_range(user, src) || isobserver(user)) show(user) return list(desc) else @@ -86,7 +90,7 @@ icon_state = "album" item_state = "briefcase" can_hold = list(/obj/item/photo,) - storage_slots = 20 + storage_slots = 28 /obj/item/storage/photo_album/MouseDrop(obj/over_object as obj) @@ -118,9 +122,14 @@ /obj/item/device/camera name = "camera" icon = 'icons/obj/items/items.dmi' - desc = "A polaroid camera. 10 photos left." + desc = "A polaroid camera." icon_state = "camera" - item_state = "electropack" + item_state = "camera" + item_icons = list( + WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_0.dmi', + WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_0.dmi' + ) + flags_item = TWOHANDED w_class = SIZE_SMALL flags_atom = FPRINT|CONDUCT flags_equip_slot = SLOT_WAIST @@ -128,10 +137,22 @@ black_market_value = 20 var/pictures_max = 10 var/pictures_left = 10 - var/on = 1 - var/icon_on = "camera" - var/icon_off = "camera_off" - var/size = 3 + var/size = 7 + +/obj/item/device/camera/get_examine_text(mob/user) + . = ..() + . += "It has [pictures_left] photos left." + +/obj/item/device/camera/attack_self(mob/user) //wielding capabilities + . = ..() + if(flags_item & WIELDED) + unwield(user) + else + wield(user) + +/obj/item/device/camera/dropped(mob/user) + ..() + unwield(user) /obj/item/device/camera/verb/change_size() set name = "Set Photo Focus" @@ -145,24 +166,15 @@ /obj/item/device/camera/attack(mob/living/carbon/human/M, mob/user) return -/obj/item/device/camera/attack_self(mob/user) - ..() - on = !on - if(on) - src.icon_state = icon_on - else - src.icon_state = icon_off - to_chat(user, "You switch the camera [on ? "on" : "off"].") - /obj/item/device/camera/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/device/camera_film)) - if(pictures_left) - to_chat(user, SPAN_NOTICE("[src] still has some film in it!")) + if(pictures_left > (pictures_max - 10)) + to_chat(user, SPAN_NOTICE("[src] cannot fit more film in it!")) return to_chat(user, SPAN_NOTICE("You insert [I] into [src].")) if(user.temp_drop_inv_item(I)) qdel(I) - pictures_left = pictures_max + pictures_left += 10 return ..() @@ -266,29 +278,24 @@ return mob_detail /obj/item/device/camera/afterattack(atom/target as mob|obj|turf|area, mob/user as mob, flag) - if(!on || !pictures_left || ismob(target.loc) || isstorage(target.loc)) + if(pictures_left <= 0) + to_chat(user, SPAN_WARNING("There isn't enough film in the [src] to take a photo.")) return - if(user.contains(target) || istype(target, /atom/movable/screen)) + if(ismob(target.loc) || isstorage(target.loc) || user.contains(target) || istype(target, /atom/movable/screen)) + return + if(!(flags_item & WIELDED)) + to_chat(user, SPAN_WARNING("You need to wield the [src] with both hands to take a photo!")) return - playsound(loc, pick('sound/items/polaroid1.ogg', 'sound/items/polaroid2.ogg'), 15, 1) - pictures_left-- - desc = "A polaroid camera. It has [pictures_left] photos left." to_chat(user, SPAN_NOTICE("[pictures_left] photos left.")) - captureimage(target, user, flag) - - icon_state = icon_off - on = 0 - spawn(64) - icon_state = icon_on - on = 1 + addtimer(CALLBACK(src, PROC_REF(captureimage), target, user, flag), 1 SECONDS) /obj/item/device/camera/proc/captureimage(atom/target, mob/user, flag) var/mob_descriptions = "" var/radius = (size-1)*0.5 - var/list/turf/turfs = RANGE_TURFS(radius, target) & view(world_view_size + radius, user.client) + var/list/turf/turfs = RANGE_TURFS(radius, target) & view(GLOB.world_view_size + radius, user.client) for(var/turf/the_turf as anything in turfs) mob_descriptions = get_mob_descriptions(the_turf, mob_descriptions) var/datum/picture/the_picture = createpicture(target, user, turfs, mob_descriptions, flag) @@ -339,10 +346,70 @@ name = "Old Camera" desc = "An old, slightly beat-up digital camera, with a cheap photo printer taped on. It's a nice shade of blue." icon_state = "oldcamera" - icon_on = "oldcamera" - icon_off = "oldcamera_off" pictures_left = 30 +/obj/item/device/camera/broadcasting + name = "Broadcasting Camera" + desc = "Actively document everything you see, from the mundanity of shipside to the brutal battlefields below. Has a built-in printer for action shots." + icon_state = "broadcastingcamera" + item_state = "broadcastingcamera" + unacidable = TRUE + indestructible = TRUE + pictures_left = 20 + pictures_max = 20 + w_class = SIZE_HUGE + flags_equip_slot = NO_FLAGS //cannot be equiped + var/obj/structure/machinery/camera/correspondent/linked_cam + +/obj/item/device/camera/broadcasting/Initialize(mapload, ...) + . = ..() + linked_cam = new(loc, src) + linked_cam.status = FALSE + RegisterSignal(src, COMSIG_COMPONENT_ADDED, PROC_REF(handle_rename)) + +/obj/item/device/camera/broadcasting/Destroy() + clear_broadcast() + return ..() + +/obj/item/device/camera/broadcasting/wield(mob/user) + . = ..() + if(!.) + return + flags_atom |= (USES_HEARING|USES_SEEING) + if(!linked_cam || QDELETED(linked_cam)) + linked_cam = new(loc, src) + else + linked_cam.status = TRUE + linked_cam.forceMove(loc) + SEND_SIGNAL(src, COMSIG_BROADCAST_GO_LIVE) + to_chat(user, SPAN_NOTICE("[src] begins to buzz softly as you go live.")) + +/obj/item/device/camera/broadcasting/unwield(mob/user) + . = ..() + flags_atom &= ~(USES_HEARING|USES_SEEING) + linked_cam.status = FALSE + +/obj/item/device/camera/broadcasting/proc/handle_rename(obj/item/camera, datum/component/label) + SIGNAL_HANDLER + if(!istype(label, /datum/component/label)) + return + linked_cam.c_tag = get_broadcast_name() + +/obj/item/device/camera/broadcasting/proc/clear_broadcast() + if(!QDELETED(linked_cam)) + QDEL_NULL(linked_cam) + +/obj/item/device/camera/broadcasting/proc/get_broadcast_name() + var/datum/component/label/src_label_component = GetComponent(/datum/component/label) + if(src_label_component) + return src_label_component.label_name + return "Broadcast [serial_number]" + +/obj/item/device/camera/broadcasting/hear_talk(mob/living/sourcemob, message, verb = "says", datum/language/language, italics = FALSE) + SEND_SIGNAL(src, COMSIG_BROADCAST_HEAR_TALK, sourcemob, message, verb, language, italics, get_dist(sourcemob, src) < 3) + +/obj/item/device/camera/broadcasting/see_emote(mob/living/sourcemob, emote, audible = FALSE) + SEND_SIGNAL(src, COMSIG_BROADCAST_SEE_EMOTE, sourcemob, emote, audible, get_dist(sourcemob, src) < 3 && audible) /obj/item/photo/proc/construct(datum/picture/P) icon = P.fields["icon"] diff --git a/code/modules/paperwork/silicon_photography.dm b/code/modules/paperwork/silicon_photography.dm deleted file mode 100644 index 0a82fde5c8..0000000000 --- a/code/modules/paperwork/silicon_photography.dm +++ /dev/null @@ -1,170 +0,0 @@ -/* -* AI-specific * -**************/ -/datum/picture - var/name = "image" - var/list/fields = list() - -/obj/item/device/camera/siliconcam - var/in_camera_mode = 0 - var/photos_taken = 0 - var/list/aipictures = list() - -/obj/item/device/camera/siliconcam/ai_camera //camera AI can take pictures with - name = "AI photo camera" - -/obj/item/device/camera/siliconcam/robot_camera //camera cyborgs can take pictures with - name = "Cyborg photo camera" - -/obj/item/device/camera/siliconcam/drone_camera //currently doesn't offer the verbs, thus cannot be used - name = "Drone photo camera" - -/obj/item/device/camera/siliconcam/proc/injectaialbum(datum/picture/P, sufix = "") //stores image information to a list similar to that of the datacore - photos_taken++ - P.fields["name"] = "Image [photos_taken][sufix]" - aipictures += P - -/obj/item/device/camera/siliconcam/proc/injectmasteralbum(datum/picture/P) //stores image information to a list similar to that of the datacore - var/mob/living/silicon/robot/C = src.loc - if(C.connected_ai) - var/mob/A = P.fields["author"] - C.connected_ai.aiCamera.injectaialbum(P, " (taken by [A.name])") - to_chat(C.connected_ai, SPAN_UNCONSCIOUS("Image recorded and saved by [name]")) - to_chat(usr, SPAN_UNCONSCIOUS("Image recorded and saved to remote database")) //feedback to the Cyborg player that the picture was taken - else - injectaialbum(P) - to_chat(usr, SPAN_UNCONSCIOUS("Image recorded")) - -/obj/item/device/camera/siliconcam/proc/selectpicture(obj/item/device/camera/siliconcam/cam) - if(!cam) - cam = getsource() - - var/list/nametemp = list() - var/find - if(cam.aipictures.len == 0) - to_chat(usr, SPAN_DANGER("No images saved")) - return - for(var/datum/picture/t in cam.aipictures) - nametemp += t.fields["name"] - find = tgui_input_list(usr, "Select image (numbered in order taken)", "Camera", nametemp) - - for(var/datum/picture/q in cam.aipictures) - if(q.fields["name"] == find) - return q - -/obj/item/device/camera/siliconcam/proc/viewpictures() - var/datum/picture/selection = selectpicture() - - if(!selection) - return - - var/obj/item/photo/P = new/obj/item/photo() - P.construct(selection) - P.show(usr) - to_chat(usr, P.desc) - - // TG uses a special garbage collector... qdel(P) - qdel(P) //so 10 thousand pictures items are not left in memory should an AI take them and then view them all. - -/obj/item/device/camera/siliconcam/proc/deletepicture() - var/datum/picture/selection = selectpicture() - - if(!selection) - return - - aipictures -= selection - to_chat(usr, SPAN_UNCONSCIOUS("Image deleted")) - -/obj/item/device/camera/siliconcam/proc/toggle_camera_mode() - if(in_camera_mode) - camera_mode_off() - else - camera_mode_on() - -/obj/item/device/camera/siliconcam/proc/camera_mode_off() - src.in_camera_mode = 0 - to_chat(usr, "Camera Mode deactivated") - -/obj/item/device/camera/siliconcam/proc/camera_mode_on() - src.in_camera_mode = 1 - to_chat(usr, "Camera Mode activated") - -/obj/item/device/camera/siliconcam/ai_camera/printpicture(mob/user, datum/picture/P) - injectaialbum(P) - to_chat(usr, SPAN_UNCONSCIOUS("Image recorded")) - -/obj/item/device/camera/siliconcam/robot_camera/printpicture(mob/user, datum/picture/P) - injectmasteralbum(P) - -/obj/item/device/camera/siliconcam/ai_camera/verb/take_image() - set category = "AI Commands" - set name = "Images - Snap" - set desc = "Takes an image" - set src in usr - - toggle_camera_mode() - -/obj/item/device/camera/siliconcam/ai_camera/verb/view_images() - set category = "AI Commands" - set name = "Images - View" - set desc = "View images" - set src in usr - - viewpictures() - -/obj/item/device/camera/siliconcam/ai_camera/verb/delete_images() - set category = "AI Commands" - set name = "Images - Delete" - set desc = "Delete image" - set src in usr - - deletepicture() - -/obj/item/device/camera/siliconcam/robot_camera/verb/take_image() - set category ="Robot Commands" - set name = "Images - Snap" - set desc = "Takes an image" - set src in usr - - toggle_camera_mode() - -/obj/item/device/camera/siliconcam/robot_camera/verb/view_images() - set category ="Robot Commands" - set name = "Images - View" - set desc = "View images" - set src in usr - - viewpictures() - -/obj/item/device/camera/siliconcam/robot_camera/verb/delete_images() - set category = "Robot Commands" - set name = "Images - Delete" - set desc = "Delete a local image" - set src in usr - - // Explicitly only allow deletion from the local camera - var/mob/living/silicon/robot/C = src.loc - if(C.connected_ai) - to_chat(C, "Not allowed to delete from the remote database.") - return - - deletepicture() - -/obj/item/device/camera/siliconcam/proc/getsource() - if(ismob(src.loc)) - var/mob/M = src.loc - if(isRemoteControlling(M)) - return src - - var/mob/living/silicon/robot/C = src.loc - var/obj/item/device/camera/siliconcam/Cinfo - if(C.connected_ai) - Cinfo = C.connected_ai.aiCamera - else - Cinfo = src - return Cinfo - -/mob/living/silicon/proc/GetPicture() - if(!aiCamera) - return - return aiCamera.selectpicture() diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index e0d0998c82..8ff67fa4b9 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -56,22 +56,10 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( //NOTE: STUFF STOLEN FROM AIRLOCK.DM thx -/obj/structure/machinery/power/apc/weak - cell_type = /obj/item/cell - -/obj/structure/machinery/power/apc/high - cell_type = /obj/item/cell/high - -/obj/structure/machinery/power/apc/super - cell_type = /obj/item/cell/super - -/obj/structure/machinery/power/apc/hyper - cell_type = /obj/item/cell/hyper - /obj/structure/machinery/power/apc name = "area power controller" desc = "A control terminal for the area electrical systems." - icon = 'icons/obj/structures/machinery/power.dmi' + icon = 'icons/obj/structures/machinery/apc.dmi' icon_state = "apc_mapicon" anchored = TRUE use_power = USE_POWER_NONE @@ -98,7 +86,6 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( var/locked = 1 var/coverlocked = 1 var/aidisabled = 0 - var/tdir = null var/obj/structure/machinery/power/terminal/terminal = null var/lastused_light = 0 var/lastused_equip = 0 @@ -131,19 +118,31 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( var/printout = FALSE power_machine = TRUE + light_range = 1 + light_power = 0.5 appearance_flags = TILE_BOUND /obj/structure/machinery/power/apc/Initialize(mapload, ndir, building=0) . = ..() - //Offset 24 pixels in direction of dir + //Offset apc depending on the dir //This allows the APC to be embedded in a wall, yet still inside an area if(building) setDir(ndir) - set_pixel_location() + switch(dir) + if(NORTH) + pixel_y = 32 + if(SOUTH) + pixel_y = -26 + if(EAST) + pixel_x = 30 + pixel_y = 6 + if(WEST) + pixel_x = -30 + pixel_y = 6 if(building == 0) init() @@ -161,13 +160,6 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( if(!start_charge && is_ground_level(z) && prob(10)) set_broken() -/obj/structure/machinery/power/apc/set_pixel_location() - tdir = dir //To fix Vars bug - setDir(SOUTH) - - pixel_x = (tdir & 3) ? 0 : (tdir == 4 ? 24 : -24) - pixel_y = (tdir & 3) ? (tdir == 1 ? 24 : -24) : 0 - /obj/structure/machinery/power/apc/Destroy() if(terminal) terminal.master = null @@ -190,8 +182,9 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( ui.open() /obj/structure/machinery/power/apc/ui_status(mob/user) - if(!opened && can_use(user, 1)) - . = UI_INTERACTIVE + . = ..() + if(opened || !can_use(user, TRUE)) + return UI_DISABLED /obj/structure/machinery/power/apc/ui_state(mob/user) return GLOB.not_incapacitated_and_adjacent_state @@ -343,7 +336,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( //Create a terminal object at the same position as original turf loc //Wires will attach to this terminal = new/obj/structure/machinery/power/terminal(src.loc) - terminal.setDir(tdir) + terminal.setDir(dir) terminal.master = src /obj/structure/machinery/power/apc/proc/init() @@ -372,7 +365,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( . = list(desc) if(stat & BROKEN) - . += SPAN_INFO("It appears to be completely broken. It's hard to see what else is wrong with it.") + . += SPAN_INFO("It appears to be completely broken. Bash it open with any tool.") return if(opened) if(has_electronics && terminal) @@ -435,6 +428,8 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( //2 if we need to update the overlays if(!update) return + + set_light(0) if(update & 1) //Updating the icon state if(update_state & UPSTATE_ALLGOOD) @@ -456,22 +451,42 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( icon_state = "apcewires" if(!(update_state & UPSTATE_ALLGOOD)) - if(overlays.len) + if(length(overlays)) overlays = 0 return if(update & 2) - if(overlays.len) + if(length(overlays)) overlays = 0 if(!(stat & (BROKEN|MAINT)) && update_state & UPSTATE_ALLGOOD) - overlays += status_overlays_lock[locked + 1] - overlays += status_overlays_charging[charging + 1] + var/image/_lock = status_overlays_lock[locked + 1] + var/image/_charging = status_overlays_charging[charging + 1] + var/image/_equipment = status_overlays_equipment[equipment + 1] + var/image/_lighting = status_overlays_lighting[lighting + 1] + var/image/_environ = status_overlays_environ[environ + 1] + + overlays += emissive_appearance(_lock.icon, _lock.icon_state) + overlays += mutable_appearance(_lock.icon, _lock.icon_state) + overlays += emissive_appearance(_charging.icon, _charging.icon_state) + overlays += mutable_appearance(_charging.icon, _charging.icon_state) if(operating) - overlays += status_overlays_equipment[equipment + 1] - overlays += status_overlays_lighting[lighting + 1] - overlays += status_overlays_environ[environ + 1] + overlays += emissive_appearance(_equipment.icon, _equipment.icon_state) + overlays += mutable_appearance(_equipment.icon, _equipment.icon_state) + overlays += emissive_appearance(_lighting.icon, _lighting.icon_state) + overlays += mutable_appearance(_lighting.icon, _lighting.icon_state) + overlays += emissive_appearance(_environ.icon, _environ.icon_state) + overlays += mutable_appearance(_environ.icon, _environ.icon_state) + + switch(charging) + if(APC_NOT_CHARGING) + set_light_color(LIGHT_COLOR_RED) + if(APC_CHARGING) + set_light_color(LIGHT_COLOR_BLUE) + if(APC_FULLY_CHARGED) + set_light_color(LIGHT_COLOR_GREEN) + set_light(initial(light_range)) /obj/structure/machinery/power/apc/proc/check_updates() @@ -558,7 +573,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( if(HAS_TRAIT(W, TRAIT_TOOL_CROWBAR) && opened) if(has_electronics == 1) if(user.action_busy) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to deconstruct [src].")) return if(terminal) @@ -590,7 +605,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( opened = APC_COVER_OPEN update_icon() else if(istype(W, /obj/item/cell) && opened) //Trying to put a cell inside - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to fit [W] into [src].")) return if(cell) @@ -608,7 +623,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( update_icon() else if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER)) //Haxing if(opened) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("\The [src]'s wiring confuses you.")) return if(cell) @@ -642,7 +657,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( tgui_interact(user) //then close them and open up the new ones (wires/panel) else if(istype(W, /obj/item/card/id)) //Trying to unlock the interface with an ID card - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You're not sure where to swipe \the [W] on [src].")) return if(opened) @@ -660,7 +675,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( else to_chat(user, SPAN_WARNING("Access denied.")) else if(iswire(W) && !terminal && opened && has_electronics != 2) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [src].")) return if(loc:intact_tile) @@ -687,7 +702,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( make_terminal() terminal.connect_to_network() else if(HAS_TRAIT(W, TRAIT_TOOL_WIRECUTTERS) && terminal && opened && has_electronics != 2) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [W].")) return if(loc:intact_tile) @@ -711,7 +726,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( qdel(terminal) terminal = null else if(istype(W, /obj/item/circuitboard/apc) && opened && has_electronics == 0 && !(stat & BROKEN)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [W].")) return user.visible_message(SPAN_NOTICE("[user] starts inserting the power control board into [src]."), @@ -723,7 +738,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( SPAN_NOTICE("You insert the power control board into [src].")) qdel(W) else if(istype(W, /obj/item/circuitboard/apc) && opened && has_electronics == 0 && (stat & BROKEN)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [W].")) return to_chat(user, SPAN_WARNING("You cannot put the board inside, the frame is damaged.")) @@ -732,7 +747,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( if(!HAS_TRAIT(W, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [W].")) return var/obj/item/tool/weldingtool/WT = W @@ -749,7 +764,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( deconstruct() return else if(istype(W, /obj/item/frame/apc) && opened && (stat & BROKEN)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea what to do with [W].")) return if(has_electronics) @@ -907,7 +922,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( if(usr == user && opened && (!isRemoteControlling(user))) if(cell) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to remove the power cell from [src].")) return user.put_in_hands(cell) @@ -1012,7 +1027,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( return 0 if(!(ishuman(user) || isRemoteControlling(user))) to_chat(user, SPAN_WARNING("You don't have the dexterity to use [src]!")) - nanomanager.close_user_uis(user, src) + SSnano.nanomanager.close_user_uis(user, src) return 0 if(user.is_mob_restrained()) to_chat(user, SPAN_WARNING("You must have free hands to use [src].")) @@ -1025,11 +1040,11 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( if(aidisabled) if(!loud) to_chat(user, SPAN_WARNING("[src] has AI control disabled!")) - nanomanager.close_user_uis(user, src) + SSnano.nanomanager.close_user_uis(user, src) return 0 else if((!in_range(src, user) || !istype(src.loc, /turf))) - nanomanager.close_user_uis(user, src) + SSnano.nanomanager.close_user_uis(user, src) return 0 var/mob/living/carbon/human/H = user @@ -1042,7 +1057,7 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( else if(prob(H.getBrainLoss())) to_chat(user, SPAN_WARNING("You momentarily forget how to use [src].")) return 0 - if(!skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(H, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(H, SPAN_WARNING("You don't know how to use \the [src]'s interface.")) return return 1 @@ -1366,9 +1381,122 @@ GLOBAL_LIST_INIT(apc_wire_descriptions, list( /obj/structure/machinery/power/apc/almayer cell_type = /obj/item/cell/high +/obj/structure/machinery/power/apc/almayer/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/almayer/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/almayer/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/almayer/west + pixel_x = -30 + dir = 8 + /obj/structure/machinery/power/apc/almayer/hardened name = "hardened area power controller" desc = "A control terminal for the area electrical systems. This one is hardened against sudden power fluctuations caused by electrical grid damage." crash_break_probability = 0 +/obj/structure/machinery/power/apc/almayer/hardened/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/almayer/hardened/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/almayer/hardened/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/almayer/hardened/west + pixel_x = -30 + dir = 8 + +//------ Directional APCs ------// + +/obj/structure/machinery/power/apc/no_power + start_charge = 0 + +/obj/structure/machinery/power/apc/no_power/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/no_power/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/no_power/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/no_power/west + pixel_x = -30 + dir = 8 + +// Powered APCs with directions +/obj/structure/machinery/power/apc/power/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/power/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/power/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/power/west + pixel_x = -30 + dir = 8 + +// Upgraded APC's with directions +/obj/structure/machinery/power/apc/upgraded/power + desc = "A control terminal for the area electrical systems. This one is upgraded with better power cell to sustain higher power usage." + cell_type = /obj/item/cell/high + + +/obj/structure/machinery/power/apc/upgraded/power/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/upgraded/power/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/upgraded/power/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/upgraded/power/west + pixel_x = -30 + dir = 8 + +// apc that start at zero charge. + +/obj/structure/machinery/power/apc/upgraded/no_power + start_charge = 0 + +/obj/structure/machinery/power/apc/upgraded/no_power/north + pixel_y = 32 + dir = 1 + +/obj/structure/machinery/power/apc/upgraded/no_power/south + pixel_y = -26 + dir = 2 + +/obj/structure/machinery/power/apc/upgraded/no_power/east + pixel_x = 30 + dir = 4 + +/obj/structure/machinery/power/apc/upgraded/no_power/west + pixel_x = -30 + dir = 8 + #undef APC_UPDATE_ICON_COOLDOWN diff --git a/code/modules/power/batteryrack.dm b/code/modules/power/batteryrack.dm index 6956079a6c..5630f13a04 100644 --- a/code/modules/power/batteryrack.dm +++ b/code/modules/power/batteryrack.dm @@ -94,7 +94,7 @@ /obj/structure/machinery/power/smes/batteryrack/chargedisplay() - return round(4 * charge/(capacity ? capacity : 5e6)) + return floor(4 * charge/(capacity ? capacity : 5e6)) /obj/structure/machinery/power/smes/batteryrack/attackby(obj/item/W as obj, mob/user as mob) //these can only be moved by being reconstructed, solves having to remake the powernet. @@ -246,7 +246,7 @@ if(charge < 0.0001) outputting = 0 // stop output if charge falls to zero - overcharge_percent = round((charge / capacity) * 100) + overcharge_percent = floor((charge / capacity) * 100) if (overcharge_percent > 115) //115% is the minimum overcharge for anything to happen overcharge_consequences() diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 31a096a3a2..6d67f207cf 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -63,9 +63,9 @@ /obj/item/cell/get_examine_text(mob/user) . = ..() if(maxcharge <= 2500) - . += SPAN_NOTICE("The manufacturer's label states this cell has a power rating of [maxcharge], and that you should not swallow it.\nThe charge meter reads [round(src.percent() )]%.") + . += SPAN_NOTICE("The manufacturer's label states this cell has a power rating of [maxcharge], and that you should not swallow it.\nThe charge meter reads [floor(src.percent() )]%.") else - . += SPAN_NOTICE("This power cell has an exciting chrome finish, as it is an uber-capacity cell type! It has a power rating of [maxcharge]!\nThe charge meter reads [round(src.percent() )]%.") + . += SPAN_NOTICE("This power cell has an exciting chrome finish, as it is an uber-capacity cell type! It has a power rating of [maxcharge]!\nThe charge meter reads [floor(src.percent() )]%.") if(crit_fail) . += SPAN_DANGER("This power cell seems to be faulty.") diff --git a/code/modules/power/gravitygenerator.dm b/code/modules/power/gravitygenerator.dm deleted file mode 100644 index c3d4698fbc..0000000000 --- a/code/modules/power/gravitygenerator.dm +++ /dev/null @@ -1,23 +0,0 @@ -// It... uses a lot of power. Everything under power is engineering stuff, at least. - -/obj/structure/machinery/computer/gravity_control_computer - name = "Gravity Generator Control" - desc = "A computer to control a local gravity generator. Qualified personnel only." - icon = 'icons/obj/structures/machinery/computer.dmi' - icon_state = "gravitycomp" - anchored = TRUE - density = TRUE - var/obj/structure/machinery/gravity_generator = null - - -/obj/structure/machinery/gravity_generator - name = "Gravitational Generator" - desc = "A device which produces a gravaton field when set up." - icon = 'icons/obj/structures/props/singularity.dmi' - icon_state = "TheSingGen" - anchored = TRUE - density = TRUE - use_power = USE_POWER_IDLE - idle_power_usage = 200 - active_power_usage = 1000 - var/on = 1 diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 8f138d2c90..c95fa6af50 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -390,7 +390,7 @@ else if(status != LIGHT_BROKEN && status != LIGHT_EMPTY) - if(prob(1+W.force * 5)) + if(prob(1+W.force * W.demolition_mod * 5)) to_chat(user, "You hit the light, and it smashes!") for(var/mob/M as anything in viewers(src)) @@ -530,7 +530,7 @@ L.update() - if(user.put_in_active_hand(L)) //succesfully puts it in our active hand + if(user.put_in_active_hand(L)) //successfully puts it in our active hand L.add_fingerprint(user) else L.forceMove(loc) //if not, put it on the ground diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index 6a20e9cfe7..bb158ae30b 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -33,7 +33,7 @@ tank [un]loading stuff turn on/off /obj/structure/machinery/power/port_gen/get_examine_text(mob/user) -display round(lastgen) and phorontank amount +display floor(lastgen) and phorontank amount */ @@ -168,8 +168,8 @@ display round(lastgen) and phorontank amount temp_rating += SP.rating for(var/obj/item/CP in component_parts) temp_reliability += CP.reliability - reliability = min(round(temp_reliability / 4), 100) - power_gen = round(initial(power_gen) * (max(2, temp_rating) / 2)) + reliability = min(floor(temp_reliability / 4), 100) + power_gen = floor(initial(power_gen) * (max(2, temp_rating) / 2)) /obj/structure/machinery/power/port_gen/pacman/get_examine_text(mob/user) . = ..() @@ -196,8 +196,8 @@ display round(lastgen) and phorontank amount var/temp = min(needed_sheets, sheet_left) needed_sheets -= temp sheet_left -= temp - sheets -= round(needed_sheets) - needed_sheets -= round(needed_sheets) + sheets -= floor(needed_sheets) + needed_sheets -= floor(needed_sheets) if (sheet_left <= 0 && sheets > 0) sheet_left = 1 - needed_sheets sheets-- diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm index bee3e0aac8..9aefa21d0f 100644 --- a/code/modules/power/power.dm +++ b/code/modules/power/power.dm @@ -81,13 +81,13 @@ if(has_power || !src.needs_power) if(machine_processing) if(stat & NOPOWER) - addToListNoDupe(processing_machines, src) // power interupted us, start processing again + addToListNoDupe(GLOB.processing_machines, src) // power interrupted us, start processing again stat &= ~NOPOWER src.update_use_power(USE_POWER_IDLE) else if(machine_processing) - processing_machines -= src // no power, can't process. + GLOB.processing_machines -= src // no power, can't process. stat |= NOPOWER src.update_use_power(USE_POWER_NONE) @@ -97,19 +97,19 @@ // rebuild all power networks from scratch /proc/makepowernets() - for(var/datum/powernet/PN in powernets) + for(var/datum/powernet/PN in GLOB.powernets) del(PN) //not qdel on purpose, powernet is still using del. - powernets.Cut() + GLOB.powernets.Cut() - for(var/area/A in all_areas) - if(powernets_by_name[A.powernet_name]) + for(var/area/A in GLOB.all_areas) + if(GLOB.powernets_by_name[A.powernet_name]) continue var/datum/powernet/PN = new() PN.powernet_name = A.powernet_name - powernets += PN - powernets_by_name[A.powernet_name] = PN + GLOB.powernets += PN + GLOB.powernets_by_name[A.powernet_name] = PN - for(var/obj/structure/machinery/power/M in machines) + for(var/obj/structure/machinery/power/M in GLOB.machines) M.connect_to_network() return 1 @@ -222,7 +222,7 @@ var/cdir - for(var/card in cardinal) + for(var/card in GLOB.cardinals) var/turf/T = get_step(loc,card) cdir = get_dir(T,loc) @@ -250,7 +250,7 @@ var/area/A = get_area(src) if(!A) return 0 - var/datum/powernet/PN = powernets_by_name[A.powernet_name] + var/datum/powernet/PN = GLOB.powernets_by_name[A.powernet_name] if(!PN) return 0 powernet = PN diff --git a/code/modules/power/power_monitor.dm b/code/modules/power/power_monitor.dm index d39e3cbb8c..74633cf368 100644 --- a/code/modules/power/power_monitor.dm +++ b/code/modules/power/power_monitor.dm @@ -57,7 +57,7 @@ t += "" - if(L.len > 0) + if(length(L) > 0) var/total_demand = 0 t += "Area Eqp./Lgt./Env. Load Cell
        " @@ -67,7 +67,7 @@ for(var/obj/structure/machinery/power/apc/A in L) t += copytext(add_tspace("\The [A.area]", 30), 1, 30) - t += " [S[A.equipment+1]] [S[A.lighting+1]] [S[A.environ+1]] [add_lspace(A.lastused_total, 6)] [A.cell ? "[add_lspace(round(A.cell.percent()), 3)]% [chg[A.charging+1]]" : " N/C"]
        " + t += " [S[A.equipment+1]] [S[A.lighting+1]] [S[A.environ+1]] [add_lspace(A.lastused_total, 6)] [A.cell ? "[add_lspace(floor(A.cell.percent()), 3)]% [chg[A.charging+1]]" : " N/C"]
        " total_demand += A.lastused_total t += "
        Total demand: [total_demand] W
        " diff --git a/code/modules/power/powernet.dm b/code/modules/power/powernet.dm index b48acda29d..5d09a06fc6 100644 --- a/code/modules/power/powernet.dm +++ b/code/modules/power/powernet.dm @@ -22,11 +22,11 @@ viewload = 0.8*viewload + 0.2*load - viewload = round(viewload) + viewload = floor(viewload) var/numapc = 0 - if(nodes && nodes.len) // Added to fix a bad list bug -- TLE + if(LAZYLEN(nodes)) // Added to fix a bad list bug -- TLE for(var/obj/structure/machinery/power/terminal/term in nodes) if( istype( term.master, /obj/structure/machinery/power/apc ) ) numapc++ @@ -45,7 +45,7 @@ perapc = avail/numapc + perapc_excess if( netexcess > 100) // if there was excess power last cycle - if(nodes && nodes.len) + if(LAZYLEN(nodes)) for(var/obj/structure/machinery/power/smes/S in nodes) // find the SMESes in the network if(S.powernet == src) S.restore() // and restore some of the power that was used diff --git a/code/modules/power/profiling.dm b/code/modules/power/profiling.dm index 21c8e2a635..b4b67b8c85 100644 --- a/code/modules/power/profiling.dm +++ b/code/modules/power/profiling.dm @@ -1,29 +1,27 @@ -datum +GLOBAL_VAR_INIT(enable_power_update_profiling, FALSE) -var/global/enable_power_update_profiling = 0 - -var/global/power_profiled_time = 0 -var/global/power_last_profile_time = 0 -var/global/list/power_update_requests_by_machine = list() -var/global/list/power_update_requests_by_area = list() +GLOBAL_VAR_INIT(power_profiled_time, 0) +GLOBAL_VAR_INIT(power_last_profile_time, 0) +GLOBAL_LIST_EMPTY(power_update_requests_by_machine) +GLOBAL_LIST_EMPTY(power_update_requests_by_area) /proc/log_power_update_request(area/A, obj/structure/machinery/M) - if (!enable_power_update_profiling) + if (!GLOB.enable_power_update_profiling) return var/machine_type = "[M.type]" - if (machine_type in power_update_requests_by_machine) - power_update_requests_by_machine[machine_type]++ + if (machine_type in GLOB.power_update_requests_by_machine) + GLOB.power_update_requests_by_machine[machine_type]++ else - power_update_requests_by_machine[machine_type] = 1 + GLOB.power_update_requests_by_machine[machine_type] = 1 - if (A.name in power_update_requests_by_area) - power_update_requests_by_area[A.name]++ + if (A.name in GLOB.power_update_requests_by_area) + GLOB.power_update_requests_by_area[A.name]++ else - power_update_requests_by_area[A.name] = 1 + GLOB.power_update_requests_by_area[A.name] = 1 - power_profiled_time += (world.time - power_last_profile_time) - power_last_profile_time = world.time + GLOB.power_profiled_time += (world.time - GLOB.power_last_profile_time) + GLOB.power_last_profile_time = world.time /client/proc/toggle_power_update_profiling() set name = "Toggle Area Power Update Profiling" @@ -31,14 +29,14 @@ var/global/list/power_update_requests_by_area = list() set category = "Debug.Profiling" if(!check_rights(R_DEBUG)) return if(!ishost(usr) || alert("Are you sure you want to do this?",, "Yes", "No") != "Yes") return - if(enable_power_update_profiling) - enable_power_update_profiling = 0 + if(GLOB.enable_power_update_profiling) + GLOB.enable_power_update_profiling = 0 to_chat(usr, "Area power update profiling disabled.") message_admins("[key_name(src)] toggled area power update profiling off.") else - enable_power_update_profiling = 1 - power_last_profile_time = world.time + GLOB.enable_power_update_profiling = 1 + GLOB.power_last_profile_time = world.time to_chat(usr, "Area power update profiling enabled.") message_admins("[key_name(src)] toggled area power update profiling on.") @@ -52,9 +50,9 @@ var/global/list/power_update_requests_by_area = list() if(!check_rights(R_DEBUG)) return - to_chat(usr, "Total profiling time: [power_profiled_time] ticks") - for (var/M in power_update_requests_by_machine) - to_chat(usr, "[M] = [power_update_requests_by_machine[M]]") + to_chat(usr, "Total profiling time: [GLOB.power_profiled_time] ticks") + for (var/M in GLOB.power_update_requests_by_machine) + to_chat(usr, "[M] = [GLOB.power_update_requests_by_machine[M]]") /client/proc/view_power_update_stats_area() set name = "View Area Power Update Statistics By Area" @@ -63,7 +61,7 @@ var/global/list/power_update_requests_by_area = list() if(!check_rights(R_DEBUG)) return - to_chat(usr, "Total profiling time: [power_profiled_time] ticks") - to_chat(usr, "Total profiling time: [power_profiled_time] ticks") - for (var/A in power_update_requests_by_area) - to_chat(usr, "[A] = [power_update_requests_by_area[A]]") + to_chat(usr, "Total profiling time: [GLOB.power_profiled_time] ticks") + to_chat(usr, "Total profiling time: [GLOB.power_profiled_time] ticks") + for (var/A in GLOB.power_update_requests_by_area) + to_chat(usr, "[A] = [GLOB.power_update_requests_by_area[A]]") diff --git a/code/modules/power/smes.dm b/code/modules/power/smes.dm index 0e469a7fe5..d05b34e62b 100644 --- a/code/modules/power/smes.dm +++ b/code/modules/power/smes.dm @@ -42,11 +42,9 @@ /obj/structure/machinery/power/smes/Initialize() . = ..() - if(!powernet) - connect_to_network() dir_loop: - for(var/d in cardinal) + for(var/d in GLOB.cardinals) var/turf/T = get_step(src, d) for(var/obj/structure/machinery/power/terminal/term in T) if(term && term.dir == turn(d, 180)) @@ -56,14 +54,25 @@ stat |= BROKEN return terminal.master = src - if(!terminal.powernet) - terminal.connect_to_network() updateicon() start_processing() if(!should_be_mapped) warning("Non-buildable or Non-magical SMES at [src.x]X [src.y]Y [src.z]Z") + return INITIALIZE_HINT_ROUNDSTART + +/obj/structure/machinery/power/smes/LateInitialize() + . = ..() + + if(QDELETED(src)) + return + + if(!powernet && !connect_to_network()) + CRASH("[src] has failed to connect to a power network. Check that it has been mapped correctly.") + if(terminal && !terminal.powernet) + terminal.connect_to_network() + /obj/structure/machinery/power/smes/proc/updateicon() overlays.Cut() if(stat & BROKEN) return @@ -85,7 +94,7 @@ /obj/structure/machinery/power/smes/proc/chargedisplay() - return round(5.5*charge/(capacity ? capacity : 5e6)) + return floor(5.5*charge/(capacity ? capacity : 5e6)) #define SMESRATE 0.05 // rate of internal charge to external power @@ -272,14 +281,13 @@ // TGUI STUFF \\ /obj/structure/machinery/power/smes/ui_status(mob/user) - if(!(stat & BROKEN) && !open_hatch) - . = UI_INTERACTIVE - -/obj/structure/machinery/power/smes/ui_state(mob/user) + . = ..() if(stat & BROKEN) return UI_CLOSE if(open_hatch) return UI_DISABLED + +/obj/structure/machinery/power/smes/ui_state(mob/user) return GLOB.not_incapacitated_and_adjacent_state /obj/structure/machinery/power/smes/tgui_interact(mob/user, datum/tgui/ui) diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 98208069c8..e3324efbbc 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -10,7 +10,7 @@ var/max_coils = 6 //30M capacity, 1.5MW input/output when fully upgraded /w default coils var/cur_coils = 1 // Current amount of installed coils var/safeties_enabled = 1 // If 0 modifications can be done without discharging the SMES, at risk of critical failure. - var/failing = 0 // If 1 critical failure has occured and SMES explosion is imminent. + var/failing = 0 // If 1 critical failure has occurred and SMES explosion is imminent. should_be_mapped = 1 unslashable = TRUE unacidable = TRUE @@ -39,7 +39,7 @@ capacity += C.ChargeCapacity input_level_max += C.IOCapacity output_level_max += C.IOCapacity - charge = between(0, charge, capacity) + charge = clamp(charge, 0, capacity) return 1 else return 0 @@ -85,7 +85,7 @@ if (user_protected && prob(80)) to_chat(h_user, "Small electrical arc almost burns your hand. Luckily you had your gloves on!") else - to_chat(h_user, "Small electrical arc sparks and burns your hand as you touch the [src]!") + to_chat(h_user, "Small electrical arc sparks and burns your hand as you touch [src]!") h_user.apply_damage(rand(5,10), BURN) h_user.apply_effect(2, PARALYZE) charge = 0 @@ -98,7 +98,7 @@ if (user_protected && prob(25)) to_chat(h_user, "Medium electrical arc sparks and almost burns your hand. Luckily you had your gloves on!") else - to_chat(h_user, "Medium electrical sparks as you touch the [src], severely burning your hand!") + to_chat(h_user, "Medium electrical sparks as you touch [src], severely burning your hand!") h_user.apply_damage(rand(10,25), BURN) h_user.apply_effect(5, PARALYZE) spawn(0) @@ -182,7 +182,7 @@ /obj/structure/machinery/power/smes/buildable/attackby(obj/item/W as obj, mob/user as mob) // No more disassembling of overloaded SMESs. You broke it, now enjoy the consequences. if (failing) - to_chat(user, SPAN_WARNING("The [src]'s screen is flashing with alerts. It seems to be overloaded! Touching it now is probably not a good idea.")) + to_chat(user, SPAN_WARNING("[src]'s screen is flashing with alerts. It seems to be overloaded! Touching it now is probably not a good idea.")) return // If parent returned 1: // - Hatch is open, so we can modify the SMES @@ -195,11 +195,11 @@ return if (outputting || input_attempt) - to_chat(user, SPAN_WARNING("Turn off the [src] first!")) + to_chat(user, SPAN_WARNING("Turn off [src] first!")) return // Probability of failure if safety circuit is disabled (in %) - var/failure_probability = round((charge / capacity) * 100) + var/failure_probability = floor((charge / capacity) * 100) // If failure probability is below 5% it's usually safe to do modifications if (failure_probability < 5) @@ -212,7 +212,7 @@ return playsound(get_turf(src), 'sound/items/Crowbar.ogg', 25, 1) - to_chat(user, SPAN_WARNING("You begin to disassemble the [src]!")) + to_chat(user, SPAN_WARNING("You begin to disassemble [src]!")) if (do_after(usr, 100 * cur_coils * user.get_skill_duration_multiplier(SKILL_ENGINEER), INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_BUILD)) // More coils = takes longer to disassemble. It's complex so largest one with 5 coils will take 50s if (failure_probability && prob(failure_probability)) diff --git a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm index 91c11b242a..39454d5717 100644 --- a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm @@ -78,7 +78,7 @@ var/overlay_ammo_type = "_reg" //used for ammo type color overlay var/overlay_gun_type = "_m41" //used for text overlay var/overlay_content = "_reg" - var/magazine_type = /obj/item/ammo_magazine/rifle + var/obj/item/ammo_magazine/magazine_type = /obj/item/ammo_magazine/rifle var/list/allowed_magazines = list() var/num_of_magazines = 10 var/handfuls = FALSE @@ -127,10 +127,10 @@ if(src.loc != user) //feeling box weight in a distance is unnatural and bad return if(!handfuls) - if(contents.len < (num_of_magazines/3)) + if(length(contents) < (num_of_magazines/3)) . += SPAN_INFO("It feels almost empty.") return - if(contents.len < ((num_of_magazines*2)/3)) + if(length(contents) < ((num_of_magazines*2)/3)) . += SPAN_INFO("It feels about half full.") return . += SPAN_INFO("It feels almost full.") @@ -207,11 +207,11 @@ if(handfuls) var/obj/item/ammo_magazine/AM = locate(/obj/item/ammo_magazine) in contents if(AM) - severity = round(AM.current_rounds / 40) + severity = floor(AM.current_rounds / 40) else for(var/obj/item/ammo_magazine/AM in contents) severity += AM.current_rounds - severity = round(severity / 150) + severity = floor(severity / 150) return severity /obj/item/ammo_box/magazine/process_burning(datum/cause_data/flame_cause_data) @@ -402,7 +402,7 @@ return /obj/item/ammo_box/rounds/get_severity() - return round(bullet_amount / 200) //we need a lot of bullets to produce an explosion. + return floor(bullet_amount / 200) //we need a lot of bullets to produce an explosion. /obj/item/ammo_box/rounds/process_burning(datum/cause_data/flame_cause_data) if(can_explode) diff --git a/code/modules/projectiles/ammo_boxes/box_structures.dm b/code/modules/projectiles/ammo_boxes/box_structures.dm index a7cbb43f68..382a7d4a8b 100644 --- a/code/modules/projectiles/ammo_boxes/box_structures.dm +++ b/code/modules/projectiles/ammo_boxes/box_structures.dm @@ -33,13 +33,13 @@ if(!item_box.handfuls) if(item_box.overlay_ammo_type) overlays += image(text_markings_icon, icon_state = "base_type[item_box.overlay_ammo_type]") //adding base color stripes - if(item_box.contents.len == item_box.num_of_magazines) + if(length(item_box.contents) == item_box.num_of_magazines) overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]") - else if(item_box.contents.len > (item_box.num_of_magazines/2)) + else if(length(item_box.contents) > (item_box.num_of_magazines/2)) overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_3") - else if(item_box.contents.len > (item_box.num_of_magazines/4)) + else if(length(item_box.contents) > (item_box.num_of_magazines/4)) overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_2") - else if(item_box.contents.len > 0) + else if(length(item_box.contents) > 0) overlays += image(magazines_icon, icon_state = "magaz[item_box.overlay_content]_1") else var/obj/item/ammo_magazine/AM = locate(/obj/item/ammo_magazine) in item_box.contents @@ -102,9 +102,9 @@ if(item_box.handfuls) var/obj/item/ammo_magazine/AM = locate(/obj/item/ammo_magazine) in item_box.contents if(AM) - . += SPAN_INFO("It has roughly [round(AM.current_rounds/5)] handfuls remaining.") + . += SPAN_INFO("It has roughly [floor(AM.current_rounds/AM.transfer_handful_amount)] handfuls remaining.") else - . += SPAN_INFO("It has [item_box.contents.len] magazines out of [item_box.num_of_magazines].") + . += SPAN_INFO("It has [length(item_box.contents)] magazines out of [item_box.num_of_magazines].") if(burning) . += SPAN_DANGER("It's on fire and might explode!") @@ -112,7 +112,7 @@ if(burning) to_chat(user, SPAN_DANGER("It's on fire and might explode!")) return - if(item_box.contents.len) + if(length(item_box.contents)) if(!item_box.handfuls) var/obj/item/ammo_magazine/AM = pick(item_box.contents) item_box.contents -= AM @@ -134,8 +134,8 @@ if(istypestrict(W,item_box.magazine_type) || is_type_in_list(W, item_box.allowed_magazines)) if(istype(W, /obj/item/storage/box/m94)) var/obj/item/storage/box/m94/flare_pack = W - if(flare_pack.contents.len < flare_pack.max_storage_space) - to_chat(user, SPAN_WARNING("\The [W] is not full.")) + if(length(flare_pack.contents) < flare_pack.max_storage_space) + to_chat(user, SPAN_WARNING("[W] is not full.")) return var/flare_type if(istype(W, /obj/item/storage/box/m94/signal)) @@ -144,28 +144,28 @@ flare_type = /obj/item/device/flashlight/flare for(var/obj/item/device/flashlight/flare/F in flare_pack.contents) if(F.fuel < 1) - to_chat(user, SPAN_WARNING("Some flares in \the [F] are used.")) + to_chat(user, SPAN_WARNING("Some flares in [F] are used.")) return if(F.type != flare_type) - to_chat(user, SPAN_WARNING("Some flares in \the [W] are not of the correct type.")) + to_chat(user, SPAN_WARNING("Some flares in [W] are not of the correct type.")) return else if(istype(W, /obj/item/storage/box/MRE)) var/obj/item/storage/box/MRE/mre_pack = W if(mre_pack.isopened) - to_chat(user, SPAN_WARNING("\The [W] was already opened and isn't suitable for storing in \the [src].")) + to_chat(user, SPAN_WARNING("[W] was already opened and isn't suitable for storing in [src].")) return else if(istype(W, /obj/item/cell/high)) var/obj/item/cell/high/cell = W if(cell.charge != cell.maxcharge) - to_chat(user, SPAN_WARNING("\The [W] needs to be fully charged before it can be stored in \the [src].")) + to_chat(user, SPAN_WARNING("[W] needs to be fully charged before it can be stored in [src].")) return - if(item_box.contents.len < item_box.num_of_magazines) + if(length(item_box.contents) < item_box.num_of_magazines) user.drop_inv_item_to_loc(W, src) item_box.contents += W - to_chat(user, SPAN_NOTICE("You put a [W] in to \the [src]")) + to_chat(user, SPAN_NOTICE("You put \a [W] into [src]")) update_icon() else - to_chat(user, SPAN_WARNING("\The [src] is full.")) + to_chat(user, SPAN_WARNING("[src] is full.")) else to_chat(user, SPAN_WARNING("You don't want to mix different magazines in one box.")) else @@ -176,10 +176,10 @@ return if(O.default_ammo == AM.default_ammo) if(O.current_rounds <= 0) - to_chat(user, SPAN_WARNING("\The [O] is empty.")) + to_chat(user, SPAN_WARNING("[O] is empty.")) return if(AM.current_rounds >= AM.max_rounds) - to_chat(user, SPAN_WARNING("\The [src] is full.")) + to_chat(user, SPAN_WARNING("[src] is full.")) return else if(!do_after(user, 15, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) @@ -188,7 +188,7 @@ var/S = min(O.current_rounds, AM.max_rounds - AM.current_rounds) AM.current_rounds += S O.current_rounds -= S - to_chat(user, SPAN_NOTICE("You transfer shells from [O] into \the [src]")) + to_chat(user, SPAN_NOTICE("You transfer shells from [O] into [src]")) update_icon() O.update_icon() else diff --git a/code/modules/projectiles/ammo_boxes/grenade_packets.dm b/code/modules/projectiles/ammo_boxes/grenade_packets.dm index 83c222a0a1..91ea15e039 100644 --- a/code/modules/projectiles/ammo_boxes/grenade_packets.dm +++ b/code/modules/projectiles/ammo_boxes/grenade_packets.dm @@ -1,5 +1,5 @@ /obj/item/storage/box/packet - icon = 'icons/obj/items/weapons/grenade.dmi' + icon = 'icons/obj/items/storage/packets.dmi' icon_state = "hedp_packet" w_class = SIZE_MEDIUM//fits into bags storage_slots = 3 @@ -25,19 +25,20 @@ for(var/i in 1 to storage_slots) new content_type(src) -var/list/grenade_packets = list( +GLOBAL_LIST_INIT(grenade_packets, list( /obj/item/storage/box/packet/high_explosive, /obj/item/storage/box/packet/baton_slug, /obj/item/storage/box/packet/flare, /obj/item/storage/box/packet/hornet, /obj/item/storage/box/packet/incendiary, /obj/item/storage/box/packet/smoke, + /obj/item/storage/box/packet/foam, /obj/item/storage/box/packet/phosphorus, /obj/item/storage/box/packet/phosphorus/upp, /obj/item/storage/box/packet/m15, /obj/item/storage/box/packet/airburst_he, /obj/item/storage/box/packet/airburst_incen - ) + )) /obj/item/storage/box/packet/high_explosive name = "\improper HEDP grenade packet" @@ -76,11 +77,17 @@ var/list/grenade_packets = list( content_type = /obj/item/explosive/grenade/smokebomb /obj/item/storage/box/packet/phosphorus - name = "\improper HPDP grenade packet" - desc = "It contains three HPDP white phosphorus grenades." - icon_state = "hpdp_packet" + name = "\improper WPDP grenade packet" + desc = "It contains three WPDP white phosphorus grenades." + icon_state = "wpdp_packet" content_type = /obj/item/explosive/grenade/phosphorus/weak +/obj/item/storage/box/packet/phosphorus/strong + name = "\improper CCDP grenade packet" + desc = "It contains three CCDP chemical compound grenades." + icon_state = "ccdp_packet" + content_type = /obj/item/explosive/grenade/phosphorus + /obj/item/storage/box/packet/phosphorus/upp name = "\improper Type 8 WP grenade packet" desc = "It contains three type 8 white phosphorus grenades." @@ -97,6 +104,12 @@ var/list/grenade_packets = list( desc = "These little packets of joy were distributed in the 100th (Season 2) Issue of the Boots! magazine as commemorative rewards for subscribers. Nobody knows how anyone, at any point, never asked 'wait, is this a terrible idea?' during the process." content_type = /obj/item/explosive/grenade/high_explosive/frag/toy +/obj/item/storage/box/packet/foam + name = "\improper MFHS foam grenade packet" + desc = "It contains three MFHS metal-foam grenades." + icon_state = "mfhs_packet" + content_type = /obj/item/explosive/grenade/metal_foam + /obj/item/storage/box/packet/m15 name = "\improper M15 fragmentation grenade packet" desc = "It contains three M15 fragmentation grenades. Handle with care." @@ -109,6 +122,12 @@ var/list/grenade_packets = list( icon_state = "general_packet" content_type = /obj/item/explosive/grenade/high_explosive/m15/rubber +/obj/item/storage/box/packet/sebb + name = "\improper G2 Electroshock grenade packet" + desc = "It contains three G2 Electroshock grenades. Handle with care." + icon_state = "sebb_packet" + content_type = /obj/item/explosive/grenade/sebb + /obj/item/storage/box/packet/airburst_he name = "\improper M74 airburst grenade packet" desc = "It contains three M74 airburst fragmentation grenades. This end towards the enemy." diff --git a/code/modules/projectiles/ammo_boxes/handful_boxes.dm b/code/modules/projectiles/ammo_boxes/handful_boxes.dm index 28eab84630..3e9300c8b5 100644 --- a/code/modules/projectiles/ammo_boxes/handful_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/handful_boxes.dm @@ -48,6 +48,15 @@ /obj/item/ammo_box/magazine/shotgun/incendiary/empty empty = TRUE +/obj/item/ammo_box/magazine/shotgun/incendiarybuck + name = "\improper shotgun shell box (Incendiary buckshot x 100)" + icon_state = "base_incbuck" + overlay_content = "_incenbuck" + magazine_type = /obj/item/ammo_magazine/shotgun/incendiarybuck + +/obj/item/ammo_box/magazine/shotgun/incendiarybuck/empty + empty = TRUE + /obj/item/ammo_box/magazine/shotgun/beanbag name = "\improper shotgun shell box (Beanbag x 100)" icon_state = "base_bean" @@ -59,6 +68,20 @@ /obj/item/ammo_box/magazine/shotgun/beanbag/empty empty = TRUE + +//-----------------------16 GAUGE SHOTGUN SHELL BOXES----------------------- + +/obj/item/ammo_box/magazine/shotgun/light/breaching + name = "\improper 16-gauge shotgun shell box (Breaching x 120)" + icon_state = "base_breach" + overlay_content = "_breach" + magazine_type = /obj/item/ammo_magazine/shotgun/light/breaching + num_of_magazines = 120 //10 full mag reloads. + can_explode = FALSE + +/obj/item/ammo_box/magazine/shotgun/light/breaching/empty + empty = TRUE + //-----------------------R4T Lever-action rifle handfuls box----------------------- /obj/item/ammo_box/magazine/lever_action diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index f59c82a08c..9146922bea 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -1,7 +1,7 @@ //-----------------------M41A Rifle Mag Boxes----------------------- /obj/item/ammo_box/magazine/ap - name = "\improper magazine box (AP M41A x 10)" + name = "magazine box (AP M41A x 10)" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_ap" overlay_content = "_ap" @@ -11,7 +11,7 @@ empty = TRUE /obj/item/ammo_box/magazine/le - name = "\improper magazine box (LE M41A x 10)" + name = "magazine box (LE M41A x 10)" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_le" overlay_content = "_le" @@ -21,7 +21,7 @@ empty = TRUE /obj/item/ammo_box/magazine/ext - name = "\improper magazine box (Ext M41A x 8)" + name = "magazine box (Ext M41A x 8)" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_ext" num_of_magazines = 8 @@ -31,7 +31,7 @@ empty = TRUE /obj/item/ammo_box/magazine/incen - name = "\improper magazine box (Incen M41A x 10)" + name = "magazine box (Incen M41A x 10)" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_incen" overlay_content = "_incen" @@ -41,7 +41,7 @@ empty = TRUE /obj/item/ammo_box/magazine/explosive - name = "\improper magazine box (Explosive M41A x 10)" + name = "magazine box (Explosive M41A x 10)" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_expl" overlay_content = "_expl" @@ -60,39 +60,10 @@ /obj/item/ammo_box/magazine/heap/empty empty = TRUE -/obj/item/ammo_box/magazine/mk1 - name = "magazine box (M41A MK1 X 10)" - flags_equip_slot = SLOT_BACK - overlay_ammo_type = "_reg" - overlay_content = "_reg" - magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1 - allowed_magazines = list(/obj/item/ammo_magazine/rifle/m41aMK1/recon) - -/obj/item/ammo_box/magazine/mk1/empty - empty = TRUE - -/obj/item/ammo_box/magazine/mk1/heap - name = "magazine box (HEAP M41A MK1 X 10)" - overlay_ammo_type = "_heap" - overlay_content = "_heap" - magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1/heap - -/obj/item/ammo_box/magazine/mk1/heap/empty - empty = TRUE - -/obj/item/ammo_box/magazine/mk1/rubber - name = "magazine box (Rubber M41A MK1 X 10)" - overlay_ammo_type = "_training" - overlay_content = "_reg" - magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1/rubber - -/obj/item/ammo_box/magazine/mk1/rubber/empty - empty = TRUE - //-----------------------M39 Rifle Mag Boxes----------------------- /obj/item/ammo_box/magazine/m39 - name = "\improper magazine box (M39 x 12)" + name = "magazine box (M39 x 12)" icon_state = "base_m39" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -105,7 +76,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m39/ap - name = "\improper magazine box (AP M39 x 12)" + name = "magazine box (AP M39 x 12)" overlay_ammo_type = "_ap" overlay_content = "_ap" magazine_type = /obj/item/ammo_magazine/smg/m39/ap @@ -114,7 +85,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m39/ext - name = "\improper magazine box (Ext m39 x 10)" + name = "magazine box (Ext m39 x 10)" overlay_ammo_type = "_ext" overlay_content = "_hv" num_of_magazines = 10 @@ -124,7 +95,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m39/incen - name = "\improper magazine box (Incen m39 x 12)" + name = "magazine box (Incen m39 x 12)" overlay_ammo_type = "_incen" overlay_content = "_incen" magazine_type = /obj/item/ammo_magazine/smg/m39/incendiary @@ -133,7 +104,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m39/le - name = "\improper magazine box (LE m39 x 12)" + name = "magazine box (LE m39 x 12)" overlay_ammo_type = "_le" overlay_content = "_le" magazine_type = /obj/item/ammo_magazine/smg/m39/le @@ -153,7 +124,7 @@ //-----------------------M4RA Battle Rifle Mag Boxes----------------------- /obj/item/ammo_box/magazine/m4ra - name = "\improper magazine box (M4RA x 16)" + name = "magazine box (M4RA x 16)" icon_state = "base_m4ra" flags_equip_slot = SLOT_BACK overlay_gun_type = "_m4ra" @@ -164,7 +135,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m4ra/ap - name = "\improper magazine box (AP M4RA x 16)" + name = "magazine box (AP M4RA x 16)" overlay_ammo_type = "_ap" overlay_content = "_ap" magazine_type = /obj/item/ammo_magazine/rifle/m4ra/ap @@ -173,7 +144,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m4ra/ext - name = "\improper magazine box (Ext M4RA x 12)" + name = "magazine box (Ext M4RA x 12)" overlay_ammo_type = "_ext" num_of_magazines = 12 magazine_type = /obj/item/ammo_magazine/rifle/m4ra/ext @@ -182,7 +153,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m4ra/incen - name = "\improper magazine box (Incen M4RA x 16)" + name = "magazine box (Incen M4RA x 16)" overlay_ammo_type = "_incen" overlay_content = "_incen" magazine_type = /obj/item/ammo_magazine/rifle/m4ra/incendiary @@ -199,10 +170,23 @@ /obj/item/ammo_box/magazine/m4ra/heap/empty empty = TRUE +//-----------------------XM51 Breaching Scattergun Mag Box----------------------- + +/obj/item/ammo_box/magazine/xm51 + name = "magazine box (XM51 x 8)" + icon_state = "base_breach" + flags_equip_slot = SLOT_BACK + overlay_gun_type = "_xm51" + num_of_magazines = 8 + magazine_type = /obj/item/ammo_magazine/rifle/xm51 + +/obj/item/ammo_box/magazine/xm51/empty + empty = TRUE + //-----------------------L42A Battle Rifle Mag Boxes----------------------- /obj/item/ammo_box/magazine/l42a - name = "\improper magazine box (L42A x 16)" + name = "magazine box (L42A x 16)" icon_state = "base_l42" flags_equip_slot = SLOT_BACK overlay_gun_type = "_l42" @@ -213,7 +197,7 @@ empty = TRUE /obj/item/ammo_box/magazine/l42a/ap - name = "\improper magazine box (AP L42A x 16)" + name = "magazine box (AP L42A x 16)" overlay_ammo_type = "_ap" overlay_content = "_ap" magazine_type = /obj/item/ammo_magazine/rifle/l42a/ap @@ -222,7 +206,7 @@ empty = TRUE /obj/item/ammo_box/magazine/l42a/le - name = "\improper magazine box (LE L42A x 16)" + name = "magazine box (LE L42A x 16)" overlay_ammo_type = "_le" overlay_content = "_le" magazine_type = /obj/item/ammo_magazine/rifle/l42a/le @@ -231,7 +215,7 @@ empty = TRUE /obj/item/ammo_box/magazine/l42a/ext - name = "\improper magazine box (Ext L42A x 12)" + name = "magazine box (Ext L42A x 12)" overlay_ammo_type = "_ext" overlay_content = "_reg" num_of_magazines = 12 @@ -241,7 +225,7 @@ empty = TRUE /obj/item/ammo_box/magazine/l42a/incen - name = "\improper magazine box (Incen L42A x 16)" + name = "magazine box (Incen L42A x 16)" overlay_ammo_type = "_incen" overlay_content = "_incen" magazine_type = /obj/item/ammo_magazine/rifle/l42a/incendiary @@ -261,7 +245,7 @@ //-----------------------M16 Rifle Mag Box----------------------- /obj/item/ammo_box/magazine/M16 - name = "\improper magazine box (M16 x 12)" + name = "magazine box (M16 x 12)" icon_state = "base_m16" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -273,7 +257,7 @@ empty = TRUE /obj/item/ammo_box/magazine/M16/ap - name = "\improper magazine box (AP M16 x 12)" + name = "magazine box (AP M16 x 12)" icon_state = "base_m16" overlay_ammo_type = "_ap" overlay_gun_type = "_m16" @@ -286,7 +270,7 @@ //-----------------------M4A3 Pistol Mag Box----------------------- /obj/item/ammo_box/magazine/m4a3 - name = "\improper magazine box (M4A3 x 16)" + name = "magazine box (M4A3 x 16)" icon_state = "base_m4a3" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -298,7 +282,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m4a3/ap - name = "\improper magazine box (AP M4A3 x 16)" + name = "magazine box (AP M4A3 x 16)" overlay_ammo_type = "_ap" overlay_content = "_ap" magazine_type = /obj/item/ammo_magazine/pistol/ap @@ -307,7 +291,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m4a3/hp - name = "\improper magazine box (HP M4A3 x 16)" + name = "magazine box (HP M4A3 x 16)" overlay_ammo_type = "_hp" overlay_content = "_hp" magazine_type = /obj/item/ammo_magazine/pistol/hp @@ -315,10 +299,19 @@ /obj/item/ammo_box/magazine/m4a3/hp/empty empty = TRUE +/obj/item/ammo_box/magazine/m4a3/incen + name = "magazine box (Incen M4A3 x 16)" + overlay_ammo_type = "_incen" + overlay_content = "_incen" + magazine_type = /obj/item/ammo_magazine/pistol/incendiary + +/obj/item/ammo_box/magazine/m4a3/incen/empty + empty = TRUE + //-----------------------M44 Revolver Speed Loaders Box----------------------- /obj/item/ammo_box/magazine/m44 - name = "\improper speed loaders box (M44 x 16)" + name = "speed loaders box (M44 x 16)" icon_state = "base_m44" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_m44_reg" @@ -331,7 +324,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m44/marksman - name = "\improper speed loaders box (Marksman M44 x 16)" + name = "speed loaders box (Marksman M44 x 16)" overlay_ammo_type = "_m44_mark" magazine_type = /obj/item/ammo_magazine/revolver/marksman @@ -339,7 +332,7 @@ empty = TRUE /obj/item/ammo_box/magazine/m44/heavy - name = "\improper speed loaders box (Heavy M44 x 16)" + name = "speed loaders box (Heavy M44 x 16)" overlay_ammo_type = "_m44_heavy" magazine_type = /obj/item/ammo_magazine/revolver/heavy @@ -349,7 +342,7 @@ //-----------------------SU-6 Smartpistol Mag Box----------------------- /obj/item/ammo_box/magazine/su6 - name = "\improper magazine box (SU-6 x 16)" + name = "magazine box (SU-6 x 16)" icon_state = "base_su6" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -363,7 +356,7 @@ //-----------------------VP70 Pistol Mag Box----------------------- /obj/item/ammo_box/magazine/vp70 - name = "\improper magazine box (VP70 x 16)" + name = "magazine box (VP70 x 16)" icon_state = "base_mod88" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -378,7 +371,7 @@ //-----------------------VP78 Pistol Mag Box----------------------- /obj/item/ammo_box/magazine/vp78 - name = "\improper magazine box (VP78 x 16)" + name = "magazine box (VP78 x 16)" icon_state = "base_vp78" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_reg" @@ -392,7 +385,7 @@ //-----------------------Type71 Rifle Mag Box----------------------- /obj/item/ammo_box/magazine/type71 - name = "\improper magazine box (Type71 x 10)" + name = "magazine box (Type71 x 10)" icon_state = "base_type71" flags_equip_slot = SLOT_BACK overlay_ammo_type = "_type71_reg" @@ -405,7 +398,7 @@ empty = TRUE /obj/item/ammo_box/magazine/type71/ap - name = "\improper magazine box (Type71 AP x 10)" + name = "magazine box (Type71 AP x 10)" overlay_ammo_type = "_type71_ap" overlay_content = "_type71_ap" magazine_type = /obj/item/ammo_magazine/rifle/type71/ap @@ -425,7 +418,7 @@ //-----------------------Nailgun Mag Box----------------------- /obj/item/ammo_box/magazine/nailgun - name = "\improper magazine box (Nailgun x 10)" + name = "magazine box (Nailgun x 10)" icon_state = "base_nailgun" //base color of box icon_state_deployed = "base_nailgun_deployed" overlay_ammo_type = "_nail" //used for ammo type color overlay @@ -439,3 +432,618 @@ /obj/item/ammo_box/magazine/nailgun/empty empty = TRUE + +//-----------------------M56B Drum Box----------------------- + +/obj/item/ammo_box/magazine/m56b + name = "drum box (M56B x 8)" + icon_state = "base_m56b" + overlay_ammo_type = "_reg_heavy" + overlay_gun_type = "_sg" + overlay_content = "_sg" + magazine_type = /obj/item/ammo_magazine/smartgun + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/m56b/empty + empty = TRUE + +/obj/item/ammo_box/magazine/m56b/dirty + name = "drum box (M56B 'Dirty' x 8)" + overlay_ammo_type = "_red_heavy" + overlay_content = "_sgdirty" + magazine_type = /obj/item/ammo_magazine/smartgun/dirty + +/obj/item/ammo_box/magazine/m56b/dirty/empty + empty = TRUE + +//-----------------------M56D Drum Box----------------------- + +/obj/item/ammo_box/magazine/m56d + name = "drum box (M56D x 8)" + icon_state = "base_m56d" + overlay_ammo_type = "" + overlay_gun_type = "_m56d" + overlay_content = "_m56d" + magazine_type = /obj/item/ammo_magazine/m56d + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/m56d/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/m56d/empty + empty = TRUE + + +//-----------------------M2C Ammo Box----------------------- + +/obj/item/ammo_box/magazine/m2c + name = "ammo box (M2C x 8)" + icon_state = "base_m2c" + overlay_ammo_type = "" + overlay_gun_type = "_m2c" + overlay_content = "_m2c" + magazine_type = /obj/item/ammo_magazine/m2c + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/m2c/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/m2c/empty + empty = TRUE + +//-----------------------M41AE2 Ammo Box----------------------- + +/obj/item/ammo_box/magazine/m41ae2 + name = "magazine (M41AE2 x 8)" + icon_state = "base_m41ae2" + overlay_ammo_type = "_reg_heavy" + overlay_gun_type = "_m41ae2" + overlay_content = "_m41ae2" + magazine_type = /obj/item/ammo_magazine/rifle/lmg + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/m41ae2/empty + empty = TRUE + +/obj/item/ammo_box/magazine/m41ae2/holo + name = "magazine box (M41AE2 Holo-Target x 8)" + overlay_ammo_type = "_holo_heavy" + overlay_content = "_m41ae2_holo" + magazine_type = /obj/item/ammo_magazine/rifle/lmg/holo_target + +/obj/item/ammo_box/magazine/m41ae2/holo/empty + empty = TRUE + +/obj/item/ammo_box/magazine/m41ae2/heap + name = "magazine box (M41AE2 HEAP x 8)" + overlay_ammo_type = "_heap_heavy" + overlay_content = "_m41ae2_heap" + magazine_type = /obj/item/ammo_magazine/rifle/lmg/heap + +/obj/item/ammo_box/magazine/m41ae2/heap/empty + empty = TRUE + +//-----------------------Flamer Fuel Tank Box----------------------- + +/obj/item/ammo_box/magazine/flamer + name = "flamer tank box (UT-Napthal Fuel x 8)" + icon_state = "base_flamer" + overlay_ammo_type = "_flamer" + overlay_gun_type = "_blank" + overlay_content = "_flamer" + magazine_type = /obj/item/ammo_magazine/flamer_tank + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/flamer/empty + empty = TRUE + +/obj/item/ammo_box/magazine/flamer/bgel + name = "flamer fuel box (Napalm B-Gel x 8)" + overlay_ammo_type = "_flamer_bgel" + overlay_content = "_flamer_bgel" + magazine_type = /obj/item/ammo_magazine/flamer_tank/gellied + +/obj/item/ammo_box/magazine/flamer/bgel/empty + empty = TRUE + +//-----------------------M41A MK1 Rifle Mag Boxes----------------------- + +/obj/item/ammo_box/magazine/mk1 + name = "magazine box (M41A MK1 x 10)" + overlay_ammo_type = "_reg_mk1" + overlay_gun_type = "_mk1" + overlay_content = "_reg" + magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1 + allowed_magazines = list(/obj/item/ammo_magazine/rifle/m41aMK1/recon) + +/obj/item/ammo_box/magazine/mk1/empty + empty = TRUE + +/obj/item/ammo_box/magazine/mk1/ap + name = "magazine box (M41A MK1 AP x 10)" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "_ap_mk1" + overlay_content = "_ap" + magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1/ap + +/obj/item/ammo_box/magazine/mk1/ap/empty + empty = TRUE + +/obj/item/ammo_box/magazine/mk1/heap + name = "magazine box (HEAP M41A MK1 X 10)" + overlay_ammo_type = "_heap_mk1" + overlay_content = "_heap" + magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1/heap + +/obj/item/ammo_box/magazine/mk1/heap/empty + empty = TRUE + +/obj/item/ammo_box/magazine/mk1/rubber + name = "magazine box (Rubber M41A MK1 X 10)" + overlay_ammo_type = "_rubber_mk1" + overlay_content = "_reg" + magazine_type = /obj/item/ammo_magazine/rifle/m41aMK1/rubber + +/obj/item/ammo_box/magazine/mk1/rubber/empty + empty = TRUE + +//-----------------------NSG 23 Rifle Mag Boxes----------------------- + +/obj/item/ammo_box/magazine/nsg23 + name = "magazine box (NSG 23 x 16)" + icon_state = "base_nsg23" + overlay_gun_type = "_nsg23" + overlay_content = "_reg" + magazine_type = /obj/item/ammo_magazine/rifle/nsg23 + num_of_magazines = 16 + +/obj/item/ammo_box/magazine/nsg23/empty + empty = TRUE + +/obj/item/ammo_box/magazine/nsg23/ap + name = "magazine box (NSG 23 AP x 12)" + overlay_ammo_type = "_ap" + overlay_content = "_ap" + magazine_type = /obj/item/ammo_magazine/rifle/nsg23/ap + num_of_magazines = 12 + +/obj/item/ammo_box/magazine/nsg23/ap/empty + empty = TRUE + +/obj/item/ammo_box/magazine/nsg23/ex + name = "magazine box (NSG 23 Extended x 8)" + overlay_ammo_type = "_ext" + magazine_type = /obj/item/ammo_magazine/rifle/nsg23/extended + num_of_magazines = 8 + +/obj/item/ammo_box/magazine/nsg23/ex/empty + empty = TRUE + +/obj/item/ammo_box/magazine/nsg23/heap + name = "magazine box (NSG 23 HEAP x 16)" + overlay_ammo_type = "_heap" + overlay_content = "_heap" + magazine_type = /obj/item/ammo_magazine/rifle/nsg23/heap + +/obj/item/ammo_box/magazine/nsg23/heap/empty + empty = TRUE + +//-----------------------Spearhead Autorevolver Speed Loaders Box----------------------- + +/obj/item/ammo_box/magazine/spearhead + name = "speed loaders box (Spearhead HP x 12)" + icon_state = "base_cmb" + overlay_ammo_type = "_357_hp" + overlay_gun_type = "_357" + overlay_content = "_speed" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/revolver/spearhead + +/obj/item/ammo_box/magazine/spearhead/empty + empty = TRUE + +/obj/item/ammo_box/magazine/spearhead/normalpoint + name = "speed loaders box (Spearhead x 12)" + overlay_ammo_type = "_357_reg" + magazine_type = /obj/item/ammo_magazine/revolver/spearhead + +/obj/item/ammo_box/magazine/spearhead/normalpoint/empty + empty = TRUE + +//-----------------------Type 73 Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/type73 + name = "magazine box (Type 73 x 16)" + icon_state = "base_type73" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "_type71_reg" + overlay_gun_type = "_type73" + overlay_content = "_type71_reg" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/t73 + +/obj/item/ammo_box/magazine/type73/empty + empty = TRUE + +/obj/item/ammo_box/magazine/type73/impact + name = "magazine box (Type 73 High-Impact x 10)" + overlay_ammo_type = "_type73_impact" + overlay_content = "_type73_impact" + num_of_magazines = 10 + magazine_type = /obj/item/ammo_magazine/pistol/t73_impact + +/obj/item/ammo_box/magazine/type73/impact/empty + empty = TRUE + + +//-----------------------AR10 Rifle Mag Box----------------------- + +/obj/item/ammo_box/magazine/ar10 + name = "magazine box (AR10 x 12)" + icon_state = "base_ar10" + flags_equip_slot = SLOT_BACK + overlay_gun_type = "_ar10" + overlay_content = "_reg" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/rifle/ar10 + +/obj/item/ammo_box/magazine/ar10/empty + empty = TRUE + +//-----------------------MP5 Smg Mag Box----------------------- + +/obj/item/ammo_box/magazine/mp5 + name = "magazine box (MP5 x 12)" + icon_state = "base_m16" + flags_equip_slot = SLOT_BACK + overlay_gun_type = "_mp5" + overlay_content = "_reg" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/mp5 + +/obj/item/ammo_box/magazine/mp5/empty + empty = TRUE + + +//-----------------------Desert Eagle Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/deagle + name = "magazine box (Desert Eagle x 12)" + icon_state = "base_deagle" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "_reg" + overlay_gun_type = "_deagle" + overlay_content = "_reg" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/heavy + +/obj/item/ammo_box/magazine/deagle/empty + empty = TRUE + +/obj/item/ammo_box/magazine/deagle/super + name = "magazine box (Heavy Desert Eagle x 8)" + overlay_ammo_type = "_hp" + overlay_content = "_hp" + num_of_magazines = 8 + magazine_type = /obj/item/ammo_magazine/pistol/heavy/super + +/obj/item/ammo_box/magazine/deagle/super/empty + empty = TRUE + +/obj/item/ammo_box/magazine/deagle/super/highimpact + name = "magazine box (High Impact Desert Eagle x 8)" + overlay_ammo_type = "_impact" + overlay_content = "_impact" + magazine_type = /obj/item/ammo_magazine/pistol/heavy/super/highimpact + +/obj/item/ammo_box/magazine/deagle/super/highimpact/empty + empty = TRUE + +/obj/item/ammo_box/magazine/deagle/super/highimpact/ap + name = "magazine box (High Impact Armor-Piercing Desert Eagle x 8)" + overlay_ammo_type = "_ap" + overlay_content = "_ap" + magazine_type = /obj/item/ammo_magazine/pistol/heavy/super/highimpact/ap + +/obj/item/ammo_box/magazine/deagle/super/highimpact/ap/empty + empty = TRUE + + +//-----------------------S&W Revolver Speed Loaders Box----------------------- +/obj/item/ammo_box/magazine/snw + name = "speed loaders box (S&W .38 x 12)" + icon_state = "base_S&W" + overlay_ammo_type = "_m44_reg" + overlay_gun_type = "_38" + overlay_content = "_speed" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/revolver/small + +/obj/item/ammo_box/magazine/snw/empty + empty = TRUE + + +//-----------------------Type64 Bizon SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/type64 + name = "magazine box (Type64 Bizon x 10)" + icon_state = "base_type64" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "_type71_reg" + overlay_gun_type = "_type64" + overlay_content = "_type71_reg" + num_of_magazines = 10 + magazine_type = /obj/item/ammo_magazine/smg/bizon + +/obj/item/ammo_box/magazine/type64/empty + empty = TRUE + +//-----------------------ZhNK-72 Revolver Speedloader Box----------------------- + +/obj/item/ammo_box/magazine/zhnk + name = "speed loaders box (ZhNK-72 x 12)" + icon_state = "base_zhnk72" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_zhnk72" + overlay_content = "_zhnk72" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/revolver/upp + +/obj/item/ammo_box/magazine/zhnk/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/zhnk/empty + empty = TRUE + +//-----------------------Type-19 SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/type19 + name = "magazine box (Type19 x 12)" + icon_state = "base_type19" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_type19" + overlay_content = "_type71_reg" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/pps43 + +/obj/item/ammo_box/magazine/type19/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + + +/obj/item/ammo_box/magazine/type19/empty + empty = TRUE + +//-----------------------UZI SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/uzi + name = "magazine box (UZI x 12)" + icon_state = "base_uzi" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_uzi" + overlay_content = "_uzi" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/uzi + +/obj/item/ammo_box/magazine/uzi/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/uzi/empty + empty = TRUE + +//-----------------------MAC-15 SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/mac15 + name = "magazine box (MAC-15 x 12)" + icon_state = "base_uzi" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_mac15" + overlay_content = "_uzi" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/mac15 + +/obj/item/ammo_box/magazine/mac15/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/mac15/empty + empty = TRUE + +//-----------------------MP27 SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/mp27 + name = "magazine box (MP27 x 12)" + icon_state = "base_uzi" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_mp27" + overlay_content = "_fn" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/mp27 + +/obj/item/ammo_box/magazine/mp27/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/mp27/empty + empty = TRUE + +//-----------------------M1911 Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/m1911 + name = "magazine box (M1911 x 16)" + icon_state = "base_mk45" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_m1911" + overlay_content = "_uzi" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/m1911 + +/obj/item/ammo_box/magazine/m1911/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + + +/obj/item/ammo_box/magazine/m1911/empty + empty = TRUE + +//-----------------------MK-45 Highpower Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/mk45 + name = "magazine box (MK-45 x 16)" + icon_state = "base_mk45" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_mk45" + overlay_content = "_uzi" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/highpower + +/obj/item/ammo_box/magazine/mk45/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/mk45/empty + empty = TRUE + +//-----------------------KT-42 Automag Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/kt42 + name = "magazine box (KT-42 x 16)" + icon_state = "base_mk45" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_kt42" + overlay_content = "_uzi" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/kt42 + +/obj/item/ammo_box/magazine/kt42/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + + +/obj/item/ammo_box/magazine/kt42/empty + empty = TRUE + +//-----------------------Beretta 92FS Pistol Mag Box----------------------- + +/obj/item/ammo_box/magazine/b92fs + name = "magazine box (Beretta 92FS x 16)" + icon_state = "base_mk45" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_b92fs" + overlay_content = "_uzi" + num_of_magazines = 16 + magazine_type = /obj/item/ammo_magazine/pistol/b92fs + +/obj/item/ammo_box/magazine/b92fs/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/b92fs/empty + empty = TRUE + +//-----------------------FN FP9000 SMG Mag Box----------------------- + +/obj/item/ammo_box/magazine/fp9000 + name = "magazine box (FN FP9000 x 12)" + icon_state = "base_fn" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_fnfp9000" + overlay_content = "_fn" + num_of_magazines = 12 + magazine_type = /obj/item/ammo_magazine/smg/fp9000 + +/obj/item/ammo_box/magazine/fp9000/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/fp9000/empty + empty = TRUE + +//-----------------------MAR30/40 Mag Box----------------------- + +/obj/item/ammo_box/magazine/mar30 + name = "magazine box (MAR30/40 x 10)" + icon_state = "base_mar" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_mar30" + overlay_content = "_mar" + num_of_magazines = 10 + magazine_type = /obj/item/ammo_magazine/rifle/mar40 + +/obj/item/ammo_box/magazine/mar30/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/mar30/empty + empty = TRUE + +/obj/item/ammo_box/magazine/mar30/ext + name = "magazine box (MAR30/40 Ext x 8)" + overlay_gun_type = "_mar40" + num_of_magazines = 8 + magazine_type = /obj/item/ammo_magazine/rifle/mar40/extended + +/obj/item/ammo_box/magazine/mar30/ext/empty + empty = TRUE + +//-----------------------MAR50 Mag Box----------------------- + +/obj/item/ammo_box/magazine/mar50 + name = "magazine box (MAR50 x 8)" + icon_state = "base_mar" + flags_equip_slot = SLOT_BACK + overlay_ammo_type = "" + overlay_gun_type = "_mar50" + overlay_content = "_mar" + num_of_magazines = 8 + magazine_type = /obj/item/ammo_magazine/rifle/mar40/lmg + +/obj/item/ammo_box/magazine/mar50/update_icon() + if(overlays) + overlays.Cut() + overlays += image(icon, icon_state = "[icon_state]_lid") //adding lid + overlays += image(text_markings_icon, icon_state = "text[overlay_gun_type]") //adding text + +/obj/item/ammo_box/magazine/mar50/empty + empty = TRUE diff --git a/code/modules/projectiles/ammo_boxes/misc_boxes.dm b/code/modules/projectiles/ammo_boxes/misc_boxes.dm index 1793c784b1..83d08e5801 100644 --- a/code/modules/projectiles/ammo_boxes/misc_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/misc_boxes.dm @@ -75,6 +75,15 @@ overlay_gun_type = "_m94" overlay_content = "_flares" +//------------------------M89 Signal Flare Packs Box-------------------------- + +/obj/item/ammo_box/magazine/misc/flares/signal + name = "\improper box of M89 signal flare packs" + desc = "A box of M89 signal flare packs, to mark up the way." + magazine_type = /obj/item/storage/box/m94/signal + overlay_gun_type = "_m89" + overlay_content = "_flares_signal" + //---------------------FIRE HANDLING PROCS //flare box has unique stuff @@ -87,8 +96,8 @@ /obj/item/ammo_box/magazine/misc/flares/get_severity() var/flare_amount = 0 for(var/obj/item/storage/box/m94/flare_box in contents) - flare_amount += flare_box.contents.len - flare_amount = round(flare_amount / 20) //10 packs, 20 flares each, maximum total of 10 flares we can throw out + flare_amount += length(flare_box.contents) + flare_amount = floor(flare_amount / 20) //10 packs, 20 flares each, maximum total of 10 flares we can throw out return flare_amount /obj/item/ammo_box/magazine/misc/flares/process_burning(datum/cause_data/flame_cause_data) @@ -101,9 +110,7 @@ if(flare_amount > 0) handle_side_effects(host_box, TRUE) - var/list/turf_list = list() - for(var/turf/T in range(5, (host_box ? host_box : src))) - turf_list += T + var/list/turf_list = RANGE_TURFS(5, (host_box ? host_box : src)) for(var/i = 1, i <= flare_amount, i++) addtimer(CALLBACK(src, PROC_REF(explode), (host_box ? host_box : src), turf_list), rand(1, 6) SECONDS) return @@ -139,6 +146,9 @@ /obj/item/ammo_box/magazine/misc/flares/empty empty = TRUE +/obj/item/ammo_box/magazine/misc/flares/signal/empty + empty = TRUE + //------------------------Flashlight Box-------------------------- /obj/item/ammo_box/magazine/misc/flashlight @@ -153,6 +163,19 @@ /obj/item/ammo_box/magazine/misc/flashlight/empty empty = TRUE +/obj/item/ammo_box/magazine/misc/flashlight/combat + name = "\improper box of combat flashlights" + desc = "A box of flashlights to brighten your day!" + magazine_type = /obj/item/device/flashlight/combat + num_of_magazines = 8 + icon_state = "flashlightbox_combat" + icon_state_deployed = "flashlightbox_combat_deployed" + overlay_content = "_flashlight" + +/obj/item/ammo_box/magazine/misc/flashlight/combat/empty + empty = TRUE + + //------------------------Battery Box-------------------------- /obj/item/ammo_box/magazine/misc/power_cell diff --git a/code/modules/projectiles/ammo_boxes/round_boxes.dm b/code/modules/projectiles/ammo_boxes/round_boxes.dm index 3063d1063c..f3b162fadc 100644 --- a/code/modules/projectiles/ammo_boxes/round_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/round_boxes.dm @@ -155,3 +155,43 @@ bullet_amount = 1500 max_bullet_amount = 1500 caliber = "10x31mm" + +//----------------9mm Pistol Ammunition Boxes (for mod88, M4A3 pistols)------------------ + +/obj/item/ammo_box/rounds/pistol + name = "\improper pistol ammunition box (9mm)" + desc = "A 9mm ammunition box. Used to refill M4A3 magazines. It comes with a leather strap allowing to wear it on the back." + caliber = "9mm" + icon_state = "base_m4a3" + overlay_content = "_reg" + default_ammo = /datum/ammo/bullet/pistol + +/obj/item/ammo_box/rounds/pistol/empty + empty = TRUE + +/obj/item/ammo_box/rounds/pistol/ap + name = "\improper pistol ammunition box (9mm AP)" + desc = "A 9mm armor-piercing ammunition box. Used to refill mod88 and M4A3 magazines. It comes with a leather strap allowing to wear it on the back." + overlay_content = "_ap" + default_ammo = /datum/ammo/bullet/pistol/ap + +/obj/item/ammo_box/rounds/pistol/ap/empty + empty = TRUE + +/obj/item/ammo_box/rounds/pistol/hp + name = "\improper pistol ammunition box (9mm HP)" + desc = "A 9mm hollow-point ammunition box. Used to refill M4A3 magazines. It comes with a leather strap allowing to wear it on the back." + overlay_content = "_hp" + default_ammo = /datum/ammo/bullet/pistol/hollow + +/obj/item/ammo_box/rounds/pistol/hp/empty + empty = TRUE + +/obj/item/ammo_box/rounds/pistol/incen + name = "\improper pistol ammunition box (9mm Incendiary)" + desc = "A 9mm incendiary ammunition box. Used to refill M4A3 magazines. It comes with a leather strap allowing to wear it on the back." + overlay_content = "_incen" + default_ammo = /datum/ammo/bullet/pistol/incendiary + +/obj/item/ammo_box/rounds/pistol/incen/empty + empty = TRUE diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index 594ad6b69d..e032d3ebbe 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -196,10 +196,10 @@ They're all essentially identical when it comes to getting the job done. if(current_rounds < 1) return else - var/severity = round(current_rounds / 50) + var/severity = floor(current_rounds / 50) //the more ammo inside, the faster and harder it cooks off if(severity > 0) - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(explosion), loc, -1, ((severity > 4) ? 0 : -1), Clamp(severity, 0, 1), Clamp(severity, 0, 2), 1, 0, 0, flame_cause_data), max(5 - severity, 2)) + addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(explosion), loc, -1, ((severity > 4) ? 0 : -1), clamp(severity, 0, 1), clamp(severity, 0, 2), 1, 0, 0, flame_cause_data), max(5 - severity, 2)) if(!QDELETED(src)) qdel(src) @@ -233,6 +233,8 @@ bullets/shells. ~N */ /obj/item/ammo_magazine/handful + AUTOWIKI_SKIP(TRUE) + name = "generic handful" desc = "A handful of rounds to reload on the go." icon = 'icons/obj/items/weapons/guns/handful.dmi' @@ -335,14 +337,14 @@ Turn() or Shift() as there is virtually no overhead. ~N /obj/item/ammo_casing/update_icon() if(max_casings >= current_casings) if(current_casings == 2) name += "s" //In case there is more than one. - if(round((current_casings-1)/8) > current_icon) + if(floor((current_casings-1)/8) > current_icon) current_icon++ icon_state += "_[current_icon]" var/I = current_casings*8 // For the metal. matter = list("metal" = I) var/base_direction = current_casings - (current_icon * 8) - setDir(base_direction + round(base_direction)/3) + setDir(base_direction + floor(base_direction)/3) switch(current_casings) if(3 to 5) w_class = SIZE_SMALL //Slightly heavier. if(9 to 10) w_class = SIZE_MEDIUM //Can't put it in your pockets and stuff. @@ -365,7 +367,7 @@ Turn() or Shift() as there is virtually no overhead. ~N overlay_ammo_type = "_blank" overlay_gun_type = "_458" overlay_content = "_458" - magazine_type = /obj/item/ammo_magazine/handful/lever_action/xm88 + magazine_type = /obj/item/ammo_magazine/lever_action/xm88 /obj/item/ammo_box/magazine/lever_action/xm88/empty empty = TRUE diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 32a0850443..50e735b918 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -23,7 +23,7 @@ WEAR_L_HAND = 'icons/mob/humans/onmob/items_lefthand_1.dmi', WEAR_R_HAND = 'icons/mob/humans/onmob/items_righthand_1.dmi' ) - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT flags_item = TWOHANDED light_system = DIRECTIONAL_LIGHT @@ -33,6 +33,8 @@ var/muzzle_flash = "muzzle_flash" ///muzzle flash brightness var/muzzle_flash_lum = 3 + ///Color of the muzzle flash light effect. + var/muzzle_flash_color = COLOR_VERY_SOFT_YELLOW var/fire_sound = 'sound/weapons/Gunshot.ogg' /// If fire_sound is null, it will pick a sound from the list here instead. @@ -426,6 +428,10 @@ SEND_SIGNAL(src, COMSIG_GUN_RECALCULATE_ATTACHMENT_BONUSES) /obj/item/weapon/gun/proc/handle_random_attachments() + #ifdef AUTOWIKI // no randomness for my gun pictures, please + return + #endif + var/attachmentchoice var/randchance = random_spawn_chance @@ -470,7 +476,7 @@ /obj/item/weapon/gun/proc/handle_starting_attachment() - if(starting_attachment_types && starting_attachment_types.len) + if(LAZYLEN(starting_attachment_types)) for(var/path in starting_attachment_types) var/obj/item/attachable/A = new path(src) A.Attach(src) @@ -502,13 +508,15 @@ As sniper rifles have both and weapon mods can change them as well. ..() deals w if(slot in list(WEAR_L_HAND, WEAR_R_HAND)) set_gun_user(user) - if(HAS_TRAIT_FROM_ONLY(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user))) + if(HAS_TRAIT_FROM_ONLY(src, TRAIT_GUN_LIGHT_FORCE_DEACTIVATED, WEAKREF(user))) force_light(on = TRUE) - REMOVE_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user)) + REMOVE_TRAIT(src, TRAIT_GUN_LIGHT_FORCE_DEACTIVATED, WEAKREF(user)) else set_gun_user(null) - force_light(on = FALSE) - ADD_TRAIT(src, TRAIT_GUN_LIGHT_DEACTIVATED, WEAKREF(user)) + // we force the light off and turn it back on again when the gun is equipped. Otherwise bad things happen. + if(light_sources()) + force_light(on = FALSE) + ADD_TRAIT(src, TRAIT_GUN_LIGHT_FORCE_DEACTIVATED, WEAKREF(user)) return ..() @@ -662,8 +670,8 @@ As sniper rifles have both and weapon mods can change them as well. ..() deals w data["two_handed_only"] = (flags_gun_features & GUN_WIELDED_FIRING_ONLY) data["recoil"] = max(gun_recoil, 0.1) data["unwielded_recoil"] = max(recoil_unwielded, 0.1) - data["firerate"] = round(1 MINUTES / rpm) // 3 minutes so that the values look greater than they actually are - data["burst_firerate"] = round(1 MINUTES / burst_rpm) + data["firerate"] = floor(1 MINUTES / rpm) // 3 minutes so that the values look greater than they actually are + data["burst_firerate"] = floor(1 MINUTES / burst_rpm) data["firerate_second"] = round(1 SECONDS / rpm, 0.01) data["burst_firerate_second"] = round(1 SECONDS / burst_rpm, 0.01) data["scatter"] = max(0.1, scatter + src.scatter) @@ -831,6 +839,7 @@ User can be passed as null, (a gun reloading itself for instance), so we need to to_chat(user, SPAN_WARNING("Your reload was interrupted!")) return replace_magazine(user, magazine) + SEND_SIGNAL(user, COMSIG_MOB_RELOADED_GUN, src) else current_mag = magazine magazine.forceMove(src) @@ -861,6 +870,8 @@ User can be passed as null, (a gun reloading itself for instance), so we need to if(!current_mag || QDELETED(current_mag) || (current_mag.loc != src && !loc_override)) cock(user) + current_mag = null + update_icon() return if(drop_override || !user) //If we want to drop it on the ground or there's no user. @@ -1036,6 +1047,7 @@ and you're good to go. user.swap_hand() unload(user, TRUE, drop_to_ground) // We want to quickly autoeject the magazine. This proc does the rest based on magazine type. User can be passed as null. playsound(src, empty_sound, 25, 1) + SEND_SIGNAL(user, COMSIG_MOB_GUN_EMPTY, src) else // Just fired a chambered bullet with no magazine in the gun update_icon() @@ -1235,7 +1247,7 @@ and you're good to go. return TRUE //>>POST PROCESSING AND CLEANUP BEGIN HERE.<< - var/angle = round(Get_Angle(user,target)) //Let's do a muzzle flash. + var/angle = floor(Get_Angle(user,target)) //Let's do a muzzle flash. muzzle_flash(angle,user) //This is where we load the next bullet in the chamber. We check for attachments too, since we don't want to load anything if an attachment is active. @@ -1345,6 +1357,8 @@ and you're good to go. if(EXECUTION_CHECK) //Execution if(!able_to_fire(user)) //Can they actually use guns in the first place? return ..() + if(flags_gun_features & GUN_CANT_EXECUTE) + return ..() user.visible_message(SPAN_DANGER("[user] puts [src] up to [attacked_mob], steadying their aim."), SPAN_WARNING("You put [src] up to [attacked_mob], steadying your aim."),null, null, CHAT_TYPE_COMBAT_ACTION) if(!do_after(user, 3 SECONDS, INTERRUPT_ALL|INTERRUPT_DIFF_INTENT, BUSY_ICON_HOSTILE)) return TRUE @@ -1357,7 +1371,7 @@ and you're good to go. user.next_move = world.time //No click delay on PBs. //Point blanking doesn't actually fire the projectile. Instead, it simulates firing the bullet proper. - if(!able_to_fire(user)) //If it's a valid PB aside from that you can't fire the gun, do nothing. + if(flags_gun_features & GUN_BURST_FIRING || !able_to_fire(user)) //If it's a valid PB aside from that you can't fire the gun, do nothing. return TRUE //The following relating to bursts was borrowed from Fire code. @@ -1420,7 +1434,7 @@ and you're good to go. var/damage_buff = BASE_BULLET_DAMAGE_MULT //if target is lying or unconscious - add damage bonus - if(attacked_mob.body_position == LYING_DOWN || attacked_mob.stat == UNCONSCIOUS) + if(!(attacked_mob.mobility_flags & MOBILITY_STAND) || attacked_mob.stat == UNCONSCIOUS) damage_buff += BULLET_DAMAGE_MULT_TIER_4 projectile_to_fire.damage *= damage_buff //Multiply the damage for point blank. if(bullets_fired == 1) //First shot gives the PB message. @@ -1445,8 +1459,12 @@ and you're good to go. for(var/i in 1 to projectile_to_fire.ammo.bonus_projectiles_amount) BP = new /obj/projectile(null, create_cause_data(initial(name), user)) BP.generate_bullet(GLOB.ammo_list[projectile_to_fire.ammo.bonus_projectiles_type], 0, NO_FLAGS) - BP.accuracy = round(BP.accuracy * projectile_to_fire.accuracy/initial(projectile_to_fire.accuracy)) //Modifies accuracy of pellets per fire_bonus_projectiles. + BP.accuracy = floor(BP.accuracy * projectile_to_fire.accuracy/initial(projectile_to_fire.accuracy)) //Modifies accuracy of pellets per fire_bonus_projectiles. BP.damage *= damage_buff + + BP.bonus_projectile_check = 2 + projectile_to_fire.bonus_projectile_check = 1 + projectile_to_fire.give_bullet_traits(BP) if(bullets_fired > 1) BP.original = attacked_mob //original == the original target of the projectile. If the target is downed and this isn't set, the projectile will try to fly over it. Of course, it isn't going anywhere, but it's the principle of the thing. Very embarrassing. @@ -1549,7 +1567,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed return //We just put the gun up. Can't do it that fast if(ismob(user)) //Could be an object firing the gun. - if(!user.IsAdvancedToolUser()) + if(!user.IsAdvancedToolUser() && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) to_chat(user, SPAN_WARNING("You don't have the dexterity to do this!")) return @@ -1564,6 +1582,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed if(flags_gun_features & GUN_TRIGGER_SAFETY) to_chat(user, SPAN_WARNING("The safety is on!")) + gun_user.balloon_alert(gun_user, "safety on") return if(active_attachable) if(active_attachable.flags_attach_features & ATTACH_PROJECTILE) @@ -1631,6 +1650,9 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed user = gun_user if(flags_gun_features & GUN_AMMO_COUNTER && current_mag) + // toggleable spam control. + if(user.client.prefs.toggle_prefs & TOGGLE_AMMO_DISPLAY_TYPE && gun_firemode == GUN_FIREMODE_SEMIAUTO && current_mag.current_rounds % 5 != 0 && current_mag.current_rounds > 15) + return var/chambered = in_chamber ? TRUE : FALSE to_chat(user, SPAN_DANGER("[current_mag.current_rounds][chambered ? "+1" : ""] / [current_mag.max_rounds] ROUNDS REMAINING")) @@ -1687,7 +1709,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed if(skill_accuracy) gun_accuracy_mult += skill_accuracy * HIT_ACCURACY_MULT_TIER_3 // Accuracy mult increase/decrease per level is equal to attaching/removing a red dot sight - projectile_to_fire.accuracy = round(projectile_to_fire.accuracy * gun_accuracy_mult) // Apply gun accuracy multiplier to projectile accuracy + projectile_to_fire.accuracy = floor(projectile_to_fire.accuracy * gun_accuracy_mult) // Apply gun accuracy multiplier to projectile accuracy projectile_to_fire.scatter += gun_scatter /// When the gun is about to shoot this is called to play the specific gun's firing sound. Requires the firing projectile and the gun's user as the first and second argument @@ -1784,7 +1806,7 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed else total_recoil -= user.skills.get_skill_level(SKILL_FIREARMS)*RECOIL_AMOUNT_TIER_5 - if(total_recoil > 0 && ishuman(user)) + if(total_recoil > 0 && (ishuman(user) || HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS))) if(total_recoil >= 4) shake_camera(user, total_recoil * 0.5, total_recoil) else @@ -1796,21 +1818,22 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed /obj/item/weapon/gun/proc/muzzle_flash(angle,mob/user) if(!muzzle_flash || flags_gun_features & GUN_SILENCED || isnull(angle)) return //We have to check for null angle here, as 0 can also be an angle. - if(!istype(user) || !istype(user.loc,/turf)) + if(!istype(user) || !isturf(user.loc)) return var/prev_light = light_range if(!light_on && (light_range <= muzzle_flash_lum)) set_light_range(muzzle_flash_lum) set_light_on(TRUE) + set_light_color(muzzle_flash_color) addtimer(CALLBACK(src, PROC_REF(reset_light_range), prev_light), 0.5 SECONDS) - var/image_layer = (user && user.dir == SOUTH) ? MOB_LAYER+0.1 : MOB_LAYER-0.1 - var/offset = 5 - - var/image/I = image('icons/obj/items/weapons/projectiles.dmi',user,muzzle_flash,image_layer) + var/image/I = image('icons/obj/items/weapons/projectiles.dmi', user, muzzle_flash, user.dir == NORTH ? ABOVE_LYING_MOB_LAYER : FLOAT_LAYER) var/matrix/rotate = matrix() //Change the flash angle. - rotate.Translate(0, offset) + if(iscarbonsizexeno(user)) + var/mob/living/carbon/xenomorph/xeno = user + I.pixel_x = xeno.xeno_inhand_item_offset //To center it on the xeno sprite without being thrown off by rotation. + rotate.Translate(0, 5) //Y offset to push the flash overlay outwards. rotate.Turn(angle) I.transform = rotate I.flick_overlay(user, 3) @@ -1965,8 +1988,8 @@ not all weapons use normal magazines etc. load_into_chamber() itself is designed if(gun_user.client?.prefs?.toggle_prefs & TOGGLE_HELP_INTENT_SAFETY && (gun_user.a_intent == INTENT_HELP)) if(world.time % 3) // Limits how often this message pops up, saw this somewhere else and thought it was clever - //Absolutely SCREAM this at people so they don't get killed by it - to_chat(gun_user, SPAN_HIGHDANGER("Help intent safety is on! Switch to another intent to fire your weapon.")) + to_chat(gun_user, SPAN_DANGER("Help intent safety is on! Switch to another intent to fire your weapon.")) + gun_user.balloon_alert(gun_user, "help intent safety") click_empty(gun_user) return FALSE diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 316d4491cc..2737bc5245 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -31,7 +31,7 @@ Defined in conflicts.dm of the #defines folder. var/pixel_shift_y = 16 //Uses the bottom left corner of the item. flags_atom = FPRINT|CONDUCT - matter = list("metal" = 2000) + matter = list("metal" = 100) w_class = SIZE_SMALL force = 1 var/slot = null //"muzzle", "rail", "under", "stock", "special" @@ -344,6 +344,10 @@ Defined in conflicts.dm of the #defines folder. throw_range = 7 pry_delay = 1 SECONDS +/obj/item/attachable/bayonet/van_bandolier + name = "\improper Fairbairn-Sykes fighting knife" + desc = "This isn't for dressing game or performing camp chores. It's almost certainly not an original. Almost." + /obj/item/attachable/bayonet/co2/update_icon() icon_state = "co2_knife[filled ? "-f" : ""]" attach_icon = "co2_bayonet[filled ? "-f" : ""]_a" @@ -352,16 +356,16 @@ Defined in conflicts.dm of the #defines folder. if(istype(W, /obj/item/co2_cartridge)) if(!filled) filled = TRUE - user.visible_message(SPAN_NOTICE("[user] slots a CO2 cartridge into [src]. A second later, \he apparently looks dismayed."), SPAN_WARNING("You slot a fresh CO2 cartridge into [src] and snap the slot cover into place. Only then do you realize \the [W]'s valve broke inside \the [src]. Fuck.")) + user.visible_message(SPAN_NOTICE("[user] slots a CO2 cartridge into [src]. A second later, \he apparently looks dismayed."), SPAN_WARNING("You slot a fresh CO2 cartridge into [src] and snap the slot cover into place. Only then do you realize [W]'s valve broke inside [src]. Fuck.")) playsound(src, 'sound/machines/click.ogg') qdel(W) update_icon() return else - user.visible_message(SPAN_WARNING("[user] fiddles with \the [src]. \He looks frustrated."), SPAN_NOTICE("No way man! You can't seem to pry the existing container out of \the [src]... try a screwdriver?")) + user.visible_message(SPAN_WARNING("[user] fiddles with [src]. \He looks frustrated."), SPAN_NOTICE("No way man! You can't seem to pry the existing container out of [src]... try a screwdriver?")) return if(HAS_TRAIT(W, TRAIT_TOOL_SCREWDRIVER) && do_after(user, 2 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) - user.visible_message(SPAN_WARNING("[user] screws with \the [src], using \a [W]. \He looks very frustrated."), SPAN_NOTICE("You try to pry the cartridge out of the [src], but it's stuck damn deep. Piece of junk...")) + user.visible_message(SPAN_WARNING("[user] screws with [src], using \a [W]. \He looks very frustrated."), SPAN_NOTICE("You try to pry the cartridge out of [src], but it's stuck damn deep. Piece of junk...")) return ..() @@ -497,6 +501,20 @@ Defined in conflicts.dm of the #defines folder. accuracy_mod = HIT_ACCURACY_MULT_TIER_3 scatter_mod = -SCATTER_AMOUNT_TIER_8 +/obj/item/attachable/pmc_sniperbarrel + name = "sniper barrel" + icon = 'icons/obj/items/weapons/guns/attachments/barrel.dmi' + icon_state = "pmc_sniperbarrel" + desc = "A heavy barrel. CANNOT BE REMOVED." + slot = "muzzle" + flags_attach_features = NO_FLAGS + hud_offset_mod = -3 + +/obj/item/attachable/pmc_sniperbarrel/New() + ..() + accuracy_mod = HIT_ACCURACY_MULT_TIER_3 + scatter_mod = -SCATTER_AMOUNT_TIER_8 + /obj/item/attachable/sniperbarrel/vulture name = "\improper M707 barrel" icon_state = "vulture_barrel" @@ -1054,6 +1072,7 @@ Defined in conflicts.dm of the #defines folder. button.name = name /datum/action/item_action/toggle_zoom_level/action_activate() + . = ..() var/obj/item/weapon/gun/G = holder_item var/obj/item/attachable/scope/variable_zoom/S = G.attachments["rail"] S.toggle_zoom_level() @@ -1273,6 +1292,19 @@ Defined in conflicts.dm of the #defines folder. QDEL_NULL(scope_element) return ..() +/obj/item/attachable/vulture_scope/select_gamemode_skin(expected_type, list/override_icon_state, list/override_protection) + . = ..() + var/new_attach_icon + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("snow") + attach_icon = new_attach_icon ? new_attach_icon : "s_" + attach_icon + if("desert") + attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon + if("classic") + attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon + /obj/item/attachable/vulture_scope/tgui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if(!ui) @@ -1304,7 +1336,7 @@ Defined in conflicts.dm of the #defines folder. switch(action) if("adjust_dir") var/direction = params["offset_dir"] - if(!(direction in alldirs) || !scoping || !scope_user) + if(!(direction in GLOB.alldirs) || !scoping || !scope_user) return var/mob/scoper = scope_user.resolve() @@ -1321,7 +1353,7 @@ Defined in conflicts.dm of the #defines folder. if("adjust_position") var/direction = params["position_dir"] - if(!(direction in alldirs) || !scoping || !scope_user) + if(!(direction in GLOB.alldirs) || !scoping || !scope_user) return var/mob/scoper = scope_user.resolve() @@ -1388,7 +1420,7 @@ Defined in conflicts.dm of the #defines folder. return TRUE /obj/item/attachable/vulture_scope/proc/get_offset_dirs() - var/list/possible_dirs = alldirs.Copy() + var/list/possible_dirs = GLOB.alldirs.Copy() if(scope_offset_x >= scope_drift_max) possible_dirs -= list(NORTHEAST, EAST, SOUTHEAST) else if(scope_offset_x <= -scope_drift_max) @@ -1405,7 +1437,7 @@ Defined in conflicts.dm of the #defines folder. /obj/item/attachable/vulture_scope/proc/get_adjust_dirs() if(!scoping) return list() - var/list/possible_dirs = alldirs.Copy() + var/list/possible_dirs = GLOB.alldirs.Copy() var/turf/current_turf = get_turf(src) var/turf/scope_tile = locate(scope_x, scope_y, current_turf.z) var/mob/scoper = scope_user.resolve() @@ -1589,7 +1621,7 @@ Defined in conflicts.dm of the #defines folder. scoper.clear_fullscreen("vulture") scoper.client.remove_from_screen(scope_element) scoper.see_in_dark -= darkness_view - scoper.lighting_alpha = 127 + scoper.lighting_alpha = LIGHTING_PLANE_ALPHA_VISIBLE scoper.sync_lighting_plane_alpha() QDEL_NULL(scope_element) recalculate_scope_pos() @@ -1663,6 +1695,7 @@ Defined in conflicts.dm of the #defines folder. /datum/action/item_action/vulture /datum/action/item_action/vulture/action_activate() + . = ..() var/obj/item/weapon/gun/gun_holder = holder_item var/obj/item/attachable/vulture_scope/scope = gun_holder.attachments["rail"] if(!istype(scope)) @@ -1750,8 +1783,6 @@ Defined in conflicts.dm of the #defines folder. //but at the same time you are slow when 2 handed aim_speed_mod = CONFIG_GET(number/slowdown_med) - matter = list("wood" = 2000) - select_gamemode_skin(type) /obj/item/attachable/stock/double @@ -1816,6 +1847,7 @@ Defined in conflicts.dm of the #defines folder. /obj/item/attachable/stock/vulture name = "\improper M707 heavy stock" icon_state = "vulture_stock" + attach_icon = "vulture_stock" hud_offset_mod = 3 /obj/item/attachable/stock/vulture/Initialize(mapload, ...) @@ -1823,6 +1855,19 @@ Defined in conflicts.dm of the #defines folder. select_gamemode_skin(type) // Doesn't give any stat additions due to the gun already having really good ones, and this is unremovable from the gun itself +/obj/item/attachable/stock/vulture/select_gamemode_skin(expected_type, list/override_icon_state, list/override_protection) + . = ..() + var/new_attach_icon + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("snow") + attach_icon = new_attach_icon ? new_attach_icon : "s_" + attach_icon + if("desert") + attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon + if("classic") + attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon + /obj/item/attachable/stock/tactical name = "\improper M120 tactical stock" desc = "A metal stock made for the M120 tactical shotgun." @@ -2134,6 +2179,43 @@ Defined in conflicts.dm of the #defines folder. flags_attach_features = NO_FLAGS hud_offset_mod = 2 +/obj/item/attachable/stock/xm51 + name = "\improper XM51 stock" + desc = "A specialized stock designed for XM51 breaching shotguns. Helps the user absorb the recoil of the weapon while also reducing scatter. Integrated mechanisms inside the stock allow use of a devastating two-shot burst. This comes at a cost of the gun becoming too unwieldy to holster, worse handling and mobility." + icon_state = "xm51_stock" + attach_icon = "xm51_stock_a" + wield_delay_mod = WIELD_DELAY_FAST + hud_offset_mod = 3 + melee_mod = 10 + +/obj/item/attachable/stock/xm51/Initialize(mapload, ...) + . = ..() + select_gamemode_skin(type) + //it makes stuff much better when two-handed + accuracy_mod = HIT_ACCURACY_MULT_TIER_3 + recoil_mod = -RECOIL_AMOUNT_TIER_4 + scatter_mod = -SCATTER_AMOUNT_TIER_8 + movement_onehanded_acc_penalty_mod = -MOVEMENT_ACCURACY_PENALTY_MULT_TIER_4 + //and allows for burst-fire + burst_mod = BURST_AMOUNT_TIER_2 + //but it makes stuff much worse when one handed + accuracy_unwielded_mod = -HIT_ACCURACY_MULT_TIER_5 + recoil_unwielded_mod = RECOIL_AMOUNT_TIER_5 + scatter_unwielded_mod = SCATTER_AMOUNT_TIER_6 + //and makes you slower + aim_speed_mod = CONFIG_GET(number/slowdown_med) + +/obj/item/attachable/stock/xm51/select_gamemode_skin(expected_type, list/override_icon_state, list/override_protection) + . = ..() + var/new_attach_icon + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("snow") + attach_icon = new_attach_icon ? new_attach_icon : "s_" + attach_icon + if("desert") + attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon + if("classic") + attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + /obj/item/attachable/stock/vp70 name = "\improper VP70 burst stock" desc = "Increases the fire rate and burst amount on the VP70. Some versions act as a holster for the weapon when un-attached. This is a test item and should not be used in normal gameplay (yet)." @@ -2356,6 +2438,33 @@ Defined in conflicts.dm of the #defines folder. /obj/item/attachable/stock/type71/New() ..() +/obj/item/attachable/stock/m60 + name = "M60 stock" + desc = "This isn't supposed to be separated from the gun, how'd this happen?" + icon = 'icons/obj/items/weapons/guns/attachments/stock.dmi' + icon_state = "m60_stock" + attach_icon = "m60_stock" + slot = "stock" + wield_delay_mod = WIELD_DELAY_NONE + flags_attach_features = NO_FLAGS + melee_mod = 15 + size_mod = 0 + + +/obj/item/attachable/stock/ppsh + name = "PPSh-17b stock" + desc = "This isn't supposed to be separated from the gun, how'd this happen?" + icon = 'icons/obj/items/weapons/guns/attachments/stock.dmi' + icon_state = "ppsh17b_stock" + attach_icon = "ppsh17b_stock" + slot = "stock" + wield_delay_mod = WIELD_DELAY_NONE + flags_attach_features = NO_FLAGS + melee_mod = 10 + size_mod = 0 + + + /obj/item/attachable/stock/smg name = "submachinegun stock" desc = "A rare ARMAT stock distributed in small numbers to USCM forces. Compatible with the M39, this stock reduces recoil and improves accuracy, but at a reduction to handling and agility. Seemingly a bit more effective in a brawl" @@ -2959,7 +3068,7 @@ Defined in conflicts.dm of the #defines folder. current_rounds += transfered_rounds FT.current_rounds -= transfered_rounds - var/amount_of_reagents = FT.reagents.reagent_list.len + var/amount_of_reagents = length(FT.reagents.reagent_list) var/amount_removed_per_reagent = transfered_rounds / amount_of_reagents for(var/datum/reagent/R in FT.reagents.reagent_list) R.volume -= amount_removed_per_reagent @@ -2989,7 +3098,7 @@ Defined in conflicts.dm of the #defines folder. /obj/item/attachable/attached_gun/flamer/proc/unleash_flame(atom/target, mob/living/user) set waitfor = 0 - var/list/turf/turfs = getline2(user,target) + var/list/turf/turfs = get_line(user,target) var/distance = 0 var/turf/prev_T var/stop_at_turf = FALSE @@ -3205,21 +3314,29 @@ Defined in conflicts.dm of the #defines folder. to_chat(user, SPAN_WARNING("\The [gun] doesn't have enough fuel to launch a projectile!")) return + if(istype(flamer_reagent, /datum/reagent/foaming_agent/stabilized)) + to_chat(user, SPAN_WARNING("This chemical will clog the nozzle!")) + return + + if(istype(gun.current_mag, /obj/item/ammo_magazine/flamer_tank/smoke)) // you can't fire smoke like a projectile! + to_chat(user, SPAN_WARNING("[src] can't be used with this fuel tank!")) + return + gun.last_fired = world.time gun.current_mag.reagents.remove_reagent(flamer_reagent.id, FLAME_REAGENT_USE_AMOUNT * fuel_per_projectile) var/obj/projectile/P = new(src, create_cause_data(initial(name), user, src)) var/datum/ammo/flamethrower/ammo_datum = new projectile_type - ammo_datum.flamer_reagent_type = flamer_reagent.type + ammo_datum.flamer_reagent_id = flamer_reagent.id P.generate_bullet(ammo_datum) P.icon_state = "naptha_ball" - P.color = flamer_reagent.color + P.color = flamer_reagent.burncolor P.hit_effect_color = flamer_reagent.burncolor P.fire_at(target, user, user, max_range, AMMO_SPEED_TIER_2, null) var/turf/user_turf = get_turf(user) playsound(user_turf, pick(fire_sounds), 50, TRUE) - to_chat(user, SPAN_WARNING("The gauge reads: [round(gun.current_mag.get_ammo_percent())]% fuel remaining!")) + to_chat(user, SPAN_WARNING("The gauge reads: [floor(gun.current_mag.get_ammo_percent())]% fuel remaining!")) /obj/item/attachable/verticalgrip name = "vertical grip" @@ -3327,6 +3444,10 @@ Defined in conflicts.dm of the #defines folder. var/bipod_deployed = FALSE /// If this should anchor the user while in use var/heavy_bipod = FALSE + // Are switching to full auto when deploying the bipod + var/full_auto_switch = FALSE + // Store our old firemode so we can switch to it when undeploying the bipod + var/old_firemode = null /obj/item/attachable/bipod/New() ..() @@ -3337,16 +3458,33 @@ Defined in conflicts.dm of the #defines folder. scatter_mod = SCATTER_AMOUNT_TIER_9 recoil_mod = RECOIL_AMOUNT_TIER_5 -/obj/item/attachable/bipod/Attach(obj/item/weapon/gun/G) +/obj/item/attachable/bipod/Attach(obj/item/weapon/gun/gun, mob/user) ..() - RegisterSignal(G, COMSIG_ITEM_DROPPED, PROC_REF(handle_drop)) + if((GUN_FIREMODE_AUTOMATIC in gun.gun_firemode_list) || (gun.flags_gun_features & GUN_SUPPORT_PLATFORM)) + var/given_action = FALSE + if(user && (gun == user.l_hand || gun == user.r_hand)) + give_action(user, /datum/action/item_action/bipod/toggle_full_auto_switch, src, gun) + given_action = TRUE + if(!given_action) + new /datum/action/item_action/bipod/toggle_full_auto_switch(src, gun) + + RegisterSignal(gun, COMSIG_ITEM_DROPPED, PROC_REF(handle_drop)) /obj/item/attachable/bipod/Detach(mob/user, obj/item/weapon/gun/detaching_gub, drop_attachment = TRUE) UnregisterSignal(detaching_gub, COMSIG_ITEM_DROPPED) + //clear out anything related to full auto switching + full_auto_switch = FALSE + old_firemode = null + for(var/item_action in detaching_gub.actions) + var/datum/action/item_action/bipod/toggle_full_auto_switch/target_action = item_action + if(target_action.target == src) + qdel(item_action) + break + if(bipod_deployed) - undeploy_bipod(detaching_gub) + undeploy_bipod(detaching_gub, user) ..() /obj/item/attachable/bipod/update_icon() @@ -3360,60 +3498,62 @@ Defined in conflicts.dm of the #defines folder. if(istype(loc, /obj/item/weapon/gun)) var/obj/item/weapon/gun/gun = loc gun.update_attachable(slot) - for(var/datum/action/A as anything in gun.actions) - A.update_button_icon() + for(var/datum/action/item_action as anything in gun.actions) + if(!istype(item_action, /datum/action/item_action/bipod/toggle_full_auto_switch)) + item_action.update_button_icon() -/obj/item/attachable/bipod/proc/handle_drop(obj/item/weapon/gun/G, mob/living/carbon/human/user) +/obj/item/attachable/bipod/proc/handle_drop(obj/item/weapon/gun/gun, mob/living/carbon/human/user) SIGNAL_HANDLER UnregisterSignal(user, COMSIG_MOB_MOVE_OR_LOOK) if(bipod_deployed) - undeploy_bipod(G) + undeploy_bipod(gun, user) user.apply_effect(1, SUPERSLOW) user.apply_effect(2, SLOW) -/obj/item/attachable/bipod/proc/undeploy_bipod(obj/item/weapon/gun/G) - REMOVE_TRAIT(G, TRAIT_GUN_BIPODDED, "attached_bipod") +/obj/item/attachable/bipod/proc/undeploy_bipod(obj/item/weapon/gun/gun, mob/user) + REMOVE_TRAIT(gun, TRAIT_GUN_BIPODDED, "attached_bipod") bipod_deployed = FALSE accuracy_mod = -HIT_ACCURACY_MULT_TIER_5 scatter_mod = SCATTER_AMOUNT_TIER_9 recoil_mod = RECOIL_AMOUNT_TIER_5 burst_scatter_mod = 0 delay_mod = FIRE_DELAY_TIER_12 - G.recalculate_attachment_bonuses() - G.stop_fire() - var/mob/living/user - if(isliving(G.loc)) - user = G.loc - SEND_SIGNAL(user, COMSIG_MOB_UNDEPLOYED_BIPOD) - UnregisterSignal(user, COMSIG_MOB_MOVE_OR_LOOK) + //if we are no longer on full auto, don't bother switching back to the old firemode + if(full_auto_switch && gun.gun_firemode == GUN_FIREMODE_AUTOMATIC && gun.gun_firemode != old_firemode) + gun.do_toggle_firemode(user, null, old_firemode) + + gun.recalculate_attachment_bonuses() + gun.stop_fire() + SEND_SIGNAL(user, COMSIG_MOB_UNDEPLOYED_BIPOD) + UnregisterSignal(user, COMSIG_MOB_MOVE_OR_LOOK) - if(G.flags_gun_features & GUN_SUPPORT_PLATFORM) - G.remove_firemode(GUN_FIREMODE_AUTOMATIC) + if(gun.flags_gun_features & GUN_SUPPORT_PLATFORM) + gun.remove_firemode(GUN_FIREMODE_AUTOMATIC) if(heavy_bipod) user.anchored = FALSE - if(!QDELETED(G)) + if(!QDELETED(gun)) playsound(user,'sound/items/m56dauto_rotate.ogg', 55, 1) update_icon() -/obj/item/attachable/bipod/activate_attachment(obj/item/weapon/gun/G,mob/living/user, turn_off) +/obj/item/attachable/bipod/activate_attachment(obj/item/weapon/gun/gun, mob/living/user, turn_off) if(turn_off) if(bipod_deployed) - undeploy_bipod(G) + undeploy_bipod(gun, user) else - var/obj/support = check_bipod_support(G, user) + var/obj/support = check_bipod_support(gun, user) if(!support&&!bipod_deployed) to_chat(user, SPAN_NOTICE("You start deploying [src] on the ground.")) - if(!do_after(user, 15, INTERRUPT_ALL, BUSY_ICON_HOSTILE, G,INTERRUPT_DIFF_LOC)) + if(!do_after(user, 15, INTERRUPT_ALL, BUSY_ICON_HOSTILE, gun, INTERRUPT_DIFF_LOC)) return FALSE bipod_deployed = !bipod_deployed if(user) if(bipod_deployed) - ADD_TRAIT(G, TRAIT_GUN_BIPODDED, "attached_bipod") + ADD_TRAIT(gun, TRAIT_GUN_BIPODDED, "attached_bipod") to_chat(user, SPAN_NOTICE("You deploy [src] [support ? "on [support]" : "on the ground"].")) SEND_SIGNAL(user, COMSIG_MOB_DEPLOYED_BIPOD) playsound(user,'sound/items/m56dauto_rotate.ogg', 55, 1) @@ -3421,25 +3561,29 @@ Defined in conflicts.dm of the #defines folder. scatter_mod = -SCATTER_AMOUNT_TIER_10 recoil_mod = -RECOIL_AMOUNT_TIER_4 burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 - if(istype(G,/obj/item/weapon/gun/rifle/sniper/M42A)) + if(istype(gun, /obj/item/weapon/gun/rifle/sniper/M42A)) delay_mod = -FIRE_DELAY_TIER_7 else delay_mod = -FIRE_DELAY_TIER_12 - G.recalculate_attachment_bonuses() - G.stop_fire() + gun.recalculate_attachment_bonuses() + gun.stop_fire() initial_mob_dir = user.dir RegisterSignal(user, COMSIG_MOB_MOVE_OR_LOOK, PROC_REF(handle_mob_move_or_look)) - if(G.flags_gun_features & GUN_SUPPORT_PLATFORM) - G.add_firemode(GUN_FIREMODE_AUTOMATIC) + if(gun.flags_gun_features & GUN_SUPPORT_PLATFORM) + gun.add_firemode(GUN_FIREMODE_AUTOMATIC) if(heavy_bipod) user.anchored = TRUE + old_firemode = gun.gun_firemode + if(full_auto_switch && gun.gun_firemode != GUN_FIREMODE_AUTOMATIC) + gun.do_toggle_firemode(user, null, GUN_FIREMODE_AUTOMATIC) + else to_chat(user, SPAN_NOTICE("You retract [src].")) - undeploy_bipod(G) + undeploy_bipod(gun, user) update_icon() @@ -3456,10 +3600,10 @@ Defined in conflicts.dm of the #defines folder. //when user fires the gun, we check if they have something to support the gun's bipod. -/obj/item/attachable/proc/check_bipod_support(obj/item/weapon/gun/G, mob/living/user) +/obj/item/attachable/proc/check_bipod_support(obj/item/weapon/gun/gun, mob/living/user) return 0 -/obj/item/attachable/bipod/check_bipod_support(obj/item/weapon/gun/G, mob/living/user) +/obj/item/attachable/bipod/check_bipod_support(obj/item/weapon/gun/gun, mob/living/user) var/turf/T = get_turf(user) for(var/obj/O in T) if(O.throwpass && O.density && O.dir == user.dir && O.flags_atom & ON_BORDER) @@ -3471,6 +3615,32 @@ Defined in conflicts.dm of the #defines folder. return O2 return 0 +//item actions for handling deployment to full auto. +/datum/action/item_action/bipod/toggle_full_auto_switch/New(Target, obj/item/holder) + . = ..() + name = "Toggle Full Auto Switch" + action_icon_state = "full_auto_switch" + button.name = name + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) + +/datum/action/item_action/bipod/toggle_full_auto_switch/action_activate() + . = ..() + var/obj/item/weapon/gun/holder_gun = holder_item + var/obj/item/attachable/bipod/attached_bipod = holder_gun.attachments["under"] + + attached_bipod.full_auto_switch = !attached_bipod.full_auto_switch + to_chat(owner, SPAN_NOTICE("[icon2html(holder_gun, owner)] You will [attached_bipod.full_auto_switch? "start" : "stop"] switching to full auto when deploying the bipod.")) + playsound(owner, 'sound/weapons/handling/gun_burst_toggle.ogg', 15, 1) + + if(attached_bipod.full_auto_switch) + button.icon_state = "template_on" + else + button.icon_state = "template" + + button.overlays.Cut() + button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) + /obj/item/attachable/bipod/m60 name = "bipod" @@ -3487,6 +3657,23 @@ Defined in conflicts.dm of the #defines folder. attach_icon = "vulture_bipod" heavy_bipod = TRUE +/obj/item/attachable/bipod/vulture/Initialize(mapload, ...) + . = ..() + select_gamemode_skin(type) + +/obj/item/attachable/bipod/vulture/select_gamemode_skin(expected_type, list/override_icon_state, list/override_protection) + . = ..() + var/new_attach_icon + switch(SSmapping.configs[GROUND_MAP].camouflage_type) + if("snow") + attach_icon = new_attach_icon ? new_attach_icon : "s_" + attach_icon + if("desert") + attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon + if("classic") + attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon + /obj/item/attachable/burstfire_assembly name = "burst fire assembly" desc = "A small angled piece of fine machinery that increases the burst count on some weapons, and grants the ability to others. \nIncreases weapon scatter." @@ -3515,4 +3702,3 @@ Defined in conflicts.dm of the #defines folder. accuracy_mod = HIT_ACCURACY_MULT_TIER_5 accuracy_unwielded_mod = HIT_ACCURACY_MULT_TIER_5 damage_mod -= BULLET_DAMAGE_MULT_TIER_4 - diff --git a/code/modules/projectiles/gun_helpers.dm b/code/modules/projectiles/gun_helpers.dm index 7f339851cf..46f7f68b6f 100644 --- a/code/modules/projectiles/gun_helpers.dm +++ b/code/modules/projectiles/gun_helpers.dm @@ -390,7 +390,7 @@ DEFINES in setup.dm, referenced here. user.visible_message(SPAN_NOTICE("[user] attaches [attachment] to [src]."), SPAN_NOTICE("You attach [attachment] to [src]."), null, 4) user.temp_drop_inv_item(attachment) - attachment.Attach(src) + attachment.Attach(src, user) update_attachable(attachment.slot) playsound(user, 'sound/handling/attachment_add.ogg', 15, 1, 4) return TRUE @@ -460,9 +460,9 @@ DEFINES in setup.dm, referenced here. else attack_verb = list("slashed", "stabbed", "speared", "torn", "punctured", "pierced", "gored") //Greater than 35 /obj/item/weapon/gun/proc/get_active_firearm(mob/user, restrictive = TRUE) - if(!ishuman(usr)) - return if(user.is_mob_incapacitated() || !isturf(usr.loc)) + return + if(!ishuman(user) && !HAS_TRAIT(user, TRAIT_OPPOSABLE_THUMBS)) to_chat(user, SPAN_WARNING("Not right now.")) return @@ -517,30 +517,52 @@ DEFINES in setup.dm, referenced here. return FALSE if(istype(slot) && (slot.storage_flags & STORAGE_ALLOW_QUICKDRAW)) - for(var/obj/cycled_weapon in slot.return_inv()) - if(isweapon(cycled_weapon)) + for(var/obj/cycled_object in slot.return_inv()) + if(cycled_object.flags_atom & QUICK_DRAWABLE) return slot - if(isweapon(slot)) //then check for weapons + if(slot.flags_atom & QUICK_DRAWABLE) return slot return FALSE -//For the holster hotkey -/mob/living/silicon/robot/verb/holster_verb(unholster_number_offset = 1 as num) - set name = "holster" - set hidden = TRUE - uneq_active() - +///For the holster hotkey /mob/living/carbon/human/verb/holster_verb(unholster_number_offset = 1 as num) set name = "holster" set hidden = TRUE - if(usr.is_mob_incapacitated(TRUE) || usr.is_mob_restrained()) + if(usr.is_mob_incapacitated(TRUE) || usr.is_mob_restrained() || IsKnockDown() || HAS_TRAIT_FROM(src, TRAIT_UNDENSE, LYING_DOWN_TRAIT)) to_chat(src, SPAN_WARNING("You can't draw a weapon in your current state.")) return var/obj/item/active_hand = get_active_hand() if(active_hand) + if(active_hand.preferred_storage) + for(var/storage in active_hand.preferred_storage) + var/list/items_in_slot + if(islist(get_item_by_slot(active_hand.preferred_storage[storage]))) + items_in_slot = get_item_by_slot(active_hand.preferred_storage[storage]) + else + items_in_slot = list(get_item_by_slot(active_hand.preferred_storage[storage])) + + for(var/item_in_slot in items_in_slot) + if(istype(item_in_slot, storage)) + var/slot = active_hand.preferred_storage[storage] + switch(slot) + if(WEAR_ACCESSORY) + slot = WEAR_IN_ACCESSORY + if(WEAR_WAIST) + slot = WEAR_IN_BELT + if(WEAR_BACK) + slot = WEAR_IN_BACK + if(WEAR_J_STORE) + slot = WEAR_IN_J_STORE + if(WEAR_HEAD) + slot = WEAR_IN_HELMET + if(WEAR_FEET) + slot = WEAR_IN_SHOES + + if(equip_to_slot_if_possible(active_hand, slot, ignore_delay = TRUE, del_on_fail = FALSE, disable_warning = TRUE, redraw_mob = TRUE)) + return TRUE if(w_uniform) for(var/obj/accessory in w_uniform.accessories) var/obj/item/storage/internal/accessory/holster/holster = accessory @@ -770,7 +792,6 @@ DEFINES in setup.dm, referenced here. unique_action(usr) - /obj/item/weapon/gun/verb/toggle_gun_safety() set category = "Weapons" set name = "Toggle Gun Safety" @@ -787,7 +808,7 @@ DEFINES in setup.dm, referenced here. if(flags_gun_features & GUN_BURST_FIRING) return - if(!ishuman(usr)) + if(!ishuman(usr) && !HAS_TRAIT(usr, TRAIT_OPPOSABLE_THUMBS)) return if(usr.is_mob_incapacitated() || !usr.loc || !isturf(usr.loc)) @@ -821,11 +842,11 @@ DEFINES in setup.dm, referenced here. if(attachment && (attachment.flags_attach_features & ATTACH_ACTIVATION) ) usable_attachments += attachment - if(!usable_attachments.len) //No usable attachments. + if(!length(usable_attachments)) //No usable attachments. to_chat(usr, SPAN_WARNING("[src] does not have any usable attachments!")) return - if(usable_attachments.len == 1) //Activates the only attachment if there is only one. + if(length(usable_attachments) == 1) //Activates the only attachment if there is only one. chosen_attachment = usable_attachments[1] else chosen_attachment = tgui_input_list(usr, "Which attachment to activate?", "Activate attachment", usable_attachments) @@ -938,6 +959,15 @@ DEFINES in setup.dm, referenced here. return null return params2turf(modifiers["screen-loc"], get_turf(user), user.client) +/// check if the gun contains any light source that is currently turned on. +/obj/item/weapon/gun/proc/light_sources() + var/obj/item/attachable/flashlight/torch + for(var/slot in attachments) + torch = attachments[slot] + if(istype(torch) && torch.light_on == TRUE) + return TRUE // an attachment has light enabled. + return FALSE + /// If this gun has a relevant flashlight attachable attached, (de)activate it /obj/item/weapon/gun/proc/force_light(on) var/obj/item/attachable/flashlight/torch diff --git a/code/modules/projectiles/guns/boltaction.dm b/code/modules/projectiles/guns/boltaction.dm index c97d0f82f9..a165a112f3 100644 --- a/code/modules/projectiles/guns/boltaction.dm +++ b/code/modules/projectiles/guns/boltaction.dm @@ -42,7 +42,7 @@ var/has_openbolt_icon = TRUE /obj/item/weapon/gun/boltaction/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 17,"rail_x" = 5, "rail_y" = 18, "under_x" = 25, "under_y" = 14, "stock_x" = 18, "stock_y" = 10) + attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 17,"rail_x" = 5, "rail_y" = 18, "under_x" = 25, "under_y" = 14, "stock_x" = 20, "stock_y" = 9) /obj/item/weapon/gun/boltaction/Initialize(mapload, spawn_empty) . = ..() @@ -129,7 +129,7 @@ The 'pitter-patter' of 'rain' that the crews heard was in fact multiple rifles failing to penetrate through the vehicle's external armor. Once a number of the anti-materiel rifles were examined, it was deemed a high priority to produce a Corps version. In the process, the rifles were designed for a higher calibre then that of the rebel versions, so the M707 would be capable of penetrating the light vehicle armor of their UPP peers in the event of another Dog War or Tientsin."} - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' // overriden with camos + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' // overridden with camos icon_state = "vulture" item_state = "vulture" cocked_sound = 'sound/weapons/gun_cocked2.ogg' @@ -218,7 +218,7 @@ return . for(var/mob/current_mob as anything in get_mobs_in_z_level_range(get_turf(user), fire_message_range) - user) - var/relative_dir = get_dir(current_mob, user) + var/relative_dir = Get_Compass_Dir(current_mob, user) var/final_dir = dir2text(relative_dir) to_chat(current_mob, SPAN_HIGHDANGER("You hear a massive boom coming from [final_dir ? "the [final_dir]" : "nearby"]!")) if(current_mob.client) @@ -283,3 +283,9 @@ /obj/item/weapon/gun/boltaction/vulture/skillless bypass_trait = TRUE + +/obj/item/weapon/gun/boltaction/vulture/holo_target + current_mag = /obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target + +/obj/item/weapon/gun/boltaction/vulture/holo_target/skillless + bypass_trait = TRUE diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index ee122d8f8e..6826d8af92 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -67,7 +67,7 @@ /obj/item/weapon/gun/energy/emp_act(severity) . = ..() - cell.use(round(cell.maxcharge / severity)) + cell.use(floor(cell.maxcharge / severity)) update_icon() /obj/item/weapon/gun/energy/load_into_chamber() @@ -117,6 +117,7 @@ icon_state = "rxfm5_eva" item_state = "eva" muzzle_flash = "muzzle_laser" + muzzle_flash_color = COLOR_LASER_RED fire_sound = 'sound/weapons/Laser4.ogg' w_class = SIZE_MEDIUM gun_category = GUN_CATEGORY_HANDGUN @@ -174,6 +175,7 @@ icon_state = "laz_uzi" item_state = "laz_uzi" muzzle_flash = "muzzle_laser" + muzzle_flash_color = COLOR_LASER_RED gun_category = GUN_CATEGORY_SMG flags_equip_slot = SLOT_WAIST charge_cost = 200 @@ -214,6 +216,7 @@ charge_icon = "+taser" black_market_value = 20 actions_types = list(/datum/action/item_action/taser/change_mode) + flags_gun_features = GUN_UNUSUAL_DESIGN|GUN_CAN_POINTBLANK|GUN_CANT_EXECUTE /// Determines if the taser will hit any target, or if it checks for wanted status. Default is wanted only. var/mode = TASER_MODE_P var/skilllock = SKILL_POLICE_SKILLED @@ -268,6 +271,7 @@ /datum/action/item_action/taser/action_activate() + . = ..() var/obj/item/weapon/gun/energy/taser/taser = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/flamer/flamer.dm b/code/modules/projectiles/guns/flamer/flamer.dm index 634807805a..73ed0a37b5 100644 --- a/code/modules/projectiles/guns/flamer/flamer.dm +++ b/code/modules/projectiles/guns/flamer/flamer.dm @@ -70,7 +70,7 @@ /obj/item/weapon/gun/flamer/get_examine_text(mob/user) . = ..() if(current_mag) - . += "The fuel gauge shows the current tank is [round(current_mag.get_ammo_percent())]% full!" + . += "The fuel gauge shows the current tank is [floor(current_mag.get_ammo_percent())]% full!" else . += "There's no tank in [src]!" @@ -142,7 +142,13 @@ click_empty(user) else user.track_shot(initial(name)) - unleash_flame(target, user) + if(istype(current_mag, /obj/item/ammo_magazine/flamer_tank/smoke)) + unleash_smoke(target, user) + else + if(current_mag.reagents.has_reagent("stablefoam")) + unleash_foam(target, user) + else + unleash_flame(target, user) return AUTOFIRE_CONTINUE return NONE @@ -203,7 +209,7 @@ /obj/item/weapon/gun/flamer/proc/unleash_flame(atom/target, mob/living/user) set waitfor = 0 last_fired = world.time - if(!current_mag || !current_mag.reagents || !current_mag.reagents.reagent_list.len) + if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list)) return var/datum/reagent/R = current_mag.reagents.reagent_list[1] @@ -211,16 +217,16 @@ var/flameshape = R.flameshape var/fire_type = R.fire_type - R.intensityfire = Clamp(R.intensityfire, current_mag.reagents.min_fire_int, current_mag.reagents.max_fire_int) - R.durationfire = Clamp(R.durationfire, current_mag.reagents.min_fire_dur, current_mag.reagents.max_fire_dur) - R.rangefire = Clamp(R.rangefire, current_mag.reagents.min_fire_rad, current_mag.reagents.max_fire_rad) + R.intensityfire = clamp(R.intensityfire, current_mag.reagents.min_fire_int, current_mag.reagents.max_fire_int) + R.durationfire = clamp(R.durationfire, current_mag.reagents.min_fire_dur, current_mag.reagents.max_fire_dur) + R.rangefire = clamp(R.rangefire, current_mag.reagents.min_fire_rad, current_mag.reagents.max_fire_rad) var/max_range = R.rangefire if (max_range < fuel_pressure) //Used for custom tanks, allows for higher ranges - max_range = Clamp(fuel_pressure, 0, current_mag.reagents.max_fire_rad) + max_range = clamp(fuel_pressure, 0, current_mag.reagents.max_fire_rad) if(R.rangefire == -1) max_range = current_mag.reagents.max_fire_rad - var/turf/temp[] = getline2(get_turf(user), get_turf(target)) + var/turf/temp[] = get_line(get_turf(user), get_turf(target)) var/turf/to_fire = temp[2] @@ -232,9 +238,122 @@ new /obj/flamer_fire(to_fire, create_cause_data(initial(name), user), R, max_range, current_mag.reagents, flameshape, target, CALLBACK(src, PROC_REF(show_percentage), user), fuel_pressure, fire_type) +/obj/item/weapon/gun/flamer/proc/unleash_smoke(atom/target, mob/living/user) + last_fired = world.time + if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list)) + return + + var/source_turf = get_turf(user) + var/smoke_range = 5 // the max range the smoke will travel + var/distance = 0 // the distance traveled + var/use_multiplier = 3 // if you want to increase the ammount of units drained from the tank + var/units_in_smoke = 35 // the smoke overlaps a little so this much is probably already good + + var/datum/reagent/chemical = current_mag.reagents.reagent_list[1] + var/datum/reagents/to_disperse = new() // this is the chemholder that will be used by the chemsmoke + to_disperse.add_reagent(chemical.id, units_in_smoke) + to_disperse.my_atom = src + + var/turf/turfs[] = get_line(user, target, FALSE) + var/turf/first_turf = turfs[1] + var/turf/second_turf = turfs[2] + var/ammount_required = (min(length(turfs), smoke_range) * use_multiplier) // the ammount of units that this click requires + for(var/turf/turf in turfs) + + if(chemical.volume < ammount_required) + smoke_range = floor(chemical.volume / use_multiplier) + + if(distance >= smoke_range) + break + + if(turf.density) + break + else + var/obj/effect/particle_effect/smoke/chem/checker = new() + var/atom/blocked = LinkBlocked(checker, source_turf, turf) + if(blocked) + break + + playsound(turf, 'sound/effects/smoke.ogg', 25, 1) + if(turf != first_turf && turf != second_turf) // we skip the first tile and make it small on the second so the smoke doesn't touch the user + var/datum/effect_system/smoke_spread/chem/smoke = new() + smoke.set_up(to_disperse, 5, loca = turf) + smoke.start() + if(turf == second_turf) + var/datum/effect_system/smoke_spread/chem/smoke = new() + smoke.set_up(to_disperse, 1, loca = turf) + smoke.start() + sleep(4) + + distance++ + + var/ammount_used = distance * use_multiplier // the actual ammount of units that we used + + chemical.volume = max(chemical.volume - ammount_used, 0) + + current_mag.reagents.total_volume = chemical.volume // this is needed for show_percentage to work + + if(chemical.volume < use_multiplier) // there aren't enough units left for a single tile of smoke, empty the tank + current_mag.reagents.clear_reagents() + + show_percentage(user) + +/obj/item/weapon/gun/flamer/proc/unleash_foam(atom/target, mob/living/user) + last_fired = world.time + if(!current_mag || !current_mag.reagents || !length(current_mag.reagents.reagent_list)) + return + + var/source_turf = get_turf(user) + var/foam_range = 6 // the max range the foam will travel + var/distance = 0 // the distance traveled + var/use_multiplier = 3 // if you want to increase the ammount of foam drained from the tank + var/datum/reagent/chemical = current_mag.reagents.reagent_list[1] + + var/turf/turfs[] = get_line(user, target, FALSE) + var/turf/first_turf = turfs[1] + var/ammount_required = (min(length(turfs), foam_range) * use_multiplier) // the ammount of units that this click requires + for(var/turf/turf in turfs) + + if(chemical.volume < ammount_required) + foam_range = floor(chemical.volume / use_multiplier) + + if(distance >= foam_range) + break + + if(turf.density) + break + else + var/obj/effect/particle_effect/foam/checker = new() + var/atom/blocked = LinkBlocked(checker, source_turf, turf) + if(blocked) + break + + if(turf == first_turf) // this is so the first foam tile doesn't expand and touch the user + var/datum/effect_system/foam_spread/foam = new() + foam.set_up(0.5, turf, metal_foam = FOAM_METAL_TYPE_IRON) + foam.start() + else + var/datum/effect_system/foam_spread/foam = new() + foam.set_up(1, turf, metal_foam = FOAM_METAL_TYPE_IRON) + foam.start() + sleep(2) + + distance++ + + var/ammount_used = distance * use_multiplier // the actual ammount of units that we used + + chemical.volume = max(chemical.volume - ammount_used, 0) + + current_mag.reagents.total_volume = chemical.volume // this is needed for show_percentage to work + + if(chemical.volume < use_multiplier) // there aren't enough units left for a single tile of foam, empty the tank + current_mag.reagents.clear_reagents() + + show_percentage(user) + /obj/item/weapon/gun/flamer/proc/show_percentage(mob/living/user) if(current_mag) - to_chat(user, SPAN_WARNING("The gauge reads: [round(current_mag.get_ammo_percent())]% fuel remains!")) + to_chat(user, SPAN_WARNING("The gauge reads: [floor(current_mag.get_ammo_percent())]% fuel remains!")) /obj/item/weapon/gun/flamer/underextinguisher starting_attachment_types = list(/obj/item/attachable/attached_gun/extinguisher) @@ -384,29 +503,6 @@ . = ..() set_fire_delay(FIRE_DELAY_TIER_7) -GLOBAL_LIST_EMPTY(flamer_particles) -/particles/flamer_fire - icon = 'icons/effects/particles/fire.dmi' - icon_state = "bonfire" - width = 100 - height = 100 - count = 1000 - spawning = 8 - lifespan = 0.7 SECONDS - fade = 1 SECONDS - grow = -0.01 - velocity = list(0, 0) - position = generator("box", list(-16, -16), list(16, 16), NORMAL_RAND) - drift = generator("vector", list(0, -0.2), list(0, 0.2)) - gravity = list(0, 0.95) - scale = generator("vector", list(0.3, 0.3), list(1,1), NORMAL_RAND) - rotation = 30 - spin = generator("num", -20, 20) - -/particles/flamer_fire/New(set_color) - ..() - color = set_color - /obj/flamer_fire name = "fire" desc = "Ouch!" @@ -463,10 +559,6 @@ GLOBAL_LIST_EMPTY(flamer_particles) set_light(l_color = R.burncolor) - if(!GLOB.flamer_particles[R.burncolor]) - GLOB.flamer_particles[R.burncolor] = new /particles/flamer_fire(R.burncolor) - particles = GLOB.flamer_particles[R.burncolor] - tied_reagent = new R.type() // Can't get deleted this way tied_reagent.make_alike(R) @@ -514,15 +606,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) INVOKE_ASYNC(FS, TYPE_PROC_REF(/datum/flameshape, handle_fire_spread), src, fire_spread_amount, burn_dam, fuel_pressure) //Apply fire effects onto everyone in the fire - // Melt a single layer of snow - if (istype(loc, /turf/open/snow)) - var/turf/open/snow/S = loc - - if (S.bleed_layer > 0) - S.bleed_layer-- - S.update_icon(1, 0) - - //scorch mah grass HNNGGG + //scorch mah grass HNNGGG and muh SNOW hhhhGGG if (istype(loc, /turf/open)) var/turf/open/scorch_turf_target = loc if(scorch_turf_target.scorchable) @@ -572,7 +656,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) if(!(sig_result & COMPONENT_NO_IGNITE)) switch(fire_variant) if(FIRE_VARIANT_TYPE_B) //Armor Shredding Greenfire, super easy to pat out. 50 duration -> 10 stacks (1 pat/resist) - ignited_morb.TryIgniteMob(round(tied_reagent.durationfire / 5), tied_reagent) + ignited_morb.TryIgniteMob(floor(tied_reagent.durationfire / 5), tied_reagent) else ignited_morb.TryIgniteMob(tied_reagent.durationfire, tied_reagent) @@ -630,7 +714,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) return var/sig_result = SEND_SIGNAL(M, COMSIG_LIVING_FLAMER_CROSSED, tied_reagent) - var/burn_damage = round(burnlevel * 0.5) + var/burn_damage = floor(burnlevel * 0.5) switch(fire_variant) if(FIRE_VARIANT_TYPE_B) //Armor Shredding Greenfire, 2x tile damage (Equiavlent to UT) burn_damage = burnlevel @@ -649,7 +733,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) if(!(sig_result & COMPONENT_NO_IGNITE) && burn_damage) switch(fire_variant) if(FIRE_VARIANT_TYPE_B) //Armor Shredding Greenfire, super easy to pat out. 50 duration -> 10 stacks (1 pat/resist) - M.TryIgniteMob(round(tied_reagent.durationfire / 5), tied_reagent) + M.TryIgniteMob(floor(tied_reagent.durationfire / 5), tied_reagent) else M.TryIgniteMob(tied_reagent.durationfire, tied_reagent) @@ -657,7 +741,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) burn_damage = 0 if(!burn_damage) - to_chat(M, SPAN_DANGER("You step over the flames.")) + to_chat(M, SPAN_DANGER("[isxeno(M) ? "We" : "You"] step over the flames.")) return M.last_damage_data = weapon_cause_data @@ -668,7 +752,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) if(FIRE_VARIANT_TYPE_B) if(isxeno(M)) var/mob/living/carbon/xenomorph/X = M - X.armor_deflection?(variant_burn_msg=" You feel the flames weakening your exoskeleton!"):(variant_burn_msg=" You feel the flaming chemicals eating into your body!") + X.armor_deflection?(variant_burn_msg=" We feel the flames weakening our exoskeleton!"):(variant_burn_msg=" You feel the flaming chemicals eating into your body!") to_chat(M, SPAN_DANGER("You are burned![variant_burn_msg?"[variant_burn_msg]":""]")) M.updatehealth() @@ -741,7 +825,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) if(target.density) return - for(var/spread_direction in alldirs) + for(var/spread_direction in GLOB.alldirs) var/spread_power = remaining_distance @@ -787,7 +871,7 @@ GLOBAL_LIST_EMPTY(flamer_particles) fire_reag.burncolor = f_color new/obj/flamer_fire(target, cause_data, fire_reag) - for(var/direction in alldirs) + for(var/direction in GLOB.alldirs) var/spread_power = range switch(direction) if(NORTH,SOUTH,EAST,WEST) diff --git a/code/modules/projectiles/guns/flamer/flameshape.dm b/code/modules/projectiles/guns/flamer/flameshape.dm index f5a0699067..0189c00599 100644 --- a/code/modules/projectiles/guns/flamer/flameshape.dm +++ b/code/modules/projectiles/guns/flamer/flameshape.dm @@ -28,7 +28,7 @@ /datum/flameshape/default/handle_fire_spread(obj/flamer_fire/F, fire_spread_amount, burn_dam, fuel_pressure = 1) var/turf/T var/turf/source_turf = get_turf(F.loc) - for(var/dirn in cardinal) + for(var/dirn in GLOB.cardinals) T = get_step(source_turf, dirn) if(istype(T, /turf/open/space)) continue @@ -64,17 +64,17 @@ id = FLAMESHAPE_STAR /datum/flameshape/star/proc/dirs_to_use() - return alldirs + return GLOB.alldirs /datum/flameshape/star/handle_fire_spread(obj/flamer_fire/F, fire_spread_amount, burn_dam, fuel_pressure = 1) - fire_spread_amount = Floor(fire_spread_amount * 1.5) // branch 'length' + fire_spread_amount = floor(fire_spread_amount * 1.5) // branch 'length' var/turf/source_turf = get_turf(F.loc) var/list/dirs = dirs_to_use() for(var/dirn in dirs) var/endturf = get_ranged_target_turf(F, dirn, fire_spread_amount) - var/list/turfs = getline2(source_turf, endturf) + var/list/turfs = get_line(source_turf, endturf) var/turf/prev_T = source_turf for(var/turf/T in turfs) @@ -102,9 +102,9 @@ /datum/flameshape/star/minor/dirs_to_use() if(prob(50)) - return cardinal + return GLOB.cardinals else - return diagonals + return GLOB.diagonals /datum/flameshape/line name = "Line" @@ -113,18 +113,12 @@ /datum/flameshape/line/handle_fire_spread(obj/flamer_fire/F, fire_spread_amount, burn_dam, fuel_pressure = 1) var/turf/source_turf = get_turf(F.loc) - var/turf/prev_T = F.loc - - var/mob/user - if(F.weapon_cause_data) - user = F.weapon_cause_data.resolve_mob() - if(user) - prev_T = user.loc + var/turf/prev_T var/distance = 1 var/stop_at_turf = FALSE - var/list/turfs = getline2(source_turf, F.target_clicked) + var/list/turfs = get_line(source_turf, F.target_clicked) for(var/turf/T in turfs) if(istype(T, /turf/open/space)) break @@ -135,7 +129,7 @@ if(T.density) T.flamer_fire_act(burn_dam, F.weapon_cause_data) stop_at_turf = TRUE - else + else if(prev_T) var/obj/flamer_fire/temp = new() var/atom/A = LinkBlocked(temp, prev_T, T) @@ -145,7 +139,7 @@ break stop_at_turf = TRUE - if(T == F.loc || (user && T == user.loc)) + if(T == F.loc) if(stop_at_turf) break prev_T = T @@ -168,16 +162,11 @@ /datum/flameshape/triangle/handle_fire_spread(obj/flamer_fire/F, fire_spread_amount, burn_dam, fuel_pressure = 1) set waitfor = 0 - var/mob/user - - if(F.weapon_cause_data) - user = F.weapon_cause_data.resolve_mob() - - var/unleash_dir = user.dir - var/list/turf/turfs = getline2(F, F.target_clicked) + var/unleash_dir = get_cardinal_dir(F, F.target_clicked) + var/list/turf/turfs = get_line(F, F.target_clicked) var/distance = 1 var/hit_dense_atom_mid = FALSE - var/turf/prev_T = user.loc + var/turf/prev_T for(var/turf/T in turfs) if(distance > fire_spread_amount) diff --git a/code/modules/projectiles/guns/lever_action.dm b/code/modules/projectiles/guns/lever_action.dm index d93796fbb1..179ce8d787 100644 --- a/code/modules/projectiles/guns/lever_action.dm +++ b/code/modules/projectiles/guns/lever_action.dm @@ -353,7 +353,7 @@ their unique feature is that a direct hit will buff your damage and firerate name = "\improper XM88 heavy rifle" desc = "An experimental man-portable anti-material rifle chambered in .458 SOCOM. It must be manually chambered for every shot.\nIt has a special property - when you obtain multiple direct hits in a row, its armor penetration and damage will increase." desc_lore = "Originally developed by ARMAT Battlefield Systems for the government of the state of Greater Brazil for use in the Favela Wars (2161 - Ongoing) against mechanized infantry. The platform features an onboard computerized targeting system, sensor array, and an electronic autoloader; these features work in tandem to reduce and render inert armor on the users target with successive hits. The Almayer was issued a small amount of XM88s while preparing for Operation Swamp Hopper with the USS Nan-Shan." - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' // overriden with camos anyways + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' // overridden with camos anyways icon_state = "boomslang" item_state = "boomslang" fire_sound = 'sound/weapons/gun_boomslang_fire.ogg' @@ -373,11 +373,11 @@ their unique feature is that a direct hit will buff your damage and firerate hit_buff_reset_cooldown = 2 SECONDS //how much time after a direct hit until streaks reset var/floating_penetration = FLOATING_PENETRATION_TIER_0 //holder var var/floating_penetration_upper_limit = FLOATING_PENETRATION_TIER_4 + var/direct_hit_sound = 'sound/weapons/gun_xm88_directhit_low.ogg' attachable_allowed = list( /obj/item/attachable/bayonet/upp, // Barrel /obj/item/attachable/bayonet, /obj/item/attachable/extended_barrel, - /obj/item/attachable/heavy_barrel, /obj/item/attachable/suppressor, /obj/item/attachable/compensator, /obj/item/attachable/reddot, // Rail @@ -392,9 +392,9 @@ their unique feature is that a direct hit will buff your damage and firerate /obj/item/weapon/gun/lever_action/xm88/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_2) + set_fire_delay(FIRE_DELAY_TIER_2 + FIRE_DELAY_TIER_11) lever_delay = FIRE_DELAY_TIER_3 - accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_5 + accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_2 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_8 burst_scatter_mult = 0 @@ -499,12 +499,16 @@ their unique feature is that a direct hit will buff your damage and firerate switch(floating_penetration) if(FLOATING_PENETRATION_TIER_1) P.ammo = GLOB.ammo_list[/datum/ammo/bullet/lever_action/xm88/pen20] + direct_hit_sound = "sound/weapons/gun_xm88_directhit_low.ogg" if(FLOATING_PENETRATION_TIER_2) P.ammo = GLOB.ammo_list[/datum/ammo/bullet/lever_action/xm88/pen30] + direct_hit_sound = "sound/weapons/gun_xm88_directhit_medium.ogg" if(FLOATING_PENETRATION_TIER_3) P.ammo = GLOB.ammo_list[/datum/ammo/bullet/lever_action/xm88/pen40] + direct_hit_sound = "sound/weapons/gun_xm88_directhit_medium.ogg" if(FLOATING_PENETRATION_TIER_4) P.ammo = GLOB.ammo_list[/datum/ammo/bullet/lever_action/xm88/pen50] + direct_hit_sound = "sound/weapons/gun_xm88_directhit_high.ogg" return ..() /obj/item/weapon/gun/lever_action/xm88/unload(mob/user) @@ -524,6 +528,7 @@ their unique feature is that a direct hit will buff your damage and firerate lever_message = initial(lever_message) wield_delay = initial(wield_delay) cur_onehand_chance = initial(cur_onehand_chance) + direct_hit_sound = "sound/weapons/gun_xm88_directhit_low.ogg" if(in_chamber) var/obj/projectile/P = in_chamber P.ammo = GLOB.ammo_list[/datum/ammo/bullet/lever_action/xm88] @@ -536,6 +541,10 @@ their unique feature is that a direct hit will buff your damage and firerate if(one_hand_lever) addtimer(VARSET_CALLBACK(src, cur_onehand_chance, reset_onehand_chance), 4 SECONDS, TIMER_OVERRIDE|TIMER_UNIQUE) +/obj/item/weapon/gun/lever_action/xm88/direct_hit_buff(mob/user, mob/target, one_hand_lever = FALSE) + . = ..() + playsound(target, direct_hit_sound, 75) + #undef FLOATING_PENETRATION_TIER_0 #undef FLOATING_PENETRATION_TIER_1 #undef FLOATING_PENETRATION_TIER_2 diff --git a/code/modules/projectiles/guns/misc.dm b/code/modules/projectiles/guns/misc.dm index e06471a210..14b688b1e2 100644 --- a/code/modules/projectiles/guns/misc.dm +++ b/code/modules/projectiles/guns/misc.dm @@ -83,6 +83,7 @@ starting_attachment_types = list( /obj/item/attachable/m60barrel, /obj/item/attachable/bipod/m60, + /obj/item/attachable/stock/m60, ) start_semiauto = FALSE start_automatic = TRUE @@ -95,7 +96,7 @@ load_into_chamber() /obj/item/weapon/gun/m60/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 34, "muzzle_y" = 16,"rail_x" = 0, "rail_y" = 0, "under_x" = 39, "under_y" = 7, "stock_x" = 0, "stock_y" = 0) + attachable_offset = list("muzzle_x" = 37, "muzzle_y" = 16, "rail_x" = 0, "rail_y" = 0, "under_x" = 27, "under_y" = 12, "stock_x" = 10, "stock_y" = 14) /obj/item/weapon/gun/m60/set_gun_config_values() @@ -147,9 +148,9 @@ /obj/item/weapon/gun/m60/update_icon() . = ..() if(cover_open) - overlays += "+[base_gun_icon]_cover_open" + overlays += image("+[base_gun_icon]_cover_open", pixel_x = -2, pixel_y = 8) else - overlays += "+[base_gun_icon]_cover_closed" + overlays += image("+[base_gun_icon]_cover_closed", pixel_x = -10, pixel_y = 0) /obj/item/weapon/gun/m60/able_to_fire(mob/living/user) . = ..() @@ -308,6 +309,7 @@ button.overlays += image('icons/mob/hud/actions.dmi', button, action_icon_state) /datum/action/item_action/toggle_iff_pkp/action_activate() + . = ..() var/obj/item/weapon/gun/pkp/iff/G = holder_item if(!ishuman(owner)) return diff --git a/code/modules/projectiles/guns/pistols.dm b/code/modules/projectiles/guns/pistols.dm index d3fff0e05d..b0171818a2 100644 --- a/code/modules/projectiles/guns/pistols.dm +++ b/code/modules/projectiles/guns/pistols.dm @@ -520,6 +520,7 @@ current_mag = /obj/item/ammo_magazine/pistol/es4 force = 8 muzzle_flash = "muzzle_flash_blue" + muzzle_flash_color = COLOR_MUZZLE_BLUE flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_ONE_HAND_WIELDED|GUN_AMMO_COUNTER attachable_allowed = list( /obj/item/attachable/flashlight, diff --git a/code/modules/projectiles/guns/revolvers.dm b/code/modules/projectiles/guns/revolvers.dm index 6fd17ef1a7..95d1df04ca 100644 --- a/code/modules/projectiles/guns/revolvers.dm +++ b/code/modules/projectiles/guns/revolvers.dm @@ -6,7 +6,7 @@ w_class = SIZE_MEDIUM matter = list("metal" = 2000) - fire_sound = 'sound/weapons/gun_44mag_v3.ogg' + fire_sound = 'sound/weapons/gun_44mag_v4.ogg' reload_sound = 'sound/weapons/gun_44mag_speed_loader.wav' cocked_sound = 'sound/weapons/gun_revolver_spun.ogg' unload_sound = 'sound/weapons/gun_44mag_open_chamber.wav' @@ -319,7 +319,7 @@ var/folded = FALSE // Used for the stock attachment, to check if we can shoot or not /obj/item/weapon/gun/revolver/m44/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 21,"rail_x" = 12, "rail_y" = 23, "under_x" = 21, "under_y" = 18, "stock_x" = 16, "stock_y" = 20) + attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 21,"rail_x" = 12, "rail_y" = 23, "under_x" = 21, "under_y" = 16, "stock_x" = 16, "stock_y" = 20) /obj/item/weapon/gun/revolver/m44/set_gun_config_values() ..() @@ -503,7 +503,7 @@ desc = "A Frontier Special. Out here, you get a lot of smalltime companies that try to push themselves as better by upping the pressure of their ammo and fiddling with the designs to make it work. It usually means that their accuracy is awful, but the impact is impressive... if you've got the knowhow to shoot them straight." icon = 'icons/obj/items/weapons/guns/guns_by_faction/colony.dmi' icon_state = "sw357" - item_state = "ny762" //PLACEHOLDER + item_state = "sw357" fire_sound = 'sound/weapons/gun_44mag2.ogg' current_mag = /obj/item/ammo_magazine/internal/revolver/small force = 6 @@ -539,7 +539,7 @@ desc = "Used to swap the barrels of a mateba revolver." icon = 'icons/obj/items/items.dmi' icon_state = "matebakey" - flags_atom = FPRINT|CONDUCT + flags_atom = FPRINT|QUICK_DRAWABLE|CONDUCT force = 5 w_class = SIZE_TINY throwforce = 5 diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 8b64389220..02a99f64d3 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -571,6 +571,7 @@ //---ability actions--\\ /datum/action/item_action/m46c/action_activate() + . = ..() var/obj/item/weapon/gun/rifle/m46c/protag_gun = holder_item if(!ishuman(owner)) return @@ -871,9 +872,9 @@ /obj/item/weapon/gun/rifle/mar40/lmg/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_9) + set_fire_delay(FIRE_DELAY_TIER_LMG) set_burst_amount(BURST_AMOUNT_TIER_5) - set_burst_delay(FIRE_DELAY_TIER_11) + set_burst_delay(FIRE_DELAY_TIER_LMG) accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7 scatter = SCATTER_AMOUNT_TIER_6 @@ -1240,6 +1241,7 @@ fire_sound = 'sound/weapons/gun_hpr.ogg' aim_slowdown = SLOWDOWN_ADS_LMG current_mag = /obj/item/ammo_magazine/rifle/lmg + starting_attachment_types = list(/obj/item/attachable/bipod) attachable_allowed = list( /obj/item/attachable/suppressor, /obj/item/attachable/reddot, @@ -1278,7 +1280,12 @@ recoil_unwielded = RECOIL_AMOUNT_TIER_1 - +/obj/item/weapon/gun/rifle/lmg/tactical + current_mag = /obj/item/ammo_magazine/rifle/lmg/ap + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip) +/obj/item/weapon/gun/rifle/lmg/tactical/set_gun_config_values() + ..() + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2//equal to m41a dmg //------------------------------------------------------- @@ -1623,6 +1630,11 @@ /obj/item/weapon/gun/rifle/m4ra/training current_mag = /obj/item/ammo_magazine/rifle/m4ra/rubber +/obj/item/weapon/gun/rifle/m4ra/tactical + current_mag = /obj/item/ammo_magazine/rifle/m4ra/ext + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip) + + // pve - kinda weird icon usage, uses urban M4RA sprite w/ custom attachie sprite /obj/item/weapon/gun/rifle/m4ra/pve name = "\improper M4RA-R2 battle rifle" @@ -1860,9 +1872,9 @@ /obj/item/weapon/gun/rifle/rmc_f90/set_gun_config_values() ..() - fire_delay = FIRE_DELAY_TIER_8 + fire_delay = FIRE_DELAY_TIER_11 burst_amount = BURST_AMOUNT_TIER_3 - burst_delay = FIRE_DELAY_TIER_8 + burst_delay = FIRE_DELAY_TIER_11 accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 + 2*HIT_ACCURACY_MULT_TIER_1 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7 scatter = SCATTER_AMOUNT_TIER_8 @@ -1901,7 +1913,7 @@ /obj/item/weapon/gun/rifle/rmc_f90/scope/set_gun_config_values() ..() - fire_delay = FIRE_DELAY_TIER_7 + fire_delay = FIRE_DELAY_TIER_11 burst_amount = 0 accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 + 2*HIT_ACCURACY_MULT_TIER_1 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_7 @@ -1941,9 +1953,9 @@ /obj/item/weapon/gun/rifle/rmc_f90/shotgun/set_gun_config_values() ..() - fire_delay = FIRE_DELAY_TIER_8 + fire_delay = FIRE_DELAY_TIER_11 burst_amount = BURST_AMOUNT_TIER_3 - burst_delay = FIRE_DELAY_TIER_8 + burst_delay = FIRE_DELAY_TIER_11 accuracy_mult = BASE_ACCURACY_MULT + HIT_ACCURACY_MULT_TIER_4 + 2*HIT_ACCURACY_MULT_TIER_1 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 scatter = SCATTER_AMOUNT_TIER_8 @@ -1964,3 +1976,123 @@ f90_shotgun_barrel.Attach(src) update_attachable(f90_shotgun.slot) update_attachable(f90_shotgun_barrel.slot) + +//------------------------------------------------------- +//XM51, Breaching Scattergun + +/obj/item/weapon/gun/rifle/xm51 + name = "\improper XM51 breaching scattergun" + desc = "An experimental shotgun model going through testing trials in the USCM. Based on the original civilian and CMB version, the XM51 is a mag-fed, pump-action shotgun. It utilizes special 16-gauge breaching rounds which are effective at breaching walls and doors. Users are advised not to employ the weapon against soft or armored targets due to low performance of the shells." + icon_state = "xm51" + item_state = "xm51" + fire_sound = 'sound/weapons/gun_shotgun_xm51.ogg' + reload_sound = 'sound/weapons/handling/l42_reload.ogg' + unload_sound = 'sound/weapons/handling/l42_unload.ogg' + current_mag = /obj/item/ammo_magazine/rifle/xm51 + attachable_allowed = list( + /obj/item/attachable/bayonet, + /obj/item/attachable/bayonet/upp, + /obj/item/attachable/bayonet/co2, + /obj/item/attachable/reddot, + /obj/item/attachable/reflex, + /obj/item/attachable/verticalgrip, + /obj/item/attachable/angledgrip, + /obj/item/attachable/gyro, + /obj/item/attachable/flashlight/grip, + /obj/item/attachable/flashlight, + /obj/item/attachable/magnetic_harness, + /obj/item/attachable/stock/xm51, + ) + flags_equip_slot = SLOT_BACK + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER + gun_category = GUN_CATEGORY_SHOTGUN + aim_slowdown = SLOWDOWN_ADS_SHOTGUN + map_specific_decoration = TRUE + + var/pump_delay //How long we have to wait before we can pump the shotgun again. + var/pump_sound = "shotgunpump" + var/message_delay = 1 SECONDS //To stop message spam when trying to pump the gun constantly. + var/burst_count = 0 //To detect when the burst fire is near its end. + COOLDOWN_DECLARE(allow_message) + COOLDOWN_DECLARE(allow_pump) + +/obj/item/weapon/gun/rifle/xm51/set_gun_attachment_offsets() + attachable_offset = list("muzzle_x" = 34, "muzzle_y" = 18, "rail_x" = 12, "rail_y" = 20, "under_x" = 24, "under_y" = 13, "stock_x" = 15, "stock_y" = 16) + +/obj/item/weapon/gun/rifle/xm51/set_gun_config_values() + ..() + set_fire_delay(FIRE_DELAY_TIER_4*2) + set_burst_amount(0) + burst_scatter_mult = SCATTER_AMOUNT_TIER_7 + accuracy_mult = BASE_ACCURACY_MULT + 2*HIT_ACCURACY_MULT_TIER_8 + accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_8 + recoil = RECOIL_AMOUNT_TIER_4 + recoil_unwielded = RECOIL_AMOUNT_TIER_2 + scatter = SCATTER_AMOUNT_TIER_6 + +/obj/item/weapon/gun/rifle/xm51/Initialize(mapload, spawn_empty) + . = ..() + pump_delay = FIRE_DELAY_TIER_8*3 + additional_fire_group_delay += pump_delay + +/obj/item/weapon/gun/rifle/xm51/set_bullet_traits() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY_ID("turfs", /datum/element/bullet_trait_damage_boost, 30, GLOB.damage_boost_turfs), //2550, 2 taps colony walls, 4 taps reinforced walls + BULLET_TRAIT_ENTRY_ID("xeno turfs", /datum/element/bullet_trait_damage_boost, 0.23, GLOB.damage_boost_turfs_xeno), //2550*0.23 = 586, 2 taps resin walls, 3 taps thick resin + BULLET_TRAIT_ENTRY_ID("breaching", /datum/element/bullet_trait_damage_boost, 15, GLOB.damage_boost_breaching), //1275, enough to 1 tap airlocks + BULLET_TRAIT_ENTRY_ID("pylons", /datum/element/bullet_trait_damage_boost, 6, GLOB.damage_boost_pylons) //510, 4 shots to take out a pylon + )) + +/obj/item/weapon/gun/rifle/xm51/unique_action(mob/user) + if(!COOLDOWN_FINISHED(src, allow_pump)) + return + if(in_chamber) + if(COOLDOWN_FINISHED(src, allow_message)) + to_chat(usr, SPAN_WARNING("[src] already has a shell in the chamber!")) + COOLDOWN_START(src, allow_message, message_delay) + return + + playsound(user, pump_sound, 10, 1) + COOLDOWN_START(src, allow_pump, pump_delay) + ready_in_chamber() + burst_count = 0 //Reset the count for burst mode. + +/obj/item/weapon/gun/rifle/xm51/load_into_chamber(mob/user) + return in_chamber + +/obj/item/weapon/gun/rifle/xm51/reload_into_chamber(mob/user) //Don't chamber bullets after firing. + if(!current_mag) + update_icon() + return + + in_chamber = null + if(current_mag.current_rounds <= 0 && flags_gun_features & GUN_AUTO_EJECTOR) + if (user.client?.prefs && (user.client?.prefs?.toggle_prefs & TOGGLE_AUTO_EJECT_MAGAZINE_OFF)) + update_icon() + else if (!(flags_gun_features & GUN_BURST_FIRING) || !in_chamber) // Magazine will only unload once burstfire is over + var/drop_to_ground = TRUE + if (user.client?.prefs && (user.client?.prefs?.toggle_prefs & TOGGLE_AUTO_EJECT_MAGAZINE_TO_HAND)) + drop_to_ground = FALSE + unwield(user) + user.swap_hand() + unload(user, TRUE, drop_to_ground) // We want to quickly autoeject the magazine. This proc does the rest based on magazine type. User can be passed as null. + playsound(src, empty_sound, 25, 1) + if(gun_firemode == GUN_FIREMODE_BURSTFIRE & burst_count < burst_amount - 1) //Fire two (or more) shots in a burst without having to pump. + ready_in_chamber() + burst_count++ + return in_chamber + +/obj/item/weapon/gun/rifle/xm51/replace_magazine(mob/user, obj/item/ammo_magazine/magazine) //Don't chamber a round when reloading. + user.drop_inv_item_to_loc(magazine, src) //Click! + current_mag = magazine + replace_ammo(user,magazine) + user.visible_message(SPAN_NOTICE("[user] loads [magazine] into [src]!"), + SPAN_NOTICE("You load [magazine] into [src]!"), null, 3, CHAT_TYPE_COMBAT_ACTION) + if(reload_sound) + playsound(user, reload_sound, 25, 1, 5) + +/obj/item/weapon/gun/rifle/xm51/cock_gun(mob/user) + return + +/obj/item/weapon/gun/rifle/xm51/cock(mob/user) //Stops the "You cock the gun." message where nothing happens. + return diff --git a/code/modules/projectiles/guns/shotguns.dm b/code/modules/projectiles/guns/shotguns.dm index 6035aaf612..bb45d7f34a 100644 --- a/code/modules/projectiles/guns/shotguns.dm +++ b/code/modules/projectiles/guns/shotguns.dm @@ -759,6 +759,7 @@ can cause issues with ammo types getting mixed up during the burst. return TRUE /datum/action/item_action/specialist/twobore_brace/action_activate() + . = ..() var/obj/item/weapon/gun/shotgun/double/twobore/G = holder_item if(G.braced) return @@ -940,8 +941,8 @@ can cause issues with ammo types getting mixed up during the burst. if(!T) //Off edge of map. throw_turfs.Remove(T) continue - var/list/turf/path = getline2(get_step_towards(src, T), T) //Same path throw code will calculate from. - if(!path.len) + var/list/turf/path = get_line(get_step_towards(src, T), T) //Same path throw code will calculate from. + if(!length(path)) throw_turfs.Remove(T) continue var/prev_turf = start_turf diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm index bca3f2669d..ef36f9fd32 100644 --- a/code/modules/projectiles/guns/smartgun.dm +++ b/code/modules/projectiles/guns/smartgun.dm @@ -145,7 +145,8 @@ /obj/item/weapon/gun/smartgun/attackby(obj/item/attacking_object, mob/user) if(istype(attacking_object, /obj/item/smartgun_battery)) var/obj/item/smartgun_battery/new_cell = attacking_object - visible_message("[user] swaps out the power cell in the [src].","You swap out the power cell in the [src] and drop the old one.") + visible_message(SPAN_NOTICE("[user] swaps out the power cell in [src]."), + SPAN_NOTICE("You swap out the power cell in [src] and drop the old one.")) to_chat(user, SPAN_NOTICE("The new cell contains: [new_cell.power_cell.charge] power.")) battery.update_icon() battery.forceMove(get_turf(user)) @@ -178,6 +179,7 @@ //---ability actions--\\ /datum/action/item_action/smartgun/action_activate() + . = ..() var/obj/item/weapon/gun/smartgun/G = holder_item if(!ishuman(owner)) return @@ -500,9 +502,9 @@ if((angledegree*2) > angle_list[angle]) continue - path = getline2(user, M) + path = get_line(user, M) - if(path.len) + if(length(path)) var/blocked = FALSE for(T in path) if(T.density || T.opacity) @@ -525,9 +527,9 @@ else conscious_targets += M - if(conscious_targets.len) + if(length(conscious_targets)) . = pick(conscious_targets) - else if(unconscious_targets.len) + else if(length(unconscious_targets)) . = pick(unconscious_targets) /obj/item/weapon/gun/smartgun/proc/process_shot(mob/living/user, warned) @@ -596,6 +598,7 @@ // ID lock action \\ /datum/action/item_action/co_sg/action_activate() + . = ..() var/obj/item/weapon/gun/smartgun/co/protag_gun = holder_item if(!ishuman(owner)) return @@ -716,7 +719,7 @@ requires_harness = FALSE /obj/item/smartgun_battery - name = "smartgun DV9 battery" + name = "\improper DV9 smartgun battery" desc = "A standard-issue 9-volt lithium dry-cell battery, most commonly used within the USCMC to power smartguns. Per the manual, one battery is good for up to 50000 rounds and plugs directly into the smartgun's power receptacle, which is only compatible with this type of battery. Various auxiliary modes usually bring the round count far lower. While this cell is incompatible with most standard electrical system, it can be charged by common rechargers in a pinch. USCMC smartgunners often guard them jealously." icon = 'icons/obj/structures/machinery/power.dmi' diff --git a/code/modules/projectiles/guns/smgs.dm b/code/modules/projectiles/guns/smgs.dm index b5923a202e..a93bef15e6 100644 --- a/code/modules/projectiles/guns/smgs.dm +++ b/code/modules/projectiles/guns/smgs.dm @@ -84,7 +84,7 @@ accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_5 scatter = SCATTER_AMOUNT_TIER_4 - burst_scatter_mult = SCATTER_AMOUNT_TIER_4 + burst_scatter_mult = SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_4 damage_mult = BASE_BULLET_DAMAGE_MULT recoil_unwielded = RECOIL_AMOUNT_TIER_5 @@ -168,7 +168,8 @@ /obj/item/attachable/lasersight, // Under /obj/item/attachable/gyro, /obj/item/attachable/bipod, - /obj/item/attachable/burstfire_assembly + /obj/item/attachable/burstfire_assembly, + /obj/item/attachable/attached_gun/grenade/m203, ) flags_gun_features = GUN_CAN_POINTBLANK|GUN_ANTIQUE @@ -192,6 +193,13 @@ damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_4 recoil_unwielded = RECOIL_AMOUNT_TIER_5 +/obj/item/weapon/gun/smg/mp5/Initialize(mapload, spawn_empty) + . = ..() + if(prob(10)) + var/obj/item/attachable/attached_gun/grenade/m203/UGL = new(src) + UGL.Attach(src) + update_attachable(UGL.slot) + //------------------------------------------------------- //MP27, based on the MP27, based on the M7. @@ -257,10 +265,11 @@ fire_sound = 'sound/weapons/smg_heavy.ogg' current_mag = /obj/item/ammo_magazine/smg/ppsh flags_gun_features = GUN_CAN_POINTBLANK|GUN_ANTIQUE + starting_attachment_types = list(/obj/item/attachable/stock/ppsh) var/jammed = FALSE /obj/item/weapon/gun/smg/ppsh/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 17,"rail_x" = 15, "rail_y" = 19, "under_x" = 26, "under_y" = 15, "stock_x" = 26, "stock_y" = 15) + attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 17,"rail_x" = 15, "rail_y" = 19, "under_x" = 26, "under_y" = 15, "stock_x" = 18, "stock_y" = 15) /obj/item/weapon/gun/smg/ppsh/set_gun_config_values() ..() @@ -302,7 +311,7 @@ /obj/item/weapon/gun/smg/ppsh/unique_action(mob/user) if(jammed) if(prob(PPSH_UNJAM_CHANCE)) - to_chat(user, SPAN_GREEN("You succesfully unjam \the [src]!")) + to_chat(user, SPAN_GREEN("You successfully unjam \the [src]!")) playsound(src, 'sound/weapons/handling/gun_jam_rack_success.ogg', 50, FALSE) jammed = FALSE cock_cooldown += 1 SECONDS //so they dont accidentally cock a bullet away @@ -452,7 +461,7 @@ aim_slowdown = SLOWDOWN_ADS_NONE /obj/item/weapon/gun/smg/mac15/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 20,"rail_x" = 16, "rail_y" = 22, "under_x" = 22, "under_y" = 16, "stock_x" = 22, "stock_y" = 16) + attachable_offset = list("muzzle_x" = 29, "muzzle_y" = 21,"rail_x" = 13, "rail_y" = 24, "under_x" = 19, "under_y" = 18, "stock_x" = 22, "stock_y" = 16) /obj/item/weapon/gun/smg/mac15/set_gun_config_values() ..() @@ -538,7 +547,7 @@ /obj/item/weapon/gun/smg/uzi/unique_action(mob/user) if(jammed) if(prob(UZI_UNJAM_CHANCE)) - to_chat(user, SPAN_GREEN("You succesfully unjam \the [src]!")) + to_chat(user, SPAN_GREEN("You successfully unjam \the [src]!")) playsound(src, 'sound/weapons/handling/gun_jam_rack_success.ogg', 35, TRUE) jammed = FALSE cock_cooldown += 1 SECONDS //so they dont accidentally cock a bullet away @@ -609,7 +618,7 @@ /obj/item/weapon/gun/smg/fp9000/pmc name = "\improper FN FP9000/2 Submachinegun" - desc = "Despite the rather ancient design, the FN FP9K sees frequent use in PMC teams due to its extreme reliability and versatility, allowing it to excel in any situation, especially due to the fact that they use the patented, official version of the gun, which has recieved several upgrades and tuning to its design over time." + desc = "Despite the rather ancient design, the FN FP9K sees frequent use in PMC teams due to its extreme reliability and versatility, allowing it to excel in any situation, especially due to the fact that they use the patented, official version of the gun, which has received several upgrades and tuning to its design over time." icon_state = "fp9000_pmc" item_state = "fp9000_pmc" random_spawn_chance = 100 @@ -657,6 +666,7 @@ start_automatic = FALSE var/nailing_speed = 2 SECONDS //Time to apply a sheet for patching. Also haha name. Try to keep sync with soundbyte duration var/repair_sound = 'sound/weapons/nailgun_repair_long.ogg' + var/material_per_repair = 1 /obj/item/weapon/gun/smg/nailgun/set_gun_config_values() ..() @@ -681,9 +691,16 @@ icon_state = "cnailgun" item_state = "nailgun" w_class = SIZE_SMALL + flags_gun_features = GUN_AUTO_EJECTOR|GUN_CAN_POINTBLANK|GUN_NO_DESCRIPTION /obj/item/weapon/gun/smg/nailgun/compact/able_to_fire(mob/living/user) . = ..() - if(.) - click_empty(user) return FALSE + +/obj/item/weapon/gun/smg/nailgun/compact/tactical + name = "tactical compact nailgun" + desc = "A carpentry tool, used to drive nails into tough surfaces. This one is military grade, it's olive drab and tacticool. Cannot fire nails as a projectile." + icon_state = "tnailgun" + item_state = "tnailgun" + w_class = SIZE_SMALL + material_per_repair = 2 diff --git a/code/modules/projectiles/guns/souto.dm b/code/modules/projectiles/guns/souto.dm index 6f45f57e1d..1e9669dd0b 100644 --- a/code/modules/projectiles/guns/souto.dm +++ b/code/modules/projectiles/guns/souto.dm @@ -39,11 +39,11 @@ return ..() /obj/item/weapon/gun/souto/reload(mob/user, obj/item/ammo_magazine/magazine) - to_chat(user, SPAN_WARNING("The [src] feed system cannot be reloaded manually.")) + to_chat(user, SPAN_WARNING("[src]'s feed system cannot be reloaded manually.")) return /obj/item/weapon/gun/souto/unload(mob/user, reload_override = 0, drop_override = 0, loc_override = 0) - to_chat(user, SPAN_WARNING("You cannot unload the [src].")) + to_chat(user, SPAN_WARNING("You cannot unload [src].")) return /obj/item/weapon/gun/souto/able_to_fire(mob/user) diff --git a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm index 9148062d0c..4189cbfade 100644 --- a/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/grenade_launcher.dm @@ -25,7 +25,13 @@ ///Does it launch its grenades in a low arc or a high? Do they strike people in their path, or fly beyond? var/is_lobbing = FALSE ///Verboten munitions. This is a blacklist. Anything in this list isn't loadable. - var/disallowed_grenade_types = list(/obj/item/explosive/grenade/spawnergrenade, /obj/item/explosive/grenade/alien, /obj/item/explosive/grenade/incendiary/molotov, /obj/item/explosive/grenade/flashbang) + var/disallowed_grenade_types = list(/obj/item/explosive/grenade/spawnergrenade, + /obj/item/explosive/grenade/alien, + /obj/item/explosive/grenade/nerve_gas, + /obj/item/explosive/grenade/incendiary/bursting_pipe, + /obj/item/explosive/grenade/xeno_acid_grenade, + /obj/item/explosive/grenade/incendiary/molotov, + /obj/item/explosive/grenade/flashbang) ///What is this weapon permitted to fire? This is a whitelist. Anything in this list can be fired. Anything. var/valid_munitions = list(/obj/item/explosive/grenade) @@ -175,7 +181,7 @@ SPAN_WARNING("[to_firer]"), message_flags = CHAT_TYPE_WEAPON_USE) playsound(user.loc, fire_sound, 50, 1) - var/angle = round(Get_Angle(user,target)) + var/angle = floor(Get_Angle(user,target)) muzzle_flash(angle,user) simulate_recoil(0, user) @@ -222,6 +228,7 @@ update_icon() /datum/action/item_action/toggle_firing_level/action_activate() + . = ..() var/obj/item/weapon/gun/launcher/grenade/G = holder_item if(!ishuman(owner)) return @@ -317,7 +324,7 @@ /obj/item/weapon/gun/launcher/grenade/m81/riot name = "\improper M81 riot grenade launcher" desc = "A lightweight, single-shot low-angle grenade launcher to launch tear gas grenades. Used by the Colonial Marines Military Police during riots." - valid_munitions = list(/obj/item/explosive/grenade/custom/teargas) + valid_munitions = list(/obj/item/explosive/grenade/custom/teargas, /obj/item/explosive/grenade/slug/baton) preload = /obj/item/explosive/grenade/custom/teargas //------------------------------------------------------- diff --git a/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm b/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm index 356d0e6c3b..1f0ae4aed5 100644 --- a/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm +++ b/code/modules/projectiles/guns/specialist/launcher/rocket_launcher.dm @@ -189,12 +189,18 @@ smoke.set_up(1, 0, backblast_loc, turn(user.dir, 180)) smoke.start() playsound(src, 'sound/weapons/gun_rocketlauncher.ogg', 100, TRUE, 10) - for(var/mob/living/carbon/C in backblast_loc) - if(C.body_position == STANDING_UP && !HAS_TRAIT(C, TRAIT_EAR_PROTECTION)) //Have to be standing up to get the fun stuff - C.apply_damage(15, BRUTE) //The shockwave hurts, quite a bit. It can knock unarmored targets unconscious in real life - C.apply_effect(4, STUN) //For good measure - C.apply_effect(6, STUTTER) - C.emote("pain") + for(var/mob/living/carbon/mob in backblast_loc) + if(mob.body_position != STANDING_UP || HAS_TRAIT(mob, TRAIT_EAR_PROTECTION)) //Have to be standing up to get the fun stuff + continue + to_chat(mob, SPAN_BOLDWARNING("You got hit by the backblast!")) + mob.apply_damage(15, BRUTE) //The shockwave hurts, quite a bit. It can knock unarmored targets unconscious in real life + var/knockdown_amount = 6 + if(isxeno(mob)) + var/mob/living/carbon/xenomorph/xeno = mob + knockdown_amount = knockdown_amount * (1 - xeno.caste?.xeno_explosion_resistance / 100) + mob.KnockDown(knockdown_amount) + mob.apply_effect(6, STUTTER) + mob.emote("pain") //------------------------------------------------------- //M5 RPG'S MEAN FUCKING COUSIN diff --git a/code/modules/projectiles/guns/specialist/scout.dm b/code/modules/projectiles/guns/specialist/scout.dm index c2c5abd54a..8443e59580 100644 --- a/code/modules/projectiles/guns/specialist/scout.dm +++ b/code/modules/projectiles/guns/specialist/scout.dm @@ -81,3 +81,6 @@ if(!skillcheck(user, SKILL_SPEC_WEAPONS, SKILL_SPEC_ALL) && user.skills.get_skill_level(SKILL_SPEC_WEAPONS) != SKILL_SPEC_SCOUT) to_chat(user, SPAN_WARNING("You don't seem to know how to use \the [src]...")) return FALSE + +/obj/item/weapon/gun/rifle/m4ra_custom/tactical + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/bayonet, /obj/item/attachable/angledgrip) diff --git a/code/modules/projectiles/guns/specialist/sniper.dm b/code/modules/projectiles/guns/specialist/sniper.dm index bc0ac3340e..cc987c5782 100644 --- a/code/modules/projectiles/guns/specialist/sniper.dm +++ b/code/modules/projectiles/guns/specialist/sniper.dm @@ -19,11 +19,17 @@ var/sniper_beam_icon = "laser_beam" var/skill_locked = TRUE + /// Variables for Focus Fire and alternate icons for lockon and laser. + var/enable_aimed_shot_icon_alt = FALSE + var/sniper_lockon_icon_max = "sniper_lockon_intense" + var/sniper_beam_icon_max = "laser_beam_intense" + + /obj/item/weapon/gun/rifle/sniper/get_examine_text(mob/user) . = ..() if(!has_aimed_shot) return - . += SPAN_NOTICE("This weapon has an unique ability, Aimed Shot, allowing it to deal great damage after a windup.
        Additionally, the aimed shot can be sped up with a tracking laser, which is enabled by default but may be disabled.") + . += SPAN_NOTICE("This weapon has a special ability, Aimed Shot, allowing it to deal increased damage and inflict additional crippling effects after a windup, depending on the ammunition used.
        Additionally, the aimed shot can be sped up with a spotter or by using the tracking laser, which is enabled by default but may be disabled.") /obj/item/weapon/gun/rifle/sniper/Initialize(mapload, spawn_empty) if(has_aimed_shot) @@ -56,6 +62,7 @@ ACTIONS SPECIALSIT SNIPER CAN TAKE */ /datum/action/item_action/specialist/aimed_shot/action_activate() + . = ..() if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner @@ -98,7 +105,7 @@ human.face_atom(target) ///Add a decisecond to the default 1.5 seconds for each two tiles to hit. - var/distance = round(get_dist(target, human) * 0.5) + var/distance = floor(get_dist(target, human) * 0.5) var/f_aiming_time = sniper_rifle.aiming_time + distance var/aim_multiplier = 1 @@ -117,7 +124,24 @@ f_aiming_time *= aim_multiplier - var/image/lockon_icon = image(icon = 'icons/effects/Targeted.dmi', icon_state = sniper_rifle.sniper_lockon_icon) + var/beam + var/lockon + + if(istype(sniper_rifle, /obj/item/weapon/gun/rifle/sniper/XM43E1)) + var/obj/item/weapon/gun/rifle/sniper/XM43E1/amr = sniper_rifle + if((amr.focused_fire_counter >= 1 && amr.focused_fire_counter < 3) && (target == amr.focused_fire_target?.resolve())) + sniper_rifle.enable_aimed_shot_icon_alt = TRUE + else + sniper_rifle.enable_aimed_shot_icon_alt = FALSE + + if(sniper_rifle.enable_aimed_shot_icon_alt) + beam = sniper_rifle.sniper_beam_icon_max + lockon = sniper_rifle.sniper_lockon_icon_max + else + beam = sniper_rifle.sniper_beam_icon + lockon = sniper_rifle.sniper_lockon_icon + + var/image/lockon_icon = image(icon = 'icons/effects/Targeted.dmi', icon_state = lockon) var/x_offset = -target.pixel_x + target.base_pixel_x var/y_offset = (target.icon_size - world.icon_size) * 0.5 - target.pixel_y + target.base_pixel_y @@ -128,7 +152,7 @@ var/image/lockon_direction_icon if(!sniper_rifle.enable_aimed_shot_laser) - lockon_direction_icon = image(icon = 'icons/effects/Targeted.dmi', icon_state = "[sniper_rifle.sniper_lockon_icon]_direction", dir = get_cardinal_dir(target, human)) + lockon_direction_icon = image(icon = 'icons/effects/Targeted.dmi', icon_state = "[lockon]_direction", dir = get_cardinal_dir(target, human)) lockon_direction_icon.pixel_x = x_offset lockon_direction_icon.pixel_y = y_offset target.overlays += lockon_direction_icon @@ -138,7 +162,7 @@ var/datum/beam/laser_beam if(sniper_rifle.enable_aimed_shot_laser) - laser_beam = target.beam(human, sniper_rifle.sniper_beam_icon, 'icons/effects/beam.dmi', (f_aiming_time + 1 SECONDS), beam_type = sniper_rifle.sniper_beam_type) + laser_beam = target.beam(human, beam, 'icons/effects/beam.dmi', (f_aiming_time + 1 SECONDS), beam_type = sniper_rifle.sniper_beam_type) laser_beam.visuals.alpha = 0 animate(laser_beam.visuals, alpha = initial(laser_beam.visuals.alpha), f_aiming_time, easing = SINE_EASING|EASE_OUT) @@ -198,18 +222,18 @@ return TRUE /datum/action/item_action/specialist/aimed_shot/proc/check_shot_is_blocked(mob/firer, mob/target, obj/projectile/P) - var/list/turf/path = getline2(firer, target, include_from_atom = FALSE) - if(!path.len || get_dist(firer, target) > P.ammo.max_range) + var/list/turf/path = get_line(firer, target, include_start_atom = FALSE) + if(!length(path) || get_dist(firer, target) > P.ammo.max_range) return TRUE var/blocked = FALSE for(var/turf/T in path) - if(T.density || T.opacity) + if(T.density && T.opacity) blocked = TRUE break for(var/obj/O in T) - if(O.get_projectile_hit_boolean(P)) + if(O.get_projectile_hit_boolean(P) && O.opacity) blocked = TRUE break @@ -253,6 +277,7 @@ return TRUE /datum/action/item_action/specialist/toggle_laser/action_activate() + . = ..() var/obj/item/weapon/gun/rifle/sniper/sniper_rifle = holder_item if(owner.get_held_item() != sniper_rifle) @@ -330,21 +355,25 @@ /obj/item/weapon/gun/rifle/sniper/M42A/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_7*3) + set_fire_delay(FIRE_DELAY_TIER_SNIPER) set_burst_amount(BURST_AMOUNT_TIER_1) accuracy_mult = BASE_ACCURACY_MULT * 3 //you HAVE to be able to hit scatter = SCATTER_AMOUNT_TIER_8 damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_5 -/obj/item/weapon/gun/rifle/sniper/xm43e1 +/obj/item/weapon/gun/rifle/sniper/XM43E1 name = "\improper XM43E1 experimental anti-materiel rifle" - desc = "An experimental anti-materiel rifle produced by Armat Systems, recently reacquired from the deep storage of an abandoned prototyping facility. This one in particular is currently undergoing field testing. Chambered in 10x99mm Caseless." + desc = "An experimental anti-materiel rifle produced by Armat Systems, recently reacquired from the deep storage of an abandoned prototyping facility. This one in particular is currently undergoing field testing. Chambered in 10x99mm Caseless.\n\nThis weapon can punch through thin metal plating and walls, though it'll lose most of its lethality in the process. It can even work for demolitions, with experienced users known to disassemble segments of solid, reinforced walls in the field with just a single standard magazine of 10x99mm. In lieu of explosives or an engineer, they instead use each of the 8 shots to break down vital structural supports, taking the wall apart in the process." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' - icon_state = "xm42b" - item_state = "xm42b" + icon_state = "xm43e1" + item_state = "xm43e1" unacidable = TRUE indestructible = 1 + aiming_time = 2 SECONDS + aimed_shot_cooldown_delay = 4.5 SECONDS + var/focused_fire_counter = 0 + var/datum/weakref/focused_fire_target = null fire_sound = 'sound/weapons/sniper_heavy.ogg' current_mag = /obj/item/ammo_magazine/sniper/anti_materiel //Renamed from anti-tank to align with new identity/description. Other references have been changed as well. -Kaga @@ -353,12 +382,12 @@ zoomdevicename = "scope" attachable_allowed = list(/obj/item/attachable/bipod) flags_gun_features = GUN_AUTO_EJECTOR|GUN_SPECIALIST|GUN_WIELDED_FIRING_ONLY|GUN_AMMO_COUNTER - starting_attachment_types = list(/obj/item/attachable/sniperbarrel) - sniper_beam_type = /obj/effect/ebeam/laser/intense - sniper_beam_icon = "laser_beam_intense" - sniper_lockon_icon = "sniper_lockon_intense" + starting_attachment_types = list(/obj/item/attachable/pmc_sniperbarrel) + sniper_beam_type = /obj/effect/ebeam/laser + sniper_beam_icon = "laser_beam" + sniper_lockon_icon = "sniper_lockon" -/obj/item/weapon/gun/rifle/sniper/XM42B/handle_starting_attachment() +/obj/item/weapon/gun/rifle/sniper/XM43E1/handle_starting_attachment() ..() var/obj/item/attachable/scope/variable_zoom/S = new(src) S.icon_state = "pmcscope" @@ -368,27 +397,29 @@ update_attachable(S.slot) -/obj/item/weapon/gun/rifle/sniper/XM42B/set_gun_attachment_offsets() +/obj/item/weapon/gun/rifle/sniper/XM43E1/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 32, "muzzle_y" = 18,"rail_x" = 15, "rail_y" = 19, "under_x" = 20, "under_y" = 15, "stock_x" = 20, "stock_y" = 15) -/obj/item/weapon/gun/rifle/sniper/XM42B/set_gun_config_values() +/obj/item/weapon/gun/rifle/sniper/XM43E1/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_6 * 6 )//Big boy damage, but it takes a lot of time to fire a shot. - //Kaga: Adjusted from 56 (Tier 4, 7*8) -> 30 (Tier 6, 5*6) ticks. 95 really wasn't big-boy damage anymore, although I updated it to 125 to remain consistent with the other 10x99mm caliber weapon (M42C). Now takes only twice as long as the M42A. + set_fire_delay(FIRE_DELAY_TIER_AMR)//Big boy damage, but it takes a lot of time to fire a shot. + //Kaga: Fixed back to half the M42A's firerate (3 seconds), using a new define. + //This outright deals less DPS than the normal sniper rifle, 125 vs 140 per 3s. set_burst_amount(BURST_AMOUNT_TIER_1) accuracy_mult = BASE_ACCURACY_MULT + 2*HIT_ACCURACY_MULT_TIER_10 //Who coded this like this, and why? It just calculates out to 1+1=2. Leaving a note here to check back later. scatter = SCATTER_AMOUNT_TIER_10 damage_mult = BASE_BULLET_DAMAGE_MULT recoil = RECOIL_AMOUNT_TIER_1 -/obj/item/weapon/gun/rifle/sniper/XM42B/set_bullet_traits() +/obj/item/weapon/gun/rifle/sniper/XM43E1/set_bullet_traits() LAZYADD(traits_to_give, list( BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff), - BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_penetrating), BULLET_TRAIT_ENTRY_ID("turfs", /datum/element/bullet_trait_damage_boost, 11, GLOB.damage_boost_turfs), BULLET_TRAIT_ENTRY_ID("breaching", /datum/element/bullet_trait_damage_boost, 11, GLOB.damage_boost_breaching), - //At 1375 per shot it'll take 1 shot to break resin turfs, and a full mag of 8 to break reinforced walls. + //At 1375 per shot it'll take 1 shot to break resin turfs usually (thick resin at 1350, RNG may vary), and a full mag of 8 to break reinforced walls. + //However, the second wall it hits will only take 550 damage, unable to even kill a full-health normal resin wall (900). + //Much more effective at breaking resin doors and membranes, which have less HP and slow down the projectile less. BULLET_TRAIT_ENTRY_ID("pylons", /datum/element/bullet_trait_damage_boost, 6, GLOB.damage_boost_pylons) //At 750 per shot it'll take 3 to break a Pylon (1800 HP). No Damage Boost vs other xeno structures yet, those will require a whole new list w/ the damage_boost trait. )) @@ -415,7 +446,7 @@ force = 17 zoomdevicename = "scope" flags_gun_features = GUN_AUTO_EJECTOR|GUN_WY_RESTRICTED|GUN_SPECIALIST|GUN_WIELDED_FIRING_ONLY|GUN_AMMO_COUNTER - starting_attachment_types = list(/obj/item/attachable/sniperbarrel) + starting_attachment_types = list(/obj/item/attachable/pmc_sniperbarrel) sniper_beam_type = /obj/effect/ebeam/laser/intense sniper_beam_icon = "laser_beam_intense" sniper_lockon_icon = "sniper_lockon_intense" diff --git a/code/modules/projectiles/item_to_box_mapping.dm b/code/modules/projectiles/item_to_box_mapping.dm index 45277d194b..5111ffc003 100644 --- a/code/modules/projectiles/item_to_box_mapping.dm +++ b/code/modules/projectiles/item_to_box_mapping.dm @@ -29,20 +29,21 @@ /datum/item_to_box_mapping/New() //Ammo magazine boxes, minus loose ammo boxes - for(var/obj/item/ammo_box/magazine/ammo_box as anything in typesof(/obj/item/ammo_box/magazine) - /obj/item/ammo_box/magazine/misc) + for(var/obj/item/ammo_box/magazine/ammo_box as anything in typesof(/obj/item/ammo_box/magazine) - /obj/item/ammo_box/magazine/misc - /obj/item/ammo_box/magazine/shotgun/light) if(initial(ammo_box.empty)) //Ignore all the empty boxes continue - if(initial(ammo_box.handfuls)) - //Ignore all the loose ammo boxes because they map with really bad numbers - continue var/datum/item_box_pairing/item_box_pairing = new() item_box_pairing.box = ammo_box item_box_pairing.item = initial(ammo_box.magazine_type) if(!item_box_pairing.item) //if the item is null somehow continue - item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines) + if(initial(ammo_box.handfuls)) + //If we are using handfuls we need to do some wonky conversion + item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines) / initial(ammo_box.magazine_type.max_rounds) + else + item_box_pairing.items_in_box = initial(ammo_box.num_of_magazines) add_pairing(item_box_pairing) //Grenade packets diff --git a/code/modules/projectiles/magazines/flamer.dm b/code/modules/projectiles/magazines/flamer.dm index 787a058564..2bdc0546c2 100644 --- a/code/modules/projectiles/magazines/flamer.dm +++ b/code/modules/projectiles/magazines/flamer.dm @@ -13,6 +13,7 @@ w_class = SIZE_MEDIUM //making sure you can't sneak this onto your belt. gun_type = /obj/item/weapon/gun/flamer caliber = "UT-Napthal Fuel" //Ultra Thick Napthal Fuel, from the lore book. + var/custom = FALSE //accepts custom fuels if true var/flamer_chem = "utnapthal" flags_magazine = AMMUNITION_HIDE_AMMO @@ -77,7 +78,7 @@ if(!istype(target, /obj/structure/reagent_dispensers/fueltank) && !istype(target, /obj/item/tool/weldpack) && !istype(target, /obj/item/storage/backpack/marine/engineerpack)) return ..() - if(!target.reagents || target.reagents.reagent_list.len < 1) + if(!target.reagents || length(target.reagents.reagent_list) < 1) to_chat(user, SPAN_WARNING("[target] is empty!")) return @@ -90,11 +91,15 @@ to_chat(user, SPAN_WARNING("You can't mix fuel mixtures!")) return - if(!to_add.intensityfire) + if(istype(to_add, /datum/reagent/generated) && !custom) + to_chat(user, SPAN_WARNING("[src] cannot accept custom fuels!")) + return + + if(!to_add.intensityfire && to_add.id != "stablefoam" && !istype(src, /obj/item/ammo_magazine/flamer_tank/smoke)) to_chat(user, SPAN_WARNING("This chemical is not potent enough to be used in a flamethrower!")) return - var/fuel_amt_to_remove = Clamp(to_add.volume, 0, max_rounds - reagents.get_reagent_amount(to_add.id)) + var/fuel_amt_to_remove = clamp(to_add.volume, 0, max_rounds - reagents.get_reagent_amount(to_add.id)) if(!fuel_amt_to_remove) if(!max_rounds) to_chat(user, SPAN_WARNING("[target] is empty!")) @@ -128,7 +133,7 @@ /obj/item/ammo_magazine/flamer_tank/get_examine_text(mob/user) . = ..() . += SPAN_NOTICE("It contains:") - if(reagents && reagents.reagent_list.len) + if(reagents && length(reagents.reagent_list)) for(var/datum/reagent/R in reagents.reagent_list) . += SPAN_NOTICE(" [R.volume] units of [R.name].") else @@ -161,6 +166,7 @@ max_rounds = 100 max_range = 5 fuel_pressure = 1 + custom = TRUE /obj/item/ammo_magazine/flamer_tank/custom/verb/set_fuel_pressure() set name = "Change Fuel Pressure" @@ -171,7 +177,7 @@ if(usr.get_active_hand() != src) return - var/set_pressure = Clamp(tgui_input_number(usr, "Change fuel pressure to: (max: [max_pressure])", "Fuel pressure", fuel_pressure, 10, 1), 1 ,max_pressure) + var/set_pressure = clamp(tgui_input_number(usr, "Change fuel pressure to: (max: [max_pressure])", "Fuel pressure", fuel_pressure, 10, 1), 1 ,max_pressure) if(!set_pressure) to_chat(usr, SPAN_WARNING("You can't find that setting on the regulator!")) else @@ -236,3 +242,31 @@ max_intensity = 60 max_range = 8 max_duration = 50 + +/obj/item/ammo_magazine/flamer_tank/smoke + name = "custom incinerator smoke tank" + desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it." + matter = list("metal" = 3750) + flamer_chem = null + custom = TRUE + +//tanks printable by the research biomass machine +/obj/item/ammo_magazine/flamer_tank/custom/upgraded + name = "upgraded custom incinerator tank" + desc = "A fuel tank used to store fuel for use in the M240 incinerator unit. This one has been modified with a larger and more sophisticated internal propellant tank, allowing for bigger capacity and stronger fuels." + matter = list("metal" = 50) // no free metal + flamer_chem = null + max_rounds = 200 + max_range = 7 + fuel_pressure = 1 + max_duration = 50 + max_intensity = 60 + custom = TRUE + +/obj/item/ammo_magazine/flamer_tank/smoke/upgraded + name = "large custom incinerator smoke tank" + desc = "A tank holding powdered smoke that expands when exposed to an open flame and carries any chemicals along with it. This one has been outfitted with an upgraded internal compressor, allowing for bigger capacity." + matter = list("metal" = 50) //no free metal + flamer_chem = null + custom = TRUE + max_rounds = 150 diff --git a/code/modules/projectiles/magazines/lever_action.dm b/code/modules/projectiles/magazines/lever_action.dm index 2eb2d25a28..ac1d57dbd4 100644 --- a/code/modules/projectiles/magazines/lever_action.dm +++ b/code/modules/projectiles/magazines/lever_action.dm @@ -52,6 +52,7 @@ Similar to shotguns.dm but not exactly. icon_state = "458-box" item_state = "458-box" default_ammo = /datum/ammo/bullet/lever_action/xm88 + max_rounds = 100 caliber = ".458" gun_type = /obj/item/weapon/gun/lever_action/xm88 handful_state = "boomslang_bullet" diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 60c9ee3dd3..e78e6da5b3 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -47,12 +47,16 @@ //rocket launchers /obj/item/ammo_magazine/rifle/grenadespawner + AUTOWIKI_SKIP(TRUE) + name = "\improper GRENADE SPAWNER AMMO" desc = "OH GOD OH FUCK" default_ammo = /datum/ammo/grenade_container/rifle ammo_band_color = AMMO_BAND_COLOR_LIGHT_EXPLOSIVE /obj/item/ammo_magazine/rifle/huggerspawner + AUTOWIKI_SKIP(TRUE) + name = "\improper HUGGER SPAWNER AMMO" desc = "OH GOD OH FUCK" default_ammo = /datum/ammo/hugger_container diff --git a/code/modules/projectiles/magazines/revolvers.dm b/code/modules/projectiles/magazines/revolvers.dm index 8b32587c7a..6bd3db1ebd 100644 --- a/code/modules/projectiles/magazines/revolvers.dm +++ b/code/modules/projectiles/magazines/revolvers.dm @@ -24,6 +24,7 @@ /obj/item/ammo_magazine/revolver/heavy name = "\improper M44 heavy speed loader (.44)" + desc = "A revolver speed loader containing heavy bullets. While less damaging overall than the traditional rounds, they are more accurate." default_ammo = /datum/ammo/bullet/revolver/heavy caliber = ".44" ammo_band_color = REVOLVER_TIP_COLOR_HEAVY diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index 24b5edfc92..2fe671d04c 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -308,8 +308,15 @@ max_rounds = 200 ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING +/obj/item/ammo_magazine/rifle/lmg/ap + name = "\improper M41AE2 ammo box (10x24mm armor-piercing)" + desc = "A semi-rectangular box of armor-piercing rounds for the M41AE2 Heavy Pulse Rifle." + default_ammo = /datum/ammo/bullet/rifle/ap + max_rounds = 300 + ammo_band_color = AMMO_BAND_COLOR_AP + /obj/item/ammo_magazine/rifle/lmg/heap - name = "\improper M41AE2 HEAP ammo box (10x24mm)" + name = "\improper M41AE2 ammo box (10x24mm high-explosive armor-piercing)" desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle. This one contains the standard Armor-Piercing explosive tipped round of the USCM." default_ammo = /datum/ammo/bullet/rifle/heap max_rounds = 300 @@ -491,6 +498,14 @@ max_rounds = 4 gun_type = /obj/item/weapon/gun/boltaction/vulture w_class = SIZE_MEDIUM // maybe small? This shit's >4 inches long mind you + ammo_band_icon = "+vulture_band" + ammo_band_icon_empty = "+vulture_band_e" + +/obj/item/ammo_magazine/rifle/boltaction/vulture/holo_target + name = "\improper M707 \"Vulture\" holo-target magazine (20x102mm)" + desc = "A magazine for the M707 \"Vulture\" anti-matieriel rifle. Contains up to 4 massively oversized IFF-CAPABLE holo-targeting rounds, which excel at marking heavy targets to be attacked by allied ground forces. The logistical requirements for such capabilities heavily hinder the performance and stopping power of this round." + default_ammo = /datum/ammo/bullet/sniper/anti_materiel/vulture/holo_target + ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING //=ROYAL MARINES=\\ @@ -533,3 +548,17 @@ item_state = "aug_dmr" default_ammo = /datum/ammo/bullet/rifle/heap ammo_band_color = AMMO_BAND_COLOR_HEAP + +//-------------------------------------------------------- +//XM51 BREACHING SHOTGUN + +/obj/item/ammo_magazine/rifle/xm51 + name = "\improper XM51 magazine (16g)" + desc = "A 16 gauge pump-action shotgun magazine." + icon_state = "xm51" + caliber = "16g" + w_class = SIZE_MEDIUM + default_ammo = /datum/ammo/bullet/shotgun/light/breaching + max_rounds = 12 + gun_type = /obj/item/weapon/gun/rifle/xm51 + transfer_handful_amount = 6 diff --git a/code/modules/projectiles/magazines/sentries.dm b/code/modules/projectiles/magazines/sentries.dm index 8fbf6ed496..a8cb43b922 100644 --- a/code/modules/projectiles/magazines/sentries.dm +++ b/code/modules/projectiles/magazines/sentries.dm @@ -35,6 +35,30 @@ max_rounds = 50 default_ammo = /datum/ammo/bullet/shotgun/buckshot +/obj/item/ammo_magazine/sentry/wy + name = "H20 ammo drum (10x42mm Caseless)" + desc = "An ammo drum of 200 10x42mm caseless rounds for the WY 202-GMA1 Smart Sentry. Just feed it into the sentry gun's ammo port when its ammo is depleted." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi' + icon_state = "wy22e5" + caliber = "10x42mm" + max_rounds = 200 + +/obj/item/ammo_magazine/sentry/wy/mini + name = "H16 ammo drum (10x12mm Caseless)" + desc = "An ammo drum of 1000 10x12mm caseless rounds for the WY 14-GRA2 Mini Sentry. Just feed it into the sentry gun's ammo port when its ammo is depleted." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi' + icon_state = "wy22e5" + caliber = "10x12mm" + max_rounds = 1000 + +/obj/item/ammo_magazine/sentry/upp + name = "SR32 ammo drum (10x32mm Caseless)" + desc = "An ammo drum of 200 10x32mm caseless rounds for the UPP SDS-R3 Sentry Gun. Just feed it into the sentry gun's ammo port when its ammo is depleted." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi' + icon_state = "uppsds4" + caliber = "10x42mm" + max_rounds = 200 + // FLAMER Sentry /obj/item/ammo_magazine/sentry_flamer name = "sentry incinerator tank" @@ -57,3 +81,21 @@ name = "mini sentry incinerator tank" desc = "A fuel tank of Ultra Thick Napthal Fuel, used in the UA 45-FM." default_ammo = /datum/ammo/flamethrower/sentry_flamer/mini + +/obj/item/ammo_magazine/sentry_flamer/wy + name = "wy sentry incinerator tank" + desc = "A fuel tank of Ultra Thick Sticky Napthal Fuel, used in the WY 406-FE2." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi' + icon_state = "wy22e5" + caliber = "Sticky Napalm" + max_rounds = 200 + default_ammo = /datum/ammo/flamethrower/sentry_flamer/wy + +/obj/item/ammo_magazine/sentry_flamer/upp + name = "upp sentry incinerator tank" + desc = "A fuel tank of Ultra Thick Gel Napthal Fuel, used in the UPP SDS-R5 Sentry Flamer." + icon = 'icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi' + icon_state = "uppsds4" + caliber = "Sticky Napalm" + max_rounds = 200 + default_ammo = /datum/ammo/flamethrower/sentry_flamer/upp diff --git a/code/modules/projectiles/magazines/shotguns.dm b/code/modules/projectiles/magazines/shotguns.dm index e378aed3c4..9fe9f0f440 100644 --- a/code/modules/projectiles/magazines/shotguns.dm +++ b/code/modules/projectiles/magazines/shotguns.dm @@ -8,11 +8,11 @@ you're looking back on the different shotgun projectiles available. In short of one type of shotgun ammo, but I think it helps in referencing it. ~N */ -var/list/shotgun_boxes_12g = list( +GLOBAL_LIST_INIT(shotgun_boxes_12g, list( /obj/item/ammo_magazine/shotgun/buckshot, /obj/item/ammo_magazine/shotgun/flechette, /obj/item/ammo_magazine/shotgun/slugs - ) + )) /obj/item/ammo_magazine/shotgun name = "box of shotgun slugs" @@ -46,6 +46,14 @@ var/list/shotgun_boxes_12g = list( default_ammo = /datum/ammo/bullet/shotgun/incendiary handful_state = "incendiary_slug" +/obj/item/ammo_magazine/shotgun/incendiarybuck + name = "box of incendiary buckshots" + desc = "A box filled with self-detonating buckshot incendiary shotgun rounds. 12 Gauge." + icon_state = "incendiarybuck" + item_state = "incendiarybuck" + default_ammo = /datum/ammo/bullet/shotgun/buckshot/incendiary + handful_state = "incen_buckshot" + /obj/item/ammo_magazine/shotgun/buckshot name = "box of buckshot shells" desc = "A box filled with buckshot spread shotgun shells. 12 Gauge." @@ -70,6 +78,18 @@ var/list/shotgun_boxes_12g = list( default_ammo = /datum/ammo/bullet/shotgun/beanbag handful_state = "beanbag_slug" +/obj/item/ammo_magazine/shotgun/light/breaching + name = "box of breaching shells" + desc = "A box filled with breaching shotgun shells. 16 Gauge." + icon_state = "breaching" + item_state = "breaching" + max_rounds = 30 //6 handfuls of 6 shells, 12 rounds in a XM51 mag + transfer_handful_amount = 6 + default_ammo = /datum/ammo/bullet/shotgun/light/breaching + handful_state = "breaching_shell" + caliber = "16g" + + /obj/item/ammo_magazine/shotgun/buckshot/special name = "box of buckshot shells, USCM special type" desc = "A box filled with buckshot spread shotgun shells, USCM special type. 12 Gauge." @@ -143,21 +163,21 @@ also doesn't really matter. You can only reload them with handfuls. Handfuls of shotgun rounds. For spawning directly on mobs in roundstart, ERTs, etc */ -var/list/shotgun_handfuls_8g = list( +GLOBAL_LIST_INIT(shotgun_handfuls_8g, list( /obj/item/ammo_magazine/handful/shotgun/heavy/slug, /obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, /obj/item/ammo_magazine/handful/shotgun/heavy/flechette, /obj/item/ammo_magazine/handful/shotgun/heavy/dragonsbreath - ) + )) -var/list/shotgun_handfuls_12g = list( +GLOBAL_LIST_INIT(shotgun_handfuls_12g, list( /obj/item/ammo_magazine/handful/shotgun/slug, /obj/item/ammo_magazine/handful/shotgun/buckshot, /obj/item/ammo_magazine/handful/shotgun/flechette, /obj/item/ammo_magazine/handful/shotgun/incendiary, /obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary, /obj/item/ammo_magazine/handful/shotgun/beanbag - ) + )) /obj/item/ammo_magazine/handful/shotgun name = "handful of shotgun slugs (12g)" @@ -227,7 +247,6 @@ var/list/shotgun_handfuls_12g = list( name = "handful of beanbag slugs (20g)" caliber = "20g" - /obj/item/ammo_magazine/handful/shotgun/heavy name = "handful of heavy shotgun slugs (8g)" icon_state = "heavy_slug_4" @@ -271,6 +290,17 @@ var/list/shotgun_handfuls_12g = list( handful_state = "heavy_beanbag" default_ammo = /datum/ammo/bullet/shotgun/heavy/beanbag +/obj/item/ammo_magazine/handful/shotgun/light/breaching + name = "handful of breaching shells (16g)" + icon_state = "breaching_shell_6" + handful_state = "breaching_shell" + max_rounds = 6 //XM51 magazines are 12 rounds total, two handfuls should be enough to reload a mag + current_rounds = 6 + transfer_handful_amount = 6 + default_ammo = /datum/ammo/bullet/shotgun/light/breaching + caliber = "16g" + gun_type = /obj/item/weapon/gun/rifle/xm51 + /obj/item/ammo_magazine/handful/shotgun/twobore name = "handful of shotgun slugs (2 bore)" icon_state = "twobore_3" diff --git a/code/modules/projectiles/magazines/specialist.dm b/code/modules/projectiles/magazines/specialist.dm index cda8282d0a..a0943dbd93 100644 --- a/code/modules/projectiles/magazines/specialist.dm +++ b/code/modules/projectiles/magazines/specialist.dm @@ -27,14 +27,14 @@ default_ammo = /datum/ammo/bullet/sniper/flak ammo_band_color = AMMO_BAND_COLOR_IMPACT -//M42B Magazine +//XM43E1 Magazine /obj/item/ammo_magazine/sniper/anti_materiel - name = "\improper XM42B marksman magazine (10x99mm)" - desc = "A magazine of caseless 10x99mm anti-materiel rounds." + name = "\improper XM43E1 marksman magazine (10x99mm)" + desc = "A magazine of caseless 10x99mm anti-materiel rounds, capable of penetrating through most infantry-level materiel. Depending on what you hit, it might even have enough energy to wound anything behind the target." max_rounds = 8 caliber = "10x99mm" default_ammo = /datum/ammo/bullet/sniper/anti_materiel - gun_type = /obj/item/weapon/gun/rifle/sniper/XM42B + gun_type = /obj/item/weapon/gun/rifle/sniper/XM43E1 //M42C magazine @@ -258,12 +258,18 @@ user.put_in_hands(fuel) fuel = null update_icon() - desc = initial(desc) + "\n Contains[fuel?" fuel":""] [warhead?" and warhead":""]." return . = ..() +/obj/item/ammo_magazine/rocket/custom/get_examine_text(mob/user) + . = ..() + if(fuel) + . += SPAN_NOTICE("Contains fuel.") + if(warhead) + . += SPAN_NOTICE("Contains a warhead.") + /obj/item/ammo_magazine/rocket/custom/attackby(obj/item/W as obj, mob/user as mob) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You do not know how to tinker with [name].")) return if(current_rounds <= 0) @@ -288,7 +294,6 @@ W.forceMove(src) fuel = W to_chat(user, SPAN_DANGER("You add [W] to [name].")) - desc = initial(desc) + "\n Contains[fuel?" fuel":""] [warhead?" and warhead":""]." playsound(loc, 'sound/items/Screwdriver2.ogg', 25, 0, 6) else if(istype(W,/obj/item/explosive/warhead/rocket) && !locked) if(warhead) @@ -302,7 +307,6 @@ W.forceMove(src) warhead = W to_chat(user, SPAN_DANGER("You add [W] to [name].")) - desc = initial(desc) + "\n Contains[fuel?" fuel":""] [warhead?" and warhead":""]." playsound(loc, 'sound/items/Screwdriver2.ogg', 25, 0, 6) update_icon() diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index c75ea5daba..1c04208596 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -80,6 +80,16 @@ /// How much to make the bullet fall off by accuracy-wise when closer than the ideal range var/accuracy_range_falloff = 10 + /// Is this a lone (0), original (1), or bonus (2) projectile. Used in gun.dm and fire_bonus_projectiles() currently. + var/bonus_projectile_check = 0 + + /// What atom did this last receive a registered signal from? Used by damage_boost.dm + var/datum/weakref/last_atom_signaled = null + + /// Was this projectile affected by damage_boost.dm? If so, what was the last modifier? + var/damage_boosted = 0 + var/last_damage_mult = 1 + /obj/projectile/Initialize(mapload, datum/cause_data/cause_data) . = ..() path = list() @@ -96,7 +106,10 @@ starting = null permutated = null path = null + vis_source = null + process_start_turf = null weapon_cause_data = null + bullet_traits = null firer = null QDEL_NULL(bound_beam) SSprojectiles.stop_projectile(src) @@ -161,10 +174,16 @@ apply_bullet_trait(L) /obj/projectile/proc/calculate_damage() + + if(damage_boosted) + damage = damage / last_damage_mult + damage_boosted-- + last_damage_mult = 1 + if(effective_range_min && distance_travelled < effective_range_min) - return max(0, damage - round((effective_range_min - distance_travelled) * damage_buildup)) + return max(0, damage - floor((effective_range_min - distance_travelled) * damage_buildup)) else if(distance_travelled > effective_range_max) - return max(0, damage - round((distance_travelled - effective_range_max) * damage_falloff)) + return max(0, damage - floor((distance_travelled - effective_range_max) * damage_falloff)) return damage // Target, firer, shot from (i.e. the gun), projectile range, projectile speed, original target (who was aimed at, not where projectile is going towards) @@ -201,10 +220,10 @@ setDir(get_dir(loc, target_turf)) var/ammo_flags = ammo.flags_ammo_behavior | projectile_override_flags - if(round_statistics && ammo_flags & AMMO_BALLISTIC) - round_statistics.total_projectiles_fired++ + if(GLOB.round_statistics && ammo_flags & AMMO_BALLISTIC) + GLOB.round_statistics.total_projectiles_fired++ if(ammo.bonus_projectiles_amount) - round_statistics.total_projectiles_fired += ammo.bonus_projectiles_amount + GLOB.round_statistics.total_projectiles_fired += ammo.bonus_projectiles_amount if(firer && ismob(firer) && weapon_cause_data) var/mob/M = firer M.track_shot(weapon_cause_data.cause_name) @@ -212,17 +231,18 @@ //If we have the right kind of ammo, we can fire several projectiles at once. if(ammo.bonus_projectiles_amount && ammo.bonus_projectiles_type) ammo.fire_bonus_projectiles(src) + bonus_projectile_check = 1 //Mark this projectile as having spawned a set of bonus projectiles. - path = getline2(starting, target_turf) - p_x += Clamp((rand()-0.5)*scatter*3, -8, 8) - p_y += Clamp((rand()-0.5)*scatter*3, -8, 8) + path = get_line(starting, target_turf) + p_x += clamp((rand()-0.5)*scatter*3, -8, 8) + p_y += clamp((rand()-0.5)*scatter*3, -8, 8) update_angle(starting, target_turf) src.speed = speed // Randomize speed by a small factor to help bullet animations look okay // Otherwise you get a s t r e a m of warping bullets in same positions src.speed *= (1 + (rand()-0.5) * 0.30) // 15.0% variance either way - src.speed = Clamp(src.speed, 0.1, 100) // Safety to avoid loop hazards + src.speed = clamp(src.speed, 0.1, 100) // Safety to avoid loop hazards // Also give it some headstart, flying it now ahead of tick var/delta_time = world.tick_lag * rand() * 0.4 @@ -234,8 +254,8 @@ SSprojectiles.queue_projectile(src) /obj/projectile/proc/update_angle(turf/source_turf, turf/aim_turf) - p_x = Clamp(p_x, -16, 16) - p_y = Clamp(p_y, -16, 16) + p_x = clamp(p_x, -16, 16) + p_y = clamp(p_y, -16, 16) if(process_start_turf != vis_source) vis_travelled = 0 @@ -243,20 +263,9 @@ vis_source_pixel_x = process_start_pixel_x vis_source_pixel_y = process_start_pixel_y - angle = 0 // Stolen from Get_Angle() basically var/dx = p_x + aim_turf.x * 32 - source_turf.x * 32 // todo account for firer offsets var/dy = p_y + aim_turf.y * 32 - source_turf.y * 32 - if(!dy) - if(dx >= 0) - angle = 90 - else - angle = 280 - else - angle = arctan(dx/dy) - if(dy < 0) - angle += 180 - else if(dx < 0) - angle += 360 + angle = delta_to_angle(dx, dy) /obj/projectile/process(delta_time) . = PROC_RETURN_SLEEP @@ -282,9 +291,6 @@ return FALSE -//#define LERP(a, b, t) (a + (b - a) * CLAMP01(t)) -#define LERP_UNCLAMPED(a, b, t) (a + (b - a) * t) - /// Animates the projectile across the process'ed flight. /obj/projectile/proc/animate_flight(turf/start_turf, start_pixel_x, start_pixel_y, delta_time) //Get pixelspace coordinates of start and end of visual path @@ -292,25 +298,25 @@ var/pixel_x_source = vis_source.x * world.icon_size + vis_source_pixel_x var/pixel_y_source = vis_source.y * world.icon_size + vis_source_pixel_y - var/turf/vis_target = path[path.len] + var/turf/vis_target = path[length(path)] var/pixel_x_target = vis_target.x * world.icon_size + p_x var/pixel_y_target = vis_target.y * world.icon_size + p_y //Change the bullet angle to its visual path - var/vis_angle = get_pixel_angle(x = pixel_x_target - pixel_x_source, y = pixel_y_target - pixel_y_source) //naming vars because the proc takes y then x and that's WEIRD + var/vis_angle = delta_to_angle(pixel_x_target - pixel_x_source, pixel_y_target - pixel_y_source) var/matrix/rotate = matrix() rotate.Turn(vis_angle) apply_transform(rotate) //Determine apparent position along visual path, then lerp between start and end positions - var/vis_length = vis_travelled + path.len + var/vis_length = vis_travelled + length(path) var/vis_current = vis_travelled + speed * (time_carry * 0.1) //speed * (time_carry * 0.1) for remainder time movement, visually "catching up" to where it should be var/vis_interpolant = vis_current / vis_length - var/pixel_x_lerped = LERP_UNCLAMPED(pixel_x_source, pixel_x_target, vis_interpolant) - var/pixel_y_lerped = LERP_UNCLAMPED(pixel_y_source, pixel_y_target, vis_interpolant) + var/pixel_x_lerped = LERP(pixel_x_source, pixel_x_target, vis_interpolant) + var/pixel_y_lerped = LERP(pixel_y_source, pixel_y_target, vis_interpolant) //Convert pixelspace to pixel offset relative to current loc @@ -327,22 +333,13 @@ var/dist_current = distance_travelled + speed * (time_carry * 0.1) //speed * (time_carry * 0.1) for remainder time fade-in var/alpha_interpolant = dist_current - 1 //-1 so it transitions from transparent to opaque between dist 1-2 - var/alpha_new = LERP_UNCLAMPED(0, 255, alpha_interpolant) + var/alpha_new = LERP(0, 255, alpha_interpolant) //Animate the visuals from starting position to new position - if(projectile_flags & PROJECTILE_SHRAPNEL) //there can be a LOT of shrapnel especially from a cluster OB, not important enough for the expense of an animate() - alpha = alpha_new - pixel_x = pixel_x_rel_new - pixel_y = pixel_y_rel_new - return - var/anim_time = delta_time * 0.1 animate(src, pixel_x = pixel_x_rel_new, pixel_y = pixel_y_rel_new, alpha = alpha_new, time = anim_time, flags = ANIMATION_END_NOW) -//#undef LERP -#undef LERP_UNCLAMPED - /// Flies the projectile forward one single turf /obj/projectile/proc/fly() SHOULD_NOT_SLEEP(TRUE) @@ -375,7 +372,7 @@ return TRUE // Process on move effects - if(distance_travelled == round(ammo.max_range / 2)) + if(distance_travelled == floor(ammo.max_range / 2)) ammo.do_at_half_range(src) if(distance_travelled >= ammo.max_range) ammo.do_at_max_range(src) @@ -394,7 +391,7 @@ /obj/projectile/proc/retarget(atom/new_target, keep_angle = FALSE) var/turf/current_turf = get_turf(src) - path = getline2(current_turf, new_target) + path = get_line(current_turf, new_target) path.Cut(1, 2) // remove the turf we're already on var/atom/source = keep_angle ? original : current_turf update_angle(source, new_target) @@ -524,19 +521,20 @@ def_zone = rand_zone() // Other targets do the same roll with penalty - a near hit will hit but redirected to another limb - else if(!isxeno(L) && hit_roll > hit_chance - 20 - base_miss_chance[def_zone]) + else if(!isxeno(L) && hit_roll > hit_chance - 20 - GLOB.base_miss_chance[def_zone]) def_zone = rand_zone() else direct_hit = TRUE - SEND_SIGNAL(firer, COMSIG_BULLET_DIRECT_HIT, L) + if(firer) + SEND_SIGNAL(firer, COMSIG_BULLET_DIRECT_HIT, L) // At present, Xenos have no inherent effects or localized damage stemming from limb targeting // Therefore we exempt the shooter from direct hit accuracy penalties as well, // simply to avoid them from resetting target to chest every time they want to shoot a xeno if(!direct_hit || !isxeno(L)) // For normal people or direct hits we apply the limb accuracy penalty - hit_chance -= base_miss_chance[def_zone] + hit_chance -= GLOB.base_miss_chance[def_zone] // else for direct hits on xenos, we skip it, pretending it's a chest shot with zero penalty #if DEBUG_HIT_CHANCE @@ -839,8 +837,8 @@ //mobs use get_projectile_hit_chance instead of get_projectile_hit_boolean /mob/living/proc/get_projectile_hit_chance(obj/projectile/P) - if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NESTED)) && src != P.original) - return FALSE // Snowflake check for xeno nests, because we want bullets to fly through even though they're standing in it + if((body_position == LYING_DOWN || HAS_TRAIT(src, TRAIT_NO_STRAY)) && src != P.original) + return FALSE var/ammo_flags = P.ammo.flags_ammo_behavior | P.projectile_override_flags if(ammo_flags & AMMO_XENO) if((status_flags & XENO_HOST) && HAS_TRAIT(src, TRAIT_NESTED)) @@ -938,8 +936,8 @@ apply_effects(arglist(P.ammo.debilitate)) . = TRUE + bullet_message(P, damaging = damage) if(damage) - bullet_message(P) apply_damage(damage, P.ammo.damage_type, P.def_zone, 0, 0, P) P.play_hit_effect(src) @@ -1033,7 +1031,7 @@ . = TRUE apply_damage(damage_result, P.ammo.damage_type, P.def_zone, firer = P.firer) - if(P.ammo.shrapnel_chance > 0 && prob(P.ammo.shrapnel_chance + round(damage / 10))) + if(P.ammo.shrapnel_chance > 0 && prob(P.ammo.shrapnel_chance + floor(damage / 10))) if(ammo_flags & AMMO_SPECIAL_EMBED) P.ammo.on_embed(src, organ) @@ -1070,9 +1068,10 @@ if((ammo_flags & AMMO_FLAME) && (src.caste.fire_immunity & FIRE_IMMUNITY_NO_IGNITE|FIRE_IMMUNITY_NO_DAMAGE)) to_chat(src, SPAN_AVOIDHARM("You shrug off the glob of flame.")) + bullet_message(P, damaging = FALSE) return - if(isxeno(P.firer)) + if(isxeno(P.firer) && ammo_flags & (AMMO_ACIDIC|AMMO_XENO)) //Xenomorph shooting spit. Xenos with thumbs and guns can fully FF. var/mob/living/carbon/xenomorph/X = P.firer if(X.can_not_harm(src)) bullet_ping(P) @@ -1128,11 +1127,11 @@ handle_blood_splatter(get_dir(P.starting, loc)) apply_damage(damage_result,P.ammo.damage_type, P.def_zone) //Deal the damage. - if(xeno_shields.len) + if(length(xeno_shields)) P.play_shielded_hit_effect(src) else P.play_hit_effect(src) - if(!stat && prob(5 + round(damage_result / 4))) + if(!stat && prob(5 + floor(damage_result / 4))) var/pain_emote = prob(70) ? "hiss" : "roar" emote(pain_emote) updatehealth() @@ -1175,12 +1174,12 @@ switch(P.ammo.damage_type) if(BRUTE) //Rockets do extra damage to walls. if(ammo_flags & AMMO_ROCKET) - damage = round(damage * 10) + damage = floor(damage * 10) if(BURN) if(ammo_flags & AMMO_ENERGY) - damage = round(damage * 7) + damage = floor(damage * 7) else if(ammo_flags & AMMO_ANTISTRUCT) // Railgun does extra damage to turfs - damage = round(damage * ANTISTRUCT_DMG_MULT_WALL) + damage = floor(damage * ANTISTRUCT_DMG_MULT_WALL) if(ammo_flags & AMMO_BALLISTIC) current_bulletholes++ take_damage(damage, P.firer) @@ -1209,7 +1208,7 @@ /obj/structure/surface/table/bullet_act(obj/projectile/P) bullet_ping(P) - health -= round(P.damage/2) + health -= floor(P.damage/2) if(health < 0) visible_message(SPAN_WARNING("[src] breaks down!")) deconstruct() @@ -1231,8 +1230,8 @@ if(P.ammo.sound_bounce) playsound(src, P.ammo.sound_bounce, 50, 1) var/image/I = image('icons/obj/items/weapons/projectiles.dmi', src, P.ammo.ping, 10) - var/offset_x = Clamp(P.pixel_x + pixel_x_offset, -10, 10) - var/offset_y = Clamp(P.pixel_y + pixel_y_offset, -10, 10) + var/offset_x = clamp(P.pixel_x + pixel_x_offset, -10, 10) + var/offset_y = clamp(P.pixel_y + pixel_y_offset, -10, 10) I.pixel_x += round(rand(-4,4) + offset_x, 1) I.pixel_y += round(rand(-4,4) + offset_y, 1) @@ -1245,22 +1244,23 @@ /// People getting shot by a large amount of bullets in a very short period of time can lag them out, with chat messages being one cause, so a 1s cooldown per hit message is introduced to assuage that /mob/var/shot_cooldown = 0 -/mob/proc/bullet_message(obj/projectile/P) +/mob/proc/bullet_message(obj/projectile/P, damaging = TRUE) if(!P) return - if(COOLDOWN_FINISHED(src, shot_cooldown)) + if(damaging && COOLDOWN_FINISHED(src, shot_cooldown)) visible_message(SPAN_DANGER("[src] is hit by the [P.name] in the [parse_zone(P.def_zone)]!"), \ - SPAN_HIGHDANGER("You are hit by the [P.name] in the [parse_zone(P.def_zone)]!"), null, 4, CHAT_TYPE_TAKING_HIT) + SPAN_HIGHDANGER("[isxeno(src) ? "We" : "You"] are hit by the [P.name] in the [parse_zone(P.def_zone)]!"), null, 4, CHAT_TYPE_TAKING_HIT) COOLDOWN_START(src, shot_cooldown, 1 SECONDS) + var/shot_from = P.shot_from ? " from \a [P.shot_from]" : "" last_damage_data = P.weapon_cause_data if(P.firer && ismob(P.firer)) var/mob/firingMob = P.firer var/area/A = get_area(src) if(ishuman(firingMob) && ishuman(src) && faction == firingMob.faction && !A?.statistic_exempt) //One human shot another, be worried about it but do everything basically the same //special_role should be null or an empty string if done correctly if(!istype(P.ammo, /datum/ammo/energy/taser)) - round_statistics.total_friendly_fire_instances++ - var/ff_msg = "[key_name(firingMob)] shot [key_name(src)] with \a [P.name] in [get_area(firingMob)] [ADMIN_JMP(firingMob)] [ADMIN_PM(firingMob)]" + GLOB.round_statistics.total_friendly_fire_instances++ + var/ff_msg = "[key_name(firingMob)] shot [key_name(src)] with \a [P][shot_from] in [get_area(firingMob)] [ADMIN_JMP(firingMob)] [ADMIN_PM(firingMob)]" var/ff_living = TRUE if(src.stat == DEAD) ff_living = FALSE @@ -1269,15 +1269,15 @@ var/mob/living/carbon/human/H = firingMob H.track_friendly_fire(P.weapon_cause_data.cause_name) else - msg_admin_attack("[key_name(firingMob)] tased [key_name(src)] in [get_area(firingMob)] ([firingMob.x],[firingMob.y],[firingMob.z]).", firingMob.x, firingMob.y, firingMob.z) + msg_admin_attack("[key_name(firingMob)] tased [key_name(src)][shot_from] in [get_area(firingMob)] ([firingMob.x],[firingMob.y],[firingMob.z]).", firingMob.x, firingMob.y, firingMob.z) else - msg_admin_attack("[key_name(firingMob)] shot [key_name(src)] with \a [P.name] in [get_area(firingMob)] ([firingMob.x],[firingMob.y],[firingMob.z]).", firingMob.x, firingMob.y, firingMob.z) - attack_log += "\[[time_stamp()]\] [key_name(firingMob)] shot [key_name(src)] with \a [P] in [get_area(firingMob)]." - firingMob.attack_log += "\[[time_stamp()]\] [key_name(firingMob)] shot [key_name(src)] with \a [P] in [get_area(firingMob)]." + msg_admin_attack("[key_name(firingMob)] shot [key_name(src)] with \a [P][shot_from] in [get_area(firingMob)] ([firingMob.x],[firingMob.y],[firingMob.z]).", firingMob.x, firingMob.y, firingMob.z) + attack_log += "\[[time_stamp()]\] [key_name(firingMob)] shot [key_name(src)] with \a [P][shot_from] in [get_area(firingMob)]." + firingMob.attack_log += "\[[time_stamp()]\] [key_name(firingMob)] shot [key_name(src)] with \a [P][shot_from] in [get_area(firingMob)]." return - attack_log += "\[[time_stamp()]\] SOMETHING?? shot [key_name(src)] with a [P]" - msg_admin_attack("SOMETHING?? shot [key_name(src)] with a [P] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).", loc.x, loc.y, loc.z) + attack_log += "\[[time_stamp()]\] [P.firer ? P.firer : "SOMETHING??"] shot [key_name(src)] with a [P][shot_from]" + msg_admin_attack("[P.firer ? P.firer : "SOMETHING??"] shot [key_name(src)] with \a [P][shot_from] in [get_area(src)] ([loc.x],[loc.y],[loc.z]).", loc.x, loc.y, loc.z) //Abby -- Just check if they're 1 tile horizontal or vertical, no diagonals /proc/get_adj_simple(atom/Loc1,atom/Loc2) diff --git a/code/modules/reagents/Chemistry-Colours.dm b/code/modules/reagents/Chemistry-Colours.dm index 70705160f4..f600a74790 100644 --- a/code/modules/reagents/Chemistry-Colours.dm +++ b/code/modules/reagents/Chemistry-Colours.dm @@ -55,7 +55,7 @@ var/mixedcolor = 0 for(i=1; i<=contents; i++) mixedcolor += weight[i]*color[i] - mixedcolor = round(mixedcolor) + mixedcolor = floor(mixedcolor) //until someone writes a formal proof for this algorithm, let's keep this in // if(mixedcolor<0x00 || mixedcolor>0xFF) diff --git a/code/modules/reagents/Chemistry-Generator.dm b/code/modules/reagents/Chemistry-Generator.dm index bb8f69b714..813e0d9686 100644 --- a/code/modules/reagents/Chemistry-Generator.dm +++ b/code/modules/reagents/Chemistry-Generator.dm @@ -75,56 +75,56 @@ if(my_chemid) //Do we want a specific chem? chem_id = my_chemid else if(class) //do we want a specific class? - chem_id = pick(chemical_gen_classes_list["C[class]"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C[class]"]) else var/roll = rand(0,100) switch(tier) if(0) - chem_id = pick(chemical_gen_classes_list["C"])//If tier is 0, we can add any classed chemical + chem_id = pick(GLOB.chemical_gen_classes_list["C"])//If tier is 0, we can add any classed chemical if(1) if(roll<=35) - chem_id = pick(chemical_gen_classes_list["C1"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C1"]) else if(roll<=65) - chem_id = pick(chemical_gen_classes_list["C2"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C2"]) else if(roll<=85) - chem_id = pick(chemical_gen_classes_list["C3"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C3"]) else - chem_id = pick(chemical_gen_classes_list["C4"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C4"]) if(2) if(roll<=30) - chem_id = pick(chemical_gen_classes_list["C1"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C1"]) else if(roll<=55) - chem_id = pick(chemical_gen_classes_list["C2"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C2"]) else if(roll<=70) - chem_id = pick(chemical_gen_classes_list["C3"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C3"]) else - chem_id = pick(chemical_gen_classes_list["C4"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C4"]) if(3) if(roll<=10) - chem_id = pick(chemical_gen_classes_list["C1"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C1"]) else if(roll<=30) - chem_id = pick(chemical_gen_classes_list["C2"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C2"]) else if(roll<=50) - chem_id = pick(chemical_gen_classes_list["C3"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C3"]) else if(roll<=70) - chem_id = pick(chemical_gen_classes_list["C4"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C4"]) else - chem_id = pick(chemical_gen_classes_list["C5"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C5"]) else if(!required_reagents || is_catalyst)//first component is more likely to be special in chems tier 4 or higher, catalysts are always special in tier 4 or higher if (prob(50)) - chem_id = pick(chemical_gen_classes_list["C5"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C5"]) else - chem_id = pick(chemical_gen_classes_list["C4"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C4"]) else if(roll<=15) - chem_id = pick(chemical_gen_classes_list["C2"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C2"]) else if(roll<=40) - chem_id = pick(chemical_gen_classes_list["C3"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C3"]) else if(roll<=65) - chem_id = pick(chemical_gen_classes_list["C4"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C4"]) else - chem_id = pick(chemical_gen_classes_list["C5"]) + chem_id = pick(GLOB.chemical_gen_classes_list["C5"]) //if we are already using this reagent, try again if(required_reagents && required_reagents.Find(chem_id)) @@ -169,7 +169,7 @@ while(!gen_name) gen_name = addtext(pick(prefix),pick(wordroot),pick(suffix)) //Make sure this name is not already used - for(var/datum/reagent/R in chemical_reagents_list) + for(var/datum/reagent/R in GLOB.chemical_reagents_list) if(R.name == gen_name)//if we are already using this name, try again gen_name = "" //set name @@ -249,65 +249,65 @@ var/property var/roll = rand(1,100) if(make_rare) - property = pick(chemical_properties_list["rare"]) + property = pick(GLOB.chemical_properties_list["rare"]) //Pick the property by value and roll else if(value_offset > 0) //Balance the value of our chemical - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) else if(value_offset < 0) if(roll <= gen_tier*10) - property = pick(chemical_properties_list["negative"]) + property = pick(GLOB.chemical_properties_list["negative"]) else - property = pick(chemical_properties_list["neutral"]) + property = pick(GLOB.chemical_properties_list["neutral"]) else switch(gen_tier) if(1) if(roll<=20) - property = pick(chemical_properties_list["negative"]) + property = pick(GLOB.chemical_properties_list["negative"]) else if (roll<=50) - property = pick(chemical_properties_list["neutral"]) + property = pick(GLOB.chemical_properties_list["neutral"]) else - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) if(2) if(roll<=25) - property = pick(chemical_properties_list["negative"]) + property = pick(GLOB.chemical_properties_list["negative"]) else if (roll<=45) - property = pick(chemical_properties_list["neutral"]) + property = pick(GLOB.chemical_properties_list["neutral"]) else - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) if(3) if(roll<=15) - property = pick(chemical_properties_list["negative"]) + property = pick(GLOB.chemical_properties_list["negative"]) else if (roll<=40) - property = pick(chemical_properties_list["neutral"]) + property = pick(GLOB.chemical_properties_list["neutral"]) else - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) else if(roll<=15) - property = pick(chemical_properties_list["negative"]) + property = pick(GLOB.chemical_properties_list["negative"]) else if (roll<=40) - property = pick(chemical_properties_list["neutral"]) + property = pick(GLOB.chemical_properties_list["neutral"]) else - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) if(track_added_properties) //Generated effects are more unique for lower-tier chemicals, but not higher-tier ones var/property_checks = 0 while(!check_generated_properties(property) && property_checks < 4) property_checks++ - if(LAZYISIN(chemical_properties_list["negative"], property)) - property = pick(chemical_properties_list["negative"]) - else if(LAZYISIN(chemical_properties_list["neutral"], property)) - property = pick(chemical_properties_list["neutral"]) + if(LAZYISIN(GLOB.chemical_properties_list["negative"], property)) + property = pick(GLOB.chemical_properties_list["negative"]) + else if(LAZYISIN(GLOB.chemical_properties_list["neutral"], property)) + property = pick(GLOB.chemical_properties_list["neutral"]) else - property = pick(chemical_properties_list["positive"]) + property = pick(GLOB.chemical_properties_list["positive"]) - var/datum/chem_property/P = chemical_properties_list[property] + var/datum/chem_property/P = GLOB.chemical_properties_list[property] //Calculate what our chemical value is with our level var/new_value if(isNegativeProperty(P)) new_value = -1 * level else if(isNeutralProperty(P)) - new_value = round(-1 * level / 2) + new_value = floor(-1 * level / 2) else new_value = level @@ -319,30 +319,6 @@ //*****************************************************************************************************/ /datum/reagent/proc/insert_property(property, level) - //The list below defines what properties should override each other. - var/list/conflicting_properties = list( PROPERTY_NUTRITIOUS = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_HEMOLYTIC, PROPERTY_TOXIC = PROPERTY_ANTITOXIC,\ - PROPERTY_CORROSIVE = PROPERTY_ANTICORROSIVE, PROPERTY_BIOCIDIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERTHERMIC = PROPERTY_HYPOTHERMIC,\ - PROPERTY_NUTRITIOUS = PROPERTY_KETOGENIC, PROPERTY_PAINING = PROPERTY_PAINKILLING, PROPERTY_HALLUCINOGENIC = PROPERTY_ANTIHALLUCINOGENIC,\ - PROPERTY_HEPATOTOXIC = PROPERTY_HEPATOPEUTIC, PROPERTY_NEPHROTOXIC = PROPERTY_NEPHROPEUTIC, PROPERTY_PNEUMOTOXIC = PROPERTY_PNEUMOPEUTIC,\ - PROPERTY_OCULOTOXIC = PROPERTY_OCULOPEUTIC, PROPERTY_CARDIOTOXIC = PROPERTY_CARDIOPEUTIC, PROPERTY_NEUROTOXIC = PROPERTY_NEUROPEUTIC,\ - PROPERTY_FLUXING = PROPERTY_REPAIRING, PROPERTY_RELAXING = PROPERTY_MUSCLESTIMULATING, PROPERTY_HEMOGENIC = PROPERTY_HEMOLYTIC,\ - PROPERTY_HEMOGENIC = PROPERTY_HEMORRAGING, PROPERTY_NUTRITIOUS = PROPERTY_EMETIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_NEOGENETIC, PROPERTY_HYPERGENETIC = PROPERTY_HEPATOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_NEPHROPEUTIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_PNEUMOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_OCULOPEUTIC, PROPERTY_HYPERGENETIC = PROPERTY_CARDIOPEUTIC,\ - PROPERTY_HYPERGENETIC = PROPERTY_NEUROPEUTIC, PROPERTY_ADDICTIVE = PROPERTY_ANTIADDICTIVE, PROPERTY_NEUROSHIELDING = PROPERTY_NEUROTOXIC,\ - PROPERTY_HYPOMETABOLIC = PROPERTY_HYPERMETABOLIC, PROPERTY_HYPERTHROTTLING = PROPERTY_NEUROINHIBITING, - PROPERTY_FOCUSING = PROPERTY_NERVESTIMULATING, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPERTHERMIC, PROPERTY_THERMOSTABILIZING = PROPERTY_HYPOTHERMIC, - PROPERTY_AIDING = PROPERTY_NEUROINHIBITING, PROPERTY_OXYGENATING = PROPERTY_HYPOXEMIC, PROPERTY_ANTICARCINOGENIC = PROPERTY_CARCINOGENIC, \ - PROPERTY_CIPHERING = PROPERTY_CIPHERING_PREDATOR, PROPERTY_TRANSFORMATIVE = PROPERTY_ANTITOXIC) - //The list below defines which properties should be combined into a combo property - var/list/combining_properties = list( PROPERTY_DEFIBRILLATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_CARDIOPEUTIC),\ - PROPERTY_THANATOMETABOL = list(PROPERTY_HYPOXEMIC, PROPERTY_CRYOMETABOLIZING, PROPERTY_NEUROCRYOGENIC),\ - PROPERTY_HYPERDENSIFICATING = list(PROPERTY_MUSCLESTIMULATING, PROPERTY_BONEMENDING, PROPERTY_CARCINOGENIC),\ - PROPERTY_HYPERTHROTTLING = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_HALLUCINOGENIC),\ - PROPERTY_NEUROSHIELDING = list(PROPERTY_ALCOHOLIC, PROPERTY_BALDING),\ - PROPERTY_ANTIADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_ANTIHALLUCINOGENIC),\ - PROPERTY_ADDICTIVE = list(PROPERTY_PSYCHOSTIMULATING, PROPERTY_NEUROTOXIC),\ - PROPERTY_CIPHERING_PREDATOR = list(PROPERTY_CIPHERING, PROPERTY_CROSSMETABOLIZING)) var/datum/chem_property/match var/datum/chem_property/initial_property for(var/datum/chem_property/P in properties) @@ -350,8 +326,8 @@ match = P else //Handle properties that combine - for(var/C in combining_properties) - var/list/combo = combining_properties[C] + for(var/C in GLOB.combining_properties) + var/list/combo = GLOB.combining_properties[C] if(!combo.Find(property) || !combo.Find(P.name)) continue var/pieces = 0 @@ -369,11 +345,11 @@ LAZYREMOVE(properties, R) break //Handle properties that conflict - for(var/C in conflicting_properties) - if(property == C && P.name == conflicting_properties[C]) + for(var/C in GLOB.conflicting_properties) + if(property == C && P.name == GLOB.conflicting_properties[C]) match = P break - else if (property == conflicting_properties[C] && C == P.name) + else if (property == GLOB.conflicting_properties[C] && C == P.name) match = P break if(match) @@ -389,7 +365,7 @@ return FALSE break //Insert the property - var/datum/chem_property/P = chemical_properties_list[property] + var/datum/chem_property/P = GLOB.chemical_properties_list[property] P = new P.type() P.level = level P.holder = src @@ -397,7 +373,7 @@ //Special case: If it's a catalyst property, add it nonetheless. if(initial_property && initial_property != property) - P = chemical_properties_list[initial_property] + P = GLOB.chemical_properties_list[initial_property] if(P.category & PROPERTY_TYPE_CATALYST) P = new P.type() P.level = level @@ -425,22 +401,22 @@ C.gen_tier = gen_tier if(!C.generate_recipe(complexity)) return //Generating a recipe failed, so return null - chemical_reactions_list[C.id] = C + GLOB.chemical_reactions_list[C.id] = C C.add_to_filtered_list() return C //Returns false if a property has been generated in a previous reagent and all properties of that category haven't been generated yet. /datum/reagent/proc/check_generated_properties(datum/chem_property/P) - if(LAZYISIN(chemical_properties_list["positive"], P)) - if(LAZYISIN(GLOB.generated_properties["positive"], P) && LAZYLEN(GLOB.generated_properties["positive"]) < LAZYLEN(chemical_properties_list["positive"])) + if(LAZYISIN(GLOB.chemical_properties_list["positive"], P)) + if(LAZYISIN(GLOB.generated_properties["positive"], P) && LAZYLEN(GLOB.generated_properties["positive"]) < LAZYLEN(GLOB.chemical_properties_list["positive"])) return FALSE GLOB.generated_properties["positive"] += P - else if(LAZYISIN(chemical_properties_list["negative"], P)) - if(LAZYISIN(GLOB.generated_properties["negative"], P) && LAZYLEN(GLOB.generated_properties["negative"]) < LAZYLEN(chemical_properties_list["negative"])) + else if(LAZYISIN(GLOB.chemical_properties_list["negative"], P)) + if(LAZYISIN(GLOB.generated_properties["negative"], P) && LAZYLEN(GLOB.generated_properties["negative"]) < LAZYLEN(GLOB.chemical_properties_list["negative"])) return FALSE GLOB.generated_properties["negative"] += P - else if(LAZYISIN(chemical_properties_list["neutral"], P)) - if(LAZYISIN(GLOB.generated_properties["neutral"], P) && LAZYLEN(GLOB.generated_properties["neutral"]) < LAZYLEN(chemical_properties_list["neutral"])) + else if(LAZYISIN(GLOB.chemical_properties_list["neutral"], P)) + if(LAZYISIN(GLOB.generated_properties["neutral"], P) && LAZYLEN(GLOB.generated_properties["neutral"]) < LAZYLEN(GLOB.chemical_properties_list["neutral"])) return FALSE GLOB.generated_properties["neutral"] += P return TRUE diff --git a/code/modules/reagents/Chemistry-Holder.dm b/code/modules/reagents/Chemistry-Holder.dm index 2c08e9f4e6..de365de8e2 100644 --- a/code/modules/reagents/Chemistry-Holder.dm +++ b/code/modules/reagents/Chemistry-Holder.dm @@ -4,6 +4,7 @@ var/maximum_volume = 100 var/atom/my_atom = null var/trigger_volatiles = FALSE + var/allow_star_shape = TRUE var/exploded = FALSE var/datum/weakref/source_mob @@ -25,7 +26,7 @@ maximum_volume = maximum #ifdef UNIT_TESTS - if(!chemical_reagents_list || !chemical_reactions_filtered_list || !chemical_properties_list) + if(!GLOB.chemical_reagents_list || !GLOB.chemical_reactions_filtered_list || !GLOB.chemical_properties_list) CRASH("Chemistry reagents are not set up!") #endif @@ -38,13 +39,13 @@ var/total_transfered = 0 var/current_list_element = 1 - current_list_element = rand(1,reagent_list.len) + current_list_element = rand(1,length(reagent_list)) while(total_transfered != amount) if(total_transfered >= amount) break - if(total_volume <= 0 || !reagent_list.len) break + if(total_volume <= 0 || !length(reagent_list)) break - if(current_list_element > reagent_list.len) current_list_element = 1 + if(current_list_element > length(reagent_list)) current_list_element = 1 var/datum/reagent/current_reagent = reagent_list[current_list_element] remove_reagent(current_reagent.id, 1) @@ -61,17 +62,17 @@ var/total_transfered = 0 var/current_list_element = 1 - current_list_element = rand(1, reagent_list.len) + current_list_element = rand(1, length(reagent_list)) while(total_transfered != amount) if(total_transfered >= amount) break - if(total_volume <= 0 || !reagent_list.len) break + if(total_volume <= 0 || !length(reagent_list)) break - if(current_list_element > reagent_list.len) current_list_element = 1 + if(current_list_element > length(reagent_list)) current_list_element = 1 var/datum/reagent/current_reagent = reagent_list[current_list_element] if(current_reagent.id == reagent_to_ignore) - if(reagent_list.len == 1) break //if the reagent to be avoided is the only one in the list, we're done here. + if(length(reagent_list) == 1) break //if the reagent to be avoided is the only one in the list, we're done here. if(current_list_element == 1) current_reagent = reagent_list[current_list_element + 1] //if the selected reagent was number 1, we don't want it trying to draw id.0, so we add 1 else @@ -165,9 +166,13 @@ if(specific_reagent) if(istype(R, specific_reagent)) R.last_source_mob = WEAKREF(new_source_mob) + if(R.data_properties) + R.data_properties["last_source_mob"] = R.last_source_mob return continue R.last_source_mob = WEAKREF(new_source_mob) + if(R.data_properties) + R.data_properties["last_source_mob"] = R.last_source_mob /datum/reagents/proc/copy_to(obj/target, amount=1, multiplier=1, preserve_data=1, safety = 0) if(!target) @@ -226,9 +231,9 @@ if(!my_atom) return if(my_atom.flags_atom & NOREACT) return //Yup, no reactions here. No siree. - var/reaction_occured = 0 + var/reaction_occurred = 0 do - reaction_occured = 0 + reaction_occurred = 0 for(var/datum/reagent/R in reagent_list) // Usually a small list if(R.original_id) //Prevent synthesised chem variants from being mixed for(var/datum/reagent/O in reagent_list) @@ -240,18 +245,18 @@ O.volume += R.volume qdel(R) break - for(var/reaction in chemical_reactions_filtered_list[R.id]) // Was a big list but now it should be smaller since we filtered it with our reagent id + for(var/reaction in GLOB.chemical_reactions_filtered_list[R.id]) // Was a big list but now it should be smaller since we filtered it with our reagent id if(!reaction) continue var/datum/chemical_reaction/C = reaction - var/total_required_reagents = C.required_reagents.len + var/total_required_reagents = length(C.required_reagents) var/total_matching_reagents = 0 var/total_required_catalysts = 0 if(C.required_catalysts) - total_required_catalysts = C.required_catalysts.len + total_required_catalysts = length(C.required_catalysts) var/total_matching_catalysts= 0 var/matching_container = 0 var/matching_other = 0 @@ -261,7 +266,7 @@ if(!has_reagent(B, C.required_reagents[B])) break total_matching_reagents++ - multipliers += round(get_reagent_amount(B) / C.required_reagents[B]) + multipliers += floor(get_reagent_amount(B) / C.required_reagents[B]) for(var/B in C.required_catalysts) if(B == "silver" && istype(my_atom, /obj/item/reagent_container/glass/beaker/silver)) total_matching_catalysts++ @@ -309,10 +314,10 @@ playsound(get_turf(my_atom), 'sound/effects/bubbles.ogg', 15, 1) C.on_reaction(src, created_volume) - reaction_occured = 1 + reaction_occurred = 1 break - while(reaction_occured) + while(reaction_occurred) if(trigger_volatiles) handle_volatiles() if(exploded) //clear reagents only when everything has reacted @@ -355,12 +360,12 @@ del_reagent(R.id) return FALSE -/datum/reagents/proc/reaction(atom/A, method=TOUCH, volume_modifier=0) +/datum/reagents/proc/reaction(atom/A, method=TOUCH, volume_modifier=0, permeable_in_mobs=TRUE) if(method != TOUCH && method != INGEST) return for(var/datum/reagent/R in reagent_list) if(ismob(A)) - R.reaction_mob(A, method, R.volume + volume_modifier) + R.reaction_mob(A, method, R.volume + volume_modifier, permeable_in_mobs) else if(isturf(A)) R.reaction_turf(A, R.volume + volume_modifier) else if(isobj(A)) @@ -374,7 +379,7 @@ if(total_volume + amount > maximum_volume) amount = maximum_volume - total_volume //Doesnt fit in. Make it disappear. Shouldnt happen. Will happen. - var/new_data = list("blood_type" = null, "blood_colour" = "#A10808", "viruses" = null, "resistances" = null, "last_source_mob" = null) + var/new_data = list("blood_type" = null, "blood_color" = "#A10808", "viruses" = null, "resistances" = null, "last_source_mob" = null) if(data) for(var/index in data) new_data[index] = data[index] @@ -417,10 +422,10 @@ handle_reactions() return FALSE - var/datum/reagent/D = chemical_reagents_list[reagent] + var/datum/reagent/D = GLOB.chemical_reagents_list[reagent] if(D) if(!istype(D, /datum/reagent)) - CRASH("Not REAGENT - [reagent] - chemical_reagents_list[reagent]") + CRASH("Not REAGENT - [reagent] - GLOB.chemical_reagents_list[reagent]") var/datum/reagent/R = new D.type() if(D.type == /datum/reagent/generated) @@ -589,9 +594,9 @@ dir = E.dir //only integers please - radius = round(radius) - intensity = round(intensity) - duration = round(duration) + radius = floor(radius) + intensity = floor(intensity) + duration = floor(duration) if(ex_power > 0) explode(sourceturf, ex_power, ex_falloff, ex_falloff_shape, dir, angle) if(intensity > 0) @@ -625,7 +630,7 @@ if(my_atom) //It exists outside of null space. for(var/datum/reagent/R in reagent_list) // if you want to do extra stuff when other chems are present, do it here if(R.id == "iron") - shards += round(R.volume) + shards += floor(R.volume) else if(R.id == "phoron" && R.volume >= EXPLOSION_PHORON_THRESHOLD) shard_type = /datum/ammo/bullet/shrapnel/incendiary @@ -674,7 +679,7 @@ duration = max_fire_dur // shape - if(supplemented > 0 && intensity > CHEM_FIRE_STAR_THRESHOLD) + if(supplemented > 0 && intensity > CHEM_FIRE_STAR_THRESHOLD && allow_star_shape) flameshape = FLAMESHAPE_STAR if(supplemented < 0 && intensity < CHEM_FIRE_IRREGULAR_THRESHOLD) diff --git a/code/modules/reagents/Chemistry-Reactions.dm b/code/modules/reagents/Chemistry-Reactions.dm index 1d9c03f9e9..7a8f0b2115 100644 --- a/code/modules/reagents/Chemistry-Reactions.dm +++ b/code/modules/reagents/Chemistry-Reactions.dm @@ -22,15 +22,15 @@ /datum/chemical_reaction/proc/add_to_filtered_list(reset = FALSE) if(reset) - for(var/R in chemical_reactions_filtered_list) - LAZYREMOVE(chemical_reactions_filtered_list[R], src) + for(var/R in GLOB.chemical_reactions_filtered_list) + LAZYREMOVE(GLOB.chemical_reactions_filtered_list[R], src) for(var/R in required_reagents) - LAZYADD(chemical_reactions_filtered_list[R], src) + LAZYADD(GLOB.chemical_reactions_filtered_list[R], src) /datum/chemical_reaction/proc/check_duplicate() for(var/R in required_reagents) - if(chemical_reactions_filtered_list[R]) - for(var/reaction in chemical_reactions_filtered_list[R])//We filter the chemical_reactions_filtered_list so we don't have to search through as much + if(GLOB.chemical_reactions_filtered_list[R]) + for(var/reaction in GLOB.chemical_reactions_filtered_list[R])//We filter the GLOB.chemical_reactions_filtered_list so we don't have to search through as much var/datum/chemical_reaction/C = reaction var/matches = 0 for(var/B in required_reagents) @@ -43,7 +43,7 @@ // To prevent such a situation, if ALL reagent inside a reaction are medical chemicals, the recipe is considered flawed. /datum/chemical_reaction/proc/check_reaction_uses_all_default_medical() for(var/R in required_reagents) - var/datum/reagent/M = chemical_reagents_list[R] + var/datum/reagent/M = GLOB.chemical_reagents_list[R] if(!(initial(M.flags) & REAGENT_TYPE_MEDICAL)) return FALSE return TRUE diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 7f659c54c4..7faf2f85a7 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -19,7 +19,7 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) var/datum/reagents/holder = null var/reagent_state = SOLID var/data = 0 //Scratchpad for random chemicals to do their own thing TODO: unify this somehow? - var/list/data_properties = list("blood_type" = null, "blood_colour" = "#A10808", "viruses" = null, "resistances" = null) //mostly for viruses... + var/list/data_properties = list("blood_type" = null, "blood_color" = "#A10808", "viruses" = null, "resistances" = null) //mostly for viruses... var/volume = 0 var/nutriment_factor = 0 var/custom_metabolism = REAGENTS_METABOLISM @@ -28,7 +28,7 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) var/overdose_dam = 1//Handeled by heart damage var/spray_warning = FALSE //whether spraying that reagent creates an admin message. //var/list/viruses = list() - var/color = "#000000" // rgb: 0, 0, 0 (does not support alpha channels - yet!) + var/color = COLOR_BLACK //(does not support alpha channels - yet!) var/datum/weakref/last_source_mob // For explosions var/explosive = FALSE @@ -83,43 +83,42 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) for(var/datum/chem_property/P in properties) P.post_update_reagent() -/datum/reagent/proc/reaction_mob(mob/M, method=TOUCH, volume) //By default we have a chance to transfer some - if(!istype(M, /mob/living)) return 0 +/datum/reagent/proc/reaction_mob(mob/M, method=TOUCH, volume, permeable) //By default we have a chance to transfer some + if(!istype(M, /mob/living)) + return FALSE var/datum/reagent/self = src src = null //of the reagent to the mob on TOUCHING it. if(self.holder) //for catching rare runtimes - if(!istype(self.holder.my_atom, /obj/effect/particle_effect/smoke/chem)) + if(method == TOUCH && permeable && !istype(self.holder.my_atom, /obj/effect/particle_effect/smoke/chem)) // If the chemicals are in a smoke cloud, do not try to let the chemicals "penetrate" into the mob's system (balance station 13) -- Doohl + var/chance = 1 + var/block = FALSE - if(method == TOUCH) + for(var/obj/item/clothing/clothing in M.get_equipped_items()) + if(clothing.permeability_coefficient < chance) + chance = clothing.permeability_coefficient + if(istype(clothing, /obj/item/clothing/suit/bio_suit)) + // bio suits are just about completely fool-proof - Doohl + // kind of a hacky way of making bio suits more resistant to chemicals but w/e + if(prob(75)) + block = TRUE - var/chance = 1 - var/block = 0 + if(istype(clothing, /obj/item/clothing/head/bio_hood)) + if(prob(75)) + block = TRUE - for(var/obj/item/clothing/C in M.get_equipped_items()) - if(C.permeability_coefficient < chance) chance = C.permeability_coefficient - if(istype(C, /obj/item/clothing/suit/bio_suit)) - // bio suits are just about completely fool-proof - Doohl - // kind of a hacky way of making bio suits more resistant to chemicals but w/e - if(prob(75)) - block = 1 + chance *= 100 - if(istype(C, /obj/item/clothing/head/bio_hood)) - if(prob(75)) - block = 1 + if(prob(chance) && !block) + if(M.reagents) + M.reagents.add_reagent(self.id, self.volume * 0.5) - chance = chance * 100 + for(var/datum/chem_property/property in self.properties) + var/potency = property.level * 0.5 + property.reaction_mob(M, method, volume, potency) - if(prob(chance) && !block) - if(M.reagents) - M.reagents.add_reagent(self.id,self.volume/2) - for(var/datum/chem_property/P in self.properties) - var/potency = P.level * 0.5 - P.reaction_mob(M, method, volume, potency) - - - return 1 + return TRUE /datum/reagent/proc/reaction_obj(obj/O, volume) for(var/datum/chem_property/P in properties) @@ -152,6 +151,9 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) handle_processing(M, mods, delta_time) holder.remove_reagent(id, custom_metabolism * delta_time) + if(!holder) + return FALSE + return TRUE //Pre-processing @@ -180,14 +182,17 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) if(potency <= 0) continue P.process(M, potency, delta_time) - if(flags & REAGENT_CANNOT_OVERDOSE) - continue if(overdose && volume > overdose) - P.process_overdose(M, potency, delta_time) - if(overdose_critical && volume > overdose_critical) - P.process_critical(M, potency, delta_time) - var/overdose_message = "[istype(src, /datum/reagent/generated) ? "custom chemical" : initial(name)] overdose" - M.last_damage_data = create_cause_data(overdose_message, last_source_mob?.resolve()) + if(flags & REAGENT_CANNOT_OVERDOSE) + var/ammount_overdosed = volume - overdose + holder.remove_reagent(id, ammount_overdosed) + holder.add_reagent("sugar", ammount_overdosed) + else + P.process_overdose(M, potency, delta_time) + if(overdose_critical && volume > overdose_critical) + P.process_critical(M, potency, delta_time) + var/overdose_message = "[istype(src, /datum/reagent/generated) ? "custom chemical" : initial(name)] overdose" + M.last_damage_data = create_cause_data(overdose_message, last_source_mob?.resolve()) if(mods[REAGENT_PURGE]) holder.remove_all_type(/datum/reagent,mods[REAGENT_PURGE] * delta_time) @@ -267,37 +272,37 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) if(chemclass && !(flags & REAGENT_NO_GENERATION)) switch(chemclass) if(CHEM_CLASS_BASIC) - chemical_gen_classes_list["C1"] += id + GLOB.chemical_gen_classes_list["C1"] += id if(CHEM_CLASS_COMMON) - chemical_gen_classes_list["C2"] += id + GLOB.chemical_gen_classes_list["C2"] += id if(CHEM_CLASS_UNCOMMON) - chemical_gen_classes_list["C3"] += id + GLOB.chemical_gen_classes_list["C3"] += id if(CHEM_CLASS_RARE) - chemical_gen_classes_list["C4"] += id + GLOB.chemical_gen_classes_list["C4"] += id if(CHEM_CLASS_SPECIAL) - chemical_gen_classes_list["C5"] += id - chemical_data.add_chemical_objective(src) + GLOB.chemical_gen_classes_list["C5"] += id + GLOB.chemical_data.add_chemical_objective(src) if(CHEM_CLASS_ULTRA) - chemical_gen_classes_list["C6"] += id - chemical_data.add_chemical_objective(src) - chemical_gen_classes_list["C"] += id + GLOB.chemical_gen_classes_list["C6"] += id + GLOB.chemical_data.add_chemical_objective(src) + GLOB.chemical_gen_classes_list["C"] += id if(gen_tier) switch(gen_tier) if(1) - chemical_gen_classes_list["T1"] += id + GLOB.chemical_gen_classes_list["T1"] += id if(2) - chemical_gen_classes_list["T2"] += id + GLOB.chemical_gen_classes_list["T2"] += id if(3) - chemical_gen_classes_list["T3"] += id + GLOB.chemical_gen_classes_list["T3"] += id if(4) - chemical_gen_classes_list["T4"] += id + GLOB.chemical_gen_classes_list["T4"] += id if(5) - chemical_gen_classes_list["T5"] += id + GLOB.chemical_gen_classes_list["T5"] += id /datum/reagent/proc/properties_to_datums() #ifdef UNIT_TESTS - if(!chemical_properties_list) + if(!GLOB.chemical_properties_list) CRASH("Chemistry reagents are not set up!") #endif @@ -306,7 +311,7 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) if(istype(prop, /datum/chem_property)) new_properties += prop continue - var/datum/chem_property/chem = chemical_properties_list[prop] + var/datum/chem_property/chem = GLOB.chemical_properties_list[prop] if(chem) chem = new chem.type() chem.level = properties[prop] @@ -341,7 +346,7 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagent()) R = new P.type() break i++ - if(i > properties.len) + if(i > length(properties)) return FALSE R.level = new_level R.holder = src diff --git a/code/modules/reagents/chemical_research/Chemical-Research.dm b/code/modules/reagents/chemical_research/Chemical-Research.dm index 7d74c9480c..65315e93ce 100644 --- a/code/modules/reagents/chemical_research/Chemical-Research.dm +++ b/code/modules/reagents/chemical_research/Chemical-Research.dm @@ -1,8 +1,10 @@ -var/global/datum/chemical_data/chemical_data = new /datum/chemical_data +GLOBAL_DATUM_INIT(chemical_data, /datum/chemical_data, new) /datum/chemical_data var/rsc_credits = 0 var/clearance_level = 1 + ///credits gained from survivor clearance cards + var/credits_gained = 0 var/clearance_x_access = FALSE var/reached_x_access = FALSE var/has_new_properties = FALSE @@ -38,7 +40,7 @@ var/global/datum/chemical_data/chemical_data = new /datum/chemical_data /datum/chemical_data/proc/get_report(doc_type, doc_title) var/obj/item/paper/research_report/report = null - for(var/document_data in chemical_data.research_documents[doc_type]) + for(var/document_data in GLOB.chemical_data.research_documents[doc_type]) if(document_data["document_title"] == doc_title) report = document_data["document"] break @@ -87,12 +89,12 @@ var/global/datum/chemical_data/chemical_data = new /datum/chemical_data if(P.category & PROPERTY_TYPE_UNADJUSTABLE || P.category & PROPERTY_TYPE_ANOMALOUS) continue property_names += P.name - for(var/name in research_property_data) - property_names -= name + for(var/datum/chem_property/property in research_property_data) + property_names -= property.name if(LAZYLEN(property_names)) has_new_properties = TRUE for(var/name in property_names) - var/datum/chem_property/ref = chemical_properties_list[name] + var/datum/chem_property/ref = GLOB.chemical_properties_list[name] var/datum/chem_property/P = new ref.type P.level = 0 research_property_data += P @@ -115,7 +117,7 @@ var/global/datum/chemical_data/chemical_data = new /datum/chemical_data return FALSE //Make the chem storage scale with number of dispensers storage.recharge_rate += 5 - storage.max_energy += 50 + storage.max_energy += 100 storage.energy = storage.max_energy return storage @@ -125,7 +127,7 @@ var/global/datum/chemical_data/chemical_data = new /datum/chemical_data return FALSE //Make the chem storage scale with number of dispensers storage.recharge_rate -= 5 - storage.max_energy -= 50 + storage.max_energy -= 100 storage.energy = storage.max_energy return TRUE @@ -146,7 +148,7 @@ var/global/datum/chemical_data/chemical_data = new /datum/chemical_data chemical_not_completed_objective_list[chem.id] = chem.objective_value /datum/chemical_data/proc/get_tgui_data(chemid) - var/datum/reagent/chem = chemical_reagents_list[chemid] + var/datum/reagent/chem = GLOB.chemical_reagents_list[chemid] if(!chem) error("Invalid chemid [chemid]") return diff --git a/code/modules/reagents/chemical_research/generated_reagents.dm b/code/modules/reagents/chemical_research/generated_reagents.dm index 6eaa664b6d..a21d74e26f 100644 --- a/code/modules/reagents/chemical_research/generated_reagents.dm +++ b/code/modules/reagents/chemical_research/generated_reagents.dm @@ -16,21 +16,21 @@ //Generate stats if(!id) //So we can initiate a new datum without generating it return - if(!chemical_reagents_list[id]) + if(!GLOB.chemical_reagents_list[id]) generate_name() generate_stats() - chemical_reagents_list[id] = src - make_alike(chemical_reagents_list[id]) + GLOB.chemical_reagents_list[id] = src + make_alike(GLOB.chemical_reagents_list[id]) recalculate_variables() /datum/chemical_reaction/generated/New() //Generate recipe if(!id) //So we can initiate a new datum without generating it return - if(!chemical_reactions_list[id]) + if(!GLOB.chemical_reactions_list[id]) generate_recipe() - chemical_reactions_list[id] = src - make_alike(chemical_reactions_list[id]) + GLOB.chemical_reactions_list[id] = src + make_alike(GLOB.chemical_reactions_list[id]) /////////Tier 1 /datum/chemical_reaction/generated/alpha diff --git a/code/modules/reagents/chemistry_machinery/acid_harness.dm b/code/modules/reagents/chemistry_machinery/acid_harness.dm index b349b3224d..874737ebef 100644 --- a/code/modules/reagents/chemistry_machinery/acid_harness.dm +++ b/code/modules/reagents/chemistry_machinery/acid_harness.dm @@ -107,41 +107,41 @@ // damage - damagelist["Brute"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BRUTE), "value" = ACID_SCAN_DAMAGE_BRUTE) - damagelist["Burn"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BURN), "value" = ACID_SCAN_DAMAGE_BURN) - damagelist["Toxin"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_TOXIN), "value" = ACID_SCAN_DAMAGE_TOXIN) - damagelist["Oxygen"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_OXYGEN), "value" = ACID_SCAN_DAMAGE_OXYGEN) - damagelist["Genetic"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_CLONE), "value" = ACID_SCAN_DAMAGE_CLONE) - damagelist["Heart"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_HEART), "value" = ACID_SCAN_DAMAGE_HEART) - damagelist["Liver"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_LIVER), "value" = ACID_SCAN_DAMAGE_LIVER) - damagelist["Lungs"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_LUNGS), "value" = ACID_SCAN_DAMAGE_LUNGS) - damagelist["Kidneys"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_KIDNEYS), "value" = ACID_SCAN_DAMAGE_KIDNEYS) - damagelist["Brain"] = list("flag" = check_bitflag(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BRAIN), "value" = ACID_SCAN_DAMAGE_BRAIN) + damagelist["Brute"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BRUTE), "value" = ACID_SCAN_DAMAGE_BRUTE) + damagelist["Burn"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BURN), "value" = ACID_SCAN_DAMAGE_BURN) + damagelist["Toxin"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_TOXIN), "value" = ACID_SCAN_DAMAGE_TOXIN) + damagelist["Oxygen"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_OXYGEN), "value" = ACID_SCAN_DAMAGE_OXYGEN) + damagelist["Genetic"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_CLONE), "value" = ACID_SCAN_DAMAGE_CLONE) + damagelist["Heart"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_HEART), "value" = ACID_SCAN_DAMAGE_HEART) + damagelist["Liver"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_LIVER), "value" = ACID_SCAN_DAMAGE_LIVER) + damagelist["Lungs"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_LUNGS), "value" = ACID_SCAN_DAMAGE_LUNGS) + damagelist["Kidneys"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_KIDNEYS), "value" = ACID_SCAN_DAMAGE_KIDNEYS) + damagelist["Brain"] = list("flag" = HAS_FLAG(acid_core.inject_damage_types, ACID_SCAN_DAMAGE_BRAIN), "value" = ACID_SCAN_DAMAGE_BRAIN) // conditions - conditionslist["Vitals Level"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_VITALS), "value" = ACID_SCAN_CONDITION_VITALS) - conditionslist["Bleeding"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLEEDING), "value" = ACID_SCAN_CONDITION_BLEEDING) - conditionslist["Internal"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLEEDING_INTERNAL), "value" = ACID_SCAN_CONDITION_BLEEDING_INTERNAL) - conditionslist["Bloodloss"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLOODLOSS_HIGH), "value" = ACID_SCAN_CONDITION_BLOODLOSS_HIGH) - conditionslist["Fracture"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_FRACTURE), "value" = ACID_SCAN_CONDITION_FRACTURE) - conditionslist["Splinted"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_SPLINT), "value" = ACID_SCAN_CONDITION_SPLINT) - conditionslist["Organ Damage"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_ORGAN_DAMAGED), "value" = ACID_SCAN_CONDITION_ORGAN_DAMAGED) - conditionslist["Organ Failure"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_ORGAN_FAILURE), "value" = ACID_SCAN_CONDITION_ORGAN_FAILURE) - conditionslist["Death"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_DEATH), "value" = ACID_SCAN_CONDITION_DEATH) - conditionslist["Defibrillation"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_DEFIB), "value" = ACID_SCAN_CONDITION_DEFIB) - conditionslist["Concussion"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_CONCUSSION), "value" = ACID_SCAN_CONDITION_CONCUSSION) - conditionslist["Intoxication"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_INTOXICATION), "value" = ACID_SCAN_CONDITION_INTOXICATION) - conditionslist["Foreign Object"] = list("flag" = check_bitflag(acid_core.inject_conditions, ACID_SCAN_CONDITION_FOREIGN_OBJECT), "value" = ACID_SCAN_CONDITION_FOREIGN_OBJECT) + conditionslist["Vitals Level"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_VITALS), "value" = ACID_SCAN_CONDITION_VITALS) + conditionslist["Bleeding"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLEEDING), "value" = ACID_SCAN_CONDITION_BLEEDING) + conditionslist["Internal"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLEEDING_INTERNAL), "value" = ACID_SCAN_CONDITION_BLEEDING_INTERNAL) + conditionslist["Bloodloss"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_BLOODLOSS_HIGH), "value" = ACID_SCAN_CONDITION_BLOODLOSS_HIGH) + conditionslist["Fracture"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_FRACTURE), "value" = ACID_SCAN_CONDITION_FRACTURE) + conditionslist["Splinted"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_SPLINT), "value" = ACID_SCAN_CONDITION_SPLINT) + conditionslist["Organ Damage"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_ORGAN_DAMAGED), "value" = ACID_SCAN_CONDITION_ORGAN_DAMAGED) + conditionslist["Organ Failure"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_ORGAN_FAILURE), "value" = ACID_SCAN_CONDITION_ORGAN_FAILURE) + conditionslist["Death"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_DEATH), "value" = ACID_SCAN_CONDITION_DEATH) + conditionslist["Defibrillation"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_DEFIB), "value" = ACID_SCAN_CONDITION_DEFIB) + conditionslist["Concussion"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_CONCUSSION), "value" = ACID_SCAN_CONDITION_CONCUSSION) + conditionslist["Intoxication"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_INTOXICATION), "value" = ACID_SCAN_CONDITION_INTOXICATION) + conditionslist["Foreign Object"] = list("flag" = HAS_FLAG(acid_core.inject_conditions, ACID_SCAN_CONDITION_FOREIGN_OBJECT), "value" = ACID_SCAN_CONDITION_FOREIGN_OBJECT) // vitals - vitalslist["Optimal"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_OPTIMAL), "value" = ACID_VITALS_OPTIMAL) - vitalslist["Nominal"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_NOMINAL), "value" = ACID_VITALS_NOMINAL) - vitalslist["Low"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_DROPPING), "value" = ACID_VITALS_DROPPING) - vitalslist["Very low"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_LOW), "value" = ACID_VITALS_LOW) - vitalslist["Critical"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_CRITICAL), "value" = ACID_VITALS_CRITICAL) - vitalslist["Emergency"] = list("flag" = check_bitflag(acid_core.inject_vitals, ACID_VITALS_EMERGENCY), "value" = ACID_VITALS_EMERGENCY) + vitalslist["Optimal"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_OPTIMAL), "value" = ACID_VITALS_OPTIMAL) + vitalslist["Nominal"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_NOMINAL), "value" = ACID_VITALS_NOMINAL) + vitalslist["Low"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_DROPPING), "value" = ACID_VITALS_DROPPING) + vitalslist["Very low"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_LOW), "value" = ACID_VITALS_LOW) + vitalslist["Critical"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_CRITICAL), "value" = ACID_VITALS_CRITICAL) + vitalslist["Emergency"] = list("flag" = HAS_FLAG(acid_core.inject_vitals, ACID_VITALS_EMERGENCY), "value" = ACID_VITALS_EMERGENCY) // compile above lists into config list @@ -162,13 +162,13 @@ switch(action) if("set_inject_amount") - var/inject = round(text2num(params["value"])) + var/inject = floor(text2num(params["value"])) if(inject < 1) inject = 1 acid_core.inject_amount = inject . = TRUE if("set_inject_damage_threshold") - acid_core.inject_damage_threshold = round(text2num(params["value"])) + acid_core.inject_damage_threshold = floor(text2num(params["value"])) . = TRUE if("inject_logic") if(acid_core.inject_logic == ACID_LOGIC_OR) diff --git a/code/modules/reagents/chemistry_machinery/autodispenser.dm b/code/modules/reagents/chemistry_machinery/autodispenser.dm index eed96564da..05d7988b9b 100644 --- a/code/modules/reagents/chemistry_machinery/autodispenser.dm +++ b/code/modules/reagents/chemistry_machinery/autodispenser.dm @@ -164,7 +164,7 @@ data["output_container"] = output_container.name data["output_totalvol"] = output_container.reagents.total_volume data["output_maxvol"] = output_container.reagents.maximum_volume - if(output_container.reagents.reagent_list.len) + if(length(output_container.reagents.reagent_list)) data["output_color"] = mix_color_from_reagents(output_container.reagents.reagent_list) else data["output_color"] = null @@ -182,12 +182,12 @@ var/list/memorylist = program_amount[PROGRAM_MEMORY] var/list/boxlist = program_amount[PROGRAM_BOX] - if(memorylist.len) + if(length(memorylist)) data["memory"] = tgui_friendly_program_list[PROGRAM_MEMORY] else data["memory"] = "Empty" - if(boxlist.len) + if(length(boxlist)) data["box"] = tgui_friendly_program_list[PROGRAM_BOX] else data["box"] = "Empty" @@ -308,7 +308,7 @@ update_icon() return - for(var/i=stage,i<=programs[1].len + programs[2].len && i != 0,i++) + for(var/i=stage,i<=length(programs[1]) + length(programs[2]) && i != 0,i++) if(status < AUTODISPENSER_IDLE) //We're waiting for new chems to be stored status++ if(status == AUTODISPENSER_IDLE) @@ -376,7 +376,7 @@ for(var/obj/item/reagent_container/glass/beaker/vial/V in input_container.contents) if(!V.reagents.get_reagents()) //Ignore empty vials continue - if(V.reagents.reagent_list.len > 1) //We don't work with impure vials + if(length(V.reagents.reagent_list) > 1) //We don't work with impure vials continue var/datum/reagent/R = V.reagents.reagent_list[1] if(program_amount[save_to]["[R.name]"]) @@ -395,11 +395,11 @@ use_power(1500) /obj/structure/machinery/autodispenser/proc/run_program() - if(programs[PROGRAM_MEMORY].len) + if(length(programs[PROGRAM_MEMORY])) program = PROGRAM_MEMORY else program = PROGRAM_BOX - if(programs[program].len && (outputmode == OUTPUT_TO_CONTAINER && output_container) || outputmode != OUTPUT_TO_CONTAINER) + if(length(programs[program]) && (outputmode == OUTPUT_TO_CONTAINER && output_container) || outputmode != OUTPUT_TO_CONTAINER) status = AUTODISPENSER_RUNNING update_icon() else @@ -407,8 +407,8 @@ /obj/structure/machinery/autodispenser/proc/next_stage() stage++ - if(stage > programs[program].len) //End of program - if(programs[PROGRAM_MEMORY].len && programs[PROGRAM_BOX].len) + if(stage > length(programs[program])) //End of program + if(length(programs[PROGRAM_MEMORY]) && length(programs[PROGRAM_BOX])) if(program == PROGRAM_BOX) cycle++ program-- diff --git a/code/modules/reagents/chemistry_machinery/centrifuge.dm b/code/modules/reagents/chemistry_machinery/centrifuge.dm index b21c52112d..c679aa1c32 100644 --- a/code/modules/reagents/chemistry_machinery/centrifuge.dm +++ b/code/modules/reagents/chemistry_machinery/centrifuge.dm @@ -89,7 +89,7 @@ tgui_interact(user) return if(output_container) - to_chat(user, SPAN_NOTICE("You remove the [output_container] from the [src].")) + to_chat(user, SPAN_NOTICE("You remove [output_container] from the [src].")) user.put_in_active_hand(output_container) output_container = null if(input_container) @@ -97,7 +97,7 @@ else icon_state = "centrifuge_empty_open" else if(input_container) - to_chat(user, SPAN_NOTICE("You remove the [input_container] from the [src].")) + to_chat(user, SPAN_NOTICE("You remove [input_container] from the [src].")) user.put_in_active_hand(input_container) input_container = null icon_state = "centrifuge_empty_open" @@ -176,17 +176,17 @@ cleanup() return FALSE - if(status == 0 && input_source == INPUT_TURING && connected_turing && connected_turing.outputmode == 2 && (connected_turing.programs[1].len || connected_turing.programs[2].len)) + if(status == 0 && input_source == INPUT_TURING && connected_turing && connected_turing.outputmode == 2 && (length(connected_turing.programs[1]) || length(connected_turing.programs[2]))) return TRUE return FALSE /obj/structure/machinery/centrifuge/proc/centrifuge() - if(!output_container.contents.len) return //Is output empty? + if(!length(output_container.contents)) return //Is output empty? var/obj/item/reagent_container/source_container = input_container if(input_source == INPUT_TURING) source_container = connected_turing - var/initial_reagents = source_container.reagents.reagent_list.len + var/initial_reagents = length(source_container.reagents.reagent_list) var/list/vials = list() for(var/obj/item/reagent_container/V in output_container.contents) vials += V @@ -203,17 +203,17 @@ var/obj/item/reagent_container/hypospray/autoinjector/A = V if(autolabel) A.name = "autoinjector ([autolabel])" - else if(!(A.reagents.reagent_list.len)) + else if(!length(A.reagents.reagent_list)) A.name = "autoinjector" else A.name = "autoinjector (" + A.reagents.reagent_list[1].name + ")" var/numberOfUses = A.reagents.total_volume / A.amount_per_transfer_from_this - A.uses_left = round(numberOfUses) == numberOfUses ? numberOfUses : round(numberOfUses) + 1 + A.uses_left = floor(numberOfUses) == numberOfUses ? numberOfUses : floor(numberOfUses) + 1 A.update_icon() else if(autolabel) V.name = "vial ([autolabel])" - else if(!(V.reagents.reagent_list.len) || (V.reagents.reagent_list.len > 1)) + else if(!length(V.reagents.reagent_list) || (length(V.reagents.reagent_list) > 1)) V.name = "vial" else V.name = "vial (" + V.reagents.reagent_list[1].name + ")" diff --git a/code/modules/reagents/chemistry_machinery/chem_dispenser.dm b/code/modules/reagents/chemistry_machinery/chem_dispenser.dm index 9c88a6aa36..94553d6a9f 100644 --- a/code/modules/reagents/chemistry_machinery/chem_dispenser.dm +++ b/code/modules/reagents/chemistry_machinery/chem_dispenser.dm @@ -59,7 +59,7 @@ /obj/structure/machinery/chem_dispenser/process() if(!chem_storage) - chem_storage = chemical_data.connect_chem_storage(network) + chem_storage = GLOB.chemical_data.connect_chem_storage(network) /obj/structure/machinery/chem_dispenser/Initialize() . = ..() @@ -68,7 +68,7 @@ /obj/structure/machinery/chem_dispenser/Destroy() if(!chem_storage) - chem_storage = chemical_data.disconnect_chem_storage(network) + chem_storage = GLOB.chemical_data.disconnect_chem_storage(network) return ..() /obj/structure/machinery/chem_dispenser/ex_act(severity) @@ -134,13 +134,13 @@ /obj/structure/machinery/chem_dispenser/ui_data(mob/user) . = list() .["amount"] = amount - .["energy"] = round(chem_storage.energy) - .["maxEnergy"] = round(chem_storage.max_energy) + .["energy"] = floor(chem_storage.energy) + .["maxEnergy"] = floor(chem_storage.max_energy) .["isBeakerLoaded"] = beaker ? 1 : 0 var/list/beakerContents = list() var/beakerCurrentVolume = 0 - if(beaker && beaker.reagents && beaker.reagents.reagent_list.len) + if(beaker && beaker.reagents && length(beaker.reagents.reagent_list)) for(var/datum/reagent/current_reagent in beaker.reagents.reagent_list) beakerContents += list(list("name" = current_reagent.name, "volume" = current_reagent.volume)) // list in a list because Byond merges the first list... beakerCurrentVolume += current_reagent.volume @@ -155,7 +155,7 @@ var/list/chemicals = list() for(var/re in dispensable_reagents) - var/datum/reagent/temp = chemical_reagents_list[re] + var/datum/reagent/temp = GLOB.chemical_reagents_list[re] if(temp) var/chemname = temp.name chemicals.Add(list(list("title" = chemname, "id" = temp.id))) @@ -201,9 +201,6 @@ . = TRUE /obj/structure/machinery/chem_dispenser/attackby(obj/item/reagent_container/attacking_object, mob/user) - if(isrobot(user)) - return - if(istype(attacking_object, /obj/item/reagent_container/glass) || istype(attacking_object, /obj/item/reagent_container/food)) if(accept_beaker_only && istype(attacking_object,/obj/item/reagent_container/food)) to_chat(user, SPAN_NOTICE("This machine only accepts beakers")) diff --git a/code/modules/reagents/chemistry_machinery/chem_master.dm b/code/modules/reagents/chemistry_machinery/chem_master.dm index 08547dd085..0a42493b84 100644 --- a/code/modules/reagents/chemistry_machinery/chem_master.dm +++ b/code/modules/reagents/chemistry_machinery/chem_master.dm @@ -141,7 +141,15 @@ if(length(label) < 3) loaded_pill_bottle.maptext_label = label loaded_pill_bottle.update_icon() + else if(href_list["setcolor"]) + // Checking for state changes + if(!loaded_pill_bottle) + return + + if(!Adjacent(usr)) + return + loaded_pill_bottle.choose_color() else if(href_list["close"]) close_browser(user, "chemmaster") @@ -215,7 +223,7 @@ return if(href_list["createpill_multiple"]) - count = Clamp(tgui_input_number(user, "Select the number of pills to make. (max: [max_pill_count])", "Pills to make", pillamount, max_pill_count, 1), 0, max_pill_count) + count = clamp(tgui_input_number(user, "Select the number of pills to make. (max: [max_pill_count])", "Pills to make", pillamount, max_pill_count, 1), 0, max_pill_count) if(!count) return @@ -240,7 +248,7 @@ P.icon_state = "pill"+pillsprite reagents.trans_to(P,amount_per_pill) if(loaded_pill_bottle) - if(loaded_pill_bottle.contents.len < loaded_pill_bottle.max_storage_space) + if(length(loaded_pill_bottle.contents) < loaded_pill_bottle.max_storage_space) loaded_pill_bottle.handle_item_insertion(P, TRUE) updateUsrDialog() @@ -283,17 +291,15 @@ if(!Adjacent(usr) || !usr.put_in_hands(P)) P.forceMove(loc) else if(href_list["change_pill"]) - #define MAX_PILL_SPRITE 20 //max icon state of the pill sprites var/dat = "" - for(var/i = 1 to MAX_PILL_SPRITE) + for(var/i = 1 to PILL_ICON_CHOICES) dat += "" dat += "
        " show_browser(user, dat, "Change Pill Type", "chem_master") return else if(href_list["change_bottle"]) - #define MAX_BOTTLE_SPRITE 4 //max icon state of the bottle sprites var/dat = "" - for(var/i = 1 to MAX_BOTTLE_SPRITE) + for(var/i = 1 to BOTTLE_ICON_CHOICES) dat += "" dat += "
        " show_browser(user, dat, "Change Bottle Type", "chem_master") @@ -337,16 +343,16 @@ if(!(user.client in has_sprites)) spawn() has_sprites += user.client - for(var/i = 1 to MAX_PILL_SPRITE) + for(var/i = 1 to PILL_ICON_CHOICES) user << browse_rsc(icon('icons/obj/items/chemistry.dmi', "pill" + num2text(i)), "pill[i].png") - for(var/i = 1 to MAX_BOTTLE_SPRITE) + for(var/i = 1 to BOTTLE_ICON_CHOICES) user << browse_rsc(icon('icons/obj/items/chemistry.dmi', "bottle-" + num2text(i)), "bottle-[i].png") var/dat = "" if(!beaker) dat = "Please insert beaker.
        " if(pill_maker) if(loaded_pill_bottle) - dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]

        " + dat += "Eject Pill Bottle \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]

        " else dat += "No pill bottle inserted.

        " dat += "Close" @@ -354,9 +360,10 @@ dat += "Eject beaker and Clear Buffer

        " if(pill_maker) if(loaded_pill_bottle) - dat += "Eject [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]
        " - dat += "Add label to [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\]

        " - dat += "Transfer [loaded_pill_bottle] \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.max_storage_space]\] to the smartfridge

        " + dat += "Eject [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
        " + dat += "Add label to [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]
        " + dat += "Set color to [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\]

        " + dat += "Transfer [loaded_pill_bottle] \[[length(loaded_pill_bottle.contents)]/[loaded_pill_bottle.max_storage_space]\] to the smartfridge

        " else dat += "No pill bottle inserted.

        " if(!connected && pill_maker) @@ -425,7 +432,7 @@ icon_state = "industry_mixer0" base_state = "industry_mixer" req_skill = SKILL_ENGINEER - req_skill_level = SKILL_ENGINEER_ENGI + req_skill_level = SKILL_ENGINEER_TRAINED pill_maker = FALSE vial_maker = TRUE max_pill_count = 0 diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm index 2c8602b0da..13e051f5dc 100644 --- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm +++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm @@ -1,3 +1,4 @@ +//mode datums at the bottom. #define MODE_AMPLIFY 1 #define MODE_SUPPRESS 2 #define MODE_RELATE 3 @@ -13,7 +14,7 @@ #define SIMULATION_STAGE_BEGIN 6 /obj/structure/machinery/chem_simulator - name = "Synthesis Simulator" + name = "synthesis simulator" desc = "This computer uses advanced algorithms to perform simulations of reagent properties, for the purpose of calculating the synthesis required to make a new variant." icon = 'icons/obj/structures/machinery/science_machines_64x32.dmi' icon_state = "modifier" @@ -40,7 +41,6 @@ var/ready = FALSE var/template_filter = PROPERTY_TYPE_ALL - var/complexity_editor = FALSE var/creation_template var/creation_complexity = list(CHEM_CLASS_COMMON, CHEM_CLASS_UNCOMMON, CHEM_CLASS_RARE) var/creation_name = "" @@ -62,38 +62,37 @@ ..() if(inoperable()) icon_state = "modifier_off" - nanomanager.update_uis(src) // update all UIs attached to src /obj/structure/machinery/chem_simulator/attackby(obj/item/B, mob/living/user) if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use this.")) return if(istype(B, /obj/item/paper/research_notes)) - var/obj/item/paper/research_notes/N = B + var/obj/item/paper/research_notes/note = B if(!target || (mode == MODE_RELATE && !reference)) - B = N.convert_to_chem_report() + B = note.convert_to_chem_report() else to_chat(user, SPAN_WARNING("Chemical data already inserted.")) return if(istype(B, /obj/item/paper/research_report)) - if(!target) + var/obj/item/paper/research_report/note = B + if(!target && note.data) target = B ready = check_ready() - else if(mode == MODE_RELATE && !reference) - target_property = "" + else if(mode == MODE_RELATE && !reference && note.data) + target_property = null reference = B ready = check_ready() else - to_chat(user, SPAN_WARNING("Chemical data already inserted.")) + to_chat(user, SPAN_WARNING("Chemical data [note.data ? "is already inserted" : "is refused"]")) return else - to_chat(user, SPAN_WARNING("The [src] refuses the [B].")) + to_chat(user, SPAN_WARNING("[src] refuses [B].")) return user.drop_inv_item_to_loc(B, src) - to_chat(user, SPAN_NOTICE("You insert [B] into the [src].")) + to_chat(user, SPAN_NOTICE("You insert [B] into [src].")) flick("[icon_state]_reading",src) update_costs() - nanomanager.update_uis(src) // update all UIs attached to src /obj/structure/machinery/chem_simulator/attack_hand(mob/user as mob) if(inoperable()) @@ -101,256 +100,279 @@ if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use this.")) return - ui_interact(user) - -/obj/structure/machinery/chem_simulator/ui_interact(mob/user, ui_key = "main", datum/nanoui/ui = null, force_open = 0) - var/list/data = list( - "rsc_credits" = chemical_data.rsc_credits, - "target" = target, - "reference" = reference, - "mode" = mode, - "complexity_editor" = complexity_editor, - "property_costs" = property_costs, - "simulating" = simulating, - "status_bar" = status_bar, - "ready" = ready, - "od_lvl" = new_od_level, - "recipe_target" = recipe_target, - "recipe_targets" = list(), - "property_codings" = list() - ) - - if(simulating == SIMULATION_STAGE_FINAL) - for(var/reagent_id in recipe_targets) - var/datum/reagent/R = chemical_reagents_list[reagent_id] - var/list/id_name[0] - id_name["[R.id]"] = R.name - data["recipe_targets"] += id_name - - if(mode == MODE_CREATE) - data["creation_name"] = creation_name - data["creation_cost"] = creation_cost - data["complexity"] = complexity_to_string_list() - - //List of all available properties - data["property_data_list"] = list() - for(var/datum/chem_property/P in chemical_data.research_property_data) - data["property_codings"][P.name] = P.code - if(template_filter && !check_bitflag(P.category, template_filter)) - continue - data["property_data_list"][P.name] = P.level - data["property_data_list"] = sortAssoc(data["property_data_list"]) - //List of enabled properties - data["target_property_list"] = list() - for(var/datum/chem_property/P in creation_template) - data["target_property_list"][P.name] = P.level - if(template_filter && !check_bitflag(P.category, template_filter)) - continue - //Override the editor level with the enabled property level - data["property_data_list"][P.name] = P.level - - data["template_filter"] = list( - "MED" = list(check_bitflag(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE), - "TOX" = list(check_bitflag(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT), - "STI" = list(check_bitflag(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT), - "REA" = list(check_bitflag(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT), - "IRR" = list(check_bitflag(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT), - "MET" = list(check_bitflag(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE) - ) + tgui_interact(user) - else if(target && target.data && target.completed) - data["target_property_list"] = target.data.properties_to_assoc() - for(var/datum/chem_property/P in target.data.properties) - data["property_codings"][P.name] = P.code +/obj/structure/machinery/chem_simulator/tgui_interact(mob/user, datum/tgui/ui) //death to the chem simulator! All Hail the new chem simulator! + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "ChemSimulator", "Chemical Simulator") + ui.open() - if(reference && reference.data && reference.completed) - data["reference_property_list"] = reference.data.properties_to_assoc() - for(var/datum/chem_property/P in reference.data.properties) - data["property_codings"][P.name] = P.code +/obj/structure/machinery/chem_simulator/ui_data(mob/user) + . = ..() + var/list/data = list() + data["status"] = status_bar + ready = check_ready() + data["is_ready"] = ready + data["can_simulate"] = (ready && simulating == SIMULATION_STAGE_OFF) + data["can_eject_target"] = ((target ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF) + data["can_eject_reference"] = ((reference ? TRUE : FALSE) && simulating == SIMULATION_STAGE_OFF) + data["is_picking_recipe"] = (simulating == SIMULATION_STAGE_FINAL && mode != MODE_CREATE) + data["lock_control"] = (simulating != SIMULATION_STAGE_OFF) + data["can_cancel_simulation"] = (simulating <= SIMULATION_STAGE_WAIT) + data["estimated_cost"] = (mode == MODE_CREATE ? creation_cost : (!target_property ? "NULL" : property_costs[target_property.name])) + calculate_new_od_level() + data["od_level"] = new_od_level + data["chemical_name"] = (mode == MODE_CREATE ? (creation_name == "" ? "NAME NOT SET" : creation_name) : (isnull(target) ? "CHEMICAL DATA NOT INSERTED" : target.data.name)) + data["reference_name"] = (isnull(reference) ? "CHEMICAL DATA NOT INSERTED" : reference.data.name) + + if(mode == MODE_CREATE && GLOB.chemical_data.has_new_properties) + update_costs() - if(target_property) - data["target_property"] = target_property.name - data["target_info"] = target_property.description - data["target_categories"] = target_property.categories_to_string() + if(simulating == SIMULATION_STAGE_FINAL) + for(var/reagent_id in recipe_targets) + var/datum/reagent/recipe_option = GLOB.chemical_reagents_list[reagent_id] + data["reagent_option_data"] += list(list( + "id" = recipe_option.id, + "name" = recipe_option.name, + )) + if(target && length(target?.data?.properties)) + for(var/datum/chem_property/target_property_data in target.data.properties) + var/is_locked = FALSE + var/conflicting_tooltip = null + if(!isnull(reference_property)) + if(LAZYACCESS(GLOB.conflicting_properties, reference_property.name) == target_property_data.name || LAZYACCESS(GLOB.conflicting_properties, target_property_data.name) == reference_property.name ) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with the selected reference property!" + data["target_data"] += list(list( + "code" = target_property_data.code, + "level" = target_property_data.level, + "name" = target_property_data.name, + "desc" = target_property_data.description, + "cost" = property_costs[target_property_data.name], + "is_locked" = is_locked, + "tooltip" = conflicting_tooltip, + )) else - data["target_info"] = "" - - if(reference_property) - data["reference_property"] = reference_property.name - data["reference_info"] = reference_property.description - data["reference_categories"] = reference_property.categories_to_string() + data["target_data"] = null + + if(reference && length(reference?.data?.properties)) + for(var/datum/chem_property/reference_property_data in reference.data.properties) + var/is_locked = FALSE + var/conflicting_tooltip = null + if(!isnull(target_property)) + if(LAZYACCESS(GLOB.conflicting_properties, target_property.name) == reference_property_data.name || LAZYACCESS(GLOB.conflicting_properties, reference_property_data.name) == target_property.name ) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with the selected target property!" + data["reference_data"] += list(list( + "code" = reference_property_data.code, + "level" = reference_property_data.level, + "name" = capitalize_first_letters(reference_property_data.name), + "desc" = reference_property_data.description, + "cost" = property_costs[reference_property_data.name], + "is_locked" = is_locked, + "tooltip" = conflicting_tooltip, + )) else - data["reference_info"] = "" - - ui = nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) - if(!ui) - ui = new(user, src, ui_key, "chem_simulator.tmpl", "Synthesis Simulator", 800, 550) - ui.set_initial_data(data) - ui.open() - -/obj/structure/machinery/chem_simulator/Topic(href, href_list) + data["reference_data"] = null + data["template_filters"] = list( + "MED" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_MEDICINE), PROPERTY_TYPE_MEDICINE), + "TOX" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_TOXICANT), PROPERTY_TYPE_TOXICANT), + "STI" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_STIMULANT), PROPERTY_TYPE_STIMULANT), + "REA" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_REACTANT), PROPERTY_TYPE_REACTANT), + "IRR" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_IRRITANT), PROPERTY_TYPE_IRRITANT), + "MET" = list(HAS_FLAG(template_filter, PROPERTY_TYPE_METABOLITE), PROPERTY_TYPE_METABOLITE) + ) + if(mode == MODE_CREATE) + for(var/datum/chem_property/known_properties in GLOB.chemical_data.research_property_data) + var/datum/chem_property/template_property + var/is_locked = FALSE + var/conflicting_tooltip = null + if(template_filter && !HAS_FLAG(known_properties.category, template_filter)) + continue + for(var/template in creation_template) + template_property = template + if(LAZYACCESS(GLOB.conflicting_properties, template_property.name) == known_properties.name || LAZYACCESS(GLOB.conflicting_properties, known_properties.name) == template_property.name) + is_locked = TRUE + conflicting_tooltip = "This property conflicts with [template_property.code]!" + if(template_property.code == known_properties.code) + break + template_property = null + + data["known_properties"] += list(list( + "code" = known_properties.code, + "level" = (isnull(template_property) ? 0 : template_property.level) , + "name" = capitalize_first_letters(known_properties.name), + "desc" = known_properties.description, + "is_enabled" = LAZYISIN(creation_template, known_properties), + "is_locked" = is_locked, + "conflicting_tooltip" = conflicting_tooltip, + )) + if(!length(data["known_properties"])) + data["known_properties"] = null + data["complexity_list"] += complexity_to_string_list() + + return data + +/obj/structure/machinery/chem_simulator/ui_static_data(mob/user) + . = ..() + var/list/static_data = list() + for(var/modes in subtypesof(/datum/chemical_simulator_modes)) + var/datum/chemical_simulator_modes/modes_datum = modes + static_data["mode_data"] += list(list( + "name" = modes_datum.name, + "desc" = modes_datum.desc, + "mode_id" = modes_datum.mode_id, + "icon_type" = modes_datum.icon_type + )) + static_data["credits"] = GLOB.chemical_data.rsc_credits + return static_data + +/obj/structure/machinery/chem_simulator/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) . = ..() if(.) return - if(inoperable() || !ishuman(usr)) - return - var/mob/living/carbon/human/user = usr - if(user.stat || user.is_mob_restrained() || !in_range(src, user)) - return - - if(mode == MODE_CREATE && chemical_data.has_new_properties) - update_costs() - - if(href_list["simulate"] && ready) - simulating = SIMULATION_STAGE_BEGIN - status_bar = "COMMENCING SIMULATION" - icon_state = "modifier_running" - recipe_targets = list() //reset - start_processing() - if(mode == MODE_CREATE) - msg_admin_niche("[key_name(user)] has created the chemical: [creation_name]") - else if(href_list["ejectT"]) - if(target) - if(!user.put_in_active_hand(target)) - target.forceMove(loc) - target = null - target_property = null - stop_processing() - simulating = SIMULATION_STAGE_OFF - flick("[icon_state]_printing",src) - else if(href_list["ejectR"]) - if(reference) - if(!user.put_in_active_hand(reference)) - reference.forceMove(loc) - reference = null - reference_property = null - stop_processing() - simulating = SIMULATION_STAGE_OFF - flick("[icon_state]_printing",src) - else if(href_list["set_mode"]) - if(mode == MODE_CREATE) //for when you set the mode away from MODE_CREATE + switch(action) + if("change_mode") + mode = params["mode_id"] + update_costs() + if("eject_target") + if(target) + if(!usr.put_in_active_hand(target)) + target.forceMove(loc) + target = null target_property = null - reference_property = null - complexity_editor = FALSE - switch(href_list["set_mode"]) - if("amp") - mode = MODE_AMPLIFY - if("sup") - mode = MODE_SUPPRESS - if("rel") - mode = MODE_RELATE - if("cre") - mode = MODE_CREATE - target_property = null - reference_property = null - calculate_new_od_level() - if(mode == MODE_CREATE) - calculate_creation_cost() - update_costs() - else if(href_list["set_target"]) - if(simulating) - return - if(mode == MODE_CREATE) - var/target_name = href_list["set_target"] - for(var/datum/chem_property/P in chemical_data.research_property_data) - if(P.name == target_name) - if(target_property && target_property.name == target_name) - //Toggle the property - if(LAZYISIN(creation_template, target_property)) - target_property.level = 0 - LAZYREMOVE(creation_template, target_property) - else - target_property.level = 1 - LAZYADD(creation_template, target_property) - calculate_creation_cost() - else - target_property = P - break - else - target_property = target.data.get_property(href_list["set_target"]) - calculate_new_od_level() - if(simulating) stop_processing() - icon_state = "modifier" simulating = SIMULATION_STAGE_OFF - else if(href_list["set_reference"]) - reference_property = reference.data.get_property(href_list["set_reference"]) - if(simulating) + flick("[icon_state]_printing",src) + if("eject_reference") + if(reference) + if(!usr.put_in_active_hand(reference)) + reference.forceMove(loc) + reference = null + reference_property = null + stop_processing() + flick("[icon_state]_printing",src) + if("select_target_property") + if(mode != MODE_CREATE) + if(!target) + return + for(var/datum/chem_property/target_prop in target.data.properties) + if(target_prop.code != params["property_code"]) + continue + target_property = target_prop + if(!target_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + if("select_reference_property") + if(!reference) + return + for(var/datum/chem_property/reference_prop in reference.data.properties) + if(reference_prop.code != params["property_code"]) + continue + reference_property = reference_prop + if(!reference_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + if("simulate") + if(!ready) + return + simulating = SIMULATION_STAGE_BEGIN + status_bar = "COMMENCING SIMULATION" + icon_state = "modifier_running" + recipe_targets = list() //reset + start_processing() + if(mode == MODE_CREATE) + msg_admin_niche("[key_name(usr)] has created the chemical: [creation_name]") + if("submit_recipe_pick") + if(recipe_target) + return + if(params["reagent_picked"] in recipe_targets) + recipe_target = params["reagent_picked"] + finalize_simulation(chem_cache) + recipe_target = null + if("cancel_simulation") stop_processing() icon_state = "modifier" simulating = SIMULATION_STAGE_OFF - update_costs() - else if(href_list["set_recipe_target"]) - recipe_target = href_list["set_recipe_target"] - else if(href_list["stop_simulation"]) - stop_processing() - icon_state = "modifier" - simulating = SIMULATION_STAGE_OFF - else if(href_list["finalize_simulation"] && recipe_target) - finalize_simulation(chem_cache) - //Template creation editor - else if(href_list["set_name"]) - var/newname = input("Set name for template (2-20 characters)","[src]") as text - newname = reject_bad_name(newname, TRUE, 20, FALSE) - if(isnull(newname)) - to_chat(user, "Bad name.") - else if(chemical_reagents_list[newname]) - to_chat(user, "Name already taken.") - else - creation_name = newname - else if(href_list["set_level"] && target_property) - var/level_to_set = 1 - if(chemical_data.clearance_level <= 2) - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4)) - else if(chemical_data.clearance_level <= 4) - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8)) - else - level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10)) - if(!level_to_set) - return - - target_property.level = level_to_set - if(target_property.max_level && target_property.level > target_property.max_level) - target_property.level = target_property.max_level - to_chat(user, "Max level for [target_property.name] is [target_property.max_level].") - calculate_creation_cost() - else if(href_list["set_od"]) - var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60)) - if(!od_to_set) - return - new_od_level = od_to_set - creation_od_level = od_to_set - calculate_creation_cost() - else if(href_list["set_filter"]) - if(href_list["set_filter"] == "ALL") - template_filter = 0 - else - var/flag_value = text2num(href_list["config_value"]) + if("toggle_flag") + var/flag_value = params["flag_id"] if(template_filter & flag_value) template_filter &= ~flag_value else template_filter |= flag_value - else if(href_list["toggle_complexity_editor"]) - complexity_editor = !complexity_editor - else if(href_list["set_complexity"]) - var/slot = text2num(href_list["set_complexity"]) - var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:","[src]", list("BASIC (+7)","COMMON (+4)","UNCOMMON (1)","RARE (-5)")) - if(!new_rarity) + if("select_create_property") + if(mode == MODE_CREATE) + if(target_property?.code == params["property_code"]) + if(LAZYISIN(creation_template, target_property)) + target_property.level = 0 + LAZYREMOVE(creation_template, target_property) + else + target_property.level = 1 + LAZYADD(creation_template, target_property) + else + for(var/datum/chem_property/known_prop in GLOB.chemical_data.research_property_data) + if(known_prop.code != params["property_code"]) + continue + target_property = known_prop + if(!target_property) + to_chat(usr, SPAN_WARNING("The [src] makes a suspicious wail.")) + return + calculate_creation_cost() + if("select_overdose") + if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE) + var/od_to_set = tgui_input_list(usr, "Set new OD:", "[src]", list(5,10,15,20,25,30,35,40,45,50,55,60)) + if(!od_to_set || simulating != SIMULATION_STAGE_OFF) + return + creation_od_level = od_to_set + calculate_new_od_level() + calculate_creation_cost() + if("change_name") + if(simulating == SIMULATION_STAGE_OFF && mode == MODE_CREATE) + var/newname = input("Set name for template (2-20 characters)","[src]") as text + newname = reject_bad_name(newname, TRUE, 20, FALSE) + if(isnull(newname)) + to_chat(usr, SPAN_WARNING("This name is not permited.")) + else if(GLOB.chemical_reagents_list[newname]) + to_chat(usr, SPAN_WARNING("This name is already occupied")) + else + creation_name = newname + if("change_create_target_level") + var/level_to_set = 1 + if(GLOB.chemical_data.clearance_level <= 2) + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4)) + else if(GLOB.chemical_data.clearance_level <= 4) + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8)) + else + level_to_set = tgui_input_list(usr, "Set target level for [target_property.name]:","[src]", list(1,2,3,4,5,6,7,8,9,10)) + if(!level_to_set) + return + if(!LAZYISIN(creation_template, target_property)) + LAZYADD(creation_template, target_property) + target_property.level = level_to_set + if(target_property.max_level && target_property.level > target_property.max_level) + target_property.level = target_property.max_level + to_chat(usr, "Max level for [target_property.name] is [target_property.max_level].") + calculate_creation_cost() + if("change_complexity") + var/slot = params["complexity_slot"] + var/new_rarity = tgui_input_list(usr, "Set chemical rarity for complexity slot [slot]:", "[src]", list("BASIC (+7)", "COMMON (+4)", "UNCOMMON (1)", "RARE (-5)")) + if(!new_rarity || simulating != SIMULATION_STAGE_OFF) + return + switch(new_rarity) + if("BASIC (+7)") + creation_complexity[slot] = CHEM_CLASS_BASIC + if("COMMON (+4)") + creation_complexity[slot] = CHEM_CLASS_COMMON + if("UNCOMMON (1)") + creation_complexity[slot] = CHEM_CLASS_UNCOMMON + if("RARE (-5)") + creation_complexity[slot] = CHEM_CLASS_RARE + calculate_creation_cost() + if("keyboard_sound")//only exists to give sound + playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1) return - - switch(new_rarity) - if("BASIC (+7)") - creation_complexity[slot] = CHEM_CLASS_BASIC - if("COMMON (+4)") - creation_complexity[slot] = CHEM_CLASS_COMMON - if("UNCOMMON (1)") - creation_complexity[slot] = CHEM_CLASS_UNCOMMON - if("RARE (-5)") - creation_complexity[slot] = CHEM_CLASS_RARE - calculate_creation_cost() - ready = check_ready() playsound(loc, pick('sound/machines/computer_typing1.ogg','sound/machines/computer_typing2.ogg','sound/machines/computer_typing3.ogg'), 5, 1) - nanomanager.update_uis(src) /obj/structure/machinery/chem_simulator/process() if(inoperable()) @@ -380,11 +402,10 @@ relate(C) if(!C.original_id) C.original_id = target.data.id - C.id = encode_reagent(C) - C.name = C.id + encode_reagent(C) if(C.id in simulations) //We've already simulated this before, so we don't need to continue - C = chemical_reagents_list[C.id] + C = GLOB.chemical_reagents_list[C.id] print(C.id) status_bar = "SIMULATION COMPLETE" simulating = SIMULATION_STAGE_OFF @@ -398,13 +419,13 @@ else ready = check_ready() stop_processing() - nanomanager.update_uis(src) + SSnano.nanomanager.update_uis(src) /obj/structure/machinery/chem_simulator/proc/update_costs() property_costs = list() var/only_positive = TRUE if(mode == MODE_CREATE) - for(var/datum/chem_property/P in chemical_data.research_property_data) + for(var/datum/chem_property/P in GLOB.chemical_data.research_property_data) property_costs[P.name] = max(abs(P.value), 1) else if(target && target.data && target.completed) for(var/datum/chem_property/P in target.data.properties) @@ -431,7 +452,7 @@ if(only_positive) for(var/P in property_costs) property_costs[P] = property_costs[P] + 1 - chemical_data.has_new_properties = FALSE + GLOB.chemical_data.has_new_properties = FALSE //Here the cost for creating a chemical is calculated. If you're looking to rebalance create mode, this is where you do it /obj/structure/machinery/chem_simulator/proc/calculate_creation_cost() @@ -442,8 +463,8 @@ min_creation_cost += slots_used - 2 for(var/datum/chem_property/P in creation_template) creation_cost += max(abs(P.value), 1) * P.level - if(P.level > 5) // a penalty is added at each level above 5 (+1 at 6, +2 at 7, +4 at 8, +5 at 9, +7 at 10) - creation_cost += P.level - 6 + n_ceil((P.level - 5) / 2) + if(P.level > 5 && P.cost_penalty) // a penalty is added at each level above 5 (+1 at 6, +2 at 7, +4 at 8, +5 at 9, +7 at 10) + creation_cost += P.level - 6 + ceil((P.level - 5) / 2) creation_cost += ((new_od_level - 10) / 5) * 3 //3 cost for every 5 units above 10 for(var/rarity in creation_complexity) switch(rarity) @@ -468,7 +489,7 @@ new_od_level = max(new_od_level - 5, 5) /obj/structure/machinery/chem_simulator/proc/prepare_recipe_options() - var/datum/chemical_reaction/generated/O = chemical_reactions_list[target.data.id] + var/datum/chemical_reaction/generated/O = GLOB.chemical_reactions_list[target.data.id] if(!O) //If it doesn't have a recipe, go immediately to finalizing, which will then generate a new associated recipe return FALSE recipe_targets = list() //reset @@ -481,7 +502,7 @@ if(LAZYLEN(R.required_reagents) > 2) LAZYREMOVE(R.required_reagents, pick(R.required_reagents)) var/new_component_id = R.add_component(tier = max(min(target.data.chemclass, CHEM_CLASS_COMMON), target.data.gen_tier, 1)) - var/datum/reagent/new_component = chemical_reagents_list[new_component_id] + var/datum/reagent/new_component = GLOB.chemical_reagents_list[new_component_id] //Make sure we don't have an identical reaction and that the component is identified if(R.check_duplicate() || R.check_reaction_uses_all_default_medical() || new_component.chemclass >= CHEM_CLASS_SPECIAL) R.required_reagents = old_reaction.Copy() @@ -512,47 +533,57 @@ status_bar = "TARGET CAN NOT BE ALTERED" return FALSE //Safety check in case of irregular papers - var/datum/chemical_reaction/C = chemical_reactions_list[target.data.id] + var/datum/chemical_reaction/C = GLOB.chemical_reactions_list[target.data.id] if(C) for(var/component in C.required_reagents) - var/datum/reagent/R = chemical_reagents_list[component] - if(R && R.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[R.id]) + var/datum/reagent/R = GLOB.chemical_reagents_list[component] + if(R && R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id]) status_bar = "UNREGISTERED COMPONENTS DETECTED" return FALSE for(var/catalyst in C.required_catalysts) - var/datum/reagent/R = chemical_reagents_list[catalyst] - if(R && R.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[R.id]) + var/datum/reagent/R = GLOB.chemical_reagents_list[catalyst] + if(R && R.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[R.id]) status_bar = "UNREGISTERED CATALYSTS DETECTED" return FALSE if(target_property) - if(property_costs[target_property.name] > chemical_data.rsc_credits) + if(property_costs[target_property.name] > GLOB.chemical_data.rsc_credits) status_bar = "INSUFFICIENT FUNDS" return FALSE if(target_property.category & PROPERTY_TYPE_UNADJUSTABLE) status_bar = "TARGET PROPERTY CAN NOT BE SIMULATED" return FALSE if(mode == MODE_AMPLIFY) - if(target_property.level >= chemical_data.clearance_level*TECHTREE_LEVEL_MULTIPLIER + 2 && chemical_data.clearance_level < 5) + if(target_property.level >= GLOB.chemical_data.clearance_level*TECHTREE_LEVEL_MULTIPLIER + 2 && GLOB.chemical_data.clearance_level < 5) status_bar = "CLEARANCE INSUFFICIENT FOR AMPLIFICATION" return FALSE + else + status_bar = "TARGET NOT SELECTED" + return FALSE if(target && length(target.data.properties) < 2) status_bar = "TARGET COMPLEXITY IMPROPER FOR RELATION" return FALSE - if(reference && target) - if(!reference.completed) - status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE" - return FALSE - if(reference_property) - if(target.data.get_property(reference_property.name)) - status_bar = "REFERENCE PROPERTY ALREADY IN TARGET" + if(mode == MODE_RELATE && isnull(reference)) + status_bar = "NO REFERENCE DATA DETECTED" + return FALSE + if(mode == MODE_RELATE) + if(reference && target) + if(!reference.completed) + status_bar = "INCOMPLETE DATA DETECTED IN REFERENCE" return FALSE - if(target_property) - if(target_property.level != reference_property.level) - status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS" - return FALSE - if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE) - status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED" + if(reference_property) + if(target.data.get_property(reference_property.name)) + status_bar = "REFERENCE PROPERTY ALREADY IN TARGET" return FALSE + if(target_property) + if(target_property.level != reference_property.level) + status_bar = "REFERENCE AND TARGET PROPERTY MUST BE OF EQUAL LEVELS" + return FALSE + if(reference_property.category & PROPERTY_TYPE_UNADJUSTABLE) + status_bar = "REFERENCE PROPERTY CAN NOT BE SIMULATED" + return FALSE + else + status_bar = "REFERENCE PROPERTY NOT SELECTED" + return FALSE if(mode == MODE_CREATE) if(!LAZYLEN(creation_template)) status_bar = "TEMPLATE IS EMPTY" @@ -560,13 +591,14 @@ if(LAZYLEN(creation_name) < 2) status_bar = "NAME NOT SET" return FALSE - if(creation_cost > chemical_data.rsc_credits) + if(creation_cost > GLOB.chemical_data.rsc_credits) status_bar = "INSUFFICIENT FUNDS" return FALSE else if(!target) status_bar = "NO TARGET INSERTED" return FALSE - status_bar = "READY" + if(simulating == SIMULATION_STAGE_OFF) + status_bar = "READY" return TRUE /obj/structure/machinery/chem_simulator/proc/print(id, is_new) @@ -575,22 +607,24 @@ flick("[icon_state]_printing",src) sleep(10) var/obj/item/paper/research_report/report = new /obj/item/paper/research_report/(loc) - var/datum/reagent/D = chemical_reagents_list[id] + var/datum/reagent/D = GLOB.chemical_reagents_list[id] var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - report.name = "Simulation result for [D.name]" - report.info += "

        Official Company Document
        Simulated Synthesis Report

        Result for [D.name]

        " + report.name = "Simulation result for [D.id]" + report.info += "

        Official Company Document
        Simulated Synthesis Report

        Result for [D.id]

        " report.generate(D) - report.info += "

        This report was automatically printed by the Synthesis Simulator.
        The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[game_year], [worldtime2text()]

        \n" + report.info += "

        This report was automatically printed by the Synthesis Simulator.
        The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]

        \n" playsound(loc, 'sound/machines/twobeep.ogg', 15, 1) if(is_new) - chemical_data.save_document(report, "Synthesis Simulations", report.name) + GLOB.chemical_data.save_document(report, "Synthesis Simulations", report.name) /obj/structure/machinery/chem_simulator/proc/encode_reagent(datum/reagent/C) - var/datum/reagent/O = chemical_reagents_list[C.original_id] //So make the new name based on the Original + var/datum/reagent/O = GLOB.chemical_reagents_list[C.original_id] //So make the new name based on the Original var/suffix = " " for(var/datum/chem_property/P in C.properties) suffix += P.code+"[P.level]" - return O.name + suffix + C.id = O.name + " " + copytext(md5(suffix),1,3) + suffix //Show random suffix AND real properties on research paper + C.name = O.name + " " + copytext(md5(suffix),1,3) //Show ONLY random suffix on health analyzers + return /obj/structure/machinery/chem_simulator/proc/complexity_to_string_list() var/list/L = list() @@ -661,7 +695,7 @@ R.gen_tier = C.gen_tier if(mode != MODE_CREATE) - assoc_R = chemical_reactions_list[target.data.id] + assoc_R = GLOB.chemical_reactions_list[target.data.id] if(!assoc_R) //no associated recipe found if(mode == MODE_CREATE) assoc_R = C.generate_assoc_recipe(creation_complexity) @@ -678,7 +712,7 @@ R.make_alike(assoc_R) if(mode != MODE_CREATE) - if(R.required_reagents.len > 2 && !recipe_targets[recipe_target]) //we only replace if the recipe isn't small and the target is not set TRUE to being elevated + if(length(R.required_reagents) > 2 && !recipe_targets[recipe_target]) //we only replace if the recipe isn't small and the target is not set TRUE to being elevated LAZYREMOVE(R.required_reagents, pick(R.required_reagents)) R.add_component(recipe_target) @@ -690,29 +724,59 @@ //Pay if(mode == MODE_CREATE) - chemical_data.update_credits(creation_cost * -1) + GLOB.chemical_data.update_credits(creation_cost * -1) else - chemical_data.update_credits(property_costs[target_property.name] * -1) + GLOB.chemical_data.update_credits(property_costs[target_property.name] * -1) //Refund 1 credit if a rare or rarer target was added - var/datum/reagent/component = chemical_reagents_list[recipe_target] + var/datum/reagent/component = GLOB.chemical_reagents_list[recipe_target] if(component && component.chemclass >= CHEM_CLASS_RARE) - chemical_data.update_credits(1) + GLOB.chemical_data.update_credits(1) //Save the reagent C.generate_description() C.chemclass = CHEM_CLASS_RARE //So that we can always scan this in the future, don't generate defcon, and don't get a loop of making credits - chemical_reagents_list[C.id] = C + GLOB.chemical_reagents_list[C.id] = C LAZYADD(simulations, C.id) //Remember we've simulated this //Save the reaction R.id = C.id R.result = C.id - chemical_reactions_list[R.id] = R + GLOB.chemical_reactions_list[R.id] = R R.add_to_filtered_list() status_bar = "SIMULATION COMPLETE" print(C.id, TRUE) +/datum/chemical_simulator_modes + var/name + var/desc + var/mode_id + var/icon_type + +/datum/chemical_simulator_modes/create + name = "CREATE" + desc = "Create a new custom chemical from the known properties discovered earlier." + mode_id = MODE_CREATE + icon_type = "bolt" + +/datum/chemical_simulator_modes/supress + name = "SUPRESS" + desc = "Supress one level in the choosen property. This operation lowers the OD level." + mode_id = MODE_SUPPRESS + icon_type = "square-minus" + +/datum/chemical_simulator_modes/amplify + name = "AMPLIFY" + desc = "Amplify one level in the choosen property. This operation lowers the OD level." + mode_id = MODE_AMPLIFY + icon_type = "square-plus" + +/datum/chemical_simulator_modes/relate + name = "RELATE" + desc = "Use the reference chemical to replace one choosen property in the target chemical. The target and reference target property level must be equal, This operation lowers the OD level." + mode_id = MODE_RELATE + icon_type = "repeat" + #undef SIMULATION_FAILURE #undef SIMULATION_STAGE_OFF #undef SIMULATION_STAGE_FINAL diff --git a/code/modules/reagents/chemistry_machinery/chem_storage.dm b/code/modules/reagents/chemistry_machinery/chem_storage.dm index 3a05201dea..a5196147fe 100644 --- a/code/modules/reagents/chemistry_machinery/chem_storage.dm +++ b/code/modules/reagents/chemistry_machinery/chem_storage.dm @@ -12,7 +12,7 @@ var/recharge_cooldown = 15 var/recharge_rate = 10 var/energy = 50 - var/max_energy = 50 + var/max_energy = 100 unslashable = TRUE unacidable = TRUE @@ -31,17 +31,17 @@ /obj/structure/machinery/chem_storage/Initialize() . = ..() - chemical_data.add_chem_storage(src) + GLOB.chemical_data.add_chem_storage(src) start_processing() /obj/structure/machinery/chem_storage/Destroy() - chemical_data.remove_chem_storage(src) + GLOB.chemical_data.remove_chem_storage(src) return ..() /obj/structure/machinery/chem_storage/get_examine_text(mob/user) . = ..() if(in_range(user, src) || istype(user, /mob/dead/observer)) - var/charge = round((energy / max_energy) * 100) + var/charge = floor((energy / max_energy) * 100) . += SPAN_NOTICE("The charge meter reads [charge]%") /obj/structure/machinery/chem_storage/process() @@ -57,4 +57,4 @@ if(energy >= max_energy) return energy = min(energy + recharge_rate, max_energy) - use_power(1500) // This thing uses up alot of power (this is still low as shit for creating reagents from thin air) + use_power(1500) // This thing uses up a lot of power (this is still low as shit for creating reagents from thin air) diff --git a/code/modules/reagents/chemistry_machinery/pandemic.dm b/code/modules/reagents/chemistry_machinery/pandemic.dm index c9e34f7960..85b8c4b0be 100644 --- a/code/modules/reagents/chemistry_machinery/pandemic.dm +++ b/code/modules/reagents/chemistry_machinery/pandemic.dm @@ -59,10 +59,10 @@ if(B) var/datum/disease/D = null if(!vaccine_type) - D = archive_diseases[path] + D = GLOB.archive_diseases[path] vaccine_type = path else - if(vaccine_type in diseases) + if(vaccine_type in GLOB.diseases) D = new vaccine_type(0, null) if(D) @@ -75,7 +75,7 @@ Blood = L break var/list/res = Blood.data_properties["resistances"] - spawn(res.len*200) + spawn(length(res)*200) wait = null else temphtml = "The replicator is not ready yet." @@ -90,11 +90,11 @@ B.icon_state = "bottle3" var/datum/disease/D = null if(!virus_type) - var/datum/disease/advance/A = archive_diseases[href_list["create_virus_culture"]] + var/datum/disease/advance/A = GLOB.archive_diseases[href_list["create_virus_culture"]] if(A) D = new A.type(0, A) else - if(virus_type in diseases) // Make sure this is a disease + if(virus_type in GLOB.diseases) // Make sure this is a disease D = new virus_type(0, null) var/list/data = list("viruses"=list(D)) var/name = strip_html(input(user,"Name:","Name the culture",D.name)) @@ -129,8 +129,8 @@ if(user.stat || user.is_mob_restrained()) return if(!in_range(src, user)) return var/id = href_list["name_disease"] - if(archive_diseases[id]) - var/datum/disease/advance/A = archive_diseases[id] + if(GLOB.archive_diseases[id]) + var/datum/disease/advance/A = GLOB.archive_diseases[id] A.AssignName(new_name) for(var/datum/disease/advance/AD in SSdisease.all_diseases) AD.Refresh() @@ -161,7 +161,7 @@ if(B) Blood = B break - if(!beaker.reagents.total_volume||!beaker.reagents.reagent_list.len) + if(!beaker.reagents.total_volume||!length(beaker.reagents.reagent_list)) dat += "The beaker is empty
        " else if(!Blood) dat += "No blood sample found in beaker" @@ -173,7 +173,7 @@ if(Blood.data_properties["viruses"]) var/list/vir = Blood.data_properties["viruses"] - if(vir.len) + if(length(vir)) for(var/datum/disease/D in Blood.data_properties["viruses"]) if(!D.hidden[PANDEMIC]) @@ -184,7 +184,7 @@ if(istype(D, /datum/disease/advance)) var/datum/disease/advance/A = D - D = archive_diseases[A.GetDiseaseID()] + D = GLOB.archive_diseases[A.GetDiseaseID()] disease_creation = A.GetDiseaseID() if(D.name == "Unknown") dat += "Name Disease
        " @@ -210,13 +210,13 @@ dat += "
        Contains antibodies to: " if(Blood.data_properties["resistances"]) var/list/res = Blood.data_properties["resistances"] - if(res.len) + if(length(res)) dat += "
          " for(var/type in Blood.data_properties["resistances"]) var/disease_name = "Unknown" if(!ispath(type)) - var/datum/disease/advance/A = archive_diseases[type] + var/datum/disease/advance/A = GLOB.archive_diseases[type] if(A) disease_name = A.name else @@ -231,7 +231,7 @@ dat += "nothing
          " else dat += "nothing
          " - dat += "
          Eject beaker[((beaker.reagents.total_volume && beaker.reagents.reagent_list.len) ? "-- Empty beaker":"")]
          " + dat += "
          Eject beaker[((beaker.reagents.total_volume && length(beaker.reagents.reagent_list)) ? "-- Empty beaker":"")]
          " dat += "Close" show_browser(user, "[name]
          [dat]", name, "pandemic") diff --git a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm index dc1f72ec41..967177bda9 100644 --- a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm +++ b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm @@ -13,24 +13,27 @@ /obj/structure/machinery/reagent_analyzer/attackby(obj/item/B, mob/living/user) if(processing) - to_chat(user, SPAN_WARNING("The [src] is still processing!")) + to_chat(user, SPAN_WARNING("[src] is still processing!")) return if(!skillcheck(usr, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) to_chat(user, SPAN_WARNING("You have no idea how to use this.")) return if(istype(B, /obj/item/reagent_container/glass/beaker/vial)) if(sample || status) - to_chat(user, SPAN_WARNING("Something is already loaded into the [src].")) + to_chat(user, SPAN_WARNING("Something is already loaded into [src].")) return if(user.drop_inv_item_to_loc(B, src)) sample = B icon_state = "reagent_analyzer_sample" - to_chat(user, SPAN_NOTICE("You insert [B] and start configuring the [src].")) + to_chat(user, SPAN_NOTICE("You insert [B] and start configuring [src].")) updateUsrDialog() if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return + if(!sample) + to_chat(user, SPAN_WARNING("Someone else removed the sample. Make up your mind!")) + return processing = TRUE - if(sample.reagents.total_volume < 30 || sample.reagents.reagent_list.len > 1) + if(sample.reagents.total_volume < 30 || length(sample.reagents.reagent_list) > 1) icon_state = "reagent_analyzer_error" reagent_process() else @@ -51,12 +54,12 @@ addtimer(CALLBACK(src, TYPE_PROC_REF(/obj/structure/machinery/reagent_analyzer, finish_reagent_process)), 4 SECONDS) /obj/structure/machinery/reagent_analyzer/proc/finish_reagent_process() - if(!sample || !sample.reagents || sample.reagents.total_volume < 30 || sample.reagents.reagent_list.len > 1) + if(!sample || !sample.reagents || sample.reagents.total_volume < 30 || length(sample.reagents.reagent_list) > 1) if(!sample || !sample.reagents) print_report(0, "SAMPLE EMPTY.") else if(sample.reagents.total_volume < 30) print_report(0, "SAMPLE SIZE INSUFFICIENT;
          \nA sample size of 30 units is required for analysis.") - else if(sample.reagents.reagent_list.len > 1) + else if(length(sample.reagents.reagent_list) > 1) print_report(0, "SAMPLE CONTAMINATED;
          \nA pure sample is required for analysis.") else print_report(0, "UNKNOWN.") @@ -72,12 +75,12 @@ /obj/structure/machinery/reagent_analyzer/attack_hand(mob/user as mob) if(processing) - to_chat(user, SPAN_WARNING("The [src] is still processing!")) + to_chat(user, SPAN_WARNING("[src] is still processing!")) return if(!sample) - to_chat(user, SPAN_WARNING("The [src] is empty.")) + to_chat(user, SPAN_WARNING("[src] is empty.")) return - to_chat(user, SPAN_NOTICE("You remove the [sample] from the [src].")) + to_chat(user, SPAN_NOTICE("You remove [sample] from [src].")) user.put_in_active_hand(sample) sample = null icon_state = "reagent_analyzer" @@ -89,27 +92,27 @@ var/datum/reagent/S = sample.reagents.reagent_list[1] S.print_report(report = report, sample_number = sample_number) sample.name = "vial ([S.name])" - chemical_data.save_document(report, "XRF Scans", "[sample_number] - [report.name]") + GLOB.chemical_data.save_document(report, "XRF Scans", "[sample_number] - [report.name]") if(S.chemclass < CHEM_CLASS_SPECIAL || (S.chemclass >= CHEM_CLASS_SPECIAL && report.completed)) - chemical_data.save_new_properties(S.properties) - if(S.chemclass >= CHEM_CLASS_SPECIAL && !chemical_data.chemical_identified_list[S.id]) + GLOB.chemical_data.save_new_properties(S.properties) + if(S.chemclass >= CHEM_CLASS_SPECIAL && !GLOB.chemical_data.chemical_identified_list[S.id]) if(last_used) last_used.count_niche_stat(STATISTICS_NICHE_CHEMS) var/datum/chem_property/P = S.get_property(PROPERTY_DNA_DISINTEGRATING) if(P) - if(chemical_data.clearance_level >= S.gen_tier) + if(GLOB.chemical_data.clearance_level >= S.gen_tier) P.trigger() else return - chemical_data.complete_chemical(S) + GLOB.chemical_data.complete_chemical(S) else var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) report.name = "Analysis of ERROR" report.info += "

          Official Weyland-Yutani Document
          Reagent Analysis Print

          Analysis ERROR

          " report.info += "Result:
          Analysis failed for sample #[sample_number].

          \n" report.info += "Reason for error:
          [reason]
          \n" - report.info += "

          This report was automatically printed by the A-XRF Scanner.
          The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[game_year], [worldtime2text()]

          \n" + report.info += "

          This report was automatically printed by the A-XRF Scanner.
          The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]

          \n" /datum/reagent/proc/print_report(turf/loc, obj/item/paper/research_report/report, admin_spawned = FALSE, sample_number = 0) if(!report) diff --git a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm index 3c596b6a79..99b19a75f5 100644 --- a/code/modules/reagents/chemistry_machinery/reagent_grinder.dm +++ b/code/modules/reagents/chemistry_machinery/reagent_grinder.dm @@ -90,17 +90,17 @@ updateUsrDialog() return 0 - if(holdingitems && holdingitems.len >= limit) + if(LAZYLEN(holdingitems) >= limit) to_chat(user, SPAN_WARNING("The machine cannot hold anymore items.")) return 1 if(istype(O,/obj/item/storage)) var/obj/item/storage/B = O - if(B.contents.len > 0) + if(length(B.contents) > 0) to_chat(user, SPAN_NOTICE("You start dumping the contents of [B] into [src].")) if(!do_after(user, 15, INTERRUPT_ALL, BUSY_ICON_GENERIC)) return for(var/obj/item/I in B) - if(holdingitems && holdingitems.len >= limit) + if(LAZYLEN(holdingitems) >= limit) to_chat(user, SPAN_WARNING("The machine cannot hold anymore items.")) break else @@ -165,7 +165,7 @@ if(is_beaker_ready && !is_chamber_empty && !(inoperable())) dat += "Grind the reagents
          " dat += "Juice the reagents

          " - if(holdingitems && holdingitems.len > 0) + if(LAZYLEN(holdingitems) > 0) dat += "Eject the reagents
          " if(beaker) dat += "Detach the beaker
          " @@ -270,7 +270,7 @@ else if(O.potency == -1) return 5 else - return round(O.potency) + return floor(O.potency) /obj/structure/machinery/reagentgrinder/proc/get_juice_amount(obj/item/reagent_container/food/snacks/grown/O) if(!istype(O)) @@ -278,7 +278,7 @@ else if(O.potency == -1) return 5 else - return round(5*sqrt(O.potency)) + return floor(5*sqrt(O.potency)) /obj/structure/machinery/reagentgrinder/proc/remove_object(obj/item/O) holdingitems -= O @@ -348,7 +348,7 @@ O.reagents.remove_reagent("nutriment", min(O.reagents.get_reagent_amount("nutriment"), space)) else if(O.reagents != null && O.reagents.has_reagent("nutriment")) - beaker.reagents.add_reagent(r_id, min(round(O.reagents.get_reagent_amount("nutriment")*abs(amount)), space)) + beaker.reagents.add_reagent(r_id, min(floor(O.reagents.get_reagent_amount("nutriment")*abs(amount)), space)) O.reagents.remove_reagent("nutriment", min(O.reagents.get_reagent_amount("nutriment"), space)) else @@ -357,7 +357,7 @@ if(beaker.reagents.total_volume >= beaker.reagents.maximum_volume) break - if(O.reagents.reagent_list.len == 0) + if(length(O.reagents.reagent_list) == 0) remove_object(O) //Sheets diff --git a/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm new file mode 100644 index 0000000000..3ba09227f6 --- /dev/null +++ b/code/modules/reagents/chemistry_machinery/xenomorph_analyzer.dm @@ -0,0 +1,182 @@ +/obj/structure/machinery/xenoanalyzer + name = "Biomass Analyzer" + desc = "Analyzer of biological material which processes valuable matter into even more valueble data." + density = TRUE + anchored = TRUE + icon = 'icons/obj/structures/machinery/science_machines_64x32.dmi' + icon_state = "xeno_analyzer" //for the time while no sprites + use_power = USE_POWER_NONE + wrenchable = FALSE + idle_power_usage = 40 + bound_x = 32 + ///assoc list containing the path to every upgrade followed by a number representing times this tech was bought. used by price inflation mechanic to increase/decrease price depending on the amount of times you bought it. + var/list/technology_purchased = list() + var/biomass_points = 0 //most important thing in this + var/obj/item/organ/xeno/organ = null + var/busy = FALSE + var/caste_of_organ = null + +/obj/structure/machinery/xenoanalyzer/Initialize(mapload, ...) + . = ..() + for(var/upgrade_type in subtypesof(/datum/research_upgrades)) + var/datum/research_upgrades/upgrade = upgrade_type + if(upgrade.behavior == RESEARCH_UPGRADE_CATEGORY) + continue + if(upgrade.behavior == RESEARCH_UPGRADE_EXCLUDE_BUY) + continue + technology_purchased[upgrade_type] = 0 + +/obj/structure/machinery/xenoanalyzer/attack_hand(mob/user as mob) + if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) + to_chat(user, SPAN_WARNING("You have no idea how to use this.")) + return + tgui_interact(user) + +/obj/structure/machinery/xenoanalyzer/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "XenomorphExtractor", name) + ui.open() + +/obj/structure/machinery/xenoanalyzer/attackby(obj/item/attacked_item, mob/user) + if(!skillcheck(user, SKILL_RESEARCH, SKILL_RESEARCH_TRAINED)) + to_chat(user, SPAN_WARNING("You have no idea how to use this.")) + return + if(istype(attacked_item, /obj/item/organ/xeno)) + if(busy) + to_chat(user, SPAN_WARNING("The [src] is currently busy!")) + if(organ) + to_chat(user, SPAN_WARNING("Organ slot is already full!")) + return + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + to_chat(user, SPAN_WARNING("You were interupted!")) + return + if(!user.drop_inv_item_to_loc(attacked_item, src)) + return + to_chat(user, SPAN_NOTICE("You place the organ in the machine")) + organ = attacked_item + icon_state = "xeno_analyzer_organ_on" + caste_of_organ = organ.caste_origin + playsound(loc, 'sound/machines/fax.ogg', 15, 1) + if(istype(attacked_item, /obj/item/clothing/accessory/health/research_plate)) + var/obj/item/clothing/accessory/health/research_plate/plate = attacked_item + if(plate.recyclable_value == 0 && !plate.can_recycle(user)) + to_chat(user, SPAN_WARNING("You cannot recycle this type of plate")) + return + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + to_chat(user, SPAN_WARNING("You were interupted!")) + return + to_chat(user, SPAN_NOTICE("You recycle [attacked_item]")) + biomass_points += plate.recyclable_value + qdel(attacked_item) + playsound(loc, 'sound/machines/fax.ogg', 15, 1) + +/obj/structure/machinery/xenoanalyzer/ui_data(mob/user) + var/list/data = list() + data["points"] = biomass_points + data["current_clearance"] = GLOB.chemical_data.clearance_level + data["is_x_level"] = GLOB.chemical_data.reached_x_access // why just why + + if(organ) + data["organ"] = TRUE + data["caste"] = caste_of_organ + data["value"] = organ.research_value + else + data["organ"] = FALSE + data["upgrades"] = list() + data["categories"] = list() + for(var/upgrade_type in subtypesof(/datum/research_upgrades))// moved this here since prices are dynamic now + var/datum/research_upgrades/upgrade = upgrade_type + if(upgrade.behavior == RESEARCH_UPGRADE_CATEGORY) + data["categories"] += upgrade.name + continue + if(upgrade.behavior == RESEARCH_UPGRADE_EXCLUDE_BUY) + continue + var/price_adjustment = clamp(upgrade.value_upgrade + upgrade.change_purchase * technology_purchased[upgrade_type], upgrade.minimum_price, upgrade.maximum_price) + data["upgrades"] += list(list( + "name" = capitalize_first_letters(upgrade.name), + "desc" = upgrade.desc, + "cost" = price_adjustment, + "ref" = upgrade_type, + "category" = upgrade.upgrade_type, + "clearance" = upgrade.clearance_req, + "price_change" = upgrade.change_purchase, + )) + return data + +/obj/structure/machinery/xenoanalyzer/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + switch(action) + if("eject_organ") + eject_biomass(usr) + . = TRUE + + if("process_organ") + if(!busy) + busy = TRUE + addtimer(CALLBACK(src, PROC_REF(process_organ), organ.research_value), 3 SECONDS) + flick("xeno_analyzer_on_moving", src) + playsound(loc, 'sound/machines/blender.ogg', 25, TRUE) + QDEL_NULL(organ) + . = TRUE + if("produce") + if(!busy) + start_print_upgrade(text2path(params["ref"]), usr) + playsound(src, 'sound/machines/keyboard2.ogg', 25, TRUE) + +/obj/structure/machinery/xenoanalyzer/proc/eject_biomass(mob/user) + if(busy) + to_chat(user, SPAN_WARNING("[src] is currently busy!")) + return + if(isnull(organ)) + return + icon_state = "xeno_analyzer" + organ.forceMove(get_turf(src)) + organ = null + +/obj/structure/machinery/xenoanalyzer/proc/process_organ(biomass_points_to_add) + biomass_points += biomass_points_to_add + icon_state = "xeno_analyzer" + busy = FALSE + + +/obj/structure/machinery/xenoanalyzer/proc/start_print_upgrade(produce_path, mob/user) + if(stat & NOPOWER) + icon_state = "xeno_analyzer_off" + return + if(busy)//double check for me here + to_chat(user, SPAN_WARNING("[src] makes a annoying hum and flashes red - its currently busy!")) + return + var/path_exists = FALSE + var/datum/research_upgrades/upgrade + var/datum_upgrades + for(datum_upgrades in subtypesof(/datum/research_upgrades)) + upgrade = datum_upgrades + if(upgrade.behavior == RESEARCH_UPGRADE_CATEGORY || upgrade.behavior == RESEARCH_UPGRADE_EXCLUDE_BUY) + continue + if(produce_path == datum_upgrades) + path_exists = TRUE + break + if(!path_exists) + to_chat(user, SPAN_WARNING("[src] makes a suspicious wail before powering down.")) + return + if(clamp(upgrade.value_upgrade + upgrade.change_purchase * technology_purchased[datum_upgrades], upgrade.minimum_price, upgrade.maximum_price) > biomass_points) + to_chat(user, SPAN_WARNING("[src] makes a worrying beep and flashes red, theres not enough data processed to build the requested upgrade!")) + return + if((upgrade.clearance_req > GLOB.chemical_data.clearance_level && upgrade.clearance_req != 6) || (upgrade.clearance_req == 6 && !GLOB.chemical_data.reached_x_access)) + to_chat(user, SPAN_WARNING("[src] makes a annoying hum and flashes red - you don't have access to this upgrade!")) + return + flick("xeno_analyzer_printing", src) + busy = TRUE + biomass_points -= clamp(upgrade.value_upgrade + upgrade.change_purchase * technology_purchased[datum_upgrades], upgrade.minimum_price, upgrade.maximum_price) + technology_purchased[datum_upgrades] += 1 + addtimer(CALLBACK(src, PROC_REF(print_upgrade), produce_path), 3 SECONDS) + +/obj/structure/machinery/xenoanalyzer/proc/print_upgrade(produce_path) + busy = FALSE + var/datum/research_upgrades/item = new produce_path() + item.on_purchase(get_turf(src)) + diff --git a/code/modules/reagents/chemistry_properties/chem_property.dm b/code/modules/reagents/chemistry_properties/chem_property.dm index bf03b4a1c0..d8bf392cf2 100644 --- a/code/modules/reagents/chemistry_properties/chem_property.dm +++ b/code/modules/reagents/chemistry_properties/chem_property.dm @@ -12,6 +12,8 @@ var/updates_stats = FALSE //should the property change other variables in the reagent when added or removed? /// Should reagent with this property explode/start fire when mixed more than overdose threshold at once? var/volatile = FALSE + /// a cost penalty is added at each level above 5 (+1 at 6, +2 at 7, +4 at 8, +5 at 9, +7 at 10) + var/cost_penalty = TRUE /datum/chem_property/Destroy() holder = null diff --git a/code/modules/reagents/chemistry_properties/prop_negative.dm b/code/modules/reagents/chemistry_properties/prop_negative.dm index 5b196bbfc9..e7d40c3da3 100644 --- a/code/modules/reagents/chemistry_properties/prop_negative.dm +++ b/code/modules/reagents/chemistry_properties/prop_negative.dm @@ -84,6 +84,7 @@ rarity = PROPERTY_COMMON starter = TRUE value = 1 //has a combat use + cost_penalty = FALSE /datum/chem_property/negative/corrosive/process(mob/living/M, potency = 1, delta_time) ..() @@ -136,11 +137,9 @@ if(affecting) if(affecting.take_damage(4, 2)) H.UpdateDamageIcon() - if(prob(meltprob)) //Applies disfigurement + if(prob(meltprob)) if(H.pain.feels_pain) H.emote("scream") - H.status_flags |= DISFIGURED - H.name = H.get_visible_name() else M.take_limb_damage(min(6, volume)) return @@ -148,10 +147,9 @@ if(!M.unacidable) M.take_limb_damage(min(6, volume)) if(isxeno(M)) - var/mob/living/carbon/xenomorph/X = M + var/mob/living/carbon/xenomorph/xeno = M if(potency > POTENCY_MAX_TIER_1) //Needs level 7+ to have any effect - X.AddComponent(/datum/component/toxic_buildup, potency * volume * 0.25) - to_chat(X, SPAN_XENODANGER("The corrosive substance damages your carapace!")) + xeno.AddComponent(/datum/component/status_effect/toxic_buildup, potency * volume * 0.25) /datum/chem_property/negative/corrosive/reaction_obj(obj/O, volume, potency) if((istype(O,/obj/item) || istype(O,/obj/effect/glowshroom)) && prob(potency * 10)) @@ -243,6 +241,7 @@ description = "Ruptures endothelial cells making up bloodvessels, causing blood to escape from the circulatory system." rarity = PROPERTY_UNCOMMON value = 2 + cost_penalty = FALSE /datum/chem_property/negative/hemorrhaging/process(mob/living/M, potency = 1, delta_time) if(!ishuman(M)) @@ -278,7 +277,7 @@ L.wounds += I /datum/chem_property/negative/hemorrhaging/reaction_mob(mob/M, method = TOUCH, volume, potency) - M.AddComponent(/datum/component/healing_reduction, potency * volume * POTENCY_MULTIPLIER_VLOW) //deals brute DOT to humans, prevents healing for xenos + M.AddComponent(/datum/component/status_effect/healing_reduction, potency * volume * POTENCY_MULTIPLIER_VLOW) //deals brute DOT to humans, prevents healing for xenos /datum/chem_property/negative/carcinogenic name = PROPERTY_CARCINOGENIC @@ -411,6 +410,7 @@ description = "Breaks down neurons causing widespread damage to the central nervous system and brain functions. Exposure may cause disorientation or unconsciousness to affected persons." rarity = PROPERTY_COMMON category = PROPERTY_TYPE_TOXICANT|PROPERTY_TYPE_STIMULANT + cost_penalty = FALSE /datum/chem_property/negative/neurotoxic/process(mob/living/M, potency = 1) M.apply_damage(POTENCY_MULTIPLIER_MEDIUM * potency, BRAIN) @@ -429,10 +429,12 @@ /datum/chem_property/negative/neurotoxic/reaction_mob(mob/M, method = TOUCH, volume, potency) if(ishuman(M)) - var/mob/living/carbon/human/H = M - H.apply_damage(potency, BRAIN) - to_chat(M, SPAN_WARNING("You start to go numb.")) - M.apply_effect(potency * volume * POTENCY_MULTIPLIER_LOW, DAZE) + var/mob/living/carbon/human/human = M + human.Daze(potency * volume * POTENCY_MULTIPLIER_VLOW) + to_chat(human, SPAN_WARNING("You start to go numb.")) + if(isxeno(M)) + var/mob/living/carbon/xenomorph/xeno = M + xeno.AddComponent(/datum/component/status_effect/daze, volume * potency * POTENCY_MULTIPLIER_LOW, 30) /datum/chem_property/negative/hypermetabolic name = PROPERTY_HYPERMETABOLIC diff --git a/code/modules/reagents/chemistry_properties/prop_neutral.dm b/code/modules/reagents/chemistry_properties/prop_neutral.dm index 3048b12ee2..9410f6f43c 100644 --- a/code/modules/reagents/chemistry_properties/prop_neutral.dm +++ b/code/modules/reagents/chemistry_properties/prop_neutral.dm @@ -25,11 +25,11 @@ value = 1 /datum/chem_property/neutral/thanatometabolizing/pre_process(mob/living/M) - if(M.stat != DEAD && M.oxyloss < 50 && round(M.blood_volume) > BLOOD_VOLUME_OKAY) + if(M.stat != DEAD && M.oxyloss < 50 && floor(M.blood_volume) > BLOOD_VOLUME_OKAY) return list(REAGENT_CANCEL = TRUE) var/effectiveness = 1 if(M.stat != DEAD) - effectiveness = Clamp(max(M.oxyloss / 10, (BLOOD_VOLUME_NORMAL - M.blood_volume) / BLOOD_VOLUME_NORMAL) * 0.1 * level, 0.1, 1) + effectiveness = clamp(max(M.oxyloss / 10, (BLOOD_VOLUME_NORMAL - M.blood_volume) / BLOOD_VOLUME_NORMAL) * 0.1 * level, 0.1, 1) return list(REAGENT_FORCE = TRUE, REAGENT_EFFECT = effectiveness) /datum/chem_property/neutral/excreting @@ -519,6 +519,34 @@ /datum/chem_property/neutral/hyperthrottling/process_critical(mob/living/M, potency = 1, delta_time) M.apply_effect(potency * delta_time, PARALYZE) +/datum/chem_property/neutral/encephalophrasive + name = PROPERTY_ENCEPHALOPHRASIVE + code = "ESP" + description = "Drastically increases the amplitude of Gamma and Beta brain waves, allowing the host to broadcast their mind." + rarity = PROPERTY_LEGENDARY + category = PROPERTY_TYPE_STIMULANT + value = 8 + +/datum/chem_property/neutral/encephalophrasive/on_delete(mob/living/chem_host) + ..() + + chem_host.pain.recalculate_pain() + remove_action(chem_host, /datum/action/human_action/psychic_whisper) + to_chat(chem_host, SPAN_NOTICE("The pain in your head subsides, and you are left feeling strangely alone.")) + +/datum/chem_property/neutral/encephalophrasive/reaction_mob(mob/chem_host, method=INGEST, volume, potency) + give_action(chem_host, /datum/action/human_action/psychic_whisper) + to_chat(chem_host, SPAN_NOTICE("A terrible headache manifests, and suddenly it feels as though your mind is outside of your skull.")) + +/datum/chem_property/neutral/encephalophrasive/process(mob/living/chem_host, potency = 1, delta_time) + chem_host.pain.apply_pain(1 * potency) + +/datum/chem_property/neutral/encephalophrasive/process_overdose(mob/living/chem_host, potency = 1, delta_time) + chem_host.apply_damage(0.5 * potency * POTENCY_MULTIPLIER_VHIGH * delta_time, BRAIN) + +/datum/chem_property/neutral/encephalophrasive/process_critical(mob/living/chem_host, potency = 1, delta_time) + chem_host.apply_effect(20, PARALYZE) + /datum/chem_property/neutral/viscous name = PROPERTY_VISCOUS code = "VIS" @@ -592,6 +620,7 @@ rarity = PROPERTY_RARE starter = FALSE value = 3 + cost_penalty = FALSE var/heal_amount = 0.75 /datum/chem_property/neutral/transformative/process(mob/living/M, potency = 1, delta_time) diff --git a/code/modules/reagents/chemistry_properties/prop_positive.dm b/code/modules/reagents/chemistry_properties/prop_positive.dm index a8a11fc299..8433322724 100644 --- a/code/modules/reagents/chemistry_properties/prop_positive.dm +++ b/code/modules/reagents/chemistry_properties/prop_positive.dm @@ -28,6 +28,7 @@ rarity = PROPERTY_COMMON starter = TRUE value = 1 + cost_penalty = FALSE /datum/chem_property/positive/anticorrosive/process(mob/living/M, potency = 1) M.heal_limb_damage(0, potency) @@ -47,6 +48,7 @@ rarity = PROPERTY_COMMON starter = TRUE value = 1 + cost_penalty = FALSE /datum/chem_property/positive/neogenetic/process(mob/living/M, potency = 1) M.heal_limb_damage(potency, 0) @@ -69,7 +71,7 @@ /datum/chem_property/positive/repairing name = PROPERTY_REPAIRING code = "REP" - description = "Repairs cybernetic organs by REDACTED." + description = "Repairs cybernetic organs by the use of REDACTED property of REDACTED element." rarity = PROPERTY_UNCOMMON category = PROPERTY_TYPE_MEDICINE value = 2 @@ -216,7 +218,7 @@ /datum/chem_property/positive/musclestimulating/reaction_mob(mob/M, method = TOUCH, volume, potency = 1) if(!isxeno_human(M)) return - M.AddComponent(/datum/component/speed_modifier, volume, TRUE, AMOUNT_PER_TIME(1, potency SECONDS), potency*volume) //Long-lasting speed for beans, stamina for humans + M.AddComponent(/datum/component/status_effect/speed_modifier, volume, TRUE, AMOUNT_PER_TIME(1, potency SECONDS), potency*volume) //Long-lasting speed for beans, stamina for humans /datum/chem_property/positive/painkilling name = PROPERTY_PAINKILLING @@ -399,7 +401,7 @@ L.time_to_knit = 600 // 6 mins if(L.time_to_knit && (L.status & LIMB_BROKEN) && L.knitting_time == -1) if(!(L.status & LIMB_SPLINTED)) - potency -= 2.5 // It'll work, but we're effectively 5 level lower. + potency -= 1 // It'll work, but we're effectively 2 levels lower. if(potency > 0) var/total_knitting_time = world.time + L.time_to_knit - min(150*potency, L.time_to_knit - 50) L.knitting_time = total_knitting_time @@ -433,7 +435,7 @@ if(L.status & (LIMB_ROBOT|LIMB_SYNTHSKIN)) L.take_damage(0, potency) return - if(L.implants && L.implants.len > 0) + if(LAZYLEN(L.implants) > 0) var/obj/implanted_object = pick(L.implants) if(implanted_object) L.implants -= implanted_object @@ -450,6 +452,7 @@ description = "Causes a temporal freeze of all neurological processes and cellular respirations in the brain. This allows the brain to be preserved for long periods of time." rarity = PROPERTY_UNCOMMON category = PROPERTY_TYPE_REACTANT + cost_penalty = FALSE /datum/chem_property/positive/neurocryogenic/process(mob/living/M, potency = 1, delta_time) if(prob(10 * delta_time)) @@ -473,7 +476,7 @@ /datum/chem_property/positive/neurocryogenic/reaction_mob(mob/M, method = TOUCH, volume, potency = 1) if(!isxeno_human(M)) return - M.AddComponent(/datum/component/speed_modifier, potency * volume * 0.5) //Brainfreeze + M.AddComponent(/datum/component/status_effect/speed_modifier, potency * volume * 0.5) //Brainfreeze /datum/chem_property/positive/antiparasitic name = PROPERTY_ANTIPARASITIC @@ -489,7 +492,7 @@ var/obj/item/alien_embryo/embryo = content if(embryo && istype(embryo)) if(embryo.counter > 0) - embryo.counter = embryo.counter - potency + embryo.counter = embryo.counter - (potency * delta_time) current_human.take_limb_damage(0,POTENCY_MULTIPLIER_MEDIUM*potency) else embryo.stage-- @@ -548,6 +551,7 @@ rarity = PROPERTY_RARE category = PROPERTY_TYPE_REACTANT value = 3 + cost_penalty = FALSE COOLDOWN_DECLARE(ghost_notif) /datum/chem_property/positive/defibrillating/on_delete(mob/living/M) @@ -599,7 +603,7 @@ var/mob/dead/observer/ghost = dead.get_ghost() if(ghost?.client) COOLDOWN_START(src, ghost_notif, 30 SECONDS) - playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg') + playsound_client(ghost.client, 'sound/effects/revive_notify.ogg') to_chat(ghost, SPAN_BOLDNOTICE("Your heart is struggling to pump! There is a chance you might get up!(Verbs -> Ghost -> Re-enter corpse, or click here!)")) return TRUE @@ -684,6 +688,7 @@ rarity = PROPERTY_DISABLED category = PROPERTY_TYPE_REACTANT|PROPERTY_TYPE_COMBUSTIBLE value = 2 + cost_penalty = FALSE var/intensitymod_per_level = 0 var/radiusmod_per_level = 0 @@ -723,6 +728,11 @@ holder.durationfire = max(holder.durationfire, 1) holder.intensityfire = max(holder.intensityfire, 1) + if(holder.intensityfire >= 50 && istype(holder, /datum/reagent/generated)) + holder.burncolor = "#ffffff" + else + holder.burncolor = holder.color + /datum/chem_property/positive/fire/fueling name = PROPERTY_FUELING code = "FUL" @@ -777,8 +787,6 @@ rarity = PROPERTY_COMMON value = 1 range_per_level = 1 - duration_per_level = -1 - intensity_per_level = -1 intensitymod_per_level = -0.05 radiusmod_per_level = 0.05 @@ -835,6 +843,7 @@ description = "Disrupts certain neurological processes related to communication in animals." rarity = PROPERTY_UNCOMMON category = PROPERTY_TYPE_TOXICANT + cost_penalty = FALSE /datum/chem_property/positive/disrupting/process(mob/living/M, potency = 1) to_chat(M, SPAN_NOTICE("Your mind feels oddly... quiet.")) @@ -848,8 +857,8 @@ /datum/chem_property/positive/disrupting/reaction_mob(mob/M, method=TOUCH, volume, potency) if(!isxeno(M)) return - var/mob/living/carbon/xenomorph/X = M - X.interference += (volume * potency) + var/mob/living/carbon/xenomorph/xeno = M + xeno.AddComponent(/datum/component/status_effect/interference, volume * potency, 90) /datum/chem_property/positive/neutralizing name = PROPERTY_NEUTRALIZING @@ -857,6 +866,7 @@ description = "Neutralizes certain reactive chemicals and plasmas on contact. Unsafe to administer intravenously." rarity = PROPERTY_UNCOMMON category = PROPERTY_TYPE_IRRITANT + cost_penalty = FALSE /datum/chem_property/positive/neutralizing/process(mob/living/M, potency = 1) M.apply_damages(0, potency, potency * POTENCY_MULTIPLIER_LOW) @@ -873,8 +883,9 @@ var/mob/living/L = M L.ExtinguishMob() //Extinguishes mobs on contact if(isxeno(L)) - var/mob/living/carbon/xenomorph/X = M - X.plasma_stored = max(X.plasma_stored - POTENCY_MULTIPLIER_VHIGH * POTENCY_MULTIPLIER_VHIGH * potency, 0) + var/mob/living/carbon/xenomorph/xeno = M + xeno.plasma_stored = max(xeno.plasma_stored - POTENCY_MULTIPLIER_HIGH * volume * potency, 0) + to_chat(xeno, SPAN_WARNING("You feel your plasma reserves being drained!")) /datum/chem_property/positive/neutralizing/reaction_turf(turf/T, volume, potency) if(!istype(T)) @@ -938,10 +949,6 @@ /datum/chem_property/positive/aiding/process(mob/living/M, potency = 1, delta_time) M.disabilities = 0 M.sdisabilities = 0 - M.status_flags &= ~DISFIGURED - if(ishuman(M)) - var/mob/living/carbon/human/H = M - H.name = H.get_visible_name() /datum/chem_property/positive/aiding/process_overdose(mob/living/M, potency = 1, delta_time) M.confused = max(M.confused, 20 * potency) //Confusion and some toxins @@ -992,3 +999,37 @@ /datum/chem_property/positive/anticarcinogenic/process_critical(mob/living/M, potency = 1) M.take_limb_damage(POTENCY_MULTIPLIER_MEDIUM * potency)//Hyperactive apoptosis + +/datum/chem_property/positive/regulating + name = PROPERTY_REGULATING + code = "REG" + description = "The chemical regulates its own metabolization, any amount overdosed is turned into sugar." + rarity = PROPERTY_COMMON + category = PROPERTY_TYPE_METABOLITE + max_level = 1 + value = 1 + +/datum/chem_property/positive/regulating/reset_reagent() + holder.flags = initial(holder.flags) + ..() + +/datum/chem_property/positive/regulating/update_reagent() + holder.flags |= REAGENT_CANNOT_OVERDOSE + ..() + +/datum/chem_property/positive/firepenetrating + name = PROPERTY_FIRE_PENETRATING + code = "PTR" + description = "Gives the chemical a unique, anomalous combustion chemistry, causing the flame to react with flame-resistant material and obliterate through it." + rarity = PROPERTY_RARE + category = PROPERTY_TYPE_REACTANT + value = 8 + max_level = 1 + +/datum/chem_property/positive/firepenetrating/reset_reagent() + holder.fire_penetrating = initial(holder.fire_penetrating) + ..() + +/datum/chem_property/positive/firepenetrating/update_reagent() + holder.fire_penetrating = TRUE + ..() diff --git a/code/modules/reagents/chemistry_properties/prop_special.dm b/code/modules/reagents/chemistry_properties/prop_special.dm index 5921644777..a384fb54bb 100644 --- a/code/modules/reagents/chemistry_properties/prop_special.dm +++ b/code/modules/reagents/chemistry_properties/prop_special.dm @@ -6,28 +6,12 @@ /datum/chem_property/special/boosting name = PROPERTY_BOOSTING code = "BST" - description = "Boosts the potency of all other properties in this chemical when inside the body." + description = "Boosts the potency of all other properties in this chemical when inside the body by 0.5 levels for every level that this property has." rarity = PROPERTY_LEGENDARY category = PROPERTY_TYPE_METABOLITE /datum/chem_property/special/boosting/pre_process(mob/living/M) - return list(REAGENT_BOOST = level) - -/datum/chem_property/special/regulating - name = PROPERTY_REGULATING - code = "REG" - description = "The chemical regulates its own metabolization and can thus never cause overdosis." - rarity = PROPERTY_LEGENDARY - category = PROPERTY_TYPE_METABOLITE - max_level = 1 - -/datum/chem_property/special/regulating/reset_reagent() - holder.flags = initial(holder.flags) - ..() - -/datum/chem_property/special/regulating/update_reagent() - holder.flags |= REAGENT_CANNOT_OVERDOSE - ..() + return list(REAGENT_BOOST = level * 0.5) /datum/chem_property/special/hypergenetic name = PROPERTY_HYPERGENETIC @@ -53,7 +37,7 @@ /datum/chem_property/special/hypergenetic/reaction_mob(mob/M, method=TOUCH, volume, potency) if(!isxeno_human(M)) return - M.AddComponent(/datum/component/healing_reduction, -potency * volume * POTENCY_MULTIPLIER_LOW) //reduces heal reduction if present + M.AddComponent(/datum/component/status_effect/healing_reduction, -potency * volume * POTENCY_MULTIPLIER_LOW) //reduces heal reduction if present if(ishuman(M)) //heals on contact with humans/xenos var/mob/living/carbon/human/H = M H.heal_limb_damage(potency * volume * POTENCY_MULTIPLIER_LOW) @@ -96,8 +80,8 @@ H.contract_disease(new /datum/disease/xeno_transformation(0),1) //This is the real reason PMCs are being sent to retrieve it. /datum/chem_property/special/DNA_Disintegrating/trigger() - SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, holder.name) - chemical_data.update_credits(10) + SSticker.mode.get_specific_call(/datum/emergency_call/goon/chem_retrieval, TRUE, FALSE, holder.name) // "Weyland-Yutani Goon (Chemical Investigation Squad)" + GLOB.chemical_data.update_credits(10) message_admins("The research department has discovered DNA_Disintegrating in [holder.name] adding 10 bonus tech points.") var/datum/techtree/tree = GET_TREE(TREE_MARINE) tree.add_points(10) @@ -353,23 +337,6 @@ holder.durationmod += 0.1 * level ..() -/datum/chem_property/special/firepenetrating - name = PROPERTY_FIRE_PENETRATING - code = "PTR" - description = "Gives the chemical a unique, anomalous combustion chemistry, causing the flame to react with flame-resistant material and obliterate through it." - rarity = PROPERTY_LEGENDARY - category = PROPERTY_TYPE_REACTANT - value = 8 - max_level = 1 - -/datum/chem_property/special/firepenetrating/reset_reagent() - holder.fire_penetrating = initial(holder.fire_penetrating) - ..() - -/datum/chem_property/special/firepenetrating/update_reagent() - holder.fire_penetrating = TRUE - ..() - /datum/chem_property/special/revitalizing name = PROPERTY_REVITALIZING code = "REV" diff --git a/code/modules/reagents/chemistry_reactions/other.dm b/code/modules/reagents/chemistry_reactions/other.dm index 6b60ae8905..08402e82ed 100644 --- a/code/modules/reagents/chemistry_reactions/other.dm +++ b/code/modules/reagents/chemistry_reactions/other.dm @@ -38,7 +38,7 @@ var/location = get_turf(holder.my_atom) // 100 created volume = 4 heavy range & 7 light range. A few tiles smaller than traitor EMP grandes. // 200 created volume = 8 heavy range & 14 light range. 4 tiles larger than traitor EMP grenades. - empulse(location, round(created_volume / 24), round(created_volume / 14), 1) + empulse(location, floor(created_volume / 24), floor(created_volume / 14), 1) holder.clear_reagents() @@ -174,13 +174,27 @@ holder.trigger_volatiles = TRUE return +/datum/chemical_reaction/custom/sticky + name = "Sticky-Napalm" + id = "stickynapalm" + result = "stickynapalm" + required_reagents = list("napalm" = 1, "fuel" = 1) + result_amount = 2 + +/datum/chemical_reaction/custom/high_damage + name = "High-Combustion Napalm Fuel" + id = "highdamagenapalm" + result = "highdamagenapalm" + required_reagents = list("napalm" = 1, "chlorine trifluoride" = 1) + result_amount = 2 + // Chemfire supplement chemicals. /datum/chemical_reaction/chlorinetrifluoride name = "Chlorine Trifluoride" id = "chlorine trifluoride" result = "chlorine trifluoride" required_reagents = list("fluorine" = 3, "chlorine" = 1) - result_amount = 1 + result_amount = 3 /datum/chemical_reaction/chlorinetrifluoride/on_reaction(datum/reagents/holder, created_volume) holder.trigger_volatiles = TRUE @@ -346,6 +360,12 @@ required_reagents = list("fluorine" = 2, "carbon" = 2, "sulphuric acid" = 1) result_amount = 5 +/datum/chemical_reaction/stablefoam + name = "Stabilized metallic foam" + id = "stablefoam" + result = "stablefoam" + required_reagents = list("fluorosurfactant" = 1, "iron" = 1, "sulphuric acid" = 1) + result_amount = 1 /datum/chemical_reaction/foam name = "Foam" @@ -385,28 +405,11 @@ to_chat(M, SPAN_WARNING("The solution spews out a metallic shiny foam!")) var/datum/effect_system/foam_spread/s = new() + if (created_volume > 300) + created_volume = 300 s.set_up(created_volume, location, holder, 1) s.start() - -/datum/chemical_reaction/ironfoam - name = "Iron Foam" - id = "ironlfoam" - result = null - required_reagents = list("iron" = 3, "foaming_agent" = 1, "pacid" = 1) - result_amount = 5 - -/datum/chemical_reaction/ironfoam/on_reaction(datum/reagents/holder, created_volume) - var/location = get_turf(holder.my_atom) - - for(var/mob/M as anything in viewers(5, location)) - to_chat(M, SPAN_WARNING("The solution spews out a metallic dull foam!")) - - var/datum/effect_system/foam_spread/s = new() - s.set_up(created_volume, location, holder, 2) - s.start() - - /datum/chemical_reaction/foaming_agent name = "Foaming Agent" id = "foaming_agent" diff --git a/code/modules/reagents/chemistry_reagents/alcohol.dm b/code/modules/reagents/chemistry_reagents/alcohol.dm index 08beb42fa4..b5db671b62 100644 --- a/code/modules/reagents/chemistry_reagents/alcohol.dm +++ b/code/modules/reagents/chemistry_reagents/alcohol.dm @@ -234,7 +234,7 @@ name = "Poison Wine" id = "pwine" description = "Is this even wine? Toxic! Hallucinogenic! Probably consumed in boatloads by your superiors!" - color = "#000000" // rgb: 0, 0, 0 SHOCKER + color = COLOR_BLACK properties = list(PROPERTY_ALCOHOLIC = 1, PROPERTY_FUELING = 3, PROPERTY_OXIDIZING = 3, PROPERTY_FLOWING = 2) boozepwr = 1 @@ -559,7 +559,7 @@ name = "Snow White" id = "snowwhite" description = "A cold refreshment" - color = "#FFFFFF" // rgb: 255, 255, 255 + color = COLOR_WHITE properties = list(PROPERTY_ALCOHOLIC = 1.5, PROPERTY_FUELING = 3, PROPERTY_OXIDIZING = 3, PROPERTY_FLOWING = 2) boozepwr = 1.5 diff --git a/code/modules/reagents/chemistry_reagents/drink.dm b/code/modules/reagents/chemistry_reagents/drink.dm index e06f898be4..761fa4e2b2 100644 --- a/code/modules/reagents/chemistry_reagents/drink.dm +++ b/code/modules/reagents/chemistry_reagents/drink.dm @@ -174,8 +174,10 @@ /datum/reagent/drink/milk/on_mob_life(mob/living/M) . = ..() - if(!.) return - if(M.getBruteLoss() && prob(20)) M.heal_limb_damage(1,0) + if(!.) + return + if(M.getBruteLoss() && prob(20)) + M.heal_limb_damage(1,0) holder.remove_reagent("capsaicin", 10*REAGENTS_METABOLISM) holder.remove_reagent("hotsauce", 10*REAGENTS_METABOLISM) @@ -211,7 +213,7 @@ M = holder.my_atom if(prob(1)) M.emote("shiver") - M.bodytemperature = max(M.bodytemperature - 10 * TEMPERATURE_DAMAGE_COEFFICIENT, 0) + M.bodytemperature = max(M.bodytemperature - 10 * TEMPERATURE_DAMAGE_COEFFICIENT, T0C) M.recalculate_move_delay = TRUE holder.remove_reagent("capsaicin", 5) holder.remove_reagent("hotsauce", 5) @@ -231,7 +233,7 @@ name = "Cherry Souto" id = "souto_cherry" description = "A cherry flavored soda that's canned in Havanna" - color = "#800000" + color = COLOR_MAROON /datum/reagent/drink/souto/lime name = "Lime Souto" @@ -503,7 +505,7 @@ name = "Lemonade" description = "Oh the nostalgia..." id = "lemonade" - color = "#FFFF00" // rgb: 255, 255, 0 + color = COLOR_YELLOW //*****************************************************************************************************/ //***************************************Remove When Safe**********************************************/ diff --git a/code/modules/reagents/chemistry_reagents/food.dm b/code/modules/reagents/chemistry_reagents/food.dm index e1fb172b10..cfd152f7d8 100644 --- a/code/modules/reagents/chemistry_reagents/food.dm +++ b/code/modules/reagents/chemistry_reagents/food.dm @@ -150,7 +150,7 @@ chemclass = CHEM_CLASS_RARE properties = list(PROPERTY_HYPERTHERMIC = 1) -/datum/reagent/condensedcapsaicin/reaction_mob(mob/living/M, method=TOUCH, volume) +/datum/reagent/condensedcapsaicin/reaction_mob(mob/living/M, method=TOUCH, volume, permeable) if(!istype(M, /mob/living) || has_species(M,"Horror")) return @@ -184,7 +184,7 @@ id = "sodiumchloride" description = "A salt made of sodium chloride. Commonly used to season food." reagent_state = SOLID - color = "#FFFFFF" // rgb: 255,255,255 + color = COLOR_WHITE chemfiresupp = TRUE intensitymod = 0.1 burncolor = "#ffff00" @@ -227,7 +227,7 @@ id = "sprinkles" description = "Multi-colored little bits of sugar, commonly found on donuts. Loved by cops." nutriment_factor = 1 * REAGENTS_METABOLISM - color = "#FF00FF" // rgb: 255, 0, 255 + color = COLOR_MAGENTA properties = list(PROPERTY_NUTRITIOUS = 2) flags = REAGENT_NO_GENERATION @@ -288,7 +288,7 @@ description = "The most widely consumed staple food on Earth. Rice is the most important grain with regard to human nutrition and caloric intake." reagent_state = SOLID nutriment_factor = 1 * REAGENTS_METABOLISM - color = "#FFFFFF" // rgb: 0, 0, 0 + color = COLOR_WHITE properties = list(PROPERTY_NUTRITIOUS = 2) /datum/reagent/cherryjelly @@ -304,7 +304,7 @@ name = "Honey" id = "honey" description = "Honey is a natural sweet, viscous food substance composed of mainly fructose and glucose." - color = "#FFFF00" + color = COLOR_YELLOW chemclass = CHEM_CLASS_RARE flags = REAGENT_NO_GENERATION diff --git a/code/modules/reagents/chemistry_reagents/other.dm b/code/modules/reagents/chemistry_reagents/other.dm index 557e977929..74b50f0410 100644 --- a/code/modules/reagents/chemistry_reagents/other.dm +++ b/code/modules/reagents/chemistry_reagents/other.dm @@ -9,11 +9,11 @@ description = "Blood is classified as a connective tissue and consists of two main components: Plasma, which is a clear extracellular fluid. Formed elements, which are made up of the blood cells and platelets." reagent_state = LIQUID color = "#A10808" - data_properties = new/list("blood_type"=null,"blood_colour"= "#A10808","viruses"=null,"resistances"=null) + data_properties = new/list("blood_type"=null,"blood_color"= "#A10808","viruses"=null,"resistances"=null) chemclass = CHEM_CLASS_RARE -/datum/reagent/blood/reaction_mob(mob/M, method=TOUCH, volume) +/datum/reagent/blood/reaction_mob(mob/M, method=TOUCH, volume, permeable) var/datum/reagent/blood/self = src src = null if(self.data_properties && self.data_properties["viruses"]) @@ -85,7 +85,7 @@ color = "#C81040" // rgb: 200, 16, 64 properties = list(PROPERTY_CURING = 4) -/datum/reagent/vaccine/reaction_mob(mob/M, method=TOUCH, volume) +/datum/reagent/vaccine/reaction_mob(mob/M, method=TOUCH, volume, permeable) if(has_species(M,"Horror")) return var/datum/reagent/vaccine/self = src @@ -124,7 +124,7 @@ src = null O.extinguish() -/datum/reagent/water/reaction_mob(mob/living/M, method=TOUCH, volume)//Splashing people with water can help put them out! +/datum/reagent/water/reaction_mob(mob/living/M, method=TOUCH, volume, permeable)//Splashing people with water can help put them out! if(!istype(M, /mob/living)) return if(method == TOUCH) @@ -191,7 +191,7 @@ id = "oxygen" description = "Chemical element of atomic number 8. It is an oxidizing agent that forms oxides with most elements and many other compounds. Dioxygen is used in cellular respiration and is nessesary to sustain organic life." reagent_state = GAS - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemfiresupp = TRUE properties = list(PROPERTY_OXIDIZING = 2) intensitymod = 0.75 @@ -218,7 +218,7 @@ id = "nitrogen" description = "Chemical element of atomic number 7. Liquid nitrogen is commonly used in cryogenics, with its melting point of 63.15 kelvin. Nitrogen is a component of many explosive compounds and fertilizers." reagent_state = GAS - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemclass = CHEM_CLASS_BASIC custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) @@ -229,7 +229,7 @@ id = "hydrogen" description = "Chemical element of atomic number 1. Is the most abundant chemical element in the Universe. Liquid hydrogen was used as one of the first fuel sources for space travel. Very combustible and is used in many chemical reactions." reagent_state = GAS - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemfiresupp = TRUE durationmod = -0.5 radiusmod = 0.2 @@ -260,7 +260,7 @@ color = "#484848" // rgb: 72, 72, 72 overdose = REAGENTS_OVERDOSE chemclass = CHEM_CLASS_BASIC - properties = list(PROPERTY_NEUROTOXIC = 4) + properties = list(PROPERTY_NEUROTOXIC = 4, PROPERTY_NEUROCRYOGENIC = 1, PROPERTY_DISRUPTING = 1) /datum/reagent/sulfur name = "Sulfur" @@ -301,7 +301,7 @@ id = "chlorine" description = "Chemical element of atomic number 17. High concentrations of elemental chlorine is highly reactive and poisonous for all living organisms. Chlorine gas has been used as a chemical warfare agent. Industrially used in the production of disinfectants, medicines, plastics and purification of water." reagent_state = GAS - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY overdose = REAGENTS_OVERDOSE overdose_critical = REAGENTS_OVERDOSE_CRITICAL chemclass = CHEM_CLASS_BASIC @@ -312,18 +312,18 @@ id = "fluorine" description = "Chemical element of atomic number 9. It is a very reactive and highly toxic pale yellow gas at standard conditions. Mostly used for medical and dental purposes." reagent_state = GAS - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY overdose = REAGENTS_OVERDOSE overdose_critical = REAGENTS_OVERDOSE_CRITICAL chemclass = CHEM_CLASS_BASIC - properties = list(PROPERTY_TOXIC = 1) + properties = list(PROPERTY_TOXIC = 1, PROPERTY_NEUTRALIZING = 1) /datum/reagent/sodium name = "Sodium" id = "sodium" description = "Chemical element of atomic number 11. Pure it is a soft and very reactive metal. Many salt compounds contain sodium, such as sodium chloride and sodium bicarbonate. There are more uses for sodium as a salt than as a metal." reagent_state = SOLID - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemclass = CHEM_CLASS_BASIC custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) @@ -349,7 +349,7 @@ id = "lithium" description = "Chemical element of atomic number 3. Is a soft alkali metal commonly used in the production of batteries. Highly reactive and flammable. Used as an antidepressant and for treating bipolar disorder." reagent_state = SOLID - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemfiresupp = TRUE intensitymod = 0.15 burncolor = "#ff356f" @@ -364,7 +364,7 @@ id = "sugar" description = "The organic compound commonly known as table sugar and sometimes called saccharose. This white, odorless, crystalline powder has a pleasing, sweet taste. The most simple form of sugar, glucose, is the only form of nutriment for red blood cells as they have no mitocondria. Sugar can therefore be used to improve blood regeneration as a nutriment, although ineffective." reagent_state = SOLID - color = "#FFFFFF" // rgb: 255, 255, 255 + color = COLOR_WHITE chemclass = CHEM_CLASS_BASIC properties = list(PROPERTY_NUTRITIOUS = 1) flags = REAGENT_TYPE_MEDICAL @@ -389,7 +389,7 @@ id = "glycerol" description = "Glycerol is a simple polyol compound. Glycerol is sweet-tasting and of low toxicity, often used in medicines and beverages. Used in the production of plastic, nitroglycerin and other explosives." reagent_state = LIQUID - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY chemclass = CHEM_CLASS_RARE custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) @@ -401,7 +401,7 @@ reagent_state = SOLID color = "#C7C7C7" // rgb: 199,199,199 chemclass = CHEM_CLASS_BASIC - properties = list(PROPERTY_CARCINOGENIC = 2) + properties = list(PROPERTY_CARCINOGENIC = 2, PROPERTY_HEMORRAGING = 1) /datum/reagent/thermite name = "Thermite" @@ -538,7 +538,7 @@ if(volume >= 1 && istype(T)) T.clean_cleanables() -/datum/reagent/space_cleaner/reaction_mob(mob/M, method=TOUCH, volume) +/datum/reagent/space_cleaner/reaction_mob(mob/M, method=TOUCH, volume, permeable) if(iscarbon(M)) var/mob/living/carbon/C = M if(C.r_hand) @@ -606,18 +606,6 @@ custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) flags = REAGENT_NO_GENERATION -/datum/reagent/nanites - name = "Nanomachines" - id = "nanites" - description = "Microscopic construction robots." - reagent_state = LIQUID - color = "#535E66" // rgb: 83, 94, 102 - -/datum/reagent/nanites/reaction_mob(mob/M, method=TOUCH, volume) - src = null - if((prob(10) && method==TOUCH) || method==INGEST) - M.contract_disease(new /datum/disease/robotic_transformation(0),1) - /datum/reagent/xenomicrobes name = "Xenomicrobes" id = "xenomicrobes" @@ -625,7 +613,7 @@ reagent_state = LIQUID color = "#535E66" // rgb: 83, 94, 102 -/datum/reagent/xenomicrobes/reaction_mob(mob/M, method=TOUCH, volume) +/datum/reagent/xenomicrobes/reaction_mob(mob/M, method=TOUCH, volume, permeable) src = null if((prob(10) && method==TOUCH) || method==INGEST) M.contract_disease(new /datum/disease/xeno_transformation(0),1) @@ -646,6 +634,15 @@ color = "#664B63" // rgb: 102, 75, 99 chemclass = CHEM_CLASS_UNCOMMON +/datum/reagent/foaming_agent/stabilized + name = "Stabilized metallic foam" + id = "stablefoam" + description = "Stabilized metallic foam that solidifies when exposed to an open flame" + reagent_state = LIQUID + color = "#d4b8d1" + chemclass = CHEM_CLASS_UNCOMMON + properties = list(PROPERTY_TOXIC = 8) + /datum/reagent/nicotine name = "Nicotine" id = "nicotine" @@ -697,7 +694,7 @@ custom_metabolism = 100 //disappears immediately properties = list(PROPERTY_RAVENING = 1) -/datum/reagent/blackgoo/reaction_mob(mob/M, method=TOUCH, volume) +/datum/reagent/blackgoo/reaction_mob(mob/M, method=TOUCH, volume, permeable) if(ishuman(M)) var/mob/living/carbon/human/H = M if(H.species.name == "Human") @@ -723,6 +720,40 @@ burn_sprite = "red" properties = list(PROPERTY_OXIDIZING = 6, PROPERTY_FUELING = 7, PROPERTY_FLOWING = 1) +/datum/reagent/napalm/sticky + name = "Sticky-Napalm" + id = "stickynapalm" + description = "A custom napalm mix, stickier and lasts longer but lower damage" + reagent_state = LIQUID + color = "#f8e3b2" + burncolor = "#f8e3b2" + burn_sprite = "dynamic" + intensitymod = -1.5 + durationmod = -5 + radiusmod = -0.5 + properties = list( + PROPERTY_INTENSITY = BURN_LEVEL_TIER_2, + PROPERTY_DURATION = BURN_TIME_TIER_5, + PROPERTY_RADIUS = 5, + ) + +/datum/reagent/napalm/high_damage + name = "High-Combustion Napalm Fuel" + id = "highdamagenapalm" + description = "A custom napalm mix, higher damage but not as sticky" + reagent_state = LIQUID + color = "#c51c1c" + burncolor = "#c51c1c" + burn_sprite = "dynamic" + intensitymod = -4.5 + durationmod = -1 + radiusmod = -0.5 + properties = list( + PROPERTY_INTENSITY = BURN_LEVEL_TIER_8, + PROPERTY_DURATION = BURN_TIME_TIER_1, + PROPERTY_RADIUS = 5, + ) + // This is the regular flamer fuel and pyro regular flamer fuel. /datum/reagent/napalm/ut name = "UT-Napthal Fuel" @@ -741,8 +772,8 @@ id = "napalmgel" description = "Unlike its liquid contemporaries, this gelled variant of napalm is easily extinguished, but shoots far and lingers on the ground in a viscous mess, while reacting with inorganic materials to ignite them." flameshape = FLAMESHAPE_LINE - color = "#00ff00" - burncolor = "#00ff00" + color = COLOR_GREEN + burncolor = COLOR_GREEN burn_sprite = "green" properties = list( PROPERTY_INTENSITY = BURN_LEVEL_TIER_2, @@ -771,8 +802,8 @@ id = "napalmb" description = "A special variant of napalm that's unable to cling well to anything, but disperses over a wide area while burning slowly. The composition reacts with inorganic materials to ignite them, causing severe damage." flameshape = FLAMESHAPE_TRIANGLE - color = "#00ff00" - burncolor = "#00ff00" + color = COLOR_GREEN + burncolor = COLOR_GREEN burn_sprite = "green" properties = list( PROPERTY_INTENSITY = BURN_LEVEL_TIER_2, @@ -785,8 +816,8 @@ name = "Napalm E" id = "napalme" description = "A sticky combustible liquid chemical that penetrates the best fire retardants." - color = "#800080" - burncolor = "#800080" + color = COLOR_PURPLE + burncolor = COLOR_PURPLE burn_sprite = "dynamic" properties = list( PROPERTY_INTENSITY = BURN_LEVEL_TIER_2, @@ -828,7 +859,7 @@ id = "chlorine trifluoride" description = "A highly reactive interhalogen compound capaple of self ignition. A very strong oxidizer and is extremely reactive with most organic and inorganic materials." reagent_state = LIQUID - color = "#00FFFF" + color = COLOR_CYAN custom_metabolism = 100 chemfiresupp = TRUE burncolor = "#ff9300" @@ -895,7 +926,7 @@ id = "nitroglycerin" description = "Nitroglycerin is a heavy, colorless, oily, explosive liquid obtained by nitrating glycerol. Despite being a highly volatile material, it is used for many medical purposes." reagent_state = LIQUID - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY custom_metabolism = AMOUNT_PER_TIME(1, 200 SECONDS) explosive = TRUE power = 1 diff --git a/code/modules/reagents/chemistry_reagents/toxin.dm b/code/modules/reagents/chemistry_reagents/toxin.dm index 445918ef28..53ccb53f17 100644 --- a/code/modules/reagents/chemistry_reagents/toxin.dm +++ b/code/modules/reagents/chemistry_reagents/toxin.dm @@ -205,10 +205,10 @@ id = "potassium_chloride" description = "A bitter tasting salt that can be used as a spice, but can cause cardiac arrest in larger quantities. It has for this reason been used as a component in lethal injections for many years." reagent_state = SOLID - color = "#FFFFFF" // rgb: 255,255,255 + color = COLOR_WHITE chemfiresupp = TRUE intensitymod = 0.1 - burncolor = "#800080" + burncolor = COLOR_PURPLE burncolormod = 5 overdose = 30 chemclass = CHEM_CLASS_UNCOMMON @@ -219,7 +219,7 @@ id = "potassium_chlorophoride" description = "A specific chemical based on Potassium Chloride used to stop the heart for surgery. Causes instant cardiac arrest. Not safe to eat!" reagent_state = SOLID - color = "#FFFFFF" // rgb: 255,255,255 + color = COLOR_WHITE overdose = 20 chemclass = CHEM_CLASS_UNCOMMON properties = list(PROPERTY_RELAXING = 8, PROPERTY_HYPOXEMIC = 4, PROPERTY_TOXIC = 2) @@ -261,7 +261,7 @@ name = "Formaldehyde" id = "formaldehyde" description = "Formaldehyde is a toxic organic gas that is mostly used in making resins, polymers and explosives. It is known to be a natural carcinogen." - color = "#808080" // rgb: 128, 128, 128 + color = COLOR_GRAY reagent_state = GAS chemclass = CHEM_CLASS_UNCOMMON properties = list(PROPERTY_TOXIC = 1, PROPERTY_CARCINOGENIC = 1) diff --git a/code/modules/recycling/conveyor2.dm b/code/modules/recycling/conveyor2.dm index 429f560032..8e1390c778 100644 --- a/code/modules/recycling/conveyor2.dm +++ b/code/modules/recycling/conveyor2.dm @@ -101,7 +101,6 @@ // attack with item, place item on conveyor /obj/structure/machinery/conveyor/attackby(obj/item/I, mob/user) - if(isrobot(user)) return //Carn: fix for borgs dropping their modules on conveyor belts var/obj/item/grab/G = I if(istype(G)) // handle grabbed mob if(ismob(G.grabbed_thing)) @@ -197,7 +196,7 @@ /obj/structure/machinery/conveyor_switch/LateInitialize() . = ..() conveyors = list() - for(var/obj/structure/machinery/conveyor/C in machines) + for(var/obj/structure/machinery/conveyor/C in GLOB.machines) if(C.id == id) conveyors += C start_processing() @@ -246,7 +245,7 @@ update() // find any switches with same id as this one, and set their positions to match us - for(var/obj/structure/machinery/conveyor_switch/S in machines) + for(var/obj/structure/machinery/conveyor_switch/S in GLOB.machines) if(S.id == src.id) S.position = position S.update() @@ -266,7 +265,7 @@ update() // find any switches with same id as this one, and set their positions to match us - for(var/obj/structure/machinery/conveyor_switch/S in machines) + for(var/obj/structure/machinery/conveyor_switch/S in GLOB.machines) if(S.id == src.id) S.position = position S.update() diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 3a1e33a7ac..2477977fb3 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -65,7 +65,7 @@ start_processing() /obj/structure/machinery/disposal/Destroy() - if(contents.len) + if(length(contents)) eject() trunk = null return ..() @@ -86,7 +86,7 @@ add_fingerprint(user) if(mode <= 0) //It's off if(HAS_TRAIT(I, TRAIT_TOOL_SCREWDRIVER)) - if(contents.len > 0) + if(length(contents) > 0) to_chat(user, SPAN_WARNING("Eject the contents first!")) return if(mode == DISPOSALS_OFF) //It's off but still not unscrewed @@ -103,7 +103,7 @@ if(!HAS_TRAIT(I, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return - if(contents.len > 0) + if(length(contents) > 0) to_chat(user, SPAN_WARNING("Eject the contents first!")) return var/obj/item/tool/weldingtool/W = I @@ -172,8 +172,6 @@ return TRUE return FALSE - if(isrobot(user)) - return if(!I) return @@ -195,7 +193,7 @@ return FALSE //Need a firm grip to put someone else in there. if(!istype(target) || target.anchored || target.buckled || get_dist(user, src) > 1 || user.is_mob_incapacitated(TRUE) || isRemoteControlling(user) || target.mob_size >= MOB_SIZE_BIG) - to_chat(user, SPAN_WARNING("You cannot get into the [src]!")) + to_chat(user, SPAN_WARNING("You cannot get into [src]!")) return FALSE add_fingerprint(user) var/target_loc = target.loc @@ -341,7 +339,7 @@ return //Check for items in disposal - occupied light - if(contents.len > 0) + if(length(contents) > 0) overlays += image('icons/obj/pipes/disposal.dmi', "dispover-full") //Charging and ready light @@ -358,7 +356,7 @@ flush_count++ if(flush_count >= flush_after_ticks) - if(contents.len) + if(length(contents)) if(mode == DISPOSALS_CHARGED) spawn(0) flush() @@ -374,7 +372,7 @@ else if(disposal_pressure >= SEND_PRESSURE) mode = DISPOSALS_CHARGED //If full enough, switch to ready mode update() - if(!contents.len) + if(!length(contents)) //Full and nothing to flush - stop processing! stop_processing() else @@ -504,10 +502,6 @@ if(istype(AM, /obj/item/smallDelivery) && !hasmob) var/obj/item/smallDelivery/T = AM destinationTag = T.sortTag - //Drones can mail themselves through maint. - if(istype(AM, /mob/living/silicon/robot/drone)) - var/mob/living/silicon/robot/drone/drone = AM - destinationTag = drone.mail_destination //Start the movement process //Argument is the disposal unit the holder started in @@ -660,7 +654,7 @@ /obj/structure/disposalpipe/proc/nextdir(fromdir) return dpdir & (~turn(fromdir, 180)) -//Transfer the holder through this pipe segment, overriden for special behaviour +//Transfer the holder through this pipe segment, overridden for special behaviour /obj/structure/disposalpipe/proc/transfer(obj/structure/disposalholder/H) var/nextdir = nextdir(H.dir) H.setDir(nextdir) @@ -746,7 +740,7 @@ //Remains : set to leave broken pipe pieces in place /obj/structure/disposalpipe/deconstruct(disassembled = TRUE) if(disassembled) - for(var/D in cardinal) + for(var/D in GLOB.cardinals) if(D & dpdir) var/obj/structure/disposalpipe/broken/P = new(loc) P.setDir(D) @@ -1096,7 +1090,8 @@ /obj/structure/disposalpipe/tagger/Initialize(mapload, ...) . = ..() dpdir = dir|turn(dir, 180) - if(sort_tag) tagger_locations |= sort_tag + if(sort_tag) + GLOB.tagger_locations |= sort_tag updatename() updatedesc() update() @@ -1152,7 +1147,8 @@ /obj/structure/disposalpipe/sortjunction/Initialize(mapload, ...) . = ..() - if(sortType) tagger_locations |= sortType + if(sortType) + GLOB.tagger_locations |= sortType updatedir() updatename() @@ -1377,7 +1373,7 @@ //Expel the contents of the holder object, then delete it. Called when the holder exits the outlet /obj/structure/disposaloutlet/proc/expel(obj/structure/disposalholder/H) - flick("outlet-open", src) + flick("[icon_state]-open", src) playsound(src, 'sound/machines/warning-buzzer.ogg', 25, 0) sleep(20) //Wait until correct animation frame playsound(src, 'sound/machines/hiss.ogg', 25, 0) @@ -1457,7 +1453,7 @@ if(direction) dirs = list( direction, turn(direction, -45), turn(direction, 45)) else - dirs = alldirs.Copy() + dirs = GLOB.alldirs.Copy() INVOKE_ASYNC(streak(dirs)) @@ -1466,7 +1462,7 @@ if(direction) dirs = list( direction, turn(direction, -45), turn(direction, 45)) else - dirs = alldirs.Copy() + dirs = GLOB.alldirs.Copy() INVOKE_ASYNC(streak(dirs)) diff --git a/code/modules/recycling/recycler.dm b/code/modules/recycling/recycler.dm index abbf010bf4..b61854d2e7 100644 --- a/code/modules/recycling/recycler.dm +++ b/code/modules/recycling/recycler.dm @@ -90,7 +90,7 @@ /obj/structure/machinery/recycler/proc/output_materials() for(var/material in stored_matter) if(stored_matter[material] >= sheets_per_batch * 3750) - var/sheets = round(stored_matter[material] / 3750) + var/sheets = floor(stored_matter[material] / 3750) stored_matter[material] -= sheets * 3750 var/obj/item/stack/sheet/sheet_stack switch(material) diff --git a/code/modules/recycling/sortingmachinery.dm b/code/modules/recycling/sortingmachinery.dm index 2b3843bfe5..4ea48f61c7 100644 --- a/code/modules/recycling/sortingmachinery.dm +++ b/code/modules/recycling/sortingmachinery.dm @@ -1,7 +1,7 @@ /obj/structure/bigDelivery desc = "A big wrapped package." name = "large parcel" - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/structures/crates.dmi' icon_state = "deliverycloset" var/obj/wrapped = null density = TRUE @@ -72,7 +72,7 @@ /obj/structure/bigDelivery/update_icon() overlays = new() if(nameset || examtext) - var/image/I = new/image('icons/obj/items/storage.dmi',"delivery_label") + var/image/I = new/image('icons/obj/structures/crates.dmi',"delivery_label") if(icon_state == "deliverycloset") I.pixel_x = 2 if(label_y == null) @@ -85,7 +85,7 @@ I.pixel_y = -3 overlays += I if(src.sortTag) - var/image/I = new/image('icons/obj/items/storage.dmi',"delivery_tag") + var/image/I = new/image('icons/obj/structures/crates.dmi',"delivery_tag") if(icon_state == "deliverycloset") if(tag_x == null) tag_x = rand(-2, 3) @@ -109,7 +109,7 @@ /obj/item/smallDelivery desc = "A small wrapped package." name = "small parcel" - icon = 'icons/obj/items/storage.dmi' + icon = 'icons/obj/structures/crates.dmi' icon_state = "deliverycrate3" var/obj/item/wrapped = null var/sortTag = null @@ -181,12 +181,12 @@ /obj/item/smallDelivery/update_icon() overlays = new() if((nameset || examtext) && icon_state != "deliverycrate1") - var/image/I = new/image('icons/obj/items/storage.dmi',"delivery_label") + var/image/I = new/image('icons/obj/structures/crates.dmi',"delivery_label") if(icon_state == "deliverycrate5") I.pixel_y = -1 overlays += I if(src.sortTag) - var/image/I = new/image('icons/obj/items/storage.dmi',"delivery_tag") + var/image/I = new/image('icons/obj/structures/crates.dmi',"delivery_tag") switch(icon_state) if("deliverycrate1") I.pixel_y = -5 @@ -246,7 +246,7 @@ P.wrapped = O O.forceMove(P) P.w_class = O.w_class - var/i = round(P.w_class) + var/i = floor(P.w_class) if(i in list(1,2,3,4,5)) P.icon_state = "deliverycrate[i]" switch(i) @@ -338,8 +338,8 @@ var/dat = "

          TagMaster 2.3

          " dat += "" - for(var/i = 1, i <= tagger_locations.len, i++) - dat += "" + for(var/i = 1, i <= length(GLOB.tagger_locations), i++) + dat += "" if (i%4==0) dat += "" @@ -358,7 +358,7 @@ if(.) return src.add_fingerprint(usr) - if(href_list["nextTag"] && (href_list["nextTag"] in tagger_locations)) + if(href_list["nextTag"] && (href_list["nextTag"] in GLOB.tagger_locations)) src.currTag = href_list["nextTag"] openwindow(usr) diff --git a/code/modules/round_recording/round_recorder.dm b/code/modules/round_recording/round_recorder.dm index 677b32bba1..8748b995aa 100644 --- a/code/modules/round_recording/round_recorder.dm +++ b/code/modules/round_recording/round_recorder.dm @@ -31,8 +31,8 @@ game_start = time2text(world.realtime, "DD.MM.YYYY@hh:mm:ss") map = SSmapping.configs[GROUND_MAP].map_name - gamemode = master_mode - round_name = round_statistics.name + gamemode = GLOB.master_mode + round_name = GLOB.round_statistics.name // Record the end time of the game and export the game history /datum/round_recorder/proc/end_game() diff --git a/code/modules/security_levels/keycard_authentication.dm b/code/modules/security_levels/keycard_authentication.dm index 9d6d862bfc..c566e20d1f 100644 --- a/code/modules/security_levels/keycard_authentication.dm +++ b/code/modules/security_levels/keycard_authentication.dm @@ -1,6 +1,6 @@ /obj/structure/machinery/keycard_auth name = "Keycard Authentication Device" - desc = "This device is used to trigger station functions, which require more than one ID card to authenticate." + desc = "This device is used to trigger station functions, which require multiple swipes of an ID card to authenticate." icon = 'icons/obj/structures/machinery/monitors.dmi' icon_state = "auth_off" unacidable = TRUE @@ -37,7 +37,7 @@ //This is not the device that made the initial request. It is the device confirming the request. if(event_source) event_source.confirmed = 1 - event_source.event_confirmed_by = usr + event_source.event_confirmed_by = user else if(screen == 2) event_triggered_by = usr broadcast_request() //This is the device making the initial event request. It needs to broadcast to other devices @@ -108,7 +108,7 @@ /obj/structure/machinery/keycard_auth/proc/broadcast_request() icon_state = "auth_on" - for(var/obj/structure/machinery/keycard_auth/KA in machines) + for(var/obj/structure/machinery/keycard_auth/KA in GLOB.machines) if(KA == src || KA.channel != channel) continue KA.reset() INVOKE_ASYNC(KA, TYPE_PROC_REF(/obj/structure/machinery/keycard_auth, receive_request), src) @@ -149,14 +149,14 @@ if(CONFIG_GET(flag/ert_admin_call_only)) return 1 return SSticker.mode && SSticker.mode.ert_disabled -var/global/maint_all_access = 1 +GLOBAL_VAR_INIT(maint_all_access, TRUE) /proc/make_maint_all_access() - maint_all_access = 1 + GLOB.maint_all_access = TRUE ai_announcement("The maintenance access requirement has been removed on all airlocks.") /proc/revoke_maint_all_access() - maint_all_access = 0 + GLOB.maint_all_access = FALSE ai_announcement("The maintenance access requirement has been added on all airlocks.") // Keycard reader at the CORSAT locks @@ -209,7 +209,7 @@ var/global/maint_all_access = 1 /obj/structure/machinery/keycard_auth/lockdown/broadcast_request() icon_state = "auth_on" - for(var/obj/structure/machinery/keycard_auth/lockdown/KA in machines) + for(var/obj/structure/machinery/keycard_auth/lockdown/KA in GLOB.machines) if(KA == src || KA.channel != channel) continue KA.reset() @@ -249,7 +249,7 @@ var/global/maint_all_access = 1 /obj/structure/machinery/keycard_auth/lockdown/proc/timed_countdown(timeleft = 0) if(!timeleft) - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == podlock_id && M.density) INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/door, open)) return diff --git a/code/modules/security_levels/security_levels.dm b/code/modules/security_levels/security_levels.dm index 8221b8771c..b6577a2fcb 100644 --- a/code/modules/security_levels/security_levels.dm +++ b/code/modules/security_levels/security_levels.dm @@ -1,51 +1,44 @@ -/var/security_level = 0 -//0 = code green -//1 = code blue -//2 = code red -//3 = code delta - -//config.alert_desc_blue_downto - +GLOBAL_VAR_INIT(security_level, SEC_LEVEL_GREEN) /proc/set_security_level(level, no_sound = FALSE, announce = TRUE, log = ARES_LOG_SECURITY) - if(level != security_level) + if(level != GLOB.security_level) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_SECURITY_LEVEL_CHANGED, level) //Will not be announced if you try to set to the same level as it already is - if(level >= SEC_LEVEL_GREEN && level <= SEC_LEVEL_DELTA && level != security_level) + if(level >= SEC_LEVEL_GREEN && level <= SEC_LEVEL_DELTA && level != GLOB.security_level) switch(level) if(SEC_LEVEL_GREEN) if(announce) ai_announcement("Attention: Security level lowered to GREEN - all clear.", no_sound ? null : 'sound/AI/code_green.ogg', log) - security_level = SEC_LEVEL_GREEN + GLOB.security_level = SEC_LEVEL_GREEN if(SEC_LEVEL_BLUE) - if(security_level < SEC_LEVEL_BLUE) + if(GLOB.security_level < SEC_LEVEL_BLUE) if(announce) ai_announcement("Attention: Security level elevated to BLUE - potentially hostile activity on board.", no_sound ? null : 'sound/AI/code_blue_elevated.ogg', log) else if(announce) ai_announcement("Attention: Security level lowered to BLUE - potentially hostile activity on board.", no_sound ? null : 'sound/AI/code_blue_lowered.ogg', log) - security_level = SEC_LEVEL_BLUE + GLOB.security_level = SEC_LEVEL_BLUE if(SEC_LEVEL_RED) - if(security_level < SEC_LEVEL_RED) + if(GLOB.security_level < SEC_LEVEL_RED) if(announce) ai_announcement("Attention: Security level elevated to RED - there is an immediate threat to the ship.", no_sound ? null : 'sound/AI/code_red_elevated.ogg', log) else if(announce) ai_announcement("Attention: Security level lowered to RED - there is an immediate threat to the ship.", no_sound ? null : 'sound/AI/code_red_lowered.ogg', log) - security_level = SEC_LEVEL_RED + GLOB.security_level = SEC_LEVEL_RED if(SEC_LEVEL_DELTA) if(announce) var/name = "SELF-DESTRUCT SYSTEMS ACTIVE" var/input = "DANGER, THE EMERGENCY DESTRUCT SYSTEM IS NOW ACTIVATED. PROCEED TO THE SELF-DESTRUCT CHAMBER FOR CONTROL ROD INSERTION." marine_announcement(input, name, 'sound/AI/selfdestruct_short.ogg', logging = log) - security_level = SEC_LEVEL_DELTA + GLOB.security_level = SEC_LEVEL_DELTA /proc/get_security_level() - switch(security_level) + switch(GLOB.security_level) if(SEC_LEVEL_GREEN) return "green" if(SEC_LEVEL_BLUE) diff --git a/code/modules/shuttle/computer.dm b/code/modules/shuttle/computer.dm index 549ddb3bfa..5f17c9a732 100644 --- a/code/modules/shuttle/computer.dm +++ b/code/modules/shuttle/computer.dm @@ -96,6 +96,15 @@ var/disabled = FALSE var/compatible_landing_zones = list() + /// this interface is busy - used in [/obj/structure/machinery/computer/shuttle/ert/proc/launch_home] as this can take a second + var/spooling + + /// if this shuttle only has the option to return home + var/must_launch_home = FALSE + + /// if the ERT that used this shuttle has returned home + var/mission_accomplished = FALSE + /obj/structure/machinery/computer/shuttle/ert/broken name = "nonfunctional shuttle control console" disabled = TRUE @@ -108,8 +117,48 @@ /obj/structure/machinery/computer/shuttle/ert/proc/get_landing_zones() . = list() for(var/obj/docking_port/stationary/emergency_response/dock in SSshuttle.stationary) - if(!dock.is_external) - . += list(dock) + if(!is_mainship_level(dock.z)) + continue + + if(dock.is_external) + continue + + . += list(dock) + +/obj/structure/machinery/computer/shuttle/ert/proc/launch_home() + if(spooling) + return + + var/obj/docking_port/mobile/emergency_response/ert = SSshuttle.getShuttle(shuttleId) + + spooling = TRUE + SStgui.update_uis(src) + + var/datum/turf_reservation/loaded = SSmapping.lazy_load_template(ert.distress_beacon.home_base, force = TRUE) + var/turf/bottom_left = loaded.bottom_left_turfs[1] + var/turf/top_right = loaded.top_right_turfs[1] + + var/obj/docking_port/stationary/emergency_response/target + for(var/obj/docking_port/stationary/emergency_response/shuttle in SSshuttle.stationary) + if(shuttle.z != bottom_left.z) + continue + if(shuttle.x >= top_right.x || shuttle.y >= top_right.y) + continue + if(shuttle.x <= bottom_left.x || shuttle.y <= bottom_left.y) + continue + + target = shuttle + break + + if(!target) + spooling = FALSE + return + + SSshuttle.moveShuttleToDock(ert, target, TRUE) + target.lockdown_on_land = TRUE + + spooling = FALSE + must_launch_home = FALSE /obj/structure/machinery/computer/shuttle/ert/is_disabled() @@ -122,10 +171,25 @@ disabled = FALSE /obj/structure/machinery/computer/shuttle/ert/tgui_interact(mob/user, datum/tgui/ui) + var/obj/docking_port/mobile/emergency_response/ert = SSshuttle.getShuttle(shuttleId) + + if(ert.distress_beacon && ishuman(user)) + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/id = human_user.get_active_hand() + if(!istype(id)) + id = human_user.get_inactive_hand() + + if(!istype(id)) + id = human_user.get_idcard() + + if(!id || !HAS_TRAIT_FROM_ONLY(id, TRAIT_ERT_ID, ert.distress_beacon)) + to_chat(user, SPAN_WARNING("Your ID is not authorized to interact with this terminal.")) + balloon_alert(user, "unauthorized!") + return + ui = SStgui.try_update_ui(user, src, ui) if (!ui) - var/obj/docking_port/mobile/shuttle = SSshuttle.getShuttle(shuttleId) - ui = new(user, src, "NavigationShuttle", "[shuttle.name] Navigation Computer") + ui = new(user, src, "NavigationShuttle", "[ert.name] Navigation Computer") ui.open() @@ -154,6 +218,9 @@ .["shuttle_mode"] = ert.mode .["flight_time"] = ert.timeLeft(0) .["is_disabled"] = disabled + .["spooling"] = spooling + .["must_launch_home"] = must_launch_home + .["mission_accomplished"] = mission_accomplished var/door_count = length(ert.external_doors) var/locked_count = 0 @@ -188,7 +255,31 @@ return var/obj/docking_port/mobile/emergency_response/ert = SSshuttle.getShuttle(shuttleId) + switch(action) + if("button-push") + playsound(loc, get_sfx("terminal_button"), KEYBOARD_SOUND_VOLUME, 1) + return FALSE + if("open") + if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) + return TRUE + ert.control_doors("open", external_only = TRUE) + if("close") + if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) + return TRUE + ert.control_doors("close", external_only = TRUE) + if("lockdown") + if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) + return TRUE + ert.control_doors("force-lock", external_only = TRUE) + if("lock") + if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) + return TRUE + ert.control_doors("lock", external_only = TRUE) + if("unlock") + if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) + return TRUE + ert.control_doors("unlock", external_only = TRUE) if("move") if(ert.mode != SHUTTLE_IDLE) to_chat(usr, SPAN_WARNING("You can't move to a new destination whilst in transit.")) @@ -217,29 +308,17 @@ SSshuttle.moveShuttle(ert.id, dock.id, TRUE) to_chat(usr, SPAN_NOTICE("You begin the launch sequence to [dock].")) return TRUE - if("button-push") - playsound(loc, get_sfx("terminal_button"), KEYBOARD_SOUND_VOLUME, 1) - return FALSE - if("open") - if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) - return TRUE - ert.control_doors("open", external_only = TRUE) - if("close") - if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) - return TRUE - ert.control_doors("close", external_only = TRUE) - if("lockdown") - if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) - return TRUE - ert.control_doors("force-lock", external_only = TRUE) - if("lock") - if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) - return TRUE - ert.control_doors("lock", external_only = TRUE) - if("unlock") - if(ert.mode == SHUTTLE_CALL || ert.mode == SHUTTLE_RECALL) - return TRUE - ert.control_doors("unlock", external_only = TRUE) + if("launch_home") + if(!must_launch_home) + return + + if(ert.mode != SHUTTLE_IDLE) + to_chat(ui.user, SPAN_WARNING("Unable to return home.")) + balloon_alert(ui.user, "can't go home!") + return + + launch_home() + return TRUE /obj/structure/machinery/computer/shuttle/ert/attack_hand(mob/user) . = ..(user) @@ -257,6 +336,8 @@ /obj/structure/machinery/computer/shuttle/ert/small/get_landing_zones() . = list() for(var/obj/docking_port/stationary/emergency_response/dock in SSshuttle.stationary) + if(!is_mainship_level(dock.z)) + continue if(istype(dock, /obj/docking_port/stationary/emergency_response/external/hangar_port)) continue if(istype(dock, /obj/docking_port/stationary/emergency_response/external/hangar_starboard)) @@ -273,6 +354,8 @@ /obj/structure/machinery/computer/shuttle/ert/big/get_landing_zones() . = list() for(var/obj/docking_port/stationary/emergency_response/dock in SSshuttle.stationary) + if(!is_mainship_level(dock.z)) + continue . += list(dock) /obj/structure/machinery/computer/shuttle/lifeboat @@ -281,35 +364,96 @@ icon_state = "terminal" req_access = list() breakable = FALSE + unslashable = TRUE + unacidable = TRUE + ///If true, the lifeboat is in the process of launching, and so the code will not allow another launch. + var/launch_initiated = FALSE + ///If true, the lifeboat is in the process of having the xeno override removed by the pilot. + var/override_being_removed = FALSE + ///How long it takes to unlock the console + var/remaining_time = 180 SECONDS + +/obj/structure/machinery/computer/shuttle/lifeboat/ex_act(severity) + return /obj/structure/machinery/computer/shuttle/lifeboat/attack_hand(mob/user) . = ..() var/obj/docking_port/mobile/crashable/lifeboat/lifeboat = SSshuttle.getShuttle(shuttleId) if(lifeboat.status == LIFEBOAT_LOCKED) - to_chat(user, SPAN_WARNING("[src] flickers with error messages.")) + if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED)) + to_chat(user, SPAN_WARNING("[src] displays an error message and asks you to contact your pilot to resolve the problem.")) + return + if(user.action_busy || override_being_removed) + return + to_chat(user, SPAN_NOTICE("You start to remove the lockout.")) + override_being_removed = TRUE + user.visible_message(SPAN_NOTICE("[user] starts to type on [src]."), + SPAN_NOTICE("You try to take back control over the lifeboat. It will take around [remaining_time / 10] seconds.")) + while(remaining_time > 20 SECONDS) + if(!do_after(user, 20 SECONDS, INTERRUPT_ALL|INTERRUPT_CHANGED_LYING, BUSY_ICON_HOSTILE, numticks = 20)) + to_chat(user, SPAN_WARNING("You fail to remove the lockout!")) + override_being_removed = FALSE + return + remaining_time = remaining_time - 20 SECONDS + if(remaining_time > 0) + to_chat(user, SPAN_NOTICE("You partially bypass the lockout, only [remaining_time / 10] seconds left.")) + to_chat(user, SPAN_NOTICE("You successfully removed the lockout!")) + playsound(loc, 'sound/machines/terminal_success.ogg', KEYBOARD_SOUND_VOLUME, 1) + lifeboat.status = LIFEBOAT_ACTIVE + lifeboat.available = TRUE + user.visible_message(SPAN_NOTICE("[src] blinks with blue lights."), + SPAN_NOTICE("You have successfully taken back control over the lifeboat.")) + override_being_removed = FALSE + return else if(lifeboat.status == LIFEBOAT_INACTIVE) to_chat(user, SPAN_NOTICE("[src]'s screen says \"Awaiting evacuation order\".")) else if(lifeboat.status == LIFEBOAT_ACTIVE) switch(lifeboat.mode) if(SHUTTLE_IDLE) if(!istype(user, /mob/living/carbon/human)) - to_chat(user, SPAN_NOTICE("[src]'s screen says \"Awaiting confirmation of the evacuation order\".")) + to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unauthorized access. Please inform your supervisor\".")) return var/mob/living/carbon/human/human_user = user - if(!(ACCESS_MARINE_COMMAND in human_user.wear_id?.access)) - to_chat(user, SPAN_NOTICE("[src]'s screen says \"Awaiting confirmation of the evacuation order\".")) + var/obj/item/card/id/card = human_user.get_idcard() + + if(!card) + to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unauthorized access. Please inform your supervisor\".")) + return + + if(!(ACCESS_MARINE_SENIOR in card.access) && !(ACCESS_MARINE_DROPSHIP in card.access)) + to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unauthorized access. Please inform your supervisor\".")) return if(SShijack.current_progress < SShijack.early_launch_required_progress) to_chat(user, SPAN_NOTICE("[src]'s screen says \"Unable to launch, fuel insufficient\".")) return - if(tgui_alert(user, "Early launch the lifeboat?", "Confirm", list("Yes", "No"), 10 SECONDS) == "Yes") - to_chat(user, SPAN_NOTICE("[src]'s screen blinks and says \"Early launch accepted\".")) - lifeboat.evac_launch() + if(launch_initiated) + to_chat(user, SPAN_NOTICE("[src]'s screen blinks and says \"Launch sequence already initiated\".")) return + var/response = tgui_alert(user, "Launch the lifeboat?", "Confirm", list("Yes", "No", "Emergency Launch"), 10 SECONDS) + if(launch_initiated) + to_chat(user, SPAN_NOTICE("[src]'s screen blinks and says \"Launch sequence already initiated\".")) + return + switch(response) + if ("Yes") + launch_initiated = TRUE + to_chat(user, "[src]'s screen blinks and says \"Launch command accepted\".") + shipwide_ai_announcement("Launch command received. [lifeboat.id == MOBILE_SHUTTLE_LIFEBOAT_PORT ? "Port" : "Starboard"] Lifeboat doors will close in 10 seconds.") + addtimer(CALLBACK(lifeboat, TYPE_PROC_REF(/obj/docking_port/mobile/crashable/lifeboat, evac_launch)), 10 SECONDS) + lifeboat.alarm_sound_loop.start() + lifeboat.playing_launch_announcement_alarm = TRUE + return + + if ("Emergency Launch") + launch_initiated = TRUE + to_chat(user, "[src]'s screen blinks and says \"Emergency Launch command accepted\".") + lifeboat.evac_launch() + shipwide_ai_announcement("Emergency Launch command received. Launching [lifeboat.id == MOBILE_SHUTTLE_LIFEBOAT_PORT ? "Port" : "Starboard"] Lifeboat.") + return + if(SHUTTLE_IGNITING) to_chat(user, SPAN_NOTICE("[src]'s screen says \"Engines firing\".")) if(SHUTTLE_CALL) @@ -321,14 +465,27 @@ if(lifeboat.status == LIFEBOAT_LOCKED) to_chat(xeno, SPAN_WARNING("We already wrested away control of this metal bird.")) return XENO_NO_DELAY_ACTION + if(lifeboat.mode == SHUTTLE_CALL) + to_chat(xeno, SPAN_WARNING("Too late, you cannot stop the metal bird mid-flight.")) + return XENO_NO_DELAY_ACTION xeno_attack_delay(xeno) if(do_after(usr, 5 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) - if(lifeboat.status != LIFEBOAT_LOCKED) - lifeboat.status = LIFEBOAT_LOCKED - lifeboat.available = FALSE - lifeboat.set_mode(SHUTTLE_IDLE) - xeno_message(SPAN_XENOANNOUNCE("We have wrested away control of one of the metal birds! They shall not escape!"), 3, xeno.hivenumber) + if(lifeboat.status == LIFEBOAT_LOCKED) + return XENO_NO_DELAY_ACTION + if(lifeboat.mode == SHUTTLE_CALL) + to_chat(xeno, SPAN_WARNING("Too late, you cannot stop the metal bird mid-flight.")) + return XENO_NO_DELAY_ACTION + lifeboat.status = LIFEBOAT_LOCKED + lifeboat.available = FALSE + lifeboat.set_mode(SHUTTLE_IDLE) + lifeboat.alarm_sound_loop?.stop() + lifeboat.playing_launch_announcement_alarm = FALSE + var/obj/docking_port/stationary/lifeboat_dock/lifeboat_dock = lifeboat.get_docked() + lifeboat_dock.open_dock() + xeno_message(SPAN_XENOANNOUNCE("We have wrested away control of one of the metal birds! They shall not escape!"), 3, xeno.hivenumber) + launch_initiated = FALSE + remaining_time = initial(remaining_time) return XENO_NO_DELAY_ACTION else return ..() diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index ccc7c891e5..f727f173b4 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -6,6 +6,7 @@ unacidable = TRUE exproof = TRUE needs_power = FALSE + var/override_being_removed = FALSE // Admin disabled var/disabled = FALSE @@ -23,6 +24,8 @@ // linked lz id (lz1, lz2 or null) var/linked_lz + var/can_change_shuttle = FALSE + /obj/structure/machinery/computer/shuttle/dropship/flight/Initialize(mapload, ...) . = ..() compatible_landing_zones = get_landing_zones() @@ -79,14 +82,17 @@ recharge_duration = recharge_duration * SHUTTLE_COOLING_FACTOR_RECHARGE - dropship.callTime = round(flight_duration) - dropship.rechargeTime = round(recharge_duration) + dropship.callTime = floor(flight_duration) + dropship.rechargeTime = floor(recharge_duration) /obj/structure/machinery/computer/shuttle/dropship/flight/tgui_interact(mob/user, datum/tgui/ui) ui = SStgui.try_update_ui(user, src, ui) if (!ui) var/obj/docking_port/mobile/shuttle = SSshuttle.getShuttle(shuttleId) - ui = new(user, src, "DropshipFlightControl", "[shuttle.name] Flight Computer") + var/name = shuttle?.name + if(can_change_shuttle) + name = "Remote" + ui = new(user, src, "DropshipFlightControl", "[name] Flight Computer") ui.open() /obj/structure/machinery/computer/shuttle/dropship/flight/ui_status(mob/user, datum/ui_state/state) @@ -106,7 +112,7 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/ui_state(mob/user) var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) - if(shuttle.is_hijacked) + if(shuttle?.is_hijacked) return GLOB.never_state return GLOB.not_incapacitated_and_adjacent_strict_state @@ -115,11 +121,24 @@ compatible_landing_zones = get_landing_zones() var/obj/docking_port/mobile/shuttle = SSshuttle.getShuttle(shuttleId) // we convert the time to seconds for rendering to ui - .["max_flight_duration"] = shuttle.callTime / 10 - .["max_pre_arrival_duration"] = shuttle.prearrivalTime / 10 - .["max_refuel_duration"] = shuttle.rechargeTime / 10 - .["max_engine_start_duration"] = shuttle.ignitionTime / 10 - .["door_data"] = list("port", "starboard", "aft") + if(shuttle) + .["max_flight_duration"] = shuttle.callTime / 10 + .["max_pre_arrival_duration"] = shuttle.prearrivalTime / 10 + .["max_refuel_duration"] = shuttle.rechargeTime / 10 + .["max_engine_start_duration"] = shuttle.ignitionTime / 10 + .["door_data"] = list("port", "starboard", "aft") + .["alternative_shuttles"] = list() + if(can_change_shuttle) + .["alternative_shuttles"] = alternative_shuttles() + +/obj/structure/machinery/computer/shuttle/dropship/flight/proc/alternative_shuttles() + . = list() + for(var/obj/docking_port/mobile/marine_dropship/shuttle in SSshuttle.mobile) + . += list( + list( + "id" = shuttle.id, "name" = shuttle) + ) + /obj/structure/machinery/computer/shuttle/dropship/flight/attack_hand(mob/user) . = ..(user) @@ -132,19 +151,42 @@ // if the dropship has crashed don't allow more interactions var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) + if(!shuttle) + tgui_interact(user) + return + if(shuttle.mode == SHUTTLE_CRASHED) - to_chat(user, SPAN_NOTICE("\The [src] is not responsive")) + to_chat(user, SPAN_NOTICE("[src] is unresponsive.")) return - if(dropship_control_lost && skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT)) + if(dropship_control_lost) + if(shuttle.is_hijacked) + to_chat(user, SPAN_WARNING("The shuttle is not responding due to an unauthorized access attempt.")) + return var/remaining_time = timeleft(door_control_cooldown) / 10 - if(remaining_time > 60) - to_chat(user, SPAN_WARNING("The shuttle is not responding, try again in [remaining_time] seconds.")) + to_chat(user, SPAN_WARNING("The shuttle is not responding due to an unauthorized access attempt. In large text it says the lockout will be automatically removed in [remaining_time] seconds.")) + if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT)) return - to_chat(user, SPAN_NOTICE("You start to remove the Queens override.")) - if(!do_after(user, 3 MINUTES, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) - to_chat(user, SPAN_WARNING("You fail to remove the Queens override")) + if(user.action_busy || override_being_removed) return + to_chat(user, SPAN_NOTICE("You start to remove the lockout.")) + override_being_removed = TRUE + while(remaining_time > 20) + if(!do_after(user, 20 SECONDS, INTERRUPT_ALL|INTERRUPT_CHANGED_LYING, BUSY_ICON_HOSTILE, numticks = 20)) + to_chat(user, SPAN_WARNING("You fail to remove the lockout!")) + override_being_removed = FALSE + return + if(!dropship_control_lost) + to_chat(user, SPAN_NOTICE("The lockout is already removed.")) + break + remaining_time = timeleft(door_control_cooldown) / 10 - 20 + if(remaining_time > 0) + to_chat(user, SPAN_NOTICE("You partially bypass the lockout, only [remaining_time] seconds left.")) + door_control_cooldown = addtimer(CALLBACK(src, PROC_REF(remove_door_lock)), remaining_time SECONDS, TIMER_STOPPABLE|TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_NO_HASH_WAIT) + override_being_removed = FALSE + if(dropship_control_lost) + remove_door_lock() + to_chat(user, SPAN_NOTICE("You successfully removed the lockout!")) playsound(loc, 'sound/machines/terminal_success.ogg', KEYBOARD_SOUND_VOLUME, 1) if(!shuttle.is_hijacked) @@ -157,6 +199,23 @@ var/obj/docking_port/mobile/shuttle = SSshuttle.getShuttle(shuttleId) if(linked_lz) + var/obj/docking_port/stationary/landing_zone = SSshuttle.getDock(linked_lz) + var/obj/docking_port/mobile/maybe_dropship = landing_zone.get_docked() + + if(maybe_dropship) + to_chat(xeno, SPAN_NOTICE("A metal bird already is here.")) + return + + var/conflicting_transit = FALSE + for(var/obj/docking_port/mobile/other_shuttle in SSshuttle.mobile) + if(landing_zone == other_shuttle.destination) + conflicting_transit = TRUE + break + + if(conflicting_transit) + to_chat(xeno, SPAN_NOTICE("A metal bird is already coming.")) + return + playsound(loc, 'sound/machines/terminal_success.ogg', KEYBOARD_SOUND_VOLUME, 1) if(shuttle.mode == SHUTTLE_IDLE && !is_ground_level(shuttle.z)) var/result = SSshuttle.moveShuttle(shuttleId, linked_lz, TRUE) @@ -164,11 +223,11 @@ to_chat(xeno, SPAN_WARNING("The metal bird can not land here. It might be currently occupied!")) return to_chat(xeno, SPAN_NOTICE("You command the metal bird to come down. Clever girl.")) - xeno_announcement(SPAN_XENOANNOUNCE("Your Queen has commanded the metal bird to the hive at [linked_lz]."), xeno.hivenumber, XENO_GENERAL_ANNOUNCE) + xeno_announcement(SPAN_XENOANNOUNCE("Our Queen has commanded the metal bird to the hive at [linked_lz]."), xeno.hivenumber, XENO_GENERAL_ANNOUNCE) log_ares_flight("Unknown", "Remote launch signal for [shuttle.name] received. Authentication garbled.") log_ares_security("Security Alert", "Remote launch signal for [shuttle.name] received. Authentication garbled.") return - if(shuttle.destination.id != linked_lz) + if(shuttle.destination && shuttle.destination.id != linked_lz) to_chat(xeno, "The shuttle not ready. The screen reads T-[shuttle.timeLeft(10)]. Have patience.") return if(shuttle.mode == SHUTTLE_CALL) @@ -183,34 +242,50 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/attack_alien(mob/living/carbon/xenomorph/xeno) - if(!is_ground_level(z)) - to_chat(xeno, SPAN_NOTICE("Lights flash from the terminal but you can't comprehend their meaning.")) - playsound(loc, 'sound/machines/terminal_error.ogg', KEYBOARD_SOUND_VOLUME, 1) - return + // if the shuttleid is null or the shuttleid references a shuttle that has been removed from play, pick one + if(!shuttleId || !SSshuttle.getShuttle(shuttleId, FALSE)) + var/list/alternatives = alternative_shuttles() + shuttleId = pick(alternatives)["id"] + + var/obj/docking_port/mobile/marine_dropship/dropship = SSshuttle.getShuttle(shuttleId) + // If the attacking xeno isn't the queen. if(xeno.hive_pos != XENO_QUEEN) + // If the 'about to launch' alarm is playing, a xeno can whack the computer to stop it. + if(dropship.playing_launch_announcement_alarm) + stop_playing_launch_announcement_alarm() + xeno.animation_attack_on(src) + to_chat(xeno, SPAN_XENONOTICE("We slash at [src], silencing its squawking!")) + playsound(loc, 'sound/machines/terminal_shutdown.ogg', 20) + else + to_chat(xeno, SPAN_NOTICE("Lights flash from the terminal but we can't comprehend their meaning.")) + playsound(loc, 'sound/machines/terminal_error.ogg', KEYBOARD_SOUND_VOLUME, TRUE) + return XENO_NONCOMBAT_ACTION + + if(!is_ground_level(z)) + // "you" rather than "we" for this one since non-queen castes will have returned above. to_chat(xeno, SPAN_NOTICE("Lights flash from the terminal but you can't comprehend their meaning.")) - playsound(loc, 'sound/machines/terminal_error.ogg', KEYBOARD_SOUND_VOLUME, 1) - return + playsound(loc, 'sound/machines/terminal_error.ogg', KEYBOARD_SOUND_VOLUME, TRUE) + return XENO_NONCOMBAT_ACTION if(is_remote) groundside_alien_action(xeno) return - var/obj/docking_port/mobile/marine_dropship/dropship = SSshuttle.getShuttle(shuttleId) if(dropship.is_hijacked) return - // door controls being overriden + // door controls being overridden if(!dropship_control_lost) dropship.control_doors("unlock", "all", TRUE) dropship_control_lost = TRUE - door_control_cooldown = addtimer(CALLBACK(src, PROC_REF(remove_door_lock)), SHUTTLE_LOCK_COOLDOWN, TIMER_STOPPABLE) - if(almayer_orbital_cannon) - almayer_orbital_cannon.is_disabled = TRUE - addtimer(CALLBACK(almayer_orbital_cannon, TYPE_PROC_REF(/obj/structure/orbital_cannon, enable)), 10 MINUTES, TIMER_UNIQUE) + door_control_cooldown = addtimer(CALLBACK(src, PROC_REF(remove_door_lock)), SHUTTLE_LOCK_COOLDOWN, TIMER_STOPPABLE|TIMER_UNIQUE|TIMER_OVERRIDE|TIMER_NO_HASH_WAIT) + if(GLOB.almayer_orbital_cannon) + GLOB.almayer_orbital_cannon.is_disabled = TRUE + addtimer(CALLBACK(GLOB.almayer_orbital_cannon, TYPE_PROC_REF(/obj/structure/orbital_cannon, enable)), 10 MINUTES, TIMER_UNIQUE) if(!GLOB.resin_lz_allowed) set_lz_resin_allowed(TRUE) + stop_playing_launch_announcement_alarm() to_chat(xeno, SPAN_XENONOTICE("You override the doors.")) xeno_message(SPAN_XENOANNOUNCE("The doors of the metal bird have been overridden! Rejoice!"), 3, xeno.hivenumber) @@ -236,11 +311,10 @@ return /obj/structure/machinery/computer/shuttle/dropship/flight/proc/hijack(mob/user, force = FALSE) - // select crash location var/turf/source_turf = get_turf(src) var/obj/docking_port/mobile/marine_dropship/dropship = SSshuttle.getShuttle(shuttleId) - var/result = tgui_input_list(user, "Where to 'land'?", "Dropship Hijack", almayer_ship_sections , timeout = 10 SECONDS) + var/result = tgui_input_list(user, "Where to 'land'?", "Dropship Hijack", GLOB.almayer_ship_sections , timeout = 10 SECONDS) if(!result) return if(!user.Adjacent(source_turf) && !force) @@ -268,7 +342,14 @@ hivenumber = xeno.hivenumber xeno_message(SPAN_XENOANNOUNCE("The Queen has commanded the metal bird to depart for the metal hive in the sky! Rejoice!"), 3, hivenumber) xeno_message(SPAN_XENOANNOUNCE("The hive swells with power! You will now steadily gain pooled larva over time."), 2, hivenumber) - GLOB.hive_datum[hivenumber].abandon_on_hijack() + var/datum/hive_status/hive = GLOB.hive_datum[hivenumber] + hive.abandon_on_hijack() + var/original_evilution = hive.evolution_bonus + hive.override_evilution(XENO_HIJACK_EVILUTION_BUFF, TRUE) + if(hive.living_xeno_queen) + var/datum/action/xeno_action/onclick/grow_ovipositor/ovi_ability = get_action(hive.living_xeno_queen, /datum/action/xeno_action/onclick/grow_ovipositor) + ovi_ability.reduce_cooldown(ovi_ability.xeno_cooldown) + addtimer(CALLBACK(hive, TYPE_PROC_REF(/datum/hive_status, override_evilution), original_evilution, FALSE), XENO_HIJACK_EVILUTION_TIME) // Notify the yautja too so they stop the hunt message_all_yautja("The serpent Queen has commanded the landing shuttle to depart.") @@ -279,48 +360,53 @@ colonial_marines.add_current_round_status_to_end_results("Hijack") /obj/structure/machinery/computer/shuttle/dropship/flight/proc/remove_door_lock() + if(door_control_cooldown) + deltimer(door_control_cooldown) + door_control_cooldown = null var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) if(shuttle.is_hijacked) return playsound(loc, 'sound/machines/terminal_success.ogg', KEYBOARD_SOUND_VOLUME, 1) dropship_control_lost = FALSE - if(door_control_cooldown) - door_control_cooldown = null /obj/structure/machinery/computer/shuttle/dropship/flight/ui_data(mob/user) var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) . = list() - .["shuttle_mode"] = shuttle.mode - .["flight_time"] = shuttle.timeLeft(0) - .["is_disabled"] = disabled || shuttle.is_hijacked + .["shuttle_id"] = shuttle?.id + .["shuttle_mode"] = shuttle?.mode + .["flight_time"] = shuttle?.timeLeft(0) + .["is_disabled"] = disabled + if(shuttle?.is_hijacked) + .["is_disabled"] = TRUE .["locked_down"] = FALSE .["can_fly_by"] = !is_remote .["can_set_automated"] = is_remote .["automated_control"] = list( - "is_automated" = shuttle.automated_hangar_id != null || shuttle.automated_lz_id != null, - "hangar_lz" = shuttle.automated_hangar_id, - "ground_lz" = shuttle.automated_lz_id + "is_automated" = shuttle?.automated_hangar_id != null || shuttle?.automated_lz_id != null, + "hangar_lz" = shuttle?.automated_hangar_id, + "ground_lz" = shuttle?.automated_lz_id ) .["primary_lz"] = SSticker.mode.active_lz?.linked_lz - if(shuttle.destination) - .["target_destination"] = shuttle.in_flyby? "Flyby" : shuttle.destination.name + if(shuttle?.destination) + .["target_destination"] = shuttle?.in_flyby? "Flyby" : shuttle?.destination.name - .["door_status"] = is_remote ? list() : shuttle.get_door_data() + .["door_status"] = is_remote ? list() : shuttle?.get_door_data() .["has_flyby_skill"] = skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED) // Launch Alarm Variables - .["playing_launch_announcement_alarm"] = shuttle.playing_launch_announcement_alarm + .["playing_launch_announcement_alarm"] = shuttle?.playing_launch_announcement_alarm .["destinations"] = list() // add flight - .["destinations"] += list( - list( - "id" = DROPSHIP_FLYBY_ID, - "name" = "Flyby", - "available" = TRUE, - "error" = FALSE + if(!is_remote) + .["destinations"] += list( + list( + "id" = DROPSHIP_FLYBY_ID, + "name" = "Flyby", + "available" = TRUE, + "error" = FALSE + ) ) - ) for(var/obj/docking_port/stationary/dock in compatible_landing_zones) var/dock_reserved = FALSE @@ -328,7 +414,7 @@ if(dock == other_shuttle.destination) dock_reserved = TRUE break - var/can_dock = shuttle.canDock(dock) + var/can_dock = shuttle?.canDock(dock) var/list/dockinfo = list( "id" = dock.id, "name" = dock.name, @@ -342,16 +428,23 @@ if(.) return var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) - if(disabled || shuttle.is_hijacked) + if(disabled || (shuttle && shuttle.is_hijacked)) + switch(action) + if ("change_shuttle") + var/new_shuttle = params["new_shuttle"] + return set_shuttle(new_shuttle) return var/mob/user = usr - var/obj/structure/machinery/computer/shuttle/dropship/flight/comp = shuttle.getControlConsole() - if(comp.dropship_control_lost) - to_chat(user, SPAN_WARNING("The dropship isn't responding to controls.")) - return + if (shuttle) + var/obj/structure/machinery/computer/shuttle/dropship/flight/comp = shuttle.getControlConsole() + if(comp.dropship_control_lost) + to_chat(user, SPAN_WARNING("The dropship isn't responding to controls.")) + return switch(action) if("move") + if(!shuttle) + return FALSE if(shuttle.mode != SHUTTLE_IDLE && (shuttle.mode != SHUTTLE_CALL && !shuttle.destination)) to_chat(usr, SPAN_WARNING("You can't move to a new destination right now.")) return TRUE @@ -409,6 +502,8 @@ playsound(loc, get_sfx("terminal_button"), KEYBOARD_SOUND_VOLUME, 1) return FALSE if("door-control") + if(!shuttle) + return FALSE if(shuttle.mode == SHUTTLE_CALL || shuttle.mode == SHUTTLE_RECALL) return TRUE var/interaction = params["interaction"] @@ -419,9 +514,11 @@ playsound(loc, 'sound/machines/terminal_error.ogg', KEYBOARD_SOUND_VOLUME, 1) to_chat(user, SPAN_WARNING("Door controls have been overridden. Please call technical support.")) if("set-automate") + if(!shuttle) + return FALSE var/almayer_lz = params["hangar_id"] var/ground_lz = params["ground_id"] - var/delay = Clamp(params["delay"] SECONDS, DROPSHIP_MIN_AUTO_DELAY, DROPSHIP_MAX_AUTO_DELAY) + var/delay = clamp(params["delay"] SECONDS, DROPSHIP_MIN_AUTO_DELAY, DROPSHIP_MAX_AUTO_DELAY) // TODO verify if(almayer_lz == ground_lz) @@ -442,14 +539,9 @@ message_admins(log) log_interact(user, msg = "[log]") return - /* TODO - if(!dropship.automated_launch) //If we're toggling it on... - var/auto_delay - auto_delay = tgui_input_number(usr, "Set the delay for automated departure after recharging (seconds)", "Automated Departure Settings", DROPSHIP_MIN_AUTO_DELAY/10, DROPSHIP_MAX_AUTO_DELAY/10, DROPSHIP_MIN_AUTO_DELAY/10) - dropship.automated_launch_delay = Clamp(auto_delay SECONDS, DROPSHIP_MIN_AUTO_DELAY, DROPSHIP_MAX_AUTO_DELAY) - dropship.set_automated_launch(!dropship.automated_launch) - */ if("disable-automate") + if(!shuttle) + return FALSE shuttle.automated_hangar_id = null shuttle.automated_lz_id = null shuttle.automated_delay = null @@ -461,18 +553,43 @@ return if("cancel-flyby") + if(!shuttle) + return FALSE if(shuttle.in_flyby && shuttle.timer && shuttle.timeLeft(1) >= DROPSHIP_WARMUP_TIME) shuttle.setTimer(DROPSHIP_WARMUP_TIME) if("play_launch_announcement_alarm") + if(!shuttle) + return FALSE if (shuttle.mode != SHUTTLE_IDLE && shuttle.mode != SHUTTLE_RECHARGING) to_chat(usr, SPAN_WARNING("The launch warning alarm is only for alerting people to a takeoff.")) - return + return TRUE shuttle.alarm_sound_loop.start() shuttle.playing_launch_announcement_alarm = TRUE - return + return TRUE if ("stop_playing_launch_announcement_alarm") + if(!shuttle) + return FALSE stop_playing_launch_announcement_alarm() - return + return TRUE + if ("change_shuttle") + var/new_shuttle = params["new_shuttle"] + return set_shuttle(new_shuttle) + +/obj/structure/machinery/computer/shuttle/dropship/flight/proc/set_shuttle(new_shuttle) + var/mob/user = usr + if(!new_shuttle || shuttleId == new_shuttle) + return FALSE + var/found = FALSE + var/list/alternatives = alternative_shuttles() + for(var/alt_shuttle in alternatives) + if(alt_shuttle["id"] == new_shuttle) + found = TRUE + if(found) + shuttleId = new_shuttle + update_static_data(user) + else + log_admin("Player [user] attempted to change shuttle illegally.") + return TRUE /obj/structure/machinery/computer/shuttle/dropship/flight/proc/stop_playing_launch_announcement_alarm() var/obj/docking_port/mobile/marine_dropship/shuttle = SSshuttle.getShuttle(shuttleId) @@ -485,21 +602,22 @@ icon = 'icons/obj/structures/machinery/computer.dmi' icon_state = "shuttle" linked_lz = DROPSHIP_LZ1 - shuttleId = DROPSHIP_ALAMO is_remote = TRUE + can_change_shuttle = TRUE /obj/structure/machinery/computer/shuttle/dropship/flight/lz2 icon = 'icons/obj/structures/machinery/computer.dmi' icon_state = "shuttle" linked_lz = DROPSHIP_LZ2 - shuttleId = DROPSHIP_NORMANDY is_remote = TRUE + can_change_shuttle = TRUE /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control icon = 'icons/obj/structures/machinery/computer.dmi' icon_state = "shuttle" is_remote = TRUE needs_power = TRUE + can_change_shuttle = TRUE /obj/structure/machinery/computer/shuttle/dropship/flight/toc name = "dropship control screen" diff --git a/code/modules/shuttle/computers/escape_pod_computer.dm b/code/modules/shuttle/computers/escape_pod_computer.dm index ef2bfad381..b72d9fef51 100644 --- a/code/modules/shuttle/computers/escape_pod_computer.dm +++ b/code/modules/shuttle/computers/escape_pod_computer.dm @@ -22,6 +22,9 @@ /obj/structure/machinery/computer/shuttle/escape_pod_panel/attack_hand(mob/user) if(..()) return + if(!allowed(user)) + to_chat(user, SPAN_WARNING("Access denied!")) + return tgui_interact(user) /obj/structure/machinery/computer/shuttle/escape_pod_panel/tgui_interact(mob/user, datum/tgui/ui) @@ -86,6 +89,7 @@ . = TRUE /obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison + req_access = list(ACCESS_WY_GENERAL) launch_without_evac = TRUE //========================================================================================= @@ -97,14 +101,19 @@ unslashable = TRUE unacidable = TRUE time_till_despawn = 6000000 //near infinite so despawn never occurs. + /// The name of the mob who injected the occupant into the pod. If it does not match the occupant, the occupant can leave. + var/injector_name var/being_forced = 0 //Simple variable to prevent sound spam. var/dock_state = STATE_IDLE /obj/structure/machinery/cryopod/evacuation/ex_act(severity) return FALSE -/obj/structure/machinery/cryopod/evacuation/attackby(obj/item/grab/G, mob/user) - if(istype(G)) +/obj/structure/machinery/cryopod/evacuation/attackby(obj/item/grab/the_grab, mob/user) + if(istype(the_grab)) + if(user.is_mob_incapacitated() || !(ishuman(user))) + return FALSE + if(being_forced) to_chat(user, SPAN_WARNING("There's something forcing it open!")) return FALSE @@ -117,16 +126,20 @@ to_chat(user, SPAN_WARNING("The cryo pod is not responding to commands!")) return FALSE - var/mob/living/carbon/human/M = G.grabbed_thing - if(!istype(M)) + var/mob/living/carbon/human/grabbed_mob = the_grab.grabbed_thing + if(!istype(grabbed_mob)) + return FALSE + if(grabbed_mob.stat == DEAD) //This mob is dead + to_chat(user, SPAN_WARNING("[src] immediately rejects [grabbed_mob]. \He passed away!")) return FALSE - visible_message(SPAN_WARNING("[user] starts putting [M.name] into the cryo pod."), null, null, 3) + visible_message(SPAN_WARNING("[user] starts putting [grabbed_mob.name] into the cryo pod."), null, null, 3) if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - if(!M || !G || !G.grabbed_thing || !G.grabbed_thing.loc || G.grabbed_thing != M) + if(!grabbed_mob || !the_grab || !the_grab.grabbed_thing || !the_grab.grabbed_thing.loc || the_grab.grabbed_thing != grabbed_mob) return FALSE - move_mob_inside(M) + move_mob_inside(grabbed_mob) + injector_name = user.real_name /obj/structure/machinery/cryopod/evacuation/eject() set name = "Eject Pod" @@ -136,17 +149,24 @@ if(!occupant || !usr.stat || usr.is_mob_restrained()) return FALSE - if(occupant) //Once you're in, you cannot exit, and outside forces cannot eject you. - //The occupant is actually automatically ejected once the evac is canceled. - if(occupant != usr) to_chat(usr, SPAN_WARNING("You are unable to eject the occupant unless the evacuation is canceled.")) - add_fingerprint(usr) + //Once you're in, you cannot exit, and outside forces cannot eject you. + //The occupant is actually automatically ejected once the evac is canceled. + if(occupant != usr) + to_chat(usr, SPAN_WARNING("You are unable to eject the occupant unless the evacuation is canceled.")) + return FALSE + if(occupant.real_name != injector_name) + go_out() + else + to_chat(usr, SPAN_WARNING("You are unable to leave the [src] until evacuation completes, or is cancelled!.")) + return FALSE /obj/structure/machinery/cryopod/evacuation/go_out() //When the system ejects the occupant. if(occupant) occupant.forceMove(get_turf(src)) occupant.in_stasis = FALSE occupant = null + injector_name = null icon_state = orient_right ? "body_scanner_open-r" : "body_scanner_open" /obj/structure/machinery/cryopod/evacuation/move_inside() @@ -176,6 +196,7 @@ if(do_after(user, 20, INTERRUPT_NO_NEEDHAND, BUSY_ICON_GENERIC)) user.stop_pulling() move_mob_inside(user) + injector_name = user.real_name /obj/structure/machinery/cryopod/evacuation/attack_alien(mob/living/carbon/xenomorph/user) if(being_forced) @@ -221,7 +242,7 @@ /obj/structure/machinery/door/airlock/evacuation/Destroy() if(linked_shuttle) - linked_shuttle.mode = SHUTTLE_CRASHED + linked_shuttle.set_mode(SHUTTLE_CRASHED) linked_shuttle.door_handler.doors -= list(src) . = ..() diff --git a/code/modules/shuttle/docking.dm b/code/modules/shuttle/docking.dm index 63e220dead..df89ee5bdf 100644 --- a/code/modules/shuttle/docking.dm +++ b/code/modules/shuttle/docking.dm @@ -41,7 +41,7 @@ rotation = dir2angle(new_dock.dir)-dir2angle(dir) if ((rotation % 90) != 0) rotation += (rotation % 90) //diagonal rotations not allowed, round up - rotation = SIMPLIFY_DEGREES(rotation) + rotation %%= 360 if(!movement_direction) movement_direction = turn(preferred_direction, 180) @@ -64,7 +64,7 @@ var/list/new_hidden_turfs if(hidden) new_hidden_turfs = list() - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK var/turf/oldT = old_turfs[i] if(old_turfs[oldT] & MOVE_TURF) @@ -135,7 +135,7 @@ old_turfs[oldT] = move_mode /obj/docking_port/mobile/proc/takeoff(list/old_turfs, list/new_turfs, list/moved_atoms, rotation, movement_direction, old_dock, area/underlying_old_area) - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) var/turf/oldT = old_turfs[i] var/turf/newT = new_turfs[i] var/move_mode = old_turfs[oldT] @@ -162,12 +162,12 @@ var/new_parallax_dir = FALSE if(istype(new_dock, /obj/docking_port/stationary/transit)) new_parallax_dir = preferred_direction - for(var/i in 1 to areas_to_move.len) + for(var/i in 1 to length(areas_to_move)) CHECK_TICK var/area/internal_area = areas_to_move[i] internal_area.afterShuttleMove(new_parallax_dir) //areas - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK if(!(old_turfs[old_turfs[i]] & MOVE_TURF)) continue @@ -175,7 +175,7 @@ var/turf/newT = new_turfs[i] newT.afterShuttleMove(oldT, rotation) //turfs - for(var/i in 1 to moved_atoms.len) + for(var/i in 1 to length(moved_atoms)) CHECK_TICK var/atom/movable/moved_object = moved_atoms[i] if(QDELETED(moved_object)) @@ -187,12 +187,12 @@ underlying_old_area.lateShuttleMove() - for(var/i in 1 to areas_to_move.len) + for(var/i in 1 to length(areas_to_move)) CHECK_TICK var/area/internal_area = areas_to_move[i] internal_area.lateShuttleMove() - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) CHECK_TICK if(!(old_turfs[old_turfs[i]] & MOVE_CONTENTS | MOVE_TURF)) continue @@ -200,7 +200,7 @@ var/turf/newT = new_turfs[i] newT.lateShuttleMove(oldT) - for(var/i in 1 to moved_atoms.len) + for(var/i in 1 to length(moved_atoms)) CHECK_TICK var/atom/movable/moved_object = moved_atoms[i] if(QDELETED(moved_object)) diff --git a/code/modules/shuttle/dropship.dm b/code/modules/shuttle/dropship.dm index c4d34fe7cf..d38c135f90 100644 --- a/code/modules/shuttle/dropship.dm +++ b/code/modules/shuttle/dropship.dm @@ -215,6 +215,111 @@ /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing icon_state = "6" + +/obj/structure/shuttle/part/dropship3 + name = "\improper Saipan" + icon = 'icons/turf/dropship3.dmi' + icon_state = "1" + opacity = TRUE + +/obj/structure/shuttle/part/dropship3/ex_act(severity, direction) + return FALSE + +/obj/structure/shuttle/part/dropship3/transparent + opacity = FALSE + +/obj/structure/shuttle/part/dropship3/transparent/nose_top_right + icon_state = "102" + +/obj/structure/shuttle/part/dropship3/transparent/nose_center + icon_state = "101" + +/obj/structure/shuttle/part/dropship3/transparent/nose_top_left + icon_state = "100" + +/obj/structure/shuttle/part/dropship3/nose_front_left + icon_state = "95" + +/obj/structure/shuttle/part/dropship3/nose_front_right + icon_state = "99" + +/obj/structure/shuttle/part/dropship3/transparent/inner_right_weapons + icon_state = "90" + +/obj/structure/shuttle/part/dropship3/transparent/outer_right_weapons + icon_state = "91" + +/obj/structure/shuttle/part/dropship3/transparent/inner_left_weapons + icon_state = "85" + +/obj/structure/shuttle/part/dropship3/transparent/outer_left_weapons + icon_state = "84" + +/obj/structure/shuttle/part/dropship3/transparent/upper_right_wing + icon_state = "74" + +/obj/structure/shuttle/part/dropship3/transparent/middle_right_wing + icon_state = "70" + +/obj/structure/shuttle/part/dropship3/transparent/lower_right_wing + icon_state = "65" + +/obj/structure/shuttle/part/dropship3/transparent/upper_left_wing + icon_state = "71" + +/obj/structure/shuttle/part/dropship3/transparent/middle_left_wing + icon_state = "66" + +/obj/structure/shuttle/part/dropship3/transparent/lower_left_wing + icon_state = "61" + +/obj/structure/shuttle/part/dropship3/lower_left_wall + icon_state = "46" + +/obj/structure/shuttle/part/dropship3/lower_right_wall + icon_state = "49" + +/obj/structure/shuttle/part/dropship3/transparent/engine_left_cap + icon_state = "40" + +/obj/structure/shuttle/part/dropship3/transparent/engine_right_cap + icon_state = "41" + +/obj/structure/shuttle/part/dropship3/transparent/engine_left_exhaust + icon_state = "16" + +/obj/structure/shuttle/part/dropship3/transparent/engine_right_exhaust + icon_state = "17" + +/obj/structure/shuttle/part/dropship3/bottom_left_wall + icon_state = "9" + +/obj/structure/shuttle/part/dropship3/bottom_right_wall + icon_state = "15" + +/obj/structure/shuttle/part/dropship3/left_inner_wing_connector + icon_state = "7" + +/obj/structure/shuttle/part/dropship3/right_inner_wing_connector + icon_state = "8" + +/obj/structure/shuttle/part/dropship3/left_outer_wing_connector + icon_state = "3" + +/obj/structure/shuttle/part/dropship3/right_outer_wing_connector + icon_state = "4" + +/obj/structure/shuttle/part/dropship3/transparent/left_outer_bottom_wing + icon_state = "1" + +/obj/structure/shuttle/part/dropship3/transparent/left_outer_inner_wing + icon_state = "2" + +/obj/structure/shuttle/part/dropship3/transparent/right_inner_bottom_wing + icon_state = "5" + +/obj/structure/shuttle/part/dropship3/transparent/right_outer_bottom_wing + icon_state = "6" /obj/structure/shuttle/part/midway name = "\improper Midway" icon = 'icons/turf/dropship4.dmi' diff --git a/code/modules/shuttle/dropship_hijack.dm b/code/modules/shuttle/dropship_hijack.dm index 36bc879ace..73150f5bfc 100644 --- a/code/modules/shuttle/dropship_hijack.dm +++ b/code/modules/shuttle/dropship_hijack.dm @@ -10,7 +10,7 @@ /datum/dropship_hijack/almayer/proc/crash_landing() //break APCs - for(var/obj/structure/machinery/power/apc/A in machines) + for(var/obj/structure/machinery/power/apc/A in GLOB.machines) if(A.z != crash_site.z) continue if(prob(A.crash_break_probability)) @@ -50,28 +50,20 @@ // Break the ultra-reinforced windows. // Break the briefing windows. - for(var/i in GLOB.hijack_bustable_windows) - var/obj/structure/window/H = i - H.deconstruct(FALSE) - - for(var/k in GLOB.hijack_bustable_ladders) - var/obj/structure/ladder/fragile_almayer/L = k - L.deconstruct() - - // Delete the briefing door(s). - for(var/D in GLOB.hijack_deletable_windows) - qdel(D) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_HIJACK_IMPACTED) + RegisterSignal(SSdcs, COMSIG_GLOB_HIJACK_LANDED, PROC_REF(finish_landing)) // Sleep while the explosions do their job var/explosion_alive = TRUE while(explosion_alive) explosion_alive = FALSE - for(var/datum/automata_cell/explosion/E in cellauto_cells) + for(var/datum/automata_cell/explosion/E in GLOB.cellauto_cells) if(E.explosion_cause_data && E.explosion_cause_data.cause_name == "dropship crash") explosion_alive = TRUE break sleep(10) +/datum/dropship_hijack/almayer/proc/finish_landing() SShijack.announce_status_on_crash() SSticker.hijack_ocurred() @@ -80,8 +72,8 @@ return FALSE shuttle.callTime = DROPSHIP_CRASH_TRANSIT_DURATION * GLOB.ship_alt SSshuttle.moveShuttle(shuttle.id, crash_site.id, TRUE) - if(round_statistics) - round_statistics.track_hijack() + if(GLOB.round_statistics) + GLOB.round_statistics.track_hijack() return TRUE /datum/dropship_hijack/almayer/proc/target_crash_site(ship_section) @@ -115,8 +107,8 @@ return // if the AA site matches target site - if(target_ship_section == almayer_aa_cannon.protecting_section) - var/list/remaining_crash_sites = almayer_ship_sections.Copy() + if(target_ship_section == GLOB.almayer_aa_cannon.protecting_section) + var/list/remaining_crash_sites = GLOB.almayer_ship_sections.Copy() remaining_crash_sites -= target_ship_section var/new_target_ship_section = pick(remaining_crash_sites) var/turf/target = get_crashsite_turf(new_target_ship_section) @@ -173,7 +165,7 @@ playsound_z(SSmapping.levels_by_any_trait(list(ZTRAIT_MARINE_MAIN_SHIP)), 'sound/effects/dropship_crash.ogg', volume = 75) /datum/dropship_hijack/almayer/proc/disable_latejoin() - enter_allowed = FALSE + GLOB.enter_allowed = FALSE /datum/dropship_hijack/almayer/proc/get_crashsite_turf(ship_section) var/list/turfs = list() @@ -184,13 +176,14 @@ turfs += get_area_turfs(/area/almayer/shipboard/brig/cic_hallway) turfs += get_area_turfs(/area/almayer/shipboard/brig/cryo) turfs += get_area_turfs(/area/almayer/shipboard/brig/evidence_storage) - turfs += get_area_turfs(/area/almayer/shipboard/brig/execution) turfs += get_area_turfs(/area/almayer/shipboard/brig/general_equipment) turfs += get_area_turfs(/area/almayer/shipboard/brig/lobby) - turfs += get_area_turfs(/area/almayer/shipboard/brig/main_office) + turfs += get_area_turfs(/area/almayer/shipboard/brig/starboard_hallway) turfs += get_area_turfs(/area/almayer/shipboard/brig/perma) turfs += get_area_turfs(/area/almayer/shipboard/brig/processing) - turfs += get_area_turfs(/area/almayer/shipboard/brig/surgery) + turfs += get_area_turfs(/area/almayer/shipboard/brig/medical) + turfs += get_area_turfs(/area/almayer/shipboard/brig/mp_bunks) + turfs += get_area_turfs(/area/almayer/shipboard/brig/chief_mp_office) turfs += get_area_turfs(/area/almayer/command/cichallway) turfs += get_area_turfs(/area/almayer/command/cic) if("Upper deck Midship") @@ -199,14 +192,13 @@ turfs += get_area_turfs(/area/almayer/medical/containment) turfs += get_area_turfs(/area/almayer/medical/containment/cell) turfs += get_area_turfs(/area/almayer/medical/medical_science) - turfs += get_area_turfs(/area/almayer/medical/testlab) turfs += get_area_turfs(/area/almayer/medical/hydroponics) if("Upper deck Aftship") turfs += get_area_turfs(/area/almayer/engineering/upper_engineering) turfs += get_area_turfs(/area/almayer/engineering/laundry) if("Lower deck Foreship") turfs += get_area_turfs(/area/almayer/hallways/hangar) - turfs += get_area_turfs(/area/almayer/hallways/vehiclehangar) + turfs += get_area_turfs(/area/almayer/hallways/lower/vehiclehangar) if("Lower deck Midship") turfs += get_area_turfs(/area/almayer/medical/chemistry) turfs += get_area_turfs(/area/almayer/medical/lower_medical_lobby) @@ -220,7 +212,7 @@ turfs += get_area_turfs(/area/almayer/squads/req) if("Lower deck Aftship") turfs += get_area_turfs(/area/almayer/living/cryo_cells) - turfs += get_area_turfs(/area/almayer/engineering/engineering_workshop) + turfs += get_area_turfs(/area/almayer/engineering/lower/workshop) else CRASH("Crash site [ship_section] unknown.") return pick(turfs) diff --git a/code/modules/shuttle/on_move.dm b/code/modules/shuttle/on_move.dm index d834822e88..934e3c3536 100644 --- a/code/modules/shuttle/on_move.dm +++ b/code/modules/shuttle/on_move.dm @@ -64,7 +64,7 @@ All ShuttleMove procs go here var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle) if(!shuttle_boundary) CRASH("A turf queued to move via shuttle somehow had no skipover in baseturfs. [src]([type]):[loc]") - var/depth = baseturfs.len - shuttle_boundary + 1 + var/depth = length(baseturfs) - shuttle_boundary + 1 newT.CopyOnTop(src, 1, depth, TRUE) return TRUE @@ -76,7 +76,7 @@ All ShuttleMove procs go here var/shuttle_boundary = baseturfs.Find(/turf/baseturf_skipover/shuttle) if(shuttle_boundary) - oldT.ScrapeAway(baseturfs.len - shuttle_boundary + 1) + oldT.ScrapeAway(length(baseturfs) - shuttle_boundary + 1) if(rotation) shuttleRotate(rotation) //see shuttle_rotate.dm @@ -184,11 +184,6 @@ All ShuttleMove procs go here . = ..() if(. & MOVE_AREA) . |= MOVE_CONTENTS - cameranet.removeCamera(src) - -/obj/structure/machinery/camera/afterShuttleMove(turf/oldT, list/movement_force, shuttle_dir, shuttle_preferred_direction, move_dir, rotation) - . = ..() - cameranet.addCamera(src) /obj/structure/machinery/atmospherics/pipe/afterShuttleMove(turf/oldT, list/movement_force, shuttle_dir, shuttle_preferred_direction, move_dir, rotation) . = ..() diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index ad00a0b68f..4a990ea7d1 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -107,9 +107,7 @@ ///returns turfs within our projected rectangle in no particular order /obj/docking_port/proc/return_turfs() var/list/L = return_coords() - var/turf/T0 = locate(L[1],L[2],z) - var/turf/T1 = locate(L[3],L[4],z) - return block(T0,T1) + return block(L[1], L[2], z, L[3], L[4], z) /obj/docking_port/proc/return_center_turf() var/list/L = return_coords() @@ -125,8 +123,8 @@ if(EAST) cos = 0 sin = -1 - var/_x = L[1] + (round(width/2))*cos - (round(height/2))*sin - var/_y = L[2] + (round(width/2))*sin + (round(height/2))*cos + var/_x = L[1] + (floor(width/2))*cos - (floor(height/2))*sin + var/_y = L[2] + (floor(width/2))*sin + (floor(height/2))*cos return locate(_x, _y, z) //returns turfs within our projected rectangle in a specific order. @@ -161,9 +159,7 @@ //Debug proc used to highlight bounding area /obj/docking_port/proc/highlight(_color) var/list/L = return_coords() - var/turf/T0 = locate(L[1],L[2],z) - var/turf/T1 = locate(L[3],L[4],z) - for(var/turf/T in block(T0,T1)) + for(var/turf/T as anything in block(L[1], L[2], z, L[3], L[4], z)) T.color = _color T.maptext = null if(_color) @@ -473,13 +469,13 @@ . = ..() if(!id) - id = "[SSshuttle.mobile.len]" + id = "[length(SSshuttle.mobile)]" if(name == "shuttle") - name = "shuttle[SSshuttle.mobile.len]" + name = "shuttle[length(SSshuttle.mobile)]" shuttle_areas = list() var/list/all_turfs = return_ordered_turfs(x, y, z, dir) - for(var/i in 1 to all_turfs.len) + for(var/i in 1 to length(all_turfs)) var/turf/curT = all_turfs[i] var/area/cur_area = get_area(curT) if(istype(cur_area, area_type)) @@ -697,7 +693,7 @@ if(!underlying_area) underlying_area = new underlying_area_type(null) - for(var/i in 1 to old_turfs.len) + for(var/i in 1 to length(old_turfs)) var/turf/oldT = old_turfs[i] if(!oldT || !istype(oldT.loc, area_type)) continue @@ -710,7 +706,7 @@ var/list/baseturf_cache = oldT.baseturfs for(var/k in 1 to length(baseturf_cache)) if(ispath(baseturf_cache[k], /turf/baseturf_skipover/shuttle)) - oldT.ScrapeAway(baseturf_cache.len - k + 1) + oldT.ScrapeAway(length(baseturf_cache) - k + 1) break qdel(src, force=TRUE) @@ -749,7 +745,7 @@ var/list/ripple_turfs = list() - for(var/i in 1 to L0.len) + for(var/i in 1 to length(L0)) var/turf/T0 = L0[i] var/turf/T1 = L1[i] if(!T0 || !T1) @@ -795,6 +791,10 @@ else if(error) setTimer(20) return + if(mode == SHUTTLE_CRASHED) + destination = null + timer = 0 + return if(rechargeTime) set_mode(SHUTTLE_RECHARGING) destination = null @@ -813,11 +813,13 @@ setTimer(callTime * engine_coeff()) enterTransit() return + if(SHUTTLE_CRASHED) + return set_idle() /obj/docking_port/mobile/proc/check_effects() - if(!ripples.len) + if(!length(ripples)) if((mode == SHUTTLE_PREARRIVAL)) var/tl = timeLeft(1) if(tl <= SHUTTLE_RIPPLE_TIME) diff --git a/code/modules/shuttle/shuttle_rotate.dm b/code/modules/shuttle/shuttle_rotate.dm index e8e93a0408..b78ea85c7c 100644 --- a/code/modules/shuttle/shuttle_rotate.dm +++ b/code/modules/shuttle/shuttle_rotate.dm @@ -25,6 +25,14 @@ If ever any of these procs are useful for non-shuttles, rename it to proc/rotate pixel_x = oldPY pixel_y = (oldPX*(-1)) + +/* ***********************************Object rotate procs*********************************** */ + +/obj/vehicle/multitile/shuttleRotate(rotation, params) + params &= ~ROTATE_OFFSET + return ..() + + /* ***********************************Turf rotate procs*********************************** */ /turf/closed/mineral/shuttleRotate(rotation, params) diff --git a/code/modules/shuttle/shuttles/crashable/crashable.dm b/code/modules/shuttle/shuttles/crashable/crashable.dm index de1c5cc8e4..f07be5f0c9 100644 --- a/code/modules/shuttle/shuttles/crashable/crashable.dm +++ b/code/modules/shuttle/shuttles/crashable/crashable.dm @@ -26,7 +26,7 @@ found_turf.ChangeTurf(/turf/open/floor) for(var/mob/current_mob as anything in get_mobs_in_z_level_range(destination.return_center_turf(), 18)) - var/relative_dir = get_dir(current_mob, destination.return_center_turf()) + var/relative_dir = Get_Compass_Dir(current_mob, destination.return_center_turf()) var/final_dir = dir2text(relative_dir) to_chat(current_mob, SPAN_HIGHDANGER("You hear something crashing down from above [final_dir ? "to the [final_dir]" : "nearby"]!")) diff --git a/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm b/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm index 1f0a8fd502..c2c6b818b3 100644 --- a/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm +++ b/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm @@ -73,6 +73,8 @@ for(var/mob/living/occupant in interior_area) occupant_count++ for(var/obj/structure/machinery/cryopod/evacuation/cryotube in interior_area) + if(cryotube.occupant) + occupant_count++ cryos += list(cryotube) if (occupant_count > max_capacity) playsound(src,'sound/effects/escape_pod_warmup.ogg', 50, 1) diff --git a/code/modules/shuttle/shuttles/crashable/lifeboats.dm b/code/modules/shuttle/shuttles/crashable/lifeboats.dm index 3a6ee2ecbb..65a212cc77 100644 --- a/code/modules/shuttle/shuttles/crashable/lifeboats.dm +++ b/code/modules/shuttle/shuttles/crashable/lifeboats.dm @@ -48,12 +48,17 @@ width = 20 /obj/docking_port/mobile/crashable/lifeboat/evac_launch() + if (status == LIFEBOAT_LOCKED) + return + . = ..() available = FALSE set_mode(SHUTTLE_IGNITING) on_ignition() setTimer(ignitionTime) + alarm_sound_loop.stop() + playing_launch_announcement_alarm = FALSE /obj/docking_port/mobile/crashable/lifeboat/crash_check() . = ..() @@ -107,6 +112,8 @@ /obj/docking_port/stationary/lifeboat_dock/proc/close_dock() var/obj/docking_port/mobile/crashable/lifeboat/docked_shuttle = get_docked() + if(docked_shuttle.status == LIFEBOAT_LOCKED) + return if(docked_shuttle) for(var/obj/structure/machinery/door/airlock/multi_tile/door in docked_shuttle.doors) INVOKE_ASYNC(door, TYPE_PROC_REF(/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat, close_and_lock)) diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm index 23bb364e85..a9ad6142bc 100644 --- a/code/modules/shuttle/shuttles/dropship.dm +++ b/code/modules/shuttle/shuttles/dropship.dm @@ -44,6 +44,9 @@ door_control.add_door(air, "port") if("aft_door") door_control.add_door(air, "aft") + var/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/hatch = air + if(istype(hatch)) + hatch.linked_dropship = src RegisterSignal(src, COMSIG_DROPSHIP_ADD_EQUIPMENT, PROC_REF(add_equipment)) RegisterSignal(src, COMSIG_DROPSHIP_REMOVE_EQUIPMENT, PROC_REF(remove_equipment)) @@ -82,10 +85,12 @@ door_control.add_door(air, "port") if("aft_door") door_control.add_door(air, "aft") + RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change)) /obj/docking_port/mobile/marine_dropship/Destroy(force) . = ..() qdel(door_control) + UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE) /obj/docking_port/mobile/marine_dropship/proc/control_doors(action, direction, force, asynchronous = TRUE) // its been locked down by the queen @@ -121,6 +126,12 @@ set_security_level(SEC_LEVEL_RED) return +/obj/docking_port/mobile/marine_dropship/proc/on_dir_change(datum/source, old_dir, new_dir) + SIGNAL_HANDLER + for(var/place in shuttle_areas) + for(var/obj/structure/machinery/door/air in place) + air.handle_multidoor(old_dir, new_dir) + /obj/docking_port/mobile/marine_dropship/midway name = "Midway" id = DROPSHIP_MIDWAY @@ -209,6 +220,14 @@ /obj/docking_port/mobile/marine_dropship/normandy/get_transit_path_type() return /turf/open/space/transit/dropship/normandy +/obj/docking_port/mobile/marine_dropship/saipan + name = "Saipan" + id = DROPSHIP_SAIPAN + preferred_direction = SOUTH // If you are changing this, please update the dir of the path below as well + +/obj/docking_port/mobile/marine_dropship/saipan/get_transit_path_type() + return /turf/open/space/transit/dropship/saipan + /obj/docking_port/mobile/marine_dropship/check() . = ..() @@ -374,7 +393,7 @@ /obj/docking_port/stationary/marine_dropship/crash_site/on_arrival(obj/docking_port/mobile/arriving_shuttle) . = ..() - arriving_shuttle.mode = SHUTTLE_CRASHED + arriving_shuttle.set_mode(SHUTTLE_CRASHED) for(var/mob/living/carbon/affected_mob in (GLOB.alive_human_list + GLOB.living_xeno_list)) //knock down mobs if(affected_mob.z != z) continue @@ -387,6 +406,7 @@ affected_mob.apply_effect(3, WEAKEN) SEND_GLOBAL_SIGNAL(COMSIG_GLOB_GROUNDSIDE_FORSAKEN_HANDLING) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_HIJACK_LANDED) /datum/map_template/shuttle/midway name = "Midway" @@ -400,6 +420,10 @@ name = "Normandy" shuttle_id = DROPSHIP_NORMANDY +/datum/map_template/shuttle/saipan + name = "Saipan" + shuttle_id = DROPSHIP_SAIPAN + /datum/map_template/shuttle/upp name = "Akademia Nauk" shuttle_id = DROPSHIP_UPP diff --git a/code/modules/shuttle/shuttles/ert.dm b/code/modules/shuttle/shuttles/ert.dm index b619645c50..e526c89b5b 100644 --- a/code/modules/shuttle/shuttles/ert.dm +++ b/code/modules/shuttle/shuttles/ert.dm @@ -2,14 +2,6 @@ ERT Shuttles */ -#define ERT_SHUTTLE_DEFAULT_RECHARGE 90 SECONDS - -#define ADMIN_LANDING_PAD_1 "base-ert1" -#define ADMIN_LANDING_PAD_2 "base-ert2" -#define ADMIN_LANDING_PAD_3 "base-ert3" -#define ADMIN_LANDING_PAD_4 "base-ert4" -#define ADMIN_LANDING_PAD_5 "base-ert5" - // Base ERT Shuttle /obj/docking_port/mobile/emergency_response name = "ERT Shuttle" @@ -21,6 +13,8 @@ rechargeTime = ERT_SHUTTLE_DEFAULT_RECHARGE // 90s cooldown to recharge var/list/doors = list() var/list/external_doors = list() + var/datum/emergency_call/distress_beacon + var/list/local_landmarks = list() /obj/docking_port/mobile/emergency_response/Initialize(mapload) . = ..(mapload) @@ -31,11 +25,34 @@ air.breakable = FALSE air.indestructible = TRUE air.unacidable = TRUE + RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change)) /obj/docking_port/mobile/emergency_response/enterTransit() control_doors("force-lock-launch", force = TRUE, external_only = TRUE) + UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE) ..() +/obj/docking_port/mobile/emergency_response/register() + . = ..() + + for(var/turf/current_turf as anything in return_turfs()) + for(var/obj/effect/landmark/landmark in current_turf.GetAllContents()) + LAZYADD(local_landmarks[landmark.type], landmark) + +/obj/docking_port/mobile/emergency_response/initiate_docking(obj/docking_port/stationary/new_dock, movement_direction, force) + . = ..() + if(. != DOCKING_SUCCESS) + return + + if(!is_mainship_level(z)) + return + + if(!distress_beacon || !distress_beacon.home_base) + return + + var/obj/structure/machinery/computer/shuttle/ert/console = getControlConsole() + console.must_launch_home = TRUE + /obj/docking_port/mobile/emergency_response/proc/control_doors(action, force = FALSE, external_only = FALSE) var/list/door_list = doors if(external_only) @@ -77,10 +94,10 @@ air.lock() air.safe = 1 -/obj/docking_port/mobile/emergency_response/setDir(newdir) - . = ..() +/obj/docking_port/mobile/emergency_response/proc/on_dir_change(datum/source, old_dir, new_dir) + SIGNAL_HANDLER for(var/obj/structure/machinery/door/shuttle_door in doors) - shuttle_door.handle_multidoor() + shuttle_door.handle_multidoor(old_dir, new_dir) // ERT Shuttle 1 /obj/docking_port/mobile/emergency_response/ert1 @@ -152,6 +169,7 @@ port_direction = NORTH width = 17 height = 29 + dwidth = 8 var/port_door var/starboard_door @@ -182,6 +200,7 @@ width = 7 height = 13 var/is_external = FALSE + var/lockdown_on_land = FALSE /obj/docking_port/stationary/emergency_response/on_arrival(obj/docking_port/mobile/arriving_shuttle) . = ..() @@ -189,6 +208,12 @@ var/obj/docking_port/mobile/emergency_response/ert = arriving_shuttle ert.control_doors("unlock", force = FALSE) + if(lockdown_on_land) + var/obj/structure/machinery/computer/shuttle/ert/console = arriving_shuttle.getControlConsole() + console.disable() + console.mission_accomplished = TRUE + lockdown_on_land = FALSE + /obj/docking_port/stationary/emergency_response/port1 name = "Almayer starboard landing pad" dir = NORTH @@ -254,7 +279,7 @@ width = 17 height = 29 airlock_id = "s_umbilical" - airlock_area = /area/almayer/hallways/port_umbilical + airlock_area = /area/almayer/hallways/lower/port_umbilical /obj/docking_port/stationary/emergency_response/external/hangar_starboard name = "Almayer hanger starboard external airlock" @@ -263,7 +288,7 @@ width = 17 height = 29 airlock_id = "n_umbilical" - airlock_area = /area/almayer/hallways/starboard_umbilical + airlock_area = /area/almayer/hallways/lower/starboard_umbilical // These are docking ports not on the almayer /obj/docking_port/stationary/emergency_response/idle_port1 @@ -310,24 +335,24 @@ /datum/map_template/shuttle/response_ert name = "Response Shuttle" - shuttle_id = "ert_response_shuttle" + shuttle_id = MOBILE_SHUTTLE_ID_ERT1 /datum/map_template/shuttle/pmc_ert name = "PMC Shuttle" - shuttle_id = "ert_pmc_shuttle" + shuttle_id = MOBILE_SHUTTLE_ID_ERT2 /datum/map_template/shuttle/upp_ert name = "UPP Shuttle" - shuttle_id = "ert_upp_shuttle" + shuttle_id = MOBILE_SHUTTLE_ID_ERT3 /datum/map_template/shuttle/twe_ert name = "TWE Shuttle" - shuttle_id = "ert_twe_shuttle" + shuttle_id = MOBILE_SHUTTLE_ID_ERT4 /datum/map_template/shuttle/small_ert name = "Rescue Shuttle" - shuttle_id = "ert_small_shuttle_north" + shuttle_id = MOBILE_SHUTTLE_ID_ERT_SMALL /datum/map_template/shuttle/big_ert name = "Boarding Shuttle" - shuttle_id = "ert_shuttle_big" + shuttle_id = MOBILE_SHUTTLE_ID_ERT_BIG diff --git a/code/modules/shuttle/shuttles/shipmap_elevator.dm b/code/modules/shuttle/shuttles/shipmap_elevator.dm index c49fa4a5dd..bdd058cf5c 100644 --- a/code/modules/shuttle/shuttles/shipmap_elevator.dm +++ b/code/modules/shuttle/shuttles/shipmap_elevator.dm @@ -23,10 +23,10 @@ /obj/docking_port/mobile/trijent_elevator/shipmap_elevator/register() . = ..() - for(var/obj/structure/machinery/gear/G in machines) + for(var/obj/structure/machinery/gear/G in GLOB.machines) if(G.id == id) gears += G - for(var/obj/structure/machinery/door/poddoor/railing/R in machines) + for(var/obj/structure/machinery/door/poddoor/railing/R in GLOB.machines) if(R.id == id) railings += R diff --git a/code/modules/shuttle/vehicle_elevator.dm b/code/modules/shuttle/vehicle_elevator.dm index c9a051a261..8f6a9025ba 100644 --- a/code/modules/shuttle/vehicle_elevator.dm +++ b/code/modules/shuttle/vehicle_elevator.dm @@ -7,10 +7,11 @@ id = MOBILE_SHUTTLE_VEHICLE_ELEVATOR - callTime = 5 SECONDS - ignitionTime = 1 SECONDS + // Call and ""ignition"" times are set to line up with the sound effects. + callTime = 4 SECONDS + ignitionTime = 5 SECONDS - ignition_sound = 'sound/machines/asrs_raising.ogg' + ignition_sound = 'sound/machines/asrs_lowering.ogg' ambience_idle = null ambience_flight = null @@ -20,27 +21,58 @@ /obj/docking_port/mobile/vehicle_elevator/register() . = ..() SSshuttle.vehicle_elevator = src - for(var/obj/structure/machinery/gear/G in machines) + for(var/obj/structure/machinery/gear/G in GLOB.machines) if(G.id == "vehicle_elevator_gears") gears += G - for(var/obj/structure/machinery/door/poddoor/railing/R in machines) + for(var/obj/structure/machinery/door/poddoor/railing/R in GLOB.machines) if(R.id == "vehicle_elevator_railing") railings += R /obj/docking_port/mobile/vehicle_elevator/on_ignition() - for(var/i in gears) - var/obj/structure/machinery/gear/G = i - G.start_moving() - -/obj/docking_port/mobile/vehicle_elevator/afterShuttleMove() + . = ..() + // If the elevator isn't in the vehicle bay, start the gears immediately. if(!is_mainship_level(z)) + start_gears() + + // Play the 'raising' sound effect at the destination docking port manually. + // `landing_sound` can't be used since that only plays on the elevator itself, + // and this sound file is too long for that either way. + playsound(destination, 'sound/machines/asrs_raising.ogg', 60) return - for(var/i in gears) - var/obj/structure/machinery/gear/G = i - G.stop_moving() - for(var/i in railings) - var/obj/structure/machinery/door/poddoor/railing/R = i - INVOKE_ASYNC(R, TYPE_PROC_REF(/obj/structure/machinery/door, open)) + + // If the elevator *is* in the vehicle bay, close the railings and start the gears when it leaves. + close_railings() + addtimer(CALLBACK(src, PROC_REF(start_gears)), ignitionTime) + +/obj/docking_port/mobile/vehicle_elevator/afterShuttleMove() + . = ..() + // Check `get_docked()` in order to skip this if it just moved to the 'transit' port. + if(get_docked() == destination) + stop_gears() + + // If the elevator moved to the vehicle bay, open the railings. + if(is_mainship_level(z)) + open_railings() + +/obj/docking_port/mobile/vehicle_elevator/proc/start_gears() + for(var/obj/structure/machinery/gear/gear as anything in gears) + gear.start_moving() + +/obj/docking_port/mobile/vehicle_elevator/proc/stop_gears() + for(var/obj/structure/machinery/gear/gear as anything in gears) + gear.stop_moving() + +/obj/docking_port/mobile/vehicle_elevator/proc/open_railings() + for(var/obj/structure/machinery/door/poddoor/railing/railing as anything in railings) + // If the railing isn't already open. + if(railing.density) + railing.open() + +/obj/docking_port/mobile/vehicle_elevator/proc/close_railings() + for(var/obj/structure/machinery/door/poddoor/railing/railing as anything in railings) + // If the railing isn't already closed. + if(!railing.density) + railing.close() /obj/docking_port/stationary/vehicle_elevator name = "Root Vehicle Elevator Dock" @@ -55,6 +87,46 @@ id = "almayer vehicle" roundstart_template = /datum/map_template/shuttle/vehicle + //elevator effects (four so the entire elevator doesn't vanish when there's one opaque obstacle between you and the actual elevator loc). + var/obj/effect/elevator/vehicle/SW + var/obj/effect/elevator/vehicle/SE + var/obj/effect/elevator/vehicle/NW + var/obj/effect/elevator/vehicle/NE + +/obj/docking_port/stationary/vehicle_elevator/almayer/Initialize(mapload) + . = ..() + // Create and offset some effects for the elevator shaft sprite. + SW = new(locate(src.x - 2, src.y - 2, src.z)) + + SE = new(locate(src.x + 2, src.y - 2, src.z)) + SE.pixel_x = -128 + + NW = new(locate(src.x - 2, src.y + 2, src.z)) + NW.pixel_y = -128 + + NE = new(locate(src.x + 2, src.y + 2, src.z)) + NE.pixel_x = -128 + NE.pixel_y = -128 + + SW.invisibility = INVISIBILITY_ABSTRACT + SE.invisibility = INVISIBILITY_ABSTRACT + NW.invisibility = INVISIBILITY_ABSTRACT + NE.invisibility = INVISIBILITY_ABSTRACT + +// Make the elevator shaft visible when the elevator leaves. +/obj/docking_port/stationary/vehicle_elevator/almayer/on_departure(obj/docking_port/mobile/departing_shuttle) + SW.invisibility = 0 + SE.invisibility = 0 + NW.invisibility = 0 + NE.invisibility = 0 + +// And make it invisible again when the elevator returns. +/obj/docking_port/stationary/vehicle_elevator/almayer/on_arrival(obj/docking_port/mobile/arriving_shuttle) + SW.invisibility = INVISIBILITY_ABSTRACT + SE.invisibility = INVISIBILITY_ABSTRACT + NW.invisibility = INVISIBILITY_ABSTRACT + NE.invisibility = INVISIBILITY_ABSTRACT + /obj/docking_port/stationary/vehicle_elevator/adminlevel name = "Adminlevel Vehicle Elevator Dock" id = "adminlevel vehicle" diff --git a/code/modules/shuttles/marine_ferry.dm b/code/modules/shuttles/marine_ferry.dm index 5a5a49ebaa..bd4a087169 100644 --- a/code/modules/shuttles/marine_ferry.dm +++ b/code/modules/shuttles/marine_ferry.dm @@ -44,7 +44,7 @@ if(!LAZYLEN(locs_land)) return TRUE - if(!main_doors.len && !controls.len) + if(!length(main_doors) && !length(controls)) var/turf/T_src = pick(locs_dock) var/list/turfs = get_shuttle_turfs(T_src, info_datums) for(var/turf/T in turfs) @@ -73,13 +73,6 @@ control.visible_message(SPAN_WARNING(fail_flavortext)) return //Kill it so as not to repeat -/datum/shuttle/ferry/marine/proc/load_datums() - if(!(info_tag in s_info)) - message_admins(SPAN_WARNING("Error with shuttles: Shuttle tag does not exist. Code: MSD10.\n WARNING: DROPSHIP LAUNCH WILL PROBABLY FAIL")) - - var/list/L = s_info[info_tag] - info_datums = L.Copy() - /datum/shuttle/ferry/marine/proc/set_automated_launch(bool_v) automated_launch = bool_v if(bool_v) @@ -154,12 +147,12 @@ moving_status = SHUTTLE_WARMUP if(transit_optimized) - recharging = round(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time + recharging = floor(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time else recharging = recharge_time //Prevent the shuttle from moving again until it finishes recharging for(var/obj/structure/dropship_equipment/fuel/cooling_system/CS in equipments) - recharging = round(recharging * SHUTTLE_COOLING_FACTOR_RECHARGE) //cooling system reduces recharge time + recharging = floor(recharging * SHUTTLE_COOLING_FACTOR_RECHARGE) //cooling system reduces recharge time break //START: Heavy lifting backend @@ -171,7 +164,7 @@ var/int_rot = locs_move[T_int] var/turf/T_trg var/trg_rot - if(!locs_land.len) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up. + if(!length(locs_land)) // We check here as well to make sure that the order of operations/lag/changing it after launch. Wont mess this up. transit_gun_mission = 1 if(transit_gun_mission)//gun mission makes you land back where you started. @@ -201,7 +194,7 @@ for(var/X in equipments) var/obj/structure/dropship_equipment/E = X if(istype(E, /obj/structure/dropship_equipment/fuel/fuel_enhancer)) - travel_time = round(travel_time / SHUTTLE_FUEL_ENHANCE_FACTOR_TRAVEL) //fuel enhancer increases travel time + travel_time = floor(travel_time / SHUTTLE_FUEL_ENHANCE_FACTOR_TRAVEL) //fuel enhancer increases travel time break else if(transit_optimized) @@ -212,7 +205,7 @@ for(var/X in equipments) var/obj/structure/dropship_equipment/E = X if(istype(E, /obj/structure/dropship_equipment/fuel/fuel_enhancer)) - travel_time = round(travel_time * SHUTTLE_FUEL_ENHANCE_FACTOR_TRAVEL) //fuel enhancer reduces travel time + travel_time = floor(travel_time * SHUTTLE_FUEL_ENHANCE_FACTOR_TRAVEL) //fuel enhancer reduces travel time break //START: Heavy lifting backend @@ -331,7 +324,7 @@ if(moving_status != SHUTTLE_IDLE) return moving_status = SHUTTLE_WARMUP if(transit_optimized) - recharging = round(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time + recharging = floor(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time else recharging = recharge_time //Prevent the shuttle from moving again until it finishes recharging @@ -343,27 +336,27 @@ var/target_section = crash_target_section if(isnull(target_section)) - var/list/potential_crash_sections = almayer_ship_sections.Copy() - potential_crash_sections -= almayer_aa_cannon.protecting_section + var/list/potential_crash_sections = GLOB.almayer_ship_sections.Copy() + potential_crash_sections -= GLOB.almayer_aa_cannon.protecting_section target_section = pick(potential_crash_sections) - var/turf/T_trg = pick(shuttle_controller.locs_crash[target_section]) + var/turf/T_trg = pick(SSoldshuttle.shuttle_controller.locs_crash[target_section]) for(var/X in equipments) var/obj/structure/dropship_equipment/E = X if(istype(E, /obj/structure/dropship_equipment/adv_comp/docking)) var/list/crash_turfs = list() - for(var/turf/TU in shuttle_controller.locs_crash[target_section]) + for(var/turf/TU in SSoldshuttle.shuttle_controller.locs_crash[target_section]) if(istype(get_area(TU), /area/almayer/hallways/hangar)) crash_turfs += TU - if(crash_turfs.len) T_trg = pick(crash_turfs) + if(length(crash_turfs)) T_trg = pick(crash_turfs) else message_admins("no crash turf found in Almayer Hangar, contact coders.") break if(!istype(T_src) || !istype(T_int) || !istype(T_trg)) message_admins(SPAN_WARNING("Error with shuttles: Reference turfs not correctly instantiated. Code: MSD04.\n WARNING: DROPSHIP LAUNCH WILL FAIL")) - shuttle_controller.locs_crash[target_section] -= T_trg + SSoldshuttle.shuttle_controller.locs_crash[target_section] -= T_trg //END: Heavy lifting backend @@ -440,12 +433,12 @@ sleep(85) - if(security_level < SEC_LEVEL_RED) //automatically set security level to red. + if(GLOB.security_level < SEC_LEVEL_RED) //automatically set security level to red. set_security_level(SEC_LEVEL_RED, TRUE) shake_cameras(turfs_int) //shake for 1.5 seconds before crash, 0.5 after - for(var/obj/structure/machinery/power/apc/A in machines) //break APCs + for(var/obj/structure/machinery/power/apc/A in GLOB.machines) //break APCs if(A.z != T_trg.z) continue if(prob(A.crash_break_probability)) A.overload_lighting() @@ -461,23 +454,14 @@ // Break the ultra-reinforced windows. // Break the briefing windows. - for(var/i in GLOB.hijack_bustable_windows) - var/obj/structure/window/H = i - H.deconstruct(FALSE) - - for(var/k in GLOB.hijack_bustable_ladders) - var/obj/structure/ladder/fragile_almayer/L = k - L.deconstruct() - // Delete the briefing door(s). - for(var/D in GLOB.hijack_deletable_windows) - qdel(D) + SEND_GLOBAL_SIGNAL(COMSIG_GLOB_HIJACK_IMPACTED) // Sleep while the explosions do their job var/explosion_alive = TRUE while(explosion_alive) explosion_alive = FALSE - for(var/datum/automata_cell/explosion/E in cellauto_cells) + for(var/datum/automata_cell/explosion/E in GLOB.cellauto_cells) if(E.explosion_cause_data && E.explosion_cause_data.cause_name == "dropship crash") explosion_alive = TRUE break @@ -520,15 +504,15 @@ open_doors_crashed(turfs_trg) //And now open the doors - for (var/obj/structure/machinery/door_display/research_cell/d in machines) + for (var/obj/structure/machinery/door_display/research_cell/d in GLOB.machines) if(is_mainship_level(d.z) || is_reserved_level(d.z)) d.ion_act() //Breaking xenos out of containment //Stolen from events.dm. WARNING: This code is old as hell - for (var/obj/structure/machinery/power/apc/APC in machines) + for (var/obj/structure/machinery/power/apc/APC in GLOB.machines) if(is_mainship_level(APC.z) || is_reserved_level(APC.z)) APC.ion_act() - for (var/obj/structure/machinery/power/smes/SMES in machines) + for (var/obj/structure/machinery/power/smes/SMES in GLOB.machines) if(is_mainship_level(SMES.z) || is_reserved_level(SMES.z)) SMES.ion_act() @@ -545,7 +529,7 @@ colonial_marines.add_current_round_status_to_end_results("Hijack") /datum/shuttle/ferry/marine/proc/disable_latejoin() - enter_allowed = FALSE + GLOB.enter_allowed = FALSE /datum/shuttle/ferry/marine/short_jump() diff --git a/code/modules/shuttles/shuttle.dm b/code/modules/shuttles/shuttle.dm index af7019a08c..1ded77a0e0 100644 --- a/code/modules/shuttles/shuttle.dm +++ b/code/modules/shuttles/shuttle.dm @@ -51,7 +51,7 @@ moving_status = SHUTTLE_WARMUP if(transit_optimized) - recharging = round(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time + recharging = floor(recharge_time * SHUTTLE_OPTIMIZE_FACTOR_RECHARGE) //Optimized flight plan means less recharge time else recharging = recharge_time //Prevent the shuttle from moving again until it finishes recharging spawn(warmup_time) @@ -218,11 +218,11 @@ if(iselevator) if(istype(T,/turf/open/space)) if(is_mainship_level(T.z)) - new /turf/open/floor/almayer/empty(T) + T.ChangeTurf(/turf/open/floor/almayer/empty/requisitions) else - new /turf/open/gm/empty(T) + T.ChangeTurf(/turf/open/gm/empty) else if(istype(T,/turf/open/space)) - new /turf/open/floor/plating(T) + T.ChangeTurf(/turf/open/floor/plating) return diff --git a/code/modules/shuttles/shuttle_console.dm b/code/modules/shuttles/shuttle_console.dm index da1923730e..cc7d90e930 100644 --- a/code/modules/shuttles/shuttle_console.dm +++ b/code/modules/shuttles/shuttle_console.dm @@ -33,7 +33,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) return ..() /obj/structure/machinery/computer/shuttle_control/proc/get_shuttle() - var/datum/shuttle/ferry/shuttle = shuttle_controller.shuttles[shuttle_tag] + var/datum/shuttle/ferry/shuttle = SSoldshuttle.shuttle_controller.shuttles[shuttle_tag] if(shuttle_datum) shuttle = shuttle_datum @@ -60,7 +60,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) if(..(user)) return - if(!allowed(user) || ismaintdrone(user)) + if(!allowed(user)) to_chat(user, SPAN_WARNING("Access denied.")) return 1 @@ -79,15 +79,15 @@ GLOBAL_LIST_EMPTY(shuttle_controls) if(!isxeno(user) && (onboard || is_ground_level(z)) && !shuttle.iselevator) if(shuttle.queen_locked) if(onboard && skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED)) - user.visible_message(SPAN_NOTICE("[user] starts to type on the [src]."), - SPAN_NOTICE("You try to take back the control over the shuttle. It will take around 3 minutes.")) + user.visible_message(SPAN_NOTICE("[user] starts to type on [src]."), + SPAN_NOTICE("You try to take back the control over the shuttle. It will take around 3 minutes.")) if(do_after(user, 3 MINUTES, INTERRUPT_ALL, BUSY_ICON_FRIENDLY)) shuttle.last_locked = world.time shuttle.queen_locked = 0 shuttle.last_door_override = world.time shuttle.door_override = 0 - user.visible_message(SPAN_NOTICE("The [src] blinks with blue lights."), - SPAN_NOTICE("You have successfully taken back the control over the dropship.")) + user.visible_message(SPAN_NOTICE("[src] blinks with blue lights."), + SPAN_NOTICE("You have successfully taken back the control over the dropship.")) ui_interact(user) return else @@ -106,13 +106,13 @@ GLOBAL_LIST_EMPTY(shuttle_controls) shuttle.door_override = 0 if(link && !shuttle.linked) - user.visible_message(SPAN_NOTICE("The [src] blinks with blue lights."), - SPAN_NOTICE("Transport link activated.")) + user.visible_message(SPAN_NOTICE("[src] blinks with blue lights."), + SPAN_NOTICE("Transport link activated.")) shuttle.linked = TRUE if(shuttle.require_link && !shuttle.linked) - user.visible_message(SPAN_NOTICE("The [src] blinks with red lights."), - SPAN_WARNING("Transport terminal unlinked. Manual activation required.")) + user.visible_message(SPAN_NOTICE("[src] blinks with red lights."), + SPAN_WARNING("Transport terminal unlinked. Manual activation required.")) return ui_interact(user) @@ -188,8 +188,8 @@ GLOBAL_LIST_EMPTY(shuttle_controls) "gun_mission_allowed" = shuttle.can_do_gun_mission, "shuttle_status_message" = shuttle_status_message, "recharging" = shuttle.recharging, - "recharging_seconds" = round(shuttle.recharging/10), - "flight_seconds" = round(shuttle.in_transit_time_left/10), + "recharging_seconds" = floor(shuttle.recharging/10), + "flight_seconds" = floor(shuttle.in_transit_time_left/10), "can_return_home" = shuttle.transit_gun_mission && shuttle.moving_status == SHUTTLE_INTRANSIT && shuttle.in_transit_time_left>abort_timer, "recharge_time" = effective_recharge_time, "recharge_status" = recharge_status, @@ -201,7 +201,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) "auto_time_cdown" = automated_launch_time_left, ) - ui = nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) + ui = SSnano.nanomanager.try_update_ui(user, src, ui_key, ui, data, force_open) if (!ui) ui = new(user, src, ui_key, shuttle.iselevator? "elevator_control_console.tmpl" : "shuttle_control_console.tmpl", shuttle.iselevator? "Elevator Control" : "Shuttle Control", 550, 500) @@ -231,14 +231,14 @@ GLOBAL_LIST_EMPTY(shuttle_controls) return //Comment to test if(!skip_time_lock && world.time < SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK && istype(shuttle, /datum/shuttle/ferry/marine)) - to_chat(usr, SPAN_WARNING("The shuttle is still undergoing pre-flight fueling and cannot depart yet. Please wait another [round((SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK-world.time)/600)] minutes before trying again.")) + to_chat(usr, SPAN_WARNING("The shuttle is still undergoing pre-flight fueling and cannot depart yet. Please wait another [floor((SSticker.mode.round_time_lobby + SHUTTLE_TIME_LOCK-world.time)/600)] minutes before trying again.")) return if(SSticker.mode.active_lz != src && !onboard && isqueen(usr)) to_chat(usr, SPAN_WARNING("The shuttle isn't responding to prompts, it looks like this isn't the primary shuttle.")) return if(istype(shuttle, /datum/shuttle/ferry/marine)) var/datum/shuttle/ferry/marine/s = shuttle - if(!s.locs_land.len && !s.transit_gun_mission) + if(!length(s.locs_land) && !s.transit_gun_mission) to_chat(usr, SPAN_WARNING("There is no suitable LZ for this shuttle. Flight configuration changed to fire-mission.")) s.transit_gun_mission = 1 if(shuttle.moving_status == SHUTTLE_IDLE) //Multi consoles, hopefully this will work @@ -260,7 +260,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) return // Allow the queen to choose the ship section to crash into - var/crash_target = tgui_input_list(usr, "Choose a ship section to target","Hijack", almayer_ship_sections + list("Cancel")) + var/crash_target = tgui_input_list(usr, "Choose a ship section to target","Hijack", GLOB.almayer_ship_sections + list("Cancel")) if(crash_target == "Cancel") return @@ -278,16 +278,16 @@ GLOBAL_LIST_EMPTY(shuttle_controls) shuttle1.true_crash_target_section = crash_target // If the AA is protecting the target area, pick any other section to crash into at random - if(almayer_aa_cannon.protecting_section == crash_target) - var/list/potential_crash_sections = almayer_ship_sections.Copy() - potential_crash_sections -= almayer_aa_cannon.protecting_section + if(GLOB.almayer_aa_cannon.protecting_section == crash_target) + var/list/potential_crash_sections = GLOB.almayer_ship_sections.Copy() + potential_crash_sections -= GLOB.almayer_aa_cannon.protecting_section crash_target = pick(potential_crash_sections) shuttle1.crash_target_section = crash_target shuttle1.transit_gun_mission = 0 - if(round_statistics) - round_statistics.track_hijack() + if(GLOB.round_statistics) + GLOB.round_statistics.track_hijack() marine_announcement("Unscheduled dropship departure detected from operational area. Hijack likely. Shutting down autopilot.", "Dropship Alert", 'sound/AI/hijack.ogg', logging = ARES_LOG_SECURITY) shuttle.alerts_allowed-- @@ -306,16 +306,16 @@ GLOBAL_LIST_EMPTY(shuttle_controls) if(Q.hive) addtimer(CALLBACK(Q.hive, TYPE_PROC_REF(/datum/hive_status, abandon_on_hijack)), DROPSHIP_WARMUP_TIME + 5 SECONDS, TIMER_UNIQUE) //+ 5 seconds catch standing in doorways - if(bomb_set) + if(GLOB.bomb_set) for(var/obj/structure/machinery/nuclearbomb/bomb in world) bomb.end_round = FALSE - if(almayer_orbital_cannon) - almayer_orbital_cannon.is_disabled = TRUE - addtimer(CALLBACK(almayer_orbital_cannon, TYPE_PROC_REF(/obj/structure/orbital_cannon, enable)), 10 MINUTES, TIMER_UNIQUE) + if(GLOB.almayer_orbital_cannon) + GLOB.almayer_orbital_cannon.is_disabled = TRUE + addtimer(CALLBACK(GLOB.almayer_orbital_cannon, TYPE_PROC_REF(/obj/structure/orbital_cannon, enable)), 10 MINUTES, TIMER_UNIQUE) - if(almayer_aa_cannon) - almayer_aa_cannon.is_disabled = TRUE + if(GLOB.almayer_aa_cannon) + GLOB.almayer_aa_cannon.is_disabled = TRUE else if(shuttle.require_link) use_power(4080) @@ -329,7 +329,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls) shuttle.launch(src) if(onboard && !shuttle.iselevator) M.count_niche_stat(STATISTICS_NICHE_FLIGHT) - msg_admin_niche("[M] ([M.key]) launched a [shuttle.iselevator? "elevator" : "shuttle"] using [src].") + msg_admin_niche("[M] ([M.key]) launched \a [shuttle.iselevator? "elevator" : "shuttle"] using [src].") ui_interact(usr) @@ -396,6 +396,30 @@ GLOBAL_LIST_EMPTY(shuttle_controls) onboard = 1 density = TRUE +/obj/structure/machinery/computer/shuttle_control/dropship3 + name = "\improper 'Saipan' dropship console" + desc = "The remote controls for the 'Saipan' Dropship." + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "shuttle" + + shuttle_type = SHUTTLE_DROPSHIP + unslashable = TRUE + unacidable = TRUE + exproof = 1 + req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP) + +/obj/structure/machinery/computer/shuttle_control/dropship3/Initialize() + . = ..() + shuttle_tag = DROPSHIP_SAIPAN + +/obj/structure/machinery/computer/shuttle_control/dropship3/onboard + name = "\improper 'Saipan' flight controls" + desc = "The flight controls for the 'Saipan' Dropship." + icon = 'icons/obj/structures/machinery/shuttle-parts.dmi' + icon_state = "console" + onboard = 1 + density = TRUE + //Elevator control console /obj/structure/machinery/computer/shuttle_control/ice_colony diff --git a/code/modules/shuttles/shuttle_supply.dm b/code/modules/shuttles/shuttle_supply.dm index 67da9ff431..acbcb2937a 100644 --- a/code/modules/shuttles/shuttle_supply.dm +++ b/code/modules/shuttles/shuttle_supply.dm @@ -10,10 +10,10 @@ var/max_late_time = 300 var/railing_id = "supply_elevator_railing" var/gear_id = "supply_elevator_gear" - var/obj/effect/elevator/supply/SW //elevator effects (four so the entire elevator doesn't vanish when - var/obj/effect/elevator/supply/SE //there's one opaque obstacle between you and the actual elevator loc). - var/obj/effect/elevator/supply/NW - var/obj/effect/elevator/supply/NE + var/obj/effect/elevator/SW //elevator effects (four so the entire elevator doesn't vanish when + var/obj/effect/elevator/SE //there's one opaque obstacle between you and the actual elevator loc). + var/obj/effect/elevator/NW + var/obj/effect/elevator/NE var/Elevator_x var/Elevator_y var/Elevator_z @@ -34,15 +34,15 @@ Elevator_x = pick_loc().x Elevator_y = pick_loc().y Elevator_z = pick_loc().z - SW = new /obj/effect/elevator/supply(locate(Elevator_x-2,Elevator_y-2,Elevator_z)) + SW = new /obj/effect/elevator(locate(Elevator_x-2,Elevator_y-2,Elevator_z)) SW.vis_contents += elevator_animation - SE = new /obj/effect/elevator/supply(locate(Elevator_x+2,Elevator_y-2,Elevator_z)) + SE = new /obj/effect/elevator(locate(Elevator_x+2,Elevator_y-2,Elevator_z)) SE.pixel_x = -128 SE.vis_contents += elevator_animation - NW = new /obj/effect/elevator/supply(locate(Elevator_x-2,Elevator_y+2,Elevator_z)) + NW = new /obj/effect/elevator(locate(Elevator_x-2,Elevator_y+2,Elevator_z)) NW.pixel_y = -128 NW.vis_contents += elevator_animation - NE = new /obj/effect/elevator/supply(locate(Elevator_x+2,Elevator_y+2,Elevator_z)) + NE = new /obj/effect/elevator(locate(Elevator_x+2,Elevator_y+2,Elevator_z)) NE.pixel_x = -128 NE.pixel_y = -128 NE.vis_contents += elevator_animation @@ -77,7 +77,7 @@ lower_railings() return else //at centcom - supply_controller.buy() + GLOB.supply_controller.buy() //We pretend it's a long_jump by making the shuttle stay at centcom for the "in-transit" period. var/area/away_area = get_location_area(away_location) @@ -137,14 +137,14 @@ recharging = 0 /datum/shuttle/ferry/supply/proc/handle_sell() - supply_controller.sell() + GLOB.supply_controller.sell() // returns 1 if the supply shuttle should be prevented from moving because it contains forbidden atoms /datum/shuttle/ferry/supply/proc/forbidden_atoms_check() if (!at_station()) return 0 //if badmins want to send mobs or a nuke on the supply shuttle from centcom we don't care - return supply_controller.forbidden_atoms_check(get_location_area()) + return GLOB.supply_controller.forbidden_atoms_check(get_location_area()) /datum/shuttle/ferry/supply/proc/at_station() return (!location) @@ -155,7 +155,7 @@ /datum/shuttle/ferry/supply/proc/raise_railings() var/effective = 0 - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == railing_id && !M.density) effective = 1 spawn() @@ -165,7 +165,7 @@ /datum/shuttle/ferry/supply/proc/lower_railings() var/effective = 0 - for(var/obj/structure/machinery/door/poddoor/M in machines) + for(var/obj/structure/machinery/door/poddoor/M in GLOB.machines) if(M.id == railing_id && M.density) effective = 1 INVOKE_ASYNC(M, TYPE_PROC_REF(/obj/structure/machinery/door, open)) @@ -173,26 +173,14 @@ playsound(locate(Elevator_x,Elevator_y,Elevator_z), 'sound/machines/elevator_openclose.ogg', 50, 0) /datum/shuttle/ferry/supply/proc/start_gears(direction = 1) - for(var/obj/structure/machinery/gear/M in machines) + for(var/obj/structure/machinery/gear/M in GLOB.machines) if(M.id == gear_id) spawn() M.icon_state = "gear_moving" M.setDir(direction) /datum/shuttle/ferry/supply/proc/stop_gears() - for(var/obj/structure/machinery/gear/M in machines) + for(var/obj/structure/machinery/gear/M in GLOB.machines) if(M.id == gear_id) spawn() M.icon_state = "gear" - -/obj/effect/landmark/vehicleelevator/Initialize(mapload, ...) - . = ..() - GLOB.vehicle_elevator = get_turf(src) - return INITIALIZE_HINT_QDEL - -/datum/shuttle/ferry/supply/vehicle - railing_id = "vehicle_elevator_railing" - gear_id = "vehicle_elevator_gears" - -/datum/shuttle/ferry/supply/vehicle/pick_loc() - return GLOB.vehicle_elevator diff --git a/code/modules/surgery/bones.dm b/code/modules/surgery/bones.dm index f87caaa547..399f5f5360 100644 --- a/code/modules/surgery/bones.dm +++ b/code/modules/surgery/bones.dm @@ -41,6 +41,24 @@ success_sound = 'sound/handling/bandage.ogg' failure_sound = 'sound/surgery/organ2.ogg' +//Use materials to repair bones, same as /datum/surgery_step/mend_encased +/datum/surgery_step/mend_bones/extra_checks(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery, repeating, skipped) + . = ..() + if(istype(tool, /obj/item/tool/surgery/bonegel)) //If bone gel, use some of the gel + var/obj/item/tool/surgery/bonegel/gel = tool + if(!gel.use_gel(gel.fracture_fix_cost)) + to_chat(user, SPAN_BOLDWARNING("[gel] is empty!")) + return FALSE + + else //Otherwise, use metal rods + var/obj/item/stack/rods/rods = user.get_inactive_hand() + if(!istype(rods)) + to_chat(user, SPAN_BOLDWARNING("You need metal rods in your offhand to repair [target]'s [surgery.affected_limb.display_name] with [tool].")) + return FALSE + if(!rods.use(2)) //Refunded on failure + to_chat(user, SPAN_BOLDWARNING("You need more metal rods to mend [target]'s [surgery.affected_limb.display_name] with [tool].")) + return FALSE + /datum/surgery_step/mend_bones/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/bone_repair/surgery) if(surgery.affected_bone) if(tool_type == /obj/item/tool/surgery/bonegel) @@ -118,6 +136,13 @@ target.apply_damage(10, BRUTE, target_zone) log_interact(user, target, "[key_name(user)] failed to begin repairing bones in [key_name(target)]'s [surgery.affected_limb.display_name] with \the [tool], aborting [surgery].") + + if(tool_type != /obj/item/tool/surgery/bonegel) + to_chat(user, SPAN_NOTICE("The metal rods used on [target]'s [surgery.affected_limb.display_name] fall loose from their [surgery.affected_limb].")) + var/obj/item/stack/rods/rods = new /obj/item/stack/rods(get_turf(target)) + rods.amount = 2 //Refund 2 rods on failure + rods.update_icon() + return FALSE //------------------------------------ diff --git a/code/modules/surgery/chestburster.dm b/code/modules/surgery/chestburster.dm index a840bd026c..e387978fb8 100644 --- a/code/modules/surgery/chestburster.dm +++ b/code/modules/surgery/chestburster.dm @@ -111,12 +111,12 @@ name = "Remove Larva" desc = "extract the xenomorph larva" accept_hand = TRUE - /*Similar to PINCH, but balanced around 100 = using bare hands. Haemostat is faster and better, - other tools are slower but don't burn the surgeon.*/ + /*Using the hands to forcefully rip out the larva will be faster at the cost of damaging both the doctor and the patient, with the addition of organ damage. + Unlike before, the hemostat is now the best tool for removing removing the larva, as opposed to wirecutters and the fork.*/ tools = list( - /obj/item/tool/surgery/hemostat = 1.5, - /obj/item/tool/wirecutters = SURGERY_TOOL_MULT_SUBOPTIMAL, - /obj/item/tool/kitchen/utensil/fork = SURGERY_TOOL_MULT_SUBSTITUTE + /obj/item/tool/surgery/hemostat = 1.5 * SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/wirecutters = 1.5 * SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/tool/kitchen/utensil/fork = 1.5 * SURGERY_TOOL_MULT_SUBSTITUTE ) time = 6 SECONDS preop_sound = 'sound/surgery/hemostat1.ogg' @@ -131,9 +131,9 @@ SPAN_NOTICE("[user] tries to extract the larva from [target]'s chest with \the [tool].")) else user.affected_message(target, - SPAN_NOTICE("You try to extract the larva from [target]'s chest."), - SPAN_NOTICE("[user] tries to extract the larva from your chest."), - SPAN_NOTICE("[user] tries to extract the larva from [target]'s chest.")) + SPAN_NOTICE("You try to forcefully rip the larva from [target]'s chest with your bare hand."), + SPAN_NOTICE("[user] tries to forcefully rip the larva from your chest."), + SPAN_NOTICE("[user] tries to forcefully rip the larva from [target]'s chest.")) target.custom_pain("Something hurts horribly in your chest!",1) log_interact(user, target, "[key_name(user)] started to remove an embryo from [key_name(target)]'s ribcage.") @@ -148,10 +148,16 @@ SPAN_WARNING("[user] pulls a wriggling parasite out of [target]'s ribcage!")) else user.affected_message(target, - SPAN_WARNING("Your hands are burned by acid as you pull a wriggling parasite out of [target]'s ribcage!"), - SPAN_WARNING("[user]'s hands are burned by acid as \he pulls a wriggling parasite out of your ribcage!"), - SPAN_WARNING("[user]'s hands are burned by acid as \he pulls a wriggling parasite out of [target]'s ribcage!")) - + SPAN_WARNING("Your hands and your patient's insides are burned by acid as you forcefully rip a wriggling parasite out of [target]'s ribcage!"), + SPAN_WARNING("[user]'s hands are burned by acid as \he rips a wriggling parasite out of your ribcage!"), + SPAN_WARNING("[user]'s hands are burned by acid as \he rips a wriggling parasite out of [target]'s ribcage!")) + var/datum/internal_organ/impacted_organ = pick(surgery.affected_limb.internal_organs) + impacted_organ.take_damage(5, FALSE) + if(target.stat == CONSCIOUS) + target.emote("scream") + target.apply_damage(15, BURN, target_zone) + + play_failure_sound(user, target, target_zone, tool, surgery) user.emote("pain") if(user.hand) diff --git a/code/modules/surgery/face.dm b/code/modules/surgery/face.dm deleted file mode 100644 index 7d13c0ed56..0000000000 --- a/code/modules/surgery/face.dm +++ /dev/null @@ -1,174 +0,0 @@ -//Procedures in this file: Facial reconstruction surgery -////////////////////////////////////////////////////////////////// -// FACE SURGERY // -////////////////////////////////////////////////////////////////// - -/datum/surgery/face_fix - name = "Facial Reconstruction" - possible_locs = list("mouth") - invasiveness = list(SURGERY_DEPTH_SURFACE) - pain_reduction_required = PAIN_REDUCTION_HEAVY - required_surgery_skill = SKILL_SURGERY_TRAINED - steps = list( - /datum/surgery_step/facial_incision, - /datum/surgery_step/mend_vocals, - /datum/surgery_step/pull_skin, - /datum/surgery_step/cauterize/close_facial_incision, - ) - -/datum/surgery/face_fix/can_start(mob/user, mob/living/carbon/patient, obj/limb/L, obj/item/tool) - var/obj/limb/head/H = L - return H && H.disfigured - -//------------------------------------ - -/datum/surgery_step/facial_incision - name = "Make Facial Incision" - desc = "make facial incisions" - tools = SURGERY_TOOLS_INCISION - time = 4 SECONDS - -/datum/surgery_step/facial_incision/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start to cut open [target]'s face and neck with \the [tool]."), - SPAN_NOTICE("[user] starts to cut open your face and neck with \the [tool]."), - SPAN_NOTICE("[user] starts to cut open [target]'s face and neck with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to cut open [key_name(target)]'s face and neck with \the [tool].") - target.custom_pain("Your face is being cut apart!", 1) - -/datum/surgery_step/facial_incision/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You finish opening incisions on [target]'s face and neck."), - SPAN_NOTICE("[user] finishes opening incisions on your face and neck."), - SPAN_NOTICE("[user] finishes opening incisions on [target]'s face and neck.")) - - target.incision_depths[target_zone] = SURGERY_DEPTH_SHALLOW - log_interact(user, target, "[key_name(user)] cut open [key_name(target)]'s face and neck with \the [tool].") - -/datum/surgery_step/facial_incision/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_DANGER("Your hand slips, slicing [target]'s throat wth \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, slicing [target]'s throat wth \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to cut open [key_name(target)]'s face and neck with \the [tool].") - - target.apply_damage(40, BRUTE, target_zone) - target.losebreath += 20 - user.add_blood(target.get_blood_color(), BLOOD_BODY|BLOOD_HANDS) - return FALSE - -//------------------------------------ - -/datum/surgery_step/mend_vocals - name = "Mend Vocal Cords" - desc = "mend the vocal cords" - tools = SURGERY_TOOLS_PINCH - time = 3 SECONDS - -/datum/surgery_step/mend_vocals/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start mending [target]'s vocal cords with \the [tool]."), - SPAN_NOTICE("[user] starts to mend your vocal cords with \the [tool]."), - SPAN_NOTICE("[user] starts to mend [target]'s vocal cords with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to mend [key_name(target)]'s vocal cords with \the [tool].") - target.custom_pain("The insides of your throat are being pinched and pulled at!", 1) - -/datum/surgery_step/mend_vocals/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You mend [target]'s vocal cords."), - SPAN_NOTICE("[user] mends your vocal cords."), - SPAN_NOTICE("[user] mends [target]'s vocal cords.")) - - log_interact(user, target, "[key_name(user)] mended [key_name(target)]'s vocal cords with \the [tool].") - -/datum/surgery_step/mend_vocals/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, clamping [user]'s trachea shut for a moment with \the [tool]!"), - SPAN_DANGER("[user]'s hand slips, clamping your trachea shut for a moment with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, clamping [target]'s trachea shut for a moment with \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to mend [key_name(target)]'s vocal cords with \the [tool].") - - target.losebreath += 10 - return FALSE - -//------------------------------------ - -/datum/surgery_step/pull_skin - name = "Reconstruct Facial Features" - desc = "reconstruct the face" - tools = SURGERY_TOOLS_PRY_DELICATE - time = 3 SECONDS - -/datum/surgery_step/pull_skin/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You start pulling the skin on [target]'s face back into shape with \the [tool]."), - SPAN_NOTICE("[user] starts to pull the skin on your face back into shape with \the [tool]."), - SPAN_NOTICE("[user] starts to pull the skin on [target]'s face back into shape with \the [tool].")) - - log_interact(user, target, "[key_name(user)] began to pull the skin on [key_name(target)]'s face back in place with \the [tool].") - target.custom_pain("Your face hurts!", 1) - -/datum/surgery_step/pull_skin/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You reconstruct [target]'s facial features."), - SPAN_NOTICE("[user] reconstructs your facial features."), - SPAN_NOTICE("[user] reconstructs [target]'s facial features.")) - - log_interact(user, target, "[key_name(user)] pulled the skin on [key_name(target)]'s face back in place with \the [tool].") - -/datum/surgery_step/pull_skin/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, tearing skin on [target]'s face with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, tearing skin on your face with \the [tool]!"), - SPAN_WARNING("[user]'s hand slips, tearing skin on [target]'s face with \the [tool]!")) - - log_interact(user, target, "[key_name(user)] failed to pull the skin on [key_name(target)]'s face back in place with \the [tool].") - - target.apply_damage(10, BRUTE, target_zone) - return FALSE - -//------------------------------------ - -/datum/surgery_step/cauterize/close_facial_incision - name = "Close Facial Incisions" - desc = "close the facial incisions" - time = 5 SECONDS - -/datum/surgery_step/cauterize/close_facial_incision/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You begin to cauterize the incisions on [target]'s face and neck with \the [tool]."), - SPAN_NOTICE("[user] begins to cauterize the incisions on your face and neck with \the [tool]."), - SPAN_NOTICE("[user] begins to cauterize the incisions on [target]'s face and neck with \the [tool].")) - - target.custom_pain("Your face is being burned!", 1) - - log_interact(user, target, "[key_name(user)] began to cauterize [key_name(target)]'s face and neck with \the [tool].") - -/datum/surgery_step/cauterize/close_facial_incision/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_NOTICE("You cauterize the incisions on [target]'s face and neck."), - SPAN_NOTICE("[user] cauterizes the incisions on your face and neck."), - SPAN_NOTICE("[user] cauterizes the incision on [target]'s face and neck.")) - - log_interact(user, target, "[key_name(user)] cauterized [key_name(target)]'s face and neck with \the [tool], ending [surgery].") - - target.incision_depths[target_zone] = SURGERY_DEPTH_SURFACE - surgery.affected_limb.remove_all_bleeding(TRUE) - var/obj/limb/head/H = surgery.affected_limb - H.disfigured = FALSE - H.owner.name = H.owner.get_visible_name() - -/datum/surgery_step/cauterize/close_facial_incision/failure(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) - user.affected_message(target, - SPAN_WARNING("Your hand slips, leaving a small burn on [target]'s face!"), - SPAN_WARNING("[user]'s hand slips, leaving a small burn on your face!"), - SPAN_WARNING("[user]'s hand slips, leaving a small burn on [target]'s face!")) - - log_interact(user, target, "[key_name(user)] failed to cauterize [key_name(target)]'s face and neck with \the [tool].") - - target.apply_damage(5, BURN, target_zone) - return FALSE diff --git a/code/modules/surgery/generic.dm b/code/modules/surgery/generic.dm index ea07508012..c5d7f37a44 100644 --- a/code/modules/surgery/generic.dm +++ b/code/modules/surgery/generic.dm @@ -573,6 +573,24 @@ success_sound = 'sound/handling/bandage.ogg' failure_sound = 'sound/surgery/organ2.ogg' +//Use materials to mend bones, same as /datum/surgery_step/mend_bones +/datum/surgery_step/mend_encased/extra_checks(mob/living/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery, repeating, skipped) + . = ..() + if(istype(tool, /obj/item/tool/surgery/bonegel)) //If bone gel, use some of the gel + var/obj/item/tool/surgery/bonegel/gel = tool + if(!gel.use_gel(gel.mend_bones_fix_cost)) + to_chat(user, SPAN_BOLDWARNING("[gel] is empty!")) + return FALSE + + else //Otherwise, use metal rods + var/obj/item/stack/rods/rods = user.get_inactive_hand() + if(!istype(rods)) + to_chat(user, SPAN_BOLDWARNING("You need metal rods in your offhand to mend [target]'s [surgery.affected_limb.display_name] with [tool].")) + return FALSE + if(!rods.use(2)) //Refunded on failure + to_chat(user, SPAN_BOLDWARNING("You need more metal rods to mend [target]'s [surgery.affected_limb.display_name] with [tool].")) + return FALSE + /datum/surgery_step/mend_encased/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) if(tool_type == /obj/item/tool/surgery/bonegel) user.affected_message(target, @@ -626,6 +644,11 @@ target.apply_damage(10, BRUTE, target_zone) log_interact(user, target, "[key_name(user)] failed to mend [key_name(target)]'s [surgery.affected_limb.encased].") + if(tool_type != /obj/item/tool/surgery/bonegel) + to_chat(user, SPAN_NOTICE("The metal rods used on [target]'s [surgery.affected_limb.display_name] fall loose from their [surgery.affected_limb].")) + var/obj/item/stack/rods/rods = new /obj/item/stack/rods(get_turf(target)) + rods.amount = 2 //Refund 2 rods on failure + rods.update_icon() /*Proof of concept. Functions but does nothing useful. If fiddling with, uncomment /mob/living/attackby surgery code also. It's pointless processing to have live without any surgeries for it to use.*/ diff --git a/code/modules/surgery/internal_bleeding.dm b/code/modules/surgery/internal_bleeding.dm index e4afcad5ec..c67d670ea5 100644 --- a/code/modules/surgery/internal_bleeding.dm +++ b/code/modules/surgery/internal_bleeding.dm @@ -39,6 +39,7 @@ /datum/surgery_step/fix_vein/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) user.count_niche_stat(STATISTICS_NICHE_SURGERY_IB) + user.life_ib_total++ user.affected_message(target, SPAN_NOTICE("You finish repairing [target]'s damaged vein."), diff --git a/code/modules/surgery/surgery_initiator.dm b/code/modules/surgery/surgery_initiator.dm index 706b28d0e9..1158088e83 100644 --- a/code/modules/surgery/surgery_initiator.dm +++ b/code/modules/surgery/surgery_initiator.dm @@ -7,7 +7,6 @@ /proc/initiate_surgery_moment(obj/item/tool, mob/living/carbon/target, obj/limb/affecting, mob/living/user) if(!tool && !(affecting.status & LIMB_UNCALIBRATED_PROSTHETIC)) return FALSE - var/target_zone = user.zone_selected var/list/available_surgeries = list() var/list/valid_steps = list() //Steps that could be performed, if we had the right tool. @@ -45,6 +44,7 @@ //Lying and self-surgery checks. if(surgeryloop.lying_required && target.body_position != LYING_DOWN) continue + if(!surgeryloop.self_operable && target == user) continue @@ -58,12 +58,16 @@ if(affecting.status & LIMB_DESTROYED) continue else - if(!(affecting.status & LIMB_DESTROYED)) - continue - if(affecting.parent && affecting.parent.status & LIMB_DESTROYED) - continue + if(ishuman(target))//otherwise breaks when trying to op xeno + if(!(affecting.status & LIMB_DESTROYED) && ishuman(target)) + continue + + if(affecting.parent && affecting.parent.status & LIMB_DESTROYED && ishuman(target)) + continue + if(surgeryloop.requires_bodypart_type && !(affecting.status & surgeryloop.requires_bodypart_type)) continue + else if(surgeryloop.requires_bodypart) //mob with no limb in surgery zone when we need a limb continue @@ -71,7 +75,6 @@ if(!surgeryloop.can_start(user, target, affecting, tool)) continue - //Tool checks. var/datum/surgery_step/current_step = GLOB.surgery_step_list[surgeryloop.steps[1]] @@ -84,9 +87,7 @@ continue else continue - available_surgeries[surgeryloop.name] = surgeryloop //Add it to the list. - if(!length(available_surgeries)) if(!tool) return FALSE @@ -96,15 +97,16 @@ to_chat(user, SPAN_WARNING("You can't perform surgery on the same \ [target_zone == "r_hand"||target_zone == "l_hand" ? "hand":"arm"] you're using!")) return FALSE - if(!length(valid_steps)) - var/limbname = affecting?.status & LIMB_DESTROYED ? "the stump of [target]'s [affecting.display_name]" : "[target]'s [parse_zone(target_zone)]" - if(target.incision_depths[target_zone] != SURGERY_DEPTH_SURFACE) - to_chat(user, SPAN_WARNING("You don't know of any operations you could perform in the [target.incision_depths[target_zone]] incision on [limbname].")) - else - to_chat(user, SPAN_WARNING("You don't know of any operations you could begin on [limbname].")) - return FALSE - + if(ishuman(target)) + var/limbname = affecting?.status & LIMB_DESTROYED ? "the stump of [target]'s [affecting.display_name]" : "[target]'s [parse_zone(target_zone)]" + if(target.incision_depths[target_zone] != SURGERY_DEPTH_SURFACE) + to_chat(user, SPAN_WARNING("You don't know of any operations you could perform in the [target.incision_depths[target_zone]] incision on [limbname].")) + else + to_chat(user, SPAN_WARNING("You don't know of any operations you could begin on [limbname].")) + return FALSE + if(isxeno(target)) + to_chat(user, SPAN_WARNING("You don't know any operations you could perform on this body part of a xenomorph.")) var/hint_msg for(var/datum/surgery_step/current_step as anything in valid_steps) if(hint_msg) @@ -114,7 +116,8 @@ hint_msg += ", [current_step.desc]" else hint_msg = "You can't [current_step.desc] with \the [tool]" - to_chat(user, SPAN_WARNING("[hint_msg].")) + if(!isnull(hint_msg)) + to_chat(user, SPAN_WARNING("[hint_msg].")) return FALSE var/datum/surgery/surgeryinstance @@ -159,7 +162,6 @@ return TRUE if(!surgeryinstance.can_start(user, target, affecting, tool)) return TRUE - var/datum/surgery/procedure = new surgeryinstance.type(target, target_zone, affecting) #ifdef DEBUG_SURGERY_INIT message_admins("[procedure.name] started.") diff --git a/code/modules/surgery/surgery_procedure.dm b/code/modules/surgery/surgery_procedure.dm index 8620c557eb..1ec72ae776 100644 --- a/code/modules/surgery/surgery_procedure.dm +++ b/code/modules/surgery/surgery_procedure.dm @@ -73,6 +73,7 @@ if(!user.action_busy) //Otherwise, assume it's the same person. to_chat(user, SPAN_WARNING("Someone is already performing surgery on [target]'s [affected_limb.display_name]!")) return FALSE + return TRUE //So that you don't poke them with a tool you're already using. if(user.action_busy) @@ -93,7 +94,6 @@ if(lying_required && target.body_position != LYING_DOWN) to_chat(user, SPAN_WARNING("[user == target ? "You need" : "[target] needs"] to be lying down for this operation!")) return FALSE - if(user == target) if(!self_operable) to_chat(user, SPAN_WARNING("You can't perform this operation on yourself!")) @@ -102,7 +102,6 @@ to_chat(user, SPAN_WARNING("You can't perform surgery on the same \ [user.zone_selected == "r_hand"||user.zone_selected == "l_hand" ? "hand":"arm"] you're using!")) return FALSE - var/datum/surgery_step/current_step = GLOB.surgery_step_list[steps[status]] if(current_step) if(current_step.attempt_step(user, target, user.zone_selected, tool, src, repeating)) //First, try this step. diff --git a/code/modules/surgery/surgery_steps.dm b/code/modules/surgery/surgery_steps.dm index b58c62b57f..9e1450868d 100644 --- a/code/modules/surgery/surgery_steps.dm +++ b/code/modules/surgery/surgery_steps.dm @@ -92,6 +92,7 @@ affected_limb, or location vars. Also, in that case there may be a wait between var/self_surgery var/tool_modifier var/surface_modifier + var/failure_penalties = 0 //Skill speed modifier. step_duration *= user.get_skill_duration_multiplier(SKILL_SURGERY) @@ -134,16 +135,22 @@ affected_limb, or location vars. Also, in that case there may be a wait between message += "this tool is[pick("n't ideal", " not the best")]" if(SURGERY_TOOL_MULT_SUBSTITUTE) message += "this tool is[pick("n't suitable", " a bad fit", " difficult to use")]" - if(SURGERY_TOOL_MULT_BAD_SUBSTITUTE, SURGERY_TOOL_MULT_AWFUL) + if(SURGERY_TOOL_MULT_BAD_SUBSTITUTE) message += "this tool is [pick("awful", "barely usable")]" + failure_penalties += 1 + if(SURGERY_TOOL_MULT_AWFUL) + message += "this tool is [pick("awful", "barely usable")]" + failure_penalties += 2 switch(surface_modifier) if(SURGERY_SURFACE_MULT_ADEQUATE) message += "[pick("it isn't easy, working", "it's tricky to perform complex surgeries", "this would be quicker if you weren't working")] [pick("in the field", "under these conditions", "without a proper surgical theatre")]" if(SURGERY_SURFACE_MULT_UNSUITED) message += "[pick("it's difficult to work", "it's slow going, working", "you need to take your time")] in these [pick("primitive", "rough", "crude")] conditions" + failure_penalties += 1 if(SURGERY_SURFACE_MULT_AWFUL) message += "[pick("you need to work slowly and carefully", "you need to be very careful", "this is delicate work, especially")] [pick("in these", "under such")] [pick("terrible", "awful", "utterly unsuitable")] conditions" + failure_penalties += 2 if(length(message)) to_chat(user, SPAN_WARNING("[capitalize(english_list(message, final_comma_text = ","))].")) @@ -151,6 +158,20 @@ affected_limb, or location vars. Also, in that case there may be a wait between var/advance //Whether to continue to the next step afterwards. var/pain_failure_chance = max(0, (target.pain?.feels_pain ? surgery.pain_reduction_required - target.pain.reduction_pain : 0) * 2 - human_modifiers["pain_reduction"]) //Each extra pain unit increases the chance by 2 + // Skill compensation for difficult conditions/tools + if(skillcheck(user, SKILL_SURGERY, SKILL_SURGERY_EXPERT)) + failure_penalties -= 2 // will ultimately be -3 + if(skillcheck(user, SKILL_SURGERY, SKILL_SURGERY_TRAINED)) + failure_penalties -= 1 + + var/surgery_failure_chance = SURGERY_FAILURE_IMPOSSIBLE + if(failure_penalties == 1) + surgery_failure_chance = SURGERY_FAILURE_UNLIKELY + else if(failure_penalties == 2) + surgery_failure_chance = SURGERY_FAILURE_POSSIBLE + else if(failure_penalties > 2) + surgery_failure_chance = SURGERY_FAILURE_LIKELY + play_preop_sound(user, target, target_zone, tool, surgery) if(tool?.flags_item & ANIMATED_SURGICAL_TOOL) //If we have an animated tool sprite, run it while we do any do_afters. @@ -171,6 +192,17 @@ affected_limb, or location vars. Also, in that case there may be a wait between target.emote("pain") play_failure_sound(user, target, target_zone, tool, surgery) + else if(prob(surgery_failure_chance)) + do_after(user, max(rand(step_duration * 0.1, step_duration * 0.5), 0.5), INTERRUPT_ALL|INTERRUPT_DIFF_INTENT, + BUSY_ICON_FRIENDLY, target, INTERRUPT_MOVED, BUSY_ICON_MEDICAL) //Brief do_after so that the interrupt doesn't happen instantly. + user.visible_message(SPAN_DANGER("[user] is struggling to perform surgery."), + SPAN_DANGER("You are struggling to perform the surgery with these tools and conditions!")) + if(failure(user, target, target_zone, tool, tool_type, surgery)) //Failure returns TRUE if the step should complete anyway. + advance = TRUE + target.emote("pain") + play_failure_sound(user, target, target_zone, tool, surgery) + msg_admin_niche("[user] failed a [surgery] step on [target] because of [failure_penalties] failure possibility penalties ([surgery_failure_chance]%)") + else //Help intent. if(do_after(user, step_duration, INTERRUPT_ALL|INTERRUPT_DIFF_INTENT, BUSY_ICON_FRIENDLY,target,INTERRUPT_MOVED,BUSY_ICON_MEDICAL)) success(user, target, target_zone, tool, tool_type, surgery) diff --git a/code/modules/surgery/surgery_toggle.dm b/code/modules/surgery/surgery_toggle.dm index b9ca3ca933..973d1c5b68 100644 --- a/code/modules/surgery/surgery_toggle.dm +++ b/code/modules/surgery/surgery_toggle.dm @@ -18,6 +18,7 @@ // Called when the action is clicked on. /datum/action/surgery_toggle/action_activate() + . = ..() if(owner.mob_flags & SURGERY_MODE_ON) button.icon_state = "template" owner.mob_flags &= ~SURGERY_MODE_ON diff --git a/code/modules/surgery/xeno.dm b/code/modules/surgery/xeno.dm new file mode 100644 index 0000000000..d3175a2f78 --- /dev/null +++ b/code/modules/surgery/xeno.dm @@ -0,0 +1,237 @@ +//Research stuff to extract stuff from xenomorphs for goodies. In other words, to extract useful material that could be used to upgrade marines etc. + +/datum/surgery/xenomorph + name = "Experimental Harvesting Surgery" + invasiveness = list(SURGERY_DEPTH_SURFACE) + required_surgery_skill = SKILL_SURGERY_TRAINED + possible_locs = list("head") + target_mobtypes = list(/mob/living/carbon/xenomorph) + steps = list( + /datum/surgery_step/xenomorph/cut_exoskeleton, + /datum/surgery_step/xenomorph/open_exoskeleton, + /datum/surgery_step/xenomorph/severe_connections, + /datum/surgery_step/xenomorph/remove_organ, + ) + lying_required = FALSE + requires_bodypart_type = NONE + requires_bodypart = FALSE + +/datum/surgery/xenomorph/can_start(mob/user, mob/living/carbon/xenomorph/patient, obj/limb/L, obj/item/tool) + if(islarva(patient) || isfacehugger(patient)) + to_chat(user, SPAN_DANGER("This race is probably too small to have a mature organ worthy to extract...")) + return FALSE + if((patient.tier > 2 || isqueen(patient)) && !istype(tool, /obj/item/tool/surgery/scalpel/laser/advanced)) + to_chat(user, SPAN_DANGER("Chitin of this kind is too thick for an ordinary tool, you would need something special.")) + return FALSE + if(patient.stat == DEAD && !patient.organ_removed) + return TRUE + return FALSE + +/datum/surgery_step/xenomorph/cut_exoskeleton + name = "Cut Exoskeleton Carapace" + desc = "cut the carapace open" + tools = list( + /obj/item/tool/surgery/scalpel/laser/advanced = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/surgery/circular_saw = SURGERY_TOOL_MULT_IDEAL, + /obj/item/weapon/twohanded/fireaxe = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/weapon/sword/machete = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/tool/hatchet = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/tool/kitchen/knife/butcher = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/attachable/bayonet = SURGERY_TOOL_MULT_BAD_SUBSTITUTE, + ) + + time = 4 SECONDS + preop_sound = 'sound/handling/clothingrustle1.ogg' + success_sound = 'sound/handling/bandage.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/cut_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/circular_saw || tool_type == /obj/item/tool/surgery/scalpel/laser/advanced) + user.affected_message(target, + SPAN_NOTICE("You start to cut [target.caste_type] carapace apart using [tool], carefully, trying to prevent acid leaks."), + SPAN_NOTICE("[user] starts to cut your carapace apart using [tool], carefully, trying to prevent acid leaks."), + SPAN_NOTICE("[user] starts to cut [target.caste_type] carapace. [tool], carefully, trying to prevent acid leaks.")) + else + user.affected_message(target, + SPAN_NOTICE("You start to [pick("smash", "crack", "break")] [target.caste_type] carapace apart using [tool], Recklessly, with acid splashing on you!"), + SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] your carapace apart using [tool], recklessly splashing acid everywhere!"), + SPAN_NOTICE("[user] starts to [pick("smash", "crack", "break")] [target.caste_type] carapace with [tool], recklessly splashing acid everywhere!")) + //we dont really need log interact since we're working with dead body... I hope + +/datum/surgery_step/xenomorph/cut_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/circular_saw) + user.affected_message(target, + SPAN_NOTICE("You succesfully cut through [target.caste_type] carapace apart using [tool]."), + SPAN_NOTICE("[user] successfully cuts through your carapace using [tool]."), + SPAN_NOTICE("[user] successfully cuts [target.caste_type] carapace using [tool].")) + else + user.affected_message(target, + SPAN_NOTICE("You successfully destroy [target.caste_type] carapace into bits and pieces using [tool]."), + SPAN_NOTICE("[user] successfully destroys your carapace into bits and pieces using [tool]."),, + SPAN_NOTICE("[user] successfully destroys [target.caste_type] carapace into bits and pieces using [tool].")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_HIGHDANGER("You are covered in acid as you feel agonizing pain!")) + victim.apply_damage(rand(75, 125), BURN) // you WILL wear biosuit. + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + +/datum/surgery_step/xenomorph/cut_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, failing to cut [target.caste_type] carapace apart using [tool]!"), + SPAN_WARNING("[user]'s hand slips, failing to cut your carapace apart using [tool]!"), + SPAN_WARNING("[user] hand slips, failing to cut [target.caste_type] carapace using [tool]!")) + return FALSE + +/datum/surgery_step/xenomorph/open_exoskeleton + name = "Pry exoskeleton open" + desc = "open the exoskeleton in the incision" + tools = SURGERY_TOOLS_PRY_ENCASED + time = 2 SECONDS + preop_sound = 'sound/surgery/retractor1.ogg' + success_sound = 'sound/surgery/retractor2.ogg' + failure_sound = 'sound/surgery/organ1.ogg' + +/datum/surgery_step/xenomorph/open_exoskeleton/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_NOTICE("You start to pry [target.caste_type] carapace open using [tool]"), + SPAN_NOTICE("[user] starts to pry your carapace open with [tool] very carefully"), + SPAN_NOTICE("[user] starts to pry [target.caste_type] carapace open with [tool] very carefully")) + +/datum/surgery_step/xenomorph/open_exoskeleton/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/retractor) + user.affected_message(target, + SPAN_NOTICE("You hold [target.caste_type] carapace and exoskeleton open using [tool], exposing [target.caste_type] vital organs"), + SPAN_NOTICE("[user] holds your carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs "), + SPAN_NOTICE("[user] holds [target.caste_type] carapace and exoskeleton open with [tool], exposing [target.caste_type] vital organs ")) + else + user.affected_message(target, + SPAN_NOTICE("You hold [target.caste_type] carapace open using [tool] like a medieval doctor, exposing [target.caste_type] vital organs"), + SPAN_NOTICE("[user] starts to open your carapace with [tool] very carefully"), + SPAN_NOTICE("[user] starts to open [target.caste_type] carapace with [tool] very carefully")) + +/datum/surgery_step/xenomorph/open_exoskeleton/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), + SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!"), + SPAN_WARNING("[user] hand slips, letting go of [target.caste_type] carapace and exoskeleton, slaming it back into place and splashing acid everywhere!")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) + victim.apply_damage(rand(50, 75), BURN) // still dangerous + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + return FALSE + +/datum/surgery_step/xenomorph/severe_connections + name = "Sever Organ Connections" + desc = "detach tubes and connections from organ" + tools = list( + /obj/item/tool/surgery/scalpel = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/surgery/scalpel/pict_system = SURGERY_TOOL_MULT_IDEAL, + /obj/item/attachable/bayonet = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/tool/kitchen/knife = SURGERY_TOOL_MULT_SUBSTITUTE, + /obj/item/shard = SURGERY_TOOL_MULT_AWFUL, + ) + time = 4 SECONDS + preop_sound = 'sound/surgery/scalpel1.ogg' + success_sound = 'sound/surgery/scalpel2.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/severe_connections/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_NOTICE("You start to sever [target.caste_type] organ links using [tool], with confidence"), + SPAN_NOTICE("[user] start to sever your organ links using [tool], with confidence"), + SPAN_NOTICE("[user] starts to sever [target.caste_type] organ links using [tool], with confidence")) + +/datum/surgery_step/xenomorph/severe_connections/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool_type == /obj/item/tool/surgery/scalpel || tool_type == /obj/item/tool/surgery/scalpel/pict_system) + user.affected_message(target, + SPAN_NOTICE("You severed [target.caste_type] connections and links to vital organs using [tool]"), + SPAN_NOTICE("[user] severed your connections and links to vital organs using [tool]"), + SPAN_NOTICE("[user] severed [target.caste_type] connections and links to vital organs using [tool]")) + else + user.affected_message(target, + SPAN_NOTICE("You rip [target.caste_type] connections and links to vital organs apart using [tool]"), + SPAN_NOTICE("[user] rips your connections and links to vital organs apart using [tool]"), + SPAN_NOTICE("[user] rips [target.caste_type] connections and links to vital organs apart using [tool]")) + +/datum/surgery_step/xenomorph/severe_connections/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + user.affected_message(target, + SPAN_WARNING("Your hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!"), + SPAN_WARNING("[user] hand slips, damaging one of your [pick("arteries", "viens")], gushing acid blood everywhere!"), + SPAN_WARNING("[user] hand slips, damaging one of [target.caste_type] [pick("arteries", "viens")], gushing acid blood everywhere!")) + for(var/mob/living/carbon/human/victim in orange(1, target)) + if(istype(victim.wear_suit, /obj/item/clothing/suit/bio_suit) && istype(victim.head, /obj/item/clothing/head/bio_hood)) + continue + to_chat(victim, SPAN_DANGER("You are covered in blood gushing out from [target.caste_type]")) + victim.apply_damage(rand(50, 75), BURN) // not SO dangerous but still is + playsound(victim, "acid_sizzle", 25, TRUE) + animation_flash_color(victim, "#FF0000") + +/datum/surgery_step/xenomorph/remove_organ + name = "Remove Xenomorph Organ" + desc = "grab a hold of it and pull the organ out" + accept_hand = TRUE + tools = list( + /obj/item/tool/surgery/hemostat = SURGERY_TOOL_MULT_IDEAL, + /obj/item/tool/wirecutters = SURGERY_TOOL_MULT_SUBOPTIMAL, + /obj/item/tool/kitchen/utensil/fork = SURGERY_TOOL_MULT_SUBSTITUTE, + )//shamelessly taken from embryo code + time = 3 SECONDS + preop_sound = 'sound/surgery/scalpel1.ogg' + success_sound = 'sound/surgery/scalpel2.ogg' + failure_sound = 'sound/surgery/organ2.ogg' + +/datum/surgery_step/xenomorph/remove_organ/preop(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ using [tool] "), + SPAN_NOTICE("[user] start to get a firm grip on your insides using [tool]"), + SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ using [tool] ")) + else + user.affected_message(target, + SPAN_NOTICE("You start to get a firm grip on the [target.caste_type] organ"), + SPAN_NOTICE("[user] starts to get a firm grip on your insides"), + SPAN_NOTICE("[user] starts to get a firm grip on the [target.caste_type] organ")) + +/datum/surgery_step/xenomorph/remove_organ/success(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You pulled the [target.caste_type] organ out using [tool]"), + SPAN_NOTICE("[user] pulled your organ out using [tool]"), + SPAN_NOTICE("[user] pulled the [target.caste_type] organ out using [tool]")) + else + if(istype(user.wear_suit, /obj/item/clothing/suit/bio_suit)) + user.affected_message(target, + SPAN_NOTICE("You pulled the [target.caste_type] organ out!"), + SPAN_NOTICE("[user] pulles your insides out!"), + SPAN_NOTICE("[user] pulled the [target.caste_type] organ out.")) + else + user.affected_message(target, + SPAN_NOTICE("You burn your hands as you pulled the [target.caste_type] organ out!"), + SPAN_NOTICE("[user] burns their hands as they pulled your insides out!"), + SPAN_NOTICE("[user] burns [user.p_their()] hands as [user.p_they()] pulled the [target.caste_type] organ out.")) + user.emote("pain") + if(user.hand) + user.apply_damage(rand(30,50), BURN, "l_hand") + else + user.apply_damage(rand(30,50), BURN, "r_hand") + playsound(user, "acid_sizzle", 25, TRUE) + animation_flash_color(user, "#FF0000") + var/obj/item/organ/xeno/organ = locate() in target + if(!isnull(organ)) + organ.forceMove(target.loc) + target.organ_removed = TRUE + target.update_wounds() + +/datum/surgery_step/xenomorph/remove_organ/failure(mob/living/carbon/human/user, mob/living/carbon/xenomorph/target, target_zone, obj/item/tool, tool_type, datum/surgery/surgery) + if(tool) + user.affected_message(target, + SPAN_NOTICE("You fail to pull the [target.caste_type] organ out using [tool]"), + SPAN_NOTICE("[user] fails to pull your organ out using [tool]"), + SPAN_NOTICE("[user] fails to pull the [target.caste_type] organ out using [tool]")) + return FALSE + diff --git a/code/modules/teleporters/teleporter.dm b/code/modules/teleporters/teleporter.dm index d3596cf3e9..21b362d858 100644 --- a/code/modules/teleporters/teleporter.dm +++ b/code/modules/teleporters/teleporter.dm @@ -29,12 +29,12 @@ var/list/turf/source_turfs = locations[location_source] var/list/turf/dest_turfs = locations[location_dest] - if(!source_turfs || source_turfs.len == 0) + if(!LAZYLEN(source_turfs)) log_debug("Invalid source location ID [location_source] handed to teleporter [id]. Error code: TELEPORTER_3") log_admin("Invalid source location ID [location_source] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3") return FALSE - if(!dest_turfs || dest_turfs.len == 0) + if(!LAZYLEN(dest_turfs)) log_debug("Invalid destination location ID [location_dest] handed to teleporter [id]. Error code: TELEPORTER_3") log_admin("Invalid destination location ID [location_dest] handed to teleporter [id]. Tell the devs. Error code: TELEPORTER_3") return FALSE diff --git a/code/modules/teleporters/teleporter_console.dm b/code/modules/teleporters/teleporter_console.dm index 88384578a9..f1d3a74b90 100644 --- a/code/modules/teleporters/teleporter_console.dm +++ b/code/modules/teleporters/teleporter_console.dm @@ -175,7 +175,7 @@ if(SSmapping.configs[GROUND_MAP].map_name != MAP_CORSAT) // Bad style, but I'm leaving it here for now until someone wants to add a teleporter to another map return - if(GLOB.teleporters.len) // already made the damn thing + if(length(GLOB.teleporters)) // already made the damn thing return var/datum/teleporter/corsat/teleporter = new diff --git a/code/modules/tents/deployed_tents.dm b/code/modules/tents/deployed_tents.dm index 9ea06e357d..5f74337f99 100644 --- a/code/modules/tents/deployed_tents.dm +++ b/code/modules/tents/deployed_tents.dm @@ -93,7 +93,7 @@ SPAN_DANGER("You [M.slash_verb] [src]!"), null, 5, CHAT_TYPE_XENO_COMBAT) if(health <= 0) - visible_message(SPAN_BOLDWARNING("The [src] collapses!")) + visible_message(SPAN_BOLDWARNING("[src] collapses!")) qdel(src) return XENO_ATTACK_ACTION @@ -102,13 +102,13 @@ var/obj/item/tool/shovel/shovel = item if(!istype(shovel) || shovel.folded || user.action_busy) return - visible_message(SPAN_HIGHDANGER("[user] is trying to tear down the [src]")) + visible_message(SPAN_HIGHDANGER("[user] is trying to tear down [src]")) playsound(src, 'sound/items/paper_ripped.ogg', 25, 1) if(!do_after(user, 150, INTERRUPT_ALL|BEHAVIOR_IMMOBILE, BUSY_ICON_HOSTILE, src) || QDELETED(src)) return - visible_message(SPAN_HIGHDANGER("[user] tears down the [src]")) + visible_message(SPAN_HIGHDANGER("[user] tears down [src]")) playsound(src, 'sound/items/paper_ripped.ogg', 25, 1) qdel(src) diff --git a/code/modules/tents/folded_tents.dm b/code/modules/tents/folded_tents.dm index 2bed879a0a..6496810f1a 100644 --- a/code/modules/tents/folded_tents.dm +++ b/code/modules/tents/folded_tents.dm @@ -1,5 +1,5 @@ /obj/item/folded_tent - name = "Folded Abstract Tent" + name = "folded abstract tent" icon = 'icons/obj/structures/tents_folded.dmi' icon_state = "tent" w_class = SIZE_LARGE @@ -48,14 +48,14 @@ return FALSE if(turf.density) if(message_receiver) - to_chat(message_receiver, SPAN_WARNING("You cannot deploy the [src] here, something ([turf]) is in the way.")) + to_chat(message_receiver, SPAN_WARNING("You cannot deploy [src] here, something ([turf]) is in the way.")) if(display_error) new /obj/effect/overlay/temp/tent_deployment_area/error(turf) return FALSE for(var/atom/movable/atom as anything in turf) if(isliving(atom) || (atom.density && atom.can_block_movement) || istype(atom, /obj/structure/tent)) if(message_receiver) - to_chat(message_receiver, SPAN_WARNING("You cannot deploy the [src] here, something ([atom.name]) is in the way.")) + to_chat(message_receiver, SPAN_WARNING("You cannot deploy [src] here, something ([atom.name]) is in the way.")) if(display_error) new /obj/effect/overlay/temp/tent_deployment_area/error(turf) return FALSE @@ -69,8 +69,7 @@ /obj/item/folded_tent/proc/get_deployment_area(turf/ref_turf) RETURN_TYPE(/list/turf) - var/turf/block_end_turf = locate(ref_turf.x + dim_x - 1, ref_turf.y + dim_y - 1, ref_turf.z) - return block(ref_turf, block_end_turf) + return CORNER_BLOCK(ref_turf, dim_x, dim_y) /obj/item/folded_tent/attack_self(mob/living/user) . = ..() @@ -108,8 +107,8 @@ for(var/turf/turf in deployment_area) turf_overlay += new /obj/effect/overlay/temp/tent_deployment_area/casting(turf) - user.visible_message(SPAN_INFO("[user] starts deploying the [src]..."), \ - SPAN_WARNING("You start assembling the [src]... Stand still, it might take a bit to figure it out...")) + user.visible_message(SPAN_INFO("[user] starts deploying [src]..."), \ + SPAN_WARNING("You start assembling [src]... Stand still, it might take a bit to figure it out...")) if(!do_after(user, 6 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) to_chat(user, SPAN_WARNING("You were interrupted!")) for(var/gfx in turf_overlay) @@ -122,7 +121,7 @@ return unfold(user, deploy_turf) - user.visible_message(SPAN_INFO("[user] finishes deploying the [src]!"), SPAN_INFO("You finish deploying the [src]!")) + user.visible_message(SPAN_INFO("[user] finishes deploying [src]!"), SPAN_INFO("You finish deploying [src]!")) for(var/gfx in turf_overlay) qdel(gfx) qdel(src) // Success! diff --git a/code/modules/tgchat/to_chat.dm b/code/modules/tgchat/to_chat.dm index d9f96912f8..00996e341d 100644 --- a/code/modules/tgchat/to_chat.dm +++ b/code/modules/tgchat/to_chat.dm @@ -29,6 +29,14 @@ if(target == world) target = GLOB.clients + var/list/true_targets = list() + if(target == GLOB.admins) + for(var/admin in target) + var/client/admin_client = CLIENT_FROM_VAR(admin) + if(CLIENT_IS_STAFF(admin_client)) + true_targets += admin_client + target = true_targets + // Build a message var/message = list() if(type) message["type"] = type diff --git a/code/modules/tgui/states.dm b/code/modules/tgui/states.dm index e43c5c2375..d826840dc4 100644 --- a/code/modules/tgui/states.dm +++ b/code/modules/tgui/states.dm @@ -64,10 +64,10 @@ //if(!client && !HAS_TRAIT(src, TRAIT_PRESERVE_UI_WITHOUT_CLIENT)) if(!client) return UI_CLOSE - // Disable UIs if unconcious. + // Disable UIs if unconscious. else if(stat) return UI_DISABLED - // Update UIs if incapicitated but concious. + // Update UIs if incapicitated but conscious. else if(is_mob_incapacitated()) return UI_UPDATE return UI_INTERACTIVE @@ -80,13 +80,6 @@ return UI_UPDATE */ -/mob/living/silicon/robot/shared_ui_interaction(src_object) - // Disable UIs if the object isn't installed in the borg AND the borg is either locked, has a dead cell, or no cell. - var/atom/device = src_object - if((istype(device) && device.loc != src) && (!cell || cell.charge <= 0 || lockcharge)) - return UI_DISABLED - return ..() - /** * public * @@ -112,3 +105,26 @@ return UI_DISABLED // Otherwise, we got nothing. return UI_CLOSE + +/** + * public + * + * Check if in view. Can interact only if adjacent, updates within max distance, otherwise closes + * + * required src_object atom/movable The object which owns the UI. + * + * return UI_state The state of the UI. + */ +/mob/living/proc/shared_living_ui_in_view(atom/movable/src_object, viewcheck = TRUE, max_distance = 7) + // If the object is obscured, close it. + if(viewcheck && !(src_object in view(src))) + return UI_CLOSE + var/dist = get_dist(src_object, src) + // Open and interact if 1-0 tiles away. + if(dist <= 1) + return UI_INTERACTIVE + // View only if within distance. + else if(dist <= max_distance) + return UI_UPDATE + // Otherwise, we got nothing. + return UI_CLOSE diff --git a/code/modules/tgui/states/default.dm b/code/modules/tgui/states/default.dm index fa0a90f613..2ad35ef921 100644 --- a/code/modules/tgui/states/default.dm +++ b/code/modules/tgui/states/default.dm @@ -25,12 +25,3 @@ GLOBAL_DATUM_INIT(default_state, /datum/ui_state/default, new) //if(. == UI_INTERACTIVE && !src.IsAdvancedToolUser())) // unhandy living mobs can only look, not touch. // return UI_UPDATE -/mob/living/silicon/ai/default_can_use_topic(src_object) - . = shared_ui_interaction(src_object) - if(. < UI_INTERACTIVE) - return - - // The AI can interact with anything it can see nearby, or with cameras while wireless control is enabled. - if(!control_disabled && can_see(src_object)) - return UI_INTERACTIVE - return UI_CLOSE diff --git a/code/modules/tgui/states/in_view.dm b/code/modules/tgui/states/in_view.dm new file mode 100644 index 0000000000..76ab16e8c7 --- /dev/null +++ b/code/modules/tgui/states/in_view.dm @@ -0,0 +1,15 @@ +//If in view and within view distance +GLOBAL_DATUM_INIT(in_view, /datum/ui_state/in_view, new) +/datum/ui_state/in_view/can_use_topic(src_object, mob/user) + return user.in_view_can_use_topic(src_object) // Call the individual mob-overridden procs. + +/mob/proc/in_view_can_use_topic(src_object) + return UI_CLOSE // Don't allow interaction by default. + +/mob/ghost/in_view_can_use_topic(src_object) + return UI_UPDATE //ghost can just watch + +/mob/living/in_view_can_use_topic(src_object) + . = shared_ui_interaction(src_object) + if(. > UI_CLOSE && loc) //must not be in nullspace. + . = min(., shared_living_ui_in_view(src_object)) // Check the distance and view... diff --git a/code/modules/tgui/tgui_number_input.dm b/code/modules/tgui/tgui_number_input.dm index 56956cb936..24ab49b229 100644 --- a/code/modules/tgui/tgui_number_input.dm +++ b/code/modules/tgui/tgui_number_input.dm @@ -179,7 +179,7 @@ if(choice != choice) //isnan CRASH("A NaN was input into tgui input number by [ui.user]") if(integer_only) - choice = round(choice) + choice = floor(choice) if(choice > max_value) CRASH("A number greater than the max value was input into tgui input number by [ui.user]") if(choice < min_value) diff --git a/code/modules/tgui_panel/ping_relay.dm b/code/modules/tgui_panel/ping_relay.dm new file mode 100644 index 0000000000..36929a2e33 --- /dev/null +++ b/code/modules/tgui_panel/ping_relay.dm @@ -0,0 +1,52 @@ +GLOBAL_DATUM_INIT(relays_panel, /datum/ping_relay_tgui, new) + +/datum/tgui_panel/proc/ping_relays() + GLOB.relays_panel.tgui_interact(client.mob) + +/datum/ping_relay_tgui/tgui_interact(mob/user, datum/tgui/ui) + var/list/relay_ping_conf = CONFIG_GET(keyed_list/connection_relay_ping) + if(!length(relay_ping_conf)) + to_chat(user, "There are no relays configured to test.") + return + + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "PingRelaysPanel", "Relay Pings") + ui.open() + ui.set_autoupdate(FALSE) + +/datum/ping_relay_tgui/ui_state(mob/user) + return GLOB.always_state + +/datum/ping_relay_tgui/ui_static_data(mob/user) + var/list/data = list() + var/list/relay_names = list() + var/list/relay_pings = list() + var/list/relay_cons = list() + + var/list/relay_ping_conf = CONFIG_GET(keyed_list/connection_relay_ping) + var/list/relay_con_conf = CONFIG_GET(keyed_list/connection_relay_con) + for(var/key in relay_ping_conf) + // assumption: keys are the same in both configs + relay_names += key + relay_pings += relay_ping_conf[key] + relay_cons += relay_con_conf[key] + + data["relay_names"] = relay_names + data["relay_pings"] = relay_pings + data["relay_cons"] = relay_cons + return data + +/datum/ping_relay_tgui/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + + var/mob/user = ui.user + + switch(action) + if("connect") + to_chat(user, "Now connecting via [params["desc"]]. Please wait..."); + user << link(params["url"]) + ui.close() + return diff --git a/code/modules/tgui_panel/telemetry.dm b/code/modules/tgui_panel/telemetry.dm index 4ef1f06bfa..bd49596aa1 100644 --- a/code/modules/tgui_panel/telemetry.dm +++ b/code/modules/tgui_panel/telemetry.dm @@ -85,7 +85,7 @@ var/list/row = telemetry_connections[i] // Check for a malformed history object - if (!row || row.len < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"])) + if (LAZYLEN(row) < 3 || (!row["ckey"] || !row["address"] || !row["computer_id"])) continue /* TODO - Reintroduce this when we get a proper round ID tracking, diff --git a/code/modules/tgui_panel/tgui_panel.dm b/code/modules/tgui_panel/tgui_panel.dm index f33f190d80..25338a4a3b 100644 --- a/code/modules/tgui_panel/tgui_panel.dm +++ b/code/modules/tgui_panel/tgui_panel.dm @@ -92,6 +92,9 @@ if(type == "telemetry") analyze_telemetry(payload) return TRUE + if(type == "act/ping_relays") + ping_relays() + return TRUE /** * public diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 9ed3183e5b..6f2b63e5b9 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -41,7 +41,7 @@ /// Intended to be used in the manner of `TEST_FOCUS(/datum/unit_test/math)` #define TEST_FOCUS(test_path) ##test_path { focus = TRUE; } -/// Logs a noticable message on GitHub, but will not mark as an error. +/// Logs a noticeable message on GitHub, but will not mark as an error. /// Use this when something shouldn't happen and is of note, but shouldn't block CI. /// Does not mark the test as failed. #define TEST_NOTICE(source, message) source.log_for_test((##message), "notice", __FILE__, __LINE__) @@ -74,19 +74,24 @@ /// A trait source when adding traits through unit tests #define TRAIT_SOURCE_UNIT_TESTS "unit_tests" +// Unit tests #include "autowiki.dm" +#include "check_runtimes.dm" #include "create_and_destroy.dm" -#include "focus_only_tests.dm" +#include "emote_panels.dm" #include "missing_icons.dm" #include "resist.dm" +#include "spawn_humans.dm" #include "spritesheets.dm" #include "subsystem_init.dm" #include "tgui_create_message.dm" #include "timer_sanity.dm" +#include "tutorials.dm" +#include "xeno_strains.dm" + +// Unit tests backend +#include "focus_only_tests.dm" #include "unit_test.dm" -#include "spawn_humans.dm" -#include "check_runtimes.dm" -#include "emote_panels.dm" #undef TEST_ASSERT #undef TEST_ASSERT_EQUAL diff --git a/code/modules/unit_tests/create_and_destroy.dm b/code/modules/unit_tests/create_and_destroy.dm index 55711ba7ec..7c829ad13e 100644 --- a/code/modules/unit_tests/create_and_destroy.dm +++ b/code/modules/unit_tests/create_and_destroy.dm @@ -31,7 +31,6 @@ GLOBAL_VAR_INIT(running_create_and_destroy, FALSE) // fuck interiors ignore += typesof(/obj/vehicle) ignore += typesof(/obj/effect/vehicle_spawner) - ignore += typesof(/obj/structure/closet/fancy) // Always ought to have an associated escape menu. Any references it could possibly hold would need one regardless. ignore += subtypesof(/atom/movable/screen/escape_menu) diff --git a/code/modules/unit_tests/tutorials.dm b/code/modules/unit_tests/tutorials.dm new file mode 100644 index 0000000000..d835a4f272 --- /dev/null +++ b/code/modules/unit_tests/tutorials.dm @@ -0,0 +1,19 @@ +/datum/unit_test/tutorials + +/datum/unit_test/tutorials/Run() + var/datum/tutorial/base_path = /datum/tutorial + for(var/datum/tutorial/tutorial_path as anything in subtypesof(base_path)) + if(initial(tutorial_path.parent_path) == tutorial_path) + continue + + // Make sure these variables are overridden on any subtypes. + TEST_ASSERT_NOTEQUAL(initial(tutorial_path.name), initial(base_path.name), + "[tutorial_path] does not have a name set.") + TEST_ASSERT_NOTEQUAL(initial(tutorial_path.tutorial_id), initial(base_path.tutorial_id), + "[tutorial_path] does not have a tutorial_id set.") + TEST_ASSERT_NOTEQUAL(initial(tutorial_path.desc), initial(base_path.desc), + "[tutorial_path] does not have a desc set.") + TEST_ASSERT_NOTEQUAL(initial(tutorial_path.icon_state), initial(base_path.icon_state), + "[tutorial_path] does not have an icon_state set.") + +// TODO: Add a test verifying that a basic tutorial can be started and completed. (Requires unit test client handling) diff --git a/code/modules/unit_tests/unit_test.dm b/code/modules/unit_tests/unit_test.dm index 30eae6eef4..cf02cdf621 100644 --- a/code/modules/unit_tests/unit_test.dm +++ b/code/modules/unit_tests/unit_test.dm @@ -64,7 +64,7 @@ GLOBAL_VAR_INIT(focused_test, focused_test()) /datum/unit_test/Destroy() QDEL_LIST(allocated) // clear the test area - for (var/turf/turf in block(locate(1, 1, run_loc_floor_bottom_left.z), locate(world.maxx, world.maxy, run_loc_floor_bottom_left.z))) + for (var/turf/turf as anything in Z_TURFS(run_loc_floor_bottom_left.z)) for (var/content in turf.contents) if (istype(content, /obj/effect/landmark)) continue @@ -87,7 +87,7 @@ GLOBAL_VAR_INIT(focused_test, focused_test()) /datum/unit_test/proc/allocate(type, ...) var/list/arguments = args.Copy(2) if(ispath(type, /atom)) - if (!arguments.len) + if (!length(arguments)) arguments = list(run_loc_floor_bottom_left) else if (arguments[1] == null) arguments[1] = run_loc_floor_bottom_left diff --git a/code/modules/unit_tests/xeno_strains.dm b/code/modules/unit_tests/xeno_strains.dm new file mode 100644 index 0000000000..6609f977ef --- /dev/null +++ b/code/modules/unit_tests/xeno_strains.dm @@ -0,0 +1,59 @@ +/datum/unit_test/xeno_strains + +/datum/unit_test/xeno_strains/Run() + for(var/mob/living/carbon/xenomorph/caste_mob as anything in subtypesof(/mob/living/carbon/xenomorph)) + var/datum/caste_datum/caste_datum = GLOB.xeno_datum_list[initial(caste_mob.caste_type)] + if(!caste_datum) + // not really strain related but may as well have this in here + TEST_FAIL("[caste_mob] has no `/datum/caste_datum`! (Possible mismatch of `caste_type`)") + continue + + for(var/datum/xeno_strain/strain_path as anything in caste_datum.available_strains) + // Check for these, but test the strain either way. + if(!initial(strain_path.name)) + TEST_FAIL("[strain_path] has no name!") + if(!initial(strain_path.description)) + TEST_FAIL("[strain_path] has no description!") + + test_strain(caste_mob, strain_path) + +/datum/unit_test/xeno_strains/proc/test_strain(mob_path, strain_path) + var/mob/living/carbon/xenomorph/fred = allocate(mob_path) + var/datum/xeno_strain/strain = new strain_path() + + strain._add_to_xeno(fred) + + // Actions which should have been removed. + var/list/removed_actions = strain.actions_to_remove + // Exclude any actions which are in both strain lists (re-added afterwards). + removed_actions -= (removed_actions & strain.actions_to_add) + + // Actions which should have been added. + var/list/added_actions = strain.actions_to_add.Copy() + + for(var/datum/action/action as anything in fred.actions) + if(action.type in removed_actions) + TEST_FAIL("[strain.type] failed to remove [action.type] when added to a Xenomorph!") + if(action.type in added_actions) + // Remove this action from `added_actions`. + added_actions -= action.type + // If there's anything left in `added_actions`, then something wasn't given to the xeno. + if(length(added_actions)) + TEST_FAIL("[strain.type] failed to give the following actions when added to a Xenomorph: [json_encode(added_actions)]") + + // If the strain has a `/datum/behavior_delegate`, but it wasn't applied to the xeno. + if(strain.behavior_delegate_type && !istype(fred.behavior_delegate, strain.behavior_delegate_type)) + TEST_FAIL("[strain.type]'s behavior_delegate was not applied when added to a Xenomorph!") + + // If the strain doesn't have a custom icon state set. + if(!strain.icon_state_prefix) + // Check if any of the sprites in the xeno's .dmi file belong to this strain. + // If there are any, it probably means that someone just forgot to add an `icon_state_prefix` to the strain. + for(var/icon_state in icon_states(fred.icon)) + if(string_starts_with(icon_state, strain.name)) // (This won't catch everything, but it should get the easy ones.) + TEST_FAIL("[fred.icon] contains sprites for [strain.type] that aren't being used!") + break + + // If the strain *does* have a custom icon state set, but the xeno's sprite wasn't changed to it. + else if(!string_starts_with(fred.icon_state, strain.icon_state_prefix)) + TEST_FAIL("[strain.type]'s icon_state_prefix was not applied when added to a Xenomorph!") diff --git a/code/modules/vehicles/apc/apc.dm b/code/modules/vehicles/apc/apc.dm index f9a6e47dcd..bb7d819c7d 100644 --- a/code/modules/vehicles/apc/apc.dm +++ b/code/modules/vehicles/apc/apc.dm @@ -87,7 +87,7 @@ GLOBAL_LIST_EMPTY(command_apc_list) /obj/vehicle/multitile/apc/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS diff --git a/code/modules/vehicles/apc/apc_command.dm b/code/modules/vehicles/apc/apc_command.dm index 998fd3e19f..29939bbba3 100644 --- a/code/modules/vehicles/apc/apc_command.dm +++ b/code/modules/vehicles/apc/apc_command.dm @@ -43,8 +43,6 @@ return ..() /obj/vehicle/multitile/apc/command/process() - . = ..() - var/turf/apc_turf = get_turf(src) if(health == 0 || !visible_in_tacmap || !is_ground_level(apc_turf.z)) return @@ -70,7 +68,7 @@ /obj/vehicle/multitile/apc/command/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS @@ -188,9 +186,9 @@ //stole my own code from techpod_vendor /obj/vehicle/multitile/apc/command/proc/get_access_permission(mob/living/carbon/human/user) - if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || master_mode == GAMEMODE_WHISKEY_OUTPOST) + if(SSticker.mode == GAMEMODE_WHISKEY_OUTPOST || GLOB.master_mode == GAMEMODE_WHISKEY_OUTPOST) return TRUE - else if(SSticker.mode == "Distress Signal" || master_mode == "Distress Signal") + else if(SSticker.mode == "Distress Signal" || GLOB.master_mode == "Distress Signal") if(techpod_access_settings_override) return TRUE else if(user.get_target_lock(techpod_faction_requirement)) diff --git a/code/modules/vehicles/apc/apc_medical.dm b/code/modules/vehicles/apc/apc_medical.dm index c3b3a16bd8..987ebf8a9e 100644 --- a/code/modules/vehicles/apc/apc_medical.dm +++ b/code/modules/vehicles/apc/apc_medical.dm @@ -32,7 +32,7 @@ /obj/vehicle/multitile/apc/medical/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS diff --git a/code/modules/vehicles/apc/interior.dm b/code/modules/vehicles/apc/interior.dm index 010ea9ac2c..f665ea21ad 100644 --- a/code/modules/vehicles/apc/interior.dm +++ b/code/modules/vehicles/apc/interior.dm @@ -73,7 +73,7 @@ if(!SG_seat) SG_seat = locate() in get_turf(src) if(!SG_seat) - . += SPAN_WARNING("ERROR HAS OCCURED! NO SEAT FOUND, TELL A DEV!") + . += SPAN_WARNING("ERROR HAS OCCURRED! NO SEAT FOUND, TELL A DEV!") return for(var/obj/item/hardpoint/special/firing_port_weapon/FPW in SG_seat.vehicle.hardpoints) if(FPW.allowed_seat == SG_seat.seat) @@ -88,7 +88,7 @@ if(!SG_seat) SG_seat = locate() in get_turf(src) if(!SG_seat) - to_chat(H, SPAN_WARNING("ERROR HAS OCCURED! NO SEAT FOUND, TELL A DEV!")) + to_chat(H, SPAN_WARNING("ERROR HAS OCCURRED! NO SEAT FOUND, TELL A DEV!")) return if(!SG_seat.buckled_mob && !H.buckled) SG_seat.do_buckle(H, H) diff --git a/code/modules/vehicles/arc/arc.dm b/code/modules/vehicles/arc/arc.dm new file mode 100644 index 0000000000..bd7ebe4360 --- /dev/null +++ b/code/modules/vehicles/arc/arc.dm @@ -0,0 +1,272 @@ +/obj/vehicle/multitile/arc + name = "\improper M540-B Armored Recon Carrier" + desc = "An M540-B Armored Recon Carrier. A lightly armored reconnaissance and intelligence vehicle. Entrances on the sides." + + icon = 'icons/obj/vehicles/arc.dmi' + icon_state = "arc_base" + pixel_x = -48 + pixel_y = -48 + + bound_width = 96 + bound_height = 96 + + bound_x = -32 + bound_y = -32 + + health = 800 + + interior_map = /datum/map_template/interior/arc + + passengers_slots = 2 // 5 total. Reserved slots are added to passenger slots. + xenos_slots = 4 + + entrances = list( + "right" = list(-2, 0), + ) + + entrance_speed = 0.5 SECONDS + + required_skill = SKILL_VEHICLE_LARGE + + movement_sound = 'sound/vehicles/tank_driving.ogg' + + luminosity = 7 + + hardpoints_allowed = list( + /obj/item/hardpoint/locomotion/arc_wheels, + /obj/item/hardpoint/primary/arc_sentry, + /obj/item/hardpoint/support/arc_antenna, + ) + + seats = list( + VEHICLE_DRIVER = null, + ) + + active_hp = list( + VEHICLE_DRIVER = null, + ) + + vehicle_flags = VEHICLE_CLASS_LIGHT + + mob_size_required_to_hit = MOB_SIZE_XENO + + dmg_multipliers = list( + "all" = 1, + "acid" = 1.8, + "slash" = 1.1, + "bullet" = 0.6, + "explosive" = 0.8, + "blunt" = 0.8, + "abstract" = 1, + ) + + move_max_momentum = 2.2 + move_momentum_build_factor = 1.5 + move_turn_momentum_loss_factor = 0.8 + + vehicle_ram_multiplier = VEHICLE_TRAMPLE_DAMAGE_APC_REDUCTION + + /// If the ARC has its antenna up, making it unable to move but enabling the turret and sensor wallhack + var/antenna_deployed = FALSE + /// How long it takes to deploy or retract the antenna + var/antenna_toggle_time = 10 SECONDS + /// Range of the ARC's xenomorph wallhacks + var/sensor_radius = 45 + /// weakrefs of xenos temporarily added to the marine minimap + var/list/minimap_added = list() + +/obj/vehicle/multitile/arc/Initialize() + . = ..() + + var/turf/gotten_turf = get_turf(src) + if(gotten_turf?.z) + SSminimaps.add_marker(src, gotten_turf.z, MINIMAP_FLAG_USCM, "arc", 'icons/ui_icons/map_blips_large.dmi') + + RegisterSignal(src, COMSIG_ARC_ANTENNA_TOGGLED, PROC_REF(on_antenna_toggle)) + +/obj/vehicle/multitile/arc/crew_mousedown(datum/source, atom/object, turf/location, control, params) + var/list/modifiers = params2list(params) + if(modifiers[SHIFT_CLICK] || modifiers[MIDDLE_CLICK] || modifiers[RIGHT_CLICK]) //don't step on examine, point, etc + return + + switch(get_mob_seat(source)) + if(VEHICLE_DRIVER) + if(modifiers[LEFT_CLICK] && modifiers[CTRL_CLICK]) + activate_horn() + +/obj/vehicle/multitile/arc/get_examine_text(mob/user) + . = ..() + if(!isxeno(user)) + return + + if(health > 0) + . += SPAN_XENO("[src] can be crawled under once destroyed.") + else + . += SPAN_XENO("[src] can be crawled under by dragging our sprite to it.") + +/obj/vehicle/multitile/arc/proc/on_antenna_toggle(datum/source) + SIGNAL_HANDLER + + if(antenna_deployed) + START_PROCESSING(SSslowobj, src) + + else + STOP_PROCESSING(SSslowobj, src) + +/obj/vehicle/multitile/arc/process() + var/turf/arc_turf = get_turf(src) + if((health <= 0) || !visible_in_tacmap || !is_ground_level(arc_turf.z)) + return + + var/obj/item/hardpoint/support/arc_antenna/antenna = locate() in hardpoints + if(!antenna || (antenna.health <= 0)) + for(var/datum/weakref/xeno as anything in minimap_added) + SSminimaps.remove_marker(xeno.resolve()) + minimap_added.Remove(xeno) + return + + for(var/mob/living/carbon/xenomorph/current_xeno as anything in GLOB.living_xeno_list) + var/turf/xeno_turf = get_turf(current_xeno) + if(!is_ground_level(xeno_turf.z)) + continue + + var/datum/weakref/xeno_weakref = WEAKREF(current_xeno) + + if(get_dist(src, current_xeno) <= sensor_radius) + if(xeno_weakref in minimap_added) + continue + + SSminimaps.remove_marker(current_xeno) + current_xeno.add_minimap_marker(MINIMAP_FLAG_USCM|MINIMAP_FLAG_XENO) + minimap_added += xeno_weakref + else if(xeno_weakref in minimap_added) + SSminimaps.remove_marker(current_xeno) + current_xeno.add_minimap_marker() + minimap_added -= xeno_weakref + +/obj/vehicle/multitile/arc/relaymove(mob/user, direction) + if(antenna_deployed) + return FALSE + + return ..() + +/obj/vehicle/multitile/arc/load_role_reserved_slots() + var/datum/role_reserved_slots/RRS = new + RRS.category_name = "CIC Officer" + RRS.roles = list(JOB_SO, JOB_SEA, JOB_XO, JOB_CO, JOB_GENERAL) + RRS.total = 2 + role_reserved_slots += RRS + + RRS = new + RRS.category_name = "Intelligence Officer" + RRS.roles = list(JOB_INTEL) + RRS.total = 1 + role_reserved_slots += RRS + +/obj/vehicle/multitile/arc/set_seated_mob(seat, mob/living/M) + . = ..() + if(!.) + return + + give_action(M, /datum/action/human_action/toggle_arc_antenna) + +/obj/vehicle/multitile/arc/add_seated_verbs(mob/living/M, seat) + if(!M.client) + return + add_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/arc/proc/open_arc_controls_guide, + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/activate_horn, + /obj/vehicle/multitile/proc/name_vehicle, + /obj/vehicle/multitile/arc/proc/toggle_antenna, + )) + +/obj/vehicle/multitile/arc/remove_seated_verbs(mob/living/M, seat) + if(!M.client) + return + remove_verb(M.client, list( + /obj/vehicle/multitile/proc/get_status_info, + /obj/vehicle/multitile/arc/proc/open_arc_controls_guide, + /obj/vehicle/multitile/proc/toggle_door_lock, + /obj/vehicle/multitile/proc/activate_horn, + /obj/vehicle/multitile/proc/name_vehicle, + /obj/vehicle/multitile/arc/proc/toggle_antenna, + )) + SStgui.close_user_uis(M, src) + +/obj/vehicle/multitile/arc/initialize_cameras(change_tag = FALSE) + if(!camera) + camera = new /obj/structure/machinery/camera/vehicle(src) + if(change_tag) + camera.c_tag = "#[rand(1,100)] M540-B \"[nickname]\" ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + else + camera.c_tag = "#[rand(1,100)] M540-B ARC" + if(camera_int) + camera_int.c_tag = camera.c_tag + " interior" + +/obj/vehicle/multitile/arc/MouseDrop_T(mob/M, mob/user) + . = ..() + if((M != user) || !isxeno(user)) + return + + if(health > 0) + to_chat(user, SPAN_XENO("We can't go under [src] until it is destroyed!")) + return + + var/turf/current_turf = get_turf(user) + var/dir_to_go = get_dir(current_turf, src) + for(var/i in 1 to 3) + current_turf = get_step(current_turf, dir_to_go) + if(!(current_turf in locs)) + break + + if(current_turf.density) + to_chat(user, SPAN_XENO("The path under [src] is obstructed!")) + return + + // Now we check to make sure the turf on the other side of the ARC isn't dense too + current_turf = get_step(current_turf, dir_to_go) + if(current_turf.density) + to_chat(user, SPAN_XENO("The path under [src] is obstructed!")) + return + + to_chat(user, SPAN_XENO("We begin to crawl under [src]...")) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + to_chat(user, SPAN_XENO("We stop crawling under [src].")) + return + + user.forceMove(current_turf) + to_chat(user, SPAN_XENO("We crawl to the other side of [src].")) + +/* +** PRESETS SPAWNERS +*/ +/* +/obj/effect/vehicle_spawner/arc + name = "ARC Transport Spawner" + icon = 'icons/obj/vehicles/apc.dmi' + icon_state = "apc_base" + pixel_x = -48 + pixel_y = -48 + +/obj/effect/vehicle_spawner/arc/Initialize() + . = ..() + spawn_vehicle() + return INITIALIZE_HINT_QDEL + +/obj/effect/vehicle_spawner/arc/spawn_vehicle() + var/obj/vehicle/multitile/arc/ARC = new (loc) + + load_misc(ARC) + load_hardpoints(ARC) + handle_direction(ARC) + ARC.update_icon() + +/obj/effect/vehicle_spawner/arc/load_hardpoints(obj/vehicle/multitile/arc/vehicle) + vehicle.add_hardpoint(new /obj/item/hardpoint/locomotion/arc_wheels) + vehicle.add_hardpoint(new /obj/item/hardpoint/primary/arc_sentry) + vehicle.add_hardpoint(new /obj/item/hardpoint/support/arc_antenna) +*/ diff --git a/code/modules/vehicles/arc/interior.dm b/code/modules/vehicles/arc/interior.dm new file mode 100644 index 0000000000..c8d7d0934e --- /dev/null +++ b/code/modules/vehicles/arc/interior.dm @@ -0,0 +1,13 @@ +/obj/structure/interior_exit/vehicle/arc + name = "ARC side door" + icon = 'icons/obj/vehicles/interiors/arc.dmi' + icon_state = "exit_door" + +/obj/structure/prop/vehicle/arc + name = "ARC chassis" + + icon = 'icons/obj/vehicles/interiors/arc_chassis.dmi' + icon_state = "arc_chassis" + layer = ABOVE_TURF_LAYER + mouse_opacity = FALSE + diff --git a/code/modules/vehicles/arc/verbs.dm b/code/modules/vehicles/arc/verbs.dm new file mode 100644 index 0000000000..3b866236e7 --- /dev/null +++ b/code/modules/vehicles/arc/verbs.dm @@ -0,0 +1,121 @@ +/obj/vehicle/multitile/arc/proc/toggle_antenna(mob/toggler) + set name = "Toggle Sensor Antenna" + set desc = "Raises or lowers the external sensor antenna. While raised, the ARC cannot move." + set category = "Vehicle" + + var/mob/user = toggler || usr + if(!user || !istype(user)) + return + + var/obj/vehicle/multitile/arc/vehicle = user.interactee + if(!istype(vehicle)) + return + + var/seat + for(var/vehicle_seat in vehicle.seats) + if(vehicle.seats[vehicle_seat] == user) + seat = vehicle_seat + break + + if(!seat) + return + + if(vehicle.health < initial(vehicle.health) * 0.5) + to_chat(user, SPAN_WARNING("[vehicle]'s hull is too damaged to operate!")) + return + + var/obj/item/hardpoint/support/arc_antenna/antenna = locate() in vehicle.hardpoints + if(!antenna) + to_chat(user, SPAN_WARNING("[vehicle] has no antenna mounted!")) + return + + if(antenna.deploying) + return + + if(antenna.health <= 0) + to_chat(user, SPAN_WARNING("[antenna] is broken!")) + return + + if(vehicle.antenna_deployed) + to_chat(user, SPAN_NOTICE("You begin to retract [antenna]...")) + antenna.deploying = TRUE + if(!do_after(user, max(vehicle.antenna_toggle_time - antenna.deploy_animation_time, 1 SECONDS), target = vehicle)) + to_chat(user, SPAN_NOTICE("You stop retracting [antenna].")) + antenna.deploying = FALSE + return + + antenna.retract_antenna() + addtimer(CALLBACK(vehicle, PROC_REF(finish_antenna_retract), user), antenna.deploy_animation_time) + + else + to_chat(user, SPAN_NOTICE("You begin to extend [antenna]...")) + antenna.deploying = TRUE + if(!do_after(user, max(vehicle.antenna_toggle_time - antenna.deploy_animation_time, 1 SECONDS), target = vehicle)) + to_chat(user, SPAN_NOTICE("You stop extending [antenna].")) + antenna.deploying = FALSE + return + + antenna.deploy_antenna() + addtimer(CALLBACK(vehicle, PROC_REF(finish_antenna_deploy), user), antenna.deploy_animation_time) + +/obj/vehicle/multitile/arc/proc/finish_antenna_retract(mob/user) + var/obj/item/hardpoint/support/arc_antenna/antenna = locate() in hardpoints + if(!antenna) + antenna.deploying = FALSE + return + + if(user) + to_chat(user, SPAN_NOTICE("You retract [antenna], enabling the ARC to move again.")) + playsound(user, 'sound/machines/hydraulics_2.ogg', 80, TRUE) + antenna_deployed = !antenna_deployed + antenna.deploying = FALSE + update_icon() + SEND_SIGNAL(src, COMSIG_ARC_ANTENNA_TOGGLED) + +/obj/vehicle/multitile/arc/proc/finish_antenna_deploy(mob/user) + var/obj/item/hardpoint/support/arc_antenna/antenna = locate() in hardpoints + if(!antenna) + antenna.deploying = FALSE + return + + if(user) + to_chat(user, SPAN_NOTICE("You extend [antenna], locking the ARC in place.")) + playsound(user, 'sound/machines/hydraulics_2.ogg', 80, TRUE) + antenna_deployed = !antenna_deployed + antenna.deploying = FALSE + update_icon() + SEND_SIGNAL(src, COMSIG_ARC_ANTENNA_TOGGLED) + +/obj/vehicle/multitile/arc/proc/open_arc_controls_guide() + set name = "Vehicle Controls Guide" + set desc = "MANDATORY FOR FIRST PLAY AS VEHICLE CREWMAN OR AFTER UPDATES." + set category = "Vehicle" + + var/mob/user = usr + if(!istype(user)) + return + + var/obj/vehicle/multitile/arc/vehicle = user.interactee + if(!istype(vehicle)) + return + + var/seat + for(var/vehicle_seat in vehicle.seats) + if(vehicle.seats[vehicle_seat] == user) + seat = vehicle_seat + break + + if(!seat) + return + + var/dat = "Common verbs:
          \ + 1. \"G: Name Vehicle\" - used to add a custom name to the vehicle. Single use. 26 characters maximum.
          \ + 2. \"I: Get Status Info\" - brings up \"Vehicle Status Info\" window with all available information about your vehicle.
          \ + 3. \"G: Toggle Sensor Antenna\" - extend or retract the ARC's sensor antenna. While extended, all unknown lifeforms within a large range can be seen by all on the tacmap, but the ARC cannot move. Additionally enables the automated RE700 cannon.
          \ + Driver verbs:
          1. \"G: Activate Horn\" - activates vehicle horn. Keep in mind, that vehicle horn is very loud and can be heard from afar by both allies and foes.
          \ + 2. \"G: Toggle Door Locks\" - toggles vehicle's access restrictions. Crewman, Brig and Command accesses bypass these restrictions.
          \ + Driver shortcuts:
          1. \"CTRL + Click\" - activates vehicle horn.
          " + + show_browser(user, dat, "Vehicle Controls Guide", "vehicle_help", "size=900x500") + onclose(user, "vehicle_help") + return diff --git a/code/modules/vehicles/hardpoints/armor/ballistic.dm b/code/modules/vehicles/hardpoints/armor/ballistic.dm index 7fa19abf5b..55f0f6bc4e 100644 --- a/code/modules/vehicles/hardpoints/armor/ballistic.dm +++ b/code/modules/vehicles/hardpoints/armor/ballistic.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/ballistic - name = "Ballistic Armor" + name = "\improper Ballistic Armor" desc = "Protects the vehicle from high-penetration weapons" icon_state = "ballistic_armor" diff --git a/code/modules/vehicles/hardpoints/armor/caustic.dm b/code/modules/vehicles/hardpoints/armor/caustic.dm index 34bcf4c3b2..ac97d3da25 100644 --- a/code/modules/vehicles/hardpoints/armor/caustic.dm +++ b/code/modules/vehicles/hardpoints/armor/caustic.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/caustic - name = "Caustic Armor" + name = "\improper Caustic Armor" desc = "Protects vehicles from most types of acid" icon_state = "caustic_armor" diff --git a/code/modules/vehicles/hardpoints/armor/concussive.dm b/code/modules/vehicles/hardpoints/armor/concussive.dm index a2e674255f..6da39b9c41 100644 --- a/code/modules/vehicles/hardpoints/armor/concussive.dm +++ b/code/modules/vehicles/hardpoints/armor/concussive.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/concussive - name = "Concussive Armor" + name = "\improper Concussive Armor" desc = "Protects the vehicle from high-impact weapons" icon_state = "concussive_armor" diff --git a/code/modules/vehicles/hardpoints/armor/paladin.dm b/code/modules/vehicles/hardpoints/armor/paladin.dm index 7635ffca74..fb131d4715 100644 --- a/code/modules/vehicles/hardpoints/armor/paladin.dm +++ b/code/modules/vehicles/hardpoints/armor/paladin.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/paladin - name = "Paladin Armor" + name = "\improper Paladin Armor" desc = "Protects the vehicle from large incoming explosive projectiles" icon_state = "paladin_armor" diff --git a/code/modules/vehicles/hardpoints/armor/snowplow.dm b/code/modules/vehicles/hardpoints/armor/snowplow.dm index 6722dc009d..252b214cf3 100644 --- a/code/modules/vehicles/hardpoints/armor/snowplow.dm +++ b/code/modules/vehicles/hardpoints/armor/snowplow.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/armor/snowplow - name = "Snowplow" + name = "\improper Snowplow" desc = "Clears a path in the snow for friendlies" icon_state = "snowplow" diff --git a/code/modules/vehicles/hardpoints/hardpoint.dm b/code/modules/vehicles/hardpoints/hardpoint.dm index 44875dddb0..f0b5197597 100644 --- a/code/modules/vehicles/hardpoints/hardpoint.dm +++ b/code/modules/vehicles/hardpoints/hardpoint.dm @@ -125,11 +125,19 @@ /// Currently selected target to fire at. Set with set_target(). var/atom/target + /// The type of projectile to fire + var/projectile_type = /obj/projectile //----------------------------- //------GENERAL PROCS---------- //----------------------------- +/obj/item/hardpoint/p_s(temp_gender) + if(!temp_gender) + temp_gender = gender + if(temp_gender == PLURAL) + . = "s" + /obj/item/hardpoint/Initialize() . = ..() set_bullet_traits() @@ -149,7 +157,7 @@ if(owner || indestructible) return - health = max(0, health - severity / 2) + take_damage(severity / 2) if(health <= 0) visible_message(SPAN_WARNING("\The [src] disintegrates into useless pile of scrap under the damage it suffered.")) deconstruct(TRUE) @@ -159,7 +167,7 @@ return /obj/item/hardpoint/proc/generate_bullet(mob/user, turf/origin_turf) - var/obj/projectile/P = new(origin_turf, create_cause_data(initial(name), user)) + var/obj/projectile/P = new projectile_type(origin_turf, create_cause_data(initial(name), user)) P.generate_bullet(new ammo.default_ammo) // Apply bullet traits from gun for(var/entry in traits_to_give) @@ -180,7 +188,14 @@ return TRUE /obj/item/hardpoint/proc/take_damage(damage) + if(health <= 0) + return health = max(0, health - damage * damage_multiplier) + if(!health) + on_destroy() + +/obj/item/hardpoint/proc/on_destroy() + return /obj/item/hardpoint/proc/is_activatable() if(health <= 0) @@ -292,7 +307,7 @@ if(health <= 0) data["health"] = null else - data["health"] = round(get_integrity_percent()) + data["health"] = floor(get_integrity_percent()) if(ammo) data["uses_ammo"] = TRUE @@ -321,7 +336,7 @@ . = ..() if(health <= 0) . += "It's busted!" - else if(isobserver(user) || (ishuman(user) && (skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) || skillcheck(user, SKILL_VEHICLE, SKILL_VEHICLE_CREWMAN)))) + else if(isobserver(user) || (ishuman(user) && (skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE) || skillcheck(user, SKILL_VEHICLE, SKILL_VEHICLE_CREWMAN)))) . += "It's at [round(get_integrity_percent(), 1)]% integrity!" //reloading hardpoint - take mag from backup clips and replace current ammo with it. Will change in future. Called via weapons loader @@ -452,13 +467,13 @@ health += initial(health)/100 * (amount_fixed / amount_fixed_adjustment) if(health >= initial(health)) health = initial(health) - user.visible_message(SPAN_NOTICE("[user] finishes repairing \the [name]."), SPAN_NOTICE("You finish repairing \the [name]. The integrity of the module is at [SPAN_HELPFUL(round(get_integrity_percent()))]%.")) + user.visible_message(SPAN_NOTICE("[user] finishes repairing \the [name]."), SPAN_NOTICE("You finish repairing \the [name]. The integrity of the module is at [SPAN_HELPFUL(floor(get_integrity_percent()))]%.")) being_repaired = FALSE return - to_chat(user, SPAN_NOTICE("The integrity of \the [src] is now at [SPAN_HELPFUL(round(get_integrity_percent()))]%.")) + to_chat(user, SPAN_NOTICE("The integrity of \the [src] is now at [SPAN_HELPFUL(floor(get_integrity_percent()))]%.")) being_repaired = FALSE - user.visible_message(SPAN_NOTICE("[user] stops repairing \the [name]."), SPAN_NOTICE("You stop repairing \the [name]. The integrity of the module is at [SPAN_HELPFUL(round(get_integrity_percent()))]%.")) + user.visible_message(SPAN_NOTICE("[user] stops repairing \the [name]."), SPAN_NOTICE("You stop repairing \the [name]. The integrity of the module is at [SPAN_HELPFUL(floor(get_integrity_percent()))]%.")) return /// Setter proc for the automatic firing flag. @@ -542,7 +557,6 @@ /// Wrapper proc for the autofire system to ensure the important args aren't null. /obj/item/hardpoint/proc/fire_wrapper(atom/target, mob/living/user, params) - SHOULD_NOT_OVERRIDE(TRUE) if(!target) target = src.target if(!user) @@ -645,7 +659,7 @@ if(muzzle_turf == target_turf) return FALSE - var/angle_diff = SIMPLIFY_DEGREES(dir2angle(dir) - get_angle(muzzle_turf, target_turf)) + var/angle_diff = (dir2angle(dir) - Get_Angle(muzzle_turf, target_turf)) %% 360 if(angle_diff < -180) angle_diff += 360 else if(angle_diff > 180) @@ -673,8 +687,10 @@ /obj/item/hardpoint/proc/get_icon_image(x_offset, y_offset, new_dir) var/is_broken = health <= 0 var/image/I = image(icon = disp_icon, icon_state = "[disp_icon_state]_[is_broken ? "1" : "0"]", pixel_x = x_offset, pixel_y = y_offset, dir = new_dir) - switch(round((health / initial(health)) * 100)) - if(0 to 20) + switch(floor((health / initial(health)) * 100)) + if(0) + I.color = "#888888" + if(1 to 20) I.color = "#4e4e4e" if(21 to 40) I.color = "#6e6e6e" @@ -749,3 +765,11 @@ /obj/item/hardpoint/get_applying_acid_time() return 10 SECONDS //you are not supposed to be able to easily combat-melt irreplaceable things. + +/// Proc to be overridden if you want to have special conditions preventing the removal of the hardpoint. Add chat messages in this proc if you want to tell the player why +/obj/item/hardpoint/proc/can_be_removed(mob/remover) + SHOULD_CALL_PARENT(TRUE) + + if(remover.stat > CONSCIOUS) + return FALSE + return TRUE diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/arc_sentry_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/arc_sentry_ammo.dm new file mode 100644 index 0000000000..f9c28e1515 --- /dev/null +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/arc_sentry_ammo.dm @@ -0,0 +1,16 @@ +/obj/item/ammo_magazine/hardpoint/arc_sentry + name = "\improper RE700 Rotary Cannon Magazine" + desc = "A magazine for RE700 Rotary Cannon filled with 20mm rounds. Supports IFF." + caliber = "20mm" + icon_state = "ace_autocannon" + w_class = SIZE_LARGE + default_ammo = /datum/ammo/bullet/re700 + max_rounds = 500 + gun_type = /obj/item/hardpoint/primary/arc_sentry + +/obj/item/ammo_magazine/hardpoint/arc_sentry/update_icon() + if(current_rounds > 0) + icon_state = "ace_autocannon" + else + icon_state = "ace_autocannon_empty" + diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm index 54f2a8fe9a..aa973f601b 100644 --- a/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/cupola_ammo.dm @@ -6,7 +6,7 @@ icon_state = "cupola_1" w_class = SIZE_LARGE default_ammo = /datum/ammo/bullet/rifle/heavy - max_rounds = 1000 + max_rounds = 500 gun_type = /obj/item/hardpoint/secondary/m56cupola /obj/item/ammo_magazine/hardpoint/m56_cupola/update_icon() diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/minigun_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/minigun_ammo.dm index 78222cdb3a..b3f31d824e 100644 --- a/code/modules/vehicles/hardpoints/hardpoint_ammo/minigun_ammo.dm +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/minigun_ammo.dm @@ -5,6 +5,6 @@ caliber = "7.62x51mm" //Correlates to miniguns icon_state = "painless" w_class = SIZE_LARGE //Primary weapon ammo should probably all be the same w_class - default_ammo = /datum/ammo/bullet/minigun/tank + default_ammo = /datum/ammo/bullet/tank/minigun max_rounds = 500 gun_type = /obj/item/hardpoint/primary/minigun diff --git a/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm b/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm index def6016f07..a164b38383 100644 --- a/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm +++ b/code/modules/vehicles/hardpoints/hardpoint_ammo/primary_flamer_ammo.dm @@ -1,7 +1,7 @@ /obj/item/ammo_magazine/hardpoint/primary_flamer name = "DRG-N Offensive Flamer Unit Fuel Tank" desc = "A primary armament flamethrower magazine." - caliber = "Napalm X" //correlates to flamer mags + caliber = "High-Combustion Napalm" //correlates to flamer mags icon_state = "drgn_flametank" w_class = SIZE_LARGE max_rounds = 60 diff --git a/code/modules/vehicles/hardpoints/holder/holder.dm b/code/modules/vehicles/hardpoints/holder/holder.dm index fc8e849d10..948142383c 100644 --- a/code/modules/vehicles/hardpoints/holder/holder.dm +++ b/code/modules/vehicles/hardpoints/holder/holder.dm @@ -23,10 +23,10 @@ . = ..() if(health <= 0) . += "It's busted!" - else if(isobserver(user) || (ishuman(user) && (skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED) || skillcheck(user, SKILL_VEHICLE, SKILL_VEHICLE_CREWMAN)))) + else if(isobserver(user) || (ishuman(user) && (skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_NOVICE) || skillcheck(user, SKILL_VEHICLE, SKILL_VEHICLE_CREWMAN)))) . += "It's at [round(get_integrity_percent(), 1)]% integrity!" for(var/obj/item/hardpoint/H in hardpoints) - . += "There is a [H] module installed on \the [src]." + . += "There is \a [H] module installed on [src]." . += H.get_examine_text(user, TRUE) /obj/item/hardpoint/holder/get_tgui_info() @@ -100,7 +100,7 @@ /obj/item/hardpoint/holder/attackby(obj/item/O, mob/user) if(HAS_TRAIT(O, TRAIT_TOOL_CROWBAR)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know what to do with \the [O] on \the [src].")) return @@ -113,7 +113,7 @@ return if(istype(O, /obj/item/hardpoint)) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know what to do with \the [O] on \the [src].")) return diff --git a/code/modules/vehicles/hardpoints/holder/tank_turret.dm b/code/modules/vehicles/hardpoints/holder/tank_turret.dm index 5f8cc46e3f..a9312cadb7 100644 --- a/code/modules/vehicles/hardpoints/holder/tank_turret.dm +++ b/code/modules/vehicles/hardpoints/holder/tank_turret.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/holder/tank_turret - name = "M34A2-A Multipurpose Turret" + name = "\improper M34A2-A Multipurpose Turret" desc = "The centerpiece of the tank. Designed to support quick installation and deinstallation of various tank weapon modules. Has inbuilt flare deployment system." icon = 'icons/obj/vehicles/tank.dmi' @@ -125,7 +125,7 @@ data += list(list( // turret smokescreen data "name" = "M34A2-A Turret Smoke Screen", - "health" = health <= 0 ? null : round(get_integrity_percent()), + "health" = health <= 0 ? null : floor(get_integrity_percent()), "uses_ammo" = TRUE, "current_rounds" = ammo.current_rounds / 2, "max_rounds"= ammo.max_rounds / 2, diff --git a/code/modules/vehicles/hardpoints/primary/arc_frontal.dm b/code/modules/vehicles/hardpoints/primary/arc_frontal.dm index a9f720412d..fde246952f 100644 --- a/code/modules/vehicles/hardpoints/primary/arc_frontal.dm +++ b/code/modules/vehicles/hardpoints/primary/arc_frontal.dm @@ -3,9 +3,9 @@ desc = "A peculiar turret with two rotary cannons strapped to the front of it. Normally equipped with an autonomous mode, this one curiously lacks the feature." icon = 'icons/obj/vehicles/hardpoints/arc.dmi' - icon_state = "frontalcannon" + icon_state = "autocannon" disp_icon = "arc" - disp_icon_state = "frontalcannon" + disp_icon_state = "autocannon" activation_sounds = list('sound/weapons/gun_smartgun1.ogg', 'sound/weapons/gun_smartgun2.ogg', 'sound/weapons/gun_smartgun3.ogg') damage_multiplier = 0.15 diff --git a/code/modules/vehicles/hardpoints/primary/arc_sentry.dm b/code/modules/vehicles/hardpoints/primary/arc_sentry.dm new file mode 100644 index 0000000000..30efdbcfd0 --- /dev/null +++ b/code/modules/vehicles/hardpoints/primary/arc_sentry.dm @@ -0,0 +1,194 @@ +// APC cannons +/obj/item/hardpoint/primary/arc_sentry + name = "\improper RE700 Rotary Cannon" + desc = "A primary two-barrel cannon for the ARC that shoots 12.7mm IFF-compatible rounds." + icon = 'icons/obj/vehicles/hardpoints/arc.dmi' + + icon_state = "autocannon" + disp_icon = "arc" + disp_icon_state = "autocannon" + activation_sounds = list('sound/weapons/gun_m60.ogg') + + damage_multiplier = 0.1 + health = 125 + + origins = list(0, 0) + + ammo = new /obj/item/ammo_magazine/hardpoint/arc_sentry + max_clips = 2 + + use_muzzle_flash = TRUE + angle_muzzleflash = FALSE + muzzleflash_icon_state = "muzzle_flash_double" + + muzzle_flash_pos = list( + "1" = list(1, 4), + "2" = list(1, -29), + "4" = list(16, 3), + "8" = list(-16, 3) + ) + gun_firemode = GUN_FIREMODE_BURSTFIRE + gun_firemode_list = list( + GUN_FIREMODE_BURSTFIRE, + ) + burst_delay = 2 + burst_amount = 3 + + /// Potential targets the turret can shoot at + var/list/targets = list() + /// The currently focused sentry target + var/atom/movable/sentry_target = null + /// The range that this turret can shoot at the furthest + var/turret_range = 5 + /// What factions this sentry is aligned with + var/faction_group = FACTION_LIST_MARINE + +/obj/item/hardpoint/primary/arc_sentry/on_install(obj/vehicle/multitile/vehicle) + . = ..() + RegisterSignal(owner, COMSIG_ARC_ANTENNA_TOGGLED, PROC_REF(toggle_processing)) + toggle_processing() // We can't know that the antenna is in the same position as when the gun was removed + +/obj/item/hardpoint/primary/arc_sentry/on_uninstall(obj/vehicle/multitile/vehicle) + . = ..() + UnregisterSignal(owner, COMSIG_ARC_ANTENNA_TOGGLED) + STOP_PROCESSING(SSfastobj, src) + +/obj/item/hardpoint/primary/arc_sentry/Destroy() + STOP_PROCESSING(SSfastobj, src) + sentry_target = null + return ..() + +/obj/item/hardpoint/primary/arc_sentry/proc/toggle_processing() + SIGNAL_HANDLER + if(!owner) + return + + var/obj/vehicle/multitile/arc/vehicle = owner + if(vehicle.antenna_deployed) + START_PROCESSING(SSfastobj, src) + + else + STOP_PROCESSING(SSfastobj, src) + +/obj/item/hardpoint/primary/arc_sentry/process() + for(var/mob/living/in_range_mob in range(turret_range, owner)) + targets |= in_range_mob + + if(!length(targets)) + return FALSE + + if(!sentry_target) + sentry_target = pick(targets) + + get_target(sentry_target) + return TRUE + +/obj/item/hardpoint/primary/arc_sentry/set_bullet_traits() + LAZYADD(traits_to_give, list( + BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff, faction_group) + )) + +/obj/item/hardpoint/primary/arc_sentry/fire_wrapper(atom/target, mob/living/user, params) + if(!target) + target = src.target + if(!target) + return NONE + + return try_fire(target, null, params) + +/obj/item/hardpoint/primary/arc_sentry/start_fire(datum/source, atom/object, turf/location, control, params) + if(QDELETED(object)) + return + if(!COOLDOWN_FINISHED(src, fire_cooldown)) + return + + set_target(object) + SEND_SIGNAL(src, COMSIG_GUN_FIRE) + +/obj/item/hardpoint/primary/arc_sentry/proc/get_target(atom/movable/new_target) + if(QDELETED(new_target)) + sentry_target = null + return + + if(!targets.Find(new_target)) + targets.Add(new_target) + + if(!length(targets)) + return + + var/list/conscious_targets = list() + var/list/unconscious_targets = list() + + for(var/mob/living/living_mob as anything in targets) // orange allows sentry to fire through gas and darkness + if(living_mob.stat == DEAD) + purge_target(living_mob) + continue + + if(living_mob.get_target_lock(faction_group) || living_mob.invisibility || HAS_TRAIT(living_mob, TRAIT_ABILITY_BURROWED)) + purge_target(living_mob) + continue + + var/list/turf/path = get_line(get_turf(src), living_mob) + if(!length(path) || get_dist(get_turf(src), living_mob) > turret_range) + purge_target(living_mob) + continue + + var/blocked = FALSE + for(var/turf/tile as anything in path) + if(tile.density || tile.opacity) + blocked = TRUE + break + + for(var/obj/structure/struct in tile) + if(struct.opacity) + blocked = TRUE + break + + for(var/obj/vehicle/multitile/vehicle in tile) + if(vehicle == owner) // Some of the tiles will inevitably be the ARC itself + continue + blocked = TRUE + break + + if(locate(/obj/effect/particle_effect/smoke) in tile) + blocked = TRUE + break + + if(blocked) + purge_target(living_mob) + continue + + if(living_mob.stat & UNCONSCIOUS) + unconscious_targets += living_mob + else + conscious_targets += living_mob + + if((sentry_target in conscious_targets) || (sentry_target in unconscious_targets)) + sentry_target = sentry_target + + else if(length(conscious_targets)) + sentry_target = pick(conscious_targets) + + else if(length(unconscious_targets)) + sentry_target = pick(unconscious_targets) + + if(!sentry_target) //No targets, don't bother firing + return + + start_fire(object = sentry_target) + +/obj/item/hardpoint/primary/arc_sentry/proc/purge_target(mob/target) + if(target == sentry_target) + sentry_target = null + targets.Remove(target) + +/obj/item/hardpoint/primary/arc_sentry/can_be_removed(mob/remover) + var/obj/vehicle/multitile/arc/arc_owner = owner + if(!istype(arc_owner)) + return TRUE + + if(arc_owner.antenna_deployed) + to_chat(remover, SPAN_WARNING("[src] cannot be removed from [owner] while its antenna is deployed.")) + return FALSE + + return ..() diff --git a/code/modules/vehicles/hardpoints/primary/autocannon.dm b/code/modules/vehicles/hardpoints/primary/autocannon.dm index 343516f614..e7c07c6d58 100644 --- a/code/modules/vehicles/hardpoints/primary/autocannon.dm +++ b/code/modules/vehicles/hardpoints/primary/autocannon.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/autocannon - name = "AC3-E Autocannon" + name = "\improper AC3-E Autocannon" desc = "A primary autocannon for tanks that shoots explosive flak rounds" icon_state = "ace_autocannon" diff --git a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm index 224712ef55..9420cc990c 100644 --- a/code/modules/vehicles/hardpoints/primary/dual_cannon.dm +++ b/code/modules/vehicles/hardpoints/primary/dual_cannon.dm @@ -1,6 +1,6 @@ // APC cannons /obj/item/hardpoint/primary/dualcannon - name = "PARS-159 Boyars Dualcannon" + name = "\improper PARS-159 Boyars Dualcannon" desc = "A primary two-barrel cannon for the APC that shoots 20mm IFF-compatible rounds." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/primary/flamer.dm b/code/modules/vehicles/hardpoints/primary/flamer.dm index c858d9bf30..3d5633db64 100644 --- a/code/modules/vehicles/hardpoints/primary/flamer.dm +++ b/code/modules/vehicles/hardpoints/primary/flamer.dm @@ -1,6 +1,6 @@ /obj/item/hardpoint/primary/flamer - name = "DRG-N Offensive Flamer Unit" - desc = "A primary weapon for the tank that spews fire everywhere." + name = "\improper DRG-N Offensive Flamer Unit" + desc = "A primary weapon for the tank that spews out high-combustion napalm in a wide radius. The fuel burns intensely and quickly, which allows for it to be used offensively by armoured vehicles." icon_state = "drgn_flamer" disp_icon = "tank" diff --git a/code/modules/vehicles/hardpoints/primary/ltb.dm b/code/modules/vehicles/hardpoints/primary/ltb.dm index 34911ef25b..7e99d3e3a1 100644 --- a/code/modules/vehicles/hardpoints/primary/ltb.dm +++ b/code/modules/vehicles/hardpoints/primary/ltb.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/cannon - name = "LTB Cannon" + name = "\improper LTB Cannon" desc = "A primary cannon for tanks that shoots explosive rounds" icon_state = "ltb_cannon" diff --git a/code/modules/vehicles/hardpoints/primary/minigun.dm b/code/modules/vehicles/hardpoints/primary/minigun.dm index c0885ee03a..8233ffd775 100644 --- a/code/modules/vehicles/hardpoints/primary/minigun.dm +++ b/code/modules/vehicles/hardpoints/primary/minigun.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/primary/minigun - name = "LTAA-AP Minigun" + name = "\improper LTAA-AP Minigun" desc = "A primary weapon for tanks that spews bullets" icon_state = "ltaaap_minigun" @@ -79,10 +79,10 @@ spin_stage -= delta_stage / spindown_time else return - spin_stage = Clamp(spin_stage, 1, stage_rate_len) + spin_stage = clamp(spin_stage, 1, stage_rate_len) - var/old_stage_rate = stage_rate[Floor(old_spin_stage)] - var/new_stage_rate = stage_rate[Floor(spin_stage)] + var/old_stage_rate = stage_rate[floor(old_spin_stage)] + var/new_stage_rate = stage_rate[floor(spin_stage)] if(old_stage_rate != new_stage_rate) stage_delay_mult = 1 / new_stage_rate diff --git a/code/modules/vehicles/hardpoints/secondary/cupola.dm b/code/modules/vehicles/hardpoints/secondary/cupola.dm index 6323ce8c5b..fdfdda33c6 100644 --- a/code/modules/vehicles/hardpoints/secondary/cupola.dm +++ b/code/modules/vehicles/hardpoints/secondary/cupola.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/m56cupola - name = "M56 Cupola" + name = "\improper M56 Cupola" desc = "A secondary weapon for tanks that shoots bullets" icon_state = "m56_cupola" diff --git a/code/modules/vehicles/hardpoints/secondary/flamer.dm b/code/modules/vehicles/hardpoints/secondary/flamer.dm index ce517ac276..42722166fe 100644 --- a/code/modules/vehicles/hardpoints/secondary/flamer.dm +++ b/code/modules/vehicles/hardpoints/secondary/flamer.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/small_flamer - name = "LZR-N Flamer Unit" + name = "\improper LZR-N Flamer Unit" desc = "A secondary weapon for tanks that spews hot fire." icon_state = "flamer" diff --git a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm index 8129e3f0f3..2983434380 100644 --- a/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm +++ b/code/modules/vehicles/hardpoints/secondary/frontal_cannon.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/frontalcannon - name = "Bleihagel RE-RE700 Frontal Cannon" + name = "\improper Bleihagel RE-RE700 Frontal Cannon" desc = "The marketing department over at Bleihagel would have you believe that the RE-RE700 is an original design. However, experts who pried the cover off the cannon have discovered an object with a striking similarity to the popular M56 Cupola. It is still unknown why the cannon has two barrels." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm index c149502c44..3399e95178 100644 --- a/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm +++ b/code/modules/vehicles/hardpoints/secondary/grenade_launcher.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/grenade_launcher - name = "M92T Grenade Launcher" + name = "\improper M92T Grenade Launcher" desc = "A secondary weapon for tanks that shoots grenades." icon_state = "glauncher" diff --git a/code/modules/vehicles/hardpoints/secondary/tow.dm b/code/modules/vehicles/hardpoints/secondary/tow.dm index 2a12b050df..563200edec 100644 --- a/code/modules/vehicles/hardpoints/secondary/tow.dm +++ b/code/modules/vehicles/hardpoints/secondary/tow.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/secondary/towlauncher - name = "TOW Launcher" + name = "\improper TOW Launcher" desc = "A secondary weapon for tanks that shoots rockets" icon_state = "tow_launcher" diff --git a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm index f051d9a21b..5561ee4835 100644 --- a/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm +++ b/code/modules/vehicles/hardpoints/special/firing_port_weapon.dm @@ -1,6 +1,6 @@ //this is Cupola guns that are fired from the sides of APC by support gunners /obj/item/hardpoint/special/firing_port_weapon - name = "M56 FPW" + name = "\improper M56 FPW" desc = "A modified M56B Smartgun installed on the sides of M577 Armored Personnel Carrier as a Firing Port Weapon. Used by support gunners to cover friendly infantry at APC sides." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/support/antenna.dm b/code/modules/vehicles/hardpoints/support/antenna.dm new file mode 100644 index 0000000000..b4980b7e3a --- /dev/null +++ b/code/modules/vehicles/hardpoints/support/antenna.dm @@ -0,0 +1,94 @@ +/obj/item/hardpoint/support/arc_antenna + name = "\improper U-56 Radar Antenna" + desc = "A heavy-duty antenna built for the ARC." + icon = 'icons/obj/vehicles/hardpoints/arc.dmi' + + icon_state = "antenna" + disp_icon = "arc" + disp_icon_state = "antenna" + + damage_multiplier = 0.1 + + health = 500 + + /// How long the antenna deploy/retract animation is, keep accurate to the sprite in the dmi + var/deploy_animation_time = 1.2 SECONDS + /// If the antenna is already deploying + var/deploying = FALSE + +/obj/item/hardpoint/support/arc_antenna/proc/deploy_antenna() + set waitfor = FALSE + + disp_icon_state = "" + if(owner) + owner.update_icon() + var/obj/dummy_obj = new() + dummy_obj.icon = 'icons/obj/vehicles/arc.dmi' + dummy_obj.icon_state = "antenna_cover_0" + dummy_obj.dir = owner.dir + dummy_obj.vis_flags = VIS_INHERIT_ID | VIS_INHERIT_LAYER | VIS_INHERIT_PLANE + owner.vis_contents += dummy_obj + flick("antenna_extending", dummy_obj) + sleep(deploy_animation_time) + qdel(dummy_obj) + disp_icon_state = initial(disp_icon_state) + +/obj/item/hardpoint/support/arc_antenna/proc/retract_antenna() + set waitfor = FALSE + + disp_icon_state = "" + if(owner) + owner.update_icon() + var/obj/dummy_obj = new() + dummy_obj.icon = 'icons/obj/vehicles/arc.dmi' + dummy_obj.icon_state = "antenna_cover_0" + dummy_obj.dir = owner.dir + dummy_obj.vis_flags = VIS_INHERIT_ID | VIS_INHERIT_LAYER | VIS_INHERIT_PLANE + owner.vis_contents += dummy_obj + flick("antenna_retracting", dummy_obj) + sleep(deploy_animation_time) + qdel(dummy_obj) + disp_icon_state = initial(disp_icon_state) + +/obj/item/hardpoint/support/arc_antenna/get_icon_image(x_offset, y_offset, new_dir) + var/is_broken = health <= 0 + var/antenna_extended = FALSE + if(istype(owner, /obj/vehicle/multitile/arc)) + var/obj/vehicle/multitile/arc/arc_owner = owner + antenna_extended = arc_owner.antenna_deployed + + var/image/antenna_img = image(icon = disp_icon, icon_state = "[disp_icon_state]_[antenna_extended ? "extended" : "cover"]_[is_broken ? "1" : "0"]", pixel_x = x_offset, pixel_y = y_offset, dir = new_dir) + switch(floor((health / initial(health)) * 100)) + if(0) + antenna_img.color = "#888888" + if(1 to 20) + antenna_img.color = "#4e4e4e" + if(21 to 40) + antenna_img.color = "#6e6e6e" + if(41 to 60) + antenna_img.color = "#8b8b8b" + if(61 to 80) + antenna_img.color = "#bebebe" + else + antenna_img.color = null + return antenna_img + +/obj/item/hardpoint/support/arc_antenna/can_be_removed(mob/remover) + var/obj/vehicle/multitile/arc/arc_owner = owner + if(!istype(arc_owner)) + return TRUE + + if(arc_owner.antenna_deployed) + to_chat(remover, SPAN_WARNING("[src] cannot be removed from [owner] while it is deployed.")) + return FALSE + + return ..() + +/obj/item/hardpoint/support/arc_antenna/on_destroy() + var/obj/vehicle/multitile/arc/arc_owner = owner + if(!istype(arc_owner)) + return + + if(arc_owner.antenna_deployed) + retract_antenna() + addtimer(CALLBACK(arc_owner, TYPE_PROC_REF(/obj/vehicle/multitile/arc, finish_antenna_retract)), deploy_animation_time) diff --git a/code/modules/vehicles/hardpoints/support/artillery.dm b/code/modules/vehicles/hardpoints/support/artillery.dm index bf2e982d34..9ed5299d38 100644 --- a/code/modules/vehicles/hardpoints/support/artillery.dm +++ b/code/modules/vehicles/hardpoints/support/artillery.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/artillery_module - name = "Artillery Module" + name = "\improper Artillery Module" desc = "Allows the user to look far into the distance." icon_state = "artillery" @@ -57,7 +57,7 @@ continue var/mob/user = C.seats[seat] if(!user.client) continue - user.client.change_view(world_view_size, owner) + user.client.change_view(GLOB.world_view_size, owner) user.client.pixel_x = 0 user.client.pixel_y = 0 is_active = FALSE diff --git a/code/modules/vehicles/hardpoints/support/flare.dm b/code/modules/vehicles/hardpoints/support/flare.dm index f9ce4b604f..7216551543 100644 --- a/code/modules/vehicles/hardpoints/support/flare.dm +++ b/code/modules/vehicles/hardpoints/support/flare.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/flare_launcher - name = "M-87F Flare Launcher" + name = "\improper M-87F Flare Launcher" desc = "A support module for APCs that shoots flares." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' diff --git a/code/modules/vehicles/hardpoints/support/iwsa.dm b/code/modules/vehicles/hardpoints/support/iwsa.dm index 9940f02e48..d851915e62 100644 --- a/code/modules/vehicles/hardpoints/support/iwsa.dm +++ b/code/modules/vehicles/hardpoints/support/iwsa.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/weapons_sensor - name = "Integrated Weapons Sensor Array" + name = "\improper Integrated Weapons Sensor Array" desc = "Improves the accuracy and fire rate of all onboard weapons" icon_state = "warray" diff --git a/code/modules/vehicles/hardpoints/support/overdrive.dm b/code/modules/vehicles/hardpoints/support/overdrive.dm index 39e33c7290..61b0df8318 100644 --- a/code/modules/vehicles/hardpoints/support/overdrive.dm +++ b/code/modules/vehicles/hardpoints/support/overdrive.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/support/overdrive_enhancer - name = "Overdrive Enhancer" + name = "\improper Overdrive Enhancer" desc = "Increases the movement speed of the vehicle it's attached to" icon_state = "odrive_enhancer" diff --git a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm index 7df058b4a0..e2454333a4 100644 --- a/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm +++ b/code/modules/vehicles/hardpoints/wheels/apc_wheels.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/locomotion/apc_wheels - name = "APC Wheels" + name = "\improper APC Wheels" desc = "Integral to the movement of the APC." icon = 'icons/obj/vehicles/hardpoints/apc.dmi' @@ -23,4 +23,4 @@ icon_state = "tires" disp_icon = "arc" - disp_icon_state = "wheels" + disp_icon_state = "arc_wheels" diff --git a/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm new file mode 100644 index 0000000000..17726e75c0 --- /dev/null +++ b/code/modules/vehicles/hardpoints/wheels/arc_wheels.dm @@ -0,0 +1,17 @@ +/obj/item/hardpoint/locomotion/arc_wheels + name = "\improper ARC Wheels" + desc = "Integral to the movement of the ARC." + icon = 'icons/obj/vehicles/hardpoints/arc.dmi' + + damage_multiplier = 0.15 + + icon_state = "tires" + disp_icon = "arc" + disp_icon_state = "arc_wheels" + + health = 500 + + move_delay = VEHICLE_SPEED_SUPERFAST + move_max_momentum = 2 + move_momentum_build_factor = 1.5 + move_turn_momentum_loss_factor = 0.5 diff --git a/code/modules/vehicles/hardpoints/wheels/locomotion.dm b/code/modules/vehicles/hardpoints/wheels/locomotion.dm index dd4173c54f..a0e57c3e97 100644 --- a/code/modules/vehicles/hardpoints/wheels/locomotion.dm +++ b/code/modules/vehicles/hardpoints/wheels/locomotion.dm @@ -12,6 +12,22 @@ var/move_momentum_build_factor = 0 var/move_turn_momentum_loss_factor = 0 +/obj/item/hardpoint/locomotion/p_are(temp_gender) + if(!temp_gender) + temp_gender = gender + . = "is" + if(temp_gender == PLURAL) + . = "are" + +/obj/item/hardpoint/locomotion/p_they(capitalized, temp_gender) + if(!temp_gender) + temp_gender = gender + . = "it" + if(temp_gender == PLURAL) + . = "they" + if(capitalized) + . = capitalize(.) + /obj/item/hardpoint/locomotion/deactivate() owner.move_delay = initial(owner.move_delay) owner.move_max_momentum = initial(owner.move_max_momentum) @@ -46,7 +62,7 @@ //of vehicle enter the spray spawn area, it deals a huge amount of damage. But simply nerfing damage will also nerf it for //acid spraying castes like spitters and praetorians, which is not ideal. if(acid.cause_data.cause_name == "resin acid trap") - take_damage = round(take_damage / 3) + take_damage = floor(take_damage / 3) else if(istype(A, /obj/effect/blocker/toxic_water)) //multitile vehicles are, well, multitile and will be receiving damage for each tile, so damage is low per tile. diff --git a/code/modules/vehicles/hardpoints/wheels/treads.dm b/code/modules/vehicles/hardpoints/wheels/treads.dm index 40e09099ae..b4aac413ae 100644 --- a/code/modules/vehicles/hardpoints/wheels/treads.dm +++ b/code/modules/vehicles/hardpoints/wheels/treads.dm @@ -1,5 +1,5 @@ /obj/item/hardpoint/locomotion/treads - name = "Treads" + name = "\improper Treads" desc = "Integral to the movement of the vehicle." icon_state = "treads" @@ -17,7 +17,7 @@ move_turn_momentum_loss_factor = 0.6 /obj/item/hardpoint/locomotion/treads/robust - name = "Reinforced Treads" + name = "\improper Reinforced Treads" desc = "These treads are made of a tougher material and are more durable. However, the extra weight slows the tank down slightly." health = 2500 diff --git a/code/modules/vehicles/interior/areas.dm b/code/modules/vehicles/interior/areas.dm index 326ea8ee4a..6c7140d1de 100644 --- a/code/modules/vehicles/interior/areas.dm +++ b/code/modules/vehicles/interior/areas.dm @@ -1,37 +1,38 @@ -/area/vehicle +/area/interior ceiling = CEILING_METAL requires_power = 0 unlimited_power = 1 icon = 'icons/turf/areas_interiors.dmi' + icon_state = "interior" base_lighting_alpha = 255 ambience_exterior = 'sound/ambience/vehicle_interior1.ogg' sound_environment = SOUND_ENVIRONMENT_ROOM -/area/vehicle/tank +/area/interior/vehicle/tank name = "tank interior" icon_state = "tank" -/area/vehicle/apc +/area/interior/vehicle/apc name = "\improper APC interior" icon_state = "apc" -/area/vehicle/apc/med +/area/interior/vehicle/apc/med name = "\improper MED APC interior" icon_state = "apc_med" -/area/vehicle/apc/command +/area/interior/vehicle/apc/command name = "\improper CMD APC interior" icon_state = "apc_cmd" -/area/vehicle/apc/movie +/area/interior/vehicle/apc/movie name = "\improper M557A3 APC interior" icon_state = "apc_movie" -/area/vehicle/apc/arc - name = "\improper M540 ARC interior" - icon_state = "arc" - -/area/vehicle/van +/area/interior/vehicle/van name = "van interior" icon_state = "van" + +/area/interior/vehicle/arc + name = "\improper M540 ARC interior" + icon_state = "arc" diff --git a/code/modules/vehicles/interior/interactable/seats.dm b/code/modules/vehicles/interior/interactable/seats.dm index be98a91cf7..e798093036 100644 --- a/code/modules/vehicles/interior/interactable/seats.dm +++ b/code/modules/vehicles/interior/interactable/seats.dm @@ -43,7 +43,7 @@ M.unset_interaction() vehicle.set_seated_mob(seat, null) if(M.client) - M.client.change_view(world_view_size, vehicle) + M.client.change_view(GLOB.world_view_size, vehicle) M.client.pixel_x = 0 M.client.pixel_y = 0 M.reset_view() @@ -108,7 +108,7 @@ to_chat(user, SPAN_WARNING("You are unable to use heavy weaponry.")) return - for(var/obj/item/I in user.contents) //prevents shooting while zoomed in, but zoom can still be activated and used without shooting + for(var/obj/item/I in user.contents) //prevents shooting while zoomed in, but zoom can still be activated and used without shooting if(I.zoom) I.zoom(user) @@ -177,7 +177,7 @@ M.unset_interaction() vehicle.set_seated_mob(seat, null) if(M.client) - M.client.change_view(world_view_size, vehicle) + M.client.change_view(GLOB.world_view_size, vehicle) M.client.pixel_x = 0 M.client.pixel_y = 0 else @@ -255,7 +255,7 @@ M.unset_interaction() vehicle.set_seated_mob(seat, null) if(M.client) - M.client.change_view(world_view_size, vehicle) + M.client.change_view(GLOB.world_view_size, vehicle) M.client.pixel_x = 0 M.client.pixel_y = 0 M.reset_view() diff --git a/code/modules/vehicles/interior/interactable/vendors.dm b/code/modules/vehicles/interior/interactable/vendors.dm index fc77d4d0d5..71f4e9e0e2 100644 --- a/code/modules/vehicles/interior/interactable/vendors.dm +++ b/code/modules/vehicles/interior/interactable/vendors.dm @@ -17,10 +17,6 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /obj/item/reagent_container/hypospray/autoinjector/skillless/tramadol, ) - stack_refill = list( - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/ointment, - ) //MED APC version of WY Med, provides resupply for basic stuff. Provides a decent amount of cryobags for evacuating hugged marines. /obj/structure/machinery/cm_vending/sorted/medical/vehicle @@ -57,38 +53,30 @@ /obj/item/reagent_container/hypospray/autoinjector/tricord/skillless, ) - stack_refill = list( - /obj/item/stack/medical/advanced/ointment, - /obj/item/stack/medical/advanced/bruise_pack, - /obj/item/stack/medical/ointment, - /obj/item/stack/medical/bruise_pack, - /obj/item/stack/medical/splint, - ) - /obj/structure/machinery/cm_vending/sorted/medical/vehicle/populate_product_list(scale) listed_products = list( list("FIELD SUPPLIES", -1, null, null), - list("Burn Kit", round(scale * 4), /obj/item/stack/medical/advanced/ointment, VENDOR_ITEM_REGULAR), - list("Trauma Kit", round(scale * 4), /obj/item/stack/medical/advanced/bruise_pack, VENDOR_ITEM_REGULAR), - list("Ointment", round(scale * 5), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), - list("Roll of Gauze", round(scale * 5), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), - list("Splints", round(scale * 5), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), + list("Burn Kit", floor(scale * 4), /obj/item/stack/medical/advanced/ointment, VENDOR_ITEM_REGULAR), + list("Trauma Kit", floor(scale * 4), /obj/item/stack/medical/advanced/bruise_pack, VENDOR_ITEM_REGULAR), + list("Ointment", floor(scale * 5), /obj/item/stack/medical/ointment, VENDOR_ITEM_REGULAR), + list("Roll of Gauze", floor(scale * 5), /obj/item/stack/medical/bruise_pack, VENDOR_ITEM_REGULAR), + list("Splints", floor(scale * 5), /obj/item/stack/medical/splint, VENDOR_ITEM_REGULAR), list("AUTOINJECTORS", -1, null, null), - list("Autoinjector (Bicaridine)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), - list("Autoinjector (Dexalin+)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), - list("Autoinjector (Inaprovaline)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), - list("Autoinjector (Kelotane)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), - list("Autoinjector (Oxycodone)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tramadol)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), - list("Autoinjector (Tricord)", round(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), + list("Autoinjector (Bicaridine)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/bicaridine, VENDOR_ITEM_REGULAR), + list("Autoinjector (Dexalin+)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/dexalinp, VENDOR_ITEM_REGULAR), + list("Autoinjector (Inaprovaline)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/inaprovaline, VENDOR_ITEM_REGULAR), + list("Autoinjector (Kelotane)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/kelotane, VENDOR_ITEM_REGULAR), + list("Autoinjector (Oxycodone)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/oxycodone, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tramadol)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/tramadol, VENDOR_ITEM_REGULAR), + list("Autoinjector (Tricord)", floor(scale * 3), /obj/item/reagent_container/hypospray/autoinjector/tricord, VENDOR_ITEM_REGULAR), list("MEDICAL UTILITIES", -1, null, null), - list("Surgical Line", round(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), - list("Synth-Graft", round(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), - list("Health Analyzer", round(scale * 4), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), - list("Stasis Bag", round(scale * 6), /obj/item/bodybag/cryobag, VENDOR_ITEM_REGULAR), - list("Syringe", round(scale * 3), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) + list("Surgical Line", floor(scale * 2), /obj/item/tool/surgery/surgical_line, VENDOR_ITEM_REGULAR), + list("Synth-Graft", floor(scale * 2), /obj/item/tool/surgery/synthgraft, VENDOR_ITEM_REGULAR), + list("Health Analyzer", floor(scale * 4), /obj/item/device/healthanalyzer, VENDOR_ITEM_REGULAR), + list("Stasis Bag", floor(scale * 6), /obj/item/bodybag/cryobag, VENDOR_ITEM_REGULAR), + list("Syringe", floor(scale * 3), /obj/item/reagent_container/syringe, VENDOR_ITEM_REGULAR) ) //MED APC version of Blood Dispenser @@ -124,7 +112,6 @@ wrenchable = FALSE hackable = FALSE density = FALSE - var/being_restocked = FALSE vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES @@ -179,43 +166,43 @@ /obj/structure/machinery/cm_vending/sorted/vehicle_supply/populate_product_list(scale) listed_products = list( list("PRIMARY FIREARMS", -1, null, null), - list("M37A2 Pump Shotgun", round(scale * 3), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), - list("M39 Submachinegun", round(scale * 2.5), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), - list("M41A Pulse Rifle MK2", round(scale * 4), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), - list("M4RA Battle Rifle", round(scale * 2), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M37A2 Pump Shotgun", floor(scale * 3), /obj/item/weapon/gun/shotgun/pump, VENDOR_ITEM_REGULAR), + list("M39 Submachinegun", floor(scale * 2.5), /obj/item/weapon/gun/smg/m39, VENDOR_ITEM_REGULAR), + list("M41A Pulse Rifle MK2", floor(scale * 4), /obj/item/weapon/gun/rifle/m41a, VENDOR_ITEM_REGULAR), + list("M4RA Battle Rifle", floor(scale * 2), /obj/item/weapon/gun/rifle/m4ra, VENDOR_ITEM_REGULAR), list("SIDEARMS", -1, null, null), - list("VP70 Combat Pistol", round(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), - list("M44 Combat Revolver", round(scale * 1.5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), - list("M4A3 Service Pistol", round(scale * 2.5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), + list("VP70 Combat Pistol", floor(scale * 2), /obj/item/weapon/gun/pistol/vp70, VENDOR_ITEM_REGULAR), + list("M44 Combat Revolver", floor(scale * 1.5), /obj/item/weapon/gun/revolver/m44, VENDOR_ITEM_REGULAR), + list("M4A3 Service Pistol", floor(scale * 2.5), /obj/item/weapon/gun/pistol/m4a3, VENDOR_ITEM_REGULAR), list("EXPLOSIVES", -1, null, null), list("M15 Fragmentation Grenade", 0, /obj/item/explosive/grenade/high_explosive/m15, VENDOR_ITEM_REGULAR), list("M20 Claymore Anti-Personnel Mine", 0, /obj/item/explosive/mine, VENDOR_ITEM_REGULAR), list("M40 HEDP Grenade", 0, /obj/item/explosive/grenade/high_explosive, VENDOR_ITEM_REGULAR), list("M40 HIDP Incendiary Grenade", 0, /obj/item/explosive/grenade/incendiary, VENDOR_ITEM_REGULAR), - list("M40 HPDP White Phosphorus Smoke Grenade", 0, /obj/item/explosive/grenade/phosphorus, VENDOR_ITEM_REGULAR), - list("M40 HSDP Smoke Grenade", round(scale * 1), /obj/item/explosive/grenade/smokebomb, VENDOR_ITEM_REGULAR), + list("M40 CCDP Chemical Compound Smoke Grenade", 0, /obj/item/explosive/grenade/phosphorus, VENDOR_ITEM_REGULAR), + list("M40 HSDP Smoke Grenade", floor(scale * 1), /obj/item/explosive/grenade/smokebomb, VENDOR_ITEM_REGULAR), list("M74 AGM-Frag Airburst Grenade", 0, /obj/item/explosive/grenade/high_explosive/airburst, VENDOR_ITEM_REGULAR), list("M74 AGM-Incendiary Airburst Grenade", 0, /obj/item/explosive/grenade/incendiary/airburst, VENDOR_ITEM_REGULAR), list("M74 AGM-Smoke Airburst Grenade", 0, /obj/item/explosive/grenade/smokebomb/airburst, VENDOR_ITEM_REGULAR), list("M74 AGM-Star Shell", 2, /obj/item/explosive/grenade/high_explosive/airburst/starshell, VENDOR_ITEM_REGULAR), list("M74 AGM-Hornet Shell", 0, /obj/item/explosive/grenade/high_explosive/airburst/hornet_shell, VENDOR_ITEM_REGULAR), - list("M40 HIRR Baton Slug", round(scale * 2), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), + list("M40 HIRR Baton Slug", floor(scale * 2), /obj/item/explosive/grenade/slug/baton, VENDOR_ITEM_REGULAR), list("M40 MFHS Metal Foam Grenade", 0, /obj/item/explosive/grenade/metal_foam, VENDOR_ITEM_REGULAR), list("Breaching Charge", 0, /obj/item/explosive/plastic/breaching_charge, VENDOR_ITEM_REGULAR), list("Plastic Explosives", 2, /obj/item/explosive/plastic, VENDOR_ITEM_REGULAR), list("REGULAR AMMUNITION", -1, null, null), - list("Box Of Buckshot Shells", round(scale * 3), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), - list("Box Of Flechette Shells", round(scale * 2), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), - list("Box Of Shotgun Slugs", round(scale * 4), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), - list("M4RA Magazine (10x24mm)", round(scale * 5), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), - list("M41A MK2 Magazine (10x24mm)", round(scale * 10), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), - list("M39 HV Magazine (10x20mm)", round(scale * 6), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), - list("M44 Speed Loader (.44)", round(scale * 4), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), - list("M4A3 Magazine (9mm)", round(scale * 10), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), - list("VP70 Magazine (9mm)", round(scale * 8), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), + list("Box Of Buckshot Shells", floor(scale * 3), /obj/item/ammo_magazine/shotgun/buckshot, VENDOR_ITEM_REGULAR), + list("Box Of Flechette Shells", floor(scale * 2), /obj/item/ammo_magazine/shotgun/flechette, VENDOR_ITEM_REGULAR), + list("Box Of Shotgun Slugs", floor(scale * 4), /obj/item/ammo_magazine/shotgun/slugs, VENDOR_ITEM_REGULAR), + list("M4RA Magazine (10x24mm)", floor(scale * 5), /obj/item/ammo_magazine/rifle/m4ra, VENDOR_ITEM_REGULAR), + list("M41A MK2 Magazine (10x24mm)", floor(scale * 10), /obj/item/ammo_magazine/rifle, VENDOR_ITEM_REGULAR), + list("M39 HV Magazine (10x20mm)", floor(scale * 6), /obj/item/ammo_magazine/smg/m39, VENDOR_ITEM_REGULAR), + list("M44 Speed Loader (.44)", floor(scale * 4), /obj/item/ammo_magazine/revolver, VENDOR_ITEM_REGULAR), + list("M4A3 Magazine (9mm)", floor(scale * 10), /obj/item/ammo_magazine/pistol, VENDOR_ITEM_REGULAR), + list("VP70 Magazine (9mm)", floor(scale * 8), /obj/item/ammo_magazine/pistol/vp70, VENDOR_ITEM_REGULAR), list("ARMOR-PIERCING AMMUNITION", -1, null, null), list("M4RA AP Magazine (10x24mm)", 0, /obj/item/ammo_magazine/rifle/m4ra/ap, VENDOR_ITEM_REGULAR), @@ -253,8 +240,8 @@ list("M56 Battery", 0, /obj/item/smartgun_battery, VENDOR_ITEM_REGULAR), list("M56 Smartgun Drum", 0, /obj/item/ammo_magazine/smartgun, VENDOR_ITEM_REGULAR), list("M56D Drum Magazine",0, /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), - list("SU-6 Smartpistol Magazine (.45)", round(scale * 2), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), - list("VP78 Magazine", round(scale * 1.5), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), + list("SU-6 Smartpistol Magazine (.45)", floor(scale * 2), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), + list("VP78 Magazine", floor(scale * 1.5), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), list("BUILDING MATERIALS", -1, null, null), list("Cardboard x10", 1, /obj/item/stack/sheet/cardboard/small_stack, VENDOR_ITEM_REGULAR), @@ -274,23 +261,23 @@ list("SMG Ammunition Box (10x20mm AP)", 0, /obj/item/ammo_box/rounds/smg/ap, VENDOR_ITEM_REGULAR), list("MISCELLANEOUS", -1, null, null), - list("Box Of MREs", round(scale * 1.5), /obj/item/ammo_box/magazine/misc/mre, VENDOR_ITEM_REGULAR), - list("Box Of M94 Marking Flare Packs", round(scale * 2), /obj/item/ammo_box/magazine/misc/flares, VENDOR_ITEM_REGULAR), - list("Entrenching Tool", round(scale * 2), /obj/item/tool/shovel/etool, VENDOR_ITEM_REGULAR), - list("M5 Bayonet", round(scale * 5), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), + list("Box Of MREs", floor(scale * 1.5), /obj/item/ammo_box/magazine/misc/mre, VENDOR_ITEM_REGULAR), + list("Box Of M94 Marking Flare Packs", floor(scale * 2), /obj/item/ammo_box/magazine/misc/flares, VENDOR_ITEM_REGULAR), + list("Entrenching Tool", floor(scale * 2), /obj/item/tool/shovel/etool, VENDOR_ITEM_REGULAR), + list("M5 Bayonet", floor(scale * 5), /obj/item/attachable/bayonet, VENDOR_ITEM_REGULAR), list("M89-S Signal Flare Pack", 0, /obj/item/storage/box/m94/signal, VENDOR_ITEM_REGULAR), - list("M94 Marking Flare Pack", round(scale * 1), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), - list("Machete Scabbard (Full)", round(scale * 1), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR), + list("M94 Marking Flare Pack", floor(scale * 1), /obj/item/storage/box/m94, VENDOR_ITEM_REGULAR), + list("Machete Scabbard (Full)", floor(scale * 1), /obj/item/storage/large_holster/machete/full, VENDOR_ITEM_REGULAR), list("MB-6 Folding Barricades (x3)", 0, /obj/item/stack/folding_barricade/three, VENDOR_ITEM_REGULAR), list("Motion Detector", 0, /obj/item/device/motiondetector, VENDOR_ITEM_REGULAR), list("Roller Bed", 2, /obj/item/roller, VENDOR_ITEM_REGULAR), list("ARMOR AND CLOTHING", -1, null, null), list("Heat Absorbent Coif", 10, /obj/item/clothing/mask/rebreather/scarf, VENDOR_ITEM_REGULAR), - list("M10 Pattern Marine Helmet", round(scale * 3), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), - list("M3 Pattern Marine Armor", round(scale * 1), /obj/item/clothing/suit/storage/marine, VENDOR_ITEM_REGULAR), - list("M3-EOD Pattern Heavy Armor", round(scale * 1), /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), - list("M3-L Pattern Light Armor", round(scale * 1), /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), + list("M10 Pattern Marine Helmet", floor(scale * 3), /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), + list("M3 Pattern Marine Armor", floor(scale * 1), /obj/item/clothing/suit/storage/marine, VENDOR_ITEM_REGULAR), + list("M3-EOD Pattern Heavy Armor", floor(scale * 1), /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), + list("M3-L Pattern Light Armor", floor(scale * 1), /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), ) //combined from req guns and ammo vendors @@ -329,7 +316,7 @@ to_chat(user, SPAN_WARNING("\The [S] are being stored in [SPAN_HELPFUL("stacks of 5")] for convenience. You need \the [S] stack of at least 5 to restock it.")) return FALSE else - stack_restock = Floor(S.amount / 5) + stack_restock = floor(S.amount / 5) //for the ease of finding enough materials to stack, it will be stored in stacks of 10 sheets just like they come in engie vendor else if(S.amount < 10) @@ -337,7 +324,7 @@ to_chat(user, SPAN_WARNING("\The [S] are being stored in [SPAN_HELPFUL("stacks of 10")] for convenience. You need \the [S] stack of at least 10 to restock it.")) return FALSE else - stack_restock = Floor(S.amount / 10) + stack_restock = floor(S.amount / 10) //item we are restocking is a stack and we need to conveniently restock it //instead of demanding user to split it into stacks of appropriate amount @@ -421,11 +408,11 @@ list("ARMOR", -1, null, null), list("M10 Pattern Marine Helmet", 0, /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), - list("M3 Pattern Carrier Marine Armor", 0, /obj/item/clothing/suit/storage/marine/carrier, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padded Marine Armor", 0, /obj/item/clothing/suit/storage/marine/padded, VENDOR_ITEM_REGULAR), - list("M3 Pattern Padless Marine Armor", 0, /obj/item/clothing/suit/storage/marine/padless, VENDOR_ITEM_REGULAR), - list("M3 Pattern Ridged Marine Armor", 0, /obj/item/clothing/suit/storage/marine/padless_lines, VENDOR_ITEM_REGULAR), - list("M3 Pattern Skull Marine Armor", 0, /obj/item/clothing/suit/storage/marine/skull, VENDOR_ITEM_REGULAR), + list("M3 Pattern Carrier Marine Armor", 0, /obj/item/clothing/suit/storage/marine/medium/carrier, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padded Marine Armor", 0, /obj/item/clothing/suit/storage/marine/medium/padded, VENDOR_ITEM_REGULAR), + list("M3 Pattern Padless Marine Armor", 0, /obj/item/clothing/suit/storage/marine/medium/padless, VENDOR_ITEM_REGULAR), + list("M3 Pattern Ridged Marine Armor", 0, /obj/item/clothing/suit/storage/marine/medium/padless_lines, VENDOR_ITEM_REGULAR), + list("M3 Pattern Skull Marine Armor", 0, /obj/item/clothing/suit/storage/marine/medium/skull, VENDOR_ITEM_REGULAR), list("M3-EOD Pattern Heavy Armor", 0, /obj/item/clothing/suit/storage/marine/heavy, VENDOR_ITEM_REGULAR), list("M3-L Pattern Light Armor", 0, /obj/item/clothing/suit/storage/marine/light, VENDOR_ITEM_REGULAR), diff --git a/code/modules/vehicles/interior/interior.dm b/code/modules/vehicles/interior/interior.dm index 8fb65602c9..6aaeb64391 100644 --- a/code/modules/vehicles/interior/interior.dm +++ b/code/modules/vehicles/interior/interior.dm @@ -118,7 +118,7 @@ var/list/passengers var/list/bounds = get_bound_turfs() - for(var/turf/T in block(bounds[1], bounds[2])) + for(var/turf/T as anything in block(bounds[1], bounds[2])) for(var/atom/A in T) if(isliving(A)) LAZYADD(passengers, A) @@ -309,12 +309,12 @@ /datum/interior/proc/get_middle_coords() var/turf/min = reservation.bottom_left_turfs[1] var/turf/max = reservation.top_right_turfs[1] - return list(Floor(min.x + (max.x - min.x)/2), Floor(min.y + (max.y - min.y)/2), min.z) + return list(floor(min.x + (max.x - min.x)/2), floor(min.y + (max.y - min.y)/2), min.z) /datum/interior/proc/get_middle_turf() var/list/turf/bounds = get_bound_turfs() - var/turf/middle = locate(Floor(bounds[1].x + (bounds[2].x - bounds[1].x)/2), Floor(bounds[1].y + (bounds[2].y - bounds[1].y)/2), bounds[1].z) + var/turf/middle = locate(floor(bounds[1].x + (bounds[2].x - bounds[1].x)/2), floor(bounds[1].y + (bounds[2].y - bounds[1].y)/2), bounds[1].z) return middle @@ -322,7 +322,7 @@ /datum/interior/proc/find_entrances() var/list/bounds = get_bound_turfs() - for(var/turf/T in block(bounds[1], bounds[2])) + for(var/turf/T as anything in block(bounds[1], bounds[2])) var/obj/effect/landmark/interior/spawn/entrance/E = locate() in T if(E) LAZYADD(entrance_markers, E) @@ -332,6 +332,6 @@ /datum/interior/proc/handle_landmarks() var/list/bounds = get_bound_turfs() - for(var/turf/T in block(bounds[1], bounds[2])) + for(var/turf/T as anything in block(bounds[1], bounds[2])) for(var/obj/effect/landmark/interior/L in T) L.on_load(src) diff --git a/code/modules/vehicles/interior/interior_landmarks.dm b/code/modules/vehicles/interior/interior_landmarks.dm index bfb4ab58c7..e0f72193a4 100644 --- a/code/modules/vehicles/interior/interior_landmarks.dm +++ b/code/modules/vehicles/interior/interior_landmarks.dm @@ -242,18 +242,18 @@ icon_state = "wall_phone" /obj/effect/landmark/interior/spawn/telephone/on_load(datum/interior/I) - var/obj/structure/phone_base/phone = new(loc) - - phone.icon = icon - phone.icon_state = icon_state - phone.layer = layer - phone.setDir(dir) - phone.alpha = alpha - phone.update_icon() - phone.pixel_x = pixel_x - phone.pixel_y = pixel_y - phone.phone_category = "Vehicles" - phone.phone_id = I.exterior.name + var/obj/structure/phone_base/Phone = new(loc) + + Phone.icon = icon + Phone.icon_state = icon_state + Phone.layer = layer + Phone.setDir(dir) + Phone.alpha = alpha + Phone.update_icon() + Phone.pixel_x = pixel_x + Phone.pixel_y = pixel_y + Phone.phone_category = "Vehicles" + Phone.phone_id = replacetext(Phone.phone_id, "\improper", "") // this has to be done because phone IDs need to be the same as their display name (\improper doesn't display, obviously) qdel(src) @@ -294,6 +294,7 @@ V.vehicle = I.exterior V.pixel_x = pixel_x V.pixel_y = pixel_y + V.layer = layer V.alpha = alpha V.layer = layer V.update_icon() @@ -314,6 +315,7 @@ V.vehicle = I.exterior V.pixel_x = pixel_x V.pixel_y = pixel_y + V.layer = layer V.alpha = alpha qdel(src) diff --git a/code/modules/vehicles/interior/objects/fancy_locker.dm b/code/modules/vehicles/interior/objects/fancy_locker.dm deleted file mode 100644 index f1068812a7..0000000000 --- a/code/modules/vehicles/interior/objects/fancy_locker.dm +++ /dev/null @@ -1,38 +0,0 @@ -/obj/structure/closet/fancy - name = "fancy closet" - desc = "It's a fancy storage unit." - - var/datum/interior/interior = null - var/entrance_speed = 1 SECONDS - var/passengers_slots = 2 - var/revivable_dead_slots = 0 - var/list/role_reserved_slots = list() - var/xenos_slots = 2 - -/obj/structure/closet/fancy/Initialize() - . = ..() - return INITIALIZE_HINT_LATELOAD - -/obj/structure/closet/fancy/LateInitialize() - . = ..() - interior = new(src) - INVOKE_ASYNC(src, PROC_REF(do_create_interior)) - -/obj/structure/closet/fancy/proc/do_create_interior() - interior.create_interior("fancylocker") - -/obj/structure/closet/fancy/Destroy() - QDEL_NULL(interior) - return ..() - -/obj/structure/closet/fancy/store_mobs(stored_units) - for(var/mob/M in loc) - var/succ = interior.enter(M, "default") - if(!succ) - break - -/obj/structure/interior_exit/fancy - name = "fancy wooden door" - icon = 'icons/obj/structures/doors/mineral_doors.dmi' - icon_state = "wood" - density = TRUE diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm index 6a25d72e46..45eee0fe4a 100644 --- a/code/modules/vehicles/multitile/multitile.dm +++ b/code/modules/vehicles/multitile/multitile.dm @@ -260,7 +260,7 @@ /obj/vehicle/multitile/get_examine_text(mob/user) . = ..() for(var/obj/item/hardpoint/H in hardpoints) - . += "There is \a [H] module installed." + . += "There [H.p_are()] \a [H] module[H.p_s()] installed." H.examine(user, TRUE) if(clamped) . += "There is a vehicle clamp attached." @@ -269,7 +269,7 @@ for(var/datum/role_reserved_slots/RRS in interior.role_reserved_slots) passengers_amount += RRS.taken if(passengers_amount > 0) - . += "You can sense approximately [passengers_amount] hosts inside." + . += "You can sense approximately [passengers_amount] host\s inside." /obj/vehicle/multitile/proc/load_hardpoints() return @@ -295,14 +295,14 @@ // Health check is done before the hardpoint takes damage // This way, the frame won't take damage at the same time hardpoints break if(H.can_take_damage()) - H.take_damage(round(damage * get_dmg_multi(type))) + H.take_damage(floor(damage * get_dmg_multi(type))) all_broken = FALSE // If all hardpoints are broken, the vehicle frame begins taking full damage if(all_broken) health = max(0, health - damage * get_dmg_multi(type)) else //otherwise, 1/10th of damage lands on the hull - health = max(0, health - round(damage * get_dmg_multi(type) / 10)) + health = max(0, health - floor(damage * get_dmg_multi(type) / 10)) if(ismob(attacker)) var/mob/M = attacker @@ -336,11 +336,12 @@ // Checked here because we want to be able to null the mob in a seat if(!istype(M)) - return + return FALSE M.set_interaction(src) M.reset_view(src) give_action(M, /datum/action/human_action/vehicle_unbuckle) + return TRUE /// Get crewmember of seat. /obj/vehicle/multitile/proc/get_seat_mob(seat) diff --git a/code/modules/vehicles/multitile/multitile_bump.dm b/code/modules/vehicles/multitile/multitile_bump.dm index 1f9e7897b0..2885f99ed1 100644 --- a/code/modules/vehicles/multitile/multitile_bump.dm +++ b/code/modules/vehicles/multitile/multitile_bump.dm @@ -341,10 +341,24 @@ return TRUE /obj/structure/machinery/m56d_post/handle_vehicle_bump(obj/vehicle/multitile/V) - new /obj/item/device/m56d_post(loc) playsound(V, 'sound/effects/metal_crash.ogg', 20) visible_message(SPAN_DANGER("\The [V] drives over \the [src]!")) - qdel(src) + + if(gun_mounted) + var/obj/item/device/m56d_gun/HMG = new(loc) + transfer_label_component(HMG) + HMG.rounds = gun_rounds + HMG.has_mount = TRUE + if(gun_health) + HMG.health = gun_health + HMG.update_icon() + qdel(src) + else + var/obj/item/device/m56d_post/post = new(loc) + post.health = health + transfer_label_component(post) + qdel(src) + return TRUE /obj/structure/machinery/m56d_hmg/handle_vehicle_bump(obj/vehicle/multitile/V) @@ -352,7 +366,9 @@ HMG.name = name HMG.rounds = rounds HMG.has_mount = TRUE + HMG.health = health HMG.update_icon() + transfer_label_component(HMG) playsound(V, 'sound/effects/metal_crash.ogg', 20) visible_message(SPAN_DANGER("\The [V] drives over \the [src]!")) qdel(src) @@ -368,7 +384,7 @@ var/obj/item/device/m2c_gun/HMG = new(loc) HMG.name = name HMG.rounds = rounds - HMG.overheat_value = round(0.5 * overheat_value) + HMG.overheat_value = floor(0.5 * overheat_value) if(HMG.overheat_value <= 10) HMG.overheat_value = 0 HMG.update_icon() @@ -421,14 +437,6 @@ qdel(src) return TRUE -/obj/structure/machinery/hydro_floodlight/handle_vehicle_bump(obj/vehicle/multitile/V) - if(V.vehicle_flags & VEHICLE_CLASS_WEAK) - return FALSE - playsound(V, 'sound/effects/metal_crash.ogg', 20) - visible_message(SPAN_DANGER("\The [V] crushes \the [src]!")) - qdel(src) - return TRUE - /obj/structure/machinery/floodlight/handle_vehicle_bump(obj/vehicle/multitile/V) if(V.vehicle_flags & VEHICLE_CLASS_WEAK) return FALSE @@ -478,7 +486,7 @@ /obj/vehicle/handle_vehicle_bump(obj/vehicle/multitile/V) V.take_damage_type(5, "blunt", V) - health = health - Ceiling(maxhealth/2.8) //we destroy any simple vehicle in 3 crushes + health = health - ceil(maxhealth/2.8) //we destroy any simple vehicle in 3 crushes healthcheck() visible_message(SPAN_DANGER("\The [V] crushes into \the [src]!")) @@ -639,7 +647,7 @@ //Check what dir they should be facing to be looking directly at the vehicle else if(dir_between == dir) //front hit (facing the vehicle) blocked = TRUE - else if(dir_between == reverse_dir[dir]) // rear hit (facing directly away from the vehicle) + else if(dir_between == GLOB.reverse_dir[dir]) // rear hit (facing directly away from the vehicle) takes_damage = TRUE //side hit else if(caste.caste_type == XENO_CASTE_QUEEN) // queen blocks even with sides @@ -710,7 +718,7 @@ //this adds more flexibility for trample damage damage_percentage *= VEHICLE_TRAMPLE_DAMAGE_APC_REDUCTION - damage_percentage -= round((armor_deflection*(armor_integrity/100)) / VEHICLE_TRAMPLE_DAMAGE_REDUCTION_ARMOR_MULT) // Ravager reduces percentage by ~50% by virtue of having very high armor. + damage_percentage -= floor((armor_deflection*(armor_integrity/100)) / VEHICLE_TRAMPLE_DAMAGE_REDUCTION_ARMOR_MULT) // Ravager reduces percentage by ~50% by virtue of having very high armor. if(locate(/obj/item/hardpoint/support/overdrive_enhancer) in V) damage_percentage += VEHICLE_TRAMPLE_DAMAGE_OVERDRIVE_BUFF @@ -718,7 +726,7 @@ damage_percentage = max(VEHICLE_TRAMPLE_DAMAGE_OVERDRIVE_BUFF, max(0, damage_percentage)) damage_percentage = max(damage_percentage, VEHICLE_TRAMPLE_DAMAGE_MIN) - apply_damage(round((maxHealth / 100) * damage_percentage), BRUTE) + apply_damage(floor((maxHealth / 100) * damage_percentage), BRUTE) last_damage_data = create_cause_data("[initial(V.name)] roadkill", V.seats[VEHICLE_DRIVER]) var/mob/living/driver = V.get_seat_mob(VEHICLE_DRIVER) log_attack("[key_name(src)] was rammed by [key_name(driver)] with [V].") @@ -728,7 +736,7 @@ return TRUE else if (mob_moved) if(momentum_penalty) - V.move_momentum = Floor(V.move_momentum*0.8) + V.move_momentum = floor(V.move_momentum*0.8) V.update_next_move() playsound(loc, "punch", 25, 1) return TRUE @@ -753,7 +761,7 @@ visible_message(SPAN_DANGER("[src] digs it's claws into the ground, slowing [V]'s movement!"), SPAN_DANGER("You dig your claws into the ground, slowing [V]'s movement!")) var/mob_moved = step(src, V.last_move_dir) - V.move_momentum = Floor(V.move_momentum/3) + V.move_momentum = floor(V.move_momentum/3) V.update_next_move() return mob_moved diff --git a/code/modules/vehicles/multitile/multitile_hardpoints.dm b/code/modules/vehicles/multitile/multitile_hardpoints.dm index 949cc29b80..7ff5cf809c 100644 --- a/code/modules/vehicles/multitile/multitile_hardpoints.dm +++ b/code/modules/vehicles/multitile/multitile_hardpoints.dm @@ -63,7 +63,7 @@ //Putting on hardpoints //Similar to repairing stuff, down to the time delay /obj/vehicle/multitile/proc/install_hardpoint(obj/item/O, mob/user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know what to do with [O] on \the [src].")) return @@ -132,7 +132,7 @@ //User-orientated proc for taking of hardpoints //Again, similar to the above ones /obj/vehicle/multitile/proc/uninstall_hardpoint(obj/item/O, mob/user) - if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_ENGI)) + if(!skillcheck(user, SKILL_ENGINEER, SKILL_ENGINEER_TRAINED)) to_chat(user, SPAN_WARNING("You don't know what to do with \the [O] on \the [src].")) return @@ -149,7 +149,7 @@ hps += H var/chosen_hp = tgui_input_list(usr, "Select a hardpoint to remove", "Hardpoint Removal", (hps + "Cancel")) - if(chosen_hp == "Cancel" || !chosen_hp) + if(chosen_hp == "Cancel" || !chosen_hp || (get_dist(src, user) > 2)) //get_dist uses 2 because the vehicle is 3x3 return var/obj/item/hardpoint/old = chosen_hp @@ -158,6 +158,9 @@ to_chat(user, SPAN_WARNING("There is nothing installed there.")) return + if(!old.can_be_removed(user)) + return + // It's in a holder if(!(old in hardpoints)) for(var/obj/item/hardpoint/holder/H in hardpoints) diff --git a/code/modules/vehicles/multitile/multitile_interaction.dm b/code/modules/vehicles/multitile/multitile_interaction.dm index 466db72102..d6e5bcbb39 100644 --- a/code/modules/vehicles/multitile/multitile_interaction.dm +++ b/code/modules/vehicles/multitile/multitile_interaction.dm @@ -255,7 +255,7 @@ return XENO_NO_DELAY_ACTION if(X.mob_size < mob_size_required_to_hit) - to_chat(X, SPAN_XENOWARNING("You're too small to do any significant damage to this vehicle!")) + to_chat(X, SPAN_XENOWARNING("We're too small to do any significant damage to this vehicle!")) return XENO_NO_DELAY_ACTION var/damage = (X.melee_vehicle_damage + rand(-5,5)) * XENO_UNIVERSAL_VEHICLE_DAMAGEMULT @@ -276,11 +276,11 @@ if(!damage) playsound(X.loc, 'sound/weapons/alien_claw_swipe.ogg', 25, 1) X.visible_message(SPAN_DANGER("\The [X] swipes at \the [src] to no effect!"), \ - SPAN_DANGER("You swipe at \the [src] to no effect!")) + SPAN_DANGER("We swipe at \the [src] to no effect!")) return XENO_ATTACK_ACTION X.visible_message(SPAN_DANGER("\The [X] slashes \the [src]!"), \ - SPAN_DANGER("You slash \the [src]!")) + SPAN_DANGER("We slash \the [src]!")) playsound(X.loc, pick('sound/effects/metalhit.ogg', 'sound/weapons/alien_claw_metal1.ogg', 'sound/weapons/alien_claw_metal2.ogg', 'sound/weapons/alien_claw_metal3.ogg'), 25, 1) take_damage_type(damage * damage_mult, "slash", X) @@ -304,7 +304,7 @@ if(ammo_flags & AMMO_ANTISTRUCT|AMMO_ANTIVEHICLE) // Multiplier based on tank railgun relationship, so might have to reconsider multiplier for AMMO_SIEGE in general - damage = round(damage*ANTISTRUCT_DMG_MULT_TANK) + damage = floor(damage*ANTISTRUCT_DMG_MULT_TANK) if(ammo_flags & AMMO_ACIDIC) dam_type = "acid" @@ -427,9 +427,9 @@ else if(!entrance_used && !isxeno(M)) return - var/enter_msg = "You start climbing into \the [src]..." + var/enter_msg = "We start climbing into \the [src]..." if(health <= 0 && isxeno(M)) - enter_msg = "You start prying away loose plates, squeezing into \the [src]..." + enter_msg = "We start prying away loose plates, squeezing into \the [src]..." // Check if drag anything var/atom/dragged_atom @@ -514,7 +514,7 @@ var/success = interior.enter(dragged_atom, entrance_used) if(success) - to_chat(user, SPAN_NOTICE("You succesfully fit [dragged_atom] inside \the [src].")) + to_chat(user, SPAN_NOTICE("You successfully fit [dragged_atom] inside \the [src].")) else to_chat(user, SPAN_WARNING("You fail to fit [dragged_atom] inside \the [src]! It's either too big or vehicle is out of space!")) return diff --git a/code/modules/vehicles/multitile/multitile_movement.dm b/code/modules/vehicles/multitile/multitile_movement.dm index b95a7bd057..fc632fa885 100644 --- a/code/modules/vehicles/multitile/multitile_movement.dm +++ b/code/modules/vehicles/multitile/multitile_movement.dm @@ -141,15 +141,18 @@ /obj/vehicle/multitile/proc/can_move(direction) var/can_move = TRUE - var/turf/min_turf = locate(x + bound_x / world.icon_size, y + bound_y / world.icon_size, z) - var/turf/max_turf = locate(min_turf.x + (bound_width / world.icon_size) - 1, min_turf.y + (bound_height / world.icon_size) - 1, z) - var/list/old_turfs = block(min_turf, max_turf) + var/bound_x_tiles = bound_x / world.icon_size + var/bound_y_tiles = bound_y / world.icon_size + var/turf/min_turf = locate(x + bound_x_tiles, y + bound_y_tiles, z) + + var/bound_width_tiles = bound_width / world.icon_size + var/bound_height_tiles = bound_height / world.icon_size + var/list/old_turfs = CORNER_BLOCK(min_turf, bound_width_tiles, bound_height_tiles) var/turf/new_loc = get_step(src, direction) - min_turf = locate(new_loc.x + bound_x / world.icon_size, new_loc.y + bound_y / world.icon_size, z) - max_turf = locate(min_turf.x + (bound_width / world.icon_size) - 1, min_turf.y + (bound_height / world.icon_size) - 1, z) + min_turf = locate(new_loc.x + bound_x_tiles, new_loc.y + bound_y_tiles, z) - for(var/turf/T in block(min_turf, max_turf)) + for(var/turf/T as anything in CORNER_BLOCK(min_turf, bound_width_tiles, bound_height_tiles)) // only check the turfs we're moving to if(T in old_turfs) continue @@ -254,7 +257,7 @@ if(abs(move_momentum) < 1) return - var/fling_distance = Ceiling(abs(move_momentum)/move_max_momentum) * 2 + var/fling_distance = ceil(abs(move_momentum)/move_max_momentum) * 2 var/turf/target = interior.get_middle_turf() for (var/x in 0 to fling_distance-1) @@ -264,7 +267,7 @@ break var/list/bounds = interior.get_bound_turfs() - for(var/turf/T in block(bounds[1], bounds[2])) + for(var/turf/T as anything in block(bounds[1], bounds[2])) for(var/atom/movable/A in T) if(A.anchored) continue @@ -272,7 +275,7 @@ if(isliving(A)) var/mob/living/M = A - shake_camera(M, 2, Ceiling(abs(move_momentum)/move_max_momentum) * 1) + shake_camera(M, 2, ceil(abs(move_momentum)/move_max_momentum) * 1) if(!M.buckled) M.apply_effect(1, STUN) M.apply_effect(2, WEAKEN) diff --git a/code/modules/vehicles/multitile/multitile_verbs.dm b/code/modules/vehicles/multitile/multitile_verbs.dm index 3801cd2e17..5d73351321 100644 --- a/code/modules/vehicles/multitile/multitile_verbs.dm +++ b/code/modules/vehicles/multitile/multitile_verbs.dm @@ -65,7 +65,7 @@ if(!new_hp) new_hp = 0 - new_hp = (new_hp % usable_hps.len) + 1 + new_hp = (new_hp % length(usable_hps)) + 1 var/obj/item/hardpoint/HP = usable_hps[new_hp] if(!HP) return @@ -167,7 +167,7 @@ )) data["resistance_data"] = resist_data_list - data["integrity"] = round(100 * health / initial(health)) + data["integrity"] = floor(100 * health / initial(health)) data["door_locked"] = door_locked data["total_passenger_slots"] = interior.passengers_slots data["total_taken_slots"] = interior.passengers_taken_slots diff --git a/code/modules/vehicles/souto_mobile.dm b/code/modules/vehicles/souto_mobile.dm new file mode 100644 index 0000000000..fa559983d0 --- /dev/null +++ b/code/modules/vehicles/souto_mobile.dm @@ -0,0 +1,43 @@ +/obj/vehicle/souto + name = "\improper Soutomobile" + icon_state = "soutomobile" + desc = "Almost, but not quite, the best ride in the universe." + move_delay = 3 //The speed of a fed but shoeless pajamarine, or a bit slower than a heavy-armor marine. + buckling_y = 4 + layer = ABOVE_LYING_MOB_LAYER //Allows it to drive over people, but is below the driver. + +/obj/vehicle/souto/Initialize() + . = ..() + var/image/I = new(icon = 'icons/obj/vehicles/vehicles.dmi', icon_state = "soutomobile_overlay", layer = ABOVE_MOB_LAYER) //over mobs + overlays += I + +/obj/vehicle/souto/manual_unbuckle(mob/user) + if(buckled_mob && buckled_mob != user) + if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + ..() + else ..() + +/obj/vehicle/souto/relaymove(mob/user, direction) + if(user.is_mob_incapacitated()) return + if(world.time > l_move_time + move_delay) + . = step(src, direction) + +/obj/vehicle/souto/super + desc = "The best ride in the universe, for the one-and-only Souto Man!" + health = 1000 + locked = FALSE + unacidable = TRUE + indestructible = TRUE + +/obj/vehicle/souto/super/explode() + for(var/mob/M as anything in viewers(7, src)) + M.show_message("Somehow, [src] still looks as bright and shiny as a new can of Souto Classic.", SHOW_MESSAGE_VISIBLE) + health = initial(health) //Souto Man never dies, and neither does his bike. + +/obj/vehicle/souto/super/buckle_mob(mob/M, mob/user) + if(!locked) //Vehicle is unlocked until first being mounted, since the Soutomobile is faction-locked and otherwise Souto Man cannot automatically buckle in on spawn as his equipment is spawned before his ID. + locked = TRUE + else if(M == user && M.faction != FACTION_SOUTO && locked == TRUE) //Are you a cool enough dude to drive this bike? Nah, nobody's THAT cool. + to_chat(user, SPAN_WARNING("Somehow, as you take hold of the handlebars, [src] manages to glare at you. You back off. We didn't sign up for haunted motorbikes, man.")) + return + ..() diff --git a/code/modules/vehicles/tank/tank.dm b/code/modules/vehicles/tank/tank.dm index 3264b4bcea..f0ec828f4b 100644 --- a/code/modules/vehicles/tank/tank.dm +++ b/code/modules/vehicles/tank/tank.dm @@ -89,7 +89,7 @@ /obj/vehicle/multitile/tank/load_role_reserved_slots() var/datum/role_reserved_slots/RRS = new RRS.category_name = "Crewmen" - RRS.roles = list(JOB_CREWMAN, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) + RRS.roles = list(JOB_TANK_CREW, JOB_WO_CREWMAN, JOB_UPP_CREWMAN, JOB_PMC_CREWMAN) RRS.total = 2 role_reserved_slots += RRS @@ -156,7 +156,7 @@ if(!T) return FALSE - if(direction == reverse_dir[T.dir] || direction == T.dir) + if(direction == GLOB.reverse_dir[T.dir] || direction == T.dir) return FALSE T.user_rotation(user, turning_angle(T.dir, direction)) @@ -164,6 +164,39 @@ return TRUE +/obj/vehicle/multitile/tank/MouseDrop_T(mob/dropped, mob/user) + . = ..() + if((dropped != user) || !isxeno(user)) + return + + if(health > 0) + to_chat(user, SPAN_XENO("We can't jump over [src] until it is destroyed!")) + return + + var/turf/current_turf = get_turf(user) + var/dir_to_go = get_dir(current_turf, src) + for(var/i in 1 to 3) + current_turf = get_step(current_turf, dir_to_go) + if(!(current_turf in locs)) + break + + if(current_turf.density) + to_chat(user, SPAN_XENO("The path over [src] is obstructed!")) + return + + // Now we check to make sure the turf on the other side of the tank isn't dense too + current_turf = get_step(current_turf, dir_to_go) + if(current_turf.density) + to_chat(user, SPAN_XENO("The path over [src] is obstructed!")) + return + + to_chat(user, SPAN_XENO("We begin to jump over [src]...")) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_HOSTILE)) + to_chat(user, SPAN_XENO("We stop jumping over [src].")) + return + + user.forceMove(current_turf) + to_chat(user, SPAN_XENO("We jump to the other side of [src].")) /* ** PRESETS SPAWNERS */ diff --git a/code/modules/vehicles/van/van.dm b/code/modules/vehicles/van/van.dm index 3dcc603445..a63ad3e9a4 100644 --- a/code/modules/vehicles/van/van.dm +++ b/code/modules/vehicles/van/van.dm @@ -166,6 +166,8 @@ var/mob/M = I M.client.images -= normal_image + QDEL_NULL(light_holder) + return ..() diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm index 2239329d3e..b7f29da67f 100644 --- a/code/modules/vehicles/vehicle.dm +++ b/code/modules/vehicles/vehicle.dm @@ -6,6 +6,7 @@ anchored = TRUE animate_movement = 1 can_buckle = TRUE + blocks_emissive = EMISSIVE_BLOCK_GENERIC // The mobs that are in each position/seat of the vehicle var/list/mob/seats = list( @@ -18,15 +19,19 @@ var/maxhealth = 100 var/fire_dam_coeff = 1 var/brute_dam_coeff = 1 - var/open = 0 //Maint panel + ///Maint panel + var/open = 0 var/locked = TRUE var/stat = 0 - var/powered = 0 //set if vehicle is powered and should use fuel when moving - var/move_delay = 1 //set this to limit the speed of the vehicle + ///set if vehicle is powered and should use fuel when moving + var/powered = 0 + ///set this to limit the speed of the vehicle + var/move_delay = 1 var/buckling_y = 0 var/obj/item/cell/cell - var/charge_use = 5 //set this to adjust the amount of power the vehicle uses per move + ///set this to adjust the amount of power the vehicle uses per move + var/charge_use = 5 can_block_movement = TRUE //------------------------------------------- @@ -80,10 +85,10 @@ else if(W.force) switch(W.damtype) if("fire") - health -= W.force * fire_dam_coeff + health -= W.force * W.demolition_mod * fire_dam_coeff if("brute") - health -= W.force * brute_dam_coeff - playsound(src.loc, "smash.ogg", 25, 1) + health -= W.force * W.demolition_mod * brute_dam_coeff + playsound(loc, "smash.ogg", 25, 1) user.visible_message(SPAN_DANGER("[user] hits [src] with [W]."),SPAN_DANGER("You hit [src] with [W].")) healthcheck() else @@ -155,10 +160,11 @@ // Checked here because we want to be able to null the mob in a seat if(!istype(M)) - return + return FALSE M.forceMove(src) M.set_interaction(src) + return TRUE /obj/vehicle/proc/turn_on() if(stat) @@ -267,48 +273,3 @@ //------------------------------------------------------- /obj/vehicle/proc/update_stats() return - -/obj/vehicle/souto - name = "\improper Soutomobile" - icon_state = "soutomobile" - desc = "Almost, but not quite, the best ride in the universe." - move_delay = 3 //The speed of a fed but shoeless pajamarine, or a bit slower than a heavy-armor marine. - buckling_y = 4 - layer = ABOVE_LYING_MOB_LAYER //Allows it to drive over people, but is below the driver. - -/obj/vehicle/souto/Initialize() - . = ..() - var/image/I = new(icon = 'icons/obj/vehicles/vehicles.dmi', icon_state = "soutomobile_overlay", layer = ABOVE_MOB_LAYER) //over mobs - overlays += I - -/obj/vehicle/souto/manual_unbuckle(mob/user) - if(buckled_mob && buckled_mob != user) - if(do_after(user, 20, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - ..() - else ..() - -/obj/vehicle/souto/relaymove(mob/user, direction) - if(user.is_mob_incapacitated()) return - if(world.time > l_move_time + move_delay) - . = step(src, direction) - - -/obj/vehicle/souto/super - desc = "The best ride in the universe, for the one-and-only Souto Man!" - health = 1000 - locked = FALSE - unacidable = TRUE - indestructible = TRUE - -/obj/vehicle/souto/super/explode() - for(var/mob/M as anything in viewers(7, src)) - M.show_message("Somehow, [src] still looks as bright and shiny as a new can of Souto Classic.", SHOW_MESSAGE_VISIBLE) - health = initial(health) //Souto Man never dies, and neither does his bike. - -/obj/vehicle/souto/super/buckle_mob(mob/M, mob/user) - if(!locked) //Vehicle is unlocked until first being mounted, since the Soutomobile is faction-locked and otherwise Souto Man cannot automatically buckle in on spawn as his equipment is spawned before his ID. - locked = TRUE - else if(M == user && M.faction != FACTION_SOUTO && locked == TRUE) //Are you a cool enough dude to drive this bike? Nah, nobody's THAT cool. - to_chat(user, SPAN_WARNING("Somehow, as you take hold of the handlebars, [src] manages to glare at you. You back off. We didn't sign up for haunted motorbikes, man.")) - return - ..() diff --git a/code/names.dm b/code/names.dm deleted file mode 100644 index 0961d12f7d..0000000000 --- a/code/names.dm +++ /dev/null @@ -1,39 +0,0 @@ -var/list/ai_names = file2list("strings/ai.txt") -var/list/first_names_male = file2list("strings/first_male.txt") -var/list/first_names_female = file2list("strings/first_female.txt") -var/list/last_names = file2list("strings/last.txt") -var/list/clown_names = file2list("strings/clown.txt") -var/list/operation_titles = file2list("strings/operation_title.txt") -var/list/operation_prefixes = file2list("strings/operation_prefix.txt") -var/list/operation_postfixes = file2list("strings/operation_postfix.txt") - -var/list/verbs = file2list("strings/verbs.txt") -//loaded on startup because of " -//would include in rsc if ' was used - - -var/list/first_names_male_clf = list("Alan","Jack","Bil","Jonathan","John","Shiro","Gareth","Clark","Sam", "Lionel", "Aaron", "Charlie", "Scott", "Winston", "Aidan", "Ellis", "Mason", "Wesley", "Nicholas", "Calvin", "Nishikawa", "Hiroto", "Chiba", "Ouchi", "Furuse", "Takagi", "Oba", "Kishimoto") -var/list/first_names_female_clf = list("Emma", "Adelynn", "Mary", "Halie", "Chelsea", "Lexie", "Arya", "Alicia", "Selah", "Amber", "Heather", "Myra", "Heidi", "Charlotte", "Oliva", "Lydia", "Tia", "Riko", "Ari", "Machida", "Ueki", "Mihara", "Noda") -var/list/last_names_clf = list("Hawkins","Rickshaw","Elliot","Billard","Cooper","Fox", "Barlow", "Barrows", "Stewart", "Morgan", "Green", "Stone", "Burr", "Hunt", "Yuko", "Gesshin", "Takanibu", "Tetsuzan", "Tomomi", "Bokkai", "Takesi") - -var/list/first_names_male_colonist = list("Alan","Jack","Bil","Jonathan","John","Shiro","Gareth","Clark","Sam", "Lionel", "Aaron", "Charlie", "Scott", "Winston", "Aidan", "Ellis", "Mason", "Wesley", "Nicholas", "Calvin", "Nishikawa", "Hiroto", "Chiba", "Ouchi", "Furuse", "Takagi", "Oba", "Kishimoto") -var/list/first_names_female_colonist = list("Emma", "Adelynn", "Mary", "Halie", "Chelsea", "Lexie", "Arya", "Alicia", "Selah", "Amber", "Heather", "Myra", "Heidi", "Charlotte", "Ashley", "Raven", "Tori", "Anne", "Madison", "Oliva", "Lydia", "Tia", "Riko", "Ari", "Machida", "Ueki", "Mihara", "Noda") -var/list/last_names_colonist = list("Hawkins","Rickshaw","Elliot","Billard","Cooper","Fox", "Barlow", "Barrows", "Stewart", "Morgan", "Green", "Stone", "Titan", "Crowe", "Krantz", "Pathillo", "Driggers", "Burr", "Hunt", "Yuko", "Gesshin", "Takanibu", "Tetsuzan", "Tomomi", "Bokkai", "Takesi") - -var/list/first_names_male_upp = list("Badai","Mongkeemur","Alexei","Andrei","Artyom","Viktor","Xiangai","Ivan","Choban","Oleg", "Dayan", "Taghi", "Batu", "Arik", "Orda", "Ghazan", "Bala", "Gao", "Zhan", "Ren", "Hou", "Xue", "Serafim", "Luca", "Su", "György", "István", "Mihály", "Vladimir", "Aleksandr", "Fyodor", "Bhodar", "Qazem", "Łukasz", "Miłogost", "Radogost", "Uniegost", "Hostirad", "Hostimil", "Hostisvit", "Lubgost", "Gościsław", "Vseslav", "Bohuměr", "Bronisław", "Česćiměr", "Dobysław", "Horisław", "Jaroměr", "Mirosław", "Mječisław", "Radoměr", "Stanij", "Stanisław", "Wjeleměr", "Wójsław") -var/list/first_names_female_upp = list("Altani","Cirina","Anastasiya","Saran","Wei","Oksana","Ren","Svena","Tatyana","Yaroslava", "Izabella", "Kata", "Krisztina", "Miruna", "Flori", "Lucia", "Anica", "Li", "Yimu", "Alona", "Hsiau-Li", "Xiaoling", "Erhong", "Baśka", "Angela", "Angelina", "Angja", "Ankica", "Biljana", "Bisera", "Bistra", "Blaga", "Blagica", "Blagorodna", "Verka", "Vladica", "Denica", "Živka", "Zlata", "Jagoda", "Letka", "Ljupka", "Mila", "Mirjana", "Mirka", "Rada", "Radmila", "Slavica", "Slavka", "Snežana", "Stojna", "Ubavka", "Jaromir", "Mscëwòj", "Subisłôw", "Swiãtopôłk", "Ji-Sun", "Chaeyong", "Chaewon", "Saerom", "Seoyeong", "Jiheon", "Hayoung") -var/list/last_names_upp = list("Azarov","Bogdanov","Barsukov","Golovin","Davydov","Khan","Noica","Barbu","Zhukov","Ivanov","Mihai","Kasputin","Belov", "Belova","Melnikov", "Vasilevsky", "Aleksander", "Halkovich", "Stanislaw", "Proca", "Zaituc", "Arcos", "Kubat", "Kral", "Volf", "Xun", "Jia", "Bachoń", "Wang", "Ji", "Xiang", "Zhang", "Mei", "Ma", "Kim", "Yi", "Ri", "Pak", "Chong", "Baek", "Kwon", "Hwang", "Roh", "Lee", "Song") - -var/list/first_names_male_pmc = list("Owen","Luka","Nelson","Branson", "Tyson", "Leo", "Bryant", "Kobe", "Rohan", "Riley", "Aidan", "Watase","Egawa", "Hisakawa", "Koide", "Remy", "Martial", "Magnus", "Heiko", "Lennard") -var/list/first_names_female_pmc = list("Madison","Jessica","Anna","Juliet", "Olivia", "Lea", "Diane", "Kaori", "Beatrice", "Riley", "Amy", "Natsue","Yumi", "Aiko", "Fujiko", "Jennifer", "Ashley", "Mary", "Hitomi", "Lisa") -var/list/last_names_pmc = list("Bates","Shaw","Hansen","Black", "Chambers", "Hall", "Gibson", "Weiss", "Waller", "Burton", "Bakin", "Rohan", "Naomichi", "Yakumo", "Yosai", "Gallagher", "Hiles", "Bourdon", "Strassman", "Palau") - -var/list/first_names_male_gladiator = list("Augustus", "Maximus", "Octavius", "Septimus", "Titus", "Brutus", "Caesar", "Justinian") -var/list/first_names_female_gladiator = list("Aelia", "Aquila", "Caecilia", "Camilla", "Claudia", "Flavia", "Martina", "Theodora") - -var/list/first_names_male_dutch = list("Raymond", "Jesse", "Jack", "John", "Sam", "Aaron", "Charlie", "Ellis", "Nick", "Francis", "Louis") -var/list/first_names_female_dutch = list("Chelsea", "Mira", "Jessica", "Catherine", "Eliza", "Emma", "Ashley", "Annie", "Alicia", "Miranda", "Ellen") - -var/list/monkey_names = list("Abu", "Aldo", "Bear", "Bingo", "Clyde", "Crystal", "Gordo", "George", "Koko", "Marcel", "Nim", "Rafiki", "Spike", "Banana", "Boots", "Bubbles", "Smiley", "Winston") - -var/list/weapon_surnames = list("Adze", "Axe", "Bagh Nakha", "Bo", "Bola", "Bow", "Bowman", "Cannon", "Carbine", "Cestus", "Club", "Culverin", "Dagger", "Dao", "Derringer", "Dha", "Dussack", "Emeici", "Falchion", "Fan", "Flyssa", "Gauntlet", "Hammer", "Halberd", "Harquebus", "Hatchet", "Hwando", "Katar", "Kampilan", "Knuckles", "Lance", "Lancer", "Larim", "Maduvu", "Mace", "Maru", "Mauser", "Messer", "Mine", "Mubucae", "Nyepel", "Onager", "Pata", "Pike", "Ram", "Saber", "Seax", "Shamsir", "Sickle", "Sling", "Spear", "Spears", "Staff", "Sword", "Tekko") diff --git a/code/span_macros.dm b/code/span_macros.dm index 77e57f2077..f0d78bba61 100644 --- a/code/span_macros.dm +++ b/code/span_macros.dm @@ -19,6 +19,8 @@ #define SPAN_XENOWARNING(X) "[X]" #define SPAN_XENOMINORWARNING(X) "[X]" +#define SPAN_PSYTALK(X) "[X]" + // Yautja related #define SPAN_YAUTJABOLD(X) "[X]" #define SPAN_YAUTJABOLDBIG(X) "[X]" @@ -50,6 +52,7 @@ #define SPAN_MENTORHELP(X) ("" + X + "") #define SPAN_MENTORSAY(X) ("" + X + "") #define SPAN_MENTORBODY(X) ("" + X + "") +#define SPAN_NICHE(X) "[X]" #define SPAN_PM(X) "[X]" @@ -106,3 +109,4 @@ #define SPAN_MAROON(X) "[X]" #define SPAN_STAFF_IC(X) "[X]" +#define SPAN_BIGNOTICE(X) "[X]" diff --git a/code/stylesheet.dm b/code/stylesheet.dm index d1ddf06c2a..3e3a2d425b 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -31,6 +31,7 @@ em {font-style: normal; font-weight: bold;} .mentorstaff {color: #b5850d; font-weight: bold;} .staffsay {color: #b5850d; font-weight: bold;} .staff_ic {color: #000099;} +.niche {color: #386aff; font-weight: bold;} .name { font-weight: bold;} @@ -122,6 +123,8 @@ h1.alert, h2.alert {color: #000000;} .xeno {color: #900090; font-style: italic;} .xenoleader {color: #730d73; font-style: italic; font-size: 3;} .xenoqueen {color: #730d73; font-style: italic; font-weight: bold; font-size: 3;} +.psy_talk {color: #a70090; font-style: italic; font-weight: bold; font-size: 3;} + .newscaster {color: #800000;} .role_header {color: #db0000 text-align: center; font-weight: bold; font-family: trebuchet-ms; font-size: 2;} diff --git a/colonialmarines.dme b/colonialmarines.dme index e403f9aff4..2acf1dec00 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -17,7 +17,6 @@ #include "code\_experiments.dm" #include "code\_macros.dm" #include "code\global.dm" -#include "code\names.dm" #include "code\span_macros.dm" #include "code\stylesheet.dm" #include "code\__DEFINES\__game.dm" @@ -38,6 +37,7 @@ #include "code\__DEFINES\atmospherics.dm" #include "code\__DEFINES\autofire.dm" #include "code\__DEFINES\autolathe.dm" +#include "code\__DEFINES\autowiki.dm" #include "code\__DEFINES\blood.dm" #include "code\__DEFINES\bsql.config.dm" #include "code\__DEFINES\bullet_traits.dm" @@ -79,6 +79,7 @@ #include "code\__DEFINES\MC.dm" #include "code\__DEFINES\minimap.dm" #include "code\__DEFINES\misc.dm" +#include "code\__DEFINES\mob.dm" #include "code\__DEFINES\mob_hud.dm" #include "code\__DEFINES\mobs.dm" #include "code\__DEFINES\mode.dm" @@ -104,6 +105,7 @@ #include "code\__DEFINES\strippable.dm" #include "code\__DEFINES\STUI.dm" #include "code\__DEFINES\subsystems.dm" +#include "code\__DEFINES\supply.dm" #include "code\__DEFINES\surgery.dm" #include "code\__DEFINES\techtree.dm" #include "code\__DEFINES\text.dm" @@ -113,6 +115,7 @@ #include "code\__DEFINES\traits.dm" #include "code\__DEFINES\turf_flags.dm" #include "code\__DEFINES\turfs.dm" +#include "code\__DEFINES\tutorial.dm" #include "code\__DEFINES\unit_tests.dm" #include "code\__DEFINES\urls.dm" #include "code\__DEFINES\vehicle.dm" @@ -142,6 +145,17 @@ #include "code\__DEFINES\dcs\signals\atom\mob\living\signals_human.dm" #include "code\__DEFINES\dcs\signals\atom\mob\living\signals_living.dm" #include "code\__DEFINES\dcs\signals\atom\mob\living\signals_xeno.dm" +#include "code\__DEFINES\paygrade_defs\civilian.dm" +#include "code\__DEFINES\paygrade_defs\cmb.dm" +#include "code\__DEFINES\paygrade_defs\dutch.dm" +#include "code\__DEFINES\paygrade_defs\marines.dm" +#include "code\__DEFINES\paygrade_defs\mercs.dm" +#include "code\__DEFINES\paygrade_defs\navy.dm" +#include "code\__DEFINES\paygrade_defs\paygrade.dm" +#include "code\__DEFINES\paygrade_defs\provost.dm" +#include "code\__DEFINES\paygrade_defs\twe.dm" +#include "code\__DEFINES\paygrade_defs\upp.dm" +#include "code\__DEFINES\paygrade_defs\weyland.dm" #include "code\__DEFINES\typecheck\assemblers.dm" #include "code\__DEFINES\typecheck\datums.dm" #include "code\__DEFINES\typecheck\generic_types.dm" @@ -163,6 +177,7 @@ #include "code\__HELPERS\guid.dm" #include "code\__HELPERS\icons.dm" #include "code\__HELPERS\job.dm" +#include "code\__HELPERS\lazy_templates.dm" #include "code\__HELPERS\level_traits.dm" #include "code\__HELPERS\lighting.dm" #include "code\__HELPERS\lists.dm" @@ -190,16 +205,17 @@ #include "code\_globalvars\misc.dm" #include "code\_globalvars\regexes.dm" #include "code\_globalvars\tgui.dm" +#include "code\_globalvars\lists\clans.dm" #include "code\_globalvars\lists\client.dm" #include "code\_globalvars\lists\keybindings.dm" #include "code\_globalvars\lists\mapping_globals.dm" #include "code\_globalvars\lists\mobs.dm" +#include "code\_globalvars\lists\names.dm" #include "code\_globalvars\lists\object_lists.dm" #include "code\_onclick\adjacent.dm" #include "code\_onclick\ai.dm" #include "code\_onclick\click.dm" #include "code\_onclick\click_hold.dm" -#include "code\_onclick\cyborg.dm" #include "code\_onclick\double_click.dm" #include "code\_onclick\drag_drop.dm" #include "code\_onclick\human.dm" @@ -218,7 +234,6 @@ #include "code\_onclick\hud\other_mobs.dm" #include "code\_onclick\hud\radial.dm" #include "code\_onclick\hud\radial_persistent.dm" -#include "code\_onclick\hud\robot.dm" #include "code\_onclick\hud\screen_object_holder.dm" #include "code\_onclick\hud\screen_objects.dm" #include "code\_onclick\hud\yautja.dm" @@ -300,6 +315,7 @@ #include "code\controllers\subsystem\tracking.dm" #include "code\controllers\subsystem\vote.dm" #include "code\controllers\subsystem\weather.dm" +#include "code\controllers\subsystem\who.dm" #include "code\controllers\subsystem\x_evolution.dm" #include "code\controllers\subsystem\xeno.dm" #include "code\controllers\subsystem\xeno_ai.dm" @@ -322,6 +338,7 @@ #include "code\datums\ASRS.dm" #include "code\datums\beam.dm" #include "code\datums\browser.dm" +#include "code\datums\bug_report.dm" #include "code\datums\callback.dm" #include "code\datums\changelog.dm" #include "code\datums\combat_personalized.dm" @@ -336,17 +353,18 @@ #include "code\datums\fluff_emails.dm" #include "code\datums\global_variables.dm" #include "code\datums\http.dm" +#include "code\datums\lazy_template.dm" #include "code\datums\map_config.dm" #include "code\datums\matrix_editor.dm" #include "code\datums\medal_awards.dm" #include "code\datums\mind.dm" #include "code\datums\mixed.dm" #include "code\datums\mob_hud.dm" -#include "code\datums\modules.dm" #include "code\datums\movement_detector.dm" #include "code\datums\mutable_appearance.dm" #include "code\datums\quadtree.dm" #include "code\datums\recipe.dm" +#include "code\datums\research_upgrade_datum.dm" #include "code\datums\shuttles.dm" #include "code\datums\soundOutput.dm" #include "code\datums\tgs_event_handler.dm" @@ -372,6 +390,7 @@ #include "code\datums\ammo\rocket.dm" #include "code\datums\ammo\shrapnel.dm" #include "code\datums\ammo\xeno.dm" +#include "code\datums\ammo\bullet\arc.dm" #include "code\datums\ammo\bullet\bullet.dm" #include "code\datums\ammo\bullet\lever_action.dm" #include "code\datums\ammo\bullet\pistol.dm" @@ -395,6 +414,7 @@ #include "code\datums\components\cluster_stack.dm" #include "code\datums\components\connect_mob_behalf.dm" #include "code\datums\components\crate_tag.dm" +#include "code\datums\components\disk_reader.dm" #include "code\datums\components\footstep.dm" #include "code\datums\components\healing_reduction.dm" #include "code\datums\components\id_lock.dm" @@ -405,12 +425,17 @@ #include "code\datums\components\phone.dm" #include "code\datums\components\rename.dm" #include "code\datums\components\speed_modifier.dm" +#include "code\datums\components\status_effect_component.dm" +#include "code\datums\components\temporary_mute.dm" #include "code\datums\components\toxin_buildup.dm" +#include "code\datums\components\tutorial_status.dm" #include "code\datums\components\weed_damage_reduction.dm" #include "code\datums\components\weed_food.dm" #include "code\datums\components\autofire\_automated_fire.dm" #include "code\datums\components\autofire\autofire.dm" +#include "code\datums\components\xeno\hivemind_interference.dm" #include "code\datums\components\xeno\shield_slash.dm" +#include "code\datums\components\xeno\xeno_daze.dm" #include "code\datums\components\xeno\ai_behavior_overrides\attack_override_behavior.dm" #include "code\datums\components\xeno\ai_behavior_overrides\base_override_behavior.dm" #include "code\datums\components\xeno\ai_behavior_overrides\build_override_behavior.dm" @@ -419,6 +444,7 @@ #include "code\datums\construction\construction_template.dm" #include "code\datums\construction\xenomorph\construction_template_xenomorph.dm" #include "code\datums\decorators\decorator.dm" +#include "code\datums\decorators\gamemode_decorator.dm" #include "code\datums\diseases\addiction.dm" #include "code\datums\diseases\beesease.dm" #include "code\datums\diseases\black_goo.dm" @@ -435,7 +461,6 @@ #include "code\datums\diseases\pierrot_throat.dm" #include "code\datums\diseases\plasmatoid.dm" #include "code\datums\diseases\rhumba_beat.dm" -#include "code\datums\diseases\robotic_transformation.dm" #include "code\datums\diseases\xeno_transformation.dm" #include "code\datums\diseases\advance\advance.dm" #include "code\datums\diseases\advance\presets.dm" @@ -491,6 +516,7 @@ #include "code\datums\elements\bullet_trait\incendiary.dm" #include "code\datums\elements\bullet_trait\penetrating\heavy.dm" #include "code\datums\elements\bullet_trait\penetrating\penetrating.dm" +#include "code\datums\elements\bullet_trait\penetrating\weak.dm" #include "code\datums\elements\traitbound\_traitbound.dm" #include "code\datums\elements\traitbound\crawler.dm" #include "code\datums\elements\traitbound\gun_silenced.dm" @@ -509,7 +535,9 @@ #include "code\datums\emergency_calls\deus_vult.dm" #include "code\datums\emergency_calls\dutch.dm" #include "code\datums\emergency_calls\emergency_call.dm" +#include "code\datums\emergency_calls\ert_stations.dm" #include "code\datums\emergency_calls\feral_xenos.dm" +#include "code\datums\emergency_calls\forecon.dm" #include "code\datums\emergency_calls\forsaken_xenos.dm" #include "code\datums\emergency_calls\goons.dm" #include "code\datums\emergency_calls\hefa_knight.dm" @@ -521,6 +549,7 @@ #include "code\datums\emergency_calls\provost.dm" #include "code\datums\emergency_calls\riot.dm" #include "code\datums\emergency_calls\royal_marines.dm" +#include "code\datums\emergency_calls\solar_devils.dm" #include "code\datums\emergency_calls\souto.dm" #include "code\datums\emergency_calls\supplies.dm" #include "code\datums\emergency_calls\tank_crew.dm" @@ -593,7 +622,7 @@ #include "code\datums\pain\pain_zombie.dm" #include "code\datums\paygrades\helper.dm" #include "code\datums\paygrades\paygrade.dm" -#include "code\datums\paygrades\factions\civillian\civilian.dm" +#include "code\datums\paygrades\factions\other\civilian.dm" #include "code\datums\paygrades\factions\other\cmb.dm" #include "code\datums\paygrades\factions\other\contractors.dm" #include "code\datums\paygrades\factions\other\dutch_dozen.dm" @@ -604,7 +633,6 @@ #include "code\datums\paygrades\factions\uscm\marine.dm" #include "code\datums\paygrades\factions\uscm\navy.dm" #include "code\datums\paygrades\factions\uscm\provost.dm" -#include "code\datums\paygrades\factions\wy\goons.dm" #include "code\datums\paygrades\factions\wy\pmc.dm" #include "code\datums\paygrades\factions\wy\wy.dm" #include "code\datums\redis\redis_message.dm" @@ -627,6 +655,7 @@ #include "code\datums\skills\synthetic.dm" #include "code\datums\skills\upp.dm" #include "code\datums\skills\uscm.dm" +#include "code\datums\skills\wygoons.dm" #include "code\datums\stamina\_stamina.dm" #include "code\datums\stamina\none.dm" #include "code\datums\statistics\cause_data.dm" @@ -645,6 +674,7 @@ #include "code\datums\statistics\entities\xeno_stats.dm" #include "code\datums\statistics\random_facts\christmas_fact.dm" #include "code\datums\statistics\random_facts\damage_fact.dm" +#include "code\datums\statistics\random_facts\ib_fact.dm" #include "code\datums\statistics\random_facts\kills_fact.dm" #include "code\datums\statistics\random_facts\random_fact.dm" #include "code\datums\statistics\random_facts\revives_fact.dm" @@ -672,7 +702,21 @@ #include "code\datums\supply_packs\restricted_equipment.dm" #include "code\datums\supply_packs\spec_ammo.dm" #include "code\datums\supply_packs\vehicle_ammo.dm" +#include "code\datums\supply_packs\vehicle_equipment.dm" #include "code\datums\supply_packs\weapons.dm" +#include "code\datums\tutorial\_tutorial.dm" +#include "code\datums\tutorial\_tutorial_menu.dm" +#include "code\datums\tutorial\tutorial_example.dm" +#include "code\datums\tutorial\marine\_marine.dm" +#include "code\datums\tutorial\marine\basic_marine.dm" +#include "code\datums\tutorial\marine\medical_basic.dm" +#include "code\datums\tutorial\marine\reqs_line.dm" +#include "code\datums\tutorial\ss13\_ss13.dm" +#include "code\datums\tutorial\ss13\basic_ss13.dm" +#include "code\datums\tutorial\ss13\intents.dm" +#include "code\datums\tutorial\xenomorph\_xenomorph.dm" +#include "code\datums\tutorial\xenomorph\abomination.dm" +#include "code\datums\tutorial\xenomorph\xenomorph_basic.dm" #include "code\datums\weather\weather_event.dm" #include "code\datums\weather\weather_map_holder.dm" #include "code\datums\weather\weather_events\big_red.dm" @@ -782,10 +826,12 @@ #include "code\game\jobs\job\civilians\support\working_joe.dm" #include "code\game\jobs\job\command\command.dm" #include "code\game\jobs\job\command\auxiliary\auxiliary_support_officer.dm" +#include "code\game\jobs\job\command\auxiliary\cas_pilot.dm" #include "code\game\jobs\job\command\auxiliary\crew_chief.dm" +#include "code\game\jobs\job\command\auxiliary\dropship_pilot.dm" #include "code\game\jobs\job\command\auxiliary\intel.dm" -#include "code\game\jobs\job\command\auxiliary\pilot.dm" #include "code\game\jobs\job\command\auxiliary\senior.dm" +#include "code\game\jobs\job\command\auxiliary\tank_crew.dm" #include "code\game\jobs\job\command\cic\captain.dm" #include "code\game\jobs\job\command\cic\executive.dm" #include "code\game\jobs\job\command\cic\staffofficer.dm" @@ -812,17 +858,17 @@ #include "code\game\jobs\job\special\provost.dm" #include "code\game\jobs\job\special\uaac.dm" #include "code\game\jobs\job\special\uscm.dm" +#include "code\game\jobs\job\special\weyland_yutani.dm" +#include "code\game\machinery\aicore_lockdown.dm" #include "code\game\machinery\air_alarm.dm" -#include "code\game\machinery\air_sensor.dm" #include "code\game\machinery\autolathe.dm" #include "code\game\machinery\autolathe_datums.dm" -#include "code\game\machinery\Beacon.dm" -#include "code\game\machinery\bio-dome_floodlights.dm" #include "code\game\machinery\biohazard_lockdown.dm" #include "code\game\machinery\bioprinter.dm" #include "code\game\machinery\buttons.dm" #include "code\game\machinery\cell_charger.dm" #include "code\game\machinery\cloning.dm" +#include "code\game\machinery\colony_floodlights.dm" #include "code\game\machinery\constructable_frame.dm" #include "code\game\machinery\cryo.dm" #include "code\game\machinery\cryopod.dm" @@ -835,15 +881,12 @@ #include "code\game\machinery\fuelcell_recycler.dm" #include "code\game\machinery\fusion_engine.dm" #include "code\game\machinery\gear.dm" -#include "code\game\machinery\groundmap_geothermal.dm" -#include "code\game\machinery\hologram.dm" #include "code\game\machinery\holosign.dm" #include "code\game\machinery\igniter.dm" #include "code\game\machinery\iv_drip.dm" #include "code\game\machinery\lightswitch.dm" #include "code\game\machinery\line_nexter.dm" #include "code\game\machinery\machinery.dm" -#include "code\game\machinery\mass_driver.dm" #include "code\game\machinery\mining.dm" #include "code\game\machinery\misc.dm" #include "code\game\machinery\navbeacon.dm" @@ -867,6 +910,7 @@ #include "code\game\machinery\ARES\apollo_pda.dm" #include "code\game\machinery\ARES\ARES.dm" #include "code\game\machinery\ARES\ARES_interface.dm" +#include "code\game\machinery\ARES\ARES_interface_admin.dm" #include "code\game\machinery\ARES\ARES_interface_apollo.dm" #include "code\game\machinery\ARES\ARES_procs.dm" #include "code\game\machinery\ARES\ARES_records.dm" @@ -884,10 +928,7 @@ #include "code\game\machinery\camera\camera.dm" #include "code\game\machinery\camera\motion.dm" #include "code\game\machinery\camera\presets.dm" -#include "code\game\machinery\camera\tracking.dm" #include "code\game\machinery\camera\wires.dm" -#include "code\game\machinery\computer\ai_core.dm" -#include "code\game\machinery\computer\aifixer.dm" #include "code\game\machinery\computer\almayer_control.dm" #include "code\game\machinery\computer\arcade.dm" #include "code\game\machinery\computer\area_air_control.dm" @@ -910,6 +951,7 @@ #include "code\game\machinery\computer\prisoner.dm" #include "code\game\machinery\computer\research.dm" #include "code\game\machinery\computer\robot.dm" +#include "code\game\machinery\computer\robots_props.dm" #include "code\game\machinery\computer\security.dm" #include "code\game\machinery\computer\sentencing.dm" #include "code\game\machinery\computer\skills.dm" @@ -924,12 +966,14 @@ #include "code\game\machinery\doors\door.dm" #include "code\game\machinery\doors\firedoor.dm" #include "code\game\machinery\doors\multi_tile.dm" -#include "code\game\machinery\doors\poddoor.dm" #include "code\game\machinery\doors\railing.dm" #include "code\game\machinery\doors\runed_sandstone.dm" -#include "code\game\machinery\doors\shutters.dm" #include "code\game\machinery\doors\unpowered.dm" #include "code\game\machinery\doors\windowdoor.dm" +#include "code\game\machinery\doors\poddoor\almayer.dm" +#include "code\game\machinery\doors\poddoor\poddoor.dm" +#include "code\game\machinery\doors\poddoor\two_tile.dm" +#include "code\game\machinery\doors\poddoor\shutters\shutters.dm" #include "code\game\machinery\embedded_controller\docking_program.dm" #include "code\game\machinery\embedded_controller\embedded_controller_base.dm" #include "code\game\machinery\embedded_controller\embedded_program_base.dm" @@ -941,6 +985,7 @@ #include "code\game\machinery\kitchen\smartfridge.dm" #include "code\game\machinery\medical_pod\autodoc.dm" #include "code\game\machinery\medical_pod\bodyscanner.dm" +#include "code\game\machinery\medical_pod\bone_gel_refill.dm" #include "code\game\machinery\medical_pod\medical_pod.dm" #include "code\game\machinery\medical_pod\sleeper.dm" #include "code\game\machinery\pipe\construction.dm" @@ -969,14 +1014,16 @@ #include "code\game\machinery\vending\vendor_types\antag\antag_gear.dm" #include "code\game\machinery\vending\vendor_types\antag\antag_guns_snowflake.dm" #include "code\game\machinery\vending\vendor_types\antag\antag_guns_sorted.dm" +#include "code\game\machinery\vending\vendor_types\crew\combat_correspondent.dm" #include "code\game\machinery\vending\vendor_types\crew\commanding_officer.dm" +#include "code\game\machinery\vending\vendor_types\crew\corporate_liaison.dm" +#include "code\game\machinery\vending\vendor_types\crew\engineering.dm" #include "code\game\machinery\vending\vendor_types\crew\medical.dm" #include "code\game\machinery\vending\vendor_types\crew\mp.dm" #include "code\game\machinery\vending\vendor_types\crew\pilot_officer.dm" #include "code\game\machinery\vending\vendor_types\crew\sea.dm" #include "code\game\machinery\vending\vendor_types\crew\senior_officers.dm" #include "code\game\machinery\vending\vendor_types\crew\staff_officer.dm" -#include "code\game\machinery\vending\vendor_types\crew\staff_officer_armory.dm" #include "code\game\machinery\vending\vendor_types\crew\synthetic.dm" #include "code\game\machinery\vending\vendor_types\crew\vehicle_crew.dm" #include "code\game\machinery\vending\vendor_types\squad_prep\squad_engineer.dm" @@ -987,6 +1034,7 @@ #include "code\game\machinery\vending\vendor_types\squad_prep\squad_smartgunner.dm" #include "code\game\machinery\vending\vendor_types\squad_prep\squad_specialist.dm" #include "code\game\machinery\vending\vendor_types\squad_prep\squad_tl.dm" +#include "code\game\machinery\vending\vendor_types\squad_prep\tutorial.dm" #include "code\game\objects\empulse.dm" #include "code\game\objects\explosion.dm" #include "code\game\objects\explosion_recursive.dm" @@ -1065,10 +1113,10 @@ #include "code\game\objects\items\legcuffs.dm" #include "code\game\objects\items\lightstick.dm" #include "code\game\objects\items\misc.dm" -#include "code\game\objects\items\old_research.dm" #include "code\game\objects\items\ore.dm" #include "code\game\objects\items\paint.dm" #include "code\game\objects\items\pamphlets.dm" +#include "code\game\objects\items\research_upgrades.dm" #include "code\game\objects\items\shards.dm" #include "code\game\objects\items\stock_parts.dm" #include "code\game\objects\items\trash.dm" @@ -1087,7 +1135,6 @@ #include "code\game\objects\items\devices\aicard.dm" #include "code\game\objects\items\devices\autopsy_scanner.dm" #include "code\game\objects\items\devices\binoculars.dm" -#include "code\game\objects\items\devices\camera_bug.dm" #include "code\game\objects\items\devices\cictablet.dm" #include "code\game\objects\items\devices\cloaking.dm" #include "code\game\objects\items\devices\clue_scanner.dm" @@ -1096,7 +1143,6 @@ #include "code\game\objects\items\devices\debugger.dm" #include "code\game\objects\items\devices\defibrillator.dm" #include "code\game\objects\items\devices\device.dm" -#include "code\game\objects\items\devices\drone_devices.dm" #include "code\game\objects\items\devices\dummy_tablet.dm" #include "code\game\objects\items\devices\flash.dm" #include "code\game\objects\items\devices\flashlight.dm" @@ -1110,11 +1156,7 @@ #include "code\game\objects\items\devices\pinpointer.dm" #include "code\game\objects\items\devices\pipe_painter.dm" #include "code\game\objects\items\devices\portable_vendor.dm" -#include "code\game\objects\items\devices\RCD.dm" -#include "code\game\objects\items\devices\RSF.dm" -#include "code\game\objects\items\devices\RSP.dm" #include "code\game\objects\items\devices\scanners.dm" -#include "code\game\objects\items\devices\suit_cooling.dm" #include "code\game\objects\items\devices\taperecorder.dm" #include "code\game\objects\items\devices\teleportation.dm" #include "code\game\objects\items\devices\transfer_valve.dm" @@ -1126,6 +1168,7 @@ #include "code\game\objects\items\devices\radio\encryptionkey.dm" #include "code\game\objects\items\devices\radio\headset.dm" #include "code\game\objects\items\devices\radio\intercom.dm" +#include "code\game\objects\items\devices\radio\listening_bugs.dm" #include "code\game\objects\items\devices\radio\radio.dm" #include "code\game\objects\items\explosives\explosive.dm" #include "code\game\objects\items\explosives\mine.dm" @@ -1153,11 +1196,11 @@ #include "code\game\objects\items\implants\implantneurostim.dm" #include "code\game\objects\items\implants\implantpad.dm" #include "code\game\objects\items\props\helmetgarb.dm" +#include "code\game\objects\items\props\robots.dm" #include "code\game\objects\items\props\rocks.dm" #include "code\game\objects\items\props\souto_land.dm" #include "code\game\objects\items\reagent_containers\autoinjectors.dm" #include "code\game\objects\items\reagent_containers\blood_pack.dm" -#include "code\game\objects\items\reagent_containers\borghydro.dm" #include "code\game\objects\items\reagent_containers\dropper.dm" #include "code\game\objects\items\reagent_containers\food.dm" #include "code\game\objects\items\reagent_containers\glass.dm" @@ -1165,6 +1208,7 @@ #include "code\game\objects\items\reagent_containers\pill.dm" #include "code\game\objects\items\reagent_containers\reagent_container.dm" #include "code\game\objects\items\reagent_containers\robodropper.dm" +#include "code\game\objects\items\reagent_containers\robot_parts.dm" #include "code\game\objects\items\reagent_containers\spray.dm" #include "code\game\objects\items\reagent_containers\syringes.dm" #include "code\game\objects\items\reagent_containers\food\cans.dm" @@ -1182,9 +1226,6 @@ #include "code\game\objects\items\reagent_containers\food\snacks\meat.dm" #include "code\game\objects\items\reagent_containers\glass\bottle.dm" #include "code\game\objects\items\reagent_containers\glass\bottle\robot.dm" -#include "code\game\objects\items\robot\robot_items.dm" -#include "code\game\objects\items\robot\robot_parts.dm" -#include "code\game\objects\items\robot\robot_upgrades.dm" #include "code\game\objects\items\stacks\barbed_wire.dm" #include "code\game\objects\items\stacks\cable_coil.dm" #include "code\game\objects\items\stacks\catwalk.dm" @@ -1224,7 +1265,6 @@ #include "code\game\objects\items\storage\toolbox.dm" #include "code\game\objects\items\storage\toolkit.dm" #include "code\game\objects\items\storage\wallets.dm" -#include "code\game\objects\items\tanks\jetpack.dm" #include "code\game\objects\items\tanks\tank_types.dm" #include "code\game\objects\items\tanks\tanks.dm" #include "code\game\objects\items\tools\cleaning_tools.dm" @@ -1242,6 +1282,7 @@ #include "code\game\objects\items\toys\crayons.dm" #include "code\game\objects\items\toys\toy_weapons.dm" #include "code\game\objects\items\toys\toys.dm" +#include "code\game\objects\items\toys\trading_cards.dm" #include "code\game\objects\items\weapons\blades.dm" #include "code\game\objects\items\weapons\energy.dm" #include "code\game\objects\items\weapons\misc.dm" @@ -1262,7 +1303,6 @@ #include "code\game\objects\structures\curtains.dm" #include "code\game\objects\structures\desertdam.dm" #include "code\game\objects\structures\displaycase.dm" -#include "code\game\objects\structures\electricchair.dm" #include "code\game\objects\structures\extinguisher.dm" #include "code\game\objects\structures\fence.dm" #include "code\game\objects\structures\flora.dm" @@ -1285,13 +1325,18 @@ #include "code\game\objects\structures\musician.dm" #include "code\game\objects\structures\noticeboard.dm" #include "code\game\objects\structures\platforms.dm" +#include "code\game\objects\structures\prop_mech.dm" #include "code\game\objects\structures\props.dm" #include "code\game\objects\structures\reagent_dispensers.dm" +#include "code\game\objects\structures\roof.dm" #include "code\game\objects\structures\safe.dm" +#include "code\game\objects\structures\shower.dm" #include "code\game\objects\structures\signs.dm" +#include "code\game\objects\structures\sink.dm" #include "code\game\objects\structures\surface.dm" #include "code\game\objects\structures\tables_racks.dm" #include "code\game\objects\structures\tank_dispenser.dm" +#include "code\game\objects\structures\urinal.dm" #include "code\game\objects\structures\vulture_spotter.dm" #include "code\game\objects\structures\watercloset.dm" #include "code\game\objects\structures\windoor_assembly.dm" @@ -1299,10 +1344,10 @@ #include "code\game\objects\structures\window_frame.dm" #include "code\game\objects\structures\barricade\barricade.dm" #include "code\game\objects\structures\barricade\deployable.dm" +#include "code\game\objects\structures\barricade\folding.dm" #include "code\game\objects\structures\barricade\handrail.dm" -#include "code\game\objects\structures\barricade\metal.dm" #include "code\game\objects\structures\barricade\misc.dm" -#include "code\game\objects\structures\barricade\plasteel.dm" +#include "code\game\objects\structures\barricade\non_folding.dm" #include "code\game\objects\structures\barricade\sandbags.dm" #include "code\game\objects\structures\beacons\deployable_beacons.dm" #include "code\game\objects\structures\crates_lockers\closets.dm" @@ -1317,7 +1362,6 @@ #include "code\game\objects\structures\crates_lockers\closets\gimmick.dm" #include "code\game\objects\structures\crates_lockers\closets\job_closets.dm" #include "code\game\objects\structures\crates_lockers\closets\l3closet.dm" -#include "code\game\objects\structures\crates_lockers\closets\malfunction.dm" #include "code\game\objects\structures\crates_lockers\closets\utility_closets.dm" #include "code\game\objects\structures\crates_lockers\closets\wall_locker.dm" #include "code\game\objects\structures\crates_lockers\closets\wardrobe.dm" @@ -1327,6 +1371,7 @@ #include "code\game\objects\structures\crates_lockers\closets\secure\engineering.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\freezer.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\hydroponics.dm" +#include "code\game\objects\structures\crates_lockers\closets\secure\kitchen.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\marine_personal.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\medical.dm" #include "code\game\objects\structures\crates_lockers\closets\secure\personal.dm" @@ -1381,9 +1426,6 @@ #include "code\game\verbs\ooc.dm" #include "code\game\verbs\preferences.dm" #include "code\game\verbs\records.dm" -#include "code\game\verbs\who.dm" -#include "code\js\byjax.dm" -#include "code\js\menus.dm" #include "code\modules\trigger.dm" #include "code\modules\admin\admin.dm" #include "code\modules\admin\admin_ranks.dm" @@ -1403,7 +1445,6 @@ #include "code\modules\admin\server_verbs.dm" #include "code\modules\admin\STUI.dm" #include "code\modules\admin\tag.dm" -#include "code\modules\admin\ToRban.dm" #include "code\modules\admin\game_master\game_master.dm" #include "code\modules\admin\game_master\game_master_submenu.dm" #include "code\modules\admin\game_master\resin_panel.dm" @@ -1504,6 +1545,7 @@ #include "code\modules\asset_cache\asset_list.dm" #include "code\modules\asset_cache\asset_list_items.dm" #include "code\modules\asset_cache\assets\fontawesome.dm" +#include "code\modules\asset_cache\assets\medals.dm" #include "code\modules\asset_cache\assets\tgfont.dm" #include "code\modules\asset_cache\assets\tgui.dm" #include "code\modules\asset_cache\assets\vending.dm" @@ -1512,6 +1554,7 @@ #include "code\modules\autowiki\autowiki.dm" #include "code\modules\autowiki\pages\_page.dm" #include "code\modules\autowiki\pages\guns.dm" +#include "code\modules\autowiki\pages\xeno_stats.dm" #include "code\modules\buildmode\bm-mode.dm" #include "code\modules\buildmode\buildmode.dm" #include "code\modules\buildmode\buttons.dm" @@ -1583,11 +1626,16 @@ #include "code\modules\clothing\suits\bio.dm" #include "code\modules\clothing\suits\jobs.dm" #include "code\modules\clothing\suits\labcoat.dm" -#include "code\modules\clothing\suits\marine_armor.dm" #include "code\modules\clothing\suits\marine_coat.dm" #include "code\modules\clothing\suits\miscellaneous.dm" #include "code\modules\clothing\suits\storage.dm" #include "code\modules\clothing\suits\utility.dm" +#include "code\modules\clothing\suits\marine_armor\_marine_armor.dm" +#include "code\modules\clothing\suits\marine_armor\ert.dm" +#include "code\modules\clothing\suits\marine_armor\ghillie.dm" +#include "code\modules\clothing\suits\marine_armor\intel.dm" +#include "code\modules\clothing\suits\marine_armor\smartgunner.dm" +#include "code\modules\clothing\suits\marine_armor\spec_fire.dm" #include "code\modules\clothing\under\color.dm" #include "code\modules\clothing\under\gimmick.dm" #include "code\modules\clothing\under\marine_uniform.dm" @@ -1647,6 +1695,7 @@ #include "code\modules\cm_preds\smartdisc.dm" #include "code\modules\cm_preds\thrall_items.dm" #include "code\modules\cm_preds\thrall_procs.dm" +#include "code\modules\cm_preds\yaut_actions.dm" #include "code\modules\cm_preds\yaut_bracers.dm" #include "code\modules\cm_preds\yaut_hudprocs.dm" #include "code\modules\cm_preds\yaut_items.dm" @@ -1683,6 +1732,7 @@ #include "code\modules\cm_tech\resources\resource.dm" #include "code\modules\cm_tech\techs\abstract\repeatable.dm" #include "code\modules\cm_tech\techs\abstract\transitory.dm" +#include "code\modules\cm_tech\techs\marine\tier1\arc.dm" #include "code\modules\cm_tech\techs\marine\tier1\points.dm" #include "code\modules\cm_tech\techs\marine\tier2\orbital_ammo.dm" #include "code\modules\cm_tech\techs\marine\tier3\cryo_spec.dm" @@ -1709,7 +1759,6 @@ #include "code\modules\desert_dam\filtration\floodgates.dm" #include "code\modules\desert_dam\filtration\structures.dm" #include "code\modules\desert_dam\motion_sensor\sensortower.dm" -#include "code\modules\destilery\main.dm" #include "code\modules\discord\discord_embed.dm" #include "code\modules\droppod\container_droppod.dm" #include "code\modules\droppod\droppod_ui.dm" @@ -1721,7 +1770,6 @@ #include "code\modules\economy\cash.dm" #include "code\modules\economy\economy_misc.dm" #include "code\modules\economy\EFTPOS.dm" -#include "code\modules\economy\TradeDestinations.dm" #include "code\modules\emoji\emoji_parse.dm" #include "code\modules\escape_menu\admin_buttons.dm" #include "code\modules\escape_menu\details.dm" @@ -1766,6 +1814,7 @@ #include "code\modules\gear_presets\uscm.dm" #include "code\modules\gear_presets\uscm_dress.dm" #include "code\modules\gear_presets\uscm_event.dm" +#include "code\modules\gear_presets\uscm_forecon.dm" #include "code\modules\gear_presets\uscm_medical.dm" #include "code\modules\gear_presets\uscm_police.dm" #include "code\modules\gear_presets\uscm_ship.dm" @@ -1778,11 +1827,14 @@ #include "code\modules\gear_presets\survivors\survivors.dm" #include "code\modules\gear_presets\survivors\corsat\preset_corsat.dm" #include "code\modules\gear_presets\survivors\fiorina_sciannex\preset_fiorina_sciannex.dm" +#include "code\modules\gear_presets\survivors\fiorina_sciannex\riot_in_progress_insert_fiorina_nightmare.dm" #include "code\modules\gear_presets\survivors\kutjevo\preset_kutjevo.dm" #include "code\modules\gear_presets\survivors\lv_522\forcon_survivors.dm" #include "code\modules\gear_presets\survivors\lv_624\clfship_insert_lv624.dm" +#include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm" #include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm" #include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm" +#include "code\modules\gear_presets\survivors\shivas_snowball\panic_room_insert_shivas.dm" #include "code\modules\gear_presets\survivors\shivas_snowball\preset_shivas_snowball.dm" #include "code\modules\gear_presets\survivors\solaris\crashlanding-offices_insert_bigred.dm" #include "code\modules\gear_presets\survivors\solaris\preset_solaris.dm" @@ -1973,6 +2025,7 @@ #include "code\modules\mob\living\carbon\xenomorph\Facehuggers.dm" #include "code\modules\mob\living\carbon\xenomorph\hive_faction.dm" #include "code\modules\mob\living\carbon\xenomorph\hive_status.dm" +#include "code\modules\mob\living\carbon\xenomorph\hive_status_ui.dm" #include "code\modules\mob\living\carbon\xenomorph\life.dm" #include "code\modules\mob\living\carbon\xenomorph\login.dm" #include "code\modules\mob\living\carbon\xenomorph\mark_menu.dm" @@ -1981,13 +2034,11 @@ #include "code\modules\mob\living\carbon\xenomorph\say.dm" #include "code\modules\mob\living\carbon\xenomorph\update_icons.dm" #include "code\modules\mob\living\carbon\xenomorph\xeno_ai_interaction.dm" -#include "code\modules\mob\living\carbon\xenomorph\xeno_defines.dm" #include "code\modules\mob\living\carbon\xenomorph\xeno_helpers.dm" #include "code\modules\mob\living\carbon\xenomorph\xeno_tackle_counter.dm" #include "code\modules\mob\living\carbon\xenomorph\xeno_verbs.dm" #include "code\modules\mob\living\carbon\xenomorph\XenoAttacks.dm" #include "code\modules\mob\living\carbon\xenomorph\Xenomorph.dm" -#include "code\modules\mob\living\carbon\xenomorph\XenoMutatorSets.dm" #include "code\modules\mob\living\carbon\xenomorph\XenoOverwatch.dm" #include "code\modules\mob\living\carbon\xenomorph\XenoProcs.dm" #include "code\modules\mob\living\carbon\xenomorph\XenoUpgrade.dm" @@ -2029,6 +2080,7 @@ #include "code\modules\mob\living\carbon\xenomorph\abilities\praetorian\praetorian_macros.dm" #include "code\modules\mob\living\carbon\xenomorph\abilities\praetorian\praetorian_powers.dm" #include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_abilities.dm" +#include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_macros.dm" #include "code\modules\mob\living\carbon\xenomorph\abilities\predalien\predalien_powers.dm" #include "code\modules\mob\living\carbon\xenomorph\abilities\queen\queen_abilities.dm" #include "code\modules\mob\living\carbon\xenomorph\abilities\queen\queen_macros.dm" @@ -2058,6 +2110,7 @@ #include "code\modules\mob\living\carbon\xenomorph\castes\Boiler.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Burrower.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Carrier.dm" +#include "code\modules\mob\living\carbon\xenomorph\castes\caste_datum.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Crusher.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Defender.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Drone.dm" @@ -2077,60 +2130,29 @@ #include "code\modules\mob\living\carbon\xenomorph\castes\Spitter.dm" #include "code\modules\mob\living\carbon\xenomorph\castes\Warrior.dm" #include "code\modules\mob\living\carbon\xenomorph\items\iff_tag.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\behavior_delegate.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\mutator.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\boiler\trapper.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\carrier\eggsac.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\crusher\charger.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\defender\steel_crest.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\drone\gardener.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\drone\healer.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\hivelord\resin_whisperer.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\lurker\vampire.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\praetorian\dancer.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\praetorian\oppressor.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\praetorian\vanguard.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\praetorian\warden.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\ravager\berserker.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\ravager\hedgehog.dm" -#include "code\modules\mob\living\carbon\xenomorph\mutators\strains\runner\acid.dm" -#include "code\modules\mob\living\silicon\alarm.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\behavior_delegate.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\xeno_strain.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\boiler\trapper.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\carrier\eggsac.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\crusher\charger.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\defender\steel_crest.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\drone\gardener.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\drone\healer.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\facehugger\watcher.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\hivelord\resin_whisperer.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\lurker\vampire.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\praetorian\dancer.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\praetorian\oppressor.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\praetorian\vanguard.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\praetorian\warden.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\ravager\berserker.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\ravager\hedgehog.dm" +#include "code\modules\mob\living\carbon\xenomorph\strains\castes\runner\acid.dm" #include "code\modules\mob\living\silicon\death.dm" #include "code\modules\mob\living\silicon\login.dm" #include "code\modules\mob\living\silicon\say.dm" #include "code\modules\mob\living\silicon\silicon.dm" -#include "code\modules\mob\living\silicon\ai\ai.dm" -#include "code\modules\mob\living\silicon\ai\death.dm" -#include "code\modules\mob\living\silicon\ai\examine.dm" -#include "code\modules\mob\living\silicon\ai\life.dm" -#include "code\modules\mob\living\silicon\ai\login.dm" -#include "code\modules\mob\living\silicon\ai\logout.dm" -#include "code\modules\mob\living\silicon\ai\say.dm" -#include "code\modules\mob\living\silicon\ai\freelook\cameranet.dm" -#include "code\modules\mob\living\silicon\ai\freelook\chunk.dm" -#include "code\modules\mob\living\silicon\ai\freelook\eye.dm" -#include "code\modules\mob\living\silicon\ai\freelook\read_me.dm" -#include "code\modules\mob\living\silicon\ai\freelook\update_triggers.dm" #include "code\modules\mob\living\silicon\decoy\decoy.dm" -#include "code\modules\mob\living\silicon\robot\analyzer.dm" -#include "code\modules\mob\living\silicon\robot\component.dm" -#include "code\modules\mob\living\silicon\robot\death.dm" -#include "code\modules\mob\living\silicon\robot\examine.dm" -#include "code\modules\mob\living\silicon\robot\inventory.dm" -#include "code\modules\mob\living\silicon\robot\life.dm" -#include "code\modules\mob\living\silicon\robot\login.dm" -#include "code\modules\mob\living\silicon\robot\photos.dm" -#include "code\modules\mob\living\silicon\robot\robot.dm" -#include "code\modules\mob\living\silicon\robot\robot_damage.dm" -#include "code\modules\mob\living\silicon\robot\robot_items.dm" -#include "code\modules\mob\living\silicon\robot\robot_movement.dm" -#include "code\modules\mob\living\silicon\robot\wires.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone_abilities.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone_console.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone_damage.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone_items.dm" -#include "code\modules\mob\living\silicon\robot\drone\drone_manufacturer.dm" #include "code\modules\mob\living\simple_animal\bat.dm" #include "code\modules\mob\living\simple_animal\parrot.dm" #include "code\modules\mob\living\simple_animal\simple_animal.dm" @@ -2155,6 +2177,7 @@ #include "code\modules\mob\living\simple_animal\hostile\tree.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\clown.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\drone.dm" +#include "code\modules\mob\living\simple_animal\hostile\retaliate\giant_lizard.dm" #include "code\modules\mob\living\simple_animal\hostile\retaliate\retaliate.dm" #include "code\modules\mob\new_player\body.dm" #include "code\modules\mob\new_player\login.dm" @@ -2175,7 +2198,6 @@ #include "code\modules\movement\launching\launching.dm" #include "code\modules\nano\nanoexternal.dm" #include "code\modules\nano\nanomanager.dm" -#include "code\modules\nano\nanomapgen.dm" #include "code\modules\nano\nanoui.dm" #include "code\modules\nightmare\nmcontext.dm" #include "code\modules\nightmare\nmnodes\components.dm" @@ -2195,6 +2217,7 @@ #include "code\modules\organs\wound.dm" #include "code\modules\paperwork\carbonpaper.dm" #include "code\modules\paperwork\clipboard.dm" +#include "code\modules\paperwork\desk_bell.dm" #include "code\modules\paperwork\filingcabinet.dm" #include "code\modules\paperwork\folders.dm" #include "code\modules\paperwork\notepad.dm" @@ -2203,7 +2226,6 @@ #include "code\modules\paperwork\paperbin.dm" #include "code\modules\paperwork\photocopier.dm" #include "code\modules\paperwork\photography.dm" -#include "code\modules\paperwork\silicon_photography.dm" #include "code\modules\power\apc.dm" #include "code\modules\power\batteryrack.dm" #include "code\modules\power\breaker_box.dm" @@ -2212,7 +2234,6 @@ #include "code\modules\power\cell.dm" #include "code\modules\power\fractal_reactor.dm" #include "code\modules\power\generator.dm" -#include "code\modules\power\gravitygenerator.dm" #include "code\modules\power\lighting.dm" #include "code\modules\power\port_gen.dm" #include "code\modules\power\power.dm" @@ -2285,6 +2306,7 @@ #include "code\modules\reagents\chemistry_machinery\pandemic.dm" #include "code\modules\reagents\chemistry_machinery\reagent_analyzer.dm" #include "code\modules\reagents\chemistry_machinery\reagent_grinder.dm" +#include "code\modules\reagents\chemistry_machinery\xenomorph_analyzer.dm" #include "code\modules\reagents\chemistry_properties\chem_property.dm" #include "code\modules\reagents\chemistry_properties\prop_negative.dm" #include "code\modules\reagents\chemistry_properties\prop_neutral.dm" @@ -2343,7 +2365,6 @@ #include "code\modules\surgery\brainrepair.dm" #include "code\modules\surgery\chestburster.dm" #include "code\modules\surgery\eye.dm" -#include "code\modules\surgery\face.dm" #include "code\modules\surgery\generic.dm" #include "code\modules\surgery\headreattach.dm" #include "code\modules\surgery\implant.dm" @@ -2358,6 +2379,7 @@ #include "code\modules\surgery\surgery_steps.dm" #include "code\modules\surgery\surgery_toggle.dm" #include "code\modules\surgery\tendwounds.dm" +#include "code\modules\surgery\xeno.dm" #include "code\modules\teleporters\teleporter.dm" #include "code\modules\teleporters\teleporter_admin_verbs.dm" #include "code\modules\teleporters\teleporter_console.dm" @@ -2388,6 +2410,7 @@ #include "code\modules\tgui\states\default.dm" #include "code\modules\tgui\states\hands.dm" #include "code\modules\tgui\states\human_adjacent.dm" +#include "code\modules\tgui\states\in_view.dm" #include "code\modules\tgui\states\inventory.dm" #include "code\modules\tgui\states\never.dm" #include "code\modules\tgui\states\new_player.dm" @@ -2409,12 +2432,14 @@ #include "code\modules\tgui_input\text.dm" #include "code\modules\tgui_panel\audio.dm" #include "code\modules\tgui_panel\external.dm" +#include "code\modules\tgui_panel\ping_relay.dm" #include "code\modules\tgui_panel\telemetry.dm" #include "code\modules\tgui_panel\tgui_panel.dm" #include "code\modules\tooltip\tooltip.dm" #include "code\modules\unit_tests\_unit_tests.dm" #include "code\modules\vehicles\cargo_train.dm" #include "code\modules\vehicles\powerloader.dm" +#include "code\modules\vehicles\souto_mobile.dm" #include "code\modules\vehicles\train.dm" #include "code\modules\vehicles\vehicle.dm" #include "code\modules\vehicles\vehicle_misc_objects.dm" @@ -2425,6 +2450,9 @@ #include "code\modules\vehicles\apc\arc.dm" #include "code\modules\vehicles\apc\arc_weaponless.dm" #include "code\modules\vehicles\apc\interior.dm" +#include "code\modules\vehicles\arc\arc.dm" +#include "code\modules\vehicles\arc\interior.dm" +#include "code\modules\vehicles\arc\verbs.dm" #include "code\modules\vehicles\hardpoints\hardpoint.dm" #include "code\modules\vehicles\hardpoints\armor\armor.dm" #include "code\modules\vehicles\hardpoints\armor\ballistic.dm" @@ -2432,6 +2460,7 @@ #include "code\modules\vehicles\hardpoints\armor\concussive.dm" #include "code\modules\vehicles\hardpoints\armor\paladin.dm" #include "code\modules\vehicles\hardpoints\armor\snowplow.dm" +#include "code\modules\vehicles\hardpoints\hardpoint_ammo\arc_sentry_ammo.dm" #include "code\modules\vehicles\hardpoints\hardpoint_ammo\autocannon_ammo.dm" #include "code\modules\vehicles\hardpoints\hardpoint_ammo\cupola_ammo.dm" #include "code\modules\vehicles\hardpoints\hardpoint_ammo\dualcannon_ammo.dm" @@ -2448,6 +2477,7 @@ #include "code\modules\vehicles\hardpoints\holder\holder.dm" #include "code\modules\vehicles\hardpoints\holder\tank_turret.dm" #include "code\modules\vehicles\hardpoints\primary\arc_frontal.dm" +#include "code\modules\vehicles\hardpoints\primary\arc_sentry.dm" #include "code\modules\vehicles\hardpoints\primary\autocannon.dm" #include "code\modules\vehicles\hardpoints\primary\dual_cannon.dm" #include "code\modules\vehicles\hardpoints\primary\flamer.dm" @@ -2462,12 +2492,14 @@ #include "code\modules\vehicles\hardpoints\secondary\tow.dm" #include "code\modules\vehicles\hardpoints\special\firing_port_weapon.dm" #include "code\modules\vehicles\hardpoints\special\special.dm" +#include "code\modules\vehicles\hardpoints\support\antenna.dm" #include "code\modules\vehicles\hardpoints\support\artillery.dm" #include "code\modules\vehicles\hardpoints\support\flare.dm" #include "code\modules\vehicles\hardpoints\support\iwsa.dm" #include "code\modules\vehicles\hardpoints\support\overdrive.dm" #include "code\modules\vehicles\hardpoints\support\support.dm" #include "code\modules\vehicles\hardpoints\wheels\apc_wheels.dm" +#include "code\modules\vehicles\hardpoints\wheels\arc_wheels.dm" #include "code\modules\vehicles\hardpoints\wheels\locomotion.dm" #include "code\modules\vehicles\hardpoints\wheels\treads.dm" #include "code\modules\vehicles\hardpoints\wheels\van_wheels.dm" @@ -2481,7 +2513,6 @@ #include "code\modules\vehicles\interior\interactable\vendors.dm" #include "code\modules\vehicles\interior\interactable\viewports.dm" #include "code\modules\vehicles\interior\interactable\weapons_loader.dm" -#include "code\modules\vehicles\interior\objects\fancy_locker.dm" #include "code\modules\vehicles\multitile\multitile.dm" #include "code\modules\vehicles\multitile\multitile_bump.dm" #include "code\modules\vehicles\multitile\multitile_hardpoints.dm" diff --git a/config/example/config.txt b/config/example/config.txt index ee22fbaf90..07dfe6f1b8 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -4,6 +4,7 @@ # $include dbconfig.txt # $include resources.txt # $include icon_source.txt +# $include relays.txt ## Server name: This appears at the top of the screen in-game. In this case it will read "tgstation: station_name" where station_name is the randomly generated name of the station for the round. Remove the # infront of SERVERNAME and replace 'tgstation' with the name of your choice # SERVERNAME spacestation13 @@ -151,9 +152,6 @@ BANAPPEALS https://cm-ss13.com/viewforum.php?f=76 ##Defines the ticklag for the world. 0.9 is the normal one, 0.5 is smoother. TICKLAG 0.5 -## Uncomment this to ban use of ToR -#TOR_BAN - ## Uncomment this to have country flags pop up in OOC alongside names if the user has the pref turned on (uses IP-API) #OOC_COUNTRY_FLAGS @@ -244,4 +242,19 @@ GAMEMODE_DEFAULT Extended ## How long the mob will take to chestburst, in seconds #EMBRYO_BURST_TIMER 450 +## CLIENT VERSION CONTROL +## This allows you to configure the minimum required client version, as well as a warning version, and message for both. +## These trigger for any version below (non-inclusive) the given version, so 510 triggers on 509 or lower. +## These messages will be followed by one stating the clients current version and the required version for clarity. +#CLIENT_WARN_VERSION 514 +#CLIENT_WARN_BUILD 1589 +#CLIENT_WARN_MESSAGE Your version of BYOND may have issues or be blocked from accessing this server in the future. +#CLIENT_WARN_POPUP CLIENT_ERROR_VERSION 514 +#CLIENT_ERROR_BUILD 1589 +#CLIENT_ERROR_MESSAGE Your version of BYOND is too old, may have issues, and is blocked from accessing this server. + +## GITHUB API +#GITHUB_APP_API +#REPO_NAME cmss13 +#ORG cmss13-devs diff --git a/config/example/relays.txt b/config/example/relays.txt new file mode 100644 index 0000000000..562e917fa4 --- /dev/null +++ b/config/example/relays.txt @@ -0,0 +1,22 @@ +## Settings controlling the relay ping browser accessed via PingIndicator in TGChat +## Pings are performed by timing how long it takes to download favicon.ico from the PingURL + +## Connection Relays: Name must match both ping and connect pairs +## CONNECTION_RELAY_PING Name|PingURL +## CONNECTION_RELAY_CON Name|ConnectURL +CONNECTION_RELAY_PING Direct|play.cm-ss13.com:8998 +CONNECTION_RELAY_CON Direct|play.cm-ss13.com:1400 +CONNECTION_RELAY_PING United Kingdom, London|uk.cm-ss13.com:8998 +CONNECTION_RELAY_CON United Kingdom, London|uk.cm-ss13.com:1400 +CONNECTION_RELAY_PING France, Gravelines|eu-w.cm-ss13.com:8998 +CONNECTION_RELAY_CON France, Gravelines|eu-w.cm-ss13.com:1400 +CONNECTION_RELAY_PING Poland, Warsaw|eu-e.cm-ss13.com:8998 +CONNECTION_RELAY_CON Poland, Warsaw|eu-e.cm-ss13.com:1400 +CONNECTION_RELAY_PING Oregon, Hillsboro|us-w.cm-ss13.com:8998 +CONNECTION_RELAY_CON Oregon, Hillsboro|us-w.cm-ss13.com:1400 +CONNECTION_RELAY_PING Virginia, Vint Hill|us-e.cm-ss13.com:8998 +CONNECTION_RELAY_CON Virginia, Vint Hill|us-e.cm-ss13.com:1400 +CONNECTION_RELAY_PING Singapore|asia-se.cm-ss13.com:8998 +CONNECTION_RELAY_CON Singapore|asia-se.cm-ss13.com:1400 +CONNECTION_RELAY_PING Australia, Sydney|aus.cm-ss13.com:8998 +CONNECTION_RELAY_CON Australia, Sydney|aus.cm-ss13.com:1400 diff --git a/config/example/word_filter.txt b/config/example/word_filter.txt new file mode 100644 index 0000000000..aab5cae627 --- /dev/null +++ b/config/example/word_filter.txt @@ -0,0 +1 @@ +# Words that should be filtered from being said, both IC and OOC, should be included here, one per line. Case insensitive. diff --git a/dependencies.sh b/dependencies.sh index 7540707df5..e0da4aa75f 100644 --- a/dependencies.sh +++ b/dependencies.sh @@ -8,7 +8,7 @@ export BYOND_MAJOR=515 export BYOND_MINOR=1627 #rust_g git tag -export RUST_G_VERSION=2.1.0 +export RUST_G_VERSION=3.3.0 #node version export NODE_VERSION=20 diff --git a/html/create_object.html b/html/create_object.html index 0625ab9e5c..8e67b99aeb 100644 --- a/html/create_object.html +++ b/html/create_object.html @@ -9,16 +9,17 @@ - Type
          - Offset: + Offset: A R
          Number: Dir: - Name:
          + Name:
          + Where:

          +
          @@ -41,8 +43,7 @@ function populateList(from_list) { object_list.options.length = 0; - var i; - for (i in from_list) { + for (var i in from_list) { var new_option = document.createElement("option"); new_option.value = from_list[i]; new_option.text = from_list[i]; @@ -70,6 +71,7 @@ return false; } + // Carriage return if (event.keyCode == 13 || event.which == 13) { object_list.options[0].selected = 'true'; } diff --git a/icons/effects/fire.dmi b/icons/effects/fire.dmi index 673f1c48de..a36e22b9c8 100644 Binary files a/icons/effects/fire.dmi and b/icons/effects/fire.dmi differ diff --git a/icons/effects/sebb.dmi b/icons/effects/sebb.dmi new file mode 100644 index 0000000000..288a1023ce Binary files /dev/null and b/icons/effects/sebb.dmi differ diff --git a/icons/effects/spacevines.dmi b/icons/effects/spacevines.dmi index 5f6f19fdd9..bcd121055b 100644 Binary files a/icons/effects/spacevines.dmi and b/icons/effects/spacevines.dmi differ diff --git a/icons/effects/warning_stripes.dmi b/icons/effects/warning_stripes.dmi index 766e4eb778..9e57623d2b 100644 Binary files a/icons/effects/warning_stripes.dmi and b/icons/effects/warning_stripes.dmi differ diff --git a/icons/flags.dmi b/icons/flags.dmi index a192d17ff1..673a3ee7a5 100644 Binary files a/icons/flags.dmi and b/icons/flags.dmi differ diff --git a/icons/landmarks.dmi b/icons/landmarks.dmi index 08b23758be..32fe9e0790 100644 Binary files a/icons/landmarks.dmi and b/icons/landmarks.dmi differ diff --git a/icons/lobby/title_loading.dmi b/icons/lobby/title_loading.dmi new file mode 100644 index 0000000000..3aa2f5ad52 Binary files /dev/null and b/icons/lobby/title_loading.dmi differ diff --git a/icons/misc/tutorial.dmi b/icons/misc/tutorial.dmi new file mode 100644 index 0000000000..aee42db11b Binary files /dev/null and b/icons/misc/tutorial.dmi differ diff --git a/icons/mob/hud/actions.dmi b/icons/mob/hud/actions.dmi index 98026781a1..cf15aa1289 100644 Binary files a/icons/mob/hud/actions.dmi and b/icons/mob/hud/actions.dmi differ diff --git a/icons/mob/hud/actions_xeno.dmi b/icons/mob/hud/actions_xeno.dmi index 6a48235a4f..c829821730 100644 Binary files a/icons/mob/hud/actions_xeno.dmi and b/icons/mob/hud/actions_xeno.dmi differ diff --git a/icons/mob/hud/actions_yautja.dmi b/icons/mob/hud/actions_yautja.dmi new file mode 100644 index 0000000000..c94388456e Binary files /dev/null and b/icons/mob/hud/actions_yautja.dmi differ diff --git a/icons/mob/hud/alien_standard.dmi b/icons/mob/hud/alien_standard.dmi index 8bad0b44ac..0f3902ebf2 100644 Binary files a/icons/mob/hud/alien_standard.dmi and b/icons/mob/hud/alien_standard.dmi differ diff --git a/icons/mob/hud/hud.dmi b/icons/mob/hud/hud.dmi index 9189b5eff7..074478893d 100644 Binary files a/icons/mob/hud/hud.dmi and b/icons/mob/hud/hud.dmi differ diff --git a/icons/mob/hud/human_bronze.dmi b/icons/mob/hud/human_bronze.dmi index 11a7240572..7548f66b05 100644 Binary files a/icons/mob/hud/human_bronze.dmi and b/icons/mob/hud/human_bronze.dmi differ diff --git a/icons/mob/hud/human_dark.dmi b/icons/mob/hud/human_dark.dmi index e572dcb835..5b75acf1b3 100644 Binary files a/icons/mob/hud/human_dark.dmi and b/icons/mob/hud/human_dark.dmi differ diff --git a/icons/mob/hud/human_glass.dmi b/icons/mob/hud/human_glass.dmi index 19fb430d84..b3d8f56ce4 100644 Binary files a/icons/mob/hud/human_glass.dmi and b/icons/mob/hud/human_glass.dmi differ diff --git a/icons/mob/hud/human_green.dmi b/icons/mob/hud/human_green.dmi index 9b235a75d8..a07e7a3271 100644 Binary files a/icons/mob/hud/human_green.dmi and b/icons/mob/hud/human_green.dmi differ diff --git a/icons/mob/hud/human_grey.dmi b/icons/mob/hud/human_grey.dmi index 5a522dc305..6c5c2f3265 100644 Binary files a/icons/mob/hud/human_grey.dmi and b/icons/mob/hud/human_grey.dmi differ diff --git a/icons/mob/hud/human_holo.dmi b/icons/mob/hud/human_holo.dmi index 1554480bd3..568e364314 100644 Binary files a/icons/mob/hud/human_holo.dmi and b/icons/mob/hud/human_holo.dmi differ diff --git a/icons/mob/hud/human_midnight.dmi b/icons/mob/hud/human_midnight.dmi index c6fc989fec..78a0b10561 100644 Binary files a/icons/mob/hud/human_midnight.dmi and b/icons/mob/hud/human_midnight.dmi differ diff --git a/icons/mob/hud/human_old.dmi b/icons/mob/hud/human_old.dmi index e8b682c7c8..66e3f84661 100644 Binary files a/icons/mob/hud/human_old.dmi and b/icons/mob/hud/human_old.dmi differ diff --git a/icons/mob/hud/human_orange.dmi b/icons/mob/hud/human_orange.dmi index 8a46dad89e..4ab6f7558c 100644 Binary files a/icons/mob/hud/human_orange.dmi and b/icons/mob/hud/human_orange.dmi differ diff --git a/icons/mob/hud/human_red.dmi b/icons/mob/hud/human_red.dmi index 06725e04a6..17de42f5a1 100644 Binary files a/icons/mob/hud/human_red.dmi and b/icons/mob/hud/human_red.dmi differ diff --git a/icons/mob/hud/human_white.dmi b/icons/mob/hud/human_white.dmi index be8ad63426..7b6429e0ed 100644 Binary files a/icons/mob/hud/human_white.dmi and b/icons/mob/hud/human_white.dmi differ diff --git a/icons/mob/hud/marine_hud.dmi b/icons/mob/hud/marine_hud.dmi index 377216d2a7..4f27f535f8 100644 Binary files a/icons/mob/hud/marine_hud.dmi and b/icons/mob/hud/marine_hud.dmi differ diff --git a/icons/mob/hud/sec_hud.dmi b/icons/mob/hud/sec_hud.dmi index 9cc3e66c3e..493727afac 100644 Binary files a/icons/mob/hud/sec_hud.dmi and b/icons/mob/hud/sec_hud.dmi differ diff --git a/icons/mob/humans/human_hair.dmi b/icons/mob/humans/human_hair.dmi index 9634a2543a..1a91c7f0e4 100644 Binary files a/icons/mob/humans/human_hair.dmi and b/icons/mob/humans/human_hair.dmi differ diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index d237128b24..063e379133 100644 Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ diff --git a/icons/mob/humans/onmob/belt.dmi b/icons/mob/humans/onmob/belt.dmi index 5c3e8a6dc6..adf914f6dd 100644 Binary files a/icons/mob/humans/onmob/belt.dmi and b/icons/mob/humans/onmob/belt.dmi differ diff --git a/icons/mob/humans/onmob/contained/war_correspondent.dmi b/icons/mob/humans/onmob/contained/war_correspondent.dmi deleted file mode 100644 index 38bef4845c..0000000000 Binary files a/icons/mob/humans/onmob/contained/war_correspondent.dmi and /dev/null differ diff --git a/icons/mob/humans/onmob/feet.dmi b/icons/mob/humans/onmob/feet.dmi index 909a629f72..afaa1ffdfc 100644 Binary files a/icons/mob/humans/onmob/feet.dmi and b/icons/mob/humans/onmob/feet.dmi differ diff --git a/icons/mob/humans/onmob/hands.dmi b/icons/mob/humans/onmob/hands.dmi index f174ffd1b6..163ad426cc 100644 Binary files a/icons/mob/humans/onmob/hands.dmi and b/icons/mob/humans/onmob/hands.dmi differ diff --git a/icons/mob/humans/onmob/head_0.dmi b/icons/mob/humans/onmob/head_0.dmi index 8d64d73ef1..1cac357cb2 100644 Binary files a/icons/mob/humans/onmob/head_0.dmi and b/icons/mob/humans/onmob/head_0.dmi differ diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi index f228b4fa72..cd7acbc920 100644 Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ diff --git a/icons/mob/humans/onmob/helmet_garb.dmi b/icons/mob/humans/onmob/helmet_garb.dmi index 062400725a..cd225f4bdb 100644 Binary files a/icons/mob/humans/onmob/helmet_garb.dmi and b/icons/mob/humans/onmob/helmet_garb.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_0.dmi b/icons/mob/humans/onmob/items_lefthand_0.dmi index 88e9822db8..dbb54b539b 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_0.dmi and b/icons/mob/humans/onmob/items_lefthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_1.dmi b/icons/mob/humans/onmob/items_lefthand_1.dmi index 46bc771b52..31eec7604a 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_1.dmi and b/icons/mob/humans/onmob/items_lefthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_lefthand_64.dmi b/icons/mob/humans/onmob/items_lefthand_64.dmi index 057d7f1cad..e086e4a7ff 100644 Binary files a/icons/mob/humans/onmob/items_lefthand_64.dmi and b/icons/mob/humans/onmob/items_lefthand_64.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_0.dmi b/icons/mob/humans/onmob/items_righthand_0.dmi index 694eb426b3..e95c33131a 100644 Binary files a/icons/mob/humans/onmob/items_righthand_0.dmi and b/icons/mob/humans/onmob/items_righthand_0.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_1.dmi b/icons/mob/humans/onmob/items_righthand_1.dmi index 8a0fbd85c6..2394301f40 100644 Binary files a/icons/mob/humans/onmob/items_righthand_1.dmi and b/icons/mob/humans/onmob/items_righthand_1.dmi differ diff --git a/icons/mob/humans/onmob/items_righthand_64.dmi b/icons/mob/humans/onmob/items_righthand_64.dmi index 599ef5935f..00d1fae753 100644 Binary files a/icons/mob/humans/onmob/items_righthand_64.dmi and b/icons/mob/humans/onmob/items_righthand_64.dmi differ diff --git a/icons/mob/humans/onmob/suit_0.dmi b/icons/mob/humans/onmob/suit_0.dmi index 6e58aa61b8..5c1cfb6c5e 100644 Binary files a/icons/mob/humans/onmob/suit_0.dmi and b/icons/mob/humans/onmob/suit_0.dmi differ diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi index c9727790e0..f0267edd30 100644 Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ diff --git a/icons/mob/humans/onmob/suit_slot.dmi b/icons/mob/humans/onmob/suit_slot.dmi index 4790ee7af6..95e45a1c60 100644 Binary files a/icons/mob/humans/onmob/suit_slot.dmi and b/icons/mob/humans/onmob/suit_slot.dmi differ diff --git a/icons/mob/humans/onmob/ties.dmi b/icons/mob/humans/onmob/ties.dmi index 408cf1492a..8833b592ba 100644 Binary files a/icons/mob/humans/onmob/ties.dmi and b/icons/mob/humans/onmob/ties.dmi differ diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index cfe9cd70bb..2fb0af1fc0 100644 Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ diff --git a/icons/mob/humans/onmob/uniform_1.dmi b/icons/mob/humans/onmob/uniform_1.dmi index e04ae35178..8718840e56 100644 Binary files a/icons/mob/humans/onmob/uniform_1.dmi and b/icons/mob/humans/onmob/uniform_1.dmi differ diff --git a/icons/mob/mob.dmi b/icons/mob/mob.dmi index 179d7076f8..f3485de9aa 100644 Binary files a/icons/mob/mob.dmi and b/icons/mob/mob.dmi differ diff --git a/icons/mob/mob_64.dmi b/icons/mob/mob_64.dmi new file mode 100644 index 0000000000..8ac2194b3e Binary files /dev/null and b/icons/mob/mob_64.dmi differ diff --git a/icons/mob/xenonids/facehugger.dmi b/icons/mob/xenonids/facehugger.dmi index 97c4af1796..cd688d441d 100644 Binary files a/icons/mob/xenonids/facehugger.dmi and b/icons/mob/xenonids/facehugger.dmi differ diff --git a/icons/mob/xenos/boiler.dmi b/icons/mob/xenos/boiler.dmi index 94d45c459e..4edcf556eb 100644 Binary files a/icons/mob/xenos/boiler.dmi and b/icons/mob/xenos/boiler.dmi differ diff --git a/icons/mob/xenos/burrower.dmi b/icons/mob/xenos/burrower.dmi index f546776e6b..c54684e61b 100644 Binary files a/icons/mob/xenos/burrower.dmi and b/icons/mob/xenos/burrower.dmi differ diff --git a/icons/mob/xenos/crusher.dmi b/icons/mob/xenos/crusher.dmi index bea8c8a7e5..f0de637c8c 100644 Binary files a/icons/mob/xenos/crusher.dmi and b/icons/mob/xenos/crusher.dmi differ diff --git a/icons/mob/xenos/drone.dmi b/icons/mob/xenos/drone.dmi index 9555187e03..a812bbaba3 100644 Binary files a/icons/mob/xenos/drone.dmi and b/icons/mob/xenos/drone.dmi differ diff --git a/icons/mob/xenos/effects.dmi b/icons/mob/xenos/effects.dmi index 80cc35fde5..132c5f78b0 100644 Binary files a/icons/mob/xenos/effects.dmi and b/icons/mob/xenos/effects.dmi differ diff --git a/icons/mob/xenos/facehugger.dmi b/icons/mob/xenos/facehugger.dmi index 2d86658993..d44903adf9 100644 Binary files a/icons/mob/xenos/facehugger.dmi and b/icons/mob/xenos/facehugger.dmi differ diff --git a/icons/mob/xenos/larva.dmi b/icons/mob/xenos/larva.dmi index d07dad82ed..f2e6a31ea3 100644 Binary files a/icons/mob/xenos/larva.dmi and b/icons/mob/xenos/larva.dmi differ diff --git a/icons/mob/xenos/predalien.dmi b/icons/mob/xenos/predalien.dmi index 1e3ec5caf8..c6162729b5 100644 Binary files a/icons/mob/xenos/predalien.dmi and b/icons/mob/xenos/predalien.dmi differ diff --git a/icons/mob/xenos/predalien_larva.dmi b/icons/mob/xenos/predalien_larva.dmi index 82786f2739..41eb31a2c8 100644 Binary files a/icons/mob/xenos/predalien_larva.dmi and b/icons/mob/xenos/predalien_larva.dmi differ diff --git a/icons/mob/xenos/radial_xenos.dmi b/icons/mob/xenos/radial_xenos.dmi new file mode 100644 index 0000000000..2832f42fda Binary files /dev/null and b/icons/mob/xenos/radial_xenos.dmi differ diff --git a/icons/mob/xenos/warrior.dmi b/icons/mob/xenos/warrior.dmi index 1211da5ac1..21752fc94e 100644 Binary files a/icons/mob/xenos/warrior.dmi and b/icons/mob/xenos/warrior.dmi differ diff --git a/icons/mob/xenos/weeds.dmi b/icons/mob/xenos/weeds.dmi index 0b94030581..0b79525544 100644 Binary files a/icons/mob/xenos/weeds.dmi and b/icons/mob/xenos/weeds.dmi differ diff --git a/icons/mob/xenos/weeds_48x48.dmi b/icons/mob/xenos/weeds_48x48.dmi new file mode 100644 index 0000000000..198340955e Binary files /dev/null and b/icons/mob/xenos/weeds_48x48.dmi differ diff --git a/icons/mob/xenos/weeds_64x64.dmi b/icons/mob/xenos/weeds_64x64.dmi new file mode 100644 index 0000000000..895338f542 Binary files /dev/null and b/icons/mob/xenos/weeds_64x64.dmi differ diff --git a/icons/mob/xenos/wounds.dmi b/icons/mob/xenos/wounds.dmi index 0e526df977..2501196f75 100644 Binary files a/icons/mob/xenos/wounds.dmi and b/icons/mob/xenos/wounds.dmi differ diff --git a/icons/mob/xenos/xenomorph_64x64.dmi b/icons/mob/xenos/xenomorph_64x64.dmi index 3fc4d942cd..17fd4ae7fd 100644 Binary files a/icons/mob/xenos/xenomorph_64x64.dmi and b/icons/mob/xenos/xenomorph_64x64.dmi differ diff --git a/icons/obj/items/assemblies.dmi b/icons/obj/items/assemblies.dmi index 522e0fb5e5..eb36d56967 100644 Binary files a/icons/obj/items/assemblies.dmi and b/icons/obj/items/assemblies.dmi differ diff --git a/icons/obj/items/books.dmi b/icons/obj/items/books.dmi index abd99a7075..9b53dc6528 100644 Binary files a/icons/obj/items/books.dmi and b/icons/obj/items/books.dmi differ diff --git a/icons/obj/items/chemistry.dmi b/icons/obj/items/chemistry.dmi index b82be7c88a..df726a545b 100644 Binary files a/icons/obj/items/chemistry.dmi and b/icons/obj/items/chemistry.dmi differ diff --git a/icons/obj/items/cigarettes.dmi b/icons/obj/items/cigarettes.dmi index db313199af..89b3ca2195 100644 Binary files a/icons/obj/items/cigarettes.dmi and b/icons/obj/items/cigarettes.dmi differ diff --git a/icons/obj/items/clothing/backpacks.dmi b/icons/obj/items/clothing/backpacks.dmi index 9ce264022d..99440e7218 100644 Binary files a/icons/obj/items/clothing/backpacks.dmi and b/icons/obj/items/clothing/backpacks.dmi differ diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi index cdb2dda179..d8c699182c 100644 Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi index f6061c5dbd..365cbb9c68 100644 Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi index e5c2820849..c601920ff5 100644 Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ diff --git a/icons/obj/items/clothing/donor/HEAD.dmi b/icons/obj/items/clothing/donor/HEAD.dmi index d7345e41d9..23a29f5a2a 100644 Binary files a/icons/obj/items/clothing/donor/HEAD.dmi and b/icons/obj/items/clothing/donor/HEAD.dmi differ diff --git a/icons/obj/items/clothing/donor/SUITS.dmi b/icons/obj/items/clothing/donor/SUITS.dmi index 51c41b837c..e6e4ffef14 100644 Binary files a/icons/obj/items/clothing/donor/SUITS.dmi and b/icons/obj/items/clothing/donor/SUITS.dmi differ diff --git a/icons/obj/items/clothing/donor/Sanctum Uniforms.dmi b/icons/obj/items/clothing/donor/Sanctum Uniforms.dmi deleted file mode 100644 index 87e9a4c94b..0000000000 Binary files a/icons/obj/items/clothing/donor/Sanctum Uniforms.dmi and /dev/null differ diff --git a/icons/obj/items/clothing/donor/UNIFORM.dmi b/icons/obj/items/clothing/donor/UNIFORM.dmi index 2e0cd816df..5c43f7503a 100644 Binary files a/icons/obj/items/clothing/donor/UNIFORM.dmi and b/icons/obj/items/clothing/donor/UNIFORM.dmi differ diff --git a/icons/obj/items/clothing/hats.dmi b/icons/obj/items/clothing/hats.dmi index e94b17f2da..9e46a396d2 100644 Binary files a/icons/obj/items/clothing/hats.dmi and b/icons/obj/items/clothing/hats.dmi differ diff --git a/icons/obj/items/clothing/pouches.dmi b/icons/obj/items/clothing/pouches.dmi index 6a7af0d3e0..4c7ba6d4d8 100644 Binary files a/icons/obj/items/clothing/pouches.dmi and b/icons/obj/items/clothing/pouches.dmi differ diff --git a/icons/obj/items/clothing/shoes.dmi b/icons/obj/items/clothing/shoes.dmi index c4e01786e5..f8e41256d9 100644 Binary files a/icons/obj/items/clothing/shoes.dmi and b/icons/obj/items/clothing/shoes.dmi differ diff --git a/icons/obj/items/clothing/suits.dmi b/icons/obj/items/clothing/suits.dmi index ffe4c53546..919d63c573 100644 Binary files a/icons/obj/items/clothing/suits.dmi and b/icons/obj/items/clothing/suits.dmi differ diff --git a/icons/obj/items/clothing/ties.dmi b/icons/obj/items/clothing/ties.dmi index e509f8f2fa..ef2dc7cae5 100644 Binary files a/icons/obj/items/clothing/ties.dmi and b/icons/obj/items/clothing/ties.dmi differ diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index 1e852ba5d5..66baecb989 100644 Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ diff --git a/icons/obj/items/crayons.dmi b/icons/obj/items/crayons.dmi index 7ebabd5a81..1c7053a8a9 100644 Binary files a/icons/obj/items/crayons.dmi and b/icons/obj/items/crayons.dmi differ diff --git a/icons/obj/items/drinks.dmi b/icons/obj/items/drinks.dmi index 2823407a42..1203f3d18e 100644 Binary files a/icons/obj/items/drinks.dmi and b/icons/obj/items/drinks.dmi differ diff --git a/icons/obj/items/food.dmi b/icons/obj/items/food.dmi index 3b4cbb1259..d49b57b098 100644 Binary files a/icons/obj/items/food.dmi and b/icons/obj/items/food.dmi differ diff --git a/icons/obj/items/food_ingredients.dmi b/icons/obj/items/food_ingredients.dmi index 3e30f51153..c0a0213e6d 100644 Binary files a/icons/obj/items/food_ingredients.dmi and b/icons/obj/items/food_ingredients.dmi differ diff --git a/icons/obj/items/hunter/pred_gear.dmi b/icons/obj/items/hunter/pred_gear.dmi index 4501e75a06..0e25a24f1a 100644 Binary files a/icons/obj/items/hunter/pred_gear.dmi and b/icons/obj/items/hunter/pred_gear.dmi differ diff --git a/icons/obj/items/items.dmi b/icons/obj/items/items.dmi index 860acb3e34..d6ce51ba99 100644 Binary files a/icons/obj/items/items.dmi and b/icons/obj/items/items.dmi differ diff --git a/icons/obj/items/kitchen_tools.dmi b/icons/obj/items/kitchen_tools.dmi index 625d992f01..5720532589 100644 Binary files a/icons/obj/items/kitchen_tools.dmi and b/icons/obj/items/kitchen_tools.dmi differ diff --git a/icons/obj/items/lighting.dmi b/icons/obj/items/lighting.dmi index b7132b0122..024db8c832 100644 Binary files a/icons/obj/items/lighting.dmi and b/icons/obj/items/lighting.dmi differ diff --git a/icons/obj/items/organs.dmi b/icons/obj/items/organs.dmi index 06bf5e302f..0cbe238f75 100644 Binary files a/icons/obj/items/organs.dmi and b/icons/obj/items/organs.dmi differ diff --git a/icons/obj/items/paper.dmi b/icons/obj/items/paper.dmi index c39fede236..b15d4be607 100644 Binary files a/icons/obj/items/paper.dmi and b/icons/obj/items/paper.dmi differ diff --git a/icons/obj/items/playing_cards.dmi b/icons/obj/items/playing_cards.dmi index 4db5c94cf0..61b521eddd 100644 Binary files a/icons/obj/items/playing_cards.dmi and b/icons/obj/items/playing_cards.dmi differ diff --git a/icons/obj/items/storage.dmi b/icons/obj/items/storage.dmi deleted file mode 100644 index 6784f4eb6e..0000000000 Binary files a/icons/obj/items/storage.dmi and /dev/null differ diff --git a/icons/obj/items/storage/bag.dmi b/icons/obj/items/storage/bag.dmi new file mode 100644 index 0000000000..3129519092 Binary files /dev/null and b/icons/obj/items/storage/bag.dmi differ diff --git a/icons/obj/items/storage/bags.dmi b/icons/obj/items/storage/bags.dmi new file mode 100644 index 0000000000..dd515525d8 Binary files /dev/null and b/icons/obj/items/storage/bags.dmi differ diff --git a/icons/obj/items/storage/box.dmi b/icons/obj/items/storage/box.dmi new file mode 100644 index 0000000000..a530753da2 Binary files /dev/null and b/icons/obj/items/storage/box.dmi differ diff --git a/icons/obj/items/storage/boxes.dmi b/icons/obj/items/storage/boxes.dmi new file mode 100644 index 0000000000..055f2869f6 Binary files /dev/null and b/icons/obj/items/storage/boxes.dmi differ diff --git a/icons/obj/items/storage/briefcases.dmi b/icons/obj/items/storage/briefcases.dmi new file mode 100644 index 0000000000..7ba5a03821 Binary files /dev/null and b/icons/obj/items/storage/briefcases.dmi differ diff --git a/icons/obj/items/storage/holster.dmi b/icons/obj/items/storage/holster.dmi new file mode 100644 index 0000000000..c367f7e36d Binary files /dev/null and b/icons/obj/items/storage/holster.dmi differ diff --git a/icons/obj/items/storage/holsters.dmi b/icons/obj/items/storage/holsters.dmi new file mode 100644 index 0000000000..0e4e75027f Binary files /dev/null and b/icons/obj/items/storage/holsters.dmi differ diff --git a/icons/obj/items/storage/kits.dmi b/icons/obj/items/storage/kits.dmi new file mode 100644 index 0000000000..804c3df3bb Binary files /dev/null and b/icons/obj/items/storage/kits.dmi differ diff --git a/icons/obj/items/storage/medical.dmi b/icons/obj/items/storage/medical.dmi new file mode 100644 index 0000000000..f520ef5634 Binary files /dev/null and b/icons/obj/items/storage/medical.dmi differ diff --git a/icons/obj/items/storage/mre.dmi b/icons/obj/items/storage/mre.dmi new file mode 100644 index 0000000000..6e8d7e6de3 Binary files /dev/null and b/icons/obj/items/storage/mre.dmi differ diff --git a/icons/obj/items/storage/packets.dmi b/icons/obj/items/storage/packets.dmi new file mode 100644 index 0000000000..ac900a18aa Binary files /dev/null and b/icons/obj/items/storage/packets.dmi differ diff --git a/icons/obj/items/storage/toolbox.dmi b/icons/obj/items/storage/toolbox.dmi new file mode 100644 index 0000000000..a18cb3466f Binary files /dev/null and b/icons/obj/items/storage/toolbox.dmi differ diff --git a/icons/obj/items/surgery_tools.dmi b/icons/obj/items/surgery_tools.dmi index 89c9ebf628..c5e30c0c8c 100644 Binary files a/icons/obj/items/surgery_tools.dmi and b/icons/obj/items/surgery_tools.dmi differ diff --git a/icons/obj/items/weapons/grenade.dmi b/icons/obj/items/weapons/grenade.dmi index 7ee5af7370..61c9707e43 100644 Binary files a/icons/obj/items/weapons/grenade.dmi and b/icons/obj/items/weapons/grenade.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi index 6c5d741ef9..1152bf3ed5 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/boxes_and_lids.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/handfuls.dmi b/icons/obj/items/weapons/guns/ammo_boxes/handfuls.dmi index 3355358f72..b1b181c182 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/handfuls.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/handfuls.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi index c56cb4deea..90c0f341dd 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/magazines.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi index ca12af2e4f..7ddaf1b095 100644 Binary files a/icons/obj/items/weapons/guns/ammo_boxes/text.dmi and b/icons/obj/items/weapons/guns/ammo_boxes/text.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi index 2adece3b1a..8d8ef7cb01 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi index 1e48bdfa65..8d9ce103dc 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi index 0ea04eeb2a..850cd8a495 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/uscm.dmi differ diff --git a/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi b/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi index 11eab502b0..6a8bbca97e 100644 Binary files a/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi and b/icons/obj/items/weapons/guns/ammo_by_faction/wy.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi index e0843820dd..cfa9238338 100644 Binary files a/icons/obj/items/weapons/guns/attachments.dmi and b/icons/obj/items/weapons/guns/attachments.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/barrel.dmi b/icons/obj/items/weapons/guns/attachments/barrel.dmi index c3796f4102..7d0192f929 100644 Binary files a/icons/obj/items/weapons/guns/attachments/barrel.dmi and b/icons/obj/items/weapons/guns/attachments/barrel.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/rail.dmi b/icons/obj/items/weapons/guns/attachments/rail.dmi index 68cb2648eb..f53187160e 100644 Binary files a/icons/obj/items/weapons/guns/attachments/rail.dmi and b/icons/obj/items/weapons/guns/attachments/rail.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/stock.dmi b/icons/obj/items/weapons/guns/attachments/stock.dmi index e626143cc4..ef8d80a5b2 100644 Binary files a/icons/obj/items/weapons/guns/attachments/stock.dmi and b/icons/obj/items/weapons/guns/attachments/stock.dmi differ diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index b98e185f02..8d42d0ee01 100644 Binary files a/icons/obj/items/weapons/guns/attachments/under.dmi and b/icons/obj/items/weapons/guns/attachments/under.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi index feca8443db..1ef71a2c9c 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/colony.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi index 16e37d5f4e..9103c2e56d 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/upp.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index b107511d67..dd5c76bcbd 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi and b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/classic/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/classic/back.dmi index 63b197dd36..fb21be90f8 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/classic/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/classic/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_lefthand.dmi index 22eae6bd0b..df823405fa 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_obj.dmi index b9aa8907a8..4a31d29042 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_righthand.dmi index dd432a1fa2..21d7b04f6f 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/classic/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/classic/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/classic/suit_slot.dmi b/icons/obj/items/weapons/guns/guns_by_map/classic/suit_slot.dmi index 1306cbb7d8..0d3b1f7155 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/classic/suit_slot.dmi and b/icons/obj/items/weapons/guns/guns_by_map/classic/suit_slot.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/desert/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/desert/back.dmi index 63771f7ff1..9e5e8d4c9c 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/desert/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/desert/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_lefthand.dmi index 6530e1d696..02021756a8 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_obj.dmi index cae152f237..a91d071754 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_righthand.dmi index 9df4a0d86c..e408fff750 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/desert/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/desert/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/desert/suit_slot.dmi b/icons/obj/items/weapons/guns/guns_by_map/desert/suit_slot.dmi index 2f5324fdb4..764a51e8b3 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/desert/suit_slot.dmi and b/icons/obj/items/weapons/guns/guns_by_map/desert/suit_slot.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi index 248f4ffe44..a8352943bc 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi index 4a4d07d410..709b35db69 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi index d3ea7b9531..0c45faaf2b 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi index 09973bb7b8..064f71a548 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi b/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi index 14d73cfdc5..249710b522 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi and b/icons/obj/items/weapons/guns/guns_by_map/jungle/suit_slot.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/snow/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/snow/back.dmi index b72963ff79..8ad5352cc4 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/snow/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/snow/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_lefthand.dmi index 2c8dedb6cf..a837e70614 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_obj.dmi index fbc98874a4..171d0d0eca 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_righthand.dmi index 6e7b9cb8c9..1de053b6f9 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/snow/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/snow/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/urban/back.dmi b/icons/obj/items/weapons/guns/guns_by_map/urban/back.dmi index e849b81340..5996089a64 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/urban/back.dmi and b/icons/obj/items/weapons/guns/guns_by_map/urban/back.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_lefthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_lefthand.dmi index c844b637ab..ea84f3e69e 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_lefthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_lefthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_obj.dmi b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_obj.dmi index 09029fb61f..78e322e3db 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_obj.dmi and b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_obj.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_righthand.dmi b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_righthand.dmi index 78bebfdd4b..1b2c96fb95 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/urban/guns_righthand.dmi and b/icons/obj/items/weapons/guns/guns_by_map/urban/guns_righthand.dmi differ diff --git a/icons/obj/items/weapons/guns/guns_by_map/urban/suit_slot.dmi b/icons/obj/items/weapons/guns/guns_by_map/urban/suit_slot.dmi index 3fee108781..738add8e1d 100644 Binary files a/icons/obj/items/weapons/guns/guns_by_map/urban/suit_slot.dmi and b/icons/obj/items/weapons/guns/guns_by_map/urban/suit_slot.dmi differ diff --git a/icons/obj/items/weapons/guns/handful.dmi b/icons/obj/items/weapons/guns/handful.dmi index 1d46db248d..050f5b4f7c 100644 Binary files a/icons/obj/items/weapons/guns/handful.dmi and b/icons/obj/items/weapons/guns/handful.dmi differ diff --git a/icons/obj/items/weapons/guns/lineart.dmi b/icons/obj/items/weapons/guns/lineart.dmi index 7e8537cca5..eda346cede 100644 Binary files a/icons/obj/items/weapons/guns/lineart.dmi and b/icons/obj/items/weapons/guns/lineart.dmi differ diff --git a/icons/obj/items/weapons/projectiles.dmi b/icons/obj/items/weapons/projectiles.dmi index c3aa143def..21c210c149 100644 Binary files a/icons/obj/items/weapons/projectiles.dmi and b/icons/obj/items/weapons/projectiles.dmi differ diff --git a/icons/obj/items/weapons/weapons.dmi b/icons/obj/items/weapons/weapons.dmi index 40e489df90..6c5f4ad345 100644 Binary files a/icons/obj/items/weapons/weapons.dmi and b/icons/obj/items/weapons/weapons.dmi differ diff --git a/icons/obj/janitor.dmi b/icons/obj/janitor.dmi index e418c4eb2e..b682a43144 100644 Binary files a/icons/obj/janitor.dmi and b/icons/obj/janitor.dmi differ diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi index 3a7c0226cd..e604ccd390 100644 Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ diff --git a/icons/obj/structures/barricades.dmi b/icons/obj/structures/barricades.dmi index 1a066d29ff..fd9659d3de 100644 Binary files a/icons/obj/structures/barricades.dmi and b/icons/obj/structures/barricades.dmi differ diff --git a/icons/obj/structures/barricades_christmas.dmi b/icons/obj/structures/barricades_christmas.dmi index 215bf9710a..64b2383a4a 100644 Binary files a/icons/obj/structures/barricades_christmas.dmi and b/icons/obj/structures/barricades_christmas.dmi differ diff --git a/icons/obj/structures/closet.dmi b/icons/obj/structures/closet.dmi index 40d6b1d26d..e0e50ab9ae 100644 Binary files a/icons/obj/structures/closet.dmi and b/icons/obj/structures/closet.dmi differ diff --git a/icons/obj/structures/crates.dmi b/icons/obj/structures/crates.dmi index a1a494d90d..d9f66eca1e 100644 Binary files a/icons/obj/structures/crates.dmi and b/icons/obj/structures/crates.dmi differ diff --git a/icons/obj/structures/doors/blastdoors_shutters.dmi b/icons/obj/structures/doors/blastdoors_shutters.dmi index 8c63d05809..0e215e5823 100644 Binary files a/icons/obj/structures/doors/blastdoors_shutters.dmi and b/icons/obj/structures/doors/blastdoors_shutters.dmi differ diff --git a/icons/obj/structures/doors/dropship1_cargo.dmi b/icons/obj/structures/doors/dropship1_cargo.dmi index 699a3cc13b..be51759232 100644 Binary files a/icons/obj/structures/doors/dropship1_cargo.dmi and b/icons/obj/structures/doors/dropship1_cargo.dmi differ diff --git a/icons/obj/structures/doors/dropship1_pilot.dmi b/icons/obj/structures/doors/dropship1_pilot.dmi index 0642b3d2a2..9a2c8c621b 100644 Binary files a/icons/obj/structures/doors/dropship1_pilot.dmi and b/icons/obj/structures/doors/dropship1_pilot.dmi differ diff --git a/icons/obj/structures/doors/dropship1_side.dmi b/icons/obj/structures/doors/dropship1_side.dmi index 7d0d5e5245..9619b11568 100644 Binary files a/icons/obj/structures/doors/dropship1_side.dmi and b/icons/obj/structures/doors/dropship1_side.dmi differ diff --git a/icons/obj/structures/doors/dropship2_cargo.dmi b/icons/obj/structures/doors/dropship2_cargo.dmi index 4e2ebfe0e3..f6bd231848 100644 Binary files a/icons/obj/structures/doors/dropship2_cargo.dmi and b/icons/obj/structures/doors/dropship2_cargo.dmi differ diff --git a/icons/obj/structures/doors/dropship2_pilot.dmi b/icons/obj/structures/doors/dropship2_pilot.dmi index 9a77adf39f..226249be4d 100644 Binary files a/icons/obj/structures/doors/dropship2_pilot.dmi and b/icons/obj/structures/doors/dropship2_pilot.dmi differ diff --git a/icons/obj/structures/doors/dropship2_side.dmi b/icons/obj/structures/doors/dropship2_side.dmi index 03c0492d7d..8dfa437d65 100644 Binary files a/icons/obj/structures/doors/dropship2_side.dmi and b/icons/obj/structures/doors/dropship2_side.dmi differ diff --git a/icons/obj/structures/doors/dropship3_cargo.dmi b/icons/obj/structures/doors/dropship3_cargo.dmi new file mode 100644 index 0000000000..864811197f Binary files /dev/null and b/icons/obj/structures/doors/dropship3_cargo.dmi differ diff --git a/icons/obj/structures/doors/dropship3_pilot.dmi b/icons/obj/structures/doors/dropship3_pilot.dmi new file mode 100644 index 0000000000..d7e07e36b3 Binary files /dev/null and b/icons/obj/structures/doors/dropship3_pilot.dmi differ diff --git a/icons/obj/structures/doors/dropship3_side.dmi b/icons/obj/structures/doors/dropship3_side.dmi new file mode 100644 index 0000000000..8dfa437d65 Binary files /dev/null and b/icons/obj/structures/doors/dropship3_side.dmi differ diff --git a/icons/obj/structures/doors/dropship3_side2.dmi b/icons/obj/structures/doors/dropship3_side2.dmi new file mode 100644 index 0000000000..d8aa391d42 Binary files /dev/null and b/icons/obj/structures/doors/dropship3_side2.dmi differ diff --git a/icons/obj/structures/machinery/airlock_machines.dmi b/icons/obj/structures/machinery/airlock_machines.dmi index 0c4643269c..30a5fecccd 100644 Binary files a/icons/obj/structures/machinery/airlock_machines.dmi and b/icons/obj/structures/machinery/airlock_machines.dmi differ diff --git a/icons/obj/structures/machinery/apc.dmi b/icons/obj/structures/machinery/apc.dmi new file mode 100644 index 0000000000..74698aeaf9 Binary files /dev/null and b/icons/obj/structures/machinery/apc.dmi differ diff --git a/icons/obj/structures/machinery/atmos.dmi b/icons/obj/structures/machinery/atmos.dmi index 39440487ab..651f248103 100644 Binary files a/icons/obj/structures/machinery/atmos.dmi and b/icons/obj/structures/machinery/atmos.dmi differ diff --git a/icons/obj/structures/machinery/biogenerator.dmi b/icons/obj/structures/machinery/biogenerator.dmi index c65a9571b0..373b40e7d4 100644 Binary files a/icons/obj/structures/machinery/biogenerator.dmi and b/icons/obj/structures/machinery/biogenerator.dmi differ diff --git a/icons/obj/structures/machinery/computer3.dmi b/icons/obj/structures/machinery/computer3.dmi index 047417f303..a00ec12ddf 100644 Binary files a/icons/obj/structures/machinery/computer3.dmi and b/icons/obj/structures/machinery/computer3.dmi differ diff --git a/icons/obj/structures/machinery/defenses/planted_flag.dmi b/icons/obj/structures/machinery/defenses/planted_flag.dmi index 40616eb0ca..5b9fbb6e6f 100644 Binary files a/icons/obj/structures/machinery/defenses/planted_flag.dmi and b/icons/obj/structures/machinery/defenses/planted_flag.dmi differ diff --git a/icons/obj/structures/machinery/defenses/upp_defenses.dmi b/icons/obj/structures/machinery/defenses/upp_defenses.dmi new file mode 100644 index 0000000000..09313b374f Binary files /dev/null and b/icons/obj/structures/machinery/defenses/upp_defenses.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_defenses.dmi b/icons/obj/structures/machinery/defenses/wy_defenses.dmi new file mode 100644 index 0000000000..a05da0cf77 Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_defenses.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_heavy.dmi b/icons/obj/structures/machinery/defenses/wy_heavy.dmi new file mode 100644 index 0000000000..a6a7fbf49c Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_heavy.dmi differ diff --git a/icons/obj/structures/machinery/defenses/wy_static.dmi b/icons/obj/structures/machinery/defenses/wy_static.dmi new file mode 100644 index 0000000000..92a8908802 Binary files /dev/null and b/icons/obj/structures/machinery/defenses/wy_static.dmi differ diff --git a/icons/obj/structures/machinery/drone_fab.dmi b/icons/obj/structures/machinery/drone_fab.dmi index 3a13a8684a..785e46c900 100644 Binary files a/icons/obj/structures/machinery/drone_fab.dmi and b/icons/obj/structures/machinery/drone_fab.dmi differ diff --git a/icons/obj/structures/machinery/floodlight.dmi b/icons/obj/structures/machinery/floodlight.dmi index 7330d1749a..1f6b3b3d6d 100644 Binary files a/icons/obj/structures/machinery/floodlight.dmi and b/icons/obj/structures/machinery/floodlight.dmi differ diff --git a/icons/obj/structures/machinery/fuelpump.dmi b/icons/obj/structures/machinery/fuelpump.dmi new file mode 100644 index 0000000000..a63fbab880 Binary files /dev/null and b/icons/obj/structures/machinery/fuelpump.dmi differ diff --git a/icons/obj/structures/machinery/fusion_eng.dmi b/icons/obj/structures/machinery/fusion_eng.dmi index 4d42baac72..9bd9024201 100644 Binary files a/icons/obj/structures/machinery/fusion_eng.dmi and b/icons/obj/structures/machinery/fusion_eng.dmi differ diff --git a/icons/obj/structures/machinery/geothermal.dmi b/icons/obj/structures/machinery/geothermal.dmi index a3cd64c374..6d3d5af4ef 100644 Binary files a/icons/obj/structures/machinery/geothermal.dmi and b/icons/obj/structures/machinery/geothermal.dmi differ diff --git a/icons/obj/structures/machinery/library.dmi b/icons/obj/structures/machinery/library.dmi index 00e90fc7ba..b2e62dc1bb 100644 Binary files a/icons/obj/structures/machinery/library.dmi and b/icons/obj/structures/machinery/library.dmi differ diff --git a/icons/obj/structures/machinery/meter.dmi b/icons/obj/structures/machinery/meter.dmi index 5f3051d8c0..7cc6815111 100644 Binary files a/icons/obj/structures/machinery/meter.dmi and b/icons/obj/structures/machinery/meter.dmi differ diff --git a/icons/obj/structures/machinery/power.dmi b/icons/obj/structures/machinery/power.dmi index 76ca47047b..d976a23d4a 100644 Binary files a/icons/obj/structures/machinery/power.dmi and b/icons/obj/structures/machinery/power.dmi differ diff --git a/icons/obj/structures/machinery/robotics.dmi b/icons/obj/structures/machinery/robotics.dmi index c53e7823ca..5939f215b7 100644 Binary files a/icons/obj/structures/machinery/robotics.dmi and b/icons/obj/structures/machinery/robotics.dmi differ diff --git a/icons/obj/structures/machinery/science_machines_64x32.dmi b/icons/obj/structures/machinery/science_machines_64x32.dmi index 8defd19177..ab4e42717f 100644 Binary files a/icons/obj/structures/machinery/science_machines_64x32.dmi and b/icons/obj/structures/machinery/science_machines_64x32.dmi differ diff --git a/icons/obj/structures/machinery/vending.dmi b/icons/obj/structures/machinery/vending.dmi index 048cc64acf..6ed2ebf0f6 100644 Binary files a/icons/obj/structures/machinery/vending.dmi and b/icons/obj/structures/machinery/vending.dmi differ diff --git a/icons/obj/structures/machinery/virology.dmi b/icons/obj/structures/machinery/virology.dmi index 2f2f926021..50a45753b7 100644 Binary files a/icons/obj/structures/machinery/virology.dmi and b/icons/obj/structures/machinery/virology.dmi differ diff --git a/icons/obj/structures/mortar.dmi b/icons/obj/structures/mortar.dmi index 7888d14635..db94d4b7c6 100644 Binary files a/icons/obj/structures/mortar.dmi and b/icons/obj/structures/mortar.dmi differ diff --git a/icons/obj/structures/plantable_flag.dmi b/icons/obj/structures/plantable_flag.dmi new file mode 100644 index 0000000000..2485f29c3b Binary files /dev/null and b/icons/obj/structures/plantable_flag.dmi differ diff --git a/icons/obj/structures/props/almayer_props.dmi b/icons/obj/structures/props/almayer_props.dmi index 44a4a989ae..536ac7e6a8 100644 Binary files a/icons/obj/structures/props/almayer_props.dmi and b/icons/obj/structures/props/almayer_props.dmi differ diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi index 0b14e7b8a6..233e4c9c72 100644 Binary files a/icons/obj/structures/props/almayer_props64.dmi and b/icons/obj/structures/props/almayer_props64.dmi differ diff --git a/icons/obj/structures/props/banners.dmi b/icons/obj/structures/props/banners.dmi index b384587d93..d99ac69be2 100644 Binary files a/icons/obj/structures/props/banners.dmi and b/icons/obj/structures/props/banners.dmi differ diff --git a/icons/obj/structures/props/decals.dmi b/icons/obj/structures/props/decals.dmi index e99f52a104..5b641ceaba 100644 Binary files a/icons/obj/structures/props/decals.dmi and b/icons/obj/structures/props/decals.dmi differ diff --git a/icons/obj/structures/props/flags.dmi b/icons/obj/structures/props/flags.dmi new file mode 100644 index 0000000000..a162da6585 Binary files /dev/null and b/icons/obj/structures/props/flags.dmi differ diff --git a/icons/obj/structures/props/stationobjs.dmi b/icons/obj/structures/props/stationobjs.dmi index 66c396f41d..09868e92fd 100644 Binary files a/icons/obj/structures/props/stationobjs.dmi and b/icons/obj/structures/props/stationobjs.dmi differ diff --git a/icons/obj/structures/structures.dmi b/icons/obj/structures/structures.dmi index d96329839a..824a412cc8 100644 Binary files a/icons/obj/structures/structures.dmi and b/icons/obj/structures/structures.dmi differ diff --git a/icons/obj/structures/tables.dmi b/icons/obj/structures/tables.dmi index 5f6aca0fee..4f118b4eea 100644 Binary files a/icons/obj/structures/tables.dmi and b/icons/obj/structures/tables.dmi differ diff --git a/icons/obj/vehicles/arc.dmi b/icons/obj/vehicles/arc.dmi index c7299ee22c..746f8a99ec 100644 Binary files a/icons/obj/vehicles/arc.dmi and b/icons/obj/vehicles/arc.dmi differ diff --git a/icons/obj/vehicles/hardpoints/arc.dmi b/icons/obj/vehicles/hardpoints/arc.dmi index 873467317d..b971efecff 100644 Binary files a/icons/obj/vehicles/hardpoints/arc.dmi and b/icons/obj/vehicles/hardpoints/arc.dmi differ diff --git a/icons/obj/vehicles/interiors/arc.dmi b/icons/obj/vehicles/interiors/arc.dmi index f6406fab83..133ce57391 100644 Binary files a/icons/obj/vehicles/interiors/arc.dmi and b/icons/obj/vehicles/interiors/arc.dmi differ diff --git a/icons/rebase_icons.dmi b/icons/rebase_icons.dmi index 6b0a25a1f7..3d9234f3f9 100644 Binary files a/icons/rebase_icons.dmi and b/icons/rebase_icons.dmi differ diff --git a/icons/turf/areas.dmi b/icons/turf/areas.dmi index 8b525fd568..c8bf32b00b 100644 Binary files a/icons/turf/areas.dmi and b/icons/turf/areas.dmi differ diff --git a/icons/turf/areas_interiors.dmi b/icons/turf/areas_interiors.dmi index 0b9d67bc44..832988ff79 100644 Binary files a/icons/turf/areas_interiors.dmi and b/icons/turf/areas_interiors.dmi differ diff --git a/icons/turf/dropship.dmi b/icons/turf/dropship.dmi index 0b5cebe9e2..9b57ef9c59 100644 Binary files a/icons/turf/dropship.dmi and b/icons/turf/dropship.dmi differ diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi index f1ba788021..03f496a682 100644 Binary files a/icons/turf/dropship2.dmi and b/icons/turf/dropship2.dmi differ diff --git a/icons/turf/dropship3.dmi b/icons/turf/dropship3.dmi index 937b20a182..ed160f4be5 100644 Binary files a/icons/turf/dropship3.dmi and b/icons/turf/dropship3.dmi differ diff --git a/icons/turf/ert_shuttle.dmi b/icons/turf/ert_shuttle.dmi index aa17facdd6..f50b99b776 100644 Binary files a/icons/turf/ert_shuttle.dmi and b/icons/turf/ert_shuttle.dmi differ diff --git a/icons/turf/escapepods.dmi b/icons/turf/escapepods.dmi index 089db3cd3e..96aa67789b 100644 Binary files a/icons/turf/escapepods.dmi and b/icons/turf/escapepods.dmi differ diff --git a/icons/turf/ground_map.dmi b/icons/turf/ground_map.dmi index 1970ad9661..944293c2c4 100644 Binary files a/icons/turf/ground_map.dmi and b/icons/turf/ground_map.dmi differ diff --git a/icons/turf/shuttle.dmi b/icons/turf/shuttle.dmi index 14ff9b3d0e..c995c03de3 100644 Binary files a/icons/turf/shuttle.dmi and b/icons/turf/shuttle.dmi differ diff --git a/icons/turf/walls/almayer.dmi b/icons/turf/walls/almayer.dmi index 2cb182c603..671dcc1fbd 100644 Binary files a/icons/turf/walls/almayer.dmi and b/icons/turf/walls/almayer.dmi differ diff --git a/icons/turf/walls/windows.dmi b/icons/turf/walls/windows.dmi index 2904c8d5fa..cd80caf83e 100644 Binary files a/icons/turf/walls/windows.dmi and b/icons/turf/walls/windows.dmi differ diff --git a/icons/ui_icons/map_blips_large.dmi b/icons/ui_icons/map_blips_large.dmi index 0cf41b52a4..f03433c8c8 100644 Binary files a/icons/ui_icons/map_blips_large.dmi and b/icons/ui_icons/map_blips_large.dmi differ diff --git a/librust_g.so b/librust_g.so index 56625573d0..382d50e27f 100644 Binary files a/librust_g.so and b/librust_g.so differ diff --git a/map_config/maps.txt b/map_config/maps.txt index 5a4f1a0884..bf3570e7f5 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -47,7 +47,6 @@ map ice_colony_v2 endmap map shivas_snowball - voteweight 0 endmap map kutjevo diff --git a/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json b/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json index 54c13d429c..156b291fb2 100644 --- a/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json +++ b/maps/Nightmare/maps/FOP_v3_Sciannex/nightmare.json @@ -1,3 +1,10 @@ [ - { "type": "map_sprinkle", "path": "sprinkles/" } + { "type": "map_sprinkle", "path": "sprinkles/" }, +{ + "type": "map_insert", + "landmark": "riot_control", + "chance": 0.5, + "path": "standalone/riot_in_progress.dmm", + "when": { "riot_in_progress": "true" } +} ] diff --git a/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json b/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json index fe51488c70..217ac5a8cb 100644 --- a/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json +++ b/maps/Nightmare/maps/FOP_v3_Sciannex/scenario.json @@ -1 +1,9 @@ -[] +[ + { + "type": "pick", "name": "Riot Control", + "choices": [ + { "weight": 4, "type": "def", "values": { "riot_in_progress": "none" } }, + { "weight": 2, "type": "def", "values": { "riot_in_progress": "true" } } + ] + } +] diff --git a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json index 9c3008696d..301ffa3371 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json @@ -96,5 +96,12 @@ "landmark": "lz2-north", "path": "lz2-variations/north/full-closed.dmm", "when": { "lz2-north": "full" } - } + }, + { + "type": "map_insert", + "landmark": "panic_room", + "chance": 0.5, + "path": "standalone/panic_room_hold.dmm", + "when": { "panic_room": "full" } + } ] diff --git a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json index 414bbcb15a..4b4eb7b6b9 100644 --- a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json +++ b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json @@ -8,6 +8,13 @@ { "weight": 1, "type": "def", "values": { "lz2-southwest": "half", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "full", "lz2-southeast-gate": "full", "lz2-east": "none", "lz2-east-gate": "half", "lz2-north": "none"} }, { "weight": 1, "type": "def", "values": { "lz2-southwest": "full", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "none", "lz2-southeast-gate": "open", "lz2-east": "full", "lz2-east-gate": "none", "lz2-north": "open"} } ] +}, +{ + "type": "pick", "name": "Panic Room", + "choices": [ + { "weight": 10, "type": "def", "values": { "panic_room": "none"} }, + { "weight": 3, "type": "def", "values": { "panic_room": "full"} } + ] } ] diff --git a/maps/Nightmare/maps/LV624/nightmare.json b/maps/Nightmare/maps/LV624/nightmare.json index 8f81a61c16..0fe5164317 100644 --- a/maps/Nightmare/maps/LV624/nightmare.json +++ b/maps/Nightmare/maps/LV624/nightmare.json @@ -6,6 +6,13 @@ "path": "standalone/clfship.dmm", "when": { "lvevent": "fallen_ship" } }, + { + "type": "map_insert", + "landmark": "corporatedome", + "chance": 0.5, + "path": "standalone/corporatedome.dmm", + "when": { "lvevent": "asset_protection" } + }, { "type": "map_insert", "landmark": "lv-skylight", diff --git a/maps/Nightmare/maps/LV624/scenario.json b/maps/Nightmare/maps/LV624/scenario.json index 3c8051a4eb..6880cb542f 100644 --- a/maps/Nightmare/maps/LV624/scenario.json +++ b/maps/Nightmare/maps/LV624/scenario.json @@ -13,7 +13,8 @@ { "weight": 2, "type": "def", "values": { "lvevent": "none" } }, { "weight": 4, "type": "def", "values": { "lvevent": "last_stand" } }, { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "bridge" } }, - { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } } + { "weight": 2, "type": "def", "values": { "lvevent": "fallen_ship", "mainpath": "right" } }, + { "weight": 2, "type": "def", "values": { "lvevent": "asset_protection", "mainpath": "left" } } ] } ] diff --git a/maps/bigredv2.json b/maps/bigredv2.json index 0a6db01cd4..996d0d4442 100644 --- a/maps/bigredv2.json +++ b/maps/bigredv2.json @@ -11,8 +11,10 @@ "/datum/equipment_preset/survivor/engineer/solaris", "/datum/equipment_preset/survivor/trucker/solaris", "/datum/equipment_preset/survivor/security/solaris", + "/datum/equipment_preset/survivor/uscm/solaris", "/datum/equipment_preset/survivor/colonial_marshal/solaris", "/datum/equipment_preset/survivor/corporate/solaris", + "/datum/equipment_preset/survivor/flight_control_operator", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], @@ -24,7 +26,7 @@ 0.0 ], "map_item_type": "/obj/item/map/big_red_map", - "announce_text": "We've lost contact with Weyland-Yutani's research facility, Solaris Ridge. The ###SHIPNAME### has been dispatched to assist.", + "announce_text": "Weyland-Yutani has lost contact with one of its Biological Storage Facilities, Solaris Ridge, on the planet of LV-1413. The ###SHIPNAME### has been requested to look into the blackout by Weyland-Yutani.", "monkey_types": [ "neaera" ], diff --git a/maps/corsat.json b/maps/corsat.json index 24e8afccbe..934a7e2172 100644 --- a/maps/corsat.json +++ b/maps/corsat.json @@ -4,7 +4,8 @@ "map_file": "Corsat.dmm", "environment_traits": { "Lockdown": true, - "COLD": true + "COLD": true, + "InSpace": true }, "survivor_types": [ "/datum/equipment_preset/survivor/scientist/corsat", @@ -12,7 +13,7 @@ "/datum/equipment_preset/survivor/goon", "/datum/equipment_preset/survivor/doctor/corsat", "/datum/equipment_preset/survivor/security/corsat", - "/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/corsat", + "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/corsat", "/datum/equipment_preset/survivor/engineer/corsat", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" diff --git a/maps/desert_dam.json b/maps/desert_dam.json index b4e535e893..b40e9887d1 100644 --- a/maps/desert_dam.json +++ b/maps/desert_dam.json @@ -5,14 +5,16 @@ "webmap_url": "Trijent", "survivor_types": [ "/datum/equipment_preset/survivor/doctor/trijent", + "/datum/equipment_preset/survivor/scientist/trijent", "/datum/equipment_preset/survivor/roughneck", "/datum/equipment_preset/survivor/chaplain/trijent", - "/datum/equipment_preset/survivor/interstellar_commerce_commission_liason", - "/datum/equipment_preset/survivor/colonial_marshal", + "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison", + "/datum/equipment_preset/survivor/colonial_marshal/trijent", "/datum/equipment_preset/survivor/engineer/trijent", "/datum/equipment_preset/survivor/engineer/trijent/hydro", "/datum/equipment_preset/survivor/trucker/trijent", "/datum/equipment_preset/survivor/security/trijent", + "/datum/equipment_preset/survivor/corporate/trijent", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], diff --git a/maps/fiorina_sciannex.json b/maps/fiorina_sciannex.json index f278861370..85375dc5eb 100644 --- a/maps/fiorina_sciannex.json +++ b/maps/fiorina_sciannex.json @@ -4,15 +4,15 @@ "map_file": "Fiorina_SciAnnex.dmm", "webmap_url": "Fiorina", "survivor_types": [ - "/datum/equipment_preset/survivor/scientist/florina", - "/datum/equipment_preset/survivor/doctor/florina", + "/datum/equipment_preset/survivor/scientist/fiorina", + "/datum/equipment_preset/survivor/doctor/fiorina", "/datum/equipment_preset/survivor/interstellar_human_rights_observer", - "/datum/equipment_preset/survivor/security/florina", - "/datum/equipment_preset/survivor/colonial_marshal/florina", + "/datum/equipment_preset/survivor/security/fiorina", + "/datum/equipment_preset/survivor/colonial_marshal/fiorina", "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/gangleader", - "/datum/equipment_preset/survivor/engineer/florina", + "/datum/equipment_preset/survivor/engineer/fiorina", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], @@ -26,6 +26,7 @@ "survivor_message": "You are a survivor of the attack on Fiorina Orbital Penitentiary. You worked or lived on the prison station, and managed to avoid the alien attacks... until now.", "map_item_type": "/obj/item/map/FOP_map_v3", "announce_text": "An automated distress signal has been received from maximum-security prison \"Fiorina Orbital Penitentiary\". A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", + "environment_traits": { "InSpace": true }, "traits": [{ "Ground": true }], "nightmare_path": "maps/Nightmare/maps/FOP_v3_Sciannex/", "xvx_hives": { diff --git a/maps/interiors/aev.dmm b/maps/interiors/aev.dmm index edb12832ce..19a87c4fa4 100644 --- a/maps/interiors/aev.dmm +++ b/maps/interiors/aev.dmm @@ -7,10 +7,10 @@ tag = "back" }, /turf/open/shuttle/vehicle, -/area/vehicle/tank) +/area/interior/vehicle/tank) "c" = ( /turf/open/shuttle/vehicle, -/area/vehicle/tank) +/area/interior/vehicle/tank) "e" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -20,10 +20,8 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/tank) "f" = ( /obj/structure/interior_wall/tank{ layer = 2; @@ -64,7 +62,7 @@ layer = 3 }, /turf/open/shuttle/vehicle, -/area/vehicle/tank) +/area/interior/vehicle/tank) "r" = ( /obj/structure/interior_wall/tank{ icon_state = "front_1" @@ -97,10 +95,8 @@ pixel_x = 14; pixel_y = -21 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/tank) "v" = ( /obj/structure/interior_wall/tank{ layer = 2 @@ -124,16 +120,14 @@ pixel_y = 32 }, /turf/open/shuttle/vehicle, -/area/vehicle/tank) +/area/interior/vehicle/tank) "C" = ( /obj/structure/prop/tank{ icon_state = "prop_aev2"; layer = 3 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_1_1" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_1_1, +/area/interior/vehicle/tank) "D" = ( /obj/structure/interior_wall/tank{ icon_state = "back_1" @@ -154,10 +148,8 @@ layer = 2.9; pixel_x = -7 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/tank) "H" = ( /obj/structure/interior_wall/tank{ icon_state = "exterior_3"; @@ -178,7 +170,7 @@ pixel_y = -2 }, /turf/open/shuttle/vehicle, -/area/vehicle/tank) +/area/interior/vehicle/tank) "N" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -193,10 +185,8 @@ pixel_y = -10; pixel_x = -7 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/tank) "T" = ( /obj/structure/interior_wall/tank{ icon_state = "front_2" @@ -236,10 +226,8 @@ pixel_x = 8; pixel_y = 12 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/tank) (1,1,1) = {" j diff --git a/maps/interiors/apc.dmm b/maps/interiors/apc.dmm index 0b3100180b..a76405f5bc 100644 --- a/maps/interiors/apc.dmm +++ b/maps/interiors/apc.dmm @@ -14,10 +14,8 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "c" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -32,10 +30,8 @@ pixel_x = 8; pixel_y = -11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/apc) "d" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -45,10 +41,8 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc) "e" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_1" @@ -62,10 +56,8 @@ name = "Right M56 FPW handle"; pixel_y = 2 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/apc) "g" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_R" @@ -83,10 +75,8 @@ /turf/open/void/vehicle, /area/space) "i" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_0_1_15, +/area/interior/vehicle/apc) "j" = ( /turf/open/void/vehicle, /area/space) @@ -109,10 +99,8 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc) "n" = ( /obj/structure/interior_wall/apc{ icon_state = "front_2" @@ -152,10 +140,8 @@ pixel_x = -32; tag = "rear center" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_13, +/area/interior/vehicle/apc) "t" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_3" @@ -164,10 +150,8 @@ /area/space) "u" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_6, +/area/interior/vehicle/apc) "v" = ( /obj/structure/bed/chair/vehicle{ pixel_x = 8 @@ -180,10 +164,8 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc) "w" = ( /obj/effect/landmark/interior/spawn/entrance{ alpha = 50; @@ -198,10 +180,8 @@ pixel_x = 5; pixel_y = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc) "y" = ( /obj/structure/interior_wall/apc{ icon_state = "front_6" @@ -209,15 +189,11 @@ /turf/open/void/vehicle, /area/space) "z" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_5, +/area/interior/vehicle/apc) "A" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/apc) "B" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_inverse_R"; @@ -233,10 +209,8 @@ pixel_x = -24; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc) "D" = ( /obj/structure/interior_wall/apc{ icon_state = "wall"; @@ -271,10 +245,8 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "H" = ( /obj/structure/bed/chair/vehicle{ pixel_x = -8 @@ -291,10 +263,8 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "I" = ( /obj/effect/landmark/interior/spawn/vehicle_support_gunner_seat{ dir = 1 @@ -304,10 +274,8 @@ name = "Left M56 FPW handle"; pixel_y = 17 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/apc) "J" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_L"; @@ -321,10 +289,8 @@ /turf/open/void/vehicle, /area/space) "K" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_14, +/area/interior/vehicle/apc) "L" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_L" @@ -361,10 +327,8 @@ /turf/open/void/vehicle, /area/space) "R" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1_3" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_1_3, +/area/interior/vehicle/apc) "S" = ( /obj/structure/interior_wall/apc{ alpha = 100; @@ -399,10 +363,8 @@ pixel_x = -7; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "V" = ( /obj/structure/interior_wall/apc{ icon_state = "wall" @@ -420,10 +382,8 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc) "X" = ( /obj/structure/interior_wall/apc{ icon_state = "front_wheel_R" @@ -442,10 +402,8 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_12, +/area/interior/vehicle/apc) "Z" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_4" diff --git a/maps/interiors/apc_command.dmm b/maps/interiors/apc_command.dmm index 74e7b2bce5..6887cc1694 100644 --- a/maps/interiors/apc_command.dmm +++ b/maps/interiors/apc_command.dmm @@ -7,10 +7,8 @@ /area/space) "b" = ( /obj/structure/prop/vehicle/sensor_equipment, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_10_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_10_1, +/area/interior/vehicle/apc/command) "c" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -20,10 +18,8 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/apc/command) "d" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -33,10 +29,8 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc/command) "e" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_1" @@ -53,10 +47,8 @@ /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/apc/command) "h" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_wheel_R"; @@ -82,10 +74,8 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc/command) "k" = ( /turf/open/void/vehicle, /area/space) @@ -126,10 +116,8 @@ layer = 2.81; pixel_y = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_7_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_7_1, +/area/interior/vehicle/apc/command) "p" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_6" @@ -146,25 +134,19 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc/command) "r" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/apc/command) "s" = ( /obj/structure/machinery/prop/almayer/CICmap{ indestructible = 1; unslashable = 1 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_6, +/area/interior/vehicle/apc/command) "t" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_back_top_1"; @@ -174,10 +156,8 @@ /turf/open/void/vehicle, /area/space) "u" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_5, +/area/interior/vehicle/apc/command) "v" = ( /obj/structure/interior_wall/apc{ icon_state = "front_3" @@ -200,23 +180,17 @@ pixel_x = -21; pixel_y = 24 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/apc/command) "x" = ( /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc/command) "y" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_14, +/area/interior/vehicle/apc/command) "z" = ( /obj/structure/interior_wall/apc{ alpha = 100; @@ -240,10 +214,8 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc/command) "C" = ( /obj/structure/interior_wall/apc{ icon_state = "front_1" @@ -258,18 +230,14 @@ /turf/open/void/vehicle, /area/space) "E" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_0_1_15, +/area/interior/vehicle/apc/command) "F" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/apc/command) "G" = ( /obj/effect/landmark/interior/spawn/entrance{ alpha = 50; @@ -282,28 +250,14 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_12, +/area/interior/vehicle/apc/command) "H" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_1_13, +/area/interior/vehicle/apc/command) "I" = ( -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc/command) "J" = ( /obj/structure/interior_wall/apc{ icon_state = "wall" @@ -328,10 +282,8 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc/command) "M" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_R"; @@ -429,10 +381,8 @@ /area/space) "Y" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, -/area/vehicle/apc/command) +/turf/open/shuttle/vehicle/floor_3_6, +/area/interior/vehicle/apc/command) (1,1,1) = {" p diff --git a/maps/interiors/apc_med.dmm b/maps/interiors/apc_med.dmm index 4403bc89fc..ba697ab822 100644 --- a/maps/interiors/apc_med.dmm +++ b/maps/interiors/apc_med.dmm @@ -11,10 +11,8 @@ pixel_x = -5 }, /obj/item/device/defibrillator, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_11" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_11, +/area/interior/vehicle/apc/med) "c" = ( /obj/effect/decal/medical_decals/permanent{ icon_state = "docdecal2"; @@ -24,10 +22,8 @@ /obj/effect/decal/medical_decals/permanent{ icon_state = "triagedecalbottom" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_5" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_5, +/area/interior/vehicle/apc/med) "d" = ( /obj/effect/decal/medical_decals/permanent{ icon_state = "triagedecalbottom" @@ -35,10 +31,8 @@ /obj/effect/decal/medical_decals/permanent{ icon_state = "triagedecaltopright" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_14" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_14, +/area/interior/vehicle/apc/med) "e" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_1" @@ -67,10 +61,8 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3, +/area/interior/vehicle/apc/med) "j" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_6" @@ -102,10 +94,8 @@ icon_state = "triagedecaltop"; pixel_y = -2 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_7" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_7, +/area/interior/vehicle/apc/med) "n" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_back_top_1"; @@ -176,10 +166,8 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_8" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_8, +/area/interior/vehicle/apc/med) "x" = ( /obj/structure/interior_wall/apc{ icon_state = "wall"; @@ -201,10 +189,8 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc/med) "z" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_front_top_1"; @@ -220,10 +206,8 @@ /obj/structure/bed/chair/vehicle{ pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3, +/area/interior/vehicle/apc/med) "B" = ( /obj/structure/machinery/iv_drip{ anchored = 1 @@ -233,10 +217,8 @@ pixel_x = -6; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_12" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_12, +/area/interior/vehicle/apc/med) "C" = ( /obj/structure/interior_wall/apc{ icon_state = "front_wheel_L"; @@ -250,10 +232,8 @@ pixel_x = -5; pixel_y = 16 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile, +/area/interior/vehicle/apc/med) "E" = ( /obj/structure/vehicle_locker{ pixel_y = 28 @@ -264,10 +244,8 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc/med) "F" = ( /obj/structure/interior_wall/apc{ icon_state = "front_2" @@ -293,18 +271,14 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc/med) "J" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_6" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_6, +/area/interior/vehicle/apc/med) "K" = ( /obj/effect/landmark/interior/spawn/entrance{ alpha = 50; @@ -317,15 +291,11 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_1_12, +/area/interior/vehicle/apc/med) "L" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_1_14, +/area/interior/vehicle/apc/med) "M" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_inverse_L"; @@ -355,10 +325,8 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "dark_sterile_green_13" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/dark_sterile_green_13, +/area/interior/vehicle/apc/med) "P" = ( /obj/structure/interior_wall/apc{ icon_state = "door_back" @@ -366,16 +334,12 @@ /turf/open/void/vehicle, /area/space) "Q" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/apc/med) "R" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3_6, +/area/interior/vehicle/apc/med) "S" = ( /obj/structure/interior_wall/apc{ icon_state = "front_4" @@ -383,10 +347,8 @@ /turf/open/void/vehicle, /area/space) "T" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3_3" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_1_3_3, +/area/interior/vehicle/apc/med) "U" = ( /obj/structure/interior_wall/apc{ icon_state = "front_1" @@ -402,10 +364,8 @@ dir = 1; pixel_x = -7 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc/med) "W" = ( /obj/structure/bed/chair/vehicle{ pixel_x = -8 @@ -422,10 +382,8 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc/med) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc/med) "Y" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_4" diff --git a/maps/interiors/apc_movie.dmm b/maps/interiors/apc_movie.dmm index d1f9258eef..3342556a24 100644 --- a/maps/interiors/apc_movie.dmm +++ b/maps/interiors/apc_movie.dmm @@ -31,10 +31,8 @@ pixel_y = 12; pixel_x = 7 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_3, +/area/interior/vehicle/apc/movie) "d" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -49,10 +47,8 @@ pixel_x = 2; pixel_y = -13 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "e" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_front_top_2"; @@ -82,10 +78,8 @@ pixel_y = -11; layer = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "j" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -100,10 +94,8 @@ pixel_x = -7; pixel_y = -11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "l" = ( /obj/structure/machinery/prop/almayer/CICmap{ density = 0; @@ -120,10 +112,8 @@ pixel_y = 11; pixel_x = 11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_4" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_4, +/area/interior/vehicle/apc/movie) "n" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_inverse_L"; @@ -163,10 +153,8 @@ pixel_y = 19; pixel_x = 16 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_3, +/area/interior/vehicle/apc/movie) "v" = ( /obj/structure/bed/chair/vehicle{ pixel_x = 8; @@ -180,10 +168,8 @@ pixel_y = 31; layer = 2.9 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "w" = ( /obj/effect/landmark/interior/spawn/interior_camera{ dir = 5; @@ -204,10 +190,8 @@ pixel_x = -8; density = 0 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "x" = ( /obj/structure/interior_wall/apc{ icon_state = "wall"; @@ -241,10 +225,8 @@ name = "Right APC door"; tag = "right rear" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_3, +/area/interior/vehicle/apc/movie) "A" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -254,15 +236,11 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "B" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_3" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_3, +/area/interior/vehicle/apc/movie) "C" = ( /obj/structure/interior_wall/apc{ icon_state = "door_big_right"; @@ -299,19 +277,15 @@ pixel_y = 30; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "G" = ( /obj/structure/gun_rack/m41{ pixel_y = 22; density = 0 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "H" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_inverse_R"; @@ -379,10 +353,8 @@ /turf/open/void/vehicle, /area/space) "N" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_4" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_4, +/area/interior/vehicle/apc/movie) "O" = ( /obj/structure/interior_wall/apc{ icon_state = "front_2"; @@ -424,10 +396,8 @@ name = "Right APC door"; tag = "right front" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_4" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_1_4, +/area/interior/vehicle/apc/movie) "U" = ( /obj/structure/interior_wall/apc{ icon_state = "front_wheel_R"; @@ -454,10 +424,8 @@ buckling_y = 16; pixel_y = 16 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_2" - }, -/area/vehicle/apc/movie) +/turf/open/shuttle/vehicle/floor_2, +/area/interior/vehicle/apc/movie) "Y" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_2" diff --git a/maps/interiors/apc_no_fpw.dmm b/maps/interiors/apc_no_fpw.dmm index cbbfa9e642..0d270f707e 100644 --- a/maps/interiors/apc_no_fpw.dmm +++ b/maps/interiors/apc_no_fpw.dmm @@ -3,18 +3,14 @@ /turf/open/void/vehicle, /area/space) "b" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_6" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_6, +/area/interior/vehicle/apc) "c" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/apc) "d" = ( /obj/effect/landmark/interior/spawn/entrance{ alpha = 50; @@ -26,10 +22,8 @@ pixel_x = 5; pixel_y = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_12, +/area/interior/vehicle/apc) "e" = ( /obj/structure/bed/chair/vehicle{ dir = 1; @@ -44,10 +38,8 @@ pixel_x = 8; pixel_y = -11 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_5" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_5, +/area/interior/vehicle/apc) "f" = ( /obj/structure/interior_wall/apc{ icon_state = "front_2" @@ -67,10 +59,8 @@ /turf/open/void/vehicle, /area/space) "i" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1_3" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_1_3, +/area/interior/vehicle/apc) "j" = ( /obj/effect/landmark/interior/spawn/entrance{ dir = 8; @@ -86,10 +76,8 @@ dir = 1; pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "k" = ( /obj/structure/interior_wall/apc{ icon_state = "wall"; @@ -108,10 +96,8 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc) "m" = ( /obj/structure/interior_wall/apc{ icon_state = "front_1" @@ -139,10 +125,8 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_8_1, +/area/interior/vehicle/apc) "r" = ( /obj/effect/landmark/interior/spawn/interior_viewport{ dir = 8; @@ -157,10 +141,8 @@ pixel_y = 32; tag = "left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc) "s" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_2" @@ -179,10 +161,8 @@ pixel_x = -14; pixel_y = 38 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc) "u" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_front_top_1"; @@ -208,10 +188,8 @@ /area/space) "y" = ( /obj/effect/landmark/interior/spawn/weapons_loader, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_6" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_6, +/area/interior/vehicle/apc) "z" = ( /obj/effect/landmark/interior/spawn/entrance{ dir = 8; @@ -219,10 +197,8 @@ pixel_x = -32; tag = "rear center" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_13, +/area/interior/vehicle/apc) "A" = ( /obj/structure/interior_wall/apc{ icon_state = "wheel_back_top_1"; @@ -240,18 +216,14 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "C" = ( /obj/structure/bed/chair/vehicle{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/apc) "D" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_wheel_L" @@ -259,10 +231,8 @@ /turf/open/void/vehicle, /area/space) "E" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_5" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_5, +/area/interior/vehicle/apc) "F" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_R"; @@ -298,10 +268,8 @@ pixel_x = -24; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/apc) "J" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_inverse_R"; @@ -322,10 +290,8 @@ /turf/open/void/vehicle, /area/space) "L" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_0_1_15" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_0_1_15, +/area/interior/vehicle/apc) "M" = ( /obj/structure/interior_wall/apc{ icon_state = "front_wheel_L"; @@ -343,10 +309,8 @@ /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9_1" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_9_1, +/area/interior/vehicle/apc) "P" = ( /obj/structure/interior_wall/apc{ icon_state = "corner_small_L" @@ -385,10 +349,8 @@ /turf/open/void/vehicle, /area/space) "U" = ( -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_14" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_1_14, +/area/interior/vehicle/apc) "V" = ( /obj/structure/interior_wall/apc{ icon_state = "rear_1" @@ -411,10 +373,8 @@ pixel_x = -8; pixel_y = 28 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) "X" = ( /obj/structure/interior_wall/apc{ icon_state = "wall_2"; @@ -446,10 +406,8 @@ pixel_x = -7; pixel_y = 23 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/apc) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/apc) (1,1,1) = {" G diff --git a/maps/interiors/arc.dmm b/maps/interiors/arc.dmm index f9371b327e..dc2755df34 100644 --- a/maps/interiors/arc.dmm +++ b/maps/interiors/arc.dmm @@ -30,7 +30,7 @@ density = 0 }, /turf/open/floor/almayer, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) "G" = ( /obj/structure/bed/chair/vehicle{ pixel_x = -8; @@ -41,7 +41,7 @@ dir = 1 }, /turf/open/floor, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) "H" = ( /obj/structure/bed/chair/vehicle{ dir = 4; @@ -56,7 +56,7 @@ pixel_x = 20 }, /turf/open/floor/almayer, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) "I" = ( /obj/structure/bed/chair/vehicle{ pixel_x = -8 @@ -73,7 +73,7 @@ pixel_x = 7 }, /turf/open/floor, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) "N" = ( /obj/effect/landmark/interior/spawn/entrance{ alpha = 50; @@ -83,7 +83,7 @@ pixel_y = -10 }, /turf/open/floor, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) "X" = ( /obj/structure/bed/chair/vehicle{ pixel_x = -8 @@ -95,7 +95,7 @@ pixel_y = 16 }, /turf/open/floor, -/area/vehicle/apc/arc) +/area/interior/vehicle/arc) (1,1,1) = {" a diff --git a/maps/interiors/fancylocker.dmm b/maps/interiors/fancylocker.dmm deleted file mode 100644 index a6ecb6155e..0000000000 --- a/maps/interiors/fancylocker.dmm +++ /dev/null @@ -1,235 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/wood, -/area/vehicle/apc) -"b" = ( -/turf/open/floor/wood, -/area/vehicle/apc) -"c" = ( -/obj/effect/landmark/interior/spawn/entrance/step_toward{ - dir = 8; - exit_type = /obj/structure/interior_exit/fancy - }, -/turf/open/floor/wood, -/area/vehicle/apc) -"d" = ( -/turf/open/floor/carpet/edge{ - dir = 9 - }, -/area/vehicle/apc) -"e" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/vehicle/apc) -"f" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, -/area/vehicle/apc) -"g" = ( -/turf/open/floor/carpet/edge{ - dir = 8 - }, -/area/vehicle/apc) -"h" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/carpet, -/area/vehicle/apc) -"i" = ( -/obj/structure/bed/sofa/south/white, -/turf/open/floor/carpet, -/area/vehicle/apc) -"j" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/carpet, -/area/vehicle/apc) -"k" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, -/area/vehicle/apc) -"l" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood, -/area/vehicle/apc) -"m" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, -/area/vehicle/apc) -"n" = ( -/turf/open/floor/carpet/edge, -/area/vehicle/apc) -"o" = ( -/turf/open/floor/carpet/edge{ - dir = 6 - }, -/area/vehicle/apc) -"p" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/vehicle/apc) -"q" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/vehicle/apc) -"r" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/vehicle/apc) -"s" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/wood, -/area/vehicle/apc) -"t" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/wood, -/area/vehicle/apc) -"u" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/snacks/milosoup{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/meatsteak{ - pixel_y = -2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/vehicle/apc) -"v" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/snacks/appletart, -/turf/open/floor/wood, -/area/vehicle/apc) -"w" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/snacks/popcorn{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sandwich{ - layer = 4; - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 5 - }, -/turf/open/floor/wood, -/area/vehicle/apc) -"x" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor/carpet, -/area/vehicle/apc) -"y" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/item/tool/lighter/zippo, -/turf/open/floor/carpet, -/area/vehicle/apc) -"z" = ( -/obj/structure/bed/chair/wood/wings{ - icon_state = "wooden_chair_wings"; - dir = 4 - }, -/turf/open/floor/wood, -/area/vehicle/apc) -"A" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/vehicle/apc) -"B" = ( -/obj/structure/machinery/light, -/turf/open/floor/carpet/edge, -/area/vehicle/apc) - -(1,1,1) = {" -a -a -b -a -a -a -a -"} -(2,1,1) = {" -a -q -c -r -l -z -a -"} -(3,1,1) = {" -a -A -b -b -b -b -a -"} -(4,1,1) = {" -a -v -d -g -g -m -a -"} -(5,1,1) = {" -a -w -e -h -p -n -a -"} -(6,1,1) = {" -a -u -e -i -x -B -a -"} -(7,1,1) = {" -a -s -e -j -y -n -a -"} -(8,1,1) = {" -a -t -f -k -k -o -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -"} diff --git a/maps/interiors/tank.dmm b/maps/interiors/tank.dmm index 8dc0bf1419..b9ebf5b4a3 100644 --- a/maps/interiors/tank.dmm +++ b/maps/interiors/tank.dmm @@ -1,61 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/obj/effect/landmark/interior/spawn/entrance{ - dir = 8; - exit_type = /obj/structure/interior_exit/vehicle/tank; - name = "back entrance marker"; - tag = "back" - }, -/obj/structure/phone_base{ - dir = 8; - layer = 3.1; - name = "Tank Telephone"; - phone_category = "Vehicles"; - phone_id = "M34A2 Longstreet Light Tank"; - pixel_x = 22; - pixel_y = -14 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_12" - }, -/area/vehicle/tank) -"c" = ( -/obj/structure/prop/tank{ - icon_state = "prop2"; - layer = 3; - pixel_x = 0 - }, -/obj/effect/landmark/interior/spawn/weapons_loader{ - layer = 2; - pixel_x = -7; - pixel_y = 5 - }, -/obj/effect/landmark/interior/spawn/interior_camera{ - dir = 10; - layer = 3.2; - pixel_x = 12; - pixel_y = 58 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_3" - }, -/area/vehicle/tank) -"e" = ( +"d" = ( /obj/effect/landmark/interior/spawn/vehicle_gunner_seat/armor{ dir = 4 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_13" - }, -/area/vehicle/tank) -"f" = ( -/obj/structure/prop/tank{ - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_1_1" - }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_13, +/area/interior/vehicle/tank) "g" = ( /obj/structure/interior_wall/tank{ alpha = 50; @@ -83,38 +32,77 @@ }, /turf/open/void/vehicle, /area/space) +"q" = ( +/obj/structure/vehicle_locker/tank{ + pixel_y = 11 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ + name = "Vehicle NanoMed"; + pixel_x = -5; + pixel_y = 31 + }, +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_x = 9; + pixel_y = 31 + }, +/turf/open/shuttle/vehicle/floor_1_11, +/area/interior/vehicle/tank) "r" = ( /obj/structure/interior_wall/tank{ icon_state = "front_3" }, /turf/open/void/vehicle, /area/space) -"u" = ( -/obj/structure/prop/tank{ - icon_state = "prop5"; - pixel_x = 0 - }, -/obj/structure/prop/tank{ - icon_state = "prop7"; - pixel_x = 0; - pixel_y = 32 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_8" - }, -/area/vehicle/tank) +"t" = ( +/obj/structure/prop/tank, +/turf/open/shuttle/vehicle/floor_3_1_1, +/area/interior/vehicle/tank) "v" = ( /obj/structure/interior_wall/tank{ layer = 2 }, /turf/open/void/vehicle, /area/space) +"w" = ( +/obj/structure/prop/tank{ + icon_state = "prop5" + }, +/obj/structure/prop/tank{ + icon_state = "prop7"; + pixel_y = 32 + }, +/turf/open/shuttle/vehicle/floor_3_8, +/area/interior/vehicle/tank) "y" = ( /obj/structure/interior_wall/tank{ icon_state = "back_2" }, /turf/open/void/vehicle, /area/space) +"z" = ( +/obj/structure/prop/tank{ + icon_state = "prop3" + }, +/turf/open/shuttle/vehicle/floor_3_4, +/area/interior/vehicle/tank) +"A" = ( +/obj/effect/landmark/interior/spawn/entrance{ + dir = 8; + exit_type = /obj/structure/interior_exit/vehicle/tank; + name = "back entrance marker"; + tag = "back" + }, +/obj/structure/phone_base{ + dir = 8; + layer = 3.1; + name = "Tank Telephone"; + phone_category = "Vehicles"; + phone_id = "M34A2 Longstreet Light Tank"; + pixel_x = 22; + pixel_y = -14 + }, +/turf/open/shuttle/vehicle/floor_1_12, +/area/interior/vehicle/tank) "B" = ( /obj/structure/interior_wall/tank{ icon_state = "front_2" @@ -133,75 +121,57 @@ }, /turf/open/void/vehicle, /area/space) -"G" = ( +"H" = ( +/obj/structure/interior_wall/tank{ + icon_state = "exterior_3"; + layer = 5.2; + pixel_y = 32 + }, +/turf/open/void/vehicle, +/area/space) +"M" = ( +/obj/structure/prop/tank{ + icon_state = "prop1" + }, +/turf/open/shuttle/vehicle/floor_3_9, +/area/interior/vehicle/tank) +"Q" = ( /obj/effect/landmark/interior/spawn/vehicle_driver_seat/armor{ dir = 4 }, /obj/structure/prop/tank{ density = 0; icon_state = "prop6"; - pixel_x = 0; pixel_y = 32 }, /obj/structure/prop/tank{ density = 0; icon_state = "prop8_extra"; - layer = 4.12; - pixel_x = 0 + layer = 4.12 }, /obj/structure/prop/tank{ density = 0; - icon_state = "prop4"; - layer = 3; - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_7" + icon_state = "prop4" }, -/area/vehicle/tank) -"H" = ( -/obj/structure/interior_wall/tank{ - icon_state = "exterior_3"; - layer = 5.2; - pixel_y = 32 - }, -/turf/open/void/vehicle, -/area/space) -"J" = ( -/obj/structure/prop/tank{ - icon_state = "prop3"; - pixel_x = 0 - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_4" - }, -/area/vehicle/tank) -"T" = ( +/turf/open/shuttle/vehicle/floor_3_7, +/area/interior/vehicle/tank) +"W" = ( /obj/structure/prop/tank{ - icon_state = "prop1"; - pixel_x = 0 + icon_state = "prop2" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_9" - }, -/area/vehicle/tank) -"Z" = ( -/obj/structure/vehicle_locker/tank{ - pixel_y = 11 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ - name = "Vehicle NanoMed"; - pixel_x = -5; - pixel_y = 31 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_x = 9; - pixel_y = 31 +/obj/effect/landmark/interior/spawn/weapons_loader{ + layer = 2; + pixel_x = -7; + pixel_y = 5 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_11" +/obj/effect/landmark/interior/spawn/interior_camera{ + dir = 10; + layer = 3.2; + pixel_x = 12; + pixel_y = 58 }, -/area/vehicle/tank) +/turf/open/shuttle/vehicle/floor_3_3, +/area/interior/vehicle/tank) (1,1,1) = {" j @@ -212,23 +182,23 @@ i "} (2,1,1) = {" v -Z -b -e +q +A +d g "} (3,1,1) = {" v -G -c -f +Q +W +t l "} (4,1,1) = {" v -u -J -T +w +z +M H "} (5,1,1) = {" diff --git a/maps/interiors/van.dmm b/maps/interiors/van.dmm index 27a42dd93f..673f1ef07d 100644 --- a/maps/interiors/van.dmm +++ b/maps/interiors/van.dmm @@ -10,10 +10,8 @@ pixel_x = -32; tag = "back_right" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_10" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_10, +/area/interior/vehicle/van) "e" = ( /obj/structure/interior_wall/van{ icon_state = "background_1" @@ -35,10 +33,8 @@ alpha = 100; pixel_y = -2 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_1" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_1, +/area/interior/vehicle/van) "i" = ( /obj/structure/interior_wall/van{ icon_state = "front_1" @@ -68,10 +64,8 @@ /obj/effect/vehicle_roof/van{ icon_state = "roof_3" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_8" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_8, +/area/interior/vehicle/van) "r" = ( /obj/structure/interior_wall/van{ icon_state = "background_3" @@ -91,10 +85,8 @@ pixel_x = -32; tag = "back_left" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_7" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_7, +/area/interior/vehicle/van) "t" = ( /obj/effect/landmark/interior/spawn/entrance{ dir = 1; @@ -112,10 +104,8 @@ /obj/effect/landmark/interior/spawn/interior_viewport/simple/windshield{ icon_state = "windshield_viewport_bottom" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_11" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_3_11, +/area/interior/vehicle/van) "v" = ( /obj/structure/interior_wall/van{ icon_state = "interior_door" @@ -146,13 +136,10 @@ tag = "right" }, /obj/structure/bed/chair/comfy{ - dir = 4; - icon_state = "comfychair" - }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_3_12" + dir = 4 }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_3_12, +/area/interior/vehicle/van) "z" = ( /obj/structure/interior_wall/van{ icon_state = "back_1" @@ -178,10 +165,8 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_9" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_9, +/area/interior/vehicle/van) "J" = ( /obj/structure/interior_wall/van{ alpha = 50; @@ -199,10 +184,8 @@ /obj/effect/vehicle_roof/van{ icon_state = "roof_2" }, -/turf/open/shuttle/vehicle{ - icon_state = "floor_1_2" - }, -/area/vehicle/van) +/turf/open/shuttle/vehicle/floor_1_2, +/area/interior/vehicle/van) "O" = ( /turf/open/void/vehicle, /area/space) diff --git a/maps/lv624.json b/maps/lv624.json index bec99892a3..7c782c0a43 100644 --- a/maps/lv624.json +++ b/maps/lv624.json @@ -9,15 +9,16 @@ "/datum/equipment_preset/survivor/doctor/lv", "/datum/equipment_preset/survivor/chaplain/lv", "/datum/equipment_preset/survivor/engineer/lv", - "/datum/equipment_preset/survivor/corporate", + "/datum/equipment_preset/survivor/corporate/lv", "/datum/equipment_preset/survivor/trucker/lv", "/datum/equipment_preset/survivor/security/lv", + "/datum/equipment_preset/survivor/colonial_marshal/lv", "/datum/equipment_preset/survivor/goon", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], "map_item_type": "/obj/item/map/lazarus_landing_map", - "announce_text": "An automated distress signal has been received from archaeology site Lazarus Landing, on border world LV-624. A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", + "announce_text": "An automated distress signal has been received from the archaeological site of Lazarus Landing, on the border world of LV-624. A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", "monkey_types": [ "farwa", "monkey", diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index ecd24b607b..3be0e0c92f 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -8,191 +8,26 @@ icon_state = "pwall" }, /area/space) -"aac" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) -"aad" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) "aae" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"aaf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"aag" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/bigredv2/outside/space_port) "aah" = ( /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aai" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aaj" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aak" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aal" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aam" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aan" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aao" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"aap" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aaq" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"aar" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"aas" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"aat" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aau" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Communications Landing Zone" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aav" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aaw" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/space_port) -"aay" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaD" = ( -/obj/structure/prop/tower, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/bigredv2/outside/space_port) -"aaE" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aaF" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaG" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aaH" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, @@ -205,165 +40,14 @@ /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaM" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aaN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaO" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaR" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"aaS" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aaT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "aaU" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aaW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/space_port) -"aaY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"aaZ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"aba" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "abc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abf" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abh" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/door_control{ - id = "Spaceport"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abi" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"abj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "abk" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/plating, @@ -376,55 +60,6 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abn" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abp" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_north) -"abr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_north) -"abs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_north) -"abt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "abu" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, @@ -446,135 +81,15 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"aby" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/landing/console) -"abA" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abB" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"abC" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) "abD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abH" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abI" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abJ" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/bigredv2/outside/space_port) -"abL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/caves_north) -"abM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_north) -"abN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) "abO" = ( /turf/open/mars_cave, /area/bigredv2/caves_north) -"abP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"abQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) "abR" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -595,120 +110,16 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_north) -"abV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_north) -"abW" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"abX" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"abY" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_north) -"abZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) "aca" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"acc" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_north) "acd" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"ace" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/space_port) -"acf" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/space_port) -"acg" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/space_port) -"ach" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/space_port) -"acj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/space_port) -"ack" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_north) -"acm" = ( -/obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) "acn" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, @@ -739,39 +150,10 @@ /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"acu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"acw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) "acx" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acy" = ( -/obj/structure/machinery/botany, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/marshal_office) -"acz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/marshal_office) "acA" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) @@ -779,23845 +161,4107 @@ /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acC" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"acD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"acE" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/botany, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"acF" = ( -/obj/effect/decal/cleanable/dirt, +"acP" = ( +/turf/open/mars, +/area/bigredv2/outside/n) +"acQ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/telecomm) +"acZ" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"adj" = ( +/obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acG" = ( -/obj/structure/window/reinforced, +"adk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"acI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"acJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"acK" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"acL" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "white" - }, +"adz" = ( +/obj/structure/window/framed/solaris/reinforced/tinted, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"acM" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" +"adA" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acO" = ( -/obj/structure/bed/chair{ +"adB" = ( +/obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acP" = ( -/turf/open/mars, -/area/bigredv2/outside/n) -"acQ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/telecomm) -"acR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Telecommunications" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" +"adG" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/outside/telecomm) -"acS" = ( -/obj/structure/machinery/landinglight/ds1{ +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"adL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating, /area/bigredv2/outside/space_port) -"acT" = ( -/obj/structure/machinery/light{ - dir = 8 +"adQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adR" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acU" = ( -/obj/structure/bed/chair{ +"adS" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"adZ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/xenobiology) +"ael" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aep" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acV" = ( -/obj/structure/surface/table, +"aeq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/obj/structure/bed/stool, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"acX" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "white" - }, +"aer" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"acY" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor{ - icon_state = "dark" +"aev" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aex" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aeF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/outside/telecomm) -"acZ" = ( -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"ada" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Always returning. Always watching."; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/space) -"adb" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"adc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/head/det_hat, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aeI" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"aeN" = ( +/obj/structure/bed/stool, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"add" = ( +"aeU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aeV" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afd" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"afh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"afi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Isolation" }, -/area/bigredv2/outside/telecomm) -"ade" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"afr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"afv" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "tcomms"; + name = "\improper Telecommunications Shutters" }, +/turf/open/floor/plating, /area/bigredv2/outside/telecomm) -"adf" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "dark" +"afz" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/research) +"afA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afB" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"afL" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" }, +/turf/open/floor/greengrid, /area/bigredv2/outside/telecomm) -"adg" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"afU" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"agm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves_north) +"agr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"agu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/nw) +"agy" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "asteroidwarning" + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"ahf" = ( +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"ahh" = ( +/obj/structure/girder/reinforced, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"adh" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +"ahi" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/nw) +"ahk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adi" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "delivery" +"ahl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adj" = ( -/obj/item/shard, +"ahm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adk" = ( +"ahn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adl" = ( +"aho" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/outside/space_port) -"adm" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "white" + dir = 10 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - icon_state = "white" - }, +"ahs" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"ado" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, +"aht" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +"ahu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"ads" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"adt" = ( +"ahN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) -"adu" = ( +"ahX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"aiv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) -"adw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"ady" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, +"aiL" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/CMB, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adz" = ( -/obj/structure/window/framed/solaris/reinforced/tinted, -/turf/open/floor/plating, +"aiN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adA" = ( -/obj/structure/bed/chair{ +"aiO" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aiP" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adB" = ( +"aje" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajf" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajg" = ( +/obj/structure/surface/table, +/obj/item/evidencebag, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajh" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/det_suit, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"aji" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajj" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/marshal_office) -"adE" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"ajL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adF" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"ajM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adG" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"ajN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/structure/window_frame/solaris/reinforced, -/turf/open/floor/plating, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adH" = ( +"ajP" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" +/obj/item/trash/kepler, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"adI" = ( +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajQ" = ( /obj/structure/surface/table, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"adJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/machinery/recharger, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"adL" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"adM" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ajS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" +"ajU" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/maint{ + pixel_y = -32 }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"akc" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"adO" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +"akj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Office Complex 2"; + name = "\improper Marshal Office Complex Shutters" }, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"adP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"akl" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm) +"ako" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"akp" = ( +/obj/structure/machinery/light, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adQ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, +"akq" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"akr" = ( +/obj/structure/machinery/computer/prisoner, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adS" = ( +"aks" = ( +/obj/effect/landmark/good_item, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"adT" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor{ - icon_state = "floor4" +"akt" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adW" = ( -/turf/open/floor{ - icon_state = "wood" +"aku" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akL" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"akU" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"akV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/n) +"alr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adX" = ( -/obj/structure/bookcase/manuals/engineering, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" +"alu" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"alx" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"adY" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor{ - icon_state = "wood" +"alD" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Medical"; + name = "\improper Medical Storm Shutters" }, -/area/bigredv2/outside/marshal_office) -"adZ" = ( -/turf/closed/wall/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"alK" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeb" = ( -/obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"aec" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Telecommunications" - }, -/turf/open/floor{ - icon_state = "delivery" +"alX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"alZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" }, -/area/bigredv2/outside/telecomm) -"aed" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"amb" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"amh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"aee" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"ami" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amj" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"amk" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"aml" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"amn" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/dorms) +"amo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"aef" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"aeg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port) -"aeh" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aei" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aej" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"aek" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"ael" = ( -/obj/structure/machinery/camera/autoname{ +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/black, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"amr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aem" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" +"amu" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aen" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - icon_state = "delivery" +"amD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/n) +"amE" = ( +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"amH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"amI" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/area/bigredv2/outside/marshal_office) -"aeo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amV" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/plating, +/area/bigredv2/outside/dorms) +"amX" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"amY" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" }, -/area/bigredv2/outside/marshal_office) -"aep" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"amZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) +"anf" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aeq" = ( +"anj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"ank" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anm" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"anp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"ant" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"anw" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) +"anB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/stool, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aer" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"aes" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor{ - icon_state = "wood" - }, +"anC" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aet" = ( -/obj/structure/bed/chair/comfy, +"anD" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aeu" = ( -/obj/item/clothing/accessory/storage/holster/armpit, -/turf/open/floor{ - icon_state = "wood" +"anI" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/research) +"anJ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"anK" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/bigredv2/outside/marshal_office) -"aev" = ( /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aex" = ( -/obj/structure/closet/crate/freezer/rations, +/area/bigredv2/outside/dorms) +"anL" = ( +/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aey" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aez" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" +/area/bigredv2/caves/lambda/research) +"anM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeA" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, +"anN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeB" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;200" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"aeC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" +"anT" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/hydroponics) +"anU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" }, -/area/bigredv2/outside/telecomm) -"aeD" = ( -/obj/structure/machinery/alarm{ +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"anW" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/library) +"anX" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/telecomm) -"aeE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aeF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + id = "Greenhouse"; + name = "\improper Greenhouse Shutters" }, /turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/area/bigredv2/outside/hydroponics) +"anY" = ( +/obj/structure/window/framed/solaris, /turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/bigredv2/outside/hydroponics) +"anZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Medical"; + name = "\improper Medical Storm Shutters" }, /turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aeI" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"aeJ" = ( -/turf/open/floor{ - icon_state = "delivery" +/area/bigredv2/outside/medical) +"aob" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/virology) +"aoc" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Library"; + name = "\improper Library Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/library) +"aof" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"aoj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aeK" = ( -/obj/structure/surface/table, +"aoo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"aeL" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"aeM" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aop" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"aeN" = ( -/obj/structure/bed/stool, -/obj/item/clothing/shoes/jackboots, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aeO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "wood" +/area/bigredv2/outside/general_offices) +"aoq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/marshal_office) -"aeP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/flask/detflask, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aou" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"aoz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aoD" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"aoE" = ( +/obj/item/stool, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/xenobiology) +"aoH" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_store) +"aoW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aeQ" = ( -/obj/structure/surface/table/reinforced, +"apc" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aph" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aeS" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" + dir = 8 }, -/area/bigredv2/caves/lambda/xenobiology) -"aeT" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"api" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"app" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"apq" = ( +/obj/structure/surface/rack, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeV" = ( -/obj/structure/closet/crate/radiation, +"apr" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +"aps" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"aeX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whiteyellowfull" +"apt" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "General Store"; + name = "\improper General Store Shutters" }, -/area/bigredv2/caves/lambda/xenobiology) -"aeY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apu" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apC" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"apD" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" }, -/area/bigredv2/caves/lambda/xenobiology) -"aeZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apG" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/virology) +"apJ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "whiteyellowcorner" + id = "Operations"; + name = "\improper Operations Shutters" }, -/area/bigredv2/caves/lambda/xenobiology) -"afb" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;200" +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"apK" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"apQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"apR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"afc" = ( -/obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"apS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"afd" = ( -/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aff" = ( -/obj/effect/decal/cleanable/mucus, +/area/bigredv2/outside/general_offices) +"aqb" = ( /obj/structure/surface/table, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, +/turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"afg" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"aqc" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"aqx" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Library"; + name = "\improper Library Shutters" + }, /turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"afh" = ( -/obj/item/stack/sheet/metal, +/area/bigredv2/outside/library) +"aqz" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Bar Complex"; + name = "\improper Bar Complex Shutters" + }, /turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"afi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Isolation" +/area/bigredv2/outside/bar) +"aqO" = ( +/obj/structure/barricade/wooden, +/turf/open/mars, +/area/bigredv2/outside/n) +"aqQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"afj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/area/bigredv2/outside/general_offices) +"aqU" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating, +/area/bigredv2/outside/hydroponics) +"aqV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"arh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"ars" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/outside/marshal_office) -"afk" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"arD" = ( +/turf/open/mars, +/area/bigredv2/outside/ne) +"arI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"arK" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_lambda) +"arT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"asj" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "General Store"; + name = "\improper General Store Shutters" }, -/area/bigredv2/outside/marshal_office) -"afl" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) +"asl" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"ass" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/marshal_office) -"afo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"asv" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"asx" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) +"asH" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" }, -/area/bigredv2/outside/marshal_office) -"afp" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"asI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/area/bigredv2/outside/marshal_office) -"afq" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asJ" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"asK" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"asL" = ( /obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asM" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"afr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/closet/bombclosetsecurity, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"afs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"aft" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afu" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afv" = ( +/area/bigredv2/outside/general_offices) +"asN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/cable_coil/blue, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asR" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"asT" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"atb" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"atd" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "tcomms"; - name = "\improper Telecommunications Shutters" + id = "Chapel"; + name = "\improper Chapel Shutters" }, /turf/open/floor/plating, -/area/bigredv2/outside/telecomm) -"afw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/area/bigredv2/outside/chapel) +"atn" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"atw" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cargonia"; + name = "\improper Cargo Shutters" }, -/obj/structure/bed/chair{ +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atA" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"atC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/lambda/xenobiology) -"afx" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/xenobiology) -"afy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"atJ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "whitepurple" + id = "Office Complex 1"; + name = "\improper Office Complex Shutters" }, -/area/bigredv2/caves/lambda/xenobiology) -"afz" = ( /turf/open/floor/plating, -/area/bigredv2/caves/lambda/research) -"afA" = ( -/obj/structure/largecrate/random, +/area/bigredv2/outside/office_complex) +"atP" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Chapel"; + name = "\improper Chapel Shutters" + }, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afB" = ( -/obj/structure/machinery/smartfridge/chemistry, +/area/bigredv2/outside/chapel) +"atQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/nw) +"atU" = ( +/obj/structure/window_frame/solaris, /turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afC" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afD" = ( -/obj/item/device/mass_spectrometer/adv, -/obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afE" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afF" = ( +/area/bigredv2/outside/cargo) +"aua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aub" = ( /obj/structure/machinery/light, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"afI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Storm Shutters"; - pixel_x = -32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"auc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"aud" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/outside/telecomm) -"afJ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"auj" = ( +/obj/item/device/radio/intercom{ + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = 30 }, -/area/bigredv2/outside/telecomm) -"afK" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"auk" = ( +/obj/structure/window/framed/solaris, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aul" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"auW" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/c) +"auY" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"avr" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"avC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avD" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"afL" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"afM" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + dir = 1 }, -/area/bigredv2/outside/space_port) -"afO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"afP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"afQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/marshal_office) -"afR" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ +/turf/open/floor, +/area/bigredv2/outside/dorms) +"avH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "vault" + health = 25000 }, -/area/bigredv2/outside/marshal_office) -"afS" = ( -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"avI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/marshal_office) -"afT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"avJ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/area/bigredv2/outside/marshal_office) -"afU" = ( -/obj/structure/closet/bombclosetsecurity, /turf/open/floor, -/area/bigredv2/outside/marshal_office) -"afV" = ( -/obj/structure/closet/secure_closet/marshal, +/area/bigredv2/outside/general_offices) +"avM" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/marshal_office) -"afW" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"afY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves/lambda/xenobiology) -"afZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aga" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agb" = ( -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agc" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agd" = ( -/turf/open/floor{ - icon_state = "dark" + dir = 8 }, +/turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"age" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window{ - dir = 2 - }, -/obj/structure/foamed_metal, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chem_lock"; - name = "\improper Chemistry Lockdown" - }, -/turf/open/floor{ - icon_state = "whiteyellowfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agg" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Chemistry Lab" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agh" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agi" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +"avS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/office_complex) +"avT" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/lambda/xenobiology) -"agk" = ( -/obj/structure/toilet{ +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"avV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"awd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/se) +"awn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awo" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awp" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_plant) +"aws" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/window, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agl" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves_north) -"agn" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"awt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/area/bigredv2/outside/space_port) -"ago" = ( +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port) -"agq" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"agr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"ags" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"agt" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"agu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/nw) -"agv" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/outside/space_port) -"agw" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/space_port) -"agx" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/space_port) -"agy" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"agz" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"agA" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"agB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"agC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"agD" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"agE" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"agF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"agG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"agH" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"agI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/obj/item/weapon/shield/riot, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"agJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Head Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"agK" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agL" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agM" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agO" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"agQ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agT" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agV" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agW" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agX" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"agZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aha" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"ahd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"ahe" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"ahf" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ahg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/space_port) -"ahh" = ( -/obj/structure/girder/reinforced, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"ahi" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ahj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"ahk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aho" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ahq" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"ahr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ahs" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aht" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahu" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ahv" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/paper_bin, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"ahw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"ahx" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"ahy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_lambda) -"ahz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Surgery" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahC" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahD" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahF" = ( -/obj/structure/closet/hydrant{ - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahH" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"ahI" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahJ" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahK" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/space_port) -"ahL" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Cell" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ahN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"ahO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/nw) -"ahP" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/nw) -"ahQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahR" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) -"ahT" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahU" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/nw) -"ahW" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/nw) -"ahY" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ahZ" = ( -/obj/item/stack/rods, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aia" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aib" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aic" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aid" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aie" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aif" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aig" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, -/area/bigredv2/caves_lambda) -"aih" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aii" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Equipment" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aij" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"aik" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ail" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aim" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/storage/box/beakers, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"ain" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Lambda Lab Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aio" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aip" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aiq" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"air" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ais" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ait" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"aiw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"aiy" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aiz" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/nw) -"aiA" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/nw) -"aiB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/nw) -"aiC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aiD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aiE" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiF" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiI" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiK" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aiL" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/storage/CMB, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiM" = ( -/obj/structure/surface/table, -/obj/item/handcuffs, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiN" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiO" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aiQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"aiR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiS" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiT" = ( -/obj/structure/pipes/vents/scrubber/on, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Lambda Lab Prison Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aiW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm) -"aiX" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"aiZ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"aja" = ( -/obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"ajb" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"ajc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"ajd" = ( -/obj/structure/surface/table/holotable/wood, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"aje" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajf" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajg" = ( -/obj/structure/surface/table, -/obj/item/evidencebag, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajh" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/det_suit, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aji" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajl" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"ajn" = ( -/obj/structure/platform/shiva{ - dir = 1 - }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"ajp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Prisoner Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajs" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajt" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aju" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajv" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"ajy" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ajz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ajA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ajB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"ajC" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"ajD" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) -"ajE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"ajF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"ajG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ajH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ajI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ajJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ajK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Armory" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"ajL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajO" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/tool/pen, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ajP" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ajT" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"ajU" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/maint{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"ajV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ajX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"ajY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"ajZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"akc" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"ake" = ( -/obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"akf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"akg" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) -"aki" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"akj" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 2"; - name = "\improper Marshal Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"akk" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"akl" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/telecomm) -"akm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"akn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"ako" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"akp" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akq" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akr" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aks" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"akt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aku" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"akv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"akw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aky" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akz" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"akB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akF" = ( -/obj/structure/machinery/botany/editor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen_v" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akG" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akH" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akI" = ( -/obj/structure/machinery/mill, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"akK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"akL" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/general_offices) -"akM" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"akN" = ( -/turf/open/floor{ - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"akO" = ( -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"akP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) -"akQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"akR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"akS" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"akT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"akU" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"akV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/n) -"akW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/caves_north) -"akX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"akY" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves_north) -"akZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves_north) -"ala" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alc" = ( -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ald" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/research_and_development, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ale" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alg" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alh" = ( -/obj/item/tool/hatchet, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ali" = ( -/obj/item/reagent_container/spray/plantbgone, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen_v" - }, -/area/bigredv2/caves/lambda/xenobiology) -"all" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm) -"alm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aln" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/nw) -"alo" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/nw) -"alp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"alq" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/n_cave) -"alr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"als" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"alt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"alu" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/medical) -"alv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"alw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"alx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aly" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"alz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"alA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"alB" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"alC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"alD" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Medical"; - name = "\improper Medical Storm Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"alF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"alG" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/caves_north) -"alH" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/caves_north) -"alI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_north) -"alJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_north) -"alK" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"alM" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alQ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alR" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alS" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"alU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alV" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/grown/log, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"alY" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"alZ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Marshal Offices"; - name = "\improper Marshal Offices Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"ama" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/nw) -"amb" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"amc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"amd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"ame" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"amg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"amh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"ami" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amj" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"amk" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"aml" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"amn" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/dorms) -"amo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/black, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ams" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"amt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Courtroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"amu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amv" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"amw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"amx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"amy" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/marshal_office) -"amz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, -/area/bigredv2/outside/marshal_office) -"amA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"amB" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"amC" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"amD" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/n) -"amE" = ( -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"amG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/caves_lambda) -"amH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"amI" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amJ" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amK" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amN" = ( -/obj/item/stool, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amO" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Xenobiology" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amR" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Hydroponics" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amS" = ( -/obj/item/grown/log, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amT" = ( -/obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"amV" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"amW" = ( -/obj/structure/machinery/door_control{ - id = "safe_room"; - layer = 4; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -5; - req_access_txt = "7"; - specialfunctions = 4 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"amX" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amY" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "sci_br"; - name = "\improper Lambda Observation Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/breakroom) -"amZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"ana" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"anb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"anc" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"and" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"ane" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 6; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"anf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"ang" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/Court, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/marshal_office) -"anh" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/marshal_office) -"ani" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Office Complex 2"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"anj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"ank" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"ann" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_offices) -"ano" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lambda Lab Maintenance Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/nw/ceiling) -"anq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ans" = ( -/obj/structure/surface/table, -/obj/item/storage/box/gloves, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"ant" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Dormitories"; - name = "\improper Dormitories Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"anu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anv" = ( -/obj/effect/glowshroom, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anw" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/breakroom) -"anx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"any" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"anz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"anB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anC" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"anF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/marshal_office) -"anH" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"anI" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/research) -"anJ" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"anK" = ( -/obj/structure/window_frame/solaris, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"anL" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/research) -"anM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anN" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"anO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anR" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anS" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anT" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/hydroponics) -"anU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anV" = ( -/obj/item/reagent_container/spray/pepper, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"anW" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/library) -"anX" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Greenhouse"; - name = "\improper Greenhouse Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anY" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"anZ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Medical"; - name = "\improper Medical Storm Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"aoa" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/virology) -"aob" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/lambda/virology) -"aoc" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Library"; - name = "\improper Library Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/library) -"aod" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoe" = ( -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aof" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) -"aog" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/nw) -"aoh" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/outside/marshal_office) -"aoi" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/outside/marshal_office) -"aoj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aok" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/marshal_office) -"aol" = ( -/turf/open/floor{ - icon_state = "rampbottom" - }, -/area/bigredv2/outside/marshal_office) -"aom" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/lawyer/bluejacket, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"aon" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/marshal_office) -"aoo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aop" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aoq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aor" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aos" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aot" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aou" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aov" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aow" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aox" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aoy" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aoz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aoA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aoB" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aoD" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"aoE" = ( -/obj/item/stool, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aoF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aoG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoH" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/general_store) -"aoI" = ( -/obj/item/tool/surgery/scalpel/laser/advanced, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/XenoBio/Resin, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"aoL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoM" = ( -/obj/item/tool/weedkiller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aoN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"aoO" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aoP" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aoQ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aoR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = -32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aoT" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aoU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/outside/marshal_office) -"aoV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/outside/marshal_office) -"aoW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"aoX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"aoY" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"aoZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"apa" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"apb" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/camera_film, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"apc" = ( -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"ape" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"apf" = ( -/obj/item/clothing/under/darkred, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"apg" = ( -/obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aph" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"api" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Dormitories EVA Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"apk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"apn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apo" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) -"app" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apq" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apr" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aps" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"apt" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "General Store"; - name = "\improper General Store Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apu" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apv" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Xenbiology Lab APC"; - pixel_x = -30; - start_charge = 0 - }, -/obj/structure/machinery/door_control{ - id = "lambda"; - name = "Lambda Lockdown"; - pixel_y = -25 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/obj/item/shard, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apy" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apz" = ( -/obj/item/grown/sunflower, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apA" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apB" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"apC" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"apD" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"apE" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"apF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"apG" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/virology) -"apH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"apI" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/lambda_cave_cas) -"apJ" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"apK" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"apN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"apO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"apP" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"apQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"apR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"apZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aqa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"aqb" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"aqc" = ( -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aqd" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqe" = ( -/obj/structure/xenoautopsy/tank/larva, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqf" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqg" = ( -/obj/structure/xenoautopsy/tank/alien, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/structure/xenoautopsy/tank/hugger, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqi" = ( -/obj/structure/machinery/light/built{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqk" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aql" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqm" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqn" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqo" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aqp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aqq" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"aqr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"aqs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/outside/medical) -"aqt" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"aqu" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"aqv" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aqw" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aqx" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Library"; - name = "\improper Library Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/library) -"aqy" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aqz" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Bar Complex"; - name = "\improper Bar Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aqB" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aqC" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aqD" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"aqE" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"aqF" = ( -/obj/structure/morgue, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"aqG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) -"aqH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqI" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/nw) -"aqK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqL" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/n) -"aqM" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqN" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"aqO" = ( -/obj/structure/barricade/wooden, -/turf/open/mars, -/area/bigredv2/outside/n) -"aqQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aqR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aqS" = ( -/obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aqT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aqU" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Kitchen"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"aqV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"aqW" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aqX" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"aqY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"aqZ" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"ara" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"arb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"arc" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ard" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/nw) -"are" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"arg" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"ari" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arj" = ( -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ark" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arl" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"arm" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arn" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aro" = ( -/obj/structure/machinery/optable, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"arp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/n) -"arq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/n) -"arr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/n) -"ars" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"art" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aru" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"arv" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/lightred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"arw" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"arx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"ary" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"arA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"arB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"arC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"arD" = ( -/turf/open/mars, -/area/bigredv2/outside/ne) -"arE" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"arF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"arG" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"arI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"arJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Biology Wing" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"arK" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves_lambda) -"arL" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_lambda) -"arM" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) -"arN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 8; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"arO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/outside/medical) -"arP" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"arQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"arR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"arU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"arX" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"arY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"arZ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/n) -"asa" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/n) -"asc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"asd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"ase" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"asf" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"asg" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"ash" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"asi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dormitories Tool Storage Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"asj" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "General Store"; - name = "\improper General Store Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"ask" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Dormitories EVA" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"asl" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"asm" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars, -/area/bigredv2/outside/ne) -"asn" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"aso" = ( -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"asp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"asq" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"asr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ass" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"ast" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"asu" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"asv" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"asw" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"asx" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave, -/area/bigredv2/caves_lambda) -"asy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"asz" = ( -/obj/item/device/reagent_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"asA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/outside/medical) -"asB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"asC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"asD" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"asE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"asF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"asG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"asH" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"asI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"asJ" = ( -/turf/open/floor, -/area/bigredv2/outside/dorms) -"asK" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"asL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/cable_coil/blue, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"asT" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"asU" = ( -/obj/structure/closet/l3closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/general_offices) -"asV" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"asW" = ( -/obj/structure/closet/l3closet, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/general_offices) -"asX" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"asY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"asZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/clothing/under/redcoat, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"ata" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"atb" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"atc" = ( -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = -30 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"atd" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"ate" = ( -/obj/structure/machinery/door_control{ - id = "safe_blast"; - name = "Blast Door"; - pixel_y = -25 - }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" - }, -/area/bigredv2/caves/lambda/breakroom) -"atg" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"ath" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"ati" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"atj" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"atk" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_lambda) -"atl" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"atm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"atn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ato" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"atp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"atq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"atr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ats" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"att" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"atu" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"atv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"atw" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aty" = ( -/obj/item/bedsheet/brown, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed, -/obj/structure/bed{ - pixel_y = 13 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"atz" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"atA" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"atB" = ( -/obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"atC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atD" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"atI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - icon_state = "door_locked"; - id = "safe_room"; - name = "\improper Lambda Lab Secure Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"atJ" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Office Complex 1"; - name = "\improper Office Complex Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"atK" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"atL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"atM" = ( -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"atN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"atO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"atP" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Chapel"; - name = "\improper Chapel Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/chapel) -"atQ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/nw) -"atR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"atS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"atU" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"atV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"atW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Clinic Morgue" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"atX" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"atY" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"atZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aua" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aub" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"auc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aud" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aue" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"auf" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aug" = ( -/obj/item/stack/sheet/plasteel, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"auh" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"aui" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"auj" = ( -/obj/item/device/radio/intercom{ - frequency = 150; - name = "Safe-Room intercom"; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"auk" = ( -/obj/structure/window/framed/solaris, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aul" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aum" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Administration Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"auo" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"aup" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"auq" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"aur" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"aus" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) -"aut" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auv" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"auw" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"aux" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auy" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"auz" = ( -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auA" = ( -/obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auD" = ( -/obj/effect/decal/cleanable/mucus, -/obj/structure/machinery/door_control{ - id = "sci_br"; - name = "Observation Shutters"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"auE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"auF" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"auG" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"auH" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"auI" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"auJ" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"auP" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auQ" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auR" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auT" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"auU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"auV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories Tool Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"auW" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/c) -"auX" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/outside/c) -"auY" = ( -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"auZ" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"ava" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"avb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"avc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"avd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"ave" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Administration Wing" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"avf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"avg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avi" = ( -/obj/structure/showcase, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"avj" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"avk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Break Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"avm" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avn" = ( -/obj/structure/inflatable/door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avo" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avp" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avr" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"avt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/nw/ceiling) -"avu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic Chemistry" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"avv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"avw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"avx" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"avy" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"avz" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"avA" = ( -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"avB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"avC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - pixel_y = 21 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Dormitories APC"; - pixel_y = 25 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"avH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avJ" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"avM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"avN" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"avO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Relaxation Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/breakroom) -"avP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"avQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"avS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/office_complex) -"avT" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"avW" = ( -/obj/structure/surface/table, -/obj/item/trash/burger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"avX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"avY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"avZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"awc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awd" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/se) -"awe" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"awf" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/office_complex) -"awg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awj" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Scanner Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"awk" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awl" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awm" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"awn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awo" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awp" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"awq" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"awr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"aws" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"aww" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awx" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"awy" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/ne) -"awz" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/XenoBio/Chitin, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"awC" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"awE" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"awF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"awG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"awH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"awI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/breakroom) -"awJ" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) -"awK" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"awL" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awM" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"awN" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"awO" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awR" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awS" = ( -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"awT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"awU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awV" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"awW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"awX" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"awY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"awZ" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axa" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axb" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axf" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"axi" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axj" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axk" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axl" = ( -/obj/structure/barricade/wooden, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axm" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axn" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"axo" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axp" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"axq" = ( -/obj/structure/machinery/light/built, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"axr" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"axs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"axt" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/breakroom) -"axu" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/nw) -"axv" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/nw/ceiling) -"axw" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"axx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"axy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic Treatment" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"axz" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"axA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"axB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"axC" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"axD" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"axE" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/bigredv2/outside/medical) -"axF" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/n) -"axG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axK" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"axL" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Cargonia"; - name = "\improper Cargo Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"axM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"axP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"axS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_offices) -"axT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"axU" = ( -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"axV" = ( -/obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"axW" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"axX" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/engineering) -"axY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/nw/ceiling) -"axZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aya" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayb" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"ayc" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ayd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aye" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayf" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port_lz2) -"ayg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayi" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayj" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayk" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayl" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aym" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/pistachios, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayr" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/engineering) -"ays" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"ayt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"ayu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"ayv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayw" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/general_offices) -"ayx" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/general_offices) -"ayy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/general_offices) -"ayz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/general_offices) -"ayA" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayB" = ( -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"ayC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves/lambda/research) -"ayD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves/lambda/research) -"ayE" = ( -/obj/structure/girder/reinforced, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves/lambda/research) -"ayF" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"ayG" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/medical) -"ayK" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayL" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"ayM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"ayN" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"ayO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayP" = ( -/obj/item/weapon/broken_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ayQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"ayR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayS" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayT" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/gloves, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ayV" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ayW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"ayX" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"ayZ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"aza" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/dorms) -"azb" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/general_offices) -"azd" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/general_offices) -"aze" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/general_offices) -"azf" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_lambda) -"azg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/cell/hyper, -/turf/open/floor{ - dir = 9; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"azi" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"azj" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"azk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves/lambda/research) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"azm" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/breakroom) -"azn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azo" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"azp" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"azq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"azr" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"azs" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"azt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"azu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"azv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"azw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/medical) -"azx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"azy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"azz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Clinic Treatment" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"azA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"azB" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Engineering"; - name = "\improper Engineering Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azD" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"azE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"azF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"azG" = ( -/obj/structure/window/framed/solaris, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Filtration Plant"; - name = "\improper Filtration Plant Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"azH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Medical Clinic Power Station" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"azK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/n) -"azM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"azN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"azO" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/eta) -"azP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azR" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/caves) -"azS" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azU" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azV" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azW" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - pixel_y = -16 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"azZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAb" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aAd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"aAe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"aAf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAg" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/general_offices) -"aAi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aAj" = ( -/obj/item/tool/extinguisher/mini, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) -"aAk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/caves/lambda/research) -"aAl" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aAm" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aAn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves/lambda/research) -"aAo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave, -/area/bigredv2/caves/lambda/research) -"aAp" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/storage) -"aAq" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aAr" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aAs" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aAt" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aAu" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aAv" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aAw" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aAx" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aAy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aAz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/n) -"aAB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aAC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aAD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aAE" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Recreation" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aAF" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"aAG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"aAH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Maintenance" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) -"aAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) -"aAL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/ne) -"aAM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAO" = ( -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aAP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aAQ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aAR" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aAS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, -/area/bigredv2/caves/lambda/research) -"aAT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/lambda/research) -"aAU" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/lambda/research) -"aAV" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "anomalybelt" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aAW" = ( -/obj/structure/machinery/conveyor{ - dir = 9; - id = "anomalybelt" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aAX" = ( -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/lambda/research) -"aAY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/lambda/research) -"aAZ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBa" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/nw/ceiling) -"aBb" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/medical) -"aBc" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/medical) -"aBd" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/medical) -"aBe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aBf" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aBh" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aBi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aBj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBk" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBl" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBm" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBq" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/beach_ball, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aBt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/dorms) -"aBu" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"aBv" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/research) -"aBw" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aBx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Greenhouse" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aBy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBz" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) -"aBA" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/research) -"aBB" = ( -/obj/item/device/multitool, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) -"aBC" = ( -/obj/item/clothing/suit/storage/labcoat/science, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) -"aBD" = ( -/obj/item/tool/weldingtool/experimental, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) -"aBE" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/storage) -"aBF" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "U-S" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aBH" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aBI" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/medical) -"aBJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aBK" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aBM" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aBO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aBQ" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"aBR" = ( -/turf/open/mars, -/area/bigredv2/outside/c) -"aBS" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aBT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aBU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/candy, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aBV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBY" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aBZ" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aCa" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aCb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aCc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) -"aCd" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/ne) -"aCe" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"aCf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"aCg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"aCh" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"aCi" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCj" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCk" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"aCl" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCm" = ( -/obj/structure/surface/table, -/obj/item/paper/hydroponics, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCn" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCp" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCq" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aCr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/research) -"aCs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/clipboard, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aCt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/lambda/research) -"aCu" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/obj/structure/ore_box, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aCv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Technical Lab" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/research) -"aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aCx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aCy" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/xenobiology) -"aCz" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/warning_stripes{ - icon_state = "U-N" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aCA" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aCB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aCC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aCE" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aCF" = ( -/obj/item/reagent_container/pill/happy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aCG" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aCH" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aCI" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aCJ" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aCK" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aCL" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/xenobiology) -"aCM" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aCN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aCQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aCR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aCT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Bar Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aCV" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/ne) -"aCW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/ne) -"aCX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aCZ" = ( -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDa" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDb" = ( -/obj/structure/machinery/door_control{ - id = "Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aDc" = ( -/obj/structure/bookcase{ - density = 0 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aDd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aDe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aDf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Library Backroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/library) -"aDg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aDh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aDi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/engine, -/area/bigredv2/caves/lambda/research) -"aDj" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/xenobiology) -"aDk" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aDl" = ( -/obj/structure/ore_box, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aDm" = ( -/obj/structure/barricade/metal{ - dir = 4; - icon_state = "barricade" - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aDn" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aDp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDs" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDt" = ( -/obj/structure/machinery/conveyor_switch{ - id = "anomalybelt" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aDv" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aDw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aDx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"aDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aDz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"aDA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aDB" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aDC" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/bonesetter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aDD" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aDE" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aDF" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/cautery, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aDG" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aDH" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aDI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aDJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aDK" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aDL" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aDM" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aDN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aDO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aDP" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aDQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aDR" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aDT" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aDU" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aDV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aDW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aDX" = ( -/turf/closed/wall/solaris, -/area/bigredv2/caves/eta/living) -"aDY" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/living) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bar Backroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aEa" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aEb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Bar APC" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aEc" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aEd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"aEf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"aEg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEh" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEi" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aEj" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/living) -"aEl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aEm" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aEn" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/research) -"aEo" = ( -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aEp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aEq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aEs" = ( -/obj/structure/surface/table/holotable/wood, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aEt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aEu" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"aEv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aEw" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aEx" = ( -/obj/item/alien_embryo, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aEz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aEC" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aED" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aEE" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aEF" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves/lambda/research) -"aEG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aEI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aEJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aEK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aEL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - pixel_x = -14 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aEM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aEN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Toilet" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aEO" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aEP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aEQ" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aER" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aES" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/shovel/spade, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEV" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/virology) -"aEW" = ( -/obj/item/tool/hatchet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aEX" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/se) -"aEY" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"aEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/liquidfood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFa" = ( -/obj/structure/machinery/botany/extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aFc" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/sw) -"aFd" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 - }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) -"aFg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aFh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"aFj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aFk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 32 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aFm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "purplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aFn" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aFo" = ( -/turf/open/floor{ - icon_state = "purplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aFp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aFq" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aFr" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aFs" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/outside/virology) -"aFt" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/virology) -"aFu" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/virology) -"aFv" = ( -/turf/open/mars, -/area/bigredv2/outside/virology) -"aFw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/virology) -"aFx" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aFy" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/item/organ/heart/prosthetic, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aFz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aFA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Operating Theatre" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aFB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aFC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aFE" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aFF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aFG" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aFI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/buritto, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aFJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aFK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - id_tag = "mbayexit"; - name = "Medbay Reception"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aFL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/c) -"aFM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aFN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aFP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/dorms) -"aFQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aFR" = ( -/obj/item/tool/hatchet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aFS" = ( -/obj/item/tool/surgery/hemostat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"aFT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aFU" = ( -/obj/structure/machinery/door_control{ - id = "Dormitories"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"aFV" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aFW" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aFX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aFY" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aFZ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"aGa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Greenhouse Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aGb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Greenhouse Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/library) -"aGe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aGf" = ( -/obj/structure/machinery/door_control{ - id = "Library"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aGg" = ( -/obj/structure/machinery/light/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aGh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"aGi" = ( -/obj/item/clothing/glasses/welding, -/turf/open/floor{ - dir = 8; - icon_state = "purplecorner" - }, -/area/bigredv2/caves/lambda/research) -"aGk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aGl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aGm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aGn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aGo" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/virology) -"aGp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/outside/virology) -"aGq" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/virology) -"aGr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/virology) -"aGs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aGt" = ( -/obj/item/reagent_container/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/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aGu" = ( -/obj/item/clothing/mask/breath/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aGv" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aGw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aGx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aGy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aGz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aGA" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aGB" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aGC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/trash/kepler, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aGE" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aGF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"aGG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/binoculars, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aGH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aGI" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aGJ" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aGK" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGL" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aGN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/bigredv2/outside/library) -"aGO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/bigredv2/outside/library) -"aGQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aGT" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/research) -"aGV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aGW" = ( -/turf/open/floor{ - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aGY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"aGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 28; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aHc" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aHd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-in" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aHf" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/outside/virology) -"aHg" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aHh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aHj" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aHl" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/nw) -"aHm" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aHn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/nw) -"aHo" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aHp" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aHq" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"aHr" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aHs" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aHt" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aHu" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aHv" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aHw" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aHy" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/rad, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/outside/medical) -"aHz" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aHA" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"aHB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aHC" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aHD" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aHF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aHG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/bar) -"aHH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/bar) -"aHI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/bigredv2/outside/bar) -"aHJ" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aHK" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aHM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/bigredv2/outside/library) -"aHN" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/bigredv2/outside/library) -"aHO" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aHP" = ( -/obj/structure/prop/almayer/computers/mapping_computer{ - desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; - name = "\improper Teleporter Targeting Computer" - }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aHQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/research) -"aHR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Anomaly Lab" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/research) -"aHS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/access_button/airlock_interior{ - master_tag = "viro_controller"; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aHT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-in" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aHU" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aHV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aHW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aHX" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aHY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aHZ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/virology) -"aIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aIb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aIg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aIi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aIj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aIk" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aIl" = ( -/obj/item/reagent_container/glass/rag, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"aIm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/c) -"aIn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"aIp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/c) -"aIq" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/bar) -"aIr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/bar) -"aIs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/bar) -"aIt" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aIu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aIv" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aIw" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIx" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIy" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIA" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aID" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aIE" = ( -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aIF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aIG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/bigredv2/outside/library) -"aIH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aIJ" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/research) -"aIO" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"aIP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIQ" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged5" - }, -/area/bigredv2/caves/lambda/research) -"aIR" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/bluegrid{ - icon_state = "damaged4" - }, -/area/bigredv2/caves/lambda/research) -"aIS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIT" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aIU" = ( -/obj/structure/pipes/vents/scrubber/on, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aIW" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aIX" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aIZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aJa" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aJb" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/admin_building) -"aJc" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) -"aJd" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aJe" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/machinery/door/window{ - layer = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aJg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aJh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aJi" = ( -/obj/item/trash/popcorn, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aJj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aJl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/medical) -"aJm" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/c) -"aJn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/bar) -"aJo" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/bar) -"aJp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/bigredv2/outside/bar) -"aJq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aJr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bar Backroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aJs" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aJt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aJw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aJx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aJy" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"aJz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Kitchen Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aJA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aJB" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aJC" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aJD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aJE" = ( -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/bigredv2/caves/lambda/research) -"aJF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJG" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aJJ" = ( -/obj/structure/machinery/light/built, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/bluegrid{ - icon_state = "damaged3" - }, -/area/bigredv2/caves/lambda/research) -"aJN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJO" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rad_haz{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJR" = ( -/obj/structure/machinery/access_button/airlock_exterior{ - master_tag = "viro_controller"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJS" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aJU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aJV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/caves/lambda/virology) -"aJW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Lambda Lab Virology Wing" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/virology) -"aJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aJZ" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aKa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aKb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) -"aKc" = ( -/obj/structure/pipes/vents/scrubber/on{ - dir = 8 - }, -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) -"aKd" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aKe" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/door/window{ - layer = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aKf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aKg" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aKi" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) -"aKk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKl" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/c) -"aKm" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aKn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aKo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aKp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aKq" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aKr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/c) -"aKt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/c) -"aKv" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aKw" = ( -/obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aKx" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aKy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aKz" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aKA" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/ne) -"aKB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/ne) -"aKC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKE" = ( -/obj/structure/machinery/door_control{ - id = "Kitchen Greenhouse"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKG" = ( -/obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKH" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKI" = ( -/obj/structure/machinery/processor, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/hydroponics) -"aKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aKK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aKL" = ( -/obj/structure/bookcase{ - density = 0 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aKM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/bigredv2/outside/library) -"aKN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/bigredv2/outside/library) -"aKO" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aKP" = ( -/turf/open/mars, -/area/bigredv2/outside/e) -"aKQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"aKS" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aKT" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aKU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aKV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-in" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aKW" = ( -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aKX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aKY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aLa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/bigredv2/caves/lambda/virology) -"aLb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/light/built{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aLc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"aLd" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/c) -"aLe" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Command Complex" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aLf" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"aLh" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1north" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"aLi" = ( -/obj/structure/closet/jcloset, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"aLn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aLo" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aLp" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLq" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump, -/obj/item/trash/cheesie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLs" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLt" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLu" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLv" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aLw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/waffles, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLx" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLz" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/waffles, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aLF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/bigredv2/outside/library) -"aLG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/bigredv2/outside/library) -"aLH" = ( -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"aLI" = ( -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aLM" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/door/window{ - dir = 1; - opacity = 1 - }, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/caves/lambda/virology) -"aLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aLQ" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aLR" = ( -/obj/structure/window/reinforced/toughened{ - icon_state = "fwindow" - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/machinery/computer/pandemic, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aLS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aLT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"aLU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aLV" = ( -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aLW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aLX" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/virology) -"aLY" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/virology) -"aLZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aMb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/nw) -"aMc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aMd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aMf" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aMg" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aMh" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMi" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"aMl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/cheesie, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/research) -"aMr" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMs" = ( -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid, -/area/bigredv2/caves/lambda/research) -"aMu" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"aMv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "viro_q"; - layer = 4; - name = "Qurantine Lockdown"; - normaldoorcontrol = 1; - pixel_x = -25; - req_access_txt = "7"; - specialfunctions = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aMw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aMy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/machinery/light/built, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aMC" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) -"aME" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper General Store" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_store) -"aMF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aMH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMI" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/sosjerky, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMJ" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "Bar Complex"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aMK" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aML" = ( -/obj/structure/bed/chair, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMM" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMO" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMP" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aMQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aMR" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/e) -"aMS" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aMT" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aMV" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aMW" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"aMX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Virology Quarantine" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/virology) -"aMY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/virology) -"aNa" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNc" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNd" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aNe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNg" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aNh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/research) -"aNi" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aNj" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aNk" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aNl" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aNm" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aNn" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aNo" = ( -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aNq" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aNr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aNs" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aNt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aNu" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aNv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aNw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aNx" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"aNy" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aNz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aNA" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aNB" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aNC" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aND" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aNG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aNH" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aNI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNJ" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNN" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aNO" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aNP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aNQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aNR" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNT" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNW" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNX" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aNZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOb" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOf" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOg" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/spoon, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/library) -"aOj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/bigredv2/outside/library) -"aOk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/e) -"aOl" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"aOm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aOn" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aOo" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"aOp" = ( -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/virology) -"aOq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/virology) -"aOr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aOs" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aOt" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aOv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aOD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aOE" = ( -/obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aOF" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aOG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aOH" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/admin_building) -"aOI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aOK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aOL" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aOM" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aON" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Bedroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aOO" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aOP" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"aOR" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aOS" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aOU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Crew Habitation Complex" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aOV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOW" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOX" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/tray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aOY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aOZ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aPa" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aPd" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"aPe" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aPg" = ( -/obj/structure/surface/table, -/obj/item/XenoBio/Blood, -/obj/item/XenoBio/Blood, -/obj/item/paper, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"aPh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPi" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aPj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aPk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/bigredv2/outside/library) -"aPl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/library) -"aPm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/library) -"aPn" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/library) -"aPo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/library) -"aPp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/bigredv2/outside/library) -"aPq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Lambda Lab Anomaly Chamber" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/lambda/research) -"aPr" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/virology) -"aPs" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/caves/lambda/virology) -"aPt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aPu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aPv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPw" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aPD" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPF" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aPG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aPI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aPJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aPK" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aPL" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aPM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aPN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aPP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aPS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aPT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"aPV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aPW" = ( -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 13 - }, -/obj/item/clothing/shoes/dress{ - pixel_y = -13 - }, -/obj/item/clothing/under/suit_jacket/trainee{ - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aPX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/lighter/zippo, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aPY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aQa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQe" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQf" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQj" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQn" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQo" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQp" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aQq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aQr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aQs" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aQt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"aQu" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"aQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 5; - icon_state = "podhatch" - }, -/area/bigredv2/caves/lambda/research) -"aQy" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"aQz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aQA" = ( -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aQB" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aQC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Virology APC" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aQD" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/smes_coil, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"aQE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aQF" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/outside/w) -"aQG" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/w) -"aQH" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aQI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aQJ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aQL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aQM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQN" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aQO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/cleanable/blood, -/obj/item/alien_embryo, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQP" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQQ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQR" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQS" = ( -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aQU" = ( -/obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aQV" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aQW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aQX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRb" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aRe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aRf" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"aRh" = ( -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aRi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aRj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aRk" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aRl" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aRm" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aRn" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"aRo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Bar" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aRp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aRq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"aRs" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Kitchen"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/hydroponics) -"aRu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Library" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/library) -"aRv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aRw" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aRx" = ( -/obj/structure/machinery/teleport/station, -/turf/open/floor{ - icon_state = "podhatch" - }, -/area/bigredv2/caves/lambda/research) -"aRy" = ( -/obj/structure/machinery/teleport/hub, -/turf/open/floor{ - dir = 6; - icon_state = "podhatch" - }, -/area/bigredv2/caves/lambda/research) -"aRz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aRB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aRC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 7; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/vomit, -/obj/structure/machinery/light/built{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aRD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRE" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aRF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aRG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aRH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aRI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aRJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aRK" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aRL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aRM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/obj/item/reagent_container/food/drinks/cans/cola, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aRO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aRR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aRT" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRU" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRV" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRX" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aRY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aRZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aSc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/bar) -"aSe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Kitchen" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"aSf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aSg" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aSh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/e) -"aSi" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aSj" = ( -/obj/effect/decal/remains/human, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aSk" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aSl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aSm" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aSn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_lambda) -"aSo" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aSq" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/scrubber/on{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aSr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aSs" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aSt" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aSu" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aSv" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/virology) -"aSw" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aSx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aSy" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aSA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aSB" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/w) -"aSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/tonic, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSG" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/flask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSH" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aSK" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/surgery/surgicaldrill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aSL" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/healthanalyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aSM" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aSN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aSO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aSP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper General Store Security" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_store) -"aSQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aSR" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/admin_building) -"aSS" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/admin_building) -"aST" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aSU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aSV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aSW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aSX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aSZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Control Center APC" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aTa" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aTb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aTc" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aTd" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aTe" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aTf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aTg" = ( -/obj/structure/sign/double/barsign{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aTh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aTi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aTj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aTk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aTl" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aTo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aTp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aTq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aTr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aTs" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigred/ground/garage_workshop) -"aTt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aTu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aTv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/caves_lambda) -"aTw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aTx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aTy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aTz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aTC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aTD" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aTE" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aTG" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) -"aTH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aTI" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aTJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aTK" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aTL" = ( -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aTM" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aTR" = ( -/obj/structure/surface/table, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTS" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aTU" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/admin_building) -"aTV" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/admin_building) -"aTY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/admin_building) -"aTZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/admin_building) -"aUa" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aUb" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aUc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aUd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aUe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"aUf" = ( -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aUh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"aUi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aUk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/e) -"aUl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"aUm" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"aUn" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"aUo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aUp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aUr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aUs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aUu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aUv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aUw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aUx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aUy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/caves_lambda) -"aUA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aUD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aUE" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aUF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aUG" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/lambda/virology) -"aUH" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/lambda/virology) -"aUI" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aUM" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aUO" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aUP" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aUQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/w) -"aUS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aUT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aUU" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aUV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUW" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aUX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aUZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aVa" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aVb" = ( -/obj/structure/surface/table, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aVc" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/space) -"aVd" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVe" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVf" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Register" - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVi" = ( -/obj/structure/machinery/door_control{ - id = "General Store"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/admin_building) -"aVk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/admin_building) -"aVl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aVm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aVn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aVo" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/c) -"aVp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"aVq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/e) -"aVr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/e) -"aVs" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/e) -"aVt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aVv" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aVw" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/outside/lambda_cave_cas) -"aVx" = ( -/obj/structure/curtain/medical, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aVy" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aVz" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aVA" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"aVB" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aVC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "viro"; - name = "Virology Lockdown"; - pixel_x = -25 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aVD" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aVE" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aVF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aVG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aVH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aVI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aVJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper General Store" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_store) -"aVK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/handcuffs/cable, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aVN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "yellowfull" - }, -/area/bigredv2/outside/general_store) -"aVQ" = ( -/obj/structure/platform_decoration/kutjevo/rock, -/turf/open/mars, -/area/space) -"aVR" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/space) -"aVS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/admin_building) -"aVT" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aVU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aVV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aVX" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aVY" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/e) -"aVZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aWb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aWc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/bigredv2/caves/lambda/virology) -"aWd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWg" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aWi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aWk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aWo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"aWs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWv" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWx" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWy" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/n_cave) -"aWz" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"aWB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Operations Armory" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aWD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aWE" = ( -/turf/open/floor{ - icon_state = "darkbluecorners2" - }, -/area/bigredv2/outside/admin_building) -"aWF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aWG" = ( -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aWH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aWI" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aWJ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/c) -"aWK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/e) -"aWL" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/e) -"aWM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aWN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"aWO" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Chemistry" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aWQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aWR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aWT" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aWU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aWV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aWW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aWX" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aWY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/handcuffs/cable/cyan, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"aXb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXc" = ( -/obj/structure/machinery/light, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"aXd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXg" = ( -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/effect/landmark/good_item, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aXj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aXk" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aXl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aXm" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aXn" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aXo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"aXq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"aXr" = ( -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXt" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/e) -"aXu" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aXw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aXx" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Virology Lab Cell" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aXy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aXz" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aXA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aXB" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aXC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/odysseus, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aXD" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/mauler, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aXE" = ( -/obj/structure/surface/table, -/obj/item/toy/prize/ripley, -/obj/item/toy/prize/mauler, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aXG" = ( -/obj/structure/surface/table, -/obj/item/toy/sword, -/obj/item/toy/gun, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"aXH" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper General Store Storage" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aXL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aXM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aXN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aXO" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aXP" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"aXS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXV" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aXW" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aXX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/outside/e) -"aXY" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"aXZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/general_store) -"aYc" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYe" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYf" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aYi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aYk" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aYl" = ( -/obj/item/cell/hyper/empty, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYm" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Operations Toilet" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aYr" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/admin_building) -"aYs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/eat, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aYv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aYw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aYx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aYy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aYA" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aYC" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/virology) -"aYE" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/w) -"aYF" = ( -/turf/open/mars, -/area/bigredv2/outside/w) -"aYG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aYK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/c) -"aYL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"aYM" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYN" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"aYO" = ( -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"aYS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aYT" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aYW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aYX" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aYY" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aYZ" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aZa" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/floor/mech_bay_recharge_floor, -/area/bigredv2/outside/office_complex) -"aZb" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aZc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZd" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"aZe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aZh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/chapel) -"aZi" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/chapel) -"aZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"aZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Virology Lab Decontamination" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/virology) -"aZl" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/virology) -"aZm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) -"aZn" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZp" = ( -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"aZq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"aZr" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZu" = ( -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZv" = ( -/obj/structure/machinery/door/window/eastleft{ - layer = 3.1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"aZA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/admin_building) -"aZB" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZC" = ( -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZE" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"aZF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"aZG" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"aZH" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"aZI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"aZK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"aZL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper General Store Maintenance" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"aZM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZP" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"aZQ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/admin_building) -"aZT" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZU" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"aZW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"aZX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aZY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "Operations"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"aZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"baa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bad" = ( -/obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bae" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"baf" = ( -/obj/structure/surface/table, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bag" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/beaker/sulphuric, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bah" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bai" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"baj" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bal" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"bam" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, -/area/bigredv2/outside/chapel) -"ban" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"bao" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bap" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"baq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bar" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bas" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bat" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bax" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/w) -"bay" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"baF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"baG" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"baI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"baJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"baK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"baL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"baM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"baN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_sw) -"baO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"baP" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"baR" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"baS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"baT" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"baU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"baV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"baW" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bba" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"bbb" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/mars, -/area/bigredv2/outside/w) -"bbc" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/w) -"bbe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbf" = ( -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bbh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbi" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbj" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bbk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bbl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/bigredv2/outside/admin_building) -"bbm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/bigredv2/outside/admin_building) -"bbo" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbp" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 6 - }, -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbq" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbr" = ( -/obj/structure/surface/table, -/obj/item/storage/photo_album, -/obj/item/tool/pen/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bbs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bby" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bbA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bbB" = ( -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bbC" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bbD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"bbF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bbG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bbH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bbI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bbJ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/w) -"bbM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/flashlight, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bbV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bbW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/bigredv2/outside/admin_building) -"bbY" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bbZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bca" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bcc" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bcd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bce" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bcf" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bch" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"bci" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"bcj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bck" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Private Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"bcl" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"bcn" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_virology) -"bco" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"bcp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/w) -"bcq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"bcr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/cargo) -"bcs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/cargo) -"bct" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) -"bcu" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bcv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcw" = ( -/obj/effect/decal/mecha_wreckage/ripley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcy" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = -30 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcC" = ( -/obj/structure/machinery/door_control{ - id = "Cargonia"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bcD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bcE" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcF" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bcH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bcI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bcJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bcK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"bcL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bcM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/bigredv2/outside/admin_building) -"bcN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/bigredv2/outside/admin_building) -"bcO" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bcP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "200" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bcQ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bcR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bcS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bcT" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bcU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bcY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Interview Room APC" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bda" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdb" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdd" = ( -/turf/open/floor{ - icon_state = "rampbottom" - }, -/area/bigredv2/outside/chapel) -"bdf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/cargo) -"bdg" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bdh" = ( -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Offices" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bdk" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bdl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bdm" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bdn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/item/device/camera, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bdo" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bdp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bdq" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bdr" = ( -/obj/structure/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/admin_building) -"bds" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/admin_building) -"bdt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"bdu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bdv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bdx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bdy" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/red, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdA" = ( -/obj/structure/sign/prop1, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Private Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"bdD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdE" = ( -/obj/structure/machinery/door_control{ - id = "Chapel"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"bdF" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bdG" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bdI" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"bdK" = ( -/obj/structure/largecrate, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdL" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bdO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bdP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"bdU" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bdW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bdZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/w) -"beb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/cargo) -"bec" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bed" = ( -/obj/effect/landmark/good_item, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bee" = ( -/obj/structure/closet/emcloset, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bef" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bei" = ( -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bej" = ( -/obj/structure/machinery/deployable/barrier, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Operations" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"bek" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"bel" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bem" = ( -/obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"ben" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Robotics" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"bep" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"beq" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/se) -"ber" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/se) -"bes" = ( -/turf/open/mars, -/area/bigredv2/outside/se) -"bet" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) -"beu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"bev" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"bew" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/cargo) -"bex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bey" = ( -/obj/structure/closet/emcloset, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bez" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beA" = ( -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"beC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"beE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"beF" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"beG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"beH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"beI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"beJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"beK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"beL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"beM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"beN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/prop3{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"beP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/w) -"beQ" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/w) -"beR" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/cargo) -"beS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/cargo) -"beT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beU" = ( -/turf/open/floor{ - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) -"beV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"beW" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beX" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/item/tool/lighter/random, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"beY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"beZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bfb" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bfc" = ( -/obj/structure/barricade/wooden, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/c) -"bfd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bff" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"bfj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfn" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bft" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Office Complex" - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bfw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/se) -"bfy" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/emcloset/legacy, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfC" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfF" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfH" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bfI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bfJ" = ( -/obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bfO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bfQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"bfR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bfT" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/w) -"bfU" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/w) -"bfV" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfW" = ( -/obj/structure/largecrate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfY" = ( -/obj/structure/largecrate/cow, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bfZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bga" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bgb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgc" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bge" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bgg" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bgh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgj" = ( -/obj/structure/surface/table, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_15"; - pixel_y = 10 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgk" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bgl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bgm" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgn" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgp" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bgs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgt" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgu" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgv" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgw" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bgy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgC" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars, -/area/bigredv2/outside/w) -"bgD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bgE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bgF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bgI" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"bgK" = ( -/obj/structure/surface/table, -/obj/item/device/multitool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgL" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"bgM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bgN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bgO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bgP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/bigredv2/outside/space_port) -"bgQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/bigredv2/outside/office_complex) -"bgR" = ( -/obj/structure/machinery/door_control{ - id = "Office Complex 1"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bgS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/storage/box/m94, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgU" = ( -/obj/item/clothing/shoes/galoshes, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bgW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/space_port_lz2) -"bgX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bgZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/high_explosive/frag{ - desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"bhb" = ( -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) -"bhc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) -"bhd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) -"bhe" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bhf" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bhi" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside/c) -"bhk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bhl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bhn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bhp" = ( -/obj/structure/closet/jcloset, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/obj/item/clothing/head/beret/jan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bhq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/se) -"bhr" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/se) -"bhs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_east) -"bhu" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhv" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhw" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhx" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bhD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) -"bhE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bhH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"bhI" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bhL" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bhM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"bhN" = ( -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, -/area/bigredv2/outside/marshal_office) -"bhO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars, -/area/bigredv2/outside/c) -"bhQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bhR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bhS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/c) -"bhT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bhU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bhX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bhY" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/office_complex) -"bhZ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/janitor, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bia" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"bic" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars, -/area/bigredv2/outside/se) -"bid" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bie" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bik" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "floor4" - }, -/area/bigredv2/outside/cargo) -"bio" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bir" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bit" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"biy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"biz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"biA" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"biD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"biE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/office_complex) -"biH" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"biI" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "Engineering Landing Zone" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"biK" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/megaphone, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"biQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) -"biR" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"biS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"biT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"biU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"biV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/bigredv2/outside/c) -"biX" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/bigredv2/caves/lambda/xenobiology) -"biY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bja" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bjb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bjc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bjd" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bje" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bjg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjh" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bji" = ( -/obj/item/reagent_container/glass/bottle/tramadol, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjj" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) -"bjk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bjl" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/se) -"bjm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/se) -"bjn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bjo" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bjp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bjt" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/machinery/constructable_frame{ - density = 1; - icon_state = "box_1" - }, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bjv" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) -"bjw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/s) -"bjx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bjy" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"bjz" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/s) -"bjA" = ( -/turf/open/mars, -/area/bigredv2/outside/s) -"bjB" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/s) -"bjC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/s) -"bjD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"bjE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bjF" = ( +/area/bigredv2/outside/general_offices) +"awv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bjG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"bjH" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/s) -"bjJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bjK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bjL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bjM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor, -/area/bigredv2/outside/office_complex) -"bjN" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"bjO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bjP" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bjR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bjX" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) -"bjY" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bjZ" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bka" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/s) -"bkb" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bkc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bkd" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bke" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/c) -"bkf" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"bkg" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/bigredv2/outside/office_complex) -"bkh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/se) -"bki" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/se) -"bkk" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/machinery/constructable_frame, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bko" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bkp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/s) -"bkq" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/s) -"bkr" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/s) -"bks" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bky" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/se) -"bkz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"bkA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkB" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bkC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/s) -"bkI" = ( -/obj/structure/cryofeed/right{ - name = "\improper coolant feed" - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/outside/filtration_plant) -"bkJ" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/outside/filtration_plant) -"bkT" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bkU" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bkV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/se) -"blb" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blc" = ( -/obj/effect/decal/warning_stripes, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bld" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blg" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blh" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 + dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bli" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; health = 25000 }, /turf/open/floor, -/area/bigredv2/outside/cargo) -"blj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - health = 25000 +/area/bigredv2/outside/general_offices) +"aww" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"awB" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"awC" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"awM" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/filtration_plant) +"awY" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bll" = ( +/area/bigredv2/outside/dorms) +"awZ" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, /turf/open/floor, -/area/bigredv2/outside/cargo) -"blm" = ( +/area/bigredv2/outside/dorms) +"axa" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, +/obj/item/ashtray/bronze, /turf/open/floor, -/area/bigredv2/outside/cargo) -"bln" = ( +/area/bigredv2/outside/dorms) +"axb" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"blo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/item/device/radio, /turf/open/floor, -/area/bigredv2/outside/cargo) -"blp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +/area/bigredv2/outside/dorms) +"axc" = ( +/obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /turf/open/floor, -/area/bigredv2/outside/cargo) -"blq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"blr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bls" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"blt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/s) -"blu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"blv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/s) -"blF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Air Filtration" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"blG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bme" = ( -/turf/open/mars, -/area/bigredv2/outside/sw) -"bmn" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bmB" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"bmM" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port_lz2) -"bmN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bmQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"bmT" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmU" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bmV" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/engineering) -"bne" = ( -/obj/structure/cryofeed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/outside/filtration_plant) -"bnR" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"boy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"boA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bpc" = ( -/obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) -"bpu" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bpv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/sw) -"bpx" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/sw) -"bpy" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/sw) -"bpT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"bpX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bpY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"bpZ" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/filtration_cave_cas) -"bqa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) -"bqb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"bqc" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves/mining) -"bqd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bqe" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/sw) -"bqg" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) -"bqE" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bqS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Tool Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"brb" = ( -/obj/structure/machinery/landinglight/ds2{ +/area/bigredv2/outside/dorms) +"axd" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"brc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_north) -"brd" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/sw) -"brD" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_cave_cas) -"brE" = ( -/turf/open/floor/greengrid, -/area/bigredv2/outside/filtration_cave_cas) -"brG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/sw) -"bsa" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/bigredv2/outside/space_port_lz2) -"bsb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bsc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bsd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bse" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"bss" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"bsH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"bsI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/sw) -"btn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"bto" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"btw" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"btD" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/s) -"btV" = ( -/obj/structure/surface/table, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"bub" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/outside/s) -"buc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/s) -"bud" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/outside/s) -"buj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves/mining) -"bun" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"buo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/s) -"buu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/s) -"buy" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) -"buz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/caves_sw) -"buB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/n) -"buJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) -"buP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/caves_north) -"buQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"buR" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/lz2_south_cas) -"buY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"bvd" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"bvk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/outside/s) -"bvv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvw" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/lz2_south_cas) -"bvz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/eta) -"bvD" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/caves/mining) -"bvF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/lz2_south_cas) -"bvH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/eta) -"bvK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Power Substation" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/lz2_south_cas) -"bvO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/caves/eta/xenobiology) -"bvP" = ( -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bvQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"bvR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_se) -"bvS" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating, -/area/bigredv2/outside/lz2_south_cas) -"bvV" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"bvW" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"bvX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"bvY" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/eta) -"bvZ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwa" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) -"bwj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/caves/eta/xenobiology) -"bww" = ( -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bwx" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/caves/eta/xenobiology) -"bwz" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"bwA" = ( -/obj/structure/surface/table, /turf/open/floor, -/area/bigredv2/outside/office_complex) -"bwG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab Storage Bay" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/storage) -"bwH" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/storage) -"bwI" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - name = "\improper Eta Lab Decontamination" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/research) -"bwK" = ( -/obj/effect/decal/cleanable/blood, +/area/bigredv2/outside/dorms) +"axi" = ( +/obj/structure/machinery/light, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwL" = ( +/area/bigredv2/outside/general_offices) +"axj" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/bigredv2/caves/eta/storage) -"bwM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/bigredv2/caves/eta/storage) -"bwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwO" = ( +/area/bigredv2/outside/general_offices) +"axk" = ( +/obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bwP" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bwR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bwS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bwT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bwU" = ( -/obj/structure/machinery/shower{ +/area/bigredv2/outside/general_offices) +"axl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axp" = ( +/obj/structure/bed/chair/comfy/lime{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"axr" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" }, -/area/bigredv2/caves/eta/research) -"bwV" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"axG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bwW" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bwX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axI" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bwY" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axJ" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/powercell, /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bwZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxa" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxb" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxc" = ( -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxe" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxf" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxh" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxi" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxj" = ( +/area/bigredv2/outside/dorms) +"axK" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"axL" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Cargonia"; + name = "\improper Cargo Shutters" }, -/area/bigredv2/caves/eta/storage) -"bxk" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"axP" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxl" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/research) -"bxn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bxo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bxp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"axQ" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxr" = ( +/area/bigredv2/outside/general_offices) +"axT" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"axX" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/engineering) +"axZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Robotics" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/storage) -"bxs" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aya" = ( +/obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxw" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bxA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bxB" = ( -/obj/structure/largecrate/guns, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"ayc" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayf" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port_lz2) +"ayo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "bot" +/obj/item/trash/pistachios, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayp" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"bxC" = ( -/obj/structure/largecrate/guns, -/turf/open/floor{ - icon_state = "bot" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"bxD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxJ" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxK" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/dorms) +"ayr" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/engineering) +"ayv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"bxL" = ( -/obj/structure/powerloader_wreckage/ft, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bxM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/area/bigredv2/outside/dorms) +"ayA" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ayF" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"ayV" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"ayX" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"ayZ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azb" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Engineering"; + name = "\improper Engineering Shutters" }, -/area/bigredv2/caves/eta/storage) -"bxO" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bxQ" = ( +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"azm" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/breakroom) +"azn" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor{ +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azo" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"azB" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bxR" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/research) -"bxS" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/research) -"bxT" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "wood" + id = "Engineering"; + name = "\improper Engineering Shutters" }, -/area/bigredv2/caves/eta/research) -"bxU" = ( -/obj/structure/largecrate/cow, /turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bxV" = ( -/obj/structure/largecrate/cow, -/turf/open/floor{ - icon_state = "bot" - }, -/area/bigredv2/caves/eta/storage) -"bxW" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/area/bigredv2/outside/engineering) +"azE" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"azG" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Filtration Plant"; + name = "\improper Filtration Plant Shutters" }, -/area/bigredv2/caves/eta/storage) -"bxX" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"azK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"bxY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/turf/open/mars, +/area/bigredv2/outside/n) +"azO" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/eta) +"azP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bya" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"byb" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azS" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 }, -/area/bigredv2/caves/eta/research) -"byc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bye" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_research) -"byf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"byh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byi" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/bigredv2/outside/dorms) +"azU" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azV" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azW" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 }, -/area/bigredv2/caves/eta/storage) -"byj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"byk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"byl" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"azZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"byn" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/area/bigredv2/caves/eta/research) -"byo" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAb" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"byp" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAg" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave, +/area/bigredv2/caves/lambda/research) +"aAp" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/storage) +"aAq" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/n) +"aAC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"byq" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"byr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bys" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"byt" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - icon_state = "wood" + dir = 4 }, -/area/bigredv2/caves/eta/research) -"byu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aAM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAN" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"byv" = ( +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAO" = ( +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aAZ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aBa" = ( /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating, +/area/bigredv2/outside/nw/ceiling) +"aBi" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aBv" = ( +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/eta/research) -"byw" = ( -/obj/structure/largecrate/mule, -/turf/open/floor{ - icon_state = "bot" - }, -/area/bigredv2/caves/eta/storage) -"byx" = ( -/obj/structure/largecrate/mule, -/obj/effect/decal/cleanable/dirt, +"aBw" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"aBy" = ( +/obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"byy" = ( -/obj/structure/largecrate/lisa, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "bot" - }, -/area/bigredv2/caves/eta/storage) -"byz" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"byA" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/storage) -"byB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, +"aBA" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/research) +"aBE" = ( +/turf/closed/wall/solaris, /area/bigredv2/caves/eta/storage) -"byC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, +"aBQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"byE" = ( +"aBR" = ( +/turf/open/mars, +/area/bigredv2/outside/c) +"aBU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Technical Storage" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/research) -"byF" = ( +/obj/item/trash/candy, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aCb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Eta Lab Dormitories" - }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"aCe" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"aCh" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"byG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_se) -"byH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"aCi" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byI" = ( +/area/bigredv2/outside/hydroponics) +"aCj" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCl" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCm" = ( +/obj/structure/surface/table, +/obj/item/paper/hydroponics, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCn" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCp" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aCq" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aCH" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"aCL" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/xenobiology) +"aCM" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aCY" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor, -/area/bigredv2/caves/eta/storage) -"byJ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/area/bigredv2/outside/hydroponics) +"aCZ" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDa" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDb" = ( +/obj/structure/machinery/door_control{ + id = "Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aDi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/engine, +/area/bigredv2/caves/lambda/research) +"aDj" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/xenobiology) +"aDv" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/living) +"aDQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_x = -32 }, -/area/bigredv2/caves/eta/storage) -"byK" = ( -/obj/structure/closet/l3closet/scientist, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aDX" = ( +/turf/closed/wall/solaris, +/area/bigredv2/caves/eta/living) +"aDY" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/living) +"aEd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEh" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEj" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/living) +"aEu" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"aEF" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves/lambda/research) +"aEK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/shovel/spade, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"byL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEU" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"byM" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEW" = ( +/obj/item/tool/hatchet, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aEX" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/se) +"aEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/liquidfood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/eta/storage) -"byN" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFa" = ( +/obj/structure/machinery/botany/extractor, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFb" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aFc" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/sw) +"aFd" = ( +/obj/structure/flora/jungle/plantbot1{ + pixel_y = 10 }, -/area/bigredv2/caves/eta/storage) -"byO" = ( +/turf/open/jungle, +/area/bigredv2/outside/admin_building) +"aFv" = ( +/turf/open/mars, +/area/bigredv2/outside/virology) +"aFL" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/c) +"aFN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 5 }, -/area/bigredv2/caves/eta/storage) -"byP" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 9 }, -/area/bigredv2/caves/eta/research) -"byQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"aGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGL" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aGM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"aHn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars, +/area/bigredv2/outside/nw) +"aHP" = ( +/obj/structure/prop/almayer/computers/mapping_computer{ + desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; + name = "\improper Teleporter Targeting Computer" }, -/area/bigredv2/caves/eta/research) -"byR" = ( +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aIc" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"aIF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aIT" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"byS" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aJA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"byT" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"byU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"byV" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aKk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aKr" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/c) +"aKP" = ( +/turf/open/mars, +/area/bigredv2/outside/e) +"aKR" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"aLc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +/turf/open/mars, +/area/bigredv2/outside/c) +"aLj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"aLk" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"aLl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"byW" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"aLo" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"byX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"byY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"byZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Robotics" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bza" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aLI" = ( +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMl" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bzb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bzc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/trash/cheesie, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMr" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMs" = ( +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMt" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid, +/area/bigredv2/caves/lambda/research) +"aMu" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"aMC" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"aML" = ( +/obj/structure/bed/chair, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMO" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aNo" = ( +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aNq" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/area/bigredv2/caves/eta/research) -"bzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bze" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bzf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOe" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bzg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOg" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/spoon, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bzh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" + dir = 6 }, -/area/bigredv2/caves/eta/research) -"bzi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bzj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bzk" = ( +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOB" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bzl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aOW" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bzm" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aOY" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bzn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/bigredv2/caves/eta/research) -"bzo" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_research) -"bzp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"bzq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"bzr" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"bzs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Armory" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/research) -"bzt" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPa" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bzu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves/eta/research) -"bzv" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves/eta/research) -"bzw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPb" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/bigredv2/caves/eta/storage) -"bzx" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"bzy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPf" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/xenobiology) +"aPh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"bzz" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 9 }, -/area/bigredv2/caves/eta/storage) -"bzA" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPi" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aPC" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aPG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"bzB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"bzC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"bzD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQd" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bzE" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bzG" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bzI" = ( -/obj/structure/machinery/computer/cameras, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQf" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bzJ" = ( -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/wy, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bzK" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/fork, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bzL" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQi" = ( +/obj/structure/bed/chair{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bzM" = ( -/obj/structure/closet/secure_closet, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bzN" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bzO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves/eta/research) -"bzP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves/eta/research) -"bzQ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Server" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/storage) -"bzR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Eta Lab Security Office" - }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"bzT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQm" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bzU" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQn" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bzW" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQo" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQq" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bzX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aQz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bzY" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aQM" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aQT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bzZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bAa" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAb" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves/eta/research) -"bAc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/caves/eta/research) -"bAd" = ( +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"aRt" = ( +/obj/item/tool/hatchet, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"aRD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves/eta/research) -"bAe" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRE" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aRM" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_se) -"bAf" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/eta/storage) -"bAg" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/eta/storage) -"bAh" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/eta/storage) -"bAi" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aSv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/area/bigredv2/caves/eta/storage) -"bAj" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/virology) +"aSI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aTa" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aTF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"aTQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aTX" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 15 }, -/area/bigredv2/caves/eta/storage) -"bAn" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"aUe" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/area/bigredv2/caves/eta/research) -"bAp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"aUB" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"aUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aUW" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVt" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aVK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/caves/eta/research) -"bAq" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/obj/structure/machinery/computer/aifixer, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/turf/open/floor, +/area/bigredv2/outside/general_store) +"aVQ" = ( +/obj/structure/platform_decoration/kutjevo/rock, +/turf/open/mars, +/area/space) +"aVY" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/e) +"aWr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bAr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"aWz" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/area/bigredv2/caves/eta/research) -"bAs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"aWL" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars, +/area/bigredv2/outside/e) +"aXd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bAu" = ( -/obj/structure/surface/table, -/obj/item/storage/box/wy_mre, /turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Server" +/area/bigredv2/outside/cargo) +"aXf" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"aXr" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXH" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aXS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aXV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/caves/eta/storage) -"bAx" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYc" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYd" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"aYg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"aYs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYt" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/eta/storage) -"bAy" = ( +/obj/item/trash/eat, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/eta/storage) -"bAz" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair/comfy/black{ dir = 8 }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aYF" = ( +/turf/open/mars, +/area/bigredv2/outside/w) +"aYG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/eta/storage) -"bAA" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"bAB" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bAC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bAD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Director's Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/research) -"bAE" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aYO" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"aZa" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/floor/mech_bay_recharge_floor, +/area/bigredv2/outside/office_complex) +"aZc" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bAF" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"aZm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"aZn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZt" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bAH" = ( -/obj/structure/lamarr, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZu" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZv" = ( +/obj/structure/machinery/door/window/eastleft{ + layer = 3.1 }, -/area/bigredv2/caves/eta/research) -"bAI" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZw" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bAJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bAK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAL" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZC" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZQ" = ( /obj/structure/surface/table, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, -/area/bigredv2/caves/eta/research) -"bAN" = ( -/obj/structure/machinery/telecomms/server, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/caves/eta/storage) -"bAO" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/caves/eta/storage) -"bAP" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "darkish" +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/bigredv2/caves/eta/storage) -"bAQ" = ( -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"aZT" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aZU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/bigredv2/caves/eta/storage) -"bAR" = ( -/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"baj" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bay" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/area/bigredv2/caves/eta/research) -"bAS" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bAT" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/bigredv2/caves/eta/research) -"bAU" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/bigredv2/caves/eta/research) -"bAV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bAW" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bAX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/caves/eta/research) -"bAY" = ( -/obj/structure/machinery/light{ - dir = 4 + dir = 10 }, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bAZ" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bBa" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"baG" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 4 }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"baJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bBb" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"baO" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"baP" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"baZ" = ( +/obj/structure/surface/table, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_15"; + pixel_y = 10 }, -/area/bigredv2/caves/eta/xenobiology) -"bBd" = ( -/obj/structure/target, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"bbb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/bigredv2/caves/eta/xenobiology) -"bBe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/mars, +/area/bigredv2/outside/w) +"bbe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbf" = ( +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbi" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/caves/eta/xenobiology) -"bBf" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbj" = ( +/obj/structure/surface/table, +/obj/item/alienjar, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bbo" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbp" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 6 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/bigredv2/caves/eta/xenobiology) -"bBh" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbq" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 6 }, -/area/bigredv2/caves/eta/research) -"bBj" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBk" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBn" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbr" = ( +/obj/structure/surface/table, +/obj/item/storage/photo_album, +/obj/item/tool/pen/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bbC" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/biogenerator, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBo" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bbM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bBp" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bBq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBs" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor{ - icon_state = "dark" +/obj/item/device/flashlight, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/caves/eta/xenobiology) -"bBt" = ( -/turf/open/floor{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bbU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bBv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Eta Lab Maintenance Storage" + health = 80 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bca" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"bBA" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcv" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bBB" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcw" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 }, -/area/bigredv2/caves/eta/research) -"bBC" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bBH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = -30 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcC" = ( +/obj/structure/machinery/door_control{ + id = "Cargonia"; + name = "Storm Shutters"; + pixel_x = 32 }, -/area/bigredv2/caves/eta/research) -"bBI" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bcE" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/obj/item/prop/alien/hugger, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcF" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bBJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBK" = ( -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"bcQ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bcU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBO" = ( -/obj/structure/closet/toolcloset, /turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"bBP" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/research) -"bBQ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/research) -"bBS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Cell" +/area/bigredv2/outside/admin_building) +"bcV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bcY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bBT" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bda" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdb" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdh" = ( +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdi" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdr" = ( +/obj/structure/machinery/vending/snack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"bBU" = ( +/turf/open/floor, +/area/bigredv2/outside/admin_building) +"bdt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bdy" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"bBV" = ( +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdz" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bBW" = ( -/obj/item/tool/pen, +/obj/item/folder/red, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdA" = ( +/obj/structure/sign/prop1, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"bBX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdD" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bBY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bBZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdK" = ( +/obj/structure/largecrate, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdL" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bdW" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bCa" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bdY" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/caves/eta/xenobiology) -"bCb" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bec" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bed" = ( +/obj/effect/landmark/good_item, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bef" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bCc" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/eta/xenobiology) -"bCd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bei" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bes" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"bex" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves/eta/xenobiology) -"bCe" = ( -/obj/structure/surface/table, -/obj/item/alienjar, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bez" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beA" = ( +/obj/structure/machinery/light, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"beM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"beT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/eta/xenobiology) -"bCf" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beW" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table, -/obj/structure/xenoautopsy, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCg" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"beX" = ( /obj/structure/surface/table, -/obj/item/XenoBio/Blood, -/obj/item/XenoBio/Blood, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCi" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bCk" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bCl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bCm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Office Complex" }, -/area/bigredv2/caves/eta/research) -"bCn" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bfz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/eta/research) -"bCo" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/eta/xenobiology) -"bCp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/eta/xenobiology) -"bCq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/bigredv2/caves/eta/xenobiology) -"bCr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/bigredv2/caves/eta/xenobiology) -"bCs" = ( -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bfZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bCt" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgb" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/caves/eta/research) -"bCu" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bgG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bhi" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/c) +"bhj" = ( +/obj/structure/surface/table, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"bhr" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/se) +"bhE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bhG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/area/bigredv2/caves/eta/research) -"bCv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bhO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves/eta/research) -"bCw" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/mars, +/area/bigredv2/outside/c) +"bhP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bCx" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor{ +/turf/open/mars, +/area/bigredv2/outside/c) +"bhW" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + pixel_y = 3 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"bic" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars, +/area/bigredv2/outside/se) +"bie" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bin" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"biq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Xenobiology Lab" - }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/caves/eta/xenobiology) -"bCA" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bit" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"biG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"biJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/twohanded/lungemine{ + pixel_y = 8 }, -/area/bigredv2/caves/eta/xenobiology) -"bCC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/weapon/twohanded/lungemine{ + pixel_y = -7 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"biK" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/megaphone, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"biQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"bCE" = ( -/obj/item/stack/sheet/xenochitin, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCF" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"biV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/bigredv2/outside/c) +"bje" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bji" = ( +/obj/item/reagent_container/glass/bottle/tramadol, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bjo" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/plating, -/area/bigredv2/caves/eta/research) -"bCG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" +/area/bigredv2/outside/space_port_lz2) +"bjr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bjA" = ( +/turf/open/mars, +/area/bigredv2/outside/s) +"bjC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/eta/xenobiology) -"bCI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/s) +"bjM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/eta/research) -"bCJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bjN" = ( +/obj/effect/landmark/crap_item, /turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCK" = ( +/area/bigredv2/outside/space_port_lz2) +"bkn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkq" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars, +/area/bigredv2/outside/s) +"bkA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkB" = ( +/obj/structure/machinery/computer/arcade, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars, -/area/bigredv2/caves/eta/research) -"bCM" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bkP" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 5; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bkT" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bkU" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"bkY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"bld" = ( /obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/obj/item/xenos_claw, -/obj/structure/pipes/vents/pump{ +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blg" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blh" = ( +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCN" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCO" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCP" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCQ" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bli" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/area/bigredv2/caves/eta/xenobiology) -"bCR" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Eta Lab" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/living) -"bCS" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/area/bigredv2/caves/eta/research) -"bCT" = ( +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bll" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bCU" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blm" = ( /obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"bCV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCW" = ( +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"bln" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blo" = ( +/obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bCX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"blF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Air Filtration" }, -/area/bigredv2/caves/eta/living) -"bCY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"blG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/bigredv2/caves/eta/living) -"bCZ" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"blH" = ( +/obj/structure/machinery/light, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/lambda/xenobiology) +"blT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bma" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"bme" = ( +/turf/open/mars, +/area/bigredv2/outside/sw) +"bmn" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/bigredv2/caves/eta/living) -"bDa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bmM" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"bmO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bmT" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"bDb" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmV" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/bigredv2/outside/engineering) +"bmW" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bDc" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"bnI" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/e) +"boi" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"boA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_plant) +"boO" = ( +/obj/structure/machinery/door_control{ + desc = "A remote control-switch for opening the engines blast doors."; + id = "rad_door"; + name = "Reactor Radiation Shielding control"; + pixel_x = 30; + req_access_txt = "7" }, -/area/bigredv2/caves/eta/xenobiology) -"bDd" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"boP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/area/bigredv2/caves/eta/xenobiology) -"bDe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"bpa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bpf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"bpt" = ( +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"bpw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"bpA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"bpB" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_research) +"bpK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"bpR" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"bpW" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/item/organ/heart/prosthetic, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bqh" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Cell" }, +/turf/open/floor/delivery, /area/bigredv2/caves/eta/xenobiology) -"bDf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"bqo" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/sw) +"bqw" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/outside/admin_building) +"bqW" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"bqZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"brv" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"brB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/lambda/xenobiology) +"brD" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/filtration_cave_cas) +"brE" = ( +/turf/open/floor/greengrid, +/area/bigredv2/outside/filtration_cave_cas) +"brN" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Virology Lab" }, -/area/bigredv2/caves/eta/living) -"bDg" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"brQ" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"brV" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"brZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"bsg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bsp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/bigredv2/caves/eta/research) -"bDh" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/shard{ + icon_state = "small" }, -/obj/structure/machinery/teleport/station, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"bss" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/area/bigredv2/caves/eta/research) -"bDi" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"bst" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/area/bigredv2/caves/eta/storage) -"bDj" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"bsv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) -"bDk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars, -/area/bigredv2/caves/eta/xenobiology) -"bDl" = ( +"bsx" = ( +/obj/structure/closet/l3closet/scientist, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"bsH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"bsM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"bsW" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/area/bigredv2/caves/eta/xenobiology) -"bDm" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"btw" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"btT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/caves/eta/living) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"btV" = ( +/obj/structure/surface/table, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"buh" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"buk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"buA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/eta/living) -"bDo" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"buF" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Office" }, -/area/bigredv2/caves/eta/living) -"bDp" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"buN" = ( +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"bvh" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"bvv" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/cabinet, -/obj/item/disk/nuclear, -/obj/item/weapon/gun/pistol/vp70, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDq" = ( -/obj/structure/machinery/light{ +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"bvF" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/armband, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bDs" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) -"bDu" = ( +/turf/open/floor, +/area/bigredv2/outside/lz2_south_cas) +"bvJ" = ( /obj/structure/surface/table, -/obj/item/book/manual/nuclear, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDx" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDy" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"bvN" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bvP" = ( +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bvS" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/bigredv2/outside/lz2_south_cas) +"bvY" = ( +/turf/open/floor/plating, +/area/bigredv2/outside/eta) +"bwf" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"bwk" = ( /obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"bwv" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"bww" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bwA" = ( +/obj/structure/surface/table, /turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDz" = ( -/obj/structure/machinery/light{ +/area/bigredv2/outside/office_complex) +"bwE" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_north) +"bwK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bwO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/eta/living) -"bDC" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxc" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxe" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bDE" = ( -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDF" = ( -/obj/structure/machinery/vending/cola, /turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDG" = ( +/area/bigredv2/caves/eta/storage) +"bxf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) -"bDH" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDJ" = ( -/obj/structure/showcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/bigredv2/caves/eta/living) -"bDK" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/bigredv2/caves/eta/living) -"bDM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, /turf/open/floor, -/area/bigredv2/caves/eta/living) -"bDN" = ( +/area/bigredv2/caves/eta/storage) +"bxq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Research Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/living) -"bDP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Eta Lab Canteen" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/living) -"bDQ" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/living) -"bDR" = ( -/obj/structure/toilet{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/living) -"bDS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"bDT" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxK" = ( /obj/structure/machinery/light{ dir = 8 }, +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"bxU" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDV" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDW" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byx" = ( +/obj/structure/largecrate/mule, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bDX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEc" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"byH" = ( /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEd" = ( +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor, +/area/bigredv2/caves/eta/storage) +"byY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/bigredv2/caves/eta/living) -"bEe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bzm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAa" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/wy_mre, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/living) -"bEf" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAL" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bAY" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"bEg" = ( -/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bBv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBw" = ( +/turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) -"bEh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEi" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"bBN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bBO" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"bCD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"bCE" = ( +/obj/item/stack/sheet/xenochitin, +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/research) +"bCJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Eta Lab Restroom" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/living) -"bEk" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves/eta/xenobiology) -"bEl" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/bigredv2/caves/eta/living) -"bEm" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/bigredv2/caves/eta/living) -"bEn" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bEo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bCK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"bEq" = ( -/obj/structure/machinery/shower{ +/turf/open/mars, +/area/bigredv2/caves/eta/research) +"bDk" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/caves/eta/living) -"bEr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"bEt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bEv" = ( +"bDx" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" + dir = 1 }, +/turf/open/floor, /area/bigredv2/caves/eta/living) -"bEw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +"bDy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor, /area/bigredv2/caves/eta/living) -"bEx" = ( +"bDE" = ( +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/blood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/floor, /area/bigredv2/caves/eta/living) -"bEy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, +"bDF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"bDM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor, /area/bigredv2/caves/eta/living) "bEz" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bEA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEC" = ( -/obj/structure/machinery/light, -/obj/structure/closet/cabinet, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bED" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"bEE" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) "bEF" = ( /obj/structure/surface/table, /obj/item/trash/semki, /obj/structure/pipes/vents/pump, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bEG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Relaxation" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/living) "bEI" = ( /obj/structure/bed/chair/comfy/orange{ dir = 1 @@ -24628,468 +4272,792 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bEJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) -"bEK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bEN" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bEO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEP" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bEQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"bER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) "bES" = ( /obj/structure/machinery/light, /turf/open/floor, /area/bigredv2/caves/eta/living) -"bET" = ( -/turf/open/floor{ - icon_state = "delivery" +"bEY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/office_complex) +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bFe" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) "bFw" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/warehouse) +"bFL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"bFQ" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"bFR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"bFS" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"bGc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) "bGp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, /obj/item/tool/hand_labeler, /turf/open/floor, /area/bigred/ground/garage_workshop) -"bGL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"bGR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"bHC" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"bHR" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bHT" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/lz2_south_cas) -"bII" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"bHW" = ( +/obj/item/trash/pistachios, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"bId" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light/built, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"bIe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"bJz" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bIE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"bIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"bIU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"bJd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"bJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"bJo" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"bJA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"bJP" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "bJS" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"bKY" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/outside/filtration_cave_cas) -"bLA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) -"bMa" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" +"bKo" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"bKR" = ( +/obj/structure/platform{ + dir = 1 }, -/area/bigredv2/outside/admin_building) -"bMf" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"bLe" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"bLt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bMt" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bMz" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"bMP" = ( +"bMF" = ( /obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"bMT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"bMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"bND" = ( +/obj/structure/surface/table/woodentable, /obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"bNl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/lambda/xenobiology) -"bNE" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"bNU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/Court, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"bOy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"bOX" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"bPd" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, +/turf/open/floor/wood, /area/bigredv2/outside/marshal_office) -"bPy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"bPi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"bPG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"bPN" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/area/bigredv2/caves/mining) -"bQb" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"bPU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/outside/lz2_west_cas) +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) "bQe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"bQi" = ( -/turf/open/floor{ - icon_state = "darkish" +"bQu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/area/bigredv2/caves/lambda/virology) +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "bRd" = ( /obj/structure/cable{ icon_state = "1-4" }, /turf/open/floor/plating, /area/bigredv2/oob) -"bRm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"bRg" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/c) +"bRo" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"bRv" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/area/bigredv2/outside/lz1_telecomm_cas) -"bRK" = ( +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"bRT" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_east) +"bSo" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 8 - }, -/obj/item/tool/pickaxe/drill{ - pixel_y = -8 - }, -/obj/item/tool/pickaxe/drill, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"bSw" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "4-10" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"bSu" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"bSv" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "etatunnel_open" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bSA" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"bSB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/caves/mining) -"bTm" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/obj/item/device/flashlight/lamp{ - pixel_y = 15 +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"bSC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/bigredv2/caves/mining) -"bTt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"bSF" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"bTb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "bTV" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"bTW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"bUR" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_virology) +"bUS" = ( +/obj/structure/machinery/light/built{ + dir = 8 }, -/area/bigredv2/caves_se) -"bUn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/pipes/vents/scrubber/on{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"bVX" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"bUX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Toilet" }, -/area/bigredv2/outside/filtration_plant) -"bVZ" = ( -/obj/structure/machinery/door_control{ - id = "Filtration Plant"; - name = "Storm Shutters"; - pixel_x = -32 +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"bUY" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"bVB" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"bVK" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"bVO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Command Complex" }, -/area/bigredv2/outside/filtration_plant) -"bWk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"bWe" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"bWf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/bigredv2/outside/filtration_plant) -"bWl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/bigred/ground/garage_workshop) -"bXr" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"bWg" = ( +/obj/structure/machinery/compressor{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"bXA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"bWv" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"bWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bWD" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"bWJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"bXo" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"bXL" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) "bYa" = ( /obj/item/reagent_container/spray/cleaner, /turf/open/floor, /area/bigredv2/outside/cargo) -"bYp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/lz2_cave) +"bYg" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"bYr" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"bYA" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"bYR" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"bZd" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"bZi" = ( +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "bZp" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"bZL" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "whitepurplefull" +"cah" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/static_comms/net_two{ + broken_on_spawn = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"caI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"caY" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"cbi" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"cbk" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"cbr" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"cbB" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cbD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"cbE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"cca" = ( +/turf/open/floor/purplecorner/west, /area/bigredv2/caves/lambda/research) -"caD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"ccs" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/bigredv2/outside/s) -"cdA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ccB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"ccR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"cdk" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/bigredv2/outside/lz2_west_cas) +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"cdH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"cdT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"cdU" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "cec" = ( /obj/structure/bed, /obj/item/toy/plush/farwa, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"ced" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/gun/rifle/m41a/training, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"cew" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" }, -/area/bigredv2/caves/mining) -"cfr" = ( -/obj/item/explosive/grenade/baton{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"ceF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"ceP" = ( +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"cgt" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/dorms) -"cgv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"ceR" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"cgP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"ceS" = ( +/obj/item/tool/surgery/scalpel/laser/advanced, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"cff" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"chq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"cfj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_lambda) -"ciY" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Engineering Complex" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"cfz" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/bigredv2/caves/mining) -"cli" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"cfH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/outside/filtration_plant) -"clB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cfK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/bigred/ground/garage_workshop) -"cmC" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"cfR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"cfT" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"cmG" = ( -/obj/item/ore/iron{ - pixel_x = 6; - pixel_y = 9 +"cgE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"chf" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"chk" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"chS" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/space_port_lz2) +"cid" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ciq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"ciu" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"cjd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"cnk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform/kutjevo/rock{ +"cjg" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"cjh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"cjn" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"cjw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"cjE" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/platform/kutjevo/rock{ +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"cjZ" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz2_south_cas) +"ckp" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"ckQ" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside/lambda_cave_cas) +"ckT" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_lambda) +"clu" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo/rock{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"clQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"clV" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"clW" = ( +/obj/structure/machinery/door_control{ + id = "garage"; + name = "Garage Shutters"; + pixel_x = 26; + range = 500 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"cmM" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/space) +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"cnc" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "cns" = ( /obj/effect/landmark/nightmare{ insert_tag = "se-checkpoint" @@ -25097,119 +5065,203 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"cpc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"cnt" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 }, -/area/bigredv2/caves_se) +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars/mars_dirt_12, +/area/space) +"cnI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"cnK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/camera/oldcamera, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cnW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"cod" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/lz1_north_cas) +"cog" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"coz" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"coN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"cph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cpi" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "cpv" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"cqj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +"cpM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"cpY" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkish, /area/bigredv2/caves/eta/storage) -"cqZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"cqW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"cqY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" }, -/area/bigredv2/caves/mining) -"crv" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"crt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"crI" = ( /obj/structure/surface/table, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"crQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_virology) -"cse" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"crU" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"csB" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"crV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"csC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +"csa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"csO" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"ctk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"ctv" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 13 }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ctG" = ( +/turf/open/floor/darkyellow2, /area/bigredv2/caves/eta/research) -"csE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/lz1_telecomm_cas) -"ctT" = ( +"ctQ" = ( +/obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"cux" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -32 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"cua" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"cuR" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"cvC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cvV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"cwg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/buritto, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"cwi" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) -"cvi" = ( +"cxe" = ( +/obj/structure/bed/roller, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cye" = ( +/obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) -"cvF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"cxi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +"cyg" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/area/bigredv2/caves/eta/xenobiology) +/obj/structure/platform_decoration/shiva, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"cyo" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) "cyv" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_x = 3; @@ -25218,414 +5270,974 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"czV" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"cyw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"cyH" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"cyS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"cAs" = ( -/turf/open/floor{ +"cyZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "asteroidwarning" + name = "\improper Marshal Office Checkpoint" }, -/area/bigredv2/outside/filtration_cave_cas) +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"czk" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"czw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"czE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"cAg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"cAj" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cAn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) "cAN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"cBL" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 +"cBb" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"cBk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Access door" }, -/area/bigredv2/outside/engineering) -"cBZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cBp" = ( +/obj/structure/surface/table, +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic"; + pixel_y = 24 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cBu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cBK" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/xenobiology) +"cBQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) -"cCr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, -/area/bigredv2/caves_sw) -"cCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"cCv" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/s) +"cCI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"cDx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"cCK" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"cCO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; - name = "\improper Abandoned Mining Storage" + name = "\improper Engine Reactor" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"cDg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, -/area/bigredv2/caves/mining) -"cDH" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"cDP" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"cEZ" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"cFn" = ( +/obj/structure/surface/table, +/obj/item/storage/box/gloves, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"cFH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"cFP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/bigredv2/outside/engineering) -"cGQ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +/turf/open/floor/red/northwest, +/area/bigredv2/outside/marshal_office) +"cGd" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves) -"cGZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +/obj/item/trash/tray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"cGs" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"cGV" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"cGX" = ( +/obj/structure/largecrate/lisa, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"cHf" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = -32 }, -/area/bigredv2/outside/lz1_north_cas) -"cHn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"cHi" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"cHm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"cHu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/lz2_south_cas) +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/xenobiology) "cHy" = ( /obj/item/device/flashlight, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"cIq" = ( -/obj/structure/machinery/light{ - dir = 1 +"cHD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Storage" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"cIe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"cIf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/pinpointer, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"cIy" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"cIH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar" }, -/area/bigredv2/outside/lambda_cave_cas) +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) "cIP" = ( /obj/item/paper/bigred/smuggling, /turf/open/floor, /area/bigredv2/outside/cargo) -"cJa" = ( +"cJd" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"cJe" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"cJj" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/tool/extinguisher, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"cJk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"cJu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"cJy" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"cKk" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/door/window{ + layer = 4 + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"cKy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"cKN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"cLi" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"cLj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"cLo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"cLw" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_north) +"cLY" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cMi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"cMn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"cMH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Eta Lab Maintenance Storage" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"cML" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"cJh" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cNe" = ( /obj/structure/bed/chair{ - dir = 8; - pixel_x = 7; - pixel_y = 7 + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) +"cOd" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"cOn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/whiteyellow/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"cOq" = ( +/obj/structure/janitorialcart, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"cOt" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"cJA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"cOy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cPf" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"cPv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) -"cJG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +"cPF" = ( +/obj/structure/platform/shiva{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"cPO" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, +/turf/open/floor/delivery, /area/bigredv2/caves_north) -"cJN" = ( +"cPW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"cQY" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"cRN" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"cLJ" = ( +"cSp" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"cSs" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/caves_lambda) +"cSD" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/ne) +"cSF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/outside/engineering) -"cMW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"cTg" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"cTq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"cTW" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/sw) +"cUv" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"cUE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"cNH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" +/obj/structure/sign/safety/laser{ + pixel_y = 32 }, -/area/bigredv2/outside/bar) -"cOl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"cUF" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cUQ" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"cUU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Holding Cell" }, -/area/bigredv2/caves_research) -"cOt" = ( -/obj/structure/sign/poster/clf, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"cOJ" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"cUV" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"cUZ" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/research) -"cPZ" = ( -/obj/structure/window/framed/solaris/reinforced, +/obj/item/device/multitool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"cVd" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"cVf" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"cVh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/floor/plating, /area/bigredv2/caves/mining) -"cQi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "medbay-v3" +"cVP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"cVY" = ( +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"cWd" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"cWQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"cXb" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"cXE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) -"cQO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"cXJ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"cXY" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important items upon."; dir = 1; - name = "\improper Atmospherics Condenser" + name = "trophy board"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/oldresearch/Chitin{ + anchored = 1; + pixel_y = 27 }, -/area/bigredv2/outside/filtration_plant) -"cRP" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"cYc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"cYf" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"cYi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"cYm" = ( +/obj/item/paper/bigred/crazy, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cSu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/structure/prop/invuln/minecart_tracks{ +"cYF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/structure/machinery/firealarm{ + dir = 1 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cVd" = ( +"cYR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"cYT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"cZi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/virology) +"cZR" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"daa" = ( +/obj/item/clothing/shoes/galoshes, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"daP" = ( +/obj/effect/glowshroom, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"dbi" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/outside/telecomm/lz2_cave) +"dbn" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dbu" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"dbD" = ( +/obj/structure/window, +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"dbE" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"cVh" = ( +"dbH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_x = -1; + pixel_y = 14 + }, +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/tofu, +/obj/structure/cable{ + icon_state = "5-9" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dbZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ddf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"ddr" = ( /obj/structure/prop/invuln/minecart_tracks{ - dir = 1 + desc = "An exchange valve"; + dir = 8; + icon = 'icons/obj/pipes/filter.dmi'; + icon_state = "map"; + name = "Automated Valve" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dds" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" }, -/turf/open/floor/plating, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cVL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"ddH" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"ddK" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"ddL" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + dir = 8 }, -/area/bigredv2/caves_se) -"cVY" = ( -/turf/open/mars, -/area/bigredv2/outside/space_port_lz2) -"cXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"dee" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"deQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dfg" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, +/obj/item/ammo_magazine/pistol/m1911, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" +/obj/item/ammo_magazine/pistol/m1911, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dfE" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"dfJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"dfZ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"dgh" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"cXQ" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"dgu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_east) +"dgJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/bananapeel, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"cYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/hydroponics) -"cYJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz2_west_cas) -"daf" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"dbi" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/telecomm/lz2_cave) -"ddt" = ( -/obj/structure/machinery/light/small{ - dir = 1 + dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"dgM" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"ddG" = ( +"dha" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"dhl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dhp" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"dht" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"dhD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"dhZ" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 8; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"dil" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"dgy" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"diw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"diA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"diR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/outside/c) -"dhq" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"diU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/river, +/area/bigredv2/outside/c) +"djc" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"djE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-interior"; + name = "Lambda Checkpoint Interior"; + pixel_x = null }, -/area/bigredv2/outside/engineering) -"dhS" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"djQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"djS" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"djU" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) +"dkl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"dkJ" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"dkU" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 }, -/area/bigredv2/caves/mining) -"dij" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/machinery/door_control{ + id = "Bar Complex"; + name = "Storm Shutters"; + pixel_x = 32 }, -/area/bigredv2/outside/filtration_cave_cas) -"din" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor{ - icon_state = "podhatchfloor" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dkV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/admin_building) -"djr" = ( -/obj/structure/safe, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"dkY" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"dla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"dle" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"dlk" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, -/area/bigredv2/outside/admin_building) +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) "dlq" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"dlr" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor, -/area/bigredv2/outside/general_store) -"dlC" = ( -/obj/effect/decal/cleanable/dirt{ - pixel_x = 17 - }, +"dlQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"dmh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"dmq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"dmw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/bigredv2/caves/mining) +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) "dmB" = ( /obj/item/tool/pickaxe, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"dnV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +"dns" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Telecommunications" }, -/area/bigredv2/outside/filtration_plant) -"doc" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"dnv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"dnQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"dom" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) +"dop" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/virology) +"doq" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-eva" + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) "dot" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -25634,98 +6246,105 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"dov" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) -"dpv" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"dpF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"dqy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"dpq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) +"dpI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"drq" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"dpV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"dqk" = ( /obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"drF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"drT" = ( -/obj/structure/disposalpipe/broken{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"dql" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) -"drW" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"dsh" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/item/ammo_magazine/pistol/m1911, -/obj/structure/machinery/light{ - dir = 8 +"dqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"dqQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/mining) -"dtf" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor{ - dir = 10; - icon_state = "podhatch" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"drh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Technical Lab" }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) -"dtX" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"drH" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"drO" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"drQ" = ( +/obj/structure/machinery/door_control{ + id = "filtration"; + name = "Filtration Lockdown"; + pixel_x = 30; + throw_range = 15 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"dsg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves_north) +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"dsB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dsD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"dsG" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"dsH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dta" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"dtA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) "dtY" = ( /obj/structure/closet/secure_closet, /obj/item/explosive/plastic{ @@ -25746,41 +6365,48 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dua" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/eta) "duo" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"duw" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"duF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) -"dvB" = ( -/obj/item/ore/coal{ - pixel_x = 9; - pixel_y = 8 +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"dvb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-S" }, -/obj/item/ore/coal, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"dvK" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"dwo" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"dvE" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/engineering) -"dwL" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 +"dww" = ( +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"dwH" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/decal/cleanable/blood/oil/streak{ + pixel_y = 4 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) "dwO" = ( /obj/structure/machinery/light/small{ @@ -25792,15 +6418,6 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dxa" = ( -/obj/structure/machinery/power/geothermal{ - name = "Reactor Turbine"; - power_generation_max = 100000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/engineering) "dxe" = ( /obj/structure/closet/secure_closet/cargotech{ req_access = null; @@ -25808,22 +6425,53 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"dxV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"dxC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves_sw) +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"dyc" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"dyn" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"dyr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"dyu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "dyv" = ( /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"dyH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"dyx" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"dyJ" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" + }, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) "dyL" = ( /obj/structure/platform, /obj/structure/platform{ @@ -25834,155 +6482,212 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"dyR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"dyS" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Xenobiology" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"dzb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"dzw" = ( +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"dzN" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +"dzG" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"dzR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"dzU" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/outside/engineering) -"dzY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/darkblue2/east, +/area/bigredv2/outside/admin_building) +"dAa" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"dAj" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/outside/c) -"dAM" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"dAx" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"dAB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/outside/engineering) -"dBa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"dAX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"dBm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"dBE" = ( -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"dBc" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/s) +"dBi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves/mining) -"dCb" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/weapon/gun/launcher/grenade/m81/m79{ - pixel_x = -3; - pixel_y = -9 +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"dBj" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"dBw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Power Substation" }, -/obj/structure/cable{ - icon_state = "1-5" +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"dBB" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Canteen" }, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"dBT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/mining) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) "dCA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dEr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_se) -"dEu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"dEV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/lz2_south_cas) -"dFz" = ( -/obj/item/tool/pickaxe{ - pixel_x = -18; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"dFR" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 +"dCD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Eta Lab Restroom" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"dCZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"dDv" = ( +/obj/item/ore{ + pixel_x = -5; + pixel_y = 2 }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"dGl" = ( +"dDE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dDQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"dEa" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"dEd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"dFa" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_north) +"dFl" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"dFE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"dGQ" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;200" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"dFJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_x = -18 +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"dFN" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"dFZ" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"dGi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"dGj" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"dGv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/area/bigredv2/outside/telecomm) +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"dGN" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"dGX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"dHh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"dHn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) "dHr" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -25990,62 +6695,64 @@ }, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"dHH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +"dHu" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"dHY" = ( +/obj/item/paper/bigred/final, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) "dIb" = ( /turf/open/floor, /area/bigredv2/caves) -"dIx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"dIz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/caves_virology) -"dIG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ +"dIA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"dIC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"dIF" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dIN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"dIV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "dJc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/dorms) -"dJv" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"dJM" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"dJS" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"dJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"dKn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) "dKo" = ( /obj/item/ore/iron{ pixel_x = 6; @@ -26058,100 +6765,143 @@ /obj/item/ore/iron, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dKR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_lambda) -"dLe" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/outside/lambda_cave_cas) -"dMt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hazard{ - pixel_x = 8; - pixel_y = -32 +"dKy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"dKA" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"dKQ" = ( +/obj/item/folder/yellow, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) -"dMQ" = ( -/obj/item/frame/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"dLv" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"dLw" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/outside/filtration_plant) -"dNd" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dMy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dMG" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dNf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Biology Wing" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"dNs" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"dNL" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"dNn" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +"dOr" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/bigredv2/caves/eta/living) +"dOx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4 }, -/area/bigred/ground/garage_workshop) -"dNr" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"dOB" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + dir = 8 }, -/area/bigredv2/caves/mining) -"dOu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"dPQ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"dPT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/area/bigredv2/caves/mining) -"dPb" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/area/bigredv2/caves/mining) -"dPs" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dQK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"dQO" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) +"dQV" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"dRk" = ( +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"dRH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 }, -/area/bigredv2/caves/eta/xenobiology) -"dPC" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"dRI" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"dRO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"dQF" = ( -/obj/effect/spawner/random/tool, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"dRR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"dRT" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"dSe" = ( +/obj/structure/surface/rack, +/obj/item/device/camera_film, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) "dSg" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, @@ -26160,88 +6910,165 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"dUj" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"dSx" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"dSF" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dSP" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"dSQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dSS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"dUm" = ( -/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/virology) +"dSV" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_north) +"dTI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"dTU" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dUe" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"dUl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dUN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"dVa" = ( +/obj/structure/machinery/light/built{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"dUz" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"dVe" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"dVs" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"dVw" = ( +/obj/item/ore{ + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"dVA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"dWd" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"dWp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz2_south_cas) -"dWg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_12" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"dWw" = ( +/obj/structure/cable{ + icon_state = "5-6" }, -/area/bigredv2/outside/c) -"dXs" = ( -/obj/item/tool/pickaxe{ - pixel_y = 12 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"dWO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"dWW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/turf/open/floor/podhatch/northwest, +/area/bigredv2/caves/lambda/research) +"dXa" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"dXG" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_sw) +"dYo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"dXu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"dYr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"dYP" = ( +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/eta) -"dYa" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"dYX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"dZC" = ( -/obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/morgue{ + dir = 2 }, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"dZs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) -"dZO" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +"dZP" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"dZX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"eaj" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"eaE" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/n) +"eaG" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "eaP" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -26250,146 +7077,283 @@ }, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"eaW" = ( -/obj/structure/disposalpipe/segment, -/obj/item/frame/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/power/terminal{ - dir = 1 +"ebb" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"ebq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"ebN" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/paper, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"ecm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"ecp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/red/southeast, +/area/bigredv2/outside/lambda_cave_cas) +"ecF" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"ecJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"ebZ" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/storage) -"eci" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/outside/lz1_telecomm_cas) -"ecy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/item/trash/cigbutt{ - pixel_x = 7 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +"ecQ" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/area/bigredv2/caves/mining) -"ecK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves_east) -"ecX" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"ecZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"eda" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/largecrate, -/turf/open/floor{ +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"edb" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"edC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"edX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"eeb" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"eeg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigred/ground/garage_workshop) -"edL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" + name = "\improper Eta Lab Robotics" }, -/area/bigredv2/caves_sw) -"egI" = ( -/obj/item/ore, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"eeB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"eeD" = ( +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"eeJ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"eeR" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"eeT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"eeU" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"efd" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"efD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Xenobiology" + }, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"efT" = ( +/obj/structure/surface/table, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/obj/item/tool/pen, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"egj" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"egl" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz1_telecomm_cas) "egS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eiv" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"ejf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" +"ehn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ehu" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ehv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/bigredv2/outside/engineering) -"eju" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 2 +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"ehF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"ehH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/bigredv2/caves/mining) +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"ehQ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"ehR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"eil" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) +"eiK" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ejh" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/filtration_cave_cas) +"ejG" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) "ejP" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/se) -"ekV" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"eks" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ekz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ekO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 + }, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"elf" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +"eld" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"elh" = ( +/obj/structure/machinery/door_control{ + id = "Filtration Plant"; + name = "Storm Shutters"; + pixel_x = -32 }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"els" = ( -/obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"elo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/caves/mining) -"elM" = ( +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"elP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"elT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"elZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"emb" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"emh" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/caves/eta/living) -"emC" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"emD" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz1_north_cas) +"end" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "ene" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ @@ -26399,21 +7363,17 @@ /obj/item/reagent_container/food/snacks/cookie, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"ens" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +"enk" = ( +/obj/item/trash/eat, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"enx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "darkyellow2" +"ent" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "enD" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/cigarbutt{ @@ -26429,81 +7389,115 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eoU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, -/area/bigredv2/outside/admin_building) -"epe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"eql" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves/mining) -"erf" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/c) -"ers" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "etatunnel" +"eoi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"eoz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"ert" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"epa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"epi" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"eqo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"eqD" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"erA" = ( -/obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"eqF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Offices" }, -/area/bigredv2/caves/mining) -"erG" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"eqI" = ( +/obj/structure/disposalpipe/segment, +/obj/item/frame/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"erJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"erX" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +"erl" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/se) +"erE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"erT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"erZ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, -/area/bigredv2/outside/engineering) -"esg" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"esj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"esr" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"esS" = ( +/obj/structure/surface/table, +/obj/item/tool/screwdriver, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "yellow"; + phone_id = "Robotics" }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"esU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"eth" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"etB" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"etQ" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"etW" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) "eup" = ( /obj/structure/bed/chair, /obj/item/trash/cigbutt, @@ -26512,162 +7506,305 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"euF" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/lz2_south_cas) -"euO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/bigredv2/caves_research) -"euP" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"evG" = ( +/obj/item/stack/sheet/plasteel, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/obj/structure/closet/crate/miningcar/yellow{ - layer = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"evA" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"evW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"ewk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"ewD" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"ewI" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"ewT" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"exJ" = ( +/turf/open/floor/purple/north, /area/bigredv2/caves/lambda/research) -"evX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"exc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"eyW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/filtration_plant) -"ezQ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"eAB" = ( +"exP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eyr" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"eyz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"eyI" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"eyK" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"eAU" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"eyM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ezB" = ( +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -8; + pixel_y = 9 }, -/area/bigredv2/outside/eta) -"eBn" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = 4; pixel_y = 15 }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"eDd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ezZ" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"eAr" = ( +/obj/structure/surface/table, +/obj/item/weapon/baton, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"eAH" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"eBv" = ( +/obj/item/tool/wrench, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"eDb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Virology Lab Decontamination" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"eDc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"eDE" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"eDN" = ( +/obj/structure/bed, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) "eDS" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"eEm" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/floor{ - icon_state = "dark" +"eDU" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_lambda) +"eEd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/flask/detflask, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"eEl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) +/turf/open/floor/wood, +/area/bigredv2/outside/library) "eEy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) -"eER" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"eEG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Machine room" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"eFh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"eFf" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/space_port_lz2) +"eFk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/purple/east, +/area/bigredv2/caves/lambda/research) +"eFA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"eFQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"eFV" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whiteblue/east, +/area/bigredv2/outside/medical) +"eGt" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) -"eGa" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"eGG" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_research) -"eGb" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"eGI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 1 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/asteroidwarning, +/area/bigredv2/landing/console2) +"eGO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"eGP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/bigredv2/caves/mining) -"eGf" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"eGX" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"eHT" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"eIn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"eIv" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/bigredv2/caves_sw) -"eHA" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"eIC" = ( +/obj/effect/spawner/gibspawner/human, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"eIS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"eIW" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"eIX" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/east, /area/bigredv2/caves/eta/xenobiology) -"eJE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +"eJd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"eJf" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"eJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"eJN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/breakroom) +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"eKj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"eKl" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/surface/table, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"eKx" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"eKH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"eKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"eKR" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"eKU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"eKZ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"eLb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_east) +"eLc" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_plant) +"eLh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) "eLq" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -26677,100 +7814,259 @@ /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/cargo) -"eLt" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"eLw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) -"eLQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +"eLV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" }, -/area/bigredv2/outside/filtration_plant) -"eMX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"eLY" = ( +/obj/item/ore/coal{ + pixel_x = 9; + pixel_y = 8 }, -/area/bigredv2/caves_lambda) -"eNp" = ( +/obj/item/ore/coal, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"eMd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"eMx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"eMy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"eMI" = ( +/obj/item/reagent_container/glass/rag, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"eMQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eNm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"eNs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"eNw" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "eNx" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-cave-mushroom" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"eNN" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"eNB" = ( +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"eNG" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"eNJ" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"eOd" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"eNL" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"eNV" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"eNY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/outside/lz1_telecomm_cas) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"eOh" = ( +/obj/structure/curtain/medical, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"eOO" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"eOQ" = ( +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"ePc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"ePh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) "ePk" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) -"eRc" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +"ePs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"eRI" = ( -/turf/open/floor{ - icon_state = "delivery" +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/outside/c) -"eRW" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-eva" +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ePt" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/dorms) -"eSd" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"ePI" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"ePJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"ePP" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_lambda) +"eQc" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/item/device/flashlight/lamp, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"eQB" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"eRa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" }, -/area/bigredv2/caves/eta/storage) -"eSu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/caves/lambda/virology) +"eRe" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/tramadol, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"eRf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"eRh" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Engineering"; + name = "\improper Engineering Shutters" }, -/area/bigredv2/caves/mining) -"eSN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"eRF" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"eRG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eSk" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"eSs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"eTj" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars{ - icon_state = "mars_dirt_14" +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"eSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"eTg" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz1_north_cas) +"eTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/c) +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/virology) +"eTZ" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) "eUs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -26781,54 +8077,46 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eUu" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"eUT" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro-rock" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"eVo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/ammo_magazine/pistol/hp{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/ammo_magazine/pistol{ - pixel_y = -4 - }, +"eUF" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"eUS" = ( /obj/structure/cable{ - icon_state = "9-10" + icon_state = "1-6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/cable{ + icon_state = "1-9" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"eWd" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) +"eVI" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"eVP" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"eVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"eWe" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) "eWo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"eWL" = ( +"eWx" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"eWD" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) "eWP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, @@ -26839,20 +8127,84 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"eYW" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"eWQ" = ( +/obj/structure/machinery/computer/area_atmos{ + dir = 1 }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) -"eZk" = ( +"eWV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"eXz" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"eXF" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"eXQ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"eXS" = ( +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_id = "Workshop" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"eYe" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"eYo" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"eYq" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"eYP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"eYY" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/sw) +"eZf" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"eZh" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"eZt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/structure/xenoautopsy/tank/hugger, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/xenobiology) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -26863,224 +8215,342 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"eZy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"fbp" = ( +"eZD" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "grimy" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"eZJ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fal" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"fbF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"fbL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ +"faM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"faO" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"fbX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "darkyellow2" + name = "\improper Cargo Bay Offices" }, -/area/bigredv2/outside/filtration_plant) -"fdr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"fbY" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 }, -/area/bigredv2/caves_sw) +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"fcF" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/virology) +"fcV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fcW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"fdn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fdu" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) "fdy" = ( /turf/open/floor, /area/bigredv2/caves/eta/living) -"fev" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic Labs"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"feN" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" +"fdF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper General Store Storage" }, -/area/bigredv2/outside/space_port_lz2) -"feS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"fdT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/telecomm/n_cave) +"fec" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"feI" = ( +/obj/structure/girder/reinforced, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"ffg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ffk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/head/det_hat, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"ffB" = ( +/obj/structure/machinery/computer/communications{ + dir = 8 }, -/area/bigredv2/caves_sw) -"fgD" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Lambda Lab Server Room" +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"ffH" = ( +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"ffI" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"fgk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fgR" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/ne) +"fgV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -15 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"fgW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/area/bigredv2/caves/lambda/research) -"fhy" = ( -/obj/structure/bed/chair/comfy/blue{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"fha" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"fhd" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"fhe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"fhn" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fho" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/w) +"fhW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"fhI" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fid" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_north) +"fii" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"fij" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "fin" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) -"fiP" = ( -/obj/structure/machinery/power/breakerbox/activated, -/obj/structure/machinery/light{ - dir = 8 +"fiG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"fiU" = ( +/obj/structure/closet/jcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"fiR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"fjq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/outside/engineering) -"fjp" = ( -/obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_id = "Workshop" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"fjw" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fjz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"fjr" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"fjH" = ( +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) -"fjF" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/w) -"fjP" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves) -"flk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +"fjU" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"fjV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"flV" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"fke" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"fkk" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"fln" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"flu" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"flN" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"flP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/area/bigredv2/outside/engineering) -"fmd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"fma" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"fmo" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/general_store) -"fmn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_virology) -"fmA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"fmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/camera/oldcamera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"fmD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves/mining) -"fmX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"fmI" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat/orange{ + pixel_y = 10 }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"fnh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fmK" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Surgery" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"fmU" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"fnc" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/bigredv2/caves/eta/living) -"fnO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"fnv" = ( +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"fnC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"fnR" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"foB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" +"fnV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" }, -/area/bigredv2/caves_east) -"foT" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"fop" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"for" = ( +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"foQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/bigredv2/outside/e) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"foR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) "fpa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -27088,29 +8558,63 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"fpK" = ( -/obj/effect/decal/cleanable/dirt, +"fpk" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 10 }, -/area/bigredv2/outside/engineering) -"fqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"fpy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"fpJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "\improper Engine Reactor Control" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + name = "\improper Eta Lab Armory" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"fpQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"fqi" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"fqn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"fqv" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"fqF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/virology) +"fqJ" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_south_cas) +"fri" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"frA" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) "frH" = ( /obj/structure/platform, /obj/structure/platform{ @@ -27118,204 +8622,318 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"fst" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"ftq" = ( +"frS" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"frY" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/tool/extinguisher, +/obj/item/device/multitool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"fus" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/lz2_south_cas) -"fuZ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"fsf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fsy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"fsQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"fvb" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"fsV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"fte" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/lambda_cave_cas) +"fty" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"ftH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table, +/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ + pixel_y = 12 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fvu" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"ftJ" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"ftO" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -7 }, -/area/bigredv2/outside/lz2_south_cas) -"fvv" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/curtain/red, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, +/obj/item/tool/lighter/zippo{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ftV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"fwa" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"ftZ" = ( +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_y = -8 }, -/area/bigredv2/caves_virology) -"fwD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; +/obj/item/explosive/grenade/baton{ dir = 4; - health = 25000 + pixel_x = 9; + pixel_y = -8 }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" +/obj/structure/cable{ + icon_state = "4-10" }, -/area/bigredv2/outside/cargo) -"fwO" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" +/obj/structure/cable{ + icon_state = "4-5" + }, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"fur" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/oob) -"fwR" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"fvg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper{ + pixel_x = -7 }, -/area/bigredv2/outside/filtration_plant) -"fwS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering SMES" +/obj/item/prop/magazine/book/theartofwar{ + pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/pen{ + pixel_x = -7 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fvh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"fvj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"fvw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fvQ" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"fwd" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) "fwV" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/caves) -"fxh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) -"fxn" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +"fxk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/area/bigredv2/oob) -"fxK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 }, -/area/bigredv2/outside/lz1_telecomm_cas) -"fyp" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fxv" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/storage) -"fyw" = ( -/obj/structure/machinery/door_control{ - desc = "A remote control-switch for opening the engines blast doors."; - id = "rad_door"; - name = "Reactor Radiation Shielding control"; - pixel_x = 30; - req_access_txt = "7" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fxy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"fxO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"fxP" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"fxY" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"fyg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/research_and_development, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"fzg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"fyz" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fzv" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"fAl" = ( +/obj/effect/spawner/random/tool, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"fAF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, /area/bigredv2/caves/eta/living) -"fAb" = ( -/obj/structure/closet/l3closet/scientist, +"fAK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"fAQ" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"fAR" = ( +/turf/open/floor/darkpurple2/northwest, +/area/bigredv2/caves/lambda/research) +"fAS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"fBc" = ( +/obj/structure/pipes/standard/tank/phoron, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"fBg" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/surface/table, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"fBu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/eta/research) -"fAi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"fBy" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"fBO" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Xenbiology Lab APC" }, -/area/bigredv2/outside/medical) -"fBc" = ( -/obj/structure/pipes/standard/tank/phoron, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) +/obj/structure/machinery/door_control{ + id = "lambda"; + name = "Lambda Lockdown"; + pixel_y = -25 + }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) -"fCd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +"fCn" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fCq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"fCY" = ( -/obj/structure/machinery/computer/general_air_control, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"fDr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +"fCy" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"fCU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"fDA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"fDE" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) +"fEa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"fEv" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) "fEI" = ( /obj/structure/machinery/light{ dir = 4 @@ -27323,150 +8941,228 @@ /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/office_complex) -"fFG" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"fFO" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +"fFf" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"fFj" = ( +/obj/item/device/mass_spectrometer/adv, +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"fFx" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves/eta/research) +"fFK" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"fFS" = ( +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"fFZ" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fGe" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/telecomm/n_cave) +"fGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"fGM" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) -"fFY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "yellow"; - phone_id = "Filtration"; - pixel_y = 24 - }, -/turf/open/floor{ +"fGO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"fHi" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/eta) +"fHn" = ( +/obj/structure/bed/chair{ + buckling_y = 5; dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"fGN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" + pixel_y = 5 }, -/area/bigredv2/caves_research) -"fHF" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fHt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/weapon/baseballbat, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"fHy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"fHC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/xenobiology) +"fHL" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"fJH" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +"fIe" = ( +/obj/structure/platform/shiva{ + dir = 4 }, -/area/bigredv2/outside/eta) -"fKb" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"fIz" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fIP" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"fIT" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"fJb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/bigredv2/outside/engineering) -"fKW" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"fJe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"fLj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"fJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_virology) -"fLA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fJu" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/xenobiology) +"fJW" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"fKJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"fLR" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fKL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"fKS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Storm Shutters"; + pixel_x = -32 }, -/area/bigredv2/caves/mining) -"fLY" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - do_not_disturb = 1; - phone_category = "Lambda Labs"; - phone_color = "red"; - phone_id = "Secure Storage"; - pixel_x = -18 +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"fLb" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" +/obj/structure/machinery/light/built{ + dir = 1 }, +/turf/open/floor/darkish, /area/bigredv2/caves/lambda/breakroom) -"fMl" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves/mining) +"fLq" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"fLv" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"fLF" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"fMa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"fMJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) "fML" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"fMT" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +"fNf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"fOc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/outside/admin_building) +"fNK" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves_virology) -"fOo" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"fNV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"fOd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 14; - pixel_y = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/bigredv2/caves/mining) -"fOx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/red/southwest, +/area/bigredv2/outside/marshal_office) +"fOs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"fOF" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/bigredv2/outside/filtration_cave_cas) +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "fOM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -27474,338 +9170,656 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"fPh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"fPm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "fPB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"fQv" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"fPK" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"fRo" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +"fPL" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"fRH" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +"fQe" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "admin_pmc" }, -/area/bigredv2/caves_se) -"fRW" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/admin_building) +"fQw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"fSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"fQz" = ( +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"fQI" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/eta/xenobiology) +"fRb" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/area/bigredv2/outside/space_port) -"fST" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/window/reinforced/toughened, +/obj/structure/closet/crate/freezer, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"fRh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"fRi" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"fSY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +"fRk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"fRp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/outside/lz2_west_cas) -"fTq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"fUe" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"fRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"fRB" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"fRD" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz1_north_cas) +"fRI" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lambda_cave_cas) +"fSl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fSx" = ( +/obj/structure/morgue{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"fSB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"fUk" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = 7; - pixel_y = 12 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"fSL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"fSR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"fTd" = ( +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"fTj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/filtration_plant) -"fVU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Engineering Complex" +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"fTw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"fTS" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"fTY" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/marshal_office) +"fUb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"fUQ" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 }, -/area/bigredv2/outside/engineering) -"fWw" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"fUS" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/classic_baton, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"fVh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"fVj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves/eta/xenobiology) -"fXO" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light/built, -/turf/open/floor{ - dir = 6; - icon_state = "whitepurple" +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"fVD" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/n) +"fWp" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"fWu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"fWQ" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 }, -/area/bigredv2/caves/lambda/research) -"fYH" = ( -/turf/closed/wall/solaris/reinforced/hull, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"fYJ" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"fWV" = ( +/obj/item/reagent_container/spray/plantbgone, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"fXl" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"fXr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"fZg" = ( -/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"fXL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/se) +"fXM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"fXS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"fXU" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"fXX" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"fYa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"fYH" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/bigredv2/caves/mining) +"fZb" = ( +/obj/structure/machinery/light, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"fZv" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"fZB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"fZF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"fZX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"fZm" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/eta) -"gab" = ( +"fZZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"gai" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/s) +"gau" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/bigredv2/outside/engineering) -"gan" = ( -/obj/structure/platform_decoration/shiva{ +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"gaU" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/ripley, +/obj/item/toy/prize/mauler, +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/obj/structure/platform_decoration/shiva{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"gbs" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"gcd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/area/bigredv2/outside/engineering) -"gcR" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"gch" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"gcE" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"gcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Greenhouse Storage" }, -/area/bigredv2/caves_sw) +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) "gda" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) +"gdg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 + }, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"gdz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) "gdN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"gdV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +"gdX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"gdY" = ( +/obj/structure/machinery/alarm{ dir = 1; - name = "\improper Engineering Break Room" + pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"ged" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"gel" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"geM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"gfd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"geC" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"gfo" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"gfN" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"gfU" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"ggf" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Virology Lab Cell" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"ggg" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"ggA" = ( +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz1_north_cas) -"gfZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"ggC" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"ggD" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"ggO" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"ggX" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ggW" = ( -/turf/open/floor{ +"ghE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"gic" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "whitepurple" + health = 80 }, -/area/bigredv2/caves/lambda/research) -"gif" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/surface/rack, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"gid" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "gio" = ( /turf/open/mars_cave, /area/bigredv2/outside/filtration_cave_cas) -"giY" = ( +"giC" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"giQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"giT" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"giU" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"gjv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"gjz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"gjX" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"gkf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gks" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"gkA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"gke" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/s) -"gki" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"gkN" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"gkP" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = 7; + pixel_y = 7 }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"gkD" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"gll" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor{ - icon_state = "delivery" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, -/area/bigredv2/outside/cargo) +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"glp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"glu" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) "glB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) -"glN" = ( -/obj/structure/machinery/light{ - dir = 4 +"glZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"gmb" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/eta/research) +"gmy" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"gmG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"gmX" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/virology) +"gni" = ( +/obj/structure/pipes/vents/scrubber/on, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"gno" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/area/bigredv2/outside/engineering) -"gmN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/bigredv2/caves_lambda) -"gnk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"gnr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"gnw" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"gnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gnT" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"goc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/beach_ball, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"gnR" = ( -/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"god" = ( +/obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"goi" = ( +"goj" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"gok" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8; + pixel_y = 3 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gop" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) "gpg" = ( /turf/open/mars_cave, /area/bigredv2/caves_east) -"gps" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ore/diamond, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"gpt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"gpB" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves_research) +"gpn" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"gpI" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/library) "gpR" = ( /turf/open/gm/river, /area/bigredv2/outside/c) -"gpT" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"gqp" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_research) +"gqF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"gqQ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "eta"; + name = "Eta Lockdown" }, +/turf/open/floor/delivery, /area/bigredv2/outside/lz2_south_cas) "gqS" = ( /obj/structure/surface/table/reinforced/prison, @@ -27813,570 +9827,1261 @@ /obj/structure/machinery/light, /turf/open/floor, /area/bigred/ground/garage_workshop) -"grD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +"gqX" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) +"grb" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/area/bigredv2/outside/filtration_plant) -"grU" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +/obj/structure/machinery/door/window{ + dir = 8 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"grh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -30 }, -/area/bigredv2/outside/virology) -"gsW" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/machinery/light/built{ + dir = 1 }, -/area/space) -"gta" = ( -/obj/item/tool/lighter/random, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"grq" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"grG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"grP" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"grY" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"gtR" = ( -/obj/structure/filingcabinet/medical{ +/obj/structure/prop/server_equipment/yutani_server{ density = 0; - pixel_x = -8; pixel_y = 16 }, -/obj/structure/filingcabinet/medical{ - density = 0; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"gtC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"gtI" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Bar APC" }, -/area/bigredv2/outside/admin_building) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gtJ" = ( +/obj/structure/largecrate/supply/supplies, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"gtL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"gtU" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves) "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) -"guM" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"gtY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves_research) -"guR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"gua" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/window/reinforced{ + dir = 8 }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"gum" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"gvd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Lambda Lab Break Room" +"guo" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"guI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"guJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/lambda/breakroom) -"gwY" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"guK" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"gvw" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/s) +"gvA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"gvD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Medical Clinic Power Station" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"gwo" = ( +/obj/structure/machinery/photocopier, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gwD" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/sw) +"gwN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"gwS" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gxj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"gxw" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"gxO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"gyj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"gyn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"gyp" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gyD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gzd" = ( +/obj/structure/fence, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gAl" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"gAy" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/paper/bigred/crazy, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"gAA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"gAE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -9 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"gAL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"gAR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"gBh" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"gBm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gBy" = ( +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"gBH" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"gCh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"gxB" = ( +"gCj" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gCr" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"gCx" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"gCN" = ( /obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = -28 + }, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"gCW" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 }, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"gCX" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gCY" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"gDl" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"gxJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +"gDR" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"gEa" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"gEc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves_sw) -"gyf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"gEf" = ( +/obj/structure/machinery/processor, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"gEi" = ( +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"gEM" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"gEX" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/se) +"gFf" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"gFh" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = 5 }, -/area/bigredv2/outside/filtration_plant) -"gyJ" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/item/tool/pickaxe/plasmacutter{ + pixel_y = -5 }, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"gyL" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +"gFo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic CMO's Office" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"gFw" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"gFD" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gFF" = ( +/obj/structure/platform/shiva{ + dir = 8 }, -/area/bigredv2/caves/mining) -"gyU" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"gFK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"gGd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "crashlanding-offices" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"gGo" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Hydroponics" }, -/area/bigredv2/caves/mining) -"gzF" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"gGZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"gHe" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"gHj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gHS" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/area/bigredv2/outside/engineering) -"gzG" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; pixel_y = 18 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/item/weapon/gun/rifle/m41a/training, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"gAe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"gIm" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, -/area/bigredv2/outside/engineering) -"gAy" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gIs" = ( /obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"gIA" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/c) +"gID" = ( +/obj/structure/foamed_metal, +/turf/open/floor/whiteyellow/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"gIH" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gIK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/paper/bigred/crazy, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"gAE" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -9 +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"gCE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"gIQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves_east) -"gEx" = ( -/obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Space Port" +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"gIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"gJa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/bigredv2/outside/space_port) -"gGO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/caves/mining) -"gHH" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"gJs" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"gJt" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "gJw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/caves_virology) -"gKk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_4" +"gJD" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"gJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gJR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"gJW" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"gKC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"gKQ" = ( +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_virology) -"gKz" = ( -/obj/structure/closet/toolcloset, +"gLg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"gLy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gMz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gMJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ore/diamond, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gNc" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"gNp" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"gNH" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"gOd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"gKW" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"gOl" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"gOm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"gOo" = ( /obj/structure/barricade/handrail{ dir = 1; layer = 3.01; pixel_y = 9 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"gLV" = ( +"gOO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/compressor{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"gMt" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - icon_state = "darkyellow2" + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" }, -/area/bigredv2/outside/filtration_plant) -"gMK" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"gPP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/general_offices) -"gNj" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"gQm" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"gQq" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/eta/xenobiology) +"gQy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"gQO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"gNz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"gQR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"gRl" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -4; + pixel_y = 20 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gRm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) +"gRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"gNH" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"gOf" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/bigredv2/caves/eta/storage) -"gOr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"gRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves_research) -"gPE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/research) +"gRU" = ( +/obj/structure/machinery/light/built, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/area/bigredv2/caves/mining) -"gRj" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"gSe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/bigredv2/outside/engineering) -"gRx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"gSf" = ( +/obj/item/tool/pickaxe{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"gSl" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"gSo" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"gSp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; dir = 4; - icon_state = "darkyellow2" + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/area/bigredv2/outside/engineering) -"gSg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/cable{ + icon_state = "2-5" }, -/area/bigredv2/outside/se) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gSA" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) "gSB" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"gTD" = ( -/obj/structure/surface/table, -/obj/item/device/healthanalyzer, -/obj/structure/pipes/vents/pump, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic"; - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" +"gSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gTn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"gTA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/medical) "gTJ" = ( /obj/structure/machinery/autolathe, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"gTN" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/obj/structure/cable, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/oob) -"gTS" = ( +"gUn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"gUx" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"gUA" = ( +/turf/open/floor/whitepurplecorner/west, +/area/bigredv2/caves/lambda/xenobiology) +"gUB" = ( +/obj/structure/platform, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"gVj" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"gVX" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"gWs" = ( +/obj/structure/bed/stool, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"gWt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"gVm" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"gWM" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/bigredv2/caves/eta/research) -"gWr" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/bottle/toxin, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/bigredv2/outside/virology) -"gWU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/door/window{ + dir = 1; + opacity = 1 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/warnwhite, +/area/bigredv2/caves/lambda/virology) +"gXa" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) +"gXy" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) -"gXp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"gXz" = ( +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) +"gXI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/area/bigredv2/caves_lambda) -"gXs" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"gYe" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/area/bigredv2/oob) -"gXV" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"gYi" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"gYY" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_south_cas) +"gYZ" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 3; + pixel_y = 12 }, -/area/bigredv2/outside/engineering) -"gYl" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"gZL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/area/bigredv2/caves_virology) -"gYt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"gZT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves_sw) -"gZv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Xenobiology" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurple" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/bigredv2/caves/lambda/xenobiology) +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"gZU" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) "hag" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"hcb" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"hay" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"hba" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/outside/lz1_telecomm_cas) -"heG" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"hbf" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"hbB" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"hbP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"hbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"hbU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hca" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hcr" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/e) +"hcD" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"hcO" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"hcR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"hcU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"hdf" = ( +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) +"hdi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hdq" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"hdF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"hdR" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"her" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"heT" = ( /obj/structure/bed/chair{ - can_buckle = 0; dir = 4; - pixel_x = 2; - pixel_y = 6 + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"hff" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_lambda) +"hfm" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"hfw" = ( +/turf/open/floor/podhatch/north, +/area/bigredv2/caves/lambda/research) +"hfA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"hgt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"hgw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"hgG" = ( +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"hgU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"hhf" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"hhz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"hhC" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"hhQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"hik" = ( +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/outside/admin_building) +"hil" = ( +/obj/structure/prop/dam/crane, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"heI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "lambda"; - name = "Lambda Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves_lambda) -"heU" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/sw) -"hfB" = ( -/obj/item/ore{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"hiu" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"hiP" = ( +/obj/structure/sign/safety/one{ + pixel_x = 16 }, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"hfK" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"hiX" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/area/bigred/ground/garage_workshop) -"hgr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"hjs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"hjE" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) -"hgT" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"hjJ" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"hjN" = ( +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 20 }, -/area/bigredv2/outside/lz1_north_cas) -"hiP" = ( -/obj/structure/sign/safety/one{ - pixel_x = 16 +/obj/structure/mirror{ + pixel_y = 29 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"hiY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"hkf" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1entrance_v2" }, -/area/bigredv2/caves_sw) +/turf/open/mars, +/area/bigredv2/outside/nw) +"hkn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) "hkv" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) -"hkY" = ( -/obj/structure/machinery/light{ +"hlj" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"hlk" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/n) +"hlq" = ( +/obj/effect/landmark/crap_item, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"hlz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"hmm" = ( -/turf/open/floor{ - icon_state = "delivery" +"hlA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/research) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"hlK" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 13 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"hmq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"hmB" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/firealarm, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"hmC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) "hmJ" = ( /obj/item/weapon/gun/pistol/holdout, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"hmL" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +"hmM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hnm" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"hnu" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"hnH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/bigredv2/caves/mining) -"hnh" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"hnL" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"hnM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/area/bigredv2/caves_research) -"hoQ" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations" }, -/area/bigredv2/caves_sw) -"hoY" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/structure/cable{ - icon_state = "11-6" +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"hnP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Bar" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"hoc" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/warnwhite/southwest, +/area/bigredv2/caves/lambda/virology) +"hpf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" }, -/area/bigredv2/caves/mining) -"hpg" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"hpp" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/space_port_lz2) +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"hpr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Toilet" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "hpv" = ( /obj/structure/platform{ dir = 1 @@ -28389,77 +11094,142 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"hqC" = ( -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"hpD" = ( +/obj/structure/closet/crate, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"hpZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"hqD" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +/obj/structure/sign/prop3{ + pixel_y = 32 }, -/area/bigredv2/outside/lz2_south_cas) +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"hqJ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "vault_v2" + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "hqO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars, /area/bigredv2/caves_north) -"hqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"hqV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) -"hre" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"hrh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hri" = ( +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"hrt" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"hsu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Lockers" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"hst" = ( -/obj/structure/machinery/vending/coffee{ - icon_state = "coffee-broken"; - stat = 1 +"hsG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"hsK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2"; + pixel_x = -9; + pixel_y = 11 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1"; + pixel_x = 12; + pixel_y = 16 }, -/area/bigredv2/outside/engineering) -"hsJ" = ( -/obj/item/ore, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"htb" = ( +/obj/structure/foamed_metal, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"hto" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"hti" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"htL" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"htW" = ( /obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"hvJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/pickaxe/drill, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"huc" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"huh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Lambda Lab Prison Restroom" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"huk" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"huo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/outside/engineering) -"hvN" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"huP" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"huU" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"huW" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"hvh" = ( +/obj/structure/bed/chair, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"hvr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"hvs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "hvQ" = ( /obj/structure/machinery/light/small{ @@ -28467,323 +11237,622 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"hwe" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"hwc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"hwH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/obj/structure/mirror{ + pixel_x = 30 }, -/area/bigredv2/caves/mining) -"hwy" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"hxc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/research) -"hyv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Kitchen Storage" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"hxk" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"hxm" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"hxO" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"hya" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"hzg" = ( -/obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "1-9" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"hyc" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"hzk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"hyf" = ( +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"hyG" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 28; + req_access_txt = "106"; + specialfunctions = 4 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) "hzy" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"hzP" = ( -/obj/item/paper/bigred/final, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) +"hzL" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "hAj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave, /area/bigredv2/caves_research) +"hAn" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"hAs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"hAy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"hAQ" = ( +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"hBw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"hBx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) "hBD" = ( /obj/structure/bed/chair, /turf/open/floor, /area/bigred/ground/garage_workshop) -"hCO" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"hCT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -5 +"hBG" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"hBW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"hBX" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/s) +"hCt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"hCz" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"hCJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hDk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"hDD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"hEq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"hEz" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"hEt" = ( +/obj/structure/tunnel{ + id = "hole5" }, -/area/bigredv2/caves/mining) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) "hEC" = ( /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/lz2_south_cas) -"hEE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"hEG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"hEN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"hFr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"hFu" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hFy" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/n) +"hFW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/lz2_south_cas) -"hEK" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"hEQ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"hGi" = ( +/obj/structure/platform_decoration/shiva{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/platform_decoration/shiva{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"hFP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/shard{ + icon_state = "medium" }, -/area/bigredv2/caves/mining) +/obj/item/stack/cable_coil/random, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"hGv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Robotics" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) "hHb" = ( /obj/structure/sign/safety/ladder, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"hIU" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"hKl" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/goldschlager, +"hHn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"hHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"hHs" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"hHJ" = ( +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"hKt" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"hHO" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"hHP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"hIn" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"hIu" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"hIx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hIL" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"hJk" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"hKD" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hJq" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"hJx" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"hJW" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/caves_se) -"hKM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"hKe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"hKp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hKN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/bigredv2/caves_north) +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"hKY" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) "hLp" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"hLs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"hLS" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"hLW" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"hMi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"hMK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "4-10" + }, +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hMZ" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"hNr" = ( +/obj/item/storage/belt/grenade, +/obj/structure/closet/crate, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/lambda_cave_cas) -"hLS" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/wood, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hMa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"hNK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"hNg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"hOg" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkyellow2/west, /area/bigredv2/caves/eta/research) -"hOx" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) -"hOS" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/collectable/tophat/super, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" +"hOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"hOy" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"hOU" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"hPv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, /area/bigredv2/outside/general_store) +"hPy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"hPC" = ( +/obj/structure/machinery/teleport/hub, +/turf/open/floor/podhatch/southeast, +/area/bigredv2/caves/lambda/research) "hPH" = ( /obj/effect/decal/cleanable/dirt/greenglow, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/engineering) -"hPS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"hPK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"hPQ" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"hRy" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"hQu" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"hQB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hSs" = ( -/obj/structure/machinery/light, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" +"hQV" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"hRg" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"hRj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/xenobiology) +"hRr" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" }, -/area/bigredv2/outside/lambda_cave_cas) -"hSP" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"hSa" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"hTO" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" +"hSH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/camera_film, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"hSL" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"hSQ" = ( +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"hTh" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"hTw" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hTx" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hTX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" }, -/area/bigredv2/outside/virology) -"hUh" = ( -/obj/item/spacecash/c1, -/turf/open/floor/plating{ +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"hUn" = ( +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "platingdmg3" + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"hUP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hUK" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_west_cas) +"hUQ" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"hUS" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"hUU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/eta/xenobiology) +"hUY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"hVK" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, /obj/effect/decal/cleanable/dirt, -/obj/item/device/lightreplacer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"hWa" = ( -/turf/open/floor{ - icon_state = "dark" - }, +"hVQ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/research) -"hWM" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 15 +"hVU" = ( +/obj/structure/surface/table, +/obj/structure/window, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hVZ" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/bigredv2/caves/mining) -"hWQ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"hWc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"hYt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/camera/autoname{ - dir = 1 +"hWw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dormitories Tool Storage Maintenance" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"hWC" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"hWG" = ( +/obj/item/device/flashlight, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hXa" = ( +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 2; + pixel_y = -3 }, -/area/bigredv2/outside/engineering) -"hYI" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/area/bigredv2/outside/virology) -"hZc" = ( -/obj/structure/platform/shiva{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hXg" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"hXk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"hXB" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_sw) +"hXK" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/storage) +"hYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"hYM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"hYW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"hYX" = ( +/turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/research) "hZl" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -28796,6 +11865,24 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"hZr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"hZv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"hZO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) "ian" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/door_control{ @@ -28805,497 +11892,1017 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"iaw" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "iaN" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"iaX" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"iba" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"ibz" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/mining) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet7_3/west, +/area/bigredv2/outside/admin_building) "ibP" = ( /turf/open/floor/plating, /area/bigredv2/caves_research) -"ibZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves_sw) -"icQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"ica" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"icz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_sw) -"iep" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"idJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"iec" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"ief" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"ieh" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/virology) +"iev" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/computer3frame/wallcomp, +/obj/structure/cable{ + icon_state = "11-2" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ieD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/copper{ - pixel_y = 1 - }, -/obj/item/stack/sheet/mineral/osmium{ - pixel_y = 6 +"ieF" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -6 }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_y = 12 +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"ieR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/obj/structure/machinery/light/small, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"ieT" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/caves/mining) -"ifg" = ( +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"ife" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"ifq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + icon_state = "door_locked"; + id = "safe_room"; + name = "\improper Lambda Lab Director's Safe Room" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"ifv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"ify" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) -"ifF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +"ifW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"igq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"igD" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"igF" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"igH" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"igM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"ihs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/bigredv2/caves/mining) -"igU" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"ihX" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"iik" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"iiS" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"iha" = ( +"iiY" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ija" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"ijg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/item/stack/sheet/metal{ + amount = 30 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"ihW" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/eta) -"iiP" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +"iji" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ijw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/mineral/processing_unit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ijR" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Control Center APC" }, -/area/bigredv2/outside/engineering) -"ijU" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"ijX" = ( +/obj/item/ashtray/bronze{ + pixel_x = -7 }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 }, -/area/bigredv2/oob) +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"ikP" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"ikY" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/pen, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ild" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"ilf" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) "ilq" = ( /obj/structure/closet/secure_closet/injection, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ilO" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +"ils" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/mining) -"ilU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"ilv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/bigredv2/outside/medical) -"iml" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/bigredv2/caves_research) -"inx" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"ima" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"imy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"imH" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/filtration_cave_cas) +"imM" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"ing" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "inK" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/caves_sw) -"ioA" = ( -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = 4 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 - }, -/obj/item/tool/pickaxe, +"inP" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/virology) +"iot" = ( +/obj/structure/machinery/power/breakerbox/activated, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"ioS" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) "ipf" = ( /obj/item/device/flashlight/lantern{ pixel_x = -6 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"iph" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 +"ipp" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"ipB" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_north) +"ipK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"ipM" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Eta Labs"; + phone_id = "Observation"; + pixel_x = -18 }, -/area/bigredv2/caves/mining) -"ipU" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"ipV" = ( /obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"iqF" = ( -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"iqB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"irM" = ( -/obj/item/weapon/shield/riot, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"iqD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_research) +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"irc" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "irN" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"isr" = ( +"irS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E-corner" + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 32 }, -/area/bigredv2/caves_north) -"iuq" = ( +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"irY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"ish" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) +"isE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"isG" = ( +/obj/structure/fence, +/obj/structure/disposalpipe/segment, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"itg" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"itp" = ( /obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, -/turf/open/floor{ - icon_state = "white" +/obj/item/tool/extinguisher, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"itz" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/filtration_cave_cas) +"itF" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/area/bigredv2/outside/virology) -"iuu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"itG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"itI" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = 28 }, -/area/bigredv2/outside/lz1_north_cas) -"ivf" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"itK" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"itL" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"iuv" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"iuV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/bigredv2/outside/engineering) -"ivl" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"ivC" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_research) +"iwc" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, -/area/bigredv2/outside/engineering) -"iwG" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"iwh" = ( +/obj/item/ore{ + pixel_x = 9 }, -/area/bigredv2/caves_virology) -"iwW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"iwr" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"iwy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"ixA" = ( -/obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"iwD" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" }, -/area/bigredv2/caves/mining) -"ixR" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"ixe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"ixx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"ixz" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"ixO" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ixS" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"ixU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Relaxation Room" }, -/area/bigredv2/outside/lambda_cave_cas) -"ixY" = ( -/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"ixX" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/ne) +"ixZ" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"iyY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"iyw" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"iyx" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"iyy" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) +"iyJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"iyK" = ( +/obj/structure/platform{ + dir = 1 }, -/area/bigredv2/outside/lz1_north_cas) -"izh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"izJ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves_se) +/obj/item/tank/air, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"izU" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"iAd" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"iAf" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) "iAi" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"iAn" = ( +/turf/open/floor/whiteyellow/west, +/area/bigredv2/caves/lambda/xenobiology) +"iAr" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/s) "iAw" = ( /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"iAF" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"iAH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_sw) -"iDJ" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"iAK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/outside/space_port) +"iAL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"iAX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"iBa" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Cell" }, -/area/bigredv2/caves/mining) -"iDL" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"iBr" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iBy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"iBK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"iDT" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"iCL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"iDp" = ( +/obj/item/tool/pickaxe{ + pixel_y = -3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iEg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"iFl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"iFn" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"iFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"iDW" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"iFv" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/bigredv2/caves/eta/living) -"iEj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"iFH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"iFT" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) "iGK" = ( /turf/open/mars_cave, /area/bigredv2/caves_sw) -"iIe" = ( -/obj/structure/machinery/compressor{ - dir = 1 +"iGW" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"iHf" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"iIp" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "chapel" +/obj/item/trash/kepler, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"iHH" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "anomalybelt" }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/chapel) -"iIQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"iHQ" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"iJF" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = 12 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/sheet/wood, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"iHR" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 }, -/area/bigredv2/caves/mining) -"iKn" = ( -/turf/open/floor{ +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"iIb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"iIk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"iIr" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"iIV" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"iJR" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"iKj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"iKy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"iKH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories Tool Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"iLb" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "asteroidfloor" + name = "\improper Lambda Lab Cell" }, -/area/bigredv2/outside/lambda_cave_cas) -"iKv" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"iLj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"iLk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/bigredv2/outside/virology) -"iLs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/telecomm/lz2_cave) +"iLy" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"iLV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"iLu" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"iMi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Robotics" }, -/area/bigredv2/caves/mining) -"iNr" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"iMo" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"iMw" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"iOL" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"iMO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/caves_north) -"iPE" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"iMR" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"iNH" = ( +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"iNS" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"iOu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"iOB" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"iOQ" = ( +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"iOT" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"iPe" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"iPr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"iPy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"iPF" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"iPM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/xenobiology) +"iQf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) "iQw" = ( /obj/item/ore, /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"iQG" = ( +"iQE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"iQO" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"iRd" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; + name = "W-Y Enviorment Control System Control Panel" + }, +/obj/structure/cable{ + icon_state = "11-2" + }, +/obj/structure/cable{ + icon_state = "11-10" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iRe" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"iRh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Greenhouse Storage" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"iRq" = ( +/obj/item/tool/weedkiller, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"iRs" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"iRu" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"iRD" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"iRK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"iRQ" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 2 }, -/area/bigredv2/caves_research) -"iRf" = ( -/obj/structure/fence, -/turf/open/floor{ +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"iSd" = ( +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "asteroidfloor" + pixel_y = -30 }, -/area/bigredv2/outside/telecomm/n_cave) -"iRG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"iSh" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"iSo" = ( +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"iSB" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"iSN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/bigredv2/caves_research) -"iUe" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/lz2_cave) +"iTk" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"iTE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"iTQ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"iUx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) +"iUU" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/storage/box/stompers{ + pixel_y = 15 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "iVd" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -29312,202 +12919,324 @@ /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/se) -"iVz" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +"iVp" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"iVL" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"iVS" = ( +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"iXp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"iXN" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves/mining) -"iYH" = ( +"iVW" = ( +/obj/item/clothing/under/darkred, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"iWn" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"iWp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"iWv" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" + dir = 8 }, -/area/bigredv2/outside/engineering) -"iYR" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"iXf" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"iXo" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"iXA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"iXJ" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"iZc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"iXM" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"iXW" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"iXX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dormitories Storage" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"iYb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory" }, -/area/bigredv2/outside/admin_building) -"iZh" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"iYv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave, -/area/bigredv2/caves_north) -"iZi" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lambda_cave_cas) -"iZA" = ( -/obj/structure/surface/rack, -/turf/open/floor, -/area/bigredv2/caves) -"jbU" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"jcm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"jcn" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "tcomms" - }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"jcR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"jdj" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "crashlanding-offices" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"jdQ" = ( -/obj/structure/prop/dam/truck/mining{ - desc = "A crawler, imported from the Alpha Centauri colonies."; - dir = 1; - icon_state = "crawler_crate_alt"; - name = "crawler" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"iYE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"iYP" = ( +/obj/structure/xenoautopsy/tank/alien, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_3" +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"iYZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"iZo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"iZw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) -"jfr" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +"iZA" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/bigredv2/caves) +"iZJ" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"jaH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/se) -"jfv" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"jaJ" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"jgw" = ( +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/floor4, +/area/bigredv2/outside/marshal_office) +"jaL" = ( +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"jaP" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"jaY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jbg" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"jbh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/item/device/flashlight/flare{ + pixel_y = -7 }, -/area/bigredv2/caves/eta/xenobiology) -"jgW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jbr" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_north) +"jbJ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jci" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"jco" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"jcs" = ( +/obj/item/shard{ + icon_state = "small" }, -/area/bigredv2/caves_lambda) -"jhj" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jcN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"jdU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"jee" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"jey" = ( +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"jhM" = ( +"jfn" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/witness, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jfo" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"jgk" = ( +/obj/item/tool/wrench{ + pixel_x = -7; + pixel_y = -14 }, -/area/bigredv2/caves/mining) -"jiS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4 }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) -"jkn" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"jgG" = ( +/obj/structure/machinery/computer/station_alert, /obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -7 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jgI" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 }, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jhN" = ( +/obj/limb/arm/l_arm, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"jiu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/purple/northwest, +/area/bigredv2/caves/lambda/research) +"jiO" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/obj/item/tool/lighter/zippo{ - pixel_x = -1; - pixel_y = 14 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"jiP" = ( +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"jiU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/snack, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jjb" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"jjq" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"jjx" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jjK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"jjO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"jjU" = ( +/obj/structure/machinery/computer/med_data{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/plating{ +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jjW" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/lz1_north_cas) +"jka" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "platingdmg3" + health = 25000 }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"jko" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"jkr" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"jku" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"jkB" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"jkJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) "jkO" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"jlf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) +"jkR" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/caves/eta/research) "jlg" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -29515,242 +13244,430 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jna" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "darkred2" +"jlX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"jnR" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"jlY" = ( +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/bigredv2/caves/eta/research) -"jnV" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = 13 }, -/obj/structure/cable{ - icon_state = "2-9" +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"jmf" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/carpet10_8/west, +/area/bigredv2/caves/eta/living) +"jms" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/bigredv2/caves/mining) -"joa" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"jmt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/effect/landmark/nightmare{ - insert_tag = "dorms" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, /turf/open/floor, /area/bigredv2/outside/dorms) -"joi" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating, -/area/bigredv2/outside/telecomm/warehouse) -"jon" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" +"jmK" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/area/bigredv2/outside/admin_building) -"joC" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jno" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"jnp" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"jny" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"jnz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/medical) -"jpT" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/caves/eta/research) +"jnO" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/molten_item, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"jnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"jri" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"joJ" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"joL" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"jpu" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/lambda/xenobiology) +"jpC" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/n) +"jpM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"jqn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Abandoned Mining Storage" }, -/area/bigredv2/outside/engineering) -"jrA" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jqA" = ( +/obj/structure/xenoautopsy/tank/larva, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/xenobiology) +"jqL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/beaker/sulphuric, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"jrd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"jrq" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"jrF" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"jrB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jrQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"jsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/area/bigredv2/outside/filtration_plant) -"jrD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/bigredv2/caves_research) -"jrZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - icon_state = "darkyellow2" + name = "\improper Operations" }, -/area/bigredv2/outside/engineering) -"jsq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"jso" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jsr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"jsL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -4; + pixel_y = 7 }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"jsY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/caves/mining) -"jtC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"jtf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"jtL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/obj/item/restraint/adjustable/cable, +/turf/open/floor, +/area/bigredv2/outside/general_store) +"jtg" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jtX" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/bigredv2/outside/telecomm/warehouse) -"juo" = ( -/obj/structure/machinery/light{ - dir = 8 +"jti" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Technical Storage" }, -/turf/open/floor{ - dir = 9; - icon_state = "podhatch" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"jts" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"jty" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"jtN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"jtP" = ( +/obj/structure/surface/table, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"juf" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves/eta/research) +"jui" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) -"jvt" = ( -/obj/structure/lz_sign/solaris_sign, +"juk" = ( +/obj/effect/landmark/hunter_secondary, /turf/open/mars, -/area/bigredv2/outside/w) -"jvT" = ( -/obj/structure/machinery/light_construct{ - dir = 4 +/area/bigredv2/outside/space_port_lz2) +"juN" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 13 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"jvE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"jwj" = ( -/obj/structure/platform/shiva{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"jvJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"jwa" = ( +/obj/structure/machinery/light/small/built{ dir = 8 }, -/obj/item/disk, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"jwK" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_virology) +"jwN" = ( +/obj/structure/machinery/door_control{ + id = "safe_room"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -28; + req_access_txt = "106"; + specialfunctions = 4 }, -/area/bigredv2/caves/lambda/research) -"jyf" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"jxq" = ( +/obj/structure/machinery/light, +/obj/structure/closet/cabinet, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"jxr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"jxs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"jxt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Quartermaster" }, -/area/bigredv2/outside/engineering) -"jzD" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"jxE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkish" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"jxJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/bigredv2/caves/lambda/virology) -"jAo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"jya" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"jyj" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm) +"jyt" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/engineering) +"jyH" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jyY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"jzg" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) +"jzu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jzL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" }, -/area/bigredv2/caves_sw) -"jAN" = ( -/obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jzP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"jzZ" = ( +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"jAa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/caves/mining) -"jBq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/research) +"jAr" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/space_port_lz2) +"jAt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"jAP" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"jAS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/eta) -"jCg" = ( -/obj/effect/spawner/random/attachment, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"jAW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"jBa" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Communications Landing Zone" }, -/area/bigredv2/caves/mining) -"jCq" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"jBT" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 13 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"jDh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Crew Habitation Complex" }, -/obj/item/weapon/baton/loaded, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"jDm" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"jDn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"jCY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jDp" = ( +/obj/item/tool/warning_cone{ + pixel_x = -6 }, -/area/bigredv2/caves_virology) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) "jDy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -29761,145 +13678,264 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jEx" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves/mining) -"jEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Chief Engineer's Office" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"jGd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"jDF" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" }, -/area/bigredv2/caves_se) -"jGn" = ( -/obj/structure/machinery/door_control{ - id = "garage"; - name = "Garage Shutters"; - pixel_x = 26; - range = 500 +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jEd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"jEH" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"jEU" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"jFg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/bigredv2/outside/marshal_office) -"jGQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jFY" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/bigredv2/caves/mining) -"jGT" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"jGu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) -"jIf" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"jGx" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) +"jGz" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"jGD" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/paper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"jGN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"jGR" = ( +/obj/structure/barricade/metal{ dir = 4; - icon_state = "darkyellow2" + icon_state = "barricade" }, -/area/bigredv2/outside/filtration_plant) -"jIQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +/obj/structure/ore_box, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/research) +"jHt" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"jHD" = ( +/obj/structure/inflatable/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"jHK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"jHV" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"jHY" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"jIq" = ( +/obj/structure/cable{ + icon_state = "1-6" }, -/area/bigredv2/outside/lz1_north_cas) +/obj/structure/cable{ + icon_state = "6-8" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jIH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"jIK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"jIO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jJb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"jJe" = ( +/obj/item/grown/sunflower, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"jJf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) "jJB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"jJH" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +"jKd" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"jKg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/welding, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"jKi" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"jKE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"jLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jKI" = ( -/obj/structure/platform_decoration/shiva{ - dir = 8 - }, -/obj/structure/platform_decoration/shiva, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +"jLg" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/turf/open/floor/dark, /area/bigredv2/caves/lambda/research) -"jLP" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/bigredv2/outside/office_complex) -"jMm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"jLu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"jLy" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jLV" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 }, -/area/bigredv2/caves_sw) -"jOc" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "eta"; - name = "Eta Lockdown" +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"jLZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"jMl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/item/reagent_container/food/snacks/tofu{ + pixel_y = 11 }, -/area/bigredv2/outside/lz2_south_cas) -"jOh" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"jMp" = ( +/obj/effect/landmark/good_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"jML" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"jMP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"jMX" = ( +/turf/open/floor/rampbottom/north, +/area/bigredv2/outside/chapel) +"jNi" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"jNL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"jNQ" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) -"jOS" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = 5 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"jNU" = ( +/obj/structure/machinery/filtration/console{ + pixel_y = 13 }, -/obj/item/tool/pickaxe/plasmacutter{ - pixel_y = -5 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"jOa" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"jOd" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"jOj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jOM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"jOX" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 27 }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "jPm" = ( /obj/structure/bed/chair/office/dark{ @@ -29908,41 +13944,17 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jPD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"jPL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"jPV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) +"jPx" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) +"jPz" = ( +/turf/open/floor/purple/northeast, +/area/bigredv2/caves/lambda/research) +"jPU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "jPX" = ( /obj/item/ore/diamond{ pixel_x = 8; @@ -29951,182 +13963,287 @@ /obj/item/storage/firstaid/fire, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"jQS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +"jQk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"jQu" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) +"jQA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/oob) -"jRi" = ( -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 5; - pixel_y = -5 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"jQF" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/eta/xenobiology) +"jQJ" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"jQY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"jRv" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"jRE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"jRS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/weapon/gun/smg/bizon{ - pixel_x = 1; - pixel_y = 11 +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port) +"jSG" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "prison_breakout" }, -/obj/item/ammo_magazine/smg/bizon{ - pixel_x = 11; - pixel_y = -3 +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/marshal_office) +"jSS" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"jTq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"jTr" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"jTs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Director's Office" }, -/obj/item/ammo_magazine/smg/bizon, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"jTC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"jTO" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) "jUc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/hydroponics) -"jUM" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" +"jUe" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, -/area/bigredv2/outside/bar) -"jUW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"jUn" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"jUv" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"jUD" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"jUX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/obj/structure/cable{ - icon_state = "2-5" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) "jUY" = ( /turf/open/mars_cave, /area/bigredv2/caves/mining) -"jVr" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves/mining) -"jVN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"jVW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 +"jUZ" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"jVg" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"jVK" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"jVT" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"jWp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/bigredv2/caves/mining) -"jWj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"jWt" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"jWy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jWO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"jWs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"jWA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/lz2_south_cas) -"jWF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +"jXg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"jXn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"jXq" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"jXr" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"jXP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"jYb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"jXX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"jYe" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/caves_sw) -"jYD" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 9 +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"jZd" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"jZe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"jYE" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"jZf" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"jZo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"jYS" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/eta/research) +"jZr" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 32 }, -/area/bigredv2/caves/mining) -"jZp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"jZu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/outside/dorms) -"jZy" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"jZE" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"jZO" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_north) +"jZT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" }, -/area/bigredv2/caves/mining) -"jZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"jZY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"kam" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/n_cave) +"kas" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Chemistry Lab" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"kaY" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kbM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/eta/xenobiology) "kcb" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, @@ -30137,100 +14254,79 @@ /obj/item/weapon/broken_bottle, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kcZ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/filtration_cave_cas) -"kdf" = ( -/obj/item/tool/warning_cone{ - pixel_y = 17 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) -"kdh" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/sw) -"kdp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"kdr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/eta) +"kda" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"kdu" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) "keg" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) -"kek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ker" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) "key" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"keF" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"keH" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"keN" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"keO" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Virology APC" + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"keX" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"keY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "kfk" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"kfV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"kfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"kgn" = ( -/obj/item/paper/bigred/crazy, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"kfz" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kfL" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"kfR" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"kgI" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"kgw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/outside/lz2_west_cas) -"kgx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz2_south_cas) "kgN" = ( /obj/structure/platform{ dir = 1 @@ -30240,61 +14336,40 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"khl" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"khx" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) -"khy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/curtain/red, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"khK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"khP" = ( -/obj/structure/platform{ - dir = 1 +"kgY" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"khM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"khO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"khS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_virology) +"kiA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"khR" = ( -/obj/structure/machinery/floodlight, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"kiN" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Lambda Lab Server Room" }, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"kiO" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/space_port_lz2) "kiT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30302,548 +14377,1200 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"kjr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/powercell{ - pixel_x = 6; - pixel_y = 10 +"kjj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 32 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"kjk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"kjp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/bigredv2/caves/mining) -"kjT" = ( -/obj/item/ore{ - pixel_x = 13; - pixel_y = 12 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/area/bigredv2/caves/mining) -"kli" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"kjP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"klp" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 13 +"kjW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"kkc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"kku" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/telecomm/n_cave) +"kkx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/bottle/toxin, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"kkS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"kmb" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 4; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"kla" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"klc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kmm" = ( -/turf/open/floor{ - icon_state = "delivery" +"kle" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper General Store" }, -/area/bigredv2/outside/admin_building) -"knN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"klq" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"klF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"klH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"kmA" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"kmK" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"kna" = ( +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"kni" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" }, -/area/bigredv2/caves/eta/living) -"knX" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"knm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"knz" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"knK" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/item/tool/pen, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kom" = ( +/obj/item/device/flashlight, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"koo" = ( +/obj/structure/cable{ + icon_state = "5-8" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/cable{ + icon_state = "5-6" }, -/area/bigredv2/outside/filtration_plant) -"kok" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"koq" = ( +/obj/structure/machinery/light/built, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) -"kpf" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves_lambda) -"kpm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"kos" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"kqS" = ( -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"koN" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"koQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"kqV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 5; - pixel_y = 11 +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"koW" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/outside/lambda_cave_cas) +"koZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"kpn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"kpp" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"kpy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"kpB" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/ne) +"kpK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"kpW" = ( +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"kqU" = ( +/obj/structure/tunnel{ + id = "hole3" }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"krx" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +"krJ" = ( +/obj/item/clothing/suit/storage/labcoat/science, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"krU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/lz2_south_cas) +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "krW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/writing, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ktg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +"ksj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light/built{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"ksv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ksQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ktd" = ( +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/outside/admin_building) +"kte" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ktB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"ktD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/telecomm) -"ktE" = ( -/obj/item/tool/wrench{ - pixel_x = -7; - pixel_y = -14 +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"ktI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kun" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4 +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"kur" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"ktN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/filtration_plant) "kuu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kuw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) +"kux" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "kuU" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"kuZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"kvs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"kvx" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kvT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"kvp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"kwa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"kwc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"kwO" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"kxd" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"kvB" = ( -/obj/item/device/flashlight, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"kxe" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_cave_cas) +"kxn" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/bluegrid/damaged4, +/area/bigredv2/caves/lambda/research) +"kxz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"kwQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/outside/se) -"kwV" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"kxB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Anomaly Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"kxP" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ +/obj/item/tool/pen, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"kxS" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"kyb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"kyd" = ( +/obj/structure/tunnel{ + id = "hole4" + }, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"kyx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/device/defibrillator, -/turf/open/floor{ - icon_state = "whitegreenfull" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" }, -/area/bigredv2/outside/medical) -"kxi" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"kyB" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkredcorners2" +/obj/structure/closet/crate/trashcart, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"kzA" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 }, -/area/bigredv2/caves/eta/xenobiology) +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"kzS" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"kAb" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"kAe" = ( +/obj/structure/platform/shiva{ + dir = 1 + }, +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 8 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"kAf" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"kAr" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/se) +"kAu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"kAH" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"kAM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"kAO" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"kAW" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kBe" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) "kBn" = ( /turf/closed/wall/solaris, /area/bigredv2/caves) -"kBB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +"kBo" = ( +/obj/item/ore/gold, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_lambda) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kBD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/high_explosive/frag{ + desc = "High-Explosive Fragmenting-Antipersonnel. A small, but deceptively strong fragmentation grenade that has been phasing out the M15 fragmentation grenades alongside the M40 HEDP. Capable of being loaded in the M92 Launcher, or thrown by hand. This one seems to have weird insciptions all over it. You can barely make out 'PrAIs3 thE H3f@ G0d'" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "kBE" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kCe" = ( +"kBM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"kBZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"kCm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"kCq" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/mining) +"kCJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"kCL" = ( +/obj/structure/machinery/door_control{ + id = "General Store"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"kCQ" = ( +/obj/structure/bed, +/obj/item/prop/alien/hugger, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"kCR" = ( +/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kCU" = ( +/turf/open/mars_cave/mars_cave_12, +/area/bigredv2/caves_research) +"kCY" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kDh" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"kDx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"kDA" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"kDE" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"kDQ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/caves_lambda) +"kDT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"kDV" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6; + pixel_y = 10 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"kDb" = ( +"kDW" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"kDZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_south_cas) +"kEb" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"kEj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"kEp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"kEB" = ( +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 5; + pixel_y = -5 }, -/area/bigredv2/outside/cargo) -"kDs" = ( +/obj/item/weapon/gun/smg/bizon{ + pixel_x = 1; + pixel_y = 11 + }, +/obj/item/ammo_magazine/smg/bizon{ + pixel_x = 11; + pixel_y = -3 + }, +/obj/item/ammo_magazine/smg/bizon, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kEF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kEI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"kFi" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kFu" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"kFK" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"kFU" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kGi" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/virology) +"kGk" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 17 +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"kGt" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"kGL" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/item/reagent_container/food/snacks/jellysandwich/cherry, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/item/weapon/gun/rifle/mar40/lmg, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"kIk" = ( +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"kIn" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kIx" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"kID" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"kJt" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"kJu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kJv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"kJz" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"kFe" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"kGm" = ( +"kJE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"kGQ" = ( -/obj/structure/machinery/mill, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"kGU" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) -"kHK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/space_port_lz2) -"kIv" = ( -/obj/structure/curtain/red, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, +"kJO" = ( +/turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) -"kII" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark" +"kJU" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/outside/engineering) -"kIW" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"kKd" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, -/area/bigredv2/outside/se) -"kKs" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 3; + pixel_y = 15 }, -/area/bigredv2/outside/engineering) +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"kKe" = ( +/obj/item/paper/bigred/them, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"kKi" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"kKt" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) "kKx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kKB" = ( -/turf/open/floor{ - icon_state = "darkred2" +"kKz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"kKG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/eta/research) -"kLB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"kKW" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"kKY" = ( +/obj/structure/machinery/light_construct{ + dir = 4 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"kMs" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; - dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" - }, -/obj/structure/cable{ - icon_state = "1-9" +"kLi" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) +"kLI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/cable{ - icon_state = "1-4" +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"kMX" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz1_telecomm_cas) +"kMY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"kNj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"kNm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"kNJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"kNW" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"kNX" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/filtration_plant) +"kNZ" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"kOj" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/copper{ + pixel_y = 1 }, -/obj/structure/cable{ - icon_state = "4-5" +/obj/item/stack/sheet/mineral/osmium{ + pixel_y = 6 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/stack/sheet/mineral/platinum{ + pixel_y = 12 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kMJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"kOm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"kMO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"kOz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"kNc" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/item/tool/warning_cone, +/obj/structure/barricade/handrail/wire{ + dir = 1 }, -/area/bigredv2/caves_research) -"kNP" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"kOI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" + dir = 4 }, -/area/bigredv2/caves_lambda) +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) "kOK" = ( /obj/structure/closet/l3closet/virology, /turf/open/floor/plating, /area/bigredv2/outside/virology) -"kPu" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"kOR" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/pipes/valve/open, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"kPP" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 13 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"kOS" = ( +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"kOT" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"kOU" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/n) +"kOY" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"kPj" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/space_port_lz2) +"kPl" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"kPq" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"kPF" = ( +/obj/structure/window/reinforced/toughened{ + icon_state = "fwindow" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/window/reinforced/toughened{ + dir = 4 }, +/obj/structure/machinery/computer/pandemic, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"kPJ" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"kPY" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) "kQc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_east) -"kRo" = ( +"kQo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"kQv" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating, -/area/bigredv2/outside/telecomm/warehouse) -"kRA" = ( +/area/bigredv2/caves/lambda/xenobiology) +"kQJ" = ( /obj/structure/surface/table, -/obj/item/tool/lighter/random, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"kQV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"kQY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"kRy" = ( +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) "kRK" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"kSm" = ( -/obj/item/storage/belt/grenade, -/obj/structure/closet/crate, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, +"kRL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"kRR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"kRW" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"kRX" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"kSn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"kSp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"kSs" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"kSB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"kSK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"kTa" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) -"kSt" = ( +"kTs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/filtration_cave_cas) +"kTA" = ( +/obj/item/stool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"kTB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"kTN" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"kUe" = ( +/obj/structure/computer3frame/wallcomp, /obj/structure/cable{ icon_state = "11-2" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kSH" = ( -/obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +"kUM" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"kSL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/filtration_cave_cas) -"kTs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor, -/area/bigredv2/outside/filtration_cave_cas) -"kUW" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +"kUV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/caves/lambda/virology) +"kUX" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"kVu" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, -/area/bigredv2/outside/filtration_plant) -"kVS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves/mining) +"kVR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) -"kVY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"kVV" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/space_port_lz2) +"kWd" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"kWi" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"kWF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"kWL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"kWP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"kXv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"kXy" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"kWl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +"kYa" = ( +/obj/structure/platform_decoration/shiva{ dir = 1 }, -/obj/item/tank/air, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"kWA" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/platform_decoration/shiva{ + dir = 4 }, -/area/bigredv2/outside/dorms) -"kWV" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"kYs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"kYd" = ( -/turf/closed/wall/solaris/reinforced/hull, +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"kZa" = ( +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/e) "kZG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/bible/hefa, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"laj" = ( -/obj/structure/tunnel{ - id = "hole5" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"kZO" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/bigredv2/caves_lambda) -"lbH" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"kZQ" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) +"lah" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "W-corner" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"lam" = ( +/obj/item/tool/weldpack, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"las" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"laC" = ( +/obj/item/stack/sheet/wood, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"laJ" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"laS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"lbz" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"lbX" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) "lbZ" = ( /obj/item/frame/rack, /obj/effect/decal/cleanable/dirt, @@ -30859,6 +15586,16 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"lca" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"lcl" = ( +/obj/structure/sign/safety/electronics{ + pixel_y = 32 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "lcu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/cigarette, @@ -30871,76 +15608,265 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"lcW" = ( +"lcy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lcB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"lcP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"ldc" = ( +/obj/structure/largecrate/mule, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"ldV" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"leD" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"leT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"lfk" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"lfG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"lgq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" + }, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"lgr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"lgB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/access_button/airlock_interior{ + master_tag = "viro_controller"; + pixel_y = 28 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"lgD" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"lgZ" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lhg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"lhk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"lhU" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"lic" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"lin" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lip" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"liL" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 11 }, -/area/bigredv2/outside/engineering) -"ldh" = ( -/obj/item/device/flashlight/on{ - pixel_x = 8 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"liR" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ljj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/oob) -"lhh" = ( -/obj/structure/fence, -/obj/structure/disposalpipe/segment, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ljo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"ljv" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"ljC" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"lhE" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Control Module"; - pixel_y = 15 +"ljR" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"ljV" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"lkg" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"lkn" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"lkz" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"lkO" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/research) +"llh" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/scrubber/on{ + dir = 1 + }, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) +"llk" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Always returning. Always watching."; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, -/area/bigredv2/caves/mining) -"llD" = ( -/obj/structure/machinery/light{ +/obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"llS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/mars_cave/mars_cave_2, +/area/space) +"llo" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper massive vent"; - pixel_x = -15 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"llM" = ( +/obj/structure/showcase{ + icon = 'icons/obj/structures/machinery/research.dmi'; + icon_state = "d_analyzer_la" }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/bigredv2/oob) +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) "lmg" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"lms" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"lom" = ( -/obj/effect/landmark/corpsespawner/miner, +"lmk" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lmp" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"lmr" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"lmG" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"lmJ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"lmR" = ( +/obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; @@ -30948,107 +15874,270 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/obj/item/weapon/baton/loaded, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"lpu" = ( +"lnd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"lnv" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_north) +"lnD" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/bigredv2/outside/engineering) +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"lnR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"loe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"lon" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 9 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"loU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wetleather, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"lpl" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"lpA" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"lpB" = ( +/turf/open/floor/darkgreen2, +/area/bigredv2/caves/lambda/virology) +"lpQ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_lambda) +"lpR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"lpY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"lqa" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"lqt" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"lqG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"lqI" = ( +/turf/open/floor/bluegrid/damaged5, +/area/bigredv2/caves/lambda/research) +"lqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"lqS" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) "lrb" = ( /obj/structure/filingcabinet, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"lrH" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz1_telecomm_cas) -"lrJ" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" +"lrc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/area/bigredv2/caves/lambda/virology) -"lrW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 1; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"lrp" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/weapon/gun/launcher/grenade/m81/m79{ + pixel_x = -3; + pixel_y = -9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/cable{ + icon_state = "1-5" }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lsd" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark" +"lrB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"lsm" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"lrE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"lse" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"lsq" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"lsf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) -"lst" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +"lsL" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/caves/eta/xenobiology) +"lsM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/eta/research) -"ltf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"ltw" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"ltu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/starshiptroopers, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"ltF" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"ltH" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"ltG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"ltK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"ltQ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"lve" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/filtration_cave_cas) +"lvy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars, +/area/bigredv2/outside/se) +"lvL" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 5; + pixel_y = 11 }, -/area/bigredv2/outside/filtration_plant) -"luA" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/plating{ +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"lvM" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lwn" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/grown/log, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"lwC" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lwG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"lwL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Server" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"lwY" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"lxi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"lxl" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"lxE" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "platingdmg3" + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lvh" = ( +"lxM" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"lxX" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz2_south_cas) +"lyd" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/n) +"lyi" = ( /obj/item/weapon/gun/rifle/m4ra, /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ @@ -31058,72 +16147,71 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) -"lvo" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"lvy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"lwT" = ( -/obj/structure/machinery/light{ +"lyj" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigred/ground/garage_workshop) -"lwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_sw) -"lxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/bigred/union, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"lyk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lyn" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore{ + pixel_y = 5 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lyx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"lzB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Lockers" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lyz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"lyB" = ( +/obj/structure/barricade/metal{ + dir = 4; + icon_state = "barricade" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"lyG" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"lzz" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"lzH" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) "lzI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) -"lAK" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"lzM" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"lzN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/bigredv2/outside/telecomm/lz2_cave) +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"lzU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"lBa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) "lBc" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/c) @@ -31131,16 +16219,37 @@ /obj/structure/sign/poster/safety, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"lBx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Machine room" +"lBN" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/virology) +"lBO" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/machinery/door_control{ + id = "Library"; + name = "Storm Shutters" }, -/area/bigredv2/caves/mining) +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lBR" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"lCc" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"lCQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "lCR" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/flask/vacuumflask{ @@ -31157,395 +16266,570 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"lDa" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" +"lDN" = ( +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"lDV" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"lEn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/library) -"lEw" = ( -/obj/item/tool/pickaxe{ - pixel_y = -3 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"lEr" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"lEO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -5; + pixel_y = 10 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lGt" = ( -/turf/open/floor{ - icon_state = "delivery" +"lFb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lFe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"lFq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"lFt" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/shower{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"lFU" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, /area/bigredv2/caves/eta/living) -"lIe" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"lFV" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"lGa" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"lIL" = ( -/obj/structure/sign/safety/fire_haz, -/turf/closed/wall/wood, -/area/bigredv2/caves/mining) -"lKw" = ( -/obj/item/paper/bigred/walls, +/obj/item/tool/hand_labeler, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"lGf" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"lGk" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"lKS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/bigredv2/outside/engineering) -"lLf" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"lGE" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"lLr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"lLv" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 +"lGZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = -32 }, -/area/bigredv2/caves/eta/xenobiology) -"lLC" = ( +/obj/structure/machinery/light, /obj/structure/machinery/door_control{ - id = "filtration"; - name = "Filtration Lockdown"; - pixel_x = 30; - throw_range = 15 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"lMg" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"lMt" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargo" - }, -/turf/closed/wall/solaris, -/area/bigredv2/outside/cargo) -"lMw" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/caves_lambda) -"lMB" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1cave" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/space_port) -"lMC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"lNd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" + id = "viro_q"; + layer = 4; + name = "Qurantine Lockdown"; + normaldoorcontrol = 1; + pixel_x = -25; + req_access_txt = "7"; + specialfunctions = 4 }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"lHB" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"lIb" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"lOx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/filtration_plant) -"lOz" = ( -/obj/structure/reagent_dispensers/fueltank, +"lIw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lIG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"lOO" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"lIL" = ( +/obj/structure/sign/safety/fire_haz, +/turf/closed/wall/wood, +/area/bigredv2/caves/mining) +"lJI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"lJP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"lPa" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"lPh" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = 3; - pixel_y = 12 + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"lLI" = ( +/obj/structure/closet/crate/miningcar/yellow, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"lPG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" +"lLM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Operations" }, -/area/bigredv2/outside/engineering) -"lPL" = ( -/obj/structure/platform/shiva{ - dir = 4 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"lLV" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/shard{ - icon_state = "medium" +/obj/item/tool/pen, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"lLZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"lMx" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_sw) +"lMF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"lNR" = ( +/obj/structure/machinery/computer/general_air_control{ + dir = 8; + pixel_y = 6 }, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"lNT" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) -"lQN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/outside/lz2_south_cas) -"lQU" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/virology) -"lRt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/engineering) -"lRu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"lSm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "small" +"lOn" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/s) +"lOt" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"lOv" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"lPj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"lPv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"lPV" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window{ + dir = 8 }, -/area/bigredv2/caves/mining) -"lSH" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lQd" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"lQk" = ( +/obj/item/ore/iron{ + pixel_x = 6; + pixel_y = 9 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"lSL" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"lSS" = ( -/obj/item/tool/warning_cone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"lTM" = ( -/obj/effect/spawner/gibspawner/human, +"lQC" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/lz2_south_cas) +"lQQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/tonic, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lQY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - name = "\improper Atmospherics Condenser" + name = "\improper Lambda Lab Surgery" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"lRf" = ( +/obj/effect/spawner/random/tool, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"lRG" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"lRI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"lRL" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) -"lUd" = ( +"lSo" = ( +/obj/structure/barricade/wooden, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/c) +"lSp" = ( +/obj/item/shard, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"lSu" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/eta/research) +"lSO" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/lz2_west_cas) +"lSQ" = ( +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/research) +"lTk" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_lambda) +"lTp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_se) +"lTt" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"lTB" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lTR" = ( +/turf/open/floor/whitegreen/west, +/area/bigredv2/caves/lambda/xenobiology) +"lTU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"lUa" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"lUi" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/caves/eta/xenobiology) -"lUk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" +"lUj" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"lUr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"lUv" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"lUO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/eta/research) +"lUV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/bigredv2/outside/engineering) -"lUq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"lVi" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/asteroidwarning/northeast, +/area/bigred/ground/garage_workshop) +"lVk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/uranium{ + desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; + pixel_x = -7; + pixel_y = 4 }, -/area/bigredv2/caves_se) -"lVr" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"lWc" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"lWe" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"lWo" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"lWF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/caves/lambda/breakroom) -"lWA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"lXn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz2_south_cas) -"lWE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"lXq" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/door/window{ + layer = 4 }, -/area/bigredv2/caves_sw) -"lYi" = ( +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"lXE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"lXJ" = ( /obj/structure/ore_box, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lYC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" +"lYj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior"; + pixel_x = null }, -/area/bigredv2/caves/mining) +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"lYK" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/ne) +"lYR" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) "lYZ" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"lZL" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"lZV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +"lZt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"lZu" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Control Module"; + pixel_y = 15 }, +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"mae" = ( +"lZZ" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"mag" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) "maF" = ( /obj/item/frame/rack, /obj/effect/landmark/good_item, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mdU" = ( -/obj/structure/machinery/power/apc{ +"maG" = ( +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"maX" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"mcr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"mcF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mdp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"mdv" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/caves_north) +"mdw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - start_charge = 0 + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/obj/structure/bed/chair{ + dir = 1 }, -/area/bigredv2/outside/telecomm/lz2_cave) -"men" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"meH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"meL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/darkblue2, +/area/bigredv2/caves/eta/research) +"meO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) "meT" = ( /turf/open/mars, /area/bigredv2/outside/eta) -"mfw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) -"mhp" = ( +"meX" = ( /obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"mhF" = ( -/obj/structure/machinery/light{ +/obj/structure/window{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/surface/table/woodentable, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 11 }, -/area/bigredv2/outside/dorms) +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mfe" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"mfk" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mgm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"mgx" = ( +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/research) +"mhB" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz2_south_cas) +"mhD" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/space_port_lz2) "mhG" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = -3 @@ -31555,140 +16839,290 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"miA" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +"mio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"miB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"miD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) +"miY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) "mjc" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"mjh" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "mji" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Engineering Workshop" }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mjr" = ( +"mjK" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz1_telecomm_cas) +"mjS" = ( +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mkl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mkx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"mmg" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mkz" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/se) +"mkX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "workshop_br_g"; + name = "\improper Workshop Garage" + }, +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"mlk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"mln" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"mls" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves/lambda/xenobiology) +"mlK" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"mlP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 11 +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"mmc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/clipboard, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"mmu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/mining) -"mnb" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"mmJ" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_research) +"mmY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Virology Quarantine" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"mng" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/recharger, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"mnn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/red, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) -"mon" = ( +"mnu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"mnw" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"mnK" = ( +/obj/structure/machinery/computer/area_atmos/area, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"mnV" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"moc" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"mog" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"moW" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mpb" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"mpe" = ( +/obj/item/alien_embryo, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mpt" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"mpx" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"mpO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"moE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_research) -"mqf" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"mpR" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"mpV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" }, -/area/bigredv2/caves/mining) -"mqX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"mqa" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"mrH" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor{ - icon_state = "podhatchfloor" +"mqH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 }, -/area/bigredv2/outside/admin_building) -"mrS" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mqK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"mqM" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 }, -/area/bigredv2/oob) -"msf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"mqP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/xenobiology) -"msq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"mqU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/bigredv2/outside/hydroponics) -"msS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mre" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"mrr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigred/ground/garage_workshop) -"mts" = ( -/obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"mrt" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/s) +"mry" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/filtration_cave_cas) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"mrL" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/eta/research) +"msh" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/rifle/m41a/training, +/obj/effect/spawner/gibspawner/human, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"msl" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"msB" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/admin_building) +"msD" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/outside/n) +"msJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mtn" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "mtL" = ( /obj/structure/bed/chair/office/dark{ dir = 4; @@ -31697,54 +17131,160 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"mtZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"muy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/teleport/station, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"muF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) "muP" = ( /turf/closed/wall/wood, /area/bigredv2/caves_research) -"mxf" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +"mvi" = ( +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/filtration_cave_cas) -"mya" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"mvk" = ( +/obj/structure/largecrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"mvE" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"mwy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/bigredv2/caves_east) -"myc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 18; - pixel_y = 11 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"mwD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = -5; - pixel_y = 4 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"mwY" = ( +/obj/item/folder/yellow, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"mxg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mxu" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_sw) +"mxA" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"mxC" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"mxV" = ( +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"mxY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"myd" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"myz" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"myC" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"myG" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"myP" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"mys" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"myY" = ( -/turf/open/floor{ - icon_state = "delivery" +"mzl" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"mzt" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"mzG" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"mzS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"mAe" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/n) +"mAl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mAv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"mAO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"mAR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mAT" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) "mBo" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_x = -7; @@ -31752,122 +17292,127 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mBs" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) +"mBz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"mBC" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) "mBI" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor, /area/bigred/ground/garage_workshop) -"mCe" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark" +"mBM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/bigredv2/outside/engineering) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) +"mCF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"mCX" = ( +/obj/effect/decal/cleanable/dirt{ + pixel_x = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "mDk" = ( /obj/structure/dispenser/oxygen, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"mDs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/filtration_cave_cas) -"mDN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/outside/lz1_north_cas) -"mEn" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/library) -"mEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"mEP" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"mFT" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, -/area/bigredv2/caves/mining) -"mGp" = ( +"mDD" = ( /obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"mDG" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"mDM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen_v" +/obj/structure/machinery/biogenerator, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"mDS" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"mEF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"mFn" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/area/bigredv2/caves/lambda/xenobiology) -"mGq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/bigredv2/outside/lz1_north_cas) -"mGu" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"mFv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"mGS" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "podhatchfloor" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"mFQ" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/caves/eta/research) +"mGm" = ( +/turf/open/floor/darkpurple2/northeast, +/area/bigredv2/caves/lambda/research) +"mGn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"mHp" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mGI" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"mGM" = ( +/obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) -"mIc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/bigredv2/outside/engineering) -"mIr" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"mGY" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"mHm" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 18 }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves/mining) +"mHv" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/filtration_plant) +"mHK" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"mIe" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) "mIu" = ( /obj/structure/machinery/light{ dir = 4 @@ -31875,366 +17420,611 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"mIZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"mIx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tank/air, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mJe" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"mJh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) +"mJj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"mKi" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"mKw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"mKG" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) "mKM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"mMf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/space_port_lz2) -"mOW" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"mKR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/caves/mining) -"mOZ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mLM" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"mLN" = ( /obj/effect/landmark/crap_item, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"mLT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"mMi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"mMW" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"mMZ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Server" }, -/area/bigredv2/caves/mining) -"mPC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"mNh" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/w) +"mNj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"mNq" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/outside/filtration_cave_cas) -"mPF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) +"mNL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" }, -/area/bigredv2/caves/mining) -"mRi" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"mOf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/bigredv2/caves_lambda) -"mRs" = ( -/obj/structure/machinery/vending/snack{ - icon_state = "snack-broken"; - stat = 1 +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"mOn" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mOq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"mOv" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/eta) +"mOK" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"mRC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"mPP" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"mPR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mPY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"mQi" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"mQn" = ( +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/lambda/virology) +"mQs" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mRg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Virology Lab Chemistry" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) "mRD" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/atmos_alert, /turf/open/floor, /area/bigredv2/caves) -"mSn" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +"mRP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/c) -"mST" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/xenobiology) +"mRY" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"mUf" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"mSt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"mSu" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"mSw" = ( /obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Virology Lab" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"mUy" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Director" }, -/area/bigredv2/caves/eta/xenobiology) -"mWd" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"mSz" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal{ - amount = 30 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"mTl" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"mTs" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"mUp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/virology) +"mVj" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"mVC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"mVH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"mWg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "\improper Operations" +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"mVT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"mWj" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"mWk" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"mWy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"mWD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"mWs" = ( -/obj/structure/surface/rack, -/obj/item/device/camera_film, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"mWI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/engineering) -"mWt" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 13 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"mWQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/mining) -"mWR" = ( +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"mWZ" = ( /obj/structure/surface/table, -/obj/item/weapon/baton, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Space Port" }, -/area/bigredv2/outside/filtration_plant) -"mXw" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"mXa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 }, -/area/bigredv2/caves/mining) -"mYi" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/window{ dir = 8 }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"mXb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"mYv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"mYw" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"mZq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mZQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"mYW" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"mZS" = ( /obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; + desc = "A pipe."; dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"mZC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_virology) -"nav" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor{ - icon_state = "wood" +"nac" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"naf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Abandoned Mining Storage" }, -/area/bigredv2/outside/dorms) -"naL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nat" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"naG" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"naR" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"naT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"naU" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nbl" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"nbc" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"nbB" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"nbQ" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"nbX" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/obj/item/shard, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"nbZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/se) -"nbi" = ( -/obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/white, +/area/bigredv2/caves/lambda/virology) +"ncf" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"ncw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"ncM" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ncY" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"ndk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/caves_research) -"ncv" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Virology Wing" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"ndz" = ( +/obj/structure/fence, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"neZ" = ( +/obj/structure/morgue{ + dir = 1 }, -/area/bigredv2/caves_research) -"ncL" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; +/turf/open/floor/whiteblue/southwest, +/area/bigredv2/outside/medical) +"nfn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nfp" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"nfr" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"nfz" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/caves/lambda/xenobiology) +"ngf" = ( +/obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"ndy" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +"ngq" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ngK" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/engineering) +"ngP" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda"; + name = "Lambda Lockdown" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/caves_north) +"nhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"nhi" = ( +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"nhl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"nhA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"nhO" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"nhP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"nhR" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/research) +"nix" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper General Store" }, -/area/bigredv2/caves/mining) -"neH" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"niO" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/caves/lambda/xenobiology) +"nje" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/outside/filtration_cave_cas) -"ngy" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"njh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves/lambda/xenobiology) +"njF" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"ngJ" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"njG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/bigredv2/caves/mining) -"ngK" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"njT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 18; + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk, -/area/bigredv2/outside/engineering) -"nil" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor{ - icon_state = "panelscorched" +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 }, -/area/bigredv2/outside/engineering) -"nin" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 10; + pixel_y = 2 }, -/area/bigredv2/outside/engineering) -"njf" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"nkb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"nkd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz2_south_cas) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) "nky" = ( /obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"nkQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_se) -"nkW" = ( -/obj/item/ore/gold, +"nkJ" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"nkK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"nkY" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves/mining) -"nlv" = ( -/obj/structure/surface/table, -/obj/item/tool/screwdriver, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "yellow"; - phone_id = "Robotics" - }, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/dark, /area/bigredv2/caves/eta/storage) -"nlA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" +"nkV" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplecorner, +/area/bigredv2/caves/lambda/research) +"nlF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Register" }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "nlW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -32243,46 +18033,100 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/mars, /area/space) -"nmK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"nmZ" = ( -/obj/structure/machinery/computer/area_atmos{ +"nma" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"nme" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"nny" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"nmo" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"nmI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves_research) -"nnK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/outside/e) -"npz" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"nmO" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) +"nmU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"nnh" = ( /obj/structure/surface/table, -/obj/item/spacecash/c100, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 12 +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"nnq" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/ne) +"nnG" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1containers_scramble" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"nol" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1cave_flank" + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"nop" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"noM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"noN" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"npl" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) +"npL" = ( +/obj/structure/surface/table/holotable/wood, +/obj/item/paper_bin, +/obj/item/tool/pen/clicky, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"nqa" = ( +/obj/structure/pipes/vents/scrubber/on, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"nqg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"nqi" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) "nqr" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -32290,143 +18134,330 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"nrj" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"nrw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/filtration_cave_cas) -"nrV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +"nqu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + name = "\improper Dormitories Restroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"nqB" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"nqR" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 }, -/area/bigredv2/outside/filtration_plant) -"ntX" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"nrp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"nrI" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 }, -/area/bigredv2/outside/filtration_plant) -"nub" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 4; - pixel_y = 10 +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"nrT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -3; - pixel_y = 16 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"nsd" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nsm" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 7 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"nsT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/stack/sheet/wood{ + pixel_y = -7 }, -/turf/open/floor/plating{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nsZ" = ( +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "platingdmg3" + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"nuw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"ntP" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ntU" = ( +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nuu" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/plating, +/area/bigredv2/caves/eta/storage) +"nuG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"nwS" = ( -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"nuS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves/mining) -"nxa" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"nuW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"nvm" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"nAm" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/firealarm, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"nvL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"nwb" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/ne) +"nwr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"nBb" = ( +/turf/open/floor/dark, +/area/bigredv2/landing/console) +"nwN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nwR" = ( /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs{ pixel_x = 13; pixel_y = -7 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"nBv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +"nxq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"nBE" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/machinery/door_control{ + id = "Dormitories"; + name = "Storm Shutters"; + pixel_y = -32 }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"nxR" = ( +/obj/item/frame/table, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"nBP" = ( -/obj/structure/machinery/compressor{ +"nxU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"nxZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nyk" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"nyI" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"nyK" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/telecomm/n_cave) +"nzh" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"nzq" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"nzr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/red/east, +/area/bigredv2/outside/marshal_office) +"nzx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nzB" = ( +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"nzJ" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"nzY" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"nAa" = ( +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"nAc" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"nAA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"nAP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"nAZ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/area/bigredv2/outside/engineering) -"nCp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"nBi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"nCK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Clinic" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nBm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"nBq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nBx" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"nBU" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engine Reactor Control" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nCz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/cable{ + icon_state = "1-5" }, -/area/bigredv2/outside/engineering) +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nCA" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"nCO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "nCT" = ( /obj/structure/sign/poster/ad, /turf/closed/wall/solaris/reinforced, @@ -32435,118 +18466,269 @@ /obj/structure/closet/crate/miningcar/yellow{ layer = 3 }, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"nDA" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"nDr" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"nDC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"nDK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"nDM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"nDT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/oldresearch/Resin, +/turf/open/floor/whitepurple/east, +/area/bigredv2/caves/lambda/xenobiology) +"nDU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"nEe" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_north) +"nEu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"nEw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"nFb" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"nFe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"nFs" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"nFt" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"nFw" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nFL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Medical Clinic Power Station" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nFT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Head Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nFV" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/bigredv2/outside/engineering) +"nGd" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz1_north_cas) +"nGf" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"nGv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nGw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"nGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"nHe" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"nHn" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"nHT" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"nHY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"nIn" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"nIz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"nIV" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"nJB" = ( +/obj/item/device/multitool, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"nJI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "Righty tighty, lefty loosey!"; + dir = 1; + icon = 'icons/obj/pipes/valve.dmi'; + icon_state = "map_valve1"; + name = "Pressure Valve" + }, +/obj/structure/cable{ + icon_state = "1-9" }, -/area/bigredv2/outside/engineering) -"nEl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/structure/cable{ + icon_state = "1-4" }, -/area/bigredv2/outside/lz2_south_cas) -"nEJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/cable{ + icon_state = "4-5" }, -/area/bigredv2/outside/eta) -"nEV" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -10; - pixel_y = 12 +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"nJN" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"nJY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) +"nKd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"nKB" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"nKK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"nKR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"nLc" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "platingdmg3" + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"nFh" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"nLu" = ( +/obj/structure/coatrack{ + pixel_x = -8; + pixel_y = 16 }, -/area/bigredv2/outside/filtration_plant) -"nFB" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/item/clothing/shoes/black{ + pixel_y = -7 }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nLR" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/chapel) +"nLW" = ( +/obj/structure/bed/chair, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"nFH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"nMm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox/vegetable, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"nMr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_lambda) -"nFV" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"nMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/gm/river, -/area/bigredv2/outside/engineering) -"nGm" = ( -/obj/structure/fence, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/filtration_cave_cas) -"nGt" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "admin" - }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/admin_building) -"nHb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"nHQ" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"nME" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/filtration_cave_cas) -"nKL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "An exchange valve"; - dir = 8; - icon = 'icons/obj/pipes/filter.dmi'; - icon_state = "map"; - name = "Automated Valve" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"nMJ" = ( +/obj/item/tool/extinguisher/mini, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/research) +"nMN" = ( +/obj/item/weapon/gun/pistol/b92fs{ + pixel_x = 13; + pixel_y = -7 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"nMB" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = 28 - }, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) "nMQ" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/almayer{ @@ -32555,176 +18737,308 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"nMZ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed, -/obj/structure/cable, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"nMY" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"nNd" = ( +/obj/item/spacecash/c1, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"nPu" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"nPN" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"nNw" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"nNO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_east) +"nNR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"nQl" = ( -/obj/item/ore{ - pixel_x = -1; - pixel_y = -8 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"nNS" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"nNT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/oil/streak{ - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/area/bigredv2/caves/mining) -"nRS" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"nNZ" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"nOf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-4-8"; + name = "heavy duty power cable" }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"nRT" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/chapel) -"nSr" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 +"nOq" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"nOA" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"nOB" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"nOR" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"nOU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Virology Lab Decontamination" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"nPy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"nSP" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"nPB" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_virology) +"nQx" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Dormitories APC" }, -/area/bigredv2/caves/mining) -"nTA" = ( +/turf/open/floor, +/area/bigredv2/outside/dorms) +"nQy" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"nQD" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"nQF" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/n) +"nQR" = ( +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/ne) +"nQT" = ( +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"nQV" = ( /obj/structure/machinery/computer/station_alert, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"nTF" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"nRm" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/collectable/tophat/super, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"nRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"nRR" = ( +/obj/structure/machinery/conveyor{ + dir = 9; + id = "anomalybelt" }, -/area/bigredv2/caves/mining) -"nTG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"nRU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"nSQ" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/bigredv2/outside/lz2_south_cas) -"nUK" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"nSR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"nTd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"nTe" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) +"nTk" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"nTp" = ( +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"nTx" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"nUA" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6 }, -/area/bigredv2/caves/eta/xenobiology) -"nUT" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"nUL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"nUV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"nUN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/office_complex) +"nVc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/filtration_cave_cas) -"nVw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"nVe" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_east) +"nVk" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" }, -/area/bigredv2/outside/lambda_cave_cas) -"nVx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"nVz" = ( +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"nWc" = ( +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"nWl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"nVT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"nWD" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"nWs" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/lambda/research) +"nWw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"nXh" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"nWx" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/bigredv2/caves/mining) -"nXw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"nWz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"nWZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"nXb" = ( +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/eta/xenobiology) -"nXC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +"nXv" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/outside/lz1_telecomm_cas) +"nYx" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"nYD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" }, -/area/bigredv2/caves_research) -"nYC" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/cable{ + icon_state = "11-2" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "nYV" = ( /obj/item/tool/warning_cone, /turf/open/mars, /area/bigredv2/outside/s) -"nZD" = ( -/obj/structure/platform_decoration{ - dir = 8 +"nZj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"nZy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1; + name = "\improper Engineering Workshop" }, -/area/bigredv2/outside/admin_building) +/turf/open/floor/delivery, +/area/bigred/ground/garage_workshop) +"nZC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lantern, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"nZE" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) "nZK" = ( /obj/item/ore/diamond, /obj/item/stack/sheet/mineral/diamond{ @@ -32734,829 +19048,1180 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"oay" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" +"nZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/bigredv2/outside/telecomm) +/obj/structure/machinery/light/built{ + dir = 4 + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"nZZ" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"oag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"oaj" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"oau" = ( +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/clothing/shoes/dress{ + pixel_y = -13 + }, +/obj/item/clothing/under/suit_jacket/trainee{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"oaF" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"oaL" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oaX" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) "obf" = ( /obj/effect/landmark/nightmare{ insert_tag = "lambda-graveyard" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/se) -"obB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"obl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"obu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/sheet/wood{ - pixel_y = -8 +/obj/structure/machinery/computer/aifixer, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"obH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"obR" = ( +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"obX" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"ocd" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) +"ocg" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "ocp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"ocA" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/library) -"ocR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/caves_lambda) +"oda" = ( +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"ods" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) "odw" = ( /obj/structure/bed, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"oea" = ( -/obj/effect/landmark/crap_item, +"odI" = ( +/obj/effect/landmark/hunter_secondary, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/breakroom) +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"odX" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/nw) +"oeF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"ofk" = ( +/turf/open/floor/darkgreen2/west, +/area/bigredv2/caves/eta/xenobiology) "ofn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"ofu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ofK" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/w) +"ofP" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"ofW" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/bigredv2/caves/mining) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "ofX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/s) -"ogt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Abandoned Mining Storage" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"ohg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"ogv" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"ohs" = ( +"ogT" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/item/toy/sword, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"ogY" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"ohc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Recreation" }, -/area/bigredv2/outside/engineering) -"ohD" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"oho" = ( +/obj/structure/toilet{ + pixel_y = 8 }, -/area/bigredv2/caves_east) -"ohV" = ( -/obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ohw" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"ohF" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"ohR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) "ohY" = ( /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"oif" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"oip" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/sw) -"ojP" = ( -/obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" +"oij" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"oio" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"oiE" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"oiQ" = ( +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"okh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-5" +"oiT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"ojb" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/filtration_plant) +"ojg" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"ojH" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/filtration_plant) +"ojK" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"okd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"okP" = ( +/turf/open/floor/whitepurple/southeast, +/area/bigredv2/caves/lambda/research) +"olc" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 }, -/area/bigredv2/caves/mining) -"oku" = ( -/obj/item/folder/yellow, +/turf/open/mars/mars_dirt_12, +/area/space) +"olj" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"olI" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/filtration_plant) +"olO" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"ole" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, -/area/bigredv2/outside/admin_building) -"oli" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor{ +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"olZ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/eta/xenobiology) -"olT" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/bigredv2/oob) -"olV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"oma" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2-4"; + name = "heavy duty power cable" }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"omw" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"omc" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) +"ome" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office" }, -/area/bigredv2/caves/mining) +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) "omC" = ( /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"omG" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"omX" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 9; - pixel_y = -8 - }, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves/mining) -"onh" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"omP" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/darkgreen2/southeast, +/area/bigredv2/caves/lambda/virology) +"omS" = ( +/obj/structure/prop/tower, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"onv" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + id_tag = "mbayexit"; + name = "Medbay Reception"; + req_one_access_txt = "2;8;19" }, -/area/bigredv2/caves/mining) +/turf/open/floor/white, +/area/bigredv2/outside/medical) "onR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/broken, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ooi" = ( -/obj/structure/platform_decoration/shiva{ +"onW" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform_decoration/shiva, -/obj/item/stack/cable_coil, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"oom" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/bigredv2/caves/lambda/breakroom) -"ooC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"ool" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"ooO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"ooD" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"ooP" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/dorms) -"opw" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"ooY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, -/area/bigredv2/caves/lambda/virology) -"opz" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"opg" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"opK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +"opj" = ( +/obj/item/tool/pickaxe, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"oqr" = ( -/obj/item/ore{ - pixel_x = -1 +"opm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Director's Office" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"opJ" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"opU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office" }, -/area/bigredv2/caves/mining) -"oqM" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"oqn" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/storage) +"oqX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"oqZ" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/xenobiology) +"ork" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"osW" = ( -/obj/structure/machinery/photocopier, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"orH" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"orN" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -32 + }, +/obj/item/stack/sheet/metal{ + amount = 30 }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"otb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"orZ" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/caves_se) -"oud" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"osa" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"osf" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 }, -/area/bigredv2/caves/mining) -"ovq" = ( -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"osm" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"osS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Bar Maintenance" }, -/area/bigredv2/outside/general_offices) -"ovB" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"otf" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"otn" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_research) +"otB" = ( +/obj/item/tool/pickaxe/drill, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz2_west_cas) -"ovQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"ovZ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"otF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"otG" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"ouo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"our" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/effect/spawner/gibspawner/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/bigredv2/caves/mining) -"owR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"ouF" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ouL" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"owV" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +"ouY" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_lambda) +"ovG" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/s) +"owy" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_sw) +"owN" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"oxh" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"oxa" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"oxe" = ( +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) "oxk" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor, /area/bigred/ground/garage_workshop) -"oxp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_research) -"oye" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/outside/filtration_cave_cas) -"oyI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +"oxR" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/caves/lambda/xenobiology) +"oxV" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_north) +"oyn" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"oyq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"ozf" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +"oys" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"oyA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/bigredv2/caves/mining) -"ozi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"oyM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"oyX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oze" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_se) +"ozu" = ( +/obj/item/device/analyzer, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) "ozv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/bigredv2/caves_virology) -"ozQ" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"ozR" = ( +/obj/structure/disposalpipe/junction, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oAh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/xenobiology) +"oAj" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"oAk" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oAw" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"oAL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves_lambda) -"oAf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable, +/obj/item/prop/magazine/book/bladerunner{ + pixel_y = 3 }, -/area/bigredv2/caves_virology) -"oAW" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"oAS" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"oDW" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oAT" = ( +/obj/item/device/taperecorder, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oAX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"oBt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"oBw" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"oEJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"oFY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"oBx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"oGP" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"oBD" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"oBP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"oBS" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"oBW" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"oCi" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"oIc" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" +"oCE" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"oDe" = ( +/turf/open/floor/whiteyellow, +/area/bigredv2/caves/lambda/xenobiology) +"oDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"oDP" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"oDY" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"oEf" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oEQ" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_2, +/area/space) +"oFi" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/goldschlager, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"oJd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2-4"; - name = "heavy duty power cable" +"oFD" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"oFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"oFM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"oFQ" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"oGh" = ( +/obj/structure/lamarr, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"oGQ" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigred/ground/garage_workshop) +"oHj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"oHB" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/podhatch/southwest, +/area/bigredv2/caves/lambda/research) +"oHJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"oHY" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"oIj" = ( +/obj/structure/machinery/power/turbine, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"oIo" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"oJO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"oIr" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/n) +"oIu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"oIJ" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_research) +"oIX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"oJq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"oKc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"oKm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"oKI" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"oKK" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, -/area/bigredv2/caves/eta/research) -"oKy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"oLi" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" +"oKY" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"oLd" = ( +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/filingcabinet/medical{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, -/area/bigredv2/outside/engineering) -"oLA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"oLg" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "eta"; + name = "Eta Lockdown" }, -/area/bigredv2/outside/filtration_plant) -"oMd" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/lz2_south_cas) +"oLj" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" + pixel_x = -9; + pixel_y = 18 }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"oMh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"oMT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"oLs" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"oNu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/outside/lz2_west_cas) +"oMN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"oMZ" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump, +/obj/item/trash/cheesie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oNb" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) "oNv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"oNz" = ( -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 9 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +"oNy" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"oND" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"oNK" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"oNV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"oOk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"oOr" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"oOA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" - }, -/turf/open/floor{ - icon_state = "white" +"oOm" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"oOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/medical) -"oOR" = ( +/turf/open/floor/bluegrid/damaged3, +/area/bigredv2/caves/lambda/research) +"oOZ" = ( /obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"oQv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +"oPN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"oPR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"oPS" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) -"oQz" = ( -/obj/structure/machinery/light/double{ +"oPT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"oQi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/lz2_south_cas) -"oQI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_sw) -"oRs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves_north) -"oRK" = ( -/obj/structure/computer3frame/wallcomp, -/obj/structure/cable{ - icon_state = "11-2" - }, -/turf/open/floor/plating{ +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"oQo" = ( +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "platingdmg3" + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"oSY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"oTf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ +"oQs" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"oTv" = ( -/obj/structure/largecrate/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"oTL" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"oTM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"oRc" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -10; + pixel_y = 12 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"oUs" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"oRm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"oRA" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/lz2_south_cas) +"oRT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"oSh" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"oSl" = ( +/obj/structure/machinery/botany, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"oSp" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"oSM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"oSR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"oWc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/invuln/minecart_tracks{ +"oSU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"oTk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"oTC" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"oTR" = ( +/obj/structure/prop/dam/truck/damaged, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"oTU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"oUi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"oUZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"oVG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_sw) -"oWe" = ( -/obj/structure/machinery/photocopier{ - density = 0; - pixel_y = 16 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"oVJ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"oVP" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/head/beret/jan, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"oWk" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"oWo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, -/area/bigredv2/outside/admin_building) -"oWC" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"oXr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"oXD" = ( +"oWQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"oXH" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 10; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" +"oYi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"oYm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"oZA" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Large Cables"; - pixel_y = 12 +/obj/item/device/defibrillator, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oYF" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"oYI" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oZb" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"oZd" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/floor/delivery, +/area/bigredv2/outside/virology) +"oZl" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"oZo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/living) +"oZt" = ( +/obj/structure/surface/table, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 3; + pixel_y = 12 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"oZx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"oZF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Office Complex 2"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) "oZQ" = ( /turf/closed/wall/r_wall/unmeltable, /area/bigredv2/outside/filtration_plant) -"pao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" - }, -/obj/structure/cable{ - icon_state = "11-2" +"oZX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Dormitories EVA Maintenance" }, -/area/bigredv2/caves/mining) -"paz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"paC" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"pbg" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"pbj" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/bigredv2/caves/mining) +/obj/item/tool/extinguisher, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "pbr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_cave_cas) -"pbK" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) +"pbv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/telecomm/n_cave) +"pbz" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/research) "pbX" = ( /obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, @@ -33577,209 +20242,391 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"pcA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 +"pck" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pcq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3"; + pixel_x = 17 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"pcB" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "pcF" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"pcI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +"pcR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"pdG" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"pdN" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1entrance" - }, +"pcZ" = ( +/obj/structure/cargo_container/arious/right, /turf/open/mars, -/area/bigredv2/outside/nw) -"pdW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/outside/virology) +/area/bigredv2/outside/space_port_lz2) +"pdz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"pdS" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"peg" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) "per" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/dorms) -"pgi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"pgu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) -"phi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/caves_research) -"pin" = ( -/obj/item/trash/pistachios, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"pjw" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"plx" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +"peV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pfu" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "chapel_cult" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/closed/wall/solaris, +/area/bigredv2/outside/chapel) +"pfw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/xenobiology) +"pfI" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/caves/eta/research) -"pmk" = ( -/obj/structure/surface/table, -/obj/item/spacecash/c1, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"pfL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "eta_carp" }, -/area/bigredv2/caves/mining) -"pmN" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/eta/xenobiology) +"pfO" = ( /obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" + layer = 3 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"pfU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pmS" = ( -/turf/open/mars, -/area/bigredv2/caves_north) -"pmT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light{ - dir = 8 +"pgc" = ( +/obj/item/clothing/glasses/welding, +/turf/open/floor/purplecorner/west, +/area/bigredv2/caves/lambda/research) +"pge" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pgp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"pgr" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"pgv" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"pnL" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" +"pgx" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) +"pgB" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 32; + pixel_y = -32 }, -/area/bigredv2/caves_north) -"pow" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/bigredv2/outside/lz1_north_cas) -"poF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) -"ppp" = ( -/obj/structure/sign/safety/hazard, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"prs" = ( +"pgR" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pgS" = ( /obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"phe" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/corpsespawner/miner, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"phf" = ( +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"phj" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/caves_lambda) +"pho" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"phI" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"piq" = ( +/obj/structure/closet/secure_closet/security/science, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"piv" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"piw" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_lambda) +"pji" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"pjp" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pjr" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"pjA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pjH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"pjQ" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pjX" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/cable{ + icon_state = "11-6" }, -/area/bigredv2/outside/engineering) -"ptL" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pkf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/caves/eta/living) -"puA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"pkG" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"puU" = ( -/obj/item/paper/bigred/witness, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/lz2_south_cas) -"pvg" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"plf" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/space_port_lz2) +"plp" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"plq" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/breakroom) +"ply" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"plG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"pmh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"pmq" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, /area/bigredv2/caves/eta/xenobiology) -"pvk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "Righty tighty, lefty loosey!"; +"pmv" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"pmJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon = 'icons/obj/pipes/valve.dmi'; - icon_state = "map_valve1"; - name = "Pressure Valve" + name = "\improper Marshal Office Prison Toilet" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"pmS" = ( +/turf/open/mars, +/area/bigredv2/caves_north) +"pmX" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"pnt" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"pnG" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm/lz2_cave) +"pnH" = ( +/obj/item/clothing/mask/gas, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) +"pob" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"pol" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"poq" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pvp" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" +"poR" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"poT" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"ppp" = ( +/obj/structure/sign/safety/hazard, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ppA" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves/lambda/research) +"ppO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"ppR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"pqa" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_east) +"pqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"pqP" = ( +/obj/structure/surface/table, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"prj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/bigredv2/outside/filtration_plant) -"pxp" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"prm" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"prz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Lambda Lab Maintenance" }, -/area/bigredv2/caves/mining) -"pxv" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"prD" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; @@ -33788,154 +20635,366 @@ /obj/item/weapon/twohanded/spear{ pixel_x = 5 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) -"pxH" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"pyt" = ( -/obj/structure/machinery/light{ - dir = 4 +"prG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Private Office" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"prY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"pyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic Treatment" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"psD" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_east) +"psF" = ( +/obj/item/reagent_container/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/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"psN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ptr" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ptv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"pBD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"pCj" = ( +"ptC" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"ptL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Workshop" +/turf/open/floor, +/area/bigredv2/caves/eta/living) +"pud" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"puk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bar Backroom" }, -/area/bigredv2/outside/engineering) -"pCu" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"puv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"puO" = ( +/obj/structure/machinery/light, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"pvh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"pvo" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pvu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"pvD" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pvU" = ( +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) -"pCR" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +"pvW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"pwC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"pwE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"pxb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"pxk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_east) +"pxl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"pxs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/bigredv2/caves/mining) -"pDl" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"pxR" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"pyE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"pyS" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/handset, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"pyX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/northwest, +/area/bigredv2/outside/virology) +"pzl" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, +/obj/item/tank/air, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) +"pzw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/purple/southwest, +/area/bigredv2/caves/lambda/research) +"pzJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"pzK" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"pAb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves/eta/research) -"pDV" = ( +"pAs" = ( +/obj/structure/prop/dam/truck/mining{ + desc = "A crawler, imported from the Alpha Centauri colonies."; + dir = 1; + icon_state = "crawler_crate_alt"; + name = "crawler" + }, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/s) +"pAE" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_se) +"pAJ" = ( /obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"pAQ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"pBh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"pEF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"pBm" = ( +/obj/item/paper/bigred/walls, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pBJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pCf" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/outside/admin_building) +"pCE" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz1_telecomm_cas) +"pDk" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_sw) +"pDn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"pDv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"pDy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/caves/eta/research) +"pDG" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/w) +"pDN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"pEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"pEw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) "pFl" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/engineering) -"pGP" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +"pFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"pFq" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) +"pFy" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"pFO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"pGp" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"pGL" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"pHf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"pHi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/bigredv2/outside/filtration_plant) -"pHb" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pHA" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_virology) +"pIa" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"pIc" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"pIg" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"pIm" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"pIs" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/area/bigredv2/caves_sw) -"pHv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"pIu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engineering Secure Storage" }, -/area/bigredv2/outside/filtration_plant) -"pIh" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"pID" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" }, -/area/bigredv2/outside/virology) -"pIN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"pIF" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"pIV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/bigredv2/caves_lambda) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"pIZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/s) "pJx" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -33945,75 +21004,123 @@ /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) -"pJS" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -4; - pixel_y = 20 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"pJX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/caves/mining) -"pLj" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +"pKg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/bigred/witness, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pLZ" = ( +"pKk" = ( +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"pKm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"pMm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pKS" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"pLw" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"pLE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"pMv" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"pLF" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"pLQ" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"pMG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/outside/lz1_north_cas) -"pMB" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"pMI" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 13; + pixel_y = 10 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"pNa" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +"pML" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"pNq" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) +"pNx" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"pNz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"pNU" = ( -/obj/structure/bed, -/obj/item/prop/alien/hugger, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"pNL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves/lambda/research) +"pOR" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/w) +"pPi" = ( +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"pPw" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"pPE" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/cautery, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pPO" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"pOL" = ( -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"pQb" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"pQe" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"pQD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) "pQE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -34025,202 +21132,318 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) +"pQT" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"pQY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"pRj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"pRm" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pRI" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "pRP" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/n_cave) -"pSa" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"pSd" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"pSn" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"pSw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/csandwich, +/obj/item/toy/deck/uno{ + pixel_y = 18 }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"pTH" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) +"pSM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"pSO" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"pSQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"pSU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"pTJ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"pUa" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) "pUi" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"pUY" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"pVp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"pVP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigred/ground/garage_workshop) -"pWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"pXm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"pUq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"pUF" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"pXu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"pUQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/lz1_north_cas) -"pXB" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"pVg" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"pVq" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = -5; + pixel_y = 4 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 +/obj/item/tool/lighter/zippo, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"pVC" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 }, -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"pWb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/obj/item/weapon/gun/rifle/m41a/training, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"pWn" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"pWr" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) -"pYo" = ( -/obj/structure/machinery/computer/area_atmos{ +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"pWt" = ( +/obj/structure/platform/shiva{ dir = 1 }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"pWB" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_research) +"pWI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/xenobiology) +"pWX" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"pYt" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves_sw) -"pYE" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, -/area/bigredv2/oob) -"pZe" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"pXk" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"pXP" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"pXS" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"pYv" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"pYC" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"pZk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves/mining) -"pZu" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore{ - pixel_y = 5 +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"pZy" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_north) +"pZT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"qaa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"qae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = -32 }, -/area/bigredv2/caves/mining) -"qaK" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"qaz" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigred/ground/garage_workshop) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "qaR" = ( /obj/vehicle/powerloader/ft, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"qby" = ( -/obj/structure/surface/table/holotable/wood, -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_color = "blue"; - phone_id = "Administration" - }, -/turf/open/floor/carpet, -/area/bigredv2/caves/lambda/breakroom) -"qez" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"qeR" = ( -/obj/effect/decal/cleanable/dirt, +"qbk" = ( +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"qbv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/tool/surgery/hemostat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"qbw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"qbL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"qco" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"qcu" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"qcE" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"qdp" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) -"qeX" = ( -/obj/structure/largecrate, +/obj/structure/platform_decoration/shiva, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"qdt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"qdv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"qeZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qdF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"qdV" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"qeS" = ( +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"qfn" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qfG" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"qgm" = ( +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qgw" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"qgK" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 }, -/area/bigredv2/caves/mining) -"qfc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/research) +"qgW" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"qhe" = ( +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) -"qgY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves_sw) "qhk" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 9; @@ -34232,37 +21455,70 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qhl" = ( -/obj/effect/decal/cleanable/dirt, +"qhB" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"qhG" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qhK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"qhO" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 }, -/area/bigredv2/outside/e) -"qhH" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "1-2"; - name = "heavy duty power cable" +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"qhS" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/caves/mining) -"qiA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"qhT" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/bigred/ground/garage_workshop) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"qhY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qiu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qiG" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qjg" = ( +/obj/structure/machinery/mill, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/xenobiology) "qjA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -34271,6 +21527,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"qjB" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"qjM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = 32 + }, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "qjO" = ( /obj/structure/prop/almayer/computers/mapping_computer{ desc = "A strange-looking collection of coordinate inputs, relay shunts, and wiring. Designed to operate an experimental teleporter."; @@ -34278,119 +21550,191 @@ }, /turf/open/floor/greengrid, /area/space) -"qkw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Access door" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"qkB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/bigredv2/caves) -"qkC" = ( -/obj/structure/fence, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"qlx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" +"qjP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qjU" = ( +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/outside/admin_building) +"qjX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/delivery, +/area/bigredv2/outside/c) +"qkp" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"qkO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"qlo" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "qlK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qml" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" +"qlY" = ( +/obj/structure/machinery/compressor{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"qmd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qmj" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) "qmm" = ( /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qmG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/stack/sheet/wood{ - pixel_y = -7 +"qmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/bigredv2/caves/mining) -"qmY" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor, +/area/bigredv2/outside/cargo) +"qmA" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qmC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_north) -"qnT" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"qnk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lambda Lab Maintenance Storage" }, +/turf/open/floor/delivery, /area/bigredv2/caves/lambda/xenobiology) -"qoj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/outside/filtration_cave_cas) -"qot" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"qnl" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"qnp" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/e) +"qod" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"qoN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"qoU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"qof" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"qoV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hefa_cult_decals/d96, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qpa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/research) +"qph" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"qpq" = ( +/obj/structure/surface/table, +/obj/item/storage/briefcase, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qpx" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"qpy" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"qpn" = ( -/obj/item/tool/warning_cone{ - pixel_x = -6 +"qpQ" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qqe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/purple/west, +/area/bigredv2/caves/lambda/research) +"qqf" = ( +/obj/structure/machinery/door_control{ + id = "Chapel"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"qqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"qqH" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/bigredv2/outside/filtration_plant) -"qpO" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"qqN" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"qro" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/fire, @@ -34399,9 +21743,48 @@ "qsE" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) -"qtx" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/space_port_lz2) +"qsP" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"qth" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"qtj" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"qto" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"qtv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"qtC" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"qtJ" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/lambda/research) +"qtV" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/oob) +"qub" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) "qux" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -34409,342 +21792,667 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"quQ" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"qvA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"qvI" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, -/area/bigredv2/caves/mining) -"qwx" = ( +"quz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/living) -"qwy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"quA" = ( +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"quE" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"quJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"qvb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"qvn" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/s) +"qvT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qwj" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/area/bigredv2/caves/mining) -"qwA" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/surface/table, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"qwB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"qwK" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_sw) "qyb" = ( /turf/closed/wall/mineral/uranium, /area/bigredv2/outside/engineering) -"qyi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"qzO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/lz2_south_cas) -"qzY" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"qBt" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +"qyp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"qyr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"qCK" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"qyU" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "medbay-v3" }, -/area/bigredv2/outside/lz2_south_cas) -"qCU" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor{ +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"qyX" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"qzg" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/e) +"qzo" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "darkblue2" + icon_state = "p_stair_full" }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"qzF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"qzL" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/research) -"qDY" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/rad, -/turf/open/floor{ - dir = 1; - icon_state = "elevatorshaft" +"qAe" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + do_not_disturb = 1; + phone_category = "Lambda Labs"; + phone_color = "red"; + phone_id = "Director's Safe Room"; + pixel_x = -18 }, +/turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) -"qEs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"qAu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qAC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/outside/lz2_south_cas) -"qEJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "workshop_br_g"; - name = "\improper Workshop Garage" +/obj/effect/landmark/nightmare{ + insert_tag = "dorms_party" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor, +/area/bigredv2/outside/dorms) +"qAT" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_research) +"qBf" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_research) +"qBu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/area/bigred/ground/garage_workshop) -"qFg" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/turf/open/floor/red/north, +/area/bigredv2/outside/marshal_office) +"qBM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"qBP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"qBW" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/area/bigredv2/caves_research) -"qFh" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -11; - pixel_y = 10 +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"qCb" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"qCH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio/headset, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"qCP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"qCW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qDb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"qDi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"qDk" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"qDL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qDX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qFY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/caves_east) -"qGg" = ( -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"qEt" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"qEv" = ( +/obj/item/ore, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"qHg" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" +"qEB" = ( +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/xenobiology) +"qEW" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "reactor_meltdown" }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"qFa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) -"qHY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +"qFy" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"qFP" = ( +/obj/structure/platform{ + dir = 4 }, -/area/bigredv2/outside/lz2_south_cas) +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"qFU" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"qGJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"qGK" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) +"qGM" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qGN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"qGP" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"qHr" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves/mining) +"qHC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"qHI" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) "qHZ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/cargo) -"qJV" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"qId" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"qIe" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"qIR" = ( +/obj/structure/ore_box, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"qKx" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "prison" +"qIW" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) +"qJb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qJf" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/sw) +"qJm" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"qJz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"qKU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"qJL" = ( +/obj/effect/glowshroom, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"qKn" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"qKS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/static_comms/net_two{ - broken_on_spawn = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor{ - icon_state = "podhatchfloor" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qKX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"qLk" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Xenobiology Lab" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"qLx" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/filtration_cave_cas) +"qLD" = ( +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qLu" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qLP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"qLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"qLV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qMc" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - icon_state = "asteroidfloor" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/area/bigredv2/outside/eta) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"qMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"qMk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"qMn" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qMo" = ( +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"qMr" = ( +/obj/item/stack/sheet/wood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"qMw" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) +"qMY" = ( +/turf/open/floor/purplecorner, +/area/bigredv2/caves/lambda/research) +"qNc" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) "qNP" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"qOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"qNS" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"qNZ" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"qOq" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"qOQ" = ( +/obj/item/ammo_magazine/handful/shotgun/custom_color{ + color = "#6666ff"; + desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; + name = "handful of HE/FRAG shells (12g)"; + pixel_y = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"qOT" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/filtration_plant) +"qOW" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 }, -/area/bigredv2/outside/engineering) -"qOM" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"qPg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = 10 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"qPq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol/hp{ + pixel_x = 8; + pixel_y = -7 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/item/ammo_magazine/pistol{ + pixel_y = -4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/cable{ + icon_state = "9-10" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qPm" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" +"qPz" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/lambda_cave_cas) +"qPG" = ( +/obj/structure/machinery/door_control{ + id = "Engineering"; + name = "Storm Shutters"; + pixel_y = -32 }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) -"qQn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"qPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light_construct{ + dir = 8 }, -/area/bigredv2/caves_lambda) +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"qQz" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"qQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"qQO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"qQS" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 + }, +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"qQV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"qRz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"qRA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"qRX" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"qRZ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) "qSj" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qTu" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "viro" +"qSk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"qTC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"qSl" = ( +/obj/structure/cryofeed, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"qUS" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"qSZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/bigredv2/caves_sw) -"qVd" = ( -/obj/item/reagent_container/food/snacks/sausage, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"qTv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/space) +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"qTB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 17 + }, +/obj/item/reagent_container/food/snacks/jellysandwich/cherry, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"qTL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/lightreplacer, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"qUu" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"qUH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"qUR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) "qVi" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"qVB" = ( -/obj/item/weapon/shield/riot, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"qVx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"qVG" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"qWm" = ( -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 20 +"qVP" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_se) +"qWk" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/mirror{ - pixel_y = 29 +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"qWo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qWA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/admin_building) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"qWH" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) "qWV" = ( /obj/structure/platform, /obj/structure/platform{ @@ -34755,151 +22463,212 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"qXi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/pinpointer, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"qYY" = ( +"qXt" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"qYd" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qZo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/research) -"qZU" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"qYi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"qYj" = ( +/obj/structure/barricade/handrail{ dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" + layer = 3.01; + pixel_y = 9 }, -/area/bigredv2/caves/mining) -"raQ" = ( -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/engineering) +"qYF" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"qZc" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"qZh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" +/turf/open/floor/darkred2/southeast, +/area/bigredv2/caves/eta/research) +"qZj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"qZK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/bigredv2/outside/telecomm/lz2_cave) -"rbD" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"qZN" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_plant) +"raW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"raX" = ( +/obj/item/tool/warning_cone{ + pixel_y = 20 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"rbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rcc" = ( -/obj/structure/prop/almayer/missile_tube{ - desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; - name = "\improper Massive mining drill"; - pixel_y = 12 +"rcd" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 8 }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"rcy" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm) +"rcB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/vest, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"rcI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"rcY" = ( /obj/item/ore{ pixel_x = 13; pixel_y = 12 }, -/obj/structure/cable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"rcN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"rcZ" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"rdk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"rdm" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves_research) +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"rdL" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rdN" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) "rdR" = ( /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"rdS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" +"rdY" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/filtration_cave_cas) +"reB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"reX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"rem" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/xenobiology) +"rfd" = ( +/turf/open/floor/purple, +/area/bigredv2/caves/lambda/research) +"rfB" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"rfY" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"rgi" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"rgl" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"rgx" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rgK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"rhh" = ( +/obj/item/tool/pickaxe{ + pixel_y = -7 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/item/tool/pickaxe{ + pixel_y = 4 }, -/area/bigredv2/caves/mining) -"rev" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/item/tool/pickaxe{ + pixel_y = -3 }, -/area/bigredv2/outside/engineering) -"rfe" = ( -/obj/structure/platform/kutjevo/rock{ +/obj/item/tool/pickaxe, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/space) -"rgp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz1_north_cas) -"rgX" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rhj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rhl" = ( +/obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"rhx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"rhG" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"rhO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/telecomm/warehouse) +/turf/open/floor/darkgreen2/north, +/area/bigredv2/caves/lambda/virology) "rhW" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light{ @@ -34907,26 +22676,46 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"rie" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +"rid" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"riy" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/lz2_south_cas) +"riJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"riY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"rjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"rji" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"riI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) +"rjl" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) "rjw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -34937,169 +22726,275 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"rkS" = ( -/obj/structure/cable{ - icon_state = "5-6" +"rkz" = ( +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"rkE" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"rkP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"rkQ" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"rkV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"rlg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/bigredv2/caves/mining) +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"rlv" = ( +/obj/structure/surface/table, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "red"; + phone_id = "Security" + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rlK" = ( +/obj/structure/safe, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rmc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/armband, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "rml" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, /area/bigred/ground/garage_workshop) -"rmy" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"rnc" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_research) -"row" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/caves/eta/research) -"roP" = ( +"rmn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rmT" = ( /obj/item/ore{ pixel_x = 9; pixel_y = -4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"rpl" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"rnc" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"rng" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"rni" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/caves/mining) -"rpI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"rnI" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rnM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"rpy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + name = "\improper Engine Reactor" }, -/turf/open/floor{ +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"rpN" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"rqu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"rqN" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/ne) +"rqQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"rqX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/w) +"rrm" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"rrr" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "darkred2" + health = 80 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Administration" }, +/turf/open/floor/warnwhite/east, /area/bigredv2/outside/admin_building) -"rpS" = ( -/obj/structure/bed/chair{ +"rrt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"rqa" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/floor{ - icon_state = "whitepurplefull" - }, -/area/bigredv2/caves/lambda/xenobiology) -"rqv" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"rrL" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rst" = ( /obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/caves/mining) -"rrl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "filtration" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/s) -"rsv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" + desc = "A pipe."; + dir = 10; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rtL" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/bigredv2/outside/lz2_west_cas) -"rtR" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/classic_baton, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_research) -"rtS" = ( +"rsM" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wetleather, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"rtV" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/miner, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 10 +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"rsR" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/mars/mars_dirt_9, +/area/space) +"rtm" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"rtM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"rvs" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"rvw" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/virology) +"rvN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"rwu" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/space_port_lz2) +"rwA" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"rxD" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/area/bigredv2/caves/mining) -"ruQ" = ( -/obj/structure/machinery/light{ +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"rxF" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen_v/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"rxG" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/landmark/crap_item, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"rxL" = ( +/obj/structure/ore_box, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"rxR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/eta/research) -"ruS" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"rxV" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"ryj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"ryn" = ( +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"ryD" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/bigredv2/caves/mining) -"rxh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/window/reinforced, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"ryW" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/bigredv2/caves/mining) -"rxo" = ( -/obj/structure/closet/secure_closet/CMO, -/turf/open/floor{ - icon_state = "whitegreenfull" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"rzb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering SMES" }, -/area/bigredv2/outside/medical) -"rxJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"rzn" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/ne) +"rzJ" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 }, -/area/bigredv2/caves_east) +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/filtration_plant) "rzO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -35108,140 +23003,197 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) +"rzP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) "rzT" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"rAs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"rzW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves_east) -"rBK" = ( -/obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_12" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"rBc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"rBE" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/outside/se) -"rCd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/structure/machinery/door_control{ + id = "viro"; + name = "Virology Lockdown"; + pixel_x = -25 }, -/area/bigred/ground/garage_workshop) -"rCA" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rBH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz1_telecomm_cas) -"rDl" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rCe" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"rCq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"rCR" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars, +/area/bigredv2/outside/space_port_lz2) +"rEj" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"rEv" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"rET" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"rEY" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"rFi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/bigredv2/caves/mining) -"rDO" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_north) +"rFv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"rFw" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"rFN" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"rFX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"rDP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_virology) -"rDV" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"rGa" = ( +/obj/structure/coatrack{ + pixel_x = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ + pixel_x = 11; + pixel_y = 4 }, -/area/bigredv2/outside/filtration_plant) -"rEI" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"rGi" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"rGv" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/s) +"rHh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"rHm" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) -"rGP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_virology) -"rHr" = ( -/obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) +"rHy" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) "rHA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"rHD" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"rHB" = ( +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"rHM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Telecommunications" }, -/area/bigredv2/outside/c) +/turf/open/floor/delivery, +/area/bigredv2/outside/telecomm) +"rHY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"rIc" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"rIj" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) "rIl" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"rIB" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/marshal_office) -"rIY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"rJJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/lz2_south_cas) -"rJR" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +"rIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Library" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/library) +"rIW" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"rJU" = ( +/obj/structure/machinery/light/small, +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"rKr" = ( -/obj/structure/machinery/door_control{ - id = "Engineering"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +"rKj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/white, +/area/bigredv2/outside/virology) "rKs" = ( /obj/item/stack/medical/splint{ pixel_x = 4; @@ -35254,125 +23206,148 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rKP" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/bigredv2/oob) -"rLR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_lambda) -"rMg" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"rMq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = -32 +"rKu" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"rKB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"rKW" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_cave_cas) +"rLk" = ( +/obj/item/tool/warning_cone{ + pixel_y = 19 }, -/area/bigredv2/outside/engineering) -"rMw" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"rLC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"rLD" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves) +"rLN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"rLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"rMa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigred/ground/garage_workshop) +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"rMb" = ( +/obj/structure/surface/table, +/obj/structure/xenoautopsy, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) "rMG" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor, /area/bigred/ground/garage_workshop) -"rMJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 3; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves/mining) +"rML" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) "rNc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/harpoon, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rOJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"rOK" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/item/weapon/baton/loaded, -/obj/item/weapon/twohanded/spear{ - pixel_x = -16; - pixel_y = -9 +"rNd" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"rNj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" }, -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"rNm" = ( +/obj/structure/machinery/floodlight, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"rNr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"rNE" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 + dir = 4; + icon_state = "gib6" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"rOe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/caves/mining) -"rPc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/space_port) -"rPh" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"rOf" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rOp" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rOD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/ore{ - pixel_x = -7; - pixel_y = 7 +/obj/item/bodybag/cryobag, +/obj/item/storage/box/gloves, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"rPd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"rPv" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"rPy" = ( +/obj/structure/bed/chair, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"rQb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/bigredv2/caves/mining) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"rQd" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"rQe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) "rQs" = ( /obj/structure/bed/sofa/south{ desc = "An old rusty ladder"; @@ -35382,55 +23357,117 @@ }, /turf/open/floor/plating, /area/bigredv2/oob) -"rRO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" +"rQN" = ( +/obj/item/robot_parts/robot_component/diagnosis_unit{ + pixel_y = 15 }, -/area/bigredv2/outside/filtration_cave_cas) -"rSJ" = ( -/obj/structure/machinery/power/turbine, -/turf/open/floor{ +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/mining) +"rQO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"rRp" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"rRU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"rRX" = ( +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"rSq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"rSt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "darkyellow2" + pixel_x = 32 }, -/area/bigredv2/outside/engineering) -"rTq" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"rSA" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"rSC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"rSF" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/area/bigredv2/caves/eta/storage) -"rTC" = ( -/obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "Blue"; - phone_id = "Director" +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"rSK" = ( +/obj/item/ore{ + pixel_x = -1; + pixel_y = -8 }, -/area/bigredv2/caves/eta/research) -"rTF" = ( -/obj/structure/closet/l3closet/security, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"rSO" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"rTh" = ( +/obj/item/device/flashlight/on{ + pixel_x = 8 }, -/area/bigredv2/outside/marshal_office) -"rTN" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"rTi" = ( +/turf/open/floor/asteroidwarning, +/area/bigred/ground/garage_workshop) +"rTr" = ( +/obj/structure/tunnel{ + id = "hole1" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"rTB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/good_item, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) +"rTJ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves/mining) +"rUk" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) "rUn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -35441,115 +23478,162 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"rUZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"rVh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) -"rWF" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = 4 +"rVq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rVz" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"rWn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"rWq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" }, -/area/bigredv2/caves/mining) -"rWN" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 18 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rWr" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/mars, +/area/bigredv2/outside/n) +"rWD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_se) +"rWV" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"rXc" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "containerroom_xenos" }, -/area/bigredv2/caves/mining) -"rXy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/nw/ceiling) +"rXD" = ( /obj/structure/surface/table, -/obj/item/ammo_magazine/handful/shotgun/buckshot/incendiary{ - pixel_y = 12 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"rXL" = ( +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"rXJ" = ( /obj/structure/surface/table, -/obj/item/clothing/glasses/science, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/bigredv2/caves/lambda/research) -"rXY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/bigredv2/caves/lambda/research) -"rYt" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"rXP" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rYb" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"rYf" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port_lz2) +"rYq" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_north) -"rYD" = ( +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"rYv" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/bananapeel, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"rYG" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"rZj" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"rZl" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"rZu" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/area/bigredv2/caves/mining) -"rZQ" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/csandwich, -/obj/item/toy/deck/uno{ - pixel_y = 18 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"rZy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"sbk" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"sak" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/caves/mining) -"sbz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"saq" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sar" = ( +/obj/structure/machinery/door_control{ + id = "Kitchen Greenhouse"; + name = "Storm Shutters"; + pixel_x = 32 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_12" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"saJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"saR" = ( +/obj/structure/closet/crate/miningcar, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/space) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "sbA" = ( /obj/item/frame/rack, /obj/effect/spawner/random/toolbox, @@ -35560,421 +23644,487 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"sbQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"sbU" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/space_port) +"scd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/eta/living) -"scy" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/purple/southeast, +/area/bigredv2/caves/lambda/research) +"scu" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/bigredv2/outside/engineering) -"sdE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/w) +"scv" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"scH" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"sdg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"sdn" = ( +/obj/item/device/reagent_scanner, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"sdC" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"sdG" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves/mining) +"sdH" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) "sdP" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"sex" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"sdY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Atmospherics Condenser" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"seO" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -1; - pixel_y = 5 +"seD" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"seI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"sft" = ( +/obj/structure/surface/table, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"sfG" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"sfK" = ( +/obj/structure/target, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/xenobiology) +"sga" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Operations Toilet" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"sgf" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"sgq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"sgG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sfd" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" +"sgK" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"shu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/outside/space_port) +"shv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"shA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"shK" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"shU" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"sij" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/caves/lambda/virology) -"sfI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_east) -"sgF" = ( +"sji" = ( /obj/structure/cable{ - icon_state = "1-6" - }, -/obj/structure/cable{ - icon_state = "6-8" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"sgT" = ( -/obj/item/trash/burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + icon_state = "11-2" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"shV" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"siu" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/eta) -"siM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/outside/lz1_telecomm_cas) +"sjo" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"sjw" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_sw) +"sjE" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) "sjU" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) +"skh" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) "ski" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) -"sln" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +"skw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"skF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"skZ" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/hardhat, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"slQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"slu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/obj/item/clothing/suit/radiation, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) -"smh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"smy" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"smF" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves/mining) -"smO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/outside/lz1_north_cas) -"smZ" = ( +"slN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light_construct{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"snk" = ( -/obj/item/tank/air, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) -"snD" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/virology) -"soi" = ( -/obj/structure/filingcabinet, +/obj/item/restraint/adjustable/cable/cyan, /turf/open/floor, -/area/bigredv2/outside/cargo) -"soG" = ( -/obj/structure/window/reinforced/toughened{ - dir = 1; - icon_state = "fwindow"; - pixel_y = 12 - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lambda Labs"; - phone_id = "Virology" - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/bigredv2/caves/lambda/virology) -"sqc" = ( -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"sqj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/bigredv2/caves_research) -"sqt" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"sqE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"sqQ" = ( -/obj/item/paper/bigred/them, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"srH" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/handset, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +/area/bigredv2/outside/general_store) +"slP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, /area/bigredv2/outside/admin_building) -"sso" = ( -/obj/structure/bed/chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"ssE" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/caves) -"ssI" = ( -/obj/structure/prop/dam/truck/damaged, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) -"ssO" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"str" = ( +"slY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"stE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lambda Labs"; - phone_id = "Surgery"; - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/xenobiology) -"sus" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/bigredv2/caves_research) -"suD" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" - }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "A big air filter."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "fuel_enhancer"; - layer = 5; - name = "Air filter"; - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; - icon = 'icons/obj/structures/props/almayer_props64.dmi'; - icon_state = "cooling_system"; - layer = 4; - name = "\improper Air Condenser"; - pixel_x = -5; - pixel_y = 25 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" }, -/area/bigredv2/oob) -"suJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"slZ" = ( /obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"suV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1; - name = "\improper Engineering Workshop" +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"smh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"smu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"smA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"smQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/bigred/ground/garage_workshop) -"svp" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"smW" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"snb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"soi" = ( +/obj/structure/filingcabinet, /turf/open/floor, /area/bigredv2/outside/cargo) -"svJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engine Reactor" - }, -/turf/open/floor{ - icon_state = "delivery" +"sok" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port) +"soC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"soQ" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"sxs" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"spd" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/lz2_south_cas) +"sph" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/bigredv2/caves/mining) -"syi" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"spx" = ( /obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"sqw" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"sqK" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"syn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ +"sqL" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/virology) +"srl" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"srt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon_state = "darkyellow2" + name = "\improper Lambda Lab Prisoner Room" }, -/area/bigredv2/outside/engineering) -"syu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"srS" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/caves_north) +"srU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"ssp" = ( +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"ssE" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/bigredv2/caves) +"ssS" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"ssW" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"stl" = ( +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"szg" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ +"sts" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"suL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"suN" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz2_west_cas) +"svh" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; dir = 4; - id = "lambda"; - name = "Lambda Lockdown" + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"swn" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"swt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"swx" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/lz2_south_cas) +"swy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/caves_lambda) -"szi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"swZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"sxo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"sxI" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"sxK" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 }, +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"sxQ" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"sxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/outside/engineering) +"sya" = ( +/obj/structure/closet/l3closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/vault2/west, +/area/bigredv2/outside/general_offices) +"syl" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/bigredv2/outside/admin_building) -"szw" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"syA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"syE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"syH" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"syL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"syY" = ( +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/caves/lambda/research) +"syZ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/filtration_cave_cas) +"szs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"szO" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/toxin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"szP" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"sAe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) "sAS" = ( /obj/item/toy/prize/fireripley{ pixel_y = 19 @@ -35982,105 +24132,142 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"sBu" = ( -/obj/effect/landmark/hunter_secondary, +"sBg" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sBi" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"sBw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/eta/storage) +"sBB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_east) -"sCj" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"sBF" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 }, -/area/bigredv2/caves/mining) -"sDk" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sCe" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"sCm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"sDd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" }, -/area/bigredv2/outside/filtration_plant) -"sDs" = ( -/obj/structure/closet/crate/miningcar, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"sEn" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/n) +"sEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Eta Lab Dormitories" }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) +"sFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sDC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_sw) -"sDX" = ( +"sFs" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"sFw" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"sFB" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"sFD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 4 }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"sFJ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"sFM" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) -"sEi" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/bigredv2/caves/eta/research) -"sFO" = ( +"sFT" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"sGw" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/caves/lambda/xenobiology) +"sGH" = ( +/obj/effect/spawner/random/attachment, /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/computer3/server, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"sFS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"sFW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sGi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/outside/lz1_telecomm_cas) -"sGT" = ( -/obj/item/tool/weldpack, -/obj/item/frame/rack, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"sGR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"sGU" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sHz" = ( -/obj/item/ore{ - pixel_x = 9; - pixel_y = 13 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"sHd" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/ne) +"sHu" = ( +/obj/item/reagent_container/food/snacks/sausage, +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 }, +/turf/open/mars_cave/mars_dirt_4, +/area/space) +"sHA" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"sHY" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) "sIh" = ( /obj/effect/landmark/nightmare{ @@ -36088,284 +24275,560 @@ }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"sIp" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"sIP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +"sIm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"sIY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"sIx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/c) -"sJq" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"sIE" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"sIN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) -"sKm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"sIS" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_sw) +"sJQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"sJR" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/w) +"sJS" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/outside/filtration_plant) -"sKD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 }, -/obj/structure/machinery/camera/autoname{ +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"sKk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"sLr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"sKo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/virology) +"sKr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -32 }, -/area/bigredv2/caves_se) -"sLy" = ( +/obj/structure/machinery/light, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"sKz" = ( +/obj/structure/surface/table, +/obj/item/tool/weedkiller/D24, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"sLh" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"sLn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/caves_sw) +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "sLS" = ( /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"sMb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sMC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"sMF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"sMI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"sNe" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/lz2_south_cas) +"sNL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"sNa" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sNS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"sNV" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"sNW" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"sOa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/machinery/recharge_station, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"sOo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"sNQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sOC" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/caves_lambda) -"sOi" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating{ +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"sOS" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"sOV" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_research) +"sPb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"sPf" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/research) +"sPm" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/janitor, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"sPp" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"sPw" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"sPF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/research) +"sPL" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"sPW" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/grimy, +/area/bigredv2/outside/admin_building) +"sQm" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"sQB" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "platingdmg3" + health = 25000 }, -/area/bigredv2/caves/mining) -"sOE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"sQF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"sQK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/bigredv2/outside/lz1_telecomm_cas) -"sON" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"sQQ" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"sRg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"sRl" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper massive vent"; + pixel_x = -15 + }, +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"sRq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"sRC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/bigredv2/caves_east) -"sPc" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"sRM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/research) +"sRS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib3" }, -/area/bigredv2/outside/filtration_plant) -"sPv" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"sRW" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/outside/admin_building) +"sSm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"sSA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"sSD" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/mars_cave/mars_cave_2, +/area/space) +"sTc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/outside/bar) -"sQw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/outside/lz1_telecomm_cas) -"sRk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"sTe" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/machinery/vending/cola, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"sTx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"sRy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"sTF" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"sTU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"sTV" = ( +/turf/open/floor/darkbluecorners2, +/area/bigredv2/outside/admin_building) +"sUi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"sUN" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/surface/table/woodentable, +/obj/item/device/camera, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"sSU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/outside/lz2_south_cas) -"sTN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"sVa" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;200" }, -/area/bigredv2/outside/filtration_plant) -"sUD" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"sVh" = ( +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"sVv" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"sWa" = ( +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"sVZ" = ( /obj/item/ore{ - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" + pixel_x = -4; + pixel_y = 7 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sWS" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"sWc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"sXv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 2; - pixel_y = 17 +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"sWf" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"sWk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"sWG" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) +"sWH" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"sWX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"sWZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowcorner/east, +/area/bigredv2/caves/lambda/xenobiology) +"sXI" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"sXR" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;200" }, -/turf/open/floor/plating{ +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"sYb" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/lz2_south_cas) +"sYm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "platingdmg3" + health = 25000 }, -/area/bigredv2/caves/mining) -"sYL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"sYo" = ( +/obj/structure/platform/shiva, +/obj/structure/platform/shiva{ + dir = 1 }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"sYu" = ( +/obj/structure/machinery/vending/security, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, /area/bigredv2/outside/lambda_cave_cas) -"sYR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"sYI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" }, -/area/bigredv2/caves/mining) -"sZh" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"sZa" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/hvac{ + pixel_x = -32 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"sZi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"sZU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) +"taj" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/bigredv2/outside/engineering) +"taq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + name = "Interview Room APC" }, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"tas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/darkgreen2/east, +/area/bigredv2/caves/lambda/xenobiology) +"taX" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 }, -/area/bigredv2/caves/mining) -"taf" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"tbb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"tbj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"tbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/xenobiology) -"tap" = ( -/obj/structure/machinery/message_server, -/turf/open/floor{ - icon_state = "podhatchfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"tbA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/admin_building) +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "tcb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/meat, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tcq" = ( -/obj/item/explosive/grenade/baton, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +"tce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/bigredv2/caves_research) -"tdn" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"tcl" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"tcs" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/xenobiology) +"tcJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"tcX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"tdd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"tdK" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = -3; + pixel_y = -5 }, -/area/bigredv2/caves_lambda) -"tdp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/obj/item/stack/cable_coil/cut{ + pixel_x = 9; + pixel_y = -8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) -"tdB" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_se) +"tdM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "tdZ" = ( /obj/item/tool/pickaxe/drill, /obj/structure/machinery/light{ @@ -36377,123 +24840,221 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"teV" = ( -/obj/structure/fence, -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ted" = ( +/obj/item/ore, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"tee" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/caves/mining) -"tff" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"teo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"tfi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - name = "\improper Engine Reactor" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"tew" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/structure/sign/safety/high_rad{ + pixel_x = -32 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"tfp" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - desc = "An old W-Y systems control computer that manages the air enviorment for a large area. Commonly used in mining operations in order to control O2 levels, alert of any dangerous gases and make the heat slightly more bearable."; - name = "W-Y Enviorment Control System Control Panel" +"tez" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"teH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Kitchen" }, -/obj/structure/cable{ - icon_state = "11-2" +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"teJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "11-10" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Armory" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"teT" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/bigredv2/caves/mining) +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"tfn" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_south_cas) "tft" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) +"tfv" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) +"tfy" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) "tfz" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tgb" = ( -/obj/structure/bed/chair{ +"tfE" = ( +/obj/structure/machinery/computer3/server, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"tgo" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/gun/smg/fp9000, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tgN" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/lambda/xenobiology) +"tgX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"thf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"tgk" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - dir = 4 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"thg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/turf/open/floor, -/area/bigredv2/landing/console2) -"tgF" = ( -/obj/effect/spawner/random/tool, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"thp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/raisins, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"thV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/caves/lambda/virology) +"tim" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/bigredv2/oob) -"tgL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"tis" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_se) -"tiD" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"tiy" = ( +/obj/structure/showcase, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tiM" = ( /obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -15 + icon_state = "gib6" }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/highpower, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"tjG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/nw) +"tjJ" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_north) +"tjT" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"tjU" = ( +/obj/item/tool/lighter/random, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tjV" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tkr" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/lz2_west_cas) +"tkz" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"tjE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "podhatch" +"tkD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/research) -"tkN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"tlf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"tlz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 }, -/area/bigredv2/caves/lambda/research) -"tlj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"tlH" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/bigredv2/outside/lz1_north_cas) +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -36501,84 +25062,211 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tmH" = ( -/obj/structure/closet/crate, +"tlS" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tlT" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"tmh" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"tmG" = ( +/turf/open/floor/darkgreen2/southwest, +/area/bigredv2/caves/lambda/virology) +"tni" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/n) +"tnm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/outside/dorms) -"tnd" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tnn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"tnr" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"tob" = ( +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"toi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"tol" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/bigredv2/caves_research) +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) +"tox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "toA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/alien/hugger, /turf/open/floor, /area/bigredv2/outside/admin_building) -"tpR" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"toK" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"tqi" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +"toM" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/ne) +"toZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/caves/mining) -"tqK" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tpl" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_id = "Virology" + }, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"tpn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tpr" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/research) +"tps" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whitegreencorner" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/outside/medical) -"trf" = ( -/obj/item/folder/yellow, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tpt" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"tpL" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz1_telecomm_cas) +"tpW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor{ +/turf/open/floor/whitegreen/east, +/area/bigredv2/caves/lambda/virology) +"tqc" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/outside/lz2_west_cas) +"tqD" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/engineering) -"trk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" + health = 80 }, -/area/bigredv2/caves_sw) -"trW" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/hardhat, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/item/handset, +/turf/open/floor/warnwhite/east, +/area/bigredv2/outside/admin_building) +"tqG" = ( +/obj/structure/closet, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tsc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"tqH" = ( +/turf/open/mars_cave, +/area/bigredv2/outside/n) +"tqM" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/sw) +"tqY" = ( +/obj/structure/platform/shiva{ + dir = 1 }, -/area/bigredv2/caves/mining) +/obj/structure/platform/shiva, +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"tro" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"trU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"tsa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"tsj" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + name = "\improper Eta Lab Decontamination" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/research) "tsw" = ( /obj/structure/closet/secure_closet/security, /turf/open/floor, /area/bigredv2/outside/cargo) +"tsx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/engineering) "tsy" = ( /obj/effect/decal/cleanable/dirt{ pixel_x = 8 @@ -36603,282 +25291,341 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tsB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) -"tsK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/outside/lz2_south_cas) -"ttQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"tuu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"tsC" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Operations"; + pixel_y = 24 }, -/area/bigredv2/outside/cargo) +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"tsL" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"ttc" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/lz1_telecomm_cas) +"ttB" = ( +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"ttL" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"ttR" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "tuN" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave, /area/bigredv2/caves/mining) -"tvh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +"tuO" = ( +/obj/item/paper/bigred/witness, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) -"twC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" +"tuT" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tvB" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"tvI" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz2_south_cas) +"tvM" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_virology) +"tvO" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) -"twS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"txX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, +"tvY" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"tzw" = ( -/obj/item/explosive/grenade/slug/baton{ +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"twh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - pixel_y = -8 - }, -/obj/item/explosive/grenade/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -8 - }, -/obj/structure/cable{ - icon_state = "4-10" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-5" - }, -/obj/structure/cable{ - icon_state = "4-8" + name = "\improper Atmospherics Condenser" }, -/turf/open/floor/plating{ +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"twq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"txg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"txw" = ( +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "platingdmg3" + icon_state = "gib6"; + layer = 4; + pixel_x = 12; + pixel_y = 3 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"tAh" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +"txz" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/bigredv2/outside/engineering) -"tAW" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"txL" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; - icon_state = "asteroidwarning" + health = 25000 }, -/area/bigredv2/outside/ne) -"tBb" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves_north) +"txS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves/mining) -"tBf" = ( -/obj/structure/largecrate/random/barrel, +/turf/open/floor/whitepurple/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"tyk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/bigredv2/caves/mining) -"tBh" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"tyM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_x = -1; - pixel_y = 14 - }, -/obj/item/reagent_container/food/snacks/tofu{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/tofu, -/obj/structure/cable{ - icon_state = "5-9" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"tBD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, -/area/bigredv2/outside/admin_building) -"tBK" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe{ - pixel_y = -7 - }, -/obj/item/tool/pickaxe{ - pixel_y = -3 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tzc" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_plant) +"tzi" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 4 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"tzt" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"tzS" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"tAP" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tBf" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/caves/mining) +"tBw" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) "tBN" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tBS" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"tCg" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, -/area/bigredv2/caves/lambda/virology) "tCh" = ( /obj/structure/machinery/door/poddoor/almayer/closed, /obj/structure/prop/invuln/minecart_tracks, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tCH" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 +"tCn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"tCr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"tCA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"tCS" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"tCL" = ( +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/telecomm/n_cave) +"tDa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + icon = 'icons/obj/pipes/manifold.dmi'; + icon_state = "map"; + name = "Pipe manifold" }, -/area/bigredv2/outside/engineering) +/obj/structure/cable{ + icon_state = "2-9" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "tDk" = ( /obj/structure/machinery/light/double{ dir = 1 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tDl" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"tDv" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"tDD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"tDR" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"tDU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/lz2_west_cas) -"tEc" = ( -/obj/structure/machinery/light/small, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tEi" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"tEl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves_research) -"tFM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/caves/eta/research) +"tEP" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "viro_open" }, -/area/bigredv2/caves_north) -"tFO" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"tEY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/lambda/virology) +"tEZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"tFf" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"tFq" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tFs" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"tGo" = ( +/obj/item/tool/pickaxe{ + pixel_x = -18; + pixel_y = 4 }, -/area/bigredv2/caves/lambda/breakroom) -"tGh" = ( -/obj/structure/surface/table, -/obj/item/handcuffs, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "red"; - phone_id = "Marshal Office" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"tGs" = ( +/obj/structure/surface/table, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"tGA" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, -/area/bigredv2/outside/marshal_office) -"tGM" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"tGQ" = ( +/obj/structure/curtain/red, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"tHB" = ( +/turf/open/space/basic, +/area/space) +"tHO" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"tHR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"tHl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/mars{ - icon_state = "mars_dirt_10" +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"tHW" = ( +/obj/item/ore, +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, -/area/bigredv2/outside/c) -"tIq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"tIl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_lambda) +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "tIr" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/plating, /area/bigredv2/caves/eta/research) +"tIu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/filtration_plant) "tIA" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -36887,465 +25634,789 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tIL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ +"tIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"tJn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - icon_state = "dark" + name = "\improper General Store Security" }, -/area/bigredv2/outside/admin_building) -"tJv" = ( -/obj/structure/tunnel{ - id = "hole3" +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"tJt" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/research) +"tJy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tJA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"tKc" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"tKC" = ( +"tKL" = ( +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"tLe" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 1 +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/glass, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"tLD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/obj/item/xenos_claw, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 4 +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"tLM" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tMs" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"tMG" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tNa" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ +/turf/open/floor/carpet9_4/west, +/area/bigredv2/caves/eta/living) +"tNg" = ( +/obj/structure/sink{ dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"tKR" = ( -/turf/open/floor{ - icon_state = "delivery" + pixel_x = -12; + pixel_y = 2 }, -/area/bigredv2/outside/hydroponics) -"tKX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"tNp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Maintenance" }, -/area/bigredv2/outside/filtration_plant) -"tLt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"tNE" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"tNG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/area/bigredv2/caves_north) -"tML" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" +/obj/item/trash/cigbutt{ + pixel_x = 7 }, -/area/bigredv2/outside/engineering) -"tNz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/caves/mining) +"tNJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"tOp" = ( +/obj/structure/machinery/teleport/station, +/turf/open/floor/podhatch, +/area/bigredv2/caves/lambda/research) +"tOq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"tOD" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/bigredv2/outside/filtration_cave_cas) -"tOh" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/cult, +/area/bigredv2/outside/marshal_office) +"tOG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"tOL" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"tOS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) "tOY" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"tPr" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) -"tQo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, -/area/bigredv2/caves/mining) -"tQw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"tRd" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - dir = 5; - icon = 'icons/obj/pipes/pipes.dmi'; - icon_state = "intact"; - name = "Pipe" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"tRz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"tPj" = ( +/obj/item/trash/chips, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tPs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"tPL" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/e) +"tQJ" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves/eta/xenobiology) +"tQO" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"tRI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"tQQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"tRE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"tRK" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/bigredv2/caves/lambda/breakroom) +"tRW" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"tSx" = ( +/obj/item/explosive/grenade/baton, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) -"tRV" = ( -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; - pixel_x = 4; - pixel_y = 15 +"tSF" = ( +/obj/structure/surface/table, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"tSG" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/item/ore/uranium{ - desc = "You feel fuzzy just looking at it.... it's slightly lumanesant" +/obj/structure/window/reinforced/tinted, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"tSX" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"tTe" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"tUO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/general_offices) +"tUP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"tVa" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"tVn" = ( +/obj/item/tool/lighter/zippo, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"tVo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"tVs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/turf/open/floor/red, +/area/bigredv2/outside/marshal_office) +"tVu" = ( +/obj/structure/bed/chair, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tVK" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tVR" = ( +/obj/effect/decal/cleanable/blood{ + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"tSI" = ( -/obj/structure/platform/shiva{ +"tWf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"tUL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"tVn" = ( -/obj/item/tool/lighter/zippo, /turf/open/floor, /area/bigred/ground/garage_workshop) -"tVp" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"tWm" = ( +/obj/structure/platform_decoration/shiva{ + dir = 8 }, -/area/bigredv2/outside/space_port_lz2) -"tVy" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 +/obj/structure/platform_decoration/shiva, +/obj/item/stack/cable_coil, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"tXc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"tXs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_sw) +"tXv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"tXw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/mining) -"tWf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"tXx" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"tWS" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" + dir = 1 }, -/area/bigredv2/caves/mining) -"tYE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northwest, +/area/bigredv2/caves/lambda/research) +"tXy" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/floor{ - icon_state = "podhatchfloor" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tYg" = ( +/obj/item/trash/popcorn, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/virology) +"tYh" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) -"tZq" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"tYC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/engineering) -"tZU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/mineral/processing_unit, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"tYJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"tZC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/bigredv2/caves/mining) -"uaB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"tZG" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"tZX" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/se) +"uah" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, -/area/bigredv2/caves/lambda/research) +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "uaG" = ( /turf/open/gm/river, /area/bigredv2/outside/engineering) -"ubY" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"ubG" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ubN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves/mining) +/turf/open/floor/darkpurplecorners2/west, +/area/bigredv2/caves/lambda/xenobiology) +"ucb" = ( +/obj/structure/machinery/light, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uce" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"uct" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "ucH" = ( /turf/open/mars_cave, /area/bigredv2/caves_virology) -"ucN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" +"ucM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves_se) -"udi" = ( -/obj/item/folder/yellow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/living) +"ucO" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/lambda/xenobiology) +"ucR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Machine room" }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"udQ" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"udZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"ueh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"ufo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"ues" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"ufu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ueI" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 8; + pixel_y = 32 }, -/area/bigredv2/caves/mining) -"ufB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"ufs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/eta/research) -"ufD" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/obj/structure/machinery/door_control{ + id = "Operations"; + name = "Storm Shutters"; + pixel_y = -32 }, -/area/bigredv2/outside/sw) -"ugH" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "white" +/obj/effect/landmark/good_item, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"ufH" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ufJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/bigredv2/outside/virology) -"ugW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"ufW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"ugG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Tool Storage" }, -/area/bigredv2/caves/mining) -"uij" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"ugL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) -"uiE" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"uhf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uhB" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"uhW" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"uhZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"uiw" = ( +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_lambda) +"uiN" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/handset, +/turf/open/floor/darkblue2/north, +/area/bigredv2/caves/eta/research) +"uiX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"ujm" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"ukA" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ujC" = ( +"ukE" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"ukS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"ukV" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"ulb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/caves_lambda) -"ujD" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/filtration_cave_cas) -"ujU" = ( -/obj/item/ammo_magazine/handful/shotgun/custom_color{ - color = "#6666ff"; - desc = "A handful of ulta rare 12 gauge HE/FRAG ammunition to seriously fuck shit up with. Too bad its behind this indestructable window....."; - name = "handful of HE/FRAG shells (12g)"; - pixel_y = 3 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, -/area/bigredv2/oob) -"ulk" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ull" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/eta) +"ulu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"ulC" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/bigredv2/caves/mining) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "ulH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"umK" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +"ulN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"umj" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/structure/machinery/door/window, +/obj/structure/window/reinforced, +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"umk" = ( +/obj/item/ore{ + pixel_x = -1 }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"unC" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/telecomm/lz2_cave) -"uoj" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "asteroidwarning" +"umo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"ump" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_lambda) -"upy" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"umu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"umA" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"umV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"unf" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Operations"; - pixel_y = 24 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"unk" = ( +/turf/open/floor/darkpurple2/north, +/area/bigredv2/caves/lambda/xenobiology) +"uny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"unG" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"unH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"unW" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"unX" = ( +/obj/structure/curtain/medical, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/caves/lambda/virology) +"uoi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"uor" = ( +/obj/structure/machinery/door_control{ + id = "eta"; + name = "Eta Lockdown"; + pixel_x = 30; + throw_range = 15 + }, +/turf/open/floor/darkblue2/east, +/area/bigredv2/caves/eta/research) +"uou" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/ne) +"uoH" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/warnplate/north, +/area/bigredv2/caves/lambda/xenobiology) +"uoJ" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"uoP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp{ + pixel_y = 15 + }, +/obj/item/paper/bigred/lambda, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"uoU" = ( +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"upa" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"upc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"upi" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves/mining) +"upz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) "upE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigred/ground/garage_workshop) -"upV" = ( +"upK" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"uqq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"uqr" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"uqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"uqD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/outside/admin_building) -"uql" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"uqK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/phone_base/colony_net{ + phone_category = "Lambda Labs"; + phone_id = "Surgery"; + pixel_y = 24 }, -/area/bigredv2/outside/engineering) -"uqB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"uqM" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_se) +"urg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dormitories" }, -/area/bigredv2/caves_sw) -"urQ" = ( -/obj/item/folder/yellow, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"urp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"usg" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" +"urA" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"urK" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"urY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/outside/c) +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"usp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"usq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) "ust" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -37354,50 +26425,63 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"usG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_east) -"uuo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/outside/lambda_cave_cas) -"uuO" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"usO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"usR" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"uvl" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"utb" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"utd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"utY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"uuR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/lambda/xenobiology) -"uvz" = ( -/turf/open/floor{ +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/caves_lambda) +"uuS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigred/ground/garage_workshop) -"uvB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/sw) -"uvZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" + name = "\improper Chief Engineer's Office" }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) +"uvp" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"uvD" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"uww" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"uwA" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/engineering) "uxl" = ( /obj/structure/window/framed/solaris, /obj/effect/decal/cleanable/molten_item, @@ -37407,71 +26491,134 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) +"uxu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/sw) "uxx" = ( /obj/structure/machinery/door/poddoor/almayer/closed, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"uyk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/lz2_west_cas) -"uzv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"uxA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/lawyer/bluejacket, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"uxF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"uyf" = ( +/obj/structure/cable{ + icon_state = "1-4" }, -/area/bigredv2/outside/lz1_north_cas) -"uzB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/lantern, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/cable{ + icon_state = "4-10" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uAk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "\improper Engineering Secure Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"uyO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"uAL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"uzY" = ( /obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Eta Labs"; + phone_color = "Blue"; + phone_id = "Director" + }, +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/research) +"uAc" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/se) +"uAv" = ( +/obj/structure/machinery/botany/editor, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 +/turf/open/floor/whitegreen_v/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"uAO" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"uAX" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"uAZ" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"uBk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double{ + dir = 1 }, -/turf/open/floor{ +/obj/effect/decal/cleanable/blood{ dir = 8; - icon_state = "darkyellow2" + icon_state = "gib6"; + layer = 4; + pixel_x = 14; + pixel_y = 3 }, -/area/bigredv2/outside/engineering) +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "uBo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/moneybag, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"uCa" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"uBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"uCz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"uCS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"uDa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"uCD" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "reactor" +/turf/open/floor/darkred2/northeast, +/area/bigredv2/caves/eta/xenobiology) +"uDd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/telecomm/lz2_cave) "uDn" = ( /obj/structure/sign/safety/west, /obj/structure/sign/safety/hazard{ @@ -37479,34 +26626,42 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"uDI" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A pipe."; - icon = 'icons/obj/pipes/manifold.dmi'; - icon_state = "map"; - name = "Pipe manifold" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"uDZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"uDS" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"uEq" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) +"uEA" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"uEK" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"uES" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"uEY" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/bigredv2/caves/mining) -"uEB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uFa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/surface/table, +/obj/item/storage/box/m94, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "uFi" = ( /obj/item/paper/bigred/finance{ pixel_x = -9 @@ -37517,353 +26672,566 @@ /obj/structure/machinery/mill, /turf/open/floor, /area/bigred/ground/garage_workshop) -"uFD" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves/mining) -"uFF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +"uFq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"uFB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"uFE" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/admin_building) +"uGb" = ( +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) +"uGd" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"uGz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor{ - icon_state = "darkredcorners2" +"uGw" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/bigredv2/caves/eta/xenobiology) -"uGG" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"uGU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"uHE" = ( -/obj/item/tool/warning_cone{ - pixel_y = 19 +"uHi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"uHx" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"uHD" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"uHL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"uHN" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "uHQ" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"uHT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"uIa" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +"uHS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"uIB" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigred/ground/garage_workshop) -"uIR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"uIl" = ( +/obj/structure/machinery/vending/coffee{ + icon_state = "coffee-broken"; + stat = 1 }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"uJu" = ( -/obj/item/robot_parts/robot_component/diagnosis_unit{ - pixel_y = 15 +"uIn" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uIr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"uJe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"uJp" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uJz" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/ne) +"uJA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"uJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/bigredv2/caves/mining) -"uJF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"uKl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"uKB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 }, -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"uJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/decal/cleanable/vomit, +/obj/structure/machinery/light/built{ + dir = 1 }, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"uKD" = ( +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"uKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"uKH" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +"uLt" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"uLM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "darkred2" + name = "\improper Operations Armory" }, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"uNW" = ( -/obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"uOl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"uLP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"uOD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"uMi" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/nw) +"uMp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"uPm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"uMu" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves_se) -"uPF" = ( -/obj/structure/machinery/filtration/console{ - pixel_y = 13 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"uMD" = ( +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"uMH" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"uNd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"uPK" = ( -/obj/structure/platform/shiva{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/engineering) +"uNy" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/structure/platform/shiva, -/obj/structure/machinery/light/small/built{ +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"uNz" = ( +/obj/structure/pipes/vents/scrubber/on{ dir = 4 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"uNE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Filtration"; + pixel_y = 24 }, -/area/bigredv2/caves/lambda/research) -"uQd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"uNL" = ( +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"uNV" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uOd" = ( +/turf/open/floor/carpet5_1/west, +/area/bigredv2/outside/admin_building) +"uOP" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"uOV" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_telecomm_cas) +"uPi" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"uPD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whitepurple, +/area/bigredv2/caves/lambda/research) +"uPU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"uQb" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/se) +"uQp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz1_north_cas) +"uQL" = ( +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/breakroom) +"uQM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic Chemistry" }, -/area/bigredv2/outside/engineering) +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"uQO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) "uRE" = ( /obj/effect/landmark/nightmare{ insert_tag = "medbay-passage" }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) -"uSf" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/bigredv2/oob) -"uSt" = ( +"uRG" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"uRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, /area/bigredv2/caves/eta/research) -"uSC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" +"uRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/bigredv2/outside/space_port_lz2) -"uSL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"uRT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/outside/engineering) -"uTD" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves/mining) +"uSy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/outside/filtration_plant) -"uUV" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/greengrid, -/area/bigredv2/caves/lambda/research) -"uVe" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"uST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/bigredv2/outside/filtration_cave_cas) -"uVL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engine Reactor Control" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"uVW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"uSV" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/obj/item/tool/lighter/random, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"uTi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engine Reactor Control" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"uWo" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +"uTO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"uTP" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"uUa" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/bigredv2/caves/eta/living) -"uXW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"uUd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"uUk" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/bigredv2/caves_research) -"uYb" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port_lz2) +"uUu" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"uUV" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/greengrid, +/area/bigredv2/caves/lambda/research) +"uVc" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"uVg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_sw) -"uYH" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/e) +"uVB" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/outside/lambda_cave_cas) +"uVR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"uVV" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"vbg" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"uWi" = ( /obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/alienjar, +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/caves/eta/xenobiology) +"uWj" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"uWq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_color = "blue"; - phone_id = "Administration" +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"uWu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Greenhouse Storage" }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" +/turf/open/floor/delivery, +/area/bigredv2/outside/hydroponics) +"uWv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"uWK" = ( +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/lambda/virology) +"uXo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 7 }, -/area/bigredv2/outside/admin_building) -"vbi" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"uXr" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"uXF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/lambda/research) -"vcm" = ( +"uYr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Courtroom" }, -/area/bigredv2/outside/lambda_cave_cas) -"vct" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"uYy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uZd" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 }, -/area/bigredv2/outside/lz2_south_cas) -"vcA" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"uZm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"uZw" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"uZJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/weapon/gun/rifle/mar40/lmg, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"uZQ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_west_cas) +"uZW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"vdS" = ( -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -10; - pixel_y = 2 +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"vbt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vbB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"vbJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/hatchet, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"vcT" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"vdb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/darkyellow2/west, +/area/bigredv2/caves/eta/research) +"vdm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" }, -/area/bigredv2/caves/mining) +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/caves/lambda/virology) +"vdr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/engineering) +"vdI" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"vdJ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/telecomm/n_cave) +"vdV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"veb" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) "vec" = ( /obj/structure/pipes/standard/tank, /turf/open/floor/plating, @@ -37871,127 +27239,227 @@ "vex" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) -"vfI" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" +"veB" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/rad, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"veU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/area/bigredv2/outside/eta) -"vfQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vfm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"vgc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/podhatch/northeast, +/area/bigredv2/caves/lambda/research) +"vge" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper General Store Maintenance" }, -/area/bigredv2/caves/mining) -"vgZ" = ( -/obj/structure/platform/shiva, -/obj/structure/platform/shiva{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/outside/general_store) +"vgA" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"vgH" = ( +/obj/structure/machinery/vending/sovietsoda{ + icon_state = "sovietsoda-broken"; + stat = 1 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"vhC" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "tcomms_open" }, -/area/bigredv2/caves/lambda/research) -"vhF" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"vhD" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/research) +"vhK" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vhW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vii" = ( +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"vis" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vit" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"viD" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"viT" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"vjf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"vjj" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"vjr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vjN" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor{ +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"viN" = ( -/obj/structure/machinery/door_control{ - id = "workshop_br_g"; - name = "Workshop Garage Lockdown"; - pixel_x = -28 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" + pixel_x = -30 }, -/area/bigredv2/outside/nw) -"vjc" = ( -/obj/item/tool/warning_cone{ - pixel_x = -13; - pixel_y = 11 +/turf/open/floor/darkyellow2/northwest, +/area/bigredv2/outside/filtration_plant) +"vjZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/darkredcorners2/north, +/area/bigredv2/outside/admin_building) +"vkc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "vko" = ( /obj/structure/platform, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"vld" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"vkz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/outside/filtration_cave_cas) -"vlr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"vlx" = ( +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/breakroom) +"vlD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vlE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/bigredv2/caves/mining) -"vlA" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 + pixel_x = 3; + pixel_y = 15 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, +/turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"vmm" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"vlT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 4; + pixel_y = 10 }, -/area/bigredv2/outside/c) -"vmC" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -3; + pixel_y = 16 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/closet/crate/freezer, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 7 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vme" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/lambda/virology) -"vmI" = ( -/obj/item/device/flashlight/lantern, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vmq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 8 }, -/area/bigredv2/caves/mining) +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"vmE" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) "vmL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"vmQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"vmR" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 + }, +/obj/item/weapon/twohanded/spear{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) "vmV" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = -12; @@ -38010,125 +27478,167 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vnx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"vmX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz1_north_cas) +"vmY" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/bigredv2/caves/lambda/xenobiology) +"vnl" = ( +/obj/item/explosive/grenade/baton{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"vnS" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vnp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/bigredv2/outside/telecomm) -"voz" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vnP" = ( +/obj/structure/prop/almayer/missile_tube{ + desc = "A detached drill arm of a big old Seegson D-602 Mining Robot. Seems to be jury rigged to run without the main robot assembly."; + name = "\improper Massive mining drill"; + pixel_y = 12 }, -/area/bigredv2/outside/library) -"vpu" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/item/ore{ + pixel_x = 13; + pixel_y = 12 }, +/obj/structure/cable, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"vpw" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ +"vop" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/virology) +"voX" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"vpd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"vps" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whiteyellow/north, +/area/bigredv2/caves/lambda/xenobiology) +"vqb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"vqn" = ( +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"vqr" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"vpx" = ( -/obj/structure/platform, -/obj/structure/flora/jungle/planttop1{ - pixel_y = 10 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"vpY" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "eta"; - name = "Eta Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" +"vqD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/recharger, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"vqW" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"vrk" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"vrl" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vrp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/cleanable/blood, +/obj/item/alien_embryo, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vrC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"vrI" = ( +/obj/structure/fence, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"vrO" = ( +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/eta) -"vqY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_research) -"vrj" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"vrt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" +"vsj" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"vsL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/eta) -"vrA" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/nw/ceiling) +"vsQ" = ( +/obj/item/weapon/broken_bottle, /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"vsb" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vtu" = ( +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"vtz" = ( /obj/structure/surface/table, +/obj/item/bodybag/cryobag, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"vty" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Eta Lab Cell" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/caves/eta/xenobiology) -"vuz" = ( -/obj/structure/machinery/door_control{ - id = "eta"; - name = "Eta Lockdown"; - pixel_x = 30; - throw_range = 15 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"vtC" = ( +/obj/structure/largecrate/guns, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"vtN" = ( +/turf/open/floor/darkred2, /area/bigredv2/caves/eta/research) -"vvi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz1containers" - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +"vtY" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/lz1_north_cas) +"vuE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/space_port) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"vuJ" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/bigredv2/caves/lambda/research) +"vvf" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/marshal_office) "vvj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"vvw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) "vvL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/minecart_tracks{ @@ -38140,463 +27650,805 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vvR" = ( -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"vwp" = ( +/obj/structure/surface/table, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"vwq" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"vws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) "vwt" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /obj/effect/decal/warning_stripes, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"vwP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +"vwu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"vwx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz1_north_cas) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"vwB" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"vwM" = ( +/obj/structure/machinery/photocopier{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"vwQ" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"vwZ" = ( +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 + }, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"vxu" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vxz" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) "vxQ" = ( /obj/item/tool/pickaxe/gold, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"vyc" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" +"vxR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/bigredv2/outside/filtration_plant) -"vyl" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/caves_lambda) +"vxY" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" + }, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"vyf" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/telecomm/n_cave) +"vyq" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"vyt" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"vyA" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vyO" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) "vyV" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"vzL" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"vzR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"vAa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Workshop" }, -/area/bigredv2/caves/mining) +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/engineering) "vAs" = ( /obj/structure/window/framed/solaris/reinforced/tinted, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"vAy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_north) -"vBy" = ( -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +"vAu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/bigredv2/caves_research) -"vBY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -32 }, -/area/bigredv2/outside/marshal_office) -"vCd" = ( -/obj/structure/surface/rack, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = 8 +/obj/structure/machinery/light/built, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/caves/lambda/virology) +"vAx" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) +"vAF" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -9; + pixel_y = 13 }, -/obj/item/weapon/twohanded/lungemine{ - pixel_y = -7 +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vCU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"vAQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz2_south_cas) -"vEF" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vBi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/caves/eta/living) +"vBA" = ( /obj/structure/surface/table, -/obj/item/clothing/head/hardhat/orange{ - pixel_y = 10 +/obj/item/tool/surgery/bonesetter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"vBM" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"vBU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"vBX" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, +/obj/structure/cable, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"vCz" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"vCJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) -"vEU" = ( +"vDc" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"vDd" = ( +/obj/item/stack/sheet/glass, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"vDn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_10" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"vDA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"vDC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/s) -"vFP" = ( +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/research) +"vDI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"vEb" = ( /obj/structure/surface/table, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Eta Labs"; - phone_color = "red"; - phone_id = "Security" +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 11 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves/mining) +"vEg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/eta/storage) -"vFS" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/eta/living) -"vGP" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/redfull/northwest, +/area/bigredv2/caves/eta/research) +"vEr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/breakroom) +"vEv" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -24 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/virology) +"vEL" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"vEM" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/escapepod/floor5, +/area/bigredv2/oob) +"vEO" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/caves/lambda/xenobiology) +"vEQ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"vFe" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"vFh" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vFq" = ( +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"vFz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"vFO" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"vGv" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) +"vGx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/door_control{ + id = "Spaceport"; + name = "Storm Shutters"; + pixel_x = 32 }, +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"vGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"vGJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"vGN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"vHb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/bigredv2/caves/eta/research) +"vHj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) -"vIP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +"vHT" = ( +/turf/open/floor/carpet9_4/west, +/area/bigredv2/outside/bar) +"vHV" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/engineering) -"vJi" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating/warnplate/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"vIc" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 8 }, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"vIi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"vIu" = ( +/obj/structure/platform{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"vJN" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"vIx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"vKv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/space_port_lz2) -"vLd" = ( -/turf/open/floor, -/area/bigred/ground/garage_workshop) -"vLW" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/hvac{ - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/space_port) -"vMi" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/filtration_plant) -"vMj" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/obj/item/paper/bigred/union, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vJE" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves/lambda/research) +"vJO" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/outside/lz2_west_cas) -"vMm" = ( +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/virology) +"vJV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"vKj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"vKq" = ( /obj/effect/decal/cleanable/blood/drip{ - pixel_y = 13 - }, -/obj/structure/closet/crate/miningcar/yellow, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" + pixel_x = 6 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"vNh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"vKr" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 }, -/area/bigredv2/caves_virology) -"vNm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) +"vKI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vKM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, -/area/bigredv2/caves_virology) -"vND" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vKN" = ( +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/caves/eta/storage) +"vKY" = ( +/obj/structure/machinery/light, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/bigredv2/outside/admin_building) -"vNT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"vOs" = ( -/obj/structure/coatrack{ - pixel_x = 12 - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/windbreaker/windbreaker_gray{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "wood" +"vLb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vLd" = ( +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"vLt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/admin_building) -"vOD" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"vLv" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"vLD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/flour, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"vLE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Break Room" }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) -"vPP" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 +"vLI" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/caves/eta/research) +"vLU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"vMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/item/tool/pickaxe/drill{ + pixel_y = -8 }, +/obj/item/tool/pickaxe/drill, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vPZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +"vMQ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/bigredv2/outside/marshal_office) -"vQu" = ( +/obj/structure/pipes/valve/open, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vNt" = ( +/turf/open/floor/warnwhite/north, +/area/bigredv2/outside/virology) +"vNC" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vNN" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"vNZ" = ( +/turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) -"vQU" = ( -/obj/effect/decal/cleanable/liquid_fuel, +"vOi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"vOW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vOZ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "\improper Engine Reactor" }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) -"vQZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" +"vPm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vPy" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"vPF" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/bigredv2/caves_research) -"vRe" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"vPK" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"vPM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"vRf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon_state = "darkyellow2" + name = "\improper Medical Clinic Treatment" }, -/area/bigredv2/outside/filtration_plant) -"vRs" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/solaris/reinforced, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"vPN" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"vRK" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"vPW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/lambda/xenobiology) -"vRR" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"vPY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_north) -"vRS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" }, -/area/bigredv2/outside/marshal_office) -"vSU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"vQd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"vTh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"vQg" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/cable, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/obj/structure/cable{ + icon_state = "11-2" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vTF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"vVc" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/bigredv2/caves/lambda/xenobiology) -"vVl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dormitories Toilet" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"vQE" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"vRd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vRo" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/shower{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/engineering) +"vRs" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"vVF" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -5; - pixel_y = 10 +"vRE" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"vRI" = ( +/obj/item/folder/yellow, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"vRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"vRO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkgreencorners2/west, +/area/bigredv2/caves/eta/research) +"vRP" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz1_north_cas) +"vSa" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vSb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"vSB" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/s) +"vTo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/bigredv2/caves/mining) -"vVZ" = ( -/turf/closed/wall/solaris, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"vTs" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"vTI" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_lambda) +"vTR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) -"vWi" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +"vTS" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"vTT" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"vUe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"vWX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"vUj" = ( +/obj/item/cell/hyper/empty, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"vUl" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"vUp" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) -"vXp" = ( +"vUq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"vVp" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) +"vVK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"vVQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"vVV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/nw) -"vYw" = ( +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"vVZ" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/filtration_cave_cas) +"vWg" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/e) +"vWm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/floor/darkpurple2/west, +/area/bigredv2/caves/lambda/research) +"vWs" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"vXi" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"vYC" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"vYQ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"vYU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wam" = ( +"vZf" = ( +/obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"waJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) -"waN" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"waX" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"vZE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"wbp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) +"wap" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves) +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"wat" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/s) +"waD" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whiteyellow/northeast, +/area/bigredv2/caves/lambda/xenobiology) +"wbl" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/w) +"wbu" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) "wbx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -38607,36 +28459,61 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wcs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +"wce" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/bigredv2/outside/lz1_north_cas) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves/mining) "wcw" = ( /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) -"wdi" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"wdM" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"wcx" = ( +/obj/structure/machinery/light, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"wcN" = ( +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_virology) +"wdt" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000 }, -/obj/structure/platform_decoration/kutjevo/rock{ +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"wdv" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"wdE" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"wdG" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"wdU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/space) +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"wej" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning, +/area/bigredv2/caves_lambda) +"weu" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) "weO" = ( /obj/structure/closet/secure_closet/medical_wall{ pixel_y = -5 @@ -38647,143 +28524,326 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"wfm" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 +"wfr" = ( +/turf/open/floor/whitepurplefull, +/area/bigredv2/caves/lambda/xenobiology) +"wfA" = ( +/turf/open/floor/darkblue2/northwest, +/area/bigredv2/outside/admin_building) +"wfI" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"wgj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"wgk" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/bigredv2/outside/c) +"wgp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"wgD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/research) +"wgR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"whc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"whe" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"whv" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"whA" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/n) +"whH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"whI" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"whQ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"whS" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"wia" = ( +/obj/structure/machinery/vending/snack{ + icon_state = "snack-broken"; + stat = 1 + }, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"wih" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/lambda/research) +"wiq" = ( +/obj/structure/machinery/conveyor_switch{ + id = "anomalybelt" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/north, +/area/bigredv2/caves/lambda/research) +"wiL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wiR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"wjc" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" + }, +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "A big air filter."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "fuel_enhancer"; + layer = 5; + name = "Air filter"; + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + desc = "Critical part of an HVAC system. Compresses refridgerant to send off to air cooling coils."; + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + layer = 4; + name = "\improper Air Condenser"; + pixel_x = -5; + pixel_y = 25 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/turf/open/shuttle/escapepod/floor1, +/area/bigredv2/oob) +"wjj" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/xenobiology) +"wjn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wjy" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"wfx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "darkgreencorners2" +"wld" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/caves/eta/research) -"wfC" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"wln" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"wlo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/bigredv2/caves_se) -"wfR" = ( -/obj/structure/cable{ - icon_state = "5-8" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/structure/cable{ - icon_state = "5-6" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"wly" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/storage) +"wlK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"wlU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"wlX" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"wma" = ( +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"wmi" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "filtration_restored" }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/s) +"wmq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"wmu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"whi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +"wmE" = ( +/obj/structure/surface/table/holotable/wood, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lambda Labs"; + phone_color = "blue"; + phone_id = "Administration" }, -/area/bigredv2/outside/filtration_cave_cas) -"whZ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 }, -/area/bigred/ground/garage_workshop) -"wix" = ( +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"wnj" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"wny" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" + dir = 4 }, -/area/bigred/ground/garage_workshop) -"wjW" = ( -/obj/structure/platform/shiva{ +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"woj" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"wop" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, -/area/bigredv2/caves/lambda/research) -"wko" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"woC" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"woI" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, -/area/bigredv2/caves/lambda/research) -"wlb" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"woP" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkyellow2/southeast, +/area/bigredv2/caves/eta/research) +"wpu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkish, +/area/bigredv2/caves/eta/storage) +"wpA" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "Eta Labs"; - phone_id = "Observation"; - pixel_x = -18 - }, -/turf/open/floor{ - dir = 10; - icon_state = "purple" - }, -/area/bigredv2/caves/lambda/research) -"wlE" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) -"wmh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6"; - pixel_y = -8 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wpE" = ( +/obj/item/trash/burger, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wni" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/bigredv2/caves/eta/xenobiology) -"wog" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"wpf" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" +"wpG" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"wpO" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/bigredv2/caves_north) -"wpT" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars, -/area/bigredv2/outside/w) -"wqG" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"wrz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"wqf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"wqC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/area/bigredv2/caves_lambda) +/turf/open/floor/darkredcorners2/east, +/area/bigredv2/outside/admin_building) +"wqL" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wqN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) "wrS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -38791,378 +28851,575 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wsu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"wrW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"wte" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wth" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/xenobiology) +"wtj" = ( +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wtr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"wty" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/lz2_west_cas) +"wtK" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -1; + pixel_y = 5 }, -/area/bigredv2/outside/filtration_plant) -"wtj" = ( -/turf/open/floor/plating, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"wtp" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" +"wtP" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/space_port_lz2) +"wtS" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"wtW" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"wul" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay" }, -/area/bigredv2/outside/engineering) -"wtJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2"; - pixel_x = -9; - pixel_y = 11 +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"wuA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1"; - pixel_x = 12; - pixel_y = 16 +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"wuL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wvj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/solid{ + dir = 1; + name = "\improper Dormitories Restroom" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"wvs" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 6 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"wuz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +"wvJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"wwx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wxC" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_east) +"wxN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/turf/open/floor/whiteblue/southeast, /area/bigredv2/outside/medical) -"wuC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/flare{ - pixel_y = -7 +"wyh" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wyC" = ( +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"wyJ" = ( +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"wyN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) -"wvk" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"wyP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/engineering) +"wyZ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"wzm" = ( +/obj/structure/machinery/telecomms/server, +/turf/open/floor/podhatchfloor, +/area/bigredv2/caves/eta/storage) +"wzu" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"wzN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) +"wzP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/virology) -"wvR" = ( -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"wAe" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/bigredv2/caves/lambda/virology) -"wxo" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"wAt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/structure/machinery/computer/arcade, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"wAv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "200" }, -/area/bigredv2/outside/c) -"wzt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"wAy" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 150; + name = "Safe-Room intercom"; + pixel_y = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"wAI" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/marshal_office) +"wAM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"wzI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"wBi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/s) +"wAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wAO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/bigredv2/caves/eta/research) +"wAT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Eta Lab Security Office" }, -/area/bigredv2/outside/lz2_south_cas) -"wBq" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"wBs" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"wBC" = ( -/obj/structure/machinery/computer/area_atmos/area, -/obj/structure/surface/table, -/turf/open/floor{ +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) +"wBy" = ( +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"wCo" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"wDa" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; + pixel_x = 2; pixel_y = 6 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wDK" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"wFo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"wBL" = ( +/obj/structure/surface/table, +/obj/item/toy/sword, +/obj/item/toy/gun, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wBN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"wCv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) -"wFO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +"wCw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/caves/eta/living) -"wGr" = ( -/obj/structure/closet/firecloset/full, -/turf/open/mars, +"wCE" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) +"wCZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) -"wGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"wGF" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - icon_state = "asteroidwarning" +"wDf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/outside/se) -"wGJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wDk" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port_lz2) +"wEs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"wEB" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"wFd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/loadingarea/north, +/area/bigredv2/caves/eta/storage) +"wFp" = ( +/obj/structure/barricade/wooden, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"wFV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"wGV" = ( -/obj/item/tool/wrench, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +"wGa" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_research) +"wGr" = ( +/obj/structure/closet/firecloset/full, +/turf/open/mars, /area/bigredv2/outside/c) -"wHx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/bigredv2/outside/admin_building) -"wIw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" +"wGu" = ( +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/space_port) +"wGI" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rad_haz{ + pixel_y = -32 }, -/area/bigredv2/caves_east) -"wIP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"wHc" = ( +/obj/structure/closet/radiation, +/turf/open/floor/delivery, +/area/bigredv2/outside/engineering) +"wHB" = ( +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) +"wIj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) +"wIl" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"wIS" = ( +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) "wJd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"wKe" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/filtration_plant) -"wKf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"wKr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"wJV" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"wKD" = ( +/turf/open/mars_cave/mars_cave_23, +/area/bigredv2/caves_se) +"wKJ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"wKW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/area/bigredv2/outside/engineering) -"wKx" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"wLt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) +"wLG" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"wLK" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; + dir = 1; + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "4-8"; + name = "heavy duty power cable" }, -/area/bigredv2/outside/lz1_north_cas) -"wLD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"wLU" = ( +"wLX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) -"wMg" = ( -/obj/item/tool/warning_cone{ - pixel_x = 5; - pixel_y = 13 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_plant) -"wMi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"wMp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_north) +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"wMC" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"wMP" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "wMQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor, /area/bigred/ground/garage_workshop) -"wNw" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ +"wNA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/pistol/m1911, +/turf/open/floor/plating, +/area/bigredv2/caves/mining) +"wNH" = ( +/obj/structure/machinery/alarm{ dir = 4; - id = "lambda"; - name = "Lambda Lockdown" + pixel_x = -30 + }, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) +"wNX" = ( +/obj/structure/surface/table, +/obj/item/toy/prize/mauler, +/obj/item/toy/prize/odysseus, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wOn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/obj/item/reagent_container/food/drinks/cans/cola, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wOF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_se) +"wOK" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/outside/filtration_plant) +"wOZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"wPi" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"wPm" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/engineering) +"wPs" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/caves/lambda/virology) +"wPw" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Lambda Lab Anomaly Chamber" }, -/area/bigredv2/outside/lambda_cave_cas) -"wNA" = ( +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"wPK" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/pistol/m1911, -/turf/open/floor/plating, +/turf/open/floor/darkblue2/west, +/area/bigredv2/caves/eta/storage) +"wPQ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"wPk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"wQg" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"wQk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/bigredv2/caves/eta/xenobiology) -"wQa" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 9; - pixel_y = 11 +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"wQv" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves/mining) +"wQw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/structure/bed/roller, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wQx" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/area/bigredv2/caves/mining) -"wQC" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -6; + pixel_y = 12 }, -/area/bigredv2/caves_lambda) -"wQL" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/ore{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/bigredv2/outside/engineering) +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves/mining) +"wQz" = ( +/turf/open/floor/darkgreencorners2/east, +/area/bigredv2/caves/lambda/virology) +"wQA" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) +"wQU" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"wQX" = ( +/obj/structure/foamed_metal, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) "wQZ" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) -"wRH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"wRh" = ( +/turf/open/floor/whitepurple/north, +/area/bigredv2/caves/lambda/research) +"wRi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/caves/mining) -"wRN" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wRq" = ( +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"wRw" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Cell" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/xenobiology) +"wRA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/caves_lambda) +"wRD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"wRE" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/caves/lambda/virology) +"wRT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"wRZ" = ( +/turf/open/floor/darkyellowcorners2, +/area/bigredv2/caves/eta/living) "wSj" = ( /obj/structure/sign/safety/life_support, /obj/structure/sign/safety/maint{ @@ -39170,217 +29427,309 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) -"wSp" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, -/area/bigredv2/caves/mining) -"wUo" = ( -/obj/item/stack/sheet/wood{ - pixel_y = -8 +"wSs" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wSN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wTd" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"wTg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab" }, -/area/bigredv2/caves/mining) -"wUD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/research) +"wTi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/sosjerky, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wTj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/item/weapon/shield/riot, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"wTo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/caves_se) -"wVd" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"wTz" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"wTJ" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/area/bigredv2/caves/mining) -"wVQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"wUg" = ( +/obj/item/device/flashlight/lantern, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/ne) +"wUj" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/bigredv2/caves/mining) -"wVX" = ( -/obj/structure/machinery/vending/sovietsoda{ - icon_state = "sovietsoda-broken"; - stat = 1 +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wUq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"wUu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"wUL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz1north_mining" }, -/area/bigredv2/outside/filtration_plant) -"wWK" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/space_port) +"wUS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"wUZ" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/lambda_cave_cas) +"wVs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_east) -"wWN" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"wVO" = ( +/obj/structure/surface/table, +/obj/item/spacecash/c100, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 12 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"wXg" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"wVS" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/eta/living) +"wVV" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargo_containers" }, -/area/bigredv2/outside/lz1_north_cas) -"wXh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/closed/wall/solaris, +/area/bigredv2/outside/cargo) +"wVZ" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port_lz2) +"wWq" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigred/ground/garage_workshop) +"wWr" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/oob) +"wWs" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"wWE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/elevatorshaft/north, +/area/bigredv2/caves/lambda/breakroom) +"wWG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"wXb" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) "wXz" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/research) -"wXN" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/bar) +"wXE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "wXT" = ( /obj/structure/closet/crate/internals, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) -"wYf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/bigredv2/outside/filtration_plant) -"wZC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/eta) -"xaH" = ( -/turf/closed/wall/wood, -/area/bigredv2/caves_sw) -"xbV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/outside/lz1_north_cas) -"xck" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"wXV" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/area/bigredv2/caves/mining) -"xcw" = ( -/turf/open/floor{ +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"wXZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/caves/eta/research) +"wYt" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_research) +"wZp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A heavy duty power cable for high voltage applications"; dir = 1; - icon_state = "darkyellowcorners2" + icon = 'icons/obj/pipes/power_cond_heavy.dmi'; + icon_state = "1-2"; + name = "heavy duty power cable" }, -/area/bigredv2/outside/engineering) -"xcA" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"wZF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"wZL" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/c) +"wZU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/virology) +"wZV" = ( +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) -"xej" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"xeM" = ( +"xaj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"xaH" = ( +/turf/closed/wall/wood, +/area/bigredv2/caves_sw) +"xbf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/bigredv2/outside/filtration_plant) -"xeN" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/caves/mining) +"xbm" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/virology) +"xbt" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xbv" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;200" }, -/area/bigredv2/outside/filtration_plant) -"xfi" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "Solaris Ridge"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_x = -18 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"xbT" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"xfx" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +"xcd" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe{ + pixel_y = -7 + }, +/obj/item/tool/pickaxe{ + pixel_y = -3 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 4 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xfN" = ( -/obj/structure/platform_decoration/shiva{ +"xcp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"xcx" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"xcT" = ( +/obj/structure/largecrate/guns, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot, +/area/bigredv2/caves/eta/storage) +"xdb" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/eta) +"xdi" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform_decoration/shiva{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/closet/cabinet, +/obj/item/disk/nuclear, +/obj/item/weapon/gun/pistol/vp70, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/wood, +/area/bigredv2/caves/eta/living) +"xdl" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) +"xds" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves/mining) +"xdt" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/freezerfloor, +/area/bigredv2/caves/lambda/xenobiology) +"xdR" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xdX" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/baton/loaded, +/obj/item/weapon/twohanded/spear{ + pixel_x = -16; + pixel_y = -9 }, -/area/bigredv2/caves/lambda/research) -"xfW" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/bigredv2/caves/eta/living) -"xgi" = ( /obj/effect/decal/cleanable/blood{ dir = 8; icon_state = "gib6"; @@ -39388,187 +29737,350 @@ pixel_x = 12; pixel_y = 3 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"xgw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" +"xed" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/bigredv2/outside/lz2_south_cas) -"xhf" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port_lz2) +"xei" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"xhy" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"xem" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) +"xeX" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/admin_building) +"xfn" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_virology) +"xfo" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/hydroponics) +"xfw" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, +/obj/item/weapon/baseballbat, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"xhB" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"xfy" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" }, +/turf/open/floor/carpet5_1/west, +/area/bigredv2/caves/eta/living) +"xfG" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/darkred2/north, +/area/bigredv2/caves/eta/research) +"xfM" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Kitchen"; + name = "Storm Shutters"; + pixel_x = 32 + }, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"xfP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"xhU" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 27 +"xfU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "\improper Eta Lab Research Office" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"xgl" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"xgq" = ( +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/s) +"xhn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/caves/mining) -"xkq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/bigredv2/caves/eta/xenobiology) +"xhS" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/caves_research) -"xkE" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_north) +"xia" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/engineering) -"xkH" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/trash/cheesie, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xii" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + health = 25000 }, -/obj/structure/cable{ - icon_state = "4-10" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"xis" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/engineering) +"xjh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/bigredv2/caves/mining) -"xkR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib3"; - pixel_x = 17 +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) +"xjk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -9; - pixel_y = 13 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Lambda Checkpoint" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"xjv" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/se) +"xjV" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"xjW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xkb" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"xkn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"xmy" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"xkF" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/n) +"xkK" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/lz1_north_cas) +"xlg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xlr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/lz1_telecomm_cas) -"xmT" = ( -/obj/structure/platform/kutjevo/rock, -/obj/structure/platform/kutjevo/rock{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Eta Lab Relaxation" }, -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 1 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) +"xmo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Administration Wing" }, -/area/space) -"xmZ" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"xnL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window{ + dir = 2 }, -/area/bigredv2/outside/engineering) -"xpb" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +/obj/structure/foamed_metal, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chem_lock"; + name = "\improper Chemistry Lockdown" }, -/area/bigredv2/outside/lz2_south_cas) -"xpl" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whiteyellowfull, +/area/bigredv2/caves/lambda/xenobiology) +"xnW" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"xog" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/outside/ne) +"xoi" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"xpp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "small" }, -/area/bigredv2/caves/eta/research) +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) "xpG" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"xpL" = ( -/obj/item/tool/wirecutters, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"xpZ" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/n) +"xqh" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xqw" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -30 }, -/area/bigredv2/outside/c) +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"xqy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"xqG" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xqM" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/space_port) +"xqS" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves_north) +"xrj" = ( +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/breakroom) "xrp" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xrO" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +"xrz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"xrH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -9; + pixel_y = 13 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xsh" = ( -/obj/item/trash/eat, -/turf/open/floor{ - icon_state = "dark" +"xsj" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/space_port_lz2) +"xsA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xsI" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/engineering) -"xsR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xti" = ( +/turf/open/mars_cave/mars_cave_22, +/area/bigredv2/caves_east) +"xtp" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/area/bigredv2/outside/filtration_plant) -"xte" = ( +/turf/open/floor/white, +/area/bigredv2/caves/lambda/xenobiology) +"xtW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"xtB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/warning_cone, -/obj/structure/barricade/handrail/wire{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"xue" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/w) +"xun" = ( +/obj/effect/landmark/crap_item, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_se) +"xuB" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/queen_spawn, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"xuC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/outside/s) +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xuN" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 16; @@ -39583,239 +30095,409 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xuU" = ( -/obj/effect/landmark/crap_item, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_east) -"xvm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"xuW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"xwo" = ( -/obj/structure/disposalpipe/junction, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"xuX" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/warnwhite/southeast, +/area/bigredv2/caves/lambda/virology) +"xuY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/waffles, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/hydroponics) +"xvj" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lambda_cave_cas) +"xvl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/bigredv2/caves/mining) -"xwy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"xvo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"xvr" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/bigredv2/caves/lambda/breakroom) +"xvU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/cable, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/obj/structure/cable{ - icon_state = "11-2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"xwf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"xwi" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xwn" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"xwI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"xxV" = ( -/obj/structure/closet/crate, +"xxq" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"xxz" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/prop/alien/hugger, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/dorms) -"xya" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"xxO" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) +"xxS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"xxZ" = ( +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_sw) +"xyV" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/weapon/twohanded/spear{ - pixel_x = 5 +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"xzM" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_north) +"xzO" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xzS" = ( +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 13 }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xyu" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"xAa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib1" }, -/area/bigredv2/outside/marshal_office) -"xyz" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/stack/sheet/wood{ + pixel_y = -8 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"xze" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"xzi" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating{ +"xAd" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "platingdmg3" + health = 25000 }, -/area/bigredv2/caves/mining) -"xzs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"xAl" = ( +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves/mining) +"xAA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bar Backroom" }, -/area/bigredv2/caves/eta/living) -"xAh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) +"xAK" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_virology) +"xAN" = ( +/obj/structure/window/reinforced/toughened{ + dir = 1; + icon_state = "fwindow"; + pixel_y = 12 }, -/area/bigredv2/caves_se) -"xAp" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/structure/coatrack{ - pixel_x = -8; - pixel_y = 16 +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/obj/item/clothing/shoes/black{ - pixel_y = -7 +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreen2/northwest, +/area/bigredv2/caves/lambda/virology) +"xAZ" = ( +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/research) +"xBq" = ( +/obj/structure/cryofeed/right{ + name = "\improper coolant feed" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/outside/filtration_plant) +"xBB" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"xCo" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"xCz" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 }, -/area/bigredv2/outside/admin_building) -"xAv" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/xenobiology) +"xCA" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/filtration_plant) +"xCL" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/n) +"xCQ" = ( +/obj/structure/platform/shiva{ + dir = 8 }, +/obj/item/disk, +/turf/open/floor/bluegrid/bcircuitoff, +/area/bigredv2/caves/lambda/research) +"xCX" = ( +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_research) +"xDp" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/library) +"xDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) -"xBn" = ( -/obj/structure/platform{ - dir = 4 +"xDB" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"xDF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xDW" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/bigredv2/outside/admin_building) -"xBr" = ( -/obj/item/ore{ - pixel_x = 9 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"xEa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"xEg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"xEr" = ( +/turf/open/floor/darkblue2/southeast, +/area/bigredv2/caves/eta/storage) +"xEO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/bigredv2/caves/mining) -"xBS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xFe" = ( +/obj/structure/machinery/deployable/barrier, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Operations" }, -/area/bigredv2/outside/lz1_north_cas) -"xDO" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"xFD" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/area/bigredv2/oob) -"xEV" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/filtration_plant) -"xFS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkblue2/northeast, +/area/bigredv2/outside/admin_building) +"xFL" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 }, -/area/bigredv2/outside/engineering) +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"xGT" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" +"xGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/w) -"xIo" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/closet/crate, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/ap, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xGm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Lambda Lab Break Room" }, -/area/bigredv2/oob) -"xIv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Abandoned Mining Storage" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"xGO" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_research) +"xGS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"xHc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/w) +"xHm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"xIx" = ( -/obj/item/clothing/mask/gas, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/dark, +/area/bigredv2/caves/eta/research) +"xHH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Lambda Checkpoint" }, -/area/bigredv2/outside/filtration_plant) +/turf/open/floor/delivery, +/area/bigredv2/outside/lambda_cave_cas) +"xHI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/telecomm) +"xHJ" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_north) +"xHP" = ( +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/engineering) +"xHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/tool/extinguisher, +/turf/open/floor/asteroidwarning/north, +/area/bigred/ground/garage_workshop) +"xIp" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"xIC" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Engineering Landing Zone" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port_lz2) +"xIG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"xIN" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) "xIP" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) -"xJB" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) "xJC" = ( /obj/item/ore, /turf/open/mars, /area/bigredv2/outside/filtration_plant) -"xJP" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves/mining) -"xJT" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +"xJK" = ( +/obj/structure/pipes/vents/scrubber/on{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/virology) +"xJO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -3; + pixel_y = 11 }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) "xKb" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) +"xKq" = ( +/obj/item/weapon/shield/riot, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xKr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) "xKG" = ( /obj/structure/bed/sofa/south/grey/right{ pixel_y = 6 @@ -39823,62 +30505,97 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) -"xLM" = ( +"xKI" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Large Cables"; + pixel_y = 12 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves/mining) +"xKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"xKX" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/lz2_cave) +"xLi" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_east) +"xLD" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/red/southwest, +/area/bigredv2/outside/lambda_cave_cas) +"xMf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"xMl" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/closet/crate/miningcar/yellow{ + layer = 3 }, -/area/bigredv2/caves/mining) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"xMo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab" + }, +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/living) "xMr" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) -"xMx" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/pistol/holdout, -/obj/structure/machinery/light, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"xMT" = ( -/obj/structure/closet, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/ore{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"xMU" = ( -/obj/structure/sign/safety/electronics{ - pixel_y = 32 - }, -/turf/open/floor{ +"xMw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"xNL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" + name = "\improper Marshal Office Equipment" }, -/area/bigredv2/caves/lambda/research) +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"xMD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"xMY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) +"xNw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xNK" = ( +/obj/structure/machinery/door/poddoor/almayer/closed, +/obj/structure/cable, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xNY" = ( +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"xOk" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz1_north_cas) +"xOr" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) "xON" = ( /obj/structure/platform{ dir = 1 @@ -39891,79 +30608,137 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"xPg" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +"xOR" = ( +/obj/structure/bed, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"xOX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/c) +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/outside/engineering) +"xPf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"xPZ" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz2_south_cas) +"xQa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lambda_cave_cas) "xQb" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) -"xRl" = ( -/obj/item/weapon/gun/pistol/b92fs{ - pixel_x = 13; - pixel_y = -7 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"xSa" = ( -/obj/structure/prop/dam/crane, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves/mining) -"xSh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +"xQe" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves/mining) +"xQB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) +"xQD" = ( +/obj/effect/decal/cleanable/mucus, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/darkpurple2/east, +/area/bigredv2/caves/lambda/xenobiology) +"xQP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/darkredcorners2, +/area/bigredv2/caves/eta/xenobiology) +"xQS" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"xRj" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_north) +"xRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"xSp" = ( +/obj/structure/machinery/mill, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"xSr" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"xSN" = ( +/turf/open/floor/darkblue2/southwest, +/area/bigredv2/caves/eta/storage) +"xSQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/research) +"xSX" = ( +/turf/open/floor/darkred2, +/area/bigredv2/caves/eta/xenobiology) +"xTh" = ( +/obj/item/weapon/shield/riot, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_research) +"xTv" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/marshal_office) +"xTx" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -10; + pixel_y = 2 }, -/area/bigredv2/outside/filtration_plant) -"xSA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8; + pixel_y = 7 }, -/area/bigredv2/outside/filtration_plant) +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"xTD" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"xTJ" = ( +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "xTM" = ( /obj/structure/closet/medical_wall, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"xUo" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/lambda/research) -"xUS" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves/mining) -"xWm" = ( -/turf/open/floor{ - icon_state = "whitepurplefull" +"xTO" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) +"xTS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"xUF" = ( +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) +"xVg" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"xVw" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/bigredv2/caves/lambda/research) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"xWo" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "xWr" = ( /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; @@ -39980,295 +30755,342 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"xWH" = ( -/obj/structure/barricade/wooden, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"xWG" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/white, +/area/bigredv2/outside/virology) +"xWJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"xXY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 2; + pixel_y = 17 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xWI" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +"xYw" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/caves/eta/xenobiology) +"xYz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves_north) -"xWN" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" }, -/area/bigredv2/outside/engineering) -"xWV" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"xYQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/xenobiology) +"xZy" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) +"xZI" = ( +/obj/item/ore{ + pixel_x = 9; + pixel_y = 13 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/ore{ + pixel_x = -7; + pixel_y = 7 }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"xXg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib1" - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" +"xZJ" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/area/bigredv2/caves/mining) -"xXP" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/podhatchfloor, +/area/bigredv2/outside/admin_building) +"xZV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Eta Lab Storage Bay" }, -/area/bigredv2/caves_sw) -"xXW" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/delivery, +/area/bigredv2/caves/eta/storage) +"yab" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/engineering) -"xYc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - desc = "A heavy duty power cable for high voltage applications"; - dir = 1; - icon = 'icons/obj/pipes/power_cond_heavy.dmi'; - icon_state = "4-8"; - name = "heavy duty power cable" +/obj/structure/plasticflaps, +/turf/open/floor/dark, +/area/bigredv2/caves/lambda/research) +"yaB" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"yaC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel{ + id = "hole2" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" +/turf/open/floor/dark, +/area/bigredv2/caves/eta/xenobiology) +"yaD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"yba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/bigredv2/caves/mining) -"xZb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/bigredv2/outside/library) +"ybg" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/nw) +"ybi" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/filtration_plant) +"ybM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"ycn" = ( +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/area/bigredv2/outside/engineering) -"xZf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/landmark/good_item, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ycp" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/caves/eta/xenobiology) -"xZm" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"ycy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"ycL" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; + dir = 1; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves/mining) -"ybk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves_research) -"ybK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"ybT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Machine room" - }, -/turf/open/floor/plating{ +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"ycM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves/lambda/xenobiology) -"ycP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/caves/eta/storage) -"yda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" + health = 25000 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/security/marshal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"ydl" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_y = 8 }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"ydd" = ( -/obj/item/weapon/shield/riot{ - pixel_x = -6 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"ydm" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/caves_north) +"yex" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Lambda Lab Break Room" }, -/area/bigredv2/caves_research) -"ydn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"yeO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/bigredv2/outside/eta) -"ydW" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"yeR" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/bigredv2/outside/filtration_plant) -"yej" = ( -/obj/structure/surface/table, -/turf/open/floor{ +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"yeS" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"yeU" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "darkred2" + health = 25000 }, -/area/bigredv2/caves/eta/research) -"yfe" = ( +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"yeX" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"yeY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"yfq" = ( /obj/effect/landmark/nightmare{ - insert_tag = "eta" + insert_tag = "viro-rock_open" }, /turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/eta/xenobiology) -"yfs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"yfz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"yfN" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/area/bigredv2/outside/virology) +"yfB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_virology) +"ygg" = ( +/obj/structure/machinery/access_button/airlock_exterior{ + master_tag = "viro_controller"; + pixel_y = -28 }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/bigredv2/caves/mining) -"ygp" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/darkpurple2, +/area/bigredv2/caves/lambda/research) +"ygD" = ( +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/bigredv2/outside/engineering) -"ygy" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/engineering) -"yhc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/space_port_lz2) +"yhH" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) -"yhN" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"yhR" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/filtration_cave_cas) +"yhS" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen, +/area/bigredv2/caves/lambda/virology) +"yhX" = ( +/turf/open/floor/darkred2/west, +/area/bigredv2/caves/eta/xenobiology) +"yib" = ( +/obj/structure/largecrate, +/turf/open/floor/asteroidfloor/north, +/area/bigred/ground/garage_workshop) +"yim" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/caves/eta/research) +"yio" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"yip" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"yiP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_3, +/area/bigredv2/caves_sw) +"yjI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/caves/mining) -"yhU" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitepurple" +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 4; + health = 25000 }, -/area/bigredv2/caves/lambda/research) -"yjU" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"ykk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/caves/mining) -"ykF" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/hefa_cult_decals/d96, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"ykW" = ( -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"ykz" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whitegreenfull, +/area/bigredv2/caves/lambda/virology) +"ykG" = ( +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/sw) +"ykL" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/bigredv2/caves/mining) -"yln" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/engineering) +"ykQ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"ykR" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/ap, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + dir = 1 }, +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"ymi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"ylj" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/tool/surgery/surgicaldrill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/yellowfull, +/area/bigredv2/outside/general_store) +"ylm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidplating, +/area/bigredv2/outside/space_port) +"yly" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/lz1_north_cas) +"yme" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) (1,1,1) = {" @@ -40927,8 +31749,8 @@ aaa aab aao aao -rfe -xmT +sSD +oEQ aao aao aao @@ -40991,10 +31813,10 @@ aao aao aao aao -jCY -fLj -fLj -fmn +xfn +jQJ +jQJ +jwK aao aao aao @@ -41009,14 +31831,14 @@ aao aao aao aao -jCY -fLj -fLj -fLj -fLj -fLj -fLj -fmn +xfn +jQJ +jQJ +jQJ +jQJ +jQJ +jQJ +jwK aao aao aao @@ -41143,10 +31965,10 @@ aaa aaa aab aao -cnk -ada +bJo +llk qjO -gsW +kFK aao aao aao @@ -41166,19 +31988,19 @@ aao aao aao acA -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND acA aao aao @@ -41207,12 +32029,12 @@ aao aao aao aao -fxK -xmy -rDP -rDP -rDP -fmn +egl +uOV +rdN +rdN +rdN +jwK aao aao aao @@ -41225,18 +32047,18 @@ aao aao aao aao -jCY -rDP -rDP -rDP -rDP -iwG -rDP -rDP -rDP -rDP -rDP -rDP +xfn +rdN +rdN +rdN +rdN +xAK +rdN +rdN +rdN +rdN +rdN +rdN aao aao aao @@ -41361,10 +32183,10 @@ aaa aab aao aao -wdM -qVd -aVR -sbz +qBW +sHu +olc +cnt aao aao aao @@ -41383,19 +32205,19 @@ aao aao aao acA -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas -aas +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND +oND acA aao aao @@ -41423,14 +32245,14 @@ aao aao aao aao -fxK -xmy -xmy -rDP -iwG -rDP -rDP -fmn +egl +uOV +uOV +rdN +xAK +rdN +rdN +jwK aao aao aao @@ -41439,39 +32261,39 @@ aao aao aao aao -dIz +bUR aao -jCY -rDP -rDP -rDP -rDP -rDP -rDP +xfn +rdN +rdN +rdN +rdN +rdN +rdN ucH -rDP -rDP -rDP -rDP -rDP -rDP +rdN +rdN +rdN +rdN +rdN +rdN aao aao -dIz +bUR aao -jCY -fmn +xfn +jwK aao -jCY -icQ -icQ -icQ -icQ -icQ -icQ -icQ -icQ -oQI +xfn +hXB +hXB +hXB +hXB +hXB +hXB +hXB +hXB +lMx aao aao aao @@ -41579,7 +32401,7 @@ aab aao aao aao -aVc +rsR aVQ nlW aao @@ -41600,8 +32422,8 @@ aao aao aao acA -aas -aas +oND +oND acQ acQ acQ @@ -41611,8 +32433,8 @@ acQ acQ acQ acQ -ahc -aas +lIG +oND ahN aao aao @@ -41640,56 +32462,56 @@ aao aao aao aao -rCA -xmy -xmy -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP +ttc +uOV +uOV +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN aao aao -jCY -rDP -fLj -rDP -rDP -rDP -rDP -rDP -rDP -mZC -rDP -rDP -rDP -rDP -rDP -rDP -rDP +xfn +rdN +jQJ +rdN +rdN +rdN +rdN +rdN +rdN +nPB +rdN +rdN +rdN +rdN +rdN +rdN +rdN aao aao -fwa -fLj -rDP -rDP -fLj -rDP -wog -wog -wog -wog -wog -wog -wog -wog -wog -oQI +glZ +jQJ +rdN +rdN +jQJ +rdN +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +lMx aao aao aao @@ -41817,19 +32639,19 @@ aao aao aao acA -aas -aas +oND +oND acQ -acY -vnS -adH -dGQ -aeB -afb -afI +xgl +mAv +iEg +xbv +sVa +sXR +fKS acQ -aas -aas +oND +oND aiv aao aao @@ -41853,31 +32675,31 @@ aao aao aao aao -xmy -xmy -xmy -fxK -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP +uOV +uOV +uOV +egl +uOV +uOV +uOV +rdN +rdN +rdN +jAP +rdN +rdN +rdN +rdN +rdN +rdN +rdN aao -fwa -rDP -rDP -rDP +glZ +rdN +rdN +rdN ucH -rDP +rdN aao aao aao @@ -41886,34 +32708,34 @@ aao aao aao aao -rDP -rDP -rDP -fLj -bcn -rDP -rDP -rDP -rDP -rDP -rDP -daf -wog -wog -hoQ -wog -wog -daf -wog -wog -wog -icQ -icQ -icQ -icQ -icQ -icQ -oQI +rdN +rdN +rdN +jQJ +tvM +rdN +rdN +rdN +rdN +rdN +rdN +eOO +kxd +kxd +upK +kxd +kxd +eOO +kxd +kxd +kxd +hXB +hXB +hXB +hXB +hXB +hXB +lMx aao aao aao @@ -41989,8 +32811,8 @@ aao aao aao aao -szw -szw +ncf +ncf aao aao aao @@ -42034,19 +32856,19 @@ aao aao aao acA -aas -aas +oND +oND acQ -ade -ade -ade -aeb -aeC -ade -oay +bYR +bYR +bYR +nWc +smQ +bYR +ipV afv -ahd -ahd +eRf +eRf acA aao aao @@ -42065,34 +32887,34 @@ aao aao aao aao -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rCA -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -oAf +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +ttc +uOV +uOV +uOV +rdN +rdN +rdN +jAP +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +jAP aao aao aao @@ -42103,14 +32925,14 @@ aao aao aao aao -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN ucH ucH ucH @@ -42118,22 +32940,22 @@ iGK iGK iGK iGK -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -icQ -icQ -oQI +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +hXB +hXB +lMx aao aao aao @@ -42164,12 +32986,12 @@ aao aao aao aao -fdr -icQ -icQ -icQ -icQ -oQI +eWx +hXB +hXB +hXB +hXB +lMx aao aao aao @@ -42205,9 +33027,9 @@ aao aao aao aao -wCo -erA -tJv +ezZ +qEv +kqU aao aao aao @@ -42251,19 +33073,19 @@ aao aao aao acA -aas -aas +oND +oND acQ aWz acZ -ade -ade -ade -afc -ade +bYR +bYR +bYR +rHB +bYR afv -ahd -ahd +eRf +eRf acA aao aao @@ -42275,41 +33097,41 @@ aao aao aao aao -jcn +vhC aao aao -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -lrH -xmy -rCA -xmy -xmy -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -oAf +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +dCZ +uOV +ttc +uOV +uOV +uOV +rdN +rdN +rdN +jAP +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +jAP aao aao aao @@ -42319,15 +33141,15 @@ aao aao aao aao -fLj -fLj -fLj -rDP -rDP -rDP -rDP -rDP -mZC +jQJ +jQJ +jQJ +rdN +rdN +rdN +rdN +rdN +nPB aao aao aao @@ -42335,22 +33157,22 @@ aao aao aao aao -gxJ +sIS iGK iGK iGK iGK iGK iGK -wog -wog -wog -wog -daf -wog -wog -wog -feS +kxd +kxd +kxd +kxd +eOO +kxd +kxd +kxd +pDk aao aao aao @@ -42368,26 +33190,26 @@ aao aao aao aao -wog -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd aao aao aao aao aao aao -fdr -icQ -uYb -uYb -uYb -uYb -uYb -uYb -oQI +eWx +hXB +kAO +kAO +kAO +kAO +kAO +kAO +lMx aao aao aao @@ -42412,20 +33234,20 @@ aao aao aao aao -ixA -hfB -egI +eVP +dDv +tHW aao aao aao aao aao aao -wCo -fLR -wCo -gyL -nSP +ezZ +iiS +ezZ +rcY +jjx aao aao aao @@ -42468,19 +33290,19 @@ aao aao aao acA -aas -aas +oND +oND acQ aWz biQ -ade -ade -ade -adr -afJ +bYR +bYR +bYR +mrr +vXi afv -aas -aas +oND +oND acA acA acA @@ -42488,62 +33310,62 @@ acA acA ahN acA -sOE -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy +mjK +cyo +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV gda gda gda -xmy -xmy -xmy -csE -xmy -xmy -hcb -xmy -rDP -rDP -rDP -oAf -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -iwG -rDP -rDP -fLj -fLj -fLj -fLj -aao -aao -aao -aao -rDP -rDP +uOV +uOV +uOV +cyo +uOV +uOV +mGY +uOV +rdN +rdN +rdN +jAP +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +xAK +rdN +rdN +jQJ +jQJ +jQJ +jQJ +aao +aao +aao +aao +rdN +rdN ucH ucH -rDP -rDP -rDP -rDP -oAf +rdN +rdN +rdN +rdN +jAP aao aao aao @@ -42559,20 +33381,20 @@ aao aao aao aao -gxJ +sIS iGK iGK iGK iGK -wog -wog -wog -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ +kxd +kxd +kxd +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ aao aao aao @@ -42583,28 +33405,28 @@ aao aao aao aao -wog -wog -wog -sLy -wog -wog -wog -wog -wog +kxd +kxd +kxd +toi +kxd +kxd +kxd +kxd +kxd aao aao aao -fdr -wog -wog -cCr -uYb -uYb -uYb -uYb -uYb -feS +eWx +kxd +kxd +yiP +kAO +kAO +kAO +kAO +kAO +pDk aao aao aao @@ -42622,28 +33444,28 @@ aao aao aao aao -els -rxh -rxh -rxh -rxh -sZh -szw -wCo -fLR -qFh -sWa +qIR +cfT +cfT +cfT +cfT +gjX +ncf +ezZ +iiS +mqM +dVw vHw vHw aao aao aao -wCo -vmI -nSP -wCo -wCo -wCo +ezZ +mVj +jjx +ezZ +ezZ +ezZ vHw vHw aao @@ -42685,82 +33507,82 @@ aao aao aao acA -aas -aas +oND +oND acQ acQ acQ acQ -aec +rHM acQ acQ acQ acQ -aas -aas -aas -ahd -ahd -ahd -ahd -all +oND +oND +oND +eRf +eRf +eRf +eRf +jyj akl -bRm -xmy -xmy -csE -sQw -xmy -xmy -xmy -xmy -xmy -xmy -csE -xmy -xmy -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rDP -rDP -rDP -oAf +pxb +uOV +uOV +cyo +nXv +uOV +uOV +uOV +uOV +uOV +uOV +cyo +uOV +uOV +cyo +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +rdN +rdN +rdN +jAP aao aao aao aao aao aao -rDP -fwa -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -mZC -rDP -rDP -rDP -rDP -rDP -rDP -oAf +rdN +glZ +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +nPB +rdN +rdN +rdN +rdN +rdN +rdN +jAP aao aao aao @@ -42781,47 +33603,47 @@ aao aao aao aao -gxJ +sIS ski -cYJ -cYJ -cYJ -vMj -vMj -vMj -cYJ -cYJ -cYJ -cYJ -cYJ +uZQ +uZQ +uZQ +tkr +tkr +tkr +uZQ +uZQ +uZQ +uZQ +uZQ aao aao aao aao aao -wog -wog -wog -wog -wog -wog -gYt -gYt -wog -wog -sLy -boy -wog -wog -wog -wog -uYb -uYb -uYb -gcR -uYb -uYb -uYb +kxd +kxd +kxd +kxd +kxd +kxd +vTT +vTT +kxd +kxd +toi +tdd +kxd +kxd +kxd +kxd +kAO +kAO +kAO +fxY +kAO +kAO +kAO aao aao aao @@ -42838,30 +33660,30 @@ aao aao aao aao -rxh -rxh -rxh -rxh -kqV -cqZ -dUj -vMm -qot -xck -jYS -nSP -nSP -wVQ -sZh -jVN -wCo -tqi -owR -owR -owR -owR -owR -jXP +cfT +cfT +cfT +cfT +lvL +dNL +gIm +juN +kDV +wQx +fZX +jjx +jjx +qHI +gjX +cPW +ezZ +fPL +swZ +swZ +swZ +swZ +swZ +qhB vHw aao aao @@ -42902,82 +33724,82 @@ aao aao aao acA -aas -aas +oND +oND acQ -adb -ads -adf -aed -aeD -ade -afK +bwf +otG +rpN +dmw +sCe +bYR +pPO acQ -aas -aas -ahd -aiW -aas -ahd -ahd -all +oND +oND +eRf +lqM +oND +eRf +eRf +jyj acA -bRm -xmy -xmy -xmy -sGi -xmy -xmy -xmy -xmy -xmy -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -rDP -rDP -rDP -oAf -aao -aao -aao -aao -aao -aao -aao -fwa -rDP -rDP -rDP -rDP -rDP -rDP -rDP -rDP -iwG -rDP -rDP +pxb +uOV +uOV +uOV +tpL +uOV +uOV +uOV +uOV +uOV +cyo +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +rdN +rdN +rdN +jAP +aao +aao +aao +aao +aao +aao +aao +glZ +rdN +rdN +rdN +rdN +rdN +rdN +rdN +rdN +xAK +rdN +rdN ucH -rDP -rDP -rDP +rdN +rdN +rdN aao aao -fwa -rDP -rDP -mZC +glZ +rdN +rdN +nPB aao aao aao @@ -42999,47 +33821,47 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -vMj -vMj -cYJ -cYJ -wog -wog -wog -wog -wog -wog -gYt -gYt -wog -wog -gYt -gYt -wog -wog -wog -boy -wog -wog -wog -wog -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +tkr +tkr +uZQ +uZQ +kxd +kxd +kxd +kxd +kxd +kxd +vTT +vTT +kxd +kxd +vTT +vTT +kxd +kxd +kxd +tdd +kxd +kxd +kxd +kxd +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO aao aao aao @@ -43054,32 +33876,32 @@ aao aao aao aao -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -waX -rxh -owR -owR -igU -rWN -owR -rsv -sZh -jVN -wCo -kli -rxh -rxh -rxh -rxh -rsv -opK -rxh +ezZ +qHI +cfT +cfT +cfT +cfT +cfT +nzJ +cfT +swZ +swZ +jXr +oLj +swZ +mAT +gjX +cPW +ezZ +hmq +cfT +cfT +cfT +cfT +mAT +eld +cfT aao aao aao @@ -43119,81 +33941,81 @@ aae aae aae acA -aas -aas +oND +oND acQ -oay -adt -adt -adt -ade -ade +ipV +xHI +xHI +xHI +bYR +bYR acZ afv -ahd -ahd -aas -aas -aas -aas -aas -all +eRf +eRf +oND +oND +oND +oND +oND +jyj acA -bRm -xmy -xmy -xmy -xmy -csE -csE -xmy -csE -csE -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy -xmy +pxb +uOV +uOV +uOV +uOV +cyo +cyo +uOV +cyo +cyo +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV +uOV gda gda -fOc -rDP -rDP -iwG -fmn +wcN +rdN +rdN +xAK +jwK aao aao aao aao aao aao -fwa +glZ ucH ucH ucH -rDP -rDP +rdN +rdN ucH ucH ucH ucH ucH -oAf +jAP aao -fwa -rDP +glZ +rdN aao aao aao -crQ +gKQ ucH -mZC +nPB aao aao aao @@ -43213,51 +34035,51 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ ski eEy ski -cYJ -cYJ -cYJ -ovB -wog -icQ -gYt -gYt -wog -sLy -gYt -gYt -wog -wog -wog -wog -wog -wog -wog -boy -lwX -wog -wog -wog -wog -wog -wog -wog -uYb -uYb -uYb -uYb -wog +uZQ +uZQ +uZQ +jXg +kxd +hXB +vTT +vTT +kxd +toi +vTT +vTT +kxd +kxd +kxd +kxd +kxd +kxd +kxd +tdd +vUq +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kAO +kAO +kAO +kAO +kxd aao aao aao @@ -43270,34 +34092,34 @@ vHw aao aao aao -wCo -wCo -wFO -rxh -cqZ -rxh -rxh -rxh -sYR -rsv -rsv -vfQ -vfQ -rsv -rsv -rsv -sZh -jVN -wCo -wCo -wVQ -rxh -rxh -rxh -rsv -rsv -rxh -rxh +ezZ +ezZ +vNZ +cfT +dNL +cfT +cfT +cfT +iRK +mAT +mAT +txg +txg +mAT +mAT +mAT +gjX +cPW +ezZ +ezZ +qHI +cfT +cfT +cfT +mAT +mAT +cfT +cfT aao aao aao @@ -43322,68 +34144,68 @@ aao aao aao aae -abQ -aaf -aaf -aaf -aaf -abQ -aaf -aaf -aaf -aaf -aaf -aaf -abQ -aaf -aas -acH -acR -add -adu -adu -aee -ade -ade +uLP +sQm +sQm +sQm +sQm +uLP +sQm +sQm +sQm +sQm +sQm +sQm +uLP +sQm +oND +hCt +dns +gQm +hHo +hHo +dkV +bYR +bYR afL afv -aas -aas -aas -aas -aas -ahd -aaZ -all +oND +oND +oND +oND +oND +eRf +rcy +jyj acA -bRm -xmy -xmy -xmy -xmy -xmy -xmy -lrH -xmy -xmy -xmy -xmy -aao -aao -xmy -xmy -csE -csE -rCA +pxb +uOV +uOV +uOV +uOV +uOV +uOV +dCZ +uOV +uOV +uOV +uOV +aao +aao +uOV +uOV +cyo +cyo +ttc gda -eci +pCE aao aao -fwa +glZ gJw gJw -vNh -vNm +umo +xvo aao aao aao @@ -43393,9 +34215,9 @@ aao aao aao aao -fwa -fwa -mZC +glZ +glZ +nPB aao aao aao @@ -43403,8 +34225,8 @@ aao aao aao aao -fwa -oAf +glZ +jAP aao aao aao @@ -43429,54 +34251,54 @@ aao aao aao aao -cYJ -cYJ -vMj -vMj -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -uyk -cYJ -cYJ -cYJ -wog -wog -jAo -gYt -wog -wog -wog -wog -wog -wog -sLy -wog -wog +uZQ +uZQ +tkr +tkr +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +suN +uZQ +uZQ +uZQ +kxd +kxd +edC +vTT +kxd +kxd +kxd +kxd +kxd +kxd +toi +kxd +kxd aao aao aao -kvp -wog -wog -wog -wog -wog -wog -wog -wog -uYb -wog -uYb -uYb -dPC -rxh +xxZ +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kAO +kxd +kAO +kAO +kTa +cfT vHw vHw vHw @@ -43485,37 +34307,37 @@ vHw vHw vHw vHw -rsv -sZh -wCo -wCo -wCo -wFO -rxh -rxh -rxh -rxh -rxh -sZh -wVQ -vfQ -vfQ -rsv -rsv -mqX -sZh -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -evX -rxh -rxh +mAT +gjX +ezZ +ezZ +ezZ +vNZ +cfT +cfT +cfT +cfT +cfT +gjX +qHI +txg +txg +mAT +mAT +reB +gjX +cyS +ezZ +ezZ +qHI +cfT +cfT +cfT +cfT +cfT +hya +cfT +cfT vHw aao aao @@ -43539,42 +34361,42 @@ aao aao aao aae -aaf -aaD -aaR -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -acI +sQm +omS +nzh +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +lfG acQ -ade -ade -ade -adt -ade -ade +bYR +bYR +bYR +xHI +bYR +bYR acZ afv -aas -ahd -ahd -aas -aas -ahd -aas -all +oND +eRf +eRf +oND +oND +eRf +oND +jyj acA aao -xmy +uOV gda gda gda @@ -43582,37 +34404,37 @@ gda gda gda gda -xmy -xmy +uOV +uOV aao aao aao aao -rCA -xmy -xmy +ttc +uOV +uOV gda aao aao aao aao -mZC +nPB aao -wvk -aGo -aHf -aHf +mxA +lBN +gxw +gxw aao aao aao aao -qTu +tEP aao aao aao -fwa -fwa -rDP +glZ +glZ +rdN aao aao aao @@ -43620,8 +34442,8 @@ aao aao aao aao -crQ -oAf +gKQ +jAP aao aao aao @@ -43645,30 +34467,30 @@ aao aao aao aao -cYJ -cYJ -uyk -tDv -cYJ -cYJ -cYJ -cYJ -cYJ -oNu -cYJ -cYJ -cYJ -cYJ -uyk -cYJ -tDv -wog -wog -wog -wog -wog -icQ -oQI +uZQ +uZQ +suN +ohw +uZQ +uZQ +uZQ +uZQ +uZQ +tqc +uZQ +uZQ +uZQ +uZQ +suN +uZQ +ohw +kxd +kxd +kxd +kxd +kxd +hXB +lMx aao aao aao @@ -43679,60 +34501,60 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog +xxZ +kxd +kxd +kxd +kxd +kxd xaH xaH -wog -uYb -uYb -uYb -uYb -buj -rxh -rxh -xhy -rxh -rxh -waX -rsv -nxa -rsv -rsv -rsv -eql -wCo -nSP -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -rsv -fnO -fnO -fnO -fnO -fnO -pJX -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -rxh -rxh -rxh -rxh -rxh +kxd +kAO +kAO +kAO +kAO +qHr +cfT +cfT +tKc +cfT +cfT +nzJ +mAT +yhH +mAT +mAT +mAT +imM +ezZ +jjx +ezZ +qHI +cfT +cfT +cfT +cfT +cfT +mAT +vii +vii +vii +vii +vii +kKi +cyS +ezZ +ezZ +qHI +cfT +cfT +cfT +cfT +cfT +cfT +cfT +cfT vHw aao aao @@ -43756,58 +34578,58 @@ aao aao aao aae -aaf -aaf -aaf -aar -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abi -aaf -aaf -acJ +sQm +sQm +sQm +jIH +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +gdX +sQm +sQm +nAA acQ -adf -ktg -adI -aef -ade -ade +rpN +wny +itp +aIc +bYR +bYR afL acQ -aas -ahd -ahd -aas -aas -ahd -aas -all +oND +eRf +eRf +oND +oND +eRf +oND +jyj akl aao aao pQM -eOd -eOd +dkY +dkY pQM -eOd -eOd -eOd +dkY +dkY +dkY aao aao aao aao aao aao -siM +kMX gda -sGi +tpL aao aao aao @@ -43815,10 +34637,10 @@ aao aao aao aao -pdW -aGp -aGq -aFs +kGi +ieh +kGt +pAQ aao aao aao @@ -43827,9 +34649,9 @@ aao aao aao aao -rGP -gYl -gKk +yfB +pHA +khS aao aao aao @@ -43838,7 +34660,7 @@ aao aao aao ozv -vNh +umo aao aao aao @@ -43858,34 +34680,34 @@ aao aao aao aao -cYJ -cYJ -cYJ -cYJ -cYJ -vMj -cYJ -cYJ -cYJ +uZQ +uZQ +uZQ +uZQ +uZQ +tkr +uZQ +uZQ +uZQ ski ski ski -oNu +tqc aao aao aao aao aao -bQb +gDR ski ski -wog -gYt -gYt -wog -wog -wog -feS +kxd +vTT +vTT +kxd +kxd +kxd +pDk aao aao aao @@ -43896,61 +34718,61 @@ aao aao aao aao -kvp -wog -wog -wog -wog -wog +xxZ +kxd +kxd +kxd +kxd +kxd xaH xaH -wog -uYb -uYb -uYb -uYb -rxh -ced -rxh -pmN -rxh -rxh -rxh -rsv -rsv -rsv -rsv -rsv -sZh -nrj -wCo -wCo -wVQ -aao -aao -aao -aao -rxh -sZh -onh -wCo -wCo -nSP -wCo -mfw -iLs -wCo -wCo -wVQ -rxh -rxh -rxh -mOZ -rxh -rxh -rxh -pgi -pgi +kxd +kAO +kAO +kAO +kAO +cfT +msh +cfT +fjw +cfT +cfT +cfT +mAT +mAT +mAT +mAT +mAT +gjX +myP +ezZ +ezZ +qHI +aao +aao +aao +aao +cfT +gjX +wjn +ezZ +ezZ +jjx +ezZ +fPK +cyS +ezZ +ezZ +qHI +cfT +cfT +cfT +wPQ +cfT +cfT +cfT +gUn +gUn aao aao aao @@ -43973,22 +34795,22 @@ aae aae aae aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abP -aaf -aaf -aaf -aaf -aaf -aaf -acJ +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +rzW +sQm +sQm +sQm +sQm +sQm +sQm +nAA acQ acQ acQ @@ -44032,14 +34854,14 @@ aao aao aao aao -aFs -aGq -aFs -aFt -aFu -aFu -aFt -aFt +pAQ +kGt +pAQ +sqL +bqW +bqW +sqL +sqL aoD aoD aoD @@ -44074,16 +34896,16 @@ aao aao aao aao -fSY -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cYJ -cdA +lSO +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +uZQ +hUK aao aao aao @@ -44096,15 +34918,15 @@ aao aao aao aao -kvp -gYt -gYt -wog -sLy -wog -wog -icQ -oQI +xxZ +vTT +vTT +kxd +toi +kxd +kxd +hXB +lMx aao aao aao @@ -44113,35 +34935,35 @@ aao aao aao aao -gxJ -wog -wog -wog -wog -wog -wog -wog -wog -uYb -uYb -uYb -uYb -rxh -fnO -fnO -fnO -fnO -cmC -waX -mFT -rsv -rsv -rsv -rsv -rsv -eql -onh -wCo +sIS +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kAO +kAO +kAO +kAO +cfT +vii +vii +vii +vii +kJz +nzJ +grq +mAT +mAT +mAT +mAT +mAT +imM +wjn +ezZ aao aao aao @@ -44150,24 +34972,24 @@ uHQ uHQ uHQ uHQ -oKy -pSa -ogt -oKy +dMG +qLD +jqn +dMG uHQ uHQ uHQ -pLj -gHH -rxh -evX -jtL -rxh -fnO -fnO -rxh -pgi -pgi +kXy +eeU +cfT +hya +sdG +cfT +vii +vii +cfT +gUn +gUn aao aao aao @@ -44187,34 +35009,34 @@ aao aao aao aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abC +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +joL aae -abZ -aaf -aaf -aaf -aaf -aaf -acJ -abQ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +jZe +sQm +sQm +sQm +sQm +sQm +nAA +uLP +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm aae aao aao @@ -44249,29 +35071,29 @@ aao aao aao aao -aFs -aFs -aFt -aHZ +pAQ +pAQ +sqL +dop aFv aFv -aGr -aHg +jPx +cLi aoD -ugH -aNc +rgx +uoU aoD -iKv +fij aRE -aSu +iaw arT -iuq -aVC -aWd -aWO -aXu +sKz +rBE +pxs +osf +oAj aoD -mys +ohF aRE aoD aao @@ -44291,16 +35113,16 @@ aao aao aao aao -kgw +wty tft -rtL -rtL -rtL +dDQ +dDQ +dDQ tft tft ski ski -oNu +tqc aao aao aao @@ -44313,15 +35135,15 @@ aao aao aao aao -gxJ +sIS iGK iGK -wog -wog -wog -wog -wog -feS +kxd +kxd +kxd +kxd +kxd +pDk aao aao aao @@ -44331,32 +35153,32 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -pcA -pOL -hmL -eju -rHr -wFO -rxh +xxZ +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +crV +lLI +kUM +iRQ +gch +vNZ +cfT key jUY jUY jUY dHr hLp -drT +vKr vHw aao aao @@ -44364,27 +35186,27 @@ aao aao aao uHQ -rMg -jRi +oho +kEB uHQ -rYD -rtS -kCe -pSa -jkn -xMx +qLR +loU +ffg +qLD +ftO +ukA uHQ -wVd -fFG -fnO -fnO -cJA -sZh -wCo -wCo -wFO -pgi -pgi +mxY +wQv +vii +vii +jaY +gjX +ezZ +ezZ +vNZ +gUn +gUn aao aao aao @@ -44404,34 +35226,34 @@ aao aao aao aae -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abi -aaf -aaf -aaf -abQ -aaf -aaf -aaf -aaf -aaf -aaf -acJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +sQm +sQm +sQm +sQm +sQm +sQm +sQm +gdX +sQm +sQm +sQm +uLP +sQm +sQm +sQm +sQm +sQm +sQm +nAA +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm aae aao aao @@ -44443,7 +35265,7 @@ vLd qsE qsE qsE -uJF +wqf upE hBD lcu @@ -44466,30 +35288,30 @@ aao aao aao aao -aFt -aFs -aFt -aFt -aFw -aFw -aFt -aLT +sqL +pAQ +sqL +sqL +dGj +dGj +sqL +cZi aoD -aNa -aNc +itL +uoU aoD aQz -aRF -aSu +rmn +iaw arT -aUM -aNc -aWe -aNc -mUf +mLM +uoU +fSB +uoU +brN aoD -aYA -aWe +jci +fSB aoD aao aao @@ -44499,14 +35321,14 @@ aao aao aao aao -azR -azR -aao -aao -aao -aao -aao -qtx +ayf +ayf +ayf +ayf +ayf +ayf +ayf +ayf ayf ayf ayf @@ -44533,12 +35355,12 @@ aao aao aao aao -gxJ -wog -wog -wog -sLy -feS +sIS +kxd +kxd +kxd +toi +pDk aao aao aao @@ -44548,60 +35370,60 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -uYb -cCr -khx -nSP -czV -xBr -gyU -nSP -wVQ +xxZ +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +kAO +yiP +sdH +jjx +opj +iwh +tkz +jjx +qHI wtj -cRP +fsf krW kuu onR egS -xwo -lhh -iEj -eaW +ozR +isG +kte +eqI uHQ uHQ uHQ uHQ rjF -vVl +hpr lBe -qeX -kCe -pDV -pSa -gnR -wWN +mvk +ffg +kCR +qLD +vZf +ggX uHQ aao aao -szw -szw -wVQ -sZh -wCo -wCo -wCo -bPy -pgi +ncf +ncf +qHI +gjX +ezZ +ezZ +ezZ +sUi +gUn aao aao aao @@ -44621,34 +35443,34 @@ aao aao aao aae -aag -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aag -aaf -aaf -aaf -aaf -acJ -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +uZw +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +uZw +sQm +sQm +sQm +sQm +nAA +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm +sQm aae aao qsE @@ -44683,30 +35505,30 @@ aao aao aao aao -aFt -aFt -aHg -aIa -aJg -aJg -aJg -aLU -aPt -aNb -aOr -aPt -aQA -aRG +sqL +sqL +cLi +wZU +fqF +fqF +fqF +pEw +eDb +vLU +lUV +eDb +gEi +kSn aSv arT -snD -aVD -aWf -aRG -aNc +xWG +gWs +tYC +kSn +uoU aoD kOK -aZj +hNK aoD aao aao @@ -44716,13 +35538,13 @@ aao aao aao aao -azR -wpT -aYF -aYF -aYF +ayf +dAa cVY +ayf cVY +bSF +ayf cVY cVY cVY @@ -44751,11 +35573,11 @@ aao aao aao aao -kvp -wog -hoQ -wog -feS +xxZ +kxd +upK +kxd +pDk aao aao aao @@ -44765,61 +35587,61 @@ aao aao aao aao -kvp -uYb -uYb -uYb -uYb -uYb -uYb -uYb -gcR -uYb +xxZ +kAO +kAO +kAO +kAO +kAO +kAO +kAO +fxY +kAO iGK -iAF +mxu vHw vHw -szw -szw -fMl -tqi -rWF +ncf +ncf +eYe +fPL +igH wtj -gPE -nWD +nfn +nGv vmL -kCe -gPE -rxh -wBq -sGT -ugW +ffg +nfn +cfT +rYb +lam +dUl uHQ -nYC -npz -ioA -tpR -luA +poq +wVO +rhh +pMI +sqK xTM -qeX -heG -pZe -pSa -wLD -kCe +mvk +wBy +hrh +qLD +jzu +ffg uHQ -szw -szw -czV -nSP -wVQ -sZh -wCo -nSP -wCo -wVQ -rxh -rxh +ncf +ncf +opj +jjx +qHI +gjX +ezZ +jjx +ezZ +qHI +cfT +cfT aao aao aao @@ -44838,34 +35660,34 @@ aao aao aao aae -aaf -aaf -aan -aat -aaE -aaS -aba -aat -aaE -aaS -aba -aat -aaE -aaS -aba -aat -aaE -aaS -acK -acS -adg -adw -adJ -aeg -bgP -aeg -aeg -agn +sQm +sQm +cmM +kEb +gLg +jts +clV +kEb +gLg +jts +clV +kEb +gLg +jts +clV +kEb +gLg +jts +pkG +jiO +pLE +nWx +qhT +hAy +ylm +hAy +hAy +lsM aae aao qsE @@ -44900,30 +35722,30 @@ aao aao aao aoD -aFu -aFt -aHh -aIb -aHj -aHj -aHj -aLV +bqW +sqL +gmX +nNR +cYf +cYf +cYf +vEv aoD -aNc -aNc +uoU +uoU aoD -aQB -aRH -aSu +vhK +dIC +iaw arT -aUO -aVE -aWg -aRH -aNc +nNS +qDL +rOf +dIC +uoU aoD -aYA -aRH +jci +dIC aoD aao aao @@ -44933,15 +35755,15 @@ aao aao aao aao -azR -aYF -aYF -aYF -aYF +ayf cVY cVY cVY cVY +rCR +eQB +csO +dSP cVY cVY bjN @@ -44968,11 +35790,11 @@ aao aao aao aao -kvp -wog -wog -wog -feS +xxZ +kxd +kxd +kxd +pDk aao aao aao @@ -44982,16 +35804,16 @@ aao aao aao aao -lWE -boy -boy -cCr -uYb -uYb -uYb -uYb -trk -trk +nSR +tdd +tdd +yiP +kAO +kAO +kAO +kAO +hHO +hHO aao aao aao @@ -45002,41 +35824,41 @@ aao aao wtj tfz -kCe -kCe -kCe -ykF -tUL -rxh -wBq -eNN -kPu +ffg +ffg +ffg +qoV +jLd +cfT +rYb +gyp +vMQ uHQ -crv -bJz -lxQ -nXh -oOr +oZt +xrH +vIx +vYU +sBg uHQ -yfN -tKC -kCe -oOr -gnR -gnR +txz +kAW +ffg +sBg +vZf +vZf uHQ aao -oqr -sHz -kjT -wVQ -rxh -uFD -ncL -wCo -wVQ -evX -rxh +umk +liR +ceP +qHI +cfT +bFQ +jso +ezZ +qHI +hya +cfT aao aao aao @@ -45055,11 +35877,10 @@ aao aao aao aae -aaf -aai -aah -aah +sQm +sok aah +aaF aah aah aah @@ -45077,12 +35898,13 @@ aah aah aah aah +aaF aah -aeh -aaf -aaf -aaf -acJ +cdk +sQm +sQm +sQm +nAA aae aao qsE @@ -45118,29 +35940,29 @@ aao aoD aoD aFv -aGr -aHh -aIb -aHj -aKg -aHj -aLW +jPx +gmX +nNR +cYf +kfR +cYf +sSm aoD -aNd -aOs +ryD +fnc aoD -aQC -aRH -aSu +keO +dIC +iaw apG arT arT apG -aWP +mRg apG aoD aoD -aZk +nOU aoD aao aao @@ -45150,12 +35972,12 @@ aao aao aao aao -azR -azR -aYF -aYF -bgC +ayf +ayf +cVY +cVY cVY +pcZ cVY cVY cVY @@ -45165,6 +35987,7 @@ cVY cVY cVY ayf +ayf aao aao aao @@ -45184,31 +36007,30 @@ aao aao aao aao -aao -gxJ +sIS iGK iGK -wog -wog -oQI +kxd +kxd +lMx aao aao aao aao aao -fdr -icQ -icQ -wog -wog -boy -uYb -uYb -uYb -uYb -jXX -dxV -dxV +eWx +hXB +hXB +kxd +kxd +tdd +kAO +kAO +kAO +kAO +fAQ +owy +owy aao aao aao @@ -45216,44 +36038,44 @@ aao aao aao aao -pxp -rie +lXJ +iLV qux -sXv -kCe -bgZ -kCe -jhM -rxh -wBq -oJd -kMJ +xXY +ffg +kBD +ffg +pKg +cfT +rYb +olZ +opg uHQ -bTm -kgn -rXy -nEV -hUh +ssW +cYm +ftH +oRc +nNd nCT -xLM -mqf -kCe -sgT -kCe -fYJ +ykR +gok +ffg +wpE +ffg +kFU uHQ aao aao -nSP -szw -wVQ -sso -iph -wQa -wfm -rxh -rxh -rxh +jjx +ncf +qHI +nLW +nUA +vEb +rji +cfT +cfT +cfT aao aao aao @@ -45272,11 +36094,10 @@ aao aao aao aae -aaf -aaj +sQm +nkJ aah aah -aaF aah aah aah @@ -45292,14 +36113,15 @@ aah aah aah aah -aaF aah aah -aei -aaf -aaf -aaf -acJ +aah +aah +iJR +sQm +sQm +sQm +nAA aae aao qsE @@ -45335,29 +36157,29 @@ aao aeI aoD aFv -aGr -aHh -aIb -aHj -aHj -aHj -aLX +jPx +gmX +nNR +cYf +cYf +cYf +mKG aoD aoD aoD aoD -aRF -aRH -aSw -aTK -aTK -aTK -aTK -aWQ -aNc -aWd -aNc -aRH +rmn +dIC +qWk +jka +jka +jka +jka +usp +uoU +pxs +uoU +dIC aoD aao aao @@ -45367,22 +36189,21 @@ aao aao aao aao -azR -aYF -aYF -aYF -aYF +ayf +kmA cVY cVY +juk cVY cVY -hpg -mMf +cVY +cVY +rwu +wtP +cVY cVY cVY cVY -ayf -ayf ayf ayf ayf @@ -45405,26 +36226,27 @@ aao aao aao aao -kvp -sLy -feS aao +xxZ +toi +pDk aao aao aao aao -gxJ -wog -wog -sLy -wog -boy -uYb -uYb -uYb -hiY -dxV -pYt +aao +sIS +kxd +kxd +toi +kxd +tdd +kAO +kAO +kAO +qwK +owy +lOv uHQ uHQ uHQ @@ -45434,43 +36256,43 @@ uHQ uHQ gSB dwO -dBa -pSa -gGO +jgI +qLD +xfP wNA cVd -kCe -tUL -rxh -wBq -ulk -kSt +ffg +jLd +cfT +rYb +bhG +sji uHQ -fst -jCg -qwy -xzi -lLf -xyz -rbD -kCe -ufu -vdS -rbD -kCe +lin +sGH +uXo +yme +oFD +mtn +qDX +ffg +rFX +xTx +qDX +ffg uHQ aao aao -hSP -szw -wVQ -ssO -tOh -syi -dwL -rxh -rxh -rxh +qLP +ncf +qHI +dqk +oBW +ydl +fHn +cfT +cfT +cfT aao aao aao @@ -45489,8 +36311,8 @@ aao aao aao aae -aaf -aak +sQm +dGX aah aah aah @@ -45512,17 +36334,17 @@ aah aah acx aah -aej -aaf -aaf -aaf -acJ +oyA +sQm +sQm +sQm +nAA aae aao qsE qsE -aTs -suV +nQT +nZy qsE qsE qsE @@ -45552,29 +36374,29 @@ aeI aeI aoD aFv -aGr -aHh -aIb -aHj -aJh -aJh -aJh +jPx +gmX +nNR +cYf +fcF +fcF +cYf aoD -aNe -aNc -aNc -aNc -aRH -aNc -aNc -aUP -aNc -aNc -aRH -aNc -aRF -aNc -aRH +ksv +uoU +uoU +uoU +dIC +uoU +uoU +hzL +uoU +uoU +dIC +uoU +rmn +uoU +dIC aoD aoD aoD @@ -45584,110 +36406,110 @@ aao aao aao aao -azR -aYF -aYF -aYF -bbc -bgW +ayf +giC +cVY cVY -hpg -mMf -tVp -tVp -mMf -mMf -mMf -tVp -tVp -tVp -bsa -tVp -tVp -tVp -tVp -fFO +rwu +kPj +cVY +rwu +wtP +eaG +eaG +wtP +wtP +wtP +wtP +ayf +ayf +fGM +ayf +ayf +kiO +eaG +jAr cVY cVY -uSC -tVp -fFO +xsj +eaG +jAr cVY cVY cVY -uSC +ayf ayf aao aao aao aao aao -kvp -wog -wog -icQ -wog +xxZ +kxd +kxd +hXB +kxd aao aao aao -wog -pHb -gYt -wog -wog -iAF +kxd +kpy +vTT +kxd +kxd +mxu aao -uYb -uYb -hiY -dxV -pYt +kAO +kAO +qwK +owy +lOv uHQ sAS tdZ kBE gTJ nZK -dsh +dfg qVi wtj qhk cVd -jGQ -gGO +nZC +xfP kZG -kCe -uzB -rxh -wBq -teV -ugW +ffg +bJf +cfT +rYb +gzd +dUl uHQ uHQ uHQ -oma -kCe -oma +eYq +ffg +eYq wfd -jOS -kjr -kCe -uCa -oTL -eER +gFh +qPg +ffg +cJd +vrl +jkr uHQ aao aao aao -owR -rxh -sso -pmk -waN -dwL -rxh -rxh -rxh +swZ +cfT +nLW +fIP +lmk +fHn +cfT +cfT +cfT aao aao aao @@ -45706,8 +36528,8 @@ aao aao aao aae -aaf -aal +sQm +lca aah aah aah @@ -45729,25 +36551,25 @@ aah aah aah aah -aek -aaf -aaf -aaf -acJ +xqM +sQm +sQm +sQm +nAA aae aao qsE -acu -uvz -clB -wix -clB -clB -uIB -shV +tvY +xoi +sgf +iWv +sgf +sgf +keN +rTi qsE -aTs -suV +nQT +nZy qsE qsE qsE @@ -45768,143 +36590,143 @@ aeI aeI aoD aoD -aFw -aFt -aHh -aIb -lQU -aFt -aFt -aFt +dGj +sqL +gmX +nNR +rvw +sqL +sqL +gmX aoD -aNf -aNc -aNc -aNc -aRI -aSx -aSx -aSx -aSx -aWh -aWR -aXw -aXw -aXw -aZl +ccR +uoU +uoU +uoU +rKj +pjA +pjA +pjA +pjA +pyX +okd +erE +erE +erE +vJO aoD -pIh -pIh +cuR +cuR aoD aoD aoD aoD aao aao -azR -azR -aYF -aYF -aSB -feN -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv -vKv +ayf +ayf +cVY +cVY +eaG +vqW +ged +ged +ged +ged +ged +ged +ged +ged +ged +ged +ged +wVZ +ged +ged +ged +ged +ged +ged +ged +ged +ged +ged +ged +ged +mhD +eaG +ayf ayf aao aao aao aao +xxZ +eOO +kxd +kxd +kxd +kxd aao -kvp -daf -wog -wog -wog -wog -aao -wog -wog -pHb -gYt -wog -feS +kxd +kxd +kpy +vTT +kxd +pDk aao aao aao aao aao -sDC -pYt +scH +lOv uHQ cyv jPm uFi wtj jPX -gps +gMJ qVi wtj pbZ wtj -ofu -fmL -gGO -gGO -kCe -rxh -rxh -kdp -rxh -rxh -rxh -oKy -pSa -lIe -wuC -nkW -kCe -kCe -dlC -pSa -lSH -yln +wCw +cnK +xfP +xfP +ffg +cfT +cfT +veU +cfT +cfT +cfT +dMG +qLD +cdU +jbh +kBo +ffg +ffg +mCX +qLD +sGU +xGi uHQ aao -rxh -rxh -rxh -rxh -rxh -uiE -uiE -rxh -rxh -rxh -rxh +cfT +cfT +cfT +cfT +cfT +lxE +lxE +cfT +cfT +cfT +cfT aao aao aao @@ -45923,8 +36745,8 @@ aao aao aao aae -aaf -aai +sQm +sok aah aah aah @@ -45946,25 +36768,25 @@ aah aah aah aah -aeh -aaf -aaf -aaf -acJ +cdk +sQm +sQm +sQm +nAA aae aao qsE -qiA -uvz -clB -uvz -clB -clB -rMw -whZ -lwT -pVP -rCd +xHS +xoi +sgf +xoi +sgf +sgf +oio +cQY +onW +dkl +oBt qsE aao aao @@ -45985,90 +36807,90 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aFt -aFu -aFt +sqL +sqL +gmX +nNR +rvw +sqL +bqW +xbm aoD -aNg -aNc -aNc -aQE -aRJ -aSy -aNc -aNc -hYI -aWi -aNc -aNc -aSw -aNc -aNc -aNc -aNc -aRF -aNc -bco -aNc +ixZ +uoU +uoU +tcJ +fSL +iXf +uoU +uoU +uAZ +vNt +uoU +uoU +qWk +uoU +uoU +uoU +uoU +rmn +uoU +rSq +uoU aoD aao aao -azR -aYF -aYF -bbc -aSB -bgX -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd +ayf +cVY +cVY +rwu +eaG +wDk +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +kDW +eaG +eaG ayf aao aao aao aao -aao -kvp -wog -wog -wog -sLy -icQ -wog -wog -baN -wog -wog -wog -iAF +xxZ +kxd +kxd +kxd +toi +hXB +kxd +kxd +tXs +kxd +kxd +kxd +mxu aao aao aao @@ -46077,51 +36899,51 @@ aao aao aao uHQ -qGg +xzS vxQ mtL pUi uBo -qOM +vAF hZl ust -qJV -emC -hEz -omX -qhH -qhH -qhH -oWC -oWC -oTM -sZh -wVQ -rxh -oKy -lSm -ifF -bRK -dJM -kVY -hKl -pDV +lEO +bin +xQe +tdK +wZp +wZp +wZp +hTX +hTX +nOf +gjX +qHI +cfT +dMG +tox +hXk +vMh +jtg +pgR +oFi +kCR uHQ uHQ uHQ uHQ -tsc -rxh -rxh -rxh -rxh -rxh -rxh -rsv -rsv -rxh -rxh -rxh +iqB +cfT +cfT +cfT +cfT +cfT +cfT +mAT +mAT +cfT +cfT +cfT aao aao aao @@ -46140,8 +36962,8 @@ aao aao aao aae -aaf -aaj +sQm +nkJ aah aah aah @@ -46152,7 +36974,7 @@ aah aah aah aah -aau +jBa aah aah aah @@ -46163,25 +36985,25 @@ aah aah aah aah -aei -aaf -aaf -aaf -acJ +iJR +sQm +sQm +sQm +nAA aae aao qsE -hfK -uvz -clB -msS -clB -clB -clB -whZ -pVP -pVP -shV +jya +xoi +sgf +jjO +sgf +sgf +sgf +cQY +dkl +dkl +rTi qsE aao aao @@ -46202,14 +37024,14 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -aJi -aHZ +sqL +sqL +gmX +nNR +tYg +dop aFv -aLY +inP aoD apG apG @@ -46217,74 +37039,74 @@ apG apG apG apG -aTL -aNc -aNc -aWi -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc -aNc +nJN +uoU +uoU +vNt +uoU +uoU +uoU +uoU +uoU +uoU +uoU +uoU +uoU +uoU +uoU aoD aao aao -azR -aYF -aYF -bcp -aSB -bgX -bsa -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -biH -bjd -bjn -bid -bsa -eWd -eWd -eWd +ayf +cVY +cVY +xsj +eaG +wDk +fGM +jFY +oiE +ryW +uUk +jFY +oiE +ryW +uUk +jFY +oiE +ryW +uUk +jFY +oiE +ryW +uUk +jFY +oiE +ryW +uUk +jFY +fGM +wVZ +kDW +iyx +eaG ayf aao aao aao aao -aao -gxJ +sIS iGK -wog -wog -wog -wog -wog -icQ -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd +hXB +kxd +kxd +kxd +kxd aao aao aao @@ -46294,51 +37116,51 @@ aao aao aao weO -pSa +qLD wtj rKs wJd -erG -pSa +vwq +qLD qVi eup enD tsy -lrW -lrW -jWF -fnO -jWF -fnO -fnO -mYW -fnO -fnO -rxh -xIv -dOu -oud -oxh -kvB -oTv -kCe -xte +mZS +mZS +fHL +vii +fHL +vii +vii +coN +vii +vii +cfT +naf +qKS +sgG +sFm +hWG +sFT +ffg +rbS uHQ -sWS -pSa -oKy -wRH -rxh -rxh -rxh -rxh -rxh -rxh -jtL -jtL -rxh -rxh -rxh +kjP +qLD +dMG +uKL +cfT +cfT +cfT +cfT +cfT +cfT +sdG +sdG +cfT +cfT +cfT aao aao aao @@ -46357,8 +37179,8 @@ aao aao aao aae -aaf -aak +sQm +dGX aah aah aah @@ -46380,25 +37202,25 @@ aah aah aah aah -aej -aaf -aaf -aaf -acJ +oyA +sQm +sQm +sQm +nAA aae aao qsE -aEY -uvz -clB -uvz -pVP -pVP -clB -rCd -exc -exc -dNn +dfZ +xoi +sgf +xoi +dkl +dkl +sgf +oBt +wWq +wWq +oGQ qsE aao aao @@ -46419,48 +37241,48 @@ aeI aeI aoD aoD -aFt -aFt -aHh -aIb -lQU -aHZ +sqL +sqL +gmX +nNR +rvw +dop aFv aFv aoD -aNi -aNi -aNi -aNi -aOt +oWk +oWk +oWk +oWk +vop arT -aNc -aNc -aRF -aWi -aNc -aNc -aNc -aNc -aNc -aNc -aUP -aNc -aNc -aNc -aNc +uoU +uoU +rmn +vNt +uoU +uoU +uoU +uoU +uoU +uoU +hzL +uoU +uoU +uoU +uoU aoD aao aao -azR -azR -aYF -bcp -aSB -bgX -bhu -bie +ayf +ayf +cVY +xsj +eaG +wDk +kAu bie +bje bie bie bie @@ -46478,12 +37300,13 @@ bie bie bie bie +bje bie -bie -bsb -eWd -eWd -eWd +rIc +wVZ +kDW +dGN +eaG ayf aao aao @@ -46491,17 +37314,16 @@ aao aao aao aao -aao -gxJ +sIS iGK -wog -wog -wog -wog -daf -feS -wog -wog +kxd +kxd +kxd +kxd +eOO +pDk +kxd +kxd aao aao aao @@ -46521,41 +37343,41 @@ uHQ jlg vvL xuP -rxh -pJX -wCo -wCo -wCo -wCo -wCo -xfx -wCo -wCo -wVQ -pSa -kCe -gTS -ieD -pSa -pZu -ggC -ymi -tZU -pSa -sqQ -oKy -uJI -rxh -rxh -jtL -uDZ -rxh -rxh -rsv -rsv -rxh -rxh -rxh +cfT +kKi +ezZ +ezZ +ezZ +ezZ +ezZ +bIU +ezZ +ezZ +qHI +qLD +ffg +xpp +kOj +qLD +lyn +dyu +kFi +ijw +qLD +kKe +dMG +xkn +cfT +cfT +sdG +mqa +cfT +cfT +mAT +mAT +cfT +cfT +cfT aao aao aao @@ -46574,8 +37396,8 @@ aao aao aao aae -aaf -aal +sQm +lca aah aah aah @@ -46597,24 +37419,24 @@ aah aah aah aah -aek -aaf -aaf -aaf -acJ +xqM +sQm +sQm +sQm +nAA aae aao qsE qsE -kFe -lMC -uvz -clB -pVP -pVP -shV -qaK -bWl +lVi +iFH +xoi +sgf +dkl +dkl +rTi +yib +wmq qsE qsE aao @@ -46636,49 +37458,49 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aHZ +sqL +sqL +gmX +nNR +rvw +dop aFv aFv aoD -aNi -aOt -aNj -aNi -aNi +oWk +vop +jny +oWk +oWk arT -aNc -aNc -aNc +uoU +uoU +uoU aoD asl -aXx +iBa aoD asl -aXx +iBa aoD asl -aXx +iBa aoD asl -aXx +iBa aoD aao aao -azR -aYF -aYF -bcp -aSB -bgX -bhv +ayf +egj +cVY +xsj +eaG +wDk +tvB +bie bie bie -bje bie bie bie @@ -46694,13 +37516,14 @@ bie bie bjo bie -bje bie bie -bsc -eWd -eWd -eWd +bie +nDr +wVZ +kDW +eaG +eaG ayf aao aao @@ -46710,15 +37533,14 @@ aao aao aao aao -aao -kvp -wog -wog -wog -wog -wog -wog -sLy +xxZ +kxd +kxd +kxd +kxd +kxd +kxd +toi aao aao aao @@ -46728,51 +37550,51 @@ aao aao aao uHQ -xMT +tqG wtj wtj mBo wtj xrp rzT -hEK +ptr vmV bss -sZh -wCo -wCo -nSP -nSP -yhc -wCo -xfx -nSP -szw -wVQ -oKy -kCe -kCe -pSa -pSa -pSa -pSa -pSa -iLu -pSa -pSa -sOi -tsc -evX -rxh -rsv +gjX +ezZ +ezZ +jjx +jjx +hHJ +ezZ +bIU +jjx +ncf +qHI +dMG +ffg +ffg +qLD +qLD +qLD +qLD +qLD +rxV +qLD +qLD +dSF +iqB +hya +cfT +mAT vHw vHw -vTh -rsv -mqX -rxh -rxh -rxh +sdC +mAT +reB +cfT +cfT +cfT aao aao aao @@ -46791,8 +37613,8 @@ aao aao aao aae -aaf -aai +sQm +sok aah aah aah @@ -46814,23 +37636,23 @@ aah aah aah aah -aeh -aaf -aaf -aaf -acJ +cdk +sQm +sQm +sQm +nAA aae aao aao qsE qsE qsE -uvz -clB -rMw -clB -rCd -ecX +xoi +sgf +oio +sgf +oBt +ork qsE qsE aao @@ -46840,8 +37662,8 @@ aeI aeI aeI aeI -aiz -ahO +cVf +ybg aeI aeI aeI @@ -46853,46 +37675,46 @@ aeI aeI aeI aoD -aFt -aFt -aHh -aIb -lQU -aHZ +sqL +sqL +gmX +nNR +rvw +dop aFv aFv aoD -aNi -aNi -aNi -aNi -aNi -aSA -aNc -aNc -aNc +oWk +oWk +oWk +oWk +oWk +ggf +uoU +uoU +uoU asl -gWr -aNi +kkx +oWk asl -aYC -aNi +osm +oWk asl -aYC -aNi +osm +oWk asl -aYC -aNi +osm +oWk aoD aao aao -azR -aYF -aYF -bcp -aSB -bgX -bhw +ayf +cVY +cVY +xsj +eaG +wDk +utb bie bie bie @@ -46914,10 +37736,11 @@ bie bie bie bie -bsd -eWd -eWd -eWd +oIu +wVZ +kDW +eaG +eaG ayf aao aao @@ -46927,15 +37750,14 @@ aao aao aao aao -aao -kvp -wog -sLy -wog -wog -gYt -gYt -feS +xxZ +kxd +toi +kxd +kxd +vTT +vTT +pDk aao aao aao @@ -46949,47 +37771,47 @@ lrb mIu fML eUs -pSa -kSm +qLD +hNr lIL fBc -pvk -dBE -sZh -wCo -wCo -nSP -yhc -wCo -wCo -xfx -wCo -wCo -wVQ -oKy -lSH -xhU -vCd -hCT -pSa -tBK -kCe -pSa -yjU -pSa -oKy -tsc -rxh -rxh -pMB +dds +hXa +gjX +ezZ +ezZ +jjx +hHJ +ezZ +ezZ +bIU +ezZ +ezZ +qHI +dMG +sGU +eks +biJ +oWo +qLD +xcd +ffg +qLD +oaL +qLD +dMG +iqB +cfT +cfT +jrF vHw vHw -rxh -rsv -rsv -rxh -rxh -rxh +cfT +mAT +mAT +cfT +cfT +cfT aao aao aao @@ -47008,11 +37830,12 @@ aao aao aao aae -aaf -aaj +sQm +nkJ +aah +aah aah aah -aaF aah aah aah @@ -47028,25 +37851,24 @@ aah aah aah aah -aaF aah aah -aei -aaf -aaf -aaf -acJ +iJR +sQm +sQm +sQm +nAA aae aao aao aao aao qsE -nMB -clB -clB -rMw -shV +itI +sgf +sgf +oio +rTi qsE qsE aao @@ -47056,60 +37878,60 @@ aeI aeI aeI atQ -aiz -ahP -ahP -aog -axu +cVf +qpx +qpx +odX +vTs aeI aeI aeI -aiz -aog -ahO +cVf +odX +ybg aeI aeI aoD -aFt -aGs -aHj -aIb -aHj -aJj -aHZ +sqL +mZQ +cYf +nNR +cYf +dSS +dop aFv aoD -aNi -aNi -aNi -aOt -aNj +oWk +oWk +oWk +vop +jny arT -aNc -aNc -aNc +uoU +uoU +uoU asl -aWT -aXy +eDN +oAX asl -aWT -aXy +eDN +oAX asl -aWT -aXy +eDN +oAX asl -aWT -aXy +eDN +oAX aoD aao aao -azR -azR -aYF -bbJ -aSB -bgX -bhx +ayf +ayf +cVY +plf +eaG +wDk +kNj bie bie bie @@ -47131,10 +37953,11 @@ bie bie bie bie -bse -eWd -eWd -eWd +lse +wVZ +kDW +eaG +eaG ayf aao aao @@ -47144,15 +37967,14 @@ aao aao aao aao -aao -kvp -wog -wog +xxZ +kxd +kxd iGK -wog -gYt -gYt -wog +kxd +vTT +vTT +kxd aao aao aao @@ -47170,42 +37992,42 @@ uHQ uHQ vHw fBc -pvk -nKL -sZh -onh -wCo -nSP -yhc -wCo -nSP -oUs -nSP -wCo -erX +dds +ddr +gjX +wjn +ezZ +jjx +hHJ +ezZ +jjx +uPU +jjx +ezZ +rJU cOt -jhj -kCe -ekV -pSa -kCe -kCe -uHT -pSa -csB -lKw -oKy -tsc -rxh -rxh -rxh -sZh -rUZ -wFO -fnO -rxh -rxh -rxh +uHN +ffg +stl +qLD +ffg +ffg +gLy +qLD +kvx +pBm +dMG +iqB +cfT +cfT +cfT +gjX +xds +vNZ +vii +cfT +cfT +cfT aao aao aao @@ -47225,11 +38047,10 @@ aao aao aao aae -aaf -aak -aah -aah +sQm +dGX aah +aaF aah aah aah @@ -47247,12 +38068,13 @@ aah aah aah aah +aaF aah -aej -aaf -aaf -aaf -acJ +oyA +sQm +sQm +sQm +nAA aae aao aao @@ -47260,73 +38082,73 @@ aao aao qsE qsE -qEJ -qEJ -qEJ -qEJ +mkX +mkX +mkX +mkX qsE aao aao aeI aeI aeI -aiz -aog -aog -ahP -ahP -ahP -ahP -ahP -aog -aog -aog -ahP -ahP -ahP -aog -aog +cVf +odX +odX +qpx +qpx +qpx +qpx +qpx +odX +odX +odX +qpx +qpx +qpx +odX +odX aoD -aFt +sqL aoD -grU -aIg -hTO +oZd +gcd +cXb aoD -aHZ +dop aFv aoD -aNj -aOu -aPu -aNi -aNi +jny +jWp +bWD +oWk +oWk arT -aNc -aNc -aNc +uoU +uoU +uoU asl -aWU -aXz +our +iHQ asl -aWU -aXz +our +iHQ asl -aWU -aXz +our +iHQ asl -aWU -aXz +our +iHQ aoD aao aao -azR -jvt -aYF -aYF -bcp -bgX -bhu +ayf +cVY +cVY +cVY +xsj +wDk +kAu bie bie bie @@ -47348,10 +38170,11 @@ bie bie bie bie -bsb -eWd -eWd -eWd +rIc +wVZ +kDW +eaG +eaG ayf aao aao @@ -47361,16 +38184,15 @@ aao aao aao aao +xxZ +kxd +pDk aao -kvp -wog -feS -aao -gxJ -wog -wog -wog -wog +sIS +kxd +kxd +kxd +kxd aao aao aao @@ -47389,39 +38211,39 @@ vHw vec wbx bss -rJR +upi vHw -lYi -nSP -qLk -nSP -wCo -jJH -opz -szw -wCo +irc +jjx +ocd +jjx +ezZ +kKz +ljC +ncf +ezZ uHQ -xfi +jOX rNc -vzL -pSa -vvR -oTL -pSa -pSa -pSa +rdL +qLD +sVZ +vrl +qLD +qLD +qLD uHQ uHQ wfd uHQ -rxh -rxh -sZh -wCo -wCo -wCo -wFO -rxh +cfT +cfT +gjX +ezZ +ezZ +ezZ +vNZ +cfT aao aao aao @@ -47442,73 +38264,73 @@ aao aao aao aae -aaf -aaf -aap -aav -aaG -aaT -aap -abj -abt -aaT -aap -aav -aaG -aaT -aap -aav -aaG -aaT -aap -aav -aaG -aaT -aap -aaf -aag -aaf -aaf -acJ +sQm +sQm +oBw +ooO +qgw +lyj +oBw +vRL +uny +lyj +oBw +ooO +qgw +lyj +oBw +ooO +qgw +lyj +oBw +ooO +qgw +lyj +oBw +sQm +uZw +sQm +sQm +nAA aae aao aao aeI aeI aeI -viN -ajx -ajx -aoN -ajx -vXp -pdN +gCN +paC +paC +uhZ +paC +oZx +hkf aeI aeI aeI -aoO -aiw -aqp -aqp -aqp -aiw -aqp -aqp -aiw -aiw -aiw -aiw -aiw -aqp -aiw -aqp -aDw +uMi +tMs +qBP +qBP +qBP +tMs +qBP +qBP +tMs +tMs +tMs +tMs +tMs +qBP +tMs +qBP +fXM aoD aoD aoD -aHj -aIb -aHj +cYf +nNR +cYf aoD aoD aoD @@ -47520,7 +38342,7 @@ aoD aoD aoD aoD -eUT +yfq aoD aoD aoD @@ -47529,21 +38351,21 @@ aoD aoD aoD aoD -aoa aoD aoD aoD aoD -aoa -azR -azR -azR -aYF -aYF -bbc -aSB -bgX -bhy +aoD +aoD +ayf +ayf +ayf +cVY +cVY +rwu +eaG +wDk +oag bie bie bie @@ -47554,7 +38376,7 @@ bie bie bie bie -biI +xIC bie bie bie @@ -47565,10 +38387,11 @@ bie bie bie bie -bsc -eWd -eWd -eWd +nDr +wVZ +kDW +eaG +eaG ayf aao aao @@ -47578,17 +38401,16 @@ aao aao aao aao -aao -kvp -wog -feS +xxZ +kxd +pDk aao aao -gxJ -wog -wog -wog -wog +sIS +kxd +kxd +kxd +kxd aao aao aao @@ -47608,37 +38430,37 @@ aao aao aao aao -hfB -dXs -uJu -uPF -wCo -jJH -yhc -nSP -nSP +dDv +gSf +rQN +jNU +ezZ +kKz +hHJ +jjx +jjx uHQ wtj ohY -pSa -lSH -pSa -sWS -pSa -pSa -pSa -dIG +qLD +sGU +qLD +kjP +qLD +qLD +qLD +ekO ipf sdP uHQ -rxh -hEz -hEz -owR -eql -wCo -wCo -wVQ +cfT +xQe +xQe +swZ +imM +ezZ +ezZ +qHI aao aao aao @@ -47659,75 +38481,75 @@ aao aao aao aae -aag -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aam -aag -aam -acw -aam -acw -acw -aam -aam -vvi -aam -aam -aam -aam -aam -ago +uZw +eXF +eXF +eXF +eXF +eXF +eXF +eXF +eXF +eXF +eXF +eXF +eXF +uZw +eXF +hHn +eXF +hHn +hHn +eXF +eXF +nnG +eXF +eXF +eXF +eXF +eXF +jRS aae -ahR +ncY aeI aeI aeI aeI -auF -ajx -aoN -ajx -ajx -ahT +rjl +paC +uhZ +paC +paC +dRT aeI aeI aeI aeI -ajy -ajx -aoN -akd -akd -akd -aiy -aoN -ajx -amc -aix -aix -aix -aix -aix -aix -aDx -aDw -ahP +lQd +paC +uhZ +lzU +lzU +lzU +wlX +uhZ +paC +xaj +itG +itG +itG +itG +itG +itG +vOW +fXM +qpx aoD -grU -aIg -grU -aoa -aln +oZd +gcd +oZd +aoD +iSh aoD aEu aEu @@ -47743,24 +38565,24 @@ aEu aoD aEu aEu -aEV +aoD aEu aEu -aoa -aSB -aSB aoD -aSB -aSB -azR -aSB -aSB -bax -bax -aSB -aSB -bgX -bhw +kLi +kLi +aoD +kLi +kLi +wbl +kLi +eaG +wtP +wtP +eaG +eaG +wDk +utb bie bie bie @@ -47782,10 +38604,11 @@ bie bie bie bie -bsd -eWd -eWd -eWd +oIu +wVZ +kDW +eaG +eaG ayf aao aao @@ -47795,19 +38618,18 @@ aao aao aao aao -aao -kvp -wog -iAF +xxZ +kxd +mxu aao aao aao -kvp -wog -sLy -wog -wog -wog +xxZ +kxd +toi +kxd +kxd +kxd aao aao aao @@ -47824,37 +38646,37 @@ aao aao aao aao -nwS -rPh -mWt -klp -kPP -wCo -ecy -smF -iaX -eql +pIs +xZI +jBT +hlK +ctv +ezZ +tNG +heT +qJm +imM uHQ wtj qSj -pSa +qLD uHQ -dNr -buY -uuO -xhB -pSa -qYY +cYF +oyX +jcs +hSa +qLD +qYd dKo -pSa +qLD uHQ -fnO -fnO -fnO -fnO -sZh -wCo -wCo +vii +vii +vii +vii +gjX +ezZ +ezZ aao aao aao @@ -47889,7 +38711,7 @@ abk aah abu aaH -ace +rfB aah aah aah @@ -47905,79 +38727,79 @@ aah aah aeG aae -ahR +ncY aeI aeI aeI aeI aeI -ajy -ajx -ajx -ahR +lQd +paC +paC +ncY aeI aeI aeI aeI -aiz -ajy -ajx -ahR -ahP -aqJ -ahP -ahP -ajy -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajY -akK -ahP -auF -ajx -ajY -ajx -ahT -aln +cVf +lQd +paC +ncY +qpx +snb +qpx +qpx +lQd +paC +jAW +paC +paC +paC +paC +paC +paC +jAW +qof +qpx +rjl +paC +jAW +paC +dRT +iSh aEu aEu aEu aEu aEu -aQF -aQG -aQG +pOR +guo +guo aEu aEu aEu aEu aEu aEu -aSB +kLi aEu aEu aEu aEu -aSB -aSB -aSB -aSB -beP -beP -beP -aSB -aSB -aSB -aSB -aSB -bgX -bhz +kLi +kLi +kLi +kLi +wqN +wqN +wqN +eaG +eaG +eaG +eaG +eaG +wDk +pFn bie bie bie @@ -47999,10 +38821,11 @@ bie bie bie bie -bse -eWd -eWd -eWd +lse +wVZ +kDW +eaG +eaG ayf aao aao @@ -48012,21 +38835,21 @@ aao aao aao aao +sIS +mxu aao -gxJ -iAF aao aao aao +xxZ +kxd +kxd +kxd +kxd +kxd +kxd +lMx aao -kvp -wog -wog -wog -wog -wog -wog -oQI aao aao aao @@ -48041,37 +38864,36 @@ aao aao aao aao -aao -iXN -nkY -dQF -nSP -wCo -xYc +xAl +rSK +fAl +jjx +ezZ +wyN lCR -myc -lPh +njT +gYZ uHQ wtj qmm -lEw +iDp lBe -pSa -pSa -iLu -xhB -kCe +qLD +qLD +rxV +hSa +ffg nqr -kCe +ffg xWr uHQ vHw -owR -owR -owR -sZh -wCo -nSP +swZ +swZ +swZ +gjX +ezZ +jjx aao aao aao @@ -48106,7 +38928,7 @@ abl aah abv aaI -acf +rZl aah aah aah @@ -48122,79 +38944,79 @@ aah aah aeG aae -ahR +ncY aeI aeI aeI aeI aeI -ajy -aoN -aoN -ahR +lQd +uhZ +uhZ +ncY aeI aeI aeI aeI -aiA -ajy -aoN -akK -aqJ -aoO -aiw -aiw -ajx -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -aDz -aEv -ahP -ahP -ajy -ajY -ahR -ahP -ama +wXb +lQd +uhZ +qof +snb +uMi +tMs +tMs +paC +paC +jAW +paC +paC +paC +paC +paC +paC +dqz +vmE +qpx +qpx +lQd +jAW +ncY +qpx +dFl aeI aEu aEu aEu aEu -fjF +sJR aEu -aQF -aQG +pOR +guo aEu -aVF -aWk -aWk -aWk -aWk -aWk -aVI -aWk -aWk -aWk -aVI -aWk -aWk -aVI -aWk -aWk -aVI -aVI -aWk -aWk -aWk -eWd -bhA +fho +sxQ +sxQ +sxQ +sxQ +sxQ +eWD +sxQ +sxQ +sxQ +eWD +sxQ +sxQ +eWD +sxQ +sxQ +foR +foR +ged +ged +ged +wVZ +nkb bie bie bie @@ -48216,10 +39038,11 @@ bie bie bie bjo -bsb -eWd -eWd -eWd +rIc +wVZ +kDW +eaG +eaG ayf aao aao @@ -48235,15 +39058,14 @@ aao aao aao aao -aao -kvp -wog -daf -wog -wog -wog -wog -feS +xxZ +kxd +eOO +kxd +kxd +kxd +kxd +pDk aao aao aao @@ -48261,34 +39083,34 @@ aao aao aao aao -eql -wCo -wCo -fQv +imM +ezZ +ezZ +mdw ene -rZQ -dPb +pSw +hTh uHQ uHQ uHQ uHQ uHQ -pSa -cDx +qLD +ent uHQ -oKy -oKy +dMG +dMG wrS -qkw +cBk uHQ uHQ uHQ -fnO -fnO -fnO -pJX -eSu -wCo +vii +vii +vii +kKi +jGN +ezZ aao aao aao @@ -48323,7 +39145,7 @@ abm aah abw aaJ -acg +nOA aah aah aah @@ -48339,45 +39161,45 @@ aah aah aeG aae -ahR -ahO +ncY +ybg aeI aeI aeI aeI -ajy -aoN -ajx -ahR +lQd +uhZ +paC +ncY aeI aeI aeI aeI -aiA -ajz -ajx -akK -ahP -ajy +wXb +sAe +paC +qof +qpx +lQd anp anp anp -axv -axY -axv +eJf +vsL +eJf anp anp anp -anp -ajx -ajY -akK -ahP -ahP -ajy -ajY -ahR -aln +rXc +paC +jAW +qof +qpx +qpx +lQd +jAW +ncY +iSh aeI aeI aeI @@ -48387,34 +39209,35 @@ aEu aEu aEu aEu -aQF -aQF -aVG -bdZ -aWV -aXA -aXA -aWV -aXA -aXA -aWV -bba -aXA -bdZ -aUQ -bdZ -bdZ -bdZ -aXA -aWV -aXA -aXA -aXA -eWd -bhv +pOR +pOR +pQT +xue +iFl +koN +koN +iFl +koN +koN +iFl +scu +koN +xue +pHf +xue +xue +xue +mlK +eWV +mlK +mlK +mlK +wVZ +tvB +bie +bie bie bie -bje bie bie bie @@ -48430,13 +39253,13 @@ bie bie bie bie -bje bie bie -bsc -eWd -eWd -eWd +nDr +wVZ +kDW +eaG +eaG ayf aao aao @@ -48452,59 +39275,58 @@ aao aao aao aao -aao -kvp -wog -wog -wog -wog -wog -wog -wog -kvp +xxZ +kxd +kxd +kxd +kxd +kxd +kxd +kxd +xxZ aao aao xMr -hFP +bMZ lbZ maF sbA pcf -qzY -hzP -fnO -xkR -tWS -uNW -iJF -omG -pJX -wCo -yhc -ozf -rDO -cJh -pJX -rUZ -wCo -wCo -wCo -wCo -wVQ -rxh -xhy -sZh -wCo -nRS -nSP +ogv +dHY +vii +pcq +uGd +hUn +qhO +dwo +kKi +ezZ +hHJ +rTJ +dhZ +gkP +kKi +xds +ezZ +ezZ +ezZ +ezZ +qHI +cfT +tKc +gjX +ezZ +foQ +jjx nCX uHQ uHQ -wCo -wCo -wCo -wCo -wCo +ezZ +ezZ +ezZ +ezZ +ezZ aao aao aao @@ -48540,7 +39362,7 @@ aah aah aah aah -ach +wGu aah aah aah @@ -48556,26 +39378,26 @@ aah aah aeG aae -ahR -ahP -ahO +ncY +qpx +ybg aeI aeI aeI -ajy -ajx -ajx -akK +lQd +paC +paC +qof aeI aeI aeI aeI -aiA -ajy -ajx -akK -aln -ajy +wXb +lQd +paC +qof +iSh +lQd anp avT bZp @@ -48586,15 +39408,15 @@ azn avT avT anp -ajx -ajY -ahR -ahP -ahP -ajy -ajY -ahR -aln +paC +jAW +ncY +qpx +qpx +lQd +jAW +ncY +iSh aeI aeI aEu @@ -48603,34 +39425,34 @@ aEu aEu aEu aEu -aSB -aSB -aSB -aVH -beQ -aSB -aSB -aSB -aYE -aYE -aYE -aYE -aYE -aSB -aVG -bdZ -bdZ -bdZ -beu -beP -aSB -aSB -aSB -aSB -bgX -bhw -bie +kLi +kLi +kLi +eYP +fmU +kLi +kLi +kLi +vYC +vYC +vYC +vYC +vYC +kLi +pQT +xue +xue +xue +ofK +mSz +eaG +eaG +eaG +eaG +wDk +utb bie +bje bie bie bie @@ -48648,12 +39470,13 @@ bie bie bie bie +bje bie -bie -bsd -eWd -eWd -eWd +oIu +wVZ +kDW +eaG +ePI ayf aao aao @@ -48669,59 +39492,58 @@ aao aao aao aao -aao -gxJ +sIS iGK iGK -wog -wog -sLy -wog -wog -kvp -wog -eGf +kxd +kxd +toi +kxd +kxd +xxZ +kxd +hHs fYH -vQu +vPm dCA cAN -yfs +klc mhG -fOo -iDJ -jPV -sln -wtJ -dFz -jVW -qmG -wCo -tiD -wmh -xfx -seO -igM -wCo -nSP -vmI -wCo -wCo -wCo -wVQ -rxh -rxh -sZh -yhc -dqy -dvB +uBk +nLc +kKd +hUY +hsK +tGo +xAa +nsT +ezZ +fgV +hcU +bIU +wtK +vKq +ezZ +jjx +mVj +ezZ +ezZ +ezZ +qHI +cfT +cfT +gjX +hHJ +nbl +eLY nCX uHQ uHQ -jVN -iLs -jVN -bII -iLs +cPW +cyS +cPW +dIV +cyS aao aao aao @@ -48742,11 +39564,11 @@ aao aao aao aao -wcs +uQp aae aae aae -aLh +wUL aah aah aaU @@ -48757,7 +39579,7 @@ aah aah aah aah -ach +wGu aah aah aah @@ -48773,48 +39595,48 @@ aah aah aeG aae -ahR -ahP -ahP -ahO +ncY +qpx +qpx +ybg ahi aeI -ajy -ajx -ajx -ahR +lQd +paC +paC +ncY aeI aeI aeI aeI -aiA -ajy -ajx -ahR -aln -ajy +wXb +lQd +paC +ncY +iSh +lQd bFw -bjj -bjj -jtX +hbR +hbR +hKN axZ avT azo aAq aAZ anp -ajx -ajY -ajx -aiw -aiw -aHl -ajY -ahR -aln +paC +jAW +paC +tMs +tMs +bWe +jAW +ncY +iSh aeI -aoO -aqp +uMi +qBP aEu aEu aEu @@ -48822,55 +39644,56 @@ aEu aEu aEu aEu -aWk -aUQ -bdZ -aWk -aWk -aWk -aWk -aWk -aWk -aXY +sxQ +pHf +xue +sxQ +sxQ +sxQ +sxQ +sxQ +sxQ +uEq aYF -bbJ -aVG -bdZ -aUQ -bdZ -bev -beP -aSB -bfT -aSB -aSB -bgX -bsa -bpu -bqd -bqE -bjp -bjO -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bqd -bqE -brb -bpu -bsa -eWd -eWd -eWd +pDG +pQT +xue +pHf +xue +dta +mSz +eaG +iWn +eaG +eaG +wDk +fGM +eYo +njG +xed +fcW +uJX +njG +xed +qqN +eYo +njG +xed +qqN +eYo +njG +xed +qqN +eYo +njG +xed +qqN +eYo +fGM +wVZ +kDW +eaG +boi ayf aao aao @@ -48889,56 +39712,55 @@ aao aao aao aao -aao -kvp -wog -wog -wog -wog -wog -wog -jMm +xxZ +kxd +kxd +kxd +kxd +kxd +kxd +qCP uxx fOM ulH -lYC -yfs +xDr +klc uxx -yda -nBb -gki -paz -eBn -rVh -ubY -ubY -xXg -wCo -wCo -jJH -wCo -sqc -quQ -fMT -wCo -nSP -wCo -wCo -wVQ -rxh -rxh -sZh -wCo -dqy -nSP -ugW +tCA +nwR +bst +gmy +jWO +sRS +lGE +lGE +ecJ +ezZ +ezZ +kKz +ezZ +sNW +cLY +dgM +ezZ +jjx +ezZ +ezZ +qHI +cfT +cfT +gjX +ezZ +nbl +jjx +dUl uHQ uHQ -tqi -owR -owR -owR -owR +fPL +swZ +swZ +swZ +swZ aao aao aao @@ -48958,11 +39780,11 @@ aao aao aao aao -wXg -pow -pow -mGq -rgp +xkK +wvJ +wvJ +kXv +yly aae aah aah @@ -48974,7 +39796,7 @@ aah abD aah aah -ach +wGu aah aah aah @@ -48989,48 +39811,48 @@ aah aah aah aeG -ahK -ajx -aiw -aiw -aiw -aiw -aiw -ajx -ajx -ajx -ajx -aiw -aiw -aiw -aqp -aqp -ajx -ajx -akK -aln -ajy +sbU +paC +tMs +tMs +tMs +tMs +tMs +paC +paC +paC +paC +tMs +tMs +tMs +qBP +qBP +paC +paC +qof +iSh +lQd bFw -kRo -joi -bjX +kWd +nOB +xjh axZ avT avT avT avT anp -ajx -aDA -alm -alm -alm -aHm -aIi -ahT -aln +paC +fpk +upc +upc +upc +ktB +ife +dRT +iSh aeI -ajy +lQd aoH aoH aoH @@ -49040,54 +39862,55 @@ aoH aoH aoH asj -aVJ -aVJ +kle +kle asj aoH aoH asK +fdF asK -asK -beQ +fmU aYF aYF -aVG -bdZ -aUQ -bdZ -bev -beP -aSB -aSB -aSB -aSB -bgX -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd +pQT +xue +pHf +xue +dta +mSz +eaG +eaG +eaG +eaG +wDk +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +kDW +eaG +dWd ayf aao aao @@ -49106,57 +39929,56 @@ aao aao aao aao -aao -kvp -wog -wog -wog -wog -xXP -euP -oWc +xxZ +kxd +kxd +kxd +kxd +gSo +xMl +ilv tCh eZw cVh -fvb -kek +hQB +pfU tCh -sZi -iPE -iPE -iPE -iPE -jrA -jZy -obB -iPE -iPE -jrA -cSu -iPE -iPE -iPE -rqv -iPE -iPE -iPE -tBb -ilO -pVp -pVp -bvD -iqF -xJT -wCo +wiL +pBh +pBh +pBh +pBh +uUa +lnD +irY +pBh +pBh +uUa +wLK +pBh +pBh +pBh +lsf +pBh +pBh +pBh +cPv +lTt +wAe +wAe +fjV +jey +xwI +ezZ nCX uHQ aao -rsv -rsv -rsv -rsv -rsv -rsv +mAT +mAT +mAT +mAT +mAT +mAT aao aao aao @@ -49174,12 +39996,12 @@ aab aao aao aao -hgT -wXg -pMv -wXg -wKx -rgp +rhG +xkK +jjW +xkK +vRP +yly aaq aah aah @@ -49191,7 +40013,7 @@ aah aah aah aah -ach +wGu aah aah aah @@ -49206,105 +40028,106 @@ aah aah aah agr -fSJ -aix -aix -aix -aix -ajX -ajx -ajx -ajx -ajx -ajx -ajx -aoN -ajx -aoN -aoN -ajx -aoN -ahR -aln -ajy +pML +itG +itG +itG +itG +qGJ +paC +paC +paC +paC +paC +paC +uhZ +paC +uhZ +uhZ +paC +uhZ +ncY +iSh +lQd bFw -kRo -kRo -bjX +kWd +kWd +xjh axZ avT avT avT avT anp -ahR -ahV -ahV -ahV -ahP -ahP -ahP -ahP -ama +ncY +jUD +jUD +jUD +qpx +qpx +qpx +qpx +dFl aeI -ajz +sAe apt -aNk -aOv -aPv -aOv -aOv -aSC -aPv -aNm -aOv -aOv -aWX -aXB +eNw +yeU +xsA +yeU +yeU +ljj +xsA +kfz +yeU +yeU +ehu +wNX aoH aXH aXH asK -beQ +fmU aYF aYF -aVG -bdZ -aUQ -bdZ -bev -aSB -aSB -aSB -xGT -aWk -eWd -eWd -kHK -kHK -eWd -eWd -eWd -eWd -eWd -eWd -eWd -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -eWd -eWd -eWd -bmN -bmN -bmN -bmN -bmN +pQT +xue +pHf +xue +dta +eaG +aao +aao +eaG +eaG +wDk +qzF +geM +geM +mlK +mlK +mlK +wVZ +wVZ +wVZ +mlK +mlK +wVZ +mlK +mlK +mlK +mlK +mlK +mlK +wVZ +wVZ +wVZ +mlK +mlK +mlK +kVV +eaG +ayf ayf aao aao @@ -49323,57 +40146,56 @@ aao aao aao aao -aao -gxJ +sIS iGK iGK -wog -wog -wog -wog -jMm +kxd +kxd +kxd +kxd +qCP uxx -jsL -tQo +xbf +lVk kKx -vlr +gJa uxx -rMJ -tff -tdp -syu -owR -owR -dFR -xWH -eql -wCo -wCo -xfx -wCo -wCo -szw -tqi -owR -owR -owR -eql -wCo -wCo -wCo -onh -nSP -wCo -tqi -pSa +vlE +oQo +uPi +pQe +swZ +swZ +tGA +ica +imM +ezZ +ezZ +bIU +ezZ +ezZ +ncf +fPL +swZ +swZ +swZ +imM +ezZ +ezZ +ezZ +wjn +jjx +ezZ +fPL +qLD uHQ aao aao -rsv -rsv -mqX -rsv -rsv +mAT +mAT +reB +mAT +mAT aao aao aao @@ -49390,13 +40212,13 @@ aaa aab aao aao -wXg -wXg -wXg -wXg -wXg -wKx -rgp +xkK +xkK +xkK +xkK +xkK +vRP +yly aae aah aah @@ -49408,7 +40230,7 @@ aah adL aah aah -ach +wGu aah acx aah @@ -49423,50 +40245,50 @@ acx aah aah aeG -ahK -ajx -aiy -aiy -ajx -ajY -ajx -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -akd -atm -aln -ajy +sbU +paC +wlX +wlX +paC +jAW +paC +wlX +wlX +wlX +wlX +wlX +wlX +wlX +wlX +wlX +wlX +lzU +tjG +iSh +lQd bFw -rhx -bjv -bqg +tOG +iZo +uRS aya avT azo aAq aAZ anp -ahR +ncY aeI aeI ahi -aiB -ahV -ama +vWs +jUD +dFl aeI aeI aeI -ajz +sAe apt -aNk +eNw aNo aOB aOB @@ -49477,51 +40299,51 @@ aNo aOB aOB aNo -aXC +fAK aoH aXH aXH asK -beQ +fmU aYF aYF -bcq -bdZ -bdZ -bdZ -bev -aSB -aSB -aSB -aVG -asK -asK -asK -bdg -bbg -asK -atw -atw -atw -atw -atw -asK +rqX +xue +xue +xue +dta +eaG +eaG +aao +aao +eaG +wDk +qzF +wVZ +kDW +cbD +rYf +pKk +wDk +wVZ +ygD ayf -bsa ayf -axX -tGM -fVU -axX -bpx -ufD -bpv -brd -bpx -bpx -bpx -bpx -bpx +fGM +ayf +ayf +kiO +eaG +eaG +eaG +wDk +wVZ +kDW +eaG +kiO +eaG +eaG +eaG aao aao aao @@ -49544,54 +40366,54 @@ aao aao aao aao -fus -kgx -qEs -hEE -wBi +kDZ +xPZ +sWk +fqJ +hnH uxx fOM kcx pbX -yfs +klc uxx -jZM -dUz -vVF +lwG +qGP +dql vHw vHw uHQ uHQ -oKy -oKy -ybT +dMG +dMG +ucR vRs -xfx -nSP -wCo -yhc -wVQ -aao -aao -fnO -fnO -nSP -wCo -kSH +bIU +jjx +ezZ +hHJ +qHI +aao +aao +vii +vii +jjx +ezZ +npl uHQ -hRy -ezQ -pSa -sDs +sHY +xqh +qLD +saR uHQ aao aao -rxh -fnO -fnO -rxh -rxh -rxh +cfT +vii +vii +cfT +cfT +cfT aao aao aao @@ -49607,17 +40429,17 @@ aaa aab aao aao -geC -wXg -wXg -jIQ -iuu -pXu -rgp +ggA +xkK +xkK +cod +eTg +rng +yly aae aaw -ahK -aaW +sbU +qJz aaw aaw abx @@ -49625,7 +40447,7 @@ abx aaw aaw aah -ach +wGu aah aah aah @@ -49641,26 +40463,26 @@ aah aah aeG aae -ahU -ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ajy +tTe +qpx +qpx +lQd +jAW +ncY +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +lQd anp avT avT @@ -49671,7 +40493,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -49681,65 +40503,65 @@ aeI aeI aeI aeI -ajz +sAe apt -aNk +eNw aOw -aPw -aQH -aRK -aSD -aTM -aUS +wop +fcV +qlo +xEg +jlX +qjP aNo -aNm -aWY -aXD +kfz +slN +cGs aoH aXH aXH asK -beQ +fmU bbb aYF -aVG -bdZ -bdZ -bdZ -bev -aSB -aSB -bfU -aVG -asK -svp -svp -aZu -aZu -bbM -aZu -bjP -tgk -qHZ -qHZ -asK +pQT +xue +xue +xue +dta +eaG +eaG +xxO +eaG +eaG +wDk +wVZ +wVZ +wVZ +ged +ged +ged +wVZ +wVZ +eGI ayf ayf ayf -azb -guR -erZ -azb -bpx -ufD -bpv -brd -bpx -bpx -bpx -bpx -bpx -bpx +ayf +ayf +eaG +eaG +kiO +eaG +wDk +wVZ +kDW +eaG +eaG +eaG +eaG +eaG +kiO aao aao aao @@ -49761,39 +40583,39 @@ aao aao aao aao -fus -kgx -kgx -kgx -vct -bvV +kDZ +xPZ +xPZ +xPZ +trU +pjp rUn dSg pQE jDy -nMZ -ovZ -nFB +xNK +gll +sLh vHw vHw vHw uHQ -hoY -mOW -pvk -tRd +pjX +gCX +dds +bkP qVi -xfx -wCo -nSP -wCo -wVQ +bIU +ezZ +jjx +ezZ +qHI vHw vHw -owR -owR -wCo -wCo +swZ +swZ +ezZ +ezZ aao uHQ uHQ @@ -49803,12 +40625,12 @@ uHQ uHQ aao aao -pJX -wCo -wCo -wVQ -rsv -rsv +kKi +ezZ +ezZ +qHI +mAT +mAT aao aao aao @@ -49825,24 +40647,24 @@ aab aao aao aao -wXg -jIQ -pXu -pXu -pXu -xbV +xkK +cod +rng +rng +rng +vmX aae -vLW -aaO -aaP -abe -abn -aby -gEx -abE +dlk +kOY +swt +naT +dOB +nwr +mWZ +shu aaw aca -ach +wGu aah aah aah @@ -49858,26 +40680,26 @@ aah aah aeG aae -ahR -ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ahP -ard -ahP -ahP -ahP -ahP -ajy +ncY +qpx +qpx +lQd +jAW +ncY +qpx +qpx +qpx +qpx +qpx +qpx +qpx +qpx +mpt +qpx +qpx +qpx +qpx +lQd anp avU avT @@ -49888,7 +40710,7 @@ avT avT aBa anp -ahR +ncY aeI aeI aeI @@ -49898,66 +40720,66 @@ aeI aeI aeI aeI -ajz +sAe apt -aNk +eNw aOx -aPx +pge aoH aoH aoH aoH -aUT +cid aNo -aNm +kfz aOB -aXE +gaU aoH aXH aXH asK -beQ +fmU aYF -bbc -aVG -bdZ -bdZ -bdZ -beQ -aSB -aSB -aSB -aVG -asK -bhb -bhb -bhb -bhD -bhb -bhb -bhb -bhb -bhb -aLn -asK +mNh +pQT +xue +xue +xue +fmU +eaG +eaG +eaG +eaG +eaG +wDk +wVZ +wVZ +geM +mlK +mlK +mlK +wVZ +wVZ +hfA +ayf aFc aFc aFc -azb -guR -erZ -azb -bpx -ufD -bpv -brd -bpx -bpx -bpx -bpx -bpx -bpx -oip +ayf +eRh +eRh +axX +eaG +wDk +wVZ +kDW +eaG +eaG +eaG +eaG +eaG +eaG +chS lzI aao aao @@ -49978,11 +40800,11 @@ aao aao aao aao -fus -kgx -kgx -kgx -fvu +kDZ +xPZ +xPZ +xPZ +kFu uHQ tBf qjA @@ -49990,26 +40812,26 @@ bJS iaN uHQ tDk -nub +vlT gNH aao aao uHQ -khl -hzg -pSa -kmb +iev +eUS +qLD +svh qVi -qZU -wCo -wCo -wCo -wFO -fnO -fnO -fnO -pJX -tqi +qMc +ezZ +ezZ +ezZ +vNZ +vii +vii +vii +kKi +fPL aao aao aao @@ -50019,13 +40841,13 @@ aao aao aao aao -pJX -wCo -jVN -jVN -wVQ -rsv -rsv +kKi +ezZ +cPW +cPW +qHI +mAT +mAT aao aao aao @@ -50042,24 +40864,24 @@ aab aao aao aao -iuu -pXu -pXu -pXu -xBS -pow +eTg +rng +rng +rng +tNE +wvJ aae -aay -aaO -aaO -aaO -aaO -aaO -abA -abF +oPT +kOY +kOY +kOY +kOY +kOY +itg +kRL abR aah -ach +wGu aah aah acB @@ -50073,29 +40895,29 @@ aah aeF afg afg -adl +rxR aae -ahR -ahV -ahP -ajy -ajY -ajx -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -ajx -axv +ncY +jUD +qpx +lQd +jAW +paC +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +tMs +paC +eJf avT avT avT @@ -50105,7 +40927,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -50115,71 +40937,71 @@ aeI aeI aeI aeI -aLZ +tiM aoH -aNl +ntP aOy -aGT -aPy -aRL -aSE -aTN -aUU +bMF +qmd +lWe +uxF +hhQ +gMz aNo -aWs +xDF aQM aPG -aXZ +vge aYG aXH asK -beQ -bbc -aSB -aVG -bdZ -bdZ -bdZ -beQ -aSB -aSB -aSB -aVG -asK -bhc -bbe -bfz -aZu -aZu -aZu -aZu -aZu -bhb -blb -asK +fmU +mNh +kLi +pQT +xue +xue +xue +fmU +eaG +eaG +eaG +eaG +eaG +mLT +ckp +fYa +kDW +pKk +rWV +cbD +wDk +wVZ +wyJ +eFf aFc aFc -bme +eYY azb -guR -erZ +pvU +wZV azb -bpx -ufD -bpv -bpv -brG -brG -brG -brG -brG -brG -brG -qzO -cHn -cHn -cHn -hqD +ged +wVZ +wVZ +wVZ +ged +ged +ged +ged +ged +ged +ged +oLg +riy +riy +riy +lQC keg keg keg @@ -50195,11 +41017,11 @@ aao aao aao aao -lQN -kgx -kgx -kgx -dVA +tfn +xPZ +xPZ +xPZ +kTN uHQ uHQ uHQ @@ -50212,20 +41034,20 @@ aao aao aao uHQ -eNN -mOW -kMs -uDI +gyp +gCX +nJI +gXI uHQ vHw vHw -eql -wCo -wCo -wCo -tqi -owR -owR +imM +ezZ +ezZ +ezZ +fPL +swZ +swZ aao aao aao @@ -50236,13 +41058,13 @@ aao aao aao aao -wCo -wCo -hyv -jVN -wFO -rsv -rsv +ezZ +ezZ +faM +cPW +vNZ +mAT +mAT aao aao aao @@ -50259,24 +41081,24 @@ aab aao aao aao -iyY -iyY -pXu -mDN -wXg -wcs +xOk +xOk +rng +emD +xkK +uQp aae -aaz -aaP -aaP -aaO -aaP -aaO -aaO -abG +kjj +swt +swt +kOY +swt +kOY +kOY +kjk abR aah -ach +wGu aah aah aah @@ -50289,30 +41111,30 @@ aah aah aeG afh -afM -agv -ahg -ahW +lmG +fii +rvs +xxq ahX -aiA -ajy -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -axv +wXb +lQd +jAW +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +paC +eJf avT avT avT @@ -50322,7 +41144,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -50332,9 +41154,9 @@ aeI aeI aeI aeI -ajy +lQd aoH -aNm +kfz aOx aNo aNo @@ -50345,58 +41167,58 @@ aUV aVK aOy aNo -aHK +ogT aoH aYH aXH asK -beQ -aSB -beR -bcr -bcs -bcs -bcs -bew -beR -aSB -aSB -aVG -asK -bhd -bhD -bik -bhD -bhb -bhb -bhb -bhb -bhb -aZu -asK +xue +sxQ +xHc +pHf +pHf +pHf +pHf +xue +rrt +ged +ged +ged +ged +nWw +geM +fXr +geM +ged +ged +ged +wVZ +wVZ +usO +eFf aFc aFc -bme +eYY azb -guR -erZ -azb -bpy -ufD -bpv -bpv -bpv -bpv -bpv -bpv -bpv -bpv -bpv -qzO -bGL -bGL -bGL -qCK +jML +oiQ +vLE +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +wVZ +oLg +hnL +hnL +hnL +sYb keg xIP bvF @@ -50406,17 +41228,17 @@ bvS bvS bvS keg -euF +lxX aao aao aao aao aao vex -oQz -gpT -kgx -fvu +jUe +vcT +xPZ +kFu vex aao aao @@ -50426,23 +41248,23 @@ aao aao aao aao -ers +bSv aao uHQ -oRK -bSw -wfR -jUW +kUe +uyf +koo +gSp uHQ vHw hLS -sZh -wCo -nSP -wCo -wVQ -rxh -rxh +gjX +ezZ +jjx +ezZ +qHI +cfT +cfT aao aao aao @@ -50453,13 +41275,13 @@ aao aao aao aao -eql -wCo -wCo -nSP -wCo -wVQ -rsv +imM +ezZ +ezZ +jjx +ezZ +qHI +mAT aao aao aao @@ -50477,23 +41299,23 @@ aao aao aao aao -wXg -wKx -mDN -wXg -uzv +xkK +vRP +emD +xkK +vtY aae -aaA -aaP -aaP -abf -aaP -aaP -aaO -abH +rCq +swt +swt +opJ +swt +swt +kOY +sxK aaw aah -ach +wGu acn aah aah @@ -50506,30 +41328,30 @@ aah aah aeH aah -afM -agw -agv -akK +lmG +cXJ +fii +qof ahX -aiA -ajy -ajZ -aix -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -aix -avt +wXb +lQd +lrE +itG +upc +upc +upc +upc +upc +upc +upc +upc +upc +upc +upc +upc +upc +itG +hgw avV avV avV @@ -50539,7 +41361,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -50549,9 +41371,9 @@ aeI aeI aeI aeI -ajy +lQd aoH -fmd +qdv aOx aOB aOB @@ -50559,61 +41381,61 @@ aRM aOB aOB aUW -aVL -aWt -aHK -aXG +jtf +cph +ogT +wBL aoH aYI aXH asK -bdZ -aWk -beS -bcs -bdf -bdf -beb -bdf -beS -aWk -aWk -bdZ +xue +xue asK -oEJ -oEJ -baz -aZO -bjg -bjt -bjQ -bkk -bjQ -blc +pHf +xue +xue +sYm +xue +asK +wVZ +wVZ +wVZ asK +wVZ +wVZ +fXr +geM +uUd +uUd +eFf +wVZ +wVZ +lqS +eFf aFc aFc -bme +eYY azb -guR -erZ +jML +ewT azb -bme -bqe -heU -heU -heU -heU -heU -heU -heU -heU -heU -qzO -bGL -bGL -bGL -qCK +mlK +mlK +mlK +mlK +mlK +mlK +mlK +mlK +mlK +mlK +mlK +oLg +hnL +hnL +hnL +sYb keg rdR rdR @@ -50623,17 +41445,17 @@ btw btw btw keg -euF +lxX aao aao aao aao aao aao -fus -kgx -kgx -dVA +kDZ +xPZ +xPZ +kTN aao aao aao @@ -50646,19 +41468,19 @@ aao aao aao lBe -eNN -xkH -pvk -jnV +gyp +hMK +dds +tDa uHQ aao -xhy -sZh -wCo -wCo -wCo -wVQ -rxh +tKc +gjX +ezZ +ezZ +ezZ +qHI +cfT aao aao aao @@ -50670,12 +41492,12 @@ aao aao aao aao -rsv -eql -wCo -vYw -tqi -rsv +mAT +imM +ezZ +gkf +fPL +mAT aao aao aao @@ -50693,24 +41515,24 @@ aab aao aao aao -wXg -wXg -wKx -mDN -pMv +xkK +xkK +vRP +emD +jjW aao aae -rPc -aaO -aaO -aaO -abo -aaO -aaO -abI +mMi +kOY +kOY +kOY +jJb +kOY +kOY +ima abS aah -ach +wGu aco aah aah @@ -50724,28 +41546,28 @@ aah aah aah aah -agx -agv -ahY +kUX +fii +nyI aeI -aiA -ajy -ajx -ahR -ahP -ahP -ahV -ahV -ahP -ahP -ahP -ahP -ahV -ahV -ahP -ahP -ahP -ajy +wXb +lQd +paC +ncY +qpx +qpx +jUD +jUD +qpx +qpx +qpx +qpx +jUD +jUD +qpx +qpx +qpx +lQd anp avT avT @@ -50756,7 +41578,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -50766,18 +41588,18 @@ aeI aeI aeI aeI -ajy +lQd aoH -aNm +kfz aOz -aPz -aQI -aRN -aSF -aTO -aUX +spx +wOn +wte +lQQ +vSb +peV aQM -aWu +gHj aoH aoH aoH @@ -50787,11 +41609,11 @@ asK atw atU asK -bct -bct -bct -bct -bct +xAd +xAd +xAd +xAd +xAd asK atw atw @@ -50799,21 +41621,21 @@ atw asK asK asK -wLU -bbg +rMa +wul asK asK asK asK -bkz +eLV asK -lMt +wVV aFc -bme -bme +qJf +bqo azb -guR -erZ +jML +ewT axX azB axX @@ -50823,34 +41645,34 @@ azB azB axX axX -bpx -bpy -bpy +qIW +cTW +cTW glB -rJJ -bGL -bGL -bGL -bvK +mhB +hnL +hnL +hnL +dBw rdR rdR -bvK +dBw btw btw btw hEC keg -euF +lxX aao aao aao aao aao -kgx -fus -kgx -kgx -dVA +xPZ +kDZ +xPZ +xPZ +kTN aao aao aao @@ -50863,18 +41685,18 @@ aao aao aao uHQ -xWV -sgF -rkS -oXH +gIH +jIq +dWw +rst hiP -iep -rxh -rxh -owR -owR -owR -rxh +jUX +cfT +cfT +swZ +swZ +swZ +cfT aao aao aao @@ -50885,14 +41707,14 @@ aao aao aao aao -wCo -wCo -wVQ -rsv -owR -owR -rsv -rsv +ezZ +ezZ +qHI +mAT +swZ +swZ +mAT +mAT aao aao aao @@ -50910,24 +41732,24 @@ aab aao aao aao -wXg -jIQ -pXu -pXu -iuu +xkK +cod +rng +rng +eTg aao aae -rPc -aaO -aaO -abg -aaO -aaO -aaP -abJ +mMi +kOY +kOY +tXv +kOY +kOY +swt +eTZ abT aah -ach +wGu aah aah aah @@ -50941,28 +41763,28 @@ aah aah aah aah -afM -agw -ahR +lmG +cXJ +ncY ahX -aiA -ajy -ajx -ahR -ahP -ama +wXb +lQd +paC +ncY +qpx +dFl aeI aeI -aiB -ahV -ahV -ama +vWs +jUD +jUD +dFl aeI aeI -aiB -ahV -ahV -ajy +vWs +jUD +jUD +lQd anp avU avT @@ -50973,7 +41795,7 @@ avT avT aBa anp -ahR +ncY aeI aeI aeI @@ -50983,71 +41805,71 @@ aeI aeI aeI aeI -ajy +lQd aoH -aNn +qXt aOy -aPA +mDD aoH aoH aoH aoH -rEI +lIw aNo -aNm +kfz aoH aXH aXH aYJ aZm -aZL +fXS bay aZu -bbM -bcu -bdg -bdg -bcu -bdg -beT -aZu -aZu -aZu +asK +fzv +nRU +nRU +fzv +nRU +asK aZu aZu aZu +asK +fxP +beT baz aZu bbM -beT +djc asK aZw aZu bld asK -bme -bme +qJf +bqo bme azb -guR -ovQ -puA -nDA +jML +fjH +jHV +wZV azb -mRs -iNr -mBs -tgb -hst +nHT +aLk +eZD +koZ +uIl axX -bsI +eYY bme aao glB -rJJ -bGL -bGL -qCK +mhB +hnL +hnL +sYb keg bvv lmg @@ -51057,17 +41879,17 @@ btw btw btw keg -euF -euF +lxX +lxX aao aao aao aao -kgx -kgx -kgx -kgx -kgx +xPZ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -51080,17 +41902,17 @@ aao aao aao uHQ -pao -bSw -tBh -eVo -fZg -rxh -fnO -rxh -fnO -rxh -rpl +nYD +uyf +dbH +qPq +sZa +cfT +vii +cfT +vii +cfT +iPF vHw aao aao @@ -51101,15 +41923,15 @@ aao aao aao aao -wCo -tqi -owR -rsv -rsv -rsv -rsv -rsv -rsv +ezZ +fPL +swZ +mAT +mAT +mAT +mAT +mAT +mAT aao aao aao @@ -51127,24 +41949,24 @@ aab aao aao aao -wXg -wKx -pXu -pXu -pXu +xkK +vRP +rng +rng +rng aao aae -aaC -aaQ -aaY -abh -abp -aaN -abB -abK +mCF +eIn +qVx +vGx +hpp +rLN +vbB +iAK abR aah -ach +wGu aah aah aah @@ -51157,16 +41979,16 @@ aah aah aah aah -agv +fii afh -agv -ahZ +fii +fXU aeI -aiA -ajy -ajx -ahR -aln +wXb +lQd +paC +ncY +iSh aeI aeI aeI @@ -51179,7 +42001,7 @@ aeI aeI aeI aeI -ajy +lQd anp avT avT @@ -51190,7 +42012,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -51200,18 +42022,18 @@ aeI aeI aeI aeI -ajy +lQd apt -aNk +eNw aOy -aPB -aQJ -aRO -aSG -aTP -aUZ +prm +oAS +saq +pvo +whQ +rHm aNo -aNm +kfz aoH aXH aXH @@ -51220,51 +42042,51 @@ aXH asK baz aZu -aZO -aZu -aZu +vTo aZu aZu aZu -beU -bfy -bfV -bfF -baF -baF -aZu -baz aZu aZu +uJe +xGS +bpR +qbL +atA +deQ +qNZ +uHL +qNZ +qNZ aZu asK aZu bkA hzy axL -bme +eYY bme bme azb -guR -dJv -dJv -erZ +jML +oiQ +oiQ +ewT azb -guR -dJv -dJv -dJv -erZ +jML +oiQ +oiQ +oiQ +ewT azb bme bme aao glB -jOc -jOc -jOc -jOc +gqQ +gqQ +gqQ +gqQ keg xIP xIP @@ -51274,16 +42096,16 @@ bvS bvS bvS keg -euF -sSU +lxX +cjZ aao aao -qHY -hEE -kgx -kgx -kgx -kgx +gYY +fqJ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -51297,17 +42119,17 @@ aao aao aao uHQ -xwy -tzw -pZe -mmg -lBx -tVy -oJO -wVQ -owR -rxh -rxh +vQg +ftZ +hrh +jMl +eEG +ngf +eNJ +qHI +swZ +cfT +cfT vHw aao aao @@ -51316,17 +42138,17 @@ aao aao aao aao -rsv -rsv -owR -rsv -rsv -rsv -rsv -rsv -rsv -rsv -rsv +mAT +mAT +swZ +mAT +mAT +mAT +mAT +mAT +mAT +mAT +mAT aao aao aao @@ -51344,11 +42166,11 @@ aab aao aao aao -wXg -cGZ -pXu -pXu -pXu +xkK +fRD +rng +rng +rng aao aae aae @@ -51361,7 +42183,7 @@ aae aae aae aah -acj +gPP aah aah aah @@ -51375,15 +42197,15 @@ aah aah aah aah -afM +lmG ahh -akK +qof aeI -aiA -ajy -ajx -ahR -aln +wXb +lQd +paC +ncY +iSh aeI aeI aeI @@ -51396,7 +42218,7 @@ aeI aeI aeI aeI -ajy +lQd anp qaR avT @@ -51407,7 +42229,7 @@ azo aAq aAZ anp -ahR +ncY aeI aeI aeI @@ -51417,9 +42239,9 @@ aeI aeI aeI aeI -ajy +lQd apt -aNk +eNw aOy aNo aNo @@ -51428,7 +42250,7 @@ aNo aNo aNo aOC -aNm +kfz aoH aXH aXH @@ -51447,41 +42269,41 @@ bbe bfz aZO aZu -aZu -aZu -aZu +atA +bkn +qNZ bfB bgD -bjh +hRg bbe -bjR +jxt bbe bbe aLo axL -bme +eYY bme bme azb -guR -dJv -dJv -dJv -gdV -dJv -dJv -vnx -lsd -mhp +jML +oiQ +oiQ +oiQ +vLE +oiQ +oiQ +iwy +vUp +vKY axX bme -bme +tqM aao glB -xpb -tvh -tvh -krx +spd +swx +swx +oRA keg keg keg @@ -51491,17 +42313,17 @@ keg keg keg keg -vCU -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx +lzM +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -51514,36 +42336,36 @@ aao aao aao uHQ -tfp -okh -dCb -pJS -cPZ -rxh -umK -rxh -pmN -rxh -rxh -waX -rxh +iRd +nCz +lrp +gRl +god +cfT +flP +cfT +fjw +cfT +cfT +nzJ +cfT aao aao aao aao aao -kDs -wSp -rsv -rsv -rsv -qeZ -rsv -rsv -rsv -rsv -rsv -rsv +qTB +fWQ +mAT +mAT +mAT +lGk +mAT +mAT +mAT +mAT +mAT +mAT aao aao aao @@ -51561,11 +42383,11 @@ aab aao aao aao -pMv -wXg -cGZ -pXu -pXu +jjW +xkK +fRD +rng +rng aao aao aao @@ -51583,7 +42405,7 @@ aae aae aae aae -lMB +nol aae aae aaq @@ -51594,14 +42416,14 @@ aae aae aae aae -atm +tjG aeI -aiA -ajz -ajx -akK -ahP -ahO +wXb +sAe +paC +qof +qpx +ybg aeI aeI aeI @@ -51613,7 +42435,7 @@ aeI aeI aeI aeI -ajy +lQd anp avT avT @@ -51624,7 +42446,7 @@ avT avT avT anp -ahR +ncY aeI aeI aeI @@ -51634,9 +42456,9 @@ aeI aeI aeI aeI -aMa +tce apu -aNm +kfz aOy aPC aNo @@ -51645,7 +42467,7 @@ aNo aTQ aRM aNo -aWv +xzO aoH aXH aXH @@ -51660,66 +42482,66 @@ aZu bdK aZM aZu -beU -bfA -bfW -bgq -bfy -baF -aZu -baz +iSB +sIN +xcp +lyG +asK aZu -aZO -aZO +qNZ +uHL +qNZ +czE +nmU atA soi aZO blg axL -bme +eYY bme bme azb -guR -dJv -dJv -erZ +jML +oiQ +oiQ +ewT azb -guR -dJv -vnx -lsd -qHg +jML +oiQ +iwy +vUp +lZZ azb -bme -bpx +tqM +qIW aao -euF -dEV -euF -buR -euF -nTG -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -nEl -nEl -nEl -kgx -kgx -kgx -kgx -kgx -kgx -kgx +lxX +tvI +lxX +hbf +lxX +qtC +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +vrk +vrk +vrk +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -51732,34 +42554,34 @@ aao rIl rIl rIl -gTN -xIo -xIo +wWr +hQu +hQu wSj -rxh -rxh -jYD -fnO -fnO -xJP -rxh -rxh -rxh -aao -aao -aao -szw -ruS -fRo -rsv -rsv -pMB +cfT +cfT +lon +vii +vii +hca +cfT +cfT +cfT +aao +aao +aao +ncf +mdp +qVG +mAT +mAT +jrF vHw -ddt -rsv -rsv -fnO -xSa +uRT +mAT +mAT +vii +hil aao aao aao @@ -51778,11 +42600,11 @@ aab aao aao aao -geC -wXg -wXg -wKx -pXu +ggA +xkK +xkK +vRP +rng aao aao aao @@ -51813,12 +42635,12 @@ aao aao aeI aeI -aiA -ajy -aoN -akK -ahP -aln +wXb +lQd +uhZ +qof +qpx +iSh aeI aeI aeI @@ -51830,18 +42652,18 @@ aeI aeI aeI aeI -ajy +lQd anp anp alX -ayN -ayd +igF +nBi alX anp anp anp anp -ahR +ncY aeI aeI ahi @@ -51851,18 +42673,18 @@ aeI aeI aeI aeI -aMb +rWn apu -aNl +ntP aOy -aPD -hOS -aPD -hOS -aTR -aVa +cAj +nRm +cAj +nRm +qpq +iUU aNo -aNm +kfz aoH aXH aXH @@ -51881,62 +42703,62 @@ aZu bfB bbe bbe -bgD +jxt bbe bhE bbR biK -aZO -aZO +xRw +qmz atA soi aZu aZu axL -bme +eYY bme bme azb -tAh -fiR -fiR -iiP +xHP +iVS +iVS +dXa azb -tAh -dJv -fiR -dJv -rKr +xHP +oiQ +iVS +oiQ +qPG axX -bpx -bpx +qIW +qIW aao -euF -euF -euF -euF -euF -euF -jWA -kgx -kgx -nEl -kgx -kgx -kgx -kgx -kgx -tsK -euF -euF -euF -nTG -kgx -kgx -kgx -kgx -kgx -kgx +lxX +lxX +lxX +lxX +lxX +lxX +ddK +xPZ +xPZ +vrk +xPZ +xPZ +xPZ +xPZ +xPZ +dfE +lxX +lxX +lxX +qtC +xPZ +xPZ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -51947,36 +42769,36 @@ aao aao aao rIl -pYE -ujU -mrS -fwO -fwO +oZl +qOQ +vBX +vxY +vxY rIl aao -rxh -uFF -wCo -wCo -wFO -rxh -ohg -rxh +cfT +ouL +ezZ +ezZ +vNZ +cfT +kgI +cfT aao aao aao -cCu -wlE -dNd -wVQ -rsv -rsv -nxa -rsv -rsv -sZh -nSP -wCo +fnR +cWd +wPi +qHI +mAT +mAT +yhH +mAT +mAT +gjX +jjx +ezZ aao aao aao @@ -51995,11 +42817,11 @@ aab aao aao aao -wXg -wXg -wXg -wKx -pXu +xkK +xkK +xkK +vRP +rng aao aao aao @@ -52030,12 +42852,12 @@ aao aao aeI aeI -aiA -ajy -aoN -akK -ahP -aln +wXb +lQd +uhZ +qof +qpx +iSh aeI aeI aeI @@ -52047,18 +42869,18 @@ aeI aeI aeI aeI -ajy -ajx -ajx +lQd +paC +paC alu -aqw -azv +oYI +tXH alu -ajx -ajx -ajx -ajx -ahR +paC +paC +paC +paC +ncY aeI aeI aeI @@ -52068,18 +42890,18 @@ aeI aeI aeI aeI -ajy +lQd apt -aNk +eNw aOy -aPE +rXJ aoH aoH aoH aoH -aPD +cAj aNo -aWw +thf aoH aXH aXH @@ -52094,24 +42916,24 @@ aZO bdL aZu aZu -beU -bfC -kDb -baF -bgE -bhe +iSB +qgW +kyB +puO +asK +asK +asK +rMa +wul +asK asK -bio -aZu -aZu -aZu asK rhW aZu blh asK -bme -bme +qJf +ykG bme axX azB @@ -52120,40 +42942,40 @@ azB axX axX axX -oLi +vAa ayr -oLi +vAa axX axX -bpx -kdh +qIW +gwD aao aao aao -euF -euF -njf -euF -jWA -kgx -lWA -euF -nTG -kgx -kgx -nEl -tsK -euF -euF -euF -euF -euF -puU -kgx -kgx -kgx -kgx -kgx +lxX +lxX +kZQ +lxX +ddK +xPZ +whI +lxX +qtC +xPZ +xPZ +vrk +dfE +lxX +lxX +lxX +lxX +lxX +tuO +xPZ +xPZ +xPZ +xPZ +xPZ aao aao aao @@ -52164,35 +42986,35 @@ aao aao aao rIl -uSf -ldh -llS -suD -ijU +dww +rTh +sRl +wjc +rSF rIl aao aao -sZh -vlA -oMd -trW -ktE -rxh -rxh +gjX +vwB +fbY +skZ +jgk +cfT +cfT aao aao aao aao -mXw -nQl -sFW -hWM -rsv -rsv -rsv -rsv -sZh -wCo +guK +dwH +rSC +aTX +mAT +mAT +mAT +mAT +gjX +ezZ aao aao aao @@ -52212,12 +43034,12 @@ aab aao aao aao -wXg -wXg -jIQ -pXu -pXu -pXu +xkK +xkK +cod +rng +rng +rng aao aao aao @@ -52247,56 +43069,56 @@ aao aeI aeI aeI -aiA -ajy -ajx -ahR -ahP -ama +wXb +lQd +paC +ncY +qpx +dFl aeI aeI aeI -aoO -aiw -aiw -aiw -aiw -aiw -aiw -aiw -ajx -ajx -ajx +uMi +tMs +tMs +tMs +tMs +tMs +tMs +tMs +paC +paC +paC alu -aqw -aye +oYI +kYs alu -ajx -ajx -ajx -ajx -ajx -aiw -aiw -aiw -aiw -aiw -aiw -ahQ +paC +paC +paC +paC +paC +tMs +tMs +tMs +tMs +tMs +tMs +ipp aeI aeI -ajz +sAe apt -aNk +eNw aOy -aPF -aQL -aPF -aSH -aTS -aVb +kEj +wpA +kEj +qWo +xsI +tSF aNo -aWx +vSa aoH aXH aYc @@ -52324,51 +43146,51 @@ aZu aZu asK atA -bkz +eLV atA asK axX axX axX axX -qLu -xWN -qLu +tnr +sBi +tnr axX -mRC -pEF -dJv -cux -erZ +dhD +lzN +oiQ +orN +ewT azb -bpx -bpx -bpx -bpx +qIW +qIW +qIW +qIW aao aao aao -euF -euF -euF -nTG -nEl -tsK -euF -njf -nTG -tsK -euF -euF -euF -euF -euF -dEV -euF -jWA -kgx -kgx -kgx +lxX +lxX +lxX +qtC +vrk +dfE +lxX +kZQ +qtC +dfE +lxX +lxX +lxX +lxX +lxX +tvI +lxX +ddK +xPZ +xPZ +xPZ aao aao aao @@ -52381,34 +43203,34 @@ aao aao aao hHb -tgF -gXs -jQS -fwO -fwO +lRf +vEM +rxD +vxY +vxY rIl aao aao -rxh -eql -igM -wCo -wCo -wFO -fnO +cfT +imM +vKq +ezZ +ezZ +vNZ +vii aao aao aao -oqr -sHz -rcc -oZA -lhE -rsv -fnO -rsv -rsv -rsv +umk +liR +vnP +xKI +lZu +mAT +vii +mAT +mAT +mAT aao aao aao @@ -52430,11 +43252,11 @@ aao aao aao aao -iuu -pXu -pXu -pXu -pXu +eTg +rng +rng +rng +rng aao aao aao @@ -52463,17 +43285,17 @@ aao aao aeI aeI -aiz -ahP -ajy -aoN -ahR -aln +cVf +qpx +lQd +uhZ +ncY +iSh aeI aeI aeI aeI -ajy +lQd alu alu alu @@ -52485,8 +43307,8 @@ alu alu alu alu -ayN -ayd +igF +nBi alu alu alu @@ -52499,12 +43321,12 @@ alu alu alu alu -cQi +qyU aCM aBR -aMc +ukV apt -aNk +eNw aOy aOB aNo @@ -52513,7 +43335,7 @@ aOy aNo aOB aOB -aNm +kfz aoH cec aXH @@ -52528,12 +43350,12 @@ bdi aZu aZu aZu -beU -bfD -bfF -bfF -bgE -baF +iSB +mYv +hMZ +hMZ +xcp +lyG aZu baz biL @@ -52544,47 +43366,47 @@ aZu aZu beA axX -wFo -wFo -wFo -gbs -uQd -wzt -sIp +mpb +mpb +mpb +gJD +bWf +mKw +wPm axX -mRC -pEF -dJv -vnx -erZ +dhD +lzN +oiQ +iwy +ewT azb -kdh -bpx -bpx -bpx -bpx +gwD +qIW +qIW +qIW +qIW aao aao -euF -euF -euF -bvw -euF -euF -euF -euF -euF -dEV -euF -euF -sSU -vCU -xgw -euF -euF -jWA -kgx -kgx +lxX +lxX +lxX +lxM +lxX +lxX +lxX +lxX +lxX +tvI +lxX +lxX +cjZ +lzM +sNe +lxX +lxX +ddK +xPZ +xPZ aao aao aao @@ -52598,33 +43420,33 @@ aao aao aao rIl -uSf -olT -llS -suD -ijU +dww +drH +sRl +wjc +rSF rIl aao aao -rxh -dHH -jVr -wCo -szw -wCo -wCo +cfT +piv +kVu +ezZ +ncf +ezZ +ezZ aao aao aao aao -roP -szw -wVQ -rxh -sZh -wCo -wVQ -rsv +rmT +ncf +qHI +cfT +gjX +ezZ +qHI +mAT aao aao aao @@ -52647,12 +43469,12 @@ aao aao aao aao -pXu -pXu -pXu -pXu -xBS -wXg +rng +rng +rng +rng +tNE +xkK aao aao aao @@ -52680,69 +43502,69 @@ aao aao aeI aeI -aiA -ahP -ajy -aoN -ahR -alo +wXb +qpx +lQd +uhZ +ncY +jUn aeI aeI aeI aeI -ajy +lQd alu -aqq -are -aim -asy -ilU -are -auG +lkg +xnW +ldV +vIc +xPf +xnW +jKd alu -avW -awL -avw -aFB -ayG -azp +voX +eRe +brv +fvh +pji +wfI alu -aBb -aBI +nWZ +wXV amj -aqC -aEw -wuz -aFx -aHo +jEH +sts +pBJ +rNd +nzY alu -aHD +nbQ aBR aBR -aMc +ukV aoH -aNm +kfz aOA aPG aQM aQM aSI aOB -dlr aNo -aNm +aNo +kfz aoH hmJ aXH asK asK atA -bdg -bbg +nRU +wul auk asK asK -aZu +bee aZu bex bbe @@ -52760,48 +43582,48 @@ bfz aZO aZu bli -gAe -pWp -vQU -lsm -lsm -uVW -vnx -erZ +rNj +gfd +hjE +ykL +ykL +tCr +iwy +ewT axX ayr ayr -bXr -vnx -erZ +gEc +iwy +ewT axX axX axX -bpx -bpx -bpx +qIW +qIW +qIW aao aao aao -euF -euF -euF -euF -euF -euF -euF -euF -euF -euF -sSU -kgx -kgx -kgx -vCU -vCU -kgx -kgx -kgx +lxX +lxX +lxX +lxX +lxX +lxX +lxX +lxX +lxX +lxX +cjZ +xPZ +xPZ +xPZ +lzM +lzM +xPZ +xPZ +xPZ aao aao aao @@ -52815,33 +43637,33 @@ aao aao aao rIl -rKP -fxn -fxn +brV +qtV +qtV rIl rIl rIl aao aao -rxh -rxh -rDl -eql -wCo -dNd -wCo +cfT +cfT +fxk +imM +ezZ +wPi +ezZ aao aao aao -khR -ngJ -szw -sCj -rxh -sZh -nSP -wFO -rsv +rNm +iuv +ncf +jjb +cfT +gjX +jjx +vNZ +mAT aao aao aao @@ -52864,12 +43686,12 @@ aao aao aao aao -pXu -pXu -pXu -mDN -wXg -wXg +rng +rng +rng +emD +xkK +xkK aao aao aao @@ -52897,48 +43719,48 @@ aao aao aeI aeI -aiA -ahP -ajz -aoN -ahR -ahP -ahO +wXb +qpx +sAe +uhZ +ncY +qpx +ybg aeI aeI aeI -ajy +lQd alu -fev -aqr -aqr -asz -aqr -atR -atR -avu -auL -arR -aqw -azv -aqw -azq +kzA +eNB +eNB +sdn +eNB +rKB +rKB +uQM +bFS +bgG +oYI +tXH +oYI +dYr alu -aBb -aBb +nWZ +nWZ amj -aDC -arR -arR -ari -aFx +vBA +bgG +bgG +wUq +rNd alu -aHD +nbQ aBR aBR -aMc +ukV apt -aNk +eNw aOB aOB aOB @@ -52947,7 +43769,7 @@ aOy aOB aOB aNo -aNm +kfz aoH odw aXH @@ -52957,17 +43779,17 @@ aZO aZO aZO baz -bcy +tEZ asK -aZu +bee aZu baz -beU -bfF -bfY -bfY -bfY -baF +iSB +hMZ +oSh +oSh +oSh +lyG aZu baz aZu @@ -52977,49 +43799,49 @@ bfB bbe bbe blj -oMT -dyH -vGP -dhq -kMO -kMO -dzN -fpK -lzB -wKr -iha -vnx -gab -qOw -uAL -tBS +kvs +chf +gSl +gJI +pKm +pKm +rhl +iQE +hsu +jfn +cBQ +iwy +tLw +tsx +vUl +uvp axX -bpx -bpx -bpx +qIW +qIW +qIW aao aao aao aao -njf -euF -euF +kZQ +lxX +lxX aao aao -buz -ibZ -ibZ -ibZ -wog -trk -wog -wog -wog -trk -trk -trk -wog -wog +dXG +bvh +bvh +bvh +kxd +hHO +kxd +kxd +kxd +hHO +hHO +hHO +kxd +kxd aao aao aao @@ -53034,32 +43856,32 @@ aao rIl bRd rQs -xDO +rIj rIl aao aao aao -wCo -wVQ -mPF -mPF -rxh -wCo -dNd +ezZ +qHI +jmK +jmK +cfT +ezZ +wPi aao aao aao aao aao aao -jEx -gyJ -rxh -pJX -wCo -xUS -wVQ -rsv +vwQ +ncM +cfT +kKi +ezZ +jbJ +qHI +mAT aao aao aao @@ -53083,11 +43905,11 @@ aao aao aao aao -pXu -mDN -wXg -geC -hgT +rng +emD +xkK +ggA +rhG aao aao aao @@ -53114,61 +43936,61 @@ agu aeI aeI aeI -aiA -ahP -ajz -aoN -ajx -aiw -aiw -ahQ +wXb +qpx +sAe +uhZ +paC +tMs +tMs +ipp aeI aeI -ajz +sAe alu -aqs -aqs -arO -asA -aqs -aqs -aqs +pvu +pvu +qQD +sxo +pvu +pvu +pvu amj -avX -awQ -atr -ayg -aqw -awO -aAr -aBc -aBc +lcy +gSJ +vLb +mkl +oYI +maX +gJR +lwY +lwY amj -aDD -arR -aFy -aGt -aHp +mln +bgG +bpW +psF +oys alu -aHD +nbQ aBR aBR -aMc +ukV apt aNo aNo -aNm -aQN -aPv -aSJ -aNm -aPv -aNm -aWB +kfz +cog +xsA +wQw +kfz +xsA +kfz +vKM aoH aXH aXH -asK +sSA aZu aZO aZO @@ -53177,8 +43999,8 @@ bbR bcz asK bdM -bee -bey +aZu +uoi aZu aZu aZu @@ -53195,50 +44017,50 @@ aZu aZu aZr axX -fvv +ify ayr ayr ayr ayr -iYH -cse +cnW +kvT ayr -vnx -vnx -vnx -lNd -hvJ -vnx -erZ +iwy +iwy +iwy +kNJ +vAQ +iwy +ewT axX -bpx -bpx -bpx +qIW +qIW +qIW aao aao aao aao -euF +lxX aao aao aao aao -wog -wog -wog -wog -jXX +kxd +kxd +kxd +kxd +fAQ aao aao aao aao aao -dxV -dxV -qgY -wog -hiY -dxV +owy +owy +tez +kxd +qwK +owy aao aao aao @@ -53255,14 +44077,14 @@ rIl rIl aao aao -szw -wCo -wDa +ncf +ezZ +bFe jUY jUY jUY -jXP -owR +qhB +swZ aao aao aao @@ -53271,13 +44093,13 @@ aao aao aao aao -pJX -wCo -nSP -wCo -wVQ -rsv -rsv +kKi +ezZ +jjx +ezZ +qHI +mAT +mAT aao aao aao @@ -53300,11 +44122,11 @@ aao aao aao aao -pXu -pXu -smO -wXg -wXg +rng +rng +nGd +xkK +xkK aao aao aao @@ -53331,55 +44153,55 @@ aeI aeI aeI aeI -aiB -ahP -ajy -aoN -aoN -aoN -ajx -ahR +vWs +qpx +lQd +uhZ +uhZ +uhZ +paC +ncY aeI aeI -aoP +xwf alu -aqt -fAi -arP -asB -ato -atS -auH -avv -avY -arR -aqw -aqw -aqw -azr +ctQ +nDU +lzz +eoi +jHt +miY +qfG +mAl +oUi +bgG +oYI +oYI +oYI +hSL alu -aBb -aBb +nWZ +nWZ amj -aDE -aEx -aqw -aGu -aFx +nHe +mpe +oYI +qgm +rNd alu -aHD +nbQ aBR aBR -aMc +ukV aoH -aVJ -aVJ +kle +kle aoH -aQO +vrp aOC -aSK +ylj aNo -aVd +naU aOB aoH aoH @@ -53388,8 +44210,8 @@ aXH asK asK atA -bdg -bbg +nRU +wul auk asK asK @@ -53412,25 +44234,25 @@ aZO aZu aZr axX -xcA -bmQ -xXW -bnR -khy -oyI -khK -fuZ -jyf -trf -jlf -jWs -jPD -vnx -oif +vRo +oPS +kOR +iFv +mnn +nIz +mFv +gop +quz +mwY +bmw +ftV +cYi +iwy +teT azb -uvB -bpx -bpx +uxu +qIW +qIW aao aao aao @@ -53438,25 +44260,25 @@ aao aao aao aao -wog -oQI -wog -wog -wog -wog +kxd +lMx +kxd +kxd +kxd +kxd aao -uCD +qEW aao aao aao aao -qUS -dxV -qgY -wog -jXX -dxV -dxV +sjw +owy +tez +kxd +fAQ +owy +owy aao aao aao @@ -53472,9 +44294,9 @@ aao aao aao aao -wCo -nSP -bqc +ezZ +jjx +dbE jUY jUY tuN @@ -53488,13 +44310,13 @@ aao aao aao aao -wCo -wCo -wCo -wCo -wVQ -rsv -rsv +ezZ +ezZ +ezZ +ezZ +qHI +mAT +mAT aao aao aao @@ -53518,11 +44340,11 @@ aao aao aao aao -pXu -mDN -wXg -pMv -wXg +rng +emD +xkK +jjW +xkK aao aao aao @@ -53538,9 +44360,9 @@ aao aao aao acp -adh -ady -adh +xTv +bqZ +xTv acp aao aao @@ -53549,57 +44371,57 @@ aeI ahi aeI aeI -aiA -ajA -akd -aiy -aiy -ajx -akK -ahO +wXb +pxl +lzU +wlX +wlX +paC +qof +ybg aeI -ajz +sAe alu -aqu -arg -arQ -arg -aqu -joC -auI +tVa +nat +cHm +nat +tVa +lGa +kPl alu -avZ -awN -axx -axx -axx -azs +vVK +xTJ +lcB +lcB +lcB +cDP alu -aBd -aBb +hXg +nWZ amj -aDF -vSU -aFz -aGv -aHq +pPE +smW +ifW +pXS +pRm alu -aHD +nbQ aBR aBR -aMc -aME +ukV +nix aNq aOC apQ -aQP +weu aNo -aSL +rYq aNo -aVe +tRW aVM aoH -aXb +bpA aXH aXH asK @@ -53618,7 +44440,7 @@ aZu aZu aZu asK -bhf +oeF aZu aZO biN @@ -53638,41 +44460,41 @@ ayr ayr ayr ayr -sMb -fjr -dJv -mWd -dJv -kpm +cgE +vhW +oiQ +ijg +oiQ +hhz azb -uvB -bpx -bpx +uxu +qIW +qIW aao aao aao -wog -wog -wog -wog -eiv -wog -oQI -wog -wog -wog +kxd +kxd +kxd +kxd +dpV +kxd +lMx +kxd +kxd +kxd aao aao aao aao aao aao -pYt -buz -wog -hiY -dxV -dxV +lOv +dXG +kxd +qwK +owy +owy aao aao aao @@ -53689,9 +44511,9 @@ aao aao aao aao -nSP -drq -hwe +jjx +syH +toK jUY jUY jUY @@ -53705,13 +44527,13 @@ aao vHw aao aao -wCo -nSP -wCo -wCo -wVQ -rsv -rsv +ezZ +jjx +ezZ +ezZ +qHI +mAT +mAT aao aao aao @@ -53735,11 +44557,11 @@ aao aao aao aao -pXu -pXu -iuu -smO -wXg +rng +rng +eTg +nGd +xkK aao aao aao @@ -53753,11 +44575,11 @@ aao aao aao aao -rgp +jGz acp -adh -adh -adh +xTv +xTv +xTv acp aao aeI @@ -53766,27 +44588,27 @@ aeI aeI aeI aeI -aiB -ahV -ahV -ahV -ahP -ajy -ahR -aln +vWs +jUD +jUD +jUD +qpx +lQd +ncY +iSh aeI -aoQ +vyO alu alu -bgJ +nsd amj -bgJ +nsd alu alu alu alu -awa -awO +lPv +maX alu alu alu @@ -53797,26 +44619,26 @@ alu alu alu alu -aFA +nwN alu alu alu -aHD +nbQ aBR aBR -aMc -aME +ukV +nix aNq aNo apQ -aQQ +uSV aNo -aSM +cUZ aNo -aVf +pmv aOB aoH -jiS +hPv aXH aXH asK @@ -53826,7 +44648,7 @@ aZO aZO baz aZu -bdj +eqF aZO bbO beA @@ -53846,37 +44668,37 @@ aZu aZu bdN axX -vOD -vJi -wdi -wdi -iVz -wdi -pmT -nDA +oaF +eGG +msJ +msJ +izU +msJ +iAH +jKi ayr -sMb -dJv -cvF -dJv -dJv -iIQ +cgE +oiQ +kmK +oiQ +oiQ +jtN axX -uvB -bpx -bpx +uxu +qIW +qIW aao aao aao -wog -wog -wog -wog -wog -wog -wog -icQ -wog +kxd +kxd +kxd +kxd +kxd +kxd +kxd +hXB +kxd aao aao aao @@ -53884,12 +44706,12 @@ aao aao aao aao -buz -wog -wog -hiY -dxV -pYt +dXG +kxd +kxd +qwK +owy +lOv aao aao aao @@ -53906,31 +44728,31 @@ aao aao aao aao -wCo -jWj -qVB +ezZ +wmu +xKq jUY -rsv -rsv -rsv -rxh -rxh -rxh -rxh -rxh +mAT +mAT +mAT +cfT +cfT +cfT +cfT +cfT aao vHw vHw -rxh -owR -owR -owR -owR -rxh -rxh -rxh -rxh -rxh +cfT +swZ +swZ +swZ +swZ +cfT +cfT +cfT +cfT +cfT aao aao aao @@ -53953,11 +44775,11 @@ aao aao aao aao -pXu -pXu -pXu -iuu -iuu +rng +rng +rng +eTg +eTg aao aao aao @@ -53968,69 +44790,69 @@ aao aao aao aao -pXu -iyY -xbV +nmo +wbu +jGz acp -adi +lSp adz adz acp aao -aiw -aiw -aiw -aiw -aiw -ahQ +tMs +tMs +tMs +tMs +tMs +ipp aeI aeI aeI aeI -aiA -ajy -akK -ahP -aog -aoR +wXb +lQd +qof +qpx +odX +qae alu -aqv -aqw -aqw -aqw -atp +rhj +oYI +oYI +oYI +knK amj -auJ -avw -awb -awP +jXq +brv +rkP +lyz amj -ayh -ayH -avw -aAs +xTS +bTb +brv +iOQ amj -ayh -axz -axz -axz -aFB -aGw -aHr +xTS +nfp +nfp +nfp +fvh +sCm +fIT alu -aHD +nbQ aBR aBR -aMc +ukV aoH -aVJ -aVJ +kle +kle aoH -aQR +jZT aNo -aSN +hAs aNo -aVg +nlF aNo aoH aXd @@ -54047,11 +44869,11 @@ atA aZO beg bbe -beV +kni baC bfZ bbe -beV +kni bbe baC bit @@ -54063,24 +44885,24 @@ aZu aZu bll axX -cDH -gRj -vnx -vnx -kfV -pin -dJv -ejf +ouF +hVK +iwy +iwy +sgq +bHW +oiQ +wyP ayr -sMb -sRk -oAW -xmZ -flV -sqE +cgE +rrL +cjh +ikY +kJE +bvJ axX -uvB -uvB +uxu +uxu aao aao aao @@ -54099,15 +44921,15 @@ aao aao aao aao -qUS -dxV -qgY -wog -wog -hiY -dxV -dxV -dxV +sjw +owy +tez +kxd +kxd +qwK +owy +owy +owy aao aao aao @@ -54124,31 +44946,31 @@ aao aao aao aao -wCo -wVQ +ezZ +qHI jkO -rsv -fnO -jbU -rsv -rxh -rxh -rxh -fnO -smy -xhy -rxh -rxh -rxh -rxh -rxh -hKt -jAN -rxh -rxh -rxh -tCH -rxh +mAT +vii +qod +mAT +cfT +cfT +cfT +vii +kPJ +tKc +cfT +cfT +cfT +cfT +cfT +ngq +jTr +cfT +cfT +cfT +txw +cfT aao aao aao @@ -54170,11 +44992,11 @@ aao aao aao aao -pXu -pXu -pXu -pXu -pXu +rng +rng +rng +rng +rng aao aao aao @@ -54184,10 +45006,10 @@ aao aao aao aao -iyY -xBS -wXg -uzv +wbu +xCL +fha +jGz acp adj adA @@ -54199,56 +45021,56 @@ acp agy agy acp -ahR +ncY aeI aeI aeI aeI -aiA -ajy -akK -ahP -ahP -ajz +wXb +lQd +qof +qpx +qpx +sAe alD -aqv -aqw -arR -arR -atq +rhj +oYI +bgG +bgG +for amj -auK -aqw -awc -awQ -axy -atr -ayI -azt -awQ -aBe -atr -azt -atr -aEz -aFC -aGx -aHs +mio +oYI +toZ +gSJ +prY +vLb +gTA +sNL +gSJ +nWz +vLb +sNL +vLb +iji +gBm +ykk +uHD alu -aHD +nbQ aBR aBR -aMc +ukV apt aNq aOB -aPI -aQS -aQS -aRR -aQS -aQS -aVN +cjE +uKD +uKD +tnn +uKD +uKD +ecm aoH aXH aXH @@ -54264,11 +45086,11 @@ asK aZu beh aZO -bdg +nRU aZO bbO aZu -bdg +nRU aZu aZO biq @@ -54280,16 +45102,16 @@ aZu aZu blm axX -vWi -kuZ -fiR -xsh -vnx -lOz -wXh -dEu +dPQ +rOp +iVS +enk +iwy +mTs +eyM +sxZ ayr -pCj +slY ayZ ayZ ayZ @@ -54317,14 +45139,14 @@ aao aao aao aao -buz -wog -wog -wog -wog -sDC -dxV -dxV +dXG +kxd +kxd +kxd +kxd +scH +owy +owy aao aao aao @@ -54341,31 +45163,31 @@ aao aao aao vHw -jXP -opK -rsv -pJX -wCo -wCo -wVQ -cmG -opK -sZh -nSP -wCo -wVQ -rxh -fnO -rsv -rsv -rxh -yhN -rxh -rxh -rxh -rxh -vcA -hqC +qhB +eld +mAT +kKi +ezZ +ezZ +qHI +lQk +eld +gjX +jjx +ezZ +qHI +cfT +vii +mAT +mAT +cfT +wce +cfT +cfT +cfT +cfT +kGL +ttB aao aao aao @@ -54387,12 +45209,12 @@ aao aao aao aao -pXu -iyY -pXu -pXu -pXu -pXu +rng +xOk +rng +rng +rng +rng aao aao aao @@ -54400,64 +45222,64 @@ aao aao aao aao -mDN -wXg -pMv -wXg -pow +nmO +fha +sEn +fha +jGz acp adk adk adk ael -aeJ +vDc afi -afO +iOu adk adS acp -ahR +ncY aeI aeI aeI aeI -aiA -ajy -ahR -ahP -ahP -ajz +wXb +lQd +ncY +qpx +qpx +sAe alD -aqv -aqw -arR -asC -atq +rhj +oYI +bgG +wuL +for amj -auK -aqw -azv -arR -ayN -arR -arR -azu -aAt +pol +oYI +tXH +bgG +igF +bgG +bgG +rBH +tVK amj -aBJ -aCB -aDG -aEA -axB -aGy -aHt +usq +sIx +lqt +nMy +nHY +kiA +pho alu -aHD +nbQ aBR aBR -aMc +ukV aoH -aNr +cpi aNo aOB aOB @@ -54465,10 +45287,10 @@ aNo aOy aNo aOB -aVO +nhf aoH asK -aXJ +fdF asK asK aZu @@ -54477,7 +45299,7 @@ baD aZu aZu bcC -bdj +eqF aZu aZu aZu @@ -54500,47 +45322,47 @@ axX ayr ayr ayr -uAk -uAk +pIu +pIu ayr ayr ayr ayr -hvJ -puA -wKr -nDA +vAQ +jHV +jfn +wZV ayZ -tCS +dFN ayZ -dZC -wKr -smZ -puA -rev -iIe -rSJ -gLV -rSJ -tZq -wKr -puA +ptC +jfn +qPV +jHV +pIg +qlY +oIj +oQi +oIj +cye +jfn +jHV ayZ -puA -nDA +jHV +wZV axX axX aao aao -wog -wog -wog -wog -wog -wog -wog -jXX -dxV +kxd +kxd +kxd +kxd +kxd +kxd +kxd +fAQ +owy aao aao aao @@ -54557,33 +45379,33 @@ aao aao aao aao -rsv -rsv -rsv -dhS -wCo -dNd -dNd -wVQ -rxh -rsv -sZh -wCo -tqi -rxh -rxh -owR -rsv -rsv -rxh -fHF -miD -omw -rxh -pmN -dUj -sZh -nSP +mAT +mAT +mAT +xbT +ezZ +wPi +wPi +qHI +cfT +mAT +gjX +ezZ +fPL +cfT +cfT +swZ +mAT +mAT +cfT +xfw +tOL +vPN +cfT +fjw +gIm +gjX +jjx aao aao aao @@ -54605,88 +45427,88 @@ aao aao aao aao -wXg -cGZ -iyY -pXu -pXu -pXu +xkK +fRD +xOk +rng +rng +rng aao aao aao aao aao -pXu -mDN -wXg -wXg -wXg -wcs +nmo +nmO +fha +fha +fha +jGz acp ilq adB adk adk -aeJ +vDc adS -aeJ +vDc adS adk acp -ajx -ahQ +paC +ipp aeI aeI -aiz -ahP -ajy -ahR -ahP -ahP -ajy +cVf +qpx +lQd +ncY +qpx +qpx +lQd alD -aqv -ari -arS -asD -atr -aBe -atr -atr -arU -awO +oYI +wUq +dDE +xdR +vLb +nWz +vLb +vLb +wSN +maX amj -ayi -aqw -azv -aAu +qOW +oYI +tXH +dzG alu amj -aCC +erT alu alu alu alu alu alu -aHD +nbQ aBR aBR -aMc +ukV apt -aNs +qKn aNo aOB aQT -aRQ -aSO -aQS -aQS -aQS +xrz +vDI +uKD +uKD +uKD aoH -aYe -aXH -aYe +nyk +nyk +nyk asK aZv aZR @@ -54700,7 +45522,7 @@ atA asK asK atA -bga +cKy atA asK aZu @@ -54717,46 +45539,46 @@ axX bmn bmT ayr -jrZ -vnx -cBL +xQB +iwy +oHY ayr -mWs -puA -vIP -ojP -dJv -vnx -ozi -naL -ozi -fiR -flV -flV -flV -vnx -fiR -flV -flV -vnx -fiR -fiR -ltf -tfi -dJv -erZ -dvE +dSe +jHV +jbg +mOK +oiQ +iwy +cCO +guJ +cCO +iVS +kJE +kJE +kJE +iwy +iVS +kJE +kJE +iwy +iVS +iVS +taj +rpy +oiQ +ewT +wHc axX aao -wog -wog -wog -wog -wog -trk -trk -jXX -dxV +kxd +kxd +kxd +kxd +kxd +hHO +hHO +fAQ +owy aao aao aao @@ -54774,34 +45596,34 @@ aao aao aao aao -rsv -rsv -oIc +mAT +mAT +tVR vHw -ciY -xRl -sbk -wVQ -rxh -rxh -rxh -owR -rxh -vhF -fnO -fnO -fnO -rxh -rxh +oSR +nMN +oFQ +qHI +cfT +cfT +cfT +swZ +cfT +ikP +vii +vii +vii +cfT +cfT aao aao -rxh -rxh -rxh -rxh -sZh -nSP -nSP +cfT +cfT +cfT +cfT +gjX +jjx +jjx aao aao aao @@ -54822,23 +45644,23 @@ aao aao aao aao -pMv -wXg -wXg -wKx -pXu -pXu -pXu +jjW +xkK +xkK +vRP +rng +rng +rng aao aao aao -pXu -pXu -xBS -wXg -pow -pow -pow +nmo +nmo +xCL +fha +oSp +eKZ +eWe acp acp acp @@ -54847,67 +45669,67 @@ acp acp acp acp -agz -ahj +urK +bOy acp acp -ajx -aiw -aiw -aiw -aiw -ajx -ajx -aiw -aiw -ajx -apE -aqw -aqw -azv -aqw -aqw +paC +tMs +tMs +tMs +tMs +paC +paC +tMs +tMs +paC +kDT +oYI +oYI +tXH +oYI +oYI amj -auL -aqw -azA -awP +bFS +oYI +sbl +lyz alu alu -ayJ -azw +nTe +hqV alu alu -aBK -aCD -aDH -arX -axw -aGz -axw +sHA +sFD +vyt +iGW +pSd +krU +pSd alu -aHD +nbQ aBR aFL -aMc +ukV apt -aNt +wAt aOB aNo aNo -aRR +tnn aoH apQ apQ apQ aoH -aYe -aXH -aYe +nyk +nyk +nyk asK aZu aZu -baF +lyG aZu aZu aZu @@ -54932,47 +45754,47 @@ asK asK axX bmn -bmU -fwS -guR -vnx -iwW +bmV +rzb +jML +iwy +eGX ayr -xkE -dJv -hvJ -dJv -dJv -uql +soQ +oiQ +vAQ +oiQ +oiQ +rVz axX axX axX oNv oNv oNv -nil -svJ +tYh +vOZ oNv oNv ayZ -svJ -lRt -lRt +vOZ +vdr +vdr ayZ axX -svJ +vOZ ayZ axX axX aao -wog -wog -wog -wog -jXX -dxV -dxV -dxV +kxd +kxd +kxd +kxd +fAQ +owy +owy +owy aao aao aao @@ -54990,35 +45812,35 @@ aao aao aao aao -rsv -rsv -rxh -qvI -gzG -wCo -wCo +mAT +mAT +cfT +oIo +mHm +ezZ +ezZ aao aao aao aao aao -fnO -tRV -nSP -wCo -wCo -wCo +vii +ezB +jjx +ezZ +ezZ +ezZ aao aao aao aao aao -rsv -rsv -xgi -sZh -nSP -nSP +mAT +mAT +cjd +gjX +jjx +jjx aao aao aao @@ -55040,87 +45862,87 @@ aao aao aao aao -hgT -wXg -cGZ -pXu -pXu -pXu -pXu -pXu -iyY -pXu -tlj -pow -wcs -pow +rhG +xkK +fRD +rng +rng +rng +yly +nmo +wbu +nmo +oSp +eKZ +eKZ +eWe acp acp acp -adm -adm -adm +eeJ +eeJ +eeJ acr -aeK -afj +fPm +tps acp -agz +urK adk -aia +eZh acp acr acr acr acr acr -amc -aix -aix -aix -aix -apF -atr -arj -arU -aqw -aqw +xaj +itG +itG +itG +itG +tQQ +vLb +tPj +wSN +oYI +oYI amj -auM -aqw -azA -awP +lyk +oYI +sbl +lyz amj -ayj -ayK -azv -awk +tXy +pRI +tXH +nFw alu -asq -aCE -aDI -awN -awN -aDJ -aHu +tMG +eRF +pEo +xTJ +xTJ +nrp +nOR alu -aHD +nbQ aBR aBR -aMc +ukV apt -aNu +urA aNo aNo aNo -aRR +tnn apQ -aGV +gid aVh -aVP +qwB aoH -aYe -aXH -aYf +nyk +nyk +huk asK aZw aZu @@ -55144,25 +45966,25 @@ asK aZu aZO aZO -bko +cHD aZO aZu axX bmn bmV ayr -xMU -vnx -ejf +lcl +iwy +jGu ayZ -jsq -jWs -jPD -dJv -dJv -ivl -tCS -tCS +ues +ftV +cYi +oiQ +oiQ +vDd +dFN +dFN axX hpv nFV @@ -55177,19 +45999,19 @@ kgN nFV qWV ayZ -ltf -erZ +taj +ewT axX aao aao -wog -wog -wog -jXX -dxV -dxV -dxV -buz +kxd +kxd +kxd +fAQ +owy +owy +owy +dXG aao aao aao @@ -55206,22 +46028,22 @@ aao aao aao aao -nSP -wVQ -rsv -rsv -sZh -rtV -wCo +jjx +qHI +mAT +mAT +gjX +phe +ezZ mKM aao aao aao aao aao -lYi -lYi -lYi +irc +irc +irc aao aao aao @@ -55231,12 +46053,12 @@ aao aao aao fpa -pCR -rem -pxv -xZm -nSP -nSP +kur +uAO +prD +hJW +jjx +jjx aao aao aab @@ -55258,86 +46080,86 @@ aao aao aao aao -wXg -wXg -wKx -pXu -pXu -pXu -xBS -wXg -cGZ -vwP -acp +xkK +xkK +vRP +rng +rng +gkN +xCL +fha +eaE +jGz acp acp +agy acp -acL -acT -acD -acC -acC -aem -acC -acC -afP -agA +pUF +ump +vlD +eiK +eiK +uah +eiK +eiK +bQu +vEQ adk -aib +ewD acp -aiX -ajB -aiX -aiX +qco +eIS +qco +qco acr -amd -ana +tPs +dGi acp acp acp -qKx -aqy -ark -arV -ark -ark +jSG +qjM +iiY +fhW +iiY +iiY amj -auL -avx -azA -awP +bFS +pAJ +sbl +lyz alu -ayk -ayL -azx -awl +rXP +mMW +iBK +gCj alu -aBM -azv -aqw -aqw -aFE -arR -aHv +umA +tXH +oYI +oYI +gwS +bgG +szO alu -aHD +nbQ aBR aBR -aMc +ukV apt -aNv -aOD -aPJ -aQU -aRS -aSP -aSO -aVi -aVO +jiU +kux +oHj +kom +nCS +tIQ +vDI +kCL +nhf aoH -aYe -aXH -aYe +nyk +nyk +nyk asK aZx aZx @@ -55354,9 +46176,9 @@ bfH bgb bei asK -bdg -gkD -biw +nRU +naG +yjI asK eLq eWP @@ -55368,18 +46190,18 @@ axX ayr ayr ayr -ygp -vnx -ejf +lIb +iwy +jGu ayZ -sMb -vnx -vnx -vnx -bvd -ovQ -urQ -nDA +cgE +iwy +iwy +iwy +moW +fjH +eqD +wZV nMQ tOY uaG @@ -55394,19 +46216,19 @@ tOY qyb vko ayZ -guR -erZ +jML +ewT axX aao -wog -qgY -wog -hiY -dxV -pYt -dxV -dxV -qgY +kxd +tez +kxd +qwK +owy +lOv +owy +owy +tez aao aao aao @@ -55423,13 +46245,13 @@ aao aao aao aao -szw -wVQ -lom -vpu -dZO -ndy -wCo +ncf +qHI +iik +lqG +nsZ +xJO +ezZ aao aao aao @@ -55448,12 +46270,12 @@ aao aao aao vHw -cfr -jCq -wCo -nSP -nSP -nSP +vnl +lmR +ezZ +jjx +jjx +jjx aao aao aab @@ -55475,72 +46297,72 @@ aao aao aao aao -geC -wXg -wKx -pXu -pXu -xBS -wXg -pMv -wXg -mGq +ggA +xkK +vRP +rng +rng +cLo +fha +sEn +fha +jGz acp -acy -acC -acE -acC -acU -acC -acD -acD +oSl +pPi +pPi +eiK +wZF +eiK +vlD +vlD acr -aeL -aeL +yaB +yaB acp -agB +dhl adk -aic +xkb acp -aiX -afS -afS -afS -alp -ame -aic +qco +kzS +kzS +kzS +acr +iqD +xkb aer -afS -bNE -alX +kzS +jLy +acp amj amj amj alu alu alu -auN -aqw -azv -awR +vVV +oYI +tXH +viD amj -ayl -ayL -azx -aAv +uNV +mMW +iBK +ucb alu -gTD -aCF -ari -aEC -aqw -arR -aHw +cBp +dLw +wUq +pck +oYI +bgG +gFD alu -aHD +nbQ aBR aBR -aMc +ukV aoH aoH aoH @@ -55552,16 +46374,16 @@ aoH aoH aoH aoH -asK -asK -asK +nyk +nyk +nyk asK atw atw atw asK -bdg -bcD +nRU +fbX asK atw atw @@ -55571,9 +46393,9 @@ asK asK asK asK -fwD -fwD -tuu +ieT +ieT +lJP asK asK asK @@ -55582,21 +46404,21 @@ asK asK asK axX -wMi -puA -puA -uOD -jWs -fKb -bqS -dpv -jWs -jWs -jWs -jWs -jWs -sDX -erZ +ffI +jHV +jHV +sQF +ftV +shA +ugG +mAR +ftV +ftV +ftV +ftV +ftV +aTF +ewT nMQ tOY uaG @@ -55611,19 +46433,19 @@ tOY uaG vko ayZ -guR -erZ +jML +ewT axX aao -wog -wog -wog -hiY -dxV -dxV -dxV -dxV -qgY +kxd +kxd +kxd +qwK +owy +owy +owy +owy +tez aao aao aao @@ -55640,13 +46462,13 @@ aao aao aao aao -szw -wVQ -eGb -wUo -xrO -xya -nTF +ncf +qHI +phI +fCy +vmR +sJS +wjy aao aao aao @@ -55665,12 +46487,12 @@ aao aao aao vHw -eql -wCo -wCo -nSP -lsq -nSP +imM +ezZ +ezZ +jjx +uoJ +jjx aao aao aab @@ -55692,128 +46514,128 @@ aao aao aao aao -wXg -wXg -wKx -pXu -mDN -wXg -geC -wXg -wXg -mGq +xkK +xkK +vRP +nmo +nmO +oTk +iQO +fha +fha +jGz acq -acy -acC -acE -acM -acM -acM -acD -adM +mSu +eiK +eiK +dkJ +dkJ +dkJ +vlD +gAR acr acr acr acp -agB +dhl adk -aic +xkb acp -aiZ -afS -afS -akM -acr -ame -ahj -anx -afS -akM -alX -rxo -arl -arl -arl -arl +ttL +kzS +kzS +kzS +kSs +iqD +bOy +cUU +kzS +oAk +acp +keF +wyC +wyC +wyC +wyC amj -auL -aqw -azv -awO +bFS +oYI +tXH +maX alu -ayk -ayM -azy -awk +rXP +ofW +xyV +nFw alu -aBO -awN -aDJ -aDJ -aDJ -awN -tqK +vqD +xTJ +nrp +nrp +nrp +xTJ +yeX alu -aHD +nbQ aBR aBR -aMd -aMg -aNw -aNw -aMg -aMg -aMg -aMg -aMg -aMg -aNw -aNw -aNw -aNw -aMg -aMg -aNw -aNw -aNw -aMg -aMg -aNw -aNw -aNw -aMg -aMg -aMg -aMg -aMg -aMg -bgF -bgF -bgF -bhR -biR -aMg -bjx -bjx -bjx -bjx -bjw +iTQ +cbi +otF +otF +cbi +cbi +cbi +cbi +cbi +cbi +otF +otF +wlU +wlU +nyk +cbi +otF +otF +otF +cbi +cbi +otF +otF +otF +cbi +cbi +cbi +cbi +cbi +cbi +fxO +fxO +fxO +ugL +xii +cbi +bwv +bwv +bwv +bwv +dhp axX -lPa -dJv -vnx -vnx -vnx -ejf +ukE +oiQ +iwy +iwy +iwy +wyP ayZ -slQ -lpu -flV -flV -glN -flV -hvJ -iiP +rPd +qFa +kJE +kJE +kkS +kJE +vAQ +dXa nMQ xON bTV @@ -55828,21 +46650,21 @@ tOY qyb vko ayZ -guR -erZ +jML +ewT axX -edL -wog -wog -wog -hiY -dxV -dxV -dxV -buz -wog -wog -wog +fjU +kxd +kxd +kxd +qwK +owy +owy +owy +dXG +kxd +kxd +kxd aao aao aao @@ -55858,12 +46680,12 @@ aao aao aao muP -hnh -xkq -nXC -nny -gpB -tEc +jYe +gqp +wGa +mmJ +sOV +mGI muP aao aao @@ -55881,13 +46703,13 @@ aao aao aao aao -rxh -xAv -wCo -nSP -wCo -nSP -nSP +cfT +nCA +ezZ +jjx +ezZ +jjx +jjx aao aao aab @@ -55909,69 +46731,69 @@ aao aao aao aao -pRP -ajD -akP -akP -aus -akX -alH -akX -wpf -vwP +aao +oIr +nmo +nmo +nmo +oTk +sEn +fha +dHu +jGz acr -acy -acC -acE -acM -acM -acM -acD -acD +mSu +eiK +eiK +dkJ +dkJ +dkJ +vlD +vlD acr -aeK -afj +fPm +tps acp -agB +dhl ahk -aic +xkb acp -aja -ajC -ake -aiX +xDB +sWf +eAH +wJV acr -ame -ahj +iqD +bOy aer -afS -aoT -alX -aqw -arm -aip -asE -atr -atV -atr -atr -arU -awO +kzS +hTw +acp +jjU +tjV +eQc +eoz +vLb +gFo +vLb +vLb +wSN +maX amj -aqw -aqw -azv -awl +oYI +oYI +tXH +gCj alu -ans -awN -asq -asq -aFF -aGA -aHy +cFn +xTJ +tMG +tMG +ehH +cbk +veB alu -aHD +nbQ aKk aBR aBR @@ -55986,50 +46808,50 @@ aBR aBR aBR aBR +ukV +nyk +nbQ +sfG +wdv aBR aBR +lzH +ool +ool +ool +ool +wdv aBR -aYK -aIp -aBR -aBR -aVo -aIn -aIn -aIn -aIn -aIp aBR aBR aBR aBR aBR -aBR -aVo -aIn -biy -biS -aIn -bjy -bjy -bjy -bjB -blq +lzH +ool +cXE +bJA +ool +ggg +ggg +ggg +gqX +wat axX -kGQ -dJv -vnx -oku -vnx -qPm +xSp +oiQ +iwy +vRI +iwy +obX ayZ -hUP -ejf +qTL +wyP axX axX axX axX -nCK +uTi axX axX axX @@ -56045,21 +46867,21 @@ tOY uaG vko ayZ -guR -erZ +jML +ewT axX -uqB -wog -qgY -wog -wog -ibZ -ibZ -ibZ -wog -wog -wog -wog +mKi +kxd +tez +kxd +kxd +bvh +bvh +bvh +kxd +kxd +kxd +kxd aao aao aao @@ -56075,13 +46897,13 @@ aao aao aao aao -xkq -xkq -nXC -guM -nny -guM -ybk +gqp +gqp +wGa +tZG +mmJ +tZG +dJS aao aao aao @@ -56097,14 +46919,14 @@ aao aao aao aao -wVQ -ykW -rOK -wCo -wCo -nSP -nSP -nSP +qHI +oKK +xdX +ezZ +ezZ +jjx +jjx +jjx aao aao aab @@ -56126,69 +46948,69 @@ aao aao aao aao -iRf -akh -akh -alq -aWy -wMp -akX -akX -hKM -vwP +aao +nmo +nmo +nmo +nmo +kCm +fha +fha +xpZ +jGz acs -acz -acC -acD -vPZ -acC -adn -vBY -adN -aen -adN -adN -afQ -agC +mSu +eiK +vlD +gQy +eiK +fhn +fHy +csa +mlP +csa +csa +gZL +uFB ahl -aid +wDf acp acr acr acr acr acr -pXm -ahj +icz +bOy acp acp acp -alX -aqB -arn -kwV -asF -arl +acp +bVK +wyC +oYm +lRG +wyC amj -auL -aqw -awg -awS +bFS +oYI +huP +mxV alu alu -ayN -azz +igF +vPM alu alu amj -aCG +woI alu alu alu alu alu alu -aHD +nbQ aBR aLc aBR @@ -56203,81 +47025,81 @@ aBR aBR aFL aBR +ukV +nyk +nbQ aBR aBR aBR +djU +ool +ool +ool +rEv +kAH aBR aBR aBR -aLd -aIn -aIn -aIn -bdk -aWJ aBR aBR aBR -aBR -aBR -aBR -aLd -aIn -aIn -biz -aTh -aIn -bjy -bjy -bjy -bkp -blq +djU +ool +ool +tOq +oBx +ool +ggg +ggg +ggg +ovG +wat axX -jcm -dJv -lPG -vnx -dJv -hYt +vqb +oiQ +jKg +iwy +oiQ +pgv ayr -sMb -erZ +cgE +ewT axX -fiP -bUn -eZk -hvJ -puA -miA +iot +slZ +lkz +vAQ +jHV +jnO nMQ tOY qyb vko eaP -dxa -dxa -dxa +hyf +hyf +hyf omC tOY qyb vko -lRt -jrZ -erZ +vdr +xQB +ewT hPH -uqB -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +mKi +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -56292,13 +47114,13 @@ aao aao aao aao -xkq -xkq -nXC -tnd -tnd -guM -ybk +gqp +gqp +wGa +jcN +jcN +tZG +dJS aao aao aao @@ -56314,13 +47136,13 @@ aao aao aao aao -pXB -yhN -sZh -wCo -tqi -eql -nSP +gHS +wce +gjX +ezZ +fPL +imM +jjx aao aao aao @@ -56343,158 +47165,158 @@ aao aao aao aao -iRf -akh -akh -akh -aWy -aad -akZ -akZ -aad -vwP -acp -acz -acD -acF -acO -acC -ado -acC -acC +aao +nmo +nmo +nmo +nmo +gkN +oIr +oIr +nmo +jGz +acq +mSu +vlD +tpn +nUL +eiK +qyp +eiK +eiK acr -aeL -aeL +yaB +yaB acp -agz +urK ahm -ahj +bOy acp -aZp -bhH -akf -bhN -biA -ame -ahj +cFP +ehv +lEn +fOd +bJP +iqD +bOy aer -afS -bNE -alX -alu -alu +kzS +jLy +acp +anZ +anZ alu alu alu alu -auL -aqw -azv -awT -axz -aym -aqw -azv -avw -ayH -avw -avw -aDK -aED -aFG -aFG -aHz +bFS +oYI +tXH +xNY +nfp +jLV +oYI +tXH +brv +bTb +brv +brv +pzJ +oYF +xOR +xOR +fWp alu -aHF -aFM -aFM -aFM -aFM -aFM -aOE -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHC +nyk +hbB +hbB +hbB +hbB +hbB +lmp +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +nyk +nyk +nyk +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +jQu aBR aBR aBR aBR -aYK -aIn -aIn -biz -biT -aIn -bjz -bjz -bkp +sfG +ool +ool +tOq +jYb +ool +lOn +lOn +ovG bjA -blq +wat axX -uYH -vnx -vnx -dJv -dJv -gfZ +pdz +iwy +iwy +oiQ +oiQ +fhe ayZ -slQ -ejf +rPd +wyP axX -nPN -mYi -jWs -jPD -scy -xze +uvD +iMw +ftV +cYi +ueh +nme uxl tOY uaG vko -gKW -puA -llD -puA -uVL +qYj +jHV +mIx +jHV +nPy tOY uaG vko -lRt -jrZ -ejf +vdr +xQB +wyP hPH -oSY -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +qQO +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -56509,14 +47331,14 @@ aao aao aao aao -xkq -xkq -nXC -qFg -irM -guM -eGa -xkq +gqp +gqp +wGa +nFt +xTh +tZG +qAT +gqp aao aao aao @@ -56529,15 +47351,15 @@ aao aao aao aao -szw -yhc -sxs -vPP -sZh -wCo -wVQ -rxh -nSP +ncf +hHJ +bsW +wvs +gjX +ezZ +qHI +cfT +jjx aao aao aao @@ -56560,73 +47382,73 @@ aao aao aao aao -iRf -akh -akh -akh -aWy -aad -aad -aad -aad -xbV +aao +aao +aao +nmo +nmo +gkN +nmo +nmo +nmo +jGz acq -acz -acD -acG -acM -acM -acM -acC -acD +mSu +vlD +vlD +dkJ +dkJ +dkJ +eiK +vlD acr acr acr acp -agz +urK ahm -aie +fGi acp -aZq -adS -akg -akN -afS -ame -ahj -anx -afS -akM -alX -oOR -aro -arY -asG -ats +qBu +qco +wtS +tVs +kzS +iqD +bOy +cUU +kzS +oAk +acp +dfJ +xMD +xMD +xMD +wUu alu -auL -aqw -awh -awU -aqw -aqw -ayO -azA -arR -aqw -aqw -avx -aDL -aqw -aqw -aqw -awO +vVV +oYI +nZj +bWz +oYI +oYI +gVj +sbl +bgG +oYI +oYI +pAJ +efd +oYI +oYI +oYI +maX alu -aHF -aHF -aHF -aHF -aHF +nyk +nyk +nyk +nyk +nyk apC apC apJ @@ -56638,7 +47460,7 @@ apC apC apC apJ -apJ +kAb apJ apC apC @@ -56648,71 +47470,71 @@ apC apC apC apC -nGt -aHF -aHD +fQe +nyk +nbQ aBR aBR aBR aBR aFL -aVo -aIn -aMc -biU -aWJ +lzH +ool +ukV +nDM +kAH bjA bjA bjA bjA -blq +wat axX -hCO -flV -cLJ -osW -txX -cJN +sFM +kJE +bsg +gwo +uHS +dZs ayZ -tIL -vnx -fqd -uIR -eZy -lbH -vnx -dJv -pYo +vQd +iwy +uST +fHt +urp +eLw +iwy +oiQ +crU nMQ tOY qyb vko -nSr -vrj +gJs +dTU axX -pCu -oXD +eda +oNV tOY qyb vko ayZ -guR -ejf +jML +wyP axX -oSY -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +qQO +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -56727,13 +47549,13 @@ aao aao aao aao -xkq -lvh -vQZ -rtR -guM -vBy -xkq +gqp +lyi +kwa +fUS +tZG +eOQ +gqp aao aao aao @@ -56746,14 +47568,14 @@ aao aao aao aao -szw -yhc -wVQ -rxh -sZh -wCo -wVQ -lZV +ncf +hHJ +qHI +cfT +gjX +ezZ +qHI +kCq aao aao aao @@ -56777,112 +47599,112 @@ aao aao aao aao -iRf -iRf -iRf -iRf -iRf aao -aad -aad -alJ -tFM +aao +aao +aao +aao +aao +nmo +nmo +nmO +jGz acp -acy -acC -acE -acM -acV -acV -acC -acC +mSu +eiK +eiK +dkJ +wEB +wEB +eiK +eiK acr -aeK -afj +fPm +tps acp -agz +urK ahn -ahj +bOy acp -aZq -adS -adS -akN -afS -amg -ahj +qBu +qco +qco +tVs +kzS +tkD +bOy aer -afS -aoT -alX -aqD -aqD -aqD -aqD -att -atW -atr -atr -arU -arR -aqw -aqw -arR -azA -arR -aBf -avy -axB -aDM -aEE -aEE -aGB -aHA +kzS +hTw +acp +lHB +iQO +iQO +fha +pDN +lgq +vLb +vLb +wSN +bgG +oYI +oYI +bgG +sbl +bgG +keH +sVh +nHY +oHJ +lWc +lWc +wap +czk alu -aHF -aHF -aHF -aHF +nyk +nyk +nyk +nyk apC apC -aOF -aPK -aQV -aRT +qwj +rZu +lhU +uCz aof -aTV -mGS -tap +mpR +uEK +dyc aof -aNK -aXL -bdo +slP +ukS +wtW aof -aZz -aOO -aOO -aOO -aOO -cXG -aOO +iKy +mQi +mQi +mQi +mQi +xKr +mQi apC apC -aHD +nbQ aBR aBR aBR aBR aBR -aVo -aIn -xpL -biU -aIn -bjB +lzH +ool +chk +nDM +ool +gqX bjA bjA -bkC -blq +vSB +wat axX axX axX @@ -56891,47 +47713,47 @@ ayr ayr ayr ayr -mon -vWX +hFW +oWQ axX -lKS -qKU -pEF -vnx -scy -hti +eth +cak +lzN +iwy +ueh +shK nMQ tOY uaG vko -oNz -fiR -vNT -flV -xhf +gOo +iVS +bIe +kJE +vGG tOY uaG vko ayZ -guR -erZ +jML +ewT axX -oSY -wog -wog -trk -trk -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +qQO +kxd +kxd +hHO +hHO +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -56945,11 +47767,11 @@ aao aao aao aao -xkq -xkq -rcN -rcN -tcq +gqp +gqp +pWB +pWB +tSx aao aao aao @@ -56963,14 +47785,14 @@ aao aao aao aao -szw -nSP -wVQ -rxh -sZh -wCo -wVQ -lZV +ncf +jjx +qHI +cfT +gjX +ezZ +qHI +kCq aao aao aao @@ -57000,54 +47822,54 @@ aao aao aao aao -aad -abU -alJ -tFM +nmo +mAe +nmO +jGz acq -acy -acC -acE -acC -vPZ -acD -acD -acD -aem -acC -acC -afP -agz +mSu +eiK +eiK +eiK +gQy +vlD +vlD +vlD +uah +eiK +eiK +bQu +urK ahn -aic +xkb acp -aZP -bhM -bhM -akO -afS -amg -aic +hiX +nzr +nzr +cLj +kzS +tkD +xkb acp acp acp -alX -aqD -aqD -aqD -aqD -aqD -alu -auL -aqw -azv -aqw -arR -arR -ayP -azv -aAw -awP +acp +lHB +iQO +fha +fha +jGz +igF +bFS +oYI +tXH +oYI +bgG +bgG +vsQ +tXH +yeS +lyz alu alu alu @@ -57057,23 +47879,23 @@ alu alu alu alu -aKm -aHF -aHF +kAf +nyk +nyk uRE -jon -aMf -aPL -aMf -aXk +kgY +nVz +jFg +nVz +xQS aof -aTV -aTV -din +mpR +mpR +xZJ aof -aWH -aOM -jna +oKm +etB +gVX asT aZC aZC @@ -57081,74 +47903,74 @@ baG aZC baG aZC -aOO -bdO +mQi +qRz apC -aHD +nbQ aBR aBR aBR aBR aBR lBc -eRI -aMc +eaj +ukV biV -sIY +aGM bjC -bjB +gqX bkq -bjH -blq +mrt +wat axX -ixY -puA -ohs -bMP -oQv +bvN +jHV +mxg +fqn +mNj ayZ -ert -mjr -ejf +moc +xOX +wyP axX -ltH -tYE -fyw -dJv -fiR -dGl +jyt +cwi +boO +oiQ +iVS +rXD nMQ tOY qyb vko eaP -dxa -dxa -dxa +hyf +hyf +hyf omC tOY qyb vko ayZ -jrZ -erZ +xQB +ewT axX -oSY -wog -jXX -pYt -dxV -qgY -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +qQO +kxd +fAQ +lOv +owy +tez +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -57162,11 +47984,11 @@ aao aao aao aao -sqj -kNc -jcR -jrD -ydd +rIW +hLW +uQO +dUe +ieF aao aao aao @@ -57182,10 +48004,10 @@ aao aao aao uDn -vTh -rxh -sZh -fRW +sdC +cfT +gjX +nNw vHw aao aao @@ -57217,80 +48039,80 @@ aao aao aao aao -abr -aad -alJ -tFM +ewI +nmo +nmO +jGz acp -acy -acC -acE -acC -acC -adp -adD -adD +oSl +pPi +pPi +eiK +eiK +sWc +eKH +eKH acr -aeL -aeL +yaB +yaB acp -agz +urK ahm -aib +ewD acp -afS -afS -afS -afS -afS -amg -aic +kzS +kzS +kzS +kzS +kzS +tkD +xkb aer -afS -bNE -alX -aqD -aqD -aqD -aqD -atu -alu -auN -arR -awi -awV -awQ -awQ -awQ -arU -aqw -aBg +kzS +jLy +acp +lHB +fha +fha +fha +jGz +alD +bFS +bgG +elZ +vyA +gSJ +gSJ +gSJ +wSN +oYI +ooY alu -aaM -aqw -arl -aqw -aGC -aHB -aIj +ceR +oYI +wyC +oYI +iHf +woC +riY alu aof -aLe +bVO aof apC -aNy -aOG -aMf -aQW -aRU +mzt +qSZ +nVz +aYg +eUF aof -aTU -wGD -aTV +cfz +nNT +mpR aof -aYU -aOM -aUb +qUH +etB +nZZ asT aZB aZT @@ -57298,40 +48120,40 @@ btV bbj btV bcE -aOO -aOO +mQi +mQi apC -aHD +nbQ aBR aBR aBR aBR aBR -aVo -aIn -aMc -aHD -aIn -bjD -bka +lzH +ool +ukV +nbQ +ool +mpO +fLq bjA -bjH -blq +mrt +wat axX -nTA -dJv -cBZ -uOl -enx +nQV +oiQ +miB +obl +cfH azE -guR -hvJ -gxB +jML +vAQ +pVC axX axX axX axX -fUe +mNL axX axX axX @@ -57347,25 +48169,25 @@ tOY uaG vko ayZ -jrZ -erZ +xQB +ewT axX aao aao aao -dxV +owy aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -57379,11 +48201,11 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -57398,12 +48220,12 @@ aao aao aao aao -guM -fGN -jrD -nXC -ncv -guM +tZG +otn +dUe +wGa +sxI +tZG aao aao aao @@ -57433,81 +48255,81 @@ aao aao aao aao -akY -cJG -aad -abO -vAy -acp +iQO +eaE +nmo +tqH +jGz acp acp +agy acp acp -acX +xWo acp -adE -adO +vCz +nAc acr acr acr acp -agz +urK ahm -ahj -aiC -ajb -ajE -ajE -ajE -ajb +bOy +nzx +wzu +kEp +kEp +kEp +wzu ahm -aic -anx -afS -akM -alX -aqE -aqE -aqE -aqE -atv -alu -auL -arR -arR -aqw -axA -arR -arR -azA -aAx -awO +xkb +cUU +kzS +oAk +acp +lHB +fha +fha +fha +jGz +alD +oOZ +bgG +bgG +oYI +vKI +bgG +bgG +sbl +cah +maX amj -aCI -aDN -arS -aFH -awV -aFH -awQ -aJl -aKo -aKo -aSX -aMF -aNz -aKo -aKo -aQX -aRV +qfn +jMP +dDE +gjv +vyA +gjv +gSJ +cDg +nqg +nqg +iuV +hpf +thg +nqg +nqg +nrT +cHf aof -aTV -gWU -aVS +mpR +fvj +sWX aof -aXg -aOM -aUb +ycn +etB +nZZ aof aZC aZU @@ -57515,41 +48337,41 @@ aZC aZU aZC bcF -aOO -aOO +mQi +mQi apD -aHD +nbQ aBR aBR aBR aBR bhi bhi -bhI -wGV -usg -aIn -bjD -jdQ +eeR +eBv +hlj +ool +mpO +pAs bjA -bjH -blr +mrt +qph axX -uIa -uSL -prs -dyR -cse +wFV +bmO +pyS +xis +kvT ayZ -guR -hvJ -ufo -puA -puA -sex -puA -vnx -nDA +jML +vAQ +slu +jHV +jHV +jDn +jHV +iwy +wZV nMQ hpv kuU @@ -57564,8 +48386,8 @@ tOY qyb vko oNv -jrZ -erZ +xQB +ewT axX aao aao @@ -57573,17 +48395,17 @@ aao aao aao aao -wog -wog -wog +kxd +kxd +kxd aao aao -wog -wog -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -57596,12 +48418,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -57615,12 +48437,12 @@ aao aao aao aao -nny -guM -ybk -nXC -guM -gpB +mmJ +tZG +dJS +wGa +tZG +sOV aao aao aao @@ -57650,123 +48472,123 @@ aao aao aao aao -akX -akX -hKM -aad -qez -aao -aao -aao +fha +fha +xpZ +nmo +hFy +ixz +ixz +ixz aao acp acp acp -adF -adP -aeo -aeM -afk +eKR +wgj +pmJ +rFv +yeR acp -agz +urK aho -aif -aiD -ajc -aif -aif -aif +jpM +hBW +udZ +jpM +jpM +jpM alr ami -anb +vGJ aer -afS -aoT -alX -aqF -aqF -aqF -aqF -aqD -alu -auO -avy -aqw -avy -axB -ayn -ayQ -azD -aqw -awO +kzS +hTw +acp +lHB +fha +fha +fha +jGz +alD +qnl +sVh +oYI +sVh +nHY +ePs +jsY +nBU +oYI +maX amj -aCJ -arR -aEG -arR -arl -arR -aDN -ayN -aKp -aQW -aTb -kmm -aNA -aMf -aMf -aQY -aMf -aSQ -tJn -pyU -tJn -cJa -iZc -aOM -aOM -aYN +hvh +bgG +xvU +bgG +wyC +bgG +jMP +igF +iwr +aYg +rFN +sFB +jVK +nVz +nVz +gbl +nVz +jsd +mqU +wlo +mqU +hnM +nop +etB +etB +iFT aZC aZC aZC aZC aZC bcG -aOO -aOO +mQi +mQi apD -aHD +nbQ aBR aBR -aLd +djU bhi bhi bhi -raQ -aMc -aHD -aIn -bjD -bka +iLk +ukV +nbQ +ool +mpO +fLq bjA -bjH -blr +mrt +qph axX -wQL -kII -nin -vnx -lOO -jEQ -jWs -aWo -xFS -goi -goi -vnx -dJv -vnx -erZ +tzi +dIF +qZc +iwy +cOy +uuS +ftV +syL +gIQ +qDk +qDk +iwy +oiQ +iwy +ewT nMQ tOY uaG @@ -57781,8 +48603,8 @@ tOY uaG vko ayZ -guR -erZ +jML +ewT axX aao aao @@ -57790,18 +48612,18 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -57814,12 +48636,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -57832,13 +48654,13 @@ aao aao aao aao -guM -guM -ybk -nXC -guM -nny -guM +tZG +tZG +dJS +wGa +tZG +mmJ +tZG aao aao aao @@ -57867,14 +48689,14 @@ aao aao aao aao -akX -akX -hKM -aad -aad -aao -aao -aao +fha +fha +xpZ +nmo +nmO +fha +fqv +acP aao aao aao @@ -57890,100 +48712,100 @@ acp acp acp aer -ajF +kwc aer acp -als +fOF ajL -anc +iSd acp acp acp -alX -aqD -aqD -aqD -aqD -aqD +acp +lHB +fha +fha +fha +pLw +alu +alu +bOX +gBh +bOX alu -amj -amj -awj -amj -amj alu -ayR -azv -aqw -awO +mnu +tXH +oYI +maX amj -aCK -aDO -aEH -aFI -oOA +vNC +rdk +tIl +cwg +rWq amj amj alu aof -aLe +bVO aof apC -aNB -aOG -aPM -aQZ -aRX +fwd +qSZ +gnw +lXn +vxz aof -mrH -aVj -mrH +nTk +gXy +nTk aof -uKH -aOM -aUb +nSQ +etB +nZZ aof -aOO -aOO -aOO -aOO -aOO -bcH -aOO -aOO +mQi +mQi +mQi +mQi +mQi +hlz +mQi +mQi apC -aHD +nbQ aBR aBR -tHl +hYW bhi dbi -lSL -lSL -aMc -aHD -aIn -bjD -bka +iSN +iSN +rNr +nbQ +ool +mpO +fLq bjA -bjH -blr +mrt +qph axX -xJB -fmA -vRe -hEQ -iiP +bSA +fCq +pKS +oLs +dXa ayZ -kKs -hvJ -oGP -lUk -tML -vnx -kfV -dJv -wtp +fLF +vAQ +oCi +uww +qub +iwy +sgq +oiQ +mpx nMQ tOY uaG @@ -57998,8 +48820,8 @@ tOY qyb vko ayZ -guR -erZ +jML +ewT axX aao aao @@ -58008,17 +48830,17 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog -wog +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd aao aao aao @@ -58029,15 +48851,15 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -58050,12 +48872,12 @@ aao aao aao aao -guM -ybk -nXC -guM -guM -guM +tZG +dJS +wGa +tZG +tZG +tZG aao aao aao @@ -58083,108 +48905,108 @@ aao aao aao aao -akX -akX -akX -hKM -aad -aad -aao -aao -aao -aao +fha +fha +fha +xpZ +nmo +fVD +fha +fqv +acP +acP aao aao aao aao -alF -buB +ixz +rcZ acp -afl -afR -afR -afR +aYd +bKo +bKo +bKo acp -aiE -afS -afS -aki +pjQ +kzS +kzS +crI aer -agB +dhl ahn -aic +xkb aer -afS -bNE -alX -aqD -aqD -aqD -aqD -aqD +kzS +jLy +acp +lHB +fha +fha +fha +pYv alu -auP -avz -aqw -auP -avz +gCr +kna +oYI +gXz +neZ alu -ayS -azv -aqw -aqw -apE -arl -aqw -aEI -aFJ -aGE -aqw -aIk +seD +tXH +oYI +oYI +kDT +wyC +oYI +wwx +vRd +mkx +oYI +qNS alu -aKq -aHF -aHF +bLe +nyk +nyk apD -aNC -aMf -aPN -aRa +jgG +nVz +xIG +eGO aof aof aof aof aof aof -aNL -aOM -aUb +oZb +etB +nZZ aof aof asT asT asT aof -sRy +mpV aof aof apC -wxo +lic aBR aBR bhi bhi dbi -nHb -lAK -bYp -aHD -eRI +xTD +drO +xKX +nbQ +eaj ofX -bjy -bkr -bjy -bls +ggg +gvw +ggg +vmQ axX ayr ayZ @@ -58192,15 +49014,15 @@ ayZ ayr ayr ayr -sFS -hvJ -qpO -fTq -gta -dJv -mEP -fiR -nmZ +hvs +vAQ +cRN +oqX +tjU +oiQ +uwA +iVS +eWQ axX xON cpv @@ -58215,8 +49037,8 @@ xON cpv dyL ayZ -xcw -erZ +veb +ewT axX aao aao @@ -58226,53 +49048,53 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +wYt +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao aao aao -jrD -jrD -jrD -moE -guM -guM +dUe +dUe +dUe +oIJ +tZG +tZG aao aao aao @@ -58299,123 +49121,123 @@ aao aao aao aao -akX -alH -akX -abL -aad -aad -aad -aao -aao -aao -aao -aao -aao -aao -aao +fha +sEn +fha +vQE +nmo +wbu +xCL +fha +fqv +rWr acP -asc +acP +acP +acP +acP +acP +jGz acp -rTF -afS -afS -afS +uLt +kzS +kzS +kzS acp -aiF -afS -afS -aki +qmA +kzS +kzS +crI aer -alt +rgK ahn -ahj -anx -afS -akM -alX -aqE -aqE -aqE -aqE -aqD +bOy +cUU +kzS +oAk +acp +lHB +fha +fha +fha +jGz alu -auQ -avA -awk -awW -axC +fSx +jzZ +oYI +rkz +sWG alu -ayT -awi -aAy -atr -apF -atr -aDP -arU +vtz +elZ +tyM +vLb +tQQ +vLb +mQs +wSN alu -aqw -arl -aqw +oYI +wyC +oYI alu -aHF -aHF -aHF +nyk +nyk +nyk apD -aND -aXk -aMf -aZS +jzL +xQS +nVz +gIK aof -aSR -aTY -aTY -aTY -aWC -aXj -aOI -aYh -oDW -oFY -bcI -bcJ -aRd -aVl -qoN -bdo +uFE +dzR +dzR +dzR +uLM +wuA +ewk +tDD +cbE +fOs +ufJ +puv +nFe +jyY +eyr +wtW apD -bhU -wxo +wlU +lic aBR aBR bhi bhi dbi -nHb -nHb -twS -aHF -mSn -bjE -bkb -bkb -bks -bjw -gAe -hWQ -hIU -hIU -eLt -wKr -eDd -xcw -hvN -ooC -ooC -ddG -vnx -dMt +xTD +xTD +mwD +nyk +iyJ +meO +bRo +bRo +eyz +dhp +rNj +sgK +eSk +eSk +jyH +jfn +cqY +veb +dWp +tJy +tJy +sTx +iwy +gxO axX axX axX @@ -58423,16 +49245,16 @@ ayZ ayZ ayZ ayZ -svJ +vOZ ayZ -ygy -lRt -gzF -ygy +nfr +vdr +pID +nfr ayZ ayZ axX -svJ +vOZ ayZ axX axX @@ -58443,53 +49265,53 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jrD -jrD -phi -jrD -jrD -iQG -phi -jrD -jrD -jrD -jrD -iml -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +kxd +dUe +dUe +dUe +dUe +dUe +dUe +gfN +dUe +dUe +bkY +gfN +dUe +dUe +dUe +dUe +gfU +xGO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao -jrD -jrD -jrD -jrD -jrD -rcN -rcN +dUe +dUe +dUe +dUe +dUe +pWB +pWB aao aao aao @@ -58516,142 +49338,142 @@ aao aao aao aao -akX -akX -wpf -aad -aad -aad -aad -aao -aao -aao -aao -aao -aao -aao -aao +fha +fha +dHu +nmo +fdT +klF +klF +raX +vyf +klF +klF +fGe +acP acP -asc +acP +acP +jGz acp -xyu -afS -agD -afS +qNc +kzS +gCh +kzS acp -tGh -afS -afT -afS -akQ -agB +jDF +kzS +qhY +kzS +ufW +dhl ahm -ahj +bOy aer -afS -aoT -alX -aqF -aqF -aqF -aqF -aqD +kzS +hTw +acp +lHB +fha +fha +fha +jGz alu -auR -avA -awl -awW -axD +fSx +jzZ +oYI +rkz +sWG alu -ayU -aqw -aAz -aBh +rOD +oYI +rSt +wTJ alu -arl -aqw -aEJ -aFK -arl -aqw -aIl +wyC +oYI +mPR +onv +wyC +oYI +eMI alu -aHF -aHF -aHF +nyk +nyk +nyk apD -vbg -aOH -srH -aQZ +rrr +pbg +tqD +lXn aof -aSS -aTZ -aVk -bMa +sOS +fsQ +kpp +rkE aof -mEH -aOM -aYi -xBn -nZD -aPS -aOM -aOM -aOM -aPS -bdl +uyO +etB +keX +qFP +fRi +unH +etB +etB +etB +unH +dWO apD -bhU -aHD +wlU +nbQ aBR aBR -eTj +quE bhi dbi -mdU -lRu -aMc -aHF -aMg -bjF -bkc -bkc -bkc -blt -lcW -ybK -gRx -ybK -pyt -ybK -lcW -jyf -wGJ -jyf -hre -khK -fpK -vnx -ozi -rMq -ozi -puA -wKr -wKr -wKr -vnx -wKr -wKr -dZC -vnx -puA -puA -xcw -tfi -dJv -erZ -dvE +uDd +gRm +jEd +nyk +cbi +mXb +ebq +ebq +ebq +mtZ +oyq +wCv +ild +wCv +uNd +wCv +oyq +quz +hWc +quz +kBM +mFv +iQE +iwy +cCO +tew +cCO +jHV +jfn +jfn +jfn +iwy +jfn +jfn +ptC +iwy +jHV +jHV +veb +rpy +oiQ +ewT +wHc axX aao aao @@ -58661,51 +49483,51 @@ aao aao aao aao -wog -wog -wog -wog -wog -wog -wog -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -phi -phi -phi -phi -jrD -phi -yfz -phi -phi -sus -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +kxd +kxd +kxd +kxd +kxd +kxd +kxd +dUe +dUe +dUe +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +gfN +gfN +gfN +gfN +dUe +gfN +gks +gfN +gfN +ivC +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -58733,55 +49555,55 @@ aao aao aao aao -wpf -akZ -aad -aad -aad -aad -aad -aao -aao -aao -aao -aao -aao -aao +dHu +oIr +nmo +nmo +bPi +pRP +hUS +tHO +uct +hxk +pRP +kku +acP acP acP -asc +gNc +jGz acp -xyu -afT -agE -afS +qNc +qhY +dbn +kzS acp -aiH -afT -ajG -akk +eRG +qhY +rVq +bjr aer -agB +dhl ahm -ahj +bOy acp acp acp -alX -aqD -aqD -aqD -aqD -aqD +acp +lHB +fha +fha +fha +jGz alu -auS -avA -aqw -awW -avA +dYX +jzZ +oYI +rkz +sWG alu alu -azH +gvD alu alu alu @@ -58793,49 +49615,49 @@ alu alu alu alu -aHF -aHF -aHF +nyk +nyk +nyk apC -aOM -aOM -aPP -aRb +etB +etB +qzo +smA aof aof aof aof aof aof -mEH -aOM -vpx +uyO +etB +iHR aFd -khP -aZW -aOK -bbk -aOK -aPS -bdp +iyK +qHC +hQV +lxi +hQV +unH +dpq apD -aHF -aHD +nyk +nbQ aBR aBR aBR bhi bhi auW -unC -aMc -aHD -eRI +pnG +ukV +nbQ +eaj ofX -bjy -bjy -bjy -blr +ggg +ggg +ggg +qph axX axX axX @@ -58846,28 +49668,28 @@ axX axX axX axX -pjw -udi -vIP -jri +hVZ +dKQ +jbg +epa ayZ -tCS +dFN ayZ -fiR -cXQ -jvT -fiR -ens -nBP -eYW -nBP -eYW -ens -fiR -fiR +iVS +rYv +kKY +iVS +lWo +bWg +bVB +bWg +bVB +lWo +iVS +iVS ayZ -fiR -iiP +iVS +dXa axX axX aao @@ -58880,15 +49702,15 @@ aao aao aao aao -wog -wog -wog -jrD -jrD -jrD -jrD -phi -jrD +kxd +kxd +kxd +dUe +dUe +dUe +dUe +gfN +dUe rnc rnc rnc @@ -58898,31 +49720,31 @@ rnc rnc rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -phi -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +gfN +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -58950,123 +49772,123 @@ aao aao aao aao -abr -aad -aad -oRs -oRs -aad -aad -aao -aao -aao -aao -aao -aao +ewI +nmo +nmo +wbu +nyK +pRP +gUx +mWk +mWk +wpO +hxk +kku acP acP acP -asc +vFO +aao acp -afo -afT -agF -ahp +yeY +qhY +bYr +xEO acp -aiI -afT -afT -akk +wqL +qhY +qhY +bjr aer -agz +urK ajL -ahj -any -aoh -aoU -alX -aqD -aqD -aqD -aqD -aqD +bOy +cyZ +iwc +jkJ +acq +lHB +fha +fha +fha +jGz alu -auQ -avA -awk -awW -axC +fSx +jzZ +mqH +rkz +sWG alu -ayV +uOP ayV ayV alu -aHF -aMg -aMg -aMg -aBS -aMg -aMg -aMg -aMg -aMg -aMg -aHF +nyk +cbi +cbi +cbi +rtm +cbi +cbi +cbi +cbi +cbi +cbi +nyk apC -aOM -aOM -aPP -aQZ +etB +etB +qzo +lXn aof -aST -aRd -aVl -aRd -bcJ -aSW -aOM -aYk -dBm -pxH -aZX +kQo +nFe +jyY +nFe +puv +vjZ +etB +llo +pvD +ltF +fiG aof aof aof -bcK +uRG aof aof apC -aHD +nbQ aBR aBR aBR -aVo -aIn -xPg -bhL -aMc -aHD -aIn -giY -bjy -bjy -bjy -blu -bjx -bmA -bjx -bjx -bjx -bjx -bjx -bjx -bjw +lzH +ool +nYx +mnw +ukV +nbQ +ool +wAM +ggg +ggg +ggg +vTS +bwv +pFO +bwv +bwv +bwv +bwv +bwv +bwv +dhp axX axX -syn -vIP -eWL +hDD +jbg +cKN axX axX axX @@ -59098,24 +49920,24 @@ aao aao aao aao -jrD -jrD -jrD -bzo -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +hnm +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao aao aao aao -cOl +xCX rnc rnc rnc @@ -59125,21 +49947,21 @@ rnc hAj rnc rnc -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -59167,58 +49989,58 @@ aao aao aao aao -abs -aad -alJ -vRR -akX -hKM -aad -aao -aao -aao -aao -aao -acP +gpn +nmo +nmO +whA +nyK +hxk +gUB +tCL +iVp +eNs +hUS +kku acP acP -acP -asc +gNc +fha +aao acp -afp -afT -agG -akM +whe +qhY +cYT +oAk acp -aiJ -afT -ajH -afS +tNJ +qhY +bLt +kzS aer -agz +urK ahm -ahj +bOy aer -aoi -aoV -alX -aqE -aqE -aqE -aqE -atu -alu -auT -avB -awm -awX -axE +sft +rlg +acq +lHB +fha +fha +lyd +pLw alu -ayW +eHT +wxN +eFV +hdf +buN +nFL +gWt ayV ayV alu -aHD +nbQ aBR aBR aBR @@ -59229,73 +50051,73 @@ aBR aBR aBR aFL -aMc +ukV apC -aNG -aOI -aPQ -aRc +cSF +ewk +pHi +tee aof -aSU -aUa -aXM -aOK -aOK -aOK -hkY -aYl -aYS -aOM -aZX +pZT +giU +uJA +hQV +hQV +hQV +dxC +vUj +ssp +etB +fiG aof -aOO -bbV -bcL -aOO -bdP +mQi +ptv +vme +mQi +eMy apC -aHD +nbQ aBR aFL aBR -aVo -aIn -xPg -aIn -aMc -aHD -aIn -xtB -bjy -bjy -bjz -bjy -bjy -bmB +lzH +ool +nYx +ool +ukV +nbQ +ool +kOz +ggg +ggg +lOn +ggg +ggg +emb bjA bjA bjA bjA bjA bjA -blu -bjw +vTS +dhp axX -gXV -lOO -kLB -xZb -xZb -xZb -xZb -xSh +psN +cOy +sZU +gum +gum +gum +gum +khO axX -bjY +dBc bjA bjA bjA -bjH -bjy +mrt +ggg azO azO azO @@ -59314,15 +50136,15 @@ aao aao aao aao -jrD -jrD -jrD -sqj -jcR -jrD -jrD +dUe +dUe +dUe +rIW +uQO +dUe +dUe rnc -vqY +itK aao aao aao @@ -59342,21 +50164,21 @@ aao aao aao aao -uXW +qBf aao aao -cOl -vqY +xCX +itK aao -cOl -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD +xCX +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -59385,45 +50207,45 @@ aao aao aao aao -abr -alJ -akX -akX -cJG -aad -aao -aao -aao +ewI +nmO +fha +bPi +hxk +gUB +tCL +tCL +bKR +hUS +kku +acP +gNc +fha aao aao -acP -acP -acP -acP -asc acp -afo -afT -agH -ahr -aih -ahr -ahr -ajI -akm -aih -agC +yeY +qhY +cUF +hKp +iYb +hKp +hKp +mKR +eMQ +iYb +uFB amo -ahj +bOy acp aer aer -alX -alu -alu -alu -alu -alu +acp +lHB +fha +fqv +acP +jGz alu alu alu @@ -59435,7 +50257,7 @@ alu alu alu alu -aHD +nbQ aBR aBR aBR @@ -59446,48 +50268,48 @@ aBR aBR aBR aBR -aMc +ukV apC -aNH +lbz aof aof aof aof -aSV -bdl +qmC +dWO aof aof kRK kRK aof aof -aYT -aOM -aZX +xVw +etB +fiG aof -bbl -bbW -bcM +ibz +cNe +uOd aof aof apC -aHD -aIm +nbQ +bRg aBR aBR -aVo -aIn -xPg -aIn -aMc -aHD -aIn -giY -bjy -bjy +lzH +ool +nYx +ool +ukV +nbQ +ool +wAM +ggg +ggg bjA -blv -bkp +xgq +ovG bjA bjA bjA @@ -59496,34 +50318,34 @@ bjA bjA bjA bjA -blq +wat axX -mnb -fiR -wqG -glN -dAM -olV -ltf -cse +dIA +iVS +cqW +kkS +hOv +qaa +taj +kvT axX -bjY +dBc bjA bjA -bkC -bjy -btD +vSB +ggg +iAr azO -ydn -ydn -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +pud +pud +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe qPT aao aao @@ -59532,12 +50354,12 @@ aao aao aao aao -jrD -vqY +dUe +itK ibP -tRI -jrD -oxp +wYt +dUe +xGO aao aao aao @@ -59566,14 +50388,14 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD +wYt +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -59602,57 +50424,57 @@ aao aao aao aao -abr -alJ -akX -akX -akY -hKM -aao -aao +ewI +nmO +fha +bPi +pRP +grY +vIu +vIu +xZy +hxk +gjz +acP +oSp aao aao aao -acP -agq -ahe -ahe -ahS acp -afq -afS -afT -afS +jnp +kzS +qhY +kzS acp -aiK -afS -ajJ -akn +edb +kzS +fJn +iXA acp -agz +urK amp -and -anz +uqs +dnv aoj aoj -apH -aqG -alF -alF -alF -alF -alF -alF -alF -alF -alF -axF -asf -alF -akw -alF -alF -axW +lrc +fnC +fha +fqv +acP +hFy +ixz +ixz +ixz +ixz +ixz +jHY +xCo +ixz +fsV +ixz +ixz +fec aBR aBR aBR @@ -59663,45 +50485,45 @@ aBR aBR aBR aBR -aMc +ukV apD -aNI -aRd -bcI -bcJ -aRY -aSW -bdl +sRW +nFe +ufJ +puv +wdE +vjZ +dWO kRK -aVT -aWD -aWD -aXN +wfA +bqw +bqw +fNf kRK -aWH -aOM -aZY +oKm +etB +ufs aof -bbm -aJb -bcN +wgR +xeX +msB aof -gtR +oLd apC -aHD -aIn -aIm +nbQ +ool +bRg aBR bhi bhi auW -dgy -aMc -aHD -dgy +qjX +ukV +nbQ +qjX ofX -ssI -bkp +oTR +ovG bjA bjA bjA @@ -59713,7 +50535,7 @@ bjA bjA bjA bjA -blq +wat axX axX axX @@ -59721,26 +50543,26 @@ axX axX axX axX -tGM -bXA +dzw +cfj axX -bjY +dBc bjA -bkC -bjy -bjy -bjy +vSB +ggg +ggg +ggg azO -ydn -ydn -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +pud +pud +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe qPT aao aao @@ -59748,13 +50570,13 @@ aao aao aao aao -bye +kCU ibP ibP -tRI +wYt rnc rnc -vqY +itK aao aao aao @@ -59783,14 +50605,14 @@ aao aao aao aao -cOl -jrD -jrD -jrD -jrD -jrD -jrD -jrD +xCX +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -59804,58 +50626,58 @@ aaa (91,1,1) = {" aaa aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab aao -abs -abs -wMp -alH -akX -hKM aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gpn +gpn +wCE +nyK +pRP +hxk +hUS +hxk +hxk +pRP +gjz acP -asc +jGz acp acp acp acp acp acp -agI +wTj acp acp acp aer -ajK +teJ aer acp -alv +ief amq -ahj -aeJ +bOy +vDc adS aoW -aeJ -aqH -aqL -arZ +vDc +kWF +fha +nQF amD acP acP @@ -59880,44 +50702,44 @@ aBR aBR aBR aBR -aMc +ukV apD -aUd -aXM -aPS -aOM -aOK -aOK -aUc -aYm -aVU -aOM -aOM -aXO +ciq +uJA +unH +etB +hQV +hQV +kJO +buF +iNH +etB +etB +pFq kRK -aNL -aOM -aZX +oZb +etB +fiG aof -fhy -aZA -bcN -kIv -aOO +nxU +oxe +msB +tGQ +mQi apC -aHD -beY -aIp +nbQ +mOq +wdv aBR bhi bhi wGr aBR -aMc -aHD -aIn -bjD -bjy +ukV +nbQ +ool +mpO +ggg bjA bkq bjA @@ -59930,34 +50752,34 @@ bjA bjA bjA bjA -blu -bjx -bjx -bjx -bjw +vTS +bwv +bwv +bwv +dhp ayr -vsb -mBs -xcw -cse +gDl +eZD +veb +kvT ayr -bjY -bkr -bjy -bjy -bkd +dBc +gvw +ggg +ggg +pgx azO azO azO -fJH -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +fHi +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp aAp aAp @@ -59998,15 +50820,15 @@ aCe aCe aCe aCe -yfe +pfL aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -60020,35 +50842,35 @@ aaa "} (92,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abr -alJ -akX -akX -hKM aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +nmO +vdJ +cIe +cIe +kam +kam +kam +cIe +pbv acP -asc +jGz acp adQ aep @@ -60063,16 +50885,16 @@ adS ajL adS acr -agz +urK ahn -aid +wDf acp acp acp acp -aqH -aqL -asa +kWF +fha +lyd acP acP acP @@ -60097,45 +50919,45 @@ aBR aBR aBR aBR -aMc +ukV apC aof aof -aPS -aRe +unH +lLM aof aof aof aof -aVV -aOM -aOM -aOM -aYm -aOM -aOM -aZX +rQO +etB +etB +etB +buF +etB +etB +fiG aof aof aof aof aof -fST +flu apC -aHD -aWJ +nbQ +kAH aBR aBR aBR aBR aBR aBR -aMc -aHD -aIn -bjD -bjy -bjB +ukV +nbQ +ool +mpO +ggg +gqX bjA bjA bjA @@ -60149,32 +50971,32 @@ bkq bjA bjA bjA -bjH -bjy -blq +mrt +ggg +wat ayr -jcm -ooC -dJv -fCd +vqb +tJy +oiQ +ceF ayr -bjw -bun -btD -btD -blq -vpY -jBq -vpY -siu -bvH -ihW -epe -kdr -kdr -kdr -kdr -kdr +dhp +rGv +iAr +iAr +wat +mOv +oiT +mOv +uhB +pmX +dYP +pXP +cJe +cJe +cJe +cJe +cJe aAp bwK bxc @@ -60186,23 +51008,23 @@ byg bxd bxc aBE -bzp -ebZ +noN +jDm aAp -bAf -eSd -bAN +gSA +lrB +wzm aCe -bBb -bBq -bBq -bBJ +reX +yhX +yhX +cBK aCe -bCa -bCo -bCx -bCx -bCx +xIp +olj +klq +klq +klq aCe dyv bDk @@ -60212,19 +51034,19 @@ dyv bDk dyv aCe -bvO -bEf +lsL +kbM jJB aCe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -sus +dUe +dUe +dUe +dUe +dUe +dUe +dUe +ivC aao aao aao @@ -60237,35 +51059,35 @@ aaa "} (93,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abr -aad -akZ -akZ -aad aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nmo +oIr +oIr +wCE +fqv acP acP -asc +acP +acP +acP +jGz acp adR aeq @@ -60274,152 +51096,152 @@ aeq adk adk adS -aii +xMw adS adS ahm adS -akR -agz +lCQ +urK amr -aic +xkb aer -afS -bNE +kzS +jLy acp -aqH -arp -agq -ahe -ahe -ahe -ahe -ahe -ahe -ahe -ahe -atl -ahe -ahe -auE -ahe -aFM -aCN -aCN -aCN -aFM -aCN -aHC +kWF +fqv +oSp +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +hay +eKZ +eKZ +mJh +eKZ +hbB +tdM +tdM +tdM +hbB +tdM +jQu aBR aBR aBR aBR -aMc +ukV apD -aNK -aXL -aPS -aOM +slP +ukS +unH +etB aof aTa aTa aof -oWe -aOM -aXl -aXP +vwM +etB +pNz +kxP aof -aNL -aOM -szi +oZb +etB +cCI aof -aNQ -aOO -aOO -aOO -aOO +ccs +mQi +mQi +mQi +mQi apC -aHD -aWJ +nbQ +kAH aBR aBR aBR aBR aBR bhO -biY -dzY -bpT -bjG -bjy -bjy -bkr -bjB +uWv +jLu +bGR +fBu +ggg +ggg +gvw +gqX bjA -bkC -bkr -bkr -bkr -bkr -bkr -bjB +vSB +gvw +gvw +gvw +gvw +gvw +gqX bjA -bkC -bkr -bjy -bjy -blq -gAe -dJv -dJv -dJv -hgr -gNj -buo -buo -buJ -buJ -buo -bvz -dXu -bvz -qLV -oXr -oXr -qLV -qLV -qLV -qLV -bwc -qLV -bwG -bwL +vSB +gvw +ggg +ggg +wat +rNj +oiQ +oiQ +oiQ +vnp +gyD +ncw +ncw +nJY +nJY +ncw +dGv +fWu +dGv +klH +eFQ +eFQ +klH +klH +klH +klH +wXE +klH +xZV +tlf bxc bxd -bxB +xcT bxc bxU bxc -byw +ldc bxd aBE -bzp -ebZ +noN +jDm aAp -bAg -bAh -bAg +qmj +uUu +qmj aCe -bBc -bBr -bBs -aKi -bBS -aKi -aKi -aKi -aKi -tDl +qWH +tJA +coz +skh +bqh +skh +skh +skh +skh +xTO aCe dyv dyv @@ -60430,17 +51252,17 @@ dyv dyv aCe dyv -bEg -bEk -bEr -phi -sus -jrD -tRI -jrD -jrD -jrD -jrD +bYg +fQI +aPf +gfN +ivC +dUe +wYt +dUe +dUe +dUe +dUe aao aao aao @@ -60454,35 +51276,35 @@ aaa "} (94,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -aad -aad -aad -aad -aad aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nmo +nmo +nmO +fqv acP acP -asc +aao +aao +acP +jGz acp adS adS @@ -60497,16 +51319,16 @@ adS ahm adS acr -agz +urK ahm -aic -anx -afS -akM +xkb +cUU +kzS +oAk acp -aqH -arp -asc +kWF +fqv +jGz amn amV amV @@ -60526,117 +51348,117 @@ amn amn amn amn -aHD +nbQ aBR aBR aBR aBR -aMc +ukV apD -aNL -aOM -aPS -aOM -aRZ +oZb +etB +unH +etB +kun aTa aTa -aRZ -aVU -aWE -aXm -vND +kun +iNH +sTV +dzU +pCf kRK -aYV -aOM -szi +skF +etB +cCI aof -aOO -bbY -bcO -aOO -aOO +mQi +dee +wMC +mQi +mQi apC -aHD -aIn -aIm +nbQ +ool +bRg aBR aBR aBR aBR bhP -aMc -gpt -aKt -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -blq -tGM -dJv -dJv -kfV -hvJ -tGM -bjw -bjw -bjx -bjx -bjw -vpY -jBq -vpY -kdr -bvQ -eAU -kdr -kdr -kdr -kdr -kdr -kdr -bwH -bwM +ukV +wCZ +wZL +ggg +ggg +ggg +ggg +ggg +gvw +ggg +ggg +ggg +ggg +ggg +ggg +ggg +gvw +ggg +ggg +ggg +ggg +wat +dzw +oiQ +oiQ +sgq +vAQ +dzw +dhp +dhp +bwv +bwv +dhp +mOv +oiT +mOv +cJe +dQK +omc +cJe +cJe +cJe +cJe +cJe +cJe +kNW +wFd bxd bxd -bxC +vtC bxc -bxV +kRX byh byx byg aBE -bzp -bzw +noN +jNL aAp -bAh -bAh -bAh +uUu +uUu +uUu aCe -bBc -aKi -aKi -bBK +qWH +skh +skh +xSX aCe -bCb -qTC -pvg -aKi -eAB +eIX +xei +uBr +skh +vwp aCe dyv dyv @@ -60647,17 +51469,17 @@ dyv dyv aCe dyv -bwj -bwx +xYw +tQJ vvj -tRI -jrD -jrD -jcR -jrD -iRG -jrD -jrD +wYt +dUe +dUe +uQO +dUe +huc +dUe +dUe aao aao aao @@ -60671,71 +51493,71 @@ aaa "} (95,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abr -aad -aad -aad -oRs aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +nmo +nmo +nmo +xCL +fqv +acP acP acP -asc +aao +acP +jGz acp -adT -adT -adT -adT -afV -adT -adT +ecF +ecF +ecF +ecF +jaJ +ecF +ecF aer -aiM +bWv adS ajL akp acr -alw -ams -ane +pWb +dAX +wKW aer -afS -aoT +kzS +hTw acp -aqH -aqL -asc +kWF +fha +jGz amn -atB -atY -atY -atY -atY -atY -atY -atY -atY -azM -atY +hpD +plp +plp +plp +plp +plp +plp +plp +plp +hwc +plp amn atn atn @@ -60743,139 +51565,139 @@ atn atn atn amn -aHD +nbQ aBR aBR aBR aBR -aMc +ukV apC -aNM -aOM -aPS -aUb +dRO +etB +unH +nZZ aof -aSZ +ijR aTa aof -upy -aWF +tsC +meH aof kRK aof -aYU -aOM -aZX +qUH +etB +fiG aof -djr -bbZ -bcP -bdq -drW +rlK +uqq +wAv +vxu +mOn apC -aHD -aIn -aIn -aIm +nbQ +ool +ool +bRg aBR aBR aBR bhP -aMc -aHD +ukV +nbQ aBR -bjH -bkd -bks -bks -bks -bks -bkb -bkb -bkb -bkb -bkb -bks -bks -bkb -bkb -bkb -bkb -bkb -bjw +mrt +pgx +eyz +eyz +eyz +eyz +bRo +bRo +bRo +bRo +bRo +eyz +eyz +bRo +bRo +bRo +bRo +bRo +dhp ayr -qBt -dJv -dJv -cse +tlT +oiQ +oiQ +kvT ayr -bjw -bjY -bjy -bjy -blq -vpY -jBq -vpY -siu -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +dhp +dBc +ggg +ggg +wat +mOv +oiT +mOv +uhB +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp bwN bxe bxd -bxB +xcT bww -bxV +kRX bxc -byy +cGX byH aBE -bzq -ebZ +sBw +jDm aAp aBy -bAw +mMZ aBy aCe -bBd -aKi -aKi -bBK +sfK +skh +skh +xSX aCH -bCc -cvi -bCy -eHA -bCM +rML +yaC +sRC +rLQ +tLD aCe aCH -vty +wRw aCH aCe aCH -vty +wRw aCH aCe aCH -vty +wRw fin vvj -jcR -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD +uQO +dUe +dUe +dUe +xGO +dUe +dUe +dUe +dUe aao aao aao @@ -60888,35 +51710,35 @@ aaa "} (96,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abr -abN -aad -tLt -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +lJI +nmo +xCL +fha +fha +hlk +acP +acP +acP acP -asc +jGz acp acr aer @@ -60926,33 +51748,33 @@ acp acp acp acp -aiN +akr adS ajL akq acr acr -amt +uYr acr acp acp acp acp -aqH -aqL -asc +kWF +fha +jGz amn -aty -atY -aoF -aty -atX -aAB -aty -ajl -atY -aty -atY +jlY +plp +kJv +jlY +nrI +nKd +jlY +kGk +plp +jlY +plp amn aua aua @@ -60960,29 +51782,29 @@ aua aEK aFN amn -aHD +nbQ aBR aBR aBR aBR -aMc +ukV apC -aNN -aOM -aPS -bdl +hiu +etB +unH +dWO aof sLS aUe aof -aVX -aWG +xFD +ffB kRK -aNK -mST -iDT -nuw -aZX +slP +qYi +iCL +iFr +fiG aof aof aof @@ -60990,27 +51812,27 @@ aof aof aof apC -beB -beZ -bfI -bfI -bfI -bfI -bfI -bhQ -aHF -aHF -aFM -aFM -aHF +gyn +tXc +twq +twq +twq +twq +twq +nhP +nyk +nyk +hbB +hbB +nyk awp awp axr axr axr awp -jYE -nrV +rQd +lFq awp awp awp @@ -61021,28 +51843,28 @@ awp awp awp ayr -dYa -dJv -dJv -cse +jOd +oiQ +oiQ +kvT ayr -bjw -bjY -bjy -bjy -blu +dhp +dBc +ggg +ggg +vTS azO azO azO -lms -ihW -ydn -epe -kdr -kdr -kdr -kdr -kdr +uDS +dYP +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp bwO bxf @@ -61054,46 +51876,46 @@ bxf bxf byI aBE -bzp -bzx +noN +iyw aAp -bAh -bAh -bAO +uUu +uUu +cpY aCe -bBe -aKi -aKi -bBK +pFy +skh +skh +xSX aCH -bCd -qTC -jgw -eEm -aKi +eXz +xei +dZX +nqi +skh aCL -bDb -aKi -bDb +xMf +skh +xMf aCL -bDb -aKi -bDb +xMf +skh +xMf aCL -bDb -aKi +xMf +skh vvj -mUy -jrD -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jrD +jQF +dUe +dUe +dUe +dUe +xGO +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -61105,48 +51927,48 @@ aaa "} (97,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abs -aad -alJ -akX -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gpn +nmo +nmO +fha +fha +fha +fqv +acP +acP +acP acP -asc +jGz acp -rIB -aes -aeO -adW -afW +diw +cJu +mng +hhf +bPd aer ahs adS ahk adk ajL -akr +aiN acr adS ajL @@ -61155,21 +51977,21 @@ anB alx alx acr -aqH -aqL -asc +kWF +fha +jGz amn -atY -atY -jpT -aty -atB -xxV -aty -atB -mhF -azN -atY +plp +plp +dyr +jlY +hpD +tAP +jlY +hpD +dRR +pUq +plp amn aua aua @@ -61177,17 +51999,17 @@ aua aua aws amn -aHD +nbQ aBR aBR aBR aBR -aMc +ukV apD -aWH -aOM -aPS -aRh +oKm +etB +unH +ryn aof aof aof @@ -61195,75 +52017,75 @@ aof kRK kRK aof -aWH -xej -ole -eSN -aPS -baI +oKm +kyb +ktd +tRE +unH +whH aYO bca bcQ bdr nky apC -beC -aNw -aNw -aNw -aNw -aMg -aMg -vis -aHF -aHF -aMg -aMg -aMg +xtW +otF +otF +otF +otF +nyk +nyk +ugL +nyk +nyk +nyk +nyk +nyk awp -wVX -ftq -drF -wIP -bVZ -qoU -pHv -cQO -pHv -pHv -qml -nUT -wYf -uTD -pUY -suJ +qQS +cJj +tVo +uMu +elh +xKV +hdi +twh +hdi +hdi +wOZ +aLj +xuN +lbX +tLe +qCb ayr -dYa -dJv -mCe -cse +jOd +oiQ +uVc +kvT ayr -bjw -bjY -bjz -bjz -bjz -bjz +dhp +dBc +lOn +lOn +lOn +lOn azO meT -vrt -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +dua +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp aAp aAp -bxr +hGv aBy aBy aBy @@ -61271,46 +52093,46 @@ aAp aAp aAp aAp -bzp -ebZ +noN +jDm aAp -bAh -bAx -bAO +uUu +dmh +cpY aCe -bBd -aKi -aKi -bBK +sfK +skh +skh +xSX aCH -bCe -aKi -wPk -qTC -aKi -lLv -aKi -aKi -aKi -bDr -aKi -aKi -aKi -lUd -aKi -qTC -aKi -mUy -jrD -jrD -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jrD +uWi +skh +jAS +xei +skh +ipM +skh +skh +skh +kwO +skh +skh +skh +qUR +skh +xei +skh +jQF +dUe +dUe +dUe +dUe +xGO +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -61322,41 +52144,41 @@ aaa "} (98,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -abr -alJ -akX -alH aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +nmO +fha +sEn +fha +fqv +acP +acP +acP acP -asc +jGz acq -gwY -adW -aeP -afs -adW +rwA +hhf +eEd +dAj +hhf acp adS adS @@ -61372,11 +52194,11 @@ adk alx alx alZ -aqH -aqL -asc +kWF +fha +jGz amn -atZ +dtA amn amn amn @@ -61386,82 +52208,82 @@ amn amn amn amn -atZ +dtA amn -aBT +iXX amn amn amn -aFO +dYo amn -aHD +nbQ aBR aBR aBR aBR -aMc +ukV apD -aNL -aOM -aPV -aRi -aXL -aXL -aUf -aVm -aOL -aOL -aOL -aYW -xej -tBD -eSN -aZZ -upV +oZb +etB +sLn +nAa +ukS +ukS +xOr +rid +uTP +uTP +uTP +quA +kyb +hik +tRE +esj +khM baJ -bcb -bcR -bcc +fNV +cyw +eyI toA apC -aTh -aIn -aIn -aIn -aKt -aKt -aKt -bhS -biY -dzY -dWg -dWg -bke -cQO -pHv -jOh -sUD -wsu -vJN -hzk -nPu +oBx +ool +ool +ool +wZL +ukV +nyk +gIZ +lnR +lnR +lnR +lnR +jIK +twh +hdi +njF +lWF +eJN +kSB +uhf +vsj awp awp awp -nlA -fmX -twC -fmX -fmX -fmX -mIc -xcw -dJv -dJv -cse +hbU +end +fvw +end +end +end +sdY +veb +oiQ +oiQ +kvT ayr -bjw -bjY +dhp +dBc bkq bjA bjA @@ -61469,65 +52291,65 @@ bjA azO meT meT -fZm -ydn -epe -kdr -kdr -bvZ -kdr -kdr +vrO +pud +pXP +cJe +cJe +sFJ +cJe +cJe aAp -bwP -bDi -bxs -bxE -cqj -bxW -byi -cqj -byJ +lwC +rUk +dTI +lFb +mre +lgZ +aWr +mre +shU aAp -bzp -bzy -bzQ -bAh -bAy -bAP +noN +wln +lwL +uUu +qbw +wpu aCe -bBc -aKi -bBr -bBK +qWH +skh +tJA +xSX aCH -bCf -aKi -xZf -qTC -pvg -bCV -qTC -qTC -qTC -nXw -qTC -qTC -qTC -nUK -qTC -aKi -aKi +rMb +skh +xuW +xei +uBr +hFr +xei +xei +xei +ulu +xei +xei +xei +ccB +xei +skh +skh vvj -tRI -jrD -jrD -jrD -oxp -jrD -jcR -jrD -jrD -jrD +wYt +dUe +dUe +dUe +xGO +dUe +uQO +dUe +dUe +dUe aao aao aao @@ -61539,42 +52361,42 @@ aaa "} (99,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -abr -qmY -wMp -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +ykQ +wCE +fha +fha +fha +hlk acP -asc +acP +acP +jGz adG -adW -aet -akA -adW -adW -agJ +hhf +brQ +lLZ +hhf +hhf +nFT adS adk adS @@ -61582,16 +52404,16 @@ aje ajM adS acr -aly -amv -aly +eGP +gZT +alx adS -aly -aly +eGP +eGP acr -aqK -arq -asd +wRD +fSR +kWP asI ayY ayY @@ -61602,83 +52424,83 @@ ayY axG ayY ayY -joa +qAC asJ asJ aua asJ aDQ -aEL +dBT aws amI -aHD -aIm +nbQ +bRg aBR aKr aBR -aMc +ukV apC -aUd -aYL -aYM -aOK -aOK -aOM -aOK -aOK -aOK -aYL -aXM -aOK -wHx -eoU -eSN -bdl +ciq +nTd +ciu +hQV +hQV +etB +hQV +hQV +hQV +nTd +uJA +hQV +wqC +qjU +tRE +dWO aof bbo -bcc -bcS -bcc +eyI +fur +eyI bQe apD -aTh -aIn -aKt -aIp +oBx +ool +wZL +wdv aBR -aWI -aFM -aFM -aHF -aHF -aFM -aFM -aFM +ukV +nyk +nyk +nyk +nyk +nyk +nyk +nyk awp -oLA -jfv -jfv -jfv -fmX -nUT -nPu +vRE +hPy +hPy +hPy +end +aLj +vsj ayF -bVX -cgv -wzI -dIx -dIx -tKX -dIx -sPc -oMT -jyf -jyf -ivf -ifg +sFs +loe +urY +fRh +fRh +iAL +fRh +pcR +kvs +quz +quz +eKO +kSp ayr -bjw -bjY +dhp +dBc bjA bjA bjA @@ -61686,65 +52508,65 @@ bjA azO meT meT -vrt -ydn -epe -kdr -kdr -kdr -kdr -kdr +dua +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp -bwP -bxh -bxt -bxF -bxF -bxF -bxv -byz -byK +lwC +hXK +bsM +msl +msl +msl +wPK +xSN +eZf aAp -bzp -fyp +noN +vVp aAp aAp aAp aAp aCe -bBc -bBs -aKi -bBK +qWH +coz +skh +xSX aCH -bCg -bCp -xZf -qTC -qTC -bCW -bDc -qTC -bDc -kxi -bDc -qTC -bDc -bDS -wni -aKi -bDc +efT +fMa +xuW +xei +xei +vuE +evW +xei +evW +dJZ +evW +xei +evW +vDn +tBw +skh +evW fin ibP -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -61756,41 +52578,41 @@ aaa "} (100,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -abr -abr -alJ -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +ewI +nmO +fha +fha +fha +fqv +acP acP -asc +acP +jGz acq -adX -aeu -adc -afs -adW +iIV +srl +ffk +dAj +hhf acp adS adk @@ -61799,16 +52621,16 @@ ajf ajN akt acr -alz -amw +bEY +nWl adS anC -alz -alz +bEY +bEY amb -aqM -aqL -ase +lHB +fha +raW asJ asJ aua @@ -61828,74 +52650,74 @@ asJ awn aws amI -aHD -aIn -aIm +nbQ +ool +bRg aBR -aLd -aMc +djU +ukV apC aof -aON +fEa aof aof aof -aON +fEa aof aof aof -aON +fEa aof aof -aYo -rpI -qyi -bdl +ouo +iIb +uiX +dWO aof bbp -bcc -bcT -bcc +eyI +dKA +eyI aYO apD -aTh -aWJ +oBx +kAH aBR aBR aBR -aMc -erf -auX -auX -auX -auX -erf -aHF +ukV +nyk +cbi +uNy +uNy +cbi +nyk +nyk awp -vRf -fmX -fmX -gyf -rpS -nUT -nPu +pQD +end +end +uWq +owN +aLj +vsj ayF -bVX -cgv -xeM -fmX -fmX -ltK -lLr -nPu +sFs +loe +rTB +end +end +nuW +unf +vsj ayr ayr ayr ayr ayr ayr -bjw -bjY +dhp +dBc bjA bjA bjA @@ -61904,65 +52726,65 @@ azO meT meT meT -fZm -epe -kdr -kdr -kdr -kdr -kdr +vrO +pXP +cJe +cJe +cJe +cJe +cJe aAp -bwP -bxi -bxu -bxu -bxu -bxX -byj -byA -byK +lwC +vKN +nzB +nzB +nzB +jZY +oqn +xEr +eZf aAp -bzp -bzw +noN +jNL aBE -bAi -bAz -bAQ +rnI +nkK +piq aCe -bBf -bBt -bBt -bBL +uDa +qEB +qEB +oqZ aCH -aPg -uGz -taf -uGz -bCN +ebN +xQP +gRw +xQP +tFs aCL -bDd -aKi -bDd +ehF +skh +ehF aCL -bDd -aKi -bDd +ehF +skh +ehF aCL -bDd -aKi -bDd +ehF +skh +ehF aCe aao -cOl +xCX rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -61973,41 +52795,41 @@ aaa "} (101,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -abr -abr -tLt -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +ewI +xCL +fha +fha +aao +fha +hlk +acP acP -asc +jGz acp -adY -jGn -adW -adW -adW +tgo +clW +hhf +hhf +hhf aer adS adS @@ -62016,16 +52838,16 @@ ajg gAy akt acr -alA -amx +oNy +usR adS anD -alA -alA -acr -aqM -aqL -ase +oNy +oNy +nIV +lHB +fha +raW amn amn amn @@ -62044,107 +52866,107 @@ ayY aAC aAC aFP -aGF -aHD -aIn -aIn -aKl -aIn -aMc +nBm +nbQ +ool +ool +gIA +ool +ukV apC -aNO -aOO -aPW +qhG +mQi +oau aof -bdm -aOO -vOs +mfk +mQi +rGa aof -xAp -aOO -aNO +nLu +mQi +qhG aof -aYp +sga aof -aWH -aUb +oKm +nZZ aof bbq bcd bcU -bds +sPW aYO apC -aTh -aIn -aKl -aIm +oBx +ool +gIA +bRg aBR -aMc -auX -gpR +ukV +nbQ +wgk gpR gpR -gpR -auX -bkf +wgk +pnt +itF awp -rmy -men -gMt -ohV -sFO -gMt -elf +rEY +qpy +dyn +tfE +sKk +dyn +jEU ayF -bVX -cgv -uEB -nUT -jIf -knX -mWR -flk +sFs +loe +hmC +aLj +fBg +lLV +eAr +cMn awp -bjw -bjx -bjx -bjx -bjw -bjw -bjY +dhp +bwv +bwv +bwv +dhp +dhp +dBc bjA bjA bjA bjA azO meT -vfI -wZC -ydn -bvW -kdr -kdr -kdr -kdr -kdr +ull +dQO +pud +pTJ +cJe +cJe +cJe +cJe +cJe aAp -nlv -bxj -bDi -bDi -bxL -bDi -byk -bDi -byL +esS +nnh +rUk +rUk +mog +rUk +qGN +rUk +qhK aAp -bzp -bzz -bzR -bAj -rTq -rTq +noN +bIK +wAT +sRq +iAX +iAX aCe aCe aCe @@ -62153,33 +52975,33 @@ aCe aCe aCL aDj -bCz +qKX aDj aCL aCe aCH -vty +wRw aCH aCe aCH -vty +wRw aCH aCe aCH -vty +wRw aCH aCe aao aao aao aao -uXW -jrD -jrD -jrD -jrD -jrD -jrD +qBf +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -62190,35 +53012,35 @@ aaa "} (102,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abq -aad -tLt -akX -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +msD +nmo +xCL +fha +fha +fha +aao +aao +fqv acP -asc +acP +jGz acp acp acp @@ -62239,13 +53061,13 @@ adS adk adk adS -alZ -aqM -arr -asc +acr +lHB +kOU +jGz amI -aty -atY +jlY +plp amn asJ asJ @@ -62261,50 +53083,50 @@ asJ aua aua asJ -cgt -aHD -aIn -aIn -aIn -aIn -aMc +wTz +nbQ +ool +ool +ool +ool +ukV apC -aNP -aOO -aOO +teo +mQi +mQi aof -bdn -aOO -aOO +sUN +mQi +mQi aof -aNP -pdG -qXi +teo +aKR +cIf aof -qWm +hjN aof -aWH -aUb +oKm +nZZ aof xKG aTa bcV bdt baJ -bej -beE -aFM -aFM -aHC +xFe +obH +hbB +hbB +jQu aBR -aMc -auX +ukV +lUv gpR gpR gpR gpR -auX -aHF +uGw +nyk awM awM awM @@ -62316,87 +53138,87 @@ awM awM awp awp -sDk -nrV +vrC +lFq awp awp awp awp awp -bjY +dBc bjA bjA bjA -caD -bjw -bjY +pNx +dhp +dBc bjA bjA bjA bjA azO -wZC -ihW -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +dQO +dYP +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aAp -bwR -bxh -bxv -bxG -bxF -bxF -bxv -byB -byM +ija +hXK +wPK +tbj +msl +msl +wPK +brZ +wly aBy -bzp -bzA +noN +ltQ aBE -byM -ycP -rTq +wly +pqM +iAX aBE -bww +nuu bww bww hkv aCL -bCi -bCq -xZf -bCq -bCO +lkn +ofk +xuW +ofk +nXb aCe -bDe -fWw -fWw +qDb +bBw +bBw aCe -dPs -fWw -fWw +mGM +bBw +bBw aCe -fWw -bDe -fWw +bBw +qDb +bBw aCe aao aao aao aao -uXW +qBf aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aao aao @@ -62407,41 +53229,41 @@ aaa "} (103,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -abr -alJ -akX -akX -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ewI +nmO +fha +fha +fha +fha +fha +aao +fqv +acP acP -ags -alF -alF -alF -alF -alF -ahS +hFy +ixz +ixz +ixz +ixz +ixz +eWe acr ahu adS @@ -62451,19 +53273,19 @@ ajQ akt acr adk -amy -ang -vRS -aok +tOD +bNU +fEv +kKt adk -acr -aqM +alZ +lHB acP -asc +jGz amI -atB -atY -auU +hpD +plp +noM asJ asJ asJ @@ -62474,134 +53296,134 @@ azS amn amn amn -aCQ +wTz +wvj amn amn amn -amn -aHD -aIn -aJm -aKt -aKt -aMc +nbQ +ool +hrt +wZL +wZL +ukV apC -aNQ -aGG -aPX +ccs +qJb +biu aof -pNU -aOO -aNO +kCQ +mQi +qhG aof -aNQ -aOO -aXn +ccs +mQi +lUa aof -aYr +xxz aof -aNJ -aUc +kpW +kJO aof bbr toA aYO fPB bQe -bek -bjZ -aMg -aHF -aHD +mDG +dsB +cbi +nyk +nbQ aBR -aMc -auX +ukV +lUv gpR gpR gpR gpR -auX -aHF +uGw +nyk awM -bkI -bkI -bkI -bkI -bkI -bkI -bkI +xBq +xBq +xBq +xBq +xBq +xBq +xBq awM -sqt -sKD -hzk -nUT -bVZ -cMW -qfc -riI +lFV +mWQ +uhf +aLj +elh +oQs +bMt +vCJ awp -bjY +dBc bjA bjA bjA -blq -bjw -bjY +wat +dhp +dBc bjA bjA -bkd +pgx azO azO azO -fJH -ydn -ydn -epe -kdr -kdr -bwa -kdr -kdr +fHi +pud +pud +pXP +cJe +cJe +nMY +cJe +cJe aAp -bwS -bxi -bxu -bxu -bxu -bxu -bxu -byC -byN -byZ -cqj -bzB +lip +vKN +nzB +nzB +nzB +nzB +nzB +rLC +seI +eeg +mre +dIN aBQ -aNx -bAA -bDi +jNQ +rQb +rUk aBE -gOf +lMF bBv bww bBN aCL -oli -aKi -bCA -bCG -bCP +gQq +skh +hCJ +kEI +pmq aCe -fWw -fWw -fWw +bBw +bBw +bBw aCe -fWw -fWw -bDe +bBw +bBw +qDb aCe -fWw -fWw -fWw +bBw +bBw +bBw aCe aao aao @@ -62611,9 +53433,9 @@ aao aao aao aao -jrD -jrD -jcR +dUe +dUe +uQO aao aao aao @@ -62624,33 +53446,32 @@ aaa "} (104,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -aad -aad -wMp -akX -akX aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +nmo +nmo +wCE +fha +fha +fha +fha +fha +fqv acP acP acP @@ -62658,7 +53479,8 @@ acP acP acP acP -asc +acP +jGz acr ahu adS @@ -62668,20 +53490,20 @@ ajL ajj acr adk -amz -anh -anF -aol +fTY +hBx +gAA +vvf adS acr -aqM +lHB acP -asc +jGz amn -atz -atY +kQJ +plp amn -avE +wTd asJ awY axH @@ -62689,19 +53511,19 @@ asJ asJ azT amn -aBj -aBV -aBk -aDR -aBj -aFQ +lcP +fPh +fkk +fkk +lcP +sBB amn -aHD -aIp +nbQ +wdv aBR aBR aBR -aMc +ukV apC apJ apJ @@ -62717,8 +53539,8 @@ apJ apC apC apC -kmm -mWg +sFB +rRU apC apC apC @@ -62726,99 +53548,99 @@ apC apC apC apC -beF -bfb -aMc -aHD -aIm -aMc -auX -gpR -gpR +gFK +wFp +ukV +nbQ +bRg +ukV +nbQ +wgk gpR -gpR -auX -aHF +diU +wgk +ukV +nyk awM -bkJ -bkJ -bkJ -bkJ -bne -bkJ -bkJ +wdG +wdG +wdG +wdG +qSl +wdG +wdG awM -fFY -uEB +uNE +hmC vwt dlq vwt -fmX -fmX -sKm +end +end +tCn awp -bjY +dBc bjA bjA bjA -blq -bjw -bjY +wat +dhp +dBc bjA bjA -blq -vpY -jBq -vpY -siu -ydn -ihW -epe -kdr -kdr -kdr -kdr -kdr +wat +mOv +oiT +mOv +uhB +pud +dYP +pXP +cJe +cJe +cJe +cJe +cJe aAp -bwT -bxk -bxw -bxH -bxM -bxM -byl -cqj -byO +dbZ +jsr +hxO +jQY +lXE +lXE +joJ +mre +qtv aBy -bzp -bzC +noN +jJf aBQ -vFP -aOP -aOP +rlv +ods +ods aBE -gOf +lMF bww bww bBO aCL -bCk -bCr -taf -bCr -bCQ +lUi +hUU +gRw +hUU +jUZ aCe -fWw -bDl -fWw +bBw +xhn +bBw aCe -fWw -cxi -fWw +bBw +vNN +bBw aCe -dPs -cxi -bDe +mGM +vNN +qDb aCe aao aao @@ -62828,9 +53650,9 @@ aao aao aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aao @@ -62841,41 +53663,41 @@ aaa "} (105,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -abq -aad -aad -aad -wMp -akX -akY aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +msD +nmo +nmo +nmo +wCE +fha +iQO +fha +fha +fqv acP acP +jpC +jUv +jUv +jUv +jpC acP -acP -acP -acP -asc +jGz acr acr acr @@ -62891,12 +53713,12 @@ acr acr acr acr -aqM +lHB acP -asc +jGz amn -aty -atY +jlY +plp amn asJ awo @@ -62906,56 +53728,56 @@ ayp asJ azU amn -aBk -aBW -aCR -aBW -aEM -aBW +fkk +xNw +fjq +xNw +gau +sOa amn -aHD +nbQ aBR aBR aBR aBR -aMd -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aHF -aHF -aMg -aMg -aMg -aMg -aMg -aMg -aMg -beG -aIn -vmm -aHF -aFM -aHF -erf -auX -auX -auX -auX -erf -aHF +iTQ +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +nyk +nyk +cbi +cbi +cbi +cbi +cbi +cbi +cbi +whv +ool +qdF +nyk +hbB +nyk +nyk +tdM +keY +eIv +tdM +nyk +nyk awM awM awM @@ -62965,37 +53787,37 @@ awM awM awM awM -qwA -uEB +vdI +hmC kiT bkU sjU -fmX -eUu -xEV +end +pgr +tUP awp -bjY +dBc bjA bjA bjA -blq -bjw -bjw -bkb -bkb -bjw -vpY -jBq -vpY -kdr -erJ -erJ -kdr -kdr -kdr -kdr -kdr -kdr +wat +dhp +dhp +bRo +bRo +dhp +mOv +oiT +mOv +cJe +pWn +pWn +cJe +cJe +cJe +cJe +cJe +cJe aAp aAp aAp @@ -63007,21 +53829,21 @@ aAp aAp aAp aAp -bzr -bzC +mWy +jJf aBE aBQ aBQ aBQ aBE aBE -bBx +cMH aBE aBE aCL aCL aDj -bCz +qKX aDj aCL aCe @@ -63045,9 +53867,9 @@ aDY aDY aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aao @@ -63058,62 +53880,62 @@ aaa "} (106,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -cJG -aad -aad -abX -aad -akZ -wMp aao aao aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +eaE +nmo +nmo +jrQ +nmo +oIr +wCE +fha +fha +fqv acP acP +uce +gmG +sqw +gtJ +vrI acP -acP -acP -ags -alF -alF -ahS +hFy +ixz +ixz +eWe acr adS ajL akc -akS -adW -amA -ani -aom -aoX -apb +woj +hhf +qEt +oZF +uxA +dHh +hSH acr -aqM +lHB acP -asc +jGz amn -tmH -atY +grP +plp amn asJ awo @@ -63123,14 +53945,14 @@ ayq ayY azV amn -aBl -aBX -amn +ecQ +clu +fkk +fkk amn amn -aBk amn -aHD +nbQ aBR aBR aBR @@ -63147,125 +53969,125 @@ aBR aBR aBR aBR -aVo -aIn -aWJ +lzH +ool +kAH aBR -aMc -aHD +ukV +nbQ aBR aBR -aVo -aIn -aIn -aWJ +lzH +ool +ool +kAH aBR aBR -bfc -vmm -aHF -aMg -aHF -aHF -aHF -aHF -aHF -aHF -aHF -aHF +lSo +qdF +nyk +cbi +nyk +nyk +nyk +nyk +nyk +nyk +nyk +nyk awp -cli -uGG -sdE -cgP -xSr -xSr -xSr -vyl -lOx -uEB +cGV +vjN +hHP +hcO +lpl +lpl +lpl +pQY +olI +hmC vwt bkU vwt -fmX -fmX -vyc +end +end +wyZ awp -bjY +dBc bjA bjA bjA -blu -bjx -bjx -bjx -bjx -bjw -vpY -jBq -vpY -kdr -eAU -bvQ -kdr -kdr -kdr -kdr -kdr -kdr +vTS +bwv +bwv +bwv +bwv +dhp +mOv +oiT +mOv +cJe +omc +dQK +cJe +cJe +cJe +cJe +cJe +cJe aBv -bwU -bwU -bwU -bwU +rfY +rfY +rfY +rfY aBA -oKc -bxY -bxY -bxY -bza -xpl -qZo -bzT -bzT -bAB -sEi -bxY -bxY -xpl -bxY -bxY -bBT -bCl -bzT -qZo -bxY +vRO +bHC +bHC +bHC +ctk +sWH +mqP +tbb +tbb +vzR +tDR +bHC +bHC +sWH +bHC +bHC +mRY +rtM +tbb +mqP +bHC aDv -bCX -bCX -bDm -bCX -bDs -bCX -bCX -iDW -bDT -bDW -bDW -bDW -bDm -bCX -bCX -bCX -bCX -bDm +cSp +cSp +cML +cSp +orZ +cSp +cSp +mSt +jvE +vBi +vBi +vBi +cML +cSp +cSp +cSp +cSp +cML aDY aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aao aab @@ -63275,29 +54097,8 @@ aaa "} (107,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -akX -cJG -oRs -aad -aad -aad -aad aao aao aao @@ -63306,48 +54107,69 @@ aao aao aao aao +aao +aao +aao +aao +aao +aao +fha +eaE +wbu +nmo +nmo +nmo +fVD +fha +fha +fqv acP acP +uce +gmG +eWe +gtJ +vrI acP acP acP acP -asc +jGz acr adS ajR acr -akS -alB -alB -alB -alB -alB -adW +woj +wAI +wAI +wAI +wAI +wAI +hhf acr -aqM +lHB acP -asg +ycL amI -atB -atY -auU +hpD +plp +noM asJ awo dJc axK ayp asJ -aws +jmt amn -aBm -aBW +xqG +vbJ +fkk +fkk +bUX +caY amn -ooP -aEN -aFR -amn -aHD +nbQ aBR aBR aBR @@ -63361,128 +54183,128 @@ aBR aBR aBR aBR -aLd -aKl -aKl -aIn -aIn -aIn -aKl -aMc -aHD -aKl -aKl -aIn -aIn -aIn -aIn -aKl -aKl -aIn -aMc -aHD -aIn -aMc -erf -auX -auX -auX -auX -erf -aHF +djU +gIA +gIA +ool +ool +ool +gIA +ukV +nbQ +gIA +gIA +ool +ool +ool +ool +gIA +gIA +ool +ukV +nbQ +ool +ukV +nyk +cbi +uNy +uNy +cbi +nyk +nyk awp -cli -tOS -fmX -fmX -fmX -bTt -fmX -fmX -mae -uEB +cGV +dHn +end +end +end +cdH +end +end +xlg +hmC kiT bkU sjU -nUT -vMi -ipU +aLj +wOK +qOT azG -btn +dht bjA bjA bjA bjA bjA -bjH -bjy -bjy -blq -vpY -jBq -vpY -siu -ihW -ydn -epe -kdr -kdr -bvZ -kdr -kdr -bwI -bwV -bxl -bwV -bwV -bwI -csC -bxA -bxo -byP -bzb -bzb -bzD -bzU -bxn -bAC -oqM -bAZ -bzb -bzb -bAC -bxn -bzb -bzb -bzb -bzD -bxn -bCR -bCY -bBU -bBU -bDn -qwx -qwx -bDG -fLA -bCY -xzs -bEh -bEh -bEh -bEw -bEA -bEh -bEJ -bCZ +mrt +ggg +ggg +wat +mOv +oiT +mOv +uhB +dYP +pud +pXP +cJe +cJe +sFJ +cJe +cJe +tsj +uAX +wgD +uAX +uAX +tsj +jxs +uRP +iUx +dAB +jjK +jjK +eeB +nME +bJd +eNY +her +rHh +jjK +jjK +eNY +bJd +jjK +jjK +jjK +eeB +bJd +xMo +mVC +nDK +nDK +fAF +glp +glp +fVh +eVS +mVC +iMO +oTU +oTU +oTU +las +kNm +oTU +mmu +wRZ aDY aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aao aab @@ -63492,29 +54314,8 @@ aaa "} (108,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -akX -akX -akX -hKM -aad -aad -abM aao aao aao @@ -63523,31 +54324,52 @@ aao aao aao aao +aao +aao +aao +aao +aao +aao +fha +fha +fha +xpZ +nmo +nmo +nmO +fha +fha +fqv acP acP +uce +eWe +eWe +poT +vrI acP acP acP acP -asc +jGz acr adS ajS -akv -akT -alC -amB -alC -alC -aon -aoY +opU +bWJ +sdg +mzG +sdg +sdg +ohR +iec acr -aqM +lHB acP -ash +wdt amI -aty -atY +jlY +plp amn asJ awo @@ -63557,14 +54379,14 @@ ayp asJ azW amn -aBn -aBW +wLX +qbv +fkk +fkk amn amn amn -aFS -amn -aHD +nbQ aBR aBR aBR @@ -63578,129 +54400,129 @@ aBR aBR aBR aBR -aVn -aFM -aFM -aFM -aFM -aFM -aFM -aHF -baa -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHD -aWJ -aMc -auX -gpR -gpR +gNp +hbB +hbB +hbB +hbB +hbB +hbB +nyk +dMy +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +nyk +nbQ +kAH +ukV +nbQ +wgk gpR gpR -auX -aHF +wgk +pnt +nyk awp -kWl -lOx -nUT -jfv -doc -dIx -sPc -vrA -pHv -hzk +izJ +olI +aLj +hPy +syE +fRh +pcR +bpf +hdi +uhf vwt hag vwt -fwR -oMh -duw +hFu +xxS +ebb azG -btn +dht bjA bjA bjA bjA bjA -bjH -bjy -buc -blu +mrt +ggg +qvn +vTS azO azO azO -lms -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +uDS +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aBv -bwW -bwW -fAb -bwW +qyX +qyX +bsx +qyX aBA -ufB -bya -bya -byQ -xpl -bya -bya -bya -bya -iDL -wfx -bBa -bxo -bBA -qZo -bxo -bBV -xpl -bCs -xpl -xpl -lGt -ioS -ioS -ioS -ioS -bDt -sbQ -ioS -vFS -sbQ -bDX +oPR +dsG +dsG +fKJ +sWH +dsG +dsG +dsG +dsG +pyE +qpa +fQw +iUx +fRz +mqP +iUx +iLj +sWH +jMp +sWH +sWH +iXW +eNL +eNL +eNL +eNL +ixx +pSU +eNL +fSl +pSU +qMk aDX aDv aDv aDv aDv aDX -bEK -bCZ +eqo +wRZ aDY aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -63709,29 +54531,8 @@ aaa "} (109,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -akX -akY -akX -hKM -aad -aad -abV aao aao aao @@ -63741,47 +54542,68 @@ aao aao aao aao +aao +aao +aao +aao +aao +fha +iQO +fha +xpZ +nmo +nmo +xCL +fha +fha +fqv acP acP +raW +eWe +eWe +eWe +lHB acP acP acP -asc -aiQ +acP +jGz +bIE adS adk acr -adW -alB -alB -alB -alB -alB -aoZ +hhf +wAI +wAI +wAI +wAI +wAI +pgp acr -aqN +nAZ acP -ash +wdt amn amn amn amn -avF +nQx awo axc awZ ayp asJ -azX -amn -aBo -aBW -amn -kWA -aEN -aBk +aws +nqu +hMi +xNw +fkk +fkk +bUX +ulC amn -aHD +nbQ aBR aBR aBR @@ -63795,75 +54617,75 @@ aBR aBR aBR aBR -aMc -aHF -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -axW -aIp -aMc -auX +ukV +nyk +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +cbi +fec +wdv +ukV +lUv gpR gpR gpR gpR -auX -aHF +uGw +nyk awp -sTN -nUT -rOJ -pHv -nmK -fmX -fmX -jfv -nFh -vTF -fmX -fmX -nUT -fmX -gif -duw +edX +aLj +nuG +hdi +hmM +end +end +hPy +blT +fgk +end +end +aLj +end +saJ +ebb azG -bjY +dBc bjA bjA bjA bjA bjA -bjH -bub -bub -buc -buc +mrt +gai +gai +qvn +qvn azO meT -vrt -ydn -ydn -epe -kdr -kdr -kdr -kdr -kdr +dua +pud +pud +pXP +cJe +cJe +cJe +cJe +cJe aBv aBv aBv @@ -63873,51 +54695,51 @@ aBv aBv aBv aBv -byR -bxY +fTw +bHC aBv aBw aBw aBw -bAD +opm aBv aBv -bya -bya -qZo -kGm -kGm -bya -bya -bya -bya +dsG +dsG +mqP +kkc +kkc +dsG +dsG +dsG +dsG aDv -bCZ -bDf -bCZ -bCZ -bCZ -bDz -bDH -ctT -sbQ -knN +wRZ +pDn +wRZ +wRZ +wRZ +jOM +wQA +pSQ +pSU +rZy aDv -xfW -xfW -bEx -xfW +fFf +fFf +oZo +fFf aDv -bEK -bEO +eqo +rkV aDY aao aao -jrD -jcR -jrD -jrD -jrD +dUe +uQO +dUe +dUe +dUe aao aab aaa @@ -63926,28 +54748,8 @@ aaa "} (110,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao -akX -akX -akX -hKM -aad -abM aao aao aao @@ -63958,30 +54760,50 @@ aao aao aao aao +aao +aao +aao +aao +fha +fha +fha +xpZ +nmo +nmO +fha +fha +fha +fqv +acP acP +uce +eWe +eWe +gmG +vrI acP acP acP acP -asc -aeJ +jGz +vDc adS adk akc -akS -agt -amC -alB -anH -agt -apa +woj +gZU +sMC +wAI +rPy +gZU +hyc acr -ajT +cZR acP -asc +jGz amI -aty -atY +jlY +plp amn asJ asJ @@ -63990,15 +54812,15 @@ axd asJ asJ azY -aAD -aBp -aBW +nvL +fop +xNw +fkk +fkk amn amn amn -aBk -amn -aHD +nbQ aBR aBR aBR @@ -64012,96 +54834,96 @@ aBR aBR aBR aBR -aMc -aHD -aIn -aIn -aIn -aIn -aIn -aIn -aIn -aKt -aKt -aKt -aIp +ukV +nbQ +ool +ool +ool +ool +ool +ool +ool +wZL +wZL +wZL +wdv aBR aBR aBR -aYK -aKt -aKt -aIp +sfG +wZL +wZL +wdv aBR -aMc -auX +ukV +lUv gpR gpR gpR gpR -auX -aHF +uGw +nyk awp -rIY -xSA -gnk -xSA -uEB -nBE -ydW -dMQ -ydW -fCY -fCY -lLC -ydW -ydW -eNp -duw +qBM +kSK +dom +kSK +hmC +qOq +hIn +nxR +hIn +lNR +lNR +drQ +hIn +hIn +jTq +ebb awp -bjY +dBc bjA bjA nYV bjA bjA -vEU -gke -buc -bud -bvk +iZw +iyy +qvn +hBX +pIZ azO meT meT -vrt -ihW -epe -kdr -kdr -kdr -kdr -kdr +dua +dYP +pXP +cJe +cJe +cJe +cJe +cJe aBw -bwX -ruQ -bxy -bxI -bxO -bxy -byn +pDy +gdz +lxl +pmh +nKB +lxl +tEi aBv -byR -bxY +fTw +bHC aBw -jnR -lst -lst -bAE -bAR +jkR +nHn +nHn +vDC +vhD aBv aBA aCh -cOJ +qRA aCh aBA aBA @@ -64117,24 +54939,24 @@ aDX aDX aDX aDX -bDU -knN +iVL +rZy aDX aDX aDX aDX aDX aDX -bEK -bCZ +eqo +wRZ aDY aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -64143,28 +54965,9 @@ aaa "} (111,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -alH -wpf -aad -aad -abM aao aao aao @@ -64175,69 +54978,88 @@ aao aao aao aao +aao +aao +aao +aao +sEn +dHu +nmo +nmo +nmO +fha +fha +fha +fqv acP acP +uce +eWe +gmG +sqw +vrI acP acP acP -asc +acP +jGz acr ajj adk akc -akS -agO -agO -adW -akS -agO -aCk +woj +hKY +hKY +hhf +woj +hKY +eeT acr -aqM +lHB acP -asc +jGz amI -atB -atY -auU +hpD +plp +noM asJ asJ aua aua awn aua -aws +nxq amn -aBq -aBY +tSG +tSG +lFt +fkk +bUX +ulC amn -aDT -aEN -aBk -amn -aHF -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aOR -aFM -aFM -aFM -aHC +nyk +hbB +hbB +hbB +hbB +hbB +hbB +hbB +ttR +hbB +hbB +hbB +jQu aBR -aMc -aHD -aIn -aXo -aKt -aKt -aKt -aKt -aIp +ukV +nbQ +ool +rgl +wZL +wZL +wZL +wZL +wdv aBR aBR aBR @@ -64250,20 +55072,20 @@ aBR aBR aBR aBR -aWW -auX -gpR +oSM +nbQ +wgk gpR -gpR -gpR -auX -aHF +diU +wgk +ukV +nyk awp awp awp awp awp -eyW +xYz awp awp ayF @@ -64276,82 +55098,82 @@ ayF ayF awp awp -bMf -bkr -bkr -bkr -bkr -bkr -buc -buc -buc -buu -rrl +qhe +gvw +gvw +gvw +gvw +gvw +qvn +qvn +qvn +cCv +wmi azO meT meT meT -fZm -epe -kdr +vrO +pXP +cJe bvY -kdr -bwb -kdr +cJe +fri +cJe aBw -bwY -bxn -bxn -bxn -bxn -bxn -byo +qIe +bJd +bJd +bJd +bJd +bJd +huo aBv -byS -bzc +buA +iKj aBw -bzE -xpl -bAn -xpl -bAS +tHR +sWH +hdF +sWH +meL aBv -bBh -row -qZo -row -row -bBY -bCt -bCt -bCt -bCS -row -pNa +vHb +eIW +mqP +eIW +eIW +hEq +mag +mag +mag +fDE +eIW +mFQ aDX -kqS -bDu -bDA -aRf +jaL +tGs +fnV +pcB aDX -bDU -elM +iVL +nkd aDX -bDo -aQy -aRf -aRf +lFU +pLF +pcB +pcB aDX -bEK -bEP +eqo +pSO aDY aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -64360,29 +55182,9 @@ aaa "} (112,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -akX -hKM -aad -aad -alJ -vRR aao aao aao @@ -64394,10 +55196,30 @@ aao aao aao aao +aao +aao +aao +fha +xpZ +nmo +nmo +nmO +whA +fha +fha +fha +hlk +acP +uce +oAw +iTk +cCK +vrI acP acP acP -asc +acP +jGz acr acr acr @@ -64410,19 +55232,19 @@ akj akj akj acr -aqM +lHB acP -asc +jGz amn -atB -atY +hpD +plp amn asJ -awq -axe -axM -axM -axM +wHB +eJg +sNS +sNS +sNS azZ amn amn @@ -64444,12 +55266,12 @@ anJ aoz anJ anJ -aHD +nbQ aBR -aMc -aHD -aIn -aWJ +ukV +nbQ +ool +kAH aBR aBR aBR @@ -64467,108 +55289,108 @@ aBR aBR aBR aBR -aMc -erf -auX -auX -auX -auX -erf -aHF +ukV +nyk +tdM +keY +eIv +tdM +nyk +nyk awp -fbL -xsR +vqr +tQO awp -lMg -uEB -rdS +cbr +hmC +bCD awp -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bWk -bMf -uvZ -bjy -aao -aao -bKY -bKY -bKY -bKY -dij +hAn +hAn +hAn +hAn +hAn +hAn +hAn +hAn +hAn +hAn +qhe +tIu +ggg +aao +aao +itz +itz +itz +itz +kRW aao azO meT meT meT -fZm -bvX -kdr -kdr -kdr -kdr -kdr +vrO +hDk +cJe +cJe +cJe +cJe +cJe aBv -bwZ -bxo -bxo -xpl -bxP -bxo -byp +vDA +iUx +iUx +sWH +gnN +iUx +jnz aBw -byT -bzd +rrm +idJ aBv -pDl -owV -aOl -bAF -bAS +uiN +gXa +kDE +ogY +meL aBv -aPd -xpl -qZo -bxo -bxo -bxo -xpl -xpl -xpl -xpl -xpl -kKB +dsD +sWH +mqP +iUx +iUx +iUx +sWH +sWH +sWH +sWH +sWH +vtN aDX -mGu -kqS -bDB -kqS +hxm +jaL +duF +jaL aDX -bDU -fnh +iVL +hBw aDX -kqS -kqS -bDB -kqS +jaL +jaL +duF +jaL aDX -bEK -bCZ +eqo +wRZ aDY aao aao -jrD -jrD -jrD -jcR -jrD +dUe +dUe +dUe +uQO +dUe aao aab aaa @@ -64577,29 +55399,11 @@ aaa "} (113,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -abY -acb -dtX -wDK aao aao aao @@ -64612,180 +55416,198 @@ aao aao aao aao +aao +aao +ewI +nmo +xCL +fha +fha +fha +fha +fqv acP +jpC +myG +myG +myG +jpC acP -ags -alF -alF -alF -akw -akw -alF -alF -akw -akw -akw -akw -alF -aqI +acP +acP +acP +hFy +ixz +ixz +ixz +fsV +fsV +ixz +ixz +fsV +fsV +fsV +fsV +ixz +xkF amD -asc +jGz amn -aty -atY +jlY +plp amn avG -awq -awq -awq -awq -axM +wHB +wHB +qth +wHB +sNS aws amn -aBr -alT -nav -aDU -alT -aFT +goc +fTS +pIF +pWr +fTS +uIr amn -aHG -aIq -aJn -aEO -aLp -aEO -aMH -aEO -aLp -aEO -aEO +gYi +wNH +wRq +oEf +kCY +oEf +pUQ +oEf +kCY +oEf +oEf anJ -aTc +lDV aBR -aMc -aHD -aIn -aWJ -aWI -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHF -aHF -aHF -aHF -jdj -aHF -aHF +ukV +nbQ +ool +kAH +sjo +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +hbB +nyk +nyk +nyk +nyk +nyk +gGd +nyk +nyk awp -oLA -xsR +vRE +tQO awp -lMg -uEB -lvo +cbr +hmC +dlQ awp -bWk -bWk -nVx -pGP -pGP -nVx -bWk -bWk -bWk -bWk -bMf -uvZ -uvZ -aao -aao -fOx -jGT -fOx -fOx -fOx +hAn +hAn +vBM +kIx +kIx +vBM +hAn +hAn +hAn +hAn +qhe +tIu +tIu +aao +aao +wKJ +osa +wKJ +wKJ +wKJ aao azO meT meT meT -fZm -epe +vrO +pXP bvY -kdr +cJe bvY -kdr -kdr +cJe +cJe aBv -bwZ -bxo -bxz -bxo -xpl -xpl -byq -byE -byU -bze +yim +iUx +rSA +iUx +sWH +sWH +bsv +jti +wAO +iWp aBv -bzG -bzW -bAp -rTC -bAS +mYw +mNq +elo +uzY +meL aBv -bBj -xpl -uSt -kfY -bBW -kfY -bxn -bzK -hNg -xpl -xpl -kKB +vPW +sWH +tbA +gyj +bZi +gyj +bJd +mPY +oRm +sWH +sWH +vtN aDX -bDp -bDv -wFP -bDv -bDO -qwx -uWo -bDO -bDv -bDv -wFP -bEC +xdi +utY +sMI +utY +xfU +glp +kRR +xfU +utY +utY +sMI +jxq aDX -bEK -bCZ +eqo +wRZ aDY aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -64794,29 +55616,11 @@ aaa "} (114,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -abs -alJ -akX -akX aao aao aao @@ -64829,6 +55633,17 @@ aao aao aao aao +aao +aao +gpn +nmO +fha +fha +fha +aao +fha +fha +hlk acP acP acP @@ -64846,45 +55661,52 @@ acP acP acP acP -asc +acP +acP +acP +acP +acP +acP +acP +jGz amn -lyx -atY +hnu +plp amn asJ -awq -axf -axN -ays -axN +wHB +plG +emh +rni +emh aAa -aAE -atY -atY -aCT -atY -atY -atY -aAE -aHG -aIr -aJn -aEQ -aLq -aMh -aER -aNR -wXN -aGI -aEO +ohc +plp +plp +wRT +plp +plp +plp +ohc +gYi +tZC +wRq +kaY +oMZ +bSC +umu +wyh +cvC +sph +oEf aqz -aHD -aKl -aMc -aHD -aIn -aWJ -aMc +nbQ +gIA +ukV +nbQ +ool +kAH +ukV asv asv asv @@ -64903,106 +55725,106 @@ atJ atJ asv asv -aHF -aHF -aHF -asv -awf -awf +nyk +nyk +nyk +nyk +nyk +nyk awp -oLA -xsR +vRE +tQO awp -lMg -uEB -nPu +cbr +hmC +vsj awp -bWk -bMf +hAn +qhe oZQ wcw wcw oZQ -hOx -bWk -bWk +lYR +hAn +hAn ofn -bMf -uvZ -mIr +qhe +tIu +ojH aao -fOx -jGT -fOx -jGT -fOx +wKJ +osa +wKJ +osa +wKJ aao aao azO azO meT -vfI -ihW -epe -kdr -ihW -bwb +ull +dYP +pXP +cJe +dYP +fri bvY -kdr +cJe aBw -bxa -xpl -bxA -bxo -bxo -byb -byr +iRu +sWH +uRP +iUx +iUx +vIi +jee aBw -byT -bzf +rrm +vFz aBv -qCU -bzX -bxn -bxn -bAT +tFf +mWI +bJd +bJd +jdU aBv -bBk -xpl -xpl -xpl -xpl -xpl -bCu -qZo -bCu -xpl -bxo -kKB +xfG +sWH +sWH +sWH +sWH +sWH +vvw +mqP +vvw +sWH +iUx +vtN aDX -kqS -kqS -kqS -kqS +jaL +jaL +jaL +jaL aDX -bDU -elM +iVL +nkd aDX -kqS -bEt -bEy -kqS +jaL +vGN +cMi +jaL aDX -bEK -bCZ +eqo +wRZ aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -65011,29 +55833,12 @@ aaa "} (115,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -alJ -alH -akX aao aao aao @@ -65047,6 +55852,23 @@ aao aao aao aao +aao +nmO +sEn +fha +aao +aao +aao +fha +fqv +acP +acP +acP +acP +acP +acP +acP +acP acP acP acP @@ -65063,163 +55885,163 @@ acP acP acP acP -asc +jGz amI -atB -atY -auU +hpD +plp +noM asJ -awq -awq -axM -ayt -axM +wHB +wHB +sNS +lhk +sNS aAb amn -atY -atY -atY -atY -atY -aFU +plp +plp +plp +plp +plp +mjS amn -aHG -aHG -aJn -aEO -aLr -aEO -aGH -aNS -aLr -aEO -aEO +gYi +gYi +wRq +oEf +uEY +oEf +eKU +uYy +uEY +oEf +oEf anJ -aTd -aIn -aMc -aHD -aIn -aWJ -aMc +rNE +ool +ukV +nbQ +ool +kAH +ukV asv -aYX -aZE -aYY -baK -bbs -bce +qdV +uMD +oaX +uVR +yeO +ksQ asv -bdu -bdu -bel +rqQ +rqQ +knz asv -bfd -wKf -bgc -lZL -bgI +rzP +fUb +oKI +gJW +ycp asv -aHF -aHF -aHF +nyk +nyk +nyk asv -bjJ -bgx +atJ +atJ awp -jrB +vBU awp awp awp -eyW +xYz awp awp -bWk -bpc +hAn +huW wcw iQw wcw wcw -rDV -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -jGT -jGT -jGT -fOx -fOx +ojK +hAn +hAn +giT +qhe +tIu +tIu +ndz +osa +osa +osa +wKJ +wKJ aao aao aao azO azO -ydn -ydn -epe -nEJ +pud +pud +pXP +xdb bvY -kdr -nEJ -kdr +cJe +xdb +cJe aBw -bxb -bxp -bxp -bxJ -bxQ -bxp -bys +vLI +qMo +qMo +pLQ +tEl +qMo +woP aBv -byV -bzf +gQO +vFz aBv -bzI -vuz -bAq -bAH -gVm +pbz +uor +obu +oGh +nZE aBv -bBl -bBB -xpl -bBP -bBX -bCm -bCv -bCC -aPT -bCT -pBD -bDg +oVJ +eZJ +sWH +xAZ +eSs +fZB +xcx +mWD +jzP +lmr +nac +qZh aDX -fyz -kqS -kqS -bDJ +tfy +jaL +jaL +dOr aDX -bDU -knN +iVL +rZy aDX -bEl -kqS -kqS -bED +xfy +jaL +jaL +tcl aDX -bEK -bCZ +eqo +wRZ aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -65228,29 +56050,12 @@ aaa "} (116,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -acc -wDK -wDK aao aao aao @@ -65265,6 +56070,14 @@ aao aao aao aao +nmO +fha +fha +fha +fha +fha +fha +fqv acP acP acP @@ -65273,103 +56086,112 @@ acP acP acP acP -agq -ahe -ahe -ahe -ahe -ahe -ahe -ahS +acP +acP +acP +acP +acP +acP +acP +acP +acP +oSp +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +eWe amI -aty -atY +jlY +plp amn -avE -awr -axg -axO -ayu -aza +wTd +ulN +fCU +cYc +cJk +vLv aws -aAE -atY -aBZ -aBZ -aBZ -aBZ -aBZ -aAE -aHG -aIs -aJo -aEO -aEO -aEO -aEO -aNS -aEO -aEO -aRj +ohc +plp +wMP +wMP +wMP +wMP +wMP +ohc +gYi +mBz +sPL +oEf +oEf +oEf +oEf +uYy +oEf +oEf +whc aqz -aHD -aUh -aMc -aHD -aIn -aWJ -aWW +nbQ +fgW +ukV +nbQ +ool +kAH +oSM asH -aYY -aZE -bac -baL -bbt -bac -bac -bac -aYY -aYY +oaX +uMD +fZF +uTO +xjW +fZF +fZF +fZF +oaX +oaX asv -wKf -bfJ -bgd -bgd -aLf +fUb +bZd +dEd +dEd +hPQ asH -aHF -aHF -aHF +nyk +nyk +nyk asv -beI -bgx -tRz -rgX -nAm -jPL -kRA -ttQ -grD +uZW +myd +sYI +pob +hmB +qMi +lqa +mAO +lhg ayF -vjc -bpc +liL +huW wcw wcw wcw wcw -rDV -bWk -bWk -rTN -bMf -eLQ -uvZ -nGm -jGT -fOx -fOx -jGT -fOx +ojK +hAn +hAn +giT +qhe +ojb +tIu +ndz +osa +wKJ +wKJ +osa +wKJ aao aao aao @@ -65392,8 +56214,8 @@ aBv aBv aBv aBv -byT -bzg +rrm +nMr aBv aBv aBv @@ -65401,10 +56223,10 @@ aBv aBv aBv aBv -fjp -xpl -xpl -bBQ +eXS +sWH +sWH +kWi aBA aCh aCh @@ -65419,24 +56241,24 @@ aDX aDX aDX aDX -fKW -bEc +qRZ +nvm aDX aDX aDX aDX aDX aDX -bEL -bDN +gqF +eKj aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -65445,30 +56267,12 @@ aaa "} (117,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -aad -wMp -akX -akX aao aao aao @@ -65483,6 +56287,24 @@ aao aao aao aao +nmo +wCE +fha +fha +fha +fha +fha +fha +hlk +acP +acP +acP +acP +acP +acP +acP +acP +acP acP acP acP @@ -65490,7 +56312,7 @@ acP akV acP acP -asc +jGz ako ako ako @@ -65510,84 +56332,84 @@ ayv asJ aws amn -alT -aCa -aCa -aCa -aCa -aCa +fTS +iRD +iRD +iRD +iRD +iRD amn -aHH -aHG -aJn -aEO -aLs -aEO -aEO -aNS -aLp -aEO -aEO +fty +gYi +wRq +oEf +pbj +oEf +oEf +uYy +kCY +oEf +oEf anJ -aHD -aIn -aMc -aHD -aIn -aWJ -aMc +nbQ +ool +ukV +nbQ +ool +kAH +ukV asH -aYZ -aZE -bac -bbt -bbt -bac -bac -bdv -bac -bcf +etQ +uMD +fZF +oaX +xjW +fZF +fZF +fRk +fZF +unG asv -bff -bfK -bge -bgs -bfM +qTv +wBN +oBS +eJd +jZu avr -bhT -aHF -aHF +pfI +nyk +nyk asv -beI -bgx +mJe +myd awp -tOS -fmX -wRN -fmX -esg -dpF +dHn +end +xwi +end +ils +nmI ayF -bWk -kdf +hAn +jZE oZQ wcw rHA oZQ -acm -bWk -bWk -rTN -bMf -uvZ -xIx -nGm -fOx -fOx -fOx -jGT -fOx -fOx +tvO +hAn +hAn +giT +qhe +tIu +pnH +ndz +wKJ +wKJ +wKJ +osa +wKJ +wKJ aao aao aao @@ -65605,55 +56427,55 @@ aao aao aao aBv -bxR -bxS -byt +jaP +gEa +jco aBA -byT -bzf +rrm +vFz aBv -bzJ -bzJ -bzJ -bzJ -bzJ +eeD +eeD +eeD +eeD +eeD aBv -bBl -xpl -xpl -bBR -bBY -bCn -bCw -yej -bCI -bCU -pNa -bDh +oVJ +sWH +sWH +lkO +hEq +cTg +oDP +nTx +sPF +qzL +mFQ +muy aDX -fyz -kqS -kqS -bDK +tfy +jaL +jaL +jmf aDX -bDU -elM +iVL +nkd aDX -bEm -kqS -kqS -fyz +tNa +jaL +jaL +tfy aDX -bEM -bDN +kOm +eKj aDY aao aao aao -jrD -jcR -jrD -jrD +dUe +uQO +dUe +dUe aao aab aaa @@ -65662,32 +56484,12 @@ aaa "} (118,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -aad -abr -akZ -xWI -akZ -ack aao aao aao @@ -65701,13 +56503,33 @@ aao aao aao aao +aao +nmo +ewI +oIr +kKW +oIr +wCE +fha +fha +fha +tni +tni +hlk acP acP acP acP acP -acP -asc +oSp +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +eKZ +eWe aku aoo apc @@ -65720,91 +56542,91 @@ atC ars amn amn -jZp -axh -amn +ljo +urg amn amn -aAc -amn -amn -amn -eRW +anJ +tNp +anJ +anJ +anJ +doq amn amn amn amn -aHI -aHI -aJp -aKv -aLt -aGI -aEO -aNT -aOS -aGI -aRk +xUF +xUF +vHT +ufH +vFh +sph +oEf +tlS +jWy +sph +otf anJ -aTe -aFM -aHF -aHD -aIn -aWJ -aMc +tzt +hbB +nyk +nbQ +ool +kAH +ukV asH aZa -aZE -bac -baM -bbu -bcf +uMD +fZF +nhl +jnU +unG asv -aJI -bac -bem +quJ +fZF +oAT asv -bfg -bfL -bgc -bgc -bgK +dEd +caI +oKI +oKI +frY asH -aHF -aHF -aHF +nyk +nyk +nyk asv -bjK -aZF -lTM -ngy -nBv -wam -jfv -wKe -jtC +kLI +uHi +eIC +xpC +dla +uGU +hPy +nbB +kTB ayF -bWk -bWk -dnV -oTf -mIZ -dnV -bWk -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx -fOx +hAn +hAn +lnd +mwy +pzl +lnd +hAn +hAn +hAn +giT +qhe +tIu +tIu +ndz +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -65822,55 +56644,55 @@ aao aao aao aBv -bxS -bxS -byu -byF -byU -bzh -bzs -bzK -bxo -xpl -xpl -xpl +gEa +gEa +kWL +sEv +wAO +arh +fpJ +mPY +iUx +sWH +sWH +sWH aBv -fDr -xpl -xpl -bxo -bxo -xpl -xpl -xpl -xpl -bxo -bDa -xpl +wIS +sWH +sWH +iUx +iUx +sWH +sWH +sWH +sWH +iUx +xSQ +sWH aDX -kqS -kqS -kqS -kqS +jaL +jaL +jaL +jaL aDX -bDV -elM +wLt +nkd aDX -kqS -kqS -bEt -kqS +jaL +jaL +vGN +jaL aDX -bEM -bEQ +kOm +eNG aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -65879,33 +56701,12 @@ aaa "} (119,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -aad -aad -abO -aad -aad -aad -ack aao aao aao @@ -65920,11 +56721,32 @@ aao aao aao aao +nmo +nmo +tqH +nmo +nmo +nmo +wCE +fha +fha +fha +fha +fha +hlk acP acP acP acP -asc +jGz +jpC +tSX +tSX +tSX +tSX +eWe +eWe +eWe aku aop apc @@ -65941,87 +56763,87 @@ awt avJ axP ahf -amn -aAd -aAF -aAF +anJ +aAH +aAg +aAg aAg anJ -aDV -aEO -aEO -aEO -aEO -aEO -aEO -aKw -aLr -aEO -aEO -aNS -aLr -aPY -aEO -aSc -aHF -aHF -aHF -aHD -aIn -aWJ -aMc +wRi +oEf +oEf +oEf +oEf +oEf +oEf +uJp +uEY +oEf +oEf +uYy +uEY +kla +oEf +cIH +nyk +nyk +nyk +nbQ +ool +kAH +ukV asv -aYY -aZE -bad -aYY -bbv -bac +oaX +uMD +ozu +oaX +oJq +fZF asv -bdx -bdx -bdx +eMd +eMd +eMd asv -bfh -bfM -bgc -bgt -bgL +oRT +jZu +oKI +pWX +cjg asv -bhU -aHF -rHD +wlU +nyk +pIm asv -bjL -bkg +kOI +pdS awp -tOS -jfv -qeR -vJN -vJN -pLZ +dHn +hPy +xuC +kSB +kSB +wQk ayF -bWk -bWk -iYR -nVx -nVx -nVx -bWk -bWk -bWk +hAn +hAn +buk +vBM +vBM +vBM +hAn +hAn +hAn awp -inx -mIr -uvZ -nGm -fOx -fOx -snk -fOx -fOx -fOx +xCA +ojH +tIu +ndz +wKJ +wKJ +vEL +wKJ +wKJ +wKJ aao aao aao @@ -66039,55 +56861,55 @@ aao aao aao aBv -bxT -byc -byv +sPf +knm +kJU aBA -byT -bzd +rrm +idJ aBv -bzL -bzY -bAr -bAI -bAU +vEg +gAL +rcI +mry +fZb aBv -bBn -xpl -xpl -xpl -bBZ -bxo -bxo -bxo -bxo -xpl -kKB +mDM +sWH +sWH +sWH +cnc +iUx +iUx +iUx +iUx +sWH +vtN aBA aDX -bDq -bDv -bDC -bDv -bDO -qwx -uWo -bDO -bDv -wFP -bDv -bEC +rmc +utY +cjw +utY +xfU +glp +kRR +xfU +utY +sMI +utY +jxq aDX -bEK -bDN +eqo +eKj aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -66096,20 +56918,6 @@ aaa "} (120,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -66117,15 +56925,6 @@ aao aao aao aao -aad -aad -abs -aad -aad -oRs -abU -abU -ack aao aao aao @@ -66137,11 +56936,34 @@ aao aao aao aao +aao +aao +aao +nmo +nmo +gpn +nmo +nmo +wbu +mAe +mAe +wCE +fha +fha +fha +hlk acP acP acP -acP -asc +jGz +tSX +oAw +oAw +gmG +eWe +eWe +eWe +eWe aku aop apc @@ -66158,48 +56980,48 @@ aop apc apc ars -amn -aAe -aAG -aBt +anJ +tXw +eNm +aCb aCb -aCU -aDW -aEP -aER -aER -aER -aIt -aER -aER -aER -aER -aER -aNU -aEO -aEO -aRl -cNH -aTf -aHF -aHF -aHD -aIn -aWJ -aMc +osS +tnm +olO +umu +umu +umu +lTB +umu +umu +umu +umu +umu +biG +oEf +oEf +fNK +vKj +bpa +nyk +nyk +nbQ +ool +kAH +ukV asv -aZb -aZE -aYY -aYY -bbw -aYY +wpG +uMD +oaX +oaX +hYC +oaX asv asv asv asv asv -bfi +kyx asv asv asv @@ -66209,36 +57031,36 @@ avS asv asv asv -bjL -bgx +kOI +myd awp -vpw -jfv -jfv -fmX -qlx -sNa +gtL +hPy +hPy +end +oFE +vUe ayF -uHE -bMf +rLk +qhe oZQ rzO bkU oZQ -kuw -bWk -bWk -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx -fOx +tzc +hAn +hAn +giT +qhe +tIu +tIu +ndz +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -66256,55 +57078,55 @@ aao aao aao aBv -bxS -aNh -bxS +gEa +jku +gEa aBA -byT -bzf +rrm +vFz aBw -bxo -bxo -xpl -xpl -xpl +iUx +iUx +sWH +sWH +sWH aBv -bBo -pBD -xpl -pBD -pBD -plx -pBD -pBD -xpl -pBD -iUe -bDj +tJt +nac +sWH +nac +nac +yio +nac +nac +sWH +nac +phf +jWt aDX -kqS -kqS -bDD -kqS +jaL +jaL +rKu +jaL aDX -bDU -knN +iVL +rZy aDX -kqS -kqS -bDD -kqS +jaL +jaL +rKu +jaL aDX -bEK -bDN +eqo +eKj aDY aao aao aao -jrD -jrD -jrD -jcR +dUe +dUe +dUe +uQO aao aab aaa @@ -66313,20 +57135,6 @@ aaa "} (121,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -66335,14 +57143,6 @@ aao aao aao aao -aad -aad -aad -tLt -akX -cJG -oRs -abM aao aao aao @@ -66354,11 +57154,33 @@ aao aao aao aao +aao +aao +aao +nmo +nmo +nmo +xCL +fha +eaE +wbu +fVD +fha +fha +fha +fqv acP acP acP -acP -asc +jGz +tSX +sqw +gmG +eWe +eWe +gmG +eWe +eWe aku aoq apd @@ -66381,81 +57203,81 @@ aAH aAg aAg anJ -aNS -aEO -aEO -aGH -aEO -aEO -aEO -aEO -aEO -aGH -aEO -aNV -aEP -aDW -aRm +uYy +oEf +oEf +eKU +oEf +oEf +oEf +oEf +oEf +eKU +oEf +vkc +olO +tnm +swn anJ -aTg -aHF -aHF -aHD -aIn -aWJ -aMc +jZr +nyk +nyk +nbQ +ool +kAH +ukV asv asv asv -bae -bac -bbx -bwz +kxS +fZF +ekz +jtP aul bdy bdy asv -beH -bfj -aZF -aZF -aZF -aZF -aZF -bbA -aZF -aZF -aZF +mEF +nje +uHi +uHi +uHi +uHi +uHi +cnI +uHi +uHi +uHi bjM -bgx +myd awp -gKz -hMa -dUm -xvm -wBC -kUW +iAf +oDJ +xDW +rET +mnK +qqH awp -bWk -bMf +hAn +qhe mDk bkU bkU irN -kuw -ntX -hsJ -rTN -bMf -uvZ -eLQ -nGm -mts -fOx -vld -fOx -fOx -fOx +tzc +tyk +ted +giT +qhe +tIu +ojb +ndz +lOt +wKJ +sTF +wKJ +wKJ +wKJ aao aao aao @@ -66473,55 +57295,55 @@ aao aao aao aBv -bxR -bxS -bxR +jaP +gEa +jaP aBA -byT -bzi +rrm +ltG aBw -bzM -bzM -bzM -bzM -bzM +ojg +ojg +ojg +ojg +ojg aBv aBw aBw -bBH +nVk aBw aBw aBv aBw aBw -bBH +nVk aBw aBw aBv aDY aDY -aRf -bDA -nVT +pcB +fnV +jPU aDX -bDU -knN +iVL +rZy aDX -bEn -aQD -bDA -bEE +mjh +udQ +fnV +vjj aDX -bEK -bER +eqo +jNi aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -66530,20 +57352,6 @@ aaa "} (122,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -66554,13 +57362,6 @@ aao aao aao aao -alJ -akX -akX -akX -akX -hKM -ack aao aao aao @@ -66572,14 +57373,35 @@ aao aao aao aao +aao +aao +aao +nmO +fha +fha +fha +fha +xpZ +wCE +fha +fha +fha +hlk acP acP -acP -asc +jGz +tSX +iTk +eWe +eWe +gmG +gmG +eWe +eWe ako ako ako -apM +vPY ako ako ako @@ -66598,53 +57420,53 @@ aAH aAg aAg anJ -aNS -aEQ -jUM -aGI -aEQ -jUM -aJq -aKx -aKx -aKx -aKx -aNW -aEO -aNS -aEO +uYy +kaY +fCn +sph +kaY +fCn +iBr +ubG +ubG +ubG +ubG +hTx +oEf +uYy +oEf anJ -bhR -aUi -aHF -aHD -aIn -aIp -aMc -aHF -aHF +ugL +exP +nyk +nbQ +ool +wdv +ukV +nyk +nyk asv -baf -bac -bbu -bch +bhj +fZF +jnU +lpA aul aXU aXr asv -beI +mJe bfk -bai -bai -bai -bgM -bbB -bbB -bcj -bbB -bjk -bbB -bbB +umV +umV +umV +cWQ +hCz +hCz +rZj +hCz +fal +hCz +hCz awp awp blF @@ -66653,25 +57475,25 @@ ayF ayF ayF awp -bWk -bMf +hAn +qhe bkU bkU boA bkU -vEF -bWk -ntX -rTN -bMf -uvZ -uvZ -nGm -fOx -fOx -fOx -fOx -fOx +fmI +hAn +tyk +giT +qhe +tIu +tIu +ndz +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -66694,8 +57516,8 @@ aBv aBv aBv aBv -byT -bzf +rrm +vFz aBv aBv aBv @@ -66703,11 +57525,11 @@ aBv aBv aBv aBv -bBp -bBp -bBp -bBp -bBp +lSQ +lSQ +lSQ +lSQ +lSQ aBv bvP bvP @@ -66721,24 +57543,24 @@ aDX aDX aDX aDX -bDU -knN +iVL +rZy aDX aDX aDX aDX aDX aDX -bEM -bDN +kOm +eKj aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -66747,20 +57569,6 @@ aaa "} (123,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -66771,14 +57579,6 @@ aao aao aao aao -alJ -akX -akY -akX -akX -hKM -aad -ack aao aao aao @@ -66789,16 +57589,38 @@ aao aao aao aao +aao +aao +aao +aao +nmO +fha +iQO +fha +fha +xpZ +nmo +wCE +fha +fha +fqv acP acP -acP -asc +jGz +tSX +eWe +eWe +eWe +gmG +eWe +eWe +gmG ako -aor -ape -apN -ape -art +iVW +wLG +jQA +wLG +eyK ako asL atD @@ -66815,53 +57637,53 @@ aAI anJ anJ anJ -aDZ +puk anJ anJ anJ anJ anJ anJ -aKy -aLu -aMi -aMI -aNX -aKx -aNS -aRn +qvT +elP +bND +wTi +dyx +ubG +uYy +pfO aqz -bhR -aHF -aHF -aHF -aFM -aFM -aHF -aHF -aHF +ugL +nyk +nyk +nyk +hbB +hbB +nyk +nyk +nyk asv -bag -bac -bby -bci +jqL +fZF +qqo +hgt bcX bdz bcX -ben -beJ -bfl +iMi +ybM +pSM asv asv -bdC +ome asv asv asv asv +atJ +atJ asv asv -awf -awf awp bkT bkU @@ -66870,25 +57692,25 @@ bkU bkT bkU awp -bWk -bMf +hAn +qhe oZQ bkU boA oZQ -fUk -bWk -bWk -rTN -bMf -uvZ -uvZ +tjT +hAn +hAn +giT +qhe +tIu +tIu ppp -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -66911,20 +57733,20 @@ aao aao aao aBv -byW -bzj -bzt -bzN -bzZ -bAs -bAJ -bAV +wld +vdb +iMo +hOg +bwk +gFw +kpK +wXZ aBv -bBp -bBC -bBp -bBp -bBC +lSQ +hWC +lSQ +lSQ +hWC aBv bvP bvP @@ -66937,25 +57759,25 @@ aDY bDx bDE fdy -bDP -ioS -bEd -bEi -bEo -bEo -bEo -bEo -bEG -fxh -bDN +dBB +eNL +ucM +rHY +ddf +ddf +ddf +ddf +btT +gGZ +eKj aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -66964,20 +57786,6 @@ aaa "} (124,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -66988,14 +57796,6 @@ aao aao aao aao -aad -wMp -akX -vRR -akX -hKM -aad -abM aao aao aao @@ -67007,78 +57807,100 @@ aao aao aao aao +aao +aao +aao +nmo +wCE +fha +whA +fha +xpZ +nmo +fVD +fha +fha +fha +hlk acP -acP -asc +jGz +eWe +eWe +eWe +eWe +eWe +eWe +eWe +gmG ako -aos -ape -apN -ape -aos +iSo +wLG +jQA +wLG +gIs ako asM atE apc ako -atE +eSx aop apc -axR -ayw -azc +xWJ +dvK +gvA ako -aAJ -aBu -tPr +tbz +vYQ +viT anJ -aEa -aER -aFX -aEO -aHJ -aIu +kJt +umu +uZJ +oEf +oOm +pRj anJ -aEO -aEO -aMj -aEO -aFW -aKx -aNS -aEO +oEf +oEf +ktI +oEf +pvW +ubG +uYy +oEf anJ -bhR -aHF -aHF -aHF -aHF +ugL +nyk +nyk +nyk +nyk asv asv asv asv asv -bah -aYY -bbz -aZE +uVV +oaX +riJ +uMD aXr aXr aXU -bET -beI -bft +xwn +mJe +wdU asv -bgf -bgg -bgN -bgg -bhX +nUN +nqB +lRI +nqB +iTE asv -bqa -bep -bep -bqa +eKx +hUQ +hUQ +eKx awp bkU bkU @@ -67087,28 +57909,28 @@ bkU bkU bkU awp -bWk -bWk -qpn -pMm -pMm -wMg -bWk -bWk -bWk +hAn +hAn +jDp +fJW +fJW +rzJ +hAn +hAn +hAn awp -bMf -eLQ -uvZ +qhe +ojb +tIu aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -67129,19 +57951,19 @@ aao aao aBv wXz -bzk -bxo +xHm +iUx wXz -xpl -xpl +sWH +sWH bAK -bAW +ctG aBv -bBp -bBp -bBp -bBp -bBp +lSQ +lSQ +lSQ +lSQ +lSQ aBv bvP bCE @@ -67155,24 +57977,24 @@ bDy bDF bDM aDX -bDz -bDN -ioS -bDN -bEv -bDN -bDN -fnh -bCZ -bDz +jOM +eKj +eNL +eKj +cAn +eKj +eKj +hBw +wRZ +jOM aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -67181,20 +58003,6 @@ aaa "} (125,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -67205,14 +58013,6 @@ aao aao aao aao -aad -alJ -akX -akX -wpf -aad -abX -tLt aao aao aao @@ -67225,51 +58025,73 @@ aao aao aao aao +aao +aao +nmo +nmO +fha +fha +dHu +nmo +jrQ +xCL +fha +aao +fha +fqv acP -asc +jGz +eWe +gmG +gmG +eWe +eWe +eWe +gmG +sqw ako -aos -ape -apN -ape -aot +wLG +wLG +vLt +wLG +hcD ako asN atE apc ako -atE +oxa aop apc ako -ayx -azd +ssS +xjV ako -aAJ -aBu -aCc +tbz +vYQ +vYQ anJ -aEb -aEO -aEO -aEO -aEO -aEO -aJr -aEO -aEO -aEO -aEO -aNY -aKx -aNS -aRk +gtI +oEf +oEf +oEf +oEf +oEf +xAA +oEf +oEf +oEf +oEf +thp +ubG +uYy +otf anJ -bhR -aHF -aHF -aHF -aHF +ugL +nyk +nyk +nyk +nyk asv aXS aYs @@ -67283,19 +58105,19 @@ asv asv asv asv -beK -bfn +vws +ljR asv -bgg -bgg -bgO -bgf -bgg +nqB +nqB +jxr +nUN +nqB asH -bjb -bfw -bfw -bpX +oPN +fLv +fLv +mkz awp bkT blG @@ -67304,28 +58126,28 @@ bkU bkT bkU awp -bWk -bWk -bWk +hAn +hAn +hAn awp -rTN -rTN -rTN -rTN +giT +giT +giT +giT awp awp -bMf -uvZ -uvZ +qhe +tIu +tIu aao -dov -fOx -fOx -fOx -fOx -fOx -fOx -fOx +uFq +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -67345,20 +58167,20 @@ aao aao aao aBv -byX -bzl +rFw +jaH ocp wXz bAa tIr bAu -bAX +iQf aBv -bBp -bBp -bBp -bBp -bBC +lSQ +lSQ +lSQ +lSQ +hWC aBv bvP bvP @@ -67374,22 +58196,22 @@ aDY aDX aDX aDX -bEj +dCD aDX aDX aDX aDX -bEH +xlr aDX aDX aDY aao aao aao -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aab aaa @@ -67398,20 +58220,6 @@ aaa "} (126,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -67423,13 +58231,6 @@ aao aao aao aao -aad -akZ -akZ -aad -aad -alJ -vRR aao aao aao @@ -67442,77 +58243,98 @@ aao aao aao aao -acP -asc +aao +aao +nmo +oIr +oIr +nmo +nmo +nmO +whA +fha +aao +aao +fha +hlk +jGz +tSX +eWe +gmG +eWe +eWe +gmG +iTk +iTk ako -aos -apf -apO -aqR -aru +wLG +xVg +fdn +ehn +mZq ako asO atE apc ako -atE +sTe aop axi ako ako ako ako -aAJ -aBu -aCc +tbz +vYQ +vYQ anJ -aEc -aEc -aFY -aGJ -kGU -aIv +rBc +rBc +hJk +fFZ +uIn +cJy anJ -aKz -aLv +laJ +tLM anJ -aMJ -aFW -aKx -aNS -aEO +dkU +pvW +ubG +uYy +oEf aqz -aTi -aVp -aVp -aVp -aVp -aXq +szs +lnR +lnR +lnR +lnR +qvb bcX bcX bcX -aZF -aZF -aZF -bbA -bbA -bbA -aZF -bdU -aZF +uHi +uHi +uHi +cnI +cnI +cnI +uHi +dbu +uHi beL -bfo +hsG asv -bgh -bgu -bgh -bgf -bgf +rdm +rPv +rdm +nUN +nUN asv -bjb +oPN bes bes -bpX +mkz awp awp awp @@ -67521,29 +58343,29 @@ awp awp awp awp -bWk -bWk -ntX -nVx -nVx -nVx -nVx -nVx -nVx -nVx -eRc -uvZ -uvZ -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +hAn +hAn +tyk +vBM +vBM +vBM +vBM +vBM +vBM +vBM +eLc +tIu +tIu +syZ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -67562,20 +58384,20 @@ aao aao aao aBv -byX +rFw bzm -bzu -bzO -bAb +lSu +lUO +gmb bAu bAL -bAX +iQf aBv -bBp -bBC -bBI -bBp -bBp +lSQ +hWC +dpI +lSQ +lSQ aBv bvP bvP @@ -67588,11 +58410,11 @@ aao aao aao aDY -bDQ -bDQ -bEe -bDQ -bEp +wVS +wVS +tNg +wVS +jxJ aDX fdy fdy @@ -67603,9 +58425,9 @@ aDY aao aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aab @@ -67615,20 +58437,6 @@ aaa "} (127,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -67638,15 +58446,6 @@ aao aao aao aao -abq -abU -abU -aad -aad -aad -aad -tLt -akX aao aao aao @@ -67661,27 +58460,50 @@ aao aao aao aao +msD +mAe +mAe +nmo +nmo +nmo +nmo +xCL +fha +fha +fha +aao +fha +fqv +jGz +tSX +eWe +eWe +eWe +gtJ +aao +aao +aao ako -aos -ape -apP -aqS -aos +uZd +wLG +qaz +hAQ +wLG ako asP apc apc -auV +iKH apc aop apc -axR -ayw -azc +xWJ +dvK +gvA ako -aAJ -aBu -aCc +tbz +vYQ +vYQ anJ anJ anJ @@ -67696,51 +58518,51 @@ anJ anJ anJ anJ -sPv -aRo +nRw +hnP anJ -aTj -aMg -aMg -aMg -aHF -bET +cBb +cbi +cbi +cbi +nyk +xwn aXr aXr aXU -aZG -bai -bai -bbB -bcj -bbB -bai -bai -bbB +pPw +umV +umV +hCz +rZj +hCz +umV +umV +hCz beM -bfp +fjz asv -bgi -bgv -fbp -bgg -bgg +dEa +gAl +pqP +nqB +nqB asH -bjb -bjl +oPN +pQb bes -jfr -bep -bep -bep -bep -bep -bep -bep -bep -bqa -bWk -bMf +bma +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +eKx +hAn +qhe xJC mzV mzV @@ -67748,19 +58570,19 @@ mzV mzV mzV mzV -pcI -uvZ -uvZ -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +ybi +tIu +tIu +syZ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -67780,12 +58602,12 @@ aao aao aBv byY -bzn -bzv +fFx +jZo wXz -bAc +mrL wXz -bAM +juf bAY aBv aBv @@ -67805,11 +58627,11 @@ aao aao aao aDY -bDR -bDR -bDR -bDR -bEq +vPF +vPF +vPF +vPF +kDA aDX bEz bEF @@ -67820,9 +58642,9 @@ aDY aao aao aao -jrD -yfz -jrD +dUe +gks +dUe aao aao aab @@ -67832,20 +58654,6 @@ aaa "} (128,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -67854,16 +58662,6 @@ aao aao aao aao -oRs -oRs -abW -aad -aad -aad -aad -alJ -akX -akX aao aao aao @@ -67878,49 +58676,73 @@ aao aao aao aao +wbu +wbu +fXl +nmo +nmo +nmo +nmo +nmO +fha +fha +fha +fha +fha +fha +fqv +jGz +tSX +iTk +oAw +aao +aao +aao +aao +aao ako -aot -apg -apP -ape -aos +nqR +vqn +qaz +wLG +wLG ako asQ atE atE -ovq +fvQ apc aop apc ako -ayx -azd +ssS +xjV ako -aAK -aBu -aCd -aCV -arD -arD -arD -arD -arD -arD -arD -aKA -aCc -aMk -apo -apo +hto +vYQ +vYQ +uWj +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ anT aQa aCZ anT -aTk -aQu -aQu -aQu -aTr +uVg +iXM +iXM +iXM +pVg asH aXU aYt @@ -67934,20 +58756,20 @@ asv asv asv asv -beI -bft +mJe +wdU asv -bgj -bgw -bgQ -bgg -bhY +baZ +tol +gOm +nqB +awB asv -bjb -bjm +oPN +wnj bes bes -ber +uAc bes bes bes @@ -67955,9 +58777,9 @@ bes bes bes bes -bpX -bWk -bMf +mkz +hAn +qhe mzV mzV mzV @@ -67965,19 +58787,19 @@ mzV mzV mzV mzV -pcI -uvZ -mIr -kcZ -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +ybi +tIu +ojH +syZ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -67999,8 +58821,8 @@ aBv aBv aBv aBv -bzP -bAd +pAb +kKG aBv aBv aBv @@ -68012,10 +58834,10 @@ aao aao aao aao -sqj -phi -phi -vqY +rIW +gfN +gfN +itK aao aao aao @@ -68037,9 +58859,9 @@ aDY aao aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aab @@ -68049,20 +58871,6 @@ aaa "} (129,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -68071,16 +58879,6 @@ aao aao aao aao -alH -akX -cJG -oRs -aad -aad -abW -alJ -akX -akY aao aao aao @@ -68095,12 +58893,36 @@ aao aao aao aao +sEn +fha +eaE +wbu +nmo +nmo +fXl +nmO +fha +iQO +fha +fha +fha +fha +fha +jGz +tSX +aao +aao +aao +aao +aao +aao +aao ako -aos -ape -apN -aqT -arv +uZd +wLG +jQA +sak +wLG ako asR atF @@ -68113,31 +58935,31 @@ ako ako ako ako -aAK -aBu -aCc -aCW -arD -arD -arD -arD -arD -awy -arD -aKB -aCc -aMk -apo -apo -aOU +hto +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +bMT +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +jDh aQa aCZ -aOU -aTk -aQu -aVq -aVq -aTr +jDh +uVg +iXM +iLy +iLy +pVg asv aXV aYu @@ -68151,8 +58973,8 @@ bcY bcY aKn asv -beI -bft +mJe +wdU asv asv asv @@ -68160,9 +58982,9 @@ asv asv asv asv -bqa -kwQ -bjl +eKx +ejG +pQb bes bes bes @@ -68172,9 +58994,9 @@ bes bes bes bes -bpX -bqa -bMf +mkz +eKx +qhe mzV mzV mzV @@ -68182,18 +59004,18 @@ mzV mzV mzV mzV -pcI -uvZ -ltu -mPC -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx +ybi +tIu +mHv +uhW +wKJ +wKJ +uFq +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -68204,8 +59026,8 @@ aao aao aao aao -jrD -jrD +dUe +dUe aao aao aao @@ -68216,9 +59038,9 @@ aao aao aao aao -tRI -jrD -jrD +wYt +dUe +dUe aao aao aao @@ -68229,9 +59051,9 @@ aao aao aao aao -tRI -jrD -oxp +wYt +dUe +xGO aao aao aao @@ -68243,20 +59065,20 @@ aao aao aao aao -euO -phi -phi -phi -phi -phi -sus +bpB +gfN +gfN +gfN +gfN +gfN +ivC aao aao aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aab @@ -68266,20 +59088,6 @@ aaa "} (130,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -68288,16 +59096,6 @@ aao aao aao aao -akX -akX -akX -akX -cJG -aad -aad -alJ -akX -akX aao aao aao @@ -68312,6 +59110,30 @@ aao aao aao aao +fha +fha +fha +fha +eaE +nmo +nmo +nmO +fha +fha +aao +aao +aao +aao +fha +aao +aao +aao +aao +aao +aao +aao +aao +aao ako ako ako @@ -68326,35 +59148,35 @@ ako atE aop apc -axR -ayw -azc +xWJ +dvK +gvA ako -aAJ -aBu -aCc -aCd -arD -arD -arD -arD -arD -arD -arD -arD -aKA -aMk -apo -apo +tbz +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ +vYQ anT aQb aCZ anT -aTk -aUk +uVg +tPL aKP aKP -aTr +pVg asv asv asv @@ -68363,23 +59185,23 @@ asv aXr baO aXr -bck +prG aXU aXr bdW asv -beN +hpZ bfq -bfO -bgk -bgx -bgR -bhk -bgx -biD -bqa -bja -beq +wTo +sOC +myd +uMH +dmq +myd +pwC +eKx +rRp +fXL bhr bes bes @@ -68389,9 +59211,9 @@ bes bes bes bes -bpX -bqa -bMf +mkz +eKx +qhe mzV eWo mzV @@ -68399,18 +59221,18 @@ dmB mzV mzV mzV -pcI -mIr -ktN -mPC -fOx -fOx -kVS -fOx -fOx -fOx -fOx -fOx +ybi +ojH +qZN +uhW +wKJ +wKJ +nQD +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -68420,11 +59242,11 @@ aao aao aao aao -jrD -jcR -jrD -jrD -jrD +dUe +uQO +dUe +dUe +dUe aao aao aao @@ -68432,10 +59254,10 @@ aao aao aao aao -phi -jrD -jrD -jrD +gfN +dUe +dUe +dUe aao aao aao @@ -68446,9 +59268,9 @@ aao aao aao aao -tRI -iml -oxp +wYt +gfU +xGO aao aao aao @@ -68461,19 +59283,19 @@ aao aao aao aao -tRI -jrD -jcR -jrD -jrD -vqY +wYt +dUe +uQO +dUe +dUe +itK aao aao aao aao -jrD -jrD -jrD +dUe +dUe +dUe aao aao aab @@ -68483,20 +59305,6 @@ aaa "} (131,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -68505,15 +59313,29 @@ aao aao aao aao -akX -akX -akX -akX -akX -hKM -aad -alJ -akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fha +fha +fha +fha +fha +xpZ +ljV +ydm +gFf aao aao aao @@ -68534,7 +59356,7 @@ aou aph apR aou -arw +igD ako asS atG @@ -68544,17 +59366,17 @@ atE aop apc ako -ayx -azd +ssS +xjV ako -aAJ +tbz +vYQ anT anX anX anX anX anX -anX anT anT anT @@ -68564,39 +59386,39 @@ anT anT anT anT -cYI -aRp +tis +teH anT -aTk -aUk +uVg +tPL aKP aVY -aXW -aSg -aTq -aTq -aTq +kZa +xBB +oNb +oNb +oNb asv asv asv asv asv -bcZ +taq bdA aXU -bck -beI +prG +mJe bfr -bfP -bgl -bfP -bfP -bhl -bbB -bET -bqa -bja -beq +fsy +qSk +fsy +fsy +nVc +hCz +xwn +eKx +rRp +fXL bes bes bes @@ -68606,9 +59428,9 @@ bes bes bes bes -bpX -bqa -bja +mkz +eKx +rRp mzV mzV mzV @@ -68616,18 +59438,18 @@ mzV mzV mzV mzV -pcI -ltu -ktN -mPC -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +ybi +mHv +qZN +uhW +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -68635,24 +59457,24 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao -tRI -jrD -jrD -sus +wYt +dUe +dUe +ivC aao aao aao @@ -68662,10 +59484,10 @@ aao aao aao aao -sqj -jrD -jrD -oxp +rIW +dUe +dUe +xGO aao aao aao @@ -68678,20 +59500,20 @@ aao aao aao aao -tRI -jrD -jrD -jrD -oxp +wYt +dUe +dUe +dUe +xGO aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -68700,20 +59522,6 @@ aaa "} (132,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -68722,15 +59530,29 @@ aao aao aao aao -akY -akX -iOL -vRR -akX -hKM -aad -aad -wMp +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +iQO +fha +frA +whA +fha +lnv +ljV +ljV +giQ aao aao aao @@ -68752,7 +59574,7 @@ api apS aqV aqV -asi +hWw apd atH aud @@ -68764,35 +59586,35 @@ ako ako ako ako -aAK +hto +vYQ anU -aCf -aCX -aEd -aES -aCZ -aGK +ePJ +fpQ +cfR +rvN +xfo anT -aIw -msq -aID -aLw +yaD +pIV +sQQ +xuY aMl -aMK +xqw aCZ -aOV +gQR aQd -aIE +rkQ anT -aTk -aUk +uVg +tPL aKP aKP aKP -aSh -aTr -aTq -aTq +sPw +pVg +oNb +oNb asH baj baP @@ -68802,8 +59624,8 @@ bda aXr bdY asv -beI -bfs +mJe +xia asv asv asv @@ -68811,65 +59633,65 @@ asv asv asv asv -bqa -bqa -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bqa -bqa -bja +eKx +eKx +erl +erl +erl +erl +erl +erl +erl +erl +erl +erl +eKx +eKx +rRp bes mzV eWo mzV mzV mzV -pvp -mIr -ktN +kNX +ojH +qZN aao aao -fOx -fOx -fOx -kSL -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +xGO aao aao aao @@ -68879,10 +59701,10 @@ aao aao aao aao -tRI -jrD -jrD -oxp +wYt +dUe +dUe +xGO aao aao aao @@ -68895,20 +59717,20 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -vqY +wYt +dUe +dUe +dUe +dUe +itK aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -68917,20 +59739,6 @@ aaa "} (133,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -68939,15 +59747,29 @@ aao aao aao aao -akX -akX -akX -akX -wpf -aad -aad -aad -abV +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gFf +gFf +gFf +gFf +mnV +ljV +ljV +ljV +dSV aao aao aao @@ -68965,7 +59787,7 @@ amE hqO ako ako -apj +oZX ako ako ako @@ -68977,92 +59799,92 @@ ako avI apc axk -axS -ayy -aze -ayy -aAL -aBx -aCg +guI +fAS +dKy +fAS +dnQ +fAS +gcX aCY -aCf +aCZ aET -aFZ +aMQ aCZ anT -aIw -aID -aKC -aLx -aIE +yaD +sQQ +fmD +cPf +rkQ aCZ -aMM +tVu aOW -aQe +fxv aQm aqU -aTk -aUl -aOk -aOk -aOk -aQu -aTr -aTq -aTq +uVg +eLh +wQg +wQg +wQg +iXM +pVg +oNb +oNb asv aXr baO aXr -bck +prG aXr aXr bdY asv -beI -bft +mJe +wdU asv -bgm -bgy -bgS -jLP -bhZ +bHR +fVj +uFa +vgA +sPm asv -gSg -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bja +qdt +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +eKx +rRp bes mzV mzV mzV mzV mzV -pcI -eLQ -ktN +ybi +ojb +qZN aao aao -fOx -fOx -fOx -kok -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +vTR +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -69070,25 +59892,25 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oOk -jrD -jrD -jrD -jrD -jrD -phi -sus +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +pUa +dUe +dUe +dUe +dUe +dUe +gfN +ivC aao aao aao @@ -69096,10 +59918,10 @@ aao aao aao aao -tRI -jrD -jrD -oxp +wYt +dUe +dUe +xGO aao aao aao @@ -69112,20 +59934,20 @@ aao aao aao aao -cOl -jrD -jrD -jrD -oxp +xCX +dUe +dUe +dUe +xGO aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -69134,20 +59956,6 @@ aaa "} (134,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -69158,12 +59966,26 @@ aao aao aao aao -akX -wpf -aad -aad -aad -abM +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qMr +txL +ljV +ljV +diR +xHJ aao aao aao @@ -69181,52 +60003,52 @@ pmS pmS hqO ako -aov -apk -apT -aqW -arx +gJt +mGn +uqD +flN +naR ako -asW -asU -asW +ftJ +sya +ftJ ako avJ apc axl -ovq -ayz -ayz -aAh -aqa -anU -aCf +fvQ +vYQ +qYF +oMN +vYQ +vYQ +scv aCo -aCf -aEU -aFZ aCZ +aEU +aMQ +gAE anT -aIw -aJs -aJv -aLy +yaD +lvM +hlA +fZZ aCZ -aIE +rkQ aML -aOX +cGd aQf -aQh +jXn aqU -aTl -aTu -aTu -aTu -aTu -aTu -aTq -aTq -aTq +oYi +dVe +dVe +dVe +dVe +dVe +oNb +oNb +oNb asv asv asv @@ -69236,88 +60058,88 @@ aXr bdB bdW asv -beI -bft +mJe +wdU asv -bgm -bgz -bgB -bgB -bfR +bHR +ing +sTU +sTU +nzq asv -gSg -bqa -bep -bep -bep -bep -bep -bqa -bqa -bqa -bqa -bep -bep -bep -bjc +qdt +eKx +hUQ +hUQ +hUQ +hUQ +hUQ +eKx +eKx +eKx +eKx +hUQ +hUQ +hUQ +jrq lvy lvy lvy bes mzV -pvp -uvZ +kNX +tIu aao aao aao aao aao -hqS -hqS -tNz -hqS -hqS -hqS -hqS -hqS +iYv +iYv +kVR +iYv +iYv +iYv +iYv +iYv aao aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +xGO aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -sus +dUe +dUe +dUe +dUe +dUe +dUe +ivC aao aao aao @@ -69330,19 +60152,19 @@ aao aao aao aao -tRI -jrD -jrD -vqY +wYt +dUe +dUe +itK aao aao aao aao -jrD -jrD -jcR -jrD -jrD +dUe +dUe +uQO +dUe +dUe aao aab aaa @@ -69351,20 +60173,6 @@ aaa "} (135,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -69376,11 +60184,25 @@ aao aao aao aao -abr -aad -oRs -oRs -abM +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +laC +tjJ +vVQ +uXr +ihX aao aao aao @@ -69398,81 +60220,81 @@ pmS pmS hqO ako -aov -apk -apU -aoB -arx +gJt +mGn +vjf +ixO +naR ako -apU -apU -aoB +vjf +vjf +ixO ako apc avJ apc ako -ako -ako -ako +ish arD +arD +goj +vYQ anU -aCf aCZ -aCf +aCZ aQa -aCf +aCZ aCZ anT -aIx -aID -aJv -aLx -aIE +iXJ +sQQ +hlA +cPf +rkQ aCZ -aNZ +vjr aOY -aQg +gxj aCo aqU -aDy -aSg -aSg -aSg -aSg -aSg -aTq -aTq -aTq +wzP +xBB +xBB +xBB +xBB +xBB +oNb +oNb +oNb asv aXr aXr aXr -bck +prG aXr aXU bdW asv -beI -bft +mJe +wdU asv -bgn -bgz -bgT -bgB -bfR -biE -gSg -bja -bjl +cOq +ing +gHe +sTU +nzq +gwN +qdt +rRp +pQb bes bes bes bes -bpX -bqa -bqa -wGF +mkz +eKx +eKx +rEj bes bes bes @@ -69481,8 +60303,8 @@ bes bes bes mzV -pvp -xeN +kNX +lRL aao aao aao @@ -69490,51 +60312,51 @@ aao aao aao kBn -ujD -ujD -ujD -ujD -ujD -nHQ -ujD +jTO +jTO +jTO +jTO +jTO +dKn +jTO kBn aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -cOl -jrD -iml -jrD -jrD -oxp -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -oxp +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +xCX +dUe +gfU +dUe +dUe +xGO +dUe +dUe +dUe +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +xGO aao aao aao @@ -69547,19 +60369,19 @@ aao aao aao aao -tRI -jrD -oxp +wYt +dUe +xGO aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -69568,128 +60390,128 @@ aaa "} (136,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab aab aao aao aao aao aao -abr -tLt -akX -akX -cJG aao aao aao aao aao aao -akX -alH +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xhS +jZd +gFf +gFf +bwE +aao +aao +aao +aao +aao +aao +gFf +qGK aao aao aao pmS -akW -alG +srS +mdv pmS hqO ako -aow -apk -apU -apU -arx +dSQ +mGn +vjf +vjf +naR aml -apU -apU -aoB +vjf +vjf +ixO aml apc apc apc -axR -ayw -azc -ako +aku +ish +arD arD +goj +vYQ anU -aCf +lpR aCo -aEe aEU -aCf aCZ +rvN anT -aIy -aIC -aKD -aLz +huU +sJQ +wtr +oBD aCZ -aIE +rkQ aOa -aOZ +fJe aMQ -aMN +hkn aqU -aTk -aQu -aVq -aVq -aVq -aQu -aTr -aTq -aTq +uVg +iXM +iLy +iLy +iLy +iXM +pVg +oNb +oNb asH baj fEI bbC asv asv -bdC +ome asv asv -beI -bfu -bfQ -bgo -bgA -bgU -bhn -bgB -bET -gSg -bja -bjm +mJe +fTj +isE +ply +dgJ +daa +blk +sTU +xwn +qdt +rRp +wnj bes bes bes bes -nbc -bep -bep -bjc +fdu +hUQ +hUQ +jrq vVZ aao vVZ @@ -69707,53 +60529,53 @@ aao aao aao aao -mDs -mDs -mDs -mDs -mDs -mDs -mDs +tmh +tmh +tmh +tmh +tmh +tmh +tmh aao aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -phi -phi -phi -phi -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe +dUe +dUe +wYt +dUe +dUe +dUe +dUe +gfN +gfN +gfN +gfN +dUe +dUe rnc rnc rnc rnc -jrD -jrD -phi -sus +dUe +dUe +gfN +ivC aao aao aao @@ -69764,19 +60586,19 @@ aao aao aao aao -tRI -yfz -oxp +wYt +gks +xGO aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -69785,99 +60607,99 @@ aaa "} (137,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -abq -abU -alJ -akX -akX -rYt -akX aao aao aao aao -akX -akY -akX -akX aao aao aao aao -akX -alH -pnL +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +oxV +jbr +whS +sQB +sQB +yip +sQB +aao +aao +aao +aao +gFf +kNZ +gFf +gFf +aao +aao +aao +aao +gFf +qGK +cEZ aao ako -aov -apk -apV -apU -aoB -ask -aoB -aoB -aoB -ask +gJt +mGn +iIk +vjf +ixO +kQY +ixO +ixO +ixO +kQY apc apc apc -ako -ayx -azd -ako +aku +ish +arD arD +goj +vYQ anU -aCf +lpR aCo -aEe aEW -aCf aCZ +rvN anT -aIz -aIC -aKD -aLA -aIE +pDv +sJQ +wtr +hvr +rkQ aML -aOb +nhO aPa -aQh +jXn aRq anT -aTk -aQu -aVr +uVg +iXM +qzg aVY aKP -aSh -aTr -aTq -aTq +sPw +pVg +oNb +oNb asv asv asv @@ -69887,26 +60709,26 @@ bdb aXr aXr asv -beI -bbB -bET -bfR -bgB -bgB -bgB -bia +mJe +hCz +xwn +nzq +sTU +sTU +sTU +qUu asv -bqa -bto -bjm +eKx +jSS +wnj bes bes bes ejP -ujD -ujD -ujD -ujD +jTO +jTO +jTO +jTO vVZ rjw fCb @@ -69926,11 +60748,11 @@ kBn aao aao kBn -ujD -ujD -ujD -ujD -ujD +jTO +jTO +jTO +jTO +jTO vVZ aao aao @@ -69938,39 +60760,39 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -tRI -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +wYt +dUe +dUe +dUe +dUe +dUe rnc rnc rnc rnc -vqY +itK aao aao aao aao -tRI -jrD -jrD -oxp +wYt +dUe +dUe +xGO aao aao aao @@ -69981,19 +60803,19 @@ aao aao aao aao -tRI -jrD -vqY +wYt +dUe +itK aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -70002,128 +60824,128 @@ aaa "} (138,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -oRs -aad -alJ -akX -alH -akX -akX aao aao aao -wMp -akX -akX -akX -akX -wpf aao aao aao -akY -alH -akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +xRj +ljV +ydm +gFf +qGK +gFf +gFf +aao +aao +aao +xzM +gFf +gFf +gFf +gFf +mnV +aao +aao +aao +kNZ +qGK +gFf aao ako -aox -apl -apW -apY -ary +lUj +skw +hbP +qAu +hhC amm -apY -apY -asY +qAu +qAu +laS aml atE aww apc -ako -ako -ako -ako +aku +ish +arD arD +goj +vYQ anU -aCf -aCo -aEf +lpR +nGU aEU -aCf -gAE +aCZ +rvN anT -aIz -aIC -aKD -aLB +pDv +sJQ +wtr +iYE aCZ -aMM +tVu jUc -aOX +cGd aQi -aLE -aSe -aTk -aUm -aUk +qZj +kjW +uVg +hOy +tPL aKP aKP -aSh -aTr -aTq -aTq -aTq -aTq -aTq -aTq +sPw +pVg +oNb +oNb +oNb +oNb +oNb +oNb asv bwA bdD aXU asv -beI -bbB +mJe +hCz asv -bgp -bgp -bgV -bhp -aLi +bUY +bUY +uSy +oVP +fiU asv -bja -beq -bjm +rRp +fXL +wnj bes bhr aao aao -mxf -uij -uij -uVe +mvi +kxe +kxe +rdY brD fCb fCb @@ -70143,38 +60965,38 @@ kBn aao aao aao -pgu -pgu -pgu -pgu -pgu -pgu -pgu -pgu +lah +lah +lah +lah +lah +lah +lah +lah aao aao aao aao -oxp -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD +xGO +dUe +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao -sqj -jrD -jrD -jrD +rIW +dUe +dUe +dUe rnc rnc -vqY +itK aao aao aao @@ -70184,11 +61006,11 @@ aao aao aao aao -jrD +dUe hAj -jrD -jrD -sus +dUe +dUe +ivC aao aao aao @@ -70196,21 +61018,21 @@ aao aao aao aao -sqj -phi -jrD -oxp +rIW +gfN +dUe +xGO aao aao aao aao aao aao -jcR -jrD -jrD -jrD -jrD +uQO +dUe +dUe +dUe +dUe aao aab aaa @@ -70219,103 +61041,103 @@ aaa "} (139,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -akX -hKM -aad -wMp -akX -akX -akX -akX aao aao -alJ -akX -akX -akX -wpf -aad -ack -aad -abq -akZ -alI -alH +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gFf +lnv +ljV +xzM +gFf +gFf +qMr +gFf +aao +aao +ydm +gFf +gFf +gFf +mnV +ljV +ljV +ljV +ljV +iYZ +mVT +qGK aao ako -aov -apk -aoB -aoB -ahq +gJt +mGn +ixO +ixO +qiG ako -asV -aoB -aue +bPN +ixO +ocg ako atE apc apc -axR -ayw -azc -ako +aku +ish arD +arD +goj +vYQ anU -aCf -aCZ +rvN aCZ aQa aCZ -aGK +xfo anT -aIz -aIC -aKD -aLC -aIE +pDv +sJQ +wtr +tgX +rkQ aCo -aOd +aLl aPb -aQj +tFq aRr -tKR -aTk -aQu -aUk +scv +uVg +iXM +tPL aKP aKP -aSh -aTr -aTq -aTq -aTq -aTq -aTq -aTq +sPw +pVg +oNb +oNb +oNb +oNb +oNb +oNb asv asv asv @@ -70330,17 +61152,17 @@ asv asv asv asv -bja -beq -bhq +rRp +fXL +tZX bes bes aao aao -neH -whi -bqb -iXp +eNV +mWj +jHK +gfo aao aao rjw @@ -70350,7 +61172,7 @@ aao aao aao pcF -fjP +gtU dIb dIb dIb @@ -70360,38 +61182,38 @@ kBn aao aao aao -kSL -kSL -fOx -fOx -fOx -fOx -fOx -fOx +pzK +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao aao aao -jrD -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +xGO +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao -tRI -jrD -jrD -oxp -jrD -jrD -jrD +wYt +dUe +dUe +xGO +dUe +dUe +dUe aao aao aao @@ -70401,33 +61223,33 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -phi -phi -phi -phi -phi -phi -phi -jrD -jrD -jrD -vqY +dUe +dUe +dUe +dUe +dUe +gfN +gfN +gfN +gfN +gfN +gfN +gfN +dUe +dUe +dUe +itK aao aao aao aao aao -jrD -jrD -jrD -jrD -jcR -jrD +dUe +dUe +dUe +dUe +uQO +dUe aao aab aaa @@ -70436,128 +61258,128 @@ aaa "} (140,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -alH -cJG -aad -alJ -akX -akX -vRR -akX aao aao -abr -akZ -akZ -fhI -aad -aad -abM -aad -abr -aad -alJ -akY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +qGK +aXf +ljV +ydm +gFf +gFf +nEe +gFf +aao +aao +oUZ +iYZ +iYZ +fid +ljV +ljV +ljV +ljV +ljV +ljV +ydm +kNZ aao ako -aoy -apk -aoB -aqW -arx +vPy +mGn +ixO +flN +naR ako -asW -asW -asW +ftJ +ftJ +ftJ ako avJ avJ axi ako -ayx -azd -ako +ish +arD arD +goj +anT anT anY anY -anY -cYI -aGa +tis +uWu anY anT -aIz -aJt -aKE -aLD +pDv +rnM +sar +vOi aCZ -aMN +hkn aOe -aPc +cYR aQk -aIE +rkQ anT -aTk -aQu -aVs +uVg +iXM +bnI aKP aKP -aSh -aXW -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -bep -bep -bep -bep -bep -bep -bep -bep -bep -kIW -bjc -bjm +sPw +kZa +xBB +xBB +xBB +xBB +xBB +xBB +xBB +xBB +xBB +xBB +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hUQ +hJq +jrq +wnj bes bes bes aao kBn -ujD -ujD -ujD -ujD +jTO +jTO +jTO +jTO vVZ brE fCb @@ -70576,39 +61398,39 @@ dIb kBn aao aao -fOx -fOx -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao -sqj -jrD -jrD -jrD -oxp -jrD -jrD -jrD +rIW +dUe +dUe +dUe +xGO +dUe +dUe +dUe aao aao aao @@ -70618,33 +61440,33 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe rnc -vqY -jrD +itK +dUe aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aab aaa @@ -70653,55 +61475,55 @@ aaa "} (141,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -akY -akX -hKM -aad -wMp -akX -akX -wpf aao aao -abr -aad -aad -aad -aad -aad -aad -aad -aad -oRs -tLt -akY +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +kNZ +gFf +lnv +ljV +xzM +gFf +gFf +mnV +aao +aao +oUZ +ljV +ljV +ljV +ljV +ljV +ljV +ljV +ljV +xRj +jZO +kNZ aao akL akU -apm +oBP akU akU akL @@ -70710,15 +61532,15 @@ akL akL akL akL -atE +kQV apc avJ ako -ako -ako -ako +ish arD -anT +arD +goj +anU aCi aCZ aCZ @@ -70727,54 +61549,54 @@ aCo aGL anT anT -aJz +hxc anT anT -aIE +rkQ aMO -aOf +rsM aPa -aQl +pwE aCo aqU -aTk -aUk +uVg +tPL aKP aKP aKP -aWK -aVq -aQu -aQu -aVq -aVq -aQu -aQu -aQu -aQu -aVq -aVq -beq -beq -beq -beq -beq -beq -beq -beq -beq -rBK -bfw -bhq +qnp +iLy +iXM +iXM +iLy +iLy +iXM +iXM +iXM +iXM +iLy +iLy +fXL +fXL +fXL +fXL +fXL +fXL +fXL +fXL +fXL +dNs +fLv +tZX bes bes bes bes aao -mxf -uij -uij -uVe +mvi +kxe +kxe +rdY vVZ vVZ vVZ @@ -70792,24 +61614,24 @@ dIb iZA kBn aao -fOx -fOx -fOx -kVS -fOx -dov -fOx -fOx -fOx -fOx -oye +wKJ +wKJ +wKJ +nQD +wKJ +uFq +wKJ +wKJ +wKJ +wKJ +qLx aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -70818,14 +61640,14 @@ aao aao aao aao -tRI -jrD -jrD -nbi -oxp -jrD -jrD -jrD +wYt +dUe +dUe +dFZ +xGO +dUe +dUe +dUe aao aao aao @@ -70835,9 +61657,9 @@ aao aao aao aao -jrD -phi -jrD +dUe +gfN +dUe rnc rnc rnc @@ -70847,20 +61669,20 @@ rnc rnc rnc rnc -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe aao aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aab @@ -70870,72 +61692,72 @@ aaa "} (142,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -hKM -aad -aad -akZ -akZ -abM aao aao -cJG -aad -aad -aad -aad -oRs -oRs -aad -alJ -akX -akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +lnv +ljV +ljV +iYZ +iYZ +xHJ +aao +aao +aXf +ljV +ljV +ljV +ljV +xRj +xRj +ljV +ydm +gFf +gFf aao aao akL -aoA -apk -apX -apU -arA -apU -asX -aoB -auf -akL -atE -apc -apc +dsH +mGn +sXI +vjf +rjb +vjf +cbB +ixO +fGO +tUO +ant +ant +ant ako -aao -arD +ish arD arD -anT +goj +anU aCj aCo aCo @@ -70943,55 +61765,55 @@ aEU aCZ aCZ anT -aIA -aJv -aKF +qhS +hlA +qkO anT aCZ -aMP +iIr aOg -aPe +orH aQm -aLE +qZj aqU -aTk -aUk +uVg +tPL aKP aKP aKP aKP aKP -aWK -aQu +qnp +iXM aKP aKP -aWK -aVq -aVq -aVs +qnp +iLy +iLy +bnI aKP aKP -ber -beq -beq -beq -beq -beq -beq -beq -bhq +uAc +fXL +fXL +fXL +fXL +fXL +fXL +fXL +tZX iVi bes bes bes -bkh -bkV -bkV -aao -cAs -mDs -mDs -ooD +xjv +uQb +uQb +aao +mPP +tmh +tmh +rKW vVZ fCb fCb @@ -71008,25 +61830,25 @@ dIb dIb kBn kBn -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -dov -fOx -gOr -jrD -jrD -jrD -jcR -jrD -jrD +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +uFq +wKJ +dzb +dUe +dUe +dUe +uQO +dUe +dUe aao aao aao @@ -71035,14 +61857,14 @@ aao aao aao aao -tRI -jrD +wYt +dUe rnc -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -71052,32 +61874,32 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +wYt +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aab @@ -71087,25 +61909,6 @@ aaa "} (143,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -71113,66 +61916,85 @@ aao aao aao aao -abr -aad -aad -aad -aad -tLt aao -akX -hKM -aad -aad -tLt -akX -akX -cJG -tLt -akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +oUZ +ljV +ljV +ljV +ljV +jZO +aao +gFf +lnv +ljV +ljV +jZO +gFf +gFf +aXf +jZO +gFf aao aao aao akL -aoB -apk -aoB -apU -apU -apU -aoB -apU -aoB +ixO +mGn +ixO +vjf +vjf +vjf +ixO +vjf +ixO akL -atE -apc -apc -ako -aao -arD -arD -arD -anT +fln +qYF +qYF +qYF +kpB +fgR +ixX +goj +anU mjc aCo aCo aEZ aGb aEd -aHL -aIB -aJw -aKG +ePc +eDc +ecZ +lCc anT -aMm +vbt aMQ -aOd +aLl aPb -aIE +rkQ aCZ aqU -aTk -aUk +uVg +tPL aVt aKP aKP @@ -71189,27 +62011,27 @@ aKP aKP aKP bes -ber -bfw -bfw -bfw -bfw -bfw -bhq +uAc +fLv +fLv +fLv +fLv +fLv +tZX bes iVi bes bes bes -bki -beq -beq -aao -cAs -mDs -mDs -ooD -myY +gEX +fXL +fXL +aao +mPP +tmh +tmh +rKW +yhR kTs fCb bsH @@ -71224,25 +62046,25 @@ dIb dIb dIb ssE -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -gOr -jrD -jrD -jrD -jrD -jrD +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +dzb +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -71252,48 +62074,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -sus -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +ivC +dUe aao -sqj -phi -phi -phi -phi -phi -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +rIW +gfN +gfN +gfN +gfN +gfN +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -71304,25 +62126,6 @@ aaa "} (144,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -71330,45 +62133,64 @@ aao aao aao aao -abs -aad -aad -aad -alJ -akX -vRR -akX -hKM -aad -alJ -akX -akX -akY -akX -vRR -akX aao aao aao -akL -aoB -apn -apY -apY -arB -apY -asY -aoB -aug -akL -atE -apc -apc -ako aao aao -arD -arD +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ipB +ljV +ljV +ljV +ydm +gFf +nEe +gFf +lnv +ljV +ydm +gFf +gFf +kNZ +gFf +nEe +gFf +aao +aao +aao +akL +ixO +tDU +qAu +qAu +qro +qAu +laS +ixO +evG +akL +hPK +vwu +vwu +vwu +vwu +vwu +uJz +goj anT aCl aDa @@ -71376,21 +62198,21 @@ aDa aFa aEU aCZ -tKR -aIC -aJx -aKH +scv +sJQ +vLD +dAx anT aCZ -aIE +rkQ aCZ -aQc +soC aQn -aIE +rkQ anT -aTk -aQu -aVr +uVg +iXM +qzg aKP aKP aKP @@ -71417,16 +62239,16 @@ bes iVi bes bes -bkh -beq -beq +xjv +fXL +fXL aao aao -cAs -mDs -mDs -ooD -myY +mPP +tmh +tmh +rKW +yhR fCb fCb fCb @@ -71441,23 +62263,23 @@ dIb dIb dIb ssE -kSL -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -gOr -jrD -jrD -jrD +pzK +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +dzb +dUe +dUe +dUe aao aao aao @@ -71469,48 +62291,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -oxp -jrD -sqj -jrD -jrD -jrD -jrD -jrD -jrD -jrD -oxp -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +uQO +xGO +dUe +rIW +dUe +dUe +dUe +dUe +dUe +dUe +dUe +xGO +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao -jrD -jrD -jrD -yfz -jrD -jrD +dUe +dUe +dUe +gks +dUe +dUe aao aao aao @@ -71521,25 +62343,6 @@ aaa "} (145,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -71548,44 +62351,63 @@ aao aao aao aao -abs +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ipB abO -aad -tLt -akY -akX -wpf -aad -aad -alJ -akX -akX -akX -akX +ljV +jZO +kNZ +gFf +mnV +ljV +ljV +ydm +gFf +gFf +gFf +gFf aao aao aao aao aao akL -gMK -aoB -apZ -aoB -arC -aoB -asZ -aoB -auh +kID +ixO +tuT +ixO +dPT +ixO +imy +ixO +imy akL -apc -apc -apc -ako -aao -aao -arD -arD +ish +vwu +myC +nQR +xog +toM +uJz +goj anT aCm aCZ @@ -71594,20 +62416,20 @@ aCZ aQa aCZ anT -aID -aJv -aKI +sQQ +hlA +gEf anT -aMn +lFe aEd -aOh +shv aPh -aOV +gQR aCZ aqU -aTk -aUn -aUk +uVg +xIN +tPL aKP aKP aKP @@ -71634,15 +62456,15 @@ bes iVi bes bes -bki -bky +gEX +kAr aao aao aao -cAs -mDs -mDs -ooD +mPP +tmh +tmh +rKW vVZ fCb kTs @@ -71658,21 +62480,21 @@ dIb dIb kBn kBn -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -dov -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +uFq +wKJ gio -fOx -gOr -jrD +wKJ +dzb +dUe aao aao aao @@ -71686,48 +62508,48 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe rnc rnc rnc -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe rnc -vqY +itK aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -71738,25 +62560,6 @@ aaa "} (146,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -71766,16 +62569,35 @@ aao aao aao aao -abr -alJ -akX -buQ -akX -hKM -aad -aad -tLt -akX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +oUZ +ydm +gFf +jko +gFf +lnv +ljV +ljV +jZO +gFf aao aao aao @@ -71795,15 +62617,15 @@ akL akL akL akL -avK -awx -axm -ako -aao -aao -arD -arD -anT +ish +vwu +myC +uou +aao +dha +toM +goj +anU aCn aCZ aCo @@ -71812,19 +62634,19 @@ aQa aCZ anT anT -aJz +hxc anT anT aEU -aLE +qZj aML -aOb +nhO aQo -aQl +pwE aqU -aTo -aUo -aUk +sIm +hcr +tPL aKP aKP aKP @@ -71851,15 +62673,15 @@ bes iVi bes bes -bki -beq +gEX +fXL aao aao aao -sJq -bpZ -bpZ -qkC +jkB +wBs +wBs +eil vVZ kTs fCb @@ -71872,20 +62694,20 @@ pcF kBn kBn kBn -fjP +gtU kBn -fOx -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx -fOx -oye +wKJ +wKJ +wKJ +wKJ +uFq +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +qLx aao aao aao @@ -71902,25 +62724,25 @@ aao aao aao aao -sqj -oxp -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +rIW +xGO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe rnc -jrD -jrD -jrD -jrD -jrD -jrD -oxp -jrD +dUe +dUe +dUe +dUe +dUe +dUe +xGO +dUe aao aao aao @@ -71929,22 +62751,22 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -71955,25 +62777,6 @@ aaa "} (147,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -71984,11 +62787,6 @@ aao aao aao aao -brc -buP -fbF -isr -iZh aao aao aao @@ -72003,24 +62801,48 @@ aao aao aao aao -tAW -aqa -aqa -aqa -aqa -ata -ata -ata -ann -ant -ant -ant -ako aao aao -arD -arD -anT +aao +aao +aao +ipK +rFi +rFi +rFi +ipK +ipK +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +fFK +qYF +qYF +qYF +qYF +oMN +oMN +oMN +qYF +kpB +vwu +vwu +uou +aao +aao +nnq +goj +anU aCo aCZ aEg @@ -72028,20 +62850,20 @@ aCo aQa aCZ anT -aIE +jIO aJA -aKJ +tYJ aEd -aMo +dqQ aCZ -aMM +tVu aPi -aQp +fIz aQm aqU -aTp -aTk -aUk +sIm +jty +tPL aKP aKP aKP @@ -72068,15 +62890,15 @@ bes iVi bes bes -bki +gEX aao aao aao aao -lSS -nUV -nUV -rRO +imH +fke +fke +jQk pbr pbr pbr @@ -72089,19 +62911,19 @@ pcF aao aao aao -wbp -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +rLD +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -72119,25 +62941,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +wYt +xGO +dUe +dUe +dUe +dUe aao aao aao aao aao -tRI -jrD -jrD -jrD -iml -jrD -vqY -jrD +wYt +dUe +dUe +dUe +gfU +dUe +itK +dUe aao aao aao @@ -72146,21 +62968,21 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -72172,25 +62994,6 @@ aaa "} (148,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -72200,11 +63003,6 @@ aao aao aao aao -arK -szg -szg -szg -arK aao aao aao @@ -72216,28 +63014,52 @@ aao aao aao aao -amG aao aao aao aao aao aao -arD -asm -arD -arD -arD -arD -arD -arD -arD -arD aao aao -arD -arD -anT +xqS +ngP +ngP +cPO +ngP +ngP +xqS +aao +aao +aao +aao +aao +aao +aao +aao +aao +tfv +aao +aao +aao +aao +aao +aao +vwu +wUg +vwu +vwu +vwu +myC +vwu +vwu +vwu +sHd +dha +aao +nnq +goj +anU aCp aDb aEh @@ -72246,19 +63068,19 @@ aQa aCZ anT aIF -aJB -aKK -aLE +jOj +aCZ +qZj aMp -aLE +qZj aCo -aPj +czw aQq -aRs +xfM anT -aTp -aUp -aUk +sIm +oij +tPL aKP aKP aKP @@ -72289,33 +63111,33 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao aao aao aao -fOx -fOx -dov -fOx -kSL -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +uFq +wKJ +pzK +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -72336,25 +63158,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +wYt +xGO +dUe +dUe +dUe +dUe aao aao aao aao aao -tRI -jrD -jrD -jrD -jrD -oxp -jrD -jrD +wYt +dUe +dUe +dUe +dUe +xGO +dUe +dUe aao aao aao @@ -72364,18 +63186,18 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jcR -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +uQO +dUe +dUe aao aao aao @@ -72389,25 +63211,6 @@ aaa "} (149,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -72417,11 +63220,6 @@ aao aao aao aao -aTv -aTv -aTv -aTv -aTv aao aao aao @@ -72433,9 +63231,6 @@ aao aao aao aao -wQC -gXp -eMX aao aao aao @@ -72443,23 +63238,50 @@ aao aao aao aao -arD -arD -arD aao -arD -arD -arD +xqS +pZy +dFa +dFa +dFa +cLw +xqS aao -arD -arD -arD +aao +aao +aao +aao +aao +aao +aao +aao +ehQ +upa +ixS +aao +aao +aao +aao +aao +aao +aao +rqN +rqN +aao +aao +myC +vwu +myC +sHd +nwb +cSD +goj anW anW anW anW anW -aGc +iRh anW anW anW @@ -72473,24 +63295,24 @@ anW anW anW anW -aTq -aUp -aUk +wzP +oij +tPL aKP aKP aKP aKP -aSi -aZe -aTu -aZe -aZe -aZe -aTu -aZe -aZe -aTu -kwQ +vit +mJj +dVe +mJj +mJj +mJj +dVe +mJj +mJj +dVe +ejG bes bes bes @@ -72506,32 +63328,32 @@ aao aao aao aao -fOx -fOx -nrw -nrw -nrw -qoj -fOx -kok -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -kSL -fOx -fOx -fOx -fOx +wKJ +wKJ +lve +lve +lve +ejh +wKJ +vTR +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +pzK +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -72553,25 +63375,25 @@ aao aao aao aao -tRI -oxp -jrD -jrD -jrD -jrD +wYt +xGO +dUe +dUe +dUe +dUe aao aao aao aao aao -cOl +xCX rnc rnc rnc rnc -vqY -jrD -jrD +itK +dUe +dUe aao aao aao @@ -72582,17 +63404,17 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -72606,25 +63428,6 @@ aaa "} (150,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -72633,14 +63436,6 @@ aao aao aao aao -gNH -szg -szg -szg -heI -szg -szg -gNH aao aao aao @@ -72648,56 +63443,83 @@ aao aao aao aao -qQn -gXp -tQw -tQw -tQw -eMX aao aao aao aao aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +xqS +ngP +ngP +ngP +ngP +ngP +xqS +aao +aao +aao +aao +aao +aao +aao +wrW +upa +eGt +eGt +eGt +ixS +aao +aao +aao +aao +aao +lTk +dha +dha +bFR +aao +aao +vwu +vwu +vwu +vwu +myC +lYK +vYQ +anW +wSs +lTU +mcF +pkf +nxZ anW -aDc -aEi -aDc -aDg -aDc -aEi -aDc -aJC -aKL -aEi -aDc -aEi -aDc -aEi -aQr +kZO +wSs +wSs anW -aTq -aTq -aTk -aUk +wSs +anW +kZO +kZO +kZO +anW +oNb +wzP +jty +tPL aKP aWL aKP aKP -aTr +pVg atb atb atP @@ -72706,8 +63528,8 @@ atP atP atP atb -iIp -bja +pfu +rRp bes bes bes @@ -72722,31 +63544,31 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -nrw -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -kSL -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +lve +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +pzK +wKJ aao aao aao @@ -72770,12 +63592,12 @@ aao aao aao aao -tRI -oxp -jrD -jcR -jrD -jrD +wYt +xGO +dUe +uQO +dUe +dUe aao aao aao @@ -72783,12 +63605,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -72799,16 +63621,16 @@ aao aao aao aao -jrD -jcR -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +uQO +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -72823,25 +63645,6 @@ aaa "} (151,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -72850,27 +63653,7 @@ aao aao aao aao -aac -azF -azF -azF -azF -azF -azF aao -kpf -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -xFZ -anj -tQw -tQw aao aao aao @@ -72878,53 +63661,92 @@ aao aao aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +cpM +cpM +cpM +cpM +cpM +cpM +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +nDC +eGt +xFZ +anj +eGt +eGt +aao +aao +aao +eDU +vTI +iwD +lTk +dha +nnq +myC +lUr +vwu +vwu +vwu +vwu +vwu +vwu +goj anW -aDc -aEi -aDc -aDg -aDc -aEi -aDc -aEi -aDc -aEi -aDc -aEi -aDc -aEi -aEi +wSs +qGM +qGM +pkf +qGM +gOl +qGM +qGM +lTU +bSo +lTU +djQ +qGM +qGM +qGM aqx -aTq -aTq -aUp -aUk +oNb +wzP +oij +tPL aKP aKP aKP aKP -aTr +pVg atb -aZH -bal -bal -bal -bal -bal -bdE +mvE +kPY +kPY +kPY +kPY +kPY +qqf atb -bja +rRp bes bes bes @@ -72939,29 +63761,29 @@ aao aao aao aao -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +uFq +wKJ +wKJ +wKJ +wKJ +wKJ aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -72987,12 +63809,12 @@ aao aao aao aao -tRI -jrD -jrD -jrD -jrD -jrD +wYt +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73000,12 +63822,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jcR +dUe +dUe +dUe +dUe +dUe +uQO aao aao aao @@ -73017,14 +63839,14 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73040,25 +63862,6 @@ aaa "} (152,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -73067,27 +63870,6 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -wQC -tQw -ahx -tQw -pIN -eFh -tQw -tQw -tQw -tQw aao aao aao @@ -73096,52 +63878,92 @@ aao aao aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +nDC +eGt +eGt +eGt +ehQ +eGt +qId +eGt +nDC +lfk +eGt +eGt +eGt +eGt +aao +aao +oSU +vTI +vTI +vTI +eDU +ePP +nnq +myC +lUr +vwu +vwu +myC +vwu +vwu +myC +goj anW -aDc -aEi -aDe -aGe -aGN -aHM -aHM -aHM -aKM -aLF -aLF -aLF -aLF -aPk -aEi +wSs +lTU +hZv +wVs +esU +esU +esU +bFL +gtC +mgm +gpI +qGM +gpI +fXX +fvg aqx -aTq -aTq -aUp -aQu -aVr +oNb +wzP +oij +iXM +qzg aKP aKP aKP -aTr +pVg atd -nRT -bam -bal -bbD -bal -bdd -nRT +lEr +jMX +kPY +pZk +kPY +dZP +lEr atb -bja +rRp bes bes bes @@ -73156,28 +63978,28 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao -fOx -fOx -fOx -dov -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +uFq +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -73203,13 +64025,13 @@ aao aao aao aao -jrD -tRI -jrD -jrD -jrD -jrD -jrD +dUe +wYt +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73217,12 +64039,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73235,12 +64057,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73257,25 +64079,6 @@ aaa "} (153,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -73284,28 +64087,6 @@ aao aao aao aao -tQw -ahw -tQw -tQw -tQw -ahw -tQw -pIN -tQw -tQw -mRi -wQC -tQw -tQw -tQw -kfk -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -73313,52 +64094,93 @@ aao aao aao aao -arD -arD -awy -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +hJx +eGt +eGt +eGt +hJx +eGt +nDC +eGt +eGt +suL +ehQ +eGt +eGt +eGt +kfk +eGt +eGt +eGt +eGt +eGt +aao +eDU +vTI +vTI +vTI +vTI +iwD +ePP +dha +toM +hlq +vwu +myC +vwu +vwu +vwu +vwu +goj +anW anW -aDc -aEi -aDg -aEi -aGO -aHN -aIG -aIG -aKN -aLG -aLG -aLG -aOi -aPl -aQs +mXa +eEl +rcd +gpI +grG +gpI +qGM +yba +esU +esU +hIx +esU +jvJ +meX anW -aTq -aTp -aUp -aQu -aUk +oNb +sIm +oij +iXM +tPL aKP aKP aKP -aTr +pVg atd -nRT -ban -baR -str -baR -baR -nRT +lEr +qCH +glu +eFA +glu +glu +lEr atb -bja +rRp bes bes bes @@ -73374,24 +64196,24 @@ aao aao aao aao -fOx -fOx -fOx -kSL -fOx -fOx -fOx +wKJ +wKJ +wKJ +pzK +wKJ +wKJ +wKJ aao aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -73419,13 +64241,13 @@ aao aao aao aao -sqj -jrD -jrD -jrD -jrD -sus -jrD +rIW +dUe +dUe +dUe +dUe +ivC +dUe aao aao aao @@ -73434,12 +64256,12 @@ aao aao aao aao -jcR -jrD -jrD -jrD -jrD -jrD +uQO +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73452,11 +64274,11 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73474,25 +64296,6 @@ aaa "} (154,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -73501,81 +64304,100 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -ahw -tQw -wQC -tQw -tQw -sNQ aao -wQC -tQw -tQw -ahw -tQw -tQw -tQw aao aao aao aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +nDC +eGt +hJx +eGt +ehQ +eGt +eGt +eDE +aao +ehQ +eGt +eGt +hJx +eGt +eGt +ouY +vTI +vTI +vTI +vTI +vTI +aao +aao +dha +lGf +vwu +vwu +vwu +vwu +vwu +vwu +goj anW -aDd -aEi -aDg -aEi -aEi -aEi -aEi -aEi -aEi -aEi -aDc -aEi -aOj -aPm -aQt -aRu -nnK -aTt -aUq -aQu -aUk +vkz +qZK +fRp +nEw +lTU +lTU +lTU +qGM +qGM +qGM +xbt +ltw +gpI +kpn +bFL +rIQ +syA +ehR +oij +iXM +tPL aKP aKP -aMR -aTr +vWg +pVg atb -nRT -bao -baS -bbF -bao -baS -bdF +lEr +gBy +jiP +hcR +gBy +jiP +kCJ atb -bja +rRp bes bes aEX @@ -73592,22 +64414,22 @@ aao aao aao aao -fOx -fOx -fOx -fOx -fOx -fOx +wKJ +wKJ +wKJ +wKJ +wKJ +wKJ aao aao aao aao aao -qoj -fOx -fOx -fOx -fOx +ejh +wKJ +wKJ +wKJ +wKJ aao aao aao @@ -73636,13 +64458,13 @@ aao aao aao aao -tRI -jrD -jrD -jrD -tRI -jrD -sus +wYt +dUe +dUe +dUe +wYt +dUe +ivC aao aao aao @@ -73651,12 +64473,12 @@ aao aao aao aao -jrD -jrD -jrD -jrD -jrD -jrD +dUe +dUe +dUe +dUe +dUe +dUe aao aao aao @@ -73670,10 +64492,10 @@ aao aao aao aao -gOr -gOr -gOr -gOr +dzb +dzb +dzb +dzb aao aao aao @@ -73691,25 +64513,6 @@ aaa "} (155,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -73717,82 +64520,101 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -ujC -ujC -tQw -pIN -tQw -qvA -tQw -wQC -tQw -dKR aao aao -gmN -tQw -tQw -ujC -ujC -tQw -tQw aao aao aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +tro +tro +eGt +nDC +eGt +hKe +eGt +ehQ +eGt +ycy +aao +aao +vAx +eGt +eGt +tro +tro +eGt +hff +eDU +vTI +vTI +aao +aao +aao +aao +aao +wIj +toM +myC +myC +vwu +vwu +vwu +goj anW -aDe -aQt -aEl -aGf -aEi -aHO -aIH -aJD -aKO -aEi -aEi -aEi -aOj -aPn -aEi -ocA -aTq -aTp -aUr -aQu -aQu -aOk -aOk -aQu -aTr +qCW +hVU +qCW +hVU +qGM +xDp +nCO +kJu +wUj +qGM +xbt +dbD +qGM +qMn +lTU +mHK +oNb +sIm +oij +iXM +iXM +wQg +wQg +iXM +pVg atd -nRT -bap -baT -bbF -bap -baT -nRT +lEr +wWG +cUv +hcR +wWG +cUv +lEr atb -bja +rRp bes bes aEX @@ -73810,10 +64632,10 @@ aao aao aao aao -fOx -fOx -kSL -fOx +wKJ +wKJ +pzK +wKJ aao aao aao @@ -73821,12 +64643,12 @@ aao aao aao aao -qoj -fOx -gCE -gCE -gCE -gCE +ejh +wKJ +gBH +gBH +gBH +gBH aao aao aao @@ -73851,15 +64673,15 @@ aao aao aao aao -gNz -cpc -bLA -bLA -bLA +hgU +rWD +uCS +uCS +uCS aao -dEr -bLA -sIP +lTp +uCS +iPy aao aao aao @@ -73868,11 +64690,11 @@ aao aao aao aao -bLA -bLA -bLA -bLA -bLA +uCS +uCS +uCS +uCS +uCS aao aao aao @@ -73887,10 +64709,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -73908,25 +64730,6 @@ aaa "} (156,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -73934,82 +64737,101 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -tQw -tQw -rLR aao aao aao -gmN -tQw -ujC -ujC -tQw -tQw -tQw -tQw aao aao -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -arD -aMk +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +nDC +eGt +eGt +eGt +eGt +eGt +igq +aao +aao +aao +vAx +eGt +tro +tro +eGt +eGt +piw +piw +aao +aao +aao +dha +bFR +dha +dha +bFR +jOa +toM +vwu +vwu +vwu +goj anW -aDf anW anW anW -aEi -aHO -lDa -lDa -aKO -aEi -aDc -aEi -aOj -aPo -aQs anW -aTq -aTq -aUs -aSf -aSf -aWM -aSf -aSf -aYv +syl +xbt +sPp +sPp +wUj +qGM +qGM +ntU +jRE +lPV +lBO +anW +oNb +vpd +hYM +nGw +nGw +crt +nGw +nGw +tcX atd -nRT -baq -baU -bbF -bar -baU -nRT +lEr +rxG +oDY +hcR +kOT +oDY +lEr atb -bja +rRp bes bes bes @@ -74027,35 +64849,56 @@ aao aao aao aao -gCE -gCE -ecK -gCE +gBH +gBH +pqa +gBH +aao +aao +aao +aao +aao +gBH +gBH +gBH +cHi +cHi +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +aao +aao +aao +aao +aao +aao +aao +aao aao aao aao aao aao -gCE -gCE -gCE -rAs -rAs -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE aao aao aao aao aao aao +hdR +ggO +sPb +ggO +ggO aao +rYG +ggO +uqM aao aao aao @@ -74064,19 +64907,16 @@ aao aao aao aao +ggO +ggO +ggO +ggO +ggO aao aao aao aao -bTW -izh -jGd -izh -izh aao -lUq -izh -uPm aao aao aao @@ -74085,12 +64925,11 @@ aao aao aao aao -izh -izh -izh -izh -izh aao +ggO +ggO +ggO +ggO aao aao aao @@ -74101,13 +64940,25 @@ aao aao aao aao +aab +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao aao aao aao -izh -izh -izh -izh aao aao aao @@ -74118,115 +64969,86 @@ aao aao aao aao -aab -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aao -aao aao aao aao -tQw -tQw -tQw -tQw -ujC -ujC -tQw -tQw -tQw +eGt +eGt +eGt +eGt +tro +tro +eGt +eGt +eGt aao -laj -tQw -tQw -tQw -eFh +hEt +eGt +eGt +eGt +lfk aao aao aao aao aao -wQC -tQw -tQw -tQw -ahw -tQw -tQw +ehQ +eGt +eGt +eGt +hJx +eGt +eGt aao aao aao aao -arD -arD -arD +dha +dha +dha aao aao aao -arD -arD -arD -aMk +vwu +vwu +vwu +goj +vYQ +vYQ +vYQ +vYQ anW -aDg -mEn -aui -anW -voz -aEi -aEi -aEi -aEi -aEi -aDc -aEi -aGO -aPp -aEi +qpQ +kIn +kIn +lTU +wAN +kIn +qGM +qGM +qGM +fzg +htL aqx -aTq -aTq -foT -aSg -aSg -aSg -aSg -aSg -qhl +oNb +wzP +oFM +xBB +xBB +xBB +xBB +xBB +sIm atb -nRT -bap -baT -bbF -bcl -baT -nRT +lEr +wWG +cUv +hcR +dFE +cUv +lEr atb -bja +rRp bes bes bes @@ -74244,31 +65066,31 @@ bes aao aao aao -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH aao -gCE +gBH aao aao -gCE -gCE -gCE +gBH +gBH +gBH gpg gpg gpg -gCE -gCE -gCE +gBH +gBH +gBH gpg -gCE -gCE -gCE -gCE -gCE -buy +gBH +gBH +gBH +gBH +gBH +ilf aao aao aao @@ -74284,16 +65106,16 @@ aao aao aao aao -fRH -izh -izh -izh -izh +pAE +ggO +ggO +ggO +ggO aao aao aao -bTW -uPm +hdR +uqM aao aao aao @@ -74302,11 +65124,11 @@ aao aao aao aao -izh -izh -jGd -izh -izh +ggO +ggO +sPb +ggO +ggO aao aao aao @@ -74321,10 +65143,10 @@ aao aao aao aao -izh -izh -jGd -izh +ggO +ggO +sPb +ggO aao aao aao @@ -74342,108 +65164,108 @@ aaa "} (158,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -tQw -ahw -tQw -tQw -ujC -ujC -tQw -tQw -tQw aao aao -wQC -tQw -tQw -tQw -kBB aao aao aao aao -wQC -tQw -tQw -tQw -tQw -ujC -tQw -tQw aao aao aao -arD -arD aao aao aao aao -arD -arD -arD -aMk -anW -aDh -aEl -aEi +aao +aao +aao +aao +aao +aao +eGt +hJx +eGt +eGt +tro +tro +eGt +eGt +eGt +aao +aao +ehQ +eGt +eGt +eGt +lpQ +aao +aao +aao +aao +ehQ +eGt +eGt +eGt +eGt +tro +eGt +eGt +aao +aao +aao +dha +bFR +aao +aao +aao +aao +myC +myC +vwu +goj +vYQ +vYQ +vYQ +vYQ anW -aGQ -aEi -aEi -aEi -aGQ -aEi -aEi -aGQ -aEi -aEi -aEi +kEF +htL +clQ +lTU +oAL +clQ +tim +qiu +sBF +sBF +nBq aqx -aTq -aTq -aUp -aQu -aVq -aVq -aQu -aQu -aYx +oNb +wzP +oij +iXM +iLy +iLy +iXM +iXM +qyr atd -nRT -bar -baU -bbF -bar -baU -nRT +lEr +kOT +oDY +hcR +kOT +oDY +lEr atb -bja +rRp bes bes bes @@ -74461,31 +65283,31 @@ bes aao aao aao -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -usG -gCE -gCE -gCE -qFY +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +bRT +gBH +gBH +gBH +ddH aao aao aao @@ -74501,16 +65323,16 @@ aao aao aao aao -bTW -izh -uPm -izh -izh +hdR +ggO +uqM +ggO +ggO aao aao aao -bTW -uPm +hdR +uqM aao aao aao @@ -74519,11 +65341,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -74538,10 +65360,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -74559,59 +65381,18 @@ aaa "} (159,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw aao aao aao -wQC -pbK -tQw -tQw -rLR aao aao aao aao -wQC -tQw -eFh -tQw -ujC -ujC -tQw -tQw aao aao aao @@ -74623,12 +65404,53 @@ aao aao aao aao -arD -aMk -anW -anW -anW -anW +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +aao +aao +aao +ehQ +xuB +eGt +eGt +igq +aao +aao +aao +aao +ehQ +eGt +lfk +eGt +tro +tro +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +rzn +goj +vYQ +vYQ +vYQ +vYQ anW anW anW @@ -74642,25 +65464,25 @@ aoc aoc anW anW -aTq -aTp -aUp -aUk +oNb +sIm +oij +tPL aKP aKP -aWK -aQu -aYx +qnp +iXM +qyr atd -nRT -bap -baT -bbF -bap -baT -bdG +lEr +wWG +cUv +hcR +wWG +cUv +iXo atb -bja +rRp bes bes bes @@ -74678,32 +65500,32 @@ bes aao aao aao -gCE -gCE -gCE +gBH +gBH +gBH gpg -gCE -gCE +gBH +gBH gpg gpg -gCE -gCE -wWK -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -usG -gCE -gCE -gCE -sfI +gBH +gBH +cua +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +bRT +gBH +gBH +gBH +nIn aao aao aao @@ -74716,18 +65538,18 @@ aao aao aao aao -fRH -tgL -izh -izh -sLr -izh -izh +pAE +hBG +ggO +ggO +ofP +ggO +ggO aao aao aao -bTW -uPm +hdR +uqM aao aao aao @@ -74736,11 +65558,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -74755,10 +65577,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -74776,61 +65598,61 @@ aaa "} (160,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao aao -wQC -tQw -tQw -eFh aao -jgW -gXp -eMX aao -wQC -tQw -tQw -gXp -gXp -tQw -ahw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +ehQ +eGt +eGt +lfk +aao +iba +upa +ixS +aao +ehQ +eGt +eGt +upa +upa +eGt +hJx +eGt +eGt +eGt aao aao aao @@ -74841,43 +65663,43 @@ aao aao aao arD -bMz -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aSg -aTp -aUp -aUk +lYK +qYF +qYF +qYF +qYF +qYF +qYF +qYF +qYF +qYF +xBB +xBB +xBB +xBB +xBB +xBB +xBB +xBB +oNb +sIm +oij +tPL aKP aKP aKP -aSh -aYx +sPw +qyr atb -aZI -bas -baV -bbG -bar -baU -nRT +lEr +kOT +oDY +hcR +kOT +oDY +lEr atb -bja +rRp bes bes bes @@ -74896,31 +65718,31 @@ aao aao aao aao -gCE -gCE -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -ecK -gCE -gCE -qFY +gBH +gBH +gBH +pqa +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +pqa +gBH +gBH +ddH aao aao aao @@ -74933,18 +65755,18 @@ aao aao aao aao -bTW -izh -izh -sLr -izh -izh +hdR +ggO +ggO +ofP +ggO +ggO aao aao aao aao -bTW -uPm +hdR +uqM aao aao aao @@ -74953,11 +65775,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -74972,10 +65794,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -74993,67 +65815,67 @@ aaa "} (161,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao aao aao -wQC -tQw -tQw -tQw -qQn -tQw -tQw -tQw -gXp -tQw -ahx -ujC -ujC -aij -tQw -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw -gXp -eMX +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +ehQ +eGt +eGt +eGt +wrW +eGt +eGt +eGt +upa +eGt +qId +tro +tro +wIl +eGt +eGt +eGt +eGt +eGt +nDC +eGt +eGt +eGt +upa +ixS aao aao aao @@ -75075,26 +65897,26 @@ aKP aKP aKP aKP -aMR -aQu -aTr -aUp -aQu -aVr +vWg +pVg +wzP +oij +iXM +qzg aKP aKP -aSh -aYx -atd -bbF -bap -baT -bbF -bap -baT -nRT +sPw +hZr +boP +xem +ppR +ppO +qDi +wWG +cUv +lEr atb -bja +rRp bes bes bes @@ -75113,31 +65935,31 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -qFY +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +pqa +gBH +gBH +ddH aao aao aao @@ -75150,18 +65972,18 @@ aao aao aao aao -bTW -izh -hKD -izh +hdR +ggO +xun +ggO aao aao aao aao aao aao -bTW -uPm +hdR +uqM aao aao aao @@ -75170,11 +65992,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -75189,10 +66011,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -75210,68 +66032,68 @@ aaa "} (162,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao aao aao -jgW -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +iba +eGt +eGt +eGt xFZ -pIN -tQw -ahw -ujC -ujC -tQw -tQw -ujC -ujC -tQw -tQw +nDC +eGt +hJx +tro +tro +eGt +eGt +tro +tro +eGt +eGt xFZ -tQw -gXp -tQw -pIN -tQw -tQw -ahw -tQw -tQw -eMX +eGt +upa +eGt +nDC +eGt +eGt +hJx +eGt +eGt +ixS aao aao aao @@ -75291,27 +66113,27 @@ aKP aKP aKP aKP -aMR -aQu -aSi -aTq -foT -aVv -aQu -aOk -aOk -aQu -aYw -atd -bbF -bar -baU -bbH -bar -baU -nRT +vWg +iXM +pVg +wzP +oFM +dVe +wiR +dVe +dVe +dVe +oFM +nLR +lEr +kOT +oDY +gkA +kOT +oDY +lEr atb -bja +rRp bes bes aEX @@ -75331,30 +66153,55 @@ aao aao aao aao -gCE -gCE -gCE -gCE -rxJ -gCE -gCE -gCE +gBH +gBH +gBH +gBH +nNO +gBH +gBH +gBH +aao +aao +aao +aao +aao +aao +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +xLi +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +hdR +uqM +ggO +ggO +aao aao aao aao aao aao +hdR +uqM aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ohD aao aao aao @@ -75362,36 +66209,49 @@ aao aao aao aao +ggO +ggO +ggO +ggO +ggO aao aao aao aao aao -bTW -uPm -izh -izh aao aao aao aao aao aao -bTW -uPm aao aao aao +ggO +ggO +ggO +ggO aao aao aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aab aao aao -izh -izh -izh -izh -izh aao aao aao @@ -75406,91 +66266,53 @@ aao aao aao aao -izh -izh -izh -izh aao aao aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab aao aao -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt aao aao aao aao aao -wQC -tQw -tQw -eFh +ehQ +eGt +eGt +lfk aao -chq -tQw -tQw -ujC -ujC -tQw -tQw -tQw -tQw -tQw -sNQ -ahw -gmN +dRI +eGt +eGt +tro +tro +eGt +eGt +eGt +eGt +eGt +eDE +hJx +vAx xFZ xFZ -ahy -tQw -tQw -tQw +wzN +eGt +eGt +eGt xFZ xFZ -tQw -tQw -eMX +eGt +eGt +ixS aao aao aao @@ -75505,30 +66327,30 @@ aao aKP aKP aKP -aMR -aOk -aOk -aQu -kYd -wNw -wNw -aUu -wNw -kYd -aQu -aQu -aQu -aYw +vWg +wQg +wQg +iXM +iXM +pVg +wzP +oNb +oNb +wUZ +koW +koW +oyM +wUZ +wUZ +lEr +wWG +cUv +hcR +wWG +cUv +kCJ atb -bbF -bap -baT -bbF -bap -baT -bdF -atb -bja +rRp bes aEX aEX @@ -75547,15 +66369,15 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH gpg -gCE -gCE -gCE +gBH +gBH +gBH aao aao aao @@ -75566,11 +66388,11 @@ aao aao aao aao -sON -gCE -gCE -gCE -qFY +psD +gBH +gBH +gBH +ddH aao aao aao @@ -75583,19 +66405,19 @@ aao aao aao aao -fRH -izh -uPm -izh -izh +pAE +ggO +uqM +ggO +ggO aao aao aao aao -izh -izh -izh -bAe +ggO +ggO +ggO +nFs aao aao aao @@ -75603,12 +66425,12 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh +ggO +ggO +ggO +sPb +ggO +ggO aao aao aao @@ -75623,10 +66445,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -75644,48 +66466,48 @@ aaa "} (164,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw aao aao aao aao aao aao -wQC -ahx +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +hJx +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +ehQ +qId xFZ -sNQ +eDE aao aao -gmN +vAx xFZ xFZ xFZ @@ -75693,9 +66515,9 @@ xFZ xFZ xFZ xFZ -sNQ +eDE aao -tQw +eGt aao aao aao @@ -75703,12 +66525,12 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -eMX +eGt +eGt +eGt +eGt +eGt +ixS aao aao aao @@ -75723,29 +66545,29 @@ aao aao aao aao -apI -apI -apI -apI -hLs -iKn -aUv -iZi -kYd -aQu -aQu -aXX -aYy -aZh -aZK -bao -baS -bbF -bao -baS -nRT +iXM +iXM +iXM +ker +pVg +wzP +oNb +oNb +koW +lYj +nEu +qbk +xLD +wUZ +lEr +gBy +jiP +hcR +gBy +jiP +lEr atb -bja +rRp bes aEX aEX @@ -75763,17 +66585,17 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -75783,12 +66605,12 @@ aao aao aao aao -ecK -gCE -gCE -wWK -gCE -sfI +pqa +gBH +gBH +cua +gBH +nIn aao aao aao @@ -75800,33 +66622,33 @@ aao aao aao aao -bTW -izh -uPm -izh -fRH -tgL -tgL -tgL -nkQ -izh -izh -izh -sLr +hdR +ggO +uqM +ggO +pAE +hBG +hBG +hBG +wKD +ggO +ggO +ggO +ofP aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -75840,10 +66662,10 @@ aao aao aao aao -izh -jGd -izh -izh +ggO +sPb +ggO +ggO aao aao aao @@ -75861,43 +66683,43 @@ aaa "} (165,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao aao adZ adZ -afY -uvl -vRK +fHC +iOB +njh adZ adZ aao @@ -75921,12 +66743,12 @@ aao aao aao aao -tQw -tQw -azf -tQw -tQw -eMX +eGt +eGt +nQy +eGt +eGt +ixS aao aao aao @@ -75943,26 +66765,26 @@ aao aao aao aao -apI -wNw -wNw -aUw -wNw -apI -apI -aXt -aXX -aTr -aZi -nRT -bat -baW -bbI -bat -baW -nRT +iPr +mfe +vfm +gOO +mfe +iPr +uKl +bhW +jhN +upz +iPr +lEr +pxR +tob +bGc +pxR +tob +lEr atb -bja +rRp bes aEX bes @@ -75980,16 +66802,16 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -76001,11 +66823,11 @@ aao aao aao aao -usG +bRT gpg gpg -gCE -qFY +gBH +ddH aao aao aao @@ -76017,33 +66839,33 @@ aao aao aao aao -bTW -xAh -izh -tgL -izh -izh -izh -izh -uPm -izh -izh -izh +hdR +oKY +ggO +hBG +ggO +ggO +ggO +ggO +uqM +ggO +ggO +ggO aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76057,9 +66879,9 @@ aao aao aao aao -izh -izh -izh +ggO +ggO +ggO aao aao aao @@ -76078,44 +66900,44 @@ aaa "} (166,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao adZ adZ -aft -ycM -bNl -ahz -aik +jrd +jpu +ucO +brB +hjs adZ adZ aao @@ -76139,13 +66961,12 @@ amk amk amk amk -tQw -tQw -gmN -tQw -tQw -tQw -aao +eGt +eGt +vAx +eGt +eGt +eGt aao aao aao @@ -76160,26 +66981,27 @@ aao aao aao aao -uuo -aSj -ixR -aUx -cGQ aao -aao -aXt -aXt -aTr -atb -nRT -aJy -aJy -nRT -aJy -aJy -bdI +fRI +xvj +mzS +xQa +pNq +koW +nMm +qbk +qbk +tKL +iPr +wUZ +hIL +hIL +lEr +hIL +hIL +gdY atb -bja +rRp bes bes bes @@ -76197,15 +67019,15 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -76220,10 +67042,10 @@ aao aao aao aao -bLA -bLA -bLA -bvR +uCS +uCS +uCS +vHj aao aao aao @@ -76234,33 +67056,33 @@ aao aao aao aao -bTW -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +hdR +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76273,10 +67095,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -76295,44 +67117,44 @@ aaa "} (167,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao adZ -aeS -afu -afZ -msf -afu -afu +cOd +uqr +mls +jVT +uqr +uqr adZ adZ adZ @@ -76345,26 +67167,25 @@ aeU aev apq adZ -aqX -arE -asn -fLY +gic +iRe +rcB +qAe amk wQZ -aqc +pjr avM -aqc -oom +tRK +gel amk -tQw -tQw -tQw -gmN -tQw -tQw -tQw -eMX -aao +eGt +eGt +eGt +vAx +eGt +eGt +eGt +ixS aao aao aao @@ -76378,16 +67199,18 @@ aao aao aao aao -sYL -aTx -vcm -qkB aao -aao -aao -aao -aTr -atb +gCx +mzS +pNq +hdq +wUZ +vZE +iMR +qbk +fte +ieR +wUZ atb atb atb @@ -76395,8 +67218,7 @@ atb atb atb atb -atb -bja +rRp bes bes bes @@ -76416,14 +67238,14 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -76436,13 +67258,13 @@ aao aao aao aao -izh -izh -bTW -izh -izh -tgL -ucN +ggO +ggO +hdR +ggO +ggO +hBG +qVP aao aao aao @@ -76450,36 +67272,36 @@ aao aao aao aao -fRH -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -sLr +pAE +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ofP aao aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76490,10 +67312,10 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao @@ -76512,99 +67334,99 @@ aaa "} (168,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao adZ -aeS -afu -aga -agK -ahA -afu -ain +cOd +uqr +mBC +iAd +fKL +uqr +prz aev aev adZ aao gNH -biX +kQv aev aev aoE apr adZ -aqY -arF -arF -atc +wWE +maG +maG +wAy amk auj auY -auY -awz -ahv +xvr +ijX +aqc amk aao -tQw -tQw -tQw -wQC -tQw -tQw -tQw -gXp -gXp -qQn -gXp -gXp -gXp -gXp -gXp -eMX -aao -aao -aao -aao -aao -sYL -aTx -vcm -sYL -aao -aao +eGt +eGt +eGt +ehQ +eGt +eGt +eGt +upa +upa +wrW +upa +upa +upa +upa +upa +ixS aao aao aao aao +wUZ +rSO +mzS +pNq +pNq +xHH +qbk +qbk +qbk +qbk +sYu aao aao aao @@ -76635,12 +67457,12 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE +gBH +gBH +gBH +cua +gBH +gBH aao aao aao @@ -76651,14 +67473,14 @@ aao aao aao aao -izh -izh -izh -izh -bTW -izh -izh -uPm +ggO +ggO +ggO +ggO +hdR +ggO +ggO +uqM aao aao aao @@ -76667,38 +67489,38 @@ aao aao aao aao -bTW -izh -izh -izh -jGd -izh -izh -izh -izh -izh -uPm +hdR +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +uqM aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76706,11 +67528,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76729,98 +67551,99 @@ aaa "} (169,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao adZ -aeT -afu -agb -agL -afu -ail +cBu +uqr +ffH +xdt +uqr +cxe adZ aev aev adZ aao gNH -biX +kQv aev anM aqb aps adZ -aqZ -arF -aso -arF -atI +cXY +maG +vFq +maG +ifq aqc auY -avN -ajO -axo +dUN +kIk +mcr amk aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw +eGt +eGt +eGt +eGt +eGt +eGt +eGt xFZ xFZ kfk -tQw +eGt xFZ -tQw -tQw -tQw -eFh -aao -aao -aao -aao -aao -sYL -aTx -vcm -aVw +eGt +eGt +eGt +lfk aao aao aao aao aao +gCx +mzS +pNq +nsm +wUZ +srU +qbk +qbk +qPz +pjH aao aao aao @@ -76853,11 +67676,11 @@ aao aao aao aao +gBH +gBH +gBH +gBH aao -gCE -gCE -gCE -gCE aao aao aao @@ -76866,68 +67689,67 @@ aao aao aao aao +uCS +ggO +ggO +ggO +sPb +hdR +ggO +ggO +ofP aao -bLA -izh -izh -izh -jGd -bTW -izh -izh -sLr aao aao aao aao aao -aao -fRH -tgL -izh -uPm -izh -izh -izh -izh +pAE +hBG +ggO +uqM +ggO +ggO +ggO +ggO gtX gtX -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -76946,34 +67768,34 @@ aaa "} (170,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -ahw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +hJx +eGt aao aao aao @@ -76981,7 +67803,7 @@ adZ adZ afd afd -agM +fmK afd afd adZ @@ -76991,51 +67813,54 @@ adZ adZ adZ adZ -ano +qnk adZ afd afd adZ -aqY -arF -arF -ate -amW -aqc -auY +uMp +maG +maG +jwN +amk +hyG auY -qby +xvr +mSw aqc amk aao aao -tQw -tQw -aBz -tQw -sNQ -tQw -ahw -tQw -pIN -tQw -ahw -wQC -tQw -tQw -tQw -eMX -aao -aao +eGt +eGt +odI +eGt +eDE +eGt +hJx +eGt +nDC +eGt +hJx +ehQ +eGt +eGt +eGt +ixS aao -gNH -cIq -hLs -vcm -hSs -gNH aao aao +uVB +gCx +gOd +pNq +pNq +koW +xqy +qbk +qbk +tKL +wUZ aao aao aao @@ -77069,81 +67894,78 @@ aao aao aao aao +tsL +tsL +cvV aao aao aao -waJ -waJ -wIw aao aao aao aao aao +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +uqM +ggO aao aao aao -gCE -bLA -izh -izh -izh -izh -izh -izh -uPm -izh aao aao aao +hdR +ggO +ggO +ofP +ggO +ggO +ggO aao aao aao -bTW -izh -izh -sLr -izh -izh -izh +wOF +uCS +uCS +uCS aao aao aao -byG -bLA -bLA -bLA aao -aao -aao -aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO aao aao aao @@ -77163,44 +67985,44 @@ aaa "} (171,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao aao adZ -afw -afw -agN -afw -afw +cfK +cfK +bsp +cfK +cfK adZ aeU aev @@ -77214,9 +68036,9 @@ aev aev adZ amk -arG -ara -qDY +fRB +uoP +rGi amk aqc aqc @@ -77227,37 +68049,38 @@ amk aao aao aao -tQw -wQC -eFh -tQw -tQw -tQw -tQw -pIN -tQw -tQw -tQw +eGt +ehQ +lfk +eGt +eGt +eGt +eGt +nDC +eGt +eGt +eGt xFZ -tQw -tQw -eFh -aao -aao -aao -aRv -nVw -hLs -vcm -qkB -aao +eGt +eGt +lfk aao aao aao +wUZ +rCe +sDd +rCe +rCe +wUZ +wEs +mVH +qbk +tKL +ckQ aao aao -sON -sfI +gBH aao aao aao @@ -77288,79 +68111,78 @@ aao aao aao aao +gBH +gBH +gBH aao -gCE -gCE -gCE aao aao aao aao aao +gBH +gBH +gBH +uCS +ggO +ggO +ggO +hBG +ggO +ggO +uqM +ggO aao -gCE -gCE -gCE -bLA -izh -izh -izh -tgL -izh -izh -uPm -izh aao aao aao aao aao +rYG +ggO +rQe +ggO +ggO +ggO aao -lUq -izh -wUD -izh -izh -izh aao aao aao aao -aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -77380,44 +68202,44 @@ aaa "} (172,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao aao adZ -stE -agc -agc -agc -afx +uqK +iZJ +iZJ +iZJ +koQ adZ aev aev @@ -77435,7 +68257,7 @@ adZ adZ adZ adZ -aum +jTs amX amk amk @@ -77445,50 +68267,51 @@ amk amk aao aao -gmN -sNQ -aao -aao -aao -aao +vAx +eDE aao aao -tQw -tQw -tQw -wQC -tQw -tQw aao aao aao aao -sYL -hLs -vcm +eGt +eGt +eGt +ehQ +eGt +eGt aao aao aao aao +qFy +vwx +qFU +qFU +koW +djE +vmq +qbk +ecp +wUZ aao +gBH +cHi +cHi +nIn aao -sON -gCE -gCE -rAs -rAs -sfI aao aao aao aao aao +psD +cHi +cHi +cHi +nIn aao -sON -rAs -rAs -rAs -sfI aao aao aao @@ -77504,39 +68327,38 @@ aao aao aao aao +psD +gBH +gBH +gBH +gBH aao -sON -gCE -gCE -gCE -gCE aao aao -aao -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO gtX -izh -izh -izh -uPm -izh +ggO +ggO +ggO +uqM +ggO aao aao aao aao aao -izh -izh -izh -uPm -izh +ggO +ggO +ggO +uqM +ggO aao aao aao @@ -77546,38 +68368,38 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -77597,43 +68419,43 @@ aaa "} (173,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao aao adZ adZ -agc -agc -agc +iZJ +iZJ +iZJ adZ adZ aev @@ -77651,12 +68473,12 @@ aev hvQ aev aev -ain -agd -agd +prz +uQL +uQL amX awC -axp +bXL axp ayA amk @@ -77670,131 +68492,131 @@ aao aao aao aao -tQw -tQw -tQw -gmN -ahw -tQw -tQw -aao +eGt +eGt +eGt +vAx +hJx +eGt +eGt aao aao -sYL -hLs -vcm aao +fMJ +vwx +qFU +wRA +wUZ +koW +koW +xjk +wUZ +wUZ +gBH +gBH +gBH +gBH +cua +nIn aao aao aao aao aao -ecK -gCE -gCE -gCE -gCE -wWK -sfI +pqa +gBH +cua +gBH +gBH +nIn aao aao aao aao aao -ecK -gCE -wWK -gCE -gCE -sfI aao aao aao aao aao aao +psD +cHi +cHi +cHi +gBH +gBH +gBH +gBH +gBH +cHi +cHi +gBH +gBH +gBH +gBH +cua +pqa +uCS +uqM aao aao +hdR +sPb +ggO +uqM +ggO aao aao +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao -sON -rAs -rAs -rAs -gCE -gCE -gCE -gCE -gCE -rAs -rAs -gCE -gCE -gCE -gCE -wWK -ecK -bLA -uPm aao aao -bTW -jGd -izh -uPm -izh aao aao -izh -izh -izh -izh -izh -izh -izh -izh aao aao aao aao -aao -aao -aao -aao -aao -izh -jGd -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +ggO +sPb +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -77814,34 +68636,34 @@ aaa "} (174,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao adZ @@ -77849,8 +68671,8 @@ adZ adZ adZ adZ -aCy -ahB +wth +lQY adZ aev aev @@ -77869,13 +68691,13 @@ aeU aev aev adZ -auo -agd -avO +ePt +uQL +ixU auY aqc axT -auY +kDx amk anI aAM @@ -77889,41 +68711,41 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -aao -aao -aSk -aTz -aUA -aao -aao -aao +eGt +eGt +eGt +eGt +eGt +eGt aao aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -qFY +swy +oVG +fxy +ulb +cdT +ckT +nVe +nVe +eLb +gBH +gBH +gBH +gBH +gBH +gBH +ddH aao aao aao aao aao -usG +bRT gpg -gCE -gCE -gCE -qFY +gBH +gBH +gBH +ddH aao aao aao @@ -77935,41 +68757,41 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -gCE -gCE -sON -gCE -bLA -sLr +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cHi +gBH +gBH +psD +gBH +uCS +ofP aao aao -bTW -izh -izh -uPm -izh -izh -izh -jGd -izh -izh -izh -izh -uPm -izh +hdR +ggO +ggO +uqM +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +uqM +ggO aao aao aao @@ -77980,37 +68802,37 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78031,54 +68853,54 @@ aaa "} (175,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao adZ aev aeU aev -age -agQ -ahC -ain +elT +unk +mTl +prz aev aev anM adZ adZ -qnT -amJ +vmY +etW adZ -anO -aoG +lZt +oxR adZ aqb aqb @@ -78086,13 +68908,13 @@ anl anl aev adZ -aup -agd -auy +gtY +uQL +rgi auY aqc aqc -auY +cAg amk anI aAN @@ -78107,86 +68929,86 @@ aao aao aao aao -tQw -tQw -tQw -gXp -gXp -gXp -aRw -dLe -hLs -vcm -aao -aao +eGt +eGt +eGt +upa +upa +upa +eeb +lfk +uuR +gcE +eGt +tro +tro +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +ddH aao aao aao -ecK -gCE -gCE -gCE -gCE -gCE -gCE -qFY aao aao aao aao -aao -aao -aao -usG +bRT gpg -gCE -qFY -gCE -gCE -gCE -gCE +gBH +ddH +gBH +gBH +gBH +gBH aao aao aao aao aao aao -sON -gCE +psD +gBH gpg gpg gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -gCE -gCE -cVL +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cHi +gBH +gBH +oze aao aao aao -bTW -izh -izh -uPm -izh -izh -izh -izh -fRH -tgL -izh -jGd -izh -izh +hdR +ggO +ggO +uqM +ggO +ggO +ggO +ggO +pAE +hBG +ggO +sPb +ggO +ggO aao aao aao @@ -78197,36 +69019,36 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -jGd -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO aao aao aao @@ -78248,34 +69070,34 @@ aaa "} (176,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -ahw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +hJx +eGt +eGt +eGt aao aao adZ @@ -78283,19 +69105,19 @@ wXT aeV aev adZ -agQ -ahD +unk +bXo adZ adZ adZ adZ adZ adZ -alM -amK +uoH +cFH adZ -anP -amK +hba +cFH adZ adZ adZ @@ -78303,13 +69125,13 @@ adZ adZ adZ adZ -agd -agd +uQL +uQL amX awD -auY -auY -ayB +taX +taX +pVq amk anI aAO @@ -78326,83 +69148,83 @@ aao aao aao aao -wQC -tQw -tQw -tQw -tQw -eFh -aTw -aUy -amG -aao -aao -aao -aao -ecK -gCE -gCE -gCE +ehQ +eGt +eGt +eGt +eGt +lfk +uuR +gcE +eGt +eGt +nDC +gBH +gBH +gBH +gBH +gBH +gBH gpg gpg -gCE -gCE -rAs -rAs -sfI +gBH +gBH +cHi +cHi +nIn aao aao aao aao aao aao -gCE -qFY -gCE -gCE -gCE -gCE +gBH +ddH +gBH +gBH +gBH +gBH aao aao aao aao -sON -rAs -gCE -gCE -gCE -tsB -gCE -gCE -gCE +psD +cHi +gBH +gBH +gBH +bPG +gBH +gBH +gBH gpg gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +ddH aao aao aao aao -bTW -izh -izh -uPm -izh -izh -izh -fRH -izh -izh -izh -izh -izh +hdR +ggO +ggO +uqM +ggO +ggO +ggO +pAE +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78419,16 +69241,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78437,13 +69259,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78465,34 +69287,34 @@ aaa "} (177,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao adZ @@ -78500,28 +69322,28 @@ aex aex afA adZ -agS -ahE +lpY +sKr adZ aao aao aao aao adZ -alN -amL +nTp +niO adZ -anQ -amK +mxC +cFH adZ -aEs -aGh +pjr aqc -asp +aqc +nGf aqc amk -auq -auZ +tlH +kPq amk amk amk @@ -78530,8 +69352,8 @@ amk amk anI anL -hmm -aCr +unW +uZm anL anI anI @@ -78543,82 +69365,82 @@ aao aao aao aao -gmN -tQw -tQw -tQw -tQw -eFh -aTw -aUy -wQC -eMX -aao -aao -aao -ecK -gCE -xuU -qFY -gCE -gCE -gCE +vAx +eGt +eGt +eGt +eGt +lfk +uuR +gcE +eGt +eGt +mlk +gBH +gBH +gBH +gBH +wxC +ddH +gBH +gBH +gBH gpg -gCE -gCE -gCE -rAs -rAs -rAs -rAs -rAs -rAs -gCE -qFY -wWK -gCE -gCE -gCE -gCE -waJ -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -wWK -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bvR -aao -fRH -tgL -izh -izh -izh -uPm -jGd -fRH -kWV -izh +gBH +gBH +gBH +cHi +cHi +cHi +cHi +cHi +cHi +gBH +ddH +cua +gBH +gBH +gBH +gBH +tsL +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +cua +pqa +gBH +gBH +gBH +gBH +gBH +gBH +gBH +vHj +aao +pAE +hBG +ggO +ggO +ggO +uqM +sPb +pAE +qtj +ggO gtX gtX gtX -sLr +ofP aao aao aao @@ -78636,16 +69458,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78654,13 +69476,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78682,34 +69504,34 @@ aaa "} (178,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao adZ @@ -78717,41 +69539,41 @@ adZ adZ afB adZ -agT -ahF +ueI +xCz adZ aao aao aao adZ adZ -alO -amM +cTq +dOx adZ -anR -amM +vHV +dOx adZ adZ -aqc -ahv -ajd +nFb +npL +wmE aqc amk -agd -ava -avP -awE +uQL +uNz +nNZ +wWs amk aao anI -azg -aAi -aAP -aAP -aCs -aAP -aEm -yhU +tXx +fQz +gSe +gSe +mmc +gSe +jui +tpr anI aao anI @@ -78760,78 +69582,78 @@ anI anI anI anI -aMS -gmN -tQw -tQw -tQw +vxR +vAx +eGt +eGt +eGt arK -aTy -aUy -wQC -sNQ -aao -aao -sON -gCE -gCE -gCE -ohD +fmo +gcE +eGt +eGt +tro +gBH +gBH +gBH +gBH +gBH +xLi aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -rAs -rAs -rAs -rAs -rAs -mya -rAs -gCE -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -xuU -gCE -gCE -gCE -gCE -bLA -tgL -izh -izh -izh -izh -izh -izh -tgL -izh -izh -uPm +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cHi +cHi +cHi +cHi +cHi +dgu +cHi +gBH +gBH +ddH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +pqa +gBH +gBH +wxC +gBH +gBH +gBH +gBH +uCS +hBG +ggO +ggO +ggO +ggO +ggO +ggO +hBG +ggO +ggO +uqM aao aao aao @@ -78853,16 +69675,16 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -78870,14 +69692,14 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh -izh -izh +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO aao aao aao @@ -78899,156 +69721,156 @@ aaa "} (179,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao adZ -aey -aeW -afC -agf -agU -ahG +cUQ +iAn +gID +xnL +tgN +tlz adZ aao aao adZ adZ -ala -alP -alP -anq -anS -anS -apv +hri +vEO +vEO +cHu +pSn +pSn +fBO adZ adZ -aqc -asr +auY +vdV aqc amX -aur -avb -asu -awF +hEN +nKK +vtu +lBa amk aao anI -rXL -aAj +qkp +nMJ afz -xWm -xWm -xWm -aEn -aFg +cyH +cyH +cyH +hVQ +uPD anI aao anI -aIJ -uaB -uaB -uaB -aMq -aMT -aOm -aOm -aOm -aOm -aSl -aTv -aUy -amG -aao -aao -jgW -gCE -gCE -gCE -qFY -aao -aao -aao -aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -sBu -gCE -gCE -gCE -gCE -gCE -gCE -xuU -gCE -waJ -gCE -gCE -wWK -qFY -gCE -gCE -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -sBu -bLA -izh -izh -izh -jGd -izh +fAR +qeS +qeS +qeS +wTg +qFU +kDQ +kDQ +kDQ +kDQ +cSs +vwx +gcE +eGt +tro +tro +gBH +gBH +gBH +gBH +ddH +aao +aao +aao +aao +psD +gBH +gBH +gBH +gBH +gBH +gBH +gBH +qcu +gBH +gBH +gBH +gBH +gBH +gBH +wxC +gBH +tsL +gBH +gBH +cua +ddH +gBH +gBH +psD +gBH +gBH +gBH +gBH +gBH +gBH +gBH +pqa +gBH +gBH +gBH +gBH +gBH +gBH +qcu +uCS +ggO +ggO +ggO +sPb +ggO gtX gtX gtX gtX gtX -sLr +ofP aao aao aao @@ -79070,16 +69892,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79087,14 +69909,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79116,150 +69938,150 @@ aaa "} (180,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt aao adZ -aez -aeX -afD -agf -agV -ahC +vps +iNS +fFj +xnL +qjB +mTl adZ aao aao adZ -aky -alb -alQ -alc -alc -alc -alQ -apw -aqd +qsP +nfz +oaj +wfr +wfr +wfr +oaj +gUA +gCW adZ arI ass aqc -atK -agd -avc -asu -awF +iOT +uQL +fpy +vtu +lBa amk aao anI -azi -aAk +sFw +qtJ afz -aBB -aCt -bZL -xWm -aFh +nJB +uXF +buh +cyH +lmJ anI aao anI -aIK -aJE -aKQ -aKQ -hmm -aMT -aOn -aOn -aOn -aOn -aTv -tdn -kNP -wQC -gXp -qQn -tQw -gCE -gCE +kDh +mgx +nhR +nhR +unW +qFU +ckT +ckT +ckT +ckT +qFU +vwx +gcE +eGt +eGt +nDC +gBH +gBH +gBH gpg -ohD -aao -aao -aao -foB -gCE -gCE -gCE -bet -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +xLi +aao +aao +aao +xti +gBH +gBH +gBH +iFn +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH kQc gpg -gCE -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -uPm +gBH +gBH +ddH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +ddH +gBH +pqa +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +uqM aao aao aao @@ -79287,15 +70109,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79304,13 +70126,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79333,112 +70155,112 @@ aaa "} (181,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt aao adZ -aez -aeY -afE -agg -agW -ahI +vps +pWI +oDe +kas +kOS +wQX adZ aao aao adZ -akz -alc -alc -amN -aff -alc -alc -alc -aqe +gEM +wfr +wfr +kTA +eKl +wfr +wfr +wfr +jqA adZ amk amk amk amk -agd -avd +uQL +mqK amk amk amk aao anI -azj -aAl -aAk +bHT +syY +qtJ afz afz -xWm -aEo -fXO +cyH +nhi +bId anI aao anI -aIK -aJF +kDh +peg anI anI anI -aMV -gXp -gXp -gXp -gXp -aTw -ocR -uoj -wQC -tQw -aWN -tQw -gCE -ohD +iPe +upa +upa +upa +upa +qFy +qWA +wej +eGt +eGt +mlk +gBH +gBH +xLi aao aao aao aao aao aao -usG +bRT gpg gpg gpg -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH gpg gpg gpg @@ -79447,36 +70269,36 @@ gpg gpg gpg gpg -ohD +xLi aao aao -ecK -gCE -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY -gCE -ecK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -sLr +pqa +gBH +ddH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +ddH +gBH +pqa +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ofP aao aao aao @@ -79504,15 +70326,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79521,13 +70343,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -jGd +ggO +ggO +ggO +ggO +ggO +ggO +sPb aao aao aao @@ -79550,97 +70372,97 @@ aaa "} (182,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao -tQw -tQw -tQw -ahw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +hJx +eGt aao aao adZ -aeA -aeZ -afF +waD +sWZ +blH adZ -agX -ahJ +jfo +htb adZ aao aao adZ -aeE -rqa -alR -alc -alc -alQ -alc -apx -aqf +hEG +kyd +jRv +wfr +wfr +oaj +wfr +nbX +fqi adZ aao azm amk amk -auy -ave +rgi +xmo amk amk aao aao anI anI -aAm -aAl -aBC -xWm -aDk -aEp +qgK +syY +krJ +cyH +nkV +okP anI anI aao anI -aIK -aJG +kDh +aUB anI aao aao -gXp -tQw -ahw -tQw -tQw -nFH -aTv -aMT -tQw -tQw -pIN -xFZ -ohD +upa +eGt +hJx +eGt +eGt +nKR +qFU +gcE +eGt +eGt +tro +gBH +gBH aao aao aao @@ -79652,14 +70474,14 @@ aao aao aao aao -ecK -qFY -gCE -gCE -gCE -gCE -gCE -gCE +pqa +ddH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -79668,32 +70490,32 @@ aao aao aao aao -ecK -qFY -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +pqa +ddH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH gpg gpg gpg gpg gpg gpg -gCE -bLA -jGd -izh -izh -sLr -izh +gBH +uCS +sPb +ggO +ggO +ofP +ggO aao aao aao @@ -79721,14 +70543,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79737,14 +70559,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO aao aao aao @@ -79767,95 +70589,95 @@ aaa "} (183,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt aao aao adZ adZ -vVc -afG +dLv +cOn adZ -agX -ahI +jfo +wQX adZ adZ aao adZ -akB -alc -alS -alQ -alc -anV -aoI -alc -aqg +hRj +wfr +faO +oaj +wfr +rHy +ceS +wfr +iYP adZ aao amk amk -atL -asu -avf -atL +rOe +vtu +dil +rOe amk amk aao aao anI anI -aAQ -aBD -xWm -aDl +wRh +mDS +cyH +rxL anI anI aao aao anI -aIL -aJG +fDA +aUB anI aao aao -tQw -tQw -tQw -xFZ +eGt +eGt +eGt xFZ -aSm -lMw -aMT -tQw xFZ -ahy +jGx +fUQ +gcE +eGt +eGt +tro aao aao aao @@ -79869,14 +70691,14 @@ aao aao aao aao -usG -gCE -gCE -gCE -wWK -gCE -gCE -gCE +bRT +gBH +gBH +gBH +cua +gBH +gBH +gBH aao aao aao @@ -79885,33 +70707,33 @@ aao aao aao aao -ecK -qFY -gCE -gCE -wWK -gCE -gCE -gCE -bet -gCE -gCE -gCE -ohD +pqa +ddH +gBH +gBH +cua +gBH +gBH +gBH +iFn +gBH +gBH +gBH +xLi aao aao aao aao aao aao -dEr -bLA -izh -izh -uPm -izh -izh -izh +lTp +uCS +ggO +ggO +uqM +ggO +ggO +ggO aao aao aao @@ -79938,13 +70760,13 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -79954,14 +70776,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO aao aao aao @@ -79984,34 +70806,34 @@ aaa "} (184,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt aao aao aao @@ -80019,58 +70841,58 @@ adZ adZ adZ adZ -agX -agc -aio +jfo +iZJ +gnT adZ adZ adZ -aeQ -ald -gZv -amO -afy -amO -aoJ -afy -aqh +txS +fyg +efD +hSQ +kfL +hSQ +nDT +kfL +eZt adZ amk amk -atg -agd -aut -avg -agd -awG +wia +uQL +vlx +gnr +uQL +fZv amk amk aao aao anI -aAR -ggW -aCu -aDm +lyB +hYX +jGR +cUV anI aao aao aao anI -aIK -aJG +kDh +aUB anI aao -wQC -tQw -tQw -eFh +ehQ +eGt +eGt +lfk aao aao aao -aSm -aMV -sNQ +jGx +phj +eGt aao aao sIh @@ -80087,13 +70909,13 @@ aao aao aao aao -usG -gCE -gCE -sfI -gCE -gCE -gCE +bRT +gBH +gBH +nIn +gBH +gBH +gBH aao aao aao @@ -80101,19 +70923,19 @@ aao aao aao aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +psD +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -80121,15 +70943,15 @@ aao aao aao aao -bTW +hdR gtX gtX gtX -sLr -izh -izh -izh -bLA +ofP +ggO +ggO +ggO +uCS aao aao aao @@ -80155,11 +70977,11 @@ aao aao aao aao -izh -izh -jGd -izh -izh +ggO +ggO +sPb +ggO +ggO aao aao aao @@ -80171,14 +70993,14 @@ aao aao aao aao -izh -izh -izh -izh -jGd -izh -izh -izh +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao @@ -80201,88 +71023,88 @@ aaa "} (185,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao aao adZ adZ -ahL -agc -aiR +tcs +iZJ +ubN adZ adZ afd afd afd -amP +dyS adZ -amP +dyS afd afd afd adZ amk -ast -ath -agd -auu -avh -agd -agd -axq +qRX +kda +uQL +kos +bSB +uQL +uQL +gRU amk anI -ayE +feI anI anL -hmm -aCv +unW +drh anL anI anI anI anI anI -aIM -aJH +nhA +uES anI aao -wQC -tQw -tQw -tQw -eMX +ehQ +eGt +eGt +eGt +ixS aao aao aao @@ -80305,33 +71127,213 @@ aao aao aao aao -usG +bRT gpg -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +aao +aao +aao +aao +aao +psD +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +nIn +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +uCS +uCS +uCS +uCS +ggO +ggO +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ggO +ggO +ggO +ggO +ggO +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +aao +aao +aao +aao +aao +aao +aao +aao +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aab +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +iba +ixS +aao +aao +adZ +adZ +tcs +kdu +sTc +cew +mRP +esr +dVs +dVs +dVs +dVs +dVs +dVs +bUS +djS +dNf +vtu +xrj +xdl +gYe +tiy +iBy +nuS +vtu +xGm +vJE +nWs +ppA +qeS +lNT +vWm +bmW +dRH +utd +qeS +qeS +qeS +vuJ +aUB +anI +aao +vAx +eGt +xFZ +eGt +lfk +aao +aao +aao +aao +aao +aao +aao aao aao aao aao aao -sON -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -sfI aao aao aao @@ -80343,12 +71345,34 @@ aao aao aao aao -bLA -bLA -bLA -bLA -izh -izh +aao +gBH +gBH +nIn +gBH +gBH +gBH +aao +aao +aao +psD +gBH +gpg +gBH +gBH +gpg +gpg +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +ddH +aao +aao aao aao aao @@ -80359,6 +71383,14 @@ aao aao aao aao +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -80372,11 +71404,6 @@ aao aao aao aao -izh -izh -izh -izh -izh aao aao aao @@ -80384,18 +71411,30 @@ aao aao aao aao +ggO +ggO +ggO +ggO +ggO aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +aao +aao +aao +aao +aao +aao +aao +ggO +pIa +pIa +ggO +ggO +pIa +pIa +ggO aao aao aao @@ -80416,26 +71455,7 @@ aaa aaa aaa "} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +(187,1,1) = {" aaa aab aao @@ -80443,144 +71463,6 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -jgW -eMX -aao -aao -adZ -adZ -ahL -aiS -ajp -ajV -akD -ale -alU -alU -alU -alU -alU -alU -aqi -arb -arJ -asu -ahH -atM -auv -avi -avQ -awH -asu -gvd -ayC -azk -aAn -uaB -aBF -aCw -aDn -aEq -aFj -uaB -uaB -uaB -aIN -aJG -anI -aao -gmN -tQw -xFZ -tQw -eFh -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -gCE -gCE -sfI -gCE -gCE -gCE -aao -aao -aao -sON -gCE -gpg -gCE -gCE -gpg -gpg -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -qFY -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -izh -izh -izh -izh -izh -izh -izh -izh -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao -aao aao aao aao @@ -80589,11 +71471,6 @@ aao aao aao aao -izh -izh -izh -izh -izh aao aao aao @@ -80605,120 +71482,65 @@ aao aao aao aao -izh -otb -otb -izh -izh -otb -otb -izh -aao -aao -aao -aao -aao -aao -aao -aao -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aao -aao -aao -aao -aao -tQw -tQw -tQw -tQw -tQw -tQw -wQC -tQw -eMX +eGt +eGt +eGt +eGt +eGt +eGt +ehQ +eGt +ixS aao aao adZ adZ -aiT -ajq -ajW -akE -akE -akE -amQ -anu -amQ -aoL -apy -aqj -arc -tFO -axs -ati -atN -auw -avj -avR -awI -axs -tFO -ayD +gni +iPM +kBZ +eMx +eMx +eMx +tas +nAP +tas +pvh +xQD +tsa +gno +gKC +muF +nma +dsg +llM +hRr +bPU +plq +muF +gKC +gRJ azl aAo -aAS -rXY -aCx -poF -poF -aFk -aGg -aGU -xNL -aIO -tkN +pNL +dBi +kxz +ktD +ktD +dFJ +dVa +jAa +xEa +jLg +gTn anI aao aao -amG +tfv aao -wQC +ehQ xFZ -gXp -eMX +upa +ixS aao aao aao @@ -80741,31 +71563,31 @@ aao aao aao aao -gCE -ecK -bhs -gCE -gCE -gCE -rAs -gCE -gCE -gCE -gCE -gCE -gCE -qFY +gBH +pqa +pxk +gBH +gBH +gBH +cHi +gBH +gBH +gBH +gBH +gBH +gBH +ddH aao aao -ecK -gCE -gCE -gCE -gCE -gCE -wWK -gCE -ohD +pqa +gBH +gBH +gBH +gBH +gBH +cua +gBH +xLi aao aao aao @@ -80778,16 +71600,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao @@ -80806,11 +71628,11 @@ aao aao aao aao -izh -otb -otb -izh -izh +ggO +pIa +pIa +ggO +ggO aao aao aao @@ -80822,14 +71644,14 @@ aao aao aao aao -izh -otb -otb -izh -izh -otb -otb -izh +ggO +pIa +pIa +ggO +ggO +pIa +pIa +ggO aao aao aao @@ -80852,25 +71674,6 @@ aaa "} (188,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -80878,42 +71681,61 @@ aao aao aao aao -tQw -tQw -ahw -tQw -tQw -wQC -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +hJx +eGt +eGt +ehQ +eGt adZ adZ adZ adZ adZ -aCy -ajr +wth +srt adZ afd afd afd -amR +gGo adZ -amR +gGo afd afd afd adZ amk -asw -lVr -agd -aux -avk -agd -awJ -axt +fLb +jjq +uQL +gua +vEr +uQL +lgD +nOq amk -ayE +feI aEF anI anI @@ -80923,10 +71745,10 @@ anI anI anI anI -vbi -aHQ -hWa -wko +mGm +hjJ +szP +pMG anI aao aao @@ -80935,7 +71757,7 @@ aao aao aao aao -amG +tfv aao aao aao @@ -80958,30 +71780,30 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -usG -ohD +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +bRT +xLi aao aao -usG -gCE -gCE -gCE -gCE -gCE -gCE -ohD +bRT +gBH +gBH +gBH +gBH +gBH +gBH +xLi aao aao aao @@ -80996,18 +71818,18 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81023,11 +71845,11 @@ aao aao aao aao -izh -otb -otb -izh -izh +ggO +pIa +pIa +ggO +ggO aao aao aao @@ -81039,14 +71861,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81069,25 +71891,6 @@ aaa "} (189,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -81095,39 +71898,58 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tIq -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +bpK +lfk afd -agh -agc -ahM -agc -agc -agc +sjE +iZJ +iLb +iZJ +iZJ +iZJ adZ -akF -alf -alf -alf -anv -alf -alf -alf -aqk +uAv +lTR +lTR +lTR +daP +lTR +lTR +lTR +ggD adZ amk amk -atj -agd -aoK -aoK -oea -awK +tzS +uQL +mzl +mzl +mLN +vgH amk amk aao @@ -81141,9 +71963,9 @@ aao aao anI anI -vbi -aHQ -wko +mGm +hjJ +pMG anI aao aao @@ -81176,28 +71998,28 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -wWK -gCE +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +cua +gBH aao aao aao aao aao -usG +bRT gpg gpg gpg gpg -ohD +xLi aao aao aao @@ -81213,19 +72035,19 @@ aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao @@ -81239,12 +72061,12 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81257,13 +72079,13 @@ aao aao aao aao -izh -izh -jGd -izh -izh -izh -izh +ggO +ggO +sPb +ggO +ggO +ggO +ggO aao aao aao @@ -81286,25 +72108,6 @@ aaa "} (190,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -81313,37 +72116,56 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +ehQ +lfk afd -agi -agZ +qcE +kAM adZ -aiq -agc -ajs +eXQ +iZJ +sNV adZ -akG -alg -alV -amS -alW -alg -alW -apz -aql +gCY +vFe +lwn +hgG +wjj +vFe +wjj +jJe +lBR adZ aao amk amk -atO -asu -asu -atO +sOo +vtu +vtu +sOo amk amk aao @@ -81359,8 +72181,8 @@ aao aao anI anI -aIP -aJJ +oTC +koq anI anI anI @@ -81393,17 +72215,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -81429,21 +72251,21 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81456,12 +72278,12 @@ aao aao aao aao -izh -izh -izh -jGd -izh -izh +ggO +ggO +ggO +sPb +ggO +ggO aao aao aao @@ -81474,14 +72296,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -jGd -izh +ggO +ggO +ggO +pIa +pIa +ggO +sPb +ggO aao aao aao @@ -81503,25 +72325,6 @@ aaa "} (191,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -81530,36 +72333,55 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +ehQ +lfk adZ adZ adZ adZ -aiq -agc -ajt +eXQ +iZJ +wQU adZ -akH -alh -alW -amS -alW -aod -alW -alg -aqm +jzg +aRt +wjj +hgG +wjj +dRk +wjj +vFe +oyn adZ aao aao amk amk -auy -avl +rgi +yex amk amk aao @@ -81576,15 +72398,15 @@ aao aao aao anI -aIQ -wko +lqI +pMG anI aMr -wjW +pWt ePk -ajn +kAe aMr -wjW +pWt xKb anI aao @@ -81609,17 +72431,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -81645,24 +72467,24 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81673,11 +72495,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81691,14 +72513,14 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO aao aao aao @@ -81720,25 +72542,6 @@ aaa "} (192,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -81747,42 +72550,61 @@ aao aao aao aao -tQw -tQw -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +ehQ +lfk afd -agi -aha +qcE +pgS adZ -agc -agc -aju +iZJ +iZJ +kBe adZ -akI -ali -alW -amT -alW -aoe -alW -alg -aqn +qjg +fWV +wjj +qJL +wjj +oda +wjj +vFe +oAh adZ aao aao aao amk -auz -avm +obR +oIX amk aao aao -jgW -aig -aao +iba +uiw +hqJ aao anI anI @@ -81793,16 +72615,16 @@ anI anI aao anI -aIR -aJL +kxn +sMF anI -tSI -gan -tSI -xfN -jwj -gan -tSI +gFF +kYa +gFF +hGi +xCQ +kYa +gFF anI aao aao @@ -81826,12 +72648,12 @@ aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE +gBH +gBH +gBH +cua +gBH +gBH aao aao aao @@ -81862,39 +72684,39 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao aao aao -izh -otb -otb -izh -izh +ggO +pIa +pIa +ggO +ggO aao aao aao @@ -81909,14 +72731,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -81937,25 +72759,6 @@ aaa "} (193,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -81964,62 +72767,81 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +lfk afH -agc -agh -ahM -agc -agc -ajt +iZJ +sjE +iLb +iZJ +iZJ +wQU adZ -mGp -alj -alg -alg -alg -amT -aoM -apA -aqo +epi +dle +vFe +vFe +vFe +qJL +iRq +sGw +fma adZ aao aao -jgW +iba amY -auA -avn +bSu +jHD amY -gXp -gXp -eFh -tQw -amG +upa +upa +lfk +eGt +tfv anI anI -aAU +oCE anL -aDp -arN -wlb +jiu +qqe +gdg anI anI anI -aIL -aJM +fDA +oOG anI -hZc -jKI -hZc -evA -lPL -ooi -hZc +fIe +qdp +fIe +cyg +cPF +tWm +fIe anI aao aao @@ -82042,13 +72864,13 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -82066,52 +72888,52 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -jGd -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao aao aao aao -izh -jGd -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +ggO +sPb +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao -izh -izh -otb -otb -izh -izh +ggO +ggO +pIa +pIa +ggO +ggO aao aao aao @@ -82126,14 +72948,14 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82154,25 +72976,6 @@ aaa "} (194,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -82181,61 +72984,80 @@ aao aao aao aao -tQw -tQw -tQw -ahw -tQw -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +hJx +eGt +lfk adZ adZ adZ adZ -air -agc -ajv +tpt +iZJ +xYQ adZ adZ -alk -alY -amU -amU -amU -alY -apB +rxF +jGD +pfw +pfw +pfw +jGD +fJu adZ adZ -arL -gXp -atk +uGb +upa +pXk amY -auB -avo +frS +uHx amY -wQC -tQw -wQC -gXp -eFh +ehQ +eGt +ehQ +upa +lfk anL -aAT -aAY -aPq -aDq -hWa -aFm -awe +wih +jAt +wPw +exJ +szP +cca +pzw anI anI -aIK -wko +kDh +pMG anI aMr -vgZ +sYo aMr -uPK +tqY ePk -wjW +pWt uUV anI aao @@ -82259,12 +73081,12 @@ aao aao aao aao -waJ -waJ -waJ -waJ -waJ -waJ +tsL +tsL +tsL +tsL +tsL +tsL aao aao aao @@ -82281,25 +73103,25 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82307,28 +73129,28 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82343,14 +73165,14 @@ aao aao aao aao -izh -jGd -izh -izh -izh -izh -izh -izh +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82371,25 +73193,6 @@ aaa "} (195,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -82399,18 +73202,37 @@ aao aao aao aao -tQw -tQw -tQw -tQw -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +lfk afd -agj -agc -ahM -agc -agh -agc +vJV +iZJ +iLb +iZJ +sjE +iZJ adZ adZ adZ @@ -82422,33 +73244,33 @@ adZ adZ adZ aao -arM -tQw -eFh +qMw +eGt +lfk amk -auC -avp +vyq +jLZ amk -arM -gXp -axU -tQw -eFh +qMw +upa +otB +eGt +lfk anL -aAU -aAU +oCE +oCE anL -aDq -hwy -hWa -aGi -awA +exJ +hfm +szP +pgc +htW anL -aIS -aJN +sRM +wgp anI anI -fgD +kiN anI anI anI @@ -82476,12 +73298,12 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -82495,28 +73317,28 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -bLA -izh -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82524,29 +73346,29 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82558,15 +73380,15 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -jGd -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO aao aao aao @@ -82588,25 +73410,6 @@ aaa "} (196,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -82617,16 +73420,35 @@ aao aao aao aao -tQw -tQw -tQw -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +lfk afd -agi -agZ +qcE +kAM adZ adZ -aiU +huh adZ adZ aao @@ -82639,38 +73461,38 @@ aao aao aao aao -wQC +ehQ asx -eFh +lfk amY -auB -eJE +frS +vGv amY -wQC -tQw -tQw -tQw -eFh +ehQ +eGt +eGt +eGt +lfk anI anL anL anI -aDr -hWa -hWa -hWa -aGW +cUE +szP +szP +szP +rfd anL -aIK -aJO +kDh +wGI anI -aLH +myz aLI -aMW +pIc aHP anI -juo -dtf +dWW +oHB anI aao aao @@ -82691,14 +73513,14 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -82710,29 +73532,29 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82741,29 +73563,29 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO aao aao aao @@ -82774,16 +73596,16 @@ aao aao aao aao -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82805,25 +73627,6 @@ aaa "} (197,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -82834,17 +73637,36 @@ aao aao aao aao -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +ehQ +lfk adZ adZ adZ adZ -ais -agl -agl +xtp +uNL +uNL adZ aao aao @@ -82854,40 +73676,40 @@ aao aao aao aao -jgW -gXp -eFh -tQw -tQw +iba +upa +lfk +eGt +eGt amY -auA -avn +bSu +jHD amY -gmN +vAx xFZ -axV -tQw -eFh +jZf +eGt +lfk anL -aAV -aBG -aCz -aDq -xUo -hWa -hWa -aGW -aHR -aIK -wko -aHR +iHH +dvb +mIe +exJ +ujm +szP +szP +rfd +kxB +kDh +pMG +kxB aLI aMs -aLH -aOo +myz +sVv anL -tjE -aRx +hfw +tOp anI aao aao @@ -82908,13 +73730,13 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -82926,30 +73748,30 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -82957,30 +73779,30 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +pIa +pIa +ggO aao aao aao @@ -82988,19 +73810,19 @@ aao aao aao aao -nCp -nCp -nCp -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh +wlK +wlK +wlK +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -83022,25 +73844,6 @@ aaa "} (198,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -83051,60 +73854,79 @@ aao aao aao aao -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +ehQ +lfk vAs -agk -agk -agk -ait -aiV -agl +umj +umj +umj +pGp +qQz +uNL adZ aao aao aao -jgW -gXp -gXp -gXp -gXp -tQw -tQw -wrz -tQw -tQw +iba +upa +upa +upa +upa +eGt +eGt +ifv +eGt +eGt amk -auD -eJE +xFL +vGv anw aao aao -wQC -axV -eFh +ehQ +jZf +lfk anL -aAW -aBH -aCA -aDs -hWa -aFn -hWa -aGW -hmm -aIU -aJQ -hmm -aLH +nRR +mFn +yab +bRv +szP +fBy +szP +rfd +unW +nqa +bpw +unW +myz aMt aMs aLI -aPq -aQw -aRy +wPw +vgc +hPC anI aao aao @@ -83121,17 +73943,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -83142,81 +73964,81 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao aao -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh -izh -otb -otb -izh -izh +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +pIa +pIa +ggO +ggO +pIa +pIa +ggO +ggO aao aao aao aao -izh -izh -nCp -nCp -nCp -izh -izh -izh -izh -izh -izh -otb -otb -izh +ggO +ggO +wlK +wlK +wlK +ggO +ggO +ggO +ggO +ggO +ggO +pIa +pIa +ggO aao aao aao @@ -83239,25 +74061,6 @@ aaa "} (199,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -83268,57 +74071,76 @@ aao aao aao aao -tQw -tQw -wQC -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +ehQ +lfk vAs -agl -ahb -agl -aiu -aiu -ajw +uNL +wUS +uNL +hwH +hwH +mOf adZ aao aao aao -wQC -tQw -tQw -tQw -tQw -tQw -sNQ -tQw -tQw -tQw +ehQ +eGt +eGt +eGt +eGt +eGt +eDE +eGt +eGt +eGt amk amk amk amk aao aao -tQw -wQC -eFh +eGt +ehQ +lfk anI anL anL anI -aDt -hWa -hWa -hWa -aGW +wiq +szP +szP +szP +rfd anL -aIK -aJR +kDh +ygg anI aLI -aLH -aLH -aXc +myz +myz +wcx anI anI anI @@ -83337,18 +74159,18 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH aao aao aao @@ -83358,82 +74180,82 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao aao aao aao -bLA -izh -jGd -izh -izh -izh -izh -izh -izh -izh +uCS +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -otb -otb -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +pIa +pIa +ggO aao aao aao @@ -83456,25 +74278,6 @@ aaa "} (200,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -83485,10 +74288,29 @@ aao aao aao aao -tQw -tQw -tIq -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +bpK +eGt adZ adZ adZ @@ -83498,16 +74320,16 @@ adZ adZ adZ aao -jgW -gXp -tQw -tQw -tQw -tQw -tQw -eFh -tQw -tQw +iba +upa +eGt +eGt +eGt +eGt +eGt +lfk +eGt +eGt aao aao aao @@ -83516,21 +74338,21 @@ aao aao aao aao -jgW -tQw -eFh +iba +eGt +lfk anL -aAX -aAU +kRy +oCE anL -aDq -hWa -hWa -aFo -aGY +exJ +szP +szP +qMY +scd anL -aIV -aJS +lgr +pgB anI anI aMu @@ -83553,19 +74375,19 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -83574,17 +74396,17 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -83594,62 +74416,62 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -83673,25 +74495,6 @@ aaa "} (201,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -83702,12 +74505,31 @@ aao aao aao aao -tQw -tQw -gmN +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +vAx xFZ -tQw -eMX +eGt +ixS aao aao aao @@ -83715,14 +74537,14 @@ aao aao aao aao -wQC -tQw -tQw -tQw -ahw -tQw -tQw -eFh +ehQ +eGt +eGt +eGt +hJx +eGt +eGt +lfk aao aao aao @@ -83733,21 +74555,21 @@ aao aao aao aao -wQC -tQw -eFh +ehQ +eGt +lfk anL -aAY -aAU -aPq -aDq -hWa -aFo -aFp +jAt +oCE +wPw +exJ +szP +qMY +fFS anI aob -wvR -aJX +cIy +ndk aob aob aob @@ -83770,36 +74592,36 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -83811,62 +74633,62 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -jGd -izh -otb -otb -izh -izh -izh -jGd -izh -izh -izh -wfC -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +sPb +ggO +pIa +pIa +ggO +ggO +ggO +sPb +ggO +ggO +ggO +pYC +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -83890,25 +74712,6 @@ aaa "} (202,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -83919,27 +74722,6 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gXp -gXp -aSn -gXp -gXp -gXp -gXp -tQw -tQw -tQw -tQw -tQw -tQw -tQw -sNQ aao aao aao @@ -83950,23 +74732,63 @@ aao aao aao aao -wQC -tQw -eFh +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +upa +upa +xMY +upa +upa +upa +upa +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eDE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +ehQ +eGt +lfk anI anI -aAU +oCE anL -aDu -aEt -aFp +jPz +eFk +fFS anI anI aob -aIW -aJU -aFV -lrJ +bpt +eTN +jwa +hoc aob aao aao @@ -83985,36 +74807,36 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH aao aao aao @@ -84027,62 +74849,62 @@ aao aao aao aao -bLA -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -hPS -otb -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +smu +pIa +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84107,25 +74929,6 @@ aaa "} (203,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -84136,26 +74939,45 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gmN +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +vAx xFZ -tQw +eGt xFZ xFZ xFZ -tQw -tQw -tQw -tQw -tQw -tQw -tQw -eFh +eGt +eGt +eGt +eGt +eGt +eGt +eGt +lfk aao aao aao @@ -84167,10 +74989,10 @@ aao aao aao aao -gmN -ahw -tQw -eMX +vAx +hJx +eGt +ixS anI anI anI @@ -84180,10 +75002,10 @@ anI anI aao aob -aIX -aJV -aKS -aLM +wRE +nbZ +wma +gWM aob aao aao @@ -84200,37 +75022,37 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -84242,27 +75064,27 @@ aao aao aao aao -gCE -gCE -bLA -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO aao aao aao @@ -84272,34 +75094,34 @@ aao aao aao aao -izh -izh -izh -izh +ggO +ggO +ggO +ggO aao aao -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh -pTH -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO +ggO +ggO +rqu +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84324,25 +75146,6 @@ aaa "} (204,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -84350,29 +75153,6 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -sNQ aao aao aao @@ -84384,10 +75164,52 @@ aao aao aao aao -tQw -tQw -tQw -sNQ +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eDE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eDE aao aao aao @@ -84397,10 +75219,10 @@ aao aao aao aob -aDB -aJW -aKT -tCg +wPs +tpW +qto +xuX aob aao aao @@ -84417,37 +75239,37 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -84458,27 +75280,27 @@ aao aao aao aao -gCE -gCE -gCE -bLA -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +uCS +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84496,26 +75318,26 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84541,54 +75363,54 @@ aaa "} (205,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -wQC -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +ehQ +eGt xFZ -sNQ +eDE aao aao aao @@ -84601,10 +75423,10 @@ aao aao aao aao -tQw -tQw -tQw -tQw +eGt +eGt +eGt +eGt aao aao aao @@ -84614,8 +75436,8 @@ aao aao aob aob -wvR -aJX +cIy +ndk aob aob aob @@ -84633,39 +75455,39 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -84674,27 +75496,27 @@ aao aao aao aao -gCE -gCE -gCE -gCE -mHp -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +gBH +gBH +gBH +gBH +jxE +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84714,23 +75536,23 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh -jGd -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +sPb +ggO +ggO aao aao aao @@ -84758,52 +75580,52 @@ aaa "} (206,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao @@ -84817,11 +75639,11 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +eGt +eGt +eGt +eGt +eGt aao aao aao @@ -84830,10 +75652,10 @@ aao aao aob aob -aHS -aIZ -aJY -aKU +lgB +diA +ePh +kjp aob aob aao @@ -84842,74 +75664,74 @@ aao aao aob aob -aTC -aUD +dSx +thV aob aob aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO aao aao aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84931,22 +75753,22 @@ aao aao aao aao -izh -izh -jGd -izh -izh -otb -otb -izh -jGd -izh -tdB -izh -izh -izh -izh -izh +ggO +ggO +sPb +ggO +ggO +pIa +pIa +ggO +sPb +ggO +rTr +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -84975,46 +75797,11 @@ aaa "} (207,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw aao aao aao @@ -85034,11 +75821,46 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt aao aao aao @@ -85046,76 +75868,76 @@ aao aao aob aob -aGZ -aHT -aJa -aJZ -aKV -aLO +mBM +hZO +grb +ddL +eRa +jTC aob aob aao aao aob aob -aSo -aTD -aUE -aVx +sij +fhd +pGL +eOh aob aob aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO +ggO aao aao aao @@ -85149,19 +75971,19 @@ aao aao aao aao -izh -izh -izh -izh -otb -otb -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +pIa +pIa +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -85192,45 +76014,11 @@ aaa "} (208,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -85245,93 +76033,127 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao aao aob aob -aGk -aHT -aHU -aHV -aKa -aKW -aKV -aMv +irS +hZO +vwZ +uWK +tEY +dgh +eRa +lGZ aob aob aob aob -aRz -opw -aTE -aUF -aVy -aVZ +grh +fTd +iRs +rRX +tmG +sGR aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA -izh -izh +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS +ggO +ggO aao aao aao @@ -85367,16 +76189,16 @@ aao aao aao aao -izh -izh -izh -izh -izh -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -85409,45 +76231,11 @@ aaa "} (209,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -85461,59 +76249,93 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao aob -aFq -aGl -axn -aHV -aJc -aKb -aKX -aLQ -aMw -aMX -aOp -aPr -aMX -aRA -aSq -jzD -aUG -aVz -aHc +bYA +kUV +xAN +uWK +jno +fJb +ixe +dyJ +xvl +mmY +fnv +poR +mmY +qQV +llh +kMY +uEA +lpB +yhS aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -85521,32 +76343,32 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -bLA +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +uCS aao aao aao @@ -85586,11 +76408,11 @@ aao aao aao aao -izh -izh -izh -izh -izh +ggO +ggO +ggO +ggO +ggO aao aao aao @@ -85626,44 +76448,11 @@ aaa "} (210,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -ahw -tQw -tQw -ozQ -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -85678,56 +76467,89 @@ aao aao aao aao -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw +aao +aao +aao +aao +aao +eGt +eGt +eGt +hJx +eGt +eGt +oNK +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt aao aao aao aob -aFr -aGm -soG -aHW -bQi -aKc -aKY -aLR -aMx -aMY -aOq -aPs -aMY -aRB -aSr -aTG -bQi -aVz -aWb +hIu +ihs +tpl +cff +eVI +xJK +ljv +kPF +cVP +sKo +ryj +ykz +sKo +jms +rhO +sIE +eVI +lpB +ghE aob aao aao -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -85742,26 +76564,26 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH aao aao aao @@ -85843,44 +76665,11 @@ aaa "} (211,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -85895,56 +76684,89 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao aob aob -aGn -aHd -aHX -aJd -aKd -vmC -aLa -aMy +leT +vdm +nBx +hOU +mQn +fRb +mUp +vAu aob aob aob aob -aRC -aSs -aTH -aUH -aVA -aWc +uKB +lDN +wQz +leD +omP +lPj aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -85960,23 +76782,23 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86060,44 +76882,11 @@ aaa "} (212,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw aao aao aao @@ -86112,57 +76901,90 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao aao aob aob -aHe -aHd -aJe -aKe -aLa -aLS +sRg +vdm +cKk +lXq +mUp +sQK aob aob aao aao aob aob -aSt -aTI -aUI -aVB +vPK +unX +dBj +dQV aob aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86181,11 +77003,11 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86277,43 +77099,11 @@ aaa "} (213,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -86329,19 +77119,51 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao @@ -86349,10 +77171,10 @@ aao aao aob aob -aHY -aJf -aKf -aLb +ksj +prj +jKE +nZU aob aob aao @@ -86361,25 +77183,25 @@ aao aao aob aob -aTJ -sfd +cjn +jVg aob aob aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86494,43 +77316,11 @@ aaa "} (214,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -86546,22 +77336,54 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt aao aao aao @@ -86579,24 +77401,24 @@ aao aao aob aob -pIN -pIN -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +nDC +nDC +eGt +eGt +eGt +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86711,43 +77533,11 @@ aaa "} (215,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -86763,57 +77553,89 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +aao +eGt +eGt +eGt +eGt +eGt +eGt +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -86928,42 +77750,11 @@ aaa "} (216,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw aao aao aao @@ -86981,57 +77772,88 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -wWK -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -wWK -gCE -gCE +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +gBH +gBH +cua +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +cua +gBH +gBH aao aab aab @@ -87145,41 +77967,11 @@ aaa "} (217,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -87199,56 +77991,86 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao aao aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aab aaa @@ -87359,27 +78181,8 @@ aaa aaa aaa aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +"} +(218,1,1) = {" aaa aab aao @@ -87387,16 +78190,6 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao @@ -87416,62 +78209,91 @@ aao aao aao aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao aao -tQw -tQw -tQw -tQw -tQw aao aao aao aao aao aao -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -gCE -gCE +eGt +eGt +eGt +eGt +eGt aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +aao +aao +aao +aao +aao +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +gBH +gBH +aao +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aab aaa aaa aaa -aaa +tHB aaa aaa aaa @@ -87579,34 +78401,12 @@ aaa "} (219,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao aao aao aao -tQw -tQw -tQw aao aao aao @@ -87626,6 +78426,16 @@ aao aao aao aao +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao aao aao aao @@ -87635,9 +78445,6 @@ aao aao aao aao -tQw -tQw -tQw aao aao aao @@ -87646,49 +78453,64 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -ahw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE -gCE +eGt +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +hJx +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +aao +aao +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH +gBH aao aao aab aaa aaa aaa -aaa +tHB aaa aaa aaa @@ -87796,25 +78618,6 @@ aaa "} (220,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -87864,40 +78667,59 @@ aao aao aao aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao -tQw -tQw -tQw -tQw -tQw -tQw -tQw aao aao -tQw -tQw aao aao aao aao aao -gCE -gCE -gCE -wWK -gCE -gCE -gCE -gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +eGt +eGt +eGt +eGt +eGt +eGt +eGt +aao +aao +eGt +eGt +aao +aao +aao +aao +aao +gBH +gBH +gBH +cua +gBH +gBH +gBH +gBH aao aao aao @@ -87907,7 +78729,7 @@ aaa aaa aaa aaa -aaa +tHB aaa aaa aaa @@ -88013,25 +78835,6 @@ aaa "} (221,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -88084,12 +78887,7 @@ aao aao aao aao -tQw -tQw -tQw aao -tQw -tQw aao aao aao @@ -88108,12 +78906,36 @@ aao aao aao aao -gCE -gCE -gCE -gCE -gCE -gCE +eGt +eGt +eGt +aao +eGt +eGt +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gBH +gBH +gBH +gBH +gBH +gBH aao aao aao @@ -88124,15 +78946,15 @@ aaa aaa aaa aaa +tHB aaa aaa aaa aaa aaa -aaa -aaa -aaa -aaa +tHB +tHB +tHB aaa aaa aaa @@ -88230,25 +79052,6 @@ aaa "} (222,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -88327,10 +79130,29 @@ aao aao aao aao -gCE -gCE -gCE -gCE +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +gBH +gBH +gBH +gBH aao aao aao @@ -88347,9 +79169,9 @@ aaa aaa aaa aaa -aaa -aaa -aaa +tHB +tHB +tHB aaa aaa aaa @@ -88447,25 +79269,6 @@ aaa "} (223,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aab aao aao @@ -88552,6 +79355,25 @@ aao aao aao aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao +aao aab aaa aaa @@ -88664,25 +79486,25 @@ aaa "} (224,1,1) = {" aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab aab aab aab diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm index 744ef04af7..7f8a0f8d92 100644 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -1,55 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ab" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ac" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ad" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ae" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"af" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ag" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/marshal_office) "ah" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/marshal_office) @@ -59,1384 +8,1207 @@ "aj" = ( /turf/open/mars, /area/bigredv2/outside/n) -"ak" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"al" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/marshal_office) -"am" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"an" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"ao" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"ap" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/marshal_office) -"aq" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"ar" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"as" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/marshal_office) "at" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/marshal_office) -"au" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/marshal_office) -"av" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"aY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aw" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, +"aZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"ax" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" +"ba" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"ay" = ( -/obj/structure/machinery/light{ +"bb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/marshal_office) -"az" = ( -/obj/structure/surface/table, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aA" = ( -/obj/structure/toilet{ +"bc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aB" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"bd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aC" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"bG" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"aD" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"bL" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"aE" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"co" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"aF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"cp" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"aG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"cs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aH" = ( -/obj/structure/surface/rack, +"cD" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/bigredv2/outside/marshal_office) -"aI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - icon_state = "door_locked"; - locked = 0; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/marshal_office) -"aJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - icon_state = "door_locked"; - locked = 0; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"aK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreenfull" - }, +"cE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aL" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"cF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aN" = ( +"cK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aO" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aP" = ( +"cL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/bigredv2/outside/marshal_office) -"aS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aT" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "dark" +"cM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/marshal_office) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"aV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/clothing/shoes/black, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aW" = ( -/obj/structure/pipes/vents/pump, +"cX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/obj/item/weapon/shield/riot, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"cY" = ( +/turf/open/floor, /area/bigredv2/outside/marshal_office) -"aY" = ( +"dd" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aZ" = ( +"di" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/obj/effect/landmark/survivor_spawner, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"ba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"dj" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/medical) +"dk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +"dM" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor, +"eB" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"be" = ( -/obj/structure/machinery/power/apc, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, +"fj" = ( +/obj/structure/bed, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bg" = ( +"fx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"bh" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "redcorner" - }, +"fK" = ( +/obj/structure/surface/table, +/obj/item/ore/diamond, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"bi" = ( -/turf/open/floor{ - icon_state = "redcorner" +"gl" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bj" = ( -/obj/effect/decal/cleanable/dirt, +"gm" = ( /obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "redcorner" + dir = 8 }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"bk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" - }, +"gp" = ( +/obj/item/shard, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "redcorner" +"hC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + icon_state = "door_locked"; + name = "\improper Marshal Office Holding Cell" }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bm" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "redcorner" - }, +"ie" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"bn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" +"ih" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bp" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"jx" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ density = 0; dir = 1; icon_state = "door_open"; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"bq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"br" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/marshal_office) -"bs" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - icon_state = "dark" + name = "\improper Marshal Office Holding Cell" }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +"jP" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/n) +"kj" = ( +/obj/structure/machinery/light, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bu" = ( +"kV" = ( /obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"bv" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor{ - icon_state = "dark" - }, +"li" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"lw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/marshal_office) -"bx" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"by" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, +"mp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bA" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bcircuit" +"mw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + icon_state = "door_locked"; + name = "\improper Marshal Office Prison" }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"bB" = ( +"mA" = ( /obj/structure/surface/table, -/obj/item/ore/diamond, -/obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"bD" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/marshal_office) -"bE" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, +"nl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" - }, +"nG" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"nH" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"bG" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating, +"oG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bH" = ( +"oN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bI" = ( +"pd" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/screwdriver, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bK" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" +"pl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Armory" }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bL" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) -"bM" = ( -/obj/structure/machinery/camera/autoname{ +"ps" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/bigredv2/outside/marshal_office) -"bN" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bO" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkish" +"pI" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" +"pM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"pW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig" }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"bR" = ( +"qc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"bS" = ( +"qj" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/n) +"qB" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"bT" = ( +"qE" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"qS" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"qZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" }, +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"rZ" = ( /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/redcorner/west, /area/bigredv2/outside/marshal_office) -"bV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sb" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ub" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Checkpoint" }, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"um" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bW" = ( +"uw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - icon_state = "door_locked"; - locked = 0; - name = "\improper Marshal Office Armory" - }, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bX" = ( +"uA" = ( /obj/structure/surface/table, -/obj/item/ore/uranium, -/turf/open/floor{ - icon_state = "bcircuit" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bY" = ( -/obj/structure/machinery/light{ - dir = 8 +"uK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"uL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"uX" = ( +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"vi" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"wE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_y = 24 }, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"bZ" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "darkish" +"wV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"ca" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +"xs" = ( +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"cb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Interrogation" - }, -/turf/open/floor{ - icon_state = "darkish" - }, +"yj" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"cc" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "dark" +"ym" = ( +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/marshal_office) +"yN" = ( +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"yO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/red, /area/bigredv2/outside/marshal_office) -"ce" = ( +"yU" = ( /obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor{ - icon_state = "dark" +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Aq" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cf" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "dark" +"AB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Evidence Room" }, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"cg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"BR" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"BU" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Cf" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"ch" = ( +"Cg" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"Cv" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"CL" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"ci" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" +"CP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Prison" }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"cj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkish" - }, +"Du" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"ck" = ( -/obj/structure/machinery/camera/autoname{ +"DA" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"cl" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, +"Eb" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Ef" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Ei" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"Eu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cm" = ( +"EO" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"ET" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"EV" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/n) +"Fc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/obj/item/weapon/shield/riot, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Fk" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "redcorner" +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"FI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, +/turf/open/floor/red/northwest, /area/bigredv2/outside/marshal_office) -"cn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"FR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"co" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, +"Go" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"cp" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, +"GU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/red/southwest, /area/bigredv2/outside/marshal_office) -"cq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Evidence Room" +"GV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/red/west, +/area/bigredv2/outside/marshal_office) +"JE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Kc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"cr" = ( -/obj/structure/machinery/light{ +"KI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/screwdriver, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Lf" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/item/ammo_casing/shell, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"Ly" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Marshal Offices"; + name = "\improper Marshal Offices Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"Mi" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cs" = ( +"Mx" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"MH" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/marshal_office) +"Nd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, +/turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"ct" = ( -/obj/structure/closet/hydrant{ +"Nk" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ns" = ( +/obj/structure/sink{ pixel_y = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"Nv" = ( +/obj/structure/machinery/camera/autoname, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, +/turf/open/floor/red/northeast, +/area/bigredv2/outside/marshal_office) +"NF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/black_vest, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +"NT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cw" = ( +"Ob" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cx" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" +"OR" = ( +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_x = -32 }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) -"cy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +"OS" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "red" +"Qd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Marshal Office Prison Toilet" }, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"cA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +"QE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"cB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, +"QF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"cC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" +"QL" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"cE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor, +"Rh" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cF" = ( +"Rl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"cK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +/turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"cL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +"Rz" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"RE" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"cM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"RZ" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/black, -/turf/open/floor, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"cN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" +"Sj" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "red" +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Sq" = ( +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -30 }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Sw" = ( +/obj/structure/surface/table, +/obj/item/ore/uranium, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"cO" = ( +"ST" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "redcorner" - }, +/obj/item/shard, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cP" = ( +"To" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood, /obj/item/tool/kitchen/knife, -/turf/open/floor{ - icon_state = "redcorner" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"cQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor{ - icon_state = "redcorner" - }, +"Ty" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"cR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "redcorner" +"TX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"cS" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, +"Ua" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "redcorner" +"Uc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, +/turf/open/floor/red/north, /area/bigredv2/outside/marshal_office) -"cU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Holding Cell" +"Up" = ( +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"UH" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 }, -/turf/open/floor{ - icon_state = "dark" +/obj/item/tool/soap/deluxe, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) +"UO" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) -"cV" = ( +"Ve" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; icon_state = "door_locked"; - locked = 0; - name = "\improper Marshal Office Holding Cell" - }, -/turf/open/floor{ - icon_state = "dark" + name = "\improper Marshal Office Prison" }, +/turf/open/floor/whitegreenfull/northeast, /area/bigredv2/outside/marshal_office) -"cW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Office Checkpoint" +"Vh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Vl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + icon_state = "door_locked"; + name = "\improper Marshal Office Armory" }, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor, +"Vp" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"cY" = ( -/turf/open/floor, +"Vv" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"cZ" = ( -/turf/open/floor{ - icon_state = "dark" +"VG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/red/southeast, /area/bigredv2/outside/marshal_office) -"da" = ( -/obj/effect/landmark/corpsespawner/prisoner, +"VH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Wx" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"db" = ( -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_x = -32 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +"Xg" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"dc" = ( +"Xl" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, +/turf/open/floor/redfull/northwest, /area/bigredv2/outside/marshal_office) -"dd" = ( +"XD" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"de" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor{ - icon_state = "dark" - }, +"XI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"df" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "dark" - }, +"XM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"dg" = ( +"Yv" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" + dir = 4 }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/marshal_office) -"dh" = ( +"Zw" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/marshal_office) +"ZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 }, +/turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) -"di" = ( +"ZN" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) -"dj" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/medical) -"dk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor, +/obj/effect/landmark/good_item, +/turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) (1,1,1) = {" -aa -ab -ab -as -ab -ab -aI -aO +qc +yN +yN +QL +yN +yN +mw +yj aY -bh +kj ah -by -bM -by -by +MH +TX +MH +MH at -cz -cN +Rl +qZ ah ah ah dj "} (2,1,1) = {" -ab -aa -aa +yN +qc +qc at -aw -aw +uX +uX ah -aP +JE aY -bi -ah -by -cZ -cZ -cZ -cq -cA -bi +Up +ah +MH +Mx +Mx +Mx +at +ps +Up bG -cZ -de +Mx +Mi dj "} (3,1,1) = {" -ac -aa -ao +mA +qc +Wx at at at ah -aP +JE aY -bi -ah -bA -cZ -cZ -ci -at -cA -cO -cU -cZ -ci +Up +ah +Cg +Mx +Mx +Mx +AB +ps +Kc +jx +Mx +Ua dj "} (4,1,1) = {" -ac -aa -aa +mA +qc +qc at -ax -az +FR +kV ah -aP +JE aZ -bi +Up ah -bB -bN -bX -by +fK +nH +Sw +Vv at -cA -cP +ps +To bG -cZ -df +Mx +fj dj "} (5,1,1) = {" -ad -ak -ap -au -ap -ap -aJ -aQ +Lf +uL +EO +fx +EO +EO +Ve +uU ba -bj +Ef ah at at at at at -cA -bk +wE +nl ah ah ah dj "} (6,1,1) = {" -ae -ab -ab +sb +yN +yN at -aw -aw +uX +uX ah -aR +Nk bb -bk -ah -ca -ca -bY -ca -at -cA -bk +nl +ah +FI +GV +DA +GU +Mx +ps +nl bG -cZ -de +Mx +Mi dj "} (7,1,1) = {" -ac -ab -aa +mA +yN +qc at at at ah -aR +Nk bb -bl -ah -bD -bO -bZ -cj -at -cB -bk -cV -cZ -ci +ZN +ah +Uc +MH +Ei +yO +Mx +wV +nl +hC +Mx +Ua dj "} (8,1,1) = {" -af -ab -ab +CL +yN +yN at -ax -az +FR +kV ah -aR +Nk bc -bk -ah -ca -ca -ca -ca -at -cC -cQ +nl +ah +Uc +MH +MH +yO +Mx +uw +oG bL -cZ -df +Mx +fj dj "} (9,1,1) = {" -aa -aa -aa -as -ab -ab -aK -aR +qc +qc +qc +QL +yN +yN +CP +Nk bc -bm +dM ah -ca -ca -ca -ck -at -cC -bi +Nv +ZB +ZB +VG +Mx +uw +Up ah ah ah dj "} (10,1,1) = {" -ag -al -al +Yv +Fk +Fk at -aw -aw +uX +uX ah -aR +Nk bb -bh -ah -at -at -cb -at -at -cC -bi +kj +ah +Mx +Mx +Mx +Mx +Mx +uw +Up bG -cZ -de +Mx +Mi dj "} (11,1,1) = {" ah -am -aq +Ns +xs at at at ah -aR +Nk bb -bk -bq -bE -bP -bP -cl -cr +nl +pW +ym +qB +qB +lw +rZ bb -bi -cU -cZ -ci +Up +jx +Mx +Ua dj "} (12,1,1) = {" ah -an -ar -av -ay -aA +UH +gm +Qd +pI +RZ ah -aR +Nk bd -bn -br -bF -bn -bn -cm +qJ +Nd +mp +qJ +qJ +XM cs cE -cR +pM bG -da -df +Rh +fj dj "} (13,1,1) = {" @@ -1452,12 +1224,12 @@ ah ah ah bG -bQ +ie bG ah -ct +gl cF -cS +Sq ah ah ah @@ -1466,94 +1238,94 @@ dj (14,1,1) = {" ai ai -aj -aj -ah -aB -aL -aL -aL -ah -bs -cZ -cZ -cc +Rz +nG +ah +Eb +Ty +Ty +Ty +ah +OS +Mx +Mx +ET bG -aP +JE bc -bi +Up bL -cZ -de +Mx +Mi dj "} (15,1,1) = {" -ai -ai aj aj +aj +qS ah -aC -cZ -cZ -cZ +Sj +Mx +Mx +Mx ah -bt -cZ -cZ -cc +uA +Mx +Mx +ET bG -cu +QE bc -cQ -cV -cZ -ci +oG +hC +Mx +Ua dj "} (16,1,1) = {" -ai -ai aj aj -ah -aD -cZ -aS -cZ -ah -bt -cZ -aN -cZ -cn -aP +aj +qS +ah +Du +Mx +NF +Mx +ah +uA +Mx +uK +Mx +QF +JE bb -bk +nl bG -cZ -df +Mx +fj dj "} (17,1,1) = {" -ai aj aj -aj -ah -aD -aN -aT -cZ -ah -bu -bH -bR -ce +qj +qS +ah +Du +uK +XI +Mx +ah +BU +oN +Ob +VH co -cw +li bb -bk +nl ah ah ah @@ -1562,118 +1334,118 @@ dj (18,1,1) = {" aj aj -aj -aj +jP +ai ah -aE -aN -aU -be +vi +uK +Vh +Cf ah -bv -bI -bS -ce +eB +KI +ST +VH cp -cx +gp cF -bk -cW -db -dg -dj +nl +ub +OR +UO +Ly "} (19,1,1) = {" aj -aj -aj -aj +qj +BR +ai ah -aF -aN -aV -ci +Go +uK +Eu +Ua ah -bw -aN -bT -cf +Aq +uK +pd +Cv bL -aR +Nk bb -bk +nl bG -dc -dh -dj +Xl +Zw +Ly "} (20,1,1) = {" -aj -aj -aj -aj +qj +BR +ai +ai ah -aG -aN -aW -bg -bp -bg -bg -bU -cg -bp -aQ +yU +uK +XD +um +pl +um +um +dH +NT +pl +uU cK -bk +nl ah bG bG dj "} (21,1,1) = {" -aj -aj -aj -aj +EV +ai +ai +ai ah -aH -cZ -aN -cZ +RE +Mx +uK +Mx ah -bx -bK -bV -ch +Xg +Vp +ih +tk ah -aR +Nk cL -cT +qE cX dd dd dk "} (22,1,1) = {" -aj +qS ah ah ah ah ah ah -aX +Fc ah ah ah bL -bW +Vl bG ah -cy +cD cM -bk +nl cY cY di diff --git a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm index 99728fdf50..8b49fafe52 100644 --- a/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm +++ b/maps/map_files/BigRed/sprinkles/10.tcomms_open.dmm @@ -6,121 +6,73 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm) "c" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "d" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "e" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "f" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "g" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "h" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "j" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm) "k" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "l" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "m" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "n" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "o" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/telecomm) "p" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "q" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/telecomm) "r" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/telecomm) "s" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/telecomm) "t" = ( /obj/effect/decal/cleanable/dirt, @@ -130,14 +82,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/telecomm) "v" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm) "w" = ( /obj/structure/sign/safety/hazard, @@ -145,31 +93,21 @@ /area/bigredv2/outside/telecomm) "x" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/telecomm) "y" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz1_telecomm_cas) "z" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "A" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "B" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) "C" = ( /turf/open/mars_cave, @@ -183,19 +121,13 @@ /area/bigredv2/outside/lz1_telecomm_cas) "F" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) "G" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz1_telecomm_cas) "U" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz1_telecomm_cas) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm index 8f6063172f..897f76d0f6 100644 --- a/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm +++ b/maps/map_files/BigRed/sprinkles/15.reactor_meltdown.dmm @@ -1,9 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ai" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "ak" = ( /obj/effect/spawner/random/tool, @@ -12,35 +10,25 @@ "al" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "am" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "an" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "ao" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aq" = ( /turf/closed/wall/solaris/reinforced, @@ -54,17 +42,13 @@ "aD" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aE" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aF" = ( /obj/structure/window/framed/solaris, @@ -72,51 +56,34 @@ /area/bigredv2/outside/engineering) "aT" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "aU" = ( /obj/structure/surface/rack, /obj/item/device/camera_film, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) "aV" = ( /obj/structure/surface/rack, /obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "aW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "aY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "aZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "ba" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -124,20 +91,14 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/device/lightreplacer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bc" = ( /obj/structure/machinery/light{ @@ -146,58 +107,41 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) "be" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/mask/breath, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bk" = ( /obj/effect/decal/cleanable/dirt, @@ -205,9 +149,7 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bl" = ( /obj/effect/decal/cleanable/liquid_fuel, @@ -216,9 +158,7 @@ name = "Storm Shutters"; pixel_y = -32 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "bm" = ( /obj/structure/bed/chair{ @@ -226,35 +166,26 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bn" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bp" = ( /obj/item/folder/yellow, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "bq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -263,87 +194,62 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engineering Workshop" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "br" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "bu" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "bv" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "bx" = ( /obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "by" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bA" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bB" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bC" = ( /obj/effect/decal/cleanable/dirt, @@ -361,30 +267,19 @@ dir = 8 }, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/telecomm/engi) "bF" = ( /obj/structure/machinery/camera/autoname, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/telecomm/engi) "bG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/telecomm/engi) "bH" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bJ" = ( /obj/structure/bed/chair{ @@ -393,70 +288,46 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bK" = ( /obj/item/folder/yellow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "bL" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bM" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) "bN" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) "bO" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) "bR" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "bS" = ( /obj/structure/bed/chair/office/light{ @@ -465,18 +336,13 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "bT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/telecomm/engi) "bU" = ( /obj/item/device/radio/intercom{ @@ -485,27 +351,21 @@ name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "bV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bY" = ( /obj/effect/decal/cleanable/dirt, @@ -513,27 +373,19 @@ amount = 30 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "bZ" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "ca" = ( /obj/structure/sign/safety/hazard{ pixel_y = -32 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) "ce" = ( /obj/item/tool/lighter/random, @@ -541,87 +393,59 @@ dir = 4 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cf" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ch" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "ck" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "cl" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "cn" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 1; name = "\improper Engine Reactor" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "co" = ( /obj/structure/closet/radiation, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "cp" = ( /obj/item/folder/yellow, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "cq" = ( /obj/effect/decal/cleanable/ash, /obj/structure/machinery/power/breakerbox, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "cr" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/telecomm/engi) "cs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -630,9 +454,7 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "ct" = ( /obj/structure/machinery/door_control{ @@ -642,48 +464,36 @@ pixel_x = 30; req_access_txt = "7" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "cv" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/telecomm/engi) "cw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cx" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cz" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cA" = ( /obj/structure/surface/table, @@ -691,10 +501,7 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "cB" = ( /obj/structure/machinery/light{ @@ -703,24 +510,17 @@ /obj/structure/sign/safety/high_rad{ pixel_x = 32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "cD" = ( /obj/structure/machinery/computer/area_atmos, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) "cE" = ( /obj/structure/machinery/light{ @@ -729,17 +529,12 @@ /obj/structure/sign/safety/high_rad{ pixel_x = -32 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "cF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "cG" = ( /obj/structure/window/framed/solaris/reinforced, @@ -755,9 +550,7 @@ /obj/effect/landmark/static_comms/net_two{ broken_on_spawn = 1 }, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "cI" = ( /obj/structure/sign/safety/hazard{ @@ -765,29 +558,21 @@ }, /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "cK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "cM" = ( /turf/open/mars, /area/bigredv2/outside/lz2_south_cas) "cN" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/lz2_south_cas) "cO" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "cP" = ( /turf/open/floor/plating, @@ -800,9 +585,7 @@ /turf/open/gm/river, /area/bigredv2/outside/engineering) "cT" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/lz2_south_cas) "cX" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -812,14 +595,10 @@ dir = 1; name = "\improper Engineering Complex" }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "cY" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz2_south_cas) "da" = ( /turf/closed/wall/mineral/uranium, @@ -830,20 +609,14 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dc" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) "dd" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "de" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz2_south_cas) "df" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -854,10 +627,7 @@ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "dj" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -868,9 +638,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) "dn" = ( /turf/open/mars_cave, @@ -901,9 +669,7 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/s) "dv" = ( /obj/structure/machinery/power/turbine, @@ -911,14 +677,11 @@ /area/bigredv2/outside/engineering) "dx" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "dy" = ( -/obj/structure/machinery/power/geothermal{ - name = "Reactor Turbine"; - power_generation_max = 1e+006 +/obj/structure/machinery/power/reactor/colony{ + name = "Reactor Turbine" }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) @@ -927,23 +690,17 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dA" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) "dC" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) "dE" = ( /obj/structure/window_frame/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dF" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/s) "dG" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -952,9 +709,7 @@ /area/bigredv2/outside/engineering) "dJ" = ( /obj/effect/landmark/hunter_primary, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "dK" = ( /obj/structure/machinery/compressor{ @@ -964,38 +719,26 @@ /turf/open/floor/plating, /area/bigredv2/outside/engineering) "dO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_south_cas) "dR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) "dS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "dT" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "dU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz2_south_cas) "dV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "dW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz2_south_cas) "dX" = ( /obj/structure/girder/reinforced, @@ -1003,9 +746,7 @@ /area/bigredv2/outside/engineering) "dY" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "dZ" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1014,9 +755,7 @@ "eb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ec" = ( /obj/structure/catwalk/bigred, @@ -1041,17 +780,13 @@ /obj/structure/machinery/compressor{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ej" = ( /obj/structure/machinery/light_construct{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ek" = ( /obj/structure/machinery/camera/autoname{ @@ -1082,9 +817,7 @@ "eo" = ( /obj/effect/decal/cleanable/dirt/greenglow, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "ep" = ( /obj/item/tool/extinguisher, @@ -1092,9 +825,7 @@ /area/bigredv2/outside/engineering) "eq" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "er" = ( /obj/effect/decal/cleanable/dirt, @@ -1103,27 +834,19 @@ /area/bigredv2/outside/engineering) "et" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "ev" = ( /obj/structure/machinery/light_construct, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ew" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "ex" = ( /obj/effect/decal/cleanable/molten_item, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "ey" = ( /obj/structure/machinery/light_construct{ @@ -1134,17 +857,13 @@ /area/bigredv2/outside/engineering) "ez" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "eA" = ( /obj/structure/machinery/light_construct{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) "eB" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1154,55 +873,38 @@ "eC" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/molten_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eD" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eE" = ( /obj/structure/computerframe, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eF" = ( /obj/structure/surface/table, /obj/item/device/analyzer, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "eG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eH" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "panelscorched" - }, +/turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) "eI" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/telecomm/engi) "eJ" = ( /obj/effect/decal/cleanable/molten_item, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eK" = ( /obj/effect/decal/cleanable/molten_item, @@ -1211,9 +913,7 @@ /area/bigredv2/outside/engineering) "eL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/engineering) "eM" = ( /obj/effect/decal/cleanable/dirt/greenglow, @@ -1222,43 +922,31 @@ /area/bigredv2/outside/engineering) "eN" = ( /obj/effect/decal/cleanable/dirt/greenglow, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, +/turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) "eO" = ( /turf/closed/wall/mineral/uranium/leaking, /area/bigredv2/outside/engineering) "fI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "gT" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "im" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "iQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "jr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz2_south_cas) "kN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1268,9 +956,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "oE" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -1281,23 +967,15 @@ /area/bigredv2/outside/telecomm/engi) "oK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "sU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) "to" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "vs" = ( /turf/closed/wall/solaris/reinforced, @@ -1306,30 +984,21 @@ /obj/structure/machinery/power/apc/fully_broken{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "xl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) "xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "yH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Ah" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1337,44 +1006,29 @@ /area/bigredv2/outside/lz2_south_cas) "Bo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/telecomm/engi) "CA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Dh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) "Dq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) "ET" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) "IE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) "KJ" = ( /obj/structure/window_frame/solaris/reinforced, @@ -1384,72 +1038,46 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "LE" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Nv" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/engineering) "NT" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/telecomm/engi) "NX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/lz2_south_cas) "Ph" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) "RN" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/telecomm/engi) "Sz" = ( /obj/item/stack/sheet/glass, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) "SC" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) "Tv" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "Uo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, +/turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/engi) "WI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm index 9666ca41a4..9ae1d2f713 100644 --- a/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm +++ b/maps/map_files/BigRed/sprinkles/20.etatunnel_open.dmm @@ -1,243 +1,91 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ao" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +"ae" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) -"au" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"az" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"bu" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"aC" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_sw) +"be" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/caves_sw) +"bP" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"bW" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/caves_sw) +"cC" = ( +/obj/item/shard{ + pixel_x = 11; + pixel_y = 8 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"cH" = ( +/obj/structure/machinery/door/poddoor/two_tile{ + name = "\improper Eta Tunnel Lockdown" }, -/area/bigredv2/caves/mining) +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) "cR" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "dx" = ( /turf/open/mars_cave, /area/bigredv2/caves_research) -"fo" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/outside/lz2_south_cas) -"fK" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/outside/lz2_south_cas) -"fQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/outside/lz2_south_cas) -"gQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/bigredv2/caves_sw) -"ie" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/outside/lz2_south_cas) -"ii" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_sw) -"ik" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +"eu" = ( +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) -"io" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +"ff" = ( +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) -"iF" = ( -/obj/structure/surface/table/reinforced/prison, +"fH" = ( /obj/effect/decal/cleanable/blood{ - dir = 8; - icon_state = "gib6"; - layer = 4; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/item/shard{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + base_icon = 'icons/obj/items/weapons/grenade.dmi'; + desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; + icon = 'icons/obj/items/weapons/grenade.dmi'; + icon_state = "grenade_custom"; + name = "M55C Teargas grenade" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jj" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/lz2_south_cas) -"ki" = ( +"iv" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"iE" = ( /obj/structure/machinery/light/double{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"kq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/slug/baton{ - dir = 1; - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/slug/baton{ - dir = 4; - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/explosive/grenade/high_explosive/airburst{ - pixel_y = 8 - }, -/obj/item/storage/box/packet/baton_slug{ - pixel_x = -7; - pixel_y = -3 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"kS" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/caves_sw) -"lQ" = ( +"iY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_sw) -"mT" = ( -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/plating{ - burnt = 1; - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"nx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) -"pn" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves_sw) -"qm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/lz2_south_cas) -"qW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/caves_sw) -"sJ" = ( -/obj/item/clothing/suit/storage/CMB, -/obj/structure/closet/secure_closet/marshal, -/obj/structure/machinery/light/double, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"sV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_sw) -"uJ" = ( -/obj/item/shard{ - pixel_x = 11; - pixel_y = 8 +"jf" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs{ + pixel_x = 1; + pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 11 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"vX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +"jF" = ( +/turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_sw) -"wn" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/bigredv2/outside/lz2_south_cas) -"wJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"jO" = ( +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz2_south_cas) -"wK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"wW" = ( +"kV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_research) +"ls" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/helmetgarb/riot_shield{ pixel_y = -15 @@ -250,83 +98,135 @@ pixel_x = -11; pixel_y = 1 }, -/obj/item/handcuffs{ +/obj/item/restraint/handcuffs{ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"xS" = ( -/obj/item/trash/cigbutt, -/obj/item/shard{ - pixel_x = 9; - pixel_y = -5 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +"lB" = ( +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/outside/lz2_south_cas) -"yw" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves) -"zB" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +"mg" = ( +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) -"zP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, +"mk" = ( +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_research) +"ml" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) -"AD" = ( +"nP" = ( +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/lz2_south_cas) +"nU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"pd" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/caves_sw) +"pE" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6"; pixel_y = 20 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"rA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bundle, +/obj/item/restraint/handcuffs{ + pixel_y = -3 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Be" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshals Mining Security Post" +"rJ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/lz2_south_cas) +"sy" = ( +/obj/item/trash/cigbutt, +/obj/item/shard{ + pixel_x = 9; + pixel_y = -5 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"tG" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"vl" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/lz2_south_cas) +"vs" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"vy" = ( +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_research) +"wo" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/caves_sw) +"xY" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_sw) +"ye" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/lz2_south_cas) +"yj" = ( +/obj/item/clothing/suit/storage/CMB, +/obj/structure/closet/secure_closet/marshal, +/obj/structure/machinery/light/double, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"yw" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves) +"zf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -5; + pixel_y = 17 }, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Bm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +"Ce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window{ + dir = 1 }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Ch" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"CX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) -"Bz" = ( +"Dp" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"BO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, +"Dw" = ( +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) -"BY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/bigredv2/caves_research) -"En" = ( +"ET" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/lz2_south_cas) +"EV" = ( /obj/structure/window_frame/solaris/reinforced, /obj/item/shard{ pixel_x = -9; @@ -337,163 +237,108 @@ pixel_y = -9 }, /obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Et" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +"Fm" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"Gy" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) -"Fp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, +"GS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_sw) -"FB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"GV" = ( +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/caves_sw) +"Ie" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"FW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"Ik" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshals Mining Security Post" }, -/area/bigredv2/outside/lz2_south_cas) -"Jm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"IT" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) -"Jy" = ( +"Jd" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -5; - pixel_y = 17 - }, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/structure/machinery/computer/cameras{ + dir = 4 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"Jg" = ( +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/caves_sw) +"JC" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/lz2_south_cas) "JV" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) -"JW" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/bigredv2/outside/lz2_south_cas) -"KI" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"Le" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_research) -"MN" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/blood{ - base_icon = 'icons/obj/items/weapons/grenade.dmi'; - desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; - icon = 'icons/obj/items/weapons/grenade.dmi'; - icon_state = "grenade_custom"; - name = "M55C Teargas grenade" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"Ke" = ( +/turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) -"Nu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_sw) -"OV" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 11 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"Ma" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/lz2_south_cas) +"MT" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"OY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" +"Ni" = ( +/obj/item/shard{ + icon_state = "small" }, +/turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz2_south_cas) -"Qn" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"QO" = ( +"Ns" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_research) -"QS" = ( -/obj/structure/machinery/door/poddoor/two_tile{ - name = "\improper Eta Tunnel Lockdown" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) -"QV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" +"Od" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood{ + dir = 8; + icon_state = "gib6"; + layer = 4; + pixel_y = 3 }, -/area/bigredv2/caves_sw) -"Rm" = ( +/obj/item/newspaper, /obj/item/shard{ - icon_state = "small" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" + pixel_x = -8; + pixel_y = 7 }, -/area/bigredv2/outside/lz2_south_cas) -"Sy" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"PS" = ( +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/caves_sw) +"Qh" = ( /obj/item/weapon/broken_bottle, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Tm" = ( +"Qo" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; desc = "An expended M55C tear gas grenade that was used for nonlethal riot control. These used to be used on USCM ships until they found out that marines are already used to teargas so the U.S.S Re-education made a better model through 'extensive trials' that works on marines, which is now the M66 used by MPs today. Being now utterly useless to marines and phased out by the M66, M55Cs were spread around the colonies across the UA galaxy like salt to be used on poor colonists instead."; @@ -501,102 +346,74 @@ icon_state = "grenade_custom"; name = "M55C Teargas grenade" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"Ue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bundle, -/obj/item/handcuffs{ - pixel_y = -3 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"Uh" = ( +"QT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"UG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +"Si" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) +"TS" = ( +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_sw) -"UX" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +"UB" = ( +/obj/structure/machinery/light/double, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/outside/lz2_south_cas) +"UZ" = ( +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) "VR" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"Wy" = ( -/obj/structure/window/framed/solaris/reinforced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/bigredv2/caves/mining) -"WV" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +"VV" = ( +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_research) +"XA" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) -"Xl" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/bigredv2/outside/lz2_south_cas) -"Xm" = ( -/turf/open/floor/plating{ - burnt = 1; - dir = 8; - icon_state = "platingdmg3" - }, +"Ya" = ( +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/plating/burnt_platingdmg3/west, /area/bigredv2/caves/mining) -"XE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"Zg" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"XV" = ( +"Zl" = ( +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/lz2_south_cas) +"Zu" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window{ - dir = 1 +/obj/item/explosive/grenade/slug/baton{ + dir = 1; + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/explosive/grenade/slug/baton{ + dir = 4; + pixel_x = 9; + pixel_y = -4 }, -/area/bigredv2/caves/mining) -"Yt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/item/explosive/grenade/high_explosive/airburst/hornet_shell{ + pixel_x = -6; + pixel_y = 6 }, -/area/bigredv2/outside/lz2_south_cas) -"Zk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" +/obj/item/explosive/grenade/high_explosive/airburst{ + pixel_y = 8 }, -/area/bigredv2/caves_sw) -"Zz" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/storage/box/packet/baton_slug{ + pixel_x = -7; + pixel_y = -3 }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) (1,1,1) = {" @@ -606,16 +423,16 @@ cR cR cR JV -fK -wn -ik -JW +IT +Ns +ye +UB VR -Ue -XE -MN -Tm -sJ +rA +Jd +Qo +fH +yj VR cR cR @@ -627,17 +444,17 @@ cR cR cR cR -qm -fo -jj -jj -ie -En -iF -wK -Bz -AD -bu +ae +nP +Dw +Dw +bP +EV +Od +MT +Dp +pE +Fm VR cR cR @@ -645,84 +462,84 @@ cR "} (3,1,1) = {" cR -Xl -zP +eu +Zl cR yw -qm -fo -fQ -Xl -xS -Qn -Jy -uJ -Sy -mT -OV +ae +nP +JC +eu +sy +Zg +zf +cC +Qh +Ya +jf VR cR cR cR "} (4,1,1) = {" -ao -Xl -Xl +jO +eu +eu yw yw yw -OY -Xl -nx -Rm -XV -cj -KI -Zz -Xm -FB +vl +eu +iY +Ni +Ce +Ie +Ch +iv +Ke +Si VR cR cR cR "} (5,1,1) = {" -fo -jj -jj -QS -wJ -QS -jj -fQ -Xl -BO -Wy -ki -Zz -kq -wW -au +nP +Dw +Dw +cH +Ma +cH +Dw +JC +eu +ET +vs +iE +iv +Zu +ls +nU VR cR cR cR "} (6,1,1) = {" -fo -jj -jj -wJ -wJ -wJ -jj -jj -jj -BO +nP +Dw +Dw +Ma +Ma +Ma +Dw +Dw +Dw +ET VR VR -Be +Ik VR VR VR @@ -732,19 +549,19 @@ cR cR "} (7,1,1) = {" -qm -Yt -Yt +ae +rJ +rJ yw yw yw -Zk -gQ -UX -pn -zB -zB -zB +GV +wo +UZ +PS +xY +xY +xY cR cR cR @@ -754,20 +571,20 @@ cR cR "} (8,1,1) = {" -FW -Jm -Jm +lB +ml +ml cR yw cR cR -zB -Zk -zB -zB -zB -zB -zB +xY +GV +xY +xY +xY +xY +xY cR cR cR @@ -776,21 +593,21 @@ cR cR "} (9,1,1) = {" -BO -qm +ET +ae cR cR cR cR cR -zB -zB -Nu -zB -zB -zB -zB -qW +xY +xY +QT +xY +xY +xY +xY +Jg cR cR cR @@ -798,21 +615,21 @@ cR cR "} (10,1,1) = {" -BO -qm -qm +ET +ae +ae cR cR cR cR cR -zB -sV -sV -sV -sV -ii -UX +xY +XA +XA +XA +XA +mg +UZ cR cR cR @@ -820,66 +637,66 @@ cR cR "} (11,1,1) = {" -BO -qm -qm -Jm -Jm +ET +ae +ae +ml +ml cR cR cR cR -sV -sV -sV -sV -Uh -UX -vX +XA +XA +XA +XA +GS +UZ +aC cR cR cR cR "} (12,1,1) = {" -qm -ik -ik -qm -Jm -qm +ae +ye +ye +ae +ml +ae cR cR cR cR cR -sV -sV -ii -vX -vX +XA +XA +mg +aC +aC cR cR cR cR "} (13,1,1) = {" -fo -jj -Xl -BO -ik -ik +nP +Dw +eu +ET +ye +ye cR cR cR cR cR cR -zB -ii -vX -vX +xY +mg +aC +aC cR cR cR @@ -889,19 +706,19 @@ cR cR cR cR -OY -jj -jj -BO +vl +Dw +Dw +ET cR cR cR cR cR -zB -ii -UX -vX +xY +mg +UZ +aC cR cR cR @@ -911,19 +728,19 @@ cR cR cR cR -UX -kS -kS -pn +UZ +pd +pd +PS cR cR cR cR -zB -zB -ii -kS -UX +xY +xY +mg +pd +UZ cR cR cR @@ -934,18 +751,18 @@ cR cR cR cR -UX -UX -pn -zB +UZ +UZ +PS +xY cR cR cR -zB -zB -Uh -UX -kS +xY +xY +GS +UZ +pd cR cR cR @@ -956,17 +773,17 @@ cR cR cR cR -UX -Fp -zB -zB -zB +UZ +jF +xY +xY +xY cR cR -zB -zB -ii -UX +xY +xY +mg +UZ cR cR cR @@ -974,21 +791,21 @@ cR cR "} (18,1,1) = {" -zB +xY cR cR -WV -UX -pn -zB -zB +TS +UZ +PS +xY +xY cR cR cR -zB -zB -zB -Zk +xY +xY +xY +GV cR cR cR @@ -996,21 +813,21 @@ cR cR "} (19,1,1) = {" -zB +xY cR cR cR -Fp -zB -zB -zB +jF +xY +xY +xY cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1018,21 +835,21 @@ cR cR "} (20,1,1) = {" -zB -zB -zB -zB -zB -qW -qW +xY +xY +xY +xY +xY +Jg +Jg cR cR cR -zB -zB -Nu -zB -zB +xY +xY +QT +xY +xY cR cR cR @@ -1040,21 +857,21 @@ cR cR "} (21,1,1) = {" -pn -zB -zB -qW -Bm -UX -UX +PS +xY +xY +Jg +bW +UZ +UZ cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -1062,21 +879,21 @@ cR cR "} (22,1,1) = {" -pn -zB -ii -UX -UX -vX -vX +PS +xY +mg +UZ +UZ +aC +aC cR cR cR -UG -UG -UG -UG -UG +tG +tG +tG +tG +tG cR cR cR @@ -1084,21 +901,21 @@ cR cR "} (23,1,1) = {" -QV -qW -Bm -UX -kS -UX -vX +be +Jg +bW +UZ +pd +UZ +aC cR cR cR cR -zB -zB -zB -qW +xY +xY +xY +Jg cR cR cR @@ -1106,21 +923,21 @@ cR cR "} (24,1,1) = {" -UX -UX -UX -kS -Fp -gQ -UX -UX +UZ +UZ +UZ +pd +jF +wo +UZ +UZ cR cR cR -zB -zB -ii -kS +xY +xY +mg +pd cR cR cR @@ -1128,54 +945,54 @@ cR cR "} (25,1,1) = {" -UX -UX -kS -UX -pn -ii -kS -UX +UZ +UZ +pd +UZ +PS +mg +pd +UZ cR cR cR -zB -qW -qW -kS -kS +xY +Jg +Jg +pd +pd cR cR cR cR "} (26,1,1) = {" -Fp -Zk -Zk -Zk -zB +jF +GV +GV +GV +xY cR -UX -UX +UZ +UZ cR cR cR cR -UX -lQ -kS -kS +UZ +CX +pd +pd cR cR cR cR "} (27,1,1) = {" -pn -zB -zB -zB +PS +xY +xY +xY cR cR cR @@ -1184,20 +1001,20 @@ cR cR cR cR -UX -kS -kS -UX +UZ +pd +pd +UZ cR cR cR cR "} (28,1,1) = {" -pn -zB -zB -zB +PS +xY +xY +xY cR cR cR @@ -1206,21 +1023,21 @@ cR cR cR cR -gQ -UX -UX -Fp -zB +wo +UZ +UZ +jF +xY cR cR cR "} (29,1,1) = {" -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -1228,21 +1045,21 @@ cR cR cR cR -zB -Zk -Zk -zB -zB +xY +GV +GV +xY +xY cR cR cR "} (30,1,1) = {" -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR cR @@ -1251,20 +1068,20 @@ cR cR cR cR -zB -Nu -zB -zB +xY +QT +xY +xY cR cR cR "} (31,1,1) = {" cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1273,18 +1090,18 @@ cR cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR "} (32,1,1) = {" cR cR -zB +xY cR cR cR @@ -1295,11 +1112,11 @@ cR cR cR cR -zB -zB -zB -zB -zB +xY +xY +xY +xY +xY cR cR "} @@ -1317,10 +1134,10 @@ cR cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1339,10 +1156,10 @@ cR cR cR cR -zB -zB -zB -zB +xY +xY +xY +xY cR cR cR @@ -1362,9 +1179,9 @@ cR cR cR cR -UG -UG -UG +tG +tG +tG cR cR cR @@ -1384,10 +1201,10 @@ cR cR cR cR -Le -Le -Le -Le +ff +ff +ff +ff cR cR "} @@ -1405,13 +1222,13 @@ cR cR cR cR -Le -Le -az -Le -Le -Le -Le +ff +ff +kV +ff +ff +ff +ff "} (38,1,1) = {" cR @@ -1426,14 +1243,14 @@ cR cR cR cR -Le -Le -Le -Le -Le -Le -Le -Le +ff +ff +ff +ff +ff +ff +ff +ff "} (39,1,1) = {" cR @@ -1448,14 +1265,14 @@ cR cR cR cR -Le -Le -Le -Le -Le -Le -Le -az +ff +ff +ff +ff +ff +ff +ff +kV "} (40,1,1) = {" cR @@ -1470,13 +1287,13 @@ cR cR cR cR -Le -Le -Le -Le -Le -io -Le +ff +ff +ff +ff +ff +mk +ff dx "} (41,1,1) = {" @@ -1491,15 +1308,15 @@ cR cR cR cR -Le -Le -Le -QO -Le -Le -Le -Le -Le +ff +ff +ff +Gy +ff +ff +ff +ff +ff "} (42,1,1) = {" yw @@ -1512,14 +1329,14 @@ cR cR cR cR -Le -Le -Le -Et -az -Le -Le +ff +ff +ff +VV +kV +ff +ff dx -BY +vy cR "} diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm index 3774e4222f..729d541cbc 100644 --- a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm +++ b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm @@ -1,19 +1,12 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8; - icon_state = "landingstripe" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" + dir = 8 }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "ab" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "ac" = ( /turf/closed/wall/solaris/reinforced, @@ -46,177 +39,113 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "ak" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "al" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "am" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "an" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/outside/space_port) "ao" = ( /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "ap" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "aq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "ar" = ( /obj/structure/noticeboard{ pixel_y = 30 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) "as" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northeast, /area/bigredv2/outside/space_port) "at" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "au" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/space_port) "av" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/space_port) "aw" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ax" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ay" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "az" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aB" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aI" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -226,23 +155,17 @@ dir = 1; name = "\improper Spaceport" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aK" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aL" = ( /obj/structure/surface/table, @@ -252,28 +175,18 @@ name = "Storm Shutters"; pixel_x = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aM" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aO" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port) "aP" = ( /obj/structure/window/framed/solaris/reinforced, @@ -285,114 +198,76 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "aQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/west, /area/bigredv2/outside/space_port) "aR" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aS" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aT" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) "aU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "aV" = ( /obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) "aY" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) "aZ" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "ba" = ( /obj/structure/surface/table, /obj/item/device/radio, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bb" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "bd" = ( /obj/structure/surface/table, /obj/item/paper, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "be" = ( /obj/structure/surface/table, /obj/item/paper_bin, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) "bh" = ( /turf/closed/wall/solaris/rock, @@ -401,93 +276,63 @@ /turf/open/mars, /area/bigredv2/outside/nw) "bj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "bk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bl" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bm" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "bn" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bp" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bq" = ( /obj/structure/lz_sign/solaris_sign, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "br" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bs" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/nw) "bt" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/nw) "bu" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "bv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "by" = ( /obj/effect/decal/cleanable/dirt, @@ -495,185 +340,117 @@ /area/bigredv2/outside/nw) "bz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bA" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/nw) "bB" = ( /obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/nw) "bC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "bD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/nw) "bE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "bF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bH" = ( /obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bI" = ( /obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bJ" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bK" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "bL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bP" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bQ" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bT" = ( /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/nw) "bU" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "bW" = ( /obj/structure/fence, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/nw) "bX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "bY" = ( /turf/template_noop, /area/template_noop) "bZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ca" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/nw) "cb" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/nw) "cc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "Dc" = ( /obj/effect/decal/cleanable/dirt, @@ -835,7 +612,7 @@ aE ak aW aW -bm +bG bv bv bF @@ -856,7 +633,7 @@ aF aM aX aM -bo +bz bw bz bz @@ -877,7 +654,7 @@ aG ab ab ab -bp +bS bx bx bG @@ -919,7 +696,7 @@ aI aP aP ac -br +bn bl bu bE @@ -940,7 +717,7 @@ aJ aQ aY ac -bs +bn bs bl bE @@ -961,7 +738,7 @@ aA aR aZ ac -bi +bo bi bA bE @@ -982,7 +759,7 @@ aw aK ba ai -bi +bX bi bA bE @@ -1003,7 +780,7 @@ aA aA bb ai -bi +bp bi bB bE @@ -1024,7 +801,7 @@ cc aw bc ai -bi +bn bi bB bE @@ -1045,7 +822,7 @@ aA aS bd ac -bi +br bi bB bE @@ -1066,7 +843,7 @@ aL aT be ac -bi +bX bi bB bE diff --git a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm index 15bfc057ba..5285427c00 100644 --- a/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm +++ b/maps/map_files/BigRed/sprinkles/20.lz1north_mining.dmm @@ -5,63 +5,45 @@ "b" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "c" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "d" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "e" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "f" = ( /obj/structure/surface/table, /obj/item/storage/toolbox, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "g" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "h" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "i" = ( /obj/item/ore, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "j" = ( /obj/effect/decal/remains/human, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "k" = ( /obj/structure/barricade/wooden{ @@ -69,9 +51,7 @@ dir = 4; health = 25000 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "l" = ( /obj/structure/surface/rack, @@ -81,61 +61,45 @@ /obj/item/lightstick/red, /obj/item/storage/box/lightstick/red, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "m" = ( /obj/item/tool/shovel, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "n" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) "o" = ( /obj/item/tool/pickaxe, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "p" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "q" = ( /obj/structure/surface/table, /obj/item/clothing/mask/gas, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "r" = ( /obj/structure/surface/table, /obj/item/pizzabox, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "s" = ( /obj/structure/surface/table, /obj/item/device/flashlight, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "t" = ( /obj/structure/ore_box, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "u" = ( /obj/structure/sign/safety/hazard, @@ -150,16 +114,12 @@ /area/bigredv2/outside/space_port) "A" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "P" = ( /obj/item/ore, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm index 715795eaac..474fa34875 100644 --- a/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm +++ b/maps/map_files/BigRed/sprinkles/25.chapel_cult.dmm @@ -10,76 +10,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/chapel) -"ad" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"ae" = ( -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"af" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"ag" = ( -/obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"ah" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"ai" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"ak" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"al" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"an" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) "ao" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -89,220 +19,127 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/chapel) -"ap" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"aq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "rampbottom" - }, -/area/bigredv2/outside/chapel) -"as" = ( +"bg" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) -"at" = ( +"bP" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) -"au" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - icon_state = "cult" - }, +"cs" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"av" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +"cI" = ( +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) -"aw" = ( +"do" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) -"ax" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +"eB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/tool/candle, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"ay" = ( +"eI" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) -"az" = ( -/obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, +"hS" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" +"jG" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 }, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) -"aB" = ( -/obj/structure/surface/table/woodentable, +"kh" = ( /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aC" = ( -/obj/item/tool/candle{ - icon_state = "candle2" - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"aD" = ( +"kH" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/chainofcommand, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"aE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"aF" = ( +"kN" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /obj/effect/decal/cleanable/ash, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) -"aG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +"ld" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel/north, /area/bigredv2/outside/chapel) -"aH" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"lI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aI" = ( +"mz" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) -"aJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"mM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) -"aK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +"nz" = ( +/turf/open/floor/rampbottom/north, /area/bigredv2/outside/chapel) -"aL" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/bigredv2/outside/chapel) -"aN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/head/cardborg, -/turf/open/floor{ - icon_state = "cult" - }, -/area/bigredv2/outside/chapel) -"aO" = ( +"nC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/surface/table/woodentable, /obj/item/storage/bible, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"aP" = ( +"oU" = ( /obj/item/tool/candle{ - icon_state = "candle3"; - item_state = "candle3" - }, -/turf/open/floor{ - icon_state = "cult" + icon_state = "candle2" }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aR" = ( -/obj/item/organ/heart, -/turf/open/floor{ - icon_state = "cult" +"po" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/candle{ + icon_state = "candle3" }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aS" = ( +"qh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -310,137 +147,179 @@ dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "darkish" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qr" = ( +/turf/open/floor/chapel/east, +/area/bigredv2/outside/chapel) +"qA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"qF" = ( /obj/item/tool/candle{ - icon_state = "candle3" - }, -/turf/open/floor{ - icon_state = "darkish" + icon_state = "candle3"; + item_state = "candle3" }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"aU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/tool/candle, -/turf/open/floor{ - icon_state = "darkish" - }, +"ri" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"aW" = ( +"rx" = ( +/turf/open/floor/rampbottom, +/area/bigredv2/outside/chapel) +"tN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"aX" = ( -/obj/structure/pipes/vents/pump{ +"wc" = ( +/obj/item/organ/heart, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"yu" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel, +/area/bigredv2/outside/chapel) +"zy" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkish" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"Ah" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel/east, /area/bigredv2/outside/chapel) -"aZ" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "cult" +"Aw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/head/cardborg, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"ba" = ( -/obj/structure/bed/chair/wood/normal{ +"DS" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"bc" = ( +"Ez" = ( +/obj/structure/machinery/power/apc/power/south, /obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 + icon_state = "gib6" }, -/turf/open/floor{ +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"GR" = ( +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "chapel" + pixel_y = -30 }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"be" = ( -/turf/open/floor{ - icon_state = "rampbottom" +"GZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/chapel/west, /area/bigredv2/outside/chapel) -"bh" = ( -/obj/item/tool/candle, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, +"Hx" = ( +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"bi" = ( +"JE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/item/tool/candle, -/turf/open/floor{ - icon_state = "chapel" - }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"bj" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkish" - }, -/area/bigredv2/outside/chapel) -"bk" = ( +"Lf" = ( /obj/structure/machinery/door_control{ id = "Chapel"; name = "Storm Shutters"; pixel_x = -32 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"bl" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkish" +"Lv" = ( +/obj/item/tool/candle{ + icon_state = "candle4" }, +/turf/open/floor/cult, /area/bigredv2/outside/chapel) -"bm" = ( -/obj/structure/machinery/power/apc, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "darkish" +"LT" = ( +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"Nk" = ( +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/bigredv2/outside/chapel) +"NE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) -"bp" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -30 +"NF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"OR" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"SS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/turf/open/floor{ - icon_state = "darkish" +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"WE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, +/turf/open/floor/chapel, /area/bigredv2/outside/chapel) -"bq" = ( -/obj/item/tool/candle{ - icon_state = "candle4" +"WO" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"Xe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/darkish, +/area/bigredv2/outside/chapel) +"Yv" = ( +/turf/open/floor/cult, +/area/bigredv2/outside/chapel) +"Yx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/chapel/north, +/area/bigredv2/outside/chapel) +"Zv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/candle, +/turf/open/floor/darkish, /area/bigredv2/outside/chapel) (1,1,1) = {" @@ -456,177 +335,177 @@ ab "} (2,1,1) = {" ab -af -ap -aP -aR -bq -ap -bk +OR +Yv +qF +wc +Lv +Yv +Lf ab "} (3,1,1) = {" ac -ae -aq -au -aN -au -be -ae +Hx +nz +ri +Aw +ri +rx +Hx ab "} (4,1,1) = {" ac -ae -aZ -aD -aO -aZ -aZ -ae +Hx +cs +kH +nC +cs +cs +Hx ab "} (5,1,1) = {" ab -aC -ah -as -aE -ah -as -bl +oU +bg +GZ +tN +bg +GZ +hS ab "} (6,1,1) = {" ac -ag -at -aF -aW -at -aF -ae +kh +Ah +eI +NE +Ah +eI +Hx ab "} (7,1,1) = {" ac -ae -ay -aG -aT -ay -aG -ae +Hx +qA +kN +po +qA +kN +Hx ab "} (8,1,1) = {" ab -ae -av -aF -aS -ba -aI -ae +Hx +mM +eI +qh +bP +WE +Hx ab "} (9,1,1) = {" ac -ai -aw -aH -aW -ay -aH -ae +NF +Yx +mz +NE +qA +mz +Hx ab "} (10,1,1) = {" ac -ae -av -aI -aW -at -aF -bm +Hx +mM +WE +NE +Ah +eI +Ez ab "} (11,1,1) = {" ab -ak -ax -aJ -aU -ay -aH -ae +Xe +zy +do +JE +qA +mz +Hx ab "} (12,1,1) = {" ac -al -av -aI -aS -av -aI -aC +eB +mM +WE +qh +mM +WE +oU ab "} (13,1,1) = {" ac -al -ay -aH -aW -ay -aH -ag +eB +qA +mz +NE +qA +mz +kh ab "} (14,1,1) = {" ab -aW -av -aI -aW -av -aI -bl +NE +mM +WE +NE +mM +WE +hS ab "} (15,1,1) = {" -ad -an -az -aK -aS -bc -bh -ae +SS +lI +ld +LT +qh +jG +Nk +Hx ab "} (16,1,1) = {" -ae -ae -aA -aL -aX -aA -bi -ae +Hx +Hx +qr +cI +DS +qr +yu +Hx ab "} (17,1,1) = {" ab -ae -aB -aB -ae -bj -bj -bp +Hx +Zv +Zv +Hx +WO +WO +GR ab "} diff --git a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm index 6aa3dfd2cf..42c8551d23 100644 --- a/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm +++ b/maps/map_files/BigRed/sprinkles/25.containerroom_xenos.dmm @@ -3,17 +3,11 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/nw) "c" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/outside/nw) "d" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/bigredv2/outside/nw) "e" = ( /obj/structure/largecrate/random/barrel/red, @@ -21,8 +15,7 @@ /area/bigredv2/outside/nw) "f" = ( /obj/structure/machinery/light{ - dir = 1; - icon_state = "tube1" + dir = 1 }, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, @@ -36,12 +29,8 @@ /turf/open/floor/plating, /area/bigredv2/outside/nw) "i" = ( -/obj/structure/machinery/light{ - dir = 1; - icon_state = "tube1" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/nw) +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/telecomm/warehouse) "j" = ( /turf/open/floor/plating, /area/bigredv2/outside/nw) @@ -58,33 +47,24 @@ /turf/open/floor/plating, /area/bigredv2/outside/nw) "n" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/nw) "p" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" + dir = 4 }, +/turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/nw) "q" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) "r" = ( /obj/effect/landmark/hunter_primary, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) @@ -94,9 +74,7 @@ /area/bigredv2/outside/nw) "u" = ( /obj/structure/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 + dir = 8 }, /turf/open/floor/plating, /area/bigredv2/outside/nw) @@ -130,6 +108,60 @@ /obj/structure/machinery/light, /turf/open/floor/plating, /area/bigredv2/outside/nw) +"D" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"H" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/bigredv2/outside/telecomm/warehouse) +"K" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/warehouse) +"O" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/bigredv2/outside/telecomm/warehouse) +"S" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) +"T" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate/southeast, +/area/bigredv2/outside/telecomm/warehouse) +"V" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/warnplate, +/area/bigredv2/outside/telecomm/warehouse) +"Z" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5; + pixel_x = -1 + }, +/turf/open/floor/plating/warnplate/east, +/area/bigredv2/outside/telecomm/warehouse) (1,1,1) = {" b @@ -144,10 +176,10 @@ b b "} (2,1,1) = {" -b -e -j -j +i +O +O +H q j u @@ -156,10 +188,10 @@ j b "} (3,1,1) = {" -b -f -j -j +i +K +D +V q j v @@ -168,10 +200,10 @@ y b "} (4,1,1) = {" -b -g -m -j +i +K +K +V q j j @@ -180,10 +212,10 @@ j b "} (5,1,1) = {" -b -h -m -j +i +S +Z +T q j j @@ -194,7 +226,7 @@ b (6,1,1) = {" b g -j +m j r j @@ -205,8 +237,8 @@ b "} (7,1,1) = {" b -g -j +h +m j q j @@ -217,7 +249,7 @@ b "} (8,1,1) = {" b -i +f j j q @@ -301,7 +333,7 @@ b "} (15,1,1) = {" b -j +e j j q diff --git a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm index 32d85ba107..291b83899b 100644 --- a/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm +++ b/maps/map_files/BigRed/sprinkles/25.lz1cave_flank.dmm @@ -3,13 +3,15 @@ /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "d" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) +"e" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/lz1_north_cas) "f" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating, @@ -18,15 +20,11 @@ /turf/open/floor/plating, /area/bigredv2/outside/space_port) "i" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, +/turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_north_cas) "j" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) "F" = ( /obj/structure/sign/safety/hazard, @@ -218,7 +216,7 @@ c c c c -j +e "} (12,1,1) = {" c @@ -235,7 +233,7 @@ c c c c -j +e "} (13,1,1) = {" c @@ -252,7 +250,7 @@ c c c c -j +e "} (14,1,1) = {" c @@ -269,7 +267,7 @@ c c c c -j +e "} (15,1,1) = {" c @@ -286,5 +284,5 @@ c i c c -j +e "} diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm index 74be8d01d4..18820b304c 100644 --- a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm +++ b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm @@ -1,9 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ab" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "ac" = ( /turf/open/floor/plating, @@ -17,23 +14,14 @@ dir = 1; name = "\improper Spaceport" }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ah" = ( -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ai" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aj" = ( /obj/structure/surface/table, @@ -42,10 +30,7 @@ /obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "al" = ( /obj/effect/decal/cleanable/blood/oil, @@ -53,8 +38,7 @@ /area/bigredv2/outside/space_port) "am" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" + dir = 4 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) @@ -62,31 +46,18 @@ /turf/closed/wall/solaris, /area/bigredv2/outside/space_port) "ao" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -32; - start_charge = 0 - }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ap" = ( /obj/effect/decal/cleanable/blood/gibs/up, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aq" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ar" = ( /obj/structure/surface/table, @@ -97,38 +68,25 @@ pixel_x = 32 }, /obj/item/tool/pen, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "at" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" + dir = 8 }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "au" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "av" = ( /obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "ax" = ( /obj/structure/window/framed/solaris, @@ -144,18 +102,12 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ dir = 4 }, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/landing/console) "az" = ( /obj/structure/surface/table, /obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aA" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -173,27 +125,18 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aE" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 2; - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) "aG" = ( /obj/effect/decal/cleanable/blood{ @@ -205,58 +148,37 @@ /obj/structure/surface/table, /obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) "aI" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aK" = ( /obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aL" = ( /obj/item/shard, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aM" = ( -/turf/open/floor{ - dir = 2; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) "aN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) "aP" = ( /obj/structure/window/framed/solaris, @@ -280,44 +202,28 @@ /area/bigredv2/outside/space_port) "aT" = ( /obj/structure/machinery/light{ - dir = 1; - icon_state = "tube1" + dir = 1 }, /turf/open/floor/plating, /area/bigredv2/outside/space_port) "aU" = ( /obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - dir = 2; - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port) "aV" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aW" = ( /obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aX" = ( /obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "aY" = ( /obj/structure/cargo_container/arious/right, -/turf/open/floor/plating{ - dir = 2; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/bigredv2/outside/space_port) "bd" = ( /obj/effect/decal/cleanable/blood, @@ -329,10 +235,7 @@ /area/bigredv2/outside/space_port) "bf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/space_port) "bg" = ( /obj/effect/landmark/crap_item, diff --git a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm index 566f892d6f..5c1c05d3e2 100644 --- a/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm +++ b/maps/map_files/BigRed/sprinkles/25.vault_v2.dmm @@ -1,508 +1,546 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/turf/open/mars, -/area/bigredv2/outside/c) +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "ab" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 6 }, -/area/bigredv2/outside/c) +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "ac" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) +/obj/item/tool/pickaxe/drill, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) "ad" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) +/obj/effect/glowshroom, +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) "ae" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/c) +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) "af" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/c) +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) "ag" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/c) +/obj/structure/barricade/wooden, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "ah" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/bigredv2/outside/c) +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) "ai" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/c) +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) "aj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/bigredv2/outside/c) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_11, +/area/bigredv2/caves_lambda) "ak" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "al" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/storage) +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "am" = ( -/obj/structure/largecrate/hunter_games_guns/mediocre, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "an" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/effect/decal/cleanable/mucus, +/obj/structure/machinery/door_control{ + id = "sci_br"; + name = "Observation Shutters"; + pixel_y = 28 + }, +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "ao" = ( -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "ap" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) "aq" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/almayer/w_y0/north, +/area/bigredv2/caves/lambda/breakroom) "ar" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "as" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "at" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/plating/almayer, +/area/bigredv2/caves/lambda/breakroom) "au" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "av" = ( -/obj/structure/surface/table, -/obj/item/tool/extinguisher, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aw" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/inflatable/popped/door, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "ax" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor, -/area/bigredv2/outside/storage) -"aA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) +"aA" = ( +/turf/template_noop, +/area/template_noop) "aB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/almayer/w_y1/north, +/area/bigredv2/caves/lambda/breakroom) "aC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 0; - name = "\improper Emergency Vault" - }, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "aD" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/inflatable/popped/door, +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "aE" = ( -/obj/structure/largecrate/random, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/darkpurplecorners2/east, +/area/bigredv2/caves/lambda/breakroom) "aF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/door/window/brigdoor/southright, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/bronze/science{ + pixel_x = -5 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aG" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) "aH" = ( -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/darkpurplecorners2, +/area/bigredv2/caves/lambda/breakroom) "aI" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/lambda/breakroom) "aJ" = ( /obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door_control{ + id = "vault"; + name = "Vault Lockdown" }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor, -/area/bigredv2/outside/storage) +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/powercell, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) +/turf/open/floor/almayer/w_y2/north, +/area/bigredv2/caves/lambda/breakroom) "aN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/s) -"aO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave, +/area/bigredv2/caves_lambda) "aP" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/caves_lambda) "aQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) "aR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/bigredv2/caves/lambda/breakroom) "aS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) "aT" = ( -/turf/open/mars, -/area/bigredv2/outside/s) -"aU" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_4, +/area/bigredv2/caves_lambda) "aV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/s) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) "aW" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" +/obj/structure/machinery/door/airlock/almayer/secure/reinforced/colony{ + icon_state = "door_locked" }, -/area/bigredv2/outside/s) -"aX" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "vault"; + name = "Vault Lockdown" }, -/area/bigredv2/outside/s) +/turf/open/floor/delivery, +/area/bigredv2/caves/lambda/breakroom) +"aX" = ( +/turf/open/mars_cave/mars_cave_8, +/area/bigredv2/caves_lambda) "aY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_10, +/area/bigredv2/caves_lambda) "aZ" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) "ba" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars, -/area/bigredv2/outside/s) +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/caves_lambda) +"vm" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/caves_lambda) "zP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor, -/area/bigredv2/outside/storage) +/obj/effect/glowshroom, +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_lambda) +"EW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"Gv" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "sci_br"; + name = "\improper Lambda Observation Shutters" + }, +/obj/item/shard, +/obj/structure/window_frame/solaris/reinforced, +/turf/open/floor/plating, +/area/bigredv2/caves/lambda/breakroom) +"RW" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/mars_cave/mars_cave_6, +/area/bigredv2/caves_lambda) (1,1,1) = {" -aa -aa -aa -ak -al -al -al -al -al +aA +aA +aA +aA +aA +aI +am al -aM -aP +aI +aA +aA +aY aT -aX +ak "} (2,1,1) = {" -aa -aa -aa -ak -al -am +aA +aA +aA +aA +zP +aG aw aD aG -al -aM -aP -aT +ai +ai +aZ +ba aX "} (3,1,1) = {" -aa -aa +aA +aA ah -ak -al -an -ax -aE +ai +ai +aG aH -al -aM +aE +aG aP -aT -aX +ba +aP +ai +aZ "} (4,1,1) = {" -aa -aa -ai -ak -al -ao +aA +ae +aP +ba +aZ +aI ax -ao +aC aI -al -aM -aP -aT -aX +ae +RW +ac +ba +aZ "} (5,1,1) = {" -aa -aa ai -ak -al -ao -ao +ai +aj +ad +aZ +aG ao -aJ -al -aM -aQ -aU -aQ +ag +EW +af +ba +ba +ba +aZ "} (6,1,1) = {" -aa -aa +aY ai -ak -al -zP -ao -ao -as -al +ai +ba +ba +aG +aa +aD +Gv +vm aN -aR -aR -aY +aS +ba +aZ "} (7,1,1) = {" -aa -aa -aj +ba +ba ak -al -aq -ao -ao +ak +ak +aI +an +ab ap -al -aO -aS -aS +aA +aA +aP aS +aZ "} (8,1,1) = {" -aa -aa -aa +ba ak -al -ar -ao -ao -as -al -aM -aQ -aQ -aQ +ak +aI +aI +aI +aI +aW +aI +aI +aA +ba +aP +aZ "} (9,1,1) = {" -aa -aa -aa +aZ ak -al +ak +aI +aR as -aA -aF +au +au aK -al -aM -aQ -aQ -aQ +aI +aA +aY +ba +aZ "} (10,1,1) = {" -aa -af -aa ak -al -as -aB -ao +aA +aA +aI au -al -aM -aQ -aQ +at +aq +at +au +aI +aA +aP +ba aZ "} (11,1,1) = {" -ab -aa -aa ak -al +aA +aA +aI +aF at aB -ao -as -al -aM -aQ -aQ -aT +at +aJ +aI +aA +aP +ba +aZ "} (12,1,1) = {" -ac -ab -aa -ak -al +aA +aA +aA +aI au -aB -ao -aL -al +at aM +at +aL +aI +aA aQ aV -aT +ba "} (13,1,1) = {" -ad -ag -aa -ak -al +aA +aA +aA +aI +ar av -aB -ao -at -al -aM -aP -aT +aL +aL +aL +aI +aA +ba +ba ba "} (14,1,1) = {" -ae -aa -aa -ak -al -al -aC -al -al -al -aM -aQ -aW -aT +aA +aA +aA +aI +aI +aI +aI +aI +aI +aI +aA +ba +ba +ba "} diff --git a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm index a9d1d00f4e..8425f2fd69 100644 --- a/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm +++ b/maps/map_files/BigRed/sprinkles/30.cargo_containers.dmm @@ -7,11 +7,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"ab" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) "ad" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, @@ -46,16 +41,6 @@ /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"al" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/cargo) "am" = ( /obj/structure/largecrate/cow, /turf/open/floor, @@ -64,12 +49,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor, /area/bigredv2/outside/cargo) -"ao" = ( -/obj/structure/largecrate/cow, -/turf/open/floor{ - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) "ap" = ( /obj/structure/closet/emcloset, /turf/open/floor, @@ -122,13 +101,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"ay" = ( -/obj/structure/closet/emcloset, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "az" = ( /obj/structure/machinery/autolathe, /turf/open/floor, @@ -143,18 +115,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"aC" = ( -/turf/open/floor{ - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) -"aD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cargo Offices" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "aE" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -164,126 +124,18 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/cargo) -"aF" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/arious/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "aI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"aJ" = ( -/obj/structure/largecrate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "aN" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"aO" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aS" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aT" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aU" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "aV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -291,103 +143,11 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"aW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cargo Bay Security" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"aX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aY" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"aZ" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"ba" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "bb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/cargo) -"bc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bd" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"be" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bf" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bg" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bh" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bj" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bk" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bm" = ( /obj/item/device/flashlight, /obj/item/reagent_container/spray/cleaner, @@ -397,13 +157,6 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor, /area/bigredv2/outside/cargo) -"bq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -424,27 +177,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"by" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Cargo Bay" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bz" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bB" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/megaphone, @@ -471,38 +203,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bI" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bJ" = ( -/obj/structure/largecrate, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) -"bM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/random/barrel, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) "bO" = ( /obj/structure/machinery/door_control{ id = "Cargonia"; @@ -511,105 +211,20 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bQ" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"bR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor, /area/bigredv2/outside/cargo) -"bU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/bigredv2/outside/cargo) -"bV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) -"bY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/bigredv2/outside/cargo) "bZ" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor, /area/bigredv2/outside/cargo) -"cb" = ( -/obj/structure/filingcabinet, -/turf/open/floor, -/area/bigredv2/outside/cargo) -"cc" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "cd" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor, /area/bigredv2/outside/cargo) -"ce" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Cargo Bay Quartermaster" - }, -/turf/open/floor, -/area/bigredv2/outside/cargo) "cf" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor, @@ -717,20 +332,321 @@ "cv" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/engineering) -"cw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Complex" +"fe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"fj" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"hQ" = ( +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"ju" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"kO" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"nh" = ( +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"pl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"qx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"ra" = ( +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"rh" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"rm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"rM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"sh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"ss" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"tO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cargo Bay Security" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"uJ" = ( +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"vu" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"wt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"xd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cargo Offices" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"xB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) -"cx" = ( +"xU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"zb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/arious/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"zs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Cg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Cl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"DF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/good_item, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"DM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"DX" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"EQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"Gk" = ( +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"GQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"HN" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Ic" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"IC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Ja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Jh" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Jo" = ( +/obj/structure/filingcabinet, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"JZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/loadingarea/east, +/area/bigredv2/outside/cargo) +"KO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Lg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Lj" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Mr" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Oc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Ot" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/largecrate/random/barrel, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Ow" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"Pd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Rd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Complex" + }, +/turf/open/floor/delivery, /area/bigredv2/outside/engineering) +"Rk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Cargo Bay Quartermaster" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"TP" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Vg" = ( +/turf/open/floor/loadingarea/west, +/area/bigredv2/outside/cargo) +"Vo" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/loadingarea, +/area/bigredv2/outside/cargo) +"Wf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"Wh" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"WA" = ( +/obj/structure/largecrate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"WN" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"WU" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) +"Xz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Cargo Bay" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/cargo) +"Zq" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/cargo) (1,1,1) = {" aa @@ -743,31 +659,31 @@ aE ai ai ai -ax -by +EQ +Xz ai ai ai ai -ce +Rk ai ai "} (2,1,1) = {" -ab -al -ab -aB -av -av -av +nh +ss +nh +ai av av av +ai +Lg +aB ax av bH -aB +Oc ai aN av @@ -778,16 +694,16 @@ ai av av av -aC -aF -aO -av -aY -bf -av -ax -av +rM +Zq +rh av +ak +Lj +hQ +Ow +hQ +hQ av ai av @@ -800,17 +716,17 @@ ad ad au ad -aG -aP +KO +zs av -aZ -bg -am +ak +Ic +hQ aI bb -bI +WN ad -bR +wt ad ad ci @@ -820,19 +736,19 @@ cu ae av av -aC -aH -aQ -av -ba -bh +Gk +zb +DF av -ax +ai av -af -bP +hQ +Ow +hQ +rm +Cl ak -cb +Jo af cj cu @@ -845,15 +761,15 @@ am aI ad ad -bb -ad +wt ad +Wf bp -bz -af -af +Mr +Ja +DM ak -cb +Jo av av cu @@ -862,19 +778,19 @@ cu ag av av -aC -aJ -aR -aX -aP -aX -av -bq +Gk +WA +Pd +uJ ai -bJ -bQ ai -cc +ai +EQ +Xz +ai +ai +ai +vu av ck ai @@ -891,12 +807,12 @@ af av av ax -bA -av +af +aB ae ai ak -ce +Rk ak ai "} @@ -904,12 +820,12 @@ ai av av av -aC -aK -aS +Gk +fe +Wh av -bc -aX +pl +uJ av ax bB @@ -922,15 +838,15 @@ aA cv "} (10,1,1) = {" -av +ap av aw ad -aL -aT +qx +Jh av -bd -aO +HN +rh av aI ad @@ -940,18 +856,18 @@ bS af av cl -cw +Rd "} (11,1,1) = {" -av +ap av ax -ao -aX -aU +Vo +uJ +TP av -be -bj +ju +kO av ax av @@ -961,12 +877,12 @@ aI ad ad cm -cx +xB "} (12,1,1) = {" ah -ap -ay +av +GQ av av av @@ -976,9 +892,9 @@ av av bs bD -bK +ra av -bU +JZ av av cn @@ -997,9 +913,9 @@ aN av bt bD -aX +uJ av -bV +IC af av co @@ -1014,13 +930,13 @@ av av av ai -bk +DX av af bD -bf +WU av -bW +sh af av cp @@ -1039,9 +955,9 @@ av af af af -bg +fj av -bX +Cg av av aj @@ -1051,18 +967,18 @@ cv af as ad -aD +xd au aV ad -aD +xd ad au bv au -bM +Ot ad -bY +xU av av cq @@ -1072,18 +988,18 @@ cv av at af -av +nh af ar av -av +nh av af bs av -bN +Vg av -bN +Vg av av cr @@ -1116,7 +1032,7 @@ ak ai ai ak -aW +tO ak ai av diff --git a/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm b/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm deleted file mode 100644 index 69d091b39d..0000000000 --- a/maps/map_files/BigRed/sprinkles/30.cave-north_lambdapath.dmm +++ /dev/null @@ -1,214 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/bigredv2/caves_north) -"b" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"c" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"d" = ( -/turf/open/mars_cave, -/area/bigredv2/caves_north) -"e" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_north) -"f" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_north) -"g" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"h" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/caves_lambda) -"j" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"m" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/bigredv2/caves_north) -"n" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) -"o" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/bigredv2/caves_north) -"s" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/bigredv2/caves_north) -"C" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, -/area/bigredv2/caves_north) -"H" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/bigredv2/caves_north) -"M" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/caves_north) -"S" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/bigredv2/caves_lambda) -"Z" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/bigredv2/caves_lambda) - -(1,1,1) = {" -a -d -e -m -C -n -H -e -e -s -"} -(2,1,1) = {" -b -f -s -n -j -n -o -e -e -m -"} -(3,1,1) = {" -b -b -s -M -n -H -d -b -b -b -"} -(4,1,1) = {" -b -b -g -Z -Z -b -b -b -b -b -"} -(5,1,1) = {" -b -c -c -c -c -c -b -b -b -b -"} -(6,1,1) = {" -b -c -c -c -h -c -c -b -b -b -"} -(7,1,1) = {" -S -c -c -c -c -c -c -b -c -c -"} -(8,1,1) = {" -c -c -c -c -c -c -c -g -c -c -"} -(9,1,1) = {" -c -h -c -c -c -h -c -g -c -c -"} -(10,1,1) = {" -c -c -c -c -c -c -c -g -c -h -"} diff --git a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm index 62d8c1f9d5..8f710225f0 100644 --- a/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm +++ b/maps/map_files/BigRed/sprinkles/30.viro-rock_open.dmm @@ -13,65 +13,40 @@ /area/bigredv2/outside/nw) "e" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "f" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) "g" = ( /turf/open/mars, /area/bigredv2/outside/w) "h" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/w) "i" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/nw) "j" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) "k" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "l" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/bigredv2/outside/w) "m" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/w) "n" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/w) "o" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/w) "U" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars/mars_dirt_13, /area/bigredv2/outside/w) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm index adbdf51bd2..10252b5528 100644 --- a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm +++ b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm @@ -7,9 +7,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ad" = ( /obj/effect/decal/cleanable/dirt, @@ -19,16 +17,12 @@ /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "af" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ah" = ( /obj/structure/window/framed/solaris, @@ -42,100 +36,67 @@ /area/bigredv2/caves) "ak" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "al" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "am" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) "an" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "ap" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "aq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "ar" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "as" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "at" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "au" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "av" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/se) "aw" = ( -/turf/open/mars{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars/mars_dirt_6, /area/bigredv2/outside/se) "ax" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/se) "ay" = ( /obj/effect/decal/cleanable/dirt, @@ -151,27 +112,21 @@ /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Atmospherics Condenser Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aB" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Atmospherics Condenser" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aD" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -179,126 +134,86 @@ name = "\improper Atmospherics Condenser" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aE" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/radio/headset, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aF" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) "aG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) "aH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aJ" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "aK" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "aL" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aO" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aP" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aQ" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "aR" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "aS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "aT" = ( /obj/structure/dispenser/oxygen, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "aV" = ( /obj/effect/decal/warning_stripes{ icon_state = "U-N" }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aW" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "aY" = ( /turf/closed/wall/solaris/reinforced, @@ -306,10 +221,7 @@ "aZ" = ( /obj/structure/machinery/computer/general_air_control, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bb" = ( /obj/structure/surface/table, @@ -317,34 +229,23 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "bc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bd" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "be" = ( /obj/structure/surface/table, /obj/item/circuitboard/solar_tracker, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "bf" = ( /obj/structure/machinery/light{ @@ -357,36 +258,26 @@ /obj/effect/decal/warning_stripes{ icon_state = "U-S" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bh" = ( /obj/effect/decal/warning_stripes{ icon_state = "U-S" }, /obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bj" = ( /obj/structure/surface/rack, /obj/item/tank/air, /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bk" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bl" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -402,9 +293,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bm" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -412,42 +301,31 @@ name = "\improper Filtration Facility" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bn" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "bo" = ( /obj/item/tank/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bp" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bq" = ( /obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "br" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -456,9 +334,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "bt" = ( /obj/effect/decal/cleanable/dirt, @@ -469,9 +345,7 @@ dir = 4 }, /obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bv" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, @@ -486,17 +360,12 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "bA" = ( /obj/effect/decal/cleanable/dirt, @@ -508,10 +377,7 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bD" = ( /obj/structure/window/framed/solaris/reinforced/hull, @@ -521,32 +387,22 @@ /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bF" = ( /obj/structure/cryofeed, -/turf/open/floor/bluegrid{ - icon_state = "bcircuitoff" - }, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) "bG" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bH" = ( /obj/structure/machinery/computer/area_atmos/area{ dir = 8 }, /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "bI" = ( /obj/structure/window_frame/solaris/reinforced, @@ -557,10 +413,7 @@ /area/bigredv2/outside/filtration_plant) "bJ" = ( /obj/item/weapon/twohanded/fireaxe, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "bK" = ( /turf/open/mars, @@ -568,57 +421,39 @@ "bN" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "bO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "bP" = ( /obj/item/tank/air, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "bQ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bS" = ( /obj/item/frame/table, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "bW" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "bX" = ( /obj/structure/sign/safety/distribution_pipes{ @@ -627,10 +462,7 @@ /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_plant) "bZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "cb" = ( /obj/structure/machinery/door_control{ @@ -639,25 +471,18 @@ pixel_x = -32 }, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "ce" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) "cf" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "FiltrationShutters"; name = "\improper Airlock Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "cg" = ( /obj/structure/machinery/door_control{ @@ -669,80 +494,52 @@ /area/bigredv2/outside/filtration_plant) "ch" = ( /obj/structure/dispenser/oxygen, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "ci" = ( /obj/item/tool/warning_cone, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "cj" = ( /obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "ck" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "cl" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) "cn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) "cO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "et" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "eL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) "ff" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "gt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "hk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "jh" = ( /obj/structure/machinery/light, @@ -750,17 +547,11 @@ /area/bigredv2/outside/filtration_plant) "ka" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "kE" = ( /obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "nk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -782,103 +573,62 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "qi" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "ti" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "tp" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "tz" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) "tB" = ( /obj/effect/landmark/crap_item, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "vK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "xd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "yi" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "yZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/filtration_plant) "zu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "Ap" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/filtration_plant) "AD" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "Ee" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "FI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) "FK" = ( /obj/effect/decal/warning_stripes{ @@ -889,147 +639,95 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "Jy" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Kp" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "Ms" = ( /obj/structure/machinery/computer3/server/rack, /obj/effect/decal/warning_stripes{ icon_state = "U-N" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) "Qx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "QJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) "Rv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) "Sj" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Filtration Facility" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) "Sk" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) "TC" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "TX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) "UH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) "US" = ( -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) "VW" = ( /obj/structure/cargo_container/grant/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Wc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/filtration_plant) "Wz" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) "WD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) "Xx" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) "XC" = ( /obj/structure/cargo_container/grant/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) "Yg" = ( /obj/structure/cargo_container/grant/rightmid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index a73a8de036..28aa216c59 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -2,10 +2,6 @@ "ab" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) -"ac" = ( -/obj/effect/acid_hole, -/turf/closed/wall/solaris, -/area/bigredv2/outside/admin_building) "ad" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -13,252 +9,200 @@ "ae" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/admin_building) -"aj" = ( +"ak" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"ay" = ( -/turf/open/floor{ - icon_state = "dark" +"ap" = ( +/obj/structure/flora/jungle/plantbot1{ + pixel_y = 10 }, +/turf/open/jungle, /area/bigredv2/outside/admin_building) -"aG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"as" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_y = 11 }, -/turf/open/floor{ - icon_state = "darkredcorners2" +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"at" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"au" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aB" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"aD" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"aJ" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aO" = ( +/obj/item/storage/secure/briefcase, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aQ" = ( +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aS" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 3; + pixel_x = -3; + pixel_y = -6 }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"aV" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/rubber, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"aT" = ( +"aW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" +/obj/item/tool/weldingtool, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"ba" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"bf" = ( +"bb" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"bh" = ( +"bc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Office" - }, -/turf/open/floor{ - icon_state = "wood" - }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) "bp" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor, /area/bigredv2/outside/admin_building) -"br" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"bv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"bH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "wood" +"bs" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Operations"; + name = "\improper Operations Shutters" }, +/turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"dh" = ( -/obj/structure/surface/table, -/obj/item/device/radio/marine, -/obj/item/weapon/gun/pistol/m4a3/training{ - name = "dented M4A3 service pistol" +"dp" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -4 }, -/obj/item/ammo_magazine/pistol/rubber, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"dq" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"fy" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"eo" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -9; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"fp" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"fN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" + dir = 4 }, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"gq" = ( +"fR" = ( /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"gw" = ( -/turf/open/floor/carpet, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"gW" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +"gb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"kM" = ( +"gc" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /obj/item/ammo_magazine/pistol/rubber{ current_rounds = 0 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"lX" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigredv2/outside/admin_building) -"nK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" +"gI" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"oa" = ( -/obj/structure/platform{ +"gW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Office" }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"os" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -5 +"jq" = ( +/obj/item/weapon/gun/rifle/m41a/corporate{ + current_mag = /obj/item/ammo_magazine/rifle/rubber; + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. It seems to be pretty battered and broken up."; + name = "battered M41A pulse rifle MK2"; + pixel_x = 4 }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"oD" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Operations"; - name = "\improper Operations Shutters" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) -"oS" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/bigredv2/outside/admin_building) -"rE" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"so" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_y = 11 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"sE" = ( -/obj/structure/flora/jungle/plantbot1{ - pixel_y = 10 +"jH" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room" }, -/turf/open/jungle, -/area/bigredv2/outside/admin_building) -"sT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular/empty, -/turf/open/floor/carpet, +/turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"tj" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -8; - pixel_y = 9 - }, +"kt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/outside/admin_building) -"ub" = ( +"kv" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"uC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/carpet, +"kY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"vO" = ( +"mw" = ( /obj/item/ammo_box/magazine{ num_of_magazines = 2 }, @@ -272,282 +216,249 @@ pixel_x = 14; pixel_y = 17 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"wc" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oS" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -9; + pixel_y = 7 }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/carpet, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"yP" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/platform_decoration, -/turf/open/floor{ - icon_state = "dark" +"pQ" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Operations"; + name = "\improper Operations Shutters" }, +/turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"yZ" = ( -/obj/structure/bed/chair/comfy/blue{ +"sr" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"zr" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ +"vx" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -8; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, -/turf/open/floor/carpet, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"vR" = ( +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"Ad" = ( +"wH" = ( /obj/item/ammo_box/magazine/ext{ num_of_magazines = 1 }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"Bh" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -4 - }, -/turf/open/floor/carpet, +"xr" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"Bz" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/rifle/rubber, -/turf/open/floor/carpet, +"xV" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"Cu" = ( -/obj/structure/platform{ - dir = 1 +"za" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Operations Meeting Room" }, -/area/bigredv2/outside/admin_building) -"CP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor, /area/bigredv2/outside/admin_building) -"FV" = ( -/obj/structure/bed/chair/comfy/blue{ +"zv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"Gj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"zF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/bigredv2/outside/admin_building) -"GJ" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_2" +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -2; + pixel_y = -10 }, -/turf/open/floor{ - icon_state = "wood" +/obj/item/ammo_box/magazine/m4a3{ + num_of_magazines = 2 }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"Ho" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" +"AC" = ( +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 }, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"Ja" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 3; - pixel_x = -3; - pixel_y = -6 - }, +"Br" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular/empty, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"Kv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"BL" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"NJ" = ( +"BW" = ( /obj/structure/platform, /obj/structure/flora/jungle/planttop1{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"NT" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/admin_building) -"NU" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "wood" - }, -/area/bigredv2/outside/admin_building) -"Oe" = ( +"Ce" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"Oq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"Ps" = ( +"EC" = ( +/obj/effect/landmark/survivor_spawner, /obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 1 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"Qa" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 +"EL" = ( +/obj/structure/surface/table, +/obj/item/device/radio/marine, +/obj/item/weapon/gun/pistol/m4a3/training{ + name = "dented M4A3 service pistol" }, +/obj/item/ammo_magazine/pistol/rubber, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"QE" = ( -/obj/item/storage/secure/briefcase, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"RN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +"Fi" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"RV" = ( +"Fp" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"Gx" = ( +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"GR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"Tq" = ( +"HY" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Js" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = 30 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) -"TP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Operations Meeting Room" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"Jt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Jy" = ( +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"JM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"Li" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 }, -/turf/open/floor, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"Uh" = ( +"Nz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"NX" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Od" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/ammo_box/magazine/m4a3{ - num_of_magazines = 2 - }, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"UJ" = ( -/obj/item/weapon/gun/rifle/m41a/corporate{ - current_mag = /obj/item/ammo_magazine/rifle/rubber; - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. It seems to be pretty battered and broken up."; - name = "battered M41A pulse rifle MK2"; - pixel_x = 4 +"Qf" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"UP" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 - }, -/turf/open/floor{ - icon_state = "wood" - }, +"RN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) -"Vm" = ( -/obj/structure/bed/chair/comfy/black, +"Sz" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -5 + }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"WM" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/weldingtool, -/turf/open/floor/carpet, +"WP" = ( +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"Ya" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" +"Xw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"Yi" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/carpet, +"Ze" = ( +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 + }, +/turf/open/floor/wood, /area/bigredv2/outside/admin_building) (1,1,1) = {" -br +pQ ab ab ab @@ -559,134 +470,134 @@ ab ab "} (2,1,1) = {" -br -ac -bH -NU -so -rE -fp -Uh -Ad +Jy +aD +Od +fR +as +WP +Li +zF +wH ab "} (3,1,1) = {" -br -aj -Bh -Qa -FV -QE -FV -gw -vO +Jy +ak +dp +AC +aJ +aO +aJ +aQ +mw bp "} (4,1,1) = {" -br -aj -Vm -Yi -dh -sT -Bz -zr -rE -eo +Jy +ak +at +aB +EL +Br +aV +ba +WP +oS "} (5,1,1) = {" -br +Jy ae -UJ -yZ -gw -yZ -os -wc -rE -rE +jq +aC +aQ +aC +Sz +bb +WP +WP "} (6,1,1) = {" -ay -lX -gq -WM -uC -Ja -gw -Oe -rE -UP +NX +jH +au +aW +aL +aS +aQ +bc +WP +Ze "} (7,1,1) = {" -br +Jy ae -GJ -ub -ub -kM -ub -tj -rE -rE +BL +kv +kv +gc +kv +vx +WP +WP "} (8,1,1) = {" -br +Jy ae ae ad ad ad ae -TP +za ae ae "} (9,1,1) = {" -nK -dq -Kv -RV -Gj -Kv -fN -bv -oS -oD +JM +GR +Nz +Fp +RN +Nz +kY +gb +Gx +bs "} (10,1,1) = {" -yP -oa -NT -bf -ay -aT -ay -bf -ay -oD +xr +Qf +HY +Ce +NX +Jt +NX +Ce +NX +bs "} (11,1,1) = {" -NJ -sE -Cu -aG -gW -Oq -CP -RN -Tq -oD +BW +ap +Fi +kt +xV +fy +vR +zv +Js +bs "} (12,1,1) = {" -Ya -Ho -Ps -aH +EC +sr +gI +Xw ae ae ae -bh +gW ae ae "} diff --git a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm index 2c3f634a65..38b92227e1 100644 --- a/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm +++ b/maps/map_files/BigRed/sprinkles/40.dorms_party.dmm @@ -20,8 +20,7 @@ /turf/open/floor, /area/bigredv2/outside/dorms) "af" = ( -/obj/structure/machinery/power/apc{ - dir = 1; +/obj/structure/machinery/power/apc/power/north{ name = "Fitness APC" }, /turf/open/floor, @@ -47,32 +46,24 @@ /turf/open/floor, /area/bigredv2/outside/dorms) "al" = ( -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "an" = ( /obj/item/trash/chunk, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ao" = ( /obj/item/trash/chunk{ pixel_x = 3; pixel_y = -4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "ap" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -119,34 +110,26 @@ "ay" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "az" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aA" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/trash/chunk{ pixel_y = 5 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aC" = ( /obj/structure/machinery/camera/autoname{ @@ -193,16 +176,12 @@ /area/bigredv2/outside/dorms) "aJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aL" = ( /obj/effect/decal/cleanable/dirt, @@ -211,17 +190,13 @@ pixel_y = 4 }, /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /obj/item/trash/chunk, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aN" = ( /obj/item/trash/chunk, @@ -246,18 +221,14 @@ /area/bigredv2/outside/dorms) "aS" = ( /obj/item/device/megaphone, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aU" = ( /obj/effect/decal/cleanable/dirt, @@ -265,18 +236,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "aW" = ( /obj/item/device/radio/intercom{ @@ -297,9 +264,7 @@ /area/bigredv2/outside/dorms) "ba" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "bb" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -404,17 +369,13 @@ /area/bigredv2/outside/dorms) "dl" = ( /obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "do" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/corpsespawner/colonist/random, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "el" = ( /obj/effect/landmark/corpsespawner/colonist/random, @@ -429,9 +390,7 @@ /area/bigredv2/outside/dorms) "lN" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, +/turf/open/floor/grimy, /area/bigredv2/outside/dorms) "zO" = ( /obj/structure/pipes/standard/simple/hidden/green{ diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm index 05e058c407..3a06d7aae8 100644 --- a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm +++ b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm @@ -4,28 +4,19 @@ /area/bigredv2/caves) "ab" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "ac" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) "ad" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "ae" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "af" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, @@ -37,205 +28,131 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "ag" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "ah" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) "ai" = ( /turf/open/mars, /area/bigredv2/outside/virology) "ak" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) "al" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/virology) "am" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) "an" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) "ao" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) "aq" = ( /obj/structure/inflatable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "ar" = ( /obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/virology) "as" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "at" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "au" = ( /obj/structure/inflatable, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "av" = ( -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aw" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "ax" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/nw) "ay" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "az" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aE" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/nw) "aF" = ( /obj/structure/inflatable/door, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "aG" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aH" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "aI" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/nw) "aJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "aK" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "aM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/inflatable/popped/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aN" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "aO" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -246,10 +163,7 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "aU" = ( /turf/open/mars, @@ -263,41 +177,27 @@ dir = 4 }, /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "aX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/virology) "aY" = ( /obj/structure/sign/safety/biohazard, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "aZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "ba" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "bb" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/virology) "bc" = ( /turf/closed/wall/solaris/rock, @@ -311,10 +211,7 @@ dir = 1; name = "\improper Virology Lab Decontamination" }, -/turf/open/floor{ - icon_state = "warnwhite"; - dir = 1 - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/virology) "bf" = ( /obj/effect/decal/cleanable/blood{ @@ -324,73 +221,47 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) "bg" = ( /obj/structure/inflatable, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/virology) "bj" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 6 - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/nw) "bk" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 10 - }, +/turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/virology) "bl" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "bm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bn" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "bo" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "bp" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) "bq" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/virology) "br" = ( /obj/structure/inflatable/popped, @@ -400,86 +271,56 @@ /obj/structure/surface/table/almayer, /obj/item/tool/surgery/scalpel, /obj/item/device/autopsy_scanner, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "bt" = ( /obj/structure/bed/roller, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) "bu" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 9 - }, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/virology) "bv" = ( /obj/structure/inflatable/popped, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bw" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "bx" = ( /obj/structure/inflatable/popped, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) "by" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/virology) "bz" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bA" = ( /obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bE" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) "bF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ dir = 8 }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/virology) "bG" = ( /obj/structure/surface/table/almayer, @@ -487,39 +328,25 @@ /obj/item/storage/syringe_case/regular{ pixel_y = 10 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "bH" = ( /obj/structure/surface/table/almayer, -/obj/item/handcuffs, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/obj/item/restraint/handcuffs, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/virology) "lB" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/virology) "qP" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "rG" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/nw) "uN" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) "zC" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -527,22 +354,14 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 1 - }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) "FK" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 4 - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/virology) "GE" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "Kk" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -550,35 +369,23 @@ id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/virology) "Kv" = ( /obj/item/weapon/gun/flamer, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) "Po" = ( /obj/structure/inflatable, -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 5 - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/virology) "Ry" = ( /obj/effect/decal/cleanable/ash, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, +/turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/virology) "Vr" = ( /obj/structure/inflatable/popped, -/turf/open/floor{ - icon_state = "asteroidfloor"; - dir = 1 - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/virology) (1,1,1) = {" diff --git a/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm b/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm deleted file mode 100644 index 96ed195a9b..0000000000 --- a/maps/map_files/BigRed/sprinkles/5+gruesome_medicaleast.dmm +++ /dev/null @@ -1,53 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/item/prop/helmetgarb/rosary{ - pixel_y = 6 - }, -/turf/template_noop, -/area/template_noop) -"d" = ( -/obj/item/clothing/head/soft/blue{ - pixel_x = 5 - }, -/turf/template_noop, -/area/template_noop) -"g" = ( -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = -4 - }, -/turf/template_noop, -/area/template_noop) -"A" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/template_noop, -/area/template_noop) -"K" = ( -/obj/item/limb/arm/l_arm{ - dir = 8 - }, -/obj/item/limb/arm/r_arm, -/obj/item/limb/foot/l_foot{ - dir = 1; - pixel_y = 21 - }, -/obj/item/limb/head{ - dir = 4; - pixel_x = 6 - }, -/obj/effect/decal/cleanable/blood, -/turf/template_noop, -/area/template_noop) -"M" = ( -/turf/template_noop, -/area/template_noop) - -(1,1,1) = {" -d -A -a -"} -(2,1,1) = {" -K -g -M -"} diff --git a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm index f3fa4dbcc6..51e1ab45af 100644 --- a/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm +++ b/maps/map_files/BigRed/sprinkles/5.eta_carp.dmm @@ -2,9 +2,7 @@ "a" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "b" = ( /turf/closed/wall/solaris/reinforced, @@ -13,25 +11,18 @@ /turf/closed/wall/solaris, /area/bigredv2/caves/eta/xenobiology) "d" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "e" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "f" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "g" = ( /turf/open/mars, @@ -48,31 +39,21 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/west, /area/bigredv2/caves/eta/xenobiology) "k" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "l" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "m" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/xenobiology) "n" = ( /obj/item/toy/beach_ball, @@ -91,20 +72,14 @@ /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "r" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "s" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) "t" = ( /mob/living/simple_animal/hostile/carp{ @@ -124,10 +99,7 @@ dir = 8 }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/west, /area/bigredv2/caves/eta/xenobiology) "w" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -143,59 +115,39 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "z" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/caves/eta/xenobiology) "A" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) "B" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, +/turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/eta/xenobiology) "C" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "D" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, +/turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) "E" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/eta/xenobiology) "F" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/eta/xenobiology) "G" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, +/turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves/eta/xenobiology) "H" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/eta/xenobiology) "O" = ( /obj/effect/decal/cleanable/dirt, diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm index ec219d07b9..3b3a51b063 100644 --- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm +++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm @@ -1,12 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ax" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 28; - start_charge = 0 - }, -/turf/open/floor, -/area/bigred/ground/security) +"aF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) "aN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -14,60 +10,16 @@ }, /turf/open/floor, /area/bigred/ground/security) -"bp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - icon_state = "door_locked"; - locked = 0; - name = "\improper Checkpoint Office" - }, -/turf/open/floor, -/area/bigred/ground/security) -"bx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/motiondetector, -/turf/open/floor, -/area/bigred/ground/security) -"cO" = ( +"aV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"dz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_cave_cas) -"el" = ( +"bx" = ( /obj/structure/surface/table/almayer, -/obj/item/handcuffs, +/obj/item/device/motiondetector, /turf/open/floor, /area/bigred/ground/security) -"ge" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/greengrid, -/area/bigred/ground/security) -"hz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Checkpoint Office" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigred/ground/security) -"ie" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/bigredv2/outside/filtration_cave_cas) -"kd" = ( +"cI" = ( /obj/structure/surface/table/almayer, /obj/structure/phone_base/colony_net/rotary{ phone_category = "Solaris Ridge"; @@ -76,66 +28,85 @@ }, /turf/open/floor/greengrid, /area/bigred/ground/security) -"kG" = ( +"dZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"kL" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"ev" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/filtration_cave_cas) +"ge" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/greengrid, +/area/bigred/ground/security) +"gF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/filtration_cave_cas) +"hR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/filtration_cave_cas) +"kN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_cave_cas) +"kO" = ( +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_cave_cas) "kX" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/security) -"mp" = ( +"ld" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) -"oT" = ( -/turf/closed/wall/solaris/reinforced, +"lK" = ( +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) -"pb" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +"lY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_cave_cas) -"pJ" = ( +"mU" = ( /obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) +"nN" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/filtration_cave_cas) +"oG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"oT" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/filtration_cave_cas) "pV" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigred/ground/security) -"qg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) "qy" = ( /obj/item/device/radio, /obj/structure/surface/table/almayer, /turf/open/floor, /area/bigred/ground/security) +"qG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) "rD" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -146,16 +117,23 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/greengrid, /area/bigred/ground/security) -"tV" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, +"ts" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) +"tK" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + icon_state = "door_locked"; + name = "\improper Checkpoint Office" + }, +/turf/open/floor, +/area/bigred/ground/security) +"ub" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor, +/area/bigred/ground/security) "uk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -165,15 +143,6 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/greengrid, /area/bigred/ground/security) -"ve" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Checkpoint Office" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/bigred/ground/security) "vH" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -183,12 +152,9 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor, /area/bigred/ground/security) -"wi" = ( +"wQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_cave_cas) "xa" = ( /turf/open/floor/greengrid, @@ -208,70 +174,44 @@ }, /turf/open/floor, /area/bigred/ground/security) -"zE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"Aq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/filtration_cave_cas) +"ze" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) "AY" = ( /turf/open/floor, /area/bigred/ground/security) -"AZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"Bb" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) -"EV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +"FH" = ( +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) -"Ge" = ( +"GB" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"Gm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/filtration_cave_cas) -"GJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ +"Hf" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/se) +"Hm" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"HH" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" + id = "filtration"; + name = "Filtration Lockdown" }, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) -"Ih" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"Hq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/security) +"IB" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_cave_cas) "IS" = ( /obj/structure/filingcabinet, @@ -293,6 +233,10 @@ /obj/structure/surface/table/almayer, /turf/open/floor/greengrid, /area/bigred/ground/security) +"MC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/filtration_cave_cas) "NQ" = ( /obj/structure/largecrate, /turf/open/floor/greengrid, @@ -304,19 +248,6 @@ /obj/structure/machinery/vending/security, /turf/open/floor, /area/bigred/ground/security) -"OD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"OM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) "Pf" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, @@ -325,16 +256,9 @@ "PS" = ( /turf/open/mars, /area/bigredv2/outside/se) -"Qf" = ( +"Ql" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "filtration"; - name = "Filtration Lockdown" - }, -/turf/open/floor{ - icon_state = "delivery" - }, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_cave_cas) "Qo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -352,41 +276,34 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigred/ground/security) -"Ue" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor{ +"Td" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) -"Vg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" + name = "\improper Checkpoint Office" }, -/area/bigredv2/outside/filtration_cave_cas) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/delivery, +/area/bigred/ground/security) "Vn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze, /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/greengrid, /area/bigred/ground/security) +"Vv" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_cave_cas) "VI" = ( /obj/structure/largecrate, /turf/open/floor, /area/bigred/ground/security) -"Wa" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"XU" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +"XM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Checkpoint Office" }, -/area/bigredv2/outside/filtration_cave_cas) +/turf/open/floor/delivery, +/area/bigred/ground/security) "Yo" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid, @@ -399,14 +316,6 @@ }, /turf/open/floor/greengrid, /area/bigred/ground/security) -"Zu" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/filtration_cave_cas) "ZK" = ( /obj/effect/landmark/crap_item, /obj/structure/machinery/light{ @@ -414,13 +323,16 @@ }, /turf/open/floor, /area/bigred/ground/security) +"ZL" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/filtration_cave_cas) (1,1,1) = {" PS -pJ -EV -OD -Wa +Hf +dZ +FH +ze kX kX kX @@ -433,28 +345,28 @@ Qo "} (2,1,1) = {" oT -tV -tV -tV -tV +Hm +Hm +Hm +Hm kX IS LX qy bx -el +ub NU rF Qo "} (3,1,1) = {" oT -kL -Vg -zE -OM +ev +kO +Ql +MC SF -kd +cI AY KO uk @@ -465,10 +377,10 @@ Qo "} (4,1,1) = {" oT -Ge -wi -wi -kG +GB +wQ +wQ +aF SF Vn xj @@ -477,14 +389,14 @@ AY uk uk AY -hz +Td "} (5,1,1) = {" oT -tV -tV -Qf -Qf +Hm +Hm +ld +ld kX YZ aN @@ -497,15 +409,15 @@ Qo "} (6,1,1) = {" oT -mp -Vg -Vg -XU +gF +kO +kO +nN kX kX kX kX -bp +tK kX kX kX @@ -513,10 +425,10 @@ Qo "} (7,1,1) = {" oT -Ue -Ih -Aq -qg +IB +Vv +aV +lY kX VI VI @@ -529,12 +441,12 @@ Qo "} (8,1,1) = {" oT -AZ -Ih -Aq -qg +ZL +Vv +aV +lY kX -ax +Hq AY uk uk @@ -545,11 +457,11 @@ Qo "} (9,1,1) = {" oT -cO -Aq -Ih -HH -ve +qG +aV +Vv +lK +XM uk uk AY @@ -561,10 +473,10 @@ Qo "} (10,1,1) = {" oT -Gm -Ih -Ih -HH +Bb +Vv +Vv +lK kX AY Pf @@ -577,10 +489,10 @@ Qo "} (11,1,1) = {" oT -pb -Ih -Aq -qg +mU +Vv +aV +lY kX vH ZK @@ -592,11 +504,11 @@ NQ Qo "} (12,1,1) = {" -ie -Zu -GJ -GJ -dz +oG +ts +kN +kN +hR Qo Qo Qo diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index d399d2d093..03c8267e0a 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -16,12 +16,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars, /area/bigredv2/caves_north) -"av" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/caves_north) "aw" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -37,6 +31,10 @@ icon_state = "wy25" }, /area/bigredv2/caves_north) +"aA" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) "aB" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/general_offices) @@ -45,12 +43,6 @@ icon_state = "wy22" }, /area/bigredv2/outside/general_offices) -"aE" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "aF" = ( /turf/closed/shuttle/ert{ icon_state = "wy23" @@ -72,30 +64,6 @@ "aK" = ( /turf/open/floor, /area/bigredv2/outside/general_offices) -"aL" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"aN" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"aO" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) "aP" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" @@ -106,274 +74,48 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars, /area/bigredv2/caves_north) -"aR" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/bigredv2/outside/general_offices) -"aS" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/bigredv2/outside/general_offices) -"aT" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/bigredv2/outside/general_offices) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "aV" = ( /turf/closed/shuttle/ert{ icon_state = "wy19" }, /area/bigredv2/outside/general_offices) -"aW" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/general_offices) -"aX" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/general_offices) -"aY" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) "aZ" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"ba" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bb" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bc" = ( -/obj/structure/surface/rack, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bd" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"be" = ( -/obj/item/clothing/under/darkred, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "bf" = ( /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"bg" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/general_offices) -"bh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) -"bi" = ( -/obj/item/paper/crumpled/bloody, -/obj/effect/decal/cleanable/blood{ - icon_state = "u_psycopath_l" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/general_offices) -"bj" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) -"bk" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/general_offices) -"bl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bo" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "bp" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"bq" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "br" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" }, /area/bigredv2/outside/general_offices) -"bs" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) -"bt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/general_offices) -"bu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) -"bv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "bw" = ( /turf/closed/shuttle/ert{ icon_state = "wy17" }, /area/bigredv2/outside/general_offices) -"bx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"by" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/caves_north) "bA" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/general_offices) -"bD" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/general_offices) "bE" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" }, /area/bigredv2/outside/general_offices) -"bF" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/general_offices) "bG" = ( /turf/closed/shuttle/ert{ icon_state = "wy15" }, /area/bigredv2/outside/general_offices) -"bH" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bK" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/lightbrown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) -"bL" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/bigredv2/outside/general_offices) "bM" = ( /turf/closed/shuttle/ert{ icon_state = "wy12" @@ -384,62 +126,6 @@ icon_state = "wy13" }, /area/bigredv2/outside/general_offices) -"bO" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bP" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bR" = ( -/obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"bT" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bU" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/general_offices) "bV" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -447,110 +133,22 @@ /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/general_offices) -"bW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"bZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) "ca" = ( /turf/closed/shuttle/ert{ icon_state = "wy4" }, /area/bigredv2/outside/general_offices) -"cb" = ( -/obj/structure/surface/rack, -/obj/item/restraints, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) -"cc" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/bigredv2/outside/general_offices) -"cd" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/bigredv2/outside/general_offices) -"ce" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "cf" = ( /turf/closed/shuttle/ert{ icon_state = "wy5" }, /area/bigredv2/outside/general_offices) -"cg" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"ch" = ( -/obj/structure/closet/l3closet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"ci" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"cj" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/clothing/under/redcoat, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) "cl" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/general_offices) -"cm" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/bigredv2/outside/general_offices) "cn" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" @@ -571,65 +169,24 @@ icon_state = "wy_rightengine" }, /area/bigredv2/outside/general_offices) -"cr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) "cs" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/bigredv2/outside/general_offices) -"cu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/general_offices) "cv" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/bigredv2/outside/general_offices) -"cw" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"cx" = ( -/obj/structure/machinery/camera/autoname, -/obj/item/stack/sheet/plasteel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) -"cy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/general_offices) "cA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories Tool Storage" }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"cB" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/general_offices) "cC" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -684,528 +241,617 @@ opacity = 0 }, /area/bigredv2/outside/general_offices) -"cM" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"cV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/bigredv2/caves_north) +"di" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"cN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"dx" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"eF" = ( +/turf/template_noop, +/area/template_noop) +"fk" = ( +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"fp" = ( +/obj/item/paper/crumpled/bloody, +/obj/effect/decal/cleanable/blood{ + icon_state = "u_psycopath_l" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"cO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"fr" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"fu" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"cP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, +"fK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"fQ" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"gf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"gk" = ( +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"cQ" = ( +"hH" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"cU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/bigredv2/caves_north) -"cV" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/bigredv2/caves_north) -"cW" = ( +"iH" = ( /obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) -"cX" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" +"iN" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"iW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"jj" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"cY" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"jr" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kh" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/bigredv2/outside/general_offices) -"cZ" = ( +"ld" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"da" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, +"lS" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"mq" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"mw" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"mC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"mS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dc" = ( +"na" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"nC" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"nU" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/wood_broken2, /area/bigredv2/outside/general_offices) -"dd" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"nW" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"od" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"oV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"pL" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/general_offices) +"qc" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"qL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"qW" = ( +/obj/structure/bed/chair/dropship/passenger, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"de" = ( +"rh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"rY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"sD" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"ts" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) -"df" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"ui" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/shuttle/dropship/can_surgery, /area/bigredv2/outside/general_offices) -"dg" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor, +"ut" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/hydroponics) +"wc" = ( +/obj/structure/machinery/light, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"di" = ( -/obj/structure/bed/chair{ +"wv" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"wI" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"xo" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"xM" = ( +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dj" = ( +"yK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Ad" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Dormitories Bedroom" }, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) -"dk" = ( +"Aw" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dl" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "platingdmg1" +"BS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"BX" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"Ca" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Cp" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"dm" = ( -/turf/open/floor/plating{ - icon_state = "wood" +"Cy" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"CE" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/hydroponics) +"Dp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA" }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"dn" = ( -/obj/structure/surface/table, -/turf/open/floor/plating{ - icon_state = "wood" +"Du" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"DD" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/lightbrown, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"DG" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"DU" = ( +/turf/open/floor/plating/wood_broken5, /area/bigredv2/outside/general_offices) -"do" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken5" +"Eg" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"dp" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" +"Eq" = ( +/obj/structure/machinery/camera/autoname, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Et" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"EA" = ( +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) -"dq" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken6" +"EJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"EO" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" }, /area/bigredv2/outside/general_offices) -"dr" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken3" +"EP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"ES" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/caves_north) +"FK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, +/turf/open/shuttle/dropship/can_surgery, /area/bigredv2/outside/general_offices) -"ds" = ( +"FW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"dt" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"Gb" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/wood_broken3, +/area/bigredv2/outside/general_offices) +"Gh" = ( +/obj/structure/bed, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"GR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"Hw" = ( +/turf/open/floor/plating/wood_broken4, /area/bigredv2/outside/general_offices) -"du" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken" +"HE" = ( +/obj/structure/window/framed/solaris, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Dormitories"; + name = "\improper Dormitories Shutters" }, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"HP" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dv" = ( +"HR" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"HT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"JK" = ( /obj/structure/surface/table, -/turf/open/floor/plating{ - icon_state = "wood-broken5" +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"JO" = ( +/turf/open/floor/plating/wood_broken6, +/area/bigredv2/outside/general_offices) +"JS" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"JW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/hydroponics) +"KH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"KI" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"Lx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"LQ" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"dx" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"dy" = ( +"Mp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"MY" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/bigredv2/outside/general_offices) +"Nd" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Nk" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"NR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Oa" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/bigredv2/outside/general_offices) +"Of" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Oo" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/turf/open/floor/plating{ - icon_state = "wood" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Pq" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) -"dz" = ( -/obj/structure/bed, -/turf/open/floor/plating{ - icon_state = "wood" - }, +"PN" = ( +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) -"dA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "wood-broken2" - }, +"PX" = ( +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dB" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, +"PZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "wood-broken3" - }, +"Qz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"dD" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken4" - }, +"Rg" = ( +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"dE" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"Rk" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/general_offices) +"RM" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Sv" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"dF" = ( +"Sy" = ( /obj/structure/bed, -/turf/open/floor/plating{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) -"dG" = ( -/turf/open/mars, -/area/bigredv2/outside/ne) -"dQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +"Td" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/bigredv2/outside/general_offices) +"Tp" = ( +/obj/effect/decal/cleanable/blood{ dir = 1; - icon_state = "asteroidfloor" + icon_state = "gib6" }, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/ne) -"dS" = ( +"Tx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/ne) -"dT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/ne) -"dU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/ne) -"dV" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/ne) -"dW" = ( -/obj/effect/decal/cleanable/dirt, +"TM" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"TX" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/general_offices) +"Uo" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/mars, -/area/bigredv2/outside/ne) -"dX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/ne) -"ea" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/ne) -"eb" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/hydroponics) -"ec" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"ed" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/hydroponics) -"ee" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Ux" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"UH" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"UU" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"ef" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/hydroponics) -"eg" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating{ - icon_state = "wood-broken2" - }, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/general_offices) -"eh" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/hydroponics) -"ej" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) -"el" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/ne) -"em" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"en" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/hydroponics) -"ep" = ( -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"ey" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/ne) -"ez" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/ne) -"eA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"eE" = ( -/turf/open/floor, -/area/bigredv2/outside/hydroponics) -"eF" = ( -/turf/template_noop, -/area/template_noop) -"eG" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/hydroponics) -"eH" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor/plating, -/area/bigredv2/outside/hydroponics) -"eI" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eJ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" +"Vq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"Vr" = ( +/turf/open/floor/plating/wood_broken3, +/area/bigredv2/outside/general_offices) +"Xc" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Xv" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"eK" = ( +"XI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/general_offices) -"eL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"eM" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"XX" = ( +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/general_offices) -"eN" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"Yy" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/ne) -"eO" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/hydroponics) -"eU" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "wood-broken6" - }, +"YC" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"YP" = ( +/obj/structure/surface/rack, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"xT" = ( +"YX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" - }, +/turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves_north) -"EO" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/bigredv2/outside/general_offices) -"IB" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"ZH" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"Zt" = ( -/obj/structure/bed/chair/dropship/passenger, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"ZI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/ne) +"ZY" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/general_offices) (1,1,1) = {" @@ -1343,7 +989,7 @@ eF aB aB aB -bo +jr aB aB aB @@ -1372,11 +1018,11 @@ eF eF eF aB -aL -bd -bd -bd -bK +fu +Rg +Rg +Rg +DD aB bV cl @@ -1403,22 +1049,22 @@ eF eF eF aB -aM -bd -bd -bd -aM +YC +Rg +Rg +Rg +YC aB -bW -bl -aO +hH +PZ +PX aB cF aK aK -dj -dm -dy +Ad +fk +wv aB eF eF @@ -1434,22 +1080,22 @@ eF eF eF aB -aM -bd -bd -bd -bL +YC +Rg +Rg +Rg +iN aB -bX -bl -aO +Of +PZ +PX aB -bl +PZ bf bf aB -dn -dz +BX +Gh aB eF eF @@ -1465,19 +1111,19 @@ eF eF eF aB -aM -be -bd -bd +YC +gk +Rg +Rg bf -bT -bY -bl -aO -bU -bl -aO -dd +HR +mC +PZ +PX +lS +PZ +PX +ZY aB aB aB @@ -1496,22 +1142,22 @@ eF eF eF aB -aN +JS bf bp -aO -aO -bU -bZ -aO -aO +PX +PX +lS +yK +PX +PX cA -aO -aO -aX -dj -do -dA +PX +PX +Nk +Ad +DU +nU aB eF eF @@ -1527,22 +1173,22 @@ eF eF eF aB -aO -aW +PX +EA bf -aX -aO -bD -aO -bl -bl +Nk +PX +PN +PX +PZ +PZ aK -bl -aO -aX +PZ +PX +Nk aB -dp -dB +JK +Sy aB eF eF @@ -1558,27 +1204,27 @@ eF eF eF aB -aO -aO -aX -aW -aO -aO -aO -bl -aO -bD -aW -dc -aO +PX +PX +Nk +EA +PX +PX +PX +PZ +PX +PN +EA +na +PX aB aB aB aB -dQ -ea -ej -ey +eF +eF +eF +eF "} (13,1,1) = {" eF @@ -1592,24 +1238,24 @@ aB aB aB aB -bD -dc -bD -dc -aO -cr -cB -bl -aW -bl -dj -dq -dC -bU -dS -eN -el -ez +PN +na +PN +na +PX +rh +EP +PZ +EA +PZ +Ad +JO +Gb +lS +Tx +KI +eF +eF "} (14,1,1) = {" eF @@ -1621,26 +1267,26 @@ aQ cV EO aP -bg +ui br bE bM -bg +ui ca cn cs cC cG -aO -cY -bD -dr -dD -eJ -dS -eb -ef -ef +PX +XX +PN +Vr +Hw +aA +Tx +ut +CE +CE "} (15,1,1) = {" eF @@ -1651,27 +1297,27 @@ eF aQ cI aG -ce -bh -bs -bs -bs -bu -cb +Ux +qc +Xv +Xv +Xv +fK +Sv co ca ca cH -cX -cZ -cZ -ds -eM -bD -dT -ec -ec -eA +Aw +ts +ts +od +Rk +PN +Lx +mq +mq +qL "} (16,1,1) = {" eF @@ -1682,27 +1328,27 @@ eF at aw aD -aR -bi -bt -bF -bF -bF -cc -bh -bh -bh -eL -cY -dl -aO -aX -aX -aX -dU -ed -em -eB +MY +fp +HT +Uo +Uo +Uo +Oa +qc +qc +qc +FK +XX +xo +PX +Nk +Nk +Nk +ZI +JW +gf +iW "} (17,1,1) = {" eF @@ -1712,28 +1358,28 @@ eF eF aQ ax -aE -cm -bj -bj -bj -Zt -bj -aS -bk -bk -bk +nW +TX +Xc +Xc +Xc +qW +Xc +pL +ZH +ZH +ZH cJ -aW -aO -aO -aW -aW -cN -dV -ec -eI -eC +EA +PX +PX +nC +nC +GR +Du +mq +NR +rY "} (18,1,1) = {" eF @@ -1744,27 +1390,27 @@ eF au ay aF -aT -bk -bk -bk -bk -bk -cd -bh -cu -bh -eL -cZ -de -dk -dt -dE -dt -dW -ee -en -ec +kh +ZH +ZH +ZH +ZH +ZH +Td +qc +Qz +qc +FK +ts +ld +UU +Yy +Tp +Yy +eF +DG +fr +mq "} (19,1,1) = {" eF @@ -1775,27 +1421,27 @@ eF aQ an aG -aU -bq -bv -bv -bv -bh -ce +fQ +LQ +Et +Et +Et +qc +Ux cp cf cf cK -bl -bl -eg -du -dD -cY -dX -eO -ec -eC +PZ +PZ +UH +eF +eF +eF +eF +wI +mq +rY "} (20,1,1) = {" eF @@ -1803,30 +1449,30 @@ eF eF eF eF -av +Vq an aH aV -bg +ui bw bG bN -bg +ui cf cq cv cD cL -aW -aO -eK -dr -eU -aW -dX -ef -ec -eD +EA +PX +XI +eF +eF +eF +eF +CE +mq +eF "} (21,1,1) = {" eF @@ -1834,30 +1480,30 @@ eF eF eF eF -bz +ES an -IB -aW -bl -bl -aW -aO -bD -aO -aO -aO -bD -bl -bO -aW -bU -dc -eJ -bU -dX -eG -eo -eD +Cy +EA +PZ +PZ +EA +PX +PN +PX +PX +PX +PN +PZ +mS +EA +EA +eF +eF +eF +eF +eF +eF +eF "} (22,1,1) = {" eF @@ -1865,30 +1511,30 @@ eF eF eF eF -cU +YX ab aB -aX -bl -cW -aO -bO -dc -cg -aO -aO -eJ -bl -aW -aO -dj -dq -dr -aB -dG -eH -eo -eE +Nk +PZ +iH +PX +mS +na +Ca +PX +PX +aA +PZ +EA +PX +lS +eF +eF +eF +eF +eF +eF +eF "} (23,1,1) = {" eF @@ -1896,30 +1542,30 @@ eF eF eF eF -xT +oV ab aB -aY -aO -aO -bH -bP -bU -ch -ch -ch -bU -cM -cM -df +BS +PX +PX +TM +xM +lS +HP +HP +HP +lS +Pq +Pq +wc aB -dv -dF -aB -dG -eh -ep -ep +eF +eF +eF +eF +eF +eF +eF "} (24,1,1) = {" eF @@ -1927,11 +1573,11 @@ eF eF eF eF -xT +oV ab aI aZ -bm +Dp aZ aZ aI @@ -1940,17 +1586,17 @@ aI aI aI aI -cN -aW -cM -aB -aB -aB +FW +aK +Cp aB eF eF eF eF +eF +eF +eF "} (25,1,1) = {" eF @@ -1961,19 +1607,19 @@ eF ab ab aI -ba -bb -bx -bI -bQ -bI -ci -bb -cw +KH +Nd +jj +Mp +sD +Mp +fH +Nd +EJ aI -cO -cO -cF +HE +HE +HE aB eF eF @@ -1992,20 +1638,20 @@ eF eF eF aI -bb -bb -bb -bI -bI -bI -bb -bI -bb +Nd +Nd +Nd +Mp +Mp +Mp +Nd +Mp +Nd aI -cF -cF -aK -aB +eF +eF +eF +eF eF eF eF @@ -2023,20 +1669,20 @@ eF eF eF aI -bb -bb -bb -bb -bR -bb -bb -bb -cx +Nd +Nd +Nd +Nd +mw +Nd +Nd +Nd +Eq aI -cP -aK -aK -aB +eF +eF +eF +eF eF eF eF @@ -2054,20 +1700,20 @@ eF eF eF aI -bc -bb -by -bb -bS -bb -cj -bb -cy +YP +Nd +Eg +Nd +Oo +Nd +RM +Nd +RM aI -aK -aK -aK -aB +eF +eF +eF +eF eF eF eF @@ -2095,10 +1741,10 @@ aI aI aI aI -cQ -da -dg -aB +eF +eF +eF +eF eF eF eF diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index e6d91bfeaf..7ed7f0e422 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -1,91 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"ac" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/c) -"ad" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/c) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"ag" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/bigredv2/outside/e) -"ah" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "ai" = ( /turf/open/mars, /area/bigredv2/outside/e) -"aj" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/bigredv2/outside/e) -"ak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"al" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"am" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/e) -"an" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/bigredv2/outside/c) -"ao" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) "ap" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/office_complex) -"aq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"ar" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) "as" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -94,71 +13,11 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"at" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/bigredv2/outside/e) -"au" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"av" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"aw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) "ax" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"ay" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"az" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) -"aA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/e) -"aB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) "aC" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -174,50 +33,10 @@ icon_state = "wy25" }, /area/bigredv2/outside/office_complex) -"aF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) -"aG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"aH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"aI" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aJ" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"aK" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) "aL" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, /turf/open/floor/mech_bay_recharge_floor, /area/bigredv2/outside/office_complex) -"aM" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) "aN" = ( /turf/closed/shuttle/ert{ icon_state = "wy21" @@ -228,52 +47,16 @@ icon_state = "wy22" }, /area/bigredv2/outside/office_complex) -"aP" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/office_complex) "aQ" = ( /turf/closed/shuttle/ert{ icon_state = "wy23" }, /area/bigredv2/outside/office_complex) -"aR" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"aS" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/office_complex) "aT" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" }, /area/bigredv2/outside/office_complex) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/restraints, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/office_complex) -"aV" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/office_complex) -"aW" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/office_complex) "aX" = ( /turf/closed/shuttle/ert{ icon_state = "wy19" @@ -288,39 +71,12 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"aZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) "ba" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /obj/item/stack/rods, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"bb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"bc" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/bigredv2/outside/office_complex) -"bd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/office_complex) "be" = ( /turf/open/floor, /area/bigredv2/outside/office_complex) @@ -328,74 +84,16 @@ /obj/structure/bed/chair/office/light, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) "bj" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" }, /area/bigredv2/outside/office_complex) -"bl" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/bigredv2/outside/office_complex) -"bm" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/bigredv2/outside/office_complex) -"bn" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, -/area/bigredv2/outside/office_complex) -"bo" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/bigredv2/outside/office_complex) -"bp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/office_complex) "bq" = ( /turf/closed/shuttle/ert{ icon_state = "wy17" }, /area/bigredv2/outside/office_complex) -"br" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) "bs" = ( /obj/structure/machinery/light{ dir = 4 @@ -404,48 +102,6 @@ /obj/item/paper, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"bu" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) -"bv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/bigredv2/outside/office_complex) -"bw" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bx" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"by" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/office_complex) "bz" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" @@ -456,32 +112,6 @@ icon_state = "wy15" }, /area/bigredv2/outside/office_complex) -"bB" = ( -/obj/item/clothing/head/welding, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/bigredv2/outside/office_complex) -"bC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) "bF" = ( /turf/closed/shuttle/ert{ icon_state = "wy12" @@ -499,12 +129,6 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/office_complex) "bJ" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/plating, @@ -514,1149 +138,1113 @@ /obj/item/paper_bin, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) "bN" = ( /obj/structure/window_frame/solaris, /obj/item/stack/rods, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"bO" = ( -/obj/item/device/analyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/office_complex) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/office_complex) "bQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bR" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"bS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/office_complex) -"bT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/office_complex) "bU" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bV" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - icon_state = "white" +"cD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" }, /area/bigredv2/outside/office_complex) -"bW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - icon_state = "white" +"cE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" }, /area/bigredv2/outside/office_complex) -"bX" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" +"cF" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" }, /area/bigredv2/outside/office_complex) -"bY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" +"cG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" }, /area/bigredv2/outside/office_complex) -"bZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"cL" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 }, -/turf/open/floor{ - icon_state = "dark" +/area/bigredv2/outside/office_complex) +"cM" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy4" }, /area/bigredv2/outside/office_complex) -"ca" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" +"cN" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy5" }, /area/bigredv2/outside/office_complex) -"cb" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"cO" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_3"; + opacity = 0 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/area/bigredv2/outside/office_complex) +"cR" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/office_complex) +"cT" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_2"; + opacity = 0 }, /area/bigredv2/outside/office_complex) -"cc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" +"cU" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_2"; + opacity = 0 }, /area/bigredv2/outside/office_complex) -"cd" = ( +"da" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor{ - icon_state = "white" - }, +/turf/closed/wall/solaris, /area/bigredv2/outside/office_complex) -"ce" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor{ - icon_state = "dark" +"dc" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 }, /area/bigredv2/outside/office_complex) -"cf" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"dd" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 }, /area/bigredv2/outside/office_complex) -"cg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "redcorner" +"dg" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" }, /area/bigredv2/outside/office_complex) -"ch" = ( -/turf/open/floor{ - icon_state = "redcorner" +"dh" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" }, /area/bigredv2/outside/office_complex) -"ci" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" +"di" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" }, /area/bigredv2/outside/office_complex) -"cj" = ( -/obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "dark" +"dk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" }, +/turf/open/floor, /area/bigredv2/outside/office_complex) -"ck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" +"dm" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" }, -/area/bigredv2/outside/office_complex) -"cl" = ( +/area/bigredv2/outside/se) +"dn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/se) +"do" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/bigredv2/outside/se) +"ds" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/mars, +/area/bigredv2/outside/se) +"eo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"et" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/effect/decal/cleanable/blood, +/obj/item/limb/leg/r_leg, +/obj/item/weapon/gun/pistol/m4a3/training{ + name = "dented M4A3 service pistol" }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"eG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"eQ" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"fb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"cm" = ( +"fr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"fs" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, +/obj/item/limb/leg/l_leg, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"co" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +"fP" = ( +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +"fT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) -"cq" = ( -/turf/open/floor{ - icon_state = "dark" - }, +"gr" = ( +/obj/item/frame/table, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"cr" = ( +"gL" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"hd" = ( +/obj/item/clothing/shoes/galoshes, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"cs" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" +"hj" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cu" = ( -/obj/structure/bed/chair/dropship/passenger{ +"hn" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cv" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" +"hq" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"cw" = ( -/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ - desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; - name = "smashed NSG 23 assault rifle" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin12" - }, +"hA" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"cx" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/limb/arm/l_arm, -/obj/item/limb/leg/l_leg, -/obj/item/limb/hand/r_hand, -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +"hI" = ( +/obj/item/device/multitool, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"cy" = ( -/obj/structure/janitorialcart, +"ig" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ir" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"cz" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +"iA" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"cA" = ( +"iN" = ( +/obj/item/device/analyzer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ji" = ( +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"cB" = ( +"jq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"js" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"jv" = ( +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; + name = "battered M41A pulse rifle Mk2" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cC" = ( -/obj/effect/spawner/random/tech_supply, +"jK" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"jM" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"ka" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"ki" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"cD" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" +"kB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy8" +"ld" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cF" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy9" +"lo" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_cl, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" +"lH" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/limb/arm/l_arm, +/obj/item/limb/leg/l_leg, +/obj/item/limb/hand/r_hand, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/bigredv2/outside/office_complex) +"lK" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/e) +"lY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"mj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"mz" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cH" = ( +"mB" = ( /obj/structure/surface/table, /obj/item/trash/semki, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"cI" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ +"mT" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/office_complex) -"cJ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/device/radio/headset/distress/pmc/hvh, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cK" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +"ng" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cL" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, +"nv" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"cM" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy4" +"nC" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/obj/item/clothing/under/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cN" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, +"oC" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) -"cO" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_3"; - opacity = 0 +"pr" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/item/device/radio/headset/distress/pmc/hvh, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cP" = ( +"pt" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"cQ" = ( -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" +"py" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cR" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, +"pB" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"cS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" +"pG" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"cT" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_2"; - opacity = 0 - }, +"pH" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"cU" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_2"; - opacity = 0 +"qf" = ( +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"qn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" +"rb" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"rd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/bigredv2/outside/office_complex) -"cW" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"cX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"cY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/c) -"cZ" = ( +"rv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"rT" = ( +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"da" = ( +"rY" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"db" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"sp" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top, /area/bigredv2/outside/office_complex) -"dc" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, +"sx" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dd" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, +"sz" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/bigredv2/outside/office_complex) -"de" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +"sD" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"df" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"sH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/office_complex) -"dg" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, +/obj/item/frame/table, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dh" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, +"sS" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"td" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"di" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" +"tk" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dj" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, +"tr" = ( +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" +"tU" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ + desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; + name = "battered M41A pulse rifle Mk2" }, -/turf/open/floor, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"tW" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) +"ux" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"dm" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy1" - }, -/area/bigredv2/outside/se) -"dn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/se) -"do" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/bigredv2/outside/se) -"dp" = ( +"uK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dq" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, -/area/bigredv2/outside/se) -"dt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/bigredv2/outside/se) -"du" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/bigredv2/outside/se) -"dv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/bigredv2/outside/se) -"dw" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dx" = ( -/obj/item/tool/warning_cone, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dz" = ( +"uP" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"vf" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"wz" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"dA" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, +"wB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"wF" = ( /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/bigredv2/outside/office_complex) -"dB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"wL" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"dC" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"wT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dD" = ( +"wW" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"xh" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dE" = ( +"xi" = ( /obj/effect/decal/cleanable/blood{ - dir = 1; icon_state = "gib6" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dF" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +"xz" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dG" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" +"xI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dH" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +"xZ" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"yr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/taperecorder, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dI" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"yw" = ( +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"yK" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dK" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"yW" = ( +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) -"dL" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"yY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"dM" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"zr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"dN" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"zx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"zy" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dO" = ( +"zE" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"zN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"dQ" = ( +"Ak" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"AU" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dR" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"AX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) -"dS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"BV" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) -"dT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Ci" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Ct" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dU" = ( +"Cx" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"CG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"CK" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/device/healthanalyzer, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"dV" = ( +"CV" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Dn" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Dz" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"dW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/se) -"dX" = ( +"DJ" = ( +/obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/e) -"dY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"dZ" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"Ej" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Eq" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"EV" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/bigredv2/outside/office_complex) -"ea" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"EY" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"eb" = ( -/obj/structure/pipes/vents/pump{ +"Fr" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"ec" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"FK" = ( +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"ed" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "dark" - }, +"Ge" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"ee" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "platingdmg1" +"Gq" = ( +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ + desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; + name = "smashed NSG 23 assault rifle" }, +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, /area/bigredv2/outside/office_complex) -"ef" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Gy" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"eg" = ( -/obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"eh" = ( -/obj/item/device/multitool, -/turf/open/floor{ - icon_state = "dark" - }, +"GF" = ( +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) -"ei" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +"GO" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "whiteyellowfull" + icon_state = "gib6" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top, /area/bigredv2/outside/office_complex) -"ek" = ( +"GP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"He" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"el" = ( -/obj/item/clothing/shoes/galoshes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +"Hf" = ( +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"HL" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"HS" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "whiteyellowfull" + icon_state = "gib6" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/bigredv2/outside/office_complex) -"em" = ( +"Ik" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/trash/syndi_cakes, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"fv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Ir" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/office_complex) -"fG" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Iz" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"IN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"Jg" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Ji" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"hN" = ( +"JB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"Ke" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"Kh" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"id" = ( -/obj/structure/bed/chair/dropship/passenger{ +"Ky" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"jx" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, +"KR" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"KX" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"LA" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/item/limb/arm/l_arm, /obj/item/limb/leg/l_leg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/item/limb/hand/r_hand, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"LH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"LJ" = ( +/obj/effect/spawner/random/tech_supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"LP" = ( +/obj/item/shard, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"LQ" = ( +/obj/item/storage/firstaid, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Md" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Mf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"Mi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Mt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"oF" = ( +"ME" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/item/clothing/under/marine/veteran/pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"qX" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/pmc, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"Nf" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"rF" = ( +"Nt" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"rK" = ( +"Nz" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" + dir = 4 }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"si" = ( -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"NI" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"sR" = ( -/obj/item/storage/firstaid, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"NU" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/bigredv2/outside/office_complex) -"uC" = ( +"NV" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/spawner/gibspawner/human, -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; - name = "battered M41A pulse rifle Mk2" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"uL" = ( -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"Oz" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"OF" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"Pk" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"vw" = ( +"Pm" = ( /obj/item/limb/arm/l_arm, -/turf/open/shuttle/dropship{ - icon_state = "floor8" +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/bigredv2/outside/office_complex) +"PS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Qs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"QF" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"QN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"yS" = ( -/obj/structure/bed/chair/dropship/passenger{ +"QO" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Sg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Sn" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"Sv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"SW" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"Ta" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Te" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/se) +"TF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/black, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"AB" = ( +"TS" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/item/limb/leg/r_leg, -/obj/item/weapon/gun/pistol/m4a3/training{ - name = "dented M4A3 service pistol" - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Ub" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"Ud" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"Bu" = ( +"Ue" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/item/limb/arm/l_arm, -/obj/item/limb/leg/l_leg, -/obj/item/limb/hand/r_hand, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"UG" = ( +/obj/item/stack/rods, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"UQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"EE" = ( +"Vb" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"Vx" = ( +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"VM" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Wf" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"Wn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Wq" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/item/limb/hand/l_hand, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"GG" = ( -/obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ - desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; - name = "battered M41A pulse rifle Mk2" +"Xe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Xv" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"XG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/pmc, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"Ha" = ( +"Yb" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"YA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) -"Lk" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"NK" = ( +"YI" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"YP" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"Zb" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"PR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/bigredv2/outside/se) -"Qc" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_cl, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Zd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/office_complex) -"SW" = ( +"Zq" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Zv" = ( +/obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"XH" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"ZC" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, /area/bigredv2/outside/office_complex) (1,1,1) = {" -ac -ad -ao -aH -aH -aH -aH -bR -aH -aH -aH -aH -aH -aH -aH -bR -aH -eg -aH -cX -cX -cX -cX -cX -cX +Yb +sS +Wf +Dn +Dn +Dn +Dn +LP +Dn +Dn +Dn +Dn +Dn +Dn +Dn +LP +Dn +UG +Dn +rT +rT +rT +rT +rT +rT "} (2,1,1) = {" -ac -ad -ah +Yb +sS +OF ap ap ap @@ -1675,167 +1263,167 @@ ax aY ap ap -cX -cX -cX +rT +rT +rT ap "} (3,1,1) = {" -ac -ad -ah -ap -aI -aR -aJ -bg -bg -bC -ap -bL -bL -bV -ap -bZ -ed -cq -ca -cH -ap -cX -cX -cX +Yb +sS +OF +ap +xh +GF +yw +Ge +Ge +Mi +ap +EY +EY +sD +ap +QN +gr +ka +SW +mB +ap +rT +rT +rT ap "} (4,1,1) = {" -ac -ad -au +Yb +sS +CG as -aJ -aR -aZ -bh -aJ -cc -cd -bd -cz -cC -ap -aS -cj -ck -SW -cI +yw +GF +Cx +lY +yw +sH +rv +Dz +QO +LJ +ap +fP +wL +rY +Ik +CK as -cX -cX -cX +rT +rT +rT ap "} (5,1,1) = {" -ac -ad -ah +Yb +sS +OF as -aK -bB -aZ -bW -aS -bd -ck -bM -cB -cJ -ap -ea -ee -cs -ek -cm +yK +BV +Cx +Mt +fP +Dz +rY +fb +yr +zE +ap +Xv +xI +hA +ig +Ji cR -cY -cX -cX +Ej +rT +rT ap "} (6,1,1) = {" -ac -ad -ah +Yb +sS +OF as aL -aR -bd -bi -bd -bD -ap -dU -aZ -aS -cQ -eb -cl -eh -aS -ed +GF +Dz +TF +Dz +pH +ap +Qs +Cx +fP +xz +hn +uK +hI +fP +gr as -cX -cX -cX +rT +rT +rT ap "} (7,1,1) = {" -ac -ad -ah -ap -aJ -aR -bO -aS -bw -bE -by -bd -aS -cK -aS -ec -ef -aS -cr -cr -ap -cZ -cX -aB +Yb +sS +OF +ap +yw +GF +iN +fP +wT +ir +td +Dz +fP +Nf +fP +qn +fr +fP +ki +ki +ap +Wn +rT +YI ap "} (8,1,1) = {" -ac -ad -ah +Yb +sS +OF ap -aM -aS -aF -aS -bd -bd +VM +fP +jM +fP +Dz +Dz ap -by -by +td +td ap -aS -ce +fP +Ky ap ap -by -by +td +td ap da ap @@ -1843,38 +1431,38 @@ ap ap "} (9,1,1) = {" -ac -ad -ah -ap -ap -ap -ci -dU -dV -dD -bI -ay -bd -bX -ay -cf -cn -ek -ek -cn -cS -db -df -dl -dr +Yb +sS +OF +ap +ap +ap +Gy +Qs +js +NV +fT +zr +Dz +oC +zr +ux +mj +ig +ig +mj +Ud +zN +YA +jq +GP "} (10,1,1) = {" -ac -an -ah -cX -cX +Yb +xZ +OF +rT +rT ap aC bj @@ -1892,260 +1480,260 @@ cD cL cT dc -ar -bu -ar +jK +eQ +jK "} (11,1,1) = {" -aH -aH -cX -cX -cX -by +Dn +Dn +rT +rT +rT +td aN -XH -AB -yS -aV -bv -dN -dP -aV -id -yS -yS +Nz +et +ME +QF +ng +Pk +Md +QF +Fr +ME +ME cE cM cM cM dg -bI -bI +fT +fT "} (12,1,1) = {" -cX +rT ap ap ap aC aT aO -bl -dz -bc -bc -dB -bc -bc -bc -bc -Bu -dF -oF -cu -id -yS +EV +Iz +Ak +Ak +Ue +Ak +Ak +Ak +Ak +LA +HS +nC +Kh +Fr +ME cE dm -dW +Te "} (13,1,1) = {" -cX +rT ap -av -ar +nv +jK aN -aU -bv -bm -dA -fv -bp -bp -bp -bp -Qc -bp -fv -dG -si -GG -bc -dz -bc +Zq +ng +sz +Nt +kB +zy +zy +zy +zy +lo +zy +kB +GO +Hf +jv +Ak +Iz +Ak dn -dt +JB "} (14,1,1) = {" -ae -aq -aw +eo +LH +Zd aC aO -aV -aV -bm -yS -Lk -id -yS -cu -yS -yS -yS -yS -dH -bv -bv -bv -dT +QF +QF +sz +ME +mT +Fr +ME +Kh +ME +ME +ME +ME +wF +ng +ng +ng +PS cF do ds "} (15,1,1) = {" -cX -ar -bt +rT +jK +Sg aD -aP -aW -uL -bn -rF -jx -dE -dE -bc -bc -bc -bc -bc -cw -bc -bc -bc -bc +sx +hj +tr +ZC +AU +fs +Ta +Ta +Ak +Ak +Ak +Ak +Ak +Gq +Ak +Ak +Ak +Ak dh -dp -du +Ke +wB "} (16,1,1) = {" -aA +HL ba -bb +Xe aE aQ -aV -aV -vw -EE -dA -bp -bp -bp -bp -dQ -bp -bp -bm -dR -dI -dS -NK +QF +QF +Pm +Wq +Nt +zy +zy +zy +zy +py +zy +zy +sz +pB +Jg +Zb +vf cE dm -dv +wW "} (17,1,1) = {" -aA +HL ap -az -bu +rd +eQ aN -bv -dL -bm -yS -yS -yS -cu -hN -yS -yS -yS -oF -cv -dz -dJ -dJ -dJ -dJ +ng +NI +sz +ME +ME +ME +Kh +TS +ME +ME +ME +nC +sp +Iz +xi +xi +xi +xi dn -dw +Ub "} (18,1,1) = {" -aA +HL ap ap ap aE aX aQ -bo -bc -bc -uC -bc -sR -bc -bc -bc -bc -cx -dA -fG -fv -bp +NU +Ak +Ak +tU +Ak +LQ +Ak +Ak +Ak +Ak +lH +Nt +pr +kB +zy cF do -dq +rb "} (19,1,1) = {" -ab -al -aG -aG -aG -dY +Sn +Vb +Ci +Ci +Ci +Ir aN -fv -rK -bp -aV -dM -bv -bv -aV -fv -dA -bp +kB +ld +zy +QF +Oz +ng +ng +QF +kB +Nt +zy cF cN cN cN di -Ha -dq +IN +rb "} (20,1,1) = {" ai -at -aA -dX -dX -dZ +KR +HL +CV +CV +iA aE bq bA @@ -2162,142 +1750,142 @@ cG cO cU dd -dj -Ha -PR +yW +IN +gL "} (21,1,1) = {" -aj -ag -aA -aG -dX -dZ -dO -br -dC -dU -aF -ar -bS -bX -bd -ar -bX -ci -bd -dK -bd -aS -dj -Ha -PR +uP +tW +HL +Ci +CV +iA +Ct +He +wz +Qs +jM +jK +hq +oC +Dz +jK +oC +Gy +Dz +KX +Dz +fP +yW +IN +gL "} (22,1,1) = {" -ak -ak -aG -aG -dX -ap -by -ap -aS -ap -bd -bP -bT -by -dU -bd -ap -cy -aS -bE -dU -aS -by -Ha -PR +lK +lK +Ci +Ci +CV +ap +td +ap +fP +ap +Dz +zx +tk +td +Qs +Dz +ap +Zv +fP +ir +Qs +fP +td +IN +gL "} (23,1,1) = {" -al -al -aG -aG -aG +Vb +Vb +Ci +Ci +Ci ap bQ -aS +fP bQ bH -aF +jM bQ bU ap -bE -cg +ir +pt ap -ei -aS -cP -bE -bd +DJ +fP +Sv +ir +Dz dk -Ha -dq +IN +rb "} (24,1,1) = {" -am -ag -aA -aG -aG +Eq +tW +HL +Ci +Ci bN bf bs -cb -ap -by -aS -aS -ap -cV -ch -co -cA -bd -el -em -cA +mz +ap +td +fP +fP +ap +AX +FK +Mf +UQ +Dz +hd +eG +UQ be -Ha -dq +IN +rb "} (25,1,1) = {" ai -at -aA -aG -bx +KR +HL +Ci +qf ap ap ap ap ap bK -aS +fP be ap -bY -aS -cp -aS -qX -cA -cW -de -ap -PR -dx +Vx +fP +ji +fP +XG +UQ +yY +pG +ap +gL +YP "} diff --git a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm index 104546cbd8..d191e7b680 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_extratunnel.dmm @@ -1,76 +1,49 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) "b" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "d" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg2" - }, +/turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/lambda/virology) "e" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged3" - }, +/turf/open/floor/bluegrid/damaged3, /area/bigredv2/caves/lambda/virology) "f" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/caves/lambda/virology) "g" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/north, /area/bigredv2/caves/lambda/virology) "h" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) "i" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "j" = ( -/turf/open/floor/bluegrid{ - icon_state = "damaged5" - }, +/turf/open/floor/bluegrid/damaged5, /area/bigredv2/caves/lambda/virology) "k" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreencorners2/west, /area/bigredv2/caves/lambda/virology) "l" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "m" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, +/turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_lambda) "n" = ( /turf/closed/wall/solaris/reinforced, @@ -81,72 +54,45 @@ dir = 1; pixel_y = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "p" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/caves/lambda/virology) "q" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/microwave, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/bigredv2/caves/lambda/virology) "r" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) "w" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "F" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) "H" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_3" - }, +/turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_lambda) "I" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/mars_cave/mars_cave_12, /area/bigredv2/caves_lambda) "K" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, +/turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) "O" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, +/turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_lambda) "P" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "X" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, +/turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_lambda) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm index d7710b7a0b..8bf2e282de 100644 --- a/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm +++ b/maps/map_files/BigRed/standalone/lambda-cave_mushroom.dmm @@ -1,23 +1,17 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "b" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) "c" = ( /obj/effect/glowshroom, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) "g" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm index 8dc12acf8d..47964ff5ea 100644 --- a/maps/map_files/BigRed/standalone/lambda-graveyard.dmm +++ b/maps/map_files/BigRed/standalone/lambda-graveyard.dmm @@ -3,33 +3,23 @@ /turf/open/mars, /area/bigredv2/outside/se) "e" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "f" = ( /obj/item/stool, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/se) "g" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/se) "h" = ( /obj/structure/flora/bush/ausbushes{ cut_level = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/se) "i" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) "j" = ( /obj/item/trash/cigbutt{ @@ -50,19 +40,13 @@ /turf/open/mars, /area/bigredv2/outside/se) "l" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, +/turf/open/mars/mars_dirt_8, /area/bigredv2/outside/se) "m" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/se) "n" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, +/turf/open/mars/mars_dirt_9, /area/bigredv2/outside/se) "o" = ( /turf/closed/wall/solaris/rock, diff --git a/maps/map_files/BigRed/standalone/medbay-passage.dmm b/maps/map_files/BigRed/standalone/medbay-passage.dmm index d5b7db11d8..9dc1327ab6 100644 --- a/maps/map_files/BigRed/standalone/medbay-passage.dmm +++ b/maps/map_files/BigRed/standalone/medbay-passage.dmm @@ -4,59 +4,36 @@ /area/template_noop) "c" = ( /obj/structure/sign/safety/medical{ - pixel_x = 0; pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "d" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "e" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "f" = ( /obj/structure/sign/safety/medical{ - pixel_x = 0; pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "h" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "i" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "l" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "m" = ( /obj/effect/decal/cleanable/dirt, @@ -65,20 +42,14 @@ dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "n" = ( /obj/structure/stairs/perspective{ dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "w" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -86,10 +57,7 @@ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) "R" = ( /turf/closed/wall/solaris/reinforced, @@ -99,24 +67,17 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Operations" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "T" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/admin_building) "X" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) (1,1,1) = {" diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm index ae681377cb..ba25d610fd 100644 --- a/maps/map_files/BigRed/standalone/medbay-v3.dmm +++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm @@ -2,893 +2,425 @@ "aa" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/medical) -"ab" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/medical) "ac" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"ad" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/medical) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/bigredv2/outside/medical) "af" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/medical) -"ag" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"ah" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ai" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) "aj" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"ak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, -/area/bigredv2/outside/medical) -"al" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"am" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"an" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, -/area/bigredv2/outside/medical) -"ao" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, -/area/bigredv2/outside/medical) "ap" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"aq" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/device/healthanalyzer, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"ar" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"as" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump, -/obj/item/device/autopsy_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +"co" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"at" = ( -/turf/open/floor{ - icon_state = "dark" - }, +"di" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"au" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, +"fN" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"av" = ( -/obj/structure/morgue, -/turf/open/floor{ - icon_state = "dark" - }, +"fO" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aw" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" +"fT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/outside/medical) -"ax" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, -/area/bigredv2/outside/medical) -"ay" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/chips, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"az" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, -/area/bigredv2/outside/medical) -"aA" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"gi" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) -"aB" = ( -/obj/structure/bed/roller, +"gm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"aC" = ( -/obj/structure/bed/chair/office/light, +"go" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"aD" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +"gz" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"gG" = ( +/obj/structure/bed, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aE" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/storage/box/beakers, +"gR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/bigredv2/outside/medical) -"aF" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"aG" = ( -/obj/structure/machinery/optable, +"gU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"aH" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"aI" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aJ" = ( -/obj/item/device/defibrillator, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"aK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/item/stack/sheet/metal{ - amount = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aL" = ( +"gX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" +"hh" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"aN" = ( +"hs" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"hv" = ( /obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"aO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"hA" = ( +/obj/structure/surface/table, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"aP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" +"hB" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/area/bigredv2/outside/medical) -"aQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/bigredv2/outside/medical) -"aR" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"aS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"aT" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/medical) -"aU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/bigredv2/outside/medical) -"aV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aX" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"hQ" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/item/reagent_container/food/snacks/margheritaslice, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"aY" = ( +"hU" = ( +/obj/structure/bed/chair, /obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"aZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"hX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"ba" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" +"il" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bb" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" +"iD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/medical) -"bc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"bd" = ( +"iS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/bigredv2/outside/medical) -"bg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/bigredv2/outside/medical) -"bh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"bi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/bigredv2/outside/medical) -"bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"bl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bm" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"jb" = ( +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"bn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" +"jg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/bigredv2/outside/medical) -"bo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Medical Clinic" }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"bp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bq" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"br" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/medical) -"bs" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"js" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"bt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, +"jE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/obj/item/tool/extinguisher, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" +"jI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"bv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"jQ" = ( +/obj/structure/machinery/light, +/obj/item/tool/surgery/cautery, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"bw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" +"kn" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bx" = ( -/obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"kH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"by" = ( -/obj/effect/decal/cleanable/dirt, +"kR" = ( /obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bz" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bA" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bB" = ( +"kZ" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"bE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bF" = ( -/obj/structure/machinery/camera/autoname{ - network = list("interrogation") - }, +"la" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/bigredv2/outside/medical) -"bG" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"bH" = ( -/obj/effect/decal/cleanable/dirt, +"lk" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"bI" = ( -/obj/item/shard, -/obj/item/frame/table, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/bigredv2/outside/medical) -"bJ" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bK" = ( -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"bL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"lD" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"bM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"bN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"lP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"bO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"lQ" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) -"bP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"lS" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bQ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"lZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"bR" = ( +"mp" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/medical) -"bS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Scanner Room" - }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/light{ + dir = 4 }, -/area/bigredv2/outside/medical) -"bT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"bV" = ( +"mu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"bW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, +"nt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"bX" = ( +"ny" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"bY" = ( +"nB" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"nC" = ( +/obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bZ" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"ca" = ( -/obj/structure/window_frame/solaris, -/obj/item/shard, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"cb" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"nG" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cc" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"nK" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic CMO's Office" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"cd" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"ce" = ( -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/bigredv2/outside/medical) -"cf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"cg" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "platingdmg1" + name = "\improper Medical Clinic Scanner Room" }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ch" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"nM" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"ci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" +"nN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/bigredv2/outside/medical) -"cj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"ck" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/cable_coil{ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"cl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" +"od" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"cm" = ( +"og" = ( +/obj/structure/bed/chair, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"ol" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"cn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"co" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, +"oq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"cp" = ( -/obj/structure/surface/table/reinforced, +"os" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"cq" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" +"oE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"cr" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"oQ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cs" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"oX" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ct" = ( +"pR" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"pV" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cv" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"pY" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cw" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"qd" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/obj/item/shard, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"qV" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ +"rj" = ( +/obj/structure/sink{ dir = 4; - icon_state = "whitegreen" + icon_state = "sink"; + pixel_x = 11 }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"rm" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"ro" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"rv" = ( +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cz" = ( +"rD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 10 }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"rG" = ( /obj/item/shard, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"cA" = ( +"sc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -896,80 +428,74 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cB" = ( +"sA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +"sC" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sJ" = ( +/obj/item/reagent_container/pill/happy, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"sQ" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"sZ" = ( +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tl" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, +/obj/item/storage/box/beakers, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"tn" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"cE" = ( +"tZ" = ( +/obj/item/clothing/glasses/meson, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" +"uf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" +"ur" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cI" = ( -/obj/effect/decal/cleanable/blood, +"uv" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"uw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -977,25 +503,27 @@ amount = 1; icon_state = "coil2" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"vg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"cJ" = ( +"vr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"vA" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"cK" = ( +"vJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -1006,1065 +534,912 @@ icon_state = "coil2" }, /obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/bigredv2/outside/medical) -"cL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"cM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" +"vL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic" }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cN" = ( +"vT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/structure/machinery/light{ + dir = 1 }, -/area/bigredv2/outside/medical) -"cQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"cR" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"vY" = ( +/obj/item/shard, +/obj/item/frame/table, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"cS" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"wE" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"cT" = ( +"wH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cU" = ( +"wK" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/obj/item/reagent_container/food/snacks/margheritaslice, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"wZ" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cW" = ( +"xf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +"xr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cY" = ( +"xt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"xH" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"db" = ( +"xS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"dc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"xT" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dd" = ( -/obj/item/stack/rods, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"xU" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"df" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkish" +"yn" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"dg" = ( -/turf/open/floor{ - icon_state = "darkish" - }, +"yv" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"dh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "platingdmg1" +"yw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/bigredv2/outside/medical) -"di" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) -"dj" = ( -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dk" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" +"yy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dl" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "darkish" - }, +"yF" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"dm" = ( +"yH" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"dn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"yI" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"do" = ( +"yN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"dp" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/bigredv2/outside/medical) -"dq" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" + dir = 10 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dr" = ( +"yW" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ds" = ( +"yZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dt" = ( +"zQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = 30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, -/area/bigredv2/outside/medical) -"du" = ( /obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ap" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dv" = ( +"Av" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Bf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"Bo" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Bp" = ( +/obj/structure/bed/chair, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"BM" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"BO" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"BT" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"dw" = ( +"BY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/metal{ - amount = 1 +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ca" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/structure/bed/roller, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Cd" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"Ck" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 }, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"CK" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"CP" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dx" = ( +"Dh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"dy" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"dz" = ( +"DB" = ( /obj/structure/machinery/camera/autoname{ network = list("interrogation") }, /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, -/area/bigredv2/outside/medical) -"dA" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"dB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"EA" = ( +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"dC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"EP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dD" = ( -/obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +"EQ" = ( +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"dE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"ES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dF" = ( -/obj/effect/decal/cleanable/blood, +"ET" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"EY" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/shard, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"dH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Fb" = ( +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"dI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"Fn" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/obj/item/shard, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dL" = ( +"Ft" = ( /obj/item/stack/sheet/metal, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"dM" = ( +"FC" = ( /obj/item/clothing/gloves/latex, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dN" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"dP" = ( -/obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"FQ" = ( +/turf/open/floor/asteroidwarning, /area/bigredv2/outside/medical) -"dQ" = ( +"Gd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dR" = ( +"Go" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitegreenfull" +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Gr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"GB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"GH" = ( +/obj/structure/bed/chair, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"dS" = ( +"GK" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"dT" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"GR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"dU" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "platingdmg1" +"GT" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Hc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dV" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +"Hn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dW" = ( -/obj/structure/machinery/body_scanconsole, +"HO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dX" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"Iv" = ( +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"dY" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "darkish" +"IP" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dZ" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +"IX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ea" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Jm" = ( +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) -"eb" = ( -/obj/structure/machinery/medical_pod/sleeper, +"Jr" = ( +/obj/item/device/defibrillator, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"JC" = ( +/obj/item/clothing/mask/breath/medical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ec" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"JV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/warnwhite/north, /area/bigredv2/outside/medical) -"ed" = ( +"JX" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"JZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, +/obj/item/shard, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"Kh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"KH" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"KM" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/frame/table, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ee" = ( +"KV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor{ - icon_state = "white" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"ef" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 +"Lb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"Ld" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Le" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"Lj" = ( +/obj/structure/bed/roller, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Lp" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"eg" = ( -/obj/item/device/healthanalyzer, +"LY" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/medical) +"Ma" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Mc" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"Mf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "wall_thermite" - }, +"Mg" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ei" = ( -/obj/structure/machinery/sleep_console, +"Mk" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ej" = ( +"Mr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"ek" = ( +"MA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"MB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"el" = ( -/obj/item/clothing/glasses/meson, +"MO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"em" = ( -/obj/item/reagent_container/pill/happy, +"Nm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"ND" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"NL" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"NO" = ( +/obj/item/reagent_container/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/open/floor/white, +/area/bigredv2/outside/medical) +"Of" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Og" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"Om" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"en" = ( +"Ot" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ou" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" + dir = 1; + name = "\improper Medical Clinic CMO's Office" }, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Ox" = ( +/obj/structure/curtain/medical, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Oy" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"OK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"eo" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 +"OL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"ON" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"ep" = ( -/obj/structure/bed/chair, +"OP" = ( /obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"OU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"OY" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eq" = ( +"Pi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whitegreenfull" +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"Pv" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"PH" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Qc" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"Qf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"er" = ( -/obj/structure/bed/chair, -/obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" +"Qn" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"QF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"es" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +"QT" = ( +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"et" = ( -/obj/item/reagent_container/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/open/floor{ - icon_state = "white" - }, +"QY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"eu" = ( +"Re" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Ry" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"ev" = ( -/obj/structure/bed/chair, +"RR" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Sm" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ew" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" +"SI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ex" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, +"SZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"To" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ey" = ( +"Tr" = ( /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ez" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +"TB" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"eA" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor{ - icon_state = "platingdmg1" +"TU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"TX" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eB" = ( +"TY" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/item/shard, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"eC" = ( +"TZ" = ( /obj/structure/bed/chair{ dir = 4 }, -/obj/item/trash/kepler, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/bigredv2/outside/medical) -"eD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"eE" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, -/area/bigredv2/outside/medical) -"eF" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"eG" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" - }, +"Uc" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"eH" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor{ - icon_state = "white" - }, +"Ud" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"eI" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"Ue" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"eJ" = ( +"Uo" = ( +/obj/structure/bed, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"eK" = ( +"Us" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"eL" = ( -/obj/structure/machinery/light{ +"Uz" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"eM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" +"UI" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/item/trash/kepler, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"eN" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor{ - icon_state = "white" - }, +"UJ" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/tramadol, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eO" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +"UK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"eP" = ( +"UM" = ( +/obj/structure/machinery/chem_master, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"eQ" = ( +"UV" = ( +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Va" = ( /obj/structure/surface/table, /obj/item/trash/burger, /obj/effect/decal/cleanable/dirt, /obj/item/frame/table, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/bigredv2/outside/medical) -"eR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) -"eS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreenfull" +"Vu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eT" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"eU" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +"VB" = ( +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"eV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" - }, -/turf/open/floor{ - icon_state = "white" - }, +"VS" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eW" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +"VY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"eX" = ( +"Wc" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" + dir = 4 }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eY" = ( -/obj/structure/bed, +"Wj" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"Wp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"eZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ +"WK" = ( +/obj/structure/sink{ dir = 8; - icon_state = "damaged5" + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 }, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"WL" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"fa" = ( +"WN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper Medical Clinic Operating Theatre" }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"fb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/bigredv2/outside/medical) -"fc" = ( +"WP" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/bigredv2/outside/medical) -"fd" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/bigredv2/outside/medical) -"fe" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ff" = ( -/obj/item/clothing/mask/breath/medical, +"WQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/bigredv2/outside/medical) -"fg" = ( -/obj/item/stack/sheet/metal, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fh" = ( +"WW" = ( /obj/structure/surface/table/reinforced, /obj/item/trash/buritto, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"fj" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - dir = 8; - icon_state = "damaged4" - }, +"Xg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"fk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"Xj" = ( +/obj/structure/bed/chair{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"fl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Xq" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/bigredv2/outside/c) -"fn" = ( +"Xs" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Xt" = ( +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Xx" = ( /obj/structure/bed, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fo" = ( -/obj/structure/machinery/light, -/obj/item/tool/surgery/cautery, -/turf/open/floor{ - dir = 5; - icon_state = "whitebluefull" +"Xy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" }, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"fp" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +"Yb" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"YL" = ( +/obj/item/shard, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"YM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"YX" = ( +/obj/structure/bed/roller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Zd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"fq" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "platingdmg1" +"Zp" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Zy" = ( +/obj/item/shard, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"fr" = ( +"Zz" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"fs" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"ZC" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"ZI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"hn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"ZM" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"Xh" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic Labs"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged2" - }, +"ZN" = ( +/obj/structure/bed, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) (1,1,1) = {" @@ -2072,18 +1447,18 @@ aa aa aa aa -ab -bx -aU +lQ +js +QT aa aa aa aa -ah -dH +wZ +vr aa -bB -ab +TX +lQ aa aa aa @@ -2093,483 +1468,483 @@ aa aa aa aa -eT +gz "} (2,1,1) = {" aa -ag -aK -aE -ey -ai -ai -ai -aa -eQ -cS -aU -cN -bJ -dy -aa -df -dl +Og +kH +tl +Lb +BO +BO +BO +aa +Va +UJ +QT +sc +Lj +GT +aa +lZ +hh ap -dD -dS -ef -es -eE +tn +GK +WK +Iv +Qc aa -eT +gz "} (3,1,1) = {" aa -Xh -aM -aU -ai -aT -bR -bn -ai -aU -cx -bG -dn -bu -dz -aa -df -df +Le +UV +QT +BO +Yb +QY +EP +BO +QT +xS +CP +ET +Ld +DB +aa +lZ +lZ ap -ew -eK -aL -eN -es +TB +IX +Re +wK +Iv aa -eT +gz "} (4,1,1) = {" aa -bk -aO -aZ -bj -by -bH -by +Tr +UK +Hn +Gd +Fn +vg +Fn co -cz -cT -bT -do -du -aT -aM -dg -dY +JZ +Zz +Mf +uf +Om +Yb +UV +VB +Zy ac -ex -aL -eH -et -fo +KH +Re +hQ +NO +jQ aa -eT +gz "} (5,1,1) = {" -ab -ao -aQ -bb -bl -bl -bT -bT -cp -bL -cW -bu -aT -bs -dA -bK -dT -dZ +lQ +UM +mu +oQ +Mk +Mk +Mf +Mf +nC +gm +xf +Ld +Yb +Ma +nM +BM +Bp +GH aj -aA -ax -eW -ff -es +hA +Fb +PH +JC +Iv aa -eT +gz "} (6,1,1) = {" -ab -aw -aR -aH -bm -bA -bB -cg -aa -bM -aM -dh -dj -dv -bJ -ab -dU -dZ +lQ +pV +QF +xH +kR +JX +TX +rv +aa +vT +UV +xr +YL +Av +Lj +lQ +kn +GH aj -ax -eL -eZ -fj -eG +Fb +EY +od +yv +ON aa -eT +gz "} (7,1,1) = {" -ai +BO aa -aS +Ot aj -ai -bB -bK +BO +TX +BM aa aa -cA -bX +MO +nt aa aa -bB -cl -ab +TX +xT +lQ aa aa -ax -bm +Fb +kR aa -fa +WN aa aa aa -eT +gz "} (8,1,1) = {" -ai -ax -aT -aN -ai -bm +BO +Fb +Yb +lk +BO +kR bV -br -ai -cB -by -ca -bB -aT -aT -bs -bZ -ai -ai -bG -ai -dE -bn -fp -aa -eT +OP +BO +KV +Fn +sQ +TX +Yb +Yb +Ma +pY +BO +BO +CP +BO +Wc +EP +Xq +aa +gz "} (9,1,1) = {" ac -ah -ai -bc -bn -ai -bZ -ch -cq -bW -bY -bT -bT -cw -dB -bn -bT -bT -ej -bT -eM -fb -fk -ci -aa -eT +wZ +BO +Wp +EP +BO +pY +zQ +Xs +OU +Kh +Mf +Mf +WP +TU +EP +Mf +Mf +Mr +Mf +wH +Ry +yw +Sm +aa +gz "} (10,1,1) = {" aj -az -aU -bc -bp -cl -ca -ci -cr -dx -cQ -aL -aL -bn -dc -dV -bZ -ea -dH -eA -ds -fc -fl -bu -ai -fm +ZN +QT +Wp +ES +xT +sQ +Sm +Ud +MA +TY +Re +Re +EP +Qf +WL +pY +GB +vr +hB +WQ +ny +Vu +Ld +BO +CK "} (11,1,1) = {" aj -al -aV -bd -bq -bC -bo -ck -bT -cV -bX +gG +To +yy +OY +il +vL +os +Mf +xt +nt aj -dp -bu -dx -dW +Ck +Ld +MA +Qn aa aj -ek +sA aa aa -ab -bB -dX -bu -eT +lQ +TX +Uc +Ld +gz "} (12,1,1) = {" -ad -aL -aM -dE -br -bG +jg +Re +UV +Wc +OP +CP ac -bs -cs -cC -bX +Ma +RR +Zd +nt aa aa -ax -dE +Fb +Wc aa aa -fs -dE -ai -ai -ai -aH -ai -bK -eT +Xt +Wc +BO +BO +BO +xH +BO +BM +gz "} (13,1,1) = {" -ae -ay -bT -bf -bs -bE -ai -cl -ai -cD -ci +JV +yH +Mf +Of +Ma +Go +BO +xT +BO +iD +Sm di -ai -aY -dx -eb -aa -ec -el -eB -ai -cs -bn -ai -aa -eT +BO +rG +MA +fO +aa +Ap +tZ +jE +BO +RR +EP +BO +aa +gz "} (14,1,1) = {" af -aI -aB -aP -bu -ai -ai -aT -ct -cE -bc -dj -bm -bs -dC -ei -aa -ai -dE -bu -aT -fd -bc -fs -aa -eT +KM +YX +Ca +Ld +BO +BO +Yb +pR +nN +Wp +YL +kR +Ma +NL +BT +aa +BO +Wc +Ld +Yb +sJ +Wp +Xt +aa +gz "} (15,1,1) = {" af ac -aX +fN aj -aT -bK -cb -aT -bu -dG -bm -bB -aH -ax -dE -aM -ab -eg -em -cl -eO -aT -ds -cg -aa -eT +Yb +BM +yF +Yb +Ld +SI +kR +TX +xH +Fb +Wc +UV +lQ +jb +rm +xT +Mg +Yb +WQ +rv +aa +gz "} (16,1,1) = {" af -aq -bI -bg -bu -ai -bZ -bm -aM -dE -aT -dd -ax -bm -dF -fr -aQ -bu -ai -aQ -eP -bc -cs -ai -aa -eT +Pv +vY +VY +Ld +BO +pY +kR +UV +Wc +Yb +vA +Fb +kR +MB +lP +mu +Ld +BO +mu +gR +Wp +RR +BO +aa +gz "} (17,1,1) = {" af -aJ -aC -ak -bv -bN -cc -bu -cu -cH -ai -dk -aT -cs -dx -ax -aQ -aM -aU -eF -ai -fe -ai -ai -bK -eT +Jr +nG +EQ +yn +YM +Ou +Ld +Ue +OK +BO +VS +Yb +RR +MA +Fb +mu +UV +QT +Bo +BO +rj +BO +BO +BM +gz "} (18,1,1) = {" af -ar -aF -ba -bt -ai -ca -bu -cv -cI -aT -aa -aa -bK -dG -aM -ai +Cd +yI +jI +Xj +BO +sQ +Ld +sC +Uz +Yb +aa +aa +BM +SI +UV +BO ac -en +Hc aa aa aa -bs -bB -dv -eU +Ma +TX +Av +FQ "} (19,1,1) = {" af @@ -2577,104 +1952,104 @@ aa aa aa aa -ab -aa -aT -ai -cJ -aM -bs -dq -bG -ai -dL -bu -ai -ak -ai -az -ai -ai -dP -ab -hn +lQ +aa +Yb +BO +uw +UV +Ma +Lp +CP +BO +kZ +Ld +BO +EQ +BO +ZN +BO +BO +qV +lQ +LY "} (20,1,1) = {" af -as -aG -bi -bw -bO -ce -ai -bg -cK -cX -ai -bs -dw -dH -bn -aT -aM -bD -aL -aM -fg -fg -dP -aa -hn +Mc +ro +ro +ro +Bf +Jm +BO +VY +vJ +oq +BO +Ma +yW +vr +EP +Yb +UV +GR +Re +UV +Oy +Oy +qV +aa +LY "} (21,1,1) = {" af -at -ax -aU -ai -bP -cf -cm -bi -cL -cY -cs -bG -db -dI -aL -an -cj -ez -eI -az -eY -fn -fq -aa -hn +hs +nB +nB +nB +rD +fT +ol +Xg +oE +BY +RR +CP +yZ +Dh +Re +Us +SZ +wE +Ox +ZN +Uo +Xx +lS +aa +LY "} (22,1,1) = {" af -at -at -aM -bu -aT -ab -aT -bu -cN -aT -aQ -dr -an -cM -dM -bn +hs +nB +nB +nB +ZC +xU +Yb +Ld +sc +Yb +mu +ZI +Us +Gr +FC +EP aa -bu +Ld aa aa aa @@ -2685,112 +2060,112 @@ aa "} (23,1,1) = {" af -at -at -bh -bh -bQ -aa -cn -an -bP -cZ -dm -bY -bY -bf -aT -eu -ab -eo -br -ai -aM -eC -eR -eS +hs +nB +nB +nB +ZC +ac +BM +Us +yN +hv +Pi +Kh +Kh +Of +Yb +gX +lQ +IP +OP +BO +UV +UI +Zp +TZ aa "} (24,1,1) = {" af -au -au -au -au -bF -aa -ax -cx -cQ -aM -bj -ds -aL -dH -dN -ax -eh -ep -eJ -eX -eq -cd -eq -bY -eV +hs +nB +nB +nB +ZC +ac +Fb +xS +TY +UV +Gd +WQ +Re +vr +oX +Fb +gi +og +HO +iS +la +ZM +la +Kh +gU "} (25,1,1) = {" af -av -av -av -av -at -aa -bz -cy -cR -dd -cj -dt -cx -cU -dP -dX -bZ -er -aQ -ed -aL -aD -aL -dQ -am +hs +nB +nB +nB +ZC +ac +Wj +Ft +Nm +vA +SZ +mp +xS +lD +qV +Uc +pY +hU +mu +OL +Re +EA +Re +go +sZ "} (26,1,1) = {" af -at -at -at -at -at +hs +nB +nB +nB +uv aa ap ap -bS +nK ac aj aa -cF -dx -ai -bX -ca -ev -dR -ee -fh -eD +hX +MA +BO +nt +sQ +qd +ND +ur +WW +Xy ap ap aa diff --git a/maps/map_files/CORSAT/Corsat.dmm b/maps/map_files/CORSAT/Corsat.dmm index a0a3bb64d9..d3f429217f 100644 --- a/maps/map_files/CORSAT/Corsat.dmm +++ b/maps/map_files/CORSAT/Corsat.dmm @@ -29,29 +29,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aag" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aah" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "1" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"aai" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) "aaj" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/residential/east) @@ -62,12 +39,6 @@ /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/residential/east) -"aam" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) "aan" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar) @@ -90,65 +61,13 @@ /obj/structure/window/framed/corsat/hull/research, /turf/open/floor/plating, /area/corsat/gamma/sigmaremote) -"aas" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"aat" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/drill, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"aau" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"aav" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"aaw" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "aax" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/sigmaremote) -"aay" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/gamma/sigmaremote) "aaz" = ( /obj/structure/window/framed/corsat/research, /turf/open/floor/plating, /area/corsat/gamma/sigmaremote) -"aaA" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "2" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "aaB" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/bronze, @@ -156,44 +75,13 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aaC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/security) -"aaD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) "aaE" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/hangar/flightcontrol) -"aaF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "CORSAT Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/armory) "aaG" = ( /turf/open/floor/plating, /area/corsat/gamma/hangar) -"aaH" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) "aaI" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/plating, @@ -202,92 +90,14 @@ /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"aaK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, -/area/corsat/gamma/sigmaremote) -"aaL" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/corsat/gamma/sigmaremote) -"aaM" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaN" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaO" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaP" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaQ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "aaR" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"aaS" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaU" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaV" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aaW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "3" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "aaX" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/corsat/gamma/hangar) -"aaY" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "aaZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -335,76 +145,6 @@ "abi" = ( /turf/closed/wall/biodome, /area/corsat/gamma/hangar/flightcontrol) -"abj" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abk" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abl" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abm" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abn" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"abo" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abp" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abq" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "4" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "abr" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -431,55 +171,13 @@ /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"abw" = ( -/obj/structure/surface/rack, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) "abx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/corsat, /area/corsat/omega/control) -"aby" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "abA" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/security) -"abB" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abC" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "abD" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/east) @@ -513,15 +211,6 @@ /obj/item/tool/pen, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"abK" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "7" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "abL" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -546,18 +235,6 @@ "abP" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/researcher) -"abQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"abR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) "abS" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -572,45 +249,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"abU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"abV" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abX" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abY" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"abZ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"aca" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "acc" = ( /obj/structure/closet/cabinet, /turf/open/floor/wood, @@ -626,94 +264,12 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/foyer) -"ace" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"acf" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"acg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) "ach" = ( /obj/structure/bed, /obj/structure/machinery/light, /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aci" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"acj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"ack" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential/east) -"acl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"acm" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) "acn" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -726,48 +282,12 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"acp" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"acq" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "acr" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"acs" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"act" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) "acu" = ( /obj/structure/bookcase/manuals/research_and_development, /turf/open/floor/wood, @@ -782,34 +302,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"acw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"acx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"acy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "8" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "acz" = ( /obj/structure/coatrack, /turf/open/floor/wood, @@ -821,44 +313,9 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/foyer) -"acB" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"acC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/foyer) -"acD" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"acE" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/foyer) "acF" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar) -"acG" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) "acH" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/wood, @@ -870,23 +327,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"acJ" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "5" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"acK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) "acL" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -897,159 +337,22 @@ "acN" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/lounge) -"acO" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"acP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"acQ" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"acR" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"acS" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"acT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"acU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "6" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "acV" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/lounge) -"acW" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 1; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"acX" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "10" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "acY" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /obj/item/device/camera/oldcamera, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"acZ" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "11" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"ada" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "12" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "adb" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/checkpoint) -"adc" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) "add" = ( /turf/closed/wall/biodome, /area/corsat/sigma/cafe) -"ade" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"adf" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "13" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"adg" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"adh" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) "adi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, @@ -1062,23 +365,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"adk" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "14" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"adl" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential) "adm" = ( /obj/structure/bed/chair/wood/normal, /obj/structure/pipes/vents/pump{ @@ -1089,21 +375,6 @@ "adn" = ( /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"ado" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"adp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) "adq" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, @@ -1122,73 +393,17 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/cafe) -"adu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/security) "adv" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, /obj/item/trash/cigbutt, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"adw" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/weapon/gun/smg/mp5, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) "adx" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"ady" = ( -/obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/checkpoint) -"adz" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"adA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/checkpoint) -"adB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"adC" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - icon_state = "spiralwoodalt" - }, -/area/corsat/gamma/residential/lounge) "adD" = ( /obj/structure/coatrack, /turf/open/floor/wood, @@ -1207,27 +422,12 @@ /obj/item/folder/blue, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"adH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) "adI" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/cargo) "adJ" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/west) -"adK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) "adL" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -1245,21 +445,6 @@ "adN" = ( /turf/open/floor/wood, /area/corsat/sigma/cafe) -"adO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"adP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) "adQ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -1273,42 +458,9 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"adS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"adT" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"adU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) "adV" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/residential/researcher) -"adW" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar) "adX" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, @@ -1319,26 +471,9 @@ /obj/item/spacecash/c10, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"adZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, -/area/corsat/gamma/residential) -"aea" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential) "aeb" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar/cargo) -"aec" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) "aed" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails{ @@ -1356,13 +491,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aeg" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/gamma/residential/lounge) "aei" = ( /obj/structure/bed, /obj/structure/machinery/light{ @@ -1384,51 +512,18 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar/cargo) -"aem" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/gamma/residential) "aen" = ( /turf/open/mars, /area/corsat/sigma/biodome) "aeo" = ( /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"aep" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/residential/lounge) -"aeq" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/corsat/gamma/residential/lounge) "aer" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/residential/lounge) -"aes" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/arrivals) "aet" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/cargo) -"aeu" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) "aev" = ( /obj/structure/window/reinforced{ dir = 4; @@ -1440,108 +535,10 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/foyer) -"aew" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "15" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "aex" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/hangar/arrivals) -"aey" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/residential/lounge) -"aez" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"aeA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Cells"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/cells) -"aeB" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"aeC" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"aeD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/arrivals) -"aeE" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aeF" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aeG" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aeH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aeI" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar) -"aeJ" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aeL" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) "aeM" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/office) @@ -1549,66 +546,9 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/corsat/sigma/hangar) -"aeO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) -"aeP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/corsat/gamma/sigmaremote) -"aeQ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"aeR" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"aeS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"aeT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) "aeU" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar) -"aeV" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aeW" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential) "aeX" = ( /obj/structure/surface/table/woodentable, /obj/item/spacecash/c10, @@ -1617,41 +557,9 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"aeY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aeZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/airlock/south) "afa" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/cargo/disposal) -"afb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"afc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) "afd" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -1660,38 +568,9 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/hangar/office) -"aff" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"afg" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/foyer) -"afh" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "16" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "afi" = ( /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afj" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/corsat/gamma/residential/lounge) "afk" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, @@ -1700,105 +579,22 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afm" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afn" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afo" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) "afq" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afr" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/residential/lounge) -"afs" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aft" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afu" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "17" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "afv" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afx" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/corsat/gamma/residential/lounge) "afy" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/white, /obj/item/spacecash/c10, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"afz" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/north/id) -"afA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) "afB" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -1817,58 +613,9 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afE" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afG" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afH" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afI" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) "afJ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/arrivals) -"afK" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/hangar/office) "afL" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -1881,28 +628,6 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afN" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afP" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afQ" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afR" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/north) "afS" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -1915,118 +640,16 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"afU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "18" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"afV" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afW" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afX" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afY" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"afZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar) "aga" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/north/id) "agb" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/security) -"agc" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "19" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"agd" = ( -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"age" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/south/id) -"agf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/east) "agg" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) -"agh" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "20" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"agi" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "21" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) "agj" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/id) @@ -2036,479 +659,66 @@ /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"agl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"agm" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"agn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar) -"ago" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "22" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"agp" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "23" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"agq" = ( -/obj/structure/machinery/atm{ - pixel_x = -30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"agr" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "24" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"ags" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/security) -"agt" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"agu" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Laundry Unit" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"agv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"agw" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) "agx" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/hangar/checkpoint) -"agy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "25" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"agz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"agA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"agB" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "1" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"agC" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/north) "agD" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/south) -"agE" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "2" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"agF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/hallwaysouth) -"agG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south) -"agH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) "agI" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/residential/laundry) -"agJ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Airlock Control" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) "agK" = ( /turf/closed/wall/biodome, /area/corsat/gamma/cargo) "agL" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/cargo) -"agM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/residential) -"agN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"agO" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"agP" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "3" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"agQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"agR" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +"agU" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/engineering/core) +"agZ" = ( +/turf/closed/wall/r_wall/biodome, /area/corsat/omega/checkpoint) -"agS" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ +"ahn" = ( +/turf/closed/wall/biodome, +/area/corsat/omega/cargo) +"ahs" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/residential/lavatory) +"aht" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/gamma/engineering/atmos) +"ahv" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "purplewhite" + health = 80 }, -/area/corsat/gamma/sigmaremote) -"agT" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" +/obj/structure/window/reinforced{ + layer = 3.8 }, -/area/corsat/gamma/residential) -"agU" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/engineering/core) -"agV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/gamma/foyer) +"ahw" = ( +/turf/closed/wall/biodome, +/area/corsat/sigma/laundry) +"ahy" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/gamma/hangar/security) -"agW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/window/reinforced{ dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 + health = 80 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar) -"agX" = ( -/mob/living/simple_animal/hostile/carp{ - color = "orange"; - faction = "neutral"; - harm_intent_damage = 0; - melee_damage_lower = 0; - melee_damage_upper = 0 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"agY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"agZ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"aha" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "delta_gamma2"; - name = "Gamma Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"ahb" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "4" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - dir = 1; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"ahd" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"ahe" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "5" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahf" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"ahg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"ahh" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "6" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahi" = ( -/obj/structure/machinery/vending/shared_vending, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"ahj" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "7" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahk" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/sigmaremote) -"ahl" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"ahm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"ahn" = ( -/turf/closed/wall/biodome, -/area/corsat/omega/cargo) -"aho" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/checkpoint) -"ahp" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"ahq" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"ahr" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/north) -"ahs" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/residential/lavatory) -"aht" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/gamma/engineering/atmos) -"ahu" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"ahv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - layer = 3.8 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/gamma/foyer) -"ahw" = ( -/turf/closed/wall/biodome, -/area/corsat/sigma/laundry) -"ahx" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"ahy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/window/reinforced{ - layer = 3.8 +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/window/reinforced{ + layer = 3.8 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/hallwaysouth) @@ -2522,173 +732,16 @@ "ahB" = ( /turf/open/floor/wood, /area/corsat/gamma/administration) -"ahC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"ahD" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) "ahE" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/monorail/control) -"ahF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"ahG" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/airlock/south) -"ahH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHCargoW"; - name = "Checkpoint Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaHangarCargoC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"ahI" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "8" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"ahK" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "9" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"ahM" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/id) -"ahN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"ahO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"ahP" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/residential) "ahQ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/security) -"ahR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) "ahS" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/omega/cargo) -"ahT" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "10" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahU" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "11" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ahV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) "ahW" = ( /turf/open/floor/plating, /area/prison/hangar_storage/research/shuttle) @@ -2697,70 +750,16 @@ /obj/item/ashtray/bronze, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"ahY" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"ahZ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar) "aia" = ( /turf/closed/shuttle/ert{ icon_state = "wy22" }, /area/prison/hangar_storage/research/shuttle) -"aib" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) -"aic" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarN"; - name = "Checkpoint Control"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"aid" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) "aie" = ( /turf/closed/shuttle/ert{ icon_state = "wy4" }, /area/prison/hangar_storage/research/shuttle) -"aif" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "12" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"aig" = ( -/obj/structure/machinery/computer3, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) "aih" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/wood/normal{ @@ -2773,97 +772,11 @@ icon_state = "wy23" }, /area/prison/hangar_storage/research/shuttle) -"aij" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/prison/hangar_storage/research/shuttle) -"aik" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/prison/hangar_storage/research/shuttle) -"ail" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/west) -"aim" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) -"ain" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/prison/hangar_storage/research/shuttle) -"aio" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"aip" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) "aiq" = ( /turf/closed/shuttle/ert{ icon_state = "wy5" }, /area/prison/hangar_storage/research/shuttle) -"air" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "13" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ais" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "14" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ait" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"aiu" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) "aiv" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" @@ -2874,20 +787,6 @@ icon_state = "wy8" }, /area/prison/hangar_storage/research/shuttle) -"aix" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/prison/hangar_storage/research/shuttle) -"aiy" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "15" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "aiz" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; @@ -2902,15 +801,6 @@ "aiB" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hangar/security) -"aiC" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "16" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "aiD" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, @@ -2920,11 +810,6 @@ icon_state = "wy_rightengine" }, /area/prison/hangar_storage/research/shuttle) -"aiF" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/prison/hangar_storage/research/shuttle) "aiG" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -2947,195 +832,40 @@ /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, /area/corsat/sigma/hangar/checkpoint) -"aiK" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) "aiL" = ( /turf/closed/wall/biodome, /area/corsat/omega/offices) -"aiM" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "17" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"aiN" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "18" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "aiO" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south) -"aiP" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "19" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "aiQ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/omega/offices) -"aiR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/card, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"aiS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/gamma/administration) -"aiT" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/airlock/north) "aiU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/biodome) -"aiW" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aiX" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/north) -"aiY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"aiZ" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/gamma/hallwaysouth) "aja" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south/id) -"ajb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"ajc" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"ajd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"aje" = ( -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/sigma/south) "ajf" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/omega/security) -"ajg" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"ajh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"aji" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) "ajj" = ( /turf/closed/wall/biodome, /area/corsat/sigma/north) "ajk" = ( /turf/closed/wall/biodome, /area/corsat/sigma/cargo) -"ajl" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "20" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "ajm" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/airlock/south) -"ajn" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/south) "ajo" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/cargo) -"ajp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/control) "ajq" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/biodome) @@ -3143,129 +873,16 @@ /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/laundry) -"ajs" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"ajt" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aju" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"ajv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"ajw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"ajx" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) "ajy" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/laundry) -"ajz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/north) -"ajA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/checkpoint) "ajB" = ( /turf/closed/wall/biodome, /area/corsat/sigma/lavatory) -"ajC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) "ajD" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hangar/monorail/control) -"ajE" = ( -/obj/structure/curtain, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"ajF" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "21" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ajG" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/east) -"ajH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"ajI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"ajJ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"ajK" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) "ajL" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -3275,75 +892,9 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/checkpoint) -"ajM" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"ajN" = ( -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/control) -"ajO" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "22" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"ajP" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_y = -25; - use_power = 0 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"ajQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"ajR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/control) -"ajS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"ajT" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +"ajT" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, /turf/open/floor/plating, /area/corsat/sigma/hangar) @@ -3353,58 +904,13 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar) -"ajV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"ajW" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "23" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "ajX" = ( /turf/closed/wall/biodome, /area/corsat/sigma/south/complex) -"ajY" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "24" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) "ajZ" = ( /obj/structure/foamed_metal, /turf/open/floor/corsat, /area/corsat/gamma/hangar) -"aka" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ - index = "25" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/sigma/south/complex/teleporter) -"akb" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) "akc" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -3415,44 +921,6 @@ /obj/structure/window/framed/corsat/research, /turf/open/floor/plating, /area/corsat/sigma/south/complex) -"ake" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"akf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"akg" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"akh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) "aki" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -3460,13 +928,6 @@ "akj" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/monorail) -"akk" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) "akl" = ( /turf/closed/wall/biodome, /area/corsat/sigma/dorms) @@ -3476,73 +937,15 @@ }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"akn" = ( -/obj/structure/stairs, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"ako" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"akp" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/arrivals) "akq" = ( /turf/closed/wall/biodome, /area/corsat/sigma/airlock/south) -"akr" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aks" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) "akt" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/rnr/library) -"aku" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) "akv" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/complex) -"akw" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"akx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/control) "aky" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -3553,179 +956,15 @@ "akB" = ( /turf/closed/wall/biodome, /area/corsat/theta/airlock/east) -"akC" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"akD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"akE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"akG" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"akH" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential) -"akI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Class Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"akJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"akK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"akL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"akM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"akN" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"akP" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/tool/stamp/hos, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"akQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"akR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, -/area/corsat/gamma/residential) "akS" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"akT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/morgue) -"akU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"akV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"akW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) "akX" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/blue, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"akY" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) -"akZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/monorail/control) "ala" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -3737,15 +976,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"alc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) "ald" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/residential) @@ -3754,104 +984,11 @@ /obj/item/device/camera/oldcamera, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"alh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"ali" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"alj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"alk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"all" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"alp" = ( -/obj/structure/machinery/door_control{ - id = "GammaAdmin"; - name = "Security Shutters"; - pixel_x = 24; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) "alr" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"als" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"alt" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/residential) -"alu" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"alv" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) "alw" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/dorms) @@ -3862,82 +999,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"alz" = ( -/obj/structure/machinery/computer/teleporter_console/corsat{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"alA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/airlock/north) -"alB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) -"alC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"alD" = ( -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"alE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"alF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"alG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/sigma/dorms) "alH" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -3951,70 +1012,18 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/rnr/bar) -"alL" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"alM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) "alN" = ( /obj/structure/surface/table/woodentable, /obj/item/spacecash/c10, /obj/item/toy/deck, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"alO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"alP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"alQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) "alR" = ( /obj/structure/bed, /obj/item/folder/yellow, /obj/item/bedsheet/brown, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"alS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/corsat/gamma/sigmaremote) "alU" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/item/device/camera, @@ -4029,79 +1038,6 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar/security) -"alW" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Cargo Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Cargo Desk"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo/lobby) -"alX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/hangar) -"alY" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"alZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"ama" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/dorms) -"amb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/residential) -"amc" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"amd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/sigma/dorms) "ame" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/glass, @@ -4110,46 +1046,6 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"amf" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"amg" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"amh" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/dorms) -"ami" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"amj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/monorail/control) "amk" = ( /turf/open/floor/wood, /area/corsat/sigma/dorms) @@ -4159,12 +1055,6 @@ /obj/item/trash/chips, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"amm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/dorms) "amn" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, @@ -4176,17 +1066,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"amp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) "amq" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -4224,23 +1103,6 @@ /obj/structure/closet/cabinet, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"amx" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"amy" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"amz" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) "amA" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails, @@ -4272,12 +1134,6 @@ /obj/item/trash/chips, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"amG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) "amH" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -4295,11 +1151,6 @@ /obj/item/ashtray/bronze, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"amK" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/dorms) "amL" = ( /obj/structure/surface/table/woodentable, /obj/item/pizzabox/margherita, @@ -4313,334 +1164,45 @@ "amN" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/checkpoint) -"amO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/residential) "amP" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"amQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +"anf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"ang" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo/disposal) +"ank" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/corsat/sigma/dorms) -"amR" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"amS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"amT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) -"amU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"amV" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"amW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"amX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Disposals"; - req_one_access_txt = "102;101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo/disposal) -"amY" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"amZ" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Engineering Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Engineering Desk"; - req_access_txt = "13" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/lobby) -"ana" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"anb" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"anc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"and" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"ane" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"anf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"ang" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo/disposal) -"anh" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"ani" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"anj" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/hangar) -"ank" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"anl" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/sigma/dorms) -"anm" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/sigma/dorms) -"ann" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo/lobby) -"ano" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"anp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/monorail/control) -"anq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"anr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"ans" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"ann" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo/lobby) +"ans" = ( /obj/structure/surface/table/woodentable, /obj/item/device/camera, /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"ant" = ( -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"anu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"anv" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/airlock/east) "anw" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hallwaysouth) -"anx" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, -/area/corsat/sigma/south/complex) -"any" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) "anz" = ( /obj/structure/bookcase/manuals/research_and_development, /obj/item/folder/red, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"anA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/omega/hallways) "anB" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/yellow, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"anC" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastW"; - name = "Gamma East Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/control) "anD" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -4648,93 +1210,15 @@ "anE" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/security) -"anF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/south/id) -"anG" = ( -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"anH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"anI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"anJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail) -"anK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) "anL" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/alien/weeds/node, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"anM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"anN" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"anO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/containment) "anP" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"anQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/containment) "anR" = ( /turf/open/floor/almayer/research/containment/corner1, /area/corsat/inaccessible) @@ -4744,48 +1228,6 @@ "anT" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/airlocknorth/id) -"anU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/south) -"anV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"anW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"anX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/gamma/residential) -"anY" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/id) -"anZ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) "aoa" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -4796,81 +1238,15 @@ }, /turf/open/floor/plating, /area/corsat/omega/airlocknorth/id) -"aob" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) "aoc" = ( /turf/closed/wall/biodome, /area/corsat/omega/complex) -"aod" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) "aoe" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west/id) -"aof" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) "aog" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/checkpoint) -"aoh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"aoi" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/sigma/cargo) -"aoj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/sigma/dorms) -"aok" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"aol" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"aom" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/north) "aon" = ( /obj/structure/shuttle/diagonal{ dir = 9; @@ -4879,224 +1255,34 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail/railcart) -"aoo" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"aop" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/airlock/north) -"aoq" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"aor" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/cargo) "aos" = ( /turf/open/floor/almayer/research/containment/corner2, /area/corsat/inaccessible) "aot" = ( /turf/open/floor/almayer/research/containment/corner3, /area/corsat/inaccessible) -"aou" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo/disposal) -"aov" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aow" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/theta/airlock/west) -"aox" = ( -/obj/structure/sink, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"aoy" = ( -/obj/structure/machinery/door/window/southleft{ - dir = 8; - layer = 2.8 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"aoz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/south) "aoA" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/airlocknorth) -"aoB" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aoC" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/airlocknorth) -"aoD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/dorms) "aoE" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/complex) -"aoF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth/id) -"aoG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth) "aoH" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/theta/airlock/west/id) -"aoI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/sigma/dorms) "aoJ" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/theta/airlock/west) -"aoK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/hallways) -"aoL" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"aoM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) "aoN" = ( /obj/structure/window/framed/corsat/research, /turf/open/floor/plating, /area/corsat/omega/complex) -"aoO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"aoP" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/west/id) -"aoQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) "aoR" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, /area/corsat/theta/airlock/west) -"aoS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"aoT" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/checkpoint) -"aoU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aoV" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/security) "aoW" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/control) @@ -5106,37 +1292,6 @@ "aoY" = ( /turf/closed/wall/biodome, /area/corsat/omega/maint) -"aoZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"apa" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"apb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"apc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/omega/hallways) -"apd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) "ape" = ( /obj/structure/window/framed/corsat/research, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -5147,29 +1302,12 @@ }, /turf/open/floor/plating, /area/corsat/omega/complex) -"apf" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) "apg" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hangar) "aph" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/east) -"api" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) "apj" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -5187,17 +1325,6 @@ icon_state = "wy1" }, /area/prison/hangar_storage/research/shuttle) -"apn" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) "apo" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -5210,349 +1337,48 @@ "app" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/cargo) -"apq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"apr" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential) -"aps" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/id) -"apt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/generator) "apu" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/north/id) -"apv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/residential) -"apw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/north/id) -"apx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +"apF" = ( +/obj/structure/machinery/computer3/laptop/secure_data, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"apI" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/engineering/core) +"apJ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/north) +"apQ" = ( +/turf/closed/wall/r_wall/biodome, /area/corsat/gamma/residential/maint) -"apy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"apz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/generator) -"apA" = ( -/obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/checkpoint) -"apB" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"apC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/security) -"apD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast/generator) -"apE" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"apF" = ( -/obj/structure/machinery/computer3/laptop/secure_data, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"apG" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"apH" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - req_one_access_txt = "19;106;104" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"apI" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/engineering/core) -"apJ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/north) -"apK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"apL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"apM" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"apN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"apO" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"apP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"apQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential/maint) -"apR" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/residential/maint) -"apS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) -"apT" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/airlock/north) -"apU" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"apV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/dorms) -"apW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"apX" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"apY" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"apZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering/core) -"aqa" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"aqb" = ( -/obj/structure/bed/chair/office/dark{ +"apR" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/residential/maint) +"apT" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/airlock/north) +"apV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/dorms) +"aqb" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"aqc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aqd" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aqe" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"aqf" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"aqg" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"aqh" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/airlock/north) "aqi" = ( /turf/closed/wall/biodome, /area/corsat/gamma/engineering) -"aqj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) "aqk" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/airlock/north) -"aql" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aqm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"aqn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) "aqo" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/theta/airlock/control) -"aqp" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast/generator) -"aqq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) "aqr" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/hallways) @@ -5562,111 +1388,13 @@ "aqt" = ( /turf/closed/wall/biodome, /area/corsat/gamma/engineering/atmos) -"aqu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aqv" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) "aqw" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/residential/maint) -"aqx" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) "aqy" = ( /turf/closed/wall/biodome, /area/corsat/gamma/engineering/lobby) -"aqz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"aqA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"aqB" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"aqC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/generator) -"aqD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aqE" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"aqF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"aqG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"aqH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"aqI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"aqJ" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/hallwaysouth) "aqK" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -5674,253 +1402,31 @@ "aqL" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/theta/biodome) -"aqM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" - }, -/area/corsat/gamma/hallwaysouth) "aqN" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/morgue) "aqO" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay) -"aqP" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"aqQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aqR" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"aqS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"aqT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aqU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast/generator) -"aqV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/generator) -"aqW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/morgue) -"aqX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) "aqY" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/lobby) -"aqZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"ara" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/lobby) -"arb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/lobby) "arc" = ( /turf/closed/shuttle, /area/corsat/gamma/hangar/monorail/railcart) -"ard" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"are" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) "arf" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/surgery) -"arg" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) "arh" = ( /turf/closed/wall/almayer/white, /area/corsat/gamma/medbay/chemistry) -"ari" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"arj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"ark" = ( -/obj/structure/showcase{ - icon_state = "comm_server"; - name = "Communications Server" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"arl" = ( -/obj/structure/closet/crate/freezer, -/obj/item/organ/heart, -/obj/item/organ/kidneys, -/obj/item/organ/kidneys, -/obj/item/organ/liver, -/obj/item/organ/lungs, -/obj/item/organ/brain, -/obj/item/organ/eyes, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"arm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/sigma/north) -"aro" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/hallwaysouth) "arp" = ( /turf/closed/wall/biodome, /area/corsat/gamma/administration) -"arq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) "arr" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/administration) -"ars" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"art" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aru" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"arv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) "arx" = ( /turf/closed/wall/biodome, /area/corsat/gamma/freezer) @@ -5954,40 +1460,12 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) -"arF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) "arG" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/north) -"arH" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"arI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) "arJ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south) -"arK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) "arL" = ( /turf/closed/wall/biodome, /area/corsat/gamma/rnr/arcade) @@ -6001,55 +1479,17 @@ "arN" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/laundry) -"arO" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"arP" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo/disposal) -"arQ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"arR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) "arT" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) -"arU" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) "arV" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/offices) "arW" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential/lavatory) -"arY" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) "arZ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -6059,36 +1499,9 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) -"asa" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"asb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) "asc" = ( /turf/closed/wall/biodome, /area/corsat/gamma/kitchen) -"asd" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"ase" = ( -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) "asf" = ( /obj/structure/machinery/light{ dir = 8 @@ -6097,12 +1510,6 @@ /obj/item/tool/extinguisher, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"asg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) "ash" = ( /obj/structure/window/reinforced{ dir = 8 @@ -6119,17 +1526,6 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) -"asj" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) "ask" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, @@ -6142,12 +1538,6 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/sigma/north) -"aso" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) "asp" = ( /turf/closed/wall/biodome, /area/corsat/gamma/rnr/library) @@ -6155,12 +1545,6 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/rnr/library) -"asr" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) "ass" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -6176,13 +1560,6 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"asv" = ( -/obj/structure/curtain/shower, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) "asw" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -6200,36 +1577,12 @@ /obj/structure/shuttle/window, /turf/open/shuttle/plating, /area/corsat/gamma/hangar/monorail/railcart) -"asB" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) "asC" = ( /turf/closed/wall/biodome, /area/corsat/gamma/canteen) "asD" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/south) -"asE" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"asF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"asG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) "asH" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/south/id) @@ -6274,26 +1627,6 @@ /obj/item/device/camera/oldcamera, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"asO" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"asP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) "asQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -6301,14 +1634,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"asR" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) "asS" = ( /obj/structure/surface/table/woodentable, /obj/item/trash/popcorn, @@ -6339,89 +1664,28 @@ /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"asY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/southeast) -"asZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) "atb" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"atc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) "atd" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/southeast) -"ate" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/north) -"atf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) "atg" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/southeast/dataoffice) -"ath" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/administration) "ati" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/southeast/generator) -"atj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/corsat/gamma/administration) "atk" = ( /turf/closed/wall/biodome, /area/corsat/sigma/southeast/dataoffice) "atl" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/southeast/generator) -"atm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/sigma/southeast) -"atn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) "ato" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/southeast/telecomm) @@ -6429,31 +1693,9 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/southeast/dataoffice) -"atr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"ats" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) "att" = ( /turf/closed/wall/biodome, /area/corsat/sigma/southeast/datalab) -"atu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) "atv" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, @@ -6461,22 +1703,6 @@ "atw" = ( /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"atx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential) -"aty" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/corsat/gamma/administration) "atz" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/southeast/telecomm) @@ -6510,29 +1736,6 @@ "atJ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/airlock/east/id) -"atK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"atL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/security/armory) -"atM" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/security/armory) -"atN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "atO" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6543,24 +1746,6 @@ /obj/structure/foamed_metal, /turf/open/floor/corsat, /area/corsat/sigma/hangar/id) -"atQ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/airlock/east) -"atR" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"atS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "atT" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -6570,65 +1755,6 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/id) -"atU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"atV" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/south) -"atW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"atX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/checkpoint) -"atY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"atZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Food Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"aua" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/north/id) "aub" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -6650,23 +1776,6 @@ "aud" = ( /turf/closed/wall/biodome, /area/corsat/sigma/airlock/east) -"aue" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"auf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aug" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) "auh" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/east) @@ -6677,165 +1786,25 @@ "auj" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/east/id) -"auk" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aul" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"aum" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"aun" = ( -/obj/structure/window/reinforced, -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) "auo" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"aup" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Senior Engineer's Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) "auq" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/security) -"aur" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/theta/airlock/east) -"aus" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"aut" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthN"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/south) -"auu" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"auv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/south) -"auw" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aux" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"auy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) "auz" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/southeast/datalab) -"auA" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/administration) "auB" = ( /turf/closed/wall/biodome, /area/corsat/sigma/south/offices) -"auC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"auD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/south/id) "auE" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/sigma/south/offices) -"auF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south) "auG" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/complex) @@ -6852,27 +1821,6 @@ "auL" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/airlocknorth) -"auN" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"auO" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, -/area/corsat/sigma/dorms) -"auP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) "auQ" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, @@ -6885,109 +1833,21 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/south/engineering) +"auT" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaN"; + name = "Omega Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) "auU" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"auV" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south) "auW" = ( /obj/structure/machinery/power/smes, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"auX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"auY" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"auZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaNorthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaNorthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"ava" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"avb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bar Rear" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"avc" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/airlock/north) -"avd" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/airlock/north) -"ave" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) "avf" = ( /obj/item/cell/crap, /obj/structure/machinery/light/small{ @@ -6995,140 +1855,23 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"avg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"avh" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) "avj" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/hangar/checkpoint) -"avl" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/checkpoint) +"avk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) "avm" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/offices) -"avn" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"avo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"avp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"avq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Medical Bay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"avr" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/south) "avs" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/hangar/checkpoint) -"avt" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastW"; - name = "Sigma East Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/east) -"avu" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/south/id) -"avv" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 25; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"avx" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"avy" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"avz" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/corsat/gamma/administration) -"avA" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) "avD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper, @@ -7138,282 +1881,16 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"avE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/hangar) -"avF" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"avG" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 1"; - name = "Cell 1" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/cells) -"avH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"avI" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/hangar) -"avJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/hangar) -"avK" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/omega/cargo) -"avL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/cargo) -"avM" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/southeast) -"avN" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"avO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/gamma/residential) -"avP" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/gamma/residential) "avQ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/maint) -"avR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Office"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"avS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) "avT" = ( /obj/structure/window/framed/corsat/cell/research, /turf/open/floor/plating, /area/corsat/inaccessible) -"avU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/medbay/morgue) -"avV" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/residential) -"avW" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/residential) -"avX" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"avY" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/residential) -"avZ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"awa" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/residential) "awb" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/north) -"awc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/residential) -"awd" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/residential) -"awe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/residential) -"awf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/residential/maint) -"awg" = ( -/obj/structure/machinery/bot/medbot/mysterious, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"awh" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"awi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaHangarCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/cargo) -"awj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"awk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"awl" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"awm" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"awn" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/chemistry) -"awo" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"awp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/id) -"awq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, -/area/corsat/gamma/hallwaysouth) "awr" = ( /obj/structure/shuttle/diagonal{ dir = 5; @@ -7422,48 +1899,6 @@ }, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail/railcart) -"aws" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"awt" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"awu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"awv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"aww" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) "awx" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -7476,28951 +1911,3996 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"awz" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/north/id) -"awA" = ( -/obj/structure/machinery/light{ - dir = 1 +"awA" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/structure/bed/stool, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"awB" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/airlock/north/id) -"awC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"awD" = ( -/obj/structure/machinery/door/window/brigdoor/southleft{ - id = "CORSAT Sec 2"; - name = "Cell 2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/cells) -"awE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"awF" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" +"awQ" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/residential/lavatory) +"awY" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome) +"axH" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/gamma/cargo) -"awG" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"axV" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"ayc" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID2"; + name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating, +/area/corsat/sigma/airlock/east/id) +"azV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaIDSC2"; + name = "Security Shutters" }, -/area/corsat/gamma/airlock/north/id) -"awH" = ( +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south/id) +"azX" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/biodome) +"aAn" = ( /obj/structure/machinery/camera/autoname{ dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"awJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) -"awK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC"; - name = "Security Shutters"; - use_power = 0 + network = list("sigma") }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"aAo" = ( +/obj/structure/pipes/unary/outlet_injector{ dir = 8; - icon_state = "red" + name = "Harmful Gas Ejector" }, -/area/corsat/gamma/airlock/north/id) -"awL" = ( +/turf/open/space, +/area/space) +"aBd" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"aBN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, -/area/corsat/gamma/rnr) -"awM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"aCa" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aCu" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/airlock/south) +"aCK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/sigma/airlock/south/id) -"awN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat, +/area/corsat/sigma/airlock/south) +"aCO" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat, +/area/corsat/theta/airlock/east) +"aCX" = ( +/turf/open/floor/corsat, +/area/corsat/theta/airlock/east) +"aDy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Cafe" }, -/area/corsat/gamma/airlock/north/id) -"awO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aDW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"aDY" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" }, -/area/corsat/gamma/freezer) -"awP" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/area/corsat/omega/hangar) +"aEc" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" }, -/area/corsat/gamma/hangar/checkpoint) -"awQ" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/residential/lavatory) -"awR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/area/corsat/omega/hangar) +"aEd" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" }, -/turf/open/floor/corsat{ - icon_state = "redcorner" +/area/corsat/omega/hangar) +"aEe" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy21" }, -/area/corsat/gamma/airlock/north/id) -"awS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Autopsy"; - req_one_access_txt = "103" +/area/corsat/omega/hangar) +"aEf" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, +/turf/open/floor/plating, +/area/corsat/omega/hallways) +"aEq" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/cargo) +"aEr" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/cargo/lobby) +"aEw" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/engineering) +"aEx" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/robotics) +"aEy" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar) +"aEP" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aER" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/morgue) -"awT" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aEX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo/disposal) -"awU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aEZ" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aFd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"awV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/corsat/gamma/biodome) +"aFg" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/corsat/gamma/airlock/north/id) -"awW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaDSC2"; - name = "Security Shutters"; - use_power = 0 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/gamma/biodome) +"aFl" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/airlock/north/id) -"awX" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/gamma/airlock/north/id) -"awY" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome) -"awZ" = ( -/obj/structure/machinery/computer/emails, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFn" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFo" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer3/laptop/secure_data, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFq" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/gamma/residential/lounge) -"axa" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/structure/barricade/handrail{ layer = 3 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"axb" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFt" = ( +/obj/structure/closet/cabinet, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"axc" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"axd" = ( -/obj/structure/bed, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"axe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 1 }, -/area/corsat/gamma/residential) -"axf" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFv" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"axg" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" + dir = 1 }, -/area/corsat/sigma/airlock/south/id) -"axh" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/margherita, +/obj/item/trash/chips, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"axi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"axj" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"axk" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFC" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/donut_box, +/obj/item/tool/lighter, /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFE" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aFI" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/area/corsat/gamma/administration) -"axl" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aFQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/residential/showers) -"axm" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/sigma/dorms) +"aFR" = ( +/obj/structure/bed, +/obj/item/pizzabox/margherita, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFU" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/security) -"axn" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aFX" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"axo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"aGb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aGf" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/control) +"aGj" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/airlock/north/id) -"axp" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/core) -"axq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/north/id) -"axr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Custorial Closet"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) -"axs" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"axt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"axu" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"axv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/airlock/north/id) -"axw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) -"axx" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aGx" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, +/turf/open/floor/plating, /area/corsat/gamma/administration) -"axy" = ( +"aHg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" + name = "\improper Quarters"; + req_access_txt = "100" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"axz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"axB" = ( +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aHL" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar/security) +"aIj" = ( +/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"axC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"axD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) -"axE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"axF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"axG" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/omega/checkpoint) -"axH" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"axI" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"axJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Laundry" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"axK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"axL" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aIk" = ( +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"aIl" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"aIm" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/virology) +"aIn" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"aIt" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/complex) +"aIv" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/omega/hangar/office) +"aIx" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/control) +"aIA" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/control) +"aII" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/complex) +"aIK" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aIO" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome) +"aIX" = ( +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"aIY" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"aJa" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/biodome/toxins) +"aJc" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aJl" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"aJm" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/gunrange) +"aJO" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"aJW" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/airlock/control) +"aJZ" = ( +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aKa" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"aKg" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/airlock/control) +"aKh" = ( +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"aKi" = ( +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"aKj" = ( +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"aKk" = ( +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"aKl" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"aKm" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"aKn" = ( +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"aKo" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"aKp" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"aKq" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome) +"aKs" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/biodome/hydrowest) +"aKt" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/complex) +"aKu" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/plating, +/area/corsat/theta/biodome/complex) +"aKy" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/theta/biodome/hydroeast) +"aKK" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/hydrowest) +"aKL" = ( +/turf/closed/wall/biodome, +/area/corsat/theta/biodome/hydroeast) +"aLh" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/control) +"aLo" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"axM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"axN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"axO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"axP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/sigma/airlock/east/id) -"axQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"aLU" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC2"; + name = "Security Shutters" }, -/area/corsat/gamma/canteen) -"axR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aLV" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/east/id) +"aLY" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC"; + name = "Security Shutters" }, -/area/corsat/sigma/airlock/east/id) -"axS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aMe" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) +"aMP" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/area/corsat/sigma/airlock/east/id) -"axT" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/airlock/east/id) -"axV" = ( -/obj/structure/surface/table/woodentable, /turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"axW" = ( -/obj/structure/surface/table/reinforced, +/area/corsat/gamma/residential/researcher) +"aNk" = ( /obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/airlock/east/id) -"axX" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"axY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Bar" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr/bar) -"axZ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"aya" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/airlock/east/id) -"ayb" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" + network = list("omega"); + pixel_y = 22 }, -/area/corsat/sigma/hangar/office) -"ayc" = ( +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aNq" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/south/offices) +"aNw" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/theta/airlock/east/id) +"aNH" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID2"; + id = "SigmaResC"; name = "Security Shutters" }, /turf/open/floor/plating, -/area/corsat/sigma/airlock/east/id) -"ayd" = ( +/area/corsat/sigma/checkpoint) +"aNK" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/security/armory) +"aNP" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/security/cells) +"aOC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/corsat/sigma/biodome) +"aOQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/inaccessible) +"aOT" = ( +/turf/closed/wall/biodome, +/area/corsat/emergency_access) +"aPb" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aPy" = ( +/obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; + dir = 4; + id = "GammaHangarH"; name = "Hangar Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar/id) -"aye" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/north) -"ayf" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/north) -"ayg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating, +/area/corsat/gamma/hangar) +"aPG" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"aPJ" = ( +/obj/structure/flora/jungle/alienplant1, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"aPL" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + layer = 3 }, -/area/corsat/sigma/hangar/id) -"ayh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aPN" = ( +/obj/effect/landmark/yautja_teleport, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aPO" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/security/cells) +"aPP" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/gamma/security) +"aPT" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/engineering) +"aPW" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/engineering/lobby) +"aQe" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy2" }, -/area/corsat/gamma/hallwaysouth) -"ayi" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/prison/hangar_storage/research/shuttle) +"aQf" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/area/prison/hangar_storage/research/shuttle) +"aQg" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 }, -/area/corsat/sigma/hangar/id) -"ayj" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/area/prison/hangar_storage/research/shuttle) +"aQi" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/security) +"aQj" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/office) +"aQm" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar/office) +"aQo" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/omega/hangar/security) +"aQz" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/emergency_access) +"aQC" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/emergency_access) +"aQG" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/id) -"ayk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aQJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQO" = ( +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQV" = ( +/obj/structure/computerframe, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aQW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aRb" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/area/corsat/sigma/north) -"ayl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aRl" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/checkpoint) -"aym" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +/obj/structure/machinery/computer/emails{ + dir = 8 }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"aRn" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/kitchen) +"aRp" = ( +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/railcart) +"aRt" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/sigmaremote) +"aRv" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/canteen) +"aSa" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aSm" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, /area/corsat/gamma/medbay) -"ayn" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"ayo" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +"aSn" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, /area/corsat/gamma/medbay/lobby) -"ayp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"ayq" = ( -/turf/open/floor/corsat{ +"aSp" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay/surgery) +"aSq" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/corsat/gamma/medbay/chemistry) +"aSV" = ( +/obj/structure/pipes/vents/pump/siphon/on{ dir = 4; - icon_state = "redcorner" + id_tag = "waste_corsat_out" }, -/area/corsat/sigma/hangar/id) -"ayr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aSW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aTj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aTv" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "mixed_corsat_out" }, -/area/corsat/sigma/hangar/id) -"ays" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Hub"; - req_access_txt = "101" +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aTG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aTH" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aTI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"aTL" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"aUn" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar) +"aUo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/security) -"ayt" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aUr" = ( +/obj/item/storage/fancy/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUs" = ( +/obj/item/weapon/pole/fancy_cane, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUt" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aUy" = ( +/obj/item/disk/botany, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUC" = ( +/obj/item/toy/prize/ripley{ + pixel_y = 15 }, -/turf/open/floor/corsat{ - icon_state = "sigma" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aUD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/north) -"ayu" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/corsat/sigma/north) -"ayv" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) -"ayw" = ( -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUF" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/north) -"ayx" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUG" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/toxins) +"aUH" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/virology) +"aUI" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/complex) +"aUJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/id) -"ayy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aUN" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "nit_corsat_out" }, -/area/corsat/sigma/hangar/id) -"ayz" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"aUR" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"ayA" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"aVd" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/id) -"ayB" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVe" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/corsat/gamma/security) -"ayC" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/cargo) -"ayD" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVg" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/medbay) -"ayE" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/id) -"ayF" = ( -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aVo" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall"; + layer = 3 }, -/area/corsat/sigma/hangar/id) -"ayG" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail/railcart) +"aVR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/sigma/airlock/control) -"ayH" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "purple" + id = "OmegaAccessC"; + name = "Security Shutters" }, -/area/corsat/omega/airlocknorth) -"ayI" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"aWm" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aWK" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"aXa" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"aXw" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/southeast/datalab) +"aXK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"aXU" = ( +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"aYw" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"aYR" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/biodome) +"aYU" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoS"; - name = "Checkpoint Control"; - pixel_y = 7; - use_power = 0 +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/east/id) +"aZa" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"aZe" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/rnr/library) +"aZm" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"aZq" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoN"; - name = "Checkpoint Control"; - pixel_x = -5; - use_power = 0 +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/obj/item/spacecash/c10, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "SigmaHCargoC"; - name = "Security Shutters"; - pixel_x = 5; - use_power = 0 +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZw" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZx" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/id) -"ayJ" = ( -/obj/structure/machinery/door_control{ - id = "SigmaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZy" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "SigmaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"aZB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"baz" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/area/corsat/sigma/airlock/east) -"ayK" = ( +/turf/open/floor/corsat, +/area/corsat/emergency_access) +"baJ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/checkpoint) +"baU" = ( +/obj/structure/window/framed/corsat/hull, /obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/plating, +/area/corsat/omega/airlocknorth) +"baV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/hangar/id) -"ayL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"baW" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) +"bba" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaCSC"; + name = "Security Shutters" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/plating, +/area/corsat/omega/control) +"bbB" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" }, -/area/corsat/sigma/airlock/east) -"ayM" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/chemimp, -/obj/item/storage/box/trackimp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"bbJ" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" }, -/area/corsat/gamma/sigmaremote) -"ayN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/plating, +/area/corsat/gamma/biodome/complex) +"bbM" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"bbQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" }, -/area/corsat/sigma/north) -"ayO" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Director's Room"; + req_access_txt = "103" }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"bcf" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Viro"; + name = "Virology Lockdown" }, -/area/corsat/gamma/hangar) -"ayP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/plating, +/area/corsat/gamma/biodome/virology) +"bcg" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Toxins"; + name = "Toxins Lockdown" }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/plating, +/area/corsat/gamma/biodome/toxins) +"bch" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"bci" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/sigma/airlock/east) -"ayQ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"bcj" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/sigma/airlock/east) -"ayR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/plating, +/area/corsat/gamma/airlock/control) +"bck" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "OmegaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/gamma/administration) -"ayS" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/plating, +/area/corsat/omega/control) +"bcl" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/gamma/administration) -"ayT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 +/turf/open/floor/plating, +/area/corsat/omega/control) +"bcm" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bcn" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/area/corsat/sigma/airlock/east) -"ayU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bco" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaControl"; + name = "Observation Shutters"; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"ayV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"ayW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"ayX" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"ayY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"ayZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/east) -"aza" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthN"; - name = "Gamma North Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/north) -"azb" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"aze" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"azg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"azh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/east) -"azi" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"azj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"azl" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"azm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"azn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azo" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/security) -"azp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"azq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"azs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"azt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azu" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/security) -"azv" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/security) -"azw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"azx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control"; - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/east) -"azy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome) -"azz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) -"azA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"azB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"azC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"azD" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azE" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"azF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"azH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azK" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"azL" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azM" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/east) -"azN" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/east) -"azO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"azP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/south) -"azQ" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"azR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/south) -"azS" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"azT" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"azU" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"azV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaIDSC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south/id) -"azW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"azX" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/biodome) -"azY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"azZ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aAa" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aAb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"aAe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"aAf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/hangar/security) -"aAh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"aAi" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"aAj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"aAk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaSouthS"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "SigmaSouthN"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAl" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAm" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aAo" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Harmful Gas Ejector" - }, -/turf/open/space, -/area/space) -"aAp" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aAq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAr" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"aAs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAt" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"aAu" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/security) -"aAv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering/lobby) -"aAw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"aAx" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/south) -"aAy" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo) -"aAz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aAD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/medbay/morgue) -"aAF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAG" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aAH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/south) -"aAI" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/south) -"aAJ" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/airlock/south) -"aAL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"aAM" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/surgery) -"aAN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aAO" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"aAP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAQ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"aAR" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aAS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"aAT" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/south) -"aAU" = ( -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aAV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/sigma/south) -"aAW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/sigma/south) -"aAX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/south) -"aAY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aAZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"aBa" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/airlock/south) -"aBb" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo) -"aBc" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBe" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"aBf" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/omega/cargo) -"aBg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aBh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aBi" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aBj" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, -/area/corsat/inaccessible) -"aBk" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/corsat/inaccessible) -"aBl" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, -/area/corsat/inaccessible) -"aBm" = ( -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aBn" = ( -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, -/area/corsat/inaccessible) -"aBo" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/corsat/inaccessible) -"aBq" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/corsat/inaccessible) -"aBr" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, -/area/corsat/inaccessible) -"aBs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/south) -"aBu" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"aBv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBw" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/airlock/south) -"aBx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"aBy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBD" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/west/id) -"aBF" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "SigmaEastE"; - name = "Sigma East Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/east) -"aBG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/west) -"aBH" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"aBJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"aBK" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBL" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBM" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"aBO" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"aBP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/office) -"aBQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBR" = ( -/obj/structure/machinery/door_control{ - id = "SigmaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aBS" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBT" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/south) -"aBU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aBV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hallways) -"aBW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aBX" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/theta/airlock/east) -"aBY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/airlock/south) -"aBZ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"aCa" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aCb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aCc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"aCd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aCe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"aCf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aCg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"aCh" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"aCi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aCj" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aCl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Airlock Control Office"; - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/theta/airlock/east) -"aCm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aCn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"aCo" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/south) -"aCp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"aCq" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/inaccessible) -"aCr" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"aCs" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"aCt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aCu" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/airlock/south) -"aCv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantcase, -/obj/item/implantpad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"aCw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"aCx" = ( -/obj/structure/prop/almayer/cannon_cables{ - color = "#55BBFF"; - name = "\improper Cables" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/inaccessible) -"aCy" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast) -"aCz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) -"aCA" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/generator) -"aCB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) -"aCC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) -"aCD" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) -"aCE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"aCF" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"aCG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) -"aCH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aCI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Medical Bay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"aCJ" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/inaccessible) -"aCK" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/sigma/airlock/south) -"aCL" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"aCM" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"aCN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"aCO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/theta/airlock/east) -"aCP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"aCQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/theta/airlock/east) -"aCR" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) -"aCS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Reception Desk"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/lobby) -"aCT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aCU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aCV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/checkpoint) -"aCW" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"aCX" = ( -/turf/open/floor/corsat, -/area/corsat/theta/airlock/east) -"aCY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medical Lobby"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"aCZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/dorms) -"aDa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"aDb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aDc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"aDd" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/sigma/south) -"aDe" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/south) -"aDf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"aDg" = ( -/obj/structure/closet/crate/science, -/obj/item/cell/hyper/empty, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aDh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aDi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential) -"aDj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/westleft{ - name = "Medical Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Medical Desk" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/lobby) -"aDk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aDl" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) -"aDm" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aDn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) -"aDo" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aDp" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"aDq" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aDr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aDs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aDt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aDu" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"aDv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aDw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aDx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aDy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Cafe" - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aDz" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aDA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aDB" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aDC" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/inaccessible) -"aDD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aDE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aDF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/east) -"aDG" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aDH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aDI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar/id) -"aDJ" = ( -/obj/structure/machinery/door_control{ - id = "SigmaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"aDK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/sigma/hangar) -"aDL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"aDM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"aDN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"aDO" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"aDP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"aDQ" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/sigma/hangar) -"aDR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"aDS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/arrivals) -"aDT" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"aDU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"aDV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"aDX" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"aDY" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, -/area/corsat/omega/hangar) -"aDZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Control Room"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"aEa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) -"aEb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aEc" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy27" - }, -/area/corsat/omega/hangar) -"aEd" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy25" - }, -/area/corsat/omega/hangar) -"aEe" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy21" - }, -/area/corsat/omega/hangar) -"aEf" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/hallways) -"aEg" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aEh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar) -"aEi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hallways) -"aEj" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/prison/hangar_storage/research/shuttle) -"aEk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/omega/airlocknorth) -"aEl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/omega/airlocknorth) -"aEn" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/airlocknorth) -"aEp" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/core) -"aEq" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/cargo) -"aEr" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/cargo/lobby) -"aEs" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/core) -"aEt" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/gamma/engineering/core) -"aEu" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, -/area/corsat/omega/airlocknorth) -"aEv" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/sigma/southeast/generator) -"aEw" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/engineering) -"aEx" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/robotics) -"aEy" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar) -"aEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"aEA" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; - fail_rate = 4; - name = "\improper G-17 Thermoelectric Generator" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "0-8"; - layer = 2.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) -"aEC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/airlocknorth) -"aED" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aEE" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aEF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aEG" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth) -"aEH" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth) -"aEJ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aEK" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"aEL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"aEM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Secondary Generators"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"aEN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"aEP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aES" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aET" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"aEU" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "101" - }, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aEV" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aEW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"aEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aEY" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aEZ" = ( -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aFb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aFc" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"aFd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/corsat/gamma/biodome) -"aFe" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"aFf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"aFg" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/gamma/biodome) -"aFi" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"aFj" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"aFk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"aFl" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"aFn" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFo" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer3/laptop/secure_data, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aFq" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFr" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aFs" = ( -/obj/structure/bed/chair/comfy, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"aFt" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFu" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aFv" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFw" = ( -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"aFx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/margherita, -/obj/item/trash/chips, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"aFz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/foyer) -"aFA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aFB" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"aFC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/donut_box, -/obj/item/tool/lighter, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFD" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aFE" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aFF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/foyer) -"aFG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"aFH" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aFI" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFJ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aFK" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"aFL" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/theta/airlock/east) -"aFM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aFN" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aFO" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aFP" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/theta/airlock/east) -"aFR" = ( -/obj/structure/bed, -/obj/item/pizzabox/margherita, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aFT" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"aFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFV" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aFW" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/researcher) -"aFX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"aFY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"aGb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aGc" = ( -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aGd" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aGe" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aGf" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/control) -"aGg" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aGh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aGi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aGj" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aGk" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aGl" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar) -"aGm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aGn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"aGo" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aGp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aGr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south) -"aGs" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"aGt" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Surgery Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/surgery) -"aGu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/theta/airlock/east) -"aGv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/theta/airlock/east) -"aGw" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/east) -"aGx" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/administration) -"aGy" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaN"; - name = "Omega Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/airlocknorth) -"aGz" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aGA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/gamma/residential) -"aGB" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/airlocknorth) -"aGC" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"aGD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aGE" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aGF" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/theta/airlock/east) -"aGG" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/theta/airlock/east) -"aGI" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"aGJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"aGK" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"aGL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"aGM" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mp27, -/obj/item/weapon/gun/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aGN" = ( -/obj/structure/machinery/bioprinter{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aGO" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aGP" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Data Laboratory"; - req_access_txt = "106;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"aGQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/chemistry) -"aGR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"aGS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Secondary Generators"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/generator) -"aGT" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aGU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aGV" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aGW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aGX" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aGY" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aHa" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aHb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aHc" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"aHd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"aHe" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"aHf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aHg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Quarters"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aHh" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"aHi" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"aHj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Access Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"aHk" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Center"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"aHm" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aHn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/hallways) -"aHo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aHp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/west/id) -"aHq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/west) -"aHr" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Cargo Bay"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"aHs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"aHt" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aHu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"aHv" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"aHw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"aHx" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aHy" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Remote Complex"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"aHz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleportation Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"aHA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"aHB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"aHC" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Containment Cell"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"aHD" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Virology Lab"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"aHE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"aHF" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Decontamination Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"aHG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Access Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"aHH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/omega/cargo) -"aHI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aHJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"aHK" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aHL" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar/security) -"aHM" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaS"; - name = "Omega Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/airlocknorth) -"aHN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aHO" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"aHP" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Food Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"aHQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "Food Storage"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"aHR" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/freezer) -"aHS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aHT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"aHU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/theta/airlock/east) -"aHV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Kitchen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"aHW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Canteen" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"aHX" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"aHY" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Cafe"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"aHZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"aIa" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"aIb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) -"aIc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Subject den"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"aId" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/corsat/gamma/sigmaremote) -"aIe" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aIf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/east/id) -"aIg" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Administration Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Administration Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"aIh" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aIi" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aIj" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aIk" = ( -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"aIl" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"aIm" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/virology) -"aIn" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"aIo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/virology) -"aIp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aIq" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"aIr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/virology) -"aIs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"aIt" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/complex) -"aIu" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/complex) -"aIv" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/omega/hangar/office) -"aIw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aIx" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/control) -"aIy" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaNorthS"; - name = "Gamma North Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/north) -"aIz" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aIA" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/airlock/control) -"aIB" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"aIC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aID" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"aIE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"aIF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"aIG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"aIH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aII" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/complex) -"aIJ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"aIK" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aIL" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"aIM" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"aIN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aIO" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome) -"aIP" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/biodome/complex) -"aIQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/control) -"aIR" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 1" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aIS" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"aIT" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"aIU" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleporter Power Room"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) -"aIV" = ( -/obj/structure/closet/secure_closet/brig{ - id = "CORSAT Sec 2" - }, -/obj/structure/machinery/brig_cell{ - id = "CORSAT Sec 2"; - name = "Cell 2"; - pixel_x = 32 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aIW" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"aIX" = ( -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"aIY" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"aIZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"aJa" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/biodome/toxins) -"aJb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit"; - req_access_txt = "100"; - req_one_access_txt = "0" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aJc" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aJd" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aJe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aJf" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/toxins) -"aJg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aJh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"aJi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aJj" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/theta/airlock/east) -"aJk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aJl" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"aJm" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/gunrange) -"aJn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"aJo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/gamma/biodome/complex) -"aJp" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/biodome/complex) -"aJq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/corsat/gamma/biodome/complex) -"aJr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aJs" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aJt" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/airlock/control) -"aJu" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/hallwaysouth) -"aJv" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/airlock/control) -"aJw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"aJx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome) -"aJy" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/foyer) -"aJz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south) -"aJA" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aJB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/corsat/gamma/biodome/complex) -"aJC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/biodome/complex) -"aJD" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/biodome/complex) -"aJE" = ( -/obj/structure/disposaloutlet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aJF" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"aJG" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/airlock/control) -"aJH" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/airlock/control) -"aJI" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"aJJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"aJK" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/control) -"aJL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Sigma Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aJM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aJN" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aJO" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"aJP" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/gamma/cargo) -"aJQ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aJR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Sigma Remote Complex"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"aJS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"aJT" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aJU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"aJV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"aJW" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/airlock/control) -"aJX" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"aJY" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/control) -"aJZ" = ( -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aKa" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"aKb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aKc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar/id) -"aKe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aKf" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/control) -"aKg" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"aKh" = ( -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"aKi" = ( -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"aKj" = ( -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"aKk" = ( -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"aKl" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"aKm" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"aKn" = ( -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"aKo" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"aKp" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"aKq" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome) -"aKs" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/biodome/hydrowest) -"aKt" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/complex) -"aKu" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/plating, -/area/corsat/theta/biodome/complex) -"aKv" = ( -/obj/structure/closet/crate/science, -/obj/item/ore/diamond, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aKw" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aKx" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/sigma/south) -"aKy" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/theta/biodome/hydroeast) -"aKz" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"aKA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/sigma/south) -"aKB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/south) -"aKC" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/theta/biodome/complex) -"aKD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/theta/biodome/complex) -"aKE" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"aKF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/south) -"aKG" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydroeast) -"aKH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/biodome/complex) -"aKI" = ( -/obj/structure/machinery/door_control{ - id = "GammaEastW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaEastE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aKJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, -/area/corsat/theta/biodome/complex) -"aKK" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/hydrowest) -"aKL" = ( -/turf/closed/wall/biodome, -/area/corsat/theta/biodome/hydroeast) -"aKM" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydrowest) -"aKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydrowest) -"aKO" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydrowest) -"aKP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydrowest) -"aKQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"aKR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydroeast) -"aKS" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"aKT" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydroeast) -"aKV" = ( -/obj/structure/prop/almayer/particle_cannon/corsat, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/inaccessible) -"aKW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aKX" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"aKY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aKZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/biodome/complex) -"aLa" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aLb" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aLc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aLd" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aLe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aLf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/hangar/office) -"aLg" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aLh" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/control) -"aLi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Virology Wing"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"aLj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"aLk" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/control) -"aLl" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"aLm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aLn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aLo" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"aLp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aLq" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"aLr" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aLs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/control) -"aLt" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/control) -"aLu" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/hallways) -"aLv" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/control) -"aLw" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"aLx" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/east/id) -"aLy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/sigma/south) -"aLA" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south/id) -"aLB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/south/id) -"aLC" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"aLD" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aLE" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south) -"aLH" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/cargo) -"aLI" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/gamma/cargo) -"aLK" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/security) -"aLL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"aLM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"aLN" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"aLO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"aLP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south) -"aLQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/south) -"aLR" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aLS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aLT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aLU" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC2"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aLV" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/east/id) -"aLW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"aLX" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"aLY" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aLZ" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/west) -"aMa" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/east) -"aMb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aMc" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/airlocknorth) -"aMd" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/west/id) -"aMf" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aMg" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC2"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMi" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"aMj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/east/id) -"aMl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/east/id) -"aMm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMn" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"aMo" = ( -/obj/item/device/assembly/voice, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aMp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"aMq" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aMr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"aMs" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aMt" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aMu" = ( -/obj/structure/machinery/r_n_d/organic_analyzer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aMv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aMw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aMx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth/id) -"aMy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/east/id) -"aMz" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aMA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/restraints, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth/id) -"aMB" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth) -"aMC" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth) -"aMD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/airlocknorth) -"aME" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aMF" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"aMG" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, -/area/corsat/gamma/cargo) -"aMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/gamma/cargo) -"aMI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMJ" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/gamma/cargo) -"aMK" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo/disposal) -"aML" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"aMM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Data Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datamaint) -"aMN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datamaint) -"aMP" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aMR" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aMT" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/sigma/south) -"aMU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south) -"aMV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aMW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"aMX" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datamaint) -"aMY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aMZ" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aNa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aNb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration Office" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"aNc" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"aNe" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"aNg" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"aNh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purple" - }, -/area/corsat/sigma/south) -"aNi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"aNj" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aNk" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega"); - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aNl" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/theta/airlock/east/id) -"aNm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Data Office"; - req_access_txt = "102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"aNn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aNo" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aNp" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aNq" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/south/offices) -"aNr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/datalab) -"aNs" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/datalab) -"aNt" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/datalab) -"aNu" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Data Laboratory"; - req_access_txt = "106;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/datalab) -"aNv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"aNw" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/theta/airlock/east/id) -"aNx" = ( -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"aNy" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"aNz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"aNB" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"aNC" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/surgery) -"aND" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/chemistry) -"aNE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aNF" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/chemistry) -"aNG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/material, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aNH" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaResC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/checkpoint) -"aNI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"aNJ" = ( -/obj/structure/machinery/door_control{ - id = "GammaCargo"; - name = "Cargo Door"; - pixel_x = 24; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/gamma/cargo) -"aNK" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/security/armory) -"aNL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aNM" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/night, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aNN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"aNO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aNP" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/security/cells) -"aNQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/cells) -"aNR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security/armory) -"aNS" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/security/cells) -"aNT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aNU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/security) -"aNV" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"aNW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"aNX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aNY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/gamma/hangar/arrivals) -"aNZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"aOa" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/checkpoint) -"aOb" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aOc" = ( -/obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aOd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aOe" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"aOf" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aOg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/sigma/south) -"aOh" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/foyer) -"aOi" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aOj" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail/control) -"aOm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Medbay"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"aOn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOo" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south) -"aOp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/security) -"aOq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/hangar/office) -"aOr" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/gamma/hangar) -"aOs" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"aOt" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"aOu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"aOv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOw" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/hangar) -"aOx" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/gamma/hangar) -"aOy" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOz" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/cargo) -"aOA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/hangar/cargo) -"aOB" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aOC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/corsat/sigma/biodome) -"aOD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"aOE" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/south) -"aOF" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOG" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"aOH" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aOI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOJ" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/hangar) -"aOK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOM" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, -/area/corsat/sigma/hangar) -"aON" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/hangar/id) -"aOP" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOQ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/inaccessible) -"aOR" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aOS" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"aOT" = ( -/turf/closed/wall/biodome, -/area/corsat/emergency_access) -"aOU" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" - }, -/area/corsat/theta/biodome/complex) -"aOW" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aOX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"aOY" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"aOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"aPa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"aPb" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aPc" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aPd" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security/armory) -"aPe" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/armory) -"aPf" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/corsat/sigma/biodome) -"aPg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"aPh" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"aPj" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aPk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/security) -"aPl" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"aPm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/atmos) -"aPn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"aPo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/security) -"aPp" = ( -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aPq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"aPr" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"aPs" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aPt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aPu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPv" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aPw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPy" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar) -"aPz" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"aPC" = ( -/obj/effect/landmark/yautja_teleport, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aPD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"aPE" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, -/area/corsat/gamma/hangar) -"aPF" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"aPG" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"aPH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPJ" = ( -/obj/structure/flora/jungle/alienplant1, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"aPK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"aPL" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"aPM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/checkpoint) -"aPN" = ( -/obj/effect/landmark/yautja_teleport, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aPO" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/security/cells) -"aPP" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"aPQ" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"aPR" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aPS" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/gamma/engineering/core) -"aPT" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/engineering) -"aPU" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "ThetaIDEC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/east/id) -"aPV" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"aPW" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/engineering/lobby) -"aPX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"aPY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"aPZ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"aQa" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aQb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"aQc" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"aQd" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aQe" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy2" - }, -/area/prison/hangar_storage/research/shuttle) -"aQf" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy3" - }, -/area/prison/hangar_storage/research/shuttle) -"aQg" = ( -/turf/closed/shuttle/ert{ - icon_state = "rightengine_1"; - opacity = 0 - }, -/area/prison/hangar_storage/research/shuttle) -"aQh" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"aQi" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/security) -"aQj" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/office) -"aQl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaNorthS"; - name = "Airlock Control"; - pixel_y = -2; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaNorthN"; - name = "Airlock Control"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"aQm" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar/office) -"aQn" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/prison/hangar_storage/research/shuttle) -"aQo" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/omega/hangar/security) -"aQp" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/raisins, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"aQq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"aQr" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/hangar) -"aQs" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"aQt" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar) -"aQu" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/omega/hangar) -"aQv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/glass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"aQw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"aQx" = ( -/obj/effect/alien/weeds/node, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"aQy" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"aQz" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/emergency_access) -"aQA" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/office) -"aQB" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/office) -"aQC" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/emergency_access) -"aQD" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/hangar/security) -"aQE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"aQF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"aQG" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aQH" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aQI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQK" = ( -/obj/item/tool/wet_sign, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aQL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"aQM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"aQN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aQO" = ( -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"aQQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aQR" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"aQS" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"aQT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aQU" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aQV" = ( -/obj/structure/computerframe, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aQX" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"aQY" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"aQZ" = ( -/obj/item/paper_bin, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/residential/lounge) -"aRa" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"aRb" = ( -/obj/structure/computerframe, -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aRc" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"aRd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aRe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"aRf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"aRg" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/residential/lounge) -"aRh" = ( -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"aRj" = ( -/obj/item/paper, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/residential/lounge) -"aRk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"aRl" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"aRm" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"aRn" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/kitchen) -"aRo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Chemistry"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"aRp" = ( -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/railcart) -"aRq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aRr" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/arrivals) -"aRs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/residential/lounge) -"aRt" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/sigmaremote) -"aRu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"aRv" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/canteen) -"aRw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"aRx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"aRy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"aRz" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"aRA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"aRB" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aRD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"aRE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/hallwaysouth) -"aRF" = ( -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/gamma/residential/lounge) -"aRG" = ( -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aRH" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"aRJ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"aRK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aRM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/freezer) -"aRN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"aRO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/virology) -"aRP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"aRQ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aRS" = ( -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"aRT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aRU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"aRV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"aRW" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"aRX" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aRY" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential) -"aRZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSa" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aSb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aSc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential) -"aSd" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"aSe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSg" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"aSh" = ( -/obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"aSi" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"aSm" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay) -"aSn" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/lobby) -"aSo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSp" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/surgery) -"aSq" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/corsat/gamma/medbay/chemistry) -"aSr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aSs" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"aSt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"aSu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"aSv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"aSw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"aSx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/checkpoint) -"aSy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSz" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail) -"aSA" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"aSB" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail) -"aSC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"aSE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"aSF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aSG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"aSH" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aSJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"aSL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - name = "Reception Desk"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo/lobby) -"aSN" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"aSO" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"aSP" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aSQ" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"aSR" = ( -/obj/item/trash/chips, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aSS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"aST" = ( -/obj/item/trash/candy, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aSU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"aSV" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "waste_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aSW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aSX" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydrowest) -"aSY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aSZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/toxins) -"aTa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aTb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/gamma/airlock/control) -"aTc" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aTd" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"aTe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aTf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aTg" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"aTi" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"aTj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aTk" = ( -/obj/item/trash/burger, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aTl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aTm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"aTn" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/capsaicin, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTo" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"aTp" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/hallwaysouth) -"aTq" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"aTr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"aTs" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"aTt" = ( -/obj/item/trash/buritto, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"aTu" = ( -/obj/item/device/camera, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aTv" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "mixed_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aTw" = ( -/obj/item/storage/fancy/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aTx" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"aTy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail) -"aTz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/north) -"aTA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTC" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/biodome/complex) -"aTD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/airlock/control) -"aTE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/sigma/north) -"aTF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"aTG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aTH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aTK" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/biodome/complex) -"aTL" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"aTM" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/gamma/biodome/complex) -"aTN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/north) -"aTO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aTP" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/biodome) -"aTQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aTT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"aTU" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Toxins Lockdown"; - pixel_y = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Virology Lockdown"; - pixel_y = 8; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaLab"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/corsat/gamma/biodome/complex) -"aTV" = ( -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aTW" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"aTX" = ( -/obj/item/storage/box/monkeycubes, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"aTY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"aTZ" = ( -/obj/structure/lamarr, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aUa" = ( -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aUb" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) -"aUc" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"aUd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/north) -"aUe" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"aUf" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aUg" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"aUh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"aUi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/north) -"aUj" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"aUk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"aUl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aUm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aUn" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar) -"aUo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aUp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aUq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"aUr" = ( -/obj/item/storage/fancy/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUs" = ( -/obj/item/weapon/pole/fancy_cane, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUt" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aUv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/gamma/foyer) -"aUw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, -/area/corsat/gamma/hallwaysouth) -"aUx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aUy" = ( -/obj/item/disk/botany, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"aUA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"aUB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"aUC" = ( -/obj/item/toy/prize/ripley{ - pixel_y = 15 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aUD" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUF" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUG" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/toxins) -"aUH" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/virology) -"aUI" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/complex) -"aUJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUK" = ( -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/corsat/gamma/administration) -"aUL" = ( -/obj/structure/surface/table/woodentable, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aUM" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aUN" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "nit_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"aUO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"aUP" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"aUQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"aUR" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"aUS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"aUT" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aUU" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/gamma/administration) -"aUV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/dorms) -"aUW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/checkpoint) -"aUX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/dorms) -"aUY" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"aUZ" = ( -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/gamma/administration) -"aVa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aVb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"aVc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"aVd" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVe" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVf" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVg" = ( -/obj/structure/closet/cabinet, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVh" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"aVi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"aVj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aVl" = ( -/obj/item/folder/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/administration) -"aVm" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/rd, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/omega/offices) -"aVo" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall"; - layer = 3 - }, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail/railcart) -"aVp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"aVq" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"aVr" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aVt" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/gamma/administration) -"aVu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/hallways) -"aVv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"aVw" = ( -/obj/item/folder/black, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/administration) -"aVx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/south/id) -"aVy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVz" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/gamma/administration) -"aVA" = ( -/obj/item/folder/white, -/obj/item/tool/stamp/rd, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/administration) -"aVB" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/theta/biodome/complex) -"aVC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"aVE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast) -"aVF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"aVG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/airlock/north) -"aVH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"aVI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"aVJ" = ( -/obj/item/paper, -/obj/item/tool/pen/red, -/obj/item/tool/stamp/rd, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/administration) -"aVK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/south) -"aVL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"aVM" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aVO" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"aVP" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aVQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/dataoffice) -"aVT" = ( -/obj/item/folder/yellow, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aVV" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar/arrivals) -"aVW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aVX" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aVY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"aVZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south) -"aWa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security) -"aWb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aWc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/security) -"aWd" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/sigma/cargo) -"aWf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"aWh" = ( -/obj/structure/largecrate/cow, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"aWi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"aWj" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/platform{ - dir = 4; - layer = 2.8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"aWk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" - }, -/obj/item/clothing/head/beret/sec/warden, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/security) -"aWl" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"aWm" = ( -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aWn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"aWo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"aWp" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/hangar/office) -"aWq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/hallways) -"aWr" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"aWs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/south) -"aWt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast) -"aWu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aWv" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo/disposal) -"aWw" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/southeast) -"aWx" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hallways) -"aWy" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"aWz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"aWA" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"aWB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aWC" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aWD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aWF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aWG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/sigma/southeast/datalab) -"aWH" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/sigma/south) -"aWI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aWK" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"aWM" = ( -/obj/item/tool/stamp/hop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aWN" = ( -/obj/item/ashtray/bronze, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aWO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aWP" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"aWQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"aWR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"aWS" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/hallways) -"aWT" = ( -/obj/structure/machinery/faxmachine{ - density = 0; - req_one_access_txt = "106" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/administration) -"aWW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aWY" = ( -/obj/structure/surface/rack, -/obj/item/device/toner, -/obj/item/device/toner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"aWZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"aXa" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"aXb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/datalab) -"aXc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth/id) -"aXd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/airlock/south) -"aXe" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/security) -"aXg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aXh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"aXi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"aXj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"aXk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"aXl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"aXm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"aXn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/airlocknorth) -"aXo" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;106;102" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aXp" = ( -/obj/structure/showcase{ - icon_state = "broadcaster_send" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aXq" = ( -/obj/structure/showcase{ - icon_state = "relay"; - name = "Telecommunication Relay" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aXr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/telecomm) -"aXs" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaWarden"; - name = "Privacy Shutters"; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"aXt" = ( -/obj/structure/machinery/recycler, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/disposal) -"aXu" = ( -/obj/item/folder/black_random, -/obj/item/clothing/mask/cigarette/cigar/havana, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"aXv" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"aXw" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/southeast/datalab) -"aXx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aXy" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"aXz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"aXB" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"aXC" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/dorms) -"aXD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"aXE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/airlocknorth) -"aXF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aXG" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -30 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aXH" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"aXJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/id) -"aXM" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/monorail) -"aXN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"aXO" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Hazardous Materials Lab"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"aXP" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"aXQ" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"aXR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/biodome/complex) -"aXS" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aXT" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aXU" = ( -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"aXV" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/security) -"aXW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/corsat/theta/biodome/complex) -"aXX" = ( -/obj/item/toy/deck, -/obj/structure/machinery/light, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"aXY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"aXZ" = ( -/obj/item/folder/black_random, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"aYa" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aYb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aYc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydrowest) -"aYd" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aYe" = ( -/obj/structure/machinery/shower, -/obj/structure/machinery/door/window/southleft{ - opacity = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aYf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydroeast) -"aYg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydrowest) -"aYh" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"aYi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"aYj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aYk" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"aYl" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"aYn" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydroeast) -"aYp" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"aYq" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"aYr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"aYs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"aYt" = ( -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"aYu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aYv" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/monorail/control) -"aYw" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"aYy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"aYz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aYA" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bottle/random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"aYB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"aYC" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/hangar/monorail/control) -"aYD" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aYE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"aYF" = ( -/obj/effect/decal/mecha_wreckage/ripley/firefighter, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aYG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"aYH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"aYI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"aYJ" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aYK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"aYL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/chemistry) -"aYM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar) -"aYN" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aYO" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aYP" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aYQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"aYR" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/biodome) -"aYS" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"aYT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"aYV" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aYW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/airlock/south) -"aYX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"aYY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"aYZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"aZa" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"aZb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"aZc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"aZd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar) -"aZe" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/rnr/library) -"aZf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"aZg" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"aZh" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar) -"aZj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"aZk" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"aZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/checkpoint) -"aZm" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"aZn" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZo" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"aZp" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aZq" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/obj/item/spacecash/c10, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZs" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"aZt" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZu" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"aZv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZw" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZx" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"aZA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"aZB" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"aZC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_gamma2"; - name = "Checkpoint Gamma"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"aZD" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "SigmaSouthS"; - name = "Sigma South Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/south) -"aZE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) -"aZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/generator) -"aZI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"aZJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"aZK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, -/area/corsat/sigma/south/complex) -"aZM" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, -/area/corsat/sigma/south/complex) -"aZQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, -/area/corsat/inaccessible) -"aZR" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/corsat/inaccessible) -"aZS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datamaint) -"aZT" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"aZV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"aZW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"aZX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"aZY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"aZZ" = ( -/obj/structure/surface/table, -/obj/item/folder/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"baa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/control) -"bab" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"bac" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"bad" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bae" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/omega/control) -"baf" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"bag" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bah" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/control) -"bai" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaHangarN"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) -"baj" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "OmegaHangarNE"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) -"bak" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"bal" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"bam" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"ban" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"bao" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/omega/control) -"bap" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarW"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) -"baq" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "OmegaHangarE"; - name = "Landing Bay Omega" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) -"bar" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"bas" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bat" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"bau" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/office) -"bav" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/control) -"baw" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"bax" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/control) -"bay" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Omega Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"baz" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"baA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baB" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baC" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"baE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baF" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"baG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"baI" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_gamma"; - name = "Gamma Emergency Access"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"baJ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/checkpoint) -"baK" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"baL" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/control) -"baM" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/control) -"baN" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/omega/control) -"baO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"baR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "delta_omega"; - name = "Checkpoint Omega"; - pixel_x = -5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "delta_theta"; - name = "Theta Emergency Access"; - pixel_x = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baT" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"baU" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/airlocknorth) -"baX" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"baY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"baZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bba" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaCSC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bbb" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/control) -"bbc" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaCSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/control) -"bbd" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bbe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hall Maintainence"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/north) -"bbf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bbh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Theta Dome Control" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bbi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bbj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bbk" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bbl" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bbm" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/omega/checkpoint) -"bbn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbo" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthS"; - name = "Theta North Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/control) -"bbp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbr" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "ThetaWestE"; - name = "Airlock Control"; - pixel_x = 5; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "ThetaWestW"; - name = "Airlock Control"; - pixel_x = -5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"bbt" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastW"; - name = "Theta East Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/east) -"bbu" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaEastE"; - name = "Theta East Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/east) -"bbv" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"bby" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbz" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"bbA" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"bbB" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"bbC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"bbD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"bbE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"bbF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaAccessC"; - name = "Security Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbG" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/complex) -"bbH" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"bbI" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/biodome/complex) -"bbJ" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/complex) -"bbK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bbL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Gamma" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/biodome/complex) -"bbM" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"bbN" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bbO" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbP" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bbQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Director's Room"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"bbR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"bbS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bbT" = ( -/obj/structure/machinery/door_control{ - id = "Toxins"; - name = "Lab Lockdown"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/toxins) -"bbU" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bbV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/biodome/complex) -"bbW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"bbX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"bbZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bca" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"bcb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydrowest) -"bcc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "Toxins Lab"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"bcd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydroeast) -"bce" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Reception Desk"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bcf" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/virology) -"bcg" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Toxins"; - name = "Toxins Lockdown" - }, -/turf/open/floor/plating, -/area/corsat/gamma/biodome/toxins) -"bci" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"bcj" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/control) -"bck" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "OmegaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bcl" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/omega/control) -"bcm" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bcn" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bco" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/control) -"bcp" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcq" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcr" = ( -/obj/structure/window/framed/corsat, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "ThetaControl"; - name = "Observation Shutters"; - use_power = 0 - }, -/turf/open/floor/plating, -/area/corsat/theta/airlock/control) -"bcs" = ( -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/security) -"bct" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bcu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"bcv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"bcw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"bcx" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"bcy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHCargoC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/id) -"bcz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bcA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "Gamma Dome Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bcB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bcC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Research Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Research Desk" - }, -/obj/structure/machinery/bot/medbot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"bcD" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bcE" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bcF" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bcG" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcH" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bcI" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bcJ" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"bcK" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bcL" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcM" = ( -/obj/structure/fence, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bcN" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bcO" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"bcP" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/gamma/cargo) -"bcQ" = ( -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bcR" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/coast/beachcorner/north_west, -/area/corsat/theta/biodome) -"bcS" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"bcT" = ( -/turf/open/gm/coast/beachcorner2/south_west, -/area/corsat/theta/biodome) -"bcU" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bcV" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bcW" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"bcX" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"bcY" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bcZ" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bda" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bdb" = ( -/obj/structure/machinery/colony_floodlight{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"bdc" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome/gunrange) -"bdd" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/corsat/sigma/biodome/gunrange) -"bde" = ( -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, -/area/corsat/sigma/biodome) -"bdf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/corsat/sigma/biodome) -"bdg" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/gunrange) -"bdh" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/gunrange) -"bdi" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/gunrange) -"bdj" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/gunrange) -"bdk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/corsat/sigma/biodome/gunrange) -"bdl" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/corsat/sigma/biodome/gunrange) -"bdm" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/gunrange) -"bdn" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/corsat/sigma/biodome) -"bdo" = ( -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/corsat/sigma/biodome) -"bdp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/corsat/sigma/biodome/gunrange) -"bdq" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/corsat/sigma/biodome) -"bdr" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/gunrange) -"bds" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/gunrange) -"bdt" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/corsat/sigma/biodome/gunrange) -"bdu" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/corsat/sigma/biodome/gunrange) -"bdv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/corsat/sigma/biodome/gunrange) -"bdw" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/corsat/sigma/biodome/gunrange) -"bdx" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bdy" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"bdz" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/corsat/theta/biodome) -"bdA" = ( -/turf/open/gm/coast/north, -/area/corsat/theta/biodome) -"bdB" = ( -/turf/open/gm/coast/beachcorner/north_east, -/area/corsat/theta/biodome) -"bdC" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/corsat/theta/biodome) -"bdD" = ( -/turf/open/gm/river, -/area/corsat/theta/biodome) -"bdE" = ( -/turf/open/gm/coast/beachcorner2/north_east, -/area/corsat/theta/biodome) -"bdF" = ( -/turf/open/gm/coast/west, -/area/corsat/theta/biodome) -"bdG" = ( -/turf/open/gm/coast/east, -/area/corsat/theta/biodome) -"bdI" = ( -/turf/open/gm/coast/beachcorner/south_east, -/area/corsat/theta/biodome) -"bdJ" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"bdK" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"bdL" = ( -/turf/open/gm/coast/south, -/area/corsat/theta/biodome) -"bdM" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/corsat/theta/biodome) -"bdO" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/corsat/theta/biodome) -"bdP" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdQ" = ( -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"bdR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdS" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bdT" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bdU" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bdV" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"bdW" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"bdX" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"bdY" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"bdZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bea" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"beb" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"bec" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"bed" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"bee" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"bef" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, -/area/corsat/sigma/biodome/gunrange) -"beg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"beh" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bei" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bej" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Sigma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bek" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "delta_omega"; - name = "Omega Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"bel" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bem" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"ben" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/corsat/theta/biodome) -"beo" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bep" = ( -/obj/structure/flora/jungle/planttop1, -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"beq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/corsat/sigma/biodome/gunrange) -"ber" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bes" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"bet" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ - id = "delta_theta"; - name = "Theta Emergency Access"; - use_power = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"beu" = ( -/obj/structure/target/syndicate, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/gunrange) -"bev" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/corsat/theta/biodome) -"bew" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"bex" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/coast/north, -/area/corsat/theta/biodome) -"bey" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"bez" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beA" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beB" = ( -/obj/structure/flora/jungle/alienplant1, -/turf/open/gm/river, -/area/corsat/theta/biodome) -"beD" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"beE" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"beF" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"beG" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/corsat/theta/biodome) -"beH" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"beI" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"beJ" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/corsat/theta/biodome) -"beK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, -/area/corsat/sigma/biodome/gunrange) -"beL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/corsat/sigma/biodome/gunrange) -"beM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/corsat/sigma/biodome/gunrange) -"beN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/corsat/sigma/biodome/gunrange) -"beO" = ( -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"beP" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"beQ" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"beR" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"beS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"beT" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"beU" = ( -/obj/structure/target, -/obj/item/clothing/suit/storage/militia, -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/corsat/sigma/biodome/gunrange) -"beV" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/corsat/sigma/biodome/gunrange) -"beW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome/gunrange) -"beX" = ( -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"beY" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/corsat/theta/biodome) -"beZ" = ( -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfa" = ( -/turf/closed/ice/end, -/area/corsat/gamma/biodome) -"bfb" = ( -/turf/closed/ice/end{ - dir = 8 - }, -/area/corsat/gamma/biodome) -"bfc" = ( -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfd" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfe" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bff" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 9; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfg" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfh" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 10; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfi" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfj" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single_ends" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfk" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "single_ends" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfl" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "north_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfm" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "south_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfn" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "single" - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bfo" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfp" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfq" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfr" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "east_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfs" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bft" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfu" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfv" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "west_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfw" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome/gunrange) -"bfx" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - icon_state = "east_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfy" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "south_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfz" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfA" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfB" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfC" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfD" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 10; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfE" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4; - icon_state = "single_tshape" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfF" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 6; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfG" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 9; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfH" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfI" = ( -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfJ" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfK" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "west_wall" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfL" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 5; - icon_state = "single_part" - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfM" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1 - }, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfN" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1; - icon_state = "full_corners" - }, -/obj/structure/ice/ice_rock/cornerOverlay, -/turf/closed/ice_rock/corners, -/area/corsat/gamma/biodome) -"bfO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/corsat/sigma/biodome/gunrange) -"bfP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"bfQ" = ( -/turf/closed/ice, -/area/corsat/gamma/biodome) -"bfR" = ( -/turf/closed/ice/end{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfS" = ( -/turf/closed/ice/end{ - dir = 1 - }, -/area/corsat/gamma/biodome) -"bfT" = ( -/turf/closed/ice/corner, -/area/corsat/gamma/biodome) -"bfU" = ( -/turf/closed/ice/corner{ - dir = 1 - }, -/area/corsat/gamma/biodome) -"bfV" = ( -/turf/closed/ice/straight{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfW" = ( -/turf/closed/ice/straight, -/area/corsat/gamma/biodome) -"bfX" = ( -/turf/closed/ice/corner{ - dir = 4 - }, -/area/corsat/gamma/biodome) -"bfY" = ( -/turf/closed/ice/corner{ - dir = 8 - }, -/area/corsat/gamma/biodome) -"bfZ" = ( -/obj/structure/ice/thin/end{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bga" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgb" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgc" = ( -/obj/structure/ice/thin/end{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgd" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bge" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgf" = ( -/obj/structure/ice/thin/end{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgg" = ( -/obj/structure/ice/thin/straight{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgh" = ( -/obj/structure/ice/thin/corner{ - dir = 4 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgi" = ( -/obj/structure/ice/thin/corner{ - dir = 8 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"bgj" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgk" = ( -/turf/closed/ice_rock/singleEnd, -/area/corsat/gamma/biodome) -"bgl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"bgn" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome) -"bgo" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgr" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/gunrange) -"bgs" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bgt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) -"bgu" = ( -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/corsat/sigma/biodome) -"bgv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/corsat/sigma/biodome) -"bgw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Gamma"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bgx" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/emergency_access) -"bgy" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive, -/obj/item/explosive/grenade/high_explosive, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bgz" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 1 - }, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bgB" = ( -/turf/closed/wall, -/area/corsat/sigma/biodome/scrapyard) -"bgC" = ( -/obj/structure/fence, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgG" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_19" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgH" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgI" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_20" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgK" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_16" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgL" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgM" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgN" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgO" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgP" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_4" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgR" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgS" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgT" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_8" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgU" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/corsat/sigma/biodome) -"bgW" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgX" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgY" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/corsat/sigma/biodome/scrapyard) -"bgZ" = ( -/turf/closed/wall/r_wall, -/area/corsat/sigma/biodome/testgrounds) -"bha" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bhb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bhc" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"bhd" = ( -/obj/structure/largecrate/supply/ammo/m39/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bhe" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/corsat/sigma/biodome) -"bhf" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bhg" = ( -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"bhh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/corsat/sigma/biodome/testgrounds) -"bhi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"bhj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bhk" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"bhl" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/corsat/sigma/biodome/testgrounds) -"bhm" = ( -/obj/structure/largecrate/supply/ammo/pistol/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bhn" = ( -/turf/closed/mineral{ - color = "#c48664" - }, -/area/corsat/sigma/biodome) -"bho" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/corsat/sigma/biodome) -"bhp" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/corsat/sigma/biodome) -"bhq" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, -/area/corsat/sigma/biodome) -"bhr" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_18" - }, -/area/corsat/sigma/biodome) -"bhs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/corsat/sigma/biodome) -"bht" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome) -"bhu" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_13" - }, -/area/corsat/sigma/biodome) -"bhv" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/corsat/sigma/biodome) -"bhw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_14" - }, -/area/corsat/sigma/biodome) -"bhx" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bhy" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bhz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"bhA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"bhB" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bhC" = ( -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"bhD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"bhE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"bhF" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"bhI" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bhJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"bhK" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"bhL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bhM" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bhN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bhO" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bhP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"bhQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"bhR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bhS" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/hallways) -"bhT" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bhU" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering/atmos) -"bhV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bhW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/northright{ - name = "Firing Lane" - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome/gunrange) -"bhX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bhY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bhZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bia" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bib" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"bic" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"bid" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bie" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bif" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"big" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bih" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bii" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bij" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"bik" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bil" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bim" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bin" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bio" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bip" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"biq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bir" = ( -/obj/structure/bed/stool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bis" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"biu" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biv" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biw" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"bix" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biy" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"biz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/security) -"biA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biB" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"biC" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"biE" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biF" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biG" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"biH" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/surgery) -"biI" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"biJ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"biK" = ( -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"biL" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"biM" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"biO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"biP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"biQ" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"biR" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"biS" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/airlocknorth) -"biT" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"biU" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/corsat/sigma/biodome/scrapyard) -"biV" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/shaker, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"biW" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/hallways) -"biX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"biY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"biZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bja" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"bjb" = ( -/obj/structure/showcase{ - icon_state = "hub"; - name = "Telecommunication Hub" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"bjc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bjd" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bje" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bjf" = ( -/obj/structure/machinery/r_n_d/bioprinter, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bjg" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bjh" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bji" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bjj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bjk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering/atmos) -"bjl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "OmegaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bjm" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bjn" = ( -/obj/structure/surface/rack, -/obj/item/implanter/neurostim, -/obj/item/implanter/neurostim, -/obj/item/implanter/adrenalin, -/obj/item/implanter/adrenalin, -/obj/item/implanter/loyalty, -/obj/item/implanter/loyalty, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bjp" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bjq" = ( -/obj/structure/bed, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bjr" = ( -/obj/item/broken_device, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bjs" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bjt" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bju" = ( -/obj/item/cell/crap, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bjv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bjw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bjx" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"bjy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/glass/rag{ - pixel_y = 10 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bjz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/microwave, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bjA" = ( -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/meat/monkey, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/structure/closet/crate/freezer, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bjB" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"bjC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"bjD" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bjE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"bjG" = ( -/obj/structure/closet/crate/medical, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bjH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bjI" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bjJ" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hallways) -"bjK" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/freezer) -"bjM" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bjN" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bjO" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bjP" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bjQ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"bjR" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bjU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "CORSAT Library" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bjV" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "CORSAT Library"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bjW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/cargo) -"bjY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bjZ" = ( -/obj/structure/machinery/door_control{ - id = "OmegaCargo"; - name = "Cargo Door"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bka" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "OmegaCargo"; - name = "Omega Cargo Bay"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/cargo) -"bkb" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "OmegaCargo"; - name = "Omega Cargo Bay"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/cargo) -"bkc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south/id) -"bkd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/biodome/complex) -"bke" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Outer Gate Shutters"; - pixel_x = 5; - pixel_y = 24; - use_power = 0 - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "RemoteGate"; - name = "Gate Shutters"; - pixel_x = -5; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bki" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGate"; - name = "Gate Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/sigmaremote) -"bko" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Research Complex"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydroeast) -"bkp" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; - req_one_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bkq" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 - }, -/obj/item/weed_extract, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bkr" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Implantation Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"bks" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"bku" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Hangar Office" - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"bkv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Flight Control" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bkx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/cargo) -"bky" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/monorail) -"bkA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/cargo) -"bkB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/cargo) -"bkC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaResC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"bkD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaIDSC"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/airlock/south/id) -"bkE" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/airlock/south/id) -"bkF" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/south/id) -"bkJ" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/sigma/south/security) -"bkK" = ( -/obj/structure/machinery/door_control{ - id = "SigmaSecC"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/south/security) -"bkL" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"bkM" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaHOS"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"bkN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Head of Security Office"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaHOS"; - name = "Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"bkO" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "OmegaO"; - name = "Omega Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/biodome) -"bkP" = ( -/obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/plating, -/area/corsat/gamma/security/cells) -"bkR" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"bkS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/omega/complex) -"bkT" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/lungs, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"bkU" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/heart, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"bkV" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"bkW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/ce, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"bkX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bkY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Chief Engineer's Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"bkZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"blb" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"blc" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bld" = ( -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/target/syndicate, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"blg" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"blh" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"blj" = ( -/obj/structure/machinery/pipedispenser, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"blk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/cargo) -"bll" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"blm" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bln" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"blo" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"blp" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/monorail) -"blr" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"bls" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/monorail) -"blt" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"bly" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"blz" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/monorail) -"blA" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"blB" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"blC" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"blD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar) -"blF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"blG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar) -"blH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"blI" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar) -"blJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"blK" = ( -/turf/closed/wall/biodome, -/area/corsat/gamma/hangar/arrivals) -"blL" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"blM" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hangar/office) -"blN" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat, -/area/corsat/gamma/hangar/cargo) -"blO" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"blP" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"blQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"blS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"blT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"blU" = ( -/obj/structure/monorail, -/turf/open/space, -/area/space) -"blW" = ( -/obj/structure/monorail{ - dir = 5 - }, -/turf/open/space, -/area/space) -"blX" = ( -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/space, -/area/space) -"blY" = ( -/obj/structure/monorail{ - dir = 8 - }, -/turf/open/space, -/area/space) -"blZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/hangar/monorail/control) -"bma" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"bmb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bmc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar) -"bmd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar) -"bme" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar) -"bmh" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bmi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - id = "OmegaA"; - name = "Xenobiology"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bmj" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail) -"bmk" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/monorail) -"bml" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"bmm" = ( -/obj/structure/window/framed/corsat/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/control) -"bmn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/monorail) -"bmo" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"bmp" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/monorail) -"bmq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/monorail) -"bmr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail) -"bms" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/hangar/monorail) -"bmu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"bmv" = ( -/obj/structure/monorail, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bmw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bmx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/monorail) -"bmz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/monorail) -"bmA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/monorail) -"bmB" = ( -/obj/structure/monorail{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bmC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail) -"bmD" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/monorail/control) -"bmF" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail) -"bmG" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail/control) -"bmH" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Flight Control" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bmI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"bmJ" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Hangar Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"bmL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bmM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bmN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"bmO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/arrivals) -"bmS" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/arrivals) -"bmV" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Xenobiology"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bmW" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "GammaCheckpointS"; - name = "Gamma Checkpoint"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/checkpoint) -"bmX" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/checkpoint) -"bmY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/checkpoint) -"bmZ" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/cargo) -"bna" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"bnb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/arrivals) -"bnd" = ( -/obj/structure/fence, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"bne" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"bnf" = ( -/obj/structure/sign/safety/fridge, -/turf/closed/wall/biodome, -/area/corsat/gamma/freezer) -"bni" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bnj" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bnk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hazardous Materials Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"bnl" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/engineering/core) -"bnm" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"bnn" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"bno" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-gamma-north" - }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"bnp" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bnq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bnr" = ( -/obj/structure/sign/safety/galley, -/turf/closed/wall/biodome, -/area/corsat/gamma/canteen) -"bns" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bnw" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/monorail) -"bnx" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bny" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bnz" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bnA" = ( -/obj/structure/surface/rack{ - name = "Acid Resistant Rack"; - unacidable = 1 - }, -/obj/item/xenos_claw, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bnB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bnC" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bnD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bnE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Oxygen Supply Console" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bnF" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bnH" = ( -/obj/structure/sign/safety/biohazard, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome/virology) -"bnI" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/machinery/space_heater, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bnJ" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay) -"bnK" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/lobby) -"bnL" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar) -"bnM" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay) -"bnN" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"bnO" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/almayer/white, -/area/corsat/gamma/medbay/lobby) -"bnP" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/biodome) -"bnQ" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_y = -30 - }, -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"bnR" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/airlock/control) -"bnU" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/security) -"bnV" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"bnW" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"bnY" = ( -/obj/structure/safe, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bnZ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/id) -"boc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/north) -"boe" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/biodome) -"bof" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/sigma/cargo) -"bog" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"boh" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"boi" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"boj" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bon" = ( -/obj/structure/fence, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/auto_turf/snow/layer2, -/area/corsat/gamma/biodome) -"boo" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"bop" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = -32 - }, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/control) -"boq" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/biodome, -/area/corsat/omega/cargo) -"bor" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/theta/biodome) -"bou" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/generator) -"bov" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"bow" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/sigma/south/complex) -"box" = ( -/obj/structure/sign/safety/radio_rad, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/telecomm) -"boy" = ( -/obj/structure/sign/safety/terminal, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/southeast/telecomm) -"boz" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = -32 - }, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/corsat/theta/biodome) -"boA" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/turf/open/floor/corsat{ - icon_state = "omega" - }, -/area/corsat/omega/hallways) -"boB" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 32 - }, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-theta-east" - }, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"boD" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security) -"boE" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydrowest) -"boF" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"boG" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydrowest) -"boH" = ( -/obj/structure/sign/safety/biolab{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"boJ" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/hangar) -"boK" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar) -"boL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"boM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo/lobby) -"boN" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"boP" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"boQ" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/sigma/cargo) -"boR" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/cargo) -"boT" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"boU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"boV" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"boW" = ( -/obj/item/bananapeel, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"boX" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"boY" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bpa" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"bpb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" - }, -/area/corsat/gamma/residential) -"bpd" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bpe" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"bph" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, -/area/corsat/gamma/residential/showers) -"bpi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bpj" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"bpl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bpn" = ( -/obj/structure/surface/table/almayer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bpq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp/cmo, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bpr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"bps" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"bpt" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpv" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail/control) -"bpz" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bpA" = ( -/obj/item/tool/minihoe, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bpB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bpC" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpE" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/suit/chef/classic, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"bpH" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bpK" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bpL" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bpM" = ( -/obj/structure/surface/rack, -/obj/item/device/transfer_valve, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bpN" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bpO" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bpP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"bpR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bpS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/north) -"bpT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/morgue) -"bpU" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"bpW" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bpX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bqa" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bqb" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bqd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"bqe" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"bqf" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bqg" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bqh" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bqi" = ( -/obj/item/cell/super/empty, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bqj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bqk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bqm" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bqn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bqo" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "oxy_corsat_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bqp" = ( -/obj/structure/pipes/unary/outlet_injector{ - name = "Waste Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bqq" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/administration) -"bqr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "GammaLab"; - name = "Privacy Shutters" - }, -/turf/open/floor/wood, -/area/corsat/gamma/biodome/complex) -"bqs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/hallwaysouth) -"bqw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"bqx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bqy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"bqz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bqA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bqC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bqD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bqE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bqG" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/theta/airlock/control) -"bqI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/west/id) -"bqJ" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"bqK" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"bqL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bqM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"bqO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"bqR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/monorail) -"bqS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"bqU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"bqV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/hangar/office) -"bqW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"bqY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"bqZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"brd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"brf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"brg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"brj" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"brm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"brn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"bro" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"brq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"brr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"brs" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"brt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bru" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"brw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"brx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bry" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"brz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"brB" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/omega/offices) -"brD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"brE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"brF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"brI" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"brN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/security) -"brO" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"brP" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"brQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"brR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"brT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"brU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"brX" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"brY" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"brZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bsa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bsb" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"bsd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bse" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsf" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsg" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsi" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/security) -"bsl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"bsn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bso" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bsp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/security) -"bsr" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/security) -"bss" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/security) -"bsx" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"bsy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/scalpel/laser{ - pixel_y = 10 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bsz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bsB" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bsD" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"bsE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bsG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bsI" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"bsJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bsK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bsL" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bsM" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/south/offices) -"bsN" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"bsO" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"bsP" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydroeast) -"bsQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bsR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bsS" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bsT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bsU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bsW" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"bsX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bsY" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydroeast) -"bsZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"bta" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"btb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"btf" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"btg" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"bth" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"bti" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydrowest) -"btj" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydroeast) -"btk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"btl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"btn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"bto" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydroeast) -"btq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bts" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"btt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat{ - name = "Acid Resistant Hemostat"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"btv" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/botanydisk, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"btw" = ( -/obj/structure/surface/rack, -/obj/item/cell/potato{ - charge = 1000; - maxcharge = 3000; - name = "overpowered potato" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"btx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"btz" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"btB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"btC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btD" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btI" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"btJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btN" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/gamma/hangar/flightcontrol) -"btO" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"btS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"btT" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/virology) -"btU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"btV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"btW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"btX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"btY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"btZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bua" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/dataoffice) -"bub" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"buc" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"bud" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"bue" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"buh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/datalab) -"bui" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/datalab) -"buj" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"bum" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bun" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buo" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bup" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buq" = ( -/obj/structure/bed/chair/wood/wings, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bur" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bus" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"but" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"buw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bux" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"buy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"buz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"buA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"buB" = ( -/obj/structure/sign/safety/distribution_pipes{ - desc = "A sign that denotes the proximity of a life support system." - }, -/turf/closed/wall/biodome, -/area/corsat/gamma/engineering/atmos) -"buC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"buD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"buE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/stamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"buF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"buG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"buI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"buJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"buK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar) -"buL" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"buM" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"buN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"buO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/hallwaysouth) -"buP" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"buQ" = ( -/obj/item/alien_embryo, -/obj/item/alien_embryo, -/obj/item/alien_embryo, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"buR" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"buS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"buT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/hallwaysouth) -"buU" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"buV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"buW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"buX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/containment) -"buY" = ( -/obj/structure/prop/mech/drill, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"buZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Robotics"; - req_one_access_txt = "102" - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bvf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Head Office"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bvh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Electronics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bvi" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bvj" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bvk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/corsat/sigma/south/robotics) -"bvm" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvn" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/engineering, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvo" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/butler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/tool/weldingtool, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvs" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_17" - }, -/area/corsat/sigma/biodome/scrapyard) -"bvt" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bvw" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"bvx" = ( -/obj/structure/bed, -/obj/effect/landmark/survivor_spawner, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bvB" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvE" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - amount = 10 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bvF" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"bvJ" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bvL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bvN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bvP" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/smes_coil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvQ" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvR" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvS" = ( -/obj/structure/bed, -/obj/item/tool/lighter/zippo, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvT" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bvX" = ( -/obj/item/tool/weldingtool/experimental, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bvY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bvZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/platinum{ - amount = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"bwa" = ( -/obj/structure/machinery/smartfridge/secure/virology{ - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bwb" = ( -/obj/structure/machinery/smartfridge/chemistry/virology{ - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"bwc" = ( -/obj/structure/surface/rack, -/obj/item/device/chameleon, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bwe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwh" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwi" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/medic, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bwk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwm" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwn" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwo" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bwp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Mech Assembly"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bwr" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bwt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"bwu" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"bww" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/southeast/generator) -"bwx" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bwz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Robotics Workshop"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bwA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/t_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwD" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwG" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/wirecutters, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bwH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwN" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bwO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bwP" = ( -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"bwQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bwR" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bwS" = ( -/obj/structure/machinery/light, -/turf/closed/wall/biodome, -/area/corsat/sigma/south/engineering) -"bwT" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/engineering) -"bwU" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/engineering) -"bwV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bwW" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bwY" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/mecha/gygax/main, -/obj/item/circuitboard/mecha/gygax/targeting, -/obj/item/circuitboard/mecha/gygax/peripherals, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bwZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bxb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Workshop"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bxe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxf" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxg" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxh" = ( -/obj/item/implant/neurostim, -/obj/item/implant/neurostim, -/obj/item/implant/adrenalin, -/obj/item/implant/adrenalin, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxi" = ( -/obj/item/implant/loyalty, -/obj/item/implant/loyalty, -/obj/item/implant/compressed, -/obj/item/implant/compressed, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxj" = ( -/obj/item/implant/death_alarm, -/obj/item/implant/death_alarm, -/obj/item/implant/tracking, -/obj/item/implant/tracking, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"bxm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/tesla_energy_relay, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxo" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxr" = ( -/obj/structure/prop/mech/mech_parts/part/durand_head, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/sigma/south/robotics) -"bxs" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/mech/armor_booster, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxu" = ( -/obj/structure/prop/mech/mech_parts/part/durand_right_arm, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/sigma/south/robotics) -"bxv" = ( -/obj/structure/prop/mech/mech_parts/part/durand_torso, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/robotics) -"bxw" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/sigma/south/robotics) -"bxx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"bxy" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/sigma/south/robotics) -"bxz" = ( -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/robotics) -"bxA" = ( -/obj/structure/prop/mech/mech_parts/part/durand_left_leg, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/sigma/south/robotics) -"bxB" = ( -/obj/structure/girder/displaced, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) -"bxC" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxF" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"bxH" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bxI" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxJ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxK" = ( -/obj/structure/surface/rack, -/obj/item/holder/drone, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxL" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"bxM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bxN" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/rack, -/obj/item/powerloader_clamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxO" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 1"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/inaccessible) -"bxP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Robotics Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bxQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bxR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bxS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 4"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/inaccessible) -"bxT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/cell/secborg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxU" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bxV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Cybernetics Lab"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"bxW" = ( -/obj/structure/closet/crate, -/obj/item/organ/brain/prosthetic, -/obj/item/organ/eyes/prosthetic, -/obj/item/organ/heart/prosthetic, -/obj/item/organ/kidneys/prosthetic, -/obj/item/organ/liver/prosthetic, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bxX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bxY" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 2"; - name = "Containment Cell 4"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/inaccessible) -"bxZ" = ( -/obj/structure/closet/crate, -/obj/item/robot_parts/robot_component/actuator, -/obj/item/robot_parts/robot_component/armour, -/obj/item/robot_parts/robot_component/camera, -/obj/item/robot_parts/robot_component/diagnosis_unit, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bya" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/obj/item/tool/crowbar, -/obj/item/tool/screwdriver, -/obj/item/tool/wrench, -/obj/item/stack/nanopaste, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"byb" = ( -/obj/structure/machinery/optable, -/obj/item/robot_parts/robot_suit, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"byc" = ( -/obj/structure/surface/rack, -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"byd" = ( -/obj/structure/surface/rack, -/obj/item/frame/bucket_sensor, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bye" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Gamma Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byg" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"byh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"byi" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/south/engineering) -"byj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"byk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"byl" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bym" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"byn" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Omega Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byo" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Theta Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byp" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Sigma Director's Office"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"byr" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"bys" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"byt" = ( -/obj/structure/machinery/juicer, -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"byu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"byv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"byw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byy" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"byz" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byE" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"byF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"byG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byH" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/liver, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"byI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"byJ" = ( -/obj/structure/surface/rack, -/obj/item/restraints, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/closed/wall/biodome, -/area/corsat/omega/complex) -"byN" = ( -/obj/structure/machinery/shower, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byP" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"byQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Omega Research Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"byS" = ( -/obj/structure/sink{ - pixel_y = 25 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byT" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byV" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/eyes, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"byW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"byX" = ( -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/item/xeno_egg, -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"byY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"byZ" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bzb" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bzc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bzd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bze" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bzf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"bzg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzj" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzk" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzl" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzm" = ( -/obj/structure/window/framed/corsat/hull/research, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bzn" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - icon_state = "door_open"; - id = "CORSAT Containment 4"; - name = "Containment Cell 3"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/inaccessible) -"bzo" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaIDSC"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bzp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Complex Theta"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bzr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Autopsy Storage"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzs" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Containment Chambers"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bzu" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - name = "\improper Xeno Autopsy"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bzw" = ( -/obj/structure/machinery/door/airlock/almayer/research{ - dir = 1; - locked = 1; - name = "\improper Decontamination Chamber"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzx" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Xenobiology Reception Desk"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bzy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzz" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bzA" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/tool/weedkiller/triclopyr, -/obj/item/tool/weedkiller/lindane, -/obj/item/tool/weedkiller/D24, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzB" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzD" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzE" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonescanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bzF" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bzG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bzH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bzI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bzJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bzK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bzL" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bzM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bzN" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bzP" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bzQ" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bzS" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"bzT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bzU" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/robotics_cyborgs, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bzV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/robotanalyzer, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bzW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bzY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mmi/radio_enabled, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bzZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAb" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/morgue) -"bAd" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAe" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bAh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bAi" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bAj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/syringe_case/regular, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"bAl" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" - }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bAm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAo" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bAp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bAq" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/XenoItem/AntiAcid, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAs" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/XenoItem/ResinPaste, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bAv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bAw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics Lab"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bAx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bAy" = ( -/obj/structure/surface/rack, -/obj/item/XenoBio/Resin, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bAA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"bAD" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/scalpel, -/obj/item/reagent_container/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"; - pixel_x = 12; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"bAE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Genetics Lab"; - req_one_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bAF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bAG" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bAH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bAI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bAJ" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAO" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bAP" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"bAR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bAT" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bAV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bAW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bAX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"bAY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"bAZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bBa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bBb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bBc" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CMO Office"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"bBd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bBe" = ( -/obj/structure/surface/table/almayer, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bBf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bBh" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"bBj" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 - }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = -5 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBk" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/chemistry) -"bBl" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = 5 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBn" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/obj/item/storage/box/beakers, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bBq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bBr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bBs" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bBt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"bBu" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"bBw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bBx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bBy" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bBA" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bBB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential/researcher) -"bBE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBF" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"bBG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBH" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" - }, -/obj/item/XenoBio/Blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBJ" = ( -/obj/structure/surface/rack, -/obj/item/XenoBio/Chitin, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - name = "Secure Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBL" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Containment"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bBM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bBN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bBP" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bBQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "Dehydration Chamber"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bBT" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bBW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bBX" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/gamma/hangar) -"bBY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/omega/complex) -"bBZ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCd" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCe" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCg" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCh" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "\improper Mentor's Guide Bookcase" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCi" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/thermal, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/obj/structure/window/reinforced/toughened, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bCk" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCm" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCn" = ( -/obj/structure/bookcase, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCo" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/library) -"bCq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"bCu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bCv" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bCw" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCx" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"bCy" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"bCB" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCD" = ( -/obj/item/storage/belt/gun/m4a3/vp78{ - desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; - name = "M276 pattern VP78 holster rig" - }, -/obj/structure/closet/secure_closet/detective{ - name = "Head of Security's Cabinet" - }, -/obj/item/device/flash, -/obj/item/device/hailer, -/obj/item/device/megaphone, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCE" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"bCF" = ( -/obj/structure/closet/secure_closet/security_empty{ - icon_broken = "hossecurebroken"; - icon_closed = "hossecure"; - icon_locked = "hossecure1"; - icon_off = "hossecureoff"; - icon_opened = "hossecureopen"; - icon_state = "hossecure1"; - name = "Head of Security's Locker" - }, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/device/binoculars, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCG" = ( -/obj/structure/machinery/door_control{ - id = "ThetaIDEC"; - name = "Privacy Shutters"; - pixel_y = -24; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSecC"; - name = "Security Shutters"; - pixel_x = 10; - pixel_y = -24; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCH" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bCI" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/security) -"bCJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"bCL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"bCM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"bCN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"bCQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bCR" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bCS" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bCV" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaAccessC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bCW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) -"bCX" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthAirlockC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/gamma/airlock/south) -"bCZ" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bDa" = ( -/obj/structure/machinery/computer/rdservercontrol, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bDd" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/security) -"bDe" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"bDf" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bDg" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bDk" = ( -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bDl" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/security) -"bDn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/checkpoint) -"bDp" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaSecC"; - name = "Security Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/security) -"bDs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bDt" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bDu" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bDv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Armory"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"bDw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Warden's Office"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"bDy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bDz" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bDC" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"bDD" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/flasher{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bDF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bDH" = ( -/obj/structure/window/framed/corsat/cell/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHolding2"; - name = "Holding Cell 2" - }, -/turf/open/floor/plating, -/area/corsat/sigma/south/security) -"bDI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/theta/airlock/west/id) -"bDJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 2"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHolding2"; - name = "Holding Cell 2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"bDM" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bDN" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bDO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bDP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/keycard_auth/lockdown/corsat, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bDT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bDU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"bDX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/airlock/south/id) -"bDY" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bDZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bEb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"bEf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bEg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bEi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarNE"; - name = "Checkpoint Control"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/hangar/security) -"bEj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/control) -"bEk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"bEl" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/chemistry) -"bEm" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"bEn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/control) -"bEo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"bEp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaHangarE"; - name = "Checkpoint Control"; - pixel_x = 7; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "OmegaHangarW"; - name = "Checkpoint Control"; - pixel_x = -7; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"bEq" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"bEr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"bEs" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"bEv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Research Complex Omega"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"bEy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bEC" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"bED" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bEE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/red, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bEF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEH" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bEK" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/corsat/gamma/administration) -"bEM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bEN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/zippo, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"bEO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/gamma/administration) -"bES" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/gamma/administration) -"bET" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"bEU" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bEV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bEW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/administration) -"bEX" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/administration) -"bFc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/corsat/sigma/cafe) -"bFf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/corsat/omega/offices) -"bFg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bFi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bFj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bFm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/corsat/omega/offices) -"bFn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/omega/offices) -"bFo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bFp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bFq" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFr" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bFs" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bFu" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bFv" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"bFw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFx" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/security) -"bFz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"bFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFB" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFF" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"bFG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"bFH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bFI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/security) -"bFK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security) -"bFL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bFM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFO" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFR" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFU" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFV" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFX" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bFZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bGc" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGd" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bGh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bGj" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bGn" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bGp" = ( -/obj/structure/machinery/power/apc/hyper{ - pixel_y = -30; - start_charge = 0 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/monorail) -"bGq" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/hangar/monorail/control) -"bGr" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/hangar/monorail/control) -"bGs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"bGt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/hangar/monorail/control) -"bGu" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"bGy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Monorail Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bGB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"bGE" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"bGH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"bGI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/landing/console) -"bGJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bGL" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bGM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bGN" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"bGO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bGP" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bGQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"bGR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"bGT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"bGW" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"bGZ" = ( -/obj/structure/bed/chair, -/obj/item/bananapeel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bHa" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/corsat/gamma/administration) -"bHb" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/corsat/gamma/administration) -"bHc" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security) -"bHd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential/researcher) -"bHe" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"bHf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/foyer) -"bHg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"bHi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"bHj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"bHk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"bHl" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"bHy" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"bHz" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"bHA" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bHB" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bHC" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"bHL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"bHR" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/wood, -/area/corsat/gamma/rnr/bar) -"bIa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/hangar/office) -"bIe" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"bIk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"bIU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"bIX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bJa" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo) -"bJc" = ( -/obj/structure/machinery/conveyor_switch, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"bJf" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bJg" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"bJh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bJi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"bJj" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) -"bJk" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/cargo) -"bJl" = ( -/obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"bJm" = ( -/obj/structure/powerloader_wreckage, -/turf/open/mars_cave{ - icon_state = "mars_cave_22" - }, -/area/corsat/sigma/biodome/scrapyard) -"bJq" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"bJr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/west) -"bJu" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"bJw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bJx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"bJA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bJB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bJC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bJD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bJE" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"bJF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"bJG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bJH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bJI" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bJJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bJK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bJL" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"bJM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bJN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bJO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bJP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bJQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bJR" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bJS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bJT" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bJU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bJV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bJW" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bJX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bJY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bJZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SigmaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bKb" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bKc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKg" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKh" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("theta") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKk" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKl" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bKp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKq" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bKr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKy" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bKz" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKA" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bKB" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKC" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bKD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKH" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKI" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"bKJ" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"bKL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bKM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"bKN" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"bKQ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail/control) -"bKR" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bKS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bKT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail/control) -"bKU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/hangar/monorail) -"bKX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail) -"bKY" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bKZ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Monorail Control"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/monorail/control) -"bLc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/hangar/monorail) -"bLd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLg" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLk" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bLl" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/omega/maint) -"bLm" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/monorail{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLs" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLu" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail/control) -"bLw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/office) -"bLx" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"bLy" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLz" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLA" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bLB" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bLC" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLD" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLE" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLF" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLG" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/capacitor/super, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLH" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Custodial Closet"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"bLL" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLS" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLW" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bLY" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMc" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bMf" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMh" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ - dir = 1; - name = "Quartermaster's Office"; - req_one_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"bMi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMj" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMk" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bMu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bMv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/timer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bMw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"bMA" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bMB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bMC" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bMD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bME" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"bMI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bMM" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bMN" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bMO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bMP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bMQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bMR" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"bMS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"bMT" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bMU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bMX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bMY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bNc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bNd" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/omega/offices) -"bNe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bNh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bNk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bNl" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bNm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bNo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bNp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bNq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNs" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"bNv" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNx" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNB" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bNC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bND" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bNE" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"bNF" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"bNM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bNN" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"bNO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering Storage"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"bNP" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bNQ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bNR" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bNS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bNT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bNV" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"bNW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bNX" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bNY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bNZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bOa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/omega/control) -"bOb" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bOc" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/obj/item/pamphlet/skill/powerloader, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"bOd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"bOe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/omega/control) -"bOf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOg" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOh" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Viro"; - name = "Virology Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"bOl" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOm" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"bOn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"bOo" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"bOq" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bOr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"bOs" = ( -/obj/structure/largecrate/lisa, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"bOt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"bOu" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"bOw" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOx" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOC" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"bOD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOE" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/trash/popcorn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOF" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"bOG" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bOH" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"bOI" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/gamma/cargo/lobby) -"bOJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bOK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bOL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"bON" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bOP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bOQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"bOR" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"bOS" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/crowbar, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/cargo) -"bOT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"bOU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"bOV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"bOW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"bOX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"bOY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"bOZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"bPa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"bPb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"bPe" = ( -/obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"bPf" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bPg" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/residential/maint) -"bPh" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"bPi" = ( -/obj/structure/surface/table, -/obj/item/corncob, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"bPj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/assembly/mousetrap, -/obj/item/device/assembly/mousetrap, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bPk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast/datamaint) -"bPl" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bPm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bPn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/item/tool/stamp{ - name = "Quartermaster's stamp" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPr" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPs" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"bPt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"bPv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPw" = ( -/obj/structure/surface/table/almayer, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"bPx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"bPy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/chips, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"bPD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"bPE" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPJ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPK" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPL" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"bPM" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bPO" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/device/lightreplacer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bPQ" = ( -/obj/structure/machinery/computer/general_air_control, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bPR" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering/atmos) -"bPS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bPV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bPW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bPX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bPY" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bPZ" = ( -/obj/structure/pipes/standard/simple/visible, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bQa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bQb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bQc" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bQd" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/north) -"bQe" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"bQf" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQg" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQh" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/light_bulb/tube/large, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQi" = ( -/obj/structure/surface/rack, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/signaller, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/prox_sensor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQj" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/omega/control) -"bQl" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bQm" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"bQn" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/lobby) -"bQo" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/north) -"bQp" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQt" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bQv" = ( -/obj/structure/window/framed/corsat/hull, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bQw" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bQx" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bQy" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/hallwaysouth) -"bQA" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/device/multitool, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bQB" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bQC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bQE" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"bQF" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/southeast) -"bQG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"bQH" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bQJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bQK" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bQL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bQM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"bQN" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/corsat/inaccessible) -"bQO" = ( -/obj/structure/surface/rack, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"bQP" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bQQ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bQR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bQS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/omega/control) -"bQT" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bQU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQV" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bQW" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bQX" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"bQY" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"bQZ" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"bRa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"bRc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bRd" = ( -/obj/item/device/analyzer/plant_analyzer, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bRe" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe, -/obj/item/tool/hatchet, -/obj/item/tool/shovel/spade, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"bRf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/security) -"bRg" = ( -/obj/structure/window/framed/corsat/security, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaWarden"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/corsat/omega/security) -"bRh" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Warden's Office"; - req_access_txt = "101" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "OmegaWarden"; - name = "Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bRj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"bRk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"bRn" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bRo" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/complex) -"bRp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"bRq" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bRr" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"bRv" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRw" = ( -/obj/item/clothing/gloves/latex, -/obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"bRy" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bRz" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" - }, -/obj/item/clothing/head/beret/sec/warden, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bRE" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRH" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Forensics" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRI" = ( -/obj/structure/machinery/computer/rdconsole, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bRJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/security) -"bRQ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/security) -"bRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"bRV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"bRW" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"bRX" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"bRY" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"bRZ" = ( -/obj/structure/surface/rack, -/obj/item/evidencebag, -/obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"bSa" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"bSb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/handcuffs/zip, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/security) -"bSe" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"bSf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSg" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSh" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" - }, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSk" = ( -/obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/plating, -/area/corsat/omega/checkpoint) -"bSl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/checkpoint) -"bSm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSn" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/security) -"bSo" = ( -/obj/structure/machinery/door_control{ - id = "OmegaAccessC2"; - name = "Security Shutters"; - pixel_x = -24; - use_power = 0 - }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"bSp" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"bSr" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"bSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"bSE" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"bSG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaCheckpointC"; - name = "Security Shutters"; - pixel_x = 7; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"bSK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"bSM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"bSO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"bSW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"bSX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"bSZ" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"bTb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"bTh" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"bTj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/checkpoint) -"bTk" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/corsat/theta/airlock/west/id) -"bTl" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"bTo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"bTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"bTq" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/eastright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/revolver/m44, -/obj/item/weapon/gun/revolver/m44, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bTr" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/door/window/westright{ - name = "Weapon Rack" - }, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bTs" = ( -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/target, -/obj/structure/closet/crate{ - desc = "A rectangular steel crate containing firing targets."; - name = "target crate" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"bTt" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTv" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGrounds"; - name = "Testing Grounds"; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Testing Grounds"; - req_access_txt = "106"; - use_power = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTy" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTz" = ( -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTA" = ( -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/item/explosive/mine/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTB" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/closet/secure_closet/guncabinet{ - name = "explosives cabinet"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaGrounds"; - name = "Testing Grounds" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/sigma/biodome/testgrounds) -"bTH" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/suit_cooling_unit, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTO" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"bTQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/gripper, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"bTV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/hyper/empty, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/helmet/augment, -/obj/item/tool/pen/paralysis, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bTX" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"bTZ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"bUa" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/welding/superior, -/obj/structure/machinery/door/window/eastright{ - name = "Prototype Racks"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bUc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Sigma RnD"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bUg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, -/area/corsat/sigma/south/complex) -"bUh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Teleport Control"; - req_one_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bUi" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"bUl" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/drinkingglass, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"bUm" = ( -/obj/structure/machinery/power/smes, -/turf/open/floor/corsat, -/area/corsat/sigma/south/complex) -"bUn" = ( -/turf/open/floor/corsat, -/area/corsat/omega/complex) -"bUo" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bUr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bUs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/infra, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bUt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/empgrenade, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bUv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/large, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"bUx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"bUz" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/complex) -"bUA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/explosive/grenade/custom/antiweed, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"bUC" = ( -/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bUD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"bUF" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 8; - id_tag = "mix_sigma_out" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"bUI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bUJ" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bUK" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/closed/gm/dense, -/area/corsat/theta/biodome) -"bUL" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bUM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-theta-control" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bUN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bUO" = ( -/obj/structure/machinery/door_control{ - id = "SigmaBioAtmos"; - name = "Access Shutters"; - pixel_y = 24 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bUP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUS" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bUT" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUU" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUV" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUW" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bUY" = ( -/obj/structure/pipes/trinary/mixer, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bUZ" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/plating, +/area/corsat/sigma/airlock/control) +"bcp" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "ThetaControl"; + name = "Observation Shutters"; + use_power = 0 }, +/turf/open/floor/plating, /area/corsat/theta/airlock/control) -"bVb" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"bVc" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bVg" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bVh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ +"bcq" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"bVm" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bVn" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaControl"; + id = "ThetaControl"; name = "Observation Shutters"; - pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/airlock/control) -"bVs" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bVv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bVw" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/plating, /area/corsat/theta/airlock/control) -"bVx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bVC" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaControl"; +"bcr" = ( +/obj/structure/window/framed/corsat, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "ThetaControl"; name = "Observation Shutters"; - pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"bVD" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/testgrounds) -"bVE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bVG" = ( -/obj/structure/machinery/door_control{ - id = "GammaBioAtmos"; - name = "Access Shutters"; - pixel_y = -24 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bVH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"bVI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/plating, /area/corsat/theta/airlock/control) -"bVJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"bcx" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bVL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/theta/airlock/control) -"bVM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/theta/airlock/control) -"bVN" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "car_sigma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVO" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVQ" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bVS" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bVT" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1; - name = "Mixed Air Injector" - }, /turf/open/floor/corsat, -/area/corsat/inaccessible) -"bVU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/theta/airlock/control) -"bVV" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bVW" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bVX" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/grass/grass1/weedable, +/area/corsat/emergency_access) +"bcD" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"bWb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/control) -"bWc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/cameras{ - network = list("theta") - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWd" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWe" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bWg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bWi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWj" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bWk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bWl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"bWm" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"bWn" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/theta/airlock/control) -"bWo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bWp" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"bWq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWr" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWt" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"bWu" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bWv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bWw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/corsat/theta/airlock/control) -"bWx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"bWy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bWA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bWB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"bWC" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWD" = ( -/obj/structure/pipes/standard/simple/visible{ +"bcE" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bcF" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bcG" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcH" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bcI" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bcJ" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWE" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"bcK" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bcL" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcM" = ( +/obj/structure/fence, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bcN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bcP" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/gamma/cargo) +"bcR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/coast/beachcorner/north_west, +/area/corsat/theta/biodome) +"bcS" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"bcT" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/corsat/theta/biodome) +"bcU" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bcV" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bcW" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"bcX" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"bWG" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"bcY" = ( +/obj/structure/machinery/colony_floodlight{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bcZ" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 8 }, -/area/corsat/gamma/airlock/control) -"bWH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bda" = ( +/obj/structure/machinery/colony_floodlight{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"bWI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bdb" = ( +/obj/structure/machinery/colony_floodlight{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"bdx" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bdy" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"bdz" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/corsat/theta/biodome) +"bdA" = ( +/turf/open/gm/coast/north, +/area/corsat/theta/biodome) +"bdB" = ( +/turf/open/gm/coast/beachcorner/north_east, +/area/corsat/theta/biodome) +"bdC" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/corsat/theta/biodome) +"bdD" = ( +/turf/open/gm/river, +/area/corsat/theta/biodome) +"bdE" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/corsat/theta/biodome) +"bdF" = ( +/turf/open/gm/coast/west, +/area/corsat/theta/biodome) +"bdG" = ( +/turf/open/gm/coast/east, +/area/corsat/theta/biodome) +"bdI" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/corsat/theta/biodome) +"bdJ" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"bdK" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"bdL" = ( +/turf/open/gm/coast/south, +/area/corsat/theta/biodome) +"bdM" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/corsat/theta/biodome) +"bdO" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/corsat/theta/biodome) +"bdP" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdQ" = ( +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"bdR" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdS" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bdT" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bdU" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bdV" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"bdW" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"bdX" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"bdY" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"bdZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bea" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"beb" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"bec" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"bed" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"bee" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"beg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"beh" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bei" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bel" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bem" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"ben" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/corsat/theta/biodome) +"beo" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bep" = ( +/obj/structure/flora/jungle/planttop1, +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"ber" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bes" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"bev" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/corsat/theta/biodome) +"bew" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"bex" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/coast/north, +/area/corsat/theta/biodome) +"bey" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"bez" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beA" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beB" = ( +/obj/structure/flora/jungle/alienplant1, +/turf/open/gm/river, +/area/corsat/theta/biodome) +"beD" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"beE" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"beF" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"beG" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/corsat/theta/biodome) +"beH" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"beI" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"beJ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/corsat/theta/biodome) +"beO" = ( +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"beP" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "full_corners" }, -/area/corsat/gamma/airlock/control) -"bWJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"beQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"beR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"beS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"beT" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"beX" = ( +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"beY" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/corsat/theta/biodome) +"beZ" = ( +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfa" = ( +/turf/closed/ice/end, +/area/corsat/gamma/biodome) +"bfb" = ( +/turf/closed/ice/end{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"bWK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ +/area/corsat/gamma/biodome) +"bfc" = ( +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfd" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"bWL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"bWM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWN" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWO" = ( -/obj/structure/machinery/light{ - dir = 4 + icon_state = "single_ends" }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfe" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 4; - icon_state = "red" + icon_state = "single_ends" }, -/area/corsat/gamma/airlock/control) -"bWQ" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "CO2 Control" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bff" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 9; + icon_state = "full_corners" }, -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfg" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfh" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + icon_state = "full_corners" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfi" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "full_corners" }, -/area/corsat/sigma/airlock/control) -"bWS" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfj" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single_ends" }, -/area/corsat/sigma/airlock/control) -"bWT" = ( -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfk" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"bWU" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bWV" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" + icon_state = "single_ends" }, -/area/corsat/gamma/airlock/control) -"bWW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "GammaEastD"; - name = "Entrance Airlock Control"; - pixel_x = 5; - use_power = 0 +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfl" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "north_wall" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfm" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "south_wall" }, -/area/corsat/gamma/airlock/control) -"bWX" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfn" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "single" }, -/area/corsat/sigma/airlock/control) -"bWZ" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/ice, +/area/corsat/gamma/biodome) +"bfo" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfp" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" }, -/area/corsat/sigma/airlock/control) -"bXa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfq" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bXb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"bXc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bXd" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"bXe" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfr" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "east_wall" }, -/area/corsat/sigma/airlock/control) -"bXh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfs" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" }, -/area/corsat/sigma/southeast) -"bXl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bft" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6 }, -/area/corsat/sigma/airlock/control) -"bXn" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfu" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single" }, -/area/corsat/sigma/airlock/control) -"bXo" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfv" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "west_wall" }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfx" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + icon_state = "east_wall" }, -/area/corsat/sigma/airlock/control) -"bXp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfy" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "south_wall" }, -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfz" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"bXq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfA" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"bXr" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfB" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "single_part" }, -/area/corsat/sigma/airlock/control) -"bXs" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfC" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/airlock/control) -"bXu" = ( -/obj/item/folder/black_random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/airlock/control) -"bXv" = ( -/obj/structure/machinery/light{ - dir = 8 + icon_state = "single_part" }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfD" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/airlock/control) -"bXw" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + icon_state = "single_part" }, -/area/corsat/sigma/airlock/control) -"bXx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfE" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" + icon_state = "single_tshape" }, -/area/corsat/sigma/airlock/control) -"bXz" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfF" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 6; + icon_state = "single_part" }, -/area/corsat/sigma/airlock/control) -"bXA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfG" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 9; + icon_state = "single_part" }, -/area/corsat/sigma/airlock/control) -"bXB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfH" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"bXC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"bXD" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfI" = ( +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfJ" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"bXE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfK" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "west_wall" }, -/area/corsat/sigma/airlock/control) -"bXG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfL" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 5; + icon_state = "single_part" }, -/area/corsat/theta/airlock/control) -"bXH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfM" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1; + icon_state = "full_corners" }, -/area/corsat/theta/airlock/control) -"bXI" = ( -/obj/structure/machinery/light{ +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfN" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 1; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"bXK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"bXN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "purplewhite" + icon_state = "full_corners" }, -/area/corsat/gamma/sigmaremote) -"bXO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/ice/ice_rock/cornerOverlay, +/turf/closed/ice_rock/corners, +/area/corsat/gamma/biodome) +"bfQ" = ( +/turf/closed/ice, +/area/corsat/gamma/biodome) +"bfR" = ( +/turf/closed/ice/end{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bXQ" = ( -/obj/structure/pipes/vents/pump{ +/area/corsat/gamma/biodome) +"bfS" = ( +/turf/closed/ice/end{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bXW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" +/area/corsat/gamma/biodome) +"bfT" = ( +/turf/closed/ice/corner, +/area/corsat/gamma/biodome) +"bfU" = ( +/turf/closed/ice/corner{ + dir = 1 }, -/area/corsat/gamma/airlock/control) -"bXY" = ( -/obj/structure/bed/chair/office/light{ +/area/corsat/gamma/biodome) +"bfV" = ( +/turf/closed/ice/straight{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/airlock/control) -"bXZ" = ( -/obj/structure/machinery/light{ +/area/corsat/gamma/biodome) +"bfW" = ( +/turf/closed/ice/straight, +/area/corsat/gamma/biodome) +"bfX" = ( +/turf/closed/ice/corner{ dir = 4 }, -/obj/structure/machinery/disposal, -/obj/effect/landmark/nightmare{ - insert_tag = "lockdown-gamma-control" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYa" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bYb" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"bYd" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "nit_gamma_out" - }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYf" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Mixed Air Control" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYh" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/area/corsat/gamma/biodome) +"bfY" = ( +/turf/closed/ice/corner{ + dir = 8 }, -/area/corsat/gamma/airlock/control) -"bYl" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Nitrogen Control Console" +/area/corsat/gamma/biodome) +"bfZ" = ( +/obj/structure/ice/thin/end{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/ice, +/area/corsat/gamma/biodome) +"bga" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgb" = ( +/obj/structure/ice/thin/corner{ + dir = 1 }, -/area/corsat/gamma/airlock/control) -"bYm" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 4; - name = "Mixed Air Injector" +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgc" = ( +/obj/structure/ice/thin/end{ + dir = 4 }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYo" = ( -/obj/structure/pipes/trinary/mixer{ +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgd" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bge" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgf" = ( +/obj/structure/ice/thin/end{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYp" = ( -/obj/structure/pipes/standard/simple/visible{ +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgg" = ( +/obj/structure/ice/thin/straight{ dir = 4 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYq" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgh" = ( +/obj/structure/ice/thin/corner{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bYr" = ( -/obj/structure/machinery/light{ +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgi" = ( +/obj/structure/ice/thin/corner{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"bYs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/airlock/control) -"bYt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYu" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/airlock/control) -"bYv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/ice, +/area/corsat/gamma/biodome) +"bgk" = ( +/turf/closed/ice_rock/singleEnd, +/area/corsat/gamma/biodome) +"bgr" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/gunrange) +"bgx" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/gamma/airlock/control) -"bYw" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "mix_gamma_out" +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, /turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYx" = ( -/obj/structure/pipes/binary/pump/high_power/on{ +/area/corsat/emergency_access) +"bgB" = ( +/turf/closed/wall, +/area/corsat/sigma/biodome/scrapyard) +"bgZ" = ( +/turf/closed/wall/r_wall, +/area/corsat/sigma/biodome/testgrounds) +"bhg" = ( +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"bhl" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/corsat/sigma/biodome/testgrounds) +"bhn" = ( +/turf/closed/mineral{ + color = "#c48664" + }, +/area/corsat/sigma/biodome) +"bhx" = ( +/obj/structure/bed/chair/wood/wings{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bij" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/corsat/gamma/airlock/control) -"bYy" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"bit" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west/id) +"bjm" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bjq" = ( +/obj/structure/bed, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bjD" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bky" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/monorail) +"bkE" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" }, -/area/corsat/gamma/airlock/control) -"bYz" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +/turf/open/floor/plating, +/area/corsat/sigma/airlock/south/id) +"bkI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"bkJ" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaSecC"; + name = "Security Shutters" }, -/area/corsat/gamma/airlock/control) -"bYA" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/corsat/sigma/south/security) +"bkM" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaHOS"; + name = "Privacy Shutters" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/plating, +/area/corsat/gamma/security) +"bkP" = ( +/obj/structure/window/framed/corsat/cell/security, +/turf/open/floor/plating, +/area/corsat/gamma/security/cells) +"blv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"bYC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"blB" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"blK" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/hangar/arrivals) +"blM" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/hangar/office) +"blN" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat, +/area/corsat/gamma/hangar/cargo) +"blU" = ( +/obj/structure/monorail, +/turf/open/space, +/area/space) +"blW" = ( +/obj/structure/monorail{ + dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/space, +/area/space) +"blX" = ( +/obj/structure/monorail{ + dir = 10 }, -/area/corsat/gamma/airlock/control) -"bYD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ +/turf/open/space, +/area/space) +"blY" = ( +/obj/structure/monorail{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"bYE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "GammaBioAtmos"; - name = "Access Shutter" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bYF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/space, +/area/space) +"bmg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) +"bmj" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail) +"bmm" = ( +/obj/structure/window/framed/corsat/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/control) +"bmv" = ( +/obj/structure/monorail, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bmB" = ( +/obj/structure/monorail{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bmC" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail) +"bmD" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/sigma/hangar/monorail/control) +"bmF" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail) +"bmG" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail/control) +"bmR" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) +"bmS" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/arrivals) +"bmZ" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/cargo) +"bnf" = ( +/obj/structure/sign/safety/fridge, +/turf/closed/wall/biodome, +/area/corsat/gamma/freezer) +"bnl" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/engineering/core) +"bno" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/area/corsat/gamma/airlock/control) -"bYI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-gamma-north" }, -/turf/open/ice, +/turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) -"bYJ" = ( +"bnr" = ( +/obj/structure/sign/safety/galley, +/turf/closed/wall/biodome, +/area/corsat/gamma/canteen) +"bnu" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; + dir = 2; + name = "Hall Maintainence"; req_one_access = null }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "GammaBioAtmos"; - name = "Access Shutter" - }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"bnw" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/monorail) +"bnH" = ( +/obj/structure/sign/safety/biohazard, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome/virology) +"bnJ" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay) +"bnK" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/lobby) +"bnL" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar) +"bnM" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay) +"bnO" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/almayer/white, +/area/corsat/gamma/medbay/lobby) +"bnP" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/biodome) +"bnU" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/security) +"bnY" = ( +/obj/structure/safe, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bnZ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/id) +"boa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"bYK" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"boe" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/biodome) +"bof" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/sigma/cargo) +"bon" = ( +/obj/structure/fence, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/corsat/gamma/airlock/control) -"bYL" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/turf/open/auto_turf/snow/layer2, +/area/corsat/gamma/biodome) +"boq" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/biodome, +/area/corsat/omega/cargo) +"bor" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/theta/biodome) +"bou" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/generator) +"bow" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/sigma/south/complex) +"box" = ( +/obj/structure/sign/safety/radio_rad, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/telecomm) +"boy" = ( +/obj/structure/sign/safety/terminal, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/southeast/telecomm) +"boz" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = -32 }, -/obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/corsat/theta/biodome) +"boB" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/area/corsat/gamma/airlock/control) -"bYM" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Waste Tank Control" +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-theta-east" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"boC" = ( +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/scrapyard) +"boJ" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/hangar) +"bpx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarE"; + name = "Checkpoint Control"; + pixel_x = 7; + use_power = 0 }, -/area/corsat/gamma/airlock/control) -"bYN" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1; - name = "Waste Air Injector" +/obj/structure/machinery/door_control{ + id = "OmegaHangarW"; + name = "Checkpoint Control"; + pixel_x = -7; + use_power = 0 }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYP" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYQ" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Waste Air Injector" +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) +"bpU" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat, -/area/corsat/inaccessible) -"bYR" = ( -/obj/structure/surface/rack, -/obj/item/tank/air, -/obj/item/tank/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/theta/airlock/control) -"bYS" = ( +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"bqo" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 4; - id_tag = "car_theta_out" + id_tag = "oxy_corsat_out" }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bYT" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "mix_theta_out" +"bqp" = ( +/obj/structure/pipes/unary/outlet_injector{ + name = "Waste Air Injector" }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"bYU" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat{ - icon_state = "yellow" +"bqr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaLab"; + name = "Privacy Shutters" }, -/area/corsat/omega/control) -"bYW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/wood, +/area/corsat/gamma/biodome/complex) +"bqv" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"bqB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/control) -"bYX" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"bqF" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" + dir = 4 }, -/area/corsat/omega/control) -"bYY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"bre" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "17" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"bro" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/control) -"bYZ" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"brp" = ( +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"brt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"brG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"brM" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"bsu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south/id) +"bsL" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"btk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"bZa" = ( +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"btp" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/omega/control) -"bZb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) +"bty" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/area/corsat/omega/control) -"bZc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"btI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"btN" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/gamma/hangar/flightcontrol) +"bun" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 }, -/area/corsat/omega/control) -"bZd" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buo" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bup" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buq" = ( +/obj/structure/bed/chair/wood/wings, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bur" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bus" = ( +/obj/structure/bed/chair/wood/wings{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"but" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/wood/wings{ + dir = 1 }, -/area/corsat/omega/control) -"bZe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"buB" = ( +/obj/structure/sign/safety/distribution_pipes{ + desc = "A sign that denotes the proximity of a life support system." }, -/area/corsat/omega/control) -"bZf" = ( +/turf/closed/wall/biodome, +/area/corsat/gamma/engineering/atmos) +"buU" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"buY" = ( +/obj/structure/prop/mech/drill, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"buZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Omega Dome Control"; + name = "Robotics"; req_one_access_txt = "102" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/omega/control) -"bZg" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/omega/control) -"bZh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvj" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"bZi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/floor/mech_bay_recharge_floor, +/area/corsat/sigma/south/robotics) +"bvx" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvA" = ( +/obj/structure/bed, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/cells) +"bvJ" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvQ" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"bZj" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvR" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvS" = ( +/obj/structure/bed, +/obj/item/tool/lighter/zippo, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bvT" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/control) -"bZk" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "omega" +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bwd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_y = 30 }, -/area/corsat/omega/control) -"bZl" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"bwL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/checkpoint) +"bwP" = ( +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"bwS" = ( +/obj/structure/machinery/light, +/turf/closed/wall/biodome, +/area/corsat/sigma/south/engineering) +"bxB" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"bye" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Gamma Director's Office"; + req_access_txt = "106" }, -/area/corsat/omega/control) -"bZm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byn" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Omega Director's Office"; + req_access_txt = "106" }, -/area/corsat/omega/control) -"bZp" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byo" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - name = "Weapons Development"; - req_one_access_txt = "103" + name = "Theta Director's Office"; + req_access_txt = "106" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byp" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Sigma Director's Office"; + req_access_txt = "106" }, -/area/corsat/sigma/south/complex) -"bZq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"byu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"byM" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/item/restraints, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/closed/wall/biodome, +/area/corsat/omega/complex) +"bzm" = ( +/obj/structure/window/framed/corsat/hull/research, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bzO" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"bBa" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"bZr" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bBO" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/omega/control) -"bZt" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/spawner/random/tool, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bBP" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bBZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, /turf/open/floor/wood, -/area/corsat/sigma/dorms) -"bZu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"bZv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"bZy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"bZz" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ +/area/corsat/gamma/rnr/library) +"bCb" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCe" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCf" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/gamma/hangar/cargo) -"bZD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCg" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCk" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCm" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCo" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/library) +"bCt" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"bCI" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaSecC"; + name = "Security Shutters" }, -/area/corsat/gamma/biodome/complex) -"bZE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/corsat/gamma/security) +"bCS" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaAccessC"; + name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bCT" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" }, -/area/corsat/gamma/biodome/complex) -"bZF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"bCU" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"bZI" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Toxins Lab"; - req_one_access_txt = "103" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/airlock/control) +"bCV" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" }, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bCX" = ( +/obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Toxins"; - name = "Toxins Lockdown" + dir = 4; + id = "GammaSouthAirlockC"; + name = "Security Shutters" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/plating, +/area/corsat/gamma/airlock/south) +"bDn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"bZK" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/checkpoint) +"bDp" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaSecC"; + name = "Security Shutters" }, -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/plating, +/area/corsat/omega/security) +"bDB" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"bDH" = ( +/obj/structure/window/framed/corsat/cell/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "SigmaHolding2"; + name = "Holding Cell 2" }, -/area/corsat/gamma/biodome/toxins) -"bZN" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ +/turf/open/floor/plating, +/area/corsat/sigma/south/security) +"bDM" = ( +/obj/structure/pipes/vents/pump/siphon/on{ dir = 8; - icon_state = "purplewhitecorner" + id_tag = "mix_sigma_out" }, -/area/corsat/sigma/south/complex) -"bZP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bEF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/airlock/south) -"bZW" = ( +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bEL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/monorail/control) +"bET" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"bFa" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"bFc" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"bGm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"bGD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"bGS" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"bHm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"bHp" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"bHR" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/wood, +/area/corsat/gamma/rnr/bar) +"bIl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"bIm" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"bIp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Sigma Dome Control" }, -/area/corsat/theta/airlock/east) -"bZX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/east) -"cab" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"bIA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/theta/airlock/west) -"caf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"bIB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/theta/biodome/complex) -"cah" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"bIF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Control Room"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"bJd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydrowest) -"cai" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" + name = "\improper Showers" }, -/area/corsat/theta/biodome/hydroeast) -"cak" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"bJt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"bJy" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/area/corsat/theta/biodome/hydrowest) -"cal" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "West Hydroponics Wing"; - req_one_access_txt = "103" +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"bJE" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"bLJ" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/south) +"bMl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"bMr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"bMt" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"bMF" = ( +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"bMJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"bNf" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"bPA" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) +"bQt" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bQv" = ( +/obj/structure/window/framed/corsat/hull, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"cam" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bQy" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/hallwaysouth) +"bQH" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bQN" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/corsat/inaccessible) +"bQV" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bRg" = ( +/obj/structure/window/framed/corsat/security, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaWarden"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/corsat/omega/security) +"bRD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"bRN" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"bRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"bSk" = ( +/obj/structure/window/framed/corsat/cell/security, +/turf/open/floor/plating, +/area/corsat/omega/checkpoint) +"bSs" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"cao" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/gamma/biodome/complex) +"bSC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "lightplate" + dir = 8 }, -/area/corsat/theta/biodome/complex) -"cap" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"bTk" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/corsat/theta/airlock/west/id) +"bTK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"caq" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "East Hydroponics Wing"; - req_one_access_txt = "103" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"bTY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"bUj" = ( +/obj/structure/surface/table, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bUm" = ( +/obj/structure/machinery/power/smes, +/turf/open/floor/corsat, +/area/corsat/sigma/south/complex) +"bUn" = ( +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"bUq" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"bUC" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bUJ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bUK" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/closed/gm/dense, +/area/corsat/theta/biodome) +"bUW" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" }, -/area/corsat/theta/biodome/complex) -"car" = ( +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"cau" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) +"bVE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/theta/biodome/complex) -"caw" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bVN" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "car_sigma_out" }, -/turf/open/floor{ +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVO" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVT" = ( +/obj/structure/pipes/unary/outlet_injector{ dir = 1; - icon_state = "asteroidfloor" + name = "Mixed Air Injector" + }, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bVX" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"bXi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"bXJ" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"bXR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"bXT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"bYd" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "nit_gamma_out" }, -/area/corsat/sigma/biodome/testgrounds) -"caA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYe" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/device/lightreplacer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"bYg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"bYm" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 4; + name = "Mixed Air Injector" }, -/turf/open/floor/corsat{ - icon_state = "green" +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYw" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "mix_gamma_out" }, -/area/corsat/gamma/hallwaysouth) -"caG" = ( +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/ice, +/area/corsat/gamma/biodome) +"bYN" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1; + name = "Waste Air Injector" }, -/area/corsat/sigma/south) -"caH" = ( +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYP" = ( /obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"caI" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/airlock/control) -"caM" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestE"; - name = "Sigma West Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYQ" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Waste Air Injector" }, -/area/corsat/sigma/airlock/control) -"caQ" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYS" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 4; + id_tag = "car_theta_out" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bYT" = ( +/obj/structure/pipes/vents/pump/siphon/on{ dir = 1; - icon_state = "red" + id_tag = "mix_theta_out" }, -/area/corsat/omega/control) +/turf/open/floor/corsat, +/area/corsat/inaccessible) +"bZt" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"bZL" = ( +/obj/structure/surface/table, +/obj/item/folder/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"bZU" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) "caS" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/floor/plating, /area/corsat/sigma/biodome/testgrounds) -"caT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/colony_floodlight_switch{ - desc = "This switch controls the floodlights around the biodome. It only functions when there is power." - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" +"cba" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/airlock/east) +"cbe" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/corsat/theta/airlock/control) -"caU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"cbu" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"cbz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"caV" = ( -/obj/structure/machinery/door_control{ - id = "ThetaBioAtmos"; - name = "Access Shutters"; - pixel_x = 24 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"caW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null + name = "Kitchen" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"cbA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/airlock/control) -"caX" = ( -/obj/item/device/binoculars, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"cbE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"cbH" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaControl"; - name = "Observation Shutters"; - pixel_y = 5; - use_power = 0 - }, -/turf/open/floor/corsat{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "blue" + health = 80 }, -/area/corsat/theta/airlock/control) -"caZ" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"cbW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirtgrassborder/north, +/area/corsat/theta/biodome) +"ccd" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"cci" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"cco" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ccq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"ccu" = ( +/obj/structure/machinery/disease2/diseaseanalyser, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"ccz" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"ccD" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/sigma/south/complex) +"ccH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"ccK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"ccY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ - id = "OmegaControl"; - name = "Observation Shutters"; - pixel_y = 5; + id = "GammaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; use_power = 0 }, /obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; - req_one_access_txt = "106;103"; + id = "GammaSouthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/omega/control) -"cbc" = ( -/obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ - id = "OmegaO"; - name = "Dome Lockdown"; + id = "GammaSouthAirlockC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/control) -"cbo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"cbS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"cbV" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"cdc" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"cbW" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirtgrassborder/north, -/area/corsat/theta/biodome) -"cce" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"cdh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"cdk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/showers) -"ccq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"cec" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Oxygen Supply Console" }, -/area/corsat/theta/airlock/control) -"cem" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"cdw" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"cdC" = ( +/obj/structure/surface/rack, +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"cdD" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"cdE" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/checkpoint) +"cdF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"ces" = ( /obj/structure/surface/table/almayer, +/obj/item/tool/pen/red, /obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"ceB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"cdK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"cdM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ceC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null }, -/area/corsat/theta/airlock/east) -"ceE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/offices) +"ceO" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"ceQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) "ceR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"cfh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/slime, -/obj/item/device/flashlight/slime{ - pixel_y = 8 - }, -/obj/item/device/flashlight/slime{ - pixel_x = -10 - }, -/obj/item/device/flashlight/slime{ - pixel_x = 10 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"cfA" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +"ceS" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"ceW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Access Checkpoint"; + req_access_txt = "101" }, -/area/corsat/sigma/south/offices) -"cfO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/foyer) -"cfZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"cfr" = ( +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"cfu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"cgh" = ( -/obj/structure/surface/rack, -/obj/item/storage/wallet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"cfy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/omega/hangar/security) -"cgs" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"cfD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"cfM" = ( +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"cfQ" = ( /obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/machinery/computer/emails{ + dir = 1 }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"cgt" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/checkpoint) -"chg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"chJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"cfT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cfY" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/smes_coil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cga" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"chL" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"cgb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"cgg" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"cia" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"cii" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"cgA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Robotics Storage"; + req_one_access_txt = "102" }, -/area/corsat/omega/checkpoint) -"ciW" = ( -/obj/structure/machinery/shower{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small, -/obj/structure/machinery/door/window/southleft{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"cjg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dressing room" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"cjs" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/hallwaysouth) -"cjy" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/containment) -"ckt" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"cgX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"chn" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"cku" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"chx" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"ckz" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"chz" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"chA" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/morgue) +"chH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"chM" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"chQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaA"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 }, -/area/corsat/gamma/hangar/checkpoint) -"ckY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/item/device/flashlight/lamp{ + pixel_x = 8; + pixel_y = 3 }, -/area/corsat/sigma/hangar/arrivals) -"clg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"cic" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"clp" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"cim" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + reason = "Visitor" }, -/area/corsat/omega/offices) -"clI" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "darkgreen" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"cio" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/rnr) -"clN" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"cis" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/airlock/south) -"cmk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"ciG" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"ciM" = ( +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"ciX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mmi/radio_enabled, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"ciY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"cjh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"cjq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"cjs" = ( +/turf/closed/wall/r_wall/biodome, /area/corsat/gamma/hallwaysouth) -"cms" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, +"cjt" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"cjx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"cjD" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 8; + network = list("sigma") }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"cjO" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"cjQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"cjR" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth) +"cjU" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"cjV" = ( +/turf/open/floor/corsat/plate, /area/corsat/gamma/biodome/complex) -"cmy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"cnj" = ( -/obj/structure/pipes/vents/pump{ +"cjY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"cka" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/complex) +"ckb" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"ckd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"cke" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 2" }, -/area/corsat/sigma/south/security) -"cnA" = ( -/obj/structure/surface/rack, -/obj/item/alienjar, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 2"; + name = "Cell 2"; + pixel_x = 32 }, -/obj/structure/machinery/door/window/eastright{ - dir = 2; - name = "Secure Racks"; - req_access_txt = "103" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"cko" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"cks" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"ckG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) -"cnC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"ckL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/residential/east) -"cog" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"clf" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/lobby) +"clD" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"cmG" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"cmK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cmR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"cnh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, /area/corsat/omega/complex) -"cok" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"cnq" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"cnK" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"cor" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"cot" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/corsat/omega/hangar/office) -"coy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"coA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"coE" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/southeast) +"coF" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/dorms) +"coP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/residential/researcher) -"coS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"coQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"coY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/hangar/monorail) -"cpS" = ( -/obj/item/bodybag, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hangar) -"cpU" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"cpd" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"cpg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" }, -/area/prison/hangar_storage/research/shuttle) -"cqv" = ( -/obj/structure/computerframe, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"cpp" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/sandal, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/emergency_access) -"cqy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cpq" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"cpx" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"cpy" = ( +/obj/structure/machinery/door/window/southleft{ dir = 1; - icon_state = "asteroidfloor" + layer = 2.8 }, -/area/corsat/sigma/biodome/gunrange) -"cqT" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/shower{ + dir = 1 }, -/area/corsat/sigma/south/security) -"cru" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"cpC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/area/corsat/omega/hangar) -"crC" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"cpR" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/hallways) +"cqd" = ( +/obj/structure/machinery/light{ dir = 8 }, +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"cql" = ( +/obj/item/device/analyzer/plant_analyzer, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"cqo" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"cqq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"cqs" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"cqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"cqL" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"cqO" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"crG" = ( -/obj/structure/bed/chair{ +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/theta/airlock/east) +"crc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"cry" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"crz" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/omega/complex) -"crH" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"crF" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"crM" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/residential) +"crO" = ( +/obj/structure/cargo_container/trijent/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"crV" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"csk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"crY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"csg" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"csh" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hangar/flightcontrol) -"cst" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"csC" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"csE" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"csK" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/area/corsat/inaccessible) -"csI" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"cti" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"cth" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 5 }, -/area/corsat/omega/airlocknorth) -"ctA" = ( -/obj/structure/machinery/camera/autoname{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"ctj" = ( +/obj/structure/platform{ dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" + layer = 2.7 }, -/area/corsat/gamma/residential/west) -"cuo" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/stairs, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"ctt" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/sigma/south) +"ctC" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"ctM" = ( +/obj/structure/showcase{ + icon_state = "broadcaster_send" + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"ctR" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"ctS" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"cuc" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 1 }, -/area/corsat/sigma/south/complex) -"cut" = ( -/obj/structure/sign/safety/biolab, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"cud" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/area/corsat/gamma/hallwaysouth) -"cuO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"cuB" = ( +/turf/open/floor/corsat/green/southeast, +/area/corsat/gamma/medbay/morgue) +"cuG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"cuJ" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"cuT" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"cuU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaResC"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/checkpoint) "cvi" = ( /obj/structure/closet/crate/science, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"cvm" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"cvr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +"cvv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"cvC" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"cvD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) "cvO" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -36428,249 +5908,488 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"cvW" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/datalab) -"cwp" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"cwr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) +"cwc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"cww" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) "cwF" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/mars, /area/corsat/sigma/biodome) -"cwL" = ( -/obj/structure/surface/table/almayer, -/obj/item/handset, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/datalab) -"cxh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" +"cwR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthN"; + name = "Gamma South Airlock" }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"cwS" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/hangar/office) +"cwU" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cwW" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-N"; - name = "Security Shutters" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"cxy" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"cxB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/purple/northeast, +/area/corsat/sigma/south) +"cxI" = ( +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"cxJ" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"cyi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"cyj" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"cxE" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"cyn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/foyer) -"cxO" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"cyx" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cyA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"cyD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"cyF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"cyK" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"cyJ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"cyO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/southeast/datalab) -"cyX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"cyS" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"czL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay/lobby) -"czg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"czW" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hallwaysouth) +"cAi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"cAp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"cAA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"cAG" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) +"cAO" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cBl" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/omega/control) -"czh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" +"cBp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"cBt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/security) -"cAg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"cCi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/sigma/hangar) -"cAV" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"cAW" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"cCp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"cAX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"cCt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/cafe) -"cCK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"cCC" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"cCV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"cCZ" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"cDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/hallways) -"cCP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" +"cDY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"cEb" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/gunrange) +"cEp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar) -"cEC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/obj/structure/sink{ + pixel_y = 25 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"cEr" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/area/corsat/gamma/kitchen) -"cEI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" +/obj/structure/prop/almayer/missile_tube{ + color = "grey"; + desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; + icon_state = "missiletubesouth"; + name = "\improper genetic LINAC system"; + pixel_x = -15 }, -/area/corsat/gamma/medbay/lobby) -"cEQ" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"cEs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"cEB" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"cEN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"cFc" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"cFp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cFB" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"cFD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_14" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"cFM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"cFN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"cFY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"cGa" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"cGc" = ( +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) -"cFe" = ( +"cGp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"cGt" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"cGF" = ( +/obj/structure/sign/safety/airlock, +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/hangar/arrivals) +"cGM" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"cGN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"cGS" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ dir = 8; - icon_state = "whitetan" + pixel_x = 15 }, -/area/corsat/gamma/residential/west) -"cGb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/item/reagent_container/food/drinks/shaker, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"cGX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/canteen) +"cHa" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"cHf" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"cHm" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/east/id) +"cHo" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"cHs" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"cHy" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/gamma/biodome/virology) -"cGi" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"cHD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/medbay/morgue) -"cGF" = ( -/obj/structure/sign/safety/airlock, -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/hangar/arrivals) -"cGO" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/hangar/arrivals) -"cIs" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"cHP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/theta/airlock/west/id) -"cIB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"cIk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hangar/monorail) +"cIo" = ( +/obj/structure/surface/rack, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"cIq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"cIG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" }, -/area/corsat/gamma/biodome/complex) -"cJS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/engineering) -"cJU" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"cII" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/residential) +"cIN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"cIO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"cIQ" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential) +"cIX" = ( +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/south) -"cJW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"cJl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"cJp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/southeast/datalab) -"cKa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"cJq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"cJz" = ( +/obj/structure/machinery/bot/medbot/mysterious, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"cJL" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"cJP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"cJY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"cKg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) "cKi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -36680,1084 +6399,1538 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"cKv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"cKH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"cKO" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"cKW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bar Rear" }, -/area/corsat/gamma/residential) -"cLh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"cKX" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"cLi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"cLM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Sigma RnD"; + req_one_access_txt = "101" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"cLF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +"cLN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" }, -/area/corsat/gamma/biodome/toxins) -"cLZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"cLW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) "cMa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"cMv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +"cMu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Virology Lab"; + req_one_access_txt = "103" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"cMB" = ( +/obj/structure/tunnel{ + id = "hole0" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"cME" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"cMJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"cMM" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"cMO" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"cMS" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 }, -/area/corsat/sigma/hangar/checkpoint) -"cMw" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;106;102" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"cNd" = ( +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/item/xeno_egg, +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"cNs" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) +"cNy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"cNE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/southeast/telecomm) -"cMy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"cNL" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"cNG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"cOb" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"cOh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/omega/control) -"cNI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"cOp" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"cOy" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"cOA" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/corsat/sigma/cargo) -"cOf" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"cOG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"cOJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "brown" + name = "Administration Desk"; + req_access_txt = "101" }, -/area/corsat/sigma/cargo) -"cOv" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"cOR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_theta"; + name = "Theta Emergency Access"; + use_power = 0 }, -/area/corsat/gamma/hangar/flightcontrol) -"cOU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"cOX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hangar) +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"cOY" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) "cPi" = ( /obj/structure/monorail{ dir = 8 }, /turf/open/space/transit/east/shuttlespace_ew10, /area/space) -"cPC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/checkpoint) -"cPR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"cPT" = ( +"cPu" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cPx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/omega/hallways) -"cQs" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) -"cQv" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"cPA" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cPU" = ( +/obj/structure/machinery/door_control{ + id = "SigmaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "SigmaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/area/corsat/gamma/airlock/control) -"cQR" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/east) +"cQf" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"cQm" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"cQB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"cQU" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"cQZ" = ( /obj/structure/machinery/camera/autoname{ + dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"cRn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"cRb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "cRx" = ( /obj/item/cell/crap, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"cSi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_9" +"cRA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/corsat/sigma/biodome) -"cSI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"cRL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"cRS" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"cSe" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "16" }, -/area/corsat/gamma/hallwaysouth) -"cTc" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"cSt" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"cSQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"cSX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/theta/airlock/east) +"cSZ" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"cTb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/medbay/lobby) -"cTs" = ( -/obj/structure/stairs{ +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"cTg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"cTn" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "CORSAT Armory"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/armory) +"cTv" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"cTG" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/scrapyard) +"cTQ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleportation Chamber"; + req_one_access_txt = "103" + }, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"cTY" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" }, -/area/corsat/gamma/residential/west) +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"cTZ" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"cUa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) "cUc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/mars, /area/corsat/sigma/biodome) -"cUp" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" +"cUj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"cUx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/corsat/omega/offices) -"cUT" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"cUy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"cUz" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/east) +"cUM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"cVq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"cUQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaSouthS"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/door_control{ + id = "SigmaSouthN"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/sigma/north) -"cVK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"cUW" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/south) +"cVe" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hallways) +"cVo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"cVr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Flight Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"cVs" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail/control) +"cVL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "cVR" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"cWa" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"cVT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"cVZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"cWe" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"cWm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"cWz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) -"cWf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/gamma/hallwaysouth) -"cWu" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, +"cWB" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"cWQ" = ( +/turf/open/floor/corsat/red/east, /area/corsat/gamma/residential) -"cWI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"cWX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/sigma/south) -"cXm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"cXt" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"cWZ" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) +"cXC" = ( +/obj/item/tool/weldingtool/experimental, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"cXD" = ( +/obj/structure/machinery/computer/emails{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) "cXH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"cYj" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"cYL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"cXM" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/sigma/dorms) +"cXV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - req_access_txt = "201" +/obj/item/storage/syringe_case/regular, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"cYd" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"cYh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/cells) +"cYk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"cYt" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/airlock/control) -"cYU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "whitecorner" + id = "SigmaHangarC-S"; + name = "Security Shutters" }, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"cYB" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/scrapyard) +"cYD" = ( +/obj/structure/cargo_container/trijent/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"cYH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"cYK" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"cYW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"cZs" = ( +/obj/item/folder/black_random, +/obj/item/clothing/mask/cigarette/cigar/havana, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) "cZu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/mars, /area/corsat/sigma/biodome) -"cZw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") +"cZv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Theta Dome Control"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"cZz" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 }, -/area/corsat/gamma/airlock/south/id) -"daL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/antitox{ + pixel_x = -5 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) +"cZB" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"cZN" = ( +/obj/structure/lamarr, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"cZP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "tan" + name = "CORSAT Academy"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"daO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +"cZR" = ( +/obj/structure/computerframe, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"cZV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"daR" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"cZX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"daa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"dbn" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential/east) +"dae" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "14" }, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"daf" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"dak" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "3" }, -/area/corsat/gamma/residential/west) -"dbr" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"dap" = ( +/obj/structure/surface/rack, +/obj/item/frame/bucket_sensor, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"day" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") }, -/area/corsat/omega/containment) -"dbV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"daA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"daF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"daJ" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"daN" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"daQ" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south) +"daV" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"dbb" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"dbc" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/gamma/airlock/control) -"dbY" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"dbq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo/disposal) +"dby" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"dbB" = ( +/obj/structure/platform{ dir = 1; - icon_state = "tan" + layer = 2.7 }, -/area/corsat/gamma/residential/west) -"dcr" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) +"dbK" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"dck" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"dcn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "dct" = ( /turf/open/floor/corsat, /area/corsat/gamma/airlock/south/id) -"dcw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"dcK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +"dcu" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"dcF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dcM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) "dcU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"ddo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"ddS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"ddm" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"ddr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"ddE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"ddF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"ddY" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/area/corsat/gamma/residential/east) +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"ddZ" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"deb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"ded" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"dej" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "dem" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"dex" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"der" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"deB" = ( +/obj/item/tool/stamp/hop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"deH" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"deK" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) -"deD" = ( -/turf/open/floor/corsat{ +"deL" = ( +/obj/structure/platform{ dir = 1; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"deG" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" + layer = 2.7 }, -/area/corsat/sigma/airlock/control) -"deR" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, +/turf/open/floor/corsat/white/northwest, /area/corsat/gamma/hallwaysouth) +"deQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"deX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) "dfg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"dfB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"dfT" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"dfV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"dgp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +"dfj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"dgq" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"dfk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Data Maintainence"; + req_one_access = null }, -/area/corsat/omega/offices) -"dgx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"dfs" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/circuit_imprinter, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"dfC" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 }, -/area/corsat/gamma/residential/west) -"dgJ" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_x = 24; - use_power = 0 +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/closet/crate/science, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"dfH" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/north) +"dfI" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"dfJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"dfL" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"dfQ" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"dgb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Cells"; + req_access_txt = "101" }, -/area/corsat/gamma/sigmaremote) -"dhG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"dgI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"dgK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"dgQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/medbay) -"dhN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"dgX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"dhb" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/gamma/residential/showers) -"dio" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/hangar/monorail/control) -"diw" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"dhd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_9" - }, -/area/corsat/sigma/biodome) -"diD" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"dhj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"diI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"dhk" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"dht" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) -"diP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"djC" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"djF" = ( -/turf/open/floor/corsat, -/area/corsat/gamma/residential/researcher) -"djM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/omega/offices) -"djR" = ( +"dhx" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"dhA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/complex) -"dky" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dhD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/foyer) -"dkK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"dhH" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"dlz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"dlO" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"dhJ" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"dlP" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, -/area/corsat/gamma/medbay/morgue) -"dlU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"dhK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/cafe) -"dml" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) +"dhL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"dhM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "4" }, -/area/corsat/sigma/hangar/checkpoint) -"dmD" = ( -/obj/structure/machinery/door_control{ - id = "SigmaGate"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"dhO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"dhX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "purplewhite" + name = "Teleportation Lab"; + req_one_access_txt = "103" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"dmE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/east) -"dmK" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"dmP" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"dmR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"dnZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"dos" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"dqi" = ( +"dif" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"dir" = ( +/obj/structure/safe, +/obj/item/device/yautja_teleporter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"diD" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"dqt" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Teachers' Office"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"diG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"diT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"dqu" = ( +"djg" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"djp" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"dju" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"dqQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"dqR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"drp" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - dwidth = 1; - name = "Gamma Landing Zone" - }, -/turf/open/floor/plating, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) -"drv" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, -/area/corsat/gamma/residential/showers) -"drC" = ( -/obj/structure/bed/chair{ +"djD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/cargo) +"djF" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/residential/researcher) +"djG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"drD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/handset, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"djI" = ( +/turf/open/floor/carpet9_4/west, /area/corsat/omega/offices) -"drW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/southeast/datamaint) -"dso" = ( +"djP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/hyper/empty, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"djZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"dka" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"dsw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/security) -"dsF" = ( -/obj/structure/toilet{ +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"dkx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"dkG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"dlj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"dlp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"dta" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"dtd" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"dlS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarN"; + name = "Checkpoint Control"; + use_power = 0 }, -/area/corsat/sigma/south) -"dte" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"dlX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/sigma/south/engineering) -"dtl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"dmm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/hangar/flightcontrol) -"dtU" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"dmq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"dmy" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"dmS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"dmV" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"dni" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"dnr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"dug" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"dnu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, -/area/corsat/gamma/hangar/arrivals) -"dui" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"dnw" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/researcher) +"dny" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Data Laboratory"; + req_access_txt = "106;102;103" }, -/area/corsat/theta/airlock/control) -"duk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"duC" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"dnz" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar) +"dnK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/south) -"duW" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"dnS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"dnU" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 }, +/turf/open/shuttle/escapepod/floor5, /area/corsat/theta/biodome/complex) -"duY" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +"dnW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) -"dvn" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"dnY" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/hallwaysouth) -"dvp" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"doP" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/foyer) +"dpk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/platform, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"dpp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/north) -"dvx" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"dpz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"dpO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"dqn" = ( +/obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"drz" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"drA" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"drH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"drQ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"dsb" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, /area/corsat/sigma/cargo) -"dvE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" +"dst" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"dsG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"dsT" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"dtq" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"dtr" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/corsat/gamma/residential) -"dvI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"dty" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"dtD" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"dtI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/corsat/gamma/hangar) -"dwa" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"dtK" = ( +/obj/structure/surface/rack, +/obj/item/storage/photo_album, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"dtM" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/prison/hangar_storage/research/shuttle) +"dtT" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/theta/biodome/complex) -"dwl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar) -"dwr" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/dorms) -"dwH" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"dub" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"dum" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"duq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"dwM" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"duw" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/hallways) +"duD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"dvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/cryofeed/right{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "\improper coolant feed" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"dvs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"dvt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"dvw" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"dvy" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"dvz" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"dvK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"dvP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"dvY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"dwS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"dwj" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"dwK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, -/area/corsat/omega/control) +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) "dwW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"dxx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/signaller, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"dxy" = ( -/turf/open/gm/river/desert/shallow{ - name = "pool" - }, -/area/corsat/gamma/residential/showers) -"dxB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "plate" +"dxh" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Sigma Landing Zone" }, -/area/corsat/sigma/south/robotics) -"dxS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "GammaCargo"; - name = "Gamma Cargo Bay"; - use_power = 0 +/turf/open/floor/plating, +/area/corsat/sigma/hangar) +"dxq" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"dxr" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/southeast) +"dxv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Laundry Unit" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"dxD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"dxF" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"dxI" = ( +/turf/open/floor/corsat/arrow_south, /area/corsat/gamma/cargo) -"dyd" = ( +"dxJ" = ( +/obj/structure/bookcase, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"dxT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"dxW" = ( /obj/structure/machinery/light, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) +"dyc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"dyh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"dyo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) +"dyu" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) "dyK" = ( /obj/structure/pipes/vents/pump, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"dyU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail) -"dyY" = ( -/obj/structure/pipes/vents/pump{ +"dyV" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"dyW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"dza" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/corsat{ - icon_state = "plate" + network = list("omega") }, -/area/corsat/theta/airlock/west) -"dzB" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west/id) +"dzz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"dzU" = ( +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) -"dzT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) "dzV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -37765,974 +7938,1326 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"dzX" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/gamma/foyer) -"dzZ" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/control) -"dAk" = ( -/obj/structure/pipes/vents/pump{ +"dAg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"dAG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"dAJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/airlock/south) -"dAW" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dBh" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) +"dBj" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Flight Control" }, -/area/corsat/omega/complex) -"dBi" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/security) -"dBx" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"dBs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"dBI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"dBy" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"dBP" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"dCb" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"dCi" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_13" - }, +/turf/open/mars_cave/mars_cave_18, /area/corsat/sigma/biodome) -"dBW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +"dCn" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/sigmaremote) -"dCv" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/datamaint) +"dCp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"dCt" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dCu" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"dCy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + amount = 10 }, -/area/corsat/gamma/medbay) -"dCP" = ( -/obj/structure/stairs{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"dCz" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"dCT" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"dCW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/south) -"dDj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"dDb" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/south/offices) +"dDF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"dDI" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"dDU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/theta/airlock/control) +"dDV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"dDZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"dEf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"dEr" = ( +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/south) -"dDl" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth/id) -"dDt" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"dEe" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat, +"dEs" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/gamma/sigmaremote) -"dET" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) +"dEA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) "dFb" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"dFe" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"dFj" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"dFu" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"dFK" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/residential) "dFL" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"dFP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +"dFV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Sigma Remote Complex"; + req_access_txt = "103" }, -/area/corsat/sigma/southeast/generator) -"dGb" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"dFZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"dGr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"dGv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/showers) -"dHa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dGN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/datamaint) +"dGR" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"dGU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/complex) -"dHG" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"dHe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/core) +"dHg" = ( +/obj/structure/machinery/door/airlock/almayer/research{ dir = 1; - icon_state = "purplewhite" + locked = 1; + name = "\improper Decontamination Chamber"; + req_access_txt = "103" }, -/area/corsat/gamma/biodome/virology) -"dIa" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"dHo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"dHr" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"dHx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"dHz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"dHA" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/area/corsat/sigma/biodome) -"dIo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"dHK" = ( +/obj/structure/prop/almayer/particle_cannon/corsat, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"dHO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"dID" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/explosive/grenade/custom/antiweed, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"dIW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "purplewhitecorner" + health = 80 }, -/area/corsat/theta/biodome/complex) -"dII" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"dJa" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"dJc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"dJq" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/area/corsat/sigma/south/complex) -"dJR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze, -/turf/open/floor{ +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"dJM" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"dJO" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "carpet15-15" + network = list("gamma") }, -/area/corsat/omega/offices) +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"dJP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"dJU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/theta/airlock/control) "dJV" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" }, /area/prison/hangar_storage/research/shuttle) -"dKg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"dJY" = ( +/obj/structure/sink, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"dKb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) "dKn" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"dKv" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) "dKE" = ( /obj/structure/grille, /turf/open/floor/plating, /area/corsat/gamma/hangar/monorail) -"dLL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"dLX" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"dMo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"dKF" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/north) +"dKJ" = ( +/obj/structure/machinery/computer/area_atmos/area, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/atmos) +"dLd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/sigma/south/robotics) -"dMH" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"dLh" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/corsat/gamma/administration) -"dMR" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"dLu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/gamma/airlock/control) +"dLB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth) -"dNa" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"dNb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"dLC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"dLG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/residential/east) -"dNd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"dLH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"dMk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"dMn" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 1 }, -/area/corsat/gamma/administration) -"dNC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" }, -/area/corsat/sigma/north) -"dNS" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/surface/table/almayer, +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"dMp" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast) +"dMB" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"dMJ" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/residential) +"dMX" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"dNe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - network = list("sigma") + name = "Firing Range"; + req_access_txt = "106"; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"dNN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"dNO" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"dOm" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/spiralwoodalt, +/area/corsat/gamma/residential/lounge) "dOo" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"dOq" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"dOu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"dOr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"dOD" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"dOE" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/area/corsat/gamma/freezer) -"dOw" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/area/corsat/omega/hangar/security) -"dOB" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "ThetaIDEC"; + name = "Security Shutters" }, -/area/corsat/gamma/canteen) -"dOF" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east/id) +"dOG" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dOH" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hallwaysouth) +"dPc" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"dPn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"dPo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"dPv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/sigma/biodome/gunrange) -"dPH" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"dPC" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/hallways) +"dPF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/area/corsat/omega/biodome) -"dPK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/area/corsat/gamma/engineering/core) -"dPV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/maint) +"dPM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"dQc" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" + dir = 4 }, -/area/corsat/gamma/administration) -"dQp" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"dQa" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "red" + name = "CMO Office"; + req_one_access_txt = "103" }, -/area/corsat/omega/airlocknorth/id) -"dQJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dQj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"dQl" = ( +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/morgue) +"dQq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar) -"dQL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"dQu" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"dQC" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/south) +"dQN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/theta/airlock/control) "dQQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"dQW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"dRz" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/south) -"dRI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/hangar/flightcontrol) -"dSi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"dSM" = ( -/obj/structure/machinery/light{ +"dQV" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"dQY" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"dRb" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"dTb" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"dRg" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"dRm" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"dTy" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" + dir = 4 }, -/area/corsat/omega/complex) -"dUj" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - dwidth = 1; - name = "Sigma Landing Zone" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"dRs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"dRu" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"dRN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar) -"dUn" = ( /obj/structure/machinery/camera/autoname{ + dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"dRP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"dRU" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"dSp" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"dVM" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" + network = list("sigma") }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"dSA" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"dVN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"dSP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" }, -/area/corsat/gamma/biodome/virology) -"dVQ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"dTt" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"dTw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"dTA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"dTH" = ( +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"dTI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/canteen) -"dWc" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar) +"dTO" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/skills{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"dTT" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"dTW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) -"dWk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +"dUf" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/lobby) +"dUo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"dUv" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential) -"dWJ" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "plate" + network = list("gamma") }, -/area/corsat/omega/biodome) -"dWY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/pamphlet/skill/powerloader, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"dUP" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"dUZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Dehydration Chamber"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/engineering) -"dXm" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"dVk" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome/scrapyard) +"dVq" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"dXp" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"dVF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "OmegaCargo"; + name = "Omega Cargo Bay"; + use_power = 0 }, -/area/prison/hangar_storage/research/shuttle) -"dXq" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"dVR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"dXy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"dWa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"dWx" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/corsat/gamma/engineering/core) -"dXO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"dWF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/lobby) +"dXf" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"dXj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"dXW" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"dYk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"dXk" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"dYB" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"dXs" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"dYJ" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"dXw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"dYc" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"dYj" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar) +"dYC" = ( +/obj/structure/sink{ dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"dYM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/arrivals) -"dZe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"dZu" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "squares" + pixel_y = -10 }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"dYO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential) -"dZH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"dYU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"dYV" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"dYW" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"dZf" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastW"; + name = "Theta East Airlock" }, -/area/corsat/gamma/rnr/library) +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"dZS" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "dZW" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"eaL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"eaj" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"eas" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthN"; + name = "Sigma South Airlock" }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"eat" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"eaF" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/airlock/north) +"eaI" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) "eaN" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"ebq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"eaO" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"eaY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"ebc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"ebg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"ebj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, -/area/corsat/sigma/airlock/control) -"eby" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"ebo" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/area/corsat/gamma/residential) -"ebE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"ebr" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/south) -"ebH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"ebu" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/medbay/morgue) +"ebD" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"ebI" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/south) +"ebR" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/residential/east) -"ebK" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"ebW" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"ecc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/gamma/biodome/virology) -"ect" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"ece" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ecf" = ( +/obj/effect/decal/mecha_wreckage/hoverpod, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"ech" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, -/area/corsat/omega/complex) -"ecA" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"ecm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"ecv" = ( +/obj/structure/machinery/vending/shared_vending, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ecU" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) "ecX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"edy" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/obj/structure/barricade/handrail{ +"edg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"edh" = ( +/obj/structure/surface/rack, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/signaller, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/prox_sensor, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"edp" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"edq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"edN" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"edO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"edV" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"edX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"eeb" = ( +/obj/structure/window/framed/corsat/hull/security, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"eek" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"eez" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"eeV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"eeX" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Research Hallway"; + req_one_access = null }, -/area/corsat/gamma/hangar) -"edP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"eeG" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"eeL" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"efs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"efB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"efS" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"efU" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"eeN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"efN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/area/corsat/theta/airlock/west) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) "egd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"egq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"egJ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/airlock/control) -"egM" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"egZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/research/containment/floor2{ +"egm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ dir = 1 }, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) +"egz" = ( +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"egO" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"egU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"eha" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "ehg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ehj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"ehy" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/hangar/flightcontrol) -"ehC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome) -"ehN" = ( +"eho" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"ehS" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential/researcher) -"ehU" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"ehB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ehD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"ehQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Armory"; + req_access_txt = "101" }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) "eii" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) +"eiu" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"eiB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"eiD" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) "eiG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eiQ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"eiR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"ejb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"eji" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"eiL" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/corsat/omega/airlocknorth/id) -"ejk" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"eiP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"eiU" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"eiW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/cargo) +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"eiX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"eiZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"ejc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"ejh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "ejl" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/mars, /area/corsat/sigma/biodome) -"ejD" = ( +"ejF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"ejV" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/structure/pipes/vents/pump{ +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"ekh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"ejL" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"ekn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/biodome/gunrange) -"ekd" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"ekt" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/canteen) +"ekv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"eky" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null }, -/area/corsat/sigma/cargo) -"ekK" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"ekz" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/area/corsat/theta/biodome/hydrowest) -"ekM" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"ekJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/sigma/south/security) -"elt" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ekV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"ekZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"elf" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"elj" = ( /obj/structure/machinery/camera/autoname{ - network = list("omega") + network = list("gamma") }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"ell" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/airlock/south/id) -"elG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"elw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/biodome) +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"elD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"elO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) "elR" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -38740,356 +9265,445 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"elX" = ( +"elS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"emg" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"eml" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"emm" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/residential) +"emy" = ( /obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"ema" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"emL" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"emM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/theta/biodome/hydrowest) -"emb" = ( -/turf/open/floor/corsat{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south) -"eme" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat{ - icon_state = "plate" + health = 80 }, -/area/corsat/theta/biodome/hydroeast) -"emC" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"emV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"ene" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"eng" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"enf" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"enu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"eni" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/scrapyard) +"enj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/area/corsat/gamma/medbay/morgue) -"enU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"enn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"enp" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"enq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/biodome) -"eon" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"ent" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/corsat/gamma/engineering/atmos) -"eoE" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"eny" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) -"eoF" = ( -/obj/structure/window/framed/corsat/hull/security, -/turf/open/floor/corsat{ - icon_state = "squares" +"enA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hangar/office) -"eoZ" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"enF" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ +/obj/item/storage/box/beakers, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"enH" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"enQ" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"eoe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"epc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"eof" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/corsat/omega/hallways) -"epg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"epm" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"eog" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"eoj" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"eom" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"eoq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"eox" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"eoM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) "epq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) +"epx" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"epD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "ThetaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west) "epI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/airlock/south/id) -"epN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"eqa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/checkpoint) -"eqg" = ( -/obj/structure/pipes/vents/pump{ +"epQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"epZ" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"eqf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/checkpoint) +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/security) "eql" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"eqt" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"equ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +"eqm" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"eqp" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"eqs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/south) "eqz" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/gamma/engineering/atmos) -"eqF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential) -"eqK" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/foyer) -"eqM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"erb" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"erc" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/corsat/gamma/residential/researcher) -"erh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"ero" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"erP" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"ese" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, +"eqC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/toxins) -"esg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ashtray/plastic, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"esA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/south/offices) -"esF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"esV" = ( -/obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" +"eqE" = ( +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/medbay/morgue) -"etb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"eqO" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/armory) +"eqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"etp" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"erc" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/theta/airlock/west) -"etD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/corsat/gamma/residential/researcher) +"err" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"ert" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/corsat/sigma/biodome) -"euc" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"eru" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"erK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"esk" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"esp" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"esG" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"esI" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/southeast/generator) -"eun" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" +"esK" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/gamma/biodome/complex) -"euV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"esU" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/airlock/control) +"esX" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaSouthS"; + name = "Gamma South Airlock" }, -/area/corsat/sigma/biodome) -"evq" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/wood, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"esY" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"etn" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"etr" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"etu" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"etN" = ( +/obj/item/tool/minihoe, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"etQ" = ( +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/residential/east) -"evv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +"eue" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"euf" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"eul" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/south/robotics) -"ewM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"euo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"euq" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"euB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/armory) +"euW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"ewN" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"evf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"evq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"evJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"evZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"ewP" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/sigma/checkpoint) -"ewT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"ewo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"ews" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"eww" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"ewA" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/maint) +"ewE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"ewJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) "ewW" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, @@ -39102,48 +9716,46 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"exf" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/datalab) -"exz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Teleporter Power Room"; - req_access_txt = "103"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"exG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"exC" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar) +"exX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security/armory) +"eyb" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"eyj" = ( +/obj/structure/sink{ dir = 4; - icon_state = "red" + pixel_x = 11 }, -/area/corsat/theta/airlock/west/id) -"exY" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"eyt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) -"eym" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast) -"eyz" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +"eyw" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 }, -/area/corsat/omega/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) "eyA" = ( /obj/structure/bed{ icon_state = "psychbed" @@ -39151,277 +9763,404 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) +"eyC" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"eyF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "eyK" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/freezer) -"ezs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"ezx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"eyQ" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/corsat/theta/biodome/hydrowest) -"ezJ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"eyV" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"ezQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + network = list("sigma") }, -/area/corsat/omega/maint) +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"ezd" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/cargo) +"eze" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"ezl" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"ezr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ezu" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"ezv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south) +"ezD" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) "ezR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"eAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"eAC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) "eAD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/south, /area/corsat/theta/biodome) -"eBl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"eBx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"eCr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"eAK" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/office) +"eAR" = ( +/obj/structure/surface/rack, +/obj/item/implanter/neurostim, +/obj/item/implanter/neurostim, +/obj/item/implanter/adrenalin, +/obj/item/implanter/adrenalin, +/obj/item/implanter/loyalty, +/obj/item/implanter/loyalty, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"eAW" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"eAX" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastW"; + name = "Gamma East Airlock" }, -/area/corsat/gamma/hangar/arrivals) -"eDd" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"eBo" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo/disposal) +"eBt" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/checkpoint) +"eBI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"eBV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"eDe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ +/obj/structure/platform{ dir = 1; - icon_state = "red" + layer = 2.7 }, -/area/corsat/omega/hangar/security) -"eDq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eCj" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/corsat/sigma/airlock/south/id) -"eDz" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"eCk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"eCl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar) -"eDK" = ( -/obj/structure/morgue{ +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"eCx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"eCD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"eCK" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"eCN" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/security) +"eCO" = ( +/turf/open/floor/corsat/theta, +/area/corsat/omega/checkpoint) +"eCZ" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"eDI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) "eDM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"eDP" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +"eDX" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"eDZ" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"eEi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/purple/southwest, +/area/corsat/sigma/south) +"eEw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"eEA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"eEB" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"eEL" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"eEJ" = ( +"eFy" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"eFC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/theta/airlock/control) -"eEW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"eFF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/corsat/sigma/southeast/generator) -"eGx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"eFO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/omega/hangar/security) -"eGM" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"eFQ" = ( +/obj/item/folder/black, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"eGr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "22" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"eGK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"eGQ" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"eGS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"eHk" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/canteen) -"eHn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"eHG" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"eHJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"eIl" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) "eIq" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/cargo) +"eIv" = ( +/obj/structure/surface/rack, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"eIx" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) "eIL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"eJg" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, -/area/corsat/gamma/hallwaysouth) -"eJx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/handset, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"eJz" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"eKm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"eKJ" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"eKL" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/administration) -"eKV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +"eIU" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/surface/rack, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"eIZ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/omega/cargo) +"eJC" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) +"eJV" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"eKp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/complex) -"eLc" = ( -/obj/structure/bed/chair/office/light{ +"eKr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"eKt" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"eKQ" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr/bar) +"eKX" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"eLe" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"eLi" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" + dir = 1 }, -/area/corsat/gamma/residential/west) -"eLP" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"eLo" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/arrivals) +"eLx" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "18" }, -/area/corsat/omega/hallways) -"eLR" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"eLG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"eLL" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/residential/west) -"eMu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"eLN" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" }, -/area/corsat/gamma/rnr/bar) +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"eMk" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"eMl" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"eMs" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) "eMB" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -39436,635 +10175,969 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"eMM" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +"eMR" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/corsat/omega/biodome) -"eNm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"eNn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"eMU" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"eNp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/corner{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"eNq" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/corsat/sigma/south/complex) -"eNI" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/obj/structure/closet/firecloset, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-theta-control" }, -/area/corsat/sigma/south) +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"eNy" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) +"eND" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) "eNM" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"eNP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"eNV" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"eOb" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) "eOe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"eOI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"eOS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"eOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"eOx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"eOJ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"eON" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"eOQ" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/hangar) +"eOT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/medbay) +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "eOZ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ePL" = ( -/obj/structure/closet/l3closet/general, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"eQR" = ( +"ePm" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"ePx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/dorms) -"eRg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"eRi" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ePA" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ePC" = ( /obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"ePE" = ( +/obj/structure/disposaloutlet, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo/disposal) +"ePF" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"ePP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"eRE" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/airlock/north) +"ePS" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/corsat/theta/airlock/west/id) -"eRX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ePT" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"ePW" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"eQc" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/corsat/sigma/south/robotics) -"eSg" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/window/reinforced/toughened{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"eQk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaHangarNE"; + name = "Checkpoint Control"; + use_power = 0 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"eQw" = ( +/obj/structure/machinery/door_control{ + id = "GammaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"eQA" = ( +/obj/structure/curtain/open/medical, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"eQI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"eQN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"eQT" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) -"eSC" = ( -/obj/structure/machinery/light, -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"eRa" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"eRe" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"eRq" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"eRv" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"eSo" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/gamma/biodome/virology) -"eSY" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"eSF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("omega") }, -/area/corsat/sigma/cargo) -"eTf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"eST" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/hangar/arrivals) -"eTg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"eSX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eTc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "eTj" = ( /obj/structure/filingcabinet/filingcabinet, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"eTC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"eTn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"eTp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/east) -"eTR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"eUe" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"eTq" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthN"; + name = "Gamma North Airlock" }, -/area/corsat/gamma/residential/west) -"eUf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"eTr" = ( +/obj/item/storage/fancy/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"eTs" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -30 }, -/area/corsat/sigma/south) -"eUn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"eTz" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/omega/containment) -"eUB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"eTJ" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/area/corsat/gamma/hallwaysouth) -"eUE" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"eTO" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"eUd" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security) +"eUh" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"eUL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaEastE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/machinery/door_control{ + id = "ThetaEastW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/sigma/biodome) -"eUK" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"eUM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/area/corsat/theta/biodome/hydrowest) -"eUR" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"eVd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"eVf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"eVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/airlock/south) -"eVe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"eVn" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"eVt" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/omega/hallways) -"eVr" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat{ +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eVF" = ( +/obj/structure/platform{ dir = 1; - icon_state = "squareswood" + layer = 2.7 }, -/area/corsat/omega/offices) -"eVI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eVU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"eWb" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"eVQ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"eWe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"eWs" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/rnr) +"eWH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"eWX" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/south/id) +"eWP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"eXi" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/hangar/arrivals) -"eXO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"eXd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"eXS" = ( -/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"eXh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/hangar) +"eXk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/dorms) -"eXX" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"eXG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"eXK" = ( /obj/structure/surface/table/reinforced, /obj/item/paper, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"eYe" = ( -/obj/structure/bedsheetbin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"eXQ" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"eYr" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"eYv" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"eXU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"eXV" = ( +/obj/structure/bed, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security/cells) +"eYf" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"eYw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/south/offices) -"eYG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"eYN" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"eZp" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"eZK" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 }, -/area/corsat/omega/offices) -"eYT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"eZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/squares, /area/corsat/omega/security) -"eZq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"eZv" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydroeast) "eZQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"fax" = ( -/obj/structure/machinery/light{ +"eZR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"eZS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"fau" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"faC" = ( +/obj/structure/surface/rack, +/obj/item/holder/drone, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"faP" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"faS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 4; - icon_state = "purplewhite" + network = list("omega") }, -/area/corsat/gamma/biodome/complex) -"faF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"fbd" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/airlock/control) +"fbi" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"fbl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"fbp" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"fbx" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"fbG" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"fbY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) -"faT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"fca" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/cargo) -"fbe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"fbs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"fcd" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"fcg" = ( +/obj/structure/window/reinforced, +/obj/structure/platform, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"fcl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"fcA" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/theta/biodome/complex) -"fcq" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"fcB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"fcQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/offices) +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"fcY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) "fdc" = ( /obj/structure/machinery/light/small, /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) -"fdf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/omega/hallways) "fdh" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/biodome/complex) -"feg" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +"fdo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, /area/corsat/gamma/cargo) -"fey" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"feC" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/wood, -/area/corsat/sigma/dorms) -"feD" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/freezer) -"feQ" = ( +"fdr" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"feZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"ffa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/hallwaysouth) -"ffc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/security) -"ffl" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"fds" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/omega/offices) +"fdt" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"ffp" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"fdB" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/gamma/residential/east) -"ffC" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"fdW" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"fei" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"fep" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"feB" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"feC" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/wood, +/area/corsat/sigma/dorms) +"feE" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"feG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"feM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"feU" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"feX" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"fff" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"ffi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"ffr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) "ffF" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"ffQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +"ffL" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) +"ffS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/south) -"fgs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"ffU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/sigma/south/complex) -"fgu" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"ffW" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"fgN" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ffZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/area/corsat/sigma/south/engineering) -"fha" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/airlock/north) +"fgb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/north) -"fhb" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"fgr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"fgv" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar) +"fgw" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/lavatory) -"fhG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"fgD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/monorail/control) +"fgK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/area/corsat/omega/offices) -"fid" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"fgL" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/gamma/biodome/toxins) -"fie" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"fgQ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "9" }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fhg" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"fhs" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"fhv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"fhP" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGate"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"fib" = ( +/obj/structure/machinery/door_control{ + id = "GammaBioAtmos"; + name = "Access Shutters"; + pixel_y = -24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"fik" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) "fip" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fkn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"fix" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"fkG" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"fiG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"fiR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"fja" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"fjd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"fjh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/hangar/security) -"fkV" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"fjj" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hallways) +"fjp" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"fjq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/dorms) -"fkX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"fjD" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"fjH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"fjN" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"fjW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"fkh" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/thermal, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" }, -/area/corsat/gamma/medbay) -"flh" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"fkt" = ( +/obj/structure/disposaloutlet{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/corsat/omega/cargo) -"fll" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"fkM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south) +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) "flo" = ( /obj/structure/window/reinforced{ dir = 8 @@ -40076,144 +11149,129 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/foyer) -"flt" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) +"flr" = ( +/turf/open/floor/corsat/darkgreen/southwest, +/area/corsat/gamma/rnr) "flB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"flQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"fmd" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering"; - req_one_access_txt = "102" - }, +"flO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" + dir = 6 }, -/area/corsat/sigma/south/engineering) -"fmk" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"flU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"flV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"fml" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/foyer) "fmq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"fmw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/hydrowest) -"fmC" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/voice, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"fmF" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"fmM" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"fmR" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"fmy" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor4, /area/corsat/theta/biodome/complex) -"fmZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/north) -"fnd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "purple" - }, +"fmA" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"fmE" = ( +/turf/open/floor/corsat/yellowcorner, /area/corsat/omega/hallways) -"fnz" = ( -/obj/structure/sink{ +"fmO" = ( +/obj/structure/platform{ dir = 4; - pixel_x = 11 + layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/south/complex) -"fog" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"fng" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"fno" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"fnv" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) +"fny" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"fnE" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 }, -/area/corsat/sigma/checkpoint) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"fnI" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"fnM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"fnS" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"foi" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"foz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/omega/control) "foQ" = ( /obj/structure/tunnel{ id = "hole2" }, /turf/open/ice, /area/corsat/gamma/biodome) -"fps" = ( -/obj/structure/machinery/atm{ - pixel_y = -30 - }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +"foR" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"fpn" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/foyer) +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) "fpI" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -40221,30 +11279,15 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fpL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"fqj" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"fqk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"fpM" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"fpQ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/corsat/theta/biodome/hydrowest) +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) "fqp" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -40254,272 +11297,488 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"frk" = ( +"fqy" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) +"fqA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"fqE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"fqF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"fqG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/biodome) -"fsd" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"fqI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"fqL" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/control) +"fqM" = ( /obj/structure/surface/table/reinforced, -/obj/item/folder/red, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fqO" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"fri" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/corsat/omega/hangar/office) -"fsn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "yellow" +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"frD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"fsr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"frI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Auditorium" }, -/area/corsat/gamma/hallwaysouth) -"fst" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"frU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/sigmaremote) -"fsu" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fsc" = ( +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"fsh" = ( +/obj/structure/platform{ + dir = 1 }, -/area/corsat/omega/hallways) +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"fsw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) "fsx" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/gamma/biodome) +"fsI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) "fsL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"fsP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"fsT" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/airlock/control) +"fsU" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) +"ftf" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"ftn" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/corsat/gamma/rnr) -"fsS" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"ftt" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"ftj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"ftx" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"ftz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" + dir = 9 }, -/area/corsat/gamma/residential/east) -"ftX" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ftF" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fuc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" }, -/area/corsat/sigma/hangar) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) "fue" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/closed/gm/dense, /area/corsat/theta/biodome) -"fum" = ( +"fup" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"fus" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/hangar/monorail/control) +"fuB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"fuJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"fuL" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"fuR" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/corsat/gamma/airlock/south) -"fuG" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"fvh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"fvi" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"fvx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"fvW" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast) +"fwd" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) +"fwi" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"fwo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) -"fuK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"fwp" = ( +/mob/living/simple_animal/hostile/carp{ + color = "orange"; + faction = "neutral"; + harm_intent_damage = 0; + melee_damage_lower = 0; + melee_damage_upper = 0 }, -/area/corsat/omega/airlocknorth/id) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) "fwq" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"fwQ" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"fwL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"fwZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"fxa" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"fxe" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) "fxf" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/east) -"fxn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/airlocknorth) -"fxM" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/sigma/airlock/control) -"fxW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "redcorner" +"fxi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/lobby) +"fxk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" }, -/area/corsat/omega/airlocknorth/id) -"fyq" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"fxx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/cargo) -"fyy" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"fxT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "yellowcorner" + name = "Genetics Lab"; + req_one_access_txt = "103" }, -/area/corsat/gamma/engineering/atmos) -"fyC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fxU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/gamma/hangar/office) -"fyM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"fyl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"fyr" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"fys" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/cells) +"fyw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/northwest, /area/corsat/sigma/southeast/datalab) -"fyO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"fyx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/biodome) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"fyz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/airlock/north) +"fyK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"fyN" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "fzd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"fzm" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"fzo" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +"fzs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar/security) -"fzy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"fzv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, -/area/corsat/theta/biodome/complex) -"fzV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"fzz" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"fzD" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"fzL" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"fzP" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"fzR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"fAe" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/residential/lounge) +"fAu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/hangar/security) -"fBG" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"fAv" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"fAx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"fAA" = ( +/obj/structure/platform{ + dir = 1 }, -/area/corsat/omega/hallways) -"fBP" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"fAE" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"fAV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fAZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"fBj" = ( /obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat{ +/obj/structure/machinery/computer/cameras{ dir = 8; - icon_state = "red" + network = list("sigma") }, -/area/corsat/omega/hangar/security) -"fCi" = ( -/obj/structure/surface/table, -/obj/item/folder, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"fBI" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"fBJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"fBV" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"fCf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"fCx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"fCp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/northright{ + name = "Firing Lane" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome/gunrange) +"fCq" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"fCE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/administration) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) "fCK" = ( /obj/structure/barricade/handrail{ layer = 3 @@ -40529,323 +11788,510 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"fCN" = ( -/obj/item/storage/box/masks, -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"fDx" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"fCV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"fCY" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"fDk" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "17" }, -/area/corsat/sigma/hangar/security) -"fDY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fDn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/east) -"fEl" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"fDo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/omega/security) -"fEC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"fDs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/hangar) -"fEI" = ( -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"fDE" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "11" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"fDI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"fDL" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/theta/biodome/complex) +"fDS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"fDU" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"fEn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" }, -/area/corsat/gamma/residential/west) -"fEP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"fEE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/hangar/arrivals) +/turf/open/floor/corsat/squares, +/area/corsat/omega/complex) +"fEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"fER" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/sigma/hangar) +"fEX" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) "fFa" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"fFh" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"fFe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/omega/maint) -"fFI" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"fFy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"fFB" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"fFC" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"fFR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"fFW" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south/engineering) -"fGJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ +"fGd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"fGj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "103" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/sigmaremote) -"fGM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"fGk" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/datalab) +"fGw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) -"fGO" = ( -/obj/structure/machinery/light{ +"fGy" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"fGz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"fGA" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"fGG" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"fGP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"fGS" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"fHe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/hallwaysouth) -"fGU" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"fHj" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/dorms) +"fHn" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"fGV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"fHr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"fHK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) "fHO" = ( /obj/structure/largecrate/random, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"fHP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +"fIh" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"fIm" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/area/corsat/sigma/dorms) -"fHX" = ( -/obj/structure/closet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"fIB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/medbay/morgue) -"fIr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"fIY" = ( -/obj/structure/machinery/light{ - dir = 1 +"fIE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Cafe"; + req_one_access = null }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/hallways) -"fIZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"fIM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/sigma/north) -"fJf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"fIO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/southeast) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"fIT" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"fJb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fJg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) "fJm" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"fJx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"fJZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" +"fKs" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) "fKw" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"fLm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"fLz" = ( +"fKD" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"fKG" = ( +/obj/item/implant/loyalty, +/obj/item/implant/loyalty, +/obj/item/implant/compressed, +/obj/item/implant/compressed, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"fKS" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"fLc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/area/corsat/gamma/kitchen) -"fMi" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"fLf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"fLg" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/northwest, +/area/corsat/gamma/medbay/morgue) +"fLi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"fLk" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"fLq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"fLG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"fMn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"fLQ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"fLX" = ( +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"fMj" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"fMZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/engineering) -"fMv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ +/obj/structure/platform{ dir = 1; - icon_state = "purplewhite" + layer = 2.7 }, -/area/corsat/gamma/biodome/virology) -"fMN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"fNa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"fNf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/canteen) -"fNy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"fNj" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/airlocknorth) +"fNw" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"fNA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"fNB" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Hazardous Materials Lab"; + req_one_access_txt = "101" }, -/area/corsat/gamma/canteen) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"fNI" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/rnr) +"fNN" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"fNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"fNV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) "fOd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"fOh" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" +"fOq" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast/datalab) +"fOw" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"fOL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/security) -"fPp" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"fOP" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"fOQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"fOT" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"fPq" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"fPU" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"fPW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"fQe" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"fQh" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/squareswood/north, /area/corsat/omega/offices) -"fPK" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +"fQA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Construction Yard"; + req_one_access_txt = "102" }, -/area/corsat/gamma/airlock/control) -"fQl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fQF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"fQY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/south) +"fRc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/airlock/control) -"fQm" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"fRp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"fRt" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"fRu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/south/id) +"fRO" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"fQC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, +/obj/structure/window/reinforced, +/obj/structure/platform, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"fSa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/gamma/hangar/cargo) -"fRD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/arrivals) -"fRR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"fSm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) "fSo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/green{ @@ -40853,384 +12299,475 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"fSr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +"fSp" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/omega/hangar) +"fSq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"fSv" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "fSA" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"fSB" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/arrivals) -"fSU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +"fSH" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"fSN" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"fSP" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaO"; + name = "Omega Lockdown" }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"fSQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) "fSX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, /turf/open/floor/plating, /area/prison/hangar_storage/research/shuttle) -"fTw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" +"fTf" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"fTg" = ( +/obj/structure/window/framed/corsat/research, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"fTl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/southeast/datamaint) -"fTx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"fTt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/area/corsat/gamma/engineering) -"fTT" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"fTG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"fTW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"fTX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"fTZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"fUa" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"fUm" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/airlocknorth) -"fUj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"fUs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) -"fUp" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"fUw" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"fUx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"fUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"fVc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/theta/biodome/complex) -"fUA" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"fVh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) "fVl" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/ice, /area/corsat/gamma/biodome) -"fVm" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"fVo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"fWe" = ( +"fVB" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"fVD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, -/area/corsat/sigma/hangar/monorail) +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"fVF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/airlock/south) "fWx" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"fWK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) +"fWL" = ( +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) "fWM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"fWN" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"fWQ" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"fWS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/corsat/sigma/hangar/checkpoint) -"fXx" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"fXb" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"fXA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"fXq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/airlock/control) -"fXE" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"fXu" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"fXN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"fXW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/residential) -"fXJ" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"fXX" = ( /obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"fYj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential) -"fXP" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"fYw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_omega"; + name = "Checkpoint Omega"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/sigma/hangar/security) +/obj/structure/machinery/door_control{ + id = "delta_theta"; + name = "Theta Emergency Access"; + pixel_x = 5; + use_power = 0 + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) "fYL" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"fZq" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/security) -"fZQ" = ( +"fYP" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"fZW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"gab" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"fYV" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"fYW" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/surgery) +"fZe" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"fZg" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"gak" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/sigma/airlock/east) -"gaF" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/security) -"gaO" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south) -"gaP" = ( +/turf/open/floor/carpet13_5/west, +/area/corsat/omega/offices) +"fZm" = ( /obj/structure/surface/table/almayer, /obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"gbd" = ( +/obj/item/tool/pen, /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"gbm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"gbw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"gbQ" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"gcs" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"fZs" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"fZy" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"fZU" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "delta_gamma2"; + name = "Gamma Checkpoint"; + use_power = 0 }, -/area/corsat/theta/biodome/hydroeast) -"gcy" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"fZZ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"gac" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"gcE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hallwaysouth) -"gcM" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/corsat/omega/hangar) -"gcW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/obj/item/storage/donut_box, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"gaj" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" }, -/area/corsat/theta/airlock/control) -"gdy" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"gaz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"gbb" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"gdD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"gbg" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/mars_cave/mars_cave_2, /area/corsat/sigma/biodome) -"gdM" = ( +"gbp" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"gbB" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"gbC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/id) -"gdO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"gbE" = ( +/obj/structure/platform{ dir = 1; - icon_state = "purplewhite" + layer = 2.7 }, -/area/corsat/theta/biodome/complex) -"ged" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"gbX" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/office) +"gbY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/omega/airlocknorth) -"gei" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"gcd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/airlock/east/id) +"gch" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"gcp" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"gcu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"gcQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"gdi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"gdk" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" }, -/area/corsat/sigma/hangar) -"gew" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"gdl" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/north) +"gdB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"gdQ" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"gdY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"gea" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"geh" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"geB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/airlock/south) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"geC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) "geN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"geV" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"gft" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"gfC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"gff" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"gfm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"gfz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) +"gfK" = ( +/obj/item/cell/crap, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) "gfL" = ( /obj/structure/machinery/camera/autoname{ dir = 4; @@ -41238,179 +12775,204 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"gfM" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"ggc" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" +"gfP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/cargo) -"ggh" = ( /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"ggq" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/foyer) -"ggO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"ggU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"ghu" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 1; + network = list("sigma") }, -/area/corsat/gamma/security) -"ghx" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"gfZ" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"gga" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"ggl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/checkpoint) +"ggr" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"ggC" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/area/corsat/gamma/residential/maint) -"ghB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/revolver/m44, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"ggD" = ( +/turf/open/floor/corsat/greencorner, +/area/corsat/gamma/hallwaysouth) +"ggE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"ggN" = ( +/turf/open/floor/corsat/greenwhite, /area/corsat/gamma/medbay) -"ghJ" = ( +"ggQ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"gio" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"ghc" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "10" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"ghl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"ghm" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/south) +"ghn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Reception Desk"; + req_one_access_txt = "102" }, -/area/corsat/gamma/airlock/control) -"giX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"ghp" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "GammaEastE"; + name = "Gamma East Airlock" }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"ghI" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) -"gjb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +"ghM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/biodome/scrapyard) -"gjh" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"giG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"giH" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/sigma/hangar/security) -"gjj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/monorail) +"giK" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"giO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"giS" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"gjg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/southeast/datalab) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"gjr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) "gjt" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/plating, /area/prison/hangar_storage/research/shuttle) -"gjw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"gjz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gjP" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"gjT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) "gjX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/checkpoint) -"gke" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +"gkm" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/corsat/sigma/cargo) -"gki" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"gkq" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"gkw" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) "gkx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"gkA" = ( +"gky" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) +"gkB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"gkC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/monorail) -"gkH" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" + dir = 6 }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/sigmaremote) +"gkF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) "gkU" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -41420,49 +12982,85 @@ }, /turf/open/floor/plating, /area/corsat/gamma/airlock/south/id) +"gln" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) "glr" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"gne" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/omega/hallways) -"gnm" = ( -/obj/structure/closet/wardrobe/toxins_white, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +"glv" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" }, -/area/corsat/gamma/biodome/toxins) -"gnC" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"glX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"gmb" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/airlock/east/id) +"gmn" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"gms" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/corsat/gamma/medbay) -"gnF" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"gmw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"gmO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/area/corsat/sigma/southeast/datalab) -"gnO" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"gmU" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/barricade/handrail{ - layer = 3 +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"gnc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"gni" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gny" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"gnG" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"gnH" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/cargo) "gnR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green{ @@ -41470,101 +13068,99 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"goe" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/airlocknorth) -"gok" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "lightplate" +"gnW" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/south/complex) -"goV" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"goc" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"god" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"gpn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"gog" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"goj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"gow" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"gpu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Storage"; - req_one_access_txt = "102" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"goF" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"goN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"goY" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"gpl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"gpA" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"gpO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) "gpP" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"gqd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/office) -"gqi" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"gqo" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"gqE" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"gqH" = ( +"gpR" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"gpW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"gqc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"gqy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"gqK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gqI" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"gqN" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) "gqT" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump, @@ -41574,68 +13170,86 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"gra" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/sigma/airlock/control) -"grc" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) +"gqX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) "gre" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/river, /area/corsat/theta/biodome) -"grf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"grg" = ( -/obj/structure/surface/table, -/obj/item/book, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) +"grB" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) "grD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"grK" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +"grE" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"gsg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"grR" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"grV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"grW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/window/southright, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"gsm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"gsn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"gsq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"gsC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/cafe) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"gsH" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"gsQ" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"gtb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hazardous Materials Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "gtc" = ( /obj/structure/barricade/handrail{ layer = 3 @@ -41644,204 +13258,257 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"gth" = ( +"gte" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"gti" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"gto" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"gtF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/researcher) -"gtp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/south/offices) -"gtr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gtL" = ( +/obj/structure/bed/stool{ + pixel_y = 15 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"gtO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/rnr) -"gtI" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"gtS" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"gtP" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential) +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) "gtX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gud" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +"guc" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"gug" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/hallways) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) "gui" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"guq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ +"gur" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/microwave, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"gus" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"guw" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"guC" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"guV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"guW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"gva" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) -"guA" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gvd" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/dice/d20, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"gvf" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hallways) +"gvq" = ( +/obj/structure/machinery/light, +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"gvs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"gvI" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/area/corsat/gamma/medbay) -"guG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/obj/structure/cryofeed{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "coolant feed" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"gvM" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"gvP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Gamma Dome Control" }, -/area/corsat/gamma/medbay/lobby) -"guS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/foyer) -"gvh" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar) -"gvi" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"gvT" = ( +/obj/item/broken_device, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"gwn" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) -"gvl" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"gvs" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/wood, -/area/corsat/theta/biodome/complex) -"gwV" = ( +"gwt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gwH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/airlock/east/id) +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) "gwY" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"gxb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"gxp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +"gwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"gxe" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome) +"gxm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/area/corsat/gamma/biodome/virology) -"gxu" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"gxz" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"gxS" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/cafe) -"gyg" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"gxW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/southeast/datalab) -"gys" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gxZ" = ( +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"gye" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" }, -/area/corsat/omega/hangar/security) -"gyx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"gym" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "103" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"gyK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"gyN" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"gyV" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + use_power = 0 }, -/area/corsat/sigma/south/robotics) -"gze" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"gyY" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"gzc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hangar/monorail) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) "gzf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; @@ -41849,55 +13516,75 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"gzz" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"gzB" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"gzL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/west) -"gAh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/morgue) -"gAt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"gAv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"gzo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gzs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"gzt" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/item/evidencebag, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"gzD" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/hangar/monorail/control) +"gzG" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/north) +"gzR" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"gzU" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"gAc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"gAk" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"gAq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"gAO" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"gAS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"gAX" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar) +"gBc" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) "gBh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/sigma/dorms) +"gBl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) "gBx" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -41907,43 +13594,139 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"gCo" = ( -/obj/structure/pipes/vents/pump{ +"gBA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"gBC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"gBG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"gBU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"gCa" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"gCh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"gCl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"gCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"gCn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"gCz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"gCP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"gCQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "white" + health = 250 }, -/area/corsat/gamma/residential) -"gCN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"gCS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/southeast/dataoffice) -"gCO" = ( -/turf/open/floor/corsat{ - icon_state = "green" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"gCZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"gEf" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"gDb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"gDd" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) +"gDw" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"gDR" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/checkpoint) +"gDV" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"gEe" = ( +/obj/structure/prop/almayer/cannon_cables{ + color = "#55BBFF"; + name = "\improper Cables" + }, +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"gEl" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"gEx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"gEm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Interrogation" }, -/area/corsat/gamma/hangar/checkpoint) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "gEy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -41951,6 +13734,29 @@ }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) +"gEC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) +"gED" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/east) +"gEG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"gEL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) "gEU" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -41958,12 +13764,32 @@ }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"gEV" = ( -/turf/open/floor/corsat{ +"gEX" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "bluecorner" + network = list("gamma") }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"gEZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"gFa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"gFb" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"gFg" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) "gFh" = ( /obj/structure/flora/jungle/alienplant1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -41971,99 +13797,105 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gGb" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"gGF" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/morgue) -"gGQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/omega/control) -"gGR" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"gFB" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"gGp" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth/id) +"gGw" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/office) +"gGz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Data Office"; + req_access_txt = "102;103" }, -/area/prison/hangar_storage/research/shuttle) -"gGT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + dir = 4 }, -/area/corsat/sigma/biodome/gunrange) -"gGZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"gGB" = ( +/obj/structure/prop/mech/parts/durand_torso, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"gGH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "GammaBioAtmos"; + name = "Access Shutter" }, -/area/corsat/gamma/rnr) -"gHg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"gHn" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"gIe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"gHi" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"gHm" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"gHr" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"gHw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security/cells) +"gHz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"gIb" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/office) +"gIg" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/omega/hallways) -"gIT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"gIw" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "1" }, -/area/corsat/omega/offices) -"gJn" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"gIM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/foyer) -"gJr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"gIS" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"gIV" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"gJg" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"gJo" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) "gJz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -42071,37 +13903,82 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"gJS" = ( -/turf/open/floor/corsat{ +"gJN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"gJO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "red" + name = "Chemistry"; + req_one_access_txt = "103" }, -/area/corsat/sigma/hangar/checkpoint) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"gJT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) "gJX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west/id) -"gKn" = ( -/obj/structure/closet/wardrobe, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +"gKi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/residential/showers) -"gKu" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"gKk" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4; + layer = 2 }, +/turf/open/floor/corsat/white/southeast, /area/corsat/gamma/hallwaysouth) -"gKQ" = ( -/obj/structure/machinery/light{ - dir = 1 +"gKl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"gKs" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"gKv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"gKP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"gLk" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"gLm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) "gLs" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/inaccessible) @@ -42112,231 +13989,290 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gLW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/arrivals) -"gMC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"gMY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"gLQ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 }, -/area/corsat/gamma/hangar/security) -"gNb" = ( -/turf/open/floor/corsat{ - icon_state = "purple" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"gMa" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"gMd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"gMf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/omega/complex) -"gNt" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +"gMp" = ( +/obj/structure/machinery/door_control{ + id = "GammaAdmin"; + name = "Security Shutters"; + pixel_x = 24; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"gMN" = ( +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) -"gOk" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"gOx" = ( +"gNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"gNn" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"gNp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"gNB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/rnr) -"gOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/complex) -"gOP" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "purplewhite" + network = list("sigma") }, -/area/corsat/sigma/south/complex) -"gOU" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"gNC" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/lightplate, /area/corsat/gamma/biodome/virology) -"gOZ" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/checkpoint) -"gPd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar) -"gPk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"gPo" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ +"gNN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"gPC" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"gPN" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/security) -"gPU" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"gNO" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"gNS" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"gNX" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"gOc" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"gOk" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"gOm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"gOS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/omega/complex) -"gPX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/hangar/office) -"gQj" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"gOT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"gPl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Storage"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gPn" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"gPD" = ( +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/south/id) -"gQL" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"gRf" = ( +"gPE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/sigma/south) -"gRg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"gPI" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/area/corsat/sigma/biodome) -"gRm" = ( -/obj/structure/bed/stool{ - pixel_y = 15 +/obj/item/organ/eyes, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"gPL" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"gPR" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"gPT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast) +"gPY" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "squareswood" + name = "Teleportation Chamber"; + req_one_access_txt = "101;103" }, -/area/corsat/gamma/rnr/arcade) -"gRB" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"gQa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "yellow" + name = "Sigma Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/sigma/north) -"gRE" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"gQj" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"gRH" = ( +/turf/open/floor/corsat, +/area/corsat/gamma/airlock/south/id) +"gQt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"gQA" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"gQQ" = ( +/obj/structure/machinery/r_n_d/bioprinter, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"gQR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"gQW" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"gRP" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null +/turf/open/floor/corsat/theta, +/area/corsat/theta/biodome/complex) +"gRn" = ( +/obj/structure/showcase{ + icon_state = "relay"; + name = "Telecommunication Relay" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"gRq" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"gRJ" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "ThetaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"gRM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/medbay/morgue) -"gSm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/hallways) +"gRO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"gRU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/prison/hangar_storage/research/shuttle) -"gSu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"gSd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"gSe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"gSj" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"gSl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"gSt" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"gSw" = ( +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) "gSC" = ( /obj/structure/largecrate/random/barrel, /obj/structure/machinery/light/small{ @@ -42344,165 +14280,210 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"gSI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"gST" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/hangar/office) -"gSQ" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"gSU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"gTf" = ( +/obj/structure/machinery/smartfridge/secure/virology{ + req_access_txt = "103" }, -/area/corsat/theta/biodome/complex) -"gTe" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/virology) +"gTC" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"gUe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"gTM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"gUj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"gTN" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/administration) +"gTW" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/corsat/sigma/dorms) -"gUs" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"gTY" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"gTZ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"gUm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"gUu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/corsat/omega/cargo) -"gUw" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"gUE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"gUZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"gVa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp/cmo, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"gVb" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"gVc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Research Desk" }, -/obj/item/organ/kidneys, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Research Desk" }, -/area/corsat/omega/complex) -"gUX" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"gVg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" + dir = 9 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) "gVr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"gVw" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/dorms) -"gVM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/offices) -"gVR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" +"gVs" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south) +"gVz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"gVI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"gWS" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"gVL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"gVP" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "tan" + req_access_txt = "101" }, -/area/corsat/gamma/residential/west) -"gWU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"gVS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"gVT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/corsat/sigma/biodome) -"gXp" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"gWi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"gXv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"gWm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) +"gWE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"gWT" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" }, -/area/corsat/sigma/south/robotics) -"gXG" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"gWW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"gXL" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 9 }, -/area/corsat/theta/biodome/hydroeast) -"gXM" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"gXb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"gXk" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"gXw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"gXy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"gXE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) "gXN" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -42510,231 +14491,291 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"gYm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/maint) -"gYr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"gYA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/checkpoint) -"gYL" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" +"gYh" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/hangar/office) +"gYl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/gamma/sigmaremote) -"gZc" = ( -/obj/structure/platform{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"gYv" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) -"gZj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"gZs" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 +"gYx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"gYy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/east/id) +"gYz" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"gYC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south) -"gZw" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"gYR" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"gZy" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/corsat/gamma/kitchen) -"gZB" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"gZD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) "gZF" = ( /obj/structure/bed, /obj/item/bedsheet/brown, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"gZH" = ( +"gZK" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"gZR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"gZW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/sigma/south/engineering) -"hap" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"gZX" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hab" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/sigmaremote) -"hat" = ( -/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"hac" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/shuttle/escapepod/floor12, +/area/corsat/theta/biodome/complex) +"hag" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"hah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/corsat/sigma/dorms) -"hay" = ( -/obj/structure/closet/secure_closet/security_empty{ - name = "Warden's Locker" +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/sigma/south/complex) +"har" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"haF" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/biodome/complex) +"haK" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"haN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"haW" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"hbm" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"hbw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"hby" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/hangar/office) -"haG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Showers" +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"hbz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Omega Research Storage"; + req_access_txt = "103"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"hbN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/residential/showers) -"hbu" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"hck" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"hbB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"hcn" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"hbF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/omega/control) -"hbX" = ( -/turf/open/floor{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hcv" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "carpet5-1" + network = list("sigma") }, -/area/corsat/omega/offices) -"hcg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"hcy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"hcC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/biodome) -"hcH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"hcK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"hcL" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/area/corsat/sigma/north) -"hcU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"hcV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"hcW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"hcX" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/gamma/residential/east) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"hdb" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"hdA" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) "hdB" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"hdG" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/hangar/office) -"hdR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"hdD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/hallways) -"heb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"hdI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"hdO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"hdQ" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) "hed" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/cargo) -"hei" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"hel" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"heo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/hallwaysouth) -"hep" = ( +"heD" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"heI" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"heK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) "heL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -42742,258 +14783,372 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"hfG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/north) -"hgB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"heN" = ( +/obj/structure/closet/crate/science, +/obj/item/cell/hyper/empty, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"hff" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"hfh" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, -/area/corsat/omega/airlocknorth/id) -"hhb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"hhj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/west) -"hho" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"hfs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"hhA" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"hft" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hallways) +"hfH" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) -"hhP" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"hfN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"hfP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"hfS" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"hgj" = ( +/turf/open/floor/corsat/blue, +/area/corsat/omega/hallways) +"hgm" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"hgF" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"hgV" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/residential/lounge) +"hht" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) +"hhQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Storage"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"hhY" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"hia" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/airlock/control) +"hiw" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/gamma/freezer) -"hhT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/wood, +/area/corsat/theta/biodome/complex) +"hiV" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar) +"hja" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"hjd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"hjj" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"hju" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"hjB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"hjK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering/atmos) +"hjM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"hkh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/north) -"hiw" = ( -/obj/structure/bed/chair/comfy/black{ +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"hkn" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"hjq" = ( -/obj/structure/disposaloutlet{ +"hkp" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/gm/dirtgrassborder/west, +/area/corsat/theta/biodome) +"hkF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/id) +"hkL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"hkN" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/sigma/south/complex) +"hkW" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/residential) +"hkY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"hlg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"hls" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat, +/area/corsat/omega/complex) +"hlB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"hlH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) -"hjU" = ( +"hlK" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/gamma/hangar) +"hlP" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/id) +"hlQ" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"hkn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, +"hlR" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"hmx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/theta/biodome/complex) -"hkp" = ( -/obj/structure/flora/jungle/vines/light_1, +"hmy" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"hmD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/gm/dirtgrassborder/west, -/area/corsat/theta/biodome) -"hkZ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"hle" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"hlf" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"hmJ" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"hmN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"hls" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"hmS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"hmU" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/gunrange) +"hmX" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) -"hlC" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"hlM" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestW"; - name = "Sigma West Airlock" +"hnj" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar) +"hns" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"hnH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"hnI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/airlock/control) -"hmO" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hnP" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"hnr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"hnx" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/lobby) "hnR" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hoh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"hod" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) +"hon" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"hok" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"hoC" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"hov" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/security) -"hpB" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"hoZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"hpb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"hpC" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "104" + health = 250 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"hpd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/security) -"hpM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) -"hqa" = ( -/obj/structure/machinery/light, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) +"hpf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/arrivals) -"hqd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/control) +"hpj" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, +/obj/item/clipboard, +/obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"hqv" = ( +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"hpl" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"hqA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"hpL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"hpV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"hqg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"hqs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/north/id) +"hqG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"hqJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"hqL" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/core) "hqU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -43003,146 +15158,108 @@ "hqX" = ( /turf/open/floor/corsat, /area/corsat/inaccessible) -"hrf" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"hsq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"hsr" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/cargo) -"hsD" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south) -"hsJ" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"hrb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"hsM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"hrl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/office) -"hta" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"hrE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hangar/checkpoint) -"hte" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"hrS" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/containment) +"hrW" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/hangar/monorail/control) +"hsc" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"htv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, -/area/corsat/omega/hangar) -"htZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hss" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"hsz" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential) -"huc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"hsB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/omega/maint) -"hun" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"hsC" = ( +/obj/item/handset, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/biodome/complex) +"hsL" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "OmegaCargoN"; + name = "Omega Cargo Room"; + use_power = 0 }, -/area/corsat/sigma/airlock/control) -"huo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"hts" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"htu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) -"hur" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"htB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"htS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/researcher) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"htV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) "huu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"huv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"huK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"huL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) +"huD" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) "huQ" = ( /obj/structure/bed/chair/wood/wings{ dir = 8 @@ -43153,164 +15270,136 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"hva" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/dorms) -"hvj" = ( -/obj/structure/machinery/light{ +"hvd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"hvl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/corsat/gamma/residential/west) -"hvn" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"hvz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"hvD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/south) -"hvT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"hvC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/security) +"hvW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) "hvZ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"hwe" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"hws" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/monorail) -"hwI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"hwV" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" +"hwb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"hwc" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"hwl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/north) -"hwW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"hwU" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat, +/area/corsat/theta/airlock/west/id) +"hxg" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"hxo" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "blue" + id_tag = "mining_outpost_pump" }, -/area/corsat/gamma/airlock/control) -"hxc" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"hxC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"hxT" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"hxU" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"hxV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"hxY" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/morgue) +"hya" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"hyu" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "SigmaGate"; + name = "Gate Shutters"; + use_power = 0 }, -/area/corsat/gamma/residential/researcher) -"hxl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/marked, +/area/corsat/sigma/south/complex) +"hyv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"hyB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"hxW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/hangar/office) -"hyf" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"hyE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"hyG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/toxins) -"hyY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"hyS" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) "hze" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/ice, /area/corsat/gamma/biodome) -"hzk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"hzg" = ( +/obj/item/folder/white, +/obj/item/tool/stamp/rd, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"hzh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay/surgery) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) "hzm" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -43323,113 +15412,165 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"hzM" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"hzU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"hAB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"hzr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"hzV" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/checkpoint) +"hzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"hBo" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/core) -"hBp" = ( -/obj/structure/machinery/medical_pod/sleeper{ - flags_atom = 18 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/gamma/residential/east) -"hBq" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"hAs" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"hAP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/gamma/biodome/toxins) -"hBA" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"hBa" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"hBk" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) +"hBt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay) -"hBF" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"hBv" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hBz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"hBC" = ( /obj/structure/machinery/camera/autoname{ dir = 1; - network = list("sigma") + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"hBE" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"hBJ" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"hBK" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) "hBM" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"hCm" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/cargo) -"hCt" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" +"hBP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/area/corsat/gamma/residential/east) -"hCG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/armory) +"hBT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"hBU" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"hBW" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/office) +"hBY" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"hCb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/engineering/atmos) -"hCJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Firing Range"; - req_one_access_txt = "106;102;103"; - use_power = 0 +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"hCe" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"hCj" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/armory) +"hCo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"hCs" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/residential) +"hCu" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer{ + dir = 8; + pixel_x = 15 }, -/area/corsat/sigma/biodome/gunrange) +/obj/item/reagent_container/food/drinks/drinkingglass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"hCK" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) +"hCM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"hCQ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) "hCY" = ( /obj/structure/safe, /obj/item/stack/sheet/mineral/diamond{ @@ -43440,18 +15581,29 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"hDl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"hDE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay/morgue) +"hDf" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hDg" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"hDh" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/armory) +"hDt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"hDx" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "hDF" = ( /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) @@ -43462,45 +15614,62 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"hDX" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/corsat/omega/cargo) "hEb" = ( /obj/structure/closet/cabinet, /obj/item/device/camera, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"hEi" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"hEt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +"hEd" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"hEg" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"hEo" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"hEy" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/rnr/bar) +"hEE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen, +/obj/item/tool/stamp{ + name = "Quartermaster's stamp" }, -/area/corsat/sigma/airlock/east) -"hEH" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"hEF" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, -/area/corsat/sigma/south/robotics) -"hFc" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/cargo) +"hEI" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail) +"hEY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"hFg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/material, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "hFh" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -43510,74 +15679,102 @@ }, /turf/open/floor/plating, /area/corsat/omega/security) +"hFj" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) "hFm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"hFo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"hFR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"hFW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/gamma/hangar) -"hGd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"hFq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"hFv" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"hFA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"hFF" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"hFG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"hFJ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"hFL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"hFQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) "hGf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"hGg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"hGj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential) -"hHg" = ( -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"hHn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; - req_access_txt = "101" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"hGG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/area/corsat/theta/airlock/control) -"hHx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"hGU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/omega/hangar) +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"hGX" = ( +/obj/structure/machinery/door_control{ + id = "SigmaBioAtmos"; + name = "Access Shutters"; + pixel_y = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"hHa" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"hHr" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/arrivals) "hHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -43586,86 +15783,144 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"hHA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +"hHz" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"hHC" = ( +/obj/structure/prop/mech/parts/durand_head, +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/south/robotics) +"hHR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/inaccessible) -"hHL" = ( -/obj/item/alien_embryo{ - color = "#00ff80"; - name = "corrupted alien embryo" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hHV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaDSC2"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"hIi" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/area/corsat/inaccessible) -"hHM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"hIt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"hIu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hII" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/hangar/security) -"hId" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"hIJ" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"hIS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/corsat/gamma/residential) -"hIh" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"hJe" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/omega/hangar/security) -"hIo" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"hJh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/hangar/flightcontrol) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"hJm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) "hJw" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"hJG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ +"hJA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"hJC" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe, +/obj/item/tool/hatchet, +/obj/item/tool/shovel/spade, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"hJR" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"hJS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "Administration Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "darkgreen" + id = "OmegaOffice"; + name = "Privacy Shutters" }, -/area/corsat/gamma/hangar/arrivals) -"hJI" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"hKe" = ( +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"hKf" = ( +/obj/item/storage/belt/gun/m4a3/vp78{ + desc = "The M276 is the standard load-bearing equipment of the TGMC. It consists of a modular belt with various clips. This version has a holster assembly that allows one to carry the VP78 comfortably secure. It also contains side pouches that can store XX magazines."; + name = "M276 pattern VP78 holster rig" }, -/area/corsat/omega/complex) -"hKc" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/closet/secure_closet/detective{ + name = "Head of Security's Cabinet" }, -/area/corsat/gamma/engineering/core) -"hKi" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/device/flash, +/obj/item/device/hailer, +/obj/item/device/megaphone, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"hKn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"hKo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/gamma/residential/east) +/obj/item/handset, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) "hKt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -43678,82 +15933,150 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"hKD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential) "hKH" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hKZ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "plate" +"hKK" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo/disposal) +"hKP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/southeast/generator) -"hLh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"hKS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/kitchen) -"hLL" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"hKT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Pool" }, -/area/corsat/gamma/administration) -"hMo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"hKY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"hLb" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"hLg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"hLt" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/hangar/flightcontrol) +"hLx" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"hLz" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"hLG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/south/offices) -"hMx" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hLP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Food Storage"; + req_one_access = null }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"hMe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/lavatory) -"hMR" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"hMl" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"hMr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"hMw" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/area/corsat/gamma/hangar/monorail) -"hNh" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"hMU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential) -"hNA" = ( -/turf/open/floor/corsat{ +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"hMZ" = ( +/obj/structure/platform{ + density = 0; dir = 8; - icon_state = "purplewhitecorner" + icon_state = "platform_deco" }, -/area/corsat/theta/biodome/hydrowest) +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/dorms) +"hNb" = ( +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"hNf" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/gamma/hangar) +"hNr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"hNt" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"hND" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/console_screen, +/obj/item/stock_parts/console_screen, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"hNG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) "hNI" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/tunnel{ @@ -43761,394 +16084,495 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"hOb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/gamma/airlock/south) -"hOw" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"hOU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintenance Closet"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/sigmaremote) -"hOV" = ( +"hNK" = ( /obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"hPg" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"hPi" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"hPr" = ( -/obj/item/storage/box/gloves, /obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"hNM" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/area/corsat/gamma/medbay) -"hPy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"hNP" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"hNQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/corsat/omega/hangar/office) -"hPF" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"hOa" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "0-8"; + layer = 2.1 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"hOb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/gamma/airlock/south) +"hOp" = ( +/turf/open/floor/corsat/bluegreycorner/north, /area/corsat/omega/offices) -"hPL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +"hOA" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"hOB" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"hOI" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"hOW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"hPq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) -"hQb" = ( -/obj/effect/decal/cleanable/cobweb{ +"hPM" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"hQr" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"hQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/emergency_access) -"hQf" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"hQL" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"hQU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"hQW" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"hRe" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"hQS" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/omega/hallways) -"hRb" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"hRl" = ( +/turf/open/floor/corsat/greencorner/west, +/area/corsat/gamma/hallwaysouth) +"hRo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"hRq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"hRw" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"hRI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/residential) -"hRK" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"hRz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, /obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"hRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar) -"hSo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"hSr" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"hSv" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + network = list("sigma") }, -/area/corsat/gamma/biodome/toxins) -"hSQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"hRF" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"hRJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/south) -"hST" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/foyer) +"hRL" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"hRS" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar) +"hRZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"hSl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/omega/complex) -"hTd" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/corsat/purplecorner, +/area/corsat/gamma/biodome/complex) +"hSB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"hTa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"hTg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2 +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"hTh" = ( +/obj/structure/disposaloutlet{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"hTe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"hTz" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"hTH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/office) -"hTr" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"hTZ" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"hUl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"hUm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/gamma/hallwaysouth) -"hTI" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"hUo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; - name = "Maintenance Closet"; + name = "Maintainance"; req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"hUw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"hUx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"hUA" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"hUB" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"hUH" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"hUW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/residential) -"hUR" = ( -/obj/structure/machinery/door/window/southleft, -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"hUX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"hUZ" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering/atmos) +"hVd" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"hVe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 4; - icon_state = "purplewhite" + network = list("omega") }, -/area/corsat/theta/biodome/complex) -"hUS" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"hVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"hUY" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"hVq" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"hWk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/complex) -"hVx" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"hVF" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestW"; - name = "Theta West Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/west) -"hVR" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/containment) -"hWg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"hWl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/sigma/southeast) +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"hWo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"hWq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/theta/airlock/east) "hWx" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"hWW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"hXH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/south/offices) -"hYo" = ( -/obj/structure/barricade/handrail{ - layer = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"hYs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"hWB" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"hWD" = ( +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/gunrange) +"hWM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/hangar/security) -"hYI" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"hWN" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/gunrange) +"hWR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"hXm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/southeast/datamaint) -"hYU" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"hXo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/gamma/foyer) -"hYZ" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hangar/monorail) +"hXy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"hXB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"hXE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/security) -"hZu" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) +"hXQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"hYl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"hYm" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"hYw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"hYD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"hYG" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/corsat/gamma/security) -"hZO" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"hYL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"hYV" = ( /obj/structure/surface/rack, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/syringe/antiviral, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/obj/item/reagent_container/glass/beaker/vial, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/item/stack/sheet/mineral/silver{ + amount = 10 }, -/area/corsat/gamma/biodome/virology) -"hZU" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"hYW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"hYX" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"hZk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hydroponics) -"iav" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"hZq" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"hZx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"hZL" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/corsat/sigma/south/security) -"ibe" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"hZW" = ( +/obj/structure/machinery/recycler, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo/disposal) +"iaa" = ( /obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"iax" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"iaO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"iaT" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"iaY" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"ibb" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/prison/hangar_storage/research/shuttle) +"ibk" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"ibo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/corsat/sigma/cargo) +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"ibp" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hallwaysouth) +"ibq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) "ibz" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -44159,214 +16583,247 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"ick" = ( -/turf/open/floor/corsat{ +"ibC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "purplecorner" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/omega/hallways) -"ict" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"ibQ" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"ibS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ibY" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ibZ" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"icd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/hangar/monorail/control) -"icZ" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"icq" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/sigma/south/complex) -"idf" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"icB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"idn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"idv" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"idz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/sigmaremote) +"idH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"idK" = ( +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) "idU" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"iei" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) "iem" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/corsat/gamma/hangar) -"ieU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"ien" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"ieq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"ieZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"iex" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = -32 }, -/area/corsat/gamma/residential/west) -"ifh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"ieC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"ieM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Implantation Chamber"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"ifj" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"ieO" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ + dir = 8 }, -/area/corsat/gamma/administration) -"ifx" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ieW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/hangar/security) -"ifS" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/datamaint) +"ifq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"ifu" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"ifT" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "11" }, -/area/corsat/sigma/airlock/east) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "ifX" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/airlock/south/id) -"igg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"iho" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/sigma/dorms) -"ihD" = ( +"igq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"igv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"igL" = ( +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/gamma/engineering) -"ihL" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/datalab) -"ihN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"iik" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +"igU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"igY" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar) +"ihf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/omega/checkpoint) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"ihl" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) "iiI" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"iiS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +"iiP" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/south) -"iiX" = ( -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"ijf" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"ijh" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/sigma/airlock/east/id) -"iiY" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"ijj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/hangar/office) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "ijA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"ijV" = ( -/obj/structure/machinery/light{ - dir = 4 +"ijF" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/hangar/monorail) +"ijI" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydroeast) +"ijK" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"ijR" = ( +/obj/structure/surface/table/almayer, +/obj/item/evidencebag, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"ikd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"ikA" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"ikv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, -/area/corsat/sigma/southeast/datalab) -"ikC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) "ikQ" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -44375,410 +16832,559 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"ill" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"ilm" = ( -/obj/structure/machinery/light{ +"ilh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/theta/airlock/west/id) -"ilo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/hangar_storage/research/shuttle) -"ilr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"ilF" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"ilA" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar/monorail) +"ilK" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purple/northeast, +/area/corsat/gamma/biodome/complex) +"imo" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/south/robotics) +"ims" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/ice, +/area/corsat/gamma/biodome) +"imz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/corsat/theta/biodome) +"imB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/security) +"imM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"ind" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ine" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/omega/hangar/security) -"ilI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"inf" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ink" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential) +"ins" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/red, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"int" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"iny" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar/monorail) +"inQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"iol" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/airlock/west/id) -"ilZ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"ion" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"iou" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/south/id) +"ioO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"ioP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"ioR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"ims" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/ice, -/area/corsat/gamma/biodome) -"imz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/corsat/theta/biodome) -"imK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/timer, -/turf/open/floor/corsat{ - icon_state = "lightplate" +"ioV" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"ioZ" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"ipz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"ipH" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"ipK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"ipN" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"ipR" = ( +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"ing" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"inT" = ( +"ipW" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"inY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars{ - icon_state = "mars_dirt_3" + network = list("sigma") }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome) -"inZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iqk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"iqo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"iqu" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" }, -/area/corsat/omega/cargo) -"ioh" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"iqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/gamma/residential/lounge) -"ipE" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"iqp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/complex) -"iqx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"iqH" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"iqW" = ( +/obj/structure/machinery/door_control{ + id = "SigmaWestW"; + name = "Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/sigma/southeast/generator) -"iqE" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/door_control{ + id = "SigmaWestE"; + name = "Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/area/corsat/sigma/south/complex) -"iqY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"iqZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/area/corsat/sigma/north) -"irp" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/residential/lounge) +"irc" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, -/area/corsat/sigma/hangar) -"irP" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"irh" = ( +/obj/structure/machinery/computer/general_air_control, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"iru" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"irv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"ish" = ( -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"irA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/omega/hallways) -"isS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Laboratory"; - req_access_txt = "103" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"isa" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"isq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"isu" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"isw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"isQ" = ( +/obj/structure/coatrack, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"itd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"isY" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"itm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"itr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/generator) +"itz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/dorms) -"itb" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"itB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"itQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"itW" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/airlock/control) +"itY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"ito" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"iud" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/area/corsat/gamma/biodome/complex) -"its" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/residential/lounge) +"iuf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"iuF" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"itD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"iul" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"iuH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/hangar) -"iuz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar) -"iuD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"ivy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"iuL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/security) -"ivW" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential) +"iuN" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"iuS" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/hallwaysouth) +"iuU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/north/id) -"iwx" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"ivC" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"ivE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hangar/monorail) -"iwB" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"ivX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"iwe" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"iwh" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"iwU" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"iwo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"ixd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/datalab) -"ixm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"iwr" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"ixZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"iws" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"iwI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/administration) -"iyp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"iwW" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "\improper Mentor's Guide Bookcase" }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-E"; - name = "Security Shutters"; - use_power = 0 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"iwX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"ixh" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/area/corsat/sigma/hangar/security) -"iys" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"ixj" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/dataoffice) +"ixp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) -"iyA" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"ixr" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/control) +"ixx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"ixJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"iyb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/hangar) +"iyL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "20" }, -/area/corsat/gamma/biodome/complex) -"izl" = ( -/obj/structure/closet/secure_closet/guncabinet{ - name = "riot cabinet"; - req_access_txt = "100" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"iyR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/item/restraints, -/obj/item/restraints, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"izC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/security) -"izn" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"izD" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"izI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) -"izt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"izJ" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/scrapyard) +"izL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"izP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"izU" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"iAy" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"iAe" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"iAi" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"iAv" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"iAD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"iAA" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"iAJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"iAK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/sigma/laundry) -"iAI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"iAS" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/hangar/arrivals) -"iAO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"iAW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"iBe" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) "iBg" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -44786,15 +17392,18 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"iBo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"iBi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"iBp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/north) +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) "iBs" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -44802,277 +17411,507 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"iBO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"iBH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"iBQ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/area/corsat/gamma/sigmaremote) -"iCm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaIDSC"; + name = "Security Shutters" }, -/area/corsat/omega/hallways) -"iCo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south/id) +"iBV" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"iCe" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 8 }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"iCl" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"iCu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/prop/gripper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"iCx" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"iCF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/rnr) -"iCA" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" +"iCX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"iCZ" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"iDd" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"iDg" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"iDt" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"iCN" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/clonepod, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"iCP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/biodome/complex) +"iDy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/sigma/airlock/south/id) -"iDB" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"iDG" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"iDT" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar) +"iDY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"iEp" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/corsat/sigma/dorms) -"iDD" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" }, -/area/corsat/omega/hangar) -"iDH" = ( +/obj/item/oldresearch/Blood, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"iEs" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/omega/hallways) +"iEC" = ( +/obj/structure/machinery/conveyor, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/complex) -"iDV" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"iEG" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Containment Unit"; + req_one_access_txt = "103" }, -/obj/structure/barricade/handrail{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"iEg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"iEH" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"iEI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, +/turf/open/floor/corsat/red/north, /area/corsat/sigma/hangar/security) -"iEF" = ( -/obj/effect/landmark/corpsespawner/doctor, +"iEZ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"iFb" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay) -"iEH" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"iFf" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"iFl" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"iEN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"iFo" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"iEY" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"iFx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"iFB" = ( +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential) +"iFG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/cargo) -"iFy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"iFH" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"iFM" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"iFR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"iGg" = ( +/turf/open/floor/corsat/greencorner, +/area/corsat/gamma/medbay/morgue) +"iGj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"iGn" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south) +"iGp" = ( +/obj/structure/machinery/pipedispenser, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/sigma/hangar/security) -"iFL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"iGq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/omega/hallways) -"iGT" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"iGv" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"iGx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"iGB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Chief Engineer's Office"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/complex) -"iHc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"iGI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"iGP" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"iHa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 }, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) "iHo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"iHY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"iHq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hallways) -"iIf" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Research Hallway"; - req_one_access = null +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"iHs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"iHz" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"iHR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"iIi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"iIu" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"iIm" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"iIr" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential/maint) +"iIC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/corsat/gamma/residential/west) -"iIK" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"iIY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"iIU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"iJc" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"iJj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/omega/offices) -"iJv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"iJr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"iJG" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"iJJ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/biodome) +"iJM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" }, -/area/corsat/sigma/southeast) -"iJz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"iJX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"iKk" = ( +/obj/item/bananapeel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hangar/cargo) -"iJB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"iKo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/hangar/checkpoint) -"iKn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"iKp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"iKy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/sigma/dorms) -"iLj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"iKF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) +"iKJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"iKK" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"iKV" = ( +/obj/structure/machinery/shower, +/obj/structure/machinery/door/window/southleft{ + opacity = 1 }, -/area/corsat/sigma/hangar/office) -"iLv" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"iLe" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"iLk" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"iLo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/biodome) -"iLw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"iLp" = ( +/obj/structure/sign/safety/laser{ + pixel_x = 32 }, -/area/corsat/gamma/hangar/cargo) -"iLN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/area/corsat/gamma/biodome/complex) -"iLZ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"iLx" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"iMM" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail/control) +"iLE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/officesquares, /area/corsat/gamma/administration) +"iLM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"iLQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"iLR" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/checkpoint) +"iLW" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"iMl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"iMP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"iMV" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"iMY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"iNc" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"iNe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"iNf" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"iNj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) "iNk" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/east, @@ -45081,211 +17920,335 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) -"iNR" = ( +"iNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"iNz" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"iNA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"iNB" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/north) +"iNK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"iOj" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/corsat/gamma/airlock/south/id) -"iNZ" = ( -/turf/open/floor{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"iOl" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"iOm" = ( +/obj/structure/sink{ dir = 8; - icon_state = "carpet9-4" - }, -/area/corsat/omega/offices) -"iOe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"iOi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/biodome/hydrowest) -"iOL" = ( -/obj/structure/disposaloutlet{ - dir = 4 + pixel_x = -11 }, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"iOs" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"iOP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"iOR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/checkpoint) -"iOW" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"iPn" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"iOz" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"iOG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"iOK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"iOV" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) +"iPa" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"iPe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"iPg" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"iPk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/southeast/datamaint) +"iPl" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) "iPo" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) +"iPs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"iPD" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/security) +"iPR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"iPT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) "iQh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"iQi" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, -/area/corsat/gamma/medbay/morgue) -"iQs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"iQE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential/researcher) "iQH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"iQL" = ( -/obj/structure/closet/wardrobe/robotics_black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"iQQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +"iQJ" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"iQZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"iRe" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"iRf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"iRg" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) +"iRj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"iRo" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"iRz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/showers) -"iQY" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"iRU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"iSb" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"iSv" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"iSw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"iRw" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"iSx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bananapeel{ + name = "tactical banana peel" }, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) "iSB" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/sigma/hangar/arrivals) -"iTt" = ( -/obj/structure/platform{ - density = 0; +"iSL" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/north) +"iSM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" + name = "Research Complex"; + req_one_access_txt = "101" }, -/area/corsat/gamma/hallwaysouth) -"iTL" = ( -/turf/open/floor/corsat{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"iSU" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "purplewhitecorner" + id = "RemoteGate"; + name = "Gate Shutters"; + use_power = 0 }, -/area/corsat/sigma/south/complex) -"iTT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - req_access_txt = "101" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/sigmaremote) +"iSV" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/residential/east) +"iSY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoS"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/gamma/airlock/north/id) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"iTq" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"iTy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"iTH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/disposal) +"iTV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/airlock/control) "iTW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"iVp" = ( -/obj/structure/machinery/light, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "squares" +"iTY" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/arrivals) +"iUn" = ( +/obj/structure/closet/secure_closet/security_empty{ + icon_broken = "hossecurebroken"; + icon_closed = "hossecure"; + icon_locked = "hossecure1"; + icon_off = "hossecureoff"; + icon_opened = "hossecureopen"; + icon_state = "hossecure1"; + name = "Head of Security's Locker" }, -/area/corsat/gamma/residential) -"iVA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/device/binoculars, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"iUx" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"iUy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/biodome/gunrange) -"iWo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south) +"iUz" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hallwaysouth) +"iUI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"iUP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/hangar/security) -"iWx" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"iVu" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"iVw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/control) +"iVx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"iVR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) +"iWf" = ( +/turf/open/floor/corsat/whitetancorner/east, /area/corsat/gamma/residential/west) +"iWm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) "iWA" = ( /obj/structure/surface/table/woodentable, /obj/item/paper, @@ -45293,71 +18256,89 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"iWH" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"iWK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/east) -"iWO" = ( -/obj/structure/surface/table, -/obj/item/folder/blue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"iXU" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" +"iXt" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, /area/corsat/sigma/dorms) -"iYj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +"iXv" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) +"iXB" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) -"iYG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"iYl" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"iYp" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"iYt" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/southeast) +"iYU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"iYR" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"iYZ" = ( +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"iZc" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"iZe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/corsat/gamma/engineering/core) -"iZu" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/sigma/south/complex) +"iZh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHCargoS"; + name = "Checkpoint Control"; + pixel_y = 7; + use_power = 0 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/obj/structure/machinery/door_control{ + id = "SigmaHCargoN"; + name = "Checkpoint Control"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/gamma/hallwaysouth) -"iZv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door_control{ + id = "SigmaHCargoC"; + name = "Security Shutters"; + pixel_x = 5; + use_power = 0 }, -/area/corsat/sigma/southeast/datalab) +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/id) +"iZr" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"iZy" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) "iZz" = ( /obj/structure/closet/cabinet, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, @@ -45371,244 +18352,528 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"iZZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"jai" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +"iZW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"jad" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/control) +"jav" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"jaJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"jaF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-S"; + name = "Security Shutters"; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"jaS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/offices) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) "jba" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"jbj" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +"jbi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"jbv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"jbx" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"jbC" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"jbF" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"jbG" = ( +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"jbM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/residential) "jbN" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/hangar/checkpoint) -"jcl" = ( +"jbP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jbW" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"jcA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"jci" = ( +/obj/structure/machinery/shower, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"jcm" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"jcs" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/gamma/medbay/lobby) -"jdj" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"jcz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Omega"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"jcC" = ( /obj/structure/machinery/door_control{ - id = "GammaA"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; + id = "Toxins"; + name = "Lab Lockdown"; + pixel_y = 24; use_power = 0 }, -/obj/item/device/flashlight/lamp{ - pixel_x = 8; - pixel_y = 3 +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/toxins) +"jcO" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"jcP" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/north) +"jcQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"jcS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"jcU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"jcV" = ( +/turf/open/floor/corsat/purple/southwest, +/area/corsat/omega/hallways) +"jcX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"jcY" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"jdb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "OmegaCargo"; + name = "Omega Cargo Bay"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/cargo) +"jdd" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/gunrange) "jdk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) +"jdn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"jdp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"jdr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) "jdt" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck/uno, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"jdV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"jdC" = ( +/obj/structure/closet/crate, +/obj/item/organ/brain/prosthetic, +/obj/item/organ/eyes/prosthetic, +/obj/item/organ/heart/prosthetic, +/obj/item/organ/kidneys/prosthetic, +/obj/item/organ/liver/prosthetic, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"jdJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"jef" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/north) +"jes" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"jew" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"jeQ" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"jeZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"jfd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"jee" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"jfu" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) +"jfx" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jfB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/theta/airlock/west/id) -"jeE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"jfC" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) "jfP" = ( /turf/closed/wall/biodome, /area/corsat/gamma/rnr) -"jgb" = ( +"jfS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"jfV" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" +/obj/structure/machinery/door_control{ + id = "GammaHCargoN"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 }, -/area/corsat/gamma/medbay/surgery) -"jgG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "GammaHCargoW"; + name = "Checkpoint Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/door_control{ + id = "GammaHangarCargoC"; + name = "Security Shutters"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 }, -/area/corsat/omega/hangar/security) -"jgI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"jga" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"jgi" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat{ + pixel_y = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"jgj" = ( +/obj/structure/surface/table, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/corsat/sigma/hangar/monorail/control) -"jgM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jgm" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"jgr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jgv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/airlock/control) -"jho" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jgw" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"jgA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"jgH" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"jhc" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"jhk" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"jhw" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"jhF" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/complex) -"jhz" = ( -/obj/structure/platform{ +"jhJ" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"jhL" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"jhK" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"jhU" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"jhX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" + dir = 4 }, +/turf/open/mars/mars_dirt_11, /area/corsat/sigma/biodome) -"jhN" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"jhO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +"jih" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"jiB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/area/corsat/gamma/administration) -"jhR" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship{ - icon_state = "floor8" +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"jiN" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/office) +"jiV" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"jiZ" = ( +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/morgue) +"jjD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/hangar_storage/research/shuttle) -"jja" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/hallwaysouth) -"jjb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/canteen) +"jjT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/hangar_storage/research/shuttle) -"jjz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"jjX" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"jkg" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/checkpoint) +"jkk" = ( +/obj/structure/platform{ + dir = 1 }, -/area/corsat/gamma/medbay/morgue) -"jjC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"jkl" = ( +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Privacy Shutters"; + pixel_y = -24; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 10; + pixel_y = -24; + use_power = 0 }, -/area/corsat/gamma/medbay) -"jjN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"jko" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"jkt" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"jkN" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"jkO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"jkb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"jkT" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"jkV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/sigmaremote) -"jlp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/platform{ + dir = 8; + layer = 2.8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jlq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) "jlL" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"jlM" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"jlT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) "jlU" = ( /obj/structure/machinery/camera/autoname{ dir = 8; @@ -45616,82 +18881,58 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"jme" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"jmg" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"jmc" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/area/corsat/sigma/checkpoint) -"jmL" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"jmh" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"jmO" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/foyer) -"jmQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"jmn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/chemistry) +"jmr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"jmw" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/theta/biodome/complex) +"jmR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"jmS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) "jmU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"jnb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/control) -"jno" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"jns" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"jnt" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaEastID"; - name = "Security Shutters"; - use_power = 0 - }, -/obj/structure/machinery/light{ +"jmX" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome/gunrange) +"jnh" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/airlock/east/id) +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"jnq" = ( +/turf/open/floor/corsat/greencorner/east, +/area/corsat/gamma/hallwaysouth) "jnA" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -45701,51 +18942,123 @@ /obj/structure/xenoautopsy/tank, /turf/open/floor/corsat, /area/corsat/omega/complex) -"jnX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"jok" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/skills{ - dir = 8 +"jnS" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"jnT" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"jov" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/biodome/complex) -"jpB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"joC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"jpa" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hallways) +"jpg" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hangar) +"jpk" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/alice, +/obj/item/circuitboard/exosuit/main/alice, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"jpl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/southeast/dataoffice) +"jpv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/hangar/arrivals) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jpz" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"jpZ" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) +"jqb" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"jqj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"jqn" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) "jqo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west) +"jqv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) "jqz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"jrQ" = ( -/obj/structure/bed/stool{ - pixel_y = 15 +"jqI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jrt" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"jrx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"jrR" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"jrU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/rnr/arcade) +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"jrY" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) "jsp" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") @@ -45753,32 +19066,52 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"jsq" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"jsK" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"jsz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"jsD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"jtb" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/cargo) -"jtY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/bed/nest, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"jte" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/airlock/north) +"jtj" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"jtr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"jtL" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/sigma/dorms) +"jtX" = ( +/obj/structure/bed/chair, +/obj/item/bananapeel, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"jud" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/platform{ + dir = 4; + layer = 2.8 }, -/area/corsat/sigma/hangar/monorail) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) "juf" = ( /obj/structure/closet/cabinet, /obj/structure/machinery/light{ @@ -45787,222 +19120,336 @@ /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"juh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"juk" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/security) -"juq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"juA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"juv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"juC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC2"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/hangar/security) -"juI" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"juJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/gamma/sigmaremote) -"jvk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) +"juQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/area/corsat/gamma/canteen) -"jvC" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"juW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/corsat/sigma/dorms) -"jvG" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"jvy" = ( +/obj/structure/surface/rack, +/obj/item/device/toner, +/obj/item/device/toner, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"jvB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"jvO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"jvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"jwv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_11" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"jwu" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "14" }, -/area/corsat/sigma/biodome) -"jwx" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"jwC" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"jwE" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"jwG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) +"jwT" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"jwW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/sigma/south/complex) -"jxA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"jxf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/monorail) -"jxN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Nitrogen Control Console" }, -/area/corsat/gamma/foyer) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"jxg" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"jxC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/hallwaysouth) +"jxF" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"jxL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"jxM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"jxP" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) "jxR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"jyb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential) -"jyk" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"jyc" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"jyh" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"jyi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"jyq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"jyu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"jyC" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"jyF" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/southwest, +/area/corsat/gamma/medbay/morgue) +"jyV" = ( +/turf/open/floor/plating/warnplate, /area/prison/hangar_storage/research/shuttle) -"jyK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"jyM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"jyW" = ( +/obj/structure/machinery/door_control{ + id = "GammaCargo"; + name = "Cargo Door"; + pixel_x = 24; + use_power = 0 }, -/area/corsat/omega/hallways) -"jyR" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"jzc" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/hallwaysouth) +"jze" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/east/id) +"jzF" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"jyX" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"jyZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"jzG" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/office) +"jAf" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"jAh" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/arrivals) +"jAi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/obj/item/ashtray/plastic{ + pixel_x = 4 }, -/area/corsat/gamma/residential/researcher) -"jzn" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/item/handset{ + pixel_x = -4; + pixel_y = 4 }, -/area/corsat/gamma/biodome/virology) -"jzM" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"jAv" = ( /obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"jAd" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"jAq" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/security) -"jAz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/west) +"jAB" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"jAI" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, /area/corsat/omega/offices) -"jAE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) "jAO" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"jBx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_12" - }, -/area/corsat/sigma/biodome) +"jAR" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"jBj" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) "jBC" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) +"jBD" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"jBL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Hub"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"jBS" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"jBZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/south/offices) +"jCa" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jCb" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/hangar/monorail/control) +"jCp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"jCq" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"jCt" = ( +/obj/structure/machinery/door_control{ + id = "Toxins"; + name = "Toxins Lockdown"; + pixel_y = -5; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Virology Lockdown"; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "GammaLab"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/biodome/complex) +"jCv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/sigma/dorms) +"jCI" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) "jCO" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -46013,309 +19460,477 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"jDp" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"jDg" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"jDk" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"jDq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/hallwaysouth) -"jDO" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"jDx" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"jEI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/southeast) -"jEK" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"jDD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"jDK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"jDM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"jFF" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"jDP" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"jDW" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"jEy" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/obj/item/circuitboard/exosuit/peripherals/work_loader, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"jEE" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast) +"jFe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"jFw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south/security) +"jFz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/residential/researcher) -"jFJ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar/cargo) +"jFA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/arrivals) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"jFB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) "jFP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"jGa" = ( +"jFX" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, -/area/corsat/sigma/dorms) -"jGd" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"jGk" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"jGH" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/theta/airlock/control) +"jGb" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"jGA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/airlock/east) -"jGZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"jHa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"jGB" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"jGD" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/hallways) +"jGG" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"jGN" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"jHf" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/biodome/complex) +"jHl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"jHo" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "13" }, -/area/corsat/sigma/biodome) -"jHF" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"jHz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "bluecorner" + id = "GammaHCargoW"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, -/area/corsat/gamma/hallwaysouth) -"jHV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"jHD" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"jIf" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/monorail) +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) "jIm" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"jIw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/corsat/omega/hallways) -"jJm" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/corsat/sigma/biodome/testgrounds) -"jJp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"jIo" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"jIV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/cafe) -"jJt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arrivals" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"jJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"jJw" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/sigma/hangar/checkpoint) -"jJv" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/sigma/cafe) -"jJD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"jJH" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + layer = 2.8 }, -/area/corsat/gamma/hangar/arrivals) -"jJM" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/shower{ dir = 1 }, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"jJO" = ( /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"jJN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/rnr) +"jJR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"jJZ" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthN"; + name = "Theta North Airlock" }, -/area/corsat/gamma/hangar/monorail) -"jJQ" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"jKj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"jKy" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"jKp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"jKr" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" }, -/area/corsat/omega/complex) +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"jKS" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"jKW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) "jLa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"jLT" = ( -/obj/structure/bed/chair, -/obj/structure/platform{ - dir = 8; - layer = 2.8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"jLb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/corsat/sigma/north) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) +"jLk" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar) +"jLq" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"jLw" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"jLG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"jLK" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar) +"jLQ" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) "jLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"jNU" = ( +"jLW" = ( +/obj/item/paper, +/obj/item/tool/pen/red, +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"jMc" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"jMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome) -"jOh" = ( -/turf/closed/wall/r_wall/biodome, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"jMI" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"jMN" = ( +/obj/structure/bed, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"jMP" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/spiralplate, /area/corsat/sigma/airlock/south) -"jOn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"jMS" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"jNc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/residential/west) -"jOw" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"jNd" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"jNf" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"jNm" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"jNr" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"jNv" = ( +/obj/structure/machinery/door_control{ + id = "SigmaGrounds"; + name = "Testing Grounds"; + pixel_x = 24 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"jNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/infra, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"jNH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/omega/cargo) +"jNQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/office) +"jNX" = ( +/turf/open/floor/corsat/white, /area/corsat/gamma/residential) -"jOE" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential/researcher) -"jPe" = ( +"jOh" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/airlock/south) +"jOo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/airlock/south/id) +"jOC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"jOG" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/datalab) +"jOT" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"jOY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/sigma/south/complex) -"jPL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/sparker, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"jPr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"jQL" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"jPw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"jPB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"jPH" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"jPR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"jQc" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"jQg" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"jQh" = ( +/obj/structure/platform{ + density = 0; dir = 4; - network = list("gamma") + icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"jQs" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"jQu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/zippo, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/gamma/residential/showers) -"jQT" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"jQC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"jQJ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "19" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"jRe" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/scrapyard) +"jRk" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Chemistry"; + req_one_access_txt = "103" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) "jRl" = ( /obj/structure/pipes/vents/pump, /turf/open/gm/dirt, @@ -46324,549 +19939,761 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) +"jRx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"jRD" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/cargo) +"jRH" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"jRJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"jRK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) "jRL" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/hallways) -"jSm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/residential) -"jTg" = ( -/obj/structure/machinery/door_control{ - id = "OmegaCargoN"; - name = "Cargo Door"; - pixel_x = 24; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"jRS" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"jSi" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) +"jSk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/cargo) -"jTS" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hallwaysouth) +"jSx" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"jUa" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/rnr) -"jUn" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"jUx" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"jUJ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"jSy" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"jSC" = ( +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"jSD" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"jTh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"jTC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"jTH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"jTZ" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/core) +"jUc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/omega/hallways) -"jVn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/east) +"jUq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"jUr" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/area/corsat/sigma/dorms) -"jVW" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"jVD" = ( +/obj/structure/platform{ dir = 1; - icon_state = "bluecorner" + layer = 2.7 }, -/area/corsat/gamma/hallwaysouth) -"jWb" = ( -/obj/structure/pipes/standard/cap/hidden{ +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"jVI" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/corsat/theta/biodome/complex) -"jWw" = ( -/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"jVL" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"jWy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"jWB" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"jWc" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"jWg" = ( +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) -"jWE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/sigma/north) -"jXg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"jWn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"jWD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/cargo) -"jXo" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"jWH" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/id) -"jYc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) -"jYs" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"jWQ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"jWU" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"jXi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/security) +"jXB" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"jYC" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"jXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/hangar/office) -"jYD" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"jYd" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"jYe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/security) -"jYY" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"jYi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 5 +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"jYm" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/hangar/monorail) +"jYn" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/east) +"jYF" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"jYI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"jYJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/white/southeast, +/area/corsat/gamma/hallwaysouth) +"jYT" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/corsat/purplewhite/east, /area/corsat/theta/biodome/complex) +"jYV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"jZa" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/exosuit/main/max, +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/item/circuitboard/exosuit/peripherals/max, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"jZe" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/engineering/core) +"jZf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/southeast/dataoffice) "jZk" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) -"jZA" = ( -/turf/open/floor/corsat{ +"jZt" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"jZu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "white" + name = "Bathroom" }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) -"jZU" = ( +"jZw" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"kad" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"kaf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" + dir = 1 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"jZB" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"jZL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"kah" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"kam" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "whitetan" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/residential/west) -"kap" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) +"kaq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/airlocknorth) -"kar" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"kaW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Reception Desk"; + req_one_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"kat" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"kaX" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"kbb" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"kbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/south/complex) -"kbm" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"kbr" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"kbt" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail/control) +"kby" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"kbF" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"kbJ" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"kbS" = ( -/obj/structure/platform{ +"kbT" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" + }, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"kck" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/mech_bay_recharge_port{ - pixel_x = 8 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"kcD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arcade" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"kcJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"kcb" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/airlock/control) +"kcS" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"kcZ" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"kdl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"kdc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"kdD" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"kdR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"kea" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"kdn" = ( +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/airlock/south) +"keb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"key" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/dorms) +"keE" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/corsat/theta/biodome) +"keH" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"keY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/gamma/medbay) -"kdA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"kfa" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "2" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"kfh" = ( +/obj/structure/stairs, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"kfm" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/airlock/east/id) +"kfp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_8, +/area/corsat/sigma/biodome) +"kfv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"kfH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"kfI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/corsat/theta/biodome/hydroeast) -"kdH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/sigma/south/complex) +"kgc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/robotics) -"ker" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"kgq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/theta/biodome/hydroeast) -"keE" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/corsat/theta/biodome) -"kfc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"kgI" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"kgJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "purplewhitecorner" + network = list("gamma") }, -/area/corsat/gamma/biodome/complex) -"kfJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"kgU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"kfZ" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"khh" = ( +/obj/structure/machinery/atm{ + pixel_x = -30 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"khE" = ( +/turf/open/floor/corsat/yellow/west, /area/corsat/gamma/residential) -"kgn" = ( -/obj/structure/machinery/light{ +"khK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"khS" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"khX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"khZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/medbay) -"kgD" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"kid" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Decontamination Chamber"; + req_one_access_txt = "103" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Viro"; + name = "Virology Lockdown" }, -/area/corsat/gamma/cargo) -"kgO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"kha" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/security/cells) -"khv" = ( -/obj/structure/machinery/lapvend, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"khD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"kir" = ( +/obj/item/tool/wet_sign, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"kis" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/sigma/south) -"kiO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"kiz" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/omega/control) -"kje" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"kiA" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/checkpoint) +"kiD" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/gamma/administration) -"kjm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kiJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"kiK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"kjC" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/omega, +/area/corsat/omega/airlocknorth) +"kiM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"kiW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"kiY" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential) -"kjH" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" + network = list("omega") }, -/area/corsat/sigma/south/robotics) -"kjU" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"kjf" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/residential/maint) +"kjv" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/gamma/airlock/control) -"kjZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) -"kky" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"kkI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"kkK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/rnr) -"kkR" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"kkV" = ( -/obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"klD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/crowbar, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/obj/item/stack/nanopaste, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"kjx" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/security/cells) -"klS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"kmf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/hallwaysouth) +"kjJ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"kjK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"kmj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"kjR" = ( +/obj/structure/prop/mech/parts/durand_left_leg, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"kks" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"kkO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"kkP" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"kkQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"kkS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"klb" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/east, /area/corsat/sigma/dorms) -"kmC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +"klf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"klh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"klr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "12" }, -/area/corsat/gamma/biodome/complex) -"kmI" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"klv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/omega/control) +"klV" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"klY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/corsat/sigma/biodome/scrapyard) -"kmV" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/corsat/gamma/biodome/complex) -"knx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"kma" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/gamma/sigmaremote) -"knD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"kmq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"kmW" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"kmY" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/area/corsat/omega/security) -"knG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/item/organ/kidneys, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"knc" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"knf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/hangar/flightcontrol) +"knj" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"knw" = ( +/obj/structure/closet/crate/medical, +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/security) -"knS" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"kof" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/airlock/east/id) -"koh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 + network = list("gamma") }, -/turf/open/floor/corsat{ +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"knO" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"knP" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"kog" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/airlock/south) +"kok" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"kom" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kop" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "purplewhite" + network = list("omega") }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) "kow" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46874,167 +20701,276 @@ }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"koV" = ( -/obj/structure/bed/chair/office/light{ +"koy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) +"koz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"koF" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"koM" = ( +/obj/structure/sign/safety/biolab, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) +"koT" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/airlock/control) +"koW" = ( +/obj/structure/surface/rack, +/obj/item/alienjar, +/obj/structure/window/reinforced/toughened{ dir = 8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" }, -/area/corsat/gamma/residential/west) -"koY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"kpe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kpk" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tank/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"kpq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"kpr" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/north) +"kpy" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"kpC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"kpR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"kqh" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"kqj" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"kql" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"kqt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"kqF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"kqG" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"kqI" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/chemistry) +"kqJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" }, -/area/corsat/gamma/hallwaysouth) -"kps" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_8" - }, -/area/corsat/sigma/biodome) -"kpD" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"kqY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/residential/east) -"kpS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaSouthID"; + name = "Security Shutters" }, -/area/corsat/omega/cargo) -"kqm" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"kri" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"krj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"kqp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"kqs" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"krl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"krH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/residential) -"kqA" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"krS" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth/id) -"kqE" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south/id) +"krX" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"krZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"ksf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/tesla_energy_relay, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) -"kqZ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"krn" = ( -/obj/structure/platform{ +"ksl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/corsat/theta/biodome/complex) -"krK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"krR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/sigma/north) -"ksk" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"ksn" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"ksF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) +"ksy" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) "ksH" = ( /obj/effect/landmark/nightmare{ insert_tag = "lockdown-highsec" }, /turf/closed/wall/r_wall/biodome, /area/corsat/omega/checkpoint) -"ksT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"ksP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/engineering) -"ksX" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"ksV" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"ksZ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/area/corsat/sigma/dorms) -"kuq" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/monorail/control) +"ktb" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"ktd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"ktn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"kty" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 2"; + name = "Containment Cell 4"; + req_one_access_txt = "103" }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"ktz" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) +"ktB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"ktE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"ktH" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"ktU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"kur" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kuz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) "kuC" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -47042,96 +20978,137 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"kuO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" +"kuE" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/hallways) +"kuI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"kvj" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, /area/corsat/gamma/airlock/south/id) -"kuU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"kuW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/nest, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, -/area/corsat/inaccessible) -"kvm" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +"kvF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/foyer) -"kvN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"kvY" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"kwo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/rnr) -"kwK" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"kws" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"kwt" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"kwz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"kxh" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"kxc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/office) -"kxs" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"kxq" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"kxP" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/sigma/dorms) +"kye" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/gamma/cargo) -"kyb" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"kyh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"kyw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/airlock/control) +"kyy" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"kyC" = ( /obj/structure/surface/rack, -/obj/item/storage/donut_box, -/turf/open/floor/corsat{ - icon_state = "cargo" +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"kyE" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"kyH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/freezer) +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security/cells) +"kyK" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "kyQ" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/omega/maint) -"kzd" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"kzm" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +"kza" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"kzh" = ( +/obj/structure/fence, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"kzn" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/purplewhite/southwest, /area/corsat/gamma/sigmaremote) "kzA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -47139,222 +21116,352 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"kzN" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"kzB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"kzQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/gamma/canteen) -"kAq" = ( -/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"kAe" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/dorms) +"kAf" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"kAA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/area/corsat/sigma/south/robotics) -"kAM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplecorner" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/biodome/complex) -"kBA" = ( -/obj/structure/machinery/disease2/diseaseanalyser, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "purplewhite" + id = "GammaSecC"; + name = "Security Shutters" }, -/area/corsat/gamma/biodome/virology) -"kBE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"kAR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"kBq" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "RemoteGateO"; + name = "Gate Shutters"; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/sigmaremote) +"kBy" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/area/corsat/gamma/residential/east) -"kBN" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"kBJ" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"kBW" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"kBQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"kBT" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"kCb" = ( +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"kCh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"kCj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" - }, -/area/corsat/sigma/biodome) -"kCk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" + dir = 4 }, -/area/corsat/sigma/biodome) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "kCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"kCq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"kCG" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/area/corsat/omega/airlocknorth) -"kCH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/hallwaysouth) +"kCL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"kCO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"kCV" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/datamaint) "kDt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) +"kDA" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_y = -30 + }, +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"kDG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) "kDL" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"kEj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"kDO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/cargo) +"kDX" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"kDY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"kEg" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/airlock/control) +"kEh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"kEq" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"kEw" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Resin, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/corsat/sigma/southeast/generator) -"kEJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"kES" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security) +"kET" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"kEX" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"kEZ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/corsat/sigma/biodome/gunrange) +"kFc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"kFj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) "kFo" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/green, /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"kFq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/corsat/gamma/sigmaremote) -"kFE" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) +"kFy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"kFC" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security/armory) "kFZ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"kGi" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"kGJ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" +"kGq" = ( +/obj/structure/machinery/door_control{ + id = "OmegaCargoN"; + name = "Cargo Door"; + pixel_x = 24; + use_power = 0 }, -/area/corsat/gamma/hallwaysouth) -"kGK" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"kGv" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Cargo Desk" }, -/area/corsat/gamma/residential/west) -"kGP" = ( -/turf/open/floor/corsat{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - icon_state = "purplewhite" + name = "Cargo Desk"; + req_access_txt = "101" }, -/area/corsat/omega/complex) -"kGV" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/lobby) +"kGD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"kGE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/hallways) +"kGR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"kGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"kHa" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/north) "kHe" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"kHk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" +"kHr" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/north) +"kHs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaNorthN"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 }, -/area/corsat/sigma/airlock/control) +/obj/structure/machinery/door_control{ + id = "GammaNorthS"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = -3; + use_power = 0 + }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/airlock/north) +"kHu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) "kHP" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"kIz" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" +"kHS" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"kHW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaDSC"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/hallwaysouth) -"kID" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"kIg" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"kIo" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"kIt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/theta/biodome/hydroeast) +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"kIw" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"kIH" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"kIL" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"kIT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "kIW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, @@ -47368,187 +21475,262 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"kJk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydroeast) -"kJT" = ( -/obj/structure/closet/wardrobe/virology_white, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"kKs" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 +"kJe" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kJn" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"kJq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"kJx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/sigma/dorms) -"kKw" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"kJB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"kJJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/hallways) -"kKB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"kKa" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/security) -"kKK" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"kLC" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/west/id) +"kKh" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"kMu" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"kKn" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/sigma/hangar/security) -"kMZ" = ( -/obj/structure/platform{ - density = 0; +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"kKq" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"kKD" = ( +/obj/structure/pipes/vents/pump/siphon/on{ dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"kNB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + id_tag = "oxy_corsat_out" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"kKZ" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/east) +"kLh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"kLn" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"kLr" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"kLw" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"kLA" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar) +"kLJ" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"kLU" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"kMi" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"kMl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"kMm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/medbay/chemistry) -"kNQ" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave{ - icon_state = "mars_cave_12" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"kMn" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" }, -/area/corsat/sigma/biodome) -"kOc" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"kMA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/offices) -"kOd" = ( -/turf/open/floor/corsat{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/hallwaysouth) -"kOi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"kMG" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/airlock/south) -"kOv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"kMI" = ( +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"kML" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"kMV" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"kMX" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"kNg" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"kNv" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, /area/corsat/theta/biodome/complex) -"kOA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"kOL" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/emergency_access) -"kPl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +"kNz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) +"kNL" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"kNM" = ( +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"kNP" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"kNS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"kNY" = ( +/obj/structure/machinery/r_n_d/organic_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"kOl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/gamma/freezer) -"kPp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"kOq" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"kOx" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"kON" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/area/corsat/omega/security) -"kPC" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"kOU" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security/cells) +"kOV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"kOX" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"kPh" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/chemimp, +/obj/item/storage/box/trackimp, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"kPm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/hangar/monorail) -"kPH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"kPA" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"kPE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"kPL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/airlock/control) -"kPP" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"kPN" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"kPU" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"kPS" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/south) "kQb" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green{ @@ -47556,535 +21738,712 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"kQd" = ( +"kQh" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"kQe" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"kQS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, -/area/corsat/theta/biodome/complex) -"kRa" = ( -/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ - index = "9" - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "corsat_teleporter_static" - }, -/area/corsat/gamma/sigmaremote/teleporter) -"kRc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/corsat/sigma/south/engineering) -"kRB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"kQr" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"kRO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"kSa" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"kQw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay) -"kSt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"kQX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 }, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/gamma/airlock/control) +"kRe" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"kRl" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"kRn" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"kRo" = ( +/obj/structure/platform{ dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"kSx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/bananapeel{ - name = "tactical banana peel" + layer = 2.7 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"kRt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south/complex) -"kSD" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"kRI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"kSG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"kRV" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) +"kRW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"kSm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 }, -/area/corsat/gamma/residential) -"kSM" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/control) +"kSP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"kSW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south/engineering) -"kSY" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"kSZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/south/id) -"kTg" = ( -/obj/structure/bed/chair{ +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"kTi" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"kTA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential) -"kTx" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"kTG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/south) -"kUp" = ( -/turf/open/floor/corsat{ - icon_state = "white" +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"kTM" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap/deluxe, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"kTU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/east) -"kUt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"kUg" = ( +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/hallwaysouth) +"kUi" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"kUV" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/deck, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"kVn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"kUj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"kUz" = ( +/obj/effect/landmark/hunter_primary, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"kUA" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"kUH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/dorms) -"kVy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/cargo) +"kVa" = ( +/obj/item/storage/box/gloves, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"kVb" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"kVo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"kVu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"kVC" = ( +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) +"kVE" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/checkpoint) +"kVF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/residential) -"kVT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"kVI" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"kVK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/obj/structure/machinery/botany{ + name = "hydroponics tray" + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"kVL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"kVO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) -"kVZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +"kVU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"kVY" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = 5 }, -/area/corsat/omega/complex) -"kWe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/chemistry) +"kWq" = ( +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"kWs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/lobby) -"kWL" = ( +"kWw" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/monorail/control) +"kWx" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"kWZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" + dir = 9 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"kWI" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"kWM" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/canteen) +"kWX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"kXc" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"kXf" = ( +/obj/structure/bed/nest, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "kXj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"kXp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"kXz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"kYn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"kXo" = ( +/obj/structure/prop/mech/parts/durand_right_arm, +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/south/robotics) +"kYj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/omega/complex) -"kYC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"kYB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/foyer) -"kZy" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 25 +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"kYF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south/id) +"kYW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"kZc" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"kZf" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"kZv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"kZB" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/corsat/theta/airlock/west) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/core) +"kZN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/cargo) +"kZZ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) "lac" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/theta/airlock/west) -"laE" = ( +"lah" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/checkpoint) +"laj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"laV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"lbC" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"lbY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"lco" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"laq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/area/corsat/gamma/residential/east) -"lcF" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/biodome/toxins) -"lda" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"ldg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" + id = "SigmaHangarC-N"; + name = "Security Shutters" }, -/area/corsat/gamma/residential/east) -"ldy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"lau" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"ldE" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"lax" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarW"; + name = "Landing Bay Omega" }, +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"laA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"laB" = ( +/turf/open/floor/corsat/gamma, /area/corsat/gamma/residential) -"ldN" = ( +"laE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" + dir = 6 }, -/area/corsat/sigma/lavatory) -"ldS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"laG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/cargo) +"laP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"leg" = ( -/obj/structure/sign/safety/laser{ - pixel_x = 32 - }, -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"lbh" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"lbi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"lbj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"lbk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/theta/biodome/complex) -"leI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/dorms) +"lbm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lbs" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"leJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"leM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"lbV" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay/lobby) +"lcp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/residential/east) -"leP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +"lcG" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"leR" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"lcT" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"ldF" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/airlocknorth) +"ldJ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ldM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"ldO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/ce, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"ldQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Head of Security Office"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "GammaHOS"; + name = "Privacy Shutters" }, -/area/corsat/theta/airlock/west/id) -"leS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"lep" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) +"leZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/biodome/scrapyard) -"leW" = ( /obj/structure/machinery/camera/autoname{ dir = 4; - network = list("theta") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"lfF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"lfH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"lft" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"lgo" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"lfx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/southeast/datalab) -"lgt" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"lfz" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, /obj/structure/platform{ density = 0; - dir = 4; + dir = 1; icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"lfZ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/gamma/hallwaysouth) -"lgv" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"lga" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"lgc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"lgh" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/gunrange) +"lgm" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/biodome/complex) +"lgn" = ( +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"lgy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "tan" + name = "Research Complex Gamma"; + req_access_txt = "103" }, -/area/corsat/gamma/residential/west) -"lgx" = ( -/obj/structure/stairs{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"lgR" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"lhi" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"lgU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"lgV" = ( /obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, -/obj/structure/machinery/light{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"lhc" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lhq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"lhA" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"lhB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/residential/showers) -"lhl" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"lhF" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) +"lhH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"lhW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/administration) -"lhI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "GammaHangarCargoC"; + name = "Security Shutters" }, -/area/corsat/gamma/security/cells) -"lhL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"lhX" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 8 }, -/area/corsat/sigma/hangar/security) -"lhS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/landing/console) +"lif" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/omega/airlocknorth) -"lib" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"lii" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lio" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"liu" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"liL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"liU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"liX" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/south) +"ljd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"ljf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"lig" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ljl" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"ljm" = ( +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"ljM" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"ljO" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/theta/biodome/complex) -"liQ" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"ljR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"ljw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"ljY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/morgue) +"lkc" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/residential) "lkd" = ( /obj/structure/machinery/camera/autoname{ @@ -48093,236 +22452,258 @@ }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"lki" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"lkk" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/datalab) "lkm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"lko" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"lkA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"lkW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta" }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"llc" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lld" = ( /obj/structure/machinery/camera/autoname{ dir = 8; - network = list("sigma") - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"lkv" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"lkF" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/gamma/freezer) -"lla" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + network = list("gamma") }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"lli" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"llq" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/sigma/south) "llr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"llM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat{ +"llx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/south) -"lmx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "lightplate" + network = list("sigma") }, -/area/corsat/theta/biodome/complex) -"lmD" = ( -/obj/structure/machinery/autodispenser{ - dir = 4 +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/airlock/control) +"llL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat{ +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"llT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"lmF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast/datamaint) +"lmG" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"lmK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"lmV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" + name = "Class Room"; + req_one_access = null }, -/area/corsat/sigma/biodome) -"lnc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lmX" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"lnG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthID"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"lnM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"lnp" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "lnQ" = ( /obj/structure/window_frame/corsat, /turf/open/floor/plating, /area/corsat/gamma/biodome/complex) -"lom" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +"lnS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"lod" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"loe" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"lop" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"loF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/obj/structure/surface/rack, +/obj/item/cell/secborg, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"lon" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/area/corsat/gamma/residential/researcher) -"lps" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"loq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"loy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/corsat/sigma/hangar/monorail) -"lqm" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 }, -/area/corsat/omega/hallways) -"lqK" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"loC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/airlock/south) -"lqR" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck/uno, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"loN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/rnr/arcade) -"lqU" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"lpa" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/ashtray/plastic{ - pixel_x = 4 - }, -/obj/item/handset{ - pixel_x = -4; - pixel_y = 4 +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"lpc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"lph" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"lpm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"lpu" = ( +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/core) +"lpx" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/foyer) +"lpI" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/sigma/southeast/datalab) -"lqX" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/hallwaysouth) +"lpP" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/browncorner/east, /area/corsat/sigma/cargo) -"lrQ" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthS"; - name = "Gamma South Airlock" +"lqa" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"lqk" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/airlock/south) -"lsc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"lqN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lqO" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" }, -/area/corsat/omega/offices) -"lsk" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lrj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"lrl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"lrt" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"lrN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"lsj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"lss" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/south) "lsu" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat, /area/corsat/gamma/freezer) +"lsv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"lsx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) "lsB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -48336,776 +22717,1041 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"ltk" = ( -/obj/structure/bed/chair/office/light{ +"lsI" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"lsT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"lta" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"ltb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/biodome/virology) -"ltl" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"lts" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/stamp, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo/lobby) +"ltB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"ltF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"ltI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 4 }, -/area/corsat/theta/airlock/control) -"ltX" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"ltU" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"ltZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south) +"lub" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/biodome/complex) -"lue" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/dice/d20, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"luf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "squareswood" + name = "Security Office"; + req_access_txt = "101" }, -/area/corsat/gamma/rnr/arcade) -"lug" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"luv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Administration Office" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/turf/open/floor/corsat/red/west, +/area/corsat/omega/control) +"luB" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/machinery/camera/autoname{ dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"luD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"luH" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"luJ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"luU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"lvd" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hangar) +"lvl" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"lvn" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/corsat/omega/offices) -"luj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/omega/hangar/security) -"luE" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"lvw" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"luQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"lvg" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"lvx" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"lvA" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) "lvE" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"lvR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"lvH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) -"lvU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"lvK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/medbay) -"lwk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"lvL" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar) +"lvS" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"lvW" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/sigma/south/engineering) -"lwl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar) +"lwa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lwb" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/armory) +"lwh" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/medbay/morgue) "lwu" = ( /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"lwy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"lwL" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"lxi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"lww" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/airlock/control) -"lxj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"lwA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"lwF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"lwK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"lwX" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, -/area/corsat/gamma/residential/west) -"lxS" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"lxe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"lxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"lyd" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Lab"; - req_one_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"lxq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"lxw" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"lxK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"lxQ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, /area/corsat/sigma/south/complex) -"lyu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/lobby) -"lyK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"lyW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" - }, -/area/corsat/gamma/biodome/complex) -"lzc" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"lzI" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/southeast) -"lAd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"lBj" = ( +"lym" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/south/security) +"lyr" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"lBx" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/platform{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"lyC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics Lab"; + req_access_txt = "103" }, -/area/corsat/gamma/hallwaysouth) -"lCa" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"lyJ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/area/corsat/sigma/south/robotics) -"lCq" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"lyR" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lyX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, -/area/corsat/sigma/dorms) -"lCr" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"lzk" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/arrivals) -"lCv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"lDb" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"lDh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"lDJ" = ( -/obj/structure/machinery/door_control{ - id = "RemoteGateO"; - name = "Gate Shutters"; - pixel_y = 24; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"lDT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" + network = list("sigma") }, -/area/corsat/sigma/dorms) -"lEb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"lzq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"lzr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/corsat/omega/hallways) -"lER" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"lzt" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "West Hydroponics Wing"; + req_one_access_txt = "103" }, -/obj/structure/barricade/handrail{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"lzJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar) +"lzO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"lzV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/voice, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"lAN" = ( +/turf/open/floor/corsat/greencorner/north, /area/corsat/gamma/hallwaysouth) -"lFq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lAP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"lAY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"lBh" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lBk" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"lBq" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"lFP" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"lFU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Hangar Security"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"lFX" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"lBt" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/south/robotics) +"lBv" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"lBR" = ( +/obj/structure/filingcabinet/filingcabinet, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"lBV" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"lCb" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"lCg" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) -"lFY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +"lCs" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "2" }, -/area/corsat/sigma/south/security) -"lGj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"lCx" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/monorail) +"lCA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"lCI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"lCJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"lCM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"lCO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/airlock/north) +"lCX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"lDg" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"lGo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"lDD" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"lDH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"lDU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/dorms) -"lGp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Hydroponics"; - req_one_access = null +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"lEa" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"lEd" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/engineering) +"lEe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + pixel_x = 5; + pixel_y = 2; + use_power = 0 + }, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/hangar/office) +"lEk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"lEJ" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"lEV" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"lEZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"lFc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"lFB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/hydroponics) -"lGq" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"lFK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/sigma/hangar/checkpoint) -"lGD" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"lFS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"lFT" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) "lGP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"lHk" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +"lHa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/south/complex) -"lHB" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"lHg" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_x = 24; + use_power = 0 }, -/area/corsat/omega/complex) -"lHI" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"lHh" = ( /obj/structure/surface/table/reinforced, -/obj/item/ammo_rcd, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"lHK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-N"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/sigma/south/offices) -"lHU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"lHj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"lHm" = ( +/obj/item/toy/deck, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"lHz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"lHE" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"lHW" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/corsat/omega/security) -"lId" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/obj/structure/machinery/light/small, +/obj/structure/machinery/door/window/southleft{ + dir = 4; + layer = 2.8 }, -/area/corsat/sigma/south/security) -"lIf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"lIb" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) +"lIg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"lIi" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/area/corsat/sigma/south) -"lIq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"lIk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/airlock/control) +"lIs" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/south) -"lIu" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +"lIG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/theta/biodome/complex) -"lIE" = ( -/obj/structure/machinery/smartfridge/chemistry{ - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"lIL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"lJa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/area/corsat/gamma/biodome/complex) -"lIQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + req_one_access_txt = "106;103"; + use_power = 0 }, -/area/corsat/sigma/north) -"lIW" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"lJb" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"lJg" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"lIY" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"lJM" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"lJW" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/structure/platform{ +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"lKe" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"lKg" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"lKl" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/south) -"lJj" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/residential/lounge) -"lJq" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"lJz" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/gamma/hallwaysouth) -"lJR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"lKo" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"lKt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/whitetan/west, +/area/corsat/sigma/dorms) "lKy" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"lKC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"lLc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"lLe" = ( +"lKF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"lLO" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"lKK" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/omega/hangar) +"lKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"lKR" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"lKV" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/gamma/cargo) -"lMf" = ( -/obj/structure/machinery/bot/cleanbot, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, -/area/corsat/theta/biodome/hydrowest) -"lMU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"lKZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/sigma/hangar/checkpoint) -"lNS" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"lLd" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"lLf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"lLg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"lOn" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"lLp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/theta/airlock/east) -"lOM" = ( /obj/structure/platform{ dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" + layer = 2 }, -/area/corsat/gamma/residential/east) -"lON" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"lLu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/FixOVein, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"lLV" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"lMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"lMd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"lMn" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"lMs" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"lMt" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"lMM" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"lMV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"lNe" = ( +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" + }, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"lNn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, +/turf/open/floor/plating/warnplate/north, /area/corsat/gamma/hangar) -"lOS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lNA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/generator) +"lNH" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"lNR" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/gamma/biodome/complex) -"lOV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"lNX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/hallwaysouth) -"lOW" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - autoclose = 0; - density = 0; - dir = 1; - icon_state = "door_open"; - name = "Containment Cell 5"; - req_one_access_txt = "103" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"lNZ" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "SigmaEastW"; + name = "Sigma East Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"lOo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lOw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"lOB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/area/corsat/inaccessible) +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/checkpoint) +"lOL" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) +"lPb" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hangar/arrivals) "lPh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/control) -"lPi" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/residential) -"lPD" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +"lPw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) +"lPy" = ( +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 1"; + name = "Cell 1" }, -/area/corsat/gamma/sigmaremote) -"lPH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"lPZ" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"lQb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Storage"; + req_one_access_txt = "102" }, -/area/corsat/sigma/hangar/security) -"lPY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"lQc" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"lQk" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"lQr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" + dir = 1 }, -/area/corsat/sigma/dorms) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"lQd" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"lQm" = ( +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/morgue) "lQu" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"lQw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lQv" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"lQG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"lRg" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"lQI" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/airlock/south) +"lQO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/airlock/control) +"lQP" = ( +/obj/structure/powerloader_wreckage, +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) +"lQQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"lRP" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"lRU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/sigmaremote) -"lRQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"lSt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" }, -/area/corsat/sigma/hangar/id) -"lRW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"lRY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/complex) -"lSS" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"lSU" = ( -/obj/structure/machinery/computer/pandemic, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"lSE" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"lSG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintenance Closet"; + req_one_access = null }, -/area/corsat/gamma/biodome/virology) -"lTA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"lSH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"lTd" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering/core) +"lTE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/almayer/research/containment/corner_var1{ +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"lTL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/area/corsat/gamma/sigmaremote) -"lTC" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/bluegrey/east, /area/corsat/omega/offices) -"lTU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "plate" +"lTR" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/monorail) +"lTS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"lUd" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"lUp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/corsat/omega/biodome) -"lUc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"lUq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"lUG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"lUJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/south) -"lUI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"lUK" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"lUL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"lUO" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/area/corsat/sigma/south/complex) -"lUM" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/airlocknorth/id) +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"lUS" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/hallwaysouth) "lUY" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -49113,157 +23759,164 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"lVb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/corsat/sigma/airlock/control) -"lVo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/cargo) -"lVw" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/west) -"lVx" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) +"lVq" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"lVu" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) "lVF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"lVW" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow{ - name = "pool" +"lVN" = ( +/obj/structure/bed/chair, +/obj/structure/platform{ + dir = 8; + layer = 2.8 }, -/area/corsat/gamma/residential/showers) -"lWf" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"lVO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"lVR" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"lVX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"lWj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"lWD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"lWx" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lWE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"lWW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"lWG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"lXA" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/corsat/arrow_west, +/area/corsat/sigma/hangar) +"lXc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/omega/security) -"lXJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/hangar/id) -"lXP" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"lXd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"lXg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/sigma/biodome) -"lXV" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Containment Unit"; - req_one_access_txt = "103" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"lXj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"lXl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"lXv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"lXz" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/weed_extract, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"lXB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"lXM" = ( +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Gate Shutters"; + pixel_y = 24; + use_power = 0 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lXX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"lXZ" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/inaccessible) "lYc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"lYd" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"lYq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, -/area/corsat/omega/complex) -"lYt" = ( -/obj/structure/sign/safety/high_voltage, -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - pixel_x = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, +"lYh" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"lYy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/squares, /area/corsat/theta/biodome/complex) -"lYv" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/security) -"lYM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"lYF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"lYI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"lYO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"lYW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) "lYX" = ( /obj/structure/ice/ice_rock/cornerOverlay{ icon_state = "single" @@ -49283,65 +23936,123 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"lZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/hangar) -"mab" = ( -/obj/structure/sign/safety/high_rad{ - pixel_x = 32 - }, -/turf/open/floor/corsat{ +"lZq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"lZy" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/structure/platform{ dir = 4; - icon_state = "purplewhite" + layer = 2 }, -/area/corsat/theta/biodome/complex) +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"lZC" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"lZP" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"lZW" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"lZZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) "mag" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"mbp" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/corsat{ - icon_state = "plate" +"mal" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/crowbar, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/cargo) +"mam" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/omega/hangar) -"mbz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"man" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/complex) +"map" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/airlock/south) +"maF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/complex) +"maG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"maM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"maO" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Research Complex"; + req_one_access_txt = "101" }, -/area/corsat/sigma/south/offices) -"mbI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"maY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"mba" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"mbe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"mbR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/north) -"mbO" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/omega/airlocknorth/id) -"mbZ" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"mbS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/raisins, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"mbV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"mbX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) "mcj" = ( /obj/structure/bed/chair{ dir = 4 @@ -49351,105 +24062,132 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"mdI" = ( -/obj/structure/closet/crate/trashcart, +"mcq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"mcx" = ( +/obj/structure/toilet, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat, -/area/corsat/gamma/cargo/disposal) -"mdV" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/security) -"mea" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"mer" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"meu" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"mcA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"mcD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"mey" = ( -/obj/structure/sign/safety/biohazard, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"meC" = ( /obj/structure/machinery/camera/autoname{ network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/corsat/gamma/hallwaysouth) -"meD" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"mcE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"mcG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"meJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"mcR" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"mcU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/sigmaremote) -"mfm" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"mcV" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/biodome/complex) -"mfw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/hangar/office) +"mdr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "4" }, -/area/corsat/sigma/dorms) -"mfH" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"mdH" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"mdI" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"mfN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat, +/area/corsat/gamma/cargo/disposal) +"mdN" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"mdP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"mea" = ( +/obj/structure/bed/sofa/south/white/right, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"mfS" = ( -/obj/effect/landmark/corpsespawner/wysec, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +"mes" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"meM" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"meZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"mfq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"mft" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"mfv" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"mfK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/security) +"mfN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) "mfX" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -49457,249 +24195,340 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"mgq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/monorail/control) -"mgt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"mgw" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"mgO" = ( +"mge" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"mgW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"mhg" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"mgm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/checkpoint) -"mhq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"mgz" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/hangar/office) +"mgS" = ( +/obj/structure/safe, +/obj/item/xeno_egg, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"mgX" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"mhc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"mhd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, +/turf/open/floor/corsat/purple, /area/corsat/sigma/south) -"mim" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +"mhl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"mhu" = ( +/obj/structure/machinery/door/window/southleft, +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mhG" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"mhO" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"miq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"miE" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + name = "Access Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/residential) -"miJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"miu" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"miH" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"miS" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mje" = ( +/obj/structure/sign/safety/high_rad{ + pixel_x = 32 }, -/area/corsat/sigma/hangar/checkpoint) -"miU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"mjg" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"mjj" = ( +/obj/structure/bed/stool{ + pixel_y = 15 }, -/area/corsat/gamma/cargo) -"miX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome) -"mjc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/complex) -"mjt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"mjv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/laundry) -"mkM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "SigmaCargo"; - name = "Sigma Cargo Bay"; - use_power = 0 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"mjq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"mjr" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) +"mjz" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/dorms) +"mkb" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"mkj" = ( +/obj/structure/platform{ + dir = 8 }, -/area/corsat/sigma/cargo) -"mlo" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"mks" = ( /obj/structure/surface/rack, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"mkJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"mkT" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"mkV" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"mli" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) "mlr" = ( /obj/structure/pipes/vents/pump, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"mmh" = ( -/obj/structure/bed/chair{ - dir = 1 +"mlB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"mlI" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"mlQ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "19" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"mmm" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("theta") }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"mmn" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "yellowcorner" + network = list("omega") + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"mmL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"mmN" = ( +/obj/structure/surface/table/almayer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/engineering) -"mmj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" +"mmS" = ( +/obj/structure/surface/rack, +/obj/item/storage/wallet, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"mmY" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "ThetaNorthS"; + name = "Theta North Airlock" }, -/area/corsat/theta/biodome/hydrowest) -"mmp" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"mnb" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"mnr" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"mnz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/sigma/south) -"mmr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mnR" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"mnS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") }, -/area/corsat/gamma/residential/lavatory) -"mmy" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"mnZ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Engineering Desk" }, -/area/corsat/theta/airlock/control) -"mod" = ( /obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"mop" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap/deluxe, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Engineering Desk"; + req_access_txt = "13" }, -/area/corsat/gamma/residential) -"moU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/lobby) +"moa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"mos" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"moR" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"moT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/southeast) -"mpj" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"moV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/control) +"moY" = ( +/obj/structure/platform{ + density = 0; dir = 8; - icon_state = "redcorner" + icon_state = "platform_deco" }, -/area/corsat/omega/airlocknorth) -"mpS" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"mph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"mpr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; + use_power = 0 }, -/area/corsat/gamma/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/cargo) +"mpu" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"mpB" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"mpM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"mpR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/checkpoint) +"mqf" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/lobby) +"mqm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) "mqn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"mqr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/containment) -"mqK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +"mqA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"mqL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"mqQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/biodome/testgrounds) "mqU" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -49709,982 +24538,1275 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) +"mra" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) "mrb" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"mrr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHCargoW"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mre" = ( +/obj/structure/largecrate/lisa, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"mrg" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"mrh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) +"mru" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar/cargo) -"mrG" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"mrO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) +"mrH" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) "mrQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/biodome/complex) -"msj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/hangar/flightcontrol) -"msm" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin12" - }, +"mrR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/prison/hangar_storage/research/shuttle) -"msp" = ( +"mrW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/airlock/control) -"msu" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"mrZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"msf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"msk" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) +"mst" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "msB" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/gamma/cargo/disposal) +"msC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "msP" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"msY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +"msS" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"msU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"mte" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) "mti" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"mts" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"mtw" = ( +/obj/item/trash/buritto, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) "mtG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/river, /area/corsat/theta/biodome) -"muo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"muu" = ( +"mtI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"mtL" = ( +/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"mtZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"mvL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars, -/area/corsat/sigma/biodome) -"mvM" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"mua" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"mud" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat{ + name = "Acid Resistant Hemostat"; + unacidable = 1 }, -/area/corsat/sigma/south/complex) -"mvS" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"muk" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "whitecorner" + id_tag = "mining_outpost_pump" }, -/area/corsat/sigma/dorms) -"mwa" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west) +"mux" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Gamma"; + req_access_txt = "103" }, -/area/corsat/gamma/cargo) -"mwk" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"muL" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"muR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"muT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"muU" = ( /obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"mwo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/north) -"mwy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"mwC" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/biodome, -/area/corsat/emergency_access) -"mwH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"mwK" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/machinery/door_control{ + id = "ThetaNorthS"; + name = "Airlock Control"; + pixel_y = -2; + use_power = 0 }, -/area/corsat/gamma/biodome/virology) -"mxa" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/machinery/door_control{ + id = "ThetaNorthN"; + name = "Airlock Control"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"muW" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/area/corsat/sigma/north) -"mxc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"mxO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/omega/offices) -"mxZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/FixOVein, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"myt" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/sigma/southeast) -"mzi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" + network = list("gamma") }, -/area/corsat/gamma/airlock/south) -"mzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"muZ" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/almayer/research/containment/corner_var1{ +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"mvc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"mve" = ( +/obj/structure/stairs{ dir = 4 }, -/area/corsat/sigma/south/complex) -"mAc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/checkpoint) -"mAt" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/maint) -"mAx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"mAK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"mvn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"mvs" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"mvu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/security) -"mAV" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/airlocknorth/id) -"mBp" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" + network = list("sigma") }, -/area/corsat/sigma/checkpoint) -"mBq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"mvL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars, +/area/corsat/sigma/biodome) +"mvO" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/foyer) +"mvR" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"mvZ" = ( +/obj/structure/platform{ dir = 4; - icon_state = "darkgreen" + layer = 2.7 }, -/area/corsat/gamma/rnr) -"mBs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/dorms) +"mwm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/gamma/hangar/arrivals) -"mCe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"mwq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"mwx" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar/security) +"mwC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/biodome, +/area/corsat/emergency_access) +"mwI" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hallwaysouth) +"mxe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"mxl" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestE"; + name = "Theta West Airlock" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"mxn" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/tool/stamp/hos, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"mxw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"mxG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"myc" = ( +/obj/item/folder/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"myf" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"myl" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"mym" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"myo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) -"mCj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/cargo) -"mCD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"mCE" = ( +"myq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + dir = 4 }, -/area/corsat/omega/complex) -"mCU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"myr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"myw" = ( +/turf/open/floor/corsat/brown/west, /area/corsat/omega/hallways) -"mDe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ +"myy" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"mDR" = ( -/obj/item/handset, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/corsat/gamma/biodome/complex) -"mEd" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"myM" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/engineering) +"myN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"myU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"mEt" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"mzl" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ dir = 4; - icon_state = "red" + network = list("omega") }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/hallways) -"mEy" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"mEG" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"mFm" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, -/area/corsat/gamma/hallwaysouth) -"mFp" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, +"mzx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"mzA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"mzG" = ( +/turf/open/floor/corsat/darkgreencorner/east, /area/corsat/sigma/hangar/monorail) -"mFE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/theta/airlock/control) -"mFP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"mzL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/surgery) +"mzO" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"mzW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Hypersleep Chamber"; + req_access_txt = "100" }, -/area/corsat/omega/hangar/security) -"mFS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Interrogation" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"mFT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mAf" = ( +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"mAk" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/airlock/control) +"mAv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 }, -/area/corsat/gamma/hallwaysouth) -"mGl" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"mAx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"mGn" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"mAA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"mAH" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/arrivals) +"mAJ" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"mAM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mAP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("gamma") }, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/office) +"mAQ" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/scrapyard) +"mAT" = ( +/obj/structure/bed/sofa, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"mAZ" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"mBn" = ( +/turf/open/floor/corsat/bluegrey/west, /area/corsat/sigma/hangar/office) -"mGL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"mBz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/corsat/gamma/sigmaremote) -"mGN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"mBL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"mBO" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south) +"mBP" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/gamma/biodome/virology) -"mGU" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "ThetaNorthD"; - name = "Theta Dome Airlock" +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"mBQ" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome/scrapyard) +"mCa" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"mCt" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "map_lockdown"; - name = "Theta Lockdown"; - use_power = 0 +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/airlocknorth) +"mCP" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"mCR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"mCW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"mCX" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"mDO" = ( +/turf/open/floor/corsat/theta, /area/corsat/theta/airlock/control) -"mHd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mEh" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"mEj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"mHM" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"mEn" = ( +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"mEp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"mEu" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) +"mEH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestE"; + name = "Sigma West Airlock" }, -/area/corsat/gamma/cargo) -"mIa" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"mEK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaGrounds"; + name = "Testing Grounds" }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/biodome/testgrounds) +"mEM" = ( +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"mEV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"mEW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"mFa" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"mFo" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/gamma/biodome/complex) +"mFq" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mFy" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"mFO" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" + dir = 1 }, -/area/corsat/gamma/residential/west) -"mIn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"mGB" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/area/corsat/gamma/foyer) -"mIs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"mGQ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"mGV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"mHz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/freezer) -"mIx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"mHF" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/gamma/cargo) +"mIf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mIt" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"mIG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) "mIY" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"mJa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars{ - icon_state = "mars_dirt_11" - }, -/area/corsat/sigma/biodome) -"mJm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass{ - reason = "Visitor" +"mJi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"mJl" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"mJq" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"mJp" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay) +"mJx" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4; - icon_state = "whitetan" + layer = 2 }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"mJy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"mJB" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/canteen) +"mJM" = ( +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome/scrapyard) +"mJO" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"mJS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"mKa" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"mKf" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/area/corsat/gamma/engineering) -"mJC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"mKt" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mKF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"mKU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "gamma" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"mLh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/rnr) -"mKc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) +"mLt" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"mLD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/airlock/control) -"mKk" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"mLQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/sigma/cargo) +"mMa" = ( +/obj/structure/machinery/door_control{ + id = "SigmaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 }, -/area/corsat/gamma/biodome/complex) -"mKP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"mLq" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purple" - }, -/area/corsat/omega/complex) -"mLu" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"mLL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"mMb" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south) +"mMq" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/north) -"mLR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"mMw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"mMz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Arrivals" }, -/area/corsat/gamma/hangar/cargo) -"mNe" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"mME" = ( +/obj/structure/surface/table/reinforced, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantcase, +/obj/item/implantpad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"mMG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"mMR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"mMZ" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) +"mNa" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"mNj" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"mNr" = ( +/obj/structure/largecrate/cow, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"mNt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"mNC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Laundry" }, -/area/corsat/gamma/hangar/cargo) -"mNV" = ( -/obj/item/tool/soap, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"mNW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"mNI" = ( +/obj/vehicle/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"mNM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) -"mOr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +"mNU" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"mOi" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"mOv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" }, -/area/corsat/gamma/biodome/toxins) -"mOw" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"mOO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/omega/control) -"mOV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"mPb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/hangar/flightcontrol) -"mPg" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"mPj" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/checkpoint) -"mPk" = ( -/obj/structure/surface/rack, -/obj/item/toy/plush/farwa, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"mPS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + name = "Data Laboratory"; + req_access_txt = "106;102;103" }, -/area/corsat/omega/airlocknorth/id) -"mQk" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"mPy" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"mPE" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/medbay/morgue) +"mPX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) -"mQu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" - }, -/area/corsat/gamma/residential/researcher) -"mQF" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/janitor, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" +"mQe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south/robotics) -"mQG" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"mQf" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"mQU" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"mRl" = ( -/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"mRp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/hangar/checkpoint) +"mQi" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"mQD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/virology) +"mQX" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"mRB" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/foyer) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"mRa" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"mRo" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) "mRC" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) -"mRI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/virology) -"mSi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"mRK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"mSg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/checkpoint) "mSo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"mSz" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +"mSI" = ( +/obj/structure/machinery/atm{ + pixel_y = -30 }, -/area/corsat/gamma/biodome/complex) -"mSG" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"mSJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"mSS" = ( /obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"mSR" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/administration) -"mTa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars, -/area/corsat/sigma/biodome) -"mTz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"mST" = ( +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) -"mTF" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/lavatory) -"mTO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"mUj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mSU" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"mSV" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"mSW" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/virology) -"mUo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"mUu" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/corsat/sigma/south/complex) -"mUv" = ( -/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/theta/biodome/complex) +"mSZ" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"mTa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/mars, +/area/corsat/sigma/biodome) +"mTd" = ( +/turf/open/floor/corsat/brown, /area/corsat/sigma/cargo) -"mUA" = ( +"mTu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"mTC" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/airlock/south) +"mTL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"mTP" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast/datalab) +"mUd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"mUr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"mUs" = ( +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) -"mUE" = ( -/obj/structure/pipes/vents/pump{ +"mUz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"mUL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/east/id) -"mVk" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"mVp" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) "mVq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"mVA" = ( -/obj/structure/bed/chair/dropship/passenger{ +"mVx" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/southeast/generator) +"mVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"mWb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"mWd" = ( +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"mWi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Warden's Office"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"mWp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"mWt" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = 25; + use_power = 0 }, -/area/prison/hangar_storage/research/shuttle) -"mWj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/security) +"mWF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/biodome/virology) -"mWo" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"mWQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/sigma/south/offices) -"mWG" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"mWS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"mWU" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"mXA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"mXF" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/corsat/purple/east, /area/corsat/gamma/biodome/complex) -"mXC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"mXN" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"mYg" = ( +/obj/structure/surface/rack{ + name = "Acid Resistant Rack"; + unacidable = 1 }, +/obj/item/xenos_claw, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"mYt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/biodome/virology) -"mYe" = ( -/turf/open/floor/corsat{ +"mYu" = ( +/obj/structure/window/reinforced{ dir = 8; - icon_state = "white" + health = 80 }, -/area/corsat/gamma/residential/east) -"mYQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"mYx" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "7" }, -/area/corsat/sigma/north) -"mYS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "SigmaGate"; - name = "Gate Shutters"; - use_power = 0 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"mYA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"mYH" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/sigma/southeast/datalab) +"mYI" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/south/complex) -"mZf" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"mYX" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/platform{ +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"mZb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"mZk" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/control) +"mZE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 4; - layer = 2.7 + network = list("sigma") }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/east/id) +"mZP" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/residential/east) -"naG" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"nac" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"nae" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"nak" = ( +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/west) +"nar" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/maint) +"nay" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security/cells) +"naB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security/cells) +"naE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"naJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"naN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"naU" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; + name = "Maintainence"; req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"naW" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"naZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/checkpoint) +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) "nbl" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" }, /area/prison/hangar_storage/research/shuttle) -"nbn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"nbv" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"nbx" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/gamma/hallwaysouth) +"nbC" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"nbD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/north) +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) "nbN" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"nbO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/airlock/south) "nbS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -50695,6 +25817,12 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/corsat/theta/biodome) +"nch" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "nck" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/light_1, @@ -50703,185 +25831,335 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"ncR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"ncq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"ncW" = ( -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/security/cells) +"ncu" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"ncS" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/airlock/control) +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/omega/cargo) -"nde" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"ndn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/area/corsat/gamma/hallwaysouth) -"ndr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"ndv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" }, -/area/corsat/gamma/security) -"nds" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"nee" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome) -"ndF" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" + dir = 5 }, -/area/corsat/gamma/residential/laundry) -"nen" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"neq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nes" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 }, -/area/corsat/gamma/cargo) -"neB" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"nev" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"nex" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/mars/mars_dirt_12, +/area/corsat/sigma/biodome) +"neL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/empgrenade, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) +"neN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"neW" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/monorail) "neY" = ( /turf/closed/shuttle/ert{ icon_state = "wy19" }, /area/prison/hangar_storage/research/shuttle) +"nfh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) "nfz" = ( /turf/closed/wall/resin/membrane, /area/corsat/gamma/biodome) -"ngc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/omega/cargo) -"ngx" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"nfM" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"nfQ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"nfW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"nhE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"ngm" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; dir = 1; - icon_state = "asteroidfloor" + icon_state = "door_open"; + name = "Containment Cell 5"; + req_one_access_txt = "103" }, -/area/corsat/sigma/biodome/gunrange) -"nhG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"ngt" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/hallwaysouth) +"ngw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"nid" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ngL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"ngR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"ngZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south) +"nhh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/sigma/biodome/gunrange) -"niv" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"nhm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"nhp" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"nhy" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"nhD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"nhY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"nib" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"nii" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/omega/hangar/security) -"njh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"nio" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"nit" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/south/robotics) -"njv" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"niu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"niB" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth/id) +"niI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID"; + name = "Security Shutters"; + use_power = 0 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/east/id) +"niW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"niX" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"njo" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"njq" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"njt" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"nju" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, /area/corsat/gamma/biodome/complex) -"njI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"njL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +"njx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"njz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"njA" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"njB" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"njM" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"njO" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"njY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"njP" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/obj/structure/machinery/door_control{ + id = "RemoteGateO"; + name = "Outer Gate Shutters"; + pixel_x = 5; + pixel_y = 24; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "RemoteGate"; + name = "Gate Shutters"; + pixel_x = -5; + pixel_y = 24; + use_power = 0 }, -/area/corsat/gamma/biodome/virology) -"nkz" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"nkq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" }, -/area/corsat/sigma/southeast/datalab) -"nkO" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "Toxins Lab"; + req_one_access_txt = "103" }, -/area/corsat/omega/complex) -"nlk" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "CORSAT Academy"; - req_one_access = null +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"nkZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) +"nla" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("theta") }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"nlf" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) "nlm" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green, @@ -50894,59 +26172,71 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"nls" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"nlU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"nmb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/airlocknorth/id) -"nmp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +"nlt" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar/office) +"nlM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/engineering) -"nna" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"nlT" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"nmc" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"nmd" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"nmo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/researcher) -"nnm" = ( -/obj/structure/machinery/light{ +"nmu" = ( +/turf/open/floor/corsat/purple, +/area/corsat/sigma/south) +"nmz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/theta/airlock/control) +"nmE" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"nnx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/sigma/north) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"nmL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"nmP" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/south/offices) +"nmY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr/bar) "nny" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -50961,52 +26251,106 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"noy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" +"nnT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/medbay) -"noK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"nnU" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"nnV" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"nob" = ( +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"noc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/sigma/south/complex) +"nou" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"nov" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC2"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/hangar) -"noW" = ( -/obj/structure/prop/almayer/cannon_cable_connector{ - name = "\improper Cable connector" +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/east/id) +"noI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/obj/structure/prop/almayer/missile_tube{ - color = "grey"; - desc = "An linear accelerator used in experimental genetic treatments. It hums ominously."; - icon_state = "missiletubesouth"; - name = "\improper genetic LINAC system"; - pixel_x = -15 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/arrivals) +"noL" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter/random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"noV" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/theta/biodome/complex) -"noY" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "Teleportation Chamber"; - req_one_access_txt = "101;103" +"noX" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) +"npa" = ( +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"npb" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"npe" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/prison/hangar_storage/research/shuttle) +"nph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"npl" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/researcher) +"npi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"npj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SigmaWestD"; + name = "Entrance Airlock Control"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) "npm" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -51016,1245 +26360,1766 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/hangar/monorail) -"npA" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar) -"npI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - icon_state = "purple" +"npJ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"npM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) "npN" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"nqd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access = null; - req_one_access_txt = "106;104" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"nqE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"nqF" = ( +"npP" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"nqI" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"npS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"nqg" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"nqs" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/hallwaysouth) +"nqP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/omega/hangar/office) -"nrd" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"nqQ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"nqU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nrb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) "nri" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/ice, /area/corsat/gamma/biodome) -"nrl" = ( -/obj/structure/bed/chair/office/light{ +"nrv" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"nrB" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"nrI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"nsb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"nss" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "10" }, -/area/corsat/gamma/sigmaremote) -"nrO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"nsD" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/airlock/north) +"nsK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_9" - }, -/area/corsat/sigma/biodome) -"nrT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "GammaSouthID"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south/id) -"nrU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"nsg" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/corsat/omega/offices) -"ntg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) "ntn" = ( /turf/closed/shuttle/ert{ icon_state = "wy13" }, /area/prison/hangar_storage/research/shuttle) -"ntp" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south) "ntt" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"ntx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"nui" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/robotics) -"nuj" = ( -/obj/structure/machinery/light{ - dir = 8 +"ntw" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/residential/lounge) +"ntG" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"ntH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ntJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"ntM" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"ntS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/omega/airlocknorth) -"nuq" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/foyer) +"ntT" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"nuF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Theta Dome Control"; - req_one_access_txt = "102" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"nuI" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"nue" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/sigma/south/complex) +"nuw" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"nuN" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "OmegaHangarNE"; + name = "Landing Bay Omega" }, -/area/corsat/gamma/residential/showers) +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) "nuS" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"nvx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +"nuX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"nvc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/control) -"nvA" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"nvd" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/hangar/monorail) +"nvf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"nvh" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/north) +"nvi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" }, -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, -/area/corsat/gamma/residential/east) -"nwj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/south, -/area/corsat/theta/biodome) -"nws" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"nwu" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"nwL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast) -"nwT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"nxh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/hangar/office) -"nxv" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"nvm" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"nvr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"nvv" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hangar/arrivals) +"nvH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"nvO" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/area/corsat/gamma/hallwaysouth) -"nxI" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"nvQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/airlock/north) -"nxN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"nvS" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/sigma/southeast/datalab) -"nxP" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"nwj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/gm/dirtgrassborder/south, +/area/corsat/theta/biodome) +"nwm" = ( +/obj/structure/fence, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"nwt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nww" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/north) -"nxZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"nwO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/engineering) -"nzB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/gamma/airlock/control) -"nzR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"nxm" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"nxn" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"nxx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" }, -/area/corsat/sigma/dorms) -"nzS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"nxy" = ( +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"nxz" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/sigma/hangar/monorail) +"nxG" = ( +/turf/open/floor/corsat/browncorner/north, +/area/corsat/omega/cargo) +"nxO" = ( +/obj/structure/platform{ + density = 0; dir = 4; - icon_state = "purplewhitecorner" + icon_state = "platform_deco" }, -/area/corsat/theta/biodome/complex) -"nAa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/dorms) +"nyf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"nyj" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"nyB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"nyJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"nyO" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"nzv" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"nzU" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "GammaCargo"; + name = "Gamma Cargo Bay"; + use_power = 0 }, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/marked, +/area/corsat/gamma/cargo) "nAl" = ( /turf/open/floor/corsat, /area/corsat/gamma/freezer) -"nAm" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/morgue) -"nAu" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"nAE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"nAO" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"nAR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +"nAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"nAt" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/biodome/testgrounds) -"nBa" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"nAB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"nAJ" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nAW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"nBb" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/inaccessible) +"nBf" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"nBr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration Office" }, -/area/corsat/gamma/biodome/complex) -"nBi" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nBA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"nBP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"nBT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"nCa" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" }, -/area/corsat/sigma/south) -"nBk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"nCt" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"nBw" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"nBy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"nBD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) -"nBO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome) -"nCh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/theta/biodome/complex) -"nCl" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"nCA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"nCC" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/core) +"nCJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/offices) -"nDc" = ( -/obj/structure/machinery/processor, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nDi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Arcade" }, -/area/corsat/theta/biodome/complex) -"nDs" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"nDj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/omega/cargo) -"nDD" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"nDl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"nDH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/engineering) -"nDN" = ( -/obj/structure/safe, -/obj/item/xeno_egg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"nDL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"nDR" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"nDZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/omega/offices) -"nDX" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - id = "GammaEastE"; - name = "Gamma East Airlock" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"nEg" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"nEh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics"; + req_one_access_txt = "102" }, -/area/corsat/gamma/airlock/control) -"nEQ" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"nEm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"nEs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"nEJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/wardrobe/virology_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"nEX" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"nFb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) "nFc" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"nFt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +"nFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/corsat/omega/complex) -"nFy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/sigma/south/complex) +"nFE" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/security) +"nFO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"nGb" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"nGc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/inaccessible) +"nGk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1 }, -/area/corsat/sigma/biodome) -"nGq" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"nGR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"nGV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"nGs" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"nHd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/administration) -"nGU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"nHr" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat{ +/obj/structure/platform{ dir = 4; - icon_state = "red" + layer = 2.7 }, +/turf/open/floor/corsat/white/northeast, /area/corsat/sigma/south) -"nHs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) "nHu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"nHS" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +"nHy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"nHJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nHR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/southeast/datamaint) "nHU" = ( /obj/structure/surface/rack, /obj/item/stock_parts/smes_coil, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) +"nIa" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/arrow_east, +/area/corsat/gamma/cargo) +"nIb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/south) +"nIc" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) "nIy" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"nIF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +"nIJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/biodome/toxins) -"nJb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"nIK" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"nIM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "gamma" +/turf/open/floor/corsat/green, +/area/corsat/gamma/hallwaysouth) +"nIN" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"nIQ" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/atmos) +"nJd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/surgery) +"nJs" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/corsat/gamma/residential/east) -"nJl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) +"nJu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null }, -/area/corsat/gamma/administration) -"nJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"nJz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"nJE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/hangar/security) -"nJt" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"nJJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"nJL" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/corsat/gamma/hallwaysouth) -"nJx" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"nJX" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"nJZ" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"nKg" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/theta/airlock/control) -"nJC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"nJP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"nJR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_10" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar) +"nKk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"nKq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome) -"nKt" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, -/area/corsat/theta/biodome/complex) -"nKH" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"nLl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/rnr) -"nLK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" +"nKA" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"nKD" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"nKI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"nKL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nKM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"nKP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"nKY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"nLj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/residential/east) -"nLP" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/residential/west) +"nLt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"nLF" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"nLG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"nLR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"nLU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/yellow/east, /area/corsat/omega/maint) -"nLW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"nMd" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"nMg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/gamma/sigmaremote) -"nLX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/datalab) -"nMc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) +"nMh" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "nMk" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"nMP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"nMn" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/corsat/gamma/hangar) -"nNo" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"nMq" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"nMB" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"nME" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"nMJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"nMO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"nNq" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/residential) +"nMT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"nMX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/hangar) -"nNB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"nNs" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/gamma/hydroponics) -"nNW" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"nNu" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"nND" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/engineering/atmos) -"nOb" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/south) +"nNH" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"nNO" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"nNX" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"nNZ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"nOa" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/theta/airlock/west) +"nOf" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/security) +"nOw" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"nOI" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"nOV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/omega/checkpoint) -"nOj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"nOZ" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"nPs" = ( +/obj/item/storage/box/monkeycubes, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/containment) +"nPt" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"nPC" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/airlock/control) +"nPF" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"nPI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) -"nOH" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"nPY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/omega/complex) -"nOP" = ( -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"nQc" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"nQm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/corsat/sigma/southeast/dataoffice) -"nQB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/south/id) +"nQo" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Subject den"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"nQv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"nQy" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/sigma/dorms) -"nQZ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"nSb" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"nSm" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/barricade/handrail{ + layer = 3 }, -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"nQF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay) +"nQL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"nQN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/area/corsat/gamma/residential/west) -"nSA" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"nQW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"nRe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Reactor Core"; + req_one_access_txt = "102" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"nRi" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome/scrapyard) +"nRl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/hangar) -"nSC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"nRr" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "12" }, -/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"nRs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"nRv" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"nRC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner, +/area/corsat/gamma/residential/east) +"nRD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"nSL" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"nRQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/security) -"nSP" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"nSj" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"nSk" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"nSq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"nSr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Airlock Control Office"; + req_access_txt = "102" }, -/area/corsat/sigma/hangar/checkpoint) -"nSV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/south) +"nSt" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 }, -/area/corsat/gamma/rnr) -"nTb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"nSu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"nTg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/analyzer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/machinery/optable, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"nSw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"nSB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"nSF" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth) +"nSH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"nSS" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) +"nSW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"nTi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"nTq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) "nTx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"nTz" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/corsat{ - icon_state = "plate" +"nTA" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/area/corsat/gamma/foyer) -"nTO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Arcade" +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"nUw" = ( +/obj/structure/machinery/door/window/southleft{ + dir = 8; + layer = 2.8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/machinery/shower{ + dir = 1 }, -/area/corsat/gamma/rnr/arcade) -"nUa" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"nUO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"nUT" = ( +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"nVb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"nVv" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"nVx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "CORSAT Library"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"nVP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"nVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"nWb" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"nWh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/snack_bowl, +/turf/open/floor/wood, +/area/corsat/gamma/residential/east) +"nWp" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/sigma/cargo) +"nWv" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"nWz" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"nWZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/south) +"nXb" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/security) +"nXe" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"nXh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"nUd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"nUg" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"nXm" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hangar/security) +"nXw" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"nUi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/control) -"nUs" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "lightplate" + network = list("theta") }, -/area/corsat/gamma/biodome/toxins) -"nUz" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/theta/airlock/control) +"nXB" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"nXP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"nXS" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"nYk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"nYq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/airlock/north) +"nYx" = ( +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/item/explosive/mine/pmc, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" }, -/area/corsat/gamma/hallwaysouth) -"nUU" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"nYz" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"nYK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"nYQ" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar) +"nZa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"nZb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/sigma/hangar/checkpoint) -"nWh" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/snack_bowl, -/turf/open/floor/wood, -/area/corsat/gamma/residential/east) -"nWr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"nZq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/lavatory) -"nWV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"nZG" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"nZR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south/offices) -"nXj" = ( +/turf/open/ice, +/area/corsat/gamma/biodome) +"nZT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"oao" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/southeast/generator) -"nXo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"oav" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"oaK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"oaM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"oaO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"oaZ" = ( +/obj/structure/platform{ + dir = 1 }, -/area/corsat/gamma/hangar/arrivals) -"nXu" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/platform{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"nXv" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"obg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "bluegreycorner" + name = "Medical Lobby"; + req_one_access = null }, -/area/corsat/sigma/south/offices) -"nXD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"obp" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"obE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/corsat/gamma/hangar/cargo) -"nXY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/dorms) -"nYn" = ( -/obj/structure/bed/chair/office/light{ +"obJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"obK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"obS" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/omega/control) +"obZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/area/corsat/gamma/airlock/control) -"nYO" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ocd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("sigma") }, -/area/corsat/gamma/sigmaremote) -"nYP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/id) +"ocj" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"ocB" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaEastE"; + name = "Theta East Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/east) +"ocI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/area/corsat/theta/airlock/west) -"nZB" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"ocO" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"ocR" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/cargo) -"nZN" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/north) -"nZR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/ice, -/area/corsat/gamma/biodome) -"oaa" = ( +"ocS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay) -"oay" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"ocV" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/corsat/sigma/biodome/gunrange) +"ocW" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "red" + network = list("gamma") }, -/area/corsat/omega/airlocknorth) -"oaE" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"ocX" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/southeast/datamaint) +"odk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"odp" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/hangar) +"odB" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "3" }, -/area/corsat/omega/cargo) -"oaF" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"odJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleport Control"; + req_one_access_txt = "101" }, -/area/corsat/gamma/medbay) -"oaV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/hallways) -"obd" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"odX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "101" }, -/area/corsat/gamma/biodome/complex) -"obz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"odY" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"oeb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"oek" = ( +/obj/structure/platform{ + density = 0; dir = 1; - icon_state = "purplewhite" + icon_state = "platform_deco" }, -/area/corsat/gamma/sigmaremote) -"obW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"oeA" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" + name = "Identification Desk" }, -/area/corsat/gamma/cargo/disposal) -"ocD" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Identification Desk" - }, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Identification Desk" + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "SigmaHangarC-S"; + id = "SigmaIDSC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar/security) -"ocT" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"oeE" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oeF" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"oeI" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/omega/complex) -"odm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) -"odC" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" +"oeL" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"ofa" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/area/corsat/sigma/north) -"odN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"ofi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"ofl" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/south) -"odW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"ofp" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/sigma/southeast/dataoffice) +"ofz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" }, -/area/corsat/gamma/sigmaremote) -"ofq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ofA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/area/corsat/sigma/hangar/checkpoint) -"ofP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"ofG" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "white" + health = 80 }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"ofV" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"oga" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Baths" + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) "oge" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"ohe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" +"ogn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"ogz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/southeast) -"ohV" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"ogC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"ogN" = ( +/obj/item/paper/crumpled, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"ogW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"ogZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/engineering/atmos) -"oia" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"ohb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"ohc" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/theta/airlock/east) +"ohu" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"ohy" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"ohB" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 1 }, -/area/corsat/gamma/biodome/complex) -"ois" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/theta/airlock/control) +"ohD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"ohH" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/north) +"ohY" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"oib" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"oii" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/airlock/control) +"oij" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"oin" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 4 }, -/area/corsat/sigma/south) +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"oit" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/checkpoint) "oiu" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/corsat, /area/corsat/sigma/south/engineering) -"oiE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"oiI" = ( +"oiK" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"oje" = ( +"oiW" = ( +/turf/open/floor/carpet6_2/west, +/area/corsat/omega/offices) +"ojC" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"okg" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"okw" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/id) +"okF" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, -/area/corsat/omega/hallways) -"ojN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"okM" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"oks" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"okE" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/corsat/sigma/south) +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) "okT" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -52262,510 +28127,809 @@ }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"olm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("theta") - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"olB" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/sigmaremote) -"olD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"olX" = ( +"okZ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "omega" +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"olq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/area/corsat/omega/hallways) +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/airlock/control) +"olw" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) "olY" = ( /obj/effect/alien/weeds/node, /obj/effect/landmark/xeno_spawn, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"ome" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +"omf" = ( +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/target, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" }, -/area/corsat/gamma/residential/west) -"omw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"omt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"omF" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/flightcontrol) -"omL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"omG" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"omX" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/dorms) +"onf" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) "ong" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"onz" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/corsat{ - icon_state = "plate" +"onj" = ( +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"onn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/gamma/biodome/complex) -"onY" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"onp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"oob" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"onw" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/corsat/gamma/sigmaremote) -"ooX" = ( -/obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"opf" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, -/area/corsat/theta/biodome/complex) -"opi" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, -/area/corsat/sigma/hangar/monorail) -"opl" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"onC" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"onT" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/residential) +"ooc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"ood" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"ooq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"oot" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"ooX" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/offices) -"opo" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"opm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Robotics Workshop"; + req_one_access_txt = "102" }, -/area/corsat/sigma/cargo) -"opH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"opn" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"opC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"opF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"opN" = ( +/obj/structure/computerframe, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"opQ" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;106;102" }, -/area/corsat/gamma/residential/east) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "opW" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars, /area/corsat/sigma/biodome) -"oqs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +"oqb" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"oqh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"oqj" = ( +/turf/open/floor/corsat/blue, +/area/corsat/theta/airlock/control) +"oql" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/hangar) -"oqz" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/administration) +"oqo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + req_access_txt = "201" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/control) +"oqE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"oqL" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"oqN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/gamma/administration) -"oqB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/canteen) -"oqI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"oqR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"orz" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"ore" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/gunrange) +"orl" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/hallways) +"oro" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"orp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"orE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"orG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) "orI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/corsat/gamma/biodome) -"ost" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"osY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/gm/dirtgrassborder/east, -/area/corsat/theta/biodome) -"otC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/omega/hangar/security) -"otY" = ( -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential) -"ouk" = ( -/obj/structure/pipes/vents/pump{ +"orS" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"orV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/cargo) -"ouv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"osj" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/hangar/arrivals) +"osp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/complex) -"ouC" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"osr" = ( +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"osA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/organ/heart, +/obj/item/organ/kidneys, +/obj/item/organ/kidneys, +/obj/item/organ/liver, +/obj/item/organ/lungs, +/obj/item/organ/brain, +/obj/item/organ/eyes, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"osB" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"osC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"osD" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar/monorail) +"osQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/datalab) +"osY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/gm/dirtgrassborder/east, +/area/corsat/theta/biodome) +"otd" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"otk" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/corsat/gamma/biodome/toxins) -"ouM" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"ott" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/theta/airlock/control) -"ovc" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"otv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"otA" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"otT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/control) +"oue" = ( +/obj/structure/showcase{ + icon_state = "comm_server"; + name = "Communications Server" }, -/area/corsat/sigma/dorms) -"ovC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"ouF" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"ouG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"ouQ" = ( /obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/library) -"ovP" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/hangar/cargo) -"ovT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" + network = list("sigma") }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"ova" = ( +/turf/open/floor/corsat/redcorner/west, /area/corsat/theta/airlock/west/id) -"owL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/complex) -"owP" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" +"ovg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/biodome) -"oxk" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"ovn" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/closet/secure_closet/security_empty{ + name = "Warden's Locker" }, -/area/corsat/sigma/southeast/telecomm) -"oxr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/head/beret/sec/warden, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"ovr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"ovB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"ovG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/north) -"oxL" = ( +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"ovU" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"owh" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"owj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"oyu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"owv" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "24" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"owy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"owN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Bar" }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/rnr/bar) -"oyA" = ( +"owR" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/obj/structure/platform{ + dir = 4; + layer = 2 }, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"oyJ" = ( -/turf/open/floor/corsat{ +"owS" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 32 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"oxb" = ( +/obj/item/trash/burger, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"oxd" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Administration Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - icon_state = "whitecorner" + name = "Administration Desk"; + req_access_txt = "104" }, -/area/corsat/gamma/residential/east) -"ozo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" }, -/area/corsat/theta/airlock/control) -"ozp" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ - id = "GammaSouthN"; - name = "Gamma South Airlock" +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"oxg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"oxi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"oxG" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/chemistry) +"oxM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/south) -"ozH" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" +"oyD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"oyE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"oyP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"ozh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"ozr" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/west) +"ozs" = ( +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/southeast/datalab) +"ozC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"ozF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south/id) "ozR" = ( /turf/open/space/transit/east/shuttlespace_ew10, /area/corsat/sigma/hangar/monorail/railcart_transit) -"ozY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"ozW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"ozX" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"oAj" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purple, +/area/corsat/gamma/biodome/complex) +"oAl" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"oAm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "Omega Dome Control" }, -/area/corsat/gamma/biodome/complex) -"oAa" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/cargo) -"oBe" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"oAs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SigmaBioAtmos"; + name = "Access Shutter" }, -/area/corsat/sigma/southeast/datalab) -"oBq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"oAt" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/corsat/sigma/biodome/gunrange) -"oBX" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"oAS" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/arrivals) +"oBb" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"oCa" = ( -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"oBi" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"oBm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/sigma/south/engineering) -"oCp" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"oBv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/corsat/gamma/biodome/complex) -"oCz" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/research/containment/corner/east, +/area/corsat/gamma/sigmaremote) +"oBG" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"oBK" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"oBP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/rnr) +"oBR" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"oCi" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"oCv" = ( +/obj/structure/platform{ + density = 0; dir = 4; - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"oDt" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" + icon_state = "platform_deco" }, +/turf/open/floor/corsat/whitecorner/north, /area/corsat/gamma/residential) -"oDD" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"oCD" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/area/corsat/omega/hangar) -"oEa" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"oCE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"oCI" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/hangar/arrivals) +"oCK" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"oDj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/freezer) -"oEu" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"oDk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/checkpoint) -"oEE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"oDo" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"oDv" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/checkpoint) +"oDz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"oDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"oDO" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/mp27, +/obj/item/weapon/gun/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"oDT" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"oDX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"oEr" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/omega/hangar/office) +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"oEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) +"oEA" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/cargo) +"oEG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/generator) "oEK" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"oEU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/binoculars, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +"oET" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"oFa" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"oFe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"oFp" = ( +/obj/structure/platform{ + density = 0; dir = 1; - icon_state = "purple" + icon_state = "platform_deco" }, -/area/corsat/gamma/biodome/complex) -"oFq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"oFs" = ( +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"oFH" = ( +/obj/item/paper, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"oFI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"oFP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oFQ" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/residential/lounge) +"oFR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay) +"oFS" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) "oFU" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"oGe" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"oGf" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "ThetaWestE"; - name = "Theta West Airlock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/west) "oGz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -52776,298 +28940,344 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"oHs" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/sigma/cargo) -"oHI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo/lobby) -"oHP" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"oHT" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"oGK" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/southeast/generator) +"oGN" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydrowest) +"oGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/airlock/west) -"oHU" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"oHc" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"oHs" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/sigma/cargo) +"oHx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/omega/hangar) -"oIf" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"oHM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "23" }, -/area/corsat/gamma/residential) -"oIx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"oHQ" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"oIk" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"oIu" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/omega/hangar/office) -"oJb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"oII" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"oIP" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"oIW" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"oIX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"oJc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) "oJn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"oJB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"oJT" = ( -/obj/item/stack/sheet/metal, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"oJV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"oKg" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +"oJo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"oJv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/engineering/core) -"oKh" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"oJC" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "ThetaWestW"; + name = "Theta West Airlock" }, -/area/corsat/gamma/hangar/security) -"oKk" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"oJK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/area/corsat/theta/airlock/west/id) -"oKp" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"oJS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/hallways) -"oKr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, -/area/corsat/theta/biodome/complex) -"oKA" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, -/area/corsat/omega/hallways) -"oKQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oJU" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hangar) "oLe" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) +"oLf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/airlock/control) "oLg" = ( /obj/effect/alien/weeds/node, /turf/open/floor/almayer/research/containment/floor2, /area/corsat/inaccessible) -"oLA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"oLX" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "RemoteGateO"; - name = "Gate Shutters"; - use_power = 0 +"oLj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"oLr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"oMp" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"oLu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/area/corsat/omega/airlocknorth/id) -"oMG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"oLE" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"oLG" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"oLI" = ( +/obj/structure/machinery/conveyor_switch, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"oLJ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "21" }, -/area/corsat/omega/airlocknorth) -"oMZ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"oLK" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"oLM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/chef/classic, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/omega/complex) -"oNc" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"oLW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) -"oNI" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"oMm" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"oMn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"oMq" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) +"oMw" = ( +/obj/structure/prop/almayer/cannon_cables{ + name = "\improper Cables" }, -/area/corsat/omega/control) -"oNL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") +/obj/structure/cryofeed/right{ + color = "silver"; + desc = "A bewildering tangle of machinery and pipes."; + name = "\improper coolant feed" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"oMF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Quartermaster's Office"; + req_one_access_txt = "100" }, -/area/corsat/omega/hangar/office) -"oNR" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"oMJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"oNU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/theta/biodome/complex) +"oMM" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"oMU" = ( +/obj/effect/landmark/yautja_teleport, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/corsat/sigma/biodome/scrapyard) -"oOg" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oMW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/area/corsat/gamma/medbay/morgue) -"oOj" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/gamma/canteen) -"oOk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"oOr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" + id = "SigmaHCargoC"; + name = "Security Shutters" }, -/area/corsat/gamma/residential/showers) -"oOz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"oNt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"oNu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/area/corsat/sigma/south/complex) -"oOH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/security) +"oNC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"oOL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"oPa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"oNJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/residential) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"oNN" = ( +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"oOI" = ( +/obj/structure/bed/chair/comfy, +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"oOT" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/foyer) +"oOY" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/north) +"oPi" = ( +/obj/structure/surface/rack, +/obj/item/device/transfer_valve, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"oPj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west) "oPq" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"oPu" = ( +"oPE" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"oPI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"oPC" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"oPM" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/dorms) +"oPT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"oQp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"oQs" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/omega/security) -"oQf" = ( -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"oQC" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/sigma/dorms) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"oQD" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) "oQF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -53075,103 +29285,209 @@ }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"oQO" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +"oQH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaCheckpointC"; + name = "Security Shutters"; + pixel_x = 7; + use_power = 0 }, -/area/corsat/gamma/biodome/virology) -"oQR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"oQJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) -"oQY" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"oQN" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/arrivals) +"oQW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"oRo" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"oRe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"oRv" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"oRx" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/north/id) +"oRA" = ( +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/airlock/control) +"oRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/foyer) -"oRJ" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/control) +"oRL" = ( +/turf/open/floor/carpet11_12/west, +/area/corsat/omega/offices) +"oRM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" + }, +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"oRN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 8 }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"oRT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"oRZ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"oSa" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"oSw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/area/corsat/sigma/hangar/security) -"oTq" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"oSy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"oSA" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"oSU" = ( +/obj/structure/machinery/computer/rdservercontrol, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"oSV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"oTn" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"oTp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"oTC" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"oTH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/sigma/southeast/dataoffice) -"oTs" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"oTL" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datamaint) +"oTO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"oTS" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/engineering) -"oTw" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Research Desk" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"oTT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"oTE" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"oUa" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"oUd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"oUz" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"oUq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("omega") }, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) "oUJ" = ( /obj/structure/flora/jungle/vines/light_1, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"oVe" = ( -/obj/structure/machinery/light{ - dir = 1 +"oUX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"oUY" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "GammaControl"; + name = "Observation Shutters"; + pixel_y = 5; + use_power = 0 }, -/area/corsat/gamma/rnr) -"oVj" = ( -/obj/structure/machinery/computer/general_air_control/large_tank_control, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"oVi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"oVt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Auditorium" }, -/area/corsat/gamma/biodome/toxins) -"oVr" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"oVD" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) "oVF" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/simple/hidden/green{ @@ -53179,144 +29495,227 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"oVM" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/arrivals) -"oVO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/corsat/theta/airlock/west/id) -"oVT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"oWg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +"oVW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/area/corsat/sigma/hangar) -"oXl" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"oWb" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/corsat/gamma/medbay/morgue) -"oXK" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/engineering) +"oWe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"oWk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/medbay/morgue) -"oXL" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"oWu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"oWx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"oXZ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Holding Cell 1"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oWX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"oWY" = ( +/turf/open/floor/corsat/brown/northwest, +/area/corsat/omega/cargo) +"oXc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"oXd" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"oXs" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hangar/office) -"oYC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"oXu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"oXB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"oYH" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"oYP" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/area/corsat/gamma/residential/east) -"oYY" = ( -/turf/open/floor/corsat{ - icon_state = "theta" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Xenobiology"; + req_access_txt = "103" }, -/area/corsat/gamma/hallwaysouth) -"oZj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"oXG" = ( +/turf/open/mars_cave/mars_cave_13, +/area/corsat/sigma/biodome/scrapyard) +"oXP" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/gunrange) +"oXW" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/area/corsat/gamma/airlock/south) -"oZv" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"oYb" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"oYg" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"oYi" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"oYj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/rnr) -"oZx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/window/reinforced, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"oYk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"oZD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"oYm" = ( +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"oYs" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "23" }, -/area/corsat/omega/offices) -"oZH" = ( +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"oYy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"oYz" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"oYA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"oYB" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"oYD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/corsat/sigma/cafe) +"oYI" = ( +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"oYJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/area/corsat/omega/airlocknorth) -"oZQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"oZg" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"oZk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"oZO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"oZP" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"oZT" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "oZW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) +"oZY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Hangar Office" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"paa" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"paf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "6" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"pan" = ( +/obj/item/paper/crumpled, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pat" = ( +/obj/structure/largecrate/supply/ammo/m39/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"pav" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) "paH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -53324,392 +29723,675 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"pbS" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south) -"pbX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/syringes, -/turf/open/floor/corsat{ - icon_state = "lightplate" +"paM" = ( +/obj/structure/safe, +/obj/item/device/locator, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"paU" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"pbj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/biodome/toxins) -"pcb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/airlock/north) +"pbk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red, +/area/corsat/omega/airlocknorth) +"pbq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/biodome/complex) -"pcu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"pbu" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/residential) +"pbH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"pbK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/sigma/airlock/control) -"pcK" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "redcorner" - }, -/area/corsat/omega/checkpoint) -"pdg" = ( -/turf/open/space/transit/east/shuttlespace_ew10, -/area/space) -"pdh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" + network = list("sigma") }, -/area/corsat/gamma/hallwaysouth) -"pdk" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"pbL" = ( +/obj/vehicle/train/cargo/trolley, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pbP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/theta/airlock/west) -"pdw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/control) +"pbT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"pcf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/sigma/south/engineering) -"pdR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"pcr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"pcx" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"pcy" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"pcE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; - name = "Maintainance"; - req_one_access = null + name = "Atmospherics"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"pcL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Food Storage"; + req_one_access = null }, -/area/corsat/gamma/residential/researcher) -"pdW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"pcV" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"pdf" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/area/corsat/gamma/residential) -"peh" = ( -/obj/structure/surface/table, -/obj/item/book, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"pdg" = ( +/turf/open/space/transit/east/shuttlespace_ew10, +/area/space) +"pdD" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Xenobiology Reception Desk"; + req_one_access_txt = "103" }, -/area/corsat/gamma/residential/west) -"pfk" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"pdH" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/area/corsat/gamma/residential/west) -"pfz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/sigmaremote) +"pdI" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/southeast) +"pdT" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"pdX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/sigma/hangar/monorail) -"pfG" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"pee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"pej" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/monorail) -"pfQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"pek" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"pem" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"per" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/residential/lounge) +"pet" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"pex" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/southeast) -"pge" = ( -/obj/structure/stairs, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"peC" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydroeast) +"peD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"pfb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"pgf" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/security) +"pff" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "24" }, -/area/corsat/sigma/dorms) -"pgn" = ( -/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"pfo" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck/uno, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"pfp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/atmos) +"pfy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"pgC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"pfC" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"pfE" = ( +/obj/structure/target/syndicate, +/turf/open/mars_cave/mars_cave_16, +/area/corsat/sigma/biodome/gunrange) +"pfJ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"pfR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"pgH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"pfY" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"pgI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) "pgO" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"pgV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/airlock/east) -"pgX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"phK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/sigmaremote) -"phM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/omega/offices) -"phN" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"pgS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaEastID2"; + name = "Security Shutters"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/east/id) +"pgW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"phX" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"pha" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"phc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"phe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"phh" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"phj" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "purple" + dir = 4; + network = list("gamma") }, -/area/corsat/sigma/south) -"pir" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"phw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"phB" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"phE" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/airlock/north) +"pih" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"pij" = ( +/turf/open/floor/corsat/purple/west, +/area/corsat/gamma/biodome/complex) +"pim" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"piI" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/southeast/dataoffice) +"pis" = ( +/obj/structure/machinery/light, /obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/clipboard, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"piA" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) "piZ" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/gamma/residential/researcher) -"pji" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +"pje" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"pjp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"pju" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"pjP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"pjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"pjC" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"pjF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"pjG" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) +"pjY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) "pkc" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"pkh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"pkg" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/corsat/omega/hallways) -"pkP" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/corsat/sigma/south) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"pkM" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"pkU" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" + }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"pla" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"plb" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"pli" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/complex) +"plm" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"plp" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) +"plz" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/sigma/south/complex) "plI" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/airlock/north) -"plM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/corsat/sigma/southeast/datalab) +"plL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/drinkingglass, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) "plV" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"pmf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/airlock/control) -"pnc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"pmq" = ( +/obj/structure/surface/table, +/obj/item/folder, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/security) +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"pmN" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"png" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"pnq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) "pnt" = ( /obj/structure/xenoautopsy/tank/alien, /turf/open/floor/corsat, /area/corsat/omega/complex) +"pnJ" = ( +/obj/structure/platform{ + density = 0; + dir = 1; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) "pnQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"pov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"ppi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"ppr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"pnS" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"ppy" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"pnT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/brown/southwest, +/area/corsat/omega/cargo) +"pnV" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"poc" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"poi" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 }, -/area/corsat/gamma/residential/researcher) -"ppP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"pol" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"poD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Teleporter Power Room"; + req_access_txt = "103"; + req_one_access = null }, -/turf/open/auto_turf/snow/layer1, -/area/corsat/gamma/biodome) -"pqt" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"poF" = ( /obj/structure/machinery/camera/autoname{ dir = 8; - network = list("theta") + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"prw" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"poN" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"poP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"poW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"ppg" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/hallwaysouth) +"ppl" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "redcorner" + network = list("omega") }, -/area/corsat/theta/airlock/west/id) -"prB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"ppo" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/south) +"ppJ" = ( +/obj/structure/sign/safety/biolab{ + pixel_y = -32 }, -/area/corsat/gamma/cargo) -"prF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydroeast) +"ppP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/auto_turf/snow/layer1, +/area/corsat/gamma/biodome) +"ppU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "GammaSouthID"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/south/id) +"pqr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"pqu" = ( +/obj/item/cell/crap, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"pqz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/gamma/residential/west) -"prG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"pqF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/handset, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"pro" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/area/corsat/gamma/hallwaysouth) +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"prp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"prE" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) "prI" = ( /obj/structure/pipes/vents/pump/on, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"prP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"prZ" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/omega/hallways) +"psj" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "SigmaSouthS"; + name = "Sigma South Airlock" + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"psq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"psw" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"psx" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"psy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"psM" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"psT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) "psV" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/camera/autoname{ @@ -53717,56 +30399,75 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"ptq" = ( -/obj/item/paper/crumpled, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +"pta" = ( +/obj/structure/machinery/computer/rdconsole, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/sigma/south/complex) -"pue" = ( +"ptc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"pti" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"ptk" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/complex) +"ptv" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/hallwaysouth) +"ptw" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast) -"puh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"puF" = ( -/turf/open/floor/corsat{ dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/foyer) -"pvh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 + network = list("theta") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"pty" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/residential) +"ptM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" }, -/area/corsat/gamma/residential/west) -"pvo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/telecomm) +"pub" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"pul" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/engineering) +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"puo" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"puE" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hangar/arrivals) +"pvc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/armory) +"pvz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) "pvA" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -53774,14 +30475,30 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"pwd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"pvE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/hangar/flightcontrol) +"pvQ" = ( +/obj/structure/machinery/bioprinter{ + req_access_txt = "100" }, -/area/corsat/gamma/engineering) +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"pwe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"pwf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/airlock/north/id) "pwp" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 1; @@ -53789,234 +30506,424 @@ }, /turf/closed/ice_rock/corners, /area/corsat/gamma/biodome) -"pws" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/corsat/omega/cargo) -"pwu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"pwO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"pxj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "yellow" +"pwF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/south/robotics) -"pxl" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pwH" = ( +/turf/open/floor/corsat/darkgreen/northeast, +/area/corsat/gamma/hangar/monorail) +"pwS" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/southeast/generator) +"pwU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"pxm" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/scrapyard) +"pxs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/foyer) -"pxH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" + name = "Weapons Development"; + req_one_access_txt = "103" }, -/obj/structure/platform{ - dir = 8; - layer = 2.8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"pxE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"pxG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"pxJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth) +"pxK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"pxR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/north) +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/id) "pya" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"pyL" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +"pyg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"pyk" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay) +"pyq" = ( +/obj/structure/machinery/door/window/brigdoor/southleft{ + id = "CORSAT Sec 2"; + name = "Cell 2" }, -/area/corsat/omega/hangar/security) -"pzr" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"pyv" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/omega/hangar/security) -"pzH" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "SigmaWestD"; - name = "Sigma Dome Airlock" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"pyA" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"pyG" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/gamma/hallwaysouth) +"pyI" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/area/corsat/sigma/airlock/control) -"pAo" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"pyW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/cargo) -"pAt" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"pzb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "redcorner" + name = "Omega Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/gamma/airlock/south/id) -"pAB" = ( -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door/window/southleft, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"pzd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"pAM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"pBm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "ID Checkpoint"; - req_access_txt = "101" +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"pzw" = ( +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"pzy" = ( +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/residential) +"pzU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"pAe" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"pAx" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"pAy" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"pAE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"pAZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"pBe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/south/id) -"pBJ" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"pBg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"pBj" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"pBs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/analyzer, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"pBB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) +"pBC" = ( +/turf/open/floor/corsat/browncorner/west, /area/corsat/gamma/cargo) -"pCh" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"pBF" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/gamma/residential) +"pBM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"pCi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"pBY" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/area/corsat/sigma/south/robotics) -"pCT" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/gamma/residential/east) -"pCW" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"pCm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"pCy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "bluegrey" + network = list("omega") }, -/area/corsat/sigma/hangar/office) -"pDt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"pCA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"pCE" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"pCJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/corsat/sigma/dorms) -"pDB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"pCK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/area/corsat/omega/offices) -"pDP" = ( -/obj/structure/closet/secure_closet/engineering_personal{ - req_access_txt = "102" +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"pCR" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"pCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"pDm" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/sigma/southeast/generator) -"pDR" = ( -/turf/closed/wall/r_wall/biodome, -/area/corsat/omega/biodome) -"pEe" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"pDp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"pDv" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"pDD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/blue, +/area/corsat/omega/control) +"pDJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/east) -"pEj" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"pDM" = ( +/obj/structure/machinery/computer/skills{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"pEm" = ( /obj/structure/surface/table/woodentable/fancy, -/obj/item/paper, -/turf/open/floor{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"pDQ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Airlock Control" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"pDR" = ( +/turf/closed/wall/r_wall/biodome, +/area/corsat/omega/biodome) +"pDZ" = ( +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"pEa" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"pEi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"pEn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"pEu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 8; - icon_state = "carpet15-15" + network = list("omega") + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"pEN" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/bluegrey/north, /area/corsat/omega/offices) -"pEQ" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +"pEU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"pEV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/corsat/omega/hangar/office) -"pEX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"pFE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/airlocknorth) +"pFF" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"pFJ" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/hangar/arrivals) +"pFS" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"pFV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/area/corsat/gamma/residential/researcher) -"pFe" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"pFY" = ( +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"pGB" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/omega/hangar) -"pFX" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"pGU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"pHr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"pHX" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar) +"pIc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "darkgreen" + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/sigma/hangar/arrivals) -"pGp" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"pIg" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"pIh" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) "pIj" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, @@ -54025,33 +30932,60 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) -"pIU" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/omega/hangar) -"pJa" = ( +"pIF" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"pIJ" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"pJn" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" + dir = 4 }, -/area/corsat/sigma/southeast/datalab) -"pJo" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"pIN" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"pIR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"pJb" = ( +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/southeast) +"pJc" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"pJd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"pJg" = ( +/obj/structure/curtain/shower, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"pJi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"pJp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"pJB" = ( +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"pJC" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"pJE" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/checkpoint) "pJP" = ( /obj/structure/showcase{ icon_state = "processor"; @@ -54062,45 +30996,59 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"pJY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"pKg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ +"pKj" = ( +/obj/structure/machinery/door/window/southleft{ dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"pKi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" + layer = 2.8 }, -/area/corsat/sigma/south/engineering) -"pLy" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"pKw" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"pKy" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/residential) +"pKI" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"pKM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Medical Bay"; + req_one_access = null }, -/area/corsat/gamma/biodome/toxins) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"pKU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"pKW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"pKZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/flashbang/cluster, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"pLh" = ( +/turf/open/floor/corsat/brown, +/area/corsat/gamma/hallwaysouth) +"pLw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) "pLO" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -54108,173 +31056,316 @@ id = "SigmaHangarC-S"; name = "Security Shutters" }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) -"pMh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"pMI" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/south) -"pMN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"pLP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/residential) -"pMU" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"pMf" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"pMx" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"pMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/corsat/gamma/sigmaremote) +"pMO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/gamma/hangar/flightcontrol) +"pMV" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/control) +"pNe" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"pNo" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast) +"pNs" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"pNB" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/hallwaysouth) -"pMZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"pNG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"pNN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/rd, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"pNR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"pNU" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"pNY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"pOc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"pOe" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"pOm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/sigma/hangar) -"pNa" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"pOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/foyer) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) "pOs" = ( /obj/structure/machinery/colony_floodlight{ dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"pPp" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +"pON" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/hallways) +"pOR" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"pOV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/autopsy_scanner, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"pPf" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"pPo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"pPr" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) "pPN" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"pPX" = ( -/obj/structure/machinery/light{ - dir = 1 +"pPS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"pPT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/chemistry) +"pQb" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "7" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"pQi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"pQo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/residential/west) -"pQt" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/southeast, +/area/corsat/sigma/dorms) +"pQy" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + dir = 1 }, -/area/corsat/omega/airlocknorth/id) -"pQA" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) +"pQN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security/cells) +"pQU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"pQX" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"pRc" = ( +/obj/structure/pipes/trinary/mixer{ dir = 4; - icon_state = "blue" + name = "Gas mixer N2/O2" }, -/area/corsat/gamma/hangar/arrivals) -"pQK" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering/atmos) +"pRf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "9" }, -/area/corsat/sigma/south/offices) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) "pRl" = ( /turf/open/floor/corsat, /area/corsat/omega/maint) -"pRE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_6" - }, -/area/corsat/sigma/biodome) -"pRX" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 +"pRo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"pRH" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, +/obj/item/organ/heart, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"pRI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, /area/corsat/sigma/south) -"pSb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +"pRL" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"pRM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"pRN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) -"pSc" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"pRR" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/residential/lounge) +"pRU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"pSf" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "25" }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"pSn" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) "pSo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"pSp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"pSu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"pSs" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"pSB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/theta/airlock/control) +"pSw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"pSE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/south/id) +"pSH" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast) +"pSK" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/residential) +"pSM" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/omega/cargo) +"pSS" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"pSX" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"pSY" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) "pSZ" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, @@ -54282,285 +31373,348 @@ "pTp" = ( /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"pTt" = ( +"pTv" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"pTD" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" - }, -/area/corsat/sigma/north) -"pUa" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"pUA" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/omega/offices) -"pUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"pVm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/residential/maint) -"pVo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_8" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"pTB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "delta_gamma"; + name = "Gamma Emergency Access"; + pixel_x = -5; + use_power = 0 }, -/area/corsat/sigma/biodome) -"pVr" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "delta_gamma2"; + name = "Checkpoint Gamma"; + pixel_x = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"pTF" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaHangarN"; + name = "Landing Bay Omega" }, -/area/corsat/gamma/biodome/toxins) -"pVD" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"pTO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"pVL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"pVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/omega/offices) -"pWc" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"pWj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"pTX" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"pWl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplecorner" +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/area/corsat/omega/hallways) -"pWr" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"pUw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"pUS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"pUU" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/checkpoint) +"pVe" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"pVi" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/airlocknorth) +"pVl" = ( +/obj/item/implant/death_alarm, +/obj/item/implant/death_alarm, +/obj/item/implant/tracking, +/obj/item/implant/tracking, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"pVy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hangar) +"pVE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"pVH" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/rnr) +"pVI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"pWe" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"pWp" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 3"; + req_one_access_txt = "103" }, -/area/corsat/gamma/medbay) -"pWE" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"pWz" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/airlock/control) +"pWB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"pWD" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - icon_state = "purplewhitecorner" + name = "Administration"; + req_access_txt = "106" }, -/area/corsat/sigma/south/complex) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "pWR" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) +"pWU" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/gunrange) +"pXe" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) "pXp" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) +"pXv" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast) "pXx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"pXU" = ( -/obj/structure/barricade/handrail{ - dir = 4 +"pXA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"pXE" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/hangar) +"pXI" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/core) +"pXK" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"pXM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"pXP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Canteen" }, -/area/corsat/gamma/hallwaysouth) -"pXY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"pXS" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"pYe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hangar/checkpoint) -"pYS" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/dataoffice) +"pYg" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/engineering) -"pYW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"pYj" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/north) +"pYm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/area/corsat/omega/complex) -"pZf" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "redcorner" + id = "SigmaHangarC"; + name = "Security Shutters" }, -/area/corsat/sigma/south) -"pZt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"pYt" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"pYP" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/flasher{ + pixel_y = 24 }, -/area/corsat/sigma/south/robotics) -"qaa" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"pYT" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" + dir = 8 }, -/area/corsat/gamma/residential/showers) -"qac" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"pZb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "white" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"pZn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"qaj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"pZo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/office) -"qaB" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"pZq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"qaG" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"pZs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/airlock/control) +"pZx" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/hallways) +"pZS" = ( +/obj/structure/sink{ dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"qaO" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"qaS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + pixel_x = 11 }, -/area/corsat/gamma/medbay/surgery) -"qaY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/item/trash/plate, +/obj/item/reagent_container/glass/rag{ + pixel_y = 10 }, -/area/corsat/gamma/sigmaremote) -"qba" = ( +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"pZU" = ( /obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential) -"qbc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"qbB" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/obj/effect/spawner/random/powercell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"pZZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/omega/offices) +"qag" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"qao" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/area/corsat/sigma/hangar/security) -"qbG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"qaF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_9, +/area/corsat/sigma/biodome) +"qaL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/theta/airlock/control) +"qaT" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "15" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"qbd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/hydrowest) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"qbf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qbL" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) "qbV" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -54568,8 +31722,25 @@ id = "SigmaHangarC-E"; name = "Security Shutters" }, -/turf/open/floor/plating, -/area/corsat/sigma/hangar/security) +/turf/open/floor/plating, +/area/corsat/sigma/hangar/security) +"qci" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"qcm" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/sigma/cargo) +"qcr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) "qcx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -54577,82 +31748,86 @@ }, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"qcR" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"qdK" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/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"; - pixel_x = 12; - pixel_y = 2 - }, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"qeg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/lobby) -"qeh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"qcz" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"qcQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/security) -"qeC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qdd" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"qdh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/dorms) -"qeE" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"qdl" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"qdm" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) +"qdw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qdV" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"qdY" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/omega/hallways) -"qeF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"qel" = ( +/obj/structure/surface/rack, +/obj/item/toy/plush/farwa, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/security) +"qer" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Xeno Autopsy"; + req_access_txt = "103" }, -/area/corsat/sigma/hangar/security) -"qeY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qeI" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/west, +/area/corsat/theta/airlock/control) +"qeK" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"qfl" = ( -/obj/structure/bed/nest, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"qeO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/control) +"qff" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/omega/biodome) +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) "qfp" = ( /obj/structure/window/framed/corsat, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -54662,662 +31837,852 @@ }, /turf/open/floor/plating, /area/corsat/omega/offices) -"qgg" = ( +"qfu" = ( /obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"qgl" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/airlocknorth) -"qgm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/gamma/hangar/arrivals) -"qgo" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"qgt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + network = list("sigma") }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"qfN" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"qfX" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "6" }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"qgf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"qgi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_13, /area/corsat/sigma/biodome) -"qgF" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" +"qgC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" }, -/area/corsat/omega/biodome) -"qgR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qgG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"qgH" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"qgJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"qgO" = ( +/obj/item/stool, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"qgT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"qhg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"qhi" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"qhn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/biodome/testgrounds) -"qhl" = ( -/obj/structure/bed, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qhp" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/security/cells) -"qhT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" +/turf/open/floor/carpet13_5/west, +/area/corsat/gamma/administration) +"qhG" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"qhQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential) +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"qhS" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"qia" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) "qig" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) -"qiw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"qiW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"qje" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay) -"qjf" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"qjG" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/prison/hangar_storage/research/shuttle) -"qjL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +"qiq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"qit" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) +"qiy" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"qiz" = ( +/turf/open/floor/corsat/brown/north, /area/corsat/omega/hallways) -"qkr" = ( +"qjn" = ( +/obj/structure/surface/rack, +/obj/item/evidencebag, +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/east/id) +"qjr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" + dir = 9 }, -/area/corsat/gamma/hangar/office) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"qjx" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth) +"qjC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"qjO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"qjZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) "qkt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/ice, /area/corsat/gamma/biodome) -"qkw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar) -"qkz" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/corsat/sigma/cargo) -"qkD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/hallways) -"qkJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"qkL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Pool" - }, +"qld" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"qkW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"qlh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"qlt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhite" + dir = 9 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) "qlx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"qlF" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/security) -"qlI" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"qmD" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +"qlA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"qlK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/southeast/dataoffice) -"qmT" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"qmk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"qmm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qmH" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/residential) +"qmL" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/biodome/complex) +"qmN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/biodome/virology) -"qnb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/hangar/office) +"qmO" = ( +/obj/structure/bed/nest, +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"qmU" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"qmY" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) +"qnr" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"qnu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"qnC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/sigma/south/security) -"qnw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/checkpoint) +"qnM" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "21" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"qnU" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/theta/airlock/west/id) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"qnY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) +"qnZ" = ( +/turf/open/floor/corsat/purple, +/area/corsat/omega/complex) "qoh" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"qoo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) "qoq" = ( /obj/structure/coatrack, /turf/open/floor/wood, /area/corsat/gamma/administration) -"qou" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"qoN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"qoy" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"qoz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/gamma/residential/west) -"qpo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"qpg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) -"qpB" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"qpj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/complex) +"qpD" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"qpO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/area/corsat/gamma/residential/west) -"qpC" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qpS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"qpU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/theta/biodome/complex) -"qqg" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"qpW" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/shuttle/black, +/area/corsat/gamma/hangar/monorail/railcart) +"qqe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"qqi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"qqj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qqt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"qqF" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; + dir = 1; network = list("sigma") }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"qqu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/office) -"qqI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/hangar/flightcontrol) +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/canteen) +"qqJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) "qqK" = ( /obj/structure/window/framed/corsat/security, /turf/open/floor/plating, /area/corsat/omega/airlocknorth) -"qqW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"qqL" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/dorms) +"qqT" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"qqU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"qri" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) -"qqY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/hangar) +"qro" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"qrx" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"qrC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"qrD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/theta/airlock/control) -"qsg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qrP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/theta/airlock/east) +"qrT" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/omega/control) +"qsb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Senior Engineer's Office"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/offices) -"qsC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "gamma" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qsj" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) -"qsT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_18" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"qsl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/biodome) -"qsW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"qsF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"qsN" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + dir = 1; + name = "Cargo Bay"; + req_one_access_txt = "100" }, -/area/corsat/omega/security) -"qsY" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"qsQ" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"qsX" = ( +/obj/structure/platform{ + density = 0; + dir = 8; + icon_state = "platform_deco" }, -/area/corsat/gamma/hangar/flightcontrol) +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) "qtf" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"qti" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"qtm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/corsat/sigma/biodome) -"qtI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"qtS" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"qtT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/south) +"qtW" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qtX" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"que" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"quf" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/omega/hangar) +"qug" = ( +/turf/open/floor/corsat/purplewhitecorner/north, /area/corsat/theta/biodome/complex) -"qtZ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) +"qum" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/hangar/office) +"quD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) "quG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"quI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/canteen) -"qvz" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, -/area/prison/hangar_storage/research/shuttle) -"qvB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"qvD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"quP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"qvf" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/dorms) +"qvi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/hangar) -"qwr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"qvk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/gamma/residential/west) -"qww" = ( -/obj/structure/surface/table, -/obj/item/folder, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"qvs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"qvE" = ( /obj/structure/platform{ + density = 0; dir = 4; - layer = 2 + icon_state = "platform_deco" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qvN" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "tan" + name = "Research Complex"; + req_one_access_txt = "101" }, -/area/corsat/gamma/residential/west) -"qwM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"qvO" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/area/corsat/omega/complex) -"qwO" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"qvV" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"qwb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + req_one_access_txt = "201;104" + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"qwz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda{ + dir = 8 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"qwE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"qwN" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/datalab) +"qwQ" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"qxa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"qxf" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/gamma/biodome/complex) +"qxm" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "tan" + name = "Reception Desk"; + req_one_access_txt = "103" }, -/area/corsat/gamma/residential/west) -"qxi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"qxr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) -"qxB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/newspaper, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/checkpoint) -"qxR" = ( +"qxu" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" +/turf/open/floor/corsat/brown/southeast, +/area/corsat/gamma/cargo) +"qxL" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) -"qyg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +"qyc" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/corsat/gamma/rnr) -"qys" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/mirror{ + pixel_y = 24 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"qyf" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"qyv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"qyy" = ( +/obj/structure/machinery/door_control{ + id = "ThetaBioAtmos"; + name = "Access Shutters"; + pixel_x = 24 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"qyA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/arrivals) -"qyO" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/obj/item/paper_bin, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"qyG" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"qyM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"qzo" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"qyN" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"qyQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"qyZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qza" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"qzf" = ( +/obj/structure/platform{ + dir = 8 }, -/area/corsat/omega/security) -"qzy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/obj/structure/machinery/mech_bay_recharge_port{ + pixel_x = 8 }, -/area/corsat/gamma/airlock/control) -"qAg" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"qzg" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/computer/cameras{ + network = list("theta") }, -/area/corsat/sigma/south/security) -"qAk" = ( -/turf/open/floor/corsat{ +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"qzt" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"qzz" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"qzB" = ( +/turf/open/floor/plating/warnplate, +/area/corsat/omega/hangar) +"qzU" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"qzV" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/sigma/dorms) +"qAb" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "yellow" + network = list("omega") }, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth/id) +"qAf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) "qAl" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/biodome) -"qAs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +"qAn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"qAK" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"qAG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"qAU" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"qBb" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/light_bulb/tube/large, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"qBA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"qBP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"qAH" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"qBk" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/corsat/sigma/hangar) -"qBJ" = ( -/turf/open/floor/corsat{ - icon_state = "green" - }, -/area/corsat/gamma/medbay/morgue) -"qBZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"qCa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"qCi" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"qCg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qCw" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/dorms) +"qCL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/gamma/medbay/lobby) -"qCU" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/sigma/dorms) +"qCR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"qDd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"qDr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/hangar) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "qDx" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"qEe" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" - }, -/area/corsat/sigma/south) -"qEk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/monorail) -"qEu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"qEw" = ( -/obj/structure/bed/chair/office/light{ +"qDR" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"qDW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"qEC" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering/core) +"qEE" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) "qEG" = ( /obj/structure/machinery/camera/autoname{ dir = 8; @@ -55325,135 +32690,210 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"qFp" = ( -/obj/structure/bed/chair/office/light{ +"qEK" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/area/corsat/sigma/south/offices) +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/toxins) +"qEL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"qEV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"qEX" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/wirecutters, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"qFb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qFi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) "qFq" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"qFA" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/southeast/dataoffice) -"qFJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +"qFs" = ( +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"qFx" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"qFB" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"qFD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/north) -"qFK" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/mars_cave/mars_dirt_4, +/area/corsat/sigma/biodome) +"qFG" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"qFL" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, -/area/corsat/gamma/residential/west) -"qGn" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"qGc" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar) +"qGm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"qGq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"qGs" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/door/window/eastright{ + name = "Weapon Rack" }, -/area/corsat/gamma/residential/west) +/obj/structure/window/reinforced/toughened{ + dir = 1 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) "qGz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"qGF" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"qGY" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"qHF" = ( +"qGN" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"qHb" = ( +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/south/security) +"qHl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qHz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"qHM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Security"; - req_access_txt = "101" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/lobby) +"qHA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "OmegaO"; - name = "Omega Lockdown"; - use_power = 0 +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"qHD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"qHE" = ( +/turf/open/floor/corsat/browncorner/west, +/area/corsat/sigma/north) +"qHO" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/administration) +"qHR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/airlocknorth) -"qIr" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"qHU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/engineering/core) -"qIw" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/bot/cleanbot, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"qHY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"qIt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "yellowcorner" + id = "OmegaA"; + name = "Xenobiology"; + req_access_txt = "103" }, -/area/corsat/sigma/north) -"qIS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qIu" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/hallwaysouth) +"qIx" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qIA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "qIU" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/inaccessible) -"qJa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"qJi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"qJf" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) "qJl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -55461,317 +32901,442 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"qJA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/sigma/hangar/office) -"qJJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"qJO" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +"qJn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"qJE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"qJX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) "qJZ" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/floor/corsat, /area/corsat/omega/complex) +"qKa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) "qKc" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"qKN" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hallways) -"qKZ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +"qKl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/hallwaysouth) -"qLa" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/security) +"qKG" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/airlock/control) -"qLo" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"qKK" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/sigma/dorms) +"qKW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"qKX" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/arrivals) +"qLc" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"qLp" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"qLr" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"qLu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/airlock/control) +"qLv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) "qLz" = ( /obj/structure/prop/mech/tesla_energy_relay, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"qLE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"qLH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/maint) +"qLL" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Administration"; + req_access_txt = "106" }, -/area/corsat/sigma/airlock/south) -"qLI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"qLR" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"qLT" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/gamma/medbay) -"qMT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"qMc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"qMh" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qMu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"qMx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/theta/airlock/control) -"qNe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"qMX" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"qMZ" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "18" }, -/area/corsat/sigma/hangar/office) -"qNF" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"qNg" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/south, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"qNh" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Containment Cell"; + req_one_access_txt = "103" }, -/area/corsat/gamma/hangar/checkpoint) -"qNJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"qNp" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"qNz" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control{ + id = "OmegaOffice"; + name = "Privacy Shutters"; + pixel_y = 1; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"qNE" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/laundry) +"qNI" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"qNL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/virology) "qNM" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"qOr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - icon_state = "squares" +"qOI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"qOL" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, /area/corsat/sigma/hangar/security) -"qOF" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Hangar Office"; - req_access_txt = "106" - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/office) -"qOJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/security) -"qPo" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "blue" +"qPa" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"qPJ" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"qPe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/biodome) -"qQe" = ( -/obj/structure/window/framed/corsat/research, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"qPp" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/purplewhite/west, /area/corsat/theta/biodome/complex) +"qPt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/northwest, +/area/corsat/omega/control) +"qPz" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"qPG" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) "qQg" = ( /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"qQq" = ( -/obj/structure/pipes/vents/pump{ +"qQk" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/northwest, +/area/corsat/sigma/hangar/checkpoint) +"qQl" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Hub"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"qQm" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/sigma/south) +"qQr" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"qQt" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"qQx" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/area/corsat/gamma/engineering) -"qQU" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/south) +"qQC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"qRv" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"qQE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) -"qRY" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"qQL" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/theta/airlock/east) +"qQQ" = ( /obj/structure/bed/chair/office/light{ - dir = 4 + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"qRl" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"qRm" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/omega/complex) +"qRw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"qRF" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/hangar/office) +"qRP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"qRU" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar) +"qSb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Containment"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"qSf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/white/northeast, +/area/corsat/sigma/dorms) "qSi" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/airlock/east/id) -"qSt" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ +"qSv" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"qSw" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "red" + network = list("sigma") }, -/area/corsat/gamma/airlock/south/id) -"qSG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/station_alert{ +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"qSO" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"qST" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"qTd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/gamma/hallwaysouth) -"qTe" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/dorms) -"qTj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/id) -"qTZ" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitetan" - }, -/area/corsat/gamma/canteen) -"qUt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south/id) -"qUI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"qUT" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"qVd" = ( -/obj/structure/machinery/gravity_generator{ - desc = "Absorbs and redirects radiation, hopefully away from you."; - name = "Radiation Collector"; - pixel_x = 15; - pixel_y = -5 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"qSQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"qTa" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"qTc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"qTf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"qVe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"qTv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"qTD" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/biodome/complex) +"qTH" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qUa" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/east/id) +"qUz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/biodome/testgrounds) +"qUE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/sigmaremote) +"qUJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"qUZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"qVc" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/omega/hangar) +"qVm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) "qVs" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -55779,201 +33344,322 @@ }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"qVz" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"qVA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"qVF" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +"qVt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/lobby) +"qVK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/north) -"qVJ" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") + dir = 8; + network = list("gamma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qVP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHCargoN"; + name = "Gamma Cargo Checkpoint"; + use_power = 0 }, -/area/corsat/sigma/biodome) -"qWf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"qVV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"qVX" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"qWc" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) "qWr" = ( /turf/closed/wall/biodome, /area/corsat/gamma/residential) -"qWK" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"qWQ" = ( +"qWx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"qWE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"qWX" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/corsat/gamma/hallwaysouth) -"qXL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"qWY" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"qXa" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/residential/maint) +"qXc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"qYj" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"qXf" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"qXn" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"qXE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black_random, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"qXG" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/corsat/gamma/hangar/monorail) -"qZj" = ( -/turf/open/floor/corsat{ +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"qXU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "darkgreencorner" + name = "\improper Toilet Unit"; + req_access_txt = "100"; + req_one_access_txt = "0" }, -/area/corsat/gamma/hangar) -"qZs" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/biodome/complex) +"qYf" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/monorail) +"qYm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/purple/north, +/area/corsat/omega/hallways) +"qYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering) -"qZW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"qYD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/cargo) -"raw" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"qYO" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"qYS" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "OmegaHangarE"; + name = "Landing Bay Omega" }, -/area/corsat/gamma/biodome/virology) -"rba" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"qYT" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"qYU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/corsat/sigma/dorms) +"qYV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"qZy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"qZC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "whitetan" + health = 80 }, -/area/corsat/gamma/residential/west) -"rbo" = ( -/obj/structure/bed/chair/comfy/beige, +/obj/structure/window/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"qZE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"qZL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"qZQ" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/foyer) +"qZR" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"qZS" = ( +/obj/structure/machinery/computer/shuttle_control/monorail{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) -"rbC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/monorail/control) +"raf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/south/robotics) +"rax" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/biodome/toxins) +"raz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"raN" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/obj/item/reagent_container/food/snacks/chocolatebar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"raS" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"rbf" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"rbi" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/security) +"rbp" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/machinery/space_heater, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"rbA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"rbE" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"rbX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/east/id) "rcg" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"rch" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"rcT" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" +"rcq" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"rdh" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "8" }, -/area/corsat/gamma/sigmaremote) -"rdn" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"rdo" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"rdB" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"rdH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"rdO" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/virology) -"rdA" = ( -/obj/structure/bed/chair{ +"rdQ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"rdZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/gamma/foyer) -"reh" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"rei" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar/monorail) +"rdR" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"rdV" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"rdY" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/checkpoint) +"ree" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/office) +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rel" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/hallways) +"rew" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/monorail) +"reA" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydroeast) +"reG" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/sigma/hangar) "reN" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; @@ -55983,129 +33669,233 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/theta/biodome/complex) -"rfa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 1 +"reP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"reW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"rfk" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/north) +"rfn" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential) +"rfu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/maint) -"rfh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"rfx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"rfT" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/hallways) +"rfX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"rgb" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"rgd" = ( +/turf/open/floor/corsat/greenwhitecorner, +/area/corsat/gamma/medbay/lobby) +"rgw" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "CO2 Control" }, -/area/corsat/gamma/freezer) -"rfo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"rgF" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/omega/offices) +"rgK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"rgP" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"rgR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/north) -"rfQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) -"rgc" = ( -/obj/structure/bed/nest, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"rhb" = ( +/obj/structure/machinery/medical_pod/sleeper{ + flags_atom = 18 }, -/area/corsat/sigma/biodome) -"rgm" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"rhc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"rhj" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"rhn" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/gamma/hangar) +"rhq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/southeast, /area/corsat/sigma/southeast/datalab) -"rhr" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"rhu" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"rhv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" +"rhs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating_striped/north, +/area/corsat/gamma/sigmaremote) +"rhw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper/Toxin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"rhC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 5 }, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"rhU" = ( +/turf/open/floor/corsat/darkgreen/west, /area/corsat/gamma/hallwaysouth) -"riC" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/sigma/southeast/datalab) -"riE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"rib" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/theta/airlock/control) -"rjv" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"rid" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/airlock/control) +"rig" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"rir" = ( +/obj/structure/machinery/faxmachine{ + density = 0; + req_one_access_txt = "106" }, -/area/corsat/gamma/hallwaysouth) -"rjO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"riK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"riM" = ( +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west) +"riO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/gamma/security/cells) +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"rjk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"rjp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/green/northeast, +/area/corsat/gamma/medbay/morgue) +"rjr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south/id) +"rjy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"rjP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/foyer) "rjT" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"rki" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"rkn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaAccessC"; + name = "Security Shutters" }, -/area/corsat/sigma/south/robotics) -"rkK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"rkz" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/corsat/gamma/hangar) -"rlh" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"rkM" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/omega/control) +"rkS" = ( /obj/structure/machinery/shower{ dir = 4 }, @@ -56114,145 +33904,138 @@ dir = 4; layer = 2.8 }, -/obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/residential/showers) -"rlk" = ( +"rkX" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"rlc" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"rlK" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/atmos) +"rlR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/north) +"rlS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/airlock/south/id) -"rlG" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"rlH" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"rmc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"rlX" = ( +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/hangar/flightcontrol) +"rmf" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"rmD" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/cargo/disposal) -"rmk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"rmF" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"rmZ" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar) +"rnp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"rmm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/control) +"rnq" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/corsat/purplewhite/northwest, /area/corsat/theta/biodome/complex) -"rmI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +"rnG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"rnL" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/engineering/atmos) -"rno" = ( -/obj/structure/machinery/camera/autoname{ - network = list("sigma") +"rnS" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"rnX" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/hangar/office) +"rog" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/office) +"rpd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/researcher) +"rpp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/sigma/hangar) -"rnK" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"rpt" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo/disposal) +"rpw" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"roh" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"roj" = ( -/obj/structure/safe, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/biodome/complex) -"ros" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/airlock/north) -"rox" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/gamma/administration) -"roL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar) -"roZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + network = list("sigma") }, -/area/corsat/gamma/airlock/control) -"rpi" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/checkpoint) +"rpC" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) +"rpG" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"rpr" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/prison/hangar_storage/research/shuttle) -"rpB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"rpU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"rpW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/canteen) -"rpP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/engineering/core) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"rpY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_east, +/area/corsat/sigma/southeast/datalab) "rpZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -56260,731 +34043,1082 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) +"rqc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) "rqg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"rqo" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/rnr) -"rrs" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"rqr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rqs" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"rqB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"rrv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"rqG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"rqK" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"rqQ" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/containment) +"rqV" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/hangar/office) +"rrc" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail/control) -"rrE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"rrG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/administration) +"rre" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"rrj" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"rrw" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/landing/console2) -"rrY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/sigma/hangar/security) -"rtr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/corsat/redcorner/east, +/area/corsat/theta/airlock/east/id) +"rrA" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"rrL" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"rso" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/cargo/disposal) -"rtN" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"rss" = ( +/obj/item/clothing/head/beret/sec/warden, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"rsv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/medbay) -"rtT" = ( -/obj/structure/surface/table/almayer, -/obj/item/form_printer, -/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"rsA" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"rsQ" = ( +/obj/item/clothing/mask/breath, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/control) +"rsT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"rte" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/theta/airlock/control) +"rtg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/slime, +/obj/item/device/flashlight/slime{ + pixel_y = 8 }, -/area/corsat/omega/complex) -"rtZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/device/flashlight/slime{ + pixel_x = -10 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/item/device/flashlight/slime{ + pixel_x = 10 }, -/area/corsat/gamma/rnr) -"rur" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"rtG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"rtV" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/area/corsat/gamma/residential/west) -"rut" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rua" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Disposals"; + req_one_access_txt = "102;101" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/rnr) -"ruw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/disposal) +"rui" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/south/engineering) -"rvg" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = 32 +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"ruA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "theta" +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"ruC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/signaller, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"ruO" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Administration"; + req_access_txt = "106" }, -/area/corsat/theta/airlock/west) -"rvp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ruV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"ruZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Custorial Closet"; + req_one_access = null }, -/area/corsat/gamma/sigmaremote) -"rvC" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/maint) +"rvx" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/sigma/airlock/east/id) -"rvD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/dorms) +"rvy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"rvP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"rvR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/sigma/dorms) -"rvL" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/rnr) -"rwl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"rvV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"rwc" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"rwe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"rwm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) "rwo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"rws" = ( -/obj/structure/platform{ - density = 0; - dir = 1; - icon_state = "platform_deco" +"rwr" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/lobby) +"rwx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"rwH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/colony_floodlight_switch{ + desc = "This switch controls the floodlights around the biodome. It only functions when there is power." }, -/area/corsat/gamma/residential/east) -"rwF" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/theta/airlock/control) +"rwM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, +/turf/open/floor/plating/warnplate/west, /area/corsat/sigma/hangar) -"rwK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"rwO" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/hallways) -"rxd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"rwQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/hangar/cargo) -"rxk" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_access_txt = "102" +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/security) +"rwY" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/engineering) +"rxg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Secondary Generators"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"rxl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"rxL" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ + name = "Cargo Bay"; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"rxQ" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/hallwaysouth) +"rxU" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/chemistry) +"ryd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"ryk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/armor_booster, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"ryx" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"ryy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"ryz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 1"; + req_access_txt = "101" + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/office) +"ryA" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ryH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Omega Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/engineering) -"rxD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellow/west, +/area/corsat/omega/control) +"ryO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"ryQ" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/corsat/sigma/south/security) -"ryc" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"ryZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"ryE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"ryR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 4 }, -/area/corsat/sigma/airlock/east) -"rzk" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/sigma/hangar/security) +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"rzg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"rzm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"rzo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"rzu" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "rzy" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"rzU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/engineering) -"rAc" = ( +"rzB" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"rzV" = ( +/obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/monorail) -"rAm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"rAi" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/north) +"rAo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/southeast) -"rBf" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"rAq" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security/cells) -"rBX" = ( -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/south/offices) -"rCb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"rCd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/gamma/hangar/arrivals) -"rCr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"rAt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"rAD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/airlock/control) +"rAI" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"rBa" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/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"; + pixel_x = 12; + pixel_y = 2 }, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/surgery) +"rBn" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/corsat/greenwhite/southwest, /area/corsat/gamma/medbay) -"rCA" = ( +"rBt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"rBw" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar) -"rCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"rCH" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"rCO" = ( -/obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"rBJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"rCi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"rDr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/researcher) +"rCv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "tan" + name = "Hangar Office"; + req_access_txt = "101" }, -/area/corsat/sigma/dorms) -"rDF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"rCB" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"rCC" = ( +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/meat/monkey, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rCT" = ( /obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"rEq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/residential) -"rED" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + dir = 8; + network = list("gamma") }, -/area/corsat/gamma/biodome/virology) -"rEG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"rCU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/south) +"rDf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"rDt" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"rDP" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"rDT" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/canteen) +"rDV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"rEX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +"rEi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"rFf" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"rEm" = ( +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"rEp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" }, -/area/corsat/gamma/canteen) -"rFm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"rEt" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"rEF" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/airlock/control) +"rEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"rFe" = ( +/obj/structure/computer3frame/server{ + icon_state = "4" }, -/area/corsat/omega/offices) -"rFw" = ( +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"rFi" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 8 }, -/area/corsat/gamma/hallwaysouth) -"rFC" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rFp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hangar/arrivals) -"rFJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/foyer) +"rFs" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"rGg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/offices) -"rFS" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/foyer) +"rGj" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"rGl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"rGp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/omega/hangar) -"rGb" = ( -/obj/structure/prop/almayer/cannon_cables{ - name = "\improper Cables" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/obj/structure/cryofeed{ - color = "silver"; - desc = "A bewildering tangle of machinery and pipes."; - name = "coolant feed" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor1" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"rGr" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"rGM" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/checkpoint) +"rHd" = ( +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/datalab) +"rHg" = ( +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"rHj" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"rHl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/area/corsat/theta/biodome/complex) -"rGc" = ( -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"rHm" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/airlock/control) +"rHo" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/theta/biodome/complex) -"rGn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"rHv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) +"rHO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"rHP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/east) +"rIi" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/corsat/inaccessible) +"rIk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"rIs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/residential/east) -"rGu" = ( -/obj/item/paper/crumpled, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/area/corsat/sigma/south/complex) -"rGC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential) +"rIt" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"rIu" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"rII" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/corsat/sigma/south/security) -"rGH" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/scrapyard) +"rIL" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"rIN" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/corsat/gamma/kitchen) -"rHb" = ( -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/machinery/meter, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"rIS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/omega/security) -"rId" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"rIV" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"rJj" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"rJl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/area/corsat/omega/complex) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) "rJo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rJu" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"rKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"rKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/hangar/office) -"rKq" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" +"rJA" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"rJN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) -"rKy" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"rJS" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/cargo) -"rKG" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/hangar/checkpoint) -"rKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"rLp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/checkpoint) +"rKz" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"rKA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/checkpoint) +"rLc" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"rLl" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/corsat/sigma/biodome) -"rLw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rLx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"rLA" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/theta/airlock/west) -"rLZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/west/id) +"rLB" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"rLG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"rLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"rLI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"rLM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"rLN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/omega/maint) +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/researcher) +"rLO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"rMh" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/residential) "rMq" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/ice, /area/corsat/gamma/biodome) -"rMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"rMR" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +"rMr" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/hangar/flightcontrol) +"rMx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Surgery Room"; + req_one_access = null }, -/area/corsat/gamma/biodome/virology) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/surgery) +"rMS" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/hallwaysouth) "rMU" = ( /obj/structure/foamed_metal, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"rMX" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "tcomms" - }, -/area/corsat/sigma/south/complex) -"rNc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +"rMY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"rNi" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/monorail) +"rNn" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"rNP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/omega/hangar/security) -"rOq" = ( -/obj/structure/bed/sofa, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"rOl" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/hangar/arrivals) -"rOH" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"rOr" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"rOt" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"rOD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/gamma/hangar/cargo) -"rOP" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"rOO" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "spiralplate" - }, -/area/corsat/sigma/hangar/office) -"rOS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar) -"rPI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"rOY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"rOZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security) +"rPf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "bluecorner" + network = list("sigma") }, -/area/corsat/omega/control) -"rPZ" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hallways) -"rQh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/corsat/sigma/biodome/scrapyard) -"rQD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/hangar/monorail/control) -"rQQ" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"rPm" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydrowest) +"rPo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"rPx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/omega/hangar/security) -"rQY" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/dataoffice) +"rPQ" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"rPR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"rPS" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"rQc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"rRh" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"rQl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"rQm" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/omega/hangar/security) -"rRm" = ( /obj/structure/platform{ dir = 8; layer = 2.7 }, -/obj/structure/platform, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "white" +/turf/open/floor/corsat/white/northwest, +/area/corsat/sigma/south) +"rQu" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, +/turf/open/floor/corsat/white/west, /area/corsat/gamma/hallwaysouth) +"rQC" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/atmos) +"rQP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"rRg" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"rRv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"rRw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"rRC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "ThetaIDEC"; + name = "Security Shutters"; + use_power = 0 + }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/east/id) +"rRL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/foyer) +"rRN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Identification Desk" + }, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Identification Desk" + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) "rRR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) -"rSz" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"rRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/id) +"rSg" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"rSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"rSn" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/showers) +"rSo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/control) +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"rSs" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"rSv" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) "rSG" = ( /obj/structure/machinery/computer/cameras{ network = list("gamma"); @@ -56992,36 +35126,17 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"rSP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"rSR" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"rTb" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"rTf" = ( -/obj/structure/surface/table, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"rSL" = ( +/obj/item/folder/black_random, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"rTc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) "rTj" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -57029,36 +35144,56 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rTo" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/sigma/hangar/monorail) -"rTw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"rTt" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"rTy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/south) +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"rTA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) "rTD" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/showers) -"rTX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"rTN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/area/corsat/sigma/hangar/security) -"rUd" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "greenwhite" + network = list("omega") }, -/area/corsat/gamma/medbay/lobby) +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"rUe" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"rUg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"rUo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) "rUq" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -57066,6 +35201,13 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"rUt" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/omega/maint) +"rUD" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) "rUH" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -57073,275 +35215,258 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"rUK" = ( +"rVt" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/omega/cargo) -"rUQ" = ( -/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/hallwaysouth) -"rVh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"rWb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"rVK" = ( -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/medbay/morgue) -"rVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/omega/offices) -"rWh" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"rWE" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hallwaysouth) -"rWG" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"rWj" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"rWF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"rWI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/area/corsat/omega/maint) -"rWM" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/engineering) +"rWT" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "purplewhite" + id_tag = "mining_outpost_pump" }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/security) +"rWX" = ( +/turf/open/floor/corsat/purplewhitecorner/west, /area/corsat/gamma/biodome/virology) -"rWN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"rWY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" +"rXk" = ( +/obj/item/folder/yellow, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"rXq" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"rXt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("gamma") }, -/area/corsat/omega/airlocknorth) -"rXj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/morgue) +"rXw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"rXL" = ( +/obj/structure/machinery/door_control{ + id = "GammaCargo"; + name = "Cargo Door"; + pixel_x = -24; + use_power = 0 }, -/area/corsat/gamma/rnr/arcade) -"rXs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"rXN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"rXS" = ( +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"rXX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"rXZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitetan/southeast, +/area/corsat/gamma/canteen) +"rYc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/area/corsat/sigma/dorms) -"rXB" = ( +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"rYe" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"rYs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/hydrowest) +"rYG" = ( +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"rYI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"rYL" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhitecorner, /area/corsat/omega/complex) -"rXE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"rYT" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"rZb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/researcher) +"rZc" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar) +"rZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"rZl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/card, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/security) +"rZq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"rZs" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar) +"rZx" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron, +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 8; + id_tag = "mix_sigma_out" }, -/area/corsat/sigma/biodome) -"rYj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"rZO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") }, -/area/corsat/sigma/hangar/monorail/control) -"rYp" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/security) +"rZP" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"rYq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" + network = list("gamma") }, -/area/corsat/sigma/cafe) -"rYB" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/cargo) +"rZV" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"rZX" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/omega/hallways) -"rZC" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/sigma/south) -"rZJ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"rZK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/checkpoint) -"rZR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"rZU" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/corsat/gamma/cargo) -"sam" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" +/obj/structure/flora/pottedplant, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/residential/researcher) +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/gamma/administration) +"sah" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hangar/office) "sap" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) -"saV" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"sas" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering) +"sax" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"saG" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/sigma/dorms) -"sba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"saQ" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/canteen) +"saU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/red/west, +/area/corsat/omega/airlocknorth) +"saX" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/complex) +"saY" = ( +/obj/structure/machinery/door_control{ + id = "SigmaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 }, -/area/corsat/omega/offices) -"sbs" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"sbz" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/hallwaysouth) +"scm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datamaint) -"sbw" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"sbF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"sbJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"sbN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering) -"scj" = ( -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"scH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"sdm" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ - id = "GammaWestD"; - name = "Gamma Dome Airlock" - }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "map_lockdown"; - name = "Gamma Lockdown"; - use_power = 0 +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"scL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "1" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"sdl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/residential/maint) "sdu" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails{ @@ -57349,405 +35474,506 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"sdv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"sdR" = ( +"sdB" = ( +/turf/open/shuttle/dropship/dark_grey_bottom, +/area/prison/hangar_storage/research/shuttle) +"sdG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"sdH" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"sel" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/theta/airlock/east) "sem" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) -"sez" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-S"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"seB" = ( +"seq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"seD" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"seO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/t_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"seW" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/armory) +"seZ" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"sfl" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Monorail Control"; + req_access_txt = "101" }, -/area/corsat/gamma/airlock/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"sfm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/north, +/area/corsat/sigma/hangar) "sfx" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"sfJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential/showers) -"sga" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/arrivals) -"sgl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"sgn" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/gamma/airlock/control) -"sgu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"sgX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sfP" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/checkpoint) -"shg" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"sfS" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - name = "Computer Room"; - req_one_access = null + network = list("omega") }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"sgb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"shq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"shW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +"sgc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/sigma/hangar) -"sid" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"sgd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"sgj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"sgp" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"sgs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"sgG" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"sgU" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"sgY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"shf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"sii" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"shm" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"shP" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/residential) +"sib" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/administration) +"sic" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/complex) -"sip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"sik" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) +"sil" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "siu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/east, /area/corsat/theta/biodome) -"siU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"sjr" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer3, -/area/corsat/gamma/biodome) -"sjs" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +"siw" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"siz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/corsat/gamma/residential) -"sjw" = ( -/obj/structure/machinery/door_control{ - id = "Viro"; - name = "Lab Lockdown"; - pixel_x = 24; - use_power = 0 +/obj/structure/machinery/computer/station_alert{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) +"siN" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"siQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"sjx" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"siT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"sjl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/gamma/residential/west) -"sjK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"sjo" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/residential/maint) +"sjp" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/morgue) -"sjL" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/omega/cargo) +"sjr" = ( +/obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/auto_turf/snow/layer3, +/area/corsat/gamma/biodome) +"sjF" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/handcuffs, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security/armory) +"sjO" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"sjV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/biodome/gunrange) -"sjR" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ski" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/hangar/monorail) -"skc" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"skl" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "purple" - }, -/area/corsat/sigma/south) -"skf" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + network = list("sigma") }, -/area/corsat/gamma/airlock/south/id) -"skk" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"skF" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/theta/airlock/control) -"skp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, -/area/corsat/sigma/hangar/security) -"skK" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"skG" = ( +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/gamma/hangar/arrivals) +"skO" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" + dir = 1 }, -/area/corsat/sigma/hangar/security) +/obj/structure/surface/rack, +/obj/item/storage/firstaid/rad, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"skP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) "skS" = ( /obj/item/toy/spinningtoy{ desc = "It echoed loudly within him because he was hollow at the core." }, /turf/open/floor/corsat, /area/corsat/inaccessible) -"sll" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"skU" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay) +"skZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/sigmaremote) -"slL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"sle" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"slh" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"slu" = ( +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/target/syndicate, +/obj/structure/closet/crate{ + desc = "A rectangular steel crate containing firing targets."; + name = "target crate" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"slv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Research Complex Gamma" }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/biodome/complex) +"slw" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen, /area/corsat/gamma/foyer) -"slU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +"slZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/janitor, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"smc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"smk" = ( +/obj/structure/surface/rack, +/obj/item/device/reagent_scanner, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/complex) +"sme" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"smn" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"smq" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"smz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"smD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/landmark/nightmare{ + insert_tag = "lockdown-gamma-control" + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"smK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/arrivals) +"smM" = ( +/obj/item/ashtray/bronze, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) "smP" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"snc" = ( -/obj/structure/morgue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/medbay/morgue) -"snA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"smZ" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, +/obj/structure/platform, +/turf/open/floor/corsat/white/southwest, /area/corsat/gamma/hallwaysouth) -"snG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"snO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" +"snd" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/theta/airlock/control) +"snq" = ( +/obj/structure/machinery/computer/teleporter_console/corsat{ + dir = 1 }, -/area/corsat/sigma/hangar) -"snP" = ( -/obj/structure/platform{ - density = 0; - icon_state = "platform_deco" +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"snv" = ( +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"snw" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"snJ" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Forensics" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"snK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) "snS" = ( /mob/living/carbon/human/yiren, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"snU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"snT" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo/disposal) +"son" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"sow" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"soz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/dorms) -"snW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/sigma/hangar/monorail) +"soW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"soi" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"soY" = ( +/turf/open/floor/corsat/purplecorner/north, +/area/corsat/omega/hallways) +"spa" = ( +/obj/structure/machinery/optable, +/obj/item/robot_parts/robot_suit, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"spd" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"sph" = ( /obj/structure/machinery/camera/autoname{ - network = list("gamma") + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south) +"spp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/south/security) +"spu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/gamma/foyer) -"sor" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/gamma/administration) +"spM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/whitetan/northwest, /area/corsat/sigma/dorms) -"sos" = ( -/obj/structure/surface/table/almayer, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/corsat/sigma/biodome/gunrange) -"spD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "SigmaHangarC-N"; - name = "Security Shutters"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"spN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hangar/security) -"spP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/virology) "spU" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"spV" = ( +/obj/structure/tunnel{ + id = "hole1" + }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) "sqn" = ( /obj/structure/machinery/colony_floodlight{ dir = 4 @@ -57758,195 +35984,301 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"sqY" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" +"sqQ" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 }, -/area/corsat/gamma/hangar/arrivals) -"srY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/id) +"srj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"ssh" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"srl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/control) +"srE" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"srH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) +"ssc" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"ssl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/sigmaremote) +"ssq" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/west) "ssw" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"stg" = ( -/obj/structure/machinery/light{ +"ssB" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"stA" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay/lobby) +"ssI" = ( +/obj/structure/platform{ + dir = 8 }, -/area/corsat/sigma/hangar/security) -"suf" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"ssV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/gm/grass/grass1/weedable, -/area/corsat/theta/biodome) -"sum" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hallways) +"std" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/biodome/virology) -"sur" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/monorail) +"sth" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/west/id) +"stn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/hallways) +"sts" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"stx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential/researcher) +"stU" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"stY" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_y = -25; + use_power = 0 }, -/area/corsat/theta/biodome/complex) -"svn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"svB" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"svD" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/security) +"stZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"svH" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" + name = "Security Hub"; + req_access_txt = "101" }, -/area/corsat/theta/biodome/complex) -"svU" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"suf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/showers) -"svX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/gm/grass/grass1/weedable, +/area/corsat/theta/biodome) +"sui" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" }, -/area/corsat/gamma/hangar/cargo) -"swf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"sux" = ( +/obj/item/trash/chips, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"suB" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"swY" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) +"suE" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"suT" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/sigma/south/offices) -"sxa" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"svb" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"svi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"svr" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"svy" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"sxB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_y = 30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +"svI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"svQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/medbay/lobby) -"sxI" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"svS" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"swv" = ( +/obj/structure/platform{ + density = 0; dir = 8; - icon_state = "darkgreen" + icon_state = "platform_deco" }, -/area/corsat/gamma/hangar/arrivals) -"sxJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"swy" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hallways) +"swA" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/rnr) +"swD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"swN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar/arrivals) -"sxO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "OmegaOffice"; - name = "Privacy Shutters" +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"swQ" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"swV" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"sxf" = ( +/turf/open/floor/corsat/arrow_east, +/area/corsat/omega/cargo) +"sxj" = ( +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet6_2/west, +/area/corsat/gamma/administration) +"sxq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"sxs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/south/robotics) +"sxw" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"sxT" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"sxY" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"syf" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/surgery) +"syw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/omega/offices) -"sxU" = ( -/obj/structure/prop/dam/crane/cargo, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"sza" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Control"; + req_access_txt = "101" }, -/area/corsat/gamma/sigmaremote) -"syk" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"syG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"szf" = ( +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome/gunrange) +"szj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/engineering) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"szr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"szz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"sAd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) "sAj" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -57954,44 +36286,90 @@ }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"sBc" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump{ - dir = 4 +"sAt" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/purple/west, +/area/corsat/sigma/south) +"sAv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"sBH" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/airlock/south) +"sAz" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/dorms) +"sAM" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/hangar/office) +"sAU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"sBa" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"sBh" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"sBn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/bodybags, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) +"sBA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"sBV" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"sBK" = ( +/obj/item/implant/neurostim, +/obj/item/implant/neurostim, +/obj/item/implant/adrenalin, +/obj/item/implant/adrenalin, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"sBL" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/airlocknorth/id) +"sBU" = ( +/turf/open/floor/corsat/purplewhite/west, /area/corsat/sigma/south/complex) -"sCf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"sCe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"sCg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"sCl" = ( -/obj/structure/coatrack, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"sCh" = ( +/obj/structure/platform{ + dir = 8 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) "sCv" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -58001,507 +36379,597 @@ }, /turf/open/floor/plating, /area/corsat/gamma/airlock/south/id) -"sCZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"sCw" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar/monorail) +"sCC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"sCE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Head Office"; + req_one_access_txt = "102" }, -/area/corsat/gamma/security) -"sDi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/mars, -/area/corsat/sigma/biodome) -"sDx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"sDV" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"sCJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"sCP" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/residential) -"sEb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"sCQ" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"sCR" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestW"; + name = "Sigma West Airlock" }, -/area/corsat/gamma/sigmaremote) -"sEc" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"sDi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/mars, +/area/corsat/sigma/biodome) +"sDl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + dir = 5 }, -/area/corsat/gamma/biodome/complex) -"sEo" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sDw" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ dir = 4; - icon_state = "red" + network = list("sigma") }, -/area/corsat/gamma/hangar/checkpoint) -"sFd" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "bluegrey" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"sDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/gamma/hangar/flightcontrol) -"sFD" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"sEq" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential) +"sEt" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"sEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"sEG" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"sEZ" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/south) +"sFc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"sFt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"sFw" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/toxins) +"sFy" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/hangar/monorail/control) "sFF" = ( /obj/effect/landmark/queen_spawn, /turf/open/ice, /area/corsat/gamma/biodome) -"sFI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" +"sFX" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"sGa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"sGd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) +"sGn" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/chemistry) +"sGs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "sGB" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/rnr/library) +"sGG" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"sGJ" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"sGO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) "sGQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"sGV" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Administration"; - req_access_txt = "106" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/administration) -"sHB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"sHR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"sHX" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +"sGW" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"sIm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("theta") - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"sIs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"sIw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/corsat/sigma/cargo) -"sIC" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"sGY" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/corsat/omega/hallways) -"sIL" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"sHu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" + dir = 4 }, -/area/corsat/gamma/residential/east) -"sIR" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/sigma/dorms) +"sHw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/south/id) -"sIV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/cargo) +"sHx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/cargo) -"sJe" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"sHD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 + }, +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"sHW" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/arrivals) +"sHY" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "5" }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"sIa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"sIf" = ( +/obj/structure/sink{ dir = 4; - icon_state = "whitetancorner" + pixel_x = 11 }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"sIO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"sIT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"sIZ" = ( +/turf/open/floor/corsat/squares, /area/corsat/sigma/dorms) "sJg" = ( /turf/closed/shuttle/ert{ icon_state = "wy17" }, /area/prison/hangar_storage/research/shuttle) -"sJk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/corsat/omega/hangar) -"sJr" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/airlock/east/id) -"sKa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"sKQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"sKZ" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - id = "ThetaNorthN"; - name = "Theta North Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/corsat/theta/airlock/control) -"sLw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/residential) -"sLF" = ( -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) -"sMb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"sMO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"sMW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"sNo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ +"sJy" = ( +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/dorms) +"sJz" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"sNE" = ( -/obj/structure/morgue/crematorium{ - id = "CORSAT Crema" - }, -/obj/structure/machinery/crema_switch{ - id = "CORSAT Crema"; - pixel_x = 28; - pixel_y = 28; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, -/area/corsat/gamma/medbay/morgue) -"sNG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + network = list("sigma") }, -/area/corsat/gamma/engineering/core) -"sNO" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/dorms) +"sJL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"sKe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null }, -/area/corsat/sigma/cafe) -"sNU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"sKm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/rnr) +"sKn" = ( +/obj/structure/machinery/power/apc/upgraded/power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/west) +"sKs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/corsat/omega/hangar/security) -"sOq" = ( +/obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"sKu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/sigma/south) -"sOt" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo/lobby) +"sKy" = ( /obj/structure/machinery/camera/autoname{ dir = 1; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"sON" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/omega/offices) -"sPx" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/hangar/monorail/control) -"sPB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/omega/hallways) -"sPI" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"sKM" = ( /obj/structure/machinery/camera/autoname{ + dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/hallwaysouth) -"sQb" = ( -/obj/structure/bed, -/turf/open/floor/corsat{ +"sLx" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"sLO" = ( +/obj/structure/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar) +"sLV" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "red" - }, -/area/corsat/gamma/security/cells) -"sQz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" + network = list("gamma") }, -/area/corsat/omega/offices) -"sQI" = ( +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"sMa" = ( /obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" + dir = 1 }, -/area/corsat/gamma/residential/east) -"sRe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SigmaWestD"; - name = "Entrance Airlock Control"; - pixel_x = -5; - use_power = 0 +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"sNg" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"sNp" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/north) +"sOp" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"sOD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"sRo" = ( -/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/airlock/south) +"sOF" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"sOS" = ( +/obj/structure/prop/almayer/cannon_cable_connector{ + name = "\improper Cable connector" }, -/area/corsat/gamma/residential/east) -"sRx" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/turf/open/shuttle/escapepod/floor5, +/area/corsat/theta/biodome/complex) +"sOV" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/airlocknorth) +"sOW" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"sPr" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"sPw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Office"; + req_access_txt = "101" }, -/area/corsat/gamma/residential) -"sRI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/complex) -"sRK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data{ - req_one_access_txt = "201;104" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"sPD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"sPH" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/north) +"sPP" = ( +/obj/structure/sign/safety/high_voltage, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/obj/item/stack/sheet/metal{ + pixel_x = 1 }, -/area/corsat/sigma/hangar/security) -"sSg" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"sPR" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/airlock/south) +"sQd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"sQg" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"sQh" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/airlocknorth/id) +"sQs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_11, +/area/corsat/sigma/biodome) +"sQC" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "GammaNorthS"; + name = "Gamma North Airlock" }, -/area/corsat/gamma/biodome/toxins) -"sSZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/north) +"sQE" = ( +/obj/item/bodybag, +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"sQJ" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"sQO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/gamma/hangar/flightcontrol) +"sRr" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/airlock/control) +"sRu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"sRy" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"sRM" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"sRP" = ( +/turf/open/floor/corsat/red/east, /area/corsat/omega/hallways) +"sRT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/south) +"sRV" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"sSa" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south) +"sSe" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"sSf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"sSL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"sSN" = ( +/obj/structure/surface/table, +/obj/item/folder/black, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"sSV" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/corsat/gamma/hangar) +"sTa" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"sTj" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) "sTq" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"sTr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"sTt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/igniter, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +"sTA" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/area/corsat/sigma/south/complex) +/obj/structure/stairs, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) +"sTB" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) "sTD" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/blue, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"sTH" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +"sTE" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"sTI" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/scrapyard) +"sTX" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/area/corsat/gamma/biodome/toxins) -"sTN" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" +/obj/item/stack/rods{ + amount = 25 }, -/area/corsat/gamma/hangar/flightcontrol) -"sTW" = ( +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/residential/maint) +"sUk" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/control) +"sUn" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/control) +"sUo" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"sUq" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) -"sUR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/obj/structure/machinery/door/window/eastright{ + dir = 1; + name = "Secure Racks"; + req_access_txt = "103" }, -/area/corsat/gamma/engineering/atmos) +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"sUT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaE"; + name = "Airlock Control"; + pixel_x = 8; + pixel_y = 3; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaN"; + name = "Airlock Control"; + pixel_x = -2; + pixel_y = 8; + use_power = 0 + }, +/obj/structure/machinery/door_control{ + id = "OmegaS"; + name = "Airlock Control"; + pixel_x = -2; + use_power = 0 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/airlocknorth) +"sVh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) "sVk" = ( /turf/open/floor/corsat, /area/corsat/sigma/south/engineering) @@ -58509,54 +36977,87 @@ /obj/structure/machinery/mech_bay_recharge_port, /turf/open/floor/corsat, /area/corsat/sigma/south/robotics) -"sVs" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hallwaysouth) -"sVt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"sVA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +"sVq" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"sVv" = ( +/obj/structure/surface/table/almayer, +/obj/item/handset, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/southeast/datalab) +"sVx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/corsat/gamma/sigmaremote) -"sVO" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential) +"sVH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"sWd" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"sVT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/sigma/dorms) +"sVZ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"sWc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/hallwaysouth) +"sWu" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 }, +/obj/structure/machinery/door_control{ + id = "OmegaWarden"; + name = "Privacy Shutters"; + pixel_y = -3; + use_power = 0 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"sWB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, /area/corsat/sigma/southeast/generator) +"sWJ" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/southeast/datamaint) "sWP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/biodome) +"sWQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south) +"sWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"sWW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) "sXf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; @@ -58564,489 +37065,741 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) -"sXg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"sXj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/airlock/control) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) "sXl" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/omega/airlocknorth/id) -"sXG" = ( +"sXs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"sXt" = ( +/obj/structure/machinery/camera/autoname{ + network = list("sigma") + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"sXH" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"sXT" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/latex, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/omega/offices) +"sXX" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "101" }, -/area/corsat/gamma/biodome/complex) -"sYc" = ( +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering) +"sYb" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"sYh" = ( -/obj/structure/surface/table/almayer, /obj/item/clipboard, -/obj/item/paper/Toxin, +/obj/item/paper, /obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/toxins) -"sYk" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"sYi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"sYp" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar) +"sYK" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 1; - icon_state = "white" - }, -/area/corsat/sigma/south) -"sZc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"sYT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/obj/item/tool/screwdriver, +/obj/item/tool/wrench, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/sigma/south/robotics) +"sYV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("theta") }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) "sZg" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tad" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"sZv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/plate, +/area/corsat/omega/control) +"sZR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"sZX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome) -"tae" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"tav" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"taF" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/omega/hangar/security) -"taL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, -/area/corsat/theta/airlock/control) -"taO" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = list("gamma") }, -/area/corsat/omega/hangar/office) -"taQ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"sZY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/maint) -"taT" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"tah" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"taj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/cargo) -"taX" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/checkpoint) +"tak" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/engineering) -"taY" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"tam" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"tbc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"tat" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"tbd" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/north/id) +"taB" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"tbo" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/sigmaremote) +"tbq" = ( /obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"tbx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/hangar/security) -"tbm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"tbG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/security) +"tbN" = ( +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"tbX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/corsat/sigma/biodome/gunrange) -"tbY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Auditorium" +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/security) +"tcf" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"tcq" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"tcM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Airlock Security"; + req_access_txt = "101" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "OmegaO"; + name = "Omega Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"tcO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 }, -/area/corsat/gamma/residential/west) -"tcF" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"tdo" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/theta/airlock/control) +"tdr" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"tdu" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"tdK" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"tdX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"tel" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Center"; + req_access_txt = "101" }, -/area/corsat/gamma/medbay/surgery) -"tdi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"tdp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"tdH" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"teo" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ter" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"tey" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "Research Complex"; + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 4"; req_one_access_txt = "103" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) +"teD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay/lobby) +"teF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"teQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"teT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/westleft{ + name = "Medical Desk" }, -/area/corsat/theta/biodome/complex) -"teZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "bluegrey" +/obj/structure/machinery/door/window/eastright{ + name = "Medical Desk" }, -/area/corsat/sigma/hangar/office) -"tfi" = ( -/obj/structure/barricade/handrail{ - layer = 3 +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/lobby) +"tff" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"tfm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Mech Assembly"; + req_one_access_txt = "102" }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"tfp" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"tfr" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + autoclose = 0; + density = 0; + icon_state = "door_open"; + id = "CORSAT Containment 4"; + name = "Containment Cell 1"; + req_one_access_txt = "103" }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/inaccessible) "tfu" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"tfz" = ( +"tfD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"tfE" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/virology) +"tfR" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"tgb" = ( +/obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/security) +"tge" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"tfC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"tgp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"tgs" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) -"tfF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/security) +"tgw" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"tgQ" = ( +/obj/structure/sign/safety/biohazard, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron/small_stack, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"tgU" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"tgZ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "CORSAT Sec 1" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/brig_cell{ + id = "CORSAT Sec 1"; + name = "Cell 1"; + pixel_x = -32 }, -/area/corsat/gamma/airlock/control) -"tfP" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"tha" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/corsat/theta/biodome/complex) -"tfY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"tht" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) +"thx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential) +"thC" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A high-tech thermoelectric generator fueled by a superheated uranium rod."; + name = "\improper G-17 Thermoelectric Generator" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" }, -/area/corsat/gamma/residential/showers) -"tgE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("omega") +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"thN" = ( +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/sigma/south/offices) +"thO" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"thR" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"thT" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bottle/capsaicin, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/toxins) +"thZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/area/corsat/omega/complex) -"tgJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"tie" = ( +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/east/id) +"tio" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"tip" = ( +/obj/structure/machinery/light{ dir = 8 }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo) +"tiG" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" + dir = 8 }, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"tjj" = ( +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) -"thb" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"tjH" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/hydrowest) +"tjI" = ( +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"tjN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"tkc" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/hangar/checkpoint) +"tkf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/freezer) -"thp" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"tkk" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/surface/rack, -/obj/item/circuitboard/mecha/ripley/peripherals, -/obj/item/circuitboard/mecha/ripley/peripherals, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/obj/item/powerloader_clamp, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/robotics) -"thv" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/gamma/residential/showers) -"tja" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/sigma/south/complex) -"tjf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 +"tkm" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ +/obj/structure/platform{ dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"tjQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" + layer = 2.8 }, -/area/corsat/gamma/sigmaremote) -"tjT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"tkv" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"tkz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"tkN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/airlock/control) "tkO" = ( /obj/structure/window/framed/corsat/hull, /turf/open/floor/plating, /area/corsat/gamma/hangar) +"tkP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"tkS" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"tkX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tlc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"tlf" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth) +"tlu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"tlv" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/toxins) "tlx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/ice, /area/corsat/gamma/biodome) -"tlD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/control) -"tlP" = ( +"tlB" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"tlG" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tlM" = ( +/obj/structure/surface/table, /obj/structure/platform{ dir = 4; - layer = 2.7 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/sigma/south) -"tlX" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/storage/belt/security/MP/full, -/obj/item/clothing/accessory/storage/holster/armpit, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/storage/pouch/general/medium, -/obj/item/storage/pouch/pistol, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" + layer = 2 }, -/area/corsat/omega/hangar/security) -"tml" = ( -/obj/structure/bed/chair/office/light{ +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"tlU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"tmv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/north) -"tnS" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"tmj" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth) +"tmC" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"tmL" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) -"toa" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "GammaEastD"; + name = "Entrance Airlock Control"; + pixel_x = 5; + use_power = 0 }, -/area/corsat/gamma/foyer) -"toi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - icon_state = "bluegrey" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"tmN" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) +"tnh" = ( +/obj/structure/closet, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/morgue) +"tnr" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/omega/offices) -"ton" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"tny" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering) +"tnD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/monorail) -"tov" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/hallwaysouth) +"tnO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"tnX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squares, /area/corsat/sigma/hangar) -"toC" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/corsat{ - icon_state = "plate" +"tom" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"too" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"toA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/omega/biodome) -"toG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"toB" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/corsat/gamma/administration) +"toO" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"toW" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"toY" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tpc" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/datamaint) +"tpd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/gamma/engineering) -"toJ" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" +"tpe" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/trash/popcorn, +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"tpj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/southeast/datalab) -"toL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"tpq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"tpt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/freezer) -"tpz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"tpu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay) -"tpA" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/residential/maint) +"tpB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SigmaBioAtmos"; + name = "Access Shutter" }, -/area/corsat/sigma/hangar/office) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) "tpF" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tpH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" - }, -/area/corsat/sigma/laundry) -"tpM" = ( -/obj/structure/machinery/light{ +"tpN" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/medic, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"tpX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south) -"tpW" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) "tqb" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2; @@ -59055,137 +37808,252 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/hangar/monorail) -"trU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/theta/biodome/complex) -"trV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"tqj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/largecrate/goat, +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"tql" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"tqq" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"tqu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/east/id) +"tqy" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"tqA" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"tqL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"tqM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/medbay) -"tsb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/corsat/sigma/north) -"tsA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) +"tqS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/floor/plating/warnplate, +/area/corsat/sigma/hangar) +"tqX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/omega/control) -"tta" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"trA" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/cargo) +"trR" = ( +/obj/item/tool/soap, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"tso" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/area/corsat/sigma/airlock/control) -"ttB" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"tsF" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/residential/west) -"ttJ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"tsH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"ttK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"tsI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"tsP" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "20" }, -/area/corsat/sigma/hangar/arrivals) -"tuo" = ( -/obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"tsU" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/checkpoint) -"tuu" = ( +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/omega/offices) +"ttn" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"ttL" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"ttO" = ( +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/hallwaysouth) +"ttZ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/platform{ + dir = 1; + layer = 2.7 + }, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/hallwaysouth) +"tud" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tuf" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"tuq" = ( +/turf/open/floor/corsat/blue/east, +/area/corsat/gamma/hallwaysouth) +"tuy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/theta/airlock/control) +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) "tuB" = ( /obj/structure/surface/rack, /obj/item/folder/red, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"tvc" = ( +"tuC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"tuE" = ( +/obj/structure/machinery/juicer, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tuH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hangar/security) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"tuL" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"tuM" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"tvb" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"tvd" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/mars_cave/mars_cave_7, +/area/corsat/sigma/biodome/scrapyard) "tvf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tvG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"tvO" = ( -/obj/structure/machinery/power/apc/high{ - dir = 4; - pixel_x = 24; - start_charge = 0 +"tvn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/south/security) +"tvu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Teleportation Lab"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"tvW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"tvv" = ( +/obj/effect/landmark/corpsespawner/pmc, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"tvD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/offices) -"twm" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"tvU" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"twd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"twj" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/sigmaremote) +"twl" = ( +/turf/open/floor/corsat/arrow_south, +/area/corsat/gamma/hangar) +"twr" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"tww" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/hallways) +"twB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/omega/security) +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/control) "twS" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/vents/pump/on, @@ -59195,73 +38063,143 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/hydroponics) -"txp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "squares" +"txa" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"txm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Theta Dome Control" }, -/area/corsat/sigma/southeast/datalab) -"txB" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"txs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/asteroidwarning/north, +/area/corsat/sigma/biodome) +"txw" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/area/corsat/theta/biodome/complex) -"txK" = ( +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"txA" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/airlock/east) +"txT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/corsat/gamma/hangar/monorail/railcart) +"txW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"tyj" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"tyt" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"tyy" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/south/id) +"tyB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"tyH" = ( +/turf/open/floor/corsat/arrow_north, +/area/corsat/sigma/southeast/generator) +"tyM" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/area/corsat/sigma/southeast/datalab) -"tyb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/omega/maint) +"tyT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"tyU" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/area/corsat/sigma/south/robotics) -"tyv" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/area/corsat/omega/hangar) -"tzz" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaDSC"; + name = "Security Shutters" }, -/area/corsat/gamma/biodome/complex) -"tzF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north/id) +"tze" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"tzl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"tzC" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/tcomms, /area/corsat/sigma/southeast/datalab) -"tzX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +"tzD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar/security) +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"tzO" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) "tzY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"tAb" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hallways) +"tAc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/east/id) +"tAs" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) "tAF" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -59269,169 +38207,217 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tBh" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" +"tAT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/hangar/monorail) -"tBG" = ( +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"tAU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/northeast, +/area/corsat/sigma/southeast/dataoffice) +"tAY" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"tBg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 5 }, -/area/corsat/sigma/hangar/id) -"tBI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/robot_module/surgeon, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/door/window/southright, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"tBk" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"tBq" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/sigma/south/robotics) -"tBT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"tBu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/sigma/hangar/checkpoint) -"tCn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"tBJ" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/security) -"tCs" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"tBY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"tCg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tCl" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/corsat/sigma/north) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) "tCu" = ( /turf/closed/shuttle/ert{ icon_state = "wy15" }, /area/prison/hangar_storage/research/shuttle) -"tCH" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydroeast) -"tCI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tCD" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "ThetaNorthD"; + name = "Theta Dome Airlock" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "map_lockdown"; + name = "Theta Lockdown"; + use_power = 0 }, -/area/corsat/sigma/dorms) -"tDc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/control) +"tCG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"tDq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/researcher) -"tDf" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "darkgreen" +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/north, +/area/corsat/sigma/cargo) +"tDy" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/residential) -"tDt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/lobby) +"tDE" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"tDI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/hangar/checkpoint) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) "tDK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) -"tDQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +"tDN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/foyer) -"tEm" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"tDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/airlock/control) -"tEJ" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"tEb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/hallways) -"tFp" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"tEn" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, +/obj/structure/barricade/handrail, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) -"tFs" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/pistol/vp70, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"tFv" = ( +"tEo" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"tEx" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tER" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"tEV" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"tEW" = ( /obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "tFG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/corsat/theta/biodome) +"tFV" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tGp" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) "tGq" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/corsat, /area/corsat/omega/maint) -"tGr" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"tGG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) "tGV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/corsat/theta/biodome) +"tHb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"tHr" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/hallways) +"tHs" = ( +/turf/open/floor/corsat/omega, +/area/corsat/omega/hallways) +"tHv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) "tHy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -59439,863 +38425,1223 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tHC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, -/area/corsat/gamma/biodome/complex) -"tHR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +"tIg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/south) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) "tIk" = ( /turf/closed/wall/resin/membrane, /area/corsat/sigma/biodome) -"tIL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "Security Hub"; - req_access_txt = "101" +"tIu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access_txt = "106" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "GammaAdmin"; + name = "Security Shutters" + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"tIy" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"tIz" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tIF" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/red/east, /area/corsat/omega/security) -"tIP" = ( -/obj/structure/stairs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +"tIW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"tIX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "tJf" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) -"tJs" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/southeast/datalab) -"tJv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) +"tJr" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/morgue) "tJA" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"tJY" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +"tJJ" = ( +/turf/open/shuttle/escapepod/floor1, +/area/corsat/theta/biodome/complex) +"tJL" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/control) +"tKp" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"tKr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/hydroeast) -"tKy" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"tKs" = ( +/turf/open/floor/corsat/purple/northwest, +/area/corsat/gamma/biodome/complex) +"tKv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"tKI" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"tLa" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" + network = list("omega") }, -/area/corsat/sigma/hangar) -"tLr" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"tKM" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hallways) +"tKY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/corsat/sigma/southeast/telecomm) -"tLz" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("gamma") +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"tLb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay) +"tLe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/monorail/control) +"tLK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "ThetaNorthD"; + name = "Entrance Airlock Control"; + pixel_y = 5; + use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"tLM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"tLF" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"tLN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"tLV" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"tLY" = ( +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/hallwaysouth) +"tMa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/omega/hallways) -"tLR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/north) +"tMs" = ( +/obj/structure/machinery/light, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"tMu" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/security) -"tMq" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/sigma/airlock/control) -"tMG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tMI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "CORSAT Library" }, -/area/corsat/gamma/sigmaremote) -"tMX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"tMU" = ( +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"tMW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"tMZ" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/corsat/sigma/hangar) +"tNi" = ( +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/south) +"tNm" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/corsat/sigma/biodome) +/turf/open/floor/plating/warnplate/north, +/area/corsat/gamma/hangar) "tNp" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/vents/pump, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"tNJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/theta/airlock/west/id) -"tNS" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"tNT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +"tNz" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"tNC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"tNH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"tNK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"tOa" = ( -/obj/structure/bed, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/airlocknorth/id) +"tNM" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/south) +"tNU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"tOo" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/theta/biodome/complex) -"tOL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"tOf" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"tOl" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/obj/structure/largecrate/goat, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"tOm" = ( +/obj/structure/surface/table, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tOy" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Toxins Lab"; + req_one_access_txt = "103" }, -/area/corsat/gamma/sigmaremote) -"tOT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"tOH" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/south) +"tOI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"tOO" = ( +/obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"tOR" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"tPk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "Administration"; - req_access_txt = "106" + network = list("gamma") }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "GammaAdmin"; - name = "Security Shutters" +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/airlock/north/id) +"tOU" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"tPe" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"tPv" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"tPB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/id) +"tPO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/administration) -"tPT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) +/obj/item/storage/box/donkpockets, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"tPQ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) "tPV" = ( /turf/closed/wall/biodome, /area/corsat/sigma/hangar/security) +"tQa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) "tQd" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) +"tQg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"tQj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) "tQk" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"tQs" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +"tQm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/offices) -"tRA" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tQu" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"tQv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/barricade/handrail, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"tQB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "OmegaA"; + name = "Airlock Control"; + pixel_x = -5; + pixel_y = 6; + use_power = 0 }, -/area/corsat/sigma/south) -"tRC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"tQJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/cargo) +"tQU" = ( +/turf/open/floor/corsat/white/west, /area/corsat/gamma/residential/east) -"tRM" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" +"tRd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south) -"tSo" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"tRk" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/area/corsat/gamma/residential) -"tSu" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"tRy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"tRI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"tRS" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"tRW" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/gamma/hallwaysouth) +"tRZ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("sigma") +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"tSi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"tSj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/office) -"tSD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/southeast/datalab) +"tSm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"tSs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hangar) +"tSI" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"tSN" = ( +/turf/open/floor/carpet7_3/west, /area/corsat/omega/offices) -"tSE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - icon_state = "squares" +"tSP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/robotics) -"tSG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"tSS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/sigma/southeast/datamaint) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"tTb" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) "tTd" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) -"tTf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/residential) -"tTv" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ +"tTi" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "white" + network = list("sigma") }, -/area/corsat/gamma/residential/east) -"tTE" = ( +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"tTr" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/engineering) +"tTD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"tUa" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/south/offices) -"tUG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"tUO" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"tTN" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"tUj" = ( +/obj/structure/dispenser/phoron, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"tUA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/newspaper, +/turf/open/floor/corsat/red, +/area/corsat/sigma/checkpoint) +"tUB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) -"tUR" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"tUC" = ( +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential) +"tUD" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay/morgue) +"tUH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/airlock/north) -"tVr" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"tUN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"tVu" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"tVx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" + dir = 1 }, -/area/corsat/gamma/biodome/toxins) -"tVW" = ( +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/researcher) +"tUS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/omega/complex) -"tWu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control{ - id = "OmegaOffice"; - name = "Privacy Shutters"; - pixel_y = 1; - use_power = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"tVs" = ( +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tVB" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar) +"tVC" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"tVI" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/south) +"tVU" = ( +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/area/corsat/omega/offices) -"tWw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/north/id) +"tVY" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential/east) +"tWg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitetan/north, /area/corsat/gamma/canteen) +"tWp" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"tWq" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west/id) +"tWx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south/id) "tWy" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/ice, /area/corsat/gamma/biodome) -"tWD" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/mecha/odysseus/peripherals, -/obj/item/circuitboard/mecha/odysseus/main, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"tWM" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"tXa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "OmegaE"; +"tWO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; name = "Airlock Control"; - pixel_x = 8; - pixel_y = 3; - use_power = 0 + req_access_txt = "102" }, -/obj/structure/machinery/door_control{ - id = "OmegaN"; - name = "Airlock Control"; - pixel_x = -2; - pixel_y = 8; - use_power = 0 +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"tXe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "OmegaS"; - name = "Airlock Control"; - pixel_x = -2; - use_power = 0 +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"tXj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"tXx" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/airlock/north) +"tXy" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/gamma/hallwaysouth) +"tXF" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south) +"tXN" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/north, +/area/corsat/theta/airlock/control) +"tXQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/corsat/omega/airlocknorth) -"tXo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/monorail) +"tXS" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"tXU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"tXV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "Medbay"; + req_one_access = null }, -/area/corsat/sigma/hangar/office) -"tXq" = ( -/obj/structure/cargo_container/trijent/left, -/turf/open/floor/corsat{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/cargo) -"tXB" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"tYa" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/checkpoint) -"tYg" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetancorner" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"tYu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("gamma") }, -/area/corsat/gamma/canteen) +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"tYA" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) "tYF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/corsat/gamma/administration) -"tYX" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" - }, -/area/prison/hangar_storage/research/shuttle) -"tZp" = ( -/obj/structure/pipes/vents/pump{ +"tYV" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/stack/sheet/metal{ + pixel_x = 3 }, -/area/corsat/theta/airlock/control) -"tZD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Atmospherics"; - req_one_access_txt = "102" +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"tZa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"tZb" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"tZl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/atmos) -"tZN" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) -"tZT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"uag" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"tZE" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/hallwaysouth) +"tZZ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/lobby) +"uab" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/barricade/handrail{ + dir = 4 }, +/turf/open/floor/corsat/purplewhite/northeast, /area/corsat/sigma/south/complex) -"ubq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome/scrapyard) -"ubv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"uai" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"uao" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/lobby) +"uar" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"uaG" = ( +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/structure/closet/crate/freezer, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"uaJ" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar) +"uaQ" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"uaU" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"uaY" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/datalab) +"ubl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) -"ubJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/checkpoint) +"ubs" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 30 }, -/area/corsat/gamma/residential/east) -"ubW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/robotics) +"ubC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/complex) +"ubH" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/mars_cave/mars_cave_12, /area/corsat/sigma/biodome) -"ucj" = ( -/obj/structure/machinery/light{ +"ubI" = ( +/turf/open/mars_cave/mars_cave_8, +/area/corsat/sigma/biodome/gunrange) +"uch" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"ucl" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/containment) +"ucy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/platinum{ + amount = 10 }, -/area/corsat/gamma/biodome/toxins) -"uco" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/engineering) +"ucB" = ( /obj/structure/pipes/vents/pump{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"ucF" = ( +/obj/structure/machinery/computer3, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"ucK" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/gunrange) +"ucS" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/south) +"udd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/theta/biodome/complex) +"udq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"udr" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/sigma/south/offices) -"ucu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/cargo) +"uds" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering) +"udt" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south) +"udJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Food Storage"; + req_one_access = null }, -/area/corsat/gamma/biodome/toxins) -"ucx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/freezer) -"ucW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/flashbang/cluster, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +"udO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"uec" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"uem" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/sigma/south/complex) -"uez" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, -/area/corsat/gamma/hangar/arrivals) -"ueK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ +"uen" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/control) +"ueq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions/colony{ dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"ufN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Reactor Core"; - req_one_access_txt = "102" + name = "Cargo Bay"; + req_one_access_txt = "100" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"ufT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"ueu" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/airlock/control) +"uev" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/security) +"uew" = ( +/turf/open/floor/corsat/brown/southeast, +/area/corsat/omega/cargo) +"ueF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "GammaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/omega/security) -"ugy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar) +"ueQ" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/residential/lounge) +"ueR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"ufH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ + id = "OmegaS"; + name = "Omega Airlock" }, -/area/corsat/omega/control) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/omega/airlocknorth) +"ufK" = ( +/obj/structure/surface/table, +/obj/item/corncob, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"ufS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"uga" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"ugd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) "ugB" = ( /turf/closed/shuttle/ert{ icon_state = "wy12" }, /area/prison/hangar_storage/research/shuttle) -"ugC" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"ugK" = ( +"ugF" = ( /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"ugM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/corsat/gamma/cargo) -"uhx" = ( +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/blue/north, +/area/corsat/sigma/airlock/control) +"ugI" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/theta/airlock/east) +"ugW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"uhc" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"uhf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/cargo) -"uip" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "Hangar Office"; + req_access_txt = "106" }, -/area/corsat/omega/offices) -"uiW" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/office) +"uhh" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"uht" = ( +/obj/structure/sink{ dir = 8; - network = list("gamma") + pixel_x = -11 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/mirror{ + pixel_y = 24 }, +/turf/open/floor/corsat/whitebluefull/southwest, /area/corsat/gamma/biodome/complex) -"uji" = ( +"uhv" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/rnr) +"uhA" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uhC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"uhD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/browncorner/east, +/area/corsat/gamma/cargo) +"uhH" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/sigma/hangar/security) -"ujX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uhI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) +"uhO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/west) +"uhU" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"uij" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/complex) +"uil" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"uiD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"uiX" = ( +/obj/structure/machinery/computer/pandemic, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"ujc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security/cells) +"ujn" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"ujJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/blue/north, +/area/corsat/gamma/airlock/control) +"ujM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) "ukb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"ukf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +"ukw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/checkpoint) +"ukx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 }, -/area/corsat/inaccessible) -"ukz" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"ukE" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/hangar) +"ukH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/monorail/control) +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"ukR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/theta/biodome/hydrowest) "ukV" = ( /obj/structure/window_frame/corsat, /turf/open/floor/plating, /area/corsat/gamma/biodome/toxins) -"ukY" = ( +"ukW" = ( +/obj/structure/stairs{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/corsat/sigma/biodome) -"ulb" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"ula" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) "uli" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"ulq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplecorner" - }, -/area/corsat/sigma/south) -"ulr" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "whitetan" +"uls" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "16" }, -/area/corsat/gamma/canteen) -"ulC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"ulu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) +"ulv" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"ulx" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/south/offices) +"ulP" = ( +/turf/open/floor/corsat/cargo, /area/corsat/omega/hangar) -"umo" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +"umd" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"umf" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Research Desk" }, -/area/corsat/sigma/south/security) -"umz" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"umr" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome) +"umy" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/omega/offices) +"umB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering"; + req_one_access_txt = "102" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"umG" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ +/obj/item/paper, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "red" + health = 250 }, -/area/corsat/omega/security) -"umU" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"umY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/offices) -"unf" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/south/robotics) +"unb" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"unn" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" }, -/area/corsat/sigma/southeast/generator) -"unL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/hangar/monorail/control) +"unR" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"unN" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"uoh" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "greenwhite" + network = list("gamma") }, -/area/corsat/gamma/medbay/morgue) +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"uob" = ( +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/north) +"uoe" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"uor" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) "uov" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"uoQ" = ( +"uow" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/handset, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"uoz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"uoF" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"uoN" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/south) +"uoV" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"uoW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) "upe" = ( /obj/structure/machinery/computer/cameras{ network = list("sigma"); @@ -60310,75 +39656,107 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) +"uph" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"upi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo) +"upm" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/south) "upr" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"upA" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/engineering/core) -"upN" = ( -/obj/structure/machinery/power/apc/hyper{ +"upv" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - pixel_y = 24; - start_charge = 0 + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"upx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"uqb" = ( -/obj/structure/cargo_container/trijent/right, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"upz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null }, -/area/corsat/gamma/cargo) -"uqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"uqo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/airlock/west) -"urx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"uqt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/omega/complex) -"urN" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 4; - id_tag = "oxy_corsat_out" +/turf/open/floor/corsat/darkgreencorner/east, +/area/corsat/sigma/hangar/monorail) +"uqE" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/complex) +"uqF" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"uqM" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Virology Lab"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/toxins) -"urX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"urh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"uro" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/security/cells) -"usz" = ( -/obj/effect/landmark/corpsespawner/pmc, -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/checkpoint) +"urs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/omega/airlocknorth) -"usD" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/airlock/east) +"urR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"usd" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/sigma/dorms) +"usC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/sigma/checkpoint) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"usI" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) "usK" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/dirtgrassborder/south, @@ -60393,570 +39771,851 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"usW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/checkpoint) -"utp" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +"utd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"utS" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"uti" = ( +/obj/structure/platform{ + density = 0; dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"utV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 + icon_state = "platform_deco" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/hallwaysouth) +"utv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics"; + req_one_access_txt = "102" }, -/area/corsat/omega/security) -"uua" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/airlock/south) -"uuu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"uuP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"uuQ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/engineering) -"uuT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"utB" = ( +/obj/structure/pipes/trinary/mixer, +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/theta/airlock/control) +"utK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"utO" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/administration) +"utT" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"utY" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/north) +"utZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"uub" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, -/area/corsat/gamma/medbay/morgue) -"uvd" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/security) -"uvy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/freezer) +"uuf" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"uui" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/security) +"uum" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/butler, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) +"uuq" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"uuy" = ( +/obj/structure/surface/table/almayer, +/obj/item/handset, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/datalab) +"uuz" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"uuG" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Airlock Control"; + dir = 1; + name = "Security Office"; req_access_txt = "101" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/id) +"uuY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/airlock/south) -"uwo" = ( /obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/gamma/airlock/north) -"uww" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"uwy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"uwC" = ( +/obj/structure/machinery/keycard_auth/lockdown/corsat, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/gamma/administration) +"uuZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars_cave{ - icon_state = "mars_cave_15" - }, -/area/corsat/sigma/biodome) -"uwP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Arcade" - }, +/turf/open/floor/corsat/arrow_north, +/area/corsat/gamma/cargo) +"uvi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/arcade) -"uxj" = ( -/obj/structure/machinery/door/window/eastright, -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"uvt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"uvu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) -"uya" = ( -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"uvw" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/residential/researcher) -"uyd" = ( -/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"uvx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uvC" = ( +/obj/structure/closet/wardrobe, /obj/structure/machinery/camera/autoname{ dir = 4; - network = list("sigma") + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"uvQ" = ( +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"uvW" = ( +/obj/structure/machinery/door/window/eastright, +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"uwf" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"uwg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/southeast/dataoffice) -"uyg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_access_txt = "101" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"uwz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"uwD" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/sigma/hangar/arrivals) +"uwF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"uwG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/structure/machinery/light, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uwO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northeast, /area/corsat/gamma/airlock/control) -"uyw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/engineering) -"uyT" = ( +"uwT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential) -"uzl" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/hangar/monorail) -"uzS" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/asteroidwarning, +/area/corsat/sigma/biodome) +"uwW" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"uxa" = ( +/obj/structure/machinery/smartfridge/chemistry{ + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "white" +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/chemistry) +"uxi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) -"uzW" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"uxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/botanydisk, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"uxp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"uxM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue/southeast, +/area/corsat/sigma/southeast/datalab) +"uxX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"uyc" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/corsat/omega/complex) -"uAc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/south/security) +"uyf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 9 }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/airlock/south) +"uyh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"uyn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/red, +/turf/open/floor/corsat/red/north, /area/corsat/omega/hangar/security) -"uAl" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +"uyE" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"uyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"uza" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"uAN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/cargo) +"uzc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"uzr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"uAW" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"uzD" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "ThetaNorthD"; - name = "Entrance Airlock Control"; - pixel_y = 5; - use_power = 0 +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/dataoffice) +"uzG" = ( +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/administration) +"uzH" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"uzJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"uzT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"uAn" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access_txt = "102" }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"uAH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/hangar/checkpoint) "uBj" = ( /obj/structure/window/framed/corsat/hull/research, /turf/open/floor/plating, /area/corsat/omega/hallways) -"uBk" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"uBn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"uBo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/airlock/south) +"uBs" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/residential/showers) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uBu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Viro"; + name = "Virology Lockdown" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Virology Wing"; + req_access_txt = "103" + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uBv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"uBz" = ( +/turf/open/mars_cave/mars_cave_23, +/area/corsat/sigma/biodome) +"uBA" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/scalpel, +/obj/item/reagent_container/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"; + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/surgery) "uBH" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) +"uBX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("omega") + }, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/security) +"uBZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"uCf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/hangar) +"uCm" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/containment) "uCn" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"uCU" = ( -/turf/open/floor/corsat{ +"uCv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/sparker, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"uCE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"uCH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "whitetancorner" + health = 80 }, -/area/corsat/gamma/residential/west) -"uDh" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"uCL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"uCT" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"uDk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"uDp" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/airlock/east) +"uDD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/airlock/north) +"uDE" = ( +/obj/structure/machinery/smartfridge/chemistry/virology{ + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"uDT" = ( +/obj/structure/tunnel{ + id = "hole4" }, -/area/corsat/sigma/north) +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) "uDW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"uDZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/maint) +"uDY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/airlock/south) +"uEj" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome/gunrange) +"uEA" = ( +/turf/open/floor/corsat/theta, +/area/corsat/gamma/hallwaysouth) "uEC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) -"uEZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"uFg" = ( +"uEV" = ( +/turf/open/mars_cave/mars_cave_20, +/area/corsat/sigma/biodome/gunrange) +"uFc" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/omega/control) +"uFs" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegreycorner, +/area/corsat/sigma/south/offices) +"uFw" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purple" + dir = 8 }, -/area/corsat/omega/hallways) -"uFr" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"uFB" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/medbay/lobby) -"uFy" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/rnr) +"uFO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Teachers' Office"; + req_one_access = null }, -/area/corsat/omega/hallways) -"uFJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" + dir = 4 }, +/turf/open/floor/corsat/tan/north, /area/corsat/gamma/residential/west) -"uFM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/hangar) -"uGv" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydrowest) -"uGC" = ( +"uFW" = ( +/obj/structure/surface/rack, +/obj/item/cell/high, +/obj/item/cell/high, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/southeast/datamaint) +"uGc" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"uGI" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/foyer) +"uGi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/corsat/sigma/south/complex) -"uGQ" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"uGu" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"uHb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/hallways) -"uHh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/biodome/complex) +"uGE" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/checkpoint) +"uGO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"uGR" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat{ - icon_state = "purplecorner" +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/area/corsat/gamma/biodome/complex) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential/east) "uHm" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" }, /area/prison/hangar_storage/research/shuttle) +"uHo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/south/robotics) "uHr" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/south/engineering) +"uHG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"uHI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/scalpel/laser{ + pixel_y = 10 + }, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"uHX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"uIg" = ( +/obj/structure/curtain, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) "uIh" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/corsat/theta/biodome) +"uIn" = ( +/obj/structure/machinery/bot/cleanbot, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydrowest) +"uIp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "GammaBioAtmos"; + name = "Access Shutter" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uIr" = ( +/turf/open/shuttle/dropship/light_grey_middle, +/area/prison/hangar_storage/research/shuttle) +"uIz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/toxins) "uIJ" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"uIM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/biodome/toxins) -"uIX" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"uJb" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"uJQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/complex) +"uKd" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"uKf" = ( +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/gamma/hallwaysouth) -"uIZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, -/area/corsat/theta/biodome/complex) -"uJq" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +"uKm" = ( +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/south/robotics) -"uJr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast) -"uJI" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") +"uKL" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uLa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"uLd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/sigma/south) -"uJV" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"uLe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/corsat/gamma/rnr/bar) -"uKg" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" - }, -/area/corsat/omega/offices) -"uKy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"uLf" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + req_one_access_txt = "19;106;104" }, -/area/corsat/gamma/medbay/surgery) -"uKE" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"uKV" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"uLm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uLp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/gamma/hangar/cargo) -"uLN" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("sigma") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/sigma/dorms) -"uLV" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 1; + network = list("gamma") }, -/area/corsat/sigma/cargo) -"uMf" = ( -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"uLs" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"uLE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/omega/checkpoint) -"uMo" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"uMp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/corsat/theta/airlock/west) -"uMq" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"uMs" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red, +/area/corsat/sigma/south/security) +"uMu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"uMC" = ( /obj/structure/surface/table/almayer, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uME" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/residential/west) +"uMR" = ( +/obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 4; - network = list("omega") + network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"uNb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/omega/security) -"uMD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uNc" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"uNd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"uNe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"uNs" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"uNC" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/corsat/gamma/residential/east) -"uMV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/east/id) +"uNM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"uNQ" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"uOf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/omega/hangar) -"uNW" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydrowest) +"uOs" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Teleporter Power Room"; + req_one_access_txt = "103" }, -/area/corsat/theta/airlock/control) -"uOe" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/sigmaremote) +"uOt" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"uOu" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome/scrapyard) +"uOB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/theta/airlock/control) -"uOi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uON" = ( +/turf/open/shuttle/dropship/light_grey_top, +/area/prison/hangar_storage/research/shuttle) +"uOU" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/complex) +"uPb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential/east) +"uPi" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"uPk" = ( +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"uPs" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/sigma/hangar) +"uPt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, +/turf/open/mars/mars_dirt_8, /area/corsat/sigma/biodome) -"uOz" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering/atmos) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60964,130 +40623,76 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"uPK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/corsat/sigma/biodome/gunrange) -"uPR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +"uQs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/robotics) +"uQu" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"uQx" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/omega/offices) +"uQD" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"uQE" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/monorail{ + dir = 1 }, -/area/corsat/gamma/residential/east) -"uQt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"uQF" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"uQz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/hallways) +"uQG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/gamma/hallwaysouth) -"uQT" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/residential) -"uRd" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"uQL" = ( +/obj/item/cell/super/empty, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uQS" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "brown" - }, -/area/corsat/omega/hallways) -"uRp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "gamma" - }, -/area/corsat/gamma/residential/east) -"uRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/sigma/south/security) -"uRw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" + network = list("omega") }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west/id) +"uRc" = ( +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"uRf" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) "uRA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"uRC" = ( -/obj/structure/machinery/botany{ - name = "hydroponics tray" - }, +"uRP" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"uRY" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hydroponics) -"uRQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"uRU" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/corsat/sigma/southeast/datamaint) -"uSc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/sigma/south/complex) -"uSi" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" - }, -/area/corsat/gamma/hangar/monorail) +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/checkpoint) "uSk" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -61097,27 +40702,19 @@ }, /turf/open/floor/plating, /area/corsat/sigma/hangar/security) -"uSy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_north" - }, -/area/corsat/gamma/cargo) -"uSz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +"uSJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/rnr) -"uSM" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south) +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"uSS" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential) "uST" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer/emails{ @@ -61126,25 +40723,34 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/wood, /area/corsat/gamma/residential/researcher) +"uTb" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) "uTf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/corsat/theta/biodome) -"uTg" = ( -/obj/structure/safe, -/obj/item/device/locator, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/sigmaremote) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"uTx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/crap_item, +/obj/structure/platform{ + dir = 8; + layer = 2.8 }, -/area/corsat/gamma/freezer) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/north) +"uTC" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/north) +"uTE" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) "uTU" = ( /obj/structure/closet/crate/trashcart, /obj/structure/machinery/light/small{ @@ -61153,6 +40759,29 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) +"uTX" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"uUf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydrowest) +"uUi" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"uUj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/theta/airlock/control) "uUk" = ( /obj/structure/cryofeed{ color = "silver"; @@ -61166,62 +40795,117 @@ }, /turf/open/floor/corsat, /area/corsat/gamma/sigmaremote) -"uUW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uUr" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"uUs" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "SigmaWestD"; + name = "Sigma Dome Airlock" }, -/area/corsat/omega/hangar/security) -"uVe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/control) +"uUE" = ( +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock/master, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"uUU" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"uVn" = ( +/obj/structure/safe, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"uVz" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/gamma/hallwaysouth) -"uVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/handset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegrey" +/obj/structure/window/reinforced{ + dir = 1; + layer = 2 }, -/area/corsat/sigma/southeast/datalab) -"uVo" = ( -/obj/structure/machinery/light{ +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"uVG" = ( +/turf/open/floor/corsat/greenwhitecorner/east, +/area/corsat/gamma/medbay/chemistry) +"uVK" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/sigma/hangar) +"uVU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 4 }, -/area/corsat/sigma/south) -"uVD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/landing/console2) +"uVY" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth/id) +"uWl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/south/security) +"uWm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/cargo) +"uWC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Gamma Dome Control"; + req_access_txt = "101" }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) -"uVH" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +"uWG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Laboratory"; + req_access_txt = "103" }, -/area/corsat/sigma/hangar/checkpoint) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "uWJ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/rnr/arcade) -"uXa" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/theta/airlock/control) +"uWM" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"uWR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"uWV" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/south) +"uXh" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/sigma/north) "uXk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -61229,169 +40913,172 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"uXw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/dorms) -"uXL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"uXq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "OmegaOffice"; + name = "Privacy Shutters" }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"uXI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/security) +"uXK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/toxins) +"uXQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) "uXU" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/ice, /area/corsat/gamma/biodome) -"uYb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" - }, -/area/corsat/sigma/biodome) -"uYe" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"uYq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/canteen) -"uYR" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/omega/security) -"uZh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen/blue, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"uXY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/biodome/complex) -"uZA" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/south/offices) +"uXZ" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"uYd" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/checkpoint) -"uZL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/freezer) -"uZM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) +"uYl" = ( +/obj/structure/machinery/camera/autoname{ + network = list("gamma") }, -/area/corsat/gamma/airlock/control) -"vad" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hangar) +"uYt" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"vaj" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"uYD" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"uYK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"uYO" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/engineering) +"uZs" = ( +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/south) -"val" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +"uZR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Hangar Security"; + req_access_txt = "101" }, -/area/corsat/omega/complex) +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"vah" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) "var" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vaw" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +"vas" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/blue/west, +/area/corsat/theta/airlock/control) +"vaz" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaGrounds"; + name = "Testing Grounds" + }, +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/biodome/testgrounds) +"vaH" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) "vaI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vaK" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"vaY" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"vbv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"vbB" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"vaL" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/residential/researcher) -"vbW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/almayer/research/containment/entrance/west, +/area/corsat/inaccessible) +"vaW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"vbh" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"vbj" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/residential) -"vcs" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) +"vbo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"vbz" = ( +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"vbG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"vbI" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/pmc, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"vbK" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"vbR" = ( +/turf/open/mars_cave/mars_cave_4, +/area/corsat/sigma/biodome/scrapyard) +"vce" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) "vcx" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/vents/pump, @@ -61404,1337 +41091,2041 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vcJ" = ( +"vcH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" + dir = 4 }, -/area/corsat/sigma/biodome) +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/sigma/south/complex) +"vcO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/chips, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"vcR" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/brown/southeast, +/area/corsat/sigma/cargo) +"vcV" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) "vda" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/corsat/gamma/residential/west) -"vdt" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +"vdj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east) +"vdq" = ( +/obj/structure/bed, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/security/cells) +"vdB" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/security) +"vdC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/corsat/sigma/south/complex) -"vfb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) +"vdH" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"vdR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/cargo) -"vfd" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vea" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/sigma/dorms) +"ven" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/omega/complex) +"veo" = ( +/turf/open/mars/mars_dirt_10, +/area/corsat/sigma/biodome) +"vev" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Secondary Generators"; + req_one_access_txt = "102" }, -/area/corsat/gamma/rnr) -"vff" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"vex" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"veD" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/omega/control) +"veG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") + }, +/turf/open/floor/corsat/blue/northeast, +/area/corsat/gamma/airlock/control) +"veR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"vfe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/corsat/gamma/administration) -"vfK" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/rad, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"vfm" = ( +/obj/structure/sink{ + pixel_y = 25 }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"vfw" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/prison/hangar_storage/research/shuttle) +"vfx" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"vfJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"vfM" = ( +/turf/open/floor/corsat/yellowcorner, +/area/corsat/gamma/engineering/core) +"vfQ" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/south) "vfR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/ice, /area/corsat/gamma/biodome) -"vgl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"vfY" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"vgh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"vgm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"vgs" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/biodome/virology) +"vgu" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/airlocknorth) +"vgv" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/area/corsat/theta/biodome/complex) -"vgn" = ( -/obj/structure/bed/chair{ +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/hangar/security) +"vgz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/omega/cargo) +"vgF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"vgV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreencorner" +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("omega") + }, +/turf/open/floor/corsat/red/east, +/area/corsat/theta/airlock/west) +"vgM" = ( +/obj/structure/closet/wardrobe, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"vgN" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/theta/airlock/control) +"vhb" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/residential) +"vhh" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Hangar Office" }, -/area/corsat/gamma/hallwaysouth) -"vhg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/cargo) -"vht" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/airlock/south/id) -"vhz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"vhi" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/sigma/south/robotics) +"vhj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"vhN" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"vhl" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/north) +"vhr" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red, +/area/corsat/theta/airlock/control) +"vhA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"vhG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Theta"; + req_one_access_txt = "103" }, -/area/corsat/gamma/residential/west) -"vhS" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vhY" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/turf/open/floor/corsat{ +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - icon_state = "red" + name = "Identification Desk"; + req_access_txt = "104" }, -/area/corsat/sigma/hangar/checkpoint) -"vhU" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "SigmaEastID"; + name = "Security Shutters" }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/east/id) "vhZ" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"vic" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/sigma/south/complex) -"vii" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/corsat/omega/offices) +"vif" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"vih" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/virology) +"vik" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/omega/hangar/security) "vim" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/corsat, /area/corsat/omega/maint) -"viq" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/hangar/arrivals) -"viL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/corsat/omega/control) -"vjb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/gamma/hangar/office) -"vjd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ +"vir" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"viF" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "red" - }, -/area/corsat/omega/hangar/office) -"vjA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar/monorail/control) +"viP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/lobby) +"vjh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/monorail/control) +"vjp" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential) +"vjx" = ( +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"vjy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "25" }, -/area/corsat/sigma/south) -"vjF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"vjC" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/researcher) -"vjW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/datalab) -"vka" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"vjD" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/corsat_bio_lock, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"vjH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"vkh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hangar/monorail/control) -"vkq" = ( -/obj/structure/computer3frame/server{ - icon_state = "4" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +"vkx" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/north) +"vkI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/sigmaremote) -"vks" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vkU" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"vkt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/control) -"vkO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"vkW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"vle" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/hangar/flightcontrol) +"vlk" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"vlE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Monorail Control"; + req_access_txt = "101" }, -/area/corsat/sigma/hangar) -"vlv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/security) -"vme" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/hangar/security) -"vmh" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/checkpoint) -"vmm" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"vlG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/hydroeast) +"vmn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/omega/complex) +"vmo" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"vmx" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"vmE" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "5" }, -/area/corsat/gamma/biodome/complex) -"vmJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"vmO" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"vmU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/cargo) +"vmY" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/complex) +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo/disposal) "vnc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/beachcorner/south_west, /area/corsat/theta/biodome) -"vnF" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/complex) -"vnH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"vnr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/corsat/omega/maint) +"vnt" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) -"voj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/rnr) -"voo" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"vnu" = ( +/obj/effect/alien/weeds/node, +/turf/open/mars_cave/mars_cave_18, +/area/corsat/sigma/biodome) +"vnx" = ( +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/gamma/biodome/virology) +"vnQ" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar) +"vnS" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/theta/airlock/control) +"vod" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"voq" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south) -"voF" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"voM" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/southeast/datalab) +"voD" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("gamma") }, -/area/corsat/gamma/biodome/complex) -"vpl" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" +/turf/open/floor/corsat/green/east, +/area/corsat/gamma/medbay/morgue) +"voN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/residential/maint) +"voQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/omega/hangar) -"vpT" = ( -/obj/structure/closet/crate/science, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/corsat/sigma/cargo) -"vqA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, -/area/corsat/gamma/hallwaysouth) -"vqF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - damage_cap = 4000; - name = "\improper Emergency Access"; - req_access_txt = "100"; - req_one_access = null +"voS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/south/security) +"vpV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"vqe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/emergency_access) -"vqP" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, -/area/corsat/gamma/engineering) -"vrx" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/obj/structure/machinery/door_control{ + id = "SigmaHangarC-E"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/biodome/complex) -"vrA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails{ - dir = 8 +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/security) +"vqg" = ( +/obj/item/paper, +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"vqk" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) +"vql" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vqq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/sigmaremote) -"vrC" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/purplecorner/east, +/area/corsat/omega/airlocknorth) +"vqv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"vsg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"vqQ" = ( +/obj/structure/closet/l3closet/general, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"vqX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/sigma/hangar/arrivals) -"vsn" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/sigma/southeast/dataoffice) +"vry" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/igniter, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/sigma/south/complex) +"vrF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/cargo) -"vsu" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vrH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vrJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"vrM" = ( +/turf/open/floor/corsat/greenwhitecorner/north, +/area/corsat/gamma/medbay) +"vrX" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"vsb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/deck, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"vse" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"vsw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/sigma/south/complex) -"vsN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"vsz" = ( +/turf/open/floor/plating/warnplate/north, +/area/corsat/omega/hangar) +"vsF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/cargo) +"vsV" = ( +/obj/structure/closet/crate, +/obj/item/robot_parts/robot_component/actuator, +/obj/item/robot_parts/robot_component/armour, +/obj/item/robot_parts/robot_component/camera, +/obj/item/robot_parts/robot_component/diagnosis_unit, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"vsX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("theta") }, -/area/corsat/gamma/hallwaysouth) -"vsP" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west) +"vtd" = ( +/turf/open/floor/corsat/lightplate, +/area/corsat/omega/complex) +"vte" = ( +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"vtj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"vtz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/east, +/area/corsat/sigma/southeast/datalab) +"vtL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"vth" = ( +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/researcher) +"vtM" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/omega/hallways) +"vtW" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"vtk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/biodome/virology) -"vtq" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/device/assembly/mousetrap, +/obj/item/device/assembly/mousetrap, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"vuc" = ( +/turf/open/floor/asteroidwarning/west, +/area/corsat/sigma/biodome) +"vug" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"vui" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"vuj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/omega/offices) +"vum" = ( +/turf/open/floor/corsat/blue, /area/corsat/sigma/southeast) +"vuo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/corsat/bluegrey, +/area/corsat/theta/airlock/east) "vuq" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"vur" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/arrivals) -"vuu" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "officesquares" +"vuI" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/airlock/control) +"vuU" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/southwest, +/area/corsat/omega/offices) +"vvh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/east, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/west/id) +"vvp" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/corsat/gamma/administration) -"vwu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/door/window/southleft{ + dir = 1; + layer = 2.8 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"vvt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"vvH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/robotanalyzer, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"vvJ" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/airlocknorth/id) +"vvL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/foyer) -"vxb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Baths" +/turf/open/floor/corsat/redcorner, +/area/corsat/sigma/hangar/security) +"vwf" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"vwq" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "riot cabinet"; + req_access_txt = "100" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"vwT" = ( +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/canteen) +"vxl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/airlock/control) +"vxw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/showers) -"vxj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"vxA" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/corsat/gamma/residential/east) -"vxk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"vxH" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/obj/structure/window/reinforced, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/administration) +"vxM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"vxv" = ( -/obj/structure/pipes/standard/cap/hidden{ +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar) +"vxQ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor5" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"vyv" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Autopsy"; + req_one_access_txt = "103" }, -/area/corsat/theta/biodome/complex) -"vyk" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/medbay/morgue) -"vyA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/sigma/southeast/datalab) +"vyy" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/office) "vyB" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/mars, /area/corsat/sigma/biodome) -"vyH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/theta/airlock/control) -"vyR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"vyY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ +"vyL" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"vyV" = ( +/obj/structure/morgue{ + dir = 8 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"vyX" = ( +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/north) "vza" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/pipes/vents/pump, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vzc" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south) -"vzp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "bluegrey" - }, -/area/corsat/sigma/southeast/dataoffice) -"vzv" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "squares" +"vze" = ( +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/sigma/south/complex) +"vzs" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/area/corsat/sigma/south/robotics) -"vzA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoN"; - name = "Hangar Lockdown"; - use_power = 0 +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/gamma/residential/east) +"vzu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications"; + req_one_access_txt = "102" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/id) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/generator) +"vzz" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) "vzK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"vzV" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/complex) -"vAm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +"vzO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("sigma") }, -/area/corsat/gamma/residential/east) +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/airlock/south/id) +"vzR" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/checkpoint) +"vzW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/form_printer, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/omega/complex) +"vzY" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/checkpoint) +"vAs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "vAP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"vAX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"vAS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Sigma Dome Control"; + req_one_access_txt = "102" }, -/area/corsat/sigma/south/security) -"vBb" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellow/west, +/area/corsat/sigma/airlock/control) +"vBe" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/omega/cargo) +"vBv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/omega/containment) -"vBS" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreen" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vBB" = ( +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/cargo) +"vBE" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/corsat/sigma/hangar/arrivals) -"vCj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating/warnplate, +/area/corsat/gamma/hangar) +"vBL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/sigma/biodome) -"vCo" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "greenwhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/southeast) +"vBO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"vCr" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/tool/mop, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"vBX" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/researcher) +"vBZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, -/area/corsat/theta/biodome/hydroeast) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"vCp" = ( +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) "vCx" = ( /turf/closed/wall/resin/membrane, /area/corsat/omega/biodome) -"vCR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhitecorner" - }, +"vCB" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"vCF" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/hangar/arrivals) +"vCL" = ( +/turf/open/floor/corsat/greenwhitecorner/east, /area/corsat/gamma/medbay/lobby) -"vCS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vCN" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) +"vDe" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "Computer Room"; + req_one_access = null }, -/area/corsat/sigma/biodome) -"vDg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vDk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/syringes, +/turf/open/floor/corsat/greenwhite/southwest, +/area/corsat/gamma/medbay/chemistry) +"vDr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"vDD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"vDP" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/red, +/area/corsat/gamma/security) +"vDW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/whitecorner, +/area/corsat/sigma/dorms) +"vDY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"vEa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/east) -"vDt" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"vEf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/canteen) +"vEh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hydroponics) -"vDu" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"vEj" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"vEl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"vDF" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "blue" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"vEn" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/sigma/south/security) +"vEu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/airlock/control) -"vEs" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/monorail/control) +"vEv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/security) +"vEx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/corsat/omega/hangar/security) +"vEy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/sigma/airlock/south) +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"vEI" = ( +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) "vEK" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"vEM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/southeast/datamaint) -"vEY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/corsat{ - icon_state = "greenwhite" +"vEV" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + id = "GammaCheckpointS"; + name = "Gamma Checkpoint"; + unacidable = 1 }, -/area/corsat/gamma/medbay) -"vFf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/hangar/checkpoint) +"vEW" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/sigma/south/offices) +"vFq" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/corsat/theta/biodome/complex) -"vFk" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/sigma/hangar) -"vFm" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"vFC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/sigmaremote) -"vFo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"vFF" = ( +/obj/structure/showcase{ + icon_state = "hub"; + name = "Telecommunication Hub" }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"vFG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar) "vFJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/mars, /area/corsat/sigma/biodome) -"vFL" = ( +"vFX" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/hangar_storage/research/shuttle) +"vFZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/corsat/gamma/security/cells) -"vGn" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/complex) -"vGz" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south/id) +"vGc" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"vGm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"vGo" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, /area/corsat/gamma/sigmaremote) -"vGW" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" - }, -/area/corsat/omega/hallways) -"vHf" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +"vGp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"vGv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen, +/area/corsat/sigma/hangar/arrivals) +"vGC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/southeast/datalab) +"vGG" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) +"vGQ" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering/atmos) +"vGX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/hangar/cargo) +"vHd" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar) +"vHe" = ( +/obj/structure/largecrate/chick, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"vHx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"vHg" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/gamma/hangar/cargo) +"vHj" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"vHm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"vHM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/turf/open/floor/corsat/gamma, +/area/corsat/gamma/residential/east) +"vHA" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/south/id) +"vHS" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"vHZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"vHP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "spiralplate" +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"vIa" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/omega/offices) -"vHQ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"vIe" = ( +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"vIq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/red, +/area/corsat/gamma/airlock/south) +"vIr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail/control) +"vJa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"vJb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("gamma") }, -/area/corsat/sigma/cargo) -"vHU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/south) +"vJe" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast) +"vJn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/lavatory) -"vIb" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"vJC" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"vJr" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/control) +"vJH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"vJI" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) -"vJz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/monkeycubes/farwacubes, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"vKa" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"vKj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"vKq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hangar/cargo) +/turf/open/floor/corsat/brown/east, +/area/corsat/gamma/hallwaysouth) +"vKA" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential) "vKH" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/corsat/theta/biodome) -"vKN" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/lobby) -"vLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"vLO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"vKM" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/sigma/south/offices) +"vKW" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/hydroponics) -"vLQ" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"vLd" = ( +/obj/structure/machinery/light, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential) +"vLe" = ( +/turf/open/floor/corsat/arrow_west, +/area/corsat/gamma/engineering/core) +"vLp" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "lightplate" - }, -/area/corsat/gamma/biodome/virology) -"vLX" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"vLZ" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/corsat/spiralplate, /area/corsat/omega/offices) -"vMA" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"vMI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainence"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"vLT" = ( +/obj/structure/stairs, +/turf/open/floor/corsat/white/north, +/area/corsat/sigma/south) +"vMb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"vMG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/corsat/gamma/freezer) -"vMM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"vMP" = ( +/turf/open/floor/corsat/bluegrey/east, +/area/corsat/omega/offices) +"vNa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/sigma, +/area/corsat/sigma/hangar/id) +"vNd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/foyer) -"vMV" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/southeast/datalab) +"vNt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential/east) -"vMX" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 1 }, -/area/corsat/sigma/south/engineering) -"vNe" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"vNF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/hangar) -"vND" = ( +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"vNJ" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"vNX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/airlock/control) +"vOb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/hangar/security) +"vOg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/airlock/south) -"vNM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/researcher) +"vOi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/cargo) +"vOn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/omega/hangar/office) -"vOh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/theta/biodome/complex) +"vOr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/gamma/biodome/virology) +"vOx" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/turf/open/floor/corsat/brown, +/area/corsat/gamma/cargo) +"vOL" = ( +/obj/structure/machinery/door_control{ + id = "GammaSecC"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 }, -/area/corsat/gamma/residential/east) -"vOw" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/security) +"vOP" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"vOQ" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/corsat/gamma/residential/west) +"vOS" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" }, -/area/corsat/sigma/hangar/monorail) -"vOK" = ( +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/sigma/airlock/control) +"vOX" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/north) +"vOY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/arrow_west, +/area/corsat/omega/hangar) +"vPb" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/sigma/south) +"vPr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/theta/biodome/hydrowest) -"vPM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/morgue) +"vPt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/theta/biodome/complex) +"vPy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"vPG" = ( +/obj/item/device/assembly/voice, +/obj/structure/surface/rack, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"vPN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/airlocknorth) +"vPP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/sigmaremote) "vQg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"vQs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "red" +"vQi" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/hangar/monorail) +"vQo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/hangar/monorail/control) -"vQt" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purple" +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"vQH" = ( +/obj/effect/landmark/corpsespawner/wysec, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"vQN" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"vQO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance"; + req_one_access = null }, -/area/corsat/sigma/south) -"vQA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"vRb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"vRh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/hangar/monorail) +"vRm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/white/southwest, +/area/corsat/gamma/hallwaysouth) +"vRn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/corsat/darkgreencorner/west, +/area/corsat/gamma/foyer) +"vRo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/brown/west, +/area/corsat/gamma/cargo) +"vRq" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, +/turf/open/shuttle/escapepod/floor2, /area/corsat/theta/biodome/complex) -"vRc" = ( +"vRI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/omega/maint) +"vRJ" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass{ + dir = 1 }, -/area/corsat/gamma/rnr) -"vSa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/red, +/area/corsat/gamma/hangar/cargo) +"vSm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/security) -"vSE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greenwhite" +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"vSA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/corsat/gamma/medbay) -"vSF" = ( +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/residential/researcher) +"vSQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"vSS" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/biodome) -"vTr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/whitetan/southwest, +/area/corsat/gamma/residential/west) +"vSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/corsat/theta/biodome/hydroeast) -"vTF" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/toxins) +"vTa" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/corsat/gamma/biodome/toxins) -"vTT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"vTf" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood, -/area/corsat/gamma/administration) -"vUl" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/gamma/cargo) +"vTk" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"vTt" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"vTu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/monorail) +"vTE" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/browncorner/west, +/area/corsat/gamma/cargo) +"vTG" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"vUn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/theta/biodome/complex) +"vTL" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - name = "Omega Dome Control"; - req_one_access_txt = "102" + name = "Identification Desk"; + req_access_txt = "104" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaCSC"; + name = "Security Shutters" }, +/turf/open/floor/corsat/plate, /area/corsat/omega/control) -"vVc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +"vTR" = ( +/obj/structure/platform{ + density = 0; + dir = 4; + icon_state = "platform_deco" }, -/area/corsat/gamma/residential/east) -"vVA" = ( -/obj/structure/machinery/light, +/turf/open/floor/corsat/whitecorner/north, +/area/corsat/sigma/south) +"vTT" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "purplewhite" + dir = 8 }, -/area/corsat/theta/biodome/hydrowest) -"vVI" = ( +/turf/open/floor/wood, +/area/corsat/gamma/administration) +"vUa" = ( +/turf/open/floor/almayer/tcomms, +/area/corsat/gamma/sigmaremote) +"vUk" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/redcorner/north, +/area/corsat/theta/airlock/control) +"vUq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/gamma/airlock/north) -"vVJ" = ( -/obj/structure/bed/chair/comfy/black{ +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/hangar/id) +"vUt" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/omega/hangar) +"vUu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay) -"vVO" = ( -/obj/item/stool, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"vVU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/cargo) +"vUW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/south) -"vWM" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/sigma/south) +"vUX" = ( +/obj/structure/closet/l3closet/general, /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "white" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"vUY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential/researcher) -"vXy" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/generator) +"vVj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/north, +/area/corsat/gamma/security/cells) +"vVy" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"vVN" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "whitecorner" + network = list("gamma") }, -/area/corsat/sigma/south) -"vYe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"vVP" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/gm/dirt, -/area/corsat/theta/biodome) -"vYt" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/foyer) +"vWg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"vWo" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar) +"vWx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"vWF" = ( +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/hallways) +"vWG" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/south/offices) +"vWK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"vXg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"vXv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/mars/mars_dirt_14, +/area/corsat/sigma/biodome) +"vXB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/white, +/area/corsat/sigma/dorms) +"vXC" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "East Hydroponics Wing"; + req_one_access_txt = "103" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"vXM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/atmos) +"vXR" = ( +/obj/structure/machinery/botany{ + name = "hydroponics tray" }, -/area/corsat/gamma/foyer) -"vYY" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"vXZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/engineering) +"vYc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/engineering) -"vZD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"vYe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/sigma/hangar/monorail) +/turf/open/gm/dirt, +/area/corsat/theta/biodome) +"vYp" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) +"vYy" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/omega/complex) +"vYG" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/purple, +/area/corsat/omega/hallways) +"vYO" = ( +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/omega/hallways) +"vYX" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/security) +"vZv" = ( +/turf/open/floor/corsat/blue, +/area/corsat/sigma/north) +"vZz" = ( +/obj/structure/machinery/door_control{ + id = "Viro"; + name = "Lab Lockdown"; + pixel_x = 24; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/virology) +"vZI" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/maint) "vZJ" = ( /obj/effect/alien/weeds/node, /turf/closed/wall/resin/membrane, /area/corsat/omega/biodome) -"wah" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "ID Checkpoint"; - req_access_txt = "101" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/id) -"waF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"vZK" = ( +/turf/open/floor/corsat/browncorner/east, +/area/corsat/sigma/cargo) +"vZO" = ( +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/structure/closet/secure_closet/guncabinet{ + name = "explosives cabinet"; + req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"wap" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"wax" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/west) +"waA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/rnr) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"waR" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"waU" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/hangar/monorail) "wbf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/gm/coast/beachcorner/south_east, /area/corsat/theta/biodome) -"wbK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"wbo" = ( +/obj/structure/surface/table, +/obj/item/book, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"wbz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/southeast/generator) +"wbA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/corsat/sigma/dorms) -"wcn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/blue/northeast, +/area/corsat/theta/airlock/control) +"wbR" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"wbY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/airlock/control) +"wct" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/corsat/gamma/rnr/arcade) +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"wcu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/wrench, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) "wcw" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"wcB" = ( +"wcA" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"wcC" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"wcJ" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wcM" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"wcS" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/gamma/hallwaysouth) +"wcU" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/complex) +"wcY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") + }, +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/hangar) +"wcZ" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/northwest, +/area/corsat/gamma/residential/west) +"wdv" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/gamma/hangar/arrivals) +"wdw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Firing Range"; + req_one_access_txt = "106;102;103"; + use_power = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wdy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_3" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/checkpoint) +"wdE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaO"; + name = "Dome Lockdown"; + use_power = 0 }, -/area/corsat/sigma/biodome) -"wda" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/corsat/red/southeast, +/area/corsat/omega/airlocknorth) +"wdG" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/security) +"wdO" = ( +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/south/offices) +"wdR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/control) +"wdZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/corsat/sigma/south/security) -"wdn" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"wec" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/item/organ/lungs, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"wee" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"wei" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("sigma") }, -/area/corsat/gamma/medbay/chemistry) -"wea" = ( -/obj/structure/surface/rack, -/obj/item/storage/photo_album, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"weG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/tcomms/southwest, +/area/corsat/gamma/sigmaremote) +"weJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"weY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/prison/hangar_storage/research/shuttle) +"wfc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"wfA" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "red" + name = "Warden's Office"; + req_access_txt = "101" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "OmegaWarden"; + name = "Privacy Shutters" }, -/area/corsat/omega/hangar/security) -"wet" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"wfI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/security) +"wfN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 + icon_state = "SE-out" }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, /area/corsat/sigma/south/complex) -"wfn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"wfD" = ( -/obj/structure/tunnel{ - id = "hole0" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/biodome) -"wfK" = ( +"wgh" = ( +/turf/open/floor/corsat/whitetancorner, +/area/corsat/sigma/dorms) +"wgp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"wgs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"wgI" = ( +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/brown/east, +/area/corsat/omega/cargo) +"wgL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/residential/east) +"wgU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/sigma/south/complex) -"wfL" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering/atmos) +"wgX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/hangar/monorail/control) "wgY" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -62744,32 +43135,75 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/gamma/hangar/monorail) -"whe" = ( -/obj/structure/barricade/handrail{ - layer = 3 +"whg" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" }, -/obj/structure/barricade/handrail{ +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"whm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/gamma/engineering) +"whp" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/white/northwest, +/area/corsat/gamma/residential) +"whr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/residential) +"whv" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"whF" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south) -"wie" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/residential/west) +"whJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/security) -"wim" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"whY" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay/lobby) +"wic" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/south/robotics) +"wil" = ( /obj/structure/bed/chair/office/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/office) +"wip" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome) +"wir" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/security) +"wit" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome) "wiF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/ice, @@ -62778,121 +43212,138 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/west, /area/corsat/theta/biodome) -"wiQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 +"wiN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"wiS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"wjf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Complex Sigma"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wjt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/omega/hallways) -"wjb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"wjy" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/theta/biodome/complex) +"wjB" = ( +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/airlock/north) +"wjC" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"wjE" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/corsat/gamma/hangar/monorail/railcart) -"wji" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"wjF" = ( +/obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"wjn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "GammaSouthN"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = 6; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSouthS"; - name = "Airlock Control"; - pixel_x = -5; - pixel_y = -3; - use_power = 0 - }, -/obj/structure/machinery/door_control{ - id = "GammaSouthAirlockC"; - name = "Security Shutters"; - pixel_x = 5; - pixel_y = 2; - use_power = 0 - }, -/obj/structure/machinery/camera/autoname{ - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south) -"wjw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/hydrowest) +"wjG" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/foyer) +"wjT" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_17, +/area/corsat/sigma/biodome/gunrange) +"wjX" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/hangar/office) +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"wka" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/residential) +"wkb" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/whitetan/north, +/area/corsat/sigma/dorms) "wkm" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"wkr" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"wkG" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, -/area/corsat/sigma/south/security) -"wlc" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +"wkt" = ( +/turf/open/floor/corsat/tcomms/southwest, /area/corsat/gamma/sigmaremote) -"wlj" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/hangar/office) -"wlt" = ( -/obj/structure/machinery/light{ - dir = 8 +"wkC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"wkH" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/airlock/control) +"wkJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/surgery) +"wlf" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/hangar/checkpoint) +"wlm" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet14_10/west, +/area/corsat/omega/offices) +"wlr" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/omega/hallways) +"wlv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/cargo) +"wlH" = ( +/obj/item/clothing/mask/gas, /obj/structure/surface/rack, -/obj/item/device/reagent_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/toxins) +"wlW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "SigmaIDSC"; + name = "Security Shutters"; + use_power = 0 }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/south/id) "wlY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/corsat/theta/biodome) +"wmd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/complex) "wmf" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/wood, @@ -62901,71 +43352,86 @@ /obj/structure/largecrate/random/barrel, /turf/open/floor/corsat, /area/corsat/sigma/hangar) -"wmj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ +"wmB" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"wmF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "purple" + health = 250 }, -/area/corsat/omega/complex) -"wmr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/emails, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = list("gamma") }, -/area/corsat/gamma/sigmaremote) -"wmE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"wmK" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" - }, -/area/corsat/gamma/residential/east) -"wmU" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/gamma/hangar/arrivals) +"wmP" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, -/area/corsat/sigma/hangar) -"wmV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/organ/brain, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"wmR" = ( +/obj/structure/surface/table/almayer, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"wmT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/south/offices) +"wnb" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Hypersleep Chamber"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"wni" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/whitecorner, /area/corsat/gamma/residential/east) -"wnB" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south/complex) -"wnJ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +"wnn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("theta") }, -/area/corsat/gamma/residential/east) -"wnL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/blue/east, +/area/corsat/theta/airlock/control) +"wnA" = ( +/obj/item/alien_embryo{ + color = "#00ff80"; + name = "corrupted alien embryo" }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/inaccessible) +"wnC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast/datalab) +"wnE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/corsat/omega/hangar) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) "wnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -62975,91 +43441,173 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"wop" = ( +"wnP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"wnV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"wnY" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/theta/airlock/control) +"woc" = ( +/obj/item/trash/candy, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"woe" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"wof" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"woi" = ( +/turf/open/floor/corsat/whitetancorner/east, +/area/corsat/gamma/residential/researcher) +"woj" = ( +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"won" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/sigma/cafe) +"woq" = ( +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/item/alien_embryo, +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"woz" = ( -/obj/structure/safe, -/obj/item/device/yautja_teleporter, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"woy" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/sigma/airlock/control) +"woB" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/engineering/core) +"woK" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/purplewhite, /area/corsat/gamma/sigmaremote) -"wpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/monorail) -"wpA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +"woU" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/sigma/north) +"wpb" = ( +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/hallways) +"wpo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/bluegrey, +/area/corsat/omega/offices) +"wpq" = ( +/obj/structure/barricade/handrail{ + layer = 3 }, -/area/corsat/gamma/hangar/arrivals) -"wpO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Engineering"; - req_one_access_txt = "102" +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"wpr" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/south/robotics) +"wpw" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/almayer/plating_striped, +/area/corsat/gamma/sigmaremote) +"wpF" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/theta/airlock/control) +"wpG" = ( +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome/scrapyard) +"wpK" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Gamma Landing Zone" + }, +/turf/open/floor/plating, +/area/corsat/gamma/hangar) "wpV" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"wpZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"wqg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"wqi" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/science, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"wqs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/hangar/security) -"wqn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/bluecorner, +/area/corsat/gamma/airlock/control) +"wqF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/biodome/complex) -"wqr" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/red/east, +/area/corsat/omega/checkpoint) +"wqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hangar) -"wqN" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"wqP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"wqO" = ( +/turf/open/floor/corsat/brown/northeast, +/area/corsat/gamma/cargo) +"wqV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"wrq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/area/corsat/omega/hangar) -"wrd" = ( -/obj/structure/surface/rack, -/obj/item/restraints, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/east/id) +"wrw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/prison/hangar_storage/research/shuttle) +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"wrx" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/gamma/airlock/control) "wrC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/vents/pump{ @@ -63067,52 +43615,53 @@ }, /turf/open/gm/dirtgrassborder/south, /area/corsat/theta/biodome) -"wrR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"wrX" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"wrK" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/checkpoint) +"wrQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/sigma/south/security) -"wsn" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"wrS" = ( +/obj/structure/machinery/processor, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"wsp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"wsC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/sigma/airlock/control) +"wsD" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"wss" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" + dir = 4 }, -/area/corsat/sigma/hangar/id) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) "wsJ" = ( /turf/open/floor/corsat, /area/corsat/sigma/hangar/checkpoint) -"wsQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Construction Yard"; - req_one_access_txt = "102" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/robotics) -"wtu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("sigma") - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +"wsP" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/clonepod, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/south/engineering) +"wtp" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) +"wtx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) "wtM" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -63120,238 +43669,356 @@ }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"wuh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/south/id) -"wui" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/gamma/hallwaysouth) -"wuC" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/corsat/gamma/kitchen) -"wuK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "GammaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +"wtQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, +/area/corsat/theta/biodome/hydroeast) +"wtZ" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;106;102" }, +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"wus" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"wuy" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.7 }, -/area/corsat/gamma/hangar) +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) "wuS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"wvx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"wuT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/gamma/sigmaremote) +"wuU" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/corsat/omega/biodome) +"wvj" = ( +/obj/structure/surface/table, +/obj/item/book, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"wvp" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/capacitor/super, +/turf/open/floor/corsat/yellow/north, +/area/corsat/omega/maint) +"wvq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/corsat/red/northeast, +/area/corsat/theta/airlock/west/id) +"wvF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"wvG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat, +/area/corsat/sigma/south/robotics) +"wvI" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor{ +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "asteroidfloor" + pixel_y = 2 }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"wvJ" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, /area/corsat/sigma/biodome/gunrange) -"wvG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat, -/area/corsat/sigma/south/robotics) "wvK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"wvN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/west) +"wvL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/brown/west, +/area/corsat/sigma/cargo) +"wvY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/residential) "wvZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"wwi" = ( -/obj/structure/machinery/computer/area_atmos/area, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/gamma/engineering/atmos) -"wwB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow{ - name = "pool" +"wwg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/bluecorner/east, +/area/corsat/sigma/hangar) +"wwh" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/north, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/monorail) +"wwq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/residential/showers) -"wwC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/freezer) +"wwu" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/corsat/gamma/hangar/arrivals) -"wwE" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"wwK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Medical Bay"; + req_one_access = null }, -/area/corsat/sigma/cargo) -"wwQ" = ( -/obj/structure/largecrate/chick, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"wwP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/gamma/freezer) +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) "wwT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) +"wxc" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/toxins) +"wxh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) "wxi" = ( /mob/living/carbon/human/yiren, /turf/open/auto_turf/snow/layer0, /area/corsat/gamma/biodome) -"wxF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "SigmaHCargoS"; - name = "Hangar Lockdown"; - use_power = 0 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"wxk" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"wxN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"wyf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wyn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/bluecorner, +/area/corsat/sigma/airlock/control) +"wyq" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"wyG" = ( +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome/scrapyard) +"wyP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/emails, +/turf/open/floor/corsat/blue/north, +/area/corsat/omega/control) +"wyQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/northwest, /area/corsat/sigma/hangar/id) -"wya" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_south" - }, -/area/corsat/gamma/hangar) -"wye" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/north) -"wyz" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" +"wyT" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"wyV" = ( +/obj/structure/surface/rack, +/obj/item/device/chameleon, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"wzi" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/gamma/security) +"wzj" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/airlock/east) +"wzn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/hangar) -"wyL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/administration) +"wzt" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/gamma/administration) +"wzA" = ( +/turf/open/floor/corsat/blue/northeast, +/area/corsat/sigma/southeast/datalab) +"wzG" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"wzH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/security) -"wzK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/security) -"wAk" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"wzJ" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" + dir = 9 }, -/area/corsat/omega/complex) -"wAz" = ( -/obj/structure/tunnel{ - id = "hole1" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"wAi" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 1; + name = "Remote Complex"; + req_one_access_txt = "103" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wAl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"wAn" = ( +/obj/item/device/camera, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wAw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"wAM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + dir = 1; + network = list("gamma") }, -/area/corsat/omega/biodome) -"wAF" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/corsat/red/southwest, +/area/corsat/gamma/airlock/north/id) +"wAN" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/corsat/sigma/hangar) +"wAX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"wBl" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/hangar/monorail) +"wBp" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/cargo) -"wBc" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/red/west, +/area/corsat/theta/airlock/control) +"wBv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/security) -"wBf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/flightcontrol) +"wBy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/gamma/airlock/control) +"wBB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white/east, /area/corsat/gamma/residential/east) -"wBk" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/mars_cave{ - icon_state = "mars_cave_2" +"wBD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey/southeast, +/area/corsat/sigma/south/offices) +"wBE" = ( +/turf/open/floor/corsat/brown, +/area/corsat/omega/cargo) +"wCc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/biodome) -"wBJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/sigma/south/complex) +"wCo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/foyer) -"wBK" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" + icon_state = "pottedplant_10" }, -/area/corsat/gamma/residential/west) -"wBP" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" +/turf/open/floor/corsat/whitetan/east, +/area/corsat/gamma/residential/researcher) +"wCv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) +/turf/open/mars_cave/mars_cave_15, +/area/corsat/sigma/biodome) +"wCx" = ( +/obj/structure/surface/rack, +/obj/structure/prop/mech/drill, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"wCB" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/north/id) +"wCG" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/hangar/arrivals) "wCI" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/pipes/standard/simple/hidden/green{ @@ -63359,65 +44026,94 @@ }, /turf/open/gm/dirtgrassborder/north, /area/corsat/theta/biodome) -"wCJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/north) -"wDi" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Sigma Dome Control"; - req_one_access_txt = "102" +"wCW" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"wDm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "SigmaCargo"; + name = "Sigma Cargo Bay"; + use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/corsat/sigma/airlock/control) -"wDw" = ( -/obj/structure/platform{ - density = 0; - dir = 4; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" +/turf/open/floor/corsat/marked, +/area/corsat/sigma/cargo) +"wDo" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"wDp" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/corsat/sigma/hangar/arrivals) +"wDq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/gamma/residential) -"wDC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +/turf/open/floor/corsat/whitetan/north, +/area/corsat/gamma/residential/west) +"wDP" = ( +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"wDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/monkeycubes/farwacubes, +/turf/open/floor/corsat/purplewhite, +/area/corsat/theta/biodome/complex) +"wEb" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, +/turf/open/floor/plating/warnplate/north, /area/corsat/sigma/hangar) -"wEd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/autopsy_scanner, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purple" +"wEl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) -"wEn" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) +"wEp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/skills{ + dir = 8 }, -/area/corsat/gamma/biodome/toxins) -"wFJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/biodome/complex) +"wEr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"wEP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/corsat/cargo, +/area/corsat/gamma/freezer) +"wER" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/checkpoint) +"wFb" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/robot_module/surgeon, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"wFd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "Observation Chamber"; + req_access_txt = "103" }, -/area/corsat/gamma/airlock/control) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"wFH" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/hallwaysouth) "wFO" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 5; @@ -63425,341 +44121,437 @@ }, /turf/open/ice, /area/corsat/gamma/biodome) -"wFU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/medbay/lobby) -"wGb" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "officesquares" - }, -/area/corsat/sigma/south/offices) -"wGm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"wGr" = ( +"wGt" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"wGF" = ( +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"wGO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/biodome/toxins) -"wGT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Gamma Dome Control"; - req_one_access_txt = "102" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"wGV" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"wHh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/redcorner/west, +/area/corsat/omega/security) +"wHm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"wHu" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/corsat/red/northeast, +/area/corsat/sigma/south/security) +"wHv" = ( +/obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/airlock/control) -"wGW" = ( +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"wHy" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +/obj/item/tool/hand_labeler, /obj/structure/machinery/camera/autoname{ - network = list("gamma") - }, -/turf/open/floor/corsat{ dir = 1; - icon_state = "bluegrey" - }, -/area/corsat/gamma/hangar/flightcontrol) -"wGZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"wHN" = ( -/obj/item/weapon/gun/flamer, -/obj/item/explosive/grenade/incendiary, -/obj/structure/closet/secure_closet/guncabinet{ - name = "specimen control cabinet"; - req_access_txt = "103" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/omega/airlocknorth) -"wHQ" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"wIk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/corsat{ - icon_state = "squares" + network = list("gamma") }, -/area/corsat/sigma/south/robotics) -"wIr" = ( +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"wHC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"wHG" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/east, +/area/corsat/gamma/engineering) +"wIe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/laundry) +"wIf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/assembly/igniter, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhite" - }, -/area/corsat/gamma/sigmaremote) -"wIu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/corsat/sigma/biodome) -"wIy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/gamma/residential) -"wII" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"wIm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"wIT" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/omega/security) -"wIY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"wIZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/gamma/residential/researcher) -"wJp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/wrench, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhitecorner" - }, -/area/corsat/gamma/sigmaremote) -"wJq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/hangar/checkpoint) -"wJz" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"wIG" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/south/engineering) -"wJA" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "SigmaHangarH"; - name = "Hangar Lockdown"; - use_power = 0 +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/gamma/hangar/flightcontrol) +"wIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wJh" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/omega/complex) +"wJl" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/airlock/control) +"wJo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/hangar/arrivals) -"wJM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"wJs" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + id = "SigmaEastE"; + name = "Sigma East Airlock" }, -/area/corsat/sigma/south) -"wJU" = ( +/turf/open/floor/corsat/marked, +/area/corsat/sigma/airlock/east) +"wJx" = ( /obj/structure/machinery/camera/autoname{ dir = 8; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" + network = list("theta") }, -/area/corsat/omega/hangar) -"wKb" = ( +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"wJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/theta, +/area/corsat/theta/airlock/control) +"wJJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) -"wKh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/virology) -"wKD" = ( +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/monorail) +"wJR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo) +"wKi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering/atmos) +"wKj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/engineering) -"wKF" = ( +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"wKH" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/dorms) +"wKI" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/airlock/control) -"wKK" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/checkpoint) +"wKO" = ( +/obj/structure/surface/rack, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/yellow, +/area/corsat/sigma/south/robotics) +"wKS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/engineering) +"wLo" = ( /obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/administration) +"wLt" = ( +/turf/open/floor/corsat/blue/northwest, +/area/corsat/sigma/southeast) +"wLu" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth/id) +"wLA" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/corsat/whitetan, +/area/corsat/gamma/canteen) +"wLG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/researcher) +"wLO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/area/corsat/gamma/cargo/lobby) -"wKL" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"wLX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, -/area/corsat/sigma/airlock/south) -"wKT" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"wLY" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/canteen) +"wMh" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"wMi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/northwest, +/area/corsat/theta/airlock/control) +"wMI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/theta, +/area/corsat/sigma/south) +"wML" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/theta/biodome/complex) -"wLS" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "OmegaCargoN"; - name = "Omega Cargo Room"; - use_power = 0 +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/engineering) +"wMT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/monorail) +"wNh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/omega/cargo) -"wMg" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - pixel_x = 3 +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/west/id) +"wNB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/checkpoint) +"wNI" = ( +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/virology) +"wNJ" = ( +/obj/structure/morgue/crematorium{ + id = "CORSAT Crema" }, -/area/corsat/theta/biodome/complex) -"wOt" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/crema_switch{ + id = "CORSAT Crema"; + pixel_x = 28; + pixel_y = 28; + req_one_access_txt = "2;8;19" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegrey" +/turf/open/floor/corsat/green/north, +/area/corsat/gamma/medbay/morgue) +"wNQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/security) +"wNT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"wOd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/helmet/augment, +/obj/item/tool/pen/paralysis, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wOu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/administration) +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/squares, +/area/corsat/omega/control) +"wOB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/southeast, +/area/corsat/gamma/residential) "wOQ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/fancy/cigarettes/arcturian_ace, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"wOX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" +"wOR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell"; + req_access_txt = "101" }, -/area/corsat/sigma/southeast/datalab) -"wPq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"wOS" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hangar/office) +"wPx" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/tool/mop, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"wPy" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/area/corsat/gamma/rnr) -"wPz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" +/obj/structure/machinery/door/window/westright{ + name = "Weapon Rack" }, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"wPC" = ( +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door/window/southleft, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/lightplate, /area/corsat/theta/biodome/complex) -"wQd" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purple" +"wPH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/corsat/omega/complex) -"wQG" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"wPI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/timer, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"wPL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south) -"wQJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"wPO" = ( +/obj/item/tool/stamp/rd, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wPR" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/gamma/biodome/toxins) +"wQb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/corsat/gamma/residential/east) -"wQZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"wQe" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"wQv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/red, +/area/corsat/omega/security) +"wQC" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/corsat/gamma/biodome/complex) +"wQI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/corsat/gamma/sigmaremote) +"wQO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"wQX" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"wQY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"wRn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/corsat/gamma/medbay/morgue) -"wRH" = ( -/obj/vehicle/train/cargo/trolley, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome) +"wRL" = ( +/obj/item/stack/sheet/metal, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"wRZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/cargo) +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast/datalab) "wSb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirtgrassborder/east, @@ -63770,274 +44562,395 @@ }, /turf/open/gm/coast/west, /area/corsat/theta/biodome) -"wSq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/omega/control) -"wSz" = ( -/obj/structure/cargo_container/trijent/mid, -/turf/open/floor/corsat{ - icon_state = "cargo" +"wSi" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/biodome/complex) +"wSy" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/cargo) -"wSM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/control) +"wSI" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hallwaysouth) +"wSN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"wSS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"wSU" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/south/robotics) +"wTa" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/control) -"wTp" = ( +/turf/open/floor/corsat/purple/east, +/area/corsat/omega/hallways) +"wTm" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/item/ashtray/bronze, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/officesquares, +/area/corsat/omega/offices) +"wTq" = ( +/turf/open/floor/corsat/purple/southeast, +/area/corsat/omega/complex) +"wTN" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/red/northwest, +/area/corsat/omega/security) +"wTU" = ( +/obj/structure/closet/crate/science, +/obj/item/ore/diamond, +/turf/open/floor/corsat/purplewhite/northwest, +/area/corsat/sigma/south/complex) +"wUe" = ( +/turf/open/floor/corsat/whitetan/northeast, +/area/corsat/gamma/canteen) +"wUj" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/north, +/area/corsat/omega/hangar/security) +"wUo" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/airlock/control) +"wUO" = ( +/obj/item/storage/box/masks, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay) +"wUQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/omega, +/area/corsat/omega/control) +"wUR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/corsat/gamma/biodome/virology) -"wTZ" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"wVc" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/virology) -"wUc" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhitecorner" - }, -/area/corsat/omega/complex) -"wUd" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/security) -"wUx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"wVf" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/gamma/hallwaysouth) -"wUE" = ( -/obj/structure/pipes/vents/pump{ +"wVo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/mars_cave/mars_cave_14, +/area/corsat/sigma/biodome) +"wVq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "ID Checkpoint"; + req_access_txt = "101" }, -/area/corsat/gamma/hangar/checkpoint) -"wVb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron/small_stack, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/airlock/south/id) +"wVv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/biodome/complex) +/turf/open/floor/corsat/redcorner/north, +/area/corsat/sigma/hangar/checkpoint) +"wVy" = ( +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hangar) "wVz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/corsat/gamma/biodome) -"wVA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +"wVL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/corsat/sigma/hangar/security) -"wVG" = ( +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/researcher) +"wVX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"wWr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/purplewhitecorner/north, +/area/corsat/theta/biodome/complex) +"wVY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/security) +"wWn" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"wWW" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Identification Desk" - }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - name = "Identification Desk"; - req_access_txt = "104" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "SigmaEastID"; - name = "Security Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/airlock/east/id) -"wXD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wWq" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"wWv" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/corsat/gamma/hallwaysouth) +"wWM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/area/corsat/gamma/biodome/toxins) +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) "wXE" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/corsat, /area/corsat/sigma/dorms) -"wXT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/cargo) -"wYj" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/gamma/security) -"wYt" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"wXL" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "13" }, -/area/corsat/sigma/south) -"wYA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"wXV" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hydroponics) +"wYh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/omega/security) -"wYD" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/office) +"wYs" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/corsat{ - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/morgue) -"wYP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/west, +/area/corsat/gamma/airlock/control) +"wYF" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 4 }, -/area/corsat/sigma/south/robotics) +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/gamma/airlock/control) +"wYM" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"wZa" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"wZf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "wZg" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, /turf/open/floor/corsat, /area/corsat/sigma/south/complex) +"wZi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/sigma/southeast/generator) +"wZk" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/administration) "wZu" = ( /obj/structure/pipes/vents/pump, /turf/open/ice, /area/corsat/gamma/biodome) -"wZB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"wZx" = ( +/obj/structure/machinery/autodispenser{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/complex) +"wZz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null }, -/area/corsat/gamma/residential/east) -"wZC" = ( +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/east) +"wZI" = ( /obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" + dir = 1; + layer = 2.7 }, -/turf/open/floor/corsat{ +/obj/structure/platform{ dir = 4; - icon_state = "whitecorner" + layer = 2.7 }, -/area/corsat/gamma/residential) -"xap" = ( -/obj/structure/machinery/light{ +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/white/northeast, +/area/corsat/gamma/residential/east) +"wZT" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/sigma/south/engineering) +"wZZ" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/corsat/gamma/biodome/complex) +"xad" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/southeast/dataoffice) +"xaq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south) -"xaF" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/security) +"xas" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + damage_cap = 4000; dir = 1; - icon_state = "purplewhite" + name = "\improper Emergency Access"; + req_access_txt = "100"; + req_one_access = null }, -/area/corsat/gamma/biodome/complex) -"xaQ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/platform{ - dir = 1; - layer = 2.7 +/turf/open/floor/corsat/plate, +/area/corsat/emergency_access) +"xaT" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"xbj" = ( +/turf/open/floor/corsat/purplecorner, +/area/corsat/sigma/south) +"xbl" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"xbp" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "white" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/hallwaysouth) -"xbu" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" +"xbz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xbF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xbH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/omega/complex) +"xbK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "xbW" = ( /obj/structure/safe, /obj/item/storage/fancy/vials/random, /turf/open/floor/wood, /area/corsat/gamma/administration) -"xbX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"xcc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/brown/northwest, +/area/corsat/gamma/cargo/lobby) +"xch" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/engineering) -"xcG" = ( -/obj/structure/machinery/chem_dispenser{ - req_access_txt = "100" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xcw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"xcy" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "15" + }, +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"xcz" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/west, +/area/corsat/gamma/hangar) +"xcH" = ( +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"xcL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/sigma/hangar/security) +"xcN" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hallways) +"xcQ" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/corsat/inaccessible) +"xda" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Toxins"; + name = "Toxins Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/toxins) "xdi" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/simple/hidden/green{ @@ -64045,38 +44958,81 @@ }, /turf/open/gm/grass/grass1/weedable, /area/corsat/theta/biodome) -"xdB" = ( +"xdl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/reinforced, +/obj/item/tank/air, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) +"xdx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/corsat/inaccessible) +"xdy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/theta/biodome/complex) +"xdE" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/dorms) +"xdL" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"xdW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/corsat/gamma/hangar) -"xeO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/corsat/bluegrey, +/area/corsat/sigma/south/offices) +"xdZ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"xed" = ( +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/checkpoint) +"xee" = ( +/turf/open/floor/corsat/green/west, +/area/corsat/gamma/hallwaysouth) +"xef" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" - }, -/area/corsat/gamma/rnr) -"xeV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xeC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/southeast) +"xfi" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"xfw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainence"; + req_one_access = null }, -/area/corsat/gamma/security) -"xfe" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/plate, +/area/corsat/theta/biodome/hydroeast) +"xfB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/theta/biodome/complex) +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purplewhite/northeast, +/area/corsat/gamma/sigmaremote) "xfC" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -64089,127 +45045,185 @@ }, /turf/open/floor/wood, /area/corsat/gamma/residential/east) -"xfT" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"xfH" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/corsat/red/southwest, +/area/corsat/theta/airlock/west) +"xfI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/omega/hangar) +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar) +"xgd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Autopsy Storage"; + req_access_txt = "103"; + req_one_access = null + }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xgk" = ( +/turf/open/mars_cave/mars_cave_11, +/area/corsat/sigma/biodome/gunrange) +"xgr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xgA" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south) +"xgB" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_access_txt = "102" + }, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"xgO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) +"xgR" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/omega/containment) "xha" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/ice, /area/corsat/gamma/biodome) -"xhd" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/engineering) -"xhx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/theta/biodome/hydroeast) -"xhA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" - }, -/area/corsat/sigma/dorms) -"xiy" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/southeast/dataoffice) -"xiV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/gamma/biodome/toxins) -"xiW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/sigma/north) -"xjw" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"xhh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/sigma/south/security) -"xjX" = ( -/obj/structure/surface/table, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar) +"xhj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/whitetan/east, /area/corsat/gamma/residential/west) -"xkn" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" +"xho" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"xhM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/sigma/hangar/monorail) -"xkt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xhV" = ( +/obj/structure/closet/wardrobe/science_white, /obj/structure/machinery/camera/autoname{ + dir = 8; network = list("gamma") }, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/biodome/complex) +"xib" = ( +/turf/open/floor/asteroidwarning/east, +/area/corsat/sigma/biodome) +"xic" = ( +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/airlock/south) +"xik" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access_txt = "100" }, -/area/corsat/gamma/biodome/toxins) -"xkB" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"xis" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"xiF" = ( +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/gamma/sigmaremote) +"xiX" = ( +/obj/structure/surface/rack, +/obj/item/cell/potato{ + charge = 1000; + maxcharge = 3000; + name = "overpowered potato" }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/south/engineering) -"xkE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +"xjc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/airlock/control) -"xkH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"xjj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/corsat/marked, +/area/corsat/theta/airlock/west) +"xjk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/turf/open/floor/carpet15_15/west, +/area/corsat/omega/offices) +"xjt" = ( +/turf/open/mars_cave/mars_cave_6, +/area/corsat/sigma/biodome/scrapyard) +"xjv" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/virology) +"xjN" = ( +/obj/item/weapon/gun/flamer, +/obj/item/explosive/grenade/incendiary, +/obj/structure/closet/secure_closet/guncabinet{ + name = "specimen control cabinet"; + req_access_txt = "103" }, -/area/corsat/gamma/medbay/morgue) -"xld" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/control) +"xjP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"xjR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/hallwaysouth) +"xkb" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hangar/arrivals) +"xkR" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/corsat/omega/hangar) +"xkV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/obj/structure/platform{ - dir = 4; - layer = 2 - }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay/lobby) +"xlj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "white" - }, -/area/corsat/sigma/south) -"xlg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/complex) -"xlv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" + network = list("gamma") }, -/area/corsat/omega/hallways) +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential/east) +"xlm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/arrivals) +"xls" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/sigmaremote) "xlF" = ( /obj/structure/machinery/light{ dir = 4 @@ -64219,164 +45233,228 @@ }, /turf/open/floor/corsat, /area/corsat/sigma/south/complex) -"xlG" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"xlR" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" - }, -/area/corsat/sigma/south/complex) -"xlU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/south) -"xmg" = ( +"xlJ" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" + dir = 8 }, -/area/corsat/omega/offices) +/turf/open/floor/corsat/blue/west, +/area/corsat/sigma/southeast/datalab) +"xlN" = ( +/turf/open/floor/plating/warnplate/west, +/area/corsat/sigma/hangar) +"xlW" = ( +/obj/structure/largecrate/supply/ammo/pistol/half, +/turf/open/floor/asteroidplating, +/area/corsat/sigma/biodome/gunrange) +"xma" = ( +/obj/structure/fence, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) "xmh" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/wood, /area/corsat/sigma/cafe) -"xmC" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluegreycorner" - }, -/area/corsat/sigma/south/offices) -"xmF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/corsat/omega/cargo) -"xmV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xmk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Custodial Closet"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/corsat/omega/maint) +"xmn" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/gamma/hangar/flightcontrol) +"xmz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhitecorner/west, +/area/corsat/sigma/south/complex) +"xmG" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("sigma") }, -/area/corsat/sigma/airlock/control) -"xnk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/sigma/south/robotics) +"xmN" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/corsat/gamma/medbay/lobby) -"xnU" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - network = list("omega") +/turf/open/floor/corsat/whitetancorner, +/area/corsat/gamma/residential/west) +"xnb" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_remote{ + index = "8" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/gamma/sigmaremote/teleporter) +"xnw" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/greenwhite/north, +/area/corsat/gamma/medbay) +"xny" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/hangar/office) +"xnF" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + req_access_txt = "102" }, -/area/corsat/omega/offices) +/turf/open/floor/corsat/yellow/west, +/area/corsat/gamma/engineering) +"xoe" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) "xoj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xoq" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/residential) "xoy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"xoG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"xoz" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/gamma/hangar/flightcontrol) +"xoS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"xpn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/complex) +"xps" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Electronics"; + req_one_access_txt = "102" }, -/area/corsat/sigma/hangar/checkpoint) -"xoK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xpz" = ( +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/sigma/southeast/datalab) +"xpC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xpY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/area/corsat/sigma/southeast/generator) -"xoV" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"xpZ" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/sigma/dorms) +"xqg" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security/cells) +"xqm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/bluegreycorner/east, +/area/corsat/omega/offices) +"xqA" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/omega/offices) +"xqD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"xpk" = ( -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"xqG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"xqK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/omega/complex) -"xqh" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"xqM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/south/engineering) +"xqO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/corsat/omega/complex) -"xqz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"xqQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/white, +/area/corsat/gamma/residential/east) +"xqS" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"xrj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "purplewhite" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/hangar/checkpoint) +"xrD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/gm/river/desert/shallow/pool, +/area/corsat/gamma/residential/showers) +"xrH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/biodome/complex) -"xsm" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegreycorner" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hangar/arrivals) +"xrI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/airlock/control) +"xrL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ashtray/bronze, +/turf/open/floor/corsat/red/east, +/area/corsat/gamma/hangar/checkpoint) +"xsd" = ( +/turf/open/floor/corsat/bluegreycorner/west, /area/corsat/sigma/hangar/office) -"xsE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/sigmaremote) +"xsk" = ( +/turf/open/floor/corsat/brown/southwest, +/area/corsat/sigma/cargo) +"xst" = ( +/turf/open/floor/corsat/redcorner/north, +/area/corsat/omega/control) +"xsG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) "xsU" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1/weedable, @@ -64385,223 +45463,355 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/corsat, /area/corsat/sigma/southeast/generator) +"xta" = ( +/obj/structure/closet/crate/science{ + density = 0; + icon_state = "open_science"; + opened = 1 + }, +/obj/item/organ/liver, +/turf/open/floor/corsat/plate, +/area/corsat/omega/complex) +"xtb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/sigma/lavatory) +"xth" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"xtn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/north) +"xty" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/airlock/south) "xtF" = ( /obj/structure/machinery/camera/autoname{ network = list("theta") }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"xtO" = ( -/obj/structure/machinery/power/apc/high{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"xtK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/corsat/gamma/rnr/library) -"xtR" = ( +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xtN" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"xuh" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xuj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/airlock/control) +"xuy" = ( /obj/structure/machinery/camera/autoname{ - dir = 8; + dir = 4; network = list("gamma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" +/turf/open/floor/corsat/greenwhite/west, +/area/corsat/gamma/medbay/surgery) +"xuC" = ( +/turf/open/floor/corsat/redcorner/west, +/area/corsat/theta/airlock/control) +"xuJ" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/omega/hallways) +"xuS" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/area/corsat/gamma/medbay/morgue) -"xtW" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"xuY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dressing room" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"xvg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/gunrange) +"xvl" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/hallwaysouth) +"xvs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/greenwhitecorner/west, +/area/corsat/gamma/medbay) +"xvC" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/airlock/control) +"xvO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer, +/turf/open/floor/corsat/sterileplate, +/area/corsat/gamma/kitchen) +"xvS" = ( +/obj/effect/landmark/teleporter_loc/corsat_sigma_local{ + index = "22" }, -/area/corsat/gamma/residential/west) -"xuo" = ( -/obj/item/cell/crap, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/corsat_teleporter_static/southwest, +/area/corsat/sigma/south/complex/teleporter) +"xvX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/researcher) -"xuF" = ( -/obj/structure/closet/crate/science{ - density = 0; - icon_state = "open_science"; - opened = 1 - }, -/obj/item/organ/brain, -/turf/open/floor/corsat{ - icon_state = "plate" +"xwk" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/corsat/omega/complex) -"xuI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greenwhite" +/turf/open/floor/plating/warnplate/east, +/area/corsat/sigma/hangar) +"xwn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/gamma/medbay/morgue) -"xvj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/form_printer, -/obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/omega/hallways) +"xwQ" = ( +/obj/structure/pipes/standard/simple/hidden/universal, +/turf/open/floor/corsat/yellow/east, +/area/corsat/theta/airlock/control) +"xwS" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/blue, +/area/corsat/sigma/southeast) +"xwV" = ( +/turf/open/mars_cave/mars_cave_19, +/area/corsat/sigma/biodome/gunrange) +"xwZ" = ( +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/sigma/south/robotics) +"xxd" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/omega/control) +"xxe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/gamma/sigmaremote) -"xvE" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) +"xxf" = ( +/turf/open/floor/corsat/bluegreycorner/west, +/area/corsat/theta/airlock/east) +"xxk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/blue, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/sigma/hangar/arrivals) -"xvG" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/omega/complex) -"xvV" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"xwg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/omega/control) -"xxF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "darkgreen" +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"xxl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/hangar) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar) +"xxm" = ( +/turf/open/floor/corsat/red/northeast, +/area/corsat/omega/security) +"xxp" = ( +/turf/open/floor/corsat/red/southeast, +/area/corsat/sigma/south/security) +"xxz" = ( +/turf/open/floor/corsat/darkgreen, +/area/corsat/gamma/rnr) +"xxJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/skills, +/turf/open/floor/corsat/bluegrey/northwest, +/area/corsat/gamma/administration) "xxO" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/corsat/theta/biodome) -"xxZ" = ( -/turf/open/floor/corsat{ +"xyf" = ( +/turf/open/floor/corsat/green, +/area/corsat/gamma/medbay/morgue) +"xyh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "redcorner" - }, -/area/corsat/omega/hangar/office) -"xys" = ( -/turf/open/floor/corsat{ - icon_state = "bluegreycorner" + health = 80 }, -/area/corsat/gamma/hangar/flightcontrol) -"xzg" = ( -/turf/open/floor/corsat{ - icon_state = "greenwhite" +/obj/structure/window/reinforced, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"xyk" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/corsat/gamma/medbay) -"xzI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/omega/offices) +"xyq" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/red, +/area/corsat/sigma/airlock/east/id) +"xyx" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"xzp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/foyer) +"xzq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/hangar/checkpoint) +"xzr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/sigmaremote) +"xzB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"xzJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert{ + dir = 1 }, -/area/corsat/sigma/airlock/control) -"xzU" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/corsat/red/southeast, +/area/corsat/theta/airlock/west) +"xzK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"xzT" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/area/corsat/sigma/south/engineering) +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/airlock/control) "xzW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xzX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/corsat/theta/airlock/control) -"xAo" = ( -/turf/open/floor/corsat{ - icon_state = "darkgreencorner" - }, -/area/corsat/gamma/foyer) -"xBa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"xzY" = ( +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/theta/biodome/hydroeast) +"xAc" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/white/north, +/area/corsat/gamma/residential) +"xAe" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/warnplate/east, /area/corsat/sigma/hangar) -"xBb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "Observation Chamber"; - req_access_txt = "103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +"xAn" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/corsat/gamma/foyer) +"xAx" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/greenwhite/northeast, +/area/corsat/gamma/medbay/lobby) +"xAA" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/hangar) +"xAF" = ( +/turf/open/floor/corsat/squares, /area/corsat/omega/complex) -"xBs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/corsat/theta/airlock/west) -"xBz" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" +"xAV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/browncorner/north, +/area/corsat/sigma/cargo) +"xBu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("sigma") }, -/area/corsat/gamma/residential) -"xBA" = ( +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/sigma/south/complex) +"xBy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/gamma/sigmaremote) +"xBI" = ( /obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/corsat/sigma/hangar) +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) "xBK" = ( /obj/effect/landmark/corpsespawner/scientist, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"xCe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +"xCk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Cybernetics Lab"; + req_one_access_txt = "102" }, -/area/corsat/gamma/airlock/south/id) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) "xCy" = ( /obj/structure/bed/nest, /turf/open/ice, /area/corsat/gamma/biodome) -"xCE" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluegrey" +"xCG" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/residential) +"xDs" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/clonescanner, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"xDv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/corsat/gamma/administration) +/obj/structure/machinery/light, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/omega/complex) "xDC" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -64610,53 +45820,109 @@ }, /turf/open/floor/plating, /area/corsat/sigma/airlock/east/id) -"xEP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" +"xDD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Administration Desk"; + req_access_txt = "101" }, -/area/corsat/gamma/residential/researcher) -"xER" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"xDE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHangarH"; + name = "Hangar Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/monorail) +"xDF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/corsat/gamma/residential/west) -"xEW" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/corsat/omega/airlocknorth/id) +"xDG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Identification Desk" }, -/area/corsat/omega/hangar/office) -"xEX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + name = "Identification Desk"; + req_access_txt = "104" }, -/area/corsat/gamma/hangar/monorail) -"xFf" = ( -/obj/structure/stairs{ +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar/security) +"xDN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/complex) +"xDQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "CORSAT Academy"; + req_one_access = null + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xDX" = ( +/obj/structure/bed/stool, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay/chemistry) +"xEf" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/omega/hallways) +"xEn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"xEB" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 }, +/turf/open/floor/corsat/redcorner/east, +/area/corsat/gamma/security) +"xEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/red/east, +/area/corsat/omega/security) +"xEO" = ( +/turf/open/floor/corsat/blue/north, /area/corsat/gamma/hallwaysouth) -"xFk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("gamma") +"xEV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Hydroponics"; + req_one_access = null }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"xEY" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/hangar) +"xFd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/corsat/whitecorner/west, +/area/corsat/gamma/residential/east) +"xFx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/corsat/red/west, +/area/corsat/gamma/security) "xFK" = ( /obj/structure/window/framed/corsat/research, /obj/structure/disposalpipe/segment{ @@ -64664,132 +45930,168 @@ }, /turf/open/floor/plating, /area/corsat/theta/biodome/complex) +"xFL" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/control) "xFN" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/mars, /area/corsat/sigma/biodome) -"xGd" = ( -/turf/open/floor/corsat{ +"xGg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/hydroeast) -"xGI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 + name = "Hangar Security"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/omega/hangar/security) +"xGi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/omega/complex) -"xHd" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "GammaHCargoN"; - name = "Gamma Cargo Checkpoint"; - use_power = 0 +/turf/open/floor/corsat/squares, +/area/corsat/gamma/cargo/lobby) +"xGq" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Waste Tank Control" }, +/turf/open/floor/corsat/yellow/northeast, +/area/corsat/gamma/engineering/atmos) +"xGt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/mars_cave/mars_cave_9, +/area/corsat/sigma/biodome) +"xGE" = ( +/turf/open/floor/corsat/red, +/area/corsat/sigma/hangar/id) +"xGM" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) +"xGN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/corsat/gamma/hangar/cargo) -"xHk" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/window/reinforced, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/foyer) +"xGQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/corsat/gamma/rnr/arcade) -"xHm" = ( -/turf/open/floor/corsat{ - icon_state = "white" +/turf/open/floor/corsat/whitetan/west, +/area/corsat/gamma/residential/west) +"xHH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/corsat/white/northwest, /area/corsat/sigma/dorms) -"xHy" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greenwhitecorner" - }, -/area/corsat/gamma/medbay) -"xHM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/airlock/control) -"xHN" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" +"xHZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"xIa" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/corsat/gamma/biodome/virology) -"xHV" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/gamma/hangar/flightcontrol) +"xIt" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/gamma/residential) +"xIL" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "Research Complex"; + req_one_access_txt = "103" }, -/area/corsat/gamma/hallwaysouth) -"xIJ" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/corsat{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/sigma/south/complex) +"xIY" = ( +/obj/structure/cargo_container/trijent/right, +/turf/open/floor/corsat/cargo, /area/corsat/gamma/cargo) -"xJc" = ( -/obj/structure/barricade/handrail{ +"xJj" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/sigma/south) -"xJB" = ( -/obj/structure/machinery/power/apc/hyper{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"xJH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/sigma/dorms) -"xJI" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/security) +"xJo" = ( +/obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/monorail/control) +"xJp" = ( +/turf/open/floor/carpet5_1/west, +/area/corsat/gamma/biodome/complex) +"xJt" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/security) +"xJC" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/yellow, +/area/corsat/omega/maint) +"xJF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/corsat/gamma/residential/west) -"xJW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handset, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/yellow/east, +/area/corsat/omega/control) +"xJZ" = ( +/turf/open/floor/corsat/yellow/north, +/area/corsat/sigma/southeast/generator) +"xKa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" }, +/turf/open/floor/corsat/lightplate, /area/corsat/sigma/south/complex) -"xKr" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/monorail) +"xKe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar) +"xKl" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/woodentable, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"xKn" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/purple/west, +/area/corsat/omega/complex) "xKu" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/sigma/airlock/east) +"xKw" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/brown/north, +/area/corsat/gamma/cargo/disposal) +"xKz" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/airlock/south) "xKA" = ( /obj/structure/window/reinforced{ dir = 8 @@ -64801,69 +46103,75 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/corsat/gamma/hallwaysouth) -"xKC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("omega") - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/airlocknorth/id) -"xKV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/corsat/gamma/residential/maint) -"xLg" = ( +"xKI" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"xKJ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"xLv" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/gamma/airlock/south) -"xMg" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/turf/open/floor/corsat/yellowcorner, +/area/corsat/sigma/airlock/control) +"xLj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/sigma/hangar/office) +"xLk" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "SigmaHCargoN"; + name = "Hangar Lockdown"; + use_power = 0 }, -/area/corsat/sigma/hangar/arrivals) -"xMi" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/marked, +/area/corsat/sigma/hangar/id) +"xLr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ dir = 8; - icon_state = "redcorner" + network = list("sigma") }, -/area/corsat/sigma/hangar/monorail/control) -"xMy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access_txt = "100" +/turf/open/floor/corsat/red/east, +/area/corsat/sigma/checkpoint) +"xLG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"xLU" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/greenwhite/northwest, +/area/corsat/gamma/medbay) +"xMe" = ( +/obj/structure/machinery/door_control{ + id = "OmegaAccessC2"; + name = "Security Shutters"; + pixel_x = -24; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "purplewhite" +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "104" }, -/area/corsat/gamma/biodome/complex) -"xMA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/checkpoint) +"xMh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Security Armory"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/squares, +/area/corsat/omega/security) +"xMo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/corsat/sigma/southeast/dataoffice) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/corsat/gamma/sigmaremote) "xMJ" = ( /turf/closed/wall/biodome, /area/corsat/omega/hallways) @@ -64876,432 +46184,771 @@ }, /turf/open/floor/corsat, /area/corsat/emergency_access) +"xMZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/binoculars, +/turf/open/floor/corsat/blue/west, +/area/corsat/omega/control) "xNa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/ice, /area/corsat/gamma/biodome) -"xNw" = ( -/turf/open/floor/corsat{ - icon_state = "purplewhite" - }, -/area/corsat/theta/biodome/hydrowest) -"xNL" = ( -/obj/structure/surface/table/almayer, -/obj/item/evidencebag, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/corsat/sigma/hangar/security) -"xNR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_east" +"xNe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/datamaint) +"xNu" = ( +/obj/structure/target, +/obj/item/clothing/suit/storage/militia, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/gunrange) +"xNA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"xND" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/corsat/sigma/southeast/datalab) -"xOJ" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"xNE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Testing Grounds"; + req_access_txt = "106"; + use_power = 0 }, -/area/corsat/gamma/hangar/arrivals) -"xPi" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"xNG" = ( +/obj/structure/surface/table/almayer, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"xNI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"xNP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/corsat/theta/airlock/west/id) -"xPw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/corsat/sigma/dorms) -"xPy" = ( +/turf/open/floor/corsat/browncorner, +/area/corsat/omega/cargo) +"xNS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_south, +/area/corsat/sigma/hangar) +"xNT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/engineering) +"xNV" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/corsat/gamma/hallwaysouth) +"xNW" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/corsat/sigma/north) +"xOg" = ( +/turf/open/floor/corsat/white/west, +/area/corsat/gamma/hallwaysouth) +"xOk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"xPF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "bluegrey" - }, +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/lavatory) +"xOL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/bluegrey/northeast, /area/corsat/omega/offices) -"xQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xPa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/structure/machinery/camera/autoname{ + network = list("gamma") + }, +/turf/open/floor/corsat/bluegreycorner/north, +/area/corsat/gamma/administration) +"xPf" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/engineering/atmos) +"xPh" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "officesquares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south) +"xPC" = ( +/turf/open/mars_cave/mars_cave_12, +/area/corsat/sigma/biodome/gunrange) +"xPI" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"xPV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Maintainance"; + req_one_access = null + }, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"xQj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/sigma/south/offices) +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/darkgreen/northwest, +/area/corsat/sigma/hangar) "xQk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/corsat/gamma/residential/lounge) +"xQn" = ( +/obj/structure/barricade/handrail{ + layer = 3 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"xQC" = ( +/obj/structure/stairs{ + dir = 8 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) "xQF" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/corsat/omega/control) -"xQH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xQG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/researcher) -"xQS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, -/area/corsat/gamma/hangar/arrivals) -"xRb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4; - layer = 2 +/turf/open/floor/corsat/whitebluefull/southwest, +/area/corsat/gamma/residential/showers) +"xQQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/dorms) +"xRe" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/platingdmg3/west, +/area/corsat/sigma/biodome/testgrounds) +"xRh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/engineering) +"xRi" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/storage/belt/security/MP/full, +/obj/item/clothing/accessory/storage/holster/armpit, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/storage/pouch/general/medium, +/obj/item/storage/pouch/pistol, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"xRm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "white" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/robotics) +"xRn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/corsat/gamma/hallwaysouth) +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) "xRq" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/corsat/theta/biodome) -"xRM" = ( +"xRw" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/corsat/gamma/rnr) +"xRI" = ( +/obj/structure/machinery/camera/autoname{ + network = list("omega") + }, +/turf/open/floor/corsat/red/north, +/area/corsat/omega/security) +"xRK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering) +"xRZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/hangar/id) +"xSa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/night, +/obj/structure/machinery/door/window/eastright{ + name = "Prototype Racks"; + req_access_txt = "103" }, -/area/corsat/sigma/biodome) +/obj/structure/window/reinforced/toughened, +/turf/open/floor/corsat/lightplate, +/area/corsat/sigma/south/complex) "xSj" = ( /obj/structure/window/framed/corsat/hull/security, /turf/open/floor/plating, /area/corsat/omega/security) -"xSk" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"xSD" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/hangar/office) +"xSI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "purplewhite" +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/hallwaysouth) +"xSZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/north, +/area/corsat/sigma/north) +"xTb" = ( +/turf/open/floor/carpet9_4/west, +/area/corsat/gamma/administration) +"xTj" = ( +/obj/structure/machinery/door/airlock/almayer/research{ + name = "\improper Containment Chambers"; + req_access_txt = "103" }, -/area/corsat/gamma/biodome/toxins) -"xSL" = ( -/turf/open/floor/corsat{ - icon_state = "purplecorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/complex) +"xTl" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/medbay/morgue) +"xTv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/purple/north, +/area/corsat/gamma/biodome/complex) +"xTw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/airlock/east) +"xTC" = ( +/obj/structure/surface/table/almayer, +/obj/item/form_printer, +/obj/item/tool/pen, +/obj/structure/machinery/camera/autoname{ + network = list("omega") }, -/area/corsat/sigma/south) -"xSO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/containment) +"xTH" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"xTP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/biodome/toxins) +"xTR" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hallwaysouth) +"xTV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "Hangar Security"; + req_access_txt = "101" }, -/area/corsat/gamma/hangar/arrivals) -"xST" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hangar/security) +"xTY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/corsat/sigma/hangar/security) +"xUc" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/gamma/sigmaremote) +"xUu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/folder/black_random, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"xUv" = ( +/obj/item/tool/pen, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/residential/lounge) +"xUw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/theta/biodome/complex) +"xUB" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/corsat/white/east, +/area/corsat/sigma/south) +"xUK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) +"xVc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/sigma/hangar) -"xTU" = ( -/turf/open/floor/corsat{ +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/south) +"xVf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"xVl" = ( +/obj/structure/machinery/camera/autoname{ dir = 4; - icon_state = "yellow" - }, -/area/corsat/omega/control) -"xUd" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, -/area/corsat/gamma/residential/west) -"xUj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" + network = list("theta") }, -/area/corsat/omega/hallways) -"xUr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "purplewhite" +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/theta/biodome/complex) +"xVm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/sigma/south/complex) +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/corsat/retrosquares, +/area/corsat/sigma/hangar/arrivals) +"xVs" = ( +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering/core) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/corsat/gamma/rnr/bar) -"xWm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"xWd" = ( +/turf/open/floor/corsat/plate, +/area/corsat/omega/cargo) +"xWk" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"xWt" = ( +/turf/open/floor/corsat/red/northwest, +/area/corsat/gamma/airlock/control) +"xWu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/corsat/purplewhite/southeast, /area/corsat/sigma/south/complex) -"xWE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/mars{ - icon_state = "mars_dirt_3" - }, -/area/corsat/sigma/biodome) -"xWH" = ( +"xWD" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" + dir = 8 }, -/area/corsat/gamma/cargo) +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/containment) +"xWP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) "xWS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/wood, /area/corsat/sigma/dorms) -"xXp" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/omega/hangar) -"xYI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Auditorium" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"xWX" = ( +/turf/open/floor/corsat/gamma, +/area/corsat/omega/checkpoint) +"xXb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/corsat/theta/biodome/complex) +"xXl" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/corsat/spiralplate, +/area/corsat/omega/offices) +"xXy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, +/turf/open/floor/corsat/blue, +/area/corsat/gamma/airlock/control) +"xXA" = ( +/obj/structure/machinery/lapvend, +/turf/open/floor/corsat/whitetan/west, /area/corsat/gamma/residential/west) -"xYP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"xXC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/southeast/generator) +"xXO" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/yellowcorner/north, +/area/corsat/gamma/engineering) +"xXT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/corsat/gamma/residential/west) -"xYY" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/hangar/monorail) +"xXU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/retrosquareslight, /area/corsat/gamma/biodome/complex) -"xZc" = ( -/turf/open/floor/corsat{ - icon_state = "blue" +"xXV" = ( +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Mixed Air Control" }, -/area/corsat/sigma/southeast) -"xZn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("gamma") +/turf/open/floor/corsat/yellow/north, +/area/corsat/theta/airlock/control) +"xYo" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/shuttle/escapepod/floor0, +/area/corsat/theta/biodome/complex) +"xYq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/corsat/officesquares, +/area/corsat/theta/airlock/east) +"xYs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/plate, +/area/corsat/omega/checkpoint) +"xYA" = ( +/obj/structure/showcase{ + icon_state = "bus" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/tcomms, +/area/corsat/sigma/southeast/telecomm) +"xZd" = ( +/turf/open/floor/corsat/purplecorner/west, +/area/corsat/gamma/residential) +"xZe" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/syringe/antiviral, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/obj/item/reagent_container/glass/beaker/vial, +/turf/open/floor/corsat/lightplate, +/area/corsat/gamma/biodome/virology) +"xZg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/hangar) +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/library) +"xZp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/corsat/theta/airlock/control) +"xZv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/retrosquares, +/area/corsat/gamma/rnr) "xZB" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/corsat/sigma/south/complex) -"yaq" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +"xZD" = ( +/turf/open/floor/corsat/red/southwest, +/area/corsat/omega/hangar/office) +"xZE" = ( +/obj/structure/machinery/chem_dispenser{ + req_access_txt = "100" }, -/area/corsat/gamma/residential/researcher) -"yau" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/corsat/gamma/biodome) -"yaD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "purplewhitecorner" +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/complex) +"xZH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Engineering Workshop"; + req_one_access_txt = "102" }, -/area/corsat/gamma/sigmaremote) -"yaN" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/engineering) +"xZK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"xZS" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, -/area/corsat/gamma/hangar/security) -"ybl" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar) -"ybq" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/corsat/sigma/south/robotics) -"ybv" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/bar) +"xZY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/corsat{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/hallwaysouth) -"ybJ" = ( -/obj/structure/platform{ - density = 0; - dir = 8; - icon_state = "platform_deco" + health = 80 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"yae" = ( +/turf/open/mars_cave/mars_cave_22, +/area/corsat/sigma/biodome) +"yao" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/corsat/sigma/north) -"ybP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/corsat/yellow/southwest, +/area/corsat/sigma/south/robotics) +"yau" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/corsat/gamma/biodome) +"yaz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/spiralplate, +/area/corsat/sigma/hangar/office) +"yaH" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/engineering) +"yaI" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/redcorner/north, +/area/corsat/gamma/airlock/control) +"yaL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "greenwhite" - }, -/area/corsat/gamma/medbay/surgery) -"ybQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" + network = list("gamma") }, -/area/corsat/sigma/hangar/monorail) -"ycd" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) +"ybk" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "delta_omega"; + name = "Omega Checkpoint"; + use_power = 0 }, -/area/corsat/gamma/rnr/bar) -"ycg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/corsat/omega/checkpoint) +"ybo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Holding Cell 2"; + req_access_txt = "101" }, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "darkgreencorner" - }, -/area/corsat/sigma/hangar/monorail) -"ydU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, -/area/corsat/sigma/south/robotics) -"ydX" = ( -/obj/structure/machinery/camera/autoname{ - network = list("gamma") + id = "SigmaHolding2"; + name = "Holding Cell 2" }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/residential) -"ydY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Maintainance"; - req_one_access = null +/turf/open/floor/corsat/squares, +/area/corsat/sigma/south/security) +"yby" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet14_10/west, +/area/corsat/gamma/biodome/complex) +"ybM" = ( +/turf/open/floor/corsat/red/west, +/area/corsat/omega/hangar/office) +"ycx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/corsat/yellow/southeast, +/area/corsat/gamma/engineering) +"ycB" = ( +/turf/open/floor/corsat/squares, +/area/corsat/gamma/medbay/morgue) +"ycH" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights, +/turf/open/floor/corsat/yellow, +/area/corsat/gamma/residential/maint) +"ycQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/omega/complex) +"yde" = ( +/obj/item/clothing/gloves/latex, +/obj/structure/surface/table/reinforced, +/obj/item/clothing/gloves/latex, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/omega/security) +"ydg" = ( +/obj/structure/surface/rack, +/obj/item/oldresearch/Chitin, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/corsat/sigma/dorms) -"ydZ" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/corsat{ +/obj/structure/machinery/door/window/eastright{ dir = 1; - icon_state = "purplewhite" + name = "Secure Racks"; + req_access_txt = "103" }, -/area/corsat/theta/biodome/hydrowest) -"yea" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/purplewhite, +/area/corsat/omega/complex) +"ydm" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ dir = 1; - icon_state = "darkgreen" + layer = 2.7 }, -/area/corsat/sigma/hangar/monorail) -"yeL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/complex) +"ydp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/engineering/core) +"ydt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/corsat/gamma/hangar) -"yeW" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "lightplate" +/obj/structure/machinery/computer/emails{ + dir = 4 }, +/turf/open/floor/corsat/bluegrey/west, +/area/corsat/sigma/southeast/dataoffice) +"ydv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen/red, +/turf/open/floor/corsat/blue/southwest, +/area/corsat/omega/control) +"ydz" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/purplewhite, +/area/corsat/sigma/south/complex) +"ydN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/corsat/purplewhitecorner/east, /area/corsat/gamma/biodome/virology) +"ydT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/corsat/yellow/northwest, +/area/corsat/omega/maint) +"yeg" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/corsat/yellow/north, +/area/corsat/gamma/engineering) +"yeh" = ( +/turf/open/floor/corsat/redcorner, +/area/corsat/omega/hallways) +"yel" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/corsat/greenwhite/southeast, +/area/corsat/gamma/medbay) +"yew" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/corsat/greenwhite/east, +/area/corsat/gamma/medbay) +"yeA" = ( +/turf/open/mars/mars_dirt_13, +/area/corsat/sigma/biodome) +"yeH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellowcorner/west, +/area/corsat/gamma/engineering) +"yeQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/corsat/purplewhite/southeast, +/area/corsat/gamma/sigmaremote) +"yeU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) "yfh" = ( /turf/open/floor/corsat, /area/corsat/sigma/cargo) -"yfB" = ( +"yfj" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, -/area/corsat/gamma/airlock/control) +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome) +"yfl" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/hallwaysouth) "yfH" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/east, /area/corsat/theta/biodome) +"yfN" = ( +/obj/structure/platform{ + density = 0; + icon_state = "platform_deco" + }, +/turf/open/floor/corsat/white/east, +/area/corsat/gamma/residential/east) "yfO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -65309,37 +46956,37 @@ }, /turf/open/gm/dirt, /area/corsat/theta/biodome) -"yfQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/corsat/gamma/airlock/north) -"yga" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"yfT" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/corsat/gamma/biodome/toxins) -"ygx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "purplewhitecorner" - }, -/area/corsat/theta/biodome/complex) -"ygy" = ( -/obj/structure/pipes/standard/simple/hidden/universal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/corsat/theta/airlock/control) +/turf/open/floor/corsat/brown/west, +/area/corsat/omega/cargo) +"yfU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/purplewhite/southwest, +/area/corsat/sigma/south/complex) +"ygf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/biodome/virology) +"ygq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/darkgreen/north, +/area/corsat/sigma/hangar/arrivals) +"ygu" = ( +/obj/structure/fence, +/turf/open/floor/asteroidfloor/north, +/area/corsat/sigma/biodome/testgrounds) +"ygA" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/south/robotics) +"ygB" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/complex) "ygF" = ( /obj/structure/machinery/computer/cameras{ network = list("theta"); @@ -65347,68 +46994,120 @@ }, /turf/open/floor/wood, /area/corsat/gamma/administration) -"ygN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, +"ygG" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" - }, -/area/corsat/gamma/residential) -"yhc" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/brown/east, +/area/corsat/sigma/cargo) +"ygM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/corsat/omega/complex) -"yhw" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/squares, +/area/corsat/omega/airlocknorth) +"yhm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/corsat/sigma/south/engineering) -"yhy" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "whitetan" +/turf/open/mars/mars_dirt_3, +/area/corsat/sigma/biodome) +"yhv" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"yhI" = ( +/turf/open/floor/corsat/bluegrey, +/area/corsat/gamma/hangar/flightcontrol) +"yii" = ( +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"yij" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/red, +/area/corsat/omega/hangar/security) +"yil" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/warnplate/east, +/area/corsat/gamma/hangar) +"yis" = ( +/turf/open/floor/carpet10_8/west, +/area/corsat/gamma/administration) +"yiu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "Administration"; + req_access = null; + req_one_access_txt = "106;104" }, -/area/corsat/gamma/residential/researcher) -"yhC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"yiv" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/purplewhitecorner, +/area/corsat/gamma/biodome/complex) +"yiA" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/corsat/sigma/cargo) -"yhK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/plating/icefloor/warnplate, +/area/corsat/gamma/hangar) +"yiD" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/bluegrey/north, +/area/corsat/sigma/southeast/dataoffice) +"yiH" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ + id = "GammaWestD"; + name = "Gamma Dome Airlock" }, -/area/corsat/gamma/residential/showers) -"yio" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "map_lockdown"; + name = "Gamma Lockdown"; + use_power = 0 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "whitebluefull" +/turf/open/floor/corsat/marked, +/area/corsat/gamma/airlock/control) +"yiR" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/corsat/plate, +/area/corsat/theta/airlock/control) +"yiS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "OmegaAccessC"; + name = "Security Shutters"; + pixel_y = 5; + use_power = 0 }, -/area/corsat/gamma/residential/showers) -"yji" = ( +/turf/open/floor/corsat/red/north, +/area/corsat/omega/checkpoint) +"yiT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/corsat/yellow/east, +/area/corsat/gamma/airlock/control) +"yjc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/corsat/plate, +/area/corsat/sigma/cargo) +"yjr" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/greenwhite, +/area/corsat/gamma/medbay/chemistry) +"yjs" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "purplewhite" + dir = 8 }, -/area/corsat/theta/biodome/complex) +/turf/open/floor/corsat/red/west, +/area/corsat/sigma/hangar/security) +"yju" = ( +/turf/open/floor/corsat/purplewhitecorner/east, +/area/corsat/theta/biodome/hydroeast) "yjw" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/green{ @@ -65416,25 +47115,93 @@ }, /turf/open/auto_turf/snow/layer3, /area/corsat/gamma/biodome) -"yki" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "purplewhite" +"yjJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/corsat/gamma/sigmaremote) -"ykO" = ( -/turf/open/floor/corsat{ - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/corsat/gamma/biodome/virology) +"yjM" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/theta/biodome/complex) +"yjS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/corsat/sigma/hangar/security) -"yla" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/corsat/retrosquareslight, +/area/corsat/gamma/medbay) +"yjX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/purplewhite/east, +/area/corsat/gamma/sigmaremote) +"yjZ" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 2; + name = "Secure Racks"; + req_access_txt = "103" + }, +/obj/item/tool/weedkiller/triclopyr, +/obj/item/tool/weedkiller/lindane, +/obj/item/tool/weedkiller/D24, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/purplewhite/north, +/area/corsat/omega/complex) +"ykb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/whitetancorner/west, +/area/corsat/gamma/residential/researcher) +"ykl" = ( +/obj/structure/machinery/power/apc/upgraded/no_power/west, +/obj/structure/closet/wardrobe/toxins_white, +/turf/open/floor/corsat/purplewhite/west, +/area/corsat/gamma/biodome/toxins) +"ykH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/bluecorner, /area/corsat/omega/control) +"ykJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/corsat/spiralplate, +/area/corsat/theta/airlock/east) +"ykK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/corsat/officesquares, +/area/corsat/gamma/administration) +"ykT" = ( +/obj/structure/sign/safety/biohazard, +/turf/open/floor/corsat/purplewhite, +/area/corsat/gamma/biodome/virology) +"ykY" = ( +/obj/structure/surface/table, +/obj/item/folder, +/obj/structure/platform{ + dir = 4; + layer = 2 + }, +/turf/open/floor/corsat/tan/north, +/area/corsat/gamma/residential/west) +"ylb" = ( +/turf/open/floor/corsat/bluecorner/north, +/area/corsat/theta/airlock/control) "yle" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirtgrassborder/south, @@ -65442,19 +47209,22 @@ "ylo" = ( /turf/open/space, /area/space) -"ylS" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, -/area/corsat/gamma/residential/west) -"ymj" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" - }, -/area/corsat/gamma/hangar/security) +"ylB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/corsat/squareswood/north, +/area/corsat/gamma/rnr/arcade) +"ylW" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/corsat/squares, +/area/corsat/gamma/hydroponics) +"ylZ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/mars_cave/mars_cave_2, +/area/corsat/sigma/biodome/scrapyard) +"ymc" = ( +/turf/open/floor/corsat/whitecorner/east, +/area/corsat/gamma/residential/east) (1,1,1) = {" ylo @@ -65751,13 +47521,13 @@ ylo ylo ylo aer -adB -adO -adO -aFN -adO -adO -adB +vBZ +fXW +fXW +tOO +fXW +fXW +vBZ aer ylo ylo @@ -65996,13 +47766,13 @@ ylo aer aer aer -adC +dOm adn adn adn adn adn -lJj +mam aer aer aer @@ -66239,17 +48009,17 @@ ylo ylo ylo aer -aFH -aPj -lJj +bqv +vqg +mam adn -aeg -aQZ -afj +pRR +ueQ +iud adn -lJj -aRG -aFH +mam +xUv +bqv acN anf anf @@ -66484,39 +48254,39 @@ abG abG abG aer -awZ +gxS adj adn adn -aey -aRg -afr +ntw +lYh +fAe adn adn aly -aRQ +emy acN aFM abN abJ abH abP -aFW +eMR abP eTj abN ank abP -aFi -acj -acB +qMX +nmo +cpy adV ylo ylo adV -aFi -acj -acB +qMX +nmo +cpy adV ylo ylo @@ -66722,45 +48492,45 @@ abL abN eTj adV -aFi -acj -acg +qMX +nmo +jZu abN acH exb acN -aAU +eqE adn llr adn -aep -aRj -afr +gXk +eMs +fAe adn llr adn -aFH +bqv acN acu lsH abN ank abP -aox -acg +dJY +jZu abN lsH asQ abP abP -acw +pEV abP adV abG abG adV abP -acw +pEV abP adV ylo @@ -66842,19 +48612,19 @@ ylo ylo ylo ahA -bFj -brx -vHP -brx -bOL +gni +mMw +iDY +mMw +gzo ahA ylo ylo ylo ahA -bsS -brx -bNb +wQY +mMw +nwt ahA ylo ylo @@ -66967,31 +48737,31 @@ abM abN eTj abP -aci +jJH abP abP adE abN abJ acN -aFH +bqv adj dQQ kHe -aep -aRs -ioh +gXk +per +ctS adn dQQ aly -aRS +egz acN abL oGz abN abO abP -aoy +nUw abP acz oGz @@ -67001,8 +48771,8 @@ acc abN acz abP -xEP -apK +fyN +kIT abP acz abN @@ -67087,19 +48857,19 @@ ylo ahA ahA arV -bNc -brO -aHe -brO -jzM +dCt +idH +eJV +idH +xXl arV arV arV arV arV -aZI -brO -aZJ +vJa +idH +lVu arV ahA ahA @@ -67146,10 +48916,10 @@ sWP sWP sWP sWP -avX -avX -avX -avX +vse +vse +vse +vse sWP sWP sWP @@ -67219,17 +48989,17 @@ fFa lsH aFn acN -aFO +oFH adn dQQ adn -aeq -aRF -afx +oFQ +hgV +iqZ adn dQQ adn -aPj +vqg acN eTj oGz @@ -67246,8 +49016,8 @@ aqb rcg pkc apo -sCf -cRn +fDs +hoZ apo pkc aIj @@ -67281,18 +49051,18 @@ bfc oJn bfc aIt -vHx -oCp +dby +ccz aIt -aSL -mSz -mWG -xMy -aSC -xMy -mWG -mSz -wlt +fXb +qGN +xZE +gZW +pZo +gZW +xZE +qGN +smc aIt bfc aER @@ -67330,23 +49100,23 @@ ylo ylo ylo ahA -bjR -aZz -dgq -aHu -aHu -aHu -aHu -aHu -bMM +obJ +nCJ +fLX +cTv +cTv +cTv +cTv +cTv +vuU aiL -ehj -aHu -aHu -aHu -aHu -aHu -bMM +nEX +cTv +cTv +cTv +cTv +cTv +vuU ahA ylo ylo @@ -67387,18 +49157,18 @@ azX sWP sWP sWP -avX -aFc -avX -avX -avX -avX -aFc -avX -avX -avX -avX -avX +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse sWP sWP sWP @@ -67456,15 +49226,15 @@ abF adE oGz abN -acg -acj +jZu +nmo abP abP adE qJl acc acN -awZ +gxS adj xQk pIo @@ -67474,25 +49244,25 @@ pIo pIo oEK aly -aRQ +emy acN juf oGz abP -aFW -acW +eMR +pKj abP -yhy -diP -gth -uya +dnw +iFH +gtF +oYm abP uST aGb abO abP -vad -aPr +tIW +vBX abP abL aMP @@ -67526,18 +49296,18 @@ bfc oJn aIt aIt -aIG -aIG +cjV +cjV aIt -lbC -bbH -vnF -bbH -bbH -bbH -vnF -bbH -vaK +teQ +bIm +dRb +bIm +bIm +bIm +dRb +bIm +jtj aIt aIt oJn @@ -67575,23 +49345,23 @@ ylo ylo ylo ahA -btU -bry -aHw -aMZ -iLZ -aMZ -aMZ -aMZ -gbQ +sSf +dAJ +goY +knP +hBz +knP +knP +knP +fxa aiQ -aHw -aMZ -aMZ -aMZ -aMZ -aMZ -gbQ +goY +knP +knP +knP +knP +knP +fxa ahA ylo ylo @@ -67630,22 +49400,22 @@ azX azX sWP sWP -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -aFc +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX sWP sWP azX @@ -67679,65 +49449,65 @@ ylo ylo abF abF -ajS -aas -aas -aas -aas -aas -mQG +lwA +eCZ +eCZ +eCZ +eCZ +eCZ +kzn abF abF abF -akC -akE -akG +gEZ +fXN +xBy abf -anV -bxe -bxf -bxg +ozh +fSq +gDb +ujn aax abO oGz iZz abP -aFj -acm +pkg +vvp abP abO oGz acz acN -aGo -aPp +mft +uUE dQQ adn -aeu -afb -afA +sZR +tgp +fAZ adn dQQ -aFH -aFH +bqv +bqv acN acz oGz -acg -acx +jZu +wVL abP abP -aBx -abU -gth -uya +cyF +isa +gtF +oYm abP abP abP abP abP -coy -uya +gCm +oYm abP abP abP @@ -67770,20 +49540,20 @@ bfc bfc oJn aIt -xYY -pcb -aSA +hTZ +hbN +pPf aIt -lmD -bbH -rMD -kmV -njv -uZh -rMD -bbH -vGn -vzV +wZx +bIm +wSS +hQU +sCg +poP +wSS +bIm +pWe +gSe aIt oJn bfc @@ -67820,23 +49590,23 @@ ylo ylo ylo ahA -btX -bFg -aHw -aMZ -rFm -aMZ -aMZ -aMZ -gbQ +dIW +qZC +goY +knP +sRu +knP +knP +knP +fxa aiQ -aHw -aMZ -bEM -bNj -brw -aMZ -kQe +goY +knP +wAw +rIk +nQv +knP +uzc ahA ylo ylo @@ -67874,24 +49644,24 @@ azX sWP sWP sWP -avX -avX -avX -avX -avX -avX -avX -aFe -aFe -aFe -aFe -avX -avX -aFc -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +uhU +uhU +uhU +uhU +vse +vse +kEX +vse +vse +vse +vse sWP sWP sWP @@ -67923,25 +49693,25 @@ ylo ylo ylo abF -vkq -ldy -olB -olB -olB -olB -olB -tKy -qqg +kbT +hIJ +pdH +pdH +pdH +pdH +pdH +xiF +lwX abf -tjQ -ldy -nrl -wGZ +qLr +hIJ +wUR +xls abf -ayv -axj -axj -tpW +hQr +xcH +xcH +mts aax abP acv @@ -67971,22 +49741,22 @@ acv abP abP abP -yhy -diP -abU -gth -abQ -apK -xEP -bHi -xEP -apK -ifh -aQX +dnw +iFH +isa +gtF +wGF +kIT +fyN +sVh +fyN +kIT +fAu +lub abP -aFi -acj -acB +qMX +nmo +cpy adV ylo ylo @@ -68015,20 +49785,20 @@ qkt wiF xNa aIt -ito -iDH -syk +eyb +gPE +qLc aIt -lIE -bbH -dQL -ncR -klS -bbH -bbH -bbH -vGn -jho +jUr +bIm +xXU +smn +kCO +bIm +bIm +bIm +pWe +xDN aIt nri wiF @@ -68065,23 +49835,23 @@ ylo ylo ylo ahA -btZ -brD -aHw -aYO -bMI -bsS -aZY -aMZ -aVF +gCh +xyh +goY +qrx +jav +wQY +oqh +knP +kWI aiL -xmg -aMZ -bNb -aHe -bNl -aMZ -kQe +pEN +knP +nwt +eJV +toY +knP +uzc ahA ylo ylo @@ -68117,28 +49887,28 @@ azX azX sWP sWP -qfl -avX -avX -avX -aFc -avX -avX +kXf +vse +vse +vse +kEX +vse +vse sWP vCx vCx -hwe -hwe +ltF +ltF vCx vCx sWP -avX -avX -avX -avX -avX -aFc -qfl +vse +vse +vse +vse +vse +kEX +kXf sWP sWP azX @@ -68168,69 +49938,69 @@ ylo ylo abF abF -rcT -axj -axj -axj -axj -axj -axj -axj -lRg +qFL +xcH +xcH +xcH +xcH +xcH +xcH +xcH +fnS abf -lPD -axj -axj -azU +pOR +xcH +xcH +fSv abf -aCv -axj -mGL -bxh +mME +xcH +skF +sBK aax -atu -mGl -mxc -vhz -vhz -hzU -vhz -loF -chJ -dcK -vhz -lRW -loF -hur -cRn -mxc -vhz -loF -cRn -hur -mxc -vhz -vhz -nBk -chJ -mxc -vhz -hzU -loF -mim -cRn -vbB -abU -abU -abU -abU -abU -abU -gth -uya +jdn +vtL +uLe +dcn +dcn +xvX +dcn +rXN +oLW +ykb +dcn +wLG +rXN +nqg +hoZ +uLe +dcn +rXN +hoZ +nqg +uLe +dcn +dcn +rZb +oLW +uLe +dcn +xvX +rXN +qag +hoZ +vir +isa +isa +isa +isa +isa +isa +gtF +oYm abP abP -acw +pEV abP adV ylo @@ -68260,20 +50030,20 @@ uXU bfc xCy aIt -dfT -iDH -onz +wPx +gPE +ygB aIt -xaF -bbH -sEc -vmm -jZU -uiW -gRE -fJx -jmL -wVb +okg +bIm +xpn +gyN +fQF +xhV +mnr +enF +man +ngR aIt bfe bfc @@ -68310,23 +50080,23 @@ ylo ylo ylo ahA -bue -bry -aHw -aYO -bFo -bFj -aZY -aMZ -pUA -aNb -sON -aMZ -aHe -aHe -aHe -aMZ -gbQ +vLp +dAJ +goY +qrx +xxk +gni +oqh +knP +uQx +nBr +hOp +knP +eJV +eJV +eJV +knP +fxa ahA ylo ylo @@ -68361,30 +50131,30 @@ azX azX sWP sWP -dWJ -avX -avX -avX -avX -avX -avX -avX +eaO +vse +vse +vse +vse +vse +vse +vse vCx -toC -qfl -avX -avX -dPH -qfl +taB +kXf +vse +vse +eZp +kXf vCx -avX -avX -avX -avX -avX -avX -avX -qfl +vse +vse +vse +vse +vse +vse +vse +kXf sWP sWP azX @@ -68412,67 +50182,67 @@ ylo ylo ylo aar -woz -iYj -axj -eXX -nBw -mGL -nlU -ugK -axj -axj -aDZ -axj -axj -mGL -gZB +dir +toO +xcH +xzr +iBe +skF +eiB +ohD +xcH +xcH +bIF +xcH +xcH +skF +qUZ abf -bjn -axj -oVT -bxi +eAR +xcH +vEa +fKG aax -ppy -gth -aPr -yaq -sam -gth -aPr -aFk -sam -gth -aPr -aFk -sam -gth -aPr -sam -abU -aPr -sam -xQH -aPr -aFk -sam -xQH -aPr -aFk -sam -gth -aPr -sam -abU -mGl -cRn -cRn -unL -wIZ -qkJ -cRn -vbB -ill +dnY +gtF +vBX +fNN +woi +gtF +vBX +cQB +woi +gtF +vBX +cQB +woi +gtF +vBX +woi +isa +vBX +woi +bVA +vBX +cQB +woi +bVA +vBX +cQB +woi +gtF +vBX +woi +isa +vtL +hoZ +hoZ +eww +lrN +uMu +hoZ +vir +ecm abP acc abN @@ -68506,12 +50276,12 @@ xCy bfg aIt aIt -bbE +hzY aIt aIt aII -bbH -aRo +bIm +gJO aII aIt aIt @@ -68555,23 +50325,23 @@ ylo ylo ylo ahA -btX -aHe -aHw -aYO -bGa -aGJ -jaJ -oZD -rVS -tSD -gIT -oZD -pVS -pVS -pVS -sba -gbQ +dIW +eJV +goY +qrx +fuB +tMu +cGp +eVf +pZZ +kVU +xqm +eVf +efB +efB +efB +sDl +fxa ahA ylo ylo @@ -68581,15 +50351,15 @@ ylo ylo ylo sXl -dDl -dDl -dDl -dDl +pFF +pFF +pFF +pFF anT -aMB -aMB -wHN -wHN +gyY +gyY +nvO +nvO auL ylo ylo @@ -68605,32 +50375,32 @@ ylo azX sWP sWP -qfl -avX -avX -avX -aFc -avX -avX -avX -aFe +kXf +vse +vse +vse +kEX +vse +vse +vse +uhU vCx -qfl -aFf -aFe -aFe -aFe -qfl +kXf +fLk +uhU +uhU +uhU +kXf vCx -aFe -avX -avX -avX -avX -avX -avX -avX -dPH +uhU +vse +vse +vse +vse +vse +vse +vse +eZp sWP sWP azX @@ -68657,30 +50427,30 @@ ylo ylo ylo aar -uTg -iYj -axj -eXO -nrl -hap -wKb -tMG -xsE -xsE -xsE -xsE -xsE -qST -uRQ +paM +toO +xcH +gQA +wUR +qMu +flV +cWz +uYK +uYK +uYK +uYK +uYK +kgI +cyD abf -ayM -kBW -oVT -bxj +kPh +iFb +vEa +pVl aax -abR -gth -uya +iaT +gtF +oYm abP abP acv @@ -68694,7 +50464,7 @@ abP acv abP abP -pEX +pDm abP abP acv @@ -68707,17 +50477,17 @@ abP abP acv abP -aYY -sam -tDc -abU -abU -abU -abU -abU -abU -mGl -cRn +rpd +woi +tUB +isa +isa +isa +isa +isa +isa +vtL +hoZ apo pkc uDW @@ -68740,9 +50510,9 @@ bfc oJn aIm aIm -gaP -pVL -dXq +vbo +dnu +vgs aIm aIm pwp @@ -68750,20 +50520,20 @@ bgk bfg aIt aIt -vHM -iLN -sXG -dWc -aIu -bbH -sEc -aSN +dTW +uga +dka +qyA +saX +bIm +xpn +tBk aIt -aJd -iyA -iyA -aTO -aTV +fdW +pyv +pyv +eTp +pDM aIt aIt bfd @@ -68772,9 +50542,9 @@ aEZ bfc aUG aUG -nUs -ucu -pbX +dhx +riO +oZg aUG aUG bfD @@ -68800,23 +50570,23 @@ ylo ylo ylo arV -gJr -bry -aHw -aYO -bGg -brw -aZY -aMZ -aVF +tZa +dAJ +goY +qrx +tFV +nQv +oqh +knP +kWI aiL -xmg -aMZ -bsS -aHe -bNm -rFm -aVF +pEN +knP +wQY +eJV +xqS +sRu +kWI arV ylo ylo @@ -68826,15 +50596,15 @@ ylo sXl sXl sXl -xvV -eji -eji -oMp +lNH +gYR +gYR +uVY anT -aoB -oay -oay -aXD +qjx +nSF +nSF +fik auL auL auL @@ -68849,34 +50619,34 @@ ylo azX azX sWP -qfl -avX -aFc -avX -avX -avX -avX -avX -avX -aFe -hwe -avX -aFe -aFe -aFe -aFe -avX -hwe -aFe -avX -avX -avX -avX -avX -hwe -hwe -aFc -qfl +kXf +vse +kEX +vse +vse +vse +vse +vse +vse +uhU +ltF +vse +uhU +uhU +uhU +uhU +vse +ltF +uhU +vse +vse +vse +vse +vse +ltF +ltF +kEX +kXf sWP azX azX @@ -68903,29 +50673,29 @@ ylo ylo abF abF -dwH -axj -axj -axj -axj -axj -axj -axj -rCH +gPR +xcH +xcH +xcH +xcH +xcH +xcH +xcH +eml abf -dBW -axj -oVT -xvj +ozX +xcH +vEa +uvt abf abf abf -bkr +ieM abf aax -abR -gth -uya +iaT +gtF +oYm abP eTj oGz @@ -68939,7 +50709,7 @@ adE oGz eTj abP -jOE +ljM abP abJ oGz @@ -68953,16 +50723,16 @@ abO oGz abP abP -abR -tDc -aPr -jWy -yaq -bHj -yaq -jWy -vad -aPr +iaT +tUB +vBX +gRU +fNN +wCo +fNN +gRU +tIW +vBX abP abO aQG @@ -68984,43 +50754,43 @@ aFd wiF xNa aIm -kJT -aIo -ltk -xHN -jzn +cww +vnx +fGG +gdQ +vDY aIm aIm aIm aIt aIt -xqz -aIu -sEc -bbH -bbH -bbH -bbH -sEc -vGn +qpj +saX +xpn +bIm +bIm +bIm +bIm +xpn +pWe bbJ aIX aIX aIX aIX aIX -roj +uVn aIt aIt bfc bfc aUG aUG -aTQ -aJr -gbm -aJr -ecA +qEK +ksy +tqX +ksy +mkT aUG aUG bfd @@ -69045,23 +50815,23 @@ ylo ylo ylo arV -bsS -aHe -aHw -aMZ -rFm -aMZ -aMZ -aMZ -gbQ +wQY +eJV +goY +knP +sRu +knP +knP +knP +fxa aiQ -aHw -aMZ -bNc -bEM -bFj -rFm -rDF +goY +knP +dCt +wAw +gni +sRu +eSF arV ylo ylo @@ -69069,19 +50839,19 @@ ylo ylo ylo sXl -xJB -eji -hgB -mbO -mbO -mAV -xKC -kCq -aMC -aMC -oMG -oay -kap +vvJ +gYR +sQh +gZR +gZR +gGp +qAb +cjR +rsA +rsA +iSb +nSF +vgu auL ylo ylo @@ -69094,34 +50864,34 @@ azX azX sWP sWP -avX -avX -avX -avX -avX -avX -lTU -avX -avX -eMM -hwe -avX -aFe -eeG -aFe -aFe -avX -hwe -eMM -avX -avX -aFc -hwe -avX -hwe -hwe -avX -avX +vse +vse +vse +vse +vse +vse +vJH +vse +vse +tuL +ltF +vse +uhU +wuU +uhU +uhU +vse +ltF +tuL +vse +vse +kEX +ltF +vse +ltF +ltF +vse +vse sWP sWP azX @@ -69148,29 +50918,29 @@ ylo ylo ylo abF -izn -dBW -qRY -ahk -qRY -ahk -qRY -rCH -lkv +qdm +ozX +nii +hOA +nii +hOA +nii +eml +osB abf -nYO -dBW -oVT -tKy +fjN +ozX +vEa +xiF abf -hyf -fGO -oVT -oob +twj +pzd +vEa +wgp aax -abR -mGl -nna +iaT +vtL +rCi abP avD mqn @@ -69184,7 +50954,7 @@ aFt erc acI abP -jOE +ljM abP aFv fqp @@ -69198,16 +50968,16 @@ avD mqn lQu abP -gab -vbB -uya +jZw +vir +oYm abP abP abP abP abP -coy -uya +gCm +oYm abP abP abP @@ -69229,44 +50999,44 @@ bfc bfc bfe aIm -aYz -aIq -aIq -vtk -rWM -wTZ -ezJ +kBT +tio +tio +rWX +xjv +cyn +tjN bbB -sHB -aSj -aIu -bbH -sEc -vmm -aSk -obd -bbH -sEc -owL +usC +tiG +saX +bIm +xpn +gyN +hYW +eTO +bIm +xpn +eUh bbJ aIX -aJo -aTC -aJB +lgm +wZZ +xJp aIX aIX -aTZ +cZN aIt bfc bfc aUG -aJf -hBq -aIZ -aIZ -jUx -pVr -aJf +ivC +nmE +eat +eat +sLx +hwc +ivC aUG bfg bfc @@ -69290,23 +51060,23 @@ aQz aQz aQz aQz -opl -bry -egM -aMZ -rFm -aMZ -aMZ -aMZ -gbQ +ofA +dAJ +kBy +knP +sRu +knP +knP +knP +fxa aiQ -aHw -aMZ -aMZ -aMZ -aMZ -rFm -gbQ +goY +knP +knP +knP +knP +sRu +fxa arV aqr aky @@ -69314,19 +51084,19 @@ aky aqr aqr sXl -aCe -fxW -aWQ -mPS -pQt -mPS -mPS -aMD -dMR -dMR -fxn -aMC -qgl +fOQ +bHm +tNK +iMY +gsC +iMY +iMY +pFE +ejF +ejF +ygM +rsA +cQf auL auL auL @@ -69338,36 +51108,36 @@ ylo azX sWP sWP -avX -avX -avX -hwe -hwe -avX -aFc -avX -avX -avX -aFe +vse +vse +vse +ltF +ltF +vse +kEX +vse +vse +vse +uhU vCx -qfl -aFe -aFe -aFe -aFf -dWJ +kXf +uhU +uhU +uhU +fLk +eaO vCx -aFe -avX -avX -hwe -hwe -avX -avX -avX -avX -avX -avX +uhU +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -69394,28 +51164,28 @@ ylo abF abF abF -bke -vrA -mod -agS -oEU -qSG -akf +njY +ngw +cIq +ieO +hFQ +ryd +yeQ abF abF abF -iYj -hap -xsE -aHy -xsE -kky -igg -oob +toO +qMu +uYK +wAi +uYK +lvK +ijj +wgp aax -abR -gth -uya +iaT +gtF +oYm abP abH abM @@ -69443,20 +51213,20 @@ abH abM eTj abP -abR -gth -uya +iaT +gtF +oYm abP -aFi -nSC -acW +qMX +sKs +pKj abP -vjF -aQX +tUN +lub abP -aFi -acj -acB +qMX +nmo +cpy adV ylo ylo @@ -69474,44 +51244,44 @@ bfc bfc bfd aIm -njP -aIr -yeW -jDO -aIq -aIq -aIq -aLi -bbH -bbH -bbH -bbH -sEc -voM +hab +fGw +gNC +tNH +tio +tio +tio +uBu +bIm +bIm +bIm +bIm +xpn +kNS aIt -brm -bbH -scH -ncR +kLh +bIm +tpX +smn bbQ mrQ -rbo -mDR -aJC +yby +hsC +dHo fdh aIX -aUa +wPO bbJ bfc bfc aUG -ese -scj -aIZ -kSD -jUx -taY -ese +sFw +ogC +eat +fOL +sLx +bUq +sFw aUG bfc aEZ @@ -69530,50 +51300,50 @@ bfc bfu awY aQC -kOL -aQQ +jGG +cfr aQO xMS aQC -bEM -bFi -aHw -aMZ -sQz -aMZ -aMZ -clp -bNv +wAw +mEj +goY +knP +lFK +knP +knP +nuX +fds aiL -vLZ -lsc -lsc -lsc -pDB -rFm -edN +tsU +rUD +rUD +rUD +hCe +sRu +dmV aiL -hUY -eiR -eiR -gud +tAb +hft +hft +gvf jRL -lUM -fuK -mAV +gcu +nGV +gGp anT anT anT anT anT -aIi -aMC -aMC -fTT -cth -mpj -kap -aEG +gYz +rsA +rsA +kQr +ene +sOV +vgu +tlf auL aSa aSa @@ -69582,38 +51352,38 @@ aSa azX azX sWP -avX -avX -avX -avX -hwe -hwe -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse vCx -qfl -dWJ -avX -avX -jyX -qfl +kXf +eaO +vse +vse +klV +kXf vCx -avX -avX -avX -avX -avX -avX -aFc -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse sWP azX azX @@ -69649,58 +51419,58 @@ aax abF abF abF -kXz -qIS -nqF +xfB +rzm +tER abf -dBW -oVT -axj -tpW +ozX +vEa +xcH +mts aax -abR -gth -uya +iaT +gtF +oYm abP abP -acw +pEV abP abP abP -acw +pEV abP abP abP -acw +pEV abP abP djF abP abP -acw +pEV abP abP abP -acw +pEV abP abP abP -acw +pEV abP abP -abR -gth -uya +iaT +gtF +oYm abP abP -acw +pEV abP abP -coy -uya +gCm +oYm abP abP -acw +pEV abP adV ylo @@ -69719,44 +51489,44 @@ bcf bcf aUH aUH -buL -muu -rMR -vLQ -oJV -oJV -oJV -bOj -ncR -ncR -ncR -ncR -iLN -bPt +nEJ +qoo +lhH +gFg +iuf +iuf +iuf +ofz +smn +smn +smn +smn +uga +ikA aIt -brn -bbH -sEc -bbH +jhF +bIm +xpn +bIm bqr aIX -aJp -aTK -aJD +plp +wQC +haF aIX aIX -aUc +ktH lnQ bfc bfc aUG -aJf -oTw -aIZ -cuO -hSv -taY -aJf +ivC +gdk +eat +iol +nCa +bUq +ivC aUG bfc bfc @@ -69774,51 +51544,51 @@ bfc bfc bfc bfc -ahc -aQQ -aQQ +xas +cfr +cfr aQO aQO aQC aQC aiL -aHw -aMZ -aMZ -aMZ -aMZ -gbQ +goY +knP +knP +knP +knP +fxa aiL aiL aiL aiQ aiQ aiL -aHw -rFm -gbQ +goY +sRu +fxa aiL -rPZ -aLM -aLM -aWx +rui +siT +siT +tHr jRL -aWo -aGq -aMw -aMv -aMw -aXc -aMA +sBL +tXj +oWX +wnV +oWX +uLE +ofi anT -bsD -oZH -aMC -aMC -usz -aMC -qgl -ged +mGB +nBP +rsA +rsA +tvv +rsA +cQf +jwT auL aSa aSa @@ -69827,38 +51597,38 @@ aSa azX sWP sWP -avX -avX -aFc -avX -avX -avX -avX -avX -avX -avX -avX -aFc +vse +vse +kEX +vse +vse +vse +vse +vse +vse +vse +vse +kEX sWP vCx vCx -hwe -hwe +ltF +ltF vCx vCx sWP -avX -avX -avX -avX -avX -avX -avX -avX -avX -aFc -avX -aFc +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +kEX sWP sWP azX @@ -69884,13 +51654,13 @@ ylo abF abF abF -gYL -gYL -gYL -gYL -gYL -gYL -gYL +wkt +wkt +wkt +wkt +wkt +wkt +wkt abF abF abF @@ -69898,51 +51668,51 @@ abf abf abf abf -vGz -oVT -sYc -tpW +xUc +vEa +nmL +mts aax abS -iIf +eeX abS abP -aFi -acx -acB +qMX +wVL +cpy abP -aFi -acx -acW +qMX +wVL +pKj abP -aFi -acx -acB +qMX +wVL +cpy abP -jFF +kET abP -aFi -acx -acB +qMX +wVL +cpy abP -aFi -acx -acW +qMX +wVL +pKj abP -aFi -acx -acB +qMX +wVL +cpy abP abS -iIf +eeX abS abP acz abN abO abP -coy -abQ +gCm +wGF abP acz abN @@ -69959,49 +51729,49 @@ bfc oJn aEZ aUH -rmk -wTp -fGM -phN +gcp +qDW +lyr +hOB bbB -mgO -aIq -dVN -oQO -sum -aRK -slU +jRx +tio +qCa +pJc +iIm +iuU +vih bbB -gjw -aSk -obd -bbH -cIB -oia -bTU -gOO -ncR -iLN -vmm +tBu +hYW +eTO +bIm +iUP +uGu +nDH +pxK +smn +uga +gyN bbJ aIX -aJq -aTM -aTU +qTD +nju +jCt aIX aIX -biO +wSi aIt aEZ bfc aUG -aJf -mOr -aIZ -cuO -jUx -xSk -aJf +ivC +cGN +eat +iol +sLx +lNR +ivC aUG bfe bfc @@ -70023,47 +51793,47 @@ aQC aQC aQO aQW -aQQ -aQQ -ahc -aHe -aHw -aMZ -aMZ -aMZ -aMZ -brI +cfr +cfr +xas +eJV +goY +knP +knP +knP +knP +nVP aiL -bMN -dso -uKg -iEN -eYG -sON -rFm -gbQ +vuj +fdr +kVI +rXX +nYK +hOp +sRu +fxa aiQ -agN -sIC -aLN -qKN +swy +pQX +kqj +mte jRL -dQp -aGp -nmb +kNg +qgJ +niB anT -aMx -aMz -kqA +gCn +wLu +xDF anT -tXa -aEC -aMC -aXE -lda -aEC -qgl -lhS +sUT +dYW +rsA +vPN +tmj +dYW +cQf +hxC auL ylo ylo @@ -70071,40 +51841,40 @@ ylo ylo azX sWP -avX -avX -avX -avX -avX -avX -avX -avX -qVA -hwe -aFc -avX -avX -avX -avX -aFe -eMM -aFe -aFe -avX -avX -avX -avX -aFc -hwe -hwe -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse +uyh +ltF +kEX +vse +vse +vse +vse +uhU +tuL +uhU +uhU +vse +vse +vse +vse +kEX +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -70128,29 +51898,29 @@ ylo ylo ylo abF -gYL -rvp -kFq -kFq -kFq -kFq -kFq -ewT -gYL +wkt +nMg +wuT +wuT +wuT +wuT +wuT +oBv +wkt aax auW auW asf ntt abf -wIr -uQt -wmr -mRl +lCg +jFA +eTc +ell aax -mQu -hxc -qac +vSA +nph +vOg abP abP abP @@ -70164,7 +51934,7 @@ abP abP abP abP -jOE +ljM abP abP abP @@ -70178,16 +51948,16 @@ abP abP abP abP -cvr -hxc -qac +rLN +nph +vOg abP abH mfX pkc apo -jyZ -cRn +eCl +hoZ apo pkc kJa @@ -70204,48 +51974,48 @@ wiF xNa bfc aUH -aRq -lla -gOU -xHN +qJE +lZZ +ygf +gdQ bbB -qyO -gxp -dVN -xHN -jzn +jTC +qWY +qCa +gdQ +vDY aIm aIm aIm aIt aIt -faF -obd -bbH -bbH -bbH -bbH -jvG -sEc -vGn +lXg +eTO +bIm +bIm +bIm +bIm +ddm +xpn +pWe bbJ aIX aIX aIX aIX aIX -ltX +uoe aIt aIt bfc bfc aUG aUG -aTR -pLy -cuO -vrC -aTn +rax +rCT +iol +pXS +thT aUG aUG bfd @@ -70268,47 +52038,47 @@ bfc aQC aPb aQO -aQQ -hQb +cfr +nTA aQC -iOP -cUp -pDB -aMZ -aMZ -clp -bNv +lKe +kWq +hCe +knP +knP +nuX +fds aiL -bMO -brO -aHe -brO -bjR -aMZ -rFm -gbQ +nSW +idH +eJV +idH +obJ +knP +sRu +fxa aiQ -agN -aLO -aLO -qKN +swy +jcO +jcO +mte jRL anT -aMt +rvR anT anT aoa -aoF +ffU aoa aoA aac aac -qHM +tcM aoA aoA -aED -aEE -aoG +pxJ +ent +oYA auL ylo ylo @@ -70316,40 +52086,40 @@ ylo ylo azX sWP -avX -avX -avX -avX -avX -avX -aFc -avX -hwe -hwe -avX -avX -avX -avX -avX -avX -avX -avX -avX -aFc -avX -avX -avX -avX -hwe -hwe -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +kEX +vse +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +ltF +ltF +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -70373,66 +52143,66 @@ ylo ylo ylo abF -gKQ -hho -aah -acU -acZ -afh -agi -qaY -jGk +mFO +jLb +scL +qfX +ifT +uls +qnM +xMo +weG aax pTp -jkb -fUj +uyE +mcq pTp abf -ldy -oVT -eXX -meJ +hIJ +vEa +xzr +nSS aax -bHd -hxc -ehS -pdR -jOE -jOE -iQE +nKI +nph +tjI +jov +ljM +ljM +jbv djF djF djF -jOE -oxL +ljM +stx piZ djF djF -jOE -iQE -jOE +ljM +jbv +ljM djF djF djF -xuo -jOE +gfK +ljM djF piZ djF -iQE -oxL -oxL -pdR -jZA -hxc -vWM +jbv +stx +stx +jov +qYO +nph +sCC abP iWA aGj abN abP -aYY -jWy +rpd +gRU abP abO aRl @@ -70449,15 +52219,15 @@ bfc aUH aUH aUH -mLu -oQY -rED -bnC +sCP +hUx +gea +ykT aUH aUH -fMv -dVN -dqR +rBJ +qCa +kFy aIm aIm aeo @@ -70465,20 +52235,20 @@ beO beO aIt aIt -bqe -vrx -bTO -fax -obd -goV -sEc -dyd +jHl +wDo +kMX +iRz +eTO +nSk +xpn +cWB aIt -aTu -aTw -ubv -aTl -nBa +wAn +eTr +qYV +vWx +kUA aIt aIt xCy @@ -70488,7 +52258,7 @@ xCy aUG aUG aJa -aIc +nQo aJa aUG aUG @@ -70519,41 +52289,41 @@ aQz arV aiL qfp -sxO -lug +uXq +hJS qfp aiL aiL -bNo -aMZ -aMZ -aMZ -aMZ -aMZ -rFm -gbQ +iIC +knP +knP +knP +knP +knP +sRu +fxa aiQ -agN -aLL -aLL -pkh -cCK -qkD -azf -pkh -eiR -eiR -qkD -aLu -aGy -aMc -aMC -aoC -nuj +swy +xcN +xcN +fjj +mzl +cVe +dAG +fjj +hft +hft +cVe +tHs +auT +aMe +rsA +hHa +pbk aoA -aLp -aEF -aEH +rdH +wdE +cJY auL ylo ylo @@ -70561,40 +52331,40 @@ ylo azX azX sWP -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -elG -avX -avX -avX -avX -avX -avX -avX -avX -avX -aFc -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +hDx +vse +vse +vse +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse +vse +vse +vse sWP azX azX @@ -70618,29 +52388,29 @@ ylo ylo ylo abF -gYL -hho -aaA -abK -ada -afu -ago -qaY -gYL +wkt +jLb +kfa +mYx +nRr +bre +eGr +xMo +wkt aax pTp -odW -odm +gkB +mdP fKw -aIU -xsE -qST -axj -tpW +uOs +uYK +kgI +xcH +mts aaz -bBD -hxc -ehS +lJM +nph +tjI abP abP abP @@ -70651,7 +52421,7 @@ abP abP abP abP -pEX +pDm abP abP abP @@ -70662,15 +52432,15 @@ abP abP abP abP -pEX +pDm abP abP abP abP abP -jZA -hxc -ehS +qYO +nph +tjI apR apR apR @@ -70692,16 +52462,16 @@ bfc aER bfc aUH -luE -biq -aIo -vkO -aIq -vtk -bnD +fUa +lMd +vnx +jYI +tio +rWX +dpO aUH bnH -aHF +kid bnH aUH aeo @@ -70714,10 +52484,10 @@ aIt aIt aIt aIt -biG -bbH -lOS -wqn +eoM +bIm +dQj +uJQ aUI aUI aUI @@ -70732,9 +52502,9 @@ aEP nfz xCy aUG -ucj -cuO -aUf +xTP +iol +hDg aUG bfc bfc @@ -70762,39 +52532,39 @@ ylo ylo ylo arV -umU -djM -djM -djM -djM -tWu +sgd +lvA +lvA +lvA +lvA +qNz aiL -bNp -aMZ -iIU -oZD -oZD -oZD -fVo -gbQ +dtI +knP +pEU +eVf +eVf +eVf +pUw +fxa aiQ -xUj -agQ -bhk -agQ -agQ -agQ -azf -agQ -agQ -eLP -agQ -agQ -aGB -aoC -aoC -aoC -qgl +cpR +tgU +uQu +tgU +tgU +tgU +dAG +tgU +tgU +nou +tgU +tgU +lZP +hHa +hHa +hHa +cQf aoA aac qqK @@ -70806,40 +52576,40 @@ baU azX sWP sWP -avX -aFc -avX -avX -avX -avX -avX -avX -avX -aFc -avX +vse +kEX +vse +vse +vse +vse +vse +vse +vse +kEX +vse sWP vCx -dWJ -dWJ -dPH -avX -avX -toC -dPH -jyX +eaO +eaO +eZp +vse +vse +taB +eZp +klV vCx sWP -avX -avX -avX -avX -avX -avX -aFc -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +kEX +vse +vse +vse +vse sWP sWP azX @@ -70863,67 +52633,67 @@ ylo ylo ylo abF -gYL -hho -aaW -acy -adf -afU -agp -qaY -gYL -aEa +wkt +jLb +dak +xnb +wXL +eLx +oHM +xMo +wkt +eky pTp -iBO -jkb +lUp +uyE nHU abf -dBW -oVT -axj -tKy +ozX +vEa +xcH +xiF aaz -bpb -vbW -pdW -oPa +dLG +whr +tUC +pwe adJ adJ -oTE -mIa -oyA -vxk -ehU -xjX -xjX -vaY -grg -oYH +dht +xef +vjD +hjB +piA +nVv +nVv +gSw +wvj +kIw adJ adJ -pPp -tIP -vaY -pge -vaY -tIP -vaY -jOn +jSC +jPH +gSw +mnR +gSw +jPH +gSw +pWB adJ adJ -kSG -agT -kjC -vbW -amb +jgA +eAC +dQV +whr +hCs apR -axs -bni +lUK +kjf apR -bFL -aqc -aqc -bLk +voN +cdD +cdD +cFc ahz ylo ylo @@ -70937,17 +52707,17 @@ bfc oJn aUH aUH -dYB -aIq -aIq -raw -emC -aIq -vtk +dQq +tio +tio +uOt +dRm +tio +rWX aIm -hHg -mUj -dcr +lgn +yjJ +oPT aUH aeo bgf @@ -70955,20 +52725,20 @@ bfb bgf aeo aII -xqz -aSj -aIw +qpj +tiG +xtN aII -aIu -bbH -sEc -owL +saX +bIm +xpn +eUh bbM -gnm -aSY -bZK -aJr -azW +fsc +fvi +ykl +ksy +lsx aUG bfc bfc @@ -70977,9 +52747,9 @@ bfc bfc bfc bbM -vTF -cuO -wEn +lhq +iol +vmO ukV bfc bfc @@ -71007,85 +52777,85 @@ ylo ylo ylo arV -nDN +mgS lZm lZm lZm lZm -eVr +fQh aiL -bMP -brP -aHe -brP -ojN -aMZ -rFm -gbQ +rSl +pcf +eJV +pcf +grR +knP +sRu +fxa aiL -xUj -agQ -ahC -azk -azk -azk -iCm -agQ -bhk -agQ -agQ -agQ -aGB -aoC -aoC -aoC -oMG -itD -oay -kCq -aXn -aHM -aoG -aMc -aoG -bkO -hwe -hwe -avX -avX -avX -avX -avX -aFc -avX +cpR +tgU +xwn +cFp +cFp +cFp +pGU +tgU +uQu +tgU +tgU +tgU +lZP +hHa +hHa +hHa +iSb +saU +nSF +cjR +kiK +ufH +oYA +aMe +oYA +fSP +ltF +ltF +vse +vse +vse +vse +vse +kEX +vse sWP sWP -avX -avX +vse +vse sWP sWP sWP sWP sWP -hwe -hwe +ltF +ltF sWP sWP sWP sWP sWP -avX -avX +vse +vse sWP sWP -avX -avX -avX -hwe -hwe -avX -avX -avX +vse +vse +vse +ltF +ltF +vse +vse +vse sWP azX ylo @@ -71108,67 +52878,67 @@ ylo ylo ylo abF -gYL -hho -abq -kRa -adk -agc -agr -qaY -gYL +wkt +jLb +dhM +pRf +dae +jQJ +pff +xMo +wkt aax -dEe -jkb -jkb +lcG +uyE +uyE nHU abf -ugC -sll -xsE -xsE -aJR -jAE -acK -awk -otY +tOU +iCX +uYK +uYK +dFV +cco +oib +syw +jNX adJ -avZ -ulb -dbY -adH -adH -adH -dbY -adH -adH -aEJ -gvl +rQl +vOQ +nPY +kom +kom +kom +nPY +kom +kom +lii +dXj adJ -pPp -ulb -als -aZn -aZM -aZn -aZM -aZn -uCU -jOn +jSC +vOQ +mJx +kbJ +hZL +kbJ +hZL +kbJ +ozr +pWB adJ -hKD -aem -all -acK -jAE -axr -ghx -aQK +qdh +mCP +deQ +oib +cco +ruZ +rfx +kir apR -aWY -apS -apS -bNR +jvy +fbG +fbG +wyq aqw ylo ylo @@ -71181,18 +52951,18 @@ nZR wiF xNa aUH -jzn -aIp -mGN -sjw -mRI -kEj -oJV -gfC -aHD -aIs -ssh -sFD +vDY +wNI +sjV +vZz +qTc +cic +iuf +myr +cMu +uwg +fIM +vUX aUH beO bgg @@ -71200,20 +52970,20 @@ bfV bgg aeo aII -aIH -dQL -ncR -aIa -ncR -bZD -ozY -ncR -bZI -qHF -qHF -qHF -lwy -ilr +waR +xXU +smn +maO +smn +oWk +cfu +smn +tOy +uzJ +uzJ +uzJ +jOY +wiS aUG aEZ bfc @@ -71222,9 +52992,9 @@ bfc bfc aEZ ukV -eRg -cuO -wEn +jZt +iol +vmO bbM bfc bfc @@ -71252,85 +53022,85 @@ ylo ylo ylo arV -djM -bFf -bFm -bFm -hbX -djM +lvA +oiW +tSN +tSN +umy +lvA aiL -bMQ -fPp -kOc -kUt -fcq -pDB -rFm -gbQ +xOL +vMG +bFa +hIS +pAy +hCe +sRu +fxa aiL -xUj -agQ -azf -tLF -vGW -vGW -gIe -vGW -vGW -vGW -rYB -boA -aGB -aMc -aoC -aoC -aoC -aoC -aoC -aoC -aoC -goe -aoC -aoC -aoC -aTP -hwe -hwe -avX -avX -avX -qVA -hwe -avX -avX -avX +cpR +tgU +dAG +prZ +kXc +kXc +wTa +kXc +kXc +kXc +mOi +ebo +lZP +aMe +hHa +hHa +hHa +hHa +hHa +hHa +hHa +fcB +hHa +hHa +hHa +iJJ +ltF +ltF +vse +vse +vse +uyh +ltF +vse +vse +vse sWP -hwe -hwe +ltF +ltF sWP sWP vCx -qfl +kXf vZJ -avX -avX +vse +vse vCx -qfl +kXf vCx sWP sWP -hwe -hwe +ltF +ltF sWP -avX -aFc -avX -avX -hwe -hwe -avX -aFc -avX +vse +kEX +vse +vse +ltF +ltF +vse +kEX +vse sWP azX ylo @@ -71353,67 +53123,67 @@ ylo ylo ylo abF -gKQ -hho -acJ -acX -aew -agh -agy -qaY -jGk +mFO +jLb +sHY +nss +xcy +iyL +pSf +xMo +weG aax cvi -jkb -jkb +uyE +uyE pTp abf -obz -oVT -axj -axj -axj -aec -aec -vbW -otY +mCX +vEa +xcH +xcH +xcH +sFX +sFX +whr +jNX adJ -rur -jns -jns -adH -adH -uAN -oZx -diI -diI -xYP -hnx +tsF +uLm +uLm +kom +kom +lwa +dcF +jgr +jgr +ioR +gPn adJ -rur -aEJ -pEj -aZt -pEj -aZt -pEj -bab -adH -cLZ +tsF +lii +hDf +eVF +hDf +eVF +hDf +wuy +kom +dif adJ -lPi -aem -vbW -aec -sjs +uYd +mCP +whr +sFX +cIQ apR -aQd -bvi +pcV +jZB apR -bwG -apS -apS -bOG +qEX +fbG +fbG +eIv aqw ylo ylo @@ -71428,16 +53198,16 @@ aUH aUH aIn aIn -aHA +uqM aIm -bnB -snG -mWj -dVN +mQD +pZn +ydN +qCa aIm -cGb -aRW -ePL +sIf +qsj +vqQ aUH beO bgc @@ -71445,20 +53215,20 @@ bfR bgc beO aII -aIH -sEc -mKk +waR +xpn +yiv aII -kfc -sEc -bbH -lRY +pli +xpn +bIm +dDZ bbM -aJe -aJe -meD -cuO -aYt +jCq +jCq +pIN +iol +dTH aUG bfc aUG @@ -71467,9 +53237,9 @@ bcg aUG bfc aUG -qAs -cuO -taY +ltB +iol +bUq aUG bfu bfQ @@ -71497,26 +53267,26 @@ aiU ylo ylo ahA -djM -brB -dJR -fhG -nsg -djM +lvA +wlm +lkA +qXE +fZg +lvA aiL aiL aiL aiQ aiQ aiL -aHw -rFm -pUA +goY +sRu +uQx aiQ -fdf -agQ -azf -anG +rel +tgU +dAG +liu qIU qIU qIU @@ -71526,56 +53296,56 @@ qIU qIU qIU qIU -rWY -aoC -aoC -aoC -biS -aoC -aEn -aoC -goe -aoC -aoC -aoC -aTP -hwe -qgF -avX -avX -avX -hwe -hwe -avX -wAz -avX +vqq +hHa +hHa +hHa +hxg +hHa +ldF +hHa +fcB +hHa +hHa +hHa +iJJ +ltF +mvR +vse +vse +vse +ltF +ltF +vse +spV +vse sWP -avX -avX -avX +vse +vse +vse mRC vCx -hwe +ltF vCx -avX -avX +vse +vse vCx -hwe +ltF vCx sWP -avX -avX -avX +vse +vse +vse sWP -avX -wfD -avX -avX -avX -avX -avX -avX -avX +vse +cMB +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -71598,67 +53368,67 @@ ylo ylo ylo abF -gYL -lTA -sVA -sVA -sVA -sVA -sVA -sEb -gYL +wkt +mBz +vdC +vdC +vdC +vdC +vdC +pMz +wkt aax eMI eMI pJP eMI abf -oVr -oVT -axj -cAV +vGo +vEa +xcH +vPP aaz -pMN -aec -vbW -otY +emm +sFX +whr +jNX adJ -vDu -pGp -pEj -adH -adH -kGV -adH -adH -jns -tdi -sCl +bXR +jxg +hDf +kom +kom +qTH +kom +kom +uLm +qhn +isQ adJ -rur -aEJ -pEj -aZt -cgs -aZt -pEj -bab -adH -fEI +tsF +lii +hDf +eVF +jfx +eVF +hDf +wuy +kom +dCT adJ -aRY -aem -vbW -aec -tSo +daN +mCP +whr +sFX +rfn apR apR apR apR -bzz -xKV -apS -bPf +sjo +hyB +fbG +gvM ahz aSa aSa @@ -71670,15 +53440,15 @@ bfc aER bfc aUH -nHs -ftj -aIo -dVN +vOr +rLH +vnx +qCa aIm aIm aIm aIm -lXV +iEG aIm aIm aIm @@ -71690,31 +53460,31 @@ bfg beO beO aIt -aSy -puh -vbv +uNM +oQJ +lCI aIt aIt -sEc -bbC +xpn +lgy aIt aUG -xkt -aJf -kqp -qEu -aBm +lNX +ivC +xNA +ejc +wlH aUG aUG aUG -sYh -ucu +rhw +riO aUG aUG aUG -qAs -cuO -taY +ltB +iol +bUq aUG aUG pwp @@ -71742,85 +53512,85 @@ aiU ylo ylo ahA -djM -brB -uip -drD -nsg -djM +lvA +wlm +jAI +uow +fZg +lvA aiL -tWM -brT -bsa -lnc -bJh -sON -aNn -oZD -aNo -azk -azk -azE -anG +dTw +nKL +jVL +sXT +feG +hOp +epQ +eVf +cwW +cFp +cFp +ewJ +liu qIU -aBj -kuW -aBq +rIi +jtb +lXZ qIU -aBj -aZQ -aBq +rIi +vaL +lXZ qIU -aEl -aEn -aoC -aEu -ayH -ayH -aEk -aMc -goe -aoG -aMc -aoG -aTP -hwe -hwe -avX -aFc -avX -avX -avX -aFc -avX -avX +pVi +ldF +hHa +mCt +fNj +fNj +uPk +aMe +fcB +oYA +aMe +oYA +iJJ +ltF +ltF +vse +kEX +vse +vse +vse +kEX +vse +vse sWP -avX -avX -aFc -avX -avX -avX -avX -aFc -avX -avX -avX -avX -aFc -avX -avX -aFc +vse +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +vse +vse +kEX +vse +vse +kEX sWP -avX -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse +vse sWP azX ylo @@ -71844,13 +53614,13 @@ ylo abF abF abF -gYL -gYL -gYL -gYL -gYL -gYL -gYL +wkt +wkt +wkt +wkt +wkt +wkt +wkt abF abF abF @@ -71858,52 +53628,52 @@ abf abf abf abf -oVr -oVT -rCH -eNm +vGo +vEa +eml +oNt aax -aDi -aec -vbW -otY +hCo +sFX +whr +jNX adJ -dLL -aEJ -sHX -adH -aEJ -wfn -qpB -nSm -qti -tdi -sCl +toW +lii +cfQ +kom +lii +xmN +esK +hAP +uhO +qhn +isQ adJ -qgg -aEJ -bHe -aZt -pEj -aZt -qFK -bab -bHe -fEI +oAl +lii +gbp +eVF +hDf +eVF +svy +wuy +gbp +dCT adJ -jyb -aem -vbW -aec -apr +oDz +mCP +whr +sFX +iVu apR -aMY -aQN -aqc -pVm -huo -apS -bPg +sTX +rkz +cdD +iIr +qHR +fbG +ycH aqw ylo ylo @@ -71915,19 +53685,19 @@ bfc oJn aUH aUH -uKE -aIq -mGN -itb +ekZ +tio +sjV +nmd aIm -lop -ebK +rdO +rPo aIn -dVN -aRO -bnI +qCa +qNL +rbp aIm -lop +rdO aUH aUH aeo @@ -71935,32 +53705,32 @@ aeo beO aIt aIt -kmC -bbH -jdj +pXM +bIm +chQ aII -oFe -bZE -bbI -npI +gtO +gST +oSV +lrj aUG -wGr -aSZ -iOW -cuO -cLF -bcc -aJr -aTA -aJr -gbm -hEi -biQ -aTS -lcF -cuO -cLF -tVx +avk +qqU +poc +iol +tlv +nkq +ksy +oZk +ksy +tqX +rSg +luB +fgL +fSQ +iol +tlv +uXK aUG aUG aUG @@ -71987,38 +53757,38 @@ aiU aiU ylo ahA -djM -brB -bFn -pEm -nsg -djM +lvA +wlm +cBp +xjk +fZg +lvA aiL -brR -aMZ -aMZ -aMZ -aMZ -aMZ -rFm -clp +mWb +knP +knP +knP +knP +knP +sRu +nuX aiQ -sSZ -agQ -azf -aWy +wlr +tgU +dAG +kBQ qIU -hHL +wnA oLg -aBk +lVq qIU -aBk +lVq anL -aBk +lVq qIU aoE -bkZ -bBL +oJK +qSb aoE aoE aoN @@ -72031,40 +53801,40 @@ baU azX sWP sWP -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse sWP -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse +vse sWP -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -72089,13 +53859,13 @@ abF abF abF abF -bki -bki -bki -bki -bki -bki -bki +iSU +iSU +iSU +iSU +iSU +iSU +iSU abF abF abF @@ -72104,51 +53874,51 @@ uUk uUk abf abf -aHz +tvu abf abf aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ -adK -agm -agl -mJq -ajM -pfk +rgK +jyc +sSL +mNM +kKq +jrY adJ adJ adJ -dqt +uFO adJ adJ -sMW -aEJ -pEj -aZv -pEj -aZt -pEj -bab -kbm -ahd +nww +lii +hDf +fMZ +hDf +eVF +hDf +wuy +ryA +fHK adJ -kSG -aem -vbW -aec -amb +jgA +mCP +whr +sFX +hCs apR -apS -apS -apS -apS -huo -apS -bGn +fbG +fbG +fbG +fbG +qHR +fbG +ocO aqw ylo ylo @@ -72159,56 +53929,56 @@ bfe bfc oJn aUH -spP -aIp -aIq -dVN -bnz +kis +wNI +tio +qCa +tgQ aIm -aRy -oJV -aHC -kEj -gfC -oJV -aHC -oJV -rdn +mqm +iuf +qNh +cic +myr +iuf +qNh +iuf +wjX aUH beO aeo beX aIt -jho -tml -bbH -dtU -bbG -fLm -bZE -bbI -aSO +xDN +lBq +bIm +dFu +umf +pha +gST +oSV +oAj aUI aUI aUI -sSg -gft -xiV -bbR -hyG -qHF -qHF -qHF -qHF -qHF -yga -qHF -oJb -aIZ -jWw +pJB +pLP +jyu +xda +rpU +uzJ +uzJ +uzJ +uzJ +uzJ +iyR +uzJ +vSU +eat +gSl aUG -aJF -aJF +kWX +kWX aUG aUG bfc @@ -72232,43 +54002,43 @@ bfc aiU ylo ahA -djM -brB -uip -aVn -nsg -djM +lvA +wlm +jAI +pNN +fZg +lvA aiL -xnU -aMZ -iIU -oZD -oZD -oZD -phM -toi +xqA +knP +pEU +eVf +eVf +eVf +uOB +wpo aiQ -xUj -agQ -azf -anG +cpR +tgU +dAG +liu qIU -aBl -aBo +goc +xcQ anR qIU -aBl -aBo +goc +xcQ aos qIU -bUo -bCv -bCv +twr +cSt +cSt aoN -bzg -kVZ -kVZ -aEL +qjZ +mhO +mhO +xDv auG ylo ylo @@ -72276,19 +54046,19 @@ ylo azX azX sWP -avX -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse +vse sWP -avX -avX -avX -avX +vse +vse +vse +vse vCx vCx vCx @@ -72297,19 +54067,19 @@ vCx vCx vCx vCx -avX -avX -avX -avX +vse +vse +vse +vse sWP -avX -avX -aFc -avX -avX -avX -avX -avX +vse +vse +kEX +vse +vse +vse +vse +vse sWP azX azX @@ -72334,29 +54104,29 @@ abF abF abF abF -aaL -aId -aay -aId -aay -aId -aaK +pzw +wQI +vUa +wQI +vUa +wQI +ijf abF abF abF -aav -aas -aas -atn -ldy -oVT -tKy -yki +daJ +eCZ +eCZ +tbx +hIJ +vEa +xiF +umd aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ adJ adJ @@ -72366,34 +54136,34 @@ adJ adJ adJ adJ -lxj -tdi -uCU +kVO +qhn +ozr vda -ulb -aEJ -qFK -aZF -pEj -aZt -aZZ -bab -cgs -gYr +vOQ +lii +svy +ryZ +hDf +eVF +sSN +wuy +jfx +fRp adJ -hKD -aem -hRI -jAE -jAE -aIb -cwr -cwr -cwr -cwr -awf -bGj -taQ +qdh +mCP +kgq +cco +cco +kPm +ooc +ooc +ooc +ooc +sdl +jSD +oBG ahz ylo ylo @@ -72404,57 +54174,57 @@ bfd aEP aEX bbB -xcG -dHG -uGC -eDd -aXF +ijK +mYt +wiN +kWx +wHy aIm -oNR +tdK aIm aIm -btT -dVN -vFo +tfE +qCa +vvt aIn -ebK -tOa +rPo +jMN aUH beX aIk aeo aIt -sii -eVI -sTW -jok +vPy +maF +lHz +wEp aII -fLm -bZE -bbI -lyW +pha +gST +oSV +jHf aIt -aJg +uht aUI aUG aJa aJa aJa -eKJ -aIZ -dlz -dos -aIZ -aIZ -pTt -aIZ -aIZ -aIZ -oVj +vxA +eat +sPD +ccd +eat +eat +hjj +eat +eat +eat +qia aIY -aJF -heb -aJF +kWX +eiu +kWX aUG bfc oJn @@ -72477,43 +54247,43 @@ bfc aiU ylo arV -djM -rFJ -vii -vii -iNZ -djM +lvA +rgF +oRL +oRL +djI +lvA aiL -bRj -brU -brX -brE -brU -aMZ -aMZ -pUA +jOC +fTG +ntM +uMC +fTG +knP +knP +uQx aiQ -fdf -agQ -azf -anG +rel +tgU +dAG +liu qIU avT -bxO +tfr avT qIU avT -bxY +kty avT qIU -byJ -bCv -bCv +kRe +cSt +cSt aoN -bzj -bCv -qAH -ocT +nrB +cSt +uMp +dwK auG ylo ylo @@ -72521,19 +54291,19 @@ ylo ylo azX sWP -avX -avX -avX -avX -avX -hwe -hwe -avX -hwe -avX -aFc -avX -avX +vse +vse +vse +vse +vse +ltF +ltF +vse +ltF +vse +kEX +vse +vse vCx bcl bcl @@ -72542,19 +54312,19 @@ bcl bcl bcl vCx -avX -avX -avX -avX -hwe -avX -avX -hwe -hwe -avX -avX -avX -aFc +vse +vse +vse +vse +ltF +vse +vse +ltF +ltF +vse +vse +vse +kEX sWP azX ylo @@ -72578,65 +54348,65 @@ ylo abF tJA aax -snW -aaL -aId -aay -aId -aay -aId -aaK -snW +qJX +pzw +wQI +vUa +wQI +vUa +wQI +ijf +qJX aax -sKa -ldy -axj -axj -axj -axj -oVT -axj -oob +ssl +hIJ +xcH +xcH +xcH +xcH +vEa +xcH +wgp aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ -tNS -xjX -gXp -fCi -vaY -vaY -iWx +wcZ +nVv +wEr +pmq +gSw +gSw +gfZ adJ -dLL -xtW -adH -xYI -jns -aEJ -pEj -aZF -bHe -aZt -pEj -bab -adH -fEI +toW +kCj +kom +frI +uLm +lii +hDf +ryZ +gbp +eVF +hDf +wuy +kom +dCT adJ -aRY -aem -vbW -fXJ -sjs +daN +mCP +whr +dFj +cIQ apR -apS -apS -apS -apS -axt +fbG +fbG +fbG +fbG +quD apR apR ahz @@ -72649,18 +54419,18 @@ nZR wiF xNa bbB -mwK -aIp -vIb -aIq -aXG +tLV +wNI +uhA +tio +eTs aIm aIm aIm -kCH -aIp -sZc -fmM +xbl +wNI +ljf +fFR aIm aIm aIm @@ -72674,32 +54444,32 @@ aII aII aII aIt -bqd -bZE -bbI -bbI -aJb -aKY -aJs +xTv +gST +oSV +oSV +qXU +idn +iOj aUG -hle -hbu +izP +cZB aJa -bbT -aIZ -vth -lki -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -cLF +jcC +eat +eqC +emL +eat +eat +eat +eat +eat +eat +tlv aIY -aJF -urN -aUk +kWX +kKD +uIz aUG bfe oJn @@ -72722,43 +54492,43 @@ bfb aiU aiU arV -lTC +xyk lZm lZm lZm lZm -bNd +kdD aiL -jAz -brU -brX -brY -brU -aMZ -aMZ -aMZ -aNp -agQ -agQ -azf -anG +hYL +fTG +ntM +wTm +fTG +knP +knP +knP +fKs +tgU +tgU +dAG +liu atF -bbW -anQ -anO -aWR -eUn -anQ -anO -aWR -aok -bCv -bCv +fJg +hlR +hrS +xWD +uCm +hlR +hrS +xWD +oMM +cSt +cSt aoN -byw -bCv -nUa -crG +sNg +cSt +cyx +rJN auG ylo ylo @@ -72766,40 +54536,40 @@ ylo ylo azX sWP -avX -avX -avX -avX -avX -hwe -hwe -aFc -hwe -avX -avX -avX -avX +vse +vse +vse +vse +vse +ltF +ltF +kEX +ltF +vse +vse +vse +vse vCx bck -bQk -caZ -bZa -bZc +qPt +lJa +xMZ +ydv bck vCx -avX -avX -aFc -avX -hwe -avX -avX -hwe -qVA -aFc -avX -avX -avX +vse +vse +kEX +vse +ltF +vse +vse +ltF +uyh +kEX +vse +vse +vse sWP azX ylo @@ -72823,128 +54593,128 @@ ylo abF uTU aax -aeP -wlc -aId -aay -aId -aay -aId -aaK -alS +ovG +wpw +wQI +vUa +wQI +vUa +wQI +ijf +eVU aax -mwH -axj -aav -aas -aas -aas -hUS -axj -gZB +fZs +xcH +daJ +eCZ +eCZ +eCZ +wKj +xcH +qUZ aax -gtP -aec -vbW -otY +iOV +sFX +whr +jNX vda -pJo -pEj -aEJ -pEj -adH -bHe -ahd +gAS +hDf +lii +hDf +kom +gbp +fHK vda -dLL -juq -diI -diI -diI -akD -alu -aZG -pEj -aZt -pEj -bak -adH -cLZ +toW +mnz +jgr +jgr +jgr +jqI +niX +eBV +hDf +eVF +hDf +kOl +kom +dif adJ -aSc -aem -vbW -aec -apr +pRN +mCP +whr +sFX +iVu apR -amc -apx -apy -apM -aqd +oYz +dEf +tpu +dBP +qXa apT -ajb -aqe -aqe -ava -kdl +nYq +wjB +wjB +ffZ +fyz awY bfg oJn bfc bfc aUH -hZO -aIp -dfV -aIq -aYA +xZe +wNI +hjM +tio +htB aIm -ebK +rPo aIm aIm -qmT -dVN -vtk +bPA +qCa +rWX aIn -mXC -ebK +cdM +rPo aUH aeo iQh aIk aIt -eun -aIJ -aIB -aIB -aSD -kAM -bZF -sdR -cms +xUK +tKs +pij +pij +iDt +qxf +duq +dLB +uLp aIt aIt aIt aUG -aTm -aJF -bbX -aIZ -aIZ -aIZ -aIZ -aIZ -sTH -ouC -fid -aIZ -aIZ -nMc -wXD -uIM -ixm -aJF +cJL +kWX +nib +eat +eat +eat +eat +eat +wxc +kma +wPR +eat +eat +gYC +hUo +oEx +hnI +kWX aUG bfC aEX @@ -72967,43 +54737,43 @@ bfU bfT awY ewW -lTC -djM -mxO -mxO -djM -bNd +xyk +lvA +fNA +fNA +lvA +kdD aiL -xPF -hPF -lsc -lsc -lsc -lsc -hPF -bNv +hWo +lTL +rUD +rUD +rUD +rUD +lTL +fds aiQ -sSZ -bhk -sPB -dnZ +wlr +uQu +fkM +cKg atF -bjQ -anQ -anQ -hVR -anQ -dbr -dbr -anQ -bCv -xvG -bCv +lpa +hlR +hlR +ocj +hlR +fYV +fYV +hlR +cSt +hmX +cSt aoN -byw -xvG -nUa -crG +sNg +hmX +cyx +rJN auG aSa aSa @@ -73012,38 +54782,38 @@ aSa azX sWP sWP -aFc -avX -avX -avX -avX -avX -avX +kEX +vse +vse +vse +vse +vse +vse sWP -avX -avX -avX +vse +vse +vse vCx vCx bck -bQS -bYZ -bYZ -bZe +wyP +uHX +uHX +pDD bck vCx vCx -avX -avX -avX +vse +vse +vse sWP -avX -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -73066,61 +54836,61 @@ ylo ylo ylo abF -cWa +tff aax -aId -hlf -aId -aay -aId -aay -aId -aaK -aId -fGJ -dBW -axj -iYj -yaD -qBZ -gkH -knx -axj -nLW +wQI +ePT +wQI +vUa +wQI +vUa +wQI +ijf +wQI +cTQ +ozX +xcH +toO +jSi +yjX +tbo +boa +xcH +wZf aax -atx -aec -vbW -otY +hkh +sFX +whr +jNX vda -pJo -lgv -sBc -pEj -adH -qvB -fEI +gAS +rIL +iAS +hDf +kom +xLG +dCT vda -dLL -pKg -xUd +toW +irv +tVC vda -jme -eZq -aZh -aZK -aZh -aZT -aZh -aZT -xUd -oBX +kNM +iWf +xuh +pjp +xuh +qvE +xuh +qvE +tVC +nLj adJ -jyb -aem -vbW -aec -apr +oDz +mCP +whr +sFX +iVu apR apR apR @@ -73128,11 +54898,11 @@ apR apR apR apT -ajd -aqf -aqf -avc -uwo +ePP +mjg +mjg +uzH +lxe awY bfc oJn @@ -73140,55 +54910,55 @@ bfc bfe aUH aUH -aRq -aIq -aIq -aRB +qJE +tio +tio +mpu aIm -aRy -oJV -aHC -oJV -kEj -oJV -aHC -oJV -eSC +mqm +iuf +qNh +iuf +cic +iuf +qNh +iuf +gvq aUH aeo iQh beO aIt -bnN -fLm -aIG -aIP -aIG -bbI -bZE -bbI -bbI -aJb -aKZ -aJs +xho +pha +cjV +qmL +cjV +oSV +gST +oSV +oSV +qXU +bRD +iOj aUG -cwp -nXu +lEV +ggr aJa -kFE -aTB -meD -aIZ -onY -nNo +eOb +vbj +pIN +eat +udO +jmc aJa -lWf -eRi -aIZ -mfH +gBc +qtX +eat +elw aUG -aJF -aJF +kWX +kWX aUG aUG bfd @@ -73228,27 +54998,27 @@ aiL aiL aiL aiL -xUj -agQ -azf -anG +cpR +tgU +dAG +liu atF -bkR -anQ -anQ -anQ -vBb -anQ -anQ -dbr -bCv -lHB -bCv +xTC +hlR +hlR +hlR +ucl +hlR +hlR +fYV +cSt +kMl +cSt aoN -byw -bCv -nUa -aYp +sNg +cSt +cyx +bXJ auG aSa aSa @@ -73257,38 +55027,38 @@ aSa azX azX sWP -avX -avX -avX -aFc -avX -avX -avX +vse +vse +vse +kEX +vse +vse +vse sWP -avX -avX -avX +vse +vse +vse vCx aLh aLh -bYX -aLl -aLl -bZg +ffS +tWp +tWp +jJR aLh aLh vCx -avX -avX -avX +vse +vse +vse sWP -aFc -avX -avX -avX -avX -avX -avX +kEX +vse +vse +vse +vse +vse +vse sWP azX azX @@ -73311,73 +55081,73 @@ ylo ylo ylo abF -jkb -hOU -aId -hlf -aId -aay -fst -aay -aId -aaK -aId +uyE +lRU +wQI +ePT +wQI +vUa +cOG +vUa +wQI +ijf +wQI aax -lFX -axj -iYj -nTg +kMG +xcH +toO +pBs abf -fmC -hFc -axj -idf +hYD +wus +xcH +xdl aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX vda -pJo -pEj -jsq -bHe -adH -xUd -grK +gAS +hDf +ibY +gbp +kom +tVC +kLr adJ -rur -tdi -cLZ +tsF +qhn +dif adJ adJ -jbj -cem -jme -alv -jme -cem -jme -oBX +nOZ +meM +kNM +eRq +kNM +meM +kNM +nLj adJ adJ -kSG -aem -vbW -aec -amb -awc -awc -awc -awd -akH -avO +jgA +mCP +whr +sFX +hCs +khE +khE +khE +shP +gPL +pty apT -alA -atK -aqf -avd -axN +eaF +gIV +mjg +jte +lCO awY bfc oJn @@ -73385,19 +55155,19 @@ bfc bfD bfL aUH -lSU -kBA -bwb -bwa +jYF +ccu +uDE +gTf aIm -tOa -wKh +jMN +rFi aIn -feQ -ijV -mey +nOw +jjT +ohy aIm -wKh +rFi aUH aUH beX @@ -73405,16 +55175,16 @@ jFP beX aIt aIt -sMO -tHC -tHC -aSE -tzz -bZE -bbI -uHh +ilK +mXF +mXF +bSs +mFo +gST +oSV +hSl aIt -aJi +qyc aIt aUG aUG @@ -73422,15 +55192,15 @@ aUG aUG aUG aUG -biP -nIF -fqj -iAO +cbE +qZy +flU +lzq aJa -daO -fqj -nIF -bUF +jZL +flU +qZy +rZx aUG aUG aUG @@ -73457,43 +55227,43 @@ bfc bgc awY hOb -iiS -aVZ -rTw -rTw -mzi +fQY +ltZ +gIS +gIS +rCU aiO -hUY -eiR -eiR -qkD -dET -anA -xlv -xlv -oKA +tAb +hft +hft +cVe +siQ +xuJ +jGD +jGD +vWF xMJ -xUj -agQ -azf -anG +cpR +tgU +dAG +liu atF -bkV -anQ -cjy -buX -mqr -anQ -cjy -aTX -aXj -bCv -bCv +wxN +hlR +rqQ +fcQ +xgR +hlR +rqQ +nPs +hNQ +cSt +cSt aoN -byw -bCv -nUa -aEN +sNg +cSt +cyx +gnW auG ylo ylo @@ -73503,36 +55273,36 @@ ylo azX sWP sWP -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse sWP -avX -aFc -avX +vse +kEX +vse vCx bck -bOa -bYY -wSM -oNI -bZh -gGQ +eaY +dhK +vMb +toA +cBl +mnS bck vCx -avX -avX -avX +vse +vse +vse sWP -avX -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse +vse sWP sWP azX @@ -73556,44 +55326,44 @@ ylo ylo ylo abF -phK +rzo aax -aId -aaL -aId -aay -aId -aay -aId -aaK -aId +wQI +pzw +wQI +vUa +wQI +vUa +wQI +ijf +wQI aaz -vVO -axj -iYj -wJp -kLC -lDh -tpW -axj -nLW +qgO +xcH +toO +wcu +mNj +qUE +mts +xcH +wZf aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX vda -pJo -hrf -jsq -pEj -adH -tLz +gAS +mSU +ibY +hDf +kom +cuG adJ adJ -dLL -tdi -fEI +toW +qhn +dCT adJ adJ adJ @@ -73607,21 +55377,21 @@ adJ adJ adJ adJ -aem -hRI -jAE -jAE -jAE -jAE -jAE -jAE -alZ -jAE -agJ -anr -anr -auX -avF +mCP +kgq +cco +cco +cco +cco +cco +cco +gbY +cco +pDQ +uDD +uDD +gbb +tXx arz awY bfQ @@ -73655,8 +55425,8 @@ aII aIt aIt aII -bZE -bbL +gST +slv aII aIt aIt @@ -73702,42 +55472,42 @@ aIk aIk awY hOb -vND -fll -aGr -eUR -kOi +uBo +jXB +fDU +uWV +vIq aiO -agN -ahC -azk -azk -azw -azk -azk -qjL -hQS +swy +xwn +cFp +cFp +cJq +cFp +cFp +nSB +hgj xMJ -xUj -agQ -azf -anG +cpR +tgU +dAG +liu qIU avT -bxS +tey avT qIU avT -bzn +pWp avT qIU auG -bzs +xTj auG auG aoE -bCv -xBb +cSt +wFd aoE auG auG @@ -73749,34 +55519,34 @@ azX azX sWP sWP -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse sWP -avX -avX -avX +vse +vse +vse vCx bck -bOe -xwg -rEX -tsA -xwg -bZl +uFc +rkM +jad +ykH +rkM +foz bck vCx -avX -avX -aFc +vse +vse +kEX sWP -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse sWP sWP azX @@ -73803,70 +55573,70 @@ ylo abF ikQ aax -aId -aaL -aId -aay -aId -aay -aId -sxU -aId +wQI +pzw +wQI +vUa +wQI +vUa +wQI +hQW +wQI aaz -vVO -axj -juI -vFm -vFm -vFm -kzm -axj -bXN +qgO +xcH +pIg +wcM +wcM +wcM +oIk +xcH +cjq aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ -dLL -adH -tdi -adH -adH -uCU +toW +kom +qhn +kom +kom +ozr adJ -vxk -ulb -tdi -uCU -vaY -vxk +hjB +vOQ +qhn +ozr +gSw +hjB adJ -vaY -tUG -vaY -vaY -ctA -tdp -vUl -vaY -iWx +gSw +fMj +gSw +gSw +tYu +edX +nlM +gSw +gfZ adJ -aem -vbW -aec -hId -wIy -amO -hId -wIy -vbW -avP +mCP +whr +sFX +ink +vjp +ivE +ink +vjp +whr +crM apT -aop -aqf -aqf -awH +phE +mjg +mjg +ocI arz awY bfe @@ -73947,58 +55717,58 @@ aIk aIk awY hOb -xLv -dRz -hvD -fum -oZj +lBR +tht +xty +moa +oqE aiO -agN -bhQ -tLF -epc -olX -tLF -epc -azf -anA -xlv -fdf -agQ -bhQ -anG +swy +jkO +prZ +rfT +sFc +prZ +rfT +dAG +xuJ +jGD +rel +tgU +jkO +liu qIU -aBj -aBn +rIi +brp anS qIU -aBj -aBn +rIi +brp aot qIU -byN -bCv -qwM +jci +cSt +vYy auG -bAF -bCv -nUa -qwM -bBy +vQo +cSt +cyx +vYy +dEA byM -bBE -bzQ -bAa -bAj +dUo +uiX +vNF +cXV auG sWP sWP sWP -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse sWP sWP sWP @@ -74007,8 +55777,8 @@ sWP aLh aLh aLh -dPV -bao +egO +oAm aLh aLh aLh @@ -74017,11 +55787,11 @@ sWP sWP sWP sWP -avX -avX -avX -avX -avX +vse +vse +vse +vse +vse sWP azX azX @@ -74048,70 +55818,70 @@ ylo abF pTp aax -tOL -aaL -aId -aay -aId -aay -aId -aaK -alS +tqj +pzw +wQI +vUa +wQI +vUa +wQI +ijf +eVU aax -iYj -axj -axj -axj -axj -axj -axj -wII -leP +toO +xcH +xcH +xcH +xcH +xcH +xcH +idz +woK aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ -adK -eZq -daL -diI -diI -diI -akI -diI -diI -prF -diI -diI -mRp -akI -diI -oZx -pgn -alu -gqi -pEj -pGp -adH -fEI +rgK +iWf +dhA +jgr +jgr +jgr +lmK +jgr +jgr +diT +jgr +jgr +eXk +lmK +jgr +dcF +qXn +niX +uhH +hDf +jxg +kom +dCT adJ -aem -vbW -aec -otY +mCP +whr +sFX +jNX acM acM acM -aem -vbW -avV +mCP +whr +rMh apT -ajd -aqf -auY -axM +ePP +mjg +fQe +oLu arz bfF bfG @@ -74192,80 +55962,80 @@ aIk fsx beO hOb -wjn -aGr -gaO -aGr -uua +ccY +fDU +mSS +fDU +sOD aiO -agN -azf -anG +swy +dAG +liu aqr aqr aqr -iOe -sPB -azk -azk -azk -azk -azE -aWy +nNH +fkM +cFp +cFp +cFp +cFp +ewJ +kBQ qIU -aBk +lVq anP -hHA +iSv qIU -aBk +lVq anL -aBk +lVq qIU -bbZ -xvG -bCv -bzw -bCv -bCv -aBJ -wAk -bBz +cEp +hmX +cSt +dHg +cSt +cSt +fTW +dmm +pCy aoc -bBF -aLX -bAh -bUA +wJh +vtd +msf +dID auG -aFc -avX -hwe -avX -avX -avX -avX -avX +kEX +vse +ltF +vse +vse +vse +vse +vse sWP aLh aLh aLh aLh aLh -aLk -bae -hbF -rPI -bae -czg +jgH +suB +xxd +oRE +suB +qrT aLh aLh aLh aLh xQF sWP -avX -avX -aFc -avX +vse +vse +kEX +vse sWP sWP azX @@ -74291,72 +56061,72 @@ ylo ylo ylo abF -jkb +uyE aax -dgJ -aaL -aId -aay -aId -aay -aId -lwl -aId +lHg +pzw +wQI +vUa +wQI +vUa +wQI +rhs +wQI aax -dLX -nwu -nwu -rYp -sNo -rYp -rwl -vrA -ceE +kiJ +gpA +gpA +dEs +owj +dEs +oCE +ngw +pSw aax -ljw -aec -vbW -otY +uSS +sFX +whr +jNX adJ adJ -kqZ -qpB -cbV -gGb -eUe +uME +esK +jJw +wax +tom adJ -mJq -alc -jme -eZq -adH -tTE +mNM +pgI +kNM +iWf +kom +hXB adJ adJ -eZq -aEJ -pEj -kar -iWO -adH -bHe -ahd +iWf +lii +hDf +lWx +bZL +kom +gbp +fHK adJ -aem -vbW -aec -otY +mCP +whr +sFX +jNX acM ylo acM -aem -vbW -avV +mCP +whr +rMh apT -apU -atY -auZ -axN +nsD +cEs +kHs +lCO arz bfd beX @@ -74437,79 +56207,79 @@ beX beO beO hOb -hSQ -seB -hsD -lUc -gew +vJb +vjC +xic +cUW +nvQ aiO -agN -azf -anG +swy +dAG +liu aqr ylo aqr -iOe -azf -agQ -agQ -agQ -agQ -azf -anG +nNH +dAG +tgU +tgU +tgU +tgU +dAG +liu qIU -ukf -aZR -aBr +xdx +qLp +nBb qIU -aBl -aZR -aBr +goc +qLp +nBb qIU -byS -bCv -bzT +vfm +cSt +pee auG -bAG -bCv -xGI -aBJ -azO -bCu -azO -wAk -hJI -bAn +ptk +cSt +eyF +fTW +hIu +uWG +hIu +dmm +nIc +ciY auG -avX -avX -hwe -avX -avX -avX -aFc -avX +vse +vse +ltF +vse +vse +vse +kEX +vse sWP aLh -bEj -bZq -bZr +moV +hpf +uen aLh -dzZ -aLt -aLl -bjE -aLt -aLv +tRk +drA +tWp +wOu +drA +rAI aLh -baN -ajR -czg +qeO +oDk +qrT abx -avX -avX -avX -avX +vse +vse +vse +vse sWP sWP azX @@ -74536,16 +56306,16 @@ ylo ylo ylo abF -jYc +lCJ aax aax -oLX -oLX -oLX -oLX -oLX -oLX -oLX +kBq +kBq +kBq +kBq +kBq +kBq +kBq aRt aax aax @@ -74558,11 +56328,11 @@ aax aax aax aax -aDi -aec -vbW -otY -kSG +hCo +sFX +whr +jNX +jgA adJ adJ adJ @@ -74573,30 +56343,30 @@ adJ adJ adJ adJ -ylS -adH -jEK -iWx +lCA +kom +mRK +gfZ adJ -kaf -aEJ -lgv -aEJ -pEj -adH -qvB -fEI +hYX +lii +rIL +lii +hDf +kom +xLG +dCT adJ -aem -vbW -aec -otY +mCP +whr +sFX +jNX aek ylo aek -aem -vbW -avO +mCP +whr +pty apT awb plI @@ -74686,22 +56456,22 @@ bCX bCX aiO bCX -uvy +nxx aiO -agN -azf -anG +swy +dAG +liu uBj ylo uBj -iOe -bhQ -tLF -gIe -epc -agQ -azf -fnd +nNH +jkO +prZ +wTa +rfT +tgU +dAG +sfS qIU qIU qIU @@ -74711,49 +56481,49 @@ qIU qIU qIU qIU -byN -bCv -bAm +jci +cSt +hwb auG -bAJ -bCv -bCv -nUa -bCv -bCv -bCv -rVh -qwM +kbb +cSt +cSt +cyx +cSt +cSt +cSt +lxh +vYy aoE auG -hwe -hwe +ltF +ltF sWP sWP sWP sWP -avX -avX +vse +vse sWP aLh -bEk -bEm -cbc +oUq +lau +mAv bba -aLj -wSM -wSq -kXp -bZj -aLv +wyT +vMb +dRP +orG +eez +rAI aLh -ajp -aLl -aLv +drz +tWp +rAI abx -avX -avX -avX +vse +vse +vse sWP sWP azX @@ -74781,73 +56551,73 @@ ylo ylo acM acM -akH -qba +gPL +fbi qWr -lDJ -aec -aec -aec -aec -aec -aec -dvE -anX -oIf -oIf -oIf -oIf -oIf -anX -oIf -oIf -oIf -oIf -adZ -aec -vbW -pdW -htZ -gAt -htZ -htZ -htZ -htZ -htZ -htZ -htZ -oDt +lXM +sFX +sFX +sFX +sFX +sFX +sFX +xZd +jbM +onT +onT +onT +onT +onT +jbM +onT +onT +onT +onT +pbu +sFX +whr +tUC +xCG +qVV +xCG +xCG +xCG +xCG +xCG +xCG +xCG +pzy adJ -hte -jme -qGn -cLZ +rTA +kNM +cJp +dif adJ -kqZ -oOk -eUe -oOk -gGb -jme -jme -oBX +uME +ezr +tom +ezr +wax +kNM +kNM +nLj adJ -aem -vbW -aec -otY +mCP +whr +sFX +jNX aek ylo aek -aem -vbW -akH -ahP -aza -vVI -aiT -tUR -aIy +mCP +whr +gPL +laB +eTq +pla +dKF +vhl +sQC aIk aIk iQh @@ -74926,53 +56696,53 @@ aIk aIk aIk aIk -ozp -aBa -aGr -lrQ -tEJ -azf -pkh -qkD -azf -anG +cwR +ebI +fDU +esX +kuE +dAG +fjj +cVe +dAG +liu uBj ylo uBj -iOe -azf -anG +nNH +dAG +liu xMJ -iOe -agQ -azf -anG +nNH +tgU +dAG +liu qIU -aBj -aBn -aBq +rIi +brp +lXZ avT -aLX -btt -bsy +vtd +mud +uHI auG auG -bzu +qer auG auG -bAK -bBw -xvG -nUa -bBA +gMf +nLG +hmX +cyx +svS aoc -rtT -nUa -bCv -bAx -bCv -bCv -bCv +lQv +cyx +cSt +qgC +cSt +cSt +cSt aoE pDR pDR @@ -74981,20 +56751,20 @@ sWP sWP sWP aLh -caQ -aLl -bbb -bbc -aLj -aLl -aLl -kqm -bZb -bZd +xjN +tWp +veD +vTL +wyT +tWp +tWp +rwm +sZv +xFL aLh -ajN -akw -aLv +rsQ +cYK +rAI xQF sWP sWP @@ -75025,48 +56795,48 @@ ylo ylo ylo acM -hNh -akH -iVp +tAs +gPL +vLd qWr -aec -aec -aec -aec -aec -aec -aec -dXm -eHn -aec -all -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -alZ -acK -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -awk -otY +sFX +sFX +sFX +sFX +sFX +sFX +sFX +eru +lqN +sFX +deQ +cco +cco +cco +cco +cco +cco +cco +cco +cco +gbY +oib +cco +cco +cco +cco +cco +cco +cco +cco +cco +syw +jNX adJ adJ adJ -ilZ -fEI +mcD +dCT adJ adJ vda @@ -75077,22 +56847,22 @@ vda adJ adJ adJ -aem -hRI -jAE -eqF +mCP +kgq +cco +vKA acM ylo acM -aem -hRI -jAE -jAE -aVG -ros -aqh -aqh -afR +mCP +kgq +cco +cco +cZX +pbj +hbm +hbm +slh aIk aIk iQh @@ -75171,54 +56941,54 @@ kIW kIW kIW kIW -vVU -lqK -ahG -atV -agQ -azf -agQ -agQ -azf -anG +lpc +ceQ +jpZ +kxq +tgU +dAG +tgU +tgU +dAG +liu aqr ylo aqr -iOe -azf -anG +nNH +dAG +liu xMJ -iOe -bhk -azf -anG +nNH +uQu +dAG +liu qIU -aBk +lVq olY -aBk -lOW -aLX -jKy -kVZ -kVZ -aok -bCv -byL +lVq +ngm +vtd +qRm +mhO +mhO +oMM +cSt +pJp aoN -bAL -bCv -bCv -nUa -bBB +oTH +cSt +cSt +cyx +ipK aoN -bzy -ect -bCv -bCv -bCv -xvG -byE -kYn +gus +hsc +cSt +cSt +cSt +hmX +pjC +njx aoE pDR pDR @@ -75226,20 +56996,20 @@ azX sWP sWP aLh -caQ -lLc -bEn +xjN +vkU +oSw aLh -bac -aLt -aLl -kqm -bZk -bZm +oUd +drA +tWp +rwm +wUQ +fjp aLh -ajp -lLc -bYU +drz +vkU +qsQ aLh sWP sWP @@ -75270,74 +57040,74 @@ ylo ylo ylo acM -mop -eby -uyT -hTI -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -hGg -hGg -ldE -aec -aec -aec -aec -aec -aec -aec -aec -aec -vbW -aec -aec -aec -aec -aec -aec -aec -aec -aec -aec -vbW -otY -cKa +kTM +wvY +utZ +lSG +cco +cco +cco +cco +cco +cco +cco +cco +fvx +fvx +rig +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +jNX +coY vda -vgn -sid -uCU -vaY -vaY -vaY -vaY -vaY -vaY -vaY -iwB +lqa +uNe +ozr +gSw +gSw +gSw +gSw +gSw +gSw +gSw +vSS vda -cKa -aem -vbW -aec -otY +coY +mCP +whr +sFX +jNX acM ylo acM -bhi -vbW -aec -aec -afR -aqh -aqh -nxI -aVG +xAc +whr +sFX +sFX +slh +hbm +hbm +hJh +cZX kIW kIW egd @@ -75416,54 +57186,54 @@ aIk aIk aIk aIk -clN -ahG -bZP -azR -azk -hdR -bhP -azk -azE -anG +sRT +jpZ +lss +oxM +cFp +cfT +irc +cFp +ewJ +liu aqr ylo aqr -iOe -azf -anG +nNH +dAG +liu xMJ -qeE -agQ -azf -anG +gxm +tgU +dAG +liu qIU -aBl -aZR -aBr +goc +qLp +nBb avT -aLX -kGP -byP -xvG -bCv -byE -byO +vtd +tRS +jDK +hmX +cSt +pjC +cnh aoN -kGP -bCv -bCv -nUa -bzk +tRS +cSt +cSt +cyx +mcR aoN -bBG -xGI -rXB +cAp +eyF +rYL aoE -wUc -bCv -bCv -bBW +plb +cSt +cSt +vzz aoE aoE aoE @@ -75471,20 +57241,20 @@ azX azX sWP aLh -baf -kqm -kiO -bav -aLs -aLl -akw -vkt -wSq -nvx -bZf -yla -dwS -bYW +eYN +rwm +tJL +luv +xst +tWp +cYK +rqB +dRP +otT +ryH +klv +oJv +jmh aLh sWP azX @@ -75515,74 +57285,74 @@ ylo ylo ylo acM -dZu -fXE -kfZ +rOt +aBd +jGN qWr -aea -aea -aea -kqs -aea -aea -aea -aea -wIy -eHn -vbW -hId -aea -aea -aea -aea -ygN -wIy -ahP -hId -brf -wIy -ahP -hId -ygN -aea -aea -aea -aea -wIy -aec -vbW -otY -ahP +ciG +ciG +ciG +gCP +ciG +ciG +ciG +ciG +vjp +lqN +whr +ink +ciG +ciG +ciG +ciG +oTT +vjp +laB +ink +rIs +vjp +laB +ink +oTT +ciG +ciG +ciG +ciG +vjp +sFX +whr +jNX +laB vda -eeN -tdi -adH -svB -iIK -adH -adH -svB -iIK -adH -hnx +hNG +qhn +kom +qMh +wcJ +kom +kom +qMh +wcJ +kom +gPn vda -ahP -aem -vbW -aec -otY +laB +mCP +whr +sFX +jNX aek ylo aek -aem -vbW -akH -ahP -afR -tUR -aiT -yfQ -afR +mCP +whr +gPL +laB +slh +vhl +dKF +pTv +slh aIk aIk aIk @@ -75661,75 +57431,75 @@ aIk aIk aIk aIk -clN -aBa -aGr -atV -tEJ -azf -lEb -fsu -azf -anG +sRT +ebI +fDU +kxq +kuE +dAG +yeh +oZP +dAG +liu uBj ylo uBj -iOe -azf -anG +nNH +dAG +liu xMJ -iOe -agQ -azf -anG +nNH +tgU +dAG +liu qIU qIU qIU qIU qIU aoE -kGP -bCv -bCv -bCv -hJI -byQ +tRS +cSt +cSt +cSt +nIc +vzW aoN -bAR -bBx -bCv -nUa -bBC +tqA +kSZ +cSt +cyx +pjF aoc -bQT -bCv -bBI +wqi +cSt +kLw aoE -kGP -bCv -bCv -bCv -wGm -bCv -yhc +tRS +cSt +cSt +cSt +kop +cSt +oeI auG azX azX aGf -bah -baa -viL -cNG -ugy -wSq -wSq -kXp -aLl -mOw -vUn -xTU -akx -bZi +ixr +rnp +lKO +pIc +srl +dRP +dRP +orG +tWp +obS +pzb +vQN +xJF +kSm aGf azX azX @@ -75772,56 +57542,56 @@ qWr qWr qWr qWr -aem -eHn -kwK -otY +mCP +lqN +lYI +jNX acM aek aek aek acM -akJ -acS -akR +sEq +fNw +iuL ald -akJ -aeS -akR +sEq +ftf +iuL acM aek aek aek acM -aem -aec -vbW -otY -kSG +mCP +sFX +whr +jNX +jgA vda -rCO -qGn -adH -adH -adH -adH -adH -adH -adH -xUd -pJa +sCJ +cJp +kom +kom +kom +kom +kom +kom +kom +tVC +fTl vda -kSG -aem -vbW -aec -otY +jgA +mCP +whr +sFX +jNX aek ylo aek -aem -vbW -avW +mCP +whr +mYX apu aga auc @@ -75908,55 +57678,55 @@ adX bon ifX sCv -nrT +kqY aja gkU -pBm +uSJ ifX -agN -azf -anG +swy +dAG +liu uBj ylo uBj -iOe -bhQ -pWl -bYr -ick -agQ -azf -pWl -nJP -nJP -nJP -nJP -pMh +nNH +jkO +vtM +nEm +soY +tgU +dAG +vtM +etu +etu +etu +etu +jcV aoE -bkq -bnA -bCv -bzv -bzB +lXz +mYg +cSt +lft +dFZ aoE aoE aoc aoc -bCv -bmi +cSt +qIt aoc aoc -bzA -bCv -bAq +yjZ +cSt +sUq aoE -bBN -bBT -xpk -xpk -xpk -uxj -xpk +drQ +hUA +elD +elD +elD +uvW +elD auG ylo ylo @@ -75965,12 +57735,12 @@ aGf aGf aGf aGf -baw -bax -aLl -kqm -baL -baM +csh +myN +tWp +rwm +jcm +vCN aGf aGf aGf @@ -76013,14 +57783,14 @@ abD abD abb abD -hBp -pCT -hBp +rhb +vui +rhb abD -wnJ -ack -uMD -lJq +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -76038,40 +57808,40 @@ ylo ylo ylo acM -bhi -aec -vbW -pdW -htZ +xAc +sFX +whr +tUC +xCG adJ adJ -pPX -diI -siU -rba -jme -jme -eZq -adH -npl +eCx +jgr +wHC +xhj +kNM +kNM +iWf +kom +eiZ adJ adJ -htZ -kjC -kwK -aec -otY +xCG +dQV +lYI +sFX +jNX acM ylo acM -aem -vbW -avY +mCP +whr +dFK awx -awB -awK -ivW -awV +tVU +kHW +wCB +wAM apu beO beO @@ -76152,48 +57922,48 @@ beX beO okT epI -lnG -aBH -lom -pAt -sIR +ppU +nQm +krS +vHA +vFZ aja -agN -azf -anG +swy +dAG +liu aqr ylo aqr -iOe -azf -agQ -agQ -agQ -agQ -azf -agQ -agQ -agQ -agQ -agQ -anG +nNH +dAG +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +tgU +liu aoE aoE aoE -bzr +xgd aoE aoE aoE -byT -bCv -bzx -bCv -nUa -crG +miH +cSt +pdD +cSt +cyx +rJN aoc -bBH -bCv -bAt +iEp +cSt +sUq aoE bBO bUn @@ -76212,8 +57982,8 @@ ylo aGf aGf lPh -mwy -bay +dvw +cIG lPh aGf aGf @@ -76258,14 +58028,14 @@ ads abs abv abD -hBp -cnC -hBp +rhb +fHn +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -76283,40 +58053,40 @@ ylo ylo ylo aek -aem -aec -vbW -aec -aec -aec -ewM -adH -adH -fEI -tdi -adH -adH -dLL -adH -adH -ewM -aec -aec -eHn -kwK -aec -otY +mCP +sFX +whr +sFX +sFX +sFX +xDQ +kom +kom +dCT +qhn +kom +kom +toW +kom +kom +xDQ +sFX +sFX +lqN +lYI +sFX +jNX acM acM acM -aem -vbW -avY -awz -awG -aua -aua -awW +mCP +whr +dFK +tyU +tat +bMt +bMt +hHV apu beO beX @@ -76397,48 +58167,48 @@ aIk beO beO epI -qSt -aLA -kuO -aLA -rlk +eNy +gPD +dCp +gPD +eWH aja -agN -azf -anG +swy +dAG +liu aqr aqr aqr -iOe -sPB -azk -azk -azk -azk -jUJ -azk -azk -azk -azk -oje -aWy +nNH +fkM +cFp +cFp +cFp +cFp +cmK +cFp +cFp +cFp +cFp +cDk +kBQ aoE -byH -bib -bib -bib -byH +xta +oDX +oDX +oDX +xta aoE -byU -bCv +kJJ +cSt aoc -bzp -dHa -crG +nUO +fvh +rJN aoc -bzD -bCv -bBJ +iqu +cSt +ydg aoE jnI bUn @@ -76456,10 +58226,10 @@ ylo ylo ylo aEf -aLL -agQ -azf -aLL +xcN +tgU +dAG +xcN aEf ylo ylo @@ -76503,14 +58273,14 @@ aeX ong adR abD -agf -hcU -hBp +gny +miS +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -76528,40 +58298,40 @@ ylo ylo ylo aek -aem -aec -vbW -aec -aec -eKm +mCP +sFX +whr +sFX +sFX +ktb adJ -aai -qwO -fEI -tdi -hTd -adH -dLL -qwO -adH +wWq +wWn +dCT +qhn +uVz +kom +toW +wWn +kom adJ -ydX -aec -aec -vbW -aec -pdW -kjC -apv -pdW -kjC -vbW -awa +qdY +sFX +sFX +whr +sFX +tUC +dQV +lww +tUC +dQV +whr +hkW awx -aua -awN -aua -axv +bMt +qQC +bMt +oRx apu awY beO @@ -76642,48 +58412,48 @@ aIk beO awY epI -iNR -kSY -aLB -cZO -dcw +tWx +nWb +qHY +gdY +cLi aja -agN -azf -pWl -ick -aHn -pWl -ick -azf -lEb -oaV -oaV -oaV -oaV -oaV -oaV -fsu -agQ -azf -anG +swy +dAG +vtM +soY +ruA +vtM +soY +dAG +yeh +sRP +sRP +sRP +sRP +sRP +sRP +oZP +tgU +dAG +liu aoE -bkT -bib -bib -bib -byV +wec +oDX +oDX +oDX +gPI aoE -bjl -byF -bzo -xvG -nUa -crG +tQB +ert +oeA +hmX +cyx +rJN aoc -cnA -aol -bAy +koW +mSV +kEw aoE pnt bUn @@ -76701,10 +58471,10 @@ ylo ylo ylo aEf -aLu -agQ -azf -aLu +tHs +tgU +dAG +tHs aEf ylo ylo @@ -76748,14 +58518,14 @@ adY mfN abb abD -hBp -kBE -hBp +rhb +hrE +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -76773,40 +58543,40 @@ ylo ylo ylo aek -aem -aec -hRI -jAE -jAE -jAE -nlk -diI -prF -xLg -prF -diI -mRp -hvl -prF -diI -nlk -jAE -jAE -jAE -acK -jAE -alZ -jAE -jAE -jAE -jAE -acK -jAE -iTT -apw -awR -axq -awX +mCP +sFX +kgq +cco +cco +cco +cZP +jgr +diT +nvr +diT +jgr +eXk +fiG +diT +jgr +cZP +cco +cco +cco +oib +cco +gbY +cco +cco +cco +cco +oib +cco +gVP +pDp +pwf +ctR +sgG apu awY beO @@ -76887,44 +58657,44 @@ beO beO awY epI -elt -aLA -aLA -bkc -vht +kvj +gPD +gPD +pRM +kYF aja -agN -kKw -bhP -azk -anI -azk -azk -iCm -qKN +swy +eYw +irc +cFp +gnc +cFp +cFp +pGU +mte ahQ ahQ ahQ ahQ ahQ ahQ -agN -agQ -bhQ -anG +swy +tgU +jkO +liu aoE -xuF -bkU -buQ -byX -gUw +wmP +pRH +woq +cNd +kmY aoE -byW -byG +xbH +jbP aoN -bCv -nUa -crG +cSt +cyx +rJN aoE aoE aoE @@ -76946,10 +58716,10 @@ ylo ylo ylo aEf -aLL -agQ -azf -aLL +xcN +tgU +dAG +xcN aEf ylo ylo @@ -76993,14 +58763,14 @@ aaq mfN abv abD -hBp -kBE -hBp +rhb +hrE +rhb abD -wnJ -ack -uMD -lJq +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -77018,38 +58788,38 @@ ylo ylo ylo acM -bhi -aec -vbW -hId -aea +xAc +sFX +whr +ink +ciG adJ adJ -qxR -adH -uCU -vaY -vaY -xPy -ulb -qoN -kfJ +cry +kom +ozr +gSw +gSw +qOI +vOQ +dtq +wYM adJ adJ -aea -wIy -aec -aec -vbW -xoq -rEq -rEq -awe -akH -alt +ciG +vjp +sFX +sFX +whr +lcT +pKy +pKy +dMJ +gPL +pBF apu -afz -axo +hqs +tOR aga aga aga @@ -77132,31 +58902,31 @@ beX beO awY epI -aLw -skf -aWz -bIU -xCe +bsu +fwd +ozF +dzz +fRu aja -aBe -oaV -oaV -fsu -uHb -lEb -oaV -oaV -baT +tww +sRP +sRP +oZP +qxa +yeh +sRP +sRP +eEB ahQ -bDY -bRw -bbK -bRJ +oSa +yde +uFw +rqc ahQ -ish -agQ -azf -anG +lyJ +tgU +dAG +liu aoE aoE aoE @@ -77167,21 +58937,21 @@ aoE aoE aoE aoE -bkZ -bmV +oJK +oXB aoE aoE -bsz -aLX -bAi -bBM -bzt -aLX -bAi -bBM -bzt -aLX -bBY +gaz +vtd +hju +lsT +psx +vtd +hju +lsT +psx +vtd +uNs auG auG auG @@ -77191,10 +58961,10 @@ auG auG auG auG -epc -bhk -azf -aWS +rfT +uQu +dAG +hxT aHL aHL aQi @@ -77239,54 +59009,54 @@ abT abD abD abD -nLK +mzW abD abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aaj aal aal aal aaj -adh -acT -ado +kZc +cpd +daa adF -adh -acT -ado +kZc +cpd +daa aaj aal aal aal aaj -aem -aec -vbW -otY -kSG +mCP +sFX +whr +jNX +jgA vda -vgn -ulb -adH -adH -adH -adH -tdi -adH -adH -uCU -iwB +lqa +vOQ +kom +kom +kom +kom +qhn +kom +kom +ozr +vSS vda -kSG -aem -aec -aec -vbW -cWu +jgA +mCP +sFX +sFX +whr +vhb arW arW arW @@ -77378,7 +59148,7 @@ fsx awY epI aja -qUt +rjr aja aja aja @@ -77393,64 +59163,64 @@ hFh hFh ahQ ahQ -bRv -bRE -bRH -bRK +ofG +xZY +snJ +wdZ ahQ -agN -agQ -azf -pWl +swy +tgU +dAG +vtM aoN -kVZ -bpB -aXH -aXH -bpB -bzl -bzC -bAW -aok -bCv -nUa -bsK +mhO +njt +vbK +vbK +njt +xaT +pyg +ycQ +oMM +cSt +cyx +pNY aoE -bzP -aLX -bAi -bAz -bzt -aLX -bAi -bAz -bzt -aLX -aLX +mEh +vtd +hju +npS +psx +vtd +hju +npS +psx +vtd +vtd aoc -bkS -wmj -nFt -val -wEd -uzW -wQd +nfW +rPR +sBn +xKn +pOV +naN +cka aoc -iOe -agQ -azf -qKN +nNH +tgU +dAG +mte aiB -apn -luj -luj -btB -bEq -fBP -aYQ -luj -dOw -lYd +mMG +kAf +kAf +xJj +rkX +pqF +pYT +kAf +oin +kZZ aHL ylo ylo @@ -77468,78 +59238,78 @@ ylo ylo ylo aal -ftx -tjf -wQJ -ldg -dNb -vMV -acl -ldg -dNb -vMV -vOh -ldg -dNb -kOA -tOT -ldg -dNb -kOA -wmE -ldg -fDY -vAm -sIL -wQJ -wQJ -vVc -wQJ -wQJ -ldg -uRp -kOA -uPR -ldg -uRp -kOA -wQJ -wQJ -wQJ -wQJ -wQJ -dWk -jAE -ldE -otY -ahP +hMr +oGT +ngL +fSa +vJn +fLG +cHD +fSa +vJn +fLG +xlj +fSa +vJn +glX +kgU +fSa +vJn +glX +duD +fSa +uPb +niW +vug +ngL +ngL +uCL +ngL +ngL +fSa +vFC +glX +kgJ +fSa +vFC +glX +ngL +ngL +ngL +ngL +ngL +thx +cco +rig +jNX +laB vda -ttB -adH -adH -svB -iIK -adH -tdi -svB -iIK -adH -hnx +mCa +kom +kom +qMh +wcJ +kom +qhn +qMh +wcJ +kom +gPn vda -ahP -aem -aec -aec -vbW -cWu +laB +mCP +sFX +sFX +whr +vhb arW -aGs -apP -asg -asg -asg -apP -aGI +mcx +obZ +ind +ind +ind +obZ +vnt ahs ylo ylo @@ -77622,80 +59392,80 @@ beO beO awY epI -aLA +gPD dct gQj dct -aLA -wuh -eYT -knD -knD -bSn +gPD +cJP +qtS +otd +otd +qDR ahQ -bsl -bFF -bRa -umz -lXA -azK -azK -azK -sTr +faS +iPa +pJd +tam +owy +lbi +lbi +lbi +fbp bDp -qkD -agQ -azf -agQ -bgw -bCv -bCv -xvG -bCv -bCv -bCv -bCv -bCv -bCv -bCv -nUa -bCv -wGm -bCv -bCv -bCv -xvG -bCv -bCv -bCv -bCv -mCE -azO -azO -byR -mjc -oNc -oNc -oNc -oNc -oNc -gNb +cVe +tgU +dAG +tgU +mux +cSt +cSt +hmX +cSt +cSt +cSt +cSt +cSt +cSt +cSt +cyx +cSt +kop +cSt +cSt +cSt +hmX +cSt +cSt +cSt +cSt +hXm +hIu +hIu +hbz +fEE +xAF +xAF +xAF +xAF +xAF +qnZ aoc -lqm -azk -azE -bjJ +qYm +cFp +ewJ +hBU aQo -apq -niv -aAj -aAj -bEr -niv -aAj -aAj -vme -taF +uyn +uvw +kzB +kzB +kKh +uvw +kzB +kzB +wcA +pSn aQi ylo ylo @@ -77713,76 +59483,76 @@ ylo ylo ylo aal -kBE -acO -ade -lSS -iWK -wZB -wBf -lSS -iWK -wZB -ade -lSS -pCT -acO -iPn -lOM -lOM -lOM -mQU -pCT -ack -vDg -wZB -ade -lSS -kBE -acO -ade -lSS -kBE -acO -tgJ -lSS -kBE -acO -iPn -lOM -lOM -lOM -mQU -akH -aec -vbW -otY -cKv +hrE +tjj +dZS +ymc +lcp +wni +qXc +ymc +lcp +wni +dZS +ymc +vui +tjj +yfN +jbC +jbC +jbC +fqy +vui +etQ +uch +wni +dZS +ymc +hrE +tjj +dZS +ymc +hrE +tjj +fUm +ymc +hrE +tjj +yfN +jbC +jbC +jbC +fqy +gPL +sFX +whr +jNX +rib vda -rCO -jme -ome -jme -jme -eZq -tTE -jme -jme -jme -pJa +sCJ +kNM +qTa +kNM +kNM +iWf +hXB +kNM +kNM +kNM +fTl vda -cKv -sRx -aea -wIy -vbW -cWu +rib +iFB +ciG +vjp +whr +vhb arW arW arW -apf -asg -aQY +otk +ind +dYC arW arW ahs @@ -77873,74 +59643,74 @@ ifX ifX ifX ifX -azu -azK -azK -sTr -knD -wIT -azK -azK -azK -azK -azK -azK -pgX -wzK -hGd -azk -azk -hdR -azk -azO -azO -azO -azO -azO -azO -azO -cku -azO -azO -hST -pYW -azO -cku -azO -azO -azO -azO -azO -azO -azO -azO -dHa -xvG -tgE +qnr +lbi +lbi +fbp +otd +cMO +lbi +lbi +lbi +lbi +lbi +lbi +kSW +nAB +stZ +cFp +cFp +cfT +cFp +hIu +hIu +hIu +hIu +hIu +hIu +hIu +rhc +hIu +hIu +lrl +iaa +hIu +rhc +hIu +hIu +hIu +hIu +hIu +hIu +hIu +hIu +fvh +hmX +kiY aoc -lYq -lYq -lYq -lYq -lYq -lYq -mLq +uOU +uOU +uOU +uOU +uOU +uOU +wTq aoc -iOe -agQ -azf -qKN +nNH +tgU +dAG +mte aQo -sgu -aAj -aBM -aBM -esg -aBM -aBM -aBM -aAj -ifx +brG +kzB +cVZ +cVZ +omt +cVZ +cVZ +cVZ +kzB +yij aQi ylo ylo @@ -77976,11 +59746,11 @@ abD mqU mqU xfC -mZf -mQU -ack -uMD -kUp +wZI +fqy +etQ +hzh +rgP abD abD abT @@ -77997,11 +59767,11 @@ abD mqU mqU xfC -mZf -wZC -aec -vbW -otY +wZI +swv +sFX +whr +jNX adJ adJ adJ @@ -78009,8 +59779,8 @@ adJ adJ adJ adJ -dLL -kVT +toW +hvd adJ adJ adJ @@ -78019,17 +59789,17 @@ adJ adJ adJ adJ -aem -vbW -cWu +mCP +whr +vhb arW -aGs -apP -asg -aEW -asg -apP -dsF +mcx +obZ +ind +cRL +ind +obZ +cOA ahs ylo ylo @@ -78114,78 +59884,78 @@ ylo ylo ylo xSj -aWk -knD -aXV +ovn +otd +jxM bRg -azu -azK -azK -hwI -oXL -ffc -wzK -wzK -wzK -wzK -wzK -wzK -qzo -dBi +qnr +lbi +lbi +qKl +vGm +vEv +nAB +nAB +nAB +nAB +nAB +nAB +eZL +nZG bDp -bhS -agQ -azf -tLF +xEf +tgU +dAG +prZ aoN -aol -aol -aol -aol -aol -wUc -nUa -hJI -aol -aol -aol -aol -koh -tVW -djR -sbF -cog -rnK -aol -aol -wUc -nUa -bCv -nkO +mSV +mSV +mSV +mSV +mSV +plb +cyx +nIc +mSV +mSV +mSV +mSV +jgv +gXb +pav +ven +jPw +rHO +mSV +mSV +plb +cyx +cSt +gSt aoc -eDK -eDK -eDK -eDK -eDK -eDK -eDK +vyV +vyV +vyV +vyV +vyV +vyV +vyV aoc -iOe -agQ -azf -pkh +nNH +tgU +dAG +fjj aiB -aAg -aAj -aBM -aBM -gbd -aBM -aBM -aBM -aAj -qJJ +baW +kzB +cVZ +cVZ +jSx +cVZ +cVZ +cVZ +kzB +njz aHL ylo ylo @@ -78222,10 +59992,10 @@ qFq qKc abs aFl -bHl -ack -uMD -oLA +tVY +etQ +hzh +qJn abD adD mfN @@ -78243,36 +60013,36 @@ qFq qNM abs aFl -vMA -aec -vbW -otY +jkk +sFX +whr +jNX adJ -xER -qlI -mIa -khv -khv +fng +xGQ +xef +xXA +xXA adJ -kjm -dgp -vxk +sHD +dHz +hjB adJ -vxk -vaY -tUG -cFe -iWx +hjB +gSw +fMj +qxL +gfZ adJ -jOw -vbW -cWu +pCm +whr +vhb arW arW arW -apf -asg -aQY +otk +ind +dYC arW arW ahs @@ -78359,29 +60129,29 @@ ylo ylo ylo xSj -bDl -azK -bRf +meZ +lbi +mEV bRg -azu -fEl -wzK -wYA +qnr +xpC +nAB +nLR ahQ -bsr -bDZ -bRq -bRr -hpC -wie -pSB -dBi -bRQ +njB +tIF +rdR +ebr +nvS +qcz +ceO +nZG +rWF ahQ -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc aoc aoN @@ -78389,7 +60159,7 @@ aoN aoN aoc aoc -aXO +fNB aoc aoc aoN @@ -78404,8 +60174,8 @@ aoc aoc aoc aoN -nUa -bEv +cyx +jcz aoN aoc aoc @@ -78416,21 +60186,21 @@ aoc aoc aoc aoc -iOe -agQ -sPB -azk -bar -pzr -sNU -hHM -mjt -tvc -mjt -gAv -aBM -aAj -hIh +nNH +tgU +fkM +cFp +xGg +npM +loN +phe +mos +quP +mos +hRw +cVZ +kzB +xRi aIv aIv aQj @@ -78467,10 +60237,10 @@ aFU aFU abs fCK -bHl -ack -uMD -kUp +tVY +etQ +hzh +rgP abD adR mfN @@ -78488,38 +60258,38 @@ qKc qNM abs fCK -vMA -aec -vbW -otY +jkk +sFX +whr +jNX vda -ueK -dbY -dbY -cxO -diI -shg -mgW -juq -diI -akI -diI -xYP -bHe -qvB -fEI +iOs +nPY +nPY +vrF +jgr +vDe +fVc +mnz +jgr +lmK +jgr +ioR +gbp +xLG +dCT adJ -aem -vbW -cWu +mCP +whr +vhb arW -aGs -apP -asg -mmr -asg -apP -aGI +mcx +obZ +ind +blv +ind +obZ +vnt ahs aSa aSa @@ -78604,14 +60374,14 @@ aSa asz asz asz -bDl -ufT -sTr +meZ +vXg +fbp ahQ -ejb -azK -azK -lHU +wir +lbi +lbi +wQv ahQ ahQ ahQ @@ -78619,69 +60389,69 @@ ahQ ahQ ajf ahQ -fZq -rHb +xRI +lli ahQ ahQ -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc -buC -byB -kVZ -kVZ -kVZ -aok -nUa -qwM -kVZ -kVZ -kVZ -ero -qGY +fri +tah +mhO +mhO +mhO +oMM +cyx +vYy +mhO +mhO +mhO +kHu +hBk aoc -rId -urx -urx +utK +tEo +tEo aoc -unN -nJP -ick -azf -agQ -pWl -nJP -bYr -nJP -nJP -nJP -nGq -nJP -nJP -nJP -ick -agQ -azf -lEb +iEs +etu +soY +dAG +tgU +vtM +etu +nEm +etu +etu +etu +uQF +etu +etu +etu +soY +tgU +dAG +yeh aiB -eGx -uUW -bEs -wpZ -aBM -aBM -uAc -wpZ -aAj -tlX +mwx +cFY +pBj +mJl +cVZ +cVZ +lUJ +mJl +kzB +euf aQm -hay -gSI -gSI -oIx -vNM +lNe +ybM +ybM +cAi +dfJ aIv ylo ylo @@ -78712,10 +60482,10 @@ alb abs abs aFq -bHl -ack -uMD -lJq +tVY +etQ +hzh +xqQ abD aei sfx @@ -78733,36 +60503,36 @@ wnO aFU abs aFq -vMA -aec -vbW -otY +jkk +sFX +whr +jNX vda -tNT -vsP -vsP -tdi -xUd +wDq +vWg +vWg +qhn +tVC adJ -eZq -tTE -mJq +iWf +hXB +mNM adJ -eZq -tdi -adH -adH -fEI +iWf +qhn +kom +kom +dCT vda -aem -vbW -cWu +mCP +whr +vhb arW arW arW -apf -nWr -aQY +otk +xOk +dYC arW arW ahs @@ -78847,86 +60617,86 @@ aiU ylo ylo xSj -aXe -aXs -aXu -twm -wzK -bRh -wzK -wzK -wzK -epN +wTN +sWu +cZs +xtK +nAB +wfA +nAB +nAB +nAB +wHh ahQ -bDe -uYR +tAY +bDB ahQ -bse -bJi -qsW -wIT -sTr -brN +pOc +ogW +qRw +cMO +fbp +uui ahQ -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc -bAK -bzZ -mCE -uEZ -ouv -ouv -gPU -ouv -ouv -ddo -azO -wAk -aYp +gMf +cPA +hXm +vmn +gOS +gOS +dPM +gOS +gOS +oav +hIu +dmm +bXJ aoc -nOH -nOH -nOH +tKp +tKp +tKp aoc -iOe -agQ -agQ -azf -agQ -bhk -agQ -agQ -agQ -agQ -agQ -azf -agQ -agQ -bhk -agQ -agQ -azf -bjJ +nNH +tgU +tgU +dAG +tgU +uQu +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +uQu +tgU +tgU +dAG +hBU aiB -aAh -uUW -aAj -aAj -aAj -aAj -api -pzr -pzr -pzr -bau -aBP -aBP -hPy -gqd -hOw +nXS +cFY +kzB +kzB +kzB +kzB +wrQ +npM +npM +npM +rCv +qjC +qjC +wYh +wee +wil aQj ylo ylo @@ -78956,11 +60726,11 @@ iZQ abs abs abs -sQI -kMZ -ack -uMD -kUp +sTA +vzs +etQ +hzh +rgP abD alr abv @@ -78977,39 +60747,39 @@ abD abE abs abs -sQI -wDw -aec -vbW -otY +sTA +oCv +sFX +whr +jNX vda -ueK -koV -pSu -mgW -ieZ +iOs +eVt +cHP +fVc +ffr vda -dLL -kVT +toW +hvd adJ adJ -qgg -xoV -pEj -cgs -hnx +oAl +bUj +hDf +jfx +gPn vda -aem -vbW -cWu +mCP +whr +vhb arW -cst -apP -asg -nWr -asg -apP -hMx +kKn +obZ +ind +xOk +ind +obZ +lvn ahs ylo ylo @@ -79092,86 +60862,86 @@ aiU ylo ylo xSj -azu -bDg -aXv -bNk -dBi +qnr +rTt +noL +ckL +nZG ahQ -hlC -azK -azK -azK -bjY -azv -aWc +qKW +lbi +lbi +lbi +xMh +lKR +cYk ahQ -bsf -azv -azv -azK -bsn -bsq +vxQ +lKR +lKR +lbi +qvi +oEr ahQ -rPZ -agQ -azf -aWy +rui +tgU +dAG +kBQ aoc -anN -bCv -xGI -aYp +iAi +cSt +eyF +bXJ qIU qIU qIU qIU qIU -kGP -bCv -xGI -enf +tRS +cSt +eyF +sBa aoc -bib -bib -bib +oDX +oDX +oDX aoc -iOe -agQ -ahC -azw -azk -azk -azk -azk -azk -azk -azk -azw -azk -azk -azk -azk -azk -azE -pkh +nNH +tgU +xwn +cJq +cFp +cFp +cFp +cFp +cFp +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +ewJ +fjj aiB -rQQ -uUW -aQD -aZb -rNc -eGx -uUW -aAj -aQD -lWG +wUj +cFY +rbi +ulu +ppl +mwx +cFY +kzB +rbi +vik aQm -nxh -aQA -aQB -fsd -cok +gIb +lLf +vgm +ins +uWM aQj ylo ylo @@ -79201,11 +60971,11 @@ fxf abs abs abs -ffp -pCT -ack -uMD -kUp +tTb +vui +etQ +hzh +rgP abD abD abD @@ -79222,37 +60992,37 @@ abD pSZ abs abs -ffp -akH -aec -vbW -otY +tTb +gPL +sFX +whr +jNX vda -tNT -vsP -vsP -xUd -vhN +wDq +vWg +vWg +tVC +ldM vda -dLL -xlG +toW +whF adJ -lQk -ulb -vJr -sxa -dbY -xJI +hkL +vOQ +vdR +eSX +nPY +lgR vda -aem -vbW -cWu +mCP +whr +vhb arW arW arW -apf -nWr -aQY +otk +xOk +dYC arW arW ahs @@ -79337,86 +61107,86 @@ ylo ylo ylo xSj -azo -wie -bNe -wie -fUA +xxm +qcz +xcw +qcz +gte ahQ -bDd -bDk -bDk -bDk +lSE +oYI +oYI +oYI ahQ -bDf -izl +lvx +pro ahQ -bsg -wie -pSB -azK -bSe -bsi +wSN +qcz +ceO +lbi +uPi +rjk bDp -agN -agQ -azf -biw +swy +tgU +dAG +vYG aoc -byz -bCv -bCv -aYp +xPI +cSt +cSt +bXJ bzm hqX hqX hqX bzm -kGP -bCv -bCv -bCv -bnk -bib -bib -byy +tRS +cSt +cSt +cSt +gtb +oDX +oDX +dmS aoc -uFg -agQ -azf -lEb -oaV -oaV -oaV -oaV -oaV -bjx -oaV -mEt -oaV -oaV -fsu -aBV -aBV -aEi -aBV +hon +tgU +dAG +yeh +sRP +sRP +sRP +sRP +sRP +tKM +sRP +hkY +sRP +sRP +oZP +jpa +jpa +ssV +jpa aiB aiB -fzV +dLd aiB aiB aiB aiB -gyx -bbx +iSw +uZR aiB aiB aQm -aZf -aQA -aQA -aQA -aZg +hcC +lLf +lLf +lLf +pNG aIv ylo ylo @@ -79446,11 +61216,11 @@ fxf abs abs abs -ffp -pCT -ack -uMD -bpe +tTb +vui +etQ +hzh +sEt abD alH abD @@ -79467,39 +61237,39 @@ abD psV abs abs -ffp -akH -aec -hRI -eqF +tTb +gPL +sFX +kgq +vKA adJ -jlp -pvh -eLc -grK +chx +upx +fca +kLr adJ adJ -vDu -kVT +bXR +hvd vda -kGK -adH -lgv -pEj -pEj -hnx +hFv +kom +rIL +hDf +hDf +gPn vda -aem -vbW -cWu +mCP +whr +vhb arW -aGs -apP -avx -nWr -asg -apP -aGI +mcx +obZ +eyC +xOk +ind +obZ +vnt ahs ylo ylo @@ -79598,38 +61368,38 @@ ahQ ahQ ahQ ahQ -azu -azK -bJK -bsi +qnr +lbi +mWS +rjk bDp -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc -byz -xvG -bCv -aYp +xPI +hmX +cSt +bXJ bzm hqX skS hqX bzm -kGP -bCv -bCv -hJI +tRS +cSt +cSt +nIc aoc -bib -bib -dAW +oDX +oDX +jxP aoc -iOe -agQ -azf -pkh +nNH +tgU +dAG +fjj aiB aiB aiB @@ -79641,27 +61411,27 @@ aiB aiB aiB aiB -aid -aid -jgG -bap +vbz +vbz +krj +lax aiB -eDe -uUW -fwQ +ktd +cFY +yii aiB -eYr -mFP -uUW -aAj -dKg -tbd +sSe +pfb +cFY +kzB +eCN +nOf aQm -aQh -nxh -oNL -pEQ -xEW +sah +gIb +pIR +wOS +jzG aIv ylo ylo @@ -79691,11 +61461,11 @@ iZQ abs abs dem -nvA -mQU -ack -uMD -kUp +ctj +fqy +etQ +hzh +rgP abD abs abs @@ -79712,36 +61482,36 @@ abD abE abs dem -nvA -wZC -aec -vbW -otY +ctj +swv +sFX +whr +jNX adJ adJ adJ adJ adJ adJ -wBK -ulb -kVT +sjl +vOQ +hvd vda -kGK -adH -dbY -dbY -dbY -xJI +hFv +kom +nPY +nPY +nPY +lgR vda -aem -vbW -cWu +mCP +whr +vhb arW arW arW arW -axy +eof arW arW arW @@ -79785,10 +61555,10 @@ aIk aIk beO bcj -bJD -bKn -bDT -bxR +jKW +wYs +uNd +wBy bcj beO jFP @@ -79827,86 +61597,86 @@ aSa aSa arA arA -avL -avL -bOt -bOu +xWd +xWd +qsl +rfX ahn -apG -aVL -bJl -aqg -aVU +oWY +loq +gqX +vBe +yfT ahn -aLD -mEy -bOB -xmF +siw +gjP +dfj +pnT ahQ -aLK -wie -bsp -bss +pKI +qcz +oxg +tbX ahQ -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc -hVq -aol -aol -oMZ +eiU +mSV +mSV +hEg bzm hqX bBa hqX bzm -hVq -dTy -dTy -xqh +eiU +nhp +nhp +hgm aoc -bUz -bib -dAW +jbF +oDX +jxP aoc -iOe -bhk -azf -agQ -bai -aAj -aYG -aAj -aAj +nNH +uQu +dAG +tgU +pTF +kzB +ooq +kzB +kzB aQo -ahY -aYQ -aAi -aAi +vgv +pYT +cxy +cxy aiB -aAj -aBM -baD -aAj +kzB +cVZ +coA +kzB aQo -bEo -uUW -hIh +kZv +cFY +xRi aiB -wea -aBM -uUW -aAj -aBM -mlo +dtK +cVZ +cFY +kzB +cVZ +uHG aQm -eoF -oXZ +eeb +ryz aQm -oEE -eoF +gLm +eeb aQj ylo ylo @@ -79937,10 +61707,10 @@ alb abs pXp aFl -bHl -ack -uMD -lJq +tVY +etQ +hzh +xqQ abD ibz ong @@ -79958,38 +61728,38 @@ mcj aFX pXp aFl -vMA -aec -vbW -otY +jkk +sFX +whr +jNX adJ -mNW -vaY -tUG -vaY -vaY -iIu -adH -kVT +gHr +gSw +fMj +gSw +gSw +hUw +kom +hvd vda -ttB -adH -pEj -qvB -pEj -peh +mCa +kom +hDf +xLG +hDf +wbo adJ -aem -vbW -xBz -vLX -aQM -vLX -nLl -gtr -qyg -clI -bhz +mCP +whr +cII +jrt +oXs +jrt +uhv +veR +fNI +flr +hqJ ass ylo ylo @@ -80030,10 +61800,10 @@ aIk aIk beO bcj -bVn -bJI -bKq -bKr +oUY +lhc +hMl +xXy bcj beO jFP @@ -80071,32 +61841,32 @@ aSa aSa aSa arA -bOs -bOr -avN -ggc -bOu +mre +liU +uoF +lMn +rfX ahS -kpS -aBf -aBf -aBf -aHB -aAa -uhx -sVt -bOC -bOE +jLw +sxf +sxf +sxf +lDU +ueq +lEk +svQ +hEd +tpe ahQ ahQ ahQ ahQ ahQ ahQ -agN -agQ -azf -anG +swy +tgU +dAG +liu aoc aoc aoc @@ -80116,42 +61886,42 @@ aoc aoc aoc aoc -iOe -agQ -azf -agQ -aid -aAj -aBM -aBM -aAj +nNH +tgU +dAG +tgU +vbz +kzB +cVZ +cVZ +kzB aQo -aic -aBM -lKC -aAj +dlS +cVZ +kBJ +kzB aiB -aYX -mjt -fie -aAj -ait -bal -ilF -hIh +cVL +mos +qhg +kzB +xDG +tha +iaY +xRi aiB -cgh -aBM -ilF -aAj -aBM -gys +mmS +cVZ +iaY +kzB +cVZ +cdK aQm -aBO -taO +eAK +qum aQm -xxZ -nqI +nlt +xZD aQj ylo ylo @@ -80182,10 +61952,10 @@ aFX aFX abs fCK -bHl -ack -uMD -kUp +tVY +etQ +hzh +rgP abD adx mfN @@ -80203,38 +61973,38 @@ qNM qKc abs gtc -vMA -aec -vbW -otY +jkk +sFX +whr +jNX adJ -hte -eZq -adH -wvN -siU -oZQ -dgx -uFJ +rTA +iWf +kom +fny +wHC +pti +gjT +gWW adJ -kqZ -jme -pvh -eLc -pvh -dOq +uME +kNM +upx +fca +upx +khS adJ -jOw -hRI -hGg -wPq -wPq -kkK -kkK -hvT -awL -rvL -bOU +pCm +kgq +fvx +seq +seq +xZv +xZv +lsv +skZ +xxz +jLG ass ylo ylo @@ -80275,10 +62045,10 @@ aIk aIk qDx bcj -fPK -aIL -aIL -mKc +lLV +hHz +hHz +snv bcj beO jLU @@ -80316,87 +62086,87 @@ ylo ylo ylo arA -rUK -aqg -avN -aqg -bOu +naZ +vBe +uoF +vBe +rfX ahS -kpS -avN -avN -avN -aHH +jLw +uoF +uoF +uoF +xNP ahn -bOy -sbJ -bOD -oaE +udq +dRu +pul +iKF ahn -bRx -bRx -mCU -pkh -eiR -qkD -agQ -azf -pWl -nJP -nJP -nJP -bYr -nJP -nJP -nJP -nJP -nJP -wiQ -nJP -nJP -nJP -nJP -nJP -bYr -nJP -nJP -nJP -ick -agQ -sPB -azk -otC -pzr -mjt -nBD -aAj -ait -bal -aBM -uUW -aAj +mwq +mwq +oao +fjj +hft +cVe +tgU +dAG +vtM +etu +etu +etu +nEm +etu +etu +etu +etu +etu +lfx +etu +etu +etu +etu +etu +nEm +etu +etu +etu +soY +tgU +fkM +cFp +vEx +npM +mos +oBm +kzB +xDG +tha +cVZ +cFY +kzB aiB -aAj -aBM -baD -aAj +kzB +cVZ +coA +kzB aQo -bEp -aZb -pyL +bpx +ulu +nXm aiB -mPk -lWG -lWG -lWG -lWG -rRh +qel +vik +vik +vik +vik +lmG aQm -aQE -vjd +rpC +hBW aQm -vjd -xEW +hBW +jzG aIv ylo ylo @@ -80427,10 +62197,10 @@ sTD wOQ abs aFq -bHl -ack -uMD -oLA +tVY +etQ +hzh +qJn abD aaq mfN @@ -80448,15 +62218,15 @@ sTD qNM abs aFq -vMA -aec -vbW -otY +jkk +sFX +whr +jNX adJ adJ vda -adH -tbY +kom +oVt vda adJ adJ @@ -80469,16 +62239,16 @@ adJ adJ adJ adJ -aem -kwK -qhT -cWI -cWI -cWI -cWI -jUa -gtr -rvL +mCP +lYI +wka +xRw +xRw +xRw +xRw +eWs +veR +xxz arN agI agI @@ -80520,10 +62290,10 @@ aIk lkd aIx aIx -aTa -aIL -aIL -aTo +rLx +hHz +hHz +uwf aIx aIx beO @@ -80561,70 +62331,70 @@ ylo ylo ylo arA -bOr -bOr -avN -avN -hDX +liU +liU +uoF +uoF +eCK ahn -avK -avN -nDs -avN -aHI +nxG +uoF +oUX +uoF +ech ahn ahn ahn ahn ahn ahn -bov -aLu -gne -agQ -agQ -agQ -bhk -azf -agQ -agQ -agQ -agQ -agQ -agQ -agQ -bhk -agQ -agQ -azf -agQ -agQ -bhk -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -azf -agQ -aid -aAj -aAj -uUW -aAj +ixh +tHs +qiz +tgU +tgU +tgU +uQu +dAG +tgU +tgU +tgU +tgU +tgU +tgU +tgU +uQu +tgU +tgU +dAG +tgU +tgU +uQu +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +dAG +tgU +vbz +kzB +kzB +cFY +kzB aQo -arK -bEi -uUW -aAj +gEL +eQk +cFY +kzB aiB -aid -aid -jgG -baq +vbz +vbz +krj +qYS aiB aiB aiB @@ -80671,11 +62441,11 @@ abD bpU bpU hzm -erP -kMZ -ack -uMD -kUp +uGR +vzs +etQ +hzh +rgP abD abD abT @@ -80692,44 +62462,44 @@ abD bpU bpU hzm -erP -wDw -aec -vbW -otY +uGR +oCv +sFX +whr +jNX adJ -fmk -iIu -adH -tdi -uCU -iWx +kOx +hUw +kom +qhn +ozr +gfZ adJ -omL -htZ -htZ -htZ -htZ -gCo -htZ -htZ -htZ -kjC -vbW -cWu -rqo -aSg -aSg -rut -asa -gtr -oZv +fXq +xCG +xCG +xCG +xCG +qWE +xCG +xCG +xCG +dQV +whr +vhb +lVR +dvz +dvz +uFB +nIN +veR +iCF arN -arU -arO -aGL -arO -arU +eKt +eoj +hFJ +eoj +eKt aQz aQz aQz @@ -80759,17 +62529,17 @@ bfi bfc eOe aIx -aIQ -tEm -aIQ -anC +csg +hlg +csg +eAX aIx -aKe -nzB -aIL -aIL -gEV -bKg +wrx +vuI +hHz +hHz +mAk +dLu gLs gLs gLs @@ -80806,87 +62576,87 @@ aSa arA arA arA -avy -avN -nDs -avN -avN -azZ -avN -avN -aBh -avN -inZ -brZ -pWc -bOA -bjZ -aWi +hcy +uoF +oUX +uoF +uoF +qsN +uoF +uoF +vgz +uoF +jNH +qlA +vaH +wZa +jDP +hYl ahn -aWq -uRd -eVe -agQ -ahC -azk -azk -azw -azk -azk -azk -azk -azk -azk -azk -anI -azk -azk -azw -azk -azk -azk -azk -azk -anI -azk -azk -azk -azk -azk -biY -lEb +pON +myw +iNz +tgU +xwn +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cFp +cFp +jXH +yeh aiB -aid -aid -jgG -baj +vbz +vbz +krj +nuN aiB aiB aQo -fzV -ban +dLd +jDq aiB -aQr -aQu -wnL -aQr +oJU +qmY +vOY +oJU boJ -boK -aQt -npA -aZd -aQt -aQt -aQt -aQt -aQt -aQt -aZd -aQt -aQt -aQt -aQt -aQt +rbA +xEY +ebj +uXQ +xEY +xEY +xEY +xEY +xEY +xEY +uXQ +xEY +xEY +xEY +xEY +xEY aEy ylo ylo @@ -80898,88 +62668,88 @@ ylo ylo ylo aal -kBE -hCt -mYe -oyJ -qxi -ddS -qNJ -oyJ -qxi -ddS -mYe -oyJ -pCT -hCt -rws -oYP -oYP -oYP -kMZ -pCT -ack -vDg -ddS -mYe -oyJ -kBE -hCt -mYe -oyJ -kBE -hCt -tTv -oyJ -kBE -hCt -rws -oYP -oYP -oYP -kMZ -akH -aec -vbW -otY +hrE +tuf +tQU +mAJ +mCW +xFd +gZD +mAJ +mCW +xFd +tQU +mAJ +vui +tuf +bRN +tDE +tDE +tDE +vzs +vui +etQ +uch +xFd +tQU +mAJ +hrE +tuf +tQU +mAJ +hrE +tuf +rpW +mAJ +hrE +tuf +bRN +tDE +tDE +tDE +vzs +gPL +sFX +whr +jNX adJ -vHf -hPi -jJQ -lWD -jJQ -fEI +ofa +ekJ +sgb +xch +sgb +dCT adJ -aem -all -jAE -jAE -jAE -acK -jAE -jAE -jAE -jAE -axe -cWu -rqo -aSg -aSg -rut -asa -gtr -qyg +mCP +deQ +cco +cco +cco +oib +cco +cco +cco +cco +hvW +vhb +lVR +dvz +dvz +uFB +nIN +veR +fNI arN -arU -arO -arU -arO -arU +eKt +eoj +eKt +eoj +eKt aQC -ahx -aQQ -any -apX +opN +cfr +iRj +pYt aQC bfc bfc @@ -81004,17 +62774,17 @@ bfm bfc eOe aIx -aJt -dqi -aIL -aJt +fbd +qpS +hHz +fbd aIx -bKy -aIS -xkE -cXm -aIS -bKh +eIx +nEs +ibS +ktU +nEs +rYe gLs hqX bQt @@ -81049,89 +62819,89 @@ ylo ylo ylo arA -apG -mEy -avK -avN -avS -uhx -uhx -aAa -uhx -aBg -gUs -uhx -gUs -uhx -uhx -uhx -uhx -uhx -bka -azk -azk -azk -azk -azE -lEb -oaV -oaV -oaV -oaV -oaV -oaV -oaV -oaV -fsu -azf -agQ -lEb -oaV -apc -agQ -uFy -biW -apc -azf -uFy -iFL -iFL -iFL -oKp -oaV -bts +oWY +gjP +nxG +uoF +iwo +lEk +lEk +ueq +lEk +tKY +tRy +lEk +tRy +lEk +lEk +lEk +lEk +lEk +jdb +cFp +cFp +cFp +cFp +ewJ +yeh +sRP +sRP +sRP +sRP +sRP +sRP +sRP +sRP +oZP +dAG +tgU +yeh +sRP +vYO +tgU +fmE +mym +vYO +dAG +fmE +wpb +wpb +wpb +izL +sRP +stn boJ -aQr -aQu -wnL -aQr +oJU +qmY +vOY +oJU apg -rSP -cOU -uMV -ahZ -aEh -ahZ -ahZ -uMV -ahZ -oDD -rSP -rSP -rSP -rSP -rSP -rSP -xXp -rSP -rSP -rSP -rSP -rSP -rSP -rSP -rSP -pFe +mEu +fgv +jDD +qGc +dtT +qGc +qGc +jDD +qGc +ukE +mEu +mEu +mEu +mEu +mEu +mEu +vFG +mEu +mEu +mEu +mEu +mEu +mEu +mEu +mEu +hiV aEy aEy aEy @@ -81143,89 +62913,89 @@ ylo ylo ylo aal -iwU -lco -mKP -ebH -mSi -eTC -adS -ebH -mSi -eTC -opH -ebH -mSi -rGn -fuG -ebH -mSi -rGn -mKP -ebH -fDY -vAm -tRC -mKP -mKP -eBl -mKP -ebH -vxj -nJb -rGn -uXL -ebH -nJb -rGn -mKP -pEe -leM -ofP -mKP -cYU -jAE -ldE -otY +vEy +qqj +tLN +efs +bJt +itY +wBB +efs +bJt +itY +yaL +efs +bJt +nRC +qIA +efs +bJt +nRC +tLN +efs +uPb +niW +qxr +tLN +tLN +gUm +tLN +efs +wgL +vHm +nRC +qVK +efs +vHm +nRC +tLN +sBA +wHv +hjd +tLN +myU +cco +rig +jNX adJ -eLR -rTf -hsJ -aGd -rTf -cTs +tBJ +jgj +lZy +onw +jgj +eyQ adJ -aem -vbW -xoq -rEq -tTf -rEq -rEq -rEq -sDV -rEq -rEq -tDf -rqo -aSu -aSg -rut -asa -axD -kkK -axJ -mjv -mjv -dTb -arO -arQ +mCP +whr +lcT +pKy +jOT +pKy +pKy +pKy +dJO +pKy +pKy +wOB +lVR +gmU +dvz +uFB +nIN +nhY +xZv +mNC +oaO +oaO +dnW +eoj +qtW aQC aQC aQO aQO -aQQ -ahc +cfr +xas bfc bfc bfc @@ -81249,17 +63019,17 @@ bff bfc jFP aIx -aSU -rWN -aIL -aIS +fDn +snK +hHz +nEs aJc -aLn -aIS -aIL -dqi -aIS -bKi +ujJ +nEs +hHz +qpS +nEs +nKP gLs hqX hqX @@ -81294,31 +63064,31 @@ ylo ylo ylo arA -kpS -aqg -avL -bOr -avL -bOr -ngc +jLw +vBe +xWd +liU +xWd +liU +esk ahn -pws -aBh -avL -avL -avL -avL -avL -avL -avL -avN -bkb -agQ -agQ -agQ -agQ -azf -qKN +pSM +vgz +xWd +xWd +xWd +xWd +xWd +xWd +xWd +uoF +dVF +tgU +tgU +tgU +tgU +dAG +mte ahQ ahQ ajf @@ -81327,17 +63097,17 @@ ajf ajf ahQ ahQ -agN -azf -agQ -qKN +swy +dAG +tgU +mte kyQ aoY -bLI +xmk aoY aoY aoY -aDU +jwW aoY aoY aoY @@ -81346,39 +63116,39 @@ aoY apg apg apg -avJ -ahZ -htv -gPd -aYM -gPd -gPd -ulC -gPd -gPd -gPd -gPd -wqP -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -ahZ -oDD -pFe -aQt +voQ +qGc +lIG +osC +euo +osC +osC +oLr +osC +osC +osC +osC +qld +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +ukE +hiV +xEY aiD "} (66,1,1) = {" @@ -81404,45 +63174,45 @@ abT abD abD abD -wmV +gwH abD abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aaj aal aal aal aaj -ubJ -adg -hKi +oCK +nJZ +iSV adF -ubJ -aeT -hKi +oCK +rdV +iSV aaj aal aal aal aaj -aem -aec -vbW -otY +mCP +sFX +whr +jNX adJ -sMW -sjx -jJQ -sbw -jJQ -cLZ +nww +mAM +sgb +hcn +sgb +dif adJ -bhi -vbW -cWu +xAc +whr +vhb asm asm asm @@ -81456,20 +63226,20 @@ asm asm asm asm -asa -gtr -arY -arO -arO -arO -arO -arO -eYe +nIN +veR +eHG +eoj +eoj +eoj +eoj +eoj +qNE aQC -aQQ +cfr aQO aQO -aQQ +cfr aQC bfg bfc @@ -81494,17 +63264,17 @@ beO beO jFP aIx -aIS -aIL -ieU -cQv +nEs +hHz +mfq +xrI aJc -aKI -bJF -aIL -dqi -bJL -bJN +eQw +fgw +hHz +qpS +cYd +lpm gLs gLs gLs @@ -81539,91 +63309,91 @@ ylo ylo ylo arA -aVa -bOr -avL -bOr -avL -aqg -erb +sjp +liU +xWd +liU +xWd +vBe +wBE ahS -kpS -aBh -avL -avL -avL -avL -avL -avL -avL -avN -bkb -agQ -agQ -agQ -agQ -azf -qKN +jLw +vgz +xWd +xWd +xWd +xWd +xWd +xWd +xWd +uoF +dVF +tgU +tgU +tgU +tgU +dAG +mte ahQ -juk -nSL -uMq -tFs -wUd -oPC +nMq +rMY +uBX +nOI +qyG +oVD ahQ -rPZ -azf -agQ -qKN +rui +dAG +tgU +mte kyQ -bKY -kjZ -bLC +oCi +qYT +gQt aoY -bLQ -aCc +iKJ +mtZ aoY -bMb -bMf -bMi -bMm +qjO +cFM +dkx +dPF apg -avE -avE -qiw -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -xfT -aQt +iyb +iyb +vnQ +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +gAX +xEY aiD "} (67,1,1) = {" @@ -81648,14 +63418,14 @@ adG mfN aed abD -hBp -kBE -hBp +rhb +hrE +rhb abD -wnJ -ack -uMD -lJq +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -81673,45 +63443,45 @@ ylo ylo ylo acM -bhi -aec -vbW -otY +xAc +sFX +whr +jNX adJ -eLR -qww -gWS -dbn -rTf -cTs +tBJ +ykY +owR +tlM +jgj +eyQ adJ -aem -vbW -cWu +mCP +whr +vhb asm -rlh +lHW asm -ciW +rkS asm -ciW +rkS asm -gKn -jQL -hsq -lhi -muo +vgM +uvC +cKO +cpp +swD asm -nLl -gtr -vfd +uhv +veR +cci arN -ndF -fzm -arQ -arO -arO -ahc -aQQ +qIx +deb +qtW +eoj +eoj +xas +cfr aQW aQO aQC @@ -81739,22 +63509,22 @@ beX beX jFP aIx -aJt -aIL -dqi -aJt +fbd +hHz +qpS +fbd aIx -bJA -aTb -aIL -dqi -kjU -bJO +veG +lQO +hHz +qpS +wqs +kQX gLs bYd buU -bYo -bYx +oii +wYF aIx eOe aeo @@ -81784,91 +63554,91 @@ ylo ylo ylo arA -kpS -bOr -avL -aqg -avL -bOr -erb +jLw +liU +xWd +vBe +xWd +liU +wBE ahS -kpS -aBh -avN -avN -avN -avN -avN -avN -avN -avN -bkb -agQ -bhk -agQ -agQ -azf -pkh +jLw +vgz +uoF +uoF +uoF +uoF +uoF +uoF +uoF +uoF +dVF +tgU +uQu +tgU +tgU +dAG +fjj ajf -wIT -azv -gPN -azv -azv -sTr +cMO +lKR +jlT +lKR +lKR +fbp ajf -qkD -azf -agQ -qKN +cVe +dAG +tgU +mte kyQ -bLD -bQR -bLL +rUt +ree +tgw aoY -bLR -ezQ -bRp -huc -uDZ -apd -bOP +ffi +mcG +wzH +gOT +cBt +nEg +xJC apg -avI -avI -qiw -ahZ -aQt -aQt -ahZ +ulP +ulP +vnQ +qGc +xEY +xEY +qGc apk apk apk -gcM -rFS +qzB +vsz apk apk apk -gcM -rFS +qzB +vsz apk apk apk apk apk -gcM -rFS +qzB +vsz apk apk apk -gcM -rFS +qzB +vsz apk apk apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (68,1,1) = {" @@ -81893,14 +63663,14 @@ abb mfN aaq abD -hBp -kBE -hBp +rhb +hrE +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -81918,48 +63688,48 @@ ylo ylo ylo aek -aem -aec -vbW -otY +mCP +sFX +whr +jNX adJ -dLL -adH -adH -adH -adH -fEI +toW +kom +kom +kom +kom +dCT adJ -aem -vbW -cWu +mCP +whr +vhb asm -asv +pJg asm -asv +pJg asm -asv +pJg asm -aso -aso -oOr -aso -aso -vxb -arY -gtr -rvL +cwU +cwU +evZ +cwU +cwU +oga +eHG +veR +xxz arN -arO -fzm -aGK -arO -arO +eoj +deb +hsz +eoj +eoj aQC -aiW -aQQ -aQQ -art +icq +cfr +cfr +iFl aQz ylo aSa @@ -81984,22 +63754,22 @@ aIk aIk jFP aIx -aIQ -aIQ -tEm -nDX +csg +csg +hlg +ghp aIx aIx aIx -aIL -bcA +hHz +gvP aIx aIx gLs bQH bQN -bYp -bYy +esU +lJW aIx eOe bfc @@ -82019,7 +63789,7 @@ aeo bfZ bge aQC -arv +hNr aQC aiU ylo @@ -82029,91 +63799,91 @@ ylo ylo ylo arA -rlH -jTg -avN -avN -avN -flh -hkZ +eIZ +kGq +uoF +uoF +uoF +dVR +uew ahn -kpS -aBh -flh -bOw -bOx -aVs -bOw -bOw -ncW -bOF +jLw +vgz +dVR +peD +gDV +hMe +peD +peD +wgI +mSZ ahn -fIY -rwK -iHY -agQ -sPB -dta -tIL -hoC -hoC -kPp -hoC -hoC -hoC -tIL -dta -azE -agQ -qKN +gRM +orl +duw +tgU +fkM +hWR +jBL +dyW +dyW +eqQ +dyW +dyW +dyW +jBL +hWR +ewJ +tgU +mte kyQ aoY aoY aoY aoY -bLS -aCc +gDw +mtZ aoY -bLs -bLz -bMj -bLY +lqO +rtV +iZr +tyM apg -aQt -aQt -qiw -ahZ -mbp -mbp -ahZ +xEY +xEY +vnQ +qGc +nSj +nSj +qGc apk -tyv -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -sJk -cru +quf +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +fSp +xkR apk -gvh -xfT -aQt +jhk +gAX +xEY aiD "} (69,1,1) = {" @@ -82138,14 +63908,14 @@ aei sfx aed abD -agf -kpD -hBp +gny +fwo +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -82163,37 +63933,37 @@ ylo ylo ylo aek -aem -aec -vbW -otY +mCP +sFX +whr +jNX adJ -adK -eZq -cgs -bHe -xUd -oBX +rgK +iWf +jfx +gbp +tVC +nLj adJ -aem -vbW -cWu +mCP +whr +vhb asm -aso -cce -esF -yhK -yhK -haG -qJi -mNV -dhN -yhK -yhK -yhK -kkK -voj -rvL +cwU +qwE +qdw +joC +joC +bJd +icd +trR +hHR +joC +joC +joC +xZv +eLe +xxz asp asp asp @@ -82229,22 +63999,22 @@ aIk aIk iQh aIx -bnR -aIL -dqi -aJt -gEV -hwW -nzB -aIL -dqi -gEV -aIC +dxF +hHz +qpS +fbd +mAk +vVN +vuI +hHz +qpS +mAk +nfM gLs gLs gLs -nHS -bYz +xzT +jnh aIx oJn bfc @@ -82264,7 +64034,7 @@ bfg beP aQC aQC -aQQ +cfr aUR aqs aqs @@ -82276,14 +64046,14 @@ arA arA ahn ahn -wLS -wLS -wLS +hsL +hsL +hsL ahn ahn ahn boq -aBi +iWm ahn ahS ahS @@ -82293,46 +64063,46 @@ ahS ahS ahn ahn -bsm -aLu -jIw -agQ -azf -lEb +kvY +tHs +pZx +tgU +dAG +yeh ajf -pSB -azv -biz -utV -azv -dBi +ceO +lKR +rWT +eRa +lKR +nZG ajf -fsu -azf -agQ -qKN +oZP +dAG +tgU +mte kyQ -aBZ -bOJ -bLM -bLM -nLP -aCc +ydT +ksV +mli +mli +ewA +mtZ aoY aoY aoY aoY aoY apg -avE -avI -qiw -gvh -mbp -mbp -ahZ +iyb +ulP +vnQ +jhk +nSj +nSj +qGc apk -rFS +vsz apk apk apk @@ -82354,11 +64124,11 @@ aiH apj ahW apk -gcM +qzB apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (70,1,1) = {" @@ -82383,14 +64153,14 @@ abv abs aaq abD -hBp -sRo -hBp +rhb +uuq +rhb abD -wnJ -ack -uMD -kUp +pSY +etQ +hzh +rgP aal ylo ylo @@ -82408,48 +64178,48 @@ ylo ylo ylo aek -aem -aec -vbW -otY +mCP +sFX +whr +jNX adJ adJ -jbj -qwr -pvh -grK +nOZ +cQZ +upx +kLr adJ adJ -bhi -vbW -cWu +xAc +whr +vhb asm -gKn -gKn -fgu -svU -cvm +vgM +vgM +mZb +uaU +eze asm -oOr -aso -aso -qaa -cvm +evZ +cwU +cwU +eIU +eze asm -jUa -gtr -rvL +eWs +veR +xxz asp -aRf -aRe -aRf -bCd -aRe -bCi -aRe -bCh -bCa -asr +lFS +krX +lFS +ipH +krX +oTC +krX +iwW +tNU +tql akt akt aSa @@ -82474,22 +64244,22 @@ kIW kIW lGP aIx -jnb -aIL -dbV -sdv -sdv -sdv -sdv -yfB -bXO -sdv -sdv -bYa -sdv -sdv -lxi -bYA +ePF +hHz +dGU +wdR +wdR +wdR +wdR +pgW +lOo +wdR +wdR +kgc +wdR +wdR +qgT +ueu aIx oJn bfc @@ -82509,101 +64279,101 @@ bfv bfz aQC axH -aQQ +cfr aQO agZ -bbn -baE -bbO -bbP +hFL +hVe +vfY +cmG agZ -agN -jyM -aoK -eVe -aBV -aBV -aBV -jyM -uRd -uRd -eVe -azf -jyM -uRd -uRd -uRd -uRd -uRd -uRd -uRd -uRd -uRd -uRd -cPT -agQ -azf -aWx +swy +dPC +enA +iNz +jpa +jpa +jpa +dPC +myw +myw +iNz +dAG +dPC +myw +myw +myw +myw +myw +myw +myw +myw +myw +myw +kGE +tgU +dAG +tHr ahQ -hep -aoq -epm -dZe -tLR -bRQ +iBp +cqz +pAZ +tKv +xEM +rWF ahQ -agN -azf -agQ -qKN +swy +dAG +tgU +mte kyQ -bLE -apd -apd -apd -apd -aCc -bLl -bMk -bON -bLy -bMo +iRf +nEg +nEg +nEg +nEg +mtZ +vRI +qLH +jcY +eNP +nar apg -avI -avE -qiw -ahZ -mbp -mbp -ahZ -oHU -rFS +ulP +iyb +vnQ +qGc +nSj +nSj +qGc +lKK +vsz apk apk apk aEe -aip -aip -aip -aib -gGR -cpU -aim -aib -aip -aip -aip +pdf +pdf +pdf +cCZ +hBJ +fnI +pXA +cCZ +pdf +pdf +pdf aiw aie aie aie apm ahW -gcM -oHU -ahZ -xfT -aQt +qzB +lKK +qGc +gAX +xEY aiD "} (71,1,1) = {" @@ -82628,14 +64398,14 @@ abD abD aee abD -hBp -pCT -hBp +rhb +vui +rhb abD -wnJ -ack -uMD -lJq +pSY +etQ +hzh +xqQ aaj ylo ylo @@ -82653,21 +64423,21 @@ ylo ylo ylo acM -bhi -aec -vbW -otY -sLw +xAc +sFX +whr +jNX +sVx adJ adJ adJ adJ adJ adJ -sLw -aem -vbW -cWu +sVx +mCP +whr +vhb asm asm asm @@ -82675,17 +64445,17 @@ asm asm asm asm -oOr -aso +evZ +cwU asm asm asm asm -oVe -nSV -rvL +sKm +kRI +xxz asq -aRz +nMB jnA bCb bCe @@ -82695,7 +64465,7 @@ asy bCk bCo bCp -bCq +grE akt akt aSa @@ -82719,23 +64489,23 @@ aIk aIk beX aIx -uVD -aIL -aIL -aIL -aIL -aIL -aIL -dqi -aIL -aIL -aIL -bcB -aIL -aIL -tfF -dbV -bYE +qgf +hHz +hHz +hHz +hHz +hHz +hHz +qpS +hHz +hHz +hHz +pqz +hHz +hHz +pyW +dGU +gGH xha bfc bfc @@ -82754,41 +64524,41 @@ beZ aiU aQC aQV -aQQ +cfr baz agZ -aZc -ahp -ahq -uMf +yiS +uxi +gNO +wrK bCS -agN -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -bhk -agQ -azf -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -agQ -azf -agQ -azf -qKN +swy +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +uQu +tgU +dAG +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +tgU +dAG +tgU +dAG +mte ahQ ahQ ajf @@ -82797,58 +64567,58 @@ ajf ajf ahQ ahQ -agN -bhQ -agQ -qKN +swy +jkO +tgU +mte kyQ -bLF -apd -grf -huc -huc -gkA -apd -apd -apd -apd -apa +gkm +nEg +psT +gOT +gOT +kpR +nEg +nEg +nEg +nEg +jAB apg -aQt -aQt -qiw -ahZ -mbp -mbp -ahZ -sJk -rFS +xEY +xEY +vnQ +qGc +nSj +nSj +qGc +fSp +vsz apk aDY nbl aia -ain -dXp -aiF -aiF -aiF -aiF -rpr -aiF -aiF -aiF -aQn -aip -aip -aip -aip +ibb +cdw +kbr +kbr +kbr +kbr +oRv +kbr +kbr +kbr +dtM +pdf +pdf +pdf +pdf aiw apm -aEj -sJk -ahZ -xfT -aZi +jyV +fSp +qGc +gAX +bYg aEy "} (72,1,1) = {" @@ -82877,60 +64647,60 @@ abi abi abi abi -aem -aec -vbW -otY +mCP +sFX +whr +jNX acM aek aek aek acM -nKH -adl -kTg +whp +iVx +lkc ald -nKH -aeW -kTg +whp +dYO +lkc acM aek aek aek acM -aem -aec -vbW -pdW -htZ -htZ -htZ -htZ -htZ -htZ -htZ -htZ -kjC -vbW -xBz -vLX -vLX -xeO -aQM -vLX +mCP +sFX +whr +tUC +xCG +xCG +xCG +xCG +xCG +xCG +xCG +xCG +dQV +whr +cII +jrt +jrt +jYe +oXs +jrt asm -thv -oOr -aso +phc +evZ +cwU asm -dGb -nuI +wVc +nMh asm -asa -hpM -rvL +nIN +oeb +xxz asq -aRz +nMB ffF bCb bCf @@ -82941,7 +64711,7 @@ bCm bCo bBZ bCb -aRf +lFS akt akt aSa @@ -82964,22 +64734,22 @@ aIk aIk aIk aIx -wFJ -wFJ -wFJ -wFJ -wFJ -qzy -aJt -dqi -aIL -aJt -aJG +qzU +qzU +qzU +qzU +qzU +kLn +fbd +qpS +hHz +fbd +rHm aIx -bYf -bYl -bYs -bVG +xWk +eLN +rAD +fib aIx bYI wiF @@ -82999,101 +64769,101 @@ aiU aiU mwC mwC -vqF +sKe mwC agZ -bbp -ahq -ahq -uMf +nvf +gNO +gNO +wrK bCS -agN -agQ -ahC -azk -azk -azk -azk -anI -azk -azk -azk -azw -azk -azk -azk -azk -azk -bhP -azk -azk -azk -azk -azk -azw -azk -azE -pkh -eiR -eiR -eiR -eiR -eiR -eiR -eiR -eiR -qkD -azf -agQ -qKN +swy +tgU +xwn +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cJq +cFp +cFp +cFp +cFp +cFp +irc +cFp +cFp +cFp +cFp +cFp +cJq +cFp +ewJ +fjj +hft +hft +hft +hft +hft +hft +hft +hft +cVe +dAG +tgU +mte kyQ -bLG -apd -apd -jTS -rfa -bHy -jTS -apd -apd -apd -hVx +wvp +nEg +nEg +cGM +ukx +rdo +cGM +nEg +nEg +nEg +oRT apg -avE -avI -qiw -ahZ -mbp -mbp -ahZ +iyb +ulP +vnQ +qGc +nSj +nSj +qGc apk -rFS +vsz apk aEe -wrd -gGR -aij -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -tYX -aiF -aiF -aiF -dXp -aiF +vFX +hBJ +weY +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +uON +kbr +kbr +kbr +cdw +kbr fSX -aEj +jyV apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (73,1,1) = {" @@ -83112,70 +64882,70 @@ ylo ylo ylo aap -btJ -btG -bFR -bFU +icB +opC +suE +sQO abi -btR -asj -bGc -bGd +vle +mAA +lXl +ewo abi -aGA -aec -vbW -pdW -htZ -htZ -htZ -htZ -aFm -kjC -ahP -pdW -pVD -kjC -ahP -pdW -aFm -htZ -htZ -htZ -htZ -kjC -aec -kVy -aec -all -jAE -jAE -jAE -jAE -jAE -jAE -jAE -jAE -acK -jAE -kkK -kkK -hvT -gGZ -kkK -sfJ -yhK -dhN -yhK -cjg -iQQ -nuI +xIt +sFX +whr +tUC +xCG +xCG +xCG +xCG +mbR +dQV +laB +tUC +leZ +dQV +laB +tUC +mbR +xCG +xCG +xCG +xCG +dQV +sFX +qHA +sFX +deQ +cco +cco +cco +cco +cco +cco +cco +cco +oib +cco +xZv +xZv +lsv +nMX +xZv +fuc +joC +hHR +joC +xuY +oLj +nMh asm -asa -gtr -qyg +nIN +veR +fNI asp -xtO +lDH asy asy bCe @@ -83187,7 +64957,7 @@ asy npN asy asy -dfB +cpC akt akt aSa @@ -83210,21 +64980,21 @@ aIk beX aIx aIK -aiY +kDY aIx aIx aIx -aSt -bWV -dqi -aIL -bXW -qLa +iVw +gtS +qpS +hHz +tdX +fnM aIx aIx aIx aIx -bYC +lFT aIx oJn bfc @@ -83242,103 +65012,103 @@ aiU aiU ylo aqs -aQc -ahJ -agR -aQc +iRo +uRY +mVp +iRo agZ -aiK -ahq -ahq -aoh +iwh +gNO +gNO +jMI agZ -qkD -bhk -azf -lEb -mEt -oaV -fsu -azf -aVu -oaV -oaV -oaV -oaV -oaV -fBG -oaV -oaV -mEt -oaV -fsu -agQ -agQ -agQ -bhk -agQ -sPB -azk -azk -azk -azk -azk -anI -azk -azk -azk -azk -azE -agQ -qKN +cVe +uQu +dAG +yeh +hkY +sRP +oZP +dAG +kTA +sRP +sRP +sRP +sRP +sRP +hwl +sRP +sRP +hkY +sRP +oZP +tgU +tgU +tgU +uQu +tgU +fkM +cFp +cFp +cFp +cFp +cFp +gnc +cFp +cFp +cFp +cFp +ewJ +tgU +mte kyQ -bLH -bOK -mAt -bLO -bLT -bLW -laV -bSx -bOK -aoZ -bMp +pRL +fDI +cHo +nLU +rTN +vZI +sGd +llc +fDI +lKo +rnG apg -avE -avI -qiw -ahZ -mbp -mbp -ahZ +iyb +ulP +vnQ +qGc +nSj +nSj +qGc apk -rFS +vsz aDY aia -aib -aib -aij -aip -aip -aip -aip -aip -aip -aip -aip -aip -aij -gGR -gGR -gGR -ilo +cCZ +cCZ +weY +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +weY +hBJ +hBJ +hBJ +lQQ aiA aQf -aEj +jyV apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (74,1,1) = {" @@ -83357,70 +65127,70 @@ ylo ylo ylo aap -btM -btL -btO -bMA +ljd +shf +hJR +npJ abi -aNa -blT -mOV -mOV -bkv -jAE -jAE -acK -jAE -jAE -jAE -jAE -jAE -jAE -alZ -jAE -jAE -acK -jAE -jAE -jAE -jAE -jAE -jAE -alZ -jAE -jAE -alZ -qJa -jAE -ldE -xoq -rEq -tTf -rEq -rEq -rEq -tTf -rEq -rEq -rEq -cWI -cWI -jUa -gtr -arY -uBk -aso -aso -mbZ +rRw +gIM +qgG +qgG +cVr +cco +cco +oib +cco +cco +cco +cco +cco +cco +gbY +cco +cco +oib +cco +cco +cco +cco +cco +cco +gbY +cco +cco +gbY +szj +cco +rig +lcT +pKy +jOT +pKy +pKy +pKy +jOT +pKy +pKy +pKy +xRw +xRw +eWs +veR +eHG +rSn +cwU +cwU +xQG asm -oOr -nuI +evZ +nMh asm -asa -gtr -arY -bjU -asr +nIN +veR +eHG +tMI +tql asy asy fsL @@ -83433,7 +65203,7 @@ asy asy fsL asy -asr +tql akt akt aqK @@ -83454,24 +65224,24 @@ aLo aLo aIx aIx -bCM -aIW +dsG +kzQ aIx -sgn -aID -bWG -bWW -roZ -bXQ -bWl -bXY -jgM -uAl +xWt +dMX +yaI +tmL +ifq +ece +giG +eAW +rEF +oDT aIx -bYt -aIL +wbY +hHz aIx -bYJ +uIp gLs gLs gLs @@ -83487,24 +65257,24 @@ aiU ylo ylo aqs -aQF -agR -agR -aQc +xYs +mVp +mVp +iRo agZ -bbr -ryE -mQk -mQk -aHj -azk -azk -azE -qKN +jyh +wKI +oRe +oRe +miq +cFp +cFp +ewJ +mte agZ agZ agZ -aHG +ceW agZ agZ bCV @@ -83516,26 +65286,26 @@ agZ agZ agZ aqs -agN -agQ -agQ -agQ -agQ -agQ -azf -agQ -agQ -agQ -agQ -agQ -azf -agQ -agQ -agQ -agQ -azf -agQ -qKN +swy +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +tgU +dAG +tgU +tgU +tgU +tgU +dAG +tgU +mte kyQ kyQ kyQ @@ -83546,44 +65316,44 @@ kyQ kyQ kyQ kyQ -gYm +naU kyQ apg apg apg -aYB -ahZ -cpS -cpS -ahZ +hcV +qGc +sQE +sQE +qGc apk -rFS +vsz aEc -aig -qjG -aiF -qvz -aiF -aiF -aiF -aiF -aiF -aiF -aiF -aiF -aiF -msm -aiF -aiF -aiF -aiF +ucF +dyu +kbr +uIr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +kbr +sdB +kbr +kbr +kbr +kbr aQe ahW -aEj +jyV apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (75,1,1) = {" @@ -83602,43 +65372,43 @@ ylo aaE aaE aap -bum -aag -aag -bFV +rYI +owh +owh +whv abi -wGW -aNO -aag -aag -aag -aec -aec -aec -aec -aec -aec -aec -aec -aec -vbW -aec -aec -aec -aec -aec -aec -fXJ -aec -aec -vbW -aec -aec -vbW -eHn -eHn -vbW -cWu +tlu +mrW +owh +owh +owh +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +sFX +whr +sFX +sFX +sFX +sFX +sFX +sFX +dFj +sFX +sFX +whr +sFX +sFX +whr +lqN +lqN +whr +vhb alI alI alK @@ -83650,22 +65420,22 @@ alI alI jfP jfP -nLl -gtr -vRc +uhv +veR +pVH asm asm asm asm asm -qkL +hKT asm asm -oVe -axD -kkK -dZH -dZH +sKm +nhY +xZv +gCz +gCz cVR cVR gVr @@ -83679,14 +65449,14 @@ cVR qig asy asy -aRf +lFS akt -nQZ -aqQ -aTc -axc -pdh -axf +hLG +xTR +oQs +lpI +xOg +vRm aiU aiU aiU @@ -83694,29 +65464,29 @@ pwp bgk bfg aIx -gio -aID -aID -rSz -cMy -hRb -aID +wqg +dMX +dMX +wJl +nQL +pcr +dMX aIx -lYM -bWl -bWI -bYb -dqi -aIL -iys -iys -bYb -equ +rHj +giG +gVT +wQX +qpS +hHz +feM +feM +wQX +cbu aIx -bYu -aIL -aSG -bYq +hCK +hHz +fwZ +uUi bQN hqX aCa @@ -83732,103 +65502,103 @@ ylo ylo ylo aqs -aRa -agR -agR -aQc +ovr +mVp +mVp +iRo agZ -aZo -ahq -ahq -nOb +iKp +gNO +gNO +eBt agZ -fsu -agQ -azf -qKN +oZP +tgU +dAG +mte agZ -brz -hSo -azr -aVv -vmh -bDu -bSm -vmh -bSo +gpl +pJE +eny +rJS +uqF +oqb +wER +uqF +xMe agZ -bso -vmh -bSg +vzR +uqF +oXW aqs -aBe -fBG -oaV -oaV -oaV -fsu -aEi -lEb -oaV -fsu -aLL -agQ -bhQ -aLL -lEb -oaV -fsu -azf -lEb -baT -rLZ -fFh +tww +hwl +sRP +sRP +sRP +oZP +ssV +yeh +sRP +oZP +xcN +tgU +jkO +xcN +yeh +sRP +oZP +dAG +yeh +eEB +tze +gmn pRl pRl -fFh -fFh +gmn +gmn pRl pRl pRl -fFh -fFh +gmn +gmn pRl tGq -rWG +vnr kyQ -qiw -ahZ -cpS -cpS -ahZ +vnQ +qGc +sQE +sQE +qGc apk -rFS +vsz aEd aii -aib -aib -jhR -aiu -aiu -aiu -aiu -aiu -aiu -mVA -aiu -aiu -aij -gGR -gGR -jjb -gGR +cCZ +cCZ +kwt +rOO +rOO +rOO +rOO +rOO +rOO +vyL +rOO +rOO +weY +hBJ +hBJ +mrR +hBJ aiw apm -aEj +jyV apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (76,1,1) = {" @@ -83845,72 +65615,72 @@ ylo ylo ylo aaE -agA -btC -bum -aag -aag -bFW +lIg +hWk +rYI +owh +owh +enn abi -bFY -aNO -aag -xys +sBh +mrW +owh +rlX abi -jSm -jSm -jSm -agM -miE -miE -miE -miE -uQT -vbW -alt -miE -miE -miE -miE -miE -miE -miE -acC -vMP -acD -bGQ -dDt -gPk -dky -vMP -aFK +pSK +pSK +pSK +nMO +cWQ +cWQ +cWQ +cWQ +qmH +whr +pBF +cWQ +cWQ +cWQ +cWQ +cWQ +cWQ +cWQ +oOT +qAf +vrX +xxe +fml +ntS +xzp +qAf +raz alI btI gui aXU vAP -avb -uJV -cXt -uJV -uJV -avb -kkK -voj -rvL +cKW +nBT +xZS +nBT +nBT +cKW +xZv +eLe +xxz rTD -dxy -dxy -bph -lVW -tfY -axl +nob +nob +nvm +qvV +lMc +oFa rTD -asa -gtr -vfd +nIN +veR +cci asp -ovC +kcZ asy asy bCe @@ -83924,44 +65694,44 @@ sGB fmq bCo jnA -bCq +grE akt -mCD -aqI -axa -lBx -aqI -kOd -nQZ -gvi +crY +wSI +dbc +cHy +wSI +qIu +hLG +sAU aiU aiU aiU bfu aIx -cYL -qEw -aIL -aIL -aIL -aIL -aIL -bcz -aIL -aIL -aIL -aIL -roZ -sdv -sdv -sdv -sdv -sdv -wGT -sdv -bXQ -aIL -bYK +oqo +uBs +hHz +hHz +hHz +hHz +hHz +uWC +hHz +hHz +hHz +hHz +ifq +wdR +wdR +wdR +wdR +wdR +uNb +wdR +ece +hHz +jbx gLs hqX bYP @@ -83977,34 +65747,34 @@ ylo ylo ylo aqs -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo agZ -bbv -ahq -ahq -uMf +ssc +gNO +gNO +wrK agZ -agN -agQ -azf -qKN +swy +tgU +dAG +mte agZ -agO -ahq -bfP -mQk -mQk -uZA -ahq -ahq -bSp +mkV +gNO +qCR +oRe +oRe +nVb +gNO +gNO +fcA agZ -bRk -ahq -bSh +pBB +gNO +pkU aqs aoe aoe @@ -84012,68 +65782,68 @@ aoe aoe aoH aoH -aHp +wNh aoH aoH aoe -rvg -aow -uqx -aLZ +hdb +nOa +lIL +nak lac aoJ aoJ -aHq +kqJ aoJ aoJ kyQ -rWG +vnr vim tGq -fFh -fFh +gmn +gmn pRl vim pRl -fFh -fFh +gmn +gmn pRl vim -fFh -rLZ -qiw -ahZ -aQt -aQt -ahZ +gmn +tze +vnQ +qGc +xEY +xEY +qGc apk -rFS +vsz apk aEe -gGR -jyk -aij -aip -aip -aip -aip -aip -aip -aip -aip -aip -tYX -dXp -aiF -aiF -aiF -aiF +hBJ +edV +weY +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +pdf +uON +cdw +kbr +kbr +kbr +kbr fSX -aEj +jyV apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (77,1,1) = {" @@ -84090,17 +65860,17 @@ ylo ylo ylo aaE -ajC -btD -aeH -aag -aag -bFX -bjj -ehy -aNO -aag -aLR +vaW +seD +eNV +owh +owh +pnq +wIG +knf +mrW +owh +yhI aNK aNK aNK @@ -84111,7 +65881,7 @@ auq auq auq auq -ays +qQl auq auq auq @@ -84120,42 +65890,42 @@ auq auq auq auq -aFz -vMP -acD -tDQ +oPI +qAf +vrX +pjG acd -bGR -dky -edP -acD -axY +vVP +xzp +wLX +vrX +owN aXU aXU aXU wtM alI -ami -qbc -ami -aMF +vte +iTq +vte +daV alI -jUa -gtr -rvL +eWs +veR +xxz rTD -dxy -dxy -dxy -lVW -aso -aSw +nob +nob +nob +qvV +cwU +uxp rTD -asa -gtr -rvL +nIN +veR +xxz asq -aRz +nMB jnA bCb bCg @@ -84169,44 +65939,44 @@ bCb fmq bCo ffF -bCr +qZE akt -aSF -aqI -aqI -reh -aqI -kOd -aSb -mCD +qhQ +wSI +wSI +jzc +wSI +qIu +nyj +crY anw ylo aiU aiU aoW -hqd -oYC -ckt -wKF -nYn -sdv -sdv -uyg -sdv -sdv -sdv -sdv -lxi -aIL -aIL -aIL -aIL -aIL -bcB -aIL -aIL -aIL -bYL +hcK +vJC +iuF +rid +ixp +wdR +wdR +lSt +wdR +wdR +wdR +wdR +qgT +hHz +hHz +hHz +hHz +hHz +pqz +hHz +hHz +hHz +olq buU bYN hqX @@ -84222,55 +65992,55 @@ ylo ylo ylo aqs -atR -atR -atR -baI +bzO +bzO +bzO +gyV aqs -aof -ahq -ahq -aoo +lKl +gNO +gNO +heI aqs -atR -atR -bcu -bek +bzO +bzO +fqF +ybk ksH -hSo -ahq -ahq -iik -ahq -ahq -ahq -ahq -ahq -aVO -ahq -ahq -uMf -naG -aoP -oVO -jee -bqI -ovT -ilI -aBE -prw -cIs +pJE +gNO +gNO +mmn +gNO +gNO +gNO +gNO +gNO +dKb +gNO +gNO +wrK +nIJ +rSs +hwU +vvh +fUx +bit +sth +pZq +ova +tWq bTk -ail -ail -nYP -hVF +nfQ +nfQ +xjc +oJC atH -kZy -efN -aBG -oHT -xBs +sKn +oPj +fLi +ssq +xfH avQ avQ avQ @@ -84286,39 +66056,39 @@ avQ avQ avQ aEy -qiw -ahZ -ahZ -ahZ -ahZ -oHU -rFS +vnQ +qGc +qGc +qGc +qGc +lKK +vsz apk aEd neY aii -aik -aiF -aiF -dXp -aiF -aiF -aiF -aiF -aiF -aiF -aix -aiu -aiu -aiu -aiu +npe +kbr +kbr +cdw +kbr +kbr +kbr +kbr +kbr +kbr +vfw +rOO +rOO +rOO +rOO aiA aQf -aEj -oHU -ahZ -xfT -aZi +jyV +lKK +qGc +gAX +bYg aEy "} (78,1,1) = {" @@ -84335,72 +66105,72 @@ ylo ylo ylo aaE -aCk -aOi -aeH -aag -aag -aag -aOi -aag -aNO -aag -bGe +pCJ +hZq +eNV +owh +owh +owh +hZq +owh +mrW +owh +uCH aNK -abn -arq -asO +euB +pvc +hBP aNK -aIe -aJN -aWa -aJN -bcs -tCn -azQ +eMl +eOJ +xFx +eOJ +vOL +ePm +giO auq -bFH -bFI -bFt -bFx -bFB +mfK +lUq +xaq +tgb +tgs auq -puF -vMP -acD -amR +niu +qAf +vrX +slw acA -aPF -dky -awu -oRo -eMu +haW +xzp +gEG +sIO +nmY awy awy awy pPN bHR -ami -ami -ami -ami +vte +vte +vte +vte alI -asa -gtr -rvL +nIN +veR +xxz rTD -dxy -dxy -drv -lVW -aso -aSw +nob +nob +xrD +qvV +cwU +uxp rTD -asa -gtr -rvL +nIN +veR +xxz asq -aRz +nMB ffF bCb bCe @@ -84414,16 +66184,16 @@ bCb fmq bCo jnA -bCq +grE akt -aSH -aqI -aqI -reh -aqI -kOd -aSb -exY +xKl +wSI +wSI +jzc +wSI +qIu +nyj +oFP aqK ylo ylo @@ -84432,26 +66202,26 @@ aoW aoW aoW aoW -bat -buS -cAW -cAW +vNX +sZX +luH +luH aIx -qzy -aIS -aIS -aJt -dqi -aIL -aJt -aIS -aIS -aJG +kLn +nEs +nEs +fbd +qpS +hHz +fbd +nEs +nEs +rHm aIx -bYv -bYD -bYF -bYM +yiT +iAJ +xth +kMn qIU qIU qIU @@ -84467,55 +66237,55 @@ ylo ylo ylo aqs -axG -agR -agR -axG +xWX +mVp +mVp +xWX bCS -aZC -tuo -ahq -baR +pTB +lKg +gNO +fYw bCS -aoT -agR -aXk -aoT +jkg +mVp +uhI +jkg bCS -ahq -ahq -nOb +gNO +gNO +eBt agZ -bFz +fxk bSk agZ -bFz +fxk bSk agZ -bRn -bSf -bSi +iZc +lEZ +mSg aqs bTk bTk bTk bTk -xPi -oKk -qnw -oKk -leR -aMd -gzL -aow -cab -gzL +kKa +qyN +kQh +qyN +rLA +hGG +fLq +nOa +hxo +fLq aoJ -bbs -etp -dyY -bJr -bJu +epD +riM +muk +pSX +jAv aoR ylo aSa @@ -84531,39 +66301,39 @@ ylo ylo ylo aEy -aYB -ahZ -ahZ -ahZ -ahZ -sJk -rFS +hcV +qGc +qGc +qGc +qGc +fSp +vsz apk apk apk aEe -aiu -aiu -aiu -aib -gSm -gGR -gGR -aib -aiu -aiu -aiu +rOO +rOO +rOO +cCZ +fCY +hBJ +hBJ +cCZ +rOO +rOO +rOO aiA aiq aiq aiq aQf ahW -gcM -sJk -ahZ -xfT -aQt +qzB +fSp +qGc +gAX +xEY aiD "} (79,1,1) = {" @@ -84580,95 +66350,95 @@ ylo ylo ylo aaE -aUl -aOi -aeH -aag -gzB -aag -aOi -aag -aNO -btO -bqE +gCQ +hZq +eNV +owh +luD +owh +hZq +owh +mrW +hJR +cCi aNK -adc -aNR -atL +gRq +kFC +hDh aNK -wyL -aNV -aNV -aNV -aNV -tCn -azS +jtr +oXd +oXd +oXd +oXd +ePm +qLT aPP -bDz -bFr -bFu -bFy -wYj +keY +suT +gWT +nQN +vCp bCI -puF -vMP -acD -gzz +niu +qAf +vrX +rjP aev -bGT -acD -vMP -xAo +oHx +vrX +qAf +xAn alI bsL aXU aXU fSo axV -ami -biR -biV -aCF +vte +hCu +cGS +pPr alI -oVe -gtr -rvL +sKm +veR +xxz rTD -dxy -dxy -wwB -lVW -aso -yio +nob +nob +ogz +qvV +cwU +eoq rTD -asa -gtr -rvL +nIN +veR +xxz asp -aRf -crH -aRf -bCh -crH -bCi -crH -bCn -bCc -asr -asr -aRw -asr -asr -aRf +lFS +xqK +lFS +iwW +xqK +oTC +xqK +dxJ +hUm +tql +tql +xZg +tql +tql +lFS akt -iDV -fGS -lER -iZu -aqI -kOd -aSb -exY +nSw +tZE +xQn +hcX +wSI +qIu +nyj +oFP aqK ylo ylo @@ -84682,16 +66452,16 @@ aoW aoW aoW aoW -uZM -bVh -bWO -qzy -dqi -aIL -aJG -bXZ -bVs -bYh +uwO +mxe +mrZ +kLn +qpS +hHz +rHm +smD +uNc +nPC aoW aoW aoW @@ -84712,30 +66482,30 @@ ylo ylo ylo aqs -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo bCS -bam -baF -baK -baX +mPX +mkJ +crF +tfp bCS -aQc -agR -aXk -aQc +iRo +mVp +uhI +iRo bCS -pcK -ahq -uMf +kVE +gNO +wrK agZ -aQc -bSl +iRo +tnr agZ -aQc -bSl +iRo +tnr aqs aqs aqs @@ -84745,22 +66515,22 @@ ylo ylo ylo bTk -bDI -eRE -ilm -exC -tNJ +wvq +uQS +fqG +jNm +dza aoH -aLZ -pdk -aow -aLZ +nak +cMM +nOa +nak aoJ -sIm -uMo -oCz -bJq -rLw +vsX +vgF +gNn +hFG +xzJ aoR ylo aSa @@ -84776,13 +66546,13 @@ ylo ylo ylo aEy -vpl -hHx -gvh -ahZ -ahZ +rZs +wVy +jhk +qGc +qGc apk -rFS +vsz apk apk apk @@ -84804,11 +66574,11 @@ aiI aQg ahW apk -gcM +qzB apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (80,1,1) = {" @@ -84825,59 +66595,59 @@ ylo ylo ylo aaE -cOv -btD -aeH -aag -aag -xys -akM -dRI -aNO -aag -bGf +rvy +seD +eNV +owh +owh +rlX +pvE +fmA +mrW +owh +cbH aNK -aPd -aNR -aPe -aaF -aNW -aNW -aNW -nwT -mAK -aPn -uvd +seW +kFC +hCj +cTn +xJt +xJt +xJt +sIT +lCM +jvB +nFE aPP -boD -wyL -aNW -aNW -wYj +lwK +jtr +xJt +xJt +vCp bCI -puF -vMP -acD -adT -eqK -mIn -acD -vMP -fps +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +mSI alI aXU aXU aXU fSo aTj -ami +vte alI alI alI alI -asa -gtr -rvL +nIN +veR +xxz asm rTD rTD @@ -84886,9 +66656,9 @@ asm rTD rTD asm -asa -gtr -rvL +nIN +veR +xxz asp asp asp @@ -84901,19 +66671,19 @@ asp asp asq asq -bjV +nVx asq asq asp akt -aod -aod -aod -lgt -aqI -kOd -aSb -ggU +mkj +mkj +mkj +uti +wSI +qIu +nyj +pwF anw anw anw @@ -84930,10 +66700,10 @@ aoW aoW aoW aoW -aIQ -tEm -aIQ -sdm +csg +hlg +csg +yiH aoW aoW aoW @@ -84957,30 +66727,30 @@ ylo ylo ylo aqs -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo bCS -baA -baG -baG -bbf +qVm +fLQ +fLQ +btp bCS -aQc -agR -aXk -aQc +iRo +mVp +uhI +iRo bCS -bbF -azs -cii +iHa +wqF +bch bDn -aQc -bSl +iRo +tnr agZ -aQc -bSl +iRo +tnr aqs ylo ylo @@ -84996,10 +66766,10 @@ gJX gJX gJX bTk -hhj -lVw -hhj -oGf +xjj +iTy +xjj +mxl atH jqo jqo @@ -85022,38 +66792,38 @@ ylo ylo aEy aEy -qiw -ahZ -ahZ -ahZ +vnQ +qGc +qGc +qGc apk -eyz -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -oHU -iDD +qVc +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +lKK +vUt apk -gvh -xfT -aQt +jhk +gAX +xEY aiD "} (81,1,1) = {" @@ -85070,45 +66840,45 @@ ylo ylo ylo aaE -aUm -ako -aeH -aag -aag -aLR +fKS +rEi +eNV +owh +owh +yhI abi -aVP -aNO -btO -bqE +fuR +mrW +hJR +cCi aNK -adw -aNR -atM +jkN +kFC +eqO aNK -aAu -aNV -ghu -czh -aNV -xeV -mAK -ayB -pUP -mAK -mpS -aNW -ivy +xEB +oXd +vQH +cjY +oXd +eFC +lCM +cLN +hRo +lCM +nTi +xJt +hBC auq -puF -vMP -acD -adT -hYU -mIn -acD -vMP -jmO +niu +qAf +vrX +oUa +pfJ +jDg +vrX +qAf +jBj alI awA aXU @@ -85117,68 +66887,68 @@ fSo aFE alI alI -ycd -oyu -oyu -nLl -gtr -qyg -vLX -uSz -hpB -aSd -aSd -mrO -uSz -vLX -nLl -gtr -qyg -vLX -vLX -vLX -vLX -vLX -eiQ -vLX -vLX -vLX -vLX -vLX -nLl -gtr -qyg -vLX -qpo -aqI -aqI -aqI -aqI -aqI -aqI -sFI -pdh -pdh -vqA -aqI -oiI -aqI -aqI -aqI -aqI -aqI -oiI -aqI -mCD +hEy +eKQ +eKQ +uhv +veR +fNI +jrt +cYH +swA +gln +gln +feX +cYH +jrt +uhv +veR +fNI +jrt +jrt +jrt +jrt +jrt +fBI +jrt +jrt +jrt +jrt +jrt +uhv +veR +fNI +jrt +wWv +wSI +wSI +wSI +wSI +wSI +wSI +ppg +xOg +xOg +oMq +wSI +fCE +wSI +wSI +wSI +wSI +wSI +fCE +wSI +crY aqK ylo aSa ylo aqK -aSb -eaL -aqH -aSb +nyj +nTq +gVb +nyj aqK ylo aSa @@ -85202,23 +66972,23 @@ aqK aqK ylo aqs -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo aqs bCV -baH -baO +aVR +rkn bCV aqs -aQc -agR -aXk -aQc +iRo +mVp +uhI +iRo agZ -azp -aQb +pEu +jiB aqs aqs aqs @@ -85267,38 +67037,38 @@ ylo ylo ylo aEy -qiw -ahZ -ahZ -ahZ +vnQ +qGc +qGc +qGc apk apk apk -gcM -rFS +qzB +vsz apk apk apk -gcM -rFS +qzB +vsz apk apk apk apk apk -gcM -rFS +qzB +vsz apk apk apk -gcM -rFS +qzB +vsz apk apk apk -ahZ -xfT -aQt +qGc +gAX +xEY aiD "} (82,1,1) = {" @@ -85317,43 +67087,43 @@ ylo aaE aaE aap -btH -aag -aag -aLR +xIa +owh +owh +yhI abi -aVP -aNO -aag -bMD +fuR +mrW +owh +qoz aNK -aez -ars -atU +exX +lwb +sjF aNK -aCj -bCB -bCH -blA -aNU -tCn -hZu +wzi +kTU +mkb +maM +iRg +ePm +eUd aPP -aNU -mfS -aNW -aNW -wYj +iRg +iCl +xJt +xJt +vCp bCI -puF -vMP -acD -adT -ggq -mIn -acD -vMP -adT +niu +qAf +vrX +oUa +lCb +jDg +vrX +qAf +oUa alK bhx bhx @@ -85362,105 +67132,105 @@ xVS bhx bhx alK -asa -arY -arY -arY -gtr -cQs -cQs -arY -arY -arY -arY -fsP -kkK -kkK -kkK -hvT -gGZ -kkK -kkK -kkK -kkK -kkK -kkK -kkK -kkK -kkK -gGZ -kkK -kkK -hvT -kkK -gGZ -lvR -lvR -kuU -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -cmk -aqI -exY +nIN +eHG +eHG +eHG +veR +vGG +vGG +eHG +eHG +eHG +eHG +jIV +xZv +xZv +xZv +lsv +nMX +xZv +xZv +xZv +xZv +xZv +xZv +xZv +xZv +xZv +nMX +xZv +xZv +lsv +xZv +nMX +luU +luU +vEl +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +nee +wSI +oFP aqK ylo aSa ylo aqK -aJu -eaL -aqH -aJu +sRM +nTq +gVb +sRM aqK ylo aSa ylo aqK -aqI -aqQ -rjv -rFw -aqI +wSI +xTR +hlQ +lXv +wSI aqK ylo ylo ylo aqK -aqI -aqQ -rjv -aqX -aqI +wSI +xTR +hlQ +rTc +wSI aqK ylo aqs -aQc -agR -agR -agR -atR -baB -vmh -vmh -eoE -atR -agR -agR -aXk -aQc +iRo +mVp +mVp +mVp +bzO +ioZ +uqF +uqF +daf +bzO +mVp +mVp +uhI +iRo aqs aqs aqs @@ -85512,38 +67282,38 @@ ylo ylo ylo aEy -vpl -aQs -aQs -hHx -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -xfT -aQt +rZs +kLA +kLA +wVy +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +gAX +xEY aiD "} (83,1,1) = {" @@ -85562,15 +67332,15 @@ ylo ylo ylo aap -bFM -bFP -aag -sTN -akh -hIo -aNO -btO -bqE +tsH +rAt +owh +xmn +fYj +cjt +mrW +hJR +cCi aNK aNK aNK @@ -85580,25 +67350,25 @@ auq auq auq auq -aNX -tCn -wYj +kES +ePm +vCp aPP -aNX -aNV -bFv -bFK -bFC +kES +oXd +dQY +wNQ +vDP bCI -puF -vMP -acD -adT -eqK -mIn -acD -vMP -adT +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa alK axV axV @@ -85607,105 +67377,105 @@ mag axV bHR alK -asa -fsP -kkK -kkK -hvT -kkK -rtZ -wPq -wPq -gGZ -kkK -axw -vfd -aQP -jUa -arY -gtr -vfd -aQP -cWI -cWI -cWI -cWI -aQP -jUa -arY -gtr -vfd -aQP -cWI -cWI -iCo -vgV -aqH -eaL -mFm -eUB -eUB -eUB -eUB -eUB -eUB -eUB -eUB -eUB -eUB -eUB -eUB -cVK -aqH -eaL -aqI -ggU +nIN +jIV +xZv +xZv +lsv +xZv +bSC +seq +seq +nMX +xZv +hQx +cci +pej +eWs +eHG +veR +cci +pej +xRw +xRw +xRw +xRw +pej +eWs +eHG +veR +cci +pej +xRw +xRw +rLG +tRW +gVb +nTq +ggD +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +lUS +jnq +gVb +nTq +wSI +pwF aqK ylo aSa ylo aqK -aSb -eaL -aqH -aSb +nyj +nTq +gVb +nyj aqK ylo aSa ylo anw -aqI -aqQ -exY -aqX -aqI +wSI +xTR +oFP +rTc +wSI anw anw ylo anw anw -aqI -aqQ -exY -aqX -aqI +wSI +xTR +oFP +rTc +wSI anw ylo aqs -ahF -aVb -azg -azg -aus -bby -bbD -bbD -bct -aus -azg -azg -aZl -aoQ +fxx +tlc +nDL +nDL +nJz +kql +eKr +eKr +kAR +nJz +nDL +nDL +pOm +xBI aqs ylo ylo @@ -85758,37 +67528,37 @@ aSa aQz aQz aQC -arv +hNr aQC -aYB -ahZ -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -ahZ -gvh -ahZ -ahZ -ahZ -ahZ -ahZ -pIU -tVu -aQt +hcV +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +qGc +jhk +qGc +qGc +qGc +qGc +qGc +sYp +igY +xEY aiD "} (84,1,1) = {" @@ -85807,43 +67577,43 @@ ylo ylo ylo aap -bFN -bFQ -aag -aag -qqI -mOV -ehN -aag -csk +wmF +eUM +owh +owh +iOK +qgG +mzx +owh +vTa aNP -oHP -axd -lDb +eXV +enH +fCq bkP -aIR -aQL -bhJ +tgZ +dgQ +kyH aNP -qlF -tCn -aPg +elj +ePm +vbG auq -bFq -bFs -bFw -bFA -bFD +tzO +rOZ +naE +cnq +uXI auq -puF -vMP -acD -tDQ +niu +qAf +vrX +pjG acd -mIn -acD -vMP -adT +jDg +vrX +qAf +oUa alK bjD bjD @@ -85852,42 +67622,42 @@ xVS bjD bjD alK -asa -gtr -vfd -cWI -aQP -jUa -gtr -vfd -cWI -gOx -cWI -mBq -bpr +nIN +veR +cci +xRw +pej +eWs +veR +cci +xRw +hGj +xRw +ugW +jJO asc aRn -ase -aHV +mKt +cbz aRn asc -bhF -bHk +txW +ulv asC bnr asC aRv -asG -aHW +lvl +pXP aRv asC bnr asC -waF -aqG -aqH -eaL -gCO +hKY +wcC +gVb +nTq +lQd aqN aqN aqN @@ -85900,57 +67670,57 @@ aqN aqN aqN aqN -sPI -aqH -eaL -aqI -lOV +eXQ +gVb +nTq +wSI +mIf anw anw aSa anw anw -aws -eaL -aqH -aSb +ffW +nTq +gVb +nyj anw anw aSa anw anw -kGi -aqI -aJu -aqI -pXU -aSb +oIu +wSI +sRM +wSI +ott +nyj anw anw anw -aSb -pXU -aqI -aJu -aqI -aul +nyj +ott +wSI +sRM +wSI +dJP anw ylo aqs -aQc -aXk -agR -agR -atR -deD -aQc -aQc -uMf -atR -agR -agR -agR -aQc +iRo +uhI +mVp +mVp +bzO +bZU +iRo +iRo +wrK +bzO +mVp +mVp +mVp +iRo aqs ylo ylo @@ -86001,37 +67771,37 @@ aSa aSa aSa aQz -ahx -aQQ -aQQ +opN +cfr +cfr aQC -vpl -wJU -aQs -aQs -aQs -aQs -aQs -aQs -aQs -aQs -aQs -aYI -aQs -aQs -aQs -wJU -aQs -aQs -aQs -aQs -aYI -aQs -aQs -aQs -aQs -aQs -tVu +rZs +eEA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +kLA +gug +kLA +kLA +kLA +eEA +kLA +kLA +kLA +kLA +gug +kLA +kLA +kLA +kLA +kLA +igY aEy aEy aEy @@ -86052,27 +67822,27 @@ ylo aaE aaE aap -btK -aag -aag -aag -aOi -aag -aNO -btO -bqE +qdd +owh +owh +owh +hZq +owh +mrW +hJR +cCi aNP -aoU -klD -urX -avG -urX -urX -aNT +vVj +gHw +ouG +lPy +ouG +ouG +oDj aPO -aNX -tCn -aUg +kES +ePm +sYK auq auq auq @@ -86080,15 +67850,15 @@ auq auq auq auq -pxl -jxN -acD -aoL +jVI +xsG +vrX +lio acA -mIn -acD -vMP -jmO +jDg +vrX +qAf +jBj alI cKi aXU @@ -86097,13 +67867,13 @@ xVS aXU gwY alI -oVe -gtr -rvL -mJC +sKm +veR +xxz +oBP arx arx -atZ +hLP bnf arx arx @@ -86111,91 +67881,91 @@ arx arx asc asc -ase -ase -sHR -ase +mKt +mKt +pBe +mKt asc asc asc asC -bnp -aTY -fMN -asG -rpB -tYg -aTY -bpO +vEf +jjD +saQ +lvl +pAE +kWM +jjD +cGX asC asC -aqG -aqH -eaL -caA +wcC +gVb +nTq +nIM aqN -oXK -esV -esV -dlP -esV -esV -dlP -esV -esV -oXl +fLg +mPE +mPE +fKD +mPE +mPE +fKD +mPE +mPE +jyF aqN -cSI -aqH -eaL -aqI -aSb -gvi +gsH +gVb +nTq +wSI +nyj +sAU anw anw anw -aJu -aqI -eaL -aqH -aqI -aJu +sRM +wSI +nTq +gVb +wSI +sRM anw anw anw -jGd -duY -xFf -xFf -xFf -rRm -jDp -dlO -hjU -dlO -sVs -uzS -xFf -xFf -xFf -duY +pnJ +rQu +mve +mve +mve +smZ +ePS +ryQ +ePx +ryQ +eEL +deL +mve +mve +mve +rQu anw aqs aqs -aQc -aXk -agR -agR -atR -baC -baG -baG -cii -atR -agR -agR -agR -aQc +iRo +uhI +mVp +mVp +bzO +rGM +fLQ +fLQ +bch +bzO +mVp +mVp +mVp +iRo aqs ylo ylo @@ -86246,21 +68016,21 @@ aqL ylo ylo aQz -aQQ +cfr aQO bgx aQz aEy aEy aEy -aQt -aQt -aQt -aQt -aQt -aQt -aQt -aQt +xEY +xEY +xEY +xEY +xEY +xEY +xEY +xEY aEy aEy aEy @@ -86271,12 +68041,12 @@ aEy aEy aEy aEy -aQt -aQt -aQt -aQt -aQt -aQt +xEY +xEY +xEY +xEY +xEY +xEY aEy ylo ylo @@ -86295,45 +68065,45 @@ ylo ylo ylo aaE -aVM -btE -aeH -aag -aag -msj -btQ -qsY -aNO -aag -bGi +xoz +tHb +eNV +owh +owh +qiy +dpp +hLt +mrW +owh +rIS aNP -qhl -sQb -aNL +bvA +vdq +dPn bkP -aNS -rBf -kha +kOU +pQN +naB aPO -wyL -tCn -bFG +jtr +ePm +sil auq -bCw -sCZ -aeY -bCD -bCF +jqj +vYp +eFy +hKf +iUn auq -puF -vMP -acD -gzz +niu +qAf +vrX +rjP aev -mIn -acD -vMP -adT +jDg +vrX +qAf +oUa alK bhx bhx @@ -86342,105 +68112,105 @@ xVS bhx bhx alK -asa -gtr -rvL +nIN +veR +xxz arx arx -arH -uTq -boX -kyb -bpi -lkF +evf +jMl +sTE +cIo +rqr +vCB arx -aDT -ase -gZw -wuC -sHR -ase -aYS -buR +lHj +mKt +vHS +fCV +pBe +mKt +iAA +esp asc -asE -fMN -asG -asG -asG -rpB -asG -asG -tYg -qTZ +iLe +saQ +lvl +lvl +lvl +pAE +lvl +lvl +kWM +vwT asC -aRD -aqH -eaL -gCO +wcS +gVb +nTq +lQd aqN -xkH -cGi -cGi -cGi -cGi -cGi -cGi -cGi -cGi -qBJ +mEn +ycB +ycB +ycB +ycB +ycB +ycB +ycB +ycB +xyf aqN -cSI -aqH -eaL -aqI -aqI -aqI -aqI -jyR -aqI -aqI -aqI -eaL -aqH -aqI -aqI -aqI -oiI -aqI -aqI -aqI -aqH -aqH -aqH -iTt -duY -duY -duY -duY -duY -lgt -aqH -aqH -aqH -aqI -aqI -aha -axG -aQc -aXk -agR -aQc +gsH +gVb +nTq +wSI +wSI +wSI +wSI +mQX +wSI +wSI +wSI +nTq +gVb +wSI +wSI +wSI +fCE +wSI +wSI +wSI +gVb +gVb +gVb +oFp +rQu +rQu +rQu +rQu +rQu +uti +gVb +gVb +gVb +wSI +wSI +fZU +xWX +iRo +uhI +mVp +iRo aqs aZa aZa aZa aZa aqs -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo aqs ylo ylo @@ -86491,7 +68261,7 @@ aqL aqL aqL aQz -aQQ +cfr aQW aQz aQz @@ -86540,45 +68310,45 @@ ylo ylo ylo aaE -ajC -btD -aeH -aag -aag -fZQ +vaW +seD +eNV +owh +owh +njo abi -bFY -aNO -btO -bqE +sBh +mrW +hJR +cCi aNP aNP aNP aNP aNP -ave -aNQ -rjO -aeA -mAK -aPn -uvd +cYh +nuw +iDy +dgb +lCM +jvB +nFE bkM -wyL -bCx -ahl -bCE -bCG +jtr +uor +pDv +nSt +jkl auq -puF -vMP -acD -adT -eqK -mIn -acD -vMP -adT +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa alK axV bHR @@ -86587,105 +68357,105 @@ xVS axV axV alK -asa -gtr -rvL +nIN +veR +xxz arx -rfh -kPl -awO -feD -arH -arH -arH +mvc +dvK +qpD +kjJ +evf +evf +evf arx -bpt -ase -aHE -fLz -bpD -wuC -ase -ase -asB -asF -axQ -bHA -bnq -chg -rFf -bPi -bnq -axQ -bnx +tSI +mKt +xvO +mUd +iFo +fCV +mKt +mKt +fqM +rDT +ifu +wLY +lDg +oXu +jLQ +ufK +lDg +ifu +iRe aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -xkH -snc -snc -cGi -snc -snc -cGi -snc -snc -qBJ +mEn +lwh +lwh +ycB +lwh +lwh +ycB +lwh +lwh +xyf aqN -cSI -aqH -eaL -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -eaL -aqH -aqH -eqM -fsr -eqM -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -atR -agR -agR -aXk -agR -aQc +gsH +gVb +nTq +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +nTq +gVb +gVb +god +keH +god +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +bzO +mVp +mVp +uhI +mVp +iRo aZa ylo ylo ylo ylo aZa -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo aqs ylo ylo @@ -86736,7 +68506,7 @@ bdQ bdQ aYR aQC -aQQ +cfr baz aQz ylo @@ -86785,45 +68555,45 @@ ylo ylo ylo aaE -bqx -aOi -aeH -aag -btO -bpR +cEN +hZq +eNV +owh +hJR +qSQ abi -bFZ -aNO -aag -aZA +wsp +mrW +owh +xUu aNP -oHP -axd -ggO +eXV +enH +xqg bkP -lhI -aNQ -vFL +nay +nuw +ncq aPO -aNU -xeV -mAK -bkN -mAK -bCy -akN -aNW -akP +iRg +eFC +lCM +ldQ +lCM +fFC +nAt +xJt +mxn auq -puF -vMP -acD -adT -aJy -mIn -acD -vMP -adT +niu +qAf +vrX +oUa +guc +jDg +vrX +qAf +oUa alK bjD huQ @@ -86832,105 +68602,105 @@ xVS bjD bjD alK -asa -gtr -rvL +nIN +veR +xxz arx -wwQ -bcQ -uTq -boY -bpd -bpj -arH +vHe +mEM +jMl +wEP +dvs +raN +evf bnf -rGH -ase -bpF -bpC -bpE -hLh -gdy -ase -asB -asF -bGZ -bJf -bnq -asG -kzN -bHA -bnq -axQ -bnx +uGO +mKt +wMh +qRl +oLM +aDW +xqO +mKt +fqM +rDT +jtX +sEG +lDg +lvl +tPe +wLY +lDg +ifu +iRe aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -xkH -cGi -cGi -cGi -cGi -cGi -cGi -cGi -cGi -qBJ +mEn +ycB +ycB +ycB +ycB +ycB +ycB +ycB +ycB +xyf aqN -cSI -aqH -wUx -lvR -lvR -lvR -lvR -mer -lvR -lvR -lvR -mer -kuU -sDx -sDx -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -kuU -lvR -lvR -aus -azg -azg -aZl -agR -aQc +gsH +gVb +jcS +luU +luU +luU +luU +gOm +luU +luU +luU +gOm +vEl +ccH +ccH +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +vEl +luU +luU +nJz +nDL +nDL +pOm +mVp +iRo aZa ylo ylo ylo ylo aZa -aQc -agR -agR -aQc +iRo +mVp +mVp +iRo aqs ylo aqL @@ -86981,7 +68751,7 @@ bdQ bdQ bdQ aQC -arv +hNr aQC aQz ylo @@ -87030,152 +68800,152 @@ ylo ylo ylo aaE -aUl -aOi -aeH -aag -bGh -bMB +gCQ +hZq +eNV +owh +gac +qKG abi -aWD -aNO -btO -bqE +swN +mrW +hJR +cCi aNP -aoU -klD -urX -awD -urX -urX -mTO +vVj +gHw +ouG +pyq +ouG +ouG +ujc aPO -aNX -tCn -hZu +kES +ePm +eUd bkM -aNU -aNV -ahl -aNV -alD +iRg +oXd +pDv +oXd +rss auq -soi -vMP -acD -adT -nTz -mIn -acD -vMP -adT +hBK +qAf +vrX +oUa +mNU +jDg +vrX +qAf +oUa arL arL arL arL -uwP +nDi arL arL alI -asa -gtr -rvL +nIN +veR +xxz arx -aRh -aWh -aML -awU -ucx -oEa -awU -aHP -hLh -hLh -hLh -cEC -iei -ase -ase -tFv -asB -asF -asG -asG -asG -dVQ -rpB -asG -asG -asG -bny +uaG +mNr +wwq +vjH +khX +sts +vjH +udJ +aDW +aDW +aDW +eLG +frU +mKt +mKt +mFq +fqM +rDT +lvl +lvl +lvl +iOl +pAE +lvl +lvl +lvl +jyi asC -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -sNE -cGi -aAE -cGi -snc -snc -cGi -snc -snc -qBJ +wNJ +ycB +fIB +ycB +lwh +lwh +ycB +lwh +lwh +xyf aqN -eJg -cVK -eaL -mFm -eUB -eUB -eUB -eUB -eUB -eUB -cVK -aqH -nUz -tUO -buT -buT -buT -buT -buT -buT -buT -fSr -buT -buT -buT -buT -buT -buT -buT -buT -jHF -aqH -eaL -aqI -aqI -atR -axG -aQc -ahN -aQc -aQc +kUg +jnq +nTq +ggD +lUS +lUS +lUS +lUS +lUS +lUS +jnq +gVb +cPx +ptv +tuq +tuq +tuq +tuq +tuq +tuq +tuq +gEX +tuq +tuq +tuq +tuq +tuq +tuq +tuq +tuq +pyG +gVb +nTq +wSI +wSI +bzO +xWX +iRo +fff +iRo +iRo aZa ylo ylo ylo ylo aZa -bbm -agR -agR -bbm +eCO +mVp +mVp +eCO aqs aqL aqL @@ -87213,9 +68983,9 @@ bea beg aJZ aKK -lMf -aYc -lMf +uIn +qHU +uIn aKK bdS bcN @@ -87275,62 +69045,62 @@ ylo ylo ylo aaE -ajC -btD -aeH -aag -aag -bFV +vaW +seD +eNV +owh +owh +whv abi -bMC -aNO -aag -bME +orV +mrW +owh +iKy aNP -qhl -sQb -aNL +bvA +vdq +dPn bkP -aIV -bhA -brd +cke +nsK +fys aNP -bHc -tCn -aBu +brM +ePm +hmS auq -gaF -ndr -axm -ndr -wBc +tvU +lJb +mbX +lJb +qoy auq -puF -vMP -acD -adT -eqK -mIn -acD -vMP -adT +niu +qAf +vrX +oUa +doP +jDg +vrX +qAf +oUa arL -bpa -jrQ -amg -rXj -agq +qXf +mjj +dst +tIX +khh arL -uSz -nLl -gtr -rvL +cYH +uhv +veR +xxz arx -bjA -aQR -uTq +rCC +rPS +jMl arx -vMI +nhh arx arx arx @@ -87339,40 +69109,40 @@ asc asc asc asc -bjy -bjz -bpG +pZS +gur +oot asc -dUn -axQ -eGQ -bnq -asG -kzN -eGQ -bnq -axQ -bJg +eLL +ifu +tOm +lDg +lvl +tPe +tOm +lDg +ifu +wLA aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -wQZ -tvO -iHc -wBP -xtR -iQi -uuT -iQi -iQi -oOg +rjp +ebu +tSP +iGg +voD +nUT +czL +nUT +nUT +cuB aqN aqO bnM -aCI +wwK aqO arf arf @@ -87380,11 +69150,11 @@ arf arf arf arf -cSI -aqH -nUz -aro -nQZ +gsH +gVb +cPx +qfN +hLG arp arp arp @@ -87399,11 +69169,11 @@ arp arp arp arp -nQZ -cfZ -aqH -eaL -aqI +hLG +xEO +gVb +nTq +wSI anw aqs aqs @@ -87417,10 +69187,10 @@ aSa aSa aSa aqs -cgt -cgt -cgt -bet +sxq +sxq +sxq +cOR gjX aqL bdQ @@ -87458,9 +69228,9 @@ aJZ aJZ aJZ aKK -iOi -aKM -aKM +geC +esY +esY aKK bdS beo @@ -87520,17 +69290,17 @@ ylo ylo ylo aaE -bqC -btF -aeH -aag -btO -bpR +dvt +rWb +eNV +owh +hJR +qSQ abi -bum -aNO -btO -bqE +rYI +mrW +hJR +cCi aNP aNP aNP @@ -87541,7 +69311,7 @@ aNP aNP aNP auq -ays +qQl auq auq auq @@ -87550,63 +69320,63 @@ auq auq auq auq -kvm -vMP -acD -tDQ +iPg +qAf +vrX +pjG acd -bGR -acD -vMP -adT +vVP +vrX +qAf +oUa arL -bpa -gRm -arR -rXj -arR -nTO -arY -arY -gtr -kvN +qXf +gtL +cGt +tIX +cGt +kcD +eHG +eHG +veR +unR ary ary ary -aHO +nJu ary -thb -hhP +eue +uub eyK lsu nAl -uZL -mIs +ovU +hBY asc asc asc asc asc asc -aAr -axQ -eGQ -bnq -asG -kzN -bJf -bnq -axQ -bnx +tWg +ifu +tOm +lDg +lvl +tPe +sEG +lDg +ifu +iRe aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN aqN aqN -avU +upz aqN aqN aqN @@ -87616,19 +69386,19 @@ aqO aqO aqO aqO -bpX -lxS -aAM +jKp +hVS +fYW aSp -arj -ybP -arg -bAX +rsv +krl +xuy +mzL arf -cSI -eqM -nUz -aro +gsH +god +cPx +qfN arp arp ahB @@ -87636,19 +69406,19 @@ aTG ahB qoq arp -bEC -bqw +lbh +fVF arp -bDO -hLL -bEI -bqA +xxJ +vxH +mbe +gsq arp arp -cfZ -aqH -eaL -aqI +xEO +gVb +nTq +wSI aqK ylo ylo @@ -87662,10 +69432,10 @@ ylo ylo ylo aqs -aQF -agR -agR -aQc +xYs +mVp +mVp +iRo agZ bdQ bdQ @@ -87704,7 +69474,7 @@ aKs aKs aKK aKK -bcb +mwm aKK aKK aKs @@ -87767,58 +69537,58 @@ ylo aaE aaE aap -aeH -aag -bFT -aqq +eNV +owh +cME +xVf abi -bum -aNO -aag -sTN +rYI +mrW +owh +xmn abA -yaN -aNN -aNN -hYs -aNN -yaN -aNN -aPh -ymj -aPo -gMY +tbG +lod +lod +phj +lod +tbG +lod +lBV +iPD +vSQ +eqf abA -aOb -bOZ -bPa -bOZ -aOf +rGr +ukw +eTn +ukw +kiA adb -puF -vMP -acD -amR +niu +qAf +vrX +slw acA -aPV -acD -vMP -adT +tdr +vrX +qAf +oUa arL -bpa -gRm -arR -eqt -arR -arR -arY -arY -gtr -rvL +qXf +gtL +cGt +kck +cGt +cGt +eHG +eHG +veR +xxz ary -mVk -bhD -fZW +wXV +iOm +fjq ary ary ary @@ -87826,74 +69596,74 @@ ary ary ary ary -thb -aRM -arH -toL -aKX -aKX +eue +nDj +evf +rLM +enQ +enQ arx -aRA -jvk -asG -tWw -asG -boW -asG -asG -asG -bny +lvH +luJ +lvl +rEt +lvl +iKk +lvl +lvl +lvl +jyi asC -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -aqR -vyk -aqW -hDE -vCo +hod +tUD +laj +chA +jiZ aqN -cbo -its -bpq -tpz -eOS +qpU +ntG +gVa +mWd +mJp aSm -bAO -fkX -lvU -aGt -qaS -biH -aNC -bAD +wzG +ltb +ryO +rMx +qQE +fja +syf +uBA arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp bnY -aiS -aVl -aty +err +myc +lrt ahB arp -aTT -nGs +jew +oHQ arp -bEE -qWK -bjC -nJl -bKN +cdF +mcE +uBv +gTN +fXu arp -cfZ -aqH -eaL -aqI +xEO +gVb +nTq +wSI aqK ylo ylo @@ -87907,10 +69677,10 @@ ylo ylo ylo aqs -aRa -agR -aoO -aQc +ovr +mVp +hdD +iRo agZ bdQ bdQ @@ -87944,17 +69714,17 @@ aKn aJZ aKs aKs -bsO -bsO -bsW +rIt +rIt +kZf aKK -cah -aKO -bti +rYs +nDR +ukR aKK -btn -bsO -bsO +kVK +rIt +rIt aKs aKs rTj @@ -88012,133 +69782,133 @@ ylo ylo ylo aap -aeH -aag -aag -bFX -bjj -ehy -omw -mOV -mOV -aaC -adu -adu -adu -adu -adu -aPk -adu -adu -adu -spN -adu -aOp -hta -hta -hta -aPu -pXY +eNV +owh +owh +pnq +wIG +knf +wBv +qgG +qgG +oNu +ujM +ujM +ujM +ujM +ujM +svi +ujM +ujM +ujM +qYt +ujM +xTV +jFB +jFB +jFB +pPo +upv adb -aFz -vMP -acD -gzz +oPI +qAf +vrX +rjP aev -bGT -acD -vMP -adT +oHx +vrX +qAf +oUa arL -bpa -gRm -arR -arR -arR +qXf +gtL +cGt +cGt +cGt arL -cbS -jUa -gtr -rvL +otA +eWs +veR +xxz ary -bhI -arI -fZW -uRC -bHC -bHC -bHC -bHC -uRC +uRf +nRs +fjq +qvO +qEE +qEE +qEE +qEE +qvO ary ary ary -aHR -arH -arH -boX +pEi +evf +evf +sTE arx -asF -axQ -bpK -gTe -tWw -kzN -bJf -bnq -axQ -bHB +rDT +ifu +hdA +kyh +rEt +tPe +sEG +lDg +ifu +vHj aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -aqS -qWf -aqW -qQU -wYD +bXi +mYI +laj +itQ +rqG aqN -aqT -bAe -bAf -bAV -xzg +vIe +dOG +hpl +nlT +ggN aSm -bAP -lxS -kSa +qNp +hVS +dPc aSp -bBh -biI -bAC -bAY +eyj +jiV +wkJ +kYW arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp aUr -ath -aVm -eKL +ciM +ceS +eSo tYF bye -ppi -olD +ehB +mVH arr -bqz -ayS -aDO -ayS -mSR +elO +rZV +qnu +rZV +wZk arp -cfZ -aqH -eaL -aqI +xEO +gVb +nTq +wSI aqK ylo ylo @@ -88153,7 +69923,7 @@ ylo ylo aQz aQC -arv +hNr aQC aQC aYR @@ -88188,19 +69958,19 @@ aKi bdb aJZ aKs -bsO -aKz -ema -mmj -bca -ezx -cak -ezx -bca -mmj -fmw -aKz -bsO +rIt +lZC +qFi +oVi +qvN +nhD +cOh +nhD +qvN +oVi +uOf +lZC +rIt aKs usS iEH @@ -88257,133 +70027,133 @@ ylo ylo ylo aap -aeH -aag -aag -aag -blT -mOV -bmL -aag -xys +eNV +owh +owh +owh +gIM +qgG +uBZ +owh +rlX abA -qOJ -aoV -aoV -agV -aoV -juA -agV -aoV -aoV -agV -oKh +hvC +qFx +qFx +uev +qFx +pPS +uev +qFx +qFx +uev +nXb abA -iOR -adz -adz -tDt -cPC +hzV +oQD +oQD +wdy +bwL jbN -acE -vMP -acD -slL -gJn -vyR -acD -vMP -jmO +qZQ +qAf +vrX +vRn +kqt +rRL +vrX +qAf +jBj arL arL -arR -oGe -lqR -arR +cGt +ula +pfo +cGt arL arL -oVe -gtr -rvL +sKm +veR +xxz ary -bhy -vDt -vLO -nNB -nNB -nNB -nNB -nNB -nNB -nNB -nNB -aHQ -awU -aHT -dOu -boX +jSy +ylW +hZk +sAd +sAd +sAd +sAd +sAd +sAd +sAd +sAd +pcL +vjH +psy +dCW +sTE arx -asF -axQ -bJf -bnq -quI -rFf -bHA -bnq -axQ -bnx +rDT +ifu +sEG +lDg +tEx +jLQ +wLY +lDg +ifu +iRe aRv -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -aZk -rVK -aqW -rVK -nEQ +lVO +fuL +laj +fuL +cHa aqN -aSf -bAf -bAB -dCv -pov -bBc -lvU -oaF -aRZ +sZY +hpl +muT +jQC +xvs +dQa +ryO +nhm +pUS arf arf arf arf arf arf -cSI -aqH -eaL -hhA +gsH +gVb +nTq +xvl arp rSG -bqq -aVr -auA +utO +fqO +oYB ahB arr -azC -vff +wzt +cKH arr arr -ayS -ifj -bqy -bEU +rZV +cyS +fxU +lKV arp -pir -aqH -eaL -aqI +czW +gVb +nTq +wSI anw anw anw @@ -88398,7 +70168,7 @@ ylo ylo aQz aQO -any +iRj bcx aQC bdQ @@ -88434,17 +70204,17 @@ aKo bdJ aKs aKs -bsO -bsO -bsW +rIt +rIt +kZf aKK -aKP -vOK -eUK +oGN +uUf +mhG aKK -btn -bsO -bsO +kVK +rIt +rIt aKs aKs rTj @@ -88502,136 +70272,136 @@ ylo ylo ylo aap -bFO -dtl -dtl -dRI -aNO -xys -dtl -dtl -sFd +pMO +gTY +gTY +fmA +mrW +rlX +gTY +gTY +rMr abA -aiR -agt -avv -aAS -agt -avv -aAS -agt -avv -aAS -ajP +rZl +kTi +mWt +eiP +kTi +mWt +eiP +kTi +mWt +eiP +stY abA -bOX -adz -adz -tDt -adz -aPH -acD -vMP -acD -acD -acD -acD -acD -vMP -adT +jUq +oQD +oQD +wdy +oQD +fDS +vrX +qAf +vrX +vrX +vrX +vrX +vrX +qAf +oUa uWJ -qcR -arR -lue -oGe -arR -aQv +ylB +cGt +gvd +ula +cGt +xHZ uWJ -asa -gtr -rvL +nIN +veR +xxz ary -bhB -arI -arI -arI -arI -arI -arI -arI -arI -arI -bTp +kVb +nRs +nRs +nRs +nRs +nRs +nRs +nRs +nRs +nRs +iqk ary -bjK -uTq -arF -rfh +pSS +jMl +fdB +mvc arx -ulr -uYq -asG -asG -asG -rpB -asG -asG -dOB -fNy +wUe +ekt +lvl +lvl +lvl +pAE +lvl +lvl +mJB +dQu asC -aRD -aqH -eaL -gCO +wcS +gVb +nTq +lQd aqN -kkV -nAm -sjK -jjz -lfF +feU +xTl +vPr +tCG +rXt aqN -aqT -ari -ari -ari -ari +vIe +rzu +rzu +rzu +rzu aqO -bAk -lxS -lAd +oFR +hVS +qFs aSp -arj -hzk -arg -bAX +rsv +fCf +xuy +mzL arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB -aUK -aVt -avz +cXD +pMx +xTb ahB arr -ayR -dQc -ppi -nqd -ppi -kje -ayS -bqD +sib +gkq +ehB +yiu +ehB +wzn +rZV +dlX arp -cfZ -aqH -eaL -aqI -aqI -oiI -vnH +xEO +gVb +nTq +wSI +wSI +fCE +fDo anw ylo ylo @@ -88643,7 +70413,7 @@ ylo ylo aQz aPb -aQQ +cfr aQO aQC bdQ @@ -88683,9 +70453,9 @@ aKs aKs aKs aKK -boE -vOK -boG +cMS +uUf +nes aKK aKs aKs @@ -88751,109 +70521,109 @@ abi btN btN abi -bmH +dBj abi btN btN abi abA alV -apC +kAA abA alV -apC +kAA abA alV -apC +kAA abA alV -apC +kAA abA -bOY -adz -adz -aPw -hta -hta -oRo -wBJ -oRo -oRo -oRo -oRo -oRo -jxN -adT +mQf +oQD +oQD +mXA +jFB +jFB +sIO +rNP +sIO +sIO +sIO +sIO +sIO +xsG +oUa uWJ -kUV -flQ -wcn -xHk -flQ -biy +vsb +tfD +fzs +tEW +tfD +drH uWJ -asa -gtr -rvL +nIN +veR +xxz ary ary -biZ -bpl -bHC -bHC -hZU -iCA -bHC -bHC -arI -bpA +qyv +iOG +qEE +qEE +muW +vXR +qEE +qEE +nRs +etN ary arx -atZ +hLP arx arx arx asC -oqB -aXi -uYq -asG -rpB -dOB -aXi -oOj +dgI +qqu +ekt +lvl +pAE +mJB +qqu +rXZ asC asC -aqG -aqH -eaL -gCO +wcC +gVb +nTq +lQd aqN -kkV -rVK -aqW -akT -huL +feU +fuL +laj +jcX +fZe aqN -aqT -ari -ari -ari -kSa +vIe +rzu +rzu +rzu +dPc bnJ -biE -fkX -lvU -aGt -qaS -biH -tcF -qdK +xnw +ltb +ryO +rMx +qQE +fja +iQJ +rBa arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB ahB @@ -88861,22 +70631,22 @@ aTH ahB ahB arr -xCE -vff -ayS -ayS -ayS -qWK -bEN -bEV +eZS +cKH +rZV +rZV +rZV +mcE +jQu +siz arp -cfZ -aqH -qqW -lvR -cmk -aqH -aqI +xEO +gVb +xSI +luU +nee +gVb +wSI anw ylo ylo @@ -88888,7 +70658,7 @@ ylo ylo aQz aQC -arv +hNr aQC aQC bdQ @@ -88928,9 +70698,9 @@ aJZ aJZ aJZ aKK -ekK -vOK -fqk +lRP +uUf +ptw aKK bem aJZ @@ -88979,56 +70749,56 @@ ylo (97,1,1) = {" aab aab -aNi -viq -jJD -jJD -viq -jJD -aDS -dYM -dYM -dYM -dYM -dYM +iHq +vOP +llT +llT +vOP +llT +ibQ +hht +hht +hht +hht +hht blK -aOu -aOu -aOu -cGO -fEP -aNY -aOu -aOu -aOu +pFJ +pFJ +pFJ +osj +sgj +xkb +pFJ +pFJ +pFJ blB -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO -bmO +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX +qKX adb -mAc -adz -gEm -tDt -ckz +mpR +oQD +uoV +wdy +oit jbN -toa -toa -toa -aFF -aOh -acC -acD -vMP -adT +wjG +wjG +wjG +nZq +obp +oOT +vrX +qAf +oUa arL arL arL @@ -89037,10 +70807,10 @@ arL arL arL arL -asa -gtr -rvL -mJC +nIN +veR +xxz +oBP ary ary ary @@ -89050,55 +70820,55 @@ ary ary twW twW -lGp +xEV ary ary -acP -eaL -bnn -bhE -bPb +gKi +nTq +ibp +qWx +wap asC bnr asC aRv -asG -aHW +lvl +pXP aRv asC bnr asC -gvi -aqG -aqH -eaL -gCO +sAU +wcC +gVb +nTq +lQd aqN -fHX -nTb -aqW -gGF -enu +tnh +fSN +laj +hxY +dQl aqN -aVq -biu -biA -bjc -aRT +isu +eqp +dmq +qEV +pdX aqO -biF -lxS -kSa +xdL +hVS +dPc aSp -bBh -biI -jgb -uKy +eyj +jiV +vNJ +nJd arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp arp arp @@ -89106,22 +70876,22 @@ arp arp arp arp -dMH -vff -iMM +kVo +cKH +qgH arr -jhO -jhO -jhO -fCx +hRL +hRL +hRL +fUs arp -cfZ -aqH -aqH -aqH -eaL -aqH -aqI +xEO +gVb +gVb +gVb +nTq +gVb +wSI aqK ylo ylo @@ -89173,9 +70943,9 @@ aJZ bdZ aJZ aKK -ydZ -qbG -vVA +jWU +imM +wjF aKK aJZ bdZ @@ -89223,105 +70993,105 @@ ylo "} (98,1,1) = {" aab -ahO -jJD -nls -dug -dug -nls -jJD -eXi -aNZ -nXo -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -fEP -aNZ -aNZ -aNZ -aNZ -blF -aNZ -aNZ -aNZ -aNZ -iAI -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aOc -adz -gEm -gEm -tDt -aFr +kdc +llT +hgF +xfi +xfi +hgF +llT +eLo +pEa +hdI +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +sgj +pEa +pEa +pEa +pEa +hTH +pEa +pEa +pEa +pEa +uKd +pEa +pEa +pEa +pEa +pEa +pEa +dJM +oQD +uoV +uoV +wdy +vzY adb adb adr adr adb adb -puF -acD -vMP -qaO -mRB -mRB -dSM -mRB -mRB -dSM -mRB -mRB -uwy -vMP -qaO -mRB -aqF -afc -aqF -aqF -aqF -gcE -aqF -aqF -qpo -aqH -cut -aqF -qpo -eaL -tfC -aqF -aqF -aqF -aqF -afc -qpo -aqH -eaL -tfC -afc -aqF -aqF -aqF -qpo -aqH -eaL -gCO +niu +vrX +qAf +kLJ +epZ +epZ +rGg +epZ +epZ +rGg +epZ +epZ +kJn +qAf +kLJ +epZ +rhU +jSk +rhU +rhU +rhU +gmO +rhU +rhU +wWv +gVb +koM +rhU +wWv +nTq +rMS +rhU +rhU +rhU +rhU +jSk +wWv +gVb +nTq +rMS +jSk +rhU +rhU +rhU +wWv +gVb +nTq +lQd aqN aqN aqN -gRP +bMJ aqN aqN aqN @@ -89331,19 +71101,19 @@ aqO aqO aqO aqO -aqT -lxS -sOt +vIe +hVS +cud arf arf arf arf arf arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB ahB @@ -89351,22 +71121,22 @@ aTG ahB ahB arr -ayR -vff -nJl +sib +cKH +gTN arr arr arp arp arp arp -eDZ -buT -buT -jHF -eaL -aqH -aqI +ttO +tuq +tuq +pyG +nTq +gVb +wSI aqK ylo ylo @@ -89418,9 +71188,9 @@ aKs aKs aKs aKK -aKN -vOK -xNw +tjH +uUf +iDd aKK aKs aKs @@ -89468,150 +71238,150 @@ ylo "} (99,1,1) = {" aab -aDN -xOJ -dYM -sxI -dYM -dYM -dYM -mBs -nXo -rJu -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -nXo -nXo -eCr -eTf -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -gEm -gEm -gEm -adz -tDt -cPC +fzR +skG +hht +wmK +hht +hht +hht +mAH +hdI +paa +pEa +pEa +pEa +pEa +pEa +pEa +hdI +hdI +iIi +iEZ +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +uoV +uoV +uoV +oQD +wdy +bwL adb -aPz -aOb -aOb -aEg +sOW +rGr +rGr +uAH adb -puF -acD -vMP -acD -acD -acD -acD -acD -acD -acD -acD -acD -acD -vMP -acD -acD -aqH -eqM -eqM -eqM -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -gCO +niu +vrX +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +god +god +god +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -uoh -vyk -aqW +lQm +tUD +laj aqN -arl -tpz -bjG -biv -biK +osA +mWd +knw +tkv +rBn aqO -bnj -bGW -aqT -lxS -lAd +oIP +fIm +vIe +hVS +qFs aSp -arj -ybP -arg -bAX +rsv +krl +xuy +mzL arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB -aUU -aVw -aty +cEB +eFQ +lrt ahB arr -ayR -dQc -oqz -vuu -vuu -aum -ayS -ayS +sib +gkq +iLE +ykK +ykK +tIu +rZV +rZV arp arr arr arp -cfZ -eaL -aqH -aqI +xEO +nTq +gVb +wSI aqK ylo ylo @@ -89659,17 +71429,17 @@ aKi aKn aKs aKs -bsO -bsO -bsW +rIt +rIt +kZf aKK -uGv -vOK -hNA +qAU +uUf +lIb aKK -btn -bsO -bsO +kVK +rIt +rIt aKs aKs bdP @@ -89713,150 +71483,150 @@ ylo "} (100,1,1) = {" aab -aDP -sqY -jpB -jpB -sga -hJG -jpB -gLW -aNZ -aPa -sIs -sIs -sIs -wwC -wwC -wwC -wwC -sIs -bmI -tVr -sIs -sIs -sIs -sIs -sIs -sIs -tVr -sIs -sIs -sIs -sIs -sIs -aoM -wwC -wwC -usW -hta -hta -hta -aPx -hta -aPM -aPA -rZK -aOd -aAN +xlm +oQN +oAS +oAS +kUz +dVq +oAS +hHr +pEa +xrH +mJS +mJS +mJS +dNN +dNN +dNN +dNN +mJS +tuH +oRN +mJS +mJS +mJS +mJS +mJS +mJS +oRN +mJS +mJS +mJS +mJS +mJS +tSS +dNN +dNN +lUG +jFB +jFB +jFB +gjg +jFB +ibC +bIl +oeF +oDv +dJq adb -puF -acD -vMP -acD -acD -acD -acD -acD -acD -acD -acD -acD -acD -vMP -acD -acD -aqH -aqH -aqH -eqM -uoQ -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -gCO +niu +vrX +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +gVb +gVb +god +edg +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -aRP -bAb -aqW +pQy +uRP +laj aqN -aGN -ari -ari -ari -xzg +pvQ +rzu +rzu +rzu +ggN aqO -bnF -bqa -aqT -fkX -lvU -aGt -qaS -biH -aNC -bAD +lBk +lBh +vIe +ltb +ryO +rMx +qQE +fja +syf +uBA arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp aNk -bqq -aVy -auA +utO +uzr +oYB ahB arr -rox -vff -qVz -ayS -ayS -aAZ -vuu -ayS -axh -axn -axE +pcx +cKH +inf +rZV +rZV +fzv +ykK +rZV +cOX +jKj +oql arp -cfZ -eaL -aqH -aqI +xEO +nTq +gVb +wSI anw aSa aSa @@ -89903,19 +71673,19 @@ aKi aKi aKn aKs -bsO -aKz -ema -mmj -bca -ezx -aSX -ezx -bca -mmj -fmw -aKz -bsO +rIt +lZC +qFi +oVi +qvN +nhD +pol +nhD +qvN +oVi +uOf +lZC +rIt aKs bdR bdR @@ -89958,150 +71728,150 @@ ylo "} (101,1,1) = {" aab -aDR -jJD -viq -jJD -jJD -viq -jJD -eXi -aNZ -fEP -aNZ -aNZ -aNZ -nXo -aNZ -aNZ -aNZ -aNZ -aPa -xQS -aNZ -aNZ -aNZ -bmN -aNZ -aNZ -fEP -aNZ -aNZ -aNZ -aNZ -nXo -eCr -aNZ -aNZ -aOc -adz -adz -adz -adz -ckz +lSH +llT +vOP +llT +llT +vOP +llT +eLo +pEa +sgj +pEa +pEa +pEa +hdI +pEa +pEa +pEa +pEa +xrH +nqP +pEa +pEa +pEa +igU +pEa +pEa +sgj +pEa +pEa +pEa +pEa +hdI +iIi +pEa +pEa +dJM +oQD +oQD +oQD +oQD +oit adb -avg -awj -awP -aEb +lxK +xrL +pem +qnC adb -aFz -acD -vMP -acD -vwu +oPI +vrX +qAf +vrX +xGN flo flo flo ahv -bHf -ggq -eqK -ggq -vYt +ecc +lCb +doP +lCb +oqN flo flo xKA ahy -bHg -aSb -aJu -aSb -rhv +vWK +nyj +sRM +nyj +hWl xKA xKA xKA ahy -bHg -aSb -qsC -aSb -rhv +vWK +nyj +tlU +nyj +hWl xKA xKA xKA ahy -bHg -aSb -qsC -aSb -rhv +vWK +nyj +tlU +nyj +hWl xKA xKA xKA ahy -aqH -eaL -caA +gVb +nTq +nIM aqN -xuI -gAh -lfH +tJr +wAl +qAn aqN -aHo -ari -bjH -bAr -bAS +fcY +rzu +tHv +eCD +gsn aqO -bnj -bqa -aqT -lxS -kSa +oIP +lBh +vIe +hVS +dPc aSp -bBh -biI -bAC -mxZ +eyj +jiV +wkJ +lLu arf -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp aUs -atj -aVz -bHa +yis +toB +rrc tYF byn -ppi -ixZ -iMM +ehB +uBn +qgH arr arr arp arp -bsb -vuu -ayS -nJl +tCl +ykK +rZV +gTN arp -jVW -nUz -aqH -aqI +mwI +cPx +gVb +wSI anw aSa aSa @@ -90149,17 +71919,17 @@ aKi aKn aKs aKs -bsO -bsO -bsW +rIt +rIt +kZf aKK -aKP -vOK -aYg +oGN +uUf +rPm aKK -btn -bsO -bsO +kVK +rIt +rIt aKs aKs bdP @@ -90204,126 +71974,126 @@ ylo (102,1,1) = {" aab aab -aRu -nls -jJD -jJD -nls -jJD -eXi -aNZ -fEP -rFC -jpB -jpB +vEh +hgF +llT +llT +hgF +llT +eLo +pEa +sgj +wCG +oAS +oAS blK -mrG -blP -mrG -qgm -fEP -uez -mrG -wpA -rCd +puE +mGQ +puE +lPb +sgj +nvv +puE +oTO +ktn blB -mrG -rOq -xSO -rOq -pQA -qgm -aNZ -aNZ -fEP -aNZ -bnb +puE +mAT +hWM +mAT +dhj +lPb +pEa +pEa +sgj +pEa +oCI adb -njI -njI -njI -njI -qNF +foi +foi +foi +foi +hXQ adb adb adr -adA +rRN adb adb -puF -dky -vMP -acD -acD -acD -acD -acD -acD -acD -acD -acD -acD -vMP -acD -acD -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -nUz -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -eaL -gCO +niu +xzp +qAf +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +vrX +qAf +vrX +vrX +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +cPx +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +nTq +lQd aqN -biJ -bpT -aqW +lPw +ljY +laj aqN -aSr -ari -bzW -bAs -biL +ndn +rzu +dTA +pKU +kIH aqO -pWr -bqb -svD -oaa -bBu +lUO +gTW +vrM +xEn +jpz arh arh arh arh arh arh -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp bnY ahB @@ -90331,22 +72101,22 @@ aTH ahB qoq arp -awt -vff -nJl +iBV +cKH +gTN arr -bDP -alk +guV +dTO aGx -ayR -ayS -qtZ -vuu -aHc -eqM -eaL -aqH -aqI +sib +rZV +ejh +ykK +ruO +god +nTq +gVb +wSI aqK ylo ylo @@ -90398,9 +72168,9 @@ aKs aKs aKs aKK -boE -vOK -boG +cMS +uUf +nes aKK aKs aKs @@ -90455,18 +72225,18 @@ ajD ajD ajD ajD -blr -blt -ewN -blo -bly -bps +sCw +jQc +eOn +mQi +vVy +nlf abg abg abg abg aae -bmJ +vhh aae abg abg @@ -90478,97 +72248,97 @@ bmS bmS blB blB -bnd -aNZ -fEP -bnd +xma +pEa +sgj +xma blB adb -ady -ady -ady -ady -ady +kzh +kzh +kzh +kzh +kzh adb -wUE -aOa -aOa -aOa +taj +emg +emg +emg baJ -puF -acD -awu -oRo -oRo -fpL -oRo -oRo -oRo -oRo -fpL -oRo -oRo -wBJ -oRo -oRo -lvR -lvR -lvR -lvR -kuU -lvR -lvR -lvR -lvR -kuU -lvR -lvR -lvR -mer -kuU -lvR -lvR -lvR -lvR -lvR -lvR -lvR -mer -lvR -lvR -lvR -lvR -kuU -sDx -sDx -ayh -gCO +niu +vrX +gEG +sIO +sIO +fbY +sIO +sIO +sIO +sIO +fbY +sIO +sIO +rNP +sIO +sIO +luU +luU +luU +luU +vEl +luU +luU +luU +luU +vEl +luU +luU +luU +gOm +vEl +luU +luU +luU +luU +luU +luU +luU +gOm +luU +luU +luU +luU +vEl +ccH +ccH +kSP +lQd aqN aqN aqN -awS +vyv aqN -bqm -ari -ghB -lvU -dhG -byI -dhG -lvU -dhG -oaF -bBe +hRF +rzu +kVL +ryO +qvs +yjS +qvs +ryO +qvs +nhm +rEZ arh -awl -bBj -bBl -bBm +kqI +cZz +kVY +vDk arh -sPI -aqH -eaL -aro +eXQ +gVb +nTq +qfN arp arp arp @@ -90576,22 +72346,22 @@ arp arp arp arp -awv -vff -ayS -aww -ayS -bkL -aIg -ayR -ayS -axu -ayS +iAe +cKH +rZV +cOJ +rZV +uCT +oxd +sib +rZV +nNX +rZV arp -aSb -eaL -aqH -aqI +nyj +nTq +gVb +wSI aqK ylo ylo @@ -90643,9 +72413,9 @@ aJZ aJZ beo aKK -aKN -vOK -xNw +tjH +uUf +iDd aKK bdP bdS @@ -90694,126 +72464,126 @@ ylo (104,1,1) = {" aad aad -aYC -blZ -bGq -bGr -bGt +iLW +sFy +msk +hya +jqb ajD -bLc -blt -ewN -blo -bly -bly +cIk +jQc +eOn +mQi +vVy +vVy abg -alP -btS -bGJ -aOq -qkr -fyC -bmM -aOY +jNQ +oro +dRg +gGw +myq +gbX +lWj +rog blM -bOV -bOW -aOu -aOu -aOu -aOu -cGO -aNZ -aNZ -fEP -aNZ -vur -aOb -aOb -aOb -aOb -aOb -aOb -aFb -sgX -aOb -aOb -aOb -bmW -acE -acD -kgO -acD -dzX -guS -cfO -cfO -aUv -acD -vMP -dzX -cfO -rdZ -cfO -cfO -buO -agF -agF -cWf -eaL -gKu -agF -agF -cWf -fMi -aqJ -koY -koY -xHV -nUz -aqJ -koY -koY -koY -uQz -koY -koY -pjP -koY -uQz -koY -koY -ffa -xHV -eqM -eaL -gCO +mBL +cUa +pFJ +pFJ +pFJ +pFJ +osj +pEa +pEa +sgj +pEa +wdv +rGr +rGr +rGr +rGr +rGr +rGr +tYa +nRD +rGr +rGr +rGr +vEV +qZQ +vrX +pju +vrX +mvO +rFp +ouF +ouF +hRJ +vrX +qAf +mvO +ouF +oYJ +ouF +ouF +vKq +ngt +ngt +sbz +nTq +tXy +ngt +ngt +sbz +oJS +nqs +hFj +hFj +iUz +cPx +nqs +hFj +hFj +hFj +tkf +hFj +hFj +sKM +hFj +tkf +hFj +hFj +tnD +iUz +god +nTq +lQd aqO -aSi -boN -lxS +xLU +jwC +hVS aqO -aMs -iEF -ari -kdn -ari -ari -ari -kdn -ari -lxS -bBf +mzO +ezu +rzu +nMJ +rzu +rzu +rzu +nMJ +rzu +hVS +fhv aSq -blm -aNF -aNF -bBn +fyr +sGn +sGn +hNK arh -awq -lvR -ayh -hhA +kjx +luU +kSP +xvl arp arp arp @@ -90821,22 +72591,22 @@ arp arp arp arp -bED -dQc -ppi -aCn -olD -bkL -aIg -ayR -ayS -axx -byr +okM +gkq +ehB +xDD +mVH +uCT +oxd +sib +rZV +mPb +vrJ arp -aws -wUx -lvR -dFe +ffW +jcS +luU +onp aqK ylo ylo @@ -90888,9 +72658,9 @@ bdS aJZ aJZ aKK -aKN -vOK -xNw +tjH +uUf +iDd aKK bdP bdP @@ -90901,11 +72671,11 @@ bem bdZ bdQ aKt -wKT -rmm -rmm -rmm -tOo +qmU +mST +mST +mST +wjy aKt bdZ aJZ @@ -90938,64 +72708,64 @@ ylo "} (105,1,1) = {" aad -aOl -akZ -amj -dio -ict -vka -anp -wpk -wpk -xEX -blo -acQ -iwx +vkh +vEu +mGV +gmw +tkz +cvD +ihf +egU +egU +tyT +mQi +sxT +mNa abg -aRH -aaH -aaH -aaH -qkr -aaH -iiY -aaH -bku -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -aNZ -fEP -aNZ -aNZ -adz -adz -adz -adz -adz -adz -adz -tDt -adz -adz -adz -bmX -acD -acD -vMP -dky -afg -pNa +vyy +gMa +gMa +gMa +myq +gMa +mKa +gMa +oZY +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +pEa +sgj +pEa +pEa +oQD +oQD +oQD +oQD +oQD +oQD +oQD +wdy +oQD +oQD +oQD +vEI +vrX +vrX +qAf +xzp +dMB +vqv agK bcP agK -ahD -akg +rxL +iJX agK aEq agK @@ -91003,21 +72773,21 @@ ann ann ann ann -aSb -vsN -eaL -lJz -gvi +nyj +tLY +nTq +pLh +sAU aqi aqi aqi aqi aqi -ahi -heo -eaL -deR -gvi +ecv +mAZ +nTq +iuS +sAU aqy aqy aqy @@ -91028,37 +72798,37 @@ aqi aqi aqi aqi -pMU -heo -eqM -nUz -gCO +uDk +mAZ +god +cPx +lQd aSm -aqT -aqP -lxS +vIe +lyR +hVS bnJ -bAg -noy -bix -bix -bix +dnS +kza +hmy +hmy +hmy bnM -bBb -noy -xHy -lxS -awh +yew +kza +ipN +hVS +skU aSq -awm -aNF -aNF -bBo +oxG +sGn +sGn +dcM aSq -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp xbW ahB @@ -91066,22 +72836,22 @@ aTG ahB qoq arp -bjB -vff -iMM +xPa +cKH +qgH arr -ali -alp +uuY +gMp aGx -ayR -axi -axz -ppi -sGV -lvR -ayh -aqH -aqI +sib +rQc +yeU +ehB +pWD +luU +kSP +gVb +wSI aqK ylo ylo @@ -91134,7 +72904,7 @@ aKt aKt aKt aKu -cal +lzt aKu aKt aKt @@ -91146,11 +72916,11 @@ aKt aKt aKt aKt -aXY -agX -agX -agX -aYi +tQj +fwp +fwp +fwp +dpz aKt aJZ bdS @@ -91190,98 +72960,98 @@ ajD ajD ajD ajD -jJN -blt -ewN -blo -bly -bly +nvd +jQc +eOn +mQi +vVy +vVy abg -aam -bGH -aaH -vjb -aOX -aOZ -bGN -aOZ -aOZ -sIs -sIs -sIs -tVr -sIs -sIs -bna -sIs -sIs -vMM -sIs -bna -hta -hta -hta -hta -hta -hta -hta -aPx -hta -hta -hta -bmY -oRo -oRo -wBJ -aPD -afg +dBh +dhJ +gMa +msU +jTH +xny +qAK +xny +xny +mJS +mJS +mJS +oRN +mJS +mJS +tQa +mJS +mJS +dRN +mJS +tQa +jFB +jFB +jFB +jFB +jFB +jFB +jFB +gjg +jFB +jFB +jFB +oJc +sIO +sIO +rNP +wGO +dMB agK agK -lVo -aGm -alj -awC -eeL -hqA -knS +oWe +hTg +pQi +bGm +vTE +oHc +hts ann -bOH -aCE +xcc +ckb ann ann -vsN -eaL -lJz +tLY +nTq +pLh aqi aqi -aFp -biX -taX +dni +bTK +sas aqi aqi -heo -nUz -deR +mAZ +cPx +iuS aqy aqy -aCL -bQm +hnP +fxi aqy -buF -buD -hRK -aql -iWH +uwW +nch +bty +nLF +rre aqi aqi -heo -aqH -nUz -gCO +mAZ +gVb +cPx +lQd aSm -aqT -qje -oaF +vIe +tLb +nhm aqO aqO aSm @@ -91289,44 +73059,44 @@ aSm aSm aqO aqO -bAH -aqP -awg -lxS -lAd +tCg +lyR +cJz +hVS +qFs arh -awn -wdn -aNF -awo +pPT +lFB +sGn +yjr aSq -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp aUy -aiS -aVA -bHb +err +hzg +qHO tYF byo -ppi -ixZ -nJl +ehB +uBn +gTN arr arr arp arp -rox -vff -ayS -iMM +pcx +cKH +rZV +qgH arp -jHF -eaL -aqH -aqI +pyG +nTq +gVb +wSI anw aSa aSa @@ -91373,29 +73143,29 @@ aKi aKp bdK aKt -svH -vxv -ntg -ntg +fmy +dnU +pFY +pFY aKt -ygx -fzy -pCh +etn +ljR +sGG aKt -qVd -kQS -ntg -gSQ -dwM -dwM -opf -nnm +fsh +cqd +pFY +sOS +oMw +oMw +hac +gYv aKt -vcs -utS -bQZ -nAu -xfe +djg +wcU +hff +uqE +pdT aKt aKt aKt @@ -91428,34 +73198,34 @@ ylo "} (107,1,1) = {" adq -aOG -aFG -bne -ggh -aFG -bne +hrW +eeV +uhc +viF +eeV +uhc adq -blp -blt -gki -nrU -bml -bGp +vQi +jQc +rso +vRh +gff +qNg abg -afI -bGI -ahR -bGL -bGM -bLw -bGO -blQ +jiN +lhX +bMl +cHs +djG +kri +mAP +kkQ blM -qgm -aNZ -aNZ -fEP -aNZ +lPb +pEa +pEa +sgj +pEa aTL blB blB @@ -91464,121 +73234,121 @@ blB blB blB adb -njI -njI -njI -njI -njI -axb -njI -sEo -njI -njI -bmX -acC -acD -acD -vMP -afg +foi +foi +foi +foi +foi +mgm +foi +lld +foi +foi +vEI +oOT +vrX +vrX +qAf +dMB agK -ajg -jsK -faT -alj -awC -awJ -awF -bqJ +jbG +hhY +mHF +pQi +bGm +uNQ +vBB +iNf ann -aob -boM -bic +tDy +dUf +sKu aEr -vsN -eaL -lJz +tLY +nTq +pLh aqi -aCt -aQS -bkW -mmh -taX +whm +xXO +ldO +dcu +sas aqi -prG -eaL -deR +iQZ +nTq +iuS aPW -bMw -aAv -aqA +gEC +clf +sKy aqy -buG -aQp -aqj -jAd -sbN -bNW +sYi +mbS +feE +cnK +igL +rRv aqi -aRE -aqH -eaL -aqM +wVf +gVb +nTq +hRl bnM -svD -aqP -lxS -aSl -aSe -vSE -fCN -hPr -kgn -aSo -tpz -tpz -svD -fkX -lvU -aGQ -aND -kNB -aNF -bBp +vrM +lyR +hVS +iGq +tMW +wmB +wUO +kVa +gXE +cTb +mWd +mWd +vrM +ltb +ryO +jRk +fno +fyK +sGn +ohb aSq -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ygF -bqq -aVC -auA +utO +wLo +oYB ahB arr -azC -dQc -ppi -ppi -ppi -tPk -ppi -ppi -axk -axC -axF +wzt +gkq +ehB +ehB +ehB +nvi +ehB +ehB +rZX +jYV +spu arp -cfZ -eaL -aqH -aqI +xEO +nTq +gVb +wSI anw aSa aSa aqo -bWq -bWg -bWr +tRZ +qSO +sUk aJW beh cvO @@ -91618,32 +73388,32 @@ aKi aKn xsU aKt -nKt -jWb -aXW -uIZ -bRo -bQZ -cam -bQW +xYo +poi +qyQ +tJJ +wmd +hff +ekv +qdV aKt -krn -uIZ -uIZ -noW -rGb -rGb -rrs -aKE +fAA +tJJ +tJJ +cEr +gvI +gvI +vRq +hLb aKt aKu aKu -bkp +odX aKu aKu aKt -kPP -lBj +hMU +pJi aKt rTj bdP @@ -91673,19 +73443,19 @@ ylo "} (108,1,1) = {" adq -aPK -aYv -amj -bpv -vka -vka -bKZ -wpk -wpk -xEX -blo -bly -bly +gfz +cVs +mGV +iLx +cvD +cvD +sfl +egU +egU +tyT +mQi +vVy +vVy blM blM adL @@ -91697,10 +73467,10 @@ adL adL blM acF -blD -blD -wuK -blD +rOD +rOD +gNN +rOD acF ajZ ajZ @@ -91720,110 +73490,110 @@ acF acF acF acF -aFz -acD -dky -vMP -cxE +oPI +vrX +xzp +qAf +lpx agK -alh -awF -aMG -alj -awC -awJ -awF -bqJ +sQg +vBB +dxI +pQi +bGm +uNQ +vBB +iNf ann -bOI -wKK -apB -alW -vsN -eaL -aTp +stU +uQG +jqn +kGv +tLY +nTq +jxC aqi -aES -aqj -bkX -aVi -pYS +sGO +feE +fZm +qFb +jIo aqi -aRE -eaL -deR -amZ -aqB -lyu -bQn +wVf +nTq +iuS +mnZ +dLC +pxG +njM aqy -akQ -bQG -qQq -aqj -aqj -buI +uhC +lta +gVI +feE +feE +xRh aqi -heo -aqH -wUx -lvR -avq -lvU -lvU -rCr -jjC -lvU -lvU -lvU -lvU -jjC -lvU -lvU -lvU -jjC -trV -bnQ +mAZ +gVb +jcS +luU +pKM +ryO +ryO +eFO +cFN +ryO +ryO +ryO +ryO +cFN +ryO +ryO +ryO +cFN +qjr +kDA arh -aYL -aNF -aNF -bEl +uVG +sGn +sGn +lfZ arh -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB -aUK -aVt -avz +cXD +pMx +xTb ahB arr -ayR -dQc -oqz -ayS -ayS -aAZ -ayS -ayS +sib +gkq +iLE +rZV +rZV +fzv +rZV +rZV arp arr arr arp -cfZ -eaL -aqH -aqI +xEO +nTq +gVb +wSI aqK ylo ylo aqo -bWe -bWh -uXa +nGR +dLH +iPl bcp aJZ eiG @@ -91868,27 +73638,27 @@ aKt aKt aKt aKt -utS -cam -cZw +wcU +ekv +mmm aKt -kbS -jhz -gZc -hei -wMg -lYt -leg -mab +qzf +noV +bCt +yjM +tYV +sPP +iLp +mje aKt -wKT -ihN -bQZ -srY -rmm -rmm -eGM -rch +qmU +qug +hff +uij +mST +mST +vTG +eEw aKu eiG beg @@ -91919,33 +73689,33 @@ ylo (109,1,1) = {" aad aad -bks -bmu -bhC -bGs -sPx +wgX +mUz +qZS +mcA +gkF adq -xKr -blt -ewN -blo -acQ -acR +rew +jQc +eOn +mQi +sxT +tMs acF -aOr -hFW -hFW -hFW -alX -hFW -hFW -hFW -hFW +jpg +jLk +jLk +jLk +hrb +jLk +jLk +jLk +jLk acF -aOw -aOx -nMP -aOw +lvd +dCb +uCf +lvd aUn acF acF @@ -91954,91 +73724,91 @@ acF acF acF acF -wqr -wqr -wqr -wqr -wqr -aFy -adW -aOt +xAA +xAA +xAA +xAA +xAA +cLW +fAE +hnj acF ajZ acF -puF -acD -acD -vMP -afg +niu +vrX +vrX +qAf +dMB agK -alh -aAy -aAy -alj -awC -flt -awF -lzc +sQg +hVd +hVd +pQi +bGm +pbL +vBB +hfN ann -bhK -oHI -atc +sUo +xGi +lts aEr -vsN -eaL -lJz +tLY +nTq +pLh aqi -aEU -oJB -mJy -oTs -voF +sXX +ohu +xRK +moR +enp aqi -heo -eaL -deR +mAZ +nTq +iuS aPW -buE -qeg -bNN +dWF +qHz +tZZ aqy -bNS -bNT -mJy -oTs -aQT -bNX +heD +kVF +xRK +moR +kRn +otv aqi -heo -aqH -eaL -mFm +mAZ +gVb +nTq +ggD aqO -jJM -ari -ari -lxS -kSa -bAI -xHy -ari -lxS -inT -bAI -xHy -fXx -ari -gHn +jfB +rzu +rzu +hVS +dPc +wWM +ipN +rzu +hVS +nQF +wWM +ipN +cRb +rzu +fRt arh -bqg -bAl -bir -biM +jmn +xuS +xDX +rxU arh -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB ahB @@ -92046,29 +73816,29 @@ aTH ahB ahB arr -ayR -vff -iMM +sib +cKH +qgH arr arr arp arp arp arp -qWX -oQR -oQR -jVW -eaL -aqH -aqI +rxQ +dOH +dOH +mwI +nTq +gVb +wSI aqK ylo aqo aqo -tlD -aJS -uXa +mTu +mUs +iPl bcp aJZ fip @@ -92108,32 +73878,32 @@ aKi aKn aJZ aKt -aVB +mSW aKt -aVB +mSW aKt -bsZ -bEf -cam -bQW +fqI +hLz +ekv +qdV aKt -duW -bEf -sur -bQZ -bQW +nPF +hLz +faP +hff +qdV aKt aKt aKt aKt -bEf -qXL -kOv -kOv -fsS -bQZ -txB -tfz +hLz +nae +lZq +lZq +sGW +hff +eaj +kNv aKu eiG aJZ @@ -92170,120 +73940,120 @@ adq adq aad aad -blr -blt -ewN -blo -bly -bly +sCw +jQc +eOn +mQi +vVy +vVy acF -qCU -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -anH -yeL -yeL -hRQ -yeL -yeL -anH -yeL -yeL -huv -yeL -anH -yeL -yeL -yeL -yeL -yeL -yeL -yeL -akK -fmF +eXh +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +htS +iLM +iLM +dvY +iLM +iLM +htS +iLM +iLM +rQP +iLM +htS +iLM +iLM +iLM +iLM +iLM +iLM +iLM +xhh +nYQ acF ajZ acF -soi -acD -acD -vMP -afg +hBK +vrX +vrX +qAf +dMB aEq -alh -bJj -aMG -alj -awC -aJP -mHM -bqJ +sQg +mNI +dxI +pQi +bGm +nIa +iGP +iNf ann ann -aSM +kaW ann ann bcP -akg +iJX agK aqi aqi aPT -bkY +iGB aPT aqi aqi aqi -dVM +rEp aqi aqy aqy -aCS +ghn aqy aqy aqi aqi -aup +qsb aqi aqi aqi aqi -qLo -aqH -eaL -gCO +xjR +gVb +nTq +lQd aqO aqO -bAd -bAd -guA +ohY +ohY +eQA aqO aqY aqY -ayo -aOm +paU +tXV aqY aqY -aqT -ari -ari -aRZ +vIe +rzu +rzu +pUS arh arh aSq -bBk +uxa arh arh -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp arp arp @@ -92291,29 +74061,29 @@ arp arp arp arp -lhl -vff -nJl +cis +cKH +gTN arr ahB aUr aWK aWK arp -cfZ -aqH -aqH -aqH -eaL -aqH -aqI +xEO +gVb +gVb +gVb +nTq +gVb +wSI aqK ylo aqo -bJH -tvG -aJS -bWs +wHm +vUk +mUs +djZ aJW xsU aJZ @@ -92353,32 +74123,32 @@ bel aKn bdZ aKt -aKC +dLh aKt -aKC +dLh aKt -bta -bEf -cam -bQW +dAg +hLz +ekv +qdV aKt aKt -bEf -cam -bQZ -kKK +hLz +ekv +hff +gLQ aKt -gUX -gHg -isS -fIr -meu -btx -pqt -mqK -mqK -eoZ -lig +vOn +cyi +iJM +oyD +naJ +fIO +wJx +jWg +jWg +xpY +mSJ aKt tzY cMa @@ -92415,120 +74185,120 @@ dKE dKE dKE aak -blr -blt -ewN -aEz +sCw +jQc +eOn +mhl acF acF acF -lZF -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -noK -fmF +eAn +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +sGa +nYQ acF ajZ acF -kYC -oRo -oRo -jxN -afg +uGc +sIO +sIO +xsG +dMB aEq -alh -aAy -aAy -alj -awC -aAy -aAy -miU -ugM -faT -awC -miU -aHb -faT -awC -miU +sQg +hVd +hVd +pQi +bGm +hVd +hVd +pBC +sLV +mHF +bGm +pBC +vRo +mHF +bGm +pBC aqi -aql -aqm -mJy -sbN -aql -aZj -aqm -mJy -bqL +nLF +fzP +xRK +igL +nLF +rDP +fzP +xRK +nyB aqi -bbN -mJy -aRk -bia -gqo -bie -mJy -bPm -bQU -bNY +xgB +xRK +cbA +lnp +jes +fUw +xRK +xzB +oiK +oPE aqi -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aAC -ari -ari -lxS -bqj +xik +rzu +rzu +hVS +gwZ aqY -bAo -ayo -liQ -bBq +whY +paU +cjh +deX aqY -bAT -qLI -bBd -vVJ +eFF +nGk +eog +yel aqY -aAO -rUd -rUd -bAZ +teD +mqf +mqf +uao aqY -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB ahB @@ -92536,29 +74306,29 @@ aTG ahB ahB arr -ayR -vff -ayS -aET +sib +cKH +rZV +lzO ahB -aiS -bEO -aty +err +uzG +lrt arp -cfZ -aqH -ayU -lvR -qRv -aqH -aqI +xEO +gVb +dPo +luU +sGs +gVb +wSI anw ylo aqo -bWc -bWf -aJS -bWt +qzg +iKo +mUs +vhr aJW aJW aJW @@ -92598,26 +74368,26 @@ aKi qVs aKq aKt -aKD +hnH aKt -aKD +hnH aKt aKt -aXY -cam -srY -cau +tQj +ekv +uij +oBK aKt aKu -cam -bAE +ekv +fxT aKu aKt -nrd -nAu -mqK -mqK -xfe +oQW +uqE +jWg +jWg +pdT aKt aKt aKu @@ -92660,15 +74430,15 @@ asA asA aPL bky -blr -blt -ewN -blz +sCw +jQc +eOn +dxW acF -blG -afZ -lON -acG +vHd +uqo +tSs +hEo aaG aaG aaG @@ -92694,128 +74464,128 @@ aaG aaG aaG aaG -acG -noK -blJ +hEo +sGa +bmg acF acF acF -puF -acD -acD -vMP -afg +niu +vrX +vrX +qAf +dMB agK -alh -awF -aMG -alj -awE -qZW -qZW -qZW -kRB -qZW -aAd -qZW -qZW -qZW -aAd -qZW -aqz -xbX -xbX -qZs -xbX -xbX -xbX -xbX -toG -sbN +sQg +vBB +dxI +pQi +wJR +iFR +iFR +iFR +pHr +iFR +dnr +iFR +iFR +iFR +dnr +iFR +iNe +gBl +gBl +qTv +gBl +gBl +gBl +gBl +kJq +igL aqi -bbU -mJy -aqj -aqj -aqj -aqj -mJy -aqj -aqj -rZJ +uAn +xRK +feE +feE +feE +feE +xRK +feE +feE +yeH aqi -lvg -aqH -eaL -gCO +sWc +gVb +nTq +lQd aqO -aym -kdn -qje -oaF -vEY +iMV +nMJ +tLb +nhm +hmJ aqY -bAp -ayo -liQ -bBr +qqe +paU +cjh +viP bnO -aDj +teT aSn aSn -aDj +teT bnO -vKN -ayo -ayo -bBs +sVq +paU +paU +pis aqY -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp ahB -aUZ -aVJ -aty +sxj +jLW +lrt ahB arr -ayR -dQc -ppi -ppi +sib +gkq +ehB +ehB hKA -bEK -aWM -bEW +dCz +deB +bTY arp -cfZ -aqH -eaL -aqI -aqI -snA -vnH +xEO +gVb +nTq +wSI +wSI +hfH +fDo anw ylo aqo -bKb -msp -aJS -bWi -bCR +tXN +vxw +mUs +uCE +lHE aKa -tlD -jnX -bUN -bop -sKZ -aJY -aUS -aJX -aJY -bbo +mTu +jzF +tmC +iex +jJZ +mDO +lYW +cWe +mDO +mmY aKi aKi aKi @@ -92843,23 +74613,23 @@ aKi aKo aKh aKu -fmR -aXR -bbV -aKJ +xXb +fjW +fjD +xVl aKt -ihN -cam -bQZ -srY -aYr -ihN -cam -bQZ -srY -aYr -qpC -bQW +qug +ekv +hff +uij +qPp +qug +ekv +hff +uij +qPp +wVX +qdV aKt aKt aKt @@ -92900,167 +74670,167 @@ ylo aak aak arc -aFs -aOe -aPB +oOI +jRH +mOO arc bky -blr -blt -ewN -blt -aGl -acG -acG -noK -acG +sCw +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaG aaZ abd hBM -abj -abl +fzz +cUx abd hBM abt aaZ abd -aby -abB +cTg +eDX aaZ abd hBM abt aaZ -abZ -ace +yiA +nJs abt aaZ aaG aaG -acG -noK -fmF +hEo +sGa +nYQ acF ajZ acF -aFz -acD -acD -vMP -cxE +oPI +vrX +vrX +qAf +lpx agK -alh -aAy -aAy -alj -awC -alj -alj -alj -rKy -alj -alj -alj -rZU -lLO -lLO -lLO +sQg +hVd +hVd +pQi +bGm +pQi +pQi +pQi +eKX +pQi +pQi +pQi +oEA +lEa +lEa +lEa aqi -cJS -cJS -aQT -nxZ -nxZ -nxZ -oJB -axO -xbX -xbX -xbX -aAw -aPY -aPY -ksT -aPY -ihD -ksT -xbX -xbX -aqz -lvR -lvR -uVe -gCO +tny +tny +kRn +sgp +sgp +sgp +ohu +nyf +gBl +gBl +gBl +tge +tZl +tZl +wwP +tZl +frD +wwP +gBl +gBl +iNe +luU +luU +eyt +lQd aqO -rtN -kdn -aqP -lxS -vEY +smq +nMJ +lyR +hVS +hmJ bnK -bAu -ayo -liQ -arb -rUd -rUd -rUd -rUd -rUd -rUd -vCR -ayo -xnk -bBt +hpV +paU +cjh +lbV +mqf +mqf +mqf +mqf +mqf +mqf +rwr +paU +jTh +jdr aSn -cSI -aqH -eaL -hhA +gsH +gVb +nTq +xvl arp upe -bqq -aVT -auA +utO +rXk +oYB ahB arr -rox -vff +pcx +cKH arr arr ijA -bEK -aWN -bEX +dCz +smM +qhp arp -pir -aqH -eaL -aqI +czW +gVb +nTq +wSI anw anw anw anw ylo aqo -bWd -erh -jhN -ltl -bbk -bbl -tlD -aJS -riE -bXH -bXG -bXH -tuu -aJS -aJS -aKf +sUn +pbP +wnY +mZk +pNs +hNM +mTu +mUs +lTE +fAx +ixJ +fAx +jyq +mUs +mUs +rYG aKi aKi aKi @@ -93087,24 +74857,24 @@ aKi aKi aKi aKi -bkd -nCh -mfm -bbV -bbV -bzq -bQZ -cao -lsk -kOv -kOv -mTz -jdV -qAG -kOv -kOv -iqp -lCv +lkW +hlH +pfY +fjD +fjD +vhG +hff +ubC +lXB +lZq +lZq +vex +vrH +xqG +lZq +lZq +fAV +rDt aKu bdZ aJZ @@ -93145,70 +74915,70 @@ ylo aak dKE arc -aFs -aOe -aPB +oOI +jRH +mOO arc aak -bls -blt -gki -wpk -oqs -yeL -yeL -gqE -acG +rdQ +jQc +rso +egU +ueF +iLM +iLM +uWR +hEo aaG aaI -aaN -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -abo -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -abV +hlK +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +xcz +qWc +qWc +qWc +qWc +qWc +qWc +qWc +qWc +rhn acn aaG -acG -noK -fmF +hEo +sGa +nYQ acF ajZ acF -puF -acD -acD -vMP -afg +niu +vrX +vrX +qAf +dMB agK -alh -bJj -aMG -alj -awC -bJa -awF -feg -bgt -awF -awF -alj -bqJ +sQg +mNI +dxI +pQi +bGm +fPq +vBB +pIF +qCg +vBB +vBB +pQi +iNf apI apI apI @@ -93219,71 +74989,71 @@ apI apI apI apI -roh -mJy -aqj -aqj -aqj -aqj -aPZ -aPZ -kQd -uyw -aPZ -pvo -aqj -oTs +iLk +xRK +feE +feE +feE +feE +woj +woj +gVL +xNT +woj +nQW +feE +moR aPT -xHV -aqH -eaL -gCO +iUz +gVb +nTq +lQd aqO -ayz -ari -bpW -lxS -aEY +iAv +rzu +eND +hVS +knc aqY -bAv -ayo -pWj -shq -jcA -jcA -jcA -aAL -wFU -wFU -wFU -sgl -ayo -bqn +cmR +paU +rwx +kWs +xkV +xkV +xkV +cYW +vDr +vDr +vDr +oMn +paU +jPB aSn -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp aUC -ath -aVX -eKL +ciM +lxw +eSo tYF byp -ppi -dNd +ehB +ftz arr bEF ijA -bEK -aWT -bEW +dCz +rir +bTY arp -cfZ -aqH -eaL -aqI +xEO +gVb +nTq +wSI aqK ylo ylo @@ -93291,21 +75061,21 @@ ylo aqo aqo aJW -bbi -hHn +sza +ndv aJW aJW aJW -tlD -aJS -msp -aJS -aKf -aJS -aJS -riE -bXH -bXG +mTu +mUs +vxw +mUs +rYG +mUs +mUs +lTE +fAx +ixJ rwo rwo rwo @@ -93332,24 +75102,24 @@ rwo rwo btk rwo -caf -etb -kmf -caf -caf -kOv -kOv -cap -aKE -bQZ -bQZ -bQZ -bQZ -cam -bQZ -bQZ -cam -lCv +kGT +lYy +eXd +kGT +kGT +lZq +lZq +jcQ +hLb +hff +hff +hff +hff +ekv +hff +hff +ekv +rDt aKu aJZ bdS @@ -93390,23 +75160,23 @@ ylo aak dKE arc -aFw -aOe -aFw -aPQ -bln -blt -blt -ewN -blt -aGl -acG -acG -noK -acG +hNb +jRH +hNb +qpW +uQE +jQc +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaJ -aaO +dYV aaG aaX aaG @@ -93426,131 +75196,131 @@ aaG aaG aaX aaG -bBX +fau aco aaG -acG -noK -fmF +hEo +sGa +nYQ acF ajZ aUn -puF -acD -acD -vMP -afg +niu +vrX +vrX +qAf +dMB agK -kgD -lLO -gbw -alj -awC -aMJ -aBb -aBb -aBb -aBb -aBb -alj -bqJ +wqO +lEa +dbK +pQi +bGm +etr +vTk +vTk +vTk +vTk +vTk +pQi +iNf apI -avh -aQq -dPK -dPK -dPK -dPK -aQq -oKg +qEC +hXy +jTZ +jTZ +jTZ +jTZ +hXy +woB apI -roh -mJy -oTs +iLk +xRK +moR aqi -oJB -aqj -jAd -aqj -aqj -aqj -aqj -mJy -aqj -bQX +ohu +feE +cnK +feE +feE +feE +feE +xRK +feE +ezl aPT -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aym -aYK -bqf -lxS -vEY +iMV +jFe +tlG +hVS +hmJ aqY -sxB -ayo -liQ -ayo -ayo -ayo -cYj -irP -ayo -ayo -ayo -wji -ayo -qou +bwd +paU +cjh +paU +paU +paU +mnb +nAn +paU +paU +paU +ucB +paU +pDZ aqY -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp hCY -atj -aVt -avz +yis +pMx +xTb ahB arp -wOt -jhO +kws +hRL arp bEG vTT -atj -bES -avz +yis +fOw +xTb arp -meC -aqH -eaL -aqI +gwn +gVb +nTq +wSI aqK ylo ylo ylo aqo -bhX -aJU -sVO -vhU -aJU -dui +wMi +gHm +ioO +xuC +gHm +pMV aJW -tlD -aJS -msp -aJY -aKf -aJY -aJX -skk -aJY -aKf +mTu +mUs +vxw +mDO +rYG +mDO +cWe +vIa +mDO +rYG jlU aKi aKi @@ -93578,23 +75348,23 @@ aKi rRR aKj aKu -dwa -aKH -aOU -oKr +oMJ +gQW +jmw +fDL aKt -utS -cam -bQZ -nAu -aYs -utS -bQZ -cam -nAu -aYs -nzS -bQW +wcU +ekv +hff +uqE +cyJ +wcU +hff +ekv +uqE +cyJ +ocS +qdV aKt aKt aKt @@ -93635,23 +75405,23 @@ ylo aak aak arc -aFs -aOe -aPB +oOI +jRH +mOO arc aak -tBh -hDl -ewN -blt -aGl -acG -acG -noK -acG +iXv +tSm +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG -aaM -aaO +nbv +dYV aaG aaG aaG @@ -93671,89 +75441,89 @@ aaG aaG aaG aaG -bBX -acp +fau +jga aaG -acG -aFB +hEo +qwQ acF adI adI adI -bkB -bkB -bkB -mrr -bkB +jHz +jHz +jHz +hfh +jHz agL agL agL -aGn -alj -awC -aAy -awF -aUb -awF -bgt -awF -alj -bqJ +iBH +pQi +bGm +hVd +vBB +qmm +vBB +qCg +vBB +pQi +iNf apI -aau -axp -aqa -aEp -aEp -aEp -axB -apZ +hYG +kZB +mbV +cTY +cTY +cTY +fdt +lTd bnl -aqm -mJy -aRd +fzP +xRK +fHr aqi -bhN -bhV -big -bLA -bLA -bLB -aqj -mJy -bag -bNZ +pzU +kkS +cyO +gva +gva +rPQ +feE +xRK +uds +kkO aqi -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aym -ari -ari -lxS -vEY +iMV +rzu +rzu +hVS +hmJ aqY -bqh -ayo -liQ -ara -uFr -cEI -ayo -liQ -ara -uFr -bAA -bAA -bAA -kWe +heK +paU +cjh +rgd +qVt +vCL +paU +cjh +rgd +qVt +hJe +hJe +hJe +jmr aqY -cSI -aqH -eaL -aro +gsH +gVb +nTq +qfN arp arp ahB @@ -93761,8 +75531,8 @@ aTH ahB qoq arp -brq -bqw +oxi +fVF arp bEH bEH @@ -93770,26 +75540,26 @@ aWm bET arp arp -cfZ -aqH -eaL -aqI +xEO +gVb +nTq +wSI aqK ylo ylo ylo aqo -bhY -aJX -msp -aJS -bWj -uXa +qGq +cWe +vxw +mUs +yiR +iPl aJW -tlD -aJS -msp -uNW +mTu +mUs +vxw +iFf aJW aJW aKg @@ -93825,24 +75595,24 @@ aKq aKt aKt aKu -bcC +gVc aKu aKt -aXY -cam -nAu -btl +tQj +ekv +uqE +udd aKt aKu -bQZ -bBQ +hff +dUZ aKu aKt -nrd -srY -bEy -rmm -tOo +oQW +uij +fwL +mST +wjy aKt aKt aKu @@ -93880,23 +75650,23 @@ ylo ylo bky asA -aFs -aOe -aPB +oOI +jRH +mOO asA bky -aRN -blt -hhb -aXM +rNn +jQc +ghM +giH aUn -dwl -aaD -noK -acG +lMM +sTa +sGa +hEo aaG -aaQ -aaO +fGy +dYV aaG aaG aaG @@ -93916,47 +75686,47 @@ aaG aaG aaG aaG -bBX -acq +fau +lzr aaG -acG -noK -aOw -bkx -asP -bkA -adU -adU -adU -csI -adU -aLH -alj -aLI -alj -alj -awC -aMJ -aBb -aBb -aBb -aBb -aBb -alj -bqJ +hEo +sGa +lvd +mWQ +qeK +qVP +eiX +eiX +eiX +fNU +eiX +nzU +pQi +rXL +pQi +pQi +bGm +etr +vTk +vTk +vTk +vTk +vTk +pQi +iNf apI -aPX -aqa -aqa -aEt -aEt -aEt -duk -aqa -asb -aqj -mJy -pYS +dmy +mbV +mbV +vLe +vLe +vLe +lsj +mbV +nRe +feE +xRK +jIo aqi aqi aqi @@ -93964,30 +75734,30 @@ aqi aqi aPT aPT -aGR -dVM +qcQ +rEp aPT aPT aqi -aRE -aqH -eaL -gCO +wVf +gVb +nTq +lQd aqO aqO -bAd -bAd -guA +ohY +ohY +eQA aqO aqY -guG -ayo -liQ -cTc +eHk +paU +cjh +cIN aqY bnO -ayo -aCY +paU +obg bnO aqY aSn @@ -93995,11 +75765,11 @@ aSn aSn aqY aqY -cSI -aqH -eaL -aro -nQZ +gsH +gVb +nTq +qfN +hLG arp arp arp @@ -94014,33 +75784,33 @@ arp arp arp arp -nQZ -cfZ -aqH -eaL -aqI +hLG +xEO +gVb +nTq +wSI anw aqK aqK aqK aqo -bUM -aJX -msp -aJS -bWk -bWm -hmO -vyH -aJS -msp -olm +eNq +cWe +vxw +mUs +rwe +oDH +wBp +feB +mUs +vxw +day aJW -bJQ -aQl -bKt -bKB -bKC +nXw +muU +hOW +oYb +vgN aJW bcq bcq @@ -94068,32 +75838,32 @@ aJZ rTj bdP aKt -vQA -mJm -lIu -mqL +jsz +cim +pZb +qmk aKu -jWB -cam -bQW +gUZ +ekv +qdV aKt aKt -bEf -bQZ -cam -vJz +hLz +hff +ekv +wDZ aKt -dmR -tjT -tjT -dIo -iYG -aYr -leW -xlg -cfh -jYY -tKI +xdy +szz +szz +rLO +tDN +qPp +nla +ozW +rtg +rhC +cuT aKt bdQ bdZ @@ -94125,23 +75895,23 @@ ylo ylo bky asA -aFs -aOe -aPB +oOI +jRH +mOO asA bky -aRN -blt -hhb -aXP +rNn +jQc +ghM +kJx acF -roL -aaD -noK -acG +sTB +sTa +sGa +hEo aaG aaI -aaO +dYV aaG aaG aaG @@ -94161,135 +75931,135 @@ aaG aaG aaG aaG -bBX +fau acn aaG -acG -noK -aPE -bkx -adU -bkA -adU -aOz -aOz -vhg -adU -aLH -alj -aMJ -alj -alj -awC -bJa -awF -bgt -awF -bgt -bgt -alj -bqJ +hEo +sGa +twl +mWQ +eiX +qVP +eiX +kwz +kwz +gzc +eiX +nzU +pQi +etr +pQi +pQi +bGm +fPq +vBB +qCg +vBB +qCg +qCg +pQi +iNf apI -aFY -aqa -aqa -aEp -aEp -aEp -sNG -kRO -ufN -xbX -toG -sbN +iAW +mbV +mbV +cTY +cTY +cTY +nRQ +vod +isq +gBl +kJq +igL aqi -bhO -bns -bns +swV +mCR +mCR aqi -bih -buP -aqj -mJy -bPj -fTx +xnF +bJy +feE +xRK +vtW +qFG aqi -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aAC -ari -ari -lxS -bqk +xik +rzu +rzu +hVS +qLv aqY -qCi -ayo -liQ -cTc +jAf +paU +cjh +cIN aqY -cSI -aqH -eaL -aqM -kGJ -tFp -tFp -tFp -aUw -tFp -kIz -aqH -eaL -jja -oQR -oQR -oQR -oQR -oQR -oQR -oQR -xFk -oQR -oQR -oQR -oQR -oQR -oQR -oQR -oQR -jVW -aqH -eaL -aqI -oiI -aSb -oYY -aSb -mGU -vyH -aJY -msp -aJS -bWw -uAW -bWv -aJY -aJS -msp -aVc +gsH +gVb +nTq +hRl +fxe +xee +xee +xee +woe +xee +lAN +gVb +nTq +xNV +dOH +dOH +dOH +dOH +dOH +dOH +dOH +dBs +dOH +dOH +dOH +dOH +dOH +dOH +dOH +dOH +mwI +gVb +nTq +wSI +fCE +nyj +uEA +nyj +tCD +feB +mDO +vxw +mUs +wJD +tLK +dyc +mDO +mUs +vxw +oqj aJW -aVp -bJS -aJX -aJX -jeE -aVH -msY -caX -bKc +jFX +iJj +cWe +cWe +rte +vas +lZW +gRJ +gfm bcr bdW aKi @@ -94313,32 +76083,32 @@ bdP rTj aJZ aKu -bEf -aKE -aKE -srY +hLz +hLb +hLb +uij aKu -ygx -cam -bQW +etn +ekv +qdV aKt -vaw -ihN -bQZ -cam -ngx +rnq +qug +hff +ekv +pkM aKt aKt aKt aKt -bEf -vgl -kOv -kOv -fsS -bQZ -bQZ -bQW +hLz +mKU +lZq +lZq +sGW +hff +hff +qdV aKu aJZ laE @@ -94370,23 +76140,23 @@ ylo ylo aak arc -aFs -aOe -aPB +oOI +jRH +mOO arc aak -tZN -hDl -ewN -aXQ +pIh +tSm +eOn +iwr acF -blI -aaD -dvI -acG +uYl +sTa +dju +hEo aaG aaJ -aaO +dYV aaG aaG aaG @@ -94396,7 +76166,7 @@ aaG aaG aaG aaG -drp +wpK aaG aaG aaG @@ -94406,135 +76176,135 @@ aaG aaG aaG aaG -bBX +fau aco aaG -acG -rkK -wya -fQC -rxd -xHd -rxd -mCj -aOA -iJz -rxd -dxS -qZW -uSy -qZW -qZW -oUz -taT -alj -alj -alj -alj -alj -alj -bqJ +hEo +wqG +iMl +udr +sEv +obE +sEv +vmU +jFz +lLg +sEv +mpr +iFR +uuZ +iFR +iFR +urR +vmo +pQi +pQi +pQi +pQi +pQi +pQi +iNf apI -aau -axp -aqa -aEt -aEt -aEt -duk -iYR +hYG +kZB +mbV +vLe +vLe +vLe +lsj +vfM apI -oJB -axO -xbX -bNO -xbX -pwd -xbX -bNO -xbX -xbX -xbX -toG -aqj -aYa +ohu +nyf +gBl +lQb +gBl +dxT +gBl +lQb +gBl +gBl +gBl +kJq +feE +wGt aPT -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aym -ari -qje -trV -vEY +iMV +rzu +tLb +qjr +hmJ aqY -qCi -ayo -liQ -cTc +jAf +paU +cjh +cIN aSn -cSI -aqH -wUx -lvR -lvR -lvR -sDx -kuU -lvR -lvR -lvR -kuU -mer -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -mer -lvR -lvR -lvR -lvR -lvR -bXG -bXH -bXH -bXK -mUA -bXH -mUA -bXH -bXH -bXH -bVI -jeE -bbh -gcW -aJS -aJS -aJS -aJS -aJS -aJS -bJW -bKw +gsH +gVb +jcS +luU +luU +luU +ccH +vEl +luU +luU +luU +vEl +gOm +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +gOm +luU +luU +luU +luU +luU +ixJ +fAx +fAx +mqA +coP +fAx +coP +fAx +fAx +fAx +uhh +rte +txm +ylb +mUs +mUs +mUs +mUs +mUs +mUs +mWU +hpj bcr aKk bdU @@ -94558,32 +76328,32 @@ bdP eiG bdZ aKu -gdO -nhG -kOv -kOv -bce -kOv -iqp -bQW +cdh +fJb +lZq +lZq +qxm +lZq +fAV +qdV aKu -hWW -bQZ -nhG -iqp -bQW +vPt +hff +fJb +fAV +qdV aKu -hvn -tOo +iZW +wjy aKt -lGj -utp -bQZ -nDc -qtI -mqK -mqK -xfe +pjA +pmN +hff +nev +xUw +jWg +jWg +pdT aKu beo eiG @@ -94615,23 +76385,23 @@ ylo ylo bky asA -aFs -aOe -aPB +oOI +jRH +mOO asA bky -aRN -kPC -ewN -aXP +rNn +rzV +eOn +kJx acF -roL -aaD -noK -acG +sTB +sTa +sGa +hEo aaG aaR -aaO +dYV aaG aaG aaG @@ -94651,135 +76421,135 @@ aaG aaG aaG aaG -abX +vif acr aaG -acG -noK -aPE -bkx -adU -bkA -adU -aOz -vhg -aOz -adU -aLH -alj -aMJ -alj -alj -awC -alj -rZU -lLO -aJh -lLO -lLO -lLO -msu +hEo +sGa +twl +mWQ +eiX +qVP +eiX +kwz +gzc +kwz +eiX +nzU +pQi +etr +pQi +pQi +bGm +pQi +oEA +lEa +uza +lEa +lEa +lEa +qxu apI -cQR -aqa -aqa -aqa -qIr -upA -duk -hBo +mZP +mbV +mbV +mbV +qLR +nFb +lsj +pXI apI -dYJ -mJy -oTs +eTz +xRK +moR aqi -bQe -mJy -blb +tpd +xRK +jxF aqi -bqZ -aqj -aqn -mJy -aqj -pYS +wHG +feE +gXy +xRK +feE +jIo aPT -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -aym -ari -aqP -ari -vEY +iMV +rzu +lyR +rzu +hmJ aqY -kSt -ayo -wji -cyX +oBb +paU +ucB +bIA aSn -cSI -aqH -eaL -aqH -aqH -aqH -aqH -eaL -eqM -eqM -aqH -eaL -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aqH -aKf -aJS -aJS -aJS -msp -aJS -tZp -aJS -aJS -aJS -bVJ -mFE -xzX -taL -bXH -bXH -qMT -aJS -aJS -aJS -bJT -bWp +gsH +gVb +nTq +gVb +gVb +gVb +gVb +nTq +god +god +gVb +nTq +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +gVb +rYG +mUs +mUs +mUs +vxw +mUs +hpL +mUs +mUs +mUs +xZp +qaL +qZL +dDU +fAx +fAx +tAT +mUs +mUs +mUs +cks +eOx bcr bdY bed @@ -94803,32 +76573,32 @@ bdQ diD aJZ aKu -bEf -aKE -aKE -nAu +hLz +hLb +hLb +uqE aKu -wPz -cam -bQW +hZx +ekv +qdV aKu -gtI -vFf -bQZ -vgl -qlt -pAB -fcd -aYi +sWV +pwU +hff +mKU +hRq +wPC +kfv +dpz aKt xFK aKt -bQZ +hff aKt xFK aKt -wop -trU +nSu +erK aKt aJZ eiG @@ -94860,23 +76630,23 @@ ylo ylo bky asA -aFs -sBH -aPB +oOI +iNj +mOO asA bky -aRN -blt -ewN -sjR +rNn +jQc +eOn +hXo aUn -qZj -aaD -noK -acG +gAO +sTa +sGa +hEo aaG -aaV -aaO +yil +dYV aaG aaG aaG @@ -94896,28 +76666,28 @@ aaG aaG aaG aaG -bBX -acs +fau +jlM aaG -acG -noK -aOw -bkx -asR -bkA -adU -adU -mLR -adU -adU -aLH -bcO -aNJ -alj -alj -awC -alj -bqJ +hEo +sGa +lvd +mWQ +oQC +qVP +eiX +eiX +kPE +eiX +eiX +nzU +kON +jyW +pQi +pQi +bGm +pQi +iNf agK agK aEq @@ -94925,106 +76695,106 @@ aEq aEq agK apI -aPX -aqa -aqa -hKc -tav -aqa -duk -hBo +nCC +mbV +mbV +tEV +ydp +mbV +lsj +pXI apI -bhT -mJy -aRd +tak +xRK +fHr aqi -bQf -mJy -bQp +klY +xRK +sgY aqi -blj -aqj -aRm -guq -aqj -aRd +eRv +feE +cjx +nqQ +feE +fHr aqi -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO -ayz -ari -bpW -ari -aEY +iAv +rzu +eND +rzu +knc aqY -qCi -ayo -ayo -cTc +jAf +paU +paU +cIN aSn -cSI -aqH -eaL -aqI -aqI -aqI -aqI -vyY -aqI -aqI -rWE -nUz -aqH -aqI -aqI -aqI -snA -aqI -aqI -aqI -aqH -aqH -aqH -jai -ybv -ybv -ybv -ybv -ybv -xbu -aqH -aqH -aqH -aqI -aqI -aSb -oYY -aSb -aKf -uRw -aJY -aJS -msp -bWb -bWj -bWu -aJY -aJS -msp -aVc +gsH +gVb +nTq +wSI +wSI +wSI +wSI +hby +wSI +wSI +sle +cPx +gVb +wSI +wSI +wSI +hfH +wSI +wSI +wSI +gVb +gVb +gVb +kCG +eiL +eiL +eiL +eiL +eiL +qsX +gVb +gVb +gVb +wSI +wSI +nyj +uEA +nyj +rYG +cFB +mDO +mUs +vxw +muR +yiR +kuI +mDO +mUs +vxw +oqj aJW -aVp -bJT -aJX -aJX -uNW -aVI -ozo -bKv -bKx +jFX +cks +cWe +cWe +iFf +ddF +jKS +izI +gWm bcr bdS gqV @@ -95048,29 +76818,29 @@ bdQ rTj bdP aKt -rGc -yji -ipE -wfL +fWL +jYT +dfI +spd aKu -jWB -cam -bQW +gUZ +ekv +qdV aKt -tfP -aYs -ksk -ksk -njL +gNa +cyJ +wrS +wrS +hmx aKu -lmx -lCv +fjd +rDt aKt -iOL +fkt aKu -bQZ +hff aKu -hjq +hTh aKt aKt aKt @@ -95105,23 +76875,23 @@ ylo aak aak arc -aFs -wjb -aPB +oOI +txT +mOO arc aak -gze -blt -ewN -blt -aGl -acG -acG -noK -acG +mFa +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG -aaY -aaO +nKD +dYV aaG aaG aaG @@ -95141,131 +76911,131 @@ aaG aaG aaG aaG -bBX -act +fau +wwu aaG -acG -aFB +hEo +qwQ acF adI adI adI ael -awi +lhW ael -awi +lhW ael agL agL agL -xWH -alj -awC -alj -bqJ +eST +pQi +bGm +pQi +iNf agK -alF -hqA -hqA -hqA -kxs +tip +oHc +oHc +oHc +vTf apI -aau -axp -aqa -aPS -aPS -aPS -duk -apZ +hYG +kZB +mbV +jZe +jZe +jZe +lsj +lTd apI -aqm -mJy -pYS +fzP +xRK +jIo aqi -bQg -mJy -bQq +wLO +xRK +txw aqi -aYN -aqj -bQL -bad -aqj -pYS +iGp +feE +mRa +tIz +feE +jIo aqi -bqs -aqH -eaL -gCO +eLi +gVb +nTq +lQd aqO -aym -ari -bqf -hBA -vEY +iMV +rzu +tlG +rUe +hmJ aqY -qCi -ayo -ayo -cTc +jAf +paU +paU +cIN aSn -cSI -aqH -eaL -aqI -aSb -gvi +gsH +gVb +nTq +wSI +nyj +sAU anw anw anw -aiZ -aqI -eaL -eqM -aqI -aiZ +nbx +wSI +nTq +god +wSI +nbx anw anw anw -snP -gPo -lgx -lgx -lgx -xRb -nxv -nde -crC -nde -iQY -hTr -lgx -lgx -lgx -ybv +whg +eCj +wtp +wtp +wtp +gKk +kyK +srE +dXk +srE +tEn +dbB +wtp +wtp +wtp +eiL anw aqK aqK aqK aqo -bXI -aJX -aJS -msp -nJx -bWn -eEJ -aJV -uRw -qqY -mmy +tEb +cWe +mUs +vxw +keb +mLh +okZ +vEj +cFB +gdi +snd aJW -bJR -bJU -bKj -bKk -bKl +wbA +ibo +wnn +fIh +nmz aJW bcq bcq @@ -95298,9 +77068,9 @@ aKt aKt aKt aKt -bEf -hoh -fUp +hLz +eom +crz aKt aKt aKt @@ -95308,14 +77078,14 @@ aKt aKt aKu aKt -tdH +gym aKu aKt -aXY -qQe -bQZ -qQe -aYi +tQj +fTg +hff +fTg +dpz aKt bdS bdP @@ -95350,23 +77120,23 @@ ylo aak dKE arc -aFw -wjb -jyK -aPQ -bln -blt -blt -ewN -blt -aGl -acG -acG -noK -acG +hNb +txT +fZy +qpW +uQE +jQc +jQc +eOn +jQc +omG +hEo +hEo +sGa +hEo aaG aaJ -aaO +dYV aaG aaX aaG @@ -95386,124 +77156,124 @@ aaG aaG aaX aaG -bBX +fau aco aaG -acG -noK -fmF +hEo +sGa +nYQ adI blN adI -aUp -aGk -ahH -aQa -mDe +djD +eQT +jfV +jDk +gWi agL -ajg -hqA -faT -prB -awC -alj -miU +jbG +oHc +mHF +rGl +bGm +pQi +pBC agK -bnm -alj -ouk -bqM -buz +gcQ +pQi +wnb +eek +vOx apI -aFY -aqa -aqa -aEs -aEs -aEs -sNG -kRO -ufN -xbX -toG -pYS +dpk +mbV +mbV +bCT +bCT +bCT +nRQ +vod +isq +gBl +kJq +jIo aqi -bQh -ntx -bQr +hBa +bkI +dhL aqi -bpM -aqj -bQM -aSS -aqj -pYS +oPi +feE +wgs +ugd +feE +jIo aqi -heo -aqH -eaL -caA +mAZ +gVb +nTq +nIM aqO -ayD -noy -noy -noy -gnC +pyk +kza +kza +kza +dOD aqY -gQL -aqZ -aqZ -tGG +xAx +nxy +nxy +ssB aqY -sPI -aqH -eaL -aqI -hOV +eXQ +gVb +nTq +wSI +cHf anw anw aSa anw anw -aws -eaL -eqM -aSb +ffW +nTq +god +nyj anw anw aSa anw anw -uIX -aqI -aJu -aqI -pSc -aSb +xbp +wSI +sRM +wSI +ctC +nyj anw anw anw -aSb -aqI -aqI -aJu -aqI -pgC +nyj +wSI +wSI +sRM +wSI +rUg anw ylo ylo ylo aqo -bVw -aJX -aJS -msp -bWx -ouM +nsb +cWe +mUs +vxw +kGD +tdo aJW aJW -bbj -nuF +cpg +cZv gLs gLs gLs @@ -95538,14 +77308,14 @@ bcL dzV aKt aKt -bjg -bji -bpz -bsX +ibk +nrv +dfL +psw aKu -jWB -cam -cZw +gUZ +ekv +mmm aKt gvs jRw @@ -95556,11 +77326,11 @@ aKi gtX aKi aKt -vcs -hUR -mqK -hUR -xfe +djg +mhu +jWg +mhu +pdT aKt beg rUq @@ -95595,99 +77365,99 @@ ylo aak dKE arc -aFs -aOe -aPB +oOI +jRH +mOO arc aak -qEk -blt -hMR -wpk -oqs -yeL -yeL -gqE -acG +osD +jQc +vTu +egU +ueF +iLM +iLM +uWR +hEo aaG aaR -aaP -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abY +sSV +knj +knj +knj +knj +knj +knj +knj +knj +knj +knj +ryx +knj +knj +knj +knj +knj +knj +knj +knj +hNf acr aaG -acG -noK -fmF +hEo +sGa +nYQ adI blN adI -bJx -adU -bZy -adU -bZz +kZN +eiX +mru +eiX +vRJ agL -ayC -alj -alj -mUo -aAd -qZW -qZW -amp -qZW -qZW -oUz -boV -bOc +jhc +pQi +pQi +qro +dnr +iFR +iFR +guW +iFR +iFR +urR +iru +dUv apI -aPX -aqa -aqa -aPS -aPS -aPS -duk -aqa -asb -aqj -mJy -pYS +izD +mbV +mbV +jZe +jZe +jZe +lsj +mbV +nRe +feE +xRK +jIo aqi -bQi -aqj -bQr +edh +feE +dhL aqi -bpN -aqj -aqj -aqj -aqj -pYS +yeg +feE +feE +feE +feE +jIo aqi -heo -aqH -eaL -gCO +mAZ +gVb +nTq +lQd aqO aqO aSm @@ -95700,55 +77470,55 @@ aSn aSn aqY aqY -cSI -aqH -eaL -aqI -mCD +gsH +gVb +nTq +wSI +crY aqK ylo aSa ylo aqK -aSb -eaL -aqH -aSb +nyj +nTq +gVb +nyj aqK ylo aSa ylo anw -aqI -aqQ -nJt -aqX -aqI +wSI +xTR +mXN +rTc +wSI anw anw ylo anw anw -aqI -aqQ -nJt -aqX -aqI +wSI +xTR +mXN +rTc +wSI anw ylo ylo ylo aqo -bVQ -aJV -uRw -qqY -aJV -mmy +vnS +vEj +cFB +gdi +vEj +snd aJW -bUU -cec -rfQ +rgw +wpF +obK gLs bUC bYS @@ -95782,15 +77552,15 @@ aKi aKn eiG aKu -btv -ihN -aKE -aKE -srY +uxm +qug +hLb +hLb +uij aKu -ygx -cam -srY +etn +ekv +uij aKt qQg qQg @@ -95840,145 +77610,145 @@ ylo aak aak arc -aFs -aOe -aPB +oOI +jRH +mOO arc bky -blr -blt -blt -blt -aGl -acG -acG -noK -acG +sCw +jQc +jQc +jQc +omG +hEo +hEo +sGa +hEo aaG aaG abc abh iem -abk -abm +vBE +tNm abh iem abu abc abh -abz -abC +nSH +lNn abc abh iem abu abc -aca -acf +wct +csC abu abc aaG aaG -acG -noK -fmF +hEo +sGa +nYQ adI blN adI -iLw -vKa -mNe -uKV -mEG +ter +vGX +gqy +ezd +vHg agL -aGh -nen -awF -aMH -awF -mwa -aGC +nBA +tPv +vBB +sHw +vBB +rhj +cor agK -boL -kkI -awC -bqK -bOd +uhD +sCQ +bGm +fdo +kGR apI -aau -axp -aqa -aEs -aEs -aEs -orz -iYR +hYG +kZB +mbV +bCT +bCT +bCT +cMJ +vfM bnl -oJB -mJy -pYS +ohu +xRK +jIo aqi -bQj -aqj -blc +ttn +feE +rOY aqi -bll -bLx -aqj -aqj -bLx -bOb +wIf +lqk +feE +feE +lqk +jDW aqi -heo -aqH -eaL -aqM -tFp -tFp -tFp -tFp -tFp -tFp -tFp -tFp -tFp -tFp -tFp -tFp -kIz -aqH -eaL -aqI -aSH +mAZ +gVb +nTq +hRl +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +xee +lAN +gVb +nTq +wSI +xKl aqK ylo aSa ylo aqK -aiZ -eaL -eqM -aiZ +nbx +nTq +god +nbx aqK ylo aSa ylo aqK -aqI -aqQ -aWf -aqX -aqI +wSI +xTR +rSo +rTc +wSI aqK ylo ylo ylo aqK -aqI -aqQ -aWf -aqX -aqI +wSI +xTR +rSo +rTc +wSI aqK ylo ylo @@ -95986,14 +77756,14 @@ ylo aqo aqo aJW -bbj -nuF +cpg +cZv aJW aJW aJW -bVS -aJS -rfQ +xXV +mUs +obK gLs bQN bQv @@ -96027,15 +77797,15 @@ aKp bdK eiG aKu -bjd -bQZ -bQZ -bQZ -bQZ -bAw -bQZ -hoh -kOv +qhS +hff +hff +hff +hff +lyC +hff +eom +lZq reN nTx hkn @@ -96090,15 +77860,15 @@ asA asA aVo bky -qYj -uSi -uSi -uSi +pwH +wBl +wBl +wBl acF -xxF -agn -edO -acG +uaJ +gow +pVy +hEo aaG aaG aaG @@ -96124,86 +77894,86 @@ aaG aaG aaG aaG -acG -noK -blJ +hEo +sGa +bmg adI adI adI adI adI -aNI +tQJ adI adI agL -alh -oAa -nen -qVe -awF -ejk -bqJ +sQg +jQs +tPv +vUu +vBB +qQr +iNf agK -boP -alj -awC -brQ -buA +upi +pQi +bGm +gKP +fpn apI -apO -aQw -rpP -rpP -rpP -rpP -aQw -dXy +lpu +dHe +hqL +hqL +hqL +hqL +dHe +xVs apI -roh -mJy -aRd +iLk +xRK +fHr aqi -aLr -nxZ -bQs +qci +sgp +ycx aqi -bJw -bMv -bNQ -bNQ -bpn -vqP +dMk +hIt +deH +deH +mmN +prp aqi -qKZ -aqH -qqW -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -lvR -qRv -aqI -ggU +uKf +gVb +xSI +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +luU +sGs +wSI +pwF aqK ylo aSa ylo aqK -aSb -eaL -aqH -aSb +nyj +nTq +gVb +nyj aqK ylo aSa @@ -96230,18 +78000,18 @@ ylo ylo ylo aqo -caT -cec -eTg -bYR -bWo +rwH +wpF +dJU +kpk +eQN aJW -bVU -uOe -bVL -ygy -bVV -bUY +pek +ofV +dQN +kNP +qeI +utB buU bVT bQt @@ -96272,15 +78042,15 @@ ccq jqz iBg aKu -bje -bQZ -nhG -kOv -kOv -kOv -kOv -iqp -nAu +svb +hff +fJb +lZq +lZq +lZq +lZq +fAV +uqE aKt qQg dFL @@ -96335,65 +78105,65 @@ wgY wgY wgY aak -aVY -aVY -aVY -aYh +xXT +xXT +xXT +wnE aan aan aan -iul -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -acG -noK -ybl +exG +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +hEo +sGa +dYj adI -blO -buN -akL -rOH -csI -bOS -bOT +hKn +dXs +kDO +rZP +fNU +mal +laG agL -alh -awF -oAa -qVe -awF -pAo -bqJ +sQg +vBB +jQs +vUu +vBB +gzR +iNf agK -boU -gbw -awC -rZU -msu +hdO +dbK +bGm +oEA +qxu agU agU agU @@ -96404,9 +78174,9 @@ apI apI apI apI -roh -mJy -pYS +iLk +xRK +jIo aqi aqi qIU @@ -96419,36 +78189,36 @@ qIU qIU qIU qIU -aqI -aqI -aqI -aqI -aqI -aqI -aqI -dvn -qaB -qaB -wui -aqI -aqI -aqI -aqI -aqI -aqI -aqI -aqI -aqI -nQZ +wSI +wSI +wSI +wSI +wSI +wSI +wSI +eRe +wFH +wFH +yfl +wSI +wSI +wSI +wSI +wSI +wSI +wSI +wSI +wSI +hLG anw aoX aoX aoX aoX -aJK -xmV -aJK -pzH +jQg +uvi +jQg +uUs aoX aoX aoX @@ -96475,18 +78245,18 @@ ylo ylo ylo aqo -bUP -aJS -msp -aJS -aJS -bUI -caV -riE -bVM -bUT -bVW -bUZ +png +mUs +vxw +mUs +mUs +pbH +qyy +lTE +uUj +xwQ +eYf +pSs buU bYT hqX @@ -96517,15 +78287,15 @@ bdQ bdQ bdP aKu -bjf -utS -aKE -aKE -nAu +gQQ +wcU +hLb +hLb +uqE aKu -wPz -cam -bQW +hZx +ekv +qdV aKt jBC jRw @@ -96587,56 +78357,56 @@ bky aak ylo aan -xdB -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -yeL -hRQ -yeL -blL -rxd -rxd -rxd -dSi -nXD -adU -aFV +dTI +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +iLM +dvY +iLM +luf +sEv +sEv +sEv +cJl +gjz +eiX +tcf agL -alh -awF -tXq -qVe -awF -hCm -fyq +sQg +vBB +crO +vUu +vBB +vlk +tGp ang ang ang -amX +rua ang ang ang @@ -96649,11 +78419,11 @@ cRx gSC hDF ang -aqm -mJy -pYS -bii -bii +fzP +xRK +jIo +rLB +rLB qIU bQt hqX @@ -96664,16 +78434,16 @@ qIU bQV hqX qIU -aPt +sDB cjs -ybv -ybv -ybv -qTd -aqI -kOd -aSb -mCD +eiL +eiL +eiL +nkZ +wSI +qIu +nyj +crY anw anw anw @@ -96687,16 +78457,16 @@ aoX aoX aoX aoX -bWS -ayG -bWZ -fXA -sXg -aIM -egJ -bXo -bXq -bXr +rgb +mRo +eHJ +ncS +fcl +uXZ +woy +eoe +rZq +sRr aoX aoX aoX @@ -96720,14 +78490,14 @@ ylo ylo ylo aqo -bUQ -aJS -tZp -bUL +iPT +mUs +hpL +inQ aJW aJW aJW -caW +lXc aJW aJW aaa @@ -96763,14 +78533,14 @@ bdQ bdP aKt aKt -bjh -bRc -bRd -bRe +eMk +uzT +cql +hJC aKu -jWB -fzy -pCh +gUZ +ljR +sGG aKt aKt aKu @@ -96832,73 +78602,73 @@ ylo ylo ylo aan -aOs -buJ -vNe -vNe -vNe -vNe -vNe -vNe -vNe -xZn -vNe -vNe -vNe -vNe -vNe -vNe -vNe -vNe -xZn -vNe -vNe -vNe -vNe -vNe -vNe -vNe -vNe -buJ -vNe -vNe +vWo +jaS +jLK +jLK +jLK +jLK +jLK +jLK +jLK +fTt +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jLK +fTt +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jLK +jaS +jLK +jLK adI -svX -adU -bOQ -mLR -bOR -hsr -ovP +cqL +eiX +jHD +kPE +bNf +gNp +gLk agL -ayC -awF -wSz -qVe -awF -xIJ -bqJ +jhc +vBB +cYD +vUu +vBB +sOp +iNf ang -aJA -rtr -awT -arP -aLa +iTH +dbq +fHe +rpt +vmY ang -aMK -aMK -aMK -aMK -aMK -aMK -aMK -aMK -obW -aqj -mJy -pYS -aPZ -aPZ +snT +snT +snT +snT +snT +snT +snT +snT +pbq +feE +xRK +jIo +woj +woj qIU bQt hqX @@ -96911,14 +78681,14 @@ hqX qIU bQy cjs -mFT -rUQ -tfi -reh -aqI -kOd -aSb -aTd +kIt +qPG +rLl +jzc +wSI +qIu +nyj +psM aqK ylo ylo @@ -96927,26 +78697,26 @@ qIU qIU qIU qIU -aFT -bVv -bWy -bWH +vOS +gRO +qqJ +oLf aIA -bWT -aIT -aIT -aJv -sXg -aIM -aJv -aIT -aIT -egJ +xvC +nWz +nWz +eaI +fcl +uXZ +eaI +nWz +nWz +woy aIA -bXs -bXs -bXx -bXv +hCQ +hCQ +wei +rVt aoX aoX aoX @@ -96965,11 +78735,11 @@ ylo ylo ylo aqo -bWU -bUV -bqG -bUS -caU +nhy +ddY +ohB +rFs +rDf bVE bVX bVH @@ -97014,7 +78784,7 @@ aKt aKt aKt aKu -caq +vXC aKu aKt bdP @@ -97080,57 +78850,57 @@ aan aan aan aan -ayO -aaD -aaD -aUe +nPI +sTa +sTa +jGB aan aan aan aan aan -blH -aaD -aaD -buK +vxM +sTa +sTa +naW aan aan aan aan aan -ayO -aaD -aaD -aUe +nPI +sTa +sTa +jGB aan aan aan aan aan aeb -boT -ahL -aWu -bCJ -aXm -bCJ -mEG +vsF +sTj +fyl +ftt +uWm +ftt +vHg agL -aGh -awF -uqb -qVe -awF -pBJ -aGD +nBA +vBB +xIY +vUu +vBB +foR +rrL ang -aEV -aou -rmc -aou -aou -obW -aMK +wAX +gga +jfC +gga +gga +pbq +snT hDF fJm aqt @@ -97139,11 +78909,11 @@ aqt aqt aqt aqt -oJB -mJy -vYY -bMu -bNM +ohu +xRK +nMn +nAW +tkX qIU aTv bYm @@ -97154,16 +78924,16 @@ qIU bqo hqX qIU -ttJ +pEn cjs -exY -aqI -aqI -reh -aqI -kOd -aSb -aTg +oFP +wSI +wSI +jzc +wSI +qIu +nyj +nBf aqK ylo ajq @@ -97172,29 +78942,29 @@ qIU hqX bqp buU -bDN -aIM -aIM -rSR -bbd -fXA -aIM -aIM -aIM -bWL -hun -hun -hun -hun -hun -pcu -hun -hun -deG -fQl -fRR -bXA -bXC +coQ +uXZ +uXZ +mjr +vAS +ncS +uXZ +uXZ +uXZ +qEL +lAP +lAP +lAP +lAP +lAP +wSy +lAP +lAP +wQO +nKk +wUo +fOP +nME aoX ajq ajq @@ -97258,9 +79028,9 @@ bei bdP bdP aKL -aKQ -car -cia +reA +qYD +mIt aKL bdP bdZ @@ -97325,28 +79095,28 @@ ylo aSa ylo aan -aHs -aaD -aaD -aUA +kRW +sTa +sTa +twd aan ylo aSa ylo aan -bpP -aaD -aaD -blC +lgV +sTa +sTa +nJX aan ylo aSa ylo aan -aHs -aaD -aaD -aUA +kRW +sTa +sTa +twd aan ylo ylo @@ -97361,31 +79131,31 @@ bmZ aeb aeb aet -ayC -alj -alj -rKy -alj -alj -fyq +jhc +pQi +pQi +eKX +pQi +pQi +tGp ang -anW -aou -aMK -aou -aWv +xKw +gga +snT +gga +hKK afa afa afa afa aht -anq -bas -aUM -aUT +pfp +itz +gJo +kMI aqt buB -bPV +utv aqt aqt aqt @@ -97399,16 +79169,16 @@ qIU bQv bQN qIU -aPC +oMU cjs -pJY -aqI -aqI -lBx -aqI -kOd -aSb -ggU +eOT +wSI +wSI +cHy +wSI +qIu +nyj +pwF ajq ajq ajq @@ -97417,29 +79187,29 @@ gLs aSW hqX gLs -bVb -aIM -dYk -uGQ -wDi -xHM -hun -hun -hun -ebq -aIM -aIM -aIM -aIM -aIM -bbg -aIM -aIM -aIM -aIM -aIM -bXB -bXD +iCe +uXZ +gpW +xKJ +gQa +wsC +lAP +lAP +lAP +oIX +uXZ +uXZ +uXZ +uXZ +uXZ +tpq +uXZ +uXZ +uXZ +uXZ +uXZ +krZ +twB aIA bhn ajq @@ -97503,9 +79273,9 @@ bdP bdP bdS aKL -aKQ -car -cia +reA +qYD +mIt aKL bdS bdS @@ -97606,54 +79376,54 @@ ylo ylo ylo aet -aHm -lLO -lLO -lLO -lLO -lLO -iEY +prE +lEa +lEa +lEa +lEa +lEa +hNP ang -aJE -aRX -aRX -aRX -aXt +ePE +eBo +eBo +eBo +hZW afa ylo aSa ylo aht -aqD -aqE -aAt -eon -tZD -eon -bPW -wwi -bPQ -pwu -bhL -bil -bid -bin -biC -bjI -bnE -bpH -aqv +iNA +lon +gFB +vXM +pcE +vXM +eho +dKJ +irh +ibZ +efU +fnE +ftn +jxf +pRc +cfM +cdk +gCa +nIQ eqz -aSb +nyj cjs -ggU -aqI -gnO -xaQ -qaB -hvj -nQZ -gvi +pwF +wSI +qvk +ttZ +wFH +jYJ +hLG +sAU ajq bhn bhn @@ -97662,29 +79432,29 @@ gLs aCa hqX bQN -bVm -bVx -aIM -bVc +cyj +jWH +uXZ +edp aIA -bWT -bWX -bXa -bXc -sXg -aIM -bXc -bXa -bXd -fxM +xvC +gAq +laP +lmX +fcl +uXZ +lmX +laP +pfC +itW aIA -tta -bXu -bXw -bXz -tta -tta -bXE +cjQ +nQc +vxl +hAs +cjQ +cjQ +pZs aIA bhn bhn @@ -97748,9 +79518,9 @@ aKy aKy aKy aKL -boF -car -boH +cOb +qYD +ppJ aKL aKy aKy @@ -97869,31 +79639,31 @@ aSa aSa aSa aht -aYb -azi -aqx -bjk +wKi +rnL +tyB +oJo aqt -bPR -bPX -eon -eon -aAt -bPZ -bQx -bQB -bQE -bQx -aqx -aqx -aqx -qUT -aPm +hjK +osp +vXM +vXM +gFB +ljm +fFy +pyI +cuc +fFy +tyB +tyB +tyB +fwi +wgU bQy anw -nQZ -aqQ -exY +hLG +xTR +oFP anw ajq ajq @@ -97901,30 +79671,30 @@ ajq ajq ajq bhn -bhq -bhc +wit +rEm gLs gLs gLs gLs -bJY +oAs aIA -bUO -bWJ +hGX +eBI aIA -aIE -aIF -bXb -bXd -bWL -aMp -sRe -bXp -tta -aJH +koT +dfQ +jCI +pfC +qEL +odY +npj +ePC +cjQ +ojC aIA -aLq -bCQ +cot +gIg aIA aIA bco @@ -97989,17 +79759,17 @@ aJZ bdP aKy aKy -bsP -bsP -bsY +gZX +gZX +hMw aKL -xGd -car -aYn +peC +qYD +dyo aKL -bto -bsP -bsP +gNS +gZX +gZX aKy aKy bdy @@ -98114,25 +79884,25 @@ ylo ylo ylo aht -aYq -aAm -rmI -aqu +xGq +ieq +vbh +kLU aqt -bPS -hCG -tnS -eBx -sUR -aqx -nNW -kcb -sUR -aqx -nNW -ohV -rmI -bpL +lQc +ekh +kEh +kok +gpR +tyB +rQC +ocW +gpR +tyB +rQC +fNa +vbh +rlK eqz cjs cjs @@ -98141,43 +79911,43 @@ cjs cjs qAl qAl -bhc -bhe -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -fbe +rEm +umr +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +pCZ aIA -bWz +uLa aIA aIA aIA aIA -aSv -bXe -kPH -aIM -bXn -aTD +lMV +sWW +cCt +uXZ +cNy +gDd aIA aIA aIA -aoS +uLs aJO aIA -bgn -bdq -bdq -bdq -bdq -bgn -bgn +ncu +idK +idK +idK +idK +ncu +ncu bhn bhn bhn @@ -98233,19 +80003,19 @@ bdP bdP bdP aKy -bsP -aKG -vTr -ker -bko -rCE -dmP -rCE -bko -ker -kdA -aKG -bsP +gZX +seZ +lOw +wtQ +iSM +vlG +oyE +vlG +iSM +wtQ +hBv +seZ +gZX aKy beg uRA @@ -98369,63 +80139,63 @@ aht aqt aqt aqt -bhR +gye aqt aqt aqt -bhR +gye aqt aqt aOT -arv +hNr aQC -aPc +pBY aQC qAl qAl qAl qAl -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhp -bhc -bhs -bhc -bhc -fbe +rEm +rEm +rEm +rEm +rEm +rEm +rEm +yae +rEm +tYA +rEm +rEm +pCZ aIA -aIM -bWK -bVg -bWQ +uXZ +tkN +kIo +cWZ aIA -bWT -aJv -sXg -aIM -aJv -egJ -fRR -fRR -fRR -fRR -fRR +xvC +eaI +fcl +uXZ +eaI +woy +wUo +wUo +wUo +wUo +wUo aIA -bgu +tMU aen aen aen aen -bdn -bdq -bdq -bdq -bgn +tbN +idK +idK +idK +ncu bhn bhn bhn @@ -98479,17 +80249,17 @@ aJZ aJZ aKy aKy -bsP -bsP -bsY +gZX +gZX +hMw aKL -aKR -car -gcs +yju +qYD +xzY aKL -bto -bsP -bsP +gNS +gZX +gZX aKy aKy aJZ @@ -98611,57 +80381,57 @@ qIU ylo ylo aht -bhU -bif -fyy -aqx -aAp +hbw +jNd +hUZ +tyB +vGQ aqt -bio -aqx -qUT +tUj +tyB +fwi aqt aQV aQO aQO -aQQ +cfr aQC qAl qAl -bhc -bhc -bhc -bhn -bhn -bhn -bhc -qgt -enU -enU -enU -enU -enU -enU -uOi -bKa -bWA -xzI -aIM -rSR -bbd -fXA -aIM -sXg -krK -krK -aIM -kHk -aIM -aIM -aIM -jjN +rEm +rEm +rEm +bhn +bhn +bhn +rEm +jrx +lCX +lCX +lCX +lCX +lCX +lCX +wRn +tpB +nZT +rpG +uXZ +mjr +vAS +ncS +uXZ +fcl +iGj +iGj +uXZ +ktz +uXZ +uXZ +uXZ +xuj aIA -bgu +tMU aen aen aen @@ -98670,9 +80440,9 @@ bJE aen aen aen -bdn -bgn -bgn +tbN +ncu +ncu bhn bhn bhn @@ -98728,9 +80498,9 @@ aKy aKy aKy aKL -aKQ -car -cia +reA +qYD +mIt aKL aKy aKy @@ -98857,56 +80627,56 @@ ylo ylo aht aht -bhM -aqx -aqx -bhZ +oTn +tyB +tyB +rwc aqt -bip -aqx -bQP +cKX +tyB +fei aqt aPb aQW aQO -aQQ +cfr aQC qAl -bhc -bhp -bhc +rEm +yae +rEm bhn bhn bhn bhn bhn -fbe -bhr -bhc -bhc -bhc -bhc -bhr +pCZ +cGc +rEm +rEm +rEm +rEm +cGc bhn aIA -bWB -huK -qlh -qlh -wDi -xHM -hun -bWR -bXl -hun -hun -hun -hun -bWA -aIM -caH +rgR +izC +hia +hia +gQa +wsC +lAP +rXw +igv +lAP +lAP +lAP +lAP +nZT +uXZ +sxY aIA -bgu +tMU aen aen aen @@ -98916,12 +80686,12 @@ aen aen aen aen -bdn -bdq -bdq -bdq -bdq -bgn +tbN +idK +idK +idK +idK +ncu ajq ajq ylo @@ -98973,9 +80743,9 @@ beo aJZ aJZ aKL -gfM -xhx -kJk +kpy +loC +myy aKL bdS aJZ @@ -99102,56 +80872,56 @@ ylo ylo ylo aht -bik -bQl -bUD -bim +ePW +xPf +sCe +ebD aqt -bQQ -bQJ -uOz +ddZ +iwe +fVB aht aQz aQz aQz -arv +hNr aQC -bhc -bhc -bhc +rEm +rEm +rEm bhn bhn bhn bhn bhn bhn -fbe -bhc -bhc -bhp -bhe -bhc +pCZ +rEm +rEm +yae +umr +rEm bhn bhn aIA -bWC -qJO +uYD +dhH gLs gLs gLs -aIE -aJk -oFq -izt -aJk -kuq -oFq -aJv -sXg -aIM -caI +koT +dxq +fsT +wyn +dxq +ljO +fsT +eaI +fcl +uXZ +fqL aIA -bgu +tMU aen aen aen @@ -99166,8 +80936,8 @@ aen aen aen aen -bdn -bdq +tbN +idK ajq ajq aSa @@ -99218,9 +80988,9 @@ aJZ bem bdS aKL -tJY -car -kID +nWv +qYD +jlq aKL aJZ bdZ @@ -99359,44 +81129,44 @@ aht ylo ylo ajq -bhc -bhc -bho -bhc +rEm +rEm +uBz +rEm bhn bhn bhn bhn bhn bhn -bhc -fbe -bhc -bhc -bhc -bhc +rEm +pCZ +rEm +rEm +rEm +rEm bhn bhn bhn aIA -bWD -bWM +rIN +kEg bQN bUC gLs aIA aIA -gra -aJL +kNL +bIp aIA aIA aIA -aJK -xmV -aJK -hlM +jQg +uvi +jQg +sCR aIA -bgu +tMU xzW cZu cZu @@ -99463,9 +81233,9 @@ aKy aKy aKy aKL -boF -car -boH +cOb +qYD +ppJ aKL aKy aKy @@ -99604,60 +81374,60 @@ ylo ylo ajq ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn bhn -bhc -bhc -bhc -fbe -bhc -bhc +rEm +rEm +rEm +pCZ +rEm +rEm bhn bhn bhn bhn bhn aIA -bWE -bWN +fFB +bCU buU bVN gLs -bJB -aTe -lVb -mCe -aTe -bJP +kyw +iTV +pWz +kcJ +iTV +llx aIA -aJv -sXg -aIM -aJv +eaI +fcl +uXZ +eaI aIA -bgu +tMU mTa -bde -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bgV +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +bMF mTa aen ajq @@ -99704,17 +81474,17 @@ aKn aJZ aKy aKy -bsP -bsP -bsY +gZX +gZX +hMw aKL -xGd -car -tCH +peC +qYD +ijI aKL -bto -bsP -bsP +gNS +gZX +gZX aKy aKy bdS @@ -99848,20 +81618,20 @@ ylo ylo ajq ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn -bhe -bhp -bhc -qgt -enU -kCb -bhc +umr +yae +rEm +jrx +lCX +iHR +rEm bhn bhn bhn @@ -99874,35 +81644,35 @@ bQv gLs gLs gLs -bJC -bJG -aIM -sXg -bJM -aBR +ugF +nLt +uXZ +fcl +xjP +iqW aJl -nUi -pmf -aIM -aIT +rAq +hEY +uXZ +nWz aIA -bgu +tMU mTa -bdf +veo bgB bgB -bgC -bgC -bgC -bgC +dVk +dVk +dVk +dVk bgB -bgC -bgC -bgC -bgC +dVk +dVk +dVk +dVk bgB bgB -bgu +tMU mTa aen aen @@ -99948,19 +81718,19 @@ aKi aKn bdZ aKy -bsP -aKG -vTr -ker -bko -rCE -ldS -rCE -bko -ker -kdA -aKG -bsP +gZX +seZ +lOw +wtQ +iSM +vlG +jWD +vlG +iSM +wtQ +hBv +seZ +gZX aKy bdP rTj @@ -100092,21 +81862,21 @@ ylo ylo ajq ajq -bhc -bhc -bhe -bhc -bhc +rEm +rEm +umr +rEm +rEm bhn bhn bhn -bhc -bhc -lmV -nFy -bhc -bhc -bhc +rEm +rEm +lxq +wip +rEm +rEm +rEm bhn bhn bhn @@ -100119,39 +81889,39 @@ bUW hqX hqX gLs -bKd -aIT -aIM -sXg -aIT -bKs +hRz +nWz +uXZ +fcl +nWz +npP aJl -aIT -aIM -kWL -aTx +nWz +uXZ +qKa +giK aIA -bgu +tMU mTa -bdf +veo bgB -bgG -bgK -bgK -bgK -bgK -bgK -bgK -bgK -bgK -bgK -bgW +pxm +boC +boC +boC +boC +boC +boC +boC +boC +boC +wyG bgB -bgu +tMU mTa aen aen -bdf +veo ajq ajq aSa @@ -100194,17 +81964,17 @@ aKo bdJ aKy aKy -bsP -bsP -bsY +gZX +gZX +hMw aKL -cai -aKS -btj +tmN +hns +mJO aKL -bto -bsP -bsP +gNS +gZX +gZX aKy aKy aJZ @@ -100336,68 +82106,68 @@ ylo ylo ylo ajq -bhc -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm +rEm bhn bhn bhn bhn bhn -bhc -bhc -fbe -bhc -bhp -bhc +rEm +rEm +pCZ +rEm +yae +rEm bhn bhn bhn bhn bhn -bgn +ncu gLs hqX bQt bQt hqX gLs -bKe -aIT -dYk -pmf -aIT -bKz +gYx +nWz +gpW +hEY +nWz +mgX aIA -aJv -aIM -sXg -aJv +eaI +uXZ +fcl +eaI aIA -bgu +tMU mTa -bdf -bgC -bgH -oJT -bgI -bgI -bgI -oJT -bgI -bgO -oiE -bis -bgX -bgC -bgu +veo +dVk +osr +wRL +oIW +oIW +oIW +wRL +oIW +uOu +hRZ +guC +cTG +dVk +tMU mTa aen aen -bdf -bgn +veo +ncu ajq aSa aSa @@ -100444,7 +82214,7 @@ aKy aKy aKL aKL -bcd +xfw aKL aKL aKy @@ -100581,68 +82351,68 @@ ylo ylo ajq ajq -bhq -bhc -bhc -bhp -bhc +wit +rEm +rEm +yae +rEm bhn bhn bhn bhn bhn -bhc -bhc -fbe -bhc -bhc +rEm +rEm +pCZ +rEm +rEm bhn bhn bhn bhn bhn -bgn -bgn +ncu +ncu gLs gLs gLs gLs gLs gLs -bKf -oFq -aIM -aIM -tMq -bKA +qLu +fsT +uXZ +uXZ +uRc +oRA aIA -aJK -aJK -xmV -caM +jQg +jQg +uvi +mEH aIA -bgu +tMU mTa -bdf -bgC -bgH -bgI -bgO -bgI -bjr -bgI -biT -bgI -bgL -bgI -bgX -bgC -bgu +veo +dVk +osr +oIW +uOu +oIW +gvT +oIW +raS +oIW +mJM +oIW +cTG +dVk +tMU mTa aen aen -bdf -bgn +veo +ncu ajq ajq aSa @@ -100688,9 +82458,9 @@ xsU aJZ aJZ aKL -eZv -aKT -vCr +tvb +gnG +eON aKL bdP bdP @@ -100825,70 +82595,70 @@ ylo ylo ajq ajq -bhc -bhc -bhp -bhc -bhc -bhc +rEm +rEm +yae +rEm +rEm +rEm bhn bhn bhn bhn -bhc -bhc -bhr -fbe +rEm +rEm +cGc +pCZ bhn bhn bhn bhn bhn bhn -bgn -bgn -bgn -bgn -bdq -bdq -bdq -bgn +ncu +ncu +ncu +ncu +idK +idK +idK +ncu aIA aIA -aTf -aIM -aIM -aTq +khZ +uXZ +uXZ +myo aIA aIA -eUE -aJx -jNU -aJx +ipW +iDg +scm +iDg boe -bgu +tMU mTa -bdf -bgC -bgH -bgI -bis -bgI -bgI -bgQ -bgI -bgI -biT -bgI -bgX -bgC -bgu +veo +dVk +osr +oIW +guC +oIW +oIW +vbR +oIW +oIW +raS +oIW +cTG +dVk +tMU cUc cZu -dBy -gRg -gRg -jhL +qgi +fqE +fqE +bIB ajq ajq aSa @@ -100933,9 +82703,9 @@ aJZ bdZ beo aKL -eme -aYf -gXL +tPQ +srj +sQJ aKL bdP aJZ @@ -101069,72 +82839,72 @@ ylo ylo ylo ajq -bhc -bhc -uYb -bhc -bhc -bhe -bhc -bhc +rEm +rEm +jjX +rEm +rEm +umr +rEm +rEm bhn bhn -bhc -bhc -bhc -bhc -fbe +rEm +rEm +rEm +rEm +pCZ bhn bhn bhn bhn bhn -bgn -bgn -bgn -bgn -bgv +ncu +ncu +ncu +ncu +oNN aen aen aen -bdn -bgn +tbN +ncu bcm -bJV -aIM -aIM -vDF +jcU +uXZ +uXZ +wkH bcm -iLv -aJx -aJx -jNU -aJx -aJI -bgu +mLD +iDg +iDg +scm +iDg +npa +tMU mTa -bdf +veo bgB -bgH -bgL -bgI -gjb -bju -bgI -aYD -bgI -bgI -bgI -bgX +osr +mJM +oIW +lBv +pqu +oIW +uUU +oIW +oIW +oIW +cTG bgB -bgu +tMU aen aen bhn -bgn -bgn -xRM -bgn +ncu +ncu +nXh +ncu ajq aSa aSa @@ -101314,72 +83084,72 @@ ylo ylo ajq ajq -bhc -bhc -pRE -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -fbe -bhc -bhc -bhn -bhn -bhc -bhv -bgn -bgn -bgv +rEm +rEm +tTD +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +pCZ +rEm +rEm +bhn +bhn +rEm +dum +ncu +ncu +oNN aen aen aen aen aen -bdf +veo bcm -bJZ -bKo -bJJ -bKp +gXw +geB +vYc +cgX bcm -aJx -aJx -aJx -tMX -vCj -gWU -xWE +iDg +iDg +iDg +xRn +pCA +uwT +eQI xoj -bdf -bgC -bgH -bjr -bgI -bgI -bgI -bgI -aYJ -aAG -bgS -bgI -bgX -bgC -bgu +veo +dVk +osr +gvT +oIW +oIW +oIW +oIW +epx +ecf +mBQ +oIW +cTG +dVk +tMU aen bhn bhn bhn -bgn -xRM -bgn +ncu +nXh +ncu ajq ajq aSa @@ -101558,73 +83328,73 @@ ylo ylo ylo ajq -bhc -bhc -bhc -vSF -enU -enU -enU -enU -gdD -hel -enU -enU -enU -enU -enU -uOi -enU -enU -enU -hel -qsT -uwC -gRg -xWE +rEm +rEm +rEm +qza +lCX +lCX +lCX +lCX +mrh +qrD +lCX +lCX +lCX +lCX +lCX +wRn +lCX +lCX +lCX +qrD +dCi +bGD +fqE +eQI cZu cZu cZu cZu cZu nbS -bdf +veo bcm -bKm -akU -bVC -bJX +goj +lIk +jMS +jWn bcm -aJx -aJx -aJx -jNU -aJx -aJI -bgu +iDg +iDg +iDg +scm +iDg +npa +tMU aen -bdf -bgC -bgH -bgI -bgI -bgI -bgI -bgI -aYJ -aYV -bgI -bju -bgX -bgC -bgu +veo +dVk +osr +oIW +oIW +oIW +oIW +oIW +epx +tfR +oIW +pqu +cTG +dVk +tMU aen bhn bhn bhn -hcg -tad -jhL +nKq +pbT +bIB bhn ajq aSa @@ -101803,74 +83573,74 @@ ylo ylo ajq ajq -bhc -bhc -bhc -bhp -bhc -bhc -bhc -bhn -bhc -fbe -bhp -bhc -bhn -bhn -bhc -bhc -bhs -bhc -bhc -fbe -bhc -bhc -bhn -bgu +rEm +rEm +rEm +yae +rEm +rEm +rEm +bhn +rEm +pCZ +yae +rEm +bhn +bhn +rEm +rEm +tYA +rEm +rEm +pCZ +rEm +rEm +bhn +tMU aen aen aen aen aen mTa -bdf +veo bcn bcn bcn bcn bcn bcn -aJx -aJx -aJx -jNU -aJx -aJI -bgu +iDg +iDg +iDg +scm +iDg +npa +tMU bJE -bdf -bgC -bgH -bgI -bgI -biT -bgI -bgO -aYP -aZp -bgI -oJT -bgX -bgC -bgu +veo +dVk +osr +oIW +oIW +raS +oIW +uOu +ylZ +shm +oIW +wRL +cTG +dVk +tMU aen aen bhn bhn bhn -bgn -xRM -bgn +ncu +nXh +ncu ajq ajq aSa @@ -102047,75 +83817,75 @@ ylo ylo ylo ajq -bhc -bhc -bhc -bhc -bhp -bhc -bhc -bhn -bhn -aPl -aPq -aPl +rEm +rEm +rEm +rEm +yae +rEm +rEm +bhn +bhn +mpM +tpj +mpM aOC bhn bhn bhn bhn -bhc -bhc -bhc -fbe -bhc +rEm +rEm +rEm +pCZ +rEm bhn bhn -bgn -bgV +ncu +bMF aen opW aen bJE mTa -bdn -bdq -bdq -bdq -bdq -bdq -bgn -aJn -aJx -aJx -jNU -aJx -aJI -bgn -bdo -bgn +tbN +idK +idK +idK +idK +idK +ncu +poN +iDg +iDg +scm +iDg +npa +ncu +cxI +ncu bgB -bgH -bgI -bgP -bgI -oJT -bgI -bgI -aZs -bJm -bgL -bgX +osr +oIW +izJ +oIW +wRL +oIW +oIW +wGV +lQP +mJM +cTG bgB -bgu +tMU aen aen bhn bhn bhn -bgn -xRM -bgn +ncu +nXh +ncu bhn aQz aQz @@ -102292,33 +84062,33 @@ pdg pdg ajq ajq -bhc -bho -bhc -bhc -bhc -bhc +rEm +uBz +rEm +rEm +rEm +rEm bhn bhn bhn -bhc -fbe -bhc +rEm +pCZ +rEm bhn bhn bhn bhn bhn -bhc -bhc -bhp -qtm +rEm +rEm +yae +qMx bhn bhn bhn bhn -bgn -bgV +ncu +bMF aen aen aen @@ -102329,47 +84099,47 @@ aen aen aen bJE -bdf -aJn -aJx -aJx -jNU -aJx -aJx -aJw -aJw -aJw -bgD -bgI -bgI -bgI -bgI -bgI -aYF -bgI -oNU -bgI -oiE -bgX -bgC -bgu +veo +poN +iDg +iDg +scm +iDg +iDg +vuc +vuc +vuc +cYB +oIW +oIW +oIW +oIW +oIW +nnU +oIW +rjy +oIW +hRZ +cTG +dVk +tMU aen aen -bdf +veo bhn bhn bhn -xRM -bgn -bgn +nXh +ncu +ncu aQC -aQH -aQI +iNc +ekV aQJ aQV aRb aQC -arv +hNr aYR bdR bdR @@ -102536,36 +84306,36 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm +rEm +rEm bhn bhn bhn -bhc -bhc -fbe -bhc +rEm +rEm +pCZ +rEm bhn bhn bhn bhn bhn bhn -bhp -bhc -fbe +yae +rEm +pCZ bhn bhn bhn bhn bhn -bgn -bdo -bgV +ncu +cxI +bMF aen cUc cZu @@ -102574,47 +84344,47 @@ cZu cZu ejl cZu -nJR -rZR -vCj -vCj -jHa -aJx -aJx -aJx -aJx -aJx -bgE -bgI -bgI -bgI -oiE -oiE -bgL -bgI -bgT -bgI -bvF -bgX -bgC -bgu +jsD +nYk +pCA +pCA +maY +iDg +iDg +iDg +iDg +iDg +sTI +oIW +oIW +oIW +hRZ +hRZ +mJM +oIW +jRe +oIW +nNs +cTG +dVk +tMU aen aen -bdf -bgn -bgn -bhn -xRM -bgn -bgn -ahc -aQI -aQI +veo +ncu +ncu +bhn +nXh +ncu +ncu +xas +ekV +ekV aQO aQW aQO -aQI -aQQ +ekV +cfr aYR aYR aPN @@ -102781,28 +84551,28 @@ pdg pdg ajq ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn bhn bhn -bhc -aQx -fbe -bhc -bhc +rEm +nyO +pCZ +rEm +rEm bhn bhn bhn bhn bhn -bhc -bhp -fbe +rEm +yae +pCZ bhn bhn bhn @@ -102810,8 +84580,8 @@ bhn bhn bhn bhn -bgn -bgV +ncu +bMF aen aen aen @@ -102819,38 +84589,38 @@ aen aen mTa aen -bdf -aJn -aJx -aJx -tMX -vCj -vCj -vCj -vCj -vCj -kmI -leS -leS -ubq -leS -leS -dXO -bgI -bis -bgU -bgI -bgX -bgC -bgu +veo +poN +iDg +iDg +xRn +pCA +pCA +pCA +pCA +pCA +pfy +vgh +vgh +tXU +vgh +vgh +hsB +oIW +guC +kVC +oIW +cTG +dVk +tMU aen aen -bdn -bgn -bgn -bgn -xRM -bgn +tbN +ncu +ncu +ncu +nXh +ncu bhn bhn aQz @@ -102858,8 +84628,8 @@ aQz aQJ aQO aQJ -aQQ -aRc +cfr +oCD aYR aYR aYR @@ -103025,29 +84795,29 @@ pdg pdg pdg ajq -bhc -bhq -bhc -bhc -bhc +rEm +wit +rEm +rEm +rEm bhn bhn bhn bhn bhn -bhc -bhc -pRE -bhc -bhc +rEm +rEm +tTD +rEm +rEm bhn bhn bhn bhn bhn -bhc -bhc -fbe +rEm +rEm +pCZ bhn bhn bhn @@ -103056,52 +84826,52 @@ bhn bhn bhn bhn -bgn -bdo -bgV +ncu +cxI +bMF aen aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJx -aJJ -aJJ -aJJ -bgF -oiE -oiE -bgI -bgQ -bgI -bgI -rQh -bgI -bgI -bgI -bgX -bgC -bgu +veo +poN +iDg +iDg +scm +iDg +iDg +xib +xib +xib +nRi +hRZ +hRZ +oIW +vbR +oIW +oIW +gVS +oIW +oIW +oIW +cTG +dVk +tMU aen aen aen bhn -bgn -bgn -xRM +ncu +ncu +nXh bhn bhn bhn bhn aQz -aQQ -aQI +cfr +ekV aQC aQC aQC @@ -103270,30 +85040,30 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn bhn -owP +qmO tIk -bhc -bhc -fbe -bhc -bhc +rEm +rEm +pCZ +rEm +rEm tIk -jUn +vbI bhn bhn bhn bhn -bhc -euV -bhc +rEm +hCb +rEm bhn bhn bhn @@ -103303,58 +85073,58 @@ bhn bhn bhn bhn -bgn -bgV +ncu +bMF aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgn -bdq -bgn +veo +poN +iDg +iDg +scm +iDg +npa +ncu +idK +ncu bgB -bgH -bgM -bgI -bis -bgI -bgL -bgI -bgT -bgI -bgQ -bgX +osr +xjt +oIW +guC +oIW +mJM +oIW +jRe +oIW +vbR +cTG bgB -bgu +tMU aen aen bhn bhn -bgn -bgn -xRM +ncu +ncu +nXh bhn bhn bhn bhn aQz -aQU -aQQ +eyw +cfr aQC -aPv -aBv -aov -aYW -aBv -aBv -aPR +lQI +onf +sAv +iaO +onf +onf +sPR aqL aqL aqL @@ -103397,10 +85167,10 @@ ylo ylo aEw aEw -bwr -bzF -bzH -bwQ +hYm +gQR +qiq +neN aEw aEw ylo @@ -103515,30 +85285,30 @@ pdg pdg ajq ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn bhn -rgc -aPl -bhc -bhc -fbe -bhc -aPf -aPl -rgc +cSZ +mpM +rEm +rEm +pCZ +rEm +vnu +mpM +cSZ bhn bhn bhn bhn -bhc -fbe -bhu +rEm +pCZ +gxe bhn bhn bhn @@ -103549,59 +85319,59 @@ bhn bhn bhn bhn -bgu +tMU aen sDi mvL aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU bJE -bdf -bgC -bgH -bgI -bgI -boh -bgI -bqi -bgI -oJT -biU -bgI -bgX -bgC -bgu +veo +dVk +osr +oIW +oIW +xKI +oIW +uQL +oIW +wRL +tvd +oIW +cTG +dVk +tMU aen aen bhn bhn -bgn -bgn -xRM -bgn -bgn +ncu +ncu +nXh +ncu +ncu bhn bhn aQz aQz -arv +hNr aQC -aAz -aAI -aAY -aAY -aAY -aAH -anU -aBK -aCb +ghm +mTC +svr +svr +svr +kog +sEZ +djp +oQp aqL aqL aqL @@ -103632,7 +85402,7 @@ bdR bdP bdP aQC -arv +hNr aQC aQz ylo @@ -103641,12 +85411,12 @@ ylo ylo ylo aEw -bwA -bwr -bzG -bzI -bwQ -bzK +sIa +hYm +xgr +maG +neN +lXX aEw ylo ylo @@ -103759,32 +85529,32 @@ pdg pdg pdg ajq -bhc -bhc -bhr -bhc -bhc +rEm +rEm +cGc +rEm +rEm bhn bhn bhn bhn -wBk +gbg tIk -bhc -aQx -fbe -bhc -bhc +rEm +nyO +pCZ +rEm +rEm tIk -kNQ +ubH bhn bhn bhn bhn -bhu -bhw -bgn -bgn +gxe +wVo +ncu +ncu bhn bhn bhn @@ -103793,60 +85563,60 @@ bhn bhn bhn bhn -bgn -bgv +ncu +oNN aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -bdf -bgC -bvs -bgI -bgQ -boi -bgI -bjr -bgI -biT -bgI -bgI -bgX -bgC -bgu +veo +dVk +rII +oIW +vbR +oFS +oIW +gvT +oIW +raS +oIW +oIW +cTG +dVk +tMU aen aen bhn bhn bhn -bgn -xRM -bgn -bgn -bgv +ncu +nXh +ncu +ncu +oNN bhn bhn ajq -aBc -aBc -aAz -aAJ -aBy -azT -aBQ -aAz -aAT -aBL -aCd +rXS +rXS +ghm +upm +gBU +ueR +nKM +ghm +jko +guw +cRA asD ylo aqL @@ -103877,7 +85647,7 @@ aqL aqL aQz aQC -aQI +ekV bcx aQz aEw @@ -103886,12 +85656,12 @@ aEw aEw aEw aEw -bwB -bwr -bQY -bvK -bwQ -bzL +ski +hYm +rJj +koz +neN +fFW aEw aEw aEw @@ -104004,94 +85774,94 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhp +rEm +rEm +rEm +yae bhn bhn bhn bhn -rgc +cSZ tIk tIk -bhc -bhc -fbe -bhc -bhc +rEm +rEm +pCZ +rEm +rEm tIk tIk bhn bhn bhn bhn -bgn -xRM -bgn -bgn -bgn +ncu +nXh +ncu +ncu +ncu bhn bhn bhn bhn bhn bhn -bgn -bgv +ncu +oNN aen aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -bdf -bgC -bgH -oJT -bgI -boj -bgR -bgI -bgI -bgI -bgL -bgI -bgX -bgC -bgu +veo +dVk +osr +wRL +oIW +uKL +mAQ +oIW +oIW +oIW +mJM +oIW +cTG +dVk +tMU aen aen bhn bhn bhn -bgn -xRM -bdq -bgv +ncu +nXh +idK +oNN aen aen bhn ajq -aAb -aBc -aAz -aAJ -aBz +xGM +rXS +ghm +upm +uwG akq -aAA -aAz -aAT -aAJ -aCf +rwO +ghm +jko +upm +ccK afd ylo ylo @@ -104121,25 +85891,25 @@ aqL aqL ylo aQz -ahx +opN aQW aQJ aQC -aCh -xkB +cAO +kiz uHr -aYT -bwk -yhw -yhw -yhw -yhw -oCa -yhw -kSM +mtI +lTS +cvC +cvC +cvC +cvC +gxz +cvC +myM auH -bvX -bxH +cXC +wxh aEw aEw aEw @@ -104249,94 +86019,94 @@ pdg pdg pdg ajq -bhe -bhc -bhc -bhc +umr +rEm +rEm +rEm bhn bhn bhn -qPJ -aPl +njA +mpM tIk -bhp -bhc -bho -sMb -rXE -bhc +yae +rEm +uBz +tuy +hIi +rEm tIk -rgc +cSZ bhn bhn bhn bhn -bgn -xRM -bgn -bdq -bdq -bgn +ncu +nXh +ncu +idK +idK +ncu bhn bhn -bgn -bgn -bdq -bgv +ncu +ncu +idK +oNN aen aen aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -bdf +veo bgB -bgJ -bgN -bgN -bgN -bgN -bgN -bgN -bgN -bgN -bgN -bgY +eni +oXG +oXG +oXG +oXG +oXG +oXG +oXG +oXG +oXG +wpG bgB -bgu +tMU aen aen aen bhn bhn bhn -nrO +hag aen aen aen aen aen ajq -aLc -aPs -aAz -aAJ -aBD -azY -aAB -aAz -aAT -aAJ -aCi +uvx +orS +ghm +upm +npi +sic +uxX +ghm +jko +upm +umG afd ylo ylo @@ -104345,16 +86115,16 @@ ylo ylo ylo atA -aFJ -aGi +hWq +qQL auh auh auh atA -aGw -aGw -bZX -bbt +kyy +kyy +cCp +dZf aLV auj auj @@ -104366,28 +86136,28 @@ ylo ylo ylo aQz -cqv +cZR aQO -aQI -ahc -aCh +ekV +xas +cAO sVk -rzU -aCr -aCr -kEJ -juh -juh -fMn -juh -pdw -syG +dPv +kur +kur +wJo +gwt +gwt +ovg +gwt +mWF +fEX auS -yhw -yhw -bvM -bzN -bzb +cvC +cvC +nbD +jNw +rwY aEw aEw ylo @@ -104494,38 +86264,38 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn bhn tIk -aPf -qgt -enU -enU -enU -vcJ -bhc -bhs -aPl -wBk -bhn -bhn -bhn -bgn -bgn -etD -bgv +vnu +jrx +lCX +lCX +lCX +ndb +rEm +tYA +mpM +gbg +bhn +bhn +bhn +ncu +ncu +nex +oNN aen aen -bdn -bgn -bgn -bgn -bgv +tbN +ncu +ncu +ncu +oNN aen aen aen @@ -104534,30 +86304,30 @@ aen aen mTa aen -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen -bdf +veo bgB bgB -bgC -bgC -bgC -bgC +dVk +dVk +dVk +dVk bgB -bgC -bgC -bgC -bgC +dVk +dVk +dVk +dVk bgB bgB -bgu +tMU aen aen aen @@ -104571,17 +86341,17 @@ aen aen aen ajq -aCb -aXd -aAz -anU -aBv -aAf -aBs -aAK -aBt -aBS -aCd +oQp +eZR +ghm +sEZ +onf +bMr +dhd +fVG +hJA +rcq +cRA afd ylo ylo @@ -104590,20 +86360,20 @@ ylo ylo ylo anD -aDb -aCQ -aCm -aDk -aDw +nXB +xxf +ohc +iBi +ykJ aui -azN -aur -ceB -dmE +gTZ +jYn +cVo +hUW aLU -aMg -aLS -aNj +nov +tAc +qjn aNw ylo ylo @@ -104617,23 +86387,23 @@ aQz aQz oiu sVk -rzU -aCr -aCr -ppr -aCr -aCr -wJz -aCr -qkW -juh -bxb -juh -juh -fFI -bxX -aCr -bzS +dPv +kur +kur +wIm +kur +kur +qJf +kur +iLQ +gwt +xZH +gwt +gwt +xhM +kJe +kur +vwf aEw ylo ylo @@ -104739,37 +86509,37 @@ pdg pdg ajq ajq -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm bhn bhn -rgc +cSZ tIk -bhc -fbe -bhc -aQx -bhc -bhc -bhc -aQx +rEm +pCZ +rEm +nyO +rEm +rEm +rEm +nyO tIk -rgc +cSZ bhn bhn bhn -bgn -bgu +ncu +tMU vyB cZu cZu cZu cZu -cEQ -jBx -cSi +vXv +ewE +qaF cZu cZu cZu @@ -104779,30 +86549,30 @@ cZu cZu xFN cZu -nJR -rZR -vCj -vCj -jHa -aJx -aJI -bgu +jsD +nYk +pCA +pCA +maY +iDg +npa +tMU aen -bdn -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bgv +tbN +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +oNN aen aen aen @@ -104818,15 +86588,15 @@ aen ajq asD asD -aAz -aAT -aAT -aAT -aAT -aAT -aAT -aAP -aCb +ghm +jko +jko +jko +jko +jko +jko +srH +oQp asD ylo ylo @@ -104835,20 +86605,20 @@ ylo ylo ylo anD -aDb -aBX -aGF -aDm -aDx +nXB +tcq +xYq +klh +sYV aui -aMa -aur -aur -aMa +cUz +jYn +jYn +cUz aLU -aMh -aMy -aMR +tqu +rbX +tie aNw ylo ylo @@ -104861,24 +86631,24 @@ ylo ylo aEw sVk -aCh +cAO uHr -bwe -bvw -ppr -bwt -bwC -bwH -bwJ -pKi -xhd +gog +pAe +wIm +uYO +seO +rdB +jbi +lUL +cpq auS -lwk -aCr -nBy -aCr -byg -bzc +tTr +kur +mvn +kur +qzt +lzV auQ ylo ylo @@ -104983,30 +86753,30 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc -bhs +rEm +rEm +rEm +rEm +tYA bhn bhn -rgc -aPl -bhc -fbe -bhr -bhc -bhc -bhe -bhc -bhc +cSZ +mpM +rEm +pCZ +cGc +rEm +rEm +umr +rEm +rEm bhn bhn bhn bhn bhn bhn -bgu +tMU mTa aen aen @@ -105024,14 +86794,14 @@ aen aen aen bJE -bdf -aJn -aJx -aJx -jNU -aJx -aJI -bgu +veo +poN +iDg +iDg +scm +iDg +npa +tMU aen aen aen @@ -105062,16 +86832,16 @@ aen aen aen jOh -aAk -akV -aAY -auk -aAq -aAD -aAY -aAY -aBU -aAb +cUQ +eqs +svr +gqN +uDY +pnS +svr +svr +kea +xGM asD asD asD @@ -105080,20 +86850,20 @@ atA atA atA atA -aFL -aBX -aGG -aHN -aDA +ugI +tcq +cSX +cqO +eUL aui -lOn -bZW -aur -azN +qMc +eVh +jYn +gTZ aLU -aMj -aLx -aNl +iOz +jze +dRs aLV ylo avm @@ -105105,25 +86875,25 @@ avm auE auE aEw -aCh -aCh +cAO +cAO auH auH auH -bvf +sCE auH auH auH -bwK -nmp -nDD +mge +gJN +rWj auH -byZ -bwm -bxQ -lwk -aCr -bvP +hND +urh +tXe +tTr +kur +cfY auQ ylo ylo @@ -105228,22 +86998,22 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc -bhc -bhc -bhn -qPJ +rEm +rEm +rEm +rEm +rEm +rEm +bhn +njA tIk -bhc -fbe -bhc -bhc +rEm +pCZ +rEm +rEm bhn aOC -aPl +mpM aOC bhn bhn @@ -105251,123 +87021,123 @@ bhn bhn bhn bhn -bgu +tMU mTa -bde -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bgn -aJn -aJx -aJx -jNU -aJx -aJI -bgn -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -mJa -bdo -bdo -bdo -bdo -bdo -bdo +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu +poN +iDg +iDg +scm +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +jhX +cxI +cxI +cxI +cxI +cxI +cxI jOh -aAc -anc -aAl -aun -aAs -aAF -aAR -aBc -aBW -aBc -aCo +tnO +fBj +kiM +xKz +nio +dvP +jMP +rXS +cSQ +rXS +nWZ aCu aCK -pMI -azN +dYc +gTZ aCO aCX -aDF -aBX -aGu -aDq +wZz +tcq +hTa +tdu auh auh atA -aGw -bZX -aGw -bbu +kyy +cCp +kyy +ocB aLV -aMk -aMI +gYy +aAn aNq aNq aNq aNq -bsQ -mWo +jvQ +wkC avm avm avm -bNC -mWo +pCR +wkC aNq -gVM +ceC aNq auB -bvy -dte -ppr -bwu -kSM +kNz +cqs +wIm +wKS +myM auH -bwN -nmp -nDD +nJL +gJN +rWj auH auH auH auH auH -gpu +hhQ bwS aEw ylo @@ -105473,84 +87243,84 @@ pdg pdg pdg ajq -bhc -bho -bhc -bhc -bhc -bhc +rEm +uBz +rEm +rEm +rEm +rEm bhn aOC aOC -aPl -aPq -aPl +mpM +tpj +mpM bhn bhn bhn -aQy +uDT bhn bhn bhn bhn bhn bhn -bgn -bgu +ncu +tMU mTa -bdf +veo aJm aJm -bdc -bdc +wvJ +wvJ aJm aJm -bdc -bdc +wvJ +wvJ aJm aJm -aJw -aJw -aJw -aJw -aJw -aJw -aJx -aJx -aJx -jNU -aJx -aJx -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -aJw -vCS -aJw -aJw -aJw -aJw -aJw -boo +vuc +vuc +vuc +vuc +vuc +vuc +iDg +iDg +iDg +scm +iDg +iDg +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +vuc +rTy +vuc +vuc +vuc +vuc +vuc +pNU asD ajm ajm @@ -105559,8 +87329,8 @@ asD ajm ajm akq -aAT -aBY +jko +nSr akq akq akq @@ -105570,50 +87340,50 @@ akB akB akB akB -aFP -aGv -aCQ -aHS -aDE +sel +hmN +xxf +jNr +que akB -aKx -caG -dDj -aLy -aIf -gwV -aMN +eTJ +iqG +xbF +wMI +kam +eGS +kPL aNq -bNw -bNz -lHK -bsR -hMo -bNF -btb -btf -hMo -bsR -lHK -lHK -bNJ +jBZ +ukH +kaX +qcr +lXj +jCp +ulx +jxL +lXj +qcr +kaX +kaX +dDb auB -xzU -aCh -bwo -bjw -bwD +lwF +cAO +mdH +cPu +qQQ auH -bvC -nmp -wtu +lJg +gJN +ouQ auH -bvY -bwn -bvE -dte -aCr -bwT +oWb +mks +dCy +cqs +kur +hFA auQ ylo ylo @@ -105718,18 +87488,18 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhc -bhr -fbe -bhc +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +rEm +cGc +pCZ +rEm bhn bhn bhn @@ -105739,126 +87509,126 @@ bhn bhn bhn bhn -bgn -bgn -bgv +ncu +ncu +oNN mTa -bdf +veo aJm -bgj -bgp -bgp -bgp -bgp -bgp -bgp -bgp +ocV +uEj +uEj +uEj +uEj +uEj +uEj +uEj aJm -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -aut -dAk -aBw -aoz -aZD -aBT -khD -aAV -ahu -nJC -khD -ajn -azP -ajn -ajn -ajn -ajn -aDd +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +eas +jPr +map +hfS +psj +tNi +tNM +qtT +pet +rtG +tNM +dEr +kPU +dEr +dEr +dEr +dEr +bLJ akB -aFS -aGv -aBX -aDr -aJj +qrP +hmN +tcq +vuo +hLx aui -aKA -nJC -ahu -rZC -aPU -aMl -aMR +uoN +rtG +pet +tVI +dOE +rrw +tie aNq -bsJ -bsM -qsg -qsg -hXH -aNx -aNx -aNx -pQK -qsg -qsg -hXH -bFp +kiW +rmD +vKM +vKM +vWG +jMc +jMc +jMc +cpx +vKM +vKM +vWG +ebc auB -bwg -ksF -vMX -bwE -aZX +kaq +iFx +wzJ +rBt +vXZ auH -bvB -nmp -nDD +yaH +gJN +rWj auH -fgN -aCr -aCr -aCr -aCr -byi +xqM +kur +kur +kur +kur +rWI auQ ylo ylo @@ -105963,18 +87733,18 @@ pdg pdg pdg ajq -bhc -bhc -bhc -bhp -bhc -bhc -bhc -bhc -bhc -bhc -fbe -bhq +rEm +rEm +rEm +yae +rEm +rEm +rEm +rEm +rEm +rEm +pCZ +wit bhn bhn bhn @@ -105984,126 +87754,126 @@ bhn bhn bhn bhn -bgn -bgv +ncu +oNN aen mTa -bdf -bdc -bgl -bgm -tbm -sjL -sjL -oKQ -sjL -sjL -hCJ -vCj -vCj -miX -vCj -vCj -vCj -vCj -vCj -miX -azy -vCj -vCj -vCj -vCj -vCj -vCj -vCj -vCj -vCj -dIa -vCj -vCj -vCj -vCj -vCj -vCj -miX -vCj -vCj -vCj -vCj -vCj -vCj -vCj -vCj -azy -vCj -miX -vCj -vCj -vCj -vCj -vEs -wKL -aeZ -aeZ -avr -ahu -ahu -ahu -ahu -caG -dDj -dDj -xlU -dDj -dDj -dDj -aCP -aDe +veo +wvJ +szf +opn +pVE +oWx +oWx +wPH +oWx +oWx +wdw +pCA +pCA +hKP +pCA +pCA +pCA +pCA +pCA +hKP +yfj +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +ipz +pCA +pCA +pCA +pCA +pCA +pCA +hKP +pCA +pCA +pCA +pCA +pCA +pCA +pCA +pCA +yfj +pCA +hKP +pCA +pCA +pCA +pCA +qnY +uyf +oMm +oMm +vfQ +pet +pet +pet +pet +iqG +xbF +xbF +htu +xbF +xbF +xbF +xVc +ucS akB -aFS -aGv -aBX -aHU -aDH +qrP +hmN +tcq +tqM +vfe aui -aKB -nJC -ahu -aLE +uZs +rtG +pet +dQC aLY -aMm -aMS +wrq +rRC aNq -bNx -rBX -aNy -aNy -aNv -wGb -aNx -aNx -rBX -aNy -aNy -aNv -btq +kOX +uQD +efS +efS +wdO +fXX +jMc +jMc +uQD +efS +efS +wdO +mEW auB -bwh -adp -adp -adp -auN +lEd +dvy +dvy +dvy +wZT auH -bvB -nmp -syG +yaH +gJN +fEX auH -bvZ -bvD -bvN -aCr -aCr -bwU +ucy +xyx +hYV +kur +kur +iYp aEw ylo ylo @@ -106208,130 +87978,130 @@ pdg pdg pdg ajq -bhc -bhc -bhq -bhc +rEm +rEm +wit +rEm bhn -bhc -bhc -bhc -bhs -bhc -fbe -bhu +rEm +rEm +rEm +tYA +rEm +pCZ +gxe bhn -bgn +ncu bhn bhn bhn bhn bhn bhn -bgn -bgv +ncu +oNN aen sDi mvL -bdf -bdc -bgl -bgm -nhE -bgm -bgm -uuP -bgm -bgm +veo +wvJ +szf +opn +xvg +opn +opn +fFe +opn +opn aJm -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -aJx -ubW -ubW -ubW -ubW -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -avr -aeZ -aeZ -nbO -vEs -dDj -dDj -dDj -dDj -azA -ahu -ahu -ahu -ahu -ahu -ahu -nJC -aDe +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +cwc +cwc +cwc +cwc +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +vfQ +oMm +oMm +tQv +qnY +xbF +xbF +xbF +xbF +lAY +pet +pet +pet +pet +pet +pet +rtG +ucS akB akB -aGv -aCl +hmN +mOv akB akB akB -aKF -nJC -ahu -aLP +nND +rtG +pet +ngZ auj auj auj aNq -pUa -rBX -bNB -bNE -uco -bux +lXd +uQD +rmf +iJc +pTO +hzr auB -btg -eYv -nWV -bIX -aNv -lbY +uTE +nxm +tyt +uoz +wdO +oTp auB auH auH @@ -106340,14 +88110,14 @@ auH auH auH auH -wKD -juh -bxM -juh -juh -dWY -adp -adp +der +gwt +gPl +gwt +gwt +hRe +dvy +dvy aEw aEw ylo @@ -106453,144 +88223,144 @@ pdg pdg pdg ajq -bhc -bhc +rEm +rEm bhn bhn bhn bhn -bhc -bhc -bhc -bhc -frk -bgn -bgn -bgn -bdq -bdq +rEm +rEm +rEm +rEm +dGr +ncu +ncu +ncu +idK +idK bhn bhn -bdq -bdq -bgv +idK +idK +oNN aen aen aen mTa -bdf -bdc -bgl -bgm -nhE -iVA -bgm -bgm -bgm -bgm -aDV -ubW -aJx -jNU -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -lXP -ubW -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -aJx -jNU -aJx -aJx -aJx -aJx -avr -aoz -aBw -qLE -avr -aAx -rZC -pZf -ahu -nJC -xSL -vQt -vQt -vQt -ulq -ahu -nJC -khD -ajn -uSM -nJC -ahu -khD -ajn -ajn -uSM -nJC -ahu -aLQ -aJz -aAX -aBT +veo +wvJ +szf +opn +xvg +oXc +opn +opn +opn +opn +dNe +cwc +iDg +scm +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +tqq +cwc +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +iDg +scm +iDg +iDg +iDg +iDg +vfQ +hfS +map +iPR +vfQ +owS +tVI +mMb +pet +rtG +xbj +ctt +ctt +ctt +qQm +pet +rtG +tNM +dEr +ppo +rtG +pet +tNM +dEr +dEr +ppo +rtG +pet +cIX +iGn +daQ +tNi aNq -pUa -rBX -gtp -bND -fkn -buy +lXd +uQD +jYi +rxl +nXP +eXG auB -bth -hxl -bNE -bNB -aNv -lbY +jNf +dOr +iJc +rmf +wdO +oTp auB -btw -aCr -egq -aZV -juh -juh -bvh -kRc -xhd +xiX +kur +thZ +kMA +gwt +gwt +xps +sFt +cpq auH -bxL -aCr -bNV +qBb +kur +ePA aEw aEw aEw @@ -106698,20 +88468,20 @@ pdg pdg pdg ajq -bhc -bhc +rEm +rEm bhn bhn bhn bhn -bhc -bhc -qgt -enU -nBO -gRg -wIu -cSi +rEm +rEm +jrx +lCX +wCv +fqE +qFD +qaF cZu cZu cZu @@ -106723,59 +88493,59 @@ cZu cZu cZu xoj -bdf -bdc -bgl -bgm -dOF -bgm -bgm -bgm -bgm -bgm +veo +wvJ +szf +opn +aBN +opn +opn +opn +opn +opn aJm -aJx -ubW -jNU -aJx -aJx -aJx -aJJ -aJJ -ukY -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -ubW -aJx -aJx -aJx -aJx -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -ukY -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -aJJ -ukY -aJJ -aJJ -aJJ -qVJ +iDg +cwc +scm +iDg +iDg +iDg +xib +xib +hII +xib +xib +xib +xib +xib +xib +cwc +iDg +iDg +iDg +iDg +xib +xib +xib +xib +xib +xib +hII +xib +xib +xib +xib +xib +xib +xib +xib +xib +xib +hII +xib +xib +xib +qSw asH azV azV @@ -106783,59 +88553,59 @@ azV asH amv amv -agG -ahu -nJC -aje -xSL -vQt -ulq -odN -ahu -azB -dDj -fWK -dDj -xlU -dDj -dDj -dDj -dDj -dDj -xlU -dDj -dDj -dDj -aCP -aMT +jkT +pet +rtG +nmu +xbj +ctt +qQm +vPb +pet +nJE +xbF +ufS +xbF +htu +xbF +xbF +xbF +xbF +xbF +htu +xbF +xbF +xbF +xVc +liX auB -bNx -rBX -aNy -aNy -hok -aNz -aNB -tJv -mbz -aNy -tvW -aNv -btq +kOX +uQD +efS +efS +baV +pqr +rXq +uXY +kTG +efS +wmT +wdO +mEW auB -btz -aCr -gZH -bwI -bzE -xhd +fWQ +kur +pVI +dfs +xDs +cpq auH -pKi -nDD +lUL +rWj auH -bMc -aCr -uuQ +vfx +kur +rqK aEw ylo ylo @@ -106943,19 +88713,19 @@ pdg pdg pdg ajq -bhc -bhc -bhc +rEm +rEm +rEm bhn bhn -bhc -bhc -bhp -fbe -bhc +rEm +rEm +yae +pCZ +rEm bhn -bgn -nrO +ncu +hag aen aen aen @@ -106968,119 +88738,119 @@ aen aen aen aen -bdf +veo aJm -bgm -bgm -oBq +opn +opn +gfP bgr bgr bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bdq -etD -bdq -bdq -bdq -bdq -bdq -bgn -aJn -aJx -aJx -aJx -aJI -bgn -bdq -bdq -bdq -bdq -bdq -etD -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -etD -bdq -bdq -bdq -bdq +iDg +iDg +scm +iDg +iDg +npa +ncu +idK +nex +idK +idK +idK +idK +idK +ncu +poN +iDg +iDg +iDg +npa +ncu +idK +idK +idK +idK +idK +nex +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +nex +idK +idK +idK +idK amv -aeO -alB -alQ -axg -bCW +jOo +juC +qSv +tyy +pSE bkE -agG -ahu -nJC -aje -aje -aOE -odN -odN -ahu -ahu -ahu -nJC -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -lIq -ahu -ahu -nJC -aDe +jkT +pet +rtG +nmu +nmu +eQc +vPb +vPb +pet +pet +pet +rtG +pet +pet +pet +pet +pet +pet +pet +pet +skP +pet +pet +rtG +ucS auB -bsJ -qFp -lHK -lHK -nXv -aNx -aNx -xQb -esA -qiW -tQs -tUa -swY +kiW +euW +kaX +kaX +thN +jMc +jMc +kQw +vEW +hSB +miu +jYd +xdW auB -ruw -aCr -aCr -wJz -aCr -nDD +eCk +kur +kur +qJf +kur +rWj auS -nmp -nDD +gJN +rWj auH -grc -bwp -rxk +dCu +wML +mKf aEw ylo ylo @@ -107188,49 +88958,49 @@ pdg pdg pdg ajq -bhc -bhp -bhc +rEm +yae +rEm bhn -bhc -bho -bhc -bhc -fbe +rEm +uBz +rEm +rEm +pCZ bhn bhn bhn mTa -bde -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bgn +yeA +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu aJm -bgm -bgm -nhE -bgs -bgs -bhd -bhm -biB +opn +opn +xvg +hKe +hKe +pat +xlW +mFy aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgu +iDg +iDg +scm +iDg +iDg +npa +tMU aen vFJ aen @@ -107238,13 +89008,13 @@ aen aen aen bJE -bdf -aJn -aJx -aJx -aJx -aJI -bgu +veo +poN +iDg +iDg +iDg +npa +tMU bJE aen aen @@ -107267,61 +89037,61 @@ aen aen aen amv -bDX -avu -age -age -avA -bkF -agG -ahu -nJC -aje -kTx -aAW -eUf -aNh -vQt -vQt -ulq -nJC -xSL -aOg -rZC -ffQ -ffQ -ffQ -ffQ -ffQ -ffQ -pZf -ahu -nJC -aDe +vzO +oqL +fpM +fpM +iou +iBQ +jkT +pet +rtG +nmu +tTN +rHl +llq +cxB +ctt +ctt +qQm +rtG +xbj +gEl +tVI +fZZ +fZZ +fZZ +fZZ +fZZ +fZZ +mMb +pet +rtG +ucS auB -bNy -bNA -bvt -bvt -xmC -aNx -aXN -nCl -cfA -bvt -bvt -bNI -bNK +nmP +rBw +bGS +bGS +kMi +jMc +cjD +pfR +uFs +bGS +bGS +qyf +wBD auB -piI -iCN -bjp -bwO -bjp -auN +kqG +wsP +lEJ +eng +lEJ +wZT auS -nmp -nDD +gJN +rWj auH auH auH @@ -107434,48 +89204,48 @@ pdg pdg ajq ajq -bhc -bhc -bhc -qgt -enU -enU -enU -vcJ +rEm +rEm +rEm +jrx +lCX +lCX +lCX +ndb bhn bhn bhn mTa -bdf +veo aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bgm -iVA -nhE -bgs -bgs -bgs -bgs -bgs +opn +oXc +xvg +hKe +hKe +hKe +hKe +hKe aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu aen aen aen @@ -107483,13 +89253,13 @@ aen aen aen aen -bdf -aJn -aJx -aJx -aJx -aJI -bgu +veo +poN +iDg +iDg +iDg +npa +tMU aen aen aen @@ -107512,16 +89282,16 @@ aen aen ajq asH -awM -age -iCP -age -bkD +too +fpM +wsD +fpM +wlW bkE -aAX -ahu -nJC -aje +daQ +pet +rtG +nmu qIU qIU qIU @@ -107529,7 +89299,7 @@ qIU qIU ajX akd -aCM +xIL akd ajX anE @@ -107539,19 +89309,19 @@ anE anE anE anE -agG -ahu -nJC -aDe +jkT +pet +rtG +ucS auB auB auB auB auB auB -aHh +glv auB -aHi +qLL auB auB auB @@ -107565,15 +89335,15 @@ auH auH auH auH -fmd -baZ +umB +ldJ auH -gXv -gVR -nui +oVW +vfJ +juv auJ -aCs -aCs +igq +igq aEx aEx ylo @@ -107679,77 +89449,77 @@ pdg pdg pdg ajq -bhc -bhc -bhc -fbe -bhc -bhc -bhc +rEm +rEm +rEm +pCZ +rEm +rEm +rEm bhn bhn bhn aen mTa -bdf -bdc -bdd -bdl -bdu -bdl -bdl -bdl -bdl -bdl -bdl -bdl -beV -bhW -bgm -iVA -nhE -bgs -bgs -nid -lwL -dXW +veo +wvJ +xwV +gxZ +pfE +gxZ +gxZ +gxZ +gxZ +gxZ +gxZ +gxZ +pWU +fCp +opn +oXc +xvg +hKe +hKe +nDl +eqm +tbq aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bgn -aJn -aJx -aJx -aJx -aJI -bgn -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bgV +iDg +iDg +scm +iDg +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +ncu +poN +iDg +iDg +iDg +npa +ncu +cxI +cxI +cxI +cxI +cxI +cxI +cxI +bMF aen aen aen aen -bde -bdo -bgV +yeA +cxI +bMF aen mTa aen @@ -107757,69 +89527,69 @@ aen aen ajq asH -akY -anF -aVx -eDq -eDq -auD -dDj -dDj -azA -aje +sgs +gYl +eWP +uwF +uwF +wVq +xbF +xbF +lAY +nmu qIU -aCq -aCx -aCJ +hcL +gEe +fPU bzm -aKv -rKN -gXG -gSu -aOI +wTU +hkN +hxV +vah +yfU anE -aGc -aue -aGU -aue -aGV +qHb +dbb +rAo +dbb +vwq anE -agG -ahu -nJC -khD -ajn -ajn -ajn -ajn -ajn -uSM -ahu -aVW -nJC -khD -ajn -ajn -ajn -ajn -auF -uVo -auF -auF +jkT +pet +rtG +tNM +dEr +dEr +dEr +dEr +dEr +ppo +pet +mra +rtG +tNM +dEr +dEr +dEr +dEr +fep +iUy +fep +fep auK -aCg -aYE -aCg -rbC -ybq -gyK -aCg -aCg -aCg -aYE -aCg -byh -byk +rLc +hCM +rLc +raf +uKm +pyA +rLc +rLc +rLc +hCM +rLc +yao +vKW auR ylo ylo @@ -107924,79 +89694,79 @@ pdg pdg pdg ajq -bhc -bhc -bhp -fbe -bhc -bhc +rEm +rEm +yae +pCZ +rEm +rEm bhn bhn bhn aen aen mTa -bdf -bdc -bdg -bdm -bdm -bdm -bdm -bdm -bdm -bdv -bdm -beu -beW -bhW -bgm -mSG -nhE -bgs -bgs +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +cEb +dHr +hOI +eIl +fCp +opn +oeE +xvg +hKe +hKe bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ bgZ bgZ -bha -bha -bha +ygu +ygu +ygu bgZ bgZ -bTw -bTw +xNE +xNE bgZ -bTw -bTw +xNE +xNE bgZ bgZ -bha -bha -bha +ygu +ygu +ygu bgZ bgZ bgZ -bgu +tMU aen aen aen -bde -bgn +yeA +ncu bhn -bgn -bdo -kps +ncu +cxI +uPt aen aen aen @@ -108008,63 +89778,63 @@ asH asH asH asH -aVK -ahu -nJC -aje +fsw +pet +rtG +nmu qIU -aDC -csE -aKV +jKr +nGc +dHK bzm -eWX -aHZ -gXG -aHZ -aOK +dzU +ipR +hxV +ipR +xNI anE -aGM -aug -aug -aug -aHt +oDO +ihl +ihl +ihl +dGR anE -agG -ahu -azB -mmp -mmp -dDj -dDj -dDj -fWK -dDj -dDj -dDj -xlU -fWK -dDj -fWK -dDj -dDj -dDj -dDj -dDj -dDj -wpO -lLe -lLe -lLe -rki -lLe -ezs -aMi -aMi -aMi -aMi -aMi -byl -bze +jkT +pet +nJE +xbz +xbz +xbF +xbF +xbF +ufS +xbF +xbF +xbF +htu +ufS +xbF +ufS +xbF +xbF +xbF +xbF +xbF +xbF +dSP +gqc +gqc +gqc +vhj +gqc +kYj +ktB +ktB +ktB +ktB +ktB +rYT +oaM auR ylo ylo @@ -108169,80 +89939,80 @@ pdg pdg pdg ajq -bhc -bhc -bhc -fbe -bhc -bhe +rEm +rEm +rEm +pCZ +rEm +umr bhn bhn bhn aen aen mTa -bdf -bdc -bdg -bdm -bdv -bdm -beu -bdm -bdm -bdm -bdp -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bgs -bjM -blg +veo +wvJ +vjx +dHr +cEb +dHr +hOI +dHr +dHr +dHr +hWN +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +nnV +fYP aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bVD -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -caw -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bVD +nxn +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +eMU +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +nxn bgZ -bgu +tMU aen -bde +yeA bhn bhn bhn bhn bhn -bgn -xRM -bgV +ncu +nXh +bMF aen aen ajq @@ -108253,63 +90023,63 @@ ylo ylo ylo arJ -auV -ahu -nJC -aje +sSa +pet +rtG +nmu qIU -aCq -aCx -aCJ +hcL +gEe +fPU bzm -eWX -aHZ -fGV -aCN -aGz +dzU +ipR +wIQ +lhB +kDX anE -nSb -aug -aug -aug -aHt +voS +ihl +ihl +ihl +dGR anE -agG -ahu -ahu -ahu -ahu -lIq -ahu -ahu -nJC -ahu -ahu -ahu -ahu -nJC -ahu -nJC -ahu -ahu -ahu -ahu -ahu -ahu -nAE -aMi -aMi -wIk -eRX -aMi -gxb -vzv -aMi -aMi -aMi -aMi -bzd -bzf +jkT +pet +pet +pet +pet +skP +pet +pet +rtG +pet +pet +pet +pet +rtG +pet +rtG +pet +pet +pet +pet +pet +pet +pRo +ktB +ktB +cgb +tZb +ktB +xbK +dUP +ktB +ktB +ktB +ktB +sQd +xZK auR ylo ylo @@ -108414,11 +90184,11 @@ pdg pdg pdg ajq -bhq -bhc -kCk -fyO -bhc +wit +rEm +kfH +psq +rEm bhn bhn bhn @@ -108426,59 +90196,59 @@ bhn bhn aen mTa -bdf -bdc -bdg -bdm -bdm -bdm -bdm -bdm -bdm -bdm -bdm -bdm -beW +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +dHr +dHr +dHr +eIl aJm -bgm -bgm -nhE -bgs -bgs -bgs -bgs -bgs +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -nAR -bhb -bhb +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tTi +tyj +tyj bgZ -bgn -bdo +ncu +cxI bhn bhn bhn @@ -108486,9 +90256,9 @@ bhn bhn bhn bhn -xRM -bgn -bgV +nXh +ncu +bMF aen ajq ylo @@ -108498,63 +90268,63 @@ ylo ylo ylo arJ -agG -ahu -nJC -aje +jkT +pet +rtG +nmu qIU -aDC -csE -aKV +jKr +nGc +dHK bzm -aMb -aOF -iTL -gXG -aks +dTt +onC +bmR +hxV +rJA anE -aGO -qnb -aug -lId -aHx +wHu +dHx +ihl +jFw +oDo anE -aOo -ffQ -ffQ -aMU -ffQ -ffQ -ffQ -pZf -nJC -rZC -ffQ -uJI -ffQ -nGU -pZf -nJC -ahu -wQG -emb -xap -emb -emb +gVs +fZZ +fZZ +lIs +fZZ +fZZ +fZZ +mMb +rtG +tVI +fZZ +sph +fZZ +hLg +mMb +rtG +pet +tXF +udt +sWQ +udt +udt auK -qAk -qAk -qAk -feZ -aMi -gxb -uJq -qAk -qAk -aZW -qAk -byj -bym +kHS +kHS +kHS +dlj +ktB +xbK +cOY +kHS +kHS +eGK +kHS +qlK +ktE auR ylo ylo @@ -108660,70 +90430,70 @@ pdg pdg ajq ajq -bhc -bhc -fbe -bhc +rEm +rEm +pCZ +rEm bhn bhn bhn bhn -bgu +tMU aen mTa -bdf -bdc -bdg -bdp -bdm -beq -bdm -bdm -beu -bdm -bdm -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bgs -bjN -blh +veo +wvJ +vjx +hWN +dHr +ucK +dHr +dHr +hOI +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +rSv +vTt aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bgZ bgZ bgZ bgZ -bTv -bhb -bhb -bhb -bhb +jNv +tyj +tyj +tyj +tyj bgZ bgZ bgZ bgZ bgZ -bhb -bhb -bha -bgn -bgn +tyj +tyj +ygu +ncu +ncu bhn bhn bhn @@ -108731,9 +90501,9 @@ bhn bhn bhn bhn -xRM -bgn -bgn +nXh +ncu +ncu ajq ajq ylo @@ -108743,10 +90513,10 @@ ylo arJ arJ arJ -aAX -ahu -nJC -aje +daQ +pet +rtG +nmu qIU qIU qIU @@ -108754,13 +90524,13 @@ qIU qIU ajX ajX -eWX -gXG -aks +dzU +hxV +rJA anE anE anE -bDv +ehQ anE anE anE @@ -108772,16 +90542,16 @@ anE bkJ bkJ anE -aHk +tel anE anE anE anE -lIf -agG -nJC -ahu -pbS +vsw +jkT +rtG +pet +mBO auJ auJ auJ @@ -108790,15 +90560,15 @@ auJ auJ auJ auJ -iQL -eRX -gxb -kjH -bjs -bjs +tqy +tZb +xbK +mvs +ygA +ygA auJ -aCs -aCs +igq +igq aEx aEx ylo @@ -108905,80 +90675,80 @@ pdg pdg pdg ajq -bhc -bhc -fbe -bhc +rEm +rEm +pCZ +rEm bhn bhn bhn bhn -bgu +tMU aen mTa -bdf -bdc -bdh -bdm -bdm -bdm -bdm -bdm -bdm -bdm -beM -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs +veo +wvJ +bHp +dHr +dHr +dHr +dHr +dHr +dHr +dHr +hmU +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bhl bhl bgZ bgZ -bTx -bTx -bTx +vaz +vaz +vaz bgZ bgZ bhl bhl bhl bgZ -bhb -bhb -bha -bgn -bgn +tyj +tyj +ygu +ncu +ncu bhn bhn bhn bhn bhn bhn -bgn -xRM -bgn -bgn +ncu +nXh +ncu +ncu ajq ylo ylo @@ -108986,59 +90756,59 @@ ylo agD agD arJ -brF -llM -ajc -ahu -nJC -aje +nwO +sMa +cOp +pet +rtG +nmu ajX ajX -bCj -aNG -aNM -bUa +fkh +hFg +xSa +xKa ajX -eWX -gXG -aks -aDh +dzU +hxV +rJA +wqV anE -aJM -aug -umo -aue -aHK -aIN -aKW -aLb -aLd -aue -aue -aue -bkK -hYZ -umo -aOv -aOy +ecU +ihl +lym +dbb +emV +enj +uWl +kye +dhb +dbb +dbb +dbb +saY +okF +lym +sax +kCh anE anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -hbB -bxt -bxt -njh -aCg -bxC +sxs +ryk +ryk +jrU +rLc +dRU auK -iQL -aMi -gxb -kjH +tqy +ktB +xbK +mvs bvj bvj aEx @@ -109150,50 +90920,50 @@ pdg pdg pdg ajq -bhc -bhc -euV -bhc +rEm +rEm +hCb +rEm bhn bhn bhn -bht -bgn -bgV +oFs +ncu +bMF mTa -bdf -bdc -bdg -bdm -bdm -bdm -beu -bdm -bdm -bdm -bdm -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bhf -bjO -bTq +veo +wvJ +vjx +dHr +dHr +dHr +hOI +dHr +dHr +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +qGs +lIi +ggC aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -109209,83 +90979,83 @@ bgZ bgZ bhl bgZ -bhb -bhb -bha -bgn -bdq -bdq +tyj +tyj +ygu +ncu +idK +idK bhn bhn bhn -bgn +ncu bhn -bgn -etD -bdq -bgn +ncu +nex +idK +ncu ajq ylo ylo ylo agD -ajc -aVD -dtd -llM -ajc -ahu -nJC -aje +cOp +rvP +xgA +sMa +cOp +pet +rtG +nmu ajX -aDg -tbc -tbc -tbc -neB +heN +sBU +sBU +sBU +koF akd -eWX -gXG -aks -aDv +dzU +hxV +rJA +xgO anE -aJQ -aug -aug -dsw -rxD -rxD -rxD -rxD -wda -rxD -rxD -rxD -rxD -qeh -lFY -aug -wrX -bRX +phw +ihl +ihl +waA +kpe +kpe +kpe +kpe +gFa +kpe +kpe +kpe +kpe +iRU +qsF +ihl +jRS +vYX anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -bxn -aMi -fbs -aMi -aMi -aat +oRZ +ktB +fTX +ktB +ktB +wCx auK -bxJ -aMi -gxb -kjH -bjs -bjs +sRV +ktB +xbK +mvs +ygA +ygA aEx ylo ylo @@ -109396,49 +91166,49 @@ pdg pdg ajq ajq -bhc -fbe -bhc -bhc -bhn -bhq -bht -bgn -bgu +rEm +pCZ +rEm +rEm +bhn +wit +oFs +ncu +tMU mTa -bdf +veo aJm -bdi -bdr +wjT +mfv aJm -bdr -bdr +mfv +mfv aJm -bdr -bdr +mfv +mfv aJm -bdr -bfw +mfv +jmX aJm -bgm -dNa -cqy -bgs -bgs -bgs -bgs -bgs +opn +pLw +wyf +hKe +hKe +hKe +hKe +hKe aJm -eUE -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +ipW +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -109454,18 +91224,18 @@ caS bgZ bhl bgZ -bhb -bhb -bha -bgu +tyj +tyj +ygu +tMU aen aen -bdf +veo bhn bhn -bgn -bdq -bgv +ncu +idK +oNN mTa aen ajq @@ -109474,61 +91244,61 @@ ylo ylo ylo agD -agY -agY -ajc -sYk -ahu -ahu -nJC -aje +fVh +fVh +cOp +vLT +pet +pet +rtG +nmu akd -aIh -aHZ -bTM -bTQ -aks +gOc +ipR +vDD +iCu +rJA akd -eWX -lYO -elX +dzU +nvc +ebR ajX anE -aJT -aKw -qnb -hYZ -lId -auf -auf -qnb -hYZ -lId -auf -aOj -qnb -pnc -wda -qAg -wrX -bRY +wCW +iiP +dHx +okF +jFw +oYi +oYi +dHx +okF +jFw +oYi +kOV +dHx +mYA +gFa +kiD +jRS +fBV anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -bxm -aCs -bxu -bxy -aMi -fVm +ksf +igq +kXo +imo +ktB +xmG auJ -rCb -aMi -gxb -kjH +xwZ +ktB +xbK +mvs bvk bvj aEx @@ -109641,56 +91411,56 @@ pdg pdg pdg ajq -bhc -vSF -enU -enU -enU -enU -enU -diw -xWE +rEm +qza +lCX +lCX +lCX +lCX +lCX +xGt +eQI mvL -bdf -bdc -bdg -bdm -bdw -bdm -bdm -bdm -bdm -bdm -bds -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bhj -bjP -bTr +veo +wvJ +vjx +dHr +xgk +dHr +dHr +dHr +dHr +dHr +xNu +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +oRM +wPy +dHA aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bhb -bhb +tyj +tyj bgZ bgZ bgZ bhg bhg -bhh -bhh +vqk +vqk bhg bhg bhg @@ -109699,16 +91469,16 @@ bhg bgZ bgZ bgZ -bhb -bhb +tyj +tyj bgZ -bgn -bgV +ncu +bMF aen -bdn +tbN bhn -bgn -bgv +ncu +oNN aen cwF mTa @@ -109719,61 +91489,61 @@ ylo ylo ylo arJ -aXx -aXS -aBT -sYk -ahu -ahu -nJC -aje +rUo +kyE +tNi +vLT +pet +pet +rtG +nmu akd -eWX -aHZ -bTN -bTV -aks +dzU +ipR +gBG +djP +rJA akd -eWX -gXG -aks -aDB +dzU +hxV +rJA +nvH anE anE anE anE -bDw +mWi anE anE anE bDH -bDJ +ybo bDH anE anE -aOk -ekM -hYZ -lId -aWO -bRZ +pBM +spp +okF +jFw +crV +gzt anE -agG -nJC -ahu -vzc +jkT +rtG +pet +iKK auJ -bEg -bxr -bxv -bxz -pCi -lLe -bwq -lLe -lLe -dMo -kzd +uQs +hHC +gGB +vhi +kVu +gqc +tfm +gqc +gqc +wfc +cQU auJ auJ aEx @@ -109887,72 +91657,72 @@ pdg pdg ajq ajq -bhc -bhc -bhs -bhc -bhc -bhe -bhc +rEm +rEm +tYA +rEm +rEm +umr +rEm bhn mTa -bdf -bdc -bdg -bdm -bdm -bdm -bds -bdm -bdm -bdm -bdm -bdm -beW -bgz -bgm -bgm -nhE -bgs -bgs +veo +wvJ +vjx +dHr +dHr +dHr +xNu +dHr +dHr +dHr +dHr +dHr +eIl +dMn +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI +iDg +iDg +scm +iDg +iDg +npa bgZ bgZ -bhb -bhb -bhb +tyj +tyj +tyj bgZ bhg bhg bhg -bhh -bhh -bhh -bhh -bhh -bhh +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg bgZ -bhb -bhb -bhb +tyj +tyj +tyj bgZ bgZ -bgu +tMU xzW cZu -nJR -xWE +jsD +eQI cZu cZu xFN @@ -109964,65 +91734,65 @@ ylo ylo ylo agD -ahm -ahm -ajc -sYk -ahu -ahu -nJC -aje +ofl +ofl +cOp +vLT +pet +pet +rtG +nmu akd -bwc -aHZ -lHI -bTW -aks +wyV +ipR +vDD +wOd +rJA akd -eWX -gXG -aks -aGY +dzU +hxV +rJA +gKs anE anE -bDs -uRs -rGC -wrX +isw +mQe +kJB +jRS anE -aMf -iav -hYZ -umo -aNE +oLG +tvn +okF +lym +oij anE anE anE -aHk +tel anE anE anE anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -hqv -aCs -bxw -bxA -fbs -bxF +int +igq +lBt +kjR +fTX +wic auJ -wYP -aMi -gxb -kzd +rCB +ktB +xbK +cQU auJ -bzM -bya -bvq +qrC +kjv +nKY aEx aEx ylo @@ -110132,74 +91902,74 @@ ylo ylo ylo ajq -bhc -bhc -bhc -bhc -bhc +rEm +rEm +rEm +rEm +rEm bhn bhn bhn mTa -bdf -bdc -bdg -bds -bdm -bdm -bdm -bdp -bdm -beL -bdm -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bgs -bgy -ejL +veo +wvJ +vjx +xNu +dHr +dHr +dHr +hWN +dHr +ubI +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +sxw +unb aJm -aJx -aJx -jNU -aJx -aJx -aJI +iDg +iDg +scm +iDg +iDg +npa bgZ -bTt -bhb -bhb -bhb -bTu +vmx +tyj +tyj +tyj +mEK bhg bhg -bhh -bhh -bhh -bhh -bhh -bhh -bhh +vqk +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg -bTC -bhb -bhb -bhb -bTt +mqQ +tyj +tyj +tyj +vmx bgZ -bgu +tMU mTa aen -bdf +veo bhn -bdo -bgV +cxI +bMF aen aen ajq @@ -110209,66 +91979,66 @@ ylo ylo ylo agD -ajc -aYy -dtd -nBi -mhq -ahu -nJC -aje +cOp +tUS +xgA +nHr +fLc +pet +rtG +nmu ajX -aMo -bTH -kBN -aHZ -aWn +vPG +ogN +uem +ipR +xmz ajX -rKN -gXG -aks -aHa +hkN +hxV +rJA +dej anE anE -bDt -vAX -aXZ -aYl +kFj +hPM +rSL +uMs anE -bDD -fOh -cnj -aMr -bDF +pYP +pCE +vpV +iCx +kFc anE -bsT -xjw -hYZ -umo -jYD -bSa +daA +lbj +okF +lym +vEn +uGi anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -bxo -byY -aMi -aMi -aMi -abw +uoW +ftF +ktB +ktB +ktB +wKO auK -bxJ -aMi -gxb -kjH +sRV +ktB +xbK +mvs auK -bxJ -aMi -ybq -bPe +sRV +ktB +uKm +pih aEx ylo ylo @@ -110378,74 +92148,74 @@ ylo ylo ajq ajq -bhc -bhc +rEm +rEm bhn bhn bhn bhn bhn mTa -bdf -bdc -bdg -bdm -bdm -bdm -bdm -bdm -bdm -bdm -beN -bdm -beW +veo +wvJ +vjx +dHr +dHr +dHr +dHr +dHr +dHr +dHr +hWD +dHr +eIl aJm -bgm -bgm -nhE -bgs -bgs -bgs -bgs -bgs +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -aJx -aJx -jNU -aJx -aJx -aJI +iDg +iDg +scm +iDg +iDg +npa bgZ -bTt -bhb -bhb -bhb -bTu +vmx +tyj +tyj +tyj +mEK bhg bhg bhg -bhh -bhh -jJm -bhh -bhh -bhh +vqk +vqk +xRe +vqk +vqk +vqk bhg bhg -bTC -bhb -bhb -bhb -bTt +mqQ +tyj +tyj +tyj +vmx bgZ -bgu +tMU mTa -bde +yeA bhn bhn bhn -bgn -bdo +ncu +cxI ajq ajq ylo @@ -110456,64 +92226,64 @@ ylo agD agD arJ -wYt -edy -llM -ahu -nJC -aWH +lFc +wpq +sMa +pet +rtG +kkP ajX -aMq -aHZ -lYO -wfK -wfK -bUc -wfK -pwO -aks -aFu +thO +ipR +nvc +fNV +fNV +cLM +fNV +vhA +rJA +oaK anE anE -bRz -auf -bDy -kkR +jnS +oYi +uyc +xxp anE -wkG -auf -aXg -auf -rdA +lMt +oYi +qTf +oYi +dhk anE -bsU -aug -cnj -cqT -wrX -bSb +crc +ihl +vpV +thR +jRS +tzl anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ -bxp -bxs -bjt -gEf -qAk -bxI +sYT +rKz +hWB +lMs +kHS +kIg auK -bxJ -aMi -gxb -kjH +sRV +ktB +xbK +mvs auK -bxJ -byb -aMi -bzU +sRV +spa +ktB +qqi auR ylo ylo @@ -110623,74 +92393,74 @@ ylo ylo ylo ajq -bhc -bhc -bhc +rEm +rEm +rEm bhn bhn bhn -bgu +tMU mTa -bdf -bdc -bdg -bdm -bef -bdm -bdm -bdm -bds -bdm -bdm -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs -bgs -sos -sos +veo +wvJ +vjx +dHr +oXP +dHr +dHr +dHr +xNu +dHr +dHr +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe +hKe +wmR +wmR aJm -aJx -aJx -jNU -aJx -aJx -aJI +iDg +iDg +scm +iDg +iDg +npa bgZ -bTt -bhb -bhb -bhb -bTu +vmx +tyj +tyj +tyj +mEK bhg bhg -bhh -bhh -bhh -bhh -bhh -bhh -bhh +vqk +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg -bTC -bhb -bhb -bhb -bTt +mqQ +tyj +tyj +tyj +vmx bgZ -bgu +tMU mTa -bdn +tbN bhn bhn -bgn -bgn -bgn +ncu +ncu +ncu ajq ylo ylo @@ -110702,21 +92472,21 @@ ylo ylo arJ arJ -hYo -lIY -ahu -nJC -aje +fhg +oaZ +pet +rtG +nmu ajX -bxU -aHZ -xWm -bUx -lUI +rlc +ipR +hKS +oWu +dSp ajX -iTL -gXG -aGz +bmR +hxV +kDX ajX anE anE @@ -110731,17 +92501,17 @@ anE anE anE anE -buw -aug -bDC -bRV -aOB +ksP +ihl +ebW +hfP +gTC anE anE -agG -nJC -ahu -pbS +jkT +rtG +pet +mBO auJ auJ auJ @@ -110750,15 +92520,15 @@ auJ buZ auJ auJ -bzJ -aMi -dqQ -hBF +uJb +ktB +iAK +pTX auJ -rCb -vks -aMi -bzV +xwZ +eha +ktB +vvH auR ylo ylo @@ -110869,72 +92639,72 @@ ylo ylo ajq ajq -bhc -bhc +rEm +rEm bhn bhn -bgn -bgv +ncu +oNN mTa -bdf -bdc -bdj -bdm -bdm -bdm -beK -bdm -bdm -bdm -bdp -bdm -beW -bhW -bgm -bgm -nhE -bgs -bgs +veo +wvJ +njO +dHr +dHr +dHr +xPC +dHr +dHr +dHr +hWN +dHr +eIl +fCp +opn +opn +xvg +hKe +hKe bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI +iDg +iDg +scm +iDg +iDg +npa bgZ bgZ -bhb -bhb -bhb +tyj +tyj +tyj bgZ bhg bhg -bhh -bhh -bhh -bhh -bhh -bhh +vqk +vqk +vqk +vqk +vqk +vqk bhg bhg bhg bgZ -bhb -bhb -bhb +tyj +tyj +tyj bgZ bgZ -bgu +tMU mTa aen -bdn +tbN bhn -bgn -bgn +ncu +ncu ajq ajq ylo @@ -110947,63 +92717,63 @@ ylo ylo ylo agD -hYo -llM -ahu -nJC -aje +fhg +sMa +pet +rtG +nmu akd -bDa -aHZ -uSc -gRH -aks +oSU +ipR +pOn +vDD +rJA akd -eWX -gXG -gSu -tbc -tbc -tbc -tbc -tbc +dzU +hxV +vah +sBU +sBU +sBU +sBU +sBU ajX -aOL -tbc -aOP -aYZ -aLe -aLg -aLm +wvF +sBU +snw +xBu +tPO +nZa +njq anE -aOn -auf -bRy -bRW -rdA +gAc +oYi +hcv +lLd +dhk anE -wYt -odN -nJC -ahu -pbS +lFc +vPb +rtG +pet +mBO auK -mQF -bvo -tyb -aYE -aCg -aCg +slZ +uum +kCL +hCM +rLc +rLc auJ -rCb -aMi -dqQ -lLe -bxV -lLe -aMn -uJq -bzY +xwZ +ktB +iAK +gqc +xCk +gqc +mtL +cOY +ciX aEx ylo ylo @@ -111114,72 +92884,72 @@ ylo ylo ylo ajq -bhe -bhc -bhu +umr +rEm +gxe bhn -bgu +tMU aen mTa -bdf -bdc -bdk -bdt -bdt -bdt -bdt -bdt -bdt -bdt -bdt -beU -bfO -bhW -bgm -bgm -nhE -bgs -bgs -bgs -bld -bTs +veo +wvJ +uEV +ore +ore +ore +ore +ore +ore +ore +ore +dXf +jdd +fCp +opn +opn +xvg +hKe +hKe +hKe +slu +omf aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bhb -bhb +tyj +tyj bgZ bgZ bgZ bhg bhg bhg -bhh -bhh +vqk +vqk bhg -bhh +vqk bhg bhg bgZ bgZ bgZ -bhb -bhb +tyj +tyj bgZ -bgn -bgv +ncu +oNN mTa aen aen -bdn -bgn -bgn +tbN +ncu +ncu ajq ylo ylo @@ -111192,34 +92962,34 @@ ylo ylo ylo agD -hYo -llM -ahu -ebE -aje +fhg +sMa +pet +vtj +nmu akd -bRI -aHZ -gXG -aHZ -aks +pta +ipR +hxV +ipR +rJA akd -eWX -gXG -aHZ -aHZ -aHZ -aHZ -aHZ -aHZ -bej -aHZ -aHZ -aHZ -aHZ -aHZ -aHZ -aks +dzU +hxV +ipR +ipR +ipR +ipR +ipR +ipR +wjf +ipR +ipR +ipR +ipR +ipR +ipR +rJA anE anE anE @@ -111227,27 +92997,27 @@ anE anE anE anE -aWs -odN -nJC -ahu -pbS +gpO +vPb +rtG +pet +mBO auK -bxJ -aMi -aMi -aMi -uuu -lLe -bwz -lLe -lLe -rki -ezs +sRV +ktB +ktB +ktB +irA +gqc +opm +gqc +gqc +vhj +kYj auJ -bvm -bvp -bvO +wSU +kvF +ubs aEx aEx ylo @@ -111360,45 +93130,45 @@ ylo ylo ajq ajq -bht -bgn -bgn -bgu +oFs +ncu +ncu +tMU aen mTa -bdf +veo aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bdc -bdc +wvJ +wvJ aJm -bgm -bgm -nhE -bgs -bgs -bgs -bgs -bgs +opn +opn +xvg +hKe +hKe +hKe +hKe +hKe aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -111414,16 +93184,16 @@ caS bgZ bhl bgZ -bhb -bhb -bha -bgu +tyj +tyj +ygu +tMU aen mTa aen aen aen -bdf +veo ajq ajq ylo @@ -111437,58 +93207,58 @@ ylo ylo ylo agD -hYo -llM -ahu -nJC -aje +fhg +sMa +pet +rtG +nmu akd -aMu -aHZ -gXG -bTX -dII +kNY +ipR +hxV +kqh +vze akd -eWX -fGV -wfK -wfK -wfK -wfK -wfK -wfK -aHJ -wfK -wfK -wfK -aCN -aHZ -aHZ -gSu -tbc -tbc -tbc -aLT -tbc -tbc +dzU +wIQ +fNV +fNV +fNV +fNV +fNV +fNV +tuC +fNV +fNV +fNV +lhB +ipR +ipR +vah +sBU +sBU +sBU +utd +sBU +sBU akd -skc -eUf -nJC -ahu -ntp +mes +llq +rtG +pet +ezv auJ -rCb -aMi -aMi -aMi -iQs -gpn +xwZ +ktB +ktB +ktB +nqU +wpr auJ auJ auJ auJ -bxP +cgA auJ auJ auJ @@ -111606,44 +93376,44 @@ ylo ylo ajq ajq -bgn -bgn -bgv +ncu +ncu +oNN aen mTa -bdn -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bgn +tbN +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +idK +ncu aJm -bgm -bgm -nhE -bgs -bgs -bgs -bld -bTs +opn +opn +xvg +hKe +hKe +hKe +slu +omf aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bgZ @@ -111659,10 +93429,10 @@ bgZ bgZ bhl bgZ -bhb -bhb -bha -bgu +tyj +tyj +ygu +tMU aen mTa aen @@ -111682,61 +93452,61 @@ ylo ylo arJ arJ -hYo -llM -ahu -nJC -aje +fhg +sMa +pet +rtG +nmu ajX -bCZ -rEG -pwO -gOP +vcV +mcU +vhA +hFF ajX ajX -aFA -aGe -oqI -oqI -oqI -aGe -aGe +uab +jcs +tuM +tuM +tuM +jcs +jcs ajX ajX -iTL -aHZ -aHZ -gXG -aHZ -aHZ -aHZ -aHZ -aHZ -aHZ -tGr -aHZ -aHZ -bej -ahu -ahu -caG -dDj -dDj -baY -lLe -lLe -lCa -kdH -dMo -ujX -bwV -bwZ +bmR +ipR +ipR +hxV +ipR +ipR +ipR +ipR +ipR +ipR +jkt +ipR +ipR +wjf +pet +pet +iqG +xbF +xbF +nEh +gqc +gqc +hov +neq +wfc +mzA +uHo +tOI auJ -bxN -gxb -swf -aCg -byc +tkk +xbK +tKr +rLc +cdC auR ylo ylo @@ -111851,8 +93621,8 @@ ylo ylo ylo ajq -bgn -bgv +ncu +oNN aen aen vyB @@ -111868,46 +93638,46 @@ cZu cZu cZu nbS -bdf +veo aJm -bgm -bgm -oBq +opn +opn +gfP bgr bgr bgr bgr bgr aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bhl bhl bhl bgZ bgZ -bTy -bTy -bTy +qUz +qUz +qUz bgZ bgZ bhl bhl bhl bgZ -bhb -bhb -bha -bgu +tyj +tyj +ygu +tMU aen mTa aen @@ -111926,62 +93696,62 @@ ylo agD agD arJ -wYt -whe -sOq -ahu -nJC -phX +lFc +dTT +jRJ +pet +rtG +mhd ajX -aMV -gXG -ptq -mgt +wCc +hxV +pan +gUE ajX -aOR -ost -aGg -aGE -aGE -aGE -aKb -ost -aOS +lfz +sCh +gms +dWx +dWx +dWx +ydm +sCh +ews ajX -aIh -aHZ -aHZ -lYO -iuD -wfK -azG -wfK -wfK -wfK -wfK -aLW -aLW -aLW -mmp -dDj -azA -ahu -ahu -bwx -aMi -aMi -bjv -tSE -wsn -eRX -bwW -ydU +gOc +ipR +ipR +nvc +nVS +fNV +sik +fNV +fNV +fNV +fNV +lbm +lbm +lbm +xbz +xbF +lAY +pet +pet +mst +ktB +ktB +hYw +qHD +orE +tZb +jfS +qqi auJ -bxK -evv -uYe -aMi -byd +faC +umY +xRm +ktB +dap auR ylo ylo @@ -112104,55 +93874,55 @@ mTa aen aen aen -bde -bdo -bdo -bgV +yeA +cxI +cxI +bMF aen aen aen bJE mTa -bdf -bdc -bgl -bgm -nhE -bgm -bgm -bgm -bgm -bgm +veo +wvJ +szf +opn +xvg +opn +opn +opn +opn +opn aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bha -bhb -bhb +iDg +iDg +scm +iDg +iDg +npa +ncu +ygu +tyj +tyj bgZ bgZ bgZ bgZ bgZ -bhb -bhb -bhb -bhb -bhb +tyj +tyj +tyj +tyj +tyj bgZ bgZ bgZ bgZ bgZ -bhb -bhb -bha -bgu +tyj +tyj +ygu +tMU aen mTa aen @@ -112169,64 +93939,64 @@ ylo ylo ylo agD -ajc -aVD -dtd -duC -cJU -ahu -nJC -aje +cOp +rvP +xgA +rQm +vTR +pet +rtG +nmu ajX -vmJ -gXG -tja -bTZ +ion +hxV +rmF +pVe ajX -aOH -aFD -luQ -luQ -luQ -luQ -luQ -luQ -wnB +dtD +esG +sXH +sXH +sXH +sXH +sXH +sXH +tIy ajX -aIz -iTL -tja -wWr -fGU -aHZ -eVQ -oqI -oqI -oqI -oqI -oqI -oqI +cjO +bmR +rmF +fTZ +ccD +ipR +vcH +tuM +tuM +tuM +tuM +tuM +tuM akd -vQt -ulq -nJC -ahu -voo +ctt +qQm +rtG +pet +jwG auJ -wYP -aMi -aMi -aMi -aMi -kAq -aMi -tae +rCB +ktB +ktB +ktB +ktB +npb +ktB +chz auJ auJ -bxT -aMi -aMi -thp +loe +ktB +ktB +jEy auR ylo ylo @@ -112347,57 +94117,57 @@ aen aen vFJ aen -bde -bdo -bgn +yeA +cxI +ncu bhn bhn -bgn -bdo -bgV +ncu +cxI +bMF aen aen mTa -bdf -bdc -bgl -bgm -nhE -bgm -bgm -bgm -bgm -bgm -aDV -aJx -aJx -jNU -aJx -aJx -aJI -bgn +veo +wvJ +szf +opn +xvg +opn +opn +opn +opn +opn +dNe +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bhb -bhb -qgR -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb +tyj +tyj +sDw +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj bgZ -inY +yhm cZu xoj aen @@ -112414,18 +94184,18 @@ ylo ylo ylo agD -agY -agY -ajc -sYk -ahu -ahu -nJC -aje +fVh +fVh +cOp +vLT +pet +pet +rtG +nmu ajX -vmJ -gXG -rGu +ion +hxV +cxJ xZB xZB xZB @@ -112439,12 +94209,12 @@ wZg xZB xZB xZB -eWX -bsB -aOD -bsG -aHZ -gqK +dzU +ydz +wPL +deK +ipR +lyX ajX ajX akd @@ -112452,25 +94222,25 @@ akd akd ajX ajX -aWs -odN -nJC -ahu -pbS +gpO +vPb +rtG +pet +mBO auK -bxJ -aMi -aMi -aMi -aMi -aMi -aMi -kjH -tWD +sRV +ktB +ktB +ktB +ktB +ktB +ktB +mvs +jpk auJ -bvL -bxW -bxZ +kks +jdC +vsV aEx aEx ylo @@ -112592,66 +94362,66 @@ ajq aen aen aen -bdf +veo bhn bhn bhn bhn bhn bhn -bgn -bdo -bgV +ncu +cxI +bMF mTa -bdf -bdc -bgl -bgm -nhE -bgm -bgm -uPK -bgm -bgm +veo +wvJ +szf +opn +xvg +opn +opn +sfP +opn +opn aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu bgZ -bVD -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bhb -bVD +nxn +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +tyj +nxn bgZ -wcB +gTM aen aen ajq ajq apV apV -bKH -bKJ -bKL +qzV +cAG +pYg apV apV ylo @@ -112659,17 +94429,17 @@ ylo ylo ylo arJ -aXx -aXT -aBT -sYk -ahu -ahu -nJC -aje +rUo +ghI +tNi +vLT +pet +pet +rtG +nmu ajX ajX -bUh +odJ ajX xZB xZB @@ -112684,34 +94454,34 @@ akv xZB xZB xZB -eWX -bsB -gok -bsG -aHZ -gqK +dzU +ydz +odk +deK +ipR +lyX ajX -iGT -tbc -tbc -tbc -vdt +gCS +sBU +sBU +sBU +jhU ajX -wYt -odN -nJC -ahu -pbS +lFc +vPb +rtG +pet +mBO auK -bvn -bwi -tBI -bxx -aMi -uJq -qAk -kad -bwY +dJa +tpN +wFb +pDJ +ktB +cOY +kHS +fGA +jZa aEx auR auR @@ -112836,9 +94606,9 @@ ylo ajq ajq aen -bde -bgn -bgn +yeA +ncu +ncu bhn bhn bhn @@ -112846,113 +94616,113 @@ bhn bhn bhn bhn -bgu +tMU mTa -bdf -bdc -bgl -bgm -gGT -sjL -sjL -wvx -sjL -sjL -hCJ -vCj -vCj -jHa -aJx -aJx -aJI -bgn +veo +wvJ +szf +opn +xoS +oWx +oWx +dGv +oWx +oWx +wdw +pCA +pCA +maY +iDg +iDg +npa +ncu bgZ bgZ bgZ -bha -bha -bha -bha +ygu +ygu +ygu +ygu bgZ bgZ -bTz -bTA -bTB +vZO +nYx +gch bgZ bgZ -bha -bha -bha -bha +ygu +ygu +ygu +ygu bgZ bgZ bgZ -wcB +gTM aen ajq ajq apV apV -bKG -bKI -aUP -bKM -ovc +spM +idv +teo +dck +iJr apV apV ylo ylo ylo agD -ahm -ahm -ajc -sYk -ahu -ahu -nJC -aje +ofl +ofl +cOp +vLT +pet +pet +rtG +nmu ajX -vfK -gXG -aks +kyC +hxV +rJA xZB xZB xZB -anx -anx -anx -aZL -anx -anx -anx +mAf +mAf +mAf +iIY +mAf +mAf +mAf xZB xZB xZB -lHk -aOW -bsE -vsu -iTL -gqK +dDF +bqF +kqF +lhF +bmR +lyX akd -dzB -aHZ -aHZ -aHZ -sBV +oYy +ipR +ipR +ipR +lxQ ajX ajX -odN -nJC -ahu -pbS +vPb +rtG +pet +mBO auJ auJ auK auK auJ -wsQ +fQA auJ auK auK @@ -113081,127 +94851,127 @@ ylo ylo ajq ajq -bgn -bgn -bgn -bgn +ncu +ncu +ncu +ncu bhn bhn bhn bhn bhn bhn -bgu +tMU mTa -bdf +veo aJm -bgo -bgq -bgq -bgq -bgq -bgq -bgq -bgq +kEZ +lgh +lgh +lgh +lgh +lgh +lgh +lgh aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgn -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bgn +iDg +iDg +scm +iDg +iDg +npa +ncu +idK +idK +idK +idK +idK +idK +idK +ncu bgZ bgZ bgZ bgZ bgZ -nds -jBx -jBx -jBx -gRg -gRg -gRg -gRg -ehC +cCV +ewE +ewE +ewE +fqE +fqE +fqE +fqE +mHz ajq ajq apV apV -bKE -sor -amG -amG -amG -amQ -jGa +pNB +qKK +vea +vea +vea +nIK +fsI apV apV ylo ylo agD -ajc -aYy -dtd -llM -qUI -ahu -nJC -aWH +cOp +tUS +xgA +sMa +pRI +pet +rtG +kkP ajX -aWb -gXG -gSu -uGI +skO +hxV +vah +nyJ akv -anx -bUg -fgs -fgs -fgs -fgs -fgs -jmQ -anx +mAf +wfN +noc +noc +noc +noc +noc +kfI +mAf akv ajX ajX ajX ajX ajX -eWX -gqK +dzU +lyX akd -eWX -aHZ -bUr -aHZ -bZN -uag +dzU +ipR +rDV +ipR +nzv +fWS akd -odN -nJC -ahu -wJM -aCg -aCg -aCg -aCg -rCb -aMi -ybq -aCg -aCg -rlG +vPb +rtG +pet +cNs +rLc +rLc +rLc +rLc +xwZ +ktB +uKm +rLc +rLc +xTH aEx ylo ylo @@ -113327,35 +95097,35 @@ ylo ylo ajq ajq -bgn -bgn -bgn -bgn +ncu +ncu +ncu +ncu bhn bhn bhn bhn -bgn -bgv +ncu +oNN mTa -bdf +veo aJm aJm -bdc -bdc +wvJ +wvJ aJm aJm -bdc -bdc +wvJ +wvJ aJm aJm -aJx -aJx -jNU -aJx -aJx -aJI -bgu +iDg +iDg +scm +iDg +iDg +npa +tMU bJE aen aen @@ -113363,90 +95133,90 @@ aen aen aen aen -bdn -bdq -bdq -bdq -bdq -bdq -nrO +tbN +idK +idK +idK +idK +idK +hag aen aen aen -bdf -bgn -bgn -bgn +veo +ncu +ncu +ncu ajq ajq ylo aki -aUO -isY -amG -amG -hvz -amG -amG -drC -lQr +pIJ +dnK +vea +vea +cga +vea +vea +jPR +qCL aki ylo ylo agD agD arJ -brF -llM -ajc -ahu -nJC -aje +nwO +sMa +cOp +pet +rtG +nmu ajX -mwk -gXG -cLh -hPL +sXs +hxV +cCC +pCK akd -anx -sip -agB -ahh -ahU -aiC -ajF -egZ -anx +mAf +nFd +gIw +paf +fDE +cSe +oLJ +dvo +mAf akv -akr -tbc -jPe -oOz +rFe +sBU +dyh +jRK akd -rKN -gqK +hkN +lyX akd -eWX -aHZ -bUv -aHZ -tja -kSx +dzU +ipR +hFq +ipR +rmF +iSx akd -odN -nJC -ahu -ajc -aMi -aMi -uJq -hEH -qAk -qAk -qAk -qAk -wYP -kjH +vPb +rtG +pet +cOp +ktB +ktB +cOY +jdJ +kHS +kHS +kHS +kHS +rCB +mvs aEx aEx ylo @@ -113573,41 +95343,41 @@ ylo ylo ajq ajq -bgn -bgn -bgn -bgn -bgn -bhn -bgn -bgv +ncu +ncu +ncu +ncu +ncu +bhn +ncu +oNN aen mTa -bdn -bdq -bdq -bdq -bgn -bgn -bdq -bdq -bdq -bdq -bgn -aJn -aJx -tMX -vCj -vCj -gWU -xWE +tbN +idK +idK +idK +ncu +ncu +idK +idK +idK +idK +ncu +poN +iDg +xRn +pCA +pCA +uwT +eQI cZu cZu -dBy -jwv -jwv -jwv -pVo +qgi +sQs +sQs +sQs +kfp cZu cZu ejl @@ -113615,9 +95385,9 @@ cZu cZu cZu xoj -bde -bdo -bdo +yeA +cxI +cxI bhn bhn bhn @@ -113626,15 +95396,15 @@ ajq ylo ylo aki -iZZ -saV -amG -amG -bKK -amG -wIY -saV -pDt +wkb +mlB +vea +vea +hBt +vea +nNO +mlB +daF aki ylo ylo @@ -113643,56 +95413,56 @@ ylo arJ arJ arJ -tRM -ahu -nJC -aje +tOH +pet +rtG +nmu ajX -iqE -lib -aku -xJW +uMR +tDS +kPA +hPq akd -anx -sip -agE -ahj -aif -aiM -ajO -egZ -anx +mAf +nFd +lCs +pQb +klr +fDk +xvS +dvo +mAf akv -pWE -rEG -wfK -wfK -lyd -wfK -eKV +eiD +mcU +fNV +fNV +dhX +fNV +klf ajX -rKN -aHZ -bUt -aHZ -aks +hkN +ipR +neL +ipR +rJA ajX ajX -odN -nJC -ahu -wQG -qAk -wYP -fsn -aCs -aCs -aCs -aCs -aCs -bxJ -pxj -dxB +vPb +rtG +pet +tXF +kHS +rCB +szr +igq +igq +igq +igq +igq +sRV +ded +fGd auR ylo ylo @@ -113820,11 +95590,11 @@ ylo ajq ajq ajq -bgn -bgn -bgn -bdq -bgv +ncu +ncu +ncu +idK +oNN opW aen vyB @@ -113832,35 +95602,35 @@ cZu cZu cZu cZu -nJR -xWE +jsD +eQI cZu cZu cZu cZu -nJR -rZR -vCj -jHa -aJx -aJx -aJI -bgu +jsD +nYk +pCA +maY +iDg +iDg +npa +tMU aen -bde +yeA bhn -bgn +ncu bhn bhn -bgn -bgV +ncu +bMF aen mTa aen aen -bde -bdo -bgn +yeA +cxI +ncu bhn bhn bhn @@ -113871,15 +95641,15 @@ ylo ylo ylo aki -iZZ -saV -amG -amG -vLb -amG -amG -saV -pDt +wkb +mlB +vea +vea +jdp +vea +vea +mlB +daF aki ylo ylo @@ -113888,56 +95658,56 @@ ylo ylo ylo arJ -auv -ahu -nJC -aje +rHg +pet +rtG +nmu ajX -dmD -gXG -cLh -alz +fhP +hxV +cCC +snq akd -anx -sip -agP -ahI -air -aiN -ajW -egZ -anx -noY -aHZ -gXG -aHZ -tja +mAf +nFd +odB +rdh +jHo +qMZ +oYs +dvo +mAf +gPY +ipR +hxV +ipR +rmF akd -iTL -fGV -bZp -wfK -wfK -lIW -aHZ -bZN -uag +bmR +wIQ +pxs +fNV +fNV +mjq +ipR +nzv +fWS akd -odN -nJC -ahu -pbS +vPb +rtG +pet +mBO auJ -bxJ -kqE -aCs +sRV +uar +igq wvG oGI bwP -aCs -bxJ -pxj -dxB +igq +sRV +ded +fGd auR ylo ylo @@ -114066,8 +95836,8 @@ ylo ylo ajq ajq -bgn -bgu +ncu +tMU aen aen aen @@ -114075,35 +95845,35 @@ aen vFJ aen aen -bde -bdo +yeA +cxI bhn -bgn -bgV +ncu +bMF aen aen aen -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgn -bdo +veo +poN +iDg +scm +iDg +iDg +npa +ncu +cxI bhn bhn bhn bhn bhn bhn -bgn -bgV +ncu +bMF vFJ aen aen -bdf +veo bhn bhn bhn @@ -114116,15 +95886,15 @@ ylo ylo ylo aki -bKD -bKF -rvD -jVn -vLb -iXU -ats -bKF -ksX +jtL +kxP +iGv +cTZ +jdp +wgh +klb +kxP +aFQ aki ylo ylo @@ -114133,56 +95903,56 @@ ylo ylo ylo arJ -auv -ahu -nJC -aje +rHg +pet +rtG +nmu ajX -dex -cuo -aku -hyY +fgK +wQb +kPA +itm akd -anx -sip -ahb -ahK -ais -aiP -ajY -egZ -anx +mAf +nFd +mdr +fgQ +jwu +mlQ +owv +dvo +mAf akv -iTL -rpi -aHZ -aWB +bmR +kUi +ipR +knO ajX ajX ajX ajX -iTL -aHZ -dxx -aHZ -tja -ucW +bmR +ipR +ruC +ipR +rmF +pKZ akd -odN -nJC -ahu -vzc +vPb +rtG +pet +iKK auJ -bEg -kjH -aCs +uQs +mvs +igq bxB iPo bxB -aCs -bxJ -kjH -dxB +igq +sRV +mvs +fGd auR ylo ylo @@ -114319,35 +96089,35 @@ aen aen aen aen -bde +yeA bhn bhn bhn bhn -bgn -bgV +ncu +bMF aen bJE -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgn -bdq -bgn +veo +poN +iDg +scm +iDg +iDg +npa +ncu +idK +ncu bhn bhn bhn bhn bhn bhn -bgn -bgV +ncu +bMF aen -bde +yeA bhn bhn bhn @@ -114364,9 +96134,9 @@ apV akl akl akl -sor -vLb -amQ +qKK +jdp +nIK akl akl akl @@ -114378,55 +96148,55 @@ agD agD arJ arJ -cWX -ahu -nJC -aje +lep +pet +rtG +nmu ajX -sRI -aHZ -cLh -tZT +tkP +ipR +cCC +egm akd -anx -sip -ahe -ahT -aiy -ajl -aka -egZ -anx +mAf +nFd +vmE +ghc +qaT +tsP +vjy +dvo +mAf akv -eWX -aHZ -tGr -gSu +dzU +ipR +jkt +vah ajX bUm bUm ajX -rhu -aHZ -bUs -aHZ -aks +cRS +ipR +hlB +ipR +rJA ajX ajX -odN -nJC -ahu -pbS +vPb +rtG +pet +mBO auJ -bxJ -kjH -aCs +sRV +mvs +igq sVo bxB sVo -nqE -bxJ -jcl +eVd +sRV +gti aEx aEx ylo @@ -114564,35 +96334,35 @@ aen aen aen aen -bdf -bgn +veo +ncu bhn bhn bhn bhn -bgu +tMU aen aen -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgu +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen -bdn -bgn +tbN +ncu bhn bhn bhn bhn -bgn -bgn -bgu +ncu +ncu +tMU aen -bdf +veo bhn ajq ajq @@ -114600,78 +96370,78 @@ ajq aSa aSa apJ -agH -agH -agH -agH -agH -akk -amG -aUQ -amG -amG -vLb -amG -amG -aUQ -amG -ant -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -nJC -aje +gMN +gMN +gMN +gMN +gMN +fzL +vea +jhJ +vea +vea +jdp +vea +vea +jhJ +vea +sGY +pet +pet +pet +pet +pet +pet +pet +pet +pet +rtG +nmu ajX -gUe -aHZ -tja -xUr +fAv +ipR +rmF +xWu akv -aZN -mzn -wet -wet -wet -wet -wet -eNn -rMX +itd +iZe +juW +juW +juW +juW +juW +hah +nue akv -jwx -iTL -aHZ -aHZ -exz -luQ -ffl +plz +bmR +ipR +ipR +poD +sXH +nGb ajX -mUu -aHZ -imK -aHZ -bZN -uag +qfu +ipR +wPI +ipR +nzv +fWS akd -odN -nJC -ahu -wJM -aCg -rCb -kjH -aCs +vPb +rtG +pet +cNs +rLc +xwZ +mvs +igq bwP iPo wvG -aCs -bxJ -kjH +igq +sRV +mvs aEx ylo ylo @@ -114808,35 +96578,35 @@ ajq ajq ajq aen -bde -bgn -bgn -bgn -bgn -bhn -bgn -bgv +yeA +ncu +ncu +ncu +ncu +bhn +ncu +oNN aen aen -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgu +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen -bdf -bgn -bgn -bhn -bgn -bgn -bgn -bgn -bdo +veo +ncu +ncu +bhn +ncu +ncu +ncu +ncu +cxI ajq ajq ajq @@ -114845,78 +96615,78 @@ ylo aSa apJ apJ -agH -amT -mYQ -mYQ -mYQ -akn -rDr -rDr -rDr -qeC -snU -qeC -rDr -rDr -rDr -azl -dDj -dDj -aCw -dDj -dDj -dDj -dDj -dDj -dDj -azA -aje +gMN +fUQ +bXT +bXT +bXT +kfh +reW +reW +reW +lVX +oYk +lVX +reW +reW +reW +dtr +xbF +xbF +kDG +xbF +xbF +xbF +xbF +xbF +xbF +lAY +nmu ajX -mvM -oqI -dII +cGa +tuM +vze xZB xZB xZB -anx -anx -anx -anx -anx -anx -anx +mAf +mAf +mAf +mAf +mAf +mAf +mAf xZB xZB xZB -eWX -aHZ -tja +dzU +ipR +rmF ajX -upN -luQ +eKp +sXH ajX -eWX -aHZ -aHZ -aHZ -tja -jPL +dzU +ipR +ipR +ipR +rmF +uCv akd -odN -nJC -ahu -wQG -qAk -wYP -kjH -aCs +vPb +rtG +pet +tXF +kHS +rCB +mvs +igq qLz iPo qLz -aCs -bxJ -pZt +igq +sRV +pFV aEx ylo ylo @@ -115054,32 +96824,32 @@ ylo ajq ajq ajq -bgn -bgn -bgn -bgn -bgn -bgv +ncu +ncu +ncu +ncu +ncu +oNN aen aen aen -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgu +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen -bdn -bgn -bgn -bgn -bgn -bgn -bgn +tbN +ncu +ncu +ncu +ncu +ncu +ncu ajq ajq ajq @@ -115090,19 +96860,19 @@ apJ apJ apJ arG -agH -oxr +gMN +sVH akl akl akl akl akl akl -bZv -sJe -amG -epg -bZv +ine +sHu +vea +vSm +ine akl akl akl @@ -115113,55 +96883,55 @@ apV arJ arJ arJ -ajc -ahu -nJC -aje +cOp +pet +rtG +nmu ajX ajX -vic -vic +wbR +wbR xZB xZB xZB -mYS -mYS -mYS -mYS -mYS -mYS -mYS +hyu +hyu +hyu +hyu +hyu +hyu +hyu xZB xZB xZB -kat -aWW -jwE +hQL +mdN +oLK ajX bUm bUm ajX -stg -xlR -fnz -sTt -icZ +hJm +kOq +mUr +vry +hyv ajX ajX -odN -nJC -ahu -pbS +vPb +rtG +pet +mBO auJ -bxJ -bGP -aCs +sRV +uTX +igq oGI bxB iPo -nqE -bxJ -jcl +eVd +sRV +gti aEx aEx ylo @@ -115302,26 +97072,26 @@ ajq ajq ajq ajq -bgn -bgu +ncu +tMU aen aen aen aen -bdf -aJn -aJx -jNU -aJx -aJx -aJI -bgu +veo +poN +iDg +scm +iDg +iDg +npa +tMU aen aen aen -bdf -bgn -bgn +veo +ncu +ncu ajq ajq ajq @@ -115331,12 +97101,12 @@ ylo aSa apJ apJ -agH -amT -mYQ -mYQ -mYQ -aDn +gMN +fUQ +bXT +bXT +bXT +cvv akl bjm aVg @@ -115344,9 +97114,9 @@ gZF amw akl akl -amU -amG -rXs +hfs +vea +qYU akl akl amw @@ -115358,24 +97128,24 @@ aki ylo ylo arJ -ajc -ahu -nJC -kTx -gXM +cOp +pet +rtG +tTN +eEi ajX ajX ajX xZB xZB bow -ulq -ahu -ahu -ahu -ahu -ahu -xSL +qQm +pet +pet +pet +pet +pet +xbj xZB xZB xZB @@ -115392,22 +97162,22 @@ ajX ajX ajX ajX -vjA -odN -nJC -ahu -vzc +xPh +vPb +rtG +pet +iKK auJ -bEg -kjH -aCs +uQs +mvs +igq buY oGI buY -aCs -bxJ -kjH -dxB +igq +sRV +mvs +fGd auR ylo ylo @@ -115553,14 +97323,14 @@ ajq ajq ajq aen -bdf -rLp -aJx -jNU -aJx -aJx -bnW -bgu +veo +txs +iDg +scm +iDg +iDg +ekz +tMU bJE ajq ajq @@ -115576,12 +97346,12 @@ apJ apJ apJ arG -agH -oxr -agH -agH -aTz -agH +gMN +sVH +gMN +gMN +kMV +gMN akl amk xBK @@ -115589,9 +97359,9 @@ hvZ gBh dfg akl -amU -amG -aUY +hfs +vea +kxh akl wvZ gBh @@ -115603,56 +97373,56 @@ aki ylo ylo arJ -ajc -ahu -nJC -ahu -giX -skc -skc -tHR -skc -skc -skc -eUf -ahu -ahu -ahu -ahu -ahu -kTx -skc -skc -skc -skc -tHR -skc -skc -skc -skc -qEe -skc -skc -skc -skc -tHR -skc -gRf -eUf -nJC -ahu -pbS +cOp +pet +rtG +pet +vUW +mes +mes +nfh +mes +mes +mes +llq +pet +pet +pet +pet +pet +tTN +mes +mes +mes +mes +nfh +mes +mes +mes +mes +sAt +mes +mes +mes +mes +nfh +mes +cUM +llq +rtG +pet +mBO auJ -bxJ -kjH -aCs +sRV +mvs +igq bwP oGI bwP -aCs -bxJ -kjH -dxB +igq +sRV +mvs +fGd auR ylo ylo @@ -115800,10 +97570,10 @@ qSi atJ atJ qSi -ajG -gak -ajG -avt +lvS +smz +lvS +lNZ aph xKu xKu @@ -115817,12 +97587,12 @@ aSa ylo ylo apJ -amT -mYQ -mYQ -cVq -mYQ -aDl +fUQ +bXT +bXT +rJl +bXT +lnS ajB ajB ajB @@ -115834,9 +97604,9 @@ amE akl aHg akl -dqu -amG -tCI +fVD +vea +sVT akl aHg akl @@ -115848,56 +97618,56 @@ apV ylo ylo arJ -ajc -ajc -azB -dDj -xlU -dDj -dDj -dDj -dDj -dDj -dDj -dDj -fWK -dDj -dDj -dDj -dDj -dDj -dDj -mmp -mmp -dDj -dDj -dDj -dDj -dDj -dDj -dDj -dDj -dDj -dDj -mmp -dDj -dDj -xlU -dDj -aCp -ahu -wJM -aCg -rCb -kjH -aCs -aCs -aCs -aCs -aCs -bxJ -kjH -dxB +cOp +cOp +nJE +xbF +htu +xbF +xbF +xbF +xbF +xbF +xbF +xbF +ufS +xbF +xbF +xbF +xbF +xbF +xbF +xbz +xbz +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbF +xbz +xbF +xbF +htu +xbF +gCl +pet +cNs +rLc +xwZ +mvs +igq +igq +igq +igq +igq +sRV +mvs +fGd auR ylo ylo @@ -116041,17 +97811,17 @@ aSa ylo ylo qSi -axP -axW -aya +aYU +mZE +pgS ayc -hEt -pgV -atQ -ryR +vdj +jUc +haK +jWQ atI -ayJ -ayY +cPU +rHP aph aph aph @@ -116062,28 +97832,28 @@ apl ylo ylo apJ -oxr -agH -agH -aTz -agH -oxr +sVH +gMN +gMN +kMV +gMN +sVH ajB -aYj -aUx -aYj +loy +xtb +loy ajB akl akl akl akl -svn -rDr -rhr -amG -svn -rDr -rhr +iNK +reW +uil +vea +iNK +reW +uil akl akl akl @@ -116094,54 +97864,54 @@ ylo ylo arJ arJ -ajc -ajc -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -nJC -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ahu -ajc -aMi -aMi -ybq -aCg -aCg -aCg -aCg -aCg -rCb -kjH +cOp +cOp +pet +pet +pet +pet +pet +pet +pet +pet +pet +rtG +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +pet +cOp +ktB +ktB +uKm +rLc +rLc +rLc +rLc +rLc +xwZ +mvs aEx aEx ylo @@ -116286,37 +98056,37 @@ aSa ylo ylo qSi -axT -axZ -iiX +qUa +uNC +nPt ayc -anv -atQ -atQ -anv +gED +haK +haK +gED atI -ayL -ayZ -azj -azj -azD +gKv +uDp +kKZ +kKZ +ljl apl -aDo -ajs +wIe +uuf apl apl apJ apJ -oxr -agH +sVH +gMN ajB ajB ajB -aDD +hrl ajB -aDG -mTF -ake +iUI +cNE +tQu ajB amq aUE @@ -116324,9 +98094,9 @@ amH akl aHg akl -sJe -amG -epg +sHu +vea +vSm akl aHg akl @@ -116340,53 +98110,53 @@ ylo aSa arJ arJ -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -ajc -nJC -ahu -ajc -ajc -ajc -ajc -ajc -ajc -ajc -lIq -ahu -ahu -eNI -gZs -gZs -gZs -xld -gZs -vXy -ahu -ahu -ahu -ajc -ajc -ajc -aYy -wQG -qAk -qAk -qAk -qAk -qAk -qAk -qAk -qAk -qAk -kad +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +cOp +rtG +pet +cOp +cOp +cOp +cOp +cOp +cOp +cOp +skP +pet +pet +qQx +qVX +qVX +qVX +wrw +qVX +moY +pet +pet +pet +cOp +cOp +cOp +tUS +tXF +kHS +kHS +kHS +kHS +kHS +kHS +kHS +kHS +kHS +fGA aEx ylo ylo @@ -116531,37 +98301,37 @@ aog aiJ aiJ qSi -axT -axX -iiX +qUa +nac +nPt ayc -ryR -atQ -jGH -ifS +jWQ +haK +cfy +oII atI -ayP -azb -azb -azb -azF +sYb +tVs +tVs +tVs +rZg apl -ajt -ajs -aME +swQ +uuf +wjC ajy -ajz -agH -oxr -agH +gdl +gMN +sVH +gMN ajB -aYd -ajE -ldN -vHU -vHU -fhb -ake +dfC +uIg +fgb +fLf +fLf +kbl +tQu ajB amr amk @@ -116569,9 +98339,9 @@ hvZ gBh xWS akl -buV -amG -rXs +hpd +vea +qYU akl hKt gBh @@ -116586,39 +98356,39 @@ aSa ylo arJ arJ -auC -auy +txa +qbf arJ arJ arJ arJ arJ -aWs -ajc -nJC -ahu -ajc -okE +gpO +cOp +rtG +pet +cOp +phh arJ arJ arJ -gZs -gZs -dCP -dCP -dCP -pRX -xJc -vaj -vaj -vaj -tRA -nBi -dCP -dCP -dCP -tlP -tlP +qVX +qVX +xQC +xQC +xQC +nIb +wvI +qyZ +qyZ +qyZ +myl +nHr +xQC +xQC +xQC +xUB +xUB arJ arJ arJ @@ -116626,9 +98396,9 @@ aEx aEx aEx aEx -bxa -bwR -pAM +xWP +wQe +pZU aEx aEx aEx @@ -116755,58 +98525,58 @@ ylo ylo alx alx -aeV -aeV -aST -aeV +rbf +rbf +woc +rbf alx alx alx -aeV -aeV -aTt -aeV +rbf +rbf +mtw +rbf alx aog aog -axI -avn -avn -axL -avn -avn +gDR +pNe +pNe +rpw +pNe +pNe qSi -axR -axX -iiX +gmb +nac +nPt qSi -ajG -ajG -gak -aBF +lvS +lvS +smz +wJs aph -ayQ -azb -azn -azt -azH +oYg +tVs +urs +mmL +wzj apl -ajt -ajs -aME +swQ +uuf +wjC ajy -ajz -agH -oxr -aUi +gdl +gMN +sVH +woU ajB ajB ajB -ake +tQu ajB -aHf +juQ ajB -aHf +juQ ajB ams bvQ @@ -116814,9 +98584,9 @@ amw bvx akl akl -amU -amG -rXs +hfs +vea +qYU akl akl amw @@ -116839,31 +98609,31 @@ ylo ylo arJ asJ -moU -uJr -asZ -moU +dMp +sJL +mLt +dMp asJ arJ ylo arJ -bsx -hPg -ajc -aBT -ajc -hPg -wYt +gqI +fsp +cOp +tNi +cOp +fsp +lFc arJ agD arJ -wYt -hPg -ajc -aBT -ajc -hPg -bsx +lFc +fsp +cOp +tNi +cOp +fsp +gqI arJ ylo ylo @@ -116999,70 +98769,70 @@ ylo ylo ylo alx -bHL -aeV -aSP -xMg -aeV -bIk +ygq +rbf +siN +hss +rbf +grV afJ -aDX -aeV -aSP -xMg -aeV -bSW +tqL +rbf +siN +hss +rbf +vGv avj -ahf -axK -lMU -lMU -aCV -lMU -lMU -aHd -avH -ajQ -iiX +qQk +wVv +rzg +rzg +ubl +rzg +rzg +fGj +ptc +nMT +nPt xDC -aye -agH -oxr -ayt +olw +gMN +sVH +rAi aud -ayT -azc -azq -azb -azI +hpb +pQU +tQm +tVs +liL ahw -aTW -tpH -ajs +qnU +geh +uuf ajy -wye -agH -oxr -pTD +iSL +gMN +sVH +iNB ajB -aYe -ajE -ake +iKV +uIg +tQu ajB -aYk +oAt ajB -aYk +oAt ajB akl akl akl akl akl -xPw -amU -amG -rXs -bru +ntH +hfs +vea +qYU +lYF akl akl akl @@ -117084,30 +98854,30 @@ ylo ylo ylo atd -vtq -uJr -asZ -vtq +vJe +sJL +mLt +vJe atd ylo ylo arJ arJ -tpM -auw -aXT -aux -pkP +lbs +kPN +ghI +tsI +kbF arJ arJ ylo arJ arJ -tpM -auw -aXT -ois -pkP +lbs +kPN +ghI +sow +kbF arJ arJ ylo @@ -117244,51 +99014,51 @@ ylo ylo ylo alx -aeC -aeV -aSR -aeV -aeV -vBS +hdQ +rbf +sux +rbf +rbf +huD iSB -aeC -aeV -aTk -aeV -aeV -vBS +hdQ +rbf +oxb +rbf +rbf +huD avj -hQf -atX -wJq -bTj -tXB -bTj -bcw +dxD +qGm +jeZ +oLE +ogZ +oLE +hcW qSi -rvC -mUE -sJr -wWW -nnx -agH -oxr -ayu +gcd +qpg +xyq +vhY +sNp +gMN +sVH +sPH atI -ayV -aze -azq -azb -azJ +xzK +qff +tQm +tVs +oSA ahw -ajt -aDs -aDt -agu -mYQ -mYQ -aDl -pTD +swQ +qPe +tBY +dxv +bXT +bXT +lnS +iNB ajB ajB ajB @@ -117298,16 +99068,16 @@ ajB ajB ajB ajB -fkV -kKs +pMf +nmc wXE -jvC -ydY -amG -amU -amG -rXs -amG +xdE +iwX +vea +hfs +vea +qYU +vea akl rMU rMU @@ -117329,30 +99099,30 @@ ylo ylo ylo atd -vtq -uJr -asZ -vtq +vJe +sJL +mLt +vJe atd ylo ylo ylo agD -ajc -auw -aYu -aux -ajc +cOp +kPN +qBA +tsI +cOp agD ylo ylo ylo agD -ajc -auw -aYH -aux -ajc +cOp +kPN +jrR +tsI +cOp agD ylo ylo @@ -117489,51 +99259,51 @@ ylo ylo ylo alx -pFX -aeV -aSP -xMg -aeV -gPC +xND +rbf +siN +hss +rbf +jLq iSB -oVM -aeV -aSP -xMg -aeV -hqa +rOr +rbf +siN +hss +rbf +pxE avj -vhS -atX -bSK -qaG -bSG -qaG -ofq +xzq +qGm +kUj +eox +oQH +eox +bqB qSi -axS -jnt -kof +kfm +niI +cHm xDC -agC -agH -oxr -ayw +son +gMN +sVH +vZv atI -ayW -azb -azq -azb -azL +xTw +tVs +tQm +tVs +rRg ahw -ajt -iAD -ajs +swQ +skl +uuf ahw -tsb -agH -oxr -pTD +jcP +gMN +sVH +iNB add brt aUo @@ -117548,11 +99318,11 @@ akl akl akl akl -xPw -amU -lGo -rXs -pgf +ntH +hfs +gzs +qYU +hUH akl akl akl @@ -117574,10 +99344,10 @@ ylo ylo ylo atd -vtq -uJr -asZ -vtq +vJe +sJL +mLt +vJe atd ylo ylo @@ -117734,51 +99504,51 @@ ylo ylo ylo alx -aeC -aeV -dkK -aeV -aeV -vBS +hdQ +rbf +dqn +rbf +rbf +huD iSB -aeC -aeV -qWQ -aeV -aeV -vBS +hdQ +rbf +tLM +rbf +rbf +huD avj avj -cMv +nDZ ajL -aSx +pYm ajL -aSx +pYm ajL qSi atJ atJ atJ atJ -ayf -agH -oxr -ayw +muZ +gMN +sVH +vZv aud -ayX -azh -azq -azb -azM +txA +cba +tQm +tVs +qRP ahw ahw ahw ahw ahw -brr -agH -oxr -pTD +jpv +gMN +sVH +iNB adt bun qlx @@ -117794,9 +99564,9 @@ amI amM akl akl -amU -lGo -rXs +hfs +gzs +qYU akl akl amA @@ -117819,10 +99589,10 @@ ylo ylo asJ asJ -jEI -uJr -asZ -eym +fvW +sJL +mLt +xeC atG atG ylo @@ -117968,10 +99738,10 @@ bmB aSa aSa akj -ybQ -aSz -aSB -gkC +tkS +iJG +usI +wMT akj alx aex @@ -117979,51 +99749,51 @@ aex aex alx alx -bGE -aeV -lFq -xMg -vsg -gPC +fbx +rbf +xVm +hss +wjE +jLq iSB -oVM -aeV -lFq -xMg -aeV -gPC +rOr +rbf +xVm +hss +rbf +jLq avj -gJS -atX -bSM -avn -avn -avn -avn -avn -avn -oks -rKG +vce +qGm +wlf +pNe +pNe +pNe +pNe +pNe +pNe +ovB +tkc avj -qFJ -agH -oxr -ayw +nit +gMN +sVH +vZv aud aud aud -azq -azx +tQm +tWO aud ajj -aDp -bQa -bQc +rfk +jfd +oOY ajj -qIw -agH -oxr -pTD +kHr +gMN +sVH +iNB adt buo uov @@ -118039,9 +99809,9 @@ hvZ gBh dfg akl -buV -lGo -nzR +hpd +gzs +gNB akl wvZ gBh @@ -118054,21 +99824,21 @@ ylo ylo aSa asK -bMT -bMX -gZj -oOH +ofp +iFG +gZK +vqX asK asK asK asK asJ -lzI -hWg -uJr -asZ -moU -drW +dxr +pJb +sJL +mLt +dMp +ocX atG atG atG @@ -118213,62 +99983,62 @@ bmB aSa ylo akj -ybQ -aSB -aSB -gkC +tkS +usI +usI +wMT akj -aes -aRr -akp -fRD -sxJ +smK +mKF +grB +lph +jvO alx -aeC -aeV -bIe -qjf -aeV -vBS +hdQ +rbf +ekn +wxk +rbf +huD afJ -aeC -aeV -xvE -vsg -aeV -jFJ -apA -mPg -atX -fWN -fWN -fWN -fWN -fWN -fWN -iJB -bTj -bSM +hdQ +rbf +uvu +wjE +rbf +uwD +nwm +gjr +qGm +xed +xed +xed +xed +xed +xed +hja +oLE +wlf agx -tmv -agH -oxr -dNC -mLL -mLL -aTE -oxr -agH -ayw +kpr +gMN +sVH +uXh +uob +uob +rlR +sVH +gMN +vZv ajj -bPM -ayN -hcH -bbe -mYQ -mYQ -aDl -pTD +ntJ +jGA +oFI +bnu +bXT +bXT +lnS +iNB adt bup uov @@ -118284,9 +100054,9 @@ bjm akl aHg akl -nAa -lGo -tCI +moT +gzs +sVT akl aHg akl @@ -118299,26 +100069,26 @@ ylo ylo asK asK -btV -btY -aNg -bua -uyd -bub -bNr +yiD +rPx +pJC +jZf +uUr +ydt +nrI atk -ohe -asY -fJf -aCC -pfQ -pfQ -vEM -aMM -aMO -hYI -bQK -uRU +wLt +pXv +iYt +vBL +cFD +cFD +lmF +dfk +cWm +iPe +dCn +sWJ atG aSa ylo @@ -118458,82 +100228,82 @@ blY ylo ylo akj -bmo -rTb -pSp -pSp -pfz -hnr -hnr -hnr -hnr -hnr -hnr -aeD -aeV -xvE -aeV -aeV -jFJ -hnr -aeD -aeV -xvE -aeV -vsg -vsg -avl -avl -miJ -avl -avl -avl -avl -nSP -gOZ -avl -avl -avl -jJt -agH -agH -oxr -agH -agH -agH -agH -oxr -agH -ayw +ilA +qzz +fiR +fiR +rNi +wDp +wDp +wDp +wDp +wDp +wDp +iTY +rbf +uvu +rbf +rbf +uwD +wDp +iTY +rbf +uvu +rbf +wjE +wjE +gto +gto +oyP +gto +gto +gto +gto +tRI +uGE +gto +gto +gto +mMz +gMN +gMN +sVH +gMN +gMN +gMN +gMN +sVH +gMN +vZv ajj -bPO -xiW -bQd +bYe +tMa +kHa ajj -tCs -agH -oxr -bpS +utY +gMN +sVH +nvh add -aDz +oYD uov adN -gxu -adP -jJv -adP +gAk +sjO +teF +sjO add akl akl akl akl -svn -rDr -cPR -amG -svn -rDr -rhr +iNK +reW +iGI +vea +iNK +reW +uil akl akl akl @@ -118543,27 +100313,27 @@ ylo ylo ylo atg -qmD -aNc -aNg -aNg -aNg -aNg -buc -bNs +gHz +cjU +pJC +pJC +pJC +pJC +iXB +pKw atk -hWg -asZ -aCB -aCG -asZ -aCy -aMW +pJb +mLt +pBg +mNt +mLt +pdI +kCV atB -bPk -aMX -sbs -bQA +ieW +oTL +ckG +qit atG aSa ylo @@ -118703,70 +100473,70 @@ blY ylo ylo akj -rTo -bmp -fWe -vZD -vZD -ckY -ckY -ckY -ckY -ckY -ckY -ckY -ckY -qys -ckY -ckY -ckY -ckY -ckY -ckY -qys -ttK -ckY -ckY -ayl -ayl -xoG -ayl -ayl -ayl -ajA -ayl -ayl -ayl -ayl -ayl -ayl -mYQ -ayk -krR -mYQ -mYQ -mYQ -mYQ -krR -azz -ayw +uai +phB +vkI +wJJ +wJJ +kdR +kdR +kdR +kdR +kdR +kdR +kdR +kdR +gbC +kdR +kdR +kdR +kdR +kdR +kdR +gbC +sXj +kdR +kdR +haN +haN +oSy +haN +haN +haN +mUL +haN +haN +haN +haN +haN +haN +bXT +sgU +vBO +bXT +bXT +bXT +bXT +vBO +qDr +vZv ajj -bPY -bQb -bQo +ohH +mMq +dfH ajj -gRB -agH -oxr -agH +vkx +gMN +sVH +gMN aDy adN rqg cXH -bUl -cAX -jJp -gqH +plL +lKF +gxW +ggE add bjq aUJ @@ -118774,9 +100544,9 @@ amB akl aHg akl -lCq -amG -epg +eNp +vea +vSm akl aHg akl @@ -118788,27 +100558,27 @@ apV ylo ylo atg -brg -btW -aNg -nOP -oTq -nOP -aNg -bNt +weJ +tBq +pJC +cuJ +xad +cuJ +pJC +nZb atp -hWg -asZ -uJr -asZ -asZ -bQF -tSG +pJb +mLt +sJL +mLt +mLt +jEE +xNe atB -bPl -aMX -aZS -bQO +tpc +oTL +nHy +uFW atG aSa ylo @@ -118948,70 +100718,70 @@ bmB aSa ylo akj -rTo -rAc -nOj -bmp -bmp -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -aeV -xvE -aeV -fSB -apA -avo -bTj -lGq -oEu -eqa -aho -lGq -oEu -eqa -bTj -dml +uai +cDY +ilh +phB +phB +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +rbf +uvu +rbf +vCF +nwm +cdE +oLE +uec +pje +pGB +kMm +uec +pje +pGB +oLE +rdY agx -mwo -mwo -mwo -mwo -mwo -mwo -nnx -agH -oxr -ayw +vOX +vOX +vOX +vOX +vOX +vOX +sNp +gMN +sVH +vZv ajj ajj ajj ajj ajj -aTF -nbn -iBo -mYQ +rsT +sOF +ksl +bXT cXH cXH pIj adN -gxu -bsI -bsN -sNO +gAk +qwz +elf +tRd add amw eaN @@ -119019,9 +100789,9 @@ hvZ gBh xWS akl -dqu -amG -eXS +fVD +vea +jbW akl hKt gBh @@ -119033,27 +100803,27 @@ aki ylo ylo atg -bMS -aNc -aNg -bMY -bNh -nOP -bud -vzp +kpq +cjU +pJC +dgX +ggQ +cuJ +euq +lvw atp -hWg -asZ -uJr -myt -rAm -bQF -fTw +pJb +mLt +sJL +pSH +eyV +jEE +dGN atB -bQw -hzM -aMW -bQC +nHR +ffL +kCV +iPk atG aSa ylo @@ -119193,42 +100963,42 @@ bmB aSa aSa akj -rTo -bmp -nOj -mFp -jno -leJ -leJ -bGB -leJ -leJ -leJ -leJ -leJ -leJ -leJ -leJ -leJ -bGB -lCr -aeV -aeV -xvE -aeV -vBS +uai +phB +ilh +neW +nxz +jAh +jAh +dXw +jAh +jAh +jAh +jAh +jAh +jAh +jAh +jAh +jAh +dXw +sHW +rbf +rbf +uvu +rbf +huD avj -aSs -nUU -lVx -uVH -ajH -bCL -hSr -ajI -ajH -tBT -aAQ +pUU +xrj +nXe +kIL +poW +cgg +opF +nHJ +poW +nAJ +iLR agj agj agj @@ -119236,19 +101006,19 @@ agj agj agj agj -agC -agH -oxr -dNC -mLL -fha -aUd -fmZ -aju -qIw -nbn -oxr -nZN +son +gMN +sVH +uXh +uob +ioV +ruV +gzG +iUx +kHr +sOF +sVH +ttL add bFc uov @@ -119256,7 +101026,7 @@ aUt add add add -sNO +tRd add bjm aZq @@ -119264,9 +101034,9 @@ amJ amE akl akl -anb -apY -anb +ukW +sGJ +ukW akl akl amA @@ -119279,18 +101049,18 @@ ylo ylo asK asK -aNc -qFA -bMR -bNi -nOP -aNg -bNu +cjU +fjH +iqo +hUl +cuJ +pJC +uzD atp -hWg -asZ -uJr -aWw +pJb +mLt +sJL +xwS att att att @@ -119438,10 +101208,10 @@ bmB aSa ylo akj -rTo -bmp -nOj -lFP +uai +phB +ilh +mlI bmF afJ alx @@ -119457,10 +101227,10 @@ iSB afJ afJ afJ -wJA -wJA -aVV -wJA +juJ +juJ +noI +juJ cGF avj aog @@ -119475,44 +101245,44 @@ agx aog aog agj -ayg -ayn -ayp -ayx -ayy +wyQ +rbE +dhD +rIu +ocd agj -agC -agH -uDh -mYQ -mYQ -mYQ -mYQ -mYQ -mYQ -nxP -nxP -aDl -pTD +son +gMN +kwo +bXT +bXT +bXT +bXT +bXT +bXT +xtn +xtn +lnS +iNB adt bun uov bun add -bys -adP -gsg +oTS +sjO +qqt add akl akl akl akl akl -amx -rKa -amz -rKa -xHm +kRl +aTI +ezD +aTI +iYZ akl akl akl @@ -119524,28 +101294,28 @@ apV apV apV asK -aNe -aNg -aNg -xMA -gCN -aNg -aLC +ddE +pJC +pJC +ood +cQm +pJC +nNZ atk -hWg -asZ -uJr -atm +pJb +mLt +sJL +coE att -aGT -cyK -txK -wOX +uaQ +ntT +htV +kmq att -aXz -uVm -aXh -rgm +fyw +uuy +hUX +rHd auz auz ylo @@ -119683,115 +101453,115 @@ blY ylo ylo akj -rTo -bmp -nOj -pfG +uai +phB +ilh +qYf bmF akz akz -aeQ -aff -aff -aff -pMZ -nuq -aff -aff -aff -aff +eOQ +mpB +mpB +mpB +wcY +nHd +mpB +mpB +mpB +mpB aeU -aOJ -wyz -wyz -nSA -wyz -aOJ +dnz +lOL +lOL +lWW +lOL +dnz aeU -wDC -wDC -wDC -wDC -wDC -rCA -wDC -wDC -wDC -wDC -wDC +mMZ +mMZ +mMZ +mMZ +mMZ +pHX +mMZ +mMZ +mMZ +mMZ +mMZ agj -ayi -ahM -ahM -ahM -ayA +tPB +jmR +jmR +jmR +rRX agj -tmv -agH -oxr -agH -agH -agH -agH -agH -agH -agH -agH -oxr -pTD +kpr +gMN +sVH +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +sVH +iNB adt byu rjT buo add -byt -adP -sNO +tuE +sjO +tRd add -bZu -amy -mfw -dwr -mvS -mfw -rKa -amz -rKa -mvS -mfw -dwr -mvS -iKn +xHH +xpZ +sJy +sme +cXM +sJy +aTI +ezD +aTI +cXM +sJy +sme +cXM +jCv alw -alC -alY -aXB -and -hva +uYt +rGj +lif +kRo +sIZ asK -bMU -aVQ -aNg -xMA -xiy -bNq -bsd +tAU +pYe +pJC +ood +ixj +pim +jpl atk -avM -asZ -aCC -pfQ -aGP -iZv -cJW -gjj -lqU +hBT +mLt +vBL +cFD +mPj +diG +tBg +emM +jAi att -ixd -buh -aNs -vjW -gnF +ieC +iLo +qZR +fGk +gky auz ylo ylo @@ -119928,115 +101698,115 @@ npm npm npm akj -rTo -bmp -nOj -lFP +uai +phB +ilh +mlI akj akz -bmd -qkw -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -hAB -fEC -fEC -aRU -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -nNq -aeB -aps -ahM -ahM -ahM -ahM -ahM -wah -agH -nbn -oxr -mxa -aru -bSZ -aWj -bTb -aru -ybJ -agH -oxr -pTD +xQj +flO +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +vGp +mEp +mEp +qbd +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +eiW +rLI +uuG +jmR +jmR +jmR +jmR +jmR +tpt +gMN +sOF +sVH +tso +lLp +jCa +jud +kjK +lLp +goF +gMN +sVH +iNB adt bup adN bup add -aHX -adP -sNO +sVZ +sjO +tRd add -amx -aAe -mEd -mEd -mEd -mEd -aDa -aDc -aDa -mEd -mEd -mEd -aDf -xHm +kRl +xis +xQQ +xQQ +xQQ +xQQ +gsm +gSd +gsm +xQQ +xQQ +xQQ +tUH +iYZ alw -aXl -hva -hva -ane -hva +iXt +sIZ +sIZ +mjz +sIZ atk atk atk -aNg -aNm +pJC +gGz atk atk atk atk -hWg -asZ -uJr -myt +pJb +mLt +sJL +pSH att -riC -mHd -aHv -sLF +jnT +mMR +vAs +iYl atv -ixd -aNs -aNt -aNs -ozH +ieC +qZR +qwN +qZR +rrj aXw ylo ylo @@ -120173,115 +101943,115 @@ aRp aRp aRp bmj -rTo -bmp -nOj -bmA +uai +phB +ilh +kcS bmF -bmc -rwF -vkW -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -vkW -tLa +rmZ +qRU +fBJ +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +fBJ +rZc agj -ayj -ayj -ayq -ahM -ayE +gHi +gHi +hlP +jmR +okw agj -nnx -nbn -mbI -agd +sNp +sOF +nCA +fcg arB arM ash arM asI -gNt -agH -oxr -ate +gbE +gMN +sVH +gSj add buq bur bus add -byv -dlU -rYq +won +kRt +tud add -aUB -rKa -iDB -nXY -uLN -nXY -nXY -aUV -hva -iDB -nXY -fHP -rKa -aVh +lQG +aTI +qvf +coF +lbk +coF +coF +mWp +sIZ +qvf +coF +omX +aTI +rIV alw -alE -ama -amV -anh -hva -aoj -aoD -fJf -asZ -uJr -atm -asY -asY -asY -fJf -asZ -uJr -xZc +eWb +chn +nQy +jVD +sIZ +qqL +oPM +iYt +mLt +sJL +coE +pXv +pXv +pXv +iYt +mLt +sJL +vum atv -aGW -mHd -aHv -sLF +mTP +mMR +vAs +iYl atv -bEb -fyM -gyg -aNs -ozH +iDG +aXK +gdB +qZR +rrj aXw ylo ylo @@ -120418,115 +102188,115 @@ aRp aRp aRp bmj -rTo -opi -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB +uai +hUB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afi afv afC afC -afE -afG +dty +fix afv afC afL afS afv -afV -afX +iZy +hyE afS afv afC afL afS -ajh -ajJ +qXG +wEb afL afS afi -aeB -vkW -lJR +rLI +fBJ +fSm agj agj agj -bCN -ahM -ayF +hkF +jmR +xGE agj -agC -agH -iBo -dvp +son +gMN +ksl +fRO arC arT arC asn asL -gNt -agH -oxr -pTD +gbE +gMN +sVH +iNB add add add add add add -aHY +fIE add add -amx -rKa -amK +kRl +aTI +qCw amN amN amN amN amN -avR +sui amN amN -xJH -rKa -xHm +fHj +aTI +iYZ alw -alG -amd -amd -anl -amz -amz -amz -asZ -asZ -uJr -asZ -asZ -asZ -asZ -asZ -asZ -uJr -xZc +rvx +ssI +ssI +nxO +ezD +ezD +ezD +mLt +mLt +sJL +mLt +mLt +mLt +mLt +mLt +mLt +sJL +vum atv -aGW -mHd -aHv -sLF +mTP +mMR +vAs +iYl atv -bEb -aNs -lQw -aNs -akW +iDG +qZR +mba +qZR +clD aXw ylo ylo @@ -120663,115 +102433,115 @@ aRp aRp aRp akj -bmx -bmp -hws -vZD -pSb -fEC -fEC -xBa -aeB -aeB +soz +phB +vNt +wJJ +xDE +mEp +mEp +pNR +rLI +rLI afk -aeE -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -afn -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -afN +tMZ +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +jBS +xlN +xlN +xlN +xlN +xlN +xlN +xlN +xlN +reG ajT -aeB -vkW -aeR +rLI +fBJ +qqT agj atP agj -ayr -aTr -ayI +vUq +gUu +iZh agj -agC -agH -oxr -agd +son +gMN +sVH +fcg arE arZ asi asi asM -gNt -agH -oxr -bpS -jWE -jWE -jWE -jWE -jWE -wye -oxr -bpS -jWE -mfw -rKa -amK +gbE +gMN +sVH +nvh +uTC +uTC +uTC +uTC +uTC +iSL +sVH +nvh +uTC +sJy +aTI +qCw amN -bkC -bDU -ana -aUW -amW -jmg +cuU +ixx +lOB +uro +wDP +lhA amN -xJH -rKa -mvS -amy -mfw -hva -hva -hva -amz -aAe -mEd -pfQ -pfQ -iJv -bXh -pfQ -pfQ -pfQ -pfQ -pfQ -aCD -xZc +fHj +aTI +cXM +xpZ +sJy +sIZ +sIZ +sIZ +ezD +xis +xQQ +cFD +cFD +fPW +lgU +cFD +cFD +cFD +cFD +cFD +ibq +vum atv -aGW -txp -dBx -ces +mTP +oYj +saG +onn att -aWZ -aNs -nLX -bui -buj +osQ +qZR +tSj +cqq +voq auz ylo ylo @@ -120907,19 +102677,19 @@ aRp aRp aRp aRp -bmk -bmp -bmp -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB +msS +phB +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afl -aeF +lsI afi aeN afi @@ -120939,84 +102709,84 @@ afi afi aeN afi -eDz +jgw ajU -aeB -vkW -aeR +rLI +fBJ +qqT agj atP agj atT -bcy +oMW atT agj -qFJ -agH -oxr -qVF -pxH -jLT -aWl -hfG -pxH -hwV -agH -oxr -agH -agH -nbn -nbn -nbn -agH -agH -oxr -agH -agH -amz -rKa -amK +nit +gMN +sVH +oek +jkV +lVN +uTx +tkm +jkV +jQh +gMN +sVH +gMN +gMN +sOF +sOF +sOF +gMN +gMN +sVH +gMN +gMN +ezD +aTI +qCw aNH -amS -atW -gYA -eqg -amW -mBp +kah +oNJ +jmS +wNB +wDP +jgm aNH -xJH -rKa -amz -amz -amz -amz -amz -amz -amz -rKa -hva -aCy -nwL -aVE -nwL -pue -nwL -nwL -nwL -aWt -uJr -xZc +fHj +aTI +ezD +ezD +ezD +ezD +ezD +ezD +ezD +aTI +sIZ +pdI +pNo +cZV +pNo +ozC +pNo +pNo +pNo +gPT +sJL +vum att -aWF -leI -fQm -aWP +lHa +grW +wRZ +mPy att -nkz -aNr -nLX -cwL -oPu +jOG +xpz +tSj +sVv +rhq auz ylo ylo @@ -121153,18 +102923,18 @@ aRp aRp aRp akj -bmn -bmp -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB -afm -aeF +mzG +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI +jhw +lsI afi afi afi @@ -121184,62 +102954,62 @@ afi afi afi afi -eDz -ajV -aeB -aSQ +jgw +mIG +rLI +uTb aeU agj agj agj -bnV -aTs -wss +sqQ +oNC +gzU bnZ -tmv -agH -uDh -nxP -mYQ -mYQ -mYQ -mYQ -mYQ -mYQ -mYQ -krR -hhT -mYQ -mYQ -mYQ -nxP -nxP -mYQ -krR -mYQ -mYQ -mEd -uXw -amK +kpr +gMN +kwo +xtn +bXT +bXT +bXT +bXT +bXT +bXT +bXT +vBO +iYU +bXT +bXT +bXT +xtn +xtn +bXT +vBO +bXT +bXT +xQQ +jhK +qCw aNH -amS -fog -eJz -usD -auu -qxB +kah +eXU +lUd +nRv +izU +tUA aNH -xJH -azm -mEd -mEd -mEd -mEd -mEd -mEd -mEd -eQR -hva +fHj +lga +xQQ +xQQ +xQQ +xQQ +xQQ +xQQ +xQQ +fgr +sIZ atl atl atl @@ -121249,17 +103019,17 @@ atl bou atl atl -aEM +rxg atl atl -aGX -txp -dKv -eJx +dgK +oYj +sgc +hKo att att att -aNu +dny att att auz @@ -121398,18 +103168,18 @@ aRp aRp aRp bmj -bqO -bmp -nOj -bqR +wof +phB +ilh +iVR bnw -tov -aeI -vkW -aeB -aeB -afp -aeF +lvL +tVB +fBJ +rLI +rLI +fGz +lsI afi afi afi @@ -121429,84 +103199,84 @@ afi afi afi afi -eDz -akb -aeB -vkW -aOJ -ayd -lRQ -ayK -anY -lXJ -anY -aKc -agH -agH -oxr -agH -agH -agH -agH -agH -agH -agH -agH -agH -oxr -odC -iqY -aTN -iqY -rfo -iqY -aTN -iqY -iqY -xhA -rKa -amK +jgw +riK +rLI +fBJ +dnz +mhc +tDI +xLk +rrA +vNa +rrA +iSY +gMN +gMN +sVH +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +gMN +sVH +jef +vyX +koy +vyX +hGU +vyX +koy +vyX +vyX +usd +aTI +qCw amN -aCW -fog -ewP -buW -nUg -mhg +rKA +eXU +lah +sHx +xLr +ggl amN -xJH -rKa -oQf -iho -xhA -hva -hva -hva -hva -hva -hva +fHj +aTI +uvQ +giS +usd +sIZ +sIZ +sIZ +sIZ +sIZ +sIZ atl -bww -apt -kEq -euc -kEq -kEq -kEq -apD -nXj -pDP +vdH +pwS +oGK +lzk +oGK +oGK +oGK +wbz +eDI +fsU atl -aGW -mHd -tJs -ikv -aGT -aWI -oBe -mHd -ikv -pJn +mTP +mMR +pKW +ozs +uaQ +xlJ +fOq +mMR +ozs +mYH auz ylo ylo @@ -121643,18 +103413,18 @@ aRp aRp aRp bmj -bqO -bmp -nOj -bqS +wof +phB +ilh +jDM bmF -cAg -aeI -vkW -aeB -aeB +xKe +tVB +fBJ +rLI +rLI afk -aeF +lsI afi afi afi @@ -121674,32 +103444,32 @@ afi afi afi afi -eDz +jgw ajT -aeB -vkW -aOM -ayd -anY -ayK -ahM -tBG -ahM -aKc -agH -agH -oxr -odC -aTN -lIQ -aom -odC -iqY -iqY -iqY -lIQ -oxr -qkz +rLI +fBJ +jeQ +mhc +rrA +xLk +jmR +hmD +jmR +iSY +gMN +gMN +sVH +jef +koy +pYj +fqA +jef +vyX +vyX +vyX +pYj +sVH +mTd ajk ajk ajk @@ -121708,50 +103478,50 @@ ajk ajk ajk ajk -amx -rKa -amK +kRl +aTI +qCw amN amN -anM +sPw amN amN amN amN amN -xJH -rKa -xHm +fHj +aTI +iYZ alw -alL -amf -amf -anm -jvC -anK -auO +fmO +mvZ +mvZ +hMZ +xdE +wtx +vDW atl -aCz -unf -aCR -aCz -aCR -aCz -aCR -aEK -sWd -xoK +pnV +xJZ +thC +pnV +thC +pnV +thC +ivX +vUY +ien bou -oBe -mHd -aHv -tJs -djC -aHv -aHv -mHd -aHv -sLF +fOq +mMR +vAs +pKW +oZT +vAs +vAs +mMR +vAs +iYl auz ylo ylo @@ -121888,18 +103658,18 @@ aRp aRp aRp akj -lps -rAc -jxA -bqS +nYz +cDY +elS +jDM bmF -rno -aeI -dQJ -aeB -aeB +sXt +tVB +tnX +rLI +rLI afl -aeF +lsI afi afi afi @@ -121909,7 +103679,7 @@ afi afi afi afi -dUj +dxh afi afi afi @@ -121919,22 +103689,22 @@ afi afi afi afi -eDz +jgw ajU -aeB -dQW -irp -aDI -awp -vzA -qTj -gdM -qTj -wxF -mYQ -mYQ -aDl -ahr +rLI +mph +xNS +wjt +xRZ +gSU +ryy +mTL +ryy +ehD +bXT +bXT +lnS +gsQ ajk ajk ajk @@ -121943,60 +103713,60 @@ ajo ajk ajj ajj -aHr +fEn bof ajo -bNP -bOi -bOl -fey -bPG -bPH +qcm +tNC +prP +pbK +tcO +pjY ajk -aUB -rKa -qTe -gUj -lDT -aCZ -qTe -aUX -gUj -gVw -gUj -lDT -rKa -aVh +lQG +aTI +key +dyV +wKH +fyx +key +qBP +dyV +sJz +dyV +wKH +aTI +rIV alw -alM -amh -amY -anh -anK -anK -aoI +qyM +sAz +vFq +jVD +wtx +wtx +vXB atl -aaw -aCA -aEv -aCz -aEv -aCz -aEv -aEK -apL -iqx -aGS -iZv -nxN -tzF -daR -vyA -xNR -vyA -plM -iAy -qgo +tOl +fpQ +tyH +pnV +tyH +pnV +tyH +ivX +jNc +lWE +vev +diG +wEl +dhO +vGC +vtz +rpY +vtz +hXE +pex +uxM auz ylo ylo @@ -122133,18 +103903,18 @@ aRp aRp aRp bmj -bqO -bmp -jtY -bqS +wof +phB +whJ +jDM bmF -snO -aeI -vkW -aeB -aeB +svI +tVB +fBJ +rLI +rLI afq -aeF +lsI afi afi afi @@ -122164,84 +103934,84 @@ afi afi afi afi -afP +rqs akc -aeB -vkW -aOM -ayd -anY -ayK -ahM -ahM -ahM -aKc -agH -agH -oxr -ahr +rLI +fBJ +jeQ +mhc +rrA +xLk +jmR +jmR +jmR +iSY +gMN +gMN +sVH +gsQ ajk -bPn -ajv -bPv -ajv -bPy +pvz +qPz +wvL +qPz +mJi ajk -cOf -wVG -qkz +gkw +iuH +mTd ajo -cOf -anZ -ajx -ajx -anZ -bPI +gkw +oeL +cUj +cUj +oeL +vOi ajk -amx -azd -mEd -mEd -mEd -aDa -aDc -aDa -aDc -mEd -mEd -mEd -eQR -xHm +kRl +pRU +xQQ +xQQ +xQQ +gsm +gSd +gsm +gSd +xQQ +xQQ +xQQ +fgr +iYZ alw -aXl -amm -hva -ane -jvC -jvC -aXX +iXt +kAe +sIZ +mjz +xdE +xdE +lHm atl -aZE -unf -aEA -aCz -aCR -aCz -aEA -apE -apN -aqp +lgc +xJZ +hOa +pnV +thC +pnV +hOa +fSH +iGx +esI atl -aWG -aHv -mHd -qPo -lgo -cvW -lgo -cvW -lgo -ihL +vNd +vAs +mMR +wnC +mYu +uaY +mYu +uaY +mYu +tzC auz ylo ylo @@ -122378,18 +104148,18 @@ aRp aRp aRp bmj -bqO -bmp -nOj -coS +wof +phB +ilh +tXQ bnw -rwF -aeI -vkW -aeB -aeB -afs -aeF +qRU +tVB +fBJ +rLI +rLI +sRy +lsI afi afi afi @@ -122409,83 +104179,83 @@ afi afi afi afi -eDz -ani -aeB -vkW -aOJ -ayd -aXJ -ayK -anY -aON -anY -aKc -agH -agH -oxr -ahr +jgw +xwk +rLI +fBJ +dnz +mhc +gCZ +xLk +rrA +pOe +rrA +iSY +gMN +gMN +sVH +gsQ ajo -bPq -bPs -bPw -fGP -jXg +oZO +yhv +xNG +ocR +dsT ajo -sIw -wVG -aUj +hNt +iuH +ghl ajk -bOf -bPC -bOm -dvx -anZ -bPJ +tDq +vcO +nnT +rpp +oeL +tlB ajk -wbK -iho -xhA -dwr -oQf -xhA -rKa -amz -rKa -oQf -xhA -dwr -oQf -nQB +qSf +giS +usd +sme +uvQ +usd +aTI +ezD +aTI +uvQ +usd +sme +uvQ +pQo alw -alO -alY -aXC -ano -iho -iho -apb +hck +rGj +rHo +jfu +giS +giS +eul atl -aaw -aCA -aEv -aCz -aEv -aCz -aEv -aEK -apW -aqC +tOl +fpQ +tyH +pnV +tyH +pnV +tyH +ivX +laA +oEG atl -toJ -riC -mHd -qPo -exf -aXb -exf -lkk -exf +wzA +jnT +mMR +wnC +tNz +cio +tNz +sdH +tNz auz auz ylo @@ -122623,18 +104393,18 @@ aRp aRp aRp akj -jHV -bmp -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB -aft -aeF +qNI +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI +qdl +lsI afi afi afi @@ -122654,50 +104424,50 @@ afi afi afi afi -eDz -anj -aeB -aSQ +jgw +rwM +rLI +uTb aeU agj agj agj -ahg -jXo -ahg +kRV +pxR +kRV agj -nnx -agH -oxr -boc +sNp +gMN +sVH +xNW ajo -bPp -anZ -bPx -vHQ -yhC -bMh -yhC -cmy -qkz +hEE +oeL +iMP +omF +evJ +oMF +evJ +jBD +mTd ajo -bOg -bPD -bOm -wVG -dmK -bPK +dsb +yjc +nnT +iuH +lDD +chM ajk akl akl akl akl akl -amx -rKa -amz -rKa -xHm +kRl +aTI +ezD +aTI +iYZ akl akl akl @@ -122711,20 +104481,20 @@ alw alw alw atl -aCz -unf -aEA -aCz -aEA -aCz -aEA -aEK -aEK -aqU +xdZ +xJZ +hOa +pnV +hOa +pnV +hOa +ivX +ivX +itr atl box boy -aXr +ptM atz ato auz @@ -122867,19 +104637,19 @@ aRp aRp aRp aRp -bmk -bmp -bmp -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB +msS +phB +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afl -aeF +lsI afi aeN afi @@ -122899,11 +104669,11 @@ afi afi aeN afi -eDz +jgw ajU -aeB -vkW -aeR +rLI +fBJ +qqT agj atP agj @@ -122911,27 +104681,27 @@ agj agj agj agj -qFJ -agH -oxr -aiX +nit +gMN +sVH +gbB ajo -bPq -anZ -opo -ekd -ksn +oZO +oeL +mua +gVg +nWp ajo -ajw -wVG -qkz +vZK +iuH +mTd ajo -bOh -bPE -bOn -wVG -ksn -bPL +mLQ +jgi +lpP +iuH +nWp +hxU ajk amn aZr @@ -122939,9 +104709,9 @@ amL amE akl akl -mgw -anu -mgw +dSA +rnS +dSA akl akl amn @@ -122956,21 +104726,21 @@ auU avf asX ati -aCz -apz -dFP -dFP -dFP -dFP -dFP -aZH -eEW -nXj +nKA +lNA +pcy +pcy +pcy +pcy +pcy +wZi +mVx +eDI atl -ard -aXy -aCT -bUi +pFS +nNu +sit +har ato ylo ylo @@ -123113,42 +104883,42 @@ aRp aRp aRp akj -ycg -bmp -hws -vZD -pSb -fEC -fEC -xBa -aeB -aeB +uqt +phB +vNt +wJJ +xDE +mEp +mEp +pNR +rLI +rLI afq -aeG -aeL -aeL -aeL -aeL -aeL -aeL -aeL -aeL -aeL -aeL -afo -aeL -aeL -aeL -aeL -aeL -aeL -aeL -aeL -afQ +fER +onj +onj +onj +onj +onj +onj +onj +onj +onj +onj +xAe +onj +onj +onj +onj +onj +onj +onj +onj +wAN akc -aeB -vkW -aeR +rLI +fBJ +qqT agj atP atP @@ -123156,25 +104926,25 @@ atP atP atP agj -agC -agH -oxr -ahr +son +gMN +sVH +gsQ ajk -bPr -aUz -chL -nws -sIV +eVn +ygG +nSq +ltU +uwz ajk -cOf -wVG -brs +gkw +iuH +hqg ajk ajk ajk ajk -aHr +fEn ajk ajk ajk @@ -123184,9 +104954,9 @@ hvZ gBh dfg akl -sJe -amG -hat +sHu +vea +jIf akl wvZ gBh @@ -123194,28 +104964,28 @@ fWx amk amk alw -atN -atN -aCz -aCz -aCz -aCz +sWB +sWB +pnV +pnV +pnV +pnV atl atl atl atl -auP +vQO ati atl atl atl atl -aqV +vzu atl -aWC -aXy -aCT -bja +iFM +nNu +sit +qQt ato ylo ylo @@ -123358,42 +105128,42 @@ aRp aRp aRp bmj -rTo -bmp -nOj -bmp -bms -aeB -aeB -vkW -aeB -aeB +uai +phB +ilh +phB +pXe +rLI +rLI +fBJ +rLI +rLI afi afB afD afD -afF -afH +tqS +sfm afB afD afM afT afB -afW -afY +gZy +cbe afT afB afD afM afT -aji -ajK +uVK +noX afM afT afi -aeB -vkW -lJR +rLI +fBJ +fSm agb agb agb @@ -123401,10 +105171,10 @@ agb agb agb agb -agC -agH -oxr -arm +son +gMN +sVH +qHE ajk ajk ajk @@ -123412,16 +105182,16 @@ ajk ajk ajk ajk -aDu -wVG -jXg -ajv -aUq -ajv -sIw -wVG -bOp -gke +xAV +iuH +dsT +qPz +oqR +qPz +hNt +iuH +kUH +xsk ajk bvx aUF @@ -123429,9 +105199,9 @@ bjm akl aHg akl -dqu -amG -tCI +fVD +vea +sVT akl aHg akl @@ -123439,28 +105209,28 @@ bjm bvQ atC alw -aCz +pnV asX auo sap atD -aCz -aCz -aCz -atS -aCz -aCz +pnV +pnV +pnV +xXC +pnV +pnV ato -aXo -aXy -apH -aXy -aEQ -aCH -tLr -aCH -aCU -ark +opQ +nNu +uLf +nNu +tIg +eWe +uph +eWe +uiD +oue ato ylo ylo @@ -123603,109 +105373,109 @@ aRp aRp aRp bmj -rTo -bmp -nOj -mFp +uai +phB +ilh +neW bmF -cCP -tov -vkW -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -aeB -vkW -aeR +hRS +lvL +fBJ +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +rLI +fBJ +qqT agb -rzk -eOI -skK -eOI -wqN +fnv +kML +yjs +kML +dwj agb -agC -agH -uDh -mYQ -mkM -yhC -aDJ -aDL -yhC -yhC -aDM -yhC -atf -yhC -yhC -ibe -yhC -yhC -atr -ajx -eSY +son +gMN +kwo +bXT +wDm +evJ +mMa +qao +evJ +evJ +pAx +evJ +wlv +evJ +evJ +gVz +evJ +evJ +iHs +cUj +cqo ajk akl akl akl akl -svn -rDr -rhr -amG -svn -rDr -rhr +iNK +reW +uil +vea +iNK +reW +uil akl akl akl akl alw -aCz -aCz -aCz -aCz -aCz -aCz +pnV +pnV +pnV +pnV +pnV +pnV atD atD asX ask ask ato -cMw -aXy -aXy -aXy -aXy -aXy -oxk -aXy -aXy -bHz +wtZ +nNu +nNu +nNu +nNu +nNu +gJg +nNu +nNu +xYA ato ylo ylo @@ -123848,70 +105618,70 @@ bmC bmC bmC akj -yea -vZD -jQT -lFP +gMd +wJJ +ogn +mlI bmF aeU -bme -gei -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -ing -fEC -fEC -aRV -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -fEC -rOS -bSX +tzD +vBv +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +fRc +mEp +mEp +xxl +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +mEp +vql +puo agb -agv -lYv -iWo -jAq -ykO +hBE +qOL +fzt +wdG +oBi agb -agC -agH -oxr -agH -bjW -ajx -ajx -ajx -ajx -ajx -ajx -vsn -aor -aWr -blk -pji -aor -aWr -blk -ajx -qkz +son +gMN +sVH +gMN +eZK +cUj +cUj +cUj +cUj +cUj +cUj +jih +trA +lPZ +rvV +jDx +trA +lPZ +rvV +cUj +mTd ajk amA aUE @@ -123919,9 +105689,9 @@ amw akl aHg akl -sJe -amG -epg +sHu +vea +vSm akl aHg akl @@ -123929,8 +105699,8 @@ amw bvT amC alw -aCz -aCz +pnV +pnV atl ati ati @@ -123942,14 +105712,14 @@ ati ati ato ato -aXq -aXp -aXy -bjb -aXy -are -aXy -bjb +gRn +ctM +nNu +vFF +nNu +csK +nNu +vFF ato ato ylo @@ -124093,70 +105863,70 @@ bmD bmD ahE ahE -bGu -bmp -nOj -pfG +wwh +phB +ilh +qYf bmF aeU aeU -wmU -wmU -wmU -wmU -aRJ -gcy -wmU -wmU -wmU -wmU +gFb +gFb +gFb +gFb +mBP +cNL +gFb +gFb +gFb +gFb aeU -aOJ -aeB -aeB -vkW -aeB -aOJ +dnz +rLI +rLI +fBJ +rLI +dnz aeU -oWg -oWg -oWg -oWg -oWg -vFk -oWg -oWg -oWg -oWg -vPM +iDT +iDT +iDT +iDT +iDT +fzD +iDT +iDT +iDT +iDT +lzJ agb -lGD -lYv -vSa -jAq -ykO +iEI +qOL +msC +wdG +oBi agb -fIZ -agH -oxr -agH -bjW -ajx -ajx -ajx -ajx -ajx -ajx -ajx -vpT -aWr -blk -pji -blk -aWr -aor -ajx -qkz +xSZ +gMN +sVH +gMN +eZK +cUj +cUj +cUj +cUj +cUj +cUj +cUj +sPr +lPZ +rvV +jDx +rvV +lPZ +trA +cUj +mTd ajk amB amk @@ -124164,9 +105934,9 @@ hvZ gBh xWS akl -buV -amG -nzR +hpd +vea +gNB akl hKt gBh @@ -124332,16 +106102,16 @@ ylo ylo ylo ahE -bLg -bLd -bLn -bKS -bLr +fgD +tLe +ltI +eXK +bEL bmG -uzl -vOw -jtY -bmA +hEI +qFB +whJ +kcS bmF bmF aeM @@ -124357,51 +106127,51 @@ afe aeM aeU aeU -agW -agW -qvD -agW +xfI +xfI +nKg +xfI bnL agb agb uSk uSk -cxh +laq uSk agb pLO -ocD +cYt pLO pLO agb agb -aTi -fSU -agz -fXP -lnM +fTf +dDI +cdc +mxw +nMd agb -wCJ -agH -oxr -odC +nJJ +gMN +sVH +jef hed -ajw -boQ -ajx -boQ -ajx -ajx -ajx -blk -aWr -aor -pji -aor -aWr -blk -ajx -dNS +vZK +hEF +cUj +hEF +cUj +cUj +cUj +rvV +lPZ +trA +jDx +trA +lPZ +rvV +cUj +rYc ajk bjm bvQ @@ -124409,9 +106179,9 @@ amn amD akl akl -kVn -amG -rXs +enq +vea +qYU akl akl ans @@ -124577,87 +106347,87 @@ ylo ylo ylo bmD -bLh -bLi -bKR -bmh -vQs +ksZ +lKZ +xJo +tOf +vjh bmm -uzl -bmp -nOj -bmp -bmp -bmp +hEI +phB +ilh +phB +phB +phB afe -bqU -bqW -brj -jYC -tSu -qJA -bqU -mIx -rrG -teZ +xSD +mBn +fbl +uyQ +ioP +iNn +xSD +ejV +uVU +gYh aeM -aRx -aeB -aeB -vkW -aeB -aSh +qri +rLI +rLI +fBJ +rLI +sLO agb -fzo -eOI -eOI -wHQ -lPH -skK -sRK -jYs -eOI -eOI -uji +imB +kML +kML +oBR +dlp +yjs +qwb +cIO +kML +kML +jXi bnU agb agg -mFS +gEx agg agb agb agb -lFU -fkG +gBC +rfu agb oHs -bog -boR -ajx -boR -uww -ajx -ajx -aWd -aWA -aWA -mUv -aWA -aWA -anZ -ajx -bOq +gBA +oET +cUj +oET +dYU +cUj +cUj +gnH +fOT +fOT +iEC +fOT +fOT +oeL +cUj +dub ajk akl akl akl akl akl -kmj -dqu -lGo -rXs -pgf +lKt +fVD +gzs +qYU +hUH akl akl akl @@ -124822,95 +106592,95 @@ ylo ylo ylo bmD -ukz -bmh -mgq -bmh -xMi +cfD +tOf +iwI +tOf +kWw bmm -bmq -bmp -hws -vZD -vZD -vZD -kxc -qaj -rKo -ayb -ayb -hxW -ayb -ayb -ayb -hxW -hsM +lCx +phB +vNt +wJJ +wJJ +wJJ +uhf +dWa +cti +jGb +jGb +nCt +jGb +jGb +jGb +nCt +lEe aeM -aDQ -aeB -aeB -vkW -aeB -iuz +uPs +rLI +rLI +fBJ +rLI +nRl agb -mdV -agw -agw -hFo -spD -agw -sez -agw -agw -agw -lNS +wfI +goN +goN +uuz +lHh +goN +jaF +goN +goN +goN +dkG agb -eOI -ags -rTX -rrY -nUd -skK -ags -agw -rTX -xNL +kML +qhi +tvD +vdB +cyA +yjs +qhi +goN +tvD +ijR oHs -cOf -boR -ajx -boR -ajx -ajx -ajx -uLV -bJc -ajx -wXT -ajx -ajx -ajx -ajx -qkz -vfb -jvC +gkw +oET +cUj +oET +cUj +cUj +cUj +hqG +oLI +cUj +vJI +cUj +cUj +cUj +cUj +mTd +xPV +xdE oPq wXE -jvC -ydY -amG -vLb -amG -rXs -amG -ydY -jvC +xdE +iwX +vea +jdp +vea +qYU +vea +iwX +xdE wXE atw -jvC -ydY -aCz -hKZ +xdE +iwX +pnV +utT ati ylo ylo @@ -125067,87 +106837,87 @@ ylo ylo ylo ahE -bmb -lPY -jgI -bmw -rYj -bGy -vZD -vZD -jQT -bmp -bmr -xkn +cko +soW +mvu +reP +tQg +vlE +wJJ +wJJ +ogn +phB +cAA +lTR aeM -mGn -iLj -hTe -smk -lyK -wjw -lyK -rei -qaj -qaj -aLf -fEC -fEC -fEC -xBa -aeB -aeB -bcv -agw -rQY -iFy -iFy -iFy -qeY -iFy -iFy -iFy -qeY -iFy -ahV -iFy -iFy -pgH -rrE -knG -skp -iFy -iFy -ryc -lhL +pXK +krH +xLj +sAM +iPs +kYB +iPs +ikd +dWa +dWa +gKl +mEp +mEp +mEp +pNR +rLI +rLI +qUJ +goN +jJn +fuJ +fuJ +fuJ +itB +fuJ +fuJ +fuJ +itB +fuJ +qpO +fuJ +fuJ +vvL +sdG +xcL +qHl +fuJ +fuJ +iHz +dDV oHs -cOf -boR -ajx -wRH -ajx -ajx -ajx -ajx -ksn -nws -nws -nws -nws -bOo -aUz -nZB +gkw +oET +cUj +gNX +cUj +cUj +cUj +cUj +nWp +ltU +ltU +ltU +ltU +myf +ygG +vcR ajk akl akl akl akl akl -bZv -sJe -amG -rXs -bru +ine +sHu +vea +qYU +lYF akl akl akl @@ -125318,63 +107088,63 @@ bmG bmG bmG bmG -bmz -bmp -nOj -bmp -bmp -bmp -qOF -ayb -ayb -ayb -nAO -bIa -gPX -tXo -pCW -ayb -ayb -ayb -aeB -aeB -aeB -dQW -fEC -fEC -ahV -iFy -fDx -fXP -eTR -eTR -lko -eTR -eTR -fSU -rTX -fXP +std +phB +ilh +phB +phB +phB +mrg +jGb +jGb +jGb +cwS +hDt +llL +yaz +rnX +jGb +jGb +jGb +rLI +rLI +rLI +mph +mEp +mEp +qpO +fuJ +wnP +mxw +mxG +mxG +rPf +mxG +mxG +dDI +tvD +mxw agb agb -ikC +wOR agb agb -cUT -agw -agw -agw -agw -ykO +ebg +goN +goN +goN +goN +oBi oHs -wwE -nws -nws -nws -nws -nws -nws -nws -asd +iax +ltU +ltU +ltU +ltU +ltU +ltU +ltU +iCZ oHs gzf app @@ -125389,9 +107159,9 @@ amn amP akl akl -amU -lGo -rXs +hfs +gzs +qYU akl akl amw @@ -125557,72 +107327,72 @@ ylo ylo ylo ahE -bKQ -bma -bbz -blS -bbA +vIr +jCb +unn +tXS +gaj bmG -bKU -bmp -nOj -bmp -bmp -bmp +ijF +phB +ilh +phB +phB +phB afe -bqV -ayb -ayb -wlj -bqW -bqW -bqW -xsm -ayb -aWp +mgz +jGb +jGb +xsd +mBn +mBn +mBn +rqV +jGb +hyS aeM -aDK -aeB -shW -vkW -aeB -tLa +wwg +rLI +cVT +fBJ +rLI +rZc agb -iEg -rTX -ykO +gJT +tvD +oBi tPV tPV tPV tPV tPV -agv -rTX -aSJ +hBE +tvD +dNO agb -gjh -hFo -dzT +nbC +uuz +uLd agb -lGD -bSE -qOr -bSO -kMu -ykO +iEI +xoe +kpC +pub +xTY +oBi oHs -anZ -aoi -anZ -aoi -anZ -aoi -anZ -aoi -anZ +oeL +jRD +oeL +jRD +oeL +jRD +oeL +jRD +oeL oHs -anZ -wrR +oeL +nrb app ylo ylo @@ -125634,9 +107404,9 @@ hvZ gBh dfg akl -buV -geV -aUY +hpd +qbL +kxh akl wvZ gBh @@ -125802,72 +107572,72 @@ ylo ylo ylo ahE -bKT -rQD -rrv -rYj -rYj -bbS -vZD -vZD -eSg -bmr -rKq -ton +jWc +fus +cUy +tQg +tQg +gWE +wJJ +wJJ +fjh +cAA +jYm +iny aeM -ffC -bqY -bqY -wim -bqY -wim -wim -bqY -bqY -buM +qmN +fIT +fIT +mcV +fIT +mcV +mcV +fIT +fIT +qRF aeM -xST -iRw -fJZ -ejD -gMC -xBA +jqv +eJC +plm +ijh +rOl +kmW agb -stA -kKB -rrY -eOI -tPT -bTl -tPT -eOI -clg -nJn -aZu +khK +vHZ +vdB +kML +orp +rGp +orp +kML +ddr +rlS +vOb agb -qbB -sKQ -tzX +muL +vRb +vGc agb -wkr -bTo -ghJ -qeF -rWh -lnM +qhG +ckd +wVY +fEQ +qPa +nMd oHs -anZ -aor -aUh -bJk -anZ -aor -aUh -bJk -lqX +oeL +trA +fNf +hTz +oeL +trA +fNf +hTz +rzB oHs -anZ -wrR +oeL +nrb app ylo ylo @@ -125879,9 +107649,9 @@ bjm akl aHg akl -dqu -amG -tCI +fVD +vea +sVT akl aHg akl @@ -126048,46 +107818,46 @@ ylo ylo ahE ahE -bPh -hFR -hFR -qGF +gzD +iuN +iuN +kbt bmG -anJ -dyU -dyU -bKX +rHv +waU +waU +cOy bmF bmF aeM aeM aeM -tpA -qNe -afK -qqF -rOP -hdG -kWZ +nFO +edq +jyC +poF +iqH +dJc +wNT aeM aeM aeU -qBk -jGZ -bTh -ftX +pXE +odp +chH +kuz aeU agb agb -aio -iFy -iFy -iFy -oRJ -vlv -vlv -iFy -iyp +rwQ +fuJ +fuJ +fuJ +nOV +vKj +vKj +fuJ +vqe agb agb agb @@ -126111,8 +107881,8 @@ oHs oHs oHs oHs -anZ -cNI +oeL +qDd app ylo ylo @@ -126122,13 +107892,13 @@ akl akl akl akl -svn -rDr -snU -rDr -snU -rDr -rhr +iNK +reW +oYk +reW +oYk +reW +uil akl akl akl @@ -126294,18 +108064,18 @@ ylo ylo ahE ahE -bLm -bLq -bLu +mrH +tSi +kby bmG -aTy -bmr -bmr -bmr +dHO +cAA +cAA +cAA tqb lwu jAO -aeI +tVB aeM aeM aeM @@ -126324,40 +108094,40 @@ aeU aeU nbN agb -oOL -kPS -eTR -bSr -avp -avp -eTR -eDP -wVA +rZO +dBI +mxG +jAR +iws +iws +mxG +fhs +fup agb nbN nbN jAO -aeI +tVB lwu wmi -aeI -aeI +tVB +tVB lwu lwu lwu -wAF +xqD yfh yfh yfh -anZ -anZ +oeL +oeL yfh yfh -anZ +oeL eIq yfh -anZ -anZ +oeL +oeL app ylo ylo @@ -126549,23 +108319,23 @@ bmj akj akz akz -aeI +tVB lwu -aeI -aeI +tVB +tVB lwu lwu -uFM +lvW lwu lwu -aeI -aeI +tVB +tVB lwu -aeI -aeI +tVB +tVB jAO lwu -aeI +tVB lwu lwu agb @@ -126582,27 +108352,27 @@ agb lwu lwu lwu -aeI +tVB lwu lwu -aeI -aeI +tVB +tVB lwu lwu lwu -wrR +nrb yfh yfh yfh -anZ -anZ +oeL +oeL oFU yfh -anZ +oeL yfh yfh -anZ -anZ +oeL +oeL app ylo ylo @@ -126796,33 +108566,33 @@ ylo akz akz fHO -aeI -aeI +tVB +tVB lwu lwu -aeI +tVB lwu lwu -aeI -aeI +tVB +tVB lwu -aeI -aeI +tVB +tVB lwu lwu -aeI +tVB lwu lwu -fWN -fWN -fWN +xed +xed +xed wsJ wsJ -fWN +xed avs wsJ -fWN -fWN +xed +xed wsJ lwu lwu diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm index 75c0cdfdc8..b06b31f2b6 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_gammacontrol.dmm @@ -1,14 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red"; dir = 4 }, +/obj/structure/closet/firecloset, +/turf/open/floor/corsat/red/east, /area/corsat/gamma/airlock/control) "b" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -18,84 +14,54 @@ /turf/open/floor/plating, /area/corsat/gamma/hallwaysouth) "d" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner"; - dir = 4 - }, +/turf/open/floor/corsat/redcorner/east, /area/corsat/gamma/airlock/control) "e" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "f" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "g" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "h" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "i" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "j" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/gamma/airlock/control) "k" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "l" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/gamma/airlock/control) "m" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "GammaWestD"; - name = "Gamma Dome Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Gamma Dome Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/control) "n" = ( /obj/structure/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow"; dir = 4 }, +/obj/structure/machinery/disposal, +/turf/open/floor/corsat/yellow/east, /area/corsat/gamma/airlock/control) (1,1,1) = {" diff --git a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm index aa4d3cceae..e0867f3ef1 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_gammanorth.dmm @@ -4,30 +4,22 @@ /turf/open/floor/plating, /area/corsat/gamma/airlock/north) "b" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "c" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "d" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/airlock/north) "e" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/airlock/north) "f" = ( /obj/structure/window/framed/corsat/security, @@ -44,24 +36,16 @@ "h" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "GammaNorthS"; - name = "Gamma North Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Gamma North Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "i" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "j" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/gamma/airlock/north) "k" = ( /obj/structure/sign/safety/airlock{ diff --git a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm index efd261dd7f..dd4ef5005c 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_highsec.dmm @@ -11,66 +11,45 @@ name = "Gamma Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "d" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "e" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "f" = ( -/turf/open/floor/corsat{ - icon_state = "gamma" - }, +/turf/open/floor/corsat/gamma, /area/corsat/omega/checkpoint) "g" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "h" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "i" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "j" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "k" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" + dir = 4 }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "l" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/omega/checkpoint) "m" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -78,14 +57,11 @@ name = "Gamma Emergency Access"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "n" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 1; id = "OmegaAccessC"; name = "Security Shutters" }, @@ -97,10 +73,7 @@ /area/corsat/omega/checkpoint) "p" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "q" = ( /obj/structure/surface/table/reinforced, @@ -108,41 +81,27 @@ id = "delta_gamma"; name = "Gamma Emergency Access"; pixel_x = -5; - unacidable = 1; use_power = 0 }, /obj/structure/machinery/door_control{ id = "delta_gamma2"; name = "Checkpoint Gamma"; pixel_x = 5; - pixel_y = 0; - unacidable = 1; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "r" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras{ - dir = 2; - icon_state = "cameras"; network = list("omega") }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "s" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "t" = ( /obj/structure/window/framed/corsat/security, @@ -154,59 +113,38 @@ /turf/open/floor/plating, /area/corsat/omega/checkpoint) "u" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 9 - }, +/turf/open/floor/corsat/red/northwest, /area/corsat/omega/checkpoint) "v" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "w" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/omega/checkpoint) "x" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 5 - }, +/turf/open/floor/corsat/red/northeast, /area/corsat/omega/checkpoint) "y" = ( /obj/structure/lattice, /turf/template_noop, /area/template_noop) "z" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "A" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "B" = ( /obj/structure/bed/chair/comfy/black{ icon_state = "comfychair"; dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "C" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 4 - }, +/turf/open/floor/corsat/red/east, /area/corsat/omega/checkpoint) "D" = ( /obj/structure/surface/table/reinforced, @@ -215,7 +153,6 @@ req_access_txt = "3" }, /obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 4; name = "Identification Desk" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -224,27 +161,18 @@ name = "Security Shutters" }, /obj/structure/window/reinforced, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "E" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 8 - }, +/turf/open/floor/corsat/red/west, /area/corsat/omega/checkpoint) "F" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "G" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/omega/checkpoint) "H" = ( /obj/structure/surface/table/reinforced, @@ -253,7 +181,6 @@ req_access_txt = "3" }, /obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 4; name = "Identification Desk" }, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -261,15 +188,11 @@ id = "OmegaAccessC"; name = "Security Shutters" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/omega/checkpoint) "I" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "J" = ( /obj/structure/surface/table/reinforced, @@ -277,82 +200,55 @@ id = "delta_omega"; name = "Checkpoint Omega"; pixel_x = -5; - unacidable = 1; use_power = 0 }, /obj/structure/machinery/door_control{ id = "delta_theta"; name = "Theta Emergency Access"; pixel_x = 5; - unacidable = 1; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "K" = ( /obj/structure/machinery/computer/cameras{ dir = 1; - icon_state = "cameras"; network = list("omega") }, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "L" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 6 - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "M" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 10 - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/omega/checkpoint) "N" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "O" = ( -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/omega/checkpoint) "P" = ( -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 6 - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/omega/checkpoint) "Q" = ( -/turf/open/floor/corsat{ - icon_state = "omega" - }, +/turf/open/floor/corsat/omega, /area/corsat/omega/checkpoint) "R" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +/turf/open/floor/corsat/theta, /area/corsat/omega/checkpoint) "S" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "T" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -360,9 +256,7 @@ name = "Omega Checkpoint"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "U" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure/open{ @@ -370,9 +264,7 @@ name = "Theta Emergency Access"; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/omega/checkpoint) "V" = ( /turf/closed/wall/r_wall/biodome, diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm index c98c46b72e..8e41c82f51 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_thetacontrol.dmm @@ -4,20 +4,14 @@ /turf/open/floor/plating, /area/corsat/gamma/hallwaysouth) "b" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/gamma/hallwaysouth) "c" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "d" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/gamma/hallwaysouth) "e" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -25,69 +19,43 @@ "f" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/open{ id = "ThetaNorthD"; - name = "Theta Dome Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Theta Dome Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "g" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "h" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/control) "i" = ( /obj/structure/machinery/light{ - icon_state = "tube1"; dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "red"; - dir = 1 - }, +/turf/open/floor/corsat/red/north, /area/corsat/theta/airlock/control) "j" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner"; - dir = 1 - }, +/turf/open/floor/corsat/redcorner/north, /area/corsat/theta/airlock/control) "k" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "l" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/theta/airlock/control) "m" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner"; - dir = 4 - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/theta/airlock/control) "n" = ( /obj/structure/machinery/light{ - icon_state = "tube1"; dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - icon_state = "yellow"; - dir = 1 - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/theta/airlock/control) (1,1,1) = {" diff --git a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm index 61645f5a5b..e9b6a35576 100644 --- a/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm +++ b/maps/map_files/CORSAT/standalone/lockdown_thetaeast.dmm @@ -13,62 +13,44 @@ /turf/open/gm/dirt, /area/corsat/theta/biodome) "e" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "f" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "g" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "h" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 + dir = 4 }, /turf/open/gm/dirt, /area/corsat/theta/biodome) "i" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "j" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "retrosquares" - }, +/turf/open/floor/corsat/retrosquares, /area/corsat/theta/airlock/east) "k" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "ThetaEastW"; - name = "Theta East Airlock"; - unacidable = 0; - use_power = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + name = "Theta East Airlock" }, +/turf/open/floor/corsat/marked, /area/corsat/theta/airlock/east) "l" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/theta/airlock/east) "m" = ( /obj/structure/sign/safety/airlock{ @@ -79,7 +61,6 @@ "n" = ( /obj/structure/window/framed/corsat/security, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 1; id = "ThetaIDEC2"; name = "Security Shutters" }, diff --git a/maps/map_files/CORSAT/standalone/sigma_ice.dmm b/maps/map_files/CORSAT/standalone/sigma_ice.dmm index c3d3c93b92..33d62da2e6 100644 --- a/maps/map_files/CORSAT/standalone/sigma_ice.dmm +++ b/maps/map_files/CORSAT/standalone/sigma_ice.dmm @@ -51,9 +51,7 @@ /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "ba" = ( /obj/structure/window/reinforced{ @@ -74,10 +72,7 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "bo" = ( /obj/structure/surface/rack, @@ -86,9 +81,7 @@ /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "bp" = ( /obj/structure/surface/rack, @@ -97,9 +90,7 @@ /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, /obj/item/tool/shovel/snow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "bs" = ( /turf/open/auto_turf/snow/layer0, @@ -118,10 +109,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "bN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "bT" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -139,26 +127,17 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony{ damage_cap = 4000; dir = 1; - locked = 0; name = "\improper Emergency Access"; req_access_txt = "100"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/biodome/ice) "cs" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/gunrange) "cv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/gunrange) "cA" = ( /turf/open/auto_turf/snow/layer4, @@ -175,20 +154,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "db" = ( /turf/closed/wall/r_wall/biodome, /area/corsat/inaccessible) "dd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "dn" = ( /obj/structure/window/framed/corsat/hull, @@ -202,10 +175,7 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "dr" = ( /turf/open/floor/corsat, @@ -243,10 +213,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "ee" = ( /obj/effect/decal/warning_stripes{ @@ -261,10 +228,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "ev" = ( /obj/structure/window/framed/corsat, @@ -279,10 +243,7 @@ "eV" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "fc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -305,10 +266,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/ice) "fC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -332,8 +290,7 @@ /area/corsat/sigma/biodome/gunrange) "gi" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 + name = "Floodlight" }, /turf/open/auto_turf/snow/layer0, /area/corsat/sigma/biodome/ice) @@ -341,9 +298,7 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "gr" = ( /obj/structure/bed/nest, @@ -392,35 +347,23 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/sigma/biodome/ice) "hC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/ice) "hH" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "hQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "hR" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ damage_cap = 4000; - locked = 0; name = "\improper Emergency Access"; req_access_txt = "100"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/inaccessible) "hU" = ( /obj/structure/barricade/wooden, @@ -438,20 +381,14 @@ /area/corsat/sigma/biodome/scrapyard) "ih" = ( /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "io" = ( /obj/effect/alien/weeds/node, /turf/open/ice, /area/corsat/sigma/biodome/ice) "iy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/corsat/sigma/biodome/scrapyard) "iK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -462,10 +399,7 @@ "iL" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "iO" = ( /obj/effect/decal/warning_stripes{ @@ -487,31 +421,20 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "jv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "jy" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "jL" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "jT" = ( /obj/structure/pipes/vents/pump, @@ -521,29 +444,20 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "kl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "km" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/scrapyard) "kr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -558,10 +472,7 @@ /area/corsat/sigma/biodome/ice) "kv" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "kH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -631,16 +542,11 @@ name = "Sigma Dome Control"; req_one_access = list(102) }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "lY" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "mm" = ( /obj/structure/pipes/vents/pump{ @@ -658,42 +564,28 @@ /obj/structure/surface/rack, /obj/item/clothing/suit/storage/snow_suit, /obj/item/clothing/suit/storage/snow_suit, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "mX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "mY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "nb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/west, /area/corsat/sigma/airlock/control) "ng" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/smg/mp5, /obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "nk" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -728,10 +620,7 @@ /turf/open/auto_turf/snow/layer3, /area/corsat/sigma/biodome/scrapyard) "nZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "oa" = ( /obj/structure/window/framed/corsat, @@ -793,10 +682,7 @@ /area/corsat/sigma/biodome/ice) "pC" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "pP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -811,9 +697,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "qs" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -840,9 +724,7 @@ /obj/structure/machinery/door/window/northright{ name = "Firing Lane" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "rP" = ( /obj/structure/surface/table/almayer, @@ -859,9 +741,7 @@ name = "Firing Lane" }, /obj/structure/surface/table/almayer, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/gunrange) "rW" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -876,23 +756,14 @@ /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "sp" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/corsat/sigma/biodome/gunrange) "ss" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northeast, /area/corsat/sigma/biodome/gunrange) "sx" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "sA" = ( /obj/structure/machinery/constructable_frame, @@ -912,18 +783,14 @@ /area/corsat/sigma/biodome/gunrange) "tc" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "tg" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/sigma/biodome/ice) "tm" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 + name = "Floodlight" }, /turf/open/auto_turf/snow/layer2, /area/corsat/sigma/biodome/ice) @@ -933,20 +800,14 @@ name = "Waste Tank Control" }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "tM" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "tZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -958,18 +819,13 @@ /obj/structure/pipes/binary/pump/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "uc" = ( /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "uk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -984,9 +840,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "ur" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -997,10 +851,7 @@ "us" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "uy" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1012,10 +863,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "uO" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -1024,10 +872,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "ve" = ( /obj/effect/decal/warning_stripes{ @@ -1043,10 +888,7 @@ dir = 4 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "vO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1056,10 +898,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "vU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1082,19 +921,13 @@ /area/corsat/sigma/biodome/ice) "ww" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "wD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "xk" = ( /obj/structure/cargo_container/watatsumi/rightmid, @@ -1105,18 +938,13 @@ /obj/structure/machinery/computer/atmos_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "xK" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "xM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -1129,49 +957,35 @@ name = "Access Shutter" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "xQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/station_alert{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "xX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "xZ" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "yh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "yj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "Maintainence"; req_one_access = list() }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "yl" = ( /obj/structure/machinery/light{ @@ -1180,10 +994,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "yn" = ( /obj/structure/window/reinforced, @@ -1200,10 +1011,7 @@ /obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "yr" = ( /obj/structure/window/reinforced, @@ -1218,22 +1026,14 @@ "yy" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "yC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "yG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "yJ" = ( /obj/structure/surface/rack, @@ -1241,9 +1041,7 @@ /obj/item/tank/air, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "yL" = ( /obj/structure/machinery/constructable_frame{ @@ -1263,9 +1061,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "yT" = ( /obj/item/broken_device, @@ -1275,9 +1071,7 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/toolbox, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "yX" = ( /turf/template_noop, @@ -1289,44 +1083,31 @@ "zf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "zh" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/west, /area/corsat/sigma/airlock/control) "zo" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "zJ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow, /area/corsat/sigma/airlock/control) "zQ" = ( /obj/structure/pipes/trinary/mixer{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southeast, /area/corsat/sigma/airlock/control) "zT" = ( /obj/structure/pipes/unary/outlet_injector{ @@ -1340,9 +1121,7 @@ /turf/open/floor/corsat, /area/corsat/inaccessible) "Aj" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Al" = ( /obj/structure/machinery/door_control{ @@ -1350,17 +1129,13 @@ name = "Access Shutters"; pixel_y = 24 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Ao" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "As" = ( /obj/item/tool/shovel, @@ -1370,19 +1145,13 @@ /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "AJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/scrapyard) "AS" = ( /obj/structure/largecrate/supply/ammo/m39{ @@ -1390,16 +1159,12 @@ name = "\improper M39 magazine case (x8)"; supplies = list(/obj/item/ammo_magazine/smg/m39=3) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "AX" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Ba" = ( /obj/effect/decal/warning_stripes{ @@ -1424,9 +1189,7 @@ dir = 1 }, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Bn" = ( /obj/structure/surface/rack, @@ -1437,18 +1200,13 @@ dir = 1 }, /obj/item/weapon/gun/flamer/M240T, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Bv" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "BM" = ( /turf/closed/wall/r_wall/biodome, @@ -1459,22 +1217,14 @@ name = "Mixed Air Control" }, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "BV" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/ice) "Cd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Ce" = ( /obj/structure/largecrate/supply/ammo/pistol{ @@ -1482,25 +1232,19 @@ name = "sidearm ammunition case (x14)"; supplies = list(/obj/item/ammo_magazine/revolver=6,/obj/item/ammo_magazine/pistol=8) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Ch" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/incendiary, /obj/item/explosive/grenade/incendiary, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "CA" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "CI" = ( /obj/structure/window/reinforced, @@ -1522,9 +1266,7 @@ }, /obj/item/weapon/gun/pistol/m4a3, /obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Db" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1533,18 +1275,13 @@ req_access_txt = "106"; use_power = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "Dd" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive, /obj/item/explosive/grenade/high_explosive, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Df" = ( /obj/structure/machinery/light{ @@ -1556,9 +1293,7 @@ /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Dh" = ( /obj/structure/target/syndicate, @@ -1570,25 +1305,17 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Dp" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northwest, /area/corsat/sigma/airlock/control) "Ds" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "Dw" = ( /turf/closed/wall/r_wall/biodome, @@ -1598,22 +1325,14 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/sigma/biodome/ice) "DI" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "DO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/biodome/ice) "DT" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "DX" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -1622,10 +1341,7 @@ req_one_access = list(102) }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Eg" = ( /obj/structure/machinery/computer/general_air_control/large_tank_control{ @@ -1634,10 +1350,7 @@ /obj/structure/surface/table/almayer{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/southwest, /area/corsat/sigma/airlock/control) "Ev" = ( /obj/structure/largecrate/supply/ammo/m41a{ @@ -1645,24 +1358,18 @@ name = "\improper M41A magazine case (x10)"; supplies = list(/obj/item/ammo_magazine/rifle=10) }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "EJ" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "EM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "ES" = ( /turf/open/auto_turf/snow/layer2, @@ -1680,32 +1387,22 @@ /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/flashbang, /obj/item/explosive/grenade/flashbang, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Fu" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Fx" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 }, /obj/structure/machinery/meter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "Fy" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/north, /area/corsat/sigma/airlock/control) "Fz" = ( /obj/structure/surface/rack, @@ -1717,18 +1414,14 @@ }, /obj/item/weapon/gun/revolver/m44, /obj/item/weapon/gun/revolver/m44, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "FC" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/ice, /area/corsat/sigma/biodome/scrapyard) "FI" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Gd" = ( /obj/structure/surface/rack, @@ -1739,17 +1432,13 @@ name = "Weapon Rack" }, /obj/item/ammo_magazine/flamer_tank, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Gf" = ( /obj/structure/surface/table/almayer, /obj/item/explosive/grenade/high_explosive/frag, /obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Gj" = ( /obj/structure/target, @@ -1762,54 +1451,33 @@ desc = "A rectangular steel crate containing firing targets."; name = "target crate" }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "GJ" = ( -/obj/structure/machinery/power/apc/high{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, +/obj/structure/machinery/power/apc/upgraded/no_power/west, /obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "GK" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "GO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "GW" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "GZ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/east, /area/corsat/sigma/airlock/control) "Hh" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/northeast, /area/corsat/sigma/airlock/control) "HB" = ( /obj/effect/decal/warning_stripes{ @@ -1829,10 +1497,7 @@ use_power = 0 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/gunrange) "HV" = ( /obj/structure/window/framed/corsat, @@ -1843,37 +1508,26 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/west, /area/corsat/sigma/airlock/control) "Ib" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Ih" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "Im" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/corsat/yellow/north, /area/corsat/sigma/airlock/control) "Iw" = ( /turf/open/auto_turf/snow/layer2, @@ -1881,10 +1535,7 @@ "ID" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northwest, /area/corsat/sigma/airlock/control) "IJ" = ( /obj/structure/fence, @@ -1892,18 +1543,12 @@ /area/corsat/sigma/biodome/gunrange) "IR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner/east, /area/corsat/sigma/airlock/control) "IV" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/station_alert, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Jm" = ( /obj/effect/decal/warning_stripes{ @@ -1922,24 +1567,15 @@ /obj/structure/machinery/camera/autoname{ network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Jy" = ( /obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "JQ" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "JT" = ( /obj/structure/window/framed/corsat, @@ -1959,71 +1595,49 @@ /area/corsat/sigma/biodome/ice) "Kj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "Kq" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/ice) "Kr" = ( -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "Ku" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Kw" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KA" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, /obj/item/tool/shovel, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "KF" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KN" = ( /turf/open/auto_turf/snow/layer4, /area/corsat/sigma/biodome/gunrange) "KR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "KU" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "KV" = ( /obj/effect/decal/warning_stripes{ @@ -2038,47 +1652,32 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Lg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Lr" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/northeast, /area/corsat/sigma/airlock/control) "Ly" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LF" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "LH" = ( /obj/effect/decal/warning_stripes{ @@ -2096,10 +1695,7 @@ "Ms" = ( /obj/structure/fence, /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "MA" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2107,29 +1703,19 @@ }, /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/pmc, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "ME" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Nk" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/north, /area/corsat/sigma/airlock/control) "Nm" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Nn" = ( /obj/structure/barricade/wooden{ @@ -2141,32 +1727,20 @@ "Ns" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/corsat_bio_lock, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "NA" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "NI" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "NQ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/east, /area/corsat/sigma/airlock/control) "NS" = ( /obj/effect/decal/warning_stripes{ @@ -2185,24 +1759,17 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Om" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Ot" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner/west, /area/corsat/sigma/airlock/control) "OI" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -2213,25 +1780,19 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "OK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "OR" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "OT" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -2246,10 +1807,7 @@ pixel_y = 5; use_power = 0 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "Po" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2260,10 +1818,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/corsat/sigma/biodome/ice) "PE" = ( /obj/structure/window/reinforced, @@ -2273,10 +1828,7 @@ /turf/open/ice, /area/corsat/sigma/biodome/ice) "PH" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "PM" = ( /obj/structure/surface/table/almayer, @@ -2286,9 +1838,7 @@ pixel_x = -5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "PY" = ( /obj/item/cell/crap, @@ -2297,50 +1847,35 @@ "PZ" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Qd" = ( /obj/structure/bed/chair/office/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Qf" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "Qi" = ( -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +/turf/open/floor/corsat/bluecorner, /area/corsat/sigma/airlock/control) "Qm" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "Qr" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "Qx" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/paper, /obj/item/tool/pen/red, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "QD" = ( /obj/structure/cargo_container/grant/left, @@ -2354,10 +1889,7 @@ "QU" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "Rb" = ( /obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -2368,34 +1900,24 @@ dir = 8 }, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Ri" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "Rn" = ( /obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "red" - }, +/turf/open/floor/corsat/red, /area/corsat/sigma/airlock/control) "Rp" = ( /obj/structure/machinery/camera/autoname{ dir = 8; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/east, /area/corsat/sigma/airlock/control) "Rq" = ( /obj/structure/surface/table/reinforced, @@ -2403,10 +1925,7 @@ dir = 1; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southwest, /area/corsat/sigma/airlock/control) "Rw" = ( /obj/structure/bed/chair{ @@ -2428,16 +1947,12 @@ pixel_x = 5; use_power = 0 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RD" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RI" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -2450,21 +1965,14 @@ /area/corsat/sigma/biodome/scrapyard) "RQ" = ( /obj/structure/machinery/computer3, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/blue, /area/corsat/sigma/airlock/control) "RR" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/southeast, /area/corsat/sigma/airlock/control) "Sg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/biodome/ice) "Sh" = ( /obj/structure/cargo_container/arious/leftmid, @@ -2476,28 +1984,17 @@ /area/corsat/sigma/biodome/ice) "Sm" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Ss" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "Su" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "Sy" = ( /obj/effect/landmark/survivor_spawner, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "SK" = ( /obj/structure/fence, @@ -2507,21 +2004,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "To" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "Tq" = ( -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner, /area/corsat/sigma/airlock/control) "Tw" = ( /obj/effect/decal/warning_stripes{ @@ -2550,15 +2039,10 @@ /turf/open/auto_turf/snow/layer1, /area/corsat/sigma/biodome/scrapyard) "TC" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southeast, /area/corsat/sigma/airlock/control) "TP" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "TX" = ( /turf/open/ice, @@ -2571,16 +2055,11 @@ /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, /obj/item/clothing/shoes/snow, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Uu" = ( /obj/structure/closet/athletic_mixed, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "Uv" = ( /obj/structure/bed/chair, @@ -2599,9 +2078,7 @@ /area/template_noop) "UX" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/emergency_access) "Vh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -2610,9 +2087,7 @@ req_access_txt = "101" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Vi" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ @@ -2620,9 +2095,7 @@ name = "ID Checkpoint"; req_access_txt = "101" }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "Vq" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2636,9 +2109,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "Vz" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2648,13 +2119,9 @@ /area/corsat/sigma/biodome/ice) "VF" = ( /obj/structure/machinery/floodlight{ - name = "Floodlight"; - unacidable = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + name = "Floodlight" }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/biodome/ice) "VJ" = ( /obj/structure/pipes/vents/pump/siphon/on{ @@ -2665,33 +2132,23 @@ /area/corsat/inaccessible) "VL" = ( /obj/structure/closet/secure_closet/security, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "VR" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Wd" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/window/brigdoor/westleft, /obj/structure/machinery/door/window/brigdoor/eastleft, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Wj" = ( /obj/structure/flora/pottedplant, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/blue/north, /area/corsat/sigma/airlock/control) "Wk" = ( /turf/closed/wall/strata_ice, @@ -2710,37 +2167,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "WL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/corsat/sigma/airlock/control) "WW" = ( /obj/item/folder/black_random, /obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "WY" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Xm" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/asteroidplating, /area/corsat/sigma/biodome/gunrange) "Xv" = ( /turf/open/floor/corsat, @@ -2764,24 +2209,18 @@ /area/corsat/sigma/biodome/ice) "XG" = ( /obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "XK" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "XM" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/sigma, /area/corsat/sigma/airlock/control) "XN" = ( /obj/structure/pipes/vents/pump, @@ -2795,9 +2234,7 @@ id = "SigmaWestW"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "Yn" = ( /obj/effect/decal/warning_stripes{ @@ -2813,18 +2250,14 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/corsat/sigma/airlock/control) "Yu" = ( /obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/opened{ id = "SigmaWestE"; name = "Sigma West Airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/corsat/sigma/airlock/control) "YC" = ( /obj/effect/landmark/survivor_spawner, @@ -2854,19 +2287,14 @@ dir = 4; network = list("sigma") }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/corsat/sigma/airlock/control) "YW" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/corsat/sigma/airlock/control) "YX" = ( /obj/effect/decal/cleanable/dirt, @@ -2874,10 +2302,7 @@ /area/corsat/emergency_access) "Zd" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/corsat/red/east, /area/corsat/sigma/airlock/control) "Zf" = ( /turf/open/auto_turf/snow/layer2, @@ -2891,9 +2316,7 @@ /area/corsat/sigma/biodome/ice) "Zy" = ( /obj/structure/sign/safety/airlock, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/corsat/sigma/airlock/control) "ZB" = ( /obj/effect/decal/warning_stripes{ @@ -2908,33 +2331,22 @@ /obj/structure/surface/table/almayer, /obj/item/storage/donut_box, /obj/item/tool/lighter/random, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/corsat/red/southwest, /area/corsat/sigma/airlock/control) "ZD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +/turf/open/floor/corsat/yellowcorner, /area/corsat/sigma/airlock/control) "ZH" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/redcorner/west, /area/corsat/sigma/airlock/control) "ZL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/corsat/sigma/biodome/gunrange) (1,1,1) = {" diff --git a/maps/map_files/DesertDam/Desert_Dam.dmm b/maps/map_files/DesertDam/Desert_Dam.dmm index 713cf02d5f..49c85de4c4 100644 --- a/maps/map_files/DesertDam/Desert_Dam.dmm +++ b/maps/map_files/DesertDam/Desert_Dam.dmm @@ -24,31 +24,6 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/desert_dam/exterior/rock) -"aae" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aaf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aag" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars{ - icon_state = "mars_dirt_10" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aah" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall/chigusa, @@ -69,31 +44,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) -"aam" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aan" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_wilderness) "aao" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"aap" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aaq" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) "aar" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/interior/caves/east_caves) @@ -107,41 +61,9 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"aav" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/landing_pad_two) -"aaw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aax" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/interior/caves/east_caves) "aay" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/caves/east_caves) -"aaz" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/interior/caves/east_caves) -"aaA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) "aaB" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -154,66 +76,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aaD" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"aaE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aaF" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "aaG" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) -"aaH" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aaI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"aaJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aaK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"aaL" = ( -/obj/item/trash/c_tube, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "aaM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -223,38 +89,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aaN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aaO" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"aaP" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "aaQ" = ( /obj/structure/floodgate, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"aaS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_labs) "aaT" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -262,11 +101,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aaU" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) "aaV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -274,54 +108,6 @@ /obj/item/trash/hotdog, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"aaW" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_east) -"aaX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aaY" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aaZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aba" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"abb" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"abc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) "abd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -338,49 +124,11 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abg" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"abh" = ( -/obj/item/trash/USCMtray, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_labs) -"abi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"abj" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "abk" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/south_valley_dam) -"abl" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_labs) "abm" = ( /obj/structure/floodgate{ icon_state = "0,3" @@ -397,39 +145,11 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/exterior/valley/south_valley_dam) -"abp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) "abq" = ( /obj/structure/powerloader_wreckage, /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abr" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abs" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abt" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/rock) -"abu" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_east) "abv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, @@ -440,19 +160,6 @@ /obj/item/trash/raisins, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"abx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aby" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_labs) "abz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt, @@ -465,23 +172,6 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/river/riverside_east) -"abB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_central_north) "abD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -496,94 +186,10 @@ /obj/item/trash/boonie, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_central_north) -"abG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"abH" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"abI" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"abJ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"abK" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"abM" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abN" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "abO" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"abP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) -"abQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/landing_pad_one) -"abR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"abS" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/landing_pad_two) "abT" = ( /obj/structure/machinery/conveyor{ id = "anomalybelt" @@ -597,21 +203,6 @@ "abU" = ( /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"abV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) -"abW" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/caves/east_caves) "abX" = ( /obj/structure/largecrate/random, /turf/open/asphalt, @@ -629,46 +220,16 @@ /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aca" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acb" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/largecrate/random, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_labs) "acd" = ( /obj/structure/floodgate{ icon_state = "0,2" }, /turf/closed/wall/indestructible/invisible, /area/desert_dam/exterior/river/riverside_east) -"acf" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"acg" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_labs) +"ace" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) "ach" = ( /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/valley/valley_labs) @@ -679,21 +240,6 @@ /obj/item/trash/chips, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"acj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/largecrate/random/secure, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_labs) -"ack" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) "acn" = ( /obj/item/trash/eat, /turf/open/asphalt, @@ -711,12 +257,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"acq" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acr" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_edge, @@ -742,12 +282,6 @@ "acw" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"acx" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "acy" = ( /obj/item/trash/plate, /obj/item/trash/barcardine, @@ -761,185 +295,19 @@ /obj/effect/landmark/crap_item, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"acB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/item/trash/used_stasis_bag, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"acC" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"acD" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acE" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acF" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"acH" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acI" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"acJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"acK" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"acL" = ( -/obj/item/trash/burger, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_labs) -"acM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"acN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acO" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acP" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "acR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"acS" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"acU" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"acV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "acW" = ( /obj/structure/largecrate/random/secure, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"acX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_labs) -"acY" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/caves/east_caves) -"acZ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "ada" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/hanger) -"adb" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/landing_pad_one) "adc" = ( /obj/structure/fence, /turf/open/desert/rock, @@ -947,46 +315,6 @@ "add" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) -"ade" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"adf" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/landing_pad_two) -"adg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"adh" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"adi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"adj" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) "adk" = ( /obj/structure/surface/table, /obj/item/tool/weldingtool, @@ -1008,52 +336,13 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"adn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "ado" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"adp" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"adq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"adr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"ads" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "adt" = ( /turf/closed/wall/wood, /area/desert_dam/building/bar/backroom) -"adu" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "adv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -1068,11 +357,6 @@ /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"ady" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_wilderness) "adz" = ( /obj/structure/closet/secure_closet/bar, /turf/open/floor/interior/wood, @@ -1080,14 +364,6 @@ "adA" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"adB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) "adC" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/effect/blocker/toxic_water/Group_2, @@ -1098,24 +374,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, /area/desert_dam/interior/caves/east_caves) -"adE" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_labs) -"adF" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"adG" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) "adH" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, @@ -1124,118 +382,30 @@ "adI" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"adJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"adK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "adL" = ( /obj/effect/blocker/toxic_water, /obj/structure/platform, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) -"adM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_east) "adN" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert, /area/desert_dam/exterior/river/riverside_east) -"adO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_labs) -"adP" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_east) -"adQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) "adR" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) -"adS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_east) -"adU" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_east) "adV" = ( /obj/structure/platform, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/valley/valley_labs) -"adW" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) -"adX" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"adY" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) "adZ" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_10" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aea" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "aeb" = ( /obj/effect/blocker/toxic_water, /turf/open/desert/desert_shore/desert_shore1, @@ -1255,42 +425,6 @@ name = "reinforced metal wall" }, /area/desert_dam/exterior/valley/valley_cargo) -"aef" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeg" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aeh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aei" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) "aej" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -1328,132 +462,18 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"aep" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aeq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aer" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"aes" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aet" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_north"; - name = "Checkpoint Lockdown" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aev" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aew" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aex" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aey" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) "aez" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"aeA" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aeB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) "aeC" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aeD" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) "aeE" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_wilderness) -"aeF" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aeG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) "aeH" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ @@ -1461,65 +481,10 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aeI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aeJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aeK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"aeL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) "aeM" = ( /obj/effect/decal/sand_overlay/sand1, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aeN" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"aeO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aeP" = ( -/turf/open/floor/filtrationside{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_mining) -"aeQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) "aeR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 @@ -1535,100 +500,17 @@ "aeT" = ( /turf/open/desert/rock, /area/desert_dam/interior/caves/central_caves) -"aeU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "aeV" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) -"aeW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/landing/console) -"aeX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aeY" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aeZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"afa" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) "afb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"afc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/hanger) "afd" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/central_tunnel) -"afe" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aff" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"afg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"afh" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) "afi" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/south_valley_dam) @@ -1639,64 +521,9 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) -"afk" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"afl" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"afm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"afn" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"afo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"afp" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"afq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"afs" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) +"afr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_labs) "aft" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform, @@ -1709,44 +536,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/central_tunnel) -"afv" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/workshop) "afw" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"afx" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_labs) -"afy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"afz" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/dam_interior/workshop) -"afA" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"afB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "afC" = ( /obj/structure/platform{ dir = 1 @@ -1762,39 +555,9 @@ }, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/south_tunnel) -"afF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "afG" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"afH" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afI" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afJ" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"afK" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "afL" = ( /obj/structure/platform{ dir = 1 @@ -1805,28 +568,12 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"afM" = ( -/turf/open/floor/filtrationside{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_mining) "afN" = ( /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"afO" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "afP" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"afQ" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "afR" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/dam_interior/central_tunnel) @@ -1846,45 +593,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"afU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) -"afV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) -"afW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/administration/control_room) "afX" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"afZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) "aga" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 @@ -1902,41 +614,12 @@ "agd" = ( /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/south_tunnel) -"age" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "agf" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/prison, /area/desert_dam/exterior/valley/south_valley_dam) -"agg" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"agh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"agi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "agj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 @@ -1971,14 +654,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"agp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "agq" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, @@ -2002,11 +677,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"agt" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) "agu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2030,15 +700,6 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"agx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/prop/dam/truck/cargo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) "agy" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_northwest) @@ -2047,42 +708,10 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"agA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"agB" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"agC" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"agD" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "agE" = ( /obj/structure/platform, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) -"agF" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) "agG" = ( /obj/structure/surface/table, /obj/structure/window/reinforced{ @@ -2095,12 +724,6 @@ /obj/structure/window/framed/chigusa, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"agI" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "agJ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -2109,60 +732,12 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"agK" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"agL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"agM" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"agN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "agO" = ( /turf/open/desert/rock/deep, /area/desert_dam/interior/dam_interior/central_tunnel) -"agP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) "agQ" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"agR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"agS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_northwest) "agT" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/desertdam/decals/road_stop{ @@ -2191,23 +766,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"agX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_labs) -"agY" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "agZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/desertdam/decals/road_edge{ @@ -2225,12 +783,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahb" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ahc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -2238,18 +790,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ahe" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ahf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -2260,20 +800,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) -"ahg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"ahh" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "ahi" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/barricade/wooden{ @@ -2289,13 +815,6 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahk" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) "ahl" = ( /obj/structure/desertdam/decals/road_stop{ dir = 4; @@ -2310,29 +829,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/rock, /area/desert_dam/interior/dam_interior/western_dam_cave) -"aho" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"ahp" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "ahq" = ( /obj/structure/desertdam/decals/road_stop, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "ahs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -2349,11 +849,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahu" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "ahv" = ( /obj/structure/platform, /obj/structure/platform{ @@ -2376,18 +871,6 @@ /obj/structure/largecrate/random/secure, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahy" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_mining) -"ahz" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/largecrate/random/case/small, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) "ahA" = ( /turf/open/floor/filtrationside, /area/desert_dam/exterior/valley/valley_mining) @@ -2410,41 +893,18 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_labs) "ahG" = ( /obj/item/limb/foot/r_foot, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) -"ahH" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) -"ahI" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"ahJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ahK" = ( /obj/effect/decal/cleanable/vomit, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) +"ahL" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) "ahM" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -2483,11 +943,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"ahQ" = ( -/turf/open/floor/filtrationside{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_mining) "ahR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -2517,48 +972,9 @@ /obj/structure/prop/dam/crane, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ahV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ahW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ahX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"ahY" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) "ahZ" = ( /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/valley/valley_labs) -"aia" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aib" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) "aic" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2" @@ -2569,29 +985,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_mining) -"aie" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aif" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aig" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/workshop) "aih" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_labs) -"aii" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_labs) "aij" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -2610,47 +1006,12 @@ /obj/structure/largecrate/random/case/double, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"ain" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aio" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "aip" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"air" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ais" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ait" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "aiu" = ( /obj/structure/platform{ dir = 8 @@ -2672,39 +1033,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aix" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aiy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aiz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) "aiB" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -2716,33 +1044,6 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"aiD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aiE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aiF" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) "aiG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2753,17 +1054,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aiH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aiI" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aiJ" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/disposalpipe/segment{ @@ -2772,50 +1062,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"aiK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aiL" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/caves/central_caves) -"aiM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) "aiN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/dirt, /area/desert_dam/interior/caves/east_caves) -"aiO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aiP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aiQ" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) "aiR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -2835,25 +1085,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"aiU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "aiV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" @@ -2881,29 +1112,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"aiY" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) "aiZ" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"aja" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ajb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) "ajc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand2{ @@ -2911,32 +1122,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aje" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/east_caves) "ajf" = ( /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/interior/caves/east_caves) -"ajg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_labs) "ajh" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_2" @@ -2950,18 +1138,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "ajl" = ( /obj/structure/window/framed/chigusa, /turf/open/floor/plating, @@ -2971,13 +1147,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajn" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajo" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -2986,14 +1155,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajq" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -3013,29 +1174,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajw" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "ajx" = ( /obj/structure/platform{ dir = 1 @@ -3054,32 +1192,12 @@ "ajz" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_workshop) -"ajA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"ajB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) "ajC" = ( /obj/structure/flora/bush/desert/cactus/multiple{ icon_state = "cacti_8" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_crashsite) -"ajD" = ( -/obj/structure/fence, -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/caves/east_caves) "ajE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3094,14 +1212,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "ajH" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, @@ -3109,37 +1219,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ajJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"ajK" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_labs) -"ajL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_labs) -"ajM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_labs) "ajN" = ( /obj/structure/platform{ dir = 1 @@ -3149,95 +1228,12 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"ajO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ajQ" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ajS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ajT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) "ajU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ajV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"ajX" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ajY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ajZ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "aka" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand2/corner2{ @@ -3267,82 +1263,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"ake" = ( -/obj/structure/machinery/chem_dispenser, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) "akg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" }, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"akh" = ( -/turf/open/mars{ - icon_state = "mars_dirt_14" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "aki" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akj" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) "akk" = ( /turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"ako" = ( -/obj/structure/closet/radiation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) "akp" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -3350,20 +1283,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"akr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) "aks" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -3371,50 +1290,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akt" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aku" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"akv" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"akw" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) "akx" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aky" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"akz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) "akA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3432,62 +1313,6 @@ }, /turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"akD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"akE" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akF" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akG" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"akI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"akJ" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) "akK" = ( /turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_excavation) @@ -3505,46 +1330,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"akO" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) "akP" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_mining) -"akQ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akR" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"akS" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"akT" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) "akU" = ( /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt, @@ -3558,88 +1346,6 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"akW" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"akX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, -/obj/item/XenoBio/Blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akY" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"akZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ala" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jarshelf_7" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ald" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_7" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ale" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/landing_pad_two) "ali" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -3653,20306 +1359,4999 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"alk" = ( -/turf/open/mars{ - icon_state = "mars_dirt_12" +"alP" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"alR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Excavation" }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"all" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ama" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"amd" = ( +/obj/structure/platform, +/turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"aln" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alo" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +"amf" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/structure/platform, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"alp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, +"amg" = ( +/obj/structure/platform, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"alr" = ( -/obj/structure/stairs{ +"amj" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"amk" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/valley/north_valley_dam) -"als" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"aml" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/obj/structure/platform, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"amm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alu" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"amt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alv" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_6" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"amw" = ( +/turf/closed/wall/r_wall/bunker/floodgate, +/area/desert_dam/exterior/river/riverside_central_north) +"amD" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison, /area/desert_dam/interior/lab_northeast/east_lab_containment) -"alw" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/desert_dam/exterior/valley/valley_mining) -"alx" = ( -/turf/open/floor/coagulation{ - icon_state = "5,8" +"amK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/exterior/valley/valley_mining) -"aly" = ( -/obj/structure/closet/crate, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"amM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alz" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/storage/belt/utility/full, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"amN" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"amQ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alA" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alB" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"ang" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alC" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"anu" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"alE" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"anE" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"anF" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"anJ" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"alF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alG" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alI" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alK" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alL" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alM" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"alN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" +/area/shuttle/trijent_shuttle/lz1) +"anP" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"anQ" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"aof" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_east) +"aoi" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"aoj" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/lobby) +"aon" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"aow" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"aox" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"aoz" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/bar_valley_dam) +"aoB" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/interior/dam_interior/west_tunnel) +"aoV" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"apc" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"apg" = ( +/turf/open/floor/plating, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"alO" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alP" = ( -/obj/structure/window/framed/chigusa, +"apk" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alQ" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/asphalt{ - icon_state = "tile" +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"apz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"alR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Excavation" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"apA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"alS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"apE" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alT" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"apL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/interior/caves/east_caves) +"apM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/interior/caves/east_caves) +"apR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/east_caves) +"apU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"apW" = ( +/turf/closed/wall/r_wall/chigusa, /area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alU" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"alV" = ( -/obj/structure/disposalpipe/segment{ +"aqc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"alW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"alX" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"aqg" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aql" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"alY" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aqn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"aqo" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/east_caves) +"aqq" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/east_caves) +"aqr" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"aqz" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"aqC" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"aqJ" = ( +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"aqQ" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ara" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_mining) -"alZ" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"arw" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/river/riverside_east) +"arF" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/dam_interior/garage) +"arJ" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"arL" = ( +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"arR" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/bar_valley_dam) +"arZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ama" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"asa" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"amb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/alienjar, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"asb" = ( +/turf/open/desert/rock, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"asc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amd" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ame" = ( -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"asd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"amf" = ( +"asl" = ( +/obj/structure/platform, /obj/structure/platform{ dir = 8 }, -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"amg" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"amh" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8-2" +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/valley/valley_labs) +"ass" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_mining) -"ami" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/east_caves) +"asu" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/east_caves) +"asw" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"asB" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"asF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_mining) -"amj" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"asO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/obj/structure/stairs{ +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"asQ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"asS" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"asT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amk" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs{ +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"asZ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aml" = ( /obj/structure/platform{ dir = 4 }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amm" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"atb" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" }, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/east_caves) +"atf" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/east_caves) +"atj" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - name = "\improper Containment Lock"; - unacidable = 0 - }, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"atl" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/south_tunnel) +"atn" = ( +/obj/structure/window/framed/chigusa, /turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amo" = ( +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"atr" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/dam_interior/south_tunnel) +"atv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/machinery/door/window/brigdoor/northleft{ + name = "Nexus Lobby Desk" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/machinery/door/window/southleft{ + name = "Nexus Lobby Desk" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"atw" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - name = "\improper Containment Lock"; - unacidable = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"atx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amr" = ( -/turf/open/floor/prison{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aty" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 1; - icon_state = "whitepurple" + icon_state = "stop_decal5" }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"ams" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/hanger) -"amt" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"atz" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal2" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_northwest) -"amu" = ( +"atB" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" + dir = 4 }, -/area/desert_dam/exterior/river/riverside_central_north) -"amv" = ( +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"atC" = ( +/obj/structure/filtration/machine_96x96/distribution, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform_decoration{ +/obj/structure/platform{ dir = 1 }, -/turf/open/desert/desert_shore/desert_shore1{ +/obj/structure/platform{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_central_north) -"amw" = ( -/turf/closed/wall/r_wall/bunker/floodgate, -/area/desert_dam/exterior/river/riverside_central_north) -"amx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amy" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amz" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_mining) +"atM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"atS" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"atU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 9 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"atW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"atX" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"amD" = ( +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"atY" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, /turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Isolation Chamber" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/water_treatment_two/floodgate_control) +"aug" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"aui" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"auu" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/rock, +/area/desert_dam/interior/dam_interior/west_tunnel) +"aux" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"amH" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amI" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amJ" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/interior/caves/east_caves) -"amK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"auy" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"amL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amM" = ( +/area/desert_dam/exterior/valley/valley_northwest) +"auz" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" + icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"amN" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"amO" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/desert_dam/exterior/valley/valley_mining) -"amP" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +"auA" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/northeast) +"auG" = ( +/turf/open/desert/rock, +/area/desert_dam/interior/dam_interior/west_tunnel) +"auN" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"auW" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/area/desert_dam/exterior/valley/valley_northwest) -"amQ" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/area/shuttle/trijent_shuttle/engi) +"auZ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"avh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform_decoration{ +/turf/open/floor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"avt" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"avw" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"amR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"amS" = ( -/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"avG" = ( +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"avH" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"avT" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"amT" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/desert_dam/exterior/valley/valley_mining) -"amU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/xenoautopsy/tank{ - icon_state = "jar_sample" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amY" = ( -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"awg" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"amZ" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_4" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"ana" = ( -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"anb" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"anc" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"awk" = ( +/obj/structure/prop/dam/large_boulder{ + icon_state = "boulder_large1" }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"and" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/bar_valley_dam) +"awm" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"ane" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"anf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"ang" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"aws" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"awx" = ( +/turf/open/floor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"awK" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/valley/valley_labs) +"awL" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"awM" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/detective) +"axj" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"axk" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"axl" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"axo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"anh" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ani" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"anj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_wilderness) +"axq" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"axs" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_northwest) -"ank" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"axx" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) -"anl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anm" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ann" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"ano" = ( -/turf/open/floor/coagulation{ - icon_state = "1,7" + dir = 9 }, -/area/desert_dam/building/water_treatment_two) -"anp" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"axD" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"axF" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/marshals_office) +"axI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1 + }, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"axJ" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_labs) +"axK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"axL" = ( +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"axN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"axT" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"aya" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/office) +"ayg" = ( +/obj/structure/surface/table, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ayh" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"anq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ayo" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ayt" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ayx" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ayD" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/exterior/valley/valley_wilderness) +"aze" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) +"azC" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/mineral/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"azD" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"azE" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"azK" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ans" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"azN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"azP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"azQ" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/valley/valley_labs) +"azS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"azT" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"azU" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ant" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"azV" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"azW" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"azX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anu" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"azY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, +/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, /area/desert_dam/interior/caves/central_caves) -"anv" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anx" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +"azZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"any" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAe" = ( +/turf/open/desert/excavation/component8, +/area/desert_dam/exterior/valley/valley_crashsite) +"aAh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAi" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAj" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAm" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aAn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAo" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 6 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "warning" +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAp" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAr" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aAt" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anA" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAu" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAv" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"aAw" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_8" }, -/area/desert_dam/interior/caves/east_caves) -"anB" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aAC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/caves/east_caves) -"anC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/area/desert_dam/exterior/rock) +"aAE" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"anD" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anE" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"anF" = ( -/obj/structure/flora/grass/desert/lightgrass_12, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_northwest) -"anG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +"aAN" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/interior/caves/central_caves) +"aAT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anH" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anI" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anJ" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz1) -"anK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"anL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"anM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"anN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"anO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Containment" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"anP" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anQ" = ( -/obj/structure/window/framed/bunker/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anR" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anT" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"anV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"anZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoa" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aob" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoc" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aod" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aof" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_east) -"aoh" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoi" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aoj" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/lobby) -"aok" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoq" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aor" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aos" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aou" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aow" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aox" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"aoy" = ( -/obj/item/trash/hotdog, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"aoz" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/bar_valley_dam) -"aoA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoB" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aoC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aoE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aoF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_magazine/shotgun/incendiary, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aoH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aoI" = ( -/obj/structure/machinery/door/poddoor/almayer{ - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoM" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoN" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoO" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aoP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoQ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aoV" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aoW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aoY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"aoZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"apb" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"apc" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"apd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"ape" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apg" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"aph" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"api" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apj" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"apk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apl" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apm" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"apn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Armoury" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"app" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"apq" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Containment Lock"; - unacidable = 0 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apt" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"apu" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"apv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apw" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apx" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"apy" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"apA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"apB" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apD" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"apF" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apI" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/interior/caves/east_caves) -"apK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"apL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/interior/caves/east_caves) -"apM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/interior/caves/east_caves) -"apN" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/interior/caves/east_caves) -"apO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"apP" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"apR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/east_caves) -"apS" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"apT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apW" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"apX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Research Hallway" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"apZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aqa" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aqb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aqc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"aqd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqf" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aqg" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aqi" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aql" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aqm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aqn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"aqo" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/east_caves) -"aqp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/interior/caves/east_caves) -"aqq" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/east_caves) -"aqr" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"aqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqv" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqw" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aqx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqy" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aqz" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aqA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"aqB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"aqC" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"aqD" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aqF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aqJ" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"aqK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aqL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aqN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aqP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Office" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqQ" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqR" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aqS" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aqT" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aqU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Armoury" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aqX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/interior/caves/east_caves) -"aqY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/east_caves) -"aqZ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"ara" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"arb" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"arc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ard" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"are" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"arg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arh" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"ari" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"arj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"arl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arm" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/blue{ - pixel_x = -3 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aro" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"arp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"arq" = ( -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"arr" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"ars" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"art" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"aru" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"arv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"arw" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/river/riverside_east) -"arx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_mining) -"ary" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"arz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"arA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/caves/east_caves) -"arB" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arD" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arE" = ( -/obj/structure/sink, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arF" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/garage) -"arG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arJ" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/tool/surgery/retractor, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arL" = ( -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"arQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arR" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/bar_valley_dam) -"arS" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"arT" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"arU" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"arV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/truck/damaged, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"arZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"asa" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"asb" = ( -/turf/open/desert/rock, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"asc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"asd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"asf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"asg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"ash" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"asl" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/valley/valley_labs) -"asm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aso" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Research Substation" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/substation/northeast) -"asq" = ( -/obj/structure/machinery/light, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"asr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"ass" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/east_caves) -"ast" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/east_caves) -"asu" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/east_caves) -"asv" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"asw" = ( -/obj/structure/window/framed/bunker/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"asx" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asy" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"asz" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asA" = ( -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asB" = ( -/obj/structure/window/framed/bunker/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"asE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"asF" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"asG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"asH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asI" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asL" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"asM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"asN" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"asO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"asP" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"asQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"asR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"asS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"asT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"asW" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/northeast) -"asX" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"asY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"asZ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"ata" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 2 - }, -/obj/structure/machinery/door/window/southleft{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"atb" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/east_caves) -"atc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_mining) -"atd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/east_caves) -"ate" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"atf" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/east_caves) -"atg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"ath" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ati" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atk" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atl" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/south_tunnel) -"atm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northeast) -"atn" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"ato" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"atq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"atr" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ats" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"att" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atu" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" - }, -/area/desert_dam/exterior/valley/valley_mining) -"atv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/machinery/door/window/brigdoor/northleft{ - name = "Nexus Lobby Desk" - }, -/obj/structure/machinery/door/window/southleft{ - name = "Nexus Lobby Desk" - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"atw" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"atx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aty" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"atz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"atA" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"atB" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"atC" = ( -/obj/structure/filtration/machine_96x96/distribution, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_mining) -"atD" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"atF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"atG" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"atH" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atI" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"atJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"atK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"atL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"atM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"atN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"atQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"atS" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"atT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"atU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"atV" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/substation/northeast) -"atW" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"atX" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"atY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"atZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aua" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/substation/northeast) -"aub" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"auc" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northeast) -"aud" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"aue" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"auf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Research Workshop" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aug" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper RnD" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aui" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"auj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aul" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aum" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aun" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aup" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auq" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aur" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aus" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"aut" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"auu" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/rock, -/area/desert_dam/interior/dam_interior/west_tunnel) -"auv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"auw" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aux" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"auy" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"auz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"auA" = ( -/turf/open/floor/plating, -/area/desert_dam/building/substation/northeast) -"auB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auG" = ( -/turf/open/desert/rock, -/area/desert_dam/interior/dam_interior/west_tunnel) -"auH" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"auI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"auK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"auM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science{ - req_one_access = null - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auN" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"auP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"auQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auT" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"auW" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/engi) -"auX" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"auY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"auZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"ava" = ( -/obj/structure/toilet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avb" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ave" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avg" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avj" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/shuttle/trijent_shuttle/engi) -"avk" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"avm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"avo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Research"; - network = list("chigusa_3") - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"avq" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"avr" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"avt" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avu" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) -"avv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"avw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avx" = ( -/obj/structure/machinery/r_n_d/protolathe, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avB" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"avD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avE" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"avG" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avH" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avK" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avL" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avM" = ( -/obj/structure/machinery/computer/WYresearch, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avN" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"avO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"avQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"avR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"avT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"avU" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"avV" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"avW" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northeast) -"avX" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"avZ" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awa" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"awd" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awe" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awf" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awh" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"awi" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"awj" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"awk" = ( -/obj/structure/prop/dam/large_boulder{ - icon_state = "boulder_large1" - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/bar_valley_dam) -"awl" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/workshop) -"awm" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"awn" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"awo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_mining) -"awp" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awq" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"awr" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aws" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awv" = ( -/obj/structure/prop/dam/drill, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aww" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awx" = ( -/turf/open/floor, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awy" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awA" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"awB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"awC" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awE" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"awF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Workshop" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"awG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"awH" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awI" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"awK" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/valley/valley_labs) -"awL" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"awM" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/detective) -"awN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awO" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awR" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"awS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awU" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"awV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"awX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"awY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"awZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axa" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axe" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axf" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axg" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_labs) -"axj" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"axk" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"axl" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axm" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_labs) -"axn" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) -"axo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"axq" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axs" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Lobby" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"axw" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/desert_dam/interior/caves/temple) -"axx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"axy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northeast"; - name = "Checkpoint Lockdown" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axz" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) -"axA" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"axC" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/east_caves) -"axD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"axE" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"axF" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/marshals_office) -"axG" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"axH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"axI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axJ" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/valley/valley_labs) -"axK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axL" = ( -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axM" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"axN" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axO" = ( -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_labs) -"axP" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"axQ" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axT" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/lab_northeast/east_lab_maintenence) -"axU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"axV" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"axW" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"axY" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"axZ" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aya" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/office) -"ayd" = ( -/obj/structure/showcase{ - icon_state = "mechfab1" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aye" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayg" = ( -/obj/structure/surface/table, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayi" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/obj/item/paper_bundle, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayj" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aym" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayo" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ayr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ays" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/temple) -"ayt" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayw" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"ayx" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayz" = ( -/obj/structure/showcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayA" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 2; - name = "\improper Research Office" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayB" = ( -/obj/structure/machinery/computer/aifixer, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayC" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/caves/temple) -"ayD" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/exterior/valley/valley_wilderness) -"ayF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayH" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/caves/temple) -"ayI" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayN" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"ayO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayU" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayV" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/disk/nuclear, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"ayX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ayZ" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aza" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_labs) -"azb" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"azc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azd" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azf" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"azh" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azj" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - name = "\improper Research Director Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azm" = ( -/obj/structure/lamarr, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azo" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"azp" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azq" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azr" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/exterior/valley/valley_mining) -"azs" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"azt" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azu" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azv" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement7" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"azz" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azA" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azB" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/caves/temple) -"azC" = ( -/obj/structure/prop/brazier/torch, -/turf/closed/wall/mineral/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"azD" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"azE" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"azF" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azG" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azJ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"azK" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"azM" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"azO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"azP" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"azQ" = ( -/obj/structure/platform, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/valley/valley_labs) -"azR" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"azS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"azT" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"azU" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"azV" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"azW" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"azX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"azY" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"azZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAc" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAe" = ( -/turf/open/desert/excavation/component8, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAf" = ( -/turf/open/desert/excavation/component8{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAg" = ( -/turf/open/desert/excavation/component8{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAh" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAi" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAj" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAk" = ( -/turf/open/desert/excavation/component8{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAl" = ( -/turf/open/desert/excavation/component8{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAm" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAn" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAo" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 6 - }, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAp" = ( -/obj/structure/flora/bush/desert/cactus, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAq" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAr" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAs" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAt" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAu" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAv" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"aAw" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_8" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aAx" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAy" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aAz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aAA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aAB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_labs) -"aAC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" - }, -/area/desert_dam/exterior/rock) -"aAD" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aAF" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/excavation/component8{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAG" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/interior/caves/central_caves) -"aAH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/interior/caves/central_caves) -"aAI" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/interior/caves/central_caves) -"aAJ" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/interior/caves/central_caves) -"aAK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aAL" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aAM" = ( -/turf/open/desert/excavation/component8{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aAN" = ( -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/interior/caves/central_caves) -"aAO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/desert_dam/interior/caves/central_caves) -"aAP" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/interior/caves/central_caves) -"aAQ" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aAR" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aAS" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aAT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aAV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"aAW" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/interior/caves/central_caves) -"aAX" = ( -/turf/open/gm/river/desert/deep, -/area/desert_dam/interior/caves/central_caves) -"aAY" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aAZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBa" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBb" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBc" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aBe" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/interior/caves/central_caves) -"aBf" = ( -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/interior/caves/central_caves) -"aBg" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/interior/caves/central_caves) -"aBh" = ( -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/interior/caves/central_caves) -"aBi" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/interior/caves/central_caves) -"aBj" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBk" = ( -/turf/open/floor/sandstone/runed, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBl" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBm" = ( -/obj/structure/machinery/door/airlock/sandstone/runed{ - density = 0; - icon_state = "door_open"; - name = "Strange Temple"; - opacity = 0 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"aBn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBr" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBs" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 31 - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBu" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBv" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBw" = ( -/turf/open/desert/excavation/component8{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBx" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBy" = ( -/turf/open/desert/excavation/component9, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBA" = ( -/turf/open/desert/excavation/component9{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBB" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBC" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aBD" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBE" = ( -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"aBF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aBG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBK" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBL" = ( -/turf/closed/wall/mineral/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"aBO" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/interior/caves/temple) -"aBQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBR" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner1{ - dir = 8 - }, -/area/desert_dam/interior/caves/temple) -"aBS" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/temple) -"aBT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aBU" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"aBV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/desert_dam/interior/caves/temple) -"aBW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/desert_dam/interior/caves/temple) -"aBX" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aBZ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/workshop) -"aCa" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aCe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"aCg" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aCh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCk" = ( -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"aCl" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCm" = ( -/turf/open/desert/excavation/component9{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCn" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aCp" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCr" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aCs" = ( -/turf/open/desert/excavation/component9{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCt" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCv" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCz" = ( -/turf/open/desert/excavation/component9{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCA" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Dormitory" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Dormitory" - }, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCE" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCF" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCG" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCJ" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCK" = ( -/turf/open/desert/excavation/component9{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCM" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aCN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30; - req_access = null - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCP" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aCQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aCR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"aCS" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCT" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCV" = ( -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCY" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aCZ" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDa" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aDc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aDd" = ( -/obj/structure/bed/chair, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aDf" = ( -/turf/open/floor/filtrationside{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_medical) -"aDg" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDh" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDk" = ( -/obj/item/stack/sheet/wood{ - amount = 50 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDl" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDm" = ( -/obj/structure/floodgate{ - icon_state = "0,2" - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"aDn" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDo" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/drill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/pickaxe, -/obj/item/stack/medical/ointment, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/pickaxe, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bunkhouse" - }, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDv" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aDw" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 8; - health = 25000 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDy" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aDA" = ( -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 4; - health = 25000 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDE" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"aDJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDK" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aDM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDP" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDQ" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDR" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDS" = ( -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aDT" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/omega) -"aDU" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aDV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aDY" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aDZ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEa" = ( -/turf/closed/wall, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aEb" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aEc" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/omega) -"aEe" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aEf" = ( -/obj/structure/platform, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Bar Backroom" - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"aEh" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"aEj" = ( -/obj/structure/platform_decoration, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"aEl" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEp" = ( -/obj/structure/prop/dam/boulder/boulder3, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aEq" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEs" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/shuttle/trijent_shuttle/omega) -"aEu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ - pixel_y = 32; - shuttleId = "trijentshuttle22" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aEv" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEw" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEB" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aED" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aEE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aEF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aEG" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile{ - name = "\improper Entrance Gate Alpha"; - unacidable = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aEH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEL" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"aEN" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"aEO" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aEP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEQ" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aER" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aES" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aET" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEU" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEV" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEX" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aEZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFb" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFc" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFd" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFe" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFg" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aFh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/workshop) -"aFi" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFk" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFl" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFm" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFn" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFo" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFp" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFq" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFr" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aFt" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aFu" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aFv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aFw" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aFx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aFy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aFz" = ( -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aFA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"aFB" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 8; - pixel_x = 24 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aFC" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/sentry_holder/colony{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aFD" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"aFE" = ( -/obj/structure/prop/dam/crane, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aFF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) -"aFG" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aFH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aFI" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aFJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"aFK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"aFL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aFM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/emergency_room) -"aFN" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_10" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aFP" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFQ" = ( -/turf/open/desert/dirt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aFR" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFS" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aFT" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aFV" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFW" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFX" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aFZ" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGa" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGb" = ( -/obj/structure/flora/grass/desert/lightgrass_7, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGc" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGe" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGf" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGg" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGi" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGj" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGk" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGl" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aGn" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGp" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGq" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGr" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGs" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGt" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGu" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGv" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGy" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aGA" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aGB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGC" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/machinery/light, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aGD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGF" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGG" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aGH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGI" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGJ" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aGL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGO" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aGP" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aGQ" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGR" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGS" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGT" = ( -/obj/structure/surface/table, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGV" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_12" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGW" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGX" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aGY" = ( -/obj/effect/landmark/yautja_teleport, -/obj/effect/landmark/queen_spawn, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aGZ" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHc" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aHd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aHe" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHg" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHh" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHi" = ( -/obj/structure/machinery/light, -/turf/open/desert/dirt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHm" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHn" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHo" = ( -/obj/structure/machinery/centrifuge, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHp" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHq" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHr" = ( -/obj/structure/machinery/botany/extractor, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHs" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aHu" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHw" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHz" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHA" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHC" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"aHE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aHG" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHI" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHJ" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHK" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"aHM" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHN" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aHO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aHP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aHQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHR" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHS" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHT" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHV" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/hammer, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aHW" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aHX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aHZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aIb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"aIc" = ( -/obj/structure/machinery/sentry_holder/colony{ - pixel_y = 26 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aId" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aIe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIf" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIg" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"aIi" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aIj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIk" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIl" = ( -/turf/open/desert/excavation/component1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIm" = ( -/turf/open/desert/excavation/component1{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIn" = ( -/turf/open/desert/excavation/component1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIp" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aIr" = ( -/turf/open/desert/excavation/component1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIs" = ( -/turf/open/desert/excavation/component1{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIt" = ( -/turf/open/desert/excavation/component1{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIu" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIv" = ( -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIw" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/building/substation/northeast) -"aIx" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIB" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/excavation/component1{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aID" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIE" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIG" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aII" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aIK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aIL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIM" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIN" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aIP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aIQ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aIT" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aIU" = ( -/turf/open/desert/excavation/component2, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIV" = ( -/turf/open/desert/excavation/component2{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIW" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIX" = ( -/turf/open/desert/excavation/component2{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIY" = ( -/turf/open/desert/excavation/component2{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aIZ" = ( -/turf/open/desert/excavation/component2{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJa" = ( -/turf/open/desert/excavation/component4, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJb" = ( -/turf/open/desert/excavation/component4{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJc" = ( -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/central_caves) -"aJd" = ( -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"aJe" = ( -/obj/structure/window/framed/chigusa, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"aJf" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/interior/caves/central_caves) -"aJg" = ( -/obj/item/tool/shovel, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJi" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJj" = ( -/turf/open/desert/excavation/component3, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJk" = ( -/turf/open/desert/excavation/component3{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJl" = ( -/turf/open/desert/excavation/component3{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJm" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"aJn" = ( -/turf/open/desert/excavation/component3{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJo" = ( -/turf/open/desert/excavation/component4{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJp" = ( -/turf/open/desert/excavation/component4{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJq" = ( -/turf/open/desert/excavation/component4{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJr" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJs" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJt" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJu" = ( -/turf/closed/wall, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJv" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/workshop) -"aJw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aJx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJy" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_north) -"aJz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"aJA" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_4" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"aJB" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJC" = ( -/turf/open/desert/excavation/component3{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJD" = ( -/turf/open/desert/excavation/component3{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJE" = ( -/turf/open/desert/excavation/component3{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJF" = ( -/turf/open/desert/excavation/component5, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJG" = ( -/turf/open/desert/excavation/component5{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJH" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/interior/caves/central_caves) -"aJI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aJJ" = ( -/turf/open/desert/excavation/component5{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJK" = ( -/turf/open/desert/excavation/component5{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJL" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJN" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJO" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJP" = ( -/obj/structure/platform, -/turf/open/desert/excavation/component5{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJQ" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/central_caves) -"aJR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aJS" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJT" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aJU" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"aJV" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJX" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJY" = ( -/turf/open/desert/excavation/component6, -/area/desert_dam/exterior/valley/valley_crashsite) -"aJZ" = ( -/turf/open/desert/excavation/component6{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/desert/excavation/component6{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aKc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"aKd" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aKe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKf" = ( -/turf/open/desert/excavation/component6{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKg" = ( -/turf/open/desert/excavation/component6{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKh" = ( -/turf/open/desert/excavation/component6{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/desert/excavation/component6{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/excavation/component7, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKk" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aKl" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"aKm" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"aKn" = ( -/obj/structure/stairs, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aKo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"aKp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Xenoflora" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aKq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"aKs" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/workshop) -"aKt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"aKu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"aKv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aKw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_north) -"aKx" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aKy" = ( -/turf/open/desert/excavation/component7{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKz" = ( -/turf/open/desert/excavation/component7{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKA" = ( -/turf/open/desert/excavation/component7{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aKC" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKD" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKE" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKF" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKH" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aKI" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aKJ" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKK" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/desert/excavation/component7{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKM" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKN" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/excavation/component7{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKO" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/interior/caves/central_caves) -"aKP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/interior/caves/central_caves) -"aKQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKR" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKS" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aKT" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"aKU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"aKV" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aKW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aKX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) -"aKY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/landing_pad_two) -"aKZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLa" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/landing_pad_one) -"aLb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLd" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aLe" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLh" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLm" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aLw" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLx" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"aLz" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLF" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"aLI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"aLL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLM" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aLP" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLQ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLS" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"aLT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLV" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aLX" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/dam_interior/workshop) -"aLY" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aLZ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Xenoflora" - }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aMb" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"aMc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMf" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMi" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMk" = ( -/obj/structure/machinery/mill, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMl" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aMm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"aMn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"aMo" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMp" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMq" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aMr" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7-2" - }, -/area/desert_dam/building/water_treatment_two) -"aMs" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aMt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"aMu" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMx" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aMy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"aMz" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/substation/northeast) -"aMB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aMC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aMD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aME" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_medical) -"aMF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aMH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aMI" = ( -/obj/structure/sign/poster, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aMK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aML" = ( -/obj/structure/machinery/light, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aMM" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"aMN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aMP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"aMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aMT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aMV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aMW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aMX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aMY" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aMZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,4" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aNa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aNb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNc" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNe" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aNf" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northeast) -"aNg" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNh" = ( -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNi" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aNk" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aNn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aNo" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aNp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aNq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"aNr" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"aNs" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aNt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aNu" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aNv" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"aNw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aNy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aNz" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aNA" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"aNB" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northeast) -"aNC" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northeast) -"aND" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/desert_dam/building/security/lobby) -"aNE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aNF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"aNG" = ( -/obj/structure/machinery/light, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aNH" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/staffroom) -"aNI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mining Substation" - }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/northeast) -"aNJ" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aNK" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aNL" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aNM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aNN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"aNP" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aNQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northeast) -"aNS" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aNT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aNU" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aNX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) -"aNY" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz2) -"aNZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aOc" = ( -/turf/closed/wall, -/area/desert_dam/building/substation/northwest) -"aOd" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aOe" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aOf" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOg" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOh" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOk" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOl" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aOm" = ( -/turf/open/floor/filtrationside{ - dir = 9 - }, -/area/desert_dam/exterior/valley/valley_mining) -"aOn" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aOo" = ( -/turf/open/floor/filtrationside{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_mining) -"aOp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aOq" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside{ - dir = 1 - }, -/area/desert_dam/exterior/valley/valley_mining) -"aOr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aOt" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aOu" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"aOv" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aOw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aOx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Floodgate Control" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"aOy" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aOz" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/purification) -"aOA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aOC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aOD" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aOE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aOG" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aOH" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aOI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aOK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aOL" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aOM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aOO" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aOP" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river_mouth/southern) -"aOQ" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river_mouth/southern) -"aOR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aOS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aOT" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOV" = ( -/obj/structure/floodgate, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river_mouth/southern) -"aOW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = null; - name = "\improper Elevator Lock" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/shuttle/trijent_shuttle/lz2) -"aOY" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"aOZ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPd" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPf" = ( -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPg" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPi" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPj" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPk" = ( -/turf/open/floor/filtrationside{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPl" = ( -/turf/open/floor/coagulation{ - icon_state = "1,1" - }, -/area/desert_dam/building/water_treatment_two) -"aPm" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aPn" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPo" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPq" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPr" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPs" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aPu" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/exterior/valley/valley_telecoms) -"aPv" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"aPw" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPx" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aPy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aPz" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"aPA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/landing_pad_one) -"aPB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/landing_pad_one) -"aPC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/landing_pad_one) -"aPD" = ( -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"aPE" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northwest) -"aPF" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/substation/northwest) -"aPG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aPJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aPK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"aPL" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/equipment) -"aPM" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPN" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_two/purification) -"aPO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPP" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aPQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aPR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aPS" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"aPT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/obj/structure/machinery/door_control{ - id = "garage_dd"; - name = "Garage Lockdown"; - pixel_y = 28 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aPU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) -"aPV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire{ - pixel_x = 3 - }, -/obj/item/tool/extinguisher{ - pixel_x = -10 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) -"aPW" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPX" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aPY" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aPZ" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aQa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aQb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Filtration" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQk" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) -"aQl" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_two/purification) -"aQm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"aQn" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aQo" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQp" = ( -/obj/effect/blocker/toxic_water/Group_2/delay, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aQr" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQv" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aQw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"aQx" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQz" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQB" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aQG" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northwest) -"aQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"aQI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"aQL" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aQM" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aQN" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aQO" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aQP" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/mining/workshop) -"aQQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aQS" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQV" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aQX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQY" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/landing_pad_one) -"aQZ" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/landing_pad_one) -"aRc" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aRd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/northwest) -"aRf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/northwest) -"aRg" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aRh" = ( -/obj/structure/filtration/machine_96x96/filtration, -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aRi" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aRp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"aRq" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aRs" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aRt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aRu" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aRv" = ( -/turf/closed/wall, -/area/desert_dam/interior/caves/east_caves) -"aRw" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/east_caves) -"aRx" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) -"aRy" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aRz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aRA" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aRB" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz2"; - name = "Lz2 Elevator"; - airlock_area = /area/shuttle/trijent_shuttle/lz2; - elevator_network = "B"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/B - }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) -"aRC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aRD" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/substation/northwest) -"aRE" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aRF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"aRH" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRI" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aRJ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aRK" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"aRL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"aRM" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRN" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aRO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"aRP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aRQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"aRR" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aRS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/exterior/telecomm/lz1_south) -"aRT" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/east_caves) -"aRU" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aRV" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/east_caves) -"aRW" = ( -/turf/open/floor/coagulation{ - icon_state = "7,1" - }, -/area/desert_dam/building/water_treatment_two) -"aRZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/landing_pad_one) -"aSa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/landing_pad_one) -"aSb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/landing_pad_one) -"aSc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"aSd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aSe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/northwest) -"aSg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aSh" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aSi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aSj" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSk" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aSl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"aSm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"aSn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aSo" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"aSq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aSr" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aSs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/garage) -"aSt" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/garage) -"aSu" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSv" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSw" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/mining/workshop) -"aSx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aSC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/substation/northwest) -"aSD" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/machinery/dispersal_initiator{ - id = "filter 2" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_two/purification) -"aSF" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aSG" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aSH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aSI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSK" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aSN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aSQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/garage) -"aSR" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aST" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aSU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"aSV" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSW" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"aSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aSY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aSZ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aTa" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aTb" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aTc" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aTe" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aTg" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/northwest) -"aTh" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"aTi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" - }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aTj" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"aTk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aTl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTm" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aTn" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"aTo" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aTp" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" - }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aTq" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aTr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aTs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"aTt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aTu" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aTv" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 4; - icon_state = "warning_s" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"aTw" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aTx" = ( -/obj/structure/largecrate, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aTy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aTz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"aTB" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7" - }, -/area/desert_dam/building/water_treatment_two) -"aTC" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aTF" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"aTG" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aTH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"aTJ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"aTM" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/control_room) -"aTN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aTO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aTP" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"aTR" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/security/staffroom) -"aTS" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aTU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aTW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aTX" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aTY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"aTZ" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/courtroom) -"aUa" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"aUb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"aUc" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aUd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"aUe" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/courtroom) -"aUf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/desert_dam/building/security/lobby) -"aUg" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUh" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"aUj" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"aUk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aUl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aUm" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aUo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"aUp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/exterior/telecomm/lz1_south) -"aUq" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aUr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Courtroom" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/courtroom) -"aUs" = ( -/obj/structure/window/framed/hangar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/equipment) -"aUt" = ( -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aUu" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUv" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aUw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aUA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/landing_pad_one) -"aUD" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/landing_pad_one) -"aUE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/landing_pad_one) -"aUH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aUK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/courtroom) -"aUL" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aUM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aUN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aUO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"aUP" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aUR" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/equipment) -"aUS" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/observation) -"aUT" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aUU" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"aUV" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aUW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"aUX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aUY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aUZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"aVa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aVb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"aVc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aVd" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/mining/workshop_foyer) -"aVe" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/mining/workshop_foyer) -"aVf" = ( -/turf/closed/wall, -/area/desert_dam/building/mining/workshop_foyer) -"aVg" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"aVh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/landing_pad_one) -"aVi" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/landing_pad_one) -"aVj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"aVk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aVm" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/office) -"aVn" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/hallway) -"aVp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"aVr" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aVs" = ( -/obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aVu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop Foyer" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop_foyer) -"aVw" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/interrogation) -"aVz" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aVA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"aVB" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/detective) -"aVC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"aVD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/filtration_button{ - id = "filter 2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aVE" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"aVF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"aVG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/landing_pad_one) -"aVH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"aVI" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/control_room) -"aVK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/desert_dam/building/administration/office) -"aVL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"aVM" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/marshals_office) -"aVO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aVP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/faxmachine{ - density = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aVQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aVR" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"aVS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"aVT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aVU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"aVV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aVW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aVY" = ( -/turf/open/asphalt/cement{ - icon_state = "cement13" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aVZ" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWc" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"aWd" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aWe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aWf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aWg" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"aWh" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_one) -"aWi" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"aWj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aWk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/control_room) -"aWl" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aWm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aWn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aWo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aWp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/desert_dam/building/administration/control_room) -"aWq" = ( -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/desert_dam/building/administration/office) -"aWs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"aWt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/desert_dam/building/administration/office) -"aWv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWx" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aWy" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/exterior/telecomm/lz1_south) -"aWz" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWA" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aWD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aWE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aWF" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"aWG" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aWH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/river/riverside_east) -"aWI" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aWJ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aWK" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/evidence) -"aWL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aWM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/control_room) -"aWN" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aWO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/administration/control_room) -"aWQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"aWR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/desert_dam/building/administration/office) -"aWS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" - }, -/area/desert_dam/building/administration/office) -"aWT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/desert_dam/building/administration/office) -"aWU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aWY" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/hallway) -"aWZ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aXa" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"aXb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"aXc" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aXg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"aXh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aXi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aXj" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXk" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1"; - pixel_y = -16 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXl" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aXm" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1"; - pixel_y = -16 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aXp" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"aXq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aXs" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"aXt" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/office) -"aXu" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXv" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXy" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aXz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aXA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"aXC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aXE" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"aXI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/office) -"aXJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aXK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/control_room) -"aXL" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/office) -"aXM" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"aXO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/hallway) -"aXP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/hallway) -"aXQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/hallway) -"aXR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aXS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_central_north) -"aXT" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXV" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"aXW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aXY" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYa" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"aYb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"aYd" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/holding) -"aYe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYf" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYg" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"aYh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"aYi" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_two/purification) -"aYj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/hallway) -"aYk" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/hallway) -"aYm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aYn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYo" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/hallway) -"aYp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aYr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aYs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aYt" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aYu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aYv" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYw" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYx" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_12" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"aYy" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYz" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"aYD" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"aYE" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"aYF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYG" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYI" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aYJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"aYK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYL" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYN" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"aYQ" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aYR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "8,7" - }, -/area/desert_dam/exterior/valley/valley_mining) -"aYS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Control Room" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aYW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"aYX" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/hallway) -"aYY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aYZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aZa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/control_room) -"aZb" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aZc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/hallway) -"aZd" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aZe" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aZg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"aZh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"aZi" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/building/water_treatment_two) -"aZj" = ( -/obj/item/paper/courtroom{ - name = "A Crash Course in Legal SOP" - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aZk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aZl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"aZm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"aZn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aZp" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aZr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"aZs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aZt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"aZu" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aZv" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"aZw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aZx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aZy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"aZz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aZA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Hallway" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"aZB" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"aZC" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/archives) -"aZH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_labs) -"aZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"aZJ" = ( -/obj/structure/machinery/computer/cameras/wooden_tv, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"aZK" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"aZL" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"aZM" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"aZN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"aZO" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"aZP" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/hallway) -"aZQ" = ( -/obj/structure/flora/pottedplant, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/building/administration/lobby) -"aZR" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/desert_dam/building/administration/hallway) -"aZS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/lobby) -"aZT" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"aZU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/lobby) -"aZV" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"aZX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"aZY" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"aZZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"bab" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_north) -"bac" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_central_north) -"bad" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bae" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"baf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bah" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"bai" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"baj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"bak" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/lobby) -"bal" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"bam" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"ban" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/lobby) -"bao" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bar" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"bat" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/folder/black_random, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"bau" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"bav" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"bax" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baz" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"baA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"baC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/lobby) -"baD" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"baE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/administration/lobby) -"baF" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baH" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baI" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"baL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"baM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"baN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"baO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"baQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"baR" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"baS" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baV" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"baW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"baX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"baZ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bba" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bbb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/desert_dam/building/administration/control_room) -"bbc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/desert_dam/building/administration/lobby) -"bbd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/lobby) -"bbe" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/desert_dam/building/administration/lobby) -"bbf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bbg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"bbh" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bbi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bbj" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bbk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bbl" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/archives) -"bbm" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Archives" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/archives) -"bbn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Lobby" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"bbo" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/holding) -"bbq" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"bbs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"bbv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bbw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bbx" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bbz" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bbA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"bbB" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bbC" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/lobby) -"bbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bbE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"bbF" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"bbG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bbH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bbI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bbK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bbL" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_north) -"bbM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_north) -"bbN" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/shower, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"bbO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"bbP" = ( -/obj/item/ashtray/bronze, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"bbQ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bbT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"bbU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bbV" = ( -/obj/structure/machinery/door_control{ - id = "hangar_dam_1"; - name = "Hangar Shutters" - }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bbW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Administration Hallway" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bbX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"bbY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bbZ" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bca" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bck" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bcn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"bco" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"bcr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Breakroom" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/meetingrooom) -"bcs" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bct" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcy" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"bcz" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bcA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bcC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"bcD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/meetingrooom) -"bcF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcH" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bcI" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bcJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Holding" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/holding) -"bcK" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/hallway) -"bcM" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/security/prison) -"bcO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bcQ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_central_north) -"bcT" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/meetingrooom) -"bcU" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/meetingrooom) -"bcV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/building/administration/hallway) -"bcW" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bcX" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bcY" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bda" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bdb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bdc" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"bdd" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bde" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bdf" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/administration/overseer_office) -"bdg" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/overseer_office) -"bdh" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"bdi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"bdj" = ( -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdq" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bdt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bdw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/donut_box, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bdz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bdA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bdC" = ( -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bdD" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_dam_1"; - name = "\improper Hangar Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bdE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"bdF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bdG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"bdH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"bdI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bdJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"bdK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bdL" = ( -/obj/item/reagent_container/food/drinks/flask/detflask, -/obj/item/clothing/head/det_hat, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"bdM" = ( -/obj/item/ashtray/bronze, -/obj/item/clothing/mask/cigarette/cigar, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"bdN" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bdO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"bdP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"bdQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bdS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bdU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"bdV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bdW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bdX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bdY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/desert_dam/building/administration/overseer_office) -"bdZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/desert_dam/building/administration/overseer_office) -"bec" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bed" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"bee" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 9 - }, -/area/desert_dam/building/administration/meetingrooom) -"bef" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/desert_dam/building/administration/meetingrooom) -"beg" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/desert_dam/building/administration/meetingrooom) -"beh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/desert_dam/building/administration/meetingrooom) -"bei" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, -/area/desert_dam/building/administration/meetingrooom) -"bej" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"bek" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bel" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) -"bem" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"ben" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/landing_pad_one) -"beo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bep" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"beq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/river/riverside_east) -"ber" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bes" = ( -/obj/structure/bed/chair/comfy/black, -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bet" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"beu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 8 - }, -/area/desert_dam/building/administration/meetingrooom) -"bev" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/desert_dam/building/administration/meetingrooom) -"bew" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet, -/area/desert_dam/building/administration/meetingrooom) -"bex" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/desert_dam/building/administration/meetingrooom) -"bey" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, -/area/desert_dam/building/administration/meetingrooom) -"bez" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"beB" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"beC" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_telecoms) -"beD" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"beE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"beF" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/desert_dam/building/administration/overseer_office) -"beG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/river/riverside_east) -"beH" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/desert_dam/building/administration/overseer_office) -"beI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"beJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"beK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"beL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, -/area/desert_dam/building/administration/meetingrooom) -"beM" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"beN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"beO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"beP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"beQ" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"beS" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"beT" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"beU" = ( -/obj/structure/flora/grass/desert/heavygrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"beV" = ( -/obj/structure/flora/grass/desert/heavygrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"beW" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"beX" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"beY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/desert_dam/building/administration/overseer_office) -"beZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"bfa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" - }, -/area/desert_dam/building/administration/overseer_office) -"bfb" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/administration/meetingrooom) -"bfc" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, -/area/desert_dam/building/administration/meetingrooom) -"bfd" = ( -/turf/open/floor/carpet/edge, -/area/desert_dam/building/administration/meetingrooom) -"bfe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet/edge, -/area/desert_dam/building/administration/meetingrooom) -"bff" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"bfg" = ( -/obj/structure/prop/dam/large_boulder{ - icon_state = "boulder_large1" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"bfh" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/interior/caves/central_caves) -"bfi" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) -"bfj" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bfk" = ( -/obj/item/handcuffs, -/obj/item/weapon/baton, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bfl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bfm" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/engi) -"bfn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bfo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_one) -"bfp" = ( -/obj/structure/flora/grass/desert/heavygrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"bfq" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"bfr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bfs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_telecoms) -"bft" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_9" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bfu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bfw" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bfx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bfy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/faxmachine{ - density = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"bfz" = ( -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bfB" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfC" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfD" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"bfF" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"bfG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bfH" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bfJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"bfL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfN" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfO" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bfP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bfQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bfR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper East Filtration" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bfS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bfT" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bfU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bfV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bfX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bfY" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bfZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bga" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bgb" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bgc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/hallway) -"bgd" = ( -/obj/structure/machinery/shower, -/obj/structure/curtain/open/shower, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/breakroom) -"bge" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bgf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bgg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bgh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_northwest) -"bgi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgj" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgk" = ( -/obj/structure/curtain/open/shower, -/obj/structure/machinery/shower, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/breakroom) -"bgl" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bgm" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bgn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bgo" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/lobby) -"bgp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgq" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/equipment) -"bgr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bgs" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Security" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bgt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/hallway) -"bgu" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bgx" = ( -/turf/open/desert/rock/deep/transition{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bgy" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bgz" = ( -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bgA" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bgD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bgE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bgG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/purification) -"bgH" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bgI" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bgJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"bgL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"bgM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"bgN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bgO" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgP" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgQ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgR" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgT" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bgU" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bgV" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bgW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"bgZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bha" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bhb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"bhc" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_central_south) -"bhe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/landing_pad_one) -"bhf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/landing_pad_one) -"bhg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/landing_pad_one) -"bhh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/landing_pad_one) -"bhi" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhj" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhk" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhl" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhn" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_two/equipment) -"bho" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bhq" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bhr" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/control_room) -"bhs" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bht" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhu" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"bhw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"bhx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/office) -"bhy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhC" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bhD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhH" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bhI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bhL" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/northwest) -"bhM" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bhN" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhQ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhT" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bhV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bhW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bhX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bhY" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bhZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bia" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/north_valley_dam) -"bib" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bic" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bie" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bif" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"big" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bih" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bii" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bij" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bik" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bil" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bim" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bin" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bio" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"bip" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"biq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_northwest) -"bir" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bis" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bit" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"biu" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"biw" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bix" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biy" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"biz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"biA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/evidencebag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"biC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"biD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"biE" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"biF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"biG" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"biH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"biI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"biJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"biK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"biL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"biM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biP" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biQ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"biS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"biT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"biV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"biW" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_two/lobby) -"biX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Controlroom" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/control_room) -"biY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"biZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bja" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjb" = ( -/obj/structure/computerframe, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bje" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"bji" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bjj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"bjk" = ( -/turf/closed/shuttle{ - icon_state = "swall3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjl" = ( -/obj/structure/machinery/light, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjm" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjn" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjs" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjt" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bju" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bjw" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bjy" = ( -/turf/closed/shuttle{ - icon_state = "swall7" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjz" = ( -/turf/closed/shuttle{ - icon_state = "swall8" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjA" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjB" = ( -/turf/closed/shuttle{ - icon_state = "swall4" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjC" = ( -/turf/closed/shuttle{ - icon_state = "swall11" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bjE" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjG" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/lobby) -"bjI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"bjJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bjO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bjP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" - }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bjQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"bjR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"bjS" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bjV" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_mining) -"bjZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bka" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"bkb" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bkc" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bkd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bke" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkf" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkg" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bki" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkj" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bkk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bkl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bkm" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bkn" = ( -/turf/closed/shuttle{ - icon_state = "swall0" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bko" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkt" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bku" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkv" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkw" = ( -/obj/structure/flora/bush/desert/cactus, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkx" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bkC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bkD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bkE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"bkG" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bkH" = ( -/obj/item/folder/red, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/marshals_office) -"bkI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"bkJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/office) -"bkL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"bkM" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bkN" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bkP" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bkR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkS" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/shuttle{ - icon_state = "swall0" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bkU" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bkV" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"bkW" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bkX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aAU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bkY" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bkZ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bla" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"blb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"blc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bld" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/observation) -"ble" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"blf" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"blg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"blh" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"aAX" = ( +/turf/open/gm/river/desert/deep, +/area/desert_dam/interior/caves/central_caves) +"aAZ" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" + icon_state = "road_edge_decal6" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bli" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/lobby) -"blj" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"aBa" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal11" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bll" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Lobby" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_two/lobby) -"bln" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBe" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/interior/caves/central_caves) +"aBf" = ( +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/interior/caves/central_caves) +"aBh" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/interior/caves/central_caves) +"aBk" = ( +/turf/open/floor/sandstone/runed, /area/desert_dam/exterior/valley/valley_crashsite) -"blp" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blq" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blr" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "3,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blt" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"blv" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,7" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blx" = ( -/turf/closed/shuttle{ - icon_state = "swall1" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bly" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/structure/shuttle/engine/platform{ - dir = 1 - }, -/turf/closed/shuttle{ - icon_state = "swall0" - }, -/area/desert_dam/interior/dam_interior/hanger) -"blB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blC" = ( -/obj/structure/window/framed/bunker/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blD" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"blE" = ( +"aBl" = ( /obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"blH" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"blI" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/north_tunnel) -"blJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"blK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/north_valley_dam) -"blL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"blM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"blN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"blO" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"blQ" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blS" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"blU" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,5" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blV" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,6" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"blW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/light, -/obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"blY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/security/lobby) -"blZ" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bme" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,6" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bmg" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmi" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmj" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/observation) -"bml" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/observation) -"bmm" = ( -/obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmn" = ( -/obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmp" = ( -/obj/structure/surface/rack, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmr" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bms" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bmu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmv" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmx" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/interrogation) -"bmy" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bmz" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"bmA" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"bmB" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"bmC" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bmD" = ( -/turf/closed/shuttle{ - icon_state = "swall2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bmE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmG" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bmJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bmK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmL" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bmN" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "1,2" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bmR" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "7,2" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmS" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmT" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bmV" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/interrogation) -"bmW" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"bmX" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"bmY" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnb" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"bnc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bnd" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bne" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bnf" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bng" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10 +"aBm" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + density = 0; + icon_state = "door_open"; + name = "Strange Temple"; + opacity = 0 }, -/area/desert_dam/interior/dam_interior/hanger) -"bnh" = ( -/obj/structure/cargo_container/kelland/right, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"aBn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bni" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnl" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/crew, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bnr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bns" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/area/desert_dam/exterior/valley/valley_wilderness) +"aBq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bnt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aBr" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, /turf/open/asphalt, -/area/desert_dam/exterior/valley/north_valley_dam) -"bnu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/area/desert_dam/exterior/valley/valley_wilderness) +"aBs" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 31 }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bnv" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" +/turf/open/floor/sandstone/runed, +/area/desert_dam/exterior/valley/valley_crashsite) +"aBt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnw" = ( -/turf/open/floor/prison{ +/obj/structure/desertdam/decals/road_stop{ dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bnx" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "2,1" + icon_state = "stop_decal5" }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBu" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBx" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2" }, -/area/desert_dam/exterior/river/filtration_a) -"bny" = ( -/obj/structure/flora/grass/desert/lightgrass_8, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBy" = ( +/turf/open/desert/excavation/component9, +/area/desert_dam/exterior/valley/valley_crashsite) +"aBB" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBC" = ( +/obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnz" = ( +/area/desert_dam/interior/caves/central_caves) +"aBE" = ( +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"aBF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aBK" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnA" = ( -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBL" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"aBN" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"aBP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"aBQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/valley/valley_mining) -"bnB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aBU" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"aBX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aCb" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnC" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aCj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"aCk" = ( +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"aCl" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCn" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bnD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCp" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 1; - name = "\improper Security Office Space" + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aCr" = ( +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"aCt" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCv" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCA" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Dormitory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Dormitory" }, -/area/desert_dam/building/security/office) -"bnF" = ( -/turf/closed/wall/r_wall/prison, -/area/desert_dam/building/security/northern_hallway) -"bnG" = ( -/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCJ" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30; + req_access = null + }, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aCS" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/security/northern_hallway) -"bnH" = ( -/turf/closed/shuttle{ - icon_state = "swall14" +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCV" = ( +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/area/desert_dam/interior/dam_interior/hanger) -"bnI" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCY" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aCZ" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDa" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; - icon_state = "darkbrown3" + health = 25000 }, -/area/desert_dam/interior/dam_interior/hanger) -"bnJ" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bnK" = ( -/obj/effect/blocker/toxic_water, -/obj/structure/filtration/coagulation{ - icon_state = "6,1" - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bnL" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/zippo, -/obj/item/tool/lighter/zippo, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aDc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnM" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aDh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDk" = ( +/obj/item/stack/sheet/wood{ + amount = 50 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDl" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDm" = ( +/obj/structure/floodgate{ + icon_state = "0,2" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bnP" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"aDp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pickaxe, +/obj/item/stack/medical/ointment, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pickaxe, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bunkhouse" }, -/turf/open/floor/prison{ +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDw" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 8; - icon_state = "blue" + health = 25000 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/administration/control_room) -"bnT" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/powermonitor, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnU" = ( -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnV" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnW" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDy" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDA" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 4; - icon_state = "blue" + health = 25000 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bnX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bnZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/barricade/wooden, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bob" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"aDP" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aDT" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/shuttle/trijent_shuttle/omega) +"aDZ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/north_valley_dam) -"bod" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aEa" = ( +/turf/closed/wall, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aEb" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"aEc" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 + }, +/area/shuttle/trijent_shuttle/omega) +"aEf" = ( +/obj/structure/platform, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aEg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Bar Backroom" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"aEh" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aEi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bof" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"aEj" = ( +/obj/structure/platform_decoration, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aEk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"aEl" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aEn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"bog" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/south_valley_dam) -"boh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +"aEE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aEH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/security/northern_hallway) -"bom" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/building/security/northern_hallway) -"bop" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEN" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/mining/workshop_foyer) -"boq" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"bor" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"bos" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshal Checkpoint" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bot" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bou" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"aEO" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/security/northern_hallway) -"bov" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Detectives Office" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aEQ" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aER" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/security/detective) -"bow" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aES" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFb" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFc" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFk" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"box" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/security/interrogation) -"boy" = ( -/turf/closed/shuttle{ - icon_state = "swall13" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aFu" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"aFy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aFz" = ( +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aFD" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/hanger) -"boz" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"aFE" = ( +/obj/structure/prop/dam/crane, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aFJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"aFK" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boA" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"aFN" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFO" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aFP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"boC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/trackimp, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFQ" = ( +/turf/open/desert/dirt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aFR" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"boD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFS" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aFT" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFW" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/building/administration/control_room) -"boF" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aFZ" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGa" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"boG" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGb" = ( +/obj/structure/flora/grass/desert/lightgrass_7, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"boH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/area/desert_dam/interior/caves/central_caves) +"aGc" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"boI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boJ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/smes_main) -"boK" = ( -/obj/structure/filtration/flacculation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGj" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 }, -/area/desert_dam/exterior/river/filtration_a) -"boL" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGk" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boM" = ( -/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGl" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGn" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boN" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Marshals Office" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGp" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGr" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGt" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGv" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/security/marshals_office) -"boO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGy" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGz" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/security/northern_hallway) -"boP" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/breakroom) -"boQ" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"boR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"aGA" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"aGC" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/machinery/light, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aGF" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/area/desert_dam/building/warehouse/breakroom) -"boS" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGG" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boT" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"boV" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"boW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/desert_dam/building/security/northern_hallway) -"boX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bpa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/desert_dam/building/security/northern_hallway) -"bpb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/security/northern_hallway) -"bpe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/desert_dam/building/security/northern_hallway) -"bpf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/security/northern_hallway) -"bpg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bph" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/desert_dam/exterior/valley/valley_wilderness) +"aGJ" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aGL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/building/security/northern_hallway) -"bpi" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGO" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aGP" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"aGV" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" }, -/area/desert_dam/building/security/northern_hallway) -"bpj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGY" = ( +/obj/effect/landmark/yautja_teleport, +/obj/effect/landmark/queen_spawn, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aGZ" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/security/northern_hallway) -"bpk" = ( -/obj/structure/barricade/sandbags{ - dir = 1 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/barricade/sandbags{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aHf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, /obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 6 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpl" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aHi" = ( +/obj/structure/machinery/light, +/turf/open/desert/dirt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aHu" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/security/northern_hallway) -"bpr" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aHx" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHC" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"aHE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/area/desert_dam/exterior/valley/valley_mining) -"bps" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHG" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bpt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/security/staffroom) -"bpu" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"bpv" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHN" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aHR" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bpw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHS" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHT" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aHX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/desert/dirt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"aHZ" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"bpx" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) +"aId" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"aIh" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bpy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"aIj" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIk" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIl" = ( +/turf/open/desert/excavation/component1, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIp" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bpA" = ( -/obj/structure/surface/rack, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpB" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"aIu" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIv" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIw" = ( +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/building/substation/northeast) +"aIE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bpC" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aIJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpF" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpI" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpJ" = ( /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpK" = ( +/area/desert_dam/exterior/valley/valley_northwest) +"aIK" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal10" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpL" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bpM" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpN" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) -"bpO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/exterior/valley/valley_northwest) +"aIP" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bpQ" = ( -/obj/structure/machinery/landinglight/ds1{ +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_one) -"bpS" = ( -/obj/structure/filtration/coagulation_arm, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/desert_dam/exterior/river/filtration_a) -"bpT" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aIT" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_one) -"bpU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bpV" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 10 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aIU" = ( +/turf/open/desert/excavation/component2, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJa" = ( +/turf/open/desert/excavation/component4, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJc" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/central_caves) +"aJd" = ( +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"aJe" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"aJg" = ( +/obj/item/tool/shovel, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJi" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJj" = ( +/turf/open/desert/excavation/component3, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJm" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"aJu" = ( +/turf/closed/wall, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"aJx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_main) -"bpW" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJy" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_north) +"aJz" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"aJA" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" }, -/area/desert_dam/interior/dam_interior/smes_main) -"bpX" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"aJB" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJF" = ( +/turf/open/desert/excavation/component5, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJQ" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/central_caves) +"aJS" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aJT" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aJY" = ( +/turf/open/desert/excavation/component6, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKb" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"bpY" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"bqa" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"aKe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/interior/caves/central_caves) -"bqc" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"bqd" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/desert/excavation/component7, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKm" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bqe" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"aKr" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"aKu" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"aKw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_north) +"aKC" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqf" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKD" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKE" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKF" = ( +/obj/structure/platform, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKG" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKH" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aKI" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aKJ" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bqh" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKK" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/security/evidence) -"bqi" = ( -/obj/structure/barricade/sandbags{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKQ" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKR" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bqk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKS" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/landing_pad_one) -"bql" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bqm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aKW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/security/northern_hallway) -"bqn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aKY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/security/northern_hallway) -"bqp" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/landing_pad_two) +"aLe" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_mining) -"bqq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLC" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLD" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLF" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLG" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/security/northern_hallway) -"bqt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLI" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bqu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLP" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/security/northern_hallway) -"bqw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/desert_dam/exterior/valley/valley_crashsite) +"aLQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/security/northern_hallway) -"bqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 }, -/area/desert_dam/building/security/northern_hallway) -"bqy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"aLV" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aLX" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/dam_interior/workshop) +"aLY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aLZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/security/northern_hallway) -"bqA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMe" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMf" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMg" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/security/northern_hallway) -"bqH" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMi" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMk" = ( +/obj/structure/machinery/mill, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMo" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMp" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMq" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aMt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bqI" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"aMu" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bqJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison{ +/area/desert_dam/building/warehouse/warehouse) +"aMy" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "blue" + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"aMz" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bqM" = ( -/obj/structure/platform{ - dir = 8 +/area/desert_dam/building/substation/northeast) +"aMI" = ( +/obj/structure/sign/poster, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/building/warehouse/warehouse) +"aMP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bqN" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqO" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqP" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqQ" = ( -/obj/structure/platform_decoration{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) +"aNf" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northeast) +"aNh" = ( +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNk" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqU" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bqV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aNq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"aNr" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"aNB" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqX" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/desert_dam/building/substation/northeast) +"aNC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northeast) +"aNF" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"aNH" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/staffroom) +"aNI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mining Substation" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bqY" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison, +/area/desert_dam/building/substation/northeast) +"aNL" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 8; - icon_state = "darkyellow2" + icon_state = "stop_decal5" }, -/area/desert_dam/interior/dam_interior/smes_main) -"bqZ" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aNM" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bra" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aNS" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"aNU" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"aNY" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/area/desert_dam/interior/dam_interior/smes_main) -"brb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/area/shuttle/trijent_shuttle/lz2) +"aOc" = ( +/turf/closed/wall, +/area/desert_dam/building/substation/northwest) +"aOe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/interior/dam_interior/smes_main) -"brc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aOh" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aOt" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"aOy" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"bre" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/water_treatment_two/purification) +"aOz" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/purification) +"aOE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aOH" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aOI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aOQ" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river_mouth/southern) +"aOS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brg" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"brh" = ( -/turf/closed/wall/r_wall/bunker{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aOV" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river_mouth/southern) +"aOY" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"aPs" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bri" = ( -/obj/structure/machinery/power/terminal{ +/area/desert_dam/building/water_treatment_two/purification) +"aPt" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aPu" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/exterior/valley/valley_telecoms) +"aPv" = ( +/obj/structure/platform_decoration, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"aPz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "warnplate" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"aPA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/landing_pad_one) +"aPD" = ( +/turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"brj" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_mining) -"brn" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +"aPJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/security/holding) -"bro" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"aPL" = ( +/obj/structure/machinery/shower{ dir = 1 }, +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/equipment) +"aPN" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_two/purification) +"aPQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" + }, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"brp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"brq" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"brr" = ( -/turf/open/floor/plating, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_telecoms) -"brs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Marshal Office" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"brt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bru" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"aPR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/security/northern_hallway) -"brz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aPT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/exterior/valley/valley_mining) -"brA" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "garage_dd"; + name = "Garage Lockdown"; + pixel_y = 28 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aPY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/mining/workshop) -"brB" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQa" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aQc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/interior/dam_interior/hanger) -"brC" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/hanger) -"brD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/desert_dam/interior/dam_interior/hanger) -"brE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"brF" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brG" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brH" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aQg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"brI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aQh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/security/holding) -"brK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aQl" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_two/purification) +"aQt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQw" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/administration/hallway) -"brL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"aQA" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_mining) +"aQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/warehouse/breakroom) -"brM" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "blue" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQP" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"brN" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/area/desert_dam/building/mining/workshop) +"aQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aQU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"brO" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aQV" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aQW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aRv" = ( +/turf/closed/wall, +/area/desert_dam/interior/caves/east_caves) +"aRA" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aRB" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz2"; + name = "Lz2 Elevator"; + airlock_area = /area/shuttle/trijent_shuttle/lz2; + elevator_network = "B"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/B }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"brP" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) +"aRF" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" + icon_state = "road_edge_decal11" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brQ" = ( +/area/desert_dam/exterior/valley/valley_labs) +"aRG" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"aRK" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"aRQ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brR" = ( +/area/desert_dam/exterior/valley/valley_hydro) +"aSc" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" + icon_state = "road_edge_decal2" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"brU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"brV" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/desert_dam/exterior/valley/valley_northwest) +"aSj" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "darkyellow2" + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"brW" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"aSo" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"aSu" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSw" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/mining/workshop) +"aSx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, +/turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"brX" = ( -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/smes_main) -"brY" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"brZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +"aSz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/security/northern_hallway) -"bsa" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"aSD" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/machinery/dispersal_initiator{ + id = "filter 2" }, -/area/desert_dam/building/substation/northwest) -"bsb" = ( -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_two/purification) +"aSJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/security/northern_hallway) -"bsc" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSK" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSS" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"aSV" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bse" = ( -/turf/open/floor/prison{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_stop{ dir = 1; - icon_state = "darkyellowcorners2" + icon_state = "stop_decal5" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aSY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsg" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bsh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aTl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/security/northern_hallway) -"bsi" = ( -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aTq" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aTs" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"aTv" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 4; + icon_state = "warning_s" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bsj" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"aTz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"aTG" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bsk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/water_treatment_two/control_room) +"aTI" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/security/northern_hallway) -"bsl" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" +/obj/structure/platform, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"aTM" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/control_room) +"aTP" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/area/desert_dam/building/security/northern_hallway) -"bsm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aTR" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/desert_dam/building/security/northern_hallway) -"bsn" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/security/staffroom) +"aTT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/area/desert_dam/building/security/northern_hallway) -"bso" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"aTZ" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/courtroom) +"aUc" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/security/northern_hallway) -"bsp" = ( +/area/desert_dam/building/water_treatment_two/equipment) +"aUe" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/security/southern_hallway) -"bsq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office" +/area/desert_dam/building/security/courtroom) +"aUg" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUh" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"aUj" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"aUq" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aUs" = ( +/obj/structure/window/framed/hangar, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/equipment) +"aUt" = ( +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aUw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/security/southern_hallway) -"bsr" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hanger) -"bss" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hanger) -"bst" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/hanger) -"bsu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"aUM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/hanger) -"bsw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aUO" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"aUP" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aUR" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/equipment) +"aUS" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/observation) +"aUU" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/hanger) -"bsy" = ( +/area/desert_dam/building/water_treatment_two/hallway) +"aUV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aUX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aUY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aUZ" = ( /obj/structure/surface/table, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"aVa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aVb" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"aVd" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/area/desert_dam/building/mining/workshop_foyer) +"aVe" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/mining/workshop_foyer) +"aVf" = ( +/turf/closed/wall, +/area/desert_dam/building/mining/workshop_foyer) +"aVi" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/landing_pad_one) +"aVm" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/office) +"aVn" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/hallway) +"aVw" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/interrogation) +"aVB" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/detective) +"aVE" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/prison, +/area/desert_dam/exterior/valley/south_valley_dam) +"aVI" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/control_room) +"aVM" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/marshals_office) +"aVO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aVP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/faxmachine{ + density = 0 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bsz" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aVR" = ( /obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bsA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Secure Tech Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bsC" = ( +/obj/effect/landmark/good_item, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/exterior/valley/south_valley_dam) +"aVZ" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aWa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bsE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bsF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bsG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bsH" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bsJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/area/desert_dam/exterior/valley/valley_wilderness) +"aWb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/administration/hallway) -"bsK" = ( -/obj/structure/machinery/power/terminal{ +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"bsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bsM" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsN" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bsP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_wilderness) -"bsQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"aWc" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/security/southern_hallway) -"bsS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"aWd" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/security/southern_hallway) -"bsT" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/south_tunnel) +"aWe" = ( /obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aWf" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aWg" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, /turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"btc" = ( -/obj/structure/window/framed/hangar, +/area/desert_dam/building/water_treatment_two/control_room) +"aWh" = ( /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"btf" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/staffroom) -"bth" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bti" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/area/desert_dam/exterior/landing_pad_one) +"aWq" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWu" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"btj" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"btk" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"btl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"btm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"btp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bts" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btv" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"aWv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bty" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"btz" = ( /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btA" = ( +/area/desert_dam/exterior/valley/valley_wilderness) +"aWC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/area/desert_dam/exterior/valley/valley_telecoms) +"aWD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aWE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"btD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/area/desert_dam/exterior/valley/valley_telecoms) +"aWF" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"aWK" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/evidence) +"aWM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/control_room) +"aWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"btE" = ( -/turf/open/desert/rock/deep/transition{ +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/desert_dam/interior/caves/east_caves) -"btF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"btG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"btH" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWX" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"btI" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aWY" = ( +/turf/closed/wall/r_wall, /area/desert_dam/building/administration/hallway) -"btJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" +"aXb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"aXc" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aXd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/administration/hallway) -"btK" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aXg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/administration/hallway) -"btL" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"aXo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/administration/hallway) -"btM" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aXp" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"aXr" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"btP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Administration Hallway" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aXs" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"aXC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aXE" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"aXH" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"aXL" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/office) +"aXM" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"aXS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_central_north) +"aXV" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"aXW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/administration/hallway) -"btQ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aYa" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/engine_room) -"btR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_mining) -"btS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engine Room" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"btT" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"btW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"aYd" = ( +/turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/holding) -"btX" = ( +"aYe" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"aYg" = ( +/obj/structure/surface/rack, /turf/open/floor/prison, -/area/desert_dam/building/security/southern_hallway) -"btY" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, +/area/desert_dam/building/water_treatment_two/hallway) +"aYx" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"btZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/area/desert_dam/exterior/valley/valley_labs) +"aYD" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"aYE" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"aYN" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"aYO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/security/southern_hallway) -"bub" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"aYV" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZj" = ( +/obj/item/paper/courtroom{ + name = "A Crash Course in Legal SOP" }, -/area/desert_dam/exterior/valley/valley_telecoms) -"buc" = ( -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"bud" = ( -/obj/structure/target, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_telecoms) -"bue" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aZl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/security/holding) -"buf" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"aZn" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bug" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/staffroom) -"buh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZp" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"aZC" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/archives) +"aZJ" = ( +/obj/structure/machinery/computer/cameras/wooden_tv, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"aZK" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"aZL" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"aZM" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"aZP" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/hallway) +"aZR" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/desert_dam/building/administration/hallway) +"bab" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_mining) -"buj" = ( -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"buk" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_north) +"bac" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_north) +"bad" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"baf" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bah" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"bam" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"ban" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/lobby) +"baL" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"bul" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bum" = ( -/turf/open/floor{ - icon_state = "grimy" +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"baM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/bar/bar) -"but" = ( -/obj/structure/window/framed/wood/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/bar/bar) -"buu" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"baO" = ( +/obj/structure/bed/chair{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"buv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,4" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bbo" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/holding) +"bbq" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal2" }, -/area/desert_dam/exterior/valley/valley_mining) -"bux" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"bbt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"bbA" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_mining) -"buz" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"bbC" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/lobby) +"bbE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/mining/workshop) -"buA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"buB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"bbF" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"bbL" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_north) +"bbM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_north) +"bbN" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + health = 80 }, -/area/desert_dam/interior/dam_interior/hanger) -"buC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/shower, +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"bbO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"bbP" = ( +/obj/item/ashtray/bronze, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"bbR" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel) +"bbT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"bbV" = ( +/obj/structure/machinery/door_control{ + id = "hangar_dam_1"; + name = "Hangar Shutters" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hanger) -"buD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"bcg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"bch" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_north) +"bcy" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"bcK" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/hallway) +"bcM" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/hanger) -"buI" = ( -/obj/structure/machinery/door_control{ - id = "hangar_dam_2"; - name = "Hangar Shutters" +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/security/prison) +"bcQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_central_north) +"bcT" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/meetingrooom) +"bcU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/meetingrooom) +"bcZ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"bdb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/hanger) -"buJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bdc" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"bdf" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/administration/overseer_office) +"bdg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/overseer_office) +"bdj" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bdk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bdn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/administration/lobby) -"buK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bdp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bds" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"bdC" = ( +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bdF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bdI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bdJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"bdM" = ( +/obj/item/ashtray/bronze, +/obj/item/clothing/mask/cigarette/cigar, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"bdO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/administration/hallway) -"buN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"bdP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/administration/lobby) -"buO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"bdQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/administration/hallway) -"buP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bdU" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"bej" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"beo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buQ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"bes" = ( +/obj/structure/bed/chair/comfy/black, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"bev" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/desert_dam/building/administration/meetingrooom) +"bew" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet, +/area/desert_dam/building/administration/meetingrooom) +"bex" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/carpet, +/area/desert_dam/building/administration/meetingrooom) +"bez" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"buR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"beC" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_telecoms) +"beD" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"beE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"beI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"beK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"beT" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"buW" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/exterior/landing_pad_one) +"beU" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"beV" = ( +/obj/structure/flora/grass/desert/heavygrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"beZ" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"bfd" = ( +/turf/open/floor/carpet/edge, +/area/desert_dam/building/administration/meetingrooom) +"bfe" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/desert_dam/building/administration/hallway) -"buX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/carpet/edge, +/area/desert_dam/building/administration/meetingrooom) +"bfg" = ( +/obj/structure/prop/dam/large_boulder{ + icon_state = "boulder_large1" }, -/area/desert_dam/building/administration/hallway) -"buY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"bfm" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/area/shuttle/trijent_shuttle/engi) +"bfn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/administration/hallway) -"buZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/administration/hallway) -"bva" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bfp" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"bfq" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"bfs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/administration/hallway) -"bvb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_telecoms) +"bft" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bfv" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bvc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper SMES" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"bfw" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bfx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bfy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/faxmachine{ + density = 0 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"bfz" = ( +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bfD" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"bfF" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"bfH" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bfK" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_main) -"bvd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) +"bfS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bfX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bfY" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bfZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bga" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bgb" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bgc" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"bgd" = ( +/obj/structure/machinery/shower, +/obj/structure/curtain/open/shower, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/breakroom) +"bgh" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bve" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_northwest) +"bgk" = ( +/obj/structure/curtain/open/shower, +/obj/structure/machinery/shower, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/breakroom) +"bgl" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/water_treatment_two/lobby) +"bgm" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bgn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/interior/dam_interior/smes_main) -"bvh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bgo" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/lobby) +"bgq" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_northwest) -"bvi" = ( -/turf/open/floor/prison{ - dir = 10 +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/equipment) +"bgs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Security" }, -/area/desert_dam/interior/dam_interior/engine_room) -"bvj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"bgz" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"bgE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"bgG" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"bgI" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"bgN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/interior/dam_interior/engine_room) -"bvk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/engine_room) -"bvl" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bgZ" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"bha" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvo" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"bhc" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_central_south) +"bhi" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bho" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"bhq" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"bhr" = ( +/obj/structure/machinery/light, /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bvp" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/backroom) -"bvq" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"bht" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/interior/dam_interior/hanger) +"bhu" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/mining/workshop) -"bvr" = ( -/obj/structure/stairs{ +/area/desert_dam/interior/dam_interior/hanger) +"bhx" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bvu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) -"bvv" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/mining/workshop) -"bvw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bvx" = ( +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/office) +"bhU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"bia" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/north_valley_dam) +"big" = ( +/obj/structure/bed/chair, /turf/open/floor/prison, -/area/desert_dam/building/mining/workshop_foyer) -"bvy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/water_treatment_two/lobby) +"bio" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"bir" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/security/southern_hallway) -"bvz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bis" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/area/desert_dam/exterior/valley/valley_mining) -"bvA" = ( -/turf/closed/wall/hangar{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bix" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biy" = ( +/turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, -/area/desert_dam/building/warehouse/warehouse) -"bvD" = ( -/turf/open/floor/prison, -/area/desert_dam/building/security/staffroom) -"bvE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/staffroom) -"bvF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" +/area/desert_dam/interior/dam_interior/west_tunnel) +"biz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"biC" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"bvG" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"biF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) +"biJ" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bvH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" + icon_state = "pipe-c" }, -/area/desert_dam/building/security/southern_hallway) -"bvJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"biK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bvK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/security/staffroom) -"bvL" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"biL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/security/staffroom) -"bvM" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"biM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/security/staffroom) -"bvS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/security/staffroom) -"bvT" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biO" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/security/staffroom) -"bvU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biP" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"biR" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"biW" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_two/lobby) +"bje" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/hanger) -"bvV" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/hanger) -"bvW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"bjk" = ( +/turf/closed/shuttle{ + icon_state = "swall3" }, /area/desert_dam/interior/dam_interior/hanger) -"bvX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +"bjo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/administration/hallway) -"bvY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bwa" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjv" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bwb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"bjy" = ( +/turf/closed/shuttle{ + icon_state = "swall7" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/area/desert_dam/interior/dam_interior/hanger) +"bjz" = ( +/turf/closed/shuttle{ + icon_state = "swall8" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/area/desert_dam/interior/dam_interior/hanger) +"bjB" = ( +/turf/closed/shuttle{ + icon_state = "swall4" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwd" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bwe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/area/desert_dam/interior/dam_interior/hanger) +"bjC" = ( +/turf/closed/shuttle{ + icon_state = "swall11" }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bwf" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/area/desert_dam/interior/dam_interior/hanger) +"bjG" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwg" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"bjN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bjO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwi" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bjR" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwj" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwk" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"bjS" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"bjV" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_mining) +"bka" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"bkg" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bki" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bkj" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bkk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bkn" = ( +/turf/closed/shuttle{ + icon_state = "swall0" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwn" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/area/desert_dam/interior/dam_interior/hanger) +"bkw" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bkx" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bwo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/smes_main) -"bwp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bkA" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"bkE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/smes_main) -"bwr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper SMES" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"bkG" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"bkH" = ( +/obj/item/folder/red, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"bkI" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/smes_main) -"bwt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"bkJ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_room) -"bwu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" +/obj/structure/machinery/light, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"bkO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/engine_room) -"bwv" = ( -/turf/open/floor{ - icon_state = "neutral" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"bkQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/engine_room) -"bww" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"bkS" = ( +/obj/structure/shuttle/engine/heater, +/turf/closed/shuttle{ + icon_state = "swall0" }, -/area/desert_dam/interior/dam_interior/engine_room) -"bwx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/desert_dam/interior/dam_interior/hanger) +"bkU" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"bkW" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"bkX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ble" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"blf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"blh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwA" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bli" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwB" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"blj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bwD" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bln" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"blx" = ( +/turf/closed/shuttle{ + icon_state = "swall1" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/area/desert_dam/interior/dam_interior/hanger) +"bly" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/structure/shuttle/engine/platform{ + dir = 1 }, -/area/desert_dam/building/security/staffroom) -"bwE" = ( -/obj/structure/bed/chair, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bwF" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) -"bwH" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/closed/shuttle{ + icon_state = "swall0" }, -/area/desert_dam/building/security/observation) -"bwI" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/desert_dam/interior/dam_interior/hanger) +"blC" = ( +/obj/structure/window/framed/bunker/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"blE" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"blF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"blG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/security/observation) -"bwK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "dark" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"blI" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/north_tunnel) +"blK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/security/interrogation) -"bwL" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/north_valley_dam) +"blN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/security/interrogation) -"bwM" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"blT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_wilderness) +"blZ" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/building/security/evidence) -"bwO" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/desert_dam/interior/dam_interior/tech_storage) +"bmg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/security/evidence) -"bwQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Evidence" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bmh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/evidence) -"bwR" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bmx" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/interrogation) +"bmz" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"bmB" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"bmD" = ( +/turf/closed/shuttle{ + icon_state = "swall2" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/holding) -"bwT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/area/desert_dam/interior/dam_interior/hanger) +"bmX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"bmY" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bni" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bwV" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"bnk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"bnr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bns" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/hanger) -"bwW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners3" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bnt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/area/desert_dam/interior/dam_interior/hanger) -"bwX" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/north_valley_dam) +"bnv" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/area/desert_dam/interior/dam_interior/hanger) -"bwY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bny" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"bnF" = ( +/turf/closed/wall/r_wall/prison, +/area/desert_dam/building/security/northern_hallway) +"bnG" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/northern_hallway) +"bnH" = ( +/turf/closed/shuttle{ + icon_state = "swall14" }, /area/desert_dam/interior/dam_interior/hanger) -"bwZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 +"bnT" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/powermonitor, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bnU" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bnV" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"boc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hanger) -"bxa" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/north_valley_dam) +"boy" = ( +/turf/closed/shuttle{ + icon_state = "swall13" }, /area/desert_dam/interior/dam_interior/hanger) -"bxb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10 +"boG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/interior/dam_interior/hanger) -"bxc" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners3" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"boJ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/hanger) -"bxd" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10 +/area/desert_dam/interior/dam_interior/smes_main) +"boO" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/northern_hallway) +"boP" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/hanger) -"bxe" = ( +/area/desert_dam/building/warehouse/breakroom) +"boX" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bxf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"bpm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrowncorners2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"bpA" = ( +/obj/structure/surface/rack, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bpC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxh" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpF" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpI" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpJ" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxi" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bpM" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxj" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/area/desert_dam/interior/dam_interior/engine_west_wing) +"bpY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"bqD" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"bqE" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_north) +"bqF" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) +"bqM" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_one) -"bxk" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brc" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxl" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brg" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brh" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"brr" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_telecoms) +"brF" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"brP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/administration/hallway) -"bxn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bxo" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"brS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxq" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxs" = ( -/obj/structure/stairs{ - dir = 1 +/area/desert_dam/interior/dam_interior/north_tunnel) +"brX" = ( +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/smes_main) +"brY" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bsg" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"bsp" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/security/southern_hallway) +"bsC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bsK" = ( +/obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bsT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"bsZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"btc" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bto" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"bty" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"btz" = ( +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxt" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +"btA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxu" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" +"btC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bxv" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bxy" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bxz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"btO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_main) -"bxB" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_main) -"bxD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"btQ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/engine_room) -"bxE" = ( -/obj/structure/machinery/power/geothermal, +"btX" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/southern_hallway) +"btY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"buc" = ( +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"bud" = ( +/obj/structure/target, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bxF" = ( -/obj/effect/landmark/good_item, +/area/desert_dam/exterior/valley/valley_telecoms) +"buj" = ( +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"bur" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ + pixel_x = 32; + shuttleId = "trijentshuttle22" + }, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"but" = ( +/obj/structure/window/framed/wood/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/warehouse/breakroom) -"bxH" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"bxJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warning" +/area/desert_dam/building/bar/bar) +"buA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"buI" = ( +/obj/structure/machinery/door_control{ + id = "hangar_dam_2"; + name = "Hangar Shutters" }, -/area/desert_dam/interior/dam_interior/engine_room) -"bxK" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxL" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 10 +/area/desert_dam/interior/dam_interior/hanger) +"buR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxM" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"buS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxN" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"buU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxQ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bvp" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bxR" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"bvs" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bxS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"bxT" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/west) +"bvv" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/mining/workshop) +"bvx" = ( +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop_foyer) +"bvA" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/platform{ - dir = 4 +/area/desert_dam/building/warehouse/warehouse) +"bvD" = ( +/turf/open/floor/prison, +/area/desert_dam/building/security/staffroom) +"bwd" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bws" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"bwC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"bwE" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bwF" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/courtroom) +"bwQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Evidence" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ +/turf/open/floor/prison, +/area/desert_dam/building/security/evidence) +"bwR" = ( +/obj/structure/bed/chair{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_east) -"bxU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 +/turf/open/floor/prison, +/area/desert_dam/building/security/holding) +"bxo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/river/riverside_east) -"bxV" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bxq" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bxF" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/breakroom) +"bxP" = ( +/obj/structure/machinery/light{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) "bxW" = ( /obj/structure/platform{ dir = 4 @@ -23966,40 +6365,19 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bxY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bxZ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bya" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"byb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bym" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 +"byg" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/caves/east_caves) +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"byk" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/building/mining/workshop_foyer) "byn" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -24010,23 +6388,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hangar_storage) -"byp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/desert_dam/building/administration/overseer_office) -"byq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hangar" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) "byr" = ( /obj/structure/machinery/door_control{ id = "dam_shutter_hangar"; @@ -24036,162 +6397,15 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/hanger) -"bys" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byu" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"byv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byw" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byy" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"byz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"byA" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"byB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) "byC" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_west_wing) -"byD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper SMES" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"byE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"byG" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"byJ" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/engine_room) -"byL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_room) -"byP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"byQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"byR" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/item/clothing/suit/storage/CMB, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/staffroom) +"byI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) "byS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24200,48 +6414,16 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/engine_east_wing) -"byT" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "byU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/staffroom) -"byV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"byW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, -/area/desert_dam/exterior/valley/valley_mining) "byX" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating, /area/desert_dam/building/substation/northwest) -"byY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"byZ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "bza" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -24269,366 +6451,67 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/holding) -"bzh" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzi" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzj" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzp" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bzq" = ( -/obj/structure/machinery/light{ +"bze" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) +"bzs" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzt" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/west_tunnel) "bzu" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzv" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzw" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzx" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzA" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzB" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzC" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bzE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bzF" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bzG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bzH" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bzI" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Overseer's Office" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/overseer_office) -"bzK" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bzL" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bzM" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bzN" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bzO" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bzP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bzQ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bzR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzA" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzB" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bzH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/exterior/valley/valley_wilderness) +/area/desert_dam/interior/dam_interior/engine_west_wing) "bzS" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_wilderness) -"bzT" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bzU" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"bzV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "bzW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bzX" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/interrogation) "bzY" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_mining) -"bzZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) -"bAa" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"bAb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/staffroom) "bAc" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bAh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10 +"bAe" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/hangar_storage) +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"bAf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) "bAm" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_east_wing) -"bAn" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"bAp" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bAq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -24641,68 +6524,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel) -"bAs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAt" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAv" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bAw" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/east_caves) -"bAy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAz" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAC" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bAD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) "bAE" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -24712,27 +6533,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bAF" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/landing_pad_one) -"bAG" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/control_room) -"bAH" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/control_room) "bAI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24740,145 +6540,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/desert_dam/building/administration/overseer_office) -"bAJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) "bAK" = ( /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) -"bAM" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bAN" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAO" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAP" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAR" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAS" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bAY" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bAZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bBb" = ( -/obj/structure/machinery/light{ +"bAV" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) -"bBc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/holding) -"bBd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/holding) -"bBe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bBf" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) "bBg" = ( /obj/structure/bed/chair, /obj/structure/disposalpipe/segment, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bBh" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bBi" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/desert_dam/building/administration/overseer_office) -"bBj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bBk" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) "bBl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -24886,24 +6565,6 @@ "bBm" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBo" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBp" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBq" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) "bBr" = ( /obj/structure/platform_decoration{ dir = 8 @@ -24919,139 +6580,28 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bBt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bBv" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bBw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bBx" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_northwest"; - name = "Checkpoint Lockdown" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bBy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/stool, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bBD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +"bBC" = ( +/turf/open/desert/rock/deep/transition/east, /area/desert_dam/interior/dam_interior/north_tunnel) -"bBF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBG" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBH" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bBI" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"bBJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/engine_east_wing) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) "bBL" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/deathrow) -"bBM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bBO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/deathrow) -"bBP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bBQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bBR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) "bBS" = ( /obj/structure/bed/chair, /obj/structure/window/reinforced, /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) -"bBU" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bBV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25061,19 +6611,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bCe" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/desert_dam/interior/dam_interior/tech_storage) "bCg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, @@ -25085,14 +6622,6 @@ /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bCj" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement, @@ -25104,167 +6633,20 @@ /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bCm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCn" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCo" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCp" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bCs" = ( /obj/structure/window/framed/hangar, /obj/effect/blocker/toxic_water/Group_1, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"bCt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bCu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bCv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bCw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bCx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/lobby) "bCy" = ( /obj/structure/window/framed/hangar, /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"bCz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bCA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bCB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bCD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bCH" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bCI" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bCJ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) "bCK" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_mining) -"bCM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/interrogation) -"bCN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/evidence) "bCO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -25272,51 +6654,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"bCP" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCQ" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCR" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bCS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bCU" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"bCV" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) "bCW" = ( /obj/structure/stairs{ dir = 4 @@ -25324,231 +6661,51 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bCY" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bCZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDa" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDe" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/computer/atmos_alert, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bDf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bDi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bDj" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/greengrid, -/area/desert_dam/interior/dam_interior/tech_storage) -"bDk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bDl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bDo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bDp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bDu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bDw" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bDx" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDy" = ( -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/east_caves) -"bDz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDC" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/north_tunnel) +"bCZ" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDD" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDa" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bDE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/security/evidence) -"bDI" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"bDe" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/atmos_alert, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bDj" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/tech_storage) +"bDx" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/building/security/southern_hallway) +/area/desert_dam/interior/dam_interior/atmos_storage) +"bDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) "bDJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25558,20 +6715,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bDK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bDL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bDM" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -25581,14 +6724,12 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bDO" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +"bDN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/landing_pad_one) +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) "bDR" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -25608,17 +6749,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bDY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_civilian) "bDZ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -25628,52 +6758,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"bEb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"bEc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/desert_dam/building/dorms/restroom) -"bEd" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEe" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bEg" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bEh" = ( /obj/structure/stairs, /obj/structure/platform{ @@ -25681,51 +6765,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bEi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEj" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEk" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEl" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bEo" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bEp" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bEq" = ( /obj/structure/stairs{ dir = 4 @@ -25733,13 +6772,19 @@ /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bEr" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"bEs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"bEt" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) "bEu" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement, @@ -25764,38 +6809,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/tech_storage) -"bEz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bEA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bEB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/warning_cone, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bEC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/desert_dam/interior/dam_interior/tech_storage) "bED" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -25806,81 +6819,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"bEE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bEF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bEG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bEJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bEK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) "bEL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, @@ -25890,258 +6828,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/smes_main) -"bEN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bEO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bEP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bES" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bET" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engine Room" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bEU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bEV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bFa" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bFb" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bFc" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/caves/east_caves) -"bFd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bFe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bFf" = ( -/obj/structure/surface/table, -/obj/item/handcuffs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFg" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/landing_pad_one) -"bFi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bFk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bFl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bFm" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFn" = ( -/obj/structure/surface/table, -/obj/item/storage/donut_box, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFo" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFp" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/northwest) -"bFr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bFs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bFt" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bFu" = ( -/obj/structure/target, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) +"bFh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) "bFv" = ( /obj/structure/surface/table, /obj/item/evidencebag, @@ -26152,288 +6842,54 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bFw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/holding) -"bFx" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/deathrow) "bFy" = ( /obj/structure/surface/table, /obj/item/clothing/suit/armor/det_suit, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bFA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bFB" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_one) -"bFD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bFF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bFG" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bFJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bFL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFM" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bFN" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bFO" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bFP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bFR" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bFS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bFT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bFU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bFV" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bFW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bFX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bFY" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/smes_main) -"bFZ" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bGa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bGb" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bGc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/engine_room) -"bGe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bGg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bGh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bGi" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bGj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Atmospheric Storage" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"bFB" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bGk" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"bFE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bGn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bGp" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"bFL" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/caves/east_caves) -"bGs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_mining) -"bGt" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bFN" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bGu" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"bFY" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/desert_dam/interior/dam_interior/central_tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/smes_main) +"bGc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) "bGv" = ( /obj/structure/surface/table, /obj/item/explosive/grenade/flashbang, @@ -26445,12 +6901,6 @@ /obj/item/clothing/shoes/jackboots, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bGx" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/deathrow) "bGy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Marshal Office" @@ -26494,14 +6944,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bGG" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/courtroom) "bGH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -26512,70 +6954,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bGI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bGJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bGK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Observation" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/observation) -"bGL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bGO" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bGP" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) +"bGM" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/hanger) "bGQ" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -26583,23 +6970,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_main) -"bGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bGT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"bGS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) "bGU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -26627,31 +7004,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bGZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bHc" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -26673,50 +7025,10 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/lobby) -"bHg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bHh" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bHi" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bHl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) +"bHj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) "bHm" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" @@ -26726,37 +7038,6 @@ /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bHo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Backup SMES" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bHp" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"bHq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bHr" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) "bHs" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/rock, @@ -26765,64 +7046,10 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bHv" = ( -/turf/open/floor{ - dir = 7; - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bHw" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bHx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bHy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bHz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bHD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/interior/caves/central_caves) -"bHE" = ( -/turf/open/desert/rock/deep/transition{ - dir = 9 - }, -/area/desert_dam/interior/caves/east_caves) "bHF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bHG" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/interior/caves/east_caves) "bHI" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray/cleaner, @@ -26847,29 +7074,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bHM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"bHN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/staffroom) -"bHQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Cargo Bay" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) "bHR" = ( /obj/structure/stairs{ dir = 4 @@ -26886,61 +7090,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bHT" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bHV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bHZ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bId" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bIe" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, @@ -26953,121 +7102,9 @@ /obj/structure/janitorialcart, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bIh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bIl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bIm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bIq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bIs" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "bIt" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) -"bIu" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_room) -"bIv" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bIw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"bIx" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIz" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIA" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIB" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"bIC" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/desert_dam/interior/dam_interior/atmos_storage) "bID" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -27094,91 +7131,15 @@ "bIK" = ( /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) -"bIR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bIU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "bIV" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/good_item, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"bIW" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bIX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bIY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/interrogation) -"bIZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) "bJa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bJb" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJc" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJd" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJe" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bJf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) "bJg" = ( /obj/structure/platform_decoration{ dir = 1 @@ -27190,54 +7151,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/north_tunnel) -"bJi" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bJj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bJk" = ( -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bJl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/glasses/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bJm" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bJn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_main) "bJo" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -27247,60 +7160,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bJq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bJr" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bJs" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bJt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bJx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bJz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "bJB" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, @@ -27315,102 +7174,18 @@ "bJE" = ( /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) -"bJF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"bJH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) "bJI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison, /area/desert_dam/building/security/staffroom) -"bJJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bJK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bJL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bJM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bJN" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bJO" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/staffroom) -"bJP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) "bJQ" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bJR" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bJS" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"bJT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) "bJU" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/warden) @@ -27418,92 +7193,31 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/desert_dam/building/security/warden) -"bKb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bKc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bKe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Evidence" - }, -/turf/open/floor{ - icon_state = "dark" +"bKd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/security/evidence) +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) "bKf" = ( /obj/structure/bed/chair, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bKh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bKj" = ( /obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"bKk" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"bKl" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/courtroom) -"bKm" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bKp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"bKk" = ( +/obj/structure/barricade/wooden{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"bKl" = ( +/obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/courtroom) "bKq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -27522,47 +7236,12 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bKt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) "bKv" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bKw" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bKx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bKy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bKz" = ( /obj/structure/machinery/light, /turf/open/floor/plating, @@ -27572,59 +7251,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bKB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) "bKC" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_one) -"bKD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKE" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKF" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKG" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bKH" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "bKI" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, @@ -27635,13 +7267,6 @@ }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bKK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bKL" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -27653,73 +7278,17 @@ "bKN" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/southern_hallway) -"bKO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/eastleft{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/security/warden) -"bKP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Visitation" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/southern_hallway) -"bKQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/staffroom) -"bKR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkred2" +"bKW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/security/staffroom) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) "bKZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bLa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bLb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bLc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bLd" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/security/southern_hallway) "bLe" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -27734,88 +7303,12 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/security/courtroom) -"bLg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bLh" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8" }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/north_tunnel) -"bLj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/lightreplacer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bLk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bLm" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bLn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"bLo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bLp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/smes_main) "bLq" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -27826,78 +7319,10 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/lobby) -"bLt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bLv" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bLw" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bLx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bLy" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/lobby) "bLz" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLB" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bLC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Tool Storage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bLD" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bLE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "bLF" = ( /obj/structure/platform{ dir = 4 @@ -27910,314 +7335,41 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"bLK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"bLL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/security/southern_hallway) -"bLM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/security/southern_hallway) "bLN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office" }, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bLO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bLP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bLQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/staffroom) "bLR" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"bLS" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bLT" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/staffroom) "bLU" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/workshop) -"bLV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bLW" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bLX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bLY" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bLZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) "bMb" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/workshop) -"bMc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bMd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bMe" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMi" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bMl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bMm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bMn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMo" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMp" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"bMr" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bMs" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bMt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bMu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bMv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bMw" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/hangar_storage) -"bMy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/warden) -"bMD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bME" = ( +"bMx" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bMG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) "bMH" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -28233,118 +7385,23 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"bML" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bMM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bMQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bMT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bMW" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bMX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) +"bMU" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) "bMY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bMZ" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/security/courtroom) "bNa" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/security/courtroom) -"bNb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bNc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bNd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bNe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28354,12 +7411,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/southern_hallway) -"bNf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) "bNg" = ( /obj/structure/machinery/door_control{ id = "dam_stormlock_east"; @@ -28367,14 +7418,6 @@ }, /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"bNh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bNi" = ( /turf/open/floor/prison, /area/desert_dam/building/security/warden) @@ -28402,78 +7445,11 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"bNn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bNo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) -"bNp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bNq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bNr" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bNs" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bNt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bNu" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/east_caves) -"bNv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) "bNw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/armory) @@ -28484,14 +7460,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/armory) -"bNC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) "bNE" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/prison) @@ -28505,134 +7473,29 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/autoname, /turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bNH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/security/prison) -"bNI" = ( -/obj/structure/surface/table, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bNJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/warden) -"bNK" = ( -/obj/structure/stairs{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/security/courtroom) -"bNL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bNM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bNN" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/security/courtroom) -"bNO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "cult" +/area/desert_dam/building/security/prison) +"bNH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/security/prison) +"bNJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/desert_dam/building/security/courtroom) +/turf/open/floor/prison, +/area/desert_dam/building/security/warden) "bNP" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bNQ" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/warden) -"bNS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bNT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/armory) +"bNU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) "bNY" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/workshop) -"bNZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bOa" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bOb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/obj/structure/machinery/light, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bOc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bOf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "bOh" = ( /obj/structure/platform_decoration{ dir = 1 @@ -28650,79 +7513,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bOk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOl" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOm" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stock_parts/smes_coil, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOo" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"bOs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bOt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bOu" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, @@ -28734,26 +7524,11 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"bOw" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bOx" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"bOz" = ( -/obj/structure/stairs{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/security/courtroom) "bOB" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -28770,72 +7545,17 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_labs) -"bOF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/prison) "bOG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bOH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bOI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bOJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/prison) -"bOK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bOM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bON" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"bOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/workshop) "bOP" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/northwestern_tunnel) @@ -28847,14 +7567,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/office) -"bOT" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "bOU" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -28868,133 +7580,16 @@ "bOX" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/central_tunnel) -"bOY" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bOZ" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bPa" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bPb" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/CE_office) -"bPd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPe" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +"bPu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bPf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"bPg" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bPj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bPk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bPl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bPm" = ( -/obj/structure/machinery/colony_floodlight, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bPn" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "bPv" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, @@ -29003,63 +7598,9 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bPz" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) -"bPA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bPB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bPC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Habitation"; - network = list("chigusa_2") - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) -"bPD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) -"bPE" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bPF" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) +"bPy" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) "bPG" = ( /obj/structure/bed/chair{ dir = 8 @@ -29072,36 +7613,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bPJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bPK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) -"bPL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) -"bPM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) "bPN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -29111,204 +7622,13 @@ "bPO" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/western_dam_cave) -"bPP" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bPQ" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bPR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bPV" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bPX" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bPY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bPZ" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQa" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bQb" = ( /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"bQc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bQd" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bQe" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bQf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bQg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bQl" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bQm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQn" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bQs" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/south_valley_dam) "bQt" = ( /turf/open/asphalt, /area/desert_dam/building/warehouse/loading) @@ -29316,69 +7636,6 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bQv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/prison) -"bQy" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bQz" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, -/area/desert_dam/building/security/armory) -"bQA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bQB" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/warehouse/breakroom) -"bQC" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bQE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bQF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bQG" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/prison, @@ -29390,135 +7647,12 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bQI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bQM" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/desert_dam/building/security/warden) -"bQN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bQO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) "bQP" = ( /turf/open/gm/river/desert/shallow, /area/desert_dam/interior/dam_interior/western_dam_cave) -"bQQ" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"bQR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQS" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bQT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bQU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bQV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bQW" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bQY" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bQZ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) +"bQX" = ( +/turf/open/mars/mars_dirt_14, +/area/desert_dam/interior/lab_northeast/east_lab_containment) "bRe" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -29531,25 +7665,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"bRg" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"bRh" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bRi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) "bRj" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, @@ -29557,13 +7672,7 @@ "bRk" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/office) -"bRl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/CE_office) +/area/desert_dam/interior/dam_interior/office) "bRn" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/desert/dirt, @@ -29571,14 +7680,6 @@ "bRo" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"bRp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) "bRq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -29603,44 +7704,10 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_central_north) -"bRv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bRw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bRx" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/security/prison) "bRy" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/CE_office) -"bRz" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bRA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) "bRB" = ( /obj/structure/machinery/door_control{ id = "dam_stormlock_central"; @@ -29650,32 +7717,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/west_tunnel) -"bRC" = ( -/obj/structure/bedsheetbin, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bRD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bRE" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) "bRF" = ( /turf/open/floor/prison, /area/desert_dam/building/security/armory) @@ -29691,16 +7732,6 @@ "bRI" = ( /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/interior/dam_interior/western_dam_cave) -"bRJ" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bRK" = ( -/turf/open/desert/cave/cave_shore{ - dir = 5 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) "bRL" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 9 @@ -29713,186 +7744,10 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/western_dam_cave) -"bRN" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_main) "bRO" = ( /obj/structure/window/framed/hangar, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/smes_backup) -"bRQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bRT" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bRU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRX" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bRZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSa" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bSb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bSc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bSg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bSh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bSi" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bSj" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ @@ -29915,364 +7770,24 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"bSm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/southern_hallway) -"bSn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bSo" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bSs" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"bSu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/armory) -"bSv" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bSx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bSy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bSz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bSA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bSB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/warden) -"bSG" = ( -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSH" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSI" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSJ" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bSK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bSM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bSO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bSP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bSQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bSR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) "bSS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/workshop) -"bST" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/control_room) -"bSU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bSV" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bSW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Engineering Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"bSX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) "bSY" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) -"bSZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bTa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTb" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/control_room) -"bTc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTh" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) "bTi" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_north) -"bTj" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) -"bTk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) "bTl" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, /area/desert_dam/building/security/prison) -"bTm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bTn" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bTo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bTp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bTq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) -"bTr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 1" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) "bTs" = ( /obj/structure/machinery/squeezer, /turf/open/floor/interior/wood, @@ -30285,57 +7800,11 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"bTv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/southern_hallway) "bTw" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bTz" = ( -/turf/open/desert/cave/cave_shore{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bTA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bTB" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bTC" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bTD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bTE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) "bTF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -30343,11 +7812,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bTG" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "bTH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -30358,74 +7822,10 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/west_tunnel) -"bTJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bTL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bTM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bTN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"bTO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"bTP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "bTR" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) -"bTU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bTV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_mining) "bTW" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) @@ -30438,67 +7838,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bUa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) -"bUb" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) -"bUd" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUe" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"bUf" = ( -/turf/open/desert/cave/cave_shore{ - dir = 6 - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) "bUg" = ( /turf/open/desert/cave/cave_shore, /area/desert_dam/interior/dam_interior/western_dam_cave) -"bUj" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bUl" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) "bUm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/north_tunnel) -"bUo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) "bUp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30508,30 +7854,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) -"bUq" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bUr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bUs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Tool Storage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) "bUt" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, @@ -30544,74 +7866,21 @@ /obj/structure/desertdam/decals/road_edge, /obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "pipe-c" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"bUF" = ( +"bUy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) "bUG" = ( /obj/structure/desertdam/decals/road_edge, @@ -30647,202 +7916,20 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"bUM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/warden) "bUN" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"bUQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bUR" = ( -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bUU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) -"bUV" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) +"bUP" = ( +/turf/open/desert/excavation/component2/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) "bUW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 1" }, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"bUX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bUY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bUZ" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"bVb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVc" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bVh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bVj" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVk" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVl" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVn" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bVq" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -30867,32 +7954,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"bVw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bVx" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bVy" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) "bVz" = ( /obj/structure/platform{ dir = 8 @@ -30901,12 +7962,14 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"bVA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) +"bVB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"bVC" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) "bVD" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/south_valley_dam) @@ -30914,92 +7977,6 @@ /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"bVF" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bVI" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"bVJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/armory) -"bVK" = ( -/obj/structure/barricade/sandbags{ - dir = 1 - }, -/obj/structure/barricade/sandbags{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bVN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"bVO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"bVR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) "bVS" = ( /obj/structure/stairs{ dir = 4 @@ -31021,33 +7998,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) -"bVU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bVV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bVW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bVX" = ( /obj/structure/stairs{ dir = 8 @@ -31060,51 +8010,11 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"bVY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bVZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bWa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bWb" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bWe" = ( -/obj/structure/machinery/flasher/portable, -/turf/open/floor/prison{ - icon_state = "floor_marked" - }, -/area/desert_dam/building/security/armory) "bWf" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Warden" @@ -31126,11 +8036,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"bWh" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bWi" = ( /obj/structure/flora/grass/desert/heavygrass_5, /turf/open/desert/dirt, @@ -31143,27 +8048,34 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/south_valley_dam) -"bWm" = ( -/obj/structure/platform{ - dir = 8 +"bWl" = ( +/obj/structure/showcase{ + color = "#880808"; + desc = "A large red statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "The Titan" }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1; + icon_state = "halfarmor7_ebony" }, -/area/desert_dam/exterior/river/riverside_central_south) -"bWn" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1; + icon_state = "y-boots4_ebony" }, -/area/desert_dam/exterior/river/riverside_central_south) -"bWo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + icon_state = "pred_mask12_ebony"; + unacidable = 0 }, -/area/desert_dam/exterior/valley/north_valley_dam) +/turf/open/floor/strata/grey_multi_tiles, +/area/desert_dam/interior/caves/temple) +"bWp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) "bWq" = ( /obj/structure/platform{ dir = 4 @@ -31171,17 +8083,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"bWs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) "bWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31209,15 +8110,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_central_north) -"bWx" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bWA" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -31234,12 +8126,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/warden) -"bWD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_mining) "bWE" = ( /obj/structure/desertdam/decals/road_stop{ icon_state = "stop_decal5" @@ -31253,25 +8139,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bWH" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bWI" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bWJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) "bWK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -31284,49 +8151,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bWM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bWN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bWP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"bWR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) "bWT" = ( /obj/structure/stairs{ dir = 4 @@ -31340,17 +8164,6 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/west_tunnel) -"bWV" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bWW" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bWX" = ( /obj/structure/stairs{ dir = 8 @@ -31358,18 +8171,6 @@ /obj/structure/platform, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/central_tunnel) -"bWY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"bXa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bXc" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, @@ -31378,125 +8179,15 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"bXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"bXf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bXg" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXh" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXi" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXk" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXm" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bXn" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"bXo" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bXp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bXq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"bXr" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bXs" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_north) -"bXt" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bXu" = ( /obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, @@ -31525,59 +8216,12 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_central_north) -"bXz" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"bXB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bXC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_northwest"; - name = "\improper Checkpoint Lock"; - unacidable = 0 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"bXD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) "bXF" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bXG" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_mining) "bXH" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -31601,15 +8245,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bXM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) "bXN" = ( /obj/structure/desertdam/decals/road_edge, /obj/structure/disposalpipe/segment{ @@ -31617,24 +8252,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bXO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bXP" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "bXQ" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" @@ -31651,16 +8268,6 @@ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/disposals) -"bXT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "bXU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31668,24 +8275,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bXV" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXW" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bXY" = ( /obj/structure/platform{ dir = 1 @@ -31693,33 +8282,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"bXZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bYa" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bYb" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bYc" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/north_valley_dam) "bYd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -31727,26 +8289,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_mining) -"bYf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) +"bYe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_mining) "bYg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -31781,18 +8331,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"bYl" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"bYm" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) "bYo" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/pistol/holdout, @@ -31834,26 +8372,9 @@ /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/prison, /area/desert_dam/building/security/armory) -"bYs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) "bYt" = ( /turf/open/floor/prison, /area/desert_dam/building/security/deathrow) -"bYv" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) "bYw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -31872,53 +8393,11 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"bYA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bYB" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/disposals) -"bYC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bYD" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "bYE" = ( /turf/closed/wall/hangar{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/break_room) -"bYF" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) "bYG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -31929,12 +8408,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bYH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/break_room) "bYI" = ( /obj/structure/platform{ dir = 1 @@ -31972,25 +8445,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bYN" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_mining) -"bYO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"bYP" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "bYQ" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/incendiary, @@ -32000,46 +8454,12 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/armory) -"bYR" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bYS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bYT" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) "bYV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"bYW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) "bYX" = ( /obj/structure/machinery/conveyor{ id = "anomalybelt" @@ -32062,157 +8482,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"bZa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bZb" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/disposals) -"bZc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"bZd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) "bZe" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/break_room) -"bZf" = ( -/obj/structure/toilet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"bZj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZm" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZn" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"bZq" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"bZr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_south) "bZs" = ( /obj/structure/platform{ dir = 1 @@ -32230,62 +8504,9 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"bZu" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) -"bZv" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "bZw" = ( /turf/closed/wall/r_wall/prison, /area/desert_dam/building/security/execution_chamber) -"bZx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"bZy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"bZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"bZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/north_wing_hallway) "bZC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -32315,52 +8536,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"bZG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"bZH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"bZI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Rec Yard" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) "bZJ" = ( /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) -"bZK" = ( -/obj/structure/target, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"bZL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) "bZM" = ( /obj/structure/bed/chair, /turf/open/floor/prison, @@ -32390,75 +8568,10 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_central_south) -"bZS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"bZU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bZV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"bZY" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"bZZ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cad" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/caves/central_caves) +"bZT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) "cae" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -32474,60 +8587,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_mining) -"cah" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cai" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"caj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"cak" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"cal" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" - }, -/area/desert_dam/building/security/prison) -"cam" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 2" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) -"can" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cao" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ @@ -32535,74 +8594,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) -"cap" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"caq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) -"car" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) -"cat" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cau" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cav" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"caw" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cax" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) "cay" = ( /obj/structure/machinery/conveyor{ id = "anomalybelt" @@ -32610,39 +8601,10 @@ /obj/item/trash/syndi_cakes, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"caB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"caC" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"caD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) "caF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"caG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"caH" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "caI" = ( /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep/covered, @@ -32653,27 +8615,13 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"caL" = ( -/obj/structure/platform{ - dir = 1 - }, +"caN" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"caM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) "caO" = ( /obj/structure/surface/rack, /obj/item/explosive/plastic, @@ -32691,31 +8639,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"caR" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"caS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"caT" = ( -/obj/structure/barricade/sandbags, -/obj/structure/barricade/sandbags{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "caU" = ( /obj/effect/landmark/crap_item, /turf/open/floor/interior/wood, @@ -32745,170 +8668,44 @@ /area/desert_dam/building/security/execution_chamber) "cba" = ( /obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/security/execution_chamber) -"cbc" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 5 - }, -/turf/open/floor, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cbd" = ( -/obj/structure/machinery/conveyor{ - id = "anomalybelt" - }, -/obj/item/trash/popcorn, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbe" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"cbf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbg" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/CE_office) -"cbh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cbi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"cbj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbk" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/welding, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"cbl" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Engineering Hallway" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating, +/area/desert_dam/building/security/execution_chamber) +"cbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"cbt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"cbc" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 }, -/area/desert_dam/exterior/river/riverside_central_south) -"cbu" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cbd" = ( +/obj/structure/machinery/conveyor{ + id = "anomalybelt" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/item/trash/popcorn, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cbe" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/area/desert_dam/exterior/river/riverside_central_south) +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"cbg" = ( +/obj/structure/window/framed/hangar, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/CE_office) +"cbn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "cbv" = ( /obj/structure/platform{ dir = 4 @@ -32930,95 +8727,10 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"cby" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"cbz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_north) "cbA" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, /area/desert_dam/building/security/deathrow) -"cbB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cbE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"cbF" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cbG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cbH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cbI" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) "cbJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -33028,14 +8740,6 @@ }, /turf/open/floor, /area/desert_dam/interior/dam_interior/western_dam_cave) -"cbK" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) "cbM" = ( /obj/structure/machinery/light{ dir = 4 @@ -33053,121 +8757,18 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"cbP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"cbR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"cbS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"cbT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"cbU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbW" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"cbQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/interior/dam_interior/break_room) -"cbY" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cbZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"cca" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) -"ccc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ccd" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cce" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"ccf" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_south) +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "ccg" = ( /obj/structure/platform{ dir = 4 @@ -33192,53 +8793,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_north) -"ccj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_north) -"cck" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "hangar_dam_2"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"ccl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"ccm" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"ccn" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"cco" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/caves/central_caves) "ccp" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/floor/greengrid, @@ -33247,92 +8801,12 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/floor/greengrid, /area/desert_dam/interior/dam_interior/engine_room) -"ccs" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"cct" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/security/prison) -"ccu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"ccv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/deathrow) "ccw" = ( /turf/open/floor, /area/desert_dam/interior/dam_interior/western_dam_cave) -"ccx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) "ccy" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/disposals) -"ccz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/control_room) -"ccA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"ccB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"ccC" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"ccD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"ccF" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) "ccG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33340,85 +8814,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/northwestern_tunnel) -"ccH" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"ccI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ccJ" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"ccK" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/central_caves) -"ccL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_central_south) -"ccM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ccN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ccO" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"ccP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"ccQ" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"ccR" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"ccY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/desert_dam/building/security/deathrow) "ccZ" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -33441,48 +8836,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cdd" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/security/deathrow) -"cdf" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cdg" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) "cdh" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/valley/valley_telecoms) -"cdi" = ( -/obj/structure/machinery/computer/station_alert, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/interior/dam_interior/office) -"cdj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cdk" = ( /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt/cement_sunbleached, @@ -33493,50 +8849,12 @@ "cdm" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/break_room) -"cdn" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cdo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "cdp" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 9 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"cdq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"cdr" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "cds" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -33545,108 +8863,12 @@ /obj/structure/catwalk, /turf/open/floor/plating, /area/desert_dam/building/security/prison) -"cdu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"cdv" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) "cdw" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"cdx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdy" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdz" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdA" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "cdC" = ( /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cdD" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdE" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdF" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cdG" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) -"cdJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) "cdK" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -33654,49 +8876,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cdL" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cdN" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) -"cdO" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cdP" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cdQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/workshop) "cdR" = ( /obj/structure/platform{ dir = 1 @@ -33734,31 +8913,11 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"cdX" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 - }, -/area/desert_dam/interior/caves/central_caves) -"cdZ" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"cea" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceb" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) +"cdY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) "cec" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/interior/wood, @@ -33773,48 +8932,14 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/bar_valley_dam) -"cef" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_central_south) "ceg" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"ceh" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cei" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) "cej" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"cek" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cel" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) "cen" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/valley_medical) @@ -33827,132 +8952,35 @@ dir = 8 }, /turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"ceq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cer" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cet" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Isolation" - }, -/turf/open/floor/prison, -/area/desert_dam/building/security/deathrow) -"ceu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"cev" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cew" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cex" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cey" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/area/desert_dam/exterior/valley/valley_medical) +"cet" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cez" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Isolation" }, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/floor/prison, +/area/desert_dam/building/security/deathrow) "ceA" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"ceB" = ( -/obj/effect/decal/sand_overlay/sand1{ +"ceE" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"ceC" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"ceD" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) "ceF" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"ceG" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "ceH" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"ceI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "ceJ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -33962,60 +8990,6 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ceL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceM" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceN" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceO" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceP" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"ceQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"ceR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "ceS" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -34023,79 +8997,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ceT" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"ceU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"ceV" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/river{ - name = "pool" - }, -/area/desert_dam/building/dorms/pool) -"ceW" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ceX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ceY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ceZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "cfa" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"cfb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cfd" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cfe" = ( -/turf/open/desert/rock/edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cff" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cfg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -34123,65 +9030,14 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"cfm" = ( -/obj/structure/machinery/computer/atmos_alert, +"cfu" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor/dark, /area/desert_dam/interior/dam_interior/office) -"cfn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cfo" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfp" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfq" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cfr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) -"cfs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"cft" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_medical) "cfv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -34241,62 +9097,16 @@ /obj/structure/platform, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"cfD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river_mouth/southern) -"cfE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/rock/edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cfG" = ( -/turf/open/desert/rock/edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_cargo) "cfH" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river_mouth/southern) -"cfJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cfN" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) "cfP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"cfQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "cfR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -34312,6 +9122,13 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel) +"cfU" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) "cfX" = ( /obj/structure/platform{ dir = 8 @@ -34326,16 +9143,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"cfZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) "cga" = ( /obj/structure/platform_decoration{ dir = 1 @@ -34343,19 +9150,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"cgb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgc" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_medical) "cgd" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -34376,57 +9170,9 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"cgh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/landing_pad_two) -"cgi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - icon_state = "neutral" - }, -/area/desert_dam/interior/dam_interior/engine_room) -"cgj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cgk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cgm" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/building/substation/west) -"cgn" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) -"cgo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river_mouth/southern) "cgp" = ( /obj/structure/surface/table, /obj/structure/machinery/filtration_button{ @@ -34438,15 +9184,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river_mouth/southern) -"cgr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river_mouth/southern) "cgs" = ( /obj/structure/platform{ dir = 8 @@ -34471,17 +9208,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"cgB" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cgC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) "cgD" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/interior/wood, @@ -34498,11 +9224,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/desert_dam/building/substation/west) -"cgK" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_medical) "cgL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -34530,50 +9251,17 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_wilderness) -"cgU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor{ - icon_state = "neutral" +"cgS" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, +/turf/open/floor/plating, /area/desert_dam/interior/dam_interior/engine_room) -"cgY" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) -"cgZ" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) -"cha" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) "chb" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"chd" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) "che" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -34614,12 +9302,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"chl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ - dir = 5 - }, -/area/desert_dam/interior/caves/east_caves) "chm" = ( /obj/structure/platform{ dir = 8 @@ -34627,22 +9309,10 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"chn" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) "cho" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) -"chp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) "chq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -34684,22 +9354,6 @@ /obj/structure/platform_decoration, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_telecoms) -"chx" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"chy" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "chz" = ( /obj/structure/platform{ dir = 1 @@ -34727,18 +9381,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"chC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "chD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -34751,12 +9393,6 @@ }, /turf/open/desert/rock/deep/transition, /area/desert_dam/interior/caves/temple) -"chG" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "chJ" = ( /obj/effect/decal/sand_overlay/sand2, /turf/open/asphalt/cement, @@ -34786,21 +9422,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"chT" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_south) -"chU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_south) "chV" = ( /obj/structure/platform{ dir = 1 @@ -34811,56 +9432,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"chW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"chX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"chY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"chZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cia" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cib" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cic" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/building/substation/west) -"cid" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) "cie" = ( /obj/structure/platform{ dir = 8 @@ -34903,41 +9474,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"cim" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cin" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cio" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cip" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) "cir" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 6 @@ -34951,18 +9487,6 @@ "ciu" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"civ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ciw" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/north_tunnel) "cix" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -34981,18 +9505,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"ciD" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) "ciE" = ( /obj/structure/platform{ dir = 8 @@ -35019,44 +9531,18 @@ }, /turf/open/floor/plating, /area/desert_dam/building/substation/west) -"ciK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/security/prison) "ciL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/desert_dam/building/security/deathrow) -"ciM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "ciN" = ( /obj/effect/decal/sand_overlay/sand2{ dir = 8 }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ciO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ciP" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/desert_dam/exterior/river/riverside_south) "ciQ" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, @@ -35068,18 +9554,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/chemistry) -"ciT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ciU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) "ciV" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/break_room) @@ -35090,185 +9564,38 @@ "cjc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/desert/rock, -/area/desert_dam/interior/caves/east_caves) -"cjf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cjg" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"cjh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cji" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cjj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cjk" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"cjl" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cjm" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_south) -"cjn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cjo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cjp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cjq" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) -"cjr" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) -"cjs" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/west_wing_hallway) -"cjt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cjv" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/morgue) -"cjw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"cjx" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"cjy" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/break_room) -"cjz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cjA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cjB" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cjC" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cjD" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/area/desert_dam/interior/caves/east_caves) +"cjf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/break_room) -"cjE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cjg" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"cjl" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/wood, +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cjs" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/west_wing_hallway) +"cju" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"cjv" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/morgue) +"cjy" = ( +/turf/closed/wall, /area/desert_dam/building/medical/break_room) "cjF" = ( /obj/structure/machinery/light{ @@ -35286,154 +9613,27 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"cjK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cjO" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cjP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cjQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 +"cjL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"cjM" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) "cjR" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) -"cjS" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_south) -"cjT" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cjU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) "cjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/chemistry) -"cjW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cjX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cjY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cjZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) "cka" = ( /turf/closed/wall, /area/desert_dam/building/medical/morgue) -"ckb" = ( -/obj/structure/morgue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"ckc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"ckd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cke" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"ckf" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"ckg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"ckh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/lobby) "cki" = ( /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) @@ -35441,283 +9641,28 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) -"ckk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"ckm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"ckn" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"cko" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"ckp" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_cargo) "ckq" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"ckr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cks" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"ckt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) "cku" = ( /obj/structure/showcase{ icon_state = "bus" }, /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) -"ckv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"ckw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Cell 3" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/desert_dam/building/security/prison) -"ckx" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_south) -"ckA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/chemistry) -"ckB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/chemistry) -"ckC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) "ckD" = ( /turf/closed/wall, /area/desert_dam/building/medical/chemistry) -"ckE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"ckF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"ckG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"ckH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"ckI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"ckJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"ckL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"ckN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"ckO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"ckP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"ckQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"ckS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/medical/break_room) -"ckT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ckK" = ( +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/substation/northwest) "ckU" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) -"ckV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ckW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"ckX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/lobby) "ckY" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, @@ -35728,15 +9673,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/break_room) -"cla" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) "clb" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, @@ -35752,61 +9688,9 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_central_south) -"cle" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"clf" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"clg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"clh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cli" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_central_south) "clj" = ( /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"clk" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) "cll" = ( /obj/structure/platform{ dir = 4 @@ -35815,18 +9699,6 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_central_south) -"clm" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river_mouth/southern) -"cln" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river_mouth/southern) "clo" = ( /obj/structure/platform{ dir = 1 @@ -35847,57 +9719,22 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"clq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lab Maintenance" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"clr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"clt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"clw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +"cls" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/substation/west) +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "clz" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Cell 3" }, /turf/open/floor/prison, /area/desert_dam/building/security/prison) -"clA" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) "clB" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) -"clC" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "clD" = ( /obj/structure/platform{ dir = 8 @@ -35905,154 +9742,24 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) -"clE" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_south) "clF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"clG" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Office" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/chemistry) -"clH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"clI" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"clJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"clK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"clL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Chemistry" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"clM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"clN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"clP" = ( -/obj/structure/machinery/optable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"clQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"clO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/medical/break_room) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) "clR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/prison, /area/desert_dam/building/medical/break_room) -"clS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/lobby) -"clT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"clU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"clV" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"clW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"clX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) "clY" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -36070,23 +9777,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cmc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cmf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" +"cmd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cavein_engineering" }, -/area/desert_dam/interior/dam_interior/hanger) +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) "cmg" = ( /obj/structure/platform{ dir = 1 @@ -36094,38 +9790,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"cmh" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cmi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cmj" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cmk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) "cml" = ( /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) @@ -36136,82 +9800,8 @@ "cmp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cmr" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"cms" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"cmt" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"cmu" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/chemistry) -"cmv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"cmw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"cmx" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cmB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"cmC" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cmD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/lobby) +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) "cmE" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -36246,25 +9836,6 @@ /obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/carpet, /area/desert_dam/building/warehouse/breakroom) -"cmM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cmN" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cmO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) "cmP" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -36281,19 +9852,9 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"cmR" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cmS" = ( /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cmU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cmV" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random/barrel/white, @@ -36303,82 +9864,14 @@ /obj/structure/fence, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cmX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cmY" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/desert_dam/building/warehouse/breakroom) -"cmZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/west) -"cna" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cnb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cnc" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"cne" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"cnf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Foremans Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) "cng" = ( /obj/effect/landmark/crap_item, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"cni" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) "cnp" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -36392,17 +9885,6 @@ }, /turf/open/floor/carpet, /area/desert_dam/building/warehouse/breakroom) -"cnr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "cnu" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -36415,43 +9897,12 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/northeastern_tunnel) -"cnw" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cnx" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cny" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "cnz" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/open/floor/carpet, /area/desert_dam/building/warehouse/breakroom) -"cnA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) "cnB" = ( /obj/structure/platform{ dir = 8 @@ -36463,93 +9914,14 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_south) -"cnD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "cnE" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"cnF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"cnG" = ( -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) -"cnH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) -"cnI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "cnJ" = ( /obj/structure/machinery/smartfridge/chemistry, /turf/closed/wall, /area/desert_dam/building/medical/chemistry) -"cnK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cnL" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) -"cnN" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"cnO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"cnP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/medical/break_room) "cnQ" = ( /obj/structure/machinery/light, /turf/open/floor/wood, @@ -36558,14 +9930,6 @@ /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cnS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/landing/console2) "cnT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -36584,58 +9948,6 @@ }, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cnW" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cnX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cnZ" = ( -/obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"coa" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cob" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"coc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cod" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"coe" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) "cof" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -36647,83 +9959,10 @@ /obj/effect/blocker/toxic_water/Group_2, /turf/open/gm/river/desert/shallow/covered, /area/desert_dam/exterior/river/riverside_central_south) -"coh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"coj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) -"cok" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"col" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"com" = ( -/obj/effect/blocker/toxic_water, -/turf/open/floor/filtrationside{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_hydro) -"con" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) "coo" = ( /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river_mouth/southern) -"cop" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river_mouth/southern) -"cos" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cou" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/warehouse/breakroom) "cov" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 @@ -36749,44 +9988,10 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/carpet, /area/desert_dam/building/warehouse/breakroom) -"coB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) "coC" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"coE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"coF" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/river/riverside_south) -"coG" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_medical) -"coH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) "coI" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, @@ -36795,14 +10000,6 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"coK" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_medical) "coL" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -36810,75 +10007,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"coM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"coN" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "whitered" - }, -/area/desert_dam/building/medical/chemistry) -"coO" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"coP" = ( -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"coQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"coR" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"coS" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"coT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Morgue" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/morgue) "coU" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/break_room) -"coV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/smes_backup) "coW" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/prison, @@ -36901,241 +10033,26 @@ /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cpb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cpc" = ( -/obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cpd" = ( -/obj/structure/platform_decoration, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river_mouth/southern) -"cpf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cpg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cph" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cpi" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cpj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/desert_dam/building/bar/bar) "cpm" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) -"cpn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cpp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cpq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/desert_dam/building/bar/bar) -"cps" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) +"cpo" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"cpr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_labs) "cpu" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/north_valley_dam) -"cpv" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"cpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"cpx" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office1) -"cpy" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office1) -"cpz" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office2) -"cpA" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cpB" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cpC" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitepurplecorner" - }, -/area/desert_dam/building/medical/chemistry) -"cpE" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"cpF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cpG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) "cpH" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/north_wing_hallway) -"cpI" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cpJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cpL" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cpM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cpN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cpP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) "cpQ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 @@ -37155,177 +10072,21 @@ /turf/open/floor/prison, /area/desert_dam/building/substation/west) "cpT" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cpU" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cpV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cpW" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cpX" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cpY" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cpZ" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cqa" = ( -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"cqb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cqc" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cqd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) -"cqf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/warehouse/breakroom) -"cqg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cqh" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/warehouse/breakroom) -"cqj" = ( -/obj/structure/surface/table, -/obj/item/handcuffs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"cqk" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"cql" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cqm" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/warden) -"cqn" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cqo" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cqq" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cqr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/chemistry) -"cqt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cqu" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cqa" = ( +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"cqn" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cqq" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) "cqv" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -37333,82 +10094,9 @@ }, /turf/open/floor/wood, /area/desert_dam/building/warehouse/breakroom) -"cqw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cqy" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"cqC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cqE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/welding, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqG" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) +"cqB" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) "cqH" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -37416,50 +10104,22 @@ }, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cqI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cqJ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) "cqK" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) +"cqP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) "cqQ" = ( /obj/structure/cargo_container/trijent/left/alt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cqS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_wilderness) "cqT" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cqU" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cra" = ( /obj/structure/platform{ dir = 8 @@ -37471,94 +10131,19 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"crc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"crd" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"crg" = ( -/obj/structure/surface/table, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"crh" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"cri" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "asteroidplating" +"cre" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) "crj" = ( /obj/structure/showcase{ icon_state = "broadcaster_send" }, /turf/open/floor/greengrid, /area/desert_dam/building/substation/west) -"crk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/west) -"crl" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"crm" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"crn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) "cro" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -37566,17 +10151,6 @@ }, /turf/open/floor/prison, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"crq" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"crr" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) "cru" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, @@ -37605,139 +10179,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/desert_dam/building/medical/lobby) -"crB" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"crC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/lobby) -"crD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/lobby) -"crE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"crF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"crG" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) "crH" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/lobby) -"crI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +"crJ" = ( +/turf/open/floor/prison/darkyellowcorners2/east, /area/desert_dam/interior/dam_interior/lobby) -"crK" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"crL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Medical Hallway" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"crM" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"crN" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"crO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"crP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"crQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/workshop) -"crR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"crS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/northwestern_tunnel) -"crV" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) "crW" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -37772,19 +10220,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cse" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/workshop) -"csf" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_civilian) "csg" = ( /obj/structure/platform{ dir = 4 @@ -37792,32 +10227,6 @@ /obj/effect/blocker/toxic_water, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/filtration_a) -"csh" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) -"csi" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"csj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"csl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/security/prison) "csm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37833,99 +10242,16 @@ }, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) -"cso" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"csp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"css" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"cst" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) "csu" = ( /obj/structure/stairs, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_telecoms) -"csw" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) "csx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) -"csy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" - }, -/area/desert_dam/building/bar/bar) -"csz" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"csA" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"csB" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"csC" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"csD" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) "csE" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, @@ -37948,413 +10274,35 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_medical) -"csI" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"csJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"csK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"csL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"csM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"csO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"csP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"csQ" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"csR" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"csS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"csT" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"csU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"csV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) "csW" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Execution" }, /turf/open/floor/prison, /area/desert_dam/building/security/execution_chamber) -"csX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) -"csY" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) -"csZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Workshop" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cta" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"ctb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctd" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cte" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"ctf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cth" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"cti" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ctj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctm" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"ctn" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cto" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"ctp" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"ctq" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cts" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"ctz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"ctA" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"ctB" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) -"ctD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/northeastern_tunnel) -"ctE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "ctF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ctH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ctK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"ctL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ctM" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ctN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ctO" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ctP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"ctQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"ctR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"ctS" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"ctT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"ctV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +"ctH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison{ +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ctO" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 4; - icon_state = "whitegreen" + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/west_wing_hallway) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) "ctW" = ( /turf/closed/wall, /area/desert_dam/building/medical/primary_storage) @@ -38365,42 +10313,10 @@ "ctY" = ( /turf/closed/wall, /area/desert_dam/building/medical/surgury_observation) -"ctZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Observation" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgury_observation) -"cua" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgury_observation) "cub" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/desert_dam/building/medical/east_wing_hallway) -"cuc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Hallway" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cud" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) "cue" = ( /turf/closed/wall, /area/desert_dam/building/medical/CMO) @@ -38414,148 +10330,6 @@ "cuh" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/north_wing_hallway) -"cuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cul" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cum" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cun" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuo" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cup" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cuq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cur" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cus" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cut" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cuw" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cux" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cuy" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cuz" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" @@ -38565,29 +10339,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cuA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) "cuB" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/desert_dam/building/substation/west) -"cuH" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cuI" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "cuJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -38597,14 +10352,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cuK" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "cuL" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -38636,163 +10383,9 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cuP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cuQ" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"cuR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_2, -/obj/item/clothing/head/soft/ferret, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"cuS" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_south) -"cuT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_south) -"cuU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cuV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/lobby) -"cuW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"cuX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cuY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cuZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cva" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cvb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cvc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cvd" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cve" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cvf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cvg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) "cvi" = ( /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"cvj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) "cvk" = ( /obj/structure/machinery/computer/crew, /turf/open/floor/wood, @@ -38801,26 +10394,6 @@ /obj/structure/machinery/computer/med_data, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"cvm" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvn" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cvo" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "cvp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -38828,12 +10401,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/bar_valley_dam) -"cvq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/desert_dam/building/bar/bar) "cvr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, @@ -38852,75 +10419,12 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) -"cvv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cvx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cvz" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvA" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cvB" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"cvD" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cvE" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/west) -"cvF" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) "cvG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cvH" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "cvI" = ( /obj/structure/desertdam/decals/road_stop{ dir = 8; @@ -38934,133 +10438,25 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cvK" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_south) -"cvL" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/desert_dam/exterior/river/riverside_south) "cvM" = ( /turf/closed/wall/r_wall, /area/desert_dam/building/medical/lobby) -"cvN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"cvO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) -"cvP" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) -"cvQ" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) "cvS" = ( /obj/structure/cargo_container/trijent/mid/alt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cvT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cvU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/primary_storage) -"cvV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cvW" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cvZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Observation" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgury_observation) -"cwb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +"cwa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"cwe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) "cwf" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -39077,45 +10473,11 @@ /obj/structure/cargo_container/trijent/right/alt, /turf/open/floor/prison, /area/desert_dam/building/warehouse/warehouse) -"cwk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/west) -"cwl" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cwm" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cwn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cwo" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cwp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) "cwq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7" @@ -39125,238 +10487,47 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/west_tunnel) -"cwr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/hanger) "cws" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cwu" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cww" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"cwx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/west) -"cwy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/west) -"cwz" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cwA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cwB" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cwC" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cwD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwG" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cwH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/lobby) -"cwJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) -"cwK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) -"cwL" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/lobby) -"cwM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/pillbottles, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cwN" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cwO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/primary_storage) -"cwP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"cwQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/desert_dam/building/medical/surgury_observation) -"cwS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cwT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwU" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cwV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cwA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cwD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper CMO's Officer" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwF" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/CMO) +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cwG" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) "cwX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39376,14 +10547,6 @@ }, /turf/open/floor/wood, /area/desert_dam/building/medical/CMO) -"cxb" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) "cxc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -39393,15 +10556,6 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/central_tunnel) -"cxe" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) "cxf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -39419,18 +10573,6 @@ "cxi" = ( /turf/open/floor/interior/tatami, /area/desert_dam/building/bar/bar) -"cxj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cxk" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_telecoms) "cxl" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -39439,15383 +10581,23235 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_civilian) -"cxm" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +"cxt" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cxn" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cxo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/substation/west) -"cxq" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cxE" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgury_observation) +"cxI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cxK" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"cxL" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"cxP" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cxT" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cyk" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/surgery_room_one) +"cyp" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/surgery_room_two) +"cyq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cyr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"cyv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cyz" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_medical) +"cyD" = ( +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cyM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"cyN" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cyO" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"cyP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered, +/area/desert_dam/exterior/river/riverside_central_north) +"cyQ" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"czf" = ( +/turf/closed/wall, +/area/desert_dam/building/substation/central) +"czg" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/substation/central) +"czj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_central_south) +"czu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"czv" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cxr" = ( +"czx" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"czO" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/office1) +"czP" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/office2) +"czQ" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"czV" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"cAa" = ( /obj/structure/platform{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cAd" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAx" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/substation/central) +"cAA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cAB" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/office1) +"cAG" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/office2) +"cAL" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cAM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cAT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"cAV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cAW" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cBx" = ( +/turf/open/floor/prison, +/area/desert_dam/building/substation/central) +"cBz" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBO" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBQ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cBU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/desert/dirt{ +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cBW" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cBY" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cBZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Waterway" + }, +/turf/open/floor/prison, +/area/desert_dam/exterior/valley/south_valley_dam) +"cCb" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"cCc" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/garage) +"cCd" = ( +/obj/structure/machinery/door/poddoor/shutters, +/turf/open/asphalt, +/area/desert_dam/building/medical/garage) +"cCe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Garage" + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cCf" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/emergency_room) +"cCg" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/emergency_room) +"cCj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"cCz" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/plating, +/area/desert_dam/building/substation/central) +"cCF" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/east_wing_hallway) +"cCH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cCI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ dir = 4; - icon_state = "desert_transition_corner1" + icon_state = "stop_decal5" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cDc" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cxt" = ( +"cDd" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"cDf" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cDs" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgery_room_one) +"cDu" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/surgery_room_two) +"cDy" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/office1) +"cDA" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/office2) +"cDN" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"cDY" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"cEa" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cEe" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_central_north) +"cEf" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cEl" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"cEs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cEt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cEG" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/treatment_room) +"cET" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEU" = ( +/obj/structure/flora/bush/desert/cactus, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEV" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_9" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cEY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFa" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"cFf" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxu" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"cFi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cFm" = ( +/obj/structure/barricade/wooden, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFn" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/emergency_room) +"cFC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cFD" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFF" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cxv" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cxw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFH" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" + icon_state = "road_edge_decal12" }, -/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxx" = ( -/obj/effect/decal/sand_overlay/sand1, +/area/desert_dam/exterior/valley/valley_civilian) +"cFJ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cxz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cxA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/obj/structure/desertdam/decals/road_stop{ dir = 8; - health = 80 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/lobby) -"cxB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whiteredcorner" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFK" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_11" }, -/area/desert_dam/building/medical/primary_storage) -"cxC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Workshop" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cFL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cFN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/workshop) -"cxD" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cFO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/medical/primary_storage) -"cxE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgury_observation) -"cxG" = ( -/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cGj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + dir = 5 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cxH" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cxI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cxJ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/substation/west) -"cxK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"cxL" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"cxN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/substation/west) -"cxP" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxQ" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cGx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_cargo) -"cxR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/desert_dam/building/substation/west) -"cxS" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +"cGH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_cargo) -"cxT" = ( -/obj/structure/flora/grass/desert/lightgrass_6, +"cGK" = ( +/obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cxU" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/area/desert_dam/exterior/valley/valley_civilian) +"cGL" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cGN" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar1"; + name = "Warehouse Shutters" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cxV" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cxW" = ( +/area/desert_dam/building/warehouse/warehouse) +"cGT" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, +/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) -"cxY" = ( -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +"cHB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/lobby) -"cxZ" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cHC" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/workshop) +"cHE" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHF" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/building/medical/lobby) -"cyb" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cHL" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/east_wing_hallway) +"cHM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/desert_dam/building/medical/west_wing_hallway) -"cyc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cHN" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/virology_wing) +"cHO" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cHV" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHW" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"cHX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cHY" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIb" = ( +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"cIc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/area/desert_dam/building/medical/west_wing_hallway) -"cyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cId" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIg" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"cIi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cIj" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"cIo" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar2"; + name = "Warehouse Shutters" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/medical/primary_storage) -"cye" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/building/warehouse/warehouse) +"cIv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cIz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIA" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/belt/medical/lifesaver/full, +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cIG" = ( +/turf/closed/wall, +/area/desert_dam/building/medical/treatment_room) +"cIK" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cIL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cIY" = ( +/obj/structure/machinery/door_control{ + id = "cargo_hangar3"; + name = "Warehouse Shutters" + }, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/building/warehouse/loading) +"cJc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ +/obj/structure/desertdam/decals/road_stop{ dir = 8; - icon_state = "sterile_white" + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/primary_storage) -"cyf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cJd" = ( +/turf/closed/wall, +/area/desert_dam/building/church) +"cJe" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/church) +"cJh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cJj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cyg" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +/area/desert_dam/exterior/valley/valley_cargo) +"cJl" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cJn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/surgery_room_one) -"cyh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cJq" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJw" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Garage" }, -/area/desert_dam/building/medical/surgery_room_one) -"cyk" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/garage) +"cJA" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/treatment_room) +"cJG" = ( /turf/closed/wall, -/area/desert_dam/building/medical/surgery_room_one) -"cyl" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +/area/desert_dam/building/medical/virology_isolation) +"cJO" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJS" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJU" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJV" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJX" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cJZ" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKa" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKb" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitered" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKd" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKe" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKf" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"cKk" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cKl" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/desert_dam/building/medical/surgery_room_two) -"cym" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"cyn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cKm" = ( +/obj/structure/morgue{ + dir = 8 }, -/area/desert_dam/building/medical/surgery_room_two) -"cyp" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/surgery_room_two) -"cyq" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cyr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"cKp" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"cyt" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/area/desert_dam/exterior/valley/valley_cargo) +"cKq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/building/mining/workshop) -"cyv" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cyw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"cyx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"cyB" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" + dir = 10 }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cyC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +"cKr" = ( +/obj/structure/fence, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"cyD" = ( -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cyE" = ( +"cKs" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cyG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cKC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cKL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cyH" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" +"cKM" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 1 }, -/area/desert_dam/building/security/armory) -"cyL" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cKP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cyN" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cyP" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, -/area/desert_dam/exterior/river/riverside_central_north) -"cyQ" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cyR" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ +"cKU" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"cyS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cKY" = ( +/turf/open/floor/coagulation/icon7_8, +/area/desert_dam/exterior/valley/valley_hydro) +"cLc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_medical) -"cyU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cyV" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLi" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/west_wing_hallway) -"cyW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Medical Storage" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cLj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cLk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/primary_storage) -"cyX" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"cLm" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/east_wing_hallway) +"cLu" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/virology_wing) +"cLx" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"cLE" = ( +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/primary_storage) -"cyY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/surgery_room_one) -"cyZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgery_room_one) -"cza" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"cLG" = ( +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/mining/workshop_foyer) -"czb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/surgery_room_two) -"czc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cLQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/surgery_room_two) -"czd" = ( -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/bonesetter, -/obj/item/tool/surgery/FixOVein, -/obj/item/stack/nanopaste, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/surgery_room_two) -"cze" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cMj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"czf" = ( -/turf/closed/wall, -/area/desert_dam/building/substation/central) -"czg" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/substation/central) -"czh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/mining/workshop_foyer) -"czj" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_central_south) -"czk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"czn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/area/desert_dam/building/mining/workshop_foyer) -"czq" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_cargo) -"czt" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/edge1{ +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cME" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"czv" = ( -/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cMF" = ( +/obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_cargo) -"czw" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" +"cMJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"czx" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czy" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czz" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ +"cMP" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/medical/virology_isolation) +"cNa" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"cNh" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/desertdam/decals/road_stop{ dir = 1; - icon_state = "desert_transition_corner1" + icon_state = "stop_decal5" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"czA" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_cargo) -"czB" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNi" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/area/desert_dam/exterior/river/riverside_south) -"czC" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNj" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"czD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"czE" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whiteredcorner" - }, -/area/desert_dam/building/medical/primary_storage) -"czF" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cNn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"cNo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"cNs" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNu" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNw" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/primary_storage) -"czG" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cNx" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/area/desert_dam/building/medical/surgery_room_one) -"czH" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cNy" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cNJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"cNP" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_7" }, -/area/desert_dam/building/medical/surgery_room_one) -"czI" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cNQ" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cNW" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"cOc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cOi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cOj" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cOy" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOA" = ( +/obj/structure/prop/dam/crane/damaged, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cOH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/medical/surgery_room_two) -"czJ" = ( -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel/manager, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/area/desert_dam/building/substation/southwest) +"cOV" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cOW" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPb" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_labs) +"cPn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"czL" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cPo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/substation/central) -"czM" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/substation/central) -"czN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cPq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"cPu" = ( +/obj/vehicle/train/cargo/engine, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/area/desert_dam/building/substation/central) -"czO" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/office1) -"czP" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/office2) -"czQ" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cPz" = ( +/obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"czR" = ( +"cPI" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"cPL" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"cPM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"cPO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cPW" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal2" }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" + }, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"czS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 +/area/desert_dam/exterior/landing_pad_two) +"cQa" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/desert_dam/exterior/river/riverside_central_south) -"czT" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQe" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"cQg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Bar" + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQj" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"czU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"cQk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cQv" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cQx" = ( +/turf/closed/wall/wood, +/area/desert_dam/building/bar/bar_restroom) +"cQy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cQB" = ( +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cQC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"cQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cQF" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cQH" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQK" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"czV" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_south) -"czW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"czX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ +"cQP" = ( +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cQT" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"czY" = ( -/obj/structure/platform{ +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cQZ" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"czZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRa" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cAa" = ( -/obj/structure/platform{ +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cAb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" - }, +/area/desert_dam/exterior/valley/valley_northwest) +"cRd" = ( +/obj/structure/disposalpipe/segment, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRm" = ( +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cRo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cAd" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cAe" = ( -/obj/structure/platform{ +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"cRs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"cAf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/exterior/river/riverside_south) -"cAg" = ( -/obj/structure/platform{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cRx" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"cAh" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"cAi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"cAj" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cRA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"cAk" = ( -/obj/structure/platform{ +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"cAl" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRF" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"cAm" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"cRH" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRI" = ( +/obj/structure/machinery/light, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/bar/bar) +"cRJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRM" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cRS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" }, -/area/desert_dam/exterior/river/riverside_south) -"cAn" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cRX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/primary_storage) -"cAo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"cRY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) +"cRZ" = ( +/obj/structure/window/framed/wood/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/bar/bar) +"cSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/medical/primary_storage) -"cAp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cSb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/surgery_room_one) -"cAq" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSf" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" + }, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"cSg" = ( +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_west"; + name = "Checkpoint Lockdown" }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cAr" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/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/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSo" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" }, -/turf/open/floor/prison{ +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/surgery_room_one) -"cAs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 + icon_state = "leftsecure"; + id = "brg" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/desert_dam/building/medical/surgery_room_two) -"cAt" = ( -/obj/structure/machinery/optable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSp" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"cSr" = ( +/turf/open/floor/prison, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/medical/surgery_room_two) -"cAu" = ( -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/bonegel, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cSC" = ( +/turf/closed/wall, +/area/desert_dam/exterior/valley/valley_civilian) +"cSF" = ( /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/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/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" }, -/turf/open/floor/prison{ +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - icon_state = "whitered" + icon_state = "leftsecure"; + id = "brg" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cSR" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"cTc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cTh" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cTi" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/substation/southwest) +"cTp" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_10" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cTu" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cTy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/medical/surgery_room_two) -"cAv" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"cTE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"cUb" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -30; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cUk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/substation/central) -"cAx" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cUl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor/prison, -/area/desert_dam/building/substation/central) -"cAA" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cAB" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/office1) -"cAD" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"cUo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/medical/office1) -"cAF" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" + dir = 4 }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cAG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/office2) -"cAI" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +"cUy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/building/medical/office2) -"cAJ" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cUz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/office2) -"cAK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"cUC" = ( +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cAL" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cAM" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAN" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"cUD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAO" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" +/area/desert_dam/building/warehouse/loading) +"cUK" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_7" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cUP" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAP" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"cUS" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"cUU" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cAQ" = ( -/obj/structure/stairs{ +/area/desert_dam/building/warehouse/loading) +"cUW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cAR" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cUX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"cVd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cAT" = ( +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"cVA" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand2/corner2{ - dir = 8 + icon_state = "road_edge_decal8" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cAU" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" - }, -/area/desert_dam/building/bar/bar) -"cAV" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"cVC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal10" }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cVR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Chemistry" }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"cVS" = ( +/obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cAW" = ( -/obj/structure/flora/bush/desert/cactus, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cAX" = ( -/obj/structure/platform{ - dir = 4 +"cVV" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"cWb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/river/riverside_south) -"cAY" = ( -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cWf" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"cWk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"cWq" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cWt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"cWw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/river/riverside_south) -"cAZ" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cWG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/river/riverside_south) -"cBa" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"cWI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"cWL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/security/prison) +"cXf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"cXh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/exterior/river/riverside_south) -"cBb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cXj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"cXr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"cXt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_medical) -"cBc" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cXw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_east"; - name = "\improper Storm Lock" - }, +/obj/structure/disposalpipe/segment, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cBd" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/area/desert_dam/exterior/valley/valley_civilian) +"cXx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cXy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"cXz" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"cXK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cXS" = ( /obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"cXV" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) +"cXX" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "whitegreencorner" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/lobby) -"cBe" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"cYh" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"cYi" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_south) +"cYj" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_4" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"cYm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"cYu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"cBf" = ( -/obj/effect/decal/medical_decals{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "triagedecalbottomleft" + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"cBg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered, +/area/desert_dam/exterior/river/riverside_east) +"cYx" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"cBh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cYJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"cYN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cYO" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "whitegreencorner" + icon_state = "pipe-j2" }, -/area/desert_dam/building/medical/west_wing_hallway) -"cBi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"cZb" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_cargo) +"cZd" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"cZh" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"cZj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"cZn" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "whitegreen" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/west_wing_hallway) -"cBj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"cBk" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/substation/northeast) +"cZt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/valley/valley_wilderness) +"cZu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/cafeteria) +"cZw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/building/medical/west_wing_hallway) -"cBl" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZA" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"cZB" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/area/desert_dam/building/warehouse/loading) +"cZD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/primary_storage) -"cBm" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -30; - start_charge = 0 + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZF" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"cZI" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"cZM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/surgery_room_one) -"cBo" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"cZP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cBp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/surgery_room_one) -"cBq" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cZQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"cZU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"cBs" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"cZV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dah" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"dam" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dao" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/cafeteria/backroom) +"dap" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cold_room) +"dar" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"cBt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"das" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dau" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"dax" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"cBu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/substation/central) -"cBx" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/substation/central) -"cBy" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/area/desert_dam/building/dorms/hallway_northwing) +"daD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/substation/central) -"cBz" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"daF" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics) +"daM" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, /turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cBB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/area/desert_dam/building/cafeteria/backroom) +"daN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"daO" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/cafeteria/cafeteria) +"daT" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/office1) -"cBC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"daW" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"daX" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/office1) -"cBD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/office1) -"cBF" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/office2) -"cBG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"daZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 5; + icon_state = "p_stair_full" }, -/area/desert_dam/building/medical/office2) -"cBH" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"dba" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"dbl" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"dbo" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics) +"dbu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics) +"dbw" = ( +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dbx" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office2) -"cBI" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cBJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cBL" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dbI" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbK" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cafeteria) +"dbL" = ( +/turf/closed/wall, +/area/desert_dam/building/cafeteria/loading) +"dbM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Delivery" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cBN" = ( +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dbN" = ( +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dbT" = ( +/obj/item/stool, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cBP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cBQ" = ( +"dbY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dbZ" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" + icon_state = "road_edge_decal7" }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cBS" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/area/desert_dam/exterior/valley/valley_cargo) +"dcd" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"dck" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/landing_pad_two) -"cBT" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dcx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cBU" = ( +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dcD" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 + dir = 4 }, /turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cBV" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/area/desert_dam/exterior/valley/valley_civilian) +"dcM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cBW" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +"dcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dcO" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cBX" = ( -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dcP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/bar/bar) -"cBY" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cBZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Waterway" - }, -/turf/open/floor/prison, -/area/desert_dam/exterior/valley/south_valley_dam) -"cCa" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cCb" = ( -/obj/structure/platform{ - dir = 4 +"dcR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"cCc" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/garage) -"cCd" = ( -/obj/structure/machinery/door/poddoor/shutters, /turf/open/asphalt, -/area/desert_dam/building/medical/garage) -"cCe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Garage" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dcS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cCf" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/emergency_room) -"cCg" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/emergency_room) -"cCh" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cCi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dcY" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dcZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"cCj" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dda" = ( +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dde" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/desert_dam/building/medical/emergency_room) -"cCk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Emergency Room" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"ddg" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"ddm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cCl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cCm" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/cafeteria) +"ddn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/primary_storage) -"cCn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/primary_storage) -"cCo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitered" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/medical/primary_storage) -"cCp" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_one) -"cCq" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whiteredcorner" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_one) -"cCr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"ddv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"ddx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"ddy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ddJ" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "sterile_white" + id = "cargo_container" }, -/area/desert_dam/building/medical/surgery_room_one) -"cCs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/surgery_room_one) -"cCt" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/surgery_room_two) -"cCu" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddK" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "whiteredcorner" + id = "cargo_storage" }, -/area/desert_dam/building/medical/surgery_room_two) -"cCv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/surgery_room_two) -"cCw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/surgery_room_two) -"cCx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddL" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "darkyellow2" + id = "cargo_storage" }, -/area/desert_dam/building/substation/central) -"cCy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/plating{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/warehouse) +"ddM" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "warnplate" + id = "cargo_storage" }, -/area/desert_dam/building/substation/central) -"cCz" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/structure/plasticflaps, /turf/open/floor/plating, -/area/desert_dam/building/substation/central) -"cCA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/area/desert_dam/building/warehouse/warehouse) +"ddQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/desert_dam/building/medical/office1) -"cCC" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddR" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddS" = ( +/obj/structure/machinery/botany/editor, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddT" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"ddU" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ddV" = ( +/obj/structure/machinery/conveyor{ dir = 4; - pixel_x = 28; - start_charge = 0 + icon_state = "conveyor-1" }, -/turf/open/floor/prison{ +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"ddW" = ( +/obj/structure/machinery/conveyor{ dir = 4; - icon_state = "whitered" + icon_state = "conveyor-1" + }, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dea" = ( +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"deb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dec" = ( +/obj/structure/flora/bush/desert/cactus/multiple{ + icon_state = "cacti_12" + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"ded" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"deh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dem" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"den" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"deo" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/desert_dam/building/medical/office1) -"cCE" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/office2) -"cCF" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/east_wing_hallway) -"cCG" = ( -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"der" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cCH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cCI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"dex" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"deJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"deK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"deM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) -"cCJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +"deT" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/hanger) +"deZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"dfb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dfc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cCL" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dfo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cCM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/plating, +/area/desert_dam/building/warehouse/loading) +"dft" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cCO" = ( -/obj/structure/stairs{ +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dfG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/warehouse) +"dfH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/loading) +"dfI" = ( +/turf/open/floor/prison, +/area/desert_dam/building/warehouse/loading) +"dfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dfT" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dfU" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"dfV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cCP" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"dge" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/dam_interior/CE_office) -"cCQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/CE_office) -"cCR" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dgf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dgh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/river/riverside_central_north) -"cCS" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/river/riverside_central_north) -"cCT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dgj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"dgm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cCU" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cCW" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgo" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/loading) +"dgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/mining/workshop_foyer) -"cCY" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/rock) -"cCZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/landing_pad_two) -"cDb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/exterior/landing_pad_two) -"cDc" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cDd" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"cDe" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dgD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dgF" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dgH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/garage) -"cDf" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cDg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dgI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/plating{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "warnplate" - }, -/area/desert_dam/building/medical/garage) -"cDh" = ( -/turf/open/floor{ - icon_state = "white" + icon_state = "pipe-j2" }, -/area/desert_dam/building/medical/garage) -"cDi" = ( -/obj/structure/pipes/portables_connector{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dgM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dgN" = ( +/obj/structure/machinery/door_control{ + id = "dam_stormlock_north2"; + name = "Storm Shutter Lockdown" }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/area/desert_dam/interior/dam_interior/south_tunnel) +"dgO" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dgP" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"dgT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/medical/emergency_room) -"cDj" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dgU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dgW" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/emergency_room) -"cDk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/CE_office) -"cDl" = ( -/obj/structure/machinery/cryo_cell, -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"dgZ" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"dhg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhh" = ( +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/emergency_room) -"cDm" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"dhn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cDn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"dhs" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"dhA" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/purification) +"dhC" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"dhK" = ( +/obj/structure/prop/dam/drill, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"dhQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"dhV" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"dhZ" = ( +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"dib" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dic" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/medical/emergency_room) -"cDo" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/structure/machinery/light{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"did" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cDp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"die" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/lobby) +"dil" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/garage) +"dim" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/hallway_northwing) +"din" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dio" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"dip" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"diq" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/equipment) +"dir" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"dit" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"diL" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"diM" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cDq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"diN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/emergency_room) -"cDr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"diR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/medical/emergency_room) -"cDs" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgery_room_one) -"cDt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Operating Theatre 1" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"djf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_one) -"cDu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/surgery_room_two) -"cDv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Operating Theatre 2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"djg" = ( +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"djh" = ( +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"djk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/surgery_room_two) -"cDy" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/office1) -"cDz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Examination Room" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"djl" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"djm" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"dju" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"djx" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"djz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"djA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/office1) -"cDA" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/office2) -"cDB" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"djC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"djH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 1; - name = "\improper Examination Room" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" + icon_state = "pipe-j2" }, -/area/desert_dam/building/medical/office2) -"cDC" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"djV" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cDD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"djW" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"djZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_central_north) +"dke" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cDE" = ( -/obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cDF" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dki" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cDK" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkl" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/exterior/landing_pad_two) -"cDL" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/exterior/landing_pad_two) -"cDM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_two) -"cDN" = ( -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cDP" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_east) -"cDQ" = ( -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dko" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dkq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"dkr" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"dks" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/window/reinforced{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"cDR" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"dkw" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"dkx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/area/desert_dam/exterior/river/riverside_east) -"cDU" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dky" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"dkK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dkM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dkO" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/CE_office) -"cDV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/landing_pad_two) -"cDX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"cDY" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"cEa" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"dkZ" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dlb" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + icon_state = "road_edge_decal10" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cEb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"dlc" = ( +/obj/structure/prop/dam/large_boulder{ + icon_state = "boulder_large1" }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"dlf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"dlk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"dlu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_wing) +"dlv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Floodgate Controlroom" }, -/area/desert_dam/building/bar/bar) -"cEc" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dlw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/landing_pad_one) -"cEd" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cEe" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"dlB" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/loading) +"dlJ" = ( /obj/effect/blocker/toxic_water/Group_2, +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"cEf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cEg" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/desert_dam/building/medical/garage) -"cEh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/area/desert_dam/exterior/river/riverside_east) +"dlL" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/garage) -"cEi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"dlM" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dmq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"dmz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/garage) -"cEj" = ( -/obj/structure/pipes/portables_connector{ +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_east) +"dmA" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/mining/workshop) +"dmD" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/standard/cap/hidden{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"dmJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/emergency_room) -"cEk" = ( -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dmK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/emergency_room) -"cEl" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dna" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/western_dam_cave) -"cEn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dnb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEo" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/obj/structure/desertdam/decals/road_stop, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"dnj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_two) +"dnm" = ( +/obj/structure/prop/dam/boulder/boulder3, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"dnB" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dnC" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"cEp" = ( -/obj/structure/pipes/standard/manifold/hidden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dnD" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_south) +"dnG" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"dnL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"dof" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"don" = ( +/turf/open/floor/filtrationside/southeast, +/area/desert_dam/exterior/valley/valley_mining) +"doo" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"cEq" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"doE" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"doH" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/structure/pipes/standard/simple/hidden{ - dir = 9 +/area/desert_dam/building/water_treatment_one/hallway) +"doJ" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/armory) +"doL" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/area/desert_dam/building/water_treatment_one/purification) +"doN" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"doO" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"doS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"doV" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cEr" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"doW" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_wing) +"dpd" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"dpj" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"dpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"cEs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cEt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cEu" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpx" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cEv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpy" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dpB" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/medical/treatment_room) -"cEz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/desert_dam/building/water_treatment_one/control_room) +"dpC" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"dpD" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"cEA" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"dpE" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_south) +"dpH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/treatment_room) -"cEB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"cEC" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"cED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpJ" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/treatment_room) -"cEE" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/treatment_room) -"cEF" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/treatment_room) -"cEG" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/treatment_room) -"cEH" = ( -/obj/effect/decal/medical_decals{ +/obj/structure/desertdam/decals/road_stop{ dir = 4; - icon_state = "triagedecalbottomleft" + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpL" = ( +/obj/structure/desertdam/decals/road_stop, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dpR" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dpT" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"dpX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"dpY" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"dqd" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"dqf" = ( +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqh" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dqi" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/building/water_treatment_one/lobby) +"dqm" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/area/desert_dam/building/water_treatment_one/lobby) +"dqn" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dqo" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dqv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"dqA" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"dqC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"dqJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"dqR" = ( +/obj/structure/flora/pottedplant, +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEO" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqT" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqV" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dqW" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/lobby) +"drh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cEP" = ( -/obj/structure/machinery/light, -/obj/effect/decal/sand_overlay/sand2, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"drF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"cEQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"drK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cES" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"drL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/exterior/landing_pad_two) -"cET" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEU" = ( -/obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEV" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_9" +/area/desert_dam/exterior/valley/valley_cargo) +"drO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEW" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +/area/desert_dam/exterior/valley/valley_cargo) +"drT" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"cEX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"drU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cEY" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"drV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cEZ" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dsc" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"dsg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_central_south) +"dsy" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"dsE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dsI" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) +"dsJ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/exterior/landing_pad_two) -"cFa" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_two) -"cFb" = ( -/obj/structure/machinery/landinglight/ds2{ +/area/desert_dam/building/water_treatment_one/garage) +"dsM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dsR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dte" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/landing_pad_two) -"cFc" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"cFd" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"dto" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dtp" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dtr" = ( +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dtz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dtD" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"dtV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"duc" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"dud" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"cFe" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"dui" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"dul" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"dus" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"duv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_two) -"cFf" = ( +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"duy" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"cFg" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/garage) -"cFh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"duC" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_northwing) +"duU" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"duV" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"duW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/medical/garage) -"cFi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dvi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cFj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"cFk" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"dvo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dvt" = ( +/obj/structure/machinery/computer/area_atmos, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dvy" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/CE_office) -"cFl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_south) +"dvY" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"dvZ" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/area/desert_dam/building/medical/emergency_room) -"cFm" = ( -/obj/structure/barricade/wooden, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFn" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/emergency_room) -"cFp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cFq" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cFr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/CE_office) -"cFs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/exterior/valley/valley_northwest) +"dwi" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"dwp" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"dws" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"dwv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"dwy" = ( +/obj/structure/machinery/computer/turbine_computer, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dwD" = ( +/turf/open/floor/filtrationside, +/area/desert_dam/exterior/valley/valley_hydro) +"dwG" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 6 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"dwH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cFt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwI" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dwK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/bar/bar) -"cFu" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"dwM" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"dwP" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"dxe" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dxo" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"dxB" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"dxD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/area/desert_dam/interior/dam_interior/CE_office) -"cFv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"dxE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/desert_dam/building/mining/workshop) +"dxH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"dxK" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dxO" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/CE_office) -"cFw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper CE Office" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dxQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"dxX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dxY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dyb" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/interior/dam_interior/CE_office) -"cFx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/desert_dam/building/water_treatment_one/breakroom) +"dyj" = ( +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dyp" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dyx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"dyB" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"dyF" = ( +/turf/open/floor/carpet/edge/northeast, +/area/desert_dam/building/administration/meetingrooom) +"dyI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"dyJ" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"dyP" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"dyQ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"dzd" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dzh" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_2"; + layer = 2 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dzr" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, +/area/desert_dam/exterior/river_mouth/southern) +"dzs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"dzv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cFD" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFE" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dzE" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cFF" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"dzI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"dzM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"dzN" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_backup) +"dzR" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"cFJ" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"dzU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFK" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_11" +/area/desert_dam/exterior/valley/valley_labs) +"dAh" = ( +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"dAl" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/exterior/valley/valley_hydro) +"dAo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river_mouth/southern) +"dAy" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cFN" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"dAA" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/filtration_a) +"dAK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dAN" = ( +/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cFO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cFP" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/item/clothing/glasses/welding, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"dAW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"dAZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"cFR" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" +"dBh" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"cFS" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dBk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/landing_pad_two) -"cFT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/garage) -"cFV" = ( -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"dBm" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/break_room) +"dBo" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/hallway_westwing) +"dBp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dBr" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_westwing) +"dBy" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/restroom) +"dBB" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"dBE" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/building/substation/west) +"dBK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dBP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dBQ" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"dCb" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dCm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_northwing) +"dCw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreen/northeast, /area/desert_dam/building/medical/emergency_room) -"cFY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +"dCx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"dCz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cFZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dCB" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"dCL" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/water_treatment_one/equipment) +"dDF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cGa" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"dEa" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_two) -"cGb" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"dEn" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dEo" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGe" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/obj/structure/platform{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dEB" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cGf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"dEW" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dFc" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_south) +"dFg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dFi" = ( +/obj/structure/catwalk, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/restroom) +"dFn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/building/medical/emergency_room) -"cGg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dFo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dFH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"dFP" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/treatment_room) -"cGh" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dFQ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGi" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dFR" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"dGj" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 5 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"dGu" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"dGv" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dGw" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dGA" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dGI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"dGK" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"dGP" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"dGR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"dGU" = ( +/obj/docking_port/stationary/marine_dropship/lz1, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_one) +"dHb" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"dHc" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/filtration_a) +"dHe" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river_mouth/southern) +"dHg" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dHh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lab Maintenance" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGm" = ( +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dHk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dHA" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cGp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_south) +"dHC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/stack/yautja_rope, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"dHK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"dHM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"dHN" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dHO" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dIb" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"dIg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cGq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"dIi" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dIk" = ( +/turf/closed/wall, +/area/desert_dam/building/dorms/pool) +"dIl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/desert_dam/building/dorms/pool) +"dIs" = ( +/obj/structure/surface/table, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dIv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"dIE" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"dII" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cGr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river_mouth/southern) +"dIZ" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"dJl" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cGs" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cGt" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"dJr" = ( +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"dJv" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/south_valley_dam) +"dJR" = ( +/obj/structure/lz_sign/dam_sign/damaged, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"dJT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dKa" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dKe" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"dKf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"dKg" = ( +/obj/structure/prop/dam/van/damaged, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"dKh" = ( +/obj/structure/prop/dam/van, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_northwest) +"dKi" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/administration/overseer_office) +"dKj" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cGu" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"dKr" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"dKH" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_two) -"cGv" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGw" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt{ - icon_state = "rock1" +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"dKQ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river_mouth/southern) +"dKR" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river_mouth/southern) +"dLa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cGx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cGy" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cGz" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/workshop) -"cGA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/CE_office) -"cGB" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cGC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/central_tunnel) +"dLc" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/substation/northwest) +"dLi" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cGD" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dLk" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner, +/area/desert_dam/exterior/river/riverside_east) +"dLm" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"dLo" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cGF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGG" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" + dir = 8 }, -/area/desert_dam/exterior/landing_pad_two) -"cGH" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"dLq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_south) +"dLu" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dLy" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cGI" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"dLC" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLF" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dLI" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLJ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_central_south) +"dLK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_central_south) +"dLM" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_central_south) +"dLN" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLO" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) +"dLR" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLS" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cGK" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cGL" = ( -/obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cGM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGN" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar1"; - name = "Warehouse Shutters" - }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/warehouse) -"cGO" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cGP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/desert_dam/building/security/armory) -"cGQ" = ( -/obj/structure/machinery/landinglight/ds2{ +"dLT" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/landing_pad_two) -"cGR" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cGS" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/landing_pad_two) -"cGT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLU" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/exterior/river/riverside_east) +"dLV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"dLW" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_east) +"dLX" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) +"dMf" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"cGU" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal3" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/garage) -"cGV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/garage) -"cGW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Emergency Room" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/medical/emergency_room) -"cGX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cGY" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cGZ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cHa" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cHb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Surgery" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cHc" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cHd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cHe" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cHf" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/treatment_room) -"cHg" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/treatment_room) -"cHh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/valley/valley_mining) +"dMi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, /area/desert_dam/building/medical/east_wing_hallway) -"cHi" = ( +"dMq" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) +"dMu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHj" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHl" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cHn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/landing_pad_two) -"cHo" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/desert_dam/building/warehouse/warehouse) -"cHp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"dMH" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/security/lobby) +"dMJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/area/desert_dam/building/warehouse/warehouse) -"cHr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/security/armory) -"cHs" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"dMN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"cHt" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dMV" = ( +/turf/closed/wall/r_wall/bunker{ + name = "reinforced metal wall" }, -/area/desert_dam/building/warehouse/warehouse) -"cHu" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/building/substation/southwest) +"dMW" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"dMX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dMZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"dNa" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cHv" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"dNd" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"dNr" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"dNs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/water_treatment_one/purification) +"dNO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cHx" = ( -/turf/open/floor/plating{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "warnplate" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/garage) -"cHy" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"dNR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dNS" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"dNT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dNU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dNX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOe" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dOf" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/medical/garage) -"cHz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/control_room) +"dOg" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/medical/emergency_room) -"cHA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/hallway) +"dOh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"cHB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOk" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/prop/dam/truck/damaged, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cHC" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/desert_dam/building/water_treatment_one/equipment) +"dOp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/workshop) -"cHE" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHF" = ( +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOr" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOw" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 + dir = 9 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/desert_dam/exterior/valley/valley_civilian) +"dOC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOD" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOE" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/medical/ointment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cHH" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"cHI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/desert_dam/building/medical/treatment_room) -"cHJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/treatment_room) -"cHK" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOM" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOO" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/medical/treatment_room) -"cHL" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/east_wing_hallway) -"cHM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOV" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dOY" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cHN" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/virology_wing) -"cHO" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cHP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"dPe" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"cHQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"cHR" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 1" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/medical/break_room) +"dPf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHT" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dPR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/warehouse/warehouse) -"cHU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Patient Room 3" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dPY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dPZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"dQS" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cHV" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"dQU" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"dQV" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"dRx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cHY" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/staffroom) +"dTl" = ( +/obj/structure/window/framed/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/medical/virology_isolation) +"dTs" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"dTx" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIa" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 1 +/area/desert_dam/exterior/valley/valley_civilian) +"dTy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) +"dTF" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_isolation) +"dTH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/exterior/river/riverside_east) -"cIc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 +/turf/open/asphalt, +/area/desert_dam/exterior/river/riverside_south) +"dTO" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"dTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"dUd" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/desert_dam/building/cafeteria/cafeteria) +"dUO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cId" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIe" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIg" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"cIh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"dUX" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"dVb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cIi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"dVc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_cargo) -"cIk" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +"dVj" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"cIl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/desert_dam/building/warehouse/warehouse) -"cIo" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar2"; - name = "Warehouse Shutters" - }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/warehouse) -"cIp" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +"dVk" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/warehouse/loading) -"cIq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/warehouse/loading) -"cIr" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"cIt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVq" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"dVs" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/building/warehouse/loading) -"cIu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"dVv" = ( /obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/desert_dam/building/warehouse/loading) -"cIv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dVz" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_2"; + name = "Warehouse Shutters" }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cIx" = ( -/obj/structure/largecrate, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/warehouse/loading) -"cIy" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/desert_dam/building/water_treatment_one/garage) +"dVA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/warehouse/loading) -"cIz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/belt/medical/lifesaver/full, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cIC" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstriping" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - icon_state = "white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/area/desert_dam/building/medical/garage) -"cID" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/medical/emergency_room) -"cIE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/emergency_room) -"cIF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Office" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/medical/treatment_room) -"cIG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/treatment_room) -"cIH" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dVP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dWb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"dWf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/treatment_room) -"cII" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/treatment_room) -"cIJ" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dWg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/treatment_room) -"cIK" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cIL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cIN" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dWh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/medical/virology_wing) -"cIO" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/virology_wing) -"cIP" = ( -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/water_treatment_one/garage) +"dWi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"dWr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"dWu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"cIQ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" + name = "\improper Security Checkpoint" }, -/area/desert_dam/building/medical/virology_wing) -"cIS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"dWz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/area/desert_dam/building/medical/virology_wing) -"cIT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"dWK" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWL" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"dWU" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"dWV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/medical/virology_wing) -"cIU" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/virology_wing) -"cIV" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dWW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/medical/east_wing_hallway) -"cIW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dWY" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cIX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/prison{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_northwest) +"dWZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXa" = ( +/obj/structure/desertdam/decals/road_stop{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"cIY" = ( -/obj/structure/machinery/door_control{ - id = "cargo_hangar3"; - name = "Warehouse Shutters" + icon_state = "stop_decal5" }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/warehouse/loading) -"cIZ" = ( -/obj/structure/machinery/door/poddoor/almayer{ +/obj/structure/desertdam/decals/road_stop{ dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cJb" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" - }, +/area/desert_dam/exterior/valley/valley_civilian) +"dXc" = ( +/obj/structure/desertdam/decals/road_stop, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"dXe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cJc" = ( +/area/desert_dam/exterior/valley/valley_civilian) +"dXf" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"dXm" = ( /obj/structure/desertdam/decals/road_stop{ - dir = 8; icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cJd" = ( -/turf/closed/wall, -/area/desert_dam/building/church) -"cJe" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/church) -"cJg" = ( -/turf/open/floor{ - icon_state = "dark" +/area/desert_dam/exterior/valley/valley_civilian) +"dXn" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/church) -"cJh" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cJj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/exterior/valley/valley_civilian) +"dXo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cJk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/church) -"cJl" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) -"cJm" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cJn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"dXp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, /obj/structure/desertdam/decals/road_stop{ - dir = 4; + dir = 8; icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cJo" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJp" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +/area/desert_dam/exterior/valley/valley_civilian) +"dXx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories" }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJq" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXz" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/desert_dam/building/security/armory) -"cJs" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXA" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/building/security/armory) -"cJt" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/security/armory) -"cJv" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/security/armory) -"cJw" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJx" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cJz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Garage" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/garage) -"cJA" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/treatment_room) -"cJB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dXQ" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"dYb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dYe" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"dYk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dYs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"dYt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"dYE" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"dYK" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"dYM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dZj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"cJC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"dZl" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"dZm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dZn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"cJD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dZp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"cJE" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"dZr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/treatment_room) -"cJF" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"dZw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/telecomm/lz1_south) +"dZD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"dZF" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"dZT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ead" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"eaj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"eak" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"eal" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"eao" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/hanger) +"eav" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"eaB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"eaK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cheesie, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"eaV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"cJG" = ( -/turf/closed/wall, -/area/desert_dam/building/medical/virology_isolation) -"cJH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"eaW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cJI" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"ebb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"ebc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"ebs" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/building/medical/virology_wing) -"cJJ" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/area/desert_dam/exterior/rock) +"ebt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"cJK" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"ebw" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ebx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cJL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"eby" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cJM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"ebA" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"cJN" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"ebB" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"ebC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"ebD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"ebN" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"cJO" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJP" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"ebP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJQ" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"ebQ" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" + }, +/area/desert_dam/interior/dam_interior/control_room) +"ebZ" = ( +/obj/structure/window/framed/hangar/reinforced, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/area/desert_dam/interior/dam_interior/garage) +"ecy" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"ecA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cJS" = ( -/obj/structure/cargo_container/hd/left, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"ecF" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"ecQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cJU" = ( -/obj/structure/cargo_container/hd/mid, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJV" = ( -/obj/structure/cargo_container/hd/right, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJW" = ( -/obj/effect/landmark/monkey_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ecW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"edg" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"edo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"eds" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/northeast) +"edw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"edC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"edO" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJX" = ( -/obj/effect/decal/cleanable/liquid_fuel, +/area/desert_dam/building/water_treatment_one/hallway) +"edW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"edY" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cJZ" = ( -/obj/structure/cargo_container/wy/left, +/area/desert_dam/building/water_treatment_one/purification) +"eee" = ( +/obj/structure/window/framed/hangar, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKa" = ( -/obj/structure/cargo_container/wy/mid, +/area/desert_dam/building/water_treatment_one/hallway) +"eei" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/desert_dam/exterior/river_mouth/southern) +"eeo" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKb" = ( -/obj/structure/cargo_container/wy/right, +/area/desert_dam/building/water_treatment_one/control_room) +"eeq" = ( +/obj/structure/window/framed/hangar, /turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/area/desert_dam/building/water_treatment_one/breakroom) +"ees" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKd" = ( -/obj/effect/decal/cleanable/liquid_fuel, +/area/desert_dam/exterior/river/riverside_south) +"eeJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 3" + }, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"eeK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKe" = ( -/obj/structure/cargo_container/trijent/left/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKf" = ( -/obj/structure/cargo_container/trijent/mid/alt, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKg" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"eeM" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_2"; + name = "Warehouse Shutters" }, +/turf/closed/wall, +/area/desert_dam/building/cafeteria/loading) +"eeR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" + }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cKh" = ( -/obj/structure/cargo_container/trijent/right/alt, -/turf/open/floor/plating{ +/area/desert_dam/building/cafeteria/loading) +"eeS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "warnplate" + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKi" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"eeT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "warehouse_dam_2"; + name = "\improper Warehouse Shutters" }, -/area/desert_dam/building/security/armory) -"cKk" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cKl" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/asphalt, +/area/desert_dam/building/cafeteria/loading) +"eeV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cKn" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" }, -/area/desert_dam/exterior/telecomm/lz2_containers) -"cKp" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eeX" = ( +/obj/structure/machinery/door_control{ + id = "warehouse_dam_3"; + name = "Warehouse Shutters" + }, +/turf/closed/wall, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"eft" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"efz" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"efW" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"egc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ege" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"egx" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"egA" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"egK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_cargo) -"cKq" = ( +"egN" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"ehb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"ehf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"ehg" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" + icon_state = "road_edge_decal3" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ehn" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_two) +"ehz" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKr" = ( -/obj/structure/fence, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"cKu" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"ehP" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"ehS" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"ehX" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/machinery/dispersal_initiator{ + id = "filter 1" }, -/area/desert_dam/building/medical/treatment_room) -"cKv" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/gm/river/desert/shallow, +/area/desert_dam/building/water_treatment_one/purification) +"eie" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/hanger) +"eii" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"eim" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_one/purification) +"eiu" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"eiD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eiJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/treatment_room) -"cKw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"eiQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"ejh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"ejr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/blue{ + pixel_x = -3 }, -/area/desert_dam/building/medical/treatment_room) -"cKx" = ( -/turf/open/floor/prison{ - dir = 10 +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 3 }, -/area/desert_dam/building/medical/virology_isolation) -"cKy" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10 +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ejs" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/area/desert_dam/building/medical/virology_isolation) -"cKC" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"ejz" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ejZ" = ( +/turf/open/floor/coagulation/icon7_8, +/area/desert_dam/exterior/valley/valley_mining) +"ekc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 2" }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cKD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"ekh" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/southwest) +"ekj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cKE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"ekl" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"eko" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cKF" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/virology_wing) -"cKG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"ekv" = ( +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"ekD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"ekJ" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "distribution" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"ekL" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cKH" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ekR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"cKI" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"els" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/control_room) +"elR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cKJ" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"elT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"emI" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKK" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"emK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) +"emW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"enb" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/surgery_room_one) +"enc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/treatment_room) +"enf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"ent" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"enu" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"enA" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"enL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"enT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"enY" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_one) +"eol" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_northwest) +"eon" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKM" = ( -/obj/structure/prop/dam/crane/cargo{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"eox" = ( +/obj/structure/bed, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"eoB" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"eoR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eoZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"epb" = ( +/turf/open/floor/coagulation/icon8_7, +/area/desert_dam/exterior/valley/valley_hydro) +"epg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cKO" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"eps" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"epv" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"epB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"epG" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/telecomm/lz1_south) +"epK" = ( /obj/structure/stairs, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKQ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"eqc" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/east_caves) +"eqg" = ( +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"eqo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"eqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"eqD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKR" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"eqI" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" + dir = 1 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"eqO" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"eqQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eqU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"eru" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"erx" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"erI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"erL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cKV" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"esc" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ese" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"esh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Decontamination" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cKX" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"eso" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/building/security/deathrow) -"cLa" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"est" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cLc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"esy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"esD" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"esG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLe" = ( -/obj/structure/machinery/landinglight/ds2{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"esI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"esK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"etf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"etk" = ( +/obj/effect/landmark/static_comms/net_one, +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/telecomm/lz1_valley) +"etm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/area/desert_dam/exterior/landing_pad_two) -"cLh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ett" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"etz" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/area/desert_dam/exterior/river/riverside_south) -"cLi" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"etC" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cLj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cLk" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"cLl" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"etP" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"etZ" = ( +/obj/structure/machinery/chem_master, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"eut" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_mining) +"euz" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"euN" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/lobby) +"euX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Armoury" }, -/area/desert_dam/building/medical/treatment_room) -"cLm" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"evb" = ( /obj/structure/surface/table, -/turf/open/floor/plating, -/area/desert_dam/building/medical/east_wing_hallway) -"cLo" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"evg" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cLp" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"evl" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/purification) +"evt" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"evE" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"evL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cLq" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"ewd" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"ewg" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/building/medical/virology_wing) -"cLs" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"ewp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cLt" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"ewz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/building/medical/virology_wing) -"cLu" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/virology_wing) -"cLv" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" +/obj/item/weapon/broken_bottle, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"ewL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"ewQ" = ( +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"ewY" = ( +/obj/structure/machinery/light, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"exa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Lobby" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cLG" = ( -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"exh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLK" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"exk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"exm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLL" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/loading) +"ext" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"exz" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"exU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 2" }, -/area/desert_dam/exterior/landing_pad_two) -"cLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"eyq" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cLP" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"eyu" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cLQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"eyw" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"eyB" = ( +/obj/structure/surface/table, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"eyC" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"eyF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"eyL" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"eyM" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/darkbrown2/north, /area/desert_dam/building/warehouse/warehouse) -"cLR" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"cLS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"cLT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"cLU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"cLV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"cLX" = ( +"eyX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hanger) +"ezf" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ezg" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"ezm" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"ezv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cLY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"ezL" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ezN" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"cMa" = ( -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"ezQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Administration Hallway" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ezS" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"eAe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cMb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"eAq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"cMc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cMd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"eAC" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"eAL" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"eAN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cMe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cMf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"eBb" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cMi" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) +"eBc" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached17" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cMj" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"eBe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"eBi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"eBn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"eBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMl" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cMm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMo" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cMq" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"eBq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"eBC" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"eBK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/landing_pad_two) -"cMw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"eBM" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"eBV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_labs) +"eCf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"eCt" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"eCA" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMB" = ( -/obj/structure/machinery/door/poddoor/almayer{ dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eCK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cMC" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/desert_dam/exterior/landing_pad_two) -"cMD" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/area/desert_dam/building/water_treatment_one/garage) +"eCR" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northwest) +"eCS" = ( +/obj/structure/surface/rack, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/obj/item/stack/sheet/plasteel{ + amount = 15 }, -/area/desert_dam/exterior/landing_pad_two) -"cME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"eDf" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"eDh" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"eDk" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eDC" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cMF" = ( -/obj/structure/flora/grass/desert/heavygrass_3, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cMI" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/north_valley_dam) -"cMJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cML" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, /area/desert_dam/exterior/landing_pad_two) -"cMM" = ( -/obj/effect/decal/sand_overlay/sand1{ +"eDF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"eDQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"eEr" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_civilian) +"eEs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"eEA" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"eED" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cMN" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 +"eEI" = ( +/obj/structure/machinery/computer/area_atmos, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"eFb" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"eFf" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"eFm" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_medical) -"cMO" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"eFq" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cMP" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/medical/virology_isolation) -"cMQ" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) -"cMR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +"eFr" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" }, -/area/desert_dam/building/medical/virology_isolation) -"cMS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"eFB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/telecomm/lz1_south) -"cMT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"eFM" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"cMU" = ( -/obj/structure/surface/table, -/obj/item/tool/weedkiller/D24, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"eFY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office2) +"eGe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"eGq" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/armory) +"eGH" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river_mouth/southern) +"eGZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"eHb" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"eHk" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"eHp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, -/area/desert_dam/building/medical/virology_isolation) -"cMV" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"eHt" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"eHO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"eHV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"eHY" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"eIx" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"eIA" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"eIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"eJh" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"eJl" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"eJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/virology_isolation) -"cMW" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"eJx" = ( /obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/obj/structure/disposalpipe/segment{ +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"eJL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"eJM" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/valley/valley_labs) +"eJR" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_civilian) +"eJY" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eKn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"eKz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"eKH" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 8 }, -/area/desert_dam/building/medical/virology_isolation) -"cMX" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"eLb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"eLe" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"eLf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/area/desert_dam/building/medical/virology_isolation) -"cMY" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"eLk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"eLA" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"eLF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, -/area/desert_dam/building/medical/virology_isolation) -"cMZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"eLH" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"cNa" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"cNb" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"eLU" = ( +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"eMf" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"eMq" = ( +/turf/open/floor/prison/darkbrowncorners3/east, +/area/desert_dam/interior/dam_interior/hanger) +"eMw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"eMx" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"eMI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"eMM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"eMP" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"eNm" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, /area/desert_dam/exterior/landing_pad_two) -"cNc" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"eNy" = ( +/obj/structure/filtration/coagulation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"eNC" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"eNH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cNd" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"eNN" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"eNR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"eNZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/virology_wing) -"cNe" = ( +"eOb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep/transition{ - dir = 9 +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_backup) +"eOe" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"eOf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/desert_dam/exterior/telecomm/lz1_south) -"cNf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/chapel/north, +/area/desert_dam/building/church) +"eOl" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"eOm" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cNg" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"eOM" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"eOP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Courtroom" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"eOQ" = ( +/turf/open/floor/warning/northwest, +/area/desert_dam/interior/dam_interior/engine_room) +"eOT" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"eOW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cNh" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ePC" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"ePI" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNi" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"ePL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNj" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ePS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cNl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"ePW" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/substation/west) +"ePZ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"eQn" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"eQo" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"eQy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cNm" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cNo" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"cNs" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNu" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNv" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/desert_dam/building/church) -"cNw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cNx" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"eQA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"eQU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cNy" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNz" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"eRf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) +"eRn" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" + icon_state = "road_edge_decal10" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cNA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/desert_dam/exterior/valley/valley_labs) +"eRy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"eRF" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_wilderness) +"eRG" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"eRM" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cNC" = ( -/obj/structure/platform_decoration{ - dir = 8 +/area/desert_dam/building/security/courtroom) +"eRV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eRW" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/office) +"eSi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/exterior/valley/valley_medical) -"cND" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"eSA" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"eSQ" = ( +/turf/open/desert/excavation/component9/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"eTb" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" }, -/obj/structure/platform{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"eTg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_medical) -"cNE" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"eTl" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"eTt" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"eTB" = ( +/obj/structure/surface/table, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"eTH" = ( +/obj/structure/surface/table, +/obj/item/tool/weedkiller/D24, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) -"cNF" = ( -/turf/open/floor/prison{ +"eTQ" = ( +/obj/structure/window/reinforced{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/virology_isolation) -"cNG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/virology_isolation) -"cNH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"cNI" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"cNK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"cNL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + health = 80 }, -/area/desert_dam/building/medical/virology_isolation) -"cNM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"eTS" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"eTW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"cNN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Engineering Central" - }, -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"eTZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment" }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"cNP" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_7" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"eUn" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"eUs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cNQ" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cNR" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar1"; - name = "\improper Cargo Bay Hangar" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/warehouse/warehouse) -"cNS" = ( -/obj/structure/bed/chair/wood/normal{ +"eUA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/desert_dam/building/church) -"cNU" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/desert_dam/building/church) -"cNV" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cNW" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"cNX" = ( -/obj/structure/prop/dam/gravestone, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"eUJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_hydro) -"cNY" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"eVg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"eVk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/church) -"cNZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/church) -"cOa" = ( -/obj/structure/stairs{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"eVC" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/east_caves) +"eVJ" = ( +/obj/structure/window/framed/chigusa, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eVQ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/church) -"cOb" = ( -/turf/open/floor{ - icon_state = "cult" +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"eVZ" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/prison) +"eWa" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/desert_dam/building/church) -"cOc" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"eWd" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"eWt" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"eWB" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"eWG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOd" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"eWM" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/church) -"cOe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"eWN" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"eWO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_wilderness) +"eWP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"eWZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"eXg" = ( +/turf/open/floor/warnwhite/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"eXo" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"eXq" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"eXs" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/church) -"cOf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cOi" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"eXA" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"eXI" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"eXJ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"eXM" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cOj" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cOk" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cOl" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"cOm" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"cOn" = ( -/obj/structure/bed/chair/wood/normal{ +/area/desert_dam/exterior/valley/valley_hydro) +"eYh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/desert_dam/building/church) -"cOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cOr" = ( -/obj/effect/decal/sand_overlay/sand2{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"eYL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"eZs" = ( +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"eZv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOs" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/virology_wing) -"cOt" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"eZA" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"eZE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/church) -"cOu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/fancy/candle_box, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/church) -"cOv" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"eZK" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"eZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/church) -"cOw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/candle, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"eZV" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"fam" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"faw" = ( +/obj/structure/machinery/centrifuge, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"faE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 }, -/area/desert_dam/building/church) -"cOx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/bible, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"faI" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"faO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"faT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/church) -"cOy" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOA" = ( -/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"fbx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fbz" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"fbK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/desert_dam/exterior/valley/valley_crashsite) +"fbM" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/east_caves) +"fbO" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"fbP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"fbX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"fbZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/desert_dam/building/church) -"cOD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"fcc" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) +"fcB" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"fcE" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/building/church) -"cOE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet14-10" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"fdk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/church) -"cOF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOG" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, /area/desert_dam/exterior/valley/valley_hydro) -"cOH" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +"fdz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_wilderness) +"fdJ" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_two) +"fea" = ( +/turf/open/desert/desert_shore/shore_corner1/north, +/area/desert_dam/interior/caves/temple) +"fef" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"feh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"fen" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"feB" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"feC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"feF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/substation/southwest) -"cOI" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"fff" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"ffl" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/telecomm/lz2_containers) +"ffs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"ffD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"ffM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"ffN" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkbrown2, +/area/desert_dam/interior/dam_interior/disposals) +"ffO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"cOJ" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"ffQ" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"fgd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"fge" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/prison/whitegreen/north, /area/desert_dam/building/medical/virology_isolation) -"cOK" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +"fgo" = ( +/obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"fgq" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"fgw" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"fgQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"fgU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"fgV" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"cOM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"fhg" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"fhi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/telecomm/lz2_storage) +"fhj" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cOO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/dark, +/area/desert_dam/building/church) +"fhk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cOP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"fhE" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"fhK" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"fhR" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, /area/desert_dam/interior/dam_interior/central_tunnel) -"cOQ" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"fif" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/telecomm/lz2_storage) +"fin" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"fir" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"fiu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop Foyer" }, -/area/desert_dam/building/medical/virology_wing) -"cOR" = ( -/obj/structure/surface/table, -/obj/item/tank/anesthetic, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"fiy" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"fiB" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/north_tunnel) +"fiE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 1" }, -/area/desert_dam/building/medical/virology_wing) -"cOS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"fiW" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, -/area/desert_dam/building/church) -"cOT" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"fjd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"fjj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/southwest) +"fjt" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cOU" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"fjD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/church) -"cOV" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cOW" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/warehouse/loading) -"cOX" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/church) -"cOY" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "cult" - }, -/area/desert_dam/building/church) -"cOZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Chapel" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/church) -"cPd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, -/area/desert_dam/building/church) -"cPe" = ( -/turf/open/floor{ +"fjL" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "carpet13-5" + icon_state = "pipe-c" }, -/area/desert_dam/building/church) -"cPf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"fjZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"fkP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "carpet13-5" + id_tag = "mining_outpost_pump" }, -/area/desert_dam/building/church) -"cPg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"fld" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/workshop) +"flg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"flo" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"flr" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"fly" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"flF" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/central_caves) +"fme" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"fmf" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/caves/east_caves) +"fml" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"fmp" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"fmr" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"fmt" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/desert_dam/building/church) -"cPh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Backroom" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fmz" = ( +/turf/open/floor/prison/darkbrown3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"fmA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"fmF" = ( +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"fmO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"fmP" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"fns" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"fnE" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"fnG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"fnH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"fnX" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/emergency_room) +"foc" = ( +/turf/open/floor/prison/yellow/northeast, +/area/desert_dam/building/hydroponics/hydroponics) +"fom" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/church) -"cPi" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"fop" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/church) -"cPj" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"foq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/building/church) -"cPk" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"foC" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"foP" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "chapel" - }, -/area/desert_dam/building/church) -"cPl" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"foQ" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"foW" = ( +/obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"fpo" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/church) -"cPm" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"fpy" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_mining) +"fpz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"fpF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"fpH" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/church) -"cPn" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"fpJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) +"fpK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cPo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"fpO" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"fpS" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"fqa" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"fqf" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"fqh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"fqj" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"fqm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cPp" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"fqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"fqD" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/barricade/wooden, -/obj/structure/barricade/wooden{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"fqS" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"fqU" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"frb" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cPq" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"cPr" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached6" +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"frl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"frq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"frw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"cPt" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"frK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"cPu" = ( -/obj/vehicle/train/cargo/engine, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/coagulation/icon8_7, +/area/desert_dam/exterior/valley/valley_mining) +"fsr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cPx" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fsw" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"fsX" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) +"ftz" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/lobby) +"ftF" = ( +/turf/open/floor/whitebluecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ftG" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"ftI" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cPy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +"ftV" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"fuh" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ful" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cPz" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cPB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"fup" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"fur" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" }, -/area/desert_dam/building/bar/bar) -"cPC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"fus" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/mining/workshop) -"cPF" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/security/deathrow) -"cPG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"fuv" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fux" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"fuI" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"fve" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"fvn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cPH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"fvr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/filtration_button{ + id = "filter 2" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"fvw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"cPI" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"fwa" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"fwx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/landing_pad_two) -"cPJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/southwest) -"cPK" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +"fwE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/desert_dam/building/substation/southwest) -"cPL" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cPM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"cPN" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ - dir = 1; - name = "\improper Virology Lab Cell" +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fwF" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"fwL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/excavation/component7/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"fwQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/medical/virology_isolation) -"cPO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"fwS" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"fwY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Floodgate Control" }, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cPP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"fxc" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"fxp" = ( +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"fxq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"fxs" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/building/medical/virology_wing) -"cPQ" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fxE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/virology_wing) -"cPR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"cPS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"fxF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"cPT" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"fxW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"fxZ" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"cPU" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"cPV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"fyd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"fyj" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"fyz" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"fyF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cPW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"fza" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) +"fzb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fzj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fzs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fzx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"fzY" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/south_valley_dam) +"fAe" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"cPX" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"fAf" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/area/desert_dam/building/bar/bar) -"cPY" = ( -/turf/open/floor{ +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"fAj" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"fAk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"fAp" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"fAr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "carpet13-5" + icon_state = "pipe-j2" }, -/area/desert_dam/building/bar/bar) -"cPZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"fAw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/building/bar/bar) -"cQa" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"fAJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"fAM" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) +"fAP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"fAY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"fBy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fBF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fBK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"fBO" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"fCb" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/central_caves) +"fCe" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/tatami, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, /area/desert_dam/building/bar/bar) -"cQb" = ( -/obj/structure/machinery/door/poddoor/almayer{ +"fCk" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/sentry_holder/colony{ dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" - }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cQc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" + pixel_x = -24 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cQe" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"fCp" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQf" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"fCu" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"fCx" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cQg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Bar" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_north) +"fCB" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"fCH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"fCM" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"fCP" = ( +/obj/structure/filingcabinet/security, /turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQh" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/hanger) -"cQi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/desert_dam/building/security/detective) +"fDg" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, /turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cQm" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cQn" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/landing_pad_one) +"fDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"fDj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Restroom" }, -/area/desert_dam/exterior/landing_pad_two) -"cQo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fDt" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_medical) +"fDw" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"fDE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"cQq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/substation/southwest) -"cQr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"fDH" = ( +/obj/structure/closet/l3closet/security, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/substation/southwest) -"cQs" = ( -/obj/structure/machinery/power/smes/batteryrack/substation, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"fDU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"fDY" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"fEa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/substation/southwest) -"cQv" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cQw" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"fEg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"fEi" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"fEk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQx" = ( -/turf/closed/wall/wood, -/area/desert_dam/building/bar/bar_restroom) -"cQy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"fEo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cQz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"fEp" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_telecoms) +"fEq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQA" = ( -/obj/structure/toilet{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"fEu" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"fEQ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cQB" = ( -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cQC" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"cQD" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cQE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"fET" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/computer/crew, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"fFb" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"fFk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"fFl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQF" = ( -/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"fFn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQG" = ( -/obj/structure/sink, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +"fFF" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"fFI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Rec Yard" }, -/area/desert_dam/building/bar/bar_restroom) -"cQH" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"fFM" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fFY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"fFZ" = ( +/obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQI" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"fGd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/east_caves) +"fGe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"fGg" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"fGB" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"fGJ" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"fHd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_two) +"fHj" = ( +/turf/open/floor/carpet/edge/east, +/area/desert_dam/building/administration/meetingrooom) +"fHn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/bar/bar_restroom) -"cQJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"fHv" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"fHx" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"fHA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/bar/bar_restroom) -"cQK" = ( -/obj/structure/flora/grass/desert/lightgrass_11, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cQL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cQN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"fHD" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"fHI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/bar/bar_restroom) -"cQO" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/structure/largecrate/random, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"fHK" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fHQ" = ( +/turf/open/desert/excavation/component1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"fHV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"fIc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"fII" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/lobby) -"cQP" = ( -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cQQ" = ( -/turf/open/floor/prison{ +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "sterile_white" + pixel_x = -24 }, -/area/desert_dam/building/bar/bar_restroom) -"cQR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fIV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cQS" = ( -/obj/effect/landmark/crap_item, +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"fJg" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"fJX" = ( +/obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"cQT" = ( -/obj/structure/bed/chair/wood/normal{ +"fJZ" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQU" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ashtray/bronze, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cQV" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"fKN" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/desert_dam/building/security/deathrow) -"cQW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fKO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/security/deathrow) -"cQX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/straight_jacket, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/security/deathrow) -"cQY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/security/deathrow) -"cQZ" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/exterior/valley/valley_medical) +"fKP" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"fKU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"fKY" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/smes_main) +"fLd" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"fLD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"fLL" = ( +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"fLM" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_two) +"fLP" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cRd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"fLS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"fMf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"cRi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"cRj" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"fMu" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"fMz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"fMJ" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"fMY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/telecomm/lz2_storage) +"fNt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Observation" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"fNF" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/substation/southwest) -"cRk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"fNP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/substation/southwest) -"cRl" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"fNW" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"fOe" = ( +/obj/structure/lz_sign/dam_sign, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"fOr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 }, -/area/desert_dam/building/substation/southwest) -"cRm" = ( -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cRn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/machinery/door/window/southleft{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"fOv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_labs) +"fOC" = ( +/turf/open/desert/cave/cave_shore/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"fOH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fOY" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"fPa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"fPc" = ( +/turf/closed/wall/r_wall/bunker{ + acided_hole_dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"cRp" = ( -/obj/structure/pipes/vents/pump{ +/area/desert_dam/interior/dam_interior/garage) +"fPk" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"fPw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) -"cRq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fPx" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_westwing) +"fPA" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/building/bar/bar_restroom) -"cRr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"fPH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fPT" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"fQe" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_medical) +"fQn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"fQD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"fRa" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"fRg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/bar/bar_restroom) -"cRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"fRo" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"fRz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRv" = ( +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/lobby) +"fRQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"fSk" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/medical/virology_wing) +"fSo" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/west) +"fSr" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/deathrow) +"fSv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fSA" = ( +/obj/structure/largecrate, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"fSR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_telecoms) +"fSU" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"fTe" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"fTo" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" + icon_state = "road_edge_decal2" }, /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cRx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, +/area/desert_dam/exterior/landing_pad_one) +"fTq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cRA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"fTA" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"fTF" = ( +/obj/structure/machinery/optable, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"fTS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"fTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fUj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"fUp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"fUR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"fUS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"fUU" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_labs) +"fVj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_two) -"cRC" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_labs) +"fVo" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"fVy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"fVz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"fVM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cRD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"fWg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"fWn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"fWt" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"fWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"fWG" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/excavation/component6/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"fWM" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"fWS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"fXk" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/landing_pad_two) -"cRF" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"fXv" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"fXx" = ( +/obj/item/tool/hatchet, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"fXz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"fXA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"fXU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"fYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"fYp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"fYz" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"fYN" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"cRG" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"fYO" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"fYV" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/desert_dam/building/bar/bar_restroom) -"cRH" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRI" = ( -/obj/structure/machinery/light, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/bar/bar) -"cRJ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"fZb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) +"fZq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"fZs" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"fZz" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRL" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"fZP" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"fZQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"fZS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cRM" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cRQ" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"fZW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gab" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gap" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_mining) +"gaA" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"gaM" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"gbe" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/area/desert_dam/building/medical/virology_isolation) -"cRR" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/exterior/valley/valley_hydro) +"gbj" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gbr" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/southwest) +"gby" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 }, -/area/desert_dam/building/medical/virology_isolation) -"cRS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Security Checkpoint" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"gbC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gbO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"gca" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gcn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"gct" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"gcH" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"gcP" = ( +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"gcR" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cRX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cRY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Bar" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"gcS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"cRZ" = ( -/obj/structure/window/framed/wood/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/bar/bar) -"cSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gcT" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"gdc" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gdn" = ( +/obj/item/seeds/riceseed, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"gds" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"gdt" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cSb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"gdu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gdC" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gdH" = ( +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"gdP" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"gdQ" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"gdV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"gec" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gee" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Lobby" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"gej" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gen" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"geo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSd" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"geG" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/north_wing_hallway) +"geP" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"gfd" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gfg" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, +/turf/open/asphalt/tile, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSe" = ( +"gfn" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"gfu" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gfE" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"gfO" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gfS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/mining/workshop_foyer) +"gfV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSg" = ( -/obj/structure/machinery/door_control{ - id = "dam_checkpoint_west"; - name = "Checkpoint Lockdown" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"gfZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"ggj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Breakroom" }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSh" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"ggy" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"ggL" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + icon_state = "conveyor-1" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSl" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"ghc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"ghl" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_civilian) -"cSo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" +"ghn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"ghr" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ghE" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ghK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"ghO" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"gin" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/landing_pad_one) +"gir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) +"giM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"giO" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"giQ" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"giX" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSp" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cSq" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gji" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"gjn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"gjt" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSr" = ( -/turf/open/floor/prison, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSs" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"gjV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"gjW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Loading" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gkr" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"gkt" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/substation/northwest) +"gkB" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_mining) +"gkD" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, +/turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSu" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/substation/southwest) -"cSv" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/southwest) -"cSw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +"gkN" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"gkQ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"cSx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gkU" = ( +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"gla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/desert_dam/building/substation/southwest) -"cSy" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"glb" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/phoron{ amount = 50 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cSz" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"glc" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"glf" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/administration/overseer_office) +"glx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSB" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "freezerfloor" + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cSC" = ( -/turf/closed/wall, -/area/desert_dam/exterior/valley/valley_civilian) -"cSE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"glO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"glP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_cargo) +"glY" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"glZ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"gmq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"gms" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" +"gmw" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"gmx" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gmy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gmz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"gmP" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gmZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "warehouse_dam_3"; + name = "\improper Warehouse Shutters" }, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSG" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gnd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cSK" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"gnl" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"gnq" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"gns" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"gnv" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"gnM" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/control_room) +"gnQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" + name = "\improper Cargo Bay" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gob" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/lobby) +"goh" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"gon" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"goE" = ( /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"cSR" = ( -/obj/structure/prop/dam/boulder/boulder3, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"goI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"gpi" = ( +/obj/structure/prop/dam/large_boulder/boulder1, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"cSU" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"cSX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"cSY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/area/desert_dam/exterior/valley/valley_hydro) +"gpk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/mining/workshop) -"cSZ" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"cTa" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar2"; - name = "\improper Cargo Bay Hangar" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"gpm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/warehouse) -"cTc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"gpB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cTd" = ( -/obj/effect/decal/sand_overlay/sand1{ +"gpD" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gpE" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gpO" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"gpR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"gpV" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/building/substation/west) +"gqp" = ( +/turf/open/desert/excavation/component1/east, /area/desert_dam/exterior/valley/valley_crashsite) -"cTg" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"gqr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/mining/workshop) -"cTh" = ( -/obj/structure/flora/grass/desert/heavygrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTi" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/substation/southwest) -"cTj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"gqu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTk" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTl" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTo" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTp" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_10" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cTq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"gqC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gqD" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_two) +"gqH" = ( /obj/structure/fence, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"gqJ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cTr" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"gqU" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"gqY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gqZ" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"grh" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"grq" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"grJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"grM" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"grQ" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics) +"gsg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gsr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"gsB" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTu" = ( -/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cTv" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/building/mining/workshop) -"cTw" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/exterior/landing_pad_two) +"gsE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"gsX" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"gtc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/mining/workshop) -"cTA" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"gte" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gtg" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"gtv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"gtx" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"gtA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"gtM" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/mining/workshop) -"cTB" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"gtO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"gtQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"gtX" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"guf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/northeast, +/area/desert_dam/building/water_treatment_one/lobby) +"gul" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"guQ" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cTC" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cTD" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"guT" = ( +/obj/structure/closet, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office2) +"guW" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"guZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cTE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"cTF" = ( +/turf/open/floor/cult, +/area/desert_dam/building/church) +"gvt" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"gvP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"gvZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cTG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"gwe" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"gwf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_cargo) -"cTH" = ( +"gwC" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gwQ" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"gwS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gwU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gwV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cTI" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cTJ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"gwW" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"gwX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Chapel" + }, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"gxg" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"gxs" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"gxC" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"gxD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cTL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"gxH" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"gxU" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"gyn" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gyu" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"gyx" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_1"; + pixel_y = -16 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"gyy" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/temple) +"gyC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"gyR" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/deathrow) +"gzw" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTP" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"gzN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/break_room) +"gzY" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"gAx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"gAN" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cTQ" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"gAW" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"gBz" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"gBI" = ( +/turf/open/mars/mars_dirt_12, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"gBL" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"gBT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_south) +"gCf" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"gCg" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gCi" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"gCB" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_telecoms) +"gCI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cTR" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"gCM" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/area/desert_dam/building/mining/workshop) -"cTS" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gCS" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 }, -/area/desert_dam/building/mining/workshop) -"cTU" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"gCW" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"gCX" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"cTZ" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"gDc" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"gDk" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"gDR" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/desert_dam/building/mining/workshop) -"cUa" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"gEe" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"gEh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"gEi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/mining/workshop) -"cUb" = ( +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"gEj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/area/desert_dam/exterior/valley/valley_hydro) +"gEz" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"gEG" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gEH" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_civilian) -"cUd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"cUf" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cUg" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_cargo) -"cUh" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +"gEV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"gEW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"gFi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cUi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"gFx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"gFL" = ( +/obj/effect/blocker/toxic_water/Group_2/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"gGf" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cUj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"gGg" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/southwest) +"gGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"gGB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"gGC" = ( +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/desert_dam/interior/caves/temple) +"gGV" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"gHm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"gHx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cUk" = ( +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"gHE" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" + icon_state = "road_edge_decal2" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cUl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cUo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/area/desert_dam/exterior/landing_pad_two) +"gHJ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"gHM" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"gIb" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"gIk" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"gIK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cUs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"cUy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cUz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUA" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"gIO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"gJc" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gJe" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"gJr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) -"cUB" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +"gJx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cUD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"gJJ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"gJL" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gJN" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"gKg" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/southwest, +/area/desert_dam/building/security/prison) +"gKu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"gKM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"gKW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"gKX" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"gLa" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_mining) +"gLf" = ( +/obj/structure/platform{ dir = 4 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gLl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"gLn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"gLP" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"gLQ" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gLX" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"gMv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"gMB" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"gML" = ( +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"gNg" = ( +/obj/effect/decal/sand_overlay/sand2, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"gNh" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/treatment_room) +"gNs" = ( /obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"gNL" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUG" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"gNY" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) +"gOe" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"gOg" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/dam_interior/engine_room) +"gOm" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"gOo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"gOq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"gOu" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"gOE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUH" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"gOM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cUI" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"gOU" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northeast) +"gOV" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/mining/workshop_foyer) +"gOZ" = ( +/obj/structure/stairs, /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"gPq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/candle, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"gPv" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"gQf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cUJ" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"gQw" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"gQA" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"gQF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"gQJ" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_south) -"cUK" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_7" +"gRi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/obj/structure/disposalpipe/segment, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"gRn" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/candle_box, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"gRx" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/central_caves) +"gRB" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"gRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"gRX" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"gSq" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"gSz" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"gSY" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cUP" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"gTf" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cUU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"gTl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"gTq" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"gTt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUV" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "cargo_hangar3"; - name = "\improper Cargo Bay Hangar" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"gTD" = ( +/obj/item/tool/wrench, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"gTE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"gTP" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"gTT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"cUW" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"gUa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"gUj" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gUs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"gUt" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"gUB" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"gUH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"gUQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"gUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"gVm" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"gVp" = ( +/turf/open/floor/prison/yellow/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"gVs" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cUX" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/hardpoint/locomotion/van_wheels{ + unacidable = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"gVw" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"cUY" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"gVC" = ( +/obj/structure/platform_decoration, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"gVJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"gVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"cUZ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"gVX" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"gWc" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/holding) +"gWq" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_one/purification) +"gWu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/desert_dam/building/warehouse/warehouse) -"cVa" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gWH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/building/warehouse/warehouse) -"cVh" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"gWP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"gWT" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gWZ" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"gXb" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/interior/caves/temple) +"gXA" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"gXH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"cVi" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gXX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"gXZ" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "cell_stripe" + icon_state = "pipe-c" }, -/area/desert_dam/building/warehouse/loading) -"cVo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"gYc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"gYg" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" }, -/area/desert_dam/building/warehouse/loading) -"cVq" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"gYv" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/desert_dam/building/security/prison) +"gYI" = ( +/obj/structure/platform, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVs" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"gYN" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVu" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"gYO" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"gYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_westwing) +"gZd" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"gZh" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"gZp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/north_wing_hallway) +"gZq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"gZy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cVv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"gZE" = ( +/turf/open/floor/prison/darkbrowncorners3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"gZF" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"gZO" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"gZV" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"hae" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hak" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"hau" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/chemistry) +"hav" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel) +"haw" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/warehouse/loading) -"cVz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"haC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"haT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hbn" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"hbw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cVA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cVC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"hbC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cVE" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"hbD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hbS" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hbU" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/office1) +"hcb" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/building/warehouse/loading) -"cVH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"hcs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/area/desert_dam/building/warehouse/warehouse) -"cVI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"hcK" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/desert_dam/building/warehouse/warehouse) -"cVJ" = ( +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hcL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"hcQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"hcV" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"hdg" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_civilian) +"hdk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/warehouse) -"cVK" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"hdS" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"heh" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"hem" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"heu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"heC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"heU" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"hfe" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"cVL" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/northwest) +"hfj" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/desert_dam/building/mining/workshop) -"cVM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"hfl" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hfW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"hgn" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/warehouse/breakroom) +"hgE" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"hgI" = ( +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"hhl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"hhm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Treatment Breakroom" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cVN" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"hhu" = ( +/obj/structure/prop/dam/boulder/boulder2{ + desc = "A large rock. It looks very hard to get around." + }, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"hhA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"hhE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cVO" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"hhV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cVP" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"hio" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"hiq" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"his" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"hiw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"hiA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cVS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"hiG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"hiK" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hiL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_cargo) -"cVU" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"hjc" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hjg" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/central_caves) +"hjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/warehouse/loading) -"cVV" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"cVX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"hjQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hke" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"hkf" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_south) -"cWa" = ( +"hkk" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"hkl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"hkP" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"hkY" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hlm" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 5 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"hly" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northwest"; + name = "Checkpoint Lockdown" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cWc" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hlU" = ( +/turf/open/desert/excavation/component2/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"hlV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_south) +"hnn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"hnq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"hnw" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cWe" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"hnC" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel) +"hnF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"hnG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"cWj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"hnJ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"cWk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"cWn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hnT" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"hnU" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/warden) +"hnX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + name = "\improper Tool Storage" }, -/area/desert_dam/building/warehouse/warehouse) -"cWo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hoc" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/warehouse) -"cWp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hor" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"cWq" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cWr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hot" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hou" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"hox" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"hoy" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"hoC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"hoE" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/treatment_room) +"hoV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"cWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"hoW" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"cWx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"hoX" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"hpL" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cWy" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hpP" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cWA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hpS" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"hpU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cWB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"hpV" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"hqw" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"hqD" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"hqH" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cWC" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"hqI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/landing_pad_one) +"hqK" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"hrv" = ( +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"hrx" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/area/desert_dam/exterior/river/riverside_south) -"cWD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"hrA" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"hrH" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"hrO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"hrV" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecalbottomleft" }, -/area/desert_dam/exterior/valley/valley_hydro) -"cWE" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"hsj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"hsB" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cWF" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hsG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cWH" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"hsH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"hsW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWN" = ( +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) +"htg" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"htk" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/interior/dam_interior/atmos_storage) +"htm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"huh" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/exterior/valley/valley_mining) +"huq" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"huu" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWP" = ( +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"huE" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cWW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"huG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"hvb" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/southern_hallway) +"hvl" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"cWX" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"hvL" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"hvO" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cXa" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"hvQ" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"hvU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/control_room) +"hwf" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"hwg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cXd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cXh" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"hwr" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 3" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cXj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"cXk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"hwV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"hwY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cXl" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"hwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"hxb" = ( +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hxg" = ( +/obj/structure/machinery/flasher/portable, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"hxE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"hxH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cXm" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"hxP" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"hyc" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"cXn" = ( -/obj/structure/stairs{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"hyf" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, /obj/structure/platform{ - dir = 8 + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"hyi" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/east_caves) +"hyH" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"hyO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) +"hyR" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"hzl" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/south_valley_dam) +"hzC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"cXo" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ +"hzF" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"hzM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"hzS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cXp" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"hAg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"hAq" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/area/desert_dam/exterior/river/riverside_south) -"cXt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hAs" = ( +/turf/open/desert/excavation/component3/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"hAu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"hAv" = ( +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cXw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"hAw" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cXx" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"hAB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"hAE" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river_mouth/southern) +"hAH" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"hAN" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"hAY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) -"cXz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"cXA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"hBa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"cXD" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, /area/desert_dam/building/warehouse/warehouse) -"cXI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" +"hBv" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/valley/valley_labs) +"hBy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"hBz" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"hBK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/warehouse/warehouse) -"cXK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"hBL" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) +"hBP" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_hydro) +"hCc" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"hCd" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" + }, +/turf/open/asphalt, /area/desert_dam/building/warehouse/warehouse) -"cXM" = ( -/obj/effect/decal/cleanable/dirt, +"hCf" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/south_valley_dam) +"hCi" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cXN" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"hCt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) +"hCG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"cYe" = ( -/obj/structure/platform{ +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"hCV" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_south) -"cYf" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hDj" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/desert_dam/building/warehouse/loading) +"hDq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hDM" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/interior/caves/central_caves) +"hDN" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"cYg" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_south) -"cYh" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"cYi" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_south) -"cYj" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"hDT" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_4" }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"cYk" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/valley_labs) +"hEa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/office) +"hEd" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_north) +"hEe" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/administration/lobby) +"hEj" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_0" + }, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"hEy" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hEU" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"hFc" = ( +/turf/open/gm/river/darkred_pool, +/area/desert_dam/building/dorms/pool) +"hFf" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"hFn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"hFs" = ( +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"cYp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"hFy" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"hFN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"hFY" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office1) +"hGa" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"hGf" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"hGk" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hGl" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"hGn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"hHd" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/security/prison) +"hHe" = ( +/turf/open/floor/prison/darkyellowcorners2/west, /area/desert_dam/interior/dam_interior/engine_east_wing) -"cYs" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +"hHp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"hIj" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cYu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"hIp" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"hID" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"hIO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cYv" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"hIS" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Observation" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"hIV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"hJb" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"hJd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"hJl" = ( /obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"hJo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cYw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, -/area/desert_dam/exterior/river/riverside_east) -"cYx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/turf/open/asphalt/cement_sunbleached, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_wilderness) -"cYy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" +"hJF" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"cYz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"cYA" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"hKh" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"hKx" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"hKy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/cell_stripe/north, /area/desert_dam/building/warehouse/loading) -"cYB" = ( +"hLi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"hLm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"hMd" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hMe" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"hMh" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"hMi" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"cYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/item/device/encryptionkey, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"hMw" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"hMx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"hMz" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"cYF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"hMH" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) +"hNd" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/control_room) +"hNi" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"hNn" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"hNt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"cYG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cYH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cYI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cYJ" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"hNv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"hNP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"cYK" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"cYL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"cYN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"hNW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"hOa" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) -"cYO" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"hOf" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"hOB" = ( +/turf/open/floor/whitegreencorner/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"hOI" = ( +/turf/open/desert/excavation/component4/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"hOY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"hPh" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"hPB" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cYP" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/valley_medical) +"hPH" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hPP" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hPV" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/engine_room) +"hQf" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"hQl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cYQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cYR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"hQt" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"hQw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"hQA" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"hQH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"hQO" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cYS" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"hRa" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"cYT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +"hRC" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cYV" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"hRQ" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"hRR" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_medical) +"hRX" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"hSF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"hTp" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"cYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cYY" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"hTt" = ( +/obj/structure/showcase{ + icon_state = "mechfab1" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hTu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_0" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cYZ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"hTx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/desert_dam/exterior/valley/valley_cargo) -"cZb" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_cargo) -"cZc" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"hTy" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river_mouth/southern) +"hTW" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/area/desert_dam/exterior/valley/valley_hydro) -"cZd" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"hUd" = ( /obj/structure/platform_decoration{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"cZe" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"cZf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 10 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"hUs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hUL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"hUM" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"cZl" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"hUX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"hVe" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"hVn" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"hVs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/chigusa, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"hVv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"hVF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/warehouse/warehouse) -"cZn" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/landmark/nightmare{ + insert_tag = "shipgone_northlz" }, -/turf/open/asphalt/cement_sunbleached, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"hVH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hVV" = ( +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/valley_wilderness) -"cZo" = ( -/obj/effect/decal/sand_overlay/sand1{ +"hWi" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"hWq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_mining) +"hWy" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZp" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"hWA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"hWB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"hWD" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_shutter_hangar"; - name = "\improper Hangar Lock" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/hanger) -"cZs" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"hWI" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/engine_east_wing) -"cZt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/cafeteria) -"cZv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) -"cZw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cZx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"hWT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"cZy" = ( -/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"cZz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/loading) -"cZB" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/warehouse/loading) -"cZD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"cZE" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"cZF" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"cZJ" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"hXb" = ( /obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"hXd" = ( +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/hallway) +"hXt" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"hXw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"hXB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, -/area/desert_dam/exterior/valley/valley_medical) -"cZK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/engi) +"hXC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"cZP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cZQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" + name = "Security Desk" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"cZR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" }, -/area/desert_dam/exterior/valley/valley_civilian) -"cZS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/desert_dam/exterior/valley/valley_civilian) -"cZV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dag" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_one/lobby) +"hXQ" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/loading) +"hXV" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"hYd" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"hYi" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) +"hYm" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"hYt" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"dak" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dam" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dao" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/cafeteria/backroom) -"dap" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cold_room) -"das" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"hYK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"hYN" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 4 + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"daw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/desert/excavation/component7/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"hYQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"dax" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"hYX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"hZa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"daB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"daD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"hZe" = ( +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/marshals_office) +"hZt" = ( +/obj/structure/stairs, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_cargo) -"daF" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics) -"daG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"daH" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, +"hZu" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"daI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"daK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"daL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"daM" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"daN" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"daO" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/cafeteria/cafeteria) -"daP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"daQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"daT" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire{ + pixel_x = 3 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"daU" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"daX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/tool/extinguisher{ + pixel_x = -10 }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"hZI" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"hZU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ias" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"iay" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/caves/central_caves) +"iaG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"iaQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"iaR" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"daY" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/engine_west_wing) -"dba" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"dbc" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"dbd" = ( +/area/desert_dam/building/water_treatment_one/garage) +"iaT" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"iaW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ibk" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"dbe" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ibl" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"ibp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Surgery" }, -/area/desert_dam/building/warehouse/warehouse) -"dbf" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"ibE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"ibM" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"ibP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_south) +"ibT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"ibV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"ibZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/warehouse/warehouse) -"dbh" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"ick" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/warehouse/warehouse) -"dbi" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"ics" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ict" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"icx" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"icB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/building/warehouse/warehouse) -"dbj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"icH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_wilderness) +"icM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/warehouse/warehouse) -"dbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"icU" = ( +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"idg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"idl" = ( +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/south_tunnel) +"idm" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"idp" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ids" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Mess Hall" }, -/area/desert_dam/building/warehouse/warehouse) -"dbm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) +"idM" = ( /obj/structure/largecrate, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/building/warehouse/warehouse) -"dbn" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbo" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics) -"dbp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +"idV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"iea" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"iei" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"ieD" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"ieG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbt" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"ieM" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"ieV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dbu" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics) -"dbw" = ( -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dbx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"ieY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"ieZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/emergency_room) +"ife" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/landing_pad_one) +"ifp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"ifC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"ifD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dby" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbz" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/north_wing_hallway) +"ifI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"ifL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment Foyer" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"ifQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"igb" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_catwalk" }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"igf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbC" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_storage" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"igg" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/loading) +"igu" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"igC" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"igF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"igN" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" + dir = 1 }, +/turf/open/floor/prison/cell_stripe, /area/desert_dam/building/warehouse/warehouse) -"dbD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbE" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/prison{ - icon_state = "sterile_white" +"ihv" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ihA" = ( +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"ihB" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"ihJ" = ( +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ihK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"ihL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ihY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbG" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"iip" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iiC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"iiG" = ( /obj/structure/surface/table/reinforced, -/obj/structure/sink/kitchen, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbI" = ( -/obj/structure/machinery/conveyor_switch{ - id = "cargo_landing" +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbJ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"iiH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"iiX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"iiY" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/virology_isolation) +"ijr" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ijs" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"iki" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dbK" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cafeteria) -"dbL" = ( -/turf/closed/wall, -/area/desert_dam/building/cafeteria/loading) -"dbM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Delivery" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"ikD" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"ikI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"ikN" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dbN" = ( -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dbO" = ( -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"ilV" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/building/water_treatment_two) +"imq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_cargo) +"imw" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"imD" = ( +/obj/structure/showcase, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ind" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"inj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"inr" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"inL" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"inY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"iof" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"iot" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"dbP" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"ioA" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) +"ioU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"ipj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cold_room) -"dbQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/structure/disposalpipe/junction{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"ipm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) -"dbR" = ( -/obj/effect/decal/sand_overlay/sand1{ +"ipw" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dbT" = ( -/obj/item/stool, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_two/lobby) +"ipy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dbY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"ipz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dbZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"ipC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/workshop) +"ipE" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"ipF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"ipI" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/river/pool, +/area/desert_dam/building/dorms/pool) +"ipM" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"ipP" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"ipQ" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_omega"; + name = "Omega Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/omega; + elevator_network = "B" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dca" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"ipT" = ( +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_hydro) +"ipU" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"iqs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/item/trash/liquidfood, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"iqE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iqK" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/warehouse/loading) -"dcb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" +/turf/open/floor/plating, +/area/desert_dam/building/substation/northwest) +"iqN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"dcc" = ( -/turf/open/floor/prison{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"iqS" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"irc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "darkbrown2" + name = "\improper Security Office Space" }, -/area/desert_dam/building/warehouse/loading) -"dcf" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/office) +"irf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"irk" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"irr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dcg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"irz" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"irJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"isk" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_one) +"isr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dch" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/CE_office) +"isx" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" + dir = 1 }, +/turf/open/floor/prison/yellow/north, /area/desert_dam/building/hydroponics/hydroponics) -"dci" = ( -/obj/structure/machinery/light{ +"isC" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dcj" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"isD" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"isP" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"isV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dck" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dco" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"itd" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"itI" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"itS" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"iud" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"iug" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"iuz" = ( +/turf/open/desert/excavation/component5/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"iuP" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) -"dcp" = ( -/obj/structure/machinery/light{ +"iuQ" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"ivd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dcq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"ivm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"ivr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dcs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"ivG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iwE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/cafeteria/backroom) -"dcw" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"iwF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dcx" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dcy" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iwO" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"ixb" = ( +/turf/open/desert/excavation/component7/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"ixl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) +"ixo" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"ixy" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"ixC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/cafeteria/cold_room) -"dcz" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"ixK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"dcD" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ixR" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"dcL" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"iya" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iyi" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"iyj" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"iyo" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/workshop) +"iyx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"izo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"izP" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"izQ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/sink{ dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/primary_storage) -"dcM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E" + pixel_x = 11 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dcN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"izZ" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"iAf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dcO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"dcP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"iAl" = ( +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"iAT" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"iAY" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"iAZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"iBe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"iBi" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"iBq" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"iBt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"iBw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Operating Theatre 1" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dcR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"iBD" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"iBL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dcS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dcW" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor{ - dir = 1; - icon_state = "vault" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcY" = ( -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dcZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"iBM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dda" = ( -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Loading" +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"iBU" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"iBX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"iCa" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddd" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"iCd" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_labs) +"iCo" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dde" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"iCp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"iCr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"ddi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"iCt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"iCu" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"iCG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"iCQ" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"iCV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jar_sample" }, -/area/desert_dam/building/cafeteria/cafeteria) -"ddl" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iDh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"iDo" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"iDx" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"iDF" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_medical) +"iDG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_northwest) +"iDS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Observation" }, -/area/desert_dam/building/cafeteria/cafeteria) -"ddm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"iEa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"iEb" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green/southeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"iEl" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"iEJ" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"iEL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"ddn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"iFd" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"iFk" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"iFr" = ( +/turf/open/floor/warning/southeast, +/area/desert_dam/interior/dam_interior/engine_room) +"iFW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"iGe" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"iGj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"iGl" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"iGn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"iGs" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"iGJ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"iGN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"ddq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Freezer" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"iGU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"iGX" = ( +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/bar/bar) +"iGY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"iHi" = ( +/obj/item/trash/semki, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/disposals) +"iHs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"iHC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"iHH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cold_room) -"ddr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"iIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"dds" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"iIh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"iIl" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"iIn" = ( +/obj/item/toy/inflatable_duck, +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"iIt" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) +"iIv" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/central_caves) +"iIF" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"iIM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"iIZ" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cold_room) -"ddu" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_northwest) +"iJr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"iJE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"iJG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"iJK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"iJY" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cold_room) -"ddv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"ddw" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"iKg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"iKn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"ddx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/warden) +"iKy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"iKK" = ( +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"iLd" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"iLB" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"iLW" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"iMo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"iMA" = ( +/obj/structure/machinery/light, +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/building/water_treatment_one/breakroom) +"iMF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) -"ddJ" = ( -/obj/structure/machinery/conveyor{ +"iMY" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"iNf" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - id = "cargo_container" + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iNi" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"iNr" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddK" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" +/obj/structure/platform{ + dir = 8 }, -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"iNy" = ( +/obj/structure/stairs{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/dark, +/area/desert_dam/building/church) +"iNA" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"iNF" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/desert_dam/interior/caves/temple) +"iNH" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"iNK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"iNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"iNU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"iNW" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddM" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_storage" +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"iNY" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/building/water_treatment_two) +"iOa" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iOv" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"iOz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"iOI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"iOL" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/warehouse) -"ddO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Hydroponics" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"iOM" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"ddP" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"iOP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"ddQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/desert_dam/interior/dam_interior/disposals) +"iOR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddR" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"ddS" = ( -/obj/structure/machinery/botany/editor, -/turf/open/floor/prison, +/obj/item/seeds/soyaseed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"ddT" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor/prison, +"iOT" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_south) +"iPf" = ( +/turf/open/floor/prison/yellow/northwest, /area/desert_dam/building/hydroponics/hydroponics) -"ddU" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" +"iPo" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"iPx" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"iPR" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ddV" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) +"iQb" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_isolation) +"iQi" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"ddW" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - icon_state = "conveyor-1" +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddX" = ( -/obj/structure/machinery/conveyor{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"iQj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"iQG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"iQH" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "conveyor-1" + id = null; + name = "\improper Elevator Lock" }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz2) +"iRw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"iRL" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"iRR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iSa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"ddZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"iSf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"iSk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dea" = ( -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"deb" = ( +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"iSm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"iSo" = ( +/obj/structure/bed, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dec" = ( -/obj/structure/flora/bush/desert/cactus/multiple{ - icon_state = "cacti_12" - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"ded" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"iSp" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iSq" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"iSs" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dee" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"iSu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/cafeteria/cafeteria) -"deg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"iSy" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"iSV" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"deh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dej" = ( -/obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cold_room) -"dek" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"iSZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"iTe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/desert_dam/building/cafeteria/cold_room) -"del" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"iTn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dem" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"den" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"iTD" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"iTK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"deo" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"iTO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"iTX" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"iUb" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dep" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"deq" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"iUf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/building/warehouse/loading) -"der" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"iUk" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"iUr" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iUs" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel) +"iUu" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/garage) +"iUG" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"iUL" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"iUN" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"des" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"iUU" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/bar/bar) +"iUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) +"iVg" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"iVj" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"det" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"iVu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"iVN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"iVT" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"iVU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"iVZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"iWh" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"iWj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"deu" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dev" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"iWp" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_civilian) +"iWu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"iWy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"iWM" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"iWN" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dex" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dey" = ( -/turf/open/floor{ - dir = 1; - icon_state = "vault" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"iXm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"iXn" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dez" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"deA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"deB" = ( -/obj/structure/machinery/light{ +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/green/east, +/area/desert_dam/interior/dam_interior/atmos_storage) +"iXA" = ( +/obj/structure/surface/table, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"iXG" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"deC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"deD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"deE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iXM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"iXR" = ( +/obj/structure/morgue, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"iYb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/area/desert_dam/building/cafeteria/cafeteria) -"deF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"iYc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Loading" }, -/area/desert_dam/building/cafeteria/cafeteria) -"deG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"iYd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"iYg" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_medical) +"iYr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"iYu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"iYx" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"iYO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"deI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/desert_dam/building/substation/central) -"deJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"deK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"deM" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"iZa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"deP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + name = "\improper Tool Storage" }, -/area/desert_dam/building/warehouse/loading) -"deQ" = ( -/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"iZg" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"iZp" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"iZq" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"iZr" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/area/desert_dam/building/warehouse/loading) -"deR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"iZt" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"deS" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"iZE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"deU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"iZJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + name = "\improper Research Director Office" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"deV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"iZL" = ( +/turf/open/floor/warnwhite/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"iZT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"iZZ" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"jal" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"jat" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_cargo) -"deW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jay" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"jaA" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"deX" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"jaN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"jaS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" + icon_state = "E" }, -/area/desert_dam/building/warehouse/warehouse) -"deY" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"jbh" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"jbi" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"jbu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/warehouse/warehouse) -"deZ" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"jbH" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"dfa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/yellowfull/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jbN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_labs) +"jbY" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jca" = ( +/obj/structure/holohoop{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"dfb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/warnwhite/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"jcz" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"jcD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dfc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jcF" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dfe" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"jcG" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"jcI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfh" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jcK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/telecomm/lz2_storage) +"jcN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/caves/east_caves) +"jcQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dfj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"jcR" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dfk" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/warning_stripes{ + pixel_y = 30 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dfm" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"jdc" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"jdf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dfn" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"jdm" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"jdp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dfo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/dark, +/area/desert_dam/building/church) +"jdy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"jdD" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river_mouth/southern) +"jdE" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/turf/open/floor/plating, -/area/desert_dam/building/warehouse/loading) -"dfp" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"jdJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder, +/obj/item/device/assembly/signaller, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/warehouse/loading) -"dfq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jdW" = ( +/turf/open/desert/excavation/component5/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jeD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_northeast"; + name = "Checkpoint Lockdown" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"jeJ" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"jfc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dfr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"jfr" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"jfs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) +"jft" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"jfu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/southwest, /area/desert_dam/exterior/valley/valley_wilderness) -"dfs" = ( -/obj/structure/machinery/light{ - dir = 4 +"jfy" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/valley/valley_wilderness) +"jfA" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"jfL" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dft" = ( -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dfv" = ( -/obj/structure/machinery/power/apc{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"jfY" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/building/substation/northwest) +"jgd" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/disposalpipe/junction{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dfw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + icon_state = "pipe-j2" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"jgk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"jgu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"jgR" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"jhb" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_mining) +"jhz" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jhI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dfx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"jhO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"jhT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dfy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Loading Bay" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"jhV" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"dfz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"jil" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"jin" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"dfA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"jiv" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"jiw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/warehouse/warehouse) -"dfB" = ( -/turf/open/floor/prison{ +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"jiy" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"jiF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"jiK" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"jiT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "darkbrowncorners2" + health = 80 }, -/area/desert_dam/building/warehouse/loading) -"dfC" = ( -/obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"jjg" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"dfD" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jjy" = ( +/turf/open/desert/excavation/component9/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"jjD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/warehouse/loading) -"dfE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jjT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"dfG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/warehouse) -"dfH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"jkI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/loading) -"dfI" = ( -/turf/open/floor/prison, -/area/desert_dam/building/warehouse/loading) -"dfJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"dfK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"dfL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"dfN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jkL" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/area/desert_dam/building/warehouse/loading) -"dfS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dfT" = ( -/obj/structure/surface/table, -/obj/item/tool/shovel/spade, -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_two) +"jkO" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jkP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dga" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jkR" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dgb" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt/cement/cement13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jlh" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dgc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dgd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jll" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"jln" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/central_caves) +"jls" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dge" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"jlu" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"jlz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jlB" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"jlP" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jlR" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dgf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dgg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/area/desert_dam/exterior/valley/bar_valley_dam) +"jmk" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/building/warehouse/warehouse) -"dgh" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"jmA" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dgm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "road_edge_decal12" }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgo" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/loading) -"dgp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, +/area/desert_dam/exterior/landing_pad_two) +"jnd" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"jng" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgr" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jnh" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/building/warehouse/loading) -"dgs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"dgu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"jnn" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"jnw" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"jny" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"jnU" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/desert_dam/building/water_treatment_one/garage) +"jnV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"joi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"joq" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"joy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Atmospheric Storage" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"joL" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkbrown2" + icon_state = "pipe-c" }, -/area/desert_dam/building/warehouse/loading) -"dgv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"joQ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"jpg" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"jph" = ( +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jpt" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jpE" = ( +/obj/item/frame/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"jpH" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/desert_dam/exterior/landing_pad_two) +"jpI" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"jpK" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"jqc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dgz" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/warehouse/loading) -"dgA" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"jqd" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"jqe" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"jqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/warehouse/loading) -"dgC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"jqi" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"jqn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/area/desert_dam/building/warehouse/loading) -"dgD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/whiteyellow/northeast, +/area/desert_dam/interior/dam_interior/garage) +"jqx" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jqJ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jqK" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"jqO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"jrb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/primary_storage) +"jrl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dgE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"jrt" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"jrB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 }, -/area/desert_dam/building/warehouse/loading) -"dgF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"jrV" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/river/riverside_south) -"dgG" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dgH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dgI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"jsc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jse" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dgJ" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jsh" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"jsu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"jsI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jsJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"jsN" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dgK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-south-bridge" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dgL" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"jsV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dgM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"jta" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dgN" = ( -/obj/structure/machinery/door_control{ - id = "dam_stormlock_north2"; - name = "Storm Shutter Lockdown" - }, -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dgO" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dgP" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"dgT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"jtf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/north_wing_hallway) +"jtC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dgU" = ( -/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"jtE" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"jtJ" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dgW" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"jtL" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/armory) +"jtN" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jtX" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"jut" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 + }, +/turf/open/floor/plating/platebot, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"juu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"juC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dgX" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dgY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dhc" = ( -/obj/structure/toilet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"juQ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"juT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"juX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"jvh" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dhd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Toilet Unit" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jvo" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"jvy" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"jvz" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_south) +"jwq" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dhe" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"jws" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"jww" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"jwB" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"jwI" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/loading) -"dhf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"jwQ" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/cafeteria/loading) -"dhg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"jxf" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"jxh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"jxp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"jxr" = ( +/obj/structure/machinery/computer/station_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"jxA" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dhh" = ( -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dhj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"jxV" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"jyg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"dhs" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/water_treatment_one/hallway) -"dhA" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/purification) -"dhT" = ( -/obj/effect/decal/sand_overlay/sand2, +"jyr" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jyy" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jyL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"jyU" = ( +/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jyW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars/mars_dirt_10, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"jza" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"jze" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/loading) +"jzg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dhU" = ( -/obj/effect/decal/sand_overlay/sand2/corner2{ +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"jzn" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_northwest) +"jzr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dhX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"jzC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jzE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dhZ" = ( -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dia" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"jzN" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"jzO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Hallway" }, -/area/desert_dam/building/medical/emergency_room) -"dib" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dic" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"jAa" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jAb" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"die" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/lobby) -"dif" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"jAc" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_two/purification) +"jAd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"dil" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/garage) -"dim" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/hallway_northwing) -"din" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"diq" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/equipment) -"dir" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"diG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"diH" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"diI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"jAj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/north_valley_dam) +"jAm" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jAH" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"jAI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/hydroponics/hydroponics) -"diJ" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"jAO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"jAR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jAW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"jAZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_hydro) +"jBl" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"jBo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"jBs" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_medical) +"jBy" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"diK" = ( -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"jBA" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jBG" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"diL" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"diM" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"jBP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jBY" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"jBZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"diN" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"jCa" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/interior/caves/east_caves) +"jCy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"diO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"diP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"diR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"jCA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"jCJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall, +/area/desert_dam/building/dorms/hallway_northwing) +"jCK" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"jCS" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jDj" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"jDq" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) -"djg" = ( -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"djh" = ( -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 +"jDs" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"jDw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"djk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/landing_pad_one) +"jDD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"djl" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/landing_pad_two) -"djr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/hydroponics/hydroponics) -"djs" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jDG" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics) -"djt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"jDW" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"jEn" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dju" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"djw" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"jEH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"jFf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"jFk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"djx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"djy" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"jFo" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"jFs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"jFw" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jFL" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/workshop) +"jFR" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"djz" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"jGi" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"jGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"jGN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/lobby) +"jHc" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"jHe" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"djA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"djV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"jHg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"djW" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"djY" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"jHx" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"jHI" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jHO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown3" +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"jHQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/interior/dam_interior/disposals) -"djZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"jHR" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal5" }, -/obj/effect/blocker/toxic_water/Group_2, /turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"dka" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"jId" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"jIh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 2; - name = "\improper Loading" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"dkb" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dkc" = ( -/obj/structure/stairs{ - dir = 1 + name = "\improper Surgery" }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dkd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"jIH" = ( +/obj/structure/window/framed/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"jIK" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dke" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"jIN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Break Room" }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dkh" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"jIT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"jIX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"jIY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"jJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dki" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/desert_dam/building/dorms/hallway_westwing) +"jJm" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_northwest) +"jJn" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"jJO" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"jKa" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/bar/bar) +"jKj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dkj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Delivery" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"jKo" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"jKz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/cafeteria/loading) -"dkk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_telecoms) +"jKH" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"jKK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"jKL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"jKN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"jLd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"jLk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"jLt" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"jLu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"jLv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dkl" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"jLA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"jLG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/lobby) +"jLH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"jLR" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_labs) +"jLT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"jMG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/interior/dam_interior/west_tunnel) +"jMP" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"jMR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"jMS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"jMT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jNi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_mining) +"jNB" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dkG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dkH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Packaging" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dkI" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/valley/valley_labs) +"jOa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached20" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dkJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/southwest) -"dkK" = ( +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"jOn" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"jOo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"jPl" = ( /obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dkL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Breakroom" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"jPr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_labs) +"jPt" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/mining/workshop_foyer) +"jPA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"jPC" = ( +/turf/open/floor/warnwhite/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"jPH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/north, +/area/desert_dam/building/administration/lobby) +"jQf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/loading) -"dkM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dkN" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"jQg" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"jQt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"jQu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"jQv" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"jRq" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "garage_dd"; + name = "\improper Garage" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dkZ" = ( -/obj/structure/prop/dam/large_boulder/boulder1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"jRH" = ( +/obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlc" = ( -/obj/structure/prop/dam/large_boulder{ - icon_state = "boulder_large1" +/area/desert_dam/exterior/landing_pad_one) +"jRK" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"jRN" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"dld" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"jSb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"jSo" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"jSt" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown3" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/disposals) -"dle" = ( -/obj/structure/toilet, +"jSF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"jSS" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jSY" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dlu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_wing) -"dlx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"jTa" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"jTb" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"jTl" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_cargo) +"jTs" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"jTA" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/west) +"jTV" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"dly" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"jTY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"jUd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink/kitchen, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"jUf" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/desert_dam/exterior/valley/valley_cargo) -"dlz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"jUo" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"jUq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dlA" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"jUw" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dlB" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/loading) -"dlC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +"jUz" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"jUC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_wilderness) +"jVf" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"jVv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"jVw" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"jVF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"jVW" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"jVY" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/exterior/telecomm/lz1_valley) +"jWk" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"jWp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/hallway) +"jWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"jWO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/desert_dam/building/cafeteria/loading) -"dlD" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jXm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"jXv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/cafeteria/loading) -"dlE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"jXw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/cafeteria/loading) -"dlF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/cafeteria/loading) -"dlJ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"dlM" = ( -/obj/structure/desertdam/decals/road_stop{ +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"jXx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"jXI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"jXV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 1; - icon_state = "stop_decal5" + name = "\improper Administration Control Room" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dlN" = ( -/obj/structure/machinery/light, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"jXZ" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"jYb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"jYh" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dlP" = ( -/obj/structure/platform{ +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"jYn" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jYy" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/disposals) +"jYL" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"jYV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"jZf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"jZk" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"jZn" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"jZK" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"jZW" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"kak" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"kam" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_hydro) +"kaw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/south_valley_dam) +"kaR" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"kbc" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"kbk" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"kbo" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kbq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/east_caves) +"kbu" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"kbC" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/temple) +"kbN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"kbR" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dlQ" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dlR" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dlS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dlT" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"kce" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kct" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"kcv" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/control_room) +"kcA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"kcD" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"kcH" = ( +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/exterior/telecomm/lz2_containers) +"kda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/cafeteria/loading) -"dme" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"kdc" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"kdf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Visitation" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/dark2, +/area/desert_dam/building/security/southern_hallway) +"kdg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/loading) -"dmf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"kdn" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kdt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/cafeteria/loading) -"dmg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"kdH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/loading) -"dmz" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"kdI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"kdM" = ( +/obj/structure/filtration/flacculation_arm, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kdQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"kep" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_east) -"dmJ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/telecomm/lz1_valley) +"keL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"keP" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"keX" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"keY" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"kfe" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"kfO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"kgd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"kgg" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"kgj" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"kgn" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kgH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"kgO" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/armory) +"kha" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"khb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"kho" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"khr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dmL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "S" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dmO" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"kht" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dmP" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"khA" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/interior/caves/east_caves) +"khP" = ( +/obj/structure/window/framed/chigusa, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"khT" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"khU" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/building/cafeteria/loading) -"dmQ" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kiC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Lab Maintenance" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"kiD" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"kiN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" }, -/area/desert_dam/building/cafeteria/loading) -"dmR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kiP" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"kiT" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"kjs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"kjE" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"kjF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/area/desert_dam/building/cafeteria/loading) -"dny" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Break Room" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kjR" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"kkf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"kkk" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"kkp" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"kkH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"kls" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/staffroom) +"klU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/break_room) -"dnB" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kmr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dnC" = ( -/obj/structure/platform_decoration{ +/area/desert_dam/exterior/valley/valley_civilian) +"kms" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"kmv" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kmz" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"kmB" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kmU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"kna" = ( +/obj/structure/machinery/light, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) +"knc" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kng" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dnD" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_south) -"dnP" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/obj/structure/platform{ + dir = 4 }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) -"dod" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"knr" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Containment Lock"; + unacidable = 0 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dof" = ( -/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"doi" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"doj" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"knv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"knz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"dok" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"knP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"knY" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"kok" = ( +/turf/open/floor/coagulation/icon6_8, /area/desert_dam/exterior/valley/valley_hydro) -"dol" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +"kow" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dom" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"koE" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/area/desert_dam/exterior/valley/valley_civilian) -"doE" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"doH" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"koZ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/hallway) -"doL" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"kpF" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"kpI" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"kpP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"kqe" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/purification) -"doN" = ( -/obj/structure/platform, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"kqg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"kqC" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"kqY" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"kre" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"krr" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) -"doO" = ( -/obj/structure/platform, +"krx" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, +/turf/open/desert/desert_shore/desert_shore1/east, /area/desert_dam/exterior/river/riverside_south) -"doQ" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dpc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dps" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +"kry" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dpu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"krR" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"ksb" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" }, -/area/desert_dam/building/water_treatment_one/hallway) -"dpv" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"ksg" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"ksn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"ksr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"dpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"kst" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpx" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ksy" = ( +/obj/structure/closet/secure_closet/injection, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"ksL" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ksN" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"ktg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/south_valley_dam) +"ktx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"ktJ" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/interior/caves/temple) +"ktL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"ktQ" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpy" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dpA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ktZ" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"kud" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"kuf" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"kug" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"kui" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"kur" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"kuz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_south) +"kuB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kuD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"kuM" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/exterior/valley/valley_wilderness) +"kuX" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"kvb" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"kvl" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"kvm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"kvu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dpB" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dpC" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dpD" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"kvE" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"kvM" = ( +/obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"dpE" = ( -/obj/structure/platform{ +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river_mouth/southern) +"kvX" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/folder/black_random, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_south) -"dpF" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"kwe" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"kwj" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dpG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"kwu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kwz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/prop/dam/truck/damaged, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kwA" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dpH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"kwE" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kwL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"kwT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpJ" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" - }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kwZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/central) +"kxo" = ( +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kxG" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kxQ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) -"dpK" = ( +"kxS" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/north_wing_hallway) +"kxV" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"kyr" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/telecomm/lz2_storage) +"kyD" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"kyQ" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"kyT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dpL" = ( -/obj/structure/desertdam/decals/road_stop, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"kzb" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kze" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dqd" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"dqe" = ( -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/chemistry) +"kzs" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"kzt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"kzu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kzE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Packaging" }, -/area/desert_dam/building/water_treatment_one/hallway) -"dqf" = ( -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqg" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"kzI" = ( +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_westwing) +"kzL" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dqi" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/building/water_treatment_one/lobby) -"dqm" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kzM" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/lobby) -"dqn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"kzQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"kAb" = ( +/turf/open/desert/excavation/component8/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"kAf" = ( +/obj/structure/flora/grass/desert/heavygrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"kAk" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"kAI" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"kAQ" = ( /obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dqo" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dqp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"kAR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office" }, -/area/desert_dam/building/water_treatment_one/purification) -"dqs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dqt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"kAV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"kBg" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kBD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dqu" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kBK" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dqJ" = ( +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/control_room) +"kBP" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/gm/river/desert/deep/covered, +/turf/open/asphalt/tile, /area/desert_dam/exterior/river/riverside_south) -"dqO" = ( -/obj/structure/bed/chair/office/light{ +"kBS" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"kBV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"dqR" = ( -/obj/structure/flora/pottedplant, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqS" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"kCc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqT" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqV" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dqW" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/lobby) -"drc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"kCd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_one) +"kCf" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/area/desert_dam/building/water_treatment_one/control_room) -"drg" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/landmark/railgun_camera_pos, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"kCr" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"kCs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"kCt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/desert_dam/exterior/valley/valley_hydro) -"drh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_one) +"kCv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"kCC" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"kCF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"kDd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security Armoury" }, -/turf/open/desert/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kDj" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/interior/caves/central_caves) +"kDk" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/telecomm/lz1_south) +"kDt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) -"dri" = ( +"kDx" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"kDC" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"kDT" = ( +/turf/open/floor/warning/east, +/area/desert_dam/interior/dam_interior/engine_room) +"kEb" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_mining) +"kEt" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"kEu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"kEw" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"kER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"drL" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drO" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +"kET" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drQ" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"kEZ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kFe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/lobby) -"drT" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"kFn" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"drU" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"kFt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"drV" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"kFw" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"drY" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"kFE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"kFO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"drZ" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"kFU" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft{ - dir = 8; - name = "Security Desk" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Security Desk" +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"kGz" = ( +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/hanger) +"kGM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_civilian) +"kHh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"kHv" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kHF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"kHQ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"kHS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"kIj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/lobby) -"dsb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"kIk" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"kIH" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"kIL" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/area/desert_dam/building/water_treatment_one/lobby) -"dsc" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"dsf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"kIN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"kIP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"kIX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_central_south) -"dsg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_central_south) -"dsh" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"kJg" = ( +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"kJl" = ( +/obj/structure/machinery/light{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_central_south) -"dsi" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"kJP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"kKx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/exterior/river/riverside_central_south) -"dsk" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"kKy" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kKz" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kKB" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kKE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"kKI" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kKJ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_two) +"kKP" = ( +/obj/item/shard/shrapnel, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"kLj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"kLY" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_central_south) -"dsA" = ( -/turf/open/floor/prison{ +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"kMa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"kMb" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"kMi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kMp" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_one/lobby) -"dsE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dsJ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" + id_tag = "mining_outpost_pump" }, -/area/desert_dam/building/water_treatment_one/garage) -"dsM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dsO" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kMC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/water_treatment_one/lobby) -"dsR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dsS" = ( -/turf/open/floor/filtrationside{ - dir = 9 +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"kMI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dsT" = ( -/turf/open/floor/filtrationside{ - dir = 1 +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"kMJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dsU" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"kNe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_telecoms) +"kNh" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"kNu" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"kNK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"dsV" = ( -/turf/open/floor/filtrationside{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"kNP" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"kOa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/obj/item/oldresearch/Blood, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"kOc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"kOd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dsW" = ( -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"kOg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"dto" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtp" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"kOt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"kOR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dtr" = ( -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dtt" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"kOV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"kOX" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/hallway) +"kPi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dtu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"kPm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/garage) -"dtw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"kPn" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"kPp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"kPs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"kPv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"kPx" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kQj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"kQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"kQr" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"kQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dtx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"kQE" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dty" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dtz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"kQP" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) +"kQS" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dtE" = ( -/turf/open/floor/filtrationside{ - dir = 8 +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"kQY" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/building/water_treatment_two) +"kRf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Breakroom" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"kRj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"dtF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dtG" = ( +"kRk" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"kRn" = ( /obj/structure/platform{ - dir = 4 + dir = 8 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"kRq" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"kRt" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"kRF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"kRY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dtH" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_south) -"dtI" = ( -/turf/open/floor/filtrationside{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"kSa" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/valley/valley_labs) +"kSb" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dtT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dtV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"dtX" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"kSk" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"dtY" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"kSs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"kSx" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/temple) +"kSE" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"kSP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"kSS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"kST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"kTk" = ( +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hangar_storage) +"kTp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"dua" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"kTx" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"kTE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Marshal Office" }, -/area/desert_dam/building/medical/virology_wing) -"duc" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"kUt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"dud" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"kUK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"kUU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"kVv" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/archives) +"kVz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"kWd" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"kWh" = ( +/obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"dun" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/desert_dam/building/administration/office) -"duo" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" - }, -/area/desert_dam/building/administration/office) -"duq" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dus" = ( -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"dut" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"duu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"kWr" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/north_wing_hallway) +"kWs" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kWu" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"kWD" = ( +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"kWF" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_civilian) +"kWG" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/mining/workshop_foyer) +"kWJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"duw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"kWO" = ( +/obj/structure/machinery/r_n_d/protolathe, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"kXb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" + name = "\improper Engine Room" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dux" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"kXg" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"duy" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"duz" = ( -/obj/structure/platform{ +"kXk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"duA" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"duB" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"duC" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_northwing) -"duD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"duJ" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"kXn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"duP" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"kXs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/disposals) -"duR" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"kXE" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"kXG" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/dam_interior/break_room) +"kXJ" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"kXQ" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/substation/west) +"kXR" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"kXT" = ( +/obj/item/trash/hotdog, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"kYc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/interior/caves/temple) -"duU" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"duV" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/machinery/light{ +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"kYh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"kYs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"kYD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"duW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"duY" = ( -/obj/structure/machinery/computer/cameras/wooden_tv, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet7-3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"kYO" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"kYP" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"kYQ" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/area/desert_dam/building/administration/overseer_office) -"duZ" = ( -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" +/obj/structure/surface/table, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/water_treatment_one/lobby) +"kZj" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/substation/west) +"kZk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/desert_dam/building/administration/overseer_office) -"dvf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"kZP" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"kZT" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"kZV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"kZZ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"laa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"laA" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"laO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dvg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dvj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"laQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dvk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"lbx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dvm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"lby" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lbA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dvn" = ( +/turf/open/floor/prison/red/east, +/area/desert_dam/building/security/lobby) +"lbE" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"lbF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/deathrow) +"lbI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"lbM" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"lcd" = ( +/obj/item/clothing/head/surgery/blue, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/treatment_room) +"lci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"lcj" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dvo" = ( +/area/shuttle/trijent_shuttle/lz1) +"lcu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"lcy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/item/trash/kepler, /obj/effect/decal/cleanable/dirt, +/obj/item/trash/chunk, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dvt" = ( -/obj/structure/machinery/computer/area_atmos, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dvx" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_south) -"dvy" = ( -/obj/structure/platform_decoration{ - dir = 1 +/area/desert_dam/exterior/valley/valley_labs) +"lcH" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"lcK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lcM" = ( +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"lcX" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"ldz" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"leb" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) -"dvz" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ +"led" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/east_caves) +"lez" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"leC" = ( +/obj/structure/machinery/light{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_south) -"dvA" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"leX" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"leZ" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"lfh" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"lfj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"lfo" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/south_valley_dam) -"dvB" = ( -/obj/structure/platform{ +"lfq" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"lfv" = ( +/obj/structure/machinery/computer/cameras/wooden_tv, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) +"lfx" = ( +/obj/structure/closet, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/office1) +"lfE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"lfM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_civilian) +"lfV" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"lgz" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill, +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/temple) +"lgF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"lgQ" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"dvD" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"lgU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lhb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"lhi" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"lhl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper SMES" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dvE" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"lhw" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"lhx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lhy" = ( +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"lhz" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lhE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"lhH" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lhM" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/treatment_room) +"lie" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dvW" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"lim" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_maintenence) +"lio" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"liy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/lobby) +"liO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Hallway" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"dvZ" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"liQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"lju" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"ljy" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/garage) +"ljA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 + dir = 8 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"dwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/desert_dam/exterior/landing_pad_one) +"ljC" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"ljE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"ljG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"ljO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/van{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"dwe" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"lku" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/smes_main) -"dwf" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lkJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_telecoms) +"lkR" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"llf" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"llq" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"llu" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkyellow2" + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/smes_main) -"dwg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"llF" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"llK" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_main) -"dwh" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"dwl" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dwm" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"llW" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/restroom) -"dws" = ( -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/landing_pad_two) -"dwy" = ( -/obj/structure/machinery/computer/turbine_computer, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dwC" = ( -/turf/open/floor/filtrationside{ - dir = 10 - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dwD" = ( -/turf/open/floor/filtrationside, -/area/desert_dam/exterior/valley/valley_hydro) -"dwE" = ( -/turf/open/floor/filtrationside{ - dir = 6 - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dwF" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dwG" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +"lme" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"dwH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"lmt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"lmW" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"lnj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lnm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"lnu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lnw" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"lnx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"lnF" = ( +/obj/structure/sink, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lnK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwI" = ( -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dwW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"lnP" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/area/desert_dam/exterior/landing_pad_two) +"lnT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/interior/dam_interior/smes_backup) -"dwX" = ( -/obj/structure/surface/table/reinforced, +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"lnU" = ( /obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"loc" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"log" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/smes_backup) -"dxb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"lon" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"lop" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dxd" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/area/desert_dam/exterior/valley/valley_telecoms) +"loB" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"loF" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"loS" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/darkred2/southwest, +/area/desert_dam/building/administration/lobby) +"lpe" = ( +/obj/structure/fence, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_hydro) +"lpl" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/control_room) +"lpP" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dxe" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"lpV" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"lqD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dxf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"lqE" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lqP" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"lqR" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxg" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"lrc" = ( +/turf/open/floor/prison/redcorner, +/area/desert_dam/building/security/northern_hallway) +"lro" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxh" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/structure/machinery/computer/communications, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lrs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxj" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lru" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet/edge/southeast, +/area/desert_dam/building/administration/meetingrooom) +"lrK" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"lrT" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"lrY" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"lsb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"lsc" = ( +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/dorms/pool) +"lso" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"lst" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/central_caves) +"lsD" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "greencorner" + icon_state = "pipe-c" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxk" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"lsM" = ( +/turf/open/desert/excavation/component8/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"lsO" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"ltl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"ltC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"ltE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, /area/desert_dam/building/dorms/hallway_northwing) -"dxl" = ( -/obj/structure/bed/chair{ +"ltJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ltK" = ( +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"ltW" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"lua" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxm" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"lul" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"luu" = ( +/turf/open/floor/filtrationside/northwest, +/area/desert_dam/exterior/valley/valley_hydro) +"luC" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"luI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dxL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Breakroom" + name = "\improper Administration Control Room" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/administration/control_room) +"luQ" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"luR" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"luX" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "sterile_white" + id = "cargo_container" }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dxM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/item/reagent_container/food/snacks/cheesewedge, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dxN" = ( -/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"lvA" = ( +/turf/open/floor/warning/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"lvN" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dxO" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dxR" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dxS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dxT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lvQ" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"lwb" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dxW" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/desert_dam/building/water_treatment_one/garage) -"dxX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/item/stack/rods{ + amount = 25 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dxY" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"lwj" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"lwl" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"lwS" = ( +/turf/open/desert/excavation/component3/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"lwW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"lwZ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dya" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"lxp" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"lxq" = ( /obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/desert_dam/building/water_treatment_one/garage) -"dyb" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dyi" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dyj" = ( /turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dyk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_stormlock_north2"; - name = "\improper Storm Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"dyl" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/building/water_treatment_one/control_room) +"lxw" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"lxC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) -"dym" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +"lxV" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"lye" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"lyv" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"lyw" = ( +/obj/structure/flora/bush/desert/cactus{ + icon_state = "cactus_8" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dyn" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lyz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"lyB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lyP" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"lyS" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lzb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"lzk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lzz" = ( +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/bar/bar) +"lzB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/break_room) +"lzF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dyo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dyp" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"lzO" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dyS" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"lzU" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"lAD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"lAS" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"lBf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"lBu" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"lBy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Isolation Chamber" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dyT" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"lBE" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"lBI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"lBQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"lCi" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"lCt" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"lCF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"lCN" = ( +/turf/open/floor/warning/northeast, +/area/desert_dam/interior/dam_interior/engine_room) +"lCQ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"lCR" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"lDd" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dyU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"lDD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"lDN" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dyW" = ( -/turf/open/floor{ - dir = 5; - icon_state = "vault" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"lDT" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lDX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/building/substation/central) -"dyX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dyY" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"lEe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzc" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzd" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dze" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"lEx" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dzf" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"lEC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/equipment) -"dzg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"lEN" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"lES" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/water_treatment_one/equipment) -"dzh" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "upper_2"; - layer = 2 +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"lET" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"lFc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dzi" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"lFe" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"lFn" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"lFJ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/equipment) -"dzk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lFT" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/water_treatment_one/lobby) +"lFU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/telecomm/lz2_storage) +"lFW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"lGb" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"lGm" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/central_tunnel) +"lGw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"lGx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Research Hallway" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dzm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"lGF" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dzo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ +/obj/structure/platform{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"dzr" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"lGH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_wing) +"lGT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"lHm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Research Workshop" }, -/area/desert_dam/exterior/river_mouth/southern) -"dzs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzt" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"lHt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"dzv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/disposals) +"lHx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"lHL" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_two) +"lHR" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"lHT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dzy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"lIo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"lJd" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dzz" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"lJg" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"lJi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"lJC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"lJH" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"lJK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/greenfull/northwest, /area/desert_dam/building/dorms/hallway_northwing) -"dzA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Mess Hall" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dzB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"lJZ" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/surface/table, +/turf/open/floor/darkred2/northwest, +/area/desert_dam/building/administration/lobby) +"lKd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dzC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"lKJ" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/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/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"lKL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dzD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/whiteyellowcorner, +/area/desert_dam/interior/dam_interior/break_room) +"lKP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"lKW" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dzE" = ( -/obj/structure/flora/grass/desert/lightgrass_10, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dzO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/area/desert_dam/exterior/valley/bar_valley_dam) +"lLc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"lLf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"lLH" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/warehouse/loading) +"lLN" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"lMc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"lMd" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/south_valley_dam) +"lMe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"lMq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"lMu" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_crashsite) -"dzU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"lMv" = ( +/obj/structure/machinery/door/airlock/sandstone/runed{ + name = "Strange Temple" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"dAd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"lMJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dAf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"lMT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, /area/desert_dam/building/cafeteria/cafeteria) -"dAg" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, +"lNu" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"lOc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dAk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"lOy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"lOA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"lOB" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"lOF" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dAl" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"lOI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/armory) +"lOM" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lOY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"lPe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_mining) +"lPp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"lPA" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/substation/west) +"lPO" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"lPQ" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"dAn" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"lPR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/bar_valley_dam) +"lPV" = ( +/turf/open/floor/whiteyellowcorner/east, /area/desert_dam/building/water_treatment_one/breakroom) -"dAo" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river_mouth/southern) -"dAq" = ( -/turf/open/floor{ - icon_state = "white" +"lQf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"lQj" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"lQm" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"lQD" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"lQF" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/south_valley_dam) +"lQQ" = ( +/turf/open/floor/whiteyellowcorner/west, /area/desert_dam/building/water_treatment_one/breakroom) -"dAr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +"lRf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/turf/open/asphalt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"lRx" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"lRV" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"lRZ" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"lSc" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/rock3, /area/desert_dam/interior/dam_interior/west_tunnel) -"dAA" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/filtration_a) -"dAB" = ( -/obj/structure/platform{ +"lSg" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"lSr" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"lSF" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"lSI" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"lSM" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"lTg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dAD" = ( -/turf/open/floor/prison{ - icon_state = "green" +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dAF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dAG" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"lTh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dAH" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"lTs" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"lTJ" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"lTQ" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_east) +"lTX" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "green-new-bridge" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dAI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"lUk" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"lUm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dAJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lUu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"lUv" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dAK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dAL" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"lUA" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"lUE" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBb" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"lVs" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"lVB" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/north_wing_hallway) +"lVP" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Office" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/treatment_room) +"lVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"lVW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBe" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"lVY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dBh" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dBi" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"lWa" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_civilian) +"lWq" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"lWE" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"lWI" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBo" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/hallway_westwing) -"dBp" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"lWM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dBr" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_westwing) -"dBs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"lWO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"lWP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBw" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"lWQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBx" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"lWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"lXb" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dBy" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/restroom) -"dBz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Restroom" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"dBC" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lXj" = ( +/turf/open/floor/prison/whiteredcorner/east, +/area/desert_dam/building/medical/primary_storage) +"lXn" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" }, -/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"lXB" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"lXE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/straight_jacket, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"lXV" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"lYb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/dorms/pool) -"dBD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"lYj" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"lYk" = ( +/obj/structure/closet/radiation, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"lYm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/dorms/pool) -"dBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"lYq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"lYv" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"lYz" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"lYE" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"lYR" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"lYU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"lYV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/break_room) -"dBJ" = ( -/obj/structure/machinery/computer/pod/old{ - name = "Personal Computer" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"lZe" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"lZG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/staffroom) +"maJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"maN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dBK" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"mba" = ( /obj/structure/disposalpipe/segment, -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"mbl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dBN" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/garage) +"mbo" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"mbN" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_medical) -"dBO" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +"mbX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"mcu" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"mcv" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_civilian) +"mcD" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"mcJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_medical) -"dBP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dBQ" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"dBR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"mcN" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/area/desert_dam/interior/dam_interior/disposals) -"dBT" = ( -/obj/structure/bed/chair{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"mdl" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) +"mdp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"mdq" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBU" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/soft/ferret, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"mdz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/whiteyellowcorner/north, /area/desert_dam/building/water_treatment_one/breakroom) -"dBV" = ( -/obj/structure/bed/chair{ - dir = 8 +"mdI" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"mdP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBW" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"mdX" = ( +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/dorms/pool) +"mea" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_two/purification) +"mee" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"mew" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/red, +/area/desert_dam/building/water_treatment_two/lobby) +"meA" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dBY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"meF" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" }, -/area/desert_dam/interior/dam_interior/disposals) -"dCb" = ( -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dCc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"meK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dCd" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) +"meN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/dorms/restroom) -"dCe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"mfb" = ( +/obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"mfh" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "gib6" + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"mgc" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dCf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"mgv" = ( +/turf/open/desert/excavation/component3/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mgw" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"mgT" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"mhm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"dCg" = ( -/obj/structure/toilet{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engineering Hallway" }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"mhs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"mhC" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mhG" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"mhK" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mhR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/dorms/restroom) -"dCj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"mhS" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dCo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/desert/desert_shore/shore_corner1/west, +/area/desert_dam/interior/caves/temple) +"mif" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Evidence" }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"dCt" = ( -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/dark, +/area/desert_dam/building/security/evidence) +"mij" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mis" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_mining) +"miv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"mix" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/south_valley_dam) -"dCy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Disposals" +"miA" = ( +/turf/open/desert/excavation/component6/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"miE" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"miF" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"miH" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecalbottomleft" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"miM" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/lobby) +"miQ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/disposals) -"dCz" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"mjw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"mjA" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Office" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"mjB" = ( +/turf/open/desert/excavation/component2/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mjG" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dCB" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"dCD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"mjH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" }, -/area/desert_dam/building/medical/west_wing_hallway) -"dCF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"mkc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"mkh" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/cement/cement14, +/area/desert_dam/exterior/valley/valley_wilderness) +"mki" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_labs) +"mkn" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"mkI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCH" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mkJ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mkU" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"mlA" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/clothing/glasses/welding{ + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/item/device/radio{ + pixel_x = 7; + pixel_y = 5 }, -/area/desert_dam/building/dorms/pool) -"dCJ" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/tool/lighter/random{ + pixel_x = -4; + pixel_y = 8 }, -/turf/open/floor{ - icon_state = "whiteyellow" +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/garage) +"mlI" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCK" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mlL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dCL" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"mlM" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"mlR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/trackimp, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"mmc" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"mmw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"mmH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_medical) +"mmL" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"mmN" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"mnp" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_landing" }, -/area/desert_dam/building/water_treatment_one/equipment) -"dCM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"mnq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCN" = ( -/turf/open/floor/coagulation{ - icon_state = "5,8" +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mnr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCO" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCP" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mnu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCQ" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"mnE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mnI" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 150 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCR" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"mnK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCS" = ( -/turf/open/floor/coagulation{ - icon_state = "6,8-2" +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"mnV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCT" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"moa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dCU" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"moo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"moP" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"moW" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellow2/northwest, +/area/desert_dam/building/security/prison) +"mpr" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"mpt" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"mpz" = ( +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_east) -"dCV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"mpA" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"mpN" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mpW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mqc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/dorms/pool) -"dCW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dCX" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mqf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/backroom) +"mqw" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/desert_dam/building/dorms/restroom) -"dCY" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"mqx" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"mqA" = ( /obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/item/folder/yellow, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/west) +"mqF" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/mining/workshop) +"mqG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/landing_pad_one) +"mqI" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mqM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"mqO" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"mrf" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"mri" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/dorms/restroom) -"dDa" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mrm" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"mru" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/building/dorms/restroom) -"dDb" = ( -/obj/structure/machinery/light{ - dir = 8 +"mry" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"mrJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"mrO" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"mrQ" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" }, -/area/desert_dam/building/dorms/restroom) -"dDk" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"mrV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/west, +/area/desert_dam/building/hydroponics/hydroponics) +"msa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_telecoms) +"msd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/mining/workshop) +"msp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/medical/surgery_room_one) -"dDs" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/holding) +"msq" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/virology_wing) +"msr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"mss" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"msC" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/control_room) +"msW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"mtw" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"mtF" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"mtQ" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"muh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dDt" = ( -/turf/open/floor/coagulation{ - icon_state = "1,7" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/south_valley_dam) +"mus" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"muu" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"muy" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"muV" = ( +/obj/structure/filtration/collector_pipes, +/turf/open/floor/filtrationside/west, /area/desert_dam/exterior/valley/valley_hydro) -"dDv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"dDw" = ( +"muX" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"muY" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/dam_interior/smes_backup) +"mvy" = ( /obj/structure/surface/table, -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"mvQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"mvT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"mvW" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_hydro) +"mwd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Bedroom" + }, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"mwl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"mwW" = ( +/turf/open/floor/prison/darkbrowncorners2/north, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"dDx" = ( -/obj/item/clothing/head/welding, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"mxd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Research Workshop" }, -/area/desert_dam/interior/dam_interior/smes_main) -"dDz" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"mxh" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"mxp" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"mxu" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mxB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dDA" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"mxK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dDB" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_northwest) -"dDD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"mxN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"mxY" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"dDG" = ( -/turf/open/floor/coagulation{ - icon_state = "7,7-2" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mya" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/building/administration/control_room) +"myg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/item/handset, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"myp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dDH" = ( -/turf/open/floor/coagulation{ - icon_state = "8,7-2" +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/smes_main) +"myt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dDI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"myD" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_south) -"dDJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dDK" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_east) +"myS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mzg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dDL" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"mzk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/chemistry) +"mzq" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"dDM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"mzw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"dDQ" = ( -/obj/item/seeds/soyaseed, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"mzR" = ( +/turf/open/desert/cave/cave_shore/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"mzX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Hallway" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"mAm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"mAn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dDZ" = ( -/obj/structure/toilet{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mAr" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mAA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper CE Office" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dEb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"dEe" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dEj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"mAR" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"mAZ" = ( /obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mBd" = ( +/obj/structure/platform{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"dEk" = ( /obj/structure/platform{ - dir = 1 + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 +/obj/effect/blocker/toxic_water/Group_1, +/obj/effect/landmark/nightmare{ + insert_tag = "purple-center-bridge" }, -/area/desert_dam/exterior/river/riverside_east) -"dEl" = ( +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"mBt" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"mBx" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 1 + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/north_valley_dam) +"mCv" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"mCA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_east) -"dEm" = ( -/obj/structure/platform{ +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"mCM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/dorms/hallway_northwing) +"mCO" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"mDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"mDA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"dEn" = ( -/obj/structure/platform{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"mDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"mEb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dEo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mEs" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mEG" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dEr" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dEt" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dEu" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"mEI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dEv" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mEX" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/obj/item/reagent_container/food/snacks/donut, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dEx" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dEP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"mFa" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mFh" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"mFj" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/workshop) +"mFy" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dEV" = ( -/obj/structure/filtration/collector_pipes, -/turf/open/floor/filtrationside{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dEW" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"mFz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"mFK" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/valley/valley_labs) +"mFL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dEX" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"mFP" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"dEY" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"mFQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"mGe" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/northeast) +"mGt" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/exterior/river/riverside_east) -"dEZ" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"mGu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"mGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/exterior/river_mouth/southern) -"dFc" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_south) -"dFd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"mGH" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"mGK" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"mGO" = ( /obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_south) -"dFe" = ( +/obj/structure/platform{ + dir = 8 + }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/filtrationside{ +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"mGQ" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dFf" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dFh" = ( -/obj/item/frame/table, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"mGX" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"mGY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dFi" = ( -/obj/structure/catwalk, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/restroom) -"dFj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/dorms/restroom) -"dFk" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mHx" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dFn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dFo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dFr" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"mHB" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"mHL" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"mHQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners3" +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"mIm" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/disposals) -"dFL" = ( -/obj/structure/sink{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"mIr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 1; - pixel_y = -10 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dFM" = ( -/turf/open/floor/coagulation{ - icon_state = "0,4" + icon_state = "pipe-j2" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dFN" = ( -/turf/open/floor/coagulation{ - icon_state = "8,4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"mIS" = ( +/turf/open/floor/carpet5_1/west, +/area/desert_dam/building/church) +"mIV" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"mIZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/bible, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dFP" = ( -/obj/structure/platform, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"mJf" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFQ" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2" - }, /obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dFR" = ( -/obj/structure/platform_decoration{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"mJx" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"dFS" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/bar/bar) +"mJz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"mJJ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_civilian) +"mJR" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"mKe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"mKh" = ( +/turf/open/desert/excavation/component4/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"mKr" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mKs" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/valley/valley_telecoms) +"mLt" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"mLw" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"mLz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"mLK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hangar_storage) +"mLO" = ( +/obj/structure/holohoop{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_south) -"dFU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dFV" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/desert_dam/building/dorms/restroom) -"dFW" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/warnwhite/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"mMk" = ( +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"mMq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Cell 1" }, -/area/desert_dam/building/dorms/restroom) -"dFX" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"mMs" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"mMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"mMR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"mMX" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_mining) +"mNc" = ( +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"mNk" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mNp" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"mNs" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/area/desert_dam/building/dorms/restroom) -"dFZ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"mNC" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"mNK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/dorms/restroom) -"dGa" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"mNS" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dGr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "0,5" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"mNU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dGs" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dGt" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mOh" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/turf/open/floor/filtrationside{ - dir = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"mOy" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/substation/northwest) +"mOH" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dGu" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"mON" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"dGv" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dGw" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"mOS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"mOU" = ( /obj/structure/platform, -/obj/structure/platform{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"mOW" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dGx" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/administration/overseer_office) +"mPf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"mPy" = ( +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"mQr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_hydro) +"mQs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/garage) -"dGy" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) -"dGz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"mQE" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"mQJ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"mQM" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"mRa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"mRb" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) +"mRf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dGA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"mRl" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"mRu" = ( /obj/structure/platform{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dGB" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"mRF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"mSr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/interior/caves/central_caves) +"mSF" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"mSG" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/river/riverside_south) -"dGC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dGD" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"mSL" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/item/trash/plate, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"mSM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dGE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"mST" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dGF" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "green" + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dGG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"mTf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/dorms/restroom) -"dGI" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dGN" = ( -/obj/structure/platform{ - dir = 1 +/area/desert_dam/exterior/valley/valley_medical) +"mTg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"mTk" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"mTn" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"dGQ" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"mTo" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/staffroom) +"mTs" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_medical) +"mTJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"mTO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"mTP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/southern_hallway) +"mTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"mUg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"mUm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"mUq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dGU" = ( -/obj/docking_port/stationary/marine_dropship/lz1, -/turf/open/floor/plating, -/area/desert_dam/exterior/landing_pad_one) -"dGV" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"mUw" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dGY" = ( -/turf/open/floor/coagulation{ - icon_state = "8,6" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"mUy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHa" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"mUY" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/mining/workshop) +"mVc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"mVn" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"mVq" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/landing_pad_one) +"mVr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"dHb" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"dHc" = ( -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"mVy" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_medical) +"mVC" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/filtration_a) -"dHd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"mVI" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river_mouth/southern) -"dHe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river_mouth/southern) -"dHf" = ( -/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"dHg" = ( -/obj/structure/platform, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"mVM" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_south) +"mVN" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"mVU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mWa" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) -"dHh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Lab Maintenance" - }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dHi" = ( -/obj/item/frame/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"mWq" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"mWB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"mWC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_cargo) +"mWQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dHl" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"mWR" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_east) +"mXo" = ( +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mXz" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_central_north) +"mXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dHo" = ( -/obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"mXJ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"mXS" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mYg" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/mining/workshop_foyer) +"mYo" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mYp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHr" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"mYP" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_south) +"mYQ" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/random/toolbox, +/obj/item/tool/pickaxe/drill, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dHt" = ( -/turf/open/floor/coagulation{ - icon_state = "1,1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"mYR" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dHw" = ( -/turf/open/floor/coagulation{ - icon_state = "7,1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHx" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHy" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"mZa" = ( /obj/effect/blocker/toxic_water, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, +/turf/open/gm/river/desert/shallow_corner/east, /area/desert_dam/exterior/river_mouth/southern) -"dHA" = ( -/obj/structure/platform{ +"mZe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"mZs" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"mZK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"mZN" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"mZS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_south) -"dHB" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"nae" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Workshop" }, -/area/desert_dam/exterior/river/riverside_south) -"dHD" = ( -/turf/open/floor/prison{ - icon_state = "green" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"nal" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dHE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nat" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dHF" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"nay" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"naH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/dorms/restroom) -"dHG" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"naI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"naJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"naL" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/staffroom) +"naN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2 }, -/area/desert_dam/building/dorms/restroom) -"dHI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHK" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"dHM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"dHO" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/warehouse/loading) -"dHQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dHS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dHT" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/floor/coagulation{ - icon_state = "0,0" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"naZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"nbm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"nbs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"nbu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"nby" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"nbF" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dHY" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "2,0" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIa" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/coagulation{ - icon_state = "8,0" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"nbI" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz1{ + pixel_y = 32 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dId" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nbL" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "7,0" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"nbU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIe" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/floor/coagulation{ - icon_state = "8,0" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"ncd" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIf" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"nch" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"ncm" = ( +/turf/open/desert/rock/deep, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ncp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"ncy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"ncS" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ncW" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dIh" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_central_south) -"dIi" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"ncX" = ( +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_civilian) -"dIj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +"ndm" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"ndp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"ndq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"ndz" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"ndE" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/telecomm/lz2_storage) +"ndK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ndP" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"nec" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/area/desert_dam/exterior/valley/valley_civilian) -"dIk" = ( -/turf/closed/wall, -/area/desert_dam/building/dorms/pool) -"dIl" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/desert_dam/building/dorms/pool) -"dIm" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"nev" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"neB" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/landing_pad_one) +"nfn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"nfC" = ( +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_mining) +"nfK" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"nfO" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"nge" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dIn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"ngo" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/area/desert_dam/building/dorms/pool) -"dIo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Showers" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ngq" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ngr" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/interior/caves/central_caves) +"ngu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"ngy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dIp" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/control_room) +"nhv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"nhy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkblue2/northeast, +/area/desert_dam/building/administration/control_room) +"nhC" = ( +/obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nhS" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - name = "\improper Restroom" + name = "\improper Colony Administration Office" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/office) +"nhT" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"niA" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dIq" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/overseer_office) +"niC" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"niG" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/east_wing_hallway) +"niJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"njm" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"njr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dIr" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"njy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/north_valley_dam) +"njK" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"njP" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nkg" = ( +/turf/open/floor/dark, +/area/desert_dam/building/church) +"nkj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dIs" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nkq" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"nkr" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_hydro) +"nkv" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_south) +"nkz" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nkA" = ( /obj/structure/surface/table, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dIu" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/loading) -"dIw" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/desert_dam/building/administration/lobby) +"nkE" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river_mouth/southern) +"nkM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIz" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"nkN" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIA" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIC" = ( -/obj/structure/stairs{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"nlc" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"nlm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nlD" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"nlF" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/northern_hallway) +"nlH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"nlK" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"nlS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dID" = ( -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"nmg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_mining) +"nmh" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nmn" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/warden) +"nmz" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nmO" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dIG" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/desert_dam/exterior/river_mouth/southern) -"dIH" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/desert_dam/exterior/river_mouth/southern) -"dII" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nmP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river_mouth/southern) -"dIJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"nmQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dIK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dIL" = ( +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"nna" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"nne" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nni" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"nnn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) -"dIM" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) -"dIN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/building/dorms/pool) -"dIO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"nnw" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"nnC" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "blue" + icon_state = "pipe-c" }, -/area/desert_dam/building/dorms/pool) -"dIQ" = ( -/obj/item/clothing/under/shorts/red, -/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"nnD" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgury_observation) +"nnL" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/lobby) +"nnN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) -"dIR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"nnR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nnU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/desert_dam/building/dorms/pool) -"dIS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"nnX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"noe" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_wilderness) +"nos" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/south_tunnel) +"not" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_one) +"now" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"noQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"noU" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dIT" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/exterior/valley/valley_wilderness) +"noX" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"npn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"npx" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/area/desert_dam/building/dorms/pool) -"dJd" = ( -/obj/structure/stairs{ +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/lobby) +"npA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"npL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"npN" = ( /obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/platform{ + dir = 8 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"npP" = ( +/turf/open/floor/coagulation/icon8_3, /area/desert_dam/exterior/valley/valley_hydro) -"dJe" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river_mouth/southern) -"dJf" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ +"npV" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue, +/area/desert_dam/interior/dam_interior/tech_storage) +"npY" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/garage) +"nqu" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/area/desert_dam/exterior/river_mouth/southern) -"dJg" = ( -/obj/structure/platform{ +/turf/open/floor/prison/red/west, +/area/desert_dam/building/water_treatment_one/lobby) +"nqR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"nrd" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"nrf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"nrg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/area/desert_dam/exterior/river_mouth/southern) -"dJh" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"nrp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"nrT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nsf" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dJi" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"nsh" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dJj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"nsw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"nsC" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) -"dJm" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_hydro) +"nsI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/dorms/pool) -"dJA" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"nsL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Restroom" }, -/area/desert_dam/exterior/river_mouth/southern) -"dJB" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"ntl" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/river/riverside_east) -"dJC" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"ntx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"ntB" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"ntL" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/area/desert_dam/exterior/river_mouth/southern) -"dJD" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"ntQ" = ( +/turf/open/desert/excavation/component7/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"ntX" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"nub" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/CE_office) +"nuk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"nul" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/river_mouth/southern) -"dJE" = ( /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"nut" = ( +/turf/open/floor/prison/greencorner/north, +/area/desert_dam/building/substation/west) +"nuv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"nuy" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"nuL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/desert_dam/exterior/river_mouth/southern) -"dJG" = ( -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/turf/open/floor/carpet7_3/west, +/area/desert_dam/building/administration/office) +"nuR" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"nuW" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/purification) +"nvr" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nvw" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_cargo) +"nvK" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nvS" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"nvV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dJJ" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"nwb" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/temple) +"nwc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dJK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"nwm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nwp" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/administration/hallway) -"dJL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/control_room) -"dJN" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"dJP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"dJQ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"nwI" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_hydro) +"nwO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"nxb" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"nxk" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/surgery_room_one) +"nxn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/administration/lobby) -"dJR" = ( -/obj/structure/lz_sign/dam_sign/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"nxv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nxI" = ( +/obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"dJS" = ( -/obj/structure/platform{ - dir = 1 - }, +/area/desert_dam/exterior/landing_pad_one) +"nxU" = ( /obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/desert_dam/exterior/river_mouth/southern) -"dJT" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dJU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) -"dJV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/area/desert_dam/building/cafeteria/cafeteria) -"dJW" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"nyf" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"nyn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dJX" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/desert_dam/building/dorms/pool) -"dJY" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"nyp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/lobby) -"dJZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/building/administration/hallway) -"dKa" = ( -/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dKb" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"nyq" = ( +/turf/open/floor/coagulation/icon0_0, +/area/desert_dam/building/water_treatment_two/purification) +"nyx" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nyy" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nyA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"nyI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"nyL" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nyU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nyV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"nzh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/administration/hallway) -"dKc" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"nzn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet11-12" +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/west) +"nzq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/administration/overseer_office) -"dKd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet/edge{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"nzB" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_northwest) +"nzE" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/area/desert_dam/building/administration/meetingrooom) -"dKe" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"nzG" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"nzM" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nAk" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"dKf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"dKg" = ( -/obj/structure/prop/dam/van/damaged, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"dKh" = ( -/obj/structure/prop/dam/van, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"nAm" = ( +/obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_northwest) -"dKi" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/administration/overseer_office) -"dKk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/area/desert_dam/exterior/valley/south_valley_dam) +"nAo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"nAB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKl" = ( +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"nAF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"nAG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"nAJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"nAK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hangar" }, -/area/desert_dam/interior/dam_interior/break_room) -"dKm" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nAT" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nAZ" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dKn" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dKo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"nBb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/dorms/pool) -"dKp" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"nBi" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dKs" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"nBj" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"nBn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nBq" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nBw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKv" = ( -/obj/structure/window/reinforced{ +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/telecomm/lz1_south) +"nBJ" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/valley/valley_labs) +"nBS" = ( +/obj/structure/machinery/sentry_holder/colony{ dir = 8; - health = 80 + pixel_x = 24 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nBZ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"nCi" = ( +/obj/item/stack/medical/advanced/ointment/predator, +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"nCm" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"nCN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/disposals) -"dKx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dKz" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"nCO" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nCS" = ( +/obj/item/stool, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"nCT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"nDd" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"nDq" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"nDE" = ( +/turf/open/desert/excavation/component5/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"nDF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dKA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nDH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/river/riverside_east) -"dKB" = ( -/obj/structure/platform{ +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nDJ" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"nDK" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKE" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"nDL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"nDM" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"nDY" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"dKF" = ( -/turf/open/floor/prison{ - icon_state = "blue" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"nEf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dKG" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nEj" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"nEs" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"nEt" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"nEB" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_one) +"nEL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nEM" = ( +/turf/closed/wall/hangar{ + name = "Elevator Shaft"; + unacidable = 1; + hull = 1 + }, +/area/shuttle/trijent_shuttle/lz2) +"nER" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"nFh" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"nFD" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/north_valley_dam) +"nFJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/dorms/pool) -"dKI" = ( /obj/structure/bed/chair{ dir = 4 }, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"nGb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"nGn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"nGr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"nGD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot/north, +/area/desert_dam/building/water_treatment_one/garage) +"nGX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKJ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) +"nHm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKK" = ( -/obj/structure/platform{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nHv" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKL" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nHz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"nHL" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/building/water_treatment_two) +"nHT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/area/desert_dam/exterior/river_mouth/southern) -"dKM" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"nHU" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKN" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"nIv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/holding) +"nIX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKO" = ( -/obj/effect/blocker/toxic_water, -/turf/open/gm/river/desert/shallow_corner{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"nJd" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/area/desert_dam/exterior/river_mouth/southern) -"dKP" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/desert_dam/exterior/river_mouth/southern) -"dKQ" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river_mouth/southern) -"dKR" = ( -/obj/effect/blocker/toxic_water, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river_mouth/southern) -"dKS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dKT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"nJt" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"nJz" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/southwest) +"nJL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "whiteyellowcorner" + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKU" = ( -/obj/structure/bed/chair{ +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nJS" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"nLe" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_mining) +"nLq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"nLF" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"nLI" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"nLY" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/north_valley_dam) +"nMu" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"nMC" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ + dir = 8; + name = "Security Desk" + }, +/obj/structure/machinery/door/window/brigdoor/westright{ dir = 4; - icon_state = "whiteyellowcorner" + name = "Security Desk" }, -/area/desert_dam/interior/dam_interior/break_room) -"dKV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/turf/open/floor/dark2, +/area/desert_dam/building/water_treatment_two/lobby) +"nNe" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"nNn" = ( +/turf/open/desert/excavation/component8/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"nNw" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/interior/dam_interior/break_room) -"dKW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"nNy" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"nNz" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"nNI" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dKY" = ( +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"nOx" = ( +/turf/open/desert/excavation/component7/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"nOG" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"nOW" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"nPa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/dorms/hallway_northwing) +"nPe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"nPk" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nPo" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"nPE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"nPG" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/break_room) -"dKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Break Room" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"nPM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"nPX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nQe" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal4" }, -/area/desert_dam/interior/dam_interior/break_room) -"dLa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"nQf" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"nQo" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_northwest) +"nQu" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"nQI" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"nQV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"nRg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dLd" = ( -/obj/structure/machinery/door/window/northright{ - dir = 8 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"nRm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science{ + req_one_access = null }, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nRn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown3" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"nRJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"nRU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"nRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/dam_interior/disposals) -"dLe" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"nRZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/desert_dam/interior/dam_interior/disposals) -"dLf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/river/riverside_east) -"dLg" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"nSb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"nSh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Overseer's Office" }, -/area/desert_dam/exterior/river/riverside_east) -"dLh" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/overseer_office) +"nSx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"dLi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dLj" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"nSy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/river/riverside_east) -"dLk" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"dLl" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"nSF" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"nSK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"dLn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"nSM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"nSS" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nTb" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, -/area/desert_dam/interior/dam_interior/break_room) -"dLp" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"nTe" = ( /obj/structure/platform{ - dir = 8 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ dir = 1 }, -/area/desert_dam/exterior/river/riverside_east) -"dLq" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLr" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_central_south) -"dLt" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +"nTp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"nTu" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"nTv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nTF" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/central_caves) +"nTG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"nTX" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"nUj" = ( +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"nUn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"nUw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stool, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"nUO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"nUZ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"nVm" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"nVB" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_east) -"dLu" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dLv" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ +"nVP" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dLz" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"nVT" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dLA" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"nWh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "damtemple_intact" }, -/area/desert_dam/exterior/river/riverside_east) -"dLC" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"nWu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office2) +"nWz" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"nWG" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"nWO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dLF" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"nXa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"nXb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dLI" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLJ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_central_south) -"dLK" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_central_south) -"dLL" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/desert_dam/exterior/river/riverside_central_south) -"dLM" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_central_south) -"dLN" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"nXu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLO" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLP" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) -"dLQ" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dLR" = ( -/obj/structure/platform{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"nXy" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"nXz" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLS" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 6 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"nXE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dLT" = ( -/obj/structure/platform{ +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/hanger) +"nXF" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"nXV" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLU" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/exterior/river/riverside_east) -"dLV" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"dLW" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, -/area/desert_dam/exterior/river/riverside_east) -"dLX" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_east) -"dLY" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"nXY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"nYf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/mining/workshop) +"nYh" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lantern, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"nYk" = ( +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"dLZ" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ +"nYs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"nYu" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/obj/structure/machinery/light{ dir = 8 }, -/area/desert_dam/exterior/river/riverside_east) -"dMf" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"nYH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/turf/open/gm/river/desert/deep, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"nZf" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"nZl" = ( +/turf/open/floor/coagulation/icon8_7_2, /area/desert_dam/exterior/valley/valley_mining) -"dMg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nZu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/breakroom) +"nZv" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"nZz" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"nZE" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"nZN" = ( +/obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"nZT" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/bar_valley_dam) +"nZZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" }, -/area/desert_dam/interior/dam_interior/break_room) -"dMo" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"oan" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"oao" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/control_room) +"oav" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 1; + pixel_y = 31 }, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"oaX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dMq" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"dMw" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"obo" = ( +/obj/structure/flora/pottedplant, +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/desert_dam/exterior/river/riverside_east) -"dMx" = ( -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/building/administration/lobby) +"obs" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"obv" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/interior/dam_interior/break_room) -"dMC" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/weapon/harpoon/yautja{ + name = "Alien Harpoon" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"obJ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/desert_dam/interior/dam_interior/break_room) -"dMN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 1 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dMP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitepurplecorner" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/chemistry) -"dMV" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"obK" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"dMX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dMY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 150 +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"obW" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"obZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"occ" = ( +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ocs" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"ocP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"dNa" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/lobby) +"ocY" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_east) +"odh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/poddoor/shutters{ + dir = 2 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dNf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"odq" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 }, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"odv" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"oej" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/central) +"oer" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"oex" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"oey" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"oeH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"oeZ" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"ofg" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, /turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dNh" = ( -/obj/item/seeds/riceseed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/exterior/landing_pad_two) +"ofm" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"ofw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ofB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dNi" = ( -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"ofF" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"ofP" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ofT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southeast, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"ogf" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" }, -/area/desert_dam/building/water_treatment_one/lobby) -"dNk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whiteyellowcorner" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"ogg" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"ogr" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"ogF" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"ogJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"ogQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"dNl" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"ogV" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/desert_dam/interior/dam_interior/central_tunnel) -"dNm" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"ohc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"oht" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/obj/item/paper_bundle, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ohw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/disposals) -"dNo" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"ohz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"ohA" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNp" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"dNr" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"dNs" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/building/water_treatment_one/purification) -"dNt" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"ohK" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar2"; + name = "\improper Cargo Bay Hangar" }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNu" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/building/warehouse/warehouse) +"ohW" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"ohY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"oic" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"oil" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oim" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ dir = 1 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"oir" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNv" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNw" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"oiw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNx" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"oiN" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/virology_wing) +"ojz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dNB" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/desert_dam/interior/dam_interior/disposals) -"dNC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"ojC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dNF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/disposals) -"dNG" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/CE_office) +"ojT" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "whiteyellow" +/turf/open/floor/whiteyellow/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"oku" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/security/prison) +"okx" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/overseer_office) +"okD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/break_room) -"dNI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"okI" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/red/northwest, +/area/desert_dam/building/security/lobby) +"okL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"okU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_medical) -"dNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"okW" = ( +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"okY" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"olL" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dNS" = ( -/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"olM" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, /area/desert_dam/exterior/valley/valley_hydro) -"dNT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dNU" = ( -/obj/structure/disposalpipe/segment, +"omj" = ( +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/telecomm/lz2_containers) +"omH" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"omI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"dNV" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"omQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_medical) -"dNW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dNX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dNY" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"omV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/water_treatment_one/control_room) -"dOa" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/building/water_treatment_one/control_room) -"dOc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dOe" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dOf" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"omX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/control_room) -"dOg" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"onh" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"onI" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"onZ" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"dOh" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"ooi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOi" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) +"ool" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oop" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"oor" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"ooJ" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"ooM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOk" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/equipment) -"dOl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ooQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"opi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOm" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"opm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOn" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"opx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oqi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/morgue) -"dOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/break_room) -"dOp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Restroom" + icon_state = "pipe-j2" }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"oqq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/building/medical/break_room) -"dOr" = ( -/obj/structure/bed/chair, +"oqt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"oqu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"oqx" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oqy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/chemistry) -"dOu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"oqA" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oqC" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"oqK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"orr" = ( +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/building/water_treatment_one/purification) +"orz" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"orN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"orS" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"orW" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"osa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_medical) +"osj" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/interior/caves/central_caves) +"osv" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/north_valley_dam) +"osQ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"otc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -54823,296 +33817,383 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOw" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dOx" = ( -/obj/item/alien_embryo, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"dOy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/morgue) -"dOA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"dOC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"ote" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOD" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOE" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/medical/ointment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOG" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"oti" = ( +/obj/structure/disposalpipe/junction, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"otm" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"otn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"oto" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,7" + }, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"otF" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/treatment_room) +"otN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Secure Tech Storage" }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"otT" = ( +/obj/structure/machinery/door/window/northright{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/disposals) +"oud" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"ouL" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"ouN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"ouT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/area/desert_dam/building/medical/west_wing_hallway) -"dOI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/hallway_westwing) +"ouV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Freezer" }, -/area/desert_dam/building/medical/morgue) -"dOJ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"ovj" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"ovw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"ovD" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/lobby) +"ovH" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/interior/caves/central_caves) +"ovM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"ovV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/area/desert_dam/building/medical/break_room) -"dOM" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"owb" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"owd" = ( +/turf/open/floor/filtrationside/northeast, +/area/desert_dam/exterior/valley/valley_mining) +"owO" = ( +/turf/open/floor/warnwhite/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"owP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOP" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"owV" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/hammer, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"oxg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/north_wing_hallway) +"oxm" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"oxG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/chemistry) -"dOT" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"oxT" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oye" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/morgue) -"dOV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"oyf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dOW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/medical/break_room) -"dOX" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oyi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOY" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/lobby) +"oyj" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"dOZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"oyk" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_stormlock_central"; - name = "\improper Storm Lock"; - unacidable = 0 +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oyt" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"oyC" = ( +/turf/open/desert/excavation/component6/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"oyE" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/west_tunnel) -"dPa" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"oyH" = ( +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northwest) +"oyJ" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"oyO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"oyP" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_south) +"oze" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitepurple" - }, -/area/desert_dam/building/medical/chemistry) -"dPb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" + dir = 8 }, -/area/desert_dam/building/medical/morgue) -"dPd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "whitepurplecorner" +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"ozk" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/building/medical/chemistry) -"dPe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"ozm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/medical/break_room) -"dPf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dPj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"ozo" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"ozq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"ozs" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/medical/chemistry) -"dPk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"ozu" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ozx" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"ozA" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_south) +"ozC" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"ozK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ozR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dPl" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"ozX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ozY" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"oAi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"oAv" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_civilian) +"oAK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"oAM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"oAW" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"oBh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"oBp" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"oBw" = ( +/obj/structure/machinery/botany/extractor, +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"oBF" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPr" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oBG" = ( +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"oBP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river_mouth/southern) +"oBR" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"oBV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dPs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"oCd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"oCh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dPt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"oCl" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/control_room) +"oCp" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"oCr" = ( +/obj/structure/filtration/machine_96x96/filtration, +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"oCu" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal12" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPu" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"oCA" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oCM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"oCN" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/exterior/telecomm/lz2_containers) +"oCO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -55120,890 +34201,1611 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"oCR" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"oCZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oDg" = ( +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"oDq" = ( +/turf/open/floor/cult, +/area/desert_dam/building/church) +"oDF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPy" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"oDJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oDS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPG" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/mining/workshop_foyer) +"oDT" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"oDW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/lobby) -"dPH" = ( +/obj/item/clothing/glasses/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oEa" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"oEb" = ( +/obj/structure/target, +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"oEe" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dPI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"oEi" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"oEI" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/control_room) +"oEQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"oER" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"oEW" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_civilian) +"oFA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"oFN" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"oFX" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 8 }, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oGa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"oGm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"oGo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oGN" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"oHd" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"oHm" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/lobby) +"oHt" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_hydro) +"oHA" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/raisins, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"oHH" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"oHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"oIi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/workshop) +"oIu" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"oID" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"oIE" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"oIO" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"oIR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"oJp" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) -"dPS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +"oJE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_medical) -"dPT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"oJN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_wilderness) +"oJS" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office1) +"oJU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/obj/structure/machinery/sentry_holder/colony{ dir = 8; - icon_state = "sterile_white" + pixel_x = 24 }, -/area/desert_dam/building/medical/lobby) -"dPU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"oJZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"oKa" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"oKj" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"oKn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"oKw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"oKG" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"oKJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"oKR" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/item/clothing/suit/storage/CMB, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"oKV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dPW" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_hydro) +"oKZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/treatment_room) +"oLe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dPX" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/north_wing_hallway) -"dPY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dPZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"oLN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_wilderness) +"oLX" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"oMf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"oMi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"dQa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Lobby" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"oMt" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_central_north) +"oMZ" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"oNg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/lobby) -"dQb" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"oNj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"oNp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dQc" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"oNr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oNx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/lobby) -"dQd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/prison) +"oNB" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"oNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"oOp" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dQf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"oON" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"oOQ" = ( +/turf/open/floor/whitebluecorner, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oPc" = ( +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"oPk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stock_parts/smes_coil, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"oPs" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, -/area/desert_dam/building/medical/lobby) -"dQj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/greengrid, +/area/desert_dam/interior/dam_interior/engine_room) +"oPy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"oPN" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oPR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/central_tunnel) +"oPY" = ( +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/area/desert_dam/building/medical/primary_storage) -"dQm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"oQE" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oQF" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"oQH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"oQP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"oQS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"oQT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"oRd" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_two) +"oRp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Garage" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"oRt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/building/administration/hallway) +"oRD" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_mining) +"oRJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/lobby) -"dQq" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"oRL" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, +/turf/open/floor/carpet/edge/northwest, +/area/desert_dam/building/administration/meetingrooom) +"oRO" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"oRW" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"oSl" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/interior/caves/east_caves) +"oSt" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"oSE" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"oSS" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_two) +"oSV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"oTd" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"oTf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"oTC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/exterior/valley/south_valley_dam) +"oTV" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"oTW" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/valley/valley_labs) +"oUm" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"oUr" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"oUt" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"oUz" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"oUE" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"oUM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"oUN" = ( +/obj/structure/window/framed/chigusa, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"oVA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQs" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"oVO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"oVX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/desert_dam/building/medical/lobby) -"dQt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"oWa" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/medical/primary_storage) -"dQu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_crashsite) +"oWf" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"oWs" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"oWG" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"oWK" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"oWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQy" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"oWW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"oXd" = ( +/turf/open/floor/prison/darkpurplecorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"oXh" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"oXD" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"oXK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"oXS" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"oXV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/lobby) -"dQz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"oXW" = ( +/turf/open/floor/whitegreencorner/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"oYa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"oYq" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/northwest) +"oYu" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/building/warehouse/warehouse) +"oYz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/desert_dam/building/medical/lobby) -"dQA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"oYF" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQB" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"oZc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"oZh" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQC" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pal" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pao" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/building/security/holding) +"paw" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_labs) +"paT" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"pba" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"pbb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"pbj" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dQD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"pbo" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/prison/whitered/southwest, +/area/desert_dam/building/medical/primary_storage) +"pbA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/lobby) -"dQE" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"pbB" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"dQF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"pbC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/medical/lobby) -"dQG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pbD" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"dQI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"pbG" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_northwest) +"pcA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/area/desert_dam/building/medical/surgery_room_one) -"dQJ" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pcT" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/lobby) +"pcY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"pdj" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"pdk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Decontamination" }, -/area/desert_dam/building/medical/lobby) -"dQK" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"pdz" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/southwest) +"pdC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"pdX" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/lobby) -"dQL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"pel" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"peF" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/north_valley_dam) +"peH" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 2; - name = "\improper Medical Lobby" + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"peR" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pfa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/building/medical/lobby) -"dQM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/prison/whitegreen/east, /area/desert_dam/building/medical/west_wing_hallway) -"dQO" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgery_room_one) -"dQP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dQQ" = ( +"pfw" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"pfE" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/surgery_room_one) -"dQR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Emergency Room" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/medical/emergency_room) -"dQX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pfG" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dQY" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"pfR" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"pfS" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_northwest) +"pfU" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/area/desert_dam/building/medical/emergency_room) -"dRc" = ( -/obj/structure/pipes/standard/simple/hidden{ +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pgd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"pgu" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"pgv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"pgD" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/CE_office) +"pgM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Filtration" }, -/area/desert_dam/building/medical/emergency_room) -"dRd" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"pgS" = ( +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"pgT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/administration/overseer_office) +"pib" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"pif" = ( +/obj/docking_port/stationary/trijent_elevator/empty{ + id = "trijent_engineering"; + name = "Engineering Elevator"; + airlock_exit = "east"; + airlock_area = /area/shuttle/trijent_shuttle/engi; + elevator_network = "A" }, -/area/desert_dam/building/medical/emergency_room) -"dRe" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/engi) +"pir" = ( +/obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"pis" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"piK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"piT" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"dRf" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"piU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"pjb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"pjg" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_south) +"pjo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"pjp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/building/medical/emergency_room) -"dRg" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"pjv" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"pjw" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"pjP" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pjZ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"pke" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"pkn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"pko" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pkq" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/church) +"plg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/desert_dam/building/medical/emergency_room) -"dRh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"plm" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"plo" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"plx" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_hydro) +"ply" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/mining/workshop) +"plC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/emergency_room) -"dRi" = ( -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, -/area/desert_dam/building/medical/treatment_room) -"dRj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"plD" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"plE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_hydro) +"plG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRl" = ( -/obj/effect/decal/cleanable/blood{ +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "gib6" + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"plJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"dRm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"dRn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper CMO's Officer" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/CMO) +"pmx" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pmG" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/area/desert_dam/building/medical/emergency_room) -"dRo" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pmK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"pmN" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/area/desert_dam/building/medical/emergency_room) -"dRp" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pnp" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"pnx" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/primary_storage) +"pnQ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pof" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_south) +"poi" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"pot" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/pillbottles, +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"pov" = ( +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"poD" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"poH" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/desert_dam/building/medical/emergency_room) -"dRq" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"poP" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/landing_pad_one) +"poV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_south) +"poX" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ppl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"ppw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"ppB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"dRr" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"ppK" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_central_south) +"ppL" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"dRs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_south) +"pqa" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pql" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"pqt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"pqx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"pqB" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pqJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"prd" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"prg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"prh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"prw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRv" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"prx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"prD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRC" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"prN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"prO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRD" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"prV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRE" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"psi" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"pso" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"psv" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"psx" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/central_caves) +"psI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/candy, +/obj/item/reagent_container/food/snacks/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"psS" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"psW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ptx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"ptJ" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/area/desert_dam/building/medical/emergency_room) -"dRF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/floor/prison/whitered/southeast, +/area/desert_dam/building/medical/primary_storage) +"ptM" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"ptX" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/building/medical/emergency_room) -"dRG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"pub" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"pud" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/substation/northwest) +"puf" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dRH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pui" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"puD" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"puM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dRI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"puX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"puY" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"pva" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/medical/emergency_room) -"dRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"pvj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"pvI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"pvL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"pvZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/south_valley_dam) +"pwq" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"pwv" = ( +/obj/structure/platform{ dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"pwA" = ( +/turf/open/floor/coagulation/icon7_7, +/area/desert_dam/building/water_treatment_two) +"pwD" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"pwH" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"pwL" = ( +/obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"pwV" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pxa" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/area/desert_dam/building/medical/treatment_room) -"dRL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"pxe" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pxl" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office1) +"pxq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"pxu" = ( +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"pxC" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"pyV" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"pzk" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"pzv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"pzx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "whitegreen" + icon_state = "pipe-j2" }, -/area/desert_dam/building/medical/treatment_room) -"dRM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"pzA" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"pzC" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"dRN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/junction{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"pzR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"pzV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pzW" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"pAp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"pAr" = ( +/turf/open/floor/prison/yellow/southeast, +/area/desert_dam/building/hydroponics/hydroponics) +"pAy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pAB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"pAL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/treatment_room) -"dRO" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"pAM" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"pBe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"pBu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pBF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_hydro) +"pBI" = ( +/obj/structure/toilet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"pBJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"pBN" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"pCk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"pCt" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"pCw" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_wing) +"pCB" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" }, -/area/desert_dam/building/medical/treatment_room) -"dRP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"pCD" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"pCS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/lobby) +"pDg" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/church) +"pDj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/medical/treatment_room) -"dRQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"pDo" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"pDB" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"pDE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"pDK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"pDM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "\improper Surgery" + name = "\improper Hydroponics" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"pDT" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"pEh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -56011,9502 +35813,14432 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"pEz" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/corsat/squareswood/north, +/area/desert_dam/interior/caves/temple) +"pEZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Backroom" }, -/area/desert_dam/building/medical/treatment_room) -"dRR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" +/turf/open/floor/cult, +/area/desert_dam/building/church) +"pFt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"pFy" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pFD" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cafeteria) +"pFV" = ( +/obj/structure/toilet, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"pGd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"pGl" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) +"pGn" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"pGC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pGF" = ( +/obj/structure/window/framed/hangar/reinforced, +/turf/open/floor/plating, +/area/desert_dam/interior/dam_interior/garage) +"pGU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_crashsite) +"pGX" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_labs) +"pGY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"pHg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"pHh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"pHs" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"pHE" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"pHO" = ( +/turf/open/desert/excavation/component4/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"pHV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engine Room" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"pHX" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"pHY" = ( +/turf/open/desert/excavation/component6/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"pIb" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_cargo) +"pIe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRX" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"pIm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"pIp" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"pIw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pIK" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/north_tunnel) +"pIV" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"pJw" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"pJz" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSa" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"pJT" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/yellowcorner, +/area/desert_dam/building/hydroponics/hydroponics) +"pJW" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_telecoms) +"pKq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"pKr" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pKx" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"pKB" = ( +/obj/item/trash/c_tube, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"pKG" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pKL" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"pKR" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"pKT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_hydro) +"pKZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSc" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"pLg" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pLi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/dam_interior/tech_storage) +"pLq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"pLV" = ( +/turf/open/floor/coagulation/icon1_7, +/area/desert_dam/exterior/valley/valley_hydro) +"pLZ" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"pMa" = ( +/turf/open/desert/excavation/component1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"pMd" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pMl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSd" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"pMm" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"pMn" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"pMr" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/yellow, +/area/desert_dam/building/hydroponics/hydroponics) +"pMx" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pMC" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/overseer_office) +"pMH" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"pMJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, /area/desert_dam/building/medical/east_wing_hallway) -"dSe" = ( +"pNg" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"pNJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"pNL" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/hallway) +"pNM" = ( +/obj/structure/tunnel, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/east_caves) +"pNU" = ( +/turf/open/desert/excavation/component3/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"pNW" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"pOj" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"pOn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"pOB" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"pPl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"pPq" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"pPA" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_two) +"pPG" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"pPH" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river_mouth/southern) +"pPR" = ( +/turf/open/floor/prison/darkredcorners2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"pQl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"pQD" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"pQL" = ( +/turf/open/desert/rock/deep/rock4, +/area/desert_dam/interior/caves/temple) +"pQU" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/desert_dam/building/medical/emergency_room) -"dSf" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/lobby) +"pQV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/area/desert_dam/building/medical/emergency_room) -"dSg" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"pQW" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dSh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/emergency_room) -"dSi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"pRi" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"pRl" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/emergency_room) -"dSj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_cargo) +"pRp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"pRF" = ( +/obj/structure/toilet, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"pRN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/emergency_room) -"dSk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"dSl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"pRT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"pSf" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/northwest, /area/desert_dam/building/medical/treatment_room) -"dSm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +"pSk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/warehouse) +"pSo" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/warden) +"pSp" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"dSn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"pSU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/medical/east_wing_hallway) -"dSq" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/prison/whitepurple/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"pTd" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"pTe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"pTn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dSr" = ( -/obj/item/frame/table, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"pTy" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dSs" = ( -/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/dam_interior/smes_backup) +"pTS" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"pUx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/medical/emergency_room) -"dSt" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"pUB" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dSu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"dSv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"pUE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/emergency_room) -"dSw" = ( -/obj/structure/machinery/medical_pod/sleeper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"pUO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/medical/emergency_room) -"dSx" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"pUR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/building/medical/emergency_room) -"dSy" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"pUW" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/medical/emergency_room) -"dSB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"pUZ" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/interior/dam_interior/hanger) +"pVi" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"pVk" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"pVr" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal11" }, -/area/desert_dam/building/medical/virology_wing) -"dSD" = ( -/obj/item/trash/semki, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"pVw" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hanger) +"pVC" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"pVD" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_central_south) +"pVR" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/interior/caves/central_caves) +"pWy" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"pWA" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"pWB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/building/medical/treatment_room) -"dSF" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"pWO" = ( +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"pWZ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"pXb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table, +/obj/item/storage/donut_box, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/hallway) +"pXh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"dSG" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pXi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Filtration" }, -/area/desert_dam/building/medical/virology_isolation) -"dSH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"pXs" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_wing) -"dSO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Containment Pen" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"dSS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/virology_isolation) -"dSU" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"pXt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"dSV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"pXI" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"pXO" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"pXS" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"pXT" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "whitegreen" + icon_state = "gib6" }, -/area/desert_dam/building/medical/virology_wing) -"dSW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Containment Pen" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"pYb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"pYk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"pYm" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"pYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"pYP" = ( +/turf/open/floor/prison/whitegreencorner/east, /area/desert_dam/building/medical/virology_wing) -"dSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"pYR" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"pYZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/medical/virology_isolation) -"dSY" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"pZd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"pZy" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"pZE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/virology_wing) -"dSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_two) +"pZM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"pZR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qad" = ( +/obj/structure/stairs{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"dTa" = ( -/obj/structure/machinery/chem_master, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"qav" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_central_north) +"qaN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"qbh" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"qbp" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/valley/valley_telecoms) +"qbC" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"qbE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"dTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/building/medical/virology_isolation) -"dTc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"qbQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/exterior/valley/valley_wilderness) +"qbT" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"dTd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qbW" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/virology_isolation) -"dTf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qcc" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"qcs" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/disposals) +"qcE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qcQ" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/building/medical/virology_isolation) -"dTg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"qdh" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" }, -/area/desert_dam/building/medical/virology_isolation) -"dTh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_one/purification) +"qdw" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/building/security/prison) +"qdB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Office" }, -/area/desert_dam/building/medical/virology_wing) -"dTi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"qdF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"qdH" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"qem" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"qeQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qeR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/medical/virology_wing) -"dTj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"qeX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"dTk" = ( -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"qfl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"qfr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"dTl" = ( -/obj/structure/window/framed/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/medical/virology_isolation) -"dTm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"qfI" = ( +/obj/structure/flora/bush/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"qfJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"dTn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"qfQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"qfV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/virology_wing) -"dTo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qgc" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qgn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qgG" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"dTp" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"qgP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/medical/virology_wing) -"dTs" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"dTv" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"qhc" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/treatment_room) +"qhn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dTx" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qhq" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"dTA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"qhz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"qhF" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dTB" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/largecrate/random/secure, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_labs) +"qhH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"qhP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"qig" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dTH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qiy" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,2" }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"dTI" = ( -/turf/open/desert/rock, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"dTK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"qiK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dTL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dTP" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"qiL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitepurple, +/area/desert_dam/building/medical/chemistry) +"qjf" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"qjD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dTQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_stormlock_north2"; + name = "\improper Storm Lock" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dTX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qjY" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dTY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dTZ" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qkb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"qki" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"qkk" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"qkE" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood/alt, +/area/desert_dam/building/security/detective) +"qkJ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUb" = ( +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qkW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/yellowcorner/north, /area/desert_dam/building/hydroponics/hydroponics) -"dUc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Kitchen" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dUd" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/desert_dam/building/cafeteria/cafeteria) -"dUe" = ( +"qkX" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/storage/belt/utility/full, +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"qlf" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/poddoor/shutters{ - dir = 2 +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qlv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"qlB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dUf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"qlG" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_wilderness) +"qlO" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"qlT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"qmq" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"qmy" = ( +/obj/structure/surface/rack, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"qmI" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_one) +"qmY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dUg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"qni" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"qnu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/west_wing_hallway) +"qnI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUm" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qnO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/interior/wood, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"qof" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"qos" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qoy" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qoI" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qoO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"qpj" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"qpS" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"qqI" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"qqK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"qqP" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"qqR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUp" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellowfull" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"qqX" = ( +/obj/structure/lamarr, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"qre" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"qro" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qrr" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"qrw" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUr" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"qrx" = ( +/turf/open/floor/coagulation/icon7_1, +/area/desert_dam/exterior/valley/valley_hydro) +"qrC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"qsi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"qsp" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/temple) +"qss" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/hanger) +"qsX" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUt" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"qta" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"qtc" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dUu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/window/framed/colony, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dUv" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"qtd" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qtV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/bar/bar) +"qud" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"qug" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUw" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"quq" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"quw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"quY" = ( +/turf/open/floor/coagulation/icon6_8_2, +/area/desert_dam/exterior/valley/valley_hydro) +"qvo" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qvI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qvJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "yellowcorner" + id = null; + name = "\improper Elevator Lock" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/prison/cell_stripe/east, +/area/shuttle/trijent_shuttle/lz1) +"qvL" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"qvM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qwg" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"qwh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"qwv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"qwy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qwC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"qwU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"qxk" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/caves/central_caves) -"dUA" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/obj/item/clothing/head/soft/ferret, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_south) +"qxm" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/west) +"qxv" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"qxx" = ( +/obj/effect/decal/sand_overlay/sand2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"qxD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUB" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"qxE" = ( /obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qxJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qxO" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_two/purification) +"qxZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"qyn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qyx" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"qyG" = ( +/obj/structure/pipes/standard/simple/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"qyJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUC" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"qyW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"qzc" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qzk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"qzt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/seeds/soyaseed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"dUD" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"qzD" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"qzE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/prison/yellow/west, /area/desert_dam/building/hydroponics/hydroponics) -"dUF" = ( -/obj/effect/landmark/survivor_spawner, +"qzI" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"qzN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUG" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"qAq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"qAH" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"qAJ" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/control_room) +"qAP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"qAQ" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/lobby) +"qAS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"qAV" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"qBg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"qBi" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/exterior/valley/valley_wilderness) +"qBq" = ( /obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUJ" = ( -/obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"qBs" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"qBt" = ( +/obj/item/alien_embryo, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"qBv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"qBx" = ( +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_hydro) +"qBG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dUK" = ( -/obj/effect/decal/cleanable/vomit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qBK" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"qBV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dUL" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"qCt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"qCu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"qCT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"dUM" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"qCW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"qDq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dUN" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"qDA" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "purple-new-bridge" }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"dUO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, +"qDO" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_northwest) +"qEx" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_labs) +"qEC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"qEG" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/valley/valley_labs) +"qEJ" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVb" = ( +/area/desert_dam/exterior/valley/valley_medical) +"qEQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_dam_1"; + name = "\improper Hangar Shutters" + }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"qEX" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"qFv" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"qFy" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"qFN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"dVj" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qFS" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/lobby) +"qGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"qGd" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"dVk" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +"qGp" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"qGs" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"qGB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"qGD" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"qGG" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"qGH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qGI" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/interior/caves/temple) +"qGL" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"qGS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Detectives Office" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/detective) +"qGX" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"qHF" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qHU" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"qHZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVl" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/southern_hallway) +"qId" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/hallway) +"qIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"qIt" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dVm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"qIw" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"qIy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qIC" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"qIG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"qIH" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/lobby) +"qIL" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"qIM" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"qIZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"qJc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/warehouse) +"qJt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/garage) +"qJz" = ( +/turf/open/desert/excavation/component2/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qJH" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"dVn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qJT" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/west) +"qJW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"qJX" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"qKm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"qKy" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"qKB" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "sedimentation_0" }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/bun, -/obj/item/reagent_container/food/snacks/cheesewedge, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"qKD" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_south) +"qKG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qKI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dVp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"qKS" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"qLf" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"qLl" = ( +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) -"dVr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"qLz" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"qLX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/lobby) -"dVs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"qMf" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVt" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/obj/item/tool/lighter/zippo, +/obj/item/tool/lighter/zippo, +/turf/open/floor/prison/darkbrown2/northwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"qMh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qMs" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"qMu" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qMy" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"qNk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"dVu" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/lobby) -"dVv" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_cargo) +"qNl" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVw" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"qNM" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"qNO" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qNT" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"qOl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"qOv" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"qOx" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/workshop) +"qOz" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics) -"dVy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVz" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_2"; - name = "Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"qOE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"qPb" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/area/desert_dam/building/water_treatment_one/garage) -"dVA" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"qPg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"qPj" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"qPm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"qPt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"qPG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"qPI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/medical/garage) +"qPO" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"qPQ" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"qPU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"qPV" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"qQf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/garage) +"qQg" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"qQr" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"qQB" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_westwing) +"qQE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Breakroom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"qQK" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"qQS" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVE" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"qQX" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/dam_interior/engine_room) +"qRm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2/southwest, +/area/desert_dam/building/medical/break_room) +"qRq" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/west) +"qRs" = ( +/turf/open/floor/filtrationside/southwest, +/area/desert_dam/exterior/valley/valley_mining) +"qRM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qSc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"qSE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"qST" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"qTb" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/staffroom) +"qTe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Backup SMES" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dVH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"qTm" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"qTt" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"qTx" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_medical) +"qTE" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"qTL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"qTY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"qTZ" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"qUc" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dVI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"qUf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVJ" = ( -/obj/structure/barricade/wooden, +/obj/structure/surface/table, +/obj/item/tool/surgery/retractor, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"qUg" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"qVu" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"qVv" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"qVx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"qVy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVK" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"qVC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"qVE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/south_valley_dam) +"qVN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/robot, /turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dVL" = ( +/area/desert_dam/exterior/valley/valley_medical) +"qVT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/garage) -"dVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/southern_hallway) +"qWf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dVN" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/disposalpipe/junction{ dir = 1; - pixel_y = 24; - start_charge = 0 + icon_state = "pipe-j2" }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dVO" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"qWg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_telecoms) +"qWj" = ( +/turf/open/floor/coagulation/icon7_7_2, +/area/desert_dam/exterior/valley/valley_hydro) +"qWn" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/desert_dam/building/mining/workshop_foyer) +"qWs" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dVP" = ( -/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"qWG" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"qWU" = ( +/turf/open/floor/prison/redcorner/north, +/area/desert_dam/building/security/lobby) +"qWV" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_hydro) +"qXc" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"qXo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"qXq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_hydro) +"qXv" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"qXF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/building/water_treatment_two/lobby) +"qXZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/desert_dam/building/water_treatment_one/control_room) -"dVR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dVS" = ( -/obj/structure/disposalpipe/segment{ +"qYl" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/garage) -"dVT" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"qYm" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"qYw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"qZe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/southern_hallway) +"qZf" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_civilian) +"qZi" = ( +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/building/water_treatment_one/breakroom) +"qZC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"qZJ" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/caves/east_caves) +"qZL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"qZV" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/central_tunnel) +"rab" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rad" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dVU" = ( -/obj/structure/disposalpipe/junction, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/administration/hallway) +"rai" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"rar" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/hanger) +"rau" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ray" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" }, -/area/desert_dam/building/water_treatment_one/hallway) -"dVY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"raC" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rbe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"rbo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"rbK" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"rbL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dVZ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"rbX" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"rca" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/south_valley_dam) +"rcb" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"rch" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"rcv" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"rcA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"rcD" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstriping" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dWa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"rcF" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"dWd" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"rcK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dWe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"rcR" = ( +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/east_wing_hallway) +"rcZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dWf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"rde" = ( +/obj/structure/surface/table, +/obj/item/ashtray/bronze{ + pixel_x = -7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 6 }, -/obj/effect/decal/cleanable/blood/gibs/robot, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/whiteyellow/northwest, +/area/desert_dam/interior/dam_interior/garage) +"rdx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"rdD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rdI" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_wing) +"rdW" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"rea" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"rej" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"dWi" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"req" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"dWj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rew" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/pod/old{ + name = "Personal Computer" + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rey" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"rez" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"reK" = ( +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/exterior/valley/valley_mining) +"reP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"reT" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river_mouth/southern) +"reW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"rfm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"rft" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dWk" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_two) +"rfC" = ( +/obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"rfN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Garage Breakroom" }, -/area/desert_dam/building/hydroponics/hydroponics) -"dWl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/southeast, +/area/desert_dam/interior/dam_interior/garage) +"rfS" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/north_valley_dam) +"rfU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"rfY" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"rfZ" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"rgl" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/candy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"rgp" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dWm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"rgv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/seeds/riceseed, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"rgw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics) -"dWn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"rgy" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"rhc" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"rhe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWo" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rht" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"rhu" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"rhv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"rhP" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/desert_dam/building/water_treatment_one/control_room) -"dWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"dWs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"rih" = ( +/obj/structure/stairs{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_wilderness) +"riq" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/emergency_room) +"riQ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"dWu" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWy" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - name = "Security Cameras - Operations"; - network = list("chigusa_1") +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/candy, -/obj/item/reagent_container/food/snacks/bun, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"riV" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"rjo" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/interior/caves/central_caves) +"rjG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dWB" = ( -/obj/item/shard/shrapnel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"dWC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"rjH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"rjU" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"rka" = ( /obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"dWK" = ( +/obj/item/paper, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"rke" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rkt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"rkF" = ( /obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"dWM" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWN" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWO" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/cafeteria/cafeteria) -"dWP" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rlj" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"dWQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Mess Hall" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"dWT" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"rlR" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_south) +"rlU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dWV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dWW" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"rmb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dWZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXa" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/treatment_room) +"rmi" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"rmj" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10, +/turf/open/floor/wood, +/area/desert_dam/building/medical/break_room) +"rmm" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/asphalt/tile, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rmn" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXc" = ( -/obj/structure/desertdam/decals/road_stop, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/desert_dam/exterior/landing_pad_one) +"rms" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"rmt" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rmJ" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXf" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal3" +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz1_valley) +"rmK" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rmM" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/exterior/valley/valley_hydro) +"rmS" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"rmT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"rmZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/northeast) +"rnd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"rnB" = ( +/obj/structure/flora/grass/desert/heavygrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"rnL" = ( /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXm" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXn" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" - }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rnP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"rnQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXo" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"rnV" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rob" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" + icon_state = "road_edge_decal7" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/area/desert_dam/exterior/valley/valley_labs) +"rom" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"rot" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rou" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"roA" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"roH" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/garage) +"roJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"roM" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"roN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"dXq" = ( +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"rpb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"rpe" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/building/substation/central) +"rpu" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXr" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXs" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_telecoms) +"rpv" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rpL" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rpQ" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_hydro) +"rpT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/whiteyellowfull/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"rpX" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"rqi" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/barricade/wooden{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/lobby) +"rqp" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ + pixel_x = -32 }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXw" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rqw" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"rqz" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"rqI" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 4 }, +/obj/structure/barricade/wooden, /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_civilian) -"dXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dormitories" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXz" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXA" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"rqZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXB" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"rrn" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"dXD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXH" = ( -/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"dXI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXK" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"rrq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"rry" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"rrD" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rrG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rsk" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Patient Room 2" + }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"rsy" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"rsz" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"rsA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dXX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"rsE" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"rsN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"rsR" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/warnplate, +/area/desert_dam/building/substation/west) +"rsZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rtr" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/warehouse) +"rts" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"rup" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river_mouth/southern) +"ruv" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"ruA" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/building/water_treatment_two/purification) +"ruC" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/south_valley_dam) +"ruH" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ruO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"ruP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) -"dXY" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "green" +"ruS" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"rvd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dXZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"rvg" = ( +/turf/open/floor/coagulation/icon5_8, +/area/desert_dam/exterior/valley/valley_hydro) +"rvo" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"rvr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYa" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"rvG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"rvS" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rvU" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/mining/workshop_foyer) +"rwh" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dYc" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"rwn" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "greencorner" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"rwq" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYi" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"rwK" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/workshop) +"rxh" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/dorms/restroom) -"dYk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dYm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"rxy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"rxz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered, +/area/desert_dam/building/medical/chemistry) +"rxR" = ( +/turf/open/floor/prison/greencorner/west, +/area/desert_dam/building/dorms/hallway_northwing) +"rxS" = ( +/obj/docking_port/stationary/trijent_elevator/occupied{ + id = "trijent_lz1"; + name = "Lz1 Elevator"; + elevator_network = "A"; + airlock_area = /area/shuttle/trijent_shuttle/lz1; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/A }, -/area/desert_dam/building/dorms/restroom) -"dYx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Showers" +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz1) +"ryj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"ryD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"dYy" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"ryW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/restroom) -"dYz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"rza" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"rzr" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rzv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"rAa" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/desert_dam/building/dorms/restroom) -"dYC" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden{ + dir = 9 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYD" = ( -/obj/structure/surface/table, -/obj/item/ashtray/bronze, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"rAo" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"rAt" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_south) +"rAA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_northwing) -"dYK" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"dYM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rAG" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/south_valley_dam) +"rAM" = ( +/obj/structure/bed, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"rAP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dYN" = ( -/obj/structure/machinery/light{ +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rBo" = ( +/turf/open/desert/excavation/component8/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"rBu" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"rBU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"rCp" = ( +/obj/structure/platform/mineral/sandstone/runed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"rCr" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rCH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/dark, +/area/desert_dam/building/security/warden) +"rCS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Containment Pen" }, -/area/desert_dam/building/dorms/restroom) -"dYR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"rDg" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/warehouse/breakroom) +"rDh" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dYS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rDn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"dYX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"rDW" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_hydro) +"rEa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rEb" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"rEk" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"rEs" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"rEu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; - icon_state = "green" + name = "\improper Virology Lab Cell" }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZf" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"rEX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") + }, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rFi" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/lz2) +"rFk" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"rFl" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"rFo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rFx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"rFP" = ( +/turf/open/desert/excavation/component3/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"rFU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/building/dorms/hallway_northwing) -"dZk" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rFV" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_civilian) -"dZl" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"dZm" = ( -/obj/structure/pipes/vents/pump{ +"rFX" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northwest) +"rGg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_mining) +"rGy" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rGB" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"rGO" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZn" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rGX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_crashsite) +"rHe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/mining/workshop) +"rHo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"rHt" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"rHw" = ( +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"rHx" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rHG" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"rHQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"dZz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rIg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/armory) +"rIl" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"rIm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"rIq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dZG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"rIy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"rIC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dZH" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) -"dZI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"rIK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"rIU" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/medical/break_room) +"rJl" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"rJt" = ( +/obj/structure/bed/chair{ dir = 8 }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"rJv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"rJD" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rJG" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"rJK" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rJO" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_cargo) +"rJW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"rKc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/dorms/pool) -"dZL" = ( -/turf/open/gm/river{ - name = "pool" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"rKg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Lobby" }, -/area/desert_dam/building/dorms/pool) -"dZM" = ( -/turf/open/gm/river{ - color = "#995555"; - name = "pool" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"rKp" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/east_wing_hallway) +"rKG" = ( +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"rKR" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"dZN" = ( -/turf/open/gm/river{ - color = "#990000"; - name = "pool" +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"rKS" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"rLa" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/prop/dam/truck/damaged, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"rLw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"rLH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dZO" = ( -/obj/item/toy/inflatable_duck, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"rLQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"dZR" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"rLS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZS" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"rMh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rMn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"rMq" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"rMr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZU" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZX" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rMK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"rMP" = ( +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"rMX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"dZY" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "green" + icon_state = "pipe-j2" }, -/area/desert_dam/building/dorms/hallway_westwing) -"ead" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rNo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"eae" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"rNt" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"rNy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/lobby) -"eag" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rNB" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_cargo) +"rND" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/lobby) -"eak" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"eal" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"eau" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"rOb" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"rOg" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/garage) -"eav" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"eaw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"rOo" = ( +/obj/structure/fence, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"rOp" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"rOA" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"rOB" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/area/desert_dam/building/water_treatment_one/hallway) -"eaz" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"rOJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaA" = ( -/obj/item/stool, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rOL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaC" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"rOT" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"rOW" = ( +/obj/effect/blocker/toxic_water, +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"rPb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaH" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/emails, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"rPd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Xenoflora" }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"rPp" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/cheesie, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"eaL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"rPE" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_telecoms) +"rPF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"rQd" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_two) +"rQF" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"rQM" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"rQO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rQQ" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, -/area/desert_dam/building/dorms/restroom) -"eaN" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/prison{ - icon_state = "floor_marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"rQX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/security/armory) -"eaO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/hallway) -"eaP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rQZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"rRi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"rRl" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaQ" = ( -/obj/item/tool/hatchet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"rRm" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/medical/break_room) +"rRp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_hydro) +"rRv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_westwing) -"eaT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rRQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"rRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"rSd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"rSf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/garage) -"eaU" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"eaV" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"rSi" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/north_valley_dam) +"rSp" = ( +/turf/open/floor/whitebluecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"rSG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"rSJ" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"eaW" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/desert_dam/building/water_treatment_one/hallway) -"eaX" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_cargo) +"rSR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"eba" = ( -/obj/structure/machinery/light, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"rTa" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"rTb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"rTe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"ebb" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rTf" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"ebc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/southern_hallway) +"rTm" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_crashsite) +"rTJ" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"ebf" = ( -/obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"ebi" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, -/area/desert_dam/building/dorms/pool) -"ebj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rTL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"ebk" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"ebn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"rTM" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"ebo" = ( -/obj/item/weapon/gun/revolver/small, -/turf/open/floor/prison{ - icon_state = "whitegreenfull" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"ebp" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_east) +"rTR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"rTS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/dorms/pool) -"ebq" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_backup) +"rTU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/dorms/pool) -"ebs" = ( -/turf/closed/wall/hangar{ +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/central) +"rTV" = ( +/turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/exterior/rock) -"ebt" = ( -/obj/structure/bed/chair{ +"rUn" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rUs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellowcorners2, +/area/desert_dam/building/security/prison) +"rUw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/lobby) -"ebu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_one/lobby) -"ebx" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"rUK" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rUS" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"rVd" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"rVo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"eby" = ( +/area/desert_dam/building/mining/workshop) +"rVI" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"rVL" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"ebz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"rVP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"ebA" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"rWo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"ebB" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/purification) -"ebC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ebD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ebE" = ( -/obj/structure/machinery/vending/coffee, +/turf/open/desert/excavation/component6/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"rWs" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_telecoms) +"rWw" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"rWC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "whiteyellow" + icon_state = "pipe-j2" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebF" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/southern_hallway) +"rWE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"rWG" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"rWM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"rWQ" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"rWY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/equipment) -"ebG" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"rWZ" = ( +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_mining) +"rXe" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"rXk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper East Filtration" }, -/area/desert_dam/exterior/valley/valley_hydro) -"ebJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"rXn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"rXs" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"rXw" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"rXC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"rXD" = ( +/obj/structure/stairs, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"rXF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/seeds/riceseed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rXI" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebK" = ( -/obj/structure/flora/pottedplant, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"rYh" = ( +/obj/structure/machinery/vending/hydroseeds, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor{ +/turf/open/floor/whitegreen/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"rYi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft{ dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebL" = ( -/obj/structure/machinery/light{ - dir = 4 + name = "Security Desk" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Security Desk" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebM" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/paper_bin, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/desert_dam/building/water_treatment_one/equipment) -"ebN" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/lobby) +"rYl" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_medical) +"rYn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"ebO" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteyellowcorner" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"rYs" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/west_tunnel) +"rYO" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ebP" = ( -/obj/structure/machinery/light{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"rYX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"rZd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"ebQ" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +"rZe" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rZl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/control_room) -"ebT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ebU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"rZq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/desert_dam/building/substation/southwest) -"ebW" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/smes_main) +"rZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"rZL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"rZU" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/building/water_treatment_one/hallway) -"ebZ" = ( -/obj/structure/window/framed/hangar/reinforced, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/garage) -"ece" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sab" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"saf" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/garage) -"ecf" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_south) +"sal" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/garage) -"ecg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"sam" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = null; + name = "\improper Elevator Lock" }, +/turf/open/floor/prison/cell_stripe/west, +/area/shuttle/trijent_shuttle/omega) +"san" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"sax" = ( +/turf/open/floor/darkredcorners2/east, +/area/desert_dam/building/administration/lobby) +"saA" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_northwest) +"saG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"saN" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_mining) +"sbj" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/south_valley_dam) +"sbx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/caves/temple) +"sbz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"sbF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"sbY" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_labs) +"scf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1 + }, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"scg" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ech" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/landing_pad_one) +"scm" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"scC" = ( +/turf/open/floor/vault2/north, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"scG" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/head/beret/sec/warden, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/warden) +"scH" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"eci" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_cargo) +"scJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"scL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/tile, +/area/desert_dam/interior/caves/east_caves) +"scR" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/interior/caves/central_caves) +"sdp" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/building/water_treatment_one/purification) +"sdr" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"eck" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"sdt" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"sdy" = ( +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sdA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"sdI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"sdT" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sdU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sej" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Research Substation" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/substation/northeast) +"sel" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_isolation) +"sez" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 10 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"seG" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/green, +/area/desert_dam/interior/dam_interior/atmos_storage) +"seH" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/building/substation/southwest) +"seL" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"seQ" = ( +/obj/structure/bed/stool, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"seX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 2 }, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"sfj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/virology_wing) +"sfk" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"sfs" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecn" = ( +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"sgo" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"sgp" = ( +/obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sgz" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"sgK" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/central_caves) +"shb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/central_tunnel) +"shd" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_cargo) +"shk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"shv" = ( +/turf/open/floor/warnwhite/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"shG" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"shH" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/break_room) +"shO" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"shZ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sig" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitered/northeast, +/area/desert_dam/building/medical/primary_storage) +"siq" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"siy" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/green/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"siA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"eco" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/lobby) +"siF" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"siW" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"siY" = ( +/obj/structure/cargo_container/trijent/mid/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"siZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"sjp" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sjv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sjy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "dam_checkpoint_north"; + name = "Checkpoint Lockdown" }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecq" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sjA" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"sjG" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/southern_hallway) +"skc" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"ske" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"skz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"skB" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_hydro) +"skK" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_east) +"skQ" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"skT" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"sle" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"slu" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"slA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/hallway) -"ect" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"slG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"slN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"slX" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" }, +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"smh" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"smq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/control_room) -"ecu" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/virology_isolation) +"sms" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/control_room) -"ecv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"smt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"smz" = ( +/obj/structure/machinery/computer/WYresearch, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"snc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/telecomm/lz2_storage) +"snk" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/control_room) -"ecw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"snu" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_one) +"snD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/water_treatment_one/garage) -"ecx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"snH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/water_treatment_one/hallway) -"ecy" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"snK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/hallway) -"ecA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/valley/valley_crashsite) +"snM" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j2" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"ecB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"snO" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/south_tunnel) +"snV" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/deathrow) +"sok" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"sow" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"soD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"soK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"spj" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"spw" = ( +/turf/open/floor/prison/greencorner, +/area/desert_dam/building/dorms/hallway_northwing) +"spQ" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"spY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/equipment) -"ecH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/trash/used_stasis_bag, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"srp" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/telecomm/lz2_storage) +"srt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecI" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"srE" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"srI" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"srQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Xenoflora" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/whitegreenfull, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"srR" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"srZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"sse" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/prison/blue/north, +/area/desert_dam/landing/console) +"ssf" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/redcorner, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"ssj" = ( +/turf/open/desert/excavation/component9/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"ssk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/equipment) -"ecM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"ssv" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) +"ssy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ssX" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"stf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/medical/break_room) +"stn" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"ecO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"stv" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_telecoms) +"stK" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"edo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/valley/valley_labs) +"stS" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_one) +"stT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"stX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/north_valley_dam) +"sua" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"edC" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_east) +"sud" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"edJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Foyer" +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/lobby) -"edK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Office" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/water_treatment_one/hallway) -"edL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment Hallway" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"sue" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"suf" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"suh" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/disposalpipe/segment, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"sut" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sve" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"svx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"svy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/desert_dam/building/water_treatment_one/hallway) -"edM" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"svJ" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"edO" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"edP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Checkpoint" +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"svU" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/west_wing_hallway) +"swb" = ( +/obj/structure/machinery/sentry_holder/colony{ + pixel_y = 26 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/interior/dam_interior/south_tunnel) +"swc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"swG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Checkpoint" }, -/area/desert_dam/building/water_treatment_one/lobby) -"edQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Water Treatment" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"swS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"swZ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"sxe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"sxs" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"sxu" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northwest) +"sxW" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/substation/west) +"syc" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"sye" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement, +/area/desert_dam/exterior/telecomm/lz1_south) +"sys" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"syt" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/interior/dam_interior/lobby) +"syJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/water_treatment_one/purification) -"edR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Treatment Controlroom" +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"syM" = ( +/turf/open/floor/prison/darkbrowncorners2/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"syQ" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"syW" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"syY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"szw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"szy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"szD" = ( +/obj/structure/surface/table, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"szE" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"szM" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"szN" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"szV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/control_room) -"edT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Treatment Breakroom" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"szZ" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"sAr" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"sAt" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_main) +"sAw" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/river/riverside_east) +"sAx" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/warden) +"sAz" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"sAF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) -"edU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Decontamination" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"sAJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"sAM" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/building/substation/west) +"sBf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"sBg" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/central_tunnel) +"sBh" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/area/desert_dam/building/water_treatment_one/hallway) -"edY" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/building/water_treatment_one/purification) -"eed" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Showers" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"eee" = ( -/obj/structure/window/framed/hangar, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/hallway) -"eei" = ( -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" - }, -/area/desert_dam/exterior/river_mouth/southern) -"eeo" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/control_room) -"eeq" = ( -/obj/structure/window/framed/hangar, -/turf/open/floor/plating, -/area/desert_dam/building/water_treatment_one/breakroom) -"eer" = ( +"sBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "\improper Floodgate Controlroom" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + name = "\improper Disposals" }, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"ees" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"sBj" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,1" }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"sBq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"eet" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Treatment Breakroom" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"sBy" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sBU" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"sCc" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"eev" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Decontamination" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"sCg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"sCk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sCr" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"sDa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/bun, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"sDg" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"sDy" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_north) +"sDC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"sDJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_northwest) +"sDM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sDP" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sEd" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/temple) +"sEn" = ( +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"sEt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/equipment) -"eez" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"sEw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sEM" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Showers" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/desert_dam/building/water_treatment_one/breakroom) -"eeC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Restroom" +"sEQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"sEX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"eeD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Treatment Garage" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"sFc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"sFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"sFx" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sFA" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/area/desert_dam/building/water_treatment_one/garage) -"eeE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Water Treatment" +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sFC" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/breakroom) +"sFG" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/lobby) +"sFH" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/purification) -"eeK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_central_north) +"sFX" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"sGf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/bar/bar) +"sGg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sGk" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"sGB" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"sGE" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) +"sGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"sHc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"eeM" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_2"; - name = "Warehouse Shutters" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"sHk" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sHs" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/northwest) +"sHu" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/closed/wall, -/area/desert_dam/building/cafeteria/loading) -"eeP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sHx" = ( +/obj/effect/decal/sand_overlay/sand2/corner2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"sHL" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sHS" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sIn" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/yellowfull/southwest, /area/desert_dam/building/hydroponics/hydroponics) -"eeR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"sIt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"sIu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"sIN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"sIP" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sJm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"sJs" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"sJu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "warehouse_dam_2"; - name = "\improper Warehouse Shutters" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"sJD" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/building/cafeteria/loading) -"eeU" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"sKb" = ( +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"sKr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"sKA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper SMES" }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"eeV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"sKM" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/building/medical/garage) +"sKN" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"sKO" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"sKU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"sLc" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"sLu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"sLx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/area/desert_dam/exterior/valley/valley_hydro) +"sLI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/northeast, +/area/desert_dam/building/administration/lobby) +"sLN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"eeX" = ( -/obj/structure/machinery/door_control{ - id = "warehouse_dam_3"; - name = "Warehouse Shutters" - }, -/turf/closed/wall, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"efl" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"sLO" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/administration/hallway) +"sLS" = ( +/obj/structure/window/framed/bunker/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"sMa" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Toilet Unit" }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"eft" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ehg" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"sMi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"sMl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Hallway" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"sMp" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"sML" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 4; + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ehx" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, /area/desert_dam/exterior/valley/valley_medical) -"ehz" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"sNu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/desert/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"sNV" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"sOc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_civilian) +"sOH" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_medical) -"ehB" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/desert_dam/building/water_treatment_one/purification) -"ehC" = ( -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, -/area/desert_dam/building/water_treatment_one/purification) -"ehD" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_0" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"sOT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehE" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "sedimentation_A_1" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"sOU" = ( +/turf/open/floor/prison/darkyellowcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"sPb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2, +/area/desert_dam/building/warehouse/warehouse) +"sPh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/edge/west, +/area/desert_dam/building/administration/meetingrooom) +"sPD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/lightreplacer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sPG" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"sPO" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/west) +"sPU" = ( +/obj/item/reagent_container/food/drinks/flask/detflask, +/obj/item/clothing/head/det_hat, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"sPV" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehF" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/staffroom) +"sPW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"sQj" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_labs) +"sQn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" }, -/area/desert_dam/building/water_treatment_one/purification) -"ehG" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_1" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"sQx" = ( +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/administration/hallway) +"sQy" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"sQO" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_mining) +"sRa" = ( +/turf/open/floor/whitegreencorner, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"sRv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"sSe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"sSr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehH" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_A_0" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/omega{ + pixel_y = 32; + shuttleId = "trijentshuttle22" }, -/area/desert_dam/building/water_treatment_one/purification) -"ehI" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_catwalk" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/exterior/valley/valley_medical) +"sSt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"sSG" = ( +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"sSM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/south_valley_dam) +"sSO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/substation/northeast) +"sTe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/CE_office) +"sTg" = ( +/turf/open/floor/prison/darkredcorners2/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"sTt" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"sTx" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile{ + name = "\improper Entrance Gate Alpha"; + unacidable = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"sTS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehJ" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_0" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"sTX" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehK" = ( -/obj/structure/filtration/machine_32x32{ - icon_state = "filtration_segment_B_1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"sUf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_cargo) +"sUi" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehL" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/south_tunnel) +"sUm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"sUn" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_central_south) +"sUq" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"sUr" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"sUs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehM" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"sUy" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"sUQ" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"sUT" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/landing_pad_two) +"sVf" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"sVi" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/tile, +/area/desert_dam/interior/dam_interior/west_tunnel) +"sVC" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/landing_pad_one) +"sVG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"sVQ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehN" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 5 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehO" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" +/obj/item/storage/box/gloves{ + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "0,5" +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/primary_storage) +"sWi" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"sWp" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/building/water_treatment_one/purification) -"ehP" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehQ" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"sWC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/emergency_room) +"sWS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"sWZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehR" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"sXa" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehS" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 2 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"sXb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehT" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "8,3" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"sXg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/mining/workshop_foyer) +"sXh" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"sXj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/mars_cave/mars_dirt_5, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"sXn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/desert_dam/building/warehouse/breakroom) +"sXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 2 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehU" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"sXq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"sXu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehV" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" +/turf/open/floor/whiteyellow, +/area/desert_dam/building/water_treatment_one/breakroom) +"sXG" = ( +/turf/open/floor/prison/darkbrown3/north, +/area/desert_dam/interior/dam_interior/hangar_storage) +"sXM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, -/area/desert_dam/building/water_treatment_one/purification) -"ehW" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sXQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/building/water_treatment_one/purification) -"ehX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/machinery/dispersal_initiator{ - id = "filter 1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"sXR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_civilian) +"sYd" = ( +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/building/water_treatment_one/purification) -"ehZ" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/water_treatment_one/purification) -"eia" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/coagulation{ - icon_state = "8,8" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/desert_dam/building/water_treatment_one/purification) -"eib" = ( -/obj/effect/blocker/toxic_water/Group_1/delay, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"sYm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Showers" }, -/area/desert_dam/building/water_treatment_one/purification) -"eic" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"sYp" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, -/area/desert_dam/building/water_treatment_one/purification) -"eid" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "sedimentation_1" +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"sYw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/desert_dam/building/cafeteria/loading) +"sZj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"sZp" = ( +/turf/open/floor/prison/blue, +/area/desert_dam/building/administration/control_room) +"sZL" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"sZM" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"sZR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tad" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_0" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/water_treatment_one/purification) -"eiq" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "distribution" +"tae" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_cargo) +"taA" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"taG" = ( +/obj/structure/desertdam/decals/road_stop{ + dir = 1; + icon_state = "stop_decal5" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"ejG" = ( +"taM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"taO" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"taV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/desert_dam/building/substation/northeast) -"ejR" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"taY" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"ekg" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 + dir = 10 }, -/turf/open/desert/rock/deep/transition{ - dir = 8 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/valley_cargo) +"taZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"tbb" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tbm" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tbq" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden, +/turf/open/gm/river/desert/shallow_edge/covered/east, +/area/desert_dam/exterior/river/riverside_central_north) +"tbK" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"tbN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/caves/east_caves) +"tbP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/interior/caves/temple) -"ekH" = ( +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"tbR" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"emt" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_hydro) +"tca" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tcu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Restroom" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"tcy" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"tcP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"eqo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"erB" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"tdL" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/green/north, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tdO" = ( /obj/item/tool/surgery/surgicaldrill, /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/bonesetter, /obj/item/tool/surgery/FixOVein, /obj/item/stack/nanopaste, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/surgery_room_one) -"esG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"tdQ" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/red/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"tdT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"tdU" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_two) +"tdX" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"ted" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/interior/caves/central_caves) +"tet" = ( +/turf/open/floor/prison/yellow/east, +/area/desert_dam/building/hydroponics/hydroponics) +"teE" = ( +/obj/structure/bed/stool, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"teJ" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"teR" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ett" = ( +/turf/open/desert/rock/deep/transition, +/area/desert_dam/interior/caves/temple) +"teS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"tfa" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_one/purification) +"tfe" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"euG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_south) +"tfg" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/substation/southwest) +"tfk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tfs" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/south_valley_dam) -"eyL" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) -"ezd" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"eAe" = ( -/obj/effect/decal/sand_overlay/sand1{ +"tfx" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tfS" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"eBo" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"tgP" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/workshop) -"eBZ" = ( -/obj/item/storage/fancy/vials/random, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/chapel/west, +/area/desert_dam/building/church) +"tgS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"tgW" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"tgX" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"thm" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"tho" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/treatment_room) -"eCk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"eCK" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/water_treatment_one/garage) -"eDQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"eHi" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/west_wing_hallway) +"thp" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/gm/river/desert/deep/covered, +/area/desert_dam/exterior/river/riverside_south) +"thr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/south_valley_dam) +"tht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"thw" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"thB" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"thD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"thE" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"thH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"tia" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"tib" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"tii" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"tiq" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_crashsite) +"tiF" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eJh" = ( -/obj/structure/flora/grass/tallgrass/desert, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"eKN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/area/desert_dam/exterior/landing_pad_two) +"tiG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/hanger) -"eNo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"tiN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"tiO" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tiQ" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/building/security/prison) -"eNU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"tiU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"tjb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"eOH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/CE_office) -"eRn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tjj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"eVk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"eVJ" = ( -/obj/structure/window/framed/chigusa, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"eVR" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/freezerfloor, +/area/desert_dam/building/bar/bar_restroom) +"tjn" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"tjo" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"tjG" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tjL" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"tjX" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"tkg" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"tkA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"tla" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_telecoms) +"tlg" = ( +/turf/open/floor/coagulation/icon1_1, +/area/desert_dam/exterior/valley/valley_hydro) +"tlG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_one) +"tlT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tmi" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"tmv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"tmF" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"tmI" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/desert_dam/building/security/holding) +"tmL" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tmM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"eWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"tmZ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/building/dorms/hallway_northwing) -"eXM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tnh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tnm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"eYK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) -"eYP" = ( +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/loading) +"tnt" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" + dir = 5 }, -/area/desert_dam/exterior/valley/valley_civilian) -"eZE" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"tnu" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" + icon_state = "road_edge_decal10" }, /obj/effect/decal/sand_overlay/sand1{ - dir = 8 + dir = 5 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"faE" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +"toa" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tod" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tof" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fbK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/exterior/valley/valley_crashsite) -"fcu" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash-supply" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"fcE" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/desert/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"too" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_crashsite) -"fcG" = ( -/obj/structure/machinery/light{ +"tor" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/warden) +"toH" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"toT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/rock/deep/transition{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"toZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/desert_dam/exterior/telecomm/lz1_south) -"fdk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"feU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tpb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"ffh" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ +"tpt" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "vault" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"tpK" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Checkpoint" }, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"fgo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"fgU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"fhq" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tpQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"tpU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/medical/virology_isolation) -"fiW" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +/obj/structure/machinery/light, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_northwing) +"tpV" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"tqh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"flu" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"tqk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/desert_dam/exterior/valley/valley_labs) +"tqn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tqB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"fmP" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"foq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/green/west, +/area/desert_dam/building/dorms/hallway_westwing) +"tqE" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/north_valley_dam) +"tqP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fpn" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/coagulation/icon8_6, +/area/desert_dam/exterior/valley/valley_mining) +"trm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"trs" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/building/bar/bar) -"fpu" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"trE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"fpJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"fqt" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"fqy" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"fqI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"trN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"trP" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"trZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"tsd" = ( +/turf/open/floor/whitegreencorner/north, /area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"fsK" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"fsP" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/building/dorms/hallway_westwing) -"fxs" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +"tsg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"tsk" = ( +/obj/structure/barricade/sandbags{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"fyq" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"tsw" = ( +/turf/open/floor/prison/whitepurple, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tsB" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"fyO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"tsX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"fzV" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"tth" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"tty" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_civilian) +"ttG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_marked" +/obj/item/storage/donut_box, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"ttX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"tun" = ( +/turf/open/floor/prison/darkredcorners2/east, /area/desert_dam/building/security/armory) -"fAI" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark2" +"tuD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"tuF" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tuH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/administration/archives) -"fBF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_cargo) +"tuQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"tuU" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/disk/nuclear, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tuX" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"tva" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1 }, -/turf/open/asphalt, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"tvi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_westwing) +"tvl" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/building/warehouse/warehouse) +"tvD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"tvP" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tvS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) -"fCB" = ( +"tvT" = ( +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"tvX" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_central"; + name = "\improper Storm Lock"; + unacidable = 0 + }, /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" + icon_state = "road_edge_decal3" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"fCP" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"fDh" = ( +/area/desert_dam/interior/dam_interior/west_tunnel) +"twD" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"twP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"fEQ" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"twU" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_two) +"twY" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/building/security/holding) +"txr" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"fFw" = ( -/obj/structure/prop/dam/boulder/boulder2{ - desc = "A large rock. It looks very hard to get around." +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"txx" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"txA" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Archives" }, -/turf/open/desert/rock/deep{ - icon_state = "rock3" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/archives) +"txF" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whiteyellowcorner/north, +/area/desert_dam/building/water_treatment_one/breakroom) +"txH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/desert_dam/interior/caves/temple) -"fHg" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"fHr" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"tya" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"fHX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/warehouse/loading) -"fIT" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office2) -"fNw" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"tyc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fPc" = ( -/turf/closed/wall/r_wall/bunker{ - acided_hole_dir = 4 +"tyd" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"fPp" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ +/obj/structure/machinery/sentry_holder/colony{ dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"fRy" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" + pixel_y = -10 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"fSc" = ( -/obj/structure/flora/grass/desert/lightgrass_12, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"fTk" = ( -/obj/structure/sink/kitchen, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tyf" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/exterior/valley/valley_wilderness) +"tym" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"tyn" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"typ" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"fUO" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"tyD" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/valley/valley_labs) +"tyV" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/control_room) +"tyW" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"tzj" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_hydro) -"fYS" = ( -/obj/structure/largecrate/random, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"tzo" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/workshop) +"tzp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/cafeteria/loading) -"fZd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tzx" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"fZj" = ( -/obj/effect/landmark/static_comms/net_one, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"gab" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"gak" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"tzC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshals Office" }, -/area/desert_dam/building/medical/emergency_room) -"gca" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"gdW" = ( -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/marshals_office) +"tzG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/loading) +"tzQ" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tzT" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_hydro) -"gea" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ggn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"tAe" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"tAt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + icon_state = "W" }, -/area/desert_dam/interior/dam_interior/garage) -"ghz" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tAx" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tAy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tAI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/south_valley_dam) +"tAL" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"tAR" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northleft{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"ghU" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"tBi" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached6, +/area/desert_dam/exterior/telecomm/lz2_storage) +"tBk" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/green/east, +/area/desert_dam/building/dorms/hallway_westwing) +"tBl" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"gls" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tBx" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"tBz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/restroom) -"glx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/lobby) +"tBD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"tBG" = ( +/turf/open/floor/coagulation/icon7_0, +/area/desert_dam/exterior/valley/valley_mining) +"tBL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"tBO" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"glz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/garage) -"glD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/caves/temple) -"glO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"gmZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "warehouse_dam_3"; - name = "\improper Warehouse Shutters" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tCn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/lobby) +"tCr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/jungle/impenetrable, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"tCy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"tCC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gnu" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"tCE" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"goq" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"tCP" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"tDr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"tDL" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 + dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"tDS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"tEo" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"goY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/mars_cave{ - icon_state = "mars_dirt_5" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"gpi" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"gpZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep{ - icon_state = "rock3" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"tEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/interior/caves/temple) -"grk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tEG" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "desert_transition_edge1" + icon_state = "pipe-c" }, -/area/desert_dam/interior/caves/central_caves) -"grQ" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"gsr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"tEN" = ( +/turf/open/floor/white, +/area/desert_dam/exterior/valley/valley_telecoms) +"tEX" = ( +/obj/structure/machinery/light{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"guK" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tFk" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"tFn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/caves/central_caves) -"gxo" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"tFq" = ( /obj/structure/surface/table, -/obj/item/clothing/glasses/welding{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/device/radio{ - pixel_x = 7; - pixel_y = 5 +/obj/item/reagent_container/food/snacks/cookie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tFr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tFz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 8 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"tFE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"tFF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/garage) -"gxR" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/equipment) +"tFM" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/desert_dam/building/mining/workshop_foyer) -"gBV" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/armory) +"tFN" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tFS" = ( +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"tGb" = ( +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/bonesetter, +/obj/item/tool/surgery/FixOVein, +/obj/item/stack/nanopaste, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"tGi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"tGy" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"tGJ" = ( +/turf/open/floor/warnwhite, +/area/desert_dam/exterior/valley/valley_telecoms) +"tGO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cold_room) -"gCg" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gCS" = ( -/obj/structure/platform/mineral/sandstone/runed{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"tGS" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"gDS" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"gEj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"tHp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"tHq" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/administration/office) +"tHr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"tHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"tHG" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"tHT" = ( +/obj/structure/flora/tree/joshua, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"tHZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"tIh" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"gFr" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river_mouth/southern) +"tIn" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"gGC" = ( -/turf/closed/wall/mineral/sandstone/runed/decor, -/area/desert_dam/interior/caves/temple) -"gIS" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 5; - icon_state = "p_stair_full" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"tIv" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/desert/rock/deep{ - icon_state = "rock4" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"tIy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/interior/caves/temple) -"gJe" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/floodgate_control) -"gJE" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "dark" +"tIP" = ( +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_hydro) +"tIR" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/office) -"gKm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"tIV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"tIY" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_telecoms) +"tJb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tJe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_civilian) -"gKn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep/transition{ +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"tJp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/north_valley_dam) +"tJr" = ( +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"tJu" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/desert_dam/interior/caves/temple) -"gKo" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/north_wing_hallway) +"tJB" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_two/purification) +"tJH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tJV" = ( /obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/exterior/valley/valley_wilderness) -"gLb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 2 +/turf/open/desert/excavation/component1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"tKs" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"tKN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"gLl" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"gMv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"gMN" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"tKT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"tKW" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_telecoms) -"gNq" = ( -/obj/structure/surface/table, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "wood" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"tKZ" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tLc" = ( +/turf/open/mars_cave/mars_dirt_7, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"tLg" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_medical) +"tLh" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"gNT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tLp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_medical) +"tLu" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"tLC" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/desert_dam/building/warehouse/warehouse) -"gOE" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"tLF" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"gQE" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_central_north) +"tLG" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"gRC" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 31; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"tLK" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"gTD" = ( -/obj/item/tool/wrench, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"gTW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"tLU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"tMd" = ( +/turf/open/floor/delivery, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tMf" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/central_caves) -"gUh" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/workshop) -"gUz" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tMi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/substation/northwest) -"gVm" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 8 +/turf/open/floor/sandstone/runed, +/area/desert_dam/interior/caves/temple) +"tMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"gWu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"gWH" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tMt" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 8; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"gXr" = ( -/obj/effect/decal/remains/xeno{ - pixel_x = 31 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"tMu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "rock1" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"tMy" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"gYP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"gYT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/desert_dam/building/mining/workshop) +"tML" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"gYU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"tMP" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/virology_wing) +"tNn" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"hcP" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"tNp" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"heR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_isolation) +"tNu" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tNz" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "3,7" }, -/area/desert_dam/building/cafeteria/cold_room) -"hhj" = ( +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"tNC" = ( /obj/structure/stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tNX" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_two) +"tOe" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/desert/excavation/component8/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"tOi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"tOC" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/substation/northwest) +"tOP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"hiw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"hiN" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"tOS" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 6 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"tOU" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"hjm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/landing_pad_two) +"tOY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"hmA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/folder/black, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"tOZ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Engineering Office" }, -/area/desert_dam/interior/dam_interior/CE_office) -"hnJ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"tPn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"tPA" = ( +/turf/open/jungle/impenetrable, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"tPP" = ( +/obj/structure/platform, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz1_valley) +"tQa" = ( +/turf/open/floor/warning/west, +/area/desert_dam/interior/dam_interior/engine_room) +"tQb" = ( +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"tQg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hoc" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hpw" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/administration/overseer_office) +"tQG" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/office2) +"tQO" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"hpL" = ( -/obj/structure/platform/mineral/sandstone/runed{ +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"tQP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Showers" + }, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/pool) +"tQQ" = ( +/obj/structure/stairs{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hqp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/structure/platform{ + dir = 1 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"tQR" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall/bunker, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"tRd" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"tRo" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) -"hqT" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +"tRs" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_cargo) +"tRw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"hvG" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"hwc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"tRK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden{ + dir = 10 + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"tRL" = ( +/obj/item/weapon/gun/revolver/small, +/turf/open/floor/prison/whitegreenfull, +/area/desert_dam/building/dorms/pool) +"tRO" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"tSh" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/landing_pad_one) +"tSx" = ( +/obj/structure/floodgate, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river_mouth/southern) +"tSK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7" }, +/turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"hxj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +"tSL" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"tSV" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"hyE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"tTx" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/warehouse/warehouse) -"hyH" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"hzg" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"hzC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"hAf" = ( -/obj/structure/machinery/door_control{ - id = "garage_dd"; - name = "Garage Lockdown"; - pixel_y = -28 +"tUf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/north_tunnel) +"tUi" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"tUz" = ( +/obj/structure/surface/table, +/obj/item/tool/shovel/spade, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"tUH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/south_valley_dam) +"tUP" = ( +/turf/open/floor/prison/bluecorner, +/area/desert_dam/building/administration/hallway) +"tUZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/west_tunnel) +"tVf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"hAv" = ( -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 +"tVj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/primary_storage) +"tVm" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"tVz" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" }, -/obj/effect/decal/remains/xeno{ - pixel_x = 1; - pixel_y = 31 +/turf/open/floor/coagulation/icon8_3, +/area/desert_dam/building/water_treatment_two/purification) +"tVJ" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"tVN" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"hAB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"tWg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" }, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"hBr" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/break_room) +"tWj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"hCf" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/south_valley_dam) -"hDO" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/lobby) -"hDT" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_4" +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"tWq" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"hEa" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/office) -"hEU" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/gm/river/desert/deep/covered, +/turf/open/desert/desert_shore/desert_shore1/west, /area/desert_dam/exterior/river/riverside_south) -"hIO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"hLP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +"tWs" = ( +/obj/structure/target, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/plating/warnplate, +/area/desert_dam/exterior/valley/valley_telecoms) +"tWu" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"tWv" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/hanger) +"tWD" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"tWI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tWQ" = ( +/obj/structure/machinery/conveyor_switch{ + id = "cargo_storage" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"hMc" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"hOv" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "green" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"tWV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Examination Room" }, -/area/desert_dam/building/dorms/hallway_westwing) -"hOA" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/office1) +"tWZ" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"tXb" = ( +/obj/structure/cargo_container/trijent/right/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"tXi" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/machinery/computer/emails, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"tXl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"hOK" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/break_room) +"tXp" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon7_0, /area/desert_dam/exterior/valley/valley_hydro) -"hPB" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"hQM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 10 +"tXC" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/east, +/area/desert_dam/exterior/river/riverside_central_north) +"tXQ" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/interior/caves/temple) -"hRU" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel) +"tYr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" }, -/area/desert_dam/building/mining/workshop) -"hTg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"tYw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" }, -/area/desert_dam/building/church) -"hTr" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"tYF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Treatment Controlroom" }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_labs) -"hVs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/chigusa, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"ibg" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"tYU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper SMES" }, -/area/desert_dam/interior/dam_interior/garage) -"ibl" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"ibE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/dark2, +/area/desert_dam/interior/dam_interior/smes_main) +"tZb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/desert_dam/exterior/valley/valley_medical) -"ibU" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"ick" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"icM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +"tZd" = ( +/turf/open/floor/prison/red, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"tZi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"tZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/south_valley_dam) +"tZD" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"idg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"idG" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"tZI" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"ieU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/overseer_office) +"tZQ" = ( +/turf/closed/wall/r_wall, +/area/desert_dam/exterior/rock) +"uaf" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/area/desert_dam/interior/dam_interior/garage) -"igd" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 }, -/area/desert_dam/interior/dam_interior/workshop) -"igf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 }, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uag" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" + }, +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"uay" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"uaK" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"uaW" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) -"ijc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"ilq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" +"uaX" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"ubc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/yellowcorner/east, +/area/desert_dam/building/hydroponics/hydroponics) +"ubd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"ubn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Treatment Controlroom" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"ubp" = ( +/obj/structure/platform, +/turf/open/desert/excavation/component5/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"ioA" = ( -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) -"ipQ" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_omega"; - name = "Omega Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/omega; - elevator_network = "B" +"ubx" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_stormlock_east"; + name = "\improper Storm Lock" }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) -"iqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/liquidfood, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"iqK" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/plating, -/area/desert_dam/building/substation/northwest) -"iri" = ( +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"ubK" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"isz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"ubL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ubR" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/garage) -"isZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"udi" = ( +/obj/effect/blocker/toxic_water/Group_1/delay, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"udr" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/interior/caves/temple) +"udA" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2, /area/desert_dam/interior/lab_northeast/east_lab_biology) -"iuk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"ivd" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"ivr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +"udC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"ivs" = ( -/obj/structure/machinery/door/airlock/sandstone/runed{ - name = "Strange Temple" - }, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/temple) -"ivA" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"ivQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep{ - icon_state = "rock3" - }, -/area/desert_dam/interior/caves/temple) -"iwh" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"iwy" = ( -/turf/open/desert/rock/deep/transition{ - dir = 8 - }, -/area/desert_dam/interior/caves/temple) -"ixe" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"udI" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/medical/break_room) +"udN" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"udU" = ( +/obj/structure/sink{ dir = 8; - icon_state = "whiteyellow" - }, -/area/desert_dam/interior/dam_interior/garage) -"iAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + pixel_x = -11 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"iCw" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/mirror{ + pixel_x = -28 }, -/area/desert_dam/interior/dam_interior/garage) -"iCE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"uei" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"ueo" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_wilderness) -"iHi" = ( -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/disposals) -"iNg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Garage Breakroom" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" +"uez" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/garage) -"iNF" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/desert_dam/interior/caves/temple) -"iOa" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"iPJ" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"ueD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"ueI" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"iQG" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"iRU" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_wilderness) +"ueQ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"iSj" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"iTi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"iTX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 - }, -/turf/open/desert/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_hydro) -"iVN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"iVZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"ueT" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"ueY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"iXt" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"ueZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8" }, -/area/desert_dam/interior/dam_interior/hanger) -"iXA" = ( -/obj/structure/surface/table, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_two/floodgate_control) -"iYy" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"ufb" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/west_wing_hallway) +"ufp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown3" - }, -/area/desert_dam/interior/dam_interior/disposals) -"iYI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"ufq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"ufG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jbx" = ( -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jcK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/telecomm/lz2_storage) -"jde" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"ufK" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"ufM" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"ufW" = ( +/turf/closed/wall/mineral/sandstone/runed, +/area/desert_dam/exterior/rock) +"ugi" = ( /obj/structure/surface/table, -/obj/item/ashtray/bronze{ - pixel_x = -7 - }, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" +/obj/item/tool/lighter/random, +/turf/open/floor/whiteyellow, +/area/desert_dam/interior/dam_interior/break_room) +"uhu" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"jfA" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"jjq" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/building/security/staffroom) -"jkn" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"uhG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"jlq" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"uhH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"uhR" = ( +/turf/open/floor/prison/darkyellow2/west, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"jlP" = ( -/obj/structure/flora/grass/desert/heavygrass_5, +"uin" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"uiv" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"uiH" = ( +/obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jmd" = ( -/obj/structure/disposalpipe/segment{ +/area/desert_dam/exterior/valley/south_valley_dam) +"uiO" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"uiV" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"uje" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jpa" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"jqQ" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_one) -"jrV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_south) -"jsN" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"ujy" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"ujK" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 1 + dir = 4 }, -/obj/structure/platform{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"ujO" = ( +/obj/structure/machinery/power/smes/batteryrack/substation, +/turf/open/floor/darkyellow2/northeast, +/area/desert_dam/building/substation/northeast) +"ujP" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-south-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"jtz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"ujR" = ( +/turf/open/floor/prison/yellow/west, +/area/desert_dam/building/hydroponics/hydroponics) +"ujV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/building/mining/workshop) -"jvZ" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"ukk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/emergency_room) +"ukq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/platform{ +/turf/open/floor/prison/floor_plate, +/area/desert_dam/building/security/evidence) +"ukv" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"jxq" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/exterior/telecomm/lz1_south) -"jxN" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"jAA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_civilian) +"ukw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"ukS" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"ukW" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ula" = ( /obj/structure/surface/table, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/hydroponics/hydroponics_breakroom) -"jAS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/item/clothing/head/soft/ferret, +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"ulE" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/area/desert_dam/exterior/valley/valley_civilian) -"jCJ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall, -/area/desert_dam/building/dorms/hallway_northwing) -"jFf" = ( -/obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"jHR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"ulS" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"ulY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jIH" = ( -/obj/structure/window/framed/colony, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/bar/bar) +"umd" = ( +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet15_15/west, +/area/desert_dam/building/administration/office) +"umg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/desert_dam/building/hydroponics/hydroponics_storage) -"jJa" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_westwing) -"jLI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/warehouse) +"umh" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_hydro) +"uml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"umq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/warehouse/breakroom) +"umu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"umK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_telecoms) -"jMT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"umL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_civilian) +"umU" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"umY" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_westwing) +"unu" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_shutter_hangar"; + name = "\improper Hangar Lock" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkbrown3/east, +/area/desert_dam/interior/dam_interior/hanger) +"unI" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"unR" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/valley/valley_labs) +"unS" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/caves/east_caves) +"unU" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jNB" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"unV" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"jOe" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"jSS" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"uof" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"uol" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/southwest) +"uoH" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/substation/southwest) +"uoM" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jTF" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"uoX" = ( +/obj/structure/closet/crate, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"upq" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/hanger) -"jVa" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"upD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/virology_wing) +"upH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"uqr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/desert_dam/exterior/valley/valley_hydro) -"jVr" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"uqt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/mining/workshop) +"uqA" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/landing_pad_two) +"uqM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"uqQ" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/morgue) -"jVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"jXv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_central_south) +"uqS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt, +/turf/open/asphalt/cement/cement3, /area/desert_dam/exterior/valley/valley_telecoms) -"jXy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"jZZ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" +"urj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"urD" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"urI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"kbo" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kcH" = ( -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/exterior/telecomm/lz2_containers) -"kee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"urL" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/dorms/restroom) -"kge" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_civilian) +"urN" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"urT" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"khO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_two) +"usc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"usg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/west_wing_hallway) +"usi" = ( +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Operations"; + network = list("chigusa_1") }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"kin" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/desert_dam/building/administration/archives) -"kiy" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"kiP" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, +/turf/open/floor/whiteyellow/north, +/area/desert_dam/interior/dam_interior/lobby) +"usw" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"usU" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_crashsite) -"kkm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +"ute" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "stop_decal5" }, -/area/desert_dam/exterior/valley/valley_hydro) -"kmr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"utf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"uts" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper RnD" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"utw" = ( +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river_mouth/southern) +"uty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"kmU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_labs) +"utH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"utJ" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/asteroidplating, /area/desert_dam/exterior/valley/valley_crashsite) -"kry" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"utK" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"krR" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"utP" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/building/medical/break_room) +"utR" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"utZ" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/chemistry) +"uui" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Workshop" }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/detective) -"ksy" = ( -/obj/structure/closet/secure_closet/injection, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/prison, -/area/desert_dam/building/security/execution_chamber) -"ktJ" = ( -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/interior/caves/temple) -"kzQ" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"uum" = ( +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"uuB" = ( +/turf/open/floor/darkyellow2, +/area/desert_dam/building/substation/northeast) +"uuM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/building/warehouse/loading) +"uuR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"uvf" = ( /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"kAJ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/temple) -"kAV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"kDV" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/desert_dam/exterior/telecomm/lz1_xenoflora) +"uvq" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/security/evidence) -"kEq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_northwest) +"uvE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/building/medical/virology_wing) -"kFW" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/garage) +"uvG" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"uvS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/garage) -"kGV" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northleft{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"uvY" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uwd" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_hydro) +"uwk" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/medical/lobby) -"kHO" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uwu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitered" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uwy" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/medical/surgery_room_two) -"kIl" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"uwR" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/dam_interior/south_tunnel) +"uxo" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"uxy" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/lobby) +"uxA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kIP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"kJP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"uxB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Water Treatment" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"kLf" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"uxX" = ( /obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"uyi" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"uyn" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/desert_dam/building/cafeteria/backroom) +"uyr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kMM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/whitepurple/west, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"uyt" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/garage) -"kMT" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"uyw" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"uyy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/building/warehouse/breakroom) +"uyC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"uyI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/interior/caves/east_caves) +"uyO" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"uzi" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"uzo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/floor/coagulation/icon0_5, /area/desert_dam/exterior/valley/valley_hydro) -"kOR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"kPs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"kQd" = ( -/obj/structure/tunnel, -/turf/open/desert/rock/deep{ - icon_state = "rock3" +"uzs" = ( +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uzt" = ( +/turf/open/desert/excavation/component8/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"uzJ" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_north) +"uzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/caves/east_caves) -"kRX" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/lab_northwest/west_lab_xenoflora) -"kTX" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"uzO" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"uzQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kUz" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"uAm" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"kVU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river/riverside_south) +"uAt" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "sedimentation_A_1"; + pixel_y = -16 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"uAD" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"uAH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/desert_dam/exterior/valley/south_valley_dam) -"kWh" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"laq" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/desert_dam/building/administration/lobby) -"lcj" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz1) -"lcy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +"uAN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/trash/kepler, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_hydro) +"uAQ" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"uBl" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/trash/chunk, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"lei" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/mining/workshop_foyer) -"leZ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_telecoms) +"uBJ" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"lfM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_civilian) -"lfZ" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"lib" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 8; - health = 80 + icon_state = "pipe-c" }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"uBM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/lobby) -"liN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"uBP" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/central_caves) +"uBQ" = ( +/turf/open/floor/carpet9_4/west, +/area/desert_dam/building/church) +"uBU" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"uBX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/medical/north_wing_hallway) -"lji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"uBY" = ( /obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"uCo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"uCp" = ( +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"uCE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"uCQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_northwest) +"uDh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_cargo) +"uDn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_mining) +"uDr" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"uDs" = ( +/turf/open/floor/coagulation/icon6_8, +/area/desert_dam/exterior/valley/valley_mining) +"uEu" = ( /obj/structure/window/reinforced{ - dir = 4; + dir = 8; health = 80 }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/building/security/lobby) -"ljO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/van{ - dir = 1 +/turf/open/floor/prison/darkbrown3/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"uEF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"lkZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whiteyellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/break_room) -"lmq" = ( +/turf/open/floor/warning, +/area/desert_dam/interior/dam_interior/engine_room) +"uEH" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uEM" = ( +/obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"uES" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" }, -/area/desert_dam/interior/dam_interior/smes_main) -"lnG" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"uEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/south_valley_dam) -"lop" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"uEZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"lrn" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "damtemple" +/turf/open/floor/prison/darkpurplecorners2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uFe" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uFt" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_hydro) +"uFQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"lrY" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/desert/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_telecoms) +"uFX" = ( +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"ltE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"lua" = ( +"uGr" = ( +/obj/structure/surface/table, /obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"uGD" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"uGL" = ( +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/turf/open/desert/rock/deep, +/area/desert_dam/interior/caves/temple) +"uGO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"lwh" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/engi{ - pixel_x = -32 +/area/desert_dam/building/cafeteria/loading) +"uGS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"uGX" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uGY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2, +/area/desert_dam/building/security/prison) +"uHD" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uHG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/desert/rock/deep/transition{ - dir = 10 +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uHS" = ( +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"uHX" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"lxq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"lyw" = ( -/obj/structure/flora/bush/desert/cactus{ - icon_state = "cactus_8" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"uIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Engineering Central" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uIM" = ( +/obj/effect/decal/remains/xeno{ + pixel_x = 31 + }, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_crashsite) +"uJa" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"uJb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Delivery" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lyB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"lzZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/dark, /area/desert_dam/building/cafeteria/loading) -"lAT" = ( -/obj/structure/closet/lasertag/blue, -/obj/structure/machinery/light{ +"uJc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/building/dorms/pool) -"lDT" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lFc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"uJk" = ( +/turf/open/floor/prison/darkbrown3/west, +/area/desert_dam/interior/dam_interior/hangar_storage) +"uJv" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/control_room) +"uJz" = ( +/obj/structure/machinery/light, +/turf/open/floor/cult, +/area/desert_dam/building/church) +"uJE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uKa" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/hallway) +"uKl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/west_tunnel) +"uKo" = ( +/obj/structure/platform/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/interior/caves/temple) +"uKN" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uKP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"uKW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet/edge/north, +/area/desert_dam/building/administration/meetingrooom) +"uLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"lHW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"uLf" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"lIK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"uLh" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_civilian) +"uLo" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_isolation) +"uLs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/north_wing_hallway) +"uLv" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"lJM" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 9 +/turf/open/floor/neutral, +/area/desert_dam/interior/dam_interior/engine_room) +"uLB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"uLJ" = ( +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"uLR" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"uLU" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"uMe" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uMn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"uMr" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"lKW" = ( +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"uMv" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/temple) +"uMA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"uMI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uMP" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 9 + dir = 5 }, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lKY" = ( +/area/desert_dam/exterior/landing_pad_two) +"uMV" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 2 + }, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"uNi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"uNn" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"uNw" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/building/security/armory) +"uNE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/lobby) +"uNF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_crashsite) +"uNS" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_hydro) +"uNZ" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"uOi" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/holding) +"uOn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uOt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"uOx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"uOM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"uOU" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"uPe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "sterile_white" + health = 80 }, -/area/desert_dam/building/medical/north_wing_hallway) -"lMc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"lNu" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lNN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" +/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"uPq" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"uPv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"uPH" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/mining/workshop) +"uPJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/desert_dam/interior/lab_northeast/east_lab_containment) -"lOM" = ( -/obj/effect/decal/sand_overlay/sand2/corner2, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"lOY" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"lPn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/structure/machinery/light, +/obj/item/trash/kepler, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"uPL" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_civilian) -"lQM" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"uQu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"uQw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"uQC" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"uQE" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"uQH" = ( /obj/structure/stairs{ dir = 4 }, -/obj/structure/platform, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"lUl" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - dir = 8; - icon_state = "carpet15-15" - }, -/area/desert_dam/building/administration/office) -"lUN" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/substation/west) -"lUU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"uQV" = ( +/obj/structure/fence, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/valley_medical) +"uRd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"lVW" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_wilderness) +"uRh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"lYm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"uRw" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"lYv" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"mbl" = ( -/obj/structure/surface/table, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"uRy" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/garage) -"mdP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" - }, -/turf/open/asphalt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"uRz" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"uRB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/virology_wing) +"uRZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/south_valley_dam) -"med" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"uSj" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"uSn" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/central_caves) +"uSB" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_hydro) +"uST" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_east) +"uSZ" = ( +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"uTb" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"uTo" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_cargo) +"uTy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Breakroom" }, -/area/desert_dam/exterior/valley/valley_labs) -"mej" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent/lz2{ - pixel_x = 32; - shuttleId = "trijentshuttle22" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"uTG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/building/warehouse/loading) -"meN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"uTV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"mfK" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"uTZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/virology_isolation) +"uUd" = ( +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"uUu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"mgw" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"uUz" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"uUG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"uVc" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"uVr" = ( +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"uVv" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"mhR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_crashsite) +"uVD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_wilderness) +"uVF" = ( +/turf/open/floor/coagulation/icon0_4, +/area/desert_dam/exterior/valley/valley_mining) +"uVG" = ( +/turf/open/desert/excavation/component4/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"uVI" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"uVK" = ( +/obj/item/tool/pickaxe, +/obj/effect/decal/remains/human, +/turf/open/desert/rock, +/area/desert_dam/interior/caves/temple) +"uVL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"uVW" = ( +/obj/item/trash/burger, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_labs) -"mkd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/garage) -"mkJ" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mkU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +"uVY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"mlK" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"uWg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"mnc" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"uWC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/caves/temple) -"mnA" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/loading) +"uWI" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/desert_dam/exterior/river/riverside_central_north) +"uWT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"uXc" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whiteredcorner/west, +/area/desert_dam/building/medical/surgery_room_two) +"uXd" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/prison/green/east, /area/desert_dam/interior/dam_interior/atmos_storage) -"mqM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"mth" = ( -/obj/structure/showcase{ - color = "#880808"; - desc = "A large red statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "The Titan" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1; - icon_state = "halfarmor7_ebony" - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1; - icon_state = "y-boots4_ebony" +"uXi" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uXx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"uXG" = ( +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/bonegel, +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/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/clothing/mask/yautja_flavor{ - anchored = 1; - icon_state = "pred_mask12_ebony"; - unacidable = 0 +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"uXH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"uXI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"uXK" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 4; + pixel_x = -24 }, -/area/desert_dam/interior/caves/temple) -"myx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"uYg" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"uYz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uYD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"mAm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"mAr" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"uYE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mAZ" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"uYI" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/deathrow) +"uYW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Security Office" }, -/turf/open/asphalt/cement, -/area/desert_dam/interior/dam_interior/south_tunnel) -"mBd" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"uZy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/staffroom) +"uZK" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/cell_stripe, +/area/desert_dam/building/warehouse/warehouse) +"vad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vah" = ( +/obj/structure/surface/table, +/obj/item/tank/anesthetic, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"vaj" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_1, -/obj/effect/landmark/nightmare{ - insert_tag = "purple-center-bridge" - }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"mDz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_hydro) -"mDA" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"mEC" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"mEJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_security_armory) -"mEV" = ( -/obj/structure/machinery/light, -/turf/open/desert/rock/deep/transition{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/west_tunnel) -"mGo" = ( +"var" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vas" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"vaL" = ( +/turf/open/floor/coagulation/icon7_7, /area/desert_dam/exterior/valley/valley_hydro) -"mHf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"vaT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/caves/temple) -"mHV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/administration/lobby) +"vbo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"vbq" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"mKs" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/valley/valley_telecoms) -"mKW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/darkyellow2/north, +/area/desert_dam/interior/dam_interior/control_room) +"vbX" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/southern_hallway) +"vbZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkbrown3/east, /area/desert_dam/interior/dam_interior/hanger) -"mMm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mNk" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mNn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/cafeteria/cafeteria) -"mOS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"mRU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"vcd" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mTf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/desert_dam/interior/dam_interior/disposals) +"vcg" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/east_caves) +"vco" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/dam_interior/tech_storage) +"vcp" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/south_valley_dam) +"vcC" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"vcG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"mTY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"mVy" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_medical) -"mXN" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/southern_hallway) +"vcH" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vcI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/south_valley_dam) +"vcW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/building/security/northern_hallway) +"vcZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mZj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"vdn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"vdt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"naH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"vdw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Loading Bay" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ncd" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"vdz" = ( +/turf/open/desert/rock/deep/transition/southeast, +/area/desert_dam/interior/caves/east_caves) +"vdC" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/popcorn, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"ncm" = ( -/turf/open/desert/rock/deep, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"ndA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"vdE" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vdH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"vdP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/substation/west) -"ndP" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) +"vdV" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "p_stair_full" + id = "cargo_hangar3"; + name = "\improper Cargo Bay Hangar" }, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"nez" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/building/warehouse/loading) +"vdZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ved" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, /area/desert_dam/building/cafeteria/cafeteria) -"ngo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +"vek" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"ver" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_south) +"vet" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"nil" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"veI" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/desert_dam/interior/caves/temple) +"veM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"veO" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"nji" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"veX" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"veY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/building/warehouse/warehouse) +"vfA" = ( +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/exterior/valley/valley_hydro) +"vfH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vfI" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vfJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/hanger) -"njF" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"vfL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vgm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"nlH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"nlU" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"vgx" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"vgF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"vgM" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/building/dorms/hallway_westwing) -"nmr" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_civilian) +"vhl" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"nmP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"nsf" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +"vhp" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"vhr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"vhQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_civilian) -"nue" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"nvr" = ( -/obj/structure/flora/grass/desert/heavygrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"nyN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +"vig" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/garage) +"vii" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/prison/blue, +/area/desert_dam/building/dorms/pool) +"vis" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/caves/central_caves) +"vit" = ( +/obj/structure/platform, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/telecomm/lz1_valley) +"viB" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"viI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"nyR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep{ - icon_state = "rock4" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"viJ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/desert_dam/interior/caves/temple) -"nzB" = ( -/obj/structure/flora/grass/tallgrass/desert, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"viT" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/desert_dam/building/warehouse/warehouse) +"viV" = ( +/obj/structure/fence, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_northwest) -"nAm" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"nCi" = ( -/obj/item/stack/medical/advanced/ointment/predator, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"nEM" = ( -/turf/closed/wall/hangar{ - name = "Elevator Shaft"; - unacidable = 1; - hull = 1 - }, -/area/shuttle/trijent_shuttle/lz2) -"nFh" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"nIz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"nIG" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ +/area/desert_dam/exterior/valley/valley_hydro) +"vjc" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vjj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "darkred2" + icon_state = "pipe-j2" }, -/area/desert_dam/building/administration/lobby) -"nJZ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"vjw" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/west_wing_hallway) +"vjT" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"vjX" = ( +/obj/structure/barricade/sandbags{ + dir = 1 }, -/area/desert_dam/exterior/landing_pad_one) -"nMO" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/sandbags{ dir = 4 }, -/obj/structure/largecrate/random, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"vkw" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"vky" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/desert_dam/building/cafeteria/loading) -"nRL" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"nRV" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"vkD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"nSN" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" - }, -/area/desert_dam/building/medical/office2) -"nTa" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/desert_dam/interior/dam_interior/control_room) -"nTp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"nWZ" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"nXu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vkF" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"vkJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vkP" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"nYf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"nYh" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lantern, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"nYz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" + dir = 6 }, -/area/desert_dam/interior/caves/temple) -"nYZ" = ( -/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/exterior/valley/valley_mining) +"vkW" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vkY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_medical) -"oaz" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_isolation) +"vla" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vlf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/east_wing_hallway) +"vlo" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vlQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"obv" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/item/weapon/harpoon/yautja{ - name = "Alien Harpoon" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"vlU" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_central_south) +"vme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"odr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/medical/west_wing_hallway) -"odR" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"vmi" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/east_caves) +"vmz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/desert_dam/exterior/valley/south_valley_dam) +"vmW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"vne" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/area/desert_dam/interior/dam_interior/garage) -"ofB" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/surgery_room_one) +"vnf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"ogX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"vnn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/east, /area/desert_dam/interior/dam_interior/auxilary_tool_storage) -"oit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"olL" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"vnp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"onA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/southern_hallway) +"vns" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"ooQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"ooW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/valley_labs) -"opZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"vny" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oqy" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"vnO" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/prison/floor_marked, +/area/desert_dam/building/security/armory) +"vnT" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"osV" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/exterior/river/filtration_a) +"voa" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"von" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"otn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_mining) +"voA" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/temple) +"vpd" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"oua" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"vpg" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/prison/yellowfull, +/area/desert_dam/building/hydroponics/hydroponics) +"vpq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/office) +"vps" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/south_valley_dam) +"vpt" = ( +/obj/item/storage/fancy/vials/random, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"vpw" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ouK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"oyf" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vpy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_northwest) +"vpz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"ozu" = ( /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"oAM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" +/area/desert_dam/exterior/valley/valley_hydro) +"vpH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"oBR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_two) +"vpK" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/surgery_room_two) +"vqd" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/valley_hydro) -"oCu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal12" +"vqe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/asteroidplating, +/area/desert_dam/exterior/telecomm/lz2_tcomms) +"vqh" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"vqi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"oCD" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/landing_pad_one) -"oHA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"vqp" = ( +/turf/open/floor/plating/warnplate/north, +/area/desert_dam/exterior/telecomm/lz2_containers) +"vqt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vqx" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"vqR" = ( /obj/structure/desertdam/decals/road_stop{ - dir = 4; + dir = 8; icon_state = "stop_decal5" }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vre" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"vri" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river/riverside_central_north) +"vrm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"oIE" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/building/warehouse/loading) +"vrq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_northwest) +"vrs" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"vsw" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"vsF" = ( +/turf/open/gm/river/red_pool, +/area/desert_dam/building/dorms/pool) +"vsJ" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oJb" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"vsL" = ( +/obj/structure/closet/lasertag/blue, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/office) -"oJw" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"vte" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/dirt, +/area/desert_dam/interior/caves/central_caves) +"vtx" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/exterior/river_mouth/southern) +"vtO" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_wing) +"vtV" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_wilderness) +"vul" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/staffroom) +"vur" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/desert_dam/interior/dam_interior/hanger) +"vuu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"oKG" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +"vuT" = ( +/obj/structure/machinery/computer/turbine_computer, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/control_room) +"vuZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/security/prison) +"vvo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/lobby) +"vvw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"vvy" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"oNS" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/area/desert_dam/exterior/valley/valley_telecoms) +"vvF" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_northwest) +"vvK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"vvQ" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"vvW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"vvX" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/desert_dam/building/warehouse/loading) +"vvY" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/interior/caves/central_caves) +"vwj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/desert_dam/building/medical/emergency_room) +"vws" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"vwC" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"oOj" = ( -/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"vwF" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vwI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_mining) +"vwN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"vwT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box, +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vwX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"vxc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/building/cafeteria/loading) -"oQx" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"vxd" = ( +/turf/open/desert/rock/deep/rock3, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"vxe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"oUr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"oUN" = ( -/obj/structure/window/framed/chigusa, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"oVs" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/mining/workshop) +"vxi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/breakroom) +"vxl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/building/dorms/hallway_northwing) -"oVH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"vxv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"vxL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vyg" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"vyS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"vze" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/box/masks, /obj/item/storage/box/gloves{ pixel_x = 6; pixel_y = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/desert_dam/building/medical/treatment_room) -"oXx" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"oXK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"oYa" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"oYp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"oZM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"pac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/interior/dam_interior/garage) -"pal" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, +"vzl" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/valley_telecoms) +"vzn" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) -"paT" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"pba" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"pbC" = ( +"vzp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"pdi" = ( -/obj/effect/decal/sand_overlay/sand2{ +/area/desert_dam/exterior/valley/valley_hydro) +"vzw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vzD" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/floodgate_control) +"vzE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/interior/caves/central_caves) -"pif" = ( -/obj/docking_port/stationary/trijent_elevator/empty{ - id = "trijent_engineering"; - name = "Engineering Elevator"; - airlock_exit = "east"; - airlock_area = /area/shuttle/trijent_shuttle/engi; - elevator_network = "A" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"vzM" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/engi) -"pij" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"vzV" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel) +"vzW" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/colony{ + dir = 2; + name = "\improper Research Office" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"pke" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"pkl" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"vzY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/building/medical/chemistry) -"plo" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"poi" = ( -/obj/structure/desertdam/decals/road_edge, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"poH" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 10 - }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"poM" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vzZ" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vAg" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"vAt" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/north_valley_dam) +"vAB" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"puM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/security/prison) +"vAP" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"pva" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"vBu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"vBB" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"vBJ" = ( +/obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ - dir = 1 + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"pvs" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"pvy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) -"pwc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/desert_dam/building/mining/workshop) -"pwW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/desert_dam/exterior/valley/valley_labs) +"vBK" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/exterior/valley/valley_medical) +"vBO" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/medical/virology_wing) -"pyP" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"pzd" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"vCc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/backroom) +"vCk" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"vCp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/garage) -"pzv" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) +"vCs" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/white, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vDn" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_northwest) +"vDJ" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"pAE" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"pDd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ +"vDM" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"vDX" = ( +/obj/structure/bed/chair/office/dark{ dir = 4; - icon_state = "warnplate" + layer = 3.25 }, -/area/desert_dam/building/substation/northwest) -"pDW" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"vDY" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/interior/caves/central_caves) +"vEd" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"vEs" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"pEh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"vEw" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/deathrow) +"vED" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/desert_dam/interior/dam_interior/hanger) +"vEF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Research"; + network = list("chigusa_3") }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/red/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"vEJ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/desert_dam/building/dorms/hallway_northwing) -"pFj" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "wood" +/turf/open/shuttle/can_surgery/red, +/area/desert_dam/interior/dam_interior/hanger) +"vER" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"pFY" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vET" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"pGn" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"pGF" = ( -/obj/structure/window/framed/hangar/reinforced, -/turf/open/floor/plating, -/area/desert_dam/interior/dam_interior/garage) -"pHU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vEU" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/desert_dam/building/mining/workshop) -"pIe" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"vEY" = ( +/turf/open/floor/prison/red, +/area/desert_dam/building/security/northern_hallway) +"vFq" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"pIg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"vFF" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/loading) +"vFN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"vFO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"vFZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/warehouse/breakroom) -"pJW" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_telecoms) -"pKS" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"vGc" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"vGf" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"pLm" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vGl" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"vGp" = ( +/turf/open/asphalt/cement/cement15, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vGw" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"vGB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"pNG" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/desert/rock/deep{ - icon_state = "rock4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"vGE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Toilet Unit" }, -/area/desert_dam/interior/caves/temple) -"pOE" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vGR" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"pSM" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "purple-new-bridge" +/turf/open/floor/chapel/east, +/area/desert_dam/building/church) +"vGV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"vHe" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/building/dorms/pool) +"vHg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Workshop" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"vHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"pSV" = ( -/obj/item/tool/pen, -/obj/item/paper_bundle, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "wood" +"vHn" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/water_treatment_one/hallway) -"pTU" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"vHo" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter/random, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vHz" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/landing/console2) +"vHD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Medical Storage" }, -/area/desert_dam/exterior/valley/south_valley_dam) -"pUO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"vHH" = ( +/turf/open/floor/prison/blue/west, +/area/desert_dam/building/dorms/pool) +"vHQ" = ( +/turf/open/gm/empty, +/area/shuttle/trijent_shuttle/omega) +"vIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/garage) +"vIo" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"vIq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vIt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vIx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"pUR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/area/desert_dam/exterior/valley/valley_hydro) +"vIF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/open/floor/whiteblue/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vIQ" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"vIT" = ( +/obj/structure/bed, +/turf/open/floor/prison/southwest, +/area/desert_dam/building/medical/virology_isolation) +"vJw" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"vJO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/folder/black, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"pWn" = ( -/obj/structure/stairs, -/obj/structure/platform{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/CE_office) +"vJZ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_two) +"vKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"vKh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_crashsite) -"qbC" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/desert_dam/building/administration/meetingrooom) -"qbW" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +"vKr" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"vKt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qdy" = ( -/obj/structure/window/reinforced/tinted{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/west_wing_hallway) +"vKE" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/platform, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/building/administration/control_room) -"qfI" = ( -/obj/structure/flora/bush/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qjg" = ( -/turf/open/desert/rock/deep/transition{ - dir = 6 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"vKK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/CE_office) +"vKR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/interior/caves/temple) -"qkE" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/interior/wood/alt, -/area/desert_dam/building/security/detective) -"qkJ" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"vLd" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal11" }, -/obj/item/stack/sheet/wood/medium_stack, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qkZ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/desert_dam/exterior/telecomm/lz1_south) -"qlx" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"qlG" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/area/desert_dam/exterior/valley/south_valley_dam) +"vLl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"vLm" = ( +/obj/structure/largecrate/random/secure, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_wilderness) -"qlU" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/area/desert_dam/exterior/landing_pad_one) +"vLw" = ( +/obj/structure/window/shuttle, +/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/plating, +/area/desert_dam/interior/dam_interior/hanger) +"vLI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/building/warehouse/warehouse) +"vLY" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/prison/red/west, +/area/desert_dam/building/security/lobby) +"vMi" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) -"qmy" = ( -/obj/structure/surface/rack, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"qmU" = ( -/obj/effect/decal/sand_overlay/sand2{ - dir = 1 +"vMk" = ( +/turf/open/floor/wood, +/area/desert_dam/building/dorms/hallway_northwing) +"vMo" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/landing_pad_one) +"vMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"qnO" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/interior/wood, -/area/desert_dam/interior/dam_interior/east_tunnel_entrance) -"qoJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"vMq" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"vME" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/desert_dam/building/security/execution_chamber) +"vMG" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/lobby) +"vML" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/landing_pad_one) -"qqR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/whitepurple/north, +/area/desert_dam/building/medical/chemistry) +"vMO" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"vMW" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qtb" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vNa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_hydro) +"vNg" = ( +/turf/open/floor/prison/yellow/north, +/area/desert_dam/building/hydroponics/hydroponics) +"vNz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"vNI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/interior/caves/central_caves) +"vNN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_cargo) +"vOo" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/landing_pad_one) +"vOp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_labs) -"qwZ" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/staffroom) +"vOv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/desert_dam/building/dorms/hallway_northwing) +"vOw" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_one/lobby) +"vOD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Security" }, -/area/desert_dam/building/medical/surgury_observation) -"qxv" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_labs) -"qyu" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"vOP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qyD" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"vOR" = ( +/turf/open/floor/prison/red/west, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"vPi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vPr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hangar_storage) -"qyX" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/west_tunnel) +"vPu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vPV" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/southeast, +/area/desert_dam/building/security/southern_hallway) +"vQa" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon8_0, +/area/desert_dam/building/water_treatment_two/purification) +"vQq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Medical Hallway" + }, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"vQB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_mining) +"vQH" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/building/substation/southwest) +"vQT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"vQU" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitered/west, +/area/desert_dam/building/medical/primary_storage) +"vQX" = ( +/turf/open/floor/whitebluecorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"vRv" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"qzo" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"vRS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_telecoms) -"qCr" = ( -/obj/effect/decal/sand_overlay/sand1{ +"vRY" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vSp" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"qCu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"qCR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ +/obj/structure/sink{ dir = 4; - icon_state = "desert_transition_edge1" + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"vSs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/desert_dam/building/warehouse/breakroom) +"vSv" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/office2) +"vSx" = ( +/obj/structure/machinery/light, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement9, +/area/desert_dam/interior/dam_interior/east_tunnel_entrance) +"vSA" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, +/obj/structure/machinery/light, +/turf/open/floor/chapel, +/area/desert_dam/building/church) +"vSH" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/rock, /area/desert_dam/exterior/valley/valley_crashsite) -"qDb" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +"vSU" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/dam_interior/workshop) +"vSX" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_telecoms) +"vTl" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"vTp" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"vTA" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/disposals) +"vTK" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/filtrationside/east, +/area/desert_dam/exterior/valley/valley_hydro) +"vTL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"vTR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" }, -/area/desert_dam/exterior/valley/south_valley_dam) -"qEJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qGd" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"qHF" = ( -/obj/structure/flora/grass/desert/lightgrass_10, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qJI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"qJU" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 - }, -/area/desert_dam/interior/caves/temple) -"qKe" = ( -/turf/open/desert/rock/deep/transition{ - dir = 1 +/area/desert_dam/exterior/valley/valley_labs) +"vUf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"qKA" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/east_wing_hallway) +"vUh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"vUl" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qKE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_labs) +"vUn" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"qLD" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_civilian) +"vUo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/briefcase, +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/overseer_office) +"vUx" = ( +/obj/structure/surface/table, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/area/desert_dam/interior/caves/temple) -"qLT" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/darkred2/west, +/area/desert_dam/building/security/warden) +"vUL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/interior/caves/temple) -"qNk" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"vUW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"qPl" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"vVe" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/desert_dam/building/warehouse/breakroom) +"vVg" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"vVl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/west_wing_hallway) +"vVA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/donut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"vVI" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"vWe" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/desert_dam/exterior/landing_pad_one) +"vWn" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"vWo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/primary_storage) +"vWK" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 2; id = "garage_dd"; name = "\improper Garage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/desert_dam/interior/dam_interior/garage) -"qQz" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/south_valley_dam) -"qUv" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/smes_backup) -"qUT" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"qVN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +"vXn" = ( +/turf/open/floor/coagulation/icon4_8, +/area/desert_dam/building/water_treatment_one/purification) +"vXv" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"vXw" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/whiteyellow/west, +/area/desert_dam/building/water_treatment_one/breakroom) +"vXJ" = ( +/turf/open/floor/white, +/area/desert_dam/building/water_treatment_one/breakroom) +"vXK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"qXM" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"vXP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"vYe" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/temple) +"vYH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"vYO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qXZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/desert_dam/building/water_treatment_one/control_room) -"ral" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/security/staffroom) +"vYS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light{ +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/hanger) +"vYU" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"vZs" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"vZT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/landing_pad_one) +"vZZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Lobby" }, -/area/desert_dam/building/dorms/pool) -"ray" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/lobby) +"wav" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"waw" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"waz" = ( +/turf/open/floor/whitegreen/west, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"waC" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"rbp" = ( -/turf/open/desert/desert_shore/shore_corner1{ - dir = 1 + icon_state = "road_edge_decal11" }, -/area/desert_dam/interior/caves/temple) -"rbM" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"rdW" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"rdX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/garage) -"rfm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rfU" = ( -/obj/structure/disposalpipe/segment{ +"wbk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkpurple2, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"wbn" = ( +/turf/open/desert/excavation/component1/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"wbo" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"rgT" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/yautja_rope, -/turf/open/desert/rock/deep{ - icon_state = "rock4" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river_mouth/southern) +"wbP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_crashsite) +"wbW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/caves/temple) -"rjd" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/floor/filtrationside{ - dir = 9 +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"wcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_medical) -"rlU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"rmj" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10, -/turf/open/floor/wood, -/area/desert_dam/building/medical/break_room) -"rmo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"wch" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/interior/caves/central_caves) +"wcE" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_backup) +"wcV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/control_room) +"wdf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wdk" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wdl" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) +"wdH" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rob" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wdJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"wdN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"wdQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"wdS" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"wea" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/pool) +"wed" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"wef" = ( +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/valley/valley_labs) -"rpc" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"wen" = ( +/turf/open/desert/excavation/component9/west, +/area/desert_dam/exterior/valley/valley_crashsite) +"wep" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/west_tunnel) +"weq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office2) +"weu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"rpQ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"rqk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "bluecorner" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"wez" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"weI" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"weM" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"weO" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"rqX" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/interior/lab_northeast/east_lab_excavation) -"rtW" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/desert/desert_shore/desert_shore1/north, /area/desert_dam/exterior/valley/south_valley_dam) -"ruJ" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ruS" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"rvd" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"rxb" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor{ - icon_state = "freezerfloor" +"weV" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wfg" = ( +/obj/structure/machinery/cryo_cell, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/area/desert_dam/building/water_treatment_one/equipment) -"rxS" = ( -/obj/docking_port/stationary/trijent_elevator/occupied{ - id = "trijent_lz1"; - name = "Lz1 Elevator"; - elevator_network = "A"; - airlock_area = /area/shuttle/trijent_shuttle/lz1; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/A +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"wfo" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/breakroom) +"wfz" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/smes_main) +"wfC" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"wfF" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"wfN" = ( +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/west_wing_hallway) +"wfX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Water Treatment Hallway" }, -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz1) -"ryG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"wgb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"rAo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"rAL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/building/security/lobby) +"wgh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/telecomm/lz1_south) -"rAP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/cafeteria/loading) +"wgi" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"wgo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"wgA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"wgH" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/floor_marked/southwest, /area/desert_dam/building/hydroponics/hydroponics_loading) -"rBr" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"wgJ" = ( +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"wgM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"wgT" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/prison/blue/north, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"wgX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft{ + dir = 2 }, -/area/desert_dam/building/mining/workshop) -"rBP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 +/obj/structure/machinery/door/window/southleft{ + dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/dark, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"whj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"rCp" = ( -/obj/structure/platform/mineral/sandstone/runed, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rEa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_biology) -"rFi" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/lz2) -"rFz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "vault" +/turf/open/floor/prison/whitegreen/southwest, +/area/desert_dam/building/medical/emergency_room) +"whw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/substation/northwest) -"rFU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rGu" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Engine Room" }, -/area/desert_dam/exterior/valley/valley_hydro) -"rHw" = ( -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"rIY" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_room) +"whS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Containment" }, -/area/desert_dam/exterior/valley/valley_hydro) -"rJA" = ( -/obj/structure/lz_sign/dam_sign, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wig" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_cargo) -"rJK" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rNg" = ( -/obj/structure/machinery/door/poddoor/almayer{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"wiM" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"wjc" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/interior/caves/central_caves) +"wjd" = ( +/obj/item/trash/cheesie, +/turf/open/floor/interior/tatami, +/area/desert_dam/building/bar/bar) +"wje" = ( +/obj/structure/machinery/colony_floodlight, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"wjf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment{ dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 + icon_state = "pipe-c" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "warning" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/smes_backup) +"wjs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"rPh" = ( -/obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"wjx" = ( +/obj/structure/sink{ dir = 8; - icon_state = "sterile_white" + pixel_x = -12; + pixel_y = 2 }, -/area/desert_dam/building/medical/morgue) -"rPp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"rQJ" = ( -/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"wjY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/east_wing_hallway) +"wkj" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"rQQ" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"wkv" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/green/northeast, +/area/desert_dam/interior/dam_interior/atmos_storage) +"wkA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellowcorner/north, +/area/desert_dam/building/hydroponics/hydroponics) +"wkI" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_wilderness) +"wkK" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/exterior/valley/valley_civilian) +"wkP" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_east) +"wld" = ( +/turf/open/floor/prison/red/north, +/area/desert_dam/building/security/northern_hallway) +"wll" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"wlo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"rRt" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/desert_dam/building/dorms/hallway_westwing) -"rTP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/east_wing_hallway) +"wlC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/north_valley_dam) +"wlD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Break Room" }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"wlH" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/interior/caves/east_caves) +"wlR" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/landing_pad_one) +"wlT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - pixel_x = 30; - start_charge = 0 + name = "\improper Containment Lock"; + unacidable = 0 }, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/floor/dark2, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wma" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/garage) +"wmc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"wmd" = ( +/obj/structure/surface/table, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkred2/southwest, +/area/desert_dam/building/security/holding) +"wmv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + name = "Security Cameras - Habitation"; + network = list("chigusa_2") }, -/area/desert_dam/exterior/telecomm/lz2_tcomms) -"rTV" = ( -/turf/closed/wall/r_wall/bunker{ - name = "reinforced metal wall" +/turf/open/floor/prison/red/east, +/area/desert_dam/building/water_treatment_two/lobby) +"wmz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/break_room) +"wmB" = ( +/turf/open/floor/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"wmQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Containment Pen" }, -/area/desert_dam/exterior/rock) -"rUA" = ( -/obj/structure/fence, -/turf/open/desert/dirt{ - icon_state = "rock1" +/turf/open/floor/freezerfloor, +/area/desert_dam/building/medical/virology_wing) +"wmU" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"rUK" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rUZ" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/hanger) -"rVo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/prison, -/area/desert_dam/building/mining/workshop) -"rXI" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_cargo) +"wmW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"rZU" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_cargo) +"wnb" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wnf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wng" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"wns" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/north_valley_dam) +"wnx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_medical) -"sbP" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"woc" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/floor/coagulation/icon0_5, +/area/desert_dam/building/water_treatment_two/purification) +"wol" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"scm" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/north_valley_dam) +"won" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"woo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellow/east, +/area/desert_dam/interior/dam_interior/garage) +"wop" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/central_tunnel) +"wos" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"scv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"wot" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "whiteyellow" + icon_state = "pipe-c" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"woy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall/bunker, /area/desert_dam/interior/dam_interior/garage) -"sda" = ( +"wpd" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/telecomm/lz2_storage) +"wpj" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/desert/dirt, +/area/desert_dam/exterior/landing_pad_one) +"wpo" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"wps" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/equipment) +"wpt" = ( /obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/desert_dam/building/substation/northwest) -"sdq" = ( -/obj/structure/platform{ +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/substation/west) +"wpU" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"wpW" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_hydro) +"wqg" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"wql" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"wqF" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"wqJ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/desert/dirt{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"wqK" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "desert_transition_edge1" + icon_state = "pipe-c" }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"sdu" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"wqM" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"wrm" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"wrt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"wrw" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"wrx" = ( +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/exterior/valley/valley_hydro) +"wrB" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wrZ" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/treatment_room) +"wse" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/desert_dam/building/security/observation) +"wss" = ( +/turf/open/desert/rock/deep/transition/east, +/area/desert_dam/interior/caves/east_caves) +"wsP" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"wsS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_wilderness) +"wsZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wta" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"wth" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"wtD" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/east_wing_hallway) +"wtU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/southeast, /area/desert_dam/interior/dam_interior/primary_tool_storage) -"sfK" = ( -/turf/open/floor{ - icon_state = "white" +"wua" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/interior/caves/east_caves) +"wuj" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/emergency_room) +"wul" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"shm" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_crashsite) +"wur" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"wuv" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/south_valley_dam) -"sia" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" +"wuw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"wuC" = ( +/obj/structure/desertdam/decals/road_edge, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_telecoms) +"wuK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"skB" = ( -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_hydro) -"slN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/substation/central) +"wuY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Emergency Room" }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"slX" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/emergency_room) +"wvr" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/darkbrown2, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wvz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/welding, +/turf/open/floor/prison/blue/southwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"wwP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"sms" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_northwest) +"wwX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/lobby) +"wxo" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/atmos_storage) +"wxs" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/landing_pad_two) +"wxT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/bluecorner, +/area/desert_dam/interior/dam_interior/tech_storage) +"wxY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_medical) +"wya" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"smJ" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/desert_dam/building/mining/workshop) -"snD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +"wyg" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"wyi" = ( +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"wyB" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"wyR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"soS" = ( -/obj/structure/stairs{ +/area/desert_dam/exterior/valley/bar_valley_dam) +"wzd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"wzl" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel) +"wzr" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/east, +/area/desert_dam/interior/caves/central_caves) +"wzE" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"wzR" = ( /obj/structure/platform{ + dir = 8 + }, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river_mouth/southern) +"wAo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wAt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/desert_dam/building/administration/meetingrooom) +"wAx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"wAy" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/valley/valley_labs) -"srf" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"wAC" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/desert_dam/exterior/valley/valley_crashsite) -"ssy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wAP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal9" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ste" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Research Hallway" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"svy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/exterior/valley/valley_telecoms) +"wAS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"wAT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"swg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/lab_northeast/east_lab_workshop) -"sye" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/asphalt/cement, -/area/desert_dam/exterior/telecomm/lz1_south) -"syi" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"wBL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/substation/southwest) +"wCa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"wCc" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"wCB" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"wCD" = ( +/obj/structure/prop/dam/gravestone, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_hydro) -"sDf" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 10 +"wCO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/tech_storage) -"sEL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/virology_isolation) +"wCY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"wDA" = ( +/turf/open/floor/prison/redcorner/east, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"wDY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"sFe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"wEa" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/northwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"wEm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/desert_dam/exterior/valley/valley_medical) -"sHk" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sIK" = ( +"wEu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_wilderness) +"wEM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_one) +"wEO" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown2/east, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wEU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/break_room) -"sJY" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"wFa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wFp" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"wFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/church) +"wFG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"sKe" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/control_room) +"wFN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/stamp, +/obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10 - }, -/area/desert_dam/interior/dam_interior/north_tunnel_entrance) -"sLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"sLS" = ( -/obj/structure/window/framed/bunker/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"sMi" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"sML" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 4; - icon_state = "stop_decal5" +/turf/open/floor/prison/darkyellow2/southeast, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wFO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesewedge, +/obj/item/reagent_container/food/snacks/chips, +/obj/item/reagent_container/food/snacks/cookie, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"wFY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wGb" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"sNn" = ( -/turf/open/desert/rock/deep/transition{ +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"wGs" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/area/desert_dam/exterior/telecomm/lz1_south) -"sNQ" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"sNX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/landing_pad_two) +"wGC" = ( +/obj/structure/cargo_container/trijent/left/alt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_mining) +"wGF" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/valley_northwest) +"wGG" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"wGJ" = ( +/turf/open/floor/carpet/edge/southwest, +/area/desert_dam/building/administration/meetingrooom) +"wHe" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 + icon_state = "road_edge_decal2" }, +/obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"sPS" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/interior/caves/temple) -"sRl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "uppcrash" - }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +/area/desert_dam/exterior/landing_pad_two) +"wHl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_medical) +"wHm" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkbrown2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wHz" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/white, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wIa" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"wIc" = ( +/obj/structure/fence, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/interior/caves/east_caves) +"wIi" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"wIA" = ( +/turf/open/floor/whiteyellow/southwest, +/area/desert_dam/interior/dam_interior/break_room) +"wIG" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"wIQ" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) +"wIV" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/desert_dam/building/medical/treatment_room) +"wJj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/green/north, +/area/desert_dam/interior/dam_interior/atmos_storage) +"wJA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"wJD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/desert_dam/exterior/valley/valley_hydro) -"sUe" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wJR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_labs) +"wKC" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,6" }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/exterior/river/filtration_a) +"wKF" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/north, +/area/desert_dam/exterior/river/riverside_east) +"wKK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Kitchen" }, -/area/desert_dam/exterior/valley/valley_hydro) -"sUr" = ( -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"sWS" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"sXh" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/desert/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wKM" = ( +/turf/open/desert/excavation/component3/east, /area/desert_dam/exterior/valley/valley_crashsite) -"sXm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/item/handset, -/turf/open/floor/prison{ +"wKP" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"wLo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - icon_state = "blue" + name = "\improper Holding" }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"sXn" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/desert_dam/building/warehouse/breakroom) -"sXM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/holding) +"wLw" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sXR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_civilian) -"sYp" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/north_valley_dam) +"wLU" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sYw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"sYU" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"wLX" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"tai" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/warehouse/breakroom) +"wMk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"taG" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 1; - icon_state = "stop_decal5" +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"taH" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/lobby) +"wMo" = ( +/turf/open/floor/white, +/area/desert_dam/interior/dam_interior/lobby) +"wMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/desert_dam/exterior/valley/valley_hydro) -"tbb" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tdf" = ( -/obj/structure/surface/table, -/obj/item/folder/yellow, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"wMv" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/office) -"teR" = ( -/obj/structure/bed/chair/comfy/beige{ +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/desert_dam/exterior/river/riverside_central_south) +"wMD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/desert/rock/deep/transition, -/area/desert_dam/interior/caves/temple) -"thd" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"wMQ" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"wMU" = ( +/obj/structure/filtration/machine_32x32{ + icon_state = "filtration_segment_B_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"wNc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Tool Storage" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"wND" = ( +/turf/open/desert/rock/deep/transition/northeast, +/area/desert_dam/interior/dam_interior/north_tunnel) +"wNK" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_one) +"wOb" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"thp" = ( /obj/effect/blocker/toxic_water/Group_1, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/gm/river/desert/deep/covered, +/turf/open/desert/desert_shore/shore_edge1/north, /area/desert_dam/exterior/river/riverside_south) -"tii" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"tjX" = ( -/obj/structure/flora/grass/desert/lightgrass_3, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"tlh" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"tni" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" +"wOp" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"wOS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"tnu" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/exterior/valley/valley_crashsite) +"wOY" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/west, +/area/desert_dam/exterior/river/riverside_south) +"wPm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"wPz" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"toU" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/desert_dam/building/water_treatment_one/breakroom) -"trP" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"trZ" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"tsL" = ( -/turf/open/asphalt{ - icon_state = "tile" +"wPC" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/northwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wPR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/whitegreen/southwest, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"wPT" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "7,6" }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"tuC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"wPV" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wPW" = ( +/obj/effect/decal/sand_overlay/sand2, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/west_tunnel) +"wQg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/exterior/valley/valley_wilderness) +"wQk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/desert_dam/building/water_treatment_one/control_room) +"wQq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/desert/rock/deep/transition/northwest, +/area/desert_dam/exterior/telecomm/lz1_south) +"wQx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"tyc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"wQB" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_north"; + name = "\improper Checkpoint Lock"; + unacidable = 0 }, +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"wQZ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"wRa" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/valley_northwest) +"wRi" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tAs" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"wRj" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"tAt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"wRK" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet11_12/west, +/area/desert_dam/building/administration/office) +"wRN" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"wRP" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tAy" = ( -/obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tAG" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/area/desert_dam/exterior/landing_pad_one) +"wRQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"tBD" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"wRR" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/south_valley_dam) +"wRU" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "cargo_hangar1"; + name = "\improper Cargo Bay Hangar" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"tCK" = ( +/area/desert_dam/building/warehouse/warehouse) +"wSw" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northwest) +"wSC" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) -"tEn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_northeast"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/green/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"wSH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) -"tFi" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"wTc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"wTo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/caves/central_caves) -"tFG" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/exterior/telecomm/lz1_south) +"wTz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/desert_dam/building/administration/overseer_office) +"wTA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"wTC" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell{ - pixel_x = 5 - }, -/obj/effect/spawner/random/tool{ - pixel_x = -6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/interior/dam_interior/garage) -"tFS" = ( -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"tJG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/briefcase, -/turf/open/floor{ - dir = 8; - icon_state = "carpet13-5" +/turf/open/floor/plating/warnplate/east, +/area/desert_dam/building/medical/garage) +"wTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/building/administration/overseer_office) -"tKQ" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"wTX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"tKS" = ( +/turf/open/floor/prison/darkred2/west, +/area/desert_dam/building/security/deathrow) +"wUa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/desert_dam/building/dorms/pool) -"tLo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"wUh" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 10 + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_crashsite) +"wUr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/substation/northeast) +"wUw" = ( +/obj/structure/sink/kitchen, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tMi" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wUA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/armory) +"wUD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/sandstone/runed, -/area/desert_dam/interior/caves/temple) -"tMy" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/hangar{ - name = "reinforced metal wall" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wUM" = ( +/turf/open/floor/dark2, +/area/desert_dam/building/administration/archives) +"wUP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/building/mining/workshop) -"tOj" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"wUZ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"tPP" = ( -/obj/structure/platform, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_valley) -"tQR" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"tSK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/landing_pad_two) +"wVe" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"wVn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"wWf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"tUF" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"wWi" = ( +/turf/open/floor/prison/whitepurple/east, +/area/desert_dam/interior/lab_northeast/east_lab_east_hallway) +"wWl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Restroom" }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"tXS" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"wWE" = ( +/obj/structure/closet/secure_closet/medical_doctor, +/turf/open/floor/wood, +/area/desert_dam/building/medical/CMO) +"wWL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/armory) +"wWO" = ( +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel/manager, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"tZQ" = ( -/turf/closed/wall/r_wall, -/area/desert_dam/exterior/rock) -"uaK" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"ucS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/prison{ +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_one) +"wXa" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/valley_wilderness) +"wXk" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"wXu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - icon_state = "darkyellow2" - }, -/area/desert_dam/building/substation/southwest) -"uez" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/interior/dam_interior/garage) -"ueS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" + name = "\improper Emergency Room" }, -/area/desert_dam/exterior/telecomm/lz1_south) -"ueZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8" +/turf/open/floor/white, +/area/desert_dam/building/medical/emergency_room) +"wXE" = ( +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river_mouth/southern) +"wXM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"wXT" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_containment) +"wXX" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/control_room) +"wYe" = ( +/turf/open/floor/vault2/northeast, +/area/desert_dam/building/substation/northeast) +"wYO" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_crashsite) +"wZc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ufP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"wZr" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 8 }, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"wZI" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/control_room) +"wZT" = ( +/turf/open/floor/whiteyellow/west, +/area/desert_dam/interior/dam_interior/lobby) +"wZV" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"xaa" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/valley_crashsite) -"ufW" = ( -/turf/closed/wall/mineral/sandstone/runed, -/area/desert_dam/exterior/rock) -"ugJ" = ( +"xab" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison, +/area/desert_dam/building/substation/west) +"xac" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"xai" = ( /obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/desert_dam/building/water_treatment_one/lobby) -"uhf" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/desert_dam/interior/caves/temple) -"uis" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"uiH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"ukQ" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"xaB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_medical) +"xaP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/interior/dam_interior/garage) -"ulg" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_northwest) +"xaY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 2; + pixel_y = 2 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"ulm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 +/obj/item/stack/sheet/glass{ + amount = 30 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +/turf/open/floor/prison/darkpurple2/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xbj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/area/desert_dam/interior/dam_interior/garage) -"uml" = ( +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"xbt" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xbw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"umo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/area/desert_dam/exterior/landing_pad_two) +"xbA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/desert_dam/building/water_treatment_one/lobby) -"uso" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xbN" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xbR" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"xch" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/lobby) +"xci" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,5" }, -/obj/item/weapon/broken_bottle, -/turf/open/desert/rock/deep{ - icon_state = "rock4" +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"xcv" = ( +/obj/structure/machinery/chem_dispenser, +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/caves/temple) -"ute" = ( -/obj/structure/desertdam/decals/road_stop{ - icon_state = "stop_decal5" +/turf/open/floor/prison/darkpurple2/north, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xcG" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"uty" = ( -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"uvf" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz1_xenoflora) -"uxs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"uyn" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/desert_dam/building/cafeteria/backroom) -"uzL" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +/area/desert_dam/exterior/valley/valley_telecoms) +"xcJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"uAo" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"xcK" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/desert_dam/building/security/prison) +"xde" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_telecoms) +"xdh" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Containment Lock"; + unacidable = 0 }, -/area/desert_dam/exterior/valley/valley_hydro) -"uBP" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xdi" = ( +/obj/item/tool/mop, /obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/central_caves) -"uDU" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/desert_dam/interior/dam_interior/tech_storage) -"uFX" = ( -/turf/open/asphalt/cement_sunbleached, +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/dorms/pool) +"xdj" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"uGL" = ( -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/turf/open/desert/rock/deep, -/area/desert_dam/interior/caves/temple) -"uGO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison, -/area/desert_dam/building/cafeteria/loading) -"uGU" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +"xds" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/valley_crashsite) -"uKo" = ( -/obj/structure/platform/mineral/sandstone/runed{ - dir = 4 +"xdv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal10" }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/interior/caves/temple) -"uLr" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"xdx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_east) +"xdA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/north_valley_dam) +"xdR" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xec" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/obj/structure/tunnel, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"xen" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/desert_dam/interior/dam_interior/south_tunnel) -"uMk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/landing_pad_two) +"xeq" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"xeE" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_one/purification) +"xeU" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/dorms/restroom) +"xeY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitegreen, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xeZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/valley/valley_cargo) +"xfg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_northwest) +"xfi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/cafeteria/cafeteria) -"uMr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"uMG" = ( -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xfn" = ( +/turf/open/floor/darkyellow2/west, +/area/desert_dam/building/security/prison) +"xfQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"xfV" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/desert/dirt{ - icon_state = "dirt2" +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell{ + pixel_x = 5 }, -/area/desert_dam/exterior/valley/south_valley_dam) -"uMZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/spawner/random/tool{ + pixel_x = -6 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"uNF" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_crashsite) -"uPS" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/garage) +"xgd" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +/turf/open/floor/prison/darkyellowcorners2/north, +/area/desert_dam/interior/dam_interior/primary_tool_storage) +"xgp" = ( +/turf/open/floor/filtrationside/north, +/area/desert_dam/exterior/valley/valley_mining) +"xgq" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/valley_wilderness) +"xgu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_civilian) -"uRx" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "blue" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_two) +"xgv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/desertdam/decals/road_stop{ + dir = 8; + icon_state = "stop_decal5" + }, +/turf/open/asphalt, +/area/desert_dam/exterior/landing_pad_one) +"xgA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 }, -/area/desert_dam/interior/dam_interior/tech_storage) -"uRz" = ( -/obj/structure/flora/grass/desert/lightgrass_9, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_hydro) -"uTo" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_cargo) -"uUW" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "redcorner" +"xgP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"uVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/administration/hallway) +"xgS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xhe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/turf/open/floor/whitepurplecorner/east, +/area/desert_dam/building/medical/chemistry) +"xhf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy, +/turf/open/floor/prison/darkpurple2/northeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xhh" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"xhk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/desert_dam/exterior/valley/valley_civilian) -"uVK" = ( -/obj/item/tool/pickaxe, -/obj/effect/decal/remains/human, -/turf/open/desert/rock, -/area/desert_dam/interior/caves/temple) -"uWT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/effect/landmark/nightmare{ + insert_tag = "minievac_westresearch" }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"uXk" = ( -/obj/effect/decal/sand_overlay/sand2, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/area/desert_dam/exterior/valley/valley_wilderness) +"xhq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"uYD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"xhv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"vdp" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_wilderness) +"xhH" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ amount = 25 }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/smes_main) +"xhZ" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5" }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/turf/open/asphalt, +/area/desert_dam/exterior/valley/south_valley_dam) +"xim" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "2,1" }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"vfr" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" +/turf/open/gm/river/desert/shallow/toxic, +/area/desert_dam/building/water_treatment_two) +"xiv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand2, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xiD" = ( +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/substation/west) +"xiQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"xiY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Mess Hall" }, -/area/desert_dam/interior/caves/central_caves) -"vgm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xjr" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement7, +/area/desert_dam/exterior/valley/valley_wilderness) +"xjt" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xjI" = ( +/turf/open/floor/wood, +/area/desert_dam/building/security/southern_hallway) +"xjU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/floor/coagulation/icon2_0, +/area/desert_dam/exterior/valley/valley_mining) +"xjY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "E" }, +/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"vhs" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" +/area/desert_dam/building/hydroponics/hydroponics_loading) +"xjZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Treatment Checkpoint" }, -/area/desert_dam/interior/dam_interior/lobby) -"vir" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"xkf" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xkh" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall, +/area/desert_dam/building/dorms/restroom) +"xkk" = ( +/obj/structure/machinery/computer/aifixer, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xkB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/building/security/staffroom) +"xkG" = ( +/obj/effect/decal/sand_overlay/sand2/corner2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xkO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/landmark/nightmare{ - insert_tag = "shipgone" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/cell_stripe/east, /area/desert_dam/interior/dam_interior/hanger) -"viV" = ( -/obj/structure/fence, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vnf" = ( +"xkP" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/desert_dam/building/substation/northwest) +"xkR" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xkZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vph" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "hangar_dam_2"; + name = "\improper Hangar Shutters" }, -/area/desert_dam/exterior/valley/south_valley_dam) -"vpn" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/hanger) +"xll" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "uppcrash-supply" }, -/obj/structure/machinery/floodlight/landing, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"xlu" = ( +/turf/open/desert/excavation/component8/east, +/area/desert_dam/exterior/valley/valley_crashsite) +"xlA" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_crashsite) +"xlN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" }, -/area/desert_dam/exterior/landing_pad_two) -"vpz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vqt" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/desert_dam/building/medical/emergency_room) +"xlX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/lobby) +"xmv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vqJ" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"xmw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_civilian) +"xmL" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/building/medical/office1) -"vqR" = ( -/obj/structure/desertdam/decals/road_stop{ - dir = 8; - icon_state = "stop_decal5" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/desert_dam/exterior/river/riverside_east) +"xmV" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_east) +"xnb" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vqS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_northwest) +"xnd" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xnl" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_one/equipment) +"xno" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/building/mining/workshop_foyer) -"vte" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt, -/area/desert_dam/interior/caves/central_caves) -"vto" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/primary_tool_storage) -"vud" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"xnw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cheesie, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xnx" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/desert_dam/exterior/valley/valley_hydro) -"vuu" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"vvy" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/greencorner/east, +/area/desert_dam/building/dorms/hallway_northwing) +"xnC" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"vxt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/platform, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_labs) +"xnR" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"xnW" = ( +/obj/structure/machinery/sentry_holder/colony{ + dir = 8; + pixel_x = 24 }, -/area/desert_dam/building/water_treatment_one/breakroom) -"vzj" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xoh" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_labs) -"vzp" = ( +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xop" = ( +/turf/open/floor/whitegreen/east, +/area/desert_dam/building/lab_northwest/west_lab_xenoflora) +"xos" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/mining/workshop) +"xoF" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/cult, +/area/desert_dam/building/security/courtroom) +"xoL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_hydro) -"vzw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vAN" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/desert_dam/building/dorms/hallway_northwing) -"vBJ" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"xoO" = ( +/turf/closed/wall/hangar{ + name = "reinforced metal wall" }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vCE" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/area/desert_dam/exterior/valley/valley_hydro) +"xoW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"xpb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/area/desert_dam/exterior/valley/valley_labs) -"vDJ" = ( +/obj/item/reagent_container/food/snacks/cheesewedge, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xpj" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" + icon_state = "road_edge_decal3" }, -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"xpp" = ( +/turf/open/asphalt/cement/cement4, +/area/desert_dam/exterior/valley/valley_wilderness) +"xpu" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xpE" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/floor/coagulation/icon8_8, +/area/desert_dam/building/water_treatment_one/purification) +"xpQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vEb" = ( +/turf/open/floor/prison/blue/east, +/area/desert_dam/building/administration/control_room) +"xpU" = ( +/obj/item/clothing/head/welding, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/smes_main) +"xqi" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"xqz" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 8 }, +/turf/open/floor/coagulation/icon8_4, +/area/desert_dam/exterior/valley/valley_mining) +"xqA" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"xqQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_hydro) -"vEW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" +"xqS" = ( +/turf/open/desert/cave/cave_shore/southeast, +/area/desert_dam/interior/dam_interior/western_dam_cave) +"xqV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"vHj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"xra" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vHx" = ( -/obj/structure/tunnel, -/turf/open/desert/dirt{ - icon_state = "rock1" +/turf/open/floor/carpet10_8/west, +/area/desert_dam/building/church) +"xrm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/lobby) +"xrn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/landing_pad_one) +"xro" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/bar_valley_dam) +"xrS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/west, +/area/desert_dam/building/administration/hallway) +"xrV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"xrW" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/prison/darkredfull2, +/area/desert_dam/building/security/staffroom) +"xsa" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_civilian) -"vHQ" = ( -/turf/open/gm/empty, -/area/shuttle/trijent_shuttle/omega) -"vIx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xse" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xsB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"vLd" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"xsF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/dorms/restroom) +"xsH" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics) +"xsI" = ( +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/surgery_room_two) +"xsR" = ( +/turf/open/floor/carpet13_5/west, +/area/desert_dam/building/administration/office) +"xsS" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" + icon_state = "road_edge_decal3" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) -"vLw" = ( -/obj/structure/window/shuttle, -/obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/plating, -/area/desert_dam/interior/dam_interior/hanger) -"vMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"vOv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, +"xtd" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, /area/desert_dam/building/dorms/hallway_northwing) -"vRc" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +"xtn" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"xtA" = ( +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/warehouse/warehouse) +"xtK" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/desert_dam/building/security/armory) +"xtM" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northeast, +/area/desert_dam/interior/dam_interior/CE_office) +"xub" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/white, +/area/desert_dam/building/medical/chemistry) +"xuf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_one) -"vSw" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"xuj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_RND) -"vSF" = ( -/turf/open/desert/dirt{ +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/treatment_room) +"xuv" = ( +/obj/structure/machinery/sentry_holder/colony{ dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) -"vSH" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_crashsite) -"vSV" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" + pixel_x = 24 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"vTR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal4" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xuw" = ( +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_cargo) +"xuA" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"xuF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vUl" = ( -/obj/structure/desertdam/decals/road_edge, +/turf/open/floor/prison/bluecorner/east, +/area/desert_dam/building/dorms/pool) +"xuM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"xuQ" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_labs) -"vYZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill, -/turf/open/desert/rock/deep/transition{ - dir = 5 + dir = 1 }, -/area/desert_dam/interior/caves/temple) -"wav" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"waC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal11" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_telecoms) +"xuR" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/effect/decal/sand_overlay/sand1{ +/obj/structure/barricade/wooden, +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"xvh" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_crashsite) +"xvp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/red/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xvv" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/desert_dam/building/substation/northeast) +"xvY" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"xvZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wbv" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/turf/open/floor/prison/darkred2/northeast, +/area/desert_dam/building/security/southern_hallway) +"xwe" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"wcc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/landing_pad_one) +"xwh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"wgi" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"wgv" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"xwj" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_civilian) +"xwo" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wiz" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_central_south) +"xwx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"xwz" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northwestern_tunnel) +"xwP" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xwT" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_cargo) +"xxi" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/desert_dam/building/warehouse/warehouse) +"xxo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/building/mining/workshop) +"xxA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/northern_hallway) +"xxV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/central_tunnel) +"xyb" = ( +/obj/structure/bedsheetbin, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/desert_dam/building/medical/emergency_room) -"wiF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/garage) -"wiI" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/north, +/area/desert_dam/building/security/prison) +"xyp" = ( +/obj/structure/barricade/sandbags{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/garage) -"wjd" = ( -/obj/item/trash/cheesie, -/turf/open/floor/interior/tatami, -/area/desert_dam/building/bar/bar) -"wjC" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/sandbags{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/building/cafeteria/loading) -"woy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall/bunker, -/area/desert_dam/interior/dam_interior/garage) -"wpN" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 10 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"xyr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/gm/river/desert/shallow_edge/covered/west, +/area/desert_dam/exterior/river/riverside_central_north) +"xyw" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"xyy" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/workshop) +"xyM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/interior/dam_interior/smes_main) -"wpW" = ( -/obj/structure/flora/grass/desert/lightgrass_6, -/turf/open/desert/dirt, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_hydro) -"wqM" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +"xyQ" = ( +/turf/open/floor/filtrationside/southeast, +/area/desert_dam/exterior/valley/valley_hydro) +"xyW" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xzn" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/desert_dam/building/medical/north_wing_hallway) +"xzt" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/covered/north, +/area/desert_dam/exterior/river/riverside_east) +"xzS" = ( +/obj/structure/pipes/standard/manifold/hidden, +/turf/open/floor/prison/whitegreen/northwest, +/area/desert_dam/building/medical/emergency_room) +"xzT" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/caves/temple) +"xAd" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_north) +"xAo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"xAq" = ( +/obj/structure/surface/table, +/obj/item/folder/yellow, +/turf/open/floor/dark, +/area/desert_dam/interior/dam_interior/office) +"xAE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wrk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"xAH" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"xAJ" = ( +/obj/structure/machinery/door_control{ + id = "garage_dd"; + name = "Garage Lockdown"; + pixel_y = -28 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellow2, /area/desert_dam/interior/dam_interior/garage) -"wrl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cavein" - }, -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"wsD" = ( +"xAK" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/desert_dam/interior/dam_interior/garage) -"wud" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) -"wuC" = ( -/obj/structure/desertdam/decals/road_edge, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"wya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"xAS" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_hydro) -"wyo" = ( -/turf/open/desert/desert_shore/desert_shore1{ +"xBd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/meetingrooom) +"xBm" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/lab_northeast/east_lab_workshop) +"xBq" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/north_wing_hallway) +"xBw" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/marshals_office) +"xBy" = ( +/turf/open/desert/rock/deep/transition/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"xBI" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/area/desert_dam/interior/caves/temple) -"wyR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"xBQ" = ( +/turf/open/floor/darkyellow2/southeast, +/area/desert_dam/building/substation/northwest) +"xBS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"wzl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel) -"wAP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal9" +/turf/open/floor/whiteblue/west, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xBV" = ( +/obj/structure/platform, +/turf/open/desert/desert_shore/shore_corner2/east, +/area/desert_dam/exterior/valley/valley_labs) +"xCs" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"xCM" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating, +/area/desert_dam/exterior/telecomm/lz2_containers) +"xCQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_telecoms) -"wFv" = ( +"xCX" = ( +/turf/open/floor/prison/redcorner/west, +/area/desert_dam/building/security/northern_hallway) +"xDk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkbrown2/northeast, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"xDm" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitered" +/obj/item/alienjar, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xDr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_labs) +"xDH" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/medical/office1) -"wIi" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"wIr" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/interior/caves/east_caves) +"xEi" = ( +/obj/structure/toilet, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/loading) +"xEo" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/desert_dam/interior/dam_interior/auxilary_tool_storage) +"xEz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/desert/rock, +/area/desert_dam/exterior/valley/valley_crashsite) +"xEC" = ( +/turf/open/desert/excavation/component6/west, /area/desert_dam/exterior/valley/valley_crashsite) -"wLI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +"xEI" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"xEL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/blue/northwest, +/area/desert_dam/interior/dam_interior/tech_storage) +"xEN" = ( +/turf/open/desert/rock/deep/transition/north, /area/desert_dam/exterior/telecomm/lz1_south) -"wLV" = ( +"xES" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitered/northwest, +/area/desert_dam/building/medical/chemistry) +"xFA" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_wilderness) +"xFR" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/desert_dam/interior/caves/central_caves) +"xFW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/south_valley_dam) +"xGc" = ( +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"xGO" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/kitchen, +/area/desert_dam/building/dorms/restroom) +"xGP" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"xHa" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xHj" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/valley_hydro) -"wMw" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" +"xHk" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"xHr" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/south_valley_dam) -"wPb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 +"xIf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/east_wing_hallway) +"xIy" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/obj/structure/machinery/computer/communications, +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/control_room) +"xIA" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_storage) +"xIC" = ( +/turf/open/desert/dirt, +/area/desert_dam/exterior/telecomm/lz2_storage) +"xIL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/desert_dam/exterior/valley/valley_hydro) -"wQM" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"xIY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_crashsite) -"wQS" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"xJf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/east_wing_hallway) +"xJn" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "6,7" }, -/area/desert_dam/exterior/valley/valley_hydro) -"wQZ" = ( -/obj/structure/flora/grass/tallgrass/desert, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"wRg" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"xJo" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/mining/workshop_foyer) +"xJu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/emergency_room) +"xJv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_two) -"wRi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"wRR" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/south_valley_dam) -"wRX" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"wTz" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/desert_dam/interior/dam_interior/break_room) +"xJy" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/desert_dam/building/administration/overseer_office) -"wTP" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/turf/open/floor/prison/darkpurple2/west, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xJE" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_south) +"xJI" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"xJM" = ( +/turf/open/floor/carpet14_10/west, +/area/desert_dam/building/bar/bar) +"xJQ" = ( +/obj/effect/blocker/toxic_water, +/obj/structure/filtration/coagulation{ + icon_state = "1,2" }, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - dir = 10 +/turf/open/gm/river/desert/deep/toxic, +/area/desert_dam/building/water_treatment_two) +"xJY" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/desert_dam/exterior/valley/valley_hydro) +"xKd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/atmos_storage) -"wWE" = ( -/obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/wood, -/area/desert_dam/building/medical/CMO) -"wYO" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_crashsite) -"wZM" = ( -/obj/structure/flora/tree/joshua, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/east_wing_hallway) +"xKs" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/turf/open/floor/prison/blue/northeast, +/area/desert_dam/interior/dam_interior/tech_storage) +"xKC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_labs) -"xab" = ( -/obj/structure/machinery/recharge_station, /turf/open/floor/prison, -/area/desert_dam/building/substation/west) -"xaB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/desert_dam/building/hydroponics/hydroponics) +"xKL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Filtration" }, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/purification) +"xKO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/window/framed/colony, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xKP" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/workshop) +"xKS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_medical) -"xbj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal10" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xcG" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) +"xKT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_telecoms) -"xdj" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"xec" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/structure/tunnel, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"xgA" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ - dir = 5 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/west_wing_hallway) +"xKX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Foremans Office" }, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_hydro) -"xhv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/desert/rock, -/area/desert_dam/exterior/valley/valley_wilderness) -"xhZ" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/warehouse/breakroom) +"xLc" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/valley_crashsite) +"xLt" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"xjb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"xLB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/building/cafeteria/loading) -"xjY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) +"xLS" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/bar_valley_dam) +"xMd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_hydro) +"xMr" = ( +/obj/effect/blocker/toxic_water/Group_2, +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/asphalt, -/area/desert_dam/building/hydroponics/hydroponics_loading) -"xkh" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall, -/area/desert_dam/building/dorms/restroom) -"xkF" = ( -/obj/effect/decal/sand_overlay/sand1{ +/area/desert_dam/exterior/river/riverside_central_north) +"xMy" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/landing_pad_two) +"xMz" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xMD" = ( +/obj/structure/barricade/sandbags, +/obj/structure/barricade/sandbags{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_civilian) -"xkK" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 31; - start_charge = 0 +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_telecoms) +"xML" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/desert_dam/building/church) +"xMO" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xls" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/bar_valley_dam) +"xMU" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"xlE" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/north_valley_dam) +"xNa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Morgue" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/morgue) +"xNe" = ( +/turf/open/floor/prison/darkred2/east, +/area/desert_dam/building/security/prison) +"xNt" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/desert_dam/building/warehouse/loading) +"xNx" = ( +/turf/open/desert/rock/edge1/east, +/area/desert_dam/exterior/valley/valley_telecoms) +"xNY" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/morgue) +"xOb" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) -"xmH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/desert/rock/deep{ - icon_state = "rock4" - }, -/area/desert_dam/interior/caves/temple) -"xof" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt, +/area/desert_dam/exterior/valley/valley_civilian) +"xOe" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/desert_dam/exterior/valley/valley_labs) -"xoL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/desert_dam/interior/dam_interior/CE_office) +"xOh" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/interior/dam_interior/garage) +"xOv" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"xOx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/virology_wing) +"xOK" = ( +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/disposalpipe/segment, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xoO" = ( -/turf/closed/wall/hangar{ - name = "reinforced metal wall" - }, -/area/desert_dam/exterior/valley/valley_hydro) -"xpj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/gm/river/desert/deep, +/area/desert_dam/exterior/river/riverside_east) +"xOS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xqQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_hydro) -"xrx" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/hangar_storage) +"xOZ" = ( +/turf/open/floor/prison/darkbrowncorners3/west, +/area/desert_dam/interior/dam_interior/hanger) +"xPa" = ( +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_northwest) -"xss" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = null; - name = "\improper Elevator Lock" +/obj/effect/blocker/toxic_water, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/desert_dam/exterior/river_mouth/southern) +"xPo" = ( +/obj/structure/surface/table, +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 }, -/area/shuttle/trijent_shuttle/lz1) -"xsQ" = ( -/obj/effect/decal/sand_overlay/sand1{ +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/primary_storage) +"xPA" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt, +/area/desert_dam/exterior/valley/valley_hydro) +"xPH" = ( +/turf/open/floor/coagulation/icon0_8, +/area/desert_dam/exterior/valley/valley_hydro) +"xPN" = ( +/obj/effect/decal/sand_overlay/sand2{ dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_crashsite) -"xsS" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xPU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"xPX" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/greenfull/northwest, +/area/desert_dam/building/dorms/hallway_northwing) +"xQc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xQg" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/lobby) +"xQp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/interior/dam_interior/engine_west_wing) +"xQz" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, /turf/open/asphalt, -/area/desert_dam/exterior/valley/south_valley_dam) -"xuS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/area/desert_dam/exterior/landing_pad_one) +"xQB" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/desert_dam/interior/lab_northeast/east_lab_excavation) +"xQU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/northeastern_tunnel) +"xQW" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/whiteblue, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xQZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_hydro) -"xvX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1 +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/interior/lab_northeast/east_lab_west_hallway) +"xRa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_central_south) +"xRe" = ( +/obj/structure/sink, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"xRi" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/turf/open/floor/prison/blue/east, +/area/desert_dam/interior/dam_interior/tech_storage) +"xRt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/desert_dam/building/administration/meetingrooom) +"xRx" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/area/desert_dam/exterior/valley/valley_telecoms) -"xxd" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/interior/caves/central_caves) +"xRA" = ( +/turf/open/floor/warning/north, +/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +"xRK" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/landing_pad_one) +"xRO" = ( +/turf/open/floor/freezerfloor, +/area/desert_dam/interior/dam_interior/break_room) +"xSe" = ( +/turf/open/desert/excavation/component1/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"xSo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xSx" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "dam_checkpoint_northeast"; + name = "\improper Checkpoint Lock" }, -/area/desert_dam/building/water_treatment_two/lobby) -"xxv" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ +/turf/open/floor/warning, +/area/desert_dam/interior/lab_northeast/east_lab_east_entrance) +"xSC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/desert_dam/building/medical/virology_wing) +"xSP" = ( +/turf/open/desert/rock/deep/transition/southwest, +/area/desert_dam/exterior/valley/valley_wilderness) +"xSQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"xSR" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/floor/dark2, +/area/desert_dam/building/security/prison) +"xTb" = ( +/obj/structure/machinery/reagentgrinder, +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"xTc" = ( +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/dam_interior/garage) +"xTi" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/interior/caves/east_caves) +"xTm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteblue/north, +/area/desert_dam/interior/lab_northeast/east_lab_lobby) +"xTo" = ( +/turf/open/floor/prison/whitegreen, +/area/desert_dam/building/medical/emergency_room) +"xTE" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"xxQ" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_central_north) +"xTL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/desert_dam/interior/dam_interior/smes_backup) +"xTQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/desert_dam/exterior/telecomm/lz1_valley) -"xzc" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) +"xTZ" = ( +/turf/open/desert/rock/deep/transition/west, +/area/desert_dam/interior/dam_interior/west_tunnel) +"xUd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"xUm" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"xUR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/surgery_room_one) +"xUS" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreencorner/east, +/area/desert_dam/building/medical/emergency_room) +"xVf" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/hydroponics/hydroponics_loading) +"xVu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/dorms/hallway_westwing) -"xzm" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "green-new-bridge" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"xVA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/cafeteria/cold_room) +"xVQ" = ( +/turf/open/floor/coagulation/icon8_7_2, +/area/desert_dam/building/water_treatment_two/purification) +"xVV" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_labs) +"xVW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"xBw" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/interior/wood, -/area/desert_dam/building/security/marshals_office) -"xBM" = ( -/turf/open/desert/rock/deep/transition{ - dir = 5 +"xWq" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 }, -/area/desert_dam/interior/caves/temple) -"xCM" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating, -/area/desert_dam/exterior/telecomm/lz2_containers) -"xEz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/rock, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/valley_crashsite) -"xEP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "white" +"xWP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/desert_dam/interior/lab_northeast/east_lab_lobby) -"xFk" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" +/turf/open/floor/prison/blue/west, +/area/desert_dam/interior/lab_northeast/east_lab_RND) +"xWU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/green, +/area/desert_dam/building/dorms/hallway_westwing) +"xXB" = ( +/turf/open/asphalt/cement/cement1, +/area/desert_dam/exterior/valley/valley_wilderness) +"xXM" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/prison/southwest, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"xYf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_hydro) -"xFA" = ( -/obj/effect/decal/sand_overlay/sand1, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_wilderness) -"xHa" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xHA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "garage_dd"; - name = "\improper Garage" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement/cement4, +/area/desert_dam/interior/dam_interior/central_tunnel) +"xYk" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"xYJ" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_hydro) +"xYT" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/medical/north_wing_hallway) +"xZe" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitered/east, +/area/desert_dam/building/medical/office1) +"xZg" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"xIC" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/telecomm/lz2_storage) -"xKx" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_telecoms) +"xZv" = ( +/turf/open/floor/prison/sterile_white, +/area/desert_dam/building/cafeteria/cafeteria) +"xZw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/darkyellow2/west, +/area/desert_dam/building/mining/workshop) +"xZK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/desert_dam/interior/dam_interior/garage) -"xKC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/landing_pad_two) +"xZS" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison, -/area/desert_dam/building/hydroponics/hydroponics) -"xLS" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xMr" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/barricade/wooden{ +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/north_tunnel) +"xZV" = ( +/obj/structure/stairs, +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt, -/area/desert_dam/exterior/river/riverside_central_north) -"xNB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_crashsite) +"yae" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidplating" +/turf/open/floor/prison/blue/north, +/area/desert_dam/building/dorms/pool) +"yag" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/desert_dam/exterior/landing_pad_one) -"xOb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_civilian) -"xOK" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/disposalpipe/segment, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"xPA" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_hydro) -"xTH" = ( +/turf/open/floor/prison/green/north, +/area/desert_dam/building/dorms/hallway_northwing) +"yaB" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_labs) -"xUU" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/desert_dam/interior/caves/temple) -"xYb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_civilian) +"yaC" = ( +/obj/effect/decal/sand_overlay/sand2{ + dir = 4 }, -/area/desert_dam/building/mining/workshop) -"xYc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor{ - dir = 5; - icon_state = "vault" +/turf/open/asphalt/cement/cement1, +/area/desert_dam/interior/dam_interior/west_tunnel) +"yaH" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/area/desert_dam/building/substation/central) -"xZE" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/turf/open/floor/filtrationside/west, +/area/desert_dam/exterior/valley/valley_hydro) +"yaK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/nightmare{ - insert_tag = "minievac" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"yaP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/security/courtroom) +"yaQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_wilderness) -"yaA" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/desert/rock/deep/transition{ +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/interior/dam_interior/engine_east_wing) +"yaW" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/area/desert_dam/exterior/valley/valley_telecoms) +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_civilian) +"ybq" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/north_valley_dam) "ybA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal12" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_labs) +"ybE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/water_treatment_two/equipment) +"ybJ" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/desert_dam/building/security/warden) +"ybT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Administration Hallway" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/desert_dam/building/administration/hallway) +"ycc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/dark, +/area/desert_dam/building/security/interrogation) +"ycB" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"ycJ" = ( +/turf/open/desert/excavation/component9/southeast, +/area/desert_dam/exterior/valley/valley_crashsite) +"ycU" = ( +/obj/item/trash/USCMtray, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_labs) +"ycX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/desert_dam/interior/dam_interior/hanger) +"yda" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/valley_hydro) "ydw" = ( /obj/structure/window/framed/hangar/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/desert_dam/building/mining/workshop) +"ydx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/water_treatment_two/floodgate_control) +"ydF" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkred2/north, +/area/desert_dam/interior/lab_northeast/east_lab_security_armory) +"ydM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/warehouse/warehouse) +"ydP" = ( +/turf/open/floor/prison/whitegreen/north, +/area/desert_dam/building/medical/lobby) +"ydU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_northwest"; + name = "\improper Checkpoint Lock"; + unacidable = 0 + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/north_tunnel_entrance) +"ydW" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/exterior/telecomm/lz1_south) +"ydY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/desert_dam/interior/dam_interior/hanger) +"yeb" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_cargo) +"yef" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/telecomm/lz1_valley) +"yew" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/exterior/telecomm/lz1_valley) +"yeA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/desert_dam/building/medical/surgury_observation) "yeL" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/telecomm/lz2_tcomms) -"yfp" = ( +"yeZ" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"yfm" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/telecomm/lz2_storage) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) "yfq" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -65514,27 +50246,187 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt, /area/desert_dam/exterior/valley/valley_civilian) +"yfL" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_medical) +"yfR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_labs) +"yfZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/interior/wood, +/area/desert_dam/building/security/detective) +"ygf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/north_valley_dam) +"ygp" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/desert_dam/interior/dam_interior/west_tunnel) +"ygx" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ygy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/desert_dam/building/warehouse/breakroom) +"ygK" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_civilian) +"ygN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/lobby) +"ygS" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/desert/excavation/component7/southwest, +/area/desert_dam/exterior/valley/valley_crashsite) +"ygU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/desert_dam/building/cafeteria/cafeteria) +"yhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/desert_dam/exterior/valley/valley_mining) +"yhK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_two/hallway) +"yhO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/treatment_room) +"yhT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"yhV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/bright_clean/southwest, +/area/desert_dam/building/water_treatment_one/hallway) "yii" = ( /turf/closed/wall/r_wall/bunker, /area/desert_dam/exterior/rock) -"ykJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "dam_checkpoint_north"; - name = "\improper Checkpoint Lock"; - unacidable = 0 +"yim" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, +/area/desert_dam/exterior/landing_pad_one) +"yiu" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/prison{ - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreen/west, +/area/desert_dam/building/medical/west_wing_hallway) +"yiE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 }, -/area/desert_dam/interior/lab_northeast/east_lab_west_entrance) +/turf/open/floor/plating/asteroidfloor/north, +/area/desert_dam/interior/dam_interior/south_tunnel) +"yiT" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"yjt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner, +/area/desert_dam/building/medical/virology_wing) +"yjw" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/whitepurplecorner, +/area/desert_dam/building/medical/chemistry) +"yjx" = ( +/turf/open/floor/prison/whitered/north, +/area/desert_dam/building/medical/surgery_room_two) +"yjJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"yjQ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/xenoautopsy/tank{ + icon_state = "jarshelf_7" + }, +/turf/open/floor/prison/darkpurple2/east, +/area/desert_dam/interior/lab_northeast/east_lab_biology) +"yjU" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/telecomm/lz2_storage) +"ykk" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/valley_northwest) +"yko" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal3" + }, +/turf/open/floor/white, +/area/desert_dam/building/medical/garage) +"ykF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/desert_dam/building/medical/virology_wing) +"ykI" = ( +/obj/item/tool/pen, +/obj/item/paper_bundle, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/desert_dam/building/water_treatment_one/hallway) +"ykP" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/landing_pad_one) +"ykW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/whitepurple/north, +/area/desert_dam/interior/lab_northeast/east_lab_central_hallway) +"ylb" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/river/riverside_south) +"ylc" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/desert_dam/building/mining/workshop) "ylf" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal6" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/south_valley_dam) +"ylj" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/delivery, +/area/desert_dam/exterior/telecomm/lz1_south) "ylk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/van, @@ -65549,26 +50441,36 @@ }, /turf/open/asphalt/cement, /area/desert_dam/interior/dam_interior/south_tunnel) -"ylS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/asphalt, -/area/desert_dam/exterior/valley/valley_cargo) -"ylT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, +"ylK" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/hardpoint/locomotion/van_wheels{ - unacidable = 1 +/turf/open/floor/prison/sterile_white, +/area/desert_dam/interior/dam_interior/north_tunnel) +"ylR" = ( +/obj/structure/tunnel, +/turf/open/desert/dirt/rock1, +/area/desert_dam/exterior/valley/valley_civilian) +"yme" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/west, +/area/desert_dam/building/substation/northeast) +"ymg" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"ymh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/garage) +/turf/open/floor/freezerfloor, +/area/desert_dam/building/hydroponics/hydroponics_breakroom) +"ymj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/desert_dam/building/warehouse/loading) (1,1,1) = {" acu @@ -66610,8 +51512,8 @@ bRH bRH bRH bRH -bUd -bUe +lzU +dUX dTs dTs dTs @@ -66834,18 +51736,18 @@ dTs dTs dTs dTs -bQO +mqx bRI bRH bRH -bUd -bQO -bQO +lzU +mqx +mqx bRI bRH -bUd -bUe -bUf +lzU +dUX +xqS dTs dTs dTs @@ -67069,17 +51971,17 @@ dTs dTs dTs bQP -bRJ -bQO -bQO -bUe -bUf +dYE +mqx +mqx +dUX +xqS dTs -bRJ -bQO -bUe -bUf -arT +dYE +mqx +dUX +xqS +ezf dTs dTs dTs @@ -67303,17 +52205,17 @@ dTs dTs dTs dTs -bRK +fOC bQP bQP -bUf +xqS dTs dTs dTs -bTz -bRK +mzR +fOC bUg -awh +glY afD bPO bPO @@ -67336,22 +52238,22 @@ dTs dTs dTs dTs -cfe +xNx dTs dTs dTs dTs dTs -cfe -cfe -cfe +xNx +xNx +xNx dTs dTs dTs dTs dTs dTs -cfe +xNx dTs dTs dTs @@ -67538,40 +52440,40 @@ dTs dTs dTs ahm -bRK +fOC bQP bUg -awh +glY dTs dTs ahm ahn ahm -arT +ezf afD afD bPO bPO cdh cdh -cez -cfe -cfe -cfe -cfe -cfe +vDM +xNx +xNx +xNx +xNx +xNx dTs dTs dTs -cfe -cfe -cfe +xNx +xNx +xNx dTs dTs -cfe -cxn +xNx +vSX aRA -cez +vDM dTs dTs dTs @@ -67584,9 +52486,9 @@ dTs dTs dTs dTs -cxn +vSX ceA -cez +vDM dTs dTs dTs @@ -67618,10 +52520,10 @@ cpm cml cml cmm -csw -ctA -ckv -cvB +jTA +ipM +inr +kZj cgm dTs dTs @@ -67630,7 +52532,7 @@ dTs dTs dTs dTs -cuH +xuw dTs dTs dTs @@ -67657,7 +52559,7 @@ dTs dTs dTs dTs -cuH +sUT dTs dTs dTs @@ -67665,7 +52567,7 @@ dTs dTs dTs dTs -cuH +sUT dTs dTs dTs @@ -67770,24 +52672,24 @@ dTs dTs dTs afD -afk +fmr ahm ahm -bTz +mzR ahm -awh -azb -azs +glY +xpu +ueT ahm ahm ahm -awh -azb -azs +glY +xpu +ueT cbJ ccw cdl -cdL +uvY ceA ceA ceA @@ -67828,7 +52730,7 @@ cIe ceA ceA ceA -ceG +rPE beC dTs dTs @@ -67852,22 +52754,22 @@ cml crj cml cmm -cte -ctB -cuA -lUN +pel +hfj +lPA +mqA cgm cgm cgm -cfG +ooJ dTs dTs -csA -czt -cfG -csD -crr -cCL +tae +shd +ooJ +eTl +jTl +tRs dTs dTs dTs @@ -67889,18 +52791,18 @@ dTs dTs dTs dTs -csA -crq -csA -crq +pPA +fdJ +pPA +fdJ dTs dTs dTs -cwB -cwB -crq -csA -crq +oRd +oRd +fdJ +pPA +fdJ dTs dTs dTs @@ -68004,26 +52906,26 @@ dTs dTs dTs dTs -afn +iyi bRL -bSJ -bSJ -ceC -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -cbK -ccx -cdj -crO -ceB -ceB +mGQ +mGQ +npA +mGQ +mGQ +mGQ +mGQ +mGQ +mGQ +mGQ +mGQ +mGQ +ofP +vYU +uqS +kNe +rsz +rsz aQI aQI aQI @@ -68031,30 +52933,30 @@ aQI aQI aQI aQI -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB -ceB +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz +rsz aQI -cCM +hnF ceA cHV pJW @@ -68062,9 +52964,9 @@ cHY bRG ceA ceA -cez -hvG -jZZ +vDM +jqK +tIY beC dTs dTs @@ -68076,9 +52978,9 @@ dTs dTs dTs cgm -cic -cic -ndA +fZs +fZs +wpt cgm cku cml @@ -68086,22 +52988,22 @@ cml cml cml cmm -cth -cqd -cuA -cvE -cww -cxJ +qRq +xiD +lPA +hMi +iAT +qxm cmm -cUf -crr -cfG -csD +hbC +jTl +ooJ +eTl doE doE doE doE -crr +jTl dTs dTs dTs @@ -68116,27 +53018,27 @@ dTs dTs dTs dTs -csA -cwB -crq +pPA +oRd +fdJ dTs dTs -csA -cwB -csD -crr -csD -crr -cwB -cwB -csD -doE -doE -crr -csD -crr -crq -cuH +pPA +oRd +uqA +wxs +uqA +wxs +oRd +oRd +uqA +pXI +pXI +wxs +uqA +wxs +fdJ +sUT dTs dTs dTs @@ -68238,25 +53140,25 @@ dTs dTs dTs afD -afk +fmr bRM aqn -bbB -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bmy -bow -bqg -bqg -bub -bOf -bao +oqx +oBF +oBF +oBF +oBF +oBF +oBF +oBF +oBF +oBF +kSb +eps +eps +jKz +fTS +hQH bam bam bam @@ -68266,29 +53168,29 @@ bam bam bbE cdk -bao -bao -bao -bao -bao -bao -bao -bao -bao -bnB +hQH +hQH +hQH +hQH +hQH +hQH +hQH +hQH +hQH +oIR aSK aSK -bOf -bao -bao -bao -bao -bao -bao -bao -bao -bao -cCJ +fTS +hQH +hQH +hQH +hQH +hQH +hQH +hQH +hQH +hQH +ffD cHC cHV pJW @@ -68298,9 +53200,9 @@ ceA ceA ceA ceA -cez -hvG -jZZ +vDM +jqK +tIY dTs dTs dTs @@ -68320,58 +53222,58 @@ cpS cmm cgm cgm -ctw -cqd -cuA -cuA -cuA -cuA -cxR -cyC -cYk -cYk -cYk -cYk -cYk -cYk -cYk -cBV -cxV -dTs -dTs -dTs -dTs -dTs -dTs -csA -cwB -crq -dTs -dTs -csA -cwB -csD -doE -cxV -csB -crr -csD -doE -doE -doE -aMM -doE -doE -doE -doE -doE -doE -doE -doE -doE -cGR -cwB -crq +ptM +xiD +lPA +lPA +lPA +lPA +fnG +scH +jBy +jBy +jBy +jBy +jBy +jBy +jBy +imq +rNB +dTs +dTs +dTs +dTs +dTs +dTs +pPA +oRd +fdJ +dTs +dTs +pPA +oRd +uqA +pXI +xMy +rQd +wxs +uqA +pXI +pXI +pXI +ozk +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +wdl +oRd +fdJ dTs dTs dTs @@ -68472,24 +53374,24 @@ dTs dTs dTs afD -afk +fmr bRM -aQK -cxj -arT -awi -awi -awi -awi -awi -awj +taM +xiv +ezf +tRO +tRO +tRO +tRO +tRO +nOG ahm ahm cbc cbM ccw -cjO -cdL +mtQ +uvY ceA ceA ceA @@ -68498,8 +53400,8 @@ ceA ceA axk ceA -aSI -chG +jfc +xde ceA ceA ceA @@ -68509,10 +53411,10 @@ ceA ceA ceA ceA -bPA -aRy -aSL -cdL +dqC +jgu +mFQ +uvY ceA ceA ceA @@ -68527,14 +53429,14 @@ cHE cHX cIc cIg -bRZ -aUm -aUm -aUm -jLI +jKK +ozR +ozR +ozR +uwk ceA ceA -ceG +rPE dTs dTs dTs @@ -68543,69 +53445,69 @@ dTs dTs dTs cgm -cgn -cgY +fSo +dBE cih cih cgm -ckv -cmZ +inr +ePW cih -crk -csp -ckv -cmZ -cqd +sxW +gPv +inr +ePW +xiD cuB -cvF -cvF -cvF -cvF -cyE -cfq -cfq -cfq -cfq -cfq -cNm +kXQ +kXQ +kXQ +kXQ +fXz +gJr +gJr +gJr +gJr +gJr +xwT cZb -cfd -crr -dTs -dTs -dTs -dTs -cuH -csA -csD -doE -crr -cwB -crq -csB -doE -doE -doE -cGR -csD -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -cxV +vKr +jTl +dTs +dTs +dTs +dTs +sUT +pPA +uqA +pXI +wxs +oRd +fdJ +rQd +pXI +pXI +pXI +wdl +uqA +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +xMy dTs dTs dTs @@ -68706,34 +53608,34 @@ dTs dTs dTs afD -afk +fmr cEl -aTQ -cxj -awh +fnE +xiv +glY afD dTs dTs afD afD afD -awi -awi -awi +tRO +tRO +tRO bPO bPO cdh cdh -ceD -ceD -cwl +qre +qre +imw ceA ceA ceA axk ceA -aSI -chG +jfc +xde ceA acs acs @@ -68743,10 +53645,10 @@ aya aya acs acs -cjO -aTH -aTU -cjO +mtQ +fSR +qTL +mtQ aTZ aUe aUe @@ -68761,86 +53663,86 @@ ceA ceA cId ceA -bPA -bSv -bSG -bYR -beN -aUm -jLI -cez -jZZ +dqC +owO +jca +eXg +uFe +ozR +uwk +vDM +tIY dTs dTs dTs dTs -cfE -cfe +fCp +xNx cgm cgt -cgZ +rsR cih cih cjI cih -cqd -cqd -cqd -cqd -cqd -cqd -cqd +xiD +xiD +xiD +xiD +xiD +xiD +xiD cih -cvF -cwx -cxN +kXQ +gpV +sPO cmm -cUg +kSE doE doE doE doE doE -cPG -cTD -cYY -cUf -cxV -dTs -dTs -cwB -cwB -csD -doE -doE -doE -doE -crr -csD -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -doE -cuL -crw -crw -cuz -doE -doE -crr -crq +feF +qof +toT +hbC +rNB +dTs +dTs +oRd +oRd +uqA +pXI +pXI +pXI +pXI +wxs +uqA +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +pXI +grh +pJw +pJw +jmA +pXI +pXI +wxs +fdJ dTs dTs dTs @@ -68853,17 +53755,17 @@ dTs dTs dTs dTs -air +sVC dTs dTs -air -amP -apt -ahu +sVC +kDx +ife +qmI dTs dTs dTs -apt +ife dTs dTs dTs @@ -68883,9 +53785,9 @@ dTs dTs dTs dTs -ahu -air -apt +qmI +sVC +ife dTs dTs dTs @@ -68940,18 +53842,18 @@ dTs dTs dTs bPO -azs +ueT cEl -aQK -bTB -awh +taM +oRO +glY dTs dTs dTs dTs -aho -aho -aho +qNM +qNM +qNM afD dTs dTs @@ -68959,15 +53861,15 @@ dTs dTs cdh cdh -cff -cxk +gCB +fEp ceA ceA ceA axk ceA -aSI -chG +jfc +xde ceA hyH acs @@ -68978,8 +53880,8 @@ aWF aWF acs boO -bou -brs +ofm +kTE boO aTZ bdQ @@ -68995,15 +53897,15 @@ aTZ aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -cdL +dqC +iZL +tEN +tGJ +mtQ +mtQ +uvY ceA -ceG +rPE dTs dTs dTs @@ -69011,71 +53913,71 @@ dTs kzQ ceA cgm -cic -cha +fZs +sAM cih cih cih cih -cni -cni -cni -cni -cni -cni -cni +nut +nut +nut +nut +nut +nut +nut cih -cvF -cwy +kXQ +ekl cgm cgm dTs dTs -cwz -cXl -cuP -cuP -cXm -cAQ -cCO -ctK +xeZ +eSi +kFw +kFw +nyn +sTX +sGB +eED dTs dTs -cwz +lHL aKY -cMq -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -aLy -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cGu -cMq -cQn -lIK -crx -crx -tlh -doE -doE -dgG -cxV -cuH +rft +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +srR +vEd +vEd +vEd +vEd +vEd +vEd +vEd +vEd +rft +ixR +kRY +dws +dws +urT +pXI +pXI +tdU +xMy +sUT dTs dTs acu @@ -69086,25 +53988,25 @@ dTs dTs dTs dTs -ahu -ais -apu -aba -abj -cSZ -abN -apt -ahu -air -aiY -apu -apt -ahu +qmI +vOo +eHt +poP +nEB +mNs +snu +ife +qmI +sVC +aze +eHt +ife +qmI dTs dTs dTs dTs -air +sVC dTs dTs dTs @@ -69116,14 +54018,14 @@ dTs dTs dTs dTs -air -amP -aiY -axZ -ahu +sVC +kDx +aze +not +qmI dTs -amP -apt +kDx +ife dTs dTs dTs @@ -69174,11 +54076,11 @@ dTs dTs dTs bPO -bQR -bKb -aQK -bTB -awh +kFe +xjt +taM +oRO +glY dTs dTs dTs @@ -69194,14 +54096,14 @@ dTs dTs dTs dTs -ash +fcc axk axk axk aPu ceA -aSI -chG +jfc +xde ceA ceA aya @@ -69211,10 +54113,10 @@ bbO aZp aWF aya -boW -bou -bou -bsb +plm +ofm +ofm +vEY aUe bfz bwE @@ -69229,16 +54131,16 @@ bgz aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -bYP +dqC +iZL +tEN +tGJ +mtQ +mtQ +gTq ceA -cez -jZZ +vDM +tIY dTs dTs dTs @@ -69250,65 +54152,65 @@ chb ciC cih cgm -clw +qJT cih -cwk -crl -css -cst -cst -clw +bvs +iZr +fqU +pYR +pYR +qJT cih -cwk -cxo +bvs +nzn cgm dTs dTs dTs dTs dTs -czw -czY +nVT +tIR cAa -cAR -cCU +hhE +vZs cAa dTs dTs -csD -alh -cMC -aav -cFI -cFS -cGG -cFc -cFI -cFS -cGG -cFc -cFI -cFS -cLe -cEZ -cCZ -cFS -cGG -cFc -cFI -cFS -cGG -cDL -cMC -cgh -cUl -cvJ -crz -tlh -doE -doE -doE -cxV +uqA +qIt +rpX +iNH +gdV +tOU +sdr +oCR +gdV +tOU +sdr +oCR +gdV +tOU +xen +twU +fwa +tOU +sdr +oCR +gdV +tOU +sdr +eLH +rpX +dnj +tFE +xbw +bDN +urT +pXI +pXI +pXI +xMy dTs dTs dTs @@ -69318,30 +54220,30 @@ acu acu dTs dTs -ahu -ahu -air -aiY -aqz -cQf -nzB -nzB -cSZ -aTC -amP -aiY -aiZ -aiZ -apu -apt -ahu +qmI +qmI +sVC +aze +ogr +roM +pIp +pIp +mNs +iDx +kDx +aze +oWK +oWK +eHt +ife +qmI dTs dTs -air -aiY -apu -amP -apt +sVC +aze +eHt +kDx +ife dTs dTs dTs @@ -69350,15 +54252,15 @@ dTs dTs dTs dTs -aiY -apc -apP -apu -apt -ait -aja -apu -apt +aze +jRH +nNe +eHt +ife +mVq +yim +eHt +ife dTs dTs dTs @@ -69408,34 +54310,34 @@ dTs dTs dTs bPO -bQS -bKc -aQK -bTB +ngq +nwm +taM +oRO dTs dTs dTs dTs arF -ryG -wiF -ukQ -bNo -wiI +qQf +xOh +oWf +bMx +ljy arF dTs dTs dTs dTs dTs -cxk +fEp ceA ceA ceA ceA ceA -aSI -chG +jfc +xde aUg ceA aya @@ -69444,11 +54346,11 @@ aZj bbO aZp aWF -bnD -bom -bom -bom -bsh +irc +pDE +pDE +pDE +xCX aUe bfz bwF @@ -69458,25 +54360,25 @@ bfz bKf bKl bgz -bMZ -bNK +xoF +ptX aTZ ceA ceA -bPA -bQN -bSH -bUR -cjO -cjO -cdL +dqC +iZL +tEN +tGJ +mtQ +mtQ +uvY ceA ceA -cez -hvG +vDM +jqK dTs dTs -bPA +dqC kzQ ceA cgm @@ -69502,20 +54404,18 @@ dTs dTs dTs dTs -csB +eMf cOj -cJx -cfd +sUf +vKr doE -crr +jTl dTs dTs -cDb -cDK -cDY -cDY -cDY +gTl +jxf cDY +mCv cDY cDY cDY @@ -69524,6 +54424,7 @@ cDY cDY cDY cDY +mCv cDY cDY cDY @@ -69532,18 +54433,19 @@ cDY cDY cDY cDY +mCv cDY -cMD -cBS -cUl -crx -crx -tlh -doE -doE -doE -crr -crq +llW +dyI +tFE +dws +dws +urT +pXI +pXI +pXI +wxs +fdJ dTs dTs acu @@ -69551,52 +54453,52 @@ acu (18,1,1) = {" acu dTs -air -amP -amP -aiY -aiZ -aiZ -cQL -cRc -nzB -dvW -apP -aiZ -aiZ -aiZ -aiZ -aiZ -apu -apt -air -amP -aiY -aiZ -aJm -aiZ -apu -amP -apt -ahu +sVC +kDx +kDx +aze +oWK +oWK +hcb +ljA +pIp +eqI +nNe +oWK +oWK +oWK +oWK +oWK +eHt +ife +sVC +kDx +aze +oWK +qyx +oWK +eHt +kDx +ife +qmI dTs dTs -aiY -axZ -ait -aja -aiZ -apc -aiZ -apu -amP -aiY -aiZ -apu -apt -ahu -air -apt +aze +not +mVq +yim +oWK +jRH +oWK +eHt +kDx +aze +oWK +eHt +ife +qmI +sVC +ife dTs dTs dTs @@ -69643,19 +54545,19 @@ dTs dTs bNY bRj -bKt -csZ +xKP +nae bRj bNY bNY dTs dTs arF -aPU -aSs -aSs -aSt -rQJ +fir +pbb +pbb +xTc +hMh arF dTs dTs @@ -69667,9 +54569,9 @@ vvy oCu ceA aQc -ceB +rsz aSJ -chG +xde ceA ceA aya @@ -69679,11 +54581,11 @@ aZn aZp aWF aya -bpa -bql -bom -bou -aUr +fnH +gtc +pDE +ofm +eOP bgz bgz bzW @@ -69692,25 +54594,25 @@ bgz bgz bKJ bgz -bMZ -bNN +xoF +uVr aTZ ceA ceA -bPA -bRv -bSI -bUS -bUT -cjO -cdL +dqC +jPC +mLO +shv +nev +mtQ +uvY ceA ceA ceA ceA dTs -aUm -emt +ozR +slA kzQ ceA ceA @@ -69718,34 +54620,34 @@ ceA ceA ceA ceA -bPA -qzo -cdL +dqC +msa +uvY ceA ceA ceA ceA -bPA -qzo -cdL +dqC +msa +uvY ceA -bPA +dqC dTs dTs dTs dTs dTs dTs -csD +eTl doE -cJx -cfd +sUf +vKr doE doE dTs dTs -cDb -cDM +gTl +tNX cDY cDY cDY @@ -69767,71 +54669,71 @@ cDY cDY cDY cDY -cML -cBS -cUl -crx -crx -tlh -doE -cuO -doE -doE -cxV -cuH +xgu +dyI +tFE +dws +dws +urT +pXI +ace +pXI +pXI +xMy +sUT dTs acu "} (19,1,1) = {" acu dTs -ais -aiZ -aJm -aiZ -aiZ -aQS -anF -aHW -cQL -dvZ -aqz -aiZ -aiZ -aiZ -aQS -aqz -aiZ -apu -aiY -aiZ -aiZ -aiZ -aiZ -aiZ -aiZ -aQS -apu -amP -aiY -aiZ -aiZ -apu -amP -aiY -aiZ -aiZ -ben -aiZ -aiZ -aiZ -aiZ -aiZ -bge -amP -aiY -apu -amP +vOo +oWK +qyx +oWK +oWK +apE +ogF +wpj +hcb +wRP +ogr +oWK +oWK +oWK +apE +ogr +oWK +eHt +aze +oWK +oWK +oWK +oWK +oWK +oWK +apE +eHt +kDx +aze +oWK +oWK +eHt +kDx +aze +oWK +oWK +lES +oWK +oWK +oWK +oWK +oWK +oJZ +kDx +aze +eHt +kDx bht bht bht @@ -69852,8 +54754,8 @@ bht bht bht bht -afc -afc +eao +eao dTs dTs dTs @@ -69876,34 +54778,34 @@ dTs bNY bNY bNY -bQT -bKt -bVf -bTC -aJv +omQ +xKP +kkH +mGK +kna bNY dTs dTs arF -aPV -aSt -aSt -aSt -odR +hZu +xTc +xTc +xTc +roH arF dTs dTs -yaA -aSv +iIM +rVI aPY aSu aSu aPR -aQb +wLU aSJ aSK aSK -aTJ +jVF ceA ceA aya @@ -69913,11 +54815,11 @@ aZp aZp bkI aya -bpb -bqm -brt -bsk -aUK +wld +mxB +hUL +xxA +yaP biF biF biF @@ -69926,60 +54828,60 @@ biF biF bKZ bgz -bMZ -bNO +xoF +nbs aTZ ceA ceA -bPB -bRw -bSV -cjO -bUT -cjO -cdL +vRS +bBJ +viI +mtQ +nev +mtQ +uvY ceA ceA ceA ceA -bPA -cjO +dqC +mtQ aIT aKb -ceB -ceB -ceB -ceB -ceB -ceB -bnz +rsz +rsz +rsz +rsz +rsz +rsz +xuQ aSK -cqo -ceB -ceB -ceB -ceB -bnz +wKP +rsz +rsz +rsz +rsz +xuQ aSK -cwm +lkJ aUh -bPA -cxS -crq +dqC +oyE +kDC dTs dTs dTs -csD +eTl doE -cyB +clO cBU cGH -cBV +imq cSR dTs dTs -cDb -cGS +gTl +ibM cDY cDY cDY @@ -70001,17 +54903,17 @@ cDY cDY cDY cDY -cNb -cRB -cUl -cvJ -crz -tlh -doE -doE -doE -doE -cxV +wGs +qGB +tFE +xbw +bDN +urT +pXI +pXI +pXI +pXI +xMy dTs dTs acu @@ -70019,76 +54921,76 @@ acu (20,1,1) = {" acu dTs -ais -aiZ -aiZ +vOo +oWK +oWK aPA -aQe -aQT -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aVF -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -aQe -bhe +pWZ +scg +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +lHx +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +lHx +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +lHx +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +pWZ +jDw bhu -bhN -bik -biD -biZ -bhT -biD -bhT -bhT -bkR -bhT -bhT -biD -bhT -biZ -biD -bhT -bhT -biD -brB -bsr +plD +vIq +fin +rNy +hvQ +fin +hvQ +hvQ +dkO +hvQ +hvQ +fin +hvQ +rNy +fin +hvQ +hvQ +fin +gZy +heh ada -afh +idp dTs dTs byn @@ -70105,26 +55007,26 @@ byn byn byn bLU -afv -afv -afv -afv -afz -bQU -bKt -bVf -bTC -aKs -afv +jFL +jFL +jFL +jFL +iyo +sJs +xKP +kkH +mGK +vSU +jFL dTs dTs arF -aPU -aSQ -tuC -isz -tuC -qPl +fir +lpV +rKc +kxV +rKc +vWK wuC wuC wuC @@ -70133,24 +55035,24 @@ aTl aSu cvr aPR -aRy +jgu aSK aSK -aSL -cdL +mFQ +uvY aUh acs acs -aWQ +vpq aZp aZp aZp bkJ acs -bpb -bqn -bou -bsl +wld +pZd +ofm +lrc aUe bfz bwE @@ -70160,60 +55062,60 @@ bfz bKf bLe bgz -bMZ -bOz +xoF +iNW aTZ ceA ceA ceA ceA -bPA -bUT -bUT -bvJ -ccu +dqC +nev +nev +wdQ +uKN ceA ceA ceA ceA -bPA -cjO +dqC +mtQ csu aSK aSK cdk -bao -bao -bao -bao -bnB +hQH +hQH +hQH +hQH +oIR aSK aSK -bOf -bao -bao -bao -bao +fTS +hQH +hQH +hQH +hQH bbE -gMN -aUm -emt +wqJ +ozR +slA cxt -crr -cwB -csD +jTl +nDq +eTl doE doE -cyB -cAF -cTG -cTG -cji -ckp -crr -dTs -cDb -adf +clO +wMQ +pqt +pqt +tuX +taY +jTl +dTs +gTl +eiQ cDY cDY cDY @@ -70237,14 +55139,14 @@ cDY cDY cNh djl -daD -crx -crx -tlh -doE -doE -csE -cxU +eIx +dws +dws +urT +pXI +pXI +ohW +oSS dTs dTs dTs @@ -70253,10 +55155,10 @@ acu (21,1,1) = {" acu dTs -ait -aja -aiZ -aPB +mVq +yim +oWK +jtC aQf aQU aQU @@ -70301,64 +55203,64 @@ aQU aQU aQU bbV -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bss -bsr -afh +lnT +sLN +sLN +sLN +sLN +sLN +sLN +sLN +sLN +lnT +sLN +sLN +sLN +sLN +sLN +sLN +sLN +sLN +lnT +rar +heh +idp dTs dTs byo -bzh -bAh -bAh -bzi -bCP -bzh -bFG -bzi -bzi -bJb -bKm +nVP +vek +vek +vcH +hPh +nVP +nne +vcH +vcH +fuh +mxY byo -bLV -bMD -bMD -bMD -bMD -bMD -bQV -bMW -bVf -bLV -bMD -bMD +lWI +oqA +oqA +oqA +oqA +oqA +tIn +iWh +kkH +lWI +oqA +oqA dTs dTs woy -aPU -aSQ -pac -xKx -ieU -xHA +fir +lpV +jkI +lxV +utf +etm cvr aQC aQu @@ -70367,11 +55269,11 @@ aSX aUB aWf aXd -aRy +jgu aQt aSK -aSL -cdL +mFQ +uvY ceA ceA aya @@ -70381,10 +55283,10 @@ bbO aZp aWF aya -bpb -bqn -bom -bsb +wld +pZd +pDE +vEY aUe bfz bwE @@ -70401,53 +55303,53 @@ ceA ceA ceA ceA -bPA -bUT -bUT -bXP +dqC +nev +nev +wVe ceA ceA -baz -cwl +vzl +imw ceA -bPA -cjO -cFd -cgb +dqC +mtQ +jwq +stv aSK -chG +xde chw ciF ciF ciF -cmh -cos -cqG -crm +hyf +xZg +syQ +eBc ciF ciF chv ceA -aSI +jfc aSK -beO -cvD -cHu -cYk -cYk -cRL -cRL -cRL -dly +ogJ +orW +wmU +jBy +jBy +wmW +wmW +wmW +pFt cIi cRM cRM cRM dFn doE -cCY -cDb -abS +doE +gTl +oud cDY cDY cDY @@ -70471,15 +55373,15 @@ cDY cDY cNi dws -crx -crx -crx -tlh -crv -drL -drO -crr -crq +dws +dws +dws +urT +qIC +hAw +uMP +wxs +fdJ dTs dTs acu @@ -70488,9 +55390,9 @@ acu acu dTs dTs -ait -aja -aPB +mVq +yim +jtC aQg aQV aQV @@ -70534,65 +55436,65 @@ aQV aQV aQV aQV -bdD -bhP -bhP -mKW -mKW -bhP -bhP -bhP -biE +qEQ +skc +skc +kMi +kMi +skc +skc +skc +gCM bjk blx -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -vir -bst -bth -agP -afc +skc +skc +kMi +skc +skc +skc +skc +skc +hVF +tWv +tth +rYX +eao byr bhu -qyD -bzi -bBh -bCe -bCQ -bEd -bzi -bzi -bzi -bJc -bKn +hKh +vcH +sGk +kHv +ejz +pnp +vcH +vcH +vcH +xbN +wTA byo -bLW -bME -bLW -bNZ -bLW -gUh -bLW -bMW -bVf -bLW -bLW -bUX +ezS +oKa +ezS +oxT +ezS +xbR +ezS +iWh +kkH +ezS +ezS +vRY bLU dTs arF -kMM -dGx -ieU -ieU -ieU -kFW +jQu +gqU +utf +utf +utf +jRq cvr aQC aQC @@ -70601,11 +55503,11 @@ aSX aSu cvr aPR -aRy +jgu aSK aSK -aSL -cdL +mFQ +uvY ceA ceA aya @@ -70615,16 +55517,16 @@ bbP bhx aWF aya -boW -bqn -bom -bsb +plm +pZd +pDE +vEY aTZ bdQ bwE bwE bBS -bGG +eRM bfz bLf bfz @@ -70636,8 +55538,8 @@ bNE bNE bNE bNF -bTn -bZI +jeJ +fFI bNF bNE bNE @@ -70645,30 +55547,30 @@ bNE bNE bNE bNE -bRw -bSV -cgj -cey -chG +bBJ +viI +tqh +iHs +xde cfC -cjO -cjO -cjO -cjO -cex -cfp -cjO -cjO -cjO +mtQ +mtQ +mtQ +mtQ +rWQ +gIb +mtQ +mtQ +mtQ kzQ ceA -aSI +jfc aSK aSK csu cZb cZb -cYZ +oqt cIi cRM cRM @@ -70680,8 +55582,8 @@ crx dFo doE doE -cDb -cDM +gTl +tNX cDY cDY cDY @@ -70705,15 +55607,15 @@ cDY cDY cNx dws -crx -cvJ -crz -tlh -fSc -dsE -drT -cru -cxV +dws +xbw +bDN +urT +eNm +oKn +sgz +mJz +xMy dTs dTs acu @@ -70723,8 +55625,8 @@ acu dTs dTs dTs -ais -aPB +vOo +jtC aQg aQV aQV @@ -70768,65 +55670,65 @@ aQW aQV aQV aQV -bdD -bhP -bhP -bhP -bhP -bhP -bhP -biE +qEQ +skc +skc +skc +skc +skc +skc +gCM bkn bkS bly -bhP -bhP -bhP -bhP -bhP -bhP -asR -bhP -bhA -bst -bti -bsr +skc +skc +skc +skc +skc +skc +geo +skc +wAo +tWv +wZr +heh ada ada bhu -bzj -bzi -bzi -bzi -bCR -bEe -bzi -bzi -bzi -bJd -bzi +qem +vcH +vcH +vcH +kmB +xbt +vcH +vcH +vcH +foC +vcH bMw -bLW -bME -bLW -bNZ -bLW -bPP -bQW -bKt -bVf -bLW -bLW -bUY +ezS +oKa +ezS +oxT +ezS +pNJ +teS +xKP +kkH +ezS +ezS +unI bLU dTs arF -fyO -aSQ -mkd -ggn -ghz -qPl +pGd +lpV +jjD +vIa +tVf +vWK ray fgU nmP @@ -70835,11 +55737,11 @@ aUw cvr cvr aPR -aZN +veM aSK aSK -aSL -cdL +mFQ +uvY ceA ceA aya @@ -70848,11 +55750,11 @@ aZp bbO aZp aWF -bnD -bou -bqn -bom -bsb +irc +ofm +pZd +pDE +vEY aTZ aTZ aTZ @@ -70863,46 +55765,46 @@ bsp bGy bsp bKN -bLd -bLL -bLd +xjI +sEQ +xjI bNE -bRz -bTm -bVA -bSz -bSz -cak -caR +moW +xfn +xcK +kOc +kOc +gYv +gKg bNE -cdG +gZF bNE -cdG +gZF bNE dTs -bPA +dqC kzQ -aSI -chG +jfc +xde cfC -cjO -ccm -hMc -hMc -bqd -bqd -hMc -aUu -cjO -dGN -aUm -xvX +mtQ +qWg +rWs +rWs +fMz +fMz +rWs +iCt +mtQ +tEo +ozR +oBV aSK -bqd -cFd -aKo +fMz +jwq +jhT cIv -cYZ +oqt cUl crx crx @@ -70914,242 +55816,8 @@ crx dFo doE doE -cDb -cGS -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cDY -cPI -dws -crx -crx -crx -tlh -drL -uTo -drN -doE -crr -dTs -dTs -acu -"} -(24,1,1) = {" -acu -dTs -dTs -dTs -ais -aPB -aQg -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -aQV -bdD -bhP -bhP -bhP -biE -bjk -bjy -bjC -bjk -bjk -bjk -blx -bjA -bmD -bnc -bhP -biE -bnf -bhP -bhA -bst -bhT -bti -bvU -bwV -bhu -bzi -bzi -bTA -bVj -bzi -bzi -bzi -bzi -bzi -bzi -bzi -bMw -bLW -igd -bLW -bNZ -bLW -bPP -cvf -bNc -bVf -bLW -bUj -bUZ -bLU -dTs -arF -tFG -aSt -aSs -aSs -hAf -uez -aPT -aQJ -aSj -aQJ -aTl -aUB -aWf -aXd -aZN -aQt -aSK -aSL -cdL -ceA -ceA -aya -aXb -aWF -aWF -aWF -aWF -aya -bpe -bqq -bou -bsm -aUS -bld -bwH -bwH -bwH -aUS -bDL -bGz -bIW -bsp -bLd -bLd -bLd -bNE -bRC -bTn -bTn -bSz -bSz -bTn -caS -bNE -cdJ -bNE -cdJ -bNE -dTs -bPA -kzQ -aSI -chG -cfC -cjO -tAs -cjK -cmi -cmi -cmi -crn -aRy -cvD -cxv -beO -aSK -aSL -cjO -cjO -cxt -cJx -cYZ -cUl -crx -crx -crx -dlM -crx -crx -crx -dFo -cOj -doE -cDb -adf +gTl +ibM cDY cDY cDY @@ -71171,18 +55839,252 @@ cDY cDY cDY cDY -cPW -djk -cUk +cPI +dws +dws +dws +dws +urT +hAw +dhQ +eDC +pXI +wxs +dTs +dTs +acu +"} +(24,1,1) = {" +acu +dTs +dTs +dTs +vOo +jtC +aQg +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +aQV +qEQ +skc +skc +skc +gCM +bjk +bjy +bjC +bjk +bjk +bjk +blx +gzY +bmD +wnb +skc +gCM +ghE +skc +wAo +tWv +hvQ +wZr +fZP +iNU +bhu +vcH +vcH +oop +gUj +vcH +vcH +vcH +vcH +vcH +vcH +vcH +bMw +ezS +wOp +ezS +oxT +ezS +pNJ +eBq +qwC +kkH +ezS +vTl +vHo +bLU +dTs +arF +xfV +xTc +pbb +pbb +xAJ +uez +aPT +aQJ +aSj +aQJ +aTl +aUB +aWf +aXd +veM +aQt +aSK +mFQ +uvY +ceA +ceA +aya +aXb +aWF +aWF +aWF +aWF +aya +nlF +uWg +ofm +joi +aUS +vws +giO +giO +giO +aUS +pZy +bGz +eRG +bsp +xjI +xjI +xjI +bNE +xyb +jeJ +jeJ +kOc +kOc +jeJ +byI +bNE +gCI +bNE +gCI +bNE +dTs +dqC +kzQ +jfc +xde +cfC +mtQ +umK +lWP +qIG +qIG +qIG +tCy +jgu +orW +ezN +ogJ +aSK +mFQ +mtQ +mtQ +cxt +sUf +oqt +cUl crx crx -tlh -duc -drN -cAd +crx +dlM +crx +crx +crx +dFo +cOj doE -cxU -czA +gTl +eiQ +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cDY +cPW +djk +pYZ +dws +dws +urT +fAw +eDC +gCW +pXI +oSS +fLM dTs acu "} @@ -71191,8 +56093,8 @@ acu dTs dTs dTs -ais -aPB +vOo +jtC aQg aQV aQV @@ -71236,64 +56138,64 @@ aQU aQV aQV aQV -bdD -bhQ -bhP -asR -bja -bjl +qEQ +vED +skc +geo +hAq +pPq bjz -bkd -bko -bko -bko -bkd -bjm -bko -bnd -bnc +nFJ +lDd +lDd +lDd +nFJ +fJg +lDd +vEJ +wnb bjB -bhP -bhP -brC -bst -btj -bhT -bhT -bwW -cmf -bzk -bzk -bzk -bVo -bzk -bzk -bFH -bVo -bVo -bzk -bzk +skc +skc +khr +tWv +kGz +hvQ +hvQ +xOZ +cSf +uJk +uJk +uJk +hZU +uJk +uJk +hDN +hZU +hZU +uJk +uJk bMw -bLW -bLW -cvf -cvf -cvf -cvf -cCh -bOc -bVf -bLW -bLW -bUY +ezS +ezS +eBq +eBq +eBq +eBq +mDg +rcv +kkH +ezS +ezS +unI bLU dTs arF -dMY -aSt -aSt -aSt -iCw +mnI +xTc +xTc +xTc +iZg uez aPY cvr @@ -71303,11 +56205,11 @@ aSX aQC cvr aXd -aZN +veM aQt aSK -aSL -cdL +mFQ +uvY ceA act act @@ -71317,60 +56219,60 @@ aoj aoj act bnF -bpf -bqn -bom -bsb +cRo +pZd +pDE +vEY aUS -bmk -bwI -bwI -bwH -bGK -bDL +wse +pLZ +pLZ +giO +fNt +pZy bGz -bIW -bKP -bLd -bLM -bLd +eRG +kdf +xjI +oON +xjI bNE -bRD -bTn -bWM -bSz -bSz -bTn -bTn +hqK +jeJ +jWz +kOc +kOc +jeJ +jeJ cdt -cdN -cdN -cdN +psS +psS +psS bNE dTs -emt +slA kzQ -aSI -chG +jfc +xde cfC -cjO -tAs -ckr -cmj -aKl -crd -csj -aRy +mtQ +umK +qVC +pdj +qIw +gaA +tbP +jgu csu aSK aSK aSK aSK -beO -cvD -aKq +ogJ +orW +dDF cBU -cYZ +oqt dlb cMJ cMJ @@ -71382,8 +56284,8 @@ crx dFo doE doE -cDb -abS +gTl +oud cDY cDY cDY @@ -71405,16 +56307,16 @@ cDY cDY cDY cDY -cMD -cRE -cUl -cvJ -crz -tlh -csE -cxT -doE -doE +llW +syY +tFE +xbw +bDN +urT +ohW +hQf +pXI +pXI dTs dTs dTs @@ -71425,8 +56327,8 @@ acu dTs dTs dTs -ais -aPB +vOo +jtC aQg aQV aQV @@ -71470,64 +56372,64 @@ aQV aQV aQV aQV -bdD -bhP -bhP +qEQ +skc +skc vLw -bjb -bjm -bjA -bjm -bjm -bjm -bjm -bjm -bjm -bjm -bjm +mSF +fJg +gzY +fJg +fJg +fJg +fJg +fJg +fJg +fJg +fJg bnH boy -bhP -bhP -bhA -bst -btk -buB -bvV -bvV -coj -bzl -bzl -bTD -bVP -bTD -bTD -cbS -ccA -bTD -bTD -bTD -aSm -crQ -crQ -crQ -bLX -bLX -crQ -crQ +skc +skc +wAo +tWv +kSP +rRv +vUh +vUh +eVg +vLl +vLl +ozK +jBo +ozK +ozK +enL +vzY +ozK +ozK +ozK +uui +fAY +fAY +fAY +rwK +rwK +fAY +fAY cFi cGj -bSQ -bLW -bVb +eEA +ezS +mjw bLU dTs arF -pKS -sJY -ylT -glz -iCw +iUu +npY +gVs +qJt +iZg uez aPY aQC @@ -71537,74 +56439,74 @@ aSX aSu aSu aPR -aRy +jgu aQt aSK -aSL -cdL +mFQ +uvY ceA act -ayw -aXz -aZs -aXz -aXz -bla +okI +vLY +fus +vLY +vLY +dQU bnG -boW -bqn -bom -bsb +plm +pZd +pDE +vEY aUS -bml -bml -bml -bml +jDW +jDW +jDW +jDW aUS -bDL +pZy bGB -bIX +dZD bNE bNF -bPD +mGu bNF bNE -bSa -bTn -bSz -bYS -bYS -bSz -bTo +evt +jeJ +kOc +hpU +hpU +kOc +siZ cdt -cdN -cdN -cdN +psS +psS +psS bNE dTs -cjO +mtQ kzQ -aSI -chG +jfc +xde cfC -cjO -tAs -ckr -cmj -cmj -cmj -csj -aTH -cFd -cgb -bqd +mtQ +umK +qVC +pdj +pdj +pdj +tbP +fSR +jwq +stv +fMz aSK aSK aSK -aKn +rXD cZb cZb -cYZ +oqt cIi cRM cRM @@ -71616,8 +56518,8 @@ crx dFo doE doE -cDb -cDM +gTl +tNX cDY cDY cDY @@ -71639,17 +56541,17 @@ cDY cDY cDY cDY -cML -cBS -cUl -crx -crx -tlh -cru -csE -doE -doE -cxV +xgu +dyI +tFE +dws +dws +urT +mJz +ohW +pXI +pXI +xMy dTs dTs acu @@ -71658,9 +56560,9 @@ acu acu dTs dTs -air -aiY -aPB +sVC +aze +jtC aQh aQW aQW @@ -71704,64 +56606,64 @@ aQV aQV aQV aQV -bdD -bhR -mKW -biG -bjc -bjl +qEQ +urN +kMi +mOh +hcK +pPq bjB -bke -bkp -bkp -bkp -bke -bjm -bkp -bne -bnf +jXw +hBK +hBK +hBK +jXw +fJg +hBK +ulE +ghE bjz -bhP -bhP -brD -bst -bhT -buC -bhz -bhz -cwr -bSg -bSg -bSg -bVQ -bVQ -bSg -bSg -ccB -bSg -bzm -bzm -bzm -bLY -bLY -bLY -bLY -bLY -bLY -bLY +skc +skc +xkO +tWv +hvQ +rMr +tym +tym +jEn +iGU +iGU +iGU +fbZ +fbZ +iGU +iGU +xOS +iGU +mxu +mxu +mxu +qOx +qOx +qOx +qOx +qOx +qOx +qOx cEt cGk -bTM -bUk -bVc +fqf +kOd +qAV bLU dTs arF arF uez uez -aSt -gLb +xTc +eQA uez lop fgU @@ -71771,74 +56673,74 @@ aUw aUM aWf aXd -aRy +jgu aQt aQt -aSL -beN -aUm +mFQ +uFe +ozR aoj -aND -aVp -aVp -aSU -aSU -art -boh -bpg -bqt -bom -bsb +qAQ +sSt +sSt +hQw +hQw +xrm +kAR +ifC +oRJ +pDE +vEY aVw bmx bmx bmx bmx aVw -bFi +vbX bGB -bIX +dZD bNF bOD bPG bQu bNE -bSb -bTn -bSz -bYT -bYT -bSz -bTn +gEW +jeJ +kOc +jtX +jtX +kOc +jeJ cdt -cdN -cdN +psS +psS bcM bNE dTs -cjO -cgk -cew -cfo -chC -cjO -tAs -ckr -cmj -cmj -crg -csj -cjO -cjO -ctz -ctE -aTH -bqd -bqd -cFd -cHv +mtQ +vhl +jnh +gnq +vKE +mtQ +umK +qVC +pdj +pdj +jvy +tbP +mtQ +mtQ +pzA +pnQ +fSR +fMz +fMz +jwq +eOm cIv -cYZ +oqt cUl crx crx @@ -71850,10 +56752,10 @@ crx dFo doE cDc -cDb -cDV -cDY +gTl +lhb cDY +mCv cDY cDY cDY @@ -71862,6 +56764,7 @@ cDY cDY cDY cDY +mCv cDY cDY cDY @@ -71870,20 +56773,19 @@ cDY cDY cDY cDY +mCv cDY -cDY -cDY -cNb -cBS -cUl -crx -crx -tlh -drL -drO -doE -doE -cxV +wGs +dyI +tFE +dws +dws +urT +hAw +uMP +pXI +pXI +xMy dTs dTs acu @@ -71892,44 +56794,44 @@ acu acu dTs dTs -dDB -aiZ -aPC -aQi -aQX -aQX -aRZ +tcy +oWK +gUs +gfV +hUX +hUX +jFs aSx aSY aQg aUi -aUC -aVg -aQX -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aQX -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aVg -aQX -aVg -aRZ +pDK +iiH +hUX +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +hUX +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +hUX +iiH +jFs aQg aQV aQV @@ -71938,11 +56840,11 @@ aQV aQV aQV aQV -bdD -bhP -bhP -bhP -biG +qEQ +skc +skc +skc +mOh bjk bjC bjy @@ -71950,52 +56852,52 @@ bjk bjk bjk blx -bjA +gzY bmD -bnf -bhP -biG -bnc -bhP -bhA -bst -btl -buC -bhz -bwX -cQh -bzn -bzn -bzn -bzn -bWS -bzn -bFJ -ccB -bSg -bJe -bzn +ghE +skc +mOh +wnb +skc +wAo +tWv +dpT +rMr +tym +dkr +unu +khT +khT +khT +khT +mLK +khT +gZE +xOS +iGU +kTk +khT bMw -bLW -bLW -bLW -bLW -bLW -bLW -bLW -bKt +ezS +ezS +ezS +ezS +ezS +ezS +ezS +xKP cGl -bUo -bUl -bVd +tzo +jcG +vMW bLU dTs dTs arF -jde -ixe -scv -scv +rde +uvE +ooi +ooi uez wAP aQJ @@ -72005,74 +56907,74 @@ aTl aQC aSu aPR -aRy +jgu aSK aQQ aSK -beO -aUu -aqA -aSU -aSU -art -aSU -art -art -bom -bou -bqu -bom -bsb +ogJ +iCt +rKg +hQw +hQw +xrm +hQw +xrm +xrm +pDE +ofm +uVL +pDE +vEY aVw -bmV -bwK -bzX -bCM +foQ +eJx +wfC +ycc aVw -bDL +pZy bGB -bIW +eRG bNF bOD bOD bOD bNE -bSn -bTo -bSz -bYT -bYT -bTn -bYl +xuM +siZ +kOc +jtX +jtX +jeJ +pgS bNE -chd -cdN +eOl +psS bcM bNE dTs -cjO -cjO -cex -cfp -cjO -cjO -tAs -ckr -cmj -cmj -crh -csj -bvJ -bRw -bSV -cgj -bRw -bRw -bRw -bSV +mtQ +mtQ +rWQ +gIb +mtQ +mtQ +umK +qVC +pdj +pdj +jdc +tbP +wdQ +bBJ +viI +tqh +bBJ +bBJ +bBJ +viI cxt -cJx -cYZ +sUf +oqt cUl crx crx @@ -72084,40 +56986,40 @@ crx dFo doE doE -alh -cMC -wRg -cGQ -cFe -cFP -cGa -cGQ -cFe -cFP -cGa -cGQ -cFe -cHn -vpn -cFb -cFe -cFP -cGa -cGQ -cFe -cFP -cLL -cMC -cgh -cUl -cvJ -crz -tlh -dsE -drT -cru -doE -cxV +qIt +rpX +jAb +iQj +sab +xZK +hvl +iQj +sab +xZK +hvl +iQj +sab +eyC +tfS +wUZ +sab +xZK +hvl +iQj +sab +xZK +vJZ +rpX +dnj +tFE +xbw +bDN +urT +oKn +sgz +mJz +pXI +xMy dTs dTs acu @@ -72126,44 +57028,44 @@ acu acu dTs dTs -ais -aiZ -aiZ -aQj -aQY -aQZ -aSa +vOo +oWK +oWK +nyI +gDk +nyf +vZT aSx aQV aQV aUi -aUD -aVh -aQY -brW -bhv -boV -bpQ -aNv -bhv -boV -bpQ -aNv -bhv -bqk -xNB -brW -bhv -boV -bpQ -aNv -bhv -boV -bpQ -vRc -aQY -aUD -aVh +fCH +xrn +gDk +lQj +lUE +iHH +qbT +dsy +lUE +iHH +qbT +dsy +lUE +ksr +tSh +lQj +lUE +iHH +qbT +dsy +lUE +iHH +qbT +gVw +gDk +fCH +xrn aQg aQV aSY @@ -72172,64 +57074,64 @@ aQg aQV aQV aQV -bdD -bhP -bhP -mKW -bhP -bhP -bhP -biG +qEQ +skc +skc +kMi +skc +skc +skc +mOh bkn bkS bly -bhP -bhP -mKW -bhP -bhP -bhP -biG -bhP -bhA -bst -bhT -buC -bhz -bhT +skc +skc +kMi +skc +skc +skc +mOh +skc +wAo +tWv +hvQ +rMr +tym +hvQ bhu -bzo -bzo -bBj -bBj -bBj -bBj -bFK -ccB -bSg -bJf -bKo +gul +gul +gJL +gJL +gJL +gJL +sXG +xOS +iGU +fmz +iNA bMw -bLZ -bLW -bLW -bOa -bLW -bPQ -bLW -bKt +vla +ezS +ezS +xqi +ezS +ePC +ezS +xKP cGm cEs -bSQ -bVe -bTC +eEA +tFn +mGK aLX dTs arF -gxo -rdX -pzd -sfK +mlA +vdt +vig +oXh ebZ aPY aQC @@ -72239,74 +57141,74 @@ aSV aSu ylk xcG -aZN +veM aQt aQt aQt aQQ -aTK -art -art -art -art -bcA -biA -blW +uBl +xrm +xrm +xrm +xrm +iYO +eNH +uPJ bnF -bph -bqn -bom -bsn +iug +pZd +pDE +urD aVw -box -bwL -bwL -bwL -bIY -bDL +pTe +mNc +mNc +mNc +rmT +pZy bGB -bIW +eRG bNE bNF bPH bNF bNE -bSo -bTn -bWN -bYW -bYW -cal -cbI +vMO +jeJ +oEa +kzM +kzM +hak +mFP bNE -ciK -ciK -cdN +vuZ +vuZ +psS bNE dTs dTs -bRw -cey +bBJ +iHs aSK -beO -beO -aSL -ckr -cmj -cmj -cri -csj -cdL +ogJ +ogJ +mFQ +qVC +pdj +pdj +kud +tbP +uvY ceA -bPA +dqC kzQ aUh ceA ceA -bPA +dqC cxt -cJx -cYZ +sUf +oqt dlb cMJ cMJ @@ -72318,39 +57220,39 @@ crx dFo doE doE -aLK -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cDX -cES -cRB -cUl -crx -crx -tlh -duc -drN -csE -cxU +sBU +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fLS +fHd +qGB +tFE +dws +dws +urT +fAw +eDC +ohW +oSS dTs dTs dTs @@ -72360,22 +57262,22 @@ acu acu tZQ aad -aiY -aiZ -aiZ -aQj -aQZ -aQZ -aSb +aze +oWK +oWK +nyI +nyf +nyf +mqG aSx aQV aQV aUi -aUD -aVj -acI -aWh +fCH +qBv +bws aWh +vWe aWh aWh aWh @@ -72384,6 +57286,7 @@ aWh aWh aWh aWh +vWe aWh aWh aWh @@ -72392,12 +57295,11 @@ aWh aWh aWh aWh +vWe aWh -aWh -aWh -bAF +dkq aVi -aVh +xrn aQg aQV aSY @@ -72406,64 +57308,64 @@ aQg aQV aQV aQV -bdD -bhP -bhP -bhP -bhP -bhP -bhP -bhP -biG +qEQ +skc +skc +skc +skc +skc +skc +skc +mOh bjk blx -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bwY +skc +skc +skc +skc +skc +skc +skc +skc +wAo +tWv +hvQ +rMr +tym +swS bhu -bzp -bzo -bzo -bzo -bzo -bEf -bFK -bGR -bSg -bJf -bKp +uPL +gul +gul +gul +gul +wjs +sXG +hZa +iGU +fmz +eBK byo -eBo -bLW -bLW -bLW -bOM -bLW -bLW -bKt +xyy +ezS +ezS +ezS +oor +ezS +ezS +xKP cGn cEt -bTM -bVe -bTC +fqf +tFn +mGK aLX dTs arF -wrk -wsD -sfK -sfK +jCA +rgv +oXh +oXh pGF aPY cvr @@ -72473,45 +57375,45 @@ aTP aUM aWf aXd -aZN +veM aSK aQQ aQt -aSL -cjO +mFQ +mtQ aoj -aUf -aVp -aVp -bdd -biV -biV +qWU +sSt +sSt +oVX +bPy +bPy bnG -boW -bqn -bom -bsb +plm +pZd +pDE +vEY aWK aWK aWK aWK aWK aWK -bDL +pZy bGB -bIZ +qVT bNE -bOF +oNx bOD -bQv +eVZ bNE -bSs -bTn -bXD -bZG -bSz -bSz -ccs +mVN +jeJ +rZJ +qCT +kOc +kOc +pBN bNE bNE bNE @@ -72519,32 +57421,32 @@ bNE bNE dTs dTs -cwl -aSI +imw +jfc cdk -bao -bnB -aTU -ckt -rTP -cmk -cmk -cso -cdL +hQH +oIR +qTL +jHg +uqr +kQn +kQn +vqe +uvY ceA -bPA +dqC kzQ ceA ceA -bRZ -emt +jKK +slA cxt -cyG -cfq -cMM -czq -czW -czZ +pqx +gJr +glP +lie +hJl +pRl cUo crx crx @@ -72552,39 +57454,39 @@ crx cEa crw crw -poM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -cRM -daD -crx -crx -tlh -csE -cAd -doE -cxV +jpH +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +djl +eIx +dws +dws +urT +ohW +gCW +pXI +xMy dTs dTs dTs @@ -72592,22 +57494,22 @@ acu "} (31,1,1) = {" acu -aqf -aEG -aqf -aqf -aqf -aqT -auy -auy -auy -aPJ -aql -ara -asc -auy -arZ -aLa +vFq +sTx +vFq +vFq +vFq +rmn +qBK +qBK +qBK +sQy +aSY +aQg +nZZ +qBK +gQf +dlf aWh aWh aWh @@ -72629,9 +57531,9 @@ aWh aWh aWh aWh -bDO +nbU aVi -aVh +xrn aQg aQV aQV @@ -72639,32 +57541,32 @@ aQV aQV aQV aSY -bhf +fEq bhu -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bsu -bhT -buC -bhz -bwZ +nXE +bKd +bKd +bKd +bKd +bKd +bKd +bKd +bKd +nXE +bKd +bKd +bKd +bKd +bKd +bKd +bKd +bKd +nXE +deT +hvQ +rMr +tym +tVm bhu byo bMw @@ -72673,8 +57575,8 @@ bMw bMw byo bMw -ccB -bHQ +xOS +gnQ bMw byo byo @@ -72683,22 +57585,22 @@ bRj bRj bMb bMb -bPR -bLW -bNc +qlT +ezS +qwC cGn cEt -bVf -bVe -bTC +kkH +tFn +mGK aLX dTs arF -ulm -ibg -wud -qyX -iNg +jqn +woo +lWO +gUa +rfN aLY aOe aOe @@ -72707,31 +57609,31 @@ aPQ cvr cvr aXd -aRy +jgu aQQ aQQ aSK -aSL -cjO +mFQ +mtQ act -aUv -aVp -aVp -bde -bji -biV -bos -bou -bqn -bou -bsb +pQU +sSt +sSt +qhz +wgb +bPy +swG +ofm +pZd +ofm +vEY aWK -bpN -bwM -bzZ -bCN +iAl +heC +ukq +ljG aWK -bDL +pZy bGD bsT bNG @@ -72739,45 +57641,45 @@ bOG bOG bOG bNG -bSw -bTp -bXO -bSz -bSz -bSz -cak -bTm -bTm -bTm -csh +dMu +vAB +uLe +kOc +kOc +kOc +gYv +xfn +xfn +xfn +dJr bNE dTs -cff -cxk -aSI -chG +gCB +fEp +jfc +xde ceA -bPB -bRw +vRS +bBJ yeL yeL yeL dTs dTs mKs -cwl -bPA +imw +dqC kzQ ceA -bRZ -emt +jKK +slA cxP cxQ doE doE doE -cJx -cfd +sUf +vKr cuO cuM crx @@ -72786,39 +57688,39 @@ crx crx crx crx -ylS -crx -crx -ylS -crx -crx -ylS -dvo -dvo -ylS -crx -crx -ylS -dvo -dvo -cXA -crx -crx -ylS -crx -crx -ylS -crx -crx -ylS -crx -cvJ -crz -tlh -doE -cuO -aPK -cxV +jhI +dws +dws +jhI +dws +dws +jhI +pcY +pcY +jhI +dws +dws +jhI +pcY +pcY +dAZ +dws +dws +jhI +dws +dws +jhI +dws +dws +jhI +dws +xbw +bDN +urT +pXI +ace +tiF +xMy dTs dTs dTs @@ -72826,22 +57728,22 @@ acu "} (32,1,1) = {" acu -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aqg -agV -aqg -asa -qoJ +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQV +beT +aQV +aUi +jZk aWh aWh aWh @@ -72863,9 +57765,9 @@ aWh aWh aWh aWh -bFg -aVj -aVG +mdq +qBv +enf aQg aQV aQV @@ -72873,58 +57775,58 @@ aQV aQV aQV aSY -aSa +vZT bKM -bhT -bhT -biH -bhT -bjn +hvQ +hvQ +pVw +hvQ +xgS bhu -bhT -bhT -biH -bhT -bhT -biH -bhT -bhT -biH -bhT -bjn +hvQ +hvQ +pVw +hvQ +hvQ +pVw +hvQ +hvQ +pVw +hvQ +xgS bhu -bhT -bhT -btm -buC -bhz -bwW +hvQ +hvQ +eMq +rMr +tym +xOZ bKM -bzq -bzt -bzt -bzt -bzt -bzq -bzt -bBw -bwT -bzt -bzt -bzq -bzt -bzt -bzt -bzt +sIu +iZZ +iZZ +iZZ +iZZ +sIu +iZZ +nzq +vIo +iZZ +iZZ +sIu +iZZ +iZZ +iZZ +iZZ bRj -bLW -bLW -bKt +ezS +ezS +xKP bSS cEt cEt -cse -bTC +ipC +mGK aLX dTs arF @@ -72935,37 +57837,37 @@ arF arF dTs dTs -yaA -aSv +iIM +rVI aUA aSu aSu aPR -aRy +jgu aSK aQt aQt -aSL -cjO +mFQ +mtQ aoj -aND -aVp -aVp -bdw -biV -biV +qAQ +sSt +sSt +ttG +bPy +bPy bnG -bpe -bqq -bou -bsb +nlF +uWg +ofm +vEY aWK -bqh -bpN -bpN -bpN -bKe -bFk +kBS +iAl +iAl +iAl +mif +rsA bGE bJa bNH @@ -72973,26 +57875,26 @@ bOI bOD bOD bNH -bSz -bTn -bTo -bSz -bSz -bSz -bSz -bWM -bSz -bSz -csl +kOc +jeJ +siZ +kOc +kOc +kOc +kOc +jWz +kOc +kOc +uGY bNE dTs -cff -cxk -aSI -chG +gCB +fEp +jfc +xde aUh -baz -ceD +vzl +qre dTs dTs dTs @@ -73001,17 +57903,17 @@ dTs dTs dTs dTs -cuy -cwl -bPA -cxq +suh +imw +dqC +iNr cxQ doE drL drO crv -cJx -cfd +sUf +vKr doE cuM crx @@ -73020,39 +57922,39 @@ crx crx crx crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -dvo -cKL -dvo -dvo -cKL -dvo -crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -crx -cvG -crx -crx -crx -tlh -csE -doE -doE -cxV +gtQ +dws +dws +gtQ +dws +dws +gtQ +dws +pcY +fwx +pcY +pcY +fwx +pcY +dws +gtQ +dws +dws +gtQ +dws +dws +gtQ +dws +dws +gtQ +dws +dws +dws +urT +ohW +pXI +pXI +xMy dTs dTs dTs @@ -73060,22 +57962,22 @@ acu "} (33,1,1) = {" acu -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aqg -agV -aqg -asa -abQ +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQV +beT +aQV +aUi +xRK aWh aWh aWh @@ -73107,58 +58009,58 @@ aQV aQV aQV aSY -aSa -bhy -bhz -bhz -biI -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -rUZ -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -buC -bhz -bhz -byq -bzr -bzr -bTE -bTE -bTE -bzr -bzr +vZT +iGn +tym +tym +dyP +tym +tym +tym +tym +tym +tym +tym +tym +lSg +tym +tym +tym +tym +tym +tym +tym +tym +tym +rMr +tym +tym +nAK +qtd +qtd +qFN +qFN +qFN +qtd +qtd ccG bBm -bzr -bzr -bTE -crS -bTE -bTE -bTE -cxC -cyU -cyU +qtd +qtd +qFN +rLH +qFN +qFN +qFN +fqm +nwc +nwc cEt cGm cEt cEs -csX -bTC +nvV +mGK aLX dTs dTs @@ -73170,62 +58072,62 @@ dTs dTs dTs dTs -aSv +rVI aUA aUB aWC aXd -aRy +jgu aQt aSK aSK aSK -bfu -aru -aVp -aSU -aVp -bdz -bjj -lji +hYX +gxD +sSt +hQw +sSt +rcK +lKd +jiT bnF -bpi -bqn -bom -bsb +vcW +pZd +pDE +vEY aWK -bqh -bwO -bpN -bpN +kBS +lwj +iAl +iAl aWK -bFk +rsA bGE -bJH +eMP bNF -bOJ -bOJ -bOJ +xNe +xNe +xNe bNF -bSX -bTn -bYl -bZH -cai -bSz -cct -cdu -bSX -bTn -ccs +oku +jeJ +pgS +cWL +iUZ +kOc +rUs +hHd +oku +jeJ +pBN bNE dTs dTs -cxn -aSI -chG +vSX +jfc +xde ceA -aKk +nuk dTs dTs dTs @@ -73237,15 +58139,15 @@ dTs dTs dTs dTs -bPA -cxr -cwz +dqC +rKR +xeZ doE dsE uTo drO -cJx -cfd +sUf +vKr doE cAV cuJ @@ -73254,38 +58156,38 @@ cuJ cuJ cuJ cuJ -cuJ -cnA -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cUk -crx -dvo -cQc -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -cMJ -eCk -cuJ -cuJ -cuJ -cuJ -cuJ -sNX -doE -doE -doE +gHE +gsB +djk +djk +djk +djk +djk +djk +pYZ +dws +pcY +mlL +djk +djk +djk +djk +djk +djk +djk +djk +djk +djk +wHe +gHE +gHE +gHE +gHE +gHE +ofg +pXI +pXI +pXI dTs dTs dTs @@ -73294,22 +58196,22 @@ acu "} (34,1,1) = {" acu -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aSc -aIJ -aql -ara -agV -aqg -asa -cEc +fTo +fTo +fTo +fTo +fTo +fTo +fTo +fTo +xQz +cyM +aSY +aQg +beT +aQV +aUi +kRt aWh aWh aWh @@ -73341,59 +58243,59 @@ aQV aQg aQV aSY -aSa -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -bhz -buD -bvW -bvW -bvW -bCS -bWY +vZT +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +tym +gXH +uOn +uOn +uOn +haC +oCZ bTF bVZ -bWY -bWY -bWY -bGT +oCZ +oCZ +oCZ +rVP bCg bVZ -bWY -bWY +oCZ +oCZ bMd bCg -bCS -bCS -bOO -bOO -bOO -bOO -bSU -cGy +haC +haC +bbt +bbt +bbt +bbt +fpK +hCi cHD -csX -bTC -aKs +nvV +mGK +vSU bXQ bXQ bXQ @@ -73404,63 +58306,63 @@ bXQ bXQ dTs dTs -aSv +rVI aUx aWe aWD aYa -bae +xCQ bah bah bbA bah -bfG -atg -atg -aXA -aXA -bdH -bjH -bjH -bot -bpj -bqw -bru -bsb +tGi +iJK +iJK +tHr +tHr +gHJ +ekR +ekR +hcs +fpz +epg +rRi +vEY aWK -bqh -bpN -bpN -bDE +kBS +iAl +iAl +eHV aWK -bFi +vbX bGE -bIW +eRG bNE bNF -eNo +tAR bNF bNE bNF -bTr +mMq bNF bNE bNF -cam +ekc bNF bNE bNF -ckw +eeJ bNF bNE dTs dTs dTs -cJx -cfd +sUf +vKr doE -crr -crq +jTl +kDC dTs dTs dTs @@ -73473,20 +58375,20 @@ dTs dTs dTs dTs -csB +eMf czv dsE uTo drN -cJx -cfd +sUf +vKr doE doE doE doE doE doE -cxU +nvw dTs dTs bvA @@ -73496,29 +58398,29 @@ cNo cNo bvA cGN -cIZ -cIZ -cNR -cIZ +hCd +hCd +wRU +hCd cNo -cVH -cWn +fXv +vdw cNo bvA -daw -deU -cQm -cQm -aMT -aNx -cKp -doE -doE -doE -doE -doE -doE -doE +oXV +iGj +gqD +gqD +oWR +nNz +lnP +pXI +pXI +pXI +pXI +pXI +pXI +pXI dTs dTs dTs @@ -73531,19 +58433,19 @@ acu tZQ tZQ dTs -ars -aja -aiZ -aiZ -aFu -aSd -apz -aqg -aqg -aqg -aqg -asa -aLa +neB +yim +oWK +oWK +txx +gin +aSx +aQV +aQV +aQV +aQV +aUi +dlf aWh aWh aWh @@ -73575,59 +58477,59 @@ aQV aQg aQV aSY -aSa +vZT bKM -bhT -bhT -biD -bhT -bjn +hvQ +hvQ +fin +hvQ +xgS bhu -bhT -bhT -biD -bhT -bhT -biD -bhT -bng -bnI -bhT -bjn +hvQ +hvQ +fin +hvQ +hvQ +fin +hvQ +pxe +vbZ +hvQ +xgS bhu -brE -bhT -btl -buC -bhz -bwX +pKq +hvQ +dpT +rMr +tym +dkr bKM -bSh -bzt -bwb -bwT -bzt -bzt -bzt -bzt +kkf +iZZ +oFX +vIo +iZZ +iZZ +iZZ +iZZ bHR bCh -bzt -bzt +iZZ +iZZ bHR bCh -bzt -bzt +iZZ +iZZ bRj -bLW -bQY -bRT -bRT -cGz -bVR -csY -bVO -bWP +ezS +kuX +rea +rea +cjL +ufG +oti +lRf +ege bXR bYx bYX @@ -73643,59 +58545,59 @@ aUA aSu cvr aPR -aFv +iBi bam -bao +hQH bbE -beP -bRw +kCF +bBJ aoj -aUf -aVp -aVp -aSU -aSU -aVp -bou -bou -bqx -bom -bsm +qWU +sSt +sSt +hQw +hQw +sSt +ofm +ofm +sal +pDE +joi aWK -kDV -bpN -bBb -bDE +mkc +iAl +dar +eHV aWK -bDL +pZy bGE -bIW +eRG bNF -bPz -bPK -bRx +wsP +xSR +riV bNE -bTh -bUU -bYm +iSo +iVT +eox bNE -bTh -bUU -bYm +iSo +iVT +eox bNE -bTh -bUV -bYm +iSo +oDg +eox bNE dTs dTs -cQm -cGc -cfd +hFs +fEa +vKr doE doE -crr -crq +jTl +kDC dTs dTs dTs @@ -73707,52 +58609,52 @@ dTs dTs dTs dTs -rJA +fOe cxT duc drN cDc -cJx -cfd +sUf +vKr doE cSR doE doE doE -cxU +nvw dTs dTs dTs bvA -cdf -cmO -cnS -coB +oYu +dLm +vHz +mWB cNo -cHo +rKG cLQ cLG cLI cLH -cUY -cVH -cVH -cXD +viT +fXv +fXv +rQM bvA -daU -deV -cQm -cQm -aMU -aNz -cKr -doE -doE -doE -doE -doE +cDY +vpH +gqD +gqD +jqh +tSL +rOo +pXI +pXI +pXI +pXI +pXI dTs -doE +pXI dTs dTs dTs @@ -73766,18 +58668,18 @@ dTs dTs dTs dTs -ait -aja -aiZ -aiZ -aIa -apz -aqg -aqg -agV -aqg -asa -qoJ +mVq +yim +oWK +oWK +jtC +aSx +aQV +aQV +beT +aQV +aUi +jZk aWh aWh aWh @@ -73809,59 +58711,59 @@ aQV aQV aQV aSY -bhg +hqI bhu -bhO -bil -bil -bil -bil -bil -bil -bil -bil -bhO -bil -bil -bil -bnh -bnJ -bil -bil -bil -bhO -bsw -bhT -buC -bhz -bxa +lnT +sLN +sLN +sLN +sLN +sLN +sLN +sLN +sLN +lnT +sLN +sLN +sLN +iki +vYS +sLN +sLN +sLN +lnT +pwq +hvQ +rMr +tym +nvK bhu bzu -bAp -bwc -bwT -bCT +kUU +lPO +vIo +etf bzu bFL -bsi -bBo -bCi -bsi -bsi -bBo -bCi -bsi -bOb +vHn +oVO +ggy +vHn +vHn +oVO +ggy +vHn +udN bOP dTs dTs -aig -awl -bQU -cah -bTM -cvf -bLW +fld +mFj +sJs +rrq +fqf +eBq +ezS bXS bYy bYY @@ -73877,59 +58779,59 @@ aUA aUM aWE aPR -aFw +ozC ceA ceA -aSI -chG +jfc +xde ceA act -aVz -aXD -aZt -aXD -aXD -blY +dMH +lbA +lbA +lbA +lbA +hQA bnG -bpe -bqx -bom -bsm +nlF +sal +pDE +joi aWK aWK bwQ aWK aWK aWK -bDL +pZy bGE -bIX +dZD bNF -bPC -bPL -bPL +fxq +jpK +jpK bNE -bTj -bUV -bTj +qdw +oDg +qdw bNE -bTj -bUV -bTj +qdw +oDg +qdw bNE -bTj -bUV -bTj +qdw +oDg +qdw bNE dTs dTs -cWA -cTD -cfd +wkj +qof +vKr doE cNQ doE -cxV +rNB dTs dTs dTs @@ -73941,49 +58843,49 @@ dTs dTs dTs dTs -csB +eMf doE doE cyQ doE -cJx -cfd +sUf +vKr doE doE doE doE doE -cxV +rNB dTs dTs dTs bvA -cks +eDh cmP cmS cmS cqH -cHo +rKG cLQ cLI cLK cLO -cUY -cVH -cVH -cXN +viT +fXv +fXv +hiG bvA -daU -aMJ -cQm -cQm -aNe -aNz -cKr -doE -doE -doE -doE +cDY +dJl +gqD +gqD +oGN +tSL +rOo +pXI +pXI +pXI +pXI dTs dTs dTs @@ -74001,17 +58903,17 @@ dTs dTs dTs dTs -ais -aiZ -aiZ -aIa -apz -aql -ara -agV -aqg -asa -abQ +vOo +oWK +oWK +jtC +aSx +aSY +aQg +beT +aQV +aUi +xRK aWh aWh aWh @@ -74044,39 +58946,39 @@ aQV aQV aQV aQV -alX -bhP -bhP -bhP -bhP -bhP -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bin +plC +skc +skc +skc +skc +skc +skc +kMi +kMi +skc +skc +skc +skc +skc +skc +skc +skc +skc +skc +wAo +tWv +hvQ +rMr +tym +irJ bhu -bzv -bzt -bwc -bwT -bzt -bzt -bxY +pAM +iZZ +lPO +vIo +iZZ +iZZ +pdX bGU bzA bzA @@ -74085,25 +58987,25 @@ bGU bzA bzA bKq -bEp +jPl bOP dTs dTs dTs -aBZ -bQU -cdQ -bVf -cvf -bLW +hvL +sJs +eTg +kkH +eBq +ezS bXS -djY -duP -duP -duP -dKv -dLd -dNm +vcd +kfe +kfe +kfe +eTQ +otT +uEu bXQ dTs dTs @@ -74111,11 +59013,11 @@ aUA aSu aSu aPR -aFw +ozC aPu ceA -aSI -chG +jfc +xde ceA awM awM @@ -74125,22 +59027,22 @@ aVB aVB awM awM -bpb -bqy -bom -bso +wld +rUw +pDE +gLP aYd -brn +luQ brY -bBc -bFf +tmI +wmd aYd -bFl +fbX bGH -bJJ +vnp bNE bNF -bPM +iEl bNF bNE bTl @@ -74157,14 +59059,14 @@ bTl bNE dTs cxt -cPG -cTD -cfd +feF +qof +vKr doE doE doE -crr -crq +jTl +kDC dTs dTs dTs @@ -74180,8 +59082,8 @@ aee aee aee doE -cJx -cfd +sUf +vKr doE aee aee @@ -74192,31 +59094,31 @@ dTs dTs dTs bvA -gNT +pSk cmS cnV cmS cNo -cHo +rKG cLQ cLI cLI cLO -cUZ -cVH -cVH -aMw +iJE +fXv +fXv +veY aMI -dbc -aMJ -cQm -cQm -aNm -aNA -cKr -doE -doE -doE +mnp +dJl +gqD +gqD +nbF +ksb +rOo +pXI +pXI +pXI dTs dTs dTs @@ -74235,17 +59137,17 @@ dTs dTs dTs dTs -ait -aja -aiZ -aIa -apz -aqg -aqg -agV -aqg -asa -cEc +mVq +yim +oWK +jtC +aSx +aQV +aQV +beT +aQV +aUi +kRt aWh aWh aWh @@ -74267,9 +59169,9 @@ aWh aWh aWh aWh -bAF -aVg -aRZ +dkq +iiH +jFs aQg aQV aQV @@ -74278,39 +59180,39 @@ aQV aQV aQV aQV -ams -bhP -bhP -bhP -bhP -bhP -jTF -bhP -bhP -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -buC -bhz -bxb +xkZ +skc +skc +skc +skc +skc +nBn +skc +skc +skc +skc +kMi +skc +skc +skc +skc +skc +skc +skc +wAo +tWv +hvQ +rMr +tym +nLq bhu -bzw -bzt -bwc +lTs +iZZ +lPO bBm -bzr -bEg -bya +qtd +thB +pbj bGV bzB bzB @@ -74319,25 +59221,25 @@ bGV bzB bzB bKr -bEp +jPl bOP dTs dTs dTs -aFh -bQU -cdQ -bVf -cvf -bOM +oIi +sJs +eTg +kkH +eBq +oor bXS -dld -dBR -dBR -dBY -dBY -dBY -dNB +jMS +vyS +vyS +mMy +mMy +mMy +ffN bXQ dTs dTs @@ -74345,67 +59247,67 @@ aUA aSu aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA aVB aXE aZJ -bdL +sPU bjI -aXM +yfZ aVB -boW -bqy -bom -bsm +plm +rUw +pDE +joi bbo -brn +luQ bwR brY -bFm +dIZ aYd -bDL +pZy bGE -bJK -bLa -bLa -bLa -bsS +fUR +khb +khb +khb +nVm bsp -bLO +gkr btX -bNf -bNL -bLO +icx +qZe +gkr btX -bNf -bNL -bLO +icx +qZe +gkr btX -bIW +eRG bsp -cQm -cxu -cXm -cTD -cfd +hFs +nAZ +nyn +qof +vKr doE doE doE doE -crr -cwB -cwB +jTl +nDq +nDq dTs dTs dTs dTs -cwB +nDq dTs dTs aee @@ -74414,8 +59316,8 @@ doE aee doE doE -cJx -cfd +sUf +vKr doE doE aee @@ -74431,15 +59333,15 @@ bvA bvA bvA bvA -cHp +igN cLQ cKM cLK cLO -cVa -cVH -cVH -aMF +uQu +fXv +fXv +rSd bvA bvA ddJ @@ -74448,8 +59350,8 @@ bvA ddJ bvA bvA -doE -doE +pXI +pXI dTs dTs dTs @@ -74470,16 +59372,16 @@ dTs dTs dTs dTs -ais -abb -aIa -apz -aqg -aqg -asd -auz -aaA -aLa +vOo +qQS +jtC +aSx +aQV +aQV +qxD +fDg +pVr +dlf aWh aWh aWh @@ -74501,9 +59403,9 @@ aWh aWh aWh aWh -bDO +nbU aVi -aVh +xrn aQg aQV aSY @@ -74512,39 +59414,39 @@ aQg aQV aQV aQV -cck -bhP -mKW -bhP -mKW -mKW -bhP -bhP -bhP -mKW -mKW -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhA -bst -btm -buC -bhz -bxc +vkD +skc +kMi +skc +kMi +kMi +skc +skc +skc +kMi +kMi +skc +kMi +kMi +skc +skc +skc +skc +skc +wAo +tWv +eMq +rMr +tym +jQv bhu -bzx -bzt -bwc +pWy +iZZ +lPO bBm -bwU +qMu bEh -bzz +xwz bGV bzB bzB @@ -74553,37 +59455,37 @@ bGV bzB bzB bKr -bEp +jPl bOQ bOQ bOQ bOQ bOQ bRj -cdQ -csZ +eTg +nae bRj bMb bXS -bYB -dBR -dBY -dFD -iYy -dLe -dNF +qcs +vyS +mMy +lHt +jYy +jSt +iOP bXQ dTs -aSN +fKP aUA aUB aWf aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA aVB @@ -74592,67 +59494,67 @@ aZK bdM aZL aXM -bov -bou -bqx -bom -bsh +qGS +ofm +sal +pDE +xCX bbo -brI +gWc bza brY -bFn +hgI aYd -bDL -bGI -bJL -bLa -bLa -bJL +pZy +mzw +qHZ +khb +khb +qHZ bJa bLN btX -bMX -bLa -bJL -bLa -bOH -bsS -bQA -bLa -bJL -bIW +kjE +khb +qHZ +khb +knP +nVm +hio +khb +qHZ +eRG bLN -cQm -cKO -cUh +hFs +hZt +lCF cZb cGH -cYk -cYk -cYk -cYk -cRL -cRL -cRL -dly +jBy +jBy +jBy +jBy +wmW +wmW +wmW +pFt cIi cRM cTu cuz -crr -cwB -csD +jTl +nDq +eTl doE -cyB -cYk -cYk -cYk +clO +jBy +jBy +jBy cBU cGH -cYk -cYk -cBV +jBy +jBy +imq doE dTs dTs @@ -74662,25 +59564,25 @@ dTs dTs dTs bvA -cnZ +eyM coC coC -cHo +rKG cLQ cLI cLI cLO -cUZ -cVI -cVH -cXD -cYC -dbd +iJE +ydM +fXv +rQM +wMp +pqJ ddK -deW -aMN -aNo -aNJ +qeR +fYp +luX +rGB bvA dTs dTs @@ -74704,20 +59606,18 @@ dTs dTs dTs dTs -ait -aja -aIa -apz -aql -ara -asa -aUD -aVg -acJ -aWh -aWh -aWh +mVq +yim +jtC +aSx +aSY +aQg +aUi +fCH +iiH +stS aWh +vWe aWh aWh aWh @@ -74726,6 +59626,7 @@ aWh aWh aWh aWh +vWe aWh aWh aWh @@ -74734,10 +59635,11 @@ aWh aWh aWh aWh +vWe aWh -bFg +mdq aVi -aVh +xrn aQg aQV aSY @@ -74746,39 +59648,39 @@ aQg aQV aQV aQV -cck -bhQ -bhP -mKW -bhQ -bhP -bhP -bhQ -bhP -bhP -bhQ -bhP -bhP -eKN -jTF -mKW -eKN -bhP -bhP -brC -bst -bhT -buC -bhz -bxd +vkD +vED +skc +kMi +vED +skc +skc +vED +skc +skc +vED +skc +skc +hsj +nBn +kMi +hsj +skc +skc +khr +tWv +hvQ +rMr +tym +kzb bhu -bzy -bzt -bwc -bwT -bzt -bzt -bxY +qGH +iZZ +lPO +vIo +iZZ +iZZ +pdX bGV bzB bzB @@ -74787,37 +59689,37 @@ bGV bzB bzB bKr -bEr +uCp bOR -gJE -bQZ -bRU +uCE +jkO +rLQ bOR -bTG -ceI -ctb -bTG -bWR +lSM +nXb +epB +lSM +gmy bXS bXS -bZb -dCy +vTA +sBi bXS bTu bTu bTu bXQ dTs -aSN +fKP aUA aSu aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA aVB @@ -74827,45 +59729,45 @@ qkE bjR aXM aVB -bpe -bqx -bou -bou -bcJ +nlF +sal +ofm +ofm +wLo brY bzb brY -bFo +uOi aYd -bDL -bGL -bJM -bLb -bLb -bJM +pZy +ipj +nyV +sKr +sKr +nyV bsT bsT bsT -bNd -bNh -bNM -bNh -bNh -bNh -bQE -bNh -bTq -bTv +xvZ +vcG +vPV +vcG +vcG +vcG +fUp +vcG +ovw +gAx btX -cQm -cKO -cGb -cfq -cfq -cfq -cfq -cfq -cGF +hFs +hZt +hiL +gJr +gJr +gJr +gJr +gJr +yeb cIi cRM cRM @@ -74878,15 +59780,15 @@ doE doE doE doE -cJx +sUf cGx -cfq -cfq -cfq -cfq -cfq +gJr +gJr +gJr +gJr +gJr cIv -cfd +vKr doE dTs dTs @@ -74896,25 +59798,25 @@ dTs dTs dTs bvA -coa +lXB coW coW -cHo +rKG cLQ cLI cLI cLO -cUY -cVI -cVH -cXD -cYG -dbe +viT +ydM +fXv +rQM +vxc +nCS ddL -deW -hyE -aNo -aNK +qeR +nUw +luX +xtA bvA dTs dTs @@ -74937,41 +59839,41 @@ dTs dTs dTs dTs -ahu -ahu -ais -aIa -apz -aqg -aqg -asa -aUD -aVh -aQY -oCD -bpT -aWi -blD -bpu -bpT -aWi -blD -bpu -bpT -nJZ -adb -oCD -bpT -aWi -blD -bpu -bpT -aWi -blD -bxj -aQY -aUD -aVh +qmI +qmI +vOo +jtC +aSx +aQV +aQV +aUi +fCH +xrn +gDk +tlG +vEU +bto +wNK +kwj +vEU +bto +wNK +kwj +vEU +xwe +ruv +tlG +vEU +bto +wNK +kwj +vEU +bto +wNK +kSk +gDk +fCH +xrn aQg aQV aQV @@ -74980,39 +59882,39 @@ aQV aQV aQV aQV -cck -bhT -bhP -mKW -bhP -bhP -bhP -arV -mKW -bhP -mKW -bhP -bhP -bhP -bhP -mKW -jTF -mKW -bhP -bhA -bEO -bHp -bJs -bhz -bwY +vkD +hvQ +skc +kMi +skc +skc +skc +kwz +kMi +skc +kMi +skc +skc +skc +skc +kMi +nBn +kMi +skc +wAo +rRV +eoB +uVY +tym +swS bhu bzu -bzt +iZZ bHR bCh -bCT +etf bzu -bxY +pdX bGV bHS bHS @@ -75021,37 +59923,37 @@ bGW bHS bHS bKr -bEp +jPl bRk -oJb -bRX -bRV +wql +mPy +rsN bRk -caB +oER bUp cOp -ctc -ddP -bXT -bWR -ctg -cti -bTG -ddP -bTG -bTG -bWR -bTG -ahp +hrO +sGg +oZc +gmy +wPV +nTv +lSM +sGg +lSM +lSM +gmy +lSM +uUz cfl aSu cvr aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA aVB @@ -75059,47 +59961,47 @@ aXV aZL bdU aZL -bmW +uzi awM -bpf -bqA -bom -bsl +cRo +eBp +pDE +lrc bbo -btW +twY brY brY -bFp +oSt aYd -bFi -aQm -bIX -bLc -bDI -btZ -btZ +vbX +tWj +dZD +hvb +leC +lJg +lJg bsp -bLP +gfZ bNe -bJH -btZ -btZ -bDI -btZ -bBe -bSm +eMP +lJg +lJg +leC +lJg +oxG +rTf bGz -bIW +eRG bsp -cQm -cGI -cGM -cxU -cwz +hFs +pfG +rwh +nvw +xeZ doE doE doE -cLP +sle cUl crx crx @@ -75112,15 +60014,15 @@ doE doE doE doE -dHa -cPV +tuH +fbO doE doE doE doE doE -cJx -cfd +sUf +vKr doE dTs dTs @@ -75130,25 +60032,25 @@ dTs dTs dTs bvA -cob +oeZ coY coY -cHo +rKG cLQ cLI cLG cLH -cUY -cVI -cVH -cXD -cYC -dbf +viT +ydM +fXv +rQM +wMp +fRa ddL -deW -aMR -aNo -aNK +qeR +pQV +luX +xtA bvA dTs dTs @@ -75170,42 +60072,42 @@ dTs dTs dTs dTs -ahu -ahu -air -aiY -aIa -apz -aqg -aqg -asa -aUE -aVj -aQX -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aQX -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aVj -aQX -aVj -aVG +qmI +qmI +sVC +aze +jtC +aSx +aQV +aQV +aUi +eCf +qBv +hUX +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +hUX +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +qBv +hUX +qBv +enf aQg aQV aQV @@ -75214,39 +60116,39 @@ aQV aQV aQV akU -cck -bhR -bhP -bhP -nji -bhP -bhP -bhR -bhP -jTF -nji -bhP -mKW -bhR -bhP -mKW -bhR -bhP -bhP -brD -bEO -bIh -bJt -bLx -bON +vkD +urN +skc +skc +ydY +skc +skc +urN +skc +nBn +ydY +skc +kMi +urN +skc +kMi +urN +skc +skc +xkO +rRV +eyX +rHQ +jLd +vur bhu -bsi -bsi +vHn +vHn bFN bJg -bsi -bsi -bzC +vHn +vHn +rOg bGV bzB bzB @@ -75255,37 +60157,37 @@ bzB bzB bzB bKr -bEp +jPl bRk -cdi -bRb -bRW -bSW +jxr +hWA +vdn +tOZ bTH cHG cOq cUW -det -det -det +kBD +kBD +kBD cOq dCz -caB -dKx -dKx -dKx -caB -cdO -cim +oER +kUK +kUK +kUK +oER +wep +bFE cfl bkk aWE aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA awM awM @@ -75295,20 +60197,20 @@ awM awM awM awM -bpb -bqA -bom -bsb +wld +eBp +pDE +vEY aYd -bue +nIv bzc -bBd -bFw +pao +msp aYd -bDL -aQH -bIX -bIX +pZy +lTh +dZD +dZD bJU bJV bJV @@ -75328,12 +60230,12 @@ bBL bBL dTs cwG -cxV -csC -cwz +rNB +lCt +xeZ doE doE -cLP +sle cUl crx crx @@ -75346,15 +60248,15 @@ cMF doE cJd cJd -cJg -cOZ +nkg +gwX cJd cJd doE doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -75364,25 +60266,25 @@ dTs dTs dTs bvA -coe -cpc +jUz +idM cmS -cHo +rKG cMd cLc cOc cQk -cVh -cVI -cVH -cXD -cYH -dbh -dbh -deX -aMS -aMS -dbh +uei +ydM +fXv +rQM +eUs +jGK +jGK +soK +ufp +ufp +jGK bvA dTs dTs @@ -75408,38 +60310,38 @@ aOc aOc aOc aOc -aoD -apz -aql -ara -asc -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy -auy +nAk +aSx +aSY +aQg +nZZ +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK +qBK aQg aQV aQV @@ -75448,36 +60350,36 @@ aQV aQV aQV aQV -cck -bhP -bhP -bhP -mKW -mKW -bhP -mKW -jTF -bhP -bhP -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -bJt -bLx -bDo -cZq +vkD +skc +skc +skc +kMi +kMi +skc +kMi +nBn +skc +skc +skc +skc +kMi +skc +skc +skc +skc +skc +wAo +tWv +hvQ +rHQ +jLd +ndK +dhC bzA bzA -bBp -bBp +qTt +qTt bzA bzA bzA @@ -75489,37 +60391,37 @@ bzB bzB bzB bKr -bEp +jPl bRk -cfm -bRc -bRX +mcD +nJd +mPy bRk -bUr -cLX -cLX +jHI +tJb +tJb cUX cOo -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cLX -cdP -cin +tJb +tJb +tJb +tJb +tJb +tJb +tJb +tJb +tJb +iCa +ygp cfl bkj aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA bnv aVM @@ -75529,45 +60431,45 @@ beo bjS aYE axF -bpq -bqy -bom -bsn +wdN +rUw +pDE +urD aYd bbo bzd bbo bbo aYd -bDL -aQH -bIX -bIW +pZy +lTh +dZD +eRG bJV -bMr -bNI -bQC -bSB +nmn +vUx +nlD +ybJ bWt -cdg +mqO bJU -bBO -bYs -caq +sgo +kyQ +wTX bBL -ccv +snV ciL -cKX -cPF +gyR +tQb bBL dTs dTs -crr +jTl dTs dTs -cwz +xeZ doE -cLP +sle dlb cMJ cMJ @@ -75579,16 +60481,16 @@ dFo cAd czv cJd -cOd -cJg -cNZ -cPi +jdp +nkg +xML +uPq cJd doE cBW doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -75599,7 +60501,7 @@ boP boP boP bvA -cpf +lRZ cqK bvA cMd @@ -75607,16 +60509,16 @@ cLd cOy cRX aMu -aMv -cVI -cXI -cYI -dbi -dbi -deY -dfA +lIo +ydM +vLI +qSc +umg +umg +ppl +qJc cXK -cXD +rQM bvA dTs dTs @@ -75642,38 +60544,38 @@ aPD byX iqK aOc -aoE -apz -aqg -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg -aDb -aqg -aqg +vZT +aSx +aQV +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV +aQW +aQV +aQV aQg aQV aSY @@ -75682,36 +60584,36 @@ aQg aQV aQV aQV -cck -bhP -bhP -bhP -bhP -bhP -bhP -bhP -mKW -bhP -bhP -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bst -bhT -bJt -bLx -bhz -cwr +vkD +skc +skc +skc +skc +skc +skc +skc +kMi +skc +skc +kMi +skc +skc +skc +skc +skc +skc +skc +wAo +tWv +hvQ +rHQ +jLd +tym +jEn bzB bAq -bBp -bBp +qTt +qTt bAq bzB bzB @@ -75723,37 +60625,37 @@ bzB bzB bzB bKr -bEp +jPl bRk -bPX -tdf -bRY +mpt +xAq +cfu bOR -bTG -bTG -bTG -ctf -bZc -bTG -bYC -bTG -ddP -ddP -dKz -bTG -ddP -bTG -bYC -cio +lSM +lSM +lSM +qBV +rab +lSM +tUZ +lSM +sGg +sGg +tEX +lSM +sGg +lSM +tUZ +giX cfl bkj aSu aPR -aFw +ozC aPu ceA -aSI -chG +jfc +xde ceA ceA aVM @@ -75763,36 +60665,36 @@ bes bkG bmX aVM -boW -bqy -bom -bsh +plm +rUw +pDE +xCX bsp -bsS -bvy -bsS -bsS -bBU -bFr -aQH -bIX -bIW +nVm +pgd +nVm +nVm +nVm +mTP +lTh +dZD +eRG bJV -bMs +tor bNJ bNi bNi bWt -cfN +orz bJU -bFx +vEw bYt bYt caY bYt ciL -cKX -cQV +gyR +mss bBL dTs dTs @@ -75801,7 +60703,7 @@ dTs dTs dTs doE -cLP +sle cIi cRM cRM @@ -75813,16 +60715,16 @@ dFo cru doE cJd -cJg -cNZ -cJg -cJg +nkg +xML +nkg +nkg cJd doE doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -75833,16 +60735,16 @@ boP ckY clj bvA -cpg +jLT cmS -cHo +rKG cMd cLd cLI cLO -cUY -cVH -cVI +viT +fXv +ydM cXK cYJ cYJ @@ -75850,7 +60752,7 @@ cXK deZ cXK cXK -cXN +hiG bvA dTs dTs @@ -75876,38 +60778,38 @@ aPD aPD iqK aau -aoE -apz -aqg -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg -aDc -aqg -aqg +vZT +aSx +aQV +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV +aQU +aQV +aQV aQg aQV aSY @@ -75916,36 +60818,36 @@ aQg aQV aQV aQV -cck -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhP -mKW -mKW -bhP -bhP -bhP -bhP -bhP -bhP -bhP -bhA -bEO -bDo -bJt -bLx -bhz -cwr +vkD +skc +skc +skc +skc +skc +skc +skc +skc +skc +kMi +kMi +skc +skc +skc +skc +skc +skc +skc +wAo +rRV +ndK +rHQ +jLd +tym +jEn bpJ bAr -bBq -bBq +fiB +fiB bAr bpJ bpJ @@ -75957,7 +60859,7 @@ bpJ bpJ bzB bKr -bEr +uCp bOR bRk bRk @@ -75965,68 +60867,68 @@ bRk bOR bTI bTI -bTG +lSM bVS bWT -bTG +lSM bTI -bTG -bTG -bTG +lSM +lSM +lSM bTI -bTG -bTG -bTG +lSM +lSM +lSM bTI -cio +giX cfl bkk aWE aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA aVM aYE aZM -bfk +hZe bkH aYE -boN -bou -bro -brZ -brZ -bsq +tzC +ofm +vzE +tzx +tzx +fza bsT -bvG -byb -byb -byb -byb -bGO -bJR -bIW +mIr +fWn +fWn +fWn +fWn +rWC +llu +eRG bJV -bMy +iea bNP bNi bNi bWt -cqj +jbh bJU -bGx -bYv -car +pFV +uYI +sAz bBL -ccY +fSr ciL -cKX -cPF +gyR +tQb bBL dTs dTs @@ -76034,8 +60936,8 @@ dTs dTs dTs dTs -cwz -cLP +xeZ +sle cUl crx crx @@ -76048,15 +60950,15 @@ doE cJd cJd cJd -cJg -cOZ +nkg +gwX cJd cJd cJd doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -76069,22 +60971,22 @@ clj cof cmS cmS -cHo +rKG cMd cLd cLI cLH -cUY -cVI -cVI -cXL -cYL -dbj -cYL -cYL -cph +viT +ydM +ydM +sPb +rtr +mTg +rtr +rtr +xxi cXK -dgg +fqh bvA dTs dTs @@ -76105,43 +61007,43 @@ acu dTs dTs aOc -aPE -aPE -pDd -aPE +sHs +sHs +bsZ +sHs aau -aoE -aIK -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -auz -aIJ -aqg -aqg -asd -auz -auz -auz -auz +vZT +xdv +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +fDg +cyM +aQV +aQV +qxD +fDg +fDg +fDg +fDg aQg aQV aQV @@ -76149,37 +61051,37 @@ aQV aQV aQV aSY -bhf +fEq buI -bhS -bim -bim -bim -bim -bim -bim -bim -bim -bhS -bim -bim -bim -bim -bim -bim -bDk -bDk -bEB -bFI -iXt -bJt -bLx -bhT -cZq +nXE +bKd +bKd +bKd +bKd +bKd +bKd +bKd +bKd +nXE +bKd +bKd +bKd +bKd +bKd +bKd +nDL +nDL +kda +ycX +eqr +rHQ +jLd +hvQ +dhC bpK bpK -bBq -bBq +fiB +fiB bpK bpK bpK @@ -76191,37 +61093,37 @@ bLh bsC bMH bNj -bFM -bfV -bOT -bOT -bOT -bOT -bfV -bOT -bOT +qjY +sHu +eyq +eyq +eyq +eyq +sHu +eyq +eyq bVT bWU -bOT -bfV -bOT -bOT -bOT -bfV -bOT -bOT -bOT -bfV -cip +eyq +sHu +eyq +eyq +eyq +sHu +eyq +eyq +eyq +sHu +oTd cfl bkj aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde aUh ceA aVM @@ -76231,36 +61133,36 @@ aZM aZM aYE aVM -bpe -brp -bou -bom -bsQ +nlF +xfQ +ofm +pDE +sjG btX -bvH -bBe -bBe -bBe -bBe -bHg -bKh -bIW +hMx +oxG +oxG +oxG +oxG +qVx +kEt +eRG bJV bNi bNi bQG bNi bWA -cqk +dKr bJU bBL bBL bBL bBL -cdd +lbF ciL -cKX -cQW +gyR +cwa bBL dTs dTs @@ -76269,7 +61171,7 @@ dTs dTs dTs dTs -cLP +sle cUl crx crx @@ -76280,17 +61182,17 @@ crx dFo doE cJe -cJg -cOe -cNZ -cJg -cJg -cJg +nkg +uNn +xML +nkg +nkg +nkg cJe doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -76301,24 +61203,24 @@ boP clj clj bvA -cph +xxi cmS -cHo +rKG cMd cMe cOA cLO -cUY -cVI -cVI -cXM -cZl -dbk -dbk -dfa -dfz +viT +ydM +ydM +bnk +eMw +nBb +nBb +jCy +msW cXK -dgg +fqh bvA dTs dTs @@ -76339,43 +61241,43 @@ acu dTs dTs aOc -aOK -rFz -aPF -aRc +ckK +kzt +wSw +rFX aOc -akz -aNp -aNp -aNp -aNp -alo -alo -alo -alo -alo -alo -alo -alo -alo -aNp -aNp -alo -alo -aNp -aNp -aNp -aNp -aNp -apO -apA -dez -aNL -baW -aky -aNp -aNp -apO +eCf +hUX +hUX +hUX +hUX +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +iiH +hUX +hUX +iiH +iiH +hUX +hUX +hUX +hUX +hUX +jFs +xgv +kCf +skQ +fHA +pDK +hUX +hUX +jFs bfn aQW aQW @@ -76383,44 +61285,44 @@ aQW aQW aQW bgN -aSa +vZT bhu -bhN -bin -anf -bjd -bhT -biH -bhT -bhT -bkT -bhT -bhT -biH -bhT -bjd -biH -bhT -bDo -bEz -bjd -bhT -btm -bJt -bLx -bwX +plD +irJ +eqU +iCp +hvQ +pVw +hvQ +hvQ +dBk +hvQ +hvQ +pVw +hvQ +iCp +pVw +hvQ +ndK +fUS +iCp +hvQ +eMq +rHQ +jLd +dkr bhu -bsj -bsj +vRv +vRv bBr bCj -bsj -bsj -bsj -bsj -bsj -bsj -bCX +vRv +vRv +vRv +vRv +vRv +vRv +xZS brQ bpJ bpJ @@ -76434,8 +61336,8 @@ bOU bOU bOU bOU -bVU -bWV +mYp +rYs bOU bOU bOU @@ -76451,11 +61353,11 @@ cwq bkj aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA axF @@ -76463,38 +61365,38 @@ aYN aYE aYE aYE -bnb +gkN axF -bpf -bou -bou -bsl +cRo +ofm +ofm +lrc bsp -btZ -btZ -btZ -btZ -bDI -bFs -bIR -bKK -bIX -bKO +lJg +lJg +lJg +lJg +leC +ixo +xqV +qkb +dZD +rCH bNi bNi bQH bTw bWB -cqm +scG bJU -bBO -bYs -caq +sgo +kyQ +wTX bBL -ccv +snV ciL -cKX -cQX +gyR +lXE bBL dTs dTs @@ -76503,7 +61405,7 @@ dTs dTs dTs dTs -cLP +sle dlb cMJ cMJ @@ -76514,17 +61416,17 @@ crz dFo doE cJe -cNv -cOn -cOC -cPd -cNv -cOn +eOf +tgP +wFE +mIS +eOf +tgP cJe doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -76535,24 +61437,24 @@ bxF clj cmV bvA -cpf +lRZ cqQ -cHo +rKG cLQ cMe cLI cLO -cUY -cVI -cWo -cXD -cYC -dbm +viT +ydM +fgQ +rQM +wMp +rOA ddL -deW -dfz +qeR +msW cXK -dgg +fqh bvA dTs dTs @@ -76573,60 +61475,60 @@ acu dTs dTs aOc -aQG -bhL -aPF -bzU +eCR +jfY +wSw +mRb aOc aau -aPF -aSC +wSw +scf aau aOc -aUH -aVk -aVk -aVk -aVk -adq -aeg -aVk -aVH -aoe -afy -apa -aoG -anh -aoe -aoe -aoe -aoe -bco -bcC -aNL -aNL -baW -aoE -anh -aoe -aUH -bfo -bfo -bfo -bfo -bfo -bfo -bfo -bhh +wEM +ihY +ihY +ihY +ihY +dKH +fLP +ihY +kCd +pis +sJu +fCH +xrn +waw +pis +pis +pis +pis +mdp +dnb +skQ +skQ +fHA +vZT +waw +pis +wEM +oiw +oiw +oiw +oiw +oiw +oiw +oiw +kCd bht bht bht bht bht -aoY -bhT -bhT -asf +qss +hvQ +hvQ +bGM bht bht bht @@ -76640,21 +61542,21 @@ bLz brF brF bLz -bJx -bLC +mAn +iZa bLz brF brF -bAs +qvM bBs bCk -bAt -bAt -bAt -bAt -bHT +xkf +xkf +xkf +xkf +ygx bJh -bDK +izP brQ bpJ bpJ @@ -76668,8 +61570,8 @@ bkj bRe bkj bkj -bVU -bWV +mYp +rYs bkj bRe bkj @@ -76685,11 +61587,11 @@ cws bkj aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA axF axF @@ -76700,8 +61602,8 @@ aVM axF axF bnG -bou -brs +ofm +kTE bnG aNH aNH @@ -76709,26 +61611,26 @@ aNH aNH aNH aNH -bDL +pZy bNe btX -bIW +eRG bJV -bNv -bNv -bQI -bUM +hQt +hQt +iKn +hnU bNi -cdg +mqO bJU -bFx +vEw bYt bYt caY bYt ciL -cKX -cQY +gyR +feh bBL dTs dTs @@ -76737,28 +61639,28 @@ dTs dTs dTs dTs -cyG -cMM -cql -cql -czZ +pqx +glP +nzh +nzh +pRl cUo crx crx dFo doE cJd -cNS -cOt -cOD -cPe -cNU -cPk +vGR +gTP +pDg +pkq +dBB +vSA cJd doE doE -cJx -cfd +sUf +vKr dTs dTs dTs @@ -76769,24 +61671,24 @@ bLR clj cmY bvA -cpf +lRZ cvS -cHs +jWk cLQ cMe cLG cLO -cUY -cVJ -cVI -cXD -cYC -dbe +viT +vwX +ydM +rQM +wMp +nCS ddL -deW -cpf +qeR +lRZ cXK -cXD +rQM bvA dTs dTs @@ -76808,87 +61710,87 @@ dTs dTs aOc aUj -bri -aPF -aRd -aRC -aSe -rFz -rFz -bzU +hfe +wSw +gkt +pud +dLc +kzt +kzt +mRb aOc -bej -bfp -bej -aiZ -acW -aiZ -aiZ -aiZ -aeY -aiZ -ajS -bvh -avC -aDe -beD -aiZ -aiZ -aiZ -aIa -apz -aql -ara -asa -aoE -aDe -aiZ -aqy -aja -aiZ -aqy -ars -aja -aiZ -aiZ -aqy +rnB +kAf +rnB +oWK +vLm +oWK +oWK +oWK +wll +oWK +nyI +rIy +enf +ykP +nxI +oWK +oWK +oWK +jtC +aSx +aSY +aQg +aUi +vZT +ykP +oWK +vMo +yim +oWK +vMo +neB +yim +oWK +oWK +vMo dTs dTs dTs dTs lcj -apb -arp -arp -asg +nbI +eie +eie +pUZ bht dTs dTs dTs dTs bni -bnL -boz -bpv -bqH -brG -bsy -btp -bJx -bvY -bxf -bys +qMf +wHm +nyx +ksn +elT +fII +eii +mAn +nyy +xEo +sNu bLz -bAt -bwe -bmf -bAt -bAt -bAt -bAt -bAt -bAt -bDK +xkf +oUE +nay +xkf +xkf +xkf +xkf +xkf +xkf +izP brQ bpJ bpJ @@ -76902,8 +61804,8 @@ bMI bRf bMI bMI -bVV -bML +dxK +sBg bMI bRf bMI @@ -76919,28 +61821,28 @@ cfR bMI aSu aPR -aFw +ozC axk ceA -aSI -chG +jfc +xde ceA ceA -bPA -bnC -bnC -bnC -bnC -cjO -cjO -cjO -ccm -aUu -cjO +dqC +uQE +uQE +uQE +uQE +mtQ +mtQ +mtQ +qWg +iCt +mtQ aNH -aTy -boq -aOC +sAr +kwL +uQC aTR aNH byU @@ -76949,20 +61851,20 @@ bGJ byU aNH bJU -bNQ -bQM -bVI +ieD +sAx +pSo bNi -cdg +mqO bJU -bGx -bZu -car +pFV +rAM +sAz bBL -ccY +fSr ciL -cKX -cPF +gyR +tQb bBL dTs dTs @@ -76974,7 +61876,7 @@ dTs dTs dTs dTs -cwz +xeZ doE cuM crx @@ -76982,17 +61884,17 @@ crx dFo doE cJe -cNv -cOn -cOE -cPe -cNv -cOn +eOf +tgP +jta +pkq +eOf +tgP cJe doE doE -cJx -cfd +sUf +vKr doE dTs dTs @@ -77000,27 +61902,27 @@ boP boP boP boP -clq +kiC boP bvA -cpf +lRZ cwj -cHt +gtx cLQ cLd cLI cLH -cUY -cVK -cVH -cXD -cYC -dbC +viT +lci +fXv +rQM +wMp +tWQ ddL -deW -cpf +qeR +lRZ cXK -aNN +mmw bvA dTs dTs @@ -77041,18 +61943,18 @@ acu dTs dTs aOc -aPE -bsa -aPF -rFz -aPF -aPF -rFz -rFz -aRc +sHs +oYq +wSw +kzt +wSw +wSw +kzt +kzt +rFX aau -aja -bej +yim +rnB aVI aVI aVI @@ -77062,67 +61964,67 @@ aVI aVI aVI aWM -aWO -afW +jDs +luI aWM aVI aVI aVI aiZ -agx +rvr apz aqg aqg asa -bdV -bep -aqy -axY -ait -ars +ipE +hnq +vMo +wlR +mVq +neB dTs dTs -ait -ars -ars +mVq +neB +neB dTs dTs dTs dTs lcj anJ -xss -xss -xss -xss +qvJ +qvJ +qvJ +qvJ anJ lcj dTs dTs dTs bni -bnM -boA -bDi -bDi -boA -boA -boA -bJx -bMc -bMc -bvY -bzD -btD +sFx +rOT +uGS +uGS +rOT +rOT +rOT +mAn +nRn +nRn +nyy +hnX +hPP bUm bpF -bWa -bWa -bWa -bBD -bAt -bAt -bDK +tJH +tJH +tJH +tca +xkf +xkf +izP brQ bpJ bpJ @@ -77136,8 +62038,8 @@ bOV bOV bOV bOV -bVV -bML +dxK +sBg bOV bOV bOV @@ -77153,35 +62055,35 @@ cwA bMI aSu aPR -aFw +ozC axk ceA -aSI +jfc bfs -ceB -ceB -bnz -beO -beO -beO -beO -beO -beO -beO +rsz +rsz +xuQ +ogJ +ogJ +ogJ +ogJ +ogJ +ogJ +ogJ aSK -aSL -cjO +mFQ +mtQ aNH -aTy -aOC -aOC +sAr +uQC +uQC aTR aNH -bvS +sVf bBV bvD -bHN -bKQ +kls +uZy bNw bNw bNw @@ -77207,8 +62109,8 @@ dTs dTs dTs dTs -csA -csD +tae +eTl doE cuM cvJ @@ -77216,38 +62118,38 @@ crz dFo doE cJe -cNU -cOt -cOE -cPe -cNU -cPl +dBB +gTP +jta +pkq +dBB +uUG cJe doE doE -cJx -cfd +sUf +vKr doE dTs dTs boP -boQ -boR -bLS -bLS -cna +pRF +pjp +kct +kct +ewg bvA -cpf +lRZ coC -cHT +eHk cLQ cLd cLI cLO -cUZ -cVI -cVH -cXN +iJE +ydM +fXv +hiG bvA bvA ddM @@ -77275,49 +62177,49 @@ acu dTs dTs aOc -aOK -aPF -aPF -aPF -rFz -rFz -aPF -aPF -aRc +ckK +wSw +wSw +wSw +kzt +kzt +wSw +wSw +rFX aau -ait -aja +mVq +yim aVI -azf -aYu -aYu -aYu -aYu -aZx -aYu -aWk -bdE -bdE -aXK -aYu -baQ +kBK +dfU +dfU +dfU +dfU +kcv +dfU +msC +rWE +rWE +lpl +dfU +hNd aVI aiZ -aIa +vGB apz aqg aqg asa -bdW +mBt aiZ -axZ -ahu +not +qmI dTs dTs dTs dTs dTs -ahu +qmI dTs dTs dTs @@ -77335,66 +62237,66 @@ dTs dTs dTs bni -bnN -bDi -bEo -bDi -bDi -bDi -bDi -buK -bMc -bMc -bvY -bvY -bJj -cbT -bJj -cbT -bJj +pQl +uGS +hoy +uGS +uGS +uGS +uGS +rhe +nRn +nRn +nyy +nyy +lUk +dZT +lUk +dZT +lUk bpF -bBP -bAt -bAt -bDK +tqn +xkf +xkf +izP brQ bsC bMH bNj -bFO -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bVW -bWW -bkc -bkc -bkc -bkc -bkc -cuu -bkc -bkc -bkc -cuv -ciM +iUs +isC +isC +isC +isC +isC +eFM +isC +isC +qoy +oID +isC +isC +isC +isC +isC +eFM +isC +isC +isC +jjg +qZV cxc bMI aSu aPR -aFw +ozC aPu ceA -bbG -bao -bao -bao -bnB +uFQ +hQH +hQH +hQH +oIR aSK aSK aSK @@ -77402,27 +62304,27 @@ aSK aSK aSK aSK -bqd -aTU -cjO +fMz +qTL +mtQ aNH -aTy -aOC -aOC +sAr +uQC +uQC aTR aNH -bAa +xkB bBV bHu bvD -bKR +gtg bNw -bNS -bRE -bVJ +uNw +lOI +tun bRF -cyH -cJr +pWO +qXv bNw bZJ bZJ @@ -77441,7 +62343,7 @@ dTs dTs dTs dTs -cyL +oey doE cNQ cuM @@ -77450,45 +62352,45 @@ crx dFo doE cJd -cNY -cOn -cOD -cPf -cNv -cPm +eBb +tgP +pDg +nsw +eOf +nNI cJd doE doE -cJx -cfd +sUf +vKr doE dTs dTs boP boP boP -bLS -bLS -cna +kct +kct +ewg bvA -cpf +lRZ coW -cHo +rKG cLQ cLd cOF cLO -cUY -cVI -cVH -cXD +viT +ydM +fXv +rQM bvA dbI deo dfb -dcc +xNt dfH -cVU +cjM cZB dTs dTs @@ -77509,40 +62411,40 @@ acu dTs dTs aOc -aOO -byP -aPI -aRf -gUz -aRD -aRD -aTg -aTh +loF +ind +sxu +xkP +ekD +tOC +tOC +mOy +xBQ aOc -ahu -ait +qmI +mVq aVI -aNs -aWl -aWl -aWl -bdE -aeZ -afq -aWl -bkV -afq -aYK -aWl -baR +sVG +hjc +hjc +hjc +rWE +ceE +sGH +hjc +pso +sGH +lWQ +hjc +sZp aWM aiZ -aIa +vGB apz aql ara ahx -ahk +rLa aim dTs dTs @@ -77569,33 +62471,33 @@ dTs dTs dTs bni -bnO -boB -bpx -bqI -brH -bsz -btq -bJx -mEC -bxg -boB +xDk +rzr +vnn +pTS +gCf +mLt +mwW +mAn +dbl +syM +rzr bLz -bAv -bUq -bUq -bUq -bEj -bwe -bBP -bAt -bAt -bDK +hpP +hCV +hCV +hCV +haT +oUE +tqn +xkf +xkf +izP brQ bpJ bMI bNm -bGu +nPk cjH cjH cjH @@ -77603,62 +62505,62 @@ cjH cjH cjH cjH -bOY +uAQ bVX bWX -bXV -bYD -bYD -bVk +pgu +pCt +pCt +pbD bOX bOX bOX bOX bOX cdR -cuo +eTS cxc cfP aWE aPR -aFw +ozC axk ceA ceA bft ceA ceA -bPA -aTH -bqd -bqd -bqd -bqd -bqd -aTU -bvJ -bRw +dqC +fSR +fMz +fMz +fMz +fMz +fMz +qTL +wdQ +bBJ aNH aNH aNH -bor +nrg aNH aNH aNH -bvS +sVf bDJ bHF bvD -bLQ +hYi bNw -bNT +rIg bRF bRF bRF -cyH -cJr +pWO +qXv bNw -bZL +vME bZJ bZJ bZJ @@ -77674,8 +62576,8 @@ dTs dTs dTs dTs -csA -csD +tae +eTl doE doE cuM @@ -77684,45 +62586,45 @@ crx dFo doE cJe -cNU -cOt -cOD -cPe -cNU -cOt +dBB +gTP +pDg +pkq +dBB +gTP cJe doE doE -cJx -cfd +sUf +vKr doE doE dTs boP -boQ -boR -bNb -bLS -cna +pRF +pjp +gpm +kct +ewg bvA -cpi -cFR -cIl +tvl +fns +uZK cLQ cLd cLI cLO -cUY -cVI -cVH -cXD +viT +ydM +fXv +rQM bvA dbT deo dfb -dcc +xNt dfH -cVU +cjM cZB cZB cZB @@ -77746,39 +62648,39 @@ aOc aOc aOc aOc -aRg -aRE -sda -bFq -aTh +oyH +evE +sxe +lBI +xBQ aOc aOc dTs dTs aVI -aNt -aWl -aWl -aWl -aex -aYL -qdy -bdE -bdE -aYv -aYL -aYY -baR +sdA +hjc +hjc +hjc +jWO +mHL +dMW +rWE +rWE +fqD +mHL +bAV +sZp aWM aiZ -aIa +vGB apz aqg aqg ahj -bdW +mBt aiZ -aUL +nQI dTs dTs dTs @@ -77809,40 +62711,40 @@ blZ blZ blZ blZ -btr -bJx -bMc -bxh +fzj +mAn +nRn +vYH brF brF -aeL -aia -aia -aOL -bEk -bwe -bBP -bHT +sjv +bBC +bBC +wND +vER +oUE +tqn +ygx bJh -bDK +izP brQ bpJ bMI bNm -bGu +nPk cjH cqa cqa mOS -jxq -ueS +ylj +sGE cjH -bOY -bVp -cuo -bXW -afO -age +uAQ +qfV +eTS +tmL +hiK +lGm dTs dTs dTs @@ -77850,36 +62752,36 @@ dTs dTs bOX cdS -cuo +eTS cxc bMI aSu aPR -aFw +ozC axk ceA ceA ceA ceA ceA -bPB -bSV -cjO -bvJ -bRw -bSV -cjO -bvJ -ccu +vRS +viI +mtQ +wdQ +bBJ +viI +mtQ +wdQ +uKN ceA aNH -aOw -aUd -aOC +kvu +vYO +uQC aNH -buu -bwD -bAb +qzI +sPV +vul bDM bvD bvD @@ -77889,8 +62791,8 @@ bRF bRF bRF bYo -cyH -cJs +pWO +kET bNw bZw caX @@ -77908,8 +62810,8 @@ dTs dTs dTs dTs -csC -cwz +lCt +xeZ doE doE cuM @@ -77918,17 +62820,17 @@ crz dFo doE cJe -cNv -cOn -cOD -cPf -cNv -cOn +eOf +tgP +pDg +nsw +eOf +tgP cJe doE doE -cJx -cfd +sUf +vKr doE doE dTs @@ -77936,31 +62838,31 @@ boP boP boP boP -clr +vxi boP bvA bvA bvA cIo -cJb -cMf -cOT -cTa +ohK +jsV +hBa +huu cNo -cVH -cWn +fXv +vdw cNo bvA dbY dbY dfo -dcc +xNt dfH -cYy -cZv -dgu -dgu -dgz +igg +hFf +sbz +sbz +cXS cZB dTs dTs @@ -77990,31 +62892,31 @@ dTs dTs dTs aVI -aNu -aWl -bdE -aWl -aYw -afa -afs -bdE -afq -aYw -aYM -aYZ -baR +pAB +hjc +rWE +hjc +bAe +xIy +gDR +rWE +sGH +bAe +lro +hUM +sZp aVI aiZ -aIa +vGB apz aqg aqg asa -ahz +fEi acW aiZ -apu -apt +ykk +pbG dTs dTs dTs @@ -78036,45 +62938,45 @@ lcj dTs blZ blZ -bnj -bnP -boC -bpy -bqJ -dDv +eMM +eyw +mlR +kFU +pLi +wvz blZ -bts -buK -bMc -bxi +nnX +rhe +nRn +jil brF dTs dTs dTs dTs -aOM -bEk -bzE -bBP -bAt -bAt -bDK +pIK +vER +wFa +tqn +xkf +xkf +izP brQ bsC bMJ bNm -bJk +mFa cjH cqa cqa ibl sye -qkZ +ydW cjH -bVk -bVY -cuq -dhT +pbD +tzp +mGY +qxx afR agO dTs @@ -78084,12 +62986,12 @@ dTs dTs bOX cdR -cuo +eTS cxc bMI aSu aPR -aFw +ozC axk ceA ceA @@ -78097,33 +62999,33 @@ ceA bfH ceA ceA -bpk -bqi -bxR +xyp +tsk +xMD ceA -bVK -bqi -caT +vjX +tsk +idm ceA ceA aNH -aOC -aOC -aOC -bpt +uQC +uQC +uQC +fyF bvD bvD bvD bDU bvD bvD -bJO +mTo bNw -bOK -bSu +wWL +jtL bRF bYp -cGP +xtK bNw bNw bZJ @@ -78143,8 +63045,8 @@ dTs dTs dTs dTs -csC -cwz +lCt +xeZ doE cuM crx @@ -78152,49 +63054,49 @@ crx dFo cJd cJd -cNU -cOt -cOD -cPf -cNU -cOt +dBB +gTP +pDg +nsw +dBB +gTP cJd cJd doE -cJx -cfd +sUf +vKr cBW cuO doE doE doE boP -bPE -brL -cnb -coh -cpp +wdS +rWG +vVe +wLX +vSs boP -cIp +fpO cjf cMj cOi bdP -cVi -cIq -cIq -cYy -cZv -cZv -cZv -cZv -dfB +jze +eLk +eLk +igg +hFf +hFf +hFf +hFf +vvX dfI dfI dfI dfI dfI -cVU +cjM cZB dTs dTs @@ -78224,31 +63126,31 @@ dTs dTs dTs aVI -aeW -aWm -adB -dJL -aeB -afe -bdE -bdE -bdE -aWl -aYS -aWl -baR +sse +rTe +snH +hUs +uXI +xcJ +rWE +rWE +rWE +hjc +fve +hjc +sZp aWM agq -aIa +vGB apz aql ara asa -bdW +mBt aiZ aiZ amN -apu +ykk dTs dTs dTs @@ -78269,46 +63171,46 @@ fmP lcj blZ blZ -bmE -bmF -bCA -bmG -bmG -bmG -uRx +xEL +pzW +pjo +ghO +ghO +ghO +mVc blZ -btt -buK -bMc -dDw +frl +rhe +nRn +wvr brF dTs dTs dTs dTs dTs -bEl -bzE -bmf -bAt -bAt -bDK +kbu +wFa +nay +xkf +xkf +izP brQ bpJ bMI bNm -bGu +nPk cjH cqa cqa cqa cqa -ueS -fcG -bVl -bVp -cuo -dhT +sGE +wTo +pDj +qfV +eTS +qxx afR agO dTs @@ -78318,12 +63220,12 @@ dTs dTs bOX cdR -cuo +eTS cxc cfP aWE aPR -aFw +ozC axk ceA ceA @@ -78331,34 +63233,34 @@ ceA ceA bny ceA -bpl -brq -bBf +lsO +dkw +ktx ceA -bZv -brq -bBf +mQM +dkw +ktx ceA ceA aNH -aOC -aOC -aOC +uQC +uQC +uQC aNH -bvE +dRx bvD bAc bDV bHI bJI -bJP +naL bNw -fzV -bSx +fDH +kgO bRF bYq -cyH -cJt +pWO +wta bNw bZM bZM @@ -78378,57 +63280,57 @@ dTs dTs dTs dTs -csD +eTl doE cuM crx crx dFo cJe -cJg -cNZ -cJg -cOS -cPg -cJg -cJg -cJg +nkg +xML +nkg +xra +uBQ +nkg +nkg +nkg cJe doE -cJx -cfd +sUf +vKr doE cOj doE doE doE bpY -bPE -brL -brL -pIg -cps +wdS +rWG +rWG +lLf +umq bpY -cIp +fpO cjf cMm cOV bdP -cVi -cIq -cIq -cVP -cZx -cZx -cZx -cXa -cXa -cXa -cXa -cZx -cZx -cZx -dgA +jze +eLk +eLk +hXQ +kpF +kpF +kpF +uuM +uuM +uuM +uuM +kpF +kpF +kpF +hDj cZB dTs dTs @@ -78458,32 +63360,32 @@ dTs dTs dTs aVI -aWj -aWl -aWl -bdE -aSn -aSq -afq -bdE -aZy -aWl -dJL -aWl -baR +wcV +hjc +hjc +rWE +wZc +iTe +sGH +rWE +cXy +hjc +hUs +hjc +sZp aWM aiZ -aIa +vGB apz aqg aqg asa -bdW +mBt aiZ anF bej aiZ -axZ +uzO dTs dTs dTs @@ -78502,47 +63404,47 @@ fmP fmP lcj blZ -bmm -bmF -bCA +qTm +pzW +pjo bDe bDj bEy -bCA -uRx +pjo +mVc blZ -btt -bJx -bMc -bxk +frl +mAn +nRn +loB brF dTs dTs dTs dTs dTs -bZU -bzE -bmf -bAt -bAt -bDK +qUc +wFa +nay +xkf +xkf +izP brQ bpJ bMI bNm -bGu +nPk cjH cqa cqa cqa gTD -ueS -sNn -bVl -bVp -cuq -dhU +sGE +xEN +pDj +qfV +mGY +fhR bYE bZe bZe @@ -78552,12 +63454,12 @@ bZe bZe cdm cdR -cuo +eTS cxc bMI aSu aPR -aFw +ozC axk ceA ceA @@ -78565,34 +63467,34 @@ ceA bmY ceA ceA -bps +hFn brr -bFt +qbp ceA -bZK +oEb brr -bFt +qbp ceA ceA aNH -aOC -aOC -aOC +uQC +uQC +uQC aNH -bvF +hcQ bxZ bBg bFv bHJ bJI -bJS +cWf bNw -eaN -bSx +vnO +kgO bRF bRF -cyH -cJt +pWO +wta bNw cao bZM @@ -78611,7 +63513,7 @@ dTs dTs dTs dTs -csB +eMf doE doE cuM @@ -78619,46 +63521,46 @@ cvJ crz dFo cJe -cJk -cJg -cJg -cJg -hTg -cJg -cNZ -cJg +fhj +nkg +nkg +nkg +rBU +nkg +xML +nkg cJe doE -cJx -cfd +sUf +vKr doE doE doE doE doE bpY -bPF -brL -brL -pIg -cps +xhh +rWG +rWG +lLf +umq bpY -cIp +fpO cjf cMm cOW cUz -cVo -cVN -cVN -cVU -cVN -cIp -dep -dep -dfC -cVi -cVN +hKy +jft +jft +cjM +jft +fpO +ymj +ymj +uLR +jze +jft dgm dgv dgv @@ -78692,33 +63594,33 @@ dTs dTs dTs aVI -aWp -aWn -aWo -aei -bnQ -boD -aYT -aZa -aZz -aZO -baj -bal -bbb +nhy +ulS +xpQ +jny +hvU +gNs +lhx +els +juu +vdC +xai +inL +mya aVI aiZ -aIa +vGB apz aqg aqg asa -bdW +mBt aiZ beD beU bfp -apu -apt +ykk +pbG dTs dTs dTs @@ -78736,97 +63638,97 @@ fmP fmP lcj blZ -bmn -bmG -bCA +vco +ghO +pjo bnU bnU bnU -bCA -bEC +pjo +aSz blZ -btp -bKx -bvY -bxl +eii +lzF +nyy +slG brF dTs dTs dTs -aib -aPS -bZY -bzE -bBP -bAt -bAt -bDK +hav +ezL +rIC +wFa +tqn +xkf +xkf +izP brQ bsC bMJ bNm -bGu +nPk cjH -rAL -wLI -wLI -wLI -aWy -cMS -cOr -bVp -cuq -bOY +heu +kDk +kDk +kDk +dZw +eZv +iRL +qfV +mGY +uAQ bYE -bZf -bZV -caC -cbi -cbi -caC +rza +icB +xRO +wng +wng +xRO bYE cdR -cuo +eTS cxc aEk cvr aPR -aFw +ozC axk -baz -cwl +vzl +imw ceA ceA ceA aUh -bps +hFn brr -bFu +tWs ceA -can +eqO brr -bFt +qbp aUh ceA aNH -aRt +ovV aNH -aRt +ovV aNH -bvK +gUQ bvD bAc bFy bHK bJI -bJS +cWf bNw -eaN -bSx +vnO +kgO bRF bYr -cyH -cJv +pWO +ePZ bNw bZM bZM @@ -78845,7 +63747,7 @@ dTs dTs dTs dTs -csD +eTl doE doE cuM @@ -78853,46 +63755,46 @@ dvo crx dFo cJe -cJg -cOa -cOu -cOU -cOU -cOU -cOa -cJg +nkg +iNy +gRn +qPO +qPO +qPO +iNy +nkg cJe doE -cJx -cfd +sUf +vKr doE doE doE doE doE bpY -bPJ -clt -clt -col -cqb +ygy +ikI +ikI +eXs +jDG bpY -cIp +fpO cjf cMm cOW bdP -cVi -cVN -cIq -cVU -cVN -cVN -cVN -cVN -cVN -cVN -cVN +jze +jft +eLk +cjM +jft +jft +jft +jft +jft +jft +jft dgn cOi bQt @@ -78931,8 +63833,8 @@ aVI aVI aVI aWM -bpw -aYU +rQX +jXV aWM aVI aVI @@ -78941,20 +63843,20 @@ aVI aVI aVI dJR -aIa +vGB apz aql ara asa -bdW +mBt aiZ apc beV beD apc -apu -amP -apt +ykk +vvF +pbG dTs dTs dTs @@ -78970,96 +63872,96 @@ lcj lcj lcj blZ -uDU -bmG -bCU +iJY +ghO +nZN bnT bnT bpA -bqK -fZd -bsA -btu -bLg -bMk -bPe +eRy +tiN +otN +fzb +udC +vPu +wnf brF brF brF brF -bCm -bCV -bEl -bwe -bBP -ciw +wsZ +jTb +kbu +oUE +tqn +hGk bJh -bDK +izP brQ bpJ bMI bNm -bGu +nPk cjH cjH -aRS -aUp -aUp -aUp -cNe -cOr -bVY -cuq -cOP +nBw +epG +epG +epG +wQq +iRL +tzp +mGY +wop bYE bYE bYE -caC -caC -cbR -caC +xRO +xRO +wRQ +xRO bYE cdR -cuo +eTS cxc cfP aEE aPR -aFx +rpu aPu -bbz -bck -cwl +tla +xvY +imw ceA ceA ceA -bps +hFn brr -bFt +qbp ceA -can +eqO brr -bFt +qbp ceA -baz +vzl aNH -aRu +eko aNH -aRu +eko aNH -bvL +hJb bvD bAc bGv bHL bJI -bJS +cWf bNw bNw -bSy +tFM bRF bYQ -cGP +xtK bNw bNw bZw @@ -79078,7 +63980,7 @@ dTs dTs dTs dTs -csB +eMf doE cSR doE @@ -79088,45 +63990,45 @@ dvo dFo cJd cJd -cOb -cOb -cOX -cOb -cOb -cOb +oDq +oDq +fBK +oDq +oDq +oDq cJd cJd doE -cJx -cYY -cuP -cuP -cuP -cuP -cuP +sUf +toT +kFw +kFw +kFw +kFw +kFw boP -bQy -brL -brL -cne -cqc +uyy +rWG +rWG +pYt +fYO boP -cIp +fpO cjf cMm cOW bdP -cVi -cVN -cVN -cWj -cVN -dca -deq -deq -dfp -cVi -cIq +jze +jft +jft +lVY +jft +doS +uGD +uGD +vCp +jze +eLk cjf bQt cOi @@ -79164,33 +64066,33 @@ aWq aWq aWq aVm -aXR -bpz -aYk -aZb +qfJ +uBM +uxo +mMs aWY -aZQ -bak -bak -bbc +obo +pCS +pCS +vaT bbC aiZ -aIa +vGB apz aqg aqg asa -bdX -apd +tKW +xnb aiZ aiZ aFu aqz aiZ aiZ -apu -amP -amP +ykk +vvF +vvF dTs dTs dTs @@ -79204,97 +64106,97 @@ dTs dTs dTs blZ -bmp -bmG -bCA +eCS +ghO +pjo bnU bnU bnU -bmG -rqk +ghO +wxT blZ -btq -bLk -bMc -bPf -byt -bys -byt +mwW +qhn +nRn +req +mpN +sNu +mpN bLz -bAt -bAt -bAt -bzE -bBP -cfr -bAt -bDK +xkf +xkf +xkf +wFa +tqn +ylK +xkf +izP brQ bpJ bMI bNm -bGu -bOY -bPZ -bRh -bRh -bRh -bRh -cNg -cOK -cbh -cur -bXX +nPk +uAQ +jKL +gyC +gyC +gyC +gyC +jvh +vhp +opi +tFr +hKx bYE -bZf -bZV -caD -caC -dLn -caC +rza +icB +unU +xRO +kXs +xRO bYE mAZ -bGn +nEt qqR bJE aEH che -cvv +pwV dTs dTs beC -bck -ceD -cwl +xvY +qre +imw ceA -bps +hFn bud -bFt +qbp ceA -bZK +oEb brr -bFu +tWs ceA -ceG +rPE aNH aNH aNH aNH aNH -bvM +syc bvD bvD bvD bvD -bJO -bJT +mTo +qTb bNw -bQz -bSx +kXE +kgO bRF caO -cyH -cKj +pWO +wUA bNw dTs dTs @@ -79313,7 +64215,7 @@ dTs dTs dTs dTs -cwz +xeZ doE doE cuM @@ -79322,45 +64224,45 @@ dVc dFo doE cJe -cOb -cOv -cOb -cOb -cOv -cOb +oDq +guZ +oDq +oDq +guZ +oDq cJe doE doE -cJx +sUf cZb -cUh -cUh -cUh -cUh -cUA -brd -brL -brL -brL -cne -brL -brd -cIq +lCF +lCF +lCF +lCF +mWC +wlD +rWG +rWG +rWG +pYt +rWG +wlD +eLk cJc cMn cPu cUD -cIq -cIq -cVN -cWj -cVN -cVN -cIq -cIq -cIq -cIq -cVN +eLk +eLk +jft +lVY +jft +jft +eLk +eLk +eLk +eLk +jft dgp cOi cOi @@ -79393,29 +64295,29 @@ dTs dTs dTs aVm -aVK -aWr -aWR +gHx +nuL +eRW aWq aXL -aYj -brK -bsE -aZc +sQx +oCO +sut +lhw aZP -aZS -aZT -aZT -bbd +nnL +szE +szE +euN ban -ajb -aoD +iOz +bcg apz aqg aqg asa -aoE -aDe +xfg +ufK aiZ aiZ aiZ @@ -79425,7 +64327,7 @@ aiZ aiZ aiZ aiZ -apu +ykk dTs dTs dTs @@ -79438,97 +64340,97 @@ dTs dTs dTs blZ -bmq -bCf -bCA +xKs +jdy +pjo bnV bnV bnV -sDf -brM +uin +npV blZ -btv -buP -bvY -bMc -bMc -bMc -bMc -bUs -bWa -bWa -bWa +shZ +nkj +nyy +nRn +nRn +nRn +nRn +wNc +tJH +tJH +tJH bUm bpF -btD -bJi +hPP +rDh bKv -bBq -bBq -bML -bML +fiB +fiB +sBg +sBg bOh -bPa -bWh -bWh -bWh -cGr -cGr -cGr -cGr +nmO +kdn +kdn +kdn +shb +shb +shb +shb dam -cur -bOY +tFr +uAQ bYE bYE bYE bYE bYE -dLE +iWj bYE bYE mAZ -bGn +nEt qqR aEI aEI che -cvv +pwV dTs dTs dTs dTs beC dTs -cwl -bpX -buf -bIU +imw +etz +vUL +kMJ ceA -cap -buf -bIU -baz -bbz +ozo +vUL +kMJ +vzl +tla dTs dTs dTs aNH -btf -bvS +tAL +sVf bvD bvD bvD bvD -bJP +naL aNH bNw -bQz -bSx +kXE +kgO bRF bRF -cyH -cKj +pWO +wUA bNw dTs dTs @@ -79548,7 +64450,7 @@ dTs dTs dTs dTs -cwz +xeZ doE cuM crx @@ -79559,42 +64461,42 @@ cJd cJd cJd cJd -cPh +pEZ cJd cJd cJd doE doE -dHa -cTG -cTG -cTG -cTG -cTG -cUB -brL -brL -brL -cnc -con -cqf -cqf -cIr +tuH +pqt +pqt +pqt +pqt +pqt +vNN +rWG +rWG +rWG +obJ +qAP +wgA +wgA +iOI cJn cMw cPy cUU -cVv -cIq -cVN -cVU -cIq -cIp -deP -deP -dfC -cVi -cVN +dIg +eLk +jft +cjM +eLk +fpO +uiO +uiO +uLR +jze +jft dgn cOi bQt @@ -79627,39 +64529,39 @@ dTs dTs dTs aVm -dun -lUl -aWS +umd +ldz +xsR aWq -aXt -aYk -brK -bsJ -bsE -btP -buJ -buJ -buJ -buJ -bbn -aky -aoG +nhS +uxo +oCO +vad +sut +ybT +liQ +liQ +liQ +liQ +exa +gds +qDO apz aql ara asa -aoE -anj -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb +xfg +gji +iOz +iOz +iOz +iOz +iOz +iOz +iOz +iOz +iOz +iOz dTs dTs dTs @@ -79673,61 +64575,61 @@ dTs dTs blZ blZ -bmI -bCf -bCA -bCA -bCA -ijc -brM +uPv +jdy +pjo +pjo +pjo +qwy +npV blZ -btw -buQ -bvY -bvY -bMc -bMc -bvY -bMc -cbT +wdk +iXG +nyy +nyy +nRn +nRn +nyy +nRn +dZT bUm bUm -cbT -cbT -bJj -bOZ +dZT +dZT +lUk +tNC bBr -bBq -bBq -bML -bML +fiB +fiB +sBg +sBg bOi -bQa -bXa -cCT -cCT -cCT -cCT -cCT -cCT +jbY +jAa +xxV +xxV +xxV +xxV +xxV +xxV dam -cuq -bOY +mGY +uAQ bYE -bZg -bZW -dJJ -bZW -dMg -ccC +lzB +shH +ehf +shH +jHO +wIA bYE yll -bGn +nEt qqR aEn cgz che -cvv +pwV dTs dTs dTs @@ -79735,34 +64637,34 @@ dTs dTs dTs dTs -ceD -cwl +qre +imw ceA ceA ceA ceA -baz -bbz +vzl +tla dTs dTs dTs dTs aNH -btf -bvS +tAL +sVf bvD bvD bvD bvD -bJS -bLT +cWf +vWn bNw -bQz -bSA -bVN -bVN -cHr -cKj +kXE +eGq +fAj +fAj +doJ +wUA bNw dTs dTs @@ -79772,8 +64674,8 @@ dTs dTs dTs dTs -cGO -ibU +kam +vqd dNS dTs dTs @@ -79782,7 +64684,7 @@ dTs dTs dTs dTs -csD +eTl doE cuM dvo @@ -79791,44 +64693,44 @@ dFo doE doE cJd -cOw -cOb -cOb -cOb +gPq +oDq +oDq +oDq cJd doE doE doE -cXk -cTJ -cTJ -cTJ -cTJ -aKt -cTJ +xEI +gpB +gpB +gpB +gpB +qqK +gpB boP -bQB -brL -cne -brL -cqg +sFC +rWG +pYt +rWG +hYd boP -cIp +fpO cjf cME cOi bdP -cVi -cVN -cWW -cYz -cIq -cIq -cIq -cIq -cIq -cIq -cIq +jze +jft +lhE +tnm +eLk +eLk +eLk +eLk +eLk +eLk +eLk dgq dgw dgy @@ -79861,40 +64763,40 @@ dTs dTs dTs aVm -duo -aWt -aWT +wRK +hsW +tHq dba aXL -aYl -brK -bsE -aYk -aYk -buJ -buN -buN -buJ -buJ -bvh -aoG +kOX +oCO +sut +uxo +uxo +liQ +qIr +qIr +liQ +liQ +now +qDO apz aqg aqg asa -akz -aNp -aNp -beW -beW -beW -beW -beW -beW -beW -beW -beW -bhC +vrq +iSm +iSm +lrT +lrT +lrT +lrT +lrT +lrT +lrT +lrT +lrT +dWY dTs dTs dTs @@ -79908,62 +64810,62 @@ dTs dTs blZ blZ -bnl -bnW -boF -bpB -bqL -brN +fET +poD +xRi +sWi +gxs +pOj blZ -ogX -boB -boB -bxn -byu -byu -boB +fVM +rzr +rzr +ivG +wEO +wEO +rzr bLz -bAt -bwe -bmf -bAt -cfr -cfr -bAt -bDK +xkf +oUE +nay +xkf +ylK +ylK +xkf +izP brQ bpJ bMI bNm -bGu -bOY -bQc -bOY -bOY -bOY -bQc -bOY -cOL -cdn -cuq -bOY +nPk +uAQ +tMu +uAQ +uAQ +uAQ +tMu +uAQ +upq +iwF +mGY +uAQ bTt -bZh -bZX -dKk -dKI -dMo -ccD +kXG +tWu +gUU +wGb +xAK +jOa bTt mAZ -bGn +nEt qqR bJE bJE che -cEQ -cFj -cFj +jQg +dHN +dHN chJ dTs dTs @@ -79971,42 +64873,42 @@ dTs dTs dTs dTs -ceD -ceD +qre +qre dTs dTs -bbz +tla beC dTs dTs dTs dTs aNH -bug -bvS +mQE +sVf bvD bBy bGw bBy -bJS -bLT +cWf +vWn bNw bNw bNw -bWe -bWe -bWe +hxg +hxg +hxg bNw bNw dTs dTs -ibU -dNo +vqd +hBP dTs dTs -cGO -ibU -cMo +kam +vqd +eUJ dNS dNS dNS @@ -80016,7 +64918,7 @@ dTs dTs dTs dTs -cwz +xeZ doE cuM dVb @@ -80025,10 +64927,10 @@ dFo doE doE cJd -cOx -cOb -cOb -cPj +mIZ +oDq +oDq +uJz cJd doE doE @@ -80038,35 +64940,35 @@ doE doE doE doE -aKT +eWM doE bpY -bRA -cms -cne -brL -cps +jLH +fff +pYt +rWG +umq bpY -cIp +fpO cjf cME cOi bdP cZB -cIq -cWX -cYz -cZy -cVN -deQ -deP -dfD -cVN -cVN -dgr -dfp -deP -dgC +eLk +muX +tnm +pDT +jft +haw +uiO +vbo +jft +jft +bNU +vCp +uiO +pMn cZB dTs dTs @@ -80100,18 +65002,18 @@ aWq aWq aWq aXL -aYm -brK -bsE -aYX +sSG +oCO +sut +tUP aZR -aZU -aZT -aZT -bbe +ftz +szE +szE +pcT ban -aoe -bco +dLo +kht apz aqg aqg @@ -80157,19 +65059,19 @@ bLz brF brF brF -bAs +qvM bCW bEq -bAt -bAt -bHT +xkf +xkf +ygx bJh -bDK +izP brQ bsC bMJ bNm -bJk +mFa bPb bPb bRy @@ -80177,20 +65079,20 @@ bRy bRy bPb bPb -bVn -cuj +lnu +mpW dgM -cus -dny -dBF -dCD -dKl -cbk -cbW -sIK +kzu +tWg +iVU +iWu +gUH +dAN +wur +qNl bTt mAZ -bGn +nEt qqR bJE aEH @@ -80198,7 +65100,7 @@ aEK bJD bJD cfg -cvA +jhz dTs dTs dTs @@ -80216,14 +65118,14 @@ dTs dTs dTs aNH -jjq -bvT -byQ -byQ -byQ -bHM -bJT -bLT +xrW +vOp +fWM +fWM +fWM +lZG +qTb +vWn aNH dTs bNw @@ -80235,10 +65137,10 @@ dTs dTs dTs dNS -kkm -dNo -cGO -cMo +mvW +hBP +kam +eUJ dNS cNs dNS @@ -80249,8 +65151,8 @@ dNS dTs dTs dTs -cuH -csB +xuw +eMf doE cuM crx @@ -80259,10 +65161,10 @@ dFo cNQ doE cJd -cOw -cOY -cOb -cOb +gPq +nrd +oDq +oDq cJd doE doE @@ -80272,35 +65174,35 @@ doE doE doE doE -aKT +eWM doE bpY -cat -brL -cne -brL -cps +uof +rWG +pYt +rWG +umq bpY -cIt +cZj cjf cME cOi bdP cZB -cVO -cIq -cWj -cWW -cVN -deQ -dfp -dfp -cVN -cIq -dgs -dgs -deP -cIq +sEX +eLk +lVY +lhE +jft +haw +vCp +vCp +jft +eLk +lju +lju +uiO +eLk cZB dTs dTs @@ -80334,18 +65236,18 @@ aWq aWU aXo aVm -aXR -brK -bsE -aZb +qfJ +oCO +sut +mMs aWY ban -baC +rYi ban ban bbC aiZ -aIa +vGB apz aql ara @@ -80363,7 +65265,7 @@ aDb aqg aqg asa -bhV +wRa dTs dTs dTs @@ -80381,50 +65283,50 @@ dTs dTs dTs bqM -bqe -bqf -bqe -bqe -bqe -bqe -bqe -bqf -bqe -bqe -bqe +sUy +tUf +sUy +sUy +sUy +sUy +sUy +tUf +sUy +sUy +sUy bKv bxX -bqe -bqe -bqe -bqe -bEi +sUy +sUy +sUy +sUy +nlc brQ bpJ bMI bNm -bGu +nPk bPb -bQd -bRi -cFk -cFk -bTL +xOe +lQm +nub +nub +faI bPb -cOP -cuk +wop +lrs dgU -cut -bYH -bZj -bZX -dKk -dKT -dMx -ccF +kzL +pXS +kQu +tWu +gUU +vdH +fmF +ugi bTt mAZ -bGn +nEt qqR edo aEJ @@ -80432,7 +65334,7 @@ aEO aEH aEI che -cvA +jhz dTs dTs dTs @@ -80452,10 +65354,10 @@ dTs aNH aNH aNH -byR -byR -byR -byR +oKR +oKR +oKR +oKR aNH aNH aNH @@ -80470,8 +65372,8 @@ dTs dTs dTs cNs -kkm -cMo +mvW +eUJ dNS dNS dNS @@ -80483,8 +65385,8 @@ dNS dTs dTs dTs -csA -csD +tae +eTl doE cuM crx @@ -80506,35 +65408,35 @@ doE doE doE doE -aKT +eWM doE boP -caw -brL -cne -cou -cqh +kMb +rWG +pYt +rDg +hgn boP -cIu +oEi cjf cME cOi bdP cZB -cIq -cIq -cWj -cVN -cVN -cIq -cVN -cVN -cVN -cIq -cVN -cIq -cIq -cIq +eLk +eLk +lVY +jft +jft +eLk +jft +jft +jft +eLk +jft +eLk +eLk +eLk cZB cZB cZB @@ -80568,18 +65470,18 @@ aWq aWV djg aXL -aYm -brK -bsE -aZb +sSG +oCO +sut +mMs aWY -bff -baD -dJQ -bbh +lJZ +bEs +hEe +loS bbC aiZ -aIa +vGB apz aqg aqg @@ -80597,8 +65499,8 @@ aDc aqg aqg asa -bdW -apu +mBt +ykk dTs dTs dTs @@ -80613,8 +65515,8 @@ dTs dTs dTs dTs -aOM -bcz +pIK +rrD brP bpI bpI @@ -80626,8 +65528,8 @@ bpI bpI bpI bpI -bBq -bBq +fiB +fiB bpI bpI bpI @@ -80637,28 +65539,28 @@ brR bpJ bMI bNm -bGu +nPk bRy -czD -cDk -cFr -cDk -cGA +kFE +tvD +vDX +tvD +vKK bRy -cOP -cul +wop +xwh bQb -bOY +uAQ bTt -bZk -dEb -dKk -dKU -dMC -dNG +dhn +kYh +gUU +isV +sZL +kow bYE mAZ -bGn +nEt qqR bJE aEI @@ -80666,7 +65568,7 @@ aEQ aFy bJE che -cvA +jhz dTs dTs dTs @@ -80716,8 +65618,8 @@ dNS dNS dTs dTs -cuH -csB +xuw +eMf cMF doE cuM @@ -80740,43 +65642,43 @@ doE doE doE doE -aKU +tKN boP boP boP -brL -cnf +rWG +xKX boP boP boP -cIt +cZj cjf cNj bQt bdP -cVi -cIq -cVN -cYA -cZz -cZz -deR -cZz -cZz -cZz -cZz -cZz -cZz -cZv -cZv -cZv -cZv -aNX -cZv -aQk -cZv -aNX -dgE +jze +eLk +jft +exm +saG +saG +vrm +saG +saG +saG +saG +saG +saG +hFf +hFf +hFf +hFf +drK +hFf +qGp +hFf +drK +lLH cZB acu "} @@ -80797,23 +65699,23 @@ dTs dTs dTs aVm -aVQ +bAf dba aWV djh aXL -aYj -brK -bsE -aZb +sQx +oCO +sut +mMs aZP -laq -dJN -aZT -bbi +jPH +pCD +szE +nkA bbC aiZ -aIa +vGB aIK auz auz @@ -80831,7 +65733,7 @@ aIJ aqg aqg asa -bdW +mBt aiZ dTs dTs @@ -80847,8 +65749,8 @@ dTs dTs dTs dTs -aOM -bcz +pIK +rrD brQ bpJ bpJ @@ -80860,8 +65762,8 @@ bpJ brS bpJ bpJ -bBq -bBq +fiB +fiB bpJ brS bpJ @@ -80871,28 +65773,28 @@ bpJ bsC bMJ bNm -bGu +nPk bRy -bQe -cCQ -hmA -eOH -cGA +kYO +eDF +vJO +qOl +vKK bRy -bOY -cul +uAQ +xwh deJ -bOY +uAQ bYE -bZl -dEb -dKk -dKV -cbZ -ccH +tXl +kYh +gUU +gpR +xIY +fxp bTt mAZ -bGn +nEt qqR bJE aEH @@ -80900,7 +65802,7 @@ chh aFy aFE che -cvA +jhz agd dTs dTs @@ -80951,7 +65853,7 @@ dTs dTs dTs dTs -cGh +rJO czv cuO cuM @@ -80970,11 +65872,11 @@ crw crw crw cKq -cKV +gcT doE cDc doE -cPG +feF boP bsg buc @@ -80983,34 +65885,34 @@ cnp coz cqv boP -cIt +cZj cjf cNj bQt bdP -cVi -cIq -cVN -cVN -cIq -cIq -deS -cVN -cWW -cVN -cIq -cVN -cVN -fHX -cVN -cIq -cIq -cIq -cIq -cVN -cIq -cIq -cVU +jze +eLk +jft +jft +eLk +eLk +lCi +jft +lhE +jft +eLk +jft +jft +lJC +jft +eLk +eLk +eLk +eLk +jft +eLk +eLk +cjM cZB acu "} @@ -81035,39 +65937,39 @@ duU aWv aWX aXr -aXI -aYn -aYG -bsL -btJ +mba +rTb +hNi +pRN +qId aZP -nIG -dJP -dJY -bbj +dxo +nNw +wMk +hMe bbC aiZ -bcp -bcD -bcD -bcD -bdA -aNp -aNp -aNp -beX -beX -beX -beX -bgf -apO +oWW +idV +idV +idV +bkQ +iSm +iSm +iSm +uyi +uyi +uyi +uyi +iSs +taZ apz aql ara asa -bdW -aqy -axY +mBt +saA +eol dTs dTs dTs @@ -81080,9 +65982,9 @@ dTs dTs dTs dTs -adF -aPS -bcz +fFF +ezL +rrD brQ bpJ btz @@ -81094,8 +65996,8 @@ btz bxo btz btz -bCY -bCY +hae +hae btz bxo btz @@ -81105,28 +66007,28 @@ btz btz btz buS -bqP +onh bRy -bQe -cCP -cFu -cDU -cGA +kYO +iuQ +rZl +rJt +vKK bRy -cOP -cum +wop +xYf deJ -bOY +uAQ bYE -bZm -dEb -dKs -dKW -bZX -lkZ +nbu +kYh +njK +xJv +tWu +hnT bTt mAZ -bGn +nEt qqR edo aEJ @@ -81134,7 +66036,7 @@ aER aEI bJE che -cvA +jhz agd dTs dTs @@ -81148,9 +66050,9 @@ dTs dTs dTs cQx -cQI +iUb cQx -cQI +iUb cQx dTs dTs @@ -81184,8 +66086,8 @@ dNS dNS dNS dTs -cwB -csD +nDq +eTl doE doE cuM @@ -81208,7 +66110,7 @@ cBY drL drO czv -cPG +feF boP hiw buc @@ -81217,34 +66119,34 @@ cnq cmG buc boP -cIp +fpO cjf cNj cOi cUz -cVi -cIq -cVN -cIq -cIq -cVN -cVN -cVN -cIq -dfJ -cVN -cVN -cIq -cIq -cIq -cIq -cVN -cVN -cIq -cVN -cIq -cIq -cVU +jze +eLk +jft +eLk +eLk +jft +jft +jft +eLk +gGA +jft +jft +eLk +eLk +eLk +eLk +jft +jft +eLk +jft +eLk +eLk +cjM cZB acu "} @@ -81270,39 +66172,39 @@ aWw aWq aWq aXL -aYl -aYH -btH -btJ +kOX +lsD +tMt +qId aWY -bar -baE -bas -bbk +sLI +sax +lDX +iJr bbC aiZ aiZ aiZ aiZ aiZ -ajS -ame -ame -ame -ame -ame -ame -ame -bgg -aoG +fHn +eWB +eWB +eWB +eWB +eWB +eWB +eWB +kwA +qDO apz aqg aqg asa -bdW -apu -amP -apt +mBt +ykk +vvF +pbG dTs dTs dTs @@ -81316,7 +66218,7 @@ dTs dTs bkU bpC -blH +hWD brQ bpJ btz @@ -81328,8 +66230,8 @@ btC btC btC btC -bCY -bCY +hae +hae btC btC btC @@ -81339,28 +66241,28 @@ btC btC btC buU -bqP +onh bPb -bQf -bRl -cFv -bSZ -bTN +xtM +pgD +isr +sTe +ojC bPb -bOY -cum +uAQ +xYf deJ -bOY +uAQ bYE -bZn -bZX -dEb -dKW -dEb -lkZ +hLi +tWu +kYh +xJv +kYh +hnT bTt mAZ -bGn +nEt qqR bJE aEI @@ -81368,7 +66270,7 @@ chh bJE aEI che -cvA +jhz dTs dTs dTs @@ -81382,9 +66284,9 @@ dTs dTs dTs cQx -cQJ +lnK cQx -cQJ +lnK cQx dTs dTs @@ -81405,7 +66307,7 @@ dTs dTs dTs dTs -cMo +eUJ dNS dNS dNS @@ -81442,7 +66344,7 @@ drL uTo drT cDc -cPG +feF boP sXn buc @@ -81451,34 +66353,34 @@ cnu coA buc bpY -cIp +fpO cjf cME cOi cUz -cVi -cVP -cXa -cXa -cZx -dcb -cVN -cIq -dfE -cXa -cXa -cZx -cZx -cZx -cZx -cZx -mej -cZx -cXa -cXa -cXa -cZx -dgA +jze +hXQ +uuM +uuM +kpF +tzG +jft +eLk +faO +uuM +uuM +kpF +kpF +kpF +kpF +kpF +bur +kpF +uuM +uuM +uuM +kpF +hDj cZB acu "} @@ -81504,14 +66406,14 @@ aWq aWq aXs aVm -aYm -brK -bsJ -btK +sSG +oCO +vad +dAW aWY aWY aZP -baA +tpK aZP aWY aWY @@ -81527,15 +66429,15 @@ bdg bdg bdg bdf -bgg -aoG +kwA +qDO apz aqg aqg asa -bdW +mBt aiZ -aqy +saA dTs dTs dTs @@ -81550,51 +66452,51 @@ dTs dTs bkU bpF -bmf +nay brQ bsC btA buS -bqN -brO -brO -bBQ -brO -brO -brO +nmh +gLf +gLf +guQ +gLf +gLf +gLf bCZ bEu -brO -brO -brO -bBQ -brO -brO -brO -brO -bBQ +gLf +gLf +gLf +guQ +gLf +gLf +gLf +gLf +guQ bOj bPb bPb cbg -cFw +mAA cbg bPb bPb -bOY -cum +uAQ +xYf deJ -bOY +uAQ bYE -bZo -bZX -dKt -dKY -dNk -kUz +gzN +tWu +rnQ +iHC +lKL +dBm bYE yll -bGn +nEt qqR bJE aEI @@ -81602,8 +66504,8 @@ chg bIH bIH cfh -cvA -ads +jhz +mij dTs dTs dTs @@ -81616,9 +66518,9 @@ dTs dTs cQx cQx -cQN -cQQ -cQQ +xUd +nzG +nzG cQx dTs dTs @@ -81649,10 +66551,10 @@ dNS dNS dNS dNS -taH -oJw -oJw -cwz +nkr +qWV +qWV +xeZ doE doE doE @@ -81676,7 +66578,7 @@ dsE uTo drT doE -cPG +feF boP buc buc @@ -81685,33 +66587,33 @@ cnz cmG buc bpY -cIp +fpO cjf cME cOi cUz -cVo -cVU -cVN -cIq -cIq -dcc -cIq -cIq -cVU -dfK -cIq -ezd -cIq -dfK +hKy +cjM +jft +eLk +eLk +xNt +eLk +eLk +cjM +qsi +eLk +vFF +eLk +qsi cZB cZB nEM aNY -aOW -aOW -aOW -aOW +iQH +iQH +iQH +iQH aNY nEM acu @@ -81738,20 +66640,20 @@ aVm aVm aVm aVm -aXR -brK -bsE -btL -aZB -buM -buO -aYF -aZc -bai -bai -buM -buM -bcq +qfJ +oCO +sut +xrS +fSU +gjV +cNJ +tjb +lhw +sLO +sLO +gjV +gjV +hXd bdf iQG bdC @@ -81761,15 +66663,15 @@ bdC dKe bfw bdf -bgg -aoG +kwA +qDO apz aql ara asa -bdW +mBt aiZ -axZ +uzO dTs dTs dTs @@ -81784,21 +66686,21 @@ bkU bkU bkU avw -bmf +nay brQ bpJ btz buS -bqO +gYI bxq bxq bxq bxq bxq -bxr +sDP bDa bEv -bxr +sDP bGX bGX bGX @@ -81809,33 +66711,33 @@ bPx bHc bHc bHc -bQg -bHa -cFx -bHa -bOq +rmK +pWA +fPw +pWA +lzk bPx -bOY -cum +uAQ +xYf deJ -bOY +uAQ bYE bYE bTt -dKt -dKZ +rnQ +jIN bTt bYE bYE mAZ -bGn +nEt qqR edo aEJ aFs -cEX -bJF -bJF +hYm +bbR +bbR chJ adt adt @@ -81849,10 +66751,10 @@ dTs dTs dTs cQx -cQG -cQQ -cQQ -cRG +xRe +nzG +nzG +prd cQx dTs dTs @@ -81872,7 +66774,7 @@ dTs dTs dTs dTs -sRl +pTd dNS cZw xgA @@ -81880,13 +66782,13 @@ lrY dNS dNS dNS -taH -oJw -oJw -xFk +nkr +qWV +qWV +iPx dTs dTs -cHl +nEj doE doE doE @@ -81910,7 +66812,7 @@ duc ebN drN doE -cPG +feF boP boP buc @@ -81919,25 +66821,25 @@ buc buc buc bpY -cIx +ksN cjf cNj cOi cUz -cVo -cWj -cIq -cIq -cIq -dcc -cIq -cIq -cVU -dfL -cIq -dfL -cIq -dfL +hKy +lVY +eLk +eLk +eLk +xNt +eLk +eLk +cjM +oyO +eLk +oyO +eLk +oyO cZB dTs nEM @@ -81971,103 +66873,103 @@ dTs dTs dTs aWY -aXO -aYm -aYF -bsE -aZu -bsJ -bsJ -bsE -aYF -aYk -buY -bvX -bsE -bsE -aZc +uKa +sSG +tjb +sut +rCr +vad +vad +sut +tjb +uxo +tMl +nnC +sut +sut +lhw bdg bdC -bdY -duY -beF -beY +mOW +lfv +niA +glf bdC bfx bdg -bgg -aoG +kwA +qDO apz aqg aqg asa -bdW +mBt aiZ -aUL -xxQ +nQI +vit rTV rTV rTV dTs bkU bkU -ivA -bmr -bmr -gDS -bnX +wEa +kdc +kdc +wuw +keY bkU avt -bmf +nay brQ bpJ btz buS -bqP +onh bxq dTs dTs dTs bxq -bxr -bDb -cbl -bFP +sDP +rvS +oil +vfI bGX -bHV -bJl -bKw -bLj -bMe -bMM -bNn -bOk -bPd -bQh -bTO -cFy -bTa -bTO -cNN -bPY +jLt +oDW +ndp +sPD +jAm +lXb +hor +uhR +trN +eBi +qwh +fTU +fZS +qwh +tYw +ddy dcS deJ -cOP -cOP -bZp -cOP +wop +wop +nge +wop dfS dLa -bOY -bOY -bOY +uAQ +uAQ +uAQ mAZ -bGn +nEt qqR aEI aEI che -cvv +pwV lOM ciN cir @@ -82083,10 +66985,10 @@ dTs dTs dTs cQx -cQG -cQQ -cRp -cQQ +xRe +nzG +nlS +nzG cQx dTs dTs @@ -82113,14 +67015,14 @@ uaK xgA dNS cNP -taH -cNX -dNp -dNp -dNp -dTs -cuH -cKK +nkr +iFk +qLl +qLl +qLl +dTs +xuw +kXn drO cyQ cBY @@ -82144,8 +67046,8 @@ csE cDc doE doE -cPG -cQm +feF +hFs boP bpY bpY @@ -82153,25 +67055,25 @@ bpY bpY boP boP -cIy +uWC cjf cNj bQt cUz -cVE -cVU -cXd -cYB -cYB -dcc -cIq -cIq -cVU -dfN -cIq -dfK -cIq -dfL +hxE +cjM +vvw +fjD +fjD +xNt +eLk +eLk +cjM +nSK +eLk +qsi +eLk +oyO cZB dTs nEM @@ -82190,9 +67092,9 @@ dTs dTs dTs dTs -abB -abP -acX +tyD +wAy +gnv asl aGA aGA @@ -82205,106 +67107,106 @@ aGA aGA aGA aWY -aXP -aYp -aYI -btI -btM -btI -btI -btI -buW -buX -bbD -bwa -btI -btI -btI -bzJ +jKN +xgP +qrw +gtA +oCd +gtA +gtA +gtA +vwC +rnL +joL +mFy +gtA +gtA +gtA +nSh bAE -bdZ -duZ -byp -tJG +pgT +pMC +jAO +vUo bdC bfy bdg -bgg -aoG +kwA +qDO apz aqg aqg amt -bdW +mBt aiZ aiZ tPP -gYT -oYp +jVY +yew rTV dTs bkU -bBx -bmb -bms -bms -bms -bms -boH +hly +mee +wfF +wfF +wfF +wfF +tva avt -bmf +nay brQ bsC btA buS -bqP +onh bxq dTs dTs dTs dTs -bxr -bDb -cbl -bxr +sDP +rvS +oil +sDP bPx -bHW -bJm -bHa -bHa -bHa -bMN -bHa -bHa -csL -ciT -ciT -cFA -cGs -cAq -cAq -bTJ +jtN +kZT +pWA +pWA +pWA +uYE +pWA +pWA +ixK +gwS +gwS +tBO +gZO +gqC +gqC +oPR bWg deJ -bWh -cGr -cGr -cGr +kdn +shb +shb +shb bQb dLb -cGr -bWh -clV +shb +kdn +hsB cdT bJC -uLr -cgB -cgB -cgB +oNp +tMd +tMd +tMd bJC chJ -bcH -bgx +lhH +uwR adt adx ama @@ -82317,10 +67219,10 @@ adw adw adw cQx -cQG -cQQ -cRq -cQQ +xRe +nzG +frw +nzG cQx dTs dTs @@ -82347,14 +67249,14 @@ uaK iTX dNS dNS -uAo -dNp -dNp -dNp -dNp +plx +qLl +qLl +qLl +qLl dTs dTs -cKQ +pkn uTo drO doE @@ -82362,8 +67264,8 @@ cuM crx crx csG -cIh -cJo +egK +vqp rHw cJQ cJQ @@ -82372,34 +67274,34 @@ cJQ rHw rHw rHw -cKi -cKS +omj +qqI doE cuO doE dkZ -cKJ -cQm -cQm -cQm -cQm -cQm -cQm -cQm +rSJ +hFs +hFs +hFs +hFs +hFs +hFs +hFs cZB cIY -cKg -cNl -cQb -cUV +dMJ +sud +vdV +aTT cZB cWk cWk cWk cZB cWk -cIq -dfy +eLk +qOE cWk cZB cWk @@ -82423,118 +67325,118 @@ acu dTs dTs dTs -abM -acb +sUq +kSa ach ahD agE aGA -aHk -aIe -acf -acf -kRX -acf -aIe -aLL +wPC +lFJ +fuv +fuv +pKL +fuv +lFJ +wPR aGA aWY -aXQ -aYq -aYo -aYX -aZw -aZw -aZw -aZw -aZw -bbg -aYl -brK -bsE -bsE -aYX +aBP +inY +aBN +tUP +pNL +pNL +pNL +pNL +pNL +lXV +kOX +oCO +sut +sut +tUP bdg bAI -bBi -dKc -beH -bfa +tQg +tZI +hgE +okx bdC wTz bdg -bgg -aoG +kwA +qDO apz aql ara asa -bdW +mBt aiZ bcy amQ ett -sdq -fZj +rmJ +etk dTs bkU -blB -bmc -bms -bms -bms -bms +lgF +sCr +wfF +wfF +wfF +wfF bkU avt -bmf +nay brQ bpJ btz buS -bqP +onh bxq dTs dTs dTs dTs -bCn -bDf +qJH +qMh bEx -cbY -bGZ -bHX -bHX -cAq -cqE -bMf -bMO -cvV -cwb -cxG -cAq -cAq -cFY -bHa -bOl +tuD +uIJ +nPe +nPe +gqC +nhC +fzs +uYz +vfH +sCk +plg +gqC +gqC +iNf +pWA +qro bPx -bOY -cun -cdo -cdo -dtT -dtT -dtT -cdo -cla -dNl -clU -dlP +uAQ +nRZ +kQS +kQS +mZe +mZe +mZe +kQS +dkx +mVU +cNn +fxZ cdU ceK -cxe -cfQ -cgB -cgB +ikN +kYc +tMd +tMd bJC chJ dTs @@ -82547,18 +67449,18 @@ adt cec cgy cij -cpj -cAU -cPB +ulY +lzz +jKa cQx cQx cQx -cRr +tjj cQx cQx lNu lNu -cvo +tHT dTs dTs dTs @@ -82573,22 +67475,22 @@ dTs dTs dTs dTs -cMl +uFt xdj dAl gVm iTX uRz dNS -taH -xFk -cGw -dNp -dNp -dNp +nkr +iPx +wCD +qLl +qLl +qLl dTs dTs -cKQ +pkn uTo drT doE @@ -82596,23 +67498,23 @@ cuM crx crx csG -cTC -cJo +uDh +vqp rHw rHw rHw cJX rHw -gRC +eXI rHw rHw -cKi -doj +omj +kbc doE cKp doE doE -cLP +sle cIi cRM cRM @@ -82626,15 +67528,15 @@ dbZ cPn cKL cPo -cQm -gYU -vEW -vEW -vEW -vEW -vEW -idG -tsL +hFs +fhi +lFU +lFU +lFU +lFU +lFU +fMY +srp dTs dTs dTs @@ -82656,26 +67558,26 @@ acu acu dTs dTs -abl -aca +nBJ +oTW ach ach ahD awK aGA -aHl -aIf -aIf -aIf -aIf -aIf -aIf -aLM +qEX +eLU +eLU +eLU +eLU +eLU +eLU +hot aWY aWY aWY aWY -aYJ +ipz aWY aZC aZC @@ -82683,93 +67585,93 @@ aZC aZC aZC aZC -aYm -aYF -bsE -bsE -bbX +sSG +tjb +sut +sut +lBQ bdf bdF -bBk +goh bBl beI bdC bdC qCu bdf -bgg -aoG +kwA +qDO apz aqg aqg asa -bhW -aED +jjT +xaP aiZ ruS ruS -uzL -lfZ -asq +yef +fAM +ewY bkU blC -bmd -sKe +iiG +hox bkU -bUQ +xPU bkU bkU avw -bmf +nay brQ bpJ btz buS -bqP +onh bxq dTs dTs dTs -aRR -bCo -bDg +gWT +xPN +eYh bEw -cts -bHa -bHa -bHa -cqu -ciT -csL -ckT -uMZ -cwc -bPg -bQj -bHa -ciT -bTc -bTP +rJD +pWA +pWA +pWA +jyU +gwS +ixK +omI +egc +iYr +qgc +xgd +pWA +gwS +weI +wFN bHc -bOY -bOY -bQc -bXV -bYD -bYD -bYD -bYD -bYD -bYD -bYD -bVk +uAQ +uAQ +tMu +pgu +pCt +pCt +pCt +pCt +pCt +pCt +pCt +pbD cdV -cuI +xkG cfj wzl bJE che -cvz +snO cir atr dTs @@ -82781,9 +67683,9 @@ adt ced cgy cik -cpq -cBX -cPX +vmW +fCe +gir cij cgy cgy @@ -82810,19 +67712,19 @@ dTs dTs dNS wpW -taH -cNV -oJw -oJw -xFk -dNp -dNp -dNp -dNp +nkr +gOu +qWV +qWV +iPx +qLl +qLl +qLl +qLl dTs dTs dTs -cKR +gwf uTo drT doE @@ -82830,8 +67732,8 @@ cuM cvJ crz csG -cTC -cJo +uDh +vqp rHw cJS rHw @@ -82840,13 +67742,13 @@ xCM kcH rHw rHw -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle cUl crx aDI @@ -82860,14 +67762,14 @@ dcM cwF dvo csG -cQm -rbM +hFs +fif jcK -pFY -pFY -pFY -pFY -dag +nGX +nGX +nGX +nGX +mHx dTs dTs dTs @@ -82890,38 +67792,38 @@ acu acu dTs dTs -abl -aca +nBJ +oTW ach ach ahD adV aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +esI +eLU +eLU +wHz +wHz +eLU +eLU +lYq aWY -aWN -aXJ -aYr -aYr -aYr +kvE +iUf +hrA +hrA +hrA aZC -aZV -bat -baF -baS +uaf +kvX +uGX +vEs aZC -aYm -aYF -bsE -bsE -aZb +sSG +tjb +sut +sut +mMs bdf bdf bdf @@ -82931,57 +67833,57 @@ bdg dKi bdg bdf -bgg -aoG +kwA +qDO akp aqg aqg asa -akz -aEF -aFt -mlK -mlK -mlK -mlK -asr +vrq +jIX +uCQ +kep +kep +kep +kep +uhu bkU -bnp -bnZ -bnZ -bzK -bnZ -bMG +juQ +vAg +vAg +stT +vAg +odv bkU -avE -bpL +sfs +vGp brQ bsC btA buS -bqO +gYI bxq dTs dTs -agB -aRR -bCo -bDg -cbl -bxr +vxd +gWT +xPN +eYh +oil +sDP bPx -bHY -bJm -bHa -ciT -csL -ciT -bJm -bOm +hXV +kZT +pWA +gwS +ixK +gwS +kZT +sdy bHc bHc -bHa -cFZ +pWA +sXp bHc bLq bLq @@ -82989,21 +67891,21 @@ bVq bVq bVq bVq -age -age -age -age -bbx +lGm +lGm +lGm +lGm +tzQ afu afd -bVl +pDj afC -cuK +xoh cfj cfS cgz che -cvA +jhz agd atr atl @@ -83015,19 +67917,19 @@ adt ceF cgA cik -csy -cEb -cPY +xJM +mJx +iUU cij cgA cQR cRt cRH cRY -cfJ -oua -oua -tLo +jcI +lPR +lPR +hYt dTs dTs dTs @@ -83043,20 +67945,20 @@ dTs dTs dTs dNS -taH -xFk -dNp -dNp -dNp -dNp -dNp -dNp -dNp -dNp +nkr +iPx +qLl +qLl +qLl +qLl +qLl +qLl +qLl +qLl dTs dTs dTs -cLa +gCi duc drN doE @@ -83064,8 +67966,8 @@ cuM crx crx csG -cTC -cJo +uDh +vqp rHw cJU rHw @@ -83074,13 +67976,13 @@ rHw rHw cJS rHw -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle cUl crx cwD @@ -83094,13 +67996,13 @@ dcP dvo dvo csG -cQm -rbM -mHV +hFs +fif +yjU xIC xIC xHa -fqt +ndE dTs dTs dTs @@ -83124,49 +68026,49 @@ acu acu dTs dTs -abl -aca +nBJ +oTW ach ach ahD adV aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +esI +eLU +eLU +wHz +wHz +eLU +eLU +lYq aWY aWY aWY -aYs -aYr -aYr +ipy +hrA +hrA aZC -fAI -aZY -aZY -aZY +rht +wUM +wUM +wUM aZC -aYj -bxe -bvX -bsE -btL -bai -bai -bcV -bai +sQx +juC +nnC +sut +xrS +sLO +sLO +nXV +sLO aZP -ame -ame -ame -ame -bgg -aoG +eWB +eWB +eWB +eWB +kwA +qDO apz akN ara @@ -83179,44 +68081,44 @@ auy auy auy blE -bPV +lqR blE blE blE blE blE blE -bPV +lqR blE bpI brR bpJ btz buS -bqP +onh bxq bxq -afB -afB -aTw -bCo -bDg -cbm -bxr +dpR +dpR +gpE +xPN +eYh +dna +sDP bGX -bHZ -bJm -osV -cqF -csM -ciT -bJm -bOn +rkF +kZT +qeQ +rsZ +lvN +gwS +kZT +oPk bHc -bQg -ciT -ciT -bTd +rmK +gwS +gwS +nCO bLq dTs dTs @@ -83227,17 +68129,17 @@ dTs agO agO agO -baZ +gbj afd afd -bVl +pDj afC -cuK +xoh cfj wzl bJE che -cvA +jhz agm atr atl @@ -83249,19 +68151,19 @@ adt ceH cgy cil -cvq -cFt -cPZ +iGX +qtV +sGf cil cgA cQS cRs cQR cgy -cjh -cpn +jzC +eOW cvp -opZ +nkz dTs dTs dTs @@ -83278,28 +68180,28 @@ dTs dTs dTs dTs -dNp -dNp -dNp -dNp -dNp -dNp +qLl +qLl +qLl +qLl +qLl +qLl dTs dTs dTs dTs dTs dTs -cLv -cGi +qlO +fOY doE doE cuM crx crx csG -cTC -cJo +uDh +vqp rHw cJV rHw @@ -83308,13 +68210,13 @@ rHw rHw cJU rHw -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle cUl crx cwD @@ -83328,13 +68230,13 @@ cMJ cMJ cMJ cTc -cQm -rbM -mHV +hFs +fif +yjU xIC xIC -fqt -vSF +ndE +kyr dTs dTs dTs @@ -83358,49 +68260,49 @@ acu acu dTs dTs -abl -aca +nBJ +oTW ach ach -agt -axm +unR +pir aGz -aHm -aIf -aIf -aIf -aIf -aIf -aIf -aLN +esI +eLU +eLU +eLU +eLU +eLU +eLU +lYq aWY -aWN -aXJ -aYt -dJK -aYt +kvE +iUf +irr +rad +irr aZC -aZX -bau -baG -baT -bbl -bbf -bxm -byB -bsJ -bsE -bsE -bsE -bsE -aYk -aZA -aky -alo -bfB -bfJ +sCg +mfh +gqu +rMK +txA +jiF +rQO +kFO +vad +sut +sut +sut +sut +uxo +sMl +gds +qSE +aWu +rjU bgh -aoG +qDO apz aki aqg @@ -83413,44 +68315,44 @@ aqg aqg aDb bkW -bTk +lFn blF bkW bkW blF bkW bkW -bTk +lFn bkW bpJ brS bpJ btz buS -bqP -bxr -byv -bzF -bzF -bzF -bCp -bDg -cbm -cbU +onh +sDP +btO +gkQ +gkQ +gkQ +sdT +eYh +dna +sZR bPx -fPp -bJm -ciT -bLm -bMi -ciT -ckL -bOo +esc +kZT +gwS +rmt +nDH +gwS +oNr +wAC bHc -bQg -bHa -ciT -bTe +rmK +pWA +gwS +fBy bLq dTs dTs @@ -83462,21 +68364,21 @@ dTs dTs dTs dTs -bRh -bRh -bVm +gyC +gyC +jFR afC -cuK +xoh cfj wzl bJE che -cvA +jhz dTs dTs dTs adt -aeD +mqf aqc caW adt @@ -83494,9 +68396,9 @@ cRI adw lNu lNu -cTr -opZ -qKA +meK +nkz +kPx dTs dTs dTs @@ -83513,10 +68415,10 @@ dTs dTs dTs dTs -dNp -dNp -dNp -dNp +qLl +qLl +qLl +qLl dTs dTs dTs @@ -83525,15 +68427,15 @@ dTs dTs dTs dTs -csB +eMf doE doE cuM cvJ crz csG -cTC -cJo +uDh +vqp rHw rHw cJW @@ -83542,32 +68444,32 @@ rHw rHw cJV rHw -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle cUl cvJ dmJ csG -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -rbM -mHV +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +fif +yjU tii xIC -ulg +xnd dTs dTs dTs @@ -83592,21 +68494,21 @@ acu acu dTs dTs -abK -aca +hBv +oTW ach ach ach -axn +cju aGA -aHn -aIf -aIM -aJs -aJs -aKZ -aIf -aLM +rYh +eLU +sRa +xop +xop +oXW +eLU +hot aWY aWY aWY @@ -83614,27 +68516,27 @@ aWY aWY aWY aZC -aZY -bav -aZY -aZY +wUM +tht +wUM +wUM aZC -aYl -bxy -btH -bsJ -bsE -bAn -dJZ -dKb -bsE -aYk -akz -alp -bfC +kOX +ecQ +tMt +vad +sut +vpw +uLB +mqw +sut +uxo +vrq +vpy +ujK bfK -alp -avC +vpy +iDG apz aki aqg @@ -83647,44 +68549,44 @@ aqg aqg aDc bkW -bTk +lFn blG bkW bkW blG bkW bkW -bTk +lFn bkW bpJ bAr bpJ btz buS -bqQ -bxs -byw -byw -bSO -bSO -bSO +wdH +lGF +qoI +qoI +oGa +oGa +oGa bXU -cbm -cbU +dna +sZR bPx -fPp -bJm -ciT -dDD -bMj -ciT -ckL -bOp +esc +kZT +gwS +hDq +wUa +gwS +oNr +rRQ bHc -cBo -ciT -ciT -bTf +prg +gwS +gwS +fOH bLq dTs dTs @@ -83698,14 +68600,14 @@ dTs dTs dTs aWd -bhM +iOv afE -cuK +xoh cfj cfS cgz che -cvA +jhz dTs dTs dTs @@ -83726,11 +68628,11 @@ cQT cRA cij cRZ -tUF +vzn lNu -eHi -opZ -qKA +uaW +nkz +kPx dTs dTs dTs @@ -83747,9 +68649,9 @@ dTs dTs dTs dTs -dNp -dNp -dNp +qLl +qLl +qLl dTs dTs dTs @@ -83759,15 +68661,15 @@ dTs dTs dTs dTs -csB +eMf doE doE cuM crx crx csG -cTC -cJo +uDh +vqp rHw rHw rHw @@ -83776,32 +68678,32 @@ rHw rHw rHw rHw -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle cUl crx cwD csG -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -cQm -rbM -mHV +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +hFs +fif +yjU xIC -fqt -xkK +ndE +xwP yii dTs dTs @@ -83825,48 +68727,48 @@ acu (79,1,1) = {" acu dTs -abl -abM -acb +nBJ +sUq +kSa ach ach ach axJ aGz -aHo -aIf -aKV -aJt -aJt -aLc -aIf -aIO +faw +eLU +xeY +eSA +eSA +kWD +eLU +hOB aGz -akv -aeA -aev +oLX +iCd +qEx dTs dTs aZC -aZZ -bav -aZY -kin +eZs +tht +wUM +vkw aZC -aYm -bpz -bsJ -aYX -aZw -aZw -aZw -aZw -aZw +sSG +uBM +vad +tUP +pNL +pNL +pNL +pNL +pNL aZR -ame -ame -ame -bfL +eWB +eWB +eWB +ovj aNn auy aks @@ -83881,44 +68783,44 @@ auz auz auz bkX -bXC +ydU bkX bkX bkX bkX bkX bkX -bXC +ydU bkX bpK bpK bpK btC buU -bqU -bvr -bxt -bxt -bSP -bSP -bSP +xyW +rGy +enu +enu +jlz +jlz +jlz bDc -cbl -cbU +oil +sZR bPx -vto -ckL -ciT -cqI -khO -ciT -ckL -cwT +vlo +oNr +gwS +jdJ +tiO +gwS +oNr +gwU bHc -bHW -ciT -ciT -bTe +jtN +gwS +gwS +fBy bLq dTs dTs @@ -83932,9 +68834,9 @@ dTs dTs dTs dTs -qKe +xBy agd -cuK +xoh cfj wzl bJE @@ -83944,11 +68846,11 @@ dTs dTs dTs adw -ahW -bkL -ccc -cdr -ceL +pNW +rJv +mPf +wmc +hWT cgy ckq cvu @@ -83960,11 +68862,11 @@ cQU cRx cij cRZ -pij +ihv lNu -eHi -opZ -mMm +uaW +nkz +hMd dTs dTs dTs @@ -83981,9 +68883,9 @@ dTs dTs dTs ebs -rUA -rUA -rUA +lpe +lpe +lpe ebs dTs dTs @@ -83992,16 +68894,16 @@ dTs dTs dTs dTs -csA -cGv +tae +pIb doE doE cuM crx crx csG -cTC -cJo +uDh +vqp cJq rHw rHw @@ -84010,31 +68912,31 @@ rHw rHw rHw rHw -cKi -doj +omj +kbc doE cKp doE doE -cLP +sle dUO dvo cwD csG -cWx -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cUh -cPr -mHV -fqt -vSF +okL +lCF +lCF +lCF +lCF +lCF +lCF +lCF +lCF +lCF +tBi +yjU +ndE +kyr yii yii dTs @@ -84059,38 +68961,38 @@ acu (80,1,1) = {" acu dTs -abl -aca +nBJ +oTW ach ach ach ach axJ aGz -aHp -aIf -aIN +gwW +eLU +iKK aJu aJu -aLc -aIf -aIf -aMa -aaS +kWD +eLU +eLU +srQ +cPb aej aeC dTs dTs aZC -baa -baw -aZY -kin +uNi +hxH +wUM +vkw aZC -buZ -brK -bsE -bbX +ovM +oCO +sut +lBQ bcT bcT bcT @@ -84100,59 +69002,59 @@ bcT bcU bcU bcT -bfL +ovj apz aqg aki aki aki asa -aky -bip -bcD -bcD -bcD -bcD -bdA -asN +gds +sDJ +idV +idV +idV +idV +bkQ +mGt bkU -aiT -aiU -aiU -aiU -aiU -bbQ +kdg +jmk +jmk +jmk +jmk +uMA bkU -avR -bfj -bfj -bfj -bfT -bfU +qcQ +xsa +xsa +xsa +rRl +mOH bwd -bxu -byy -byy -byy -byy -bWb -bFQ -cbl -cbU +sHx +joQ +joQ +joQ +joQ +eso +qnI +oil +sZR bPx -vto -bJm -ciT -ciT -bMg -ciT -bHa -ciT -bPh -bHa -ciT -ciT -bOm +vlo +kZT +gwS +gwS +ext +gwS +pWA +gwS +vxL +pWA +gwS +gwS +sdy bLq dTs dTs @@ -84166,9 +69068,9 @@ dTs dTs dTs dTs -bba +mqI agd -cuK +xoh cfj wzl bJE @@ -84178,11 +69080,11 @@ dTs dTs dTs adw -ahW -aYh -ccI -fpn -ceM +pNW +fZq +nAJ +uaX +xAH chK cmp cxf @@ -84196,8 +69098,8 @@ cij adw lyw lNu -eHi -cTs +uaW +fYd lNu dTs dTs @@ -84215,9 +69117,9 @@ dTs dTs dTs dTs -dNp -dNp -dNp +qLl +qLl +qLl dTs dTs dTs @@ -84226,7 +69128,7 @@ dTs dTs dTs dTs -csB +eMf doE doE doE @@ -84234,8 +69136,8 @@ cuM cvJ crz csG -cTC -cJo +uDh +vqp cJw rHw rHw @@ -84244,30 +69146,30 @@ rHw rHw rHw cKe -cKi -doj +omj +kbc doE cKr doE doE -cLP +sle dUO dVb cwE csG -cTD -cTG -cTG -cTG -cTG -cTG -cTG -cTG -cTG -cTG -sNQ -yfp -ulg +qof +pqt +pqt +pqt +pqt +pqt +pqt +pqt +pqt +pqt +snc +wpd +xnd yii yii yii @@ -84293,100 +69195,100 @@ acu (81,1,1) = {" acu dTs -abK -aca +hBv +oTW ach ach ach ach -axO +mFK aGz -aHq -aIf -aIN +tdL +eLU +iKK aJu aJu -aLb -aIf -aIf -aMb -adO +iaG +eLU +eLU +gcP +iSa aek aeM -akt +sQj dTs aZC -fAI -aZY -aZY -aZY +rht +wUM +wUM +wUM aZC -buO -byz -byE -aZc +cNJ +gqr +weu +lhw bcU -bdi -bdG -bed -bet -beJ -bfb -bfb +eIA +xRt +fyj +uzQ +vas +gGV +gGV bcU -bfL +ovj apz dKg aki aqg aki asa -bhX -biq +pBJ +fEk aiZ aiZ -aqy -ars +saA +pfS dTs dTs bkU -adu -adu -adu -adu -adu -adu +fwF +fwF +fwF +fwF +fwF +fwF bkU -avS -aia -aia -aia -afA -dTs -dTs -dTs -afA -afA -afA -aTF -bCo -bWc -cbm -cbU +jls +bBC +bBC +bBC +eFf +dTs +dTs +dTs +eFf +eFf +eFf +hiq +xPN +wTH +dna +sZR bGX -jlq -ckL -bHa -ciT -bMg -ciT -ciT -ciT -ciT -ciT -ciT -ciT -bOm +tLh +oNr +pWA +gwS +ext +gwS +gwS +gwS +gwS +gwS +gwS +gwS +sdy bLq dTs dTs @@ -84399,10 +69301,10 @@ dTs dTs dTs dTs -qKe +xBy agd agd -cuK +xoh cfj cfS cgz @@ -84413,10 +69315,10 @@ dTs dTs adw adw -aYW -cdq -cdZ -ceN +qiK +laa +guW +seQ cgy cij cil @@ -84430,12 +69332,12 @@ cil but lNu lNu -eHi -opZ +uaW +nkz lNu kbo lNu -mMm +hMd dTs dTs dTs @@ -84449,18 +69351,18 @@ dTs dTs dTs dTs -dNp -dNp -dNp -cGO -ibU +qLl +qLl +qLl +kam +vqd dTs dTs dTs dTs dTs dTs -csB +eMf doE doE doE @@ -84468,8 +69370,8 @@ cuM crx crx csG -cTC -cJo +uDh +vqp cJO rHw rHw @@ -84478,18 +69380,18 @@ rHw rHw rHw cKf -cKi -doj +omj +kbc doE cKr dNS dNS -iri +huE bYV rdW bCO fdk -hOK +oqK dsJ dsJ dil @@ -84527,22 +69429,22 @@ acu (82,1,1) = {" acu dTs -abM -acb +sUq +kSa ach ach ach -acH -adE +aXH +kaR aGz -aHr -aIf -aIN -fqI -abI -aLc -aIf -aIM +oBw +eLU +iKK +dtD +tUz +kWD +eLU +sRa aGz aez aem @@ -84550,16 +69452,16 @@ aeM dTs dTs aZC -fAI -aZY -aZY -aZY -bbm -bsE -brK -aYk -aYk -bcr +rht +wUM +wUM +wUM +kVv +sut +oCO +uxo +uxo +ggj bdj bdj bdj @@ -84568,18 +69470,18 @@ beK bdj dKf bcU -bfL +ovj apz aqg aki akN ara asa -bdW +mBt aiZ -aqy -ars -axY +saA +pfS +eol dTs dTs dTs @@ -84588,7 +69490,7 @@ dTs dTs dTs adI -aer +lyv bkU bkU bkU @@ -84600,26 +69502,26 @@ dTs dTs dTs dTs -agB +vxd aGP -aRR -bCo -bWc -cbm -cbV +gWT +xPN +wTH +dna +hNP bPx -bHW -ckQ -ciT -ciT -bMg -ciT -sdu -cwc +jtN +vUW +gwS +gwS +ext +gwS +gte +iYr bHc -bQk -bQk -bSi +nBq +nBq +ihL bLq bLq dTs @@ -84633,10 +69535,10 @@ dTs dTs dTs dTs -qKe +xBy agd agd -cuK +xoh cfj wzl bJE @@ -84646,11 +69548,11 @@ dTs dTs dTs adw -aku -bcn -ccc -cdZ -ceN +oTV +uTV +mPf +guW +seQ cgy cij cxg @@ -84664,8 +69566,8 @@ cij but lNu lNu -eHi -opZ +uaW +nkz lNu xLS cAc @@ -84673,7 +69575,7 @@ mAr rUK lNu aFQ -aHh +cZI dTs dTs dTs @@ -84682,19 +69584,19 @@ dTs dTs dTs dTs -cGO -dNo -cGO -ibU -cMo +kam +hBP +kam +vqd +eUJ dNS -kkm -dNo +mvW +hBP dTs dTs dTs -cGO -cMo +kam +eUJ dNS dNS dNS @@ -84702,35 +69604,35 @@ pva rdW rdW fdk -hOK -cJp -cJP -cJP -cJP -cJP -cJP -cJP -cJP -cKh -cKn -doj +oqK +oCN +bze +bze +bze +bze +bze +bze +bze +ffl +ofF +kbc doE cKr dNS dNS -iri +huE bYV hzC bCO fdk -eaX +xHj dsJ mbl dto dto dtp dtp -dxW +nGD dsJ dTs dTs @@ -84761,57 +69663,57 @@ acu (83,1,1) = {" acu dTs -aca +oTW ach ach ach ach ahD -adW +xBV aGA -aHs -aIf -aIO -aJw -aJw -aIL -aIf -aLM +fNF +eLU +hOB +waz +waz +tsd +eLU +hot aGA aez aem aeM aez -akv +oLX aZC -fAI -aZY -aZY -aZY +rht +wUM +wUM +wUM aZC -bva -byA -btI -btI -bcE +oRt +fJZ +gtA +gtA +xBd bdk dKa -bee -beu -beL -bfc +oRL +sPh +okD +wGJ bdj bcU -bfL +ovj apz aki aki aki aqg asa -bdW +mBt aiZ -axZ +uzO dTs dTs dTs @@ -84835,21 +69737,21 @@ dTs dTs dTs aGP -agB -aRR -bCo -bWc +vxd +gWT +xPN +wTH bEw -ctt -bHb -bHa -ckT -ciT -cqJ -ctP -ciT -ckL -cwU +bPu +lUm +pWA +omI +gwS +rGO +pKG +gwS +oNr +lYz bHc bQl bRo @@ -84860,31 +69762,31 @@ dTs dTs aEa aEa -aCS -aCS +aEa +aEa aEa aEa dTs acw atl -qKe +xBy agd cdp -cvm +gSY cfj wzl bJE chj -arS +pMH dTs dTs dTs adw -aku -bkL -cdq -cea -ceO +oTV +rJv +laa +xnw +fJX cgA cij cxh @@ -84898,8 +69800,8 @@ cRI adw lNu lNu -eHi -opZ +uaW +nkz xLS cAc eJh @@ -84915,19 +69817,19 @@ dTs dTs dTs dTs -aHw -cMo -kkm -cMo +vvQ +eUJ +mvW +eUJ dNS dNS jfA dNS -kkm -dNo -dNp +mvW +hBP +qLl dTs -cMl +uFt dNS dNS dNS @@ -84936,23 +69838,23 @@ pva sLx wya fdk -cIk -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cMM -cKT +dlk +glP +glP +glP +glP +glP +glP +glP +glP +glP +glP +fWg doE cKr dNS dNS -iri +huE bYV sLx bED @@ -84964,7 +69866,7 @@ dtp dtp dtp dtp -dxW +nGD dsJ dTs dTs @@ -84995,22 +69897,22 @@ acu (84,1,1) = {" acu dTs -aca +oTW ach ach ach -acH -acP +aXH +fwS agE aGz -aHm -aIf -aIf -aIf -aIf -aIf -aIf -aLN +esI +eLU +eLU +eLU +eLU +eLU +eLU +lYq aGz adZ aem @@ -85018,33 +69920,33 @@ aeM anE aez aZC -fAI -bax -baH -baV +rht +hCc +nuy +rka aZC -aYm -byB -bsE -aYX +sSG +kFO +sut +tUP bcU bdj bdI -bef +tJr bev bev bfd bdj bcU -bfL +ovj apz aki aqg aki aki asa -bdW -aqy +mBt +saA dTs dTs dTs @@ -85070,20 +69972,20 @@ dTs dTs dTs aIq -aRR -bCo -bWc +gWT +xPN +wTH bEw -ctu -bHa -ciT -ciT -ciT -ciT -bHa -bHa -bNp -bOs +qVy +pWA +gwS +gwS +gwS +gwS +pWA +pWA +hbS +qlf bLq bLq bLq @@ -85093,32 +69995,32 @@ dTs dTs dTs aEa -aCD -aCT -aDd -aDn +gGB +tkg +mIV +lFe aEa -aDt +ozX acw atl -acx +pKr cdp cyv -bGn +nEt cfj cfS cgz cAT -cBI +jse atr dTs dTs adw adw -buk -bum -ceb -ceP +kdH +jJn +nWG +ikD cgA cij cxi @@ -85132,8 +70034,8 @@ cij but sHk lNu -cTr -opZ +meK +nkz cTh tAy eJh @@ -85158,10 +70060,10 @@ dNS dNS dNS dNS -kkm -ibU -ibU -cMo +mvW +vqd +vqd +eUJ dNS dNS dNS @@ -85170,7 +70072,7 @@ pva rdW rdW fdk -cJm +xAS doE doE cuO @@ -85186,7 +70088,7 @@ doE cKr dNS dNS -iri +huE bYV rdW bCO @@ -85229,22 +70131,22 @@ acu (85,1,1) = {" acu dTs -abr +rFl acz ach ach ahD -ahY -adY +fYz +jJO aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +esI +eLU +eLU +wHz +wHz +eLU +eLU +lYq aGz aez aem @@ -85258,26 +70160,26 @@ aZC aZC aZC aZP -bbU -bbW +nUn +ezQ aZP bcT -bdm +wAt bdj -beg +nni bew bew bfe bdj bcT -bfL +ovj apz dKh aki aql ali asa -bdX +tKW dTs dTs dTs @@ -85305,19 +70207,19 @@ bpM bpM bzH bzH -bCq -bWc -ctj -cbU +umu +wTH +xQU +sZR bPx -bId -ckV -cqy -bKy -bId -bMP -bMP -bOt +tbm +gcS +nlm +feC +tbm +flo +flo +wtU bLq dTs dTs @@ -85327,32 +70229,32 @@ dTs dTs dTs aEa -aCE -aCU -aDg -aDo +kNu +eon +mIV +mYQ aEb -aDu +gmP acw acw -aDJ -aDK +sPW +typ cyD -aDQ +siW bgn cAM bgm bha -aFB +oJU acw dTs dTs adw -ahW -bum -bum -ceb -ceN +pNW +jJn +jJn +nWG +seQ cgy cng cij @@ -85366,8 +70268,8 @@ cij but lNu lNu -eHi -opZ +uaW +nkz jlP drh dud @@ -85404,7 +70306,7 @@ pva rdW rdW fdk -cJT +iCr cKp cKr cKr @@ -85420,7 +70322,7 @@ cKr cKp dNS dNS -iri +huE bYV rdW lyB @@ -85435,8 +70337,8 @@ dtp dto dyb bgd -ebJ -dWM +kCc +nwp dyb dTs dTs @@ -85463,22 +70365,22 @@ acu (86,1,1) = {" acu dTs -abs -aca +eJM +oTW ach ach ahD ahZ -aza +lBE aGz -aHm -aIf -aIf -aJr -aJr -aIf -aIf -aLN +esI +eLU +eLU +wHz +wHz +eLU +eLU +lYq aGz qxv aem @@ -85487,31 +70389,31 @@ dTs dTs dTs dTs -ahu -ait -aja +jJm +jzn +cLx aJm -ajS -bbY -apO -ame +fHn +qPg +taZ +eWB bcT bdn bdj -beg +nni bew bew bfe bfq bcT -bfL +ovj apz aqg akA aki aki asa -bdV +ipE dTs dTs dTs @@ -85535,14 +70437,14 @@ dTs dTs bpM bpM -btF -brU -bAy +pVk +uHG +uMn bzH -bxr -bWc -ctj -cbU +sDP +wTH +xQU +sZR bHc bHc bHc @@ -85561,32 +70463,32 @@ dTs dTs dTs aEa -aCF -aCU -aCU -aCU +tkg +eon +eon +eon aEb -aDu -aSW +gmP +nLI acw acw acw -czk +eyF acw -czR -cAb -cAO -cBc +siF +plG +ubx +mST acw acw dTs dTs adw -ahW -bum -bum -bum -bum +pNW +jJn +jJn +jJn +jJn cgy coy cgy @@ -85600,8 +70502,8 @@ adw adw mkJ xLS -eHi -opZ +uaW +nkz lDT iOa kWh @@ -85609,52 +70511,52 @@ lNu lNu lNu aFQ -aHj +lTg cqn -cQE -cRW -cSh -cQE -cQE +gms +wbW +wzE +gms +gms cqn -aHY -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -cMi +fFn +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +nsC aRQ sLx wya fdk -cWy -cJR -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -dpc -iPJ +mhs +ngu +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +yda +rIq bYV sLx glx @@ -85669,8 +70571,8 @@ dtp dto dyb bgk -dAn -dAn +hqD +hqD dyb dTs dTs @@ -85697,22 +70599,22 @@ acu (87,1,1) = {" acu dTs -abl -aca +nBJ +oTW ach ach ahD ahC azQ aGA -aHl -aIf -aIf -aIf -aIf -aIf -aIf -aLM +qEX +eLU +eLU +eLU +eLU +eLU +eLU +hot aGA dTs aem @@ -85722,31 +70624,31 @@ dTs dTs dTs dTs -air -aiY +vDn +wGF aiZ -ajS -aMO -aoG -ame +fHn +hhV +qDO +eWB bcU qbC bdj -beg +nni bew bew bfe bdj bcU -bfL +ovj apz aqg akA aki aki asa -bdW -axZ +mBt +uzO dTs dTs dTs @@ -85768,15 +70670,15 @@ dTs dTs bpM bpM -bxv -bRQ -bRR -bAz +fMu +qVv +oAi +fhK byC -bxr -bWc -cbm -cbU +sDP +wTH +dna +sZR bHd bIe cnv @@ -85795,25 +70697,25 @@ dTs dTs dTs aEa -aCH +aCJ aCI aDh aCJ aEb -aDu -aSW -aSW +gmP +nLI +nLI acw -aDM +hsG cyD -cEn +sKb bgn cAM bgm bha -cBT +cBO acw -wrl +cmd dTs adw adw @@ -85834,23 +70736,23 @@ adw lNu cAc mAr -eHi -opZ +uaW +nkz lNu -cEd -tUF +kQP +vzn sYp qbW qbW aGa aHu -csz +gkD cQF cQF cQF cQF cQF -csz +gkD cQF wgi wgi @@ -85903,7 +70805,7 @@ dtp dxX dyb dyb -dBi +eOT dyb dyb dTs @@ -85931,22 +70833,22 @@ acu (88,1,1) = {" acu dTs -abl -abr +nBJ +rFl acz ach -agt -afx +unR +qEG agE aGz -aHt -aIg -aKZ -aIf -aIf -aIM -aIg -aLO +mRa +kwT +oXW +eLU +eLU +sRa +kwT +ofT aGA dTs aem @@ -85956,32 +70858,32 @@ dTs dTs dTs dTs -ais +nQo aiZ aiZ -ajS -aMO -aoG -ame +fHn +hhV +qDO +eWB bcU bdp bdj -beh +uKW bex bex bfd bdj bcU -bfL +ovj aIK auz aIJ aql ali asa -bdW -apu -amP +mBt +ykk +vvF dTs dTs dTs @@ -86001,16 +70903,16 @@ dTs dTs dTs bpM -bwf -btG -bRR -bRR -bAz +ebw +mFh +oAi +oAi +fhK byC -bxr -bWc -cbm -bxr +sDP +wTH +dna +sDP bHd bIf bIf @@ -86040,12 +70942,12 @@ aDG cyD cyD cyD -cEv +sMp bgn cAN cAP bha -cCG +jpg cDN dTs dTs @@ -86057,9 +70959,9 @@ aoz aoz aoz aoz -qlU -cTr -cTs +ksL +meK +fYd sHk lNu lNu @@ -86068,23 +70970,23 @@ mkJ cAc eJh faE -eHi -opZ -bqc -kTX -qlU +uaW +nkz +iqE +iUr +ksL igf vqt eft cSb cSb -cyf +peH cQP cSb cQP cQP cSb -cSL +omV cSb rdW rdW @@ -86129,16 +71031,16 @@ gEj pzv kJP dsJ -dtt +iaR dtp dWi dWi dtp dxY dyb -ebJ -dAn -dWH +kCc +hqD +edW dyb dyb dTs @@ -86165,57 +71067,57 @@ acu (89,1,1) = {" acu dTs -aaU -abs -abr +wef +eJM +rFl acz -acH -acP +aXH +fwS agE aGz aGz aGA aGz -aIf -aKp +eLU +rPd aGz aGA aGA aGA -aev +qEx aem aeM -akv +oLX dTs dTs dTs -amP -aiY -ajR -ajb -afZ -bbZ -bcs -ame +vvF +wGF +hkY +iOz +eQU +qOz +kLY +eWB bcU qbC bdj -bei -bey -bey -dKd +dyF +fHj +fHj +lru bdj bcU -bfM -aNp -apO +fZz +iSm +taZ apz aqg aqg asa -bdW +mBt aiZ -aqy +saA dTs dTs dTs @@ -86235,16 +71137,16 @@ dTs dTs dTs bpM -bwg -bpP -bEG -bEG -bAz +dky +gBL +iIh +iIh +fhK byC -bxr -bWc -cbm -bxr +sDP +wTH +dna +sDP bHe bIf bIf @@ -86274,12 +71176,12 @@ aDx bNg cyD cyD -cEv +sMp bgn cAM bgm bha -cCG +jpg cDN ncm dTs @@ -86291,9 +71193,9 @@ aoz aoz aoz aoz -qlU -cTr -opZ +ksL +meK +nkz lNu lNu lNu @@ -86302,23 +71204,23 @@ iOa tAy eJh lKW -eHi -opZ -qKA +uaW +nkz +kPx awk -qlU +ksL igf eft foq cSc cSc -cMB +sWp cRd cSc cRd cRd cSc -cSM +cbQ cSc oBR oBR @@ -86361,19 +71263,19 @@ vIx rdW rdW fdk -eba +uNS dsJ ebx -eau -eaT -ece -ecw +ukw +dGK +vxl +esy ecA -eed -ecH -ecH -ecM -dCF +sYm +exk +exk +uOx +ffM dyb dTs dTs @@ -86400,20 +71302,20 @@ acu acu dTs dTs -aaU -abs -abr -acP -ahY -aAB -axi -aCd -aev -hTr -ahF -ajK -ahh -ahh +wef +eJM +rFl +fwS +fYz +stK +gEz +pGX +qEx +vrs +jbN +yfR +wZV +wZV dTs dTs aez @@ -86423,13 +71325,13 @@ aez dTs dTs dTs -ajb -ajb -afZ +iOz +iOz +eQU aAE aiu -bca -bct +riQ +ndz amf bcU qbC @@ -86440,16 +71342,16 @@ bdj bdj bdj bcU -bfN -ame -aoE +jwQ +eWB +xfg apz aki aqg asa -bdW +mBt aiZ -apu +ykk dTs dTs dTs @@ -86469,16 +71371,16 @@ dTs dTs dTs bpM -bwh -bqW -bRS -bpP -bAA +xQp +wgo +mkI +gBL +jBA bzH -bxr -bWc -cbm -bxr +sDP +wTH +dna +sDP bHd bIf bIf @@ -86508,12 +71410,12 @@ aDx aDx cyD cyD -cEv +sMp bgn cAM bgm bha -cCG +jpg cDN dTs dTs @@ -86525,9 +71427,9 @@ aoz aoz aoz aoz -qlU -eHi -opZ +ksL +uaW +nkz lNu pal lNu @@ -86536,23 +71438,23 @@ cqq drh lKW wav -eHi -opZ -qKA -wgv -pij +uaW +nkz +kPx +gmx +ihv igf eft jmd aGe cRJ -cNz +ooM cRJ cRJ cRJ cRJ cRJ -cNz +ooM cRJ kJP kJP @@ -86595,19 +71497,19 @@ kJP kJP kJP fCB -hOK -eeD -dtu -dVL -dVS -ecf -dtu +oqK +oRp +wma +hdS +iot +pbB +wma dtp dyb -dAn -vxt -ecN -dwl +hqD +ufq +jMR +vre dyb dTs dTs @@ -86635,18 +71537,18 @@ acu dTs dTs dTs -aaU -acD -acD -ahH -aep -aeA -aev -abR -ajT -vCE -ajL -ahh +wef +jLR +jLR +iSq +jTa +iCd +qEx +maN +gvP +afr +fOv +wZV dTs dTs dTs @@ -86654,16 +71556,16 @@ uvf aem aeM aYx -akv +oLX dTs dTs dTs -baI +iIZ aiu akB aiZ -bcb -bcu +tRw +llF amg bcT bcU @@ -86674,18 +71576,18 @@ bcU bcU bcU bcT -bfN -ame -aoE +jwQ +eWB +xfg apz aql ara asa -bdW +mBt aId aiZ -apu -apt +ykk +pbG dTs dTs dTs @@ -86703,16 +71605,16 @@ dTs dTs dTs bpM -bwi -bpP -bSc -bSK -bzG -bBt -byx +mnq +gBL +laO +vPi +vTL +vfL +cdY bYG -ctl -bFP +dZj +vfI bHd bIf bIf @@ -86737,17 +71639,17 @@ aCw aCI aEa aDA -aDF -aDH +sTS +rts acw -aDN +uCo cyD -aDR +ahL bgn cAN cAP bha -cEP +vSx dTs dTs dTs @@ -86755,93 +71657,93 @@ dTs dTs aoz aoz -wgv -sia +gmx +smh aoz -wgv -pij -ekH -cFs -cRC -kLf -cSH -kLf -kLf -kLf -kLf -kLf -cTH -gea -mMm -pij +gmx +ihv +dGj +nPX +qYl +oye +tvS +oye +oye +oye +oye +oye +qRM +xro +hMd +ihv lNu igf rFU jMT aGx -aHv +tyd cqn -cRK -cSd -cSE -cSE -cSG +jza +dxQ +hMw +hMw +kmz cqn -aIc -gdW -gdW -gdW -gdW -gdW -gdW +gfg +oRW +oRW +oRW +oRW +oRW +oRW bYV sLx wya fdk -dKS -hBr -hBr -cYP -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -cYP -hBr -cUj -cUj -cUj -cUj -cUj -jpa +jdm +sSe +sSe +uAN +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +uAN +sSe +jxh +jxh +jxh +jxh +jxh +pKT bYV rdW lyB fdk uFX -cUj -cUj -cUj -cUj -oQx +jxh +jxh +jxh +jxh +vwN dsJ dtp -dVL -dVS -ecf -dtu +hdS +iot +pbB +wma ebD dyb -dty -dWH -ecO -dwl +wfo +edW +hTx +vre dyb dTs dTs @@ -86872,54 +71774,54 @@ dTs dTs dTs dTs -aaS -abc -abp -abp -abV -ajg +cPb +xVV +rgw +rgw +rbL +lET aih -ajL +fOv dTs dTs dTs -cPt +eHb bRn aem aeM aez aez -akv +oLX dTs dTs -aiY +wGF aiZ aiZ -ajR -bcc -bcv -bcF -bcX -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bdq -bfO -ame -aoE +hkY +uzK +dte +tof +vBO +oBp +oBp +oBp +oBp +oBp +oBp +oBp +oBp +jcF +eWB +xfg apz aki aki asa -bdW +mBt bcy aiZ aiZ -apu +ykk dTs dTs dTs @@ -86937,16 +71839,16 @@ dTs dTs dTs bpM -bwj -bEG -bvb -bEG -bEG -bEG -bCr +vzZ +iIh +ltJ +iIh +iIh +iIh +nnR bYZ -cbm -bxr +dna +sDP bHd bIg bJp @@ -86970,17 +71872,17 @@ aCw aCw aCJ aEb -aDu -aSW -aSW +gmP +nLI +nLI acw acw -czk +eyF acw -czR -cAb -cAO -cBc +siF +plG +ubx +mST acw acw dTs @@ -86988,11 +71890,11 @@ dTs dTs dTs dTs -wgv -pij -mMm -sia -qlU +gmx +ihv +hMd +smh +ksL lNu lNu lNu @@ -87021,44 +71923,44 @@ cSo cSF cqn cqn -aDv -gdW -gdW -gdW -gdW -dIw -gdW +ihJ +oRW +oRW +oRW +oRW +hXb +oRW bYV rdW rdW fdk -cWy -qKE +mhs +kPv uFX -cYQ -qKE -qKE -qKE -qKE -qKE +plE +kPv +kPv +kPv +kPv +kPv uFX uFX -qKE -qKE -qKE +kPv +kPv +kPv cYV -jOe -cUi -mGo -mGo -mGo -mGo -dlx +rRp +gmq +rZd +rZd +rZd +rZd +qAS bYV rdW lyB fdk -hOK +oqK doH doH edO @@ -87067,15 +71969,15 @@ doH doH dsM dtp -dVS -ecf +iot +pbB dtp -dya +jnU dyb -dty -ebL -dAn -dAn +wfo +fKU +hqD +hqD dyb dTs dTs @@ -87105,19 +72007,19 @@ dTs dTs dTs dTs -ahh -aLv -aii -aii -aby -aii -aii -aii -aii -ajK +wZV +paw +jPr +jPr +mki +jPr +jPr +jPr +jPr +yfR dTs dTs -tOj +qdH plo aem aeR @@ -87132,30 +72034,30 @@ aga aIb aMP agy -alo -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -aNp -avC +qSE +iSm +iSm +iSm +iSm +iSm +iSm +iSm +iSm +iSm +iSm +iSm +iDG apz aqg aqg asa -bhY -aFt -aFt -aFt -aFt -aTn -bkf +lOc +uCQ +uCQ +uCQ +uCQ +xLB +mQJ dTs dTs dTs @@ -87171,16 +72073,16 @@ dTs dTs dTs bpM -bwk -bEG -bLo -bpP -bSR +aRG +iIh +drF +gBL +niC bzH -bxr -bYA -cbm -bxr +sDP +iBL +dna +sDP bHf bHf bHf @@ -87204,29 +72106,29 @@ aCY aCw aCJ aEb -aDu +gmP dTs dTs acw -aDO +fDE aDP -aDS +qIM bgn cAM bgm bha -aFC +fCk acw dTs dTs dTs dTs dTs -qlU +ksL lNu lNu -mMm -pij +hMd +ihv lNu lNu lNu @@ -87248,67 +72150,67 @@ ctF jmd aGC cqn -cQi +vOR cSr -cSe -cSq -afg +maJ +vpd +wDA cSr cro -aIi -cUj -cUj -cUj -cUj -cUj -jpa +kgd +jxh +jxh +jxh +jxh +jxh +pKT bYV rdW rdW cUy wgi cXh -hOK -cYR -mGo -mGo -mGo -mGo -kMT -hqp -jOe -gdW -gdW -gdW -dgJ -jOe -vud +oqK +cwe +rZd +rZd +rZd +rZd +lQf +kRj +rRp +oRW +oRW +oRW +djf +rRp +hkP dNS vuu dNS gpi -iri +huE bYV sLx sms fdk -hOK +oqK doH -dpu -pSV -dBJ -ebf +vvW +ykI +gkU +yaK doH doH edO -dVT -ecg +nQV +oir edO dyb dyb dyb dyb -eez +sEM dyb dyb dyb @@ -87339,7 +72241,7 @@ dTs dTs dTs aez -ahh +wZV iVN tbb tbb @@ -87348,11 +72250,11 @@ iVN tbb tbb ybA -vzj -afF +wJR +qAq rTV -qJI -tOj +oUM +qdH aen aeS aeS @@ -87366,7 +72268,7 @@ agj agj agr agj -agA +qoO aNn auy auy @@ -87388,9 +72290,9 @@ auy auy auy arZ -bjE -cMI -bkt +oDT +rTa +peF dTs dTs dTs @@ -87405,21 +72307,21 @@ dTs dTs dTs bpM -bwk -bpP -bLo -bEG -bAB +aRG +gBL +drF +iIh +jTY byC -bxr -bYA +sDP +iBL caF -ctv +qKG bPv -hDO -ckW -bJq -vhs +sLc +dCx +wZT +rXw bLr dTs dTs @@ -87438,26 +72340,26 @@ aCZ aCw aDp aEb -aDB +tya dTs dTs -qlU -ekH +ksL +dGj cee -dod +skz tyc wyR kry xpj -dKE -mMm +nZT +hMd dTs dTs dTs dTs dTs -duJ -tUF +rUn +vzn lNu lNu lNu @@ -87487,7 +72389,7 @@ cSr cSg cSr cSr -uUW +ssf cqn cOH cOH @@ -87495,59 +72397,59 @@ cTi cTi cOH cOH -hOK +oqK bYV sLx wya oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS dNS dNS -sUe -cWy -oQx -gdW -gdW -gdW -dgK -oQx -vud +fgd +mhs +vwN +oRW +oRW +oRW +oKV +vwN +hkP dNS dNS dNS dNS -iri +huE bYV rdW lyB fdk -hOK +oqK dhs -dpv -dqe -dqO -dqe -dqe +dpw +dqf +kcA +dqf +dqf edO dus -dVT -ech +nQV +vXP dus dyb -dyX -ebK -dBj -dAq -dCG +hke +vXw +txF +vXJ +lQQ dyb -dAn -dAn -dFL +hqD +hqD +mvT dyb dTs dTs @@ -87573,7 +72475,7 @@ dTs dTs dTs aez -ahh +wZV pUO jNB sUr @@ -87582,14 +72484,14 @@ pUO jNB sUr dzU -vzj -xof +wJR +nDM rTV rTV dTs -aew +lul aez -aiQ +rMq dTs aez aez @@ -87600,7 +72502,7 @@ cQf ago agu aqz -agF +nPG apz aqg aDb @@ -87622,9 +72524,9 @@ aqg aqg aqg asa -bjE -bkf -bku +oDT +mQJ +mgT dTs dTs dTs @@ -87639,21 +72541,21 @@ dTs dTs bpM bpM -bwl -bpP -bvb -bEG -bAC +hAu +gBL +ltJ +iIh +jpt byC -bxr -cbf +sDP +rMX cbn -ctD -bHh -cjY -cjY -cjY -bLt +nMu +nIX +obW +obW +obW +ieV bLr dTs dTs @@ -87675,23 +72577,23 @@ aEa dTs dTs dTs -duJ -tUF -ekH -mRU +rUn +vzn +dGj +pXh tyc jmd eft xpj -dKE -bqc +nZT +iqE dTs dTs dTs dTs -wgv -sia -cnx +gmx +smh +vMi lNu lDT qHF @@ -87716,51 +72618,51 @@ vzw vzw aHf cqn -nWZ -cRV -cRV -cSs -hLP -cSK +gEe +gqZ +gqZ +cls +lsb +jqi dMV cOH -dkJ -cRg -cRg -cRg +emK +gGg +gGg +gGg cOH -aRO +jYV bYV hzC hzC oKG rdW fdk -hOK -cYS +oqK +lEe trP dNS dNS daF dbu -daK -ddO +xsH +pDM dbu daF dbu -dgL -ddO +jXx +pDM dbu daF dNS dNS dNS -iri +huE bYV rdW lyB fdk -hOK +oqK dhs dpw dqf @@ -87769,19 +72671,19 @@ ead ead eee eav -ebz -eci +yhV +djC dus eeq -dyY -dAq -dAq -dWC -dAq -eeC -dAn -dAn -dFL +mdz +vXJ +vXJ +grJ +vXJ +eLF +hqD +hqD +mvT dyb dTs dTs @@ -87807,7 +72709,7 @@ dTs dTs dTs aez -aaF +gRX pUO sUr jNB @@ -87816,8 +72718,8 @@ pUO sUr jNB dzU -vzj -xof +wJR +nDM dTs dTs dTs @@ -87826,15 +72728,15 @@ dTs dTs dTs dTs -adj -aew +ljC +lul afX agc agk nzB agv agz -agR +mUy agZ aNM ahB @@ -87856,10 +72758,10 @@ aNM biJ aqg asa -bjE +oDT bhi -bkv -bkY +iBD +nLY dTs dTs dTs @@ -87872,22 +72774,22 @@ dTs dTs dTs bpM -bRd -daB -bpP -bLo -bEG -bAD +rms +ese +gBL +drF +iIh +kui byC -bxr -bYA +sDP +iBL caF -cts +rJD bPv -ckd -ckX -bJr -cnw +tCn +eHO +wMo +gfE bLr dTs dTs @@ -87910,22 +72812,22 @@ dTs dTs dTs dTs -duJ -tUF -iYI +rUn +vzn +pGC tyc jmd eft xpj -dKE -mMm -sia +nZT +hMd +smh dTs dTs dTs -pij -mMm -pij +ihv +hMd +ihv lNu kWh cAc @@ -87936,19 +72838,19 @@ igf rFU jMT cxx -bqc -cvH -czy -tUF +iqE +nmz +obZ +vzn lNu lNu lNu lNu -bqc -tUF +iqE +vzn pal lNu -aHg +yeZ cqn cqn cqn @@ -87957,65 +72859,65 @@ cqn cqn cqn dMV -cPH -cQo -cRi -cRi -cRi -ebU -hOK +fjj +uoH +nby +nby +nby +wBL +oqK bYV hzC rdW oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS daF daF -dcf -daK -daK -des -daI -dbr -dgL -daK -diG +isx +xsH +xsH +lSF +ujR +jVW +jXx +xsH +pMr daF daF dNS dNS -iri +huE bYV sLx sms fdk -hOK +oqK dhs dpx dqg dBK dqg dqg -edK -dut -dVU -ecj -dVH -edT -dWw -dWC -dWE -dWE -ebO +qdB +rMn +foW +szy +hsH +kRf +mVC +grJ +nPM +nPM +iMA dyb -dAn -ebL -dAn +hqD +fKU +hqD dyb dTs dTs @@ -88041,7 +72943,7 @@ dTs dTs aez aez -aaH +wIG pUO sUr sUr @@ -88050,25 +72952,25 @@ pUO sUr sUr dzU -vzj -xof -wZM +wJR +nDM +sbY dTs dTs dTs dTs dTs dTs -aeA -aeA -aev +iCd +iCd +qEx aez qxv poH cRc dvZ cSp -agF +nPG apz aqg aqg @@ -88090,10 +72992,10 @@ aIJ biK ara bjo -bjE +oDT bhi -bkf -bkZ +mQJ +osv dTs dTs dTs @@ -88106,32 +73008,32 @@ dTs dTs dTs bpM -bVa -daB -bEG -bLo -bpP -bAD +oAK +ese +iIh +drF +gBL +kui bzH -bxr -cbj -ctu -bxr +sDP +oDJ +qVy +sDP bHf -cQO -clS -bJr -bLv +usi +ssX +wMo +oHm bLr dTs dTs -nmr -vph -pvs +vcp +rca +fzY dTs dTs -nmr -nue +vcp +rAG cNW cNW aEa @@ -88145,19 +73047,19 @@ dTs dTs dTs dTs -qlU -iYI +ksL +pGC tyc wyR kry xpj -dKE +nZT lNu -qKA +kPx dTs dTs dTs -tUF +vzn lNu lNu lNu @@ -88170,18 +73072,18 @@ igf eft jmd cxx -qKA +kPx arR -czz -pij +jYn +ihv lNu lNu lNu lNu -qKA -qyu +kPx +dgZ lNu -bqc +iqE dTs dTs dTs @@ -88191,44 +73093,44 @@ dTs dTs dTs dMV -ucS -cRi -cRi -cRi -cRi -cRi -cTI +nGb +nby +nby +nby +nby +nby +jAZ bYV sLx wya oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS dbu -dbn -dbq -daK -daK -dTP -dTP -dTP -dgL -daK -deu -dbn +vpg +vNg +xsH +xsH +gEV +gEV +gEV +jXx +xsH +lhy +vpg dbu dNS dNS -iri +huE bYV rdW lyB fdk -hOK +oqK doH dpy dqh @@ -88237,19 +73139,19 @@ drU dqf edO dus -dVH -eck -ecx -ecB -ecD -ecI -ecK -dBT -dCH +hsH +wRj +fWy +nZu +oHH +rhc +sAF +nAB +iBM dyb -efl +rqZ dyb -efl +rqZ dyb dTs dTs @@ -88275,7 +73177,7 @@ aez aez aez aez -ahh +wZV pUO vqR vqR @@ -88284,25 +73186,25 @@ rob vqR vqR dzU -acL -xof +uVW +nDM aez -akv -aeA -aeA -dTs -dTs -aev -aqS -qtb -qtb -qtb -qtb -qtb -agp -agp -agp -agS +oLX +iCd +iCd +dTs +dTs +qEx +nxn +lHT +lHT +lHT +lHT +lHT +jZW +jZW +jZW +ibV aha ahl ahE @@ -88318,20 +73220,20 @@ aId aiZ aiZ aiZ -bbH -apO +uvq +taZ apz biL biP bjo -bjE +oDT bhi bhi -bkv +iBD dTs dTs dTs -bkZ +osv dTs dTs dTs @@ -88340,58 +73242,58 @@ dTs dTs bpM bpM -cZf -bMl -bEG -bvb -bwn -daY +iKg +wAS +iIh +ltJ +toa +iYx bzH bHn -bDh -cbo +jkP +eHp bHn bHf bPv -clT +fRz bPv bHf bLr -iwh -iwh -nue +wuv +wuv +rAG cNW -pLm -iwh -iwh -nue +sbj +wuv +wuv +rAG wIi wRR bVr bWi cNW -tXS -nmr -iwh +lfo +vcp +wuv dTs dTs dTs dTs dTs dTs -pij -iYI +ihv +pGC tyc jmd eft xpj -dKE +nZT lNu -mMm +hMd dTs dTs -wgv -clC +gmx +gLX lNu lNu aFK @@ -88404,17 +73306,17 @@ igf eft jmd cxx -mMm -fNw -pij +hMd +raC +ihv lNu lNu lyw lNu -bqc -kTX -duJ -cvH +iqE +iUr +rUn +nmz dTs dTs dTs @@ -88425,44 +73327,44 @@ dTs dTs dTs dMV -cPJ -cRi -cRi -cRi -cSu +sbF +nby +nby +nby +tfg cOH -mGo +rZd vDJ hzC rdW oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS dbu -dbn -dbq -daK -dTP -dTP -dBM -daK -dUA -dTP -deu -dbn +vpg +vNg +xsH +gEV +gEV +xhq +xsH +oJE +gEV +lhy +vpg dbu dNS dNS -iri +huE bYV rdW lyB fdk -hOK +oqK doH doH doH @@ -88471,19 +73373,19 @@ doH doH doH eby -dVH -ecl +hsH +prD dus eeq -dzb -dWE -dWE -dWN -toU +lPV +nPM +nPM +rJG +izZ dyb -dDZ +qsX dyb -dDZ +qsX dyb dTs dTs @@ -88509,7 +73411,7 @@ dTs aez aez aai -ahh +wZV aaT jNB sUr @@ -88544,29 +73446,29 @@ ahN cSp aiZ bfg -xrx -ars -ars -aja -aqy -aja +gQw +pfS +pfS +cLx +saA +cLx aiZ beV -bbI -aoG +wwP +qDO akp biM aox bjo -bjE +oDT bhi bkw -bkf -bkZ +mQJ +osv dTs -bhj -bkf -bgR +tqE +mQJ +nTX dTs dTs bpM @@ -88576,27 +73478,27 @@ bpM bzH bzH byC -bEG -bSd +iIh +tOY byC bzH bzH -bCt -bZa -cca -bFS -bHi -bCu -cmD -cqC -bLw +miM +rSf +gtv +syt +ovD +crJ +iYd +ktL +glZ bPv -cTU -cTU -cTU -cTU -cTU -bRp +hTp +hTp +hTp +hTp +hTp +sCc cNW cNW cNW @@ -88604,27 +73506,27 @@ bUt bVs bWj bXc -pLm -nue +sbj +rAG cNW -pLm +sbj dTs dTs -sia +smh aoz -qlU +ksL lNu -iYI +pGC tyc jmd eft xpj -dKE +nZT lNu lNu -mMm -sia -qlU +hMd +smh +ksL lNu lNu lNu @@ -88643,9 +73545,9 @@ lNu lNu lNu cAW -bqc -cvH -kTX +iqE +nmz +iUr aoz dTs aoz @@ -88659,11 +73561,11 @@ dTs dTs dTs cOH -cPK -cQq -cRi -cRi -cSv +ekh +seH +nby +nby +pdz cTi dNS pva @@ -88672,48 +73574,48 @@ rdW oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS dbu -dbn -dbq -dTP -dTP -dUg -dDQ -dbs -dUA -dUF -deu -dbn +vpg +vNg +gEV +gEV +gFx +fLL +kqY +oJE +iSy +lhy +vpg dbu dNS dNS -iri +huE bYV sLx sms fdk -cWy -cUj -jpa +mhs +jxh +pKT dqi dqR ebt drV doH -duu -dVH -ecm +jWp +hsH +hwY dus dyb -dzc -dAq -dWC -dBU -dWP +kIN +vXJ +grJ +ula +kTx dyb dyb dyb @@ -88743,7 +73645,7 @@ aez aez aez aaj -aaJ +gwe aaV sUr abq @@ -88778,59 +73680,59 @@ ahN aId aiZ aiZ -axZ -ahu +uzO +jJm dTs dTs dTs -bgA -bgO +rfS +enA bhi -bhD -bhZ +xGP +ygf bir ang bje bjo -bjE +oDT bhi bkx bhi -bkv -bgQ +iBD +nFD bhi -bmu -bgp -bmK -bhk +nSM +opx +uHX +wth byC -bqV -brU -bqV -bqV -bqV -btG -bEG -bLo -bSL -bqV +lVs +uHG +lVs +lVs +lVs +mFh +iIh +drF +hSF +lVs byC -bCu -bZd -bEE -bCw -bCw -cca -cca -cca -cca -bMm -euG -hpw -hpw -hpw -pTU -tni +crJ +qPG +mjG +fqS +fqS +gtv +gtv +gtv +gtv +fAk +xHr +kaw +kaw +kaw +uAH +rBu uiH cNW wRR @@ -88842,23 +73744,23 @@ cNW cNW cNW cNW -pLm -nue -mMm -fNw -pij +sbj +rAG +hMd +raC +ihv pal -ceR +nDF tyc wyR kry xpj -dol +mYo pal lNu lNu -mMm -pij +hMd +ihv lNu lNu pal @@ -88876,8 +73778,8 @@ lNu lNu lNu lNu -bqc -cCa +iqE +wIQ aoz dTs dTs @@ -88894,10 +73796,10 @@ dTs dTs cOH cOH -cQr -cRi -cRi -cSv +uol +nby +nby +pdz cTi dNS pva @@ -88906,48 +73808,48 @@ wya oKG rdW fdk -hOK -cYS +oqK +lEe dNS dNS dbu -dbn -dbq -daK -dTP -deu -dFr -dbq -dUB -dTP -deu -dbn +vpg +vNg +xsH +gEV +lhy +mrm +vNg +rZL +gEV +lhy +vpg dbu dNS dNS -iri +huE bYV rdW lyB cUy wgi cXh -eaU +jTV dqi -dqS +uxy dqV dqV edO dus -dVH -ecm +hsH +hwY dus dyb -ebE -dAq -dAq -dBV -dCJ +ojT +vXJ +vXJ +oPy +sXu dyb dTs dTs @@ -88977,7 +73879,7 @@ dTs aez aez aaj -aaL +pKB vTR abd uty @@ -89011,59 +73913,59 @@ aqg ahN aiZ aiZ -aqy -axY +saA +eol dTs dTs dTs dTs -bhH -bhj +rSi +tqE bhi -bhD -bhZ +xGP +ygf bir biM biP bjo -bjE +oDT bkg bhi bhi -bkf -bhj -bmu -bmK -bmL -bob -boI -bpO -bqW -bEF -bFR -bSK -bLl -bSK -bSK -bSe -bSK -bzG -bBt -bCv -bZi -cbq -bFT -bFT -ckh -ckh -ckh -ckh -bFT -bMQ -bNq -bNq -bNq -bQm +mQJ +tqE +nSM +uHX +xdA +wlC +wPm +lWM +wgo +lio +xnR +vPi +wEU +vPi +vPi +ppB +vPi +vTL +vfL +ncp +mRf +iud +gtO +gtO +fUj +fUj +fUj +fUj +gtO +qZC +pvZ +pvZ +pvZ +xFW bRq bSk bSk @@ -89108,9 +74010,9 @@ jmd cxx lNu jlP -bqc -cvH -kTX +iqE +nmz +iUr dTs dTs dTs @@ -89128,10 +74030,10 @@ dTs dTs dTs cOH -cQs -cRj -cRi -cSv +jzN +mIm +nby +pdz cTi dNS pva @@ -89140,48 +74042,48 @@ rdW dVj rdW fdk -hOK -cYS +oqK +lEe dNS dNS daF -dbn -dcg -dTP -dTZ -deu -dFr -dbq -dUC -dTP -diH -dbn +vpg +duv +gEV +unV +lhy +mrm +vNg +iOR +gEV +kTp +vpg daF dNS dNS -iri +huE bYV rdW lyB oKG hzC dPf -hOK +oqK die dqT dqV dqV edO dus -dVY -ecn +rQZ +xKS ecy dyb -dze -dzb -dAq -dBW -dCK +hHp +lPV +vXJ +eqg +qZi dyb dTs dTs @@ -89211,7 +74113,7 @@ dTs dTs aez aak -ahh +wZV lcy abf abv @@ -89245,56 +74147,56 @@ aqg ahN aiZ aiZ -axZ +uzO dTs dTs dTs dTs dTs -bgA -bgP +rfS +wns bhi -bhD -bhZ +xGP +ygf bir biM biP bjo -bjE +oDT bhi bhi bhi bhi bhi -bmv -bmL +sLu +xdA bia boc -bju -bpP -bpP -bEG -bEG -bEG -bLo -bEG -bEG -bpP -bEG -bEG -bpP -bCw -bDl -cbr -cca -cca -bCw -bCw -cca -crI +tJp +gBL +gBL +iIh +iIh +iIh +drF +iIh +iIh +gBL +iIh +iIh +gBL +fqS +qbE +ntl +gtv +gtv +fqS +fqS +gtv +tBz bPv -dCt -dCt +sZM +sZM mdP nAm nAm @@ -89340,9 +74242,9 @@ eft eft jmd cxx -bqc -cvH -kTX +iqE +nmz +iUr dTs dTs dTs @@ -89362,10 +74264,10 @@ dTs dTs dTs cOH -cPK -cRk -cRk -cSw +ekh +gbr +gbr +vQH cOH dNS pva @@ -89374,46 +74276,46 @@ rdW ivr kJP fCB -hOK -cYS +oqK +lEe dNS daF daF dbo daF -dTP -daK -deu -dFr -dUv -dUA -daK +gEV +xsH +lhy +mrm +iXM +oJE +xsH daF dbo daF daF dNS -iri +huE bYV sLx dmK dnB oBR dVn -dVp -edJ -dVu -eae -eag -edL -eaw -ebW -eco +luR +ifL +qjf +vQT +ygN +wfX +goE +snM +qaN dus dyb dyb eeq -eet +hhm eeq dyb dyb @@ -89445,7 +74347,7 @@ dTs dTs aez aez -ahh +wZV ncd iqs abw @@ -89454,81 +74356,81 @@ abX sUr acn dzU -aSg -xof -aiQ -ade -aew +cpr +nDM +rMq +qwv +lul aez aYx aez aez -afU -afV -afV -afV -afV -afV -afV -afV -afV -agX +sXQ +pXO +pXO +pXO +pXO +pXO +pXO +pXO +pXO +fVj apA ahq aNL ahO amN -aqy -axY +saA +eol dTs dTs dTs dTs dTs dTs -bgQ +nFD bhi -bhD -bhZ +xGP +ygf bir biN bje bjo -bjE +oDT biw bhi bhi -blJ -bkh -bmw +pmK +jll +ifI bia bia -bod -bhk +sys +wth byC -bqX -brV -bsF -bEG -bvb -bwn -bqX -bqX -bqX -bqX +pMd +uwu +jFw +iIh +ltJ +toa +pMd +pMd +pMd +pMd byC -bCx -bDm -bEH -bFU -bHl -bIl -bIl -bKB -bLy +sFG +uNE +pzx +piU +jin +siA +siA +lHR +vMG bPv -dCt -dCt +sZM +sZM naH ozu ozu @@ -89574,7 +74476,7 @@ dGI dGI oIE cxx -qKA +kPx dTs dTs dTs @@ -89596,59 +74498,59 @@ dTs dTs dTs cOH -cRl -cRl -cRl -cSx +nJz +nJz +nJz +ixC cOH dNS pva sLx wya dPf -gdW -dUL -jOe -cYS +oRW +hFN +rRp +lEe dNS dbu -daG -dbp -dch -dTP -dTP -dUh -dUm -dUw -dUA -daK -diI -djr -dbn +iFW +iPf +oze +gEV +gEV +mrV +cVd +ubc +oJE +xsH +fRQ +gVp +vpg dbu dNS -iri +huE bYV rdW rdW dVj hzC dPf -dVm -dVr -dVr -dVr -dVr -dVH -dVH -dWa -ecl +lMe +rvG +rvG +rvG +rvG +hsH +hsH +dYs +prD dus edO -dzf -dzf -dzg -dzf +xnl +xnl +gKX +xnl dCL dTs dTs @@ -89679,7 +74581,7 @@ dTs dTs aez aez -aaN +jhO eRn mhR mhR @@ -89688,13 +74590,13 @@ mhR mhR mhR aRF -vzj -xof -akv -aeA +wJR +nDM +oLX +iCd dTs -adj -aew +ljC +lul pba aez aez @@ -89706,13 +74608,13 @@ aez aez agw hDT -med +ohc pUO aqg aqg ahN aiZ -axY +eol dTs dTs dTs @@ -89720,31 +74622,31 @@ dTs dTs dTs dTs -bgA -bgP -bhD -bhZ +rfS +wns +xGP +ygf bir biM biP bjo -bjF -bkh -bkh -bkh +xMU +jll +jll +jll blK bia bia bia bia -bod +sys boJ boJ boJ boJ btc -bEA -bvc +eQy +sKA btc boJ boJ @@ -89752,8 +74654,8 @@ bzH bzH bzH bKL -bDn -bEI +gVW +mhm bKL bHm bHm @@ -89762,7 +74664,7 @@ bHm bHm bHm bHm -dCt +sZM naH ozu ozu @@ -89840,49 +74742,49 @@ tnu eZE eZE waC -kMT -mDz -jOe -cYS +lQf +gTE +rRp +lEe dNS dbu -daG -dbq -daK -dTP -dTP -dTP -dUn -dUb -dUD -dUG -daK -deu -dbn +iFW +vNg +xsH +gEV +gEV +gEV +ttX +giM +nJt +wqK +xsH +lhy +vpg dbu dNS -iri +huE bYV rdW rdW dVk hzC fdk -hOK +oqK die dqV dqV dqV edO dus -dVH -ecm -dtx -edU -dzg -dzg -dzg -ebM +hsH +hwY +mXJ +dxD +gKX +gKX +gKX +wIa dCL dTs dTs @@ -89913,23 +74815,23 @@ dTs dTs dTs aez -ahh -aaX -abh -ooW -ooW -ooW -acg -acg -ooW -ajM +wZV +tqk +ycU +nhv +nhv +nhv +dEa +dEa +nhv +xDr dTs dTs dTs dTs dTs -aeq -aew +fUU +lul aez dTs dTs @@ -89940,12 +74842,12 @@ aYx aez aez bOE -med +ohc pUO aqg aqg ahN -aqy +saA dTs dTs dTs @@ -89955,14 +74857,14 @@ dTs dTs dTs dTs -bgQ -bhD -bhZ +nFD +xGP +ygf bir biM aox bjo -bhF +nGr bia bia bia @@ -89971,32 +74873,32 @@ bia bia bia bia -bod +sys boJ -dwd -bqY -bqY -bsG -bEA -bvd -bwo -bxz +rZq +sAt +sAt +wfz +eQy +upH +itS +qQr ebQ -bzI -dwh -bBv -bCz -bDn -bEJ -bFV +jcR +sXa +uJv +tyV +gVW +eLA +mJR bHm -bIm -qUv -dwW -dwX -bMn +qTY +wed +wjf +lGT +iTn bHm -dCt +sZM naH ozu ozu @@ -90004,45 +74906,45 @@ bRr uml vgm xsS -bUz -nil -nil -nil -nil -nil -nil -nil -nil -nil -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -kIl -ciO -cjj -cjj -cjj -cjj -cjj -cny -oaz +tAI +vcI +vcI +vcI +vcI +vcI +vcI +vcI +vcI +vcI +iaW +iaW +iaW +iaW +iaW +iaW +iaW +iaW +iaW +iaW +iaW +vjc +nHv +nHv +nHv +nHv +nHv +iip +ubL tyc rFU kry xpj -vSV +kBg lNu lNu lNu lNu -qKA +kPx dTs dTs dTs @@ -90074,49 +74976,49 @@ dNS dNS mAm dNS -sUe -mDz -jOe -cYS +fgd +gTE +rRp +lEe dNS daF -daH -dbq -dTP -dTP -dUa -dev -dUx -dVx -dVM -dVZ -dUK -deu -djt +sIn +vNg +gEV +gEV +pMm +lnU +jsc +uqM +jcD +nyp +gdP +lhy +kCr daF dNS -iri +huE bYV vnf hjm dVj rdW fdk -eaU +jTV dqm dqW -drZ +hXC dqW dqm eby -dtx -ecp -eaO -eaO -ecE -ecE -ecL -dzf +mXJ +jyg +rhv +rhv +rNo +rNo +tFF +xnl dCL dTs dTs @@ -90147,15 +75049,15 @@ dTs dTs dTs dTs -ahh -ahh -ahh -ahh -ahh -ahh -soS -lQM -ahh +wZV +wZV +wZV +wZV +wZV +wZV +qad +xnC +wZV dTs dTs dTs @@ -90174,7 +75076,7 @@ dTs aez pba anE -med +ohc ahc aql ara @@ -90189,48 +75091,48 @@ dTs dTs dTs dTs -bhj -bhD -bhZ +tqE +xGP +ygf bir biN bje bjo -bhG -bib -bib -bib -bib -bib -bib -bib -bib -bod +njy +vAt +vAt +vAt +vAt +vAt +vAt +vAt +vAt +sys btc -wpN -bqZ -bqZ -bsH -bIn -bve -bwp -bwp -byD -bSM -bSM -bVg -bSM -bZS -bEK -bFW +jIK +jaN +jaN +fNW +vky +qyW +wCa +wCa +lhl +prV +prV +kBV +prV +tML +mQs +gnM bRO -ckm -cnr -bKD -bJz -bMo +eOb +hnw +gGf +lez +rHt bRO -dCt +sZM naH ozu ozu @@ -90238,27 +75140,27 @@ bRr ozu ozu xsS -mfK -dCt -lnG -ejR -ejR -ejR -ejR -ejR -goq -dCt -bic -biu -jbx -jbx -jbx -jbx -jbx -jbx -jbx -jbx -jbx +nXY +sZM +tfs +ibZ +ibZ +ibZ +ibZ +ibZ +cZU +sZM +jng +fKN +gyn +gyn +gyn +gyn +gyn +gyn +gyn +gyn +gyn mNk gca gca @@ -90266,18 +75168,18 @@ gca gca gca mNk -coE +kDt qkJ eft eft xpj -dol +mYo pal lNu kbo lNu -mMm -fNw +hMd +raC dTs dTs dTs @@ -90308,49 +75210,49 @@ cVV cVV cPL dNS -sUe -mDz -jOe -cYT -wPb +fgd +gTE +rRp +fwQ +hRa dbu -daI -dbr -dTP -daK +ujR +jVW +gEV +xsH ddQ eDQ -dHQ +rZe dfT eDQ -dWj -dTP -dUh -daI +mXH +gEV +mrV +ujR dbu -wPb -cTF +hRa +bpm bYV hzC hzC dVj rdW fdk -hOK +oqK dqm -dNi -dsb -dsA +kYQ +nqu +hRQ dqm dus -dtx -ecq +mXJ +jqc dus dOg -dzf -dzg -dzg -dzf +xnl +gKX +gKX +xnl dCL dTs dTs @@ -90382,15 +75284,15 @@ dTs dTs dTs dTs -bMt +veO bab -axi -axi +gEz +gEz abY aci aco acv -aQn +hou dTs dTs dTs @@ -90408,12 +75310,12 @@ dTs dTs aez aez -med +ohc pUO ahs ahG dzU -xof +nDM dTs dTs dTs @@ -90423,9 +75325,9 @@ dTs dTs dTs dTs -bgP -bhD -bhZ +wns +xGP +ygf bir biM biP @@ -90439,32 +75341,32 @@ bjG bjG auN bnr -boe +jsu btc -dwe -bEA +lwb +eQy brX brX bEL brX bEL -bEA -bSf -bSf -bSf -bVh -bSf -bSf -cbs -bFX -bHo -ckF -cnF -bKE -bLB -bMo +eQy +fAP +fAP +fAP +jcQ +fAP +fAP +wFG +ogV +qTe +kPp +gAN +fgq +pKR +rHt bRO -dCt +sZM naH ozu ozu @@ -90472,8 +75374,8 @@ bRr ozu ozu xsS -mfK -lnG +nXY +tfs bVD bVE bVE @@ -90481,38 +75383,38 @@ bVE bVE bVE bVD -dCt -ccd -ccL -bZr -cfZ +sZM +iZt +ozA +mVI +mJf cgG cgI cgI chV chm cjl -jbx -mXN -rmo -rmo -rmo -rmo -rmo -qXM -jbx +gyn +pAy +foP +foP +foP +foP +foP +xMO +gyn tyc eft olL xpj -mXN -rmo -rmo -rmo -rmo -rmo -rmo -rmo +pAy +foP +foP +foP +foP +foP +foP +foP dTs dTs dTs @@ -90534,57 +75436,57 @@ dTs cPL cPL cPL -cQw -cSz +wXk +taV cPL -dHr -hOA -cUE +mvy +qos +mHQ cPL cPL -gdW -hqp +oRW +kRj uFX -cYP -dTK -eeP -daK -daK -dTP -daK +uAN +iSZ +laQ +xsH +xsH +gEV +xsH ddR daF daF daF dgO -dWj -dTP -dTP -daK -dkG -wRX -jOe +mXH +gEV +gEV +xsH +kiN +ivm +rRp bYV rdW hzC oKG rdW fdk -hOK +oqK die -drQ +lFT dsc eak -edP -eaO -eaO -ecr +xjZ +rhv +rhv +lbx dus doH -dzi -dzg -dzg -dzf +mRF +gKX +gKX +xnl dCL dTs dTs @@ -90616,16 +75518,16 @@ dTs dTs dTs ebs -aZg +qav bac -bbK +nNy abF -acc -acj +fHI +qhF acp acy aez -akv +oLX dTs dTs dTs @@ -90639,15 +75541,15 @@ dTs dTs dTs dTs -aev +qEx aez aez -aZH +eBV pUO sUr ahs dzU -xof +nDM dTs dTs dTs @@ -90656,10 +75558,10 @@ dTs dTs dTs dTs -bgR -bhj -bhD -bhZ +nTX +tqE +xGP +ygf bir biO bjf @@ -90673,32 +75575,32 @@ bjq bjf bjf bns -bof +gcn btc -dwf -bEA +eOM +eQy bEL bFY bFY bFY bEL -bEA +eQy btc -nTa -bAG -bST -bST -bDp -cbE -ccz -cfs -cfs -cnI -bKF -crN -cuW +rXs +nCm +ltC +ltC +dwi +log +trm +pjv +pjv +rTS +eCt +pTy +xTL bRO -dCt +sZM naH ozu ozu @@ -90706,46 +75608,46 @@ bRr uml vgm xsS -mfK -tni +nXY +rBu bVE -dvA -cTU -cTU -cTU -cTU -hcP -dCt -bXf -bYa -bZZ +eqD +hTp +hTp +hTp +hTp +rcA +sZM +rXe +hhl +ppK cga cfX chm -chT -chW -chn -cjm +hkf +wOY +hoX +tCE chm clD -cmr +tWq cnB -ckx -cuS -cmr -cxW -coF +dwM +wOb +tWq +fop +ylb dfc ees dNR dTH -coF +ylb mBd chm chm clD -cmr -cmr +tWq +tWq dTs dTs dTs @@ -90766,58 +75668,58 @@ dTs dTs dTs cPL -dTA -dTA -cQw -cSA +wjx +wjx +wXk +ymh cPL -cTM -cTO -cUF -cTO +qxZ +roA +rAA +roA cVV -gdW -hqp +oRW +kRj uFX cYV -dTL -dTP -dTP -dTP -dTP -daK +pib +gEV +gEV +gEV +gEV +xsH ddS daF daF daF dgP -dWj -dTP -dTP -daK -daK -cWy -jOe +mXH +gEV +gEV +xsH +xsH +mhs +rRp bYV sLx wya pzv kJP fCB -hOK +oqK die -ugJ +jRK dqV dqV dqm dus -dWa -ecm +dYs +hwY dus doH -rxb -dzg -dzg +oyJ +gKX +gKX bgq dCL dTs @@ -90849,18 +75751,18 @@ aab aab aab aab -aaP -aWZ -aZg +ezm +bch +qav aKw bac -bbK +nNy bbM -aOR -acB -acM -aOR -aOR +pXt +spY +oUz +pXt +pXt dTs dTs dTs @@ -90871,29 +75773,29 @@ dTs dTs dTs dTs -ahh -xls -xTH -xTH -xTH -ajT +wZV +sEt +uwy +uwy +uwy +gvP pUO aht uWT dzU -xls +sEt dTs dTs dTs dTs dTs dTs -bgp -bgp -bgp -bgp -bhE -bhZ +opx +opx +opx +opx +ubR +ygf bir biP biP @@ -90907,32 +75809,32 @@ atM aox aox bjo -blM +stX btc -bpU -bEA +vOP +eQy bEL bGQ bsK bGQ bEM -bRN +xpU btc -bzL -bAH -bST -bST -bDp -cbP -bFZ +vbq +tLC +ltC +ltC +dwi +gIK +oCl bRO -bIq -coV -bJz -coV -cuW +uVI +iNK +lez +iNK +xTL bRO -dCt +sZM naH ozu ozu @@ -90940,46 +75842,46 @@ bRr ozu ozu xsS -mfK -tni +nXY +rBu bVE -gQE -bVw -bZr -ceh -ceh -bVx +mVn +etC +mVI +saf +saf +gxg cfX cfY -bYb -bVy -bVy -bVy -chn -chU +mVM +sUn +sUn +sUn +hoX +pjZ cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ cnC -cuQ -cvK -cvL -cyR -cAf +fxc +rlR +pjg +jws +kBP hEU hEU czV czV -cAf -cAi -chn -chn -chn -chn -clE +kBP +gJJ +hoX +hoX +hoX +hoX +mWa ciQ dTs dTs @@ -91000,58 +75902,58 @@ dTs dTs dTs cPL -dTB -cQw -cQw -cSB -cTj -cTN -cTN -cUG -cTN -dxL -cWB +yjJ +wXk +wXk +uEX +fDj +fPH +fPH +rpv +fPH +uTy +eMI cXj cXj -cYW -mGo +fjL +rZd dbu -dTQ -dbs -dTP -daK +nRJ +kqY +gEV +xsH ddT dex dex xKC grQ -dWj -daK -dUg -daL +mXH +xsH +gFx +tet dbu -mGo -dlx +rZd +qAS bYV rdW rdW fdk -doi -hxj -dpA +mQr +vdP +vNa dqm -umo -ebu -dsO +guf +hyO +vOw dqm eeo -dVI -edR +gTT +tYF dOf dpB -ebF -dzg -dzg +rEs +gKX +gKX bgq dCL dTs @@ -91085,18 +75987,18 @@ aab aab aaQ aJy -aWZ -aIS -aIS -aZg +bch +sow +sow +qav bac -bbK -bbK -bbK -bbK -bbK -bbK -bbK +nNy +nNy +nNy +nNy +nNy +nNy +nNy dTs dTs dTs @@ -91104,30 +76006,30 @@ dTs dTs dTs dTs -bMt -bMt -bMt +veO +veO +veO bab -axi -aZd -ahh +gEz +fXk +wZV pUO sUr ahs ahR -ahh +wZV dTs dTs dTs dTs dTs -bgi -bgi -bgi -akR -bhk -bhF -bhZ +wol +wol +wol +iQi +wth +nGr +ygf bis biQ biQ @@ -91141,32 +76043,32 @@ bmg aox biP bjo -blM +stX btc -bpV -bEA +jdE +eQy bEM bEM brX brX bEM -dDx +rcb btc -bzM -bST -bST -bST -bDp -cbs -bGa +gUB +ltC +ltC +ltC +dwi +wFG +ngy bRO -bIr -coV -coV -bJz -bMp +wcE +iNK +iNK +lez +lAD bRO -dCt +sZM naH ozu ozu @@ -91174,18 +76076,18 @@ bRr ozu ozu xsS -mfK -wMw +nXY +vps bVD -hcP -cbt -bZZ +rcA +wMv +ppK ceg ceg ceg -bYb -bVy -bZq +mVM +sUn +vlU bOu bOu bOu @@ -91195,12 +76097,12 @@ cho cho cho cho -cjQ -chn -chn -chn -chn -chU +flr +hoX +hoX +hoX +hoX +pjZ cho cho czV @@ -91213,9 +76115,9 @@ cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa cnC dTs dTs @@ -91234,43 +76136,43 @@ dTs dTs dTs cPL -cQz +jat cPL -cQz +jat cPL cPL -cTO -cTO -cTO -cTO -cTO -cWy -qKE +roA +roA +roA +roA +roA +mhs +kPv xqQ -rGu +jnw dNS daF -daH -dbq -dTP -dTP -daK -daK -daK -daK -daK -dWj -daK -deu -djt +sIn +vNg +gEV +gEV +xsH +xsH +xsH +xsH +xsH +mXH +xsH +lhy +kCr daF dNS -iri +huE bYV rdW rdW fdk -uis +uwd vuu dpB dqm @@ -91278,14 +76180,14 @@ dqm dqm dqm dqm -dVN -dVI -ect +wQk +gTT +rDn dqo dpB -rxb -dzg -dzg +oyJ +gKX +gKX bgq dCL dTs @@ -91322,13 +76224,13 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aIS -aIS -aZg +bch +sow +sow +sow +sow +sow +qav aKw aKw aKw @@ -91342,65 +76244,65 @@ aKw aKw aKw bac -bbK -bFA -axM +nNy +vri +ske ahf ahw cEe ahS -agY +nDY dTs dTs dTs bbL -bcY -bgj -bgj -akJ -akS -alr -bhF +eQn +hrH +hrH +viB +iVj +wLw +nGr bia -bit -bit -bit -bit -bit -bit -bit -bit -blL +noQ +noQ +noQ +noQ +noQ +noQ +noQ +noQ +ybq aui bki bje bjo -blM +stX btc -bpW -bra -bra -lmq -bra -bEA -bOr -bra +xhH +jZn +jZn +txr +jZn +eQy +gIO +jZn btc -bzN -bTb -bST -bST -bSf -cbP -bGb +nSF +fAe +ltC +ltC +fAP +gIK +kAQ bRO -bIs -cpE -bKG -bLD -bMq +gHM +pwL +qta +dzN +glb bRO -dCt +sZM naH ozu ozu @@ -91408,16 +76310,16 @@ bRr uml vgm xsS -mfK -dCt -dCt -dCt -cbu +nXY +sZM +sZM +sZM +nlK ceg -bYb -bVy -bVy -bZq +mVM +sUn +sUn +vlU bOu bOu bOu @@ -91449,8 +76351,8 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ cYh dTs @@ -91468,43 +76370,43 @@ dTs dTs dTs cPL -cQA +fmt cPL -cQA +fmt cPL cPL -cTO -cUs -cTO -cTO +roA +mbX +roA +roA cVV -mGo -kMT -hqp -rGu +rZd +lQf +kRj +jnw dNS dbu -daG -dbq -daK -dTP -dTP -daK -daK -dUb -dUb -dWk -daK -deu -dbn +iFW +vNg +xsH +gEV +gEV +xsH +xsH +giM +giM +kXk +xsH +lhy +vpg dbu dNS -iri +huE bYV sLx wya fdk -uis +uwd dNS dpB dVs @@ -91513,16 +76415,16 @@ dqn dsR dOc dtz -dWd -ecu +iJG +oHL dWr dpB diq -dzg -eev +gKX +esh dOk dCL -dNo +hBP skB dTs dTs @@ -91562,10 +76464,10 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aZg +bch +sow +sow +qav aKw aKw dTs @@ -91574,67 +76476,67 @@ aKw aKw aKw aKw -aKx -aIS -aIS -bJN -agY -ahg -ahg -ahI +oMt +sow +sow +gQA +nDY +xyr +xyr +xuR cyP -agY -aix -aZg +nDY +hYQ +qav aKw bac -bbK -bbK +nNy +nNy bbL -bgj -akT -alQ -bhG -bib -bib -ani -bib -bib -bib -bib -bib -bib -bhZ +hrH +sPG +rhP +njy +vAt +vAt +edg +vAt +vAt +vAt +vAt +vAt +vAt +ygf bir aox biP bjo -blM +stX boJ -dwg -brb -brb -brb -bJn -bLp -bra -bxB +myp +ktZ +ktZ +ktZ +cWt +ejh +jZn +fKY boJ -bzO -bAJ -bAJ -bCB -bDp -bEN -bGb +wZI +qAJ +qAJ +oao +dwi +jAd +kAQ bHm bIt bJB -bKH -bLE +muY +nna bHm bHm -dCt +sZM ngo oAM oAM @@ -91642,13 +76544,13 @@ ueZ ozu ozu xsS -mfK -bVw -bWm -bZr -cce -bYb -bZq +nXY +etC +eAC +mVI +iUL +mVM +vlU bOu bOu bOu @@ -91684,8 +76586,8 @@ cho cho cho cho -cjQ -clE +flr +mWa cnC dTs dTs @@ -91707,59 +76609,59 @@ cPL cPL cPL cPL -cTP -cTO -cTO -cVq +jlR +roA +roA +kur cPL vuu -sUe -hqp -rGu +fgd +kRj +jnw dNS dbu -daG -dbt -dci -dNh -dTP -dUg -dUo -dUy -dTP -dWj -diJ -djs -dbn +iFW +foc +wkA +gdn +gEV +gFx +oNg +qkW +gEV +mXH +pJT +pAr +vpg dbu dNS -iri +huE bYV rdW rdW fdk -uis +uwd dNS dpB dNX -dVw -dNY -dOa -dVI -dVO -dWe -ecv +wXX +fGJ +san +gTT +jbu +nHT +oYz lxq dpB -gdW -wRX -jpa -vud +oRW +ivm +pKT +hkP ebP -kkm -ibU -ibU -ibU +mvW +vqd +vqd +vqd dTs dTs dTs @@ -91799,16 +76701,16 @@ aJy aJy aJy aJy -aWZ -aZg +bch +qav aKw aKw aKw -aKx -aIS -aIS -aIS -aLd +oMt +sow +sow +sow +uzJ aJy aJy aJy @@ -91819,31 +76721,31 @@ bTi bTi bTi aJy -aWZ -aIS -aZg +bch +sow +qav aKw aKw bWw -bcY -bgU -bhl -bhk -bhk -bhk -bhk -aoy -bhk -bhk -bhk -bhk -bhk -blM +eQn +fTA +iWM +wth +wth +wth +wth +kXT +wth +wth +wth +wth +wth +stX bir biP biP bjo -blM +stX boJ boJ btc @@ -91851,15 +76753,15 @@ btc boJ boJ btc -bwr +tYU btc btQ bDR bDR bDR bDR -bvk -bEP +rkt +kXb bGc bHm bHm @@ -91867,21 +76769,21 @@ bHm bRO bRO bHm -goq -dCt -blO -nil -pTU +cZU +sZM +thr +vcI +uAH naH ozu ozu xsS -mfK -bXf -bYa -bZZ -bYb -bZq +nXY +rXe +hhl +ppK +mVM +vlU bOu bOu bOu @@ -91893,8 +76795,8 @@ bOu bOu cho cho -chX -chp +gBT +jlu cjR cho cho @@ -91919,8 +76821,8 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ dTs dTs @@ -91937,65 +76839,65 @@ dTs dTs dTs dTs -dTI -dTI +dTs +dTs cPL -cTk -cTO -cTO -cTO -cVr +qvo +roA +roA +roA +rWY cVV dNS -sUe -hqp -rGu +fgd +kRj +jnw dNS daF daF dbu daF -daK -dTP -dUi -dUp -dUv -dTP -dWj +xsH +gEV +hwZ +jbH +iXM +gEV +mXH daF dbo daF daF dNS -iri +huE bYV rdW rdW fdk -uis +uwd dNS dpB dqo -drc -dVy -dVD -dVJ -dVI -dVI -dWq +irk +ueY +gmz +nxb +gTT +gTT +fWt qXZ dpB -gdW -hqp -jOe -xxv -wPb -wPb -wPb -wPb -wPb -rBP -uAo +oRW +kRj +rRp +jUq +hRa +hRa +hRa +hRa +hRa +xyM +plx dTs dTs dTs @@ -92034,11 +76936,11 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aLd +bch +sow +sow +sow +uzJ aJy aJy aJy @@ -92055,66 +76957,66 @@ bTi aJy aJy aJy -aWZ -aIS -aZg +bch +sow +qav bac -bbK -bWx -bMt +nNy +eyu +veO bab -amu +rcF amw amw amw -aqm -bXg -bXk -bXk -bXr -blM +mEG +fCx +kRn +kRn +swZ +stX bir bki bje bjo -blM -boL +stX +rFk bhi bTR bhi bhi btQ -bvi -bvi -bvi -bHq -bvi -bvi -bvi -bvi -bwu -bEQ -bvi -bHq -bvi +jXZ +jXZ +jXZ +fWS +jXZ +jXZ +jXZ +jXZ +qQX +uEF +jXZ +fWS +jXZ btQ cNW cNW cNW -gQE -dCt -dCt -oXx -qDb +mVn +sZM +sZM +sxs +sSM naH uml vgm xsS -mfK +nXY bXY -bYb -bVy -bZq +mVM +sUn +vlU bOu bOu bOu @@ -92122,17 +77024,17 @@ bOu bOu bOu bOu -caG -ceU -ceU -chp -chp -ciP +dTy +xOv +xOv +jlu +jlu +pof ciQ -cjS -chp -chp -chp +ver +jlu +jlu +jlu cjR cho cho @@ -92143,19 +77045,19 @@ czV czV cho cho -cAf -cAj -chp -chp -chp +kBP +iFd +jlu +jlu +jlu cjR cho cho cho cho cho -cjQ -clE +flr +mWa ciQ dTs dTs @@ -92171,42 +77073,42 @@ dTs dTs dTs dTs -dTI -dTI +dTs +dTs cPL -cTl -cTO -cTO -cUH -hOA +sKU +roA +roA +fFM +qos cVV dNS -sUe -hqp -sbP +fgd +kRj +kIH dNS dNS daF -daG -dcj -dTP -dUb -dUj -daG -dUv -dTZ -dWl -diK -dbn +iFW +bxP +gEV +giM +cXr +iFW +iXM +unV +qzt +gEi +vpg daF dNS dNS -iri +huE bYV sLx wya fdk -uis +uwd dNS dpB dqo @@ -92219,18 +77121,18 @@ dvt dwy ebA dpB -gdW -hqp +oRW +kRj uFX -hBr -hBr -hBr -hBr -hBr -jpa -vud -kkm -ibU +sSe +sSe +sSe +sSe +sSe +pKT +hkP +mvW +vqd dTs dTs dTs @@ -92254,13 +77156,13 @@ dTs dTs dTs ebs -aTk -aUl -aUl -aUl -aUl -aUl -aUl +tXC +pfR +pfR +pfR +pfR +pfR +pfR aXS aJy aJy @@ -92291,62 +77193,62 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aZg +bch +sow +sow +sow +qav bac -amv -amS -amS -amS -aqE -bXh +rND +ekL +ekL +ekL +koZ +hEd bXd bXd bXs -blM +stX bir biP biP bjo -blM -boM -bgp -bgp -bgp -bgp +stX +nZE +opx +opx +opx +opx btQ -bvi -bwt -bxD -bxD -bxD -bxD -bxD -bxD -bwv -bER -bxD -bHr -bvi +jXZ +eOQ +tQa +tQa +tQa +tQa +tQa +tQa +pxu +eUA +tQa +lvA +jXZ btQ -cTU -cTU -cTU -hcP -bPi -bVx +hTp +hTp +hTp +rcA +mGO +gxg bVz -qQz +oIu clB clB clB clB -bXe -bXZ -bZq +rPF +skT +vlU bOu bOu bOu @@ -92355,42 +77257,43 @@ bOu bOu bOu bOu -caG -cef +dTy +jvz ceg ceg ciQ ciQ ciQ -dvz -djw -djw -djw -cAl -cjS -chp -chp -chp -czB -cAf -czX -czX -czX +hMH +syW +syW +syW +qMs +ver +jlu +jlu +jlu +vTp +kBP +krr +krr +krr cho -cAf -cAk -cAl +kBP +krx +qMs ciQ ciQ -cjS +ver cjR cho cho cho cho cho -cjQ -clE +flr +mWa +dTs dTs dTs dTs @@ -92406,41 +77309,40 @@ dTs dTs dTs dTs -abt cPL -cTm -cTO -cTO -cUH -hOA +yhT +roA +roA +fFM +qos cVV dNS -vEb -wQS -rGu +wPz +rDW +jnw dNS dNS dbu -daG -dbq -dTP -daK -deu -dUp -dUv -dTP -dWj -deu -dbn +iFW +vNg +gEV +xsH +lhy +jbH +iXM +gEV +mXH +lhy +vpg dbu dNS dNS -iri +huE bYV rdW rdW fdk -cTB +ueQ doL doL edY @@ -92453,19 +77355,19 @@ edY edY doL doL -gdW -hqp +oRW +kRj uFX -qKE -qKE -qKE -qKE -qKE -oQx -vud +kPv +kPv +kPv +kPv +kPv +vwN +hkP dNS dNS -uAo +plx dTs dTs dTs @@ -92495,9 +77397,9 @@ dTs aKw aKw aKw -aZe -aUl -aUl +kak +pfR +pfR aXS aJy aJy @@ -92529,56 +77431,56 @@ aJy aJy aJy aJy -aWZ -aIS -aZg +bch +sow +qav aKw aKw aKw bXd bXd -bXl -bXi -bXt -bWo -bQF -bQF -bQF -bQF -bWo -bYf -caM -caM -cbz -bQF +bqE +sDy +mOU +jqe +fam +fam +fam +fam +jqe +oYF +hoW +hoW +nsh +fam bCs bSY -bwu -bxE -byG -bxE +qQX +hPV +cgS +hPV bAK -bwv +pxu bZQ -aCf -aEM +rJl +fMf aEN aKu bZQ bCs -cev -bNr -bNs -bNs -bPj -bVy -bWn -qQz -cev -cev -cev -cev -bXe +iOT +qhq +ddg +ddg +szM +sUn +qKy +oIu +iOT +iOT +iOT +iOT +rPF aIh bOu bOu @@ -92587,11 +77489,11 @@ bOu bOu bOu bOu -caG -ceU -cef -cei -cfn +dTy +xOv +jvz +fAJ +lWq dTs dTs dTs @@ -92600,24 +77502,24 @@ dTs dTs dTs dTs -cAX -cpv +fgV +yiT chS chS -cjk -cAe -coF +rAt +sfk +ylb dfc dgF jrV dTH -coF -cuT -cAX -ckn -ckn -cpv -cAY +ylb +iSV +fgV +snk +snk +yiT +knY cCb cDd cho @@ -92642,39 +77544,39 @@ dTs dTs dTs cPL -cTn -cTO -cTO -cTO -cVs +szw +roA +roA +roA +gYN cPL dNS dNS -wLV -rGu +mcJ +jnw dNS dNS dbu -daG -dbq -dTP -daK -dUh -dUH -dVG -dVR -dWm -deu -dbn +iFW +vNg +gEV +xsH +mrV +qzE +ohz +hqm +rXF +lhy +vpg dbu dNS dNS -iri +huE bYV rdW rdW fdk -hOK +oqK doL dpC dpC @@ -92687,20 +77589,20 @@ dpC dpC ebB doL -ebG -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -vud +oDF +kRj +rRp +oRW +oRW +oRW +oRW +oRW +oRW +hkP vuu dNS -kkm -dNo +mvW +hBP dTs dTs dTs @@ -92728,12 +77630,12 @@ dTs dTs dTs aKw -aUn -aUk -bdt +hGn +rai +bHj aKw -aZe -aUl +kak +pfR aXS aJy aJy @@ -92744,13 +77646,13 @@ aJy aJy aJy aJy -aTk -aUl -aUl -bOw -bPl -cCR -cCS +tXC +pfR +pfR +xAd +lCQ +sdI +tbq bTi bcQ bTi @@ -92765,21 +77667,21 @@ aJy aJy aJy aJy -aWZ -aIS -aIS -aIS -aIS -bXi -bXm +bch +sow +sow +sow +sow +sDy +gen bXn bXu -bWo +jqe bSY bSY bSY bSY -bWo +jqe bYj bXn bXn @@ -92787,15 +77689,15 @@ bXu bSY bCs bSY -ccl +jHe ccp ccp ccp ccp -aCf +rJl bZQ -aCf -aEM +rJl +fMf aIh bhc bZQ @@ -92807,21 +77709,21 @@ bOu bOu bOu bhc -qQz +oIu bZQ bZQ bZQ bZQ -bXe +rPF aIh bOu bOu bOu bOu bOu -caG -ceU -cef +dTy +xOv +jvz ceg ceg dTs @@ -92836,30 +77738,30 @@ dTs dTs dTs dTs -ceZ -ceZ -ceZ -cnD -caH +ujP +ujP +ujP +eLb +vGw cfw dPY dPY chr -caH -ccM -ceZ -ceZ -ceZ -ceZ -cnD -caH +vGw +oNB +ujP +ujP +ujP +ujP +eLb +vGw cFf cho cho cho cho -cjQ -clE +flr +mWa dTs dTs dTs @@ -92876,65 +77778,65 @@ dTs dTs dTs cPL -cTo -cTO -cTO -cTO -cTO +fQD +roA +roA +roA +roA cVV dNS dNS -wLV -rGu +mcJ +jnw dNS dNS dbu -daG -dbq -dTP -dTP -dTP -dUI -daK -dTP -dWl -deu -dbn +iFW +vNg +gEV +gEV +gEV +kMp +xsH +gEV +qzt +lhy +vpg dbu dNS vuu -iri +huE bYV sLx wya fdk -hOK +oqK dhA dpC -dqp -dqp -dqp -ehF -dqp -dqp -dqp -dqp +xeE +xeE +xeE +pHs +xeE +xeE +xeE +xeE dpC dhA -gdW -hqp -jOe -gdW -dCM -dDs -dDs -dDs -dFM -dGr -dGV -dGV -dHT -uAo +oRW +kRj +rRp +oRW +xPH +vfA +vfA +vfA +uSB +rrn +uzo +uzo +gbe +plx skB dTs dTs @@ -92961,14 +77863,14 @@ dTs dTs dTs dTs -aUk -aVT -acC -bdK -bdt +rai +oUm +iya +rmS +bHj aKw aKw -aZe +kak aXS aJy aJy @@ -92976,19 +77878,19 @@ aJy aJy aJy aJy -aTk -aUl -aTm +tXC +pfR +uWI aKw aKw bOx -bPl +lCQ bRs cEe xMr djZ -bPl -aiA +lCQ +oim aXS aJy aJy @@ -93008,12 +77910,12 @@ aJy bXn bXn bXu -bWo +jqe bSY bSY bSY bSY -bWo +jqe bYI cbv cbv @@ -93021,15 +77923,15 @@ ccg bSY bCs bSY -bwu -bxE -byG -bxE +qQX +hPV +cgS +hPV bAK -bwv +pxu bZQ -aCf -aEM +rJl +fMf aJz bLF bZQ @@ -93041,22 +77943,22 @@ bOv bOv bOv bLF -qQz +oIu bZQ bZQ bZQ bZQ -bXe +rPF aIh bOu bOu bOu bOu -caG -cef +dTy +jvz ceg -cei -cfn +fAJ +lWq dTs dTs dTs @@ -93070,31 +77972,31 @@ dTs dTs dTs dTs -ehx +uQV ceo ceo cen -coG +wDY cfw iAf cgL pUR -ctL +jsJ cen ceo ceo ceo ceo cen -cnD +eLb cGT cho cho cho cho cho -cjQ -clE +flr +mWa dTs dTs dTs @@ -93111,65 +78013,65 @@ dTs dTs cPL cPL -cTL -jAA -hOA +lOF +jZK +qos cPL cPL dNS dNS -syi -rGu +ePI +jnw dNS dNS dbu -daG -dbq -daK -daK -dTP -dTP -dTP -dTP -dWj -deu -dbn +iFW +vNg +xsH +xsH +gEV +gEV +gEV +gEV +mXH +lhy +vpg dbu dNS dNS -iri +huE bYV rdW rdW fdk -hOK +oqK dhA dpC -dqp -dqp -dqp -ehB -ehR -ehR -ehU -dqp +xeE +xeE +xeE +sdp +tfa +tfa +gWq +xeE dpC dhA -gdW -hqp -jOe -gdW -dCN -dDt -bgu -blQ -aZv -aZv -bmi -dHt -dId -kkm -dNo +oRW +kRj +rRp +oRW +rvg +pLV +hrx +nXF +kWs +kWs +aSS +tlg +tXp +mvW +hBP dTs dTs dTs @@ -93196,36 +78098,36 @@ dTs dTs dTs dTs -bcY -bcY -bcY -bdK -aUk -bdt +eQn +eQn +eQn +rmS +rai +bHj aKw -aZe -aUl +kak +pfR aXS aJy -aTk -aUl -aUl -aTm +tXC +pfR +pfR +uWI aKw -aUn -aUk -aUk -bPk -aPP +hGn +rai +rai +oic +eZV aXW aWa aWB aZk -aPP +eZV aiC -aZe -aUl -aUl +kak +pfR +pfR aXS aJy aJy @@ -93242,53 +78144,53 @@ aJy aJy bXn bXu -blM +stX bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +stX +wth +wth +wth +wth +wth btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +ozY +qQX +pxu +pxu +pxu +pxu +pxu +pxu +pxu +eUA +pxu +gOg +hVn btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH ozu ozu xsS -mfK +nXY aIh bOu bOu bOu -caG -cef -cei -cfn +dTy +jvz +fAJ +lWq dTs dTs dTs @@ -93304,24 +78206,24 @@ aDT aDT dTs dTs -cdF +qGX cdw cdw cdw -coH +jLA cfw dPY idg chr -ctM +kuf cdw cdw cnE cdw cdw ceo -chx -cLh +lon +lpP cjR cho cho @@ -93352,58 +78254,58 @@ cVV cPL dNS dNS -syi -rGu +ePI +jnw cZF dNS daF -daG -dbt -daL -daL -daL -daL -dbs -daK -dWj -deu -djt +iFW +foc +tet +tet +tet +tet +kqY +xsH +mXH +lhy +kCr daF dNS dNS -iri +huE bYV rdW rdW fdk -hOK +oqK doL eaV -ehG -ehI -ehJ -ehC +wrm +eFr +tad +vXn ehP ehP -ehV -dqp -dqp -eeE -wRX +orr +xeE +xeE +eTZ +ivm uFX -jOe -gdW -dCN -bgu -blQ -aZv -aZv -aZv -aZv -bmS -dId +rRp +oRW +rvg +hrx +nXF +kWs +kWs +kWs +kWs +lJd +tXp dNS -uAo +plx dTs dTs dTs @@ -93431,36 +78333,36 @@ dTs dTs dTs dTs -and -and -ard -asy -bek -bfP +xTE +xTE +eFm +kkp +pJz +qGD bWq bWq -abC -cby -abG +tLF +jxV +fpS bWq bWq -bMu -bMv -bNt -asy -and -aaZ -aPP +mXz +hvO +tQO +kkp +xTE +keP +eZV aXW aVZ ahK aZk -aPP -aiD +eZV +tBl aKw aKw aKw -aZe +kak aXS aJy aJy @@ -93476,52 +78378,52 @@ aJy aJy aJy bXv -blM +stX bir bki bje bjo -blM -bhk -bhk -bhk -bhk -bhk -btS -bvk -bwv -bwv -bwv -bzP -bwv -bwv +stX +wth +wth +wth +wth +wth +pHV +rkt +pxu +pxu +pxu +pZM +pxu +pxu btQ -bDu -bES -bGg -bHv -bvk -btS -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +oan +nmQ +uLv +gOg +rkt +pHV +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH uml vgm xsS -mfK +nXY aIh bOu bOu -caG -cef -cei -ceT +dTy +jvz +fAJ +pVC dTs dTs dTs @@ -93537,33 +78439,33 @@ vHQ ipQ aDT dTs -cft -cer +rYl +tLg ehz coJ coI -coH +jLA cfw dPY idg chr -ctM +kuf cdw cdw cdw cdw cdw ceo -chx +lon cLi -cjS +ver cjR cho cho cho cho -cjQ -clE +flr +mWa cnC dTs dTs @@ -93580,14 +78482,14 @@ dTs dTs dTs dTs -rIY -cMl +jKH +uFt dNS dNS dNS dNS -wLV -rGu +mcJ +jnw dNS dNS daF @@ -93598,46 +78500,46 @@ dck dck dck dcl -dTX -dWn +orN +qmY dcl dck dck dck dNS -iri +huE bYV sLx wya fdk -hOK +oqK dhA dpC -dqp -dqp -ehL -ehC +xeE +xeE +uoM +vXn ehP ehX -ehV -dqp -dqp -dqp -cWy +orr +xeE +xeE +xeE +mhs uFX -jOe -gdW -dCN -bgy -aZv -aZv -aZv -bpS -aZv -aZv -dId +rRp +oRW +rvg +tNz +kWs +kWs +kWs +ekv +kWs +kWs +tXp dNS -uAo +plx dTs dTs dTs @@ -93665,39 +78567,39 @@ dTs dTs dTs dTs -aSi -aQq -aRi -aRH -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aPP -aXT -aYy -aPP -aPP -aPP +fTe +wkI +jDj +rih +eZV +eZV +eZV +eZV +eZV +eZV +eZV +eZV +eZV +eZV +eZV +tQQ +kFn +eZV +eZV +eZV aXW aVZ aVZ ahU -aio -aiF -bMv -bfP +wEu +sFH +hvO +qGD bWq bWu -aZe -aUl -aUl +kak +pfR +pfR aXS aJy aJy @@ -93710,49 +78612,49 @@ aJy aJy aJy bXv -blM +stX bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +stX +wth +wth +wth +wth +wth btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +ozY +qQX +pxu +pxu +pxu +pxu +pxu +pxu +pxu +eUA +pxu +gOg +hVn btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH ozu ozu xsS -mfK +nXY chA clc -dsf -cef +mYP +jvz ceg dTs dTs @@ -93771,34 +78673,34 @@ vHQ vHQ aDT dTs -cdF +qGX cdw dBQ boG dxO -coH +jLA cfw iAf wcc chr -ctN -cuU -cuU -cuU -cxz +uUu +kPn +kPn +kPn +kqg cdw ceo -chx -cUJ +lon +mdI ciQ -cYg +qKD cho cho cho cho cho -cjQ -clE +flr +mWa dTs dTs dTs @@ -93814,63 +78716,63 @@ dTs dTs dTs dTs -cGO -cMo +kam +eUJ dNS dNS dNS -lJM -fUO -eVR -rBP +kUt +oVA +qeX +xyM dNS dNS dNS dck -ffh -dcW -dcW -dfe +hQO +iEJ +iEJ +sKN dcY -dTX -dWo +orN +nsI dIs dIs djV dck dNS -iri +huE bYV rdW rdW fdk -hOK +oqK dhA dpC -dqp -dqp -dqp -ehC +xeE +xeE +xeE +vXn ehP ehP -ehV -dqp +orr +xeE dpC dhA -gdW -hqp -jOe -gdW -dCO -bgy -aZv -aZv -aZv -aZv -aZv -aZv -dHX -taH +oRW +kRj +rRp +oRW +rmM +tNz +kWs +kWs +kWs +kWs +kWs +kWs +tRo +nkr dTs dTs dTs @@ -93899,40 +78801,40 @@ dTs dTs dTs dTs -aPg -aPO -aOk +tmi +dFH +sIt aOY -adg -aea -aea -aeU -aXU -aXU -aXU -aXU -adg -aea -agg -aXU -aXU -aXU -aXU -aif +uBU +gTt +gTt +fFY +wsS +wsS +wsS +wsS +uBU +gTt +jUC +wsS +wsS +wsS +wsS +fdz aXW aWa aWB aZk -bbv -aSi -aSi -aSi -aQq +mNC +fTe +fTe +fTe +wkI bWv aKw aKw aKw -aZe +kak aXS aJy aJy @@ -93944,12 +78846,12 @@ aJy aJy aJy bXv -bYc +lbI bTi bTi bTi bTi -bYc +lbI bYJ cbw cbw @@ -93957,15 +78859,15 @@ cch bTi bCy bTi -bwu -bxH -byJ -bxH +qQX +fVo +oPs +fVo bAK -bwv +pxu caI -cgi -cgU +mtF +kIj chz cie caI @@ -93977,12 +78879,12 @@ ciE ciE ciE cie -rtW +egx caI caI caI caI -cpw +aEt chA clc dsg @@ -94006,11 +78908,11 @@ vHQ aDT dTs dTs -cdE +qTx boG mVy dBh -coH +jLA cfw cdC ibE @@ -94019,21 +78921,21 @@ ccZ ccZ ccZ cix -ctM +kuf cdw ceo -chx -cVX +lon +ppL ciQ -cjS +ver cjR cho cho cho cho cho -cjQ -clE +flr +mWa ciQ dTs dTs @@ -94049,62 +78951,62 @@ dTs dTs dTs dTs -wPb -wPb -wPb -wPb -jVa -hqp -jOe -xxv -wPb -wPb -wPb +hRa +hRa +hRa +hRa +xMd +kRj +rRp +jUq +hRa +hRa +hRa cXz -dcW -dcW -dey +iEJ +iEJ +scC dcY dTY -dTX -dWp +orN +nqR dTY dTY dcY cXz -wPb -cTF +hRa +bpm bYV rdW rdW fdk -hOK +oqK doL dpC -ehH -ehI -ehK -ehC +eTb +eFr +wMU +vXn ehS ehP -ehV -dqp +orr +xeE ebB doL -gdW -hqp -jOe -gdW -dCN -bgy -aZv -aZv -aZv -aZv -aZv -aZv -dId -uAo +oRW +kRj +rRp +oRW +rvg +tNz +kWs +kWs +kWs +kWs +kWs +kWs +tXp +plx dTs dTs dTs @@ -94132,14 +79034,14 @@ dTs dTs dTs dTs -acq -acE -acN -acS -acV -adh +mZs +xnW +rmm +esK +cYm +dYe aed -aes +mhK dTs dTs dTs @@ -94147,8 +79049,8 @@ dTs dTs dTs aOh -agh -aPP +ueI +eZV aaB abZ abZ @@ -94157,19 +79059,19 @@ amM aVZ aVZ aZk -aYf +rqz aOh aXc aOh -aPO +dFH bWv aKw aKw aKw aKw -aZe -aUl -aUl +kak +pfR +pfR aXS aJy aJy @@ -94178,12 +79080,12 @@ aJy aJy aJy bXv -bYc +lbI bTi bTi bTi bTi -bYc +lbI bZs aJy aJy @@ -94191,15 +79093,15 @@ bXv bTi bCy bTi -ccn +niJ ccq ccq ccq ccq -cgi +mtF caI -cgi -cgU +mtF +kIj chA cif caI @@ -94211,16 +79113,16 @@ clc clc clc cif -rtW +egx caI caI caI caI -cpw +aEt chA clc -dsh -dIh +pVD +ibP dHb dLq dTs @@ -94240,11 +79142,11 @@ vHQ aDT dTs dTs -bmC +kHQ btY mVy clF -coH +jLA cfw idg cdC @@ -94253,23 +79155,23 @@ idg oyf idg pUR -ctM +kuf cdw ceo -chx -cWC -cAl +lon +uQw +qMs ciQ -cjS +ver cjR cho cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ dTs dTs @@ -94283,61 +79185,61 @@ dTs dTs dTs dTs -ckx -ckx -ckx -cYe -gdW -hqp +dwM +dwM +dwM +jMP +oRW +kRj uFX -hBr -hBr -hBr -jpa -dkH -dTX -dTX -dcn -dcn -dTX -dcn -dWp -dTX -dTX -dTX -dkH -dUL -dUN +sSe +sSe +sSe +pKT +kzE +orN +orN +uXH +uXH +orN +uXH +nqR +orN +orN +orN +kzE +hFN +reP bYV sLx wya fdk -hOK +oqK dhA dpC -dqp -dqp -ehM -eia -ehT -ehQ -ehW -dqp +xeE +xeE +mhG +xpE +iGJ +jtE +eim +xeE dpC dhA -gdW -hqp -jOe -gdW -dCP -blp -blR -aZv -aZv -aZv -aZv -bmT -dHY +oRW +kRj +rRp +oRW +kok +vzM +wKC +kWs +kWs +kWs +kWs +pmN +olM dTs dTs dTs @@ -94368,10 +79270,10 @@ dTs dTs dTs tQR -xlE -ykJ -ykJ -rNg +uvG +pxa +pxa +rPb tQR sLS tQR @@ -94381,8 +79283,8 @@ dTs dTs dTs aOh -agh -aPP +ueI +eZV aXW aVZ aVZ @@ -94391,11 +79293,11 @@ aCp aVZ aVZ aZk -aYf +rqz bdc -aRM -aPg -aPO +rsy +tmi +dFH bWv aKw aKw @@ -94404,20 +79306,20 @@ aKw aKw aKw aKw -aZe -aUl +kak +pfR aXS aJy aJy aJy aJy bXv -bYc +lbI bTi bTi bTi bTi -bYc +lbI bZt cbx cbx @@ -94425,15 +79327,15 @@ cci bTi bCy bTi -bwu -bxH -byJ -bxH +qQX +fVo +oPs +fVo bAK -bwv +pxu caI -cgi -cgU +mtF +kIj chB cig caI @@ -94445,17 +79347,17 @@ cld cld cld cig -rtW +egx caI caI caI caI -cpw +aEt chA clc clc -dsh -dIh +pVD +ibP dLr dTs dTs @@ -94474,11 +79376,11 @@ vHQ aDT dTs dTs -cdF +qGX btY dBh coI -coH +jLA cfw iAf uYD @@ -94487,15 +79389,15 @@ idg idg dPY pUR -ctM +kuf cdw ceo -chx -cAm -cXp +lon +gQJ +nQu ciQ ciQ -cYg +qKD cho cho cho @@ -94503,9 +79405,9 @@ cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ dTs dTs @@ -94518,60 +79420,60 @@ dTs dTs dTs dTs -cAZ -cAZ -dsU -cXn -hqp +kho +kho +xJE +ohA +kRj uFX rpQ uFX uFX -oQx -dcn -dTX -dcn -dTX -dcn -dcn -dTX -dWs -dTX -dTX -dTX -dTX -dUM -dUN +vwN +uXH +orN +uXH +orN +uXH +uXH +orN +fkP +orN +orN +orN +orN +hhA +reP iVZ rdW rdW fdk -hOK +oqK dhA dpC -dqp -dqp -dqp -eib -dqp -dqp -ehD -dqp +xeE +xeE +xeE +udi +xeE +xeE +qKB +xeE dpC dhA -gdW -hqp -jOe -gdW -dCQ -dDz -blS -blR -aZv -aZv -bmj -dHw -dId +oRW +kRj +rRp +oRW +cKY +vaL +gYg +wKC +kWs +kWs +pmG +qrx +tXp dTs dTs dTs @@ -94602,21 +79504,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA +xRA +uay +uay +qHU asB -aet -aeX -jkn +sjy +rOJ +tdQ aow dTs dTs dTs dTs -agi -aPP +ewp +eZV aXW aVZ aVZ @@ -94624,73 +79526,73 @@ aVZ aCp aWa aWB -xZE -aYf +xhk +rqz aOh -aWz -aPi +wXa +jcz dTs dTs dTs -aUk -aUk -aUk -aUk -aUk -bdt +rai +rai +rai +rai +rai +bHj aKw aKw -aZe +kak aXS aJy aJy aJy bXv -blM +stX bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +stX +wth +wth +wth +wth +wth btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +ozY +qQX +pxu +pxu +pxu +pxu +pxu +pxu +pxu +eUA +pxu +gOg +hVn btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH ozu ozu xsS -mfK +nXY chA clc clc clc -dsh -dIh +pVD +ibP dHb dTs dTs @@ -94708,11 +79610,11 @@ vHQ aDT dTs dTs -cdF +qGX bPN clF coJ -coH +jLA cfw cdC idg @@ -94721,15 +79623,15 @@ icM dPZ dPZ gsr -nYZ +oJp cdw cen -czC -cAm -cYf -cAl +uJc +gQJ +rmi +qMs ciQ -cjS +ver cjR cho cho @@ -94739,10 +79641,10 @@ cho cho cho cho -cjQ -chn +flr +hoX dTs -chn +hoX dTs dTs dTs @@ -94750,62 +79652,62 @@ dTs dTs dTs dTs -cAZ -cAZ -cAZ -cAZ -dtX -cXo -hqp +kho +kho +kho +kho +pYm +gzw +kRj rpQ rpQ uFX -jOe -gdW +rRp +oRW cXz dTY dTY dTY -dUq -dUq -dTX -dTX -dUq -dUq +wXM +wXM +orN +orN +wXM +wXM dcY cXz -mGo -dlx +rZd +qAS bYV rdW rdW fdk -hOK +oqK doL dpC -ehB -ehR -ehR -ehO -ehU -dqp -dqp -dqp +sdp +tfa +tfa +sBh +gWq +xeE +xeE +xeE dpC doL -gdW -hqp -jOe -gdW -dCR -dDA -dEe -dEe -dFN -dEe -dGY -dHx -dIa +oRW +kRj +rRp +oRW +wrx +epb +npP +npP +ipT +npP +qBx +pBF +qXq dTs dTs dTs @@ -94836,21 +79738,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA -asC -atp -aud -avq +xRA +uay +uay +qHU +fOr +kEu +oBG +mXo aow dTs dTs dTs dTs -aXv -aPP +oKw +eZV aaC aXC aXC @@ -94859,66 +79761,66 @@ aCQ aVZ aVZ aZk -aYf -aRM -aRN -aOT +rqz +rsy +xgq +eRF dTs dTs dTs dTs -bcY -bcY -bcY -bcY -bdK -aUk -bdt +eQn +eQn +eQn +eQn +rmS +rai +bHj aKw -aZe +kak aXS aJy aJy bXv -blM +stX bir bki bje bjo -blM -bhk -bhk -bhk -bhk -bhk -btS -bvk -bwv -bwv -bwv -bwv -bwv -bwv +stX +wth +wth +wth +wth +wth +pHV +rkt +pxu +pxu +pxu +pxu +pxu +pxu btQ -bwv -bER -bwv -bHv -bvk -btS -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +pxu +eUA +pxu +gOg +rkt +pHV +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH uml vgm xsS -mfK +nXY chA clc clc @@ -94942,11 +79844,11 @@ vHQ aDT dTs dTs -aAy -bQQ +iYg +hNn coI cdw -coH +jLA cfw dPY dPY @@ -94955,16 +79857,16 @@ poi qEJ poi cix -nYZ +oJp cdw ceo -chx -cAm -cAZ -cYf -cAl +lon +gQJ +kho +rmi +qMs ciQ -cjS +ver cjR cho cho @@ -94983,64 +79885,64 @@ dTs dTs dTs dTs -cuQ -cuQ +fxc +fxc djx -cAZ -cAZ -dtY -gdW -cWy -qKE -qKE +kho +kho +qPj +oRW +mhs +kPv +kPv uFX -jOe -gdW +rRp +oRW dck dcY ddU dTY -dUr -dUr -dTX -dUJ -dUq -dUr +xIA +xIA +orN +gOm +wXM +xIA dcY dck dNS -iri +huE bYV sLx wya fdk -hOK +oqK doL eaV -ehC +vXn ehP ehP ehP -ehV -dqp -eid -dqp -dxd +orr +xeE +gns +xeE +nuW doL -ebG -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -vud +oDF +kRj +rRp +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +hkP dNS -uAo +plx dTs dTs dTs @@ -95070,21 +79972,21 @@ dTs dTs dTs aow -aqM -asx -asx -asA +vfJ +uay +uay +qHU asB -atT -aud -avr +mKr +oBG +jbi aow dTs dTs dTs dTs -aXv -aPP +oKw +eZV aaB abZ abZ @@ -95093,8 +79995,8 @@ amM aVZ aVZ aZl -bbw -aWz +oJN +wXa dTs dTs dTs @@ -95103,56 +80005,56 @@ dTs dTs dTs dTs -alU -bcY -bcY -bcY -bdK -bdt +iZq +eQn +eQn +eQn +rmS +bHj aKw -aZe +kak aXS aJy bXv -blM +stX bir biP biP bjo -blM -bhk -bhk -bhk -bhk -bhk +stX +wth +wth +wth +wth +wth btQ -bvj -bwu -bwv -bwv -bwv -bwv -bwv -bwv -bwv -bER -bwv -bHv -bIu +ozY +qQX +pxu +pxu +pxu +pxu +pxu +pxu +pxu +eUA +pxu +gOg +hVn btQ -dCt -dCt -dCt -dCt -dCt -dCt -dCt -qDb +sZM +sZM +sZM +sZM +sZM +sZM +sZM +sSM naH ozu ozu xsS -mfK +nXY chA clc clc @@ -95168,19 +80070,19 @@ dTs dTs aDT aEc -aEs -aEs -aEs -aEs +sam +sam +sam +sam aEc aDT dTs dTs dTs -cdF +qGX cdw cdw -coH +jLA cfw cge cgL @@ -95189,17 +80091,17 @@ dPY idg dPY chr -nYZ +oJp cdw ceo -chx -cAm -cAZ -cAZ -cYf -cAl +lon +gQJ +kho +kho +rmi +qMs ciQ -cjS +ver cjR cho cho @@ -95215,67 +80117,67 @@ cho cho dTs dTs -clE +mWa ciQ ciQ ciQ cnC -cuQ +fxc djx -dtY -gdW -gdW -gdW -dIw -hqp -jOe -gdW +qPj +oRW +oRW +oRW +hXb +kRj +rRp +oRW dck dcZ ddU dcY -dfi -dfh -dcn -dcn -dfi -dfi +jBP +fcB +uXH +uXH +jBP +jBP djW dck dNS -iri +huE bYV rdW rdW fdk -hOK +oqK doL dpC -ehC +vXn ehP ehP ehP -ehV -dqp -dqp -dqp +orr +xeE +xeE +xeE dpC doL -gdW -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -vud +oRW +kRj +rRp +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +hkP dNS -kkm -dNo +mvW +hBP dTs dTs dTs @@ -95304,21 +80206,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA -asG -aud -aud -avq +xRA +uay +uay +qHU +iSk +oBG +oBG +mXo aow dTs dTs dTs dTs -aXv -aPP +oKw +eZV aXW aVZ aVZ @@ -95328,7 +80230,7 @@ aWa aWB aGK aOh -aWA +gAW dTs dTs dTs @@ -95338,22 +80240,22 @@ dTs dTs dTs dTs -bcY -bcY -anb -bcY -bdK -bdt +eQn +eQn +mus +eQn +rmS +bHj aKw -aZe +kak aXS bXv -bYc +lbI bTi bTi bTi bTi -bYc +lbI bYJ cbw cbw @@ -95361,15 +80263,15 @@ cch bTi bCy bTi -bwu -bxH -byJ -bxH +qQX +fVo +oPs +fVo bAK -bwv +pxu caI -cgi -cgU +mtF +kIj chz cie caI @@ -95381,40 +80283,40 @@ ciE ciE ciE cie -rtW +egx caI caI caI caI -cpw +aEt chA clc clc clc clc -dsh -dIh +pVD +ibP dLr dLC -ccf +nnw dTs dTs dTs dTs aDT -aEu -chY -ceX -caH +sSr +wgM +nuv +vGw dTs dTs dTs dTs dTs -aAy -cdE +iYg +qTx cdw -coH +jLA cfw dPY dPY @@ -95423,20 +80325,20 @@ idg idg dPY chr -nYZ +oJp cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cXp +lon +gQJ +kho +kho +kho +nQu ciQ ciQ -cjS -chp -chp +ver +jlu +jlu cjR cho cho @@ -95449,67 +80351,67 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ ciQ ciQ ciQ cYh -dtY -gdW -gdW -gdW -gdW -hqp -jOe -gdW +qPj +oRW +oRW +oRW +oRW +kRj +rRp +oRW dck dck ddV dck dck jIH -dcn -dhX +uXH +uyC dcl dck dck dck dNS -iri +huE bYV rdW vpz dPf -hOK +oqK dhA dpC -ehC +vXn ehP ehP ehS -ehV -dqp -ehE -dqp +orr +xeE +lcX +xeE dpC dhA -gdW -hqp -jOe -gdW -dCM -dDs -dDs -dDs -dFM -dDs -dDs -dGr -dHT +oRW +kRj +rRp +oRW +xPH +vfA +vfA +vfA +uSB +vfA +vfA +rrn +gbe dNS -uAo +plx dTs dTs dTs @@ -95538,21 +80440,21 @@ dTs dTs dTs aow -aqK -asx -asx -asA +xRA +uay +uay +qHU aow -aue -aud -avq +xvp +oBG +mXo aow dTs dTs dTs dTs -aXv -aPP +oKw +eZV aXW aVZ aVZ @@ -95563,7 +80465,7 @@ aVZ aGK aip aOh -aWz +wXa dTs dTs dTs @@ -95573,21 +80475,21 @@ dTs dTs dTs dTs -and -and -and -and -bek -bXj -bdt -aZe +xTE +xTE +xTE +xTE +pJz +gcH +bHj +kak bXy -bYc +lbI bTi bTi bTi bTi -bYc +lbI bZs aJy aJy @@ -95595,15 +80497,15 @@ bXv bTi bCy bTi -ccn +niJ ccq ccq ccq ccq -cgi +mtF caI -cgi -cgU +mtF +kIj chA cif caI @@ -95615,12 +80517,12 @@ clc clc clc cif -rtW +egx caI caI caI caI -cpw +aEt chA clc clc @@ -95630,25 +80532,25 @@ clc dsg dHb dLq -ccf -cdA +nnw +bqD dTs dTs dTs dTs -aEC -chZ -civ -caH +fKO +gHm +qrC +vGw dTs dTs dTs dTs dTs -cgc -aAy -cdE -coH +fQe +iYg +qTx +jLA cfw dPY dPY @@ -95657,23 +80559,23 @@ icM cdc cdc ciy -ctM +kuf cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cYf -cAl +lon +gQJ +kho +kho +kho +rmi +qMs ciQ ciQ ciQ ciQ -cjS -chp -chp +ver +jlu +jlu cjR cho cho @@ -95684,66 +80586,66 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ ciQ ciQ cnC -djy +eFb djz -aTj -gdW -gdW -hqp -jOe -gdW -gdW +pDB +oRW +oRW +kRj +rRp +oRW +oRW dda ddW dea -dfj -thd -dfj -dfj -dfj +oKj +xGx +oKj +oKj +oKj dea dda -dkI -dpc -dIz +tbR +yda +dxH bYV nRV vHj fdk -hOK +oqK dhA dpC -ehN -ehQ -ehZ -ehT -ehW -dqp -dqp -dqp +ocs +jtE +qdh +iGJ +eim +xeE +xeE +xeE dpC dhA -gdW -hqp -jOe -gdW -dCN -dDt -blq -blU -ber -ber -bmN -dHt -dId +oRW +kRj +rRp +oRW +rvg +pLV +nfK +vnT +hbn +hbn +kZP +tlg +tXp dNS -uAo +plx dTs dTs dTs @@ -95772,21 +80674,21 @@ dTs dTs dTs aow -apx -arf -arf -asz +wQB +rdD +rdD +hTW aow aow -auI +bFh aow aow -awC -awC +vkW +vkW dTs dTs -aHO -aPP +oKw +eZV aaC aXC aXC @@ -95797,7 +80699,7 @@ aVZ aGK aOh aOh -aWz +wXa dTs dTs dTs @@ -95807,73 +80709,73 @@ dTs dTs dTs dTs -bif -bif -biS -bhk -bhk -bfQ -bdK -bdt -bXz -bYc -bYF -bYF -bYF -bYF -bYc -caL -cby -cby -ccj -bYF +pYk +pYk +mnV +wth +wth +byg +rmS +bHj +kzs +lbI +gjn +gjn +gjn +gjn +lbI +rhu +jxV +jxV +tiQ +gjn bCy bTi -bwu -bxH -byJ -bxH +qQX +fVo +oPs +fVo bAK -bwv +pxu caI -cgi -cgU +mtF +kIj chB cig caI bCy -cgC -ciD -cle -cle -clf -clh -clk -rtW -cgC -cgC -cgC -cgC -cpw -cpU +nkv +tLG +osQ +osQ +xRa +fsw +dWU +egx +nkv +nkv +nkv +nkv +aEt +tIv czj clc clc clc clc -dsh -dIh +pVD +ibP dLr dLI -cdA -cdv +bqD +yfL dTs dTs -cdE -chx -chZ -civ -caH +qTx +lon +gHm +qrC +vGw dTs dTs dTs @@ -95881,8 +80783,8 @@ dTs dTs dTs dTs -cdF -coH +qGX +jLA dPR iAf eVk @@ -95891,25 +80793,25 @@ poi poi ccZ cix -ctM +kuf cdw ceo -chx -cAm -cAZ -cAZ -cAZ -cAZ -cYf -cAl +lon +gQJ +kho +kho +kho +kho +rmi +qMs ciQ ciQ ciQ ciQ ciQ ciQ -cjS -chp +ver +jlu cjR cho cho @@ -95919,22 +80821,22 @@ cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ ciQ ciQ dkK -drg -cZc -gdW -hqp -jOe -gdW -cZc +kQj +eMx +oRW +kRj +rRp +oRW +eMx dda -ddX +ggL dea dea rAP @@ -95950,34 +80852,34 @@ snD eXM rdW fdk -hOK +oqK doL dpC -dqp -dqp -dqp -eib -dqp -dqp -dqp -dqp +xeE +xeE +xeE +udi +xeE +xeE +xeE +xeE ebB doL -gdW -hqp -jOe -gdW -dCN -blq -blU -ber -ber -ber -ber -bnx -dId -taH -xFk +oRW +kRj +rRp +oRW +rvg +nfK +vnT +hbn +hbn +hbn +hbn +pub +tXp +nkr +iPx dTs dTs dTs @@ -96005,22 +80907,22 @@ dTs dTs dTs dTs -acF -acO -acT -asx -adn -aef -aeu -ayM -avX -awd -awd -awd +uXK +qVu +fPa +uay +sjp +qWs +nbm +jId +efz +pLg +pLg +pLg axl dTs dTs -aPP +eZV aaB abZ abZ @@ -96031,6 +80933,7 @@ aVZ aHd dTs aOh +wXa dTs dTs dTs @@ -96040,74 +80943,73 @@ dTs dTs dTs dTs -dTs -bgP +wns biw -biT -bit -bjs -bjJ -bgj -bdK -bXA -blM +qzD +noQ +jfr +lme +hrH +rmS +tNu +stX bir biP biP bjo -blM -boS -bif -bif -bif -bif +stX +rgy +pYk +pYk +pYk +pYk btQ -bvi -bww -bxJ -bxJ -bxJ -bxJ -bxJ -bxJ -bwv -bER -bxJ -bHw -bvi +jXZ +lCN +kDT +kDT +kDT +kDT +kDT +kDT +pxu +eUA +kDT +iFr +jXZ btQ -ejR -goq -dCt -dCt -clg -cli +ibZ +cZU +sZM +sZM +pUB +xwo cll -rtW +egx cog cog cog cog -cpw -cpV -czS +aEt +nTe +kuz czj clc clc clc clc -dsh -dIh +pVD +ibP dLJ -cdA +bqD cdw -cdv -aDU -cer -chx -chZ -civ -caH +yfL +dpj +tLg +lon +gHm +qrC +vGw dTs dTs dTs @@ -96115,8 +81017,8 @@ dTs dTs dTs dTs -cdF -coH +qGX +jLA dPR dPY idg @@ -96125,27 +81027,27 @@ idg ibE cdC chr -ctM +kuf cdw ceo -chx -cuT -cBa -cBa -cBa -cBa -cBa -cAX -ckn -cpv +lon +iSV +xHk +xHk +xHk +xHk +xHk +fgV +snk +yiT chS chS chS cZd ciQ ciQ -cjS -chp +ver +jlu cjR cho cho @@ -96155,22 +81057,22 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ ciQ dnC -cYe -gdW -gdW -hqp -jOe -gdW -cZc +jMP +oRW +oRW +kRj +rRp +oRW +eMx dde -ddY +xVf dea -ddY +xVf dea pbC dcR @@ -96184,33 +81086,33 @@ taG hzC rdW fdk -hOK +oqK dhA dpC -dqp -dqp -dqp -eic -dqp -dqp -dqp -dqp +xeE +xeE +xeE +mLw +xeE +xeE +xeE +xeE dpC dhA -gdW -hqp -jOe -gdW -dCN -blr -ber -ber -ber -ber -ber -ber -dId -xFk +oRW +kRj +rRp +oRW +rvg +nxU +hbn +hbn +hbn +hbn +hbn +hbn +tXp +iPx dTs dTs dTs @@ -96239,22 +81141,22 @@ dTs dTs dTs ahT -apm -arb -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -avY -awf -awf -awD +eDk +puf +lZe +lZe +lZe +lZe +lZe +lZe +jlh +iUN +iUN +sez axl ahT dTs -aPP +eZV aXW aVZ aVZ @@ -96265,7 +81167,7 @@ aVZ aZk dTs aOh -aWA +gAW dTs dTs dTs @@ -96275,57 +81177,57 @@ dTs dTs dTs dTs -bgQ +nFD bhi -bhD +xGP bia -bjt -bjK -bgj -asP -bgT -blM +mBx +luC +hrH +dah +rsE +stX bir bki bje bjo -blM -boL +stX +rFk bhi bhi bhi bhi btQ -bvi -bvi -bvi -byL -bvi -bvi -bvi -bvi -bwu -bEQ -bvi -byL -bvi +jXZ +jXZ +jXZ +fpF +jXZ +jXZ +jXZ +jXZ +qQX +uEF +jXZ +fpF +jXZ btQ cNW -gQE -dCt -dCt -dCt -dCt -oXx -qDb +mVn +sZM +sZM +sZM +sZM +sxs +sSM naH ozu ozu xsS -mfK -cuR -cli -dsi +nXY +qxk +xwo +qgG clc clc clc @@ -96333,24 +81235,24 @@ clc clc dsg dLK -cdA +bqD cdw cej cdw cdw -chx -chZ -civ -ccM -dTs -cft -cgK -dTs -ceW -ceW -ceW -cer -coH +lon +gHm +qrC +oNB +dTs +rYl +fDt +dTs +vBK +vBK +vBK +tLg +jLA cfw idg idg @@ -96359,12 +81261,12 @@ dPY dPY idg pUR -aaY +sOH cdw cen -chy -caH -caH +qug +vGw +vGw cCc cCc cEf @@ -96374,13 +81276,13 @@ cEf cEf cCc cCc -caH +vGw dgW chS chS cZd ciQ -cjS +ver cjR cho cho @@ -96390,21 +81292,21 @@ cho cho cho cho -cjQ -clE +flr +mWa ciQ cnC dnD -pSM -gdW -hqp -jOe -gdW -cZc +qDA +oRW +kRj +rRp +oRW +eMx dde -ddY +xVf dea -dfk +wgH dea dcN wRi @@ -96418,32 +81320,32 @@ scm vnf wya fdk -hOK +oqK dhA dpC -dqp -ehB -ehR -ehO -ehR -ehU -dqp -dqp -dqp -eeE -wRX +xeE +sdp +tfa +sBh +tfa +gWq +xeE +xeE +xeE +eTZ +ivm uFX -jOe -gdW -dCO -blr -ber -ber -boK -ber -ber -ber -dId +rRp +oRW +rmM +nxU +hbn +hbn +kdM +hbn +hbn +hbn +tXp dTs dTs dTs @@ -96473,22 +81375,22 @@ dTs dTs dTs ahT -apm -arb -ayZ -ayZ -ayZ -ayZ -ebT -ayZ -ayZ -awz -azk -avX +eDk +puf +lZe +lZe +lZe +lZe +nAG +lZe +lZe +fRo +eXJ +efz axl dTs dTs -aPP +eZV aXW aVZ aVZ @@ -96498,9 +81400,9 @@ aVZ aVZ aZk dTs -aPg -aRM -aRN +tmi +rsy +xgq dTs dTs dTs @@ -96508,23 +81410,23 @@ dTs dTs dTs dTs -bhH -bhj +rSi +tqE bhi -bhD -bhZ -bhk -bjL -bie -bie -blg -blM +xGP +ygf +wth +iOL +lPQ +lPQ +pql +stX bir biP biP bjo -blM -boL +stX +rFk cpu brc brc @@ -96538,53 +81440,53 @@ bDR bDR btQ bDR -bvk -bET +rkt +whw bDR btQ btQ btQ cNW -gQE -euG -hpw -hpw -hpw -hpw -kVU +mVn +xHr +kaw +kaw +kaw +kaw +qVE naH ozu ozu xsS -mfK -dCt -dCt -dsk +nXY +sZM +sZM +uqQ clc clc clc clc clc dsg -dLL -cdA +hlV +bqD cdw cdw -aDV -aEe -chy -cib -ceY -cdA -cdv -aFG -cdv -cer +ltl +wje +qug +tZb +oBh +bqD +yfL +nuR +yfL +tLg cdw cdw cdw cdw -coK +mTs cfw iAf uYD @@ -96593,30 +81495,30 @@ cdc cdc cdc ciy -ctN -cuU -cyS -cjT -cjT -cBb +uUu +kPn +sHc +lzb +lzb +mmH cCc -cDe -cEg -cEg -cEg -cEg +wTC +wgJ +wgJ +wgJ +wgJ cDf cIz cCc -ceZ -cnD -caH -caH -cUJ +ujP +eLb +vGw +vGw +mdI ciQ ciQ -cjS -chp +ver +jlu cjR cho cho @@ -96629,16 +81531,16 @@ cYi ciQ ciQ dkK -gdW -gdW -hqp -jOe -gdW -gdW +oRW +oRW +kRj +rRp +oRW +oRW dda -ddZ +gYc dea -ddY +xVf dea hAB dhZ @@ -96652,32 +81554,32 @@ scm rdW hzC fdk -hOK +oqK doL eaV -dqp -ehC +xeE +vXn ehP ehP ehP -ehV -dqp -dqp -dqp -dqp -cWy +orr +xeE +xeE +xeE +xeE +mhs uFX -jOe -gdW -dCN -blr -ber -ber -ber -ber -ber -ber -dId +rRp +oRW +rvg +nxU +hbn +hbn +hbn +hbn +hbn +hbn +tXp dTs dTs dTs @@ -96707,18 +81609,18 @@ dTs dTs dTs dTs -apm -arb -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayX -ayZ -avX +eDk +puf +lZe +lZe +lZe +lZe +lZe +lZe +lZe +tGO +lZe +efz axl dTs dTs @@ -96732,8 +81634,8 @@ amK aWb axo dTs -aPi -aRN +jcz +xgq aeE dTs dTs @@ -96742,58 +81644,58 @@ dTs dTs dTs dTs -bgA -bgP +rfS +wns bix -bhD +xGP bia -bit -bjM -bjM -bjM -bjM -bju +noQ +jAj +jAj +jAj +jAj +tJp bir biP biP bjo -blM -boL +stX +rFk bhi brc -bsc -bsM -btT -bvl -bwx -bxK -awA -bzQ -bAM -bAM -bsd -brf -bEU -bGh -bHx -bIv +kce +xtn +jUo +rTR +taO +eUn +nYu +mEX +vVg +vVg +iPo +oer +uje +hHe +eKH +fGg brc cNW -gQE -hwc +mVn +uRZ hCf -hqT -hqT -hqT -shm +iyx +iyx +iyx +rXn naH uml vgm xsS -bUB +ffO bVD -goq -dsW +cZU +iPR czj clc clc @@ -96801,10 +81703,10 @@ clc clc dsg dLM -ccN -cdx +xLt +xVW cdw -chx +lon aEi ccZ ccZ @@ -96839,20 +81741,20 @@ cDf cDf cDf cDf -cHx +sKM cIA cEf cdw -cpP -ceX -caH -cWC -djw -cAl +htg +nuv +vGw +uQw +syW +qMs ciQ ciQ -cjS -chp +ver +jlu cjR cho cho @@ -96863,12 +81765,12 @@ cYi ciQ ciQ doN -gdW -gdW -hqp -jOe -gdW -gdW +oRW +oRW +kRj +rRp +oRW +oRW dde dea dea @@ -96886,34 +81788,34 @@ scm rdW hzC fdk -hOK +oqK dhA dpC -dqp -ehC +xeE +vXn ehP ehP ehP -ehV -dqp -dqp +orr +xeE +xeE dpC dhA -gdW -hqp -jOe -gdW -dCS -blv -blV -ber -ber -ber -ber -bnK -dId -kkm -ibU +oRW +kRj +rRp +oRW +quY +uag +iGe +hbn +hbn +hbn +hbn +pfU +tXp +mvW +vqd dTs dTs dTs @@ -96941,18 +81843,18 @@ dTs dTs dTs dTs -apm -arc -ayO -ayZ -ayZ -axQ -azc -azc -ayO -ayX -ayZ -awE +eDk +pSU +xkR +lZe +lZe +tyn +umU +umU +xkR +tGO +lZe +dLy dTs dTs dTs @@ -96977,11 +81879,11 @@ dTs dTs dTs dTs -bgA -bgP -bhD +rfS +wns +xGP bia -bhZ +ygf bjN bjG bjG @@ -96991,31 +81893,31 @@ bmh bki bje bjo -blM -boT -bgp +stX +oqu +opx bAm -bsd -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -bsN -brf -bEU -bsN -bsN -bsN +iPo +rbX +rbX +rbX +rbX +rbX +rbX +rbX +rbX +rbX +rbX +oer +uje +rbX +rbX +rbX bAm -cTU -hcP -hwc -kVU +hTp +rcA +uRZ +qVE mdP nAm nAm @@ -97024,21 +81926,21 @@ tSK ozu ozu xsS -bUC +kIX bVE -gQE +mVn duy -dEY +tRd dib dib dib dib dLu dLN -ccO -ccN -cek -chy +npN +xLt +ntL +qug cfw cdC cdC @@ -97073,40 +81975,40 @@ cDf cDf cDf cDf -cHx +sKM cIB cEf cdw cLj -civ -cMN -cid -cOk -cYf -djw +qrC +rez +mbN +lyP +rmi +syW dTs ciQ ciQ -cjS +ver cjR cho cho cho cho -cjQ -clE +flr +mWa ciQ doO -gdW -gdW -hqp +oRW +oRW +kRj uFX -hBr -jpa -ddc +sSe +pKT +iYc dea dea -ddY +xVf dea dcN dhZ @@ -97120,35 +82022,35 @@ scm sLx hjm fdk -hOK +oqK dhA dpC -dqp -ehN -ehT -ehT -ehT -ehW -dqp -dqp +xeE +ocs +iGJ +iGJ +iGJ +eim +xeE +xeE dpC dhA -gdW -hqp -jOe -gdW -dCT -dDG -bme -blV -ber -ber -bmR -dHw -dId +oRW +kRj +rRp +oRW +xJY +qWj +mrQ +iGe +hbn +hbn +qiy +qrx +tXp dNS dNS -kkm +mvW dTs dTs dTs @@ -97178,15 +82080,15 @@ ajz ajz arJ arJ -atk -auf +rOp +mxd arJ ajz ajz -ayK -ayX -ayZ -axg +mhC +tGO +lZe +seL dTs dTs dTs @@ -97201,7 +82103,7 @@ dTs dTs dTs dTs -ady +tCP aeE aeE ayD @@ -97211,11 +82113,11 @@ dTs dTs dTs dTs -bhH -bhj -bhD +rSi +tqE +xGP bia -bhZ +ygf bir biP biP @@ -97225,31 +82127,31 @@ biP biP biP bjo -bhF -bit -blL -bre -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -brf -bEU -brf -brf -brf -bre -euG -hpw +nGr +noQ +ybq +xSQ +oer +oer +oer +oer +oer +oer +oer +oer +oer +oer +oer +oer +uje +oer +oer +oer +xSQ +xHr +kaw hCf -kVU +qVE naH ozu ozu @@ -97258,21 +82160,21 @@ bRr ozu ozu xsS -bUC +kIX bVE -gQE +mVn duy -dEY +tRd dib dib dib dib dLu dLO -ccP -cdy -cel -ceX +sJD +gcR +kKE +nuv cfw cdC cdC @@ -97307,22 +82209,22 @@ cDf cDf cDf cDf -cHx +sKM cDf cCc cdw cLj -civ -cMO -cNC -cOk -cOk +qrC +oOp +xBI +lyP +lyP dTs dTs dTs ciQ ciQ -cjS +ver cjR cho cho @@ -97331,16 +82233,16 @@ cho cYi ciQ doO -cZe -gdW -cWy -qKE -qKE -oQx -ddd +gwQ +oRW +mhs +kPv +kPv +vwN +thE dea dea -deA +rMh dea dcN dhZ @@ -97354,35 +82256,35 @@ scm rdW hzC fdk -hOK +oqK doL dpC -dqp -dqp -eic -dqp -dqp -dqp -dqp -dqp +xeE +xeE +mLw +xeE +xeE +xeE +xeE +xeE ebB doL -ebG -hqp -jOe -gdW -dCR -dDH -dEe -dEe -dFN -dEe -dGY -dEe -dIe +oDF +kRj +rRp +oRW +wrx +gUt +npP +npP +ipT +npP +qBx +npP +lOB vuu dNS -taH +nkr dTs dTs dTs @@ -97409,19 +82311,19 @@ dTs dTs dTs ajz -anN -arK -asE -atk -atQ -auK -avx +jzg +qUf +xyw +rOp +htm +iyj +kWO ajz -ayK -ayX -ayZ -avX -awd +mhC +tGO +lZe +efz +pLg dTs dTs dTs @@ -97435,21 +82337,21 @@ dTs dTs dTs dTs -ayp +epv aeE aeE ayD -azz +fFk dTs dTs dTs dTs dTs dTs -bgP -bhD +wns +xGP bia -bhZ +ygf bir biP biP @@ -97459,31 +82361,31 @@ biP biP biP bjo -bhF -bib -bju -brf -brf -brf -btU -bvm -bwy -bwy -bwy -cvj -bvm -bwy -bwy -bwy -bEV -bGi -brf -brf -brf -fpu -hqT +nGr +vAt +tJp +oer +oer +oer +jsI +kPi +pXs +pXs +pXs +vIt +kPi +pXs +pXs +pXs +gbC +cTy +oer +oer +oer +mix +iyx hCf -kVU +qVE naH ozu ozu @@ -97492,21 +82394,21 @@ bRr uml vgm xsS -bUC +kIX bVE -gQE +mVn duy -dJB +wpo dLk dib dib dib dLu dLO -ccQ -cdz -dnP -ceY +sdt +gaM +nAo +oBh cfw cdC cdC @@ -97541,40 +82443,40 @@ cDf cDf cDf cDf -cHx +sKM cDf cJz cfa cpQ -civ -caH -cND -cOl -cOl +qrC +vGw +kng +pwv +pwv dTs dTs dTs dTs -cAl +qMs ciQ -cjS +ver cjR cho cho cho -cjQ -clE +flr +mWa doO -drg -cZc -gdW -dIw -gdW -gdW +kQj +eMx +oRW +hXb +oRW +oRW dde dea dea -dfk +wgH dea vMp xjY @@ -97588,34 +82490,34 @@ taG hzC hzC fdk -hOK +oqK doL dpC dpC dpC dNr -dqp -dqp +xeE +xeE dpC dpC dpC dpC doL -gdW -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -xxv -wPb -wPb +oRW +kRj +rRp +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +jUq +hRa +hRa dTs dTs dTs @@ -97643,18 +82545,18 @@ dTs dTs dTs ajz -apD +evb arL arL -swg -atk +iTO +rOp arL -avy +fme arJ -ayK -ayX -ebT -axh +mhC +tGO +nAG +oyk avG avG avG @@ -97669,8 +82571,8 @@ dTs dTs dTs dTs -aam -ady +jwB +tCP aeE ayD dTs @@ -97680,10 +82582,10 @@ dTs dTs dTs dTs -bgQ -bhD +nFD +xGP bia -bhZ +ygf bir biP biP @@ -97693,31 +82595,31 @@ biQ biQ biQ bnt -blM -bnu -bif +stX +tLU +pYk bAm -bse -bsN -bsN -bvn -bwz -bsN -bsN -cYp -cZs -bBF -bCD -bDw -brf -brf -bHy -bIw +hwf +rbX +rbX +oNY +qxJ +rbX +rbX +qxE +vGf +lyz +bVB +kgn +oer +oer +kwu +wpU bAm -ejR -goq -hwc -kVU +ibZ +cZU +uRZ +qVE ngo oAM oAM @@ -97726,38 +82628,38 @@ ueZ ozu ozu xsS -bUC +kIX bVE -gQE -dAB +mVn +gtM dJT -dEY +tRd dib dib dib dLu dLO -ccR -caH -caH -ceZ +jFo +vGw +vGw +ujP cfx cdC cdC chr -chY -cel -cel -cel -cjT -cjT -cjT -cjT -cjT -cjT -cjT -cjT -ceX +wgM +kKE +kKE +kKE +lzb +lzb +lzb +lzb +lzb +lzb +lzb +lzb +nuv dPR cdC dPY @@ -97768,43 +82670,43 @@ cdC idg idg pUR -bec +wHl cCc -cDg -cEh -cEh -cEh -cEh +qPI +qbh +qbh +qbh +qbh cDf cDf cDf cKs cLk -dGy -ceZ -ceZ -ceZ +jrl +ujP +ujP +ujP dTs dTs dTs dTs dTs -cXp +nQu ciQ ciQ -cYg +qKD cho cho cho cho cYi doO -cZe -cZc -gdW -cUi -mGo -mGo +gwQ +eMx +oRW +gmq +rZd +rZd dda deb dea @@ -97822,34 +82724,34 @@ taG sLx wya fdk -dok +bZT doL doL dhA dhA dNs -dqp -edQ +xeE +uxB doL dhA dhA doL doL -kMT -hqp +lQf +kRj uFX -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -hBr -jpa +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +sSe +pKT dTs dTs dTs @@ -97877,18 +82779,18 @@ dTs dTs dTs ajz -apZ +qPt arL arL -atQ -atQ +htm +htm arL -avy +fme arJ -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip avG axK ayg @@ -97903,10 +82805,10 @@ dTs dTs dTs dTs -aam -ayp +jwB +epv aeE -bgH +xSP dTs dTs dTs @@ -97914,44 +82816,44 @@ dTs dTs dTs dTs -anc -anp +ecF +mnr aoB -aqR +xuv bjO bkk bky blj -ati -auo -bjM -bjM -bjM -bju -boL +nBS +jMG +jAj +jAj +jAj +tJp +rFk bhi brg -bsf -bsO -btV -bvo -bse -bsN -bsN -brf -bxQ -bBG +frq +keL +uGr +lfj +hwf +rbX +rbX +oer +yaQ +gQF brh bDx -bGj -bGj +joy +joy bDx bDx bDx cNW -gQE -hwc -kVU +mVn +uRZ +qVE mdP nAm nAm @@ -97960,29 +82862,29 @@ tSK ozu ozu xsS -bUB +ffO bVD -bWs -cAg +qki +ncW dJT -dEY +tRd dib dib dib dLu dLO -ccR -ccM +jFo +oNB cen cdw cfy cge cgL chr -chZ +gHm dBP ciu -civ +qrC ciR ciR ciR @@ -97991,7 +82893,7 @@ ciR ciR ciR ciR -ciU +kgH dPR dPY cdC @@ -98002,17 +82904,17 @@ cdC dPY dPY chr -ciU +kgH cCe -cDh -cDh -cFg -cFT -cGU -cHy -cFg +jVf +jVf +gvZ +uKP +yko +nQe +gvZ cCc -cdD +nzE cdw cdw cdw @@ -98024,9 +82926,9 @@ dTs dTs dTs dTs -cAl +qMs ciQ -cYg +qKD cho cho cho @@ -98034,57 +82936,57 @@ cho cYi dpD dpE -ckx -cYe -vud +dwM +jMP +hkP dNS dNS dde dea -ddY -deA -deA -ddY -deA -ddY +xVf +rMh +rMh +xVf +rMh +xVf dea eeX -gdW +oRW xbj kJP lYm eXM rdW fdk -uis +uwd viV vuu dNS dNS -dNt -wRX -jpa -vud +omX +ivm +pKT +hkP dNS dNS dNS vuu -sUe -hqp +fgd +kRj uFX -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE -qKE +kPv +kPv +kPv +kPv +kPv +kPv +kPv +kPv +kPv +kPv uFX -jOe -vud +rRp +hkP dTs dTs dTs @@ -98111,18 +83013,18 @@ dTs dTs dTs ajz -arh +oQS arL arL -atQ -auj +htm +ozm arL -ghU +xBm arJ -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip avG axL axL @@ -98137,8 +83039,8 @@ dTs dTs dTs dTs -aam -ayp +dTs +dTs aeE aeE ayD @@ -98150,12 +83052,12 @@ dTs dTs biy biy -aoH +qgn biy -dzk -dAr -dAr -dNf +lYb +kjF +kjF +tvX biy biy dTs @@ -98169,23 +83071,23 @@ brh brh brh brh -bwA -bxL -bsN -brf -bxQ -bBH +tmF +grq +rbX +oer +yaQ +hpV brh -aff -bFa -bFa -bHz -bIx +prN +wxo +wxo +htk +siy bDx cNW -gQE -hwc -kVU +mVn +uRZ +qVE naH ozu ozu @@ -98194,38 +83096,38 @@ bRr uml vgm xsS -bUC +kIX bVE -gQE -cAg +mVn +ncW dJT -dEY +tRd dib dib dib dLu dLO -ccR -cdA +jFo +bqD ceo cdw cfy cdC cdC chr -chZ +gHm ciu ciu -civ +qrC ciR -bdh -ceu -ckC -clH -cmt -dPj +xES +lso +mzk +jHc +kuD +hau ciR -ciU +kgH csH dPZ cdc @@ -98236,15 +83138,15 @@ cdc dPZ cdc ciy -ciU +kgH cCc -cDh -cEi -cFh -cGV -cGV -cGV -cIC +jVf +pwD +pNg +rcD +rcD +rcD +qIZ cCc cdw cdw @@ -98260,65 +83162,65 @@ dTs dTs dTs ciQ -cjS +ver cjR cho cho cho -cjQ -clE +flr +mWa cnC djx -dtY -vud +qPj +hkP dNS dNS dde dea -deA -deA -ddY -ddY -deA -deA +rMh +rMh +xVf +xVf +rMh +rMh dea -dka -gdW -wRX -dIA +gjW +oRW +ivm +naI bYV hzC rdW fdk -uis +uwd viV -lJM -wPb -wPb -dNu -hqp -jOe -xxv -wPb -wPb -wPb -wPb -jVa -hqp -jOe -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -gdW -hqp -jOe -vud +kUt +hRa +hRa +tDL +kRj +rRp +jUq +hRa +hRa +hRa +hRa +xMd +kRj +rRp +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +oRW +kRj +rRp +hkP dTs dTs dTs @@ -98345,18 +83247,18 @@ dTs dTs dTs ajz -arB +thD arL atj -atk -atQ +rOp +htm arL -avy +fme arJ -ayK -ayX -ayZ -ayM +mhC +tGO +lZe +jId axI axL axL @@ -98372,25 +83274,25 @@ dTs dTs dTs dTs -ayp +epv aeE aeE ayD -aam +jwB dTs dTs dTs dTs dTs -bmJ -bmJ -aCP -ari +dVq +dVq +qzc +uKl bjO bkj bkj blj -ato +nyU biy bfm bfm @@ -98403,23 +83305,23 @@ bfm dTs dTs brh -bwB -bxM -bsN -brf -bxQ -bBH +gwC +qFv +rbX +oer +yaQ +hpV brh -bDz -bFa -bFa -bFa -bIy +pRT +wxo +wxo +wxo +fBO bDx cNW -gQE -hwc -kVU +mVn +uRZ +qVE naH ozu ozu @@ -98428,55 +83330,55 @@ bRr ozu ozu xsS -bUC +kIX bVE -gQE -dCU -dKA -dEY +mVn +bfv +gct +tRd dib dib dib dLu dLP dLU -cdA +bqD ceo cdw cfy cdC cdC chr -chZ +gHm ciu ciu -civ +qrC ciR -bGP -ckA -dOS -ckB -cmu -coM +kze +fjt +swc +utZ +ozs +rxz ciR -cib -dPS -dPS -cjT -cjT -cjT -cjT -cjT -dPS -dPS -dPS -ceY +tZb +rWM +rWM +lzb +lzb +lzb +lzb +lzb +rWM +rWM +rWM +oBh cCf cCg cCg cCg -cFV -cGW +iwO +wXu cCg cCg cCf @@ -98495,7 +83397,7 @@ dTs dTs ciQ ciQ -cYg +qKD cho cho cho @@ -98503,8 +83405,8 @@ cho cYi ciQ cYh -dtY -vud +qPj +hkP dNS dNS dda @@ -98517,43 +83419,43 @@ dea dea dea dda -gdW -hqp -jOe +oRW +kRj +rRp bYV sLx wya fdk -cTB +ueQ xoO -jVa -wRX -hBr -dNv +xMd +ivm +sSe +rHG uFX uFX -hBr -hBr -hBr -hBr -hBr -hBr +sSe +sSe +sSe +sSe +sSe +sSe uFX -jOe -gdW -gdW -dsS -dtE -dEV -dtE -dGt -dtE -dwC -gdW -hqp -jOe -vud -uAo +rRp +oRW +oRW +luu +kWd +muV +kWd +yaH +kWd +oHt +oRW +kRj +rRp +hkP +plx dTs dTs dTs @@ -98579,52 +83481,52 @@ dTs dTs dTs ajz -arC +uRy arL atj -atk -auj +rOp +ozm arL -avB +ihB ajz -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip avG axL axL axL ayx aCr -ayB -ayT -azd -azm +xkk +xWP +jyL +qqX aCr dTs dTs dTs dTs -ayp +epv aeE aeE ayD -aam +jwB dTs dTs dTs dTs dTs bRB -bmJ -aCP -bZc +dVq +qzc +rab bjO bkk bky blj -bmJ +dVq biy bfm eyL @@ -98638,22 +83540,22 @@ dTs dTs brh brh -bxN -bsN -brf -bxQ -bBI +kKz +rbX +oer +yaQ +peR brh -bDA -bFa -bFa -bFa -bIy +wJj +wxo +wxo +wxo +fBO bDx cNW -gQE -hwc -kVU +mVn +uRZ +qVE ngo oAM oAM @@ -98662,57 +83564,57 @@ ueZ ozu ozu xsS -bUC +kIX bVE -gQE -bXo -dLf -dEY +mVn +pzC +kjR +tRd dib dib dib -dLv -dLA +edw +iLW dLV -cdA +bqD ceo cdw cfy cge cgL chr -chZ +gHm ciu -dnP -ceY +nAo +oBh ciR -pkl -ckB -ckB -ckB -ckB -coN +iIt +utZ +utZ +utZ +utZ +nwO ciR crA -dPT -dQa +iei +uES crA cvM crA crA cvM crA -crD -dQa +pfw +uES crA cCf -cDi -cEj -gak -cCi -cCi -cHz -cID +mpz +cUC +xUS +irz +irz +qfQ +qYw cCf dTs dTs @@ -98729,7 +83631,7 @@ dTs dTs dTs ciQ -cYg +qKD cho cho cho @@ -98738,7 +83640,7 @@ cYi ciQ cnC dnD -vud +hkP jfA dNS dda @@ -98751,43 +83653,43 @@ dde dda dda dda -gdW -hqp -jOe +oRW +kRj +rRp bYV rdW rdW dPf -hOK -gdW -gdW -hqp +oqK +oRW +oRW +kRj uFX -dNw -qKE -qKE -qKE -qKE -qKE -qKE -qKE +jiK +kPv +kPv +kPv +kPv +kPv +kPv +kPv uFX uFX -oQx -gdW -gdW -dsT +vwN +oRW +oRW +tIP dzd clo cra dFP dzd dwD -gdW -hqp -jOe -vud -kkm +oRW +kRj +rRp +hkP +mvW dTs dTs dTs @@ -98813,52 +83715,52 @@ afG afG afG afG -arD +ieM arL arL -atk -auk +rOp +pLq aHD -avD +qwU arJ -ayL -aHL -ayZ -azp +rke +oaX +lZe +dip avG axN ayh axL ayx aCr -qUT -auq -auq -azo +wgT +wGG +wGG +sHS aCr dTs dTs dTs dTs -ayp +epv aeE aeE ayD -aam +jwB dTs dTs dTs dTs dTs dTs -bmJ -aCP -bZc +dVq +qzc +rab bjO bkj bkj blj -bmJ +dVq biy bfm eyL @@ -98872,81 +83774,81 @@ dTs dTs dTs brh -bcW -bse -awB -bxQ -bBI +cZA +hwf +iMo +yaQ +peR brh -bDB -bFa -bFa -bFa -bIz +cXf +wxo +wxo +wxo +qLz bDx -fyq -gQE -fpu -hqT -nil -nil -nil -pTU +lQF +mVn +mix +iyx +vcI +vcI +vcI +uAH naH uml vgm xsS -bUC +kIX bVE -gQE -bXo -dLf -dEY +mVn +pzC +kjR +tRd dib dib dib dib dLu dLV -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciR ciR ciR ckD cjV -clG +mjA cjV cjV ckD ckD -crB -crD -dPT -cuV -cvN -cwH -cwH -cvN -crC -dPT -dPT -cBd +xJI +pfw +iei +mdl +rqi +ocP +ocP +rqi +xQg +iei +iei +npx cCg -cDj -cEk -cEr -cGX -cGX -cHA -cIE +tRK +xzS +mxh +iIl +iIl +fnX +oCM cCf dTs dTs @@ -98963,16 +83865,16 @@ dTs dTs dTs ciQ -cYg +qKD cho cho cho cho -cjQ -clE +flr +mWa ciQ doN -vud +hkP dNS dNS dNS @@ -98984,44 +83886,44 @@ dNS dNS dNS dNS -sUe -gdW -hqp -jOe +fgd +oRW +kRj +rRp bYV rdW rdW fdk -hqp -hBr -hBr +kRj +sSe +sSe uFX -jOe -dNx -gdW -gdW -gdW -gdW -gdW -gdW -gdW -cWy -oQx -gdW -gdW -gdW -dsT +rRp +nZf +oRW +oRW +oRW +oRW +oRW +oRW +oRW +mhs +vwN +oRW +oRW +oRW +tIP dzd clp crb dFQ dzd dwD -gdW -hqp -jOe -vud -taH +oRW +kRj +rRp +hkP +nkr dTs dTs dTs @@ -99035,46 +83937,46 @@ acu (144,1,1) = {" acu afG -afH -afK -alc -afK -agI +pqB +his +vBB +his +vsw afG -afH -afK -alc -afK -agI +pqB +his +vBB +his +vsw afG -arE +lnF arL -acU -atk -atQ -atk -atQ -awF -ayM -ayX -ayZ -azp +sIP +rOp +htm +rOp +htm +lHm +jId +tGO +lZe +dip avG avG avG avG avG aCr -ayF -ayU -aLH -azo +sDM +hWy +jOo +sHS aCr dTs dTs dTs -aam -ayp +jwB +epv aeE aeE ayD @@ -99085,14 +83987,14 @@ dTs dTs dTs dTs -bmJ -aCP -bZc +dVq +qzc +rab bjO bkj bkj blj -bmJ +dVq biy bfm eyL @@ -99112,75 +84014,75 @@ brh byS brh brh -bDC -bFa -bGk -bGk -bIA +fGB +wxo +iMY +iMY +seG bDx -fHg -gQE -dCt -lnG -ejR -ejR -bPm -qDb +ozx +mVn +sZM +tfs +ibZ +ibZ +qLf +sSM naH ozu ozu xsS -bUD +kWJ bVD -hcP -bXo -dLf -dEY +rcA +pzC +kjR +tRd dib dib dib dib dLu dLW -cdB +tsX cen cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciR -cjn -cjU -ckE -clI -clI -cnG -coO -cpA +wdJ +vML +xub +uHS +uHS +mMk +ndm +iIF cjV -crC -csI -dQb -dPT -dPT -dQp -crD -crD -crD -dQC -ctQ -cBe -dQR -dQX -dRc -dRl -dRE -dSe -dSs -cGY +xQg +jpI +qFS +iei +iei +xch +pfw +pfw +pfw +jGN +nPo +rOB +wuY +qCW +qrr +rwq +pOB +oeH +nkq +xTo cCf dTs dTs @@ -99197,7 +84099,7 @@ dTs dTs dTs ciQ -cjS +ver cjR cho cho @@ -99206,55 +84108,55 @@ cho cYi ciQ doO -xxv -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -wPb -jVa -gdW -hqp -jOe +jUq +hRa +hRa +hRa +hRa +hRa +hRa +hRa +hRa +hRa +hRa +hRa +xMd +oRW +kRj +rRp bYV sLx wya fdk -hqp -qKE -qKE -qKE -oQx -dNx -dsS -dtE -dtE -dtE -dwC +kRj +kPv +kPv +kPv +vwN +nZf +luu +kWd +kWd +kWd +oHt dxe dxe -dzm -eer +vzD +dlv dxe dxe -gdW -dsT +oRW +tIP dzd cmg crb dGv dzd dwD -gdW -hqp -jOe -xxv +oRW +kRj +rRp +jUq dTs dTs dTs @@ -99269,49 +84171,49 @@ acu (145,1,1) = {" acu afG -afI -aag -ald -alv -agL -amq -afI -amZ -alv -amZ -agL +sue +jyW +tLc +onI +kbk +jut +sue +cpo +onI +cpo +kbk afG -arG +jFU arL -atk -atk -atk -atk -atQ -awG -ayM -ayX -ayZ -azp +rOp +rOp +rOp +rOp +htm +vVI +jId +tGO +lZe +dip avG dTs dTs dTs dTs aCr -sXm -ayV -vSw -azo +myg +tuU +sNV +sHS aCr dTs dTs dTs -aam -ayp -aeE +jwB +epv +dTs aeE -bgH +xSP dTs dTs dTs @@ -99319,14 +84221,14 @@ dTs dTs dTs dTs -bmJ -aCP -bZc +dVq +qzc +rab bjO bkk bky blj -bmJ +dVq biy bfm eyL @@ -99346,75 +84248,75 @@ dTs fpJ dTs brh -mnA -bFa -bFa -wTP -bIB +kwe +wxo +wxo +ruO +qGG bDx dTs dTs dTs dTs -bog -fyq -bPn -bQn +dJv +lQF +rYn +pSp naH ozu ozu xsS -mfK -dCt -dCt -bXo -dLf -dEY +nXY +sZM +sZM +pzC +kjR +tRd dib dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cge cgL chr -chZ -civ +gHm +qrC ciS -cjn -cjq -dOt -clI -clI -cnG -dPd -cpB -cqr -dPG -csJ -ctR -dPT -dPT -dQp -dQs -dQs -dQy -dQD -dQJ -cBe -cCi -cCi -dRd -dRm -dRE -dSf -dSt -cGY +wdJ +uLJ +lOA +uHS +uHS +mMk +oNj +yjw +seX +lfh +jYL +qIH +iei +iei +xch +jHQ +jHQ +jUf +oyi +pKZ +rOB +irz +irz +qwg +sWC +pOB +knv +uEM +xTo cCf dTs dTs @@ -99429,66 +84331,66 @@ dTs dTs dTs dTs -cYf -cAl +rmi +qMs ciQ -cYg +qKD cho cho cho cho -cjQ -clE +flr +mWa dpD chm clD -cmr +tWq cnB -cUI -cUI -cUI -cUI -cUI -cUI -cUI -cUI -dkb -hBr +vaj +vaj +vaj +vaj +vaj +vaj +vaj +vaj +jfL +sSe uFX -jOe +rRp bYV rdW rdW fdk -hOK -cUi -mGo -kMT -gdW -dNx -dsT +oqK +gmq +rZd +lQf +oRW +nZf +tIP dEo -dFS -dGB +xCs +jBG dwD dxe -dyi -dzm -dzm +eBn +vzD +vzD dWK dxe -gdW -dsT +oRW +tIP dzd cmQ csg dGw dzd dwD -gdW -dIC -dJd -gdW +oRW +gCX +uDr +oRW dTs dTs dTs @@ -99503,46 +84405,46 @@ acu (146,1,1) = {" acu afG -afI -akh -alk -alk -agL -amq -afI -ana -amZ -goY -agL +sue +bQX +gBI +gBI +kbk +jut +sue +iBU +cpo +sXj +kbk afG -arH +gOq arL -swg -atQ +iTO +htm arL -aul -avF +sOU +qPU arJ -ayO -ayX -ayZ -azp +xkR +tGO +lZe +dip avG dTs dTs dTs dTs aCr -ayI -auq -azh -azo +kst +wGG +nXy +sHS aCr dTs dTs -aam -axP -azA +jwB +uAD +fPk aeE aeE aeE @@ -99553,14 +84455,14 @@ dTs dTs dTs biy -anr -aCP -arj +qyn +qzc +qBG bjO bkj bkj blj -att +vPr biy bfm eyL @@ -99580,11 +84482,11 @@ dTs fpJ dTs brh -bDD -bFb -azJ -vdp -bIC +wkv +uXd +dQS +iXn +iEb bDx dTs dTs @@ -99592,63 +84494,63 @@ dTs dTs dTs dTs -fyq -bQo +lQF +did naH uml vgm xsS -bUE -hpw -hhj -bXp -dLf -dJB +iNR +kaw +lMd +trs +kjR +wpo dLk dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciS -cjo -cjq -ckG -clJ -cmv -cnH -coQ -cpC +xhe +uLJ +vsJ +dMZ +pot +qiL +uuR +xTb cjV -crD -crD -dPT -dQh -crE -crE -crE -dQc -dQz -dQE -dPT -cBe +pfw +pfw +iei +gob +pxC +pxC +pxC +wwX +liy +tiU +iei +rOB cCg -dQY -dRe -dRm -dRE -dSg -dSu -dia +wuj +qyG +sWC +pOB +vwj +ieZ +dNd cCf dTs dTs @@ -99664,66 +84566,66 @@ dTs dTs dTs dTs -cXp +nQu ciQ -cjS +ver cjR cho cho cho cho -cjQ -clE +flr +mWa ciQ ciQ ciQ cnC -cuQ +fxc djx -cOG -cOG -cOG -cOG -cOG -cWE -dkc -qKE -qKE -oQx +ffQ +ffQ +ffQ +ffQ +ffQ +xYJ +hMz +kPv +kPv +vwN bYV rdW rdW fdk -dok +bZT xoO dNS -sUe -gdW -dNx -eiq +fgd +oRW +nZf +ekJ dFc cho -dHf +leb dwD din dWu -dWy -dzm +pPG +vzD dWu din -gdW -dsT +oRW +tIP dzd dzh dzd dAA dzd dwD -gdW -dID -cWD -cUI -cUI +oRW +rYO +hOa +vaj +vaj dTs dTs dTs @@ -99737,44 +84639,44 @@ acu (147,1,1) = {" acu afG -afJ -afQ -afQ -afQ -agM +wXT +rKS +rKS +rKS +veX afG -afJ -afQ -afQ -afQ -agM +wXT +rKS +rKS +rKS +veX afG -arI -asD -atN -atk -aul -auL +fZQ +vkJ +nSy +rOp +sOU +hzM avG avG -awb -ayX -ayZ -azq +igF +tGO +lZe +gej avG avG dTs dTs dTs aCr -ayJ -ayW -azi -azo +qEC +ppw +thw +sHS aCr dTs dTs -azA +fPk aeE aeE aeE @@ -99788,12 +84690,12 @@ dTs dTs biy biy -aoH +qgn biy -dzk -dAr -dAr -dOZ +lYb +kjF +kjF +nJL biy biy bfm @@ -99827,61 +84729,61 @@ dTs dTs dTs dTs -bQp +ezv naH ozu ozu xsS -bUE -hqT -oNS -bXq -dLf +iNR +iyx +epK +hUd +kjR dJT -dEY +tRd dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciS -cjp -cjq -ckH -clK -cmw -cnG -coP -cpB -cqr -crE -crE -dQc -csI -cvO -kGV -cxA -lib -ctQ -crE -dQK -cBf +iBt +uLJ +kyT +fIc +hfW +mMk +sEn +yjw +seX +pxC +pxC +wwX +jpI +ojz +iKy +wSH +uPe +nPo +pxC +rwn +hrV cCg -cDl -cEo -dRn -dRF -cGZ -dSv +wfg +gqJ +xlN +ict +kWu +sBf cCf cCf dTs @@ -99899,65 +84801,65 @@ dTs dTs dTs dTs -djw -cAl -cjS +syW +qMs +ver cjR cho cho cho cho -cjQ -chn -chn -clE +flr +hoX +hoX +mWa ciQ ciQ cnC -cuQ +fxc djx -cOG -cOG -cOG -cWF -cUi -mGo -mGo -kMT +ffQ +ffQ +ffQ +rIl +gmq +rZd +rZd +lQf bYV sLx wya fdk -uis +uwd viV dNS -sUe -gdW -gdW -dNx -cYg +fgd +oRW +oRW +nZf +qKD cho dHg dwD din dyj -dzm -dzm +vzD +vzD dWK din -gdW -dsT +oRW +tIP dzd clo cra dFP dzd dwD -gdW -dID -cOG -cOG -cOG +oRW +rYO +ffQ +ffQ +ffQ dTs dTs dTs @@ -99972,30 +84874,30 @@ acu acu afG afG -akw -akw -akw +wlT +wlT +wlT afG afG afG -akw -akw -akw +wlT +wlT +wlT afG afG ajz arJ -atO -auf +nnN +mxd arJ ajz avG -acK -aHF -ayX -ayZ -axr -axt +rot +myS +tGO +lZe +xdR +kxG avG avG avG @@ -100003,7 +84905,7 @@ avG aCr aug aug -azj +iZJ aug aCr dTs @@ -100020,15 +84922,15 @@ ayD dTs dTs dTs -ane -ans +klU +rTJ aoV -aro +kmv bjO bkk bky blj -atD +sFA dTs bfm eyL @@ -100043,8 +84945,8 @@ dTs dTs dTs dTs -aam -aam +jwB +jwB fpJ dTs dTs @@ -100061,61 +84963,61 @@ dTs dTs dTs dTs -bQn +pSp naH ozu ozu xsS -mfK -dCt -dCt -dEj -dLg +nXY +sZM +sZM +myD +ouL dJT -dEY +tRd dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cge cgL chr -chZ -civ +gHm +qrC ciS -cjq -cjq -ckI -clI -clI -cnG -coO -cpA +uLJ +uLJ +vme +uHS +uHS +mMk +ndm +iIF cjV -crF -csK -dQd -ctS -cvP -cwJ -cwK -cxY -crF -crF -dQe -ctS +ydP +wQx +gsE +jAH +gjt +xlX +oHd +hrv +ydP +ydP +naJ +jAH cCg -cDm -cEp -aFM -dRG -cGY -dSw +lEx +rEb +iXm +prx +xTo +sok cCf dTs dTs @@ -100134,9 +85036,9 @@ dTs dTs dTs dTs -cYf -cAl -cjS +rmi +qMs +ver cjR cho cho @@ -100144,54 +85046,54 @@ cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ ciQ cnC djx -cAZ -dtH -duA -vud +kho +oyP +poV +hkP dNS dlc -sUe +fgd bYV rdW rdW fdk -xuS +umh viV dNS -sUe -gdW -gdW -gdW -dFd +fgd +oRW +oRW +oRW +pGl dGA dHA dwD din dyj -dzm -dWF +vzD +tuQ dyj din -gdW -dsT +oRW +tIP dzd cmQ csg dHc dzd dwD -gdW -dID -dJe -dJe -dJe +oRW +rYO +reT +reT +reT dTs dTs dTs @@ -100206,81 +85108,81 @@ acu acu afG ajt -ahr -aju -aju +jqJ +oZh +oZh agQ amD agQ -aiK -aju -ahr +wUD +oZh +jqJ agH -ajO -ajO -alD -aoP -akO -apf -ajO +hFy +hFy +gWZ +xsB +gfO +pKx +hFy avH -ayL -ayZ -ayX -ayZ -ayZ -axr -axS -axS -axS -axS -axS -axS -ayL -azw -azq +rke +lZe +tGO +lZe +lZe +xdR +pmx +pmx +pmx +pmx +pmx +pmx +rke +xQZ +gej hVs dTs aeE aeE aeE azD -bRg -ady +kcD +tCP aeE aeE aeE ayD dTs dTs -ayp +epv aeE aAt buj -bgr +eDf aXW aVZ aVZ aZk -atH -mEV +wPW +jph bfm auW -avj -avj -avj -avj +hXB +hXB +hXB +hXB auW bfm -aam -dTs -aam -aam -axP -axP -axP -aBI -axP +jwB +dTs +jwB +jwB +uAD +uAD +uAD +dGR +uAD ayD dTs dTs @@ -100294,62 +85196,62 @@ dTs dTs dTs dTs -fHg -bQo +ozx +did naH uml vgm xsS -bUB +ffO bVD -goq -cAg +cZU +ncW dJT dJT -dEY +tRd dib dib dib dLu dLX -cdB +tsX cen cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciR -cjr -cjq -ckJ -clI -clI -dPa -coR -dMP +usw +uLJ +ePS +uHS +uHS +oSV +teE +eBM ckD -crG -dPU -dQe -ctS -cvQ -cwK -cwK -cxZ -crF -crF -dQe -cBg +tKT +fvw +naJ +jAH +dks +oHd +oHd +jaA +ydP +ydP +naJ +bhU cCg -cDn -cEq -dRo -dRH -dSh -dSx +xJu +rAa +mWq +whj +vXK +fFZ cCf dTs dTs @@ -100371,7 +85273,7 @@ dTs dTs dTs ciQ -cYg +qKD cho cho cho @@ -100380,52 +85282,52 @@ cho cho cho cho -cjQ -chn -clE +flr +hoX +mWa ciQ cnC -cuQ -cvK +fxc +rlR doO -vud +hkP dNS dNS -sUe +fgd bYV rdW rdW fdk -vud +hkP viV dNS -sUe -gdW -gdW -dsV -dFe -dFe -dFe -dwE +fgd +oRW +oRW +nwI +vTK +vTK +vTK +xyQ dxe gJe dWz dWG dWL dxe -gdW -dsV -dtI -com -com -com -dtI -dwE -gdW -dJS -dKL -dKL -dKL +oRW +nwI +kJg +iTD +iTD +iTD +kJg +xyQ +oRW +kvM +hBL +hBL +hBL dKQ dTs dTs @@ -100439,85 +85341,85 @@ acu (150,1,1) = {" acu afG -aae -aju -aju -ahr -ahr -ahr -ahr -aju -aju -ahr -anO -akO -aiq -akO -aoP -akO -akO -akO -avI -ayZ -ayZ -ayX -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ayZ -ebT -ayZ -ayZ -azx -axr +uxA +oZh +oZh +jqJ +jqJ +jqJ +jqJ +oZh +oZh +jqJ +whS +gfO +lcK +gfO +xsB +gfO +gfO +gfO +liO +lZe +lZe +tGO +lZe +lZe +lZe +lZe +lZe +lZe +lZe +nAG +lZe +lZe +oEe +xdR eVJ aeE aeE aeE -bRg +kcD dTs dTs -aam -ady +jwB +tCP aeE aeE ayD -aam -aam -ayp +jwB +jwB +epv aeE aAu aAi -azH +dzR aXW aVZ aVZ aZk -atH +wPW auu -lwh -avb -avk -ctg -aCR -avZ -avb -awp -aam -aam -axP -azA +rqp +hkk +pUW +wPV +mXS +sVi +hkk +gyu +jwB +jwB +uAD +fPk aeE aeE aeE xhv aeE ayD -aam -aam +jwB +jwB dTs dTs dTs @@ -100527,63 +85429,63 @@ dTs dTs dTs dTs -nmr -nue -bQo +vcp +rAG +did naH ozu ozu xsS -bUC +kIX bVE -gQE -cAg +mVn +ncW dJT dJT -dEY +tRd dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciR ciR cjV -ckJ -clL +ePS +cVR cjV cnJ -coS +gnd ciS ckD crH -dPU -ctT +fvw +mjH crH cvM -cwL +puD crH cvM crH -dQF -dQL +rIm +vZZ crH cCg -cDo -dRf -dRm -dRI -dSi -dSy +wrw +won +sWC +nPE +izo +hcV cCf dTs dTs @@ -100605,8 +85507,8 @@ dTs dTs dTs ciQ -cjS -chp +ver +jlu cjR cho cho @@ -100616,47 +85518,47 @@ cho cho cho cho -cjQ -chn -chn -chn -chn -dvx -xxv -wPb -wPb -jVa +flr +hoX +hoX +hoX +hoX +oex +jUq +hRa +hRa +xMd bYV sLx wya fdk -xxv +jUq xoO -wPb -jVa -gdW -gdW -gdW +hRa +xMd +oRW +oRW +oRW czV czV czV -gdW +oRW dxe din dxe din dxe dxe -gdW -gdW -gdW +oRW +oRW +oRW dAo dAo dAo -gdW -gdW -gdW -dKB +oRW +oRW +oRW +jdD cgq cgq cgq @@ -100673,75 +85575,75 @@ acu (151,1,1) = {" acu afG -ajv -ahr -aju -aiz -ahr -ahr -aju -ahr -ahr -anK -ahr -akO -aok -aoJ -aoW -aoJ -aoJ -aoJ -avJ -avJ -avJ -atP -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -avJ -ayr -azy -ayZ -ste -ajI -ayN -bRg -dTs -dTs -dTs -dTs -ayp +kdQ +jqJ +oZh +vgF +jqJ +jqJ +oZh +jqJ +jqJ +srE +jqJ +gfO +sgp +hjQ +djH +hjQ +hjQ +hjQ +qCt +qCt +qCt +tFz +qCt +qCt +qCt +qCt +qCt +qCt +qCt +qCt +qCt +mEb +rOL +lZe +bGS +rgp +frb +kcD +dTs +dTs +dTs +dTs +epv aeE aeE -bgH -axP -aam -aam -ady +xSP +uAD +jwB +jwB +tCP aeE azD -azI +jfy aXW aWa aWB aZk -atH +wPW auG -aut -avc -avk -aCP -bZc -avZ -avc -awq -axP -azA +pjP +xTZ +pUW +qzc +rab +sVi +xTZ +lSc +uAD +fPk aeE aeE aeE @@ -100750,9 +85652,9 @@ aeE xhv aeE aeE -bgH -axP -aBD +xSP +uAD +ent dTs bID bID @@ -100763,61 +85665,61 @@ bID bID bID aBX -bQo +did naH ozu ozu xsS -bUC +kIX bVE -gQE -cDQ +mVn +tia dJT -dLj -cEW +ecW +hAg dib dib dib dLu dLX -cdA +bqD ceo cdw cfy cge cgL chr -dNI +tgS ciu -ceX +nuv cjs -dOj -dOu -dOl -cmx -cnK -cjX -cmx -cqt -dOj -dPW -dQf -dQg -cnK -cjX -cmx -cqt -dOj -dQG -dQf -cBh +usg +xKT +xmv +vjw +ujV +vMq +vjw +fmO +usg +vKt +ufb +hNW +ujV +vMq +vjw +fmO +usg +dXd +ufb +usc cCj -cDp -dRg -dRm -dRI -dSj -dSv +gVX +rXC +sWC +nPE +sJm +sBf cCf dTs dTs @@ -100839,10 +85741,10 @@ dTs dTs dTs dTs -cAl +qMs ciQ -cjS -chp +ver +jlu cjR cho cho @@ -100857,45 +85759,45 @@ cho cho dvy clD -cmr -cxW -coF +tWq +fop +ylb dfc dgD dNR dTH -coF +ylb jsN -chT -dvB -dvB -dDI +hkf +exz +exz +tfe dEn dEn dEn dEn dEn -dFS -dvB +xCs +exz dzr -cfD -cfD -cfD -cgr +dlL +dlL +dlL +fpH cgs cgs cgs cgs -dHd -dIG +oBP +wzR dII -dJA -dHy +xPa +tIh cgq -dKN -dJf -dJf -aOP +wXE +hTy +hTy +tSx cfH cfH cfH @@ -100914,144 +85816,144 @@ agQ agQ agQ agQ -ahr -ahr +jqJ +jqJ agQ agH -alE -aoP -akO -aph -apv -ajP -ajP +tfx +xsB +gfO +nAT +lyS +rfZ +rfZ avH -ayO -ayZ -ayZ -ayZ -ebT -axQ -azc -azc -azc -azc -azc -ayO -ayX -ayZ -ayZ -bbs -bij -azu -dTs -dTs -dTs -dTs -dTs -aam -ady +xkR +lZe +lZe +lZe +nAG +tyn +umU +umU +umU +umU +umU +xkR +tGO +lZe +lZe +pBu +xpp +dxB +dTs +dTs +dTs +dTs +dTs +jwB +tCP aeE aeE aeE ayD -aam -aam -ady +jwB +jwB +tCP aeE -azI +jfy aXW aVZ aVZ aZk -atI -auH -auH -auH -avm -bUr -bUr -awa -auH -auH -azR -azR -azR -azR -azR -azR -azR -aBJ -azR -azR -azR -azR -azR -aAQ +bzs +yaC +yaC +yaC +jkR +jHI +jHI +hnn +yaC +yaC +uSj +uSj +uSj +uSj +uSj +uSj +uSj +fxE +uSj +uSj +uSj +uSj +uSj +sUi bID -aVY -aBG -aVY -aVY -aBG -aVY +idl +dZr +idl +idl +dZr +idl bID -aBY -bQq +mNU +jQf naH uml vgm xsS -bUC +kIX bVE -gQE +mVn duy dJT -dEY +tRd dib dib dib dib dLu -dLY -cdA +sAw +bqD ceo cdw cfy cdC cdC chr -chZ +gHm dNT -civ -cjt -dOl -dOv -dOG -dOG -dOG -dOG -dPk -dPr -dPH -csO -dQg -dOG -dQk -dOG -clM -dOG -dOG -cjW -dQg -cBi -cCk -cDq -dRh -dRp -dRI -dSk -dSw +qrC +prw +xmv +tho +tAe +tAe +tAe +tAe +myt +jnd +heU +tcP +hNW +tAe +dmq +tAe +lEN +tAe +tAe +bVC +hNW +yiu +nfn +riq +jZf +mNS +nPE +hwV +sok cCf dTs dTs @@ -101074,11 +85976,11 @@ dTs dTs dTs dTs -djw -djw -cAl -cjS -chp +syW +syW +qMs +ver +jlu cjR cho cho @@ -101089,18 +85991,18 @@ cho cho cho cho -cjQ -chn -chn -cyR -cAf +flr +hoX +hoX +jws +kBP czV czV czV czV -cAf -cAi -chU +kBP +gJJ +pjZ cho cho cho @@ -101121,12 +86023,12 @@ cfH cfH cfH cfH -dIH -dJf -dJf -dJf -dJf -dKO +feB +hTy +hTy +hTy +hTy +hzF cfH cfH aOQ @@ -101148,52 +86050,52 @@ agH afG afG agQ -ahr -aiz +jqJ +vgF aiB afG -amr -aoP -ain -api +pov +xsB +jLu +tsw akL akL akL avG -ayS -aqO -azc -azc -azc -axR +pFy +fHK +umU +umU +umU +gIk avG avG avG avG avG -ayP -ayX -ayZ -axQ +mSM +tGO +lZe +tyn eVJ -bij -azu +xpp +dxB dTs dTs dTs dTs dTs dTs -aam -ady +jwB +tCP aeE aeE ayD -aam -gKo -ayp +jwB +qbQ +epv aeE -azI +jfy aXW aVZ aVZ @@ -101222,70 +86124,70 @@ abZ abZ abZ bJD -duq +mTk bJD bJD bJD bJD bJD bJD -duq +mTk bJD nAm tSK ozu ozu xsS -bUC +kIX bVE -gQE +mVn duy dJT -dEY +tRd dib dib dib dib dLu dLV -cdA +bqD ceo cdw cfy cdC cgf chs -cia +oQP dNU -dNV -dNW -dOm -ckM -dOH -dOH -clN -clN -cpF -dPs -dCE -csP -clN -clN -dOH -clN -clN -cyb -dQA -dOH -dOH -cBj -cCl -cCl -cEu -cFl -aRL -cGZ -dSx +dyJ +kMa +kha +qnu +pMl +pMl +fXU +fXU +jBZ +dNO +vVl +nTG +fXU +fXU +pMl +fXU +fXU +pfa +lfE +pMl +pMl +kIL +ukk +ukk +lJH +dCw +qmq +kWu +fFZ cCf dTs dTs @@ -101310,11 +86212,11 @@ dTs dTs dTs dTs -cYf -djw -cAl -cjS -chp +rmi +syW +qMs +ver +jlu cjR cho cho @@ -101382,14 +86284,14 @@ akx aTI afG agQ -ahr -ahr +jqJ +jqJ agQ agH -amr -aor -akO -api +pov +sUm +gfO +tsw akL dTs dTs @@ -101405,13 +86307,13 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip hVs -bij -azu +xpp +dxB dTs dTs dTs @@ -101419,15 +86321,15 @@ dTs dTs dTs dTs -ayp +epv aeE aeE ayD -aam -aam -ayp +jwB +jwB +epv aeE -azI +jfy aXW aVZ aVZ @@ -101456,70 +86358,70 @@ aVZ azZ aVZ bJE -duw +fFl bJE bJE bIF bJE bJE bIF -duw +fFl bJE ssy ozu ozu ozu xsS -bUB +ffO bVD -bWs -dAB +qki +gtM dJT -dEY +tRd dib dib dib -dLt -dLz +dul +bds dLV -cdB +tsX cen cdw cfy cge cgM chr -dBN -dnP -civ +wVn +nAo +qrC cjs -cjZ -ckN -ckN -ckN -ckN -cjZ -cpG -cqw -crK -csQ -ctV -cuX -odr -cwM -cpG -cyc -cyV -dQH -dQM -cBk +muy +wfN +wfN +wfN +wfN +muy +svU +fVy +iVg +jBl +psW +iBX +kOt +inj +svU +oqi +eJu +dio +nyA +nkM cCj -cDr -wiz -cAK -cGe -cHa -cHH +ryj +jgd +qhH +gwV +qKm +pHg cCf cJA cJA @@ -101545,13 +86447,13 @@ dTs dTs dTs dTs -cAZ -cYf -cAl +kho +rmi +qMs ciQ -cjS -chp -chp +ver +jlu +jlu cjR cho cho @@ -101616,20 +86518,20 @@ afN amd agH agQ -ahr -ahr +jqJ +jqJ agQ agH -amr -aoP -akO -api +pov +xsB +gfO +tsw akL dTs dTs dTs dTs -aqB +lim atS aqC aqC @@ -101639,29 +86541,29 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip hVs -bij -azu +xpp +dxB ayD -aam +jwB dTs dTs dTs dTs dTs -azA +fPk aeE aeE -bgH -axP -azA -azA +xSP +uAD +fPk +fPk aeE -azI +jfy aXW aVZ azN @@ -101690,33 +86592,33 @@ aVZ aBQ aVZ bJE -dxb +qjD bJE bJE bIG bJE bJE bIG -dxb +qjD bJE svy ozu ozu ozu xsS -bUC +kIX bVE -gQE -cAg +mVn +ncW dJT -dEY +tRd dib dib dib dLu dJT dLV -cdA +bqD ceo cdw cfy @@ -101725,7 +86627,7 @@ cgN cht ccZ cix -ciU +kgH cjv cka cka @@ -101734,16 +86636,16 @@ cka cka cka cpH -cqx -crL +iDh +vQq cpH ctW ctX ctX ctX ctX -cyd -cyW +nnU +vHD ctX ctX ctX @@ -101751,14 +86653,14 @@ cCg cCg cCg cFn -cGf -cHb +twP +ibp cFn cCg -cJB -oVH -cLl -cLR +jKj +vze +kJl +apU cJA dTs dTs @@ -101783,13 +86685,13 @@ dTs dTs dTs dTs -djw -cAl +syW +qMs ciQ -cjS -chp -chp -chp +ver +jlu +jlu +jlu cjR cho cho @@ -101827,10 +86729,10 @@ cfH cfH cfH cfH -dJC -cgo -cgo -cgo +mZa +pPH +pPH +pPH aOV cfH cfH @@ -101848,22 +86750,22 @@ afN afN afN amj -amE -ahr -ahr -ahr +lBy +jqJ +jqJ +jqJ agQ agH -amr -aoP -akO -api +pov +xsB +gfO +tsw akL dTs dTs dTs dTs -aqB +lim atS aqC aqC @@ -101873,29 +86775,29 @@ dTs dTs dTs avG -ayK -ayX -ayZ -azp +mhC +tGO +lZe +dip hVs -bij -azu +xpp +dxB ayD -aam -aam +jwB +jwB dTs dTs dTs -azM -azR -azR -azR -azR -azR -azR -azR -azR -aAD +mzq +uSj +uSj +uSj +uSj +uSj +uSj +uSj +uSj +noU aXW aWa aAT @@ -101924,33 +86826,33 @@ aXC aXC aXC bIH -dyk +mqc bIH bIH bIH bIH bIH bIH -dyk +mqc bIH oAM ueZ ozu ozu xsS -bUC +kIX bVE -gQE -dCU -dKA -dEY +mVn +bfv +gct +tRd dib dib dib dLu -dLQ -dLZ -cdA +kgg +ghK +bqD ceo cdw cfy @@ -101959,40 +86861,40 @@ cgN chu cdC chr -ciU +kgH cjv -ckb -ckb -ckb -ckb -ckb +iXR +iXR +iXR +iXR +iXR cka -cpI -cqx -dPI -crM +pwH +iDh +vGV +kiD ctX -cuY -cvT -cwN -cxB -cyd -cvU -czE -cAn -cBl -cCm +tVj +szZ +tWZ +lXj +nnU +cLE +sVQ +vQU +toH +pbo ctW -cEy -cEB -cGg -cHc -cHc +yhO +kCC +uBX +kAk +kAk cEG -cJC -cKu -cKw -cLS +eLf +wCB +mbo +wzd cJA dTs dTs @@ -102019,12 +86921,12 @@ dTs dTs dTs dTs -djw -cAl +syW +qMs ciQ ciQ ciQ -cjS +ver cjR cho cho @@ -102043,28 +86945,28 @@ cho cho cho cho -chX -chp -chp -chp +gBT +jlu +jlu +jlu dzr -cgo -cgo -cgo -cgo -cgo -cgo +pPH +pPH +pPH +pPH +pPH +pPH coo cfH cfH cfH cfH -dJC -cgo -dJD +mZa +pPH +rup cgq cgq -dKJ +hAE ebs dTs dTs @@ -102082,16 +86984,16 @@ afN afN afN amk -ahr -ahr -ahr -ahr +jqJ +jqJ +jqJ +jqJ agQ agH -amr -aoP -akO -aoX +pov +xsB +gfO +ghr aCr aCr aCr @@ -102107,18 +87009,18 @@ avG avG avG avG -ayK -ayX -azk -azp +mhC +tGO +eXJ +dip hVs -bij -azu +xpp +dxB ayD -axP -axP -axP -azF +uAD +uAD +uAD +mkh aaB abZ abZ @@ -102134,57 +87036,57 @@ amM aVZ blT aZk -aBj -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAq -aAs -byZ -aAR +mmN +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +kqe +tSV +tWD +tXQ bID -cEX -bJF -bJF -bJF -bJF -aZm +hYm +bbR +bbR +bbR +bbR +hnC bID -aCa -pTU +swb +uAH naH uml vgm xsS -bUC +kIX bVE -gQE -uMG -dLf -dEY +mVn +ruC +kjR +tRd dib dib dib dLu dLO -ccR -cdA +jFo +bqD ceo cdw cfy @@ -102193,40 +87095,40 @@ cgM chu cdC chr -ciU +kgH cjv -ckc -ckc -ckc -ckc -dPb +spj +spj +spj +spj +fjd cka -cpI -dPt -dPI -crM +pwH +hwg +vGV +kiD ctX -cuZ -cvU -cwO -dQt -cye -cvU -cvU -cvU -cvU -cCn +jrb +cLE +qGa +vWo +uBJ +cLE +cLE +cLE +cLE +pnx ctW -cEy -cEB -cGg -cHc -cHI +sZj +kCC +uBX +kAk +qhc cEG -dSD -cJD -cHd -cLT +otF +jqd +iZp +nHz cJA dTs dTs @@ -102254,12 +87156,12 @@ dTs dTs dTs dTs -cYf -djw -cAl +rmi +syW +qMs ciQ ciQ -cjS +ver cjR cho cho @@ -102268,18 +87170,18 @@ czV czV czV czV -cAf -cAj -chp -chp -chp -chp -chp -chp -chp -ciP -dvz -djw +kBP +iFd +jlu +jlu +jlu +jlu +jlu +jlu +jlu +pof +hMH +syW dTs dTs dTs @@ -102288,16 +87190,16 @@ cgq cgq cgq cgq -cop -cgo -cgo -cgo -cgo -dJD +nkE +pPH +pPH +pPH +pPH +rup cgq cgq -dKJ -dKM +hAE +mAR dTs dTs dTs @@ -102318,41 +87220,41 @@ afN amd agH agQ -aiz -ahr +vgF +jqJ agQ agH -amr -aoP -akO -api +pov +xsB +gfO +tsw aCr -aum -auM -avK -awH -awI +tod +nRm +fqj +dIb +gon aCr aqC aqC avG -axW -gNq -aye -tCK +ukS +szD +rew +sKO avH -ayL -ayX -ayZ -azq +rke +tGO +lZe +gej hVs -bij -azv -axU -axU -axU -axU -azG +xpp +eVQ +xjr +xjr +xjr +xjr +fHv aXW aVZ aVZ @@ -102368,20 +87270,20 @@ azZ aVZ blT aZk -bAN +dGP azD aeE aeE aeE aeE -bRg -aan -aan +kcD +kuM +kuM dTs dTs -aan -aan -ady +kuM +kuM +tCP aeE azD aeE @@ -102392,33 +87294,33 @@ aeE aAu aCb bJC -aBp -cFj -cFj -cFj -cFj -cFj -cFj -aBp -aCc -kVU +yiE +dHN +dHN +dHN +dHN +dHN +dHN +yiE +juT +qVE naH ozu ozu xsS -bUC +kIX bVE -gQE -uMG -dLf -dEY +mVn +ruC +kjR +tRd dib dib dib dLu dLO -ccR -cdA +jFo +bqD ceo cdw cfy @@ -102427,40 +87329,40 @@ cgN chu cdC chr -ciU +kgH cjv -dOn -dOx -ckO -dOT -cnL +vAP +qBt +lRV +pXT +psv cka -cpJ -dPu -dPI -crM +kxS +pTn +vGV +kiD ctX -cva -dQl -cwP -cxD -dcL -cyX -czF -cAo -cAo -cCo +sig +xwx +elR +xPo +egN +hqH +xeq +jxA +jxA +ptJ ctW -cEz -cEB -dRJ -dSl -cHJ -cIF -cHJ -cHJ -cHc -cLT +kOV +kCC +mFL +fmA +lwl +lVP +lwl +lwl +kAk +nHz cJA dTs dTs @@ -102489,30 +87391,30 @@ dTs dTs dTs dTs -cmR -dtF -cAl +tty +gEH +qMs ciQ ciQ -cjS -chp -czB -cAf -czX -czX +ver +jlu +vTp +kBP +krr +krr cho -czX -cAf -cAk -djw -cAl +krr +kBP +krx +syW +qMs ciQ ciQ ciQ ciQ ciQ -dvz -dzo +hMH +gNY dTs dTs dTs @@ -102521,16 +87423,16 @@ dTs dTs dTs dTs -clm +utw cgq cgq cgq cgq cgq cgq -dKJ -dKM -dKP +hAE +mAR +pyV dTs dTs dTs @@ -102551,42 +87453,42 @@ akC akC aml afG -amR -ahr -ahr +eoZ +jqJ +jqJ agQ agH -amr -aoP -akO -eNU +pov +xsB +gfO +nxv aug -aun -auq -auq -auq -awJ +eiu +wGG +wGG +wGG +tZi aCr aqC aqC avG -axX -ayj -ayu -ayj -ayA -ayM -ayX -ayZ -azp +uhH +tvT +fwE +tvT +vzW +jId +tGO +lZe +dip hVs -ahV -axV -axV -axV -axV -axV -azH +qBi +uLU +uLU +uLU +uLU +uLU +dzR aXW azN azS @@ -102602,21 +87504,21 @@ aAa azS aAU aZk -bAN +dGP aeE aeE aeE aBB aeE ayD -aam -aam +jwB +jwB dTs dTs dTs -aam -aam -ady +jwB +jwB +tCP aeE aeE aeE @@ -102625,34 +87527,34 @@ aeE aeE aeE aAu -aAS +nos bID -ceQ -aBH -cjP -ceQ -aBH -ceQ +vzV +ibk +lWE +vzV +ibk +vzV bID -aCe -bQr +var +hzl naH ozu ozu xsS -bUD +kWJ bVD -hcP -jvZ -dLh -dLl +rcA +hJF +wyg +uyO dib dib dib beZ aac -bii -ccN +miQ +xLt cen cdw cfy @@ -102661,18 +87563,18 @@ cgN chu cdC chr -ciU +kgH cjv -cke -ckP -rPh -cZK -jVr -coT -lKY -liN -dPI -csR +qvL +lmt +xNY +fLD +gXX +xNa +jEH +lNP +vGV +xBq ctW ctW ctW @@ -102685,16 +87587,16 @@ ctW ctW ctW ctW -cEA -cEC -dRJ -dSl -cHg +pSf +iCQ +mFL +fmA +lhM cEG -cJE -cKv -cHf -cLU +wrZ +nkN +hoE +vvK cJA dTs dTs @@ -102724,28 +87626,28 @@ dTs dTs dTs dTs -dgX -dtG -duz -duz -duz -duz -cAe -coF +fpo +mRu +mUw +mUw +mUw +mUw +sfk +ylb dfc dgF jrV dTH -coF -cuT -dgX -cAX -ckn -cpv +ylb +iSV +fpo +fgV +snk +yiT chS chS -cjk -dHB +rAt +uAm dTs dTs dTs @@ -102755,16 +87657,16 @@ dTs dTs dTs dTs -cln -cpd -dEZ +eGH +gVC +iOM dHe dHe -dJg -dJE -dKK -dgX -dgX +dEB +wbo +vtx +fpo +fpo dTs dTs dTs @@ -102786,33 +87688,33 @@ agH afG afG agQ -ahr -ahr +jqJ +jqJ aiB afG -myx -aoP -akO -api +msr +xsB +gfO +tsw aug -aun -auq -auq -auq -afo +eiu +wGG +wGG +wGG +vCk aCr aqC aqC avG -nRL -ayk -ayv -ayj +nyL +jAR +flg +tvT avH -ayO -ayX -ayZ -azp +xkR +tGO +lZe +dip hVs dTs aeE @@ -102820,7 +87722,7 @@ aeE aeE aeE aeE -azI +jfy aXW blT aVZ @@ -102836,30 +87738,30 @@ aXC aXC aXC aBa -bAN +dGP aeE aeE aeE aeE aeE ayD -aam -aam +jwB +jwB dTs dTs dTs dTs -aam -ayp +jwB +epv aeE aeE aeE aeE -bRg -aan -aan -aan -bgx +kcD +kuM +kuM +kuM +uwR bID bID bID @@ -102868,25 +87770,25 @@ bID bID bID bID -aCg -bQo +lhz +did naH uml vgm xsS -bUF -bVF -dCt -dCt -aWH -dMw +tZn +vmz +sZM +sZM +kRk +mcu dib dib dib -dMw -dMw -aWH -caH +mcu +mcu +kRk +vGw cep cfa cfv @@ -102895,40 +87797,40 @@ cgM chu cdC chr -ciU +kgH cjv -cke -ckO -clP -ckO -ckc +qvL +lRV +fTF +lRV +spj cka -cpL -dPu -dPJ -csS +kWr +pTn +nDd +xzn ctY -cvb -cvb -cwQ +omH +omH +iSu cxE -cyg -cyY -czG -cAp -cBm -cCp +vne +hIp +gFi +kCt +fHV +enb cDs -cEB -cFp -dRL -dSm -cHc +kCC +gNh +otc +oKZ +kAk cEG -cJF -cKw -eBZ -cLV +gRB +mbo +vpt +kvl cJA dTs dTs @@ -102957,29 +87859,29 @@ dTs dTs dTs dTs -cpY -cpY -cpY -diO -cpY -cpY -cpY -czU -cko +vdZ +vdZ +vdZ +tLK +vdZ +vdZ +vdZ +hiA +vgx cCH clZ clZ crW -fcu -cmc -cpY -cpY -cpY -crc -cpY -cpY -cpY -czU +xll +tdT +vdZ +vdZ +vdZ +nYs +vdZ +vdZ +vdZ +hiA dTs dTs dTs @@ -102991,15 +87893,15 @@ dTs dTs dTs dTs -dGs -dGQ -dGQ -dGQ -dHv -dGQ -dGQ -dGQ -dIj +qZf +qzk +qzk +qzk +puX +qzk +qzk +qzk +dvi dTs dTs dTs @@ -103020,78 +87922,78 @@ agQ agQ agQ agQ -ahr -ahr +jqJ +jqJ agQ agH -alD -aoP -akO -api +gWZ +xsB +gfO +tsw aug -aup -auq -avL -auq -axE +oXd +wGG +sBy +wGG +mEs aCr aqC aqC avG -ayd -ayj -ayj -ayj +hTt +tvT +tvT +tvT avH -ayK -ayX -ebT -azp +mhC +tGO +nAG +dip avG dTs dTs -aan -aan -ady +kuM +kuM +tCP aeE -azI +jfy aXW bkE aWB aZk -aAb -byZ -byZ -byZ -byZ -aAx -aAq -aAq -aAq -aAq -aAs +tyf +tWD +tWD +tWD +tWD +fmp +kqe +kqe +kqe +kqe +tSV aBu aeE aeE aeE aeE -bRg -aam -aam -aam +kcD +jwB +jwB +jwB dTs dTs dTs dTs -aam -ayp +jwB +epv aeE aeE aeE aeE ayD -aam -aam +jwB +jwB dTs dTs dTs @@ -103102,8 +88004,8 @@ dTs dTs dTs dTs -fHg -bQo +ozx +did naH ozu ozu @@ -103113,7 +88015,7 @@ nAm nAm nAm aXp -cIa +xzt aof aof aof @@ -103129,35 +88031,35 @@ cgN chu cdC chr -ciU +kgH cjv -ckf -dOy -dOI -ckO -ckc +lRx +wCY +fVz +lRV +spj cka -cpI -dPt -dPJ -crR -ctZ -cvb -qwZ -cwQ +pwH +hwg +nDd +xYT +iDS +omH +rvo +iSu cxE -cyh -cyZ -dQI -dQO -cyZ -cCq +bqF +qJX +hBy +lLN +qJX +isk cDs -dRi -cEB -dRM -dSl -cHK +lcd +kCC +hzS +fmA +mrf cIG cJG cJG @@ -103199,12 +88101,12 @@ cmW cmW cmW cSC -dlz +vUn cCH cpR cET crW -dom +gOo cSC cmW cmW @@ -103212,7 +88114,7 @@ cmW cSC cmW cmW -duB +lWa cSC dTs dTs @@ -103247,27 +88149,27 @@ acu (162,1,1) = {" acu afG -ahr -ahr -ahr -ahr -ahr -aju -ahr -ahr -ahr -ahr -anO -akO -aoP -akO -api -auh -auq -auq -avM -auq -axE +jqJ +jqJ +jqJ +jqJ +jqJ +oZh +jqJ +jqJ +jqJ +jqJ +whS +gfO +xsB +gfO +tsw +uts +wGG +wGG +smz +wGG +mEs aCr aqC aqC @@ -103277,23 +88179,23 @@ avG avG avG avG -ayP -ayX -ayZ -azp +mSM +tGO +lZe +dip avG dTs -aam -aam -aam -ayp +jwB +jwB +jwB +epv aeE -azI +jfy aXW blT aVZ aZk -bij +xpp aAh buj aAn @@ -103303,28 +88205,28 @@ aeE aeE aeE aeE -aBb -aBv +lzO +ueo aeE aeE aeE aeE -aam -aam -aam +jwB +jwB +jwB dTs dTs dTs dTs dTs dTs -ayp +epv aeE aeE aeE aeE ayD -aam +jwB dTs dTs dTs @@ -103336,8 +88238,8 @@ dTs dTs dTs afi -fHg -bQo +ozx +did naH ozu ozu @@ -103347,7 +88249,7 @@ ozu ozu ssy bbF -cIa +xzt dib aof dib @@ -103363,44 +88265,44 @@ cgN chq cdc ciy -ciU +kgH cjv -ckc -ckc -ckc -ckc -dPb +spj +spj +spj +spj +fjd cka -cpI -dPy -dPJ -dPO -cua -cvb -cvW -cwQ +pwH +lVS +nDd +ubd +nnD +omH +qFy +iSu cxE -dDk -cyZ -cyZ -cyZ -dQQ -cCr -cDt -cED -cFq -dRN -cHc -cHc -cIH +enY +qJX +qJX +qJX +qJW +xUR +iBw +lUu +laA +wos +kAk +kAk +ndq cJG -cKx -cKy +gsX +uOM cJG -cMQ -cNE -fhq -cOI +iQb +tUi +uLo +iiY cMP dTs dTs @@ -103424,7 +88326,7 @@ dTs dTs dTs dTs -cxm +eJR cmH cmI czQ @@ -103433,12 +88335,12 @@ cmH cmH cmH cmH -cBJ +uxX cCH clZ clZ crW -cta +moP cmH cmH cmH @@ -103446,7 +88348,7 @@ cmH cqT cmH cmH -ctm +iAY dTs dTs dTs @@ -103459,14 +88361,14 @@ dTs dTs dTs dTs -cxm +eJR cmH cmH cmH cmK cmH cmH -cpZ +leX dTs dTs dTs @@ -103481,70 +88383,70 @@ acu (163,1,1) = {" acu afG -aaf -aju -aju -aju -aju -amF -aju -abx -ahr -ahr -ahr -akO -aos -akO -api -auq -auq -auq -avN -auq -axE +fHD +oZh +oZh +oZh +oZh +lgU +oZh +dwP +jqJ +jqJ +jqJ +gfO +trE +gfO +tsw +wGG +wGG +wGG +hBz +wGG +mEs aCr aqC aqC avG -axW -ayi -pFj -tCK +ukS +oht +jyy +sKO avH -ayL -ayX -ayZ -azp +rke +tGO +lZe +dip avG dTs -aam -aam -aam -ayp +jwB +jwB +jwB +epv aeE -azI +jfy aXW blT aVZ aZk -bij +xpp buj aAn aAo aeE -bRg -aan -aan -aan +kcD +kuM +kuM +kuM aeE -aBc -aBv +nDJ +ueo bHs aeT aeT aeT -cad -cco +lst +iIv dTs dTs dTs @@ -103557,11 +88459,11 @@ dTs aeE aeE aeE -bgH -axP -cco -cco -cco +xSP +uAD +iIv +iIv +iIv dTs dTs dTs @@ -103570,8 +88472,8 @@ dTs dTs dTs afi -fHg -bQo +ozx +did naH ozu ozu @@ -103595,46 +88497,46 @@ cdC cdC cgN chr -chY -cel -ceY +wgM +kKE +oBh cjv -ckg -ckg -ckg -ckg -ckg +cKm +cKm +cKm +cKm +cKm cka -cpI -cqx -dPI -csT +pwH +iDh +vGV +lVB ctY -cvb -cvW -cwQ +omH +qFy +iSu cxE -jqQ -erB -czH -cAr -cBp -cCs +nxk +tGb +wWO +uXG +jLv +iCu cDs -cEE -cEB -dRM -cHe -cHc -cII +wIV +kCC +hzS +lYj +kAk +nBZ cJG -cKy -cKx +uOM +gsX cNa -cMR -cNF -cNF -cOm +kqC +jal +jal +rVd cMP dTs dTs @@ -103655,10 +88557,10 @@ dTs dTs dTs dTs -cuw -cwo -ctn -cux +ncX +fgw +fuI +hdg cpa cEU cmH @@ -103667,20 +88569,20 @@ cmK cmH cmH cmH -cBJ +uxX cCH clZ clZ crW -cta +moP cmK cEV cmH cPz cJl cmH -cpZ -cwu +leX +ghl dTs dTs dTs @@ -103692,15 +88594,15 @@ dTs dTs dTs dTs -cwo -cux +fgw +hdg cmH cmH cmI czQ cmH cmH -ctm +iAY dTs dTs dTs @@ -103716,8 +88618,8 @@ acu acu afG agQ -aju -ahr +oZh +jqJ agQ amm agQ @@ -103726,53 +88628,53 @@ ajt agQ agQ agH -alE -aot -akO -api +tfx +mWQ +gfO +tsw aug -aur -auq -awe -auq -axE +tFN +wGG +eZA +wGG +mEs aCr aqC aqC avG -axX -ayj -ayj -ayj -ayA -ayM -ayY -azl -azp +uhH +tvT +tvT +tvT +vzW +jId +kZk +pko +dip avG dTs dTs -aam +jwB dTs -ayp +epv aeE -azI +jfy aXW bkE aWB aZk -aAc +dyQ aAi aAo aeE -bRg -aam -aam +kcD +jwB +jwB dTs dTs aeT -bHD -bqa +mSr +hDM aeT aeT aeT @@ -103793,10 +88695,10 @@ aeE aeE aeE aeT -aGQ -aJU -aGX -aGX +vDY +wzr +qGs +qGs dTs dTs dTs @@ -103804,8 +88706,8 @@ dTs dTs dTs afi -lUU -bQo +tUH +did naH bSl bSl @@ -103829,8 +88731,8 @@ cfA cdC cgN chr -chZ -civ +gHm +qrC ciV ciV cjy @@ -103839,14 +88741,14 @@ cjy cjy cjy cjy -cpM -cqx -dPJ -dPX +tJu +iDh +nDd +kQr ctY -cvc -cvb -cwR +yeA +omH +xTQ ctY cyk cyk @@ -103855,29 +88757,29 @@ cyk cyk cyk cyk -cEF -cEB -dRM -cHc -cHc -cIH +xuj +kCC +hzS +kAk +kAk +ndq cJG -cKx -dSG -dSO -dSS -dSX -cNG -cOm +gsX +djm +rCS +hdk +vkY +eQo +rVd cMP cMP cMP cMP cMP -cmc +tdT dTs dTs -cuw +ncX dTs dTs dTs @@ -103888,9 +88790,9 @@ dTs dTs dTs dTs -cuw -cwo -cux +ncX +fgw +hdg cmH cpT cAL @@ -103899,21 +88801,21 @@ cUK cmH cmH cmH -cUL -cmX -dfx +hoV +kxQ +vgM cCH cpR cET crW -cta +moP cmH cYj cmH dLS dTx cmH -cqU +kWF dTs dTs dTs @@ -103924,16 +88826,16 @@ dTs dTs dTs dTs -cuw -cwo -cux +ncX +fgw +hdg cmH cmH cmH cmH cEU cUK -cpZ +leX dTs dTs dTs @@ -103950,39 +88852,39 @@ acu acu afG afG -akD -akD +gby +gby afG afG afG -ahb -ahb +khP +khP afG afG afG -amr -aot -akO -api +pov +mWQ +gfO +tsw aug -aun -auq -auq -auq -axE +eiu +wGG +wGG +wGG +mEs aCr aqC aqC avG -aye -ayl -ayv -ayj +rew +rHx +flg +tvT avH -ayO -ayZ -ayZ -azp +xkR +lZe +lZe +dip avG dTs dTs @@ -103990,23 +88892,23 @@ dTs dTs aeE aeE -azI +jfy aXW blT aVZ aZk -bAN +dGP aeE aeE aeE -aam +jwB dTs dTs dTs dTs aeT -bHD -bqa +mSr +hDM aeT aeT aeT @@ -104024,13 +88926,13 @@ dTs dTs dTs dTs -aYz -aGX -aGX -aGR -bfh -beB -beM +egA +qGs +qGs +kDj +hjg +oqC +iay dTs dTs dTs @@ -104038,110 +88940,110 @@ dTs dTs dTs dTs -nue -bQo +rAG +did naH ozu ozu ozu ehg -bVG -aVS -aVS -beq -beG +ktg +nrp +nrp +xdx +kms xOK xOK xOK -beG -beG -beq -uxs -ceq -cfb +kms +kms +xdx +shk +osa +wEm cfB aMt aMy chr -chZ -civ +gHm +qrC ciV -cjw -cjw -ckR -cjx -cmB -cnN +nHU +nHU +rVL +nWz +pWB +oWG cjy -cpI -cqA -dPK -dPI +pwH +txH +wUP +vGV ctY -cvb -cvW -cwQ +omH +qFy +iSu cxE -cyl -czb -czI -cAs -cBq -cCt +kKJ +uum +uRw +gTf +vpK +ehn cDu -cEB -dRq -dRM -cHc -cHc -cIJ +kCC +mKe +hzS +kAk +kAk +weM cJG -cKy -cKx -cLY -cLY -cNG -dTb -cOm +uOM +gsX +dTF +dTF +eQo +jLk +rVd cPM -cKx -cRn -cRQ +gsX +dzM +qtc cPM -clW -cqU -ctn -csf -cuw +gXA +kWF +fuI +oEW +ncX dTs dTs -cuw +ncX dTs dTs dTs dTs dTs -cwo -ctn -cux +fgw +fuI +hdg cmH dLS dTx csb cmH -cUL -cVu -cpX -cpX -cBL -cvn -cvx +hoV +kNK +ukv +ukv +lxC +lBf +xmw cCH clZ clZ crW -ctd -cpb +rSR +ePL cmH cpa dMX @@ -104157,9 +89059,9 @@ dTs dTs dTs dTs -vHx -cwo -cux +ylR +fgw +hdg cmH cJl cPz @@ -104167,7 +89069,7 @@ cmH cmH cmH cmH -ctm +iAY dTs dTs dTs @@ -104183,53 +89085,53 @@ acu (166,1,1) = {" acu afG -afH -afK -afK -agI +pqB +his +his +vsw afG -afH -afK -afK -agI +pqB +his +his +vsw afG -aqF -anX -aou -aoK -api +hNt +nEL +iIa +tJe +tsw aug -aun -auq -auq -auq -axG +eiu +wGG +wGG +wGG +eBC aCr aqC aqC avG -tCK -aym -nRL -ayz +sKO +iSp +nyL +imD avH -ayS -azc -azc -azt +pFy +umU +umU +eJY avG dTs dTs dTs -ayp +epv aeE aeE -azI +jfy aXW blT aVZ aZk -bAN +dGP aeE aeE ayD @@ -104239,8 +89141,8 @@ dTs dTs dTs glO -pdi -tFi +ekj +ezg glO glO glO @@ -104262,9 +89164,9 @@ kPs kPs kPs kPs -grk +euz glO -vfr +vNI dTs dTs dTs @@ -104273,89 +89175,89 @@ dTs dTs dTs pke -bQo +did naH ozu ozu ozu xsS -gFr -dCt -aWs +kYP +sZM +weO dLi -dLp +vjT dib dib dib dLF dLT -ccO -ccM +npN +oNB cen cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciV -cjx -dOo -dOo -cjx +nWz +wmz +wmz +nWz cjy cjy cjy -cpN -cqx -dPJ -dPI +gKu +iDh +nDd +vGV ctY -cvb -cvW -cwQ +omH +qFy +iSu cxE -cym -czc -czc -cAt -czc -cCu +yjx +lbM +lbM +ewQ +lbM +uXc cDu -cEC -dRq -dRM -cHc -cHc -cIH +iCQ +mKe +hzS +kAk +kAk +ndq cJG -cKx -cKy +gsX +uOM cNa -cMT -cNH -dTc -cOm -cPN -cKx -cKx -cRR +mNK +gOe +jYb +rVd +rEu +gsX +gsX +vIT cPM -clW +gXA cmH cmH -cqU -ctn -csf -cwo -csf +kWF +fuI +oEW +fgw +oEW dTs dTs dTs dTs -cwo -cux +fgw +hdg cmH cmH cQK @@ -104363,8 +89265,8 @@ dMX dMN cqT cmH -cup -cUc +pHh +hAY cWb clY clY @@ -104374,8 +89276,8 @@ coZ clZ clZ crW -cUc -clW +hAY +gXA cmH dLS wQZ @@ -104391,8 +89293,8 @@ dTs dTs dTs dTs -cwo -cux +fgw +hdg cQK cAL cqT @@ -104417,27 +89319,27 @@ acu (167,1,1) = {" acu afG -afI -akW -lNN -agL -amn -afI -akW -lNN -agL +sue +tPA +tCr +kbk +lqE +sue +tPA +tCr +kbk afG -aqG -amr -aov -aoL -api +slu +pov +qzN +cXX +tsw aCr -auw -auP -awr -awr -axH +dIv +mGH +tvP +tvP +xaY aCr aqC aqC @@ -104455,15 +89357,15 @@ avG dTs dTs dTs -ayp +epv aeE aeE -azI +jfy aXW bkE aWB aZk -bAN +dGP aAj aeE ayD @@ -104472,9 +89374,9 @@ dTs dTs dTs dTs -ccJ -aFo -uXk +tyW +iCo +gNg azT azT azT @@ -104491,104 +89393,104 @@ dTs dTs dTs dTs -agD +rTm adA adA adA -aCG -aCM +fef +muu azT dTs dTs dTs -aJM +mcN adA dTs dTs dTs cNW -bQo +did naH ozu ozu ozu xsS -hwc -hhj -cAh +uRZ +lMd +hpS dJT -dEY +tRd dib dib dib dLu dLO -ccR -cdA +jFo +bqD ceo cdw cfy dPY cdC chr -chZ -civ +gHm +qrC ciV -cjx -dOo -cjx -cjx -cmB -cnN +nWz +wmz +nWz +nWz +pWB +oWG cjy -cpI -dPt -dPI -dPI +pwH +hwg +vGV +vGV ctY -cvd -cvW -cwQ +pCk +qFy +iSu cxE -cyn -czc -czc -czc -cBs -cCv -cDv -cED -dRr -dRO -cHf -cHc +oFN +lbM +lbM +lbM +pZE +pjb +exU +lUu +enc +vqi +hoE +kAk cHL cHL cHL cHL cHL -cMU -cNH -dTc -cOm +eTH +gOe +jYb +rVd cJG cJG cJG cJG cMP -clW +gXA cmH cmH cmH cmH -cqU -cux -cqU -ctn -ctn +kWF +hdg +kWF +fuI +fuI dTs cSC -cxm +eJR cmH cmH cmH @@ -104597,8 +89499,8 @@ wQZ dOw cmH dIi -cup -cUc +pHh +hAY cCH clZ clZ @@ -104608,24 +89510,24 @@ clZ cpR cET crW -cUc -clW +hAY +gXA cpa dMX wQZ dOw cmH cmH -ctm -cuw +iAY +ncX dTs dTs dTs dTs dTs dTs -cwo -cux +fgw +hdg csa dLS edC @@ -104634,7 +89536,7 @@ cmH cmH cmH cmH -edM +iuP dTs dTs dTs @@ -104651,21 +89553,21 @@ acu (168,1,1) = {" acu afG -afI -akW -akW -agL -amn -afI -akW -akW -agL +sue +tPA +tPA +kbk +lqE +sue +tPA +tPA +kbk afG -aqH -amr -aot -akO -api +dpX +pov +mWQ +gfO +tsw aCr aCr aCr @@ -104689,15 +89591,15 @@ dTs dTs dTs dTs -ayp +epv aeE aeE -ajX +jay aXW blT aVZ aZk -bAN +dGP aeE aeE ayD @@ -104706,9 +89608,9 @@ dTs dTs dTs dTs -aFd -aFo -aFV +pRi +iCo +tjn afb xEz azT @@ -104724,49 +89626,49 @@ dTs dTs dTs dTs -aEU -aEV +xaa +uVc adA adA adA -aFr +fbz dTs dTs dTs dTs dTs aJx -aJM +mcN adA dTs dTs -fyq -bQo +lQF +did ngo oAM oAM oAM vLd -hwc -oNS -cDP -dLj -cEW +uRZ +epK +lYV +ecW +hAg dib dib dib dLu dLP dLU -cdA +bqD ceo cdw cfy cge cgL chr -dBO -civ +qfl +qrC ciV cjy dOp @@ -104775,42 +89677,42 @@ cjy cjy cjy cjy -cpI -dPt -dPJ -crM +pwH +hwg +nDd +kiD ctY -cvb -cvb -cwQ +omH +omH +iSu cxE -kHO -czd -czJ -cAu -cBt -cCw +jkL +tdO +njm +lKJ +kjs +xsI cDu -cEE -dRq -dRP -cHg -cHf +wIV +mKe +rmb +lhM +hoE cHL cIK cIK cLm cHL -cMV -cNI -dTd -cOm +mTn +qIL +kST +rVd cPM -cKx -cRn -cRQ +gsX +dzM +qtc cPM -clW +gXA cmH cFK cmH @@ -104820,9 +89722,9 @@ cmH cmH cmH cmH -cqU -dco -cux +kWF +biR +hdg cmH cmH cqT @@ -104830,9 +89732,9 @@ dMX dMN csb cmH -cUL -cwp -cUc +hoV +eWZ +hAY cCH clZ clZ @@ -104842,23 +89744,23 @@ clZ clZ clZ crW -cUc -clW +hAY +gXA cpT dNa dOw csb cmH cmH -cqU -ctn -csf +kWF +fuI +oEW dTs dTs dTs dTs dTs -cxm +eJR cmH csc dMX @@ -104868,7 +89770,7 @@ cmH cmH cmH cmH -ctm +iAY dTs dTs dTs @@ -104885,26 +89787,26 @@ acu (169,1,1) = {" acu afG -afJ -afQ -all -agM +wXT +rKS +pUE +veX afG -afJ -afQ -all -agM +wXT +rKS +pUE +veX afG -aqI -amr -aot -aiq -api +jfu +pov +mWQ +lcK +tsw akL dTs dTs dTs -aqB +lim asb asb atS @@ -104931,7 +89833,7 @@ amM blT aVZ aZk -bAN +dGP aeE aeE ayD @@ -104940,51 +89842,51 @@ dTs dTs dTs dTs -aFd -aFo -aFV +pRi +iCo +tjn azT azT aGt -aEU -aJV -aGi +xaa +eNC +xLc dTs dTs -aJV -aJV +eNC +eNC dTs dTs dTs dTs dTs -aEV +uVc adA adA kmU adA -aCG +fef dTs dTs dTs dTs aIv aJB -acZ +fCu adA dTs dTs -nue -sEL -hpw -hpw -hpw -hpw -hpw -kVU -dCt -cAg -dEY +rAG +muh +kaw +kaw +kaw +kaw +kaw +qVE +sZM +ncW +tRd dib dib dib @@ -104992,30 +89894,30 @@ dib dLu dJT dLV -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciV -cjz +lEC dOq -ckS -clQ -cmC -cnO +fhk +stf +quq +qRm cjy -dPl -dPu -dPL -csR +rWw +pTn +ifp +xBq ctY ctY -cvZ +hIS ctY ctY cyp @@ -105026,25 +89928,25 @@ cyp cyp cyp cEG -dRq -dRQ +mKe +jIh cEG cHL cHL -cJH +dMi cIK cLm cHL -cMW -cNH -dTd -cOm -cPN -cKx -cKx -cRR +eFq +gOe +kST +rVd +rEu +gsX +gsX +vIT cPM -clW +gXA cmH cmH cmH @@ -105064,9 +89966,9 @@ dNa dOw cmH cmH -cup -cmM -coc +pHh +goI +gZq cVC cmb cmb @@ -105076,8 +89978,8 @@ clZ clZ clZ crW -cmN -doQ +ibT +yfm cmH cqT cmH @@ -105086,13 +89988,13 @@ cmH cmH cmH cmH -cqU -csf +kWF +oEW dTs dTs dTs -ctn -cux +fuI +hdg cmH cmH dNa @@ -105130,10 +90032,10 @@ afG afG afG akL -amr -aot -akO -api +pov +mWQ +gfO +tsw akL dTs dTs @@ -105165,7 +90067,7 @@ akc bkE aWB aZk -bAN +dGP aeE aAp ayD @@ -105174,42 +90076,42 @@ dTs dTs dTs dTs -aFd -qmU -hzg +pRi +lSI +dpd azT azT azT -agD +rTm adA -aFr -aJV -aEV +fbz +eNC +uVc adA adA -aFr +fbz dTs dTs dTs -aEV +uVc adA adA adA adA -aCG -aCM +fef +muu dTs dTs dTs dTs aIv aJB -njF +gSq adA dTs dTs -fyq -bQs +lQF +qhP abk abo abU @@ -105217,8 +90119,8 @@ cBZ abo abk abk -cDQ -dEY +tia +tRd dib dib dib @@ -105226,59 +90128,59 @@ dib dLu dJT dLW -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciW -cjA +mRl dOq cki clR cki -cnP +rIU coU -dPm -dPu -dPI -csS +gZp +pTn +vGV +xzn cub -cve -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cwS -cve -cEH -dRs -dRR -cHh +xJf +rNt +rNt +rNt +rNt +rNt +rNt +rNt +rNt +rNt +xJf +miH +lhi +wAT +vUf cHL cIK cIK cIK cIK cHL -cMX -cNH -dTc -cOJ +uTZ +gOe +jYb +hRX cJG cJG cJG cJG cMP -clW +gXA cmH cmH cAL @@ -105298,9 +90200,9 @@ cqT cpa cmJ cmH -cup -cmN -coc +pHh +ibT +gZq cWb clY clY @@ -105310,8 +90212,8 @@ clZ cpR cET crW -cmN -cnW +ibT +dQV cmH cnR cmJ @@ -105321,9 +90223,9 @@ cmH cmH cmH cmH -cqU -ctn -cux +kWF +fuI +hdg cmH cmH cmH @@ -105335,7 +90237,7 @@ cmH cmH cmH dIi -cpZ +leX dTs dTs dTs @@ -105364,10 +90266,10 @@ dTs dTs dTs akL -amr -aot -acQ -api +pov +mWQ +tuF +tsw akL dTs dTs @@ -105399,7 +90301,7 @@ akc blT aVZ aZk -bAN +dGP aeE aeE ayD @@ -105408,13 +90310,13 @@ dTs dTs dTs dTs -aFe -qmU -hzg +uSZ +lSI +dpd azT azT azT -agD +rTm adA adA adA @@ -105423,14 +90325,14 @@ adA adA adA adA -aFr -aEV +fbz +uVc adA adA adA adA adA -aEX +lnw azT dTs dTs @@ -105438,81 +90340,81 @@ dTs dTs aIv aJB -uGU -aJM +mMR +mcN dTs dTs dTs -fyq +lQF abk -adi +oTC abU abU abO acA abk duy -dEY +tRd dib dib dib dib dLu dJT -dLY -cdB +sAw +tsX cen cdw cfy iAf cgL chr -chZ -civ +gHm +qrC ciW -cjB +eWP dOq dOq dOJ dOq dOq dPe -dPO -dPz -dPM -csU -cuc -dSo -dQm -dQq -dQu -dQw -dQB -dQw -dQP -dQw -dQw -dQw -dQw -dRt -cGp -cHi +ubd +fAr +tiG +geG +mzX +jQt +qdF +tAx +tlT +nRg +mzg +nRg +fIV +nRg +nRg +nRg +nRg +xiQ +dzI +qPm cHM cIL cIL cIL cIL cHM -cMY -cNK -dTf -cOm +wCO +fge +tNp +rVd cPM -cKx -cRn -cRQ +gsX +dzM +qtc cPM -clW +gXA cmH cmH dLS @@ -105531,10 +90433,10 @@ cpa cmH cmH cmH -cUL -cwp -cmN -coc +hoV +eWZ +ibT +gZq cCH clZ clZ @@ -105544,8 +90446,8 @@ clZ clZ clZ crW -cmN -cnW +ibT +dQV cmH cmH cmH @@ -105569,8 +90471,8 @@ cmH cmH cmH cmH -cqU -csf +kWF +oEW dTs dTs dTs @@ -105598,10 +90500,10 @@ dTs dTs dTs akL -anY -aot -akO -aoX +ykW +mWQ +gfO +ghr akL dTs dTs @@ -105623,7 +90525,7 @@ dTs dTs dTs dTs -ayp +epv aeE aiV ajo @@ -105633,7 +90535,7 @@ aCQ blT aVZ aZk -bAN +dGP aeE aeE ayD @@ -105643,28 +90545,28 @@ dTs dTs dTs azT -aFo -aFV +iCo +tjn aGk azT -aEU -aEV -agN -akr -akr -akr -akr -akr -akr -akr -akr -aEm +xaa +uVc +stn +ihK +ihK +ihK +ihK +ihK +ihK +ihK +ihK +kKx adA adA adA adA adA -aEX +lnw dTs dTs dTs @@ -105672,8 +90574,8 @@ dTs dTs aIv aJB -aIy -adr +hXw +nYH adA dTs dTs @@ -105685,8 +90587,8 @@ abU abU abU abo -dEk -cEW +xmL +hAg dib dib dib @@ -105694,59 +90596,59 @@ dib dLu dJT dLV -cdA +bqD ceo cdw cfy cdC dPY chr -chZ -civ +gHm +qrC ciW -cjC +rRm ckj ckU dOK dOV cmE cmE -dPo -cbB -crP -csV -cud -dQj -dQn -dQr -dQv -dQx -dQj -dQj -dQj -dQj -dQj -cud -cud -dRu -cGq -cxH +vNz +oWs +uLs +oxg +eWG +tIV +qWf +jzr +wlo +jIY +tIV +tIV +tIV +tIV +tIV +eWG +eWG +urj +jdf +rcR cHL cIK cIK cKC cIK cHL -cMZ -cNL -dTc -cOm -cPN -cKx -cKx -cRR +sel +smq +jYb +rVd +rEu +gsX +gsX +vIT cPM -clW +gXA cmH csc dMX @@ -105765,10 +90667,10 @@ cmH cmH cmH cmH -cup -cmM +pHh +goI cto -coc +gZq cCH clZ clZ @@ -105778,33 +90680,33 @@ clZ clZ clZ crW -cmN +ibT ddx -cWa -cWa -cWa -cWa -cWa -cWa -pOE -cWa -cWa -cWa -cWa -cWa -cWa -cWa -cWa -cWa -pOE -cWa -cWa -cWa -cWa -cWa -cGD +hnG +hnG +hnG +hnG +hnG +hnG +rHo +hnG +hnG +hnG +hnG +hnG +hnG +hnG +hnG +hnG +rHo +hnG +hnG +hnG +hnG +hnG +sFX cmJ -ctm +iAY dTs dTs dTs @@ -105832,10 +90734,10 @@ dTs dTs akL akL -amr -aot -akO -api +pov +mWQ +gfO +tsw akL akL dTs @@ -105867,46 +90769,46 @@ amM bkE aWB aZk -bAN +dGP mqM aeE -bgH +xSP dTs dTs dTs dTs dTs azT -aFo -aFV +iCo +tjn xEz azT -agD -agN -aGD -aGT -aGT -aGT -aGH -awv -aGT -aGT -aGT -aEr -aEm +rTm +stn +fvn +eyB +eyB +eyB +eAL +dhK +eyB +eyB +eyB +mnu +kKx adA eqo eqo -aCG -aCM +fef +muu dTs dTs dTs dTs aIv -aIF -aIG -acZ +cHW +jBY +fCu adA adA dTs @@ -105919,7 +90821,7 @@ abU acA abO abo -dEl +rxh dib dib dib @@ -105928,43 +90830,43 @@ dib dLu dJT dLV -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciW -cjD -ckk -dOA -dOL -dOW -ckk +utP +udI +kVz +oqq +rFx +udI coU -cpL -bZx -crM -csT +kWr +eZM +kiD +lVB cub -cvg -cwd -cwV -cxH -cvg -cze -cvg -cvg -cvg -cvg -cvg -cwd -dRv -dRS -cHj +gmw +wtD +xfi +rcR +gmw +oGm +gmw +gmw +gmw +gmw +gmw +wtD +kvb +ssk +kSS cHL cHL cHL @@ -105972,15 +90874,15 @@ cHL cHL cHL cNa -cNL -dTg +smq +naN dTl cJG cJG cJG cMP cMP -clW +gXA cmH cmH dNa @@ -105992,17 +90894,17 @@ cmH cmH cmH cSC -csi -ctp +dyB +jDq cmH cmH dec cmH cGL -cup -cmN +pHh +ibT cto -coc +gZq cVC cmb cmb @@ -106012,33 +90914,33 @@ clZ cpR cET crW -cmU -cod -cod -dps -cod +iSf +sOc +sOc +fyd +sOc cto ddv -dbR -dbR -dbR -dbR -dbR +meA +meA +meA +meA +meA dcD kIP ddv -dbR -dbR -dbR -dbR -dbR -dbR -dbR +meA +meA +meA +meA +meA +meA +meA dcD kIP -cnW +dQV cmH -ctm +iAY dTs dTs dTs @@ -106065,12 +90967,12 @@ akL akL akL akL -anV -alD -aot -akO -aoZ -ajj +wiM +gWZ +mWQ +gfO +lby +eXA akL akL akL @@ -106091,7 +90993,7 @@ dTs dTs dTs dTs -ayp +epv aeE aiX ajr @@ -106101,46 +91003,46 @@ akc blT aVZ aZk -bAN +dGP aeE aeE -bgH -axP +xSP +uAD dTs dTs dTs dTs azT -aFo +iCo aFW -aEL -aEL -aGu -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aGw -aHU -aGH -aEq +ftG +ftG +uyt +wRN +wRN +wRN +wRN +wRN +wRN +wRN +wRN +wRN +nRU +eAL +fyz adA eqo eqo -aEX +lnw azT dTs dTs dTs -aIx -aIx -aIG -aIy -adr +huq +huq +jBY +hXw +nYH adA adA dTs @@ -106153,40 +91055,40 @@ abU abO aVE abo -dEm +dKj dib dib dib dib -dLt -dLz +dul +bds dJT dLV -cdA +bqD ceo cdw cfy cge cgL chr -chZ -civ +gHm +qrC ciV -cjE +eGe cjG dOh dOh dOX cjG cjy -cpI -bZx -crM -crM +pwH +eZM +kiD +kiD cue cue cuf -cwW +plJ cuf cue czf @@ -106195,26 +91097,26 @@ czf czf czf czf -cEI -dRy -dRT -cGB +vlf +jXI +hQl +wqF cHN -dua -cIT -cIT -cLo +kRF +wyi +wyi +doW cHN bbN -cNM -cLp -dTm +ljE +dhV +sfj cHN cQB dlu cLu -cmc -cpW +tdT +jAI cmH cmH cqT @@ -106223,20 +91125,20 @@ cmH cmH cmH cmH -cpZ -ctp +leX +jDq dTs dTs dTs -csi -csi -ctp +dyB +dyB +jDq cmH -cUL -cwp -cmN +hoV +eWZ +ibT cto -coc +gZq cWb clY clY @@ -106251,16 +91153,16 @@ clY clY clY cFH -cmN -cnW +ibT +dQV cmH cmH cmH cmH cmH -dyl +mJJ cto -ddw +pvL cmH cmH cmH @@ -106268,11 +91170,11 @@ cmH cmH cmH cmH -dyl +mJJ cto -ddw +pvL cmH -cqU +kWF dTs dTs dTs @@ -106292,26 +91194,26 @@ dTs dTs dTs aah -anV -ajO -ajO -ajO -ajO -amG -ajO -alD -akO -aot -akO -akO -apf -ajO -ajO -ajO -ajO -alD -akO -api +wiM +hFy +hFy +hFy +hFy +uyr +hFy +gWZ +gfO +mWQ +gfO +gfO +pKx +hFy +hFy +hFy +hFy +gWZ +gfO +tsw akL dTs dTs @@ -106325,7 +91227,7 @@ dTs dTs dTs dTs -ayp +epv aeE aiX ajm @@ -106335,7 +91237,7 @@ akc blT aVZ aZk -bAN +dGP aeE aeE aeE @@ -106345,13 +91247,13 @@ dTs dTs dTs azT -aFp +hlm aFX uNF -aEP -aEP -aGB -aGE +xds +xds +erL +ftV aGc aGc aGc @@ -106360,23 +91262,23 @@ aGc aGc aGc aGc -aGw -aEz -aEW -aII +wRN +hyc +qQg +rcZ adA -aFr -aGi +fbz +xLc dTs dTs dTs -kiy -kiy -kiy -adr +ieG +ieG +ieG +nYH adA adA -aCG +fef dTs dTs dTs @@ -106396,15 +91298,15 @@ dLu dJT dJT dLV -cdA +bqD ceo cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciV cjF dOh @@ -106413,10 +91315,10 @@ dOC dOh cnQ cjy -cpM -bZx -dPI -csR +tJu +eZM +vGV +xBq cue wWE cvi @@ -106424,53 +91326,53 @@ cwX cvi cyq czf -deI -cAv -cBu -cCx +rpe +etP +ewL +kwZ czf -dRj -dRy -dRT -cGB +wjY +jXI +hQl +wqF cHN -cIN -cJI -cKD -cLp +rdI +lFW +tGy +dhV cHN bbN -dSY -cLp -dTn +pBe +dhV +eNZ cPO cQB cQB cLu -clW +gXA cmH cmH cmH cmH cmH -cpZ -csi -ctp -cpZ -cwu +leX +dyB +jDq +leX +ghl dTs dTs dTs dTs dTs dTs -ctq -ctp -cup -cmM +oAv +jDq +pHh +goI cto cto -coc +gZq cCH clZ clZ @@ -106485,16 +91387,16 @@ clZ clZ clZ crW -cmN -cnW +ibT +dQV cmH duC duC duC duC -dXB -dXH -dXX +eAq +eEr +vlQ dBr dBr dBr @@ -106502,9 +91404,9 @@ dBr dBr dBr dBr -dXB -dZk -dXX +eAq +wkK +vlQ dBr dBr dBr @@ -106526,26 +91428,26 @@ dTs dTs dTs akL -amr -aiq -akO -akO -akO -akO -akO -akO -akO -acG -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -apT -apV -aoX +pov +lcK +gfO +gfO +gfO +gfO +gfO +gfO +gfO +tEC +hjQ +hjQ +hjQ +hjQ +hjQ +hjQ +hjQ +jDD +nal +ghr akL dTs dTs @@ -106569,48 +91471,48 @@ aCQ aaM aWB aZk -bAR -bAS -bAS -bAS -bAS -byY +oQT +doV +doV +doV +doV +rry azT -aET -aET +nZz +nZz azT azT -qmU -srf +lSI +nbL adA adA -ajG -aGH -aGU -aGE +jww +eAL +qpj +ftV aGc aGc -aGE -aGE -aGE -aGE -aGE -flu +ftV +ftV +ftV +ftV +ftV +wTc aGc -aFi +twD adA adA -aFr -aJV -aJV -aJX +fbz +eNC +eNC +usU adA adA adA kmU adA -aCG -aCM +fef +muu dTs dTs dTs @@ -106628,17 +91530,17 @@ dib dib dLu dJT -dLQ -dLZ -cdB +kgg +ghK +tsX cen cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciW cjG dOr @@ -106647,10 +91549,10 @@ dOM dOY cjG coU -cpI -bZx -crM -crM +pwH +eZM +kiD +kiD cuf cvi cwf @@ -106658,36 +91560,36 @@ cwY cxI cyr czf -czL +wuK cBx cBx cBx -xYc -dRk -dRy -dRV -cGB +oej +mUg +jXI +hID +wqF cHO -cIO -cJJ -cJJ -cLp +fup +giQ +giQ +dhV cHN -cNc -cNM -cLp -dTo +mlM +ljE +dhV +yjt cHN cQB cQB cPO -clW +gXA cmH cmH cmH cmH cmH -ctm +iAY dTs dTs dTs @@ -106699,12 +91601,12 @@ dTs dTs dTs dTs -cux -cup -cmN +hdg +pHh +ibT dzt dzt -dHm +iMF cCH clZ clZ @@ -106719,29 +91621,29 @@ clZ clZ clZ crW -cmN -cnW +ibT +dQV cmH duC -oVs -dwF +xtd +vMk duC duC dzs duC dBr -dZR -eaA -dFf -eaz -eaG +iof +fiy +psi +qST +tDr dBr dBr dHh dBr dBr -dEr -dFf +ufM +psi dBr dTs dTs @@ -106760,26 +91662,26 @@ dTs dTs dTs akL -aaE -akO -akO -akO -akO -akO -akO -akO -aiq -akO -akO -akO -akO -akO -akO -akO -akO -aot -akO -apY +toZ +gfO +gfO +gfO +gfO +gfO +gfO +gfO +lcK +gfO +gfO +gfO +gfO +gfO +gfO +gfO +gfO +mWQ +gfO +nUZ akL dTs dTs @@ -106803,35 +91705,35 @@ amM blT aVZ aZk -bij -byZ -byZ -byZ -byZ -bAO -aEL -aEL -aEL -aEL -aEL +xpp +tWD +tWD +tWD +tWD +oQF +ftG +ftG +ftG +ftG +ftG aFY -aFi -adA -adA -ajJ -aGM -aGH -aGW -aHb -aHA -awv -aGT -aHJ -aHV -aEx -azO -aHe -aFi +twD +adA +adA +jSb +mYR +eAL +vyg +hLm +kdI +dhK +eyB +tdX +owV +rjH +dfV +xWq +twD adA aJi kmU @@ -106843,7 +91745,7 @@ adA adA adA adA -aEX +lnw dTs dTs dTs @@ -106859,20 +91761,20 @@ dEW dib dib dib -dLt -dLz +dul +bds dJT dLO -ccR -cdA +jFo +bqD cdw cdw cfy cge cgL chr -chZ -civ +gHm +qrC ciW cjG dOr @@ -106881,10 +91783,10 @@ aFJ cmF cjG coU -cpI -bZx -dPI -dPI +pwH +eZM +vGV +vGV cuf dCB dCB @@ -106892,35 +91794,35 @@ dCB cvi cvi czf -czM +tpV cAx cBx cBx -dyW -cIW -cEM -dRV -dSn +fAp +uJa +iUk +hID +pMJ cHO -cIP -cJK -cKD -cLp +eWN +jzE +tGy +dhV cHN -cNc -cNM -dTh -cOM +mlM +ljE +uRV +nJS cHN cQB cQB cLu -clW +gXA cmH cmH cmH sMi -cpZ +leX dTs dTs dTs @@ -106933,12 +91835,12 @@ dTs dTs dTs dTs -cmX -cwp -dvk +kxQ +eWZ +jXm dzt dzt -dHm +iMF cVC cmb cmb @@ -106953,29 +91855,29 @@ cVA sXR clZ crW -cmN -fsK +ibT +xwj cmH duC -dvD -dwF -dxf -jXy +doo +vMk +mwd +gEh ltE -vAN +gSz dBo -dZR -eaA -dFf -eaA -eaH +iof +fiy +psi +fiy +loc dBo -sYU +gxC gYP -hOv -dFU -dFf -dJh +kCv +fur +psi +igC dBr dTs dTs @@ -106994,26 +91896,26 @@ dTs dTs dTs akL -ahd -alE -akO -akO -aph -ajP -ajP -alE -akO -akO -akO -akO -aph -pvy -apv -ajP -alE -aot -aiq -aqa +pqa +tfx +gfO +gfO +nAT +rfZ +rfZ +tfx +gfO +gfO +gfO +gfO +nAT +rnP +lyS +rfZ +tfx +mWQ +lcK +eWt aqr dTs dTs @@ -107026,7 +91928,7 @@ dTs dTs dTs dTs -ayp +epv aeE aeE aiX @@ -107037,35 +91939,35 @@ aCp blT aVZ aZk -bij -bzV -bzV -bzV -bzV -bAP -aEP -aEP -aEP -aEP -aEP +xpp +xXB +xXB +xXB +xXB +fml +xds +xds +xds +xds +xds aHx -aFi +twD adA adA adA -ajJ -azO -azO -aHe -aHB -azO -azO -azO -azO -aEy +jSb +dfV +dfV +xWq +wbP +dfV +dfV +dfV +dfV +tzj adA -aEZ -aFi +qLX +twD adA adA adA @@ -107077,7 +91979,7 @@ adA adA aKC adA -aEX +lnw azT dTs dTs @@ -107098,15 +92000,15 @@ dJT dJT dTs dTs -cdD +nzE cdw cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciW cjG dOr @@ -107115,10 +92017,10 @@ dOO cmF cjG coU -cpI -bZy -dPI -dPI +pwH +eAN +vGV +vGV cuf cvk cwg @@ -107126,35 +92028,35 @@ cvi cvi gMv czf -czN +lUA cBx cBx cBx czf -cwd -cEM -dRT -dSn +wtD +iUk +hQl +pMJ cHN -cIQ -cJL -cKE -cLp +oiN +upD +gRO +dhV cHN cHO -cNM -dTi +ljE +jrB cHO cHN cLu cLu cLu -clW +gXA cmH dIi cmH cmH -ctm +iAY dTs dTs dTs @@ -107166,50 +92068,50 @@ dTs dTs dTs dTs -cxm -cup -dvj +eJR +pHh +umL dzt dzt dzt cto -cok -cok -cok -cok -cok -cok -cok -cok -cok -cvw +lQD +lQD +lQD +lQD +lQD +lQD +lQD +lQD +lQD +npn cCH cpR cET crW -cmN -cnW +ibT +dQV cmH duC -dvE -dwF +jnn +vMk duC -dXC +rzv dXy -dAD +okW dBo -dZR -eaA -dFf -dZX -eaH +iof +fiy +psi +lGb +loc dBo -dGC +fPT ebb -dZz +xWU dBr -xzc -dEt +umY +gdQ dBr dTs dTs @@ -107230,24 +92132,24 @@ dTs afP afP ajl -alI -amU +mry +tPn ajl afP afP -ahd -ajP -ajP -ajP -ajP -ajk +pqa +rfZ +rfZ +rfZ +rfZ +ukW akL akL akL -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dqd dTs @@ -107260,7 +92162,7 @@ dTs dTs dTs dTs -ayp +epv aeE aeE aiX @@ -107271,35 +92173,35 @@ akd aaM aWB aZk -bsP -aSi -aSi -aQq -aPP -byY +tpQ +fTe +fTe +wkI +eZV +rry adA adA -aCG -oit +fef +iWy adA -aEZ -aFi -aCG -agK +qLX +twD +fef +eXo dTs dTs -agC +cZh aKC -xsQ -aFi +uVv +twD adA adA adA adA adA adA -aEZ -aFi +qLX +twD adA adA adA @@ -107311,10 +92213,10 @@ eqo eqo adA adA -aFr -aGi +fbz +xLc azT -aEU +xaa adA dTs dTs @@ -107323,7 +92225,7 @@ dTs dTs dTs dTs -dEl +rxh dib dib dib @@ -107332,15 +92234,15 @@ dJT dTs dTs dTs -cdE +qTx cdw cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciW dOh dOh @@ -107349,45 +92251,45 @@ dOP cjG cjG coU -cpI -bZz -dPN -crM +pwH +ifD +jtf +kiD cue cvl cvi -cxb +vqh cug cug czg czg -cBy -cBy -cCy +rey +rey +rTU czf -cEM -dRy -dRX -cHj +iUk +jXI +oLe +kSS cHN cHO cHO -cKF +vtO cHO cHN -cIP -cNM -dTh -cLp -cPP +eWN +ljE +uRV +dhV +ykF cLu -cmc -cpY -cpW +tdT +vdZ +jAI cmH cmH cmH -cpZ +leX dTs dTs dTs @@ -107400,47 +92302,47 @@ dTs dTs dTs dTs -cxm -cup -dvk +eJR +pHh +jXm dzt -cod -cod -diP -dbR -dbR -dbR -dbR -dbR -dbR -dbR -dbR -dbR -cVz +sOc +sOc +eBe +meA +meA +meA +meA +meA +meA +meA +meA +meA +hXt cCH clZ clZ crW -cmN -cnW +ibT +dQV cmH duC duC duC duC -dym +tgW dXy -eWn +iiC dBo -dZR -eaA -dFf -eaA -eaH +iof +fiy +psi +fiy +loc dBo -dGC +fPT dYk -dHE +pdC dBr dBr dBr @@ -107462,12 +92364,12 @@ dTs dTs dTs afP -alK -akZ -alI -alI -akQ -anl +lfq +gLQ +mry +mry +otm +pbA afP afP afP @@ -107478,10 +92380,10 @@ akL akL dTs akL -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dqd dTs @@ -107505,40 +92407,40 @@ aCQ blT aVZ aZk -byT +vny bzS aOh -aPO +dFH dTs dTs adA adA -aEX -agD +lnw +rTm adA -aEZ -aFi +qLX +twD dTs dTs dTs dTs -jxN +jsh adA -aEZ -aFi +qLX +twD adA adA -agN -akr -akr -akr -aIA -aIQ -akr -akr -akr -akr -aJW +stn +ihK +ihK +ihK +ful +oQH +ihK +ihK +ihK +ihK +ghc adA adA eqo @@ -107546,18 +92448,18 @@ eqo aKD aIp adA -ufP -aJV -aEV +tOi +eNC +uVc adA adA -ajG -wbv -aHU +jww +kug +nRU dTs dTs -czT -dEX +pQW +cfU dib dib dib @@ -107566,15 +92468,15 @@ dJT dTs dTs dTs -cdF +qGX cdw dcO cfy cge cgL chr -chZ -civ +gHm +qrC ciV dOi dOh @@ -107583,10 +92485,10 @@ dOh cjG cnQ cjy -cpM -bZA -dPO -csR +tJu +ogQ +ubd +xBq cug cug cug @@ -107599,29 +92501,29 @@ cAA cBz cCz czf -cEM -dRy -dRV -cHk +iUk +jXI +hID +cqB cHO -cIS -cIT -cKG -cIT -cMa -cNd -kEq -dTh -cLp -cPQ +tMP +wyi +vKf +wyi +uOU +pYP +miv +uRV +dhV +urI cLu -clW +gXA cmH cmH cmH cmH -cpZ -cwu +leX +ghl dTs dTs dTs @@ -107634,13 +92536,13 @@ dTs dTs dTs dTs -cux -cup -dvm -dzy -cko -cko -clW +hdg +pHh +ghn +sXq +vgx +vgx +gXA cmH cmH cmH @@ -107650,34 +92552,34 @@ cmH cmH cmH dIi -cBJ +uxX cCH clZ clZ crW -cmN -cnW +ibT +dQV cmH duC -oVs -dwF +xtd +vMk duC -dYI +lMq dwI -dZf +eIJ dBr -dZS -dFf -dFf -eaz -eaz +uiV +psi +psi +qST +qST dBr -dGC +fPT dYk -dHD +gYO dBr -dEr -dFf +ufM +psi dBr dTs dTs @@ -107696,15 +92598,15 @@ dTs dTs dTs afP -alL -aiI -alI -alI -ajY -ann -alt -alt -akZ +uEH +occ +mry +mry +hfl +rEk +qud +qud +gLQ afP dTs dTs @@ -107712,10 +92614,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dTs dTs @@ -107739,41 +92641,41 @@ aaC abD aXC aBa -byT +vny aOh -aRM +rsy dTs dTs dTs dTs dTs -aEX +lnw dTs adA -aEZ -aFi +qLX +twD dTs dTs dTs dTs dTs adA -aEZ -aFi +qLX +twD adA -agN -aGD -aGH -aGH -aGH -aIB -aIR -aGH -aGH -aGH -aGH -aEr -aEm +stn +fvn +eAL +eAL +eAL +wul +jKo +eAL +eAL +eAL +eAL +mnu +kKx adA adA lYv @@ -107781,17 +92683,17 @@ aIu aFl aFP aHC -aLq -dif -dif -akr -aGD -aTr -aHA -aGH -ilq -cAg -dEY +wOS +moa +moa +ihK +fvn +dnL +kdI +eAL +eLe +ncW +tRd dib dib dib @@ -107801,14 +92703,14 @@ dTs dTs dTs dTs -cdE +qTx cdw cfy cdC cdC chr -chZ -civ +gHm +qrC ciV ciV ciW @@ -107818,8 +92720,8 @@ ciW ciV ciV cpH -bZA -aRp +ogQ +rdx cpH cuh dTs @@ -107833,28 +92735,28 @@ cAB cAB cAB cAB -cEM -dRz -dRY -dSo -cHP -dSB -dSB -dSF -dSB -cIT -dSU -dSZ -dTj -cLp -cPQ +iUk +pAL +fTq +jQt +naZ +xOx +xOx +nWO +xOx +wyi +gZd +xVu +ncy +dhV +urI cQC -clW +gXA cmH cmH cTp cmH -ctm +iAY dTs dTs dTs @@ -107870,8 +92772,8 @@ dTs dTs daO dbK -dfm -dzA +pFD +ids dbK cZu cZu @@ -107884,34 +92786,34 @@ dbK dbK cmH cmH -cBJ +uxX hIO cpR cET crW -cmN -cnW +ibT +dQV cmH duC -dvD -dwF -dxf -dym +doo +vMk +mwd +tgW dXy -dXZ -dFU -dFf -dFf -dFf -dFf -dFf -dFU -dGC +qZL +fur +psi +psi +psi +psi +psi +fur +fPT jJa -dHD -dFU -dFf -dJh +gYO +fur +psi +igC dBr dTs dTs @@ -107930,15 +92832,15 @@ dTs dTs dTs afP -alL -aiI -als -alI -ajY -anH -ahJ -anI -aiI +uEH +occ +sEw +mry +hfl +xXM +fSv +vIQ +occ afP dTs dTs @@ -107946,10 +92848,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dqd dTs @@ -107965,16 +92867,16 @@ dTs dTs aiv aiG -ajd -bgC -bgC -bgC -bgC -bzR -byZ -byZ +hJo +tBL +tBL +tBL +tBL +wQg +tWD +tWD aYe -aRM +rsy dTs dTs dTs @@ -107984,19 +92886,19 @@ dTs dTs dTs adA -aEZ -aFi -aEX +qLX +twD +lnw dTs dTs dTs dTs adA -aEZ -aFi +qLX +twD adA -ajG -aGH +jww +eAL akV azU azU @@ -108006,8 +92908,8 @@ azU azU azU aDZ -aGH -wQM +eAL +ipU eqo adA aJS @@ -108015,17 +92917,17 @@ aFl kiP aHI aKD -aLr -bmA -bmA -bmA -bmA -aHb +nDK +qPQ +qPQ +qPQ +qPQ +hLm aGc -aGw -pWn -cAh -dEY +wRN +xZV +hpS +tRd dib dib dib @@ -108035,25 +92937,25 @@ dTs dTs dTs dTs -caH -aPy +vGw +kFt aPz cdC cdC chr -aOr -arv -auY -auY -auY -auY -auY -auY -auY -auY -aMV -cac -aRq +ohY +hWI +enT +enT +enT +enT +enT +enT +enT +enT +fzx +kIr +kHF cdw dTs dTs @@ -108063,32 +92965,32 @@ dTs dTs dTs czO -cpx -wFv -wFv +pxl +hbU +hbU cDy -cEM -dRA -dRZ -dQj -cHQ -cHQ -cHQ -cKH -dSH -dSH -dSV -dTa -dTk -cOO -cPR +iUk +xIf +gpk +tIV +xoW +xoW +xoW +vjj +xSC +xSC +qDq +etZ +ihA +lWR +eFB cQC -clW +gXA cmH cmJ cmH cmH -cqU +kWF dTs dTs dTs @@ -108103,49 +93005,49 @@ dTs dTs dTs daO -deB -iTi -iTi -tAG -tAG -tAG -tAG -deB -dSq -tAG -tAG -dlN +nLF +jqH +jqH +hYK +hYK +hYK +hYK +nLF +kkk +hYK +hYK +obs dbK cmH cmH -cBJ +uxX cCH clZ clZ crW -cmN -cnW +ibT +dQV cmH duC -dvE -aVL +jnn +rbo duC -dym +tgW dXI -dAD +okW dBr -rRt -dFf -dFf -dFf -dFf +qQK +psi +psi +psi +psi dBr -eaP +jSY dZm -dHD +gYO dBr -xzc -dEt +umY +gdQ dBr dTs dTs @@ -108164,15 +93066,15 @@ afP afP afP afP -alM -aiI -alI -alI -ajY -anH -ahJ -anH -aiI +wrB +occ +mry +mry +hfl +xXM +fSv +xXM +occ afP dTs dTs @@ -108180,10 +93082,10 @@ dTs dTs dTs akL -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dTs dTs @@ -108202,12 +93104,12 @@ cYv cgR ajs cZt -cZE -cZE -cZE -cZE -cZE -alW +oEQ +oEQ +oEQ +oEQ +oEQ +lcu dTs dTs dTs @@ -108216,32 +93118,32 @@ dTs dTs dTs dTs -akq -agC -aEZ -aFi -aEX +lmW +cZh +qLX +twD +lnw dTs dTs dTs dTs adA -xsQ -aFi +uVv +twD adA -ajG -aGH +jww +eAL alj aIl -aIr +pMa azT aIU -aIX +hlU aJj azT aEf -aGH -wQM +eAL +ipU eqo adA aFl @@ -108249,33 +93151,33 @@ kiP kiP kiP aFP -adK +qKI aMf aMf bmB aMf -aHb +hLm aGc -aGE -fRy -cDP -dEY +ftV +lDN +lYV +tRd dib dib dib dLu dJT dLO -aOu +nYk dTs dTs -caH -ciU +vGw +kgH cfw cge cgL chr -ctM +kuf cdw cdw cdw @@ -108285,9 +93187,9 @@ cdw cdw cdw cdw -aFL -cau -aRs +qgP +wMD +iGs cdw dTs dTs @@ -108297,32 +93199,32 @@ dTs dTs dTs czO -cAD -cBB -cCA +oJS +lgQ +jrt cDy -cEJ -dRy -dRT -cxH +srI +jXI +hQl +rcR cHO -cIU -cJM -cKI -cJM -cJM -cNf -cJM -cJM -dTp -cPS +kEw +owb +pjw +owb +owb +scJ +owb +owb +msq +eTB cQC -clW +gXA cmH cmH cmH cmH -cpZ +leX dTs dTs dTs @@ -108337,46 +93239,46 @@ dTs dao dao dao -dcw -dqt -dqt -cWp -cWp -cWp -dgY -dgY -cWp -cWp -cWp -tAG +xZv +sve +sve +okU +okU +okU +ksg +ksg +okU +okU +okU +hYK cZu cmH cmH -cBJ +uxX cCH clZ clZ crW -cmN -cnW +ibT +dQV cmH duC duC duC duC -dyn +vkF dXJ -dAD +okW dBo -dZR -dZX -dFf -eaA -eaA +iof +lGb +psi +fiy +fiy dBo -dYX +tvi dZn -dHD +gYO dBr dBr dBr @@ -108395,18 +93297,18 @@ acu (184,1,1) = {" acu afP -ajQ -akX -iSj -alN -aiI -alI -alI -ajY -anI -ahJ -anH -anZ +gfu +kOa +xJy +nXa +occ +mry +mry +hfl +vIQ +fSv +xXM +jSo afP afP afP @@ -108414,10 +93316,10 @@ afP afP afP afP -amr -aot -akO -aqa +pov +mWQ +gfO +eWt aqr dTs dTs @@ -108430,17 +93332,17 @@ dTs dTs dTs dTs -aPg +tmi cov cYx aOh dTs dTs -aEp +dnm qlG qlG qlG -iCE +lkR dTs dTs dTs @@ -108450,32 +93352,32 @@ dTs dTs dTs dTs -aEU -aEV -aEZ -aFi -aFr -aGi +xaa +uVc +qLX +twD +fbz +xLc dTs dTs -aEV +uVc adA -aEZ -aFi +qLX +twD adA -ajG -aGH +jww +eAL alj -aIm -aIs +fHQ +wbn azT -aIV -aIY -aJk -aJC +qJz +mjB +lwS +hAs aEf -aGH -aEq +eAL +fyz adA adA aFn @@ -108483,33 +93385,33 @@ kiP kiP kiP aHI -adK +qKI aMf aMg aTq aUO -aHb -baX -bjQ -ilq -cDQ -dEY +hLm +lnm +vKh +eLe +tia +tRd dib dib dib -dLv -dLA +edw +iLW dLP adR -aOu -ccR -xzm -ciU +nYk +jFo +lTX +kgH cfw cdC cdC chr -ctM +kuf cdw cdw aRK @@ -108520,8 +93422,8 @@ aMz aMz aMz cdw -cav -aRs +xAo +iGs cdw dTs dTs @@ -108531,33 +93433,33 @@ dTs dTs dTs czO -vqJ -cBC -cCA -cDz -dRk -dRy -dSa -cGB +hFY +hqw +jrt +tWV +mUg +jXI +xKd +wqF cHL cHL cHL cHL -cLq -cMb -cMb -cMb -cMb -cOQ -cPT +vcC +lAS +lAS +lAS +lAS +tVJ +joq cQC -clW +gXA cmH cmH cmH cmH -cqU -dTv +kWF +dsI dTs dTs dTs @@ -108571,49 +93473,49 @@ dao dao dbw dao -dcw -dqt -dqt -dxR -dyS -dAf -dgY -dgY -dAk -dBd -dWB -tAG +xZv +sve +sve +pAp +tWI +wFO +ksg +ksg +jqO +lnj +kKP +hYK cZu cmH cmJ -cBJ +uxX cCH cpR cET crW -jAS -cnW +rxy +dQV cmH duC -oVs -dwF +xtd +vMk duC -nIz +tmv dXJ -dAD +okW dBo -dZR -eaA -dFf -eaC -eaC +iof +fiy +psi +gDc +gDc dBo -dGC +fPT dZn -ebj +gbO dBr -dEr -dFf +ufM +psi dBr dTs dTs @@ -108629,29 +93531,29 @@ acu (185,1,1) = {" acu afP -ajV -akY -aln -aln -aiE -amH -alI -ahe -aln -anL -aln -aiE +qcE +uEZ +jyr +jyr +uXi +xMz +mry +sHL +jyr +tfk +jyr +uXi afP -aoM -ape -ape -ape -apw +rou +xGc +xGc +xGc +tKZ afP -amr -aot -akO -aqb +pov +mWQ +gfO +fYN akL dTs dTs @@ -108663,19 +93565,19 @@ dTs dTs dTs dTs -aWA -aOg +gAW +vtV cov cYx aOh dTs -aJM +mcN adA adA aeo adA -aFr -aGi +fbz +xLc dTs dTs dTs @@ -108684,32 +93586,32 @@ dTs dTs dTs dTs -aDY +lMu adA -aEZ -aFi +qLX +twD kmU -aFr -aEV +fbz +uVc adA adA adA -aEZ -aFi +qLX +twD adA -ajG -aGH +jww +eAL alj -aIn -aIt -aIC +gqp +xSe +tJV azT -aIZ -aJl -aJD +bUP +wKM +pNU aEf -aGH -aEq +eAL +fyz adA adA aIk @@ -108717,17 +93619,17 @@ aFn aFR kiP aHI -adK +qKI aMf aMo aMg aUO -aZI -ouK -ilq -bxU -cDR -cEW +fqC +quw +eLe +tzT +uOt +hAg dib dib dib @@ -108736,26 +93638,26 @@ dLu adC dLP adR -ccR -caH -aKv +jFo +vGw +tLp cfw cdC cdC chr -ctM +kuf cdw cdw cdw cdw aMz -ejG -aNg -aNw +eds +hVe +sSO aMz cdw -cav -aRs +xAo +iGs cdw dTs dTs @@ -108765,33 +93667,33 @@ dTs dTs dTs czO -cpy -cBD -cCC +lfx +iwE +xZe cDy -cwd -dRy -dRT -cGB +wtD +jXI +hQl +wqF cub -cIV -cIV +bcZ +bcZ cHL -pwW -cMb -cMb -cMb -cOs -cOR -cPU +rTL +lAS +lAS +lAS +xUm +vah +tbK cLu -clW +gXA cmH cmH aJA cmH cmH -cqU +kWF dTs dTs dTs @@ -108805,49 +93707,49 @@ dao dbw dbw ded -dcw -dvn -dqs -dAg -dFh -dHo -dDK -dDK -dAk -cYK -dHS -tAG +xZv +tHv +uvS +lYU +mfb +gJc +gKM +gKM +jqO +kKI +jgR +hYK cZu cmH cmH -cBJ +uxX cCH clZ clZ crW -cmN -cnW +ibT +dQV cmH duC -dvD -dwF -dxf -dym +doo +vMk +mwd +tgW dXJ -dAD +okW dBo -dZR -eaA -dFf -fsP -eaC +iof +fiy +psi +spQ +gDc dBo -dGC +fPT dZn -dHD -dFU -dFf -dJh +gYO +fur +psi +igC dBr dTs dTs @@ -108863,28 +93765,28 @@ acu (186,1,1) = {" acu afP -ajY -aiI -alI -alI -alI -alI -alI -isZ -abH -alI -alI -alI -aoI -aoN +hfl +occ +mry +mry +mry +mry +mry +udA +utR +mry +mry +mry +xdh +dXQ rEa apk apg -apy +njP afP akM -aot -apX +mWQ +lGx akM akL dTs @@ -108904,12 +93806,12 @@ cYx dTs dTs aJx -aJM +mcN adA aGZ adA adA -aEX +lnw dTs dTs dTs @@ -108917,33 +93819,33 @@ dTs dTs dTs azT -aEU -aEV +xaa +uVc adA -aEZ +qLX aGl -aEW -aEW -aEW -aEW -aEW -aEW +qQg +qQg +qQg +qQg +qQg +qQg aFa -aFi +twD adA -ajG -aGH +jww +eAL alj azT azT azT azT azT -aJn -aJE +mgv +rFP aEf -aGH -aEq +eAL +fyz adA eqo wYO @@ -108951,45 +93853,45 @@ adA aHz aFn aHE -adK +qKI aMf aMp aMf aMf -aZI -ouK -bxS -bxV -cEW +fqC +quw +glc +sua +hAg dib dib dib dib dib -dLv -dLA +edw +iLW dJT dLO -ccR -caH -aKv +jFo +vGw +tLp cfw cge cgL chr -cZJ -aQO -aFH +dui +kdt +qig coJ coI aMz -aMB +rmZ aNh aNh aMz -cek -cax -aRz +ntL +wig +pZR dTs dTs dTs @@ -109003,30 +93905,30 @@ cAG cAG cAG cAG -cEM -dRy -cGt -cGB -cHR -cIW -cIW +iUk +jXI +tmM +wqF +fiE +uJa +uJa cHL cHO -cMc -dSW +fSk +wmQ cHO cLu cLu cLu cLu -clW +gXA cmH cmH cmH cmH cmH cmH -ctm +iAY dTs dTs dTs @@ -109040,48 +93942,48 @@ dcp dbw dao dbK -dfn -dqs -dAG -dFk -dAG -dDK -dDK -dFk -dFk -dgb -tAG +eRV +uvS +fZW +lku +fZW +gKM +gKM +lku +lku +ygU +hYK dbK cmH cmH -cBJ +uxX cCH sXR clZ crW -cmN -cnW +ibT +dQV cmH duC duC -dwF +vMk duC -dym +tgW dXJ -dAD +okW dBo -dZR -eaA -dFf -eaA -eaA +iof +fiy +psi +fiy +fiy dBo -dGC +fPT dHk -dZz +xWU dBr -xzc -dEt +umY +gdQ dBr dTs dTs @@ -109097,29 +93999,29 @@ acu (187,1,1) = {" acu afP -ajY -aiI -als -alZ -alI -amI -amI -alI -alI -alI -alI -alI -aoI -aoN +hfl +occ +sEw +uXx +mry +sUs +sUs +mry +mry +mry +mry +mry +xdh +dXQ apk apg apk -apy +njP afP -amx -are -amz -apj +hWi +mUq +fMJ +jCS apW dTs dTs @@ -109138,46 +94040,46 @@ cYx dTs dTs aJB -acZ +fCu adA adA kmU aFN -aFr +fbz dTs dTs dTs dTs dTs dTs -aEU -aEV +xaa +uVc adA adA -aEZ +qLX aFf -aEP -aEP -fHr -aEP -aEP -aEP +xds +xds +ohw +xds +xds +xds aHx -aFi +twD adA -ajG -aGH +jww +eAL alj aIo azT azT azT aJa -aJo +uVG aJF aEf -aGH -aEq +eAL +fyz adA eqo eqo @@ -109185,14 +94087,14 @@ adA adA aHz aHG -adK +qKI aMf aMq aMg aMg -aTr -ouK -dEl +dnL +quw +rxh dib dib dib @@ -109204,26 +94106,26 @@ dib dLu dJT dLO -ccR -caH -ciU +jFo +vGw +kgH cfw cdC cdC cht ccZ cix -ctM +kuf boG dxO aMz -aMG +qTZ aNh aNh aNI -aNZ +ioU caK -civ +qrC dTs dTs dTs @@ -109233,35 +94135,35 @@ dTs dTs dTs czP -cpz -nSN -nSN +vSv +eFY +eFY cDA -cEM -dRy -dRT -cGB +iUk +jXI +hQl +wqF cub -cIX -cJN +hAN +tBx cHL -cLs -cLt -cLs -cLt +lGH +pCw +lGH +pCw cLu dTs dTs -cmc -cpW +tdT +jAI cmH cmH cEV cmH cmH cmH -cqU -csf +kWF +oEW dTs dTs dTs @@ -109270,39 +94172,39 @@ dTs dTs dao dao -dcq +ltW dbw dao -deC -dcw -dzB -dAL -dgc -dHp -dIq -dJW -dDK -dgY -dDK -tAG +rLw +xZv +wJD +fEo +hcL +tZD +rjG +qBq +gKM +ksg +gKM +hYK cZu cmH cmH -cBJ +uxX cCH cpR cET crW -cmN -cnW +ibT +dQV cmH duC duC duC duC -dym +tgW dXJ -dXY +nTu dBr dBr dBr @@ -109310,9 +94212,9 @@ dBr dBr dBr dBr -eaQ +fXx dZn -dHE +pdC dIk dIk dIk @@ -109331,29 +94233,29 @@ acu (188,1,1) = {" acu afP -ajY -aiI -alI -alI -amo -dCo -amV -amo -alI -alI -akQ -akZ +hfl +occ +mry +mry +rau +iVu +iCV +rau +mry +mry +otm +gLQ afP -aoO -apq -apq -apq -apS +uHD +hGa +hGa +hGa +ycB afP -amx -are -amz -apj +hWi +mUq +fMJ +jCS apW dTs dTs @@ -109372,19 +94274,19 @@ cYx dTs aIv aJB -acZ +fCu adA adA adA adA adA -aEX +lnw dTs dTs dTs dTs dTs -agD +rTm adA adA wYO @@ -109396,22 +94298,22 @@ sXh adA adA aGY -aEZ -tai +qLX +dpY adA -ajG -aGH +jww +eAL alj azT azT azT azT -aJb -aJp -aJG -aJN -aGH -aEq +hOI +mKh +nDE +ubp +eAL +fyz adA adA adA @@ -109419,14 +94321,14 @@ adA adA adA adA -adK +qKI aUO aMf aMf aMf -aTr -ouK -dEl +dnL +quw +rxh dib dib dib @@ -109438,27 +94340,27 @@ dib dLu dJT dLO -ccP -auv -civ +sJD +gdt +qrC cfw cdC cdC chu cdC chr -ctM +kuf btY dBh aMz -aMK +kre aNi aNh aNh -cib +tZb caK -civ -cdA +qrC +bqD dTs dTs dTs @@ -109467,27 +94369,27 @@ dTs dTs dTs czP -cAI -cBF -cBG +tQG +bDH +kXJ cDA -cEJ -cEM -dRT -cHj +srI +iUk +hQl +kSS cHL cHL cHL cHL -cLt -cLs -cLt -cLs +pCw +lGH +pCw +lGH cLu dTs dTs dTs -ctp +jDq cmH cmH cFK @@ -109495,7 +94397,7 @@ cmH cmH cUK cmH -ctm +iAY dTs dTs dTs @@ -109507,52 +94409,52 @@ dHK dbw dbw dao -deD -dcw -dzC -cWp -cWp -dHl -dJi -dgY -dHl -dHl -dHl -tAG +efW +xZv +eTW +okU +okU +kXg +kER +ksg +kXg +kXg +kXg +hYK cZu cmH cmH -cBJ +uxX cCH dWZ dXf crW -cmN -cnW +ibT +dQV cmH cmH cmH duC -dxg -dyo +wSC +kRq dXK -dYa +nPa dBo -dZU -dZY -nlU -dEu -dDJ -dDJ -dGE +puY +mSL +tqB +jIT +ltK +ltK +qQB dZn dCb dIl -dJm -dBC -dJX -dIJ -ebp +xdi +kbR +eHY +vHH +eTt dIk dTs dTs @@ -109565,29 +94467,29 @@ acu (189,1,1) = {" acu afP -ajY -aiI -alI -alI -amo -amo -amo -amo -alI -alI -ajY -anZ +hfl +occ +mry +mry +rau +rau +rau +rau +mry +mry +hfl +jSo afP afP -apr -apr -apr +knr +knr +knr afP afP -amx -are -aoq -apj +hWi +mUq +iAZ +jCS apW dTs dTs @@ -109606,61 +94508,61 @@ cYx dTs aIv aJB -njF +gSq adA adA adA adA -aCG -aCM +fef +muu dTs dTs dTs dTs dTs -agD -aEY -aEW -qCr +rTm +pGU +qQg +wUh mDA aGn adA -aCG -kge +fef +tkA adA aGV adA -aEZ -aFi +qLX +twD adA -ajG -aGH +jww +eAL alj azT azT azT azT azT -aJq -aJJ -aJO -aGH -wQM +pHO +jdW +oXD +eAL +ipU eqo -aCG -agC +fef +cZh adA adA kmU adA -adK +qKI aMf aMg aMf bmB -aTr -pAE -bxT +dnL +mUm +rTM bxW diM dFR @@ -109672,28 +94574,28 @@ dib dLu dJT dLO -ccQ -auX -civ +sdt +nul +qrC cfw cge cgL chu cdC chr -ctM +kuf bPN clF aMz -aMX +prh aNh aNh aMz -caH -cbD -civ -cdA -cdv +vGw +uhG +qrC +bqD +yfL dTs dTs dTs @@ -109701,36 +94603,36 @@ dTs dTs dTs czP -cAJ -cBG -cBG -cDB -cIW -cEM -dSb -cGB +mmc +kXJ +kXJ +nWu +uJa +iUk +xuf +wqF cub -cIV -cIV +bcZ +bcZ cHL -cLs -cLt -cLs -cLt +lGH +pCw +lGH +pCw cLu dTs dTs dTs dTs -ctp +jDq cmH cmH cmH cmH cmH cmH -cqU -csf +kWF +oEW dTs dTs dTs @@ -109741,33 +94643,33 @@ dbw dbw uyn dao -deE -dcw -dzC -dBe -dGa -dHI -dDK -dDK -dHo -dVo -cYK -tAG +tHG +xZv +eTW +ved +aUJ +psI +gKM +gKM +gJc +sDa +kKI +hYK cZu cmH -cUL -dfx +hoV +vgM cWe dXa dXa cFJ -cmN -cnX -xkF -cpb +ibT +sXb +szV +ePL cmH dim -dtq +lBu dwI dXK dXy @@ -109781,12 +94683,12 @@ dYk dYk ebc dYk -dZE -dZG -dZG -dZG -dIr -dKn +mFz +erI +erI +erI +igu +rOb dIk dTs dTs @@ -109799,29 +94701,29 @@ acu (190,1,1) = {" acu afP -ajY -aiI -alI -alI -amp -alI -amp -alI -nyN -alI -ahe -aiE +hfl +occ +mry +mry +isP +mry +isP +mry +xSo +mry +sHL +uXi afP -aoM -ape -ape -ape -apw +rou +xGc +xGc +xGc +tKZ afP -amx -are -amz -anD +hWi +mUq +fMJ +oCA aIw aIw aIw @@ -109838,37 +94740,37 @@ dTs cov cYx dTs -aIF -aDL -adr +cHW +czu +nYH adA aFb adA adA -aEB -aGi +vJw +xLc dTs dTs dTs dTs dTs -aEV -aEZ +uVc +qLX aFf -aEP +xds aGf aGo adA -aEX -akq -agC +lnw +lmW +cZh adA aGZ -aEZ +qLX aGl -mZj -aHH -aHK +uLf +kOg +qPV aHZ azT azT @@ -109876,27 +94778,27 @@ aIo azT aJg azT -aJK -aJP -aGH -wQM +iuz +sUQ +eAL +ipU eqo -aEX -akq -agC +lnw +lmW +cZh adA adA adA -adK +qKI aMf aMf aMf aTq -aTr -pAE -ilq -ilq -ilq +dnL +mUm +eLe +eLe +eLe dEW dib dib @@ -109904,29 +94806,29 @@ dib dib dib dLu -dLQ -aeh -ccR -caH -ciU +kgg +ocY +jFo +vGw +kgH cfw cdC cdC chu cdC chr -ctM +kuf cdw coI aMz -aNb +kZV aNh aNh aMz aMz -cbD -civ -cdA +uhG +qrC +bqD cdw dTs dTs @@ -109935,36 +94837,36 @@ dTs dTs dTs czP -fIT -cBH -cCE +guT +weq +ewd cDA -cwd -dRC -dSc -cGB -cHS -cIW -cIW +wtD +fFb +eGZ +wqF +rsk +uJa +uJa cHL -cLt -cLs -cLt -cLs +pCw +lGH +pCw +lGH cLu dTs dTs dTs dTs -ctq -ctp +oAv +jDq cmH cmH cmH cmH cmH cmH -ctm +iAY dTs dTs dTs @@ -109975,33 +94877,33 @@ dbw dbw uyn dao -deF -dqt -dzC -dxT -dGD -cYK -dDK -dJi -dSr -dWA -dHo -dWO +sDC +sve +eTW +irf +nGn +kKI +gKM +kER +kKB +dWb +gJc +hPH dbK dbK -cko -cUc +vgx +hAY dWV dXb cXt crX -cmU -cod -cvw -clW +iSf +sOc +npn +gXA cmH dim -dxh +gfn dYK dzv dYb @@ -110015,12 +94917,12 @@ eaK dYM dZp dFg -dIn -dIn -dZI -dZH -dJU -ebq +vFO +vFO +hIV +tib +wea +vii dIk dTs dTs @@ -110033,34 +94935,34 @@ acu (191,1,1) = {" acu afP -ajZ -aiI -ajn -alI -alI -als -alI -alI -alI -alI -alI -alI -aoI -aoN +wFp +occ +kIk +mry +mry +sEw +mry +mry +mry +mry +mry +mry +xdh +dXQ apg apk rEa -apy +njP afP -amx -are -amz -aiH +hWi +mUq +fMJ +ujy aIw -asM -atG -asM -avQ +isD +hAH +isD +cZr aIw dTs dTs @@ -110072,37 +94974,37 @@ dTs ivd xFA dTs -ajB -acZ +mEI +fCu akb adA aFT aGr adA kmU -aFr -aGi +fbz +xLc dTs dTs dTs -agD +rTm adA -aEZ -aFi +qLX +twD adA adA -aCG +fef dTs dTs azT -agD +rTm adA adA -aHy -aEP -aEP -aGB -aHM +bKW +xds +xds +erL +caN aIj azT azT @@ -110112,25 +95014,25 @@ azT azT azT aEf -aGH -aEq -aCG -aCM +eAL +fyz +fef +muu dTs dTs -agC +cZh adA adA -adK +qKI ble aMg aMf aMf -aTr +dnL aGc -aGw -aHU -ilq +wRN +nRU +eLe dGu dib dib @@ -110139,31 +95041,31 @@ dib dib dLu dLO -aOu -aeG -caH -ciU +nYk +pHX +vGw +kgH cfw cdC cdC chu cdC chr -ctM +kuf cdw coJ aMz -aNc +ntB aNk aNh -aNQ +wUr aNC -cbD -civ -cdA +uhG +qrC +bqD cdw -aOG -ruJ +hRR +cyz dTs dTs dTs @@ -110173,18 +95075,18 @@ czP czP czP cAG -cEM -cEM -dSc -cGB +iUk +iUk +eGZ +wqF cub -cIX -cJN +hAN +tBx cHL -cLs -cLt -cLs -cLt +lGH +pCw +lGH +pCw cLu dTs dTs @@ -110192,13 +95094,13 @@ dTs dTs dTs cSC -cTq -cTQ +iWp +mcv cmW cSC cmW cmW -cWH +uLh cSC dTs dTs @@ -110209,52 +95111,52 @@ dbx dbw dof dao -deG -dxS -dga -dgb -dFk -dFk -dDK -dDK -dFk -dFk -dFk -uMk -tAG +jnV +pfE +lJi +ygU +lku +lku +gKM +gKM +lku +lku +lku +owP +hYK cZu -cko -uVm +vgx +tHZ dWW dXc clZ crY clY cFH -cUc -clW +hAY +gXA cmH dim -dxi +kiT dXy fDh -dYc +dCm dBo -dCc -dCW +oPc +kzI dYk -dEx -dYN -dYR -dGF -dGF -ebk +fPx +rfC +roN +tBk +tBk +ipF dIl -dIK -dJj -dZG -dZG -dKn +lsc +vFZ +erI +erI +rOb dIk dIk dIk @@ -110267,34 +95169,34 @@ acu (192,1,1) = {" acu afP -ake -ala -alt -alt -alt -alt -alt -akZ -alI -als -alI -alI -aoI -aoN +xcv +fYV +qud +qud +qud +qud +qud +gLQ +mry +sEw +mry +mry +xdh +dXQ apg apk apg -apy +njP afP -amx -arg -amz -amz -aso -atV -atV -atV -avU +hWi +iTK +fMJ +fMJ +sej +wYe +wYe +wYe +uuB aIw dTs dTs @@ -110306,8 +95208,8 @@ dTs cov cYx adA -aDz -adr +oWa +nYH adA adA aHC @@ -110315,28 +95217,28 @@ aGp adA adA adA -aFr +fbz dTs dTs -aEU -aEV +xaa +uVc adA -aEZ -aFi +qLX +twD adA adA dTs dTs dTs dTs -akq -agC +lmW +cZh adA adA adA adA -ajG -aGH +jww +eAL alj azT azT @@ -110346,26 +95248,26 @@ azT azT azT aEf -aGH -aEq -aEX +eAL +fyz +lnw azT dTs dTs -akq -agC +lmW +cZh adA -adK +qKI bln aMf aUO aMf -aHb +hLm aGc -aGE -feU -ilq -dGz +ftV +hOY +eLe +pOn dLk dib dib @@ -110373,32 +95275,32 @@ dib dib dLu dLO -aOu -ccR -caH -ciU +nYk +jFo +vGw +kgH cfw cge cgL chu cdC chr -ctM +kuf coI cdw aMz -aNd -aNl -aNl -aNR +eZK +xvv +xvv +mGe aNC -cbD -civ -cdA +uhG +qrC +bqD cdw -cdv -cgK -cgc +yfL +fDt +fQe dTs dTs dTs @@ -110406,11 +95308,11 @@ dTs dTs dTs cCF -cDC -cEN -dRD -dSd -cGB +mrJ +ouN +eEs +wot +wqF cHL cHL cHL @@ -110426,13 +95328,13 @@ dTs dTs dTs dTs -cuw -ctq -ctp +ncX +oAv +jDq cmH cmH cmH -cqU +kWF dTs dTs dTs @@ -110440,43 +95342,43 @@ dTs dao dao dao -dcs +vCc dao dao dbK -dyT -dzD -dgY -dDK -dDK -dJi -dJi -dgY -dJV -dJi -dDK -mNn -dmL -cmM -dHm +uTG +eJL +ksg +gKM +gKM +kER +kER +ksg +vhr +kER +gKM +voa +dwv +goI +iMF dWW clZ clZ cUP clZ crW -cUc -dXq -dXu +hAY +dlw +tGS duC -dxj +xnx dXy dXJ -dXY +nTu dBr dBr dBr -dYx +ouT dBr dBr dBr @@ -110484,13 +95386,13 @@ dBr dBr dBr dIk -dIL -dJj -ebn -dIr -dKo -dCI -dKm +rLS +vFZ +dgj +igu +mdX +llK +vHe dIk dTs dTs @@ -110501,34 +95403,34 @@ acu (193,1,1) = {" acu afP -akf -alb -alu -amb -amb -amL -amW -awc -ajw -alI -akQ -akZ +xhf +yjQ +gVJ +xDm +xDm +oKJ +fbx +iRR +tMf +mry +otm +gLQ afP -aoO -apq -apq -apq -apS +uHD +hGa +hGa +hGa +ycB afP -amx -are -amz -amz -aso -atV -atV -atV -avU +hWi +mUq +fMJ +fMJ +sej +wYe +wYe +wYe +uuB aIw dTs dTs @@ -110552,11 +95454,11 @@ adA adA dTs dTs -agD +rTm adA eqo -cTd -aFi +gxH +twD adA adA dTs @@ -110564,13 +95466,13 @@ dTs dTs dTs azT -agD +rTm adA adA adA adA -ajG -aGH +jww +eAL azK aAm aAm @@ -110580,74 +95482,74 @@ aAm aAm aAm aEl -aGH -aEq -aEX +eAL +fyz +lnw dTs dTs dTs dTs -agD +rTm adA -adK +qKI bmz aMf aMf aMf -aHb -baX -aEx -azO -pDW +hLm +lnm +rjH +dfV +lKP duy -dEY +tRd dib dib dib dib dLu dLO -aOu -ccR -caH -ciU +nYk +jFo +vGw +kgH cfw cdC cdC chu cdC chr -ctM +kuf cdw aNr aMz -auc -auc -atm -auc +xuA +xuA +syJ +xuA aNC -cbD -civ -cdA +uhG +qrC +bqD cdw cnE -cdv -ceW -cgK +yfL +vBK +fDt dTs dTs dTs dTs dTs cCF -cDD -cEM -dRy -cGB -cGB +nCT +iUk +jXI +wqF +wqF cub -cIV -cIV +bcZ +bcZ cCF dTs dTs @@ -110661,70 +95563,70 @@ dTs dTs dTs dTs -csf -ctq -ctp +oEW +oAv +jDq cmH cmH cmH -ctm +iAY dTs dTs dTs -cxm +eJR daO -dby -dcw -dqu -dvf -dqt -ddi -dzD -dCe -dDK -dgY -dDK -dJi -dDK -dDK -dgY -dgY -mNn -dcw -dvm -dHm +tgX +xZv +lMT +wKK +sve +pui +eJL +gla +gKM +ksg +gKM +kER +gKM +gKM +ksg +ksg +voa +xZv +ghn +iMF cCH cpR cET cUP clZ crW -cmN -dXr -dXv +ibT +gtX +eaB dXx dXz dXy dXJ -dAD -dBs +okW +lJK dBy -dCX -dYy -dDL +lxp +mTO +itI dBy -dFV -dFV -dFV -dFV +lGw +lGw +lGw +lGw dIk -dIM -dJj -dIr -dIr -dIr -dIr -dKF +utK +vFZ +igu +igu +igu +igu +qqP dIk dTs dTs @@ -110741,12 +95643,12 @@ afP afP afP afP -ajY -aiI -ajp -alI -ajY -aoa +hfl +occ +dmD +mry +hfl +sdU afP afP afP @@ -110754,104 +95656,104 @@ afP afP afP afP -amx -are -ant -anv +hWi +mUq +fjZ +suf aIw -asW -atV -atV -avU +gOU +wYe +wYe +uuB aIw dTs dTs dTs dTs dTs -aPg +tmi aOh cov aiJ ajh adA adA -agN -akr -akr -akr -akr -akr -aEm +stn +ihK +ihK +ihK +ihK +ihK +kKx adA adA -aFr -aEV +fbz +uVc adA eqo -cTd -aFi +gxH +twD adA -aCG +fef dTs dTs dTs dTs dTs -aEV +uVc adA oUr adA adA -ajJ -aGM -aGH -aGH -aGH -aID -aIW -aGH -aGH -aGH -aGH -aEx -aEy +jSb +mYR +eAL +eAL +eAL +kQE +jYh +eAL +eAL +eAL +eAL +rjH +tzj dTs dTs dTs dTs dTs -agD +rTm adA -aRP -aST -aST -aST -aST -aGU -bhw -aEq +dwK +pQD +pQD +pQD +pQD +qpj +too +fyz adA -hiN -dAB -dJB +lDD +gtM +wpo dLk dib dib dib aPv dLR -bXq -ccR -caH -ciU +hUd +jFo +vGw +kgH cfw cdC cdC chq cdc ciy -ctM +kuf cdw cdw aMz @@ -110860,28 +95762,28 @@ auA aNB auA aMz -cbD -civ -cdA +uhG +qrC +bqD cdw cdw cdw cdw -cdv -cgK +yfL +fDt dTs dTs dTs dTs cCF -cDE -cEM -cEO -cGC -cGB -cHU -cIW -cIW +cQj +iUk +niG +rKp +wqF +hwr +uJa +uJa cCF dTs dTs @@ -110896,69 +95798,69 @@ dTs dTs dTs dTs -cuw -cxm +ncX +eJR cmH cmH cmH -cqU +kWF dTs dTs -cwo -cux +fgw +hdg daO -dbz -dqt -ddh +fhE +sve +dyx dUd -dee -dfq -dzD +rrG +ixy +eJL dbK dbK dbK -dDK -dDK +gKM +gKM dbK dbK dbK -dgY -tAG +ksg +hYK cZu -cko -cUc +vgx +hAY dWW clZ clZ cUP sXR crW -dvk -dXs -cvx +jXm +dAy +xmw dXy dXA dXy dXJ -dAD -dBt +okW +xPX dBy -dCY -dYy -dDL +hem +mTO +itI dFi -dFW -dFW -dFW -dHF +gdH +gdH +gdH +kgj dIk -dIN -dJj -dIr -eYK -dIr -dIr -dKF +fCM +vFZ +igu +vFN +igu +igu +qqP dIk dTs dTs @@ -110975,12 +95877,12 @@ dTs dTs dTs afP -amX -aiI -ajp -alI -ajY -aob +weV +occ +dmD +mry +hfl +nSS afP dTs dTs @@ -110988,45 +95890,45 @@ dTs dTs dTs apW -amx -are -amz -apj +hWi +mUq +fMJ +jCS aIw -asX -aua -atV -avU +ujO +geP +wYe +uuB aIw dTs dTs dTs dTs -aOf -aOg +vXv +vtV aUq cov cYx adA adA aFN -ajG +jww akV azU -aAF +tOe azU aDZ -aEq +fyz adA adA adA adA adA adA -aEZ -aFi +qLX +twD kmU -aEX +lnw dTs dTs dTs @@ -111038,54 +95940,54 @@ adA adA adA adA -aHQ -azO -azO -azO -aHe -aHB -azO -azO -azO -azO -aEy +tpb +dfV +dfV +dfV +xWq +wbP +dfV +dfV +dfV +dfV +tzj adA dTs dTs dTs dTs dTs -agD +rTm adA -ajJ -azO -azO -azO -azO -azO -azO -aRU +jSb +dfV +dfV +dfV +dfV +dfV +dfV +oUt dTs -wIr -dCU -dKA -dEY +tVN +bfv +gct +tRd dib dib dib dMq -caH -abg -aqw -caH -ciU +vGw +xno +svJ +vGw +kgH cfw cdC cdC chr -chY -cjT -aFI +wgM +lzb +nhT cdw cdw aMz @@ -111094,28 +95996,28 @@ aMz aNC aNC aMz -cbD -civ -cdA +uhG +qrC +bqD cdw cdw cdw coI cdw -cdv -ceW -ceW -ceW +yfL +vBK +vBK +vBK dTs cCF -cDF -cEO -cvg -cvg -cGC +tLu +niG +gmw +gmw +rKp cub -cIX -cJN +hAN +tBx cCF dTs dTs @@ -111131,68 +96033,68 @@ dTs dTs dTs dTs -ctq -ctp +oAv +jDq cYj czQ cmH -cqU +kWF dTs -cxm +eJR cmH daO -dbA -dqs -ddi -dxN -dcw +xQc +uvS +pui +bWp +xZv dbK -dzD +eJL dbK dbK dbK -dDK -dDK +gKM +gKM dbK dbK dbK -dgY -tAG +ksg +hYK cZu -cko -dWT +vgx +ipm dWW dWZ dWZ cUP clZ crW -cUc -dXt -dXw +hAY +mxK +yaW duC -dxk +mCM dXD dXJ -dAD -dBu +okW +kpP dBy -dwm -gls -dDL +pPl +xeU +itI dFi -bEc -dFW -dFW -dFW -dIo -dIr -dJj -dJG -dJG -dKp -dJG -dJG +xGO +gdH +gdH +gdH +tQP +igu +vFZ +lcM +lcM +hZI +lcM +lcM dIk dTs dTs @@ -111209,12 +96111,12 @@ dTs dTs dTs afP -ajY -aiI -ajp -alI -ajY -aob +hfl +occ +dmD +mry +hfl +nSS afP dTs dTs @@ -111222,21 +96124,21 @@ dTs dTs dTs apW -amx -are -amz -apj +hWi +mUq +fMJ +jCS aIw -asY -aub -aub -avV +sIN +wmB +wmB +dqA aIw dTs dTs dTs dTs -aOU +noe aOh aOh cov @@ -111244,29 +96146,29 @@ cYx adA ajC adA -ajG +jww alj azT -aAM -aCK +uzt +eSQ aEf -aEq +fyz adA adA adA aHR adA adA -aEZ -aFi -aCG -aCM +qLX +twD +fef +muu dTs dTs dTs dTs dTs -agC +cZh adA kmU adA @@ -111276,71 +96178,71 @@ adA adA adA adA -aEZ -aFi +qLX +twD adA adA adA adA adA adA -aEX +lnw dTs dTs dTs dTs -akq -agK -agK -agK -agC +lmW +eXo +eXo +eXo +cZh dTs dTs -agC -aCG +cZh +fef dTs dTs -ilq -aMm -dLf -dEY +eLe +iNi +kjR +tRd dib dib dib dMq -caH -chZ -civ -caH -ciU +vGw +gHm +qrC +vGw +kgH csH cdc cdc ciy -ciU -caH -ccN -cek -cek -chy -caH -caH -caH -caH -caH -cbD -civ -ccN -cek -cek -cek -cek -cek -cek -cek -cek -cek -bFe +kgH +vGw +xLt +ntL +ntL +qug +vGw +vGw +vGw +vGw +vGw +uhG +qrC +xLt +ntL +ntL +ntL +ntL +ntL +ntL +ntL +ntL +ntL +ubK cCF cCF cub @@ -111366,67 +96268,67 @@ dTs dTs dTs dTs -ctq -ctp +oAv +jDq cmH cmH cmH -cqU -cux +kWF +hdg cmH daO -dbB -dqs -dri -dxN -dcw -dUt -dzD -dgY -dgY -dgY -dDK -dDK -dDK -dgY -dDK -dgY -mNn -dWQ -dvj -dHm +wWf +uvS +ote +bWp +xZv +hVH +eJL +ksg +ksg +ksg +gKM +gKM +gKM +ksg +gKM +ksg +voa +xiY +umL +iMF dWW dXe dXg dXm clZ crW -cUc -clW +hAY +gXA cmH dim -dxl +yag nlH dzw -dAD -dBv +okW +gKW dBy -dDa -dDL -dYy +fux +itI +mTO dFi -dFW -dGG -dFW -dFW +gdH +dit +gdH +gdH dIk -dIK -dJj -dJG -dZL -dZM -dZL -dJG +lsc +vFZ +lcM +dAh +vsF +dAh +lcM dIk dTs dTs @@ -111443,12 +96345,12 @@ dTs dTs dTs afP -amY -aiE -ajp -alI -ahe -aoh +uJE +uXi +dmD +mry +sHL +njr afP dTs dTs @@ -111456,21 +96358,21 @@ dTs dTs dTs apW -amx -are -amz -apj +hWi +mUq +fMJ +jCS aIw -atm -auc -auc -avW +syJ +xuA +xuA +yme aIw dTs dTs dTs dTs -aOg +vtV aOh aOh cov @@ -111478,29 +96380,29 @@ cYx adA adA adA -ajG +jww alj aAe -aBw +kAb azT aEf -aEr -aEm +mnu +kKx adA kmU adA aGq adA -aEZ -aFi -aFq +qLX +twD +gJN azT dTs dTs dTs dTs dTs -agD +rTm adA adA adA @@ -111510,21 +96412,21 @@ aHR adA adA adA -aEZ -aFi +qLX +twD adA adA adA adA kmU adA -aFr -aGi +fbz +xLc dTs adA -aFr -qCR -aGi +fbz +gLn +xLc azT azT dTs @@ -111534,61 +96436,61 @@ dTs dTs dTs dTs -ilq -aMm -dLf -dEY +eLe +iNi +kjR +tRd dib dib dib dMq -ccM -ank -arv -auY +oNB +qNT +hWI +enT cLk -aMC -auY -auY -auY +wxY +enT +enT +enT cLk -aMV -cjT -aNj -aNj -cjT -cjT -cjT -cjT -cjT -cjT -cbF -cbG -cbH -cbH -cbH -cbH -cbH -cbH -cbH -cbH -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -brz -bWD -bWJ -bWJ -bXM -bnA +fzx +lzb +nSb +nSb +lzb +lzb +lzb +lzb +lzb +lzb +pHE +wnx +mZK +mZK +mZK +mZK +mZK +mZK +mZK +mZK +rGg +rGg +rGg +rGg +rGg +rGg +rGg +rGg +rGg +rGg +rGg +rGg +hoC +iWN +iWN +gXZ +teJ dTs dTs dTs @@ -111601,7 +96503,7 @@ dTs dTs dTs dTs -cux +hdg cmH cmH cqT @@ -111609,58 +96511,58 @@ cmH cmH cmH daO -fTk -dqs -dri -nez -dcw -dUt -dzD -dDK -dDK -dIm -dJV -dDK -dDK -dDK -dDK -dDK -iTi -dqt -dvm -onA +wUw +uvS +ote +gWP +xZv +hVH +eJL +gKM +gKM +vKR +vhr +gKM +gKM +gKM +gKM +gKM +jqH +sve +ghn +wyB dWW dWZ dWZ dXm clZ crW -cUc -clW +hAY +gXA cmH dim -dxh +gfn dXE dzw -dAD -dBw +okW +dZF dBy -dDa -dYy -dYy +fux +mTO +mTO dBy -dFX -dFX -dFX -dFX +uNZ +uNZ +uNZ +uNZ dIk -dIO -dJj -dJG -dZM -dZN -dZL -dJG +yae +vFZ +lcM +vsF +hFc +dAh +lcM dIk dTs dTs @@ -111679,8 +96581,8 @@ dTs afP afP ajl -ajp -amU +dmD +tPn ajl afP afP @@ -111690,10 +96592,10 @@ dTs dTs apW apW -amx -are -amz -anD +hWi +mUq +fMJ +oCA aIw aIw auA @@ -111703,8 +96605,8 @@ aIw dTs dTs dTs -aOg -aCh +vtV +oLN cYu cZo cZp @@ -111712,29 +96614,29 @@ cZn adA adA adA -ajG +jww alj -aAf +nNn aBy azT aEh -aEv -aEz -aEW -aEW -aEW -aEW -aEW +mSG +hyc +qQg +qQg +qQg +qQg +qQg aFa -aFi -aFr -aGi +twD +fbz +xLc azT dTs dTs dTs azT -agD +rTm adA adA aHC @@ -111744,8 +96646,8 @@ adA adA adA adA -aEZ -srf +qLX +nbL eqo aGZ adA @@ -111753,14 +96655,14 @@ adA adA adA adA -aFr -aGi +fbz +xLc adA adA adA -aFr -aJV -aGi +fbz +eNC +xLc dTs dTs dTs @@ -111768,10 +96670,10 @@ dTs dTs dTs dTs -pDW -aMn -dLf -dEY +lKP +ymg +kjR +tRd dib dib dib @@ -111787,10 +96689,10 @@ arw arw arw abe -aWH -dNI -civ -aNG +kRk +tgS +qrC +xYk aOy aOy aOz @@ -111806,19 +96708,19 @@ aTG aTG aTG aTG -bnA -bnA -bnA -bnA -aeO -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aiy -bFF +teJ +teJ +teJ +teJ +svx +vET +vET +vET +vET +vET +vET +uRh +roJ bWK bXH bXN @@ -111843,58 +96745,58 @@ dTx dzE cmH daO -dbD -dqs -drY +xse +uvS +fGe dbK -dcw -dUt -dga -cWp -cWp -cWp -dDK -dDK -dHl -cWp -cWp -tAG -tAG +xZv +hVH +lJi +okU +okU +okU +gKM +gKM +kXg +okU +okU +hYK +hYK cZu -cko -cUc +vgx +hAY cCH dWZ dWZ cUP clZ crW -cUc -fqy +hAY +shG cmH dim -dYC +mZN dXE dzx -dAI -dBx +jAW +prO dBy -dDa -dDL -dDL +fux +itI +itI dBy dBy dBy dBy dBy dIk -ral -dJj -ebo -dZN -dZN -dZM -dJG +obK +vFZ +tRL +hFc +hFc +vsF +lcM dIk dTs dTs @@ -111911,24 +96813,24 @@ dTs dTs dTs apW -alO -amy -alV -amz -aiH -anG +qUg +oQE +pxq +fMJ +ujy +uTb apW apW apW apW apW apW -alO -amy -are -amz -aiH -anG +qUg +oQE +mUq +fMJ +ujy +uTb aJd aJd aJd @@ -111938,7 +96840,7 @@ aJd aJd gab aOh -aRk +emI cYv cgR cgR @@ -111946,29 +96848,29 @@ dwG adA adA dZl -ajG +jww alj -aAg -aBA -aCK +xlu +ssj +eSQ aEj -aEw -aEA -aEP -aEP -aEP -aEP -aEP -aEP -aFj +xlA +xvh +xds +xds +xds +xds +xds +xds +fNP aFN -aFr -aGi +fbz +xLc azT dTs dTs -aGS -aEV +itd +uVc adA aGr aFl @@ -111978,8 +96880,8 @@ aHS kmU adA adA -aEZ -srf +qLX +nbL eqo adA adA @@ -111988,43 +96890,43 @@ adA adA adA adA -aFr +fbz aKE aKQ aKQ aKQ aKQ -aLz -aLE -aJV +gNL +evg +eNC aLP aLV dTs dTs dTs -hiN -aMm -dLf -dEY +lDD +iNi +kjR +tRd dib dib dib dMq -ccN -cek -cek -cek -cek -aMD -cek -cek -cek -cek -chy -caH -dNI -aNE -caH +xLt +ntL +ntL +ntL +ntL +kMI +ntL +ntL +ntL +ntL +qug +vGw +tgS +fbP +vGw aOz aQw aOH @@ -112037,7 +96939,7 @@ aQw aTG aUZ aXg -bgV +oEI aUZ aTG aUU @@ -112051,8 +96953,8 @@ bCK bjV bjV bKI -bNC -bFF +iqN +roJ bWL bXI bYd @@ -112067,8 +96969,8 @@ dTs dTs cmH dTs -cwo -cux +fgw +hdg cmH cmH cAL @@ -112077,58 +96979,58 @@ wQZ dTx cmH daO -dbE -dqs -drY -dUe -dcw -dUt -dga -cYK -dHi -dHi -dDK -dDK -dVl -dAd -dHi -dlN +gpD +uvS +fGe +odh +xZv +hVH +lJi +kKI +jpE +jpE +gKM +gKM +tFq +gsg +jpE +obs dbK dbK -cko -cUc +vgx +hAY cCH dXe dXg cUP clZ crW -cUc -clW +hAY +gXA cmH dim -dYD +iUG dXE dXN -dAJ +tpU dBy dBy dBy -dDM +tYr dBy dBy -eaL -eaL -eaL -eaL +udU +udU +udU +udU dIk -dIQ -dJj -dJG -dZN -ebi -dZN -dKG +onZ +vFZ +lcM +hFc +hyR +hFc +tDS dIk dTs dTs @@ -112145,34 +97047,34 @@ dTs dTs dTs apW -amx -amz -alV -ant -amz -aiH -aiO -akj -akj -akj -akj -aiO -amy -amz -are -amz -amz -aiH +hWi +fMJ +pxq +fjZ +fMJ +ujy +fEu +rMP +rMP +rMP +rMP +fEu +oQE +fMJ +mUq +fMJ +fMJ +ujy aJe -auB -ave -awt -awP -awt -auB +jvo +cIb +mgc +xBS +mgc +jvo oUN -aOi -aCi +sjA +kYD cYx aOh aOh @@ -112180,14 +97082,14 @@ adA adA adA adA -ajG +jww alj -aAk -aCm -aCK +lsM +jjy +eSQ aEf -aEx -aEy +rjH +tzj adA adA adA @@ -112197,11 +97099,11 @@ adA adA adA adA -aFr -aGi +fbz +xLc dTs dTs -agD +rTm adA adA aFl @@ -112212,8 +97114,8 @@ aFT adA adA adA -aEZ -aFi +qLX +twD adA adA adA @@ -112224,11 +97126,11 @@ eqo adA kmU aKF -aGH -aGH -aGH -aGH -aGH +eAL +eAL +eAL +eAL +eAL aLC aLI adA @@ -112236,42 +97138,42 @@ aLW aMf aLV aLP -hiN -aMm -dLf -dEY +lDD +iNi +kjR +tRd dib dib dib dMq -caH -caH -anm -anm -anm -anm -anm -aSG -aTt -aTt -aTt -aTt +vGw +vGw +iLd +iLd +iLd +iLd +iLd +iaT +bkA +bkA +bkA +bkA aNq aNF -aNP -aQd -aPc -aPc -aPc -aPc -aPc -aPc -aPc +pvI +pgM +mmL +mmL +mmL +mmL +mmL +mmL +mmL bfD aTM -aVr -aXh -bgW +eEI +tCC +jHx bho aTM aYg @@ -112284,14 +97186,14 @@ bgl bgl bgl bgl -bFe -bTU -bFF +ubK +cZM +roJ bWL bTW bYe bYK -bYN +pVi bjV dTs dTs @@ -112301,7 +97203,7 @@ dTs cmH cmH cmH -cux +hdg cmH cmH cPz @@ -112311,58 +97213,58 @@ wQZ dOw cmH daO -dbF -dqs -drY -dUe -dcw -dUt -dga -dxT -dHj -cYK -dDK -dgY -dHi -dxT -dHS -tAG +mTJ +uvS +fGe +odh +xZv +hVH +lJi +irf +rgl +kKI +gKM +ksg +jpE +irf +jgR +hYK cZu cmH -cup -cUc +pHh +hAY cCH dWZ clZ cUP clZ crW -cUc -clW +hAY +gXA cmH dim -dxh +gfn dyp dzz -dAF +rxR dBy -dCd -dDb -kee -dCd -dFj -dFZ -dYP -dYP -dHG +daW +xsF +pGY +daW +fqa +tOP +mDC +mDC +szN dIk -dIR -tKS -dJG -dZN -dZN -dZN -dJG +xuF +pIm +lcM +hFc +hFc +hFc +lcM dIk dTs dTs @@ -112379,33 +97281,33 @@ dTs dTs dTs apW -alT -amz -abL -amA -amA -amA -amA -amA -amA -amA -amA -amA -amA -amA -afp -ary -amA -amA -atq -auC -avf -awu -awQ -awQ -awQ -axu -aBT +oTf +fMJ +eCA +iRw +iRw +iRw +iRw +iRw +iRw +iRw +iRw +iRw +iRw +iRw +eWa +eqQ +iRw +iRw +iYb +fom +ktQ +wFY +ptx +ptx +ptx +gRi +kCs aCj cZn aij @@ -112414,13 +97316,13 @@ adA adA aeo adA -ajG +jww alj -aAl -aCs +rBo +wen azT aEf -aEq +fyz adA adA adA @@ -112432,10 +97334,10 @@ adA adA adA adA -aFr +fbz dTs dTs -aEV +uVc adA adA aFn @@ -112458,74 +97360,74 @@ ofB aKe adA aKF -aGH -aLf -aLl -aLs -aGH +eAL +hbw +snK +mGD +eAL aLC jVv aLQ aLZ aMf -aGH +eAL aLP -wIr -aMm -dLf -dEY +tVN +iNi +kjR +tRd dib dib dib dMq -caH -rjd -aDf -aDf -aDf -aME -caH -chZ +vGw +iDF +jBs +jBs +jBs +jiy +vGw +gHm ciu -dnP -dnP -dnP -dnP -dnP -aNT -aPc -aPc -aPc -aPj -aSr -aQx -aPc -aPc +nAo +nAo +nAo +nAo +nAo +dnG +mmL +mmL +mmL +mea +uMV +nyq +mmL +mmL aOH aTM -aVs -aXi -aXh +vuT +lUv +tCC bgZ aTM aYD -bcO -bdN +ieY +jtJ bfX bgo -bgD -biY -bkl -bkM +bMU +eXq +ipw +lYE bgl -bXB -bTV -aie +jNi +fxW +vQB bWL bTW bYe bYK -bWI +ehb bZE bZN bXH @@ -112545,58 +97447,58 @@ dOw cQK cmH daO -dbG -dqs -dri +sTt +uvS +ote dbK -dcw -dUt -dga -dgb -dFk -dFk -dDK -dDK -dgb -dgb -dgb -tAG +xZv +hVH +lJi +ygU +lku +lku +gKM +gKM +ygU +ygU +ygU +hYK cZu cmH -cup -cUc +pHh +hAY cCH dWZ clZ mgw clZ crW -cUc -clW +hAY +gXA cmH dim -dxm +tNn dwI dXO dAK -dBz -dYi -dYi -dYz -dYz -dYi -dYS -dYz -dYz -dYz -dIp -dIS -dBD -dJG -dZM -dZN -dZM -dJG +nsL +kHh +kHh +lye +lye +kHh +iZE +lye +lye +lye +tcu +dqv +gOM +lcM +vsF +hFc +vsF +lcM dIk dTs dTs @@ -112613,48 +97515,48 @@ dTs dTs dTs apW -amx -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -amz -ant -amz -amz -amz -amz -ats -auD -avg -aww -awX -auT -auT -xEP -ath +hWi +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fjZ +fMJ +fMJ +fMJ +fMJ +mpr +kMC +oPN +ijr +ntX +uUd +uUd +vCs +eWO aOY coX aik -aRM -agK -agC +rsy +eXo +cZh adA adA -ajG +jww alj azT -aCz +ycJ azT aEf -aEq +fyz adA adA adA @@ -112667,8 +97569,8 @@ adA kmU adA adA -aFr -aEV +fbz +uVc adA adA adA @@ -112692,74 +97594,74 @@ aHx aGn adA aKF -aGH -aLg -aLm -aLt -aGH +eAL +pUx +utJ +jiw +eAL aLC adA aLI -ajG -aGH +jww +eAL aMi aLP -ilq -dEj -dLg -dEY +eLe +myD +ouL +tRd dib dib dib dMq -bnA -arx +teJ +uiv atC aeH aft ahA -bnA -chZ -civ -caH -caH -aMW -caH -caH -anm +teJ +gHm +qrC +vGw +vGw +knz +vGw +vGw +iLd aOz aOH -aPc -aPn +mmL +qxO aSD -aTi -aXj -aXq +gnl +igb +hTu aOI aTM -aVD -aYb -aXh -aXh -biX -bcO -bfr -bdS -bcO +fvr +thm +tCC +tCC +ubn +ieY +piT +rlj +ieY bgs bgE bjv bka -bkN +mew bgl -bFF +roJ bTW bTW bWL bXI bYg bYK -bnA +teJ bWL bTX bTW @@ -112779,58 +97681,58 @@ csb cpT cmH daO -dbH -dqt -dtw -dUf -deg -dUu -dgd -dAL -dAL -dAL -dAL -dJW -dgY -dgY -dgY -tAG +jUd +sve +nHm +iEL +sRv +xKO +gec +fEo +fEo +fEo +fEo +qBq +ksg +ksg +ksg +hYK cZu cmH -gnu -cUc +rUS +hAY cCH cpR cET dXm clZ crW -cUc -clX -cmX +hAY +qyJ +kxQ duC -cYF +qBg cZV pEh -dAH +spw dBy -dCd -dYm -dYm -dYm -dYP -dYm -kee -dYm -dYm +daW +mru +mru +mru +mDC +mru +pGY +mru +mru dIk -dIK -dIr -dJG -dZN -dZM -ceV -dJG +lsc +igu +lcM +hFc +vsF +ipI +lcM dIk dTs dTs @@ -112847,48 +97749,48 @@ dTs dTs dTs apW -amx -amz -amz -amz -amz -anv -anq -anq -anq -akH -anq -anq -amB -amz -amz -amz -amz -anv +hWi +fMJ +fMJ +fMJ +fMJ +suf +wWi +wWi +wWi +esD +wWi +wWi +jqx +fMJ +fMJ +fMJ +fMJ +suf aJe -auE +vQX avh -aww -aww -awX -axa +ijr +ijr +ntX +oOQ oUN -aSi -aRj +fTe +uRd coX aOh -dfr +lOy dTs -aDY +lMu adA adA -ajG +jww azK aAm aAm aAm aEl -aEq +fyz kmU adA adA @@ -112926,36 +97828,36 @@ aGd aGn adA aKF -aGH -aLi -aLn -aLu -aGH +eAL +oFA +ryW +hVv +eAL aLC adA aLR -aMc -aGH -aGH +tTx +eAL +eAL aLP -ilq -cAg +eLe +ncW dJT -dEY +tRd dib dib dib -adG -bnA -aOo +uST +teJ +xgp dMf dib atW ahA -bnA -chZ -civ -caH +teJ +gHm +qrC +vGw aOy aOy aOz @@ -112963,37 +97865,37 @@ aOz aPs aOy aOH -aPc -aPn +mmL +qxO aPN -aTo -aPc -aXu +emW +mmL +gZV aOH aTM -aVV -aXh -aXh -aYb -aXh -aZh -bcO -beQ +tKs +tCC +tCC +thm +tCC +yhK +ieY +mxp bad bgo -bhs -bjw -bkC -xxd +wmv +hCG +cqP +qXF bgl -bFF +roJ bTW bWE bXx bTW bYh bYK -bnA +teJ bWL bTW bTX @@ -113013,58 +97915,58 @@ cmH cmH cmH daO -dxM -dqt -dux -dUe -dvg -dUt -dqt -cWp -dHl -dHl -dDK -dDK -cWp -cWp -cWp -tAG +xpb +sve +sOT +odh +smt +hVH +sve +okU +kXg +kXg +gKM +gKM +okU +okU +okU +hYK dbK cmH -cup -cUc +pHh +hAY cCH clZ clZ dXm clZ crW -cmN -cok -cvw +ibT +lQD +npn dwH ltE dwI dax -dAD +okW dBy -dCf +sMa dBy -dCf +sMa dBy -dCf +sMa dBy -dCf +sMa dBy -dCf +sMa dIk -dIT -dIr -dJG -dZO -dZL -dZL -dJG +mNp +igu +lcM +iIn +dAh +dAh +lcM dIk dTs dTs @@ -113081,52 +97983,52 @@ dTs dTs dTs apW -abi -amB -amz -amz -anv -anM +knc +jqx +fMJ +fMJ +suf +nEs anP anP anP anP anP anP -amC -anq -akH -anq -anq -anM +hxP +wWi +esD +wWi +wWi +nEs aJd -auF +kxo avh agn -aww -lHW -axb +ijr +rpT +xQW gab aOh -aRk -cqS +emI +oxm dTs -aRN +xgq dTs -akq -agC +lmW +cZh adA -ajJ -azO -azO -azO -azO -azO -aEy +jSb +dfV +dfV +dfV +dfV +dfV +tzj adA -aCG -agK -agC +fef +eXo +cZh aES adA adA @@ -113156,15 +98058,15 @@ eqo adA adA adA -aEZ +qLX aGn aHT aKF -aGH -aLj -aLo -aGH -aGH +eAL +nUO +cbb +eAL +eAL aLF adA adA @@ -113172,24 +98074,24 @@ aMd aMf aMk aLV -ilq -cAg -dLj -cEW +eLe +ncW +ecW +hAg dib dib dib adH -bnA -aOo +teJ +xgp dMf dib atW ahA -bnA -aSH -bvz -caH +teJ +aon +lPe +vGw aOy aOE aOH @@ -113197,37 +98099,37 @@ aOH aPt aOH aOH -aPc -aPn +mmL +qxO aPN -aTo -aPc -aOB +emW +mmL +rej aOH aTM -aVW -aXi -aXh +tXi +lUv +tCC bhq aTM bad -bcO -aVU +ieY +gpO bfY bgl bgo -bjP +nMC bgo bgl bgl -bFF +roJ bTW bWE bWL bTW bYh bYK -bnA +teJ bWL bTW bTW @@ -113247,58 +98149,58 @@ dIi cmH cmH daO -dpF -dqt -dux -dUe -dcw +gdC +sve +sOT +odh +xZv dbK -dqt -dEv -dBe -dHo -dDK -dDK -dBc -dBf -cYK -tAG +sve +vVA +ved +gJc +gKM +gKM +fsr +hWB +kKI +hYK cZu cmH -cup -cUc +pHh +hAY cCH cWc dXj dXn cma cXw -dbQ -duD -del +lPp +moo +eKz dwJ vOv dwJ daX -dAD +okW dBy -dCg +jhV dBy -dCg +jhV dBy -dCg +jhV dBy -dCg +jhV dBy -dCg +jhV dIk -lAT -dIr -dCj -dJG -dJG -dCV -dJG +vsL +igu +ozq +lcM +lcM +mnK +lcM dIk dTs dTs @@ -113316,16 +98218,16 @@ dTs dTs apW apW -alS -ant -amz -anD +kLj +fjZ +fMJ +oCA anP anP -aoF -apl -aoF -apl +uRB +rSG +uRB +rSG anP anP anP @@ -113334,36 +98236,36 @@ anQ anQ anP anP -auQ +nnn avh awx -aww -aww -axc +ijr +ijr +hIj oUN aOh -aRk -afl +emI +rpb dTs dTs dTs azT -agD +rTm adA adA kmU adA adA adA -aCG -agK -agK -aCM +fef +eXo +eXo +muu azT -akq -agK -agK -agC +lmW +eXo +eXo +cZh aFn aFR kiP @@ -113372,71 +98274,71 @@ aFP adA adA eqo -dzO -agC +jxp +cZh adA adA adA -aCG -agK -agC +fef +eXo +cZh aHC -aCG -agK -agC +fef +eXo +cZh adA eqo eqo adA adA kmU -aEZ +qLX aGl aJh aKG aKR -aLg -aLn -aLw -aLA +pUx +ryW +gOZ +hRC aLG -aEW -aLT +qQg +bkO aLZ aMg fbK -aGH -ilq -cDQ -dEY +eAL +eLe +tia +tRd dib dib dib dib adH aof -arx +uiv asT dib atW ahA -bnA -aSH -bvz -caH +teJ +aon +lPe +vGw aOz aOH -aPc -aPc -aPG -aPc -aPc -aPc -aPn +mmL +mmL +kZZ +mmL +mmL +mmL +qxO aPN -aTp -aXj -aXy +hEj +igb +lXn aOH aTG aWg @@ -113445,23 +98347,23 @@ bgZ bhr aTG aUU -bcO -bfl +ieY +exh aUU aUU -bhI +jLG bka bka blf bgl -bGe +fXA bTW bTX bWL bXJ bYg bYK -bnA +teJ bWL bZO cae @@ -113471,45 +98373,45 @@ cvI cvI cEY cmH -cUL -cmX -cmX -cmX -cmX -cmX -cmX -cpb +hoV +kxQ +kxQ +kxQ +kxQ +kxQ +kxQ +ePL cmH daO -dpG -dqt -ddl +eoR +sve +nEf dbK -dcw -dcw -dcw -cYK -cYK -dAd -dgY -dgY -cYK -cYK -dBb -tAG +xZv +xZv +xZv +kKI +kKI +gsg +ksg +ksg +kKI +kKI +kKy +hYK cZu cmH -cup -cUc +pHh +hAY cCH dpH cET dXm clZ crW -cUc -cmc -cpY +hAY +tdT +vdZ jCJ jCJ jCJ @@ -113550,45 +98452,45 @@ dTs dTs dTs apW -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anP -anR -aoQ -apn -apn -apn -aqe -apn +vdE +nzM +oMZ +oMZ +oMZ +qTE +oMZ aqQ -mEJ -aqk -asm -asH +piK +rFo +uMI +ool anQ -auF +kxo avh -aww -aww -aww -axc +ijr +ijr +ijr +hIj oUN cTE -aRk -afl +emI +rpb dTs dTs dTs dTs dTs -agK -agC +eXo +cZh adA adA adA -aCG +fef dTs dTs dTs @@ -113597,8 +98499,8 @@ azT azT azT azT -akq -agC +lmW +cZh aFT aFn aFR @@ -113606,71 +98508,71 @@ aHE aGr adA adA -aEX -akq -agC +lnw +lmW +cZh adA -aCG -aCM +fef +muu dTs dTs -agK -aCM +eXo +muu dTs dTs -agC +cZh adA adA adA adA adA -aEZ +qLX aFf aGf aKJ aKS -aLk -aLp -aLx -aLB +jaS +ffs +orS +est leZ aLJ -aLU +rGX aMe -aGM -aGH -aGH -ilq +mYR +eAL +eAL +eLe duy -dEY +tRd dib dib dib dib adH aof -arx +uiv asT dib atW ahA -bnA -aSH -bvz -caH +teJ +aon +lPe +vGw aOz aOH -aPc -aPj -aPM -aPX -aQx -aPc -aPo -aSF -aQF -aPc -aYi +mmL +mea +jRN +mtw +nyq +mmL +ssv +odq +vQa +mmL +lfV aOH aUc aUc @@ -113679,23 +98581,23 @@ aUR aUc aTG baf -bcO -bcO +ieY +ieY bfZ aVn big -bjZ -bjZ +vvo +vvo bli biW -bFF +roJ bTW bTX bXx bTX bYh bYK -bnA +teJ bWL bTW bTX @@ -113705,50 +98607,50 @@ dWZ clZ cEY cmH -cup -dak -cvn -cvn -cvn -cZS -dXv -clW +pHh +kGM +lBf +lBf +lBf +lnx +eaB +gXA cmH daO -dbJ -dcw -ddl -dUc -dcw -dyU -dcw -dgb -dgb -dgb -dgY -dgY -dgb -dgb -dgb -tAG +rpL +xZv +nEf +wdf +xZv +mlI +xZv +ygU +ygU +ygU +ksg +ksg +ygU +ygU +ygU +hYK cZu cmH -cup -cUc +pHh +hAY hIO dpI dXf dXo cmb cXx -cUc -clW +hAY +gXA cmH xOb cmH -bDY +nBi bKj -cwC +lvQ cFm cmH cmH @@ -113784,45 +98686,45 @@ dTs dTs dTs apW -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anP -anR -aod -aoT -aoT -aoT -aFA -aoT -aqU -aoT -aqs -aoT -asI +vdE +uzs +pMx +pMx +pMx +qIy +pMx +kDd +pMx +jFk +pMx +noX atv -auF -avi -aww -aww +kxo +pIw +ijr +ijr awx -axc +hIj oUN aOh -aRk -afl +emI +rpb dTs dTs dTs dTs dTs dTs -akq -agC +lmW +cZh aAr -aCG -aCM +fef +muu dTs dTs dTs @@ -113832,19 +98734,19 @@ dTs azT dTs azT -akq -oit +lmW +iWy adA aGp aGr adA -aCG -agK +fef +eXo dTs dTs -akq -agK -aCM +lmW +eXo +muu azT dTs dTs @@ -113852,20 +98754,20 @@ dTs azT dTs dTs -akq -agK -aJL +lmW +eXo +lCR adA adA adA -aEZ -aFi +qLX +twD adA aKF -aGH -aGH -aGH -aGH +eAL +eAL +eAL +eAL aLC adA adA @@ -113874,55 +98776,55 @@ aLI aMh aMf aMf -ilq +eLe duy -dEY +tRd dib dib dib dib adH aof -arx +uiv asZ atB atX ahA -bnA -aSH -bvz -caH +teJ +aon +lPe +vGw aOz aOH -aOB -aPn +rej +qxO aPN aPN -aQz -aPc -aPc -aPc -aQp -aPc -aPc +jAc +mmL +mmL +mmL +gFL +mmL +mmL bfF aUc -aWx -bgJ -aWG +oAW +ueD +nOW aPL aUU baL -bcO -bcO +ieY +ieY bad aVn big -bkD -bjZ +mLz +vvo bli biW -bFF +roJ bTX bWF bXx @@ -113945,8 +98847,8 @@ clY clY clY nsf -cUc -clW +hAY +gXA cmH daO dbK @@ -113954,38 +98856,38 @@ dbK ddm dbK dbK -dfs -dcw -dcw -dcw -dcw -dcw -dfs -dcw -dvg -dcw -dlN +eiD +xZv +xZv +xZv +xZv +xZv +eiD +xZv +smt +xZv +obs dbK cmH -cup -cUc +pHh +hAY cWe dpJ dXa dXp -cmM -cok +goI +lQD cto -cWr -cWa -uPS -cWa +xAE +hnG +yaB +hnG bDZ bKk cxl -cPp -cWa -cPx +rqI +hnG +tFk dTs dTs dTs @@ -114018,34 +98920,34 @@ dTs dTs dTs apW -alT -amz -amz -apj +oTf +fMJ +fMJ +jCS anP -anS -aod -aoT -aoT -aoT -aoT -aoT -aqU -aoT -aqs -aFA -apI +mnE +uzs +pMx +pMx +pMx +pMx +pMx +kDd +pMx +jFk +qIy +ncS anQ -auF -avi -aww -aww +kxo +pIw +ijr +ijr awx -axc +hIj oUN aOh -aRk -afm +emI +uVD dTs dTs dTs @@ -114053,8 +98955,8 @@ dTs dTs dTs dTs -akq -agK +lmW +eXo dTs dTs dTs @@ -114067,12 +98969,12 @@ dTs dTs dTs azT -agD +rTm adA adA adA adA -aEX +lnw dTs dTs dTs @@ -114088,12 +98990,12 @@ dTs dTs dTs dTs -agD +rTm adA adA adA -pyP -rpc +lMJ +ias adA aKK aLe @@ -114108,55 +99010,55 @@ adA aMh aLP aMg -ilq +eLe duy -dEY +tRd dib dib dib dib adH -bnA -aeP -afM -afM -afM -ahQ -bnA -aSH -bvz -bnA +teJ +owd +rWZ +rWZ +rWZ +don +teJ +aon +lPe +teJ aOz aOI -aOB -aPn +rej +qxO aPN aQl -aQz -aPc -aPj -aSM -aTu -aPc -aPc +jAc +mmL +mea +ruA +dvY +mmL +mmL aOH aUc -aWx -bgJ -bgJ +oAW +ueD +ueD aPL aUU baM -bcO -bfr -bcO -bgt -bih -bih -bih -bjZ -bll -bGs +ieY +piT +ieY +jzO +oMi +oMi +oMi +vvo +gee +yhf bTZ bWF bXx @@ -114179,8 +99081,8 @@ cSa cma dem crW -cUc -clW +hAY +gXA cmH cmH dbL @@ -114197,29 +99099,29 @@ dbK dbK dbK dbK -dkd +pcA dbK dbK cmH -cup -cUc +pHh +hAY cCI dpK cXt crX -cmN -cod -cod -cod -cod -gKm -cod -cod -cod -cod -cod +ibT +sOc +sOc +sOc +sOc +vhQ +sOc +sOc +sOc +sOc +sOc cto -coc +gZq dTs dTs dTs @@ -114252,33 +99154,33 @@ akk akk akk akk -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anP -anT -aod -aFA -aoT -apH -aqd -aqd +hbD +uzs +qIy +pMx +sTg +mGX +mGX anP -arl -aqs -aoT -asJ +npL +jFk +pMx +qvI anQ -auF +kxo avh -aww -aww -aww -axc +ijr +ijr +ijr +hIj oUN aOh -aRk +emI coX aOh dTs @@ -114306,7 +99208,7 @@ aFz aFz vte aFz -aGI +gRx dTs dTs dTs @@ -114322,12 +99224,12 @@ dTs dTs dTs dTs -agD +rTm adA adA aBF -aHy -aFj +bKW +fNP dic adA adA @@ -114335,62 +99237,62 @@ adA dTs dTs dTs -agC +cZh adA adA dTs dTs dTs dTs -ilq +eLe duy -dEY +tRd dib dib dib dib -adJ -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA +skK +teJ +teJ +teJ +teJ +teJ +teJ +teJ +aon +lPe +teJ aOy aOI -aOB -aPo -aPW -aQo -aQB -aPc -aPn +rej +ssv +qYm +tVz +nUj +mmL +qxO aPN -aQz -aXk -aPc +jAc +gyx +mmL aOH aUc -aWx -bgL -bgJ +oAW +ybE +ueD aPL aUU -baN -bcO -bcO -bcO -bcO -bih -bih -bih -bih -bih -bGs +pXb +ieY +ieY +ieY +ieY +oMi +oMi +oMi +oMi +oMi +yhf bTX bTW bWL @@ -114413,10 +99315,10 @@ cnU clZ den yfq -cUc -clX -cmX -cmX +hAY +qyJ +kxQ +kxQ dbL uGO ddn @@ -114429,19 +99331,19 @@ mTY dbN dbN dbK -dhc -dhd -dcw -dcw +pBI +vcZ +xZv +xZv dbK dbK dbK -cUc +hAY cCH dpL clZ crW -cUc +hAY tMy ydw ydw @@ -114451,10 +99353,10 @@ aSw aSw aSw aQP -cko -cmN -coc -cko +vgx +ibT +gZq +vgx dTs dTs dTs @@ -114480,50 +99382,50 @@ acu acu dTs akk -akl -akI -alz -alz -alC +lxw +jCK +qkX +qkX +dIE alP -amy -amz -amz -apj +oQE +fMJ +fMJ +jCS anP -anS -aod -aoT -aoT -apI -aqi -aqi +mnE +uzs +pMx +pMx +ncS +wez +wez anP -arm -aqs -aoT -asL +ydF +jFk +pMx +ruH anP -auF +kxo avh awx -aww -aww -axc +ijr +ijr +hIj oUN aOh -aRk +emI coX aOh dTs dTs dTs dTs -aGX -aGX -aGX -aGX -aGs +qGs +qGs +qGs +qGs +nTF aeT aeT dTs @@ -114540,7 +99442,7 @@ aFz aFz aFz aFz -aGg +uYg dTs dTs dTs @@ -114556,29 +99458,29 @@ dTs dTs dTs axj -agD +rTm adA axx lVW lVW lVW aKj -aKL +hYN adA adA -aCG +fef dTs dTs -agD +rTm adA adA adA dTs dTs dTs -ilq +eLe duy -dEY +tRd dib dib dib @@ -114590,43 +99492,43 @@ aNU aNU aoi aoi -bnA -aSH -bvz -aML +teJ +aon +lPe +vGc aOy aOI -aOB -aPc -aPc -aQp -aPc -aPc -aPn +rej +mmL +mmL +gFL +mmL +mmL +qxO aPN -aQz -aPc -aPc +jAc +mmL +mmL aOH aUs -aWG -bgJ -bgJ -aWG +nOW +ueD +ueD +nOW aVn baO -bda -bcO +mxN +ieY bad aVn big -bjZ -bkD +vvo +mLz bli biW -aSH -bul -bWH +aon +nmg +uDn bXF bXK bXK @@ -114647,10 +99549,10 @@ cZQ cpR der crW -cmN -cok -cok -cvw +ibT +lQD +lQD +npn dbM lOY ddn @@ -114658,37 +99560,37 @@ dHM dbN dHM dbN -fYS -fYS -dhe +pzk +pzk +rIK dbN dbK dbK dbK -dcw -dcw -dcw -dcw +xZv +xZv +xZv +xZv dbK -cUc +hAY cCH dpI clZ crW -cUc +hAY tMy -aSP -aTX -aTX -brA -aTX -rBr -bLn +ply +xZw +xZw +qXo +xZw +wCc +uPH aQP -cko -cmN -dNC -cko +vgx +ibT +fDU +vgx dTs dTs dTs @@ -114714,39 +99616,39 @@ acu acu dTs akk -akm +tsg akK akK akK akK alR -amz -amz -ant -anD +fMJ +fMJ +fjZ +oCA anP -anT -aod -aoT -aoT -apI -aqi -aqi +hbD +uzs +pMx +pMx +ncS +wez +wez anP anP -arQ -aoU +kPm +iGN anP anP -auR +xTm avh awx -awS -aww -axb +gdu +ijr +xQW gab aOh -aRk +emI cWq bzS dTs @@ -114757,8 +99659,8 @@ aFz aFz aFz aFz -aHc -aGs +vis +nTF aeT dTs dTs @@ -114769,8 +99671,8 @@ dTs dTs dTs dTs -aBd -aKB +lLc +xRx aFz aFz aFz @@ -114790,29 +99692,29 @@ dTs dTs aIv aJB -agD +rTm adA axD azT azT -aKf -aKy -aKM +xEC +ntQ +ygS adA adA -aEX +lnw dTs dTs -agD +rTm adA adA adA dTs dTs dTs -ilq +eLe duy -dEY +tRd dib dib dib @@ -114824,67 +99726,67 @@ iXA aNS aNS aNU -bnA -aSH -bvz -bnA +teJ +aon +lPe +teJ aOy aOS -aOB -aPj -aPX -aQr -aQx -aPc -aPn +rej +mea +mtw +woc +nyq +mmL +qxO aSD -aQz -aXm -aPc -aOB -aUz -aWL -aWL -bhb -bhb -aVC -bda -aVU -bcO +jAc +uAt +mmL +rej +pdk +wps +wps +nBj +nBj +nec +mxN +gpO +ieY bga aVn big -bjZ -bjZ +vvo +vvo bli biW -aSH +aon bzY bzY -bul -bul -bul -bul -bul -bul -bul -bTV -bTV -bTV -cvn -cvn -cvn -cvn -cZR -dXv +nmg +nmg +nmg +nmg +nmg +nmg +nmg +fxW +fxW +fxW +lBf +lBf +lBf +lBf +eaj +eaB cCH clZ dpI crW -cmN -cod -cod -cvx +ibT +sOc +sOc +xmw dbN lOY ddo @@ -114892,37 +99794,37 @@ deh deK mTY dbN -dhe -fYS -xjb +rIK +pzk +kSs dbN dbK -dhc -dhd -dcw -dfs -dlA -dlA +pBI +vcZ +xZv +eiD +jUw +jUw dbK -cUc +hAY cCH dpH cET crW -cUc +hAY ydw -aTe -aTY -aUb -buz -aUb -aUa -bLK +ijs +nch +vGl +qWG +vGl +wqg +gBz aQP -cko -cmU -cvx -cko +vgx +iSf +xmw +vgx dTs dTs dTs @@ -114948,51 +99850,51 @@ acu acu dTs akk -akn +rbK akK akK akK akK akK -amz -amz -amz -apj +fMJ +fMJ +fMJ +jCS anP anP anP -apo -apo +euX +euX anP anP anP anP -aqv -aqs -aoT -asL +ofw +jFk +pMx +ruH anP -auQ +nnn avh -aww -aww -awy -axe +ijr +ijr +poX +ftF oUN -aOi -aCi +sjA +kYD coX aOh dTs -beB -beM +oqC +iay aFz vte aFz aFz aFz azV -aGI +gRx aeT aeT dTs @@ -115004,15 +99906,15 @@ dTs dTs dTs aBe -aKd +vqx aFz aFz aFz aFz -aGI +gRx aeT -gTW -aGs +hCt +nTF aeT aeT aeT @@ -115024,29 +99926,29 @@ dTs dTs aIv aJB -agD +rTm adA aBq uMr aJY -aKg -aKz -aKN +pHY +nOx +fwL kmU -aCG -aCM +fef +muu dTs dTs -agD -aCG -agK +rTm +fef +eXo dTs dTs dTs dTs -ilq -dAB -dJB +eLe +gtM +wpo dLk dib dib @@ -115054,37 +99956,37 @@ dib dMq aNU asQ -avv -aNy -aNy -aOx -bnA -aSH -bvz -bnA +ydx +llf +llf +fwY +teJ +aon +lPe +teJ aOz aOI -aOB -aPn +rej +qxO aPN aPN -aQz -aPc -aPn +jAc +mmL +qxO aPN -aQz -aPc -aOB -aPc -aUN -aUN -aUN -aWL -aUN -aVU -bcI -bcO -bcO +jAc +mmL +rej +mmL +lSr +lSr +lSr +wps +lSr +gpO +lwW +ieY +ieY bgb aUU biC @@ -115092,33 +99994,33 @@ bka bka blf bgl -bMT +cWG bzY -buh -buh -buh -buh -buh -buh -buh -aie -dTs -dTs -aeO -cpY -cpY -cpY -cpY -czU -dWT +iGY +iGY +iGY +iGY +iGY +iGY +iGY +vQB +dTs +dTs +svx +vdZ +vdZ +vdZ +vdZ +hiA +ipm cCH clZ dpI crW -cUc -cmc -cpY -cpY +hAY +tdT +vdZ +vdZ dbL puM ddn @@ -115126,9 +100028,9 @@ dbN dbN dbN dbN -dhf -dhf -dhf +lqP +lqP +lqP dbN dbK dbK @@ -115138,24 +100040,24 @@ dbK dbK dbK dbK -cUc +hAY cCH dpI clZ kmr -cUc +hAY ydw -aTe -aUa -aUb -bvq -aUb -buz -bLK +ijs +wqg +vGl +oPY +vGl +qWG +gBz aQP aSw -aUb -bEb +vGl +vHg aSw aQP dTs @@ -115182,51 +100084,51 @@ acu acu dTs akk -ako +lYk akK akK akK -alF +icU alP -amB -amz -amz -apj +jqx +fMJ +fMJ +jCS anP -anU -aoR -aoT -aoT -apK -aqk -aqL -aqV -arn -aqs -aoT -apK +rEX +gMB +pMx +pMx +rnV +rFo +uMe +vwT +ejr +jFk +pMx +rnV anQ -auS -avi -aww -awy -auT -auT -axv -aOj +rSp +pIw +ijr +poX +uUd +uUd +lqD +kYs aOY -cqS +oxm dTs dTs aeT -aFU +jln aFz aFz aFz aFz aFz aFz -aGI +gRx aeT dTs dTs @@ -115238,16 +100140,16 @@ dTs dTs aJc aJQ -aBd -aKB +lLc +xRx aFz aFz aFz -aHc -aGX -aGR -aGg -aGs +vis +qGs +kDj +uYg +nTF aeT aeT dTs @@ -115256,69 +100158,69 @@ dTs dTs aIv aIv -aIF -aIG -agD +cHW +jBY +rTm adA adA axD -aJZ -aKh -aKA +oyC +miA +ixb vSH adA -aEX +lnw azT azT dTs -agD -aFr -aGi +rTm +fbz +xLc dTs dTs dTs dTs -ilq -cAg +eLe +ncW dJT -dEY +tRd dib dib dib dMq aNU asS -aNy -aNy -aNy -aNy -bnA -aSH +llf +llf +llf +llf +teJ +aon aid -aCo -aOA -aOB -aOB -aPn +bwC +xKL +rej +rej +qxO aPN aQl -aQz -aPc -aRh +jAc +mmL +oCr aPN -aQz -aPc -aOB +jAc +mmL +rej aOI aUR -aXa -bgM -bhn -aXa +viJ +vSp +izQ +viJ aVn bad -bda -bcO +mxN +ieY bgc aUU biW @@ -115326,16 +100228,16 @@ biW biW biW bgl -aSH -bvz -aeO -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ +aon +lPe +svx +vET +vET +vET +vET +vET +vET +vET dTs dTs dTs @@ -115343,14 +100245,14 @@ cmH cmH aJA cmH -cup -cUc +pHh +hAY dWW cpR der crW -cUc -clW +hAY +gXA cmH cmH dbL @@ -115368,29 +100270,29 @@ dke dbN dbN dbL -dle -dlR -dlD +xEi +qkk +fPA dbL -cUc +hAY cCH dpI clZ crW -cUc +hAY ydw -aTe -aUb -aUW -aUb -aUb -aUb -bUa -brA -cVL -pHU -pHU -pwc +ijs +vGl +fen +vGl +vGl +vGl +jgk +qXo +msd +gxU +gxU +pRp aQP dTs dTs @@ -115416,51 +100318,51 @@ acu acu dTs akk -ako +lYk akK oXK akK -alG +dwp akk -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anQ -aoc -aoS -aFA -aoT -aoT -aqs -aoT -aoT -aoT -aqs -aFA -aoT -atE -auT -avi -awy -auT -auT -auT -xEP -ath -aaw -atL +hEy +tpt +qIy +pMx +pMx +jFk +pMx +pMx +pMx +jFk +qIy +pMx +tnh +uUd +pIw +poX +uUd +uUd +uUd +vCs +eWO +icH +fZb dTs dTs aeT -aFU +jln aFz aFz aFz aJT aFz aFz -aGI +gRx dTs dTs dTs @@ -115473,7 +100375,7 @@ dTs aJc aBf aBe -aKd +vqx aFz aFz aFz @@ -115481,8 +100383,8 @@ aFz aFz aFz aFz -aGg -aGs +uYg +nTF aeT azT dTs @@ -115491,58 +100393,58 @@ dTs aIv aIv aJB -aIH -aEV +pzR +uVc adA adA aBq -aKa -aKi +rWo +fWG eAe gOE adA -aEX +lnw azT azT -aEU -aEV +xaa +uVc adA -aFr -aJV +fbz +eNC dTs dTs dTs dTs -cAg +ncW dJT -dEY +tRd dib dib dib dMq aoi atY -aNy -aNy +llf +llf aNS aNU -bnA -aSH +teJ +aon bzY -aie -aOB -aOB -aOB -aPo -aPW -aPW -aQF -aQp -aRI -aSR -aQB -aPc -aOB +vQB +rej +rej +rej +ssv +qYm +qYm +vQa +gFL +tJB +xVQ +nUj +mmL +rej aOI aUc aUc @@ -115551,23 +100453,23 @@ aUc aUc aUU bcK -aVU -bfR +gpO +rXk bcK aUU -bnA -bCH -bCH -aTx -bnA -aSH -bvz -bYN +teJ +uyw +uyw +fSA +teJ +aon +lPe +pVi bKI bjV bjV -bkP -bkm +lYR +gLa dTs dTs dTs @@ -115577,54 +100479,54 @@ dTs dTs cmH cmH -cup -cUc +pHh +hAY dWW clZ dpI crW -cUc -cko +hAY +vgx dap dap dap dap -ddq +ouV dap dap -dfv +eYL dbN dbN dbN dbN rlU -wjC -lzZ +wgh +qGL dbN dbL dbL -dlC +sQn dbL dbL -cUc +hAY cCH dpH cET crW -cUc +hAY tMy -aTN -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUb -cSU +srt +vGl +vGl +vGl +vGl +vGl +vGl +vGl +vGl +vGl +vGl +dTO aQP dTs dTs @@ -115650,51 +100552,51 @@ acu acu dTs akk -akE +ogg akK akK akK -alH +wbk alP -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anQ -aod -aoT -apB -apB -apB -aqt -aqN -aqN -aqN -arU -asn -asn -atF -awQ -avz -auT -auT -auT -axa +uzs +pMx +nER +nER +nER +xIL +pzV +pzV +pzV +gfd +oGo +oGo +vOD +ptx +kwE +uUd +uUd +uUd +oOQ oUN -aSi -aSi +fTe +fTe dTs dTs dTs -ccK -aFU +uSn +jln aFz aFz aFz aFz aFz vte -aGI +gRx dTs dTs dTs @@ -115704,10 +100606,10 @@ dTs dTs dTs dTs -aAW -aBg +scR +fCb aJQ -aKd +vqx vte aFz aFz @@ -115716,16 +100618,16 @@ aFz aFz aFz aFz -aGI +gRx aeT azT azT dTs -awR +kXR aIv -aIF -aIG -agD +cHW +jBY +rTm adA adA adA @@ -115735,7 +100637,7 @@ gOE adA adA adA -aEX +lnw azT dTs dTs @@ -115743,63 +100645,63 @@ adA adA kmU adA -aJV +eNC dTs dTs dTs dTs -dLj -cEW +ecW +hAg dib dib dib dMq aoi -atZ -aNy -aOn +sFc +llf +iYu auZ aoi -aRl -aSH -bvz -bnA +qlB +aon +lPe +teJ aOz aOH -aPc -aOB -aOB -aOB -aOB -aOB -aOB -aOB -aOB -aPc -aPc +mmL +rej +rej +rej +rej +rej +rej +rej +rej +mmL +mmL aOH aOy -bnA -aPq -aPx -aTx -ajW -bnA -awo -aCo -bnA -ajW -bnA -bCI -bCI -bnA -bnA -aSH -bvz -bYN +teJ +wGC +gvt +fSA +jPA +teJ +jfs +bwC +teJ +jPA +teJ +kNP +kNP +teJ +teJ +aon +lPe +pVi bjV bjV -bkP +lYR dTs dTs dTs @@ -115811,20 +100713,20 @@ dTs dTs dTs cFK -cup -cUc +pHh +hAY cCH clZ dpI crW -cUc -cko +hAY +vgx dap -daP -dbO -dcy -ddr -dbP +qBs +sYd +fxF +srZ +iDo dap dbN dge @@ -115832,33 +100734,33 @@ dhg dhg dhj rlU -nMO -oOj +ryD +lbE dbN dlB -dlQ -dlR -dmO +kHS +qkk +eJl dbL -cUc +hAY cCH dpI clZ crW -cUc +hAY ydw -aTe -aUb -aUb -aUb -aUb -aUb -aUb -aUb -aUW -aUb -aUb -cSX +ijs +vGl +vGl +vGl +vGl +vGl +vGl +vGl +fen +vGl +vGl +xxo aQP dTs dTs @@ -115884,52 +100786,52 @@ acu acu dTs akk -akF +nZv akK akK akK -alH +wbk alP -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS anQ -aoA -aoT -aoT -aoT -aoT -aoT -aFA -aoT -aoT -aoT -aoT -apF +hJd +pMx +pMx +pMx +pMx +pMx +qIy +pMx +pMx +pMx +pMx +pPR anQ -auV -avO -awN -awT -auT -axb +pYb +vIF +hxb +mCA +uUd +xQW gab aOh -aRM +rsy dTs dTs -aam -aiL -aFU +jwB +sgK +jln aFz aFz aFz aFz aKH aFz -aGg -aGs +uYg +nTF dTs dTs dTs @@ -115941,25 +100843,25 @@ aAN aAX aBh aJQ -aBd -aKB +lLc +xRx aFz aFz aFz aFz aFz aFz -bfh -bfi +hjg +ngr aeT azT azT azT -awW -aIx -aIG -tKQ -agD +oCp +huq +jBY +tiq +rTm adA adA aBF @@ -115972,17 +100874,17 @@ adA dTs dTs dTs -akq -agK -agK -agC +lmW +eXo +eXo +cZh aHz fcE dTs dTs dTs dTs -cEW +hAg dib dib dib @@ -115990,14 +100892,14 @@ dib dMq aoi auZ -aNy -aNy +llf +llf aOt aoi -bnA -aSH -bvz -bnA +teJ +aon +lPe +teJ aOy aOH aOH @@ -116007,32 +100909,32 @@ aOI aOH aOI aOH -aOB -aOB +rej +rej aOH -beS +evl bgG aOy -bnA -aPr -aPZ -bnA -bnA -bnA -btR -bux -aHP -aHP -bnA -bCJ -bCJ -bnA -bnA -aSH -bvz -bYN +teJ +siY +eOe +teJ +teJ +teJ +vwI +gap +fly +fly +teJ +mHB +mHB +teJ +teJ +aon +lPe +pVi bjV -bkP +lYR dTs dTs dTs @@ -116045,20 +100947,20 @@ dTs dTs dTs dTs -cup -cUc +pHh +hAY cCH dXe der crW -cUc -cko +hAY +vgx dap -daQ -dbP -heR -ddr -dej +qcc +iDo +xVA +srZ +iqS dap eeL dgf @@ -116066,33 +100968,33 @@ dhh dhh diN dbN -wjC -dhe +wgh +rIK dbN -dkL -dlR -dIu -dmP +qQE +qkk +jwI +miF dgo -cUc +hAY hIO dpI clZ crW -cUc +hAY ydw -aTe +ijs aUt aUt -aUb -aUb -aUb +vGl +vGl +vGl aUt aUt aUt -aUb -aUb -cSY +vGl +vGl +rJW aQP dTs dTs @@ -116118,44 +101020,44 @@ acu acu dTs akk -akG -ale +iaQ +xQB akK akK -alH +wbk akk -alT -ant -amz -apj +oTf +fjZ +fMJ +jCS anP -aoC -aoT -aoT -apF -aqd -aqu -aoT -apF -arr -aqu -aoT -apI +soD +pMx +pMx +pPR +mGX +vwF +pMx +pPR +kEZ +vwF +pMx +ncS anP aJd aJd aJd aJd -awZ +wWl aJd gab aOh -aWz -bgH -aam -azA +wXa +xSP +jwB +fPk aeT -aFU +jln aFz aFz aFz @@ -116163,37 +101065,37 @@ aFz aKI aGh aGb -aGg -aGs +uYg +nTF dTs dTs aFz -aAz +fRg dTs aJc -aAO +wjc aAX aBh aJQ -aAY -aKd +okY +vqx aFz aFz aFO aFz aFz aFz -aGI +gRx lMc aeT azT azT azT azT -tKQ -tKQ -tKQ -agD +tiq +tiq +tiq +rTm adA adA adA @@ -116209,9 +101111,9 @@ azT azT azT azT -agD +rTm aHC -aCG +fef dTs dTs dTs @@ -116228,10 +101130,10 @@ aNS auZ auZ aoi -bnA -aSH -bvz -bnA +teJ +aon +lPe +teJ aOy aOy aOz @@ -116241,32 +101143,32 @@ aOz aOz aOy aOz -aOB -aTW +rej +pXi aOz aOy aOy aOy -bnA -aPw -aQv -bnA -aPd -bnA -btR -bux -aHP -aHP -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bYN +teJ +tXb +rfY +teJ +fDY +teJ +vwI +gap +fly +fly +teJ +teJ +teJ +teJ +teJ +aon +lPe +pVi bjV -brj +gkB dTs dTs dTs @@ -116279,20 +101181,20 @@ dTs dTs dTs dTs -cup -cUc +pHh +hAY cCH dWZ dpI crW -cUc -cko +hAY +vgx dap -daQ -heR -gBV -ddr -dbP +qcc +xVA +xac +srZ +iDo dap dbN dgf @@ -116303,30 +101205,30 @@ dbN dkh dkM dkM -dlS -dlS -dme -dmP +rbe +rbe +tEG +miF dgo -cUc +hAY cCH dpH cET crW -cUc +hAY ydw -aTe +ijs aUP aUt -aUb -aUb -aUb +vGl +vGl +vGl aUt cxK aUt -aUb -aUb -cTg +vGl +vGl +kNh aQP aQP dTs @@ -116353,43 +101255,43 @@ acu dTs akk akk -alf +hGl akK akK -alJ +qAH alP -amy -amz -amz -anD +oQE +fMJ +fMJ +oCA anP anQ -aoU -aoU +iGN +iGN anQ anP anQ -aqP +uYW anQ anP anQ -aqP +uYW anQ anP -ava -avP -awO -awO -awO -awO +gdc +vGE +siq +siq +siq +siq gab aOh -aWA -aXY +gAW +hVV aeE aeE -aGQ -dUz +vDY +ted aFz aFz aFz @@ -116398,44 +101300,44 @@ azP rAo aGh azW -aGg -aGX -aGR +uYg +qGs +kDj aFz -aAz -aAG +fRg +flF aJc -aAO +wjc aAX aBh aBf aBe -aKd +vqx aFz aFz vte aFz aFz aFz -aGI +gRx aeT aeT azT azT azT -tKQ -tKQ -tKQ -tKQ -akq -agK -agK -agK -iuk -agK -agK -agK -agK +tiq +tiq +tiq +tiq +lmW +eXo +eXo +eXo +vns +eXo +eXo +eXo +eXo dTs dTs azT @@ -116443,9 +101345,9 @@ azT azT azT azT -lrn -aCG -aCM +nWh +fef +muu dTs dTs dTs @@ -116462,71 +101364,71 @@ aNU aNU aoi aoi -bnA -aSH -bvz -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -ajW -bnA -awo -aCo -bnA -ajW -bnA -bnA -bnA -bnA -bnA -bnA -aHP -aHP -btR -bux -bnA -aHP -bnA -aTx -bnA -bnA -bnA -aSH -bvz -bYN -bXG -bqp -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -dTs -cup -cUc +teJ +aon +lPe +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +jPA +teJ +jfs +bwC +teJ +jPA +teJ +teJ +teJ +teJ +teJ +teJ +fly +fly +vwI +gap +teJ +fly +teJ +fSA +teJ +teJ +teJ +aon +lPe +pVi +saN +jhb +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +dTs +pHh +hAY cCH dWZ dpI crW -cUc -cko +hAY +vgx dap -daQ -heR -dbP -dds -dej +qcc +xVA +iDo +fLd +iqS dap dbN dgf @@ -116538,30 +101440,30 @@ dki dbN dbN dlB -dlR -dmf -dmQ +qkk +utH +faT dbL -cUc +hAY cCH dpI clZ crW -cUc +hAY tMy -aTO +uqt aUV aUt -aUb -smJ -aUb +vGl +gZh +vGl rVo aUt aUt -aUb -aUb -cTv -cTZ +vGl +vGl +mUY +jOn aQP dTs dTs @@ -116587,42 +101489,42 @@ acu dTs dTs akk -akn +rbK akK akK akK alR -amz -amz -amz -aiH -akj -amy -amz -amz -apj +fMJ +fMJ +fMJ +ujy +rMP +oQE +fMJ +fMJ +jCS anP -aqv -aoT -apI +ofw +pMx +ncS anP -aqv -aoT -apI +ofw +pMx +ncS anP aJd aJd -awO -aKc -awO -awO +siq +gqY +siq +siq gab -aPg +tmi cTE -aWz +wXa aeE aeE -aFU +jln aFz aFz aFz @@ -116636,48 +101538,48 @@ aFz aFz aFz aFz -aAA -aAH -aAI -aAP +tnt +taA +rjo +vvY aAN aBh aJc aJQ -aKd +vqx aFz aFz aFz aFz aBC -bfh -bfi +hjg +ngr aeT aeT azT azT -tKQ -tKQ -tKQ -tKQ -tKQ +tiq +tiq +tiq +tiq +tiq aBk -tKQ +tiq aBk -tKQ -tKQ +tiq +tiq aBk -tKQ -tKQ +tiq +tiq aBk dTs dTs -aBW -wyo -wyo -wyo +gXb +qGI +qGI +qGI iNF -sPS +voA dTs dTs dTs @@ -116688,52 +101590,52 @@ bLJ bLJ bLJ bLJ -ack -adM -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA -bnA -bnA -bnA -bnA -bXB -bul -aiP -aiP -aiP +oIO +mWR +teJ +teJ +teJ +teJ +teJ +teJ +teJ +aon +lPe +teJ +teJ +teJ +teJ +teJ +jNi +nmg +hWq +hWq +hWq aid aid -bul -bul -bul -bul -bul -bul -aiP -aiP -aiP -aiP +nmg +nmg +nmg +nmg +nmg +nmg +hWq +hWq +hWq +hWq aid aid -bul -bul -bul -bul -bul -bul -bul +nmg +nmg +nmg +nmg +nmg +nmg +nmg bzY -bvz -bYN -brj +lPe +pVi +gkB dTs dTs dTs @@ -116748,19 +101650,19 @@ dTs dTs dTs dTs -cUc +hAY cCH dXe der crW -cUc -cko +hAY +vgx dap -daQ -heR -heR -dbP -dbP +qcc +xVA +xVA +iDo +iDo dap dcx dgf @@ -116772,30 +101674,30 @@ pIe uGO dbL dbL -dlR -dmf -dlR +qkk +utH +qkk dgo -cUc +hAY cCH dpI clZ crW -cUc +hAY ydw -aTe +ijs aUX aUt -aUb -hRU -aUb +vGl +xos +vGl rVo cxL aUt -aUb -aUW -cTw -cUa +vGl +fen +mpA +dcd aQP dTs dTs @@ -116821,42 +101723,42 @@ acu dTs dTs akk -rqX +ics akK akK akK akK -amz -amz -amz -aoq -amz -amz -amz -amz -apj +fMJ +fMJ +fMJ +iAZ +fMJ +fMJ +fMJ +fMJ +jCS anP -aoA -aoS -apI +hJd +tpt +ncS anP -aoA -aoS -apI +hJd +tpt +ncS anP -ava -avP -awO -awV -awV -axf +gdc +vGE +siq +xbA +xbA +eWd gab -aPi -aSk -aRN +jcz +qpS +xgq ail aeE -aFU +jln aFz aFz aFz @@ -116871,42 +101773,42 @@ vte aFz aFz aFz -aAz -aAG +fRg +flF aJc -aAP -aBi +vvY +pVR aJc aJQ -aKd +vqx aFz aFz aFz aFz aFz -aGI +gRx aeT dTs dTs azT azT -tKQ -tKQ -tKQ -tKQ -dTs -tKQ -tKQ -tKQ +tiq +tiq +tiq +tiq +dTs +tiq +tiq +tiq aBk -tKQ -tKQ -tKQ +tiq +tiq +tiq aBk dTs dTs -aBW -rbp +gXb +fea ioA ioA ioA @@ -116917,56 +101819,56 @@ dTs dTs dTs dTs -aaO +wKF bLJ bLJ bLJ bLJ acr adN -bnA -bXB -bul -bul -bul -bul -bul +teJ +jNi +nmg +nmg +nmg +nmg +nmg bzY bzY -bul -bul -bul -bul -bul +nmg +nmg +nmg +nmg +nmg bzY aid -ajA -ajA -ajA -ajA -ajA -ajA -ajA -ajA -ajA -buh -buh -ajA -ajA -buh -buh -buh -buh -buh -buh -buh -buh +von +von +von +von +von +von +von +von +von +iGY +iGY +von +von +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY bzY bzY -buh -buh -aie -bWI +iGY +iGY +vQB +ehb dTs dTs dTs @@ -116982,19 +101884,19 @@ dTs dTs dTs dTs -cUc +hAY cCH dWZ dpI crW -cUc -cko +hAY +vgx dap -daQ -dbP -dbP -dbP -dek +qcc +iDo +iDo +iDo +jVw dap eeM eeR @@ -117002,34 +101904,34 @@ eeS eeS eeT dbL -dkj +uJb dbL dbL -dlE -dlR -dmf -dmP +wJA +qkk +utH +miF dgo -cUc +hAY cCH dpH cET kmr -cUc +hAY ydw -aTe +ijs aUY nYf -aUb -aUb -aUb +vGl +vGl +vGl rVo aUt aUt -aUb -aUb -aUb -cUa +vGl +vGl +vGl +dcd aQP dTs dTs @@ -117055,28 +101957,28 @@ acu dTs dTs akk -aly -alA -alB -alB +uoX +xqA +tjG +tjG alP -amB -amz -amz -amz -amz -amz -amz -amz -aFF +jqx +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +fMJ +jSF anP -aqx -aoT -apI +nrT +pMx +ncS anP -aqx -aoT -apI +nrT +pMx +ncS anP aJd aJd @@ -117085,13 +101987,13 @@ aJd aJd aJd gab -aan -ady +kuM +tCP aeE aeE aeE -bel -beM +qni +iay aFz aFz aFz @@ -117105,21 +102007,21 @@ aFz aFz aFz aFz -aAz -aAJ -aAI +fRg +qXc +rjo aJc aJc -aJf -aJH -aKd +wch +xFR +vqx aFz aFz aFz aFz aFz -aGg -aGs +uYg +nTF aeT dTs dTs @@ -117129,17 +102031,17 @@ dTs dTs dTs dTs -tKQ -tKQ -tKQ -gXr +tiq +tiq +tiq +uIM aBk aBs -tKQ +tiq dTs dTs dTs -uhf +udr ioA ioA ioA @@ -117151,56 +102053,56 @@ dTs dTs dTs aao -aaO +wKF bLJ bLJ bLJ bLJ acr adN -bnA -atc -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh -buh +teJ +mis +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY +iGY bzY -bvz -bnA -bnA -bnA -bnA -bnA -aHP -aHP -aHP -aHP -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -aeO -aeQ -aeQ -aiy +lPe +teJ +teJ +teJ +teJ +teJ +fly +fly +fly +fly +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +aon +lPe +svx +vET +vET +uRh dTs dTs dTs @@ -117216,54 +102118,54 @@ dTs dTs dTs dTs -cUc +hAY cCH clZ dpI crW -cUc -cko +hAY +vgx dap -daQ -dbP -dcz -ddu -dek +qcc +iDo +nSx +aKr +jVw dap -cYs +tHp dgh cnU cnU diR -eeU -dkk -cko +ftI +sWZ +vgx dbL -dlF -dlT -dmg -dmR +reW +qfr +oSE +wAx dbL -cUc +hAY cCH dpI clZ crW -cUc +hAY ydw -aTe +ijs aVa aUt -aUb -aUb -aUb +vGl +vGl +vGl aUt cxK aUt -aUb -aUb -aUb -cUd +vGl +vGl +vGl +wrt aQP dTs dTs @@ -117294,23 +102196,23 @@ akk akk akk akk -amx -amz -amz -anv -anq -amB -amz -anv -anM +hWi +fMJ +fMJ +suf +wWi +jqx +fMJ +suf +nEs anP -aqD -aqd -aqW +gEG +mGX +qNO anP -aqD -aqd -aqW +gEG +mGX +qNO anP dTs dTs @@ -117319,14 +102221,14 @@ dTs dTs dTs dTs -aam -aam -ady +jwB +jwB +tCP aeE aeE dTs -bel -beM +qni +iay aFz aFz aFz @@ -117339,21 +102241,21 @@ aFz aFz anu aFz -guK -aAK -aAJ -aKO -aKO -aJH -aJI -aJR +fQn +nXz +qXc +ovH +ovH +xFR +iZT +tOS vte aFz aFz aGF aFz -bfh -bfi +hjg +ngr aeT aeT aeT @@ -117373,8 +102275,8 @@ aBL dTs dTs dTs -aBO -aBR +kSx +mhS uKo uKo uKo @@ -117384,56 +102286,56 @@ dTs dTs dTs dTs -aap -aaW +lTQ +tjL abn bLJ bLJ bLJ -adp -adP -bnA -ate -awn -bnA -bnA -aPd -bnA -bnA -bnA -bnA -bnA -bnA -bnA -bnA -aSH -bvz -bnA -alw -amT -amT -amT -aLh -amT -amT -amT -aOZ -bnA -alw -amT -amT -amT -aLh -amT -amT -amT -aOZ -bnA -aSH -bvz -bYN +tjo +xmV +teJ +uQH +mrO +teJ +teJ +fDY +teJ +teJ +teJ +teJ +teJ +teJ +teJ +teJ +aon +lPe +teJ +sQO +fpy +fpy +fpy +uVF +fpy +fpy +fpy +huh +teJ +sQO +fpy +fpy +fpy +uVF +fpy +fpy +fpy +huh +teJ +aon +lPe +pVi bjV -bkP +lYR dTs dTs dTs @@ -117455,8 +102357,8 @@ cCH cpR der crW -cUc -cmc +hAY +tdT dap dap dap @@ -117464,40 +102366,40 @@ dap dap dap dap -dfw +pvj cCH clZ clZ crW -cko -dkk -cko +vgx +sWZ +vgx dbL dbL dbL dbL dbL dbL -dfw +pvj cCH dpI clZ crW -cUc +hAY tMy -aTN +srt aUt aUt -aUb -jtz -aUb +vGl +iBe +vGl aUt aUt aUt -aUb -aUb -bUb -cUv +vGl +vGl +ylc +fHx aQP dTs dTs @@ -117528,13 +102430,13 @@ dTs dTs dTs apW -amx -amz -amz -apj +hWi +fMJ +fMJ +jCS aas aas -awY +meF aas aas anP @@ -117552,15 +102454,15 @@ dTs dTs dTs dTs -aam -aam -aam -azA +jwB +jwB +jwB +fPk aeE aeE dTs dTs -aFU +jln vte aFz aFz @@ -117574,19 +102476,19 @@ aFz aFz aFz aFz -aAA -aAK -aAY -aJI -aKP -aJR +tnt +nXz +okY +iZT +kfO +tOS aFz aFz aFz aFz aFz vte -aGI +gRx aeT aeT aeT @@ -117599,7 +102501,7 @@ dTs dTs aBL qmy -qJU +xzT aBE aBE aCk @@ -117616,56 +102518,56 @@ dTs dTs dTs dTs -mnc -mnc -aaD +sEd +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ bLJ -adQ -adS +tsB +hOf ael -aeI -bnA -aOm -aPk -aPk -aPk -aPk -aPk -aPk -aPk -ahy -bnA -aSH -bvz -bnA -alx -ano -atA -aMl -aMx -aMx -aOd -aPl -aPf -bnA -alx -ano -aRJ -aTa -aUT -aUT -aWI -aPl -aPf -bnA -aSH -bvz -bYN +nVB +teJ +ipP +nfC +nfC +nfC +nfC +nfC +nfC +nfC +qRs +teJ +aon +lPe +teJ +aQA +ilV +ogf +xci +lrK +lrK +xJQ +iNY +tBG +teJ +aQA +ilV +oto +jlB +oXS +oXS +nTb +iNY +tBG +teJ +aon +lPe +pVi bjV dTs dTs @@ -117689,8 +102591,8 @@ cCH clZ dpI crW -cUc -clW +hAY +gXA cmH cmH cmH @@ -117698,39 +102600,39 @@ cmH cmH cmH cmH -cBJ +uxX cCH clZ clZ crY clY dkl -dkN +thH cmH cmH cPz csb cmH cmH -cBJ +uxX hIO dpH cET crW -cUc +hAY ydw -aTe +ijs aVb aUt -aUb -aUb -aUb -aUb -aUb -aUW -aUb -aUb -cTg +vGl +vGl +vGl +vGl +vGl +fen +vGl +vGl +kNh aQP aQP dTs @@ -117762,14 +102664,14 @@ dTs dTs dTs aas -anx -anC -anC -aqZ +erx +khU +khU +xSx aas -atJ -aus -axA +cUS +shO +tZd aas dTs dTs @@ -117787,14 +102689,14 @@ dTs dTs dTs aRv -abW -aje +gqH +pDo adc adc aRv dTs aeT -aFU +jln azE aFz aFz @@ -117809,9 +102711,9 @@ aFz aFz aJT aFz -aAA -aKP -aJR +tnt +kfO +tOS aFz aFz aFz @@ -117820,8 +102722,8 @@ aFz aFz aFz aFz -aGg -aGs +uYg +nTF aeT aeT aeT @@ -117833,15 +102735,15 @@ dTs dTs gGC aBU -qJU +xzT aBE aBE aAv aCk dTs dTs -iwy -gIS +qsp +daZ ndP ndP ndP @@ -117849,22 +102751,22 @@ ndP aBL dTs dTs -mnc +sEd aCk -mnc -aaD +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ bLJ bLJ -adp -aey -aeJ -bnA -aOo +tjo +keX +rch +teJ +xgp aeV aeV aeV @@ -117873,34 +102775,34 @@ aeV aeV aeV ahA -bnA -aSH -bvz -bnA -alx -atA -aMl -aMx -aMx -aMx -aMx -aOD -aPf -bnA -alx -aRJ -aTa -aUT -aUT -aUT -aUT -aXl -aPf -bnA -aSH -bvz -bYN -bkP +teJ +aon +lPe +teJ +aQA +ogf +xci +lrK +lrK +lrK +lrK +fAf +tBG +teJ +aQA +oto +jlB +oXS +oXS +oXS +oXS +xim +tBG +teJ +aon +lPe +pVi +lYR dTs dTs dTs @@ -117923,48 +102825,48 @@ cCH clZ dpI crW -cUc -dIf -cmX -cmX -cmX -cmX -cmX -cmX -cmX -dfx +hAY +mri +kxQ +kxQ +kxQ +kxQ +kxQ +kxQ +kxQ +vgM cCH clZ clZ clZ clZ dkm -cta +moP cmH cmH cmH cmH cmH cmH -cBJ +uxX cCH dpI clZ crW -cUc +hAY ydw -aTe +ijs aVa aUt -aUb -aUW -aUb -aUb -aUb -aUb -aUb -aUb -cTA +vGl +fen +vGl +vGl +vGl +vGl +vGl +vGl +cWI aQP dTs dTs @@ -117996,14 +102898,14 @@ dTs dTs dTs aas -any -app -app -arq +kyD +sDg +sDg +nQf aas -atK -aAV -axA +huG +xrV +tZd aas dTs dTs @@ -118021,14 +102923,14 @@ dTs dTs dTs dTs -acY -bAw +iBq +vmi add add add aRv aeT -aFU +jln aFz aFz aFz @@ -118054,8 +102956,8 @@ aFz aFz aFz aFz -bfh -bfi +hjg +ngr aeT aeT aeT @@ -118067,7 +102969,7 @@ dTs dTs aBL tMi -qJU +xzT aBE aBE aAv @@ -118075,20 +102977,20 @@ aCk dTs aBL aBE -hQM -iwy -iwy -iwy +vYe +qsp +qsp +qsp aCk aBL dTs ufW -mnc -mnc -mnc -aaD +sEd +sEd +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ @@ -118098,7 +103000,7 @@ bLJ bLJ bUN aeV -aOq +rOW afL agJ aeV @@ -118107,34 +103009,34 @@ avT avT agJ ahA -bnA -aSH -bvz -bnA -alx -awU -aMx -aMx -aMx -aMx -aMx -aMx -aPf -bnA -alx -aSh -aUT -aUT -aUT -aYQ -aUT -aUT -aPf -bnA -atc -aie -bYN -brj +teJ +aon +lPe +teJ +aQA +qPb +lrK +lrK +lrK +lrK +lrK +lrK +tBG +teJ +aQA +pIV +oXS +oXS +oXS +eNy +oXS +oXS +tBG +teJ +mis +vQB +pVi +gkB dTs dTs dTs @@ -118157,48 +103059,48 @@ cCH cpR der crW -cmU -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvx +iSf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +xmw cCH clZ clZ clZ clZ dkm -cGJ -cpX -cpX -cpX -cpX -cpX -cpX -cSl +rFV +ukv +ukv +ukv +ukv +ukv +ukv +oCh cCH dpI clZ crW -cUc +hAY ydw -aTe +ijs aUX aUt aUt -aUb -aUb +vGl +vGl aUt -cyt -cyt +dxE +dxE aUt aUt -cTR +jTs aQP dTs dTs @@ -118230,14 +103132,14 @@ dTs dTs dTs aas -any -app -app -arq -asv -aus -aus -axA +kyD +sDg +sDg +nQf +dWv +shO +shO +tZd aas dTs dTs @@ -118256,13 +103158,13 @@ dTs dTs dTs dTs -bAw +vmi add add -bHG -aje +vdz +pDo aeT -aFU +jln aFz aFz aFz @@ -118301,15 +103203,15 @@ dTs dTs tMi aCk -gKn +fEg aBE aBE aAv aCk aCk -qJU -azB -xBM +xzT +kbC +nwb aBE aBE nCi @@ -118317,12 +103219,12 @@ dTs dTs dTs ufW -mnc -mnc -mnc -aaD +sEd +sEd +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ @@ -118332,7 +103234,7 @@ bLJ bLJ bUN aeV -aOq +rOW agl bUN aeV @@ -118341,33 +103243,33 @@ bLJ bLJ bUN ahA -bnA -aSH -bvz -bnA -alY -awU -aMx -aMx -aOl -aMx -aMx -aMx -aPf -bnA -alY -aSh -aUT -aUT -aUT -aUT -aUT -aUT -byV -aeQ -aeQ -aeQ -bFd +teJ +aon +lPe +teJ +oRD +qPb +lrK +lrK +jGi +lrK +lrK +lrK +tBG +teJ +oRD +pIV +oXS +oXS +oXS +oXS +oXS +oXS +eru +vET +vET +vET +nCN dTs dTs dTs @@ -118419,20 +103321,20 @@ coZ dpH cET crW -cUc +hAY tMy -aTS -aVc -aVA -bvu -pHU -pHU -xYb -aVA -aVc -aVc -cPC -cTS +dmA +oyt +vxe +rHe +gxU +gxU +ixl +vxe +oyt +oyt +nAF +mqF aQP dTs dTs @@ -118464,14 +103366,14 @@ dTs dTs dTs aas -any -aiM -app -arq +kyD +kuB +sDg +nQf asw -atJ -aus -axA +cUS +shO +tZd aas dTs dTs @@ -118489,22 +103391,22 @@ dTs dTs dTs dTs -acY -bAw +iBq +vmi add -bHG -acY -aje +vdz +iBq +pDo aeT -aFU +jln aFz aFz aFz aFz aFz aFz -bfh -beM +hjg +iay aFz aFz aAw @@ -118532,19 +103434,19 @@ aeT aeT aeT dTs -vYZ -iwy -iwy -ayC +lgz +qsp +qsp +gyy aCk aBE -hQM -iwy -iwy -ayC +vYe +qsp +qsp +gyy azC uGL -azB +kbC aBE dTs dTs @@ -118552,11 +103454,11 @@ dTs dTs dTs aCk -mnc -mnc -aaD +sEd +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ @@ -118566,7 +103468,7 @@ bLJ bLJ bUN aeV -aOq +rOW ags ahv aeV @@ -118575,32 +103477,32 @@ awm awm ahv ahA -bnA -aSH -bvz -bnA -alx -awU -aMx -aMx -aMx -aMx -aMx -aMx -aPf -bnA -alx -aSh -aUT -aUT -aUT -aUT -aUT -aUT -byW +teJ +aon +lPe +teJ +aQA +qPb +lrK +lrK +lrK +lrK +lrK +lrK +tBG +teJ +aQA +pIV +oXS +oXS +oXS +oXS +oXS +oXS +cyO bjV -bkP -bkm +lYR +gLa dTs dTs dTs @@ -118653,14 +103555,14 @@ cma cUb clZ crW -cWv +qMy tMy aQP aQP aQP bvv -aUb -bEb +vGl +vHg bvv aQP aQP @@ -118698,14 +103600,14 @@ dTs dTs dTs aas -any -app -app -arq -ata -avl -aus -axA +kyD +sDg +sDg +nQf +wgX +mON +shO +tZd aas dTs dTs @@ -118724,27 +103626,27 @@ dTs dTs dTs dTs -bAw +vmi add bIK -acY -aje +iBq +pDo dTs -bel -beM +qni +iay aFz aFz aFz aFz -bfh +hjg dTs dTs -beB -beM +oqC +iay aGv aFz -bfh -aAL +hjg +osj aFz dTs dTs @@ -118781,26 +103683,26 @@ aBL aCk aBE aAv -aBS +pQL aBL dTs aBE ooQ aCk -mnc -aaD +sEd +rqw aao -aaO +wKF bLJ bLJ bLJ bLJ bLJ bLJ -ack -aeK -bnA -aOo +oIO +miE +teJ +xgp aeV aeV aeV @@ -118809,31 +103711,31 @@ aeV aeV aeV ahA -bnA -atc -aie -bnA -amh -aFg -aMs -aMx -aMx -aMx -aMx -aPm -aPf -bnA -aQL -aSZ -aTb -aUT -aUT -aUT -aUT -aZi -bAY +teJ +mis +vQB +teJ +kEb +xJn +grM +lrK +lrK +lrK +lrK +sBj +tBG +teJ +uDs +oyj +ejs +oXS +oXS +oXS +oXS +cre +xjU bjV -brj +gkB dTs dTs dTs @@ -118887,16 +103789,16 @@ clZ clZ clZ crW -cWV +cIj xOb xec aVd -gxR -bvw -blc -blc -bYO -cyw +gfS +jPt +qKS +qKS +mYg +mCO aVd dTs dTs @@ -118932,14 +103834,14 @@ dTs dTs dTs aas -any -app -app -arq +kyD +sDg +sDg +nQf asw -avo -axy -oZM +vEF +jeD +uBY aas dTs dTs @@ -118958,14 +103860,14 @@ dTs dTs dTs dTs -bAw +vmi add bIK -acY +iBq aRv dTs dTs -aFU +jln aFz aFz vte @@ -118975,11 +103877,11 @@ dTs dTs dTs dTs -beM -bfh -bfi -bel -beB +iay +hjg +ngr +qni +oqC dTs dTs dTs @@ -119005,11 +103907,11 @@ uVK aBE azC obv -qjg -azB -azB -azB -xBM +uMv +kbC +kbC +kbC +nwb aBE aBE aBE @@ -119020,54 +103922,54 @@ aCk aCk aBE aBE -mnc -mnc -aaD +sEd +sEd +rqw aao -aaW +tjL abn bLJ bLJ bLJ bLJ -ack -adU +oIO +kpI adN -bnA -aeP -afM -afM -afM -afM -afM -afM -afM -ahQ -aeO -aeQ -aiy -bnA -ami -aMr -aMY -aMs -aMx -aMx -aOv -aRW -aPf -bnA -aQM -aTB -aTc -aTb -aUT -aUT -aWJ -aRW -byW +teJ +owd +rWZ +rWZ +rWZ +rWZ +rWZ +rWZ +rWZ +don +svx +vET +uRh +teJ +dau +nHL +wPT +grM +lrK +lrK +koE +kQY +tBG +teJ +ejZ +pwA +bEt +ejs +oXS +oXS +kAI +kQY +cyO bjV -brj +gkB dTs dTs dTs @@ -119121,16 +104023,16 @@ cmb cmb meN cXx -cFE -eYP +mVr +ygK cmH aVe -bem +pgv bvx -blc -vqS +qKS +mvQ bvx -cyx +kbN aVd dTs dTs @@ -119166,10 +104068,10 @@ dTs dTs dTs oYa -anz -tEn -tEn -arz +mZS +tmZ +tmZ +rnd oYa oYa oYa @@ -119191,26 +104093,26 @@ dTs dTs dTs dTs -acY -bAw +iBq +vmi add bNu -acY +iBq dTs dTs dTs dTs -beB -beM +oqC +iay aFz -bfh -bfi +hjg +ngr dTs dTs dTs dTs dTs -bfi +ngr aeT aeT dTs @@ -119243,64 +104145,64 @@ aAv hoc gCS rQQ -qJU +xzT ooQ aCk aBE aBE teR -aBS +pQL aCk aBE aCk aCk aCk -mnc -aaI -aap +sEd +opm +lTQ aao -aaO +wKF bLJ bLJ bLJ -ack -adU -adX -aeN -aeO -aeQ -aMH -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -aeQ -ahX -bkP +oIO +kpI +fhg +wkP +svx +vET +qlv +vET +vET +vET +vET +vET +vET +vET +iCG +lYR dTs dTs -amO -atu -azr -aGm -aMZ -aNa -aOp -aNa -aPh -aeQ -aQN -aYR -bpr -azr -buv -aNa -aOp -aNa -bAZ -bkP +mMX +nZl +reK +ifQ +xqz +eiJ +tqP +eiJ +iiX +vET +nLe +frK +lwZ +reK +nrf +eiJ +tqP +eiJ +vkP +lYR dTs dTs dTs @@ -119325,46 +104227,46 @@ dTs dTs dTs dTs -dak -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn -cvn +kGM +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf +lBf cto -qlx +fDw cmH aVe -bem +pgv bvx -blc -blc +qKS +qKS bvx -cyx +kbN aVd dTs dTs @@ -119398,14 +104300,14 @@ dTs dTs dTs dTs -aaq +xTi aat -anA -apJ -aqp -arA +scL +jcN +xDH +uyI aat -avu +jCa dTs dTs dTs @@ -119425,20 +104327,20 @@ dTs dTs dTs dTs -acY -bAw +iBq +vmi add bIK -acY +iBq dTs dTs dTs dTs dTs -bel -beB -bfi -cdX +qni +oqC +ngr +psx dTs dTs dTs @@ -119475,43 +104377,43 @@ aBE aBE aAv rCp -mth +bWl fgo -qJU +xzT aCk aBL aBL aBE aaG -rgT +dHC aBL dTs dTs dTs ufW dTs -aaK -aaD +rom +rqw aao -aaO +wKF bLJ bLJ bLJ acr -adX -aeF -ccR -bYN -bkP -dTs -bkm -blt +fhg +llq +jFo +pVi +lYR +dTs +gLa +eNN bjV bjV bjV bjV -bkP -bkm +lYR +gLa dTs dTs dTs @@ -119519,22 +104421,22 @@ dTs dTs dTs dTs -bkm -bkm -blt +gLa +gLa +eNN bjV -bkP -bkm -blt -bkP +lYR +gLa +eNN +lYR dTs dTs dTs -bkm -blt +gLa +eNN bjV bjV -brj +gkB dTs dTs dTs @@ -119562,43 +104464,43 @@ dTs dTs dTs dTs -cmc -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -dEP -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cpY -cVM -iRU -cmX +tdT +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vet +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +vdZ +urL +hkl +kxQ aVf -blb +eRf bvx -blc -blc +qKS +qKS bvx -cza +sAJ aVd dTs dTs @@ -119632,14 +104534,14 @@ dTs dTs dTs dTs -aaq +xTi aat aat aat aat aat atb -aRx +hGf dTs dTs dTs @@ -119653,17 +104555,17 @@ dTs dTs dTs dTs -acY -kQd +iBq +pNM dTs dTs dTs -acY -acY -bHE +iBq +iBq +cXV add bIK -acY +iBq dTs dTs dTs @@ -119673,7 +104575,7 @@ dTs add add bIK -acY +iBq dTs dTs dTs @@ -119704,18 +104606,18 @@ aBE aBL hAv aCk -qjg -azB +uMv +kbC aBE aAv hnJ hpL mkU -qJU +xzT aBE -qjg -azB -azB +uMv +kbC +kbC aBL aBL aBL @@ -119725,26 +104627,26 @@ dTs dTs dTs dTs -aaD +rqw aao -aaO +wKF bLJ bLJ bLJ acr aeb -aOu -ccR -bWI +nYk +jFo +ehb dTs dTs dTs -bkb -blt +eut +eNN bjV -bkP -bkm -bqp +lYR +gLa +jhb dTs dTs dTs @@ -119755,9 +104657,9 @@ dTs dTs dTs dTs -bkb -bkm -bqp +eut +gLa +jhb dTs dTs dTs @@ -119765,9 +104667,9 @@ dTs dTs dTs dTs -bkb -bkm -bkm +eut +gLa +gLa dTs dTs dTs @@ -119823,16 +104725,16 @@ cmH cmH cmH dIi -cWN +evL lfM -lPn -aVu -blc -blc -blc -blc +vBu +fiu +qKS +qKS +qKS +qKS bvx -czh +juX aVd dTs dTs @@ -119874,7 +104776,7 @@ aiN aat aat aat -axz +unS dTs dTs dTs @@ -119885,19 +104787,19 @@ dTs dTs dTs dTs -acY -acY -acY -acY -acY -acY -bFc -bFc -bHE +iBq +iBq +iBq +iBq +iBq +iBq +qZJ +qZJ +cXV add add bIK -acY +iBq dTs dTs dTs @@ -119907,7 +104809,7 @@ dTs add add bIK -acY +iBq dTs dTs dTs @@ -119936,16 +104838,16 @@ aBE aBE dTs aBL -kAJ -ays +nat +tIy aAv azC kOR -hQM -iwy -iwy -iwy -ayC +vYe +qsp +qsp +qsp +gyy aBE aAv aBL @@ -119960,23 +104862,23 @@ dTs dTs dTs dTs -abu -abJ +rQF +qOv bLJ bLJ bLJ acr aeb -aOu +nYk dTs dTs dTs dTs dTs akP -bkb -bkm -bqp +eut +gLa +jhb dTs dTs dTs @@ -120057,16 +104959,16 @@ dTs dTs dTs dTs -cWP +ruP aTs -aTL -blc -blc -blc -blc -blc +aYO +qKS +qKS +qKS +qKS +qKS bvx -czn +sXg aVd dTs dTs @@ -120101,30 +105003,30 @@ dTs dTs dTs dTs -aax -aax +fGd +fGd apL aat aat aat aat -avu +jCa dTs add add add -bGp -acY +wua +iBq dTs dTs dTs -acY -acY -acY -bFc -bFc -bFc -bHE +iBq +iBq +iBq +qZJ +qZJ +qZJ +cXV add cjc add @@ -120141,7 +105043,7 @@ dTs add add bIK -acY +iBq dTs dTs dTs @@ -120169,9 +105071,9 @@ ooQ aBE dTs dTs -aBS -uso -ays +pQL +ewz +tIy aCk aBL aBL @@ -120199,7 +105101,7 @@ bLJ bLJ bLJ bLJ -adp +tjo dTs dTs dTs @@ -120293,14 +105195,14 @@ dTs dTs dTs aTz -aUo +kvm aVd -bmQ +oDS bvx bvx bvx bvx -cCW +eKn aVd dTs dTs @@ -120338,23 +105240,23 @@ dTs aay aay apM -aax +fGd apL aat aat -avu +jCa add add add add add -bGp -bFc +wua +qZJ dTs -bFc -bFc -bFc -bHE +qZJ +qZJ +qZJ +cXV cjc add add @@ -120363,19 +105265,19 @@ add add add add -bHG -acY +vdz +iBq dTs dTs dTs dTs dTs dTs -bAw +vmi add add bIK -acY +iBq dTs dTs dTs @@ -120404,17 +105306,17 @@ dTs dTs dTs aBL -ekg -ayC +oav +gyy aCk slX aBL -azB -xBM +kbC +nwb aBE aBE aCk -qjg +uMv aBL aBL dTs @@ -120529,12 +105431,12 @@ dTs dTs cmH aVe -bnw -bzT -lei -bFD -caj -crV +rvU +jiv +vxv +xJo +byk +qWn aVd dTs dTs @@ -120570,13 +105472,13 @@ dTs dTs dTs dTs -anB +oSl aay aay aqo aat aat -avu +jCa cjc add add @@ -120593,9 +105495,9 @@ add add add add -bHG -btE -btE +vdz +wss +wss dTs dTs dTs @@ -120605,11 +105507,11 @@ dTs dTs dTs dTs -bAw +vmi add cjc bIK -acY +iBq dTs dTs dTs @@ -120639,18 +105541,18 @@ dTs dTs dTs aBL -azB -azB -xBM +kbC +kbC +nwb aAv aCk -qJU +xzT aBE aBE aBE aAv -ivs -aBS +lMv +pQL dTs dTs dTs @@ -120763,11 +105665,11 @@ dTs dTs dTs aVe -bnw -bBM -bzT -bBM -clA +rvU +oMf +jiv +oMf +lcH aVd aVd dTs @@ -120808,26 +105710,26 @@ ajf aay aay ass -atd +sBq aat -aRx -aRw -bGp +hGf +nvS +wua add add adD add -bHG -btE -btE -btE -bym +vdz +wss +wss +wss +fsX add add add add -bHG -acY +vdz +iBq dTs dTs dTs @@ -120837,9 +105739,9 @@ dTs dTs dTs dTs -acY -acY -bAw +iBq +iBq +vmi add add bIK @@ -120873,9 +105775,9 @@ dTs dTs aBL aBL -ayH -ayH -qJU +iLB +iLB +xzT aAv aCk aCk @@ -120885,7 +105787,7 @@ aBE aBL aBL aBU -aBV +gML dTs dTs dTs @@ -120997,11 +105899,11 @@ dTs dTs dTs aVd -bop -bBR -bBR -bGt -crV +gOV +kWG +kWG +iGl +qWn aVd dTs dTs @@ -121040,21 +105942,21 @@ dTs dTs ajf aay -apN -aqX -aqY +khA +kbq +iEa aat aat -aKX -aRT -aRV +led +hyi +wlH add add -bHG -acY -acY -acY -acY +vdz +iBq +iBq +iBq +iBq dTs add add @@ -121068,12 +105970,12 @@ dTs dTs dTs dTs -acY +iBq dTs dTs -acY -acY -bAw +iBq +iBq +vmi add add bIK @@ -121105,10 +106007,10 @@ dTs aBE aBE aBL -axw -xmH -ayH -fFw +gJx +mwl +iLB +hhu dTs dTs aBE @@ -121117,9 +106019,9 @@ aBE aBE aBE aAv -aBS -aBV -aBV +pQL +gML +gML aBL dTs dTs @@ -121271,43 +106173,43 @@ dTs dTs dTs dTs -aaz -amJ +fmf +eqc aay aqq -ast +vcg aat aat aat aat aat -aRx -aRw +hGf +nvS add -bGp -bFc +wua +qZJ dTs dTs dTs dTs -btE -chl +wss +tbN add add bIK -bDy +fbM dTs dTs -acY -acY -acY +iBq +iBq +iBq dTs -acY -acY +iBq +iBq aRv -acY -bFc -bHE +iBq +qZJ +cXV add add dTs @@ -121338,21 +106240,21 @@ dTs dTs dTs aBE -xmH -xmH +mwl +mwl rfm -xmH +mwl dTs dTs dTs -azB -xBM +kbC +nwb aBL dTs dTs dTs -ayH -nyR +iLB +dYt aBU aBL dTs @@ -121507,43 +106409,43 @@ dTs aar ajf aay -apN -aqX -aqY +khA +kbq +iEa atf aat aat aat aat aat -aRx -aRT -aRw +hGf +hyi +nvS dTs dTs dTs dTs dTs -acY -bAw +iBq +vmi add add -bGp -bFc +wua +qZJ add -bGp -bFc -bFc -bHE -bFc -acY -acY -abW -bHE +wua +qZJ +qZJ +cXV +qZJ +iBq +iBq +gqH +cXV add adD -bHG -btE +vdz +wss dTs dTs dTs @@ -121574,20 +106476,20 @@ dTs dTs dTs dTs -gpZ -mHf +sbx +ntx dTs dTs rvd -ayH +iLB trZ dTs dTs dTs dTs -qLD +lTJ aBU -glD +eNR aBL dTs dTs @@ -121742,7 +106644,7 @@ aar ajf aay apR -aqY +iEa asu aat aat @@ -121752,32 +106654,32 @@ aat aat aat aat -avu +jCa dTs dTs dTs dTs dTs dTs -bAw +vmi add add add add add -btE +wss add add add add -bFc -bFc -ajD +qZJ +qZJ +wIc add add add bIK -acY +iBq dTs dTs dTs @@ -121808,19 +106710,19 @@ dTs dTs dTs aBU -aBS -aBS +pQL +pQL aCk -aBS -ayH -ayH +pQL +iLB +iLB aBL dTs dTs aBL -pNG -aBV -ivQ +nfO +gML +mkn aBL aBL dTs @@ -121973,7 +106875,7 @@ dTs dTs dTs dTs -amJ +eqc aay aqo aat @@ -121985,8 +106887,8 @@ aat aat aat aat -axz -axC +unS +eVC dTs dTs dTs @@ -121994,24 +106896,24 @@ dTs dTs dTs dTs -btE -bym +wss +fsX add add aal -acY -bAw -btE -btE -btE -btE -btE +iBq +vmi +wss +wss +wss +wss +wss adc add add add bIK -acY +iBq dTs dTs dTs @@ -122041,20 +106943,20 @@ dTs dTs dTs aBL -nYz -ayH -aBV +hNv +iLB +gML aBU aCk -ayH +iLB nFh aBL dTs dTs aBL -duR -xUU -duR +veI +pEz +veI aBL dTs dTs @@ -122219,7 +107121,7 @@ dTs dTs dTs aat -avu +jCa dTs dTs dTs @@ -122228,18 +107130,18 @@ dTs dTs dTs dTs -acY -bAw +iBq +vmi add add bIK -acY -acY -acY -acY +iBq +iBq +iBq +iBq dTs -acY -acY +iBq +iBq aRv add add @@ -122275,7 +107177,7 @@ dTs dTs dTs gGC -qLT +pCB dTs aBL aBL diff --git a/maps/map_files/DesertDam/greenriver/newbridge.dmm b/maps/map_files/DesertDam/greenriver/newbridge.dmm index 37803b89f4..6ac5ae0003 100644 --- a/maps/map_files/DesertDam/greenriver/newbridge.dmm +++ b/maps/map_files/DesertDam/greenriver/newbridge.dmm @@ -1,157 +1,43 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ab" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_east) -"ac" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) "ad" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"af" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1{ - icon_state = "shore1"; - dir = 1 - }, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"ag" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_bridge) -"ah" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_bridge) -"ai" = ( +"ae" = ( /obj/structure/platform{ - dir = 1 + dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) -"aj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ak" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) -"al" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, +"ai" = ( +/turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_bridge) +"aj" = ( +/turf/closed/wall/rock/orange, +/area/desert_dam/exterior/rock) "an" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/river/riverside_east) -"ap" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep/covered, -/area/desert_dam/exterior/river/riverside_east) -"aq" = ( -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"ar" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"as" = ( -/obj/structure/stairs{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_medical) -"at" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"au" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) "av" = ( /obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 +/obj/structure/platform{ + dir = 4 }, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"ax" = ( +"aw" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, +/turf/open/gm/river/desert/deep/covered, /area/desert_dam/exterior/river/riverside_east) "ay" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"az" = ( /obj/structure/platform{ dir = 1 }, @@ -161,528 +47,529 @@ }, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_east) -"aA" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_bridge) -"aD" = ( -/obj/structure/platform, -/obj/effect/blocker/toxic_water/Group_2, +"aC" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, -/area/desert_dam/exterior/river/riverside_east) -"aE" = ( /obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_east) -"aF" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_east) -"aG" = ( -/obj/structure/platform_decoration, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"aH" = ( -/obj/structure/platform, +"aD" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_corner/covered, /area/desert_dam/exterior/river/riverside_east) "aI" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 8 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 - }, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) "aJ" = ( -/turf/closed/wall/rock/orange, -/area/desert_dam/exterior/rock) -"aK" = ( -/obj/structure/platform_decoration, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_east) "aM" = ( -/obj/structure/platform{ - dir = 1 - }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aN" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; - dir = 4 - }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 9 - }, +/turf/open/desert/desert_shore/shore_corner2, /area/desert_dam/exterior/river/riverside_east) "aO" = ( -/turf/open/desert/dirt, -/area/desert_dam/exterior/valley/valley_bridge) +/obj/effect/blocker/toxic_water/Group_2, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_east) "aP" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform_decoration, /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aQ" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aR" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_east) "aS" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 1 - }, -/area/desert_dam/exterior/river/riverside_east) -"aT" = ( -/obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform, /obj/structure/platform{ dir = 8 }, /turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) +"aT" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, +/area/desert_dam/exterior/river/riverside_east) "aU" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_east) "aV" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_east) "aW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"aX" = ( +/obj/structure/platform{ + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1, +/area/desert_dam/exterior/river/riverside_east) +"bf" = ( +/turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"aX" = ( +"bm" = ( +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"jl" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_bridge) +"lx" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_corner/north, +/area/desert_dam/exterior/river/riverside_east) +"mC" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" + dir = 1 }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_bridge) -"aY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" +"nC" = ( +/obj/structure/platform{ + dir = 1 }, -/area/desert_dam/exterior/valley/valley_bridge) -"aZ" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner/covered, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"ba" = ( -/obj/structure/platform, +"oh" = ( /obj/effect/blocker/toxic_water/Group_2, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_east) -"bc" = ( +"sW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"tk" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/deep, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) -"bd" = ( +"uu" = ( +/obj/effect/decal/sand_overlay/sand1/corner1, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"wh" = ( +/obj/structure/platform_decoration, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"wZ" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"xf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_bridge) +"xU" = ( /obj/effect/blocker/toxic_water/Group_2, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/deep, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) -"be" = ( -/obj/structure/platform{ +"zv" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_bridge) +"EQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"FF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"GJ" = ( +/obj/structure/platform, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"GY" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_corner, -/area/desert_dam/exterior/river/riverside_east) -"bf" = ( -/obj/effect/blocker/toxic_water/Group_2, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_bridge) +"HC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_bridge) +"HJ" = ( +/obj/structure/stairs{ + dir = 1 + }, /obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/deep, -/area/desert_dam/exterior/river/riverside_east) -"bg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"Iw" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_east) -"bh" = ( +"Ko" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"Kz" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_east) -"bi" = ( -/obj/effect/blocker/toxic_water/Group_2, -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow, +"KC" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"bj" = ( +"KG" = ( +/obj/structure/platform{ + dir = 1 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_east) -"bk" = ( +"LQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_bridge) +"Mv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/shore_edge1, +/turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_east) -"bl" = ( -/obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, +"MU" = ( +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/river/riverside_east) -"bm" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_bridge) -"bn" = ( -/obj/structure/stairs{ +"NM" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_bridge) +"OH" = ( +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_medical) -"bo" = ( -/obj/structure/platform{ +"OV" = ( +/obj/structure/platform_decoration{ dir = 4 }, /obj/effect/blocker/toxic_water/Group_2, -/turf/open/desert/desert_shore/desert_shore1, -/area/desert_dam/exterior/river/riverside_east) -"bp" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_bridge) -"bq" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/gm/river/desert/shallow_edge/northwest, /area/desert_dam/exterior/river/riverside_east) -"br" = ( -/obj/structure/platform, -/turf/open/asphalt/cement_sunbleached, +"Pb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) -"bs" = ( -/obj/structure/platform, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +"PN" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_east) -"bu" = ( +"Qx" = ( /obj/structure/platform_decoration{ - icon_state = "platform_deco"; - dir = 1 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" + dir = 4 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/west, /area/desert_dam/exterior/river/riverside_east) -"bw" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" +"Rp" = ( +/obj/structure/stairs{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_bridge) -"by" = ( +/obj/structure/platform, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"SS" = ( /obj/structure/stairs{ dir = 1 }, /obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/desert_dam/exterior/valley/valley_medical) -"bz" = ( -/obj/structure/stairs{ +"Tn" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/desert_dam/exterior/river/riverside_east) +"Tx" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/river/riverside_east) +"TI" = ( +/obj/structure/platform{ dir = 1 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_east) +"TN" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_bridge) +"TT" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" +/obj/structure/platform{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_medical) -"bA" = ( /obj/effect/blocker/toxic_water/Group_2, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 +/turf/open/desert/desert_shore/shore_corner2/north, +/area/desert_dam/exterior/river/riverside_east) +"TY" = ( +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/desert_dam/exterior/river/riverside_east) +"Ze" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/blocker/toxic_water/Group_2, +/turf/open/desert/desert_shore/shore_corner2/north, /area/desert_dam/exterior/river/riverside_east) (1,1,1) = {" -bm -aM -aR -bc -bc -bc -ad -bg -bh -bk -bq -bs -aa +TN +Ze +Iw +ad +ad +ad +Kz +PN +aN +aV +MU +GJ +OH "} (2,1,1) = {" -aI -aN -aS -bc -bc -bc -bc -bj -bi -bl -bq -bs -aa +TT +OV +lx +ad +ad +ad +ad +aM +aO +aW +MU +GJ +OH "} (3,1,1) = {" -aF -aS -bc -bc -bc -bc -bc -ad -bg -bl -bq -bs -aa +Qx +lx +ad +ad +ad +ad +ad +Kz +PN +aW +MU +GJ +OH "} (4,1,1) = {" -bc -bc -bc -bc -bc -bc -bc -bc -bj -bl -bq -bs -aa +ad +ad +ad +ad +ad +ad +ad +ad +aM +aW +MU +GJ +OH "} (5,1,1) = {" -bc -bc -bc -bc -bc -bc -bc -bc -bj -bl -bq -bu -by +ad +ad +ad +ad +ad +ad +ad +ad +aM +aW +MU +KC +SS "} (6,1,1) = {" -be -aQ -aV -bc -bc -bc -bc -bc -aK -bo +ae an -aG -bz +Mv +ad +ad +ad +ad +ad +aP +aX +Tx +wh +HJ "} (7,1,1) = {" -bm -bm -aP -bf -bf -bf -bf -bf -ba -aa -bn -as -aa +TN +TN +av +aC +aC +aC +aC +aC +aQ +OH +wZ +Rp +OH "} (8,1,1) = {" -bp -aY -ap -ap -ap -ap -ap -ap -aU -au -aq -br -aa +xf +zv +aw +aw +aw +aw +aw +aw +aR +Pb +bf +bm +OH "} (9,1,1) = {" -ag -aA -bA -aZ -ap -ap -ap -ap -aU -ay -aq -br -aa +LQ +jl +oh +aD +aw +aw +aw +aw +aR +EQ +bf +bm +OH "} (10,1,1) = {" -bw -al -az -ac -bd -bd -bd -bd -aT -aa -aW -br -aa +NM +GY +ay +xU +aI +aI +aI +aI +aS +OH +FF +bm +OH "} (11,1,1) = {" -aO -ah -av -ab -at -bc -bc -bc -aH -aa -aW -aq -au +ai +HC +KG +TY +aJ +ad +ad +ad +aT +OH +FF +bf +Pb "} (12,1,1) = {" -aJ -aX -aE -ax -aR -bc -bc -bc -aD -aa -aW -aq -aq +aj +mC +TI +tk +Iw +ad +ad +ad +aU +OH +FF +bf +bf "} (13,1,1) = {" -aJ -bm -ai -af -aR -bc -bc -bc -aH -aa -aW -aq -aq +aj +TN +nC +Tn +Iw +ad +ad +ad +aT +OH +FF +bf +bf "} (14,1,1) = {" -aJ -bm -ai -af -aR -bc -bc -bc -aH aj -ak -ar -ar +TN +nC +Tn +Iw +ad +ad +ad +aT +uu +sW +Ko +Ko "} diff --git a/maps/map_files/DesertDam/purpleriver/newbridge.dmm b/maps/map_files/DesertDam/purpleriver/newbridge.dmm index d6de449949..816fb878db 100644 --- a/maps/map_files/DesertDam/purpleriver/newbridge.dmm +++ b/maps/map_files/DesertDam/purpleriver/newbridge.dmm @@ -1,38 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ab" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) "ac" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_medical) -"ad" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"ae" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) "af" = ( /obj/structure/platform{ dir = 1 @@ -43,75 +12,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"ag" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ah" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ai" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"aj" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"ak" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_c" - }, -/turf/open/asphalt/cement_sunbleached, -/area/desert_dam/exterior/valley/valley_medical) -"al" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"am" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, -/area/desert_dam/exterior/valley/valley_medical) "an" = ( /obj/structure/platform{ dir = 4 @@ -119,154 +19,13 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"ao" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/valley_medical) -"ap" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/valley_medical) "aq" = ( /turf/open/asphalt/cement_sunbleached, /area/desert_dam/exterior/valley/valley_medical) -"ar" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/valley_medical) -"as" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"at" = ( -/obj/structure/stairs, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt{ - icon_state = "tile" - }, -/area/desert_dam/exterior/valley/valley_medical) -"au" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached3" - }, -/area/desert_dam/exterior/valley/valley_medical) -"av" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"aw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"ax" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"ay" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"az" = ( -/obj/structure/platform_decoration{ - dir = 8; - icon_state = "platform_deco" - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) "aB" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"aC" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1{ - icon_state = "shore1"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"aD" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aE" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aF" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_south) -"aG" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2{ - icon_state = "shore_corner2"; - dir = 8 - }, -/area/desert_dam/exterior/river/riverside_south) -"aH" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_edge1{ - icon_state = "shore_edge1"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) "aI" = ( /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner, @@ -278,13 +37,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) -"aL" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) "aM" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform_decoration, @@ -295,14 +47,6 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) -"aO" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) "aP" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform, @@ -330,44 +74,6 @@ /obj/effect/blocker/toxic_water/Group_1, /turf/open/gm/river/desert/shallow_corner/covered, /area/desert_dam/exterior/river/riverside_south) -"aU" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - icon_state = "shallow_edge"; - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_south) -"aV" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/river/riverside_south) -"aW" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/valley_medical) -"aX" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered{ - dir = 4 - }, -/area/desert_dam/exterior/river/riverside_south) -"aY" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/river/riverside_south) -"aZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8; - icon = 'icons/turf/overlays.dmi'; - icon_state = "sand1_s" - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/valley_medical) "ba" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ @@ -385,16 +91,6 @@ }, /turf/open/gm/river/desert/shallow_corner, /area/desert_dam/exterior/river/riverside_south) -"bc" = ( -/obj/effect/blocker/toxic_water/Group_1, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 5 - }, -/area/desert_dam/exterior/river/riverside_south) "bd" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ @@ -409,165 +105,338 @@ }, /turf/open/gm/river/desert/deep, /area/desert_dam/exterior/river/riverside_south) -"bf" = ( +"bi" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 1 - }, +/turf/open/gm/river/desert/shallow_edge/covered, /area/desert_dam/exterior/river/riverside_south) -"bg" = ( +"bk" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; - dir = 8 - }, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"bl" = ( +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/river/riverside_south) +"bn" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge, /area/desert_dam/exterior/river/riverside_south) -"bh" = ( +"bp" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 4 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"bq" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform{ + dir = 8 }, +/turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) -"bi" = ( +"bs" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge/covered, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/desert_shore/shore_edge1, /area/desert_dam/exterior/river/riverside_south) -"bj" = ( +"bt" = ( +/obj/structure/platform, /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"bu" = ( +/obj/structure/platform, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"bA" = ( +/obj/structure/platform{ dir = 8 }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1, /area/desert_dam/exterior/river/riverside_south) -"bk" = ( +"bB" = ( /obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2, +/area/desert_dam/exterior/river/riverside_south) +"cH" = ( +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"cQ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"dS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"fF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/valley_medical) +"fQ" = ( +/obj/structure/stairs, /obj/structure/platform{ - dir = 4 + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"fS" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 }, -/turf/open/gm/river/desert/shallow, -/area/desert_dam/exterior/river/riverside_south) -"bl" = ( /turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"fY" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/desert_dam/exterior/river/riverside_south) +"gN" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"in" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) -"bm" = ( +"jA" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, +/turf/open/gm/river/desert/shallow_edge/southwest, /area/desert_dam/exterior/river/riverside_south) -"bn" = ( +"kE" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/desert_dam/exterior/valley/valley_medical) +"kZ" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge, +/turf/open/gm/river/desert/shallow_edge/east, /area/desert_dam/exterior/river/riverside_south) -"bo" = ( -/obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_corner{ - icon_state = "shallow_c"; +"lN" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/valley_medical) +"lQ" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, /area/desert_dam/exterior/river/riverside_south) -"bp" = ( +"lV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow, +/area/desert_dam/exterior/river/riverside_south) +"pg" = ( /obj/structure/platform{ + dir = 1 + }, +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/desert_dam/exterior/river/riverside_south) +"qm" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"qn" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/river/riverside_south) -"bq" = ( +"rc" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/desert_dam/exterior/river/riverside_south) +"tw" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_cargo) +"ty" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"vr" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ dir = 8 }, -/turf/open/gm/river/desert/shallow, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) -"br" = ( +"xR" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/desert_dam/exterior/valley/valley_medical) +"yy" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow_edge{ - icon_state = "shallow_edge"; - dir = 10 - }, -/area/desert_dam/exterior/river/riverside_south) -"bs" = ( /obj/structure/platform, +/turf/open/gm/river/desert/shallow_edge/east, +/area/desert_dam/exterior/river/riverside_south) +"yG" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"yW" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"zc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"zn" = ( /obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ - dir = 4 + dir = 1 }, -/turf/open/desert/desert_shore/shore_edge1, +/turf/open/gm/river/desert/shallow_edge/northeast, /area/desert_dam/exterior/river/riverside_south) -"bt" = ( -/obj/structure/platform, +"zE" = ( /obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_edge/covered/northeast, +/area/desert_dam/exterior/river/riverside_south) +"AY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/valley_medical) +"BF" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"DT" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/turf/open/gm/river/desert/shallow, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"EC" = ( +/obj/effect/blocker/toxic_water/Group_1, +/turf/open/gm/river/desert/shallow_corner/west, /area/desert_dam/exterior/river/riverside_south) -"bu" = ( -/obj/structure/platform, +"FL" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, +/turf/open/gm/river/desert/shallow_edge/covered/east, /area/desert_dam/exterior/river/riverside_south) -"bv" = ( -/obj/structure/platform_decoration{ - icon_state = "platform_deco"; +"Gr" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/desert_dam/exterior/valley/valley_medical) +"Hs" = ( +/obj/structure/platform{ dir = 1 }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/gm/river/desert/shallow, +/turf/open/desert/desert_shore/shore_edge1/east, /area/desert_dam/exterior/river/riverside_south) -"bw" = ( -/turf/open/asphalt{ - icon_state = "tile" +"Hw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/valley/valley_cargo) -"by" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"IB" = ( +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"bz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/asphalt{ - icon_state = "tile" +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"LG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/river/riverside_south) +"NA" = ( +/obj/effect/blocker/toxic_water/Group_1, +/obj/structure/platform{ + dir = 4 }, -/area/desert_dam/exterior/valley/valley_cargo) -"bA" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/desert_dam/exterior/river/riverside_south) +"NQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/valley_medical) +"Oo" = ( +/obj/effect/blocker/toxic_water/Group_1, /obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow_corner/west, +/area/desert_dam/exterior/river/riverside_south) +"OT" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/desert/dirt/dirt2, +/area/desert_dam/exterior/valley/valley_medical) +"Su" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/valley_medical) +"SX" = ( /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/desert_shore1, +/turf/open/gm/river/desert/shallow_edge/north, /area/desert_dam/exterior/river/riverside_south) -"bB" = ( +"Tv" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/desert_dam/exterior/valley/valley_medical) +"UO" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, /obj/effect/blocker/toxic_water/Group_1, -/turf/open/desert/desert_shore/shore_corner2, +/turf/open/gm/river/desert/shallow, /area/desert_dam/exterior/river/riverside_south) +"Vh" = ( +/obj/structure/stairs, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) +"Ym" = ( +/turf/open/asphalt/tile, +/area/desert_dam/exterior/valley/valley_medical) (1,1,1) = {" -aa +Ym af an an -av +lV aB -aF +in aI aK aK @@ -577,23 +446,23 @@ aR aR aR aR -bg -bh +Oo +NA bk bp bs -bw +tw "} (2,1,1) = {" -ab -ag -aa -aa -aw +yW +BF +Ym +Ym +pg aB aB -aF -aL +in +kZ aI aN aS @@ -606,20 +475,20 @@ bi bl bl bl -bw +tw "} (3,1,1) = {" ac -ah -ao -aa -ax -aC -aG +kE +NQ +Ym +Hs +rc +lQ aB aB -aF -aO +in +yy aS aS aS @@ -630,17 +499,17 @@ bi bl bl bl -bw +tw "} (4,1,1) = {" ac -ai -ap -as -ay -aD -aH -aC +cQ +fF +fQ +OT +cH +fY +rc aJ aB aP @@ -650,26 +519,26 @@ ba be be be -bj -bm +vr +jA bq bt -bw +tw "} (5,1,1) = {" ac -ai -ap -at -az -aD -aD +cQ +fF +Vh +zc +cH +cH aJ aJ aJ aP -aU -aX +zE +FL bb aK aK @@ -678,102 +547,102 @@ aK bn aB bu -by +gN "} (6,1,1) = {" -ad -aj -ap -aa -aA -aE -aE +qm +fS +fF +Ym +DT +IB +IB aJ aJ aJ aQ -aV -aY -bc +qn +LG +zn aI aK aK aK -bo -br +EC +yG bu -bz +dS "} (7,1,1) = {" -ae -ak -ap -aa -aa -aa -aa -aa -aa -aa -aa -aW -ap +Hw +Tv +fF +Ym +Ym +Ym +Ym +Ym +Ym +Ym +Ym +AY +fF bd -bf +SX aK aK aK aK bn bu -by +gN "} (8,1,1) = {" -aa -al +Ym +ty aq -au -au -au -au -au -au -au -au +xR +xR +xR +xR +xR +xR +xR +xR aq -ap +fF bd -bf +SX aK aK aK aK bn -bv +UO bA "} (9,1,1) = {" -ab -am -ar -ar -ar -ar -ar -ar -ar -ar -ar -ar -aZ +yW +lN +Su +Su +Su +Su +Su +Su +Su +Su +Su +Su +Gr bd -aF +in aI aK aK aK -bo -br +EC +yG bB "} (10,1,1) = {" @@ -792,7 +661,7 @@ ac ac bd aB -bf +SX aK aK aK diff --git a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm index d0ebbc5039..4ebaf4fbb7 100644 --- a/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm +++ b/maps/map_files/DesertDam/sprinkles/10.damtemple_intact.dmm @@ -1,9 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "av" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "aZ" = ( /obj/structure/prop/brazier, @@ -25,10 +23,7 @@ /area/desert_dam/interior/caves/temple) "bE" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "bJ" = ( /obj/structure/surface/table/reinforced/prison{ @@ -76,10 +71,7 @@ /obj/item/tank/nitrogen{ pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "fX" = ( /obj/structure/stairs/perspective{ @@ -115,10 +107,7 @@ name = "ancient clan mask"; pixel_y = 20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "iM" = ( /obj/structure/surface/table/reinforced/prison{ @@ -139,14 +128,11 @@ /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/legcuffs/beartrap{ +/obj/item/restraint/legcuffs/beartrap{ pixel_x = -1; pixel_y = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "ke" = ( /obj/structure/xenoautopsy/tank/larva, @@ -154,9 +140,7 @@ dir = 8; health = 80 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "kI" = ( /obj/structure/prop/brazier/torch, @@ -169,10 +153,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "mA" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "mB" = ( /turf/open/floor/sandstone/runed, @@ -186,22 +167,14 @@ desc = "A long-barreled heavy plasma weapon capable of leveling down an entire building. This one seems to be damaged beyond use."; name = "damaged plasma rifle" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "mY" = ( -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "oq" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "oH" = ( /obj/structure/surface/rack, @@ -219,16 +192,10 @@ /obj/item/stack/medical/advanced/ointment/predator{ pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "oR" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "pC" = ( /obj/structure/showcase{ @@ -251,10 +218,7 @@ icon_state = "pred_mask12_ebony"; unacidable = 0 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "qv" = ( /obj/effect/decal/remains/xeno{ @@ -268,10 +232,7 @@ /area/desert_dam/interior/caves/central_caves) "qV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_crashsite) "re" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -304,25 +265,13 @@ name = "ancient katana"; unacidable = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "rI" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = -6 - }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = 4 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "td" = ( /turf/open/desert/rock, @@ -336,10 +285,7 @@ "tq" = ( /obj/structure/closet/coffin/predator, /obj/item/storage/large_holster/katana, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "uK" = ( /obj/structure/machinery/door/airlock/sandstone/runed{ @@ -353,9 +299,7 @@ dir = 9; icon_state = "p_stair_full" }, -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "vb" = ( /obj/structure/stairs/perspective{ @@ -363,9 +307,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/desert/dirt{ - icon_state = "rock1" - }, +/turf/open/desert/dirt/rock1, /area/desert_dam/exterior/valley/valley_crashsite) "vY" = ( /obj/structure/surface/table/reinforced/prison{ @@ -419,10 +361,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "AU" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Bm" = ( /obj/structure/surface/rack{ @@ -434,15 +373,10 @@ /obj/item/stack/sheet/mineral/platinum{ amount = 50 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Co" = ( -/turf/open/desert/dirt{ - icon_state = "dirt2" - }, +/turf/open/desert/dirt/dirt2, /area/desert_dam/exterior/valley/valley_crashsite) "Dc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -486,9 +420,7 @@ /area/desert_dam/interior/caves/temple) "GX" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "Hj" = ( /obj/structure/surface/rack{ @@ -500,10 +432,7 @@ name = "strange jelly" }, /obj/item/xeno_egg, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Ix" = ( /obj/structure/surface/rack{ @@ -512,10 +441,7 @@ }, /obj/item/tool/weldingtool, /obj/item/clothing/glasses/welding/superior, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "IV" = ( /obj/effect/decal/cleanable/cobweb{ @@ -539,10 +465,7 @@ desc = "A bizarre alien device used for trapping and killing prey."; name = "Alien Mine" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Jh" = ( /obj/structure/surface/table/reinforced/prison{ @@ -568,10 +491,7 @@ /area/desert_dam/interior/caves/temple) "JP" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "JU" = ( /obj/structure/platform/mineral/sandstone/runed, @@ -579,10 +499,7 @@ /area/desert_dam/interior/caves/temple) "JZ" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Kj" = ( /obj/structure/surface/table/reinforced/prison{ @@ -593,10 +510,7 @@ /area/desert_dam/interior/caves/temple) "KA" = ( /obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "Li" = ( /turf/open/gm/river/desert/deep, @@ -618,10 +532,7 @@ /obj/item/tool/surgery/bonesetter/predatorbonesetter, /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/FixOVein/predatorFixOVein, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "MH" = ( /turf/closed/wall/mineral/sandstone/runed, @@ -653,9 +564,7 @@ dir = 8; health = 80 }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/desert_dam/interior/caves/temple) "Ps" = ( /obj/structure/bed/chair/comfy/beige{ @@ -685,10 +594,7 @@ /obj/structure/machinery/door/window{ dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "SD" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -696,10 +602,7 @@ /area/desert_dam/interior/caves/temple) "TO" = ( /obj/structure/xenoautopsy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "TU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -714,10 +617,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/desert_dam/interior/caves/temple) "Vz" = ( /turf/closed/wall/mineral/sandstone/runed{ @@ -726,10 +626,7 @@ /area/desert_dam/interior/caves/temple) "WM" = ( /obj/structure/curtain/red, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/desert_dam/interior/caves/temple) "WV" = ( /obj/structure/prop/brazier/torch, @@ -743,10 +640,7 @@ /turf/open/floor/sandstone/runed, /area/desert_dam/interior/caves/temple) "ZI" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/east, /area/desert_dam/exterior/valley/valley_crashsite) (1,1,1) = {" diff --git a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm index 4d9a427771..f6b5b1e368 100644 --- a/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm +++ b/maps/map_files/DesertDam/sprinkles/15.shipgone_northlz.dmm @@ -3,47 +3,29 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "h" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "i" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "j" = ( /obj/structure/powerloader_wreckage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "u" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "x" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "D" = ( /turf/template_noop, @@ -53,40 +35,28 @@ icon_state = "S" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "K" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/template_noop) "L" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/template_noop) "O" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) "R" = ( -/obj/item/fuelCell{ +/obj/item/fuel_cell{ fuel_amount = 0; icon_state = "cell-empty"; pixel_x = 7 }, -/obj/item/fuelCell{ +/obj/item/fuel_cell{ fuel_amount = 0; icon_state = "cell-empty"; pixel_x = -7; @@ -99,10 +69,7 @@ /turf/template_noop, /area/template_noop) "Y" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/template_noop) "Z" = ( /obj/structure/largecrate/random/barrel, diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm index b707028441..3cdefd6579 100644 --- a/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm +++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-alt1.dmm @@ -5,9 +5,7 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "bz" = ( /turf/closed/shuttle/ert{ @@ -29,9 +27,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "cp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "cG" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -50,14 +46,10 @@ "dN" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/effect/decal/cleanable/blood/oil, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "dP" = ( -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "eb" = ( /obj/effect/spawner/gibspawner/human, @@ -70,10 +62,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "eF" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, /area/desert_dam/exterior/valley/valley_civilian) "fa" = ( /turf/closed/shuttle/ert{ @@ -84,17 +73,13 @@ "fg" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "fp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "ft" = ( /turf/closed/wall, @@ -123,9 +108,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "hK" = ( /obj/structure/prop/invuln/fire{ @@ -158,30 +141,22 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "jN" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, /area/desert_dam/exterior/valley/valley_civilian) "jU" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "jX" = ( /obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "kd" = ( /turf/closed/shuttle/ert{ @@ -192,9 +167,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "kV" = ( /obj/structure/flora/grass/desert/lightgrass_2, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "la" = ( /turf/closed/wall/rock/orange, @@ -211,30 +184,20 @@ /obj/item/explosive/grenade/high_explosive/upp, /obj/item/explosive/grenade/high_explosive/upp, /obj/item/explosive/grenade/high_explosive/upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "mt" = ( /obj/structure/machinery/light/double{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "mw" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/valley_civilian) "mM" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/valley_civilian) "mN" = ( /obj/structure/desertdam/decals/road_edge{ @@ -249,17 +212,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 6 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nj" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nn" = ( /obj/structure/desertdam/decals/road_edge{ @@ -283,9 +242,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "nX" = ( /turf/open/desert/dirt, @@ -297,21 +254,15 @@ "oj" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/desert_dam/exterior/valley/valley_civilian) "os" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/desert_dam/exterior/valley/valley_civilian) "oL" = ( /obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "oX" = ( /obj/structure/desertdam/decals/road_edge{ @@ -337,14 +288,10 @@ /obj/item/ammo_magazine/rifle/type71/ap, /obj/item/ammo_magazine/rifle/type71/ap, /obj/item/ammo_magazine/rifle/type71/ap, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "sl" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/valley_civilian) "ss" = ( /obj/structure/flora/bush/desert/cactus/multiple{ @@ -397,9 +344,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "vz" = ( /obj/structure/closet/crate/ammo, @@ -415,9 +360,7 @@ /obj/item/ammo_magazine/rifle/type71, /obj/item/weapon/gun/rifle/type71, /obj/item/weapon/gun/rifle/type71, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "vJ" = ( /obj/structure/prop/invuln/fire, @@ -434,9 +377,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "xp" = ( /obj/structure/desertdam/decals/road_edge{ @@ -448,18 +389,14 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "xz" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, /area/desert_dam/exterior/valley/valley_civilian) "xE" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/desert_dam/exterior/valley/valley_civilian) "xK" = ( /obj/effect/decal/cleanable/dirt, @@ -475,9 +412,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "xP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/desert_dam/exterior/valley/valley_civilian) "yl" = ( /turf/closed/shuttle/ert{ @@ -487,9 +422,7 @@ /area/desert_dam/exterior/valley/valley_civilian) "ym" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "yU" = ( /obj/structure/prop/invuln/fire{ @@ -505,9 +438,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/valley_civilian) "zE" = ( /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -519,9 +450,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "zO" = ( /obj/effect/decal/sand_overlay/sand1{ @@ -530,23 +459,16 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "As" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "AW" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/north, /area/desert_dam/exterior/valley/valley_civilian) "Bk" = ( /turf/closed/shuttle/ert{ @@ -565,9 +487,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "BM" = ( /obj/structure/flora/grass/desert/lightgrass_3, @@ -577,9 +497,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached18" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, /area/desert_dam/exterior/valley/valley_civilian) "BY" = ( /obj/structure/desertdam/decals/road_edge{ @@ -598,15 +516,11 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "CL" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "Dd" = ( /obj/structure/prop/invuln/fire{ @@ -622,9 +536,7 @@ "DO" = ( /obj/structure/flora/grass/desert/lightgrass_9, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Eh" = ( /obj/structure/flora/grass/desert/lightgrass_1, @@ -633,9 +545,7 @@ "EF" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "EL" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -655,9 +565,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 4 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Gt" = ( /turf/closed/shuttle/ert{ @@ -674,10 +582,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "Ho" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/valley_civilian) "Hs" = ( /obj/structure/prop/invuln/fire{ @@ -720,9 +625,7 @@ dir = 4 }, /obj/effect/decal/sand_overlay/sand1/corner1, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Jy" = ( /obj/structure/prop/invuln/fire, @@ -754,18 +657,13 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "KC" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +/turf/open/desert/dirt/desert_transition_corner1/west, /area/desert_dam/exterior/valley/valley_civilian) "KX" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/valley_civilian) "Lc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -795,9 +693,7 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/valley_civilian) "LD" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -809,17 +705,13 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Mp" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 5 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "MM" = ( /turf/closed/shuttle/ert{ @@ -838,9 +730,7 @@ /obj/structure/closet/crate/ammo, /obj/item/ammo_magazine/pkp, /obj/item/weapon/gun/pkp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "NP" = ( /turf/closed/shuttle/ert{ @@ -866,23 +756,17 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "OG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "OJ" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Pc" = ( /obj/structure/desertdam/decals/road_edge{ @@ -914,40 +798,30 @@ dir = 5 }, /obj/effect/spawner/gibspawner/human, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Qj" = ( /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/valley_civilian) "Rq" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/desert_dam/exterior/valley/valley_civilian) "Ry" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, /area/desert_dam/exterior/valley/valley_civilian) "RG" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Sb" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Sf" = ( /turf/closed/shuttle/ert{ @@ -967,16 +841,12 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "SN" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/desert_dam/exterior/valley/valley_civilian) "SV" = ( /obj/structure/prop/invuln/fire{ @@ -1014,9 +884,7 @@ pixel_y = 21 }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/exterior/valley/valley_civilian) "UB" = ( /obj/structure/prop/invuln/fire{ @@ -1034,9 +902,7 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "VD" = ( /obj/structure/flora/bush/desert/cactus{ @@ -1054,45 +920,33 @@ /obj/effect/decal/sand_overlay/sand1{ dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached2" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/desert_dam/exterior/valley/valley_civilian) "Wy" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/desert_dam/exterior/valley/valley_civilian) "WU" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "WW" = ( -/turf/open/asphalt{ - icon_state = "tile" - }, +/turf/open/asphalt/tile, /area/desert_dam/exterior/valley/valley_civilian) "Xn" = ( /obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1{ dir = 9 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Xq" = ( /turf/template_noop, /area/template_noop) "XT" = ( /obj/structure/flora/tree/joshua, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Yr" = ( /turf/closed/shuttle/ert{ @@ -1102,9 +956,7 @@ }, /area/desert_dam/exterior/valley/valley_civilian) "Yv" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "YD" = ( /obj/structure/fence, @@ -1114,9 +966,7 @@ /obj/effect/decal/sand_overlay/sand1/corner1{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/valley_civilian) "Zm" = ( /obj/structure/flora/grass/tallgrass/desert, diff --git a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm index 29577425c1..78839f4a7c 100644 --- a/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm +++ b/maps/map_files/DesertDam/standalone/crashlanding-upp-bar.dmm @@ -14,6 +14,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"ac" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/desert_dam/exterior/valley/bar_valley_dam) "am" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -23,23 +29,25 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"aw" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, +"an" = ( /obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) -"aO" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"aq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) +"aG" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/obj/structure/disposalpipe/segment, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "aT" = ( /turf/closed/shuttle/ert{ icon_state = "T16"; @@ -47,36 +55,58 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"aY" = ( -/obj/item/reagent_container/food/drinks/flask/canteen{ - desc = "You take a sip from your trusty UPP canteen..." +"aZ" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -7; + pixel_y = 35 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 1; + pixel_y = 35 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) +"ba" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) "bf" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/spawner/gibspawner/xeno, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"bu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" +"bk" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/barricade/sandbags/wired{ + dir = 4 }, -/area/desert_dam/building/bar/bar) -"bz" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/blood, -/obj/item/prop/colony/usedbandage{ - dir = 5 +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/exterior/valley/bar_valley_dam) +"bl" = ( +/obj/structure/desertdam/decals/road_edge, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" }, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"bs" = ( +/obj/item/ammo_casing/bullet, +/obj/item/prop/colony/usedbandage{ + dir = 1 }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"bB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/almayer/comp_closed, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "bC" = ( /obj/structure/barricade/sandbags/wired{ @@ -84,13 +114,6 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"bI" = ( -/obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "bJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -121,16 +144,46 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) +"ca" = ( +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner/upp_specialist, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/desert_dam/building/bar/bar) +"cd" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/rounds/type71{ + bullet_amount = 129 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "cl" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"cu" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"cm" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, /area/desert_dam/building/bar/bar) "cH" = ( /obj/item/stack/sheet/metal, @@ -140,36 +193,43 @@ /obj/structure/girder, /turf/open/floor/plating, /area/desert_dam/building/bar/bar_restroom) -"cL" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a Mi-220 Attack Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Fulcrum' flight controls"; - network = null; - pixel_y = 21 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) -"cR" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"cO" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"cZ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +"cP" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"cW" = ( +/obj/effect/landmark/survivor_spawner/upp/soldier, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "da" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"dd" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"dh" = ( +/obj/structure/bed/bedroll, +/obj/item/bedsheet/brown, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"dl" = ( +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) "ds" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -178,50 +238,30 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"du" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/backroom) -"dJ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement14" +"dw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) "dQ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"dR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"dX" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/rounds/type71{ - bullet_amount = 129 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"dU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/desert_dam/building/bar/bar) +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) "ee" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"eh" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar_restroom) "ej" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/desert/dirt, @@ -268,35 +308,28 @@ /obj/item/trash/semki, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"eV" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/patch/upp{ - pixel_y = -6; - pixel_x = -7 - }, -/obj/item/paper/bigred/upp{ - pixel_y = 4; - pixel_x = 3; - icon_state = "paper_words"; - item_state = "paper_words" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"eW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"fk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +"fv" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "fy" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"fG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/backroom) "fL" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -309,44 +342,11 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fM" = ( -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "fN" = ( /obj/structure/disposalpipe/segment, /obj/item/stack/sandbags, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"fP" = ( -/obj/structure/bed/bedroll, -/obj/item/bedsheet/brown, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) -"fR" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ga" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "gm" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/floor/plating, @@ -356,11 +356,10 @@ /obj/item/ammo_casing/bullet, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"gM" = ( -/obj/item/trash/candy, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"gD" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "gN" = ( /obj/item/ammo_casing/bullet, @@ -371,23 +370,17 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"gR" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"hc" = ( -/obj/structure/prop/dam/wide_boulder/boulder1, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +"gY" = ( +/turf/open/desert/dirt/desert_transition_edge1/east, /area/desert_dam/exterior/valley/bar_valley_dam) "hd" = ( /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"hf" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) "hi" = ( /obj/item/ammo_casing/bullet, /turf/open/asphalt, @@ -421,15 +414,6 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"hF" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/upp_medic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) "hH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -439,14 +423,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"hJ" = ( -/obj/item/ammo_box/rounds/type71/heap/empty{ - bullet_amount = 0 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"hK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/backroom) "hO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -456,21 +438,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"hT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) -"hY" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "if" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -486,11 +453,10 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"is" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) +"ix" = ( +/obj/structure/bed/stool, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) "iy" = ( /turf/closed/wall/wood, /area/desert_dam/building/bar/backroom) @@ -498,21 +464,36 @@ /obj/structure/flora/bush/desert/cactus, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"iF" = ( +/obj/effect/landmark/survivor_spawner/upp/soldier, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/desert_dam/building/bar/bar) "iI" = ( /obj/item/ammo_casing/bullet, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"iL" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" +"iJ" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, +/obj/structure/bed/bedroll, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"iO" = ( +/obj/item/ammo_casing/bullet, +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) "iV" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/desert_dam/building/bar/backroom) +"jd" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) "jf" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -525,58 +506,19 @@ /obj/item/reagent_container/glass/bucket/mopbucket, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"jj" = ( -/obj/item/trash/cheesie, -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"jm" = ( +"jk" = ( +/obj/item/ammo_casing/bullet, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"jq" = ( /obj/effect/decal/sand_overlay/sand1, -/obj/structure/barricade/sandbags/wired{ - dir = 8 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) -"jp" = ( -/obj/structure/desertdam/decals/road_edge, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"jr" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal2" - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "jt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) -"jw" = ( -/obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "jy" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -584,30 +526,26 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"jC" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"jI" = ( -/obj/structure/barricade/sandbags/wired{ +"jD" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "jJ" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"kf" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" +"jX" = ( +/obj/item/ammo_box/rounds/type71/heap/empty{ + bullet_amount = 0 }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/desert_dam/building/bar/bar) +"kd" = ( +/obj/item/stack/barbed_wire/small_stack, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "kh" = ( /obj/structure/desertdam/decals/road_edge{ @@ -616,36 +554,6 @@ /obj/item/ammo_casing/bullet, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ki" = ( -/obj/item/stack/sandbags, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kk" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"kp" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/prop/almayer/flight_recorder/colony, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) -"kB" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached14" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "kD" = ( /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) @@ -656,53 +564,33 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"kQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"kO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"kR" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/desert_dam/building/bar/backroom) +/obj/effect/landmark/survivor_spawner/upp_sapper, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"kZ" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) "ln" = ( /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"lC" = ( +"lU" = ( +/obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"lT" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mb" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"md" = ( -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"mf" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) +"lW" = ( +/obj/structure/bed/bedroll, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "mq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -710,26 +598,34 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"mw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/backroom) "mF" = ( /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"mH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"mJ" = ( +/turf/open/asphalt/cement/cement2, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "mL" = ( /obj/structure/flora/bush/desert/cactus{ icon_state = "cactus_8" }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"mP" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/item/ammo_box/rounds/type71/heap/empty{ + bullet_amount = 0 + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "mR" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/desert/dirt, @@ -741,11 +637,10 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"mV" = ( -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/building/bar/bar_restroom) +"mW" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/interior/wood, +/area/desert_dam/building/bar/bar) "nk" = ( /turf/closed/shuttle/ert{ icon_state = "T3"; @@ -753,13 +648,6 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"np" = ( -/obj/structure/flora/grass/desert/lightgrass_1, -/obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "nt" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/desertdam/decals/road_edge{ @@ -768,13 +656,6 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ny" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/prop/almayer/comp_closed, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) "nz" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -783,20 +664,6 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"nB" = ( -/obj/effect/landmark/survivor_spawner/upp/soldier, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/desert_dam/building/bar/bar) -"nC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) "nD" = ( /obj/structure/flora/grass/desert/heavygrass_4, /obj/item/trash/cheesie, @@ -806,65 +673,56 @@ /obj/structure/machinery/colony_floodlight, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"nR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1/corner1{ +"nS" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oo" = ( -/obj/structure/flora/grass/desert/heavygrass_4, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oy" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "oD" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"oF" = ( -/obj/item/ammo_casing/bullet, -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 +"oP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = -8; + pixel_x = -8 }, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 6 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"oK" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"oR" = ( /obj/effect/decal/sand_overlay/sand1{ - dir = 9 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"oN" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/structure/barricade/sandbags/wired{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) -"pk" = ( +"oS" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) +"oV" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 10 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "pq" = ( /obj/structure/desertdam/decals/road_edge{ @@ -872,13 +730,17 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"pu" = ( -/obj/structure/machinery/light/double, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +"pr" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_corner1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) +"pv" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/structure/barricade/sandbags/wired{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) "px" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 @@ -886,30 +748,9 @@ /obj/item/prop/colony/used_flare, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"py" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Fulcrum Airlock" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) -"pA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"pM" = ( -/obj/structure/bed/chair/dropship/passenger, -/obj/item/storage/belt/medical/lifesaver/upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) +"pD" = ( +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "pO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -920,50 +761,71 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) +"pS" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"pU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/bar) "pW" = ( /turf/closed/wall/r_wall/bunker{ name = "reinforced metal wall" }, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"pZ" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"qd" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"qf" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"qe" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, +"qA" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) -"qu" = ( -/obj/effect/decal/sand_overlay/sand1{ +"qF" = ( +/obj/structure/machinery/light/double{ dir = 8 }, -/obj/item/prop/colony/used_flare, -/turf/open/mars{ - icon_state = "mars_dirt_5" +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/desert_dam/building/bar/bar) +"qL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"qx" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" +/obj/structure/machinery/sentry_holder/colony{ + dir = 1; + pixel_y = -10 }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "qS" = ( /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) +"qT" = ( +/turf/open/desert/dirt/desert_transition_corner1/west, +/area/desert_dam/exterior/valley/bar_valley_dam) "qU" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/interior/wood/alt, /area/desert_dam/building/bar/bar) +"ra" = ( +/obj/item/tool/wrench, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "rj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -976,53 +838,16 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"rm" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/interior/wood, -/area/desert_dam/building/bar/bar) -"rR" = ( -/obj/structure/prop/dam/boulder/boulder1, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, +"sh" = ( +/obj/item/ammo_casing/bullet, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"rX" = ( -/obj/item/prop/colony/folded_bedroll, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"se" = ( -/obj/item/trash/semki, -/turf/open/shuttle/dropship, -/area/desert_dam/building/bar/bar) "sn" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"so" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"sp" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "su" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/chem_dispenser/soda{ @@ -1031,59 +856,36 @@ }, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"sv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/shovel, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"sE" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/desert_dam/building/bar/bar) -"sH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbags/wired, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"sF" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, /area/desert_dam/exterior/valley/bar_valley_dam) "sI" = ( /obj/structure/flora/grass/desert/lightgrass_5, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"sJ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) "sO" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) "sT" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"tl" = ( -/obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"tb" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, /area/desert_dam/exterior/valley/bar_valley_dam) -"tu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/desert_dam/building/bar/bar) -"tA" = ( -/obj/item/tool/wrench, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) "tE" = ( /obj/structure/flora/grass/desert/heavygrass_3, /obj/item/ammo_magazine/rifle/type71/heap{ @@ -1091,11 +893,9 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"tK" = ( -/obj/structure/bed/bedroll, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"tL" = ( +/obj/item/trash/cheesie, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "tM" = ( /turf/closed/shuttle/ert{ @@ -1108,6 +908,17 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "dam_checkpoint_west"; + name = "\improper Checkpoint Lock" + }, +/turf/open/asphalt, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "tW" = ( /turf/closed/shuttle/ert{ icon_state = "T11"; @@ -1122,36 +933,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"tY" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) "ug" = ( /obj/structure/flora/grass/desert/lightgrass_10, /obj/effect/decal/cleanable/blood/xeno, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"uA" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop{ - desc = "A gas-operated rotary machine gun used by UPP heavies. Its enormous volume of fire and ammunition capacity allows the suppression of large concentrations of enemy forces. Heavy weapons training is required control its recoil, is non-functional."; - icon_state = "painless"; - item_state = "m41amk1"; - name = "\improper GSh-7.62 rotary machine gun"; - pixel_y = 7; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"uB" = ( +/obj/structure/bed/chair/dropship/passenger, +/obj/item/storage/belt/medical/lifesaver/upp, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) -"uF" = ( -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_edge1" +"uJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"uZ" = ( -/obj/item/roller, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a Mi-220 Attack Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Fulcrum' flight controls"; + network = null; + pixel_y = 21 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "vk" = ( /obj/structure/flora/grass/desert/lightgrass_9, @@ -1164,17 +971,26 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"vn" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) "vy" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/plating, /area/desert_dam/building/bar/bar_restroom) +"vz" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vE" = ( +/obj/item/tool/shovel, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"vO" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "vP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal5" @@ -1186,21 +1002,10 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"vZ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +"wh" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_corner1, /area/desert_dam/exterior/valley/bar_valley_dam) -"wj" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) "wm" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/shuttle/ert{ @@ -1208,11 +1013,15 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"wp" = ( -/obj/structure/flora/grass/desert/heavygrass_10, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"wo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/structure/prop/wooden_cross{ + pixel_y = 13 }, +/obj/item/toy/plush/farwa, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "wq" = ( /obj/structure/flora/grass/desert/lightgrass_2, @@ -1235,31 +1044,36 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"wy" = ( -/obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"ww" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 }, -/area/desert_dam/building/bar/bar_restroom) -"wE" = ( -/obj/structure/girder, -/turf/open/floor/plating, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"wI" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/obj/structure/bed/bedroll, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"wx" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/bar) +"wB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"wJ" = ( -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" +"wD" = ( +/obj/structure/flora/grass/desert/heavygrass_5, +/obj/effect/decal/sand_overlay/sand1{ + dir = 5 }, +/obj/effect/decal/cleanable/blood, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) +"wE" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/desert_dam/building/bar/bar) "wO" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 @@ -1275,27 +1089,10 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"wZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) "xg" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"xj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/landmark/crap_item, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "xm" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, @@ -1306,6 +1103,12 @@ }, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) +"xq" = ( +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "xr" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/desert/dirt, @@ -1331,37 +1134,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"xG" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"xI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/prop/wooden_cross{ - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"xJ" = ( -/obj/structure/sink, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) "xN" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -1369,13 +1141,6 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"xP" = ( -/obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "xT" = ( /turf/template_noop, /area/template_noop) @@ -1390,14 +1155,6 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"ye" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) "yf" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -1405,28 +1162,10 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"yk" = ( -/obj/structure/prop/dam/large_boulder/boulder2, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"ym" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"yi" = ( +/obj/item/ammo_casing/bullet, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) -"yo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/desert_dam/building/bar/bar) "ys" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -1437,6 +1176,9 @@ /obj/structure/closet/secure_closet/bar, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) +"yB" = ( +/turf/open/desert/dirt/desert_transition_corner1, +/area/desert_dam/exterior/valley/bar_valley_dam) "yC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -1446,13 +1188,6 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"yF" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship, -/area/desert_dam/building/bar/bar) "yG" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal11" @@ -1462,14 +1197,28 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"yP" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 +"yW" = ( +/obj/item/trash/candy, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"yZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"ze" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) +"zi" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/almayer/flight_recorder/colony, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "zl" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -1477,18 +1226,19 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"zm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"zo" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/obj/structure/machinery/light/double{ +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/obj/structure/prop/wooden_cross{ + pixel_y = 13 }, -/area/desert_dam/building/bar/bar_restroom) +/obj/item/clothing/head/helmet/marine/veteran/UPP, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "zC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -1500,25 +1250,6 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"zD" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"zM" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"zO" = ( -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "zS" = ( /obj/structure/flora/grass/desert/heavygrass_4, /turf/open/desert/dirt, @@ -1528,26 +1259,21 @@ /obj/effect/landmark/good_item, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"zZ" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"Aa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ae" = ( -/obj/structure/machinery/light{ +"Ac" = ( +/obj/structure/bed/bedroll, +/obj/item/trash/cheesie, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/desert_dam/building/bar/bar) +"Af" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) "Ah" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -1561,6 +1287,12 @@ }, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) +"An" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "At" = ( /obj/effect/landmark/crap_item, /turf/open/floor/interior/wood/alt, @@ -1572,14 +1304,19 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"AC" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1 - }, -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" +"AA" = ( +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) +"AH" = ( +/obj/item/prop/colony/folded_bedroll, +/obj/item/shard{ + icon_state = "medium" }, +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/bar) +"AM" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) "AT" = ( /turf/closed/shuttle/ert{ @@ -1588,45 +1325,30 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) +"AW" = ( +/obj/item/trash/candy, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) "Bj" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"Bq" = ( -/obj/structure/machinery/light/double{ - dir = 8 +"Br" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 10 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/desert_dam/building/bar/bar) -"Bu" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +/obj/structure/prop/wooden_cross{ + pixel_y = 13 }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"Bx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = -8; - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Bw" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, -/area/desert_dam/building/bar/bar) +/turf/open/mars/mars_dirt_5, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "BB" = ( /turf/closed/shuttle/ert{ icon_state = "T5"; @@ -1634,25 +1356,15 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"BK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/item/reagent_container/food/drinks/flask/canteen{ - desc = "You take a sip from your trusty UPP canteen..." - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"BG" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) -"BM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +"BJ" = ( +/turf/open/floor/plating/platingdmg3, /area/desert_dam/building/bar/bar) "BP" = ( /obj/structure/desertdam/decals/road_edge{ @@ -1669,15 +1381,16 @@ }, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"BW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"BX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags/wired{ + dir = 1 }, -/area/desert_dam/building/bar/backroom) +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) "Cc" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal9" @@ -1687,18 +1400,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ce" = ( -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Ch" = ( -/turf/open/desert/dirt{ - dir = 6; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Cm" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -1711,21 +1412,19 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"Cn" = ( -/obj/effect/landmark/survivor_spawner/upp/soldier, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) -"Cx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +"Co" = ( +/obj/item/reagent_container/food/drinks/flask/canteen{ + desc = "You take a sip from your trusty UPP canteen..." }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) +"Cp" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/desert_dam/building/bar/bar) "CA" = ( /turf/closed/shuttle/ert{ icon_state = "upp21"; @@ -1739,24 +1438,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"CH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/desert_dam/building/bar/bar_restroom) -"CI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/structure/prop/wooden_cross{ - pixel_y = 13 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "CL" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -1764,13 +1445,9 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"CX" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" - }, +"CN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) "Db" = ( /obj/structure/girder, @@ -1782,12 +1459,6 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Di" = ( -/obj/item/prop/colony/used_flare, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Dn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -1796,11 +1467,6 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"Dt" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar_restroom) "Du" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -1808,12 +1474,11 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) -"DB" = ( -/obj/structure/bed/bedroll, -/obj/item/trash/cheesie, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +"Dz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "DD" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -1822,24 +1487,10 @@ }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"DE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/desert_dam/building/bar/bar_restroom) "DO" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"DR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "DZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -1858,51 +1509,33 @@ /obj/item/ammo_casing/bullet, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Eg" = ( -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Ek" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"Eq" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/barricade/sandbags/wired{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Er" = ( /obj/item/stack/sheet/wood, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"Ev" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"Ex" = ( -/obj/item/prop/colony/used_flare, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" +"Et" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"Ez" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"EH" = ( /obj/effect/decal/sand_overlay/sand1{ dir = 8 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/desert_dam/exterior/valley/bar_valley_dam) +"EN" = ( +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "EO" = ( /turf/closed/shuttle/ert{ icon_state = "T14"; @@ -1910,6 +1543,30 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) +"ER" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/desert_dam/exterior/valley/bar_valley_dam) +"ES" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"ET" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"EU" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "EW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1922,20 +1579,6 @@ /obj/structure/flora/tree/joshua, /turf/closed/wall/rock/orange, /area/desert_dam/exterior/rock) -"Fd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"Fh" = ( -/obj/item/storage/belt/utility, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) "Fl" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/closed/shuttle/ert{ @@ -1954,14 +1597,9 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"FB" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4 - }, -/turf/open/desert/dirt{ - dir = 4; - icon_state = "desert_transition_corner1" - }, +"Fv" = ( +/obj/item/stack/sandbags, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) "FF" = ( /obj/structure/disposalpipe/segment, @@ -1969,24 +1607,12 @@ /obj/item/prop/colony/used_flare, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"FI" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached15" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Gc" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/effect/decal/sand_overlay/sand1{ +"FT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/ammo_casing/bullet, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Gd" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1997,33 +1623,28 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"GK" = ( -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) -"GP" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor{ - icon_state = "grimy" - }, +"Gr" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/backroom) +"Gs" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"GA" = ( +/obj/item/trash/semki, +/turf/open/shuttle/dropship/can_surgery, /area/desert_dam/building/bar/bar) -"GY" = ( -/obj/item/trash/used_stasis_bag, -/obj/effect/landmark/survivor_spawner/squad_leader, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +"GB" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"GZ" = ( -/obj/item/stack/barbed_wire/small_stack, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"GL" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, +/obj/item/prop/colony/used_flare, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "Hb" = ( /obj/structure/desertdam/decals/road_edge, @@ -2032,27 +1653,12 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Hl" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Hq" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 }, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"HB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/desert_dam/building/bar/bar) "HH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -2074,14 +1680,42 @@ /obj/structure/disposalpipe/segment, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ip" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5 +"HW" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"HX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/patch/upp{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/item/paper/bigred/upp{ + pixel_y = 4; + pixel_x = 3; + icon_state = "paper_words"; + item_state = "paper_words" + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"Ic" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"Io" = ( +/obj/item/ammo_box/rounds/type71/heap/empty{ + bullet_amount = 0 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) +"Ir" = ( +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/bar_restroom) "Iu" = ( /turf/open/desert/dirt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) @@ -2092,19 +1726,11 @@ /obj/item/stack/sandbags, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"IF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) -"IU" = ( -/obj/item/tool/shovel, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"IS" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "IW" = ( /turf/closed/shuttle/ert{ @@ -2113,30 +1739,40 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"Jc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"IY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/flask/canteen{ + desc = "You take a sip from your trusty UPP canteen..."; + pixel_x = 3; + pixel_y = -6 }, -/area/desert_dam/building/bar/bar) -"Jd" = ( -/obj/structure/flora/grass/desert/lightgrass_5, -/turf/open/mars{ - icon_state = "mars_dirt_5" +/obj/item/reagent_container/food/drinks/flask/canteen{ + desc = "You take a sip from your trusty UPP canteen..."; + pixel_y = 5; + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/flask/canteen{ + desc = "You take a sip from your trusty UPP canteen..."; + pixel_y = 4 }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ji" = ( -/obj/item/trash/candy, -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"Jh" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 }, -/area/desert_dam/building/bar/bar) -"Jk" = ( -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" +/obj/structure/machinery/light/double{ + dir = 1 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"Jp" = ( +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "Js" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2144,12 +1780,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"Jt" = ( -/obj/item/trash/cheesie, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Jx" = ( /obj/structure/desertdam/decals/road_edge, /turf/open/asphalt, @@ -2172,14 +1802,36 @@ name = "Fulcrum" }, /area/desert_dam/building/bar/bar) +"JY" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"JZ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) "Kf" = ( /obj/structure/bed/bedroll, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) +"Kg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/desert_dam/building/bar/bar_restroom) "Kl" = ( /obj/structure/window/framed/wood/reinforced, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) +"Kv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) "KA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -2193,21 +1845,37 @@ /obj/structure/barricade/sandbags/wired, /turf/open/desert/dirt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"Li" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 +"KE" = ( +/obj/structure/flora/grass/desert/heavygrass_10, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"KL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) +"KO" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar_restroom) +"Lc" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"Lh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/sandbags, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached13" +/obj/structure/machinery/light/double{ + dir = 1 }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Lo" = ( -/obj/effect/landmark/survivor_spawner/upp/soldier, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"Lr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/plating/platingdmg3/west, /area/desert_dam/building/bar/bar) "Lu" = ( /obj/structure/desertdam/decals/road_edge{ @@ -2216,142 +1884,87 @@ /obj/effect/decal/sand_overlay/sand1/corner1, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"Lw" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"LG" = ( +/obj/item/trash/cheesie, +/obj/item/stack/sheet/wood, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) -"LB" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/obj/structure/disposalpipe/segment, -/turf/open/asphalt, +"LO" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"LC" = ( -/obj/item/prop/colony/usedbandage, -/turf/open/desert/dirt{ - dir = 10; - icon_state = "desert_transition_edge1" - }, +"LP" = ( +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) -"LD" = ( -/obj/item/ammo_casing/bullet, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"LF" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"LJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"LW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/desert_dam/building/bar/backroom) -"LM" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached16" +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) +"Mf" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "A gas-operated rotary machine gun used by UPP heavies. Its enormous volume of fire and ammunition capacity allows the suppression of large concentrations of enemy forces. Heavy weapons training is required control its recoil, is non-functional."; + icon_state = "painless"; + item_state = "m41amk1"; + name = "\improper GSh-7.62 rotary machine gun"; + pixel_y = 7; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/upp.dmi' }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Ms" = ( -/obj/item/ammo_casing/bullet, -/obj/item/prop/colony/usedbandage{ +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"Mm" = ( +/obj/effect/decal/sand_overlay/sand1{ dir = 1 }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/desert_dam/exterior/valley/bar_valley_dam) "Mw" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"MM" = ( +"MK" = ( +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"MQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/desert_dam/building/bar/backroom) +"MT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/shovel, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"MZ" = ( /obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" + dir = 8 }, +/obj/effect/landmark/survivor_spawner/upp_medic, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) -"MW" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/structure/barricade/sandbags/wired{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" +"Nd" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 }, +/turf/open/desert/dirt/desert_transition_edge1, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ne" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"Nn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Fulcrum Airlock" }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) -"Nh" = ( -/obj/structure/flora/grass/desert/lightgrass_4, -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/obj/item/ammo_box/rounds/type71/heap/empty{ - bullet_amount = 0 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Nj" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "No" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Nu" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"NH" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/effect/landmark/survivor_spawner/upp_sapper, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/desert_dam/building/bar/bar) +"Ns" = ( +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) "NK" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -2360,12 +1973,22 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) +"NL" = ( +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"Od" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) "Oe" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"Oh" = ( +/turf/open/desert/dirt/desert_transition_edge1/north, +/area/desert_dam/exterior/valley/bar_valley_dam) "Oj" = ( /turf/closed/shuttle/ert{ icon_state = "T12"; @@ -2383,47 +2006,24 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"Ou" = ( -/obj/effect/decal/sand_overlay/sand1/corner1{ - dir = 8 - }, +"Op" = ( +/obj/effect/decal/sand_overlay/sand1, /obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Ow" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" + dir = 4 }, +/obj/item/ammo_casing/bullet, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/desert_dam/exterior/valley/bar_valley_dam) "OD" = ( /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"OJ" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 8 - }, -/obj/structure/machinery/sentry_holder/colony{ - dir = 1; - pixel_y = -10 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached19" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"OM" = ( +/obj/structure/prop/dam/wide_boulder/boulder1, +/turf/open/desert/dirt/desert_transition_edge1/northwest, +/area/desert_dam/exterior/valley/bar_valley_dam) "OO" = ( /turf/closed/wall/r_wall, /area/desert_dam/exterior/valley/bar_valley_dam) -"OS" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "OU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal4" @@ -2434,6 +2034,10 @@ /obj/item/ammo_casing/bullet, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"OV" = ( +/obj/item/storage/belt/utility, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "OZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -2444,68 +2048,41 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"Pw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"PH" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -7; - pixel_y = 35 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 1; - pixel_y = 35 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"Pp" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"PR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) -"PS" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, +"Py" = ( +/turf/open/desert/dirt/desert_transition_edge1/west, /area/desert_dam/exterior/valley/bar_valley_dam) -"PX" = ( -/obj/structure/flora/grass/desert/heavygrass_5, -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"PG" = ( +/obj/item/prop/colony/used_flare, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"PI" = ( +/obj/structure/flora/grass/desert/heavygrass_4, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"PJ" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"PW" = ( +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) -"Qc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/desert_dam/building/bar/bar_restroom) "Qk" = ( /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"Qm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/desert_dam/exterior/valley/bar_valley_dam) "QA" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/shuttle/ert{ @@ -2514,24 +2091,16 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"QG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"QI" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"QE" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1, +/area/desert_dam/exterior/valley/bar_valley_dam) +"QF" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4 }, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +/turf/open/desert/dirt/desert_transition_corner1/east, +/area/desert_dam/exterior/valley/bar_valley_dam) "QK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2542,69 +2111,26 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"QN" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "dam_checkpoint_west"; - name = "\improper Checkpoint Lock" - }, -/turf/open/asphalt, -/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "QW" = ( /obj/item/prop/colony/used_flare, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Re" = ( -/obj/item/ammo_box/rounds/type71/heap/empty{ - bullet_amount = 0 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/desert_dam/building/bar/bar) -"Rl" = ( -/obj/structure/closet/crate/supply, -/obj/item/ammo_box/magazine/misc/flares, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/desert_dam/building/bar/bar) "Ro" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Rs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/desert_dam/building/bar/bar) -"RU" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 5 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached9" - }, +"Rq" = ( +/turf/open/desert/dirt/desert_transition_edge1/northeast, /area/desert_dam/exterior/valley/bar_valley_dam) -"RW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"RG" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 5 }, +/obj/effect/spawner/gibspawner/human, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/desert_dam/building/bar/bar) "Sb" = ( /obj/effect/decal/warning_stripes{ @@ -2613,21 +2139,11 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"Sh" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"Sl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"Se" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) "So" = ( /obj/effect/decal/cleanable/dirt, @@ -2637,6 +2153,26 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) +"Sq" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar_restroom) +"SB" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 + }, +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) +"SC" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 6 + }, +/obj/item/ammo_casing/bullet, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "SE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2651,31 +2187,33 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"SG" = ( -/obj/effect/decal/sand_overlay/sand1, -/turf/open/mars{ - icon_state = "mars_dirt_5" +"SI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" }, -/area/desert_dam/exterior/valley/bar_valley_dam) +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) "SL" = ( /obj/item/ammo_magazine/rifle/type71/heap{ current_rounds = 0 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"SP" = ( -/obj/structure/machinery/light{ - dir = 4 +"SU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/sandbags/wired{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, /area/desert_dam/building/bar/bar) +"SW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement14, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "SY" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/sheet/metal, @@ -2684,12 +2222,6 @@ }, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) -"Ta" = ( -/obj/item/prop/colony/used_flare, -/turf/open/desert/dirt{ - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Tc" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -2697,66 +2229,35 @@ /obj/structure/machinery/light, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"Td" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"Tl" = ( -/obj/effect/decal/sand_overlay/sand1, -/obj/item/ammo_magazine/rifle/type71/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached12" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"TH" = ( -/obj/effect/decal/sand_overlay/sand1, +"Tm" = ( +/obj/structure/flora/grass/desert/lightgrass_1, /obj/item/ammo_casing/bullet, -/obj/effect/landmark/crap_item, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) -"TO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, +"Tq" = ( +/turf/open/asphalt/cement/cement3, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"TE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/desert_dam/exterior/valley/bar_valley_dam) +"TF" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"TM" = ( +/obj/effect/landmark/survivor_spawner/upp/soldier, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/desert_dam/building/bar/bar) -"TR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, +"TV" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/west, /area/desert_dam/building/bar/bar_restroom) "Ug" = ( /obj/item/ammo_casing/bullet, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Ui" = ( -/obj/structure/prop/dam/boulder/boulder2, -/turf/open/desert/dirt{ - dir = 8; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Ul" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood{ @@ -2771,38 +2272,50 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/desert/rock, /area/desert_dam/exterior/valley/bar_valley_dam) -"Uq" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/desert/dirt{ - icon_state = "desert_transition_corner1" - }, +"Uu" = ( +/obj/item/prop/colony/usedbandage, +/turf/open/desert/dirt/desert_transition_edge1/southwest, /area/desert_dam/exterior/valley/bar_valley_dam) -"UB" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"UJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 }, -/area/desert_dam/building/bar/bar) +/obj/item/reagent_container/food/drinks/flask/canteen{ + desc = "You take a sip from your trusty UPP canteen..." + }, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) "UK" = ( /obj/item/ammo_box/rounds/type71/heap/empty{ bullet_amount = 0 }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) -"UL" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 10 - }, -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/prop/wooden_cross{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/veteran/UPP, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, +"UM" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/desert/dirt/desert_transition_corner1/north, /area/desert_dam/exterior/valley/bar_valley_dam) +"UT" = ( +/obj/structure/closet/crate/supply, +/obj/item/ammo_box/magazine/misc/flares, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) +"UW" = ( +/turf/open/floor/carpet6_2/west, +/area/desert_dam/building/bar/bar) +"Vb" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar_restroom) "Vc" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -2811,53 +2324,38 @@ /obj/item/ammo_casing/bullet, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"Vf" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_plate/southwest, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "Vg" = ( /obj/item/stack/sandbags, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"Vj" = ( +/obj/item/roller, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/desert_dam/building/bar/bar) "Vl" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) -"Vr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/desert_dam/building/bar/bar) -"Vt" = ( -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner/upp_specialist, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/desert_dam/building/bar/bar) -"VA" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/desert_dam/building/bar/bar) -"VG" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/desert/dirt{ - dir = 9; - icon_state = "desert_transition_edge1" - }, +"Vs" = ( +/obj/effect/decal/sand_overlay/sand1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/desert_dam/exterior/valley/bar_valley_dam) "VI" = ( /turf/open/floor/plating, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"VM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/item/stack/sandbags, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) "VP" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1/corner1{ @@ -2898,6 +2396,20 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"VY" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/rifle/type71/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/can_surgery, +/area/desert_dam/building/bar/bar) +"Wa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/backroom) "Wb" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal2" @@ -2905,12 +2417,29 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) +"Wg" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar) "Wh" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/backroom) +"Wi" = ( +/turf/open/floor/plating/platingdmg1, +/area/desert_dam/building/bar/bar_restroom) +"Wo" = ( +/obj/structure/sink, +/turf/open/floor/prison/sterile_white/west, +/area/desert_dam/building/bar/bar_restroom) +"Wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/desert_dam/exterior/valley/bar_valley_dam) "WE" = ( /obj/structure/machinery/light{ dir = 4 @@ -2948,45 +2477,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) -"Xe" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/food/drinks/flask/canteen{ - desc = "You take a sip from your trusty UPP canteen..."; - pixel_x = 3; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/flask/canteen{ - desc = "You take a sip from your trusty UPP canteen..."; - pixel_y = 5; - pixel_x = -8 - }, -/obj/item/reagent_container/food/drinks/flask/canteen{ - desc = "You take a sip from your trusty UPP canteen..."; - pixel_y = 4 - }, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Xh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"Xo" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 6 - }, -/obj/item/ammo_casing/bullet, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) -"Xv" = ( -/obj/structure/prop/dam/boulder/boulder3, -/turf/open/mars{ - icon_state = "mars_dirt_5" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Xw" = ( /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) @@ -2999,6 +2493,10 @@ }, /turf/open/asphalt, /area/desert_dam/exterior/valley/bar_valley_dam) +"XE" = ( +/obj/item/stack/rods, +/turf/open/floor/grimy, +/area/desert_dam/building/bar/bar) "XF" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -3009,6 +2507,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/desert_dam/building/bar/bar) +"XK" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1 + }, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"XM" = ( +/obj/item/trash/used_stasis_bag, +/obj/effect/landmark/survivor_spawner/squad_leader, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/desert_dam/building/bar/bar) +"XQ" = ( +/obj/structure/machinery/light/double, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "XR" = ( /obj/structure/desertdam/decals/road_edge, /obj/effect/decal/sand_overlay/sand1{ @@ -3016,36 +2529,32 @@ }, /turf/open/asphalt, /area/desert_dam/interior/dam_interior/south_tunnel_entrance) -"XZ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/desert/dirt{ - dir = 5; - icon_state = "desert_transition_edge1" - }, -/area/desert_dam/exterior/valley/bar_valley_dam) "Yf" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/interior/wood, /area/desert_dam/building/bar/bar) -"Yn" = ( -/turf/open/desert/dirt{ - dir = 1; - icon_state = "desert_transition_corner1" +"Ys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/sand_overlay/sand1{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, /area/desert_dam/exterior/valley/bar_valley_dam) -"Yq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" +"Yy" = ( +/obj/effect/decal/sand_overlay/sand1, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_5, +/area/desert_dam/exterior/valley/bar_valley_dam) +"YD" = ( +/obj/effect/decal/sand_overlay/sand1/corner1{ + dir = 8 }, -/area/desert_dam/building/bar/bar) -"YA" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +/obj/effect/decal/sand_overlay/sand1{ + dir = 9 }, -/area/desert_dam/building/bar/bar) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/desert_dam/interior/dam_interior/south_tunnel_entrance) "YE" = ( /obj/effect/decal/sand_overlay/sand1, /obj/structure/desertdam/decals/road_edge{ @@ -3086,21 +2595,17 @@ opacity = 0 }, /area/desert_dam/building/bar/bar) -"YZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/desert_dam/building/bar/bar_restroom) -"ZA" = ( -/obj/effect/decal/sand_overlay/sand1{ - dir = 1 - }, -/obj/structure/barricade/sandbags/wired{ - dir = 4 - }, -/turf/open/asphalt/cement_sunbleached{ - icon_state = "cement_sunbleached4" - }, +"Zo" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/desert/dirt/desert_transition_edge1/northeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"Zq" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/desert/dirt/desert_transition_edge1/southeast, +/area/desert_dam/exterior/valley/bar_valley_dam) +"Zz" = ( +/obj/structure/prop/dam/boulder/boulder3, +/turf/open/mars/mars_dirt_5, /area/desert_dam/exterior/valley/bar_valley_dam) "ZB" = ( /obj/effect/decal/sand_overlay/sand1, @@ -3115,6 +2620,21 @@ }, /turf/open/desert/dirt, /area/desert_dam/exterior/valley/bar_valley_dam) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3/west, +/area/desert_dam/building/bar/bar) +"ZJ" = ( +/turf/open/mars/mars_dirt_5, +/area/desert_dam/building/bar/bar_restroom) +"ZM" = ( +/obj/effect/decal/sand_overlay/sand1{ + dir = 8 + }, +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached13, +/area/desert_dam/exterior/valley/bar_valley_dam) "ZS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3140,10 +2660,10 @@ xT xT xT VT -xJ -vn -TR -DE +Wo +HW +Ns +TV VT xT xT @@ -3176,12 +2696,12 @@ xT xT xT xT -mV -YZ -TR -TR -hT -TR +ZJ +Wi +Ns +Ns +dU +Ns cI xT xT @@ -3213,14 +2733,14 @@ hv hv wE Mw -wj -CH +ba +KO tW zC DZ -zm -eh -Dt +Lh +Vb +Ir xT xT Fa @@ -3248,16 +2768,16 @@ Ek zT iy Pd -rm +mW qS -Yq -aO +UW +JZ tW nz Om BB -Qc -wy +Kg +Sq vy jf kD @@ -3288,19 +2808,19 @@ iy oD Xw jt -Rs +KL tW HP YS QK CL tM -zM +oS YK -PH -jC -jC -pk +aZ +cO +cO +oV kD xT xT @@ -3325,7 +2845,7 @@ hk iy if Xh -BM +Kv ds HP YS @@ -3333,13 +2853,13 @@ YS pO kM xN -Sh +Od YY Cm nk bO -kf -pk +pD +oV xT xT xT @@ -3358,10 +2878,10 @@ xT (7,1,1) = {" jy bC -mw +Wa iV Ah -Jc +Wg cH hx bY @@ -3376,8 +2896,8 @@ bY Ul QA EO -zZ -jm +Jh +cd xz xT xT @@ -3395,29 +2915,29 @@ xT "} (8,1,1) = {" iy -LJ -kQ +MQ +hK hx bY wT bY CA -bz -hF -Lo -Cn -Re -PR -PR -PR -Bq -RW -hJ -sH -kf -SG +RG +MZ +cW +TM +jX +jD +jD +jD +qF +Dz +Io +mH +pD +Lc WO -UL +zo xT xT xT @@ -3433,31 +2953,31 @@ xT "} (9,1,1) = {" iy -du -BW +Gr +fG IW -cL +uJ CA -cL +uJ CA -GY -pM -dX -Rl -nB -GK -Fh -cu -yF -wZ -gM -kf -kf -kf -jC -IU -xI -CI +XM +uB +cg +UT +iF +Jp +OV +pS +VY +Se +yW +pD +pD +pD +cO +vE +wo +Br xT xT xT @@ -3472,31 +2992,31 @@ xT (10,1,1) = {" hv su -HB +sR IW -kp -MM -ny -py -Vt -uA -eV -Bx -nB -fP -uZ -tA -se -wZ -kf -ym -GZ -cR -kf -kf -kf -kf -pk +zi +Ic +bB +Nn +ca +Mf +HX +oP +iF +dh +Vj +ra +GA +Se +pD +vO +kd +qf +pD +pD +pD +pD +oV xT xT xT @@ -3510,32 +3030,32 @@ xT (11,1,1) = {" hv su -Sl +Lr aa hm hm hm CA -DB -NH -Cn -Cn -tu -IF -IF -IF -sE -Ne -GZ -OS -sv -kf -kf -Di -md -tl -OS -QI +Ac +kR +TM +TM +cr +EU +EU +EU +Cp +ES +kd +TF +MT +pD +pD +Aa +xq +sh +TF +An xT xT xT @@ -3548,11 +3068,11 @@ xT (12,1,1) = {" hv hv -Td +pU SY -Jc -zM -Jc +Wg +oS +Wg aa hm hm @@ -3566,14 +3086,14 @@ hm JT nk bO -wI -kf -Jt -kf -hJ -Ms -OS -gR +iJ +pD +tL +pD +Io +bs +TF +PJ xT xT xT @@ -3585,13 +3105,13 @@ xT "} (13,1,1) = {" hv -sp -Fd -nC +GB +LW +aq WG -UB +BJ WK -zM +oS So NK Dn @@ -3604,15 +3124,15 @@ Oj AT AT EO -md -kf -Jd -kf -tl -np -OS -Nj -pu +xq +pD +Pp +pD +sh +Tm +TF +Bw +XQ xT xT xT @@ -3623,32 +3143,32 @@ xT "} (14,1,1) = {" hv -sp -Vr -bu -jj -ye +GB +yZ +kO +LG +eW Xh -zM -YA +oS +lU So NK Dn ws kM xN -zM +oS wE -tK -Xe -tK -kf -Jd -gM -kf -kf -oo -mb +lW +IY +lW +pD +Pp +yW +pD +pD +PI +IS zS Iu xT @@ -3662,10 +3182,10 @@ xT (15,1,1) = {" hv hv -TO -fM -zD -bu +SU +XE +ET +kO Xh qU in @@ -3676,16 +3196,16 @@ Om BB eU Eb -Ji -Xv -aY -BK -qu -wp -pZ -kf -tl -TH +AW +Zz +Co +UJ +GL +KE +vz +pD +sh +Yy Ug KC Iu @@ -3699,31 +3219,31 @@ pW "} (16,1,1) = {" hv -QG -Ev -Ev -zD -hY +ww +dl +dl +ET +ix Er At qS Js -pA +ZG aT Fl EO Al -wj -rX -Ip -mb -Gc -aw -PX -EH -EH -EH -Xo +ba +AH +cm +IS +nS +Op +wD +wB +wB +wB +SC tE KC Iu @@ -3737,26 +3257,26 @@ pW "} (17,1,1) = {" hv -QG -Ev -GP -Ev -Ev +ww +dl +sJ +dl +dl Yf WE Xw xx xm -yo -SP -VA +SI +BX +ze BU wE -Lw -Nh +wx +mP sI -yP -oN +dw +qA yc wq nD @@ -3764,13 +3284,13 @@ Ug UK Ug KC -oK +YD VI tR -Ae -xG -Pw -LF +qd +Et +LO +Vf Db "} (18,1,1) = {" @@ -3793,17 +3313,17 @@ wE mT SL gN -xj -Tl +Mm +BG kD -hc -LC +OM +Uu Cc CE Vc XR VP -jp +bl eJ eJ eJ @@ -3820,9 +3340,9 @@ ln ln ln ln -wJ -lC -DR +MK +Wp +TE xr kD kD @@ -3831,17 +3351,17 @@ gP wO sn sn -yP -oN -VG -Ce -oF +dw +qA +tY +qT +Nd OU Ec JS ee HH -QN +dd OD ee DO @@ -3858,9 +3378,9 @@ ln ln ln xX -wJ -lC -Bu +MK +Wp +gD kD kD kD @@ -3869,17 +3389,17 @@ ej kD kD kD -ZA -MW -Hl +oR +pv +Oh xn -jI +fv OU Oe VQ bP bP -LB +aG mF bP mF @@ -3896,9 +3416,9 @@ ln ln ln ln -Ta -yP -PS +PG +dw +Gs kD nP kD @@ -3907,71 +3427,71 @@ fy QW mR vk -yP -PS -Hl -Yn -Ch +dw +Gs +Oh +LP +NL hH HI bJ BP pq -jr +tT pq pq Wb pq pq -jr +tT "} (22,1,1) = {" xT xT ln iI -Yn -Uq +LP +wh ln -Nu -Ch -RU -Ou -fR -kk -Cx -kk -kk -kk -kk -kk -nR -FI -Eg -Ch +UM +NL +ac +Ez +SB +cP +Ys +cP +cP +cP +cP +cP +Qm +Vs +Rq +NL kD hH Df hO Lu -OJ +qL pW -cZ -so -dR -dR -dJ +mJ +FT +Tq +Tq +SW pW "} (23,1,1) = {" xT xT xT -Yn -jw -bI -is -wJ +LP +jk +yi +yB +MK kD kD kD @@ -4005,11 +3525,11 @@ xT xT xT xT -wJ +MK Ug Ug -Eg -Ch +Rq +NL kD kD kD @@ -4043,8 +3563,8 @@ xT xT xT xT -FB -ki +QF +Fv px kD kD @@ -4080,9 +3600,9 @@ xT (26,1,1) = {" xT xT -Yn -is -Ow +LP +yB +QE kD sT ug @@ -4118,9 +3638,9 @@ xT (27,1,1) = {" xT xT -Ch -XZ -Ch +NL +Zo +NL kD da wv @@ -4131,19 +3651,19 @@ hH Df hO eI -mf -lT -Ui -zO +tb +Py +hf +PW kD kD kD kD -mf -zO +tb +PW nP kD -Jk +EN xT xT xT @@ -4156,7 +3676,7 @@ xT (28,1,1) = {" xT xT -zO +PW kD kD kD @@ -4169,18 +3689,18 @@ hH HI bJ eI -Hl +Oh Un -iL -Ch +pr +NL kD kD kD kD -Hl -rR +Oh +AM kD -mf +tb xT xT xT @@ -4193,8 +3713,8 @@ xT "} (29,1,1) = {" xT -Yn -yk +LP +Zq QW kD Fs @@ -4207,17 +3727,17 @@ hH HI bJ eI -Eg -uF -Ch +Rq +gY +NL Ug kD mL mR -mf -Ce -qx -lT +tb +qT +AA +Py xT xT xT @@ -4230,8 +3750,8 @@ xT xT "} (30,1,1) = {" -is -wJ +yB +MK kD Ug kD @@ -4250,9 +3770,9 @@ kD Ug kD iz -mf -lT -Ce +tb +Py +qT ln xT ln @@ -4268,8 +3788,8 @@ xT xT "} (31,1,1) = {" -XZ -AC +Zo +XK Ug kD nP @@ -4287,8 +3807,8 @@ xt kD QW kD -mf -qe +tb +kZ ln xT xT @@ -4323,9 +3843,9 @@ bJ eI kD ZY -xP -LD -Ce +iO +an +qT xT xT xT @@ -4359,9 +3879,9 @@ HI HI bJ nt -mf -lT -Ce +tb +Py +qT xT xT xT @@ -4397,7 +3917,7 @@ HV gA zl YE -Hl +Oh xT xT xT @@ -4458,22 +3978,22 @@ xT xT "} (36,1,1) = {" -ga -Li -vZ -fk -CX -kB +ZM +VM +Af +JY +jd +ER dQ Df rj WZ -Eq +bk Fr kD sn Fr -Hl +Oh xT xT xT @@ -4501,18 +4021,18 @@ eK eK eK OO -LM +sF WY vR HI WZ -oy +jq nP mR xg kD -Ex -uF +CN +gY xT xT xT diff --git a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm index 5c186f0bdd..1007c8348e 100644 --- a/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm +++ b/maps/map_files/FOP_v2_Cellblocks/Prison_Station_FOP.dmm @@ -1,16 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/north) "aab" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -26,14 +14,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret/testing) -"aae" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding9" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/north) "aaf" = ( /obj/effect/landmark/corpsespawner/prisoner, /obj/effect/decal/cleanable/blood/splatter, @@ -102,295 +82,6 @@ /obj/structure/machinery/door/window/northright, /turf/open/floor/plating, /area/prison/research/secret/testing) -"aao" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aaq" = ( -/obj/structure/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aar" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/shard, -/obj/item/circuitboard/airlock, -/obj/item/stack/cable_coil/cut{ - amount = 1; - icon_state = "coil1"; - name = "cable piece" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/research/secret/testing) -"aas" = ( -/obj/structure/machinery/door/window/southright, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/research/secret/testing) -"aat" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door_control{ - id = "biological_testing_1"; - name = "Containment Shutter Control" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aau" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aav" = ( -/obj/structure/closet/l3closet, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/baguette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aaw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/north) -"aax" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/north) -"aay" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aaz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/research/secret/testing) -"aaA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - id = "biological_testing_2"; - name = "Containment Shutter Control" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aaB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/research/secret/testing) -"aaC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"aaD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aaE" = ( -/obj/structure/machinery/smartfridge/secure, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"aaH" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"aaI" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aaL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/testing) -"aaM" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/testing) -"aaP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/testing) -"aaQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) "aaR" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/disposalpipe/segment{ @@ -408,194 +99,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"aaT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aaU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/testing) -"aaV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aaW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aaX" = ( -/obj/item/paper/prison_station/test_log, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aaY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aaZ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"abd" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/obj/structure/sign/safety/nonpress{ - pixel_x = 30 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"abh" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"abi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abl" = ( -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abn" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) "abr" = ( /obj/structure/disposalpipe/trunk, /obj/structure/disposaloutlet{ @@ -604,56 +107,6 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"abs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"abt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"abu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abw" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/testing) -"abx" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"aby" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) "abz" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/disposalpipe/segment, @@ -663,104 +116,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, /area/prison/research/secret/bioengineering) -"abB" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"abC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/research/secret/testing) -"abD" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abF" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abG" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"abI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"abJ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"abM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) "abN" = ( /obj/structure/window/reinforced{ dir = 8 @@ -770,29 +125,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret/bioengineering) -"abO" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"abP" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"abQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "abR" = ( /obj/structure/machinery/flasher{ id = "panopticon" @@ -820,136 +152,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/north) -"abU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"abV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell"; - opacity = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "abW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"abX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"abZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"aca" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"acb" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"acc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"acd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"ace" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"acf" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) "acg" = ( /turf/closed/wall/r_wall/prison, /area/prison/research/secret/bioengineering) -"ach" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"acj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"ack" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "acl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -970,19 +180,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"aco" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/north) "acp" = ( /obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/prison, @@ -1004,164 +201,28 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"act" = ( -/obj/structure/machinery/shower{ +"acE" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/research/secret/testing) +"acF" = ( +/turf/open/floor/plating, +/area/prison/research/secret/testing) +"acH" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/research/secret/testing) +"acK" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/maxsec/north) +"acL" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"acM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/north) -"acu" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"acv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"acw" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"acx" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"acy" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"acz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"acA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/testing) -"acB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress{ - pixel_x = -30 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"acC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"acD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"acE" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/research/secret/testing) -"acF" = ( -/turf/open/floor/plating, -/area/prison/research/secret/testing) -"acG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"acH" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/research/secret/testing) -"acI" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"acJ" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/research/secret/bioengineering) -"acK" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/maxsec/north) -"acL" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"acM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/plating, /area/prison/cellblock/maxsec/north) "acN" = ( /obj/structure/pipes/vents/pump/on, @@ -1194,28 +255,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"acT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/research/secret/bioengineering) -"acV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"acW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "acX" = ( /obj/structure/window/framed/prison/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1249,57 +288,12 @@ "add" = ( /turf/closed/wall/r_wall/prison, /area/prison/cellblock/maxsec/north) -"ade" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "Biological Testing" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) "adf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"adg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"adh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"adi" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) -"adj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"adk" = ( -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "adl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1350,116 +344,10 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"adt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, -/area/prison/research/secret/testing) -"adu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/testing) -"adv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell Access"; - req_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, -/area/prison/research/secret/testing) -"adx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/bioengineering) -"ady" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/bioengineering) -"adz" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) "adA" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"adB" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/up, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adC" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adD" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "adF" = ( /obj/structure/machinery/light{ dir = 4 @@ -1483,18 +371,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret/containment) -"adI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "podhatchfloor" - }, -/area/prison/research/secret/testing) "adJ" = ( /obj/structure/toilet{ dir = 8; @@ -1503,99 +379,6 @@ /obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/prison, /area/prison/research/secret/containment) -"adK" = ( -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"adL" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"adM" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"adN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"adO" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/south) -"adP" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adR" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell"; - opacity = 0; - req_access = null - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/paper/prison_station/nursery_rhyme, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "adT" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -1603,71 +386,12 @@ /obj/item/paper/prison_station/nursery_rhyme, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"adU" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/north) -"adV" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Cell"; - opacity = 0; - req_access = null - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"adW" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/eastleft, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/north) "adX" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"adY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"adZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "aea" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, @@ -1682,65 +406,10 @@ }, /turf/open/floor/plating, /area/prison/research/secret/containment) -"aec" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Human Containment Pen" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) "aed" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, /area/prison/research/secret/containment) -"aee" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aef" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aeg" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aeh" = ( -/obj/item/folder/black, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aei" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "aej" = ( /obj/structure/machinery/light{ dir = 8 @@ -1757,33 +426,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/organic/grass, /area/prison/yard) -"aem" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aen" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"aeo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/paper/prison_station/nursery_rhyme, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "aep" = ( /obj/structure/machinery/flasher{ id = "panopticon" @@ -1803,36 +445,6 @@ /obj/item/paper/prison_station/nursery_rhyme, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"aer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aes" = ( -/obj/structure/disposaloutlet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aet" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "aeu" = ( /obj/structure/sink{ dir = 8; @@ -1846,33 +458,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/north) -"aew" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aex" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"aey" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "aez" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -1888,17 +473,6 @@ }, /turf/open/floor/prison, /area/prison/security/monitoring/maxsec/panopticon) -"aeB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/maxsec/panopticon) "aeC" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -1912,65 +486,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"aeE" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) -"aeK" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "aeL" = ( /obj/item/paper/prison_station/nursery_rhyme, /obj/item/paper/prison_station/nursery_rhyme{ @@ -2006,84 +521,9 @@ "aeQ" = ( /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"aeR" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"aeT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeU" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aeV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"aeW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aeX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"aeY" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) "aeZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/research/secret/bioengineering) -"afa" = ( -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "afb" = ( /obj/item/shard, /obj/effect/decal/warning_stripes{ @@ -2099,20 +539,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"afd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "afe" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/up, @@ -2122,19 +548,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"afg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) "afh" = ( /obj/structure/machinery/light{ dir = 8 @@ -2142,15 +555,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"afi" = ( -/obj/structure/xenoautopsy/tank/larva{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/bioengineering) "afj" = ( /obj/structure/machinery/light, /turf/open/floor/prison, @@ -2159,129 +563,11 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, /area/prison/security/monitoring/maxsec/panopticon) -"afl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afm" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afo" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret/containment) -"afp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret/containment) -"afs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) -"afv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "afw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/ammo_casing, /turf/open/floor/prison, /area/prison/cellblock/highsec/south/north) -"afx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"afy" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"afA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/bioengineering) -"afB" = ( -/obj/structure/machinery/door/window/eastright, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "afC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2302,127 +588,10 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/north) -"afE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Panopticon Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/maxsec/panopticon) -"afF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/maxsec/panopticon) -"afG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) "afH" = ( /obj/effect/alien/weeds/node, /turf/open/floor/prison, /area/prison/cellblock/highsec/south/north) -"afI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"afJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afL" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/bioengineering) -"afM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"afO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/north) -"afP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/bioengineering) -"afQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afS" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afU" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"afV" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) "afW" = ( /obj/structure/bed, /obj/effect/landmark/corpsespawner/prisoner, @@ -2431,82 +600,10 @@ "afY" = ( /turf/open/floor/plating, /area/prison/research/secret/containment) -"aga" = ( -/obj/structure/machinery/smartfridge/secure/virology, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"agb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/bioengineering) -"agc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Bioengineering" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) -"agd" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/bioengineering) "age" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/research/secret/bioengineering) -"agf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/closet/radiation, -/obj/item/device/motiondetector, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"agg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/secure_closet/security, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"agh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/closet/secure_closet/security, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"agi" = ( -/obj/structure/closet/radiation, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) "agj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/up, @@ -2531,40 +628,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/prison, /area/prison/research/secret/containment) -"ago" = ( -/obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"agp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"agq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"agr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "ags" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2627,46 +690,6 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"agD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"agE" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"agF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Panopticon Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/maxsec/panopticon) -"agG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Panopticon Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/maxsec/panopticon) "agH" = ( /obj/structure/sink{ dir = 8; @@ -2675,18 +698,6 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/north) -"agI" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "agJ" = ( /turf/closed/wall/prison, /area/prison/research/secret/containment) @@ -2704,17 +715,6 @@ /obj/structure/bed, /turf/open/floor/prison, /area/prison/research/secret/containment) -"agN" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "agP" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -2731,33 +731,9 @@ }, /turf/open/floor/prison, /area/prison/research/secret/containment) -"agS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"agT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) "agU" = ( /turf/closed/wall/r_wall/prison, /area/prison/security/monitoring/maxsec/panopticon) -"agV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret/containment) "agW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -2770,28 +746,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret/containment) -"agY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) -"agZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret/containment) -"aha" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) "ahb" = ( /obj/structure/toilet{ dir = 8; @@ -2799,33 +753,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret/containment) -"ahc" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"ahd" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"ahe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) "ahf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2857,58 +784,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret) -"ahi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahj" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahk" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahl" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret) -"ahn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "aho" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -2919,55 +794,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"ahq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"ahr" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"ahs" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"aht" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"ahu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"ahv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) "ahw" = ( /obj/structure/machinery/light/small, /turf/open/floor/prison, @@ -2982,63 +808,14 @@ /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, /area/prison/research/secret/containment) -"ahB" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Simian Containment Pen" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) "ahC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, /area/prison/research/secret/containment) -"ahD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/south) -"ahE" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"ahF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ahH" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) "ahI" = ( /obj/item/device/motiondetector, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"ahJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/south) "ahK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -3051,12 +828,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret) -"ahM" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/main) "ahN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/security/monitoring/maxsec/panopticon) @@ -3066,27 +837,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/north) -"ahP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"ahQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/south) "ahT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/good_item, @@ -3104,110 +854,12 @@ }, /turf/open/floor/prison, /area/prison/research/secret/containment) -"aia" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aib" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "Test Subject Containment" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) -"aid" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aie" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "Test Subject Containment" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aif" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aih" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/cellblock/highsec/north/south) "aii" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/prison, /area/prison/research/secret) -"aij" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aik" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Maximum-Security Panopticon" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"ail" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"ain" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"aio" = ( -/obj/item/paper/prison_station/monkey_note, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) "aip" = ( /obj/structure/machinery/shower{ dir = 1 @@ -3229,57 +881,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret) -"air" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"ais" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret) -"ait" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aiu" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aiv" = ( -/obj/structure/largecrate/supply/weapons/flamers, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aiw" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) "aix" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3289,79 +890,9 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"aiy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Maximum-Security Panopticon" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"aiz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"aiB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/north) -"aiC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Simian Containment Pen" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) "aiD" = ( /turf/closed/wall/prison, /area/prison/research/secret/dissection) -"aiE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aiF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aiG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret) -"aiH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "aiI" = ( /turf/closed/wall/r_wall/prison, /area/prison/research/secret) @@ -3389,14 +920,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"aiP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/prison/research/secret/dissection) "aiQ" = ( /obj/structure/morgue/crematorium{ id = "crema_prison" @@ -3427,42 +950,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"aiW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aiX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aiY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"aiZ" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "aja" = ( /obj/structure/surface/rack, /obj/item/weapon/baton, @@ -3478,27 +965,6 @@ /obj/structure/machinery/vending/security, /turf/open/floor/prison, /area/prison/research/secret) -"ajd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Maximum-Security Panopticon" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) -"aje" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Maximum-Security Panopticon" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/north) "ajf" = ( /obj/structure/machinery/light{ dir = 4 @@ -3511,12 +977,6 @@ }, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"aji" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "ajj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, @@ -3530,74 +990,14 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ajm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "ajn" = ( /obj/structure/machinery/optable, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"ajo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "ajp" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/research/secret/chemistry) -"ajq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"ajr" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"ajs" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"ajt" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"aju" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) "ajv" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -3659,26 +1059,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/south) -"ajD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"ajE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "ajF" = ( /obj/structure/machinery/flasher{ id = "suspended_EEN" @@ -3693,33 +1073,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/prison, /area/prison/research/secret) -"ajI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"ajJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/chemistry) -"ajK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/chemistry) -"ajL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) "ajM" = ( /obj/structure/window/framed/prison/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3729,12 +1082,6 @@ }, /turf/open/floor/plating, /area/prison/research/secret/chemistry) -"ajN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hanger/research) "ajO" = ( /turf/open/floor/prison, /area/prison/hanger/research) @@ -3745,16 +1092,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ajQ" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "ajR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3766,26 +1103,6 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"ajS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) -"ajT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "ajU" = ( /obj/structure/machinery/door/airlock/prison{ density = 0; @@ -3797,41 +1114,12 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"ajV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"ajW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"ajX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "ajY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/closed/wall/r_wall/prison, /area/prison/research/secret/containment) -"ajZ" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/containment) "aka" = ( /obj/structure/sink{ dir = 8; @@ -3848,59 +1136,6 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"ake" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Chemistry" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/research/secret/chemistry) -"akg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"aki" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/chemistry) -"akj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/prison/research/secret/chemistry) -"akk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) "akl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, @@ -3911,127 +1146,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ako" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell Access"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"akp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) -"akq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/flasher_button{ - id = "suspended_WWN"; - pixel_x = 24 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"akr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/flasher_button{ - id = "suspended_WEN"; - pixel_x = -24 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"aks" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) -"akt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell Access" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"akv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"akw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"akx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/flasher_button{ - id = "suspended_EWN"; - pixel_x = 24 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) -"aky" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/flasher_button{ - id = "suspended_EEN"; - pixel_x = -24 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "akA" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, @@ -4039,14 +1153,6 @@ "akB" = ( /turf/open/floor/plating, /area/prison/maintenance/research_medbay) -"akC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/maintenance/research_medbay) "akD" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -4070,28 +1176,6 @@ }, /turf/open/floor/plating, /area/prison/maintenance/research_medbay) -"akH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"akI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) "akJ" = ( /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/prison, @@ -4113,59 +1197,16 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"akO" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"akP" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/prison/research/secret) "akQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/prison, /area/prison/research/secret) -"akR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "akS" = ( /obj/structure/machinery/smartfridge, /turf/open/floor/plating, /area/prison/research/secret/chemistry) -"akT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"akU" = ( -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) "akV" = ( /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) @@ -4175,32 +1216,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"akX" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"akY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research/secret/chemistry) -"akZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) "alb" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -4208,47 +1223,15 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"alc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/siding{ - icon_state = "siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) "ald" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ale" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "alf" = ( /turf/closed/wall/r_wall/prison, /area/prison/research/secret/dissection) -"alg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "alh" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -4256,38 +1239,6 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"ali" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/south) -"alj" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/eastleft, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/south) -"alk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "all" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -4317,18 +1268,6 @@ /obj/item/reagent_container/food/drinks/bottle/whiskey, /turf/open/floor/plating, /area/prison/maintenance/research_medbay) -"alq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/siding{ - icon_state = "siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) "als" = ( /obj/structure/machinery/light{ dir = 1 @@ -4338,6 +1277,9 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) +"alu" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) "alv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -4426,6 +1368,11 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/prison/research/secret/dissection) +"alN" = ( +/obj/structure/machinery/door/window/southright, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) "alO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4435,120 +1382,24 @@ }, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"alP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/research/secret) -"alQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "alR" = ( /turf/closed/wall/prison, /area/prison/research/secret/chemistry) -"alS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) -"alT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) -"alU" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) -"alV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) -"alW" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret/chemistry) "alX" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/prison, /area/prison/hanger/research) -"alY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"alZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/prison/cellblock/maxsec/south) "ama" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/scalpel, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"amb" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/research/secret) "amc" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/research/secret/chemistry) -"amd" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "ame" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -4559,29 +1410,12 @@ /obj/structure/bed, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"amg" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "amh" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ami" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) "amj" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/prison, @@ -4590,74 +1424,11 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"aml" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "amm" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"amn" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) -"amo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/bonegel, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"amp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"amq" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"amr" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) "ams" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/hanger/research) @@ -4671,24 +1442,6 @@ "amu" = ( /turf/open/floor/plating, /area/prison/hanger/research) -"amv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/prison/cellblock/maxsec/south) -"amw" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) "amx" = ( /obj/structure/machinery/flasher{ id = "suspended_WWN" @@ -4715,24 +1468,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/south) -"amB" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/maxsec/south) -"amC" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) "amD" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/knife/butcher, @@ -4760,125 +1495,36 @@ /obj/structure/closet/secure_closet/medical2, /turf/open/floor/prison, /area/prison/research/secret/dissection) -"amH" = ( +"amP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" + icon_state = "N" }, -/area/prison/research/secret) -"amI" = ( +/turf/open/floor/plating, +/area/prison/hanger/research) +"amQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/prison/research/secret) -"amJ" = ( +/turf/open/floor/plating, +/area/prison/hanger/research) +"amV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/prison/research/secret) -"amK" = ( +/turf/open/floor/plating, +/area/prison/hanger/research) +"amW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/prison/research/secret) -"amL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"amM" = ( -/obj/structure/machinery/computer/rdconsole, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"amN" = ( -/obj/structure/machinery/computer/mecha, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"amO" = ( -/obj/structure/machinery/computer/robotics, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"amP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating, -/area/prison/hanger/research) -"amQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/research) -"amR" = ( -/obj/structure/lamarr, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"amS" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hanger/research) -"amT" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"amV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/research) -"amW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 30 +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 30 }, /turf/open/floor/plating, /area/prison/hanger/research) @@ -4889,48 +1535,12 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"ana" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/maxsec/south) "anc" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/prison/security/checkpoint/maxsec_highsec) "and" = ( /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"ane" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/south) -"anf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/maxsec/south) "ang" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ density = 0; @@ -4954,73 +1564,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"anj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"ank" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"anl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/prison/medbay/surgery) -"anm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay/surgery) -"ann" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"ano" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "research_secret"; - name = "Classified Research Shutters" - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/research/secret) -"anp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "research_secret"; - name = "Classified Research Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret) -"anq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "research_secret"; - name = "Classified Research Shutters" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research/secret) "anr" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/carpet, @@ -5032,15 +1575,6 @@ "ant" = ( /turf/open/floor/carpet, /area/prison/research/RD) -"anu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) "anv" = ( /turf/closed/wall/prison, /area/prison/research/RD) @@ -5084,117 +1618,10 @@ "anB" = ( /turf/closed/wall/prison, /area/prison/security/checkpoint/maxsec_highsec) -"anC" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"anD" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"anE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"anF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"anG" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) "anH" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, /area/prison/security/checkpoint/maxsec_highsec) -"anI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"anJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"anK" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"anL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"anM" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay/surgery) -"anN" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay/surgery) -"anO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"anP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/research) "anQ" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, @@ -5227,33 +1654,6 @@ }, /turf/open/floor/plating, /area/prison/maintenance/research_medbay) -"anW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"anY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"anZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) "aoa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, @@ -5261,32 +1661,6 @@ "aoc" = ( /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec_highsec) -"aod" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"aoe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aof" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) "aog" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5303,12 +1677,6 @@ }, /turf/open/floor/plating, /area/prison/hanger/research) -"aoj" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "Research Landing Zone" - }, -/turf/open/floor/plating, -/area/prison/hanger/research) "aok" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5324,88 +1692,19 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/south) -"aom" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/north/north) "aon" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating, /area/prison/cellblock/highsec/north/north) -"aoo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) "aop" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/north/north) -"aoq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/north) "aor" = ( /turf/closed/wall/prison, /area/prison/cellblock/highsec/north/north) -"aos" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/north) -"aot" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"aou" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aov" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aow" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"aox" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/north) "aoy" = ( /obj/structure/machinery/flasher{ id = "suspended_WES" @@ -5424,102 +1723,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/maxsec/south) -"aoB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"aoC" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"aoD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay/surgery) -"aoE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay/surgery) -"aoF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"aoG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Operating Theatre" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"aoH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding6" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aoI" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding9" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aoJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research) "aoK" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -5530,74 +1733,10 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/carpet, /area/prison/research/RD) -"aoN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"aoO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aoP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aoQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aoR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) "aoS" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/prison, /area/prison/cellblock/highsec/north/north) -"aoT" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aoU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aoV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aoW" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) "aoX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -5610,34 +1749,6 @@ }, /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec_highsec) -"aoZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"apa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"apc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) "ape" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/disposalpipe/segment{ @@ -5669,47 +1780,6 @@ }, /turf/open/floor/prison, /area/prison/cellblock/maxsec/south) -"apj" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/north/north) -"apk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"apl" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/north) -"apm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"apn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"apo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) "app" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -5725,13 +1795,6 @@ }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"aps" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) "apt" = ( /turf/closed/wall/r_wall/prison, /area/prison/medbay) @@ -5746,34 +1809,6 @@ "apv" = ( /turf/closed/wall/r_wall/prison, /area/prison/medbay/surgery) -"apw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"apy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/surgery/FixOVein, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/tool/surgery/cautery, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay/surgery) -"apz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) "apA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -5792,93 +1827,9 @@ }, /turf/open/floor/plating, /area/prison/hanger/research) -"apC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"apD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"apE" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"apF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/medbay/surgery) -"apG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research) -"apH" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"apI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"apJ" = ( -/obj/structure/window/reinforced, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/medbay) "apK" = ( /turf/closed/wall/prison, /area/prison/medbay) -"apL" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"apM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/medbay) "apN" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/ammo_magazine/rifle/m16/ap, @@ -5887,7653 +1838,7608 @@ "apP" = ( /turf/closed/wall/prison, /area/prison/medbay/surgery) -"apQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"apR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"apS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"apV" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating, +/area/prison/hanger/research) +"aqd" = ( +/turf/closed/wall/r_wall/prison, /area/prison/research/RD) -"apT" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +"aqj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 8 +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/prison/research/RD) -"apU" = ( +/turf/open/floor/plating, +/area/prison/hanger/research) +"aqk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/area/prison/research/RD) -"apV" = ( -/obj/effect/landmark/good_item, /turf/open/floor/plating, /area/prison/hanger/research) -"apW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"apX" = ( +"aqs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"aqx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/highsec/north/north) -"apY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/flasher_button{ + id = "suspended_EWS"; + pixel_x = 24 + }, +/turf/open/floor/prison, +/area/prison/cellblock/maxsec/south) +"aqS" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/prison/cellblock/maxsec/south) +"aro" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hanger/research) +"arB" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "Morgue" }, -/area/prison/cellblock/highsec/north/north) -"apZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"arC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/highsec/north/north) -"aqa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"arE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/highsec/north/north) -"aqb" = ( +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"arF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aqc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Morgue" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"arI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/highsec/north/north) -"aqd" = ( +/turf/open/floor/plating, +/area/prison/hanger/research) +"arJ" = ( /turf/closed/wall/r_wall/prison, -/area/prison/research/RD) -"aqe" = ( -/obj/structure/pipes/vents/pump{ +/area/prison/hangar_storage/research) +"arW" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/turf/open/floor/prison, +/area/prison/medbay) +"arX" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/prison, +/area/prison/medbay) +"arZ" = ( +/obj/structure/morgue, +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"asa" = ( +/obj/structure/morgue{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"asi" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/north/north) -"aqf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +"asj" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/highsec/north/north) -"aqg" = ( +"asl" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 8 + }, +/turf/open/floor/prison, +/area/prison/medbay) +"atf" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/medbay/morgue) +"aty" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hangar_storage/research) +"atE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"atG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"atJ" = ( +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"atK" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "Research Containment Locker" }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/research/secret) +"atU" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/hangar_storage/research) +"atZ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqi" = ( +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"aui" = ( +/obj/item/device/camera, +/turf/open/floor/prison, +/area/prison/research/secret) +"aut" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/residential/north) +"aux" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"auy" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison, +/area/prison/cellblock/maxsec/south) +"auz" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"auI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"auJ" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hangar_storage/research) +"auW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Bedroom" }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/wood, +/area/prison/residential/north) +"auZ" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"avl" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/residential/north) +"avm" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/residential/north) +"avw" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/turf/open/floor/wood, +/area/prison/residential/north) +"avx" = ( +/obj/structure/closet/crate/trashcart, /turf/open/floor/plating, -/area/prison/hanger/research) -"aqk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/prison/residential/north) +"avy" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"avB" = ( +/turf/closed/wall/prison, +/area/prison/research) +"avH" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/north/north) +"avJ" = ( +/obj/structure/closet, +/turf/open/floor/wood, +/area/prison/chapel) +"avK" = ( +/obj/structure/closet, +/obj/item/storage/bible{ + deity_name = "Allah"; + icon_state = "koran"; + name = "koran" }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/wood, +/area/prison/chapel) +"avL" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/hanger/research) -"aql" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/residential/north) +"avM" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/wood, +/area/prison/residential/north) +"avN" = ( +/turf/closed/wall/prison, +/area/prison/residential/north) +"avP" = ( +/obj/structure/closet, +/obj/item/storage/bible, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqm" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/chapel) +"avS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqn" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/residential/north) +"avT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/wood, +/area/prison/residential/north) +"avU" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lamp/menorah, +/turf/open/floor/wood, +/area/prison/chapel) +"avV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/highsec/north/north) -"aqq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/prison/chapel) +"awe" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/medbay) +"awf" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/research) +"awi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/residential/north) +"awk" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/flasher_button{ - id = "suspended_WWS"; - pixel_x = 24 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/prison/residential/north) +"awo" = ( +/turf/open/floor/plating, +/area/prison/residential/north) +"awr" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/cellblock/maxsec/south) -"aqr" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/prison/residential/north) +"awx" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"awF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/prison/hanger/research) +"awI" = ( +/turf/open/floor/carpet, +/area/prison/residential/north) +"awJ" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/flasher_button{ - id = "suspended_WES"; - pixel_x = -24 +/turf/open/floor/carpet, +/area/prison/residential/north) +"awK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/residential/north) +"awM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/carpet, +/area/prison/residential/north) +"awV" = ( +/turf/open/floor/wood, +/area/prison/chapel) +"awW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/maxsec/south) -"aqs" = ( +/turf/open/floor/wood, +/area/prison/chapel) +"awX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/wood, +/area/prison/chapel) +"axb" = ( +/turf/open/floor/wood, +/area/prison/residential/north) +"axh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"axr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /turf/open/floor/plating, /area/prison/cellblock/maxsec/south) -"aqt" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light{ - dir = 8 +"axt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"axI" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/access/north) +"axJ" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/access/north) +"axL" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/highsec/north/north) +"axM" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/chapel) +"axN" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"axO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/medbay) -"aqu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Medical Cell" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"axP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Civilian Residences Emergency Access" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"axQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/medbay) -"aqv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"axR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/medbay) -"aqw" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"axS" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/checkpoint/maxsec) +"axY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aqx" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/wood, +/area/prison/chapel) +"ayc" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/machinery/flasher_button{ - id = "suspended_EWS"; - pixel_x = 24 +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_1" }, +/obj/item/weapon/gun/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, /turf/open/floor/prison, -/area/prison/cellblock/maxsec/south) -"aqy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/flasher_button{ - id = "suspended_EES"; - pixel_x = -24 +/area/prison/research/secret) +"ayk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/prison/residential/north) +"ayn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/maxsec/south) -"aqz" = ( +/turf/open/floor/wood, +/area/prison/residential/north) +"ayy" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/maintenance/staff_research) +"ayz" = ( +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"ayB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/holosign/surgery{ - id = "otice" - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "Operating Theatre" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + name = "Residential Apartment" }, -/area/prison/medbay/surgery) -"aqA" = ( -/obj/structure/machinery/door/airlock/glass_command, +/turf/open/floor/wood, +/area/prison/residential/north) +"ayD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/research/RD) -"aqB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"aqC" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Civilian Residences Emergency Access" }, -/area/prison/research/RD) -"aqD" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/research/RD) -"aqE" = ( -/obj/structure/displaycase/destroyed, -/obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/research/RD) -"aqF" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/platform, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "North Civilian Residences Access" }, -/area/prison/landing/console2) -"aqG" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ayM" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/checkpoint/maxsec) +"ayS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aqH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/north) -"aqI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aqJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aqK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"aqL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqM" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqN" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqO" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec_highsec) -"aqQ" = ( -/obj/structure/surface/table/reinforced{ +/obj/structure/surface/table/woodentable{ flipped = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"aqR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced{ +/turf/open/floor/wood, +/area/prison/chapel) +"ayT" = ( +/obj/item/stack/rods, +/obj/structure/surface/table/woodentable{ flipped = 1 }, +/turf/open/floor/wood, +/area/prison/chapel) +"ayU" = ( /obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aqS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/wood, +/area/prison/chapel) +"ayZ" = ( +/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/prison, -/area/prison/cellblock/maxsec/south) -"aqT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/area/prison/research/secret) +"azb" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"azd" = ( +/turf/closed/wall/r_wall/prison_unmeltable, /area/prison/medbay) -"aqU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" +"azm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, +/turf/open/floor/prison, /area/prison/medbay) -"aqV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"azr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aqW" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"aqX" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"aqY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Security Booth" }, -/area/prison/medbay) -"aqZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison, +/area/prison/research) +"azz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Staff-Research Maintenance" }, -/area/prison/medbay) -"ara" = ( +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"azA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"arb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"azB" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"arc" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"azC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/medbay) -"ard" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"azH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"azJ" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/door/window/northleft, -/obj/structure/machinery/door_control{ - id = "research_secret"; - name = "Classified Research Lockdown" - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/RD) -"are" = ( -/obj/structure/closet/secure_closet/RD, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/organic/grass, +/area/prison/residential/north) +"azK" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/research/RD) -"arf" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +/turf/open/organic/grass, +/area/prison/residential/north) +"azO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/research) -"arh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"azP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"azQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "North Civilian Residences Access" }, -/area/prison/research) -"ari" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"aAb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/girder, +/turf/open/floor/wood, +/area/prison/chapel) +"aAc" = ( +/obj/structure/girder, +/turf/open/floor/wood, +/area/prison/chapel) +"aAf" = ( +/turf/open/floor/carpet, +/area/prison/chapel) +"aAg" = ( +/obj/item/paper/prison_station/chapel_program, +/turf/open/floor/carpet, +/area/prison/chapel) +"aAh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/carpet, +/area/prison/chapel) +"aAl" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +/turf/open/floor/wood, +/area/prison/chapel) +"aAm" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/wood, +/area/prison/chapel) +"aAv" = ( +/turf/closed/wall/r_wall/prison, /area/prison/research) -"arj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +"aAO" = ( +/turf/open/space, +/area/space) +"aBf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aBg" = ( +/turf/closed/wall/prison, +/area/prison/recreation/highsec/n) +"aBi" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aBj" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/recreation/highsec/n) +"aBk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aBn" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/organic/grass, +/area/prison/residential/north) +"aBq" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"ark" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + pixel_x = -4 }, -/area/prison/research) -"arl" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/south) +"aBv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" + icon_state = "NE-out" }, -/area/prison/research) -"arm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"aBD" = ( +/turf/closed/wall/prison, +/area/prison/chapel) +"aBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Chaplain's Office" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/wood, +/area/prison/chapel) +"aBF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/chapel) +"aBJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 8 +/obj/item/tool/pen{ + pixel_x = 12; + pixel_y = 8 }, -/area/prison/research/RD) -"arn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/machinery/power/apc{ - dir = 4; +/obj/item/device/radio/intercom{ + frequency = 1463; pixel_x = 28; - start_charge = 0 + pixel_y = -28 }, -/turf/open/floor/prison{ - dir = 8 +/turf/open/floor/wood, +/area/prison/chapel) +"aBK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/area/prison/research/RD) -"aro" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"aBL" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/hanger/research) -"arp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/area/prison/security/checkpoint/maxsec) +"aBS" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/prison, +/area/prison/medbay) +"aBU" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/medbay/foyer) +"aCe" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aCf" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aCl" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/highsec/north/south) +"aCo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aCp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aCq" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aCr" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"arq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"arr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"ars" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"art" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/girder, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/north) +"aCt" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/recreation/highsec/n) +"aCx" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/prison/hallway/east) +"aCH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/prison/chapel) +"aCI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/highsec/north/north) -"aru" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/wood, +/area/prison/chapel) +"aCJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/wood, +/area/prison/chapel) +"aCM" = ( +/obj/structure/window/framed/prison/reinforced{ + opacity = 1 }, -/area/prison/cellblock/maxsec/south) -"arv" = ( +/turf/open/floor/plating, +/area/prison/chapel) +"aCR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"arw" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/prison/medbay) -"arx" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay) -"ary" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay) -"arB" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "Morgue" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /turf/open/floor/prison, -/area/prison/medbay/morgue) -"arC" = ( -/obj/structure/pipes/vents/scrubber{ +/area/prison/security/checkpoint/maxsec) +"aCT" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/maxsec) +"aCW" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/maxsec) +"aDa" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/medbay) +"aDj" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/prison, +/area/prison/research) +"aDs" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"arE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"arF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/quarters/research) +"aDt" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Morgue" - }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"arG" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aDu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aDv" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aDw" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/hanger/research) -"arH" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/hanger/research) -"arI" = ( -/obj/structure/machinery/light{ +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aDy" = ( +/turf/closed/wall/prison, +/area/prison/toilet/research) +"aDz" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/toilet/research) +"aDA" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/quarters/research) +"aDE" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"aDS" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aDT" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/chapel) +"aDU" = ( +/obj/item/device/radio/intercom{ + frequency = 1463; + pixel_x = 28; + pixel_y = 21 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/prison/chapel) +"aDY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/item/stack/rods, /turf/open/floor/plating, -/area/prison/hanger/research) -"arJ" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hangar_storage/research) -"arK" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10 +/area/prison/cellblock/maxsec/north) +"aEe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hangar_storage/research) -"arL" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "Security Office" }, -/area/prison/hangar_storage/research) -"arM" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"aEi" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/hallway/staff) +"aEv" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"aED" = ( +/turf/closed/wall/prison, +/area/prison/quarters/research) +"aEE" = ( +/obj/structure/closet, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aEF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/wood, +/area/prison/quarters/research) +"aEG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/highsec/north/north) -"arN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/wood, +/area/prison/quarters/research) +"aEH" = ( +/obj/structure/closet, +/obj/item/clothing/head/welding, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aEI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/research) -"arO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/quarters/research) +"aEK" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research) -"arP" = ( +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aEL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/prison/research) -"arQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"arR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aEN" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/highsec/north/south) +"aEP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/research) -"arT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aEV" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/north/south) +"aEX" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/hangar_storage/main) +"aFo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/wood, +/area/prison/chapel) +"aFp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/cellblock/highsec/north/north) -"arU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/wood, +/area/prison/chapel) +"aFq" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/wood, +/area/prison/chapel) +"aFu" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" }, -/area/prison/cellblock/highsec/north/north) -"arV" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/prison/chapel) +"aFv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/cellblock/maxsec/south) -"arW" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/turf/open/floor/wood, +/area/prison/chapel) +"aFx" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, -/area/prison/medbay) -"arX" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/prison, -/area/prison/medbay) -"arY" = ( -/obj/structure/machinery/light{ +/area/prison/security/checkpoint/maxsec) +"aFy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Staff Restrooms" }, -/area/prison/medbay) -"arZ" = ( -/obj/structure/morgue, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"asa" = ( -/obj/structure/morgue{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"aFA" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/protective) +"aFB" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/mediumsec/east) +"aFC" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/mediumsec/south) +"aFF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, /turf/open/floor/prison, -/area/prison/medbay/morgue) -"asb" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"asc" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/prison/security/checkpoint/maxsec) +"aFL" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "Security Office" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/medbay) +"aFV" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/hangar_storage/main) +"aFW" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hangar_storage/main) +"aGj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Dorm Room"; + opacity = 0 }, -/area/prison/research) -"asd" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 30 +/turf/open/floor/wood, +/area/prison/quarters/research) +"aGk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/ammo_magazine/rifle/m16/ap, +/turf/open/floor/plating, +/area/prison/research/secret/containment) +"aGz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"aGH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/pen{ + pixel_x = 5; + pixel_y = 8 }, -/area/prison/research) -"ase" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 }, -/area/prison/hanger/research) -"asf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/hanger/research) -"asg" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/wood, +/area/prison/chapel) +"aGJ" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/chapel) +"aHE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/hangar_storage/research) -"asi" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/wood, +/area/prison/residential/north) +"aHG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/north) -"asj" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/north) -"ask" = ( +/turf/open/floor/wood, +/area/prison/residential/north) +"aHQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/cellblock/highsec/north/north) -"asl" = ( -/obj/structure/pipes/standard/manifold/visible{ +/turf/open/floor/wood, +/area/prison/storage/highsec/n) +"aHT" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/plating, +/area/prison/research/secret/containment) +"aHU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, -/area/prison/medbay) -"asm" = ( -/obj/structure/pipes/standard/manifold/visible{ - layer = 2.3 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/medbay) -"asn" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/medbay) -"aso" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"asp" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"asq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/area/prison/security/checkpoint/maxsec) +"aHV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"aHW" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/medbay/foyer) +"aIh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"asr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Staff-Research Maintenance" }, -/area/prison/medbay) -"ass" = ( -/obj/structure/bed/chair/wheelchair, +/turf/open/floor/plating, +/area/prison/quarters/research) +"aIm" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 8 }, -/area/prison/medbay) -"ast" = ( -/obj/structure/bed/chair/wheelchair, -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/residential/north) +"aIo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIq" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIy" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/residential/central) +"aIz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Research Director's Quarters"; + opacity = 0 }, -/area/prison/medbay) -"asu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/wood, +/area/prison/quarters/research) +"aID" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aIE" = ( +/turf/closed/wall/prison, +/area/prison/medbay/foyer) +"aIK" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/research) -"asv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/residential/north) +"aIM" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/prison/residential/north) +"aIO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIP" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"asw" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/research) -"asx" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aIY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Research Hallway" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"asy" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research) -"asz" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/research) -"asA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aIZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/research) -"asC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research) -"asD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/research) -"asF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJd" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research) -"asG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Biological Research Department" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "pipe-c" }, -/area/prison/hanger/research) -"asI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"asJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Research Hangar Storage" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJh" = ( +/obj/structure/closet, +/obj/item/bedsheet/purple, +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/hangar_storage/research) -"asK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJk" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10 +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 4 }, -/area/prison/hangar_storage/research) -"asL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/hangar_storage/research) -"asM" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/wood, +/area/prison/quarters/research) +"aJm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/hangar_storage/research) -"asO" = ( -/obj/structure/toilet{ +/turf/open/floor/wood, +/area/prison/quarters/research) +"aJn" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aJo" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aJr" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/wood, +/area/prison/residential/north) +"aJs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bedroom" }, -/area/prison/cellblock/highsec/north/north) -"asP" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/wood, +/area/prison/residential/north) +"aJv" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/north/south) +"aJH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aJK" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/area/prison/cellblock/highsec/north/north) -"asQ" = ( -/obj/structure/pipes/portables_connector{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"aJN" = ( +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJO" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/medbay) -"asR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/prison/medbay) -"asS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 28 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"asT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"asU" = ( -/obj/item/roller{ - icon_state = "down" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"asV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJP" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research) -"asW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/prison/research) -"asX" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aJQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aJR" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/storage/highsec/n) +"aJS" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aJU" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/research) -"asY" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/wood, +/area/prison/quarters/research) +"aJY" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research) -"asZ" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/quarters/research) +"aJZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"aKa" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/medbay/foyer) +"aKc" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research) -"ata" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"aKd" = ( +/turf/closed/wall/r_wall/prison_unmeltable, /area/prison/research) -"atb" = ( +"aKe" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/quarters/research) +"aKj" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/prison/residential/north) +"aKk" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research) -"atd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"ate" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/hanger/research) -"atf" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/medbay/morgue) -"atg" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/wood, +/area/prison/residential/north) +"aKm" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"ath" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"ati" = ( +/turf/open/floor/wood, +/area/prison/residential/north) +"aKn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"atj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research) -"atk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/hanger/research) -"atl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/research) -"atm" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/north/north) -"ato" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Maximum-Security Suspended Cellblock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/wood, +/area/prison/residential/north) +"aKr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/maxsec/south) -"atp" = ( +/turf/open/floor/wood, +/area/prison/residential/north) +"aKt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2; - name = "Maximum-Security Suspended Cellblock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/south) -"atq" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + name = "North High-Security Storage" }, -/area/prison/medbay) -"atr" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"aKv" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/medbay) -"ats" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/prison/medbay) -"att" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"atu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aKx" = ( +/turf/open/floor/plating, +/area/prison/cellblock/highsec/north/south) +"aKy" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/checkpoint/highsec/n) +"aKE" = ( +/obj/structure/bookcase, +/obj/structure/machinery/light/small, +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aKF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/photograph, +/obj/item/device/camera_film{ + pixel_x = 8; + pixel_y = 4 }, -/area/prison/medbay) -"atv" = ( +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aKH" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/highsec/n) +"aKM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/prison/quarters/research) +"aKS" = ( /obj/structure/pipes/vents/scrubber{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/wood, +/area/prison/quarters/research) +"aKT" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/central/north) +"aKU" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hallway/central/north) +"aKV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/medbay) -"atw" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/medbay) -"atx" = ( +/turf/open/floor/wood, +/area/prison/quarters/research) +"aKW" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Research Common Room" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Staff-Research Maintenance" }, -/area/prison/research) -"aty" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/hangar_storage/research) -"atz" = ( +/area/prison/maintenance/staff_research) +"aKX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"atB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/obj/structure/surface/table/reinforced{ + flipped = 1 }, +/obj/item/stack/rods, +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/north/north) -"atD" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +"aKZ" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hangar_storage/main) +"aLq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/research) -"atE" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aLr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"atG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aLs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"atH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/south) -"atI" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aLt" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/lowsec/ne) +"aLE" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/command/secretary_office) +"aLF" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/command/secretary_office) +"aLG" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/command/office) +"aLH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aLI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aLJ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/chapel/north, +/area/prison/chapel) +"aLK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/highsec/n) +"aLW" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"atJ" = ( -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"atK" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "Research Containment Locker" - }, -/turf/open/floor/prison, -/area/prison/research/secret) -"atL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"atN" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" + icon_state = "pipe-c" }, -/area/prison/research) -"atO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell Access" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" + dir = 5 }, -/area/prison/cellblock/maxsec/south) -"atP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aLX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"atQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"atR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"atS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aLZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"atT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"atU" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/hangar_storage/research) -"atZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aMd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aMf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aMj" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aMk" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"aua" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aub" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"auc" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aud" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aue" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"auf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"aug" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"auh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/prison/research) -"aui" = ( -/obj/item/device/camera, +/area/prison/cleaning) +"aMn" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, -/area/prison/research/secret) -"auj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research) -"auk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research) -"aul" = ( +/area/prison/cleaning) +"aMo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/cleaning) +"aMp" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/cleaning) +"aMJ" = ( +/turf/closed/wall/prison, +/area/prison/command/secretary_office) +"aMP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/command/office) +"aMQ" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/command/office) +"aMR" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood, +/area/prison/command/office) +"aMS" = ( +/turf/open/floor/wood, +/area/prison/command/office) +"aNb" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aNc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"aum" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aNg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"aun" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research) -"auo" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"aup" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/grilledcheese, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"auq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor, -/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"aur" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"aus" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/research) -"aut" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/prison/residential/north) -"auw" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/north) -"aux" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aNj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aNl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"auy" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/prison/cellblock/maxsec/south) -"auz" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"auA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Maximum-Security Suspended Cellblock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/south) -"auB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"auC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"auD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/highsec/n) +"aNp" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/lowsec/nw) +"aNq" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/lowsec/ne) +"aNy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/nw) +"aNK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"auE" = ( +/turf/open/floor/prison, +/area/prison/cleaning) +"aNM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"auF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"auG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Cell Access" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/cellblock/maxsec/south) -"auH" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/prison, +/area/prison/cleaning) +"aNN" = ( +/turf/open/floor/prison, +/area/prison/cleaning) +"aNO" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding9" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/organic/grass, +/area/prison/residential/north) +"aOc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/cellblock/maxsec/south) -"auI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"auJ" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hangar_storage/research) -"auK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 9 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aOk" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/medbay) -"auM" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aOl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Infirmary Storage" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison, +/area/prison/hallway/staff) +"aOp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aOq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/medbay) -"auN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 10 }, -/area/prison/medbay) -"auP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aOt" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/quarters/staff) +"aOu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aOv" = ( +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aOA" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/prison/command/office) +"aOB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/pen, +/turf/open/floor/carpet, +/area/prison/command/office) +"aOC" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/prison/command/office) +"aOH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/west) +"aOZ" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding5" }, -/area/prison/research) -"auQ" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"aPd" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"auR" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding1) +"aPh" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/prison/cleaning) +"aPi" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/research) -"auS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/cleaning) +"aPj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"aPk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/research) -"auT" = ( +/turf/open/floor/prison, +/area/prison/cleaning) +"aPp" = ( +/turf/closed/wall/prison, +/area/prison/toilet/staff) +"aPv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"auU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/research) -"auV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/research) -"auW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Bedroom" - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"auX" = ( -/obj/structure/sink{ +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/north/north) -"auY" = ( -/turf/open/floor/prison{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aPw" = ( +/obj/structure/window/reinforced{ dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"auZ" = ( -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"ava" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" + health = 250 }, -/area/prison/security/checkpoint/maxsec) -"avb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/floor/wood, +/area/prison/hallway/staff) +"aPB" = ( +/obj/structure/showcase, +/turf/open/floor/wood, +/area/prison/hallway/staff) +"aPD" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/area/prison/security/checkpoint/maxsec) -"avc" = ( -/turf/open/floor/prison{ +/turf/open/floor/wood, +/area/prison/hallway/staff) +"aPE" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/ne) +"aPG" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"avd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"ave" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + health = 80 }, -/area/prison/medbay) -"avf" = ( +/turf/open/floor/wood, +/area/prison/hallway/staff) +"aPJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aPO" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aPP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aPQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + dir = 6 }, -/area/prison/medbay) -"avg" = ( +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aPS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Warden's Office" }, -/area/prison/medbay) -"avh" = ( +/turf/open/floor/carpet, +/area/prison/command/office) +"aPT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"avi" = ( +/turf/open/floor/carpet, +/area/prison/command/office) +"aPV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"avj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/command/office) +"aPW" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"avk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"avl" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/residential/north) -"avm" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/residential/north) -"avn" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"avp" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"avq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/south) -"avr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/maxsec/south) -"avs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"avu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Research Hangar Storage" - }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/carpet, +/area/prison/command/office) +"aPX" = ( +/obj/item/frame/table/wood/fancy, +/obj/item/paper/prison_station/warden_note, +/obj/item/tool/pen, +/turf/open/floor/carpet, +/area/prison/command/office) +"aPY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/hangar_storage/research) -"avw" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/clothing/head/helmet/warden, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/prison/command/office) +"aPZ" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, +/obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, -/area/prison/residential/north) -"avx" = ( -/obj/structure/closet/crate/trashcart, +/area/prison/command/office) +"aQf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/plating, -/area/prison/residential/north) -"avy" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/area/prison/cellblock/lowsec/nw) +"aQl" = ( +/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"avB" = ( -/turf/closed/wall/prison, -/area/prison/research) -"avE" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"avF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/north) -"avH" = ( +/area/prison/cellblock/lowsec/nw) +"aQn" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/ne) +"aQp" = ( +/turf/closed/wall/prison, +/area/prison/security/monitoring/lowsec/ne) +"aQq" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/cellblock/highsec/north/north) -"avI" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"avJ" = ( -/obj/structure/closet, -/turf/open/floor/wood, -/area/prison/chapel) -"avK" = ( -/obj/structure/closet, -/obj/item/storage/bible{ - deity_name = "Allah"; - icon_state = "koran"; - name = "koran" - }, -/turf/open/floor/wood, -/area/prison/chapel) -"avL" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"avM" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/wood, -/area/prison/residential/north) -"avN" = ( +/area/prison/security/monitoring/lowsec/ne) +"aQv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison, +/area/prison/cleaning) +"aQw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/cleaning) +"aQC" = ( /turf/closed/wall/prison, -/area/prison/residential/north) -"avO" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced{ - dir = 4 +/area/prison/recreation/staff) +"aQG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aQH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aQI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen{ + pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aQJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/residential/north) -"avP" = ( -/obj/structure/closet, -/obj/item/storage/bible, +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aQL" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, /turf/open/floor/wood, -/area/prison/chapel) -"avQ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"avR" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"avS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1 +/area/prison/command/office) +"aQM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/prison/command/office) +"aQN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, +/turf/open/floor/carpet, +/area/prison/command/office) +"aQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aQP" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aQQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/prison/command/office) +"aQR" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood, +/area/prison/command/office) +"aQS" = ( /turf/open/floor/plating, -/area/prison/residential/north) -"avT" = ( -/obj/structure/bed/chair/office/light{ +/area/prison/maintenance/residential/nw) +"aQV" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aRb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/north) -"avU" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lamp/menorah, -/turf/open/floor/wood, -/area/prison/chapel) -"avV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aRf" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/chapel) -"avW" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aRg" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/prison/chapel) -"avX" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, -/area/prison/chapel) -"avY" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/prison/chapel) -"avZ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, -/area/prison/chapel) -"awa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aRr" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/toilet/staff) +"aRy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"aRM" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aRN" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aRO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aRQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aRR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/chapel) -"awb" = ( -/obj/structure/machinery/light{ +/turf/open/floor/carpet, +/area/prison/command/secretary_office) +"aRS" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/nw) +"aRT" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/nw) +"aRU" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/ne) +"aRV" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/ne) +"aRY" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/chapel) -"awc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/chapel) -"awd" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - locked = 0; - name = "Research Containment Locker" +/turf/open/floor/wood, +/area/prison/command/office) +"aRZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/research/secret) -"awe" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/medbay) -"awf" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/research) -"awg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"awh" = ( -/obj/effect/landmark/survivor_spawner, +/area/prison/maintenance/residential/nw) +"aSa" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/highsec/n) +"aSb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" + dir = 4 }, -/area/prison/medbay) -"awi" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/prison/residential/north) -"awj" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aSd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aSe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay) -"awk" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aSg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/north) -"awl" = ( -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"awm" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"awn" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"awo" = ( /turf/open/floor/plating, -/area/prison/residential/north) -"awp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/prison/medbay) -"awq" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"awr" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"awv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"aww" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Infirmary Storage" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"awx" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"awy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"awz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/pizzabox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"awA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"awB" = ( +/area/prison/maintenance/residential/ne) +"aSj" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"aSu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"awC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"awD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/head/chefhat, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"awF" = ( -/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/nw) +"aSv" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/vip) +"aSK" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aSR" = ( /turf/open/floor/plating, -/area/prison/hanger/research) -"awG" = ( -/obj/structure/machinery/light{ +/area/prison/maintenance/residential/ne) +"aTf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/security/monitoring/lowsec/ne) +"aTl" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/hanger/research) -"awH" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/hangar_storage/research) -"awI" = ( -/turf/open/floor/carpet, -/area/prison/residential/north) -"awJ" = ( +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aTm" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aTn" = ( +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aTo" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet, -/area/prison/residential/north) -"awK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood, -/area/prison/residential/north) -"awM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +/area/prison/recreation/staff) +"aTq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/carpet, -/area/prison/residential/north) -"awP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"awS" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ +/area/prison/command/secretary_office) +"aTw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aTC" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"awT" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"awU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aTE" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/canteen) +"aTF" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/canteen) +"aTG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/cellblock/highsec/north/north) -"awV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/canteen) +"aUf" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/wood, -/area/prison/chapel) -"awW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +/area/prison/recreation/staff) +"aUg" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/wood, -/area/prison/chapel) -"awX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/prison/recreation/staff) +"aUh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Staff Recreation" }, /turf/open/floor/wood, -/area/prison/chapel) -"awY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/area/prison/recreation/staff) +"aUt" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/chapel) -"awZ" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aUD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"aUF" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/chapel) -"axa" = ( +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/ne) +"aUM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Staff Recreation" }, -/area/prison/chapel) -"axb" = ( /turf/open/floor/wood, -/area/prison/residential/north) -"axc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/area/prison/recreation/staff) +"aUN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aUO" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aUR" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/command/secretary_office) +"aUS" = ( +/turf/closed/wall/prison, +/area/prison/command/quarters) +"aUU" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/command/quarters) +"aUV" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/command/quarters) +"aUX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Main Hangar Storage" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"aUY" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ density = 0; - dir = 2; icon_state = "door_open"; - name = "Toilet"; + name = "Solitary Confinement"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"axd" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/cellblock/highsec/north/south) +"aUZ" = ( +/turf/open/floor/plating, +/area/prison/hallway/central/east) +"aVF" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/ne) +"aVG" = ( +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/ne) +"aVJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/chapel) -"axe" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/ne) +"aVN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aVP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aVS" = ( +/turf/closed/wall/prison, +/area/prison/hallway/central/east) +"aVZ" = ( +/obj/structure/closet, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aWa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aWb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/chapel) -"axf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aWd" = ( +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aWe" = ( +/obj/structure/bed, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aWg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/hanger/main) +"aWh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/chapel) -"axg" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aWn" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/residential/central) +"aWo" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/prison/residential/central) +"aWp" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "chapel" - }, -/area/prison/chapel) -"axh" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"axj" = ( -/obj/item/roller{ - icon_state = "down" +/turf/open/floor/wood, +/area/prison/residential/central) +"aWq" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/wood, +/area/prison/residential/central) +"aWr" = ( +/turf/closed/wall/prison, +/area/prison/residential/central) +"aWy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/wood, +/area/prison/residential/central) +"aWz" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/monitoring/highsec) +"aWF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"aWH" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aWI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"axk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"aWS" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/yard) +"aWT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/yard) +"aWY" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"aWZ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"aXb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"aXh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"aXk" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" }, -/area/prison/medbay) -"axl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aXl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/medbay) -"axm" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"axn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/medbay) -"axo" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aXn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"axp" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"axr" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/staff) +"aXo" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"axs" = ( +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aXp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aXq" = ( +/obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + dir = 4 }, -/area/prison/research) -"axu" = ( +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aXr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"axv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"axw" = ( +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aXs" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aXt" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/hanger/main) +"aXu" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hanger/main) +"aXv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/residential/central) +"aXx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/research) -"axx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/wood, +/area/prison/residential/central) +"aXG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/wood, +/area/prison/residential/central) +"aXH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/hanger/research) -"axy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"aXI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "SE-out" }, -/area/prison/hanger/research) -"axz" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aXJ" = ( +/obj/structure/machinery/vending/cola, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out" }, -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aXK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"aXL" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/highsec/north/south) +"aXM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aXN" = ( +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aXO" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aXU" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aYc" = ( +/obj/structure/bookcase, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aYd" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aYf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aYg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/hanger/research) -"axA" = ( +/turf/open/floor/carpet, +/area/prison/command/quarters) +"aYi" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/nw) +"aYj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 + icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/prison/hanger/main) +"aYk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/hanger/research) -"axB" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/prison/hanger/main) +"aYl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "S" }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/prison/hanger/main) +"aYm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/prison/hanger/main) +"aYo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hanger/research) -"axC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "E" }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"aYp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/hanger/research) -"axE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Staff-Research Maintenance" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aYq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/area/prison/hangar_storage/research) -"axF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aYz" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aYA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/residential/north) -"axG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aYB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"axH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aYC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"axI" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/access/north) -"axJ" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/access/north) -"axK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aYD" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/residential/north) -"axL" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/highsec/north/north) -"axM" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/chapel) -"axN" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/nw) +"aYG" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "Civilian Residences Emergency Access" - }, +/area/prison/hanger/main) +"aYL" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/hanger/main) +"aYM" = ( /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/prison/hanger/main) +"aYO" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 30 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axR" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axS" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/checkpoint/maxsec) -"axU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"axV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/north/north) -"axW" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/north/north) -"axX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/area/prison/hanger/main) +"aYQ" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/residential/central) +"aYR" = ( +/turf/open/floor/wood, +/area/prison/residential/central) +"aYV" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/cellblock/highsec/north/north) -"axY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, /turf/open/floor/wood, -/area/prison/chapel) -"aya" = ( -/turf/open/floor{ - dir = 5; - icon_state = "chapel" +/area/prison/recreation/staff) +"aYW" = ( +/turf/closed/wall/prison, +/area/prison/hallway/staff) +"aYX" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"aYY" = ( +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"aYZ" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"aZa" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/staff) +"aZe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/chapel) -"ayb" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aZf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/chapel) -"ayc" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aZg" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aZh" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/prison/research/secret/containment) +"aZj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_1" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"aZk" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/item/weapon/gun/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, /turf/open/floor/prison, -/area/prison/research/secret) -"ayd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/area/prison/security/checkpoint/highsec/n) +"aZB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aZC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aye" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aZD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"aZE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"aZH" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"ayf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aZI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"aZO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/security/checkpoint/maxsec) -"ayg" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/hanger/main) +"aZP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/residential/central) +"aZQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Bedroom" }, -/area/prison/medbay) -"ayh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/wood, +/area/prison/residential/central) +"baa" = ( +/turf/closed/wall/prison, +/area/prison/security/monitoring/highsec) +"bab" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"baf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Kitchen" + }, +/turf/open/floor/prison, +/area/prison/kitchen) +"bah" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bai" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/kitchen) +"bak" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/lowsec/nw) +"ban" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/lowsec/ne) +"bao" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"baw" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/vip) +"baz" = ( +/turf/closed/wall/prison, +/area/prison/storage/vip) +"baE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/hanger/main) +"baJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/prison/medbay) -"ayk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating, +/area/prison/hanger/main) +"baK" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/wood, -/area/prison/residential/north) -"ayl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/prison/residential/central) +"baM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"aym" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/wood, +/area/prison/residential/central) +"baN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"ayn" = ( +/turf/open/floor/wood, +/area/prison/residential/central) +"baP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/wood, -/area/prison/residential/north) -"ayo" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/medbay/foyer) -"ayp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/area/prison/residential/central) +"baQ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/medbay/foyer) -"ayq" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/residential/central) +"baS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay/foyer) -"ayr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"baX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/medbay/foyer) -"ays" = ( +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"baY" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"ayt" = ( +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"baZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"ayu" = ( -/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bba" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/research) -"ayx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bbj" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/residential/central) +"bbm" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/hanger/research) -"ayy" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/maintenance/staff_research) -"ayz" = ( -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"ayB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/wood, -/area/prison/residential/north) -"ayC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"ayD" = ( +/area/prison/security/monitoring/highsec) +"bbn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bbo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bbp" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayE" = ( +/area/prison/yard) +"bbx" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bby" = ( +/obj/structure/bookcase, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bbz" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bbC" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/entrance) +"bbD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "Civilian Residences Emergency Access" +/area/prison/hanger/main) +"bbE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/prison/hanger/main) +"bbF" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ + name = "Main Hangar Door"; + unacidable = 1 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/prison/hanger/main) +"bbI" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/prison/residential/central) +"bbJ" = ( +/turf/open/floor/carpet, +/area/prison/residential/central) +"bbK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/residential/central) +"bbM" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"bbO" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "North Civilian Residences Access" +/turf/open/floor/carpet, +/area/prison/residential/central) +"bbR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/prison/storage/vip) +"bbS" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison, +/area/prison/storage/vip) +"bbW" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/storage/vip) +"bbX" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ayL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/prison/cellblock/highsec/north/south) +"bbY" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"ayM" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/north/south) +"bcb" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/n) +"bcj" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/yard) +"bcx" = ( +/turf/closed/wall/prison, +/area/prison/hallway/entrance) +"bcz" = ( +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bcA" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bcC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/security/checkpoint/maxsec) -"ayN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/prison/hallway/entrance) +"bcD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bcE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating, +/area/prison/hanger/main) +"bcG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/cellblock/highsec/north/north) -"ayO" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/prison/cellblock/highsec/north/north) -"ayP" = ( +/turf/open/floor/plating, +/area/prison/hanger/main) +"bcH" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"bcM" = ( /obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"bcQ" = ( +/turf/open/floor/prison, +/area/prison/residential/central) +"bcR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/prison/residential/central) +"bcT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison, +/area/prison/residential/central) +"bcU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/cellblock/highsec/north/north) -"ayR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/recreation/highsec/n) -"ayS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/woodentable{ - flipped = 1 +/turf/open/floor/prison, +/area/prison/residential/central) +"bcV" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Civilian Residences Admin" }, -/turf/open/floor/wood, -/area/prison/chapel) -"ayT" = ( -/obj/item/stack/rods, -/obj/structure/surface/table/woodentable{ - flipped = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/wood, -/area/prison/chapel) -"ayU" = ( -/obj/item/stack/rods, -/turf/open/floor/wood, -/area/prison/chapel) -"ayW" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/prison/chapel) -"ayX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/prison/chapel) -"ayY" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/area/prison/security/monitoring/highsec) +"bcW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 2; + name = "High-Security Monitoring Storage" }, -/area/prison/chapel) -"ayZ" = ( -/obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/prison, -/area/prison/research/secret) -"aza" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/prison/security/monitoring/highsec) +"bcZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bdb" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec) -"azb" = ( -/obj/effect/landmark/yautja_teleport, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bdk" = ( /turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"azc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"azd" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/medbay) -"azf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/area/prison/cellblock/vip) +"bdl" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/kitchen) +"bdm" = ( +/obj/structure/bed, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bdn" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bdp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"azg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bdq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/medbay) -"azh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Doctor's Office" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"azk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +/turf/open/floor/plating, +/area/prison/hanger/main) +"bdr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/medbay) -"azl" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bdu" = ( +/obj/structure/bed, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bdx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Apartment" + }, +/turf/open/floor/wood, +/area/prison/residential/central) +"bdA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"azm" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, /turf/open/floor/prison, -/area/prison/medbay) -"azn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/medbay/foyer) -"azo" = ( -/obj/effect/landmark/survivor_spawner, +/area/prison/security/checkpoint/vip) +"bdC" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"bdI" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/monitoring/highsec) +"bdJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/medbay/foyer) -"azp" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" + dir = 4 }, -/area/prison/medbay/foyer) -"azq" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"bdO" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/vip) +"bec" = ( +/turf/open/floor/prison, +/area/prison/canteen) +"ber" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/medbay/foyer) -"azr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bes" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Security Booth" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/research) -"azu" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bet" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/research) -"azv" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/research) -"azw" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"beu" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bew" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/hanger/research) -"azx" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/prison/hanger/main) +"bex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/hanger/research) -"azy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/prison/hanger/research) -"azz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/hanger/main) +"beB" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Staff-Research Maintenance" - }, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"azA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"azB" = ( -/obj/structure/machinery/light/small, +/area/prison/maintenance/residential/nw) +"beN" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating, +/area/prison/hanger/main) +"beR" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"azC" = ( +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"beX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/prison, +/area/prison/residential/central) +"beY" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bfc" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/vip) +"bfe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bfg" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/vip) +"bfh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/vip) +"bfk" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"azD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/area/prison/security/checkpoint/vip) +"bfn" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"bfq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/medbay) -"azG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/plating, +/area/prison/storage/vip) +"bfw" = ( +/turf/closed/wall/prison, +/area/prison/yard) +"bfx" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/yard) +"bfC" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/canteen) +"bfF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/residential/north) -"azI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Canteen" }, -/area/prison/residential/north) -"azJ" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison, +/area/prison/canteen) +"bfS" = ( +/obj/structure/sign/safety/restrictedarea, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/hanger/main) +"bfT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/north) -"azK" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/plating, +/area/prison/hanger/main) +"bfV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bga" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating, +/area/prison/residential/central) +"bgc" = ( /turf/open/organic/grass, -/area/prison/residential/north) -"azL" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"azM" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"azN" = ( +/area/prison/residential/central) +"bgq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bgr" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bgt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bgw" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bgx" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bgy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/residential/north) -"azO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bgz" = ( +/obj/structure/toilet{ dir = 1 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"bgN" = ( +/turf/open/floor/prison, +/area/prison/storage/vip) +"bhw" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"azP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/area/prison/hanger/main) +"bii" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec_highsec) +"bip" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Storage" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"azQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "North Civilian Residences Access" +/turf/open/floor/prison, +/area/prison/storage/vip) +"biG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"azR" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"biP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/recreation/highsec/n) -"azS" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison, +/area/prison/hanger/main) +"biZ" = ( +/turf/open/gm/river, +/area/prison/residential/central) +"bjm" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/area/prison/recreation/highsec/n) -"azT" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/recreation/highsec/n) -"azU" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bjn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Storage" }, -/area/prison/recreation/highsec/n) -"azV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"bjo" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"azW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" +/obj/structure/window/reinforced{ + dir = 1 }, -/area/prison/recreation/highsec/n) -"azX" = ( +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bjp" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bjv" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/vip) +"bjz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"bjD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bjE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/recreation/highsec/n) -"azY" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bjG" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bkm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/recreation/highsec/n) -"azZ" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bkn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bkr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bkt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aAa" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/hanger/main) +"bkB" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/organic/grass, +/area/prison/residential/central) +"bkE" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"bkI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Civilian Residences Emergency Access" }, -/area/prison/recreation/highsec/n) -"aAb" = ( +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"bkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/girder, -/turf/open/floor/wood, -/area/prison/chapel) -"aAc" = ( -/obj/structure/girder, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bkL" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, /turf/open/floor/wood, -/area/prison/chapel) -"aAe" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/security/monitoring/highsec) +"bkM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"bkN" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/organic/grass, +/area/prison/residential/central) +"bkO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/chapel) -"aAf" = ( -/turf/open/floor/carpet, -/area/prison/chapel) -"aAg" = ( -/obj/item/paper/prison_station/chapel_program, -/turf/open/floor/carpet, -/area/prison/chapel) -"aAh" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/carpet, -/area/prison/chapel) -"aAi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/chapel) -"aAk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/chapel) -"aAl" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" +/turf/open/floor/plating, +/area/prison/hallway/central/east) +"bkQ" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/turf/open/floor/wood, -/area/prison/chapel) -"aAm" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/wood, -/area/prison/chapel) -"aAn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/area/prison/security/monitoring/highsec) +"bkV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bkW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bkY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bla" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/vip) +"blb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"blc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"ble" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"blk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"blp" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/prison/yard) +"blq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/yard) +"blw" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/canteen) +"blx" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"blB" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"blC" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"blE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Entrance Hallway" }, -/area/prison/security/checkpoint/maxsec) -"aAo" = ( +/turf/open/floor/prison, +/area/prison/hanger/main) +"blH" = ( +/turf/open/floor/prison, +/area/prison/hanger/main) +"blQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Civilian Residences Emergency Access" }, -/area/prison/security/checkpoint/maxsec) -"aAp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"blS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"blT" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 250 + }, +/obj/structure/showcase, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"blU" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/area/prison/security/checkpoint/maxsec) -"aAq" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bmb" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bmc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bme" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bml" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAs" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"bmo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/storage/vip) +"bms" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec) -"aAt" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bmu" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"aAu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bmw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/yard) +"bmC" = ( +/obj/effect/landmark/good_item, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/yard) +"bmF" = ( +/turf/closed/wall/prison, +/area/prison/canteen) +"bmH" = ( +/turf/closed/wall/prison, +/area/prison/toilet/canteen) +"bmK" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"bmL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/security/checkpoint/maxsec) -"aAv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"bmM" = ( /turf/closed/wall/r_wall/prison, -/area/prison/research) -"aAw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/prison/hallway/entrance) +"bmO" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/toilet/canteen) +"bmP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/toilet/canteen) +"bna" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/area/prison/security/checkpoint/maxsec) -"aAx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bnb" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"bnh" = ( +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"bnw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aAy" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/medsec) +"bnM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"aAA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAB" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aAE" = ( -/obj/structure/toilet{ dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/plating, +/area/prison/canteen) +"bnU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"boc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bod" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/medbay) -"aAF" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/monitoring/highsec) +"bog" = ( +/obj/item/shard, +/obj/structure/window/framed/prison, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bos" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Canteen Restrooms" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating, +/area/prison/canteen) +"boy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/hanger/main) +"bpe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/medbay) -"aAH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bpf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aAI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" + dir = 4 }, -/area/prison/hanger/research) -"aAJ" = ( +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bph" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Entrance Hallway" }, -/area/prison/medbay) -"aAN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison, +/area/prison/hanger/main) +"bpk" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAO" = ( -/turf/open/space, -/area/space) -"aAP" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aAQ" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aAR" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAS" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aAU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/medbay/foyer) -"aAV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/medbay/foyer) -"aAW" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/hanger/main) +"bpr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/medbay/foyer) -"aAX" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bps" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bpt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/medbay/foyer) -"aAY" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bpu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bpv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/research) -"aAZ" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison, +/area/prison/cellblock/vip) +"bpP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bpQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/research) -"aBa" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/maxsec) +"bpR" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"bpT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" + dir = 9 }, -/area/prison/research) -"aBb" = ( +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bpU" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bpX" = ( /obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/vip) +"bqa" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bqb" = ( +/turf/closed/wall/prison, +/area/prison/monorail/west) +"bql" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/lowsec/sw) +"bqp" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/lowsec/sw) +"bqq" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/monorail/west) +"bqr" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/lowsec/se) +"bqs" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/lowsec/se) +"bqu" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bqy" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/prison, +/area/prison/cellblock/vip) +"bqB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security/checkpoint/vip) +"bqE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/research) -"aBc" = ( +/turf/open/floor/plating, +/area/prison/canteen) +"bqH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating, +/area/prison/hanger/main) +"bqU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/prison/research) -"aBe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"brc" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/research) -"aBf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"brd" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aBg" = ( +/area/prison/cellblock/maxsec/north) +"bru" = ( /turf/closed/wall/prison, -/area/prison/recreation/highsec/n) -"aBh" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/recreation/highsec/n) -"aBi" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/mousetraps, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aBj" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/recreation/highsec/n) -"aBk" = ( -/obj/structure/reagent_dispensers/watertank, +/area/prison/store) +"brN" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/transit, +/turf/open/floor/prison, +/area/prison/monorail/west) +"brP" = ( +/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aBm" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding3" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/north) -"aBn" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/organic/grass, -/area/prison/residential/north) -"aBo" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding5" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/north) -"aBu" = ( +/area/prison/cellblock/lowsec/sw) +"brS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aBv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" + dir = 6 }, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"brU" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/se) +"brW" = ( +/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"aBw" = ( -/obj/structure/bed/chair/comfy{ +/area/prison/cellblock/lowsec/se) +"brZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/recreation/highsec/n) -"aBx" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/n) -"aBy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bsa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"bsi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aBz" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/wood, +/area/prison/residential/central) +"bsj" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/recreation/highsec/n) -"aBA" = ( +/turf/open/floor/wood, +/area/prison/residential/central) +"bsm" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/monorail/west) +"bsn" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space) +"bst" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bsx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/recreation/highsec/n) -"aBB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/central) +"bsF" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/sw) +"bsI" = ( +/turf/closed/shuttle/elevator/gears, +/area/prison/hallway/central/west) +"bsY" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison, +/area/prison/visitation) +"btd" = ( +/obj/structure/monorail, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bti" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"btj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aBC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Toilet" +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"btm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/hanger/main) +"bto" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating, +/area/prison/hanger/main) +"btp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/prison/recreation/highsec/n) -"aBD" = ( -/turf/closed/wall/prison, -/area/prison/chapel) -"aBE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Chaplain's Office" +/turf/open/floor/plating, +/area/prison/hanger/main) +"bts" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/turf/open/floor/wood, -/area/prison/chapel) -"aBF" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/chapel) -"aBG" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/hanger/main) +"btt" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/visitation) +"btu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/chapel) -"aBH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/hanger/main) +"btv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/chapel) -"aBI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/hanger/main) +"btw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/chapel) -"aBJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_x = 12; - pixel_y = 8 +/turf/open/floor/plating, +/area/prison/hanger/main) +"btx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/plating, +/area/prison/hanger/main) +"btB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/radio/intercom{ - frequency = 1463; - pixel_x = 28; - pixel_y = -28 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"btE" = ( +/turf/closed/shuttle/elevator, +/area/prison/hallway/central/west) +"btF" = ( +/turf/open/shuttle/elevator/grating, +/area/prison/hallway/central/west) +"btK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/wood, -/area/prison/chapel) -"aBK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"btS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/se) +"btY" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/holding/holding1) +"btZ" = ( +/obj/structure/surface/table/reinforced, /turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aBL" = ( +/area/prison/visitation) +"buc" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/security/checkpoint/maxsec) -"aBM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "Maximum-Security Wing" +/area/prison/visitation) +"bud" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bue" = ( +/turf/closed/wall/prison, +/area/prison/holding/holding1) +"bui" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/hanger/main) +"buo" = ( +/turf/closed/shuttle/elevator{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aBN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/area/prison/hallway/central/west) +"buG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/security/checkpoint/maxsec) -"aBO" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison, +/area/prison/hanger/main) +"buS" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/sw) +"buT" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/sw) +"buX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/security/checkpoint/maxsec) -"aBP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Infirmary Reception" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aBQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "Infirmary" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"buY" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/se) +"bvc" = ( +/obj/item/ammo_magazine/rifle/m16/ap, +/turf/open/floor/prison, +/area/prison/research/secret/containment) +"bvf" = ( +/turf/closed/shuttle/elevator{ + dir = 6 }, -/area/prison/medbay) -"aBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/area/prison/hallway/central/west) +"bvm" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/medbay) -"aBS" = ( -/obj/structure/sign/safety/medical, +/turf/open/floor/prison, +/area/prison/research/secret) +"bvn" = ( +/obj/effect/decal/cleanable/blood, /turf/closed/wall/prison, -/area/prison/medbay) -"aBT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" +/area/prison/cellblock/lowsec/se) +"bvt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/visitation) +"bvx" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"bvA" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/highsec/south/north) +"bvM" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/highsec/s) +"bvN" = ( +/turf/closed/shuttle/elevator{ + dir = 5 }, -/area/prison/medbay/foyer) -"aBU" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/medbay/foyer) -"aBV" = ( +/area/prison/hallway/central/west) +"bvT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"aBW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison, +/area/prison/hanger/main) +"bvU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/prison/hanger/main) +"bvV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/research) -"aBX" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"bvW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - icon_state = "asteroid" +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = -30 }, -/area/prison/residential/north) -"aBY" = ( -/obj/structure/toilet{ +/turf/open/floor/prison, +/area/prison/hanger/main) +"bvX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bvZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bwj" = ( +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/sw) +"bwC" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/north) +"bwE" = ( /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aBZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aCa" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aCb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bwH" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bwI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/visitation) +"bwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/toilet/research) -"aCc" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" }, -/area/prison/toilet/research) -"aCd" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/entrance) +"bwM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"bwN" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/s) +"bwO" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/quarters/security) +"bwP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Hangar-Barracks Maintenance" }, -/area/prison/toilet/research) -"aCe" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aCf" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aCg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/hanger/main) +"bwQ" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/hangar) +"bwR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Main Hangar Traffic Control" }, -/area/prison/cellblock/highsec/north/south) -"aCh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/north/south) -"aCi" = ( -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/north/south) -"aCj" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/hangar) +"bwS" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/checkpoint/hangar) +"bwT" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/checkpoint/hangar) +"bwU" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/monorail/east) +"bwW" = ( +/turf/closed/wall/prison, +/area/prison/monorail/east) +"bwX" = ( +/turf/closed/wall/prison, +/area/prison/visitation) +"bxa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bxc" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bxf" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bxh" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/wood, +/area/prison/residential/central) +"bxk" = ( +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/north) +"bxA" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/prison/hallway/central/west) +"bxG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/cellblock/highsec/north/south) -"aCk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/sw) +"bxI" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/lowsec/se) +"bxM" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/cellblock/highsec/north/south) -"aCl" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/highsec/north/south) -"aCm" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/south) +"bxO" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/prison/residential/central) +"byp" = ( +/obj/structure/closet, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bys" = ( /obj/structure/bed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aCn" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aCo" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aCp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/turf/open/floor/prison, +/area/prison/quarters/security) +"byt" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/hangar_barracks) +"byu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"byx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aCq" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aCt" = ( -/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"byL" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/recreation/highsec/n) -"aCz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/area/prison/security/checkpoint/hangar) +"byX" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/area/prison/recreation/highsec/n) -"aCA" = ( -/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"bzb" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bzd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/recreation/highsec/n) -"aCB" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/sw) +"bzg" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/quarters/security) +"bzv" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/se) +"bzy" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/store) +"bzG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/recreation/highsec/n) -"aCC" = ( -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison, +/area/prison/quarters/security) +"bzH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/recreation/highsec/n) -"aCE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/quarters/security) +"bzI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/recreation/highsec/n) -"aCF" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bzK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aCG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "Main Hangar Traffic Control" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison, +/area/prison/security/checkpoint/hangar) +"bzM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/checkpoint/hangar) +"bzN" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/area/prison/recreation/highsec/n) -"aCH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/prison/chapel) -"aCI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/light/small, +/turf/open/floor/freezerfloor, +/area/prison/security/head) +"bzO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/wood, -/area/prison/chapel) -"aCJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison, +/area/prison/security/checkpoint/hangar) +"bzR" = ( +/obj/structure/shuttle/diagonal{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/chapel) -"aCK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/turf/open/space, +/area/space) +"bzS" = ( +/obj/structure/shuttle/window, +/turf/open/floor/plating, +/area/prison/monorail/east) +"bzT" = ( +/obj/structure/shuttle/diagonal{ + dir = 1 }, -/area/prison/chapel) -"aCL" = ( +/turf/open/space, +/area/space) +"bzV" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/monorail/east) +"bAe" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/highsec/south/north) +"bAE" = ( +/turf/open/floor/prison, +/area/prison/quarters/security) +"bAP" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"bAR" = ( +/obj/structure/bed, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/prison/quarters/security) +"bAS" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bAT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/chapel) -"aCM" = ( -/obj/structure/window/framed/prison/reinforced{ - opacity = 1 +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bAV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/plating, -/area/prison/chapel) -"aCN" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/area/prison/maintenance/hangar_barracks) +"bAW" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/hangar) +"bBd" = ( +/turf/closed/shuttle{ + icon_state = "swall3" }, -/area/prison/security/checkpoint/maxsec) -"aCO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/area/prison/monorail/east) +"bBh" = ( +/turf/closed/wall/prison, +/area/prison/security/monitoring/lowsec/sw) +"bBn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aCP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bBp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aCQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bBq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bBr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aCR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aCS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bBs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aCT" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/maxsec) -"aCU" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bBu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aCV" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bBy" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec) -"aCW" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bBz" = ( +/obj/item/device/megaphone, +/turf/open/floor/prison, +/area/prison/hallway/central/west) +"bBB" = ( /turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/maxsec) -"aCX" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/area/prison/hallway/east) +"bBC" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/east) +"bBF" = ( +/turf/open/floor/prison, +/area/prison/hallway/central/west) +"bBH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/security/monitoring/lowsec/sw) +"bCh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/medbay) -"aCY" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bCE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aCZ" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bCF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/medbay) -"aDa" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/medbay) -"aDb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bCG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/medbay/foyer) -"aDc" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bCJ" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bCK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bCL" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bCN" = ( +/obj/structure/bed, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bCO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/medbay/foyer) -"aDd" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bCP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/medbay/foyer) -"aDe" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bCQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bCZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/medbay/foyer) -"aDf" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bDa" = ( +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bDb" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bDc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/medbay/foyer) -"aDg" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bDd" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"bDe" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"bDm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Southwest Low-Security Monitoring" }, -/area/prison/medbay/foyer) -"aDh" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/prison, +/area/prison/security/monitoring/lowsec/sw) +"bDE" = ( +/obj/structure/monorail, +/turf/open/space, +/area/space) +"bDF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/medbay/foyer) -"aDi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"bDK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay/foyer) -"aDj" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/prison, -/area/prison/research) -"aDk" = ( -/obj/structure/sink{ - pixel_y = 15 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "East Hallway" }, -/area/prison/research) -"aDl" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison, +/area/prison/hallway/east) +"bDM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/research) -"aDm" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/prison/research) -"aDn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"aDo" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"aDp" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/toilet/research) -"aDq" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/toilet/research) -"aDr" = ( -/obj/structure/sink{ +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 26 + icon_state = "pipe-j2" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDP" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/prison/toilet/research) -"aDs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aDt" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aDu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aDv" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/landmark/crap_item, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aDw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aDy" = ( -/turf/closed/wall/prison, -/area/prison/toilet/research) -"aDz" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/toilet/research) -"aDA" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/quarters/research) -"aDD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Garden"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aDE" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/residential/north) -"aDF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/prison/recreation/highsec/n) -"aDG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aDH" = ( -/obj/structure/surface/table/gamblingtable, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bDX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/recreation/highsec/n) -"aDK" = ( +/turf/open/floor/prison, +/area/prison/hallway/east) +"bDZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/n) -"aDL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEi" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/transit/open, +/turf/open/floor/prison, +/area/prison/monorail/east) +"bEj" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/area/prison/recreation/highsec/n) -"aDM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "North High-Security Recreation" - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/recreation/highsec/n) -"aDN" = ( +/turf/open/floor/asteroid, +/area/prison/residential/south) +"bEn" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/hallway/central/west) +"bEu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/recreation/highsec/n) -"aDO" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aDP" = ( +/turf/open/floor/plating, +/area/prison/cellblock/lowsec/se) +"bEz" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison, +/area/prison/hallway/east) +"bEA" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/hallway/east) +"bED" = ( +/obj/structure/bed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/highsec/north/south) -"aDQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bEG" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/n) -"aDR" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aDS" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aDT" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/pipes/vents/scrubber{ +/area/prison/hallway/east) +"bEH" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/prison/chapel) -"aDU" = ( -/obj/item/device/radio/intercom{ - frequency = 1463; - pixel_x = 28; - pixel_y = 21 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/prison/chapel) -"aDV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/prison/security/checkpoint/maxsec) -"aDW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aDX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"aDY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/prison/cellblock/maxsec/north) -"aEa" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/area/prison/maintenance/hangar_barracks) +"bEI" = ( +/turf/open/floor/prison, +/area/prison/hallway/east) +"bEK" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bEM" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aEb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bEO" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/hangar_barracks) +"bFa" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/highsec/n) +"bFh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/prison/maintenance/research_medbay) +"bFi" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/prison/maintenance/research_medbay) +"bFk" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/monitoring/lowsec/sw) +"bFs" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aEc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" + dir = 1 }, -/area/prison/security/checkpoint/maxsec) -"aEd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/security/monitoring/lowsec/sw) +"bFv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/closed/wall/prison, +/area/prison/security/monitoring/lowsec/sw) +"bFK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bFL" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bFO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec) -"aEe" = ( +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"bFP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "Security Office" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Old Storage Room" }, /turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aEf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/prison/maintenance/hangar_barracks) +"bFQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bFR" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aEg" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bFS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aEh" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"aEk" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bFT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aEl" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/eastleft, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/medbay) -"aEm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/blood, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"aEn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bFU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/medbay/foyer) -"aEo" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bFV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bGg" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"aEq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"aEr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGk" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGp" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/effect/landmark/good_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/medbay/foyer) -"aEs" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bGt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/highsec/s) +"bGv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/medbay/foyer) -"aEt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/s) +"bGy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"aEu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"aEv" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/prison/residential/north) -"aEw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"aEx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/s) +"bGA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bGC" = ( +/obj/item/stack/rods, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/prison/security/monitoring/lowsec/sw) +"bGI" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/holding/holding2) +"bGQ" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/residential/south) +"bGR" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/prison/residential/south) +"bGS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/prison/research) -"aEz" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"aEA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aEB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aEC" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aED" = ( -/turf/closed/wall/prison, -/area/prison/quarters/research) -"aEE" = ( -/obj/structure/closet, /turf/open/floor/wood, -/area/prison/quarters/research) -"aEF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +/area/prison/residential/south) +"bGT" = ( +/obj/structure/bed, +/obj/item/bedsheet, /turf/open/floor/wood, -/area/prison/quarters/research) -"aEG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/prison/residential/south) +"bGU" = ( +/turf/closed/wall/prison, +/area/prison/residential/south) +"bHc" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/wood, -/area/prison/quarters/research) -"aEH" = ( -/obj/structure/closet, -/obj/item/clothing/head/welding, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aEI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ +/area/prison/residential/south) +"bHf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aEJ" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aEK" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/prison/quarters/security) +"bHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Hangar-Barracks Maintenance" + }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aEL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/prison/maintenance/hangar_barracks) +"bHi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"bHj" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aEM" = ( +/area/prison/maintenance/hangar_barracks) +"bHn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bHo" = ( +/obj/item/device/radio/headset, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bHp" = ( +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bHq" = ( +/turf/closed/shuttle, +/area/prison/monorail/east) +"bHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/ammo_casing, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bHt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bHx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "South High-Security Cellblock" }, -/area/prison/residential/central) -"aEN" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec/s) +"bHE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bHI" = ( /turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/highsec/north/south) -"aEO" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/area/prison/holding/holding2) +"bHJ" = ( +/turf/closed/wall/prison, +/area/prison/holding/holding2) +"bHN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/highsec/north/south) -"aEP" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aEQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aER" = ( +/area/prison/hallway/east) +"bHO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "redcorner" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, +/turf/open/floor/prison, +/area/prison/hallway/east) +"bHQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aES" = ( -/turf/open/floor/prison{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aET" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison, +/area/prison/hallway/east) +"bHU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aEU" = ( -/turf/open/floor/prison{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bHW" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "redcorner" + icon_state = "pipe-y" }, -/area/prison/cellblock/highsec/north/south) -"aEV" = ( -/obj/structure/window/framed/prison/cell, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bHY" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bHZ" = ( +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bIa" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"aEW" = ( +/area/prison/maintenance/hangar_barracks) +"bIf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/residential/south) +"bIh" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aEX" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hangar_storage/main) -"aEY" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bIl" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Research-Infirmary Maintenance" }, -/area/prison/hangar_storage/main) -"aEZ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/prison/medbay) +"bIo" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/hangar_storage/main) -"aFa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bIu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"bIy" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/telecomms) +"bID" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/hallway/east) +"bIE" = ( +/turf/closed/wall/prison, +/area/prison/quarters/security) +"bIG" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/good_item, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bIH" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bIL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/cellblock/highsec/south/north) +"bIN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "South High-Security Storage" }, -/area/prison/hangar_storage/main) -"aFb" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bJi" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aFc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" + dir = 8 }, -/area/prison/hangar_storage/main) -"aFd" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bJk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bJm" = ( +/obj/structure/bed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/residential/north) -"aFe" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/shuttle/black, +/area/prison/pirate) +"bJo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/residential/north) -"aFg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bJp" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aFi" = ( -/obj/structure/pipes/vents/scrubber, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aFj" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/wood, +/area/prison/residential/south) +"bJq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bedroom" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bJA" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/residential/south) +"bJB" = ( +/turf/open/floor/wood, +/area/prison/residential/south) +"bJH" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/highsec/s) +"bJM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"aFk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bJY" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/prison/residential/south) +"bJZ" = ( /obj/structure/bed/chair/comfy{ - dir = 4 + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/carpet, +/area/prison/residential/south) +"bKa" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bKb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/recreation/highsec/n) -"aFl" = ( +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bKc" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/n) -"aFn" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bKd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bKi" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/recreation/highsec/n) -"aFo" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper, -/obj/structure/machinery/light/small{ +/turf/open/space, +/area/space) +"bKk" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/chapel) -"aFp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/space, +/area/space) +"bKl" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/residential/south) +"bKm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Bedroom" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood, -/area/prison/chapel) -"aFq" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/wood, -/area/prison/chapel) -"aFr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/area/prison/residential/south) +"bKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 5 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "chapel" + icon_state = "pipe-c" }, -/area/prison/chapel) -"aFs" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bKr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/landmark/good_item, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bKs" = ( +/turf/open/floor/prison, +/area/prison/cellblock/highsec/south/north) +"bKu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/chapel) -"aFt" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bKv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bKw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/chapel) -"aFu" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"bKz" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"bKD" = ( +/turf/open/floor/prison, +/area/prison/telecomms) +"bKN" = ( +/turf/closed/wall/prison, +/area/prison/toilet/security) +"bKO" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"bKQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"bKR" = ( +/obj/structure/pipes/vents/scrubber, /turf/open/floor/wood, -/area/prison/chapel) -"aFv" = ( -/obj/structure/bed/chair{ - dir = 1 +/area/prison/residential/south) +"bKS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/wood, -/area/prison/chapel) -"aFw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, +/area/prison/residential/south) +"bKU" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aFx" = ( -/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aFz" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bKV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aFA" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/protective) -"aFB" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/mediumsec/east) -"aFC" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/mediumsec/south) -"aFD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aFE" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" +/turf/open/floor/wood, +/area/prison/residential/south) +"bKW" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/toilet/security) +"bKY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/residential/central) -"aFF" = ( +/turf/open/floor/wood, +/area/prison/residential/south) +"bLa" = ( /obj/structure/pipes/vents/scrubber{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aFG" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bLd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"aFH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/residential/central) -"aFI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aFJ" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aFK" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/prison/residential/south) +"bLg" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/storage/highsec/s) +"bLi" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/prison/storage/highsec/s) +"bLv" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security) +"bLx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/security/checkpoint/maxsec) -"aFL" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "Security Office" +/turf/open/floor/prison, +/area/prison/telecomms) +"bLG" = ( +/obj/structure/bed/stool, +/turf/open/floor/prison, +/area/prison/intake) +"bLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/residential/south) +"bLL" = ( +/turf/open/floor/carpet, +/area/prison/residential/south) +"bLP" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/medbay) -"aFM" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/carpet, +/area/prison/residential/south) +"bLR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/wood, +/area/prison/residential/south) +"bLS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/medbay) -"aFN" = ( +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"bLT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" + dir = 4 }, -/area/prison/medbay) -"aFO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" }, -/area/prison/medbay) -"aFP" = ( +/turf/open/floor/wood, +/area/prison/residential/south) +"bLY" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/residential/central) +"bMh" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/recreation/highsec/s) +"bMj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"aFQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "Infirmary Foyer" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"aFS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/medbay/foyer) -"aFT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "Biological Research Department" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/plating, +/area/prison/laundry) +"bMk" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/intake) +"bMl" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/intake) +"bMq" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security) +"bMt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bMu" = ( +/turf/open/floor/prison, +/area/prison/security) +"bMv" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hallway/central) +"bMw" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/research) -"aFU" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"bMA" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/telecomms) +"bMC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/research) -"aFV" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/hangar_storage/main) -"aFW" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/carpet, +/area/prison/residential/south) +"bNd" = ( +/turf/closed/wall/prison, +/area/prison/intake) +"bNf" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/hangar_storage/main) -"aFX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "Research Common Room" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/research) -"aFY" = ( +/area/prison/recreation/highsec/s) +"bNj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/prison/research) -"aFZ" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/prison/research) -"aGa" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aGb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aGc" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aGg" = ( -/obj/structure/toilet{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bNk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aGh" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aGi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Research Restrooms"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/toilet/research) -"aGj" = ( +/turf/open/floor/prison, +/area/prison/security) +"bNr" = ( +/turf/closed/wall/prison, +/area/prison/laundry) +"bNs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; dir = 2; - icon_state = "door_open"; - name = "Dorm Room"; - opacity = 0 + name = "Residential Apartment" }, /turf/open/floor/wood, -/area/prison/quarters/research) -"aGk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/floor/plating, -/area/prison/research/secret/containment) -"aGm" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hangar_storage/main) -"aGn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aGo" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hangar_storage/main) -"aGp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hangar_storage/main) -"aGq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aGs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/area/prison/residential/south) +"bNv" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/medsec) +"bNH" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/storage/medsec) +"bNI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bNJ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/residential/north) -"aGt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bNK" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bNQ" = ( +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bNR" = ( +/turf/open/floor/prison, +/area/prison/intake) +"bNU" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/library) +"bNV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/prison/library) +"bNY" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/prison/library) +"bNZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/prison/library) +"bOb" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/engineering) +"bOc" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/residential/north) -"aGu" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/engineering) +"bOf" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/engineering) +"bOh" = ( +/obj/structure/bed/stool, +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison, +/area/prison/intake) +"bOi" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison, +/area/prison/intake) +"bOm" = ( +/turf/closed/wall/prison, +/area/prison/recreation/highsec/s) +"bOq" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/laundry) +"bOr" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aGv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aGw" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison, +/area/prison/security) +"bOw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"aGx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security) +"bOz" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/storage/medsec) +"bOA" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/storage/medsec) +"bOD" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/library) +"bOE" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aGA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"bOG" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/engineering) +"bOL" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/toilet/security) +"bOM" = ( +/obj/structure/shuttle/diagonal, +/turf/open/space, +/area/space) +"bON" = ( +/obj/structure/shuttle/diagonal{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = 26 +/turf/open/space, +/area/space) +"bOQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/item/frame/table, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"bOY" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bOZ" = ( +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bPa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"bPd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/residential/north) -"aGB" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/recreation/highsec/n) -"aGC" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/recreation/highsec/n) -"aGD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/recreation/highsec/n) -"aGE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/recreation/highsec/n) -"aGF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/recreation/highsec/n) -"aGG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/recreation/highsec/n) -"aGH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/pen{ - pixel_x = 5; - pixel_y = 8 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"bPq" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 4 +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bPz" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bPE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "research_secret"; + name = "Classified Research Shutters" }, -/obj/structure/pipes/vents/scrubber{ +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research/secret) +"bPH" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood, -/area/prison/chapel) -"aGJ" = ( -/obj/structure/bookcase, +/area/prison/library) +"bPI" = ( /turf/open/floor/wood, -/area/prison/chapel) -"aGL" = ( -/obj/structure/pipes/vents/scrubber{ +/area/prison/library) +"bPQ" = ( +/turf/closed/wall/prison, +/area/prison/storage/medsec) +"bPT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/extinguisher, +/obj/item/device/assembly/infra, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/turf/open/floor/prison, +/area/prison/engineering) +"bPU" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 4 }, -/area/prison/chapel) -"aGM" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bPV" = ( +/obj/structure/pipes/standard/manifold/visible/cyan{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("PRISON") +/obj/structure/machinery/meter, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bPW" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 8; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bPX" = ( +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bPY" = ( +/obj/structure/pipes/standard/tank/nitrogen, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bPZ" = ( +/turf/closed/wall/prison, +/area/prison/library) +"bQa" = ( +/obj/structure/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bQb" = ( +/obj/structure/pipes/standard/simple/visible/green{ + dir = 6 }, -/area/prison/chapel) -"aGN" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/prison/chapel) -"aGO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Chapel" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/chapel) -"aGP" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aGQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/security/checkpoint/maxsec) -"aGS" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"aGT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"aGU" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/maxsec) -"aGV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aGW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"aGX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bQc" = ( +/obj/structure/pipes/standard/manifold/visible/green{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/meter, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bQd" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, -/area/prison/medbay) -"aGY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bQe" = ( +/obj/structure/bed/stool, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/intake) +"bQf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/prison/intake) +"bQj" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/engineering/atmos) +"bQl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/medbay) -"aGZ" = ( +/turf/open/floor/prison, +/area/prison/security) +"bQm" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/medbay/foyer) -"aHa" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison, +/area/prison/security) +"bQw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bQx" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay/foyer) -"aHc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bRa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/research) -"aHd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bRc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/research) -"aHe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bRd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/research) -"aHf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bRi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bRm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/research) -"aHg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/wood, +/area/prison/library) +"bRn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/library) +"bRo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen, +/turf/open/floor/wood, +/area/prison/library) +"bRp" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/research) -"aHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/library) +"bRq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/prison/research) -"aHi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/library) +"bRu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/voice, +/obj/item/tool/crowbar, +/turf/open/floor/prison, +/area/prison/engineering) +"bRv" = ( +/obj/structure/pipes/standard/tank/oxygen{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Research Dorms" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/prison/quarters/research) -"aHj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aHk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRw" = ( +/obj/structure/pipes/standard/manifold/fourway/visible/cyan, +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRx" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 8; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRy" = ( +/obj/structure/machinery/door/window/southright, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRz" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/simple/hidden/purple{ + dir = 5 }, -/area/prison/quarters/research) -"aHl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRA" = ( +/obj/structure/pipes/standard/manifold/fourway/visible/purple, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRB" = ( +/obj/structure/pipes/standard/manifold/visible/purple, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRC" = ( +/turf/closed/wall/prison, +/area/prison/engineering) +"bRD" = ( +/obj/structure/pipes/standard/manifold/visible/purple{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bRE" = ( +/obj/structure/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bRG" = ( +/obj/structure/pipes/standard/manifold/visible/green{ + dir = 8 }, -/area/prison/quarters/research) -"aHn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/quarters/research) -"aHo" = ( +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bRM" = ( +/turf/closed/wall/prison, +/area/prison/engineering/atmos) +"bRU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"bRW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "South Civilian Residences Access" }, -/area/prison/quarters/research) -"aHq" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bRX" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/prison/quarters/research) -"aHs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bRY" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bRZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/prison/security) +"bSb" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/closed/wall/resin, +/area/prison/cellblock/highsec/south/north) +"bSf" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/quarters/research) -"aHt" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/north) +"bSg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding4" + icon_state = "wood_siding12" }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/asteroid, +/area/prison/residential/south) +"bSi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bSj" = ( +/turf/closed/wall/prison, +/area/prison/maintenance/residential/access/south) +"bSk" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/residential/access/south) +"bSl" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bSF" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bSG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bSK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bSO" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/prison/library) +"bSP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/prison/library) +"bSQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 }, -/area/prison/residential/central) -"aHv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/turf/open/floor/wood, +/area/prison/library) +"bSW" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/engineering) +"bSX" = ( +/obj/structure/pipes/standard/simple/visible/cyan{ + dir = 6 }, -/area/prison/cellblock/highsec/north/south) -"aHw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bSY" = ( +/obj/structure/pipes/standard/manifold/fourway/visible/cyan, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/highsec/north/south) -"aHx" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bSZ" = ( +/obj/structure/pipes/standard/simple/visible/cyan{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/highsec/north/south) -"aHy" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTa" = ( +/obj/structure/pipes/standard/manifold/visible/cyan{ dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTc" = ( +/obj/structure/pipes/trinary/mixer/m_mixer{ + dir = 4 }, -/area/prison/quarters/research) -"aHz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/quarters/research) -"aHA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTd" = ( +/obj/structure/pipes/standard/simple/visible/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTe" = ( +/obj/structure/pipes/standard/simple/visible/green{ + dir = 4 }, -/area/prison/quarters/research) -"aHB" = ( -/obj/structure/window/reinforced{ +/obj/structure/pipes/binary/pump/high_power{ dir = 1 }, -/obj/structure/machinery/shower{ - dir = 4; - layer = 3.3 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTf" = ( +/obj/structure/pipes/standard/simple/visible/green{ + dir = 4 }, -/area/prison/residential/north) -"aHC" = ( -/obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/pipes/binary/pump/high_power, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/residential/north) -"aHD" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTg" = ( +/obj/structure/pipes/standard/simple/visible/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/prison/residential/north) -"aHE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aHG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTh" = ( +/obj/structure/pipes/standard/simple/visible/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aHH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTi" = ( +/obj/structure/pipes/standard/manifold/visible/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aHI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aHJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aHK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aHL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/meter, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTj" = ( +/obj/structure/pipes/standard/simple/visible/green{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/residential/north) -"aHN" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTk" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/north) -"aHO" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aHP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.3 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aHQ" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bTl" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bTA" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bTB" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"bTD" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/grass, +/area/prison/residential/south) +"bTF" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/organic/grass, +/area/prison/residential/south) +"bTH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/organic/grass, +/area/prison/residential/south) +"bTK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 + name = "South Civilian Residences Access" }, -/turf/open/floor/wood, -/area/prison/storage/highsec/n) -"aHR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bTL" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bTO" = ( +/obj/structure/machinery/door/poddoor/two_tile/secure{ + name = "Monorail Passage Door" }, -/area/prison/chapel) -"aHS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bTP" = ( +/obj/structure/monorail, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "Monorail Passage Door"; + unacidable = 1 }, -/area/prison/chapel) -"aHT" = ( -/obj/item/weapon/gun/rifle/m16, /turf/open/floor/plating, -/area/prison/research/secret/containment) -"aHU" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/area/prison/maintenance/residential/access/south) +"bTR" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bTT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison, +/area/prison/recreation/highsec/s) +"bUa" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/checkpoint/medsec) +"bUb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Medium-Security Cellblock" }, /turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aHV" = ( +/area/prison/security/checkpoint/medsec) +"bUc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/prison, +/area/prison/security/checkpoint/medsec) +"bUe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"aHW" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/medbay/foyer) -"aHZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +/area/prison/storage/medsec) +"bUh" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/quarters/research) -"aIa" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/wood, +/area/prison/library) +"bUi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/wood, +/area/prison/library) +"bUj" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/wood, +/area/prison/library) +"bUk" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/quarters/research) -"aIb" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/wood, +/area/prison/library) +"bUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/quarters/research) -"aIc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/prison/engineering) +"bUm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/quarters/research) -"aId" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering) +"bUo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/quarters/research) -"aIe" = ( +/turf/open/floor/plating, +/area/prison/engineering) +"bUp" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering) +"bUq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/quarters/research) -"aIf" = ( +/turf/open/floor/plating, +/area/prison/engineering) +"bUr" = ( /obj/structure/pipes/vents/scrubber{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering) +"bUs" = ( +/obj/structure/pipes/binary/pump/high_power{ + dir = 1 }, -/area/prison/quarters/research) -"aIg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUt" = ( +/obj/structure/pipes/binary/pump/high_power, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUu" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUv" = ( +/obj/structure/pipes/trinary/filter{ + dir = 8 }, -/area/prison/quarters/research) -"aIh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUx" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 10 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Staff-Research Maintenance" +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUy" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUz" = ( +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUA" = ( +/obj/structure/pipes/portables_connector{ + dir = 1 }, /turf/open/floor/plating, -/area/prison/quarters/research) -"aIj" = ( +/area/prison/engineering/atmos) +"bUB" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aIk" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUC" = ( +/obj/item/tool/wrench, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUD" = ( +/obj/structure/pipes/binary/pump/high_power/on, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUE" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 6 }, -/area/prison/hangar_storage/main) -"aIl" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/hangar_storage/main) -"aIm" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUF" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/residential/north) -"aIo" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIp" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bUH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, /turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIq" = ( -/turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIr" = ( +/area/prison/intake) +"bUI" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIs" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" +/area/prison/intake) +"bUK" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison, +/area/prison/security) +"bUS" = ( +/obj/structure/shuttle/diagonal{ + dir = 8; + icon_state = "diagonalWall3" }, -/area/prison/cellblock/highsec/north/south) -"aIu" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating, +/area/prison/pirate) +"bUV" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/north) -"aIv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/residential/central) -"aIw" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bUW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bUX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "Civilian Residences Emergency Access" }, -/area/prison/hallway/central/north) -"aIx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bVc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/hallway/central/north) -"aIy" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/residential/central) -"aIz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/command/colony{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bVu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/security/checkpoint/medsec) +"bVw" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ density = 0; - dir = 2; icon_state = "door_open"; - name = "Research Director's Quarters"; + name = "Solitary Confinement"; opacity = 0 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aIA" = ( -/obj/effect/decal/siding{ - icon_state = "siding2" - }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/north) +"bVG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bVH" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/residential/central) -"aIB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/prison, +/area/prison/storage/medsec) +"bVI" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/medsec) +"bVO" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/prison/engineering) +"bVP" = ( +/turf/open/floor/plating, +/area/prison/engineering) +"bVS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "SMES" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/engineering) +"bVU" = ( +/obj/structure/pipes/portables_connector{ + dir = 1 }, -/area/prison/residential/central) -"aIC" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aID" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/prison/engineering/atmos) +"bWa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/north) +"bWb" = ( +/obj/structure/pipes/standard/simple/visible/supply, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bWc" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aIE" = ( -/turf/closed/wall/prison, -/area/prison/medbay/foyer) -"aIF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/area/prison/engineering) +"bWe" = ( +/obj/structure/pipes/standard/simple/visible/universal, +/obj/structure/machinery/meter, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bWf" = ( +/obj/structure/pipes/standard/manifold/visible/yellow{ + dir = 8 }, -/area/prison/cellblock/highsec/north/south) -"aII" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/hangar_storage/main) -"aIJ" = ( +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bWh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aIK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aIM" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/prison/residential/north) -"aIO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bWq" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/head) +"bWr" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/woodentable, +/turf/open/floor/prison, +/area/prison/security/head) +"bWs" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, +/area/prison/security/head) +"bWt" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/security/head) +"bWu" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/recharger, +/turf/open/floor/prison, +/area/prison/security/head) +"bWv" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison, +/area/prison/security/head) +"bWw" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison, +/area/prison/security/head) +"bWx" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIQ" = ( +/area/prison/security) +"bWy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/prison/security/head) +"bWz" = ( +/turf/closed/wall/prison, +/area/prison/security/head) +"bWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 5 }, -/turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIR" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bWD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aIS" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bWE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aIT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + name = "Civilian Residences Emergency Access" }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bWJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/security/checkpoint/highsec/n) -"aIU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aIV" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bWL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aIW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aIX" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bWQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/security/checkpoint/highsec/n) -"aIY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/laundry) +"bWS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/medsec) +"bWZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/wood, +/area/prison/library) +"bXa" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/prison/library) +"bXb" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/engineering) +"bXc" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison, +/area/prison/engineering) +"bXd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aIZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/prison/engineering) +"bXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/engineering) +"bXt" = ( +/obj/structure/pipes/binary/pump/high_power{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJa" = ( +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bXu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bXw" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bXx" = ( +/obj/structure/pipes/standard/manifold/visible/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/meter, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bXy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ - dir = 4; icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/prison/hallway/east) +"bXz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"bXE" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/hallway/central/north) -"aJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/surface/table/woodentable, +/turf/open/floor/prison, +/area/prison/security/head) +"bXF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/prison, +/area/prison/security/head) +"bXG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/head) +"bXH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/turf/open/floor/prison, +/area/prison/security/head) +"bXI" = ( +/turf/open/floor/carpet, +/area/prison/security/head) +"bXJ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/prison/security/head) +"bXK" = ( +/turf/open/floor/prison, +/area/prison/security/head) +"bXP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJg" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/quarters/research) -"aJh" = ( -/obj/structure/closet, -/obj/item/bedsheet/purple, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJj" = ( +/area/prison/hallway/east) +"bXQ" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/prison/research) -"aJk" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 4 +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bXS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJl" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"bXW" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"bXX" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"bXY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"bYc" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/engineering) +"bYd" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aJm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison, +/area/prison/engineering) +"bYe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/engineering) +"bYf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aJn" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aJo" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/prison/engineering) +"bYh" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/head) +"bYj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aJp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hangar_storage/main) -"aJr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/wood, -/area/prison/residential/north) -"aJs" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bedroom" - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aJu" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aJv" = ( -/obj/effect/landmark/corpsespawner/prisoner, +/area/prison/engineering) +"bYk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"aJw" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/storage/highsec/n) -"aJy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/area/prison/engineering) +"bYl" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"bYm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Atmospherics" }, -/area/prison/storage/highsec/n) -"aJz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bYn" = ( +/obj/structure/pipes/standard/simple/visible/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Atmospherics" }, -/area/prison/storage/highsec/n) -"aJA" = ( +/turf/open/floor/prison, +/area/prison/engineering/atmos) +"bYv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/storage/highsec/n) -"aJB" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 4 }, -/area/prison/storage/highsec/n) -"aJC" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bYA" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/prison, +/area/prison/security/head) +"bYB" = ( +/obj/structure/surface/table/woodentable, +/obj/item/tool/stamp/hos, +/turf/open/floor/prison, +/area/prison/security/head) +"bYC" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/highsec/south/south) +"bYD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/telebaton, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison, +/area/prison/security/head) +"bYE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aJD" = ( -/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/security/head) +"bYF" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/checkpoint/medsec) +"bYG" = ( +/obj/structure/surface/table/woodentable, /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aJE" = ( -/obj/structure/surface/table/reinforced, +/turf/open/floor/carpet, +/area/prison/security/head) +"bYH" = ( +/obj/structure/surface/table/woodentable, /obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 + pixel_y = 4 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/carpet, +/area/prison/security/head) +"bYI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/prison/security/head) +"bYJ" = ( +/obj/structure/monorail, +/obj/structure/lattice, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "Monorail Passage Door"; + unacidable = 1 }, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bYS" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aJF" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"bYY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/prison/library) +"bYZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aJG" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/wood, +/area/prison/library) +"bZb" = ( +/obj/effect/landmark/good_item, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/wood, +/area/prison/library) +"bZc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/wood, +/area/prison/library) +"bZd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aJH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Central Ring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/north) -"aJJ" = ( -/obj/structure/disposalpipe/segment, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/engineering) +"bZe" = ( +/turf/open/floor/prison, +/area/prison/engineering) +"bZf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aJL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 - }, -/obj/item/paper/crumpled/bloody, -/turf/open/floor{ - icon_state = "freezerfloor" +/area/prison/engineering) +"bZg" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/plating, +/area/prison/engineering) +"bZh" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/plating, +/area/prison/engineering) +"bZi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/plating, +/area/prison/engineering) +"bZp" = ( +/turf/closed/wall/prison, +/area/prison/security) +"bZx" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/engineering) +"bZy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/quarters/research) -"aJM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Department" }, -/area/prison/quarters/research) -"aJN" = ( -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJO" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/prison, +/area/prison/security) +"bZA" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/head) +"bZB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJP" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bZC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aJQ" = ( -/obj/structure/machinery/light/small{ +/area/prison/security) +"bZD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aJR" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/storage/highsec/n) -"aJS" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aJU" = ( -/obj/structure/machinery/light/small{ +/area/prison/security) +"bZE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aJW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/quarters/research) -"aJY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aJZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aKa" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/medbay/foyer) -"aKb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hangar_storage/main) -"aKd" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/research) -"aKe" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/quarters/research) -"aKf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aKg" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aKh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/prison/hangar_storage/main) -"aKi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hangar_storage/main) -"aKj" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/prison/residential/north) -"aKk" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aKm" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aKn" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bZF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aKr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/north) -"aKs" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aKt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "North High-Security Storage" - }, -/turf/open/floor/prison, -/area/prison/storage/highsec/n) -"aKv" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aKx" = ( -/turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"aKy" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/checkpoint/highsec/n) -"aKz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aKA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aKB" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/north) -"aKC" = ( +/area/prison/security) +"bZG" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/north) -"aKD" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"bZK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/window/northright, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/quarters/research) -"aKE" = ( -/obj/structure/bookcase, -/obj/structure/machinery/light/small, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aKF" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/photograph, -/obj/item/device/camera_film{ - pixel_x = 8; - pixel_y = 4 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aKG" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/prison, +/area/prison/security) +"bZO" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"bZP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aKH" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"bZW" = ( /turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/highsec/n) -"aKI" = ( +/area/prison/cellblock/highsec/south/south) +"bZY" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aKJ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aKK" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aKL" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aKM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/prison/quarters/research) -"aKN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" + dir = 8 }, -/area/prison/hallway/central/north) -"aKO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/north) -"aKP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/north) -"aKQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/north) -"aKR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aKS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aKT" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/central/north) -"aKU" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hallway/central/north) -"aKV" = ( +/turf/open/floor/prison, +/area/prison/security/head) +"bZZ" = ( /obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"aKW" = ( +/turf/open/floor/carpet, +/area/prison/security/head) +"caa" = ( +/turf/closed/wall/prison, +/area/prison/recreation/medsec) +"cac" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"cag" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"cah" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"cau" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Staff-Research Maintenance" - }, /turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"aKY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Main Hangar Storage" +/area/prison/cellblock/highsec/south/south) +"caw" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/south) +"caA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/hangar_storage/main) -"aKZ" = ( +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"caC" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/hangar_storage/main) -"aLb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/north) -"aLd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/siding{ - icon_state = "siding8" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/residential/central) -"aLe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aLg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aLh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/area/prison/engineering/atmos) +"caG" = ( +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"caH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Toilet" }, -/area/prison/cellblock/highsec/north/south) -"aLi" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"caM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/highsec/north/south) -"aLj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/engineering) +"caO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/engineering) +"caP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aLk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/engineering) +"caQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aLl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/engineering) +"caR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aLm" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering" }, -/obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/engineering) +"caV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aLo" = ( -/obj/structure/bed/chair/office{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"caW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/n) -"aLp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"cbc" = ( +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"cbe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/security/checkpoint/highsec/n) -"aLq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y" }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"cbf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"cbh" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aLr" = ( +/area/prison/hallway/engineering) +"cbi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aLs" = ( +/area/prison/hallway/engineering) +"cbk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aLt" = ( -/obj/effect/decal/cleanable/blood, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/lowsec/ne) -"aLu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/hallway/engineering) +"cbn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aLv" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/maintenance/staff_research) -"aLw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aLy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aLz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aLA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aLC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/east) +"cbo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Department" }, -/area/prison/hallway/staff) -"aLD" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +/turf/open/floor/prison, +/area/prison/security) +"cbt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/staff) -"aLE" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/command/secretary_office) -"aLF" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"cbu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"cby" = ( +/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/command/secretary_office) -"aLG" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/area/prison/cellblock/mediumsec/north) +"cbC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/plating, -/area/prison/command/office) -"aLH" = ( +/area/prison/library) +"cbE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aLI" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aLK" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/highsec/n) -"aLL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security) +"cbF" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/prison, +/area/prison/security) +"cbH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"cbT" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"cbZ" = ( +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/north) +"cca" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/security/checkpoint/highsec/n) -"aLM" = ( -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/north) +"cce" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/n) -"aLN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"aLO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aLP" = ( -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"cch" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/n) -"aLQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"cci" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/wood, +/area/prison/library) +"ccj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating, +/area/prison/engineering) +"cck" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/plating, +/area/prison/engineering) +"ccm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering" }, -/area/prison/security/checkpoint/highsec/n) -"aLS" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison, +/area/prison/engineering) +"ccn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"cco" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"ccq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"ccr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/engineering) +"cct" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/wood, +/area/prison/residential/south) +"ccu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/lowsec/nw) -"aLT" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/wood, +/area/prison/residential/south) +"ccw" = ( +/turf/open/floor/prison, +/area/prison/hallway/engineering) +"ccy" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/lowsec/nw) -"aLU" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/prison/residential/south) +"ccB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/prison/cellblock/lowsec/nw) -"aLV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/prison, +/area/prison/hallway/east) +"ccC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/hallway/east) +"ccD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/lowsec/nw) -"aLW" = ( +/turf/open/floor/prison, +/area/prison/hallway/east) +"ccF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"ccI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -13542,27866 +9448,16456 @@ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aLX" = ( +/area/prison/security) +"ccM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison, +/area/prison/security/head) +"ccN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aLY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aLZ" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/prison, +/area/prison/security/head) +"ccV" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/mediumsec/north) +"ccX" = ( +/obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aMa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aMb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aMc" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/area/prison/cellblock/mediumsec/north) +"cde" = ( +/turf/closed/wall/prison, +/area/prison/quarters/staff) +"cdr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"cds" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"cdv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/monitoring/lowsec/ne) -"aMd" = ( +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"cdE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aMf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aMg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aMj" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aMk" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/cleaning) -"aMl" = ( +/turf/open/floor/prison, +/area/prison/security) +"cdF" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/prison/library) +"ceb" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/megaphone, +/turf/open/floor/prison, +/area/prison/security/head) +"cec" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/taperecorder, +/turf/open/floor/prison, +/area/prison/security/head) +"ced" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aMm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/prison/cleaning) -"aMn" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, -/area/prison/cleaning) -"aMo" = ( +/area/prison/security/head) +"ceh" = ( /obj/structure/surface/rack, -/obj/item/storage/box/mousetraps, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"cev" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security) +"cez" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Phone Booth" + }, /turf/open/floor/prison, -/area/prison/cleaning) -"aMp" = ( -/obj/structure/pipes/vents/pump/on, +/area/prison/recreation/medsec) +"ceE" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/atmospipes, /turf/open/floor/prison, -/area/prison/cleaning) -"aMr" = ( -/obj/structure/machinery/light{ +/area/prison/engineering) +"ceF" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/quarters/staff) -"aMs" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/quarters/staff) -"aMt" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/grown/sunflower, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aMu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/quarters/staff) -"aMv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/quarters/staff) -"aMw" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison, +/area/prison/engineering) +"ceG" = ( +/obj/structure/bed, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/under/colonist, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/engineering) +"ceH" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/highsec/south/south) +"ceI" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/south) +"ceS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/yellow, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Disposals" }, -/area/prison/quarters/staff) -"aMy" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating, +/area/prison/disposal) +"ceT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Execution" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison, +/area/prison/execution) +"ceU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/quarters/staff) -"aMz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Execution" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison, +/area/prison/execution) +"cfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 2; + name = "Head of Security's Quarters" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/turf/open/floor/prison, +/area/prison/security/head) +"cfl" = ( +/turf/open/floor/plating, +/area/prison/cellblock/protective) +"cfp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/engineering) +"cfq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/quarters/staff) -"aMA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" + dir = 5 }, -/area/prison/quarters/staff) -"aMB" = ( +/turf/open/floor/prison, +/area/prison/engineering) +"cfr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/engineering) +"cfs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Staff Quarters" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Chief Engineer's Quarters" }, -/turf/open/floor/prison{ - icon_state = "greenfull" +/turf/open/floor/plating, +/area/prison/engineering) +"cfu" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/engineering) +"cfy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Protective Custody Parole" }, -/area/prison/quarters/staff) -"aMC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"cfz" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/plating, +/area/prison/disposal) +"cfA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/prison/disposal) +"cfB" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "green" + icon_state = "pipe-c" }, -/area/prison/hallway/staff) -"aMD" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8 }, -/area/prison/hallway/staff) -"aME" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/disposal) +"cfC" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/hallway/engineering) +"cfD" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/execution) +"cfE" = ( +/obj/structure/pipes/standard/simple/visible/universal{ + dir = 4 }, -/area/prison/hallway/staff) -"aMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/disposal) +"cfF" = ( +/obj/structure/pipes/standard/tank/air{ + dir = 8 }, -/area/prison/hallway/staff) -"aMG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/disposal) +"cfG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/prison/execution) +"cfH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/prison/execution) +"cfI" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/hallway/staff) -"aMJ" = ( -/turf/closed/wall/prison, -/area/prison/command/secretary_office) -"aMK" = ( +/turf/open/floor/prison, +/area/prison/execution) +"cgb" = ( /obj/structure/closet, -/obj/item/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/item/weapon/chainofcommand, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aML" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aMM" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aMN" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aMO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aMP" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/command/office) -"aMQ" = ( -/obj/structure/bookcase, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, /turf/open/floor/wood, -/area/prison/command/office) -"aMR" = ( -/obj/structure/pipes/vents/scrubber, +/area/prison/security/head) +"cgc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, /turf/open/floor/wood, -/area/prison/command/office) -"aMS" = ( +/area/prison/security/head) +"cgd" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, /turf/open/floor/wood, -/area/prison/command/office) -"aMT" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aMU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 26 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aMV" = ( -/obj/structure/machinery/light/small{ +/area/prison/security/head) +"cgk" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aMW" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aMX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aMY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aMZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aNa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aNb" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aNc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aNe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aNf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aNg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aNi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aNj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/highsec/n) -"aNm" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"aNn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "North High-Security Cellblock" - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/security/checkpoint/highsec/n) -"aNo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/n) -"aNp" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/nw) -"aNq" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/ne) -"aNs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/security/checkpoint/highsec/n) -"aNw" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/security/checkpoint/highsec/n) -"aNx" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aNy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/nw) -"aNA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aNB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aNC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aND" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aNI" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aNK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/cleaning) -"aNM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison, -/area/prison/cleaning) -"aNN" = ( -/turf/open/floor/prison, -/area/prison/cleaning) -"aNO" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding9" - }, -/turf/open/organic/grass, -/area/prison/residential/north) -"aNP" = ( -/obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aNQ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/quarters/staff) -"aNR" = ( -/obj/item/shard, -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/quarters/staff) -"aNS" = ( -/obj/structure/window/reinforced, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/quarters/staff) -"aNT" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aNU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/bible/booze, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aNV" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/nw) -"aNW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/nw) -"aNX" = ( -/obj/structure/window/reinforced, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/quarters/staff) -"aNY" = ( -/obj/structure/machinery/door/window/southright, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aNZ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/quarters/staff) -"aOa" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Staff Quarters" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aOb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aOc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aOd" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aOe" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aOf" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aOg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aOh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aOi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aOj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"aOk" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aOl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/hallway/staff) -"aOm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aOn" = ( -/obj/structure/window/reinforced, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aOp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aOq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aOr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aOs" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aOt" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/quarters/staff) -"aOu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aOv" = ( -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aOw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/prison/command/secretary_office) -"aOy" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/prison/command/office) -"aOA" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/prison/command/office) -"aOB" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/pen, -/turf/open/floor/carpet, -/area/prison/command/office) -"aOC" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/prison/command/office) -"aOD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aOE" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aOF" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aOG" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aOI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aOJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aOK" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aOL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aOM" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("PRISON") - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aON" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"aOO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"aOP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/office{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"aOR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"aOS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aOT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aOU" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/nw) -"aOV" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aOW" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aOY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/north) -"aOZ" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding5" - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/prison/residential/north) -"aPa" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aPb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aPc" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aPf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aPg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aPh" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/prison/cleaning) -"aPi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/cleaning) -"aPk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/cleaning) -"aPl" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aPm" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aPn" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aPo" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aPp" = ( -/turf/closed/wall/prison, -/area/prison/toilet/staff) -"aPq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aPr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/hallway/staff) -"aPs" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aPt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aPu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"aPv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aPw" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/wood, -/area/prison/hallway/staff) -"aPx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aPy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aPz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aPA" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/nw) -"aPB" = ( -/obj/structure/showcase, -/turf/open/floor/wood, -/area/prison/hallway/staff) -"aPC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aPD" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor/wood, -/area/prison/hallway/staff) -"aPE" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/ne) -"aPF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aPG" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/wood, -/area/prison/hallway/staff) -"aPH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aPI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aPJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aPL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/east) -"aPM" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aPN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aPO" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aPP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aPQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aPR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aPS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Warden's Office" - }, -/turf/open/floor/carpet, -/area/prison/command/office) -"aPT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/office) -"aPV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/command/office) -"aPW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/office) -"aPX" = ( -/obj/item/frame/table/wood/fancy, -/obj/item/paper/prison_station/warden_note, -/obj/item/tool/pen, -/turf/open/floor/carpet, -/area/prison/command/office) -"aPY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/clothing/head/helmet/warden, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/prison/command/office) -"aPZ" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/prison/command/office) -"aQb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/highsec/north/south) -"aQc" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/highsec/north/south) -"aQd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/highsec/north/south) -"aQe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/n) -"aQf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/nw) -"aQg" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/spacecash/c1000, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aQh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/nw) -"aQi" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aQj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aQk" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aQl" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/nw) -"aQm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Low-Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/north) -"aQn" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/ne) -"aQo" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/ne) -"aQp" = ( -/turf/closed/wall/prison, -/area/prison/security/monitoring/lowsec/ne) -"aQq" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/ne) -"aQr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Northeast Low-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/ne) -"aQt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aQu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/cleaning) -"aQv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison, -/area/prison/cleaning) -"aQw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/cleaning) -"aQx" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aQy" = ( -/obj/structure/closet, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aQz" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"aQA" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/toilet/staff) -"aQB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aQC" = ( -/turf/closed/wall/prison, -/area/prison/recreation/staff) -"aQD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aQF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aQG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aQH" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aQI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen{ - pixel_y = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aQJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aQK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aQL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/command/office) -"aQM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/prison/command/office) -"aQN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/carpet, -/area/prison/command/office) -"aQO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aQP" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aQQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/prison/command/office) -"aQR" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood, -/area/prison/command/office) -"aQS" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aQT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aQU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Toilet" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/nw) -"aQV" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aQW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aQZ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aRa" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aRb" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aRc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"aRe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aRf" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aRg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aRh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aRi" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aRj" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aRk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aRl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aRm" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aRn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aRo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aRp" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aRq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aRr" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/toilet/staff) -"aRs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aRt" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aRv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aRw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aRx" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aRz" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/ne) -"aRA" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRC" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRE" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aRH" = ( -/obj/effect/decal/siding/wood_siding, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/central) -"aRI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aRK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/east) -"aRL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aRM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aRN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aRO" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aRP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aRQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aRR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aRS" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/nw) -"aRT" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/nw) -"aRU" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/ne) -"aRV" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/ne) -"aRW" = ( -/obj/structure/machinery/keycard_auth/lockdown/prison, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aRY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/command/office) -"aRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aSa" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/highsec/n) -"aSb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aSd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aSe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aSf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"aSg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aSj" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"aSk" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aSl" = ( -/obj/structure/machinery/shower{ - dir = 8; - pixel_x = -6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aSm" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aSn" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aSp" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aSq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aSr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aSs" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aSt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aSu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/nw) -"aSw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aSx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Low-Security Recreation" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSB" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSC" = ( -/obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aSD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Northwest Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aSI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aSJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/north) -"aSK" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aSL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aSM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Northeast Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/ne) -"aSN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aSO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aSP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aSR" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aSS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aST" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aSU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/ne) -"aSW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aSZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aTa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aTd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/lowsec/ne) -"aTe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aTf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/ne) -"aTh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aTi" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aTj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 28 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aTk" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aTl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aTm" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aTn" = ( -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aTo" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aTp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aTq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/prison/command/secretary_office) -"aTr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aTs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aTt" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aTu" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/maintenance/residential/nw) -"aTw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aTx" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aTy" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aTz" = ( -/obj/structure/machinery/shower{ - dir = 8; - pixel_x = -6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aTA" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aTB" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aTC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aTD" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aTE" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/canteen) -"aTF" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/canteen) -"aTG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/canteen) -"aTH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aTI" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aTJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/nw) -"aTL" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/nw) -"aTM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aTN" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aTO" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aTQ" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/north) -"aTR" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aTS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aTT" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aTU" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aTV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/ne) -"aTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/ne) -"aTX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aTY" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aTZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/ne) -"aUa" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Staff Restrooms" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/hallway/staff) -"aUf" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUh" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Staff Recreation" - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUl" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUn" = ( -/obj/structure/machinery/keycard_auth/lockdown/prison, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/prison/command/secretary_office) -"aUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aUq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aUr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aUs" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/prison/security/checkpoint/highsec/n) -"aUt" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aUu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Phone Booth" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aUv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/explosive/grenade/high_explosive/airburst, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aUw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c10, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aUx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aUy" = ( -/obj/structure/toilet, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aUz" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aUA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aUB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aUC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aUD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"aUE" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aUF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/ne) -"aUG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aUH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aUI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUJ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aUK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/hallway/staff) -"aUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aUM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Staff Recreation" - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUO" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aUQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 2; - name = "Warden's Secretary's Office" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/command/secretary_office) -"aUR" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/command/secretary_office) -"aUS" = ( -/turf/closed/wall/prison, -/area/prison/command/quarters) -"aUT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 2; - name = "Warden's Quarters" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/command/quarters) -"aUU" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/command/quarters) -"aUV" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/command/quarters) -"aUW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aUY" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"aUZ" = ( -/turf/open/floor/plating, -/area/prison/hallway/central/east) -"aVa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aVb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aVc" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aVd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aVi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aVj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aVm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aVn" = ( -/obj/structure/machinery/shower{ - dir = 8; - pixel_x = -6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aVo" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aVp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aVq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aVr" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aVs" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aVt" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aVv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aVw" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aVx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aVy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aVA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aVB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aVC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aVD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aVE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aVF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/ne) -"aVG" = ( -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/ne) -"aVH" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/ne) -"aVI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aVJ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/ne) -"aVK" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aVM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aVN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aVO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aVP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aVQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/prison/hallway/staff) -"aVR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"aVS" = ( -/turf/closed/wall/prison, -/area/prison/hallway/central/east) -"aVT" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aVU" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aVV" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aVW" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aVX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aVZ" = ( -/obj/structure/closet, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWd" = ( -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWe" = ( -/obj/structure/bed, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aWf" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/command/quarters) -"aWg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aWh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aWm" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aWn" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/residential/central) -"aWo" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/prison/residential/central) -"aWp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"aWq" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/wood, -/area/prison/residential/central) -"aWr" = ( -/turf/closed/wall/prison, -/area/prison/residential/central) -"aWs" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aWt" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aWu" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aWv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/central) -"aWw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aWx" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aWy" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"aWz" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/monitoring/highsec) -"aWA" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/north/south) -"aWB" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/north/south) -"aWD" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aWE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 2; - name = "Security Records" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"aWG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"aWH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aWI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"aWJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"aWK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aWL" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aWM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aWN" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aWO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aWP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aWR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"aWS" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/yard) -"aWT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/yard) -"aWV" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aWW" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aWX" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/toilet/staff) -"aWZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"aXa" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"aXb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"aXc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"aXd" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aXf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aXj" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aXk" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aXl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aXm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aXn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/staff) -"aXo" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aXp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aXq" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aXr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aXs" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aXt" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/hanger/main) -"aXu" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aXv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/prison/residential/central) -"aXw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/command/quarters) -"aXx" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"aXy" = ( -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aXz" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/command/quarters) -"aXA" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aXB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/central) -"aXC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aXD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/central) -"aXE" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aXF" = ( -/obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"aXG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"aXH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"aXI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aXJ" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aXK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"aXL" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/highsec/north/south) -"aXM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aXN" = ( -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aXO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aXP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aXQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aXR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/n) -"aXS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Low-Security Recreation" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aXT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aXU" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aXW" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aXX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aXY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aXZ" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aYa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/staff) -"aYb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/hallway/staff) -"aYc" = ( -/obj/structure/bookcase, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aYd" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aYf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aYg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/prison/command/quarters) -"aYh" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/command/quarters) -"aYi" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/nw) -"aYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"aYp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aYq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aYs" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aYt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aYu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aYv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aYw" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"aYx" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aYy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"aYz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aYA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aYB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aYC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aYD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/nw) -"aYE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aYF" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"aYG" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aYI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aYJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aYK" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aYL" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hanger/main) -"aYM" = ( -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYN" = ( -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aYO" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 30 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aYQ" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/prison/residential/central) -"aYR" = ( -/turf/open/floor/wood, -/area/prison/residential/central) -"aYS" = ( -/obj/item/storage/box/mousetraps, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aYT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Staff Custodial Closet"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aYU" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"aYV" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aYW" = ( -/turf/closed/wall/prison, -/area/prison/hallway/staff) -"aYX" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"aYY" = ( -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"aYZ" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"aZa" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/staff) -"aZb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Staff Hallway" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/staff) -"aZc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/staff) -"aZe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aZf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aZg" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aZh" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/prison/research/secret/containment) -"aZj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aZk" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"aZl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aZm" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aZn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"aZp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aZq" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/nw) -"aZr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"aZs" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/ne) -"aZu" = ( -/obj/structure/machinery/flasher{ - id = "canteen" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aZv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"aZw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"aZx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"aZy" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aZz" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aZA" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/hallway/staff) -"aZB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aZC" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aZD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"aZE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"aZF" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/residential/central) -"aZG" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/residential/central) -"aZH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aZI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"aZL" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"aZM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"aZN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aZO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"aZP" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/residential/central) -"aZQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Bedroom" - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"aZR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"aZS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"aZT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"aZU" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aZV" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/highsec/north/south) -"aZW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"aZX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aZY" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"aZZ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"baa" = ( -/turf/closed/wall/prison, -/area/prison/security/monitoring/highsec) -"bab" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bac" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"bad" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bae" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/canteen) -"baf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Kitchen" - }, -/turf/open/floor/prison, -/area/prison/kitchen) -"bah" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bai" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/kitchen) -"baj" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/residential/central) -"bak" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/lowsec/nw) -"bal" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bam" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/yard) -"ban" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/lowsec/ne) -"bao" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"bap" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"baq" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bar" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/residential/central) -"bas" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"bat" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"bau" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"bav" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"baw" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/vip) -"bax" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/security/checkpoint/vip) -"baz" = ( -/turf/closed/wall/prison, -/area/prison/storage/vip) -"baA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"baB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"baC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"baD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"baE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"baF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baG" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"baK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"baM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"baN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"baO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"baP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"baQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"baR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"baT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baU" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding4" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"baV" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baW" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"baX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"baY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"baZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bba" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bbb" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bbc" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"bbd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/north/south) -"bbe" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bbf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bbh" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bbi" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bbj" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/residential/central) -"bbk" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/residential/central) -"bbl" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/residential/central) -"bbm" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bbn" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bbo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bbp" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/yard) -"bbr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bbs" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bbt" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bbu" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bbv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bbw" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/vip) -"bbx" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bby" = ( -/obj/structure/bookcase, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bbz" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bbA" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bbB" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bbC" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/entrance) -"bbD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bbE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bbF" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical{ - name = "Main Hangar Door"; - unacidable = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bbG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding4" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bbH" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bbI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/prison/residential/central) -"bbJ" = ( -/turf/open/floor/carpet, -/area/prison/residential/central) -"bbK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/residential/central) -"bbL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bbN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bbO" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prison/residential/central) -"bbP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bbQ" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bbR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison, -/area/prison/storage/vip) -"bbS" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/storage/vip) -"bbT" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bbU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bbV" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bbW" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/storage/vip) -"bbX" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"bbY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/north/south) -"bbZ" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/north/south) -"bca" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"bcb" = ( -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/n) -"bcc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bcd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bce" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/hallway/central/east) -"bcf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bcg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bcj" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/yard) -"bck" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/yard) -"bcl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/yard) -"bcm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bcn" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bco" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bcp" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bcq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"bcr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bct" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bcv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bcx" = ( -/turf/closed/wall/prison, -/area/prison/hallway/entrance) -"bcy" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bcz" = ( -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bcA" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bcB" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bcC" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hallway/entrance) -"bcD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bcE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bcF" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Hangar Landing Zone" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bcG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bcM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"bcO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"bcQ" = ( -/turf/open/floor/prison, -/area/prison/residential/central) -"bcR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/prison/residential/central) -"bcT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/residential/central) -"bcU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison, -/area/prison/residential/central) -"bcV" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Civilian Residences Admin" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bcW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 2; - name = "High-Security Monitoring Storage" - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bcZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bda" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"bdb" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bdc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdf" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdh" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bdj" = ( -/obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/vip) -"bdk" = ( -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bdl" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/kitchen) -"bdm" = ( -/obj/structure/bed, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bdn" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bdo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bdp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bdq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bdr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bdu" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bdv" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/central) -"bdw" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bdx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"bdy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bdz" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bdB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bdC" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"bdD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bdI" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/monitoring/highsec) -"bdJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bdK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bdL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"bdN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bdO" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/vip) -"bdR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Central Ring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/west) -"bdT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bdU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Yard" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"bea" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"beb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/hallway/central/east) -"bec" = ( -/turf/open/floor/prison, -/area/prison/canteen) -"bed" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/canteen) -"bef" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/canteen) -"beg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"beh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bei" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bej" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bek" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bel" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"ben" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beo" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bep" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"ber" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bes" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bet" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"beu" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bev" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding8" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/central) -"bew" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bex" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bez" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"beD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"beE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"beF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Access Shutters" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"beJ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"beK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"beL" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"beM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"beN" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/plating, -/area/prison/hanger/main) -"beQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/residential/central) -"beR" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"beS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"beV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/prison/security/monitoring/highsec) -"beW" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"beX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/prison, -/area/prison/residential/central) -"beY" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bfb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bfc" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/vip) -"bfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bfe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bff" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bfg" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/vip) -"bfh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/vip) -"bfi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bfj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bfk" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/checkpoint/vip) -"bfl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bfm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/prison/security/checkpoint/vip) -"bfn" = ( -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bfo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bfq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/plating, -/area/prison/storage/vip) -"bfr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"bfs" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/yard) -"bft" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bfu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bfv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bfw" = ( -/turf/closed/wall/prison, -/area/prison/yard) -"bfx" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/yard) -"bfy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bfz" = ( -/obj/item/frame/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bfC" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/canteen) -"bfD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/hallway/central/east) -"bfF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Canteen" - }, -/turf/open/floor/prison, -/area/prison/canteen) -"bfG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"bfH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/bottle/cognac, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bfO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/canteen) -"bfP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/canteen) -"bfR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bfS" = ( -/obj/structure/sign/safety/restrictedarea, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/hanger/main) -"bfT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bfU" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/canteen) -"bfV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bfY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "Canteen" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bfZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bga" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating, -/area/prison/residential/central) -"bgb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bgc" = ( -/turf/open/organic/grass, -/area/prison/residential/central) -"bgd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bgf" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bgg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bgh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bgi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bgj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"bgk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"bgl" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bgm" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/residential/central) -"bgn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/residential/central) -"bgp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bgq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"bgr" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bgs" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bgt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bgu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/prison/security/monitoring/highsec) -"bgv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bgw" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bgx" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bgy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bgA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bgB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bgC" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bgD" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bgF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"bgG" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgH" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bgI" = ( -/obj/item/ammo_casing, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgJ" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgK" = ( -/obj/item/ammo_casing, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgL" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgM" = ( -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bgN" = ( -/turf/open/floor/prison, -/area/prison/storage/vip) -"bgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"bgP" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/ne) -"bgQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bgS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bgT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bgV" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bgW" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bgX" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/kitchen) -"bgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bha" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhb" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhc" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bhf" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/residential/central) -"bhg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bhh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bhi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bhj" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhl" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhn" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bho" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"bhp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"bhs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bht" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bhu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bhv" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bhw" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bhx" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bhy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"bhz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"bhA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"bhB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Northwest Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/nw) -"bhC" = ( -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/central) -"bhD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/siding{ - icon_state = "siding8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bhE" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"bhG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bhH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bhI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bhM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bhN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bhO" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bhP" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/ne) -"bhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Northeast Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/ne) -"bhR" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"bhT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bhU" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhW" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/kitchen) -"bhX" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bhY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"bhZ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bia" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bib" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bid" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/residential/central) -"bie" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 2; - name = "Civilian Residences Admin" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/residential/central) -"big" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bik" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bil" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bim" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/cellblock/vip) -"bin" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bio" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bip" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Storage" - }, -/turf/open/floor/prison, -/area/prison/storage/vip) -"biq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"bir" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/central/west) -"bis" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/central/west) -"bit" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Yard" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"biu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"biv" = ( -/obj/item/frame/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"biw" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"biy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Yard" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"biz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/east) -"biA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/central/east) -"biB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/central/east) -"biC" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"biE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"biH" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"biI" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"biO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"biP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"biQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/hanger/main) -"biR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "High-Security Monitoring" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"biS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"biT" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/prison/hanger/main) -"biU" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"biV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"biY" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"biZ" = ( -/turf/open/gm/river, -/area/prison/residential/central) -"bja" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bjb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bjc" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bjd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bje" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bjg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bjh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bji" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bjj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bjk" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bjm" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bjn" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Storage" - }, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"bjo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bjp" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"bjq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bjr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bjt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bju" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bjv" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/cellblock/vip) -"bjw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bjE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bjG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bjH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"bjJ" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bjK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bjN" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bjO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bjP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/prison/security/checkpoint/vip) -"bjQ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bjR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bjS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bjT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bjU" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bjW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/storage/vip) -"bjX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/storage/vip) -"bjY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/storage/vip) -"bjZ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/storage/vip) -"bka" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"bkb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bkc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bkd" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bke" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bkf" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bkg" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bkh" = ( -/obj/structure/machinery/flasher_button{ - id = "yard_flashers"; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bki" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bkj" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"bkk" = ( -/obj/structure/toilet, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"bkl" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"bkm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bkn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bko" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"bkp" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"bkr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bkt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bku" = ( -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bkw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bkx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/hanger/main) -"bky" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bkz" = ( -/obj/effect/decal/siding{ - icon_state = "siding4" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bkB" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/organic/grass, -/area/prison/residential/central) -"bkC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/residential/central) -"bkD" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bkG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bkH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/residential/central) -"bkI" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "Civilian Residences Emergency Access" - }, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"bkJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bkK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"bkL" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bkM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"bkN" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/organic/grass, -/area/prison/residential/central) -"bkO" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/plating, -/area/prison/hallway/central/east) -"bkP" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bkQ" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bkR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/highsec) -"bkS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/vip) -"bkT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bkU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bkV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bkW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"bkY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bkZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bla" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/vip) -"blb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"blc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bld" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/security/checkpoint/vip) -"ble" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"blf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/hallway/central/west) -"blg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/security/checkpoint/vip) -"bli" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/storage/vip) -"blk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bll" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/yard) -"blm" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bln" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"blo" = ( -/obj/item/frame/table/reinforced, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding4" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"blp" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/prison/yard) -"blq" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/yard) -"blr" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/good_item, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bls" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"blt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"blu" = ( -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/yard) -"blw" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/canteen) -"bly" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"blz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"blA" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"blB" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"blC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"blD" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/entrance) -"blE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Entrance Hallway" - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"blF" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hanger/main) -"blG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"blH" = ( -/turf/open/floor/prison, -/area/prison/hanger/main) -"blI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/residential/central) -"blK" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"blP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/prison/residential/central) -"blQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "Civilian Residences Emergency Access" - }, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"blR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"blS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"blT" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/showcase, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"blU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"blW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/south) -"blY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"blZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/vip) -"bma" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bmb" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bmc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bme" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bmh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bmi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - name = "VIP Cellblock / Civilian Residences Access" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/security/checkpoint/vip) -"bmj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/security/checkpoint/vip) -"bml" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bmo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/storage/vip) -"bmp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/storage/vip) -"bmq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/storage/vip) -"bmr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/storage/vip) -"bms" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bmt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Low-Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/west) -"bmu" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bmw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/yard) -"bmy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bmz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/yard) -"bmA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bmB" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding4" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bmC" = ( -/obj/effect/landmark/good_item, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/yard) -"bmE" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bmF" = ( -/turf/closed/wall/prison, -/area/prison/canteen) -"bmH" = ( -/turf/closed/wall/prison, -/area/prison/toilet/canteen) -"bmI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bmJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bmK" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"bmL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"bmM" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hallway/entrance) -"bmN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"bmO" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/toilet/canteen) -"bmP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/toilet/canteen) -"bmQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bmR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/prison/hanger/main) -"bmS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/prison/hanger/main) -"bmT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bmU" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bmV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bmW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bmY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/prison/residential/central) -"bmZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bna" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 250 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bnb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"bnd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bne" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bnf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bng" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnh" = ( -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"bni" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnk" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bno" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/cellblock/vip) -"bnq" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bnr" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/prison/security/checkpoint/vip) -"bnt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bnu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bnx" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/prison/storage/vip) -"bny" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/prison/storage/vip) -"bnz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/storage/vip) -"bnA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bnB" = ( -/obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bnC" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bnD" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/yard) -"bnE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/east) -"bnF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bnG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bnK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/flasher{ - id = "canteen" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bnL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"bnM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/canteen) -"bnN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bnO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bnP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bnQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bnR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/toilet/canteen) -"bnS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bnT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bnU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bnV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/prison/hanger/main) -"bnW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bnX" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding10" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bnY" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bnZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Monorail Station West" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"boa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bob" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"boc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"bod" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/monitoring/highsec) -"boe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bog" = ( -/obj/item/shard, -/obj/structure/window/framed/prison, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"boh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"boi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"boj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/central/west) -"bok" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/central/west) -"bol" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bom" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bon" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/east) -"boo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/central/east) -"bop" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"boq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bor" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bos" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Canteen Restrooms" - }, -/turf/open/floor/plating, -/area/prison/canteen) -"bot" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bou" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"bow" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/canteen) -"boy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/hanger/main) -"boz" = ( -/obj/effect/decal/siding, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/central) -"boA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/siding{ - icon_state = "siding8" - }, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/residential/central) -"boB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"boC" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/monorail/west) -"boD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/monorail/west) -"boF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"boG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"boH" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"boI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"boJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"boK" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"boL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"boM" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"boN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"boO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"boP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"boQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"boT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"boU" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"boV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"boW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/storage/vip) -"boX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Southwest Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"boZ" = ( -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bpa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bpc" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"bpe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bpf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bpg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/entrance) -"bph" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Entrance Hallway" - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bpi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hanger/main) -"bpk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bpl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bpm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/monorail/west) -"bpn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/monorail/west) -"bpo" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bpr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bps" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bpt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bpu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bpv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/effect/landmark/good_item, -/turf/open/floor/prison, -/area/prison/cellblock/vip) -"bpw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bpx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/vip) -"bpy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bpz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bpA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bpB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bpC" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"bpD" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"bpE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"bpI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/prison/hanger/main) -"bpJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "rampbottom" - }, -/area/prison/hanger/main) -"bpL" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/monorail/west) -"bpM" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bpN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/security/monitoring/highsec) -"bpO" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/security/monitoring/highsec) -"bpP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bpT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bpU" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bpV" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, -/area/prison/security/monitoring/highsec) -"bpW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bpX" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/vip) -"bpY" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bpZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/prison/security/checkpoint/vip) -"bqa" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bqb" = ( -/turf/closed/wall/prison, -/area/prison/monorail/west) -"bqc" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bqd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bqe" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bqf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"bqg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"bqh" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/toilet/canteen) -"bqi" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/toilet/canteen) -"bqk" = ( -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding5" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bql" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/sw) -"bqm" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/hallway/central/west) -"bqn" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bqo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/monorail/west) -"bqp" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/lowsec/sw) -"bqq" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/monorail/west) -"bqr" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/lowsec/se) -"bqs" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/se) -"bqu" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bqw" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bqx" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/vip) -"bqy" = ( -/obj/effect/decal/cleanable/blood, -/turf/closed/wall/prison, -/area/prison/cellblock/vip) -"bqz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bqA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bqB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/security/checkpoint/vip) -"bqC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bqD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bqE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/plating, -/area/prison/canteen) -"bqF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bqG" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bqH" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bqI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqK" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/security/monitoring/highsec) -"bqL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/siding/wood_siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/siding, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bqT" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/vip) -"bqU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bqV" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/vip) -"bqW" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bqX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/prison/security/checkpoint/vip) -"bqY" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bqZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"bra" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"brb" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/vip) -"brc" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"brd" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/north) -"bre" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"brf" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"brg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"brh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"brk" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"brl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"brm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Southeast Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"brn" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"bro" = ( -/obj/structure/bed, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"brp" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"brq" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"brr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding1) -"brs" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"brt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bru" = ( -/turf/closed/wall/prison, -/area/prison/store) -"brv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"brw" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"brx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bry" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/cans/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"brz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"brA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"brB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"brD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"brE" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"brF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"brH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"brM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/residential/central) -"brN" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/transit, -/turf/open/floor/prison, -/area/prison/monorail/west) -"brO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"brP" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/sw) -"brQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"brR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"brS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"brT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"brU" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/se) -"brV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"brW" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/se) -"brX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"brY" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"brZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bsa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"bsb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"bsc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bsd" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bse" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bsi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"bsj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"bsk" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bsl" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"bsm" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/monorail/west) -"bsn" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space) -"bso" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bsp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/security/monitoring/highsec) -"bsq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bss" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/visitation) -"bst" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bsu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bsv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bsw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/hanger/main) -"bsz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/monorail/west) -"bsA" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/monorail/west) -"bsB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bsC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bsE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bsF" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/sw) -"bsG" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bsI" = ( -/turf/closed/shuttle/elevator/gears, -/area/prison/hallway/central/west) -"bsJ" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bsK" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"bsL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bsM" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bsO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bsP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bsQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Yard" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bsR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bsS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bsT" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bsU" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bsV" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/chocolatebar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bsW" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"bsX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bsY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison, -/area/prison/visitation) -"bsZ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"bta" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"btb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"btd" = ( -/obj/structure/monorail, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bte" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"btf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"btg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"bth" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Visitation" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/visitation) -"bti" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"btj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"btk" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/entrance) -"btl" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/hallway/entrance) -"btm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"btn" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bto" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bts" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btt" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/visitation) -"btu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"btx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bty" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"btz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/highsec) -"btD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/matter_decompiler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"btE" = ( -/turf/closed/shuttle/elevator, -/area/prison/hallway/central/west) -"btF" = ( -/turf/open/shuttle/elevator/grating, -/area/prison/hallway/central/west) -"btG" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"btH" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"btI" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"btJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"btK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"btL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"btM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"btN" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"btP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"btQ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"btR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"btS" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/se) -"btT" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"btU" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"btW" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"btX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"btY" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/holding/holding1) -"btZ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/visitation) -"bua" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bub" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"buc" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/visitation) -"bud" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bue" = ( -/turf/closed/wall/prison, -/area/prison/holding/holding1) -"buf" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/hallway/entrance) -"bug" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/entrance) -"buh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/hallway/entrance) -"bui" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bul" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/visitation) -"bun" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"buo" = ( -/turf/closed/shuttle/elevator{ - dir = 1 - }, -/area/prison/hallway/central/west) -"buq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bur" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bus" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"but" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Holding Cell 1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"buu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"buv" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/no_raisin, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"buw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bux" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/visitation) -"buy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/visitation) -"buz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/visitation) -"buA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -26 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"buB" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"buC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/visitation) -"buD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/visitation) -"buE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/hallway/entrance) -"buF" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/hallway/entrance) -"buG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"buI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"buJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"buK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"buL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"buM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"buN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Central Ring" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/west) -"buO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"buP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"buQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"buR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/hanger/main) -"buS" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/sw) -"buT" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/sw) -"buU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"buV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"buW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"buX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"buY" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/se) -"bva" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/s) -"bvb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bvc" = ( -/obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/floor/prison, -/area/prison/research/secret/containment) -"bvd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"bvf" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/prison/hallway/central/west) -"bvi" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bvj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/yard) -"bvk" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/yard) -"bvl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/yard) -"bvm" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/research/secret) -"bvn" = ( -/obj/effect/decal/cleanable/blood, -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/se) -"bvo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bvp" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bvq" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bvr" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bvs" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bvt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/visitation) -"bvu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/visitation) -"bvv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bvw" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bvy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bvz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bvA" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/highsec/south/north) -"bvB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bvC" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bvD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bvE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bvF" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bvG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bvH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bvI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/prison/visitation) -"bvJ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bvK" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/visitation) -"bvL" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/hallway/entrance) -"bvM" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/highsec/s) -"bvN" = ( -/turf/closed/shuttle/elevator{ - dir = 5 - }, -/area/prison/hallway/central/west) -"bvO" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/device/lightreplacer, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bvQ" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = -30 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/entrance) -"bvS" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bvT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bvU" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bvW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = -30 - }, -/turf/open/floor/prison, -/area/prison/hanger/main) -"bvX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bvZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bwc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"bwf" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bwj" = ( -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/sw) -"bwk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bwl" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bwn" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bwo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"bwp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"bwq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bwr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bws" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bwt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/se) -"bwu" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"bwv" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bww" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bwx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"bwy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/visitation) -"bwz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bwA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bwC" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/north) -"bwD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bwE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bwF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bwG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/prison/visitation) -"bwH" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bwI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/visitation) -"bwJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/visitation) -"bwK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/visitation) -"bwL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/entrance) -"bwM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison, -/area/prison/hallway/entrance) -"bwN" = ( -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/s) -"bwO" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/quarters/security) -"bwP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Hangar-Barracks Maintenance" - }, -/turf/open/floor/plating, -/area/prison/hanger/main) -"bwQ" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/hangar) -"bwR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Main Hangar Traffic Control" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/checkpoint/hangar) -"bwS" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/checkpoint/hangar) -"bwT" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/checkpoint/hangar) -"bwU" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/monorail/east) -"bwV" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bwW" = ( -/turf/closed/wall/prison, -/area/prison/monorail/east) -"bwX" = ( -/turf/closed/wall/prison, -/area/prison/visitation) -"bwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "East Monorail Station" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bxa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bxc" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bxe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/monorail/west) -"bxf" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bxg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/monorail/west) -"bxh" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/central) -"bxj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bxk" = ( -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/north) -"bxl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bxm" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bxo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bxp" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bxq" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bxt" = ( -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/yard) -"bxu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bxv" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bxA" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/prison/hallway/central/west) -"bxF" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/hallway/central/west) -"bxG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/sw) -"bxH" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"bxI" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/lowsec/se) -"bxJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bxL" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/se) -"bxN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bxO" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/prison/residential/central) -"bxP" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bxQ" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bxR" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"bxT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bxU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding1) -"bxV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/holding/holding1) -"bxW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding1) -"bxX" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bxY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bxZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bya" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"byd" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"bye" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"byf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/visitation) -"byg" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/visitation) -"byh" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/visitation) -"byi" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/visitation) -"byj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/visitation) -"byk" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"byl" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bym" = ( -/obj/structure/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"byn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"byo" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"byp" = ( -/obj/structure/closet, -/turf/open/floor/prison, -/area/prison/quarters/security) -"byq" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"byr" = ( -/obj/structure/girder/reinforced, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"bys" = ( -/obj/structure/bed, -/turf/open/floor/prison, -/area/prison/quarters/security) -"byt" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/hangar_barracks) -"byu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"byw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"byx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"byy" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"byC" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"byE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"byF" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"byG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"byH" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"byI" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"byJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"byK" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/hangar) -"byL" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/security/checkpoint/hangar) -"byM" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/monorail/east) -"byN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/monorail/east) -"byO" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/monorail/east) -"byP" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"byQ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/prison/monorail/west) -"byR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/monorail/west) -"byS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bza" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec/s) -"bzb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bzc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bzd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/sw) -"bze" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bzf" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bzg" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/quarters/security) -"bzh" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bzi" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bzj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bzk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bzl" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bzm" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bzo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/lowsec/se) -"bzp" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bzq" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bzr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 26 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bzs" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"bzt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/lowsec/se) -"bzu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/holding/holding1) -"bzv" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/se) -"bzw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/holding/holding1) -"bzx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Prison Store" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/store) -"bzy" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/store) -"bzz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bzD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Visitation" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"bzE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "East Hallway" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bzG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bzH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bzI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bzK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "Main Hangar Traffic Control" - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/hangar) -"bzL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bzM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/checkpoint/hangar) -"bzO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/hangar) -"bzP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bzQ" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/hangar) -"bzR" = ( -/obj/structure/shuttle/diagonal{ - dir = 8 - }, -/turf/open/space, -/area/space) -"bzS" = ( -/obj/structure/shuttle/window, -/turf/open/floor/plating, -/area/prison/monorail/east) -"bzT" = ( -/obj/structure/shuttle/diagonal{ - dir = 1 - }, -/turf/open/space, -/area/space) -"bzV" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/monorail/east) -"bzW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/monorail/east) -"bzX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/monorail/east) -"bzY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/monorail/east) -"bzZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bAa" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/maintenance/residential/sw) -"bAe" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/highsec/south/north) -"bAf" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bAi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding1) -"bAn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bAo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bAp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/sw) -"bAs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/sw) -"bAt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bAu" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bAv" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"bAw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/central/south) -"bAx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/south) -"bAy" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"bAA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bAC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bAD" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bAE" = ( -/turf/open/floor/prison, -/area/prison/quarters/security) -"bAF" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bAG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/prison/hallway/east) -"bAH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/hallway/east) -"bAI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bAO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bAP" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"bAQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bAR" = ( -/obj/structure/bed, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bAS" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bAT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bAU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"bAV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bAW" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/hangar) -"bAX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bAY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bAZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bBa" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bBb" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/hangar) -"bBc" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/hangar) -"bBd" = ( -/turf/closed/shuttle{ - icon_state = "swall3" - }, -/area/prison/monorail/east) -"bBe" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/monorail/east) -"bBf" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/prison/monorail/east) -"bBg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/monorail/east) -"bBh" = ( -/turf/closed/wall/prison, -/area/prison/security/monitoring/lowsec/sw) -"bBk" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bBl" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bBn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bBp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bBq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bBr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bBs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bBu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bBv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/monorail/west) -"bBw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/monorail/west) -"bBx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bBy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bBz" = ( -/obj/item/device/megaphone, -/turf/open/floor/prison, -/area/prison/hallway/central/west) -"bBB" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hallway/east) -"bBC" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/east) -"bBF" = ( -/turf/open/floor/prison, -/area/prison/hallway/central/west) -"bBH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/sw) -"bBI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bBJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bBK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bBL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/security/monitoring/lowsec/sw) -"bBM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/sw) -"bBN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bBO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/sw) -"bBQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/sw) -"bBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bBS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bBU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bBV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bBX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bBY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"bBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"bCa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"bCb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bCc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bCd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/prison/hallway/central/south) -"bCe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/south) -"bCf" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bCg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bCh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bCi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/south) -"bCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"bCk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCo" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/prison/medbay) -"bCp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/prison/cellblock/lowsec/se) -"bCs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bCt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/prison/cellblock/lowsec/se) -"bCv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bCw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bCx" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bCy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bCz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bCA" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/south/north) -"bCB" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bCC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/prison/hallway/east) -"bCE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bCF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bCG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bCH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/east) -"bCJ" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bCL" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bCM" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bCN" = ( -/obj/structure/bed, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bCO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bCP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bCQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bCR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bCS" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bCT" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/landing/console) -"bCU" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/hangar) -"bCV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/hangar) -"bCW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/monorail/east) -"bCX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/monorail/east) -"bCY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bCZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bDa" = ( -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bDb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bDc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bDd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"bDf" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bDg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" - }, -/area/prison/research/secret/dissection) -"bDi" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bDj" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"bDk" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/s) -"bDl" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/s) -"bDm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Southwest Low-Security Monitoring" - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/lowsec/sw) -"bDo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bDp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bDq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bDr" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bDs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Southwest Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/sw) -"bDt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Southeast Low-Security Cellblock" - }, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/cellblock/lowsec/se) -"bDu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bDv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bDw" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bDz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bDA" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bDB" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bDC" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bDD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"bDE" = ( -/obj/structure/monorail, -/turf/open/space, -/area/space) -"bDF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"bDG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/prison/hallway/east) -"bDH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/east) -"bDI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" - }, -/area/prison/hallway/east) -"bDK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "East Hallway" - }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bDL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/east) -"bDM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDP" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bDU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 2; - req_access = null - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bDV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bDW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bDX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bDY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "Security Barracks" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/prison/quarters/security) -"bDZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEa" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEb" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/maintenance/hangar_barracks) -"bEe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" - }, -/area/prison/maintenance/hangar_barracks) -"bEf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bEg" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/prison/monorail/east) -"bEh" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/obj/structure/machinery/door/poddoor/shutters/transit/open, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/prison/monorail/east) -"bEi" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/transit/open, -/turf/open/floor/prison, -/area/prison/monorail/east) -"bEk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/monorail/east) -"bEl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hallway/central/west) -"bEm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "South High-Security Cellblock" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hallway/central/west) -"bEn" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/hallway/central/west) -"bEo" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bEp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bEq" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bEs" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bEt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/cellblock/lowsec/se) -"bEu" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/cellblock/lowsec/se) -"bEv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bEw" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bEx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bEy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bEz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bEA" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bEC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bED" = ( -/obj/structure/bed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bEF" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bEG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bEH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bEI" = ( -/turf/open/floor/prison, -/area/prison/hallway/east) -"bEJ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bEK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bEM" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bEO" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/hangar_barracks) -"bEP" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bEQ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bER" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bES" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bET" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bEU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bEV" = ( -/obj/structure/pipes/vents/scrubber, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bEW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bEX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bEY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bEZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bFb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bFd" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bFe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bFf" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bFg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bFh" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/prison/maintenance/research_medbay) -"bFi" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/prison/maintenance/research_medbay) -"bFj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bFk" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/sw) -"bFl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bFm" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/sw) -"bFn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bFo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bFp" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bFq" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bFr" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bFs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/lowsec/sw) -"bFt" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bFu" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bFv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/closed/wall/prison, -/area/prison/security/monitoring/lowsec/sw) -"bFw" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bFx" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/sw) -"bFy" = ( -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/south) -"bFz" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bFA" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/se) -"bFB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/lowsec/se) -"bFC" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"bFD" = ( -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/holding/holding2) -"bFE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "rampbottom" - }, -/area/prison/holding/holding2) -"bFF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Telecommunications" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/telecomms) -"bFG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/hallway/east) -"bFH" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hallway/east) -"bFI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/hallway/east) -"bFJ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/east) -"bFK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bFL" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bFM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bFO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bFP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Old Storage Room" - }, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bFQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bFR" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bFS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bFT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bFV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bFW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bFX" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bFY" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bFZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bGa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bGd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bGe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bGf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bGg" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGm" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bGn" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bGp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/effect/landmark/good_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bGt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/highsec/s) -"bGu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bGv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/s) -"bGw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/s) -"bGx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/s) -"bGy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/s) -"bGz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/s) -"bGA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bGB" = ( +/area/prison/recreation/medsec) +"cgl" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bGC" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/sw) -"bGD" = ( -/obj/item/frame/table, -/obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bGE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bGF" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bGG" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bGH" = ( +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"cgn" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/se) -"bGI" = ( -/obj/effect/decal/cleanable/blood, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/holding/holding2) -"bGJ" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bGK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bGL" = ( +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"cgB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/prison/engineering) +"cgD" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison, +/area/prison/engineering) +"cgG" = ( +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"cgH" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bGM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding2) -"bGN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding2) -"bGO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bGP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bGQ" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/residential/south) -"bGR" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/prison/residential/south) -"bGS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, /turf/open/floor/wood, -/area/prison/residential/south) -"bGT" = ( -/obj/structure/bed, -/obj/item/bedsheet, +/area/prison/parole/protective_custody) +"cgI" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/disposal) +"cgK" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/disposal) +"cgL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood, -/area/prison/residential/south) -"bGU" = ( +/area/prison/parole/protective_custody) +"cgM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plating, +/area/prison/disposal) +"cgN" = ( /turf/closed/wall/prison, -/area/prison/residential/south) -"bGV" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bGW" = ( -/obj/structure/machinery/telecomms/bus, -/turf/open/floor/prison{ +/area/prison/security/briefing) +"cgO" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bGX" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bGY" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/prison/disposal) +"cgP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/hallway/east) -"bGZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/east) -"bHa" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bHb" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bHc" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bHf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/prison/quarters/security) -"bHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Hangar-Barracks Maintenance" - }, +/obj/structure/pipes/standard/simple/hidden/yellow, /turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bHj" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +/area/prison/disposal) +"cgQ" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bHk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bHl" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/area/prison/security/briefing) +"cgS" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/briefing) +"cgT" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/armory/riot) +"cgV" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bHn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bHo" = ( -/obj/item/device/radio/headset, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bHp" = ( -/obj/effect/spawner/random/tool, +/area/prison/security/briefing) +"cgW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/briefing) +"cgX" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bHq" = ( -/turf/closed/shuttle, -/area/prison/monorail/east) -"bHs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/ammo_casing, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bHt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bHv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bHw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/security/checkpoint/highsec/s) -"bHx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "South High-Security Cellblock" +/area/prison/security/briefing) +"cgY" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/armory/lethal) +"cgZ" = ( +/obj/structure/closet/gimmick{ + anchored = 1; + name = "Riot gear" }, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/riot, /turf/open/floor/prison, -/area/prison/security/checkpoint/highsec/s) -"bHy" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/security/checkpoint/highsec/s) -"bHA" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bHB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bHC" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/lowsec/sw) -"bHD" = ( -/obj/structure/machinery/computer/secure_data, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/area/prison/security/armory/riot) +"cha" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/head) +"chb" = ( +/obj/structure/surface/rack, +/obj/item/weapon/classic_baton, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"chh" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/prison/pirate) +"chi" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/plating, +/area/prison/pirate) +"chj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/security/monitoring/lowsec/sw) -"bHE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/pirate) +"chk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bHF" = ( -/obj/structure/machinery/shower{ - dir = 4 +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/plating, +/area/prison/pirate) +"chl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/pirate) +"chm" = ( +/obj/item/ammo_magazine/rifle/mar40, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/pirate) +"chn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/lowsec/se) -"bHG" = ( -/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bHH" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding2) -"bHI" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/holding/holding2) -"bHJ" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/plating, +/area/prison/pirate) +"chr" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"chs" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"cht" = ( /turf/closed/wall/prison, -/area/prison/holding/holding2) -"bHK" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bHL" = ( -/obj/structure/machinery/light{ +/area/prison/cellblock/protective) +"chu" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/telecomms) -"bHN" = ( +/turf/open/floor/wood, +/area/prison/security/head) +"chv" = ( +/obj/item/ammo_magazine/pistol/b92fs, /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bHO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bHQ" = ( +/turf/open/floor/wood, +/area/prison/security/head) +"chw" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/prison/security/head) +"chx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/storage/medsec) +"chF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"bHR" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/protective) +"chH" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/parole/protective_custody) +"chK" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"chL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"chM" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"chN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"chO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"chP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/plating, +/area/prison/disposal) +"chQ" = ( +/turf/open/floor/prison, +/area/prison/execution) +"chR" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 5 }, -/area/prison/hallway/east) -"bHU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/prison/disposal) +"chS" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 10 }, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/disposal) +"chV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bHW" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" + dir = 5 }, +/turf/open/floor/prison, +/area/prison/execution) +"chW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, +/turf/open/floor/prison, +/area/prison/execution) +"chZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/prison/security/briefing) +"cia" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bHY" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, +/area/prison/security/briefing) +"cib" = ( /turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bHZ" = ( +/area/prison/security/armory/riot) +"cic" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/briefing) +"cid" = ( /turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bIa" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/maintenance/hangar_barracks) -"bIb" = ( -/obj/structure/machinery/door/airlock/glass, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/prison/monorail/east) -"bIc" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bIe" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" +/area/prison/security/armory/lethal) +"cie" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"cij" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"cil" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/highsec/south/north) -"bIf" = ( +/turf/open/floor/wood, +/area/prison/security/head) +"cim" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/wood, -/area/prison/residential/south) -"bIg" = ( -/obj/structure/girder, -/turf/open/floor/prison{ +/area/prison/security/head) +"cin" = ( +/obj/structure/shuttle/diagonal{ dir = 1; - icon_state = "yellow" + icon_state = "diagonalWall3" }, +/turf/open/floor/plating, +/area/prison/pirate) +"cio" = ( +/turf/closed/wall/almayer, +/area/prison/pirate) +"cit" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) -"bIh" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"ciu" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "diagonalWall3" }, +/turf/open/space, +/area/space) +"ciw" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/pistol/b92fs, /turf/open/floor/wood, -/area/prison/residential/south) -"bIi" = ( -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bIj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"bIk" = ( +/area/prison/security/head) +"ciM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bIl" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/protective) +"cja" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "Research-Infirmary Maintenance" - }, -/turf/open/floor/plating, -/area/prison/medbay) -"bIm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bIn" = ( -/obj/structure/machinery/door/window/westright, -/turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/prison/residential/south) -"bIo" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bIp" = ( -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bIq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/disposal) +"cjb" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bIr" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/disposal) +"cjc" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bIt" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/s) -"bIu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"bIw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bIx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bIy" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/telecomms) -"bIz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bIB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/prison/hallway/east) -"bID" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/prison/disposal) +"cjd" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/prison, -/area/prison/hallway/east) -"bIE" = ( -/turf/closed/wall/prison, -/area/prison/quarters/security) -"bIF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 2; - name = "Security Barracks" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/quarters/security) -"bIG" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/good_item, +/area/prison/execution) +"cje" = ( /turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bIH" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bIJ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bIK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/north) -"bIL" = ( +/area/prison/security/briefing) +"cjg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/prison, -/area/prison/cellblock/highsec/south/north) -"bIM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bIN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "South High-Security Storage" - }, +/area/prison/execution) +"cjh" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bIO" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/prison/security/briefing) +"cji" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/security/checkpoint/highsec/s) -"bIQ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/south) -"bIS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bIT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + dir = 6 }, -/area/prison/holding/holding2) -"bIU" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/armory/riot) +"cjj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bIV" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"cjm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"cjn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bIW" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"bIX" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/prison/hallway/east) -"bIY" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bIZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bJa" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bJb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bJc" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security) -"bJd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/holding/holding2) -"bJe" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security) -"bJf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" + dir = 10 }, -/area/prison/security) -"bJg" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/armory/lethal) +"cjt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/prison/security) -"bJh" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security) -"bJi" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bJk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bJl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/pirate) +"cju" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/hallway/east) -"bJo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bJp" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/plating, +/area/prison/pirate) +"cjv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bJq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bedroom" +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bJr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/turf/open/floor/plating, +/area/prison/pirate) +"cjw" = ( +/turf/open/floor/plating, +/area/prison/pirate) +"cjx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/item/ammo_casing, +/turf/open/floor/plating, +/area/prison/pirate) +"cjy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/prison/cellblock/highsec/south/north) -"bJs" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/storage/highsec/s) -"bJt" = ( +/turf/open/floor/plating, +/area/prison/pirate) +"cjB" = ( +/turf/closed/wall/prison, +/area/prison/security/checkpoint/highsec_medsec) +"cjC" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/checkpoint/highsec_medsec) +"cjJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" + dir = 1 }, -/area/prison/storage/highsec/s) -"bJu" = ( +/turf/open/floor/prison, +/area/prison/cellblock/mediumsec/north) +"cjQ" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/monitoring/protective) +"cjR" = ( +/turf/open/floor/plating, +/area/prison/disposal) +"ckb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/parole/protective_custody) +"ckd" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/storage/highsec/s) -"bJv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"ckf" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/prison/disposal) +"ckg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/storage/highsec/s) -"bJw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" +/turf/open/floor/plating, +/area/prison/disposal) +"cki" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/plating, +/area/prison/pirate) +"ckk" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating, +/area/prison/pirate) +"ckl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/pirate) +"ckm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/pirate) +"cko" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison, +/area/prison/execution) +"ckp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"ckr" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"cks" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/high_explosive/m15, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"ckt" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/high_explosive/m15, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"cku" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"ckv" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"ckI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/cellblock/mediumsec/north) +"ckT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/s) -"bJx" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Protective Custody Parole" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"ckU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec/s) -"bJy" = ( +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"ckV" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/s) -"bJz" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/holding/holding2) -"bJA" = ( -/obj/structure/bookcase, /turf/open/floor/wood, -/area/prison/residential/south) -"bJB" = ( -/turf/open/floor/wood, -/area/prison/residential/south) -"bJD" = ( -/obj/structure/pipes/vents/pump{ +/area/prison/parole/protective_custody) +"ckW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bJE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"ckX" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/holding/holding2) -"bJF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"ckY" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "Holding Cell 2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bJG" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + icon_state = "pipe-c" }, -/area/prison/holding/holding2) -"bJH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/disposal) +"ckZ" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/prison/disposal) +"cla" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/highsec/s) -"bJI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bJJ" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/area/prison/security/armory/riot) +"clb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/security/armory/lethal) +"cly" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/monitoring/protective) +"clC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/disposal) +"clD" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/turf/open/floor/plating, +/area/prison/disposal) +"clE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/telecomms) -"bJL" = ( +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"clG" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"clH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/hallway/east) -"bJM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"clI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison, +/area/prison/security/armory/riot) +"clJ" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"clK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bJN" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"clL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"clN" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bJO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Intake Processing" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/prison/intake) -"bJP" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/prison/intake) -"bJQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Department" +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"clP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/disposal) +"clR" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/security) -"bJR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"clW" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; dir = 2; - name = "Security Department" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security) -"bJS" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security) -"bJT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security) -"bJU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security) -"bJV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security) -"bJW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/monorail/east) -"bJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"clZ" = ( +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"cmc" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/highsec/south/south) +"cmh" = ( +/turf/open/floor/prison, +/area/prison/security/monitoring/protective) +"cmi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/monorail/east) -"bJY" = ( -/obj/structure/machinery/light/small, +/turf/open/floor/prison, +/area/prison/security/monitoring/protective) +"cmk" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/checkpoint/highsec_medsec) +"cmp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/protective) +"cms" = ( +/obj/structure/machinery/light, /turf/open/floor/wood, -/area/prison/residential/south) -"bJZ" = ( -/obj/structure/bed/chair/comfy{ +/area/prison/parole/protective_custody) +"cmt" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/carpet, -/area/prison/residential/south) -"bKa" = ( -/turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bKb" = ( +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"cmu" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"cmv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Disposals" + }, +/turf/open/floor/plating, +/area/prison/disposal) +"cmx" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/protective) +"cmz" = ( +/turf/closed/wall/prison, +/area/prison/parole/protective_custody) +"cmA" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/pepper, +/obj/item/reagent_container/spray/pepper, /turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bKc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/area/prison/security/armory/riot) +"cmC" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison, +/area/prison/security/armory/lethal) +"cmD" = ( +/turf/open/floor/prison/rampbottom, +/area/prison/holding/holding2) +"cmF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bKd" = ( +/area/prison/security/checkpoint/highsec_medsec) +"cmG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec_medsec) +"cmY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/prison/disposal) +"cmZ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/prison/disposal) +"cna" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/disposal) +"cnb" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bKe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/prison/disposal) +"cnc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Execution Chamber" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/execution) +"cnd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Execution Chamber" }, -/area/prison/security/checkpoint/highsec/s) -"bKf" = ( +/turf/open/floor/prison, +/area/prison/execution) +"cnj" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/briefing) +"cnk" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/armory/riot) +"cnl" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/armory/lethal) +"cnp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec_medsec) +"cnu" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/disposal) +"cnv" = ( +/obj/structure/machinery/conveyor{ + dir = 5 }, -/area/prison/security/checkpoint/highsec/s) -"bKg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/prison/disposal) +"cnw" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/plating, +/area/prison/disposal) +"cnx" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/prison/disposal) +"cny" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/area/prison/security/checkpoint/highsec/s) -"bKh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/s) -"bKi" = ( -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/plating, +/area/prison/disposal) +"cnz" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/turf/open/space, -/area/space) -"bKj" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/disposal) +"cnA" = ( +/obj/structure/machinery/conveyor{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/disposal) +"cnB" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/space) +"cnC" = ( +/obj/structure/monorail{ + dir = 6 }, -/area/prison/security/checkpoint/highsec/s) -"bKk" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/space, +/area/space) +"cnD" = ( +/obj/structure/monorail{ + dir = 9 }, /turf/open/space, /area/space) -"bKl" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/residential/south) -"bKm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Bedroom" +"cnE" = ( +/obj/structure/disposaloutlet{ + dir = 8 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKn" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/disposalpipe/up{ + dir = 4 }, -/area/prison/residential/south) -"bKo" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/disposal) +"cnF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/residential/south) -"bKp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/closed/wall/prison, +/area/prison/disposal) +"cnH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/residential/south) -"bKq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"cnI" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, +/turf/open/floor/plating, +/area/prison/pirate) +"cnJ" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bKr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/plating, +/area/prison/disposal) +"cnN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/disposalpipe/junction{ +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bKs" = ( /turf/open/floor/prison, -/area/prison/cellblock/highsec/south/north) -"bKu" = ( +/area/prison/execution) +"cnO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison, +/area/prison/execution) +"cnP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bKv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bKw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison, +/area/prison/execution) +"cnX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/security/briefing) +"cnZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/security/briefing) +"cod" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"bKx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/prison/cellblock/protective) +"cok" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/east) +"com" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/plating, +/area/prison/disposal) +"con" = ( +/obj/structure/monorail{ + dir = 5 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Central Ring" +/turf/open/space, +/area/space) +"coo" = ( +/obj/structure/monorail{ + dir = 10 + }, +/turf/open/space, +/area/space) +"cop" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/hallway/central/south) -"bKB" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison, +/area/prison/disposal) +"cos" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/prison/disposal) +"cot" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/holding/holding2) -"bKC" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison, +/area/prison/disposal) +"cou" = ( +/turf/open/floor/prison, +/area/prison/disposal) +"cov" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating, +/area/prison/disposal) +"cow" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/disposal) +"coB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/holding/holding2) -"bKD" = ( /turf/open/floor/prison, -/area/prison/telecomms) -"bKE" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/prison/execution) +"coC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/item/device/radio/electropack, +/obj/item/clothing/head/helmet, +/turf/open/floor/prison, +/area/prison/execution) +"coD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/telecomms) -"bKG" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison, +/area/prison/execution) +"coH" = ( +/obj/structure/shuttle/engine/heater, +/turf/closed/wall/almayer, +/area/prison/pirate) +"coJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"coO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +/turf/open/floor/prison, +/area/prison/disposal) +"coP" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/execution) +"coQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/intake) -"bKH" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/prison/disposal) +"coR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/disposal) +"coT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security) -"bKI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/plating, +/area/prison/disposal) +"coU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/prison, +/area/prison/disposal) +"coV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/security) -"bKJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/prison/disposal) +"coX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/security) -"bKK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/turf/open/floor/prison, +/area/prison/execution) +"coY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison, +/area/prison/execution) +"coZ" = ( +/obj/effect/landmark/good_item, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/prison/pirate) +"cpc" = ( +/obj/item/ammo_magazine/rifle/mar40, +/obj/structure/surface/table/reinforced{ dir = 1; - icon_state = "darkred2" + flipped = 1 }, -/area/prison/security) -"bKL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/prison/pirate) +"cpd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/security) -"bKM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/prison, +/area/prison/execution) +"cpf" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/execution) +"cpg" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/briefing) +"cpi" = ( +/obj/structure/shuttle/engine/router{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/closed/wall/almayer, +/area/prison/pirate) +"cpp" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/protective) +"cpr" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/security) -"bKN" = ( -/turf/closed/wall/prison, -/area/prison/toilet/security) -"bKO" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"bKP" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 +/area/prison/cellblock/mediumsec/east) +"cpu" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/door/poddoor{ + unacidable = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating, +/area/prison/disposal) +"cpv" = ( +/obj/structure/machinery/door_control{ + id = "disposals"; + name = "Disposals Shutter"; + pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/disposal) +"cpw" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 6 }, -/area/prison/toilet/security) -"bKQ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/plating, +/area/prison/disposal) +"cpx" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/maintenance/hangar_barracks) -"bKR" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKS" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/disposal) +"cpz" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/disposal) +"cpA" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/disposal) +"cpB" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/disposal) +"cpG" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating, +/area/prison/pirate) +"cpM" = ( +/obj/structure/machinery/disposal/deliveryChute{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/prison/disposal) +"cpN" = ( +/obj/structure/machinery/conveyor_switch/oneway, +/turf/open/floor/plating, +/area/prison/disposal) +"cpO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/prison/disposal) +"cpP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKW" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/toilet/security) -"bKX" = ( +/turf/open/floor/plating, +/area/prison/disposal) +"cpQ" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison, +/area/prison/disposal) +"cpR" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison, +/area/prison/disposal) +"cpS" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/prison/disposal) +"cpT" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/prison/disposal) +"cpU" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/mediumsec/east) +"cpX" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cpY" = ( +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cpZ" = ( +/obj/item/stack/cable_coil/cut{ + amount = 1; + icon_state = "coil1"; + name = "cable piece" }, -/area/prison/residential/south) -"bKY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"cqd" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cqh" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/mediumsec/east) +"cqp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bKZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cqr" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/prison/disposal) +"cqs" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/disposal) +"cqt" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/yellow, +/turf/open/floor/plating, +/area/prison/disposal) +"cqx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/closet/walllocker/emerglocker/west, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/monorail/east) -"bLa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/pirate) +"cqz" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bLb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/pirate) +"cqA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/prison/pirate) +"cqC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/monorail/east) -"bLd" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"cqD" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/residential/south) -"bLf" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/north) -"bLg" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/storage/highsec/s) -"bLh" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/pirate) +"cqF" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/highsec/south/north) -"bLi" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/prison/storage/highsec/s) -"bLj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/pirate) +"cqK" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/mediumsec/west) +"cqM" = ( +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"cqN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"cqV" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/prison/disposal) +"crc" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/prison, +/area/prison/cellblock/mediumsec/east) +"crh" = ( /obj/structure/machinery/light/small{ dir = 8 }, +/turf/open/floor/carpet, +/area/prison/pirate) +"cri" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/prison/pirate) +"crj" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating, +/area/prison/pirate) +"crk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/s) -"bLk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "Rocinante Crew Quarters" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/pirate) +"crl" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/security/checkpoint/highsec/s) -"bLl" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/holding/holding2) -"bLm" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/checkpoint/highsec/s) -"bLn" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/shuttle, +/area/prison/pirate) +"crm" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 }, -/area/prison/security/checkpoint/highsec/s) -"bLp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/surface/table/reinforced, +/turf/open/shuttle, +/area/prison/pirate) +"crn" = ( +/obj/structure/machinery/computer/communications{ + icon_state = "commb"; + stat = 1 }, -/area/prison/hallway/central/south) -"bLq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/surface/table/reinforced, +/turf/open/shuttle, +/area/prison/pirate) +"cro" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper/prison_station/pirate_note, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/shuttle, +/area/prison/pirate) +"crp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "Rocinante Storage/Medical" }, -/area/prison/hallway/central/south) -"bLr" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/pirate) +"crq" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/plating, +/area/prison/pirate) +"crr" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/holding/holding2) -"bLs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/west) +"crE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/holding/holding2) -"bLt" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"crF" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/prison/holding/holding2) -"bLu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/red/north, +/area/prison/hallway/entrance) +"crI" = ( +/obj/structure/bed, +/turf/open/floor/carpet, +/area/prison/pirate) +"crJ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/prison/pirate) +"crL" = ( +/obj/structure/machinery/door/airlock/highsecurity{ + name = "Solitary Confinement" }, -/area/prison/telecomms) -"bLv" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security) -"bLw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"crP" = ( +/obj/item/device/radio, +/turf/open/floor/carpet, +/area/prison/pirate) +"crQ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/telecomms) -"bLx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/carpet, +/area/prison/pirate) +"crR" = ( +/obj/item/weapon/gun/shotgun/merc, +/turf/open/floor/carpet, +/area/prison/pirate) +"crS" = ( +/obj/structure/machinery/door_control{ + id = "pirate_cargo"; + name = "Cargo Door Control"; + pixel_x = 24; + pixel_y = 5 }, -/turf/open/floor/prison, -/area/prison/telecomms) -"bLy" = ( +/turf/open/shuttle, +/area/prison/pirate) +"crT" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/plating, +/area/prison/pirate) +"crU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security) -"bLz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/pirate) +"crV" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/plating, +/area/prison/pirate) +"csh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security) -"bLA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/plating, +/area/prison/pirate) +"csi" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/pirate) +"csl" = ( +/turf/closed/wall/almayer/outer, +/area/prison/pirate) +"csp" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Rocinante Bridge" }, -/area/prison/security) -"bLD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Telecommunications" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/prison/telecomms) -"bLG" = ( -/obj/structure/bed/stool, -/turf/open/floor/prison, -/area/prison/intake) -"bLH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security) -"bLI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/security) -"bLJ" = ( -/obj/structure/machinery/shower{ - dir = 4; - layer = 3.3 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/shuttle, +/area/prison/pirate) +"csq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/residential/south) -"bLK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/residential/south) -"bLL" = ( /turf/open/floor/carpet, -/area/prison/residential/south) -"bLM" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bLP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +/area/prison/pirate) +"csr" = ( +/obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, -/area/prison/residential/south) -"bLQ" = ( +/area/prison/pirate) +"css" = ( +/turf/open/floor/carpet, +/area/prison/pirate) +"cst" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/south) -"bLR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/wood, -/area/prison/residential/south) -"bLT" = ( +/turf/open/shuttle, +/area/prison/pirate) +"csu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Rocinante Bridge" }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bLU" = ( +/turf/open/shuttle, +/area/prison/pirate) +"csv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bLV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/plating, +/area/prison/pirate) +"csw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/pirate) +"csx" = ( +/obj/structure/dispenser/phoron, +/turf/open/floor/plating, +/area/prison/pirate) +"csB" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"csD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/residential/south) -"bLW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"csE" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"bLX" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/west) +"csF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/monitoring/medsec/central) +"csG" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/east) +"csJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/residential/south) -"bLY" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/residential/central) -"bLZ" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"csQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating, +/area/prison/pirate) +"csR" = ( +/obj/item/stack/sheet/metal, +/turf/open/space, +/area/space) +"csU" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "Rocinante Captain's Quarters" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/shuttle, +/area/prison/pirate) +"csV" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/fire, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/residential/south) -"bMa" = ( +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/rad, +/turf/open/floor/plating, +/area/prison/pirate) +"csW" = ( +/obj/structure/machinery/pipedispenser/disposal/orderable, +/turf/open/floor/plating, +/area/prison/pirate) +"csX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/residential/south) -"bMd" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/prison/pirate) +"csZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/pirate) +"cta" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/pirate) +"cth" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/residential/south) -"bMe" = ( -/obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/south) +"ctm" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"ctn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"ctq" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"ctv" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"cty" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/plating, +/area/prison/pirate) +"ctz" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/plating, +/area/prison/pirate) +"ctA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/prison/pirate) +"ctB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"ctC" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1; + name = "Waste Air Injector" + }, +/turf/open/floor/plating, +/area/space) +"ctL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Rocinante Storage/Medical" + }, +/turf/open/floor/plating, +/area/prison/pirate) +"ctM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating, +/area/prison/pirate) +"ctQ" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"ctW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"cub" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/monitoring/medsec/central) +"cuj" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/prison/residential/south) -"bMf" = ( -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.3 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/prison/residential/south) -"bMg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/prison/pirate) +"cun" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/mediumsec/south) +"cux" = ( +/obj/item/ammo_casing, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"bMh" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/recreation/highsec/s) -"bMj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"cuA" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/laundry) -"bMk" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/intake) -"bMl" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/intake) -"bMo" = ( +/area/prison/cellblock/mediumsec/west) +"cuJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/laundry) -"bMp" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "Rocinante Engine Room" }, -/area/prison/research/secret) -"bMq" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/security) -"bMr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" +/area/prison/pirate) +"cuK" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/security/checkpoint/medsec) -"bMs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"cuM" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bMt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bMu" = ( -/turf/open/floor/prison, -/area/prison/security) -"bMv" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/area/prison/cellblock/mediumsec/south) +"cuR" = ( +/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/hallway/central) -"bMx" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/area/prison/cellblock/mediumsec/south) +"cvj" = ( +/obj/structure/monorail{ + dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cvk" = ( +/obj/structure/monorail{ + dir = 4 }, -/area/prison/holding/holding2) -"bMy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/space, +/area/space) +"cvm" = ( +/obj/structure/pipes/standard/manifold/visible/cyan{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/holding/holding2) -"bMz" = ( -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +/turf/open/floor/plating, +/area/prison/pirate) +"cvn" = ( +/obj/structure/pipes/standard/simple/visible/universal{ + dir = 4 }, -/area/prison/telecomms) -"bMA" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/closet/walllocker/emerglocker/north, +/turf/open/floor/plating, +/area/prison/pirate) +"cvo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/telecomms) -"bMB" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/prison, -/area/prison/telecomms) -"bMC" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/carpet, -/area/prison/residential/south) -"bMD" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/pirate) +"cvp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/residential/south) -"bME" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvt" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security) -"bMF" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/area/prison/security) -"bMG" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvu" = ( +/obj/structure/pipes/standard/manifold/visible/purple{ + dir = 1 }, -/area/prison/security) -"bMI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvD" = ( +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/area/prison/toilet/security) -"bMJ" = ( -/obj/structure/sink{ - pixel_y = 15 +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = 28 +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/toilet/security) -"bMK" = ( -/obj/structure/sink{ - pixel_y = 15 +/turf/open/floor/plating, +/area/prison/pirate) +"cvE" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = 28 +/obj/structure/pipes/binary/pump/high_power{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvH" = ( +/obj/structure/pipes/standard/manifold/visible/yellow{ + dir = 1 }, -/area/prison/toilet/security) -"bML" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/structure/machinery/meter, +/turf/open/floor/plating, +/area/prison/pirate) +"cvI" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 }, -/area/prison/monorail/east) -"bMM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/pirate) +"cvJ" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 10 }, -/area/prison/monorail/east) -"bMN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/mirror{ - pixel_x = -26 +/turf/open/floor/plating, +/area/prison/pirate) +"cvL" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 6 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/pirate) +"cvM" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 }, -/area/prison/residential/south) -"bMO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/pirate) +"cvN" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 }, -/area/prison/residential/south) -"bMQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/binary/pump/high_power, +/turf/open/floor/plating, +/area/prison/pirate) +"cvO" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/area/prison/residential/south) -"bMR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bMS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bMT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bMW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating, +/area/prison/pirate) +"cvQ" = ( +/obj/structure/pipes/portables_connector{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bMX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 26 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/area/prison/residential/south) -"bMY" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/pirate) +"cvS" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bMZ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/portables_connector{ + dir = 1 }, -/area/prison/recreation/highsec/s) -"bNa" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvT" = ( +/obj/structure/pipes/standard/manifold/visible/yellow{ + dir = 4 }, -/area/prison/intake) -"bNb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/prison/pirate) +"cvU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/intake) -"bNc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/pirate) +"cvX" = ( +/obj/structure/pipes/binary/circulator{ + anchored = 1; + dir = 1 }, -/area/prison/recreation/highsec/s) -"bNd" = ( -/turf/closed/wall/prison, -/area/prison/intake) -"bNe" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/obj/effect/decal/warning_stripes, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/prison/pirate) +"cvY" = ( +/obj/structure/machinery/power/generator{ + anchored = 1; + dir = 4; + icon_state = "teg-broken" }, -/area/prison/recreation/highsec/s) -"bNf" = ( -/obj/structure/window/framed/prison/reinforced, +/obj/effect/decal/warning_stripes, +/obj/structure/lattice, /turf/open/floor/plating, -/area/prison/recreation/highsec/s) -"bNg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" +/area/prison/pirate) +"cvZ" = ( +/obj/structure/pipes/binary/circulator{ + anchored = 1 }, -/area/prison/recreation/highsec/s) -"bNh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" +/obj/effect/decal/warning_stripes, +/obj/structure/lattice, +/turf/open/floor/plating, +/area/prison/pirate) +"cwa" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/recreation/highsec/s) -"bNi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating, +/area/prison/pirate) +"cwb" = ( +/obj/structure/pipes/standard/manifold/visible/yellow{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating, +/area/prison/pirate) +"cwc" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, -/area/prison/recreation/highsec/s) -"bNj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bNk" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/prison/pirate) +"cwg" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security) -"bNl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating, +/area/prison/pirate) +"cwh" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 9 }, -/area/prison/recreation/highsec/s) -"bNm" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/plating, +/area/prison/pirate) +"cwj" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/pirate) +"cwl" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 10 }, -/area/prison/recreation/highsec/s) -"bNn" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating, +/area/prison/pirate) +"cwm" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/plating, +/area/prison/pirate) +"cwn" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 9 }, -/area/prison/recreation/highsec/s) -"bNo" = ( -/obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/pirate) +"cwo" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkyellow2/west, +/area/prison/storage/medsec) +"cwp" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 5 }, -/area/prison/laundry) -"bNq" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") +/turf/open/floor/plating, +/area/prison/pirate) +"cwq" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/mediumsec/west) +"cwx" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/laundry) -"bNr" = ( -/turf/closed/wall/prison, -/area/prison/laundry) -"bNs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Apartment" +/turf/open/floor/plating, +/area/prison/pirate) +"cwy" = ( +/obj/structure/pipes/standard/manifold/visible/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"bNt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - locked = 0 +/turf/open/floor/plating, +/area/prison/pirate) +"cwz" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/manifold/visible/green{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "damaged3" +/turf/open/floor/plating, +/area/prison/pirate) +"cwB" = ( +/obj/structure/pipes/binary/pump{ + dir = 4 }, -/area/prison/laundry) -"bNu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "damaged2" +/turf/open/floor/plating, +/area/prison/pirate) +"cwC" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating, +/area/prison/pirate) +"cwD" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating, +/area/prison/pirate) +"cwE" = ( +/obj/structure/pipes/binary/pump{ + dir = 8 }, -/area/prison/laundry) -"bNv" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/medsec) -"bNw" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/pirate) +"cwF" = ( +/obj/structure/pipes/standard/simple/insulated{ + dir = 10 }, -/area/prison/security/checkpoint/medsec) -"bNx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bNy" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/pirate) +"cwL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"cwM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bNz" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"cwP" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/highsec/n) +"cwU" = ( +/obj/structure/shuttle/diagonal{ + dir = 4; + icon_state = "diagonalWall3" }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/space, +/area/space) +"cwX" = ( +/obj/structure/pipes/standard/simple/insulated, +/turf/open/floor/plating, +/area/prison/pirate) +"cxa" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/cellblock/mediumsec/south) +"cxg" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/pirate) +"cxi" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/obj/structure/pipes/standard/simple/insulated, +/turf/open/floor/plating, +/area/prison/pirate) +"cxl" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bNA" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/prison/pirate) +"cxn" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/decal/warning_stripes, +/obj/structure/window/reinforced/toughened{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/pipes/standard/cap/visible{ + dir = 1 }, -/area/prison/medbay) -"bNB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/turf/open/floor/plating, +/area/prison/pirate) +"cxx" = ( +/obj/structure/shuttle/engine/router{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bNC" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, +/area/prison/pirate) +"cxz" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/space, +/area/space) +"cxA" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bND" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"cxE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxI" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxJ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/security/checkpoint/medsec) -"bNE" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bNF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bNG" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cxR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"cya" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/security/checkpoint/medsec) -"bNH" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/storage/medsec) -"bNI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bNJ" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cyw" = ( +/obj/structure/machinery/disposal/deliveryChute{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bNK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bNL" = ( -/turf/open/floor/prison{ +/obj/structure/lattice, +/obj/structure/disposalpipe/trunk, +/turf/open/space, +/area/space) +"cyx" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/storage/medsec) -"bNM" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/prison/storage/medsec) -"bNN" = ( -/obj/structure/machinery/light{ - dir = 4 + pixel_x = 11 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/obj/structure/mirror{ + pixel_x = 28 }, -/area/prison/storage/medsec) -"bNO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/prison/kitchen, +/area/prison/command/quarters) +"cyD" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/security/monitoring/medsec/south) +"cyK" = ( +/obj/structure/monorail{ + dir = 6 }, -/area/prison/storage/medsec) -"bNP" = ( +/obj/structure/lattice, /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/turf/open/space, +/area/space) +"cyO" = ( +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"cyS" = ( +/obj/structure/monorail{ + dir = 6 }, -/area/prison/storage/medsec) -"bNQ" = ( -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bNR" = ( -/turf/open/floor/prison, -/area/prison/intake) -"bNU" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/library) -"bNV" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/prison/library) -"bNY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/wood, -/area/prison/library) -"bNZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/prison/library) -"bOa" = ( -/obj/structure/machinery/power/geothermal{ - desc = "A thermoelectric generator fueled by searing hot uranium!"; - fail_rate = 5; - name = "thermoelectric generator" +/obj/structure/lattice, +/turf/open/space, +/area/space) +"cyT" = ( +/obj/structure/monorail{ + dir = 9 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bOb" = ( -/obj/structure/machinery/light/small{ +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/space) +"czd" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/up{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/engineering) -"bOc" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/lattice, +/turf/open/space, +/area/space) +"czg" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"bOf" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/engineering) -"bOg" = ( -/obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"czh" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/hallway/east) -"bOh" = ( -/obj/structure/bed/stool, -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison, -/area/prison/intake) -"bOi" = ( -/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"czo" = ( /turf/open/floor/prison, -/area/prison/intake) -"bOj" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/window/reinforced{ +/area/prison/security/monitoring/medsec/south) +"czp" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security) -"bOk" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" - }, -/area/prison/security) -"bOl" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security) -"bOm" = ( -/turf/closed/wall/prison, -/area/prison/recreation/highsec/s) -"bOn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bOo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/turf/open/floor/prison, +/area/prison/security/monitoring/medsec/south) +"czq" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/security/monitoring/medsec/south) +"czr" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison, +/area/prison/security/monitoring/medsec/south) +"czu" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bOp" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"czx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/security) -"bOq" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/laundry) -"bOr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison, +/area/prison/security/monitoring/medsec/south) +"czy" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bOt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison, +/area/prison/security/monitoring/medsec/south) +"czz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/prison, -/area/prison/security) -"bOw" = ( +/area/prison/security/monitoring/medsec/south) +"czA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/prison, -/area/prison/security) -"bOx" = ( +/area/prison/security/monitoring/medsec/south) +"czC" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/monitoring/medsec/south) +"czM" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/monitoring/medsec/south) +"czR" = ( +/obj/structure/surface/rack, +/obj/item/weapon/sword/katana/replica, +/turf/open/floor/wood, +/area/prison/command/office) +"cAc" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/security/monitoring/medsec/south) +"cAe" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/cm/red{ + desc = "Join the penal battalions today they said. Regret all of this you have."; + name = "\improper military beret" + }, +/turf/open/floor/wood, +/area/prison/quarters/research) +"cAk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"cAu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/security) -"bOy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/monitoring/highsec) +"cAz" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/chocolatebar, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"cAA" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding10" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = 15; + pixel_y = 25 + }, +/turf/open/organic/grass, +/area/prison/residential/north) +"cAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"cAQ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ density = 0; + dir = 2; icon_state = "door_open"; - name = "Security Restrooms" + name = "Cell"; + opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"cBi" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/area/prison/toilet/security) -"bOz" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/storage/medsec) -"bOA" = ( -/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/storage/medsec) -"bOC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/security) -"bOD" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/library) -"bOG" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/engineering) -"bOH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/cellblock/mediumsec/south) +"cBx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/blue/northeast, +/area/prison/cellblock/protective) +"cBC" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/area/prison/holding/holding2) -"bOI" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"cBE" = ( +/obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/security) -"bOK" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"cCt" = ( +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/east) +"cCx" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/toilet/security) -"bOL" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/toilet/security) -"bOM" = ( -/obj/structure/shuttle/diagonal, -/turf/open/space, -/area/space) -"bON" = ( -/obj/structure/shuttle/diagonal{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"cCD" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security) +"cCX" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/space, -/area/space) -"bOO" = ( -/obj/structure/toilet{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"cDj" = ( +/turf/open/floor/prison/red/southwest, +/area/prison/cellblock/highsec/south/north) +"cDr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"cDw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"cDJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/darkyellow2/west, +/area/prison/storage/medsec) +"cDN" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/residential/south) -"bOP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/medsec) +"cEk" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"cEl" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/residential/south) -"bOR" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research/secret/bioengineering) +"cEm" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"cEy" = ( +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/testing) +"cEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/residential/south) -"bOS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/green, +/area/prison/security/monitoring/lowsec/ne) +"cFG" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"cGm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/residential/south) -"bOT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/briefing) +"cGv" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/soft/ferret, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/medsec/central) +"cGw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/residential/south) -"bOV" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/green/east, +/area/prison/monorail/west) +"cGG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/floor_marked/west, +/area/prison/cellblock/maxsec/south) +"cGT" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/north/south) +"cHl" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay/surgery) +"cHp" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/sw) +"cHr" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"cHF" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/ne) +"cIe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"bOW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/cellblock/highsec/south/north) -"bOX" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/darkyellow2/west, +/area/prison/telecomms) +"cIu" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security/checkpoint/maxsec) +"cIy" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/cellblock/highsec/north/south) +"cIL" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bOY" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bOZ" = ( -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bPb" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"cIW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Atmospherics" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"cJe" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/recreation/highsec/s) -"bPc" = ( +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"cJJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/s) -"bPe" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Toilet" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"cJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Yard" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"cLj" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bPf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"cLq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"cLU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cMA" = ( +/obj/structure/surface/rack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/laundry) -"bPg" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +"cNc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"cNg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/south/north) -"bPh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"cNj" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/laundry) -"bPi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"cNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/laundry) -"bPj" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret) +"cOK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"cOR" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/green, +/area/prison/quarters/staff) +"cPo" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"cPp" = ( +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/main) +"cPH" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"cPP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Main Hangar Storage" }, -/area/prison/laundry) -"bPk" = ( -/obj/item/shard, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/laundry) -"bPo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"cQR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"cQV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"cRu" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/hangar) +"cRF" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/protective) +"cSl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/laundry) -"bPp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"cSw" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay/surgery) +"cTj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/medsec) -"bPq" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bPr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"cTl" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/south/south) +"cTA" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/medsec) -"bPs" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/medsec) -"bPt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + pixel_x = 12 }, -/area/prison/security/checkpoint/medsec) -"bPy" = ( -/obj/structure/bed/chair/office/dark{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"cTH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"cTU" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/medsec) -"bPz" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bPA" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ +/obj/structure/surface/table/reinforced{ dir = 4; - icon_state = "darkred2" + flipped = 1 }, -/area/prison/security/checkpoint/medsec) -"bPC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/shuttle/black, +/area/prison/pirate) +"cUs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"cUB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/storage/medsec) -"bPD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/effect/decal/siding, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"cVs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"cVL" = ( +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"cVN" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding4" }, -/area/prison/storage/medsec) -"bPF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/turf/open/floor/asteroid, +/area/prison/residential/central) +"cVO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/central/east) +"cWg" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/cellblock/protective) -"bPG" = ( +/turf/open/floor/prison, +/area/prison/canteen) +"cWW" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"cXs" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"bPH" = ( -/obj/structure/bed/stool, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/west) +"cXE" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/security/monitoring/highsec) +"cXL" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"cXO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/library) -"bPI" = ( -/turf/open/floor/wood, -/area/prison/library) -"bPJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, +/turf/open/floor/chapel/west, +/area/prison/chapel) +"cYp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/library) -"bPP" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec_medsec) +"cYr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/central) +"cYP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/engineering) -"bPQ" = ( -/turf/closed/wall/prison, -/area/prison/storage/medsec) -"bPT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/extinguisher, -/obj/item/device/assembly/infra, -/obj/effect/spawner/random/powercell, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/residential/central) +"cYT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, +/turf/open/floor/prison/darkyellowfull2/east, /area/prison/engineering) -"bPU" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 4 +"cZY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bPV" = ( -/obj/structure/pipes/standard/manifold/visible/cyan{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"dam" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"dbf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/prison/research/secret) +"dbX" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/meter, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bPW" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 8; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bPX" = ( -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bPY" = ( -/obj/structure/pipes/standard/tank/nitrogen, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bPZ" = ( +/turf/open/floor/prison/rampbottom/east, +/area/prison/hanger/main) +"dcn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, -/area/prison/library) -"bQa" = ( -/obj/structure/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bQb" = ( -/obj/structure/pipes/standard/simple/visible/green{ - dir = 6 +/area/prison/cellblock/lowsec/ne) +"dcp" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"dcG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/medsec/south) +"ddn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bQc" = ( -/obj/structure/pipes/standard/manifold/visible/green{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/meter, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bQd" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bQe" = ( -/obj/structure/bed/stool, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/intake) -"bQf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/prison/intake) -"bQg" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"ddt" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding3" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/asteroid, +/area/prison/residential/south) +"ddC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/medsec/south) +"ddD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/medsec) +"ddS" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"dey" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/area/prison/security) -"bQh" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/medbay/foyer) +"deC" = ( +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/west) +"deG" = ( +/obj/structure/disposaloutlet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security) -"bQi" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security) -"bQj" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/engineering/atmos) -"bQk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"deI" = ( +/turf/closed/shuttle/elevator{ + dir = 10 }, -/area/prison/security) -"bQl" = ( -/obj/structure/pipes/vents/pump{ +/area/prison/hallway/central/west) +"deR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"deV" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/security) -"bQm" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"dfa" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/security) -"bQn" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/security) -"bQo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"dfQ" = ( +/obj/item/ammo_casing, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"dgl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/prison/telecomms) +"dgm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/toilet/security) -"bQp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/cell_stripe/east, +/area/prison/monorail/west) +"dgu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"dgB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"dgR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/toilet/security) -"bQq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 +/turf/open/floor/prison/green, +/area/prison/hallway/central/west) +"dgZ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/north) +"dhd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"dhK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"dhP" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"dib" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/south/north) +"did" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/toilet/security) -"bQr" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"dit" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/prison/toilet/security) -"bQs" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/shower{ + dir = 4; + layer = 3.3 }, -/area/prison/residential/south) -"bQt" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Garden" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"diB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/ne) +"diG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/residential/south) -"bQu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Garden" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/armory/riot) +"diI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"diL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"diQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"djl" = ( +/obj/structure/machinery/computer/mecha, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"djr" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/carpet, +/area/prison/residential/north) +"djE" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/organic/grass, /area/prison/residential/south) -"bQv" = ( +"djM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"djN" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"dkx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/residential/central) +"dkM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"dkV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/n) +"dkZ" = ( +/turf/open/floor/prison/greencorner, +/area/prison/hallway/staff) +"dma" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"dnc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"dnm" = ( +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"dnD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/highsec/south/north) -"bQw" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"dnH" = ( +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"dnT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bQx" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bQA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/west) +"dog" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"doi" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/central) +"dok" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"dot" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security) +"dou" = ( +/turf/open/floor/plating, +/area/prison/visitation) +"doL" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/recreation/highsec/s) -"bQB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bQC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/recreation/highsec/s) -"bQD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"doX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bQE" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/central/east) +"doZ" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = 8 }, -/area/prison/residential/south) -"bQF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"dpI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/recreation/highsec/s) -"bQG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/girder, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"dqf" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating, +/area/prison/hanger/main) +"dqC" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bQH" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/recreation/highsec/s) -"bQI" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"dqX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/recreation/highsec/s) -"bQJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/laundry) -"bQK" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/color/orange, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"drA" = ( +/turf/open/floor/prison/red/north, +/area/prison/security/monitoring/highsec) +"drD" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/laundry) -"bQL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/laundry) -"bQM" = ( -/obj/structure/surface/rack, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"dsh" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/area/prison/laundry) -"bQN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/asteroid, +/area/prison/residential/north) +"dsm" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/prison/laundry) -"bQO" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/laundry) -"bQP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/chapel/west, +/area/prison/chapel) +"dsU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/nw) +"dsX" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/south) +"dtE" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/laundry) -"bQQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"dup" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/protective) +"duu" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/recreation/highsec/s) -"bQR" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/organic/grass, +/area/prison/residential/north) +"duB" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/north) +"duF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/north/north) +"duJ" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/laundry) -"bQS" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/bluefull, +/area/prison/residential/central) +"duK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"duU" = ( +/turf/open/floor/prison/green/north, +/area/prison/hallway/central/west) +"dvo" = ( +/obj/structure/machinery/door_control{ + id = "execution"; + name = "Remote Door Control"; + pixel_x = 24 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"dvt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/north) +"dvS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bQT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredcorners2" +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"dvT" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bQU" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"dwe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/bioengineering) +"dwr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bQV" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"dwB" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/pen{ pixel_x = 9; pixel_y = 8 }, /obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/medsec) -"bQW" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/prison/security/checkpoint/medsec) -"bQX" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/medsec) -"bQY" = ( +"dwO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"dxb" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"dxl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bQZ" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"dxt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greencorner/west, +/area/prison/hallway/staff) +"dxX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" + dir = 9 }, -/area/prison/security/checkpoint/medsec) -"bRa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/vip) +"dyt" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"dyy" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"dyB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bRb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "North Civilian Residences Access" }, -/area/prison/security/checkpoint/medsec) -"bRc" = ( +/turf/open/floor/plating, +/area/prison/residential/north) +"dyD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/green/northeast, +/area/prison/security/monitoring/lowsec/ne) +"dzs" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bRd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bRe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"dzP" = ( +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/item/weapon/chainofcommand, +/turf/open/floor/prison/blue/northwest, +/area/prison/command/secretary_office) +"dzU" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"dAn" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"dAM" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/prison/storage/medsec) -"bRf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/gibber, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"dBd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Medium-Security Storage" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"dBx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/rampbottom, +/area/prison/maintenance/residential/nw) +"dBI" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/prison/storage/vip) +"dBL" = ( +/obj/structure/machinery/door/window/southright, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/vip) +"dBX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "South High-Security Cellblock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hallway/central/west) +"dCw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/storage/medsec) -"bRg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/residential/central) +"dCH" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/lowsec/sw) +"dDe" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"dDv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"dDy" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/storage/medsec) -"bRh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"dDF" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/monorail/east) +"dDI" = ( +/obj/item/ammo_casing, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"dDM" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"dEC" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/storage/medsec) -"bRi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"dEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/sw) +"dEK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"dEY" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bRj" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/flasher_button{ + id = "suspended_EWN"; + pixel_x = 24 }, -/area/prison/residential/north) -"bRk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"dFj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/protective) -"bRl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/prison/cellblock/protective) -"bRm" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"dFo" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"dFs" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/library) -"bRn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/library) -"bRo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen, -/turf/open/floor/wood, -/area/prison/library) -"bRp" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"dFv" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/library) -"bRq" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"dFz" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("PRISON") }, -/turf/open/floor/wood, -/area/prison/library) -"bRr" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"dFC" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/hallway/staff) +"dFO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"dGd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/engineering) -"bRs" = ( -/obj/structure/machinery/power/terminal{ +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"dGv" = ( +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/vip) +"dGx" = ( +/obj/structure/toilet{ dir = 1 }, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/ne) +"dGE" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/engineering) -"bRu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/voice, -/obj/item/tool/crowbar, -/turf/open/floor/prison, -/area/prison/engineering) -"bRv" = ( -/obj/structure/pipes/standard/tank/oxygen{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"dGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRw" = ( -/obj/structure/pipes/standard/manifold/fourway/visible/cyan, -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRx" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 8; - unacidable = 1; - unslashable = 1 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"dHp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRy" = ( -/obj/structure/machinery/door/window/southright, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRz" = ( -/obj/structure/window/reinforced, -/obj/structure/pipes/standard/simple/hidden/purple{ - dir = 5 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"dHu" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRA" = ( -/obj/structure/pipes/standard/manifold/fourway/visible/purple, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRB" = ( -/obj/structure/pipes/standard/manifold/visible/purple, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRC" = ( -/turf/closed/wall/prison, -/area/prison/engineering) -"bRD" = ( -/obj/structure/pipes/standard/manifold/visible/purple{ +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/south) +"dHv" = ( +/obj/structure/surface/rack, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bRE" = ( -/obj/structure/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bRG" = ( -/obj/structure/pipes/standard/manifold/visible/green{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bRH" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"dHK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/intake) -"bRI" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison, +/area/prison/security/monitoring/maxsec/panopticon) +"dIg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreen/north, +/area/prison/residential/central) +"dIC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/area/prison/intake) -"bRJ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"dIF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/intake) -"bRK" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/whitegreencorner, +/area/prison/medbay) +"dIW" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"dJm" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/vip) +"dJo" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/highsec/n) +"dJr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/intake) -"bRM" = ( -/turf/closed/wall/prison, -/area/prison/engineering/atmos) -"bRN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"dJv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/prison/security) -"bRO" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"dJB" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/highsec/n) +"dJR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 10 }, -/area/prison/security) -"bRW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "South Civilian Residences Access" +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"dJY" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"dKj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bRX" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"dKw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bRY" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"dKJ" = ( /obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bRZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/prison/security) -"bSb" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/closed/wall/resin, -/area/prison/cellblock/highsec/south/north) -"bSd" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/north) -"bSf" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"dKQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/north) -"bSh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"dKR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/north) +"dKU" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bSi" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"dKX" = ( +/turf/open/floor/prison/whitegreencorner, +/area/prison/medbay) +"dLc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bSj" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/residential/access/south) -"bSk" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/residential/access/south) -"bSl" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bSm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 2; - name = "South High-Security Recreation" - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/recreation/highsec/s) -"bSn" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + name = "Infirmary Reception" }, -/area/prison/recreation/highsec/s) -"bSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"dLh" = ( +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/se) +"dLk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bSp" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"dLv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bSq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"dLw" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/medbay/foyer) +"dLy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/laundry) -"bSr" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"dMw" = ( /obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"dMz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"dMX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"dNg" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/area/prison/laundry) -"bSs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"dNk" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/maxsec_highsec) +"dNq" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/window/northright, +/turf/open/floor/freezerfloor, +/area/prison/quarters/research) +"dNr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "Infirmary" }, -/area/prison/laundry) -"bSt" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/color/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"dND" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/office{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/red/southwest, +/area/prison/security/checkpoint/highsec/n) +"dNR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/laundry) -"bSu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/item/ammo_casing, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"dOk" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"dOr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"dOE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/west) +"dOI" = ( +/obj/structure/pipes/standard/tank/phoron{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"dOK" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"dPm" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "emergency lockdown"; + use_power = 0 }, -/area/prison/laundry) -"bSv" = ( -/turf/open/floor/prison{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/mediumsec/east) +"dPV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/ne) +"dPZ" = ( +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/s) +"dQj" = ( +/turf/open/floor/prison/green/north, +/area/prison/hallway/central/east) +"dQo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay/surgery) +"dQQ" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/north) +"dQS" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "red" + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/prison/recreation/highsec/s) -"bSw" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"dRb" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"dRo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/laundry) -"bSx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"dRz" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security/checkpoint/highsec/n) +"dRQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/laundry) -"bSy" = ( -/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"dRW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"dSj" = ( +/obj/item/paper/prison_station/test_log, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"dSu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/area/prison/laundry) -"bSz" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"dSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/security/monitoring/maxsec/panopticon) +"dSI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"dSX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"dTg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Department" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"dTi" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/south/south) +"dTm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/corpsespawner/prison_security, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1; + icon_state = "exposed01-supply" + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec_medsec) +"dTt" = ( +/turf/open/floor/prison/darkbrown2, +/area/prison/hallway/east) +"dTE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/greencorner, +/area/prison/cellblock/lowsec/ne) +"dTO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/northeast, +/area/prison/cellblock/mediumsec/north) +"dTU" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/hallway/staff) +"dTZ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"dUh" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/monorail/east) +"dUw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/laundry) -"bSA" = ( -/obj/item/clothing/under/color/orange, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"dUy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greencorner/north, +/area/prison/hallway/staff) +"dUA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/laundry) -"bSB" = ( +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/s) +"dVd" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"dVL" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/medsec) -"bSC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research) +"dWi" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/monorail/west) +"dWr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bSD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/security/checkpoint/medsec) -"bSE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"dWu" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/ne) +"dWx" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bSF" = ( -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bSG" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/north) +"dWK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"dWY" = ( +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/s) +"dXq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"dXD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bSI" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"dXJ" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/eastleft, +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/south) +"dXM" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"dXO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bSJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/red/north, +/area/prison/security/monitoring/highsec) +"dYd" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/south) +"dYo" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hanger/research) +"dYv" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bSK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bSL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"dYF" = ( +/obj/item/trash/kepler, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"dYS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/storage/medsec) -"bSM" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"dYW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/protective) -"bSN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"dZd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe, +/area/prison/telecomms) +"dZg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/cans/cola, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"dZK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"dZS" = ( +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/east) +"dZX" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/blue/north, /area/prison/cellblock/protective) -"bSO" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/prison/library) -"bSP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/wood, -/area/prison/library) -"bSQ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_y = 3 +"eab" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/wood, -/area/prison/library) -"bSW" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/engineering) -"bSX" = ( -/obj/structure/pipes/standard/simple/visible/cyan{ - dir = 6 +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"ead" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"eaK" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"eaN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/southwest, +/area/prison/security/checkpoint/highsec/n) +"eaT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bSY" = ( -/obj/structure/pipes/standard/manifold/fourway/visible/cyan, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"eaU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bSZ" = ( -/obj/structure/pipes/standard/simple/visible/cyan{ - dir = 4 +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"eaZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTa" = ( -/obj/structure/pipes/standard/manifold/visible/cyan{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"ebd" = ( +/turf/open/floor/prison/red/southwest, +/area/prison/cellblock/highsec/south/south) +"ebk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret) +"ebB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"ebO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/north/north) +"eco" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/prison/bluefull, +/area/prison/security/checkpoint/vip) +"ecC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/green/north, +/area/prison/hallway/central/west) +"ecJ" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTc" = ( -/obj/structure/pipes/trinary/mixer/m_mixer{ +/area/prison/maintenance/residential/nw) +"ecU" = ( +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"ecV" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"eda" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"edb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/medsec/south) +"edc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTd" = ( -/obj/structure/pipes/standard/simple/visible/green{ +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/s) +"edV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/intake) +"eeA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"efd" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"efk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood, +/area/prison/library) +"efq" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/highsec) +"efw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTe" = ( -/obj/structure/pipes/standard/simple/visible/green{ +/area/prison/research/secret/bioengineering) +"egD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret/containment) +"egF" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"egO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/staff) +"egT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"egU" = ( +/obj/structure/surface/rack, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/binary/pump/high_power{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"ehf" = ( +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"ehs" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/highsec) +"eia" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret) +"eiS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTf" = ( -/obj/structure/pipes/standard/simple/visible/green{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/binary/pump/high_power, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret) +"eiT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTg" = ( -/obj/structure/pipes/standard/simple/visible/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/s) +"ejc" = ( +/turf/open/floor/prison/bluecorner/north, +/area/prison/command/secretary_office) +"ejp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/vip) +"ejI" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/prison/yellow/northeast, +/area/prison/cellblock/mediumsec/north) +"ekt" = ( +/obj/structure/machinery/light, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTh" = ( -/obj/structure/pipes/standard/simple/visible/green{ +/area/prison/maintenance/residential/se) +"ekG" = ( +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/west) +"ekL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTi" = ( -/obj/structure/pipes/standard/manifold/visible/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/meter, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTj" = ( -/obj/structure/pipes/standard/simple/visible/green{ - dir = 5 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"ekR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTk" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bTl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bTm" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"elf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/intake) -"bTn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper/prison_station/inmate_handbook, -/obj/item/paper/prison_station/inmate_handbook, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"elC" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"elL" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/vip) +"emG" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/telecomms) +"emL" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/intake) -"bTo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/green, +/area/prison/security/monitoring/lowsec/ne) +"emV" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"enB" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"enE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"enO" = ( +/turf/open/floor/prison/blue/northwest, +/area/prison/cellblock/protective) +"eow" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/intake) -"bTp" = ( -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y" +/obj/structure/window/reinforced{ + dir = 8 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"eoE" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 + }, +/turf/open/floor/prison/green, +/area/prison/hallway/central/east) +"eoG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"eoM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"eoP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Custodial Closet" }, -/area/prison/intake) -"bTq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"eoR" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/yellow/southeast, +/area/prison/security/checkpoint/medsec) +"ept" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/prison/cellblock/maxsec/south) +"eqs" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"eqD" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"eqH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"eqU" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Simian Containment Pen" }, -/area/prison/intake) -"bTr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"eqX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/north) +"erg" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/prison/intake) -"bTt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper/prison_station/inmate_handbook, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"erk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/sw) +"esm" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/intake) -"bTu" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"esC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/security) -"bTv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/security) -"bTw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"esE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security) -"bTx" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/blue/east, +/area/prison/command/secretary_office) +"esF" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 }, -/area/prison/intake) -"bTy" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"esK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/south) +"esR" = ( +/turf/open/organic/grass, +/area/prison/residential/north) +"esZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"etm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/nw) +"etp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/security) -"bTz" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/highsec/s) +"etq" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"etG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"etN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"etU" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"etX" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"eua" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/toilet/security) -"bTA" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bTB" = ( -/obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"bTD" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"eul" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"eur" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"eus" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/grass, -/area/prison/residential/south) -"bTE" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"euv" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/south) +"evb" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/residential/south) -"bTF" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/organic/grass, -/area/prison/residential/south) -"bTG" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding10" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/north) +"evc" = ( +/obj/effect/decal/siding{ + icon_state = "siding2" }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/asteroid, +/area/prison/residential/central) +"evi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/south) -"bTH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/nw) +"evk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/south) -"bTK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"evm" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"evn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"evr" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/prison/security) +"evJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "South Civilian Residences Access" +/turf/open/floor/prison/green/north, +/area/prison/hallway/central/east) +"ewb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bTL" = ( -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bTO" = ( -/obj/structure/machinery/door/poddoor/two_tile/secure{ - name = "Monorail Passage Door" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bTP" = ( -/obj/structure/monorail, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - name = "Monorail Passage Door"; - unacidable = 1 +/area/prison/hallway/central/south) +"ewd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bTQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/prison/cellblock/highsec/south/north) -"bTR" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) -"bTS" = ( -/turf/open/floor/prison{ - dir = 10 +"ewA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"ewG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/cellblock/highsec/south/north) -"bTT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/nw) +"ewS" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/landing/console) +"ewY" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/wood, +/area/prison/command/office) +"exb" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/protective) +"exq" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/recreation/highsec/s) -"bTU" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"exW" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/recreation/highsec/s) -"bTV" = ( +"eyb" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/chemistry) +"eye" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"eyl" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"eyr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "research_secret"; + name = "Classified Research Shutters" }, -/area/prison/laundry) -"bTW" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research/secret) +"ezq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/residential/central) +"ezE" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"ezR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/laundry) -"bTY" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"ezU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"eAj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"eAC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hallway/central/west) +"eAS" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/briefing) +"eAU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/laundry) -"bTZ" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"eAZ" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/nw) +"eBd" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security) +"eBF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"eBK" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "Biological Testing" + }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"eCm" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "Security Booth" + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"eCu" = ( +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"eCH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "High-Security Monitoring" }, -/area/prison/security/checkpoint/medsec) -"bUa" = ( -/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/vip) +"eDh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/sw) +"eDo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/medbay) +"eDD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/rampbottom/west, +/area/prison/yard) +"eDU" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/red/northwest, +/area/prison/hallway/entrance) +"eEg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"eEm" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"eEq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, /turf/open/floor/plating, -/area/prison/security/checkpoint/medsec) -"bUb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/prison/maintenance/residential/ne) +"eEu" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/south/south) +"eEX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Medium-Security Cellblock" + dir = 2; + name = "Medium-Security Recreation" }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bUc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/yellowfull, +/area/prison/recreation/medsec) +"eFs" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/west) +"eFu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"eFL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/security/checkpoint/medsec) -"bUd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/bed/chair/office, +/turf/open/floor/prison/red/northwest, +/area/prison/security/checkpoint/highsec/n) +"eFP" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/wood, +/area/prison/residential/north) +"eFZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; - name = "Security Booth" + name = "Toilet" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"eGf" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/security/checkpoint/medsec) -"bUe" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"eHe" = ( +/obj/structure/machinery/door/window/eastleft, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"eHf" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bUf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/cellblock/protective) -"bUg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"eHi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/appletart, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"eHm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/protective) -"bUh" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/darkred2/west, +/area/prison/monorail/east) +"eHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/library) -"bUi" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Doctor's Office" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"eHL" = ( +/obj/structure/bed/chair/office{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"eId" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/library) -"bUj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/wood, -/area/prison/library) -"bUk" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/n) +"eJd" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/prison/storage/vip) +"eJg" = ( +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret/containment) +"eJk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/green/northwest, +/area/prison/quarters/staff) +"eJl" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/wood, -/area/prison/library) -"bUl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"eJq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating, -/area/prison/engineering) -"bUm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"eJH" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bUo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"eKa" = ( +/obj/structure/machinery/smartfridge/secure/virology, +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research/secret/bioengineering) +"eKp" = ( +/obj/structure/machinery/power/apc/no_power/east, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SE-out" }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"eKr" = ( /turf/open/floor/plating, -/area/prison/engineering) -"bUp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/prison/storage/medsec) +"eKt" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hallway/engineering) +"eKG" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"eKH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/obj/effect/alien/weeds/node, /turf/open/floor/plating, -/area/prison/engineering) -"bUq" = ( +/area/prison/maintenance/residential/se) +"eKX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/engineering) -"bUr" = ( -/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bUs" = ( -/obj/structure/pipes/binary/pump/high_power{ - dir = 1 +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/hangar_storage/main) +"eLi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"eLt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/south) +"eLF" = ( +/obj/structure/girder, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"eLN" = ( +/turf/open/floor/prison/yellow/southeast, +/area/prison/cellblock/mediumsec/west) +"eLQ" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUt" = ( -/obj/structure/pipes/binary/pump/high_power, +/area/prison/maintenance/research_medbay) +"eLV" = ( +/obj/item/device/walkman, +/obj/structure/surface/table/almayer, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUu" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 6 +/area/prison/maintenance/residential/access/south) +"eMk" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/highsec_medsec) +"eMx" = ( +/obj/structure/largecrate/random/case, +/turf/open/shuttle/elevator/grating, +/area/prison/hallway/central/west) +"eNa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUv" = ( -/obj/structure/pipes/trinary/filter{ - dir = 8 +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"eNc" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/maxsec_highsec) +"eNi" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"eNs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("PRISON") }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUx" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"eNv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/vip) +"eNF" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"eNJ" = ( +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUz" = ( -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUA" = ( -/obj/structure/pipes/portables_connector{ - dir = 1 +/area/prison/security/checkpoint/highsec/s) +"eNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUB" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUC" = ( -/obj/item/tool/wrench, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUD" = ( -/obj/structure/pipes/binary/pump/high_power/on, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUE" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /obj/effect/decal/warning_stripes{ icon_state = "E" }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"eNR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"eOB" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"ePl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret) +"ePN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"ePO" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUF" = ( -/obj/structure/pipes/portables_connector{ +/area/prison/maintenance/staff_research) +"eQs" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"eQE" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"eRy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"eRG" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bUG" = ( -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"eRY" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/cellblock/mediumsec/north) +"eSn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"eSp" = ( +/obj/item/storage/bible/booze, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"eSq" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/monorail/east) +"eSt" = ( +/obj/structure/surface/table/reinforced{ dir = 8; - icon_state = "darkred2" + flipped = 1 }, -/area/prison/intake) -"bUH" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"eSA" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/telecomms) +"eSO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"eTf" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/intake) -"bUI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/intake) -"bUJ" = ( -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"eTi" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"eTm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Hallway" }, -/area/prison/intake) -"bUK" = ( -/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkbrownfull2, +/area/prison/hallway/engineering) +"eTt" = ( +/obj/structure/machinery/light, +/obj/structure/filingcabinet, /turf/open/floor/prison, -/area/prison/security) -"bUM" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/area/prison/storage/vip) +"eTZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"eUc" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"eUA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/security) -"bUP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"eUC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/residential/south) -"bUQ" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding3" +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"eUF" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"eVe" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/south/north) +"eVn" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"eVo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"eVw" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) -"bUR" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding6" - }, -/turf/open/floor{ - icon_state = "asteroid" +"eVV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/residential/south) -"bUS" = ( -/obj/structure/shuttle/diagonal{ - dir = 8; - icon_state = "diagonalWall3" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"eWA" = ( +/obj/item/ammo_casing, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"eWD" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/turf/open/floor/plating, -/area/prison/pirate) -"bUT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/south/north) +"eWQ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"eWV" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hanger/research) +"eXq" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"eXD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"eXH" = ( +/obj/structure/machinery/light, +/obj/item/paper/janitor, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"eXN" = ( +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.3 }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) -"bUV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bUW" = ( +"eYs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "NW-out" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bUX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"eYv" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"eYB" = ( +/obj/structure/sink{ dir = 4; - name = "Civilian Residences Emergency Access" + pixel_x = 11 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bUZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"eYK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"eYV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/obj/item/trash/chunk, +/turf/open/floor/plating, /area/prison/maintenance/residential/access/south) -"bVa" = ( -/obj/structure/monorail, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"eZt" = ( +/turf/open/floor/prison/whitegreen/north, +/area/prison/residential/central) +"eZL" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/maintenance/residential/access/south) -"bVb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research) +"eZO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/obj/structure/pipes/vents/pump/on, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"fae" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"fag" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/monorail/west) +"fai" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"fay" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/west) +"faO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"faW" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, /area/prison/maintenance/residential/access/south) -"bVc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"fbk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, +/turf/open/floor/prison, +/area/prison/laundry) +"fbm" = ( +/obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bVd" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/prison/engineering/atmos) +"fbt" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bVe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/prison/maintenance/residential/se) +"fbv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"fbY" = ( +/turf/open/floor/prison/green/west, +/area/prison/monorail/west) +"fce" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"fcA" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"fcJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/greencorner/west, +/area/prison/cellblock/lowsec/ne) +"fcR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/cellblock/highsec/south/north) -"bVf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/kitchen/southwest, +/area/prison/security/checkpoint/vip) +"fcU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"fdb" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"fdk" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"fdq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/highsec/south/north) -"bVg" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/north) -"bVh" = ( +/turf/open/floor/prison/blue/southwest, +/area/prison/command/secretary_office) +"fdD" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fez" = ( +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/north) -"bVi" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" +"feA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/chapel/west, +/area/prison/chapel) +"ffo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/recreation/highsec/s) -"bVj" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/residential/central) +"fgy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bVk" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bVl" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bVm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"bVn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/north) +"fgC" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec_medsec) +"fgG" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research) +"fgN" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/sw) +"fgO" = ( +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"fgR" = ( +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"fgX" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"fhc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bVo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/effect/alien/weeds/node, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"fhh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Staff-Research Maintenance" }, -/turf/open/floor/prison{ - icon_state = "redcorner" +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"fho" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/recreation/highsec/s) -"bVp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/east) +"fhv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "Infirmary" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"fhE" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"fhJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"fie" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/recreation/highsec/s) -"bVq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Telecommunications" }, -/area/prison/recreation/highsec/s) -"bVr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 +/turf/open/floor/prison/darkbrownfull2, +/area/prison/telecomms) +"fik" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"fio" = ( +/obj/structure/xenoautopsy/tank/larva{ + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"fis" = ( +/turf/open/floor/prison/blue, +/area/prison/cellblock/protective) +"fiG" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/prison/holding/holding2) -"bVs" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - density = 0; +/turf/open/floor/chapel/west, +/area/prison/chapel) +"fiU" = ( +/obj/structure/toilet, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"fiV" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/se) +"fjf" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - icon_state = "door_open"; - name = "Toilet"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" + icon_state = "pipe-c" }, -/area/prison/residential/south) -"bVt" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/paper/prison_station/nursery_rhyme, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"fjA" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/sw) +"fkv" = ( +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay/surgery) +"fkx" = ( +/obj/structure/machinery/light, +/turf/open/organic/grass, +/area/prison/residential/north) +"fkG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/laundry) -"bVu" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/security/checkpoint/medsec) -"bVv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"flc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Maximum-Security Suspended Cellblock" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"flv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/monorail/east) +"flJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bVw" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"flQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/plating, -/area/prison/cellblock/highsec/south/north) -"bVx" = ( +/area/prison/maintenance/staff_research) +"flT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 + }, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/south) +"fmF" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"fmH" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/prison/research/secret/containment) +"fmI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/prison/security/briefing) +"fnd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/prison/security/checkpoint/medsec) -"bVy" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"fnj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/green/west, +/area/prison/monorail/west) +"fnl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fnp" = ( +/turf/open/floor/prison/blue/southwest, +/area/prison/cellblock/vip) +"fnw" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/prison/intake) +"fnE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"fnO" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/south) +"fog" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"fou" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bVz" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"fox" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"foD" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"foX" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/north) +"fpj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 2; + name = "Warden's Secretary's Office" }, -/area/prison/security/checkpoint/medsec) -"bVA" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/command/secretary_office) +"fpq" = ( +/obj/structure/closet/radiation, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"fpu" = ( +/obj/structure/machinery/door/airlock/glass, +/turf/open/floor/delivery, +/area/prison/monorail/east) +"fpN" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"fqI" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bVB" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret) +"frn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"frC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bVC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"frW" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding4" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"fsi" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bVD" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/east) +"fsw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"fsG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/bioengineering) +"fsM" = ( +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"fsO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"fsY" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"ftk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/monorail/west) +"ftG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/closed/wall/prison, +/area/prison/cellblock/protective) +"ftP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/medsec/central) +"ftQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bVE" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"ftY" = ( +/turf/open/floor/prison/yellow/northwest, +/area/prison/cellblock/mediumsec/north) +"fuX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/prison/green/southwest, +/area/prison/hallway/staff) +"fva" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/prison/security/monitoring/highsec) +"fvb" = ( +/turf/open/floor/prison/green/east, +/area/prison/security/monitoring/lowsec/ne) +"fvc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"fvq" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"fvr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bVF" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"fvU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"fwN" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bVG" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bVH" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"fwU" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"fxi" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/blue/northeast, +/area/prison/parole/protective_custody) +"fxr" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"bVI" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/medsec) -"bVJ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"fxx" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/nw) +"fxG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/rampbottom/north, +/area/prison/holding/holding1) +"fxK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/central/east) +"fxT" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkyellow2" + pixel_x = 11 }, -/area/prison/storage/medsec) -"bVK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"fyd" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/prison/storage/medsec) -"bVL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"fyr" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fyB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/medsec/south) +"fyT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/storage/medsec) -"bVM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/prison/cellblock/protective) -"bVN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fzk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"bVO" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/plating, -/area/prison/engineering) -"bVP" = ( -/turf/open/floor/plating, -/area/prison/engineering) -"bVR" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"fzo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bVS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "SMES" +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"fzJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bVU" = ( -/obj/structure/pipes/portables_connector{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"fzW" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"fAi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bVV" = ( -/obj/structure/pipes/standard/manifold/visible/yellow{ +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"fBf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/south) +"fBl" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/meter, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"fBA" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hanger/main) +"fBO" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/intake) +"fBU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"fBV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"fCr" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/engineering/atmos) -"bVW" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"fCu" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"fCx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/engineering/atmos) -"bVX" = ( -/obj/structure/pipes/standard/manifold/visible/yellow, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"fCM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"fDh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/decal/siding{ + icon_state = "siding2" }, -/area/prison/engineering/atmos) -"bVY" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 4 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"fDi" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/chemistry) +"fDm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/meter, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"fDu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/engineering/atmos) -"bVZ" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 10 +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"fDz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" +/obj/structure/girder/reinforced, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"fDL" = ( +/obj/item/frame/table, +/obj/item/shard, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/lowsec/sw) +"fDY" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/armory/riot) +"fEr" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/prison/engineering/atmos) -"bWb" = ( -/obj/structure/pipes/standard/simple/visible/supply, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bWc" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"bWe" = ( -/obj/structure/pipes/standard/simple/visible/universal, -/obj/structure/machinery/meter, +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"fEs" = ( +/turf/open/floor/prison/yellow/northwest, +/area/prison/cellblock/mediumsec/east) +"fER" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"fFf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"fFq" = ( +/obj/structure/window/framed/prison/cell, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bWf" = ( -/obj/structure/pipes/standard/manifold/visible/yellow{ - dir = 8 +/area/prison/cellblock/mediumsec/east) +"fFs" = ( +/turf/open/floor/prison/blue/southwest, +/area/prison/cellblock/protective) +"fFC" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hanger/main) +"fFX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"fGw" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bWg" = ( +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/north) +"fGG" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"fGK" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"fGQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/hallway/east) -"bWh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bWi" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/vip) +"fGV" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/south/north) +"fHF" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/testing) +"fHI" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/prison/hallway/east) -"bWj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"fHJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"fIu" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"fIv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"fIw" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/intake) -"bWl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/prison/intake) -"bWm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"fIz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security) -"bWn" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"fJf" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"fKT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/security) -"bWo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay) +"fLj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security) -"bWp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bWq" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"fLG" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/asteroid, +/area/prison/residential/central) +"fLT" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/security/head) -"bWr" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/woodentable, -/turf/open/floor/prison, -/area/prison/security/head) -"bWs" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/security/head) -"bWt" = ( +/area/prison/kitchen) +"fLZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"fMd" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/security/head) -"bWu" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/recharger, -/turf/open/floor/prison, -/area/prison/security/head) -"bWv" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison, -/area/prison/security/head) -"bWw" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison, -/area/prison/security/head) -"bWx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/security) -"bWy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/prison/security/head) -"bWz" = ( -/turf/closed/wall/prison, -/area/prison/security/head) -"bWC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"fMf" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bWD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/door/window/northleft, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/south) +"fMl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/sw) +"fMN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bWE" = ( +/turf/open/floor/prison/yellow/northeast, +/area/prison/security/checkpoint/medsec) +"fMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "Civilian Residences Emergency Access" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"fMS" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bWF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"fNI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"fNJ" = ( +/obj/structure/machinery/shower{ + dir = 4 }, +/obj/structure/machinery/door/window/northright, +/turf/open/floor/prison/kitchen, +/area/prison/command/quarters) +"fNZ" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"fOk" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/maintenance/residential/access/south) -"bWG" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/east) +"fOK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/green/north, +/area/prison/hallway/staff) +"fOL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"fOM" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/prison/maintenance/residential/access/south) -"bWH" = ( -/obj/structure/monorail, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"fOU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/maintenance/residential/access/south) -"bWI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"fPX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/se) +"fQD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/maintenance/residential/access/south) -"bWJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"fQQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bWL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Holding Cell 1" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"fQW" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bWO" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"fRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/south/north) -"bWP" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research) +"fRP" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"fRS" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/north/north) +"fRY" = ( +/turf/open/floor/prison/blue/northwest, +/area/prison/security/checkpoint/vip) +"fSo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"fSx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/cellblock/lowsec/se) +"fSJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/highsec/south/north) -"bWQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/prison/red/southeast, +/area/prison/security/monitoring/highsec) +"fSY" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"fTs" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/laundry) -"bWR" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4; - network = list("PRISON") +/turf/open/floor/prison/darkyellowcorners2/west, +/area/prison/engineering/atmos) +"fTX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/effect/decal/cleanable/blood, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/prison/security/checkpoint/medsec) -"bWS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/medsec) -"bWT" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"fUi" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/security/checkpoint/medsec) -"bWU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Medium-Security Storage" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"fUs" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/monitoring/lowsec/ne) +"fUP" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"fVk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/storage/medsec) -"bWV" = ( +/turf/open/floor/chapel/north, +/area/prison/chapel) +"fVG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Medium-Security Storage" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/storage/medsec) -"bWW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/rampbottom/north, +/area/prison/security/checkpoint/medsec) +"fVN" = ( +/obj/item/handset, /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ +/turf/open/floor/hydrofloor, +/area/prison/hallway/central/west) +"fVX" = ( +/obj/structure/sink{ dir = 8; - icon_state = "bluefull" + pixel_x = -11 }, -/area/prison/cellblock/protective) -"bWX" = ( +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"fWx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/flasher{ + id = "canteen" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fWH" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ + dir = 5 + }, +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"fWT" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/cellblock/protective) -"bWY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"fXa" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"fXj" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret) +"fXQ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"fYb" = ( +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 }, -/area/prison/cellblock/protective) -"bWZ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/wood, -/area/prison/library) -"bXa" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/wood, -/area/prison/library) -"bXb" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/prison/engineering) -"bXc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"fYU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/engineering) -"bXd" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"fZb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"fZr" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/prison/intake) +"fZQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"gas" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating, -/area/prison/engineering) -"bXe" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering) -"bXf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + dir = 4 }, -/area/prison/engineering) -"bXg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, /turf/open/floor/plating, -/area/prison/engineering) -"bXh" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/area/prison/maintenance/residential/nw) +"gaV" = ( +/obj/structure/machinery/power/reactor/colony{ + desc = "A thermoelectric generator fueled by searing hot uranium!"; + name = "thermoelectric generator" }, /turf/open/floor/plating, /area/prison/engineering) -"bXj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"gbp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/maxsec) +"gbQ" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 30 }, -/area/prison/engineering) -"bXk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Atmospherics" +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research) +"gbX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/rampbottom/west, +/area/prison/yard) +"gbZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"gcr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/engineering) -"bXl" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/engineering/atmos) -"bXm" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"gcy" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"bXn" = ( -/obj/structure/pipes/binary/pump/high_power/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/engineering/atmos) -"bXo" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering/atmos) -"bXp" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/area/prison/cellblock/mediumsec/west) +"gdm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/engineering/atmos) -"bXq" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"gdn" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/northeast, +/area/prison/hangar_storage/main) +"gdu" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/north) +"gdw" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/prison/engineering/atmos) -"bXr" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"gee" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"geq" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"geR" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering/atmos) -"bXs" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 5 +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/south/north) +"gfe" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"gfG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/greencorner/west, +/area/prison/cellblock/lowsec/sw) +"gfI" = ( +/obj/structure/sink{ dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/engineering/atmos) -"bXt" = ( -/obj/structure/pipes/binary/pump/high_power{ - dir = 8 + pixel_x = -12 }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bXu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bXw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bXx" = ( -/obj/structure/pipes/standard/manifold/visible/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"gfJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"gfT" = ( +/turf/open/floor/prison/blue, +/area/prison/security/checkpoint/vip) +"ggf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/meter, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bXy" = ( +/obj/effect/decal/siding, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"ggj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2" +/obj/effect/decal/siding{ + icon_state = "siding8" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bXz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/rampbottom/north, +/area/prison/residential/central) +"ggx" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bXA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"ggW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"ghi" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"gho" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/darkbrown2/east, /area/prison/hallway/east) -"bXB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Intake Processing" +"ghp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/security) -"bXC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Intake Processing" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/hallway/central/east) +"ghv" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/s) +"ghL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/security) -"bXD" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"ghR" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"ghY" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"gia" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security) -"bXE" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"gim" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/prison, -/area/prison/security/head) -"bXF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"giN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/security/head) -"bXG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/head) -"bXH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"giW" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/turf/open/floor/prison, -/area/prison/security/head) -"bXI" = ( -/turf/open/floor/carpet, -/area/prison/security/head) -"bXJ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/prison/security/head) -"bXK" = ( -/turf/open/floor/prison, -/area/prison/security/head) -"bXL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/asteroid, +/area/prison/residential/central) +"giY" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"giZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"gjh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Access Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"gjx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"gjE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"gjG" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"gjR" = ( /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/medsec/south) +"gjS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret) +"gkk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/maintenance/residential/access/south) -"bXM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/sw) +"gkA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/south/north) +"glc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/west) +"glj" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/maintenance/residential/access/south) -"bXN" = ( -/obj/structure/monorail, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"glv" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/maintenance/residential/access/south) -"bXO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/door/window/westright, +/obj/item/tool/pen, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/north) +"glB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"glC" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/maintenance/residential/access/south) -"bXP" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/hallway/staff) +"glZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"bXQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/briefing) +"gmc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/south) +"gmJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bXU" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"gnA" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/intake) -"bXW" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"bXX" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"bXY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"bXZ" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/medbay/foyer) +"gnT" = ( +/turf/open/floor/prison/red/north, +/area/prison/recreation/highsec/s) +"gnU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"gnW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"gos" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"gov" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/recreation/medsec) -"bYa" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/red/north, +/area/prison/security/monitoring/highsec) +"gpi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"gpG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/recreation/medsec) -"bYb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"gqf" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"gqn" = ( +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/south/north) +"gqs" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/greencorner/west, +/area/prison/cellblock/lowsec/nw) +"gqu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/protective) -"bYc" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/prison/engineering) -"bYd" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"gqD" = ( +/turf/open/floor/chapel/north, +/area/prison/chapel) +"gqL" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/engineering) -"bYe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/engineering) -"bYf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"gqT" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"gra" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/engineering) -"bYg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/engineering) -"bYh" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/head) -"bYi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"grf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/south) +"grj" = ( +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/bioengineering) +"grl" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/ne) +"grr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"grU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "High-Security Monitoring" }, -/area/prison/engineering) -"bYj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"grW" = ( +/turf/closed/shuttle/elevator/button/freight, +/area/prison/hallway/central/west) +"grY" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/visitation) +"gsc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/engineering) -"bYk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/plating, -/area/prison/engineering) -"bYl" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"bYm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Atmospherics" +/turf/open/floor/prison/blue/southwest, +/area/prison/security/checkpoint/vip) +"gsd" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"gsx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/engineering/atmos) -"bYn" = ( -/obj/structure/pipes/standard/simple/visible/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "Atmospherics" +/turf/open/floor/prison/green/northwest, +/area/prison/security/monitoring/lowsec/sw) +"gsD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Visitation" }, /turf/open/floor/prison, -/area/prison/engineering/atmos) -"bYo" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security) -"bYp" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/area/prison/visitation) +"gtg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/security) -"bYq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/mirror{ + pixel_x = 26 }, -/area/prison/security) -"bYr" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security) -"bYs" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"gtl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"gtp" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security) -"bYt" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +"gtq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Cell Access" }, -/area/prison/security) -"bYu" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkredcorners2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"gtB" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/hallway/east) +"gtH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/security) -"bYv" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"gtX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/color/orange, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bYw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/taperecorder, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/security) -"bYx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"guc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"guf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"guj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/maxsec_highsec) +"gul" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"guo" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/cellblock/highsec/south/north) -"bYy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/toilet/security) +"guB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"guE" = ( +/obj/structure/disposaloutlet{ + dir = 8 }, -/area/prison/cellblock/highsec/south/north) -"bYz" = ( -/turf/open/floor/prison{ - dir = 10 +/obj/structure/disposalpipe/up{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"bYA" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/prison, -/area/prison/security/head) -"bYB" = ( -/obj/structure/surface/table/woodentable, -/obj/item/tool/stamp/hos, -/turf/open/floor/prison, -/area/prison/security/head) -"bYC" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/highsec/south/south) -"bYD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/telebaton, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison, -/area/prison/security/head) -"bYE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/head) -"bYF" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/checkpoint/medsec) -"bYG" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"guT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"guZ" = ( +/obj/structure/surface/table/reinforced, /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"gvl" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/carpet, -/area/prison/security/head) -"bYH" = ( -/obj/structure/surface/table/woodentable, +/area/prison/command/quarters) +"gvu" = ( +/turf/open/floor/prison/bluefull, +/area/prison/security/checkpoint/vip) +"gwx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"gwK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, /obj/item/tool/pen{ - pixel_y = 4 + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/carpet, -/area/prison/security/head) -"bYI" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/prison/security/head) -"bYJ" = ( -/obj/structure/monorail, -/obj/structure/lattice, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - name = "Monorail Passage Door"; - unacidable = 1 +/turf/open/floor/prison/darkred2/northeast, +/area/prison/hanger/main) +"gwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bYS" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"bYT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"gxc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Telecommunications" }, -/area/prison/recreation/medsec) -"bYU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/telecomms) +"gxx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/north, +/area/prison/chapel) +"gxz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"gxH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/sw) +"gxY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret/containment) +"gyk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"gyA" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/security/checkpoint/medsec) +"gyE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/recreation/medsec) -"bYV" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/testing) +"gyK" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/recreation/medsec) -"bYW" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"gyY" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/highsec/n) +"gyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/recreation/medsec) -"bYX" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Low-Security" }, -/area/prison/recreation/medsec) -"bYY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/library) -"bYZ" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"gzd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood, /area/prison/library) -"bZb" = ( -/obj/effect/landmark/good_item, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/wood, -/area/prison/library) -"bZc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"gzk" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 }, -/turf/open/floor/wood, -/area/prison/library) -"bZd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/prison/engineering) -"bZe" = ( -/turf/open/floor/prison, -/area/prison/engineering) -"bZf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"bZg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/engineering) -"bZh" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, -/area/prison/engineering) -"bZi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/plating, -/area/prison/engineering) -"bZj" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/platform{ + dir = 1 }, -/area/prison/hallway/engineering) -"bZk" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/storage/vip) +"gzE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/ammo_casing, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"gzI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/engineering) -"bZl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/vip) +"gzJ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/hallway/engineering) -"bZm" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"gAa" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"gAc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/blue/east, +/area/prison/command/secretary_office) +"gAq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/engineering) -"bZn" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"gAy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"gAD" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"gAU" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"gAV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/hallway/engineering) -"bZo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/hallway/engineering) -"bZp" = ( -/turf/closed/wall/prison, -/area/prison/security) -"bZq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"gBx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/hallway/engineering) -"bZr" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"gBM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"gCf" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"gCD" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/hallway/engineering) -"bZs" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"gCM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"gDc" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"gDu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/engineering) -"bZt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/engineering) -"bZu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Engineering Hallway" }, +/turf/open/floor/prison/darkbrownfull2, /area/prison/hallway/engineering) -"bZv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "rampbottom" +"gDH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/hallway/engineering) -"bZw" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/highsec) +"gDM" = ( +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"gDS" = ( +/turf/open/floor/prison/red, +/area/prison/security/monitoring/highsec) +"gDX" = ( +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/chemistry) +"gEv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/hallway/engineering) -"bZx" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/engineering) -"bZy" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"gEQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/prison/research/secret/containment) +"gES" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/cellblock/highsec/south/north) +"gFa" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/security/checkpoint/maxsec) +"gFb" = ( +/turf/open/floor/prison/bluecorner/west, +/area/prison/security/checkpoint/vip) +"gFh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Department" + name = "High-Security Monitoring" }, -/turf/open/floor/prison, -/area/prison/security) -"bZz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"gFl" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/red/east, +/area/prison/security/monitoring/highsec) +"gFn" = ( +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/north/south) +"gFN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/antag, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 9; + pixel_y = 15 }, -/area/prison/security) -"bZA" = ( -/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/security/head) -"bZB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/area/prison/maintenance/residential/access/south) +"gFP" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/south) +"gFT" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/north) +"gGa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"gGl" = ( +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"gGn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZD" = ( +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"gGy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/se) +"gGK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZF" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hanger/main) +"gGS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZG" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"bZH" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"gHe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"gHL" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"gHU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/visitation) +"gIz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"gIA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 28 }, -/area/prison/security) -"bZI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"gIO" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"gJe" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research/secret/chemistry) +"gJg" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"gJp" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/north) +"gJv" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/maxsec) +"gJz" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security) -"bZK" = ( +/turf/open/floor/carpet, +/area/prison/residential/central) +"gJO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/prison, -/area/prison/security) -"bZM" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/area/prison/security/monitoring/highsec) +"gJQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"bZN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"gJT" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding6" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"gJU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/security) -"bZO" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"bZP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"gJX" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding4" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"bZQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"gKE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Panopticon Monitoring" }, -/area/prison/cellblock/highsec/south/south) -"bZR" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/security/monitoring/maxsec/panopticon) +"gKM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"gKO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"bZS" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"bZT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"gKV" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/sw) +"gLx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"gLy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Staff Custodial Closet"; + opacity = 0 }, -/area/prison/cellblock/highsec/south/south) -"bZU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"gLA" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"bZV" = ( -/obj/structure/sink{ +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/medsec/south) +"gME" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/security/checkpoint/medsec) +"gML" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/prison/residential/south) +"gNu" = ( +/obj/structure/stairs/perspective{ dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + icon_state = "p_stair_full" }, -/area/prison/cellblock/highsec/south/south) -"bZW" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/highsec/south/south) -"bZX" = ( +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/n) +"gNw" = ( +/obj/structure/machinery/keycard_auth/lockdown/prison, /obj/structure/surface/table/reinforced, -/obj/item/storage/box/handcuffs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security) -"bZY" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/southeast, +/area/prison/command/secretary_office) +"gNK" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"gNL" = ( +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/south) +"gNM" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/head) -"bZZ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"gOi" = ( +/obj/effect/decal/siding, +/turf/open/floor/asteroid, +/area/prison/residential/central) +"gOk" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/south) +"gOB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet, -/area/prison/security/head) -"caa" = ( +/turf/open/floor/podhatchfloor/north, +/area/prison/research/secret/testing) +"gOH" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"gPR" = ( /turf/closed/wall/prison, -/area/prison/recreation/medsec) -"cac" = ( -/obj/structure/machinery/light, +/area/prison/maintenance/staff_research) +"gQg" = ( +/turf/open/floor/prison/red/southwest, +/area/prison/cellblock/highsec/north/south) +"gQh" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/prison/telecomms) +"gRo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"gRK" = ( +/turf/open/floor/prison/green/east, +/area/prison/monorail/west) +"gRU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/alien/weeds/node, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"cad" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/area/prison/maintenance/residential/ne) +"gRZ" = ( +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"gSg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cae" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/closed/wall/prison, +/area/prison/residential/central) +"gSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/north) +"gSN" = ( +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"gSS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"caf" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"gSY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/mediumsec/north) -"cag" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"cah" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2, +/area/prison/hanger/main) +"gTb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Low-Security" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"gTj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"cai" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/se) +"gTl" = ( +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"gUn" = ( +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"gUs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"gUA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"caj" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"gUD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Research Hangar Storage" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"gVa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/area/prison/cellblock/mediumsec/north) -"cak" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/mediumsec/north) -"cal" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"gVh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 }, -/area/prison/cellblock/mediumsec/north) -"cam" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/obj/structure/platform{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"cao" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/s) +"gVx" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/north) -"caq" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_x = -4 }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/ne) +"gVC" = ( +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) -"car" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "emergency lockdown"; - use_power = 0 +"gWH" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/engineering) +"gWR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/cellblock/protective) -"cau" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/hanger/main) +"gWT" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"caw" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/prison/maintenance/residential/access/south) +"gXo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/south) -"cay" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"gXx" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/north) +"gXM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"caz" = ( -/obj/structure/toilet{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) -"caA" = ( -/obj/structure/machinery/light{ +"gXQ" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"caB" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/recreation/medsec) -"caC" = ( -/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/engineering/atmos) -"caD" = ( +/area/prison/cellblock/highsec/south/south) +"gXV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4 }, -/area/prison/recreation/medsec) -"caE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bluefull, +/area/prison/security/checkpoint/vip) +"gYb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/recreation/medsec) -"caF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"gYr" = ( +/obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"gYt" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/area/prison/recreation/medsec) -"caG" = ( -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"caH" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Toilet" +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"gYA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"gYE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/eastleft, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"gZo" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/cellblock/highsec/north/south) +"gZE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"caI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"haj" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/telecomms) +"hak" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, -/area/prison/cellblock/protective) -"caJ" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/north/north) +"haq" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"hay" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"haD" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"haF" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"haG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"hbe" = ( +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"hbI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/cellblock/protective) -"caK" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"hcG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"hcK" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"hcN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/visitation) +"hcO" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"hcU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/head/chefhat, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"hdg" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/cellblock/protective) -"caL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/south) +"hdp" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"hdr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Protective Custody Monitoring" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/prison/security/monitoring/protective) +"hdw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"caM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison, +/area/prison/telecomms) +"hdK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"hdR" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"caO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"caP" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"hdU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/engineering) -"caQ" = ( +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/north) +"heq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/engineering) -"caR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/damaged1/southwest, +/area/prison/storage/medsec) +"heB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"hfK" = ( +/obj/structure/closet, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/prison, -/area/prison/engineering) -"caS" = ( +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"hfQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/lowsec/sw) +"hfX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"hgh" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/testing) +"hgE" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"hgJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/hallway/engineering) -"caT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"hgM" = ( +/obj/structure/machinery/washing_machine{ + desc = "The bottom portion of the machine of dread. The second oen, it beckons." + }, +/obj/structure/machinery/washing_machine{ + desc = "The double washing machine in common spacer folklore signifies doom to all who gaze upon it."; + pixel_y = 15 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"hgR" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"hgT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"hgV" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/medsec/south) +"hih" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/podhatchfloor/north, +/area/prison/research/secret/testing) +"hik" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"hiy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/green/east, +/area/prison/monorail/west) +"hiJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/northeast, +/area/prison/monorail/west) +"hiK" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"hiP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"hiT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"hjc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Cell Access" }, -/area/prison/hallway/engineering) -"caU" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"hje" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/central) +"hji" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/yellow, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Medium-Security Storage" }, -/area/prison/hallway/engineering) -"caV" = ( +/turf/open/floor/prison/bluefull, +/area/prison/storage/medsec) +"hjz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"hjA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"hjF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"hjK" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/ne) +"hjS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"hjX" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/protective) +"hkp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"hku" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"caW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"hkJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"caX" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"hkU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 + }, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/canteen) +"hlm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"hlt" = ( +/obj/structure/machinery/shower{ dir = 4; - icon_state = "cell_stripe" + layer = 3.3 }, -/area/prison/cellblock/mediumsec/west) -"caZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/window/reinforced, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"hlP" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/south/north) -"cba" = ( -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"hlT" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"hmk" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"hmv" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/area/prison/cellblock/highsec/south/south) -"cbb" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"hmD" = ( +/obj/item/roller{ + icon_state = "down" }, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"hmU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"hmX" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/prison/storage/medsec) +"hne" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"hnl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research) +"hns" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/south) -"cbc" = ( +"hnD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Staff-Research Maintenance" + }, /turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"cbe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/prison/quarters/research) +"hnT" = ( +/obj/structure/toilet{ + dir = 4 }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-y" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"hnU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"hoa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"cbf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"cbh" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"hoC" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"hoS" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/maxsec) +"hoZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"hpp" = ( +/turf/open/floor/prison/kitchen, +/area/prison/research) +"hpr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/stack/rods, +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/south) +"hpG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"cbi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"hpK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/east) +"hpY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"hqE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/east, +/area/prison/cellblock/mediumsec/east) +"hqL" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/protective) +"hqX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"cbj" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"hrd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"hrh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"hri" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret/containment) +"hrv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"hrJ" = ( +/obj/structure/sink{ dir = 8; - icon_state = "rampbottom" + pixel_x = -12 }, -/area/prison/hallway/engineering) -"cbk" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/north) +"hrL" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"hrP" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"hrZ" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison, +/area/prison/telecomms) +"hsb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/north) +"hsj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"hsm" = ( +/obj/structure/monorail, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"hsv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"hsJ" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/bioengineering) +"hsQ" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"htk" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"hto" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/se) +"htL" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/se) +"hua" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/medbay) +"hug" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/blue/west, +/area/prison/security/checkpoint/vip) +"hum" = ( +/obj/structure/bed, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/hallway/engineering) -"cbl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/shuttle/black, +/area/prison/pirate) +"hus" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"huQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "Research Common Room" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"hvo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"hvA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"hvV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/blue/southwest, +/area/prison/cellblock/protective) +"hwd" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"hwo" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/monorail/east) +"hxo" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/security/monitoring/lowsec/sw) +"hxy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Hallway" +/obj/structure/machinery/flasher_button{ + id = "suspended_EES"; + pixel_x = -24 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"hxD" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/area/prison/hallway/engineering) -"cbn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/asteroid, +/area/prison/residential/north) +"hxQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/east) -"cbo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Department" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/prison, -/area/prison/security) -"cbp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"hxW" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"hyf" = ( +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/central/east) +"hyi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"hyr" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret/containment) +"hyt" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"hyM" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"cbq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"hyR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "High-Security Monitoring" }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/south) +"hzb" = ( +/obj/item/stack/cable_coil/cut{ + amount = 1; + icon_state = "coil1"; + name = "cable piece" }, -/area/prison/cellblock/mediumsec/north) -"cbr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"hzv" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"hzS" = ( +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"hzT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/south) +"hAa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"cbs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"hAy" = ( +/turf/open/floor/prison/green/northeast, +/area/prison/hallway/staff) +"hAL" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 6 }, -/turf/open/floor/prison{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/north) -"cbt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"cbu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"cbv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" + health = 80 }, -/area/prison/cellblock/mediumsec/north) -"cbw" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"cbx" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"hAZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/hanger/research) +"hBr" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/vip) +"hBs" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/highsec) +"hBG" = ( +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/south/south) +"hCa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"hCj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/prison/cellblock/mediumsec/north) -"cby" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/north) -"cbz" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"hCw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/south/south) +"hCS" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/briefing) +"hCX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"hDu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"cbA" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"hDB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "emergency lockdown"; + use_power = 0 }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/protective) +"hEK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/north) -"cbB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"hET" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/east, +/area/prison/hanger/main) +"hEU" = ( +/obj/structure/machinery/door/poddoor/two_tile/opened{ + id = "execution" }, -/area/prison/cellblock/mediumsec/north) -"cbC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/library) -"cbE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/security) -"cbF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/prison, -/area/prison/security) -"cbH" = ( +/turf/open/floor/delivery, +/area/prison/execution) +"hFB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"hFE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"cbI" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"hFT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/security) -"cbR" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison/red/southwest, +/area/prison/security/monitoring/highsec) +"hGx" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/armory/lethal) +"hGy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"hGN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Simian Containment Pen" + }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"hGT" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"hHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/hangar) +"hIf" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/north/north) +"hIy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"hIG" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/red/north, /area/prison/cellblock/highsec/south/south) -"cbS" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"hJh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"hJv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tank/nitrogen, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"hKp" = ( +/obj/effect/alien/weeds/node, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/recreation/medsec) -"cbU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"hKx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"hKK" = ( +/turf/open/floor/prison/red/southwest, +/area/prison/recreation/highsec/s) +"hLu" = ( +/turf/open/floor/prison/greenfull, +/area/prison/quarters/research) +"hLx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cbV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/blue/east, +/area/prison/parole/protective_custody) +"hLH" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/recreation/medsec) -"cbW" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"hLI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/recreation/medsec) -"cbX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"hMe" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"hMv" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cbY" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"hMz" = ( +/turf/open/floor/prison/blue/northeast, +/area/prison/cellblock/protective) +"hMG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/hanger/research) +"hMJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"hMS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"cbZ" = ( -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/north) -"cca" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/chemistry) +"hNa" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ density = 0; icon_state = "door_open"; - name = "Solitary Confinement"; + name = "Cell"; opacity = 0 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/north) -"ccb" = ( -/obj/structure/machinery/shower{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/cellblock/mediumsec/north) -"ccc" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"hNd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/redcorner, +/area/prison/recreation/highsec/s) +"hNi" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/toilet/canteen) +"hNp" = ( +/turf/open/floor/prison/red/north, +/area/prison/security/checkpoint/highsec/n) +"hNs" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"ccd" = ( -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"hND" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cce" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/north) +"hNE" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"ccf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"hNH" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"cch" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"cci" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/wood, -/area/prison/library) -"ccj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating, -/area/prison/engineering) -"cck" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/plating, -/area/prison/engineering) -"ccl" = ( +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"hNX" = ( /obj/structure/machinery/light, -/turf/open/floor/plating, -/area/prison/engineering) -"ccm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering" - }, -/turf/open/floor/prison, -/area/prison/engineering) -"ccn" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay) +"hOC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"hPo" = ( +/obj/structure/machinery/door/window/southright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"hPt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"cco" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"ccp" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"hPB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/hallway/engineering) -"ccq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"ccr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"hPJ" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"hPM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/engineering) -"ccs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/engineering) -"cct" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/prison/residential/south) -"ccu" = ( +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"hPN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/residential/south) -"ccw" = ( -/turf/open/floor/prison, -/area/prison/hallway/engineering) -"ccy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/prison/residential/south) -"ccA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Engineering Hallway" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Northwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"hPQ" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = -30 }, -/area/prison/hallway/engineering) -"ccB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/prison/redfull, +/area/prison/hallway/entrance) +"hQc" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"hRo" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/nw) +"hRx" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"ccC" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"hRZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"hSa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/southeast, +/area/prison/security/checkpoint/highsec/n) +"hSm" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"hSq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bluefull, +/area/prison/storage/vip) +"hSW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"ccD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison, -/area/prison/hallway/east) -"ccF" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"ccI" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"ccK" = ( +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/ne) +"hTe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Head of Security's Office" + dir = 4; + icon_state = "exposed10-supply" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"hTv" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"hTY" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/security/head) -"ccL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/highsec/n) +"hUa" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"hUw" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"hUY" = ( +/obj/structure/machinery/door_control{ + id = "lethal_armory"; + name = "Lethal Armory Access"; + pixel_x = 24 }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"hUZ" = ( +/obj/structure/machinery/optable, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay/surgery) +"hVy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/security/head) -"ccM" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"hVD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/color/orange, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"hVE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"hVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/west, +/area/prison/monorail/east) +"hVZ" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/north/north) +"hWd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"hWf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/security/head) -"ccN" = ( +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"hWi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"hWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 2; - icon_state = "pipe-c" + name = "Warden's Quarters" }, -/turf/open/floor/prison, -/area/prison/security/head) -"ccP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/command/quarters) +"hWG" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/south) +"hWI" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/security/head) -"ccS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"hXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/obj/structure/largecrate/random, +/turf/open/shuttle/black, +/area/prison/pirate) +"hXR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/highsec/north/south) +"hYb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"hYl" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"hYq" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/shuttle/elevator/grating, +/area/prison/hallway/central/west) +"hYy" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/area/prison/cellblock/highsec/south/south) -"ccT" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/south) +"iab" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/area/prison/cellblock/mediumsec/north) -"ccU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"iaD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/prison/cellblock/mediumsec/north) -"ccV" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/mediumsec/north) -"ccW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/blue/northwest, +/area/prison/cellblock/protective) +"iaT" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/medsec) +"ibj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"ccX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"ccY" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"iby" = ( +/obj/structure/bed, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"ibJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"ibL" = ( +/turf/open/floor/prison/blue/northeast, +/area/prison/security/checkpoint/vip) +"ibU" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"icn" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/nw) +"ida" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/darkpurplecorners2/west, +/area/prison/research/secret) +"idv" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"idx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hangar_storage/main) +"idI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/mediumsec/north) -"cde" = ( -/turf/closed/wall/prison, -/area/prison/quarters/staff) -"cdf" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/prison/research/secret) +"idR" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/south) -"cdi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"idZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"cdk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"ieb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"iel" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/highsec/south/south) -"cdl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ +"ieo" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "redcorner" + icon_state = "p_stair_full" }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/s) +"iep" = ( +/turf/open/floor/prison/redcorner, /area/prison/cellblock/highsec/south/south) -"cdm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"ieJ" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/maintenance/residential/sw) +"ieK" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"ieO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/south) -"cdr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/green/east, +/area/prison/hallway/staff) +"ifc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/cellblock/lowsec/se) +"ifn" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/sw) +"ifo" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"igb" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"cds" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cdt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/recreation/medsec) -"cdu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/prison/cellblock/mediumsec/west) +"igp" = ( +/turf/open/floor/prison/bluecorner/east, +/area/prison/security/checkpoint/vip) +"ihG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"ihS" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"iif" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"iip" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/floor_plate, /area/prison/recreation/medsec) -"cdv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"iiq" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cdw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"iiz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/recreation/medsec) -"cdx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"iiL" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/greenfull, +/area/prison/maintenance/staff_research) +"iiS" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"ijd" = ( +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/protective) +"ijg" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"ijy" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/south/north) +"ijD" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"ijS" = ( +/turf/open/floor/prison/blue/east, +/area/prison/parole/protective_custody) +"ike" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "Medium-Security Recreation" + name = "Protective Custody Cells" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/north) +"ikl" = ( +/turf/open/floor/prison/red, +/area/prison/security/checkpoint/highsec/n) +"iko" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/north, +/area/prison/hallway/staff) +"iky" = ( +/obj/structure/surface/table/reinforced, +/obj/item/prop/matter_decompiler, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"ikK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/recreation/medsec) -"cdy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/darkbrown2/west, +/area/prison/hallway/east) +"ikL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cdz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "Canteen" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"ikR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"cdA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/prison/cellblock/mediumsec/north) -"cdB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"ilh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"imq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"cdC" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"ims" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"imy" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/blue/southwest, +/area/prison/parole/protective_custody) +"imK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cdE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security) -"cdF" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/prison/library) -"cdG" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"imN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/engineering) -"cdH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"imP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/blue/northwest, +/area/prison/cellblock/protective) +"inc" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering/atmos) +"inA" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) -"cdI" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +"inL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/prison/engineering) -"cdJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/mirror{ + pixel_x = -26 }, -/area/prison/hallway/engineering) -"cdK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"inN" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/prison/hallway/engineering) -"cdL" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 5 +/turf/open/floor/chapel/west, +/area/prison/chapel) +"inQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/area/prison/hallway/engineering) -"cdM" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 4 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"ipi" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/prison/hallway/engineering) -"cdN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/pipes/standard/simple/hidden/yellow{ +/turf/open/floor/freezerfloor, +/area/prison/pirate) +"ipx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/hallway/engineering) -"cdO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 10 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"ipU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/engineering) -"cdP" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"ipX" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow/northwest, /area/prison/cellblock/mediumsec/north) -"cdQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/prison/hallway/engineering) -"cdR" = ( -/obj/structure/machinery/door/poddoor/two_tile/opened{ - id = "execution" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/prison/execution) -"cdS" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/prison/execution) -"cdT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" - }, -/area/prison/security) -"cdU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security) -"cdV" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security) -"cdW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkred2" +"iqf" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/south/south) +"iqw" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"iqE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/prison/security) -"cdX" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/canteen) +"iqF" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/security) -"cdY" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/hangar) +"iqW" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"irh" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding10" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = 15; + pixel_y = 25 }, -/area/prison/security) -"cea" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"iri" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/prison/security) -"ceb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/megaphone, -/turf/open/floor/prison, -/area/prison/security/head) -"cec" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/taperecorder, -/turf/open/floor/prison, -/area/prison/security/head) -"ced" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/chapel, +/area/prison/chapel) +"irA" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/security/head) -"ceh" = ( /obj/structure/surface/rack, /turf/open/floor/plating, /area/prison/cellblock/highsec/south/south) -"cem" = ( -/obj/item/stack/cable_coil/cut{ - amount = 1; - icon_state = "coil1"; - name = "cable piece" - }, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"cen" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "red" +"isa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Yard" }, -/area/prison/cellblock/highsec/south/south) -"ceo" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"isJ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"itd" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"cep" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"ity" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redcorner" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"iuc" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"iuf" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/cellblock/protective) +"iuj" = ( +/obj/structure/window/framed/prison/cell, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"iuE" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"ceq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"iva" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"cer" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"ivb" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/north) +"ivD" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/cellblock/highsec/south/south) -"ces" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - icon_state = "red" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"cev" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security) -"cew" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/toilet/security) +"ivM" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/east) +"ivO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/recreation/medsec) -"cex" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/highsec) +"ivW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/recreation/medsec) -"cey" = ( +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/nw) +"iwh" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/recreation/medsec) -"cez" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "Phone Booth" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/east) +"iwP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"ceA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/prison/cellblock/mediumsec/north) -"ceB" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"ixb" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/cellblock/mediumsec/north) -"ceC" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"ceD" = ( -/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ceE" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison, -/area/prison/engineering) -"ceF" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"ixX" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison, -/area/prison/engineering) -"ceG" = ( -/obj/structure/bed, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/under/colonist, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/engineering) -"ceH" = ( -/turf/closed/wall/r_wall/prison_unmeltable, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/north/south) +"ixY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/research/secret/bioengineering) +"iyy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) -"ceI" = ( +"iyO" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/west) +"izh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/ne) +"izs" = ( +/obj/structure/toilet{ + dir = 4 + }, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/south) -"ceJ" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"izt" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/medsec) +"izx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/cellblock/highsec/south/south) -"ceK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/medbay/foyer) +"izT" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/central/south) +"izU" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/engineering) -"ceL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen, +/area/prison/research) +"iAd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"ceM" = ( +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"iAk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/engineering) -"ceN" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering) -"ceO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hallway/engineering) -"ceP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"iAS" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/hallway/engineering) -"ceQ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"iBc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"iBe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/hallway/engineering) -"ceR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/maxsec) +"iBL" = ( +/obj/structure/sign/poster{ + icon_state = "poster_agents"; + pixel_y = -32 }, -/area/prison/hallway/engineering) -"ceS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/yellow, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Disposals" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"iBN" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/disposal) -"ceT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, +/area/prison/maintenance/residential/sw) +"iCt" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"iCP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + density = 0; dir = 2; - name = "Execution" + icon_state = "door_open"; + name = "Research Restrooms"; + req_one_access = null }, -/turf/open/floor/prison, -/area/prison/execution) -"ceU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"iCT" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Execution" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"iCZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/execution) -"ceV" = ( +/turf/open/floor/prison/bluecorner, +/area/prison/cellblock/protective) +"iDb" = ( +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/north/north) +"iDh" = ( +/turf/open/floor/prison/kitchen, +/area/prison/recreation/medsec) +"iDo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/rampbottom/north, +/area/prison/yard) +"iDV" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"iDZ" = ( +/obj/item/folder/black, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"iEa" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"iES" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2; - name = "Briefing" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" + name = "Medium-Security Monitoring" }, -/area/prison/security/briefing) -"ceX" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Briefing" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/medsec/south) +"iET" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/briefing) -"ceY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Riot Armory" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"iEV" = ( +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/sw) +"iFc" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/highsec) +"iFg" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"iFO" = ( +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"iFS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/armory/riot) -"ceZ" = ( -/obj/structure/machinery/door_control{ - id = "riot_armory"; - name = "Riot Armory Access"; - pixel_x = -24 +/turf/open/floor/prison/darkyellow2/north, +/area/prison/engineering) +"iGo" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/organic/grass, +/area/prison/residential/north) +"iGI" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/prison/residential/south) +"iHa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"iHd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/security) -"cfa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/quarters/research) +"iHf" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"iHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security) -"cfb" = ( -/obj/structure/machinery/door_control{ - id = "lethal_armory"; - name = "Lethal Armory Access"; - pixel_x = 24 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security) -"cfc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Lethal Armory" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"iHk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"iHE" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/hangar) +"iHK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/armory/lethal) -"cfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 2; - name = "Head of Security's Quarters" +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"iHV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/security/head) -"cfh" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"iIz" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/prison/recreation/medsec) -"cfi" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"iIY" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"iJa" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research) +"iJc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/recreation/medsec) -"cfk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"iJi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/prison/cellblock/protective) -"cfl" = ( -/turf/open/floor/plating, -/area/prison/cellblock/protective) -"cfm" = ( -/obj/structure/machinery/shower{ - dir = 4 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"iJQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"iKd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"iKQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"iKU" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"iLj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/cellblock/protective) -"cfn" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"iLk" = ( +/obj/item/ammo_magazine/rifle/mar40, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"iLv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/cellblock/protective) -"cfo" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating, +/area/prison/engineering) +"iLx" = ( /obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"iLC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bluefull, +/area/prison/security/checkpoint/vip) +"iLK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, -/area/prison/cellblock/protective) -"cfp" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/prison/hallway/east) +"iMc" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/prison/engineering) -"cfq" = ( -/obj/structure/bed/chair/office/dark{ +/obj/item/reagent_container/food/snacks/candiedapple, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"iMi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret) +"iMj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"iNd" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/protective) +"iNj" = ( +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"iNl" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"iNr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Yard" }, -/turf/open/floor/prison, -/area/prison/engineering) -"cfr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/engineering) -"cfs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"iNP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 2; + name = "Security Barracks" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/quarters/security) +"iOc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Chief Engineer's Quarters" +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/engineering) -"cft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/prison/maintenance/residential/access/south) +"iOf" = ( +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/south/north) +"iOz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/medbay) +"iPn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/north) +"iPu" = ( +/obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering) -"cfu" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/engineering) -"cfv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/surface/rack, +/obj/item/tank/air, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"iQK" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/nw) +"iQS" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"iQY" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/cellblock/highsec/south/north) +"iRe" = ( +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/se) +"iRv" = ( +/turf/closed/shuttle/elevator{ dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/area/prison/hallway/central/west) +"iRz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/engineering) -"cfw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/south) +"iRB" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/delivery, +/area/prison/telecomms) +"iRG" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/engineering) -"cfx" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/engineering) -"cfy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Protective Custody Parole" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"iRI" = ( +/obj/structure/sink{ + pixel_y = 23 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cfz" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor/plating, -/area/prison/disposal) -"cfA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/south) +"iRP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"iRR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"iRU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps, /turf/open/floor/plating, -/area/prison/disposal) -"cfB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/prison/maintenance/residential/sw) +"iSc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/yellow, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"iSk" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cfC" = ( -/turf/closed/wall/r_wall/prison, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"iSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/engineering) -"cfD" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/execution) -"cfE" = ( -/obj/structure/pipes/standard/simple/visible/universal{ +"iSW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cfF" = ( -/obj/structure/pipes/standard/tank/air{ - dir = 8 +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"iTk" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"iTo" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cfG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/prison/execution) -"cfH" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison, -/area/prison/execution) -"cfI" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"iTu" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/execution) -"cfK" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"iTw" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/northeast, +/area/prison/recreation/highsec/s) +"iTN" = ( +/turf/open/floor/prison/rampbottom, +/area/prison/yard) +"iUe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"iUs" = ( +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"iUB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/security/briefing) -"cfM" = ( +/turf/open/floor/prison/yellow/southeast, +/area/prison/cellblock/mediumsec/west) +"iVf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/protective) +"iVr" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/sign/poster{ + icon_state = "poster10"; + pixel_y = 32 + }, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"iVE" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/hanger/main) +"iVG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/security/briefing) -"cfN" = ( +/turf/open/floor/prison/red/east, +/area/prison/security/checkpoint/highsec/s) +"iVU" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"iWj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" + dir = 4 }, -/area/prison/security/briefing) -"cfO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Infirmary Storage" }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"iWM" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/north) +"iXz" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research/secret) +"iXJ" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/south) +"iXK" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"iXX" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) -"cfP" = ( -/obj/structure/machinery/alarm/almayer{ +"iYZ" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/south) +"iZf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"iZF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"iZK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/briefing) -"cfQ" = ( -/obj/structure/closet/gimmick{ - anchored = 1; - name = "Riot gear" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"jan" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/weapon/shield/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/security/armory/riot) -"cfR" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 +/turf/open/organic/grass, +/area/prison/residential/south) +"jar" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"jaw" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"jbz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean_marked, +/area/prison/telecomms) +"jbI" = ( +/obj/item/frame/table, +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"jbN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/armory/riot) -"cfS" = ( -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"jbO" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/residential/south) -"cfT" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"jbS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/residential/central) +"jcd" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"jcS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/prison/command/secretary_office) +"jcW" = ( /obj/structure/sink{ - dir = 4; - pixel_x = 11 + pixel_y = 15 }, -/obj/structure/mirror{ - pixel_x = 26 +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research) +"jdl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "High-Security Monitoring" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"jdx" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/medbay/foyer) +"jef" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"jei" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"jfk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/southeast, +/area/prison/storage/vip) +"jfp" = ( +/turf/closed/wall/prison, +/area/prison/storage/highsec/n) +"jfN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/south) +"jfV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "Infirmary Foyer" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"jha" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"jhH" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"jhP" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"jhV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"jid" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"jil" = ( +/turf/open/floor/prison/rampbottom, +/area/prison/maintenance/residential/nw) +"jiF" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"jiS" = ( +/obj/structure/bed, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/shuttle/black, +/area/prison/pirate) +"jjl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/residential/south) -"cfU" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"jjH" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/se) +"jkn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -26 +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"jkv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"jkB" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"jkI" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/residential/south) -"cfV" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"jkL" = ( +/obj/structure/machinery/keycard_auth/lockdown/prison, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/residential/south) -"cfW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/blue/east, +/area/prison/command/secretary_office) +"jkX" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"cfX" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"jlC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/armory/riot) -"cfY" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"jlF" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"jlZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/security) -"cfZ" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"jma" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"jmk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"jmm" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/south) +"jmw" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/se) +"jmP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/security/armory/lethal) -"cga" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"jnm" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/armory/lethal) -"cgb" = ( -/obj/structure/closet, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/turf/open/floor/wood, -/area/prison/security/head) -"cgc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/security/head) -"cgd" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/security/head) -"cgh" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"jno" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/south) -"cgi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/south) -"cgj" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/highsec/south/south) -"cgk" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"jnp" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cgl" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cgn" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"cgp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"jnt" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/east) +"jnE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"jnF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cgq" = ( -/obj/structure/machinery/shower{ +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/cellblock/mediumsec/north) -"cgr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/prison/green, +/area/prison/hallway/central/west) +"jnH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"joe" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkred2, +/area/prison/security) +"joT" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"joU" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"joX" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"jpb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/handcuffs, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"jpp" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding9" }, -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"jpw" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/medbay/foyer) +"jpy" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "yellow" + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/north) -"cgt" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/protective) -"cgu" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"jpO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/prison, +/area/prison/cellblock/lowsec/nw) +"jqb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/medsec) +"jqc" = ( +/obj/structure/toilet, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/nw) +"jqi" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/protective) -"cgv" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"jqn" = ( +/obj/item/tank/emergency_oxygen, +/turf/open/floor/prison, +/area/prison/hallway/central/west) +"jqq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"jqH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/cellblock/protective) -"cgw" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"jqK" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/medsec) +"jqQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/protective) -"cgx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"jrr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/storage/vip) +"jru" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"jrE" = ( +/turf/open/floor/prison/blue/southwest, +/area/prison/security/checkpoint/vip) +"jrL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/protective) -"cgy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"jrP" = ( +/turf/open/floor/prison/whitegreen, +/area/prison/residential/central) +"jsb" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"jsx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/south) +"jsF" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/vip) +"jsO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/protective) -"cgz" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"jta" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/cellblock/protective) -"cgA" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"jtu" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hanger/research) +"jtM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/cellblock/protective) -"cgB" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"jut" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison, -/area/prison/engineering) -"cgD" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/prison, -/area/prison/engineering) -"cgE" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering) -"cgF" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"juA" = ( +/obj/item/trash/burger, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"juR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/nw) +"jvg" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"jvm" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkyellowfull2" + pixel_x = 11 }, -/area/prison/engineering) -"cgG" = ( -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cgH" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/nw) +"jvL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cgI" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/disposal) -"cgJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cgK" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/disposal) -"cgL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cgM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plating, -/area/prison/disposal) -"cgN" = ( -/turf/closed/wall/prison, -/area/prison/security/briefing) -"cgO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"jvN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"jvY" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"jwe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/plating, -/area/prison/disposal) -"cgQ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/briefing) -"cgS" = ( -/turf/closed/wall/r_wall/prison, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"jwu" = ( +/turf/open/floor/prison/darkred2/north, /area/prison/security/briefing) -"cgT" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/armory/riot) -"cgU" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/prison/disposal) -"cgV" = ( -/obj/structure/machinery/light{ - dir = 8 +"jwI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/prison, -/area/prison/security/briefing) -"cgW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/briefing) -"cgX" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/briefing) -"cgY" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/armory/lethal) -"cgZ" = ( -/obj/structure/closet/gimmick{ - anchored = 1; - name = "Riot gear" +/obj/structure/sign/safety/nonpress{ + pixel_x = -30 }, -/obj/item/weapon/shield/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cha" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/head) -"chb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/classic_baton, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"chc" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"jwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/s) +"jwO" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret/containment) +"jwT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/residential/south) -"chd" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"jxf" = ( +/obj/structure/machinery/door/window/westright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"jxi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"jxo" = ( +/obj/item/handset, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/vip) +"jxs" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"jxA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/residential/south) -"che" = ( -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"jxW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"jyu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"jyC" = ( +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/north) +"jyE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/south) -"chf" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"jyT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"jze" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"jzr" = ( +/turf/open/floor/prison/rampbottom/west, +/area/prison/yard) +"jzt" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/red/northwest, +/area/prison/security/monitoring/highsec) +"jzJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "North Civilian Residences Access" }, -/area/prison/security/armory/riot) -"chh" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/prison/pirate) -"chi" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m16, /turf/open/floor/plating, -/area/prison/pirate) -"chj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/prison/residential/north) +"jzT" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"jAD" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"jAU" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/pirate) -"chk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/central/east) +"jBc" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/plating, -/area/prison/pirate) -"chl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"chm" = ( -/obj/item/ammo_magazine/rifle/mar40, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/pirate) -"chn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"jBd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/plating, -/area/prison/pirate) -"cho" = ( -/obj/structure/machinery/door/poddoor/two_tile/vertical/open{ - id = "riot_armory" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/highsec/south/north) +"jBg" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"jBu" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"jBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/north) +"jBH" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"jBJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/armory/riot) -"chp" = ( -/obj/structure/machinery/door/poddoor/two_tile/vertical/open{ - id = "lethal_armory" +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/highsec) +"jBL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"jBR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/shuttle/black, +/area/prison/pirate) +"jCz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"jCK" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/prison/hallway/east) +"jCW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"jCZ" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/medbay) +"jDA" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/prison/research/secret/containment) +"jDK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/armory/lethal) -"chq" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/entrance) +"jDQ" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret/containment) +"jDR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"jEq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"jFo" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/prison/security/armory/lethal) -"chr" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"chs" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cht" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/protective) -"chu" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/security/head) -"chv" = ( -/obj/item/ammo_magazine/pistol/b92fs, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/storage/vip) +"jFw" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/cellblock/highsec/north/south) +"jFF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/security/head) -"chw" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/prison/security/head) -"chx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/storage/medsec) -"chy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"jFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/north) -"chz" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/storage/medsec) +"jGp" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, -/area/prison/cellblock/protective) -"chA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"jGX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/protective) -"chB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/protective) -"chC" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"jHj" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/s) +"jHU" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/prison/recreation/highsec/s) +"jIc" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/prison/hallway/east) +"jIs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/north) +"jIC" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/nw) +"jIL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/vip) +"jIV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"jJd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/protective) -"chD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"jJC" = ( +/obj/structure/machinery/computer/secure_data, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/sw) +"jKa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 28 + }, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"jKe" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"jKf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"jKE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Protective Custody Cells" +/turf/open/floor/prison/green/north, +/area/prison/security/monitoring/lowsec/sw) +"jKR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/mediumsec/east) +"jKU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/highsec) +"jKW" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/vip) +"jLh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "High-Security Monitoring" }, -/area/prison/cellblock/protective) -"chE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"jLN" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"jLU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Maximum-Security Panopticon" }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"jMf" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security) +"jMA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"jMC" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"jMJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"jMQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"jMT" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/south/south) +"jNr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"jNx" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/protective) -"chF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"jNy" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"jOz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"jOI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/protective) -"chG" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"jPg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/maxsec_highsec) +"jPl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/area/prison/cellblock/protective) -"chH" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/parole/protective_custody) -"chI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"jPt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ density = 0; dir = 2; icon_state = "door_open"; - name = "Solitary Confinement"; + name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/cellblock/protective) -"chJ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/prison/cellblock/protective) -"chK" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"chM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"chN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"jPu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"chO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"jRi" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"chP" = ( -/obj/structure/surface/table/reinforced, /turf/open/floor/plating, -/area/prison/disposal) -"chQ" = ( -/turf/open/floor/prison, -/area/prison/execution) -"chR" = ( +/area/prison/maintenance/residential/ne) +"jRl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/prison/cellblock/protective) +"jRn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/north/north) +"jRt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 5 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/turf/open/floor/plating, -/area/prison/disposal) -"chS" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 10 +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"jRC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"jRH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hallway/engineering) +"jRS" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"jSu" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/prison/disposal) -"chV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/area/prison/cellblock/mediumsec/east) +"jSQ" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/execution) -"chW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"jTj" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"jTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"chY" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Chemistry" }, -/turf/open/floor/prison, -/area/prison/execution) -"chZ" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/prison/security/briefing) -"cia" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/briefing) -"cib" = ( -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cic" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/briefing) -"cid" = ( -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cie" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cif" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/chemistry) +"jTz" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"jTH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/armory/lethal) -"cig" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"jUo" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"jUC" = ( +/turf/closed/wall/r_wall/prison, +/area/prison/telecomms) +"jUS" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"jVk" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/security/armory/riot) -"cih" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/security) -"cii" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/organic/grass, +/area/prison/residential/north) +"jVm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"jVv" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/south/south) +"jVA" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/medbay) +"jVO" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/north/south) +"jWh" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/nw) +"jWl" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"jWD" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"jWH" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/south) +"jWL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"jWP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/south) +"jXo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"jXy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/armory/lethal) -"cij" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cil" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/security/head) -"cim" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/east) +"jXV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/wood, -/area/prison/security/head) -"cin" = ( -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "diagonalWall3" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Maximum-Security Panopticon" }, -/turf/open/floor/plating, -/area/prison/pirate) -"cio" = ( -/turf/closed/wall/almayer, -/area/prison/pirate) -"cip" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"jYh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"jYl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - id = "pirate_cargo"; - name = "Rocinante Cargo Bay Door" + name = "Southwest Low-Security Cellblock" }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"jYq" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"jYr" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/prison/pirate) -"ciq" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "pirate_cargo"; - name = "Rocinante Cargo Bay Door" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/engineering) +"jZn" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"jZF" = ( +/turf/open/floor/asteroid, +/area/prison/residential/central) +"jZW" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/pirate) -"cir" = ( -/obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m16, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "pirate_cargo"; - name = "Rocinante Cargo Bay Door" - }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/north) +"kag" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"kau" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/pirate) -"cis" = ( -/obj/item/ammo_casing, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "pirate_cargo"; - name = "Rocinante Cargo Bay Door" +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/hanger/research) +"kaI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/pirate) -"ciu" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "diagonalWall3" +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"kbk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/space, -/area/space) -"ciw" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/wood, -/area/prison/security/head) -"cix" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/highsec) +"kbz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/research/secret/testing) +"kbQ" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"kcl" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"kdF" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"kdL" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/red/west, /area/prison/cellblock/highsec/south/south) -"ciz" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/north) -"ciA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"ciB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/north) -"ciC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +"kel" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"kez" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"keT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/medsec/south) +"kfx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/prison/cellblock/mediumsec/north) -"ciD" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"kfB" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"ciE" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"kfL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"ciF" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"kfQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"kga" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/area/prison/cellblock/mediumsec/north) -"ciG" = ( -/obj/item/frame/table, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/item/tool/soap{ + pixel_x = 5 }, -/area/prison/cellblock/mediumsec/north) -"ciH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"kgD" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/hanger/main) +"khs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Southeast Low-Security Cellblock" }, -/area/prison/cellblock/mediumsec/north) -"ciI" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"khD" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"khR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"khV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"kiG" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "bluefull" + icon_state = "pipe-c" }, -/area/prison/cellblock/protective) -"ciJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"kiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"kiT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/highsec/s) +"kjh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"kjs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"kjv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/janitorialcart, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"kjP" = ( +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/south) +"kjU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/north, +/area/prison/security/monitoring/highsec) +"kjV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"kjZ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"kka" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"kkh" = ( +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/south) +"kkv" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/cellblock/protective) -"ciK" = ( -/turf/open/floor/prison{ - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"ciL" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/east) +"kkw" = ( +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/north) +"kkS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"ciM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/protective) -"ciN" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research) +"klc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"klu" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/checkpoint/maxsec) +"klA" = ( +/obj/effect/decal/cleanable/blood/gibs, /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/lowsec/sw) +"klP" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/prison/cellblock/protective) -"ciO" = ( +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"klZ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ciP" = ( -/obj/structure/machinery/camera/autoname{ - network = list("PRISON") +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"kmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"knc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/protective) -"ciQ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"knj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"knR" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "blue" + icon_state = "pipe-c" }, -/area/prison/cellblock/protective) -"ciR" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security) +"kos" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ciS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ciT" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ciU" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/prison/parole/protective_custody) -"ciV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/prison/parole/protective_custody) -"ciW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"kov" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/prison/parole/protective_custody) -"ciX" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/storage/vip) +"koC" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/prison/parole/protective_custody) -"cja" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/mirror{ + pixel_y = 28 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"koL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"koP" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cjb" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/disposal) -"cjc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 + dir = 6 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cjd" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/prison/execution) -"cje" = ( -/turf/open/floor/prison, -/area/prison/security/briefing) -"cjg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/execution) -"cjh" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, +/turf/open/floor/prison/darkred2/west, /area/prison/security/briefing) -"cji" = ( +"kpj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/sw) +"kpw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/north/north) +"kpy" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/recreation/highsec/s) +"kqq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/armory/riot) -"cjj" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/highsec) +"kqB" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cjk" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"kqS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/armory/riot) -"cjl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/east) +"krJ" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"krM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/armory/lethal) -"cjm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cjn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"krR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/armory/lethal) -"cjo" = ( +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"krT" = ( /obj/structure/machinery/door/airlock/almayer/generic{ density = 0; - dir = 2; icon_state = "door_open"; name = "Toilet"; opacity = 0 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/prison/security/head) -"cjp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/south) -"cjq" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 9; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"cjr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/highsec/south/south) -"cjt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/pirate) -"cju" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating, -/area/prison/pirate) -"cjv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"kso" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/highsec) +"ksE" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating, -/area/prison/pirate) -"cjw" = ( -/turf/open/floor/plating, -/area/prison/pirate) -"cjx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"ksT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"ksY" = ( /obj/item/ammo_casing, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/prison/pirate) -"cjy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/area/prison/cellblock/mediumsec/east) +"ktm" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/medsec) +"ktp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret) +"ktq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/platform, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + dir = 4 }, -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/landing/console2) +"ktx" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"ktY" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"ktZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cjA" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/checkpoint/highsec_medsec) -"cjB" = ( -/turf/closed/wall/prison, -/area/prison/security/checkpoint/highsec_medsec) -"cjC" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/checkpoint/highsec_medsec) -"cjD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"kui" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"kvb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research/secret/chemistry) +"kve" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/cellblock/mediumsec/north) -"cjE" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/north) +"kwq" = ( +/obj/structure/machinery/flasher{ + id = "canteen" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"kwu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"cjG" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret) +"kxe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/mediumsec/north) -"cjJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/residential/central) +"kxh" = ( +/obj/item/roller{ + icon_state = "down" }, -/turf/open/floor/prison, -/area/prison/cellblock/mediumsec/north) -"cjK" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"kxk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"kxq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/north) -"cjL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cjN" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"kxF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredcorners2/west, +/area/prison/security/checkpoint/vip) +"kxQ" = ( +/obj/structure/bed/chair/wheelchair, +/obj/item/tool/wrench, +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/medbay) +"kye" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/frame/table, -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"cjO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ +/obj/structure/surface/table/reinforced{ dir = 8; - icon_state = "yellowcorner" + flipped = 1 }, -/area/prison/cellblock/mediumsec/north) -"cjP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"kyv" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/blue/north, +/area/prison/command/secretary_office) +"kyS" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/south) +"kzl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/chapel) +"kzI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Maintainance" }, -/area/prison/cellblock/mediumsec/north) -"cjQ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/monitoring/protective) -"cjR" = ( /turf/open/floor/plating, -/area/prison/disposal) -"cjS" = ( +/area/prison/security/checkpoint/vip) +"kzO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"kzQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"kzS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"kzU" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"kAj" = ( +/obj/structure/sink{ dir = 8; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"cjT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/prison/cellblock/protective) -"cjU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "blue" + pixel_x = -12 }, -/area/prison/cellblock/protective) -"cjY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"kAk" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/maxsec_highsec) +"kAP" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hangar_storage/research) +"kAV" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"cjZ" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret) +"kBp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Protective Custody Parole Waiting" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"kBw" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"kBU" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"kCz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/parole/protective_custody) -"cka" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"kCN" = ( +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"kDd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/prison/parole/protective_custody) -"ckb" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"kDz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/parole/protective_custody) -"ckc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/area/prison/hallway/central/east) +"kDB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"kDF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/parole/protective_custody) -"ckd" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/greencorner/north, +/area/prison/cellblock/lowsec/sw) +"kEs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/stack/rods, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"kEt" = ( +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/south) +"kEu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Briefing" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/briefing) +"kEF" = ( +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"kFh" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"kFm" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret) +"kFs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"ckf" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/prison/disposal) -"ckg" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cki" = ( +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/engineering) +"kFx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/bible/booze, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"kFA" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"ckj" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/prison/pirate) -"ckk" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating, -/area/prison/pirate) -"ckl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/pirate) -"ckm" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/pirate) -"ckn" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/prison/pirate) -"cko" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison, -/area/prison/execution) -"ckp" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"kFQ" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/prison/storage/medsec) +"kGn" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"kGq" = ( /turf/open/floor/prison, -/area/prison/security/armory/riot) -"ckq" = ( +/area/prison/visitation) +"kGM" = ( +/turf/open/floor/prison/darkredcorners2, +/area/prison/security/monitoring/highsec) +"kHf" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/west) +"kHk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"kHE" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/monorail/east) +"kHK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/security/armory/riot) -"ckr" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cks" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/m15, -/obj/item/explosive/grenade/high_explosive/m15, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"ckt" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/m15, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cku" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"ckv" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"ckx" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"kHO" = ( +/obj/item/storage/box/mousetraps, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"kIj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/obj/structure/mirror{ - pixel_x = -28 +/turf/open/floor/prison/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"kIp" = ( +/turf/open/floor/prison/red/southeast, +/area/prison/security/checkpoint/highsec/n) +"kJm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/ne) +"kJV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/head) -"cky" = ( -/obj/structure/toilet{ - pixel_y = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Low-Security Recreation" }, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"kKu" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/prison/hallway/east) +"kKy" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/red/north, +/area/prison/recreation/highsec/s) +"kKB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/head) -"ckz" = ( -/obj/structure/machinery/shower{ +/obj/effect/landmark/corpsespawner/prison_security, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/north/north) +"kKD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"kKL" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/lowsec/sw) +"kKS" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/vip) +"kLo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/head) -"ckA" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"kLI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/northeast, +/area/prison/cellblock/protective) +"kLN" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/cellblock/highsec/south/south) -"ckB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/secure_data, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"kLQ" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/south/north) +"kLS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/blue/west, +/area/prison/residential/central) +"kMl" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/prison/security/checkpoint/highsec_medsec) -"ckC" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"kMK" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hallway/east) +"kMM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/machinery/flasher_button{ + id = "suspended_WEN"; + pixel_x = -24 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"kMW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/checkpoint/highsec_medsec) -"ckD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/north) +"kMX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/security/checkpoint/highsec_medsec) -"ckE" = ( -/obj/item/ammo_casing, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"kMZ" = ( +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/darkred2/east, +/area/prison/intake) +"kNm" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/area/prison/cellblock/highsec/south/south) -"ckF" = ( +/turf/open/floor/prison/red/north, +/area/prison/security/checkpoint/highsec/s) +"kNu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/south) -"ckG" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Maximum-Security Panopticon" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"kNI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"ckI" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/monorail/east) +"kNP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"kNZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/cellblock/mediumsec/north) -"ckJ" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hanger/main) +"kOs" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/security/monitoring/protective) -"ckK" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"kOM" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"kPI" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/east) +"kPV" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" }, -/area/prison/security/monitoring/protective) -"ckL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"kPW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/monitoring/protective) -"ckM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Central Ring" }, -/area/prison/security/monitoring/protective) -"ckN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"kQN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"kQT" = ( +/obj/item/device/assembly/signaller{ + code = 2; + frequency = 1449 }, -/area/prison/cellblock/protective) -"ckO" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"kQV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"ckP" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"kRc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/chapel, +/area/prison/chapel) +"kRd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/prison/cellblock/protective) -"ckQ" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"kRg" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"kRh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"kRq" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/prison/parole/protective_custody) -"ckR" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"kRx" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/east) +"kRz" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/medbay/foyer) +"kRT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/parole/protective_custody) -"ckS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/prison/hallway/central/east) +"kRX" = ( +/turf/open/floor/prison/red/east, +/area/prison/security/monitoring/highsec) +"kSf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/sw) +"kSp" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"kSt" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/maintenance/staff_research) +"kSV" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"kTb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"kTh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret/containment) +"kTj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"kTN" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"kUw" = ( +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"kUZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/medsec/south) +"kVo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay/surgery) +"kVy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/parole/protective_custody) -"ckT" = ( +/turf/open/floor/prison/redcorner/north, +/area/prison/recreation/highsec/n) +"kVz" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/main) +"kVA" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/blue/east, +/area/prison/residential/central) +"kWA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay) +"kWZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Protective Custody Parole" +/turf/open/floor/prison/blue/southeast, +/area/prison/cellblock/protective) +"kXb" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay/surgery) +"kXc" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hanger/main) +"kXW" = ( +/obj/item/tool/screwdriver, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"ckU" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"kYn" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/east) +"kYU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/medsec/south) +"kZc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"ckV" = ( +/turf/open/floor/plating, +/area/prison/security/monitoring/highsec) +"kZf" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"kZp" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"kZw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"kZF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/frame/table/wood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"lan" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/black, +/area/prison/pirate) +"lau" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreencorner/west, +/area/prison/medbay) +"laC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research) +"laH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/highsec/n) +"lbf" = ( /obj/structure/surface/table/reinforced, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/south/north) +"lbS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"ckW" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"lbZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lch" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"ckY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/disposal) -"ckZ" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/prison/disposal) -"cla" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/security/armory/riot) -"clb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"lcu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/armory/lethal) -"clc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ldf" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"ldx" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/highsec/north/south) +"ldE" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"cld" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"ldY" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/vip) +"leh" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/prison/hallway/east) +"lex" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"cle" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/blue, +/area/prison/command/secretary_office) +"leC" = ( +/obj/structure/machinery/disposal, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "redcorner" - }, -/area/prison/cellblock/highsec/south/south) -"clf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + health = 80 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/highsec/south/south) -"clj" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"leM" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/effect/landmark/corpsespawner/prison_security, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1; - icon_state = "exposed01-supply" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/green, +/area/prison/quarters/staff) +"leU" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer3/laptop/secure_data{ + pixel_y = 5 }, -/area/prison/security/checkpoint/highsec_medsec) -"clk" = ( +/turf/open/floor/wood, +/area/prison/quarters/research) +"lfh" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"lft" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/south) +"lfX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/prison/security/checkpoint/highsec_medsec) -"cll" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue/west, +/area/prison/command/secretary_office) +"lga" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Research Dorms" }, -/area/prison/cellblock/highsec/south/south) -"clm" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/quarters/research) +"lgt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/highsec/north/south) +"lgx" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hangar_storage/main) +"lgH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"clo" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"lho" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"clp" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/monorail/east) +"lhQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/north) -"clq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"clr" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"lia" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"lic" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/visitation) +"lig" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/security/monitoring/protective) -"cls" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"liz" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"liM" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/box/lights, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"ljc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"ljh" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/protective) -"clt" = ( -/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"ljj" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/protective) -"clu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/effect/landmark/item_pool_spawner/prison_lock/master, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/protective) -"clv" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"ljF" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/east) +"ljW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"lkn" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"lkP" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/ne) +"llr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"llQ" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/medsec) +"llV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"clw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/hangar) +"lmf" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lmA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"lmJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/red/northeast, +/area/prison/security/checkpoint/highsec/n) +"lmT" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/southwest, +/area/prison/recreation/highsec/s) +"lnz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/protective) -"clx" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"lnV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/south) +"lod" = ( +/obj/structure/bed/chair/office{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/prison/parole/protective_custody) -"cly" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/monitoring/protective) -"clz" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"lom" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"loz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/parole/protective_custody) -"clC" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/disposal) -"clD" = ( -/obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/plating, -/area/prison/disposal) -"clE" = ( -/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"clG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "North High-Security Cellblock" }, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"clH" = ( +/turf/open/floor/prison/southwest, +/area/prison/security/checkpoint/highsec/n) +"loP" = ( +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"loY" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lpd" = ( +/obj/structure/bed, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"clI" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"clJ" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"clK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"lpf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"lpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"clL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"clN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"lpo" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/security/monitoring/lowsec/ne) +"lpt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"lpu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"clO" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/hanger/research) +"lpL" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"lpU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"clP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"lqe" = ( +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/north) +"lqf" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"lqi" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"lqj" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/south) +"lqo" = ( +/turf/open/floor/prison/yellow/northeast, +/area/prison/cellblock/mediumsec/east) +"lqp" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/disposal) -"clQ" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"lqK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/south) -"clS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/bright_clean_marked, +/area/prison/medbay/foyer) +"lrm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/prison/blue, +/area/prison/command/secretary_office) +"lrM" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"lsK" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/prison/research/secret/testing) +"ltf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"ltP" = ( +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"luc" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/security/checkpoint/highsec_medsec) -"clT" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/checkpoint/highsec_medsec) -"clU" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/freezerfloor, +/area/prison/pirate) +"luk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ +/obj/effect/decal/siding/wood_siding, +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"luQ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/blue/northeast, +/area/prison/command/secretary_office) +"lvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/north, +/area/prison/hallway/staff) +"lvi" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "red" + pixel_x = -4 }, -/area/prison/cellblock/highsec/south/south) -"clV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"lvH" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/nw) +"lvR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/cellblock/highsec/south/south) -"clW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - dir = 2; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"lwk" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"clY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"lwD" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/mediumsec/north) -"cmc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"lwH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/highsec/south/south) -"cmd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"lxc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/security/monitoring/protective) -"cme" = ( -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"lxq" = ( +/obj/structure/disposaloutlet{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"lxy" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/pirate) -"cmf" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/pirate) -"cmg" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"lxA" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"lxE" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"lxM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/pirate) -"cmh" = ( -/turf/open/floor/prison, -/area/prison/security/monitoring/protective) -"cmi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/darkred2/north, +/area/prison/security/briefing) +"lyf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/security/monitoring/protective) -"cmj" = ( +/turf/open/floor/prison/blue, +/area/prison/command/secretary_office) +"lyp" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"lyq" = ( +/turf/open/floor/prison/green, +/area/prison/hallway/central/west) +"lyx" = ( +/turf/open/floor/prison/red/north, +/area/prison/security/checkpoint/highsec/s) +"lyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"lzb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/prison/security/monitoring/protective) -"cmk" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"lzi" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/prison/research/secret/bioengineering) +"lzr" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"lzy" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/security/checkpoint/highsec_medsec) -"cml" = ( +/area/prison/hallway/central/east) +"lzz" = ( +/turf/open/shuttle/elevator, +/area/prison/hallway/central/west) +"lzI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"lzM" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"lzQ" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"lAa" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper/prison_station/inmate_handbook, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"lAe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Protective Custody Monitoring" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/security/monitoring/protective) -"cmm" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"lAp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/protective) -"cmn" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"lAw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"cmo" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/protective) -"cmp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/protective) -"cmq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/north) -"cmr" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"lAC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/south) +"lBk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"cms" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cmt" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/lowsec/ne) +"lBq" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cmu" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"lBH" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"cmv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Disposals" - }, -/turf/open/floor/plating, -/area/prison/disposal) -"cmw" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/west) +"lBO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/briefing) -"cmx" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/cellblock/protective) -"cmz" = ( -/turf/closed/wall/prison, -/area/prison/parole/protective_custody) -"cmA" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/pepper, -/obj/item/reagent_container/spray/pepper, -/turf/open/floor/prison, -/area/prison/security/armory/riot) -"cmC" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison, -/area/prison/security/armory/lethal) -"cmF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec_medsec) -"cmG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec_medsec) -"cmH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"lBP" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/north) +"lCd" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/east) +"lCe" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/hangar) +"lCq" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/checkpoint/highsec_medsec) -"cmI" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/shuttle/black, +/area/prison/pirate) +"lCF" = ( /obj/structure/pipes/vents/scrubber{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/chapel/west, +/area/prison/chapel) +"lCI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"cmK" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"lCJ" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay) +"lCQ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/organic/grass, +/area/prison/residential/north) +"lDc" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/ne) +"lDJ" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/area/prison/cellblock/highsec/south/south) -"cmL" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/asteroid, +/area/prison/residential/south) +"lDV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"cmM" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/west) +"lEC" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"cmN" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"lEM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/security/monitoring/protective) -"cmO" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/chemistry) +"lEN" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"lFy" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Phone Booth" }, -/area/prison/security/monitoring/protective) -"cmP" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"lFE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" - }, -/area/prison/security/monitoring/protective) -"cmQ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/north/south) +"lGh" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"lGl" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"lGE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/security/monitoring/protective) -"cmR" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"lGL" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/visitation) +"lHc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"lHi" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/prison/cellblock/protective) -"cmS" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"lHD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/pirate) -"cmT" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/hanger/main) +"lHR" = ( +/obj/structure/platform, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"lIs" = ( +/turf/closed/wall/prison, +/area/prison/hallway/central/west) +"lJd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "Staff-Research Maintenance" }, -/area/prison/pirate) -"cmU" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"lJo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison, +/area/prison/telecomms) +"lJA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/protective) -"cmV" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/checkpoint/highsec_medsec) -"cmW" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"lJD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/cellblock/protective) -"cmX" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lJU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/south) -"cmY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/prison/disposal) -"cmZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/prison/disposal) -"cna" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/disposal) -"cnb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/prison/disposal) -"cnc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Execution Chamber" +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"lKj" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/color/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"cnd" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"lKt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/turf/open/floor/prison/rampbottom, +/area/prison/residential/central) +"lKG" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/prison/hallway/engineering) +"lKO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 2; - name = "Execution Chamber" - }, -/turf/open/floor/prison, -/area/prison/execution) -"cne" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" + name = "Garden" }, -/area/prison/security/briefing) -"cnf" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"lLa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/armory/riot) +"lLz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/briefing) -"cnh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"lLS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/prison/security/briefing) -"cni" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"lLY" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/cellblock/protective) -"cnj" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/briefing) -"cnk" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/armory/riot) -"cnl" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/armory/lethal) -"cnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"lMb" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/green, +/area/prison/quarters/staff) +"lMi" = ( +/turf/open/floor/prison/yellow/southeast, +/area/prison/cellblock/mediumsec/east) +"lMt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/security/checkpoint/highsec_medsec) -"cnn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/sw) +"lMR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"lNr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/security/checkpoint/highsec_medsec) -"cnp" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"lNw" = ( +/obj/item/trash/cheesie, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"lNL" = ( +/turf/open/floor/delivery, +/area/prison/execution) +"lNO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/highsec_medsec) -"cnq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"cnr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"lNX" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"lOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/east, +/area/prison/monorail/west) +"lOm" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"cnt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"lOy" = ( +/obj/structure/sink{ dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/north) -"cnu" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/disposal) -"cnv" = ( -/obj/structure/machinery/conveyor{ - dir = 5 - }, -/turf/open/floor/plating, -/area/prison/disposal) -"cnw" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/plating, -/area/prison/disposal) -"cnx" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating, -/area/prison/disposal) -"cny" = ( -/obj/structure/machinery/conveyor{ - dir = 8 + pixel_x = -11 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/mirror{ + pixel_x = -26 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cnz" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/obj/item/paper/crumpled/bloody, +/turf/open/floor/freezerfloor, +/area/prison/quarters/research) +"lOz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/disposal) -"cnA" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Cell Access" }, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/disposal) -"cnB" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/space) -"cnC" = ( -/obj/structure/monorail{ - dir = 6 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"lOO" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/vip) +"lOT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/space, -/area/space) -"cnD" = ( -/obj/structure/monorail{ - dir = 9 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lPl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/space, -/area/space) -"cnE" = ( -/obj/structure/disposaloutlet{ - dir = 8 +/turf/open/floor/prison/greencorner/west, +/area/prison/hallway/staff) +"lPq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/up{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cnF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/prison, -/area/prison/disposal) -"cnI" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, +/turf/open/floor/prison/yellow/northwest, +/area/prison/security/checkpoint/medsec) +"lPD" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/hallway/east) +"lQv" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"lQK" = ( +/obj/item/trash/c_tube, /turf/open/floor/plating, -/area/prison/pirate) -"cnJ" = ( -/obj/structure/disposalpipe/segment{ +/area/prison/maintenance/residential/access/south) +"lQO" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"lRn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/briefing) +"lRD" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"lRJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/plating, -/area/prison/disposal) -"cnK" = ( -/obj/structure/pipes/vents/scrubber{ +/area/prison/maintenance/residential/nw) +"lRP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/visitation) +"lTm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"lUq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/execution) -"cnN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"lUF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/north) +"lUM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/highsec/s) +"lUN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"cnO" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/medbay/foyer) +"lVN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"lVO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "S" }, -/turf/open/floor/prison, -/area/prison/execution) -"cnP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"lVR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"lWa" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding8" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"lWl" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"cnQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"lWo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/hangar) +"lWu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/execution) -"cnR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"lWz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/cellblock/mediumsec/north) -"cnS" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"lWH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"lWT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/execution) -"cnT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"lXx" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"lXy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "emergency lockdown"; + use_power = 0 }, -/area/prison/execution) -"cnU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/protective) +"lXO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/ne) +"lXT" = ( +/obj/structure/sink{ + pixel_y = 15 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/security/briefing) -"cnV" = ( -/obj/structure/bed, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"lYa" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/prison/pirate) -"cnX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/briefing) -"cnY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"lYw" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/yard) +"lYB" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"lYP" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/briefing) -"cnZ" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"lYU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/briefing) -"coa" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"lZd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/security/briefing) -"cod" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/protective) -"coi" = ( -/obj/structure/toilet{ - dir = 4 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"lZq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/maxsec) +"lZI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkpurplecorners2/west, +/area/prison/research/secret) +"lZL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/ne) +"mai" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/cellblock/mediumsec/east) -"coj" = ( -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"mar" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/prison/security/briefing) -"cok" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"maQ" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/east) -"col" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/visitation) +"mbb" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/medbay/foyer) +"mbe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"mbk" = ( +/obj/structure/lz_sign/prison_sign, +/turf/open/floor/plating, +/area/prison/hanger/main) +"mbo" = ( /obj/structure/sink{ dir = 4; - pixel_x = 12 + pixel_x = 11 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"mbG" = ( +/obj/structure/largecrate/random, +/obj/item/toy/deck/uno{ + pixel_y = 12 }, -/area/prison/cellblock/mediumsec/east) -"com" = ( -/obj/structure/machinery/conveyor, /turf/open/floor/plating, -/area/prison/disposal) -"con" = ( -/obj/structure/monorail{ - dir = 5 - }, -/turf/open/space, -/area/space) -"coo" = ( -/obj/structure/monorail{ - dir = 10 - }, -/turf/open/space, -/area/space) -"cop" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/prison/maintenance/residential/access/south) +"mbY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/disposal) -"coq" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/weapon/gun/rifle/mar40, -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"mcb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/pirate) -"cor" = ( -/obj/item/ammo_magazine/rifle/mar40, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"mcL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"mcZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/north) +"mdb" = ( +/obj/structure/machinery/light, +/obj/structure/platform{ + dir = 8 }, -/area/prison/pirate) -"cos" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"mde" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"mdg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/disposal) -"cot" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security) +"mdE" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"mdH" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/prison/disposal) -"cou" = ( -/turf/open/floor/prison, -/area/prison/disposal) -"cov" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating, -/area/prison/disposal) -"cow" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/prison/disposal) -"cox" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/maintenance/residential/nw) +"mdM" = ( +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/cellblock/lowsec/se) +"mdP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/execution) -"coy" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/north/north) +"mdT" = ( +/obj/structure/sink{ dir = 1; - icon_state = "red" + pixel_y = -10 }, -/area/prison/cellblock/highsec/south/south) -"coz" = ( -/turf/open/floor/prison{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/south) -"coA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"med" = ( +/turf/closed/shuttle/elevator/freight, +/area/prison/hallway/central/west) +"mew" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/north) +"meB" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/darkred2, +/area/prison/medbay/foyer) +"meK" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"meS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"mfg" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/north/south) +"mfy" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"mfz" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"coB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"mfK" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/mediumsec/east) +"mfQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/execution) -"coC" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"mfV" = ( +/obj/structure/toilet{ dir = 1 }, -/obj/item/device/radio/electropack, -/obj/item/clothing/head/helmet, -/turf/open/floor/prison, -/area/prison/execution) -"coD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/sw) +"mfW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"coF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Northeast Low-Security Cellblock" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/ne) +"mga" = ( +/obj/structure/machinery/door/airlock/highsecurity{ + name = "Solitary Confinement" }, -/area/prison/security/briefing) -"coG" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/south) +"mgp" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"mgG" = ( +/obj/structure/pipes/standard/manifold/visible{ + layer = 2.3 }, -/area/prison/security/briefing) -"coH" = ( -/obj/structure/shuttle/engine/heater, -/turf/closed/wall/almayer, -/area/prison/pirate) -"coJ" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/medbay) +"mgI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/protective) +"mgZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret) +"mhl" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"mhw" = ( +/turf/open/floor/prison/redfull, +/area/prison/hallway/entrance) +"mid" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"coK" = ( -/turf/open/floor/prison{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Bioengineering" + }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"miM" = ( +/obj/structure/machinery/smartfridge/secure, +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research/secret/testing) +"miP" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/highsec) +"miT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"mjg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"mjv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/ne) +"mjI" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/wood, +/area/prison/quarters/research) +"mjP" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "yellow" + pixel_x = -4 }, -/area/prison/cellblock/mediumsec/east) -"coL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/sw) +"mjV" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"coM" = ( -/obj/structure/machinery/door/airlock/prison{ +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/vip) +"mkb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ density = 0; + dir = 2; icon_state = "door_open"; + name = "Toilet"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/freezerfloor, +/area/prison/security/head) +"mkg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"mkn" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/south) +"mkF" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/chapel) +"mkT" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"mlF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/cellblock/mediumsec/east) -"coN" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"coO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/darkred2/northwest, +/area/prison/cellblock/highsec/south/north) +"mlG" = ( +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/turf/open/floor/prison, -/area/prison/disposal) -"coP" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/execution) -"coQ" = ( +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/protective) +"mlM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"mma" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"mmg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/vip) +"mmj" = ( +/turf/open/floor/chapel, +/area/prison/chapel) +"mmk" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hangar_storage/main) +"mmr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"mmv" = ( +/turf/open/floor/prison/greencorner, +/area/prison/cellblock/lowsec/se) +"mmx" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/yellow/southwest, +/area/prison/security/checkpoint/medsec) +"mmA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"mmM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"mna" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/east) +"mnb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/vip) +"mnq" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/north) +"mnu" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"mnC" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"moe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"mom" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/red/northwest, +/area/prison/security/checkpoint/highsec/s) +"moz" = ( +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/cellblock/highsec/north/south) +"moE" = ( +/turf/open/floor/prison/bluefull, +/area/prison/parole/protective_custody) +"moJ" = ( +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"mpg" = ( +/obj/structure/closet/gmcloset, /turf/open/floor/plating, -/area/prison/disposal) -"coR" = ( +/area/prison/maintenance/residential/nw) +"mpi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/south) +"mpq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"mpr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"mpA" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"mpJ" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/disposal) -"coS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 }, -/area/prison/security/briefing) -"coT" = ( +/turf/open/shuttle/black, +/area/prison/pirate) +"mpS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"coU" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/chemistry) +"mpU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"mpV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"mpZ" = ( +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"mqr" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/red/north, +/area/prison/recreation/highsec/s) +"mqW" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/bed/chair{ + dir = 1 + }, /turf/open/floor/prison, -/area/prison/disposal) -"coV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/prison/cellblock/highsec/north/north) +"mrM" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/south/north) +"mrN" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"mrV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/disposal) -"coW" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"msn" = ( +/obj/item/handset, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/vip) +"msx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/protective) +"mtb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"mtm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"mtN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"mtT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Central Ring" }, -/area/prison/execution) -"coX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"muc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"muC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/red, +/area/prison/hallway/entrance) +"muK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door_control{ + id = "biological_testing_1"; + name = "Containment Shutter Control" + }, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/turf/open/floor/prison, -/area/prison/execution) -"coY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/prison, -/area/prison/execution) -"coZ" = ( -/obj/effect/landmark/good_item, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating, -/area/prison/pirate) -"cpa" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/prison/pirate) -"cpb" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 1 +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"mvi" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/southeast, +/area/prison/recreation/highsec/s) +"mvB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"mvC" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"mwi" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/plating/platebot, /area/prison/pirate) -"cpc" = ( -/obj/item/ammo_magazine/rifle/mar40, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 +"mwJ" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding10" }, -/turf/open/floor/plating, -/area/prison/pirate) -"cpd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/asteroid, +/area/prison/residential/south) +"mwL" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"mwY" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/sw) +"mxQ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Solitary Confinement"; + opacity = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/protective) +"myg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/execution) -"cpe" = ( -/obj/structure/machinery/door_control{ - id = "execution"; - name = "Remote Door Control"; - pixel_x = 24 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/medsec/central) +"myz" = ( +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 }, -/area/prison/execution) -"cpf" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/execution) -"cpg" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/security/briefing) -"cph" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = 8 }, -/area/prison/cellblock/highsec/south/south) -"cpi" = ( -/obj/structure/shuttle/engine/router{ +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"myQ" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/closed/wall/almayer, -/area/prison/pirate) -"cpj" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/prison/residential/central) +"myX" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/vip) +"myY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + icon_state = "exposed10-supply" + }, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"mzD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"mAb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"mAr" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/darkyellow2, +/area/prison/engineering/atmos) +"mAy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) -"cpl" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +"mAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellow2/west, +/area/prison/hangar_storage/main) +"mAT" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"cpm" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass, +/area/prison/residential/south) +"mBl" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/device/lightreplacer, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"mBr" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"cpp" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/protective) -"cpq" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cpr" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/east) -"cpt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"mBF" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cpu" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/door/poddoor{ - unacidable = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"mBR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cpv" = ( -/obj/structure/machinery/door_control{ - id = "disposals"; - name = "Disposals Shutter"; - pixel_x = -24 +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"mCP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"mDp" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"mDr" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hallway/central/west) +"mDG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cpw" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 6 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"mDV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cpx" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"mDZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/disposal) -"cpz" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/disposal) -"cpA" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"mEf" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"mEh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"mET" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/disposal) -"cpB" = ( -/obj/structure/pipes/standard/simple/hidden/yellow{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"mFh" = ( +/obj/item/frame/table/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"mFF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/disposal) -"cpC" = ( +/area/prison/hallway/central/south) +"mFL" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/execution) -"cpE" = ( -/obj/item/device/assembly/signaller{ - code = 2; - frequency = 1449 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/reagent_container/food/snacks/baguette, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"mFO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/bonegel, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"mGd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"mGz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/execution) -"cpF" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/south) +"mGO" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"mGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/execution) -"cpG" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/prison/pirate) -"cpH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cpI" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"mGW" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cpJ" = ( +/obj/structure/disposalpipe/segment, +/obj/item/paper/prison_station/nursery_rhyme, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"mHe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"mHh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/west) +"mHk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/medbay/foyer) +"mHD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/vip) +"mHH" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"mHY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/prison/cellblock/mediumsec/east) -"cpM" = ( -/obj/structure/machinery/disposal/deliveryChute{ - dir = 1 +/turf/open/floor/prison/darkpurple2/southeast, +/area/prison/research/secret) +"mIg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/prison/disposal) -"cpN" = ( -/obj/structure/machinery/conveyor_switch/oneway, -/turf/open/floor/plating, -/area/prison/disposal) -"cpO" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/vip) +"mII" = ( +/turf/open/floor/prison/blue/northwest, +/area/prison/cellblock/vip) +"mIN" = ( +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/se) +"mJh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cpP" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"mJn" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/prison/quarters/research) +"mJC" = ( +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"mJI" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"mJR" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/prison/research/secret/containment) +"mJS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"mJU" = ( +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"mJW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"mKs" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding9" + }, +/turf/open/floor/asteroid, +/area/prison/residential/north) +"mKu" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/monitoring/lowsec/sw) +"mKw" = ( /obj/structure/pipes/vents/scrubber{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating, -/area/prison/disposal) -"cpQ" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison, -/area/prison/disposal) -"cpR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison, -/area/prison/disposal) -"cpS" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison, -/area/prison/disposal) -"cpT" = ( +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"mKA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"mKF" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"mKN" = ( /obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/prison/disposal) -"cpU" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/mediumsec/east) -"cpV" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/n) +"mLF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cpW" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"mLS" = ( /obj/structure/sink{ dir = 4; - pixel_x = 11 + pixel_x = 12 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"mMk" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/prison/hanger/research) +"mMI" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison, +/area/prison/security/head) +"mMO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cpX" = ( -/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"cpY" = ( +/area/prison/maintenance/residential/sw) +"mNi" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"mNJ" = ( +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"mNU" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"cpZ" = ( -/obj/item/stack/cable_coil/cut{ - amount = 1; - icon_state = "coil1"; - name = "cable piece" +/area/prison/maintenance/staff_research) +"mOa" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/prison/bluefull, +/area/prison/residential/central) +"mOc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/storage/medsec) +"mOi" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security/checkpoint/maxsec) +"mOq" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/se) +"mOs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"mOL" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/prison/residential/north) +"mOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"mPn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cqb" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/turf/open/floor/prison/red/southeast, +/area/prison/security/checkpoint/highsec/s) +"mPy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/cellblock/mediumsec/east) -"cqc" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/mediumsec/east) -"cqd" = ( -/obj/structure/window/framed/prison/cell, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"cqf" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/area/prison/research/secret/bioengineering) +"mPV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"cqg" = ( -/obj/structure/pipes/vents/scrubber, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/highsec/n) +"mPY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cqh" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/mediumsec/east) -"cqk" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Operating Theatre" }, -/area/prison/cellblock/mediumsec/north) -"cql" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"mQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"cqo" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"mQE" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"mQY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"mRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/mediumsec/east) -"cqp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/medsec) +"mRw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/medsec) +"mRx" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/prison/security/checkpoint/vip) +"mRz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"cqq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/redcorner/north, +/area/prison/recreation/highsec/s) +"mRB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/cellblock/mediumsec/east) -"cqr" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/prison/disposal) -"cqs" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/disposal) -"cqt" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/yellow, -/turf/open/floor/plating, -/area/prison/disposal) -"cqv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"cqw" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/hanger/research) +"mRK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"mRQ" = ( +/obj/structure/closet/wardrobe/orange, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"mSe" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"cqx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/closet/walllocker/emerglocker/west, +/turf/open/floor/carpet, +/area/prison/residential/south) +"mSf" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/armory/lethal) +"mSt" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"mSE" = ( /obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"mSI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"mTo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"mTs" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"mTZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/hanger/main) +"mUh" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/prison/hanger/main) +"mUB" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/pirate) -"cqz" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/red/northeast, +/area/prison/security/checkpoint/highsec/s) +"mUC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Garden"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"mUJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cqA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, +/turf/open/shuttle/black, /area/prison/pirate) -"cqD" = ( -/obj/structure/pipes/vents/scrubber{ +"mUK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cqF" = ( -/obj/structure/closet/walllocker/emerglocker/east, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/s) +"mVY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/highsec/n) +"mWb" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/pirate) -"cqI" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/se) +"mWc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"mWm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"cqJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"mWt" = ( +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/n) +"mWD" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/maxsec/north) +"mWT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/west) +"mXe" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"cqK" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/mediumsec/west) -"cqL" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"mXi" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"mXk" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/chemistry) +"mXE" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/nw) +"mXL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"mYg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"cqM" = ( -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cqN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cqO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"mYt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/mediumsec/east) -"cqP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/medsec/central) +"mYF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"cqS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/kitchen, +/area/prison/research) +"mZn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"mZq" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"mZt" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) -"cqT" = ( +"mZB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"mZW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/south) +"nak" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"nay" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"nbv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"nbD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cqV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/prison/disposal) -"cqW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"nco" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/freezerfloor, +/area/prison/security/head) +"ncs" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/s) +"ncG" = ( +/obj/structure/window_frame/prison, +/turf/open/floor/plating, /area/prison/cellblock/mediumsec/east) -"cqX" = ( -/obj/structure/pipes/vents/pump{ +"ncY" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/mediumsec/east) -"cqY" = ( +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/south) +"ndf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret) +"ndr" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/vip) +"ned" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/armory/riot) +"neJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"neW" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/prison/engineering) +"nft" = ( +/obj/structure/closet/l3closet, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/reagent_container/food/snacks/baguette, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"nfz" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/sw) +"nfR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"ngl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/head) +"ngD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"nhj" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"nhw" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "yellow" + network = list("PRISON") }, -/area/prison/cellblock/mediumsec/east) -"cra" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"nhD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"crb" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/highsec/s) +"nic" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/engineering) +"niy" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"niE" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/north/north) +"niF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"crc" = ( -/obj/effect/decal/cleanable/blood, -/turf/closed/wall/prison, -/area/prison/cellblock/mediumsec/east) -"crd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"niG" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"njm" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research/secret/testing) +"njw" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/box/donkpockets, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/prison/pirate) -"cre" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/structure/machinery/microwave, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/pirate) -"crf" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"njO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/weapon/gun/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"nkS" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/prison/pirate) -"crg" = ( -/obj/structure/closet, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hallway/central/west) +"nkT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"nli" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/pirate) -"crh" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/cell_stripe/west, +/area/prison/monorail/east) +"nlQ" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/briefing) +"nlW" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/carpet, -/area/prison/pirate) -"cri" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/carpet, -/area/prison/pirate) -"crj" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating, -/area/prison/pirate) -"crk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "Rocinante Crew Quarters" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"nmn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"crl" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"nmB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 }, -/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"nmF" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/shuttle, -/area/prison/pirate) -"crm" = ( -/obj/structure/machinery/computer/communications{ - icon_state = "commb"; - stat = 1 +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/vip) +"nmI" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Research Landing Zone" }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/prison/hanger/research) +"nmR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"nnj" = ( /obj/structure/surface/table/reinforced, -/turf/open/shuttle, -/area/prison/pirate) -"crn" = ( -/obj/structure/machinery/computer/communications{ - icon_state = "commb"; - stat = 1 +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"nno" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/vip) +"nnC" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"noe" = ( /obj/structure/surface/table/reinforced, -/turf/open/shuttle, -/area/prison/pirate) -"cro" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper/prison_station/pirate_note, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/highsec) +"noj" = ( +/obj/structure/pipes/vents/scrubber, /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"noB" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/south) +"noT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/southeast, +/area/prison/cellblock/protective) +"noZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/prison/security) +"npj" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"npL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle, -/area/prison/pirate) -"crp" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"npU" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"nqj" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"nqt" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "Rocinante Storage/Medical" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"crq" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/plating, -/area/prison/pirate) -"crr" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"nqw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"nqN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Briefing" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/west) -"cru" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/briefing) +"nrb" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"nrm" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"nrq" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"crv" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"nrx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/card/id/visa, +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"nrA" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/vip) +"nrD" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"nrH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"crw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"nrI" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/cellblock/mediumsec/west) -"crx" = ( +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"nsg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"nso" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"nsx" = ( +/turf/closed/wall/prison, +/area/prison/kitchen) +"nsC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/mediumsec/west) -"cry" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/briefing) +"nsN" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"crz" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"nsP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"nsS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/cellblock/mediumsec/east) -"crB" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research/secret/bioengineering) +"ntc" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"nte" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"nth" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/east) -"crD" = ( +"ntm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/structure/sign/safety/nonpress{ + pixel_x = 30 + }, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/testing) +"ntV" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"nuf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"num" = ( +/obj/item/paper/prison_station/monkey_note, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret/containment) +"nus" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"nuw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/north) +"nva" = ( +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/se) +"nvl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/east) -"crG" = ( +"nvu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/highsec) +"nwA" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"nwD" = ( +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/north) +"nwT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/pirate) -"crH" = ( -/obj/structure/bed, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/north/north) +"nwW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/east) +"nxt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/pirate) -"crI" = ( +/turf/open/organic/grass, +/area/prison/residential/central) +"nxx" = ( /obj/structure/bed, -/turf/open/floor/carpet, -/area/prison/pirate) -"crJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/prison/pirate) -"crK" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/ne) +"nxP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen, +/area/prison/research) +"nxU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/highsec/south/south) -"crL" = ( -/obj/structure/machinery/door/airlock/highsecurity{ - name = "Solitary Confinement" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/highsec/s) +"nyk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"crM" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/shuttle{ - icon_state = "floor7" +/area/prison/security/checkpoint/highsec_medsec) +"nyw" = ( +/obj/item/ammo_casing, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "pirate_cargo"; + name = "Rocinante Cargo Bay Door" }, +/turf/open/floor/delivery, /area/prison/pirate) -"crN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/shuttle{ - icon_state = "floor7" +"nyy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/pirate) -"crO" = ( +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"nyC" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"nyJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/northwest, +/area/prison/recreation/highsec/s) +"nzh" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"nzm" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 + }, +/turf/open/floor/plating, +/area/prison/engineering/atmos) +"nzF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/mediumsec/west) -"crP" = ( -/obj/item/device/radio, -/turf/open/floor/carpet, -/area/prison/pirate) -"crQ" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/turf/open/floor/carpet, -/area/prison/pirate) -"crR" = ( -/obj/item/weapon/gun/shotgun/merc, -/turf/open/floor/carpet, -/area/prison/pirate) -"crS" = ( -/obj/structure/machinery/door_control{ - id = "pirate_cargo"; - name = "Cargo Door Control"; - pixel_x = 24; - pixel_y = 5 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"nzU" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/shuttle, -/area/prison/pirate) -"crT" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/plating, -/area/prison/pirate) -"crU" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"nzZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/pirate) -"crV" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/plating, -/area/prison/pirate) -"crW" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"nAq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"crX" = ( -/obj/structure/toilet{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/chapel/north, +/area/prison/chapel) +"nAz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/telecomms) +"nAY" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"nBA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"nBE" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"nBZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Toilet" }, -/area/prison/cellblock/mediumsec/west) -"crY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/freezerfloor, +/area/prison/pirate) +"nCd" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/recreation/highsec/s) +"nCp" = ( +/turf/open/floor/prison/rampbottom, +/area/prison/residential/central) +"nCv" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"crZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/north) +"nCw" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/east) -"csa" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/prison/rampbottom, +/area/prison/yard) +"nCE" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/residential/central) +"nDg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"csc" = ( +/turf/open/floor/grass, +/area/prison/residential/south) +"nDR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"nEp" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"csd" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/hangar) +"nFu" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cse" = ( -/obj/structure/bed, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"nFy" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/highsec_medsec) +"nFz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/pirate) -"csf" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"nFO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"nGl" = ( +/obj/structure/pipes/standard/tank/air{ + dir = 4 }, +/turf/open/floor/plating/platebot, /area/prison/pirate) -"csh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"nGz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/prison/pirate) -"csi" = ( -/obj/structure/closet/walllocker/emerglocker/east, -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/prison/pirate) -"csk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"nGA" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"csl" = ( -/turf/closed/wall/almayer/outer, -/area/prison/pirate) -"csm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"nGB" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkred2, +/area/prison/medbay/foyer) +"nGD" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/prison/medbay) +"nGE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/pirate) -"csn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"nGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/north) +"nGR" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/organic/grass, +/area/prison/residential/south) +"nGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/pirate) -"cso" = ( +/turf/open/floor/prison/greencorner/east, +/area/prison/cellblock/lowsec/sw) +"nHi" = ( /obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"nHA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/prison/pirate) -"csp" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Rocinante Bridge" +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/north) +"nHF" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/rampbottom/east, +/area/prison/hanger/main) +"nHP" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"nIb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"nId" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/maxsec) +"nIk" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2/north, +/area/prison/hanger/main) +"nIJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"nIP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle, -/area/prison/pirate) -"csq" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/ne) +"nJf" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/carpet, -/area/prison/pirate) -"csr" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/prison/pirate) -"css" = ( -/turf/open/floor/carpet, -/area/prison/pirate) -"cst" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/good_item, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle, -/area/prison/pirate) -"csu" = ( +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"nJj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "Rocinante Bridge" +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/turf/open/shuttle, -/area/prison/pirate) -"csv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"nJm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, +/turf/open/floor/prison, +/area/prison/telecomms) +"nJw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating, -/area/prison/pirate) -"csw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/prison/medbay/foyer) +"nJH" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering/atmos) +"nJJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/maxsec) +"nJY" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/east) +"nKa" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"nKg" = ( +/obj/structure/janitorialcart, /turf/open/floor/plating, -/area/prison/pirate) -"csx" = ( -/obj/structure/dispenser/phoron, -/turf/open/floor/plating, -/area/prison/pirate) -"csy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/west) -"csz" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/area/prison/maintenance/residential/sw) +"nKJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Research Dorms" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/quarters/research) +"nKY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"csA" = ( -/turf/open/floor/prison{ +/obj/structure/surface/table/reinforced{ dir = 8; - icon_state = "cell_stripe" + flipped = 1 }, -/area/prison/cellblock/mediumsec/west) -"csB" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"csD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"nLn" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"csE" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/chemistry) +"nLq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/testing) +"nLC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/west) -"csF" = ( -/obj/structure/window/framed/prison/reinforced, +/turf/closed/wall/prison, +/area/prison/library) +"nLD" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/security/monitoring/medsec/central) -"csG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/east) -"csH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/area/prison/maintenance/staff_research) +"nLH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/area/prison/cellblock/mediumsec/east) -"csJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/maxsec) +"nMv" = ( +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/nw) +"nMU" = ( +/obj/structure/machinery/door/airlock/prison{ density = 0; icon_state = "door_open"; - name = "Solitary Confinement"; opacity = 0 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"csL" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/south/south) +"nMW" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding6" }, -/area/prison/pirate) -"csM" = ( -/obj/structure/bed, +/turf/open/organic/grass, +/area/prison/residential/north) +"nNf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"nNy" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"nNE" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/pirate) -"csN" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/west) +"nNM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/prison/pirate) -"csO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/chapel/north, +/area/prison/chapel) +"nNS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay) +"nOf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/pirate) -"csP" = ( -/obj/structure/bed, -/obj/effect/landmark/survivor_spawner, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/pirate) -"csQ" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"nOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"nOW" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/defibrillator, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating, -/area/prison/pirate) -"csR" = ( -/obj/item/stack/sheet/metal, -/turf/open/space, -/area/space) -"csT" = ( -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"nPm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/pirate) -"csU" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "Rocinante Captain's Quarters" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"nPI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/shuttle, -/area/prison/pirate) -"csV" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/fire, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/north) +"nPL" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/rad, -/turf/open/floor/plating, -/area/prison/pirate) -"csW" = ( -/obj/structure/machinery/pipedispenser/disposal/orderable, +/obj/structure/curtain/open, +/turf/open/floor/prison/redfull, +/area/prison/cellblock/highsec/north/south) +"nPN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/prison/pirate) -"csX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +/area/prison/hallway/central/south) +"nQk" = ( +/obj/structure/bed/chair/comfy, /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"csZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/pirate) -"cta" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/pirate) -"ctb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"nQo" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/cellblock/mediumsec/west) -"ctc" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/west) -"ctd" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/vip) +"nQp" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/prison/security/checkpoint/maxsec) +"nQH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"nQQ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"cte" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"nQY" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"nRh" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/security/checkpoint/medsec) +"nRm" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/medsec/central) +"nRR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/research/secret/testing) +"nRS" = ( +/obj/structure/machinery/shower{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"nSp" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"nSE" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) -"ctf" = ( +"nSW" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"nTk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"nTE" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/protective) +"nUf" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/spacecash/c1000, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"nUC" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"ctg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/chapel/north, +/area/prison/chapel) +"nVe" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkred2, +/area/prison/visitation) +"nWj" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ctj" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"nWD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"ctl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/east) -"ctm" = ( -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"nWJ" = ( +/turf/open/floor/prison, /area/prison/cellblock/mediumsec/south) -"ctn" = ( +"nWY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"cto" = ( -/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/vip) +"nXa" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/south) -"ctp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/ne) +"nXE" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/organic/grass, +/area/prison/residential/south) +"nXH" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"ctq" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"ctr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"nXL" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"nXQ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"nXX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"cts" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"nYK" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/engineering) +"nYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/prison/security/monitoring/medsec/central) -"ctu" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"nYW" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"nZb" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"nZd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cty" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/plating, -/area/prison/pirate) -"ctz" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/plating, -/area/prison/pirate) -"ctA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"nZe" = ( /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"nZm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"ctB" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"nZD" = ( /obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"ctC" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1; - name = "Waste Air Injector" +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"nZX" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding8" }, -/turf/open/floor/plating, -/area/space) -"ctE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"oak" = ( +/obj/structure/machinery/computer/telecomms/traffic{ + req_one_access_txt = "19;200" }, -/turf/open/floor/prison{ +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"oan" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "yellow" + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/west) -"ctF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/blue/southeast, +/area/prison/security/checkpoint/vip) +"oar" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/sw) +"oaL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"oaN" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"oby" = ( +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/asteroid, +/area/prison/residential/central) +"ocK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/n) +"oda" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret) +"odj" = ( +/obj/structure/sink{ dir = 4; - icon_state = "yellow" + pixel_x = 11 }, -/area/prison/cellblock/mediumsec/west) -"ctG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 26 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/security/monitoring/medsec/central) -"ctH" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"odm" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"odp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"odw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/chapel/northeast, +/area/prison/chapel) +"odB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"oek" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret/containment) +"oez" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"oeJ" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2/north, +/area/prison/medbay/foyer) +"ofK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 10 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"ofM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/monitoring/medsec/central) -"ctI" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/security/checkpoint/maxsec) +"ofS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/monitoring/medsec/central) -"ctJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "Head of Security's Office" }, -/area/prison/cellblock/mediumsec/east) -"ctK" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/head) +"ogu" = ( +/obj/structure/surface/table, +/obj/item/book/codebook, +/turf/open/floor/wood, +/area/prison/quarters/research) +"ogF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating, +/area/prison/hallway/central/west) +"ogJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/item/frame/table, +/obj/item/stack/rods, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"ogN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue, +/area/prison/command/secretary_office) +"ohE" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/darkred2/west, +/area/prison/security) +"ohJ" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"ohO" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding6" + }, +/turf/open/floor/asteroid, +/area/prison/residential/south) +"ohU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"oio" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/pirate) -"ctL" = ( +/turf/open/floor/prison/blue/north, +/area/prison/storage/vip) +"oip" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Rocinante Storage/Medical" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"ctM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison, +/area/prison/storage/medsec) +"oiy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"ctO" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/hallway/entrance) +"oiz" = ( /obj/structure/closet/walllocker/emerglocker/north, /obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 4 @@ -41409,3255 +25905,4915 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/prison/pirate) -"ctP" = ( -/obj/structure/closet/walllocker/emerglocker/north, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"oiE" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"oiF" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/prison/hallway/engineering) +"ojb" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/ne) +"ojc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"ojU" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 + dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"ojX" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"oka" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"okk" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/cleaning) +"okR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/pirate) -"ctQ" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"ctR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/prison/cellblock/mediumsec/west) -"ctS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"okW" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/prison/security/monitoring/medsec/south) +"olf" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 }, -/area/prison/cellblock/mediumsec/south) -"ctT" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security) +"olw" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ctU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/east) +"olE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ctV" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"olF" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"olL" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"olO" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security) +"omQ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"omT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research/secret/bioengineering) +"omV" = ( +/obj/structure/bed/chair/office{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ctW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"ctX" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/nw) +"ons" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"onw" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/hanger/research) +"onA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ctY" = ( +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"ooa" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/prison/medbay) +"ooe" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) -"ctZ" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/prison{ - icon_state = "yellow" +"oog" = ( +/obj/structure/lattice, +/obj/structure/monorail, +/turf/open/space, +/area/space) +"oox" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cub" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/monitoring/medsec/central) -"cuc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"ooD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/monitoring/medsec/central) -"cud" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"ooE" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/central) -"cue" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ +/turf/open/organic/grass, +/area/prison/residential/south) +"ooH" = ( +/obj/structure/pipes/standard/simple/hidden/yellow, +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/hallway/engineering) +"opq" = ( +/obj/structure/machinery/shower{ dir = 8; - icon_state = "yellow" + pixel_x = -6 }, -/area/prison/cellblock/mediumsec/east) -"cug" = ( -/obj/structure/toilet{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"opC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"opD" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"opM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"opY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"oqj" = ( +/obj/structure/machinery/flasher_button{ + id = "yard_flashers"; + pixel_y = 24 }, -/area/prison/pirate) -"cuh" = ( +/turf/open/floor/prison/rampbottom/east, +/area/prison/yard) +"oqr" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/sw) +"oqA" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/highsec) +"oqB" = ( /obj/structure/sink{ pixel_y = 15 }, -/obj/structure/mirror{ - pixel_y = 28 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/prison/pirate) -"cui" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Toilet" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"oqU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"oro" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/prison/maintenance/hangar_barracks) +"orw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"orF" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/machinery/door/window/westright, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/south) +"orG" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec_highsec) +"oso" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/pirate) -"cuj" = ( -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/item/stack/rods, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"osx" = ( +/obj/structure/machinery/shower{ + dir = 8; + pixel_x = -6 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/rack, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"osS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/north/south) +"otb" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/prison/pirate) -"cul" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure/colony{ +/area/prison/engineering) +"otv" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/red, +/area/prison/recreation/highsec/s) +"oug" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "Rocinante Secondary Airlock" + name = "Visitation" }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/visitation) +"out" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/pirate) -"cum" = ( +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"ouy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"ouG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay) +"ovc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"ovf" = ( +/obj/effect/alien/weeds/node, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -32 }, -/area/prison/pirate) -"cun" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/mediumsec/south) -"cuo" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"ovH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"ovP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"owd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"owt" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkyellow2/north, +/area/prison/storage/vip) +"oxr" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/north) +"oxC" = ( +/obj/structure/surface/table/reinforced{ dir = 8; - icon_state = "yellow" + flipped = 1 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) -"cup" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"oxN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"oyx" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"oyz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cuq" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/north/south) +"oyD" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security) +"oyP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/storage/medsec) +"oyV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/protective) +"ozv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"ozP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"oAg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"oAm" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkredcorners2/west, +/area/prison/security/monitoring/lowsec/ne) +"oAs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/plating, +/area/prison/residential/central) +"oAQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Maximum-Security Panopticon" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"oAZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"oBb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"oBE" = ( +/obj/item/handset, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison, +/area/prison/recreation/medsec) +"oBG" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"oBY" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cur" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"oCR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/darkred2/west, +/area/prison/monorail/east) +"oCU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/northeast, +/area/prison/storage/vip) +"oDl" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cus" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"oDn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison, +/area/prison/residential/central) +"oDK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/cellblock/mediumsec/south) -"cut" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"oDL" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"oDY" = ( +/turf/open/floor/prison/floor_marked/west, +/area/prison/cellblock/protective) +"oEl" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/west) +"oEr" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/security/monitoring/protective) +"oEN" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/south) +"oFa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cuu" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"oFd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"oFh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Holding Cell 1" }, -/area/prison/cellblock/mediumsec/south) -"cuv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/plating, +/area/prison/holding/holding1) +"oFK" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"oGl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"oGz" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"oGH" = ( +/obj/structure/sink{ dir = 4; - icon_state = "yellow" + pixel_x = 11 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"oGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) -"cuw" = ( -/obj/structure/pipes/vents/pump{ +"oGW" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2, +/area/prison/telecomms) +"oHi" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/pirate) -"cuy" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"oHn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"oHr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"oHK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/red/east, +/area/prison/security/checkpoint/highsec/n) +"oHT" = ( +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"oHV" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding8" }, +/turf/open/floor/asteroid, +/area/prison/residential/central) +"oIf" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/north) -"cuz" = ( +"oIq" = ( +/obj/structure/surface/table, +/turf/open/floor/prison/bluefull, +/area/prison/residential/central) +"oIC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/protective) +"oIF" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"oIH" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"oIS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/whitepurplecorner/west, +/area/prison/research) +"oJc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"oJp" = ( /obj/structure/toilet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/north) +"oJq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"oJB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"cuA" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cuE" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/darkyellowcorners2/east, +/area/prison/hallway/engineering) +"oJV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"oKH" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/security/monitoring/medsec/central) -"cuF" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"oLc" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"oLB" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southwest, /area/prison/security/monitoring/medsec/central) -"cuI" = ( +"oLC" = ( /obj/structure/machinery/door/airlock/prison{ density = 0; icon_state = "door_open"; opacity = 0 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"oLV" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/prison/cellblock/highsec/south/south) -"cuJ" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/n) +"oLW" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/holding/holding1) +"oNn" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/hangar) +"oOE" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "Rocinante Engine Room" +/turf/open/floor/prison/damaged2/southwest, +/area/prison/storage/medsec) +"oOJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, /turf/open/floor/plating, -/area/prison/pirate) -"cuK" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/area/prison/maintenance/residential/ne) +"oOR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cuL" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/mirror{ + pixel_x = 26 }, -/area/prison/cellblock/mediumsec/south) -"cuM" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"oOZ" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"cuN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/south) -"cuO" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/sw) +"oPn" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/west) -"cuP" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"oPR" = ( +/obj/structure/machinery/shower{ dir = 8; - icon_state = "yellow" + pixel_x = -6 }, -/area/prison/cellblock/mediumsec/south) -"cuR" = ( -/obj/structure/window/framed/prison/cell, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cuS" = ( -/obj/structure/toilet{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"oPY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/protective) +"oQe" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"oQq" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cuT" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/vip) +"oQz" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"oQE" = ( /obj/structure/sink{ - dir = 4; - pixel_x = 12 + pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/prison/cellblock/mediumsec/south) -"cuU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"oRe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"oRs" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cuV" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"oRA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"oRE" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/prison/intake) +"oRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/rampbottom/north, +/area/prison/maintenance/hangar_barracks) +"oSe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + density = 0; + icon_state = "door_open"; + name = "Cell"; + opacity = 0 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"oSx" = ( +/turf/open/floor/prison/yellow/northeast, /area/prison/cellblock/mediumsec/south) -"cuZ" = ( +"oSS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret) +"oTm" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Medical Cell" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"oTp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"oTI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/prison/storage/highsec/n) +"oTS" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/ne) +"oUk" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"oUI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"oUJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"oUN" = ( +/turf/open/floor/prison/green/north, +/area/prison/hallway/staff) +"oUR" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"oUS" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/prison/recreation/staff) +"oVm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cvc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"oVx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) -"cvd" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"oVC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/mediumsec/south) -"cvf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research) +"oVJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Low-Security" }, -/area/prison/security/monitoring/medsec/central) -"cvh" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"oWd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/nw) +"oWs" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkred2" + pixel_x = 11 }, -/area/prison/security/monitoring/medsec/central) -"cvj" = ( -/obj/structure/monorail{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 26 }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cvk" = ( -/obj/structure/monorail{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"oWy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/space, -/area/space) -"cvl" = ( -/obj/structure/pipes/standard/tank/air{ +/turf/open/floor/prison/darkpurplecorners2, +/area/prison/research/secret/containment) +"oWz" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/prison/research/secret/testing) +"oWS" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hanger/main) +"oWU" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/prison/pirate) -"cvm" = ( -/obj/structure/pipes/standard/manifold/visible/cyan{ +/turf/open/organic/grass, +/area/prison/residential/south) +"oXt" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"oXv" = ( +/obj/structure/platform, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"oXw" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvn" = ( -/obj/structure/pipes/standard/simple/visible/universal{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"oXM" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/sw) +"oYh" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/chemistry) +"oYx" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/north/south) +"oYS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/closet/walllocker/emerglocker/north, -/turf/open/floor/plating, -/area/prison/pirate) -"cvo" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"oYT" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"oYW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec_highsec) +"oZf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"oZg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/s) +"oZi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/south) +"oZw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "Maximum-Security Wing" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"oZA" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, +/turf/open/floor/prison/blue, +/area/prison/security/checkpoint/vip) +"oZO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"oZP" = ( +/obj/structure/disposaloutlet, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/disposalpipe/up{ + dir = 8 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/maxsec/north) +"oZU" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security) +"pad" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"paf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvq" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/pirate) -"cvt" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"pap" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/cap/hidden{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"paq" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"pau" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/prison/pirate) -"cvu" = ( -/obj/structure/pipes/standard/manifold/visible/purple{ +/area/prison/cellblock/maxsec/south) +"paE" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvv" = ( -/obj/structure/pipes/standard/tank/carbon_dioxide{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"paS" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/prison/pirate) -"cvw" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"paY" = ( /obj/structure/sink{ - dir = 8; - pixel_x = -12 + pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/prison/cellblock/mediumsec/west) -"cvx" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"paZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Human Containment Pen" }, -/area/prison/security/monitoring/medsec/central) -"cvy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/soft/ferret, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"pbb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/vip) +"pbf" = ( +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"pbi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/monitoring/medsec/central) -"cvA" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"pbj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cvB" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret) +"pbl" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"pbr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"pbz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/yellowcorner/east, /area/prison/cellblock/mediumsec/south) -"cvD" = ( -/obj/structure/pipes/portables_connector{ - dir = 4 +"pbA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/prison/damaged3, +/area/prison/laundry) +"pbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"pcf" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"pcm" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/window/reinforced/toughened{ - dir = 1 - }, -/obj/structure/machinery/light/small{ +/obj/structure/platform{ dir = 8 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"pcF" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"pcI" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"pcP" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"pcU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Visitation" + }, /turf/open/floor/plating, -/area/prison/pirate) -"cvE" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/area/prison/visitation) +"pdf" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"pdk" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/binary/pump/high_power{ - dir = 1 +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/south) +"pdG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/structure/machinery/flasher_button{ + id = "suspended_WES"; + pixel_x = -24 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"pdO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Garden" }, -/area/prison/cellblock/mediumsec/east) -"cvH" = ( -/obj/structure/pipes/standard/manifold/visible/yellow{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"pdX" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/prison/research/secret/testing) +"pdY" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/meter, -/turf/open/floor/plating, -/area/prison/pirate) -"cvI" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"pdZ" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/pirate) -"cvJ" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 10 +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/protective) +"pej" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/spacecash/c500, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"pep" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"pew" = ( +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/testing) +"peF" = ( +/obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/plating, -/area/prison/pirate) -"cvL" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 6 +/area/prison/cellblock/mediumsec/east) +"peT" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/pirate) -"cvM" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay/surgery) +"pfg" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/medsec/central) +"pfh" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"pfk" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvN" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 4 +/turf/open/floor/prison, +/area/prison/security/checkpoint/maxsec) +"pfl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"pfF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/south) +"pgd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Maximum-Security Suspended Cellblock" }, -/obj/structure/pipes/binary/pump/high_power, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"pgf" = ( +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/ne) +"pgg" = ( +/obj/structure/machinery/autolathe/full, /turf/open/floor/plating, -/area/prison/pirate) -"cvO" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 - }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ +/area/prison/maintenance/residential/access/south) +"pgk" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"pgE" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"pgF" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"phh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security) +"phj" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvQ" = ( -/obj/structure/pipes/portables_connector{ - dir = 4 +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"phr" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"phZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"pib" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Morgue" }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ - dir = 4 +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"piL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvR" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"piO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cvS" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/portables_connector{ +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"pjx" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvT" = ( -/obj/structure/pipes/standard/manifold/visible/yellow{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"pjH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/pirate) -"cvV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"pjQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"pkF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"pkO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Toilet" }, -/area/prison/cellblock/mediumsec/south) -"cvW" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/nw) +"pkV" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/organic/grass, +/area/prison/residential/south) +"plg" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"plV" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/telecomms) +"plX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cvX" = ( -/obj/structure/pipes/binary/circulator{ - anchored = 1; - dir = 1 +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/checkpoint/highsec_medsec) +"pmb" = ( +/obj/structure/machinery/telecomms/bus, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"pmZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/prison/pirate) -"cvY" = ( -/obj/structure/machinery/power/generator{ - anchored = 1; - dir = 4; - icon_state = "teg-broken" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes, -/obj/structure/lattice, +/turf/open/floor/prison/yellow/north, +/area/prison/security/checkpoint/medsec) +"pnt" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"pnT" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, /turf/open/floor/plating, -/area/prison/pirate) -"cvZ" = ( -/obj/structure/pipes/binary/circulator{ - anchored = 1 +/area/prison/cellblock/mediumsec/west) +"poc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/effect/decal/warning_stripes, -/obj/structure/lattice, -/turf/open/floor/plating, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"poK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"poN" = ( +/turf/open/shuttle/black, /area/prison/pirate) -"cwa" = ( -/obj/structure/pipes/vents/scrubber{ +"pph" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/box/lights, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"ppz" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwb" = ( -/obj/structure/pipes/standard/manifold/visible/yellow{ - dir = 8 +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/north) +"ppM" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwc" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"ppT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/east) +"pqz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/south/north) +"prb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwd" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/west) -"cwg" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"pru" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"prz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"prG" = ( +/obj/item/ammo_casing, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"prN" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwh" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 9 +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/nw) +"prQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/lowsec/sw) +"prU" = ( +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwj" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 5 +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"psi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"psl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"psm" = ( +/turf/open/floor/prison/greencorner, +/area/prison/cellblock/lowsec/nw) +"pss" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cwl" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 10 +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"psU" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 2; + name = "Civilian Residences Admin" }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating, -/area/prison/pirate) -"cwm" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/residential/central) +"ptn" = ( +/obj/item/device/radio/headset, +/turf/open/floor/prison, +/area/prison/telecomms) +"ptz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwn" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 9 +/turf/open/floor/prison/darkpurple2/west, +/area/prison/research/secret) +"ptS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwp" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 5 +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"ptU" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"pur" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bloodsoup, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"puK" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/pirate) -"cwq" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/mediumsec/west) -"cwr" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/area/prison/library) +"pvp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"pvx" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2, +/area/prison/intake) +"pvD" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"pvE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, /area/prison/cellblock/mediumsec/west) -"cws" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +"pwg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cwt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/red/northeast, +/area/prison/cellblock/highsec/south/south) +"pwj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/siding{ + icon_state = "siding8" }, -/area/prison/cellblock/mediumsec/south) -"cwu" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"pww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cwv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/prison/red/southwest, +/area/prison/cellblock/highsec/south/south) +"pwC" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/maxsec) +"pwD" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/chapel/north, +/area/prison/chapel) +"pwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"pwQ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"cwx" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 6 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"pxv" = ( +/obj/item/handset, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"pxK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Monorail Station West" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"pxS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwy" = ( -/obj/structure/pipes/standard/manifold/visible/green{ - dir = 1 +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/vip) +"pxT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwz" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/manifold/visible/green{ - dir = 1 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"pxZ" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"pyl" = ( +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellow" + health = 80 }, -/area/prison/cellblock/mediumsec/south) -"cwB" = ( -/obj/structure/pipes/binary/pump{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/prison/research) +"pym" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Intake Processing" }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating, -/area/prison/pirate) -"cwD" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating, -/area/prison/pirate) -"cwE" = ( -/obj/structure/pipes/binary/pump{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"pyO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"pza" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"pzE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"pzJ" = ( /turf/open/floor/plating, -/area/prison/pirate) -"cwF" = ( -/obj/structure/pipes/standard/simple/insulated{ - dir = 10 +/area/prison/holding/holding1) +"pzO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"pAg" = ( +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/east) +"pAh" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cwG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"pAp" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"cwJ" = ( +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/protective) +"pAu" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/s) +"pAv" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"pAA" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/north) +"pAK" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"pAP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay) +"pBa" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/rampbottom/north, +/area/prison/cellblock/protective) +"pBP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cwK" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"pBR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/prison{ +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/vip) +"pCw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"pCz" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/nw) +"pCB" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/telecomms) +"pCN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/lowsec/ne) +"pDj" = ( +/obj/structure/sink{ dir = 8; - icon_state = "yellowcorner" + pixel_x = -12 }, -/area/prison/cellblock/mediumsec/south) -"cwL" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"cwM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"pDH" = ( +/obj/item/stack/cable_coil/cut{ + amount = 1; + icon_state = "coil1"; + name = "cable piece" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"cwO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/stack/rods, +/obj/item/ammo_casing, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"pDQ" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"pDX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"pEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"pEv" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/no_raisin, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"pEw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/cellblock/mediumsec/south) -"cwQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"pEO" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/reinforced{ +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"pEW" = ( +/obj/structure/toilet{ dir = 8; - flipped = 1 + pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/south) +"pFj" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/protective) +"pFm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"pFz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Riot Armory" }, -/area/prison/cellblock/mediumsec/south) -"cwT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/armory/riot) +"pFV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"cwU" = ( -/obj/structure/shuttle/diagonal{ - dir = 4; - icon_state = "diagonalWall3" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/medsec) +"pFW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"pGe" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/space, -/area/space) -"cwV" = ( -/obj/structure/pipes/standard/tank/phoron{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/prison/recreation/medsec) +"pGq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/darkpurple2/north, +/area/prison/hanger/research) +"pGD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"pGL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/armory/riot) +"pGU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Medium-Security Storage" }, -/area/prison/pirate) -"cwX" = ( -/obj/structure/pipes/standard/simple/insulated, -/turf/open/floor/plating, -/area/prison/pirate) -"cwY" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 1; - unacidable = 1; - unslashable = 1 +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"pGV" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding1) +"pGX" = ( +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"pGY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/pirate) -"cxa" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/cellblock/mediumsec/south) -"cxc" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/prison/hallway/east) +"pHh" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/green/southwest, +/area/prison/monorail/west) +"pHt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cxd" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkbrown2/west, +/area/prison/hallway/east) +"pHP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/cellblock/mediumsec/south) -"cxg" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/pirate) -"cxi" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/pipes/standard/simple/insulated, -/turf/open/floor/plating, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"pHR" = ( +/obj/item/ammo_casing, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "pirate_cargo"; + name = "Rocinante Cargo Bay Door" + }, +/turf/open/floor/delivery, /area/prison/pirate) -"cxk" = ( -/obj/structure/machinery/door/airlock/highsecurity{ - name = "Solitary Confinement" +"pHT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"pHW" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cxl" = ( -/obj/structure/shuttle/engine/heater, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/pirate) -"cxn" = ( -/obj/structure/shuttle/engine/heater, -/obj/effect/decal/warning_stripes, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"pIf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/blue, +/area/prison/cellblock/protective) +"pIp" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/cap/visible{ - dir = 1 +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"pIv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating, -/area/prison/pirate) -"cxq" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"cxr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/prison/maintenance/residential/nw) +"pJr" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"pJT" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/cellblock/mediumsec/east) -"cxu" = ( -/obj/structure/toilet{ +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"pJZ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison, +/area/prison/execution) +"pKy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/girder/reinforced, +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"pKz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/FixOVein, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/tool/surgery/cautery, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"pKF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/prison/maintenance/residential/se) +"pLf" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cxx" = ( -/obj/structure/shuttle/engine/router{ - dir = 1 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"pLt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/prison/pirate) -"cxz" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/space, -/area/space) -"cxA" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxB" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxC" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"cxD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"pLT" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cxE" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxF" = ( -/turf/open/floor/prison{ +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"cxG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" + network = list("PRISON") }, -/area/prison/cellblock/mediumsec/south) -"cxI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxJ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/chapel, +/area/prison/chapel) +"pNa" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/south) +"pNb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"pNe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/east) +"pNh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"pNi" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cxO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"pNr" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/cellblock/mediumsec/south) -"cxP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"pNN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"cxT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/east) +"pNQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"cxU" = ( +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/west) +"pOa" = ( +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security/checkpoint/vip) +"pOi" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"pOm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/central) +"pOC" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/south) -"cxV" = ( +"pOF" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"pOI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"pOQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"cxX" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/south) -"cya" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/highsec/n) +"pOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cyb" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/bed/chair{ +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"cyc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"pPd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/item/shard, +/obj/item/circuitboard/airlock, +/obj/item/stack/cable_coil/cut{ + amount = 1; + icon_state = "coil1"; + name = "cable piece" }, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/research/secret/testing) +"pPf" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/prison/research/secret/testing) +"pPq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/whitegreen, +/area/prison/medbay/surgery) +"pPB" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hallway/central/west) +"pPL" = ( +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) -"cyd" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/bed/chair{ - dir = 8 +"pQn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"pQs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/mediumsec/south) -"cyf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"pQF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"pQS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/siding{ + icon_state = "siding2" }, -/area/prison/cellblock/mediumsec/south) -"cyj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"pRe" = ( +/obj/structure/machinery/computer/robotics, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"pRt" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/highsec/s) +"pRO" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/prison/cellblock/mediumsec/south) -"cyk" = ( -/obj/item/frame/table, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"pSb" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/hanger/main) +"pSO" = ( +/obj/item/shard, /obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"pSR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/prison/disposal) +"pSV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/siding{ + icon_state = "siding8" }, -/area/prison/cellblock/mediumsec/south) -"cyn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/prison/rampbottom, +/area/prison/residential/central) +"pTm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/prison/cellblock/mediumsec/south) -"cyo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"pTA" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cyp" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"pTF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"pUb" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"pUe" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/prison/cellblock/mediumsec/south) -"cyq" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/mirror{ + pixel_x = -26 }, -/area/prison/cellblock/mediumsec/south) -"cyr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"pUi" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"pUB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/whitegreencorner/north, +/area/prison/medbay) +"pUC" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/briefing) +"pUE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cyw" = ( -/obj/structure/machinery/disposal/deliveryChute{ - dir = 1 +/turf/open/floor/prison/blue/southwest, +/area/prison/parole/protective_custody) +"pVf" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/lattice, -/obj/structure/disposalpipe/trunk, -/turf/open/space, -/area/space) -"cyy" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"pVn" = ( +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/south/north) +"pWa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/frame/table, -/turf/open/floor/prison{ - icon_state = "yellow" + dir = 9 }, -/area/prison/cellblock/mediumsec/south) -"cyz" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"pWh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) -"cyB" = ( -/obj/structure/machinery/light{ - dir = 8 +"pWl" = ( +/obj/structure/machinery/door/poddoor/two_tile/vertical/open{ + id = "lethal_armory" }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/armory/lethal) +"pWm" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"pWs" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/ne) +"pXh" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/area/prison/cellblock/mediumsec/south) -"cyD" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/security/monitoring/medsec/south) -"cyE" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Medium-Security Monitoring" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"pXt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research/secret) +"pXx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/whitegreen, +/area/prison/residential/central) +"pXC" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/security/monitoring/medsec/south) -"cyF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Medium-Security Monitoring" +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/north) +"pXK" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/north) +"pXQ" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/blue/north, +/area/prison/command/secretary_office) +"pYd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/security/monitoring/medsec/south) -"cyG" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"pYv" = ( +/obj/structure/machinery/door/airlock/glass_command, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"pYG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"pYO" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/rampbottom, +/area/prison/yard) +"pZI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurplecorner/north, +/area/prison/research/secret/testing) +"pZQ" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cyI" = ( +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"qaJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/west, +/area/prison/monorail/west) +"qaN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/rampbottom/east, +/area/prison/yard) +"qbf" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"qbj" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating, +/area/prison/hallway/central/south) +"qbt" = ( +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/bioengineering) +"qbH" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/east) +"qcK" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"qdw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/cellblock/mediumsec/south) -"cyJ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"qdL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"cyK" = ( -/obj/structure/monorail{ - dir = 6 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"qdV" = ( +/obj/structure/pipes/standard/manifold/visible/yellow, +/turf/open/floor/prison/darkyellow2, +/area/prison/engineering/atmos) +"qec" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/space) -"cyL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/medsec/central) +"qee" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/area/prison/cellblock/mediumsec/south) -"cyM" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"qeo" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"qep" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cyN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"qev" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/yellowcorner/west, /area/prison/cellblock/mediumsec/south) -"cyO" = ( -/turf/open/floor/plating, +"qeE" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/prison/hanger/main) +"qeI" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"qeN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/south) -"cyP" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +"qfJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) -"cyQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/south) -"cyS" = ( -/obj/structure/monorail{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cyT" = ( -/obj/structure/monorail{ - dir = 9 - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/space) -"cyU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/south) -"cyV" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/south) -"cyW" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/south) -"cyX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +"qfZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/security/monitoring/medsec/south) -"cyY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"qge" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/security/monitoring/medsec/south) -"cyZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"qgt" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"qgB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/south) -"cza" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"qgJ" = ( +/turf/open/floor/prison/blue/west, +/area/prison/command/secretary_office) +"qgL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/monitoring/medsec/south) -"czb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"qgQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"czc" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hallway/engineering) +"qhh" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/east) +"qhj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"qif" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 }, -/area/prison/cellblock/mediumsec/south) -"czd" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/up{ +/obj/structure/platform{ dir = 1 }, -/obj/structure/lattice, -/turf/open/space, -/area/space) -"cze" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/n) +"qiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/area/prison/cellblock/mediumsec/south) -"czf" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"qiw" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"qiH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"czg" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/armory/lethal) +"qiO" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"qiZ" = ( +/obj/structure/largecrate/supply/weapons/flamers, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"qje" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"czh" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"qjj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"qjI" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"qke" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"qkn" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"qkO" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/prison/telecomms) +"qlg" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"czi" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"qlx" = ( +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"qlM" = ( +/turf/open/floor/prison/red/southwest, +/area/prison/recreation/highsec/n) +"qlN" = ( +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/north) +"qlT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"qma" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"czj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/north) +"qmu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/monitoring/medsec/south) -"czk" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"czl" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"czo" = ( -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czp" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"qmH" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czq" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/prison/whitegreen/northwest, +/area/prison/medbay) +"qmQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/security/monitoring/medsec/south) -"czt" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/sw) +"qmR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Staff Restrooms" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"qnl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"czu" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"qns" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"czv" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"qog" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"qoq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"czw" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"qoH" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"qoR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Low-Security" }, -/area/prison/cellblock/mediumsec/south) -"czx" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"qpa" = ( +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/north) +"qpw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czz" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czA" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"qpD" = ( +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/north) +"qpT" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"qqd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"qqn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison, -/area/prison/security/monitoring/medsec/south) -"czC" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/monitoring/medsec/south) -"czD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"qqr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/security/monitoring/medsec/south) -"czG" = ( -/turf/open/floor/prison{ - icon_state = "darkredcorners2" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"qqt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "East Monorail Station" }, -/area/prison/security/monitoring/medsec/south) -"czH" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"qqB" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"qqF" = ( +/obj/structure/closet/secure_closet/RD, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"qqM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"qqW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/security/monitoring/medsec/south) -"czI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/darkred2/southwest, +/area/prison/hanger/main) +"qrA" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"qrU" = ( +/obj/structure/pipes/standard/tank/carbon_dioxide{ + dir = 8 }, -/area/prison/security/monitoring/medsec/south) -"czJ" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"qrW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"qsh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"qsB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/prison/security/monitoring/medsec/south) -"czK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkredcorners2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/monitoring/medsec/south) -"czL" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"qta" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"qtg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"qtl" = ( +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"qtm" = ( +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/north) +"qtz" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/organic/grass, +/area/prison/residential/south) +"qud" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/prison/security/monitoring/medsec/south) -"czM" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/security/monitoring/medsec/south) -"czN" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research) +"quf" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/security/monitoring/medsec/south) -"czO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"qui" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/north) +"qun" = ( +/turf/open/organic/grass, +/area/prison/residential/south) +"qur" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Yard" }, -/area/prison/security/monitoring/medsec/south) -"czR" = ( -/obj/structure/surface/rack, -/obj/item/weapon/sword/katana/replica, -/turf/open/floor/wood, -/area/prison/command/office) -"czZ" = ( -/obj/structure/machinery/door/airlock/prison/horizontal{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"quv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"quS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay) +"quT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"cAc" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/monitoring/medsec/south) -"cAe" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/cm/red{ - desc = "Join the penal battalions today they said. Regret all of this you have."; - name = "\improper military beret" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"qvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"cAA" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding10" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"qvm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = 15; - pixel_y = 25 +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/turf/open/organic/grass, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"qvt" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"qvC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) -"cBi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - density = 0; - icon_state = "door_open"; - name = "Solitary Confinement"; - opacity = 0 - }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"cBj" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +"qvL" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"qvO" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"qwr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"qww" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"qwB" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/security/monitoring/lowsec/ne) +"qwD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"qwI" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"cBB" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/donkpockets, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"qxt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"qxD" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/prison/pirate) -"cBD" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/engineering) +"qxQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"cBY" = ( -/obj/structure/barricade/handrail/type_b{ +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"cDl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"qyk" = ( +/obj/structure/closet/gimmick{ + anchored = 1; + name = "Riot gear" }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/armory/riot) +"qyr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/ne) +"qys" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/hanger/research) -"cMW" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"qyy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/area/prison/cellblock/protective) -"cNc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"cOP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"qyD" = ( +/obj/structure/surface/rack, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/prison/hallway/central/south) -"cPc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) -"cPH" = ( -/obj/structure/machinery/light{ +"qyL" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"cQb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) -"cSA" = ( -/obj/structure/platform_decoration{ - dir = 1 +"qyP" = ( +/turf/open/floor/prison/floor_marked/west, +/area/prison/cellblock/mediumsec/north) +"qyZ" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"qzd" = ( +/obj/structure/bed, +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"qzy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay/surgery) +"qzZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/west) -"cWg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "Test Subject Containment" }, -/turf/open/floor/prison, -/area/prison/canteen) -"cWx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"qAt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/prison/red/east, +/area/prison/security/monitoring/highsec) +"qAG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/south) -"cWW" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"cXK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +"qAR" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/monorail/west) -"cYf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security) +"qBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/central/north) -"cYv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/green/north, +/area/prison/security/monitoring/lowsec/sw) +"qBG" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security) +"qBP" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/visitation) +"qBW" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/protective) +"qCn" = ( +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/monitoring/highsec) +"qCv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/north/north) +"qCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/research/RD) -"cYR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkredcorners2, +/area/prison/security/checkpoint/maxsec_highsec) +"qCS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"qDB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/damaged2, +/area/prison/laundry) +"qDW" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/prison/hanger/research) +"qEe" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/security/monitoring/lowsec/ne) -"cZY" = ( +/turf/open/floor/prison/blue/northeast, +/area/prison/cellblock/protective) +"qEk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Medium-Security Storage" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"qEr" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"qEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/hallway/central/east) -"dcn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/ne) -"dcN" = ( -/turf/open/floor/prison{ +"qEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/bioengineering) +"qEO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"qFD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/prison/hanger/main) +"qFH" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"qFV" = ( +/obj/structure/sink{ dir = 4; - icon_state = "darkyellowfull2" + pixel_x = 12 }, -/area/prison/storage/medsec) -"deI" = ( -/turf/closed/shuttle/elevator{ - dir = 10 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"qGb" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/prison/hallway/central/west) -"deQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/turf/open/floor/prison/yellow/northeast, +/area/prison/cellblock/mediumsec/south) +"qGr" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/prison/hallway/central/east) -"dgl" = ( +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"qGy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison, -/area/prison/telecomms) -"diQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"qHf" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"djr" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/carpet, -/area/prison/residential/north) -"djE" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/organic/grass, -/area/prison/residential/south) -"djN" = ( -/obj/structure/girder, +/turf/open/floor/prison/darkbrown2/east, +/area/prison/hallway/east) +"qHh" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/prison/engineering/atmos) +"qHm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"qHy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Northeast Low-Security Cellblock" + }, +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/ne) +"qHz" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"qHA" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"qIb" = ( +/obj/structure/window/framed/prison, /turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"dlJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/area/prison/cellblock/highsec/north/south) +"qIq" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"qIN" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"qJm" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"qJp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/cellblock/highsec/south/south) -"dnc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"dnf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Protective Custody Cells" +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"qJL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Maximum-Security Suspended Cellblock" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"qJO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"qJV" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/highsec) +"qKz" = ( +/turf/open/floor/prison/darkredcorners2/west, +/area/prison/security) +"qKK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"dni" = ( -/obj/structure/bed, +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/west) +"qLg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/north) -"dnt" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/south) +"qLI" = ( +/turf/open/floor/grass, +/area/prison/residential/south) +"qMs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"qMT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/good_item, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding8" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"qNv" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/area/prison/cellblock/mediumsec/north) -"dou" = ( -/turf/open/floor/plating, -/area/prison/visitation) -"doF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/prison/blue/north, +/area/prison/security/checkpoint/vip) +"qNy" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/east) +"qNC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research) +"qNF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"qNS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/storage/vip) -"dqf" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, -/area/prison/hanger/main) -"duu" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/machinery/light{ +/area/prison/maintenance/residential/nw) +"qNX" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"qOc" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/organic/grass, -/area/prison/residential/north) -"dxF" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/west) +"qOG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/vip) +"qOL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/hanger/research) -"dyt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"dyB" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"qPs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/research/secret/bioengineering) +"qPu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_marked/west, +/area/prison/cellblock/mediumsec/north) +"qQa" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"qQO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "North Civilian Residences Access" +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/turf/open/floor/plating, +/turf/open/floor/asteroid, /area/prison/residential/north) -"dzH" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, +"qQR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/canteen) -"dAz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"qQS" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/testing) +"qQU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"qQW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Prison Store" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"qRj" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/south/north) +"qRr" = ( +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/s) +"qRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/monitoring/highsec) -"dBI" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/prison/storage/vip) -"dCC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/baguette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/canteen) -"dDv" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay/surgery) +"qRN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"dDS" = ( -/obj/structure/bed/chair/office{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding1) +"qSy" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/monorail/west) +"qSM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research) +"qTA" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/hallway/central/west) -"dEm" = ( /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"qTB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) -"dHr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/prison/hanger/research) -"dIT" = ( -/obj/structure/barricade/handrail/wire{ +"qTS" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/nw) +"qUp" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"dJf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/chapel, +/area/prison/chapel) +"qUD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/east) -"dMw" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"dOK" = ( -/obj/structure/computerframe{ - anchored = 1 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"qUR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "Medium-Security Storage" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"dQw" = ( +/turf/open/floor/prison/bluefull, +/area/prison/storage/medsec) +"qVe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"qVq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" + icon_state = "N" }, -/area/prison/hanger/research) -"dRQ" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"qWa" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"dSI" = ( -/obj/structure/largecrate/random, +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"qWv" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/monorail/east) +"qWw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"qXa" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"dTa" = ( +/area/space) +"qXq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -26 + }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"qXI" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/hangar) +"qYm" = ( +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/n) +"qYG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/mediumsec/south) -"dUw" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"qZi" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"qZA" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/darkyellow2, +/area/prison/telecomms) +"rab" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"rac" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/west) +"raB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/cellblock/highsec/north/south) +"raW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/shuttle/black, +/area/prison/pirate) +"rbc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/bioengineering) +"rbz" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/highsec/n) +"rbR" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"dYS" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"rbZ" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ead" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"ecJ" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"eev" = ( -/obj/structure/bed/chair/office{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"rcH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/lowsec/nw) -"eeO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/blue, +/area/prison/cellblock/protective) +"rcQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/medsec/south) +"rcR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/east) +"rdz" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"rdD" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/maintenance/residential/access/south) -"efk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/carpet, +/area/prison/residential/south) +"rdT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/wood, -/area/prison/library) -"efw" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"reb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/south) +"req" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/prison/storage/vip) +"reN" = ( /obj/structure/window/reinforced{ - dir = 8 + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.3 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/research/secret/bioengineering) -"ekt" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"emT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"reW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"rfg" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"rfi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/vip) -"eoP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Custodial Closet" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"rfp" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"rga" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"ept" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"eqs" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"esR" = ( -/turf/open/organic/grass, -/area/prison/residential/north) -"etX" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, +/turf/open/floor/prison/darkred2, /area/prison/security/monitoring/highsec) -"evk" = ( -/obj/structure/bed/chair{ - dir = 4 +"rgl" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/se) +"rgv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"ewb" = ( +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/se) +"rgx" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 }, -/turf/open/floor/plating, -/area/prison/hallway/central/south) -"ewO" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"rgI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/medsec) +"rhy" = ( +/obj/effect/landmark/survivor_spawner, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay) +"rhH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Low-Security" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"rhL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"rio" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/hallway/central/east) -"ezq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, -/area/prison/residential/central) -"eBV" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"ris" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hangar_storage/main) +"riH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - name = "High-Security Monitoring" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/highsec/south/south) -"eEq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"eFu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"eFP" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/wood, -/area/prison/residential/north) -"eHA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"eKr" = ( -/turf/open/floor/plating, -/area/prison/storage/medsec) -"eKD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" + name = "South High-Security Recreation" }, -/area/prison/cellblock/mediumsec/east) -"eKH" = ( +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/s) +"riZ" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/highsec) +"rjb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"eLV" = ( -/obj/item/device/walkman, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"eMx" = ( -/obj/structure/largecrate/random/case, -/turf/open/shuttle/elevator/grating, -/area/prison/hallway/central/west) -"eMW" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Protective Custody Parole Waiting" }, -/area/prison/telecomms) -"eNJ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/security/checkpoint/highsec/s) -"eOw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison/bluefull, +/area/prison/parole/protective_custody) +"rjO" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/se) +"rjZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"rkr" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay/surgery) +"rkH" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"rlo" = ( +/obj/structure/sink{ dir = 4; - icon_state = "red" + pixel_x = 12 }, -/area/prison/cellblock/highsec/south/north) -"ePO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"eRq" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"rlp" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"eRY" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/cellblock/mediumsec/north) -"eTo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"rlq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/hallway/central/south) -"eTt" = ( -/obj/structure/machinery/light, -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/prison/storage/vip) -"eUF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"rls" = ( /obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"rlH" = ( +/turf/open/floor/prison/blue/northwest, /area/prison/parole/protective_custody) -"eWi" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +"rml" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/canteen) -"eWk" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/red/southeast, +/area/prison/recreation/highsec/n) +"rmm" = ( +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay) +"rmq" = ( +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"rmw" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "red" +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/maxsec) +"rmy" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/testing) +"rmE" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"rmK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"rmS" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"rnv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/cellblock/highsec/north/south) -"eXA" = ( +/turf/open/floor/freezerfloor, +/area/prison/command/quarters) +"rnA" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Panopticon Monitoring" }, -/area/prison/cellblock/highsec/south/north) -"eYV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/security/monitoring/maxsec/panopticon) +"rnE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/trash/chunk, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"faM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/yellow/southeast, +/area/prison/cellblock/mediumsec/south) +"rnI" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"rok" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"ron" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"faW" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"fbk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 }, -/turf/open/floor/prison, -/area/prison/laundry) -"fbt" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"roH" = ( +/obj/structure/machinery/computer/telecomms/server{ + req_one_access_txt = "19;200" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"ffd" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Research Dorms" +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"roM" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/yard) +"rpa" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"rpy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/quarters/research) -"fhc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"rpB" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"fkk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/organic/grass, +/area/prison/residential/central) +"rpL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"rpO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "blue" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"rql" = ( +/obj/structure/platform{ + dir = 8 }, -/area/prison/cellblock/protective) -"fkx" = ( -/obj/structure/machinery/light, -/turf/open/organic/grass, -/area/prison/residential/north) -"flQ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"rqT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/maintenance/hangar_barracks) +"rrm" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"foY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/west) +"rrB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/lowsec/se) -"fpO" = ( -/obj/item/handset, +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/n) +"rrC" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "hydrofloor" - }, +/obj/item/tank/air, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) -"fqG" = ( +"rrQ" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/prison/engineering) +"rrS" = ( +/obj/structure/monorail, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"rsd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/telecomms) -"ftk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/machinery/flasher_button{ + id = "suspended_EEN"; + pixel_x = -24 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"rsq" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay/surgery) +"rsu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/monorail/west) -"ftG" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"rtl" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"rtq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/closed/wall/prison, -/area/prison/cellblock/protective) -"fxr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "Test Subject Containment" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"fxt" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"rtu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "research_secret"; + name = "Classified Research Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research/secret) +"rtv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/south) +"rtA" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"rtS" = ( +/obj/structure/closet, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/wood, +/area/prison/quarters/research) +"rtW" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/prison/cellblock/lowsec/se) -"fxZ" = ( -/obj/structure/machinery/door/airlock/prison{ +/obj/structure/mirror{ + pixel_x = -26 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"rub" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" + }, +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"ruq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ density = 0; icon_state = "door_open"; - opacity = 0 + name = "Cell Access" }, -/obj/structure/curtain/open, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"fyi" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"ruA" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"ruC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/west) -"fCr" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Staff Quarters" + }, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"ruE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"fEZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/prison/green/west, +/area/prison/monorail/west) +"ruY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" }, -/area/prison/cellblock/mediumsec/east) -"fFq" = ( -/obj/structure/window/framed/prison/cell, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/prison/cellblock/mediumsec/east) -"fGf" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research/secret/testing) -"fHI" = ( -/obj/structure/machinery/light{ - dir = 8 +"rva" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"rvd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/prison/greencorner/north, +/area/prison/cellblock/lowsec/sw) +"rvp" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"rvs" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"fLH" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"fLR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/south) -"fLT" = ( -/obj/structure/window/framed/prison/reinforced, +/area/prison/maintenance/residential/ne) +"rvM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"rvO" = ( +/obj/structure/surface/rack, /turf/open/floor/plating, -/area/prison/kitchen) -"fMz" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, /area/prison/cellblock/mediumsec/south) -"fMU" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"fNt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"rvR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/n) +"rvT" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"rvU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/whitepurple/northwest, +/area/prison/quarters/research) +"rvX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Medium-Security Storage" }, -/area/prison/cellblock/lowsec/se) -"fOl" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"rwI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"rxj" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"rxE" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/red/northeast, +/area/prison/recreation/highsec/s) +"rxV" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"ryg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"fPR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"fQu" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/east) +"ryJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/hallway/central/west) -"fRC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret) +"ryP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - icon_state = "redcorner" - }, +/turf/open/floor/prison/red, /area/prison/cellblock/highsec/south/north) -"fUs" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/monitoring/lowsec/ne) -"fXQ" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"fZb" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"gas" = ( +"ryX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"gbI" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"rzH" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/security/checkpoint/highsec_medsec) -"gbV" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"rzM" = ( +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"rzT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"rAr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"rAH" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"rAR" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"gcr" = ( /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"rAS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"rBd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; - icon_state = "pipe-c" + name = "Chapel" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"rBi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"gcy" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"rBp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"rBs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"rBt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"rBF" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkred2, +/area/prison/security) +"rBI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"gfe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"gfl" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"rBW" = ( +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/north/south) +"rCd" = ( +/obj/structure/lamarr, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"rCj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"rDm" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"rEc" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/green/southeast, +/area/prison/quarters/staff) +"rEh" = ( +/turf/open/floor/prison/red, +/area/prison/security/checkpoint/highsec/s) +"rEx" = ( +/turf/open/floor/prison/blue/west, +/area/prison/residential/central) +"rEC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/hallway/central/east) -"ghp" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/hangar) +"rET" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering/atmos) +"rEY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/hallway/central/east) -"ghR" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/hallway/engineering) +"rEZ" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"rFa" = ( /obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"gla" = ( -/obj/structure/machinery/door/window/eastleft, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/central/south) +"rFm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +/turf/open/floor/prison/green/northeast, +/area/prison/quarters/staff) +"rFE" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/highsec/s) +"rFS" = ( +/turf/open/floor/prison/sterile_white/west, +/area/prison/cellblock/mediumsec/north) +"rFV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/south/north) +"rGf" = ( +/turf/open/floor/prison/darkredcorners2, +/area/prison/security/monitoring/medsec/south) +"rGm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/research/secret/bioengineering) -"gne" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"rGt" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"rGv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/hanger/research) -"gpm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"rGA" = ( +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"rGU" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/medsec) +"rHa" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/n) -"gpx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/good_item, -/turf/open/floor/prison{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/security/monitoring/highsec) +"rHd" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/south) +"rHj" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/green/southwest, +/area/prison/hallway/staff) +"rHk" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/telecomms) -"grW" = ( -/turf/closed/shuttle/elevator/button/freight, -/area/prison/hallway/central/west) -"gsD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Visitation" + icon_state = "p_stair_full" }, -/turf/open/floor/prison, -/area/prison/visitation) -"gtK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/storage/vip) +"rHn" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/northwest, +/area/prison/cellblock/highsec/south/south) +"rHO" = ( +/obj/structure/bed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/telecomms) -"gvb" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"rIb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"rIg" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Medium-Security Storage" +/turf/open/floor/prison/blue/west, +/area/prison/security/checkpoint/vip) +"rIq" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/highsec) +"rIu" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"rIw" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/maxsec) +"rIx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"rJa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"rJp" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/quarters/research) +"rJE" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/prison/storage/medsec) -"gvj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/canteen) -"gwI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/n) +"rJZ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/blue/west, +/area/prison/command/secretary_office) +"rKn" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"rLm" = ( +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"rLo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"gxV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredcorners2, +/area/prison/security/checkpoint/medsec) +"rLv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"rLO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"rLS" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) -"gAa" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"gAV" = ( +"rLW" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"gBz" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec/n) -"gBM" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"rMf" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/east) -"gEZ" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/alarm/almayer{ +"rMi" = ( +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security) +"rMl" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"gFN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/antag, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 9; +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/vip) +"rMP" = ( +/obj/structure/sink{ pixel_y = 15 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"gFT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"gGu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research) +"rNg" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"rNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/blue/west, +/area/prison/parole/protective_custody) +"rNn" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/prison/engineering) +"rNZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/telecomms) -"gIv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/prison/whitegreencorner/east, +/area/prison/medbay) +"rOf" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/medbay/surgery) +"rOn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"rON" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/canteen) -"gIz" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"gJu" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research) +"rOO" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"rOZ" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/highsec/n) +"rPk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"rPp" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"rPu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"gJz" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/north) +"rPy" = ( +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/nw) +"rPR" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"rQc" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 }, -/turf/open/floor/carpet, -/area/prison/residential/central) -"gJO" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"rQi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/nw) +"rQr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"rQD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"rQG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"gJT" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding6" +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/organic/grass, -/area/prison/residential/north) -"gKA" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"rRf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/sterile_white, +/area/prison/hallway/staff) +"rRp" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/chemistry) +"rRs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/siding/wood_siding, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/residential/central) -"gML" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/prison/residential/south) -"gNI" = ( -/obj/item/tool/screwdriver, -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = 21 +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"rRG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/rampbottom/north, +/area/prison/yard) +"rRH" = ( +/turf/open/floor/prison/bright_clean_marked, +/area/prison/yard) +"rRJ" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison, +/area/prison/telecomms) +"rRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"rRQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/north/south) -"gOD" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/secret/bioengineering) +"rRS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"rSi" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/south/north) +"rSm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/mediumsec/south) -"gOT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"rSp" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/east) +"rSI" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/telecomms) +"rSJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/red/southwest, +/area/prison/security/checkpoint/highsec/s) +"rTg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/shuttle/black, +/area/prison/pirate) +"rTs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/se) +"rTw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/protective) -"gPF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"rUh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/bluecorner/west, +/area/prison/parole/protective_custody) +"rUq" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/medsec) +"rUC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/mediumsec/west) -"gPR" = ( -/turf/closed/wall/prison, -/area/prison/maintenance/staff_research) -"gPU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/cellblock/mediumsec/west) -"gQP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/west, +/area/prison/research/RD) +"rUI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/prison/residential/north) -"gRU" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"rUP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"gSg" = ( +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"rVr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/closed/wall/prison, -/area/prison/residential/central) -"gWT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"gXQ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/west) +"rVH" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"hcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"rVJ" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"rWb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"rWn" = ( +/obj/structure/surface/rack, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"rWA" = ( +/obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"hdc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "emergency lockdown"; - use_power = 0 +/area/prison/maintenance/residential/nw) +"rWM" = ( +/obj/structure/pipes/portables_connector{ + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/medbay) +"rWQ" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"rWU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "East Hallway" }, -/area/prison/cellblock/mediumsec/east) -"hdp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"rWV" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/south) -"hdw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rXh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Holding Cell 2" }, -/turf/open/floor/prison, -/area/prison/telecomms) -"hdK" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"rXn" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) -"hgJ" = ( -/obj/structure/bed/chair/comfy{ +"rXy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkredcorners2/north, +/area/prison/security/checkpoint/maxsec) +"rXD" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"rXK" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"rYo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"rYG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Medium-Security Monitoring" }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"hjA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"hjN" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/medsec/south) +"rYJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurplecorner/east, +/area/prison/research/secret/bioengineering) +"rYT" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/canteen) -"hlO" = ( +"rZy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"rZZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/south) -"hmc" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/s) +"sai" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/shuttle/black, +/area/prison/pirate) +"sar" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/monorail/west) -"hmQ" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"saF" = ( +/turf/open/floor/prison/red/northeast, +/area/prison/security/checkpoint/highsec/s) +"saJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"saS" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"hmU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"hmZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/cellblock/mediumsec/east) -"hnD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Staff-Research Maintenance" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/visitation) +"sbb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/quarters/research) -"hoY" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"sbh" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"sbm" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/south/north) +"sbr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/prison/research/secret/dissection) +"sbN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"scb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"hpd" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/south) +"scl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"scB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/north) +"scJ" = ( +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"sdo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c10, +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/nw) +"sdu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/prison/west, +/area/prison/research/RD) +"sdS" = ( +/obj/structure/bed, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"see" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/east) +"seo" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/n) -"hqX" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/north) +"seq" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"hrZ" = ( -/obj/effect/landmark/static_comms/net_one, /turf/open/floor/prison, -/area/prison/telecomms) -"hyp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/prison/residential/central) +"sew" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/medsec/south) +"sey" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/s) +"seR" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; id = "map_lockdown"; @@ -44665,2573 +30821,3136 @@ unacidable = 1; use_power = 0 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/east) -"hyX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/prison/storage/medsec) -"hzb" = ( -/obj/item/stack/cable_coil/cut{ - amount = 1; - icon_state = "coil1"; - name = "cable piece" - }, -/turf/open/floor/plating, +/turf/open/floor/prison/yellow, /area/prison/cellblock/mediumsec/east) -"hAq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"sfC" = ( +/obj/structure/surface/rack, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/obj/structure/platform_decoration, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"sfJ" = ( +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"sgN" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/prison/hanger/research) -"hBf" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"sgS" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec_medsec) +"sgY" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/hanger/main) +"shp" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"shA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"shC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/south/north) -"hCM" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"shP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/chapel) -"hEK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"hEL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "VIP Cellblock / Civilian Residences Access" }, -/area/prison/canteen) -"hFD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "rampbottom" +/turf/open/floor/prison/bluefull, +/area/prison/security/checkpoint/vip) +"siG" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/telecomms) +"siS" = ( +/obj/structure/platform{ + dir = 8 }, -/area/prison/maintenance/residential/sw) -"hGm" = ( -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = -32 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"sjb" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/se) +"sjj" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"sjE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/residential/north) -"hHy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/red/southwest, +/area/prison/cellblock/highsec/north/north) +"sjS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"smr" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"snE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"snW" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/south) +"son" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/prison/whitegreen/west, +/area/prison/medbay) +"soq" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"soD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/south) -"hHP" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/staff) -"hKn" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"hKp" = ( -/obj/effect/alien/weeds/node, +"soL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"hKW" = ( -/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" - }, -/area/prison/cellblock/highsec/south/north) -"hMP" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/southwest, /area/prison/cellblock/highsec/south/north) -"hND" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"spd" = ( +/obj/structure/disposaloutlet{ dir = 4 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/north) -"hNI" = ( -/obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/disposalpipe/up{ + dir = 1 }, -/area/prison/cellblock/lowsec/nw) -"hNY" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"spk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/south/north) -"hOy" = ( /obj/structure/surface/table/reinforced{ dir = 8; flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"hQm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"spR" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/north) +"spY" = ( +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/area/prison/hallway/central/east) -"hQS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"sqj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"sqz" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"sqA" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/redfull, +/area/prison/hallway/entrance) +"sqO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/chapel) -"hQW" = ( -/obj/item/tool/mop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"sqS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/residential/north) -"hRg" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck/uno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"srq" = ( +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/east) +"srE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"srH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/lowsec/nw) -"hRZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood, -/area/prison/recreation/staff) -"hSK" = ( -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/se) +"srR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"ssq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"sss" = ( +/turf/open/floor/prison/darkred2/southeast, /area/prison/cellblock/highsec/south/north) -"hTe" = ( +"ssB" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/north) +"ssR" = ( +/turf/open/floor/prison/darkpurplecorners2/north, +/area/prison/hanger/research) +"sth" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed10-supply" + dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"hUe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"stQ" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"hUO" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/landmark/corpsespawner/prison_security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/prison/hallway/east) +"sue" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"sul" = ( +/obj/structure/machinery/shower{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/engineering) -"hWd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"hXj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" + pixel_x = 6 }, -/area/prison/cellblock/mediumsec/north) -"hXJ" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/prison/canteen) -"hXW" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"suu" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/prison{ +/obj/structure/machinery/door/window/northleft, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/north) -"hYq" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/shuttle/elevator/grating, -/area/prison/hallway/central/west) -"hZp" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 + health = 80 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/north) +"suD" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"suY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"svn" = ( +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/area/prison/yard) -"ibG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"svy" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/south) +"svM" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"swD" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"swU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/closet/secure_closet/security, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/ammo_magazine/pistol/b92fs, -/obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - icon_state = "whitepurplefull" +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/south/south) +"sxc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/research/secret) -"ibJ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"icO" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/whitepurplecorner, +/area/prison/research/secret/bioengineering) +"sxi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/residential/north) -"ifS" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/kitchen, +/area/prison/research) +"sxS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/north) -"igb" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"igB" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"igJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"syd" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/area/prison/security/checkpoint/highsec/s) -"iif" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"iiI" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/visitation) +"syf" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"syx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/cellblock/mediumsec/east) -"iob" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"syz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 }, -/area/prison/hallway/central/west) -"ioD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"syS" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"szb" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/prison/research) +"szd" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"szN" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/central/east) +"sAD" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/chapel/north, +/area/prison/chapel) +"sAG" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/protective) +"sBf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/west) +"sBg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/north) -"iph" = ( +"sBD" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/engineering) +"sBG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/east) -"iqo" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/s) +"sBK" = ( +/turf/open/floor/prison/green/southeast, +/area/prison/monorail/west) +"sBM" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/north) +"sBQ" = ( +/turf/open/floor/prison, +/area/prison/security/checkpoint/highsec_medsec) +"sBZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"sCe" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"sCh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/canteen) -"irh" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding10" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = 15; - pixel_y = 25 +/turf/open/floor/prison/greencorner/west, +/area/prison/hallway/staff) +"sCq" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/residential/north) -"irA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/protective) +"sDr" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"isr" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/medsec/south) +"sDv" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/prison/hallway/east) +"sDI" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/testing) +"sDW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/telecomms) -"iuH" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/se) +"sEc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "South High-Security Recreation" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/s) +"sEh" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/cellblock/mediumsec/west) -"ixb" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"sEj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay) +"sEB" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"ixD" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/medsec/central) +"sFs" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"sFZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreen/northeast, +/area/prison/residential/central) +"sGm" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"sGO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"sGT" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"sIf" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"sIi" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/quarters/research) +"sIo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"sIR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/hallway/central/west) -"ixF" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/closet/radiation, +/obj/item/device/motiondetector, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"sIZ" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/hallway/central/west) -"izT" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/central/south) -"iBG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"sJe" = ( +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/s) +"sJq" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"sJF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/vip) -"iBN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"sJJ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"iCH" = ( -/obj/structure/machinery/computer/telecomms/traffic{ - req_one_access_txt = "19;200" +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/bioengineering) +"sKu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/north, +/area/prison/medbay/foyer) +"sLa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/prison/telecomms) -"iDV" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"iEp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/vip) +"sLs" = ( +/turf/open/floor/prison/yellow/northwest, +/area/prison/security/checkpoint/medsec) +"sLI" = ( +/obj/structure/lattice, +/obj/structure/monorail{ + dir = 6 }, -/area/prison/telecomms) -"iGo" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/organic/grass, -/area/prison/residential/north) -"iGI" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/space, +/area/space) +"sMb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/prison/residential/south) -"iHa" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"iHC" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret/containment) +"sMm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"sMv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding8" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"sMw" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"sMG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Panopticon Monitoring" }, -/area/prison/telecomms) -"iIg" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/security/monitoring/maxsec/panopticon) +"sMR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/research) -"iIA" = ( +"sNh" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/prison/quarters/research) +"sNn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/south) -"iLz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/central) -"iND" = ( -/obj/structure/bed/chair/office, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/security/checkpoint/highsec/n) -"iOc" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"sNF" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"iRv" = ( -/turf/closed/shuttle/elevator{ - dir = 9 +/turf/open/floor/prison/red/southwest, +/area/prison/hallway/entrance) +"sNN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"sNX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/prison/hallway/central/west) -"iRU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/mousetraps, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"sOl" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"iSi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/maintenance/residential/access/south) -"iVr" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/sign/poster{ - icon_state = "poster10"; - pixel_y = 32 - }, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"iWG" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/prison/cellblock/mediumsec/west) -"iWJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"iWK" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"iYD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/prison/cellblock/mediumsec/south) +"sOw" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/north) -"jan" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"sOA" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/organic/grass, -/area/prison/residential/south) -"jaQ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"sOH" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/highsec_medsec) +"sOS" = ( +/turf/open/floor/prison/redcorner/west, +/area/prison/recreation/highsec/n) +"sOZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers, +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"sPe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"sPl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/visitation) -"jbq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"sPt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/research) -"jdx" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/medbay/foyer) -"jeD" = ( -/obj/structure/surface/table/reinforced{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"sPA" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/prison/quarters/security) +"sPH" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"sQx" = ( +/obj/structure/sink{ dir = 4; - flipped = 1 + pixel_x = 12 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"sQI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/yard) -"jfe" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/bed/chair/office/dark, +/turf/open/floor/wood, +/area/prison/quarters/research) +"sQK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"sQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/prison/red/southeast, +/area/prison/cellblock/highsec/north/south) +"sQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Central Ring" }, -/area/prison/hanger/research) -"jfp" = ( -/turf/closed/wall/prison, -/area/prison/storage/highsec/n) -"jfN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"jkv" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"sQQ" = ( +/obj/structure/bed/chair/office, +/turf/open/floor/prison/red/north, +/area/prison/security/checkpoint/highsec/n) +"sRb" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/telecomms) +"sRh" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec_highsec) +"sRR" = ( +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/n) +"sSq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"sSA" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/east) +"sSB" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"sSD" = ( /obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"sSO" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating, /area/prison/maintenance/residential/sw) -"jkB" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"jkQ" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"sSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/lowsec/nw) -"jmk" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"jmr" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"sTa" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/nw) +"sTy" = ( +/turf/closed/wall/resin, +/area/prison/cellblock/highsec/south/north) +"sTE" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/central/west) -"jmY" = ( +/turf/open/floor/prison/bluefull, +/area/prison/storage/vip) +"sUf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/medbay/foyer) +"sUv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/south) -"jno" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"sUx" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"sUB" = ( +/turf/open/floor/prison, +/area/prison/cellblock/mediumsec/north) +"sUC" = ( +/turf/open/floor/prison/blue/west, +/area/prison/security/checkpoint/vip) +"sVg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 6 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"joc" = ( -/obj/structure/surface/rack, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"sVE" = ( +/obj/item/frame/table/reinforced, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding4" }, -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"sVI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/canteen) -"joJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Main Hangar Storage" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/vip) +"sWj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"sWp" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/sw) +"sWq" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"sWT" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/nw) +"sXL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/maxsec) +"sYh" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/prison/hallway/east) +"sYr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/hangar_storage/main) -"jpt" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" + dir = 1 }, -/area/prison/cellblock/highsec/north/south) -"jpy" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/carpet, +/area/prison/residential/south) +"sYI" = ( +/obj/structure/machinery/camera/autoname{ dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + network = list("PRISON") }, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/hallway/central/west) -"jpO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/prison, -/area/prison/cellblock/lowsec/nw) -"jqi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"sYN" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"jqn" = ( -/obj/item/tank/emergency_oxygen, -/turf/open/floor/prison, -/area/prison/hallway/central/west) -"jqQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"sYW" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"sZb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"sZm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"jsm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/hanger/research) -"jtk" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/cellblock/highsec/south/north) -"juy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"sZr" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/south/south) +"sZv" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, +/turf/open/floor/prison/cell_stripe/east, /area/prison/cellblock/mediumsec/north) -"juA" = ( -/obj/item/trash/burger, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"jvk" = ( -/turf/open/floor/prison{ - icon_state = "green" +"sZC" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"tao" = ( +/obj/structure/toilet, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"taA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"taM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/central/east) -"jxi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/darkred2/west, +/area/prison/security) +"taN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"taP" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"jzJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "North Civilian Residences Access" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"taT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "SMES" }, /turf/open/floor/plating, -/area/prison/residential/north) -"jBu" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"jDr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"jFe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/west) -"jFi" = ( +/area/prison/engineering) +"tbk" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/lowsec/ne) +"tby" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"tbz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, +/turf/open/floor/prison/bright_clean/southwest, /area/prison/maintenance/residential/access/south) -"jFs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +"tcm" = ( +/obj/structure/pipes/standard/manifold/visible/yellow{ + dir = 8 + }, +/obj/structure/machinery/meter, +/turf/open/floor/prison/darkyellowcorners2, +/area/prison/engineering/atmos) +"tct" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/north) -"jFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"tcS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Department" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"jHy" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"tcY" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/poster{ + icon_state = "poster16"; + pixel_y = 32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/wood, +/area/prison/quarters/research) +"tdA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/hallway/central/west) -"jJE" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/visitation) +"tdP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, -/area/prison/chapel) -"jKf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"jMq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"jNo" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"teS" = ( /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"jNC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"tfd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/prison/storage/medsec) -"jOj" = ( +/turf/open/floor/plating, +/area/prison/residential/central) +"tfg" = ( /obj/structure/surface/table/reinforced, -/obj/item/tank/nitrogen, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"jRi" = ( -/obj/structure/machinery/light{ +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering/atmos) +"tfD" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"jRC" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"jSu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"jSv" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/prison/cellblock/lowsec/nw) -"jTC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"tfM" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"jTN" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/north) +"tgz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/highsec/south/north) -"jUC" = ( -/turf/closed/wall/r_wall/prison, -/area/prison/telecomms) -"jVk" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"tgG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"thz" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"thB" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"thC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/north) -"jWj" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/hallway/central/south) -"kag" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"kaz" = ( -/obj/structure/surface/rack, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"tif" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"tiE" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/west) +"tiH" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/highsec) +"tjn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_marked/west, +/area/prison/cellblock/maxsec/south) +"tjq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/prison/canteen) -"kdj" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue/east, +/area/prison/security/checkpoint/vip) +"tjy" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"tjG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"kdm" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"tjT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/stack/rods, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"tjU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/prison/chapel) +"tkf" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/prison/darkyellow2/northeast, +/area/prison/telecomms) +"tks" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"tkx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/canteen) -"kdI" = ( -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"tkJ" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/south/north) -"kep" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"tkL" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding5" }, -/area/prison/canteen) -"keX" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/turf/open/floor/asteroid, +/area/prison/residential/north) +"tlc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "High-Security Monitoring" }, -/area/prison/hallway/central/south) -"kfj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/south) +"tlv" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"tly" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, -/area/prison/storage/medsec) -"kgy" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/kitchen, +/area/prison/recreation/medsec) +"tlB" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/prison/cellblock/highsec/south/north) -"kik" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/weapon/gun/pistol/b92fs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/machinery/door/window/northleft, +/obj/structure/machinery/door_control{ + id = "research_secret"; + name = "Classified Research Lockdown" }, -/area/prison/cellblock/lowsec/nw) -"kjh" = ( -/obj/structure/machinery/light/small{ +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"tlQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"kkA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"tmj" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"tmB" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/hanger/research) -"kmh" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"tmC" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, +/turf/open/floor/prison/greenfull, /area/prison/cellblock/lowsec/nw) -"knf" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tnx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/cellblock/mediumsec/west) -"kog" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/mirror{ + pixel_x = 26 }, -/area/prison/hallway/central/east) -"koj" = ( -/obj/structure/platform{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"tnN" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/shuttle/black, +/area/prison/pirate) +"toc" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/northeast, +/area/prison/security/monitoring/highsec) +"tog" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"toj" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/canteen) -"kpc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"tol" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "red" + health = 80 }, -/area/prison/cellblock/highsec/north/north) -"kqo" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"tom" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"top" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"krJ" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"tox" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"toL" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane, /turf/open/floor/plating, /area/prison/maintenance/residential/nw) -"ksY" = ( -/obj/item/ammo_casing, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"ktx" = ( -/obj/structure/window/framed/prison, +"tpn" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"ktA" = ( -/obj/structure/bed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/prison/cellblock/mediumsec/south) +"tpD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/cellblock/mediumsec/east) -"kue" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"tpM" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"tpP" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"tpW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/north) -"kyS" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/south) -"kzE" = ( /obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/ne) +"tpZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/south) -"kzI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Maintainance" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/security/checkpoint/vip) -"kzZ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/n) +"tqe" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/sw) +"tqu" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"tqw" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"kCz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"tqN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"kDp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"trg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"trC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"trO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"trX" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/checkpoint/medsec) +"tsr" = ( +/turf/open/floor/prison/blue/north, +/area/prison/parole/protective_custody) +"tsu" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hanger/research) -"kDz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"tsA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"kEk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"tsP" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/red/northwest, /area/prison/cellblock/highsec/south/north) -"kGq" = ( -/turf/open/floor/prison, -/area/prison/visitation) -"kGG" = ( +"ttd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"tte" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"ttK" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/shuttle/black, +/area/prison/pirate) +"ttM" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"ttO" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/medsec) +"ttR" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/south) +"ttT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/cellblock/lowsec/se) -"kJw" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/effect/landmark/item_pool_spawner/prison_lock/master, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/protective) +"tuD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/protective) -"kLB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Chapel" +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"tuQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/chapel) -"kRq" = ( +/turf/open/organic/grass, +/area/prison/residential/north) +"tuU" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/recreation/highsec/n) +"twa" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"kRT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"twk" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"twr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"twx" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, -/area/prison/hallway/central/east) -"kSt" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/maintenance/staff_research) -"kZc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/prison/maintenance/residential/sw) +"twB" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"twM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/plating, -/area/prison/security/monitoring/highsec) -"ldp" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"twQ" = ( +/obj/structure/machinery/door/window/southright, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"txc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"ldw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"txH" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/ne) +"txI" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/s) +"txR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkbrown2/east, +/area/prison/hallway/east) +"tyv" = ( +/obj/structure/pipes/standard/tank/oxygen{ dir = 1; - icon_state = "yellow" + unacidable = 1; + unslashable = 1 }, -/area/prison/cellblock/mediumsec/west) -"ldD" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"tyx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"tyF" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"tyI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"tyW" = ( +/obj/structure/bed, +/turf/open/shuttle/black, +/area/prison/pirate) +"tzc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"tzK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Low-Security Recreation" }, -/area/prison/residential/south) -"ldR" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"tzP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/visitation) +"tzX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/cellblock/lowsec/se) -"leU" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"lfT" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/prison/recreation/highsec/s) -"liM" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/box/lights, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"ljn" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/research) -"lks" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"llz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/highsec_medsec) -"llD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkred2" - }, -/area/prison/cellblock/mediumsec/east) -"lmt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluefull" - }, -/area/prison/cellblock/protective) -"lmA" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/storage/vip) +"tzZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"lnV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/south) -"lpo" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/security/monitoring/lowsec/ne) -"lqe" = ( -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"lrB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"tAm" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/visitation) +"tAw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/containment) +"tAx" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/area/prison/cellblock/mediumsec/east) -"ltv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/storage/medsec) -"lxE" = ( -/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/prison/whitegreen, +/area/prison/medbay/surgery) +"tAI" = ( +/obj/effect/landmark/railgun_camera_pos, /turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"lyj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"lyJ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/hanger/main) +"tAS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/medsec/south) +"tBc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/medbay/foyer) -"lzy" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/central/east) -"lzz" = ( -/turf/open/shuttle/elevator, -/area/prison/hallway/central/west) -"lAE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/quarters/research) +"tBn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"tBT" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/prison/research/secret/containment) +"tCa" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/west) +"tCh" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/prison/cellblock/mediumsec/north) +"tCl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "chapel" - }, -/area/prison/chapel) -"lBC" = ( +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/north) +"tCp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"tCH" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/prison/cellblock/highsec/north/north) +"tDb" = ( +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/prison/green, +/area/prison/quarters/staff) +"tDf" = ( +/obj/item/clothing/under/color/orange, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"tDp" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/cellblock/protective) -"lCQ" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/organic/grass, -/area/prison/residential/north) -"lDd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "research_secret"; - name = "Classified Research Shutters" +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Access"; + pixel_x = -22; + pixel_y = 10 }, -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/prison/research/secret) -"lGA" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"tDu" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/prison/medbay) +"tDw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/red/west, +/area/prison/security/monitoring/highsec) +"tDD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/monitoring/lowsec/ne) -"lHc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"lIk" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret) +"tEq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"tEr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"lIs" = ( -/turf/closed/wall/prison, -/area/prison/hallway/central/west) -"lJd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "Staff-Research Maintenance" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"tEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/ne) +"tEU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"lJo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison, +/turf/open/floor/prison/darkyellow2/west, /area/prison/telecomms) -"lME" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/security/checkpoint/highsec_medsec) -"lMU" = ( +"tEY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" + dir = 10 }, -/area/prison/security/checkpoint/highsec_medsec) -"lQK" = ( -/obj/item/trash/c_tube, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"lRJ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"tFu" = ( +/obj/structure/platform{ dir = 1 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"tFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/corpsespawner/prison_security, /turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"lUS" = ( -/obj/structure/sign/poster{ - icon_state = "poster_agents"; - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"lVe" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/prison/research) -"lVw" = ( -/obj/item/trash/cheesie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/area/prison/hallway/central/south) +"tFP" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 }, -/area/prison/cellblock/lowsec/nw) -"lWT" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"tFQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/bright_clean_marked, +/area/prison/research/secret) +"tGr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"mbk" = ( -/obj/structure/lz_sign/prison_sign, -/turf/open/floor/plating, -/area/prison/hanger/main) -"mbv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/turf/open/floor/prison/green/north, +/area/prison/quarters/staff) +"tGO" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"tGV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"mbG" = ( -/obj/structure/largecrate/random, -/obj/item/toy/deck/uno{ - pixel_y = 12 +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay/surgery) +"tHp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"mbP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"tHL" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/security/checkpoint/highsec_medsec) -"mca" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"tHZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/bed/chair{ +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/south) +"tIh" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"mdH" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"med" = ( -/turf/closed/shuttle/elevator/freight, -/area/prison/hallway/central/west) -"meS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"mfQ" = ( +/turf/open/floor/carpet, +/area/prison/residential/north) +"tIn" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"mjI" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/wood, -/area/prison/quarters/research) -"mkc" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"tIo" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"tIt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Intake Processing" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"tIF" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/prison/hangar_storage/main) +"tIO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"tJc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/maxsec_highsec) +"tJr" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/prison/hallway/east) +"tJM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 6 }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/green, +/area/prison/security/monitoring/lowsec/sw) +"tJZ" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"tKe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/prison/residential/north) -"mpg" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"mpt" = ( +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"tKt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/flasher_button{ + id = "suspended_WWN"; + pixel_x = 24 }, -/area/prison/residential/north) -"mpA" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"mqW" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"tKy" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"mrg" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"tKF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/store) -"mxM" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"tKX" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/residential/central) +"tKY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"tLm" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/bluefull, +/area/prison/residential/central) +"tLw" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "yellowcorner" + pixel_x = -4 }, -/area/prison/cellblock/mediumsec/east) -"myY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - icon_state = "exposed10-supply" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/lowsec/nw) +"tLV" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/shuttle/black, +/area/prison/pirate) +"tLX" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"mAn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"tLY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"tMB" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"tMJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" + icon_state = "N" }, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"tMS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"tMY" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"tNb" = ( +/turf/open/floor/prison/southwest, +/area/prison/security/checkpoint/highsec/n) +"tNd" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/maintenance/residential/access/south) -"mAT" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/vip) +"tNL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/south) -"mBJ" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/medbay) +"tNU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"tNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/testing) +"tOd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/area/prison/cellblock/highsec/south/north) -"mCC" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"tOg" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/south/south) +"tOy" = ( /obj/structure/surface/table/reinforced{ - dir = 8; + dir = 4; flipped = 1 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"tOH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "research_secret"; + name = "Classified Research Shutters" }, -/area/prison/cellblock/mediumsec/south) -"mDi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research/secret) +"tOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/mediumsec/south) -"mFF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"tOU" = ( /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"mGQ" = ( +/area/prison/hallway/central/west) +"tPv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"tPD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"mHQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/highsec/north/south) -"mJH" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "yellow" +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/medbay/foyer) +"tPH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "Medium-Security Storage" }, -/area/prison/cellblock/mediumsec/south) -"mLi" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/storage/medsec) +"tQb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/nw) +"tQM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/green/west, +/area/prison/hallway/staff) +"tQS" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"tQU" = ( +/turf/open/floor/chapel/west, +/area/prison/chapel) +"tRc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"tRd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/prison/cellblock/mediumsec/north) -"mLG" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/prison/hallway/central/south) -"mMO" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/east) +"tRZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"tSm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"mNU" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"mOu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/prison/cellblock/protective) -"mOL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 + dir = 9 }, -/turf/open/floor/carpet, -/area/prison/residential/north) -"mPy" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating, -/area/prison/research/secret/bioengineering) -"mQp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"tSp" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"mSe" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"tSx" = ( +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison/darkred2/west, +/area/prison/intake) +"tSB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/cellblock/mediumsec/east) +"tTo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"tTq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/carpet, +/turf/open/floor/prison/sterile_white, /area/prison/residential/south) -"mSQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10 - }, -/area/prison/cellblock/highsec/south/north) -"mVf" = ( +"tTu" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"mVq" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"tTD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"tTR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/hallway/central/south) -"mWT" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/maxsec/north) +"tUa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"mWZ" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/north) +"tUe" = ( +/obj/effect/landmark/corpsespawner/prison_security, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/west) -"mYM" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/item/weapon/gun/rifle/m16, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "pirate_cargo"; + name = "Rocinante Cargo Bay Door" }, -/area/prison/cellblock/mediumsec/north) -"mZt" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ +/turf/open/floor/delivery, +/area/prison/pirate) +"tUg" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"ncG" = ( -/obj/structure/window_frame/prison, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"ncT" = ( -/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkyellow2/northeast, +/area/prison/storage/medsec) +"tUo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"tUq" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/highsec/south/north) +"tUL" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/se) +"tUS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"tUU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner/west, +/area/prison/cellblock/mediumsec/north) +"tVf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"tVD" = ( +/turf/open/floor/prison/red/southeast, +/area/prison/security/checkpoint/highsec/s) +"tVN" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/platform{ + dir = 8 }, -/area/prison/cellblock/mediumsec/east) -"ndk" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"tVP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/cellblock/highsec/north/south) +"tWg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"tWi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" - }, -/area/prison/cellblock/mediumsec/south) -"ndE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"tWm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) -"ndW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +"tWF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/protective) +"tWZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/residential/south) -"niK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"tXh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"tXr" = ( +/obj/structure/bed/chair/office/dark{ dir = 4; - icon_state = "cell_stripe" + layer = 3.25 }, -/area/prison/cellblock/mediumsec/south) -"niY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"tYE" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/west) +"tZu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"tZT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"uaf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/green/southeast, +/area/prison/cellblock/lowsec/nw) +"uak" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"uaQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/security/checkpoint/highsec/s) -"nkB" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"uaR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/obj/item/ammo_casing, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"uaY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/hanger/research) -"nmr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/shuttle/black, +/area/prison/pirate) +"ubb" = ( +/turf/open/floor/prison/darkyellow2/southeast, /area/prison/telecomms) -"non" = ( -/obj/structure/machinery/washing_machine{ - desc = "The bottom portion of the machine of dread. The second oen, it beckons." +"ubI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/grilledcheese, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"ucw" = ( +/turf/open/floor/prison/blue/north, +/area/prison/security/checkpoint/vip) +"ucC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/washing_machine{ - desc = "The double washing machine in common spacer folklore signifies doom to all who gaze upon it."; - pixel_y = 15 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/green/north, +/area/prison/hallway/central/west) +"ucU" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/prison/hallway/central/east) +"udi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/prison/residential/central) -"npb" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"uds" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) -"nsx" = ( -/turf/closed/wall/prison, -/area/prison/kitchen) -"nuw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/north) -"nxt" = ( -/obj/structure/machinery/light{ +"udY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/central) -"nyk" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"uet" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/darkyellow2, +/area/prison/telecomms) +"ueB" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "Security Booth" }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/medsec/central) +"ufb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/security/checkpoint/highsec_medsec) -"nyy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"nzm" = ( -/obj/structure/pipes/standard/simple/visible/yellow{ - dir = 4 +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"ufy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/turf/open/floor/plating, -/area/prison/engineering/atmos) -"nDg" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/n) +"ufG" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/cellblock/protective) +"ugo" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"ugy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y" }, -/turf/open/floor/grass, -/area/prison/residential/south) -"nFQ" = ( -/obj/effect/alien/weeds/node, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -32 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"uhs" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/vip) +"uhL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkred2/east, +/area/prison/security) +"uhW" = ( +/obj/structure/sink{ dir = 8; - icon_state = "red" + pixel_x = -12 }, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"uim" = ( +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/south/south) -"nGQ" = ( +"uiq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/medsec/south) +"uiR" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"ujq" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/south/north) +"ujw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"ujD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/armory/lethal) +"ukF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/south) +"ukL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison, +/area/prison/maintenance/hangar_barracks) +"ukW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/north) -"nGR" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/organic/grass, -/area/prison/residential/south) -"nIx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"ume" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/hangar) +"ump" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"umA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellowcorners2, +/area/prison/hanger/main) +"umK" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"nIV" = ( -/obj/structure/window/reinforced{ +/area/prison/security/monitoring/highsec) +"umL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/window/brigdoor/southright, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Cell Access" }, -/area/prison/cellblock/highsec/south/south) -"nJm" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/south) +"umM" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"unp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 9 + }, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"unO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/prison, -/area/prison/telecomms) -"nJw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/medbay/foyer) -"nKg" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"nKm" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/prison{ - icon_state = "redfull" +/area/prison/cellblock/highsec/south/north) +"unX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/hallway/central/west) -"nLr" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/testing) +"unZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/north) +"uoo" = ( +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"uoq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor{ - icon_state = "asteroid" +/turf/open/floor/prison/blue, +/area/prison/cellblock/vip) +"upm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/residential/south) -"nLC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison, +/area/prison/cleaning) +"ups" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/rampbottom, +/area/prison/holding/holding2) +"upM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/closed/wall/prison, -/area/prison/library) -"nLD" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"nMM" = ( -/obj/item/handset, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/turf/open/floor/prison/bright_clean_marked, +/area/prison/yard) +"upQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/vip) -"nMW" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding6" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hallway/engineering) +"upS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/organic/grass, -/area/prison/residential/north) -"nNc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"upT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/hangar) +"upU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/residential/south) -"nPN" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/north) +"uqf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"uqh" = ( +/turf/open/floor/prison/bluecorner/east, +/area/prison/cellblock/protective) +"uql" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"uqH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/plating, -/area/prison/hallway/central/south) -"nQh" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/area/prison/monorail/west) +"uqN" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"urF" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/research) +"urK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"usi" = ( +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = -32 }, -/area/prison/security/checkpoint/highsec/s) -"nSK" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"ust" = ( +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"usU" = ( +/obj/structure/bed, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/open/shuttle/black, +/area/prison/pirate) +"uta" = ( +/obj/structure/toilet{ dir = 8; - health = 80 - }, -/obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" + pixel_x = -4 }, -/area/prison/research) -"nTn" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/prison/security/monitoring/highsec) -"nUH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"utb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"nVg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/turf/open/floor/prison/green/northwest, +/area/prison/cellblock/lowsec/se) +"utd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"utl" = ( +/turf/open/floor/prison/green, /area/prison/hallway/central/east) -"nWl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Low-Security" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +"utL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"uuw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/area/prison/hallway/central/south) -"nWJ" = ( /turf/open/floor/prison, -/area/prison/cellblock/mediumsec/south) -"nXE" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/organic/grass, -/area/prison/residential/south) -"nXF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "South High-Security Recreation" +/area/prison/cellblock/highsec/south/north) +"uuW" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding10" }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"uvb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/prison/hallway/east) +"uvg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/recreation/highsec/s) -"nXN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/south) +"uvk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/barcardine, +/turf/open/floor/prison/bluefull/west, +/area/prison/cellblock/protective) +"uvF" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/prison/maintenance/residential/sw) +"uvR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"uvW" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison, +/area/prison/hanger/main) +"uwh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 4 }, -/area/prison/telecomms) -"nYP" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"uwo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/research/secret/containment) -"nZP" = ( -/obj/structure/bed/chair/office{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"uwq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 }, -/area/prison/cellblock/lowsec/nw) -"obV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/freezerfloor, +/area/prison/quarters/research) +"uwO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/cellblock/mediumsec/south) -"ocS" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/telecomms) +"uxa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/hallway/central/north) -"odp" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"uxf" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/north/south) +"uxI" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"ogu" = ( -/obj/structure/surface/table, -/obj/item/book/codebook, -/turf/open/floor/wood, -/area/prison/quarters/research) -"ogF" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/plating, -/area/prison/hallway/central/west) -"oip" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/darkred2/northwest, +/area/prison/visitation) +"uyw" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/prison/hallway/east) +"uzn" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/hangar_storage/main) +"uzy" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/monorail/east) +"uzN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"old" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/south) +"uAq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"omn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"uAL" = ( +/obj/structure/bed/chair/office{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"uBG" = ( +/turf/open/floor/prison/darkredcorners2, +/area/prison/security) +"uBY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "emergency lockdown"; + use_power = 0 }, -/area/prison/canteen) -"omu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellowcorner" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/mediumsec/east) +"uDO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"uEa" = ( +/turf/open/floor/prison/floor_plate, /area/prison/cellblock/mediumsec/north) -"ona" = ( +"uEz" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Access"; + pixel_x = 22; + pixel_y = 10 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"uEJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "Staff-Research Maintenance" }, -/area/prison/maintenance/residential/access/south) -"onp" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"uET" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/execution) +"uFc" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/north) +"uFf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("PRISON") }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"uFu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"uFF" = ( +/turf/open/floor/prison/red/northwest, +/area/prison/recreation/highsec/n) +"uFR" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/prison/storage/medsec) +"uGf" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/west) +"uGi" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/prison/hanger/research) -"onA" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"oog" = ( -/obj/structure/lattice, -/obj/structure/monorail, -/turf/open/space, -/area/space) -"ooE" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "biological_testing_2"; + name = "Containment Shutter Control" }, -/turf/open/organic/grass, -/area/prison/residential/south) -"oqC" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"uGA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/monorail/west) -"oqL" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"uGU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"uHc" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"uHo" = ( +/obj/item/shard, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"uHD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"uHI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"osO" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"uHN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"uIp" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/prison/cellblock/mediumsec/south) +"uIq" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"uIH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"oud" = ( -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/darkred2/west, +/area/prison/security) +"uIM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/highsec/south/north) -"ovc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"oxQ" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/research/secret/testing) +"uIO" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"uIU" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/northeast, +/area/prison/hallway/east) +"uJo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"uJr" = ( +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/n) +"uJA" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/north/north) +"uJT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/west) -"oxT" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/prison/research/secret/containment) +"uKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/sw) +"uKB" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"uKC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/prison/storage/medsec) -"oyQ" = ( -/obj/structure/platform{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"uKJ" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/hangar_storage/main) +"uKP" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/canteen) -"oyZ" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"uLy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/holding/holding1) -"oAs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/plating, +/turf/open/floor/prison/blue/west, /area/prison/residential/central) -"oBE" = ( -/obj/item/handset, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison, -/area/prison/recreation/medsec) -"oBG" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"oCD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"uLX" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"uMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"oDn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/prison/darkyellow2/east, +/area/prison/telecomms) +"uMo" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/residential/central) -"oEr" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/security/monitoring/protective) -"oFh" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"uMK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Holding Cell 1" - }, -/turf/open/floor/plating, -/area/prison/holding/holding1) -"oHo" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/appletart, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + name = "Southeast Low-Security Cellblock" }, -/area/prison/canteen) -"oHs" = ( +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/se) +"uML" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/north) -"oIj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay/surgery) +"uNx" = ( +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"uNZ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/darkbrown2/west, +/area/prison/hallway/east) +"uOp" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"uOt" = ( +/obj/structure/machinery/door/window/eastright, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"oIw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/toilet/security) -"oJi" = ( -/obj/structure/platform{ +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"uOu" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding4" }, -/area/prison/hanger/research) -"oLL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"uOB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"uOD" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/security/monitoring/lowsec/ne) -"oNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/protective) +"uOJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/lowsec/ne) +"uPx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/south) +"uPE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Central Ring" }, -/area/prison/hanger/research) -"oNp" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"uPP" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/telecomms) -"oNG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/green/north, +/area/prison/security/monitoring/lowsec/sw) +"uQl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"uQz" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"uQA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"uQB" = ( +/turf/open/floor/prison/yellowcorner, +/area/prison/cellblock/mediumsec/south) +"uQH" = ( +/obj/effect/decal/siding{ + icon_state = "siding4" }, -/area/prison/hanger/research) -"oOJ" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"uQU" = ( /obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/briefing) +"uQV" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"oPm" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"uRg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"oTg" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/prison/security/monitoring/lowsec/sw) +"uRj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurplecorner/north, +/area/prison/research/secret/bioengineering) +"uRv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/hallway/central/west) -"oTO" = ( -/obj/item/storage/bible/booze, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"uRR" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/rampbottom/east, +/area/prison/yard) +"uSb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/prison/residential/central) -"oUR" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"oVm" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/shuttle/black, +/area/prison/pirate) +"uSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "North High-Security Recreation" + }, +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/n) +"uSQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"uTc" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"uTm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/se) -"oWU" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/prison, +/area/prison/residential/central) +"uTx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 2; + name = "Security Records" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"uTy" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/nw) +"uTA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec_medsec) +"uTG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"uTK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/south) -"oXr" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/green/east, +/area/prison/hallway/staff) +"uUd" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/south) +"uUG" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"oZV" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/medbay/foyer) +"uUH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/residential/south) -"paf" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/prison/research/secret/containment) +"uUO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -47240,2393 +33959,3263 @@ dir = 6 }, /turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"pau" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/prison/cellblock/maxsec/south) -"pcb" = ( +/area/prison/hallway/central/south) +"uUW" = ( +/turf/open/floor/prison/darkred2/southeast, +/area/prison/visitation) +"uVa" = ( +/turf/open/floor/prison/red/northwest, +/area/prison/recreation/highsec/s) +"uVB" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"uVN" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"uWi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "red" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec) +"uWt" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"uWv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/highsec/south/south) -"pcP" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"pcU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Visitation" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"uWQ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"uXn" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/visitation) -"peF" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"pfk" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"pft" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/cellblock/mediumsec/north) +"uXv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/telecomms) -"pgg" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"pib" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Morgue" +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"uYb" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/toilet/canteen) +"uYg" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"uZf" = ( +/obj/structure/bed, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/south) +"uZT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"pkV" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"vac" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/hangar) +"vav" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/south) -"pmO" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/platform{ - dir = 8 +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"vax" = ( +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"vaA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"vaW" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 10 }, -/area/prison/hallway/central/north) -"pnT" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"poa" = ( -/obj/structure/surface/table/reinforced, +/area/prison/cellblock/highsec/north/south) +"vba" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/visitation) +"vbf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"vbh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 + }, +/turf/open/floor/wood, +/area/prison/library) +"vbj" = ( +/obj/structure/pipes/binary/pump/high_power/on, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/engineering/atmos) +"vbk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"vbM" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/ne) +"vbU" = ( +/obj/structure/machinery/door/window/northleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"vca" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/prison/canteen) -"pob" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"vcv" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/hanger/main) +"vcR" = ( /obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/highsec/north/south) -"ppb" = ( -/obj/structure/bed/chair/comfy{ +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"vda" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/prison/maintenance/residential/nw) +"vdb" = ( +/obj/structure/largecrate/random, +/obj/item/coin/diamond, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"vdi" = ( +/obj/structure/toilet{ dir = 4 }, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/protective) +"vdH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"pph" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/box/lights, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"ppz" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/north) +"vdM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/highsec/n) +"vdN" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/south) +"vdT" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"pqi" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/darkbrown2/northeast, +/area/prison/intake) +"vdU" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/north) +"vea" = ( +/obj/item/tool/screwdriver, +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = 21 }, -/area/prison/cellblock/mediumsec/south) -"prq" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/south) +"vef" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Access"; - pixel_x = -22; - pixel_y = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/hallway/entrance) -"prF" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/monorail/east) +"veB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/highsec/south/south) -"ptn" = ( -/obj/item/device/radio/headset, -/turf/open/floor/prison, -/area/prison/telecomms) -"puK" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/library) -"pvE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"veM" = ( +/turf/open/floor/prison/darkpurple2, +/area/prison/research/secret) +"vfe" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/west) -"pvG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/yard) -"pvI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/area/prison/maintenance/residential/access/south) +"vfI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/cellblock/highsec/south/north) -"pvJ" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"vfK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "Morgue" }, +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"vfV" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/protective) +"vgo" = ( +/turf/open/floor/prison/bright_clean/southwest, /area/prison/hallway/central/south) -"pwl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +"vgH" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/area/prison/hallway/central/south) -"pxa" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/south/north) +"vhb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/hallway/central/south) -"pzJ" = ( -/turf/open/floor/plating, -/area/prison/holding/holding1) -"pDH" = ( -/obj/item/stack/cable_coil/cut{ - amount = 1; - icon_state = "coil1"; - name = "cable piece" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"vhl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/stack/rods, -/obj/item/ammo_casing, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"pEk" = ( -/obj/structure/bed/chair/office{ +/turf/open/floor/prison/green/southeast, +/area/prison/security/monitoring/lowsec/ne) +"vhs" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"pFp" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/north/south) +"vhQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"vic" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/hangar_storage/main) -"pGf" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/blue/west, +/area/prison/command/secretary_office) +"vix" = ( +/turf/closed/wall/prison, +/area/prison/security/monitoring/protective) +"viy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellow2, +/area/prison/engineering) +"viZ" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/south) +"vkc" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"vkt" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"vkF" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"vkJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/prison/security/checkpoint/maxsec) -"pGv" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +/turf/open/floor/prison/darkyellow2/northeast, +/area/prison/hanger/main) +"vkU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/west, +/area/prison/research/RD) +"vlR" = ( +/turf/open/floor/prison/darkyellow2/west, /area/prison/telecomms) -"pHT" = ( -/obj/structure/pipes/vents/pump{ +"vmm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/storage/medsec) +"vmw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/prison/green, +/area/prison/security/monitoring/lowsec/sw) +"vmD" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"vmQ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"vmX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, /turf/open/floor/plating, /area/prison/maintenance/residential/sw) -"pIv" = ( -/obj/structure/machinery/light/small{ +"vnf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/highsec/s) +"vnh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"pIK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/yellow/east, +/area/prison/recreation/medsec) +"vnn" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"vno" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/hallway/central/south) -"pPB" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hallway/central/west) -"pPF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/south) +"vnq" = ( +/turf/closed/wall/prison, +/area/prison/cellblock/maxsec/south) +"voc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"voK" = ( +/turf/open/floor/prison/yellow/northeast, +/area/prison/security/checkpoint/medsec) +"vpn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/prison/cellblock/highsec/south/north) -"pSO" = ( -/obj/item/shard, -/obj/item/stack/rods, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/sw) +"vpA" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"pVz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"pWq" = ( -/obj/item/handset, +/area/prison/maintenance/residential/access/south) +"vpC" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"vpP" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hangar_storage/research) +"vpV" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"vqj" = ( +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/prison/cell_stripe, /area/prison/cellblock/lowsec/nw) -"pXk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +"vqF" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/prison/hanger/research) -"pXC" = ( +/obj/structure/machinery/door/window/brigdoor/northleft, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"vqO" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair{ - dir = 1 +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/cellblock/mediumsec/east) +"vqW" = ( +/turf/open/floor/prison/yellow/southwest, +/area/prison/cellblock/mediumsec/south) +"vrq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"pZu" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/canteen) +"vrs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"vrH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/east) -"qai" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "rampbottom" +"vrO" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/maintenance/residential/nw) -"qbj" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/hallway/central/south) -"qbV" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"vsf" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/prison/cellblock/highsec/south/south) -"qco" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen, +/area/prison/cellblock/mediumsec/north) +"vsg" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/telecomms) -"qdT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"vsm" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/maxsec) +"vsr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/west, +/area/prison/research/RD) +"vsQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"vsY" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 }, -/obj/effect/landmark/item_pool_spawner/prison_lock, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/maxsec) -"qgb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"vti" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"vtp" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/testing) +"vtx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/hanger/research) -"qjI" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"qki" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/n) +"vtL" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/hangar) +"vux" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/prison/residential/central) -"qla" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"vuM" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/south) -"qlh" = ( +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"vuS" = ( +/turf/open/floor/prison/rampbottom/east, +/area/prison/hanger/main) +"vuZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"vvf" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"vvj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/bioengineering) +"vvw" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/lowsec/sw) +"vvJ" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"vwi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"vwM" = ( +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"vwQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"vxk" = ( +/obj/structure/surface/table/reinforced, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"vxm" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"vxV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"vyi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hanger/research) -"qqm" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Research Hallway" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"vyj" = ( +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/testing) +"vyL" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/entrance) +"vyW" = ( +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/se) +"vzi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitegreen/southwest, +/area/prison/residential/central) +"vzn" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"vzs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/prison/hallway/central/north) -"qqn" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/north) +"vzu" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"qtz" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/organic/grass, -/area/prison/residential/south) -"qun" = ( -/turf/open/organic/grass, -/area/prison/residential/south) -"qwg" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/prison/hanger/research) -"qxY" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"vzA" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/security/checkpoint/highsec/s) -"qzW" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/yellow/north, +/area/prison/security/checkpoint/medsec) +"vzC" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/mirror{ + pixel_y = 28 }, +/turf/open/floor/prison/sterile_white, /area/prison/residential/north) -"qEB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "Infirmary" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/medbay/foyer) -"qEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"vzK" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"vzM" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"qHj" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "map_lockdown"; - name = "Timed Emergency Blast Door"; - unacidable = 1; - use_power = 0 +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding2" }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"vzU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/prison/cellblock/mediumsec/south) -"qIb" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"qIg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"qKo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"vAg" = ( +/obj/structure/bed/chair/office, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"vAi" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" }, -/area/prison/hallway/central/north) -"qLI" = ( -/turf/open/floor/grass, +/turf/open/floor/asteroid, /area/prison/residential/south) -"qMp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/door/window/brigdoor/northleft, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/cellblock/highsec/south/south) -"qNw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" - }, -/area/prison/cellblock/highsec/south/north) -"qNS" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, +"vAp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison, +/area/prison/medbay/morgue) +"vAs" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"qOc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/prison/cellblock/mediumsec/east) +"vAy" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/turf/open/floor/plating, +/turf/open/floor/prison/yellowfull, /area/prison/cellblock/mediumsec/west) -"qSx" = ( -/obj/structure/bed/chair{ +"vAO" = ( +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/engineering) +"vAR" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/prison/maintenance/residential/ne) +"vBz" = ( +/obj/structure/toilet, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"vBT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/prison/cellblock/mediumsec/south) -"qXa" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/space) -"qYn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tank/air, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/engineering) +"vCf" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hallway/engineering) +"vCN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/hallway/central/west) -"rba" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/canteen) -"rdD" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"vCU" = ( /obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/light, /turf/open/floor/carpet, -/area/prison/residential/south) -"req" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison, -/area/prison/storage/vip) -"rgx" = ( -/obj/structure/disposalpipe/segment{ +/area/prison/residential/central) +"vCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"rhV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Medium-Security Storage" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" + health = 80 }, -/area/prison/storage/medsec) -"rjx" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/prison/cellblock/protective) -"rpB" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/machinery/light{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"vDc" = ( +/obj/structure/pipes/standard/simple/hidden/yellow{ dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/central) -"rqF" = ( -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/monitoring/medsec/central) -"rqT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/prison/darkyellow2, +/area/prison/hallway/engineering) +"vDi" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/maintenance/hangar_barracks) -"rrG" = ( +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/highsec/south/north) +"vDy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkred2" - }, -/area/prison/cellblock/mediumsec/east) -"rsG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/prison/residential/south) -"rtS" = ( -/obj/structure/closet, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/wood, -/area/prison/quarters/research) -"ruu" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/residential/north) -"ruY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"rvs" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"rvO" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/recreation/highsec/n) +"vDQ" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/highsec_medsec) +"vEh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Visitation" + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"vEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/bioengineering) +"vEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/east, /area/prison/cellblock/mediumsec/south) -"rxa" = ( -/obj/structure/platform{ - dir = 1 +"vEO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/redcorner, +/area/prison/recreation/highsec/n) +"vEW" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/prison/hallway/central/north) -"rxG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"vFq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkred2/north, +/area/prison/security/briefing) +"vFr" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/west, +/area/prison/security) +"vGk" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"vGw" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"vGN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Toilet" }, -/area/prison/cellblock/mediumsec/south) -"rDG" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/prison/recreation/highsec/n) +"vGT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/south) +"vHk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/central/south) +"vHy" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"vHX" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/south) +"vIc" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/cellblock/mediumsec/east) +"vIw" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research/secret/testing) +"vJe" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.1 }, -/area/prison/hallway/east) -"rDL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/hallway/central/west) -"rFO" = ( -/obj/structure/platform{ +"vJz" = ( +/obj/structure/bed, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"vJE" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure/colony{ + dir = 2; + name = "Rocinante Secondary Airlock" + }, +/turf/open/shuttle/black, +/area/prison/pirate) +"vJQ" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/north) +"vKa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/se) +"vLi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"vLt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/north/north) +"vLw" = ( +/turf/open/floor/prison/darkpurplecorners2/west, +/area/prison/hanger/research) +"vLx" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) -"rKA" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +"vLG" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/mediumsec/north) +"vMf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/telecomms) -"rLO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"rMk" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/south) +"vMj" = ( +/obj/structure/machinery/door/airlock/prison{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/cell_stripe/east, +/area/prison/research/secret/bioengineering) +"vMQ" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/yard) -"rOL" = ( -/obj/structure/barricade/handrail/type_b{ +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"vNu" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/tank/air, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"rQD" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"vND" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"rRJ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison, -/area/prison/telecomms) -"rSg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/west) -"rSp" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"rWA" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"rXA" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/red, +/area/prison/security/monitoring/highsec) +"vNH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/prison/quarters/research) -"rYg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/blue/east, +/area/prison/cellblock/protective) +"vNN" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"rZk" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"vNS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1 }, -/area/prison/cellblock/mediumsec/south) -"saD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"vNW" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"vNX" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/checkpoint/maxsec) +"vNY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"vOb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/telecomms) -"sdq" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/s) +"vOe" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/quarters/research) +"vOn" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/prison/hallway/central/west) -"seq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret/containment) +"vOA" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison, -/area/prison/residential/central) -"shN" = ( +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/vip) +"vOT" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreen/north, +/area/prison/residential/central) +"vPb" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"vPi" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding3" }, -/area/prison/hallway/central/east) -"smr" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"soD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/south) -"spV" = ( +/turf/open/floor/asteroid, +/area/prison/residential/north) +"vPr" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/closed/wall/resin, +/area/prison/cellblock/highsec/south/north) +"vPv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/prison/cellblock/mediumsec/north) -"sqS" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/blue/east, +/area/prison/command/secretary_office) +"vQe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/highsec/south/north) +"vQi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"srr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "red" + icon_state = "pipe-c" }, -/area/prison/cellblock/highsec/south/north) -"ssB" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay/surgery) +"vQn" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/shuttle/elevator, +/area/prison/hallway/central/west) +"vQv" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/prison/darkyellow2/southwest, +/area/prison/telecomms) +"vQM" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/yellowcorner/north, /area/prison/cellblock/mediumsec/north) -"ssJ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "greenfull" - }, -/area/prison/quarters/research) -"ssZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/south) -"swk" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkred2" +"vQP" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 }, -/area/prison/cellblock/highsec/north/south) -"sxx" = ( -/obj/structure/machinery/light, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/ne) +"vRs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/n) +"vRP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/hallway/central/south) -"sye" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/entrance) +"vSw" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"vSy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/prison/cellblock/mediumsec/east) -"sBF" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" + dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"vSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/prison/storage/vip) -"sBQ" = ( +/turf/open/floor/prison/green/north, +/area/prison/security/monitoring/lowsec/ne) +"vSI" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/prison, -/area/prison/security/checkpoint/highsec_medsec) -"sEd" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/area/prison/recreation/medsec) +"vSK" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/area/prison/canteen) -"sGc" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"vSR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/cellblock/mediumsec/south) -"sGB" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/red/northeast, +/area/prison/recreation/highsec/n) +"vTh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/mediumsec/north) +"vTD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/checkpoint/maxsec_highsec) +"vTJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"vTM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/rampbottom/north, +/area/prison/maintenance/residential/sw) +"vUs" = ( +/turf/open/floor/prison/red/east, /area/prison/cellblock/highsec/north/north) -"sHe" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"vUW" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/medsec/central) +"vVd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Chapel" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/chapel) +"vVq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/prison/darkred2/east, +/area/prison/visitation) +"vVy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/cellblock/highsec/south/south) -"sHs" = ( +"vVB" = ( /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"sIA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"vWh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hanger/research) -"sLI" = ( -/obj/structure/lattice, -/obj/structure/monorail{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/space, -/area/space) -"sMm" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"vXi" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"sMK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"vXw" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"vXH" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 }, -/area/prison/cellblock/mediumsec/south) -"sOl" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"sQI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/bed/chair/office/dark, -/turf/open/floor/wood, -/area/prison/quarters/research) -"sSO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"sTb" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkred2" - }, -/area/prison/security/checkpoint/maxsec) -"sTy" = ( -/turf/closed/wall/resin, -/area/prison/cellblock/highsec/south/north) -"sUB" = ( -/turf/open/floor/prison, -/area/prison/cellblock/mediumsec/north) -"sVg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"vXP" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/monorail/east) +"vXR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"vYw" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"sYr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/prison/canteen) +"vYF" = ( +/obj/structure/monorail, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/maintenance/residential/access/south) +"vYZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet, -/area/prison/residential/south) -"taT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "SMES" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/south) +"vZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/prison/engineering) -"tcn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/whitepurple/east, +/area/prison/research/secret/testing) +"vZx" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/prison/canteen) -"tcY" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/poster{ - icon_state = "poster16"; - pixel_y = 32 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"tdq" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/kitchen, +/area/prison/toilet/canteen) +"vZN" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/north) +"vZP" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/prison/whitepurple/northeast, +/area/prison/research/secret/chemistry) +"wae" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/blue/west, +/area/prison/cellblock/protective) +"waI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"wbc" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/hangar_storage/main) +"wbf" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/prison/monorail/east) +"wbw" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/prison/storage/medsec) +"wbx" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"wbV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"wcc" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 1 + }, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"wcf" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/prison/bright_clean_marked/southwest, /area/prison/canteen) -"teg" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "emergency lockdown"; - use_power = 0 +"wcC" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/chemistry) +"wcQ" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/north/north) +"wcX" = ( +/obj/item/stack/cable_coil/cut{ + amount = 1; + icon_state = "coil1"; + name = "cable piece" }, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/south/south) +"wdd" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" - }, -/area/prison/cellblock/protective) -"tfd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding2) +"wdq" = ( +/obj/structure/bed, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"wdr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, +/turf/open/floor/wood, +/area/prison/security/monitoring/highsec) +"wdA" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, +/area/prison/maintenance/residential/access/south) +"wdK" = ( +/obj/structure/pipes/vents/pump/on, +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding5" + }, +/turf/open/floor/prison/sterile_white/southwest, /area/prison/residential/central) -"thW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"wdT" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret/containment) +"wej" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/obj/structure/platform{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"wew" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"weI" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"weN" = ( +/turf/open/floor/prison/yellow/northwest, +/area/prison/cellblock/mediumsec/west) +"wfR" = ( +/obj/structure/platform{ + dir = 8 }, -/area/prison/hallway/central/west) -"thZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "Medium-Security Storage" +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"wga" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"wgc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"wgd" = ( +/turf/open/floor/prison/blue/north, +/area/prison/cellblock/protective) +"wgl" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"wgV" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/prison/storage/medsec) -"tie" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/obj/structure/mirror{ + pixel_x = -26 }, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"whD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"whE" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/prison/research/secret/containment) +"whK" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"whO" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"wio" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2 }, -/area/prison/chapel) -"tjl" = ( -/obj/item/tool/screwdriver, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/east) +"wiY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "Security Barracks" }, -/area/prison/residential/north) -"tjU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/darkbrownfull2, +/area/prison/quarters/security) +"wjd" = ( +/turf/open/floor/prison/yellow, +/area/prison/cellblock/mediumsec/north) +"wju" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/wood, -/area/prison/chapel) -"tjV" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/spacecash/c500, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/prison/cellblock/lowsec/nw) -"tmn" = ( -/obj/structure/bed, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/structure/sign/poster{ + icon_state = "poster10"; + pixel_y = 32 }, -/area/prison/cellblock/highsec/north/south) -"toL" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"tpn" = ( -/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/wood, +/area/prison/quarters/research) +"wjO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"wjY" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"tso" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/area/prison/maintenance/residential/access/north) +"wkv" = ( +/turf/open/floor/prison/green/east, +/area/prison/hallway/staff) +"wkC" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"wkQ" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"wlc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"wlz" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/redfull, /area/prison/hallway/central/west) -"tuQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"wmn" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/prison/hanger/main) +"wmu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/turf/open/organic/grass, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/east) +"wmF" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/residential/north) -"tvF" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/candiedapple, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"tvM" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Access"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"wmM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/kitchen) -"twg" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/greencorner/east, +/area/prison/cellblock/lowsec/se) +"wnc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"wnl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/prison/darkred2/northwest, /area/prison/security/checkpoint/highsec/n) -"tzm" = ( +"wnu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding12" - }, -/turf/open/floor{ - icon_state = "asteroid" - }, -/area/prison/residential/north) -"tzJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" +/turf/open/floor/prison/redfull, +/area/prison/recreation/highsec/s) +"wnE" = ( +/obj/item/frame/table, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"wnZ" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"wob" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/recreation/medsec) +"woc" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"won" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/hanger/research) -"tAi" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"wox" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/bright_clean_marked, +/area/prison/yard) +"woA" = ( +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/south) -"tAI" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/plating, -/area/prison/hanger/main) -"tCH" = ( +"woN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/south/north) +"wpg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"wpi" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/medsec) +"wpt" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/n) +"wpE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"wpK" = ( /obj/structure/bed/chair, /turf/open/floor/prison, -/area/prison/cellblock/highsec/north/north) -"tDB" = ( -/obj/structure/machinery/light{ +/area/prison/security/checkpoint/maxsec) +"wpN" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"wqm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/checkpoint/maxsec) -"tFq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/obj/structure/mineral_door/resin, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Protective Custody Cells" + }, +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/protective) +"wqv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/prison/cellblock/highsec/south/north) -"tFH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/protective) +"wqL" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/north) +"wqR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/camera/autoname{ + network = list("PRISON") + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"wqZ" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, -/area/prison/hallway/central/south) -"tGy" = ( -/obj/structure/machinery/light, -/obj/item/paper/janitor, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/area/prison/maintenance/residential/nw) +"wrc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Protective Custody Cells" }, -/area/prison/residential/north) -"tGY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/protective) +"wrd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/south) +"wrn" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/prison/quarters/research) -"tHo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/cellblock/highsec/south/south) +"wrz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/defibrillator, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"wrE" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Hangar Landing Zone" }, -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/plating, +/area/prison/hanger/main) +"wsy" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/toilet/staff) +"wsL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/north) +"wsP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/checkpoint/highsec_medsec) +"wsV" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"wtj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/prison/hanger/research) -"tIh" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"wty" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ +/turf/closed/wall/r_wall/prison, +/area/prison/security/monitoring/medsec/central) +"wtP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"wuV" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"wvn" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret) +"wvG" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/carpet, -/area/prison/residential/north) -"tMB" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"tNh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/prison/whitepurple, +/area/prison/quarters/research) +"wvH" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/recreation/medsec) +"wvY" = ( +/obj/structure/largecrate/random, +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"wwz" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"wwC" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/prison/hanger/research) -"tNi" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/window/westright, +/turf/open/floor/freezerfloor, +/area/prison/security/head) +"wwE" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"wwZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/shuttle/black, +/area/prison/pirate) +"wxe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"wxL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" +/turf/open/floor/prison/darkyellow2, +/area/prison/storage/highsec/n) +"wxX" = ( +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) -"tOK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"tOU" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/west) -"tPi" = ( +"wxY" = ( +/obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/security/checkpoint/highsec_medsec) -"tTf" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = 8 +/obj/item/reagent_container/food/drinks/bottle/cognac, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"wyi" = ( +/turf/open/floor/prison/darkred2/northwest, +/area/prison/cellblock/highsec/north/south) +"wyk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"wyl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"wyp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/north) -"tWR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/prison/cellblock/highsec/north/north) -"tXB" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +"wyq" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/platebot, +/area/prison/pirate) +"wyF" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/protective) +"wyT" = ( +/obj/structure/pipes/vents/scrubber, /turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"uaB" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/south) -"uaW" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/prison/hanger/research) -"ucU" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/prison/hallway/central/east) -"udc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"udR" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/prison/maintenance/residential/sw) +"wyV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/cellblock/mediumsec/east) -"ufM" = ( -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/sw) +"wzf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/prison/red/southeast, /area/prison/recreation/highsec/s) -"ugC" = ( +"wzi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/prison/cellblock/highsec/south/north) -"uhE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" + dir = 5 }, -/area/prison/cellblock/mediumsec/east) -"umM" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"unw" = ( +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"wzu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" - }, -/area/prison/medbay/foyer) -"unO" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"wzN" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/south/north) -"upm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding6" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison, -/area/prison/cleaning) -"upJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) +"wzX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/whitepurple, +/area/prison/research) +"wAo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8; + network = list("PRISON") + }, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"wAI" = ( +/turf/open/floor/prison/rampbottom/north, +/area/prison/maintenance/hangar_barracks) +"wBl" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/south) +"wBW" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"wBX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/security/checkpoint/highsec_medsec) -"uqH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/n) +"wCn" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/prison/monorail/west) -"usx" = ( +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/secret/bioengineering) +"wCr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"wCB" = ( /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, +/turf/open/floor/prison/bright_clean2/southwest, /area/prison/cellblock/highsec/south/south) -"utI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/prison/telecomms) -"uuw" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "Security Booth" - }, -/turf/open/floor/prison, -/area/prison/cellblock/highsec/south/north) -"uuB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/canteen) -"uvb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/prison/hallway/east) -"uvF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"uvK" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +"wCC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/highsec/north/south) -"uwB" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/machinery/shower{ + dir = 4 }, -/area/prison/hallway/central/west) -"uyi" = ( +/turf/open/floor/podhatchfloor/north, +/area/prison/research/secret/testing) +"wCV" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec/n) +"wDv" = ( /obj/structure/surface/table/reinforced, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/canteen) -"uBB" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/prison/hangar_storage/main) -"uEn" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - density = 0; - icon_state = "door_open"; - name = "Staff Restrooms" - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"wDC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/toilet/staff) -"uEJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "Staff-Research Maintenance" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"uGU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/north, /area/prison/cellblock/mediumsec/south) -"uHU" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding2" - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "asteroid" +"wDJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/highsec/s) +"wEa" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/prison/residential/central) -"uIp" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/south) -"uJC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ +/turf/open/floor/prison/bright_clean_marked, +/area/prison/medbay) +"wEu" = ( +/obj/structure/sink{ dir = 8; - icon_state = "green" + pixel_x = -12 }, -/area/prison/monorail/west) -"uJE" = ( -/obj/item/handset, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/north) +"wFi" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/area/prison/cellblock/vip) -"uKd" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"wFl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"wFQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/prison/canteen) -"uKU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/medsec/south) +"wFT" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/canteen) -"uNi" = ( +/turf/open/floor/carpet, +/area/prison/residential/north) +"wGc" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/holding/holding1) +"wGB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/north, +/area/prison/research/secret/bioengineering) +"wGQ" = ( +/obj/structure/machinery/door/window/southright, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/research/secret/testing) +"wGU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/secure_data, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/prison/quarters/staff) -"uOB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"uOF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/highsec_medsec) +"wGX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"uOY" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"wHh" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/protective) +"wHq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/plating, +/area/prison/cellblock/highsec/south/south) +"wHw" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/hanger/research) +"wHC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "pirate_cargo"; + name = "Rocinante Cargo Bay Door" }, -/area/prison/residential/south) -"uQt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/delivery, +/area/prison/pirate) +"wHT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/darkred2/southeast, +/area/prison/security/monitoring/lowsec/sw) +"wIm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison, +/area/prison/hallway/entrance) +"wIv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/security/checkpoint/vip) -"uSv" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/structure/sign/nosmoking_1{ - pixel_x = -32 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"wIw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/protective) +"wIZ" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkyellow2/west, +/area/prison/engineering/atmos) +"wJq" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/residential/north) -"uSE" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/green/north, +/area/prison/hallway/staff) +"wKb" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"wKe" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "pipe-c" + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "bright_clean_marked" +/obj/structure/platform, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/security/checkpoint/highsec/s) +"wKf" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/prison/hanger/main) +"wKS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/medbay/foyer) -"uTm" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"wKU" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkred2/east, +/area/prison/security/armory/riot) +"wKZ" = ( +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/south) +"wLa" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"wLj" = ( +/turf/open/floor/prison/yellow/northeast, +/area/prison/cellblock/mediumsec/north) +"wMa" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"wMd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/south) +"wMt" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/north) +"wML" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/prison, +/area/prison/telecomms) +"wMT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) +"wNf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Northwest Low-Security Cellblock" + }, +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/nw) +"wNg" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/highsec/n) +"wNF" = ( +/turf/open/floor/prison/kitchen/southwest, /area/prison/residential/central) -"uTL" = ( -/obj/item/ammo_casing, -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 +"wNH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/canteen) +"wNI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/east) +"wNJ" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/pirate) -"uUO" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"wNP" = ( +/obj/structure/toilet, +/turf/open/floor/prison/cell_stripe/north, +/area/prison/cellblock/highsec/north/south) +"wOc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper/prison_station/inmate_handbook, +/obj/item/paper/prison_station/inmate_handbook, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"wOf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"wOA" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/prison/command/quarters) +"wOF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"wOK" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"wOX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/prison/red/east, +/area/prison/security/checkpoint/highsec/n) +"wPL" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security) +"wPN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Staff Hallway" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"uVR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/staff) +"wQd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreencorner/east, +/area/prison/medbay/surgery) +"wQu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/security/checkpoint/highsec/s) -"uWf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/hanger/research) +"wQC" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/se) +"wQD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/prison/cellblock/mediumsec/north) -"uXn" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkred2, +/area/prison/security/monitoring/highsec) +"wRy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/greencorner, +/area/prison/hallway/staff) +"wRC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/cellblock/mediumsec/north) -"uZm" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/mediumsec/north) -"vaW" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 10 +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"wRI" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/turf/open/floor/wood, +/area/prison/quarters/research) +"wRO" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/north/south) -"vbh" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"wRQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/red/east, +/area/prison/security/checkpoint/highsec/s) +"wSf" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/prison/research/secret/bioengineering) +"wSJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/hangar) +"wSU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/wood, -/area/prison/library) -"vda" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"vdb" = ( -/obj/structure/largecrate/random, -/obj/item/coin/diamond, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"vdU" = ( -/obj/structure/window/framed/prison, +/turf/open/floor/prison/whitepurplecorner, +/area/prison/research/secret/chemistry) +"wSW" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/plating, -/area/prison/cellblock/highsec/south/north) -"veb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/card/id/visa, -/turf/open/floor/prison{ +/area/prison/cellblock/highsec/south/south) +"wTr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/prison/residential/central) +"wTw" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "bluefull" + icon_state = "p_stair_full" }, -/area/prison/cellblock/protective) -"vfe" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/canteen) +"wTC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"wTF" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"vfK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "Morgue" +/area/prison/cellblock/mediumsec/east) +"wTG" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"wUn" = ( +/turf/open/floor/prison/whitepurple, +/area/prison/research/secret/bioengineering) +"wUw" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/prison, -/area/prison/medbay/morgue) -"vhZ" = ( -/obj/structure/machinery/computer/telecomms/server{ - req_one_access_txt = "19;200" +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/hanger/main) +"wUz" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/organic/grass, +/area/prison/residential/north) +"wUT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/telecomms) -"vix" = ( -/turf/closed/wall/prison, -/area/prison/security/monitoring/protective) -"viU" = ( +/turf/open/floor/prison/green/east, +/area/prison/hallway/central/south) +"wVa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/prison/cellblock/mediumsec/north) -"vmX" = ( +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"wWk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"wWr" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"vnq" = ( -/turf/closed/wall/prison, -/area/prison/cellblock/maxsec/south) -"voc" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/hallway/staff) +"wWA" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"vpt" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/darkred2, +/area/prison/hanger/main) +"wWB" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/prison, +/area/prison/security/monitoring/highsec) +"wWJ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/south/south) +"wXh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hallway/engineering) +"wXA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"vpA" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/prison/maintenance/residential/access/south) -"vsk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/north) +"wYG" = ( +/turf/open/floor/prison/yellowfull, +/area/prison/cellblock/mediumsec/west) +"wYK" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/prison/telecomms) +"wYO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) -"vvf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"vwc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Protective Custody Cells" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/yellow/east, +/area/prison/cellblock/mediumsec/south) +"wZd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/protective) -"vxy" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/green/southwest, +/area/prison/cellblock/lowsec/ne) +"wZL" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"xap" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"xas" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"xaw" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/whitegreen/east, +/area/prison/medbay) +"xaO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, /area/prison/security/checkpoint/highsec/n) -"vAs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"vAR" = ( -/obj/structure/machinery/light, +"xaT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating, -/area/prison/maintenance/residential/ne) -"vAT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/area/prison/maintenance/residential/sw) +"xba" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/prison/telecomms) -"vCU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/chemistry) +"xbP" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/prison/residential/central) -"vDC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "emergency lockdown"; - use_power = 0 +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) +"xbR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("PRISON") }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"xbW" = ( +/turf/open/floor/prison/darkred2, +/area/prison/security/briefing) +"xcH" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 6 }, -/area/prison/cellblock/mediumsec/east) -"vEi" = ( -/turf/open/floor/prison{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "darkpurplecorners2" + health = 80 }, -/area/prison/hanger/research) -"vGg" = ( -/obj/structure/largecrate/random, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/highsec/north/south) +"xcO" = ( +/obj/structure/bed, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/north/south) +"xdd" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/blue/north, +/area/prison/command/secretary_office) +"xdo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/west) +"xdG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison, +/area/prison/storage/vip) +"xdM" = ( +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/ne) +"xdT" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "Infirmary Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"xed" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 2; + name = "Biological Research Department" }, -/area/prison/hallway/central/west) -"vHX" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/south) -"vKN" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"xel" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/greencorner/north, +/area/prison/cellblock/lowsec/nw) +"xem" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"xev" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/monitoring/lowsec/ne) +"xfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/south) +"xfy" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/east) +"xfB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/south) +"xfF" = ( +/obj/structure/displaycase/destroyed, +/obj/item/shard, +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/research/RD) +"xfP" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/cellblock/maxsec/north) +"xfT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/cellblock/mediumsec/west) -"vKV" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/south) +"xgi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/security/checkpoint/highsec_medsec) -"vKZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "Security Booth" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"xgO" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/monorail/west) +"xgZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/prison/security/checkpoint/highsec/n) -"vPr" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/prison/hallway/east) +"xhn" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/closed/wall/resin, -/area/prison/cellblock/highsec/south/north) -"vQn" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/shuttle/elevator, -/area/prison/hallway/central/west) -"vRc" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/prison/research/secret/containment) +"xhD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Research Common Room" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkpurplefull2, +/area/prison/research) +"xia" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/prison/hallway/central/north) -"vTZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"xif" = ( +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"xil" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"xin" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red, +/area/prison/cellblock/highsec/north/south) +"xiB" = ( +/obj/structure/largecrate/random, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/prison/residential/central) -"vUy" = ( -/obj/structure/machinery/door/airlock/prison{ - density = 0; - icon_state = "door_open"; - opacity = 0 +/turf/open/floor/prison, +/area/prison/storage/medsec) +"xiH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/whitegreencorner/west, +/area/prison/medbay) +"xiY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security) +"xjn" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"xjq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/yellow/west, +/area/prison/cellblock/mediumsec/north) +"xjO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/prison/cellblock/mediumsec/east) -"vWd" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/cellblock/highsec/north/south) +"xjW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/north/south) +"xka" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "darkred2" +/turf/open/floor/prison/whitegreen, +/area/prison/medbay) +"xkh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/security/monitoring/lowsec/ne) +"xkt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Research Hangar Storage" }, -/area/prison/security/monitoring/highsec) -"vXR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"wav" = ( -/obj/structure/bed/chair, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/canteen) -"wdr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"xld" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/wood, -/area/prison/security/monitoring/highsec) -"wiC" = ( -/obj/structure/machinery/shower{ - pixel_y = 15 +/obj/structure/machinery/light, +/turf/open/floor/carpet, +/area/prison/residential/north) +"xlp" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/highsec/north/north) +"xls" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/red/west, +/area/prison/recreation/highsec/n) +"xlt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/cellblock/lowsec/se) -"wju" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/prison/redfull, +/area/prison/security/checkpoint/highsec/n) +"xlv" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"xly" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/sign/poster{ - icon_state = "poster10"; - pixel_y = 32 +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"xlE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"xlI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/medsec) +"xlM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/turf/open/floor/wood, -/area/prison/quarters/research) -"wpK" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/prison/security/checkpoint/maxsec) -"wqZ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating, -/area/prison/maintenance/residential/nw) -"wty" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/closed/wall/r_wall/prison, -/area/prison/security/monitoring/medsec/central) -"wvp" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"xmy" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/prison/telecomms) +"xmR" = ( +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/eastleft, /obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/maxsec/north) +"xnB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"xnK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/whitepurplecorner/east, +/area/prison/research) +"xoq" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/prison/blue/southeast, +/area/prison/parole/protective_custody) +"xox" = ( +/obj/structure/machinery/door_control{ + id = "riot_armory"; + name = "Riot Armory Access"; + pixel_x = -24 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"xoz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/highsec/south/south) +"xoF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/ne) +"xoK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Southwest Low-Security Cellblock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/greenfull, +/area/prison/cellblock/lowsec/sw) +"xoW" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"xoX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/prison/cellblock/lowsec/se) -"wvT" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/cellblock/lowsec/nw) -"wwc" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/prison/west, +/area/prison/research/RD) +"xpT" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/north) +"xqa" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/maxsec/south) +"xqs" = ( +/obj/structure/machinery/door/poddoor/two_tile/vertical/open{ + id = "riot_armory" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/armory/riot) +"xqt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret/dissection) +"xqv" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security) +"xqM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/prison/cellblock/highsec/south/south) -"wyo" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"xrg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay) +"xrt" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/prison/residential/north) -"wyT" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"wEQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/sw) +"xrx" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"xrG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/prison/cellblock/protective) -"wFn" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/maxsec/south) +"xrX" = ( /obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/hangar) +"xsi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/prison/darkyellow2/southwest, +/area/prison/hangar_storage/main) +"xsz" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/prison/research) +"xsX" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/weapon/gun/pistol/b92fs, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/lowsec/nw) +"xsY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/prison/maintenance/staff_research) +"xtl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/shuttle/black, +/area/prison/pirate) +"xtw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Intake Processing" }, -/area/prison/canteen) -"wFT" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkbrownfull2, +/area/prison/intake) +"xty" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/prison/residential/central) +"xtI" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/carpet, -/area/prison/residential/north) -"wHq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/west) +"xuf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Staff Quarters" + }, +/turf/open/floor/prison/greenfull, +/area/prison/quarters/staff) +"xuw" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"wIm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison, +/turf/open/floor/prison/floor_plate/southwest, /area/prison/hallway/entrance) -"wJl" = ( +"xuE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Lethal Armory" }, -/area/prison/hallway/central/east) -"wKt" = ( +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/armory/lethal) +"xuK" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" + dir = 8; + icon_state = "pipe-c" }, -/area/prison/medbay/foyer) -"wNk" = ( -/obj/structure/machinery/computer/secure_data, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"xvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/prison/security/monitoring/lowsec/ne) -"wPV" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret) +"xvD" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/storage/vip) +"xvG" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/area/prison/hallway/central/south) -"wRI" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/turf/open/floor/wood, -/area/prison/quarters/research) -"wSW" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/prison/cellblock/highsec/south/south) -"wTr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/bluefull, +/area/prison/residential/central) +"xvM" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/carpet, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"xvP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/rampbottom/north, /area/prison/residential/central) -"wTF" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"wUz" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, +"xwh" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding5" + }, /turf/open/organic/grass, /area/prison/residential/north) -"wUP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" - }, -/area/prison/visitation) -"wVs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +"xwE" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec_highsec) +"xwJ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/prison/cellblock/mediumsec/north) -"wWk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"wWB" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/prison, -/area/prison/security/monitoring/highsec) -"wZy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/prison/hallway/central/east) -"wZK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/frame/table/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/canteen) +"xwO" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/prison/cellblock/lowsec/nw) -"xaT" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/ne) +"xwY" = ( +/turf/open/floor/prison/rampbottom/west, +/area/prison/hallway/east) +"xxa" = ( +/obj/structure/girder, /turf/open/floor/plating, -/area/prison/maintenance/residential/sw) -"xdG" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison, -/area/prison/storage/vip) -"xff" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/prison/cellblock/mediumsec/east) +"xxc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/redcorner/west, +/area/prison/cellblock/highsec/south/north) +"xxA" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"xxQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/prison/monorail/west) -"xii" = ( +/turf/open/floor/prison/red/west, +/area/prison/cellblock/highsec/north/south) +"xyf" = ( +/turf/open/floor/prison/whitegreen/north, +/area/prison/medbay) +"xyL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/yard) +"xza" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/central) +"xzj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/prison/cellblock/mediumsec/south) -"xiB" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/prison, -/area/prison/storage/medsec) -"xji" = ( -/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"xzl" = ( +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/protective) +"xzo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/whitepurple/north, +/area/prison/quarters/research) +"xzu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/monitoring/highsec) +"xzG" = ( +/turf/open/floor/prison/greencorner/north, +/area/prison/cellblock/lowsec/nw) +"xAS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/grown/sunflower, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"xBc" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/prison/research) +"xBu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4; + network = list("PRISON") + }, +/turf/open/floor/prison/yellow/west, +/area/prison/security/checkpoint/medsec) +"xCh" = ( +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/ne) +"xCi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/darkpurple2, +/area/prison/hanger/research) +"xCp" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/laundry) +"xCy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/telecomms) -"xjn" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"xkp" = ( -/turf/open/floor/prison{ - icon_state = "greenfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/prison/quarters/research) -"xld" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/green/north, +/area/prison/cellblock/lowsec/se) +"xCG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/prison/residential/north) -"xoT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/plating/plating_catwalk/prison, +/area/prison/hallway/central/east) +"xCM" = ( +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/medsec/central) +"xCZ" = ( +/turf/open/floor/prison/darkred2, +/area/prison/visitation) +"xDC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Biological Research Department" }, -/area/prison/hallway/central/west) -"xsY" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"xDG" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/prison/maintenance/staff_research) -"xtt" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/green, +/area/prison/hallway/staff) +"xEw" = ( +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/vip) +"xEy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/wood, +/area/prison/parole/protective_custody) +"xEB" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/monorail/east) +"xED" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/hangar_storage/main) +"xFd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/yard) -"xwh" = ( -/obj/effect/decal/siding/wood_siding{ - icon_state = "wood_siding5" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/organic/grass, -/area/prison/residential/north) -"xxa" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/prison/cellblock/mediumsec/east) -"xxE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2; - name = "High-Security Monitoring" +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"xFu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"xFA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitepurple/east, +/area/prison/research) +"xFK" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "map_lockdown"; + name = "Timed Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/prison/cellblock/highsec/south/south) -"xzA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/prison/yellow/southeast, +/area/prison/cellblock/mediumsec/south) +"xFX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2/north, +/area/prison/hangar_storage/main) +"xFY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/prison/cellblock/mediumsec/west) -"xCv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/prison/darkpurple2/east, +/area/prison/hanger/research) +"xGk" = ( +/turf/open/floor/prison/blue/southeast, +/area/prison/cellblock/protective) +"xGT" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/lowsec/se) +"xGX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/prison/residential/south) -"xCG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"xGY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/girder, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"xHa" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/medbay) +"xHe" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/prison/hallway/central/east) -"xDM" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/prison/blue/northeast, +/area/prison/residential/central) +"xHj" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/ne) +"xHx" = ( +/obj/structure/bed/chair/office{ + dir = 4 }, -/area/prison/cellblock/highsec/north/south) -"xEy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/red/northeast, +/area/prison/security/checkpoint/highsec/n) +"xHG" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/wood, -/area/prison/parole/protective_custody) -"xIA" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/red/east, +/area/prison/recreation/highsec/s) +"xIr" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"xIy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/prison/canteen) -"xKa" = ( +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"xJq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/telecomms) +"xJw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/north) +"xJH" = ( /obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bloodsoup, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/item/device/taperecorder, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"xKs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/prison/canteen) +/turf/open/floor/prison/bluecorner/north, +/area/prison/cellblock/protective) "xKO" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, /area/prison/maintenance/residential/se) +"xLi" = ( +/obj/structure/machinery/shower{ + pixel_y = 15 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/cellblock/lowsec/se) +"xLq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/siding/wood_siding, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/residential/central) "xLu" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -49637,15 +37226,223 @@ }, /turf/open/floor/prison, /area/prison/security/checkpoint/maxsec) +"xLF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/east) +"xLH" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/central) +"xLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/closet/secure_closet/security, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"xLR" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/darkred2/northeast, +/area/prison/hanger/main) +"xLS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/security/checkpoint/maxsec) +"xLU" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/chapel) +"xMG" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/prison/engineering) +"xMK" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/green/west, +/area/prison/monorail/west) +"xMV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/prison/storage/medsec) +"xNe" = ( +/obj/item/ammo_casing, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/yard) "xNi" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, /area/prison/maintenance/residential/sw) +"xNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2/east, +/area/prison/cellblock/mediumsec/east) +"xNE" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-y" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/intake) +"xNN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"xNR" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research/secret/chemistry) +"xOU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green, +/area/prison/cellblock/lowsec/sw) +"xPl" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkyellow2/west, +/area/prison/hangar_storage/main) +"xPt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/prison/recreation/medsec) +"xPz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/holding/holding2) +"xPV" = ( +/turf/open/floor/prison/green/northeast, +/area/prison/cellblock/lowsec/nw) "xQq" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, /area/prison/maintenance/staff_research) +"xQI" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/prison/engineering) +"xQJ" = ( +/obj/structure/pipes/standard/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/prison/darkyellow2, +/area/prison/engineering/atmos) +"xQM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/mineral_door/resin, +/turf/open/floor/prison/southwest, +/area/prison/cellblock/highsec/south/north) +"xQO" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/monitoring/medsec/central) +"xQV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/cell_stripe, +/area/prison/cellblock/lowsec/sw) +"xQW" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/darkred2/north, +/area/prison/security/armory/lethal) +"xQY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/south) +"xRn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/east, +/area/prison/cellblock/lowsec/nw) +"xRp" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/cellblock/lowsec/nw) +"xRs" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/hallway/central/west) +"xRw" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"xRF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner/north, +/area/prison/cellblock/highsec/south/north) +"xRP" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/green/west, +/area/prison/cellblock/lowsec/nw) +"xRX" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) +"xRZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurplefull2, +/area/prison/hanger/research) +"xSf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/store) +"xSp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/holosign/surgery{ + id = "otice" + }, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Operating Theatre" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/prison/medbay/surgery) +"xSu" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/prison/hallway/east) +"xSy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkred2/southwest, +/area/prison/security/monitoring/highsec) "xSK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/machinery/light{ @@ -49653,13 +37450,64 @@ }, /turf/open/organic/grass, /area/prison/residential/north) -"xUp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +"xTk" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "rampbottom" + icon_state = "pipe-c" }, -/area/prison/hallway/east) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"xTS" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/prison_lock, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/monitoring/lowsec/sw) +"xTT" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/open/floor/prison/redfull, +/area/prison/hallway/central/west) +"xTZ" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/obj/structure/machinery/door/poddoor/shutters/transit/open, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/prison/monorail/east) +"xUS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/prison/kitchen) +"xUU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/ammo_magazine/pistol/b92fs, +/obj/item/weapon/gun/pistol/b92fs, +/turf/open/floor/prison/whitepurplefull, +/area/prison/research/secret) +"xVf" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security) +"xVn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/hallway/engineering) "xVE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49673,84 +37521,325 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/north) +"xVT" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/southwest, +/area/prison/recreation/highsec/n) +"xVX" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/prison/security/monitoring/highsec) +"xWi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/freezerfloor, +/area/prison/toilet/research) +"xXa" = ( +/turf/open/floor/prison/redcorner/east, +/area/prison/recreation/highsec/s) +"xXc" = ( +/obj/structure/machinery/door/airlock/prison/horizontal{ + density = 0; + icon_state = "door_open"; + opacity = 0 + }, +/turf/open/floor/prison/bluefull, +/area/prison/cellblock/protective) +"xXF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/prison/cellblock/highsec/north/north) "xXN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating, /area/prison/maintenance/residential/nw) -"xYK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"xYb" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/whitegreen/north, +/area/prison/residential/central) +"xYy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/damaged1/southwest, +/area/prison/cellblock/mediumsec/east) +"xYN" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/checkpoint/maxsec) +"xZe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/darkredcorners2/east, +/area/prison/security) +"xZl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/highsec_medsec) +"xZm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/west) -"xYR" = ( +/turf/open/floor/prison/green/north, +/area/prison/security/monitoring/lowsec/ne) +"yal" = ( /obj/structure/surface/rack, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/southwest, +/area/prison/hangar_storage/research) +"yap" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/hunter_primary, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"yaq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Security Booth" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/visitation) +"yau" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/prison/canteen) +/turf/open/floor/prison/red/southeast, +/area/prison/hallway/entrance) "yaY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/south) -"ybB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +"ybm" = ( +/obj/structure/machinery/door/window/westright, +/turf/open/floor/prison/sterile_white, +/area/prison/residential/south) +"ybx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/hallway/central/south) -"ycb" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hanger/main) +"ybA" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/prison/blue/north, +/area/prison/security/checkpoint/vip) +"ybH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" +/turf/open/floor/prison/darkred2/northwest, +/area/prison/security/checkpoint/maxsec) +"ybQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/medbay/foyer) -"ydW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + density = 0; + icon_state = "door_open"; + name = "Security Restrooms" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"ybS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/south) +"yce" = ( +/obj/structure/closet, +/turf/open/shuttle/black, +/area/prison/pirate) +"ycg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/prison/residential/north) +"yct" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/yellowcorner/north, +/area/prison/cellblock/mediumsec/south) +"ycw" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/item/storage/box/syringes, +/turf/open/floor/prison/darkpurplefull2/northwest, +/area/prison/research/secret/chemistry) +"ycC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/green/west, +/area/prison/hallway/central/north) +"ycX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkredfull2" +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"ydk" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/rampbottom/east, +/area/prison/yard) +"ydN" = ( +/turf/open/floor/prison/darkred2/east, +/area/prison/security/checkpoint/maxsec) +"yea" = ( +/turf/open/floor/prison/whitepurple/west, +/area/prison/research) +"yem" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research) +"yeq" = ( +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/north/north) +"yet" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/security/monitoring/lowsec/ne) +/turf/open/floor/prison/greencorner/west, +/area/prison/cellblock/lowsec/ne) "yeE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating, /area/prison/maintenance/residential/sw) +"yeT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkred2/west, +/area/prison/security/checkpoint/maxsec) +"yfl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/yellowfull, +/area/prison/security/checkpoint/medsec) +"yft" = ( +/turf/open/floor/prison/yellow/northwest, +/area/prison/cellblock/mediumsec/south) +"yfu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/darkpurple2/southwest, +/area/prison/research/secret) +"yfG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + density = 0; + dir = 2; + icon_state = "door_open"; + name = "Toilet"; + opacity = 0 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/toilet/security) +"ygq" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/canteen) +"ygT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2; + name = "Northeast Low-Security Monitoring" + }, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/lowsec/ne) +"yhz" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/prison/cellblock/mediumsec/east) "yhG" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating, /area/prison/hallway/central/east) -"yiA" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" +"yhL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/greencorner/east, +/area/prison/cellblock/lowsec/se) +"yhP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/prison/cellblock/mediumsec/east) +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/mediumsec/north) +"yhU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/flasher_button{ + id = "suspended_WWS"; + pixel_x = 24 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/prison/cellblock/maxsec/south) +"yia" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/prison/hangar_storage/main) +"yij" = ( +/obj/structure/machinery/computer/rdconsole, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/research/RD) +"yis" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkred2, +/area/prison/security/checkpoint/maxsec_highsec) +"yit" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/prison/toilet/staff) +"yiK" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/prison/cellblock/highsec/south/north) +"yjQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner, +/area/prison/cellblock/highsec/north/south) +"ykk" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/prison/cellblock/mediumsec/north) +"ykp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/donkpockets, +/turf/open/shuttle/black, +/area/prison/pirate) "ykG" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -49760,6 +37849,61 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/prison/cellblock/mediumsec/east) +"ykI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2/southwest, +/area/prison/security/monitoring/protective) +"ykO" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/explosive/grenade/high_explosive/airburst, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/greenfull/northwest, +/area/prison/cellblock/lowsec/nw) +"ykP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/red/north, +/area/prison/cellblock/highsec/south/north) +"ykS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/floor_plate, +/area/prison/cellblock/mediumsec/south) +"yld" = ( +/obj/effect/decal/siding/wood_siding{ + icon_state = "wood_siding12" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/asteroid, +/area/prison/residential/north) +"ylf" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/prison/hallway/central/west) +"ylI" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/residential/north) +"ymd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/prison/kitchen) +"ymh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/bright_clean2/southwest, +/area/prison/holding/holding1) (1,1,1) = {" aAO @@ -53651,9 +41795,9 @@ aQS eFu qNS avN -avQ -aGs -aHB +lYP +inL +dit avN avM aJr @@ -53712,9 +41856,9 @@ bGR bJp bGT bGU -bLJ -bMN -bQE +hlt +pUe +wOK bGU wyT jkv @@ -53863,9 +42007,9 @@ aQS aSb aQS avN -aFd -awm -aHC +bkE +vax +vbU avN aIK axb @@ -53924,9 +42068,9 @@ bIf bJB bJY bGU -bLM -aYU -bOO +jTj +eNi +hMv bGU bxf bBn @@ -54076,7 +42220,7 @@ aSb aQS avN avN -aGt +cqC avN avN avM @@ -54137,7 +42281,7 @@ bJB bGT bGU bGU -bMO +waI bGU bGU bxf @@ -54287,9 +42431,9 @@ aQS aSb aQS avN -axH -axG -aHD +wyp +rmE +oBb avN avN aJs @@ -54348,9 +42492,9 @@ bGU bJq bGU bGU -bLQ -bKo -bKp +nay +woA +hGy bGU bxf bBn @@ -54499,8 +42643,8 @@ mdH aSb liM avN -aym -axG +dxb +rmE aHE aIm awK @@ -54514,7 +42658,7 @@ aQS nyy aQS kRq -aTu +jil aQS aQS aQS @@ -54547,8 +42691,8 @@ buT bxf iBN bxf -bAa -bBl +ieJ +twx pHT iBN bxf @@ -54561,8 +42705,8 @@ bLK bLK bLK bLR -bKo -bKX +woA +eVw bGU nKg bBn @@ -54711,8 +42855,8 @@ ecJ aSb aBi avN -aax -axG +oDl +rmE aKn awI aIM @@ -54726,7 +42870,7 @@ odp diQ aRZ odp -qai +dBx odp odp odp @@ -54759,7 +42903,7 @@ buX bvX bvX bvX -hFD +vTM bvX xaT bvX @@ -54773,8 +42917,8 @@ bLL bJZ bLL ccu -bKo -ahJ +woA +guf bGU bTA bBn @@ -54923,8 +43067,8 @@ krJ aSb aBk avN -axK -axG +ycg +rmE aKn awI wFT @@ -54938,7 +43082,7 @@ aQS aQS aSb aQS -aTu +jil aQS aQS aQS @@ -54971,7 +43115,7 @@ buT bxf bxf bxf -bAa +ieJ bxf bBn bxf @@ -54985,8 +43129,8 @@ bLL rdD bLL ccu -bKo -bMD +woA +nfR bGU bTB bBn @@ -55343,13 +43487,13 @@ aKn awI awI avN -azG -oCD -gQP -azI -azI -azI -aHH +pTm +iiz +dam +olF +olF +olF +rLv avN aut axb @@ -55359,7 +43503,7 @@ aut awi aKj avN -aQW +tVf aSb umM aRT @@ -55371,22 +43515,22 @@ baK aYR aYQ aWr -lIk -beJ -baU -baU -bbG -baU -baU -bkz -bkz -baU -baU -bbG -baU -baU -beJ -lIk +dLv +nAY +frW +frW +uOu +frW +frW +uQH +uQH +frW +frW +uOu +frW +frW +nAY +dLv aWr aYQ aYR @@ -55408,13 +43552,13 @@ bKS bJB bJA bGU -bLU -bCb -bCb -bCb -npb -qla -bUP +fzk +jBg +jBg +jBg +haq +pTF +vsQ bGU bLL bLL @@ -55547,21 +43691,21 @@ aAO aAO aAO avl -avO -awl +vXH +iFO avN -axF +jar ayk awK awK ayB -aFh -gJu -aHK -aHK -aHK -aGu -aHI +tzZ +mtb +utL +utL +utL +gdm +mZB avN awI awI @@ -55583,22 +43727,22 @@ bsi bbJ bbJ aWr -aHj -aoH +vNS +wzN bgc bgc bxO bgc bgc -aRH -bdv +oby +giW bgc bgc bgc bgc bLY -bqk -bqI +wdK +nkT aWr bbJ bbJ @@ -55620,21 +43764,21 @@ ccu bLL bLL bGU -bLV -bMQ -bCc -bCc -bCc -bMW -bOS +uQl +tIn +jwe +jwe +jwe +rYo +mpU bNs bLK bLK bKV -cdH +xfT bGU -cfS -chc +rva +xvM bKl aAO aAO @@ -55759,21 +43903,21 @@ aAO aAO aAO avl -avR -awm -axc -axG -axG -axG -axG +vzC +vax +qdw +rmE +rmE +rmE +rmE avN -azI -azI -aPM -azI -azI -aGv -azI +olF +olF +uVB +olF +olF +tdP +olF avN mOL awJ @@ -55795,22 +43939,22 @@ bsi bbI bbI aWr -akH +qiu bgc bgc bkN bgc bkN bgc -aRH -bdv +oby +giW bgc bkN bxO bkN bgc bgc -bqJ +uwo aWr wTr bbI @@ -55832,21 +43976,21 @@ ccu bMC iGI bGU -bCb -bMR -bCb -bQs -bCb -bCb -bCb +jBg +dGI +jBg +fwU +jBg +jBg +jBg bGU -bKo -bKo -bKo -bKo -bVs -aYU -chd +woA +woA +woA +woA +jPt +eNi +bgz bKl aAO aAO @@ -55971,21 +44115,21 @@ aAO aAO aAO avl -avQ -awn +lYP +hRx avN -axH -aym -aaa -axK +wyp +dxb +ppM +ycg avN -azI -azI -azI -azI -azI -aGv -aHJ +olF +olF +olF +olF +olF +tdP +ylI avN awI awI @@ -56007,22 +44151,22 @@ baM bbJ bbJ aWr -akH +qiu bgc bgc bLY bgc bLY bgc -aRH -bdv +oby +giW bgc bgc bLY bgc bgc bgc -bqJ +uwo aWr bbJ bbJ @@ -56044,21 +44188,21 @@ ccu bLL bLL bGU -bLW -bMR -bCb -bCb -bCb -bCb -bCb +eyl +dGI +jBg +jBg +jBg +jBg +jBg bGU -bMD -adO -bKX -bKp +nfR +tTo +eVw +hGy bGU -cfT -bQE +tnx +wOK bKl aAO aAO @@ -56191,78 +44335,78 @@ avl avl avl avN -ruu -ruu -ruu +iIY +iIY +iIY avN -azI -aGw -aFh +olF +oRe +tzZ ayB awK awK ayk -aLb +xxA avN -aMT -aOD +emV +iuE avN aQS aSb aQS aRT -aWs -aXy +fog +rzM aWr -aZR +tWm baN bbK bbK bdx -akI +dIC bgc bgc bkN bgc bgc bgc -aRH -uHU +oby +fLG bgc bgc bgc bkN bgc bgc -bqL +xLq bdx bbK bbK baN -bsZ +trC aWr -bzq -bAU +rGA +jGp aWr bxf bBn bxf bGU -bGV -bIi +inA +rLm bGU -bKn +rmK bKV bLK bLK bNs -bOS -bMS -bCb +mpU +wxe +jBg bGU -oZV -oZV -oZV +xrx +xrx +xrx bKl bKl bKl @@ -56406,72 +44550,72 @@ duu wUz wUz aEv -ruu -aFe -aGx -azI +iIY +mDp +rBs +olF avN -axG -axG -axG -axG -axc -awm -aOE +rmE +rmE +rmE +rmE +qdw +vax +ldE avN aQS aSb umM aRT -aWt -oTO -bkU -aZS -aZS -aZS -aZS +koC +eSp +dBd +wNF +wNF +wNF +wNF aWr -akH +qiu bxO bgc bgc bgc -aoI -biY -beJ -beJ -biY -bnX +jpp +lWa +nAY +nAY +lWa +uuW bgc bgc bgc bgc -bqJ +uwo aWr -aZS -aZS -aZS -aZS -bkU -aEJ -bvr +wNF +wNF +wNF +wNF +dBd +qeI +esm aWr bxf bBp bDb bGU -bEP -aYU -bVs -bKo -bKo -bKo -bKo +pAh +eNi +jPt +woA +woA +woA +woA bGU -bCb -bMT -bOP -oZV +jBg +tTq +hjF +xrx gML nXE nXE @@ -56618,72 +44762,72 @@ esR esR esR esR -ruu -azI -aGv -azI +iIY +olF +tdP +olF avN -axK -aaa -aym -axH +ycg +ppM +dxb +wyp avN -aMU -aOF +odj +rvT avN aRb aSd aQS aRT -non -aXA +hgM +uta aWr -aZT -baO -abc -bcO +cDw +tox +khR +iuc aWr -qki +nJj bgc bgc bgc bgc -aSC +clZ biZ biZ biZ biZ -bnY +aJK bgc bgc bLY bgc -gKA +luk aWr -bcO -abc -vTZ -aZT +iuc +khR +njw +cDw aWr -bzr -bvq +gtg +gjG aWr bxf bBn bxf bGU -bEQ -bFX +tQS +lvi bGU -bKp -bKX -adO -bMD +hGy +eVw +tTo +nfR bGU -bCb -bMR -bCb -oZV +jBg +dGI +jBg +xrx qun qun qun @@ -56830,10 +44974,10 @@ azJ azJ jVk esR -ruu -azI -aGv -azI +iIY +olF +tdP +olF avN avN avN @@ -56855,22 +44999,22 @@ aWr aWr aWr aWr -akH +qiu bgc bgc bLY bgc -aSC +clZ biZ biZ biZ biZ -bnY +aJK bLY bgc bgc bgc -bqJ +uwo aWr aWr aWr @@ -56892,10 +45036,10 @@ bGU bGU bGU bGU -bCb -bMR -bCb -oZV +jBg +dGI +jBg +xrx qLI nDg bTD @@ -57038,80 +45182,80 @@ aAO avm aEv esR -aae -aBX -mkc -icO -aDD -aFh -aGx -azI -gQP -azI -azI -aRc -gQP -azI -azI -azI -gQP -azI -aHH -azI -azI -aWv -aXB -aWv -aWv -iLz -aWv -aWv -aFE -akH +mKs +dsh +yld +hxD +mUC +tzZ +rBs +olF +dam +olF +olF +jAD +dam +olF +olF +olF +dam +olF +rLv +olF +olF +hje +doi +hje +hje +bsx +hje +hje +nCp +qiu bgc bgc bgc bgc -aSC +clZ biZ biZ biZ biZ -bnY +aJK bgc bgc bgc bgc -bqJ -aIv -aWv -aWv -aWv -aWv -iLz -aWv -aWv -aWv -bCb -bLU -bCb -npb -bER -bCb -bEW -npb -bCb -bCb -bCb -npb -bCb -bMR -bCb -bQt -bTE -ldD -bTE -bTG +uwo +nCE +hje +hje +hje +hje +bsx +hje +hje +hje +jBg +fzk +jBg +haq +kHK +jBg +lWu +haq +jBg +jBg +jBg +haq +jBg +dGI +jBg +pdO +vAi +bEj +vAi +mwJ qLI gML bGQ @@ -57250,80 +45394,80 @@ aAO avm wUz esR -aBm +vPi aBn aDE fkx avN -aFg -iYD -aHK -aHK -aHK -kue -aHK -aHK -aHK -kue -aHK -aHK -aHK -aSf -aHK -aHK -aWw -aXC -aWw -aWw -aWw -aWw -aEM -aFH -alc -bev -bev -bev -bev -beJ +oXw +ibj +utL +utL +utL +qvC +utL +utL +utL +qvC +utL +utL +utL +jWL +utL +utL +jlC +xLH +jlC +jlC +jlC +jlC +pOm +lKt +fDh +oHV +oHV +oHV +oHV +nAY biZ biZ biZ biZ -beJ -bev -bev -bev -bev -bqO -brM -aEM -aWw -aWw -aWw -aWw -aWw -aWw -aWw -bCc -nNc -bCc -bCc -bES -tAi -bCc -bCc -bCc -tAi -bCc -bCc -bCc -rsG -bOR +nAY +oHV +oHV +oHV +oHV +cUB +xvP +pOm +jlC +jlC +jlC +jlC +jlC +jlC +jlC +jwe +xap +jwe +jwe +phr +pwL +jwe +jwe +jwe +pwL +jwe +jwe +jwe +sWj +shp bGU ooE oWU bTF -bUQ +ddt qLI nXE bGQ @@ -57462,80 +45606,80 @@ aAO avm aEv esR -aBo -aBX -tzm -icO -aDD -aFh -aGx -azI -gQP -azI -azI -azI -gQP -azI -azI -azI -gQP -mpt -aHH -azI -azI -aWv -aXD -aWv -aWv -aWv -aWv -aWv -aFE -alq -aHt -aHt -bhC -bhC -baU -baU -baU -baU -baU -baU -bhC -bhC -aHt -aHt -bqP -aIv -aWv -aWv -aWv -aWv -aWv -aWv -aWv -aWv -bCb -bLU -bCb -npb -bET -bCb -bCb -npb -bCb -bCb -bCb -npb -bCb -bMT -bOS -bQu -nLr -ndW -bTE -bUR +tkL +dsh +qQO +hxD +mUC +tzZ +rBs +olF +dam +olF +olF +olF +dam +olF +olF +olF +dam +ggx +rLv +olF +olF +hje +cYr +hje +hje +hje +hje +hje +nCp +pQS +cVN +cVN +jZF +jZF +frW +frW +frW +frW +frW +frW +jZF +jZF +cVN +cVN +ggf +nCE +hje +hje +hje +hje +hje +hje +hje +hje +jBg +fzk +jBg +haq +fsY +jBg +jBg +haq +jBg +jBg +jBg +haq +jBg +tTq +mpU +lKO +lDJ +bSg +vAi +ohO qLI gML bGQ @@ -57678,10 +45822,10 @@ azK azK tuQ esR -ruu -azI -aGv -azI +iIY +olF +tdP +olF avN avN avN @@ -57703,22 +45847,22 @@ aWr aWr aWr aWr -akH +qiu bgc bgc -aRH -bdv +oby +giW bgc bxO bkB bgc bxO bgc -aRH -bdv +oby +giW bgc bgc -bqJ +uwo aWr aWr aWr @@ -57740,10 +45884,10 @@ bGU bGU bGU bGU -bCb -bMR -bCb -oZV +jBg +dGI +jBg +xrx qun jan bTH @@ -57890,72 +46034,72 @@ esR esR esR esR -ruu -azI -aGv -azI +iIY +olF +tdP +olF avN -axK -aaw -aym -axH +ycg +dzs +dxb +wyp avN -aMV -aOF +rtW +rvT aRU aSR gRU aSR aRU -aWu -aXE +rKn +eEm aWr -aZT -baO -acz -bcO +cDw +tox +wpg +iuc aWr -qki +nJj bgc bgc -aRH -bdv +oby +giW bgc rpB bgc bgc nxt bLY -aRH -bdv +oby +giW bLY bgc -gKA +luk aWr -bcO -abc -hmQ -aZT +iuc +khR +xza +cDw aWr -buA -bvq +wgV +gjG aWr bxc bvZ bxc bGU -bEQ -bFY +tQS +gqL bGU -bKp -bKX -ahD -bMD +hGy +eVw +pyO +nfR bGU -bCb -bMR -bCb -oZV +jBg +dGI +jBg +xrx qun qun qun @@ -58102,72 +46246,72 @@ xSK lCQ lCQ iGo -ruu -aFi -aGx -gQP +iIY +uTc +rBs +dam avN -axG -axG -axG -axG -axc -awm -aOE +rmE +rmE +rmE +rmE +qdw +vax +ldE aRU aSR baS aSR aRU -aWt -aEJ -bkU -aZS -aZS -aZS -aZS +koC +qeI +dBd +wNF +wNF +wNF +wNF aWr -akH +qiu bLY bgc -aRH -bdv +oby +giW bgc aZP aWn aWn aZP bgc -aRH -bdv +oby +giW bgc bgc -bqJ +uwo aWr -aZS -aZS -aZS -aZS -bkU -aEJ -bvr +wNF +wNF +wNF +wNF +dBd +qeI +esm aWr bxc bBs bDc bGU -bEP -aYU -bVs -bKo -bKo -bKo -bKo +pAh +eNi +jPt +woA +woA +woA +woA bGU -bLX -bMT -bOT -oZV +mGO +tTq +tfD +xrx nGR djE djE @@ -58311,78 +46455,78 @@ avl avl avl avN -ruu -ruu -ruu +iIY +iIY +iIY avN -aFj -aGw -aFh +rok +oRe +tzZ ayB awK awK ayn -aLb +xxA avN -aMW -aOG +xpT +kMl aRU aSR baS aSR aRU -aWx -aXF +rbZ +jxf aWr -aZR +tWm baP bbK bbK bdx -akI +dIC bgc bgc -aRH -bdv +oby +giW bgc aWn aAO aAO aWn bgc -aRH -bdv +oby +giW bgc bxO -bqL +xLq bdx bbK bbK baP -bsZ +trC aWr -buB -bvs +jlF +fIw aWr bxc bvZ ekt bGU -bHb -bIn +qTA +ybm bGU -bKn +rmK bKY bLK bLK bNs -bOS -bMS -bCb +mpU +wxe +jBg bGU -oZV -oZV -oZV +xrx +xrx +xrx bKl bKl bKl @@ -58523,13 +46667,13 @@ awo awo awo avS -azI -azI -azI -azI -azI -aGv -aHJ +olF +olF +olF +olF +olF +tdP +ylI avN awI awI @@ -58551,22 +46695,22 @@ bsi bbJ bbJ aWr -akH +qiu bgc bxO -aRH -bdv +oby +giW bgc aWn aAO aAO aWn bgc -aRH -bdv +oby +giW bgc bgc -bqJ +uwo aWr bbJ bbJ @@ -58588,21 +46732,21 @@ bKU bLL bLL bGU -bLW -bMR -bCb -bCb -bCb -bCb -bCb +eyl +dGI +jBg +jBg +jBg +jBg +jBg bGU -bMD -ahQ -bKX -bKp +nfR +uds +eVw +hGy bGU -cfU -bQE +hus +wOK bKl aAO aAO @@ -58735,13 +46879,13 @@ avN avN avN avN -kdj -azI -gQP -gQP -gQP -aGv -azI +kos +olF +dam +dam +dam +tdP +olF avN tIh awM @@ -58763,22 +46907,22 @@ bsi bbO vCU aWr -ndE +rJa bgc bgc -aRH -aIA +oby +evc aWr aIy aWn aWn aIy aWr -boz -bdv +gOi +giW bLY bgc -bqJ +uwo aWr gJz bbO @@ -58800,21 +46944,21 @@ ccu bLP bLP bGU -bLZ -uOY -npb -bCb -npb -npb -bCb +oaL +whD +haq +jBg +haq +haq +jBg bGU -bKo -bKo -bKo -bKo -bVs -aYU -chd +woA +woA +woA +woA +jPt +eNi +bgz bKl aAO aAO @@ -58941,19 +47085,19 @@ awo awo avN avN -bRj -ppb -uSv -ppb -azI -awm -awm -ayC -kue -kue -kue -gJu -aHL +wmF +vNN +rQc +vNN +olF +vax +vax +utd +qvC +qvC +qvC +mtb +miT avN awI awI @@ -58975,22 +47119,22 @@ bsi bbJ bbJ aWr -aIB -beD -beE -bhD -aLd -bbN -bja -bkC -blI -bmT -bbN -boA -bhD -beE -beD -bqR +sGO +rRS +sMv +pwj +ggj +uak +dkx +jbS +cYP +vzi +uak +pSV +pwj +sMv +rRS +hoZ aWr bbJ bbJ @@ -59000,7 +47144,7 @@ aYR aYR aWy aWr -nIx +pKF bvZ bxc bGU @@ -59012,21 +47156,21 @@ ccu bLL bLL bGU -bMa -xCv -bCc -bCc -tAi -hUe -bOS +qYG +niF +jwe +jwe +pwL +tpD +mpU bNs bLK bLK bKY -cdH +xfT bGU -cfV -che +dOk +eow bKl aAO aAO @@ -59152,20 +47296,20 @@ avl awo avN avN -aMt -azI -azI -wyo -azI -azI -awm -azI -aGv -azI -azI -azI -azI -aHH +xAS +olF +olF +kOM +olF +olF +vax +olF +tdP +olF +olF +olF +olF +rLv avN aut axb @@ -59187,22 +47331,22 @@ baQ aYR aYQ aWr -beJ -aTR -bkP -bjO -aIv -beJ -bjb -beJ -lIk -bmU -beJ -aFE -bjO -beJ -aTR -beJ +nAY +qUD +eNs +fkG +nCE +nAY +eZt +nAY +dLv +jrP +nAY +nCp +fkG +nAY +qUD +nAY aWr aYQ aYR @@ -59224,13 +47368,13 @@ bLa bJB bJA bGU -bLU -bCb -bCb -bCb -bCb -bLU -bUT +fzk +jBg +jBg +jBg +jBg +fzk +ybS bGU bLL bLL @@ -59363,17 +47507,17 @@ aAO avl awo avS -aFg -azI -azI -azI +oXw +olF +olF +olF aNO irh -azI -awm -awm -aGv -azI +olF +vax +vax +tdP +olF avN avN avN @@ -59405,10 +47549,10 @@ aWr aWr aWr aWr -bjb -beJ -lIk -bmU +eZt +nAY +dLv +jrP aWr aWr aWr @@ -59575,20 +47719,20 @@ aAO avl avN avN -azI -azI -azI -azI +olF +olF +olF +olF xwh nMW -azI -awm -azI -aGv -hGm +olF +vax +olF +tdP +usi avN -axK -axG +ycg +rmE aKn awI djr @@ -59609,26 +47753,26 @@ aAO aAO aAO aZP -aWu -aXE +rKn +eEm aWr -aZT -baO -acz -bcO +cDw +tox +wpg +iuc aWr -bjc -bkD -lIk -bmU +vOT +qHA +dLv +jrP aWr -bcO -abc -hmQ -aZT +iuc +khR +xza +cDw aWr -buA -bvq +wgV +gjG aZP aAO aAO @@ -59649,8 +47793,8 @@ bLL bJZ bLL ccu -bKo -bMD +woA +nfR bGU bTL bYv @@ -59785,22 +47929,22 @@ aAO aAO aAO avl -azI -azI -azI +olF +olF +olF aNO cAA -azI -azI -azI -azI -awm -awm -aGv -aHJ +olF +olF +olF +olF +vax +vax +tdP +ylI avN -aax -axG +oDl +rmE aKn awI aIM @@ -59821,26 +47965,26 @@ aAO aAO aAO aZP -aWt -aEJ -bkU -aZS -aZS -aZS -aZS +koC +qeI +dBd +wNF +wNF +wNF +wNF aWr -bje -beJ -lIk -bmU +xty +nAY +dLv +jrP aWr -aZS -aZS -aZS -aZS -bkU -aEJ -bvr +wNF +wNF +wNF +wNF +dBd +qeI +esm aZP aAO buY @@ -59861,8 +48005,8 @@ bLL bJZ bLL ccu -bKo -ahD +woA +pyO bGU bTL bYv @@ -59997,22 +48141,22 @@ aAO aAO aAO avl -aFg -awq -azI +oXw +xem +olF aOZ nMW -azI -azI -azI -azI -awm -azI -aGv -hQW +olF +olF +olF +olF +vax +olF +tdP +oiE avN -aym -axG +dxb +rmE aHE awK awK @@ -60033,26 +48177,26 @@ aAO aAO aAO aZP -aWx -aXF +rbZ +jxf aWr -aZR +tWm baP bbK bbK bdx -bjd -bkG -blK -bmV +dIg +rZy +bvx +pXx bdx bbK bbK baP -bsZ +trC aWr -buB -bvs +jlF +fIw aZP aAO buY @@ -60073,8 +48217,8 @@ bLK bLK bLd bLR -bKo -bKX +woA +eVw bGU bTL eYV @@ -60209,23 +48353,23 @@ aAO aAO aAO avm -azI -azL -azI -azI -azI -azI +olF +sPH +olF +olF +olF +olF aNO cAA -azI -awm -awm -aGv -tTf +olF +vax +vax +tdP +doZ avN -axH -axG -aHN +wyp +rmE +sOA avN avN aJs @@ -60235,7 +48379,7 @@ aAO aAO aAO aRV -aUW +qqB gRU vAR aRV @@ -60253,10 +48397,10 @@ bsi bbJ bbJ aWr -bjb -beJ -lIk -bmU +eZt +nAY +dLv +jrP aWr bbJ bbJ @@ -60284,9 +48428,9 @@ bGU bJq bGU bGU -bMd -bKo -bKp +niy +woA +hGy bGU bUV bYv @@ -60421,22 +48565,22 @@ aAO aAO aAO avm -azI -azM -azI -azI -azI -azI +olF +kzU +olF +olF +olF +olF xwh gJT -azI -ayC -azN -aBu -tGy +olF +utd +yap +fsO +eXH avN avN -aGt +cqC avN avN avM @@ -60465,10 +48609,10 @@ bsi bbO vCU aWr -bjb -bkD -lIk -bmU +eZt +qHA +dLv +jrP aWr gJz bbO @@ -60497,7 +48641,7 @@ bJB bGT bGU bGU -bMO +waI bGU bGU bRX @@ -60633,23 +48777,23 @@ aAO aAO aAO avm -azI -aKR -azI -mpt -azI -azI -azI -azI -azI -aGv -awm -awm -lUS +olF +ttd +olF +ggx +olF +olF +olF +olF +olF +tdP +vax +vax +iBL avN -aFd -awm -aHO +bkE +vax +pOF avN aIK axb @@ -60677,10 +48821,10 @@ bsi bbJ bbJ aWr -bjb -beJ -lIk -bmU +eZt +nAY +dLv +jrP aWr bbJ bbJ @@ -60708,9 +48852,9 @@ bIf bJB bJY bGU -bMe -aYU -bOV +hPo +eNi +qwI bGU bRY kCz @@ -60849,19 +48993,19 @@ avm avm avm avl -aFg -awq -azI -qzW -azI -aHH -azI -azI -azI +oXw +xem +olF +top +olF +rLv +olF +olF +olF avN -avQ -aGA -aHP +lYP +oOR +reN avN avM aJr @@ -60889,10 +49033,10 @@ baQ aYR aYQ aWr -bjb -beJ -lIk -bmU +eZt +nAY +dLv +jrP aWr aYQ aYR @@ -60920,9 +49064,9 @@ bGR bJp bGT bGU -bMf -bMX -bQE +eXN +oWs +wOK bGU bTL bTL @@ -61061,9 +49205,9 @@ aAO aAO aAO avm -azI -azL -azI +olF +sPH +olF avl jzJ dyB @@ -61101,10 +49245,10 @@ aWr aWr aWr aWr -bjg -bkG -blK -bmW +xYb +rZy +bvx +myQ bqb bqb bqb @@ -61273,9 +49417,9 @@ aAO aAO aAO avm -azI -azM -azI +olF +kzU +olF axI axN ayD @@ -61309,30 +49453,30 @@ bcQ seq bcQ bcR -aZF -bgm -aZG +tLm +xvG +duJ bga -bjb -bkD -lIk -bmU -oqC -boB -bpl -bqn -bpl -bpl -bpl -bpl -bqn -bpl -bpl -bpl -bwc -hmc -byQ -bpM +eZt +qHA +dLv +jrP +sjj +haD +qfZ +jkI +qfZ +qfZ +qfZ +qfZ +jkI +qfZ +qfZ +qfZ +udY +mYg +nXQ +etU bqb bTL bTL @@ -61485,9 +49629,9 @@ aAO aAO aAO avm -azI -tjl -azI +olF +kXW +olF axI axN ayH @@ -61521,30 +49665,30 @@ bcQ bcQ bbj oDn -beQ -bgn -bhf -bid -bjb -beJ -lIk -bmU -bnZ -boC -bpm -bpL -bpm -bpm -bpm -bpm -bpm -bpL -bpm -bpm -xff -cXK -uJC -bBv +uLy +rEx +kLS +tKX +eZt +nAY +dLv +jrP +pxK +dWi +fbY +xMK +fbY +fbY +fbY +fbY +fbY +xMK +fbY +fbY +ruE +qaJ +fnj +pHh ftk rQD rQD @@ -61729,34 +49873,34 @@ aSR baS vAR aWr -aZF -baj -bbk +tLm +xHe +kVA bcT bcQ bcQ bcQ bga -bjb -beJ -aHj -bmV -boa -boD -bpn -bpn -bpn -bpn -bpn -bsz -bpn -bpn -bpn -bpn -bxe -byR -byR -bBw +eZt +nAY +vNS +pXx +hpY +hiJ +lOi +lOi +lOi +lOi +lOi +cGw +lOi +lOi +lOi +lOi +hiy +gRK +gRK +sBK bqb bTL bTL @@ -61941,34 +50085,34 @@ aXI aYo aSR aWr -aZG -bar -bbl +duJ +oIq +mOa bcU beX uTm ezq -bie -bjh -bkH -blP -bmY -oqC -boF -bpo -bpM -bqo -bqo -bqo -bsA -bqo -bqo -bqo -bqo -bxg -bqo -bqo -bqo +psU +sFZ +ffo +dCw +kxe +sjj +kHk +xgO +etU +fag +fag +fag +qSy +fag +fag +fag +fag +dgm +fag +fag +fag bsm bTR bTR @@ -62198,17 +50342,17 @@ aAO acL aAO bSk -mAn -bWF -bXL +qsB +pYd +tbz bSk aAO acL aAO bSk -eeO -ona -jFi +ewd +rio +eaZ bSk aAO aAO @@ -62371,14 +50515,14 @@ bbm aYp beY baa -bhg -big -bji -bkJ -blR -bmZ -bob -boG +jzt +eVo +dJv +opC +hpG +tDw +mQY +hFT aWz bsn aAO @@ -62410,17 +50554,17 @@ aAO acL aAO bTO -bUZ -bWG -bXM +cSl +fIv +mSI bTO aAO acL aAO bTO -bUZ -iSi -bXM +cSl +isJ +mSI bTO aAO aAO @@ -62583,14 +50727,14 @@ bbn bcZ aXN baa -bjR +drA bod bkK bkK blS bkK boc -bqK +gDS aWz bsn acL @@ -62622,17 +50766,17 @@ acL acL acL bTL -bUZ -bWG -bXM +cSl +fIv +mSI bTL acL acL acL bTL -bUZ -iSi -bXM +cSl +isJ +mSI bTL aAO aAO @@ -62795,14 +50939,14 @@ bbo aXN aXN bdC -bjR +drA bkW bjm bkL blT bna bkW -bqK +gDS wWB bsn btd @@ -62834,17 +50978,17 @@ btd btd btd bTP -bVa -bWH -bXN +vYF +hsm +rrS bYJ oog bDE btd bTP -bVa -bWH -bXN +vYF +hsm +rrS bYJ aAO aAO @@ -63007,14 +51151,14 @@ bbo aXN aXN bdC -bjR +drA bkW baa baa baa baa bkW -bqK +gDS wWB bsn acL @@ -63046,17 +51190,17 @@ acL acL aAO bTO -bUZ -bWG -bXM +cSl +fIv +mSI bTO acL acL acL bTO -bUZ -bWG -bXM +cSl +fIv +mSI bTO aAO aAO @@ -63219,14 +51363,14 @@ bbo aXN etX baa -bjR +drA bkW baa bkM bkM baa bkW -bqK +gDS aWz bsn aAO @@ -63258,17 +51402,17 @@ acL aAO aAO bTL -bUZ -bWG -bXM +cSl +fIv +mSI bTL aAO acL aAO bTL -bUZ -bWG -bXM +cSl +fIv +mSI bTL aAO aAO @@ -63431,14 +51575,14 @@ bbo bdb bdb baa -bjR +drA bkW bjn bnh bnh bjn bkW -bqK +gDS aWz acL aAO @@ -63470,17 +51614,17 @@ acL aAO aAO bSk -bVb -bWI -bXO +dFj +tgz +esC bSk aAO acL aAO bSk -bVb -bWI -bXO +dFj +tgz +esC bSk aAO aAO @@ -63643,14 +51787,14 @@ beR jBu baa baa -bhh +dXO bkW baa bnh bkM baa bkW -boH +fva aWz aWz aYX @@ -63848,28 +51992,28 @@ aWz aYY aXK baX -bbT +iKd baa -bdD -beS -bgs -dAz +kqq +ivO +oqA +xSy baa -bkZ +gov bkW baa -hoY +umK bkM baa bkW -bqK +gDS baa -bpN -bpN -bpN -bpN +xVX +xVX +xVX +xVX baa -bty +mTo baX aXK aWz @@ -64060,28 +52204,28 @@ aWz aXK aXK baY -bbT +iKd baa -aYy +gKO aYY aYY -nTn +qww baa -bjR +drA bkW baa bkM bkM baa bkW -bqK +gDS baa -bpO -bsp -bsp -bsp +rHa +cXE +cXE +cXE baa -bty +mTo baY aXK aYY @@ -64272,28 +52416,28 @@ aXK aYY aYY baZ -bbU +rsu bcW -bdF +azH aYY bpU -bhJ -biR -bjT +rga +jLh +kjU boc baa bkM bkM baa bod -boI -biR +vND +jLh bpP aYY aYY brS bcW -btz +uIq bsa aYY aYY @@ -64484,28 +52628,28 @@ aXK aYZ bab bba -bbV +dXM baa -bdE +tEr aYY aYY -bhK -beW -bjR +tjG +grU +drA bkW baa bkM bnh baa bkW -bqK -beW +gDS +grU brZ aYY aYY brZ baa -bty +mTo bba aXK aYY @@ -64669,7 +52813,7 @@ aAO aAO aAO axI -axU +wjY ayD axN axI @@ -64696,28 +52840,28 @@ aXK sqS aXK aXK -bbT +iKd baa -bdG +wOF bqU bgt -bhL +aPj baa -bjR +drA bkW bjn bnh bnh bjn bkW -bqK +gDS baa bfe bqU bqU bsa baa -bty +mTo aYY aXK aYY @@ -64910,24 +53054,24 @@ bdI bdI bdI bdI -bdH -beV +jjl +cAu aYY -bhK +tjG bdC -bjR +drA bkW baa bkM bkM baa bkW -bqK +gDS bdC aYY brZ bba -bsb +gDH bdI bdI bdI @@ -64954,7 +53098,7 @@ bAe bAe ceH bSk -bVd +wdA bYv bTL bSk @@ -65078,19 +53222,19 @@ aAO aAO aAO anA -aox +ijD anw -apl +wcQ aor -aox +ijD anw -apl +wcQ aor -apl -aos +wcQ +sar aor -apl -aos +wcQ +sar axJ axN axN @@ -65098,72 +53242,72 @@ ayD axN axN ktx -pob -vpt +hXR +ldx aCl -aEO -aGa +uVN +rfp aCl -aEO -aGa +uVN +rfp aCl -aEO -aGa +uVN +rfp aCl vaW -aGa +rfp aCl -aEO -aGa +uVN +rfp aCl -aEO -aGa +uVN +rfp aCl -aKz -bda +gFn +gQg aXL bdI -bdc +nHP aYY -bhK +tjG bdC -bjR +drA bkW baa baa baa baa bkW -bqK +gDS bdC aYY bqu oUR bdI bdI -buI -bvv +iOf +cDj bvA -bvD -bvC +iRP +gNK bvA -bvD -bvC +iRP +gNK bvA -bvD -bvC +iRP +gNK bvA -bvD -bvC +iRP +gNK bvA -bvD -bvC +iRP +gNK bvA -bvD -bvC +iRP +gNK bvA -jFs -kEk +jBd +vQe pcP bTL bTL @@ -65171,19 +53315,19 @@ bYv bTL bTL bYC -bZR -bZS +kAj +vHy bYC -dlJ -bZQ +nmB +vGk bYC -bZS +vHy cmc -bZQ +vGk bYC -bZS +vHy cmc -bZQ +vGk ceH aAO aAO @@ -65290,19 +53434,19 @@ aAO aAO anA anA -amT -apm -anY +wqL +ivb +kve aor -amT -apm -arp +wqL +ivb +jZW aor aop -aox +ijD aor aop -aox +ijD axJ axR axN @@ -65310,72 +53454,72 @@ ayD axN axN ktx -uvK -xDM +wyi +raB aCl aID -aGb +gDc aCl aEP -aGb +gDc aCl aEP -aGb +gDc aCl aEP -gNI +vea aCl aEP -aGb +gDc aCl aEP -aGb +gDc aCl -aLO -aEU -bda -beW -bdd +qHz +jVO +gQg +grU +ttM aYY -bhK +tjG bdC -bjR +drA bkW bjo bkQ blU bnb bkW -bqK +gDS bdC aYY brZ aYY -beW -buI -bFb -bvw +grU +iOf +ijy +nwD bvA byx -bwA +uFc bvA byx -bwA +uFc bvA byx -bwA +uFc bvA byx -bwA +uFc bvA byx -bwA +uFc bvA byx -bwA +uFc bvA -hKW -pvI +mlF +iQY pcP bTL bTL @@ -65384,18 +53528,18 @@ bTL cac bYC ceI -bZQ +vGk bYC ceI -sHe +dvT bYC -cjp -cfW -ceJ +uvg +oEN +aBq bYC -cjp -cfW -ceJ +uvg +oEN +aBq ceH ceH aAO @@ -65503,18 +53647,18 @@ anA anA aor aon -apj +fGw aor aor aon -apj +fGw aor aor -apm -aot +ivb +xlp aor -apm -aot +ivb +xlp axJ axN axN @@ -65522,72 +53666,72 @@ ayD axN axN ktx -aih -swk +cIy +jFw aCl -aEQ -aGc +gOk +pEW aCl -aEQ -aGc +gOk +pEW aCl -aEQ -aGc +gOk +pEW aCl -tmn -aGc +uZf +pEW aCl -aEQ -aGc +gOk +pEW aCl -aEQ -aGc +gOk +pEW aCl -aLO +qHz lnV -bas -bbr -btz +xin +jdl +uIq bqU -vWd +dKj bdC -bjR +drA bkW bjp bjp bjp bjp bkW -bqK +gDS bdC aYY baZ bgt -bbr -buJ +jdl +sqO bKs -bvw +nwD bvA -byy -bzz +vgH +mnq bvA -byy -bzz +vgH +mnq bvA -byy -bzz +vgH +mnq bvA -byy -bzz +vgH +mnq bvA -byy -bzz +vgH +mnq bvA -byy -bzz +vgH +mnq bvA -jTN -qNw +gES +sss pcP bTL bTL @@ -65595,18 +53739,18 @@ bYv bTL bTL bYC -ceJ -cfW +aBq +oEN bYC -ceJ -cfW +aBq +oEN bYC bYC -cuI +nMU bZO bYC bYC -cuI +nMU bZO bYC ceH @@ -65712,20 +53856,20 @@ aAO aAO anA anA -alY -apn -apn -apn -apn -aoO -apW -aqG -arq +mdP +nqj +nqj +nqj +nqj +wMt +orw +tZu +sjE aor -apj +fGw aon aor -apj +fGw aon axJ axJ @@ -65734,69 +53878,69 @@ ayK azQ axJ axJ -mHQ +lgt qIb aCl -aIs +jWH aEV aCl -aIs +jWH aEV aCl -aIs +jWH aEV aCl -fxZ +nPL aEV aCl -aIs +jWH aEV aCl -aIs +jWH aEV aCl -aLO +qHz kyS -bat +qqd qjI -bdf -blY -bpW +joU +kbk +iFc baa -bhi -bik -bjq -bjq -bjq -bjq -boe -boJ +toc +gFl +kRX +kRX +kRX +kRX +qAt +fSJ baa aYY brZ aYY qjI -buK +vTJ unO -bvw +nwD bvA bwC -bPg +dib bvA bwC -bPg +dib bvA bwC -bPg +dib bvA bwC -bPg +dib bvA bwC -bPg +dib bvA bwC -bPg +dib bvA vdU uuw @@ -65808,20 +53952,20 @@ bRW bSj bYC bZO -cuI +nMU bYC bZO -cuI +nMU bYC -cjq -ckA -clc -clO -bZT -bZT -bZT -bZT -cph +rHn +pGD +iHK +gXM +wkC +wkC +wkC +wkC +ebd ceH ceH aAO @@ -65923,63 +54067,63 @@ aAO aAO aAO anA -aom -aov -apo -aoP +jyC +hIf +vUs +qpa lqe lqe lqe -apX -aqH -arr -arM -apn -apn -apn -apn -apn -apn -arM -apn -ayL -apn -aCg -aDO -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aHx -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aNf -aZL -bau +enE +kDB +hVZ +fpN +nqj +nqj +nqj +nqj +nqj +nqj +fpN +nqj +gpi +nqj +mkn +dsX +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +xxQ +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +uxf +oAZ +syf bdI jBu -bfb +inQ jBu baa baa baa bdC -bkR -bkR +gFh +gFh bdC baa baa @@ -65988,53 +54132,53 @@ jBu gJO jBu bdI -buL -bvy -bxm -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -jtk -bFZ -bwz -bwz -bwz -jtk -bwz -bwz -bwz -bwz -bwz -oud -jtk -bwz -bwz -bwz -bYx -bwz -bwz -hBf -prF -bZT -bZT -bZT -bZT -nFQ -cle -bZQ -cld -bZQ -bZQ -bZQ -bZQ -bZQ -cgi -cph +nXX +iva +rSi +jhP +jhP +jhP +jhP +jhP +jhP +jhP +jhP +tpP +vdH +jhP +jhP +jhP +tpP +jhP +jhP +jhP +jhP +jhP +fez +tpP +jhP +jhP +jhP +kDd +jhP +jhP +dFO +wWJ +wkC +wkC +wkC +wkC +ovf +tOg +vGk +xoz +vGk +vGk +vGk +vGk +vGk +dTi +ebd ceH aAO aAO @@ -66136,117 +54280,117 @@ aAO aAO anA aon -apj +fGw aor -aoQ +yeq tCH gFT ppz -apY -aqo -aqo -aqo -aqo -aqo -aqo -aqo -aqo -aqo -aqo -atz -ayN -axV -aCh -aCh -aER -aDP -aDP -aTT -blW -aDP -aDP -aDP -aDP -aDP -aDP -aMX -aER -aDP -aDP -aDP -aDP -blW -aDP -aDP -aDP -aDP -aDP -bav +jRn +qhj +qhj +qhj +qhj +qhj +qhj +qhj +qhj +qhj +qhj +qui +tUa +gSt +xjW +xjW +yjQ +uSQ +uSQ +xfB +iSc +uSQ +uSQ +uSQ +uSQ +uSQ +uSQ +ukF +yjQ +uSQ +uSQ +uSQ +uSQ +iSc +uSQ +uSQ +uSQ +uSQ +uSQ +sQO bdI -bdg -bfd -bgs -bgp -bhj +rIq +jBJ +oqA +kso +tiH baa -bjr -bgs -bgs -bhI +hBs +oqA +oqA +miP baa -boK -bgs -bgs -bfd -bhI +nvu +oqA +oqA +jBJ +miP bdI -buM -bvz -bvz -bvz -bvz -bvz -bvz -bvz -bvz -bvz -bvz -bEU -bGa -bvz -bvz -bvz -bvz -bvz -bvz -bMg -srr -bvz -eXA -bEU -bTQ -bTQ -bTQ -bYy -caZ -bTQ -fRC -bZU -bZU -bZU -bZU -bZU -bZU -bZU -bZU -clf -cqv -cqv -cqv -cqv -cqv -cqv -ldp +pqz +jze +jze +jze +jze +jze +jze +jze +jze +jze +jze +xRF +dKR +jze +jze +jze +jze +jze +jze +krR +tyI +jze +ljW +xRF +lpt +lpt +lpt +sIo +soL +lpt +mcZ +iyy +iyy +iyy +iyy +iyy +iyy +iyy +iyy +vMf +uim +uim +uim +uim +uim +uim +jVv ceH aAO aAO @@ -66347,42 +54491,42 @@ aAO aAO aAO anA -aoo -apk +evb +pAA aor -aoQ +yeq tCH gFT pXC -apZ +jBE aor aor -apj +fGw aon aor aor -apj +fGw aon aon aor -aoQ -axW -axW -aCi -aCi -aES +yeq +sBM +sBM +wKZ +wKZ +gRZ aCl aEV -aIs +jWH aCl aEV -aIs +jWH aCl aEV -aIs +jWH aCl -aMY -aES +tte +gRZ aCl aUY aCl @@ -66391,30 +54535,30 @@ aCl aUY aCl aCl -aIs +jWH bbX aCl bdI -bdd +ttM bfe bgt bgq -bhk +wQD jBu -bdd +ttM aYY aYY -bbV +dXM jBu -boL +dMX bgt bgt bpT -bbV +dXM bdI bvA bwC -bPg +dib bvA bvA bVw @@ -66423,33 +54567,33 @@ bVw bvA bVw bvA -byC -bGd +hMe +hdU bvA -bPg +dib bwC bvA -bPg +dib bwC bvA -bPg +dib bwC bvA sTy sTy -hSK -hSK -hSK -hNY +gUn +gUn +gUn +xQM sTy sTy bYC bYC -cuI +nMU bZO bYC bYC -cuI +nMU bZO bZO bYC @@ -66560,41 +54704,41 @@ aAO aAO anA aop -aox +ijD aor -aoQ +yeq tCH gFT ppz -apZ +jBE aor -apC -apk -aoo +hrJ +pAA +evb aor -apC -apk -apk -aoo +hrJ +pAA +pAA +evb aor -awS -axW -axW -aCi -aCi -aET +hyM +sBM +sBM +wKZ +wKZ +fUi aCl -aGg -aDR +lxA +dIW aCl -aGg -aDR +lxA +dIW aCl -aGg -aDR +lxA +dIW aCl -aMY -aES +tte +gRZ aCl aKx aCl @@ -66602,32 +54746,32 @@ aKx aCl aKx aCl -bac -aYs -aDR -aIF +sSB +egF +dIW +mAb bdI -bbt +kBw aYY aYY bgr -bhl -bil -btz +npj +iJQ +uIq bgt bqU -bbU -bil -boM +rsu +iJQ +gCM bpr bpU -bbV -bbt +dXM +kBw bdI -bvB -bwD -bwD -bxP +yiK +whO +whO +kFh bvA bxk bvA @@ -66635,35 +54779,35 @@ bxk bvA bxk bvA -byC -bGd +hMe +hdU bvA -bwD -bIJ +whO +ckX bvA -bwD -bIJ +whO +ckX bvA -bwD -bIJ +whO +ckX bvA bSb -mSQ -mSQ -bTS -bTS -pPF -mSQ +oJV +oJV +hcK +hcK +mpV +oJV sTy bYC -cjr -ceL -crK +mZW +ttR +hdg bYC -cjr -ceL -ceL -crK +mZW +ttR +ttR +hdg bYC cbf cbc @@ -66672,19 +54816,19 @@ cbc gXQ ceh bYC -iWG -ctE -csk -csk -csk -csk -csk -csk -csk -ctE -csk -cwG -cwr +weN +rrm +rac +rac +rac +rac +rac +rac +rac +rrm +rac +ekG +wYG cwq aAO aAO @@ -66771,42 +54915,42 @@ aAO aAO aAO anA -aoq -apl +qFV +wcQ aor -aoQ +yeq lqe lqe lqe -apZ +jBE aor -apl +wcQ app -aox +ijD aor -apl +wcQ app -aox -aox +ijD +ijD aor -awT -axW -axW -aCi -aCi -aET +wew +sBM +sBM +wKZ +wKZ +fUi aCl aEP -aGb +gDc aCl aKv -aGb +gDc aCl aEP -aGb +gDc aCl -aMY -aES +tte +gRZ aCl aKx aCl @@ -66814,32 +54958,32 @@ aKx aCl aKx aCl -aGb +gDc aJQ -aGb -aEO +gDc +uVN bdI -bbu -bdh -bgu +pNr +dZK +qCn aYY -bhm +pgk jBu -bjt +tKe aYY brZ -bnd +tXr bog -boN +xzu bab -bpV -bqw -bbu +kGM +efq +pNr bdI -bvC -bwA -bxo -bwA +gNK +uFc +eoM +uFc bvA bxk bvA @@ -66847,35 +54991,35 @@ bxk bvA bxk bvA -byC -ugC +hMe +eqX bvA byx -bwA +uFc bvA byx -bwA +uFc bvA -bvH -bwA +dtE +uFc bvA sTy -mSQ -hMP -kgy -kgy -oHs -mSQ +oJV +gXx +tUq +tUq +nGP +oJV sTy bYC -bZS +vHy caw -bZQ +vGk bYC -bZS +vHy caw -bZQ -bZQ +vGk +vGk bYC cbf sVg @@ -66884,19 +55028,19 @@ coJ coJ coJ pvE -ldw -gPF -ctc -ctc -ctc -ctc -ctc -ctc -ctc -ctF -ctb -cwd -cwr +mHh +dnT +dOE +dOE +dOE +dOE +dOE +dOE +dOE +glc +uGf +eLN +wYG cwq aAO aAO @@ -66986,11 +55130,11 @@ anA aor aor aor -atB +lBq lqe lqe lqe -apZ +jBE aor aor aor @@ -67001,24 +55145,24 @@ aor aor aor aor -awT -axW -axW -aCi -aCi -eWk +wew +sBM +sBM +wKZ +wKZ +ezE aCl -aHv -aEO +sQx +uVN aCl -aHv -aEO +sQx +uVN aCl -aHv -aEO +sQx +uVN aCl -aMY -aES +tte +gRZ aCl aCl aCl @@ -67031,22 +55175,22 @@ aCl aCl aCl bdI -bbv -bdi -bff -bgv -bhn +eZO +qJV +noe +riZ +ehs baa -bju -bgv -blY -bne +cOK +riZ +kbk +jKU baa -boO -bgv -bpW -bdi -bbv +dXq +riZ +iFc +qJV +eZO bdI bvA bvA @@ -67059,25 +55203,25 @@ bvA bvA bvA bvA -byC -bGd +hMe +hdU bvA -bvC -bIK +gNK +sPt bvA -bvC -bIK +gNK +sPt bvA -bvC -bIK +gNK +sPt bvA vPr -mSQ -kgy -kgy -kgy -nGQ -mSQ +oJV +tUq +tUq +tUq +nPI +oJV sTy bYC bYC @@ -67096,8 +55240,8 @@ cqK cqK cqK cqK -cqw -cru +fay +deC cqK crL cqK @@ -67108,7 +55252,7 @@ cuK cqK cqK csB -csz +vAy cwq cwq aAO @@ -67195,30 +55339,30 @@ aAO aAO aAO anA -aos -apl +sar +wcQ aor -aoQ +yeq lqe lqe aoS -apZ +jBE aor -apl -aos +wcQ +sar aor -apl -aos +wcQ +sar aor -apl -auX +wcQ +gfI aor -sGB -axW -ayO -aCi -aCi -aET +wRO +sBM +spR +wKZ +wKZ +fUi aCl aCl aCl @@ -67229,19 +55373,19 @@ aCl aCl aCl aCl -aMZ -aES +lWl +gRZ aCl -aGa -aGb -aVs +rfp +gDc +vhs aEV -aKz -bda +gFn +gQg aEV -bbc -aGb -aGa +wNP +gDc +rfp bdI bdI bdI @@ -67250,8 +55394,8 @@ bdI bdI bdI bjv -bkS -blZ +eCH +gzI bjv bdI bdI @@ -67260,19 +55404,19 @@ bdI bdI bdI bdI -bvD -bwA -bxp +iRP +uFc +vDi bwC -buI -bvv +iOf +cDj bwC -bCf -bwA -bvD +eVe +uFc +iRP bvA -byC -bGd +hMe +hdU bvA bvA bvA @@ -67284,44 +55428,44 @@ bvA bvA bvA sTy -mSQ -kgy -kgy -kgy -nGQ -mSQ +oJV +tUq +tUq +tUq +nPI +oJV sTy bYC -bZS -bZR +vHy +kAj bYC -bZS -bZR +vHy +kAj bYC -bZS -jTC +vHy +mAy bYC irA wHq bYC -cqI +rmS crr -crW -cqf -cqw -cru +tiE +tYE +fay +deC cqK cqM cqK cqM cqK -cuz -csA -cvw +hlT +ecV +gEv cqK -cuz -csA -cvw +hlT +ecV +gEv cwq aAO aAO @@ -67408,132 +55552,132 @@ aAO aAO anA aop -aox +ijD aor -aoQ +yeq tCH gFT ppz -apZ +jBE aor aop -aox +ijD aor aop -aox +ijD aor aop -aox +ijD aor -awT -axW -axW -aCi -aCi -aET +wew +sBM +sBM +wKZ +wKZ +fUi aCl -aEO +uVN aDS aJP -aGb +gDc aCl -aEO +uVN aJP -aGb +gDc aCl -aMY -aES +tte +gRZ aCl -aEO +uVN aJQ -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT aJQ -aEO +uVN baw -bbw -bdj +uhs +dBL bdk bdk -bka +mjV bfc -bjw -bkT -bma -bnf +mII +dGv +pBR +fnp bfc -bqT +myX bdk bdk -bqx -bqV +dJm +rMl baw -bvC +gNK bwE -bxq -bCA -byC -bvw -bCA -bCg +qRj +kLQ +hMe +nwD +kLQ +sbm bwE -bvC +gNK bvA -byC -bGd +hMe +hdU bvA -bwA +uFc bBy -bvC +gNK bvA -bwA +uFc bBy -bwA -bvC +uFc +gNK bvA sTy -mSQ -hMP -kgy -kgy -oHs -mSQ +oJV +gXx +tUq +tUq +nGP +oJV sTy bYC ceI -bZQ +vGk bYC ceI -bZQ +vGk bYC ceI -bZQ +vGk bYC cbc wHq bYC -cqJ -cpm -crX +gjE +pUb +nNE csB -cqw -crv +fay +iyO cqK cqM cqK cqM cqK -cpm -cuO -cqI +pUb +oRs +rmS cqK -cpm -cuO -cqI +pUb +oRs +rmS cwq aAO aAO @@ -67619,49 +55763,49 @@ aAO aAO aAO anA -aot -apm +xlp +ivb aor -aoQ +yeq tCH gFT ppz -apZ +jBE aor -apm -aot +ivb +xlp aor -apm -aot +ivb +xlp aor -apm -aot +ivb +xlp aor -awT -axW -axW -aCi -aCi -aET +wew +sBM +sBM +wKZ +wKZ +fUi aCl -aHw -aEQ -aEQ -aGc +reb +gOk +gOk +pEW aCl -aHw -aKs -aGc +reb +viZ +pEW aCl -aMY -aES +tte +gRZ aCl aCl aCl aCl aCl -aNe -aES +opD +gRZ aCl aCl aCl @@ -67671,14 +55815,14 @@ bfc bfc bfh bgw -bho -bim -bjx +pxS +nQo +jOz bkV bmb -bng -bim -boP +hMJ +nQo +qOG bps bpX bfc @@ -67688,42 +55832,42 @@ bvA bvA bvA bvA -byC -bvw +hMe +nwD bvA bvA bvA bvA bvA -byC -bGd +hMe +hdU bvA -bIc -bzz -bJr +lBP +mnq +lUF bvA -bIc -bzz -bzz -bJr +lBP +mnq +mnq +lUF bvA sTy -mSQ -mSQ -bTS -bTS -pPF -mSQ +oJV +oJV +hcK +hcK +mpV +oJV sTy bYC -cfW -ceJ +oEN +aBq bYC -cfW -ceJ +oEN +aBq bYC -cfW -ceJ +oEN +aBq bYC cbc wHq @@ -67732,8 +55876,8 @@ cqK cqK cqK cqK -cqL -cru +rVr +deC cqK cqK cqK @@ -67832,120 +55976,120 @@ aAO aAO anA aon -apj +fGw aor -aoQ +yeq tCH gFT mqW -aqa +iPn aor -apj +fGw aon aor -apj +fGw aon aor -apj +fGw aon aor -aoQ -axW -axW -aCi -aCi -aES +yeq +sBM +sBM +wKZ +wKZ +gRZ aCl aCl aEV -aIs +jWH aEV aCl aCl -aIs +jWH aEV aCl -aMY -aES +tte +gRZ aCl -aGa -aGb -aVs +rfp +gDc +vhs aEV -aLO -aES +qHz +gRZ aEV -bbc -aGb -aGa +wNP +gDc +rfp baw bbx bdk bdk bgx -bhp +dxX bla -bjy +scJ bdk bmc -bni +esZ bla -boQ +eNv bpt bdk bdk bbx baw -bvD -bwA -bxp +iRP +uFc +vDi bwC -byC -bvw +hMe +nwD bwC -bCf -bwA -bvD +eVe +uFc +iRP bvA -byC -bGe +hMe +rPu bvA bwC -bPg +dib bvA bvA bwC -bPg +dib bwC bvA bvA sTy sTy -hSK -hSK -hSK -hNY +gUn +gUn +gUn +xQM sTy sTy bYC -cuI +nMU bZO bYC -cuI +nMU bZO bYC -cuI +nMU bZO bYC cbc wHq bYC -cqI +rmS crr -crW -cqf -cqw -cru +tiE +tYE +fay +deC crL cqM cqM @@ -68043,121 +56187,121 @@ aAO aAO aAO anA -aou -apn -apn -aoU +iDb +nqj +nqj +niE anx lqe lqe -aqb -apn -apn -apn -apn -apn -apn -arM -apn -apn -apn -aoU -axW -ayP -aCj -aCi -aEU -aCg -aHx -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aCg -aNa -aOI +kpw +nqj +nqj +nqj +nqj +nqj +nqj +fpN +nqj +nqj +nqj +niE +sBM +mew +grf +wKZ +jVO +mkn +xxQ +mkn +mkn +mkn +mkn +mkn +mkn +mkn +mkn +lFE +uXv aCl -aEO +uVN aJQ -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT aJQ -aEO +uVN baw bby bdm bdk bgy -nMM +msn bla -bjy +scJ bdk bmc -bnk +uoo bla -uJE +jxo bgy bdk bdm bby baw -bvC +gNK bwE -bxq -bCA -byC -bvw -bCA -bCg +qRj +kLQ +hMe +nwD +kLQ +sbm bwE -bvC +gNK bvA -bEV -bGf -bwz -bwz -bwz -bwz -bIM -bwz -jtk -bwz -oud -bwz -bSd -bTS -bVe -bWO -bTS -mBJ -bTS -kdI -bZT -bZT -prF -bZT -bZT -bZT -ssZ -bZT -cph +cXL +gkA +jhP +jhP +jhP +jhP +mbe +jhP +tpP +jhP +fez +jhP +ujq +hcK +xas +kaI +hcK +oYS +hcK +gqn +wkC +wkC +wWJ +wkC +wkC +wkC +iKQ +wkC +ebd bYC cbc wHq bYC -cqJ -cpm -crX +gjE +pUb +nNE csB -cqw -cru +fay +deC cqK cqK cqK @@ -68255,49 +56399,49 @@ aAO aAO aAO anA -aov -apo -apo -apo -apo -apo -aoV -aqc -aqI -aqo -aqo -aqo -aqo -aqo -atz -aqI -aqo -aqo -aqo -aqo -aof -aCk -aDP -aDP -aDP -aDP -aDP -aDP -aDP -aDP -aLN -aCh -aCh +hIf +vUs +vUs +vUs +vUs +vUs +jyu +vLt +qCv +qhj +qhj +qhj +qhj +qhj +qui +qCv +qhj +qhj +qhj +qhj +xXF +nte +uSQ +uSQ +uSQ +uSQ +uSQ +uSQ +uSQ +uSQ +lAC +xjW +xjW aLH aNb -aOJ +pQn aCl aCl aCl aCl aCl -aLO -aES +qHz +gRZ aCl aCl aCl @@ -68309,10 +56453,10 @@ bfc bfc bfc bfc -bjy +scJ bdk bmc -bnk +uoo bfc bfc bfc @@ -68324,42 +56468,42 @@ bvA bvA bvA bvA -byE -bvw +ykP +nwD bvA bvA bvA bvA bvA -bEX +iHV bGg bHs afw bIL -bIk -bvz -bvz -bvz -bvz -eXA -bQv -bQv -bvz -eOw -bWP -bQv -bVf -bvz -tFq -ccS -bYz -bYz -bYz -bYz -bYz -bYz -bYz -cba +rFV +jze +jze +jze +jze +ljW +woN +woN +jze +lAw +tct +woN +diL +jze +nmR +ndb +wBl +wBl +wBl +wBl +wBl +wBl +wBl +iNj bYC cbc wHq @@ -68368,8 +56512,8 @@ cqK cqK cqK cqK -cqw -cru +fay +deC crL cqM cqM @@ -68468,110 +56612,110 @@ aAO aAO anA aon -apj +fGw aor aor aor aor aor -aqe -apZ +iJc +jBE aor aon -apj +fGw aor aor -aoQ -apZ +yeq +jBE aor aor -apj +fGw aon aor aCl -aIs +jWH aEV aEV aCl aCl -aIs +jWH aEV aCl -aNe -aGb -aGb +opD +gDc +gDc aDS aNc -aES +gRZ aCl -aGa -aGb -aTx +rfp +gDc +iYZ aEV -aLO -aES +qHz +gRZ aEV -bbc -aGb -aGa +wNP +gDc +rfp baw -bbw -bdj +uhs +dBL bdk bdk -bka +mjV bfc -bjA +fae bkY bmc -bnl +qWa bfc -bqT +myX bdk bdk -bqx -bqV +dJm +rMl baw -bvD -bwA -bxp +iRP +uFc +vDi bwC -byC -bvw +hMe +nwD bwC -bCf -bwA -bvD +eVe +uFc +iRP bvA -byC +hMe bGh bwH bKs afH -bvw +nwD bvA bwC -bPg +dib bvA bvA bwC bwC -bPg +dib bvA bYC bYC bYC bYC bYC -cdi -qbV -bYz -qMp -dEm -dEm -fOl -bYz -cbb +flT +jmm +wBl +vqF +hvo +hvo +wxX +wBl +tyx bYC cbc wHq @@ -68580,20 +56724,20 @@ cqM qOc cqM csD -cqw -cru +fay +deC cqK cqK cqK cqK cqK -iuH -csA -csA -csA -csA -csA -gPU +nZe +ecV +ecV +ecV +ecV +ecV +jhV cxa cxa cxa @@ -68679,111 +56823,111 @@ aAO aAO aAO anA -aow -apk -apC +oJp +pAA +hrJ aor apq apq ang -aoQ -apZ +yeq +jBE aor -aow -apk -apC +oJp +pAA +hrJ aor -aoQ -apZ +yeq +jBE aor -apC -apk -aoo +hrJ +pAA +evb aor -aCm -aDR -aDR -aGg +xcO +dIW +dIW +lxA aCl -aIF -aDR -aGg +mAb +dIW +lxA aCl -aLO -aGb -aGb +qHz +gDc +gDc aDS aNc -aES +gRZ aCl -aEO +uVN aDS -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT bbY -aEO +uVN baw bfc bfc bfh bgw -bho -bim -bjB +pxS +nQo +oZf blb bmb -bnm -bim -boP +uoq +nQo +qOG bpu bpX bqy bfc baw -bvC +gNK bwE -bxq -bCA -byC -bvw -bCA -bCg +qRj +kLQ +hMe +nwD +kLQ +sbm bwE -bvC +gNK bvA -byC +hMe bGh bwH bKs bKs -bvw +nwD bvA -bLf -bwD -bvB +mTs +whO +yiK bvA -bLf -bwD -bwD -bVg +mTs +whO +whO +iby bYC -bZS +vHy cmc -cay -cbR -cdi -qbV -bYz -oqL -fPR -fPR -kzZ -bYz -cbb +eEu +cTl +flT +jmm +wBl +wrn +uQz +uQz +thB +wBl +tyx bYC cbc wHq @@ -68792,21 +56936,21 @@ cqM cqM cqM csD -cqw -crw -crO -csk -vKN -cwr -knf -cpm -cpm -cpm -cpm -cpm -cpm -cpm -knf +fay +oEl +lDV +rac +qKK +wYG +kMX +pUb +pUb +pUb +pUb +pUb +pUb +pUb +kMX cyO rvO rvO @@ -68891,49 +57035,49 @@ aAO aAO aAO anA -aox +ijD app -apl +wcQ aor aor aor aor -aoR -apZ +tRc +jBE aor -aox +ijD asi -apl +wcQ aor -aoQ -apZ +yeq +jBE aor -apl +wcQ app -aox +ijD aor -aCn +liz aDS -aEW -aGh +nWj +oGH aCl -aEO +uVN aJQ -aGb +gDc aCl -aJu -aLe -aLg +mfg +pbf +gNL aDS aNc -aES +gRZ aCl aCl aCl aCl aCl -aLO -aES +qHz +gRZ aCl aCl aCl @@ -68943,14 +57087,14 @@ bbx bdn bdk bgx -bhp +dxX bla -bjy +scJ bdk bmc -bnk +uoo bla -boQ +eNv bpt bdk bdk @@ -68960,42 +57104,42 @@ bvA bvA bvA bvA -byC -bvw +hMe +nwD bvA bvA bvA bvA bvA -byC +hMe bGj bwH -bIe -bwF -bxv +qpD +gTl +pVn bvA -bwA +uFc bwE -bvC +gNK bvA -bvG +eYB bSf -bwA -bVh +uFc +pad bYC -bZV -bZQ -caz +fxT +vGk +iel bZO -cdi -qbV -bYz -oqL -fPR -fPR -kzZ -bYz -cbb +flT +jmm +wBl +wrn +uQz +uQz +thB +wBl +tyx bYC wSW wHq @@ -69004,21 +57148,21 @@ cqN cqM cqN cqK -cqS -crx -crY -csy -xzA -cwr -knf -cpm -cpm -cpm -cpm -cpm -cpm -cpm -knf +pNQ +kHf +sBf +cXs +iUB +wYG +kMX +pUb +pUb +pUb +pUb +pUb +pUb +pUb +kMX cyO cyO cyO @@ -69110,15 +57254,15 @@ anA apq apq ang -aoQ -apZ +yeq +jBE aor aor aor aor aor -aoQ -apZ +yeq +jBE aor aor aor @@ -69135,54 +57279,54 @@ aCl aCl aCl aCl -aLO +qHz aDS aNc -aEU -aCg -aCg -aCg -aHx -aCg -aVi -aWm -aCg -aCg -aCg -bda +jVO +mkn +mkn +mkn +xxQ +mkn +xjO +ixX +mkn +mkn +mkn +gQg baw bbz bdm bdk bgy -nMM +msn bla -bjy +scJ bdk bmc -bnk +uoo bla -uJE +jxo bgy bdk bdm bby baw -bvE -bwz -bwz -bwz -byF -bxj -byS -bwz -bwz -bwz -bwz -bFb +tsP +jhP +jhP +jhP +mrM +xxc +sZb +jhP +jhP +jhP +jhP +ijy bGj bwH -bvw +nwD bvA bvA bvA @@ -69199,15 +57343,15 @@ bYC bYC bYC bYC -tNi -qbV -bYz -wwc -usx -usx -nIV -bYz -cbb +vno +jmm +wBl +fnE +wCB +wCB +cNj +wBl +tyx bYC ceh wHq @@ -69216,20 +57360,20 @@ cqN cqM cqN cqK -cqw -cru +fay +deC cqK -csz +vAy csB cqK cqK -caX -ctR -ctR -ctR -ctR -ctR -rSg +lBH +tCa +tCa +tCa +tCa +tCa +eFs cqK cyO cyO @@ -69322,46 +57466,46 @@ anA aor aor aor -aoQ -apZ +yeq +jBE aor -aos -aox -asO +sar +ijD +seo aon -aoQ -apZ +yeq +jBE aon -avE -aox -aos +fRS +ijD +sar aBg -azR -aBw -aBw -aDF -aFk -azR +rls +sYN +sYN +iiS +xVT +rls aBg aKx aCl aJv aCl -aNe +opD aDS aNg -aER -aDP -aDP -aDP -aDP -aDP -aVj -aWB -aLe -aLe -jpt -aZM +yjQ +uSQ +uSQ +uSQ +uSQ +uSQ +mpi +osS +pbf +pbf +meK +rBW baw bfc bfc @@ -69369,10 +57513,10 @@ bfc bfc bfc bfc -bjH +tNd bdk bme -bnk +uoo bfc bfc bfc @@ -69380,46 +57524,46 @@ bfc bfc bfc baw -bvF -bwF -bwF -bwF -bwf -bxl -bvz -bvz -bBx -bvz -bvz -bEU +fGV +gTl +gTl +gTl +iWM +bWa +jze +jze +lig +jze +jze +xRF bGk bwH -bvw +nwD bvA bxk bvA bxk bOm -bMY -bOX -bOX -bSh -bOX -bVi +nyJ +ghv +ghv +ncs +ghv +lmT bOm -bZS +vHy cmc -cay -cbR -cdi -bYz -bYz -bYz -bYz -bYz -bYz -bYz -cba +eEu +cTl +flT +wBl +wBl +wBl +wBl +wBl +wBl +wBl +iNj bYC cbf wHq @@ -69428,11 +57572,11 @@ cqK cqK cqK cqK -cqw -cru +fay +deC cqK -csA -ctd +ecV +xtI cqK cqM cqM @@ -69534,117 +57678,117 @@ anA apq apq ang -aqf -aqJ +ebO +duF aor -apl +wcQ asj -asP -atm -aoQ -apZ -atm -avF +duB +gJp +yeq +jBE +gJp +uJA app -apl +wcQ aBg -azS -aBx -aCz -aDG -aFl -aGB +uWQ +qHm +mDZ +jbN +nPm +mBR aBg aKx aCl aKx aCl -aLh +lqp aDS aNc -aES +gRZ aCl aCl aCl aCl aCl -aLO -aES +qHz +gRZ aCl aCl aCl aCl baw -bbw -bdj +uhs +dBL bdk bdk -bka +mjV bfc -bjy +scJ bdk bmc -bnk +uoo bfc -bqT +myX bdk bdk -bqx -bqV +dJm +rMl baw bvA bvA bvA bvA -byC -bvw +hMe +nwD bvA bvA bvA bvA bvA -byC +hMe bGj bwH -bvw +nwD bvA bxk bvA bxk bOm -bMZ +mqr bOY bQw bSi bTT -bVj +otv bOm -bZV -bZQ -caz +fxT +vGk +iel bZO -cdi -clQ -cqv -cqv -cqv -cqv -cqv -cqv -cpl +flT +iep +uim +uim +uim +uim +uim +uim +hBG bYC cbf wHq bYC -cqI +rmS crr -crW -cqf -cqw -cry +tiE +tYE +fay +aOH cqK csE -cpm +pUb cqK cqN cqM @@ -69746,117 +57890,117 @@ anc anB anB anB -aqg +uJo anH anB aor aor aor aor -atB -apZ +lBq +jBE aor aor aor aor aBg -azS -aBy -aCA -aDH -aBy -aGB +uWQ +lyp +vpV +tkJ +lyp +mBR aBg aUY aCl aUY aCl -aLO +qHz aDS aNc -aES +gRZ aCl -aEO +uVN aJP -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT aJP -aEO +uVN baw bfc bfc bfh bgw -bho -bim -bjx +pxS +nQo +jOz blb bmb -bng -bim -boP +hMJ +nQo +qOG bpu bpX bfc bfc baw -bvC +gNK bBy -bxq -bCA -byC -bvw -bCA -bCg +qRj +kLQ +hMe +nwD +kLQ +sbm bBy -bvC +gNK bvA -bHk +ljj bGj bwH -bvw +nwD bvA -bOW +eWD bvA -bOW +eWD bOm -lfT +kKy bOZ bQx bSl bOZ -bVj +otv bOm bYC bYC bYC bYC -tNi -cba +vno +iNj bYC bYC bYC bYC cjB cmk -mbP +kIj cjB cjB nyk cjB -cqJ -cpm -crX +gjE +pUb +nNE csB -cqw -cru +fay +deC cqK -cqI -ctr +rmS +xdo cqK ead ead @@ -69955,117 +58099,117 @@ acL aAO aAO anc -anC -anZ -aoW -aqh -aqL +eNc +orG +sRh +uZT +lpf anB -aos -aox -asO +sar +ijD +seo aon -aoQ -apZ +yeq +jBE aon -avE -aqH -aos +fRS +kDB +sar aBg -azT -aBy -aCB -aDH -aBy -aGC +jsO +lyp +tGO +tkJ +lyp +xRw aBg -aKz -aCg -aCg -aCg -aNf +gFn +mkn +mkn +mkn +uxf aLI aNc -aES +gRZ aCl -aGh -aGb -aVs +oGH +gDc +vhs aEV -aLO -aES +qHz +gRZ aEV -bbc -aGb -aGh +wNP +gDc +oGH baw bbx bdk bdk bgx -bhp +dxX bla -bjy +scJ bkY bmc -bnk +uoo bla -boQ +eNv bpt bdk bdk bbx baw -bvG -bwA -bxp +eYB +uFc +vDi bwC -byC -bvw +hMe +nwD bwC -bCf -bwA -bvG +eVe +uFc +eYB bvA -bFd +kFA bGj bwH -bxm -bIM -bwz -bwz -bvv -nXF -bNc +rSi +mbe +jhP +jhP +cDj +sEc +gnT bOZ bQx bSl bOZ -bVk +jHU bOm -bZS +vHy cmc -cay -cbR -cdi -cba -cbR -cgh +eEu +cTl +flT +iNj +cTl +sZr cmc -bZS +vHy cjB -lME -vKV -gbI -gbI -upJ +qrA +eMk +vDQ +vDQ +lbS cjB cqK cqK cqK cqK -cqw -cru +fay +deC cqK cqK cqK @@ -70167,45 +58311,45 @@ acL aAO aAO anc -anD +kAk aoa aoX -aqi -aqM +oYW +pvD anB -apl +wcQ app -asP -atm -aoQ -apZ -atm -avF +duB +gJp +yeq +jBE +gJp +uJA app -apl +wcQ aBg -azS -aBy -aCB -aDH -aFn -aGB +uWQ +lyp +tGO +tkJ +qvO +mBR aBg -aKA -aLe -aLe -aLe -aLg +oyz +pbf +pbf +pbf +gNL aDS aNc -aES +gRZ aCl aCl aCl aCl aCl -aLO -aES +qHz +gRZ aCl aCl aCl @@ -70215,14 +58359,14 @@ bby bdm bdk bgy -nMM +msn bla -bjy +scJ bdk bmc -bnk +uoo bla -uJE +jxo bgy bdk bdm @@ -70232,64 +58376,64 @@ bvA bvA bvA bvA -byE -bvw +ykP +nwD bvA bvA bvA bvA bvA -byC +hMe bGj bwH -bIe -bwF -bwF -bwF -bxv -ufM -bMZ +qpD +gTl +gTl +gTl +pVn +sJe +mqr bOZ bQx bSl bOZ -bVj +otv bOm -bZV -bZQ -caz +fxT +vGk +iel bZO -cdi -cba +flT +iNj bZO -cgj -bZQ -bZV +iqf +vGk +fxT cjB -ckB -llz +wGU +fgC sBQ sBQ -tPi +cYp cjC ccV -caq -cjD +rxV +wEu ccV -cte -ctS +xQY +qeN cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun cun cun @@ -70379,49 +58523,49 @@ acL aAO aAO anc -anE +guj aoc aoY -aql -aqN +yis +xwE anB aor aor aor aor -aoR -apZ +tRc +jBE aor aor aor aor aBg -azS -aBy -aBy -aDK -aBy -aGB +uWQ +lyp +lyp +lpU +lyp +mBR aBg aUY aCl aUY aCl -aLO +qHz aDS aNc -aES +gRZ aCl -aEO +uVN aJP -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT aJP -aEO +uVN baw bfc bfc @@ -70429,10 +58573,10 @@ bfc bfc bfc bfc -bjK +fMS bdk bmc -bnn +oQz bfc bfc bfc @@ -70440,68 +58584,68 @@ bfc bfc bfc baw -bvC +gNK bBy -bxq -bCA -byC -bvw -bCA -bCg +qRj +kLQ +hMe +nwD +kLQ +sbm bBy -bvC +gNK bvA -byC +hMe bGj bwH -bvw +nwD bvA -bOW +eWD bvA -bOW +eWD bOm -bMZ -bQQ -bQA -bQQ -bTU -bVj +mqr +mQE +mJh +mQE +txI +otv bOm bYC bYC bYC bYC -tNi -cba +vno +iNj bYC bYC bYC bYC cjB -cjA -clj +hUa +dTm sBQ cmF -cnm +uTA cjC ccV xVH -cbA +uEa ccV -ctf -ctT +veB +kUw cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun cyO cun @@ -70591,129 +58735,129 @@ acL aAO aAO anc -anF +vTD aoc -aoZ -aqm -aqO +qCL +dNk +bMw anB -aos -aox -asO +sar +ijD +seo aon -aoQ -apZ +yeq +jBE aon -avE -aox -aos +fRS +ijD +sar aBg -azU -aBz -aBB -aDL -aBz -azU +wpt +wBX +mWt +rrB +wBX +wpt aBg aKx aCl aKx aCl -aLO +qHz aDS aNc -aES +gRZ aCl -aGh -aGb -aVs +oGH +gDc +vhs aEV -aLO -aES +qHz +gRZ aEV -bbc -bbZ -aGh +wNP +npU +oGH baw -bbw -bdj +uhs +dBL bdk bdk -bka +mjV bfc -bjL +gtl bdk bmc -bno +jvY bfc -bqT +myX bdk bdk -bqx -bqV +dJm +rMl baw -bvG -bwA -bxp +eYB +uFc +vDi bwC -byC -bvw +hMe +nwD bwC -bCf -bwA -bvG +eVe +uFc +eYB bvA -byC +hMe bGl bwH -bvw +nwD bvA bxk bvA bxk bOm -bNe -bPb -bQB -bSv -bPb -bVl +iTw +xHG +jwL +dWY +xHG +mvi bOm -bZS +vHy cmc -cay -cbR -cdi -cem -cbR -cgh +eEu +cTl +flT +wcX +cTl +sZr cmc -bZS +vHy cjB -ckC -cmV -clS +pbr +nFy +plX cmG -cnn +sgS cjC ccV -ciz -cjE +dgZ +sZv ccV -ctf -ctT +veB +kUw cun -cuN -cuV +vdN +hYy cun -cuN -cuV +vdN +hYy cun -cuN -cuV +vdN +hYy cun -cuN -cuV +vdN +hYy cun cyO cun @@ -70803,27 +58947,27 @@ acL aAO aAO anc -anG -aod -apa -aqn -aqn +jPg +bii +tJc +grr +grr anB -apl +wcQ app -asP -atm -aoQ -apZ -atm -avF +duB +gJp +yeq +jBE +gJp +uJA app -apl +wcQ aBg aCt aCt -aCC -aDM +qYm +uSP aCt aCt aBg @@ -70831,17 +58975,17 @@ aKx aCl aKx aCl -aNe +opD aDS aNc -aES +gRZ aCl aCl aCl aCl aCl -aNe -aES +opD +gRZ aCl aCl aCl @@ -70851,14 +58995,14 @@ bfc bfc bfh bgw -bho -bim -bjB +pxS +nQo +oZf blb bmb -bnm -bim -boP +uoq +nQo +qOG bpv bpX bfc @@ -70868,17 +59012,17 @@ bvA bvA bvA bvA -byC -bvw +hMe +nwD bvA bvA bvA bvA bvA -byC +hMe bGj bwH -bvw +nwD bvA bxk bvA @@ -70886,58 +59030,58 @@ bxk bOm bNf bNf -bQC -bSm +wnu +riH bNf bNf bOm -bZV -bZQ -caz +fxT +vGk +iel bZO -cdi -cen +flT +rpL bZO -cgj -bZQ -bZV +iqf +vGk +fxT cjB -ckD -clk -clT -cmH -lMU +fik +nXL +sOH +xZl +wsP cjC ccV -cuy +vJQ cby ccV -ctf -ctT +veB +kUw cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun cBi cun cBi cun -czk -cuP -cxO -cuP -cuP -cuP -cyn +yft +vwM +xfm +vwM +vwM +vwM +vqW cun cxa cxa @@ -71017,7 +59161,7 @@ anA anc anH anH -aqg +uJo anH anH anB @@ -71025,90 +59169,90 @@ aor aor aor aor -aoT -aqa +xoW +iPn aor aor aor aor aBg -azV -aBh -aBh -aDN -aBh -aGD +uFF +uJr +uJr +xls +uJr +qlM aBg aCl aCl aCl aCl -aLO +qHz aDS aNc -aES +gRZ aCl -aEO -aGb -aTy +uVN +gDc +lft aCl -aLO -aES +qHz +gRZ aCl -aYw -aGb -aEO +oYx +gDc +uVN baw bbx bdk bdk bgx -bhp +dxX bla -bjy +scJ bdk bmc -bnk +uoo bla -boQ +eNv bpt bdk bdk bbx baw -bvD +iRP bwH -bxp +vDi bwC -byC -bvw +hMe +nwD bwC -bCf +eVe bBy -bvD +iRP bvA -byC +hMe bGj bwH -bvw +nwD bvA bvA bvA bvA bOm -bNg -bOn -bQD -bOn -bOn -bVm +uVa +qRr +oZg +qRr +qRr +hKK bOm bYC bYC bYC bYC -cdk -ceo +vGT +dNR bYC bYC bYC @@ -71120,38 +59264,38 @@ cmk cmk cnp cjC -cad -ccW -cpH -cqg -ctg -ctU -cuo -cuP -cuP -cvR -cuP -cuP -cuP -cuP -cwA -cuP -cuP -cuP -cuP -cuP -cuP -cuP -cvR -czl -cvA -cxP -cvA -cvA -cvA -ctU -cyB -cyJ +ftY +gHL +rQr +cbT +pbz +lqj +ezR +vwM +vwM +ftQ +vwM +vwM +vwM +vwM +rDm +vwM +vwM +vwM +vwM +vwM +vwM +vwM +ftQ +hWG +gCf +ipx +gCf +gCf +gCf +lqj +mmM +pdk cxa cxa aAO @@ -71227,144 +59371,144 @@ anA apq apq ang -anI -aoe -apc -apn -aqQ -ars -arT -apn -arM -apn -aoU -auw -apn -apn -apn -apn -aBh -azW -aBy -aBy -aDK -aBy -aGE -aBh -aCg -aCg -aCg -aCg -aNf +nwT +oso +ron +nqj +gYt +eLF +tjT +nqj +fpN +nqj +niE +hak +nqj +nqj +nqj +nqj +uJr +tuU +lyp +lyp +lpU +lyp +sOS +uJr +mkn +mkn +mkn +mkn +uxf aDS aNg -aOI +uXv aCl -aRh +kfB aSj -aVt -aWA -aLO -aES -aWA -bbd +pNa +dHu +qHz +gRZ +dHu +cGT aDS -aGb +gDc baw bby bdu bdk bgy -nMM +msn bla -bjy +scJ bdk bmc -bnk +uoo bla -uJE +jxo bgy bdk bdm bby baw -bvH -bwA -bxq -bCA -byC -bvw -bCA -bCg -bwA -bwA +dtE +uFc +qRj +kLQ +hMe +nwD +kLQ +sbm +uFc +uFc bvA -bFe +qtg bGj bwH -bxm -bwz -bwz -bwz -bLh -bOn -bNh -bQQ -bQA -bSn -bQQ -bVn -bOn -bZT -bZT -bZT -bZT -cdl -cgi -bZT -bZT -bZT -cix -bZT -ckE -bZT -clU -cmI -cnq -eBV -cae +rSi +jhP +jhP +jhP +idv +qRr +xXa +mQE +mJh +qxt +mQE +kpy +qRr +wkC +wkC +wkC +wkC +swU +dTi +wkC +wkC +wkC +vnn +wkC +kdL +wkC +jvN +wKS +pww +tlc +cVL cag cag ghR cco -ctV -bDW -cxc -cxc -cxc -cxc -cxc -cwJ -cxc -cxc -cxc -cyj -cyo -cxc -cxc -cxc -cxc -cxc -cxc -cxc -cup -cxc -cxc -cyj -cyo -cup -cyL -czf +llr +lch +vhb +vhb +vhb +vhb +vhb +vEG +vhb +vhb +vhb +yct +rGv +vhb +vhb +vhb +vhb +vhb +vhb +vhb +pWh +vhb +vhb +yct +rGv +pWh +guB +scb cxa acL acL @@ -71439,49 +59583,49 @@ anA aor aor aor -anJ -tWR -aof -aqo -aqR -art -arU -ask -aqo -aqo -aqo -aof -aqo -aqo -aqo -kpc -ayR -azX -aBA -aCz -aDQ -aCz -aGF -ayR -aDP -aDP -aDP -aDP -aLN +kKB +xRX +xXF +qhj +aKX +xGY +kEs +hlm +qhj +qhj +qhj +xXF +qhj +qhj +qhj +nqt +dkV +kVy +vDy +mDZ +ojc +mDZ +vEO +dkV +uSQ +uSQ +uSQ +uSQ +lAC aLH aNb -aOJ +pQn aCl -aHv -aGb -aVs +sQx +gDc +vhs aEV -aJu -aZM +mfg +rBW aEV -bbc -aEW -aHv +wNP +nWj +sQx bdO bfg bfg @@ -71489,10 +59633,10 @@ bfg bfg bfg bfg -bjN +qNv blc bdJ -bnq +gfT bfg bfg bfg @@ -71500,80 +59644,80 @@ bfg bfg bfg bdO -bvC -bwA -bun +gNK +uFc +geR bvA -bvF -bxv +fGV +pVn bvA -bAf -bwA -bvC +lbf +uFc +gNK bvA -bFf +sZC bGp bHt -bIk -bvz -bvz -bvz -bvz -bOo -bNi -bPc -bQF -bSo -bPc -bVo -bOo -bZU -bZU -bZU -bZU -cdm -cep -bZU -bZU -bZU -bZU -cll -ckF -cmX -clV -clV -cnr -eBV -cae +rFV +jze +jze +jze +jze +mUK +mRz +hvA +qOL +dgB +hvA +hNd +mUK +iyy +iyy +iyy +iyy +hzT +mGz +iyy +iyy +iyy +iyy +esK +jWP +vVy +qTB +qTB +ozP +tlc +cVL cag cag cag cwM -ctT +kUw cun cuR -cBj +bxM cun cuR -cBj +bxM cun cuR -cBj +bxM cun -eHA -rxG +oka +oGI cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun -eHA -rxG +oka +oGI cun cun cun @@ -71665,24 +59809,24 @@ vnq vnq axL avH -apj +fGw aor aBg -azY -aBB -aBB -aBB -aBB -aGG +vSR +mWt +mWt +mWt +mWt +rml aBj jfp jfp jfp aJR -aLO +qHz aDS aNc -aOK +iVU aCl aCl aCl @@ -71695,22 +59839,22 @@ aCl aCl aCl bdO -bbA -bdw -bfi -bfi -bfi -bin -bjP +fRY +mRx +sUC +sUC +sUC +rIg +igp bfn bdJ -bnr -boh -bfi -bfi -bfi -bfi -bqW +gFb +hug +sUC +sUC +sUC +sUC +gsc bdO bvA bvA @@ -71723,73 +59867,73 @@ bvA bvA bvA bvA -bFg +uTG bGj bwH -bvw +nwD bLg bLg bLg bLg bMh -bNl -bSv -bSv -bSv -bSv -bVp +rxE +dWY +dWY +dWY +dWY +wzf bOm bYC bYC bYC bYC -coz -ceq +dYd +gCD bYC bYC bYC bYC bYC -ckG -clm -clm -cmK -cpj +pwg +uPx +uPx +kjP +jnE bZW -spV -ccU -ccU -ccU -ndk -ctT +ejI +dzU +dzU +dzU +qLg +kUw cun -cuS -cvd +gFP +rHd cun -cuS -cvd +gFP +rHd cun -cuS -cvd +gFP +rHd cun -pqi -cyp +wpN +jta cun -cvd -cuS +rHd +gFP cun -cvd -cuS +rHd +gFP cun -cvd -cuS +rHd +gFP cun -cxF -cyp +dnm +jta cuR -cyM +iXJ czh -cuU +ykS cxa aAO aAO @@ -71876,132 +60020,132 @@ akV atE amh aor -avI -apn -axX +vBz +nqj +uhW aBg aBg aBg -aCE -aAa +srE +uNx aBg aBg aBg aIo aIo -aJw +mVY jfp -aLi +qoH aDS aNi -aES +gRZ aCl -aRi -aSk -aSk -aSk -aSk -aSk -aSk -aSk -aSk -aZN -bax -bbB -bdy -bfj -bfj -bfj -bio -iBG -bfj -bmh -uQt -boi -bpw -bpw -bpw -bqz -bqX -bax -bDf +kLN +uMo +uMo +uMo +uMo +uMo +uMo +uMo +uMo +kzS +fcR +ibL +cLq +mKA +mKA +mKA +bLS +oHn +mKA +kzO +tjq +lUq +owd +owd +owd +jxW +oan +fcR +dnH bBF bBF -bDf +dnH bBF bBF -bDf +dnH bBF bBF -bDf -bEm -byC +dnH +dBX +hMe bGj bwH -bvw +nwD bLg -bJs +lUM bKa bKd bMh bOm bOm -bQG -bSp +bDe +kBU bOm bOm bOm -bZS +vHy cmc -cay -cbR -coz -cba -cbR -cgh +eEu +cTl +dYd +iNj +cTl +sZr cmc -bZS +vHy bYC bYC bYC bYC -coy -cpj +snW +jnE bZW cca ccV cca ccV -ctf -ctT +veB +kUw cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun -cxF -cyp +dnm +jta cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun -cxF -cyp -czZ -cyN -cvA -cuL +dnm +jta +pOC +svy +gCf +rWV cxa aAO aAO @@ -72088,36 +60232,36 @@ alo alE aux aor -aox -awU -apl +ijD +ruA +wcQ aBg -azZ +hNH aBg -aCF -aCE +qgL +srE aBg -azZ +hNH aBg -aIp +oTI aIq -aJB +rbz jfp -aLO +qHz aDS aNc -aES -aQb -aRj -aRj -aRj -aRj -aVm -aRj -aRj -aYx -aRj -aZU +gRZ +moz +gqf +gqf +gqf +gqf +wyk +gqf +gqf +tog +gqf +jkX bfg bdO bdA @@ -72126,8 +60270,8 @@ bfk bfk bfg bfk -bld -bmi +gvu +shP bfk bdO bfk @@ -72136,80 +60280,80 @@ bfk bdA bdO bdO -bvJ +joT bBF bBF -bDf +dnH bBF bBF -bDf +dnH bBF bBz -bDf -bEl -byC +dnH +mDr +hMe bGj bwH -bvw +nwD bLg -bJs +lUM bKa bKd bMh -bNm +nCd bOm -bQH -bQG +fIz +bDe bOm -bNm +nCd bOm -bZV -bZQ -caz +fxT +vGk +iel bZO -coz -cer +dYd +oXt bZO -cgj -bZQ -bZV +iqf +vGk +fxT bYC cbc cbc clW -coz -cpj +dYd +jnE bZW cbZ ccV cbZ ccV -ctf -ctT +veB +kUw cun -cuT -cuL +eJq +rWV cun -cuT -cuL +eJq +rWV cun -cuT -cuL +eJq +rWV cun -cxF -cyp +dnm +jta cun -cuL -cuT +rWV +eJq cun -cuL -cuT +rWV +eJq cun -cuL -cuT +rWV +eJq cun -cxF -cyp +dnm +jta cun cun cun @@ -72280,19 +60424,19 @@ akV alF akV akV -amv +cGG ajP alF alb -alZ +tjn alH alH alH -amv +cGG ajP alF alb -alZ +tjn akF alH alH @@ -72304,83 +60448,83 @@ aor aor aor aBg -aAa -aBC -aCG -aCG -aBC -aAa +uNx +vGN +qJp +qJp +vGN +uNx aBg aIq aIO -aJy +mPV aKt -aLj +wMd aLH aNj -aES -aQc -aRj -aSl -aTz -aSl -aVn -aSl -aSl -aSl -aSl -aZU +gRZ +gZo +gqf +oPR +opq +oPR +osx +oPR +oPR +oPR +oPR +jkX bfg -bbH -bdB -bfl -bgA -bht +ndr +fGQ +mnb +teS +jXo bfg -emT -bld -bmj -emT +eco +gvu +gXV +eco bdO -bht -bpx -bpY -bqA -bqY +jXo +sJF +elL +ejp +nmF bdO -qYn -btD -fLH +rrC +iky +wlz lIs -bDf -bDf +dnH +dnH lIs -bDf -bDf +dnH +dnH lIs bEn -byC +hMe bGr bHt -bIm +ryP bIN -bJt +nxU bKb bKd bMh -bNn -bPe -bQI -bQI -bPe -bVq +exW +eFZ +jtM +jtM +eFZ +hOC bOm bYC bYC bYC bYC -coz -ces +dYd +hns bYC bYC bYC @@ -72389,15 +60533,15 @@ bYC bYC bYC bYC -coA -cpj +hIG +jnE bZW ccV ccV ccV ccV -cte -ctT +xQY +kUw cun cun cun @@ -72408,8 +60552,8 @@ cun cun cun cun -cxT -cyp +iKU +jta cun cun cun @@ -72420,12 +60564,12 @@ cun cun cun cun -cxF -cyp +dnm +jta cun -cyM -cvA -czv +iXJ +gCf +lfh cxa aAO aAO @@ -72494,7 +60638,7 @@ alH alH akF amY -ako +ruq amY akF alH @@ -72502,7 +60646,7 @@ aAO alH akF amY -ako +ruq amY akF akF @@ -72525,58 +60669,58 @@ aBg aBg aIq aIP -aJz +laH jfp -aNe +opD aDS aNg -aOL -aQd -aRk -aSm -aSm -aSm -aVo -aWD -aWD -aWD -aWD -aZU +wnc +tVP +fCM +sul +sul +sul +hAL +xcH +xcH +xcH +xcH +jkX bfg -bbL +oQq bdJ -bfm -bgB -bhu +kxF +jKW +nOf bfk -bbA -bld -bmj -bnt +fRY +gvu +gXV +jrE bfk -boT -bpy -bpZ +pNb +ldY +pOa bqB -bqZ +mHD bdO iRv btE btE deI -bDf +dnH bBF bBF jqn bBF -bDf -bEm -byC +dnH +dBX +hMe bGj bwH -bvw +nwD bLg -bJu +etp bKc bLi bMh @@ -72587,57 +60731,57 @@ bOm bOm bOm bOm -bZS +vHy cmc -cay -cbR -coz -cba -cbR -cgh +eEu +cTl +dYd +iNj +cTl +sZr cmc -bZS +vHy bYC cbc cbc clW -coz -cpj +dYd +jnE bZW cbZ ccV cbZ ccV -ctf -ctT +veB +kUw cun -cuU -cvB +ykS +hgE cun -cuU -cuL +ykS +rWV cun -cuU -cuL +ykS +rWV cun -cxU -cyp +mGd +jta cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun -czk -cuP -cuP -czl -cyp +yft +vwM +vwM +hWG +jta cuR -cyN +svy ctm -cvA +gCf cxa aAO aAO @@ -72705,17 +60849,17 @@ alH alH aAO alH -ajQ -akp -ale +wNJ +mpq +uKP alH aAO aAO aAO alH -ajQ -akp -ale +wNJ +mpq +uKP alH aAO aAO @@ -72737,119 +60881,119 @@ aGH jfp aIq aIQ -aJA +wxL jfp -aLO +qHz aDS aNc -aES -aQc -aRl -aRj -aRj -aRj -aVp -aRj -aRj -aRj -aRj -aZU +gRZ +gZo +uvR +gqf +gqf +gqf +eVV +gqf +gqf +gqf +gqf +jkX bfg -bbP +jIL bdJ bfn -bgC -bhv +nno +syS bfk -bjQ +ybA ble bml -bnu +oZA bfk -bhv -bpz +syS +sLa bfn bdJ -bra +pbb bdO bsI vQn btF hYq -bDf +dnH bBF bBF bBF bBF -bDf -bEl -byC +dnH +mDr +hMe bGj bwH -bvw +nwD bLg -bJv +kiT bKd bKd bOq -bNo -bPf -bPf -bPf -bTV -bVt +mRQ +qvt +qvt +qvt +hDu +paq bNr -bZV -bZQ -caz +fxT +vGk +iel bZO -coz -cba +dYd +iNj bZO -cgj -bZQ -bZV +iqf +vGk +fxT bYC bYC bYC bYC -coz -cpj +dYd +jnE bZW cca ccV cca ccV -ctj -ctT +iwP +kUw cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cxq +jDR cun -cxF -cyp +dnm +jta cun cuM -cyZ +mmr cun cuM -cvA +gCf cun -cxT -qSx -qSx -qSx -cyp -czZ -cyN +iKU +oLc +oLc +oLc +jta +pOC +svy ctm -cvA +gCf cxa aAO aAO @@ -72917,17 +61061,17 @@ aAO aAO aAO alH -ana -akq -ana +shC +tKt +shC alH aAO aAO aAO alH -ana -aqq -ana +shC +yhU +shC alH aAO aAO @@ -72949,74 +61093,74 @@ tjU aHQ aIr aIR -aJB +rbz jfp -aLO +qHz aDS aNc -aOM +nhw aCl -aRm -aSn -aSn -aSn -aSn -aSn -aSn -aSn -aSn -aZV +did +nXH +nXH +nXH +nXH +nXH +nXH +nXH +nXH +sIZ bfg -bbQ -bdK -bfo -bgD -bhx +aSv +sVI +hBr +nrA +xEw bfk -bjS -blg -bmj -bnq +ucw +iLC +gXV +gfT bfk -bhx -bpA -bfo -bdK -brb +xEw +jsF +hBr +sVI +lOO bdO bsI btF btF btF -bDf -iWJ -iWJ -bDf -fLH +dnH +wTG +wTG +dnH +wlz lIs bEn -byC +hMe bGj bwH -bvw +nwD bLg -bJs +lUM bKd bKd bOq -bNo -bPf -bQJ -bQJ -bPf -bVt +mRQ +qvt +xil +xil +qvt +paq bNr bYC bYC bYC bYC -coA -cba +hIG +iNj bYC bYC bYC @@ -73025,43 +61169,43 @@ bYC cbc cbc clW -coz -cpj +dYd +jnE bZW -dnt -ccW -ccW -cgr -ctg -ctT +ipX +gHL +gHL +efd +pbz +kUw cun -cuV -cuN +hYy +vdN cun -cuV -cuN +hYy +vdN cun -cuV -cuN +hYy +vdN cun -cxF -cyp +dnm +jta cun -cuN -cuV +vdN +hYy cun -cuN -cuV +vdN +hYy cun -cxF -mCC -hOy -mCC -cyp +dnm +oxC +eSt +oxC +jta cun -cyP -czi -cuL +iRI +ghi +rWV cxa aAO aAO @@ -73163,10 +61307,10 @@ jfp jfp jfp aJR -aLk +hNp aLK aNl -aON +ikl aSa aSa aSa @@ -73185,10 +61329,10 @@ bfg bfg bfg bfg -bbA -bld -bmj -bnt +fRY +gvu +gXV +jrE bfg bfg bfg @@ -73200,76 +61344,76 @@ grW btF lzz btF -bDf +dnH bxA bBF bBF bBF -bDf -bEm -bFj +dnH +dBX +lyx bGt bJH -bIp +rEh bvM bvM bvM bvM bOq -bNo -bPf -bPf -bPf -bPf -bVt +mRQ +qvt +qvt +qvt +qvt +paq bNr -bZS +vHy cmc -cay -cbR -coz -cba -cbR -cgh +eEu +cTl +dYd +iNj +cTl +sZr cmc -bZS +vHy bYC bYC bYC bYC -coz -cpj -eBV -cae +dYd +jnE +tlc +cVL cag cag cag cwM -ctT +kUw cun cuR -cBj +bxM cun cuR -cBj +bxM cun cuR -cBj +bxM cun -cxF -cyp +dnm +jta cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cxF -kqo -kqo -kqo -cyp +dnm +dFv +dFv +dFv +jta cyD cyD cyD @@ -73320,15 +61464,15 @@ acS acO add add -adv +hjc add add add -adv +hjc add add add -adv +hjc add acO acO @@ -73339,21 +61483,21 @@ acS aff aAO alH -amd -amw -ajS +deG +eGf +rlq akK -alg -amw -aml +xrG +eGf +jWD akK -amd -amw -ajS +deG +eGf +rlq akK -alg -amw -aml +xrG +eGf +jWD alH aAO alH @@ -73371,22 +61515,22 @@ aBD aBD aBD axM -aKG -aIS -aJC -vKZ -aLl -aLL -aNm -aOO -aQe -aVu -aVu -aVu -aUp -aVq +hTY +pOQ +hrd +rvR +lmJ +oHK +wOX +hSa +ufy +sNN +sNN +sNN +tZT +qcK aSa -aKK +vdM aYz aYz aSa @@ -73395,14 +61539,14 @@ bbR bgN bgN bbW -bhy +mIg baz -bjW +oio bgN bmo -bnx +eJd baz -boU +owt bbW bbW bgN @@ -73412,81 +61556,81 @@ med eMx lzz btF -bDf +dnH bxA bBF bBF bBF -bDf -bEl -bFn -bGu -bHv -bIq -bJw -igJ -bKe -bLj +dnH +mDr +mUB +iVG +wRQ +mPn +edc +cDr +imN +hLH bMj -bQN -bQN -bQK -bQJ -bPf -bVt +cTH +cTH +hVD +xil +qvt +paq bNr -bZV -bZQ -caz +fxT +vGk +iel bZO -cmL -cpl +jMT +hBG bZO -cgj -bZQ -bZV +iqf +vGk +fxT bYC cbc cbc clW -cmL -pcb -xxE -wVs +jMT +hCw +hyR +knj cah cah cah jfN -ctU -cuq -hHy -cuP -cvR -cuP -cwA -cuP -hHy -cuP -cuP -cws -cwK -cvR -hHy -cuP -cuP -cuP -hHy -cuP -czl +lqj +nzh +rxj +vwM +ftQ +vwM +rDm +vwM +rxj +vwM +vwM +euv +eLt +ftQ +rxj +vwM +vwM +vwM +rxj +vwM +hWG nWJ nWJ nWJ -cyp +jta cyD -cyQ -czj -czj -czD +tAS +keT +keT +fyB czC aAO aAO @@ -73531,20 +61675,20 @@ acO acS add add -adP -aem +vzs +oJq add add -adP -aem +vzs +oJq add add -adP -aem +vzs +oJq add add add -adv +hjc add acO acS @@ -73572,33 +61716,33 @@ alH alF akV aBD -avW -awY -aCK -ayX -aAk -aAk -aCK -ayX -aFr -aGL +sAD +feA +gqD +tQU +geq +geq +gqD +tQU +nAq +lCF aBD -aXP -aIT -aLY +rWQ +eId +rEZ aKH aKH -aLM -aNn +tNb +loz aKH aKH -gpm -vxy -aLY -aUq -gBz +rwI +wCV +rEZ +olE +ewA aSa -aXP +rWQ aYA aZj aYz @@ -73607,14 +61751,14 @@ bbS bgN bgN bgN -bhz +nWY bip -bjX -bli -bmp -bny +oCU +hSq +sTE +jfk bip -boV +mmg bgN bgN bgN @@ -73624,11 +61768,11 @@ bvN buo buo bvf -bDf -fQu -bDf -bDf -bDf +dnH +olL +dnH +dnH +dnH lIs bEn bvM @@ -73636,16 +61780,16 @@ bGv bHx bvM bvM -uVR -bKf -niY +lYB +vOb +hCj bOq -bNo -bPh -bQL -bSq -bTW -bPf +mRQ +xCp +oFd +jTH +tqw +qvt bNr bZW bZW @@ -73664,41 +61808,41 @@ bZW bZW bZW bZW -hXj -ccU -ccU -omu +wLj +dzU +dzU +gVC yaY ctW -cur -obV -cxc -cxc -cxc -nUH -cwJ -obV -cxc -cyj +nqw +vrs +vhb +vhb +vhb +tzc +vEG +vrs +vhb +yct ctW cwL -cyG -obV -cxc -cxc -cxc -obV -cyj -dTa -dTa -dTa -gOD -cyq -cyE -cyY +pbB +vrs +vhb +vhb +vhb +vrs +yct +lBO +lBO +lBO +lCI +fNZ +rYG +ddC czr czx -czH +gjR czC czM aAO @@ -73742,21 +61886,21 @@ ads ads adb add -adB -adQ -aen +guc +fnd +gNM add -adB -adQ -aen +guc +fnd +gNM add -adB -adQ -aen +guc +fnd +gNM add agj agB -aem +oJq add acP acS @@ -73765,17 +61909,17 @@ acL alH amf amy -ane +fMf akK -ali +orF amy amf akK amf amy -ane +fMf akK -ali +orF amy amf alH @@ -73784,33 +61928,33 @@ alH alF akV aBD -avX -awZ -aya -ayW -aAe -aBG -aya -ayW -jJE -aGM +kZp +kRc +ecU +mmj +nnj +pzO +ecU +mmj +fFf +pLT aBD -aKI -aIU -aJD +vaA +tpZ +ovP aKH aKH -aLP -aNo +sRR +xlt aKH aKH -aRn -aSp -aTA -aUr -aVr +jut +xaO +mNi +wnl +fUP aSa -aXQ +pIp aYB bcb bcb @@ -73819,45 +61963,45 @@ bgN bgN bbW bbW -bhA +vOA baz -bjY -bnz -bmq -bnz +jrr +xvD +tzX +xvD baz -boW +kKS bbW req xdG eTt baz -uwB -sdq -nKm -bDf -bDf +xTT +hPB +cHr +dnH +dnH bBF bBF bBF bBF -bDi +dTZ bEn bvM -bGw -bHy +dUA +dPZ bvM bvM -bJx -bKg -bLk +eLi +nhD +vnf bOq -bNo -bPf -bQJ -bSr -bPf -bVt +mRQ +qvt +xil +egU +qvt +paq bNr bXW bYS @@ -73868,50 +62012,50 @@ caG bYS bXW caa -caq -cjD +rxV +wEu ccV -caq -cjD +rxV +wEu ccV -caq -cjD +rxV +wEu ccV cca ccV -cqk +vkt ctm ctm -ctT +kUw csF csF csF cub wty -cvf +ueB csF csF -cxF +dnm ctm cwM -cxd +deV cun cun cun cun cun -sMK -qSx -cyb -cyf -mca -cyp +fzW +oLc +lkn +kRh +nzF +jta cAc -cyU +sew czo czy -czK -czJ +okW +kUZ czM czM aAO @@ -73952,23 +62096,23 @@ adb acO add add -adv +hjc add add -adR +hNa add add add -adR +hNa add add add -adR +hNa add add add agC -ahq +ePN add acO acS @@ -73996,33 +62140,33 @@ alH alF auz aBD -avY -axa -ayb -ayX +pwD +cXO +aLJ +tQU aAf aAf -aCK -ayX -hCM -aGN +gqD +tQU +nNM +fiG aBD -aKJ -aIV -aJE +ezU +vRs +dqX aKH -aLm -aLQ -aNo -aOP +eFL +ocK +xlt +dND aKH -aRo -aSq -aTB -aUs -aVu -aWE -aXR +toj +bFa +wNg +dRz +sNN +uTx +sqj aYC aZk aYz @@ -74033,10 +62177,10 @@ baz baz baz baz -bjZ -sBF -bmr -doF +gzk +rHk +jFo +kov baz baz baz @@ -74044,87 +62188,87 @@ baz baz baz baz -jOj +hJv bBF bBF bBF -bDf +dnH bBF bBF bBF bBF -bDj +ghY bEn -bFo -bGx -bHy -bIr +mom +sBG +dPZ +rSJ bvM -bJy -bKh -bLm +qqr +jHj +pAu bOq -bNo -bPf -bPf -bSs -bPf -bVt +mRQ +qvt +qvt +dXD +qvt +paq bNr bXX -bYT -caB -bYT -bYT -cew -bYT +jTz +xPt +jTz +jTz +jiF +jTz cgk caa xVH -cbA +uEa ccV xVH -cbA +uEa ccV xVH -cbA +uEa ccV cbZ ccV -cqk +vkt ctm ctm -ctT +kUw csF -cts -ctG -cuc -cuE -cuc -cvx +nRm +qec +xCM +vUW +xCM +oLB csF -cxF +dnm ctm cwM -cxd +deV cun cyO cun cyO cun -cyc -hOy -hOy -mCC -hOy -cyp +qfJ +eSt +eSt +oxC +eSt +jta cAc -cyV +sDr czo czo czo -czK -czN +okW +rcQ czM aAO aAO @@ -74163,24 +62307,24 @@ acO acS add add -adP -aem +vzs +oJq add -afd -abQ -aco +eab +wXA +foX add -afd -abQ -aco +eab +wXA +foX add -afd -abQ -afN -aco +eab +wXA +suD +foX add -agD -aen +kKD +gNM add acO acS @@ -74189,154 +62333,154 @@ acL alH amf amz -anf +cth akK -alj +dXJ amz amf akK amf amz -anf +cth akK -alj +dXJ amz -arV +gee alH acL alH alF akV aBD -avZ -axd -avZ -axg +odw +qUp +odw +iri aAg aAf -avZ -axg -aFs -axg +odw +iri +nJf +iri aBD -aKK -aIW -aJF +vdM +vtx +sGT aKH -iND -aLM -aNs -aON +sQQ +tNb +eaN +ikl aKH -aJF -aSr +sGT +sbb aTC aUt -aVv +mKN aSa -aKK +vdM aYz aYz aSa lIs -oTg -oTg -oTg -oTg -oTg -oTg -fyi -xoT -aPu -cSA -oTg -oTg -oTg -oTg -oTg -oTg +rql +rql +rql +rql +rql +rql +nzU +eur +xFd +etq +rql +rql +rql +rql +rql +rql lIs -bvO +mBl bBF bBF bBF -bDf +dnH bBF bBF bBF bBF -bDj +ghY bEn -bFp +kNm bGy bwN -bIp +rEh bvM -bDk -bKj -bva +pbl +sey +wDJ bOq -bNo -bPf -bQJ -bSt -bPf -bVt +mRQ +qvt +xil +lKj +qvt +paq bNr iVr -bYT -bYT -cbS -cbS -bYT -cfh +jTz +jTz +qyZ +qyZ +jTz +iip cgk caa -ciz -cjE +dgZ +sZv ccV -ciz -cjE +dgZ +sZv ccV -ciz -cjE +dgZ +sZv ccV cbZ ccV -cqk +vkt ctm ctm -ctT +kUw csF -rqF -ctH -cud -cuF -cvh -cvy +sEB +mYt +ftP +pfg +xQO +cGv csF -cxF +dnm ctm cwM -cxd +deV cun cyO cun cyO cun -cxT -hOy -mCC -hOy -hOy -cyp +iKU +eSt +oxC +eSt +eSt +jta cAc -cyW +hgV czp czo czo -czG -czO +rGf +gLA czM acL acL @@ -74374,9 +62518,9 @@ acK acO acS add -adB -adQ -aen +guc +fnd +gNM add afe abR @@ -74391,7 +62535,7 @@ afD aeN aeQ add -adR +hNa add add acO @@ -74420,38 +62564,38 @@ alH alF akV aBD -awa -axe -awa -ayY +gxx +dsm +gxx +inN aAf aAf -awa -ayY -aFt -ayY +gxx +inN +fVk +inN aBD -aKL -aIX -aJG +dJB +rOZ +lpL aKy -aLo -aLP -aNo -aOR +xHx +sRR +xlt +kIp aKy -aJG -aSs -aTD -aTD -aVw +lpL +cwP +dJo +dJo +gyY aSa aSa aSa aSa aSa lIs -xoT +eur tOU tOU tOU @@ -74466,88 +62610,88 @@ jno tOU tOU tOU -xoT +eur lIs -ixF +mwL bBF bBF bBF -bDf -bDf -bDf -bDf -bDf +dnH +dnH +dnH +dnH +dnH bEn bEn -bFq -bGz -bHy -bIt +saF +rZZ +dPZ +tVD eNJ -bDl -bza -bLn +pru +rFE +pRt bOq -bNo -bPf -bPf -bSu -bQN -bQN +mRQ +qvt +qvt +rBi +cTH +cTH bWQ bXY -bYU -caD -cbS -cbS -cex -bYT +trg +vSy +qyZ +qyZ +pvp +jTz cgl caa -cuy +vJQ cby ccV -cuy +vJQ cby ccV -cuy +vJQ cby ccV ccV ccV -cql +ykk ctm ctm -ctT +kUw csF csF -ctI +myg cub cub csF csF csF -cxF +dnm soD cwM -cxd +deV cun cBi cun cBi cun -cxF -kqo -cyd -kqo -kqo -cyp +dnm +dFv +jbO +dFv +dFv +jta cAc -cyX +uiq czq czz -czG -czL +rGf +wFQ czM czM aAO @@ -74587,7 +62731,7 @@ acO acS add add -adR +hNa add add add @@ -74603,54 +62747,54 @@ aeQ add add add -abQ -aco +wXA +foX add acO acS aff aAO alH -amg -amB -ajT +lxq +sWq +rRO akK -alk -amB -amn +jmP +sWq +mgp akK -amg -amB -ajT +lxq +sWq +rRO akK -alk -aru -amn +jmP +xqa +mgp alH aAO alH alF akV aBD -avZ -axd -avZ -axg +odw +qUp +odw +iri aAh aAf -avZ -axg -lAE -axg +odw +iri +eQs +iri axM aKy aKy aKy aKy -aLp -hpd -aNw -twg +qif +oLV +rJE +gNu aKy aKy aKy @@ -74658,107 +62802,107 @@ aKy aKy aKy aSa -fpO -fpO -fpO -fpO +fVN +fVN +fVN +fVN lIs -aWG +lQO tOU tOU tOU tOU -xoT -xoT -xoT -xoT -xoT -xoT +eur +eur +eur +eur +eur +eur mGQ hdK tOU tOU -aWG +lQO lIs -bsJ -bsJ -rOL -rOL -cBY -bxF -xYK -xYK -tso +vSK +vSK +iPu +iPu +gYr +vJe +eAC +eAC +nkS bEn bEn -bHw -bIO -qxY -nQh +gVh +eiT +ieo +wKe eNJ eNJ eNJ eNJ bOq -bNq -bPi -bQM -bSw -bPf -bPf +wqR +evn +cMA +gtX +qvt +qvt fbk caG -bYT -caE -cbS +jTz +eoG +qyZ cds -bYT -bYT +jTz +jTz cgk caa -cad -oPm -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ciB +ftY +xjq +qwr +qwr +qwr +qwr +qwr +qwr +qwr +qwr +qwr +hsb ctn ctW -cus -old -cuZ -cvV -cuZ -cuZ -cuZ -old -cuZ -cxG +oVx +diI +lhQ +heB +lhQ +lhQ +lhQ +diI +lhQ +ooe ctW cwL -ctY -cuZ -old -cuZ -cuZ -old -cxG -dTa -rZk -dTa -dTa -cyq -cyF -cyY +pfF +lhQ +diI +lhQ +lhQ +diI +ooe +lBO +hsj +lBO +lBO +fNZ +iES +ddC czr czA -czH +gjR czC czM aAO @@ -74799,9 +62943,9 @@ acP acS acO add -adS -aeo -aeK +fjf +mGW +spd acK aff aff @@ -74816,7 +62960,7 @@ acK afe agk abR -ahr +rBt add acO acS @@ -74844,133 +62988,133 @@ alH alF akV aBD -awa -axe -awa -ayY +gxx +dsm +gxx +inN aAf aAf -awa -ayY -tie +gxx +inN +nUC axM axM -pmO -oTg -oTg -oTg -fyi -xoT -aPu -cSA -oTg -vGg -jmr -jHy -thW -jHy -fyi -xoT -xoT -xoT -xoT +wLa +rql +rql +rql +nzU +eur +xFd +etq +rql +wvY +tVN +xRs +pcm +xRs +nzU +eur +eur +eur +eur ogF -bfr +mLF tOU tOU tOU tOU -xoT +eur pPB pPB pPB pPB -xoT +eur mGQ tOU tOU tOU -bfr +mLF ogF -oTg -oTg -oTg -oTg -oTg -fyi -aWG -xoT -cSA -oTg -oTg -fyi -aPu -xoT -cSA -oTg -oTg -oTg -sxx +rql +rql +rql +rql +rql +nzU +lQO +eur +etq +rql +rql +nzU +xFd +eur +etq +rql +rql +rql +mdb bOq bOq -bPj -bQN -bSx -bTY -bPf +won +cTH +eNa +hik +qvt bNr bXX -bYV -caF -bYU -cdt -cey -cfi +enB +bXS +trg +knc +vkc +urK cgk caa -caj -cbq -ccU -ccU -ccU -ccU -ccU -ccU -cmM -ccU -ccU -cbY -cto -ctX -cut -sGc -cvc -cvW -cvc -cvc -cvc -sGc -cvc -cvc -cwt -cyr -cvW -cvc -sGc -cvc -cvc -sGc -cvc -cwt +dma +tCl +dzU +dzU +dzU +dzU +dzU +dzU +bvV +dzU +dzU +hdR +wrd +uQB +qxQ +nSE +pPL +uHN +pPL +pPL +pPL +nSE +pPL +pPL +uUd +tUS +uHN +pPL +nSE +pPL +pPL +nSE +pPL +uUd nWJ nWJ nWJ -cyp +jta cyD -cza -czs -czs -czI +kYU +edb +edb +dcG czC aAO aAO @@ -75027,7 +63171,7 @@ aAO aff aff agl -agE +mLS acq add acO @@ -75037,17 +63181,17 @@ aAO aAO aAO alH -ana -akr -ana +shC +kMM +shC alH aAO aAO aAO alH -ana -aqr -ana +shC +pdG +shC alH aAO aAO @@ -75056,18 +63200,18 @@ alH alF akV aBD -avZ -axd -avZ -axg -aAi -aBH -avZ -axg -lAE +odw +qUp +odw +iri +gSS +jKe +odw +iri +eQs aBD -hQS -aKN +mkF +dhP aLq aMd aMd @@ -75086,24 +63230,24 @@ bah aQO aQO aQO -bdS +uPE mWT aQO aQO aQO bkm -xoT +eur pPB aAO aAO pPB -xoT +eur brc aMd aMd aMd btK -buN +sQP aMd aMd aMd @@ -75122,62 +63266,62 @@ bIu aMd aMd bKq -cWx -bPf +iEa +qvt bNr -bPk -bQJ -bSy -bPf -bVt +uHo +xil +dHv +qvt +paq bNr bXW -bYW -bYT -bYT -cdu -bYT -bYW +qWw +jTz +jTz +axt +jTz +qWw bXW caa -cae -cbr +cVL +hjS ccV -cuy +vJQ cby ccV -cuy +vJQ cby ccV -cuy +vJQ cby ccV -ctf -ctT +veB +kUw cun cuR -cBj +bxM cun cuR -cBj +bxM cun cuR -cBj +bxM cun -cxF -cyp +dnm +jta cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cxF -qSx -qSx -qSx -cyp +dnm +oLc +oLc +oLc +jta cyD cyD cyD @@ -75223,7 +63367,7 @@ acQ acS acO add -adU +glv aeq aeM aff @@ -75242,44 +63386,44 @@ aff acK add add -aik -aiy +jLU +jXV acK aff aff aAO alH -ajQ -aks -ale +wNJ +mJS +uKP alH aAO aAO aAO alH -ajQ -aks -ale +wNJ +mJS +uKP alH aAO aAO aAO alH -atH -avq +jyE +thz aBD -awb -axf -aCL -aCL -aBI -aBI -aCL -aCL -aBI -aGO -aHS -aKO +rfi +oDK +uKC +uKC +gAy +gAy +uKC +uKC +gAy +vVd +kzl +kQV aLr tOU tOU @@ -75298,24 +63442,24 @@ tOU tOU tOU tOU -iob +ylf aWI tOU tOU tOU aWI -xoT +eur pPB aAO aAO pPB -xoT +eur mGQ tOU tOU tOU aWI -iob +ylf tOU tOU tOU @@ -75334,14 +63478,14 @@ tOU vHX tOU lWT -cWx -bPf -bNt -bPf -bQO -bSz -bPf -bVt +iEa +qvt +pbA +qvt +rXK +iET +qvt +paq bNr caa caa @@ -75352,48 +63496,48 @@ caG caa caa caa -cae -cbr +cVL +hjS ccV -cao -cbz +oxr +pXK ccV -cao -cbz +oxr +pXK ccV -cao -cbz +oxr +pXK ccV -xii -ctT +xNN +kUw cun -cuS -cvd +gFP +rHd cun -cuS -cvd +gFP +rHd cun -cuS -cvd +gFP +rHd cun -eHA -rxG +oka +oGI cun -cvd -cxu +rHd +dYv cun -cvd -cuS +rHd +gFP cun -cxF -hOy -mCC -hOy -cyp +dnm +eSt +oxC +eSt +jta cun -cyP -czt -cuL +iRI +fBl +rWV cxa aAO aAO @@ -75452,17 +63596,17 @@ acL acL acL acK -ahs -ahP -aht -aiz -aht -aht +eTf +ojU +alu +gUA +alu +alu acK alH akF amY -akt +lOz amY akF akF @@ -75470,142 +63614,142 @@ aAO akF akF amY -akt +lOz amY akF akF aAO aAO akF -atO -auA +umL +qJL aBD -awc -aAk -aAk -aAk -aAk -aAk -aAk -aAk -aAk -aAk -aHR -aKP +fai +geq +geq +geq +geq +geq +geq +geq +geq +geq +xLU +qog aLs fXQ -xoT -xoT -xoT -xoT -xoT -xoT -ixD -dDS -xoT -aWJ -xoT -xoT -xoT -xoT -xoT -ixD +eur +eur +eur +eur +eur +eur +nFz +eHL +eur +ksT +eur +eur +eur +eur +eur +nFz ogF -aWJ -xoT -xoT +ksT +eur +eur tOU aWI -xoT +eur pPB pPB pPB pPB -xoT +eur mGQ tOU -xoT -xoT -aWJ +eur +eur +ksT ogF -ixD -xoT -mWZ -xoT -xoT -xoT -aWJ -xoT -xoT -ixD -xoT -xoT -xoT -xoT -xoT -xoT +nFz +eur +rXn +eur +eur +eur +ksT +eur +eur +nFz +eur +eur +eur +eur +eur +eur vHX bKr -bLp -bMo -bNu -bQP -bQP -bSA -bPf -bVt +nzZ +oUJ +qDB +qQU +qQU +tDf +qvt +paq bNr -bXZ +pGe caa caa -cbU +vSI cdv caa caa oBE caa -cae -cbr +cVL +hjS ccV xVH -cbA +uEa ccV xVH -cbA +uEa ccV xVH -cbA +uEa ccV -ctf -mJH +veB +noB cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun -bGn -iIA +cit +lAe cun cuM -cvA +gCf cun cuM -cvA +gCf cun -cxT -kqo -kqo -kqo -cyp -czZ -cyN +iKU +dFv +dFv +dFv +jta +pOC +svy ctm -cvA +gCf cxa aAO aAO @@ -75646,9 +63790,9 @@ acK acS add add -adC +uwh add -adW +xmR aeN aff aAO @@ -75664,36 +63808,36 @@ acr acr acr ahN -aht -aht -aht -aiz -aht -aht +alu +alu +alu +gUA +alu +alu aff akV -amv +cGG ani alF all -alZ +tjn akF alH akF -amv +cGG ani aqs all -alZ +tjn akF alH alH akF -atP -auB +uxa +rpa aBD -aAk -kLB +geq +rBd aBD aBD aAl @@ -75702,11 +63846,11 @@ aBD aBD aFu aBD -aHR -aKN +xLU +dhP aLs fXQ -aKN +dhP aNp aNp aQl @@ -75725,18 +63869,18 @@ aNp aNp aNp aNp -xoT +eur tOU aWI -xoT -xoT -xoT -xoT -xoT -xoT +eur +eur +eur +eur +eur +eur mGQ tOU -xoT +eur bql bql bql @@ -75755,69 +63899,69 @@ bFk bGC bFk bFk -cWx +iEa fZb lWT -cWx -bPf +iEa +qvt bNr -bPk -bQJ -bQJ -bPf -bPf +uHo +xil +xil +qvt +qvt bNr -bYa -bYX +tly +iDh caH -cbV -cdw +wob +vnh cez caG cgn caa -ciA -cbr +jMQ +hjS ccV -caq -cbB +rxV +rlo ccV -caq -cbB +rxV +rlo ccV -caq -cbB +rxV +rlo ccV -ctf -ctT +veB +kUw cun -cuT -cuL +eJq +rWV cun -cuT -cuL +eJq +rWV cun -cuT -cuL +eJq +rWV cun -bIg -cyp +lEN +jta cun -cuL -cuT +rWV +eJq cun -cuL -cuT +rWV +eJq cun -bZM -cvc -cvc -cwt -cyp +oSx +pPL +pPL +uUd +jta cuR -czb +oZi ctm -cvA +gCf cxa aAO aAO @@ -75857,10 +64001,10 @@ aAO acK acS add -aaC -adD -adV -aer +hWI +neJ +cAQ +tTR aev aff aAO @@ -75871,18 +64015,18 @@ agU agU aeA acY -afE +sMG acY acY acY -agF -aht -aht -ail -aiz -aht -aht -ajd +gKE +alu +alu +rIx +gUA +alu +alu +oAQ amh akV akV @@ -75899,14 +64043,14 @@ akV akV akV akV -avq -ato -atQ -auB -auY -auY -auY -ayd +thz +pgd +dKQ +rpa +qke +qke +qke +pwC aBD aAm aBJ @@ -75915,29 +64059,29 @@ aDU aFv aBD axM -aKQ +fRP aLs fXQ -ifS +nrm aNp -aLS -aLS -aOS -jkQ -aLS -aLS -aLT -aUu -aLT -aLT +fGK +fGK +iNl +pVf +fGK +fGK +pAK +lFy +pAK +pAK aNp -aLU -aZl +wdq +gim aNp -aLU -aZl +wdq +gim aNp -eRq +sOw tOU bkn aQO @@ -75948,48 +64092,48 @@ aMd aMd jpy tOU -xoT +eur bql -btL -bsG +qwD +fgX bql -btL -bsd +qwD +sMw bql -btL -bsG +qwD +fgX bBh -bAn -bBI +gsx +hxo bBh -bEo -bFr -bGD -bHA +vvw +xTS +fDL +kpj bFk -cWx +iEa meS bKu -cWx +iEa bOq bOq -bPo -bQR -bPf -bPf -bPf +cCx +ihS +qvt +qvt +qvt bNr caa caa caa -cbW -cdx +wvH +eEX caa caa caa caa -cae -cbr +cVL +hjS ccV ccV ccV @@ -76000,8 +64144,8 @@ ccV ccV ccV ccV -bEY -ctT +wDC +kUw cun cun cun @@ -76012,8 +64156,8 @@ cun cun cun cun -bIj -cyp +fJf +jta cun cun cun @@ -76024,12 +64168,12 @@ cun cun cun cun -cxF -cwQ +dnm +kye cun -cyM -cvA -czv +iXJ +gCf +lfh cxa aAO aAO @@ -76069,10 +64213,10 @@ aAO acK acS add -aaD -adE +gia +nGE add -aes +oZP aeO aff aAO @@ -76081,20 +64225,20 @@ acZ acY agU agU -aeB +dHK afk -afF +dSF afk afk agm -agG -ahu -ahu -ahu -aiB -ahu -ahu -aje +rnA +jyT +jyT +jyT +xfP +jyT +jyT +kNu ajl alo alo @@ -76111,14 +64255,14 @@ alo alo alo alo -avr -atp -atR -auC +rvM +flc +ouy +dEK auZ auZ auZ -aye +hyt aBD aBD aBD @@ -76127,29 +64271,29 @@ aBD aBD aBD axM -aIu +rGt aLs fXQ -qKo +nQY aQl -aLT -aNx -aOT -aOT -wvT -eev -hKn +pAK +nMv +rPy +rPy +xRP +omV +uTy aNp aNp -pWq +pxv aNp aYD -aPC +vzn aNp aYD -aPC +vzn aNp -xoT +eur tOU tOU tOU @@ -76160,29 +64304,29 @@ tOU tOU tOU tOU -xoT +eur bql -brh +fDm bsF bql -brh +fDm bsF bql -brh +fDm bsF bBh -bAo -bBJ +uPP +tJM bDm -bEp +hfQ bFs -bGE -bHB +dCH +lMt bFk -cWx +iEa meS lWT -cWx +iEa bNv bNv bNv @@ -76191,53 +64335,53 @@ bNv bNv bVu bVI -cad -cbp -ccT -cbX -cdy -ccT -ccT -cbX -chy -ciB -cbw +ftY +wMa +qwr +fvr +quT +qwr +qwr +fvr +djM +hsb +iZf ccV -caq -cjD +rxV +wEu ccV -caq -cjD +rxV +wEu ccV -caq -cjD +rxV +wEu ccV -bEZ -ctT +fOU +kUw cun -cuU -cuL +ykS +rWV cun -cwk -cuL +sNX +rWV cun -cuU -cuL +ykS +rWV cun -cxF -cyp +dnm +jta cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun -cuL -cuU +rWV +ykS cun -bGn -cyp +cit +jta cun cun cun @@ -76281,10 +64425,10 @@ aAO acK acS add -adv +hjc add add -aet +mWD aeP aff aAO @@ -76300,160 +64444,160 @@ acr acr acr ahN -ahv -aht -aht -aiz -aht -aht +lzM +alu +alu +gUA +alu +alu aff akV -amv +cGG ajP alF alb -alZ +tjn akF alH akF -amv +cGG ajP alF alb -alZ +tjn akF alH alH akF -atS -auB +sPl +rpa auZ auZ auZ -ayf -aza -aAn +nQp +yeT +sXL aCW -aCN -auY -aFw -aGP +gJv +qke +ycX +vNX aBL -rxa +nrD aLs aMf -aKN +dhP aQl -aNT -aPx -hNI -aQg -tjV -aPC -aTI -aUv +tpM +jIC +vAg +nUf +pej +vzn +lGh +ykO aNp aNp aNp -aYE -aZm +pCz +tLw aNp -aYE -aZm +pCz +tLw aNp -xoT -ixD -xoT -biq -iob -iob -oxQ -iob -xoT -xoT -ixD -xoT +eur +nFz +eur +sYI +ylf +ylf +vWh +ylf +eur +eur +nFz +eur bql -btN -buO +mjP +tqe bql -btN -buO +mjP +tqe bql -btN -buO +mjP +tqe bBh -bAp -bBK +qBm +uRg bFk -bEq -bFt -bGF -bHC +klA +mKu +prQ +oXM bFk -cWx +iEa vHX lWT -cWx +iEa bUa -bNw -bPp -bQS -bSB +rUq +bnw +cDN +izt bVI -bVv +lGl bVI -cae -cbq -ccU -cbY -ccU -ccU -ccU -cgp -ccU -ciC -cbr +cVL +tCl +dzU +hdR +dzU +dzU +dzU +dGd +dzU +aCr +hjS ccV xVH -clY +dMz ccV xVH -cbA +uEa ccV xVH -cbA +uEa ccV -bsX -bGm +dpI +jhH cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun -cxF -iIA +dnm +lAe cun cuM -cvA +gCf cun czg -cvA +gCf cun cuM -cvA +gCf cun -cxF -cwO -czZ -cyN -cvA -cuL +dnm +fDz +pOC +svy +gCf +rWV cxa aAO aAO @@ -76512,17 +64656,17 @@ acL acL acL acK -aht -aht -aht -aiz -aht -aht +alu +alu +alu +gUA +alu +alu acK alH akF amY -akt +lOz amY akF akF @@ -76530,47 +64674,47 @@ aAO akF akF amY -akt +lOz amY akF akF aAO aAO alH -atQ -auB +dKQ +rpa auZ auZ auZ auZ auZ -aAo +fMR aBK -aCO -aDV +nId +rXy aFx -aye +hyt aBL -rxa +nrD aIY fXQ -aKN +dhP aNp -aOf -aPx -lVw -kik -hRg -aSt -aTJ -aOT -aVx -aTH +nQk +jIC +lNw +xsX +cFG +hgT +gqs +rPy +prN +sWT aNp -aYF +iCT aQl aNp -aYF +iCT aQl aNp aNp @@ -76578,8 +64722,8 @@ aNp aNp aNp ogF -iob -bmt +ylf +gyZ ogF bql bql @@ -76587,36 +64731,36 @@ bql bql bql brP -byq +oLC bql brP -byq +oLC bql brP -byq +oLC bBh -bAq -bBL +jKE +vmw bBh bBh -bFu -bGG -bHD +kKL +wHT +jJC bFk -cWx +iEa vHX lWT -cWx +iEa bUa -bNx +ktm bPq -bQT -bSC -bTZ -bVx +rLo +mRw +iab +vCN bVI -cae -cbr +cVL +hjS ccV ccV ccV @@ -76624,48 +64768,48 @@ ccV ccV ccV ccV -cae -cbr +cVL +hjS ccV -ciz -cjE +dgZ +sZv ccV -ciz -cjE +dgZ +sZv ccV -cpq -cjE +gdu +sZv ccV -bEZ -cBD +fOU +hUw cun -cuV -cuN +hYy +vdN cun -cuV -cuN +hYy +vdN cun -cuV -cuN +hYy +vdN cun -cxF -cyp +dnm +jta cun -cuN -cuV +vdN +hYy cun -cuN -cuV +vdN +hYy cun -czw -cuV +fnO +hYy cun -cyk -cyp +jbI +jta cuR -cyM +iXJ czu -cuT +eJq cxa aAO aAO @@ -76707,7 +64851,7 @@ acO acS acO add -adW +xmR aeu aeN aff @@ -76726,109 +64870,109 @@ aff acK add add -aik -aiy +jLU +jXV acK aff aff aAO alH -ajQ -akp -ale +wNJ +mpq +uKP alH aAO aAO aAO alH ape -akp +mpq aqS alH aAO aAO aAO alH -atT -auD +xFu +paE wpK wpK auZ auZ auZ -aAp +qpw aBL -aCP -aDW -aFz -aFK +ieb +iBe +kRd +hoS aBL -rxa +nrD aLs fXQ -aKB +pgF aQl -aNT -aPx -aPC -kik -kik -aPC -aPC -aPC -aVy -jSv -aXS -aNx -aOT -aOT -aVx -aOT -bdL -aOT -aTH -bhB -blf -iob -iob -oxQ -iob -bqm -boX -bpB -bsB -btn -bsB -buP -bsM -bsB -bsB -bvi -bsB -bsB -bzc -bAr -bBM -bFl +tpM +jIC +vzn +xsX +xsX +vzn +vzn +vzn +tkx +ntc +tzK +nMv +rPy +rPy +prN +rPy +ivW +rPy +sWT +wNf +duU +ylf +ylf +vWh +ylf +lyq +xoK +fjA +loP +hLI +loP +plg +mWc +loP +loP +oqU +loP +loP +vpn +nGY +gfG +fgN bBh bFv bFv bFv bBh -jmY +uzN vHX lWT -cWx +iEa bUa -bNy -bPr -bQU -bSD +trX +pFV +rGU +rgI bUa -bVy +wRC bVI -cae -cbr +cVL +hjS ccV cbZ ccV @@ -76836,44 +64980,44 @@ cbZ ccV cbZ ccV -cae -cbr +cVL +hjS ccV -cuy +vJQ cby ccV -cuy +vJQ cby ccV -cuy +vJQ cby ccV -ctf -igB +veB +fdb cun cuR -cBj +bxM cun cuR -cBj +bxM cun cuR -cBj +bxM cun -cxF -cyp +dnm +jta cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cxF -cyy +dnm +bOQ cun cun cun @@ -76945,9 +65089,9 @@ aAO aAO aAO alH -ana -akx -ana +shC +dEY +shC alH aAO aAO @@ -76961,86 +65105,86 @@ aAO aAO aAO alH -atQ -auB +dKQ +rpa wpK wpK auZ axh auZ -aAp +qpw aBL -qdT -aDX -aCV -aEh +jqH +wFi +xIr +clR aBL -rxa +nrD aLs fXQ -aKN +dhP aQl -aNT -aPy -aPC -nZP -pEk +tpM +dsU +vzn +uAL +lod aSu -aRq -wZK -aSw -aWK -aXT -aYH -aZp -aZW -baA -bca -baA -aZp -bgF -aXT -bir -rDL +tTu +kZF +oUI +fce +odB +oWd +lzI +khV +dgu +xRn +dgu +lzI +rQi +odB +ecC +ngD blk bmu -jFe -boj -bre -brO -bsC -bqC -bsC -bsc -bsP -bsC -bsC -bsC -bsC -bsC -bsC -bAs -bBN -bFm -bAv -bFw +kka +dgR +qMs +dEE +uKi +gkk +uKi +eDh +qmQ +uKi +uKi +uKi +uKi +uKi +uKi +rvd +kQN +sWp +vMQ +mwY bxG -bsG +fgX bql -mVq +lwD vHX lWT -cWx +iEa bUa -bNz -bPs -bQV -bSE +lLY +ieK +dwB +guZ bUa -bVy +wRC bVI -cae -cbr +cVL +hjS ccV cbZ ccV @@ -77048,47 +65192,47 @@ cbZ ccV cbZ ccV -caj -cjO -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ccT -ctp -mDi -cuu -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -old -cxG -cyz -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuu -cuZ -cuZ -cxG -cyz -cuu -czc -czf +dma +kMW +qwr +qwr +qwr +qwr +qwr +qwr +qwr +qwr +qwr +qwr +fBf +hpr +kLo +lhQ +lhQ +lhQ +lhQ +lhQ +lhQ +lhQ +lhQ +diI +ooe +qev +lhQ +lhQ +lhQ +lhQ +lhQ +lhQ +lhQ +kLo +lhQ +lhQ +ooe +qev +kLo +jsx +scb cxa aAO aAO @@ -77131,9 +65275,9 @@ acO acS acO add -adY -aew -aeR +qgB +iiq +guE acK aff aff @@ -77173,86 +65317,86 @@ alH alH aAO alH -atQ -auB +dKQ +rpa wpK cWW wpK auZ auZ -aAq +glj aCW aCT aBL aBL aBL aBL -aIw +mfy aIZ aJH -aKC +gYb aNp -aNU -aPz -aOU -aPC -aPC -aVy -kmh -aTL -aVA -aTN +kFx +htk +xzG +vzn +vzn +tkx +dYF +psm +nQQ +eAZ aNp -aYF +iCT aQl aNp -aYF +iCT aQl aNp -aYF +iCT aQl aNp -bis -iob +ucC +ylf tOU aWI -iob -bok +ylf +jnF bql brP -byq +oLC bql brP -byq +oLC bql brP -byq +oLC bql bql bql bql -bAt -bBO -bFm +wyV +eeA +sWp brP -bFx -brg -brR +ifn +jzT +xia bql -bIQ +mZn mFF bKv -bLq +qoq bUa bUa bNv bNv bNv bNv -bVz +gGS bVI -cae -cbr +cVL +hjS ccV cca ccV @@ -77260,46 +65404,46 @@ cca ccV cca ccV -ciA -cjK +jMQ +bRU sUB -cjG -ccU -ccU -ccU -coL -coL -coL -coL -crb -ctl -ctX -cuv -cvc -cvc -cvW -cvc -cvc -cvc -cvc -cvc -sGc -cvc -cvc -cvc -cvc -cvc -cvc -cvW -cuN -cuN -niK -cuN -cvc -cvc -cvc -cyI -cze +qtm +dzU +dzU +dzU +jnt +jnt +jnt +jnt +fsi +rMf +uQB +lNr +pPL +pPL +uHN +pPL +pPL +pPL +pPL +pPL +nSE +pPL +pPL +pPL +pPL +pPL +pPL +uHN +vdN +vdN +iRz +vdN +pPL +pPL +pPL +wYO +rnE cxa cxa aAO @@ -77343,7 +65487,7 @@ acO acS add add -adR +hNa add add add @@ -77359,123 +65503,123 @@ acp add add add -abU -act +jwT +suu add acO acS aff aAO alH -amd -amw -ajS +deG +eGf +rlq akK -alg -amw -aml +xrG +eGf +jWD akK -amd -amw -ajS +deG +eGf +rlq akK -alg -amw -aml +xrG +eGf +jWD alH aAO alH -atQ -auB -ava +dKQ +rpa +klu evk auZ auZ auZ -aAp +qpw aBL -aGQ -aGQ -pGf -aGQ +gFa +gFa +ofM +gFa aHU -ocS +nGA aLs fXQ -aKN +dhP aNp aNp jpO -aQT -aQh -aRp -aVy -aTL -aUw +sTa +xel +gLx +tkx +psm +sdo aNp aNp aNp -aYI -aZq +icn +lvH aNp -aYI -aZq +icn +lvH aNp -aYI -aYI +icn +icn aNp aNp -aWR +iQS aWS bmw -aWR +iQS bql bql -brQ -bsE +cHp +gKV bql -btQ -bsE +oar +gKV bql -btQ -bsE +oar +gKV bql bwj bwj bzd -bCv -bBO -bFm +bbM +eeA +sWp bql bql bql bql bql -cWx +iEa vHX bKw -fLR -bMr -bNB -bPt -bQW +vgo +nRh +sLs +gME +mmx bNv bNv -bVA -bWR -caf -cbs -ccW -ccW -cdz -ccW -ccW -ccW -ccW -caf -cjK -cmq -clo +lPq +xBu +tCh +nHA +gHL +gHL +fLj +gHL +gHL +gHL +gHL +tCh +bRU +dok +wjd ccV cca ccV @@ -77484,29 +65628,29 @@ cpU csJ cpU cpU -cqT -ctT +out +kUw cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cBj +bxM cuR cun -cxk +mga cun -cxk +mga aFC -cxD -fMz -cxV -qHj +qGb +dQS +wVa +xFK cxa cxa cxa @@ -77554,9 +65698,9 @@ acK acO acS add -adB -adZ -aex +guc +rLW +qiw add afe abT @@ -77571,7 +65715,7 @@ abT aeN aeQ add -abV +oSe add add acO @@ -77579,101 +65723,101 @@ acS aff aAO alH -ajm +itd ajC -ajV +srR akK -ajm +itd ajC -ajW +jLN akK -ajm +itd aoz -ajW +jLN akK -ajm +itd aoz -ajW +jLN alH aAO alH -atQ -auB -auB -auB -auB -auB -auB -aAs -aBM +dKQ +rpa +rpa +rpa +rpa +rpa +rpa +tWi +oZw auZ auZ auZ auZ jRC -aKP +qog aLs fXQ -aKN +dhP aNp -aNV +fxx aNp aNp -aQi -wZK -aSw -aTM +iQK +kZF +oUI +hVy aNp aNp -pWq +pxv aNp aYD -aPC +vzn aNp aYD -aPC +vzn aNp aYD -aSt -bhE +hgT +cLj aNp -bjU +gJQ aWS bmw -aWR +iQS bql -brf -brg +xrt +jzT bsF bql -brh +fDm bsF bql -brh +fDm bsF bql bql bql bql -bCv -bBO -bFm -bAv -bFw +bbM +eeA +sWp +vMQ +mwY bxG -bsG +fgX bql -cWx +iEa vHX lWT -fLR -bMr -bNC +vgo +nRh +qkn bSF -bNC +qkn bSF bUb -bVB +pmZ bYF cag cbt @@ -77687,7 +65831,7 @@ cag cag cbt cag -clo +wjd ccV cbZ ccV @@ -77696,20 +65840,20 @@ cpU cpY cpY cpU -cqT -ctT +out +kUw cun -cvd -cuS +rHd +gFP cun -cvd -cuS +rHd +gFP cun -cvd -cuS +rHd +gFP cun -cvd -cuS +rHd +gFP cun cyO cun @@ -77767,24 +65911,24 @@ acO acS add add -adP -aey +vzs +bOE add -afg -abU -act +lxy +jwT +suu add -afg -abU -act +lxy +jwT +suu add -afg -abU -afO -act +lxy +jwT +vZN +suu add -agD -aex +kKD +qiw add acO acS @@ -77792,100 +65936,100 @@ aff acL alH amf -ajD -ane +kOs +fMf akK -ali -ajD +orF +kOs amf akK amf -ajD -ane +kOs +fMf akK -ali -ajD +orF +kOs amf alH acL alH -atT -auE -auE -auE -auE -auE -auE -aAt -aBN +xFu +jYh +jYh +jYh +jYh +jYh +jYh +ump +jEq aCR aCR aCR aCR aHV -aIx +wsL aJa fXQ -aKN +dhP aNp -aNW -aPA -aQU -aQj -aRs -aSx -aTN -aUu -aVB -aLT +xRp +ewG +pkO +xPV +qGr +gwY +eAZ +lFy +twa +pAK aNp -aLU -aZr +wdq +pHP aNp -aLU -aZr +wdq +pHP aNp -aLU -aLV -aPC +wdq +giZ +vzn aNp -aWR -aWR -bdW -aWR +iQS +iQS +ooD +iQS bql -brg -brR -bsG +jzT +xia +fgX bql -btR -bsd +gpG +sMw bql -btR -bsG +gpG +fgX bql bwj bwj bzd -bAu -bBQ -bDo +iEV +kDF +xOU brP -bFx -brg -brR +ifn +jzT +xia bql -cWx +iEa vHX bKr -pxa -bMs -bND +fsw +fVG +wzu bSG -bND +wzu bSG bUc -bVC +vzA bWS cah cbu @@ -77899,7 +66043,7 @@ cag cag cbt cag -clo +wjd ccV cbZ ccV @@ -77908,20 +66052,20 @@ cpU cpY cpY cpU -cqT -ctZ +out +fER cun cuM cyO cun cuM -cvA +gCf cun cuM -cvA +gCf cun cuM -cvA +gCf cun cyO cun @@ -77980,23 +66124,23 @@ adb acO add add -adv +hjc add add -abV +oSe add add add -abV +oSe add add add -abV +oSe add add add -agI -ahq +jBc +ePN add acO acS @@ -78021,31 +66165,31 @@ akK akF acL alH -atT -auF -avb +xFu +udi +cIu auZ axh auZ auZ -aAx +cAk aBL -aGQ -aGQ -tDB -aGQ +gFa +gFa +xLS +gFa xLu -qqm +vmQ aLs fXQ -aKN +dhP aNp aNp aNp aNp aNp -aRt -aSy +mdE +kJV aNp aNp aNp @@ -78061,10 +66205,10 @@ bak bak bak bak -bkb -bll -bmy -bll +gbX +jzr +eDD +jzr bqp bqp bqp @@ -78080,38 +66224,38 @@ bql bql bql bql -bBR -bFm +lAp +sWp bql bql bql bql bql -cWx +iEa vHX lWT -fLR -bMr -bNE -bWT -bQX +vgo +nRh +voK +gyA +eoR bNv bNv -bVD -bWT -cai -cbv -ccU -ccU -ccU -ccU -ccU -ccU -ccU -ciD -cjL -cbA -clo +fMN +gyA +vQM +scB +dzU +dzU +dzU +dzU +dzU +dzU +dzU +unZ +klc +uEa +wjd ccV ccV ccV @@ -78120,20 +66264,20 @@ cpU cpU cpU cpU -cqY -ctT +dvS +kUw cun -cuL -cuT +rWV +eJq cun -cuL -cuT +rWV +eJq cun -cuL -cuT +rWV +eJq cun -cxX -cuT +pgE +eJq aFC cun cun @@ -78194,21 +66338,21 @@ ads ads adb add -adB -adZ -aex +guc +rLW +qiw add -adB -adZ -aex +guc +rLW +qiw add -adB -adZ -aex +guc +rLW +qiw add -adB -agN -aey +guc +taP +bOE add acP acS @@ -78216,52 +66360,52 @@ aff acL alH amf -ajE -anf +jxA +cth akK -alj -ajE +dXJ +jxA amf akK amf -ajE -anf +jxA +cth akK -alj -ajE +dXJ +jxA auy alH acL alH -atQ -auB +dKQ +rpa wpK pfk auZ auZ auZ -aAu +oFa aCW aCT aBL aBL aBL aBL -rxa +nrD aLs fXQ -aKN +dhP aNp -aLU +wdq aNy -aOV -aQk -aNx -aSz -aQk -aUx +mXE +tmC +nMv +evi +tmC +hRo aNy -aWL +lzQ bak aAO aAO @@ -78273,10 +66417,10 @@ aAO aAO acL bbp -aWR -bdz -bdW -aWR +iQS +eWQ +ooD +iQS bbp acL aAO @@ -78288,52 +66432,52 @@ aAO aAO aAO bqp -bsG +fgX bxG -bze -bAv -bBS -bFm -bAv -bFw +oqr +vMQ +fvc +sWp +vMQ +mwY bxG -bsG +fgX bql -cWx +iEa vHX lWT -cWx +iEa bUa bUa bNv bNv bNv bNv -bVE +fox bVI -cae -cbr +cVL +hjS ccV ccV -cdA -ceA -cdA +qyP +qPu +qyP ccV ccV -cae +cVL cjJ ckI -clp -ccT -ccT -ccT -csc -csc -csc -csc -csc -iiI -crz +tUU +qwr +qwr +qwr +wgc +wgc +wgc +wgc +wgc +nwW +dZS aFB xxa xxa @@ -78407,73 +66551,73 @@ acO acS add add -adP -aey +vzs +bOE add add -adP -aey +vzs +bOE add add -adP -aey +vzs +bOE add add add -adv +hjc add acO acS aff aAO alH -ajm +itd ajF -ajW +jLN akK -ajm +itd ajF -ajW +jLN akK -ajm +itd aoA -ajW +jLN akK -ajm +itd aoA -ajW +jLN alH aAO alH -atQ -auB +dKQ +rpa wpK auZ wpK auZ auZ -aAw +uWi aBL -aCP -aEa -aCV -aEh +ieb +hwd +xIr +clR aBL -rxa +nrD aLs fXQ -aKN +dhP aNp -aLV -aPC -aOW +giZ +vzn +vqj aQl -aPx -aSA +jIC +gAq aQl -aUy -aPC -aLV +jqc +vzn +giZ bak aAO aAO @@ -78485,10 +66629,10 @@ bbp bbp bbp bcj -bck -bck -bmz -bck +rRH +rRH +upM +rRH bcj bbp bbp @@ -78500,64 +66644,64 @@ aAO aAO aAO bqp -bwk -brg -bzf +mbo +jzT +mfV brP -bBS -bFm +fvc +sWp brP -bFx -brg -brR +ifn +jzT +xia bql -cWx +iEa hWd lWT -jWj +qAG bUa -bNz -bPs -bQY -bSD +lLY +ieK +nGz +rgI bUa -bVE +fox bVI -caj -cbr +dma +hjS ccV -ccb -cdB -cdB -cdB -ceB +dqC +rFS +rFS +rFS +fEr ccV -ciA -cbq -ccU -clq -ccU -ccU -ccU -coL -coL -coL -coL -coL -lrB -crz +jMQ +tCl +dzU +gRo +dzU +dzU +dzU +jnt +jnt +jnt +jnt +jnt +vrH +dZS cpU -cqO +jWl cpY cpU -cpV -cvG +rNg +ggW cpU -cpV -cvG +rNg +ggW cpU -cwu -cvG +sSA +ggW cpU dMw uGU @@ -78620,15 +66764,15 @@ acS acO add add -adv +hjc add add add -adv +hjc add add add -adv +hjc add acO acO @@ -78639,49 +66783,49 @@ acS aff aAO alH -amg -amB -ajX +lxq +sWq +lGE akK -alk -amB -amn +jmP +sWq +mgp akK -amg -amB -ajT +lxq +sWq +rRO akK -alk -amB -amn +jmP +sWq +mgp alH aAO alH -atQ -auB +dKQ +rpa wpK wpK auZ evk azb -aAx +cAk aBL -aCQ -aEb -aFD -ayd +vpC +ybH +imq +pwC aBL -rxa +nrD aLs fXQ -aKN +dhP aNp aNp aNp aNp aNp -aRv -aSB +juR +tsu aNp aNp aNp @@ -78693,18 +66837,18 @@ aAO aAO bbp bbp -aWR -aWR -aWR -bit -aWR -aWR -bdW -aWR -bit -aWR -aWR -aWR +iQS +iQS +iQS +isa +iQS +iQS +ooD +iQS +isa +iQS +iQS +iQS bbp bbp aAO @@ -78716,60 +66860,60 @@ bql bql bql bql -bBU -bFm +pap +sWp bql bql bql bql bql -cWx +iEa vHX bKw -cWx +iEa bUa -bNF -bPy -bQZ -bSH -bUd -bVF +ttO +xlI +mRe +ddD +hrh +yfl bVI -cae -cbr +cVL +hjS ccV -ccc -cdB -ccd -cdB -cdC +nrI +rFS +rVJ +rFS +vsf ccV -cae -cbr +cVL +hjS ccV -cuy +vJQ cby ccV -cuy +vJQ cqd cpU -coM +kPI cqd cpU -pZu -csH +rcR +see cpU csG -cqO +jWl cpU cok -cqO +jWl cpU cok -cxr +snE cpU cok -cqO +jWl cpU uGU cyO @@ -78869,119 +67013,119 @@ alH alH aAO alH -atQ -auB +dKQ +rpa auZ auZ auZ auZ auZ -aAy +syx aBK -aCS -aEc +lZq +mOi aFF -aye +hyt aBL -rxa +nrD aLs fXQ -aKN +dhP aNp -aLU +wdq aNy -aOV -aQk -aQi -aSD -aQk -aUx +mXE +tmC +iQK +tQb +tmC +hRo aNy -aLU +wdq bak aAO aAO aAO bbp bbp -aWR -aWR -aWR -bdU -biu -aZn -aZn -bmA -aZn -biu -bhN -aWR -aWR -aWR +iQS +iQS +iQS +xyL +fHJ +egT +egT +opM +egT +fHJ +sSq +iQS +iQS +iQS bbp bbp aAO aAO aAO bqp -bsd +sMw bxG -bze -bAv -bBV -bDp -bAv -bFw +oqr +vMQ +vLi +fMl +vMQ +mwY bxG -bsG +fgX bql -cWx +iEa vHX lWT -cWx +iEa bUa -bNx +ktm bPz bRa -bSI +jqK bNv bNv bNv -cak -cbw +eTZ +iZf ccV -ccc -cdC +nrI +vsf ccV -ccc -cdC +nrI +vsf ccV -ciE -cbw +wKb +iZf ccV -cao -cbz +oxr +pXK ccV -cao -coi +oxr +qbH cpU -coN -coi +qNy +qbH cpU -hyp -gbV +wmu +seR aFB -csH -ctu +see +nJY cpU -csH -ctu +see +nJY cpU -csH -ctu +see +nJY cpU -csH -ctu +see +nJY cpU cyO cyO @@ -79065,134 +67209,134 @@ aAO aAO aAO alH -ana -aky -ana +shC +rsd +shC alH aAO aAO aAO alH -ana -aqy -ana +shC +hxy +shC alH aAO aAO aAO alH -atQ -auB -avc -avc -avc -avc -azc -aAA +dKQ +rpa +ydN +ydN +ydN +ydN +dLk +nLH aCT -sTb -aEd -aFG -aGS +rmw +rIb +pdf +rIw aBL -aIw +mfy aIZ aJH -aKC +gYb aNp -aLV -aPC -aOW +giZ +vzn +vqj aQl -aRw -aSA +etm +gAq aQl -aUz -aPC -aWM +qTS +vzn +twM bak aAO acL bbp bbp -bcc -bgQ -bgQ -bgG -bfu +twk +qIq +qIq +tUo +tNU bfw bfw bfx bfx bfw bfw -bfu -bgQ -bgQ -bgQ -bcc +tNU +qIq +qIq +qIq +twk bbp bbp acL acL bqp -brR -brg -bzh +xia +jzT +oOZ brP -bBS -bFm +fvc +sWp brP -bFx -brg -brR +ifn +jzT +xia bql -bIQ +mZn mFF bKv -bLq +qoq bUa -bNG -bPA -bRb -bSJ +llQ +wpi +iaT +jqb bNv bVG bPQ -byo -cbr +ldf +hjS ccV -ccc -cdB -ceB -cdB -cdC +nrI +rFS +fEr +rFS +vsf ccV -caj -cbr +dma +hjS ccV xVH -cbA +uEa ccV xVH -cqO +jWl cpU cok -udR +rXD xxa -sye -coN +pNN +qNy cpU -coM +kPI cqd cpU -coM +kPI cqd crc -coM +kPI cqd cpU -coM +kPI cqd cpU cyO @@ -79277,24 +67421,24 @@ alH alH aAO alH -ajQ -aks -ale +wNJ +mJS +uKP alH aAO aAO aAO alH -ajQ -aks -ale +wNJ +mJS +uKP alH aAO aAO aAO alH -atQ -auB +dKQ +rpa axS ayM ayM @@ -79308,16 +67452,16 @@ aBL aCT aCW aKT -aJb -aJI +ipU +mtT aKT aNp aNp aNp aNp aNp -aRx -aSD +jWh +tQb aNp aNp aNp @@ -79326,24 +67470,24 @@ bak aAO bbp bbp -aWR -awP -bdN -aWR -aWR -bdW -aWR -aWR -aWR -aWR -aWR -aWR -bdW -aWR -aWR -bdN -pvG -aWR +iQS +wMT +wyl +iQS +iQS +ooD +iQS +iQS +iQS +iQS +iQS +iQS +ooD +iQS +iQS +wyl +iRR +iQS bbp bbp aAO @@ -79352,16 +67496,16 @@ bql bql bql bql -bBV -bDq +vLi +gxH bql bql bql bql bql izT -fLR -bKx +vgo +kPW izT bNH bNH @@ -79371,41 +67515,41 @@ bNH bNH bVH bPQ -byr -bBZ +fIu +pKy ccV -ccc -cdB -cdB -cdB -cdC +nrI +rFS +rFS +rFS +vsf ccV -ciA -cbr +jMQ +hjS ccV -caq -cbB +rxV +rlo ccV -caq -col +rxV +nth cpU -cpV -col +rNg +nth cqd -cqW -crD -crZ -csc -csc -ctJ -cue -coK +hCa +nvl +rPk +wgc +wgc +pOI +jnH +kel fHI -cue -coK -coK -coK -cwv +jnH +kel +kel +kel +srq cqp cyO cyO @@ -79461,20 +67605,20 @@ acE acE acE acE -aaE -aaJ -aaT -abh -abs -abB -acw -acv +miM +rmy +njm +jaw +qyy +nnC +ohJ +uqN agJ adq adH aeb -aeE -afl +kTh +wdT aed agX agL @@ -79490,7 +67634,7 @@ alH alH akF amY -akt +lOz amY akF akF @@ -79498,83 +67642,83 @@ aAO akF akF amY -akt +lOz amY akF akF aAO alH akF -atO -auG +umL +gtq akF aAO aAO aAO ayM -aAB -auY -aCU -aEf -aFI -aCV +vsm +qke +lXx +qCS +bpQ +xIr aCT -aKQ +fRP aLs fXQ -aKN -aKN -aKN -aKN -aKN +dhP +dhP +dhP +dhP +dhP aNp -aPx -aSA -aQk -aUx +jIC +gAq +tmC +hRo aYi -aWL +lzQ bak aAO bbp -aWR -aWR -bfu -aWR -bfs -rMk -bhG -biv -aWR -aWR -bgH -bgH -bgH -bhG -rMk -bfs -aWR -bfu -aWR -aWR +iQS +iQS +tNU +iQS +lYw +esF +nKY +xlv +iQS +iQS +pcI +pcI +pcI +nKY +esF +lYw +iQS +tNU +iQS +iQS bbp aAO bqp -bsG +fgX bsF -bzi -bAv -bBS -bFm +erk +vMQ +fvc +sWp bql -cWx -cWx -cWx -cWx -cWx +iEa +iEa +iEa +iEa +iEa vHX lWT -cWx +iEa bPQ bNI bNQ @@ -79583,17 +67727,17 @@ bNQ bNQ bNQ bPQ -cal -bCa +jvg +spk ccV -ccc -cdB -ccd -cdB -cdC +nrI +rFS +rVJ +rFS +vsf ccV -byo -cbr +ldf +hjS ccV ccV ccV @@ -79605,19 +67749,19 @@ cpU cpU cpU hcG -crB -csa -coL -coL -crb -coL -coL +cCt +pNe +jnt +jnt +fsi +jnt +jnt cpY jSu cpY cpY -coL -cwT +jnt +lMi cpU cyO cyO @@ -79672,23 +67816,23 @@ acF aac aaf aai -aao -aaF -aaK -aaU -aaJ -abt -aaT -aaH -acw +sZm +pew +hcO +pdX +rmy +gyE +njm +vyj +ohJ agJ agt agt agt -aeF -afm -aec -agY +bcH +eJg +paZ +gyK agM agJ apN @@ -79700,93 +67844,93 @@ akV alF akV akV -amv +cGG ani alF all -alZ +tjn alH alH alH -amv +cGG ani alF all -alZ +tjn akF alH alH akV -atH -auH +jyE +mSt akF aAO aAO aAO ayM -aAC +nJJ auZ auZ auZ -aFJ -aEh +kzQ +clR aCT -aKN +dhP aLs aMf fXQ fXQ fXQ fXQ -aKB +pgF aNp -aQj -aSG +xPV +uaf aQl -aUA -aPC -aPC +jvm +vzn +vzn bak aAO bbp -aWR -aWR -bfu -aWR -xtt -bgI -bhH -bgQ -bkc -aWR -bjj -bgQ -bgQ -acu -bpC -hZp -aWR -bfu -aWR -aWR +iQS +iQS +tNU +iQS +tFP +dDI +vrO +qIq +gzE +iQS +ilh +qIq +qIq +cux +eTi +hsQ +iQS +tNU +iQS +iQS bbp aAO bqp -brh -brg -bzj +fDm +jzT +xQV brP -bBX -bDr +kSf +nfz bql -jmY +uzN vHX vHX iif vHX vHX lWT -cWx +iEa bPQ bNJ bNQ @@ -79795,26 +67939,26 @@ bNQ bNQ bNI bPQ -cae -cbr +cVL +hjS ccV -ccc -cdC +nrI +vsf ccV -ccc -cdC +nrI +vsf ccV -ciF -cbr +sUx +hjS ccV -caq -cjD +rxV +wEu ccV -caq -cvG +rxV +ggW cpU -ktA -dJf +rHO +pDj fFq gBM cpY @@ -79822,7 +67966,7 @@ cpU xxa xxa cpU -yiA +kRx cpY cpY cpY @@ -79884,21 +68028,21 @@ aac acF acF aai -aap -aaF -aaK -aaK -aaK -aaK -aaU -aaJ -aaT +gZE +pew +hcO +hcO +hcO +hcO +pdX +rmy +njm agJ adr agX -aec -aeF -afm +paZ +bcH +eJg agJ agJ agJ @@ -79936,69 +68080,69 @@ aAO aAO aAO ayM -aAD -aBO -avc -aEg -aFK -aGT +gbp +vxm +ydN +vca +hoS +vsY aCT -aKN +dhP aJc aJJ aJJ aJJ aLW fXQ -aKN +dhP aNp -aRt -aSH +mdE +hPN aNp aNp -aVC -aWN +fwN +rVH bak acL bbp -aWR -bdU -bfv -aZn -bft -bgJ -bhM -biw -aWR -aWR -aWR -biw -aWR -bdY -biu -bqd -aZn -bfv -bhN -aWR +iQS +xyL +pBP +egT +jPl +qje +qGy +iHf +iQS +iQS +iQS +iHf +iQS +tEY +fHJ +aGz +egT +pBP +sSq +iQS bbp acL bqp -bwl -brg +fOM +jzT bql bql -bBY -bDs +lia +jYl bql -cWx +iEa vHX uUO sMm sMm sMm qqn -cWx +iEa bPQ bNK bSK @@ -80007,26 +68151,26 @@ bSK bUe bNI bPQ -cdP -cbr +jrL +hjS ccV -ccc -cdB -ceB -cdB -cdC +nrI +rFS +fEr +rFS +vsf ccV -ciG -cjN +wnE +ogJ ccV xVH -clY +dMz ccV xVH -cqO +jWl cpU ykG -cqO +jWl cpU ruY cpY @@ -80096,21 +68240,21 @@ acF acF aac aai -aaq -aaF -aaL -aaV -abi -aaK -aaK -aaK -abx +leC +pew +pZI +aWF +eAU +hcO +hcO +hcO +vtp agJ agJ agJ agJ -aeF -afm +bcH +eJg aed agX agL @@ -80150,95 +68294,95 @@ aAO azd apK apK -aCV -aEh -auB -aGU +xIr +clR +rpa +xYN aCT -aKN -aKN -aKN -aKN -aKN +dhP +dhP +dhP +dhP +dhP aLX fXQ -aKN +dhP aNp -aTr -aSI -aTO +qlN +ycC +nCv aNp aNp aNp bak bbp bcj -aWR -bdV +iQS +qur bfw -aWR -bib -bgQ -bku -aWR -bjj -aWR -bjj -aWR -bjj -aWR -bgQ -biv -aWR +iQS +cBC +qIq +gsd +iQS +ilh +iQS +ilh +iQS +ilh +iQS +qIq +xlv +iQS bfw -bdW -bsQ +ooD +iNr bcj bbp bqp bql bql bql -bAw -bCd -ybB +vYZ +gmc +kEt bql -bFy +svn vHX lWT -cWx -cWx -cWx -cWx -cWx +iEa +iEa +iEa +iEa +iEa bPQ -bNL -bPC -bRe -bNL -bNL -bVJ +hSm +kfQ +xMV +hSm +hSm +eAj bPQ -mYM -cbr +oIf +hjS ccV -ccd -cdB -cdB -cdB -cgq +rVJ +rFS +rFS +rFS +ugo ccV -ciA -cbr +jMQ +hjS ccV -ciz -cjE +dgZ +sZv ccV -ciz -ctu +dgZ +nJY cpU -ncT -ctu +yhz +nJY cpU cpY cpY @@ -80308,23 +68452,23 @@ acF aac aac aaj -aar -aaG -aaM -aaW -abj -abu -abu -abX -abx +pPd +jMA +hgh +oGl +eqH +hkp +hkp +dKw +vtp agJ agK agX -aec -aeF -afm -aec -agY +paZ +bcH +eJg +paZ +gyK agM agJ agL @@ -80360,7 +68504,7 @@ awe awe awe azd -aAE +izs apK aDa aDa @@ -80371,54 +68515,54 @@ aKU aKU aKU aKU -aKN +dhP aLX fXQ -aKP +qog aKT -aKP -aSJ -aKP -aWR -aWR -aWR -bal -aWR -bck -aWR -bdW +qog +imK +qog +iQS +iQS +iQS +roM +iQS +rRH +iQS +ooD bfw -bxt -bib -bgQ -bku -aWR -bkd -blo -bmB -aWR -bol -aWR -bpC -bqc -aWR +spY +cBC +qIq +gsd +iQS +uKB +sVE +gJX +iQS +klZ +iQS +eTi +byX +iQS bfw -bdW -aWR -bck -aWR -bvj -aWR -aWR -aWR -fLR -bCe -fLR +ooD +iQS +rRH +iQS +nCw +iQS +iQS +iQS +vgo +kBp +vgo izT -fLR +vgo vHX lWT -cWx +iEa qbj qbj qbj @@ -80426,30 +68570,30 @@ qbj bOz bPQ bPQ -bRf +qEk bPQ bPQ bPQ bNH -cae -uWf +cVL +dwr ccV ccV -cdA -cdA -cdA +qyP +qyP +qyP ccV ccV -cae -cbr +cVL +hjS eRY -cuy +vJQ cby ccV -cuy +vJQ cqd cpU -vUy +kkv cqd cpU vAs @@ -80457,28 +68601,28 @@ cpY cpY bUS csl -ckj -ckn -cme -ckn -ckn -coq -coq -ckj +tyF +ltP +weI +ltP +ltP +eKG +eKG +tyF cqx cio -crM -csm -cBB -crd -crg -cse -csL -crg +rTg +tLV +mUJ +ykp +yce +usU +ttK +yce cio -cug +luc cio -cvl +nGl cvD cvQ cvQ @@ -80520,21 +68664,21 @@ aac acF acF aak -aas -aaH -aaN -aaX -aaK -aaK -aaK -abY -abx +wGQ +vyj +nLq +dSj +hcO +hcO +hcO +nWD +vtp agJ agJ agJ agJ -aeF -afm +bcH +eJg agJ agJ agJ @@ -80553,115 +68697,115 @@ agJ bFh akA apK -apH -aqt -aqW +xqM +eJH +xHa apK -apH -aqt -aqW +xqM +eJH +xHa apK arW asl -asQ -atq -aua -aua -avd -awg -aua -aua +rWM +oYT +tby +tby +jGX +wBW +tby +tby apK -aAF +lYa apK -aCX -aqv -aqv -aGV +fou +rmm +rmm +pAP awe aAO aAO aAO aKU -aKN +dhP hND fXQ -aKP -aQm -aKP +qog +qoR +qog aUD fXQ aWS aWS -aWR -bal -bdz -bck -aWR -bdW +iQS +roM +eWQ +rRH +iQS +ooD bfx -aWR -aWR -aWR -aWR -blm -bke +iQS +iQS +iQS +iQS +qQa +vzM blp bmC -bnA -aWR -boZ -bjj -bqc -aWR +vxk +iQS +wnZ +ilh +byX +iQS bfx -bdW -aWR -bck -bdz -bvk -aWR +ooD +iQS +rRH +eWQ +iTN +iQS aWS aWS vHX ovc -fLR -nWl -fLR +vgo +gTb +vgo vHX lWT -cWx +iEa qbj aAO aAO aAO bOA -bNM -bPD -bRg -bNO -bNO -bVK -bWU -cae -cbs -ccY -ccf -ccW -ccW -ccW -cgr -ccW -caf -faM -hXW -osO -ccT -ccT -ccT -csc -csc -hmZ +wbw +cwo +cDJ +uFR +uFR +hmX +rvX +cVL +nHA +tlv +nbD +gHL +gHL +gHL +efd +gHL +tCh +upU +jRt +dvt +qwr +qwr +qwr +wgc +wgc +kZw myY cpY cpY @@ -80679,23 +68823,23 @@ cnI cjw ctM crk -crN -csn -crN -crN -csn -csn -csM -crg +xtl +sai +xtl +xtl +sai +sai +bJm +yce cio -cuh +ipi cio cvm cvE cvS cwg cwx -cwV +dOI cxg cxl cxx @@ -80732,27 +68876,27 @@ acF aac aaf aai -aat -aaF -aaO -aaK -aaK -fGf -aaK -abY -abx +muK +pew +lsK +hcO +hcO +joX +hcO +nWD +vtp agJ agL agX aed -aeF -afm +bcH +eJg aed agX agL agJ aed -ahB +eqU aed agJ agJ @@ -80765,114 +68909,114 @@ agJ akA alp apK -apI -apI -apI +rOO +rOO +rOO apK -apI -apI -apI +rOO +rOO +rOO apK arX -asm -bCo -atr -aub -aub -ave -awh -aub -aub +mgG +pDQ +lCJ +uLX +uLX +ptS +rhy +uLX +uLX apK -aAG +hoa apK -apM -aqY -aFM -aGW +xyf +wFl +dIF +tDu awe aAO aAO aAO aKU -aKN +dhP aLZ aJH -aKO -aKO -aKO +kQV +kQV +kQV aSK aJH aWT aWT -aZn -bam -aZn -bcl -aZn -bdX +egT +rRG +egT +wox +egT +qqM bfx -aWR -bib -bjj -aWR -aWR -bkf +iQS +cBC +ilh +iQS +iQS +uOp blq ael -bnB -bjj -bku -bkg -bqe -aWR +ehf +ilh +gsd +eWA +pXh +iQS bfx -bse -aZn -bcl -aZn -bvl -aZn +jvL +egT +wox +egT +pYO +egT aWT aWT mFF bCh -pxa -pxa -pxa +fsw +fsw +fsw sMm bHE -cWx +iEa qbj aAO aAO aAO bOA -bNN -bNL -bRh -bSL -bSL -bVL -bWV -cam -cbx -cnR -cbx -cnR -ceC -cnR -cbx -cnR -ciH -cjP -ioD -juy -ccU -cmM -clq -coL -coL +tUg +hSm +qys +pEo +pEo +vmm +tPH +dTO +sBg +kTb +sBg +kTb +muc +kTb +sBg +kTb +qma +vTh +mar +vLG +dzU +bvV +gRo +jnt +jnt cpY cpY cpY @@ -80891,23 +69035,23 @@ coZ cjw cqz cio -cnV -cso -csT -cre -crG -csf -csN -csT +jiS +hum +poN +tnN +wwZ +jBR +raW +poN cio -cui +nBZ cio cvn cvH cvT cwh cwy -cwV +dOI cxg cxl cxx @@ -80944,29 +69088,29 @@ acF acF acF aai -aap -aaF -aaK -aaY -aaK -aaK -aaK -abY -acx +gZE +pew +hcO +quv +hcO +hcO +hcO +nWD +qQS agt agM -agY -aec -aeF -afn -aec -agY +gyK +paZ +bcH +jwO +paZ +gyK afW agJ -agS -afG -afG -ain +oek +hyr +hyr +vOn aed agL ahA @@ -80977,149 +69121,149 @@ agJ bFi akA apK -apJ -apI -aqX +jVA +rOO +wej apK -apJ -atd -aqX +jVA +jCW +wej apK arX -asm -apM -arx -auc -auc -avf -arx -auc -auc +mgG +xyf +gGl +lNX +lNX +oxN +gGl +lNX +lNX apK -aAH -aBP -aCY -aqZ -aFN -aGX +ryX +dLc +eDo +nQH +fKT +rpy azd aKU aKU aKU aKU -aKN +dhP aLX fXQ -aKP +qog aKT -aKP -aSJ -aKP -aWR -aWR -aWR -bcm -aWR -bck -aWR -bdW +qog +imK +qog +iQS +iQS +iQS +iDo +iQS +rRH +iQS +ooD bfw -bjU -bib -bjk -aWR -bln -aWR -blr -bmE -aWR -bom -bjj -bgQ -biv -aWR +gJQ +cBC +xNe +iQS +nIJ +iQS +qMT +nZX +iQS +rAH +ilh +qIq +xlv +iQS bfw -bdW -aWR -bck -aWR -bvk -bwn -aWR -aWR -fLR -hlO -eTo +ooD +iQS +rRH +iQS +iTN +lqi +iQS +iQS +vgo +rtv +iBc izT -eTo +iBc vHX lWT -cWx +iEa qbj qbj qbj qbj bOz bPQ -thZ -bRf +pGU +qEk bPQ bPQ bPQ bNH -cuy +vJQ cby ccV -cuy +vJQ cby ccV -uZm -dnf +dQQ +ike ccV -mLi +dWx cby eRY -cuy +vJQ cby ccV -cuy +vJQ cqd cpU -coM +kPI cqd cpU +cLU cpY -tXB chi -cip +wHC cju ckk cjw -ckn -cmS +ltP +wyq ckk -cpa -cpa +dNg +dNg cjw cio cio cio csp cio -crf -csT -csT -csO -crN -ctK -csT +lCq +poN +poN +uSb +xtl +uaY +poN cio cvo cvI cvU cjw cwz -cwV +dOI cxg cxl cxx @@ -81156,30 +69300,30 @@ acF acF aac aai -aau -aaF -aaK -aaZ -abk -aaK -aaK -abY -acy +eXq +pew +hcO +kRg +fBU +hcO +hcO +nWD +sDI acH acH acH acH -aeG -afm +xhn +eJg agJ agJ agJ agJ -agT +wbx agL agL -afm -aiC +eJg +hGN agL agL agL @@ -81190,141 +69334,141 @@ akA akB apK apK -aqu +oTm apK apK apK -aqu +oTm apK apK arX -asn -apM -ats -aqv -aqv -avg -awp -azD -aqv -aqv -avi +wEa +xyf +lau +rmm +rmm +rNZ +nGD +quS +rmm +rmm +tNL apK -aCZ -aEk -aFO -aGY +nrb +lHi +qsh +vNW apK -aKN -aKN -aKN -aKN -aKN +dhP +dhP +dhP +dhP +dhP aLX fXQ -aOY +xbR aNq -aTs -aSL -aTQ +kkw +fgy +tfM aNq aNq aNq ban bbp bcj -aWR -bdV +iQS +qur bfw -aWR -bib -bjk -aWR -aWR -bkg -aWR -aWR -aWR -aWR -aWR -bgQ -bqc -aWR +iQS +cBC +xNe +iQS +iQS +eWA +iQS +iQS +iQS +iQS +iQS +qIq +byX +iQS bfw -bdW -bsQ +ooD +iNr bcj bbp bqr bqs bqs bqs -bAx -bCi -mLG +tHZ +wUT +kkh bqs -cWx +iEa vHX lWT -cWx -kzE -cdf -wPV -cWx -ltv -bNO -bNO -bRg -bNO -bNO -dcN +iEa +hmk +pFW +hPJ +iEa +kFQ +uFR +uFR +cDJ +uFR +uFR +iXK bPQ -cao -cbz +oxr +pXK ccV -cao -cbz +oxr +pXK ccV -uZm -uZm +dQQ +dQQ ccV -viU -cbz +yhP +pXK ccV -cao -cbz +oxr +pXK ccV -cnt -coi +jIs +qbH cpU -coN -coi +qNy +qbH cpY cpY cpY chj -ciq +nyw cjv cjw cjw -ckn -cpb +ltP +wcc cjw -cpa -cpa +dNg +dNg cjw cqA crl crP csq cio -crg -crH -crg -csP -crg -csN -csT +yce +tyW +yce +lan +yce +raW +poN cio cvp cvJ @@ -81368,29 +69512,29 @@ acH acH acH acH -aav -aaF -aaK -aaZ -abl -abv -aaK -abY -abx +nft +pew +hcO +kRg +myz +fSo +hcO +nWD +vtp acH -adt -adI +gOB +wCC acH -aeH -afo -afG -afG -afG -afG -agV +ddn +fmH +hyr +hyr +hyr +hyr +gEQ agL akJ -afm +eJg aed agL agL @@ -81401,113 +69545,113 @@ agJ akB akB apK -apL -aqv -aqv -aqv -aqv -aqv -aqv -aqv -aqv -aqv -asR -apI -apI -apI -avh -arc -apI -apI -ayl -aAJ +qeo +rmm +rmm +rmm +rmm +rmm +rmm +rmm +rmm +rmm +ooa +rOO +rOO +rOO +sEj +hua +rOO +rOO +mmA +pQs apK aDa -aEl +gYE aDa aDa apK -aKN +dhP aJd aJJ aJJ aJJ aOc fXQ -aKN +dhP aNq -aRz -aSM +cHF +mfW aNq aNq -aVD -aWO +fQW +hiK ban acL bbp -aWR -bdY -bfy -bdR -bfz -bgK -bhN -aWR -bjj -bku -bjj -bnC -aWR -bdU -bgK -bqd -aZn -bfy -bhM -aWR +iQS +tEY +sBZ +iHk +mFh +prG +sSq +iQS +ilh +gsd +ilh +uYg +iQS +xyL +prG +aGz +egT +sBZ +qGy +iQS bbp acL bqr -bwo -brl +sjb +niG bqs bqs -bCj -bDt +sSP +khs bqs -mVq +lwD vHX gAV tFH aab nPN ewb -keX +rFa chx bNK bRd bRi bSK bUe -dcN +iXK bPQ xVH -cbA +uEa ccV cch -cbA +uEa ccV xVH hEK ccV uXn -cbA +uEa ccV xVH -cbA +uEa ccV xVH -cbA +uEa ccV xVH cbZ @@ -81515,15 +69659,15 @@ ssB cpY cpY chk -cir +tUe cnI ckl cjw -ckn -ckn +ltP +ltP cjw -uTL -cpa +dfQ +dNg cjw cqA crm @@ -81538,7 +69682,7 @@ cio ctL cio cio -cvq +gqT csv cvY cwl @@ -81580,21 +69724,21 @@ acF acF acF acX -aay -aaF -aaK -aaZ -aaZ -aaK -aaK -abZ -acA -ade -adu -adu -ade -aeI -afp +uIM +pew +hcO +kRg +kRg +hcO +hcO +lLz +tNY +eBK +cUs +cUs +eBK +tAw +sMb ahC ahC ahC @@ -81602,7 +69746,7 @@ agn agW ahC ahV -afm +eJg aed agL agL @@ -81613,129 +69757,129 @@ agJ akB akB apK -apM -apI -apI -apI -apI -apI -apI -apI -apI -apI -apI -apI -apI -apI -avi -apL -apI -apI -avj -arx +xyf +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +tNL +qeo +rOO +rOO +uGA +gGl aDa -aDb -uSE -unw -unw +cPo +lqK +sUf +sUf nJw -cYf +xJw dUw aMj fXQ fXQ fXQ fXQ -aKB +pgF aNq -aRA -aSN +lDc +wZd aQn -aUB -aVE -aVE +uOJ +eOB +eOB ban aAO bbp -aWR -aWR -bfu -bdW -xtt -bgL -bfu -bgQ -bgQ -bls -biw -bgQ -bgQ -bfu -bgQ -hZp -aWR -bfu -aWR -aWR +iQS +iQS +tNU +ooD +tFP +nSW +tNU +qIq +qIq +tIo +iHf +qIq +qIq +tNU +qIq +hsQ +iQS +tNU +iQS +iQS bbp aAO bqr -bwp -brl -bzk +eua +niG +rTs brW -bCk -bDu +utb +vyW bqs -jmY +uzN vHX fZb vHX vHX fZb lWT -pwl -hyX +vHk +mOc eKr -kfj +heq bNQ bNQ bNQ -jNC +kjs bPQ -caq -cbB +rxV +rlo ccV -caq -cbB +rxV +rlo ccV -uZm -uZm +dQQ +dQQ ccV -dni -cbB +lpd +rlo ccV -caq -cbB +rxV +rlo ccV -caq -cbB +rxV +rlo ccV -caq -cbB +rxV +rlo ccV cpY cpY chl -cis +pHR cjx cjw cjw -ckn -ckn +ltP +ltP cjw -cor -ckn +iLk +ltP cjw cqA crn @@ -81750,7 +69894,7 @@ cty csv cuj cio -cvq +gqT csv cvY cwm @@ -81792,21 +69936,21 @@ acF acF acF acX -aap -aaF -aaK -abd -abn -aaK -aaK -abY -abx -aaH -aaH -aaH -aaH -ajZ -afq +gZE +pew +hcO +eXD +pJr +hcO +hcO +nWD +vtp +vyj +vyj +vyj +vyj +fgO +uJT agL agL agL @@ -81814,7 +69958,7 @@ agL agL agL ahW -aio +num agJ agJ agJ @@ -81822,93 +69966,93 @@ agJ agJ agJ agt -akC +eLQ akB apK -bNA -apI -apI -apI -aps -apI -apI -apI -apI -apI -apI -apI -apI -apI -avj -apI -apI -ayg -avj -arx -aBQ -aDb -wKt -aDb -aDb -qEB -aKN +nrH +rOO +rOO +rOO +rIu +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +rOO +uGA +rOO +rOO +jCZ +uGA +gGl +fhv +cPo +mJW +cPo +cPo +dNr +dhP aUD fXQ -aKN -aKN -aKN -aKN -aKN +dhP +dhP +dhP +dhP +dhP dcn -aRB -aSO -aQo -aUC +xdM +nIP +vQP +grl aPE -aOe +nxx ban aAO bbp -aWR -aWR -bfu -bdW -bfs -jeD -bdW -aWR -bgM -bgM -aWR -bjj -aWR -bpa -jeD -bfs -aWR -bfu -aWR -aWR +iQS +iQS +tNU +ooD +lYw +fYb +ooD +iQS +tOy +tOy +iQS +ilh +iQS +rQG +fYb +lYw +iQS +tNU +iQS +iQS bbp aAO bqr -bsK +foD brU -bzl -bAy -bCl -bDv +htL +mvC +kxq +pOi bqs -cWx -cWx -uaB -cOP -pvJ +iEa +iEa +fdk +suY +dJY oBG gAV -pIK -oxT -bNP +dOr +oOE +oyP jFQ bNQ bNQ @@ -81921,8 +70065,8 @@ aFA cht cht aFA -rjx -vwc +nTE +wrc aFA ftG vix @@ -81939,15 +70083,15 @@ cpU cpY cpY chm -cir +tUe cnI ckl cjw -cmf -ckn +nus +ltP ckk -cpb -cpa +wcc +dNg cjw cqA cro @@ -82004,29 +70148,29 @@ acF acF acF acX -aaq -aaF -aaP -aaK -aaK -aaK -aaK -abY -abx +leC +pew +oWz +hcO +hcO +hcO +hcO +nWD +vtp acH -adw -adw +hih +hih acH -aeF -afr -afI -afI -afI -afI -agZ +bcH +oWy +whE +whE +whE +whE +mJR agL ahW -afm +eJg aed agL agL @@ -82037,43 +70181,43 @@ agt akD akB bIl -apM -apI -aqY -apI -apw -apI -aqT -arv -arv -arv -arv -arv -arv -auK -avk -awv -arv -arv -azf -aAL -aBR -aDc -aEm -aDb -aDb -aDb -aKN +xyf +rOO +wFl +rOO +mDG +rOO +xgi +mEh +mEh +mEh +mEh +mEh +mEh +wlc +qNF +iMj +mEh +mEh +xnB +rub +haG +kiQ +fTX +cPo +cPo +cPo +dhP aUD fXQ -aKN +dhP aNq aNq aNq aNq aNq -aRC -aSP +xwO +lXO aNq aNq aNq @@ -82082,24 +70226,24 @@ ban aAO bbp bbp -aWR -bfu -bdT -aWR -aWR -bhO -aWR -aWR -aWR -aWR -aWR -aWR -bdW -aWR -aWR -bdT -pvG -aWR +iQS +tNU +qtl +iQS +iQS +kqB +iQS +iQS +iQS +iQS +iQS +iQS +ooD +iQS +iQS +qtl +iRR +iQS bbp bbp aAO @@ -82108,8 +70252,8 @@ bqs bqs bqs bqs -bCm -bDw +vbk +flJ bqs bqs bqs @@ -82125,41 +70269,41 @@ oip bNQ xiB bPQ -bVM -bWW -veb -bWW -caI -bWW -lmt -bWW -cgt -cgt -chz -ciI +ptU +swD +nrx +swD +dhK +swD +uvk +swD +fsM +fsM +tHL +sth vix -ckJ -clr -cmd -cmN +wHh +hjX +dup +cRF vix -cpV -cqO +rNg +jWl cpr cpY rSp cpY cpY chn -cip +wHC cnI ckk ckk -ckn -cmT +ltP +tJZ cjw -ckn -cpa +ltP +dNg cjw cio cio @@ -82179,7 +70323,7 @@ cvM cwa cjw cwz -cwY +tyv cxg cxl cxx @@ -82216,30 +70360,30 @@ afY acF acF aal -aaz -aaH -aaF -aaK -aaK -aaK -aaK -abY -abx +kbz +vyj +pew +hcO +hcO +hcO +hcO +nWD +vtp acH acH acH acH -aeT -afs +lEC +egD agJ agJ agJ agJ -ahc +kNP ahC akM -afm -aiC +eJg +hGN agL ahA ahA @@ -82249,83 +70393,83 @@ agt akE alv apu -aCY -aqw -aqZ -aqw -aqZ -aqw -aqU -arw -arY -aso -asS -asS -aud -avj -asU -asU -axj -asU -azg -aAN +eDo +cJJ +nQH +cJJ +nQH +cJJ +pUB +dKX +xaw +wAo +jKa +jKa +hbe +uGA +hmD +hmD +kxh +hmD +ity +nNS aBS -aDd -aEn -aFP -aGZ +mJI +tPD +nOi +szd aBU -aKN -vRc -aKN -aKN +dhP +mSE +dhP +dhP aNq -aOd +lWz aPE -aQZ +dGx aQn -aRB -aSO +xdM +nIP aQn -aUE -aVE -aWP +ojb +eOB +lZd ban acL acL bbp bbp -bcd -bgQ -bgQ -bgQ -bfu +glB +qIq +qIq +qIq +tNU bfw bfw bfx bfx bfw bfw -bfu -bgQ -bgQ -bgQ -bcd +tNU +qIq +qIq +qIq +glB bbp bbp acL acL bqr -brT -bxH -bzm +nFO +hxW +nva brW -bCl -bFA +kxq +mkT brW -bFz -brl -brT +hto +niG +nFO bqr aAO aAO @@ -82333,32 +70477,32 @@ aAO aAO bOz bNH -gvb -rhV +hji +qUR bNH bNH -mOu -bWX -bWX -bWX -caJ -bWX -bWX -ceD -bWX -bRk -chA -ciJ +iaD +tmB +tmB +tmB +wae +tmB +tmB +lom +tmB +gDM +uQA +hvV cjQ -ckK -cls +iNd +wqv cmh -cmO +qBW vix -cpW -cqO -cqO -cpJ +dHp +jWl +jWl +fOk cpY cpY cpY @@ -82383,15 +70527,15 @@ ckm ckm csv cio -csN -cul +raW +vJE cio cvn cvH cwb cwp cwy -cwY +tyv cxg cxl cxx @@ -82428,29 +70572,29 @@ acF acF acF aam -aas -aaH -aaF -abe -abo -abu -abu -aca -acx +wGQ +vyj +pew +rBI +prz +hkp +hkp +unX +qQS agt agM -aha -aec -aeF -nYP -aec -aha +iSk +paZ +bcH +gxY +paZ +iSk agM agJ -ahd +gUs agL ahW -afm +eJg aed agL agL @@ -82467,105 +70611,105 @@ apP apP apP apP -aqV -arx +qmu +gGl apK apK apK apK apK -auM +iWj apK apK apK apK -azh +eHs apK apK -aDe -aEo -aDb -ycb +nKa +eSO +cPo +mcL aHW aKU aKU aKU aKU aLt -aOe -aPF -aRa -aQo -aRE -aSS -aQo -aUC +nxx +nrq +lkP +vQP +izh +nXa +vQP +grl aVF -aOe +nxx ban aAO aAO aAO bbp bbp -aWR -aWR -aWR -bdY -biy -aZn -blt -bdR -aZn -biy -bhM -aWR -aWR -aWR +iQS +iQS +iQS +tEY +cJL +egT +saJ +iHk +egT +cJL +qGy +iQS +iQS +iQS bbp bbp aAO aAO aAO bqr -bsK +foD bxI -bzl -bAy -bCm -bDz -bAy -bFB -bGH -bsK +htL +mvC +vbk +hVE +mvC +mOq +pjQ +foD bqr aAO aAO aAO aAO bMv -cgv -gOT -bRk -bSM -bUf -bVN -bWY -bWY -bWY -caK -bWY -bWY -bWY -bWY -cgu -chB -ciK +ijd +jRl +gDM +fFs +ufG +wgd +xzl +xzl +xzl +uHD +xzl +xzl +xzl +xzl +rab +tks +fis cjQ -ckL -clt +tWF +vfV cmi -cmP +wyF oEr cqh cqh @@ -82595,15 +70739,15 @@ crU csh csZ cio -ctO -cum +oiz +hXG cio cvu cvN cvS cwg cwF -cwY +tyv cxg cxl cxx @@ -82640,29 +70784,29 @@ acF acF acF acX -aaA -aaF -aaO -abf -abp -abw -abq -abq -aby +uGi +pew +lsK +rhL +mcb +pPf +cEy +cEy +fHF agt agQ ahb aed -aeF -nYP +bcH +gxY aed ahb agL agJ -aeF +bcH agL ahW -afm +eJg aed agL ahA @@ -82673,31 +70817,31 @@ agt akL aly apv -amo -anj -anK -aoB -apy +mFO +hne +vkF +fLZ +pKz apP -ara -arx +hkJ +gGl apK -asp -asT -att -att -avj -avn +wrz +fbv +xrg +mtm +uGA +qiO apK -axk -aqv -avi -aAP +dLy +rmm +tNL +ksE apK -aDe -aEo -aDb -aHa +nKa +eSO +cPo +pwQ aHW aAO aAO @@ -82708,8 +70852,8 @@ aNq aNq aNq aNq -aRB -aSO +xdM +nIP aNq aNq aNq @@ -82721,18 +70865,18 @@ aAO aAO bbp bbp -aWR -aWR -aWR -aWR -aWR -aWR -bdW -aWR -aWR -aWR -aWR -aWR +iQS +iQS +iQS +iQS +iQS +iQS +ooD +iQS +iQS +iQS +iQS +iQS bbp bbp aAO @@ -82744,8 +70888,8 @@ bqs bqs bqs bqs -bCp -bDA +xCy +tUL bqs bqs bqs @@ -82756,47 +70900,47 @@ aAO aAO aAO bMv -kJw -lBC -bRl -bSN -bUg -bPG -bRl -bYb -bRl -caL -bRl -bRl -bRl -bRl -bRl -chC -ciL +oyV +qEe +hnU +noT +pBa +kLI +hnU +oJc +hnU +pNi +hnU +hnU +hnU +hnU +hnU +vNH +xGk vix -ckM -clu -cmj -cmQ +ykI +ttT +mgI +msx oEr aAO aAO aAO aAO cqh -cqT +out cpY ksY cin csl -ckn -ckn -cmg -cmS -ckn -ckn -coq -coq +ltP +ltP +mwi +wyq +ltP +ltP +eKG +eKG cqF cio crV @@ -82807,10 +70951,10 @@ ckm csi cta cio -ctP -cuw +mpJ +cTU cio -cvv +qrU cvO cwc cwc @@ -82852,29 +70996,29 @@ acF acF acF acX -aap -aaF -aaK -aaK -aaK -abx -aaH -aaH -aaH +gZE +pew +hcO +hcO +hcO +vtp +vyj +vyj +vyj agt agJ agJ agJ -aeF -nYP +bcH +gxY agJ agJ agJ agJ -ahe -ahE -aia -ahE +tBT +jDA +hri +jDA agt agt agt @@ -82885,47 +71029,47 @@ ajY anV alz apv -amp -ank -anL -aoC -apz +kga +cHl +kVo +fkv +qzy apP -ara -arx +hkJ +gGl apK -asq -apL -atu -aue -auN -avn +dSu +qeo +son +ouG +pWa +qiO apK -axl -ayh -awj -aAQ +etG +dfa +ufb +wwE apK -aDf -aEo -aDb -aHa +uUG +eSO +cPo +pwQ aHW aAO aAO aAO aAO ban -aOd +lWz aPE -aQZ +dGx aQn -aRB -aSO +xdM +nIP aQn -aUE -aVE -aOd +ojb +eOB +lWz ban aAO aAO @@ -82937,10 +71081,10 @@ bbp bbp bbp bcj -bck -bck -bmz -bck +rRH +rRH +upM +rRH bcj bbp bbp @@ -82952,16 +71096,16 @@ aAO aAO aAO bqr -brT -brl -bzm +nFO +niG +nva brW -bCl -bFA +kxq +mkT brW -bFz -brl -brT +hto +niG +nFO bqr acL acL @@ -82982,13 +71126,13 @@ bPZ bPZ bNU cht -cgv -chD +ijd +wqm cht vix cjQ cjQ -cml +hdr cly oEr cpX @@ -82996,7 +71140,7 @@ cpX cpX cpX cqh -cqT +out cpY pDH jSu @@ -83019,8 +71163,8 @@ csl csl csl csl -csT -cul +poN +vJE csl csl csl @@ -83064,28 +71208,28 @@ acF acF acF acX -aaB -aaI -aaQ -abg -abq -aby -abC -abC -abC +lVO +vIw +vZg +ntm +cEy +fHF +nRR +nRR +nRR agt agM -aha -aec -aeF -nYP -aec -aha +iSk +paZ +bcH +gxY +paZ +iSk agM agt agt -ajZ -aib +fgO +qzZ agt alf aka @@ -83097,47 +71241,47 @@ aka alx alC apv -amq -anl -anM -aoD -apD -aqz -arb -ary +peT +wQd +hUZ +vQi +pPq +xSp +vzU +xka apK -asr -apM -atv -auf -apI -avn +mHe +xyf +poc +eJl +rOO +qiO apK -axm -ayl -azk -aAR +wuV +mmA +xiH +hNX apK -aDe -aEo -aDb -aHa +nKa +eSO +cPo +pwQ aHW aAO aAO aAO aAO ban -aOe -aPF -aRa -aQo -aRB -aST -aQo -aUC +nxx +nrq +lkP +vQP +xdM +tpW +vQP +grl aVF -aOe +nxx ban aAO aAO @@ -83149,10 +71293,10 @@ aAO aAO acL bbp -aWR -bjj -bdW -bjj +iQS +ilh +ooD +ilh bbp acL aAO @@ -83164,16 +71308,16 @@ aAO aAO aAO bqr -bsK +foD bxI -bzl -bAy -bCl -bFA -bAy -bFB -bGH -bsK +htL +mvC +kxq +mkT +mvC +mOq +pjQ +foD bqr aAO aAO @@ -83194,21 +71338,21 @@ bPI bPI bNU cht -cgw -chE -bRk -cjS -ckN -cMW -cmm -wEQ -car -mbv -llD -llD -uhE -hdc -cqT +imP +cNg +gDM +hWf +mvB +rdz +iVf +pFj +hDB +mfK +vIc +vIc +vqO +uBY +out ctq cpY cpY @@ -83289,15 +71433,15 @@ agt agL adJ aed -aeU -aft +jDQ +uUH aed ahb agL acg ahf -ahF -agq +veM +pbi aip alf aiL @@ -83309,31 +71453,31 @@ akb akN alB apv -amr -anm -anN -aoE -apE +rsq +kXb +cSw +qRD +tAx apP -apM -awj +xyf +ufb apK -ass -asR -apI -apI -atd -arx -aww -apM -auf -azl -aAS +qmH +ooa +rOO +rOO +jCW +gGl +xdT +xyf +eJl +mXe +qzd apK -aDe -aEo -aDb -aHa +nKa +eSO +cPo +pwQ aHW acL acL @@ -83344,8 +71488,8 @@ aNq aNq aNq aNq -aRB -aSO +xdM +nIP aNq aNq aNq @@ -83361,10 +71505,10 @@ ban ban ban ban -bkh -blu -bmI -bnD +oqj +uRR +qaN +ydk bqr bqr bqr @@ -83380,8 +71524,8 @@ bqs bqs bqs bqs -bCq -bFA +iHj +mkT bqs bqs bqs @@ -83405,25 +71549,25 @@ bSO bPI bSO bPZ -bPF -cgx +enO +uqh chF ciM -cjT -ckO -ckO -cmn -uOF -teg -fEZ -rrG -cqP -qIg -vDC -eKD +iCZ +rCj +rCj +dJr +wIw +lXy +tSB +xNl +hqE +jKR +dPm +xYy cpY cpY -cqO +jWl cpY cpY cpY @@ -83437,17 +71581,17 @@ ctq cpY cpY cpY -crB -coL -coL +cCt +jnt +jnt cpY cpY cpY cpY cpY -coL -coL -cwT +jnt +jnt +lMi cqh cqh aAO @@ -83494,22 +71638,22 @@ aaS acL acL aeZ -abD -acb -acB +nOW +qbt +jwI agt agt agt agt agt -afu +bHi agt agt acg acg ahg -ahG -aid +ndf +jBL aiq alf aiM @@ -83521,83 +71665,83 @@ alx aiM alC apv -amC -ann -anO -aoF -apF +rOf +rkr +tGV +uML +dQo apP -arc -avh +hua +sEj apK -ast -asU -atw -aug -aug -aug +kxQ +hmD +tWg +qee +qee +qee apK -axn -aud -apI -aAT +iOz +hbe +rOO +kWA apK -aDg -aEo -aDb -aFS +qlT +eSO +cPo +ojX aHW aAO aAO aAO aAO ban -aOd +lWz aPE -aQZ +dGx aQn -aRB -aSU -aTS +xdM +yet +txH aUF aVG aVG aNq -aOe -aWP +nxx +lZd aNq -aOe -aOd +nxx +lWz aNq -aVK -aOd -aVE +jsb +lWz +eOB aNq -aWR -aWR -bmJ -bnF +iQS +iQS +uaR +gbZ bqs -brk -brT -bsK +hnT +nFO +foD bqs -brT -bsK +nFO +foD bqs -brT -bsK +nFO +foD bqs -bwq -bxJ -bxJ -bxJ -bCr -bFA +fiV +mIN +mIN +mIN +wmM +mkT brW -bFz -brl -brT +hto +niG +nFO bqr aAO aAO @@ -83617,11 +71761,11 @@ bSO bPI bSO bPZ -cfk -cgy -chG -ciN -cjU +cBx +vbf +eye +xKs +pIf cht cht cht @@ -83637,7 +71781,7 @@ cpY cpY cpY cpY -cqO +jWl cpY cpY cpY @@ -83648,8 +71792,8 @@ cpY cpY cpY cpY -cra -crz +ivM +dZS cqh cqh cqh @@ -83706,22 +71850,22 @@ aAO aAO aAO aeZ -abE -acc -acC -adg -adg -adg -adg -aeV -afv -afJ -adg -aga +opY +nsS +qEM +odm +odm +odm +odm +ikR +gra +lzb +odm +eKa acg ahh -ahF -agq +veM +pbi aip alf aiM @@ -83736,7 +71880,7 @@ apv apv apv apv -aoG +mPY apv apv vfK @@ -83755,8 +71899,8 @@ azm apt apt aIE -aEo -aFQ +eSO +jfV aBU jdx aAO @@ -83764,52 +71908,52 @@ aAO aAO aAO ban -aOe -aPF -aRa -aQo -aRB -aSW -aTU +nxx +nrq +lkP +vQP +xdM +fcU +xCh aNq aNq aNq aNq aVJ -aVE +eOB aNq aVJ -aVE +eOB aNq -aVD +fQW aPE -bhP +hmv aNq -bjU +gJQ aWS bmw -aWR +iQS bqs -brl +niG brU -brl +niG bqs btS -brl +niG bqs btS -brl +niG bqs -bwr -brl -bxL -bsO -bCs -bxQ -bAy -bFB -bGH -bsK +psl +niG +mmv +iRe +srH +jmw +mvC +mOq +pjQ +foD bqr acL acL @@ -83817,7 +71961,7 @@ acL acL bOD bPZ -bPJ +gzd bPI bSO bPI @@ -83832,36 +71976,36 @@ bNU cht cht cht -ciO -fkk +oPY +rcH cmx -clv -cmo -cmR +vdi +rbR +gtH cpp aAO aAO aAO aAO cqh -cqT -crB +out +cCt cpY cpY cpY cpY cpY -coL -coL -coL -coL -coL -coL -coL -coL -coL -coL -cwT +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +lMi cqh acL acL @@ -83918,22 +72062,22 @@ aAO aAO aAO aeZ -abF -acd -acD -acV -acV -acV -acV -acV -afA -acV -afP -agb +phj +grj +iZK +nYW +nYW +nYW +nYW +nYW +eYK +nYW +sxc +vvj acg aiI -ahH -aie +sfJ +rtq aiI alf aiO @@ -83947,9 +72091,9 @@ alC ama amD alf -arf -aoJ -apG +fgG +fRA +xsz atf atJ arC @@ -83962,14 +72106,14 @@ arZ arZ arZ atf -ayo -azn -aAU -aBT -aDh -aEo -aDb -aFS +mbb +dLw +jpw +dey +pUi +eSO +cPo +ojX aKa aAO aAO @@ -83980,44 +72124,44 @@ aNq aNq aNq aNq -aRF -aSX -aTU +lZL +npL +xCh aUF aVG aVG aNq -aYJ -aZs +hjK +gVx aNq -aYJ -aZs +hjK +gVx aNq -aYJ -aYJ +hjK +hjK aNq aNq -bki +nZb aWS bmw -aWR +iQS bqs bqs -brV -bsL +jjH +rgl bqs -btT -bsL +rjO +rgl bqs -btT -bsL +rjO +rgl bqs -bws -bxL -bxQ +bKz +mmv +jmw bqs -bCt -bzt +fSx +mdM bqs bqs bqs @@ -84043,21 +72187,21 @@ bSO bPZ cfl cfl -chI -bVN -fkk -ckP -cni +mxQ +wgd +rcH +xXc +hqL cod -bWY +xzl cpp aAO aAO aAO aAO cqh -cqX -crz +fvq +dZS cpU cpU xxa @@ -84130,25 +72274,25 @@ aAO aAO aAO aeZ -abG -ace -acG -adh -adx -adN -adN -adN -afx -acV -afQ -abO +pZQ +omT +vEt +tBn +uRj +vti +vti +vti +sSD +nYW +dwe +pxZ acg -ahi -air -aif -air +ebk +xvh +eiS +xvh aiD -aiP +sbr alx alx alx @@ -84159,11 +72303,11 @@ alC alx amE alf -arf -arN -asy +fgG +fzo +nso atf -atI +vAp atJ atJ atJ @@ -84174,66 +72318,66 @@ atJ atJ awx atf -ayp -azo -aAV +sKu +meB +izx aBU -aDd -aEq -aDb -aDb +mJI +jkn +cPo +cPo aKa aAO aAO aAO aAO ban -aOd +lWz aPE -aQZ +dGx aQn -aRB -aSX -aTU +xdM +npL +xCh aNq aNq aNq aNq -aVH +vbM aQn aNq -aVH +vbM aQn aNq -aVH +vbM aQn aNq -biz -hQm +mDV +xfy uOB xCG -hQm -bon +xfy +tWZ bqs brW -bzs +sEh bqs brW -bzs +sEh bqs brW -bzs +sEh bqs -bws -bFA +bKz +mkT bqs bqs -kGG -foY -fxt -bDC -bDC -bHF +thC +kxk +wZL +wwz +wwz +pss bqr aAO aAO @@ -84256,30 +72400,30 @@ bNU cht cht cht -ciP -fkk +mlG +rcH cmx -clw -bWY -cmU +sAG +xzl +oIF cpp cqh cqh cqh cqh cqh -vsk -crz +pGX +dZS cpU -cpV -cvG +rNg +ggW cpU -cpV -cvG +rNg +ggW cpU -cwu -cvG -cqO +sSA +ggW +jWl cqh aAO aAO @@ -84343,22 +72487,22 @@ aAO acL aeZ aeZ -acf -acf +iuj +iuj acg -acd -acV -aee -acV -afA -acV -afQ -abO +grj +nYW +lwH +nYW +eYK +nYW +dwe +pxZ acg -ahj +fDu agw akQ -ahF +veM aiD aiQ aiV @@ -84371,9 +72515,9 @@ alC alx amF alf -arf -arN -asy +fgG +fzo +nso atf gAa atJ @@ -84386,66 +72530,66 @@ atJ atJ atJ atf -ayq -azp -aAW +oeJ +nGB +kRz aBU -aDi -aEr -aDb -lyJ +qbf +nZm +cPo +qVe aKa aAO aAO aAO aAO ban -aOe -aPF -aRa -aQo -aRB -aSZ -aTV -aUG -aUG -aUG -aUG -aUG -aUG -aZX -baB -aUG -bdZ -aUG -bgO -bhQ -biA -aRK +nxx +nrq +lkP +vQP +xdM +cnH +fcJ +hSW +hSW +hSW +hSW +hSW +hSW +diB +qyr +hSW +mjv +hSW +tEQ +qHy +evJ +jma lmA bmK -wJl -boo -brm -brX -bsN -bqD -bsN -bqD -bsR -bsN -bsN -bsN -bwt -bxN -bzo -bAB -bCw -bDB -fNt -bFC -bAC -bEs +uFu +eoE +uMK +fPX +gTj +gGy +gTj +gGy +sDW +gTj +gTj +gTj +yhL +qJO +ifc +pYG +vKa +iLx +uRv +dnD +pWm +eVn bqr aAO aAO @@ -84467,31 +72611,31 @@ bPI bPZ cfl cfl -chI -bVN -fkk +mxQ +wgd +rcH cht cht cht cht aFA -cpV -cqO +rNg +jWl cpr -cpI -cqo -vsk -crz +kYn +fho +pGX +dZS cpU csG -cqO +jWl cpU cok -cxr +snE cpU cok -cqO -cqO +jWl +jWl cqh aAO aAO @@ -84554,23 +72698,23 @@ aAO aAO abr abz -abH -abH -acI -adi -acd -adK -aef -acV -afA -acV -afQ -abP +nZD +nZD +rRQ +dRb +grj +prU +nsP +nYW +eYK +nYW +dwe +oQe acg -ahk +vwi agw akQ -ahF +veM aiD aiD alx @@ -84583,9 +72727,9 @@ alB alx amG alf -anP -arN -asy +iJa +fzo +nso atf atJ arE @@ -84598,14 +72742,14 @@ asa asa asa atf -ayr -azq -aAX +mHk +lUN +gnA aBU -aDg -aEs -aFS -aFS +qlT +dRW +ojX +ojX aKa acL acL @@ -84616,48 +72760,48 @@ aNq aNq aNq aNq -aRG -aTa -aTW -aUH -aUH -aUH -aUH -aUH -aUH -aZY -baC -aUH -bea -aUH -bgP -aRz -biB -hQm -hQm -aPL -hQm -jvk -brn -brY -bsO -btq -bsO -buU -bsO -bsO -bsO -bsO -bsO -bxQ -bzt -bAC -bCx +kJm +chL +dTE +pgf +pgf +pgf +pgf +pgf +pgf +dWu +xHj +pgf +dPV +pgf +oTS +cHF +dQj +xfy +xfy +ekL +xfy +utl +jUS +dLh +iRe +rgv +iRe +mWb +iRe +iRe +iRe +iRe +iRe +jmw +mdM +pWm +nRS bqs -wiC -bAC -bAC -bEs +vsg +pWm +pWm +eVn bqr aAO aAO @@ -84680,30 +72824,30 @@ bNU cht cht cht -bVN -fkk +wgd +rcH cmx -clv -cmo -cmR +vdi +rbR +gtH aFA -cpW -cqO -cqO -cpJ +dHp +jWl +jWl +fOk cqd -vsk -crz +pGX +dZS cpU -csH -ctu +see +nJY cpU -csH -ctu +see +nJY cpU -csH -ctu -csH +see +nJY +see cqh aAO aAO @@ -84766,24 +72910,24 @@ aAO aAO acL abA -abI -abI -abI -adi -acd -adL -aeg -aeW -afA -acV -afR +eul +eul +eul +dRb +grj +sYW +wCn +rpO +eYK +nYW +fsG acg acg -ahl +wvn agw akQ -ahF -bDg +veM +xqt aiD aiD ajh @@ -84795,9 +72939,9 @@ alO aiD aiD alf -arh -arO -asz +hnl +rON +gJg atf pib arF @@ -84815,30 +72959,30 @@ azr aAv aAv aDj -aEt -aFT +piO +xed awf aKd aAO aAO aAO lpo -wNk -aMa -aNA +rtA +xev +oHr aQp aQp -aLu -aTd -aTX +xZm +qwB +cEC aQp -aVH +vbM aQn aNq -aVH +vbM aQn aNq -aVH +vbM aQn aNq aNq @@ -84846,8 +72990,8 @@ aNq aNq aNq lzy -hQm -ewO +xfy +oVJ lzy bqs bqs @@ -84855,21 +72999,21 @@ bqs bqs bqs brW -bzs +sEh bqs brW -bzs +sEh bqs brW -bzs +sEh bqs -bAD -bCy -bDC -ldR -bCB -bAC -bEs +xLi +btB +wwz +hrv +rzH +pWm +eVn bqr acL acL @@ -84889,31 +73033,31 @@ bSO bPI bSO bPZ -cfm -cgz +pdZ +sCq cht -ciQ -cjU -ckP -cni +dZX +pIf +xXc +hqL cmp -bWY +xzl aFA cpU cpU cpU cpU cpU -vsk -crz +pGX +dZS cpU -coM +kPI cqd cpU -coM +kPI cqd cpU -coM +kPI cqd cqh cqh @@ -84980,108 +73124,108 @@ aAO aeZ aeZ acg -acJ +vMj acg -acd -adM -aeh -acV -afA -acV -afS +grj +qEr +iDZ +nYW +eYK +nYW +hsJ acg -ago -ahl +mgZ +wvn agw akQ -ahF -aiE +veM +eSn aiT -aiW -aji -ajo -aji -aji -akO -alP -amb -amH -ano -ari -arN -asA -atg -atL -aul -atL -atL -asV +oSS +kFm +kwu +kFm +kFm +fqI +tFQ +iXz +pXt +eyr +oVC +fzo +szb +vNu +yea +gHe +yea +yea +oTp awf -auh -auP -atL -atL -atg -ays -aul -aAY +dVL +rBp +yea +yea +vNu +haF +gHe +tmj aAv -aDk -aEt -asb -aHc +jcW +piO +dVd +hJh aKd aAO aAO aAO lpo -lGA -aMb -aNB -aPa +pJT +pCN +oAm +xIy aQq -aLu -aTd -aTX +xZm +qwB +cEC aQp -aVI -aWV +xoF +pWs aNq -aVI -aWV +xoF +pWs aNq -aVI -aWV +xoF +pWs aNq -kog -aVR -bhR -kog -hQm -bnE -aPL -hQm -bop -kog -aVR -kog +ddS +fGG +uWt +ddS +xfy +oez +ekL +xfy +dFz +ddS +fGG +ddS bqs -btW -buV +xGT +wQC bqs -btW -buV +xGT +wQC bqs -btW -buV +xGT +wQC bqs -bAD -bCz -bAC -wvp +xLi +uQV +pWm +rAR bqs -bAD -bEs +xLi +eVn bqr aAO aAO @@ -85101,33 +73245,33 @@ bSO bPI bSO bPZ -cfn -cgA -chJ -bVN -fkk +uOD +iuf +oDY +wgd +rcH cmx -clw -bWY -cmU +sAG +xzl +oIF aFA -cqb -coK -cpt -coK -coK -cra -mxM -coK -coK -coK -coK -coK -coK -coK -coK -coK -cwv +fEs +kel +wNI +kel +kel +ivM +pAg +kel +kel +kel +kel +kel +kel +kel +kel +kel +srq cqh aAO aAO @@ -85190,82 +73334,82 @@ aAO aAO aAO aeZ -abJ -ach -acT -adj -ady -adN -adN -aeX -afy -adN -afT -agc -agp -ahm +ntV +qPs +ixY +mrV +rYJ +vti +vti +taA +pnt +vti +rbc +mid +tDD +dbf ahK aii -ais -aiF +ida +ePl aiS -aiX +iAk ajj ajj ajj ahK -akP -alQ -ami -amI -anp -arj -arP -aAz -ath -aAz -aum -aAz -asu -asW -atx -auj -auQ -auQ -auQ -axo -ayt -ayt -aAZ +lZI +ptz +ktp +yfu +rtu +uWv +xnK +oAg +yem +oAg +cTj +oAg +sMR +lJU +xhD +aXh +hPt +hPt +hPt +rhH +uDO +uDO +lxc aAv -aDl -aEu -aFU -aHd +rlp +iSW +nmn +dwO aKd aAO aAO aAO lpo -ydW -aMc -aNC -aPb -aQr -aRI -aTd -aTY +lVR +xkh +tbk +lBk +ygT +vSH +qwB +emL aQp aVJ -aVE +eOB aNq aVJ -aVE +eOB aNq aVJ -aVE +eOB aNq -kog +ddS uOB uOB uOB @@ -85276,24 +73420,24 @@ uOB uOB uOB uOB -kog +ddS bqs btS -brl +niG bqs btS -brl +niG bqs btS -brl +niG bqs -bAD -bAC -bAC -ldR -bDC -bAC -bEs +xLi +pWm +pWm +hrv +wwz +pWm +eVn bqr aAO aAO @@ -85313,33 +73457,33 @@ bSO bPI bSO bPZ -cfn -cgA -chJ -ciO -fkk +uOD +iuf +oDY +oPY +rcH cht cht cht cht aFA -cqc -coL -coL -coL -cqq -coL -coL -coL -coL -coL -coL -coL -coL -coL -coL -coL -cwT +lqo +jnt +jnt +jnt +iwh +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +jnt +lMi cqh aAO aAO @@ -85402,26 +73546,26 @@ aAO aAO aAO aeZ -abK -acd -acV -afA -acV -acV -acV -aeY -afA -acV -afU -agd -agq +iTu +grj +nYW +eYK +nYW +nYW +nYW +bpR +eYK +nYW +wUn +hzS +pbi agw ahL agw agv -ahF +veM agw -ahl +wvn agw agw ajH @@ -85429,55 +73573,55 @@ akQ akQ agw amj -amJ -lDd -ark -arQ -arQ -ati -arQ -arQ -arQ -asv -asX -asb -auk -arQ -avp -awy -axp -ayu -arQ -aBa +ryJ +bPE +eaT +vzK +vzK +hfX +vzK +vzK +vzK +pjH +kjV +dVd +oHT +vzK +jef +jRS +sqz +lOm +vzK +lNO aAv -aDm -aEt -asb -aHe +rMP +piO +dVd +qNC aKd aAO aAO aAO lpo -oLL -aMg -aND -aPc +gjx +tEq +kdF +wgl aQp -cYR -aTe -aTZ +dyD +fvb +vhl aQp -aVK -aWW +jsb +cTA aNq -aOe -aZx +nxx +ghL aNq -aOe -aZx +nxx +ghL aNq -shN +oox uOB paf lmA @@ -85488,24 +73632,24 @@ wWk wWk cZY uOB -kog +ddS bqs -btX -bsK +nBA +foD bqs -btX -bsK +nBA +foD bqs -btX -bsK +nBA +foD bqs -bAF -bCB -bCB -bEt -bCB -bCB -bCB +iRG +rzH +rzH +dRo +rzH +rzH +rzH bqr aAO aAO @@ -85525,33 +73669,33 @@ bPI bPI bPI bPZ -cfo -cfo +exb +exb cht -bVN -fkk +wgd +rcH cmx -clv -cmo -cmR +vdi +rbR +gtH aFA cqd -coM +kPI cpU cqd -coM +kPI crc cqd -coM +kPI cpU cqd -coM +kPI cpU cqd -coM +kPI cpU cqd -coM +kPI cqh aAO aAO @@ -85614,57 +73758,57 @@ aAO aAO aAO aeZ -abL -acj -acV -afA -adz -acV -acV -acV -afA -afL -afV +ltf +wGB +nYW +eYK +eNF +nYW +nYW +nYW +eYK +lzi +wSf age -agr -ahn -ahn -aij -ahn -aiH +cNk +oda +oda +kAV +oda +mHY aiT -aiY -ahn -ahn -ahn -ake -akR -ahn -bMp -amK -anq -arl -arR -asC -atj -atN -arR -arR -asw -asY +iMi +oda +oda +oda +pbj +eia +oda +gjS +idI +tOH +tMJ +mJU +xFA +trO +mde +mJU +mJU +rUP +qud awf -auk -arQ -avp -awy -awy -ayu -arQ -aBb +oHT +vzK +jef +jRS +jRS +lOm +vzK +eus aAv avB -aEt -aFX +piO +huQ awf aKd cnB @@ -85689,18 +73833,18 @@ aNq aNq aNq aNq -kog +ddS uOB mQp -kog -kog -kog -kog -kog -kog +ddS +ddS +ddS +ddS +ddS +ddS xCG uOB -kog +ddS bqs bqs bqs @@ -85740,30 +73884,30 @@ bOf bRC bRC bOf -ciR -fkk -ckP -cni +oIC +rcH +xXc +hqL cod -bWY +xzl aFA -coi -coN +qbH +qNy cpU -coi -coN +qbH +qNy cpU -coi -coN +qbH +qNy cpU -coi -coN +qbH +qNy cpU -coi -coN +qbH +qNy cpU -coi -coN +qbH +qNy cqh aAO aAO @@ -85826,16 +73970,16 @@ aAO aAO aAO aeZ -abM -ack -acW -gla -acW -adk -aei -afa -afB -afM +iAS +cEl +vuM +eHe +vuM +eCu +ctv +ust +uOt +sJJ acg aiI ags @@ -85849,7 +73993,7 @@ aiI ajk ajp ajp -akf +jTk akS alR ajk @@ -85858,27 +74002,27 @@ aqd anQ anQ anv -aqA +pYv anv anv -asb -asx +dVd +vyi awf avB -atD -arQ -avp -awz -ljn -ayu -arQ -aBc -aBV -aBV -aEw -aFY -aJj -jbq +gAD +vzK +jef +etN +cxR +lOm +vzK +oIS +pDX +pDX +kiG +uql +eRG +kfx cnB aAO aAO @@ -85888,45 +74032,45 @@ aAO aAO aAO yhG -kog -kog -aVR -aXa -kog -kog -kog -kog -kog -kog -aXa -kog -kog -kog +ddS +ddS +fGG +uHI +ddS +ddS +ddS +ddS +ddS +ddS +uHI +ddS +ddS +ddS uOB mQp -kog +ddS yhG yhG yhG yhG -kog +ddS xCG uOB -kog -aXa -kog -kog -kog -kog -kog -kog -kog -bxR -aXa -kog -kog -bDD -wZy +ddS +uHI +ddS +ddS +ddS +ddS +ddS +ddS +ddS +dAn +uHI +ddS +ddS +cBE +sNn yhG aAO aAO @@ -85936,10 +74080,10 @@ aAO aAO aAO bOG -bOa -bOa -bOa -bOa +gaV +gaV +gaV +gaV bUl bVO bXb @@ -85952,30 +74096,30 @@ ceE cfp cgB bRC -bVN -fkk +wgd +rcH cmx -clw -bWY -cmU +sAG +xzl +oIF aFA cok -cqO +jWl cpU cok -cqO +jWl crc cok -csd +eQE cpU csG -cqO +jWl cpU cok -cqO +jWl cpU cok -cqO +jWl cqh aAO aAO @@ -86049,48 +74193,48 @@ afb afC abN acg -agf +sIR agu agw -ahH -ahH -ait +sfJ +sfJ +koL agw agw -aiZ +fXj ajk -ajq -ajI -akg -akT -alS +kvb +xNR +xba +gJe +sOZ ajk -amL +hsv anr anR aoK -apQ -aqB -ard +oDL +rOn +tlB anv -asc -asD -asZ +laC +mbY +mfz awf -auk -arQ -avp -ljn -ljn -ayu -arQ -ati -arQ -aDn -aEx -arQ -aHf -asb +oHT +vzK +jef +cxR +cxR +lOm +vzK +hfX +vzK +idR +tPv +vzK +elf +dVd qXa aAO aAO @@ -86100,7 +74244,7 @@ aAO aAO aAO yhG -kog +ddS uOB uOB xCG @@ -86116,12 +74260,12 @@ uOB uOB uOB mQp -kog +ddS yhG aAO aAO yhG -kog +ddS xCG uOB uOB @@ -86164,30 +74308,30 @@ ceF cfq cfp bRC -ciS -fkk +pAp +rcH cht cht cht cht aFA -col -cpV +nth +rNg cpU -col -cpV +nth +rNg cpU -col -cpV +nth +rNg cpU -col -cpV +nth +rNg cpU -col -cpV +nth +rNg cpU -col -cpV +nth +rNg cqh aAO aAO @@ -86250,18 +74394,18 @@ aAO aAO aAO aeZ -abO +pxZ acm -abO +pxZ acm -abO +pxZ acm acm -abP +oQe acm -abO +pxZ acg -ibG +rdT agv agw agw @@ -86271,38 +74415,38 @@ agv agw aja ajk -ajr -ajJ -aki -akU -alT +oYh +fDi +mpS +rRp +duK ajk -amM +yij ans anr ant -apR -aqB -are +hay +rOn +qqF anQ -asb -ati -ata +dVd +hfX +kTN awf -auk -arQ -arQ -awA -axs -aAz -aAz -aBe -arR -arR -asF -aAz -aHg -asb +oHT +vzK +vzK +wbV +gqu +oAg +oAg +crE +mJU +mJU +cQR +oAg +wzX +dVd qXa aAO aAO @@ -86312,7 +74456,7 @@ aAO aAO aAO yhG -kog +ddS uOB uOB aXb @@ -86328,12 +74472,12 @@ wWk bDF lmA rgx -aOj +hjz yhG aAO aAO yhG -kog +ddS kDz wWk wWk @@ -86348,7 +74492,7 @@ qEE wWk vXR wWk -deQ +fxK bDF ghp yhG @@ -86370,18 +74514,18 @@ bXd bYe bVP bVP -bVP +rrQ bRC ceG cfr cgD bRC -bVN -fkk +wgd +rcH cmx -clv -cmo -cmR +vdi +rbR +gtH cpp cqh cqh @@ -86462,59 +74606,59 @@ aAO aAO aAO aeZ -abP +oQe acm -abO +pxZ acm -abP +oQe acm acm -abP +oQe acm -abO +pxZ acg -agg +xUU agw agw -aiu -aiu -aiu +jNy +jNy +jNy agw agw aja ajk -ajs -ajK -aki -akX -alU +eyb +nLn +mpS +mXk +qta ajk -amN +djl ant anT anU -apS -aqC -cYv +fBV +rGm +lLS anQ -asb -ati -asb +dVd +hfX +dVd avB -aun -arR -arR -arR -asw -arR -arR -arR -aBW -aDo -aEz -aFZ -aHh -asb +qSM +mJU +mJU +mJU +rUP +mJU +mJU +mJU +cQV +fNI +mkg +eUC +kkS +dVd cnB aAO aAO @@ -86524,45 +74668,45 @@ aAO aAO aAO yhG -kog -kog -kog -aXc -kog -kog -kog -kog -bcq -kog -aXc -kog -hQm -aPL -kog -kog -kog +ddS +ddS +ddS +hlP +ddS +ddS +ddS +ddS +xLF +ddS +hlP +ddS +xfy +ekL +ddS +ddS +ddS yhG aAO aAO yhG -aOj -kog -kog -kog -aXc -kog -buW -bcq -kog -kog -bcq -kog -kog -aXc -gfl -nVg +hjz +ddS +ddS +ddS +hlP +ddS +ons +xLF +ddS +ddS +xLF +ddS +ddS +hlP +jAU +szN kRT -kog +ddS yhG aAO aAO @@ -86572,28 +74716,28 @@ aAO aAO aAO bOG -bOa -bOa -bOa -bOa +gaV +gaV +gaV +gaV bUo -bVR +iLv bVP bYf bVP bVP -ccl +neW bRC bRC cfs bRC bOf -ciT -cjY -ckP -cni +hMz +kWZ +xXc +hqL cod -bWY +xzl cpp aAO aAO @@ -86674,18 +74818,18 @@ aAO aAO aAO aeZ -abO +pxZ acm -abP +oQe acm -abP +oQe acm acm -afi +fio acm -abP +oQe acg -agh +xLK agx aui agw @@ -86695,38 +74839,38 @@ agx agw ajb ajk -ajt -ajJ -akj -akY -alV +lEM +fDi +wSU +hMS +ycw ajk -amO +pRe ant anU aoM -apT -aqD -arm +rUC +vsr +xoX anQ -asb -ati -asb +dVd +hfX +dVd avB -lVe -auo -auo -auR -axu -auo -nSK +rnI +pyl +pyl +hpp +nxP +pyl +dAM aDy aDy aDy aDy aDy -aHi -ffd +lga +nKJ aKe aKe aKe @@ -86747,10 +74891,10 @@ bkO aVS bkO aVS -bce -beb -bfD -beb +cVO +hyf +doX +hyf aVS bkO ucU @@ -86771,10 +74915,10 @@ btY btY btY btY -bAG -bCC -bDG -bAG +xSu +ljF +ryg +xSu bHI bGI bHI @@ -86790,22 +74934,22 @@ bRC bRC bRC bRC -bXe -bYg +kbQ +vBT bVP bVP bVP bZe -ceK -cft -cgE +sBD +cYT +pRO bOf -ciU -cjZ +moE +rjb cmz cht -cmr -cmW +ijg +tMY cpp aAO aAO @@ -86888,61 +75032,61 @@ aAO aeZ aeZ acm -abO +pxZ adm -abO +pxZ acm acm -abO +pxZ adm -abO +pxZ acg -agi +fpq agy agw -aiw +rAS bvm -aiw +rAS agw agy ajc ajk -aju -ajL -akk -akZ -alW +vZP +gDX +wcC +ovH +gGn ajk -amR -anu -anW -aoN -apU -aqE -arn +rCd +twr +dFs +qge +vkU +xfF +sdu anv -asd -asF -atb +gbQ +cQR +eZL avB -aup -auR -auR -awB -axv -auR -iIg +ubI +hpp +hpp +tKY +hCX +hpp +sCe aDy -aBY +oKH aDy -aBY +oKH aDy -aHk -aHZ +rvU +sIi aED -aJg -aJL -aKD +mJn +lOy +dNq aKe aAO aAO @@ -86959,10 +75103,10 @@ aUZ aVS aUZ ucU -kog -kog -wZy -kog +ddS +ddS +sNn +ddS ucU aUZ ucU @@ -86974,47 +75118,47 @@ aUZ aVS aUZ ucU -bro -bsk -bsS -bua -oyZ -bsS -btG -btG +nyC +nHi +qlg +vmD +jBH +qlg +sdS +sdS bue uvb -rDG -iph -bCH +hpK +tRd +qhh bHJ -bGJ -bHG -bGK -bGJ -bJz -bKB -bGJ -bGJ +vJz +elC +sbh +vJz +pcF +uaQ +vJz +vJz bOf -bPP -bRr +xQI +jYr bVP bUp bRC -bXf -bYi +pkF +iFS bZf caM bZf bZf -ceM -cfv -cgF +viy +vfI +uqf bOf -ciV -cka -ckQ +rlH +rNk +pUE cmz chH cgI @@ -87111,7 +75255,7 @@ aeZ aeZ aiN aiN -awd +atK aiN aiN aiN @@ -87133,27 +75277,27 @@ anQ aqd aqd aqd -ase -asG +gIO +xDC aro aAv -auq -auR -auR -awC -axw -auR -azu +mYF +hpp +hpp +sxi +izU +hpp +mhl aDy -aBZ +iLj aDy -aBZ +iLj aDy -aHl -aIa +vux +lrM aED aED -aJM +uwq aED aDA aMk @@ -87186,31 +75330,31 @@ aUZ aVS aUZ ucU -bua -bua -bua -bua -bua -bua -bua -bxT +vmD +vmD +vmD +vmD +vmD +vmD +vmD +fZQ bue -xUp -bAH -bDI -bAH +ppT +xwY +kqS +xwY bHJ -bGK -bGK -bGK -bGK -bGK -bGK -bGK -bOH +sbh +sbh +sbh +sbh +sbh +sbh +sbh +eUA bRC -hUO -bRs +hNs +qxD bVP bUq bVS @@ -87220,14 +75364,14 @@ bZg caO bVP bZe -ceK -cfw -cgF +sBD +rkH +uqf bOf -ciW +tsr ckb -ckR -clx +rUh +imy chH cmY cnv @@ -87322,7 +75466,7 @@ aAO aAO aAO aiN -aiv +qiZ ayc aiN aAO @@ -87332,46 +75476,46 @@ aAO aAO ams ajv -ajN -ajN -ajN +jtu +jtu +jtu alX -ajN -amS +jtu +dYo ajO -ajN -ajN +jtu +jtu ajO -aqF +ktq aro -arG -asf -asf -ate +jnm +ims +ims +wHw aAv -aur -auS -avs -awD -auR -auR -azv +xBc +jNr +lWH +hcU +hpp +hpp +mrN aDy -aCa -aDp -aEA +jxs +qXq +pCw aDy -aHl -aIb +vux +wga aED aJh aJN aKE aED -aMl -aNI -aPf -aQt +jqq +kPV +hIy +hAa aTE bmF aTE @@ -87383,10 +75527,10 @@ bmF aTE bmF aTE -aVa -aVa -bfG -aVa +aWY +aWY +frn +aWY aTE bmF aTE @@ -87398,48 +75542,48 @@ bmF aTE bmF aTE -brp -bua -bua -btH -btH -bua -bua -bxU +rvp +vmD +vmD +jru +jru +vmD +vmD +xbP bue -bCH -bCH -bDH -bCH +qhh +qhh +jXy +qhh bHJ -bJa -bGK -bGK -bLl -bLl -bGK -bLr -bOH +nSp +sbh +sbh +dDM +dDM +sbh +lzr +eUA bRC -bPP -bRr +xQI +jYr bVP bUr bRC -bXh +otb bVP bZh caO bVP bZe -ceK -cfw -cgF +sBD +rkH +uqf bOf -ciX -ckc -ckS -clz +fxi +ijS +hLx +xoq chH cmZ cnw @@ -87534,7 +75678,7 @@ aAO aAO aAO aiN -aiG +ihG ayZ aiN aAO @@ -87548,18 +75692,18 @@ ajO ajO ajO ajO -ajN -ajN +jtu +jtu ajO -ajN -amS +jtu +dYo ajO -qwg +eWV aro -arH -kDp -kDp -qgb +piL +nlW +nlW +kSV aAv awf awf @@ -87569,69 +75713,69 @@ awf awf aAv aDz -aCb -aDq -aEB -aGi -aHn -aIc +syz +mNJ +oRA +iCP +whK +bPa aIz aJi aJO aKF aED -aMm -aNJ -aPg -aQu +kjv +mpr +mtN +okk bmF -uuB -aVa -aVa -aYt -aVa -bap -aVa -aVa -aZZ -baD -aVa -aXf -bfH -aVa -baD -aZZ -aVa -aVa -aVa -aVa -aYt -aVa -aVa -aVa +iJi +aWY +aWY +hFB +aWY +dFo +aWY +aWY +oPn +jJd +aWY +blx +eNR +aWY +jJd +oPn +aWY +aWY +aWY +aWY +hFB +aWY +aWY +aWY bmF -brp -bua -bua -btI -btH -bua -bua -bxU +rvp +vmD +vmD +lqf +jru +vmD +vmD +xbP bue bBC bEI bDK bBC bHJ -bJa -bGK -bGK -bLl -bLl -bGK -bGK -bGK +nSp +sbh +sbh +dDM +dDM +sbh +sbh +sbh taT bWc bWc @@ -87643,9 +75787,9 @@ bVP bVP caP bVP -cdG -cdI -cfx +xMG +nYK +nTk bOf bOf chH @@ -87755,38 +75899,38 @@ acL acL acL amt -aqK -aAI -aAI -aAI -aAI -aAI -aAI -aAI -aAI -aAI -aAI -sIA -jfe -nkB -jDr -uaW -dxF -oJi -onp -ase -ase -ase -ase -ase -ase +xFY +cEm +cEm +cEm +cEm +cEm +cEm +cEm +cEm +cEm +cEm +tjy +wfR +fyd +qDW +mJC +lwk +siS +gul +gIO +gIO +gIO +gIO +gIO +gIO aDy -aCc -aDr -aEC +fMd +xWi +khD aDy -aHo -aIb +vhQ +wga aED aJk aJS @@ -87797,66 +75941,66 @@ aNK aPh aQv bmF -aVa -aVT -rba -aYu -aXf -aVT -aXd -aYu -bad -baF -boq -boq -bfI -boq -baF -aVX -aVT -aXd -aYu -aXf -aVT -xKa -aYu -aVa +aWY +loY +wpE +ljh +blx +loY +nNy +ljh +fnl +krM +wtP +wtP +dKU +wtP +krM +gBx +loY +nNy +ljh +blx +loY +pur +ljh +aWY bmF -brp -bua -bua -btJ -bxu -bua -bua -bxU +rvp +vmD +vmD +poK +hbI +vmD +vmD +xbP bue -bCH -bCH -bDL -bCH +qhh +qhh +mna +qhh bHJ -bJa -bGK -bGK -bIS -bJD -bKC -bLs -bOH +nSp +sbh +sbh +iTo +qnl +pNh +oZO +eUA bOf bPT bRu bSW bWc bRC -bXj +rNn bYk bZi caQ bZe -cdI -ceN +nYK +sGm bOf chH chK @@ -87980,25 +76124,25 @@ amu amu amu amu -ase -jDr -vEi -kkA -kkA -kkA -kkA -kkA -kkA -kkA -kkA -jsm +gIO +qDW +vLw +mMk +mMk +mMk +mMk +mMk +mMk +mMk +mMk +onw aDy -aBZ +iLj aDy -aBZ +iLj aDy -aHl -aId +vux +dog aED aED aED @@ -88009,60 +76153,60 @@ aNK aPi aQv aTF -aVa -aVT -aXd -aYu -aXf -aVT -aXd -aYu -aXf -baG -baG -baG -bfJ -baG -baG -aXf -aVT -sHs -aYu -aXf -aVT -uyi -aYu -aVa +aWY +loY +nNy +ljh +blx +loY +nNy +ljh +blx +wtj +wtj +wtj +ekR +wtj +wtj +blx +loY +ljc +ljh +blx +loY +gdw +ljh +aWY bmF -brq -bua -bua -btM -buq -bua -bua -bua +wTC +vmD +vmD +ofK +ymh +vmD +vmD +vmD bue -bAA +jei bEA bDM -bAA +jei bHJ -bGL -bGK -bIw -bIT -bJE -bGK -bGK -bGK +pjx +sbh +pzE +jVm +fOL +sbh +sbh +sbh bOf bRC bRC bRC bRC bRC -bXk +cIW bRC bRC caR @@ -88192,25 +76336,25 @@ aqj aoi apf apA -tNh -dQw -oIj -qlh -hAq -oNe -oIj -qlh -hAq -axx -dHr -uaW +pOW +kau +xzj +pxT +rSm +wIv +xzj +pxT +rSm +nYL +ssR +mJC aDy -aCd +pHW aDy -aCd +pHW aDy -aHl -aIb +vux +wga aED aJl leU @@ -88221,66 +76365,66 @@ aNM upm aQw aTG -aVb -aVU -udc -oXr -lyj -wav -omn -oXr -lyj -baH -uyi -cPc -bfK -aXd -hjN -aXf -aVT -aXd -aYu -aXf -aVT -bpc -aYu -aVa +aRy +drD +lmf +lbZ +jCz +fyr +lOT +lbZ +jCz +lJD +gdw +taN +wxY +nNy +ygq +blx +loY +nNy +ljh +blx +loY +gOH +ljh +aWY bmF -brr +qRN bue bue -bua -bur +vmD +jPu bue bue -brr +qRN bue -bAI +rPR bCE bDN -bEv +tXh bHJ -bVr +krT bHJ bHJ -bIU -bGK +xPz +sbh bHJ bHJ -bVr +krT bRM bPU bRv bSX bUs bVU -bXl +qHh bRM -bZj -caS +vCf +dWr ccn -cdJ -ceO +vwQ +qgQ chH cgG eUF @@ -88413,16 +76557,16 @@ amu amu amu amu -axy -jDr -uaW +gJU +qDW +mJC aDz aDy aDy aDy aDy -aHq -aIc +lJA +bPa aGj sQI aDu @@ -88433,66 +76577,66 @@ aNN aPk aNN cWg -aVa -aVV -cPc -aYu -aXf -baq -uyi -aYu -aZv -kdm -baI -baI -bfL -baI -baI -aXf -aVT -uyi -aYu -aXf -aVT -lks -aYu -aVa +aWY +mnC +taN +ljh +blx +lRD +gdw +ljh +qEO +qyL +pcf +pcf +doL +pcf +pcf +blx +loY +gdw +ljh +blx +loY +vcR +ljh +aWY bmF -brs -bsl +kTj +hGT bue -btP -bus +mKF +reW bue -bwu -bxV +wGc +vEW bue -bAA +jei bEA bDM -bAL +lTm bHJ -bGM -bHH +mlM +dGE bHJ -bIU -bGK +xPz +sbh bHJ -bLt -bMx +tao +tIO bRM bPV bRw bSY bUt bUA -bXm +fbm bRM -bZj -caT -bZt -cdK -ceP +vCf +lyH +nic +ifo +eKt chH cgH chM @@ -88625,70 +76769,70 @@ amu amu amu amu -axz -jDr -uaW -ssJ +qVq +qDW +mJC +urF aCe aDs aEE aED -aHl -aIb +vux +wga aED aEE aJU wRI aED -aOa -aOa +xuf +xuf aOt cde aOt -aVa -aVV -jNo -aYu -aZu -aVT -tcn -aYu -aXf -gvj -aXf -aXf -bfH -aXf -aXf -biC -baq -cPc -aYu -aZu -aVT -aXd -aYu -aVa +aWY +mnC +gxz +ljh +kwq +loY +mzD +ljh +blx +qvc +blx +blx +eNR +blx +blx +hTv +lRD +taN +ljh +kwq +loY +nNy +ljh +aWY aTF bue bue bue -bua -but +vmD +fQQ bue bue bue bue -bAJ +fFX bEA bDM -bEw +hzv bHJ bHJ bHJ bHJ -bIU -bJF +xPz +rXh bHJ bHJ bHJ @@ -88697,14 +76841,14 @@ bPW bRx bSZ bUu -bVV -bXn +tcm +vbj bYl -bZk -caU -ccp -cdL -ceQ +ooH +oJB +gWH +fWH +wXh chH cgG chN @@ -88837,88 +76981,88 @@ amu amu amu amu -axA -jDr -uaW +qvm +qDW +mJC aED aCf aDt aEF aGj -aHn -aIe +whK +dxl aED aED aED -ssJ +urF aDA -aMr -aNP -aPl -aQx -hHP -aVa -aVV -cPc -aYv -aXf -aVT -tvF -aYu -aXf -tdq -baG -baG -bfJ -baG -baG -aXf -aVT -uyi -aYu -aXf -aVT -aXd -aYu -aVa +eJk +twQ +xif +fCu +jYq +aWY +mnC +taN +ujw +blx +loY +iMc +ljh +blx +jnp +wtj +wtj +ekR +wtj +wtj +blx +loY +gdw +ljh +blx +loY +nNy +ljh +aWY bqE -bua -bua -bua -bua -bur -bua -bua -bAi -bzu -bAA +vmD +vmD +vmD +vmD +jPu +vmD +vmD +pGV +oLW +jei bCF bDO -bAA -bFD -bJd -bGK -bGK -bIU -bJG -bGK -bGK -bGK +jei +cmD +dcp +sbh +sbh +xPz +woc +sbh +sbh +sbh bRM bPX bRy bTa bUv -bVW -bXo +mAr +nJH bRM -bZl +sQK caV -bZt -cdM -ceP +nic +vDc +eKt chH -cgJ +tif cgG cgG cgG @@ -89049,86 +77193,86 @@ amu amu amu amu -axB -jDr -uaW +bPd +qDW +mJC aED aCo aCq aEG aED -aHl -aIb -tGY -rXA -aJW -xkp -tGY -aMs -aNQ -aPm -aQy +vux +wga +rJp +sNh +vOe +hLu +rJp +fgR +cOR +tol +hfK cde -aVa -aVV -uyi -aYu -aXf -aVT -aXd -aYu -aXf -wFn -cPc -hEL -poa -aXd -hjN -aXf -aVT -uKU -aYu -aXf -baq -aXd -aYu -aVa +aWY +mnC +gdw +ljh +blx +loY +nNy +ljh +blx +sgN +taN +fdD +fyT +nNy +ygq +blx +loY +rWb +ljh +blx +lRD +nNy +ljh +aWY aTF -brt -bso -bso -bso -buu -bvo -bwv -bxW -bzw -byn +gGa +jha +jha +jha +pEw +nsg +qpT +aPd +fxG +mCP bCG bDP -byn -bFE -bGN -bHK -bIx -bIV -bJI -bJI -bJI -bMy +mCP +ups +wdd +deR +hFE +mET +hiP +hiP +hiP +lgH bRM bPY bRz bSZ nzm -bVW -bXp +mAr +inc bRM -bZm +qep caW ccq -cdN -ceR +cAL +jRH cfy cgL chO @@ -89261,50 +77405,50 @@ amu amu amu amu -axy -jDr -uaW +gJU +qDW +mJC aDA aED aED aED aED -aHl -aIb -tGY -rXA -aJW -xkp -tGY -aMs -aNP -aPl -aQz -hHP -aVa -aVV -hjN -aYu -aXf -aVT -hjN -aYu -aXf -kdm -bcf -baI -bfN -bgS -bhT -aXf -aVT -hjN -aYu -aXf -aVT -hjN -aYu -aVa +vux +wga +rJp +sNh +vOe +hLu +rJp +fgR +twQ +xif +wDv +jYq +aWY +mnC +ygq +ljh +blx +loY +ygq +ljh +blx +qyL +frC +pcf +mBr +pTA +fWT +blx +loY +ygq +ljh +blx +loY +ygq +ljh +aWY aTF bru bru @@ -89315,10 +77459,10 @@ bru bru bru bru -bAA +jei bEA bDM -bAA +jei jUC jUC jUC @@ -89333,13 +77477,13 @@ bPY bRA bTc bUx -bVX -bXp +qdV +inc bRM -bZn +upQ caV -bZt -cdM +nic +vDc cgI cgI cgI @@ -89462,7 +77606,7 @@ amu amu amu amu -aoj +nmI amu amu amu @@ -89473,85 +77617,85 @@ amu amu amu amu -axz -jDr -azw -ssJ +qVq +qDW +iCt +urF aCe aDs aEE aED -aHl -aIb -tGY -rXA -aJW -xkp -tGY -aMs -aNQ -aPm -aQy +vux +wga +rJp +sNh +vOe +hLu +rJp +fgR +cOR +tol +hfK cde -aVc -aVW -boq -boq -boq -boq -boq -boq -boq -baR -bcg -bed -bfO -bgT -bgT -boq -boq -boq -boq -bnG -boq -boq -bnG -bqf +hQc +rzT +wtP +wtP +wtP +wtP +wtP +wtP +wtP +ugy +vXi +nIb +vYw +tgG +tgG +wtP +wtP +wtP +wtP +hyi +wtP +wtP +hyi +pdY bmF -brv -bvb -bsT -btU -buv -mrg -bww -bxX -bzx -bGZ +xSf +hrL +hYb +qFH +pEv +iqW +hgR +sue +qQW +rjZ bCE bDQ -bAA +jei jUC -bGO -bHL -jMq -vhZ -saD -qco -qco -fqG +uwO +cIe +xmy +roH +iRB +emG +emG +jbz bQj bPY bRB bTd bUy -bVW -bXq +mAr +tfg bRM -bZo +gwx caV -bZt -cdM +nic +vDc cgI cfz cgM @@ -89685,85 +77829,85 @@ amu amu amu amu -axA -jDr -uaW +qvm +qDW +mJC aDA aCp aDu aEF aGj -aHn -aIf +whK +wvG aED aED aED aED aED -uNi -aNP -aPl -aQx -hHP -aVd -aVX -aXf -aXf -aXf -aXf -bbs -aXf -aXf -baT -baT -bae -bfP -baT -baT -aXf -aXf -aXf -aXf -bnH -bor -aXf -bad -bqg +sUv +twQ +xif +fCu +jYq +wNH +gBx +blx +blx +blx +blx +uIO +blx +blx +ozv +ozv +moJ +nZd +ozv +ozv +blx +blx +blx +blx +tKF +tqu +blx +fnl +aKc bqE -bvb -bvb -bsU -bvb -bvb -bvb -bvb -bxY +hrL +hrL +iTk +hrL +hrL +hrL +hrL +wGX bzy -bAA +jei bEA bDM -bAA +jei jUC -bGP +fYU ptn -fMU -iCH -iHC +uet +oak +rSI bKD hrZ -nXN +haj bQj bPY bRB bTd bUz -bVY -bXr +xQJ +rET bRM -bZq +kui caV -bZt -cdM +nic +vDc cgI cfA cgO @@ -89897,85 +78041,85 @@ amu amu amu amu -axB -jDr -uaW +bPd +qDW +mJC aDA aCq aCo aEG aED -aHl -aIb +vux +wga aED wju ogu aCo aED -aMs -aNR -aPn -aQy +fgR +tDb +iIz +hfK cde -aVa -aVT -hjN -aYu -aZv -baq -hjN -aYu -aXf -baV -kaz -bae -bfP -baV -kaz -aXf -aVT -hjN -aYu -bnH -aVT -hjN -aYu -eWi +aWY +loY +ygq +ljh +qEO +lRD +ygq +ljh +blx +rLS +rWn +moJ +nZd +rLS +rWn +blx +loY +ygq +ljh +tKF +loY +ygq +ljh +phZ bmF -brx -bvb -bvb -bvb -bvb -bvb -bvb -bxY -brw -bAA +fhJ +hrL +hrL +hrL +hrL +hrL +hrL +wGX +sFs +jei bEA bDT -bGZ -bFF -bEf +rjZ +gxc +nDR nJm -gtK -iWK -iEp +gQh +vQv +dZd bKD bKD -nXN +haj bQj bPY bRA bTe bUA -bVZ -bXs +fTs +wIZ caC -bZq +kui cbe ccr -cdO +dJR ceS cfB cgP @@ -90109,73 +78253,73 @@ amu amu amu amu -axy -jDr -uaW +gJU +qDW +mJC aDA aED aED aED aED -aHy -aIc +eHf +bPa aGj aJm aJY aKS aED -aMs -aNP -aPl -aQx -hHP -aVa -aVT -gxV -aYu -aXf -aVT -aXd -aYu -bae -kaz -kep -bae -bfP -kaz -kaz -bae -aVT -aXd -aYu -bnH -aVT -aXd -aYu -aVa +fgR +twQ +xif +fCu +jYq +aWY +loY +iZF +ljh +blx +loY +nNy +ljh +moJ +rWn +wCr +moJ +nZd +rWn +rWn +moJ +loY +nNy +ljh +tKF +loY +nNy +ljh +aWY bmF -bry -bsq -bsV -bwV -buw -bvp -bvp -bxZ -brw -bAA +dZg +qjj +cAz +mEf +mWm +iqw +iqw +fzJ +sFs +jei bCJ bDM -bAL +lTm jUC -bEJ +wYK hdw bKD -isr -rKA -vAT -bLu -bMz +qZA +plV +nAz +sRb +eSA bQj bPY bRD @@ -90184,10 +78328,10 @@ bUA bUz bXt caC -bZr +dDe cbh -ccs -cdK +xVn +ifo cgK cfE cjR @@ -90321,50 +78465,50 @@ amu amu amu amu -axz -jDr -uaW -ssJ +qVq +qDW +mJC +urF aCe aDv aEH aED -aHl -aIb +vux +wga aED aEE aJU aCe -ssJ -aMu -aNS -aPm -aQy +urF +njO +lMb +tol +hfK cde -aVa -aVT -aXd -aYu -aXf -aVT -aXd -aYu -bae -kaz -baV -bae -bfP -baV -kaz -bae -aVT -aXd -aYu -bnH -aVT -cPc -aYv -aVa +aWY +loY +nNy +ljh +blx +loY +nNy +ljh +moJ +rWn +rLS +moJ +nZd +rLS +rWn +moJ +loY +nNy +ljh +tKF +loY +taN +ujw +aWY btt bwX bwX @@ -90375,19 +78519,19 @@ bwX bwX bwX btt -bAL +lTm bEG bDR -bAA +jei jUC -xji +noj lJo bIy -bIW -bJJ -pVz -bLw -dIT +siG +xJq +pCB +vlR +tEU bQj bRM bRM @@ -90396,13 +78540,13 @@ bUB bWb bXu bRM -bZs +lKG caV -bZt -cdK +nic +ifo cgI cfF -cgU +pSR cjR cjc clP @@ -90533,71 +78677,71 @@ amu amu amu awF -axA -jDr -uaW +qvm +qDW +mJC aDA tcY aDu aEF aGj -aHz -aIb +xzo +wga aED aED aED aED aDA -aMv -aNP -aPl -aQz -hHP -aVa -aVT -gxV -aYu -aZu -baq -aXd -aYu -dzH -baW -xYR -aXf -bfH -joc -baW -iqo -aVT -lks -aYu -bnK -aVT -aXd -aYu -aVa +mXL +twQ +xif +wDv +jYq +aWY +loY +iZF +ljh +kwq +lRD +nNy +ljh +vLx +kSp +qyD +blx +eNR +sfC +kSp +klP +loY +vcR +ljh +fWx +loY +nNy +ljh +aWY bwX -bul -bul -bsW +vba +vba +eqD btZ buc bvt -bvd -bya +fXa +nFu bwX -bAA +jei bEA bDM -bAA +jei jUC -bGW +pmb rRJ bIy -pGv -nmr -bEJ +oGW +hrP +wYK bLx bMA bQj @@ -90608,10 +78752,10 @@ bUC bWb bXu bYm -bZt +nic caV -bZt -cdK +nic +ifo cgI cgI cgI @@ -90736,80 +78880,80 @@ aqk aok apg apB -gwI -cDl -gne -tHo -oNG -rYg -tzJ -tHo -oNG -axC -jDr -azx +mRB +lpu +okR +eaU +tHp +hMG +wQu +eaU +tHp +eYs +qDW +xly aDA aCo cAe aEI aED -aHl -aIb +vux +wga aED aJl aCo mjI aED -aMw -aNX -aPm -aQy +tGr +leM +tol +hfK cde -aVa -aVT -uyi -aYu -aXf -aVT -cPc -aYu -hXJ +aWY +loY +gdw +ljh +blx +loY +taN +ljh +kCN bmF -bef -gIv -bfU -cQb +hkU +wTw +xwJ +iqE bmF -rFO -aVT -cPc -aYv -bnH -aVT -aXd -aYu -aVa -jaQ -bul -bvd -bvd +wcf +loY +taN +ujw +tKF +loY +nNy +ljh +aWY +gAU +vba +fXa +fXa bwX bwX bwX -bvd -bta -jaQ -bAA +fXa +vvJ +gAU +jei bEA bDM -bAA +jei jUC -bGW +pmb hdw bIy -bIW -nmr -gGu +siG +hrP +mZq hdw bKD bQj @@ -90820,10 +78964,10 @@ bUD bWe bXw bYn -bZu +iSS cbi -bZt -cdK +nic +ifo cfD cfG chQ @@ -90834,10 +78978,10 @@ cjd cjd chQ coP -cnK -cox -coW -cpC +rAr +nhj +gzJ +rPp cpf aAO aAO @@ -90948,80 +79092,80 @@ amu amu amu arI -jDr -asI -atk -atk -atk -auT -pXk -awG -atk -ayx -mVf -azy +qDW +xCi +xRZ +xRZ +xRZ +pGq +sjS +mBF +xRZ +qdL +hAZ +lVN aDA aED aED aED aED -aHs -aIc +kfL +bPa aGj aJm aDu aKV aED -aMv -aNY -aPl -aQz -hHP -aVa -aVT -aXd -aYu -aXf -aVT -uyi -aYu -hXJ +mXL +alN +xif +wDv +jYq +aWY +loY +nNy +ljh +blx +loY +gdw +ljh +kCN nsx fLT -beg -bfY +gos +ikL fLT nsx -rFO -aVT -aXd -aYu -bnH -aVT -dCC -aYu -aVa +wcf +loY +nNy +ljh +tKF +loY +mFL +ljh +aWY pcU -bul -bvd +vba +fXa bsY btZ buc bvt -bvd -bte -bzD -bAM +fXa +upS +vEh +nuf bCK bDS -bAA +jei jUC -gEZ +dKJ dgl bIy -bIW -gpx -bEJ +siG +wOf +wYK hdw bKD bQj @@ -91032,10 +79176,10 @@ bUE bWf bXx bRM -bZv -cbj -bZv -bZv +vAO +kFs +vAO +vAO cfD cfG chQ @@ -91046,10 +79190,10 @@ cjd cjd chQ coP -cnS -cox -cox -cpC +hWi +nhj +nhj +rPp cpf aAO aAO @@ -91160,13 +79304,13 @@ akl akl atU arJ -asg -asJ +gSN +xkt arJ aty arJ -auU -avu +tqN +gUD arJ arJ gPR @@ -91177,65 +79321,65 @@ aCe aDw aEE aED -aHl -aIb +vux +wga aED rtS aJU aCe -ssJ -aMy -aNQ -aPo -aQy +urF +ktZ +cOR +oIH +hfK cde -aVa -aVT -aXd -aYu -aXf -aVT -lks -aYu -sEd +aWY +loY +nNy +ljh +blx +loY +vcR +ljh +oXv nsx -bcn -beh -bfZ -bgV +lXT +sbN +ukW +mdT nsx -biH -aVT -aXd -aYu -bnH -aVT -uyi -aYu -aVa +exq +loY +nNy +ljh +tKF +loY +gdw +ljh +aWY dou -bul -bvd -bvd +vba +fXa +fXa bwX bwX bwX -bvd -btb -bvd -bAN +fXa +pep +fXa +pza bEA bDT -bEx +txc jUC -bGX -oNp -utI -eMW -pft -bKE +tkf +uMc +qkO +ubb +scl +jid hdw -bMB +wML bQj bQd bQd @@ -91244,10 +79388,10 @@ bUF bQd bQd bRM -bZw +oiF cbk ccw -cdQ +rEY cfD cfH chQ @@ -91258,10 +79402,10 @@ chQ chQ chQ cnc -cnS -cox -cox -cox +hWi +nhj +nhj +nhj cpf aAO aAO @@ -91371,74 +79515,74 @@ aAO aAO aAO atU -arK -asg -asK -atl -asg -aus -auV -asg -awH +svM +gSN +lvR +cJe +gSN +mma +unp +gSN +wkQ arJ xjn ayz azA -ssJ +urF aCf aDt aEF aGj -aHz -aIb +xzo +wga aDA aED aED aED aDA -aMz -aNY -aPl -aQz -hHP -aVa -aVT -aXd -aYu -aXf -aVT -aXd -aYu -sEd +pEO +alN +xif +wDv +jYq +aWY +loY +nNy +ljh +blx +loY +nNy +ljh +oXv nsx -bco -bei -bgb -bgW +eUc +nwA +qns +hNE nsx -koj -aVT -uyi -aYu -bnH -aVT -oHo -aYu -aVa -jaQ -bul -bvd +rYT +loY +gdw +ljh +tKF +loY +eHi +ljh +aWY +gAU +vba +fXa bsY btZ buc bvt -bvd -byd -jaQ -bAA +fXa +paS +gAU +jei bEA bFT -bGB +lQv jUC jUC jUC @@ -91446,7 +79590,7 @@ jUC jUC jUC jUC -bLD +fie jUC bQj bRM @@ -91457,8 +79601,8 @@ bRM bRM bQj bZx -cbl -ccA +gDu +eTm cfC cfD cfI @@ -91473,7 +79617,7 @@ coP cnN coB coX -cox +nhj cpf aAO aAO @@ -91583,15 +79727,15 @@ aAO aAO aAO atU -arK -asg -asL -asL -asg -asL -asM -asg -arL +svM +gSN +vpP +vpP +gSN +vpP +kAP +gSN +yal arJ ayz ayz @@ -91601,74 +79745,74 @@ aCo aCq aEG aED -aHA -aIg +tBc +iHd aED aJn aJZ ayy -aLv -aMA -aNZ -aPm -aQy +iiL +rFm +rEc +tol +hfK aOt -uuB -aVa -aVa -aVa -aZw -aVa -aVa -aVa -xIA +iJi +aWY +aWY +aWY +oBY +aWY +aWY +aWY +lHR nsx -bcp -bej -bgd -bgX +oqB +ymd +eNO +xTk nsx -oyQ -uKd -aVa -aZw -bnL -aVa -aVa -aVa -aVa +tFu +qQR +aWY +oBY +mOZ +aWY +aWY +aWY +aWY bwX -bul -bvd -bvd +vba +fXa +fXa bwX bwX bwX -bvd -bvd +fXa +fXa bwX -bAA +jei bEA bFT -bAA +jei bBC -bCR -bEy -bIz -bEy -bJL -bEy +tJr +jCK +uNZ +jCK +ikK +jCK bDX -bEy -bEy -bEy -bEy -bEy -bEy -bWg -bEy -bEy -bEy +jCK +jCK +jCK +jCK +jCK +jCK +pHt +jCK +jCK +jCK bHQ ccB cfD @@ -91685,7 +79829,7 @@ coP cnO coC coY -cox +nhj cpf aAO aAO @@ -91795,16 +79939,16 @@ aAO aAO aAO atU -arK -asg -asL -asL -asg -asL -asL -asg -asg -axE +svM +gSN +vpP +vpP +gSN +vpP +vpP +gSN +gSN +fhh ayz ayz azB @@ -91820,13 +79964,13 @@ aJo ayz ayy ayy -aMB -aOa +ruC +xuf aRr aPp aRr aPp -uEn +qmR aPp aPp aRr @@ -91836,8 +79980,8 @@ aTF aTF bdl fLT -bek -bha +xUS +moe fLT bdl aTF @@ -91850,19 +79994,19 @@ bmF bmF bmF btt -brz -bvd +jZn +fXa bsY btZ buc bvt -bvd -bye +fXa +oUk bwX -bAA +jei bEG bFU -byn +mCP bHO bEB bHN @@ -91883,7 +80027,7 @@ bCK bHN cbn ccC -cdR +hEU ceT cjg cjg @@ -91897,7 +80041,7 @@ coP cnP coD cpd -cox +nhj cpf aAO aAO @@ -92007,15 +80151,15 @@ aAO aAO aAO atU -arK -asg -asM -asL -asg -asL -asM -asg -arK +svM +gSN +kAP +vpP +gSN +vpP +kAP +gSN +svM arJ ayz ayz @@ -92027,54 +80171,54 @@ aEK ayy ayz azA -aIC +omQ ayz ayz gPR -aLw -aMC -aOb +dTU +fAi +dFC aPp -aQA -aRL -aTh -aUa -aTh -aRL -aWX +wsy +mai +fVX +jMC +fVX +mai +qIN aPp -aYK -aZy +oFK +rRf bdl -bbb -bcr -bel -bgf -bgY -bhU +vSw +hxQ +tSm +rtl +vzu +cEk bdl -bkj -bly -bmN -bnN -bot -bmN -bly -bqh +uHc +kcl +dhd +dSX +sIf +dhd +kcl +mHH btt -bul -bvd -bvd +vba +fXa +fXa bwX bwX bwX -bvd -bvd +fXa +fXa bwX -bAA +jei bEA bEA -bAA +jei bEI bEI bDM @@ -92095,7 +80239,7 @@ bEA bDM bEA ccD -cdS +lNL ceU chQ chQ @@ -92106,10 +80250,10 @@ cjg cjg cjg cnd -cnQ -cox -cox -cox +uET +nhj +nhj +nhj cpf aAO aAO @@ -92219,15 +80363,15 @@ aAO aAO aAO atU -arL -asg -asg -asg -asg -asg -asg -asg -arK +yal +gSN +gSN +gSN +gSN +gSN +gSN +gSN +svM arJ jKf ayz @@ -92243,70 +80387,70 @@ aBf aBf aBf aKW -aLz -aMD -aOg +lvc +wWr +tuD aPp aPp aPp -aTi -aUb -aUI +twB +yit +xGX aPp aPp aPp -aYN -aZz +rmq +hoC bdl -bbb -bcs -bbe -bgg -bgZ -bbh +vSw +rRs +kEF +kjZ +vav +wjO bdl bmH bmH bmH -bnN -bou +dSX +soq bmH bmH bmH btt -bul -bvd +vba +fXa kGq bwX bwX bwX -bvd -bvd +fXa +fXa bwX -bCH -bCH -bCH -bCH +qhh +qhh +qhh +qhh bBC -bCS +kKu bHQ bEI -bIX -bJN -bCM -bCM -bCM -bOg -bCM -bCM -bCM -bCM -bWi -bXA -bAH -bDI -bAH -bAH +aCx +qHf +sYh +sYh +sYh +uyw +sYh +sYh +sYh +sYh +stQ +txR +xwY +kqS +xwY +xwY cfD cfD chQ @@ -92318,10 +80462,10 @@ cjd cjd chQ coP -cnS -cox -cox -cpE +hWi +nhj +nhj +kQT cpf aAO aAO @@ -92455,55 +80599,55 @@ ayz ayz ayz uEJ -aLy -aME -aOh +oUN +vPb +tTD aPp -aQA -aRL -aTj -aUc -aUJ -aRL -aWX +wsy +mai +gIA +jFF +jcd +mai +qIN aPp -aYS -aZA +kHO +qJm bdl -bbb -bcs -ben -bgg -bha -bbh +vSw +rRs +vuZ +kjZ +moe +wjO bdl -bkj -bly -bmN -bnN -bot -bmN -bly -bqh +uHc +kcl +dhd +dSX +sIf +dhd +kcl +mHH btt -bul -bvd +vba +fXa kGq kGq gsD kGq kGq -bvd +fXa bwX -bAH -bAH -bAH -bAH +xwY +xwY +xwY +xwY bBB -bGY +uIU bHQ bEI -bIY +leh bMk bMk bMk @@ -92523,17 +80667,17 @@ bLv cfD chQ chQ -chY +pJZ cjd cjd cjd cjd chQ coP -cnT -cox -cpe -cpF +iUe +nhj +dvo +uAq cpf aAO aAO @@ -92667,71 +80811,71 @@ aEX aEX aEX aEX -aLy -aME -aOh +oUN +vPb +tTD aPp aPp aPp aPp -aUd +aFy aPp aPp aPp aPp -aYT +gLy aYW bdl -bbb -bcs -beo -beo -bha -bbh +vSw +rRs +sPe +sPe +moe +wjO bdl bmH bmH bmH -bnO -bot +pLt +sIf bmH bmH bmH btt -bul -bvd +vba +fXa kGq kGq kGq kGq kGq -bvd +fXa bwX bBC -bAA -bDU +jei +wio bBC bBB bBC -bHR -bIB +pGY +iLK bBC bMk -bNa +oRE bLG bLG bLG bQe -bRH -bTm -bUG -bWj +mOs +fhE +tSx +edV bZp -bYo -bZz -bTv -bJT -cdT +wPL +jMJ +kZf +qBG +cCD cfD cfD cfD @@ -92871,91 +81015,91 @@ mNU ePO vdb aFV -aEY -aGm -aEY -aGm -aEY -aJp -aKb +qNX +xED +qNX +xED +qNX +giY +pfh aEX -aLy -aME -aOi -aPq -aQB -aQB -aTk -aMC -aQB -aQB -aQB -aQB -aQB -aOb +oUN +vPb +lPl +ncY +mpZ +mpZ +tQM +fAi +mpZ +mpZ +mpZ +mpZ +mpZ +dFC baf -bbe -bcs -bep -bep -bhb -bhV +kEF +rRs +ssq +ssq +erg +dkM bdl -bkk -bly -bmN -bnN -bot -bmN -bly -bqh +fiU +kcl +dhd +dSX +sIf +dhd +kcl +mHH btt -bul -bvd -bta +vba +fXa +vvJ btt btt btt -bwx +jIV buc btt -bCR -bAA -bAA -bEy -bEy -bEy +tJr +jei +jei +jCK +jCK +jCK bHQ bEI -bIZ +jIc bMk -bNb +fZr bLG bLG bOh bLG -bTx -bTn +iUs +wOc bUH -bTx +iUs bZp -bYp +pFm bZB bMu cev -bOl +oZU cgN -cfK +iXX cgV chZ chZ chZ chZ chZ -coj -coS -cnU -coF +xbW +eAS +koP +uQU cnj aAO aAO @@ -93083,88 +81227,88 @@ nLD nLD kSt aFV -aEZ -aGn -aGn -aIj -aII -aII -aKf -aKY -aLz -aMF +uKJ +yia +yia +xPl +mAL +mAL +xsi +aUX +lvc +gyk aOk -aPr +vxV aPJ -aPr +vxV aPJ -aUe -aUK -aPr -aPr -aPr -aPr -aYa +qrW +giN +vxV +vxV +vxV +vxV +hPM bai -bbf -bct -bep -bep -bhc -bhV +gYA +gmJ +ssq +ssq +eCm +dkM bdl bmH bmH bmH -bnP -bov +eEg +nNf bmH bmH bmH btt -brA -bvd -btb +eaK +fXa +pep btt -bux -buD -bwy -byf +hcN +syd +qBP +tAm btt -bCS -bAA -bAA +kKu +jei +jei bEI bEI bEI bHQ bEI -bJb +dTt bMl -bNb +fZr bLG bLG bLG bLG -bTx -bTo +iUs +tlQ bNR -bTx +iUs bMq -bLz +hYl cce bMu ccF -bOl +oZU cgN -cfO +jwu cje chZ chZ chZ chZ chZ -coj +xbW cje cnZ cje @@ -93295,88 +81439,88 @@ aAO aAO aAO aFV -aFa -aGo -aGo -aIk -aGo -aGp -aKg -uBB -aLy -aME +mmk +lgx +lgx +cPp +lgx +wbc +uzn +wsV +oUN +vPb aOl -aPs -aOr -aOr -aOr -aOr -aUL -aVM -aOr -aOr -aOr -aYb +dkZ +wkv +wkv +wkv +wkv +ieO +uTK +wkv +wkv +wkv +aEi bdl -bbb -bek -bez -bez -bbe -bbh +vSw +xUS +gfJ +gfJ +kEF +wjO bdl -bkl -bkl +cIL +cIL bmH -bnQ -bow +tom +jUo bmH -bpD -bkl +vZx +cIL btt -brB -bvd -btb +eBF +fXa +pep btt -buy -bvu -bwG -byg +saS +maQ +lGL +xCZ btt -bCS -bAA -bAA -bAA -bAA -bAA -akv -bAA -bAA -bJO -bNb +kKu +jei +jei +jei +jei +jei +sxS +jei +jei +xtw +fZr bNR bNR bOi bQf -bRI -bTp +pvx +xNE bUI -bWl -bXB -bYq +dWK +tIt +nbv bZC bMu cev -bOl +oZU cgN -cfM +vFq cgW cia cia cia cia cgW -cmw +fmI cgW cnX cje @@ -93507,18 +81651,18 @@ aAO aAO aAO aFW -aFa -aGo -aGp -aIk -aGp -aGo -aKg +mmk +lgx +wbc +cPp +wbc +lgx +uzn aEX -aLy -aME -aOm -aPt +oUN +vPb +wRy +glC aQC aQC aQC @@ -93530,67 +81674,67 @@ aQC aQC aQC bdl -bbb -bcv -beF -bgh -bbe -bbh +vSw +tsA +bjz +wzi +kEF +wjO bdl -bko -blz +tLX +uYb bmO -bnR -bnR +hNi +hNi bmO -blz -bqi +uYb +oaN btt -bul -bvd -bte -bub -buz -bvI +vba +fXa +upS +yaq +uxI +tzP bwI -byh +nVe btt -bCS -bAA -bDV -bAA -bAI -bGZ -akw -bAA -bAA -bJP -bNb +kKu +jei +hKx +jei +rPR +rjZ +eda +jei +jei +fnw +fZr bNR bNR bNR bNR -bRJ -bTq +dyy +prb bNR -bTx -bXC -bLz +iUs +pym +hYl bZD cbE bMt -cdU -ceV -cfN +noZ +kEu +nsC cje chZ chZ chZ chZ chZ -coj -cne -cnY +xbW +hCS +glZ cje cpg aAO @@ -93719,17 +81863,17 @@ aAO aAO aAO aFV -aFb -aGp -aGp -aIk -aGo -aGp -aKg +xFX +wbc +wbc +cPp +lgx +wbc +uzn aEX -aLy -aME -aOn +oUN +vPb +xDG aPw aQC aRM @@ -93742,67 +81886,67 @@ aXU aYV aZB bdl -bbh -bbe -beG -bgi -bbe -bhW +wjO +kEF +cVs +iAd +kEF +eYv bdl -bko -blz +tLX +uYb bmP -bnR -bnR +hNi +hNi bmP -blz -bqi +uYb +oaN btt -brD -wUP -btf +jlZ +tMS +tCp buc -buC -bvK -bwJ -byi +grY +vVq +tdA +uUW btt -bCS -bAA -bAA +kKu +jei +jei bEI bEI bEI bHQ bEI -bJb +dTt bMl -bNb +fZr bLG bLG bLG bLG -bTx -bTr +iUs +rUI bNR -bTx +iUs bMq -bLz +hYl bZE bWx cev -bOl -ceX -cfO +oZU +nqN +jwu cje chZ chZ chZ chZ chZ -coj -cnf -cnY +xbW +nlQ +glZ cje cpg aAO @@ -93931,17 +82075,17 @@ aAO aAO aAO aFV -aFa -aGo -aGp -ahM -aGp -aGo -aKg +mmk +lgx +wbc +kVz +wbc +lgx +uzn aKZ -aLA -aME -aOn +fOK +vPb +xDG aPB aQC aRN @@ -93954,67 +82098,67 @@ aTn aTn aZC bdl -bbi -bcB -beH -beH -beH -tvM +idZ +eKp +guT +guT +guT +uEz bdl -bkp -blA +fmF +jSQ bmH -bnS -bnS +vrq +vrq bmH -bkp -bkp +fmF +fmF btt -brE -bul -btg +hku +vba +gnW btt -buD -bux -bwK -byj +syd +hcN +lRP +gHU btt -bCS -bAA -bAA +kKu +jei +jei bEI -bFG -bFG +gtB +gtB bDM bEI -bJb +dTt bMk -bNb +fZr bLG bLG bLG bOh -bTx -bTm +iUs +fhE bUH -bTx +iUs bZp -bYr +gXo bZF bMu cev -cdV +joe cgQ -cfO +jwu cje cic cic cic cic cje -coj -cnf -cnY +xbW +nlQ +glZ cje cpg aAO @@ -94143,17 +82287,17 @@ aAO aAO aAO aFV -aFa -aGp -aGp -aGp -aGp -aGp -aKg +mmk +wbc +wbc +wbc +wbc +wbc +uzn aEX -aLC -aME -aOn +wJq +vPb +xDG aPD aQC aRN @@ -94168,9 +82312,9 @@ aZD bdl bdl bdl -beI -beI -beI +gjh +gjh +gjh bdl bdl bmM @@ -94183,50 +82327,50 @@ bmM bmM btt btt -bss -bth +lic +oug btt btt btt btt btt btt -bAO -bAA -bAA +xgZ +jei +jei bEz -bFH -bFH +kMK +kMK bDM bEI -bJb +dTt bMk -bKG +vdT bLG bLG bLG bLG -bRK -bTt -bUJ -bXU +dYW +lAa +kMZ +fBO bZp -bYs +iFg cce bMu cev -bOl -ceX -cfO +oZU +nqN +jwu cje chZ chZ chZ chZ chZ -coj -cnf -cnY +xbW +nlQ +glZ cje cpg aAO @@ -94355,17 +82499,17 @@ aAO aAO aAO aFV -aFb -aGo -aGp -aIk -aGo -aGo -aKg +xFX +lgx +wbc +cPp +lgx +lgx +uzn aEX -aLy -aMG -aOn +oUN +hiT +xDG aPG aQC aRO @@ -94374,44 +82518,44 @@ aTn aTn aVN aTn -aXW +oUS aQC bcx bcx -beq -bfR -bhs -biE -bhs -prq -biI -bhX -bhX -bmQ -bnT -beq -bhX -bpE -bhX -bhX -brF +ktY +lMR +vRP +cCX +vRP +tDp +xuw +mXi +mXi +uFf +vGw +ktY +mXi +tLY +mXi +mXi +mjg wIm bti -bhX -bhX -bhX -bpE -byk +mXi +mXi +mXi +tLY +vXw bBB -bCS -bAA -bAA +kKu +jei +jei bEI -bFH -bFH +kMK +kMK bHU bEI -bJb +dTt bMk bNd bNd @@ -94423,22 +82567,22 @@ bNd bNd bNd bZp -bYs -bZH -bLH +iFg +jOI +mnu bMu -cdW -ceX -cfO +phh +nqN +jwu cje chZ chZ chZ chZ chZ -coj -cne -cnY +xbW +hCS +glZ cje cpg aAO @@ -94567,18 +82711,18 @@ aAO aAO aAO aFW -aFa -aGp -aGo -aIk -aGp -aGp -aKg +mmk +wbc +lgx +cPp +wbc +wbc +uzn aEX -aLy -aME -aOo -aPH +oUN +vPb +sCh +rHj aQC aQC aQC @@ -94588,9 +82732,9 @@ aQC aQC aQC aQC -bcy -bdo -beq +nak +gKM +ktY bcz bcz bpf @@ -94613,42 +82757,42 @@ bud bcz bcz bcz -byl +tRZ bBB -bCS -bAA -bAA +kKu +jei +jei bEI -bFH -bFH +kMK +kMK bDM bEI -bJb +dTt bLv -bKH -bJT -bMF -bKH -bQg -bMF -bKH -bJT -bMF +nBE +qBG +pAv +nBE +ohE +pAv +nBE +qBG +pAv bZp -bYt -bZI -bTv -bLH -cdX +olf +lYU +kZf +mnu +dot cgN -cfO +jwu cje cic cic cic cic cje -coj +xbW cje cnZ cje @@ -94779,28 +82923,28 @@ aAO aAO aAO aFV -aFa -aGo -aGp -aIk -aGo -aGo -aKg -joJ -aLz -aMF +mmk +lgx +wbc +cPp +lgx +lgx +uzn +cPP +lvc +gyk aOp -aPI -aQD -aQB -aQB -aQB -aQB -aVO -aXj -aXX +dxt +evm +mpZ +mpZ +mpZ +mpZ +oHi +mKw +fuX aYW -bcy +nak bcA ber bdp @@ -94825,27 +82969,27 @@ bdp bdp bdp bwL -bym +vCZ bBC -bCS -bAA -bAA +kKu +jei +jei bEI -bFI -bFI +lPD +lPD bDM bEI -bJb +dTt bLv -bKH +nBE bMu -bMG -bOj +sJq +nsN bMu -bMF -bKH +pAv +nBE bUK -bMG +sJq bZp bMq bZK @@ -94853,14 +82997,14 @@ cbF bMq bZp cgN -cfP +lxM cje chZ cjh chZ chZ chZ -coj +xbW cje cnZ cje @@ -94991,16 +83135,16 @@ aAO aAO aAO aFV -aFc -aGq -aGq -aIl -aIJ -aIJ -aKh -pFp -aLy -aME +gdn +tIF +tIF +ris +idx +idx +eKX +fvU +oUN +vPb aOq aPJ aPJ @@ -95010,7 +83154,7 @@ aPJ aPJ aVP aXk -aXY +xuK aYW aWZ bcA @@ -95037,45 +83181,45 @@ bcA bcA bcA bes -bAA -bzE -bAA -bAA -bAA +jei +rWU +jei +jei +jei bEI -bFJ -bJl +olw +lCd bDM bEI -bJb +dTt bLv -bKH +nBE bMu -bMF -bOj +pAv +nsN bMu -bMF -bKH +pAv +nBE bWx -bMG -bJS -bYo -bZz -bTv -bJT -cdY +sJq +vFr +wPL +jMJ +kZf +qBG +xqv cgN -cfO +jwu cgX chZ chZ chZ chZ chZ -coj -cnh -coa -coG +xbW +pUC +cGm +lRn cnj aAO aAO @@ -95203,26 +83347,26 @@ aAO aAO aAO aFV -aEY -aEY -aEY -aGm -aGm -aEY -aKi +qNX +qNX +qNX +xED +xED +qNX +lnz aEX -aLD -aOr -aOr -aVM -aOr -aOr -aOr -aOr -aOr -aVQ +hAy +wkv +wkv +uTK +wkv +wkv +wkv +wkv +wkv +dUy aXl -aXZ +qlx aZa bcz bcA @@ -95249,33 +83393,33 @@ bcz bcz bcz bwM -byn -byn -byn -byn -bAM +mCP +mCP +mCP +mCP +nuf bEB bFK bCK bHW bID bID -bJQ -bKI +dTg +knR bMu -bJT -bJT +qBG +qBG bMu -bJT -bJT +qBG +qBG bMu -bJT -bJT -bYu -bZN -bJT +qBG +qBG +xZe +taM +qBG bMu -bOl +oZU cgS cgS cgS @@ -95432,10 +83576,10 @@ aMJ aMJ aMJ aMJ -aLy +oUN aXm -aXZ -aZb +qlx +wPN bcA bcA bes @@ -95444,26 +83588,26 @@ bcC bcC bcC bcC -blD +vyL bpf blC bcA bcA bcz bpf -blD +vyL bcC bcC bcC bcC -btk -buf -buE -btk +mhw +oiy +yau +mhw bjD -bAA +jei bBC -bCS +kKu bEI bDX bEI @@ -95472,8 +83616,8 @@ bEI bEI bEI bEI -bJR -bKJ +tcS +xiY bMu bMu bMu @@ -95487,9 +83631,9 @@ bMu cce bMu bMu -bOl +oZU cgT -cfQ +qyk cgZ cgZ cgZ @@ -95636,18 +83780,18 @@ aAO aAO aAO aLE -aMK -aOs -aPN -aQF -aRP -aTp -aUi -aUQ -aVY +dzP +qgJ +jcS +vic +lfX +rJZ +fdq +fpj +iko aXn -aYa -aZc +hPM +egO aZE bdp bet @@ -95656,52 +83800,52 @@ bcC aAO aAO bcC -blD +vyL bpf bcz bcA bcA bcz bpf -blD +vyL bcC aAO aAO bcC -btl -bug -bug -bvL +muC +sqA +sqA +crF bcz -bAA +jei bBB -bAQ -bCM +sDv +sYh bDX -bEC -bCM -bCM -bCM -bCM -bIY +gho +sYh +sYh +sYh +sYh +leh bMq -bKJ +xiY bMu bMu -bOk -bQh -bQh -bQh -bQh -bWm +uBG +tSp +tSp +tSp +tSp +olO bMu bMu cce bMu bMu -bOl +oZU cgT -cfR +ned cib cib cji @@ -95848,17 +83992,17 @@ aAO aAO aAO aLF -aML +pXQ aOu aPO aQG aPQ aTq -aUj +lex aUR -aLD -aOr -aYb +hAy +wkv +aEi bbC bcz bcz @@ -95868,28 +84012,28 @@ bcC aAO aAO bcC -blD +vyL bpf bcz bcA bcA bcz bpf -blD +vyL bcC aAO aAO bcC -btk -buh -buF -bvQ +mhw +eDU +sNF +hPQ bwO bwO bwO bwO bwO -bDY +wiY bwO bwO bwO @@ -95897,23 +84041,23 @@ bwO bwO bLv bLv -bKK +lpj bMu bMu -bOl -bQi -bQi -bQi -bQi -bLz +oZU +fSY +fSY +fSY +fSY +hYl bMu bMu cce bMu bMu -bOl +oZU cgT -cfR +ned chb cie cjj @@ -96060,13 +84204,13 @@ aAO aAO aAO aLF -aMM +kyv aOv aOv aQH aRQ aOv -aUk +lrm aUS aUS aUS @@ -96080,14 +84224,14 @@ bcC acL acL bcC -blD +vyL bpf bcz bcA bcA bcz bpf -blD +vyL bcC acL acL @@ -96104,32 +84248,32 @@ byp bDZ byp byp -bHa +sPA byp bIE -bJc -bJS -bKJ +gtp +vFr +xiY bMu bMu -bOl -bQi -bQi -bQi -bQi -bWn +oZU +fSY +fSY +fSY +fSY +pQF bMu bMu bZD cdE cdE -cdU -ceY -cfX -chf -cig -cjk -ckq +noZ +pFz +pGL +wKU +fDY +diG +lLa cla clH cmA @@ -96272,13 +84416,13 @@ aAO aAO aAO aLF -aMN +xdd aOv aPP aQI aRQ aOv -aUl +lyf aUS aVZ aXo @@ -96292,14 +84436,14 @@ aAO aAO aAO bcC -blD +vyL bpf bcz bcA bcA bcz bpf -blD +vyL bcC aAO aAO @@ -96319,26 +84463,26 @@ bFL bAE bys bIE -bJe -bJT -bKL +eBd +qBG +mdg bMu bMu -bOp -bQk -bQk -bQk -bQk -bWo +qKz +uIH +uIH +uIH +uIH +jMf bWx bMu cce bMu bMu -cea +evr cgT cib -cho +xqs cgT cgT ckr @@ -96484,14 +84628,14 @@ aAO aAO aAO aLF -aMO -aOw +luQ +ejc aPQ aQJ aRR aTq -aUm -aUT +ogN +hWz aWa aXp aYd @@ -96504,14 +84648,14 @@ aAO aAO aAO bcC -blD -bpg -blD +vyL +jDK +vyL bcA bcA -blD -bpg -blD +vyL +jDK +vyL bcC aAO aAO @@ -96530,8 +84674,8 @@ bEE bFM bHf bFM -bIF -bLy +iNP +kGn bMt bNj bMt @@ -96547,11 +84691,11 @@ bMt bZP cbH ccI -bOp -ceZ +qKz +xox bMu -cdT -cih +cCD +vNY cgT ckr cib @@ -96697,12 +84841,12 @@ aAO aAO aLE aLE -aMO -aPR -aQK -aRW -aTt -aUn +luQ +esE +vPv +jkL +gAc +gNw aUS aWb aXq @@ -96743,27 +84887,27 @@ bys bDZ bys bIE -bME +rTw bMu bNk bMu bMu bOt bQl -bOk -bLH -bQh -bLH -bLH -bLH -bLH -bWm +uBG +mnu +tSp +mnu +mnu +mnu +mnu +olO cce bMu -cfa -cfY -cfa -cih +faO +qZi +faO +vNY cgY cgY cgY @@ -96916,7 +85060,7 @@ aLE aLF aLE aUU -aWc +gvl aXr aYf aUU @@ -96924,22 +85068,22 @@ aAO aAO aAO aXu -beK -bgj -bhe +mTZ +biG +sgY bhw -bia -bpi -blF -blF -blF -blF -bpi -biU +kXc +ybx +fFC +fFC +fFC +fFC +ybx +vcv bhw -bqF -brH -bsu +kgD +dEC +qqW aXu aAO aAO @@ -96955,27 +85099,27 @@ byp bDZ byp bIE -bLA -bLz +gnU +hYl bNk bMu bMu bOt bQm -bOl -bTu -bUM -bJg -bXD -bYw -bZX -bLz +oZU +fcA +quf +xVf +vVB +xJH +jpb +hYl cce -bOk -cfb +uBG +hUY bMu -cdX -cih +dot +vNY cgY cks cid @@ -97136,22 +85280,22 @@ aAO aAO aAO aXu -beL -bgk -bjI -bhY -biO -bkw -blG -bmR -bnV -blG -bkw -bpI -bhY -bjI -bgk -bsv +nIk +wUw +pfl +kmL +vkJ +oWS +kNZ +qFD +umA +kNZ +oWS +lHD +kmL +pfl +wUw +wWA aXu aAO aAO @@ -97167,26 +85311,26 @@ byt bHh byt byt -bJf -bJU +kez +ebB bNk bMu bMu bOw bRZ -bOl -bTv +oZU +kZf bWz bWq bWq bWq bMq -bLz +hYl cce -bOl +oZU cgY cid -chp +pWl cgY cgY ckt @@ -97348,22 +85492,22 @@ aAO aAO aAO aXu -beM -bgl -bjJ +gwK +hET +iVE bhw biP biP blH -bia -biU +kXc +vcv boy bpk bpk bhw -bqG -bgl -bsw +xLR +hET +gWR aXu aAO aAO @@ -97373,34 +85517,34 @@ byu byu bAT bCO -bEd -bEF +wAI +oro bDa bzJ byu byt -bJg -bLz +xVf +hYl bNk bMu bMu bOw bMu -bRN -bTw +rBF +xlE bWz bWr bXE bYA bMq -bLz +hYl bZD -cdU -cfc -cfZ -chq -cii -cjl +noZ +xuE +lcu +ujD +mSf +qiH cku clb clK @@ -97553,7 +85697,7 @@ aAO aAO aUU aUS -aXw +rnv aUS aUU acL @@ -97564,14 +85708,14 @@ bhw bhw bhw bhw -biQ -bkx -bkx -bkx -bkx -bkx -bkx -bpJ +dbX +vuS +vuS +vuS +vuS +vuS +vuS +nHF bhw bhw bhw @@ -97585,31 +85729,31 @@ byu bzI bAV bCP -bEe +oRX bEH bFO bHj byu byt -bJh -bJV -bKM -bLH -bLH -bOx -bLH -bRO -bTy +qAR +uhL +dDy +mnu +mnu +psi +mnu +oyD +tKy bWz bWs bXF bYB bZp -cbI -bZI -cdX +rMi +lYU +dot cgY -cif +hGx chr cij cjm @@ -97757,16 +85901,16 @@ aAO aAO aLG aLG -aOy +ewY aPV aQL aLG aLG acL aUU -aWf -aXz -aYh +wOA +cyx +fNJ aUU aAO aXt @@ -97779,8 +85923,8 @@ aYM aYM aYM aYM -bia -biU +kXc +vcv aYM blH blH @@ -97808,7 +85952,7 @@ byt bKN bKN bKN -bOy +ybQ bKN bKN bKN @@ -97818,10 +85962,10 @@ bXG bYD bWz bWz -ccK +ofS bWz cgY -cif +hGx cid cid cjn @@ -97987,12 +86131,12 @@ aYM aYM aYM aYM -bhZ -biS -biS -biS -bmS -biU +pSb +wKf +wKf +wKf +qeE +vcv aYM blH blH @@ -98003,7 +86147,7 @@ blH blH blH blH -bvS +uvW bwQ bwQ bzK @@ -98012,28 +86156,28 @@ bwQ bwQ bEK bFQ -bHl +ukL bHY bIG bJi byt -bKP -bLI -bMI -bQp -bQn -bLI -bTz +ivD +yfG +rfg +eRy +ibU +yfG +guo bKN bWu bXH bYE bZY bYE -ccL +ngl ceb cgY -cga +xQW chs chr chr @@ -98199,12 +86343,12 @@ aYM aYM aYM aYM -bia -biT -bky -bky -bky -bnW +kXc +mUh +fBA +fBA +fBA +wmn aYM blH blH @@ -98217,10 +86361,10 @@ blH blH blH bwQ -byw -bzL -bAX -byK +vac +llV +upT +oNn bwQ bHZ bFR @@ -98231,9 +86375,9 @@ bHY byt bKN bKN -bMJ -bOC -bQo +paY +mRK +gVa bKN bKN bKN @@ -98411,8 +86555,8 @@ aYM aYM mbk aYM -bia -biU +kXc +vcv aYM aYM tAI @@ -98429,10 +86573,10 @@ blH buG bvT bwR -byG +hHY bzM -bAY -bzQ +lCe +iqF bwQ bJk bFS @@ -98441,13 +86585,13 @@ rqT bKO bJk byt -bKP -bLI -bMI -bOI -oIw -bLI -bTz +ivD +yfG +rfg +jNx +shA +yfG +guo bKN bWw bXJ @@ -98460,8 +86604,8 @@ bWz cgb chu cil -cjo -ckx +mkb +nco bYh aAO aAO @@ -98623,8 +86767,8 @@ aYM aYM aYM aYM -bia -biU +kXc +vcv aYM aYM aYM @@ -98641,10 +86785,10 @@ blH bkt blH bwQ -byH +nEp bzM -bAZ -bBc +wSJ +qXI bwQ bEM bFV @@ -98655,9 +86799,9 @@ bJo byt bKN bKN -bMK -bMI -bQq +oQE +rfg +xlM bKN bKN bKN @@ -98673,7 +86817,7 @@ cgc chv cim bWz -cky +bzN bYh aAO aAO @@ -98835,8 +86979,8 @@ bfT bcE bdq bew -bic -biV +gGK +gSY bdq bew bfT @@ -98853,10 +86997,10 @@ blH bkt blH bwS -byI +cRu bzO -bBa -bCT +vtL +ewS bwQ bJk bFW @@ -98865,27 +87009,27 @@ bHZ bKQ bJo byt -bKP -bLI -bMI -bOK -bQr -bLI -bTz +ivD +yfG +rfg +uiR +fCx +yfG +guo bKN bWy bXK bXK bXK bXK -ccP +mMI bXK bWz cgd chw ciw bWz -ckz +wwC bYh aAO aAO @@ -99065,10 +87209,10 @@ blH bkt blH bwQ -byJ -bzP -bBb -bCU +lWo +ume +iHE +xrX bwT bEO bEO @@ -99277,10 +87421,10 @@ blH bkt blH bwQ -byK -bzQ -bBc -bCV +oNn +iqF +qXI +rEC byL aAO aAO @@ -100109,7 +88253,7 @@ aYM aYM aYM aYM -bcF +wrE aYM aYM aYM @@ -100127,19 +88271,19 @@ blH aXu bAP bzS -bBe -bBe -bEg -bBe -bBe -bBe +hwo +hwo +wbf +hwo +hwo +hwo bzS -bBe -bBe -bBe -bEg -bBe -bBe +hwo +hwo +hwo +wbf +hwo +hwo bzS acL acL @@ -100339,19 +88483,19 @@ blH aXu bAP bzS -bBf -bBf -bBf -bBf -bBf -bBf -bIb -bBf -bBf -bBf -bBf -bBf -bBf +eSq +eSq +eSq +eSq +eSq +eSq +fpu +eSq +eSq +eSq +eSq +eSq +eSq bzS btd btd @@ -100551,19 +88695,19 @@ blH aXu bAP bzS -bBg -bBg -bEg -bBg -bBg -bBg +lho +lho +wbf +lho +lho +lho bzS -bBg -bBg -bBg -bEg -bBg -bBg +lho +lho +lho +wbf +lho +lho bzS acL acL @@ -100765,7 +88909,7 @@ bAP bzT bBd bzS -bEh +xTZ bzS bBd bHq @@ -100773,7 +88917,7 @@ bKk bHq bBd bzS -bEh +xTZ bzS bBd bON @@ -101185,21 +89329,21 @@ blH bkt bvU bwW -byM -bzW -bzW -bCW -bzW -bzW -bzW -bzW -bzW -bzW -bzW -bJW -bzW -bzW -bzW +nli +dUh +dUh +vef +dUh +dUh +dUh +dUh +dUh +dUh +dUh +kNI +dUh +dUh +dUh bwU aAO aAO @@ -101394,24 +89538,24 @@ bex bfV btx blH -buQ -bjI -bwY -byN -bzX -bzX -bCX -bzX -bzX -bzX -bzX -bzX -bzX -bzX -bJX -bKZ -bKZ -bML +tOd +pfl +qqt +flv +hVG +hVG +oCR +hVG +hVG +hVG +hVG +hVG +hVG +hVG +eHm +dDF +dDF +xEB bzV aAO aAO @@ -101606,24 +89750,24 @@ aYM aYM aYM blH -buR -buR -bzp -byO -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bzY -bMM +qgt +qgt +oyx +kHE +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +vXP +qWv bzV aAO aAO @@ -101821,21 +89965,21 @@ bui bui bvW bwW -byP -bzZ -bBk -bCY -bEk -bCY -bCY -bCY -bCY -bCY -bCY -bCY -bLb -bzp -bzp +ohU +qvL +oGz +pLf +fQD +pLf +pLf +pLf +pLf +pLf +pLf +pLf +uzy +oyx +oyx bwU aAO aAO diff --git a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm index 3c364367dc..2a3bcdaec4 100644 --- a/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm +++ b/maps/map_files/FOP_v3_Sciannex/Fiorina_SciAnnex.dmm @@ -7,159 +7,15 @@ }, /turf/open/space, /area/fiorina/oob) -"aac" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"aad" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"aae" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"aaf" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"aag" = ( -/obj/item/trash/eat, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aah" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"aai" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"aaj" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/chapel) "aak" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "4" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"aam" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"aan" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"aao" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"aap" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aaq" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"aar" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"aas" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"aat" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"aau" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"aav" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/weapon/baton, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"aaK" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"aaz" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/ice_lab) "aaW" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison, @@ -168,28 +24,60 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"abm" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"abH" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "abJ" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ icon = 'icons/obj/structures/doors/2x1prepdoor.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"acx" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" +"abW" = ( +/obj/structure/sign/safety/fire_haz, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"aca" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"ace" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 }, -/area/fiorina/station/central_ring) -"adk" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aco" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"acw" = ( +/obj/item/newspaper, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"acA" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "adl" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table/reinforced/prison, @@ -198,49 +86,76 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"adH" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"adz" = ( +/obj/item/broken_device, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"adY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"aeE" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aeF" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"aeI" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) +"aeJ" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/area/fiorina/station/disco) -"aee" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"aeU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"afU" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"aem" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/prison{ - icon_state = "bluefull" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/power_ring) -"afk" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"afW" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 }, -/area/fiorina/oob) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"afY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "agi" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) +"agj" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"agl" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) "agv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/peach{ @@ -282,33 +197,34 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"agT" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison/chapel_carpet{ +"ahd" = ( +/obj/item/device/binoculars/civ, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"ahe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + pixel_y = 21 }, -/area/fiorina/station/research_cells) -"ahn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"aht" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ahu" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ahz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/item/storage/firstaid/adv{ + pixel_x = 9; + pixel_y = 2 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "ahR" = ( /obj/structure/monorail{ name = "launch track" @@ -325,54 +241,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"aiK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"aij" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"aiy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) +"aiT" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) "aiV" = ( /obj/structure/bed/roller, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"aja" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +"aje" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/medbay) -"ajh" = ( -/obj/item/device/flashlight/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" +"ajn" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"ajt" = ( +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) -"aji" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"ajp" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ajr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/fiorina/station/security) "aju" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -385,72 +283,39 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/fiorina/oob) -"ajD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"ajH" = ( +"ajU" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"ako" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"ajK" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"ajN" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"ajX" = ( -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +"akt" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) -"akc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"akV" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"akY" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/darkyellow2, /area/fiorina/station/telecomm/lz1_cargo) -"akw" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +"alq" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/transit_hub) -"akE" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/servers) +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) "alr" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -459,25 +324,10 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"alu" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/oob) -"alJ" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"alX" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) +"alI" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "amd" = ( /obj/effect/decal/hefa_cult_decals/d96, /obj/item/paper/crumpled/bloody, @@ -489,21 +339,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"ami" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"amj" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "amx" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -519,6 +354,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"anj" = ( +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "anm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -555,6 +394,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"anv" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) "anG" = ( /obj/structure/largecrate/supply, /obj/structure/platform_decoration{ @@ -575,6 +421,17 @@ }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"anS" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "aoa" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ name = "\improper Null Hatch REPLACE ME"; @@ -583,16 +440,37 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"aod" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"aoe" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"aox" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"aoD" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "apf" = ( /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"app" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"apn" = ( +/obj/item/reagent_container/food/drinks/bottle/tomatojuice, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "apw" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) @@ -602,11 +480,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"aqI" = ( -/turf/open/floor/prison{ - icon_state = "red" +"apH" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"aqz" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, -/area/fiorina/station/security) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "aqJ" = ( /obj/structure/monorail{ dir = 6; @@ -614,33 +500,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aqS" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"aqW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"arf" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) "arm" = ( /obj/structure/platform{ dir = 4 @@ -653,33 +512,28 @@ }, /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"arq" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"aru" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, +"ary" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"arS" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" +"arB" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"arO" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/servers) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "arY" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -688,23 +542,19 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"ask" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"ast" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +"asi" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"asI" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/telecomm/lz2_maint) +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"asN" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "atl" = ( /obj/structure/platform{ dir = 1 @@ -723,13 +573,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"atm" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) +"ato" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "atp" = ( /obj/item/book/manual/security_space_law{ pixel_x = 3; @@ -737,6 +584,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) +"atq" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "atx" = ( /obj/structure/barricade/metal{ health = 250; @@ -744,169 +601,108 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"atE" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/power_ring) -"auH" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/obj/item/bodybag{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"auQ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"avf" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"avl" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"avs" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +"atX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"aul" = ( +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"avI" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"auI" = ( +/obj/item/inflatable, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"auP" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"avX" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +"avm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) "avY" = ( /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"awh" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/item/storage/toolbox, -/obj/item/storage/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"awo" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "awx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"awF" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "axb" = ( /obj/item/clothing/suit/storage/marine/specialist, /turf/open/floor/plating/prison, /area/fiorina/oob) -"axi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"axs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/chapel) -"axA" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/park) +"axz" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"axA" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; name = "\improper funny telephone booth"; pixel_x = 2; pixel_y = -10 }, /turf/closed/wall/prison, /area/fiorina/station/security) -"ayv" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"ayA" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"ayK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" +"axU" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"axZ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ayf" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"ayM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 7 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ayh" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.5 }, -/obj/item/ammo_magazine/pistol/heavy{ - pixel_y = 12 +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"ayD" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "ayX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -914,24 +710,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"azg" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"azs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) +"aze" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "azv" = ( /obj/structure/girder, /turf/open/floor/plating/prison, @@ -951,27 +734,6 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"azI" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"azJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) "azN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -979,17 +741,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"azT" = ( -/obj/item/inflatable, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "azZ" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) @@ -1001,59 +752,42 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"aAH" = ( -/obj/item/device/multitool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aAM" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"aBb" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +"aAp" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, -/area/fiorina/station/chapel) -"aBk" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"aAu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aAy" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"aAN" = ( +/obj/structure/largecrate/random/secure, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"aAQ" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "birthday" }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "aBm" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"aBs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) +"aBF" = ( +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "aBJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/chef_recipes{ @@ -1065,35 +799,15 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/prison, /area/fiorina/station/security) -"aBX" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"aCi" = ( -/obj/structure/prop/invuln{ - desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; - icon = 'icons/obj/structures/doors/celldoor.dmi'; - icon_state = "door_closed"; - layer = 2.5; - name = "cell door" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"aCn" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"aBV" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) +"aCu" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/civres_blue) "aCC" = ( /obj/item/tool/soap{ pixel_x = 2; @@ -1101,46 +815,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"aCT" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +"aCR" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/greencorner/east, +/area/fiorina/station/chapel) +"aCZ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"aCV" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = -9; - pixel_y = -8 - }, -/obj/item/explosive/grenade/high_explosive/frag{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"aDh" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aDe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/area/fiorina/oob) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "aDi" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/prison, /area/fiorina/station/medbay) -"aDl" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"aDo" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "aDr" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -1149,120 +848,75 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"aDs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/item/storage/syringe_case/burn{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"aDz" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple, /area/fiorina/station/research_cells) -"aDw" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"aDC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 8; - pixel_y = 1 +"aDO" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 }, -/obj/item/book/manual/security_space_law{ - pixel_x = -4; +/obj/item/bodybag{ pixel_y = 4 }, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "aEi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"aFg" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aFd" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/area/fiorina/station/security/wardens) +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "aFn" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"aFp" = ( -/obj/structure/machinery/defenses/tesla_coil{ - faction_group = list("CLF") - }, -/turf/open/floor/plating/plating_catwalk, -/area/fiorina/tumor/ship) -"aFJ" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"aFK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aFV" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"aFT" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "aFZ" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"aGg" = ( -/obj/structure/window/reinforced{ +"aGB" = ( +/obj/item/tool/warning_cone, +/obj/structure/barricade/metal{ dir = 8; - health = 80 - }, -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"aGs" = ( -/obj/structure/window/framed/prison/reinforced{ - opacity = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" + health = 150; + icon_state = "metal_2" }, -/area/fiorina/station/chapel) -"aGS" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"aGE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"aGI" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "aGV" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, /area/fiorina/station/security) +"aHe" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "aHg" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -1271,13 +925,13 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzI) -"aHx" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aHo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Green Block Canteen Vendor" }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "aHA" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -1285,20 +939,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"aHY" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/storage/pill_bottle/alkysine, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" +"aHE" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"aHM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "aIf" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -1307,98 +958,40 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"aIh" = ( +"aIP" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aJx" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"aIp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aIv" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/box/holobadge{ - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"aIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"aIK" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison{ +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"aJC" = ( +/obj/structure/holohoop{ dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"aIR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"aIX" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/central_ring) -"aIZ" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + id = "basketball"; + side = "left" }, -/area/fiorina/tumor/servers) -"aJf" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/handrail{ + dir = 8 }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"aJE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"aJg" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, -/area/fiorina/maintenance) -"aJU" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) "aJX" = ( /obj/structure/bed/chair{ dir = 8 @@ -1410,43 +1003,24 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"aKc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"aKo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "aKA" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space, /area/fiorina/oob) -"aKF" = ( -/obj/item/storage/backpack{ - pixel_x = -11; - pixel_y = 15 - }, -/obj/item/trash/syndi_cakes, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"aKW" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"aLj" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) +"aKY" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aLi" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) "aLp" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -1456,12 +1030,30 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"aLC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +"aLr" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/central_ring) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"aLA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"aLG" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"aLH" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"aLM" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) "aLR" = ( /obj/item/stack/medical/bruise_pack, /turf/open/floor/prison, @@ -1473,22 +1065,6 @@ "aMg" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/ice_lab) -"aMq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/civres_blue) -"aMz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "aMM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -1496,87 +1072,36 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"aMZ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"aNn" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"aNw" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"aNP" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "aOc" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"aOd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"aOh" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/oob) -"aPd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"aPi" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"aPq" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" +"aOe" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"aOf" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"aOH" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"aOI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"aPb" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "aPD" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -1586,22 +1111,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"aPF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_7" - }, -/turf/open/floor/prison{ - icon_state = "redfull" +"aPE" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "aPH" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security/wardens) +"aPN" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "aPU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) +"aQl" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "aQB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -1617,30 +1150,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"aQE" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"aQK" = ( -/obj/item/trash/uscm_mre, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"aQM" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "aQU" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -1648,53 +1157,43 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"aQZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/fiorina/station/security) -"aRb" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "aRk" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"aRt" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" +"aRn" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) -"aRx" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 4 }, +/obj/item/coin/uranium{ + desc = "You found one of the three uranium coins. It is entirely worthless." + }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"aRB" = ( +"aRt" = ( /obj/item/ammo_casing{ - icon_state = "cartridge_2" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "casing_5_1" }, +/turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"aRw" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "aRG" = ( /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"aRM" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"aRN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "aRT" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -1704,46 +1203,37 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"aRY" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"aSw" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) +"aRV" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) "aSz" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/research_cells) -"aSK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"aSM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "aSS" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) +"aSV" = ( +/obj/item/clothing/under/shorts/red, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) +"aTc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) "aTo" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/transit_hub) +"aTq" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "aTE" = ( /obj/structure/bed/chair{ dir = 1 @@ -1757,194 +1247,105 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"aUa" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"aUx" = ( -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"aTZ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/area/fiorina/station/medbay) -"aUM" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"aUK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"aVa" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "aVd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"aVh" = ( -/obj/structure/monorail{ - dir = 4; - name = "launch track" +"aVg" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"aVv" = ( +/obj/structure/closet, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"aVC" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/area/fiorina/station/transit_hub) -"aVA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "aVE" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"aVJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"aVK" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"aVN" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"aVS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"aVT" = ( -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - pixel_y = 19 - }, -/obj/item/stack/sheet/wood, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "Somehow, it still functions."; - layer = 3.1; - name = "discarded camera console"; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"aVU" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +"aVV" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"aWc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "aWk" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz2_maint) -"aWo" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"aWD" = ( -/obj/item/device/taperecorder{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aWs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/fiorina/station/chapel) -"aWR" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"aWB" = ( +/obj/structure/window{ + dir = 1 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "aWV" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"aXk" = ( -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) "aXn" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/fiorina/tumor/aux_engi) -"aXK" = ( -/obj/item/clothing/under/shorts/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"aXM" = ( +"aXR" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) +"aZf" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/power_ring) +"aZw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/maintenance) -"aYA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"aYZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"aZz" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) +/obj/item/restraint/handcuffs, +/turf/open/floor/prison, +/area/fiorina/station/security) "aZD" = ( /obj/structure/platform{ dir = 8 @@ -1961,43 +1362,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"aZJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "aZN" = ( /obj/item/toy/crayon/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"aZQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"aZU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +"bam" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) -"aZZ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"bac" = ( -/obj/item/stack/sheet/wood{ - pixel_x = 1; - pixel_y = -3 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) "baC" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station) @@ -2006,19 +1384,21 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"baL" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "bby" = ( /turf/open/floor/prison, /area/fiorina/tumor/civres) -"bbT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) +"bbz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"bcb" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "bce" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -2028,65 +1408,46 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bcg" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"bcs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"bcF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "bcH" = ( /obj/item/tool/screwdriver, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"bcV" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"bdI" = ( -/obj/structure/bed/roller, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"bdL" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"bdS" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -2 +"bcL" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"bcW" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"bcY" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"bdf" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/station/chapel) +"bdo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) +"bdD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"bdZ" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/central_ring) +"bea" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/civres) "bej" = ( /obj/structure/barricade/handrail/type_b, /obj/structure/barricade/handrail/type_b{ @@ -2094,23 +1455,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"bel" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) -"beV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" +"beP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "beW" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -2118,15 +1470,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"bfb" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +"bfd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "bfg" = ( /obj/structure/surface/rack, /obj/item/storage/bible/hefa{ @@ -2135,14 +1482,9 @@ /obj/item/storage/bible/hefa, /turf/open/floor/prison, /area/fiorina/station/medbay) -"bfs" = ( -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"bfk" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/botany) "bfx" = ( /obj/item/trash/barcardine, /turf/open/floor/prison, @@ -2156,14 +1498,6 @@ "bfZ" = ( /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"bgb" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) "bgc" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -2175,31 +1509,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"bgm" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"bgq" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "bgy" = ( /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bgG" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"bgR" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"bgI" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_2" }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "bha" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/station/medbay) +"bhc" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"bhg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/stack/rods, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"bhl" = ( +/obj/item/device/flashlight/on, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) "bht" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -2219,33 +1562,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"bhM" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"bhR" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"bhP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bhX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) "bis" = ( /turf/closed/wall/prison, /area/fiorina/station/chapel) -"biH" = ( -/obj/structure/machinery/door/poddoor/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) +"biB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "biJ" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -2253,34 +1585,20 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/research_cells) -"bjk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"bjx" = ( -/turf/open/floor/prison{ +"bja" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"bjb" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"bjy" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"bjO" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_y = 21 }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"bjd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreen/southeast, /area/fiorina/station/medbay) "bka" = ( /obj/structure/monorail{ @@ -2289,12 +1607,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bkS" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +"bkp" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"bkz" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"bkA" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "blb" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -2303,16 +1630,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"bln" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +"blm" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "blG" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2; @@ -2320,45 +1646,44 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"blQ" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"bmq" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"bmu" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) "bmE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"bmO" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) +"bmS" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) "bmV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bmX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) +"bne" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/civres_blue) +"bnt" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "bnA" = ( /turf/closed/wall/prison, /area/fiorina/station/transit_hub) +"bnC" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bnK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -2371,15 +1696,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"bod" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"bnP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/park) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "boe" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/prison, @@ -2388,124 +1712,66 @@ /obj/item/stool, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"bop" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) "bou" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"bow" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +"boC" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bpq" = ( -/obj/item/stack/sheet/wood{ - amount = 10 +"boG" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"bpb" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) +"bpI" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"bqc" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/flight_deck) +"bqJ" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"bpC" = ( -/obj/item/tank/jetpack/carbondioxide, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"bpG" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"bpK" = ( -/obj/structure/surface/table/reinforced/prison, +"bqU" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, /obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4 }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"bqy" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +"brI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/obj/structure/platform_decoration{ - dir = 10 +/obj/structure/platform_decoration/kutjevo, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"bra" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"brr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"bry" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/tumor/servers) -"brI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space/basic, -/area/fiorina/oob) -"brS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"bsm" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) -"bso" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_l_w" +/turf/open/space/basic, +/area/fiorina/oob) +"bsg" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"bso" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_l_w" }, /area/fiorina/tumor/ship) "bsq" = ( @@ -2515,69 +1781,50 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"bsF" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"bsJ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/flight_deck) -"btq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"btz" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"btB" = ( -/obj/structure/cargo_container/grant/right{ - density = 0; - desc = "A huge industrial shipping container. You could slip just behind it."; - health = 5000; - layer = 4; - unacidable = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"btP" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" +"bsB" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/power_ring) -"bux" = ( -/obj/structure/toilet{ +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"bum" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "buz" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"buH" = ( +/obj/structure/platform, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "buO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/mask/surgical, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"bvk" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/aux_engi) +"bvv" = ( +/obj/item/device/cassette_tape/nam, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bvx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) "bvK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/atmospipes{ @@ -2585,37 +1832,43 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"bvQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"bvW" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "bvY" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"bxa" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"bwM" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"bxl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"bxr" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"bwQ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/maintenance) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"bxg" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_cargo) +"bxt" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/station/chapel) +"bxR" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "bxW" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -2627,50 +1880,51 @@ icon_state = "stan27" }, /area/fiorina/tumor/ship) +"byi" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"byl" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "bym" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/lz/near_lzI) -"byn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"byt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"bzC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"byH" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"byI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/fiorina/tumor/servers) -"bzG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"byS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"bzr" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/area/fiorina/station/disco) -"bzH" = ( -/obj/structure/sign/poster{ - icon_state = "poster7"; - pixel_x = -26; - pixel_y = 6 +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/medbay) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "bzL" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/prison, @@ -2678,49 +1932,55 @@ "bzO" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"bzU" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"bAb" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) +"bzY" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/civres) +"bAa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "bAc" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/aux_engi) -"bAS" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"bAf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"bAp" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/tumor/ice_lab) -"bAU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ +"bBy" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkbrown2" + pixel_y = 21 }, -/area/fiorina/station/park) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "bBA" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/station/power_ring) +"bBH" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"bBK" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "bBS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -2732,89 +1992,83 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"bCk" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/station/central_ring) +"bCe" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) "bCu" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"bCB" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" + }, +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" + }, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"bDa" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "bDd" = ( /obj/structure/machinery/photocopier, /turf/open/floor/prison, /area/fiorina/station/security) -"bDu" = ( -/obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"bDx" = ( -/obj/item/tool/extinguisher/mini, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"bDC" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire/empty, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"bDD" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"bDN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +"bDy" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/area/fiorina/station/park) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bDU" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"bEn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +"bDY" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) -"bEO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"bEb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/chapel) -"bEP" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/chapel) -"bET" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/bright_clean2/southwest, +/area/fiorina/station/power_ring) +"bEd" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"bEi" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"bEB" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/tumor/aux_engi) +"bEC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "bEX" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -2834,88 +2088,39 @@ layer = 3 }, /area/fiorina/oob) +"bFp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "bFr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/chapel) -"bFt" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) "bFA" = ( /turf/closed/shuttle/ert{ icon_state = "wy27" }, /area/fiorina/station/medbay) -"bFN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/glass/bottle/cyanide{ - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"bFR" = ( -/obj/item/ammo_magazine/rifle/m16, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bGb" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/area/fiorina/station/security) -"bFY" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"bGr" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"bGs" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"bGt" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"bGy" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"bGf" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"bGO" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"bGQ" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "bGT" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -2925,28 +2130,20 @@ dir = 9 }, /area/fiorina/station/civres_blue) -"bHl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) "bHv" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"bHI" = ( -/obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bHJ" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/tumor/servers) +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "bHY" = ( /obj/item/weapon/gun/flamer, /obj/structure/closet/secure_closet/guncabinet, @@ -2955,31 +2152,29 @@ /obj/item/storage/pouch/flamertank, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"bIg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"bII" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"bID" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"bIM" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/medbay) -"bIX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) "bIZ" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/station/civres_blue) +"bJa" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) "bJb" = ( /obj/structure/closet/cabinet, /obj/item/device/encryptionkey/WY, @@ -2992,49 +2187,21 @@ /obj/item/stack/cable_coil/pink, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"bJp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"bJz" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/tumor/servers) -"bJF" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/chapel) +"bJP" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ship) +"bJR" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"bJX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "bKs" = ( /obj/item/tool/warning_cone, /turf/open/floor/prison, /area/fiorina/station/disco) -"bKM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"bLd" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "bLg" = ( /obj/structure/platform{ dir = 4 @@ -3046,77 +2213,74 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"bLz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"bLm" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison{ +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "cell_stripe" + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/park) -"bMd" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/oob) +"bLn" = ( +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/area/fiorina/tumor/aux_engi) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"bLI" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) "bMh" = ( /obj/item/frame/table/wood/fancy, /obj/item/paper/prison_station/warden_note, /obj/item/tool/pen, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"bMr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"bMq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) "bMu" = ( /obj/structure/curtain{ layer = 3 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"bMA" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket" - }, -/turf/open/floor/prison{ - icon_state = "blue" +"bMI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "bNf" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"bNz" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"bNA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"bNN" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) +"bNi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"bNF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) "bNP" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -3127,12 +2291,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"bOh" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +"bOd" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "bOz" = ( /obj/structure/monorail{ name = "launch track" @@ -3143,12 +2305,10 @@ opacity = 0 }, /area/fiorina/oob) -"bOK" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) +"bOW" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "bPf" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -3157,32 +2317,59 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"bPk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"bPi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "bPl" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) +"bPy" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "bPG" = ( /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"bPI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "bPK" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 5 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bPS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"bPL" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"bPN" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "bQh" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -3200,13 +2387,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bQx" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "bQy" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/spray/pepper, @@ -3228,23 +2408,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"bRu" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"bRU" = ( -/obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"bRh" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/area/fiorina/station/disco) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"bRi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"bSk" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"bSE" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "bSM" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ draw_warnings = 0; @@ -3258,68 +2440,45 @@ /obj/item/tool/surgery/scalpel, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"bST" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"bTe" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +"bSQ" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"bSS" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"bSY" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) +"bTb" = ( +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) "bTo" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"bTG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/shotgun/highchance, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"bTI" = ( -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/medbay) "bUw" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"bUy" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "bUB" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/space, /area/fiorina/oob) -"bUH" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"bVh" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) +"bUL" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "bVk" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -3335,12 +2494,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"bVY" = ( -/obj/structure/coatrack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "bVZ" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -3352,48 +2505,50 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"bWm" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "bWr" = ( /obj/structure/inflatable/popped, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"bWE" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"bXa" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, +"bWX" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; layer = 3.5 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"bWY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/mirror{ + pixel_x = -29 }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"bWZ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"bXg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/ice_lab) -"bXk" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"bYq" = ( -/obj/item/ammo_casing{ - icon_state = "casing_10_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"bXK" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"bXX" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "bYv" = ( /obj/structure/filingcabinet, /turf/open/floor/prison, @@ -3405,16 +2560,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) -"bYG" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) +"bYN" = ( +/obj/item/stack/sandbags_empty, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"bYR" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "bYS" = ( /obj/structure/monorail{ dir = 4; @@ -3422,37 +2575,56 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"bZu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"bZC" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) +"bZf" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) "bZY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"cah" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"cap" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cax" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"caA" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/tumor/aux_engi) "caF" = ( /turf/open/floor/wood, /area/fiorina/station/lowsec) +"caJ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"caS" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "cbb" = ( /obj/structure/monorail{ dir = 5; @@ -3460,121 +2632,122 @@ }, /turf/open/space, /area/fiorina/oob) -"cbe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"cbC" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"cbK" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" +"cbd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"cbo" = ( +/turf/open/floor/prison/whitepurplecorner/north, +/area/fiorina/station/research_cells) +"cbr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "cbN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station) +"cck" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "ccH" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/civres_blue) -"cdD" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"cel" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cdd" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/security) +"cdy" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"cdW" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"ceh" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "ceC" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) -"ceZ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"cfc" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"cfg" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "cfj" = ( /obj/item/trash/cigbutt, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"cft" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ +"cfy" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"cfE" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cfL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"cfz" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" + pixel_y = 5 }, -/area/fiorina/tumor/servers) -"cfD" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cgk" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cgl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cgw" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cgC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) -"cfN" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"cgO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/lz/near_lzI) -"cgE" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cgP" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"chk" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"chw" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "chA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -3584,22 +2757,15 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"chJ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"chS" = ( -/obj/structure/window, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"chN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "chT" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -3608,16 +2774,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"cie" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "cif" = ( /obj/structure/platform{ dir = 4 @@ -3639,42 +2795,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"ciZ" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"cjl" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/newspaper, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"cjp" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"cjs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"cjh" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/station/central_ring) "cjA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -3689,64 +2812,59 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"cjF" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"cjS" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"ckj" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) +"cki" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/oob) "ckm" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"ckx" = ( -/obj/structure/platform{ - dir = 1 +"cko" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"cku" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/obj/item/fuelCell, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"cky" = ( -/obj/structure/bed/roller, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"ckA" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"ckH" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "brflowers_1" }, -/area/fiorina/station/telecomm/lz1_cargo) -"ckD" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"ckK" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/area/fiorina/station/disco) -"cll" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"clg" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/platform_decoration{ + dir = 9 }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"clj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) "cls" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, @@ -3764,55 +2882,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"clP" = ( -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"clZ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"cmg" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"cmp" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/station/medbay) -"cmj" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"cmm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"cmz" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/turf/open/space, -/area/fiorina/oob) "cmI" = ( /obj/structure/platform{ dir = 8 @@ -3835,92 +2908,71 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"cmW" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/station/chapel) "cnl" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"cnn" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) +"cns" = ( +/obj/item/frame/toolbox_tiles_sensor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "cnu" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/fiorina/station/disco) -"cnU" = ( -/obj/structure/machinery/computer/atmos_alert, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"cnW" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"coh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"cnI" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "coj" = ( /obj/item/stool, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"coT" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"coZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"coV" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/turf/open/floor/prison{ +/obj/structure/barricade/handrail/type_b{ dir = 4; - icon_state = "greenfull" + layer = 3.5 }, -/area/fiorina/tumor/civres) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "cph" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/spacecash/c20, /turf/open/floor/prison, /area/fiorina/station/security) +"cpG" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"cpM" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "cpP" = ( /turf/closed/shuttle/elevator/gears, /area/fiorina/station/telecomm/lz1_cargo) -"cpS" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison{ +"cpR" = ( +/obj/item/ammo_casing{ dir = 8; - icon_state = "darkbrown2" + icon_state = "cartridge_2" }, +/obj/effect/spawner/random/gun/smg, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) +"cpU" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "cpW" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -3933,34 +2985,38 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"cqy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "cqz" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/oob) -"cqH" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"cqJ" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"cqK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/subspace/amplifier{ + pixel_x = 6; + pixel_y = 3 }, -/area/fiorina/station/medbay) -"cqU" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/stock_parts/subspace/analyzer{ + pixel_x = -9; + pixel_y = 8 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cqZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 32 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"crh" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "cri" = ( /obj/structure/machinery/computer/prisoner, /obj/structure/window/reinforced{ @@ -3971,23 +3027,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"crw" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzI) -"crH" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +"crm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"crL" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, /area/fiorina/tumor/aux_engi) "crM" = ( /obj/structure/prop/invuln/minecart_tracks{ @@ -3995,35 +3041,25 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"crO" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/security) -"csl" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"cso" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) "csp" = ( /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) +"csG" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "csH" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"csV" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "ctc" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" @@ -4034,184 +3070,80 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"ctz" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison, -/area/fiorina/station/telecomm/lz1_tram) +"ctv" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "ctD" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"cua" = ( -/obj/structure/sign/safety/fire_haz, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"cui" = ( +"ctT" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_cargo) +"cux" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"cuy" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_container/syringe{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"cvf" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"cvk" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ +/obj/item/book/manual/surgery, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "yellow" + pixel_y = 21 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"cuC" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"cuF" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"cuW" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "cvn" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"cvp" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"cvq" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"cvr" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/oxygentank{ - layer = 2.6 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) "cvL" = ( /obj/effect/landmark/nightmare{ insert_tag = "gamertime" }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"cwB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"cwO" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"cwU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"cxd" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"cxe" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"cxn" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"cxF" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"cyb" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +"cwC" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"cxr" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"cxx" = ( +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) -"cyd" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "cye" = ( /obj/item/trash/pistachios, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"cyu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"cyL" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/tumor/aux_engi) -"cyO" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"cyg" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"cyy" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cyC" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "cyU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic/small_stack, @@ -4220,98 +3152,68 @@ "cyV" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"czC" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"cze" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"czn" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"czH" = ( +/obj/structure/closet/basketball, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) -"cAv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/central_ring) -"cAA" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"cAV" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" +"cAm" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"cAr" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cAu" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/tumor/ice_lab) +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cAS" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "cAW" = ( /turf/open/space/basic, /area/fiorina/oob) -"cBB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"cBz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cBI" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "cBK" = ( /obj/item/shard{ icon_state = "large" }, /turf/open/space, /area/fiorina/oob) -"cBQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"cBT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"cBU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "cBY" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"cCq" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "cCt" = ( /obj/structure/barricade/wooden, /turf/open/floor/wood, @@ -4328,46 +3230,42 @@ /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/wood, /area/fiorina/station/chapel) -"cDj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"cCI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"cDk" = ( +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "cDl" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"cDr" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"cDZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +"cDo" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"cDs" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"cDQ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "cEf" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"cEl" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/maintenance) "cEw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/transit_hub) @@ -4376,12 +3274,12 @@ icon_state = "stan_inner_t_right" }, /area/fiorina/tumor/ship) -"cEB" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +"cEC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/fiorina/maintenance) +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/civres_blue) "cFf" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/double/blue{ @@ -4391,6 +3289,17 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"cFj" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cFk" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "cFn" = ( /obj/structure/largecrate/random/case, /turf/open/floor/prison, @@ -4399,77 +3308,50 @@ /obj/item/tool/mop, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cFy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"cFC" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"cFT" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"cFE" = ( -/obj/item/clothing/mask/cigarette, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"cFN" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"cFQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "cFX" = ( /obj/structure/largecrate/supply/supplies, /obj/effect/spawner/random/goggles/lowchance, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cGg" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"cGm" = ( +"cGb" = ( +/obj/structure/platform, +/obj/item/fuel_cell, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"cHp" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/chapel) -"cHq" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"cHs" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 2; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "cHx" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -4489,12 +3371,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"cHJ" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cIa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"cIi" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/tumor/servers) +"cIl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/medbay) +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "cIJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -4507,13 +3399,6 @@ /obj/item/storage/briefcase/inflatable, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"cJa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "cJo" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ @@ -4523,33 +3408,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"cJv" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"cJw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"cJz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) +"cJQ" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2, +/area/fiorina/station/lowsec) "cJW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, @@ -4557,23 +3419,12 @@ "cKa" = ( /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"cLc" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/bodybag/tarp/reactive{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"cLr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"cKm" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) "cLt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible/hefa{ @@ -4588,39 +3439,46 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"cLE" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"cLR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" +"cLv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 14 }, -/area/fiorina/station/botany) -"cMg" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"cLY" = ( +/obj/item/fuel_cell, +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, +/turf/open/floor/plating/prison, /area/fiorina/station/lowsec) "cME" = ( /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"cMJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cMH" = ( +/obj/structure/prop/structure_lattice{ + health = 300 }, +/obj/structure/prop/structure_lattice{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"cNa" = ( +/obj/item/tool/weldpack, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/civres_blue) +"cNm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "cNn" = ( /obj/structure/platform_decoration{ dir = 8 @@ -4636,34 +3494,30 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"cOb" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"cOl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"cOn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) +"cOo" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/wood, +/area/fiorina/station/park) "cOq" = ( /obj/item/disk, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"cOJ" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/servers) +"cOR" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid3" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"cPn" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "cPq" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -4690,50 +3544,46 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"cQn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"cPW" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"cPY" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"cQb" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"cQj" = ( +/obj/structure/window{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"cQq" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "cQu" = ( /obj/item/weapon/gun/energy/taser, /turf/open/floor/prison, /area/fiorina/station/security) -"cQA" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"cQG" = ( +"cQv" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"cQX" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"cRs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"cRy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "cRB" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ @@ -4754,54 +3604,73 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"cRS" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/botany) +"cRY" = ( +/obj/item/clothing/mask/cigarette/bcigarette, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"cSV" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"cTc" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cTk" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"cTl" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_tram) "cTr" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"cTA" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"cVk" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" +"cTy" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cUw" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"cVf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "cVl" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 }, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"cVr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/prison{ +"cVo" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"cVz" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkbrown2" + pixel_y = 21 }, -/area/fiorina/maintenance) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "cVQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -4813,18 +3682,26 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"cVX" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 +"cWg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"cWv" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"cWz" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "cWG" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -4832,29 +3709,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"cWM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/blood/empty{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/reagent_container/blood/BMinus{ - pixel_x = 7; - pixel_y = 4 +"cWI" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"cWN" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"cWU" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"cWU" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/disco) @@ -4876,14 +3739,46 @@ /obj/item/stack/flag/yellow, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"cXw" = ( -/obj/structure/machinery/photocopier{ +"cXs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cXC" = ( +/obj/structure/barricade/wooden{ + dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"cXQ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/oob) +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"cXU" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"cXW" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) "cXY" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -4892,26 +3787,13 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"cYa" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/central_ring) -"cYg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"cYc" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "cYv" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -4919,23 +3801,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"cYT" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) -"cYY" = ( -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "cZc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -4945,6 +3810,12 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"cZp" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "cZq" = ( /obj/item/shard{ icon_state = "medium" @@ -4955,6 +3826,20 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"cZw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/storage/fancy/cigarettes/blackpack, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"cZC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "cZV" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -4967,15 +3852,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"daA" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) "daD" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -4987,80 +3863,68 @@ /obj/structure/machinery/autolathe, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"daP" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "daS" = ( /obj/item/ammo_magazine/pistol/kt42, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dbq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 +"daY" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"dbr" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"dbw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dbT" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 4; + pixel_y = 24 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/chapel) -"dbL" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"dcB" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/lowsec) -"dbX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"dcQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"dcT" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "ddc" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"dds" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"ddz" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "ddA" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ddE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) "ddF" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5083,145 +3947,103 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ddO" = ( -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"ddZ" = ( +/obj/structure/computerframe, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "dec" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"deB" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"deE" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"dep" = ( +/obj/structure/machinery/disposal, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "deH" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"deL" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/fiorina/station/flight_deck) -"deN" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) "deR" = ( /obj/item/toy/crayon/red, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"deW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"dfa" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"dfu" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"dfc" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/park) +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "dfz" = ( /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"dfD" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dfF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "dfV" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"dfZ" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"dga" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"dgh" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"dgp" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"dgx" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"dgt" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/research_cells) -"dgz" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) -"dgB" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 20 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"dgu" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_cargo) -"dgF" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/chapel) -"dhe" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/structure/platform_decoration{ + dir = 9 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dgz" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "dhi" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space/basic, @@ -5243,49 +4065,20 @@ /obj/item/tool/weldingtool, /turf/open/floor/prison, /area/fiorina/station/security) -"dhD" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"dhN" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"dhV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"diP" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"diR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/clothing/accessory/holobadge/cord, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"dhH" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"dip" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/fiorina/station/park) +"diB" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "diS" = ( /obj/structure/largecrate/supply/supplies/water, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -5298,18 +4091,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"diX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"djd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) +"diT" = ( +/obj/item/disk, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "dje" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, @@ -5318,31 +4103,9 @@ /obj/effect/spawner/random/gun/smg/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"djx" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"djA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/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/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/medbay) -"djB" = ( -/obj/vehicle/powerloader{ - dir = 4 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) +"djH" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/aux_engi) "djU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -5357,61 +4120,29 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"dka" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) "dkb" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dkj" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"dkC" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"dkP" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"dlj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/area/fiorina/station/park) -"dla" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"dln" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "dlA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dlE" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"dlW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "dlX" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner{ @@ -5424,44 +4155,55 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison, /area/fiorina/station/security) +"dmm" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"dmr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dmt" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "dmu" = ( /obj/structure/filingcabinet/disk, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"dmw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) "dmB" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"dmH" = ( -/obj/structure/platform_decoration{ +"dmV" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"dnp" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"dnx" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/structure/platform_decoration{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dng" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) "dnz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/spawner/random/toy, @@ -5477,41 +4219,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"dnB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +"dnC" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) "dnE" = ( /obj/structure/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/prison, /area/fiorina/station/security) -"dnI" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_4" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"dnK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) "doe" = ( /obj/item/tool/kitchen/utensil/pspoon, /turf/open/space/basic, /area/fiorina/oob) +"dom" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "doq" = ( /obj/structure/bed/chair{ dir = 4; @@ -5519,6 +4246,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"dow" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/servers) "doA" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, @@ -5537,42 +4267,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"doJ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "doQ" = ( /obj/structure/disposalpipe/broken{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"doY" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/maintenance) -"dpr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"dpt" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"dpE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) +"dpg" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"dpo" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"dpv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "dpH" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, @@ -5584,135 +4301,126 @@ /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison, /area/fiorina/station/security) -"dqa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" +"dpZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"dqd" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/station/park) -"dqk" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"dqD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "dqE" = ( /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, /area/fiorina/station/park) -"dqG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) "dqN" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_s_w" }, /area/fiorina/tumor/ship) -"dra" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"drb" = ( +/obj/effect/spawner/random/gun/pistol/lowchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "dro" = ( /obj/structure/closet/l3closet/general, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"dso" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"dru" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/obj/effect/spawner/random/tool, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"drJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"drT" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" }, -/area/fiorina/station/research_cells) -"dsv" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"drZ" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/area/fiorina/tumor/civres) -"dsQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/station/botany) -"dsT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"dsd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/fiorina/tumor/ice_lab) -"dtc" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"dsq" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/civres_blue) +"dsK" = ( +/obj/item/stack/sandbags, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "dtg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_magazine/shotgun/buckshot, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"dui" = ( -/obj/item/ammo_casing{ - icon_state = "casing_6_1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"duw" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"dtj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"duB" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 8 +"dtn" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"dtH" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"dtO" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dug" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/research_cells) "duF" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -5725,22 +4433,20 @@ /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"dvs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"dvV" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +"dvE" = ( +/obj/structure/machinery/defenses/tesla_coil/premade{ + faction_group = list("USCM") }, -/area/fiorina/station/power_ring) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"dvJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dvM" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_tram) "dvY" = ( /obj/structure/machinery/door/airlock/almayer/maint/autoname{ dir = 1; @@ -5758,25 +4464,45 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"dwk" = ( -/obj/structure/surface/rack, -/obj/item/device/camera, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dwr" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/fiberbush) -"dwM" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/structure/platform_decoration{ + dir = 5 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/chapel) +"dwz" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"dwA" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"dwF" = ( +/obj/item/device/radio, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "dwQ" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/fiberbush) +"dwS" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dwT" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -5787,56 +4513,28 @@ /obj/item/storage/briefcase/stowaway, /turf/open/space, /area/fiorina/oob) -"dxd" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"dxg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dxl" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, -/area/fiorina/tumor/servers) -"dxA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "dxE" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"dxJ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"dxO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "dxS" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/servers) -"dyc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) "dyd" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -5844,27 +4542,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) -"dyi" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"dyp" = ( -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) "dyB" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -5872,41 +4549,48 @@ /obj/item/explosive/grenade/high_explosive/m15, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"dyM" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"dzj" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"dzk" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"dyP" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dzi" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_y = 2 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "dzl" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) +"dzm" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "dzo" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/security) +"dzL" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dzR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "dAe" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -5919,25 +4603,15 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/prison, /area/fiorina/station/park) -"dAp" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) +"dAm" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) "dAA" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"dAB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "dAQ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -5946,6 +4620,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"dAW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" + }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "dBa" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -5954,6 +4634,13 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"dBo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/weed{ + icon_state = "ucigoff" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) "dBq" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -5969,55 +4656,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"dBC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"dBI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "dBR" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"dBY" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"dCb" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"dCl" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"dCo" = ( -/obj/item/clothing/shoes/laceup, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"dBX" = ( +/obj/item/clothing/mask/cigarette, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "dCu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -6025,40 +4673,45 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dCA" = ( -/obj/item/organ/lungs, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "dCF" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"dCJ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "dCM" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"dDm" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"dDy" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +"dCN" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"dCT" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_y = 21 }, -/area/fiorina/station/disco) -"dDM" = ( -/obj/structure/closet/wardrobe/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/structure/prop/almayer/computers/mission_planning_system{ + density = 0; + desc = "Its a telephone, and a computer. Woah."; + name = "\improper funny telephone booth"; + pixel_x = 17; + pixel_y = 21 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"dDi" = ( +/turf/open/floor/prison/yellowcorner, /area/fiorina/station/lowsec) +"dDq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "dDO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright, @@ -6068,22 +4721,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"dDS" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "dDU" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"dEi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dEo" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6097,22 +4753,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"dEy" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/flight_deck) -"dEF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "dEI" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6121,46 +4761,29 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"dFc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) "dFh" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/chapel) -"dFk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"dFw" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"dFC" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) -"dFE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"dFG" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +"dFv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -4; + pixel_y = 9 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"dFy" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "dFH" = ( /obj/structure/closet/cabinet, /obj/item/key/cargo_train, @@ -6175,68 +4798,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"dFO" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/security) -"dGc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"dGj" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor/prison, -/area/fiorina/station/flight_deck) +"dFP" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "dGw" = ( /turf/open/floor/prison, /area/fiorina/station/central_ring) -"dGx" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) "dHd" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) -"dHp" = ( -/turf/open/floor/prison{ +"dHM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"dHU" = ( +/obj/structure/sink{ dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"dHI" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"dIa" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" + pixel_x = -12 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) "dIi" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -6251,58 +4835,67 @@ /obj/structure/machinery/computer/communications, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"dIq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"dID" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"dIK" = ( +"dIr" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"dIH" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"dIJ" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; + dir = 8; + pixel_x = -10; pixel_y = -3 }, -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"dIN" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/power_ring) "dIT" = ( /obj/structure/closet/crate/medical, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"dJl" = ( +"dJo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"dJr" = ( +/obj/structure/machinery/door/airlock/almayer/marine, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"dJw" = ( /obj/item/device/flashlight/flare, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"dJx" = ( +/obj/structure/toilet{ dir = 8; - icon_state = "darkyellow2" + pixel_y = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"dJQ" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"dJR" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"dKe" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) "dKo" = ( /obj/effect/spawner/random/gun/shotgun, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"dKy" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "dKI" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6310,38 +4903,24 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"dKN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "dKX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) +"dLb" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "dLq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/park) -"dLx" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"dLF" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"dLu" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "dMa" = ( /obj/structure/stairs/perspective, /turf/open/floor/plating/prison, @@ -6354,131 +4933,98 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"dMm" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"dMv" = ( -/turf/open/floor/prison{ - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) -"dMK" = ( -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe{ - pixel_y = 5 - }, -/obj/item/tool/pickaxe{ - pixel_y = 10 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"dMO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"dMD" = ( +/obj/item/tool/mop, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"dMX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"dMY" = ( +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/station/park) "dNh" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzI) -"dNF" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"dNl" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"dNo" = ( +/obj/item/reagent_container/food/drinks/bottle/pwine, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"dNC" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/area/fiorina/tumor/ice_lab) -"dOs" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"dOj" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) "dOE" = ( /obj/item/storage/bible/hefa, /turf/open/floor/wood, /area/fiorina/station/chapel) -"dOF" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/oob) +"dOO" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) "dOX" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) -"dPC" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"dPQ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"dPb" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"dPd" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"dPe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"dPo" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "dQp" = ( /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/prison, /area/fiorina/station/medbay) -"dQA" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"dQW" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"dQY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"dRm" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" +"dQv" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) +"dRb" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"dRN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "dRO" = ( /obj/effect/acid_hole{ dir = 4 @@ -6500,260 +5046,164 @@ /obj/structure/closet/firecloset, /turf/open/floor/prison, /area/fiorina/station/medbay) -"dSw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"dSp" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"dSv" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "dSy" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 8 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"dSz" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"dSD" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"dSK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"dTe" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) "dTf" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"dTp" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"dTn" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + density = 0; + pixel_y = 16 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "dTx" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dUs" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) +"dUe" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"dUS" = ( +/obj/structure/safe, +/obj/item/storage/beer_pack, +/obj/item/storage/beer_pack, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "dUZ" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/space/basic, /area/fiorina/oob) -"dVe" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"dVm" = ( -/obj/item/storage/pill_bottle/spaceacillin/skillless, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"dVt" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "dVK" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/prison, /area/fiorina/station/medbay) -"dWx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "dWB" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"dWM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"dWN" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"dXv" = ( +"dWJ" = ( /obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"dXz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "dXG" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"dXH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"dYp" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Hangar Landing Zone" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"dYr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) +"dYi" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) "dYv" = ( /obj/item/device/flashlight, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"dYw" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "dYI" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/aux_engi) -"dYP" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"dZc" = ( -/obj/structure/bed/chair{ +"dZf" = ( +/obj/item/dogtag, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"dZq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"dZu" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"dZt" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"dZA" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"eag" = ( -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"eaL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/platform_decoration{ + dir = 5 }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"dZv" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"dZw" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"eaq" = ( +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"eaH" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/east, /area/fiorina/tumor/civres) -"eaQ" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "eaZ" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"ebc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ebm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"ebP" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ebo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) "ecd" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"ecm" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" + }, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/tumor/ice_lab) "ecp" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/prison, @@ -6768,15 +5218,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"ecF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) "ecL" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -6790,60 +5231,31 @@ icon_state = "stan_rightengine" }, /area/fiorina/tumor/ship) -"eda" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) "edd" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"edh" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) "edv" = ( /obj/item/storage/fancy/cigar, /turf/open/floor/prison, /area/fiorina/station/medbay) +"eeb" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/lz/near_lzI) "eej" = ( /obj/item/reagent_container/food/drinks/coffee{ name = "\improper paper cup" }, /turf/open/floor/prison, /area/fiorina/station/security) -"eev" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"eew" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) "eeI" = ( /obj/structure/lattice, /obj/item/stack/sheet/metal, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"eeL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) "efl" = ( /obj/structure/prop/invuln{ desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; @@ -6859,12 +5271,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/prison, /area/fiorina/oob) -"efz" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"efB" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/damaged3, +/area/fiorina/station/central_ring) +"efJ" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) "efS" = ( /obj/structure/monorail{ dir = 9; @@ -6878,23 +5295,9 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"ege" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"egm" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/item/storage/briefcase{ - pixel_y = -2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +"egg" = ( +/turf/open/floor/prison/red/west, +/area/fiorina/lz/near_lzII) "egv" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/civres_blue) @@ -6906,66 +5309,57 @@ /obj/item/newspaper, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"egY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"ehf" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ehg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Engineering Canteen Vendor" +"ehT" = ( +/obj/structure/sink{ + pixel_y = 23 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/prop/helmetgarb/rabbitsfoot{ + pixel_y = 22 }, -/area/fiorina/station/power_ring) -"ehA" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/item/reagent_container/food/drinks/bottle/kahlua{ + pixel_x = 5; + pixel_y = 25 }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ehX" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ehY" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) -"eir" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ +"ehZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"ein" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "eiw" = ( /obj/structure/closet, /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"eix" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"eiH" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/flight_deck) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"eiL" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "eiQ" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -6978,35 +5372,11 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"ejk" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"ejn" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"ejp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/snacks/grown/carrot, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) +"ejh" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "ejq" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/plating_catwalk/prison, @@ -7018,54 +5388,37 @@ "ejw" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"ejO" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +"ejT" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eke" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/area/fiorina/station/disco) +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "ekH" = ( /obj/structure/bed/roller, /turf/open/floor/prison, /area/fiorina/station/chapel) -"eli" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"ekT" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"elq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) -"elC" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"ely" = ( +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"elQ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "elY" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/double/blue{ @@ -7075,18 +5428,17 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"emm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"emy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 16 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "emC" = ( /obj/structure/lattice, /obj/item/shard{ @@ -7094,12 +5446,24 @@ }, /turf/open/space, /area/fiorina/oob) -"emU" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"emN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/station/transit_hub) +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"emO" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"emT" = ( +/obj/item/reagent_container/food/snacks/boiledegg, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "ena" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -7111,47 +5475,51 @@ /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"enh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ +"enn" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"enG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"enH" = ( -/obj/effect/alien/weeds/node, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" + layer = 2.7 }, -/area/fiorina/tumor/fiberbush) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"env" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "enY" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/oob) -"eok" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/oob) +"eoe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"eol" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "eov" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/station/research_cells) +"eow" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"eoB" = ( +/obj/item/trash/chips, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "eoR" = ( /obj/structure/bed/chair, /turf/open/floor/prison, @@ -7166,11 +5534,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"eph" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "epn" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/cans/aspen, @@ -7180,39 +5543,39 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"epu" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"epv" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "epV" = ( /obj/item/paper/crumpled/bloody, /turf/open/floor/wood, /area/fiorina/station/chapel) -"eqq" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "eqC" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"eqQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"eqT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"eqN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) -"ere" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"eqX" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "erl" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -7221,82 +5584,130 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"ers" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 +"erF" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1; + icon_state = "human2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"erI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/power_ring) -"erB" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"erP" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/area/fiorina/station/civres_blue) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "erT" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/space, /area/fiorina/oob) -"esE" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 +"eso" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" }, -/area/fiorina/lz/near_lzI) -"esF" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" +/obj/structure/sign/poster{ + desc = "The M41A is on the cover."; + icon_state = "poster15"; + name = "magazine"; + pixel_x = -5; + pixel_y = 5 }, -/area/fiorina/tumor/servers) +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"esx" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"esQ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "esS" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"esZ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 +"etl" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"eto" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"etA" = ( +/obj/effect/alien/weeds/node, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"etJ" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "etL" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"euC" = ( -/obj/structure/monorail{ - name = "launch track" +"etT" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" }, -/turf/open/floor/plating/prison, -/area/fiorina/station/power_ring) -"euG" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/fiorina/station/medbay) -"euR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"etX" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"eub" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/heavy, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"euh" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"euC" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/lowsec) +/turf/open/floor/plating/prison, +/area/fiorina/station/power_ring) +"euG" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/fiorina/station/medbay) "euT" = ( /obj/item/tool/wet_sign, /obj/item/tool/mop{ @@ -7305,28 +5716,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"evc" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"evf" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"evg" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) "evv" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -7341,38 +5730,27 @@ /obj/structure/lz_sign/prison_sign, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"evH" = ( -/obj/structure/surface/rack, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +"evJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/fiorina/station/botany) -"evQ" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"evR" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"ewj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 4 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"evU" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "ewx" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7381,16 +5759,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"ewy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "ewE" = ( /obj/item/clothing/accessory/armband/cargo{ desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; @@ -7403,74 +5771,57 @@ /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"ewY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"exs" = ( -/obj/structure/bed/chair{ - dir = 4 +"ewH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) +"exp" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/bed/chair{ +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/central_ring) +"exu" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"exv" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/fiorina/station/medbay) -"exO" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"eyo" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"eyz" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"eyM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"eza" = ( -/obj/structure/barricade/wooden{ - dir = 4 + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) +"eyp" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"eyW" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"ezb" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) +"eyX" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"ezh" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/chapel) +"ezl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "ezn" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -7481,15 +5832,13 @@ /obj/structure/bed/chair/janicart, /turf/open/floor/prison, /area/fiorina/station/medbay) -"ezr" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"ezp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "ezx" = ( /obj/structure/platform{ dir = 8 @@ -7499,28 +5848,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ezz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"ezJ" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"ezT" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" - }, -/area/fiorina/station/security) "ezV" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"eAi" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"eAj" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "eAo" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -7528,86 +5870,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eAy" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/transit_hub) +"eAv" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "eAM" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"eAQ" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "eAY" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eBs" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"eBC" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"eBb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"eBh" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"eBD" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"eCg" = ( -/obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"eBO" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/servers) +"eBW" = ( +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"eCa" = ( +/obj/structure/platform{ + dir = 4; + layer = 2 }, -/area/fiorina/station/telecomm/lz1_cargo) -"eCh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"eCb" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) "eCA" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"eCV" = ( +/turf/open/floor/prison/red/east, +/area/fiorina/lz/near_lzII) "eDn" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) -"eDs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"eEh" = ( -/obj/structure/barricade/wooden, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ +"eDo" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"eDQ" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"eDT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"eEk" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" + health = 80 }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "eEo" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -7619,6 +5952,17 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"eEr" = ( +/obj/item/stack/nanopaste, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"eEs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"eEt" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) "eED" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -7639,46 +5983,53 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"eFg" = ( +/obj/structure/prop/dam/crane{ + icon_state = "tractor_damaged" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) "eFD" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"eFX" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"eGg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"eFI" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"eFY" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "eGz" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"eGM" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/fiorina/station/lowsec) +"eGO" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"eGQ" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "eGV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"eGY" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "eHa" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) +"eHe" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "eHC" = ( /turf/closed/shuttle/ert{ icon_state = "wy25" @@ -7692,30 +6043,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"eIp" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"eIa" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"eIc" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/station/disco) -"eIF" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"eIe" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/tumor/ship) -"eJi" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"eIt" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/station/park) +"eIy" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"eIT" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/aux_engi) "eJm" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -7732,14 +6091,36 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"eJP" = ( +"eJr" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"eJw" = ( +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/structure/surface/rack, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"eJG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/station/disco) +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/obj/item/reagent_container/food/snacks/doughslice, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"eJK" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "eJQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -7747,35 +6128,35 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"eKg" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" +"eKE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"eLp" = ( +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) -"eKu" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/fiorina/station/power_ring) "eLu" = ( /turf/closed/wall/prison, /area/fiorina/maintenance) -"eLO" = ( -/obj/structure/platform{ - dir = 4 +"eLz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/item/cell/super, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"eMn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "eMG" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" @@ -7786,77 +6167,71 @@ /obj/structure/inflatable/popped/door, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"eML" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"eMO" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"eMN" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "eMU" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/station/power_ring) -"eNm" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"eNa" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"eNj" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"eNk" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/station/medbay) +"eNw" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"eNJ" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"eNQ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/fiorina/station/telecomm/lz1_cargo) -"eNs" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"eNU" = ( +/obj/structure/bed/chair, +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "eNV" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"eOf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"eOo" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) +"eOn" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"eOr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"eOs" = ( +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/item/weapon/chainofcommand, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) "eOF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -7874,28 +6249,24 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"eOR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "eOS" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"ePf" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"ePm" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) +"ePi" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"ePo" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) "ePq" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/ucigbutt{ @@ -7919,6 +6290,21 @@ "ePB" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz2_maint) +"ePS" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibmid1" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"eQd" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"eQj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "eQk" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -7927,65 +6313,61 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"eQv" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ +"eQw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/clothing/accessory/holobadge/cord, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"eQH" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 + }, +/obj/structure/barricade/handrail/type_b{ dir = 4; - icon_state = "darkbrown2" + layer = 3.5 }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"eQD" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"eQR" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/fiorina/tumor/servers) -"eRi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"eQX" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"eRo" = ( +/turf/open/floor/prison/greenblue/northwest, +/area/fiorina/station/botany) +"eRt" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"eRv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/prize/honk{ + anchored = 1; + layer = 2.9; + pixel_x = -1; + pixel_y = 13 }, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "eRz" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"eRH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"eRS" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"eRR" = ( +/obj/item/clothing/glasses/material, +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"eRX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "eRY" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/prison, /area/fiorina/station/disco) -"eSg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "eSs" = ( /obj/item/prop/helmetgarb/riot_shield, /turf/open/floor/prison, @@ -7996,13 +6378,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"eSZ" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "eTb" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -8012,38 +6387,14 @@ "eTc" = ( /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"eTd" = ( -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"eTh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"eTn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"eTo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor/prison{ - icon_state = "bluefull" +"eTt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/power_ring) +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) "eTx" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/prison, @@ -8052,6 +6403,10 @@ /obj/item/frame/rack, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"eTI" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "eTJ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -8067,12 +6422,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_cargo) -"eUk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) "eUD" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 @@ -8080,13 +6429,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/security) -"eVb" = ( -/obj/item/reagent_container/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) +"eVa" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "eVf" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/streamer{ @@ -8117,15 +6463,6 @@ /obj/item/trash/sosjerky, /turf/open/floor/prison, /area/fiorina/station/security) -"eWh" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "eWu" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -8137,60 +6474,39 @@ }, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"eWO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"eWH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "eWP" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) -"eWV" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"eXd" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"eWQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"eXe" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/explosive/mine/pmc, +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"eXj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "eXp" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/civres_blue) -"eXr" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"eXC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"eXN" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "eXP" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -8205,13 +6521,6 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"eYi" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "eYC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -8240,30 +6549,44 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"eZD" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/launcher/grenade/m81, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +"eZJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fac" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"faB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/red, /area/fiorina/station/security) -"eZL" = ( -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "greenblue" +"faX" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/area/fiorina/station/botany) -"eZN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"fbh" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/tool/soap/weyland_yutani, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"fbn" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 }, -/area/fiorina/lz/near_lzII) +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) "fbo" = ( /obj/structure/barricade/plasteel, /obj/structure/barricade/metal{ @@ -8281,92 +6604,16 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) -"fbL" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"fbT" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"fbW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"fcp" = ( -/obj/item/trash/burger, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "fcA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fcO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/carbon, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"fcX" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"fdb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "fde" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fdn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/fiorina/station/research_cells) "fdK" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/prop/invuln{ @@ -8378,124 +6625,88 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"fdS" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) +"fdQ" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "fdV" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/space/basic, /area/fiorina/oob) -"feO" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +"feD" = ( +/obj/item/poster, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"feE" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) "feY" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"ffm" = ( -/obj/structure/bed/chair{ - dir = 1 +"ffr" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"ffu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "ffN" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"ffU" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5_1" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"ffW" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "ffZ" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"fgb" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fgB" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"fgM" = ( -/obj/structure/platform, -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" - }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" +"fgn" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fgs" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"fgA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/station/park) +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "fgU" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fhc" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) -"fhz" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"fhC" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"fhX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/lz/near_lzI) -"fhZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +"fhu" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"fhD" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec) +"fhI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "fic" = ( /obj/structure/bed/sofa/south/grey/right, @@ -8504,12 +6715,24 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"fin" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" +"fig" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic{ + pixel_x = 3 }, -/area/fiorina/station/research_cells) +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "fiq" = ( /turf/open/floor/plating/prison, /area/fiorina/oob) @@ -8521,45 +6744,27 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fiu" = ( +"fiw" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"fiD" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fiF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"fiI" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fiO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "fiU" = ( /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) +"fjc" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "fjd" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzI) @@ -8574,6 +6779,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"fjk" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "fjr" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/plating_catwalk/prison, @@ -8584,26 +6795,48 @@ /obj/item/attachable/magnetic_harness, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"fjK" = ( +/obj/item/device/taperecorder{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"fjU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "fjX" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/tumor/aux_engi) -"fkp" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"fkq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_y = 11 }, -/area/fiorina/station/disco) -"fkP" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"fkN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/handset{ + pixel_x = 6; + pixel_y = -15 }, -/area/fiorina/tumor/ice_lab) +/obj/item/handset{ + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fkT" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/telecomm/lz1_cargo) "fkY" = ( /obj/item/tool/wet_sign, /obj/item/tool/mop{ @@ -8618,31 +6851,30 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"flm" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"flo" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"flh" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" }, -/area/fiorina/station/disco) -"flq" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"fln" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"flx" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/station/botany) +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "flC" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -8650,63 +6882,34 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"flM" = ( +/obj/item/stool, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/flight_deck) +"flU" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "fmg" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fmD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"fmL" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"fmM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"fmU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/fiorina/tumor/aux_engi) +"fmN" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "fmY" = ( /obj/item/device/cassette_tape/ocean, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"fnj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) "fnn" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fnt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) "fnB" = ( /turf/open/floor/prison, /area/fiorina/station/security) @@ -8715,26 +6918,27 @@ dir = 4 }, /area/fiorina/station/telecomm/lz1_cargo) -"fnW" = ( +"fnH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"fnP" = ( +/obj/item/clothing/shoes/laceup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"fog" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"foi" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"fon" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"foL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "foT" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/prison, @@ -8745,20 +6949,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"foZ" = ( -/obj/item/stack/sandbags_empty, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"fpi" = ( -/obj/item/clothing/head/soft/yellow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) +"foX" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "fpl" = ( /obj/structure/barricade/sandbags{ dir = 4; @@ -8770,38 +6963,35 @@ "fpn" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/aux_engi) -"fpp" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +"fpr" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"fpw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) "fpB" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"fpM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"fpN" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"fpF" = ( +/turf/open/floor/prison/whitepurple/east, /area/fiorina/station/research_cells) -"fpY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) +"fpQ" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"fqc" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"fqz" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) "fqD" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -8817,33 +7007,42 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"fqS" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"fqX" = ( +/obj/item/stool, +/obj/item/trash/cigbutt{ + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"frk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"frn" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "frt" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"frw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"frY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/fiorina/station/research_cells) -"fsf" = ( -/obj/structure/bed/roller, -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fru" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/prison, +/area/fiorina/station/flight_deck) +"frM" = ( +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "fsk" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/prison, @@ -8852,148 +7051,126 @@ /obj/item/device/flashlight, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"ftq" = ( -/obj/item/stack/cable_coil/orange, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"fsv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"fsw" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"fsH" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/tumor/ice_lab) -"ftv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "red" - }, -/area/fiorina/station/security) -"ftH" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/stool{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"ftw" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"ftO" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) +"ftQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/area/fiorina/station/lowsec) -"ftY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "darkbrown2" + layer = 3.1; + pixel_y = 10 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"fum" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"fuA" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"ftV" = ( +/obj/effect/decal/hefa_cult_decals/d32, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"fuu" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"fuG" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/civres) +"fuV" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"fvr" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/fiorina/station/park) -"fuF" = ( -/obj/structure/machinery/autolathe, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"fvu" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"fvk" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "fvL" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"fvY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "fwn" = ( /obj/structure/lattice, /obj/item/stack/sheet/metal, /turf/open/space/basic, /area/fiorina/oob) +"fwo" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "fwr" = ( /obj/item/poster, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fwR" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"fwZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fxt" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"fxz" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"fwx" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"fwy" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"fwQ" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"fxk" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/station/medbay) -"fxP" = ( -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"fxA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"fxE" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"fxG" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "fxY" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"fye" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"fyc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications/simple, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "fyi" = ( /turf/open/floor/wood, /area/fiorina/station/research_cells) @@ -9003,12 +7180,6 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"fyA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/tumor/aux_engi) "fyC" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -9020,23 +7191,6 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"fyQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"fyT" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "fzb" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -9047,82 +7201,42 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"fzi" = ( +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"fzl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "fzs" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"fzt" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"fzO" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"fAs" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"fAt" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/aux_engi) -"fAv" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) +"fzB" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"fzF" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/fiberbush) +"fAd" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"fAf" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) "fAI" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/wood, /area/fiorina/station/park) -"fAV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "fAZ" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -9131,25 +7245,6 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"fBc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, -/area/fiorina/station/lowsec) -"fBd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/power_ring) -"fBg" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "fBi" = ( /obj/structure/inflatable/popped/door, /obj/item/ammo_magazine/m56d, @@ -9161,39 +7256,50 @@ /obj/item/storage/pill_bottle/peridaxon/skillless, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"fBp" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"fBk" = ( +/obj/structure/machinery/defenses/tesla_coil/premade/smart{ + faction_group = list("CLF") }, -/area/fiorina/maintenance) -"fBP" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/plating/plating_catwalk, +/area/fiorina/tumor/ship) +"fBo" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/tumor/civres) -"fCz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"fBV" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/card/id/silver/clearance_badge, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"fCq" = ( +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "fCD" = ( /obj/item/stack/sheet/metal, /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"fDI" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fCE" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"fDz" = ( +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"fDB" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) "fDQ" = ( /obj/structure/window/framed/prison/reinforced/hull, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -9202,62 +7308,58 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"fEM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/handset{ - pixel_x = 7; - pixel_y = -16 - }, -/obj/item/handset{ - pixel_x = -3; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"fDU" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"fDY" = ( +/turf/open/floor/prison/damaged3, /area/fiorina/station/security) -"fEY" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/fiorina/station/power_ring) -"fFf" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"fFC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"fEb" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"fEE" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"fFg" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/belt/gun/flaregun/full, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"fFy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/station/park) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "fFE" = ( /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fFU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"fFI" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/medbay) -"fGb" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"fFM" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "fGe" = ( /obj/structure/window/reinforced{ dir = 8 @@ -9265,59 +7367,33 @@ /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"fGp" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"fGi" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "fGB" = ( /obj/structure/prop/structure_lattice{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"fGL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/tracker, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"fGM" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"fGY" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" +"fGZ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 }, -/area/fiorina/tumor/civres) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "fHh" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/security) -"fHu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"fHy" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) +"fHz" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) "fHB" = ( /obj/structure/monorail{ name = "launch track" @@ -9332,65 +7408,28 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"fHQ" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/curtain/shower, -/obj/structure/window{ - dir = 4 - }, -/obj/item/coin/uranium{ - desc = "You found one of the three uranium coins. It is entirely worthless." - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"fHW" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"fHU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"fHV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) "fIj" = ( /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"fIv" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"fIt" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/servers) -"fII" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fID" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"fIP" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "fIT" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, @@ -9400,6 +7439,9 @@ icon_state = "stan20" }, /area/fiorina/station/power_ring) +"fJd" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) "fJj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -9407,41 +7449,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"fJx" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"fJO" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"fJw" = ( +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 10 }, -/area/fiorina/station/medbay) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "fJW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/accessory/storage/webbing, /obj/item/clothing/accessory/storage/webbing, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fKm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet{ +"fKg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/carbon, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"fKq" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + pixel_y = 21 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"fKh" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) "fKr" = ( /obj/structure/platform{ dir = 4 @@ -9452,36 +7484,28 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"fKv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"fKJ" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"fKS" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) -"fKF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fLh" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/power_ring) -"fLa" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"fLi" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"fLq" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "fLr" = ( /obj/item/smallDelivery, /obj/structure/closet/fireaxecabinet{ @@ -9489,40 +7513,18 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"fLs" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"fLO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"fLR" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) "fLS" = ( /obj/structure/bed/chair, /turf/open/floor/wood, /area/fiorina/station/park) -"fMk" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +"fMc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"fMz" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "fMF" = ( /obj/item/storage/bible/hefa{ pixel_y = 3 @@ -9530,49 +7532,10 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"fMY" = ( -/obj/structure/reagent_dispensers/watertank{ - layer = 2.6 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"fNc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"fNp" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"fOg" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"fOs" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"fNg" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) "fOt" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -9581,47 +7544,30 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"fOw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"fPu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"fPF" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"fPZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"fPi" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/rack, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"fQx" = ( -/obj/item/reagent_container/food/drinks/bottle/tomatojuice, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"fPv" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"fPI" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) +"fQw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"fQA" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) "fQB" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" @@ -9629,6 +7575,13 @@ /obj/effect/spawner/random/gun/shotgun/highchance, /turf/open/floor/wood, /area/fiorina/station/park) +"fQO" = ( +/obj/item/clothing/under/stowaway, +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "fQV" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -9639,26 +7592,29 @@ /obj/structure/bed/chair, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fRG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"fRq" = ( +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"fRw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"fRE" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) "fSe" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"fSl" = ( -/obj/item/disk/data, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "fSq" = ( /obj/structure/machinery/door/airlock/almayer/marine{ dir = 1; @@ -9688,28 +7644,27 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"fSI" = ( -/obj/item/broken_device, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"fSY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fSJ" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"fSO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "fTs" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"fTx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"fTt" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "fTz" = ( /obj/structure/closet, /obj/item/clothing/suit/poncho/red, @@ -9717,29 +7672,27 @@ /obj/item/clothing/suit/suspenders, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"fTA" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/bed/roller, +"fTZ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/medbay) -"fUd" = ( -/obj/structure/barricade/plasteel{ +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/platform_decoration{ + dir = 9 }, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "fUm" = ( /obj/item/clothing/head/pirate, /obj/item/clothing/under/pirate, @@ -9751,14 +7704,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fUu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "fUF" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -9769,42 +7714,42 @@ /obj/structure/bedsheetbin, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"fUZ" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fVm" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/medbay) -"fVA" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"fWc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"fVG" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"fVP" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_2" }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"fWr" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"fWA" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/area/fiorina/tumor/ice_lab) -"fWC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"fWG" = ( +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + registered_name = "John Forklift" }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"fWD" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "fWL" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -9819,19 +7764,20 @@ /obj/structure/stairs/perspective, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"fXe" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) +"fXs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "fXv" = ( /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"fXy" = ( +/obj/structure/machinery/computer/cameras{ + network = list("omega") + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "fXB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) @@ -9846,6 +7792,10 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) +"fXP" = ( +/obj/effect/decal/cleanable/blood/gibs/robot/up, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "fXQ" = ( /obj/structure/platform{ dir = 8 @@ -9855,54 +7805,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"fXS" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"fXT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"fYn" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"fYB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box/empty, -/turf/open/floor/prison{ - icon_state = "redfull" +"fXR" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) +"fYi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "fYD" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"fYV" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - dir = 1; - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fYJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "fYW" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) +"fZa" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/ice_lab) "fZd" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -9913,28 +7843,49 @@ /obj/item/tool/warning_cone, /turf/open/floor/wood, /area/fiorina/station/park) +"fZY" = ( +/turf/open/floor/prison/greencorner/west, +/area/fiorina/station/chapel) +"gai" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"gal" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "gas" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/disco) -"gaL" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +"gaB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "gaN" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"gbi" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"gaO" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/book/manual/security_space_law, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"gbb" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/darkpurple2/west, +/area/fiorina/tumor/servers) +"gbj" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/area/fiorina/station/research_cells) +/obj/item/tool/soap/syndie, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/gun/special, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "gbn" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -9945,28 +7896,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"gbD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +"gbq" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/blue/west, /area/fiorina/station/civres_blue) -"gbP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -6; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gbR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/fiorina/station/security) +/obj/structure/medical_supply_link, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "gbS" = ( /obj/structure/closet/emcloset, /obj/item/clothing/head/cmcap{ @@ -9978,52 +7920,35 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"gbU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"gcr" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"gcy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"gcO" = ( +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"gcP" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/chapel) +"gda" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/area/fiorina/tumor/civres) -"gde" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"gdn" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"gdt" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/chapel) -"gec" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"gdr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"gdR" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) "gef" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth{ @@ -10039,19 +7964,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/fiorina/station/chapel) -"geU" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "gfh" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -10071,15 +7983,6 @@ /obj/structure/machinery/m56d_hmg/mg_turret/dropship, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"gfw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "gfL" = ( /obj/structure/prop/souto_land/pole, /obj/structure/prop/souto_land/pole{ @@ -10088,10 +7991,32 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"gfM" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "gfN" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/station/medbay) +"gfW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gfX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) "ggd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" @@ -10109,31 +8034,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ggp" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"ggB" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"ggG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ggA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ggC" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"ggN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "ggQ" = ( /obj/structure/flora/pottedplant{ @@ -10145,6 +8059,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"ghd" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "ghg" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -10159,100 +8077,91 @@ }, /turf/open/space, /area/fiorina/oob) -"ghv" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"ghy" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 }, -/area/fiorina/tumor/ice_lab) -"ghP" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/chapel) -"ghU" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"ghC" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"gij" = ( +/obj/structure/largecrate/guns/merc, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"giT" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "giX" = ( /obj/structure/barricade/handrail/type_b{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"gjg" = ( -/obj/structure/barricade/sandbags{ - dir = 1; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "gjj" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ pixel_y = 17 }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"gjy" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"gjI" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"gjJ" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + dir = 1; + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"gjR" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "gjX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"gkd" = ( -/obj/item/storage/wallet/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"gkm" = ( -/obj/structure/machinery/line_nexter, -/turf/open/floor/prison{ +"gkn" = ( +/obj/structure/surface/table/reinforced/prison{ dir = 8; - icon_state = "red" - }, -/area/fiorina/station/security) -"gks" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + flipped = 1 }, -/area/fiorina/tumor/servers) +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) "gkt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"gky" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"gkZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"gkP" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "glj" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -10274,83 +8183,26 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"glH" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, +"gmd" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"gmE" = ( +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/disco) -"glI" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"glW" = ( -/obj/structure/holohoop{ - pixel_y = 25 - }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"gma" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"gmv" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"gmy" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) +"gmJ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "gmS" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/spawner/random/gun/shotgun/midchance, /turf/open/floor/prison, /area/fiorina/station/security) -"gmT" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"gng" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "gnj" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/fiorina/station/security) -"gnm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "gnz" = ( /obj/item/tool/lighter/random{ pixel_x = 14; @@ -10358,71 +8210,22 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"gnR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzI) -"gnS" = ( -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"gnV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"goh" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"gom" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"goz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) -"goA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"gnK" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"goy" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"goC" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "goG" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"goH" = ( -/obj/structure/surface/rack, -/obj/item/tool/mop, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "goM" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -10430,29 +8233,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"gpq" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"gpB" = ( -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/chapel) +"goS" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/disco) "gpG" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"gpS" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"gqb" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "gqd" = ( /obj/item/tool/kitchen/utensil/pknife, /turf/open/floor/prison, @@ -10460,29 +8257,35 @@ "gqe" = ( /turf/open/floor/prison, /area/fiorina/station/disco) -"gqH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/station/park) "gqZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /obj/item/tool/pen/blue, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"grg" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"grE" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) "grL" = ( /obj/structure/bed/sofa/vert/grey, /turf/open/floor/prison, /area/fiorina/station/security) -"grO" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"grV" = ( +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 4 }, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gsB" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison, +/area/fiorina/station/power_ring) "gsL" = ( /obj/structure/platform, /obj/structure/platform{ @@ -10499,29 +8302,26 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"gto" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"gtH" = ( -/obj/structure/safe, -/obj/item/storage/beer_pack, -/obj/item/storage/beer_pack, -/turf/open/floor/corsat{ - icon_state = "squares" +"gtB" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/chapel) +"gtR" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/medbay) -"gtM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/disco) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"gtT" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "guf" = ( /obj/structure/bed/chair{ dir = 4; @@ -10529,41 +8329,40 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"guB" = ( -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"guG" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"guQ" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +"guv" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/prison/bluecorner, /area/fiorina/station/power_ring) -"gvX" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/prison{ - icon_state = "redfull" +"guL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"guX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"gvU" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/servers) +"gwd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "gws" = ( /turf/open/floor/plating, /area/fiorina/oob) -"gwz" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"gwB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "gwH" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -10579,66 +8378,39 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gwX" = ( -/obj/item/stool, -/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ - pixel_x = 15; - pixel_y = 25 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +"gwS" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"gwU" = ( +/obj/structure/surface/rack, +/obj/item/poster, +/obj/item/poster, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "gxj" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/dice/d20, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gxx" = ( -/obj/item/packageWrap, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"gxL" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"gxn" = ( +/obj/item/trash/c_tube, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "gxN" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"gyi" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, +"gyl" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/station/botany) -"gyB" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"gyI" = ( -/obj/item/trash/candy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"gyn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "gyJ" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -10647,12 +8419,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gyU" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) +"gyT" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "gyW" = ( /turf/open/space, /area/fiorina/station/medbay) @@ -10662,53 +8432,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gzd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"gzy" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"gzz" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"gzA" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = 8; - pixel_y = 10 +"gzi" = ( +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"gzu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"gzG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "blue_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/botany) -"gzF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/area/fiorina/station/civres_blue) -"gzQ" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) "gAa" = ( /obj/structure/largecrate/random/case, /turf/open/floor/prison, @@ -10723,10 +8471,24 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"gAt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"gAz" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/tumor/civres) "gAA" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"gAE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "gAS" = ( /obj/structure/monorail{ dir = 4; @@ -10734,24 +8496,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"gBo" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +"gAX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/area/fiorina/station/medbay) -"gCb" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0"; - pixel_y = 2 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gBU" = ( +/obj/item/book/manual/atmospipes, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"gCd" = ( +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 7 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "gCn" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -10765,6 +8531,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"gCo" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 + }, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"gCy" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 85; + icon_state = "metal_1" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "gCE" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -10775,25 +8557,9 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"gCX" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"gCY" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/flight_deck) -"gDt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"gCO" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "gDx" = ( /obj/structure/surface/table/woodentable, @@ -10806,13 +8572,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"gDz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"gDF" = ( +/obj/structure/machinery/vending/snack/packaged, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "gDP" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -10820,42 +8588,30 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"gDW" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "gEe" = ( /obj/item/reagent_container/food/drinks/bottle/patron, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"gEv" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"gEk" = ( +/obj/item/ammo_casing{ + icon_state = "casing_9_1" }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/yellowcorner/west, +/area/fiorina/station/lowsec) "gEx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"gEF" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"gET" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gEM" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "gEU" = ( /obj/structure/monorail{ dir = 4; @@ -10863,57 +8619,30 @@ }, /turf/open/space, /area/fiorina/oob) -"gEW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/lowsec) "gFc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"gFe" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/fiberbush) "gFg" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gFq" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"gFG" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"gFK" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"gGp" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"gFZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) "gGu" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"gGv" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "gGx" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, @@ -10924,29 +8653,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"gGG" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"gHb" = ( -/obj/structure/prop/structure_lattice{ - health = 300 - }, -/obj/structure/prop/structure_lattice{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"gHc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "gHh" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -10958,6 +8664,13 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"gHn" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "gHy" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/plating/prison, @@ -10968,40 +8681,20 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gHF" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"gHP" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; +"gIg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) +"gIj" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"gIv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"gHW" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"gIk" = ( -/obj/item/frame/rack, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "gIB" = ( /obj/structure/window/framed/prison, @@ -11012,17 +8705,39 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"gIN" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"gIU" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"gIZ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "gJu" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"gJG" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" +"gJS" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 32 }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"gJU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) "gKi" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -11035,42 +8750,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"gKt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"gKu" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Residential Apartment" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) "gKA" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"gKL" = ( -/obj/structure/platform, -/obj/structure/platform{ +"gLr" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) "gLu" = ( /turf/closed/shuttle/ert{ @@ -11084,28 +8773,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gLG" = ( -/obj/item/paper, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"gLy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"gLS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"gLZ" = ( +/obj/item/stool, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) -"gMw" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"gMJ" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) +"gMs" = ( +/obj/structure/window, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"gMC" = ( +/obj/item/frame/rack, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "gMV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -11116,108 +8805,60 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) +"gNb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "gNu" = ( /obj/item/handset{ pixel_y = 7 }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"gNF" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"gNK" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"gNW" = ( -/obj/item/bodybag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"gNY" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ppflowers_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, +"gNy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) -"gOs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"gPm" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" +"gND" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer3/laptop/secure_data, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"gNE" = ( +/turf/open/floor/prison/platingdmg2, +/area/fiorina/station/security) +"gNO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"gPf" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) +"gPk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"gPr" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "gPs" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gPO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +"gQy" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"gPS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"gQh" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"gQx" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) "gQK" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -11228,24 +8869,29 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/servers) -"gRm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"gQQ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/medbay) -"gRy" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"gQS" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"gRb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + name = "Lung Transplants for Dummies"; + pixel_y = 4 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"gRD" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "gRT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/sign/poster{ @@ -11256,20 +8902,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"gRV" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) "gRW" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -11278,50 +8910,6 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"gSD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"gSG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"gSJ" = ( -/obj/structure/closet/bombcloset, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"gSN" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "handblood" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "gSP" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/candelabra{ @@ -11331,40 +8919,37 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"gTc" = ( -/obj/item/storage/belt/shotgun/full/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, -/area/fiorina/station/park) -"gTw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"gUf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" +"gTb" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"gTh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"gTx" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"gTT" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) "gUj" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/fiorina/tumor/ship) -"gUx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gUp" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/power_ring) +"gUs" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "gUH" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med, /turf/closed/wall/prison, @@ -11373,6 +8958,12 @@ /obj/item/tool/warning_cone, /turf/open/floor/prison, /area/fiorina/station/park) +"gVl" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "gVs" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, @@ -11388,41 +8979,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"gVA" = ( -/obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"gVR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/maintenance) -"gVX" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/fiorina/station/central_ring) -"gWf" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 1 - }, -/obj/item/frame/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"gWg" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) +"gVM" = ( +/obj/item/newspaper, +/turf/open/floor/prison/red/east, +/area/fiorina/lz/near_lzII) "gWq" = ( /obj/item/ammo_casing{ icon_state = "casing_1" @@ -11433,13 +8993,44 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/disco) -"gWT" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ +"gWx" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"gWy" = ( +/obj/structure/sink{ dir = 4; - icon_state = "green" + pixel_x = 12 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"gWz" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) +"gWC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"gWI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"gXe" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"gXh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "gXi" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -11447,11 +9038,37 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"gXt" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" +"gXk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"gXo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/lockbox/vials{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"gXu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"gXv" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"gXB" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) "gXD" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -11460,78 +9077,45 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"gXH" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 +"gXQ" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/obj/structure/prop/structure_lattice{ +/obj/structure/barricade/handrail/type_b{ dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + layer = 3.5 }, +/turf/open/organic/grass/astroturf, /area/fiorina/tumor/servers) -"gXL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"gYA" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"gZc" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "4" - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +"gYs" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"gYC" = ( +/obj/structure/sign/kiddieplaque{ + desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; + name = "Fiberbush(tm) safety plaque"; + pixel_y = 29 }, -/area/fiorina/maintenance) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"gZb" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "gZf" = ( /obj/structure/machinery/shower{ pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"gZE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"gZT" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" +"gZW" = ( +/obj/structure/window/framed/prison/reinforced{ + opacity = 1 }, -/area/fiorina/station/transit_hub) +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "haa" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -11548,36 +9132,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"hah" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"hak" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" }, -/area/fiorina/station/research_cells) -"ham" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"har" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) "hay" = ( /turf/closed/shuttle/ert{ icon_state = "wy_leftengine" }, /area/fiorina/station/medbay) -"haU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "hbo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/classic{ @@ -11608,56 +9179,19 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hbq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "hbC" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/space, /area/fiorina/oob) -"hcb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/fiorina/tumor/civres) -"hce" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"hcf" = ( -/obj/item/paper/carbon, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +"hbI" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/lz/near_lzI) +"hcl" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "hcv" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -11668,18 +9202,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"hde" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "handblood" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "hds" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hdv" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +"hdF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hdX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/plantspray/pests, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) "heb" = ( /obj/structure/stairs/perspective{ @@ -11689,50 +9236,74 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"heu" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" +"het" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzI) +"heH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/area/fiorina/station/botany) +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "heO" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/civres_blue) +"heT" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "hfd" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"hfl" = ( -/obj/item/device/pinpointer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"hfo" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_cargo) -"hfT" = ( -/turf/closed/wall/r_wall/prison, -/area/fiorina/station/flight_deck) -"hgp" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"hfs" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/obj/item/paper_bin{ + pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"hfw" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"hfB" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 4; + flipped = 1 }, -/area/fiorina/oob) -"hgr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hfE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"hfT" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/flight_deck) "hgu" = ( /obj/structure/barricade/handrail/type_b{ dir = 4; @@ -11740,19 +9311,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"hgz" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"hgC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" +"hgv" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) "hgJ" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/prison, @@ -11762,44 +9327,16 @@ icon_state = "stan5" }, /area/fiorina/tumor/aux_engi) -"hhg" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "hhh" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"hhl" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"hhv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"hhy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"hhF" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hhL" = ( /obj/effect/spawner/random/powercell, /obj/structure/disposalpipe/segment{ @@ -11811,49 +9348,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"hhR" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) "hir" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"hiu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/telecomm/lz1_tram) -"hix" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/boxing, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "hiG" = ( /obj/item/storage/backpack/souto, /turf/open/floor/prison, /area/fiorina/station/chapel) -"hiK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/disco) "hiO" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/tumor/aux_engi) +"hiT" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"hiY" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) "hja" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -11863,19 +9385,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"hjb" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"hjr" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"hjm" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"hjz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "hjE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced, @@ -11902,32 +9419,24 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"hkE" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/flight_deck) "hkW" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) -"hll" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"hln" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "hlq" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"hlK" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"hlO" = ( +/obj/structure/largecrate/random/case, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "hlT" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -11936,6 +9445,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"hlX" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "hmd" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -11950,60 +9465,56 @@ /obj/structure/platform_decoration, /turf/open/floor/prison, /area/fiorina/station/disco) -"hmj" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"hmk" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"hmr" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"hng" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"hnJ" = ( -/obj/item/clothing/under/stowaway, -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"hmm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hmx" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" }, -/area/fiorina/station/lowsec) -"hor" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"hmG" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"hmT" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"hnA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hnD" = ( +/obj/item/shard{ + icon_state = "large" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"hnI" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"hob" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/civres_blue) "hoy" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/fiorina/station/security) +"hoA" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"hoG" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) "hoH" = ( /obj/effect/decal/cleanable/cobweb{ desc = "Spun only by the terrifying space widow. Some say that even looking at it will kill you."; @@ -12011,16 +9522,6 @@ }, /turf/open/space, /area/fiorina/oob) -"hoN" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "hoP" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/head/helmet/warden{ @@ -12029,14 +9530,6 @@ }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"hoY" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer, -/obj/item/frame/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "hoZ" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) @@ -12047,17 +9540,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/security) -"hpr" = ( -/obj/item/device/binoculars/civ, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "hpz" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -12075,19 +9557,6 @@ /obj/item/trash/used_stasis_bag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"hpN" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "hpW" = ( /obj/item/stack/cable_coil/orange, /turf/open/floor/plating/prison, @@ -12096,66 +9565,56 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"hqj" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 23 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"hqz" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/security) "hqD" = ( /obj/structure/prop/structure_lattice{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"hqF" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"hqZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hrg" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) +"hqG" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) "hro" = ( /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hrX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"hrI" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"hrN" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "hsc" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hsd" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"hse" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) "hss" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -12163,12 +9622,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"hsA" = ( -/turf/open/floor/prison{ +"hsw" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; dir = 4; - icon_state = "darkyellowfull2" + layer = 6; + name = "overhead pipe"; + pixel_y = 12 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "hsC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/southleft, @@ -12180,6 +9643,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"hsH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "hsZ" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -12196,23 +9663,64 @@ /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"htd" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/research_cells) +"hth" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "htt" = ( /turf/closed/shuttle/ert, /area/fiorina/station/power_ring) -"htL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "bluefull" +"htu" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/station/power_ring) -"hue" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"htw" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) +"htQ" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"htY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"hug" = ( +/turf/open/floor/prison/redcorner/west, +/area/fiorina/station/security) +"huj" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "hul" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -12221,12 +9729,6 @@ /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"huI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "hva" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -12234,57 +9736,16 @@ /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/wood, /area/fiorina/lz/near_lzI) -"hvg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/civres_blue) -"hvh" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"hvi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"hvE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"hvv" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform{ - dir = 1 + pixel_y = -3 }, /obj/structure/platform{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/disco) "hvF" = ( /obj/structure/grille, @@ -12295,13 +9756,23 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/security) -"hwn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ +"hwg" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "darkbrown2" + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"hwl" = ( +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"hwo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hwx" = ( /obj/structure/closet/crate/science{ density = 0; @@ -12311,30 +9782,14 @@ /obj/item/organ/eyes, /turf/open/floor/prison, /area/fiorina/station/medbay) -"hwE" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"hxg" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) +"hwB" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/oob) "hxi" = ( /obj/item/roller, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"hxk" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "hxq" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -12342,11 +9797,6 @@ "hxy" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"hxC" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) "hxJ" = ( /obj/structure/sign/poster{ icon_state = "poster12"; @@ -12363,57 +9813,33 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"hxU" = ( -/obj/item/shard{ - icon_state = "medium" +"hxN" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"hym" = ( +/obj/item/organ/lungs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"hyB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"hyz" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/station/civres_blue) -"hyG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"hyR" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hyI" = ( +/turf/open/floor/prison/red/north, +/area/fiorina/station/security) "hyT" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/tumor/aux_engi) -"hyX" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"hzq" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"hyV" = ( +/turf/open/floor/prison/greenbluecorner/west, +/area/fiorina/station/botany) "hzz" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/kelotane/skillless, @@ -12428,46 +9854,35 @@ icon_state = "wy4" }, /area/fiorina/station/medbay) -"hAp" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 2; - layer = 6; - name = "overhead pipe"; - pixel_x = -16; - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +"hAm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/darkpurple2, /area/fiorina/tumor/servers) -"hAL" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/storage/belt/marine, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"hAY" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"hAD" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/northwest, /area/fiorina/tumor/aux_engi) -"hBn" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ +"hAK" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/ammo_casing{ dir = 6; - icon_state = "darkyellow2" + icon_state = "casing_5" }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"hAV" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"hBy" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "hBF" = ( /obj/structure/window_frame/prison/reinforced, /obj/item/stack/sheet/glass/reinforced{ @@ -12475,46 +9890,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"hBI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"hBX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"hBP" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"hBY" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) "hCc" = ( /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"hCd" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"hCS" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"hCT" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) +"hCU" = ( +/obj/structure/curtain, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) "hCX" = ( /obj/effect/landmark/wo_supplies/storage/belts/knifebelt, /turf/open/floor/prison, @@ -12524,30 +9915,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"hDr" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/fiorina/station/lowsec) -"hDx" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"hDy" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"hDL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) +"hDz" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"hDI" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "hEb" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -12557,28 +9932,32 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/research_cells) -"hFe" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 +"hEE" = ( +/obj/structure/prop/structure_lattice{ + health = 300 }, -/obj/structure/barricade/handrail/type_b{ - dir = 8 +/obj/structure/prop/structure_lattice{ + pixel_y = 10 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"hEI" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/tumor/servers) +"hEM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"hFb" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, +/turf/open/floor/prison/whitegreen, /area/fiorina/tumor/ice_lab) -"hFn" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "hFH" = ( /obj/item/gift, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -12587,136 +9966,111 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"hGz" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"hGC" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" +"hFL" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"hGa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"hGd" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "hGP" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"hGZ" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"hHh" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"hHv" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"hIe" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"hIo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"hIu" = ( -/obj/structure/bed/chair{ +"hGQ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hHd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"hHo" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"hHx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"hJo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"hJq" = ( +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) -"hIR" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"hJc" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +"hJA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"hJw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" +"hJT" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"hKo" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"hKz" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"hKC" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/civres_blue) -"hKE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) "hKI" = ( /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"hKJ" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"hLt" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"hKX" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"hLk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/area/fiorina/tumor/civres) -"hLy" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"hLo" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"hLx" = ( +/obj/structure/sign/poster{ + icon_state = "poster7"; + pixel_x = -26; + pixel_y = 6 }, -/area/fiorina/lz/near_lzII) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "hLz" = ( /turf/closed/wall/prison, /area/fiorina/lz/near_lzII) -"hLK" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) "hLM" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, @@ -12725,6 +10079,10 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/fiorina/station/disco) +"hLP" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "hLV" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -12766,53 +10124,22 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"hMX" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"hNc" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/fiorina/lz/near_lzII) -"hNi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" +"hND" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"hNV" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) "hNY" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"hOg" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"hOz" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) "hOA" = ( /obj/structure/sink{ dir = 8; @@ -12820,27 +10147,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"hOR" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"hPu" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/station/central_ring) +"hPE" = ( +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) -"hOW" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, -/area/fiorina/station/civres_blue) -"hPs" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "hPF" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; @@ -12859,12 +10171,9 @@ /obj/structure/surface/rack, /turf/open/floor/wood, /area/fiorina/station/chapel) -"hQg" = ( -/obj/item/bedsheet, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) +"hPZ" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "hQh" = ( /obj/structure/barricade/handrail/type_b{ dir = 8; @@ -12872,16 +10181,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"hQF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/gold{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "hQH" = ( /obj/structure/closet/crate, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"hRs" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) +"hQX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"hRi" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/station/medbay) "hRR" = ( /obj/structure/closet/crate/science{ density = 0; @@ -12895,40 +10214,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"hRV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"hRX" = ( -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, +"hSs" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"hSv" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/red_pool, /area/fiorina/station/park) -"hSf" = ( -/obj/item/dogtag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"hSF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"hSH" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/plating/prison, -/area/fiorina/station/civres_blue) "hSL" = ( /obj/effect/decal/hefa_cult_decals/d32{ icon_state = "2" @@ -12939,35 +10231,6 @@ /obj/structure/window/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"hTc" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/central_ring) -"hTf" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"hTm" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) "hTr" = ( /obj/structure/closet, /obj/effect/spawner/random/gun/shotgun/midchance, @@ -12978,85 +10241,34 @@ dir = 10 }, /area/fiorina/station/civres_blue) -"hTt" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/ice_lab) -"hTy" = ( -/obj/item/implanter/compressed, -/obj/structure/safe, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"hTG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "hTM" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"hUa" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "hUf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"hUh" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/ice_lab) "hUi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"hUH" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"hUO" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/maintenance) -"hUV" = ( -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"hUw" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"hUB" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"hVn" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/area/fiorina/station/security) -"hVm" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/security) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "hVu" = ( /obj/item/stack/sheet/metal, /obj/structure/cable/heavyduty{ @@ -13064,15 +10276,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"hVz" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"hVv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, -/area/fiorina/station/security) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "hVG" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13083,153 +10292,132 @@ "hVI" = ( /turf/closed/wall/prison, /area/fiorina/station/medbay) -"hVS" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_4" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"hWB" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"hWj" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/power_ring) +"hWC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "hWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"hWJ" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"hXA" = ( +/obj/item/storage/wallet/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"hXO" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/flight_deck) -"hWU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 10 }, +/turf/open/floor/prison/whitegreen/southwest, /area/fiorina/tumor/ice_lab) -"hXc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"hXi" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "hXZ" = ( /turf/closed/shuttle/ert{ icon_state = "wy2" }, /area/fiorina/station/medbay) +"hYq" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"hYJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "hYK" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/disco) -"hYT" = ( -/obj/item/disk/botany, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"hYV" = ( -/obj/structure/prop/resin_prop{ - dir = 4; - icon_state = "chair"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"hZp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +"hZk" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"hZo" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"hZy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/medbay) +"hZF" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "hZR" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"iah" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"iai" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/flight_deck) -"iaO" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/turf/open/floor/prison/darkpurple2/southeast, +/area/fiorina/tumor/ice_lab) +"ias" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/tumor/servers) -"ibb" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" +/obj/item/handset{ + pixel_x = 7; + pixel_y = -16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/handset{ + pixel_x = -3; + pixel_y = 16 }, -/area/fiorina/station/civres_blue) -"ibN" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"iaU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"ibV" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "yellowcorner" + pixel_y = 21 }, -/area/fiorina/station/lowsec) -"icj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"icm" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"icw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/tracker, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"icy" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/disco) +"icA" = ( +/obj/structure/machinery/processor, +/obj/effect/decal/cleanable/blood{ + pixel_y = 20 }, -/area/fiorina/station/medbay) -"ick" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"icK" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid3" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "icS" = ( /obj/structure/bed/chair{ dir = 1 @@ -13240,65 +10428,45 @@ /obj/item/trash/sosjerky, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"idq" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"idl" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"idB" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"idC" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "idE" = ( /turf/open/floor/prison, /area/fiorina/station/medbay) -"idO" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"idT" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +"idL" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) +"iek" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/disco) +"iem" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"idV" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ied" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"ien" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, -/area/fiorina/tumor/servers) -"ieu" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"ieP" = ( /obj/structure/platform{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/morgue{ - dir = 8; - layer = 2.6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "ieW" = ( /obj/structure/machinery/computer3/server/rack, /obj/structure/barricade/handrail/type_b{ @@ -13306,14 +10474,10 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"ifk" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) +"ifa" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "ifp" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light/double/blue{ @@ -13324,24 +10488,26 @@ /obj/item/tool/wrench, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"ifq" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "ifs" = ( /obj/structure/inflatable/popped, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"ifI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/surgicaldrill, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +"ify" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ifz" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"ifB" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "ifJ" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -13353,19 +10519,10 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"igA" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"igD" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"igc" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "igQ" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/rank/janitor, @@ -13373,27 +10530,24 @@ /obj/item/clothing/head/bio_hood/janitor, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"iht" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"ihA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"igX" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/floor/prison/bluecorner/west, /area/fiorina/station/power_ring) "ihC" = ( /obj/item/tool/wrench, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"ihG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"ihU" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "ihY" = ( /obj/structure/closet/crate/trashcart, /obj/item/weapon/gun/rifle/m16, @@ -13402,41 +10556,23 @@ /obj/item/clothing/suit/storage/marine/veteran/ua_riot, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"iif" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"iin" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 +"ijf" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"ijj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"ijm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_7" }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"iir" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"iiE" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"iiP" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "ijs" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -13448,102 +10584,67 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"ijP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"ikq" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ikz" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ikA" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" +"ijJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hugemushroomslice, +/obj/item/reagent_container/food/snacks/hugemushroomslice{ + pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"ikn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" }, -/area/fiorina/station/lowsec) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"ikr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ikY" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "ilh" = ( /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/head/helmet/marine/veteran/ua_riot, /turf/open/floor/prison, /area/fiorina/station/security) -"ilv" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" +"ilu" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) -"ilI" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"ilX" = ( -/obj/item/stack/folding_barricade, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) +"ilw" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"ilH" = ( +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "imt" = ( /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"imw" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"imz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) +"imv" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) +"imx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "imH" = ( /obj/item/tool/shovel/etool, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"imL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"inh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) "inA" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -13551,36 +10652,31 @@ /obj/item/device/cassette_tape/hiphop, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"ioG" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "brflowers_1" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"inI" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"inM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"inO" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"iox" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"ioD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) "ioM" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/medbay) -"ioP" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"ioR" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) "ipa" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -13593,22 +10689,33 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/botany) -"ipy" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ipk" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/tumor/servers) -"ipJ" = ( -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"ipr" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"iqp" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"iqE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/area/fiorina/station/power_ring) -"iqt" = ( -/obj/item/fuelCell, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "iqR" = ( /obj/structure/platform_decoration{ dir = 4 @@ -13622,22 +10729,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"iqV" = ( -/obj/item/clothing/mask/cigarette/bcigarette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) "irx" = ( /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"iry" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "irB" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/park) @@ -13648,54 +10742,31 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"irK" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"isi" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) "isl" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"isB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"ism" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"isr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/security) -"isJ" = ( -/obj/structure/surface/rack, -/obj/item/key, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/structure/platform_decoration{ + dir = 10 }, -/area/fiorina/station/medbay) -"isK" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"isC" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "yellow" - }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "isL" = ( /obj/structure/machinery/light/double/blue{ @@ -13705,75 +10776,52 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"isP" = ( -/obj/item/trash/snack_bowl, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"isS" = ( +/obj/item/ammo_box/magazine/M16, +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"itc" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) "itd" = ( /obj/item/tool/lighter/random, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"iti" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"itq" = ( -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) "itv" = ( /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"itC" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, +"itz" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) "itN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) -"iuw" = ( -/obj/item/reagent_container/food/drinks/cans/souto/cherry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"iuV" = ( -/obj/structure/curtain, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"iuW" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" +"itY" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/lowsec) +"iuh" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"iuA" = ( +/obj/item/clothing/suit/chef/classic, +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "iuZ" = ( /obj/item/stack/rods, /obj/structure/machinery/light/double/blue{ @@ -13786,6 +10834,15 @@ /obj/effect/spawner/gibspawner/human, /turf/open/space/basic, /area/fiorina/oob) +"ivo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "ivz" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -13799,42 +10856,26 @@ /obj/item/storage/pouch/tools/full, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ivL" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"ivM" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"ivR" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "iwf" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) +"iwp" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"iwv" = ( +/obj/structure/platform_decoration, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"iwC" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "iwK" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -13854,16 +10895,29 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"ixb" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" +"ixm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ixT" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"iya" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iyb" = ( +/obj/item/inflatable, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/park) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "iyc" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, @@ -13872,25 +10926,18 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"iyq" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"iyF" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"iyu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"iyG" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/botany) +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "iyS" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -13902,62 +10949,65 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"izJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/space_heater{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"izP" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"izD" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/blue/north, +/area/fiorina/tumor/servers) "izZ" = ( /turf/closed/wall/prison, /area/fiorina/station/disco) +"iAz" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) "iAA" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib5" }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"iAL" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"iAM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/aux_engi) -"iAO" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"iAZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/support/flare_launcher{ + pixel_x = -1; + pixel_y = 5 }, -/area/fiorina/station/park) -"iBi" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"iBd" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"iBe" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "iBP" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/oob) +"iBW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"iCg" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/red/east, +/area/fiorina/station/security) "iCi" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ @@ -13966,6 +11016,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"iCm" = ( +/obj/item/tool/match, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "iCo" = ( /obj/structure/machinery/door/poddoor/almayer{ density = 0; @@ -13973,55 +11027,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"iCC" = ( -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"iCP" = ( -/obj/structure/machinery/disposal, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"iCR" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/fiorina/station/power_ring) "iCU" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, /area/fiorina/station/disco) -"iDa" = ( -/obj/item/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"iDo" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"iDm" = ( +/obj/structure/inflatable/popped/door, +/obj/item/stack/barbed_wire, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "iDq" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -14033,12 +11048,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iDE" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) +"iDr" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "iEi" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -14048,31 +11061,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"iEz" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"iFj" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"iFu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +"iEv" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"iEy" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"iFg" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"iFs" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "iFD" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -14084,104 +11093,41 @@ }, /turf/open/floor/prison, /area/fiorina/station/chapel) -"iGL" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"iGW" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "iGX" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"iHn" = ( -/obj/item/frame/toolbox_tiles_sensor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"iHJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - network = list("PRISON") - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"iHU" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) -"iIN" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"iHP" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"iIp" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/obj/item/tool/soap/syndie, -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/gun/special, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"iIs" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "iIS" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"iIX" = ( -/obj/structure/bed/chair, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"iJf" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"iJj" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +"iJg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"iJC" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"iJi" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "iJE" = ( /obj/structure/stairs/perspective{ @@ -14190,63 +11136,39 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"iJF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/medbay) -"iJG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications/simple, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "iJJ" = ( /obj/item/reagent_container/food/drinks/bottle/orangejuice, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"iJM" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ +"iJT" = ( +/obj/structure/platform, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"iKf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"iKa" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "iKg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"iKj" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "iKs" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/chapel) -"iKC" = ( +"iKE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/storage/beer_pack{ + pixel_y = 7 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "iKG" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/blood, @@ -14268,12 +11190,19 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"iLy" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - icon_state = "floorscorched2" +"iKX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/security) +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"iLv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "iLJ" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, @@ -14287,137 +11216,101 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"iMm" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"iLU" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"iLZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "blue" + pixel_y = 21 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "iMo" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"iMF" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"iMM" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"iNw" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"iNF" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/station/park) -"iNO" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"iNX" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "iOa" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iOe" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"iOd" = ( +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster17"; + name = "magazine" + }, +/obj/structure/sign/poster{ + desc = "Hubba hubba."; + icon_state = "poster3"; + name = "magazine"; + pixel_x = 6; + pixel_y = 8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"iOt" = ( -/turf/open/floor/prison{ +"iOD" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "blue" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/civres_blue) -"iOE" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"iOO" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"iOP" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"iPc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"iOG" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"iOJ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"iPq" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"iPn" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/servers) +"iPr" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "iPx" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"iPM" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"iPU" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"iPV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/fiorina/lz/near_lzII) -"iPZ" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"iQu" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/bowlerhat{ - pixel_y = 15 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "iQK" = ( /obj/structure/disposalpipe/broken{ dir = 1 @@ -14425,51 +11318,22 @@ /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"iQP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "iRa" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iRc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"iRe" = ( -/obj/item/clothing/suit/chef/classic, -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"iRy" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/belt/gun/flaregun/full, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "iRH" = ( /obj/item/frame/firstaid_arm_assembly, /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"iRK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"iSb" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/civres_blue) "iSf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -14498,37 +11362,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"iSn" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "iSu" = ( /turf/closed/wall/prison{ desc = "Come Meet Souto Man!"; icon_state = "rwall_s" }, /area/fiorina/station/park) -"iSG" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"iSQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"iSA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"iSS" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "iTe" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -14539,64 +11388,68 @@ "iTm" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/station/civres_blue) -"iTw" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"iTy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"iTG" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"iUy" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +"iTV" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) +"iUb" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/lowsec) +/obj/item/stool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "iUO" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"iVb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"iVm" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) "iVv" = ( /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/oob) -"iVC" = ( -/obj/structure/platform{ - dir = 1 +"iVz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"iVF" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"iVQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/medbay) -"iWg" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ +/obj/structure/bed/chair{ dir = 4; - icon_state = "blue_plate" + pixel_y = 4 }, -/area/fiorina/station/botany) +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) +"iWe" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iWm" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "iWq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -14608,81 +11461,67 @@ }, /turf/open/space, /area/fiorina/oob) -"iWy" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +"iWC" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"iWE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"iWG" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) "iWW" = ( /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"iXz" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) "iXL" = ( /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"iYq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/ice_lab) -"iYI" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"iZn" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) -"iZt" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"iZA" = ( -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +"iXM" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"iYD" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"iYE" = ( +/turf/open/gm/river/pool, /area/fiorina/station/park) -"iZV" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" +"iZe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 }, -/area/fiorina/station/research_cells) -"iZZ" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"iZu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/fiorina/tumor/ice_lab) -"jae" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/central_ring) +"iZX" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "jah" = ( /obj/item/tool/crowbar, @@ -14692,74 +11531,14 @@ /obj/structure/largecrate/supply/explosives/mortar_flare, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"jao" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"jas" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/baton, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"jax" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"jay" = ( -/obj/item/reagent_container/food/snacks/boiledegg, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"jaK" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"jaN" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"jaR" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"jbk" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"jbx" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) +"jbC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "jbG" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, @@ -14776,75 +11555,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jcg" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "jcv" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/wood, /area/fiorina/station/park) -"jcB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/subspace/amplifier{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/stock_parts/subspace/analyzer{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"jdc" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"jdh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"jdo" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/head/that{ - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"jdX" = ( -/obj/item/clothing/under/shorts/red, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"jcx" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"jdw" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) +"jdy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "jeh" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -14854,138 +11586,110 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"jeD" = ( -/obj/structure/machinery/gibber, -/obj/effect/decal/cleanable/blood{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue_plate" +"jei" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/botany) -"jeY" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"jej" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel/laser{ - pixel_x = -5; - pixel_y = 12 +/obj/item/paper, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"jes" = ( +/obj/structure/machinery/door/window/northleft{ + dir = 4 }, -/obj/item/tool/surgery/circular_saw{ - pixel_y = -2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jfa" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - name = "\improper Fiorina Engineering Canteen Vendor" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) +"jeA" = ( +/obj/item/storage/bible/hefa{ + pixel_y = 3 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"jeO" = ( +/turf/open/floor/prison/greencorner/north, +/area/fiorina/tumor/civres) "jfc" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jfd" = ( -/turf/open/gm/river{ - name = "pool" - }, -/area/fiorina/station/park) -"jfk" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"jfp" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) -"jfD" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jfN" = ( -/obj/structure/machinery/light/double/blue{ +"jfs" = ( +/obj/structure/toilet{ dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_y = 8 }, -/area/fiorina/station/civres_blue) -"jgl" = ( -/obj/structure/platform_decoration{ +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/oob) +"jfG" = ( +/obj/effect/spawner/random/goggles/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"jfV" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/flight_deck) +"jfZ" = ( +/obj/item/tool/pickaxe, +/obj/structure/platform{ dir = 4 }, -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"jgm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker{ + pixel_x = -5; + pixel_y = 15 }, -/area/fiorina/station/medbay) +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "jgu" = ( /turf/closed/wall/prison, /area/fiorina/station/park) -"jgN" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/nightmare{ - insert_tag = "yardbasketball" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"jgW" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/obj/item/bodybag/tarp/reactive, -/obj/item/bodybag/tarp/reactive, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jhi" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"jgz" = ( +/obj/item/storage/belt/shotgun/full/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"jhm" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"jhx" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrowncorners2/east, /area/fiorina/tumor/aux_engi) "jhG" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/fiorina/tumor/ship) -"jit" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/tumor/civres) +"jhW" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"jii" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/prison, +/area/fiorina/station/telecomm/lz2_maint) +"jir" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"jiB" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jiG" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "jiJ" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -14995,6 +11699,11 @@ }, /turf/open/floor/prison, /area/fiorina/station/chapel) +"jiP" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "jiV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/saltshaker, @@ -15008,20 +11717,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"jiW" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"jje" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) +"jjf" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/tumor/servers) "jjg" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -15030,67 +11728,41 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"jjj" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "jjs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"jjB" = ( +/turf/open/floor/prison/blue, +/area/fiorina/tumor/servers) "jjM" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"jjS" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"jjW" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"jka" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "jkg" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"jki" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"jkZ" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"jlg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"jkw" = ( +/turf/open/floor/prison/damaged1/southwest, +/area/fiorina/station/lowsec) +"jkE" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "jlk" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/aux_engi) @@ -15119,28 +11791,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"jlW" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"jmm" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/security) -"jmp" = ( -/obj/item/ammo_magazine/handful/shotgun/incendiary{ - unacidable = 1 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/aux_engi) "jmr" = ( /obj/structure/platform{ dir = 4 @@ -15152,31 +11802,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"jms" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"jmy" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jmt" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"jmA" = ( +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) "jmG" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"jmM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "jmO" = ( /obj/structure/platform{ dir = 8 @@ -15190,14 +11828,6 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"jmV" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/maintenance) "jnd" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -15210,16 +11840,22 @@ /obj/item/clothing/head/cmcap, /turf/open/floor/wood, /area/fiorina/station/chapel) -"jnO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"jny" = ( +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) +"jnP" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"jnQ" = ( +/obj/item/storage/toolbox/antag, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"jog" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "jor" = ( /obj/effect/spawner/random/attachment, /obj/structure/disposalpipe/segment{ @@ -15231,36 +11867,23 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"jot" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"joy" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"joz" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jov" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/transit_hub) -"joD" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"jox" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"joB" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "joE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -15268,74 +11891,49 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"joS" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +"joG" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"joZ" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "jpc" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/wood, /area/fiorina/station/chapel) +"jpd" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "jpl" = ( /obj/item/clothing/under/CM_uniform, /turf/open/floor/prison, /area/fiorina/station/security) -"jpt" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, +"jpD" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"jpL" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "jpN" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/research_cells) -"jpR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"jpS" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"jqg" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"jpZ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"jqk" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "jqs" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -15358,13 +11956,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"jqH" = ( -/obj/structure/curtain, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/power_ring) "jqR" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -15382,37 +11973,18 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"jre" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +"jqY" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"jrz" = ( +/obj/item/paper/carbon, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jrB" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"jrk" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"jrn" = ( -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/item/reagent_container/food/snacks/xenoburger, -/obj/structure/closet/crate/freezer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"jru" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) "jrL" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -15421,84 +11993,86 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"jrU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_container/syringe{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"jrV" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "jsn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"jsD" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +"jsy" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/lowsec) -"jsE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"jsQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "jta" = ( /obj/structure/bed{ icon_state = "psychbed" }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"jtF" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"jum" = ( -/obj/item/toy/crayon/mime, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"juE" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"juS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jth" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"jtk" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/transit_hub) +"juf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/margherita, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"juw" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"juC" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/area/fiorina/station/security) +/obj/item/stack/cable_coil/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "juW" = ( /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"jvm" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"jva" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, +/turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"jvp" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) "jvu" = ( /obj/item/stool, /turf/open/floor/prison, @@ -15510,20 +12084,17 @@ }, /turf/open/space, /area/fiorina/oob) -"jvE" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"jvG" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"jvT" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"jvU" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "jwc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -15534,50 +12105,31 @@ "jwK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"jxa" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"jxy" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"jxN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"jxY" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/civres_blue) -"jya" = ( -/turf/open/floor/prison{ +"jxl" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "greenbluecorner" - }, -/area/fiorina/station/botany) -"jyc" = ( -/obj/structure/bed/chair{ - dir = 8 + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jxB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + density = 0; + pixel_y = 16 }, -/area/fiorina/station/research_cells) -"jyK" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"jxH" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"jyC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "jyM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/plating/prison, @@ -15590,6 +12142,18 @@ /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"jzn" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jzP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "jzY" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/prison, @@ -15598,12 +12162,6 @@ /obj/structure/platform/shiva, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"jAx" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) "jAy" = ( /obj/item/ammo_casing{ icon_state = "cartridge_1" @@ -15615,127 +12173,56 @@ /obj/structure/largecrate/supply/ammo, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jBj" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"jBK" = ( -/obj/structure/largecrate/random/case/double, +"jBa" = ( +/obj/structure/largecrate/random/barrel, /obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"jBA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"jBL" = ( -/obj/item/weapon/harpoon, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) +"jBD" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/central_ring) "jBQ" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/fiorina/station/park) -"jBS" = ( -/obj/structure/platform{ - dir = 1 - }, +"jCa" = ( /obj/structure/platform{ dir = 8 }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"jCh" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/civres_blue) +"jCn" = ( +/obj/item/clothing/under/shorts/green, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"jCB" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"jCI" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"jCN" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"jCl" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, -/area/fiorina/station/security) -"jCp" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"jCt" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"jCy" = ( -/obj/structure/prop/dam/crane{ - icon_state = "tractor_damaged" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jCA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"jCQ" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"jCU" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/obj/item/clothing/gloves/combat, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +"jCZ" = ( +/obj/item/paper, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) -"jDj" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"jDk" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"jDL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"jDz" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "jDR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -15743,32 +12230,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jDX" = ( -/obj/item/trash/burger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"jEb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"jEf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"jEl" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) "jEC" = ( /obj/structure/window/reinforced{ dir = 1; @@ -15776,11 +12237,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"jEG" = ( -/obj/structure/prop/resin_prop, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"jEF" = ( +/obj/item/tool/extinguisher/mini, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) "jEK" = ( /obj/structure/bed/chair/office/light{ @@ -15788,30 +12251,47 @@ }, /turf/open/floor/wood, /area/fiorina/station/research_cells) -"jES" = ( +"jER" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"jEV" = ( +/obj/structure/platform, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"jFa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"jFg" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "jFl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"jFN" = ( -/obj/item/explosive/grenade/high_explosive/m15, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "panelscorched" +"jFu" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/tumor/aux_engi) +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "jFO" = ( /obj/effect/landmark/nightmare{ insert_tag = "poolparty" }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/park) +"jFW" = ( +/obj/structure/machinery/vending/cigarette/free, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "jGd" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -15826,56 +12306,55 @@ "jGA" = ( /turf/open/floor/prison, /area/fiorina/station/botany) -"jGL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"jGP" = ( +"jHA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ pixel_x = 5; pixel_y = 22 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/coin/gold{ + desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; + name = "arcade token"; + pixel_x = -6; + pixel_y = 3 }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/station/flight_deck) -"jGV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"jHN" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"jHY" = ( +/obj/item/packageWrap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"jIk" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jIp" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jIz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/lowsec) -"jIm" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"jIE" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/civres_blue) -"jIZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/lowsec) "jJb" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -15888,40 +12367,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"jJF" = ( -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_y = 21 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ - density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 17; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"jJG" = ( -/obj/item/stack/sheet/wood/medium_stack, -/obj/item/stack/sheet/wood/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"jJM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"jJo" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/station/chapel) +"jJL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"jJO" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "jJS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/grape{ @@ -15967,6 +12425,22 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison, /area/fiorina/station/security) +"jKr" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"jKB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"jKD" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "jKG" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -15989,50 +12463,21 @@ }, /turf/open/space, /area/fiorina/oob) -"jKL" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" - }, -/area/fiorina/station/power_ring) "jKR" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ice_lab) -"jLs" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"jLF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"jLK" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/station/security) -"jMe" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) +"jLn" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"jLO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "jMf" = ( /obj/item/stack/tile/plasteel{ pixel_x = 5; @@ -16044,33 +12489,33 @@ /obj/item/tool/screwdriver, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"jMp" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"jMu" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jMz" = ( /obj/structure/machinery/power/smes/buildable, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"jMA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"jMH" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"jNa" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" +"jMC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) +"jMW" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"jNf" = ( +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "jNl" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Straight" @@ -16078,94 +12523,89 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"jNr" = ( +"jNz" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jNC" = ( /obj/structure/bed{ icon_state = "abed" }, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"jNA" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"jOr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"jNE" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"jNM" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jPa" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/fiorina/station/civres_blue) -"jOt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"jOJ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"jOO" = ( -/turf/open/floor/prison{ +"jPw" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"jOW" = ( -/obj/item/trash/eat, -/turf/open/floor/prison{ - icon_state = "floor_plate" + health = 25000; + pixel_y = 19 }, -/area/fiorina/lz/near_lzI) -"jPz" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/item/stack/sheet/wood, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "Somehow, it still functions."; + layer = 3.1; + name = "discarded camera console"; + pixel_x = -6; + pixel_y = 5 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "jPK" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/fiorina/station/telecomm/lz1_cargo) -"jPO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"jPS" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"jQe" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"jQk" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"jQy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"jQC" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) "jRf" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, @@ -16200,60 +12640,43 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/disco) -"jRR" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"jSC" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "jSD" = ( /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"jTe" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jSP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/fiberbush) -"jTk" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jSX" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/telecomm/lz1_tram) -"jTG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"jSZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"jTf" = ( +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"jTh" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "jTJ" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/lowsec) -"jUp" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/lz/near_lzI) "jUs" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -16261,51 +12684,14 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"jUy" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"jUO" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"jUS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"jUz" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"jUB" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"jUI" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"jUK" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"jVC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/oob) "jVE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -16320,33 +12706,42 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"jVH" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" +"jVI" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/telecomm/lz1_tram) +"jVP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/tumor/aux_engi) -"jVQ" = ( -/obj/structure/window/framed/prison/reinforced, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"jVU" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/station/security) -"jVW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"jWq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/power_ring) -"jWy" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"jWu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "jWB" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, @@ -16363,57 +12758,17 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/prison, /area/fiorina/station/park) -"jXx" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) "jXz" = ( /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"jXB" = ( -/obj/structure/machinery/computer/cameras{ - network = list("omega") - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "jXC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/pizzabox/mushroom, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"jXD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"jXO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"jXQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"jXM" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "jXZ" = ( /turf/closed/shuttle/elevator, /area/fiorina/tumor/aux_engi) @@ -16427,34 +12782,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"jYl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) "jYs" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"jYB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"jYw" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"jYS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"jZb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) +"jYG" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"jYW" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "jZc" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -16464,57 +12815,54 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"jZx" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jZk" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"jZG" = ( +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_psycopath_l"; + pixel_y = 4 }, -/area/fiorina/station/central_ring) -"jZR" = ( -/obj/item/frame/rack, -/obj/structure/barricade/handrail/type_b{ - dir = 1 +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_ketchup_l"; + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/effect/decal/cleanable/blood/writing{ + icon_state = "u_guilty_l"; + pixel_x = -12; + pixel_y = 2 }, -/area/fiorina/station/lowsec) -"kau" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"jZH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/stool{ - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"kaB" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/flight_deck) -"kaC" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/item/frame/firstaid_arm_assembly, +/obj/item/stack/nanopaste{ + pixel_x = 11; + pixel_y = 6 }, -/area/fiorina/station/security) -"kaH" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"jZX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kax" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"kaI" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) +"kaM" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) "kaO" = ( /obj/structure/machinery/light/double/blue{ @@ -16527,10 +12875,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"kaY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/item/toy/beach_ball, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) "kbb" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) +"kbc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) "kbg" = ( /obj/structure/machinery/computer/drone_control, /obj/structure/window/reinforced{ @@ -16547,43 +12907,38 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) -"kbA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"kbO" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +"kbo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"kbq" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"kbD" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) "kbT" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"kcn" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"kcw" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) +"kce" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) +"kcj" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"kcx" = ( +/obj/item/ammo_box/magazine/M16, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "kcz" = ( /obj/structure/platform{ dir = 1 @@ -16596,65 +12951,41 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"kcO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 +"kcF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"kcW" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"kda" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kdp" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar{ pixel_x = 5; - pixel_y = 11 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"kcP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"kdb" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) -"kdo" = ( -/obj/structure/platform_decoration, -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" + pixel_y = -5 }, +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"kdw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "So uh yeah, about that cat..."; - icon_state = "mwbloodyo"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"kdG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +"kdv" = ( +/obj/item/stool, +/obj/item/reagent_container/food/drinks/bottle/bluecuracao{ + pixel_x = 15; + pixel_y = 25 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "kdK" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, @@ -16670,34 +13001,31 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"keF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/prison{ - icon_state = "redfull" +"key" = ( +/obj/effect/landmark/corpsespawner/prison_security, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kez" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"keU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/area/fiorina/station/security) -"keL" = ( -/obj/structure/prop/structure_lattice{ +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"kfb" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"keV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "kfl" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -16705,19 +13033,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"kfA" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" +"kfw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"kfJ" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/power_ring) -"kfF" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "kfW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -16730,91 +13058,35 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"kge" = ( -/obj/effect/spawner/random/gun/rifle/highchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"kgP" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"khu" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) -"kic" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"kik" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) -"kil" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/wood, -/area/fiorina/station/civres_blue) -"kiq" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/fiorina/station/central_ring) -"kis" = ( +"khe" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +/turf/open/floor/prison/yellow/northwest, /area/fiorina/station/lowsec) -"kiE" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"kiW" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"kjo" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"khz" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/lz/near_lzI) -"kjz" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"kil" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/wood, +/area/fiorina/station/civres_blue) +"kiv" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"kjq" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security/wardens) "kjA" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, @@ -16827,52 +13099,30 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"kjT" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"kkk" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"kky" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"klb" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +"klc" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "klg" = ( /obj/item/stack/sheet/cardboard, /turf/open/floor/prison, /area/fiorina/station/disco) +"klm" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "klp" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/fiorina/tumor/ship) -"klv" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +"klx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "klC" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -16886,28 +13136,43 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"klL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"klI" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"kmc" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"kmi" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, -/area/fiorina/station/chapel) -"kmB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 }, -/area/fiorina/station/telecomm/lz1_tram) -"kmE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/park) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"kmj" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kml" = ( +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"kmn" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"kmG" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/flight_deck) "kmL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1; @@ -16923,6 +13188,14 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"kmR" = ( +/obj/item/storage/box/gloves, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"knc" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) "kng" = ( /obj/item/tool/stamp, /turf/open/floor/prison, @@ -16931,33 +13204,9 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"knt" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibup1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"knu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"knv" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"knw" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) "kny" = ( /obj/item/stack/tile/plasteel{ pixel_x = 5; @@ -16965,33 +13214,38 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kov" = ( -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, -/area/fiorina/station/security) +"kon" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "kow" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"koy" = ( -/obj/structure/platform{ +"kox" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, -/obj/item/fuelCell, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"koF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"koL" = ( +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"koN" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"koS" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "koV" = ( /obj/structure/platform{ dir = 4 @@ -17003,12 +13257,12 @@ /obj/structure/closet/emcloset, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"kpm" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" +"kpb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "kpp" = ( /obj/item/trash/popcorn, /obj/structure/cable/heavyduty{ @@ -17016,17 +13270,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"kpN" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"kpr" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) +"kpx" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) "kqe" = ( /obj/structure/monorail{ name = "launch track" @@ -17037,50 +13287,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"kqr" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"kqj" = ( +/obj/item/stack/sheet/wood{ + amount = 10 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) -"kqz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"kql" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "kqC" = ( /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"kqP" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"krn" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/tumor/servers) -"krp" = ( -/obj/item/ammo_casing{ - icon_state = "casing_9_1" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, -/area/fiorina/station/lowsec) "krr" = ( /obj/structure/machinery/filtration/console, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"kru" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "krG" = ( /obj/structure/platform{ dir = 1 @@ -17093,125 +13322,101 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"krQ" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"krT" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"ksk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"krK" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"krP" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ksV" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/tumor/servers) -"kte" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"kty" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"ktD" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"krR" = ( +/obj/item/stack/cable_coil/orange, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"kse" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"ksg" = ( +/turf/open/floor/prison/yellowcorner/east, +/area/fiorina/station/lowsec) +"ksn" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"ktI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/poster, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ksp" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) -"kul" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" +"ksI" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"ksM" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/botany) -"kur" = ( -/obj/item/trash/chips, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"ktd" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/servers) -"kuS" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/whitegreen/northeast, /area/fiorina/station/medbay) -"kuT" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "ywflowers_3" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"kvd" = ( +"ktq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/golden_cup, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 2; + pixel_y = 3 }, -/area/fiorina/station/power_ring) -"kvh" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"ktP" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/landmark/nightmare{ + insert_tag = "yardbasketball" }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"ktQ" = ( +/obj/structure/surface/rack, +/obj/item/device/camera, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"kum" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/turf/open/organic/grass{ - name = "astroturf" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) +"kus" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kvg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) "kvm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -17226,62 +13431,39 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"kvn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "kvx" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"kwm" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"kvy" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/disco) +"kvG" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"kvS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"kwn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"kwp" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/flight_deck) "kwv" = ( /obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"kwy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hugemushroomslice, -/obj/item/reagent_container/food/snacks/hugemushroomslice{ - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"kwK" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"kwL" = ( -/obj/item/fuelCell, -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) +"kwE" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "kwT" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating/prison, @@ -17297,46 +13479,53 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"kxM" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +"kxI" = ( +/turf/open/floor/prison/greencorner/east, +/area/fiorina/tumor/civres) +"kxL" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_1"; + name = "Fiberbush(tm) tubers" }, -/area/fiorina/tumor/aux_engi) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "kxQ" = ( /obj/structure/prop/resin_prop{ icon_state = "rack" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"kxV" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"kxW" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/tumor/aux_engi) +"kyq" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/tumor/aux_engi) +"kyA" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/disco) -"kye" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = -5 +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"kyJ" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) -"kyl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"kyT" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "kyW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/floor/plating/prison, @@ -17357,21 +13546,10 @@ /obj/item/tool/shovel/etool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"kzI" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/fiorina/oob) -"kzN" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +"kzK" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) "kzO" = ( /obj/structure/monorail{ @@ -17384,13 +13562,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kAo" = ( +"kAb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kAg" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "kAr" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/monorail{ @@ -17414,53 +13597,38 @@ /obj/item/toy/bikehorn/rubberducky, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"kBS" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) "kBV" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/park) -"kCg" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"kCv" = ( -/obj/item/trash/cigbutt/ucigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"kCb" = ( +/obj/item/device/reagent_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"kCq" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/chapel) -"kCG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +"kCD" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "kCI" = ( /obj/item/weapon/baseballbat/metal, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"kCK" = ( -/obj/item/trash/c_tube, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "kCY" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kDg" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) "kDj" = ( /obj/structure/janitorialcart, /obj/item/clothing/head/bio_hood/janitor{ @@ -17469,6 +13637,13 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) +"kDl" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "kDq" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -17477,50 +13652,27 @@ /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/disco) -"kDN" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"kDO" = ( -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"kDW" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 +"kDB" = ( +/obj/structure/inflatable/popped/door, +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kDP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/maintenance) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "kEj" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) +"kEo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "kEp" = ( /obj/structure/platform_decoration{ dir = 1 @@ -17538,18 +13690,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"kEE" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) -"kEP" = ( +"kEA" = ( +/obj/item/stool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"kEH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"kEO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/station/security) +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "kEZ" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -17557,73 +13720,35 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"kFa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) "kFq" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"kFH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ +"kFx" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "cell_stripe" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"kFE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "kFM" = ( /obj/item/stack/sheet/metal{ amount = 5 }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"kGh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"kGi" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +"kGr" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/station/central_ring) +"kGQ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/whitepurple/west, /area/fiorina/station/research_cells) -"kGq" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"kGu" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"kGw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - layer = 3.5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "kGW" = ( /obj/structure/largecrate/random/case, /turf/open/floor/prison, @@ -17632,133 +13757,137 @@ /obj/item/storage/toolbox, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"kHf" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"kHu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell2deval" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"kHc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kHh" = ( +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/medbay) +"kHz" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) "kHG" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"kHR" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"kHV" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "kIc" = ( /obj/structure/platform_decoration, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"kIe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_particle_accelerator{ - pixel_y = 6 - }, -/obj/structure/prop/souto_land/pole{ +"kIv" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/prop/souto_land/streamer{ +/obj/item/fuel_cell, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/wood, -/area/fiorina/station/park) -"kIo" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"kIA" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"kIM" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/tumor/ship) -"kIF" = ( -/obj/structure/machinery/light/double/blue{ +/obj/structure/prop/structure_lattice{ dir = 4; - pixel_x = 10; - pixel_y = 13 + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 2; + layer = 6; + name = "overhead pipe"; + pixel_x = -16; + pixel_y = 12 }, -/area/fiorina/tumor/fiberbush) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "kJf" = ( /obj/item/tool/wrench, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"kJC" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +"kJj" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"kJI" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"kJu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"kJy" = ( +/obj/structure/toilet, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"kJG" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/flight_deck) -"kJS" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/tumor/servers) +"kJM" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"kJT" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "kJX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison, /area/fiorina/station/disco) -"kKZ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +"kLi" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/plate, /area/fiorina/tumor/aux_engi) -"kLo" = ( +"kLs" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"kLI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"kLx" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"kLK" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) "kLN" = ( /obj/structure/janitorialcart, /obj/item/tool/mop{ @@ -17783,42 +13912,63 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"kLY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "bluecorner" +"kMg" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"kMm" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, -/area/fiorina/station/chapel) +/obj/item/frame/rack, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "kMq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/civres_blue) +"kMM" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"kMQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/oob) "kMU" = ( /obj/effect/spawner/gibspawner/robot, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"kNl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"kMZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/area/fiorina/station/research_cells) -"kNs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"kNg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, -/area/fiorina/station/chapel) -"kNz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 4 }, -/area/fiorina/station/research_cells) +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "kNB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/holywater{ @@ -17835,69 +13985,66 @@ /obj/item/stack/medical/bruise_pack, /turf/open/floor/prison, /area/fiorina/station/security) -"kNW" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/tumor/servers) +"kNX" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "kNY" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"kOb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"kOB" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"kOj" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"kOs" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 150; + icon_state = "metal_2" }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) "kOM" = ( /obj/structure/monorail{ name = "launch track" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"kOZ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" +"kOV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/power_ring) -"kPe" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/servers) -"kPi" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "panelscorched" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"kPk" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/tumor/aux_engi) -"kPv" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"kPo" = ( +/obj/structure/barricade/sandbags{ + dir = 4; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/area/fiorina/station/power_ring) +/obj/item/storage/pouch/tools/full, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "kPz" = ( /obj/structure/lattice, /turf/open/space, /area/fiorina/oob) +"kPB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "kPC" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -17906,89 +14053,43 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kPJ" = ( -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) +"kPD" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "kPY" = ( /turf/closed/wall/prison, /area/fiorina/tumor/fiberbush) -"kQY" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"kRt" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"kRL" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"kRM" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"kQr" = ( +/obj/item/tool/shovel, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/civres) +"kQF" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"kRb" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"kRr" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"kRY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "riot_control" }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison, +/area/fiorina/station/security) "kSh" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/fiorina/station/telecomm/lz1_cargo) -"kSp" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"kSI" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"kSL" = ( -/obj/structure/platform, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"kSU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"kTK" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) +"kSO" = ( +/turf/open/floor/prison/whitepurplecorner, +/area/fiorina/station/research_cells) "kTL" = ( /obj/item/stack/rods, /obj/item/shard{ @@ -17996,39 +14097,25 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"kTY" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) "kUj" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"kUI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"kUR" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"kUv" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"kUM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"kVc" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "kVg" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -18037,73 +14124,40 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kVz" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"kWj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"kWn" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +"kVX" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"kXt" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/lowsec) -"kWD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck/uno, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"kWJ" = ( -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"kXB" = ( +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" }, -/area/fiorina/tumor/ice_lab) -"kXw" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/fiorina/tumor/servers) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "kXD" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"kXH" = ( +"kXG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/flight_deck) +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "kXR" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -18112,56 +14166,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"kYM" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"kYg" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"kYh" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "kYZ" = ( /obj/structure/surface/table/woodentable, /obj/item/cell/super/empty, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"kZb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) +"kZd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"kZw" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "kZy" = ( /obj/item/clothing/mask/breath, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"kZI" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"kZQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp/captain, -/obj/structure/machinery/processor{ - icon_state = "blender_jug_f_red"; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"kZS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"kZA" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) "lag" = ( /obj/structure/cable/heavyduty{ @@ -18169,57 +14204,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"lax" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"laD" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"laG" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"laJ" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzI) -"laP" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"laJ" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) +"laN" = ( +/obj/structure/monorail{ + name = "launch track" }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_tram) -"laZ" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"lbe" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" +"laX" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "lbk" = ( /obj/effect/spawner/random/tech_supply, /obj/structure/machinery/light/double/blue{ @@ -18228,6 +14228,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) +"lbo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/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/open/floor/prison/redfull, +/area/fiorina/station/medbay) "lbt" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -18247,13 +14256,23 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"lcu" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +"lbV" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/disco) +"lbX" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lcb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_4" }, -/area/fiorina/station/medbay) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"lch" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/fiorina/station/telecomm/lz1_cargo) "lcH" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -18271,163 +14290,146 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ldm" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +"lds" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/research_cells) -"ldt" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"ldw" = ( /obj/item/ammo_casing{ - icon_state = "casing_6" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"ldy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ldT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "cartridge_2" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "ldZ" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"leq" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"lev" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" +"leh" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "leF" = ( /obj/item/trash/cigbutt/ucigbutt, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"leR" = ( -/obj/item/device/whistle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"leO" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"leS" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "lfo" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lfJ" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenblue" +"lfq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/area/fiorina/station/botany) -"lfS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lft" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"lfM" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/tumor/ice_lab) -"lgy" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"lhi" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/explosive/mine/pmc, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"lhj" = ( -/obj/structure/platform{ - dir = 1 +"lgd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/aux_engi) +"lgL" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) +"lgX" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/station/transit_hub) -"lhQ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lho" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"lhy" = ( +/obj/structure/filingcabinet/disk, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"lhL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lhM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"lhN" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/lz/near_lzII) "lhY" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/prison, /area/fiorina/station/power_ring) -"lic" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"lik" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"lie" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"lin" = ( +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"lio" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "liA" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"liD" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/central_ring) "liI" = ( /obj/item/bedsheet/green, /obj/structure/bed, /obj/item/toy/plush/farwa, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"liT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"liX" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) "liZ" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18444,74 +14446,63 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ljh" = ( -/obj/structure/closet/crate/medical, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"ljA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"ljW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"ljZ" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"lka" = ( -/obj/structure/bed/chair{ - dir = 8 +"lji" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"lkc" = ( +/turf/open/floor/prison/greencorner, +/area/fiorina/tumor/civres) +"lks" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/lowsec) +/obj/item/stool, +/obj/item/clothing/shoes/slippers_worn, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "lku" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/oob) -"lkD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"lle" = ( +"lkv" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"lll" = ( +"lld" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lli" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 }, -/area/fiorina/station/lowsec) +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"llm" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) "lls" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -18522,40 +14513,12 @@ /obj/item/reagent_container/food/drinks/cans/souto/diet/cherry, /turf/open/floor/wood, /area/fiorina/station/park) -"llC" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"llG" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "llQ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"llW" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "lml" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -18571,19 +14534,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"lmr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"lmy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"lmL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/fiorina/station/park) +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "lmM" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18592,46 +14550,56 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"lmP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lmV" = ( /turf/open/floor/prison, /area/fiorina/tumor/fiberbush) -"lmX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"lnf" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"lna" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lni" = ( +/obj/structure/barricade/metal{ + health = 250; + icon_state = "metal_1" }, -/area/fiorina/station/flight_deck) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/ice_lab) "lnK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_tram) -"lnU" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"lok" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"lnX" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"lor" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) +"low" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/chapel) +"loK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/oob) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "lpf" = ( /obj/item/storage/belt/marine, /turf/open/floor/prison, @@ -18641,24 +14609,6 @@ icon_state = "stan27" }, /area/fiorina/lz/near_lzI) -"lpm" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"lpp" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - layer = 2.97; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) "lpr" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -18669,12 +14619,12 @@ /obj/structure/barricade/handrail/type_b, /turf/open/floor/prison, /area/fiorina/station/disco) -"lpA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "whitepurple" +"lpv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Residential Apartment" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "lpV" = ( /obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ @@ -18683,33 +14633,19 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"lqi" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"lqo" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +"lqg" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) "lqq" = ( /turf/open/floor/wood, /area/fiorina/station/chapel) -"lqB" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "redfull" +"lrk" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/station/park) "lrm" = ( /obj/structure/barricade/metal/wired{ health = 250; @@ -18717,155 +14653,104 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"lro" = ( -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +"lrw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) "lrA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"lrC" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) "lrE" = ( /obj/structure/bed, /obj/item/bedsheet/rd, /obj/item/toy/katana, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"lsf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"lsl" = ( -/obj/item/tool/shovel, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"lso" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"lsr" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"lsU" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +"lst" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/central_ring) +"lsy" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"lsO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"lsV" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/telecomm/lz1_cargo) -"ltb" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"ltM" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null }, -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, /obj/item/clothing/under/marine/ua_riot, /obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"ltu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"lty" = ( -/obj/item/toy/bikehorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"ltW" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/tumor/aux_engi) +"ltZ" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, -/area/fiorina/station/park) -"ltV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/fiorina/lz/near_lzI) -"luv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer3/laptop/secure_data, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lui" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"luy" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/maintenance) -"luH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/coin/gold{ - desc = "Coin op, in this place, in this year, localized entirely on this table? .... I uh, yes."; - name = "arcade token"; - pixel_x = -6; - pixel_y = 3 +"lut" = ( +/obj/item/trash/burger, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"luP" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 }, -/area/fiorina/station/flight_deck) -"luU" = ( -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 }, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"luR" = ( +/turf/open/floor/prison/blue/northeast, /area/fiorina/station/power_ring) "lvg" = ( /obj/item/trash/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"lvh" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "lvi" = ( /obj/structure/sign/poster{ icon_state = "poster6"; @@ -18873,27 +14758,36 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"lvj" = ( +/obj/item/storage/backpack{ + pixel_x = -11; + pixel_y = 15 + }, +/obj/item/trash/syndi_cakes, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "lvk" = ( /obj/structure/bed/sofa/south/grey, /turf/open/floor/prison, /area/fiorina/station/disco) -"lvs" = ( -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"lvx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +"lvm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/tumor/ice_lab) +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "lvy" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/fiorina/tumor/aux_engi) +"lvF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) "lvN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -18906,6 +14800,19 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/medbay) +"lvO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 + }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "lwd" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -18914,45 +14821,56 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"lwB" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"lwG" = ( -/turf/open/floor/prison{ +"lwl" = ( +/obj/item/ammo_casing{ dir = 6; - icon_state = "darkbrown2" + icon_state = "casing_10_1" }, -/area/fiorina/tumor/aux_engi) -"lwK" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"lwp" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"lwq" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/tumor/servers) -"lwO" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"lxe" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/heavy, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/item/storage/box/holobadge{ + pixel_y = 3 }, -/area/fiorina/station/medbay) -"lxk" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "whitegreen" +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"lww" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"lwO" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"lwY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"lxM" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "lyd" = ( /obj/structure/surface/rack, /obj/item/folder/black, @@ -18967,118 +14885,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"lyg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -6; - pixel_y = 20 - }, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = 6; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"lyo" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"lyF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +"lys" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) +"lyB" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"lyE" = ( +/obj/item/reagent_container/food/drinks/bottle/rum, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "lyJ" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lyX" = ( -/obj/structure/inflatable/popped/door, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"lzb" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"lyL" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"lyN" = ( +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/central_ring) +"lyS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "lzm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced/tinted, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lzn" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "squares" +"lzr" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 }, -/area/fiorina/station/telecomm/lz1_cargo) +/obj/structure/machinery/shower{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "lzJ" = ( /turf/open/floor/plating/prison, /area/fiorina/station/park) -"lzO" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"lzW" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" +"lzP" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/station/telecomm/lz1_cargo) -"lzX" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) -"lAf" = ( -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"lAc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "lAh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/ice_lab) -"lAm" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/lz/near_lzI) -"lAv" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) +"lAt" = ( +/turf/open/floor/prison/redcorner/north, +/area/fiorina/station/security) "lAS" = ( /turf/open/floor/prison, /area/fiorina/station/power_ring) @@ -19086,19 +14963,24 @@ /obj/structure/bed/stool, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"lAX" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "lAY" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/northright, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"lBg" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "redfull" +"lBw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "lBJ" = ( /obj/structure/bed/chair{ dir = 4; @@ -19110,64 +14992,30 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"lCm" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"lCs" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"lCw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"lCz" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"lCE" = ( +"lCG" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lDp" = ( /obj/structure/platform{ - dir = 4 - }, -/obj/item/tool/shovel/spade, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"lDe" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"lDm" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 8 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"lDq" = ( +/obj/structure/coatrack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "lDC" = ( /turf/closed/wall/prison, /area/fiorina/station/central_ring) +"lDY" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "lEa" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -19175,6 +15023,16 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"lEb" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/flight_deck) +"lEd" = ( +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"lEg" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) "lEp" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -19185,6 +15043,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) +"lEs" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lEw" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "lEy" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -19196,81 +15064,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"lEz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"lEE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/station/disco) -"lEI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"lEL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "lFc" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/fiorina/station/park) -"lFj" = ( -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"lFx" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lFC" = ( -/obj/item/clothing/head/cmcap, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"lFO" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lGh" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"lFA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "lGm" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"lHc" = ( -/obj/structure/bed{ - icon_state = "abed" +"lGu" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/card/id/visa, -/turf/open/floor/prison{ - icon_state = "whitepurple" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"lHu" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "lHx" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -19282,34 +15118,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"lHB" = ( -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"lHL" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/blood, -/obj/item/attachable/bipod, -/obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"lIj" = ( +/obj/item/pamphlet/engineer, +/obj/structure/closet, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"lIn" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "lIv" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/lz/near_lzI) -"lIx" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"lIB" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "lIG" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, @@ -19318,61 +15147,45 @@ /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"lJa" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lJm" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"lJv" = ( -/obj/structure/platform, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light/double/blue{ +"lIO" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"lIT" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"lJr" = ( +/obj/structure/sink{ dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"lJy" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"lKd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"lKt" = ( -/obj/structure/sign/poster{ - icon_state = "poster18"; - pixel_y = 32 + pixel_x = 12 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"lJs" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/transit_hub) +"lKi" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"lKl" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"lKL" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "lLe" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -19387,95 +15200,45 @@ /obj/item/bedsheet/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"lLP" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"lLU" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"lLM" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) "lMi" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) +"lMq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lMx" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "lMB" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"lMM" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/tumor/servers) -"lNg" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"lNv" = ( -/obj/item/handcuffs/cable/pink, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"lNB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster3"; - name = "magazine"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/sign/poster{ - desc = "Hubba hubba."; - icon_state = "poster17"; - name = "magazine" - }, -/obj/structure/sign/poster{ - desc = "The M41A is on the cover."; - icon_state = "poster15"; - name = "magazine"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"lOa" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" +"lMY" = ( +/obj/item/disk/botany, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"lNN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "lOb" = ( /obj/structure/closet/crate/internals, /obj/item/tool/crew_monitor, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"lOo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "lOB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -19485,19 +15248,19 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"lOE" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"lPq" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +"lOL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"lPJ" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) +"lPP" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "lPV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -19513,42 +15276,35 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"lQd" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"lQf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"lPY" = ( +/turf/open/gm/river/red_pool, /area/fiorina/station/park) -"lQZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"lRe" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"lQu" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/blood, +/obj/item/attachable/bipod, +/obj/item/device/multitool, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"lQI" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/fiorina/station/flight_deck) -"lRH" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"lQK" = ( +/obj/structure/surface/rack, +/obj/item/tool/mop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lQQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) "lRI" = ( /obj/item/device/flashlight/lamp/tripod, @@ -19557,6 +15313,13 @@ "lRT" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzI) +"lSb" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/item/storage/briefcase{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "lSj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 2; @@ -19564,58 +15327,53 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lSY" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"lTm" = ( -/obj/structure/window/reinforced{ - dir = 8 +"lSo" = ( +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe{ + pixel_y = 5 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/tool/pickaxe{ + pixel_y = 10 }, +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"lTp" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"lSt" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) +"lTh" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"lTj" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/tumor/aux_engi) +"lTD" = ( +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"lTS" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/area/fiorina/tumor/ship) -"lUg" = ( -/obj/structure/stairs/perspective{ +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"lUc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_x = -2; + pixel_y = 7 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "lUi" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" }, /area/fiorina/tumor/ship) -"lUp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "lUs" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -19628,40 +15386,39 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"lUu" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/civres_blue) "lUE" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"lVP" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged2" - }, +"lUJ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"lWh" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"lUO" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"lVo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"lVG" = ( +/obj/item/device/multitool, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"lVL" = ( +/obj/structure/barricade/sandbags{ + dir = 1; + icon_state = "sandbag_0" + }, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "lWr" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19670,35 +15427,27 @@ /obj/structure/platform/shiva, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"lWD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ +"lWw" = ( +/obj/structure/bed/chair{ dir = 4; - icon_state = "greenblue" + layer = 2.8 }, -/area/fiorina/station/botany) -"lXc" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"lWB" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 5; + pixel_y = 5 }, -/area/fiorina/station/lowsec) -"lXf" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"lXk" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"lXn" = ( +/obj/item/shard{ + icon_state = "large" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "lXs" = ( /obj/item/book/manual/marine_law, /obj/item/book/manual/marine_law{ @@ -19710,6 +15459,12 @@ }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) +"lXL" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "lXO" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -19722,87 +15477,52 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"lYc" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"lYl" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"lYr" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"lYw" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"lYA" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) +"lYg" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"lYN" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"lYU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "lZf" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/fiorina/tumor/aux_engi) +"lZk" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"lZt" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "lZA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"lZC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) -"mak" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"mam" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"mal" = ( +/obj/structure/reagent_dispensers/watertank{ + layer = 2.6 }, -/area/fiorina/station/disco) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "maC" = ( /obj/structure/window/reinforced{ dir = 4 @@ -19811,40 +15531,14 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/prison, /area/fiorina/station/security) -"maE" = ( -/obj/item/device/motiondetector, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "mbc" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"mbe" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "mbg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"mbi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "mbp" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 @@ -19855,83 +15549,44 @@ /obj/item/clipboard, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mbH" = ( -/obj/structure/platform, -/obj/item/fuelCell, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/lowsec) -"mbN" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"mcc" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mbJ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) "mcr" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stock_parts/matter_bin/super, /turf/open/floor/wood, /area/fiorina/station/park) -"mct" = ( -/obj/item/trash/kepler, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"mcE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/lz/near_lzI) -"mcG" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"mcN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzI) -"mcT" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"mcL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"mcQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"mda" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) "mdd" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mdn" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +"mdm" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"mdu" = ( +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "mdJ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -19939,63 +15594,31 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"mea" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/fiorina/maintenance) -"med" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"mel" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"mey" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"meF" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" +"mdR" = ( +/obj/item/shard{ + icon_state = "large" }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/security) -"meG" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"meM" = ( +"mek" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"mfd" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"mez" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"meU" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_3" + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"meZ" = ( +/obj/item/tool/shovel/etool, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "mfe" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/twohanded/sledgehammer{ @@ -20013,15 +15636,12 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"mfK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +"mfu" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"mfB" = ( +/turf/open/floor/prison/green, /area/fiorina/station/transit_hub) "mfR" = ( /obj/structure/bed{ @@ -20033,45 +15653,33 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"mfV" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"mgC" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"mgU" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "birthday" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"mhb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"mgk" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4 }, -/area/fiorina/station/medbay) -"mhe" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"mgl" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"mgz" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"mgZ" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 }, -/area/fiorina/station/research_cells) +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"mhc" = ( +/obj/structure/platform, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"mhn" = ( +/turf/open/floor/prison/red, +/area/fiorina/station/security) "mho" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20079,19 +15687,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"mhu" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"mhv" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/central_ring) +"mhC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/southeast, +/area/fiorina/tumor/aux_engi) "mhM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -20099,21 +15698,20 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"mhP" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "mhR" = ( /obj/effect/spawner/random/gun/rifle/lowchance, /turf/open/auto_turf/sand/layer1, /area/fiorina/station/flight_deck) -"mhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette, -/obj/item/storage/fancy/cigarettes/emeraldgreen{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) "mie" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window/reinforced{ @@ -20125,22 +15723,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"mii" = ( -/obj/item/weapon/pole/wooden_cane, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"miu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "miB" = ( /obj/structure/barricade/metal{ health = 85; @@ -20148,10 +15730,27 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) +"miH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"miR" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) "miU" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"miX" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"miY" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "miZ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -20164,55 +15763,63 @@ "mjx" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"mjB" = ( -/obj/structure/platform, -/turf/open/gm/river{ - name = "pool" - }, -/area/fiorina/station/park) -"mjD" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"mki" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" +"mjE" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"mjK" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/fiorina/station/flight_deck) -"mky" = ( -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"mjM" = ( +/obj/structure/closet/firecloset/full, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mjY" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mke" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"mkF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/area/fiorina/station/medbay) -"mkB" = ( -/turf/open/floor/prison{ +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/oob) +"mkW" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "darkbrowncorners2" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/park) -"mli" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"mlf" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 }, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "mlC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"mlE" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) "mlM" = ( /obj/structure/machinery/computer3/server/rack, /obj/structure/barricade/handrail/type_b{ @@ -20238,6 +15845,14 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"mmG" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"mmL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "mmP" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/monorail{ @@ -20246,14 +15861,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"mni" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "mnp" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, @@ -20261,37 +15868,76 @@ "mny" = ( /turf/closed/wall/prison, /area/fiorina/station/flight_deck) -"moJ" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +"mnE" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/power_ring) +"mnM" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"mnR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"mof" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"mop" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"moE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"moF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"moG" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "moW" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) +"mpc" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/security) "mpf" = ( /obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ layer = 2.6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"mpr" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"mpn" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"mpy" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_3"; + name = "Fiberbush(tm) tubers" }, -/area/fiorina/station/power_ring) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) +"mpz" = ( +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "mpO" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -20299,40 +15945,11 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"mpT" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"mqc" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"mqo" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"mqY" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) +"mqh" = ( +/obj/item/device/binoculars, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "mrk" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -20340,64 +15957,42 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"mrm" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "mrn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"mru" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "mrG" = ( /obj/structure/extinguisher_cabinet, /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"mrO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) "mrX" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"msd" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) "msj" = ( /obj/item/toy/crayon/orange, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"msn" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/fiorina/tumor/ship) -"mss" = ( +"mso" = ( +/obj/structure/closet/firecloset/full, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_tram) +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "msu" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -20405,22 +16000,29 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"msv" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +"msN" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/station/central_ring) "msS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"msW" = ( +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"mtg" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) "mtj" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -20429,49 +16031,32 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"mtk" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +"mtq" = ( +/obj/item/reagent_container/blood, +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) +"mts" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/bowlerhat{ + pixel_y = 15 }, -/area/fiorina/tumor/ice_lab) -"mtm" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/greenfull/east, /area/fiorina/tumor/civres) -"mtr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) +"mtu" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) "muf" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"muB" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "muO" = ( /turf/open/floor/prison, /area/fiorina/station/chapel) -"muT" = ( -/obj/item/device/flashlight/flare/on, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "muZ" = ( /obj/item/storage/briefcase, /turf/open/floor/prison, @@ -20480,6 +16065,33 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) +"mvy" = ( +/obj/item/paper, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"mvz" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/fiorina/tumor/servers) +"mwh" = ( +/obj/structure/monorail{ + dir = 4; + name = "launch track" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"mwo" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"mwr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "mwL" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -20487,45 +16099,26 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"mwU" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mxc" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/central_ring) "mxk" = ( /obj/item/trash/tray, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"mxn" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"mxs" = ( -/obj/item/storage/belt/marine/quackers, -/obj/effect/spawner/gibspawner/human, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, -/area/fiorina/station/park) -"mxz" = ( -/obj/item/bedsheet, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mxu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"mxF" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "mxG" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -20533,6 +16126,12 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"mxI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "mxO" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -20552,61 +16151,57 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/fiorina/station/chapel) -"myg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"myt" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "red" +"myc" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/station/power_ring) -"myO" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/stack/sheet/metal{ + amount = 5 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"mye" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"myA" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/transit_hub) +"myV" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, -/area/fiorina/station/medbay) -"mzp" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"mzo" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"mzq" = ( +/turf/open/floor/prison/red/southwest, +/area/fiorina/station/power_ring) +"mzs" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/tumor/ice_lab) -"mzy" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "mzz" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"mzF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "mzS" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1; @@ -20620,19 +16215,18 @@ opacity = 0 }, /area/fiorina/oob) -"mAg" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"mzV" = ( +/obj/item/reagent_container/food/drinks/cans/souto/cherry, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"mzY" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"mAi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "mAv" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0; @@ -20644,61 +16238,41 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"mAz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "mAA" = ( /obj/item/storage/briefcase/inflatable, /turf/open/floor/prison, /area/fiorina/station/disco) -"mAE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"mAG" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/item/tool/soap/nanotrasen, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"mBm" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"mAZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"mBb" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"mBM" = ( +/turf/open/floor/prison/green/southwest, /area/fiorina/station/transit_hub) -"mBy" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"mBV" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +"mBW" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"mCd" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"mCm" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/station/power_ring) +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) "mCA" = ( /obj/structure/prop/resin_prop, /turf/open/floor/plating/prison, @@ -20707,53 +16281,31 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/lowsec) -"mCG" = ( -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"mCT" = ( -/obj/structure/surface/rack, -/obj/item/handcuffs/zip, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) -"mDi" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mCN" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, +/turf/open/floor/prison/damaged1/southwest, /area/fiorina/station/central_ring) -"mDs" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "mDz" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"mDV" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"mDR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mDU" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) "mEb" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/prison, /area/fiorina/station/security) -"mEc" = ( -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/station/park) "mEv" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -20761,6 +16313,9 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/research_cells) +"mEz" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/aux_engi) "mEL" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -20771,96 +16326,125 @@ "mEO" = ( /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mFf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/oob) -"mFh" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +"mEP" = ( +/obj/structure/platform, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"mFm" = ( -/obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "mFv" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"mFz" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibmid1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"mFw" = ( +/obj/item/ammo_casing{ + dir = 8; + icon_state = "cartridge_2" }, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"mFH" = ( +/obj/item/stack/cable_coil/pink, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) +"mFS" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"mFW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/wood, +/area/fiorina/station/park) +"mFZ" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/tumor/servers) "mGe" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) +"mGs" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) "mGx" = ( /obj/item/reagent_container/food/drinks/sillycup, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"mGW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"mGX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/station/park) +"mHp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"mHs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "mHC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/maintenance) -"mHN" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) +"mHO" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "mHR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"mIk" = ( +"mHS" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mIh" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"mIq" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/park) "mIu" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"mIA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"mIE" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) +"mIx" = ( +/obj/structure/barricade/plasteel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"mIV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) "mJe" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, @@ -20880,43 +16464,43 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"mJo" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "mJq" = ( /obj/item/trash/kepler, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"mJy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"mJz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"mJM" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"mJL" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "mKt" = ( /obj/item/storage/toolbox, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"mKv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "mKy" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"mKG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +"mKJ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + name = "\improper Fiorina Engineering Canteen Vendor" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "mKS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -20931,23 +16515,20 @@ }, /turf/open/space, /area/fiorina/oob) -"mLe" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"mLB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mLk" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "4" }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"mLp" = ( +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"mLr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "mLE" = ( /obj/structure/closet, /obj/item/reagent_container/spray/cleaner, @@ -20961,119 +16542,46 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"mLS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"mMb" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"mMf" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"mLV" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"mMo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mLW" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/fiorina/station/medbay) -"mMq" = ( -/obj/item/trash/chips, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mMl" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 }, +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"mMY" = ( +/obj/item/paper, +/obj/structure/inflatable/door, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"mMH" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"mNg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c10, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"mNf" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" }, -/area/fiorina/station/lowsec) +/obj/item/storage/toolbox, +/obj/item/storage/toolbox, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) "mNh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"mNj" = ( +"mNF" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"mNn" = ( -/obj/structure/machinery/door/airlock/almayer/marine, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"mNC" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"mNI" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "mNJ" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -21086,47 +16594,49 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"mOn" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"mOr" = ( -/obj/item/poster, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"mOF" = ( -/turf/open/floor/prison{ +"mNQ" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"mNU" = ( +/obj/item/trash/candy, +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "bluecorner" - }, -/area/fiorina/station/civres_blue) -"mOT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bottle/spaceacillin{ - pixel_x = -6; - pixel_y = 4 + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"mNZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"mOM" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "mOW" = ( /obj/structure/barricade/handrail/type_b{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"mPA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"mPK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"mPT" = ( +/turf/open/floor/corsat/plate, /area/fiorina/station/telecomm/lz1_cargo) "mPW" = ( /obj/structure/prop/structure_lattice{ @@ -21135,20 +16645,12 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) -"mQe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"mQn" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"mQr" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "mQD" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -21158,98 +16660,38 @@ /obj/item/storage/toolbox/syndicate, /turf/open/floor/prison, /area/fiorina/station/disco) -"mQG" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"mQZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"mRk" = ( -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/warning_cone{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"mRz" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_10_1" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"mRT" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"mRU" = ( +"mQS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"mSM" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"mSN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ +"mRH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"mRN" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"mSv" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/central_ring) +"mSz" = ( +/obj/structure/machinery/computer/communications{ dir = 4; - icon_state = "cell_stripe" + pixel_y = 5 }, -/area/fiorina/tumor/servers) -"mSY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"mSO" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair"; + pixel_y = 6 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "mTa" = ( /obj/structure/ice/thin/indestructible{ @@ -21263,90 +16705,36 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"mTq" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.8 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"mTy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/oob) -"mTJ" = ( -/obj/item/stool, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "mTM" = ( /obj/item/tool/warning_cone, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"mTS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"mTX" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"mUk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"mUr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "mUA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"mVg" = ( -/obj/structure/window{ +"mUP" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"mUU" = ( +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/chapel) +"mVx" = ( +/obj/structure/barricade/handrail/type_b{ dir = 8 }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"mWg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"mVX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + density = 0; + pixel_y = 16 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "mWx" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -21362,23 +16750,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"mWV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"mWX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) "mWY" = ( /obj/item/coin/uranium{ anchored = 1; @@ -21397,126 +16768,75 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"mXj" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + layer = 2.97; + pixel_y = -14 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "mXk" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"mXq" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"mXI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"mXT" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"mXY" = ( +"mXn" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"mXs" = ( /obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" + dir = 4 }, -/area/fiorina/station/civres_blue) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "mYb" = ( /obj/structure/closet/cabinet, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"mYo" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"mYk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) -"mYp" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"mYu" = ( -/obj/structure/window/reinforced{ +"mYm" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"mYw" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"mYP" = ( +/obj/structure/stairs/perspective{ dir = 8; - health = 80 + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"mYx" = ( -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"mYN" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "mYZ" = ( /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"mZf" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "mZo" = ( /obj/item/tool/shovel, /turf/open/auto_turf/sand/layer1, /area/fiorina/tumor/civres) -"mZw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) -"mZG" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"mZO" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "mZV" = ( /obj/structure/monorail{ name = "launch track" @@ -21531,18 +16851,30 @@ "naf" = ( /turf/closed/shuttle/ert, /area/fiorina/oob) -"naj" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +"nag" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/area/fiorina/tumor/servers) -"naN" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nao" = ( +/obj/item/toy/handcard/uno_reverse_blue, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"naA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) +"naO" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"naT" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "naW" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) @@ -21550,40 +16882,43 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) +"nbj" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/tumor/servers) "nbo" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison, /area/fiorina/station/chapel) -"nbv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"nbU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"ncn" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" +"nbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"nbM" = ( +/turf/open/floor/prison/darkbrown2/northeast, /area/fiorina/tumor/aux_engi) -"ncP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"nbP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/central_ring) +"ncs" = ( +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"ncB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"ncO" = ( +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "ncQ" = ( /obj/structure/platform_decoration{ dir = 4 @@ -21599,6 +16934,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"ndj" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "ndl" = ( /obj/item/storage/box/cups, /obj/structure/surface/table/reinforced/prison, @@ -21621,96 +16960,51 @@ /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"ndC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "ndZ" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/medbay) -"nec" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"nee" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"nej" = ( -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"nes" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"neD" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"neH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"neX" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"neE" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/botany) +"neS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"neW" = ( +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) +"neY" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/aux_engi) +"nfq" = ( +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "nfA" = ( /obj/structure/platform, /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"nfE" = ( +/turf/open/floor/prison/cell_stripe, +/area/fiorina/station/flight_deck) "nfF" = ( /obj/structure/prop/structure_lattice{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"nfI" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"nfU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) "nga" = ( /turf/closed/wall/strata_ice/jungle{ @@ -21718,30 +17012,22 @@ name = "synthetic vegetation" }, /area/fiorina/station/civres_blue) -"ngd" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"ngk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "ngq" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"ngr" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ngS" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"ngY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/prison/darkyellow2/southeast, /area/fiorina/station/flight_deck) "nhd" = ( /obj/structure/stairs/perspective{ @@ -21763,18 +17049,17 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nhz" = ( -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/fiorina/station/research_cells) -"nhF" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"nhs" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/lz/near_lzI) +"nhx" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "nhR" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -21802,101 +17087,108 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"niw" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) -"njq" = ( -/obj/item/tool/weldpack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"nit" = ( +/obj/structure/surface/rack, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "njx" = ( /turf/open/floor/prison, /area/fiorina/tumor/servers) -"njC" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"njT" = ( +"njI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"njP" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/chapel) +"nkE" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"nkZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) -"nkx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/weapon/baton, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 12 }, -/area/fiorina/tumor/aux_engi) -"nlw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"nld" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 }, -/area/fiorina/tumor/ship) -"nlR" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 }, -/area/fiorina/tumor/fiberbush) -"nmm" = ( -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nly" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/research_cells) -"nmx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"nlA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"nmt" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"nmz" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"nmB" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "nmQ" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/station/research_cells) +"nmS" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "nmT" = ( /obj/item/toy/crayon/blue, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nnx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) +"nnh" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"nnp" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"nnA" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"nnP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "nnX" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -21909,12 +17201,11 @@ /obj/structure/largecrate/supply/supplies/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"noe" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) +"noi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "noY" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -21922,104 +17213,59 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"nph" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/fiorina/station/lowsec) -"npp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"npn" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"npL" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, -/area/fiorina/station/botany) -"npx" = ( -/obj/structure/barricade/handrail/type_b{ +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"npQ" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"npz" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_tram) -"npN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/gun/pistol, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"npV" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/tumor/ice_lab) +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "nql" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/fiorina/station/medbay) -"nqs" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"nqL" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/power/apc{ - dir = 4 +"nqq" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"nqK" = ( +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) "nqN" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"nqV" = ( -/obj/item/device/cassette_tape/nam, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "nre" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"nri" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "nrq" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/station/disco) -"nrI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/plantspray/pests, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"nrx" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/maintenance) "nrL" = ( /obj/structure/barricade/sandbags{ icon_state = "sandbag_0"; @@ -22028,63 +17274,37 @@ /obj/structure/machinery/m56d_hmg, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"nrR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"nrY" = ( -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"nsb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"nsg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"nsn" = ( -/obj/structure/janitorialcart, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ +"nrV" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"nsl" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/maintenance) +"nsE" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"nsG" = ( +/obj/item/fuel_cell, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"nsY" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/prop/souto_land/streamer{ dir = 1; - icon_state = "darkbrown2" + pixel_y = 24 }, +/turf/open/floor/prison/darkbrown2/west, /area/fiorina/station/park) -"nsx" = ( -/obj/structure/closet/firecloset/full, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"nsC" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"nsH" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"nta" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, +/obj/item/tool/pen, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "ntg" = ( /obj/structure/flora/pottedplant{ @@ -22093,10 +17313,35 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) +"nti" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"ntl" = ( +/obj/item/stool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ntn" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ntv" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"ntx" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" + }, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"ntz" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "ntH" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -22109,41 +17354,74 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nuE" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"nuO" = ( -/obj/structure/closet/basketball, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ntX" = ( +/obj/structure/bed/roller, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"ntY" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"nua" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nus" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nuN" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/research_cells) -"nvz" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"nuQ" = ( +/obj/item/inflatable, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"nuY" = ( +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco) +"nvn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) +"nvo" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 8 }, -/area/fiorina/tumor/civres) -"nvC" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 11; + pixel_y = 8 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 1; + pixel_y = 8 }, -/obj/structure/platform_decoration{ - dir = 9 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nvr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"nvw" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nvx" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/tumor/ice_lab) +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) "nvD" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/botany) @@ -22159,40 +17437,48 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nvZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"nwh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"nwa" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) +"nwi" = ( +/obj/item/clothing/head/cmcap, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"nwj" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/power_ring) +"nxh" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/medbay) -"nxl" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"nxn" = ( /obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 + pixel_y = -1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"nxB" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/area/fiorina/station/civres_blue) -"nxH" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"nxE" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) "nxM" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -22201,45 +17487,19 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"nyk" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"nyl" = ( -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"nyb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "nyo" = ( /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"nyy" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"nyD" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/fiorina/station/security) -"nyQ" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"nyR" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "nyS" = ( /obj/structure/platform{ @@ -22256,19 +17516,15 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) -"nzm" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"nzp" = ( -/obj/item/clothing/gloves/boxing/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) +"nzn" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"nzB" = ( +/obj/structure/largecrate/supply/ammo, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "nzI" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, @@ -22289,154 +17545,58 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nAr" = ( -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"nBp" = ( -/obj/item/weapon/gun/smg/nailgun, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"nBu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"nBB" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"nBG" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"nBK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"nBM" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"nBO" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"nBR" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"nBV" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) +"nAh" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"nAD" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/central_ring) +"nBq" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "nCa" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"nCl" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"nCo" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "nCu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"nCw" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"nCC" = ( -/obj/item/trash/candy, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "nCJ" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"nCX" = ( -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"nDJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"nDT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/turf/open/floor/prison, -/area/fiorina/station/security) -"nDW" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"nDi" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nDm" = ( +/obj/item/bananapeel{ + name = "tactical banana peel" }, -/area/fiorina/tumor/ice_lab) -"nEs" = ( -/turf/open/floor/prison{ - icon_state = "greencorner" +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"nDv" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/tumor/civres) +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"nDY" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "nEy" = ( /obj/item/explosive/grenade/high_explosive/frag, /obj/structure/machinery/light/double/blue{ @@ -22445,37 +17605,44 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"nEN" = ( -/obj/item/clothing/glasses/material, -/obj/structure/barricade/handrail, -/turf/open/organic/grass{ - name = "astroturf" - }, +"nEA" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"nEK" = ( +/turf/open/floor/prison/damaged3, +/area/fiorina/station/disco) +"nER" = ( +/turf/open/floor/prison/floor_marked/west, /area/fiorina/station/research_cells) +"nEY" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"nFs" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "nFB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/gift, /turf/open/floor/wood, /area/fiorina/station/park) -"nFI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"nFP" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"nGk" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) +"nFY" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/north, +/area/fiorina/station/botany) +"nGb" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"nGe" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "nGq" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/prison, @@ -22484,18 +17651,6 @@ /obj/item/newspaper, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"nGz" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"nGI" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) "nGW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -22514,42 +17669,20 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"nHb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"nHm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"nHG" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"nHH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +"nHg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"nHt" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/flight_deck) +"nHy" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "nHZ" = ( /turf/closed/shuttle/ert{ icon_state = "wy_rightengine" @@ -22572,16 +17705,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nIf" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/obj/item/clothing/shoes/slippers_worn, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) "nIh" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -22589,57 +17712,36 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"nIn" = ( -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"nIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"nIq" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) -"nIy" = ( -/obj/item/explosive/grenade/high_explosive/frag, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"nID" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"nJv" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/lz/near_lzII) +/turf/open/gm/river/pool, +/area/fiorina/station/park) "nJC" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"nJQ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"nJX" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/maintenance) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"nKb" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "nKl" = ( /obj/structure/platform{ dir = 1 @@ -22652,12 +17754,6 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"nKG" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) "nKX" = ( /obj/structure/barricade/metal{ dir = 8; @@ -22670,38 +17766,50 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"nLf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"nLh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 +"nLp" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"nLF" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" }, -/area/fiorina/station/transit_hub) -"nLl" = ( -/turf/open/floor/prison{ +/obj/structure/surface/table/reinforced/prison{ dir = 4; - icon_state = "blue" + flipped = 1 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nLG" = ( +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/kitchen, /area/fiorina/station/power_ring) "nLV" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/fiorina/tumor/aux_engi) +"nMa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"nMb" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nMt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"nMY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) "nMZ" = ( /obj/structure/ice/thin/indestructible, /obj/structure/prop/invuln{ @@ -22717,10 +17825,44 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"nNa" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "nNJ" = ( /obj/structure/surface/rack, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"nNN" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) +"nNT" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"nOg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"nOj" = ( +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) "nOw" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -22738,64 +17880,54 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"nOF" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"nPa" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"nOH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"nOR" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "nPj" = ( /obj/item/clothing/glasses/gglasses, /turf/open/space, /area/fiorina/oob) -"nPA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"nPO" = ( -/obj/item/tool/pickaxe, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +"nPE" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/obj/item/reagent_container/food/snacks/grown/eggplant{ + desc = "Eggplant. Or, wait..."; + layer = 2 }, -/area/fiorina/tumor/ice_lab) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "nQq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"nQN" = ( -/turf/open/floor/prison{ - icon_state = "green" +"nQF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bottle/spaceacillin{ + pixel_x = -6; + pixel_y = 4 }, -/area/fiorina/station/botany) -"nQS" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 13 +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"nQH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -6; + pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = 6; + pixel_y = 20 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) "nRb" = ( /turf/open/floor/prison, @@ -22804,60 +17936,77 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/fiorina/station/security) -"nRI" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 +"nRJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nRS" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/bodybag/tarp/reactive{ + pixel_y = 6 }, -/area/fiorina/tumor/aux_engi) -"nSa" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"nSc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/tumor/aux_engi) -"nSi" = ( -/obj/structure/machinery/door/window/eastright{ - dir = 2 +/obj/item/handset{ + pixel_x = -3; + pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/handset{ + pixel_x = 9; + pixel_y = -10 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nSw" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "nSx" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/disco) -"nSz" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) +"nSK" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/chapel) "nSU" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"nSX" = ( +/turf/open/floor/prison/yellow/west, +/area/fiorina/lz/near_lzII) "nTq" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/tumor/ship) -"nTD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"nTx" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) +"nTQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"nTT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/medbay) "nUb" = ( /obj/item/stack/rods, /turf/open/floor/plating/prison, @@ -22887,98 +18036,103 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"nUy" = ( -/obj/structure/machinery/door/morgue{ - dir = 2; - name = "Confession Booth" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"nUF" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "nUJ" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"nVq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +"nUK" = ( +/turf/open/floor/prison/blue/west, /area/fiorina/station/power_ring) -"nVA" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison{ +"nUR" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/tumor/servers) +"nVk" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"nVm" = ( +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"nWf" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"nWj" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"nVH" = ( + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"nWo" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/platform_decoration{ - dir = 4 + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"nWx" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/power_ring) +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "nWC" = ( /obj/item/clothing/shoes/yellow, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"nWK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, +"nWN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"nWW" = ( +/obj/structure/janitorialcart, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"nXc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/station/security) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "nXj" = ( /obj/structure/curtain/black, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"nXq" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/disco) +"nXm" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"nXK" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"nXY" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"nYd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"nYe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "nYi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"nYk" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/station/botany) -"nYw" = ( -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) "nYA" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -22987,39 +18141,83 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"nZj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"nZl" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nZr" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"nZu" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/lz/near_lzI) "nZQ" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"nZT" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "oan" = ( /obj/item/trash/semki, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"oaI" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 +"oaw" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/item/stool, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"oay" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"oaz" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "3" }, -/area/fiorina/station/park) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"oaM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "oaX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/supply_kit, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"obc" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + layer = 2.6 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"obs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"obw" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "obz" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/plating/prison, @@ -23030,19 +18228,6 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/civres) -"obL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"obT" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "occ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/lime{ @@ -23074,27 +18259,35 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/fiorina/station/chapel) -"ocB" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/coin/uranium, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +"och" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/fiorina/station/lowsec) -"ocJ" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"ocp" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ocF" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, +/obj/effect/spawner/random/tool, +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) +"ocL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"ocN" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) "ocS" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -23110,40 +18303,42 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"odg" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"odH" = ( -/obj/item/trash/candle, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"odN" = ( -/obj/structure/bed/chair{ - dir = 8 +"odq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"odr" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/obj/effect/spawner/random/gun/rifle/midchance, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"odz" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"odM" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "odQ" = ( /obj/structure/largecrate/supply, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"oex" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" +"oeF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "oeG" = ( /obj/structure/largecrate/random, /obj/effect/spawner/random/powercell, @@ -23152,6 +18347,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"oeI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "oeZ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, @@ -23160,46 +18363,44 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison, /area/fiorina/station/security) -"ofo" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "ofq" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/fiorina/station/telecomm/lz1_cargo) -"ofr" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) "ofw" = ( /obj/structure/machinery/newscaster, /turf/closed/wall/prison, /area/fiorina/station/transit_hub) -"ofy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"ofF" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "ogd" = ( /obj/structure/machinery/lapvend, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"oge" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"ogg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"ogm" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ogo" = ( /obj/structure/monorail{ dir = 9; @@ -23207,52 +18408,69 @@ }, /turf/open/space, /area/fiorina/oob) -"ogr" = ( -/obj/item/stack/cable_coil/pink, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"ogF" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) "ogM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ogX" = ( -/obj/vehicle/powerloader{ +"ogN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"ogU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"ohh" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/station/lowsec) +"ohm" = ( +/obj/item/reagent_container/food/drinks/coffee{ + name = "\improper paper cup" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"ohr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"ohv" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/power_ring) -"ohs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibup1" }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "ohF" = ( /obj/structure/platform/kutjevo/smooth, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/ice_lab) -"ohI" = ( -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"ohN" = ( -/obj/structure/machinery/shower{ - dir = 1; +"ohL" = ( +/obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/bed/chair{ + dir = 1; + layer = 2.8 }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"ohX" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) "ohY" = ( /obj/item/circuitboard/machine/pacman/super, @@ -23261,26 +18479,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oii" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +"oic" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/security) +"oie" = ( +/obj/structure/closet/crate/medical, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"oiu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"oiR" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) "oja" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -23290,19 +18496,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"ojf" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ojh" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"ojn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ojq" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer, +/obj/item/frame/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "ojv" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -23311,6 +18515,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"ojz" = ( +/obj/structure/monorail{ + name = "launch track" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) "ojK" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) @@ -23320,6 +18533,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) +"okn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "okv" = ( /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) @@ -23368,66 +18585,10 @@ }, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"okM" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "okT" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"olb" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"oli" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic{ - pixel_x = 3 - }, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper_bin{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"olm" = ( -/obj/item/device/binoculars, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"olo" = ( -/obj/structure/machinery/disposal, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) "oly" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -23440,22 +18601,17 @@ /obj/structure/tunnel/maint_tunnel, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"olC" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/fiorina/station/chapel) -"olG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"olD" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; + name = "\improper Fiorina Engineering Canteen Vendor" }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"olI" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "olQ" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -23463,15 +18619,6 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"olT" = ( -/obj/structure/machinery/computer3/server/rack, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) "omb" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/guestpass, @@ -23483,28 +18630,6 @@ }, /turf/open/space, /area/fiorina/oob) -"omi" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"omw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/fiorina/station/park) "omD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/structure/cable/heavyduty{ @@ -23512,92 +18637,59 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"omF" = ( -/obj/structure/curtain/shower, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) +"omE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "omI" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"ond" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"onw" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"onz" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ooF" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/wood, -/area/fiorina/station/park) -"oph" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +"omS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"omT" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"ooD" = ( +/obj/item/reagent_container/food/drinks/bottle/holywater{ + desc = "A flask of the holy HEFA grenade oil."; + name = "Flask of HEFA Oil" }, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"opy" = ( -/obj/item/shard{ - icon_state = "medium" +"ooK" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"opb" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"opM" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/area/fiorina/station/medbay) -"opB" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/yellow/north, /area/fiorina/station/lowsec) -"opC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"opV" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"oqn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"opS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/item/storage/syringe_case/burn{ + pixel_x = -10; + pixel_y = 8 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "oqu" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -23605,55 +18697,65 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"orr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +"oqF" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"oqJ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"oqR" = ( +/obj/item/stool, +/obj/structure/sign/poster{ + icon_state = "poster15"; + pixel_y = 32 }, -/area/fiorina/station/chapel) -"ors" = ( -/obj/item/trash/candle, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"oqZ" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"orm" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) +"orv" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8 }, -/area/fiorina/station/telecomm/lz1_cargo) -"orx" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) "orA" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"orB" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/oob) "orG" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"osO" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"orX" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"osi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"osr" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/coin/uranium, +/obj/item/bedsheet/green, +/turf/open/floor/prison/yellow/southeast, /area/fiorina/station/lowsec) -"osR" = ( -/obj/item/trash/semki, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "osX" = ( /obj/structure/cable/heavyduty{ icon_state = "0-4" @@ -23664,31 +18766,31 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, /area/fiorina/station/chapel) -"otq" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"otB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"otG" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"otp" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"otI" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "otP" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"ouh" = ( +/obj/structure/machinery/floodlight{ + name = "Yard Floodlight" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"ous" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "ouH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -23696,29 +18798,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"ouS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"ouT" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) -"ovc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; - name = "\improper arcade tickets"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "ovj" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -23727,195 +18815,80 @@ /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"ovB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"ovC" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) -"ovE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/flight_deck) "ovJ" = ( /turf/open/floor/wood, /area/fiorina/station/medbay) -"ovM" = ( -/obj/item/storage/bible/hefa{ - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"ovZ" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"own" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"owv" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"owG" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"oxg" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"oxk" = ( -/obj/structure/inflatable/popped/door, +"owh" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"owR" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) +"owY" = ( /obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + icon_state = "triagedecalbottom" }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) +"oxd" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/tumor/civres) "oxA" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" }, /area/fiorina/tumor/ship) -"oxK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"oxN" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"oxS" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"oxT" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"oxZ" = ( -/obj/structure/inflatable/popped, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"oxI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"oxV" = ( +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 2 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) +"oyc" = ( +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "oyd" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oyg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security/wardens) -"oys" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, +"oyq" = ( +/turf/open/floor/prison/panelscorched, /area/fiorina/station/chapel) +"oyA" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "oyC" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/wood, /area/fiorina/station/park) -"ozg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"ozh" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, +"oyD" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"oyS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"ozB" = ( +/turf/open/floor/prison/green/east, +/area/fiorina/station/transit_hub) +"ozK" = ( +/turf/open/floor/prison/yellow/southwest, /area/fiorina/station/disco) -"oAa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) +"ozN" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/central_ring) "oAm" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -23927,48 +18900,27 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/prison, /area/fiorina/station/flight_deck) +"oAF" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/station/park) "oAH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"oAL" = ( -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_psycopath_l"; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_ketchup_l"; - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/blood/writing{ - icon_state = "u_guilty_l"; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"oAQ" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "oAV" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/park) +"oAZ" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"oBc" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) "oBd" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison, @@ -23977,6 +18929,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"oBq" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "oBC" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -23985,77 +18941,37 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"oBP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) +"oCa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "oCe" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/park) -"oCI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) "oDe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"oDz" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +"oDW" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"oDG" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"oEs" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) -"oEt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/security_space_law{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) +"oEl" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/power_ring) "oED" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"oEI" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) +"oEG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "oEK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -24070,61 +18986,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"oEY" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/fiorina/station/security) -"oFk" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"oFv" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "yellow" +"oEU" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/civres_blue) +"oFn" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ppflowers_2" }, -/area/fiorina/station/disco) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"oFq" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"oFr" = ( +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"oFx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) "oFI" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oFW" = ( -/obj/structure/platform, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"oGm" = ( +"oFO" = ( +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"oGa" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"oGT" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/park) +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"oGj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/power_ring) +"oGJ" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/tumor/servers) "oGU" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/recharger{ @@ -24132,30 +19037,33 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"oHk" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" +"oGY" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/station/telecomm/lz1_cargo) -"oHn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"oHf" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) -"oHI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/tool/crowbar/red, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/area/fiorina/station/disco) +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"oHB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "oHX" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -24164,6 +19072,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) +"oId" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"oIk" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "oIq" = ( /obj/structure/ice/thin/indestructible{ dir = 1; @@ -24176,19 +19095,6 @@ }, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"oIR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"oJs" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "oJL" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -24203,25 +19109,6 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oJO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"oJU" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "oJW" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -24238,46 +19125,17 @@ /obj/structure/filingcabinet, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oKl" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"oKn" = ( -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) -"oKQ" = ( -/obj/structure/machinery/floodlight{ - name = "Yard Floodlight" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"oKV" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/civres_blue) -"oLd" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"oKe" = ( +/obj/item/stool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"oKw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"oLy" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) "oLB" = ( /obj/structure/platform{ dir = 8 @@ -24288,113 +19146,93 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"oMy" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"oMz" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"oMR" = ( -/obj/item/paper, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"oNx" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/organic/grass{ - name = "astroturf" +"oMk" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 8 }, -/area/fiorina/station/research_cells) -"oOi" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"oMv" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/maintenance) -"oOs" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oMC" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"oNc" = ( +/obj/item/newspaper, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"oNN" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "oOv" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"oOK" = ( -/obj/item/device/multitool, -/turf/open/floor/prison{ - dir = 9; - icon_state = "green" - }, -/area/fiorina/tumor/civres) +"oOx" = ( +/obj/structure/machinery/line_nexter, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) "oOV" = ( /obj/structure/machinery/filtration/console{ pixel_y = 22 }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"oPC" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"oPJ" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"oPb" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/maintenance) +"oPB" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "oPN" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"oPW" = ( -/obj/structure/closet/crate/medical, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +"oPT" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "oPZ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) +"oQf" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oQt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "oQz" = ( /obj/item/prop/almayer/comp_closed{ pixel_x = -1 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oQF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "oQI" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; @@ -24404,28 +19242,49 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"oQY" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) -"oRb" = ( -/obj/item/trash/boonie, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"oQN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "oRR" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/fiorina/station/park) -"oSo" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "redfull" +"oRS" = ( +/obj/item/poster, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"oSk" = ( +/obj/structure/toilet{ + pixel_y = 4 }, -/area/fiorina/station/lowsec) +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 2; + pixel_y = 25 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"oSl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 7 + }, +/obj/item/ammo_magazine/pistol/heavy{ + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oSm" = ( +/obj/item/ammo_box/magazine/misc/flares/empty, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"oSn" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "oSK" = ( /obj/structure/monorail{ dir = 9; @@ -24433,40 +19292,16 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oSR" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"oTe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"oTv" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/security) -"oTl" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/chapel) -"oTz" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/civres_blue) "oTG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -24474,18 +19309,16 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"oTH" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"oTU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +"oTK" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) +"oTZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/power_ring) "oUg" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_cargo) @@ -24496,71 +19329,69 @@ }, /turf/open/space, /area/fiorina/oob) +"oUU" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"oUX" = ( +/obj/item/reagent_container/food/drinks/cans/aspen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"oVa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/snacks/grown/carrot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) "oVk" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/central_ring) -"oVC" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" - }, -/area/fiorina/tumor/civres) -"oWc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "blue_plate" +"oVo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/botany) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"oVP" = ( +/obj/structure/surface/rack, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"oWi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"oWl" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "oWz" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"oWB" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/research_cells) "oWF" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"oWV" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"oWW" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "redcorner" - }, -/area/fiorina/station/security) +"oXl" = ( +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/station/medbay) +"oXm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "oXE" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/disco) -"oXJ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) "oXR" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -24578,24 +19409,23 @@ /obj/item/stock_parts/manipulator/nano, /turf/open/floor/wood, /area/fiorina/station/park) -"oYc" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"oYm" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" +"oYv" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = -9; + pixel_y = -8 }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/item/explosive/grenade/high_explosive/frag{ + pixel_x = 6; + pixel_y = 3 }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"oYx" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"oYC" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/station/medbay) "oYH" = ( /obj/structure/monorail{ @@ -24603,37 +19433,32 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"oYM" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"oYX" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"oYL" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/tumor/aux_engi) -"oZc" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"oYV" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/station/flight_deck) +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "oZy" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"oZR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) "pab" = ( /obj/item/tool/weldpack{ pixel_x = 6 @@ -24650,59 +19475,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"pan" = ( -/obj/item/reagent_container/food/snacks/meat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"pat" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"pax" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"paQ" = ( -/obj/structure/platform{ - dir = 4 - }, +"paw" = ( /obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"pbp" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"pbx" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"pbz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "pbC" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"pbF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "pbS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray/empty, @@ -24722,35 +19514,32 @@ }, /turf/open/space, /area/fiorina/oob) -"pbZ" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"pcl" = ( -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) +"pcn" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"pco" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "pcu" = ( /turf/open/floor/almayer_hull, /area/fiorina/oob) -"pcD" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) +"pcA" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"pcT" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) "pdf" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -24760,22 +19549,16 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"pdm" = ( +"pdg" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"pdk" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"pdw" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) "pdB" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -24783,38 +19566,22 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"pdV" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"peh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"pes" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"peY" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) +"pdX" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"peg" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"pek" = ( +/obj/item/trash/uscm_mre, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"pen" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) "pfi" = ( /obj/structure/monorail{ dir = 6; @@ -24822,42 +19589,50 @@ }, /turf/open/space, /area/fiorina/oob) -"pfE" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) +"pft" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/tumor/aux_engi) +"pfJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "pfW" = ( /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pgV" = ( -/obj/item/book/manual/atmospipes, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +"pfZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"pgc" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"pgw" = ( +/obj/structure/machinery/bot/medbot{ + name = "Dr. O" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pgZ" = ( +/turf/open/floor/prison/greencorner/west, +/area/fiorina/tumor/civres) "phe" = ( /obj/structure/girder, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"phg" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "phz" = ( /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"pie" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" +"phX" = ( +/obj/item/stack/sheet/wood{ + amount = 10 }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"pih" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "pip" = ( /obj/structure/platform_decoration{ dir = 8 @@ -24868,31 +19643,36 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"piL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) -"pka" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +"piJ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_3" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"pjb" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pjl" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"pju" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, /area/fiorina/station/research_cells) -"pkc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/dropper, -/obj/item/attachable/bipod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"pjv" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"pjP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "pkp" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/prison, @@ -24906,13 +19686,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"pkG" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) "pkM" = ( /obj/structure/largecrate/machine, /turf/open/floor/plating/prison, @@ -24921,15 +19694,10 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"plr" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"plf" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) "plu" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -24937,6 +19705,16 @@ "plK" = ( /turf/closed/wall/prison, /area/fiorina/station/security/wardens) +"plQ" = ( +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"pmc" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "pmg" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -24944,66 +19722,45 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pmo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"pmy" = ( -/obj/item/device/t_scanner, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"pmM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"pnc" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"pmJ" = ( +/obj/structure/window{ + dir = 8 }, -/area/fiorina/station/medbay) +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"pmS" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/fiorina/maintenance) "pnj" = ( /obj/structure/closet/crate/trashcart, /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"pnv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 6; - icon_state = "greenblue" - }, +"pnE" = ( +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"pnH" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/blue_plate/east, /area/fiorina/station/botany) -"pnA" = ( -/obj/item/toy/handcard/uno_reverse_blue, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "pnS" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/servers) -"poo" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ +"poe" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"poA" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "darkbrown2" + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) "poD" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -25011,14 +19768,33 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"ppb" = ( -/obj/structure/bed/chair{ +"poL" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/type_b, +/obj/structure/barricade/handrail/type_b{ + dir = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"poV" = ( +/obj/item/toy/crayon/mime, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"poX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"ppd" = ( +/obj/structure/barricade/metal/wired{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ + dir = 4 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/central_ring) "ppG" = ( /obj/item/stack/rods/plasteel, /turf/open/floor/plating/prison, @@ -25029,123 +19805,63 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"ppK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"ppO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"ppX" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/obj/item/alienjar, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"pqn" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"ppY" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"pqq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, +"pqr" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"pqv" = ( +/obj/structure/largecrate/random/barrel/white, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"pqz" = ( -/obj/item/clothing/suit/storage/labcoat, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) "pqC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pqG" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"pqH" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "pqO" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" }, /area/fiorina/tumor/ship) -"prh" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/fiorina/tumor/ship) -"pri" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"pry" = ( -/obj/structure/prop/resin_prop{ - icon_state = "coolanttank" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"prP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/power_ring) -"pso" = ( -/obj/structure/platform{ - dir = 1 +"pqQ" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"prB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "So uh yeah, about that cat..."; + icon_state = "mwbloodyo"; + pixel_y = 6 }, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"psf" = ( /obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" + dir = 4 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"psD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "psO" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -25161,21 +19877,28 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/power_ring) -"pty" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"ptu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ptN" = ( +/obj/structure/curtain/shower, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/tumor/civres) -"ptV" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ptO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) "ptZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/russianRed{ @@ -25184,39 +19907,42 @@ /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"pun" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "puw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"puB" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "puE" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) +"puI" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison/green, +/area/fiorina/station/transit_hub) +"pvy" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/station/security) "pvD" = ( /turf/closed/wall/r_wall/prison_unmeltable{ desc = "A huge chunk of metal used to seperate rooms."; name = "metal wall" }, /area/fiorina/oob) -"pvT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) +"pvJ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"pvN" = ( +/turf/open/floor/prison/whitepurplecorner/east, +/area/fiorina/station/research_cells) +"pvQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "pwg" = ( /obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ @@ -25224,14 +19950,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"pwi" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pwD" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 1 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "pwL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 12; @@ -25239,18 +19964,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pwN" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"pxa" = ( -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/tumor/servers) "pxk" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/pill/cyanide, @@ -25258,181 +19971,108 @@ /obj/item/reagent_container/syringe, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"pxu" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"pxI" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ +"pxl" = ( +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"pxR" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/prison{ - icon_state = "floor_plate" + health = 300 }, -/area/fiorina/station/chapel) -"pya" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/research_cells) -"pyv" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"pxN" = ( +/obj/item/ammo_casing{ + icon_state = "casing_1" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"pyz" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) +"pyB" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6_1" }, -/area/fiorina/tumor/servers) -"pyK" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"pzg" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, -/area/fiorina/tumor/aux_engi) -"pyW" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/effect/spawner/random/pills, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"pzr" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"pAo" = ( +/obj/item/reagent_container/food/snacks/meat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"pAv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"pAD" = ( +/obj/item/trash/candy, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"pAI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"pAO" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"pzh" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" + icon_state = "p_stair_full" }, +/obj/structure/platform, +/turf/open/floor/plating/prison, /area/fiorina/station/park) -"pzG" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ +"pBd" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"pBq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/prison, +/area/fiorina/tumor/fiberbush) +"pBG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/guestpass{ dir = 4; - icon_state = "cell_stripe" + reason = "Visitor" }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"pzN" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 +"pBV" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"pzQ" = ( -/obj/item/paper, -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"pzV" = ( -/obj/item/ammo_box/magazine/M16, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"pAe" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"pAt" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"pAB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"pAN" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"pAO" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"pBg" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"pBn" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"pBq" = ( -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/prison, -/area/fiorina/tumor/fiberbush) -"pBT" = ( -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" +/area/fiorina/lz/near_lzII) +"pBY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 }, -/turf/open/organic/grass{ - name = "astroturf" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/park) -"pBV" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/plating/prison, -/area/fiorina/lz/near_lzII) "pCc" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -25449,15 +20089,10 @@ /obj/structure/lz_sign/prison_sign, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"pCN" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) +"pCO" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "pCS" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, @@ -25466,102 +20101,56 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"pCZ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "pDg" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating/prison, /area/fiorina/station/botany) +"pDr" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"pDu" = ( +/obj/item/tool/crowbar, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"pDz" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"pDA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "pDH" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/gun/rifle/highchance, /turf/open/floor/prison, /area/fiorina/station/security) -"pDV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"pEe" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"pEw" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"pEL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue{ +"pDO" = ( +/obj/structure/stairs/perspective{ dir = 1; - pixel_y = 21 - }, -/obj/effect/spawner/random/gun/smg/lowchance, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"pER" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"pEY" = ( -/obj/structure/barricade/sandbags{ - dir = 4; - icon_state = "sandbag_0"; - pixel_y = 2 - }, -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"pFg" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) "pFi" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"pFA" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) +"pFu" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"pFF" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "pFP" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -25574,12 +20163,17 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"pFY" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) +"pFS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"pGe" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "pGf" = ( /obj/structure/platform{ dir = 8 @@ -25588,36 +20182,23 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"pGg" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"pGi" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"pGv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"pGG" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "pGH" = ( /turf/closed/shuttle/ert{ icon_state = "stan_white_t_up" }, /area/fiorina/tumor/ship) -"pGK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river{ - name = "pool" - }, -/area/fiorina/station/park) +"pHf" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "pHh" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -25630,40 +20211,14 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"pHu" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"pIi" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"pIo" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"pIs" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) +"pHq" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"pHY" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2/east, +/area/fiorina/tumor/servers) "pIt" = ( /obj/structure/barricade/handrail/type_b{ layer = 3.5 @@ -25679,126 +20234,93 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"pIX" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "pJa" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"pJo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"pJy" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access_txt = "100" - }, -/obj/effect/spawner/random/pills, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/medbay) "pJK" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/bucket/mopbucket, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"pKd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"pJU" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"pKh" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/sign/poster{ - icon_state = "poster1"; - pixel_y = 32 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +"pKo" = ( +/turf/open/gm/river/darkred_pool, +/area/fiorina/station/park) +"pKq" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/prison/yellow/east, /area/fiorina/station/lowsec) -"pKz" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"pKJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) +"pKK" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"pKO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/poster, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "pKY" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"pLh" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/transit_hub) -"pLk" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) +"pLl" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) +"pLN" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/surgery/bonegel, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "pLQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"pMA" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"pMr" = ( +/obj/item/stack/folding_barricade, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"pMs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"pMG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "pNj" = ( /obj/structure/bookcase, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"pNo" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"pNA" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"pNE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) "pNI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; @@ -25806,36 +20328,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"pNV" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/fiorina/station/medbay) -"pOd" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pOc" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, +/turf/open/floor/prison/darkyellow2/east, /area/fiorina/station/flight_deck) -"pOm" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"pON" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"pPb" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/oob) "pPd" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" @@ -25846,13 +20347,6 @@ /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/station/security) -"pPi" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/book/manual/security_space_law, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) "pPG" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -25863,62 +20357,30 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"pPQ" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"pQb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"pQh" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"pQq" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"pQu" = ( -/obj/structure/holohoop{ - dir = 1 +"pPU" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "pQD" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"pRn" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +"pRa" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"pRx" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/green/southwest, /area/fiorina/tumor/civres) "pRG" = ( /obj/structure/window/framed/prison/reinforced/hull, @@ -25928,25 +20390,84 @@ /obj/item/weapon/wirerod, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) +"pRQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"pRT" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"pSk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"pSD" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/fuel_cell, +/turf/open/floor/plating/prison, +/area/fiorina/station/lowsec) +"pSE" = ( +/obj/item/storage/beer_pack{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "pSJ" = ( /turf/open/floor/wood, /area/fiorina/maintenance) +"pSQ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"pSR" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "pSU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/med_data/laptop, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"pSV" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"pTe" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"pTi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "pTj" = ( /turf/open/floor/plating/prison, /area/fiorina/station/security) -"pTA" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +"pTM" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) "pTR" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -25959,20 +20480,60 @@ dir = 5 }, /area/fiorina/station/telecomm/lz1_cargo) -"pUS" = ( +"pTW" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) +"pUe" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"pUl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"pUp" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pUv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/clothing/mask/cigarette, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_y = 8 +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/item/tool/stamp, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/lowsec) +"pUy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"pUA" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/disco) +"pUR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/clothing/suit/armor/bulletproof/badge, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) "pVq" = ( /turf/open/floor/prison, /area/fiorina/station/research_cells) @@ -25982,28 +20543,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"pVw" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +"pVS" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_x = -24 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"pVT" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"pWm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/beer_pack{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) +"pWd" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/disco) "pWp" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" @@ -26024,6 +20578,16 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/fiorina/station/disco) +"pXt" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"pXy" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) "pXH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -26042,6 +20606,9 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"pYb" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/oob) "pYc" = ( /obj/structure/bed/chair{ dir = 8 @@ -26052,33 +20619,17 @@ /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"pYp" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"pYI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible/hefa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"pYO" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"pZb" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellowcorner" - }, +"pYs" = ( +/turf/open/floor/prison/bluecorner/west, +/area/fiorina/station/civres_blue) +"pYD" = ( +/obj/item/tool/surgery/cautery, +/turf/open/floor/prison/yellow/west, /area/fiorina/station/lowsec) +"pZd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "pZm" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -26093,23 +20644,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"qam" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"qaO" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"qad" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = -3 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"qaH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/wood, +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/medbay) +"qaK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel/laser{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qaL" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qaO" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/wood, /area/fiorina/station/park) +"qaV" = ( +/obj/item/circuitboard/exosuit/peripherals/max/targeting, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "qbd" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; @@ -26118,26 +20701,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"qbj" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "qbl" = ( /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) -"qbr" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"qbu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" +"qbq" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "qbv" = ( /obj/structure/platform{ dir = 4 @@ -26145,15 +20721,10 @@ /obj/structure/filingcabinet, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"qbD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) +"qby" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "qbT" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -26175,25 +20746,31 @@ /obj/item/stack/catwalk, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"qcv" = ( -/turf/open/floor/prison{ +"qca" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) +"qcc" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "yellow" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/lz/near_lzII) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qcI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) "qcK" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"qcM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) +"qcP" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/maintenance) "qcT" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -26205,12 +20782,25 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"qdB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qdy" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/area/fiorina/station/security) +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qdE" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "qdJ" = ( /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, @@ -26221,15 +20811,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/security/wardens) -"qeu" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "qew" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -26258,6 +20839,9 @@ /obj/effect/spawner/random/pills/highchance, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) +"qeP" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) "qeX" = ( /obj/structure/surface/table/reinforced/prison{ flipped = 1 @@ -26275,33 +20859,20 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"qfu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/oob) -"qfE" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"qfI" = ( -/obj/structure/bed/chair/office/dark{ +"qfi" = ( +/obj/item/trash/cigbutt/ucigbutt, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qfx" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qfF" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "qfR" = ( /obj/item/handset{ pixel_x = 9; @@ -26309,12 +20880,15 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"qfU" = ( -/turf/open/floor/prison{ +"qfS" = ( +/obj/structure/machinery/light/small{ dir = 4; - icon_state = "greenblue" + pixel_x = 11; + pixel_y = 10 }, -/area/fiorina/station/botany) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "qgd" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = 8; @@ -26332,33 +20906,26 @@ }, /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"qgq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/tomatomeat{ - pixel_x = -6; - pixel_y = 3 +"qgo" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/tomatomeat{ +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"qgt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"qgz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp/captain, +/obj/structure/machinery/processor{ + icon_state = "blender_jug_f_red"; pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"qgA" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "qgB" = ( /obj/item/clothing/gloves/rainbow, /turf/open/floor/plating/prison, @@ -26374,20 +20941,46 @@ /obj/item/stack/barbed_wire, /turf/open/floor/prison, /area/fiorina/station/disco) +"qhf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qhp" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "qhB" = ( /obj/effect/decal/cleanable/blood, /obj/item/trash/kepler, /turf/open/floor/prison, /area/fiorina/station/security) +"qhI" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "qhM" = ( /obj/structure/surface/rack, /obj/item/weapon/sword/katana, /turf/open/floor/wood, /area/fiorina/station/security/wardens) +"qhV" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"qin" = ( +/obj/item/stack/sheet/wood/medium_stack, +/obj/item/stack/sheet/wood/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "qiq" = ( /obj/item/trash/cigbutt, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"qir" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "qit" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -26396,6 +20989,16 @@ /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"qiW" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/oob) +"qiX" = ( +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"qjb" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "qjc" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -26403,12 +21006,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"qjg" = ( -/obj/item/tool/shovel/etool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "qjp" = ( /obj/structure/prop/almayer/computers/mission_planning_system{ density = 0; @@ -26434,147 +21031,75 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"qjY" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"qkf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 - }, -/turf/open/floor/prison{ +"qjD" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "greenfull" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"qjF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "qkg" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/park) -"qkk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"qks" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "redfull" +"qku" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"qkw" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0"; + pixel_y = 2 }, -/area/fiorina/station/security) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"qkL" = ( +/obj/structure/closet/bombcloset, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) "qkN" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"qkY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "qlf" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"qmd" = ( -/obj/item/storage/toolbox/antag, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/tumor/civres) +"qln" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"qmq" = ( +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "qms" = ( /obj/structure/barricade/deployable{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/security) -"qmz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"qmC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"qmO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/flight_deck) -"qmS" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"qnc" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"qnq" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" - }, +"qmQ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"qnu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, -/area/fiorina/station/disco) +"qmT" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"qnv" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) "qnB" = ( /obj/structure/monorail{ dir = 6; @@ -26582,68 +21107,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"qnE" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 85; - icon_state = "metal_1" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"qnK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "qnQ" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/fiorina/station/security) -"qob" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"qos" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +"qod" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qoB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "qoG" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"qoZ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryotop" - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"qpa" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +"qoS" = ( +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/central_ring) "qpw" = ( /obj/structure/window/reinforced{ dir = 1; @@ -26651,6 +21136,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"qpx" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "qpB" = ( /obj/item/stack/cable_coil/blue, /turf/open/floor/plating/prison, @@ -26660,49 +21149,33 @@ icon_state = "stan_leftengine" }, /area/fiorina/station/power_ring) -"qqa" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"qqu" = ( -/obj/structure/surface/rack, -/obj/item/poster, -/obj/item/poster, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"qpO" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/ice_lab) +"qqz" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"qqF" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "qqJ" = ( /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/disco) -"qqX" = ( -/obj/item/disk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"qqZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" - }, -/area/fiorina/station/research_cells) +"qqP" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/station/medbay) "qrz" = ( /obj/item/explosive/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_cargo) +"qrW" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "qso" = ( /obj/structure/machinery/light/double/blue{ dir = 4; @@ -26711,65 +21184,43 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qtq" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/prison{ - icon_state = "bluefull" +"qtn" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/prison/blue/southeast, /area/fiorina/station/civres_blue) -"qty" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"qtX" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/oob) -"quk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, +"qua" = ( +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/medbay) -"qun" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 +"quc" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"quj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = 1 }, -/area/fiorina/station/park) -"quy" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"quu" = ( +/obj/item/clothing/gloves/boxing/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) +"qux" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_tram) +"quM" = ( +/turf/open/floor/prison/darkpurple2/west, /area/fiorina/tumor/servers) -"quU" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) "qva" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/smg/mp5, @@ -26778,12 +21229,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"qvk" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +"qvf" = ( +/obj/item/device/pinpointer, +/turf/open/floor/prison/floor_plate/southwest, /area/fiorina/station/telecomm/lz1_cargo) "qvn" = ( /obj/structure/monorail{ @@ -26792,81 +21240,56 @@ }, /turf/open/space, /area/fiorina/oob) -"qvx" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" +"qvy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stool{ + pixel_y = 12 }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"qvE" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"qvF" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) -"qvL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"qwh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qvK" = ( +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/civres_blue) -"qwl" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/chapel) -"qws" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "bee" - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/maintenance) -"qwy" = ( -/obj/item/weapon/baton/cattleprod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"qwJ" = ( +"qvY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"qwU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" +/obj/item/reagent_container/blood/empty{ + pixel_x = -7; + pixel_y = 4 }, -/area/fiorina/maintenance) -"qwZ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/obj/item/reagent_container/blood/BMinus{ + pixel_x = 7; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qwr" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"qwI" = ( +/obj/item/trash/eat, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qxg" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/tumor/ice_lab) +"qxi" = ( +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "qxB" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -26877,13 +21300,14 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"qxL" = ( -/obj/item/toy/deck, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"qxG" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/telecomm/lz1_cargo) +"qxJ" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "qxN" = ( /obj/structure/barricade/sandbags{ dir = 8; @@ -26892,114 +21316,72 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"qxP" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qyc" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"qyi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"qyk" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"qyB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qyj" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"qzm" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/area/fiorina/station/park) -"qyX" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"qzz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/obj/structure/platform{ +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/oob) +"qzE" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"qzJ" = ( +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) +"qzL" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"qzS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/fiorina/tumor/aux_engi) +"qAf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/central_ring) -"qzl" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ +"qAx" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qAQ" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"qzn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"qzy" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/aux_engi) -"qzB" = ( -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) -"qzI" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"qzS" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/fiorina/tumor/aux_engi) -"qzW" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"qzX" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"qBh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"qBk" = ( -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"qAZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"qBo" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) "qBs" = ( /obj/item/tool/mop{ pixel_y = 23 @@ -27010,6 +21392,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) +"qBy" = ( +/obj/item/device/whistle, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qBB" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -27026,23 +21412,10 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qBG" = ( -/obj/structure/inflatable/popped/door, -/obj/item/stack/barbed_wire, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"qBQ" = ( -/obj/item/storage/secure/briefcase{ - pixel_x = 9; - pixel_y = 18 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"qBL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "qCa" = ( /obj/structure/prop/resin_prop{ @@ -27052,22 +21425,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"qCs" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"qCw" = ( -/obj/structure/inflatable/popped/door, -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "qCW" = ( /turf/closed/shuttle/elevator{ dir = 6 @@ -27087,30 +21444,14 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"qDi" = ( -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"qDn" = ( -/obj/item/stool, -/obj/structure/sign/poster{ - icon_state = "poster15"; - pixel_y = 32 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/maintenance) "qDo" = ( /obj/structure/janitorialcart, /turf/open/floor/prison, /area/fiorina/station/medbay) +"qDt" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "qDy" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison, @@ -27124,57 +21465,18 @@ /obj/structure/largecrate/random/case, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"qDG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"qDH" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"qEN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"qFa" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) +"qFh" = ( +/turf/open/floor/prison/whitegreencorner/west, /area/fiorina/station/medbay) -"qDI" = ( -/obj/structure/toilet{ - dir = 4; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"qDY" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"qEn" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"qFg" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "qFi" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -27192,6 +21494,12 @@ }, /turf/open/space/basic, /area/fiorina/oob) +"qFH" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qFQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -27201,94 +21509,78 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"qGl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"qGn" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"qGX" = ( -/obj/structure/prop/structure_lattice{ - health = 300 - }, -/obj/structure/prop/structure_lattice{ - layer = 3.1; - pixel_y = 10 +"qFS" = ( +/obj/structure/cargo_container/grant/right{ + density = 0; + desc = "A huge industrial shipping container. You could slip just behind it."; + health = 5000; + layer = 4; + unacidable = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"qGg" = ( +/turf/open/floor/prison/greenblue/southwest, +/area/fiorina/station/botany) +"qGC" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"qGW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/area/fiorina/tumor/aux_engi) -"qHC" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"qHz" = ( +/obj/item/trash/chips, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) +"qHB" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qHG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 25 }, /turf/open/floor/plating/plating_catwalk, /area/fiorina/tumor/ship) -"qHK" = ( -/obj/item/gift, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "qHZ" = ( /obj/item/tool/warning_cone, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"qIk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - layer = 3.5 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qIj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "qIq" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"qIy" = ( -/obj/item/tool/match, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"qIO" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"qIZ" = ( -/obj/structure/machinery/light/double/blue{ +"qIF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"qIH" = ( +/obj/structure/platform, +/obj/structure/bed/chair{ dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + layer = 2.7 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"qJb" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/chapel) "qJf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/blue{ @@ -27316,21 +21608,19 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qJJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"qJo" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/area/fiorina/station/civres_blue) -"qJK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"qJx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "qJL" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -27342,14 +21632,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qKs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/pepper, -/obj/item/clothing/glasses/sunglasses/sechud, -/turf/open/floor/prison{ - icon_state = "redfull" +"qJV" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/civres) +"qJZ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/security) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "qKF" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -27357,87 +21651,112 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) +"qKM" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"qKR" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "qKT" = ( /obj/item/stack/rods/plasteel, /turf/open/auto_turf/sand/layer1, /area/fiorina/lz/near_lzII) +"qKW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "qLp" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"qLz" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"qLI" = ( -/obj/item/storage/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/civres_blue) +"qLH" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "qLJ" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"qLN" = ( -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"qLT" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/aux_engi) -"qMV" = ( /obj/structure/platform_decoration{ - dir = 1 + dir = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/tumor/ice_lab) +"qMa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/area/fiorina/station/power_ring) -"qNv" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/plating/prison, -/area/fiorina/station/park) -"qNw" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"qMm" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"qMz" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"qME" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/transit_hub) -"qNS" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) +"qMJ" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" }, -/area/fiorina/tumor/civres) -"qNW" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qMU" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) +"qNv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, +/turf/open/floor/plating/prison, /area/fiorina/station/park) -"qOd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"qNY" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "qOk" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -27453,13 +21772,21 @@ /obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"qOG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qOI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) +"qOL" = ( +/obj/item/ammo_casing{ + dir = 6; + icon_state = "casing_5" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "qON" = ( /obj/item/stack/cable_coil/cyan, /turf/open/floor/plating/prison, @@ -27476,23 +21803,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"qOY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"qPb" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) "qPr" = ( /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/plating/plating_catwalk/prison, @@ -27504,43 +21814,33 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"qPG" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"qPT" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"qQf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"qQg" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) +"qPY" = ( +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) "qQl" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"qQA" = ( -/obj/item/reagent_container/food/drinks/bottle/holywater{ - desc = "A flask of the holy HEFA grenade oil."; - name = "Flask of HEFA Oil" +"qQv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = 6; + pixel_y = 3 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qQH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowcorners2, +/area/fiorina/station/telecomm/lz1_cargo) +"qQJ" = ( +/obj/item/tool/soap, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "qQO" = ( /obj/item/tool/wet_sign, /turf/open/floor/prison, @@ -27550,6 +21850,15 @@ /obj/item/prop/helmetgarb/raincover, /turf/open/floor/prison, /area/fiorina/station/medbay) +"qQV" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "qRg" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." @@ -27568,79 +21877,72 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"qRD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"qSg" = ( -/obj/structure/machinery/bot/medbot{ - name = "Dr. O" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"qSv" = ( -/obj/structure/machinery/vending/snack/packaged, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"qTa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/security) -"qTp" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/prop/helmetgarb/rabbitsfoot{ - pixel_y = 22 +"qRn" = ( +/obj/item/ammo_box/magazine/misc/flares{ + layer = 3.1; + pixel_y = 16 }, -/obj/item/reagent_container/food/drinks/bottle/kahlua{ +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"qSe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre{ pixel_x = 5; - pixel_y = 25 + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"qSi" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"qSo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"qSB" = ( +/obj/structure/closet/crate/bravo, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/fuel_cell, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"qSV" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"qTr" = ( +"qTj" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"qTy" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 +/obj/item/reagent_container/food/snacks/ricepudding, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"qTk" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"qTK" = ( +/obj/structure/surface/table/reinforced/prison{ + flipped = 1 }, -/area/fiorina/station/power_ring) +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qTZ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/maintenance) "qUe" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_casing/shell{ @@ -27652,49 +21954,15 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"qUo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/structure/barricade/wooden{ - desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; - dir = 1; - health = 25000; - layer = 2.9; - pixel_y = 17 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"qUp" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"qUx" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"qUQ" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +"qUl" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"qUI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "qUZ" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -27706,111 +21974,51 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"qVe" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "Prison meal vendor, containing preprepared meals fit for the dregs of society."; - name = "\improper Fiorina Green Block Canteen Vendor" +"qVa" = ( +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"qVo" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"qVU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"qWc" = ( +/obj/structure/closet/basketball, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"qWe" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) +"qWo" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) +"qWs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"qWO" = ( +/obj/item/tool/weldingtool, +/turf/open/auto_turf/sand/layer1, +/area/fiorina/tumor/civres) +"qXf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder{ + pixel_x = 8; + pixel_y = 8 }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/lowsec) -"qVq" = ( -/obj/item/ammo_box/magazine/misc/flares{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"qVt" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_tram) -"qVD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"qVF" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"qWa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/random/gun/rifle/lowchance, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"qWf" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"qWi" = ( -/obj/structure/largecrate/guns/merc, -/obj/item/toy/deck/uno, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"qWw" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"qWB" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"qWO" = ( -/obj/item/tool/weldingtool, -/turf/open/auto_turf/sand/layer1, -/area/fiorina/tumor/civres) -"qXl" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) "qXM" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, @@ -27836,35 +22044,42 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"qZa" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"qZh" = ( -/obj/structure/platform_decoration, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"qYD" = ( +/obj/structure/barricade/handrail, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"qYE" = ( +/obj/item/explosive/grenade/high_explosive/frag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qYM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/fiorina/tumor/ice_lab) -"qZx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - layer = 3.5; - pixel_y = 6 +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"qZc" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"qZo" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) +"qZs" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"qZD" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/station/chapel) +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "qZL" = ( /obj/structure/machinery/computer/arcade, /obj/item/toy/syndicateballoon{ @@ -27880,16 +22095,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"qZW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "rac" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -27899,106 +22104,91 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"rar" = ( -/obj/structure/window/reinforced{ - dir = 4 +"raj" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, -/obj/structure/window/reinforced, +/obj/effect/spawner/random/sentry/midchance, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"raw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"raD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"raK" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"rbg" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/telecomm/lz1_tram) +"rbh" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"raF" = ( -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - registered_name = "John Forklift" - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"rbD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" + icon_state = "gib6" }, -/area/fiorina/station/security) -"rbE" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) "rbK" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rcu" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"rcG" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"rdS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +"rbT" = ( +/obj/item/shard{ + icon_state = "large" }, -/area/fiorina/station/lowsec) -"rdX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/transit_hub) +"rcp" = ( +/obj/structure/barricade/sandbags{ dir = 4; - icon_state = "greenfull" + icon_state = "sandbag_0"; + pixel_y = 2 }, -/area/fiorina/tumor/civres) -"rei" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"rds" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/chapel) +"rdv" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"rdW" = ( +/obj/item/trash/boonie, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"rev" = ( -/turf/open/floor/prison{ - icon_state = "blue" +"rdZ" = ( +/obj/item/ammo_casing{ + icon_state = "casing_7_1" }, -/area/fiorina/station/power_ring) -"reD" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"rej" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/park) +"rer" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) "reO" = ( /obj/structure/platform_decoration{ @@ -28009,12 +22199,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"rfa" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"reS" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/delivery, +/area/fiorina/station/power_ring) "rfd" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, @@ -28026,99 +22214,57 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"rfq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"rfD" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"rfJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mre_pack/meal4{ - name = "\improper prison food"; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"rfR" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "rgg" = ( /obj/item/tool/candle{ pixel_x = -2 }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rgD" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"rgS" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"rhF" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"rhK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"rib" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"ril" = ( +"rhv" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"rhX" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/obj/item/tool/lighter, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/obj/item/storage/donut_box/empty, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) -"riu" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; +"riq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"riz" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"rja" = ( +/turf/closed/wall/prison, +/area/fiorina/station/civres_blue) +"rjj" = ( +/obj/structure/machinery/disposal, +/obj/item/tool/kitchen/rollingpin{ pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"rja" = ( -/turf/closed/wall/prison, +/turf/open/floor/prison/kitchen/southwest, /area/fiorina/station/civres_blue) -"rjn" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rjk" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) +"rjx" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/park) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "rjz" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -28128,33 +22274,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"rjE" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"rjM" = ( +"rjY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - name = "Lung Transplants for Dummies"; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"rkr" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "greenblue" +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"rkf" = ( +/obj/item/stool, +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) "rkB" = ( /obj/structure/platform_decoration{ dir = 4 @@ -28171,37 +22301,21 @@ /obj/item/clothing/glasses/science, /turf/open/space, /area/fiorina/oob) +"rld" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "rle" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/wood, /area/fiorina/station/chapel) -"rlC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/chapel) -"rmb" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) -"rmg" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) +"rlS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "rmh" = ( /obj/structure/surface/rack, /obj/item/storage/bag/trash, @@ -28211,46 +22325,13 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"rmA" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, -/area/fiorina/station/security) -"rmG" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"rmI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"rmS" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"rmP" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/telecomm/lz1_tram) +"rmY" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "rna" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -28268,150 +22349,120 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"roo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"ror" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"rov" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"rox" = ( -/obj/structure/platform_decoration, -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rom" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzI) +"roz" = ( +/obj/structure/bed{ + icon_state = "psychbed" }, -/area/fiorina/station/disco) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) "roC" = ( /obj/item/tool/weldpack, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"roN" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/surgery/bonegel, -/obj/item/tool/surgery/bonegel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"roS" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"roY" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) "rpe" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar/red, /obj/item/storage/pill_bottle/inaprovaline/skillless, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"rpL" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rpN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"rpU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"rqx" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/green, +/area/fiorina/station/chapel) +"rqI" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "rqL" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"rrb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rqR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/security/wardens) -"rrj" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"rqV" = ( +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/lowsec) -"rru" = ( -/obj/effect/spawner/random/goggles/midchance, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"rrg" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/research_cells) -"rrP" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/chapel) -"rsh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/weed{ - icon_state = "ucigoff" +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/civres_blue) +"rrl" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rrm" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/central_ring) +"rrv" = ( +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, +/turf/open/floor/prison/yellowcorner, /area/fiorina/station/lowsec) +"rrI" = ( +/obj/structure/sign/poster{ + icon_state = "poster18"; + pixel_y = 32 + }, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "rsp" = ( /obj/item/toy/crayon/purple, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rss" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"rsz" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"rsE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"rsW" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +"rsR" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"rsZ" = ( +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) "rth" = ( /obj/structure/machinery/light/double/blue{ @@ -28421,15 +22472,28 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"rtM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 +"rtt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/maintenance) +"rtz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/security/wardens) +/obj/effect/spawner/random/technology_scanner, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rtF" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "rue" = ( /obj/structure/monorail{ dir = 10; @@ -28437,34 +22501,17 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"rur" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"ruv" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"ruy" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ruk" = ( +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"rul" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/tumor/ice_lab) -"ruB" = ( -/obj/effect/decal/medical_decals{ - dir = 4; - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "ruD" = ( /turf/open/floor/wood, /area/fiorina/oob) @@ -28483,53 +22530,56 @@ }, /turf/closed/wall/prison, /area/fiorina/tumor/servers) -"rvf" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1; - icon_state = "human2" +"ruS" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/obj/item/bedsheet/green, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/lowsec) -"rvu" = ( -/obj/structure/toilet, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) +"rvd" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"rvi" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"rvl" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"rvq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/civres_blue) -"rvR" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"rvK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 9; - pixel_y = 2 +/obj/item/device/camera, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"rvM" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, +/obj/item/bodybag/tarp/reactive, +/obj/item/bodybag/tarp/reactive, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/station/telecomm/lz1_cargo) -"rvW" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"rwj" = ( -/obj/structure/barricade/plasteel, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"rwt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "rwu" = ( /obj/structure/bed/chair{ dir = 1 @@ -28542,35 +22592,39 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rxh" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"rxj" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) "rxr" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"rxu" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_3" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) "rxz" = ( /obj/structure/curtain/open/black, /turf/open/floor/prison, /area/fiorina/maintenance) +"rxS" = ( +/turf/open/floor/prison/green/northwest, +/area/fiorina/tumor/servers) +"ryb" = ( +/obj/item/ammo_casing{ + icon_state = "casing_8" + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"ryc" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"ryh" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/southeast, +/area/fiorina/station/chapel) "rym" = ( /obj/structure/inflatable/popped/door, /turf/open/floor/plating/prison, @@ -28579,36 +22633,35 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/prison, /area/fiorina/station/security) -"ryx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) +"ryE" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/maintenance) "ryJ" = ( /obj/structure/machinery/door/airlock/prison/horizontal{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"ryN" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "rzt" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rAa" = ( -/obj/item/pamphlet/skill/powerloader, +"rzF" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"rzL" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"rzP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) "rAk" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -28619,12 +22672,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"rAt" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"rAq" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "rAK" = ( /obj/structure/barricade/metal{ dir = 4; @@ -28637,46 +22688,44 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rAQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 +"rAZ" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/medbay) -"rAW" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"rBf" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/disco) -"rBa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"rBi" = ( +/obj/vehicle/powerloader{ + dir = 4 }, -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"rBn" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/lz/near_lzI) "rBr" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"rBs" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/civres_blue) "rBz" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -28686,13 +22735,12 @@ "rBF" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/flight_deck) -"rBR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +"rBK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "rCq" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating/prison, @@ -28703,23 +22751,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/lowsec) -"rCL" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/obj/item/bedsheet/ce{ - desc = "It crinkles, aggressively."; - name = "sterile wax sheet" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/medbay) +"rCD" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) "rCO" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -28728,93 +22762,64 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"rDl" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"rDm" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"rEe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"rEg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/item/storage/fancy/cigarettes/blackpack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +"rDt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"rDL" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"rDU" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/tumor/ice_lab) "rEm" = ( /obj/item/tool/weldingtool, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"rEH" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/oob) -"rFr" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "damaged3" +"rEp" = ( +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight, +/obj/structure/surface/rack, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"rEy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/central_ring) -"rFs" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/item/handset{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/handset{ - pixel_x = 9; - pixel_y = -10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"rFu" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"rFH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"rFT" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" +"rEF" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"rFw" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"rFA" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"rFD" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "rGf" = ( /turf/open/auto_turf/sand/layer1, @@ -28826,44 +22831,33 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"rGK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/metal{ - health = 250; - icon_state = "metal_1" - }, -/turf/open/organic/grass{ - name = "astroturf" +"rGv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + pixel_y = 32 }, -/area/fiorina/station/park) -"rGV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"rGx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"rGL" = ( +/obj/structure/closet{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/item/stool{ + pixel_x = 4; + pixel_y = 6 }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"rHd" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"rHj" = ( -/obj/structure/surface/table/reinforced/prison{ - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"rHb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "rHr" = ( /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, @@ -28872,23 +22866,28 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rHx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"rHE" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"rHL" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/civres_blue) -"rIo" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"rIa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"rIi" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Hangar Landing Zone" }, -/area/fiorina/station/chapel) +/turf/open/floor/plating/prison, +/area/fiorina/lz/near_lzI) "rIC" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -28913,33 +22912,40 @@ }, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"rIW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "red" - }, -/area/fiorina/station/security) -"rIX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"rIT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "rJh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"rJs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "rJu" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rJK" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/chapel) +"rJv" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreen/southeast, +/area/fiorina/station/medbay) "rJO" = ( /turf/open/floor/carpet, /area/fiorina/station/security/wardens) @@ -28961,13 +22967,18 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"rKB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"rKm" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"rKK" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "rKO" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -28976,20 +22987,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"rKS" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +"rKQ" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/servers) -"rKX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ +/obj/structure/barricade/handrail/type_b{ dir = 4; - icon_state = "blue" + layer = 3.5 }, -/area/fiorina/station/civres_blue) +/obj/structure/morgue{ + dir = 8; + layer = 2.6 + }, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) "rKZ" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/prison, @@ -29000,100 +23011,74 @@ /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"rLC" = ( -/obj/structure/window{ +"rLf" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/item/circuitboard/machine/rdserver, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"rLJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"rLT" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"rLt" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal1" }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) -"rMg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"rMt" = ( -/obj/item/shard{ - icon_state = "medium" +"rMH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) +"rMM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/tumor/servers) -"rME" = ( -/obj/structure/machinery/bot/medbot, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) "rMP" = ( /obj/structure/barricade/metal/wired{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"rMS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"rMY" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"rNc" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"rNk" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/fiberbush) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "rNp" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /turf/open/floor/prison, /area/fiorina/station/medbay) -"rNF" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "green" +"rNC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/item/reagent_container/food/snacks/meat/human, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"rNQ" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "rOa" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) +"rOh" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "rOm" = ( /obj/structure/platform_decoration{ dir = 4 @@ -29112,12 +23097,9 @@ /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"rOE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) +"rOF" = ( +/turf/open/floor/prison/damaged2, +/area/fiorina/station/central_ring) "rOI" = ( /obj/structure/flora/bush/ausbushes/ausbush{ desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; @@ -29126,21 +23108,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"rPh" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/ice_lab) -"rPu" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) +"rON" = ( +/obj/structure/inflatable/popped/door, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "rPI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/souto/cherry{ @@ -29168,16 +23140,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"rPQ" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_x = -24 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +"rPJ" = ( +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) "rPS" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, @@ -29188,49 +23153,39 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"rQm" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"rQF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/fiorina/tumor/aux_engi) -"rQK" = ( -/obj/item/bananapeel{ - name = "tactical banana peel" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/medbay) -"rQP" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/prison{ +"rQb" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/civres) +"rQi" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "bluecorner" + icon_state = "gib6" }, -/area/fiorina/station/power_ring) -"rRb" = ( -/obj/item/shard{ - icon_state = "large" +/obj/effect/spawner/random/gun/rifle, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"rQA" = ( +/obj/structure/machinery/computer/atmos_alert, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"rQQ" = ( +/obj/item/toy/bikehorn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"rRm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"rRo" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/shower{ + dir = 4 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "rRO" = ( /obj/item/ammo_magazine/rifle/m16{ current_rounds = 0 @@ -29239,20 +23194,8 @@ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"rRT" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison, /area/fiorina/station/security) -"rSh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "rSr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -29260,12 +23203,11 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"rSM" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"rSv" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) "rTb" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -29273,6 +23215,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"rTe" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "rTH" = ( /obj/structure/sign/prop1{ layer = 2.5; @@ -29287,12 +23236,6 @@ /obj/structure/platform/stair_cut/alt, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"rUc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzI) "rUr" = ( /obj/structure/monorail{ dir = 4; @@ -29300,26 +23243,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"rUL" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"rUT" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"rUY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rUx" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"rUH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/power_ring) +"rUN" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/prison/redfull, +/area/fiorina/station/chapel) "rVy" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -29327,6 +23265,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) +"rVA" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 + }, +/turf/open/floor/prison/yellow, +/area/fiorina/station/disco) "rVM" = ( /obj/structure/closet/crate/miningcar, /obj/structure/barricade/wooden{ @@ -29339,64 +23283,48 @@ /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"rVS" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"rVZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"rWi" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"rVN" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "rWB" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"rWX" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/disco) -"rWZ" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"rXu" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"rXB" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/fiorina/station/telecomm/lz1_cargo) -"rXz" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/area/fiorina/station/medbay) -"rXT" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"rXZ" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "darkyellow2" + pixel_x = 10; + pixel_y = -1 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"rYa" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"rYB" = ( +/obj/item/toy/deck, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "rYC" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -29404,21 +23332,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"rYJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ +"rYG" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"rZa" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"rZb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "ywflowers_4" }, -/area/fiorina/lz/near_lzI) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) "rZh" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -29431,93 +23358,63 @@ icon_state = "stan_rightengine" }, /area/fiorina/station/power_ring) +"rZn" = ( +/obj/item/paper/prison_station/inmate_handbook, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "rZr" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"rZM" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "rZP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/aux_engi) -"sad" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"saI" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"saQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"sbf" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, +"rZY" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) +"san" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"saC" = ( +/obj/item/storage/belt/marine/quackers, +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/river/darkred_pool, /area/fiorina/station/park) -"sbg" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"saZ" = ( +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "sbj" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"sbp" = ( +"sbs" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"sbM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/disco) -"sbQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"sbY" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/obj/structure/barricade/handrail/type_b{ +"scf" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/area/fiorina/station/medbay) -"scg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"scj" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "sct" = ( /obj/structure/closet/crate/delta{ desc = "A crate with delta squad's symbol on it. Now how did that get here? The words 'HEFA was never real' are scrawled on it in black ink."; @@ -29526,27 +23423,16 @@ /obj/item/ammo_box/magazine/shotgun/buckshot, /turf/open/floor/prison, /area/fiorina/station/medbay) -"scw" = ( -/obj/item/storage/beer_pack{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "yellow" +"scu" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, +/turf/open/floor/prison/yellow/northeast, /area/fiorina/station/lowsec) "scM" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_tram) -"scU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) "scZ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -29557,13 +23443,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"sde" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "sdK" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp{ @@ -29573,12 +23452,12 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"sdY" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" +"sdO" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) "sel" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -29587,182 +23466,176 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"seu" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" +"sez" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "bee" }, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) +"seA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"seG" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "seW" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" }, /area/fiorina/tumor/ship) -"seY" = ( -/obj/item/frame/rack, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"sfi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"sfs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, +"sfa" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/chapel_carpet/doubleside/north, /area/fiorina/station/chapel) -"sfw" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" +"sfB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"sfC" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) +"sfU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) "sfW" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"sgb" = ( -/obj/item/ammo_box/magazine/misc/flares/empty, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"sgp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "sgw" = ( /obj/structure/window_frame/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"shq" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"sgy" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) -"shC" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"sgM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/fiorina/tumor/aux_engi) -"shG" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"sgQ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"sgY" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"shK" = ( /obj/structure/sink{ dir = 4; - pixel_x = 11 + pixel_x = 12 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"shR" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"siz" = ( -/obj/structure/stairs/perspective{ +"shX" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + pixel_y = 21 }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"sio" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/ice_lab) -"sjc" = ( -/obj/structure/barricade/sandbags{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"sjl" = ( -/obj/item/stack/nanopaste, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"sjn" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"sit" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"sjw" = ( -/turf/open/floor/prison{ - icon_state = "whitegreencorner" +"siu" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"sjp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) "sjx" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison, /area/fiorina/station/medbay) -"sjR" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"skH" = ( -/obj/item/pamphlet/engineer, -/obj/structure/closet, -/obj/item/handcuffs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/lowsec) +"sjA" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) "skM" = ( /obj/effect/landmark/nightmare{ insert_tag = "repairpanelslz" }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"skO" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"slG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "bluefull" +"skV" = ( +/turf/open/floor/prison/greenbluecorner/east, +/area/fiorina/station/botany) +"skY" = ( +/obj/structure/machinery/space_heater, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"slm" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/tumor/ice_lab) +"sls" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"slx" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/area/fiorina/station/power_ring) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "slM" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/waffles, @@ -29771,34 +23644,24 @@ /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"sma" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"smh" = ( +"slU" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/disco) -"smq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"slW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/park) +"smp" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "smv" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -29810,69 +23673,62 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"smX" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +"smG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 }, -/area/fiorina/tumor/servers) -"snp" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sng" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/area/fiorina/station/chapel) -"snq" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"snl" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"snn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Residential Archives" }, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"sno" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/fiorina/tumor/servers) "sns" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/prison, /area/fiorina/station/security) -"snO" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"soc" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"sol" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera, +"snR" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/medbay) -"sor" = ( -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/maintenance) +"snT" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"snW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrown2/east, /area/fiorina/tumor/aux_engi) "sov" = ( /turf/closed/shuttle/ert{ @@ -29880,36 +23736,43 @@ opacity = 0 }, /area/fiorina/lz/near_lzI) +"soJ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "soN" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/gun/special/lowchance, /obj/item/clothing/suit/armor/det_suit, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"soQ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"spl" = ( -/obj/item/stack/sheet/metal, -/obj/structure/barricade/handrail{ - dir = 4 +"soS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) +"spn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/disco) +"spu" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"spG" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"sqj" = ( +/obj/structure/sink{ + pixel_y = 23 }, -/area/fiorina/station/research_cells) -"sqg" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -5 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "sql" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, @@ -29922,60 +23785,47 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"sqB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) "sqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/lowsec) -"sru" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 7; - pixel_y = 22 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"srz" = ( -/obj/structure/machinery/light/double/blue{ +"sqE" = ( +/obj/structure/machinery/shower{ dir = 1; - pixel_y = 21 + pixel_y = -1 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"sqN" = ( +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/servers) +"srf" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"srx" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/area/fiorina/station/disco) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"srF" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/transit_hub) "srI" = ( /obj/item/tool/crowbar/red, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"ssj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "sso" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/bag/plants, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"ssD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" - }, -/obj/structure/monorail{ - name = "launch track" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) "ssJ" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth{ @@ -29983,41 +23833,41 @@ }, /turf/open/space, /area/fiorina/oob) +"ssN" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/fiorina/tumor/ice_lab) "ssO" = ( /obj/item/ashtray/glass, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"ssQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "sta" = ( /obj/structure/machinery/door/airlock/almayer/marine{ icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi' }, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"stq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"stX" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"suj" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"stv" = ( +/obj/item/weapon/baton/cattleprod, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"stx" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"stz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "sun" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -30031,19 +23881,25 @@ /obj/structure/dropship_equipment/fulton_system, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"suE" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null +"suJ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) +"suL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/reagent_container/glass/bottle/robot/antitoxin, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_x = -12; + pixel_y = 13 }, -/area/fiorina/station/security) +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"suY" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) "svh" = ( /obj/structure/machinery/computer/telecomms/monitor, /turf/open/floor/plating/prison, @@ -30052,25 +23908,33 @@ /obj/structure/grille, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"svF" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/fiorina/oob) +"svD" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "svG" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /turf/open/floor/prison, /area/fiorina/station/medbay) +"svN" = ( +/obj/item/clothing/accessory/armband/cargo{ + desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; + name = "HEFA Order milita armband" + }, +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/chapel) "swg" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/space, /area/fiorina/oob) -"swh" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison, -/area/fiorina/station/power_ring) +"swm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "sws" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -30081,16 +23945,34 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"syf" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b{ - dir = 4 +"swA" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"sxn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sxt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sxX" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "syF" = ( /obj/structure/machinery/microwave{ desc = "So uh yeah, about that cat..."; @@ -30100,83 +23982,52 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"syG" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"syU" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 8 - }, -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) "syV" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/fiorina/station/power_ring) +"szD" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/power_ring) +"szF" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) "szK" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/wood, /area/fiorina/station/park) -"szQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"sAe" = ( -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"sAk" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"sAv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"sAx" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +"szS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"sAg" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"sAy" = ( +/obj/item/storage/box/flashbangs, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sAA" = ( +/obj/item/storage/pill_bottle/spaceacillin/skillless, +/turf/open/floor/prison/whitepurple/northeast, /area/fiorina/station/research_cells) -"sAK" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"sBr" = ( -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +"sBc" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/telecomm/lz1_cargo) +"sBt" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"sBu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "sBA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -30184,58 +24035,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"sCh" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/card/id/silver/clearance_badge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"sCj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"sCo" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"sCB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"sDp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"sDF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" +"sCn" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) +"sCH" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"sCM" = ( +/obj/item/paper/crumpled/bloody/csheet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "sDL" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -30243,23 +24057,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"sDV" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"sEc" = ( +/obj/item/trash/popcorn, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"sEm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/central_ring) -"sEi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"sED" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/fiorina/station/disco) +"sEK" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "sEO" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzII) @@ -30267,60 +24079,67 @@ /obj/item/tool/crowbar/red, /turf/open/floor/prison, /area/fiorina/station/security) -"sFn" = ( -/obj/structure/machinery/door/window/northleft{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security/wardens) -"sFI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "Residential Archives" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"sFN" = ( +"sFV" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sGg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"sGb" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +"sGj" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/security) +"sGk" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"sGG" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, -/area/fiorina/station/disco) +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "sGI" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/wood, /area/fiorina/station/park) -"sHb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"sGU" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) +"sGV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/chapel) +"sHe" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/area/fiorina/station/park) -"sHw" = ( -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "yellowcorner" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"sHi" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"sHq" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"sHD" = ( +/turf/open/floor/prison/bluecorner, +/area/fiorina/station/power_ring) "sHH" = ( /turf/open/floor/prison, /area/fiorina/station/lowsec) @@ -30333,13 +24152,6 @@ }, /turf/open/space, /area/fiorina/oob) -"sHQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "sIm" = ( /obj/structure/surface/rack, /turf/open/floor/plating/prison, @@ -30355,105 +24167,95 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/lz/near_lzI) -"sIQ" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"sIT" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"sIO" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/lz/near_lzII) -"sJc" = ( +/turf/open/floor/prison/whitepurple/east, +/area/fiorina/station/research_cells) +"sJe" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison, +/area/fiorina/station/telecomm/lz1_tram) +"sJf" = ( +/obj/item/disk/data, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"sJq" = ( /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"sJl" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "sJu" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sJw" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" +"sJB" = ( +/obj/structure/machinery/door/poddoor/almayer{ + density = 0; + dir = 4 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "sJN" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzI) -"sJT" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"sKn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"sKq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/lz/near_lzII) -"sKP" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 +"sJP" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/fiorina/station/power_ring) -"sKS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) +"sJS" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"sJV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"sKi" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"sKy" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"sKz" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + layer = 3.5 }, -/area/fiorina/station/disco) -"sLl" = ( -/turf/open/floor/prison{ +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/station/central_ring) -"sLo" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + pixel_y = 21 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"sKB" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) +"sLd" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"sLh" = ( +/obj/item/bedsheet, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "sLx" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -30464,12 +24266,11 @@ }, /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/civres) -"sLT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"sMa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "sMj" = ( /obj/structure/barricade/metal/wired{ dir = 8 @@ -30477,38 +24278,25 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"sMo" = ( -/obj/item/clothing/under/marine/ua_riot, -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"sNb" = ( -/obj/item/device/radio, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"sNd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"sMF" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) -"sNu" = ( -/obj/structure/bed/chair{ +"sNz" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" +/obj/item/ammo_casing{ + dir = 8; + icon_state = "casing_6" }, -/area/fiorina/maintenance) +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"sNH" = ( +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "sNK" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -30521,13 +24309,6 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"sNT" = ( -/obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "sOf" = ( /obj/item/clothing/mask/cigarette/weed{ icon_state = "ucigoff" @@ -30543,28 +24324,22 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"sOn" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security/wardens) -"sOp" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"sOs" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"sOm" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"sOV" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; + name = "\improper arcade tickets"; + pixel_x = 1; + pixel_y = -1 }, -/area/fiorina/tumor/ship) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"sPb" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/station/chapel) "sPk" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -30572,75 +24347,27 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"sPC" = ( -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"sQK" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gibdown1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"sQL" = ( -/obj/structure/platform, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/fiorina/station/park) -"sRb" = ( -/obj/item/trash/candy, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"sRg" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"sRk" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"sRV" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"sSk" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +"sPN" = ( +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/tumor/servers) -"sSJ" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +"sRl" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/station/chapel) +"sRF" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) +"sRM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"sSC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "sSY" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -30652,16 +24379,14 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"sTa" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "red" - }, -/area/fiorina/station/security) "sTd" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"sTn" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) "sTu" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -30671,103 +24396,36 @@ /obj/structure/blocker/invisible_wall, /turf/open/space, /area/fiorina/station/medbay) -"sTB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"sTV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/fiorina/station/power_ring) "sUl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0 }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"sUq" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"sUX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/organic/grass{ - name = "astroturf" - }, +"sUI" = ( +/obj/item/clothing/suit/storage/labcoat, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) -"sUY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) -"sVa" = ( -/obj/item/trash/used_stasis_bag{ - desc = "Wow, instant sand. They really have everything in space."; - name = "Insta-Sand! bag" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "sVi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"sVk" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "sVv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/space, /area/fiorina/oob) -"sVy" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/item/trash/barcardine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"sVD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"sVM" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"sVN" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"sVP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"sVS" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/tumor/aux_engi) +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "sVU" = ( /obj/structure/largecrate/machine, /obj/item/reagent_container/food/drinks/cans/aspen{ @@ -30775,80 +24433,55 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"sWu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"sWg" = ( +/obj/structure/closet/crate/medical, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/medbay) -"sWF" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"sXi" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"sXy" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"sYe" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" +"sXC" = ( +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"sXV" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) +"sXZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"sYf" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"sYm" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitegreencorner/east, +/area/fiorina/station/medbay) "sYn" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"sYM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) +"sYI" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/maintenance) "sYP" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"sZr" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"tam" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/storage/belt/shotgun, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"sZt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"sZD" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) "tan" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/oob) @@ -30858,25 +24491,13 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"tax" = ( -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"taX" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) +"tau" = ( +/turf/open/floor/prison/green/northeast, +/area/fiorina/station/chapel) +"taA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "taY" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/space/basic, @@ -30885,67 +24506,67 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"tbC" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, +"tbS" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/prison/darkbrown2/north, /area/fiorina/tumor/aux_engi) -"tbZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tcl" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tcJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"tcO" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/fiorina/station/chapel) -"tdb" = ( +"tbV" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/device/multitool, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) +"tch" = ( +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"tco" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/tumor/servers) -"tdo" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/platform_decoration{ + dir = 10 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/park) -"tdA" = ( -/turf/open/floor/prison{ +"tcr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"tcU" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/maintenance) +"tdf" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "redcorner" + icon_state = "p_stair_full" }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/central_ring) +"tdv" = ( +/obj/item/restraint/adjustable/cable/pink, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "tdG" = ( /obj/item/storage/backpack/satchel/lockable, /turf/open/floor/prison, /area/fiorina/station/security) +"tdR" = ( +/obj/structure/barricade/sandbags{ + dir = 8; + icon_state = "sandbag_0" + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/station/telecomm/lz1_cargo) "tdZ" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, @@ -30957,38 +24578,47 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) +"tej" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) "tel" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/station/medbay) -"tet" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"teH" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"teT" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"teu" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tev" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) +"tfg" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/bright_clean_marked/southwest, +/area/fiorina/station/power_ring) "tfx" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/park) +"tfB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "tfP" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/fiberbush) @@ -30996,44 +24626,49 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"tgc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"tgv" = ( -/obj/structure/machinery/computer/emails{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "tgB" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"the" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" +"tgL" = ( +/turf/open/floor/prison/sterile_white/west, +/area/fiorina/station/lowsec) +"tgU" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"tgV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, -/area/fiorina/station/security) -"thi" = ( -/turf/open/floor/prison{ +/obj/structure/bed/roller, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"thd" = ( +/obj/structure/bed/chair{ dir = 4; - icon_state = "cell_stripe" + pixel_x = -5 }, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"thh" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/aux_engi) -"thU" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"thA" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/servers) "tih" = ( /obj/item/tool/warning_cone, /obj/structure/machinery/light/double/blue{ @@ -31043,15 +24678,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"tik" = ( -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) "tiW" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/chunk, @@ -31061,37 +24687,31 @@ /obj/item/stack/sheet/mineral/plastic, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tjo" = ( -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"tjM" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"tjQ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "green" +"tjp" = ( +/obj/effect/landmark{ + icon_state = "hive_spawn"; + name = "xeno_hive_spawn" }, -/area/fiorina/station/chapel) -"tjU" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"tjR" = ( +/obj/item/storage/toolbox, /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"tjZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) "tke" = ( /obj/structure/monorail{ name = "launch track" @@ -31101,27 +24721,67 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"tkk" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"tkg" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, -/area/fiorina/station/medbay) +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"tkC" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/fiorina/maintenance) +"tkG" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"tkI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"tkP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"tkQ" = ( +/obj/structure/machinery/shower{ + dir = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "tld" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"tlp" = ( +"tle" = ( +/turf/open/floor/solarpanel, +/area/fiorina/oob) +"tlh" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/reagent_container/food/snacks/mre_pack/meal4{ + name = "\improper prison food"; + pixel_y = 9 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "tlq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp{ @@ -31138,24 +24798,16 @@ }, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"tlM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"tlJ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/fiorina/station/transit_hub) +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "tlQ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tlS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "tlV" = ( /obj/structure/machinery/space_heater, /obj/item/device/flashlight/lamp{ @@ -31163,12 +24815,29 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"tmi" = ( -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"tlX" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, +/obj/structure/barricade/handrail/type_b{ + layer = 3.5 + }, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) +"tmb" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tmk" = ( +/obj/item/trash/burger, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "tmx" = ( /obj/structure/bed/chair{ @@ -31181,6 +24850,9 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) +"tmF" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/fiorina/station/telecomm/lz1_tram) "tna" = ( /obj/structure/bed/sofa/pews{ dir = 4 @@ -31191,65 +24863,30 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"tnd" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"tng" = ( -/obj/structure/computerframe, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) -"tnj" = ( -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"tno" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"tnr" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tnA" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"tnH" = ( +"tnf" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"tnh" = ( +/obj/item/device/flashlight/lamp/tripod, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"tnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"tnQ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"tnV" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "tob" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -31257,6 +24894,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"toj" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkbrown2/southeast, +/area/fiorina/maintenance) +"tol" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "tom" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -31264,28 +24909,13 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"tov" = ( -/obj/effect/spawner/random/gun/smg/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "toE" = ( /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"toJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, +"toH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/obj/item/card/id/guest, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) "tpa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -31293,14 +24923,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"tpf" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +"tpK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/maintenance) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "tpO" = ( /obj/structure/machinery/microwave{ desc = "There's two of them."; @@ -31328,64 +24957,24 @@ }, /turf/open/space/basic, /area/fiorina/oob) -"tqM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"tqN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"tqQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/lz/near_lzI) -"tqR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"tre" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) "trl" = ( /obj/item/trash/buritto, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"trB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"trH" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"tro" = ( +/turf/open/floor/prison/redcorner, +/area/fiorina/station/power_ring) +"trJ" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "trS" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -31401,39 +24990,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"tsi" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"tsu" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"tss" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/station/central_ring) +"tsJ" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/area/fiorina/station/power_ring) +/turf/open/floor/corsat/squares, +/area/fiorina/station/civres_blue) "tsQ" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/park) -"tts" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"ttK" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) "tuf" = ( /obj/item/clothing/shoes/jackboots{ name = "Awesome Guy" @@ -31460,19 +25034,6 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"tur" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"tuB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "tuD" = ( /obj/structure/platform{ dir = 1 @@ -31483,18 +25044,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"tuH" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/obj/structure/bed/chair{ - dir = 1; - layer = 2.8 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) +"tuQ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "tuX" = ( /obj/structure/platform{ dir = 1 @@ -31507,18 +25062,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tvu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"tvI" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) "tvM" = ( /obj/structure/platform{ dir = 1 @@ -31541,229 +25084,149 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"tvX" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/fiorina/station/chapel) "twb" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/maintenance) -"twd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"twB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"twt" = ( +/obj/structure/barricade/sandbags{ + icon_state = "sandbag_0"; + pixel_y = -14 }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "twL" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/fiorina/station/transit_hub) -"txS" = ( -/obj/item/stack/sandbags, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"tyb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/lockbox/vials{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"tyk" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"tyO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"tyQ" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"tzj" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/fiorina/tumor/civres) -"tzx" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"tzy" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plating/prison, -/area/fiorina/station/research_cells) -"tzF" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/central_ring) -"tAb" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/general_belt{ - pixel_y = 7 - }, -/obj/item/storage/backpack/general_belt, -/turf/open/floor/almayer, -/area/fiorina/tumor/ship) -"tAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"tAk" = ( -/obj/item/weapon/gun/rifle/m16, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tAI" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"tBa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"tBe" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tBt" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "green" - }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, /area/fiorina/station/transit_hub) -"tBy" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +"txm" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/tumor/aux_engi) +"txP" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/station/telecomm/lz1_tram) -"tBD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/station/park) +"tyc" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/security) -"tBP" = ( -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"tze" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck/uno, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"tzy" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 }, -/turf/open/floor/interior/plastic, +/turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"tBR" = ( +"tzz" = ( /obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tBU" = ( -/obj/item/paper/crumpled/bloody/csheet, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/lz/near_lzII) -"tCf" = ( -/obj/structure/barricade/handrail/type_b{ +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"tzS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tAb" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 }, -/area/fiorina/station/flight_deck) -"tCj" = ( -/obj/structure/machinery/power/apc{ +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer, +/area/fiorina/tumor/ship) +"tAg" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) +"tBo" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/area/fiorina/station/telecomm/lz1_cargo) -"tCu" = ( -/obj/item/frame/rack, -/obj/item/clothing/under/marine/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/servers) +"tBL" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"tBP" = ( +/obj/structure/machinery/shower{ + dir = 1 }, +/turf/open/floor/interior/plastic, +/area/fiorina/station/research_cells) +"tCb" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"tCl" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/redfull, /area/fiorina/station/security) +"tCm" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"tCn" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"tCK" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"tCO" = ( +/turf/open/floor/prison/green/southwest, +/area/fiorina/tumor/civres) +"tCW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tCX" = ( +/obj/item/clothing/shoes/marine/upp/knife, +/turf/open/floor/prison, +/area/fiorina/station/lowsec) "tCZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/floor/almayer_hull, /area/fiorina/oob) +"tDb" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/tool/shovel/spade, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"tDk" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"tDm" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "tDo" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -31808,15 +25271,12 @@ }, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"tDY" = ( +"tDR" = ( /obj/structure/platform_decoration{ dir = 1 }, -/obj/item/tool/pickaxe, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) "tEb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -31824,16 +25284,34 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/flight_deck) -"tEj" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) +"tEk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/baton, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"tEu" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) "tEH" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"tEP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"tFl" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"tFs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "tFu" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -31844,6 +25322,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) +"tFR" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) "tGi" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -31851,66 +25332,31 @@ }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"tGl" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"tGF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/attachable/bipod, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"tHj" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, +/turf/open/floor/prison/darkyellowfull2/east, /area/fiorina/lz/near_lzI) -"tGO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/tumor/ice_lab) -"tHh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/atmos_alert{ +"tHk" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"tHi" = ( -/obj/structure/filingcabinet/disk, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) "tHl" = ( /obj/structure/inflatable, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tHr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"tHs" = ( -/turf/open/floor/prison{ - icon_state = "redfull" - }, +"tHw" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"tHD" = ( +/obj/structure/surface/rack, +/obj/item/restraint/handcuffs, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/security) -"tHu" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) "tHL" = ( /obj/structure/blocker/invisible_wall, /turf/closed/shuttle/ert{ @@ -31918,13 +25364,6 @@ opacity = 0 }, /area/fiorina/station/medbay) -"tHP" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "tHU" = ( /obj/structure/monorail{ dir = 5; @@ -31932,50 +25371,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"tHX" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"tIo" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"tIC" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations are the leading cause in asbestos related deaths for 3 years in a row."; - icon_state = "fullgrass_1"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"tII" = ( -/obj/item/reagent_container/food/drinks/bottle/rum, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"tIN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/area/fiorina/station/botany) -"tIK" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "tIU" = ( /obj/item/tool/candle, /turf/open/floor/prison/chapel_carpet, /area/fiorina/maintenance) -"tJe" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/station/chapel) "tJn" = ( /obj/item/tool/wirecutters, /obj/structure/platform/shiva{ @@ -31983,12 +25398,13 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"tJM" = ( -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +"tJt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) +"tJD" = ( +/turf/open/floor/prison/green, +/area/fiorina/tumor/civres) "tJR" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ pixel_y = 7 @@ -31996,24 +25412,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tJT" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"tJU" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) "tKs" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "A ticket to Souto Man's raffle!"; @@ -32030,122 +25428,93 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"tLd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 +"tKC" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 + }, +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"tKM" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"tKR" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"tKY" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 1 }, -/area/fiorina/station/power_ring) +/obj/item/frame/rack, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) "tLC" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tLT" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"tLY" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"tMe" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/fiorina/station/power_ring) -"tMn" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tLE" = ( +/obj/item/trash/kepler, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"tMb" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/weapon/baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tMj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"tMr" = ( -/obj/item/toy/deck, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"tMx" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"tMk" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/fiorina/station/security) -"tMz" = ( -/obj/structure/closet/crate/bravo, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/fuelCell, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/prison{ - icon_state = "bluefull" +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_tram) +"tMo" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "tMA" = ( /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"tMF" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 4; - layer = 3.5 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"tML" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 - }, -/obj/item/cell/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) "tMP" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"tNs" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"tNt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"tNu" = ( +"tMR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/support/flare_launcher{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/obj/item/reagent_container/dropper, +/obj/item/attachable/bipod, +/turf/open/floor/prison/darkyellow2/north, /area/fiorina/lz/near_lzI) +"tNz" = ( +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"tNF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"tNL" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "tNS" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /obj/structure/machinery/light/double/blue{ @@ -32161,188 +25530,125 @@ "tOc" = ( /turf/open/floor/wood, /area/fiorina/station/disco) -"tOo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "tOp" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"tOr" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "tOG" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) -"tOK" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"tOS" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/obj/item/reagent_container/food/snacks/grown/eggplant{ - desc = "Eggplant. Or, wait..."; - layer = 2 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"tOZ" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tPi" = ( -/obj/structure/monorail{ - name = "launch track" +"tPb" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"tPm" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"tPx" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, +/turf/open/floor/prison/darkyellow2, /area/fiorina/lz/near_lzI) -"tPz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +"tPy" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket" }, +/turf/open/floor/prison/blue, /area/fiorina/station/chapel) +"tPE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenblue/southeast, +/area/fiorina/station/botany) +"tPL" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/lz/near_lzI) "tPN" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"tPQ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/station/security) +"tPY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"tQj" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "tQm" = ( /obj/item/trash/boonie, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"tQn" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) -"tQq" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "greencorner" - }, -/area/fiorina/tumor/civres) -"tQs" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 8; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) "tQB" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tQJ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"tQL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"tRa" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"tRt" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "greenblue" +"tQK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" }, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) +"tQM" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"tQY" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"tRx" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) "tRH" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/botany) +"tRK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"tSd" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrowncorners2, +/area/fiorina/tumor/aux_engi) "tSi" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"tSn" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/medbay) -"tST" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"tTr" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) -"tTu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tSu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"tSF" = ( +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"tSJ" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 6; + pixel_y = 7 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) +"tSR" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) "tTA" = ( /obj/structure/prop/souto_land/pole{ dir = 1 @@ -32355,79 +25661,33 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"tTM" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tTV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tUe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"tUr" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) "tUs" = ( /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) +"tUz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) "tUS" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"tVt" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"tUT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"tVx" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gibdown1" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"tVu" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tVB" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "casing_6" - }, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/obj/effect/spawner/random/gun/smg, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"tVE" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "tVG" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -32436,52 +25696,27 @@ /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"tVU" = ( +/turf/open/floor/prison/blue/east, +/area/fiorina/station/chapel) "tVV" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"tVX" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/lz/near_lzI) -"tVZ" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"tWe" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"tWo" = ( +"tWr" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"tWq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"tWG" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "tWI" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -32489,47 +25724,38 @@ }, /turf/open/space, /area/fiorina/oob) -"tXi" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/storage/box/pillbottles, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"tXQ" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/tumor/servers) -"tYc" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_v" - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"tYd" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"tWV" = ( +/obj/structure/holohoop{ + dir = 1 }, -/area/fiorina/tumor/aux_engi) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"tXK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"tXW" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) +"tYm" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "tYr" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) +"tYs" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "tYw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/civres) @@ -32538,73 +25764,50 @@ /obj/item/tool/lighter, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"tYz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "tZo" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/security) -"tZs" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"tZN" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"tZS" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, -/area/fiorina/tumor/civres) -"tZV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"tZW" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"tZX" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"tZr" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/flight_deck) +"tZT" = ( +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"uaj" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "uap" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uat" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) +"uaF" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"uaP" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"uaV" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "ubc" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"ubk" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/tumor/aux_engi) +"ubn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/cigbutt, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "ubH" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -32626,14 +25829,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"ubT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" +"ubU" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2.7 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "uch" = ( /obj/structure/platform{ dir = 4 @@ -32645,26 +25847,43 @@ icon_state = "stan25" }, /area/fiorina/station/power_ring) -"ucr" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"ucw" = ( +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) "ucS" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) -"uds" = ( -/obj/item/ammo_casing{ - dir = 2; - icon_state = "casing_5" +"ucU" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/security) +"udr" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"udE" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"udF" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/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" }, -/area/fiorina/station/park) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"udR" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/station/power_ring) "udY" = ( /obj/structure/platform{ dir = 8 @@ -32678,13 +25897,10 @@ }, /turf/closed/wall/prison, /area/fiorina/station/central_ring) -"uef" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) +"uen" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) "uep" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, @@ -32697,21 +25913,27 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"ueA" = ( +"ueq" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" + icon_state = "pottedplant_29"; + pixel_y = 10 }, -/area/fiorina/station/medbay) -"ueF" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ueI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/lowsec) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) +"ufa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "ufo" = ( /obj/structure/closet/crate/miningcar{ name = "\improper materials storage bin" @@ -32719,37 +25941,28 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"ufX" = ( -/obj/item/reagent_container/food/drinks/sillycup, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"ugC" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ugt" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"ugN" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, -/area/fiorina/tumor/servers) -"ugH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/tumor/servers) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "ugT" = ( /obj/effect/landmark/corpsespawner/ua_riot/burst, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ugU" = ( -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +"ugY" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "uhb" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/sillycup{ @@ -32764,54 +25977,43 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"uhd" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "uhm" = ( /obj/structure/window_frame/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"uhH" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"uhQ" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 }, -/area/fiorina/lz/near_lzI) -"uin" = ( -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 7 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"uhY" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "A ticket to Souto Man's raffle!"; + name = "\improper Souto Raffle Ticket"; + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"uhZ" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_tram) +"uiv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "uix" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/prison, /area/fiorina/station/disco) -"uiK" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uiR" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "uiV" = ( /obj/structure/platform{ dir = 4 @@ -32824,23 +26026,28 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"ujs" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/organic/grass{ - name = "astroturf" +"ujf" = ( +/obj/item/ammo_casing{ + icon_state = "casing_10_1" }, -/area/fiorina/station/research_cells) -"ujC" = ( -/obj/structure/toilet{ - dir = 8 +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"ujk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ujv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, -/turf/open/floor/prison{ - icon_state = "sterile_white" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "ujJ" = ( /obj/structure/monorail{ dir = 5; @@ -32848,94 +26055,41 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"ujO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/fiorina/station/park) -"ukk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"ukr" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"ukz" = ( +"ujV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/gun/pistol/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"ukI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"ukN" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 }, -/area/fiorina/station/security) -"ukR" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/space/basic, -/area/fiorina/lz/near_lzI) -"ulJ" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ukE" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, +/turf/open/floor/prison/whitepurple/northeast, +/area/fiorina/station/research_cells) +"ukV" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"ula" = ( +/turf/open/floor/prison/yellowcorner/west, /area/fiorina/station/lowsec) -"ulW" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"umq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) +"ulu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"ulC" = ( +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) "umy" = ( /obj/structure/prop/resin_prop{ dir = 4; @@ -32944,6 +26098,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"umz" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"umQ" = ( +/obj/item/inflatable, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"umR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) "umW" = ( /obj/structure/bed/sofa/pews, /turf/open/floor/wood, @@ -32952,52 +26119,40 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"unc" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"unW" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 +"uns" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/lz/near_lzI) +"unx" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/tumor/ice_lab) +"uob" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/fiorina/station/research_cells) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "uod" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uol" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"uoq" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 }, -/area/fiorina/lz/near_lzI) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "upt" = ( /obj/structure/platform, /turf/open/floor/prison, /area/fiorina/tumor/ice_lab) -"upF" = ( -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) +"upC" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "upM" = ( /obj/structure/disposalpipe/broken, /turf/open/floor/plating/prison, @@ -33006,132 +26161,96 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/prison, /area/fiorina/station/security/wardens) -"uqa" = ( -/obj/item/clothing/accessory/armband/cargo{ - desc = "Sworn to the shrapnel and the shards therein. So sayeth her command when the first detonation occured."; - name = "HEFA Order milita armband" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"uqo" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) +"uqm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) "uqp" = ( /obj/structure/bed/sofa/vert/grey/bot{ pixel_y = 8 }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"urc" = ( -/obj/structure/largecrate/random/barrel/white, +"uqR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"uri" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"urk" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"urm" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"urn" = ( +/obj/structure/machinery/constructable_frame, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/damaged2/southwest, +/area/fiorina/station/lowsec) +"urC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/disco) -"uri" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzI) -"urw" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "urJ" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/almayer_hull, /area/fiorina/oob) -"urS" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"usa" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "green" - }, -/area/fiorina/station/chapel) "usg" = ( /obj/effect/spawner/random/attachment, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"usz" = ( -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"usA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +"usj" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/fiorina/station/park) +"uso" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"usv" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) "uts" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"utC" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/flight_deck) -"utV" = ( +"uuv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"uuy" = ( /obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"uuk" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uuJ" = ( -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail{ - dir = 4 + pixel_y = -1 }, -/turf/open/organic/grass{ - name = "astroturf" +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"uuE" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "uuL" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -33139,66 +26258,45 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security) +"uuP" = ( +/obj/structure/platform, +/obj/item/ammo_casing{ + dir = 2; + icon_state = "casing_5" + }, +/turf/open/gm/river/red_pool, +/area/fiorina/station/park) +"uuZ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "uvc" = ( /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uvh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"uvi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) -"uvy" = ( -/obj/effect/landmark{ - icon_state = "hive_spawn"; - name = "xeno_hive_spawn" - }, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"uvG" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"uvl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"uvx" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/fiorina/station/medbay) +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "uvM" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"uwg" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) "uwk" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"uwI" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) +"uwz" = ( +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) "uwP" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/mineral/plastic, @@ -33209,76 +26307,57 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/fiorina/oob) -"uxa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"uxi" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"uxp" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) "uxv" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"uxN" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/fiorina/station/park) -"uxY" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"uyb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"uxF" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/area/fiorina/station/disco) +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"uxK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"uxR" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "uyd" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/fiorina/station/lowsec) +"uyg" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) "uym" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"uyq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"uyr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) +"uyF" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) "uyM" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) +"uyZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) "uza" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gibup1" @@ -33286,12 +26365,6 @@ /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"uzd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/station/disco) "uzw" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, @@ -33303,53 +26376,47 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"uzX" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"uAd" = ( -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) -"uAi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 +"uzU" = ( +/turf/open/floor/prison/blue/southwest, +/area/fiorina/tumor/servers) +"uAk" = ( +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/green/north, +/area/fiorina/station/chapel) +"uAE" = ( +/obj/structure/curtain, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"uAO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/item/clothing/suit/armor/bulletproof/badge, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/flight_deck) +"uAR" = ( +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -2 }, -/area/fiorina/station/lowsec) -"uAv" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"uAT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/space_heater{ + pixel_x = -1; + pixel_y = 9 }, -/area/fiorina/station/civres_blue) -"uAG" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/prison/blue/southwest, +/area/fiorina/station/power_ring) +"uBg" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5_1" }, -/area/fiorina/station/lowsec) -"uAX" = ( -/obj/effect/decal/hefa_cult_decals/d32, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "uBq" = ( /obj/item/stack/rods, /obj/structure/disposalpipe/broken, @@ -33358,138 +26425,79 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uBS" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"uBD" = ( +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/tumor/servers) -"uBW" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"uBU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"uCa" = ( -/obj/structure/platform{ +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"uCc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/tumor/aux_engi) +"uCM" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) +"uCN" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"uCu" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"uCz" = ( -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uCD" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"uDa" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/lz/near_lzI) +"uDu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/card/id/guest{ + pixel_x = -2; + pixel_y = 6 }, -/area/fiorina/station/research_cells) -"uCW" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/card/id/guest, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uDy" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"uDK" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/fiorina/station/chapel) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) +"uDQ" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "uEj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uEm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "red" - }, -/area/fiorina/station/security) -"uEN" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"uFh" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, +"uEn" = ( +/obj/structure/closet/wardrobe/orange, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"uFE" = ( -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"uFM" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"uFX" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"uGb" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/spawner/random/sentry/midchance, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"uGq" = ( +"uEF" = ( +/obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" + icon_state = "triagedecalleft" }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"uGu" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "3" - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) +"uGd" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, +/area/fiorina/station/research_cells) "uGD" = ( /obj/item/tool/kitchen/knife, /obj/structure/bed/roller, @@ -33505,24 +26513,10 @@ "uGY" = ( /turf/closed/wall/prison, /area/fiorina/station/security) -"uHL" = ( -/obj/item/stool{ - pixel_x = -4; - pixel_y = 23 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"uHX" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"uHR" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "uIa" = ( /obj/structure/platform_decoration{ dir = 8 @@ -33530,32 +26524,9 @@ /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uIb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"uIl" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uIr" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"uIu" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"uIj" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/prison/greenfull/northwest, /area/fiorina/tumor/civres) "uIA" = ( /obj/structure/stairs/perspective{ @@ -33567,6 +26538,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) +"uID" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) "uIG" = ( /obj/structure/prop/structure_lattice{ dir = 4 @@ -33578,6 +26553,12 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/civres) +"uIO" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "uIS" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -33590,45 +26571,47 @@ }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"uJj" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"uJk" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"uJM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/maintenance) -"uKh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"uJi" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"uJN" = ( +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) "uKx" = ( /turf/closed/shuttle/ert, /area/fiorina/lz/near_lzI) +"uKV" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "uLd" = ( /obj/structure/foamed_metal, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"uLf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"uLg" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"uLi" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/oob) "uLr" = ( /obj/vehicle/powerloader, /obj/structure/platform{ @@ -33644,12 +26627,14 @@ /obj/structure/machinery/computer/station_alert, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"uLX" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +"uLN" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"uMk" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "uMq" = ( /obj/structure/machinery/light/small{ dir = 4; @@ -33662,28 +26647,13 @@ "uMw" = ( /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"uMH" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) +"uNg" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) "uNM" = ( /turf/closed/wall/prison, /area/fiorina/tumor/aux_engi) -"uNR" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"uNX" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) "uOb" = ( /obj/structure/platform_decoration{ dir = 8 @@ -33691,27 +26661,17 @@ /obj/item/stack/cable_coil, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uOR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/botany) -"uPg" = ( -/obj/item/circuitboard/mecha/gygax/targeting, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"uPz" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"uOB" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"uPi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) "uPA" = ( /obj/structure/platform{ dir = 1 @@ -33724,15 +26684,9 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"uPD" = ( -/obj/structure/closet{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) +"uPB" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/power_ring) "uQE" = ( /obj/item/stack/tile/plasteel{ pixel_x = 3; @@ -33740,90 +26694,41 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"uQF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"uRe" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"uRu" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/central_ring) "uRK" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/park) -"uRO" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, +"uRT" = ( +/turf/open/floor/prison/chapel_carpet/doubleside, /area/fiorina/station/chapel) -"uRX" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor/prison{ +"uSk" = ( +/obj/structure/machinery/light/double/blue{ dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"uRY" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"uSb" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" + pixel_y = 21 }, -/area/fiorina/station/central_ring) -"uSo" = ( -/obj/item/poster, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"uSu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "uSA" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/transit_hub) +"uSC" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "uSQ" = ( /obj/structure/reagent_dispensers/watertank{ layer = 2.6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/lz/near_lzII) -"uST" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) "uSY" = ( /obj/structure/platform{ dir = 8 @@ -33834,60 +26739,54 @@ /obj/vehicle/powerloader/ft, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"uTi" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) "uTk" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"uTp" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"uTz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets{ + pixel_x = 5; + pixel_y = 9 }, -/area/fiorina/station/research_cells) +/obj/item/storage/box/donkpockets, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "uTS" = ( /obj/item/stock_parts/micro_laser/ultra, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"uTX" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"uUT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/gold{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"uVa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/handset{ - pixel_y = -4 - }, -/obj/item/handset{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"uUk" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/tumor/ice_lab) +"uUs" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uUC" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) +"uUG" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison/green/north, +/area/fiorina/station/transit_hub) +"uUJ" = ( +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/item/reagent_container/food/snacks/xenoburger, +/obj/structure/closet/crate/freezer, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) +"uVi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 3.5; + pixel_y = 6 }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "uVn" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" @@ -33899,11 +26798,18 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"uVD" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +"uVO" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/station/medbay) +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "uVQ" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -33921,12 +26827,12 @@ /obj/item/trash/candy, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"uWg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) +"uWc" = ( +/turf/open/floor/prison/greenbluecorner, +/area/fiorina/station/botany) +"uWk" = ( +/turf/open/floor/prison/blue/southeast, +/area/fiorina/tumor/servers) "uWs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -33935,6 +26841,14 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) +"uWH" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"uWI" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkyellow2, +/area/fiorina/lz/near_lzI) "uWQ" = ( /obj/structure/platform{ dir = 8 @@ -33945,35 +26859,27 @@ }, /turf/open/gm/river/desert/deep, /area/fiorina/lz/near_lzII) -"uWS" = ( -/obj/item/ammo_casing{ - icon_state = "casing_8" - }, -/obj/structure/surface/table/reinforced/prison{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uXa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"uXc" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"uWU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"uWY" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"uXe" = ( +/obj/item/explosive/grenade/high_explosive/m15, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/panelscorched, +/area/fiorina/tumor/aux_engi) +"uXg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "uXm" = ( /obj/item/inflatable/door, /obj/item/inflatable/door, @@ -33981,23 +26887,6 @@ /obj/structure/surface/rack, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"uXn" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_3"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"uXu" = ( -/obj/item/stock_parts/matter_bin/super, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "uXw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/skills, @@ -34012,215 +26901,94 @@ "uXD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/ship) -"uXM" = ( +"uXL" = ( +/obj/effect/spawner/random/gun/pistol, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"uXS" = ( /obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"uXW" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" + dir = 4 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/darkyellow2/northeast, +/area/fiorina/station/flight_deck) +"uYr" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "uYx" = ( /obj/structure/prop/resin_prop{ icon_state = "coolanttank" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"uYR" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"uZe" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"uZn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"uZr" = ( -/obj/structure/prop/resin_prop{ - icon_state = "sheater0" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) +"uYX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) "uZA" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" }, /area/fiorina/tumor/ship) -"uZD" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "delivery_outlet"; - layer = 6; - name = "overhead ducting"; - pixel_y = 33 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"uZM" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) +"uZO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "uZX" = ( /obj/structure/curtain, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vah" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/handset{ - pixel_x = 6; - pixel_y = -15 - }, -/obj/item/handset{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"vaj" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"vaA" = ( +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/station/civres_blue) +"vaJ" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) "vaO" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/attachment, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vbd" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 +"vbb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16{ + current_rounds = 0 }, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"vbl" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"vbu" = ( +/obj/structure/holohoop{ + pixel_y = 25 }, +/turf/open/floor/prison/yellow, /area/fiorina/station/lowsec) -"vbe" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/central_ring) -"vbf" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/fiorina/maintenance) -"vbn" = ( -/obj/item/ammo_box/magazine/M16, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" +"vbx" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellow2/west, /area/fiorina/lz/near_lzI) -"vbt" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 - }, -/obj/item/storage/box/ids, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = 14; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"vbF" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"vbG" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/turf/open/floor/plating/prison, -/area/fiorina/maintenance) -"vbY" = ( -/obj/item/ammo_casing{ - dir = 6; - icon_state = "casing_5" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) "vcf" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" }, /area/fiorina/oob) -"vco" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"vcr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/mission_planning_system{ +"vcp" = ( +/obj/structure/closet{ density = 0; - desc = "Its a telephone, and a computer. Woah."; - name = "\improper funny telephone booth"; - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + pixel_y = 18 }, -/area/fiorina/station/disco) +/obj/item/clothing/gloves/combat, +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "vcy" = ( /obj/structure/platform_decoration{ dir = 8 @@ -34231,15 +26999,6 @@ /obj/item/stack/rods, /turf/open/space, /area/fiorina/oob) -"vdG" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "vdI" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -34250,77 +27009,56 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"vdZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/frame/firstaid_arm_assembly, -/obj/item/stack/nanopaste{ - pixel_x = 11; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) -"vea" = ( -/obj/effect/decal{ - icon = 'icons/obj/items/policetape.dmi'; - icon_state = "engineering_h"; - layer = 2.5; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"vee" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"vei" = ( -/turf/open/floor/prison{ - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +"vdN" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"vdQ" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/disco) +"vec" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/fiorina/station/botany) +"veg" = ( +/obj/structure/largecrate/supply/medicine/medivend, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vek" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/botany) "vem" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" }, /area/fiorina/lz/near_lzI) -"ven" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryomid" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"vep" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/medbay) -"veB" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "yellow" +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"veX" = ( +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/prison/damaged3, +/area/fiorina/station/security) +"vfi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/lowsec) -"veM" = ( -/obj/item/stock_parts/micro_laser/ultra, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"vfm" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) +"vfy" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "vfz" = ( /obj/item/storage/box/donkpockets, /obj/structure/surface/table/reinforced/prison, @@ -34330,12 +27068,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vfJ" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) "vfM" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" @@ -34355,65 +27087,62 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) -"vgu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/card/id/guest{ - pixel_x = -2; - pixel_y = 6 +"vfX" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/disco) +"vfZ" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/card/id/guest, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"vgb" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"vgi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/fiorina/station/park) +"vgo" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/fiorina/tumor/aux_engi) "vgP" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"vgS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ +"vgW" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"vhc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 1; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"vha" = ( -/obj/structure/closet/crate/miningcar{ - name = "\improper materials storage bin" - }, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/prison{ - icon_state = "greenblue" + pixel_y = 20 }, -/area/fiorina/station/botany) -"vhe" = ( -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "yellowfull" +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"vhq" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "vhB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/park) -"vhC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"vhI" = ( -/turf/open/gm/river{ - color = "#990000"; - name = "pool" - }, -/area/fiorina/station/park) -"viH" = ( -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) +"vih" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/civres_blue) +"viw" = ( +/turf/open/floor/prison/blue/northwest, +/area/fiorina/station/civres_blue) "viV" = ( /obj/structure/monorail{ dir = 5; @@ -34421,33 +27150,39 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) +"vjg" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"vjl" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/chapel) "vjq" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1" }, /area/fiorina/station/power_ring) -"vjz" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) +"vjy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vjG" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"vjH" = ( -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 +"vjM" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) "vjR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/prison, @@ -34456,55 +27191,40 @@ /obj/effect/alien/weeds/node, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"vky" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"vkC" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"vke" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/station/medbay) -"vkM" = ( -/obj/item/reagent_container/food/drinks/bottle/pwine, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkbrown2/southwest, +/area/fiorina/maintenance) +"vkB" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) +"vkD" = ( +/obj/item/frame/rack, +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/area/fiorina/tumor/civres) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "vkZ" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vli" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"vlm" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/prison, -/area/fiorina/station/security) -"vlt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"vlT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_tram) +"vle" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"vmh" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/fiorina/tumor/ice_lab) "vmj" = ( /obj/effect/landmark/nightmare{ insert_tag = "podholder" @@ -34513,36 +27233,69 @@ icon_state = "leftengine_1" }, /area/fiorina/station/medbay) -"vmr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"vmv" = ( +/obj/structure/barricade/plasteel{ + dir = 4 }, -/area/fiorina/station/medbay) -"vmH" = ( -/obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/almayer/plating/northeast, +/area/fiorina/tumor/ship) +"vmF" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/chapel) -"vmW" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/fiorina/tumor/aux_engi) +"vmL" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"vmP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"vnc" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 }, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) +"vnk" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vnl" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) "vnr" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/telecomm/lz1_cargo) +"vnz" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/lz/near_lzI) "voa" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_tram) +"voc" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/green/east, +/area/fiorina/station/chapel) "voq" = ( /obj/structure/machinery/computer/secure_data{ dir = 1 @@ -34550,13 +27303,6 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"voS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "vpk" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -34564,12 +27310,11 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"vpB" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) +"vpm" = ( +/obj/structure/bed/roller, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "vpJ" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -34586,59 +27331,40 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) -"vqg" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"vqi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/fiorina/station/lowsec) -"vqM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup, -/turf/open/floor/prison{ - icon_state = "blue" +"vqm" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, -/area/fiorina/station/power_ring) -"vqZ" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 }, -/area/fiorina/tumor/aux_engi) -"vrc" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"vqq" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"vqr" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/transit_hub) -"vrf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "redfull" +"vqt" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/fiorina/station/security) -"vro" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"vqK" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "vrp" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -34646,154 +27372,78 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/station/research_cells) -"vrw" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vrt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/fiorina/station/park) +/turf/open/floor/prison/blue/east, +/area/fiorina/station/power_ring) "vrF" = ( /obj/item/toy/crayon/green, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vrN" = ( -/obj/structure/monorail{ - name = "launch track" - }, -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" - }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) "vrT" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) -"vrX" = ( -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "whitepurplecorner" - }, -/area/fiorina/station/research_cells) -"vsc" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/station/civres_blue) -"vsq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" +"vrY" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/fiorina/station/telecomm/lz1_cargo) -"vsz" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"vsk" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/medbay) +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) "vsT" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vtf" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) "vtl" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/fiorina/station/park) -"vtn" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"vtG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"vtJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"vub" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "vuc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/central_ring) +"vue" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"vuq" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "vuE" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"vuW" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 11; - pixel_y = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vuO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 }, -/area/fiorina/station/power_ring) -"vvk" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 }, -/area/fiorina/station/research_cells) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "vvp" = ( /obj/item/tool/candle{ pixel_x = 5; @@ -34801,31 +27451,8 @@ }, /turf/open/floor/wood, /area/fiorina/station/chapel) -"vvM" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"vvX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"vwc" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +"vws" = ( +/turf/open/floor/prison/cell_stripe/west, /area/fiorina/station/park) "vwM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -34833,11 +27460,14 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vxp" = ( -/turf/open/floor/prison{ - icon_state = "yellow" +"vxj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/tumor/aux_engi) "vxr" = ( /obj/item/newspaper, /turf/open/floor/prison, @@ -34847,81 +27477,47 @@ icon_state = "stan_inner_w_2" }, /area/fiorina/tumor/ship) -"vxV" = ( -/turf/open/floor/prison{ - icon_state = "greenblue" +"vxD" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 8 }, -/area/fiorina/station/botany) +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "vyu" = ( /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"vyz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"vyA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"vyF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"vyB" = ( +/obj/item/reagent_container/food/drinks/sillycup, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"vyU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"vyO" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/station/telecomm/lz1_cargo) -"vyX" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ +/obj/structure/prop/structure_lattice{ dir = 4; - icon_state = "blue_plate" + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/botany) -"vza" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/spawner/random/gun/rifle, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"vyZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "vzh" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"vzk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "vzn" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -34933,55 +27529,77 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"vzB" = ( -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" +"vzw" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/civres_blue) +"vzN" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/station/telecomm/lz1_tram) +"vzS" = ( +/obj/item/stool{ + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/plating/prison, -/area/fiorina/oob) +/obj/structure/sign/poster{ + icon_state = "poster1"; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "vzU" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/fiorina/tumor/ship) -"vzZ" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) +"vAh" = ( +/obj/item/gift, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "vAi" = ( /obj/item/stack/sandbags_empty/half, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"vAZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"vBc" = ( -/obj/structure/surface/table/reinforced/prison{ - dir = 8; - flipped = 1 +"vAo" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/storage/bible/hefa, +/turf/open/floor/prison/whitepurple/southeast, +/area/fiorina/station/research_cells) +"vAs" = ( +/turf/open/floor/prison/panelscorched, +/area/fiorina/station/transit_hub) +"vAI" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) -"vBO" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"vBf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/oob) +"vBn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"vBC" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/area/fiorina/tumor/ice_lab) +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"vBF" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vBP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -34995,19 +27613,27 @@ }, /turf/open/floor/prison, /area/fiorina/station/medbay) -"vBV" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"vBZ" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"vCg" = ( +/obj/item/device/motiondetector, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"vCn" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/fiorina/station/medbay) -"vBY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"vCt" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/fiorina/station/civres_blue) "vCv" = ( /obj/structure/flora/pottedplant{ @@ -35016,91 +27642,60 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"vCT" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/fiorina/station/research_cells) -"vDc" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"vDj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/clothing/gloves/latex, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +"vCK" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/chapel) +"vDI" = ( +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/medbay) -"vDx" = ( -/obj/item/clothing/shoes/marine/upp_knife, -/turf/open/floor/prison, +"vDN" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) -"vDK" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "vDO" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vDR" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "plate" +"vDP" = ( +/obj/item/storage/fancy/candle_box, +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"vDW" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"vEf" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, -/area/fiorina/station/civres_blue) +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "vEi" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"vED" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) "vEF" = ( /obj/item/circuitboard/robot_module/janitor, /turf/open/floor/prison, /area/fiorina/station/disco) +"vEG" = ( +/obj/item/clothing/under/color/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "vEK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/power_ring) -"vEX" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +"vFd" = ( +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/security) "vFi" = ( /obj/structure/window_frame/prison, /obj/item/shard{ @@ -35108,16 +27703,9 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"vFr" = ( -/obj/structure/prop/structure_lattice{ - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/civres_blue) +"vFq" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "vFs" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -35125,13 +27713,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"vFF" = ( -/obj/item/trash/candy, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "vFQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -35146,6 +27727,20 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/security) +"vGg" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"vGk" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) +"vGs" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "vGv" = ( /obj/structure/barricade/metal/wired{ dir = 4 @@ -35153,43 +27748,13 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"vGO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"vGV" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"vHG" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) -"vHK" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +"vGG" = ( +/obj/item/clothing/head/soft/yellow, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"vHL" = ( +/turf/open/floor/prison/cell_stripe, /area/fiorina/station/park) -"vHR" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "vHU" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin{ @@ -35198,23 +27763,32 @@ }, /turf/open/floor/wood, /area/fiorina/station/security/wardens) -"vIF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"vHX" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"vIp" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/fiorina/tumor/civres) -"vII" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"vIt" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) +"vIy" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/west, +/area/fiorina/station/botany) +"vIX" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "vJh" = ( /obj/effect/spawner/random/sentry/midchance, /turf/open/floor/plating/prison, @@ -35230,18 +27804,11 @@ /obj/item/ammo_magazine/smg/mp5, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"vJq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/fiorina/tumor/ice_lab) -"vJD" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"vJu" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/fiorina/maintenance) "vJN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/electrical{ @@ -35250,44 +27817,51 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"vKj" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vJP" = ( +/obj/item/bodybag, +/turf/open/floor/prison/yellow/west, +/area/fiorina/station/lowsec) +"vKp" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"vKD" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/security) -"vKV" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/item/reagent_container/food/snacks/meat/human, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) +"vKN" = ( +/obj/structure/prop/structure_lattice{ + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, +/turf/open/floor/corsat/squares, /area/fiorina/station/civres_blue) +"vKS" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "vLH" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/fiorina/station/park) -"vLV" = ( -/obj/item/inflatable, +"vLK" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"vMb" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/reagent_container/food/drinks/golden_cup, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"vLQ" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/lz/near_lzI) +"vMg" = ( +/obj/item/device/t_scanner, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) "vMh" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -35295,36 +27869,51 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"vMk" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"vMC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/area/fiorina/tumor/fiberbush) +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) "vMK" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/power_ring) -"vMQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"vMS" = ( -/obj/structure/bed/chair{ - dir = 1 +"vMM" = ( +/obj/structure/monorail{ + name = "launch track" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/area/fiorina/station/power_ring) -"vMX" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"vMN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_2" }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/central_ring) +"vMO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) +"vMZ" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) +"vNn" = ( +/obj/structure/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "vNq" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/station/telecomm/lz1_cargo) @@ -35338,56 +27927,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) -"vNt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" - }, -/area/fiorina/station/chapel) -"vNx" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"vNF" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "greencorner" - }, -/area/fiorina/station/chapel) -"vNY" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) "vOj" = ( /obj/effect/landmark/corpsespawner/ua_riot, /turf/open/floor/prison, /area/fiorina/station/security) -"vOp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 +"vOk" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/head/that{ + pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/park) +/turf/open/floor/prison/sterile_white, +/area/fiorina/station/civres_blue) "vOz" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -35402,33 +27956,36 @@ }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/tumor/servers) -"vPa" = ( -/obj/item/tool/soap, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"vPk" = ( -/obj/structure/window/framed/prison, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) +"vPi" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ship) +"vPw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue/north, +/area/fiorina/station/power_ring) "vPA" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"vPM" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) +"vPJ" = ( +/obj/item/clothing/gloves/boxing/green, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) "vPR" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" }, /area/fiorina/tumor/ship) +"vPT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "vQr" = ( /obj/structure/barricade/sandbags{ dir = 4; @@ -35449,34 +28006,36 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"vRj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) +"vRh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) "vRA" = ( /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"vSk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/cups, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vRG" = ( +/turf/open/floor/prison/blue/north, +/area/fiorina/station/civres_blue) +"vSI" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir" }, +/obj/structure/bed/roller, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"vSU" = ( +/turf/open/floor/prison/blue/northwest, /area/fiorina/station/power_ring) -"vTl" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" - }, -/area/fiorina/station/disco) +"vSW" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"vTh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/orange, +/turf/open/floor/prison/floor_plate, +/area/fiorina/maintenance) "vTv" = ( /turf/closed/shuttle/elevator{ dir = 5 @@ -35497,6 +28056,10 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) +"vTS" = ( +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) "vTT" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -35507,12 +28070,18 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"vUa" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vTX" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/station/transit_hub) +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) "vUf" = ( /obj/structure/platform, /turf/open/floor/plating/prison, @@ -35530,34 +28099,24 @@ /obj/item/reagent_container/food/snacks/donut/normal, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"vUE" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/prison{ - icon_state = "redfull" +"vUJ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "vVi" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"vVu" = ( -/obj/structure/surface/rack, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"vVJ" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) +"vVo" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/lz/near_lzI) +"vVG" = ( +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) "vVR" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, @@ -35566,52 +28125,27 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"vWs" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/power_ring) -"vWE" = ( +"vWG" = ( /obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"vWI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/disco) -"vXi" = ( -/obj/item/storage/briefcase, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"vXr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"vXB" = ( -/obj/item/shard{ - icon_state = "large" + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"vXa" = ( +/obj/structure/bed/chair/comfy, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/fiberbush) +"vXu" = ( +/obj/item/stock_parts/micro_laser/ultra, +/turf/open/floor/prison/darkpurple2/southwest, +/area/fiorina/tumor/servers) +"vXw" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/whitepurple/north, +/area/fiorina/station/research_cells) "vXS" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -35622,52 +28156,12 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"vYw" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"vYA" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"vYE" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_1" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/central_ring) -"vYL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"vYM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"vYP" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"vYa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "vZc" = ( /obj/structure/disposalpipe/segment{ color = "#c4c4c4"; @@ -35683,29 +28177,25 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/servers) -"vZx" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"vZz" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) +"vZe" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"vZh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"vZm" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "vZD" = ( /obj/item/storage/box/donkpockets, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"vZU" = ( -/obj/item/paper/crumpled, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"vZR" = ( +/turf/open/floor/prison/whitepurple/west, +/area/fiorina/station/research_cells) "vZV" = ( /turf/closed/wall/strata_ice/jungle{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -35715,24 +28205,36 @@ "vZX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"war" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, +"wac" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"wad" = ( /obj/structure/platform_decoration{ - dir = 6 + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/botany) +"wak" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300 }, -/area/fiorina/station/park) -"waz" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 }, -/area/fiorina/station/disco) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/civres_blue) +"wao" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/central_ring) +"waJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) "waN" = ( /obj/structure/platform{ dir = 1 @@ -35745,13 +28247,6 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"waP" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/station/park) "waU" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, @@ -35762,28 +28257,22 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"wbp" = ( -/obj/item/inflatable, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"wby" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 +"wbx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 }, -/obj/structure/barricade/handrail{ - dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/space, -/area/fiorina/oob) +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "wbB" = ( /obj/structure/computerframe, /obj/structure/machinery/light/double/blue{ @@ -35803,12 +28292,13 @@ "wbI" = ( /turf/open/floor/wood, /area/fiorina/station/park) -"wcm" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "greenblue" +"wcd" = ( +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "wcP" = ( /obj/effect/landmark/queen_spawn, /turf/open/floor/plating/prison, @@ -35817,35 +28307,25 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wcX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) -"wdA" = ( -/obj/item/trash/used_stasis_bag, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzI) -"wdX" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +"wda" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, /area/fiorina/station/research_cells) +"wdu" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"wdD" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"web" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "wef" = ( /turf/open/floor/plating/prison, /area/fiorina/station/research_cells) -"wek" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) "wen" = ( /obj/item/prop/helmetgarb/spacejam_tickets{ desc = "Low security prisoners would smuggle in arcade tickets after visitations. The tickets act as a stand in for paper currency in the prison economy, they're backed by the cigarette standard, since one ticket nets one cigarette at the prize booth. The cigarettes also get smuggled back in."; @@ -35855,61 +28335,26 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"wew" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/fiorina/lz/near_lzI) -"weH" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"weK" = ( -/obj/structure/platform_decoration{ +"wey" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/station/park) -"weN" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"weQ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"weS" = ( -/obj/structure/machinery/processor, -/obj/effect/decal/cleanable/blood{ - pixel_y = 20 +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/station/chapel) +"weR" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, -/turf/open/floor/prison{ - icon_state = "blue_plate" +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/area/fiorina/station/botany) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"weU" = ( +/obj/structure/barricade/wooden, +/obj/item/device/flashlight/flare, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/telecomm/lz1_cargo) "weX" = ( /obj/structure/barricade/metal{ health = 250; @@ -35917,146 +28362,139 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wfi" = ( +"wfE" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) -"wfp" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"wfy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/tumor/civres) -"wfV" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) +"wfR" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/fiorina/station/telecomm/lz1_cargo) +"wfS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "wfY" = ( /obj/item/device/flashlight/flare/on, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"wgd" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) "wgi" = ( /obj/effect/landmark/nightmare{ insert_tag = "scavshipholder" }, /turf/open/space, /area/fiorina/oob) -"wgH" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) +"wgp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "whf" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/fiorina/station/civres_blue) +"who" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) "whp" = ( /obj/effect/spawner/random/tool, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) +"whq" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/lz/near_lzI) "whu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/tumor/civres) -"whL" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"whA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/fiorina/tumor/aux_engi) -"whR" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"whS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/chapel) +"whU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"whX" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "bluefull" +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7; + pixel_y = 22 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"wir" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"wiQ" = ( +"wiF" = ( +/obj/item/device/flashlight, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wjb" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"wjk" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"wjx" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 13 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wjA" = ( +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"wjF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellow2/southwest, +/area/fiorina/station/telecomm/lz1_tram) "wjH" = ( /obj/item/stack/barbed_wire, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) +"wjP" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/station/research_cells) +"wjQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "wkd" = ( /obj/structure/machinery/status_display, /turf/closed/wall/prison, /area/fiorina/station/medbay) -"wkp" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"wkh" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security/wardens) "wkD" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/station/central_ring) -"wkZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/station/disco) -"wlp" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) +"wkK" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/fiorina/station/telecomm/lz1_cargo) "wly" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/lz/near_lzII) @@ -36066,6 +28504,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"wlB" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "wlG" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, @@ -36075,33 +28517,32 @@ /obj/item/bedsheet/blue, /turf/open/floor/almayer, /area/fiorina/tumor/ship) -"wlR" = ( -/obj/item/bodybag, -/obj/item/bodybag{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wmb" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/whitegreen/north, /area/fiorina/station/medbay) "wmd" = ( /turf/closed/wall/r_wall/prison, /area/fiorina/tumor/fiberbush) -"wmp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/station/civres_blue) -"wmG" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) +"wmt" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkyellow2/east, +/area/fiorina/station/telecomm/lz1_cargo) +"wmX" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/tumor/servers) +"wnk" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"wnm" = ( +/turf/open/floor/prison/blue, +/area/fiorina/station/power_ring) "wnq" = ( /obj/item/tool/match, /turf/open/floor/plating/plating_catwalk/prison, @@ -36112,60 +28553,18 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wnz" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/lowsec) -"wnB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/fiorina/station/central_ring) -"wnW" = ( -/obj/structure/toilet{ - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 2; - pixel_y = 25 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"wot" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/chapel) -"wpf" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"wpp" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkyellow2" +"wny" = ( +/obj/item/storage/donut_box{ + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) -"wpu" = ( -/obj/item/tool/soap, -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/research_cells) +"wnG" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, +/area/fiorina/station/medbay) "wpD" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 @@ -36178,71 +28577,87 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/lowsec) -"wpW" = ( -/obj/structure/sign/kiddieplaque{ - desc = "It is a warning sign that describes the process by which fiberbush expands in humid environments, behaving similar to kudzu vines."; - name = "Fiberbush(tm) safety plaque"; - pixel_y = 29 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"wqx" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wqy" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"wqC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security/wardens) +"wqE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) "wqM" = ( /obj/structure/platform, /obj/structure/closet/radiation, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"wrQ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurplecorner" +"wrI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -5; + pixel_y = -6 }, -/area/fiorina/station/research_cells) +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/flight_deck) "wrR" = ( /turf/closed/wall/prison, /area/fiorina/station/botany) -"wsy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - indestructible = 1; - name = "launch bay door" +"wrZ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"wsv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 }, -/area/fiorina/oob) -"wsN" = ( -/obj/item/tool/surgery/cautery, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"wsU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" }, -/area/fiorina/station/lowsec) -"wsY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/margherita, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"wtb" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + icon_state = "lavendergrass_1" }, -/area/fiorina/station/medbay) -"wtx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_y = 11 +/turf/open/organic/grass/astroturf, +/area/fiorina/station/central_ring) +"wtS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/tumor/servers) +"wub" = ( +/obj/item/stool, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/civres_blue) +"wur" = ( +/obj/structure/tunnel, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/civres_blue) "wuA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/nailgun, @@ -36263,26 +28678,6 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"wuP" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"wuT" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) "wvf" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -36308,16 +28703,29 @@ /obj/structure/lattice, /turf/open/space/basic, /area/fiorina/oob) -"wvS" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +"wvx" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/bedsheet/ce{ + desc = "It crinkles, aggressively."; + name = "sterile wax sheet" }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/medbay) +"wvF" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, /area/fiorina/station/park) +"wvM" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"wvU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "wvY" = ( /obj/item/reagent_container/food/snacks/eat_bar, /obj/structure/machinery/light/double/blue{ @@ -36325,41 +28733,54 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"wwr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"wwH" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wwM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/fiorina/station/park) +"wxb" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/fiorina/station/lowsec) -"wwR" = ( -/obj/structure/largecrate/random/case, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"wxg" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/tumor/ice_lab) +"wxi" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 }, -/area/fiorina/station/research_cells) -"wwZ" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/fiorina/station/civres_blue) +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "wxj" = ( /obj/item/newspaper, /turf/open/floor/prison, /area/fiorina/station/civres_blue) +"wxl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tomatomeat{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/southeast, +/area/fiorina/station/power_ring) "wxX" = ( /obj/structure/machinery/computer/cameras{ dir = 8; @@ -36383,6 +28804,14 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) +"wyp" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"wys" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "wyP" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -36391,16 +28820,24 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) +"wyS" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/tumor/aux_engi) "wyT" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wyU" = ( -/obj/effect/decal/cleanable/blood/gibs/robot/up, -/turf/open/organic/grass{ - name = "astroturf" +"wzm" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/blue/northeast, +/area/fiorina/station/civres_blue) +"wzy" = ( +/obj/item/stock_parts/matter_bin/super, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "wzE" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/lowsec) @@ -36411,43 +28848,12 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"wAa" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"wAj" = ( -/obj/structure/machinery/shower{ - pixel_y = 13 - }, -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/lowsec) -"wAl" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) "wAn" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ dir = 1 }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"wAv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) "wAD" = ( /obj/item/shard{ icon_state = "large" @@ -36465,26 +28871,21 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"wAT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/trash/cigbutt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"wBr" = ( -/obj/structure/bed/chair{ - dir = 1; - layer = 2.7 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, +"wAY" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"wBz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/blue/east, +/area/fiorina/station/civres_blue) +"wBE" = ( +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"wBF" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/lowsec) "wBK" = ( /obj/item/stack/tile/plasteel, @@ -36494,101 +28895,62 @@ /obj/structure/largecrate/supply/supplies, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"wCA" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"wCV" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"wDF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"wDV" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"wEa" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) -"wEn" = ( -/obj/structure/barricade/handrail/type_b{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"wEQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "yellow" - }, -/area/fiorina/station/disco) -"wER" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" +"wCe" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/fiorina/oob) -"wEX" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"wCB" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"wDg" = ( +/obj/structure/machinery/shower{ pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/fiorina/tumor/aux_engi) -"wEY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/chapel) -"wFk" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/curtain/shower, +/obj/structure/window{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wDh" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/lz/near_lzI) -"wFo" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood, +/area/fiorina/station/security/wardens) +"wEf" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wEq" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/tumor/civres) -"wFD" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"wED" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/fiorina/station/park) +"wEH" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"wEN" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) +"wFq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/security) +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/lowsec) "wFE" = ( /obj/structure/bed/chair{ dir = 1 @@ -36604,6 +28966,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/park) +"wFL" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "wFU" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -36619,34 +28985,10 @@ }, /turf/open/floor/prison, /area/fiorina/station/central_ring) -"wGe" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "yellowfull" - }, -/area/fiorina/station/lowsec) "wGf" = ( /obj/item/stack/rods, /turf/open/floor/wood, /area/fiorina/station/park) -"wGm" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"wGD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) "wGM" = ( /obj/item/device/taperecorder{ pixel_x = 1; @@ -36655,12 +28997,29 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/fiorina/station/chapel) +"wGR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wHh" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/civres_blue) "wHl" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/park) +"wHm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + network = list("PRISON") + }, +/turf/open/floor/prison/redcorner/east, +/area/fiorina/station/power_ring) "wHq" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/plating/prison, @@ -36669,28 +29028,23 @@ /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/fiorina/station/security/wardens) -"wHx" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/lz/near_lzI) -"wHX" = ( -/obj/item/tool/lighter/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, -/area/fiorina/tumor/civres) -"wII" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 +"wHE" = ( +/obj/item/shard{ + icon_state = "large" }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"wIr" = ( +/obj/item/tool/soap, +/obj/structure/machinery/shower{ + dir = 8 }, -/area/fiorina/station/lowsec) +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"wIH" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) "wIJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -36705,41 +29059,19 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"wJa" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"wJd" = ( -/obj/structure/barricade/handrail, -/turf/open/organic/grass{ - name = "astroturf" +"wIT" = ( +/obj/item/stack/sheet/metal, +/obj/structure/barricade/handrail{ + dir = 4 }, +/turf/open/organic/grass/astroturf, /area/fiorina/station/research_cells) -"wJf" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"wJt" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"wJJ" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +"wJD" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/redcorner/west, +/area/fiorina/station/power_ring) "wJX" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/platform/kutjevo/smooth{ @@ -36752,6 +29084,18 @@ /obj/effect/spawner/random/gun/rifle/midchance, /turf/open/floor/wood, /area/fiorina/station/park) +"wKl" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"wKm" = ( +/obj/item/ammo_magazine/handful/shotgun/incendiary{ + unacidable = 1 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/tumor/aux_engi) "wKn" = ( /obj/structure/barricade/metal/wired{ health = 120; @@ -36759,238 +29103,163 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) +"wKs" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/research_cells) +"wKv" = ( +/obj/structure/closet/emcloset, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wKy" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "wKE" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"wKF" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"wLf" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) +"wLp" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/telecomm/lz1_cargo) +"wLv" = ( +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "wLA" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/security) -"wLI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) -"wLJ" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"wLN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/skills{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"wLF" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/station/medbay) -"wLP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"wLX" = ( -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) "wMi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"wMu" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "wMz" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"wMG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +"wMC" = ( +/obj/structure/platform_decoration, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"wMI" = ( -/obj/item/storage/box/gloves, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"wMP" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, +"wMH" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, /area/fiorina/station/civres_blue) -"wMQ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/fiorina/station/power_ring) -"wMR" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) -"wMS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +"wMZ" = ( +/obj/structure/bed/roller, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitepurple/north, /area/fiorina/station/research_cells) "wNi" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"wNr" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) -"wNw" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"wOc" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) +"wNn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/whitegreen/northeast, +/area/fiorina/station/medbay) "wOy" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/dexalin/skillless, /obj/effect/spawner/random/gun/special/midchance, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"wOD" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/fiorina/tumor/servers) +"wOz" = ( +/obj/structure/surface/rack, +/obj/item/key, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen/southwest, +/area/fiorina/station/medbay) "wOM" = ( /obj/item/tool/kitchen/knife, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"wOR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "greenblue" - }, -/area/fiorina/station/botany) -"wOS" = ( -/turf/open/floor/prison{ - icon_state = "redcorner" - }, -/area/fiorina/station/security) -"wOT" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) "wPz" = ( /turf/closed/shuttle/elevator, /area/fiorina/station/telecomm/lz1_cargo) -"wPF" = ( -/obj/item/trash/semki, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/power_ring) -"wPL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"wQh" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"wQn" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"wPT" = ( +/turf/open/floor/prison/platingdmg1, +/area/fiorina/oob) +"wPV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) "wQs" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/fiorina/station/park) +"wQv" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/research_cells) +"wQH" = ( +/turf/open/floor/prison/greenbluecorner/north, +/area/fiorina/station/botany) +"wQI" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/fiorina/station/medbay) "wQN" = ( /obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"wQO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "wQT" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/prison, /area/fiorina/maintenance) +"wQV" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) +"wRa" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/maintenance) "wRg" = ( /obj/item/stack/sheet/metal, /obj/structure/cable/heavyduty{ @@ -36998,42 +29267,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/servers) -"wRh" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) "wRn" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, /area/fiorina/station/park) -"wRo" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"wRv" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"wRG" = ( -/obj/structure/platform{ +"wRs" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/flight_deck) +"wRw" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"wRE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/skills{ + dir = 4 }, +/turf/open/floor/prison/bluefull, /area/fiorina/station/power_ring) "wRP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ @@ -37050,30 +29304,48 @@ }, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"wRZ" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"wSe" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/tumor/servers) +"wSk" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "wSm" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"wTo" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "bluefull" +"wSu" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"wSz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/prison/blue_plate/north, +/area/fiorina/station/botany) +"wSE" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"wSO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/fiorina/station/civres_blue) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"wSS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"wTb" = ( +/obj/item/trash/snack_bowl, +/turf/open/floor/prison/yellow/north, +/area/fiorina/station/lowsec) +"wTl" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"wTr" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/fiorina/station/security) "wTy" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -37081,88 +29353,73 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"wTz" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) -"wTO" = ( -/obj/structure/bed{ - icon_state = "abed" +"wTK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"wUp" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = 8; + pixel_y = 10 }, -/obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"wUr" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + layer = 2.6 }, -/area/fiorina/station/research_cells) -"wTV" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) +"wUO" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/station/chapel) +"wUP" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"wUA" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "green" - }, -/area/fiorina/tumor/aux_engi) -"wUN" = ( -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"wVu" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" + dir = 8 }, +/turf/open/floor/prison/darkbrown2/north, +/area/fiorina/station/park) +"wVf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"wVZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"wVK" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/fiorina/tumor/servers) -"wVL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"wWf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 +"wWo" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + indestructible = 1; + name = "launch bay door" }, -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/monorail{ + name = "launch track" }, -/area/fiorina/station/flight_deck) +/turf/open/floor/plating/prison, +/area/fiorina/oob) +"wWq" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/darkyellowfull2/east, +/area/fiorina/station/telecomm/lz1_tram) "wWs" = ( /turf/open/floor/greengrid, /area/fiorina/station/security) +"wWu" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/fiorina/station/power_ring) "wWF" = ( /obj/item/frame/rack, /turf/open/floor/plating/prison, /area/fiorina/station/disco) +"wWI" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/tumor/ice_lab) "wWT" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/plating/plating_catwalk/prison, @@ -37176,163 +29433,120 @@ }, /turf/open/floor/almayer_hull, /area/fiorina/station/medbay) -"wXf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"wXi" = ( +/obj/structure/machinery/gibber, +/obj/effect/decal/cleanable/blood{ + pixel_x = -6; + pixel_y = 4 }, -/area/fiorina/station/flight_deck) -"wXP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/turf/open/floor/prison/blue_plate, +/area/fiorina/station/botany) +"wXE" = ( +/obj/item/trash/used_stasis_bag{ + desc = "Wow, instant sand. They really have everything in space."; + name = "Insta-Sand! bag" }, -/area/fiorina/tumor/servers) -"wYx" = ( -/obj/item/storage/box/flashbangs, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/green/east, +/area/fiorina/tumor/civres) +"wXJ" = ( +/turf/open/floor/prison/whitepurplecorner/west, +/area/fiorina/station/research_cells) +"wYq" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/obj/item/trash/used_stasis_bag, +/turf/open/floor/prison/whitegreen/northwest, /area/fiorina/station/medbay) -"wYE" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzII) -"wYG" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"wZn" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/prop/helmetgarb/riot_shield, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security) -"wZo" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/civres_blue) +"wYB" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) "wZv" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, /area/fiorina/station/park) -"wZE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) "wZN" = ( /obj/item/reagent_container/food/drinks/bottle/melonliquor, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"xaK" = ( -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"xat" = ( +/turf/open/floor/corsat/squares, +/area/fiorina/station/medbay) +"xbH" = ( +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/prison/greenblue/west, +/area/fiorina/station/botany) +"xbP" = ( +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/prison/blue/east, /area/fiorina/station/power_ring) -"xaS" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/tumor/servers) -"xbq" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) -"xbu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/prize/honk{ - anchored = 1; - layer = 2.9; - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/barricade/handrail/type_b, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"xbB" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) -"xbQ" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, -/area/fiorina/station/civres_blue) -"xca" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg2" - }, -/area/fiorina/station/security) -"xcf" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"xck" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk/prison, -/area/fiorina/station/park) -"xcJ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xbT" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/blood/gibs/robot/limb, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/research_cells) +"xch" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/whitepurple/northwest, +/area/fiorina/oob) +"xck" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/station/park) +"xcp" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/lowsec) +"xcQ" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowcorners2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"xcU" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/area/fiorina/station/power_ring) -"xdy" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xdi" = ( +/turf/open/floor/prison/whitegreencorner, +/area/fiorina/tumor/ice_lab) +"xds" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/area/fiorina/oob) +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) "xdE" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz1_tram) -"xec" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"xdI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"xdO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xdV" = ( +/obj/item/weapon/harpoon, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/fiorina/station/research_cells) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) +"xdY" = ( +/obj/structure/closet/wardrobe/orange, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"xea" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) "xed" = ( /obj/structure/window/reinforced{ dir = 4 @@ -37344,31 +29558,30 @@ /obj/structure/machinery/computer/secure_data, /turf/open/floor/prison, /area/fiorina/station/security) -"xeh" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar{ - pixel_x = 5; - pixel_y = -5 +"xej" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xek" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/chapel_carpet/doubleside, +/area/fiorina/station/chapel) +"xev" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, +/obj/item/newspaper, +/obj/item/bedsheet/green, +/turf/open/floor/prison/whitegreen/east, /area/fiorina/station/medbay) "xew" = ( /turf/closed/shuttle/ert{ icon_state = "stan_leftengine" }, /area/fiorina/lz/near_lzI) -"xeD" = ( -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) "xeO" = ( /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) @@ -37384,91 +29597,50 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzI) -"xfq" = ( -/obj/effect/alien/weeds/node, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +"xfg" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/ice_lab) -"xfA" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/plate, +/area/fiorina/station/civres_blue) +"xfn" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"xfG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"xfR" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" + dir = 4 }, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) +"xfX" = ( +/turf/open/floor/prison/darkpurple2/southwest, /area/fiorina/tumor/servers) -"xfV" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +"xgu" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/fiberbush) +"xgv" = ( +/turf/open/floor/prison/blue_plate/west, /area/fiorina/station/botany) -"xgn" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/fiorina/station/medbay) -"xgr" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) -"xgx" = ( -/obj/structure/machinery/defenses/tesla_coil{ - faction_group = list("USCM") - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) "xgF" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xhc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) -"xhY" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xgZ" = ( +/turf/open/floor/prison/yellow/southeast, +/area/fiorina/station/lowsec) +"xhH" = ( +/obj/structure/platform{ + dir = 8 }, -/area/fiorina/station/power_ring) -"xii" = ( -/obj/structure/tunnel, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, -/area/fiorina/tumor/fiberbush) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xiE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) "xiF" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double/blue{ @@ -37483,82 +29655,59 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) +"xjg" = ( +/turf/open/floor/prison/kitchen, +/area/fiorina/station/lowsec) "xjm" = ( /obj/structure/computerframe, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"xjv" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +"xjp" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/lowsec) +"xjI" = ( +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4 }, -/area/fiorina/station/power_ring) -"xjw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) +"xjP" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/lz/near_lzI) -"xjK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"xjW" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) +"xjT" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/fiorina/station/flight_deck) "xkv" = ( /turf/closed/wall/prison, /area/fiorina/station/telecomm/lz1_tram) -"xkC" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret/dropship{ +"xkM" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/fiorina/station/central_ring) -"xkG" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"xkP" = ( -/obj/item/tool/mop, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xli" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) "xlp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/fiorina/station/research_cells) -"xlq" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) +"xlP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/prison, +/area/fiorina/maintenance) "xlZ" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/pillbottles, @@ -37569,38 +29718,23 @@ icon_state = "stan27" }, /area/fiorina/oob) -"xmg" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) "xmj" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green, /turf/open/floor/carpet, /area/fiorina/station/security/wardens) -"xmt" = ( -/obj/structure/closet/basketball, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"xmJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkredfull2, /area/fiorina/station/research_cells) -"xmH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "green" - }, -/area/fiorina/tumor/aux_engi) -"xmM" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellow2" +"xmP" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/fiorina/lz/near_lzI) +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) "xmX" = ( /obj/structure/cargo_container/grant/right{ health = 5000; @@ -37612,12 +29746,6 @@ /obj/item/stack/tile/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) -"xng" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/fiorina/station/flight_deck) "xno" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/prison, @@ -37629,57 +29757,48 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"xnq" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +"xnw" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, +/turf/open/floor/corsat/squares, /area/fiorina/station/telecomm/lz1_cargo) -"xns" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/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/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"xnA" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) "xnE" = ( /obj/structure/largecrate/random/case/small, /obj/item/key/cargo_train, /turf/open/floor/prison, /area/fiorina/tumor/aux_engi) -"xnK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"xnH" = ( +/obj/structure/prop/invuln{ + desc = "Floating cells are reserved for highly dangerous criminals. Whoever is out there is probably best left out there."; + icon = 'icons/obj/structures/doors/celldoor.dmi'; + icon_state = "door_closed"; + layer = 2.5; + name = "cell door" }, -/area/fiorina/station/medbay) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/servers) +"xnJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) "xnM" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xnN" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/prison, -/area/fiorina/lz/near_lzII) +"xnP" = ( +/obj/effect/spawner/random/gun/smg, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) "xnR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/cups, @@ -37690,12 +29809,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/security) -"xnS" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/station/park) "xnU" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/prison, @@ -37706,104 +29819,105 @@ }, /turf/open/floor/prison, /area/fiorina/station/flight_deck) -"xog" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" +"xnY" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/medbay) +"xod" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access_txt = "100" }, +/obj/item/alienjar, +/turf/open/floor/corsat/squares, /area/fiorina/station/medbay) "xoi" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xoB" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"xoF" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"xoC" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" }, -/area/fiorina/station/power_ring) -"xoK" = ( -/obj/structure/closet, -/obj/item/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/item/weapon/chainofcommand, -/turf/open/floor/wood, -/area/fiorina/station/security/wardens) -"xoQ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/station/medbay) +"xpa" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/tumor/civres) -"xqf" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"xpu" = ( +/obj/structure/girder, +/turf/open/floor/prison/yellow, +/area/fiorina/station/lowsec) +"xpy" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xpA" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/fiorina/tumor/aux_engi) -"xqh" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_2" +/obj/item/tool/pickaxe, +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) +"xpH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xqb" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/fiorina/station/central_ring) -"xqj" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/disco) +"xqi" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/aux_engi) +"xqk" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 6 }, -/area/fiorina/station/research_cells) +/obj/structure/barricade/handrail/type_b{ + dir = 8; + layer = 3.5 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 1; + health = 25000; + layer = 2.9; + pixel_y = 17 + }, +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) +"xqm" = ( +/turf/open/floor/prison/bluecorner/east, +/area/fiorina/station/chapel) +"xqu" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzI) "xqD" = ( /obj/item/explosive/grenade/high_explosive/frag, /turf/open/floor/prison, /area/fiorina/station/security) -"xqG" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greencorner" - }, -/area/fiorina/station/chapel) -"xri" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) "xrn" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/gun/pistol/lowchance, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xrs" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/fiorina/station/transit_hub) "xrG" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap" @@ -37817,33 +29931,26 @@ }, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xrJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"xrT" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ship) -"xrU" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xrO" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"xrQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/fiorina/station/transit_hub) -"xsa" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/handset{ + pixel_y = -4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "redcorner" +/obj/item/handset{ + pixel_x = 7; + pixel_y = 10 }, -/area/fiorina/station/power_ring) +/obj/item/tool/pen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "xsg" = ( /obj/item/trash/pistachios, /obj/structure/machinery/light/double/blue{ @@ -37853,14 +29960,37 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) +"xso" = ( +/turf/open/floor/prison/floorscorched1, +/area/fiorina/station/security) "xst" = ( /obj/structure/platform, /turf/open/floor/prison/chapel_carpet, /area/fiorina/station/chapel) +"xsK" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xtc" = ( +/turf/open/floor/prison/platingdmg3, +/area/fiorina/station/security) "xte" = ( /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk/prison, /area/fiorina/station/telecomm/lz1_tram) +"xtB" = ( +/obj/structure/barricade/handrail/type_b{ + dir = 4; + layer = 3.5 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "delivery_outlet"; + layer = 6; + name = "overhead ducting"; + pixel_y = 33 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/ice_lab) "xtP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -37875,61 +30005,40 @@ }, /turf/open/space, /area/fiorina/oob) -"xub" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/park) -"xup" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"xuw" = ( -/obj/item/stool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"xuH" = ( -/obj/item/ammo_casing{ - icon_state = "casing_7_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"xvs" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/research_cells) -"xvt" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"xtY" = ( +/obj/item/storage/briefcase, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"xuz" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison/floor_marked/west, +/area/fiorina/tumor/servers) +"xuG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"xuJ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"xuU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/tumor/servers) +"xvd" = ( +/turf/open/floor/prison/whitegreen/west, +/area/fiorina/oob) +"xvx" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "xvB" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/access{ name = "greenhouse airlock" }, /turf/open/floor/plating/prison, /area/fiorina/station/transit_hub) -"xvD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/ricepudding, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/servers) "xvI" = ( /obj/structure/disposalpipe/segment{ icon_state = "delivery_outlet"; @@ -37940,31 +30049,28 @@ /obj/item/trash/eat, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) -"xvR" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"xvP" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/tumor/civres) -"xwi" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/prison/greenblue/east, +/area/fiorina/station/botany) +"xwv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" }, +/turf/open/floor/prison/whitegreen, /area/fiorina/station/medbay) -"xwt" = ( -/obj/structure/bed/chair/comfy, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +"xwz" = ( +/obj/structure/platform{ + dir = 1 }, -/area/fiorina/tumor/fiberbush) +/obj/effect/decal/medical_decals{ + icon_state = "cryomid" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "xwA" = ( /obj/item/ammo_casing{ icon_state = "casing_6_1" @@ -37979,31 +30085,18 @@ /obj/item/tool/weldingtool, /turf/open/floor/prison, /area/fiorina/station/civres_blue) -"xxh" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/fiorina/tumor/aux_engi) +"xwM" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/station/park) +"xxA" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) "xxD" = ( /turf/open/floor/wood, /area/fiorina/station/civres_blue) -"xxE" = ( -/obj/item/stack/rods/plasteel, -/turf/open/floor/prison{ - icon_state = "damaged3" - }, -/area/fiorina/station/security) -"xxP" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - icon_state = "lavendergrass_2" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/station/civres_blue) "xxX" = ( /obj/effect/decal/cleanable/blood/splatter{ icon_state = "gib4" @@ -38017,21 +30110,16 @@ }, /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"xyy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/barricade/handrail{ +"xyn" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzI) +"xyx" = ( +/obj/structure/prop/souto_land/streamer{ dir = 1; - icon_state = "hr_kutjevo"; - name = "solar lattice" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 + pixel_y = 24 }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/fiorina/oob) +/turf/open/floor/prison/darkbrown2/west, +/area/fiorina/station/park) "xyK" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -38042,20 +30130,20 @@ }, /turf/open/floor/prison, /area/fiorina/station/power_ring) -"xyR" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/prison{ - dir = 8; - icon_state = "yellow" +"xyW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, -/area/fiorina/station/lowsec) -"xzb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, -/area/fiorina/station/medbay) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) "xzj" = ( /turf/open/floor/carpet, /area/fiorina/tumor/civres) @@ -38063,65 +30151,34 @@ /obj/item/prop/helmetgarb/gunoil, /turf/open/floor/prison, /area/fiorina/maintenance) -"xzs" = ( -/obj/structure/machinery/space_heater, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"xzI" = ( -/obj/item/tool/warning_cone, -/obj/structure/barricade/metal{ - dir = 8; - health = 150; - icon_state = "metal_2" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"xAi" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "xAl" = ( /obj/structure/cargo_container/grant/right{ desc = "A huge industrial shipping container. You're not sure how it got here." }, -/turf/open/space, -/area/fiorina/oob) -"xAs" = ( -/obj/item/device/reagent_scanner, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/fiorina/tumor/fiberbush) -"xAw" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "sterile_white" - }, -/area/fiorina/station/lowsec) -"xAR" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/space, +/area/fiorina/oob) +"xAm" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkpurplefull2, +/area/fiorina/station/research_cells) +"xAq" = ( +/turf/open/floor/prison/bluecorner/north, +/area/fiorina/station/power_ring) +"xAF" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xAK" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xAW" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/area/fiorina/station/park) +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/lowsec) "xBl" = ( /obj/structure/surface/table/woodentable, /obj/item/circuitboard/apc, @@ -38136,17 +30193,14 @@ }, /turf/open/floor/carpet, /area/fiorina/station/civres_blue) +"xBn" = ( +/turf/open/floor/prison/floorscorched2, +/area/fiorina/station/civres_blue) "xBv" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"xBI" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/fiorina/lz/near_lzII) "xBK" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/flora/pottedplant{ @@ -38156,79 +30210,16 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"xBR" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "redfull" - }, -/area/fiorina/station/security/wardens) -"xBT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security/wardens) "xCa" = ( /obj/item/toy/crayon/rainbow, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"xCm" = ( -/obj/structure/barricade/sandbags{ - icon_state = "sandbag_0"; - pixel_y = -14 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) -"xCo" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - color = "#c4c4c4"; - dir = 4; - layer = 6; - name = "overhead pipe"; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"xCs" = ( -/obj/effect/decal/medical_decals{ - icon_state = "cryocell1decal" - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) -"xCy" = ( -/obj/item/paper/prison_station/inmate_handbook, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/station/research_cells) -"xCW" = ( -/obj/structure/grille, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"xCv" = ( +/obj/structure/machinery/shower{ + pixel_y = 13 }, +/turf/open/floor/prison/kitchen, /area/fiorina/station/research_cells) -"xDe" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "green" - }, -/area/fiorina/station/chapel) "xDg" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, @@ -38252,21 +30243,51 @@ }, /turf/open/floor/prison, /area/fiorina/station/botany) -"xDQ" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" +"xDI" = ( +/obj/item/ammo_casing{ + icon_state = "casing_6" }, -/area/fiorina/station/security) -"xEa" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/clothing/accessory/storage/holster, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/lowsec) +"xDR" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/yellow/northeast, +/area/fiorina/station/lowsec) +"xDX" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"xEc" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_v" + }, +/turf/open/floor/prison/darkyellow2/north, +/area/fiorina/station/telecomm/lz1_cargo) +"xEj" = ( +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "redfull" +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 5 }, -/area/fiorina/station/security) +/obj/item/tool/warning_cone{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) +"xEA" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xEB" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/station/park) "xEE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -38279,6 +30300,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) +"xEF" = ( +/obj/item/tool/lighter/random, +/turf/open/floor/prison/kitchen/southwest, +/area/fiorina/tumor/civres) "xFe" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -38290,18 +30315,21 @@ }, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xFf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"xFk" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrownfull2, /area/fiorina/tumor/aux_engi) -"xFx" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "green" +"xFA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/area/fiorina/tumor/civres) +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) "xFB" = ( /obj/structure/platform, /turf/open/floor/prison, @@ -38315,54 +30343,36 @@ /obj/structure/window/framed/prison/reinforced, /turf/open/floor/plating/prison, /area/fiorina/station/security) -"xGY" = ( -/obj/structure/bed/chair{ - dir = 4 +"xGH" = ( +/obj/structure/machinery/computer/emails{ + pixel_y = 6 }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/park) +"xGV" = ( +/obj/item/stack/sheet/metal{ + amount = 5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean_marked" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/telecomm/lz1_cargo) +"xGX" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/fiorina/station/medbay) -"xHH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/platform_decoration{ + dir = 6 }, -/area/fiorina/maintenance) +/obj/structure/closet/emcloset, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xHl" = ( +/turf/open/organic/grass/astroturf, +/area/fiorina/station/park) "xHV" = ( /turf/closed/wall/mineral/bone_resin, /area/fiorina/tumor/civres) -"xHY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) -"xIb" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.5 - }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/ice_lab) -"xIg" = ( -/obj/structure/largecrate/supply/medicine/medivend, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "xIh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ @@ -38372,42 +30382,45 @@ }, /turf/open/floor/wood, /area/fiorina/station/park) -"xIo" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) +"xIm" = ( +/obj/item/stool, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/power_ring) "xIx" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/prison, /area/fiorina/station/chapel) -"xJg" = ( -/obj/structure/platform{ - dir = 4; - layer = 2 +"xIU" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/disco) +"xJj" = ( +/obj/item/trash/semki, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"xJn" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"xJp" = ( +/obj/structure/barricade/handrail/type_b{ + layer = 3.4 }, -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 +/obj/structure/barricade/handrail/type_b{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/fiorina/tumor/ice_lab) "xJw" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/civres_blue) -"xKf" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/fiorina/station/civres_blue) +"xJV" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/fiorina/maintenance) "xKj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, @@ -38415,30 +30428,21 @@ "xKX" = ( /turf/open/floor/plating/prison, /area/fiorina/station/disco) -"xLa" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/oob) "xLi" = ( /turf/closed/wall/prison, /area/fiorina/tumor/ice_lab) -"xLI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xLl" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/greenfull/east, +/area/fiorina/tumor/civres) +"xLu" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/turf/open/floor/prison/floor_plate, /area/fiorina/station/power_ring) -"xLP" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) "xLQ" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, @@ -38448,40 +30452,33 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"xMe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xLT" = ( +/obj/structure/inflatable/popped, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/tumor/civres) -"xMg" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" +/turf/open/floor/prison/whitegreen/north, +/area/fiorina/station/medbay) +"xMk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xMv" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/whitegreen/west, /area/fiorina/tumor/ice_lab) -"xMs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/power_ring) -"xMR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +"xMz" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/darkpurplefull2, /area/fiorina/station/research_cells) -"xMT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "bluecorner" - }, -/area/fiorina/station/power_ring) +"xMU" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkpurple2, +/area/fiorina/tumor/servers) "xMW" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -38496,18 +30493,14 @@ }, /turf/open/space, /area/fiorina/oob) -"xNg" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/turf/open/floor/prison/chapel_carpet{ - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) "xNm" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison, /area/fiorina/station/security) +"xNs" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/maintenance) "xNQ" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -38518,26 +30511,6 @@ }, /turf/open/floor/prison, /area/fiorina/station/disco) -"xOa" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"xOE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/fiorina/tumor/ship) -"xOI" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/flight_deck) "xOQ" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -38545,69 +30518,46 @@ }, /turf/open/floor/prison, /area/fiorina/lz/near_lzII) -"xOV" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"xPF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/fiorina/station/chapel) +"xPu" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"xPE" = ( +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/prison/whitegreen/east, +/area/fiorina/station/medbay) "xPG" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/prison, /area/fiorina/maintenance) -"xPO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 1; - icon_state = "yellow" - }, -/area/fiorina/station/lowsec) -"xPX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/transit_hub) -"xQb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5; - pixel_y = 2 +"xPH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 2.8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/barricade/handrail/type_b, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/flight_deck) +"xPS" = ( +/obj/structure/surface/table/reinforced/prison{ + dir = 8; + flipped = 1 }, -/area/fiorina/tumor/ice_lab) -"xQs" = ( -/obj/item/reagent_container/food/drinks/coffee{ - name = "\improper paper cup" +/obj/item/storage/box/ids, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = 14; + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"xPZ" = ( +/obj/structure/closet/crate/miningcar{ + name = "\improper materials storage bin" }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/greenblue, +/area/fiorina/station/botany) "xQC" = ( /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, @@ -38617,86 +30567,81 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/prison, /area/fiorina/station/lowsec) -"xRg" = ( -/obj/item/trash/popcorn, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/fiorina/station/power_ring) -"xRh" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, -/area/fiorina/tumor/ice_lab) -"xSd" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +"xQL" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/fiorina/station/civres_blue) -"xSg" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison/whitepurple/southwest, +/area/fiorina/station/research_cells) +"xQO" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/area/fiorina/tumor/civres) -"xSB" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) +"xQT" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/fiorina/station/transit_hub) -"xTa" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xRp" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/station/medbay) +"xRN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/surgicaldrill, +/turf/open/floor/prison/yellowcorner, +/area/fiorina/station/lowsec) +"xSc" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenblue" + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/botany) -"xTe" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) +"xSj" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, -/area/fiorina/station/power_ring) -"xTi" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/transit_hub) +"xSp" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/transit_hub) +"xSV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/medbay) +"xTp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/green/west, +/area/fiorina/tumor/civres) +"xTv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/prop/souto_land/pole{ +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/research_cells) +"xTH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 1 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/fiorina/station/park) -"xTy" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/security) +/turf/open/floor/prison/sterile_white/southwest, +/area/fiorina/tumor/ice_lab) "xUi" = ( /obj/structure/surface/rack, /obj/item/device/camera, @@ -38706,162 +30651,104 @@ /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xUq" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"xUp" = ( +/turf/open/floor/prison/cell_stripe/east, /area/fiorina/station/medbay) -"xUt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xUA" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/area/fiorina/station/civres_blue) -"xUz" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/area/fiorina/station/power_ring) +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) "xVh" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/station/transit_hub) -"xVD" = ( -/obj/structure/prop/resin_prop{ - icon_state = "rack" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/aux_engi) -"xVK" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 - }, -/obj/structure/barricade/handrail/type_b{ - layer = 3.5 - }, -/turf/open/organic/grass{ - name = "astroturf" - }, -/area/fiorina/station/park) -"xVP" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"xVR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - pixel_y = 32 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" +"xVS" = ( +/obj/structure/platform_decoration, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/whitegreen, +/area/fiorina/tumor/ice_lab) "xWc" = ( /obj/item/clothing/shoes/dress, /turf/open/space, /area/fiorina/oob) -"xWp" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/tumor/ice_lab) -"xWH" = ( -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_y = 4 +"xWf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/obj/item/clothing/gloves/latex, +/turf/open/floor/prison/redfull, /area/fiorina/station/medbay) -"xWN" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xWg" = ( +/obj/effect/decal{ + icon = 'icons/obj/items/policetape.dmi'; + icon_state = "engineering_h"; + layer = 2.5; + pixel_y = -11 }, -/area/fiorina/station/civres_blue) -"xXw" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" +/obj/item/stack/sheet/metal{ + amount = 5 }, -/area/fiorina/station/central_ring) +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"xWz" = ( +/obj/item/device/flashlight/flare/on, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/tumor/ice_lab) +"xWC" = ( +/obj/structure/disposalpipe/segment{ + color = "#c4c4c4"; + dir = 4; + layer = 6; + name = "overhead pipe"; + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/tumor/civres) +"xXJ" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/fiorina/tumor/ship) "xYg" = ( /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating/prison, /area/fiorina/lz/near_lzII) -"xYA" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue_plate" - }, -/area/fiorina/station/botany) -"xYB" = ( +"xYm" = ( +/obj/item/pamphlet/skill/powerloader, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = -11 - }, -/obj/item/reagent_container/food/snacks/doughslice, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/fiorina/station/flight_deck) -"xYY" = ( -/obj/item/stool, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "bluefull" - }, -/area/fiorina/station/civres_blue) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "xZb" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/fiorina/station/park) -"xZk" = ( -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"xZo" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "A ticket to Souto Man's raffle!"; - name = "\improper Souto Raffle Ticket"; - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/fiorina/station/chapel) +"xZp" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xZC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/prison/blue_plate/east, +/area/fiorina/station/botany) "xZD" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -38884,29 +30771,27 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/ice_lab) +"yay" = ( +/turf/open/floor/prison/yellow/southwest, +/area/fiorina/station/central_ring) "yaz" = ( /obj/structure/platform, /obj/structure/closet/firecloset/full, /obj/item/paper/prison_station/inmate_handbook, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"yaC" = ( -/obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/tumor/aux_engi) "yaJ" = ( /obj/structure/machinery/vending/sovietsoda, /turf/open/floor/plating/prison, /area/fiorina/station/medbay) -"yaU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"yaM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/area/fiorina/tumor/aux_engi) +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/bluefull, +/area/fiorina/station/power_ring) "yaY" = ( /obj/item/stack/sheet/metal, /turf/open/space, @@ -38923,6 +30808,16 @@ /obj/item/stack/rods/plasteel, /turf/open/floor/plating/prison, /area/fiorina/station/civres_blue) +"ybi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) "ybj" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall/prison_unmeltable, @@ -38931,139 +30826,128 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ybs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/central_ring) -"ybR" = ( -/obj/item/stack/sheet/metal{ - amount = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) "ybU" = ( /obj/structure/prop/resin_prop{ icon_state = "sheater0" }, /turf/open/floor/plating/prison, /area/fiorina/station/park) -"ycd" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/fiorina/maintenance) -"ycg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) "ycj" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison, /area/fiorina/lz/near_lzI) -"ycn" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/fiorina/tumor/aux_engi) +"yct" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/fiorina/station/botany) +"ycu" = ( +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/central_ring) "ycC" = ( /turf/open/floor/plating/prison, /area/fiorina/station/chapel) +"ycG" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/fiorina/station/medbay) "ycK" = ( /obj/item/storage/pouch/radio, /turf/open/floor/plating/prison, /area/fiorina/tumor/fiberbush) -"ycN" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison{ - icon_state = "bluefull" +"ycM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/power_ring) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/disco) "ycX" = ( /turf/open/floor/prison, /area/fiorina/station/telecomm/lz1_cargo) -"ydk" = ( +"ydh" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/yellowfull, +/area/fiorina/station/disco) +"ydA" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/prison/darkyellow2/west, +/area/fiorina/station/flight_deck) +"ydK" = ( +/turf/open/floor/prison/yellow/northwest, +/area/fiorina/station/central_ring) +"ydQ" = ( +/obj/effect/alien/weeds/node, +/turf/open/floor/prison/darkbrown2, +/area/fiorina/tumor/aux_engi) +"ydW" = ( +/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"yed" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/fiorina/station/chapel) -"ydX" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/central_ring) +"yen" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -3 }, -/area/fiorina/station/telecomm/lz1_tram) -"ydY" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) +"yeC" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/fiorina/maintenance) +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"yeQ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) +"yfr" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkyellow2/southeast, +/area/fiorina/lz/near_lzI) "yft" = ( /obj/item/clothing/under/color/orange, /turf/open/floor/prison, /area/fiorina/station/security) -"yfB" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal1" - }, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"yfC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/lz/near_lzII) +"yfu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/floor_plate/southwest, +/area/fiorina/station/disco) +"yfx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/blue/west, +/area/fiorina/station/civres_blue) "yfE" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/prison, /area/fiorina/station/power_ring) -"yfH" = ( +"yfK" = ( +/obj/structure/platform{ + dir = 4 + }, /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, -/area/fiorina/station/civres_blue) -"yge" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/obj/structure/barricade/handrail/type_b{ - dir = 8; - layer = 3.5 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/organic/grass{ - name = "astroturf" + pixel_y = 13 }, -/area/fiorina/station/park) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/power_ring) "ygv" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/prison, @@ -39082,61 +30966,39 @@ }, /turf/open/floor/plating/prison, /area/fiorina/oob) -"ygH" = ( -/obj/item/ammo_casing{ - icon_state = "casing_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/fiorina/station/medbay) -"ygS" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "yellow" +"ygC" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/redfull, +/area/fiorina/station/lowsec) +"ygP" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/prison/yellowfull, /area/fiorina/station/disco) +"yhk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/fiorina/tumor/civres) +"yhr" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/fiorina/tumor/aux_engi) "yhu" = ( /obj/structure/window/framed/prison, /turf/open/floor/plating/prison, /area/fiorina/tumor/aux_engi) -"yhE" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/fiorina/station/botany) "yhR" = ( /obj/structure/sign/prop3{ desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, /turf/closed/wall/r_wall/prison_unmeltable, /area/fiorina/station/medbay) -"yhT" = ( -/obj/structure/largecrate/supply/ammo, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/fiorina/station/telecomm/lz1_cargo) -"yil" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, -/area/fiorina/station/medbay) +"yie" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/yellow/east, +/area/fiorina/station/lowsec) "yio" = ( /turf/closed/shuttle/ert, /area/fiorina/tumor/aux_engi) @@ -39146,45 +31008,10 @@ }, /turf/open/floor/plating/prison, /area/fiorina/tumor/civres) -"yiD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/fiorina/lz/near_lzI) -"yiG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/disco) -"yjs" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/fiorina/station/medbay) -"yjO" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/civres) -"yke" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/fiorina/station/research_cells) -"ykI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/station/medbay) +"yjV" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/fiorina/station/central_ring) "ykO" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -39192,24 +31019,21 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/fiorina/tumor/ice_lab) -"ykT" = ( -/turf/open/floor/prison{ +"ykQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "darkpurple2" + pixel_x = -10; + pixel_y = 13 }, -/area/fiorina/tumor/servers) +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/chapel) "ykX" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/plating/prison, /area/fiorina/station/telecomm/lz2_maint) -"ylf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/fiorina/tumor/fiberbush) "yls" = ( /obj/structure/monorail{ name = "launch track" @@ -40215,8 +32039,8 @@ byb wbE tAb uVn -lTp -eWV +uvx +wQV uZA bQM bQM @@ -40399,10 +32223,10 @@ xwC xwC gwH gwH -rNc -qPb -qPb -qPb +kxL +peg +peg +peg gwH gwH gwH @@ -40426,7 +32250,7 @@ bQM byb fiU imt -xOE +xXJ fiU aCC cEz @@ -40611,12 +32435,12 @@ xwC tfP gwH gwH -qPb +peg kbT rHr jjM -enH -nlR +etA +evR gwH gwH gwH @@ -40637,7 +32461,7 @@ eVO seW oxA fiU -tZW +ugt pGH jXk vxs @@ -40823,14 +32647,14 @@ tfP tfP gwH gwH -qPb +peg kbT jjM kbT jjM kbT -qPb -qPb +peg +peg gwH gwH gwH @@ -40844,18 +32668,18 @@ xwC xwC pqO oxA -olb -qJK +mFS +fXs uVn -rMY -kTY +fWA +mgZ imt jXk -fxt -jpt +hjm +nKb uVn -nlw -eIF +ely +cBI pWp gLu vzU @@ -41021,29 +32845,29 @@ xHV xHV xHV xHV -ejk -hDx -hDx -hDx -hDx -hDx +hsw +fSJ +fSJ +fSJ +fSJ +fSJ sUl -qPb -qPb -qPb +peg +peg +peg kbT kbT -qPb -qPb +peg +peg kbT kbT -enH -gmT +etA +gZb rHr ybm ybm ybm -qPb +peg gwH gwH gwH @@ -41055,19 +32879,19 @@ xwC xwC pqO oxA -lyo +kUv ouH fiU -vYw +vZm imt fiU -nlw +ely hWF fiU fiU hWF fiU -nlw +ely anq ecQ aOc @@ -41227,18 +33051,18 @@ xHV xHV dXG dIo -hDx +fSJ dXG -diP -qmd -xFx -diP -kDO -diP -qty -diP -qty -oOK +qJV +jnQ +tCO +qJV +xWC +qJV +hUw +qJV +hUw +iTV sUl kVg kbT @@ -41249,16 +33073,16 @@ kbT ejt kbT iGX -qPb -qPb +peg +peg kbT ybm xwC ybm kbT -qPb -uXn -qPb +peg +flh +peg kow bQM bQM @@ -41271,15 +33095,15 @@ fiU imt imt uVn -nlw +ely vJN -aar +hse uVn lrE wlO jXk imt -qJK +fXs uZA xwC xwC @@ -41439,30 +33263,30 @@ xHV dXG dXG dIo -hDx +fSJ dXG -bjx +bea dXG -oVC -lhQ -kDO -lhQ -qty -lhQ -gcr -lhQ +eBW +fuG +xWC +fuG +hUw +fuG +eGO +fuG aEi pRH -qPb -qPb -nlR -qPb -qPb +peg +peg +evR +peg +peg kbT kbT ybc -qPb -qPb +peg +peg kbT ybm xwC @@ -41470,7 +33294,7 @@ ybm kbT kbT kbT -qPb +peg kow bQM bQM @@ -41481,17 +33305,17 @@ ifJ imt fiU fiU -nlw +ely uVn qHG fJW -nlw +ely pGH vxs ddA oxA imt -lCz +kse uZA xwC xwC @@ -41651,28 +33475,28 @@ dIo dIo dXG dIo -wJa +uSk dXG -lhQ +fuG dXG -vAZ -hDx -ejk -hDx -hDx -hDx -hDx -rUL +oCa +fSJ +hsw +fSJ +fSJ +fSJ +fSJ +hBP sUl kbT -rNc -qPb -qPb -qPb -qPb -qPb -qPb -qPb +kxL +peg +peg +peg +peg +peg +peg +peg rHr jjM rHr @@ -41682,7 +33506,7 @@ ybm kbT kbT kbT -pFA +jNE kow bQM bQM @@ -41691,19 +33515,19 @@ jhG nTq lUi oOV -nlw +ely imt imt hWF -nlw +ely tlq lUE -xOE +xXJ imt imt aAf imt -fxt +hjm uZA xwC xwC @@ -41863,16 +33687,16 @@ dXG dIo dXG dIo -hDx -hDx +fSJ +fSJ qXM -qty -hDx +hUw +fSJ naW sLx xHV clu -hDx +fSJ xHV xHV dHd @@ -41882,19 +33706,19 @@ kow tfP tfP tfP -dwk -lso -lso -gmT +ktQ +xgu +xgu +gZb jyM jjM -qPb +peg kbT kbT kbT kbT -qPb -jTe +peg +vyO tfP xwC xwC @@ -41903,16 +33727,16 @@ xwC xwC jhG lUi -jCt +qfS fiU fiU uVn -jMH +csV kXR -nKG +rGx uVn uMq -aFp +fBk fiU bRb fiU @@ -42070,22 +33894,22 @@ xHV xHV xHV xHV -rsz -rsz +dcQ +dcQ dIo dIo dIo -mtm -hDx +lYg +fSJ dXG -qty -hDx +hUw +fSJ naW xHV -omF -lKd -lKd -lKd +ptN +jcx +jcx +jcx xHV naW bQM @@ -42094,19 +33918,19 @@ bQM bQM tfP tfP -pri -lso -lso -enH -gmT -enH -qPb +soJ +xgu +xgu +etA +gZb +etA +peg kbT kbT kbT kbT kbT -qPb +peg xwC xwC xwC @@ -42116,18 +33940,18 @@ xwC xwC jhG lUi -oFk +hcl anq bso -sOs +dRb nTq -sOs +dRb bso lUi -nlw -nlw -nlw -nlw +ely +ely +ely +ely anq ecQ aOc @@ -42287,17 +34111,17 @@ dXG clu dXG dXG -hDx -hDx +fSJ +fSJ dXG -qty +hUw xHV naW xHV naW -uZD -lKd -wHX +npL +jcx +xEF naW xHV xHV @@ -42307,19 +34131,19 @@ kPz kPz tfP tfP -tHh -olm -qPb -qPb -qPb +fYJ +mqh +peg +peg +peg kbT kbT -qPb -qPb +peg +peg kbT kbT kbT -qPb +peg gwH gwH gwH @@ -42330,16 +34154,16 @@ xwC jhG nTq gUj -xrT +vPi uXD -fSY +bJP uXD -xrT +vPi jhG -kIo -msn -fUd -prh +hnI +mMl +vmv +hqG gUj xwC xwC @@ -42500,18 +34324,18 @@ clu dXG dXG uVZ -hDx +fSJ dXG -qty +hUw xHV xHV -iIN -omF -lKd +gbj +ptN +jcx lLe -lKd -lKd -pCN +jcx +jcx +qNY xHV bQM bQM @@ -42521,18 +34345,18 @@ tfP tfP tfP tfP -qPb -qPb -rNc +peg +peg +kxL kbT -xzs +skY gwH gwH -cwB -qPb +uIO +peg kbT -qPb -qPb +peg +peg gwH gwH gwH @@ -42541,18 +34365,18 @@ xwC xwC xwC xwC -eOo -xrT +pPU +vPi kNN -fSY +bJP uXD -xrT -eOo +vPi +pPU cTr kbT kbT kbT -eOo +pPU xwC xwC xwC @@ -42703,7 +34527,7 @@ xHV xHV xHV xHV -hDx +fSJ dXG dXG dXG @@ -42712,16 +34536,16 @@ dIo dIo dIo dXG -hDx +fSJ lLe -qty +hUw xHV xHV naW naW -lKd +jcx lLe -lKd +jcx naW xHV xHV @@ -42734,30 +34558,30 @@ kPz tfP tfP kbT -qPb -qPb -qPb +peg +peg +peg gwH gwH gwH gwH gwH -qPb -qPb -qPb -qPb -qPb -nlR +peg +peg +peg +peg +peg +evR xwC -qPb -dnK -qPb -lso -lso +peg +eiH +peg +xgu +xgu hLM -gdn +jLn tfP -gdn +jLn hLM pBq kbT @@ -42916,25 +34740,25 @@ xHV xHV xHV xHV -qty +hUw clu clu dIo xHV xHV -diP -qty -diP -qty +qJV +hUw +qJV +hUw dXG -hDx +fSJ dXG -pVw -pVw -lKd -lKd -lKd -pRn +oge +oge +jcx +jcx +jcx +qZs xHV xHV xHV @@ -42946,39 +34770,39 @@ bQM bQM tfP kbT -qPb -qPb -qPb +peg +peg +peg tfP xwC xwC xwC gwH gwH -qPb -qPb +peg +peg kbT kbT -qPb -tQn -lso -lso -lso -qPb -qPb +peg +eXN +xgu +xgu +xgu +peg +peg kbT kbT kbT -lso -lso +xgu +xgu kbT -lso +xgu kbT kbT kbT kbT -qPb -olo +peg +dep gwH gwH xwC @@ -43126,25 +34950,25 @@ xHV xHV xHV dIo -hDx -hDx +fSJ +fSJ dXG clu dXG dIo xHV -qty -lhQ -qty -lhQ -qty -qty -hDx +hUw +fuG +hUw +fuG +hUw +hUw +fSJ dXG -lKd -lKd -lKd -lKd +jcx +jcx +jcx +jcx xHV xHV xHV @@ -43158,7 +34982,7 @@ bQM bQM kow kbT -qPb +peg kbT kbT kow @@ -43168,29 +34992,29 @@ xwC xwC gwH gwH -qPb -lso +peg +xgu kbT kbT -tQn -lso -lso -lso -qPb -qPb -qPb -qPb -qPb -qPb -qPb +eXN +xgu +xgu +xgu +peg +peg +peg +peg +peg +peg +peg kbT xwC xwC xwC xwC kbT -qPb -uXn +peg +flh gwH gwH gwH @@ -43338,20 +35162,20 @@ xHV xHV xHV dIo -qty -qty -qty +hUw +hUw +hUw dIo dXG -rsz -hDx +dcQ +fSJ whu whu whu -hDx -qty -qty -xSg +fSJ +hUw +hUw +krK naW naW naW @@ -43370,7 +35194,7 @@ kPz kPz kow kbT -qPb +peg kbT kbT kow @@ -43381,29 +35205,29 @@ xwC xwC gwH gwH -xzs +skY kbT -qPb +peg xwC ogM ogM xwC -qPb -tIC -qPb -qPb -syG -qPb -qPb -qPb -nlR -qPb +peg +hmx +peg +peg +oPB +peg +peg +peg +evR +peg kbT kbT kbT kbT kbT -xzs +skY gwH gwH xwC @@ -43550,26 +35374,26 @@ xHV xHV xHV dIo -wJa -hDx -hDx +uSk +fSJ +fSJ pwL dXG -hDx -diP -qty -diP -qty -diP -qty -qty -hDx +fSJ +qJV +hUw +qJV +hUw +qJV +hUw +hUw +fSJ naW xHV xHV -lKd -coh -nvz +jcx +ulu +uUC xHV xHV bQM @@ -43593,25 +35417,25 @@ bQM xwC gwH gwH -qPb +peg kbT kbT ogM kbT kbT -lso -qPb -qPb -lso +xgu +peg +peg +xgu kbT kbT -lso -lso +xgu +xgu kbT -wbp -qPb -qPb -eOo +auI +peg +peg +pPU kbT kbT kbT @@ -43758,30 +35582,30 @@ xHV xHV dXG xHV -qty +hUw xHV xHV dIo -qty -qty -qty +hUw +hUw +hUw dXG dXG -hDx -lhQ -qty -lhQ -qty -lhQ +fSJ +fuG +hUw +fuG +hUw +fuG dXG -qty -hDx +hUw +fSJ xHV xHV xHV -pRn -lKd -lKd +qZs +jcx +jcx naW naW xHV @@ -43805,29 +35629,29 @@ bQM xwC xwC xwC -gzz -qPb +sTn +peg kbT ogM kbT kbT -lso -qPb -qPb -lso -eOo +xgu +peg +peg +xgu +pPU xwC xwC -lso +xgu xwC -qPb -qPb -qPb -qPb -qPb +peg +peg +peg +peg +peg gwH gwH -qPb +peg gwH gwH xwC @@ -43843,9 +35667,9 @@ lHx lHx jlk jlk -sAv -sJT -sAv +aJE +bnt +aJE jlk baC baC @@ -43969,33 +35793,33 @@ xHV xHV xHV lLe -hDx -qty +fSJ +hUw xHV xHV dIo -hDx -hDx -hDx +fSJ +fSJ +fSJ dXG dXG dXG -hDx +fSJ xHV dIo xHV -hDx +fSJ dXG -qty +hUw xHV naW naW naW -ecF +cqZ jSD -lKd -lKd -pCN +jcx +jcx +qNY xHV xHV kPz @@ -44005,10 +35829,10 @@ kPz kPz tfP tfP -wpW -qPb -qPb -qPb +gYC +peg +peg +peg tfP tfP xwC @@ -44018,25 +35842,25 @@ bQM xwC xwC xwC -uXn -qPb -tQn -lso +flh +peg +eXN +xgu kbT kbT -qPb -qPb +peg +peg tfP xwC xwC xwC xwC xwC -xwt -jOt -qPb -wfV -qPb +vXa +cLv +peg +sLd +peg gwH gwH kbT @@ -44051,13 +35875,13 @@ jlk vZV vZV syF -kZQ -nyy +qgz +dIr jlk jlk -qDG -sJT -qDG +dtj +bnt +dtj jlk jlk rZP @@ -44179,16 +36003,16 @@ tYw tYw tYw dIo -qty -qty -qty +hUw +hUw +hUw dXG -qty -qty -hDx -qty -qty -qty +hUw +hUw +fSJ +hUw +hUw +hUw dXG dXG xHV @@ -44196,16 +36020,16 @@ xHV xHV xHV xHV -hDx -qty -qty +fSJ +hUw +hUw xHV naW -mAG -omF -lKd +fbh +ptN +jcx jSD -gkd +hXA naW xHV xHV @@ -44216,12 +36040,12 @@ bQM tfP tfP tfP -eOo -qPb -qPb -qPb -qPb -eOo +pPU +peg +peg +peg +peg +pPU gwH gwH xwC @@ -44233,45 +36057,45 @@ xwC gwH gwH xwC -qPb -lso -lso +peg +xgu +xgu kbT -qPb +peg xwC gwH gwH tfP tfP tfP -xwt -mtr -qPb -eOo +vXa +ktq +peg +pPU kbT kbT -lso -lso -lso -lso -jTe +xgu +xgu +xgu +xgu +vyO xwC -fVA -gUf -gHb +caA +cPY +hEE jlk vZV -jmp -aKW -cyb -qDG +wKm +oyA +aRM +dtj jlk -uZr -aKW -sJT -aKW -qDG -sAv +xqi +oyA +bnt +oyA +dtj +aJE lHx bQM bQM @@ -44391,16 +36215,16 @@ tYw xHV xHV dIo -wJa +uSk lLe dXG -qty +hUw lLe dXG dXG -hDx -hDx -hDx +fSJ +fSJ +fSJ xHV xHV xHV @@ -44408,17 +36232,17 @@ xHV xHV xHV xHV -hDx +fSJ dXG -qty +hUw xHV naW naW naW -uZD -lKd -lKd -wAl +npL +jcx +jcx +mez xHV kPz kPz @@ -44429,11 +36253,11 @@ tfP kPY gwH gwH -qPb -qPb -qPb -qPb -qPb +peg +peg +peg +peg +peg gwH gwH gwH @@ -44446,44 +36270,44 @@ xwC xwC tfP tfP -aaq +fuV kbT kbT -qPb -sNb +peg +dwF gwH gwH gwH gwH tfP -xwt +vXa xwC -qPb -lso -lso -qPb -qPb -lso +peg +xgu +xgu +peg +peg +xgu kbT kbT kbT -tQn -sVP -gCX -aKW +eXN +cxx +qVa +oyA rGq hjP euT rGq -fAt +mpy hjP knh -sJT -sJT -sJT -wgH -sJT -sJT +bnt +bnt +bnt +lEs +bnt +bnt lHx bQM bQM @@ -44603,10 +36427,10 @@ tYw xHV xHV dIo -mLB -hDx +kwn +fSJ dXG -qty +hUw dXG dXG dXG @@ -44622,14 +36446,14 @@ xHV doD doD doD -qty +hUw xHV naW -mAG -omF -lKd -lKd -lKd +fbh +ptN +jcx +jcx +jcx xHV naW bQM @@ -44641,12 +36465,12 @@ gwH gwH gwH gwH -qPb -qPb -qPb -qPb -qPb -qPb +peg +peg +peg +peg +peg +peg gwH gwH gwH @@ -44661,28 +36485,28 @@ gwH fsk kbT kbT -qPb -qPb -xAs -qPb +peg +peg +kCb +peg gwH gwH tfP dwQ dwQ -lso +xgu dwQ dwQ -lso +xgu dwQ dwQ kbT dwQ dwQ ogM -sVP +cxx lyf -aKW +oyA rOI hjP hjP @@ -44690,12 +36514,12 @@ hjP hjP hjP knh -aKW -aKW -sJT -aKW -qDG -pxu +oyA +oyA +bnt +oyA +dtj +elQ lHx bQM bQM @@ -44816,32 +36640,32 @@ xHV xHV dIo dIo -mLB -hDx -qty -hDx -hDx +kwn +fSJ +hUw +fSJ +fSJ dXG -xvR -qty -qty +gLS +hUw +hUw dIo -rsz +dcQ qgB qoG dIo dXG dXG dXG -qty +hUw ame -hDx +fSJ naW naW xHV -hDx +fSJ dXG -hDx +fSJ xHV dHd kow @@ -44852,15 +36676,15 @@ gwH tfP gwH gwH -eOo -qPb -rNc -qPb -qPb -eOo -qPb -qPb -eOo +pPU +peg +kxL +peg +peg +pPU +peg +peg +pPU gwH tfP kow @@ -44870,30 +36694,30 @@ tfP tfP gwH gwH -qPb +peg kbT kbT -qPb -qPb +peg +peg vFY ycK -qPb -qPb -qPb -lso -lso -qPb -lso -lso -lso -uXn -lso -lso -lso -lso +peg +peg +peg +xgu +xgu +peg +xgu +xgu +xgu +flh +xgu +xgu +xgu +xgu ogM -sVP -gCX +cxx +qVa uNM hjP rGq @@ -44903,9 +36727,9 @@ jlk hjP knh rGq -aKW -sJT -aKW +oyA +bnt +oyA hjP kFq rZP @@ -45033,69 +36857,69 @@ dIo dIo xHV xHV -hDx +fSJ dXG -hDx -hDx +fSJ +fSJ dIo dIo xHV avY dIo dXG -rsz +dcQ dXG -diP -xFx -hDx -sRg -hDx -hDx -hDx -hDx -hDx -hDx +qJV +tCO +fSJ +gmJ +fSJ +fSJ +fSJ +fSJ +fSJ +fSJ sUl -qPb -dnK -dnK -qPb +peg +eiH +eiH +peg gwH -eOo +pPU gwH -eOo -xzs -qPb -qPb +pPU +skY +peg +peg kbT -qPb -wfV -qPb -qPb -qPb -dnK -qPb -qPb -qPb +peg +sLd +peg +peg +peg +eiH +peg +peg +peg kbT -qPb -qPb -qPb -qPb +peg +peg +peg +peg kbT -qPb -qPb -qPb -uXn -qPb -qPb +peg +peg +peg +flh +peg +peg fpB kbT kbT -lso -kIF -lso -lso +xgu +mJo +xgu +xgu xwC xwC xwC @@ -45104,8 +36928,8 @@ ogM ogM ogM xwC -sVP -gCX +cxx +qVa uNM yhu yhu @@ -45115,9 +36939,9 @@ uNM jlk jlk rZP -xVD -sJT -aKW +keU +bnt +oyA hjP dpH jlk @@ -45246,10 +37070,10 @@ xHV xHV xHV dIo -qty -qty -qty -rsz +hUw +hUw +hUw +dcQ xHV xHV xHV @@ -45257,53 +37081,53 @@ xHV dXG dXG dXG -bjx -tQq -xFx -diP -qty -diP -qty -diP -qty -diP +bea +pgZ +tCO +qJV +hUw +qJV +hUw +qJV +hUw +qJV sUl -qPb -qPb -rNc -qPb -qPb -qPb -qPb -qPb -qPb -qPb -xii +peg +peg +kxL +peg +peg +peg +peg +peg +peg +peg +iwC kbT -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb +peg +peg +peg +peg +peg +peg +peg +peg +peg kbT kbT kbT kbT kbT kbT -qPb -qPb -qPb +peg +peg +peg kbT kbT kbT -qPb -uXn -qPb +peg +flh +peg tfP tfP wmd @@ -45312,24 +37136,24 @@ xwC xwC xwC xwC -lso -lso -lso +xgu +xgu +xgu ogM -sVP -piL -peY -peY -peY -peY -peY -peY +cxx +vgo +byH +byH +byH +byH +byH +byH jlk jlk rZP -xVD -sJT -aKW +keU +bnt +oyA hjP hlq jlk @@ -45458,9 +37282,9 @@ xHV xHV xHV dIo -hDx -hDx -hDx +fSJ +fSJ +fSJ dXG xHV xHV @@ -45469,51 +37293,51 @@ xHV xHV xHV xHV -lhQ -fpp -oVC -lhQ -qty -lhQ -qty -lhQ -qty -lhQ +fuG +dPb +eBW +fuG +hUw +fuG +hUw +fuG +hUw +fuG sUl -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb +peg +peg +peg +peg +peg +peg +peg +peg +peg +peg kbT -qPb -qPb -nlR -qPb -qPb -qPb -qPb -qPb -qPb -nlR -qPb +peg +peg +evR +peg +peg +peg +peg +peg +peg +evR +peg kbT kbT kbT kbT -qPb -qPb +peg +peg kbT kbT kbT kbT -qPb -rNc +peg +kxL gwH gwH tfP @@ -45521,27 +37345,27 @@ xwC xwC xwC xwC -qPb -qPb -qPb +peg +peg +peg kbT kbT kbT ogM -jVH -bEn +nbM +jXM qbd -bEn -bEn -bEn -bEn -bEn -ycn -gCX +jXM +jXM +jXM +jXM +jXM +kxW +qVa rZP -xVD -sJT -aKW +keU +bnt +oyA hjP dxE jlk @@ -45653,9 +37477,9 @@ xHV xHV xHV dXG -pty -hDx -pty +uiv +fSJ +uiv xHV xHV xHV @@ -45672,7 +37496,7 @@ xHV dIo dXG qXM -hDx +fSJ xHV gCE xHV @@ -45684,47 +37508,47 @@ xHV bby dXG qXM -hDx -qty -qty -qty -hDx -hDx -hDx +fSJ +hUw +hUw +hUw +fSJ +fSJ +fSJ sUl -qPb -cwB -cwB -qPb -cJz -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -qPb -olo -tJU -qPb -qPb -qPb -lic +peg +uIO +uIO +peg +vsk +peg +peg +peg +peg +peg +peg +peg +peg +peg +peg +peg +peg +dep +qJZ +peg +peg +peg +akV xwC xwC xwC -vMk -qPb -qPb +lKL +peg +peg kbT kbT kbT -xzs +skY gwH gwH gwH @@ -45733,27 +37557,27 @@ xwC xwC xwC xwC -jTe -qPb -qPb +vyO +peg +peg kbT kbT -qPb -jCA -aKW +peg +vSW +oyA fpn fpn -aKW +oyA fpn fpn -aKW +oyA lyf -sVP -stX +cxx +crL rZP jlk -sJT -aKW +bnt +oyA bfF rGq rZP @@ -45864,10 +37688,10 @@ xHV xHV xHV xHV -rsz -fBP -hDx -fBP +dcQ +jqk +fSJ +jqk xHV xHV xHV @@ -45884,25 +37708,25 @@ xHV dIo dXG dXG -hDx +fSJ xHV xHV xHV xHV xHV dXG -hDx -hDx +fSJ +fSJ bby dXG dXG -hDx -qty +fSJ +hUw xHV xHV xHV xHV -hDx +fSJ dHd kow kow @@ -45910,17 +37734,17 @@ kow tfP tfP tfP -ylf -ylf -qPb -qPb -qPb -qPb -qPb -qPb -xzs +fwx +fwx +peg +peg +peg +peg +peg +peg +skY gwH -eOo +pPU tfP tfP kow @@ -45931,26 +37755,26 @@ tfP xwC xwC xwC -qPb -qPb +peg +peg kbT kbT -qPb -qPb +peg +peg gwH gwH gwH wmd xwC xwC -qPb -qPb -qPb -lso -qPb +peg +peg +peg +xgu +peg kbT kbT -qPb +peg xwC jlk jlk @@ -45959,13 +37783,13 @@ jlk jlk jlk jlk -aKW -sVP -gCX +oyA +cxx +qVa rZP jlk jlk -aKW +oyA bfF rGq rZP @@ -46072,14 +37896,14 @@ xHV xHV xHV xHV -qty -qty -qty -qty -hDx -pty -hDx -fBP +hUw +hUw +hUw +hUw +fSJ +uiv +fSJ +jqk xHV xHV xHV @@ -46093,10 +37917,10 @@ dIo dIo dIo dIo -hDx +fSJ dXG -qty -hDx +hUw +fSJ xHV xHV xHV @@ -46108,9 +37932,9 @@ dXG dXG dXG dXG -hDx -qty -lsf +fSJ +hUw +uqm xHV xHV xHV @@ -46123,13 +37947,13 @@ bQM tfP tfP kPY -cnU -rNc -qPb -qPb -qPb -qPb -eOo +rQA +kxL +peg +peg +peg +peg +pPU gwH gwH gwH @@ -46143,24 +37967,24 @@ tfP tfP xwC xwC -xwt -tIC +vXa +hmx kbT kbT kbT kbT -qPb -qPb +peg +peg gwH gwH xwC -qPb -qPb -lso +peg +peg +xgu kbT kbT kbT -lso +xgu kbT gwH gwH @@ -46171,25 +37995,25 @@ rZP rZP jlk jlk -bMd -hIo -iDE +jaK +pAv +uID rZP jlk jlk -aKW +oyA bfF rGq lHx bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -46283,46 +38107,46 @@ jXz xHV xHV xHV -qty -hDx -hDx -hDx -qty +hUw +fSJ +fSJ +fSJ +hUw dXG -fBP +jqk dXG -fBP -rsz -hDx -hDx +jqk +dcQ +fSJ +fSJ nIc cmP dIo xHV xHV xHV -hDx -hDx -hDx -hDx -hDx +fSJ +fSJ +fSJ +fSJ +fSJ dXG dXG -hDx +fSJ xHV xHV xHV xHV dXG dXG -hDx +fSJ bby bby -hDx +fSJ dXG -hDx -qty -qty +fSJ +hUw +hUw xHV xHV xHV @@ -46335,12 +38159,12 @@ bQM bQM tfP kPY -ylf -xzs -qPb -qPb -qPb -qPb +fwx +skY +peg +peg +peg +peg gwH gwH gwH @@ -46355,25 +38179,25 @@ tfP xwC xwC xwC -qPb -qPb +peg +peg kbT kbT kbT kbT -tIC -qPb -qPb +hmx +peg +peg gwH gwH -qPb -lso +peg +xgu kbT kbT kbT kbT lmV -qPb +peg gwH gwH jlk @@ -46383,9 +38207,9 @@ xKj jlk jlk jlk -aKW -sVP -gCX +oyA +cxx +qVa rZP jlk jlk @@ -46395,13 +38219,13 @@ rGq lHx bQM bTo -afk -afk -afk +tle +tle +tle pcu -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -46486,56 +38310,56 @@ agi aWV agi jXz -ezr -gks +roz +sqN jXz -vjH -ezr +mSz +roz jXz -kPe +uLf xHV xHV -nIn -hDx -hDx -hDx -qty +koL +fSJ +fSJ +fSJ +hUw dXG -fBP +jqk dXG dXG dXG dXG dXG -xCo +dgt yis dIo -hDx -hDx -hDx -qty -qty +fSJ +fSJ +fSJ +hUw +hUw dXG -qty -qty -qty -qty +hUw +hUw +hUw +hUw dXG xHV xHV xHV -rsz +dcQ dXG dXG dXG xHV -rsz +dcQ xHV -rsz -hDx -qty -qty -qty +dcQ +fSJ +hUw +hUw +hUw xHV xHV xHV @@ -46549,10 +38373,10 @@ tfP tfP kPY bxW -gFe -gFe -gFe -gFe +fzF +fzF +fzF +fzF bxW uNM uNM @@ -46577,15 +38401,15 @@ kPY kbT kbT kbT -lso -lso +xgu +xgu kbT kbT kbT kbT -qPb -qPb -qPb +peg +peg +peg gwH rZP jlk @@ -46593,11 +38417,11 @@ xKj jlk xKj rGq -jhi +pxl rGq -aKW -sVP -stX +oyA +cxx +crL rZP jlk jlk @@ -46607,13 +38431,13 @@ rGq lHx bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -46698,33 +38522,33 @@ agi agi agi jXz -ioR -gks +sgy +sqN jXz -hng -sSk +cVz +nHg jXz -kPe +uLf xHV xHV -qty -hDx -hDx -hDx -qty +hUw +fSJ +fSJ +fSJ +hUw dXG lLe dXG dXG dXG dXG -hDx +fSJ lbt dXG -rsz +dcQ dXG dXG -qty +hUw dXG qXM dXG @@ -46733,10 +38557,10 @@ dXG dXG dXG lLe -qty -hDx +hUw +fSJ xHV -hDx +fSJ dXG lLe dXG @@ -46744,11 +38568,11 @@ clu dXG clu dXG -hDx -xvR -qty -qty -hCT +fSJ +gLS +hUw +hUw +pVT xHV xHV pqC @@ -46761,10 +38585,10 @@ dIo uNM uNM uNM -sJT -sJT -sJT -sJT +bnt +bnt +bnt +bnt uNM uNM uNM @@ -46780,22 +38604,22 @@ hjP rth hjP mrn -qzy -qzy -qzy -qzy +eIT +eIT +eIT +eIT mrn uNM lmV kbT lmV kbT -lso +xgu kbT kbT -qPb +peg kbT -qPb +peg gwH gwH xwC @@ -46807,12 +38631,12 @@ xKj rGq rGq bDU -aKW -yaU -gCX +oyA +pqr +qVa rZP jlk -jhi +pxl rGq osX rGq @@ -46911,24 +38735,24 @@ agi agi jXz jXz -gKu +lpv jXz -gKu +lpv jXz jXz -fGb +jYW xHV xHV -qty -qty -qty -qty +hUw +hUw +hUw +hUw dXG -hDx -fBP -hDx -fBP -rsz +fSJ +jqk +fSJ +jqk +dcQ dXG dXG lbt @@ -46938,16 +38762,16 @@ dXG dXG dXG dXG -mLB -hDx -qty -hDx +kwn +fSJ +hUw +fSJ dXG eHD dXG dXG dXG -qty +hUw bby qXM dXG @@ -46955,13 +38779,13 @@ dXG xHV dXG xHV -rsz -hDx -qty -qty -qty -hDx -hCT +dcQ +fSJ +hUw +hUw +hUw +fSJ +pVT xHV naW naW @@ -46973,15 +38797,15 @@ xHV jlk uNM uNM -sVP +cxx rGq rOI -piL -peY -peY -ppO -peY -gUf +vgo +byH +byH +kLs +byH +cPY rGq rGq rGq @@ -46991,12 +38815,12 @@ rZP xKj xKj xKj -aKW -aKW -aKW -aKW -aKW -aKW +oyA +oyA +oyA +oyA +oyA +oyA jlk tfP kbT @@ -47005,7 +38829,7 @@ kbT kbT kbT kbT -qPb +peg xwC xwC gwH @@ -47019,9 +38843,9 @@ xKj rGq rGq rGq -aKW -sVP -gCX +oyA +cxx +qVa jlk jlk rGq @@ -47115,31 +38939,31 @@ agi aWV agi agi -lwK +jny agi agi agi agi mjx -eda -eQR -efz -eQR -efz -eQR -eda -eQR -efz +beP +rxS +fwQ +rxS +fwQ +rxS +beP +rxS +fwQ dXG -hDx -hDx -hDx +fSJ +fSJ +fSJ dXG xHV -hDx -fBP -hDx -fBP +fSJ +jqk +fSJ +jqk dXG wKE dXG @@ -47148,33 +38972,33 @@ dXG dXG dXG dXG -hDx -mLB +fSJ +kwn dIo -fBP -fBP +jqk +jqk dIo dIo dIo obI wlz dXG -qty +hUw dXG dXG bby -hDx -rsz +fSJ +dcQ dXG dXG dXG -hDx -qty -qty -qty -hDx -hDx -hDx +fSJ +hUw +hUw +hUw +fSJ +fSJ +fSJ xHV xHV xHV @@ -47185,7 +39009,7 @@ xHV jlk uNM uNM -sVP +cxx fpn fpn hjP @@ -47193,22 +39017,22 @@ fpn hjP fpn fpn -gCX -gHb +qVa +hEE rGq rGq -aKW -aKW -aKW -jEf +oyA +oyA +oyA +aeF jlk -jEf -aKW -aKW -aKW -aKW -gHb -aKW +aeF +oyA +oyA +oyA +oyA +hEE +oyA jlk jlk jlk @@ -47231,9 +39055,9 @@ xKj rGq rGq gJu -joy -fBg -gCX +eoe +ugY +qVa rGq knh rGq @@ -47327,21 +39151,21 @@ agi agi agi agi -cBU -wNw -ykT -uhd +aTq +mvz +quM +xfX hoZ mjx -efz -fLq -efz -fLq -efz -fLq -efz -fLq -efz +fwQ +oGJ +fwQ +oGJ +fwQ +oGJ +fwQ +oGJ +fwQ dXG dXG dXG @@ -47349,9 +39173,9 @@ dXG xHV xHV xHV -fBP -hDx -fBP +jqk +fSJ +jqk dXG dXG dXG @@ -47361,15 +39185,15 @@ lLe dXG dXG dXG -qty -fBP -fBP -aae +hUw +jqk +jqk +uaV dIo -aat -fBP +tEk +jqk dCu -qty +hUw dXG dXG dXG @@ -47377,18 +39201,18 @@ dXG bby dIo dIo -rsz +dcQ dIo dIo -hDx -qty -qty -qty -diP -qty -diP -nsg -xFx +fSJ +hUw +hUw +hUw +qJV +hUw +qJV +wBE +tCO xHV dIo naW @@ -47397,32 +39221,32 @@ xHV jlk uNM uNM -jVH -bEn -gPO -bEn -bEn -bEn -bEn -ycn -gCX -aKW -aKW -aKW -aKW -aKW -aKW -jEf -jEf -jDj -awF -xHY -awF -sJT -aKW -aKW -aKW -aKW +nbM +jXM +vxj +jXM +jXM +jXM +jXM +kxW +qVa +oyA +oyA +oyA +oyA +oyA +oyA +aeF +aeF +qku +xFk +tKM +xFk +bnt +oyA +oyA +oyA +oyA jlk rGq rGq @@ -47443,9 +39267,9 @@ rGq rGq rGq jFl -aKW -xgr -gCX +oyA +wyS +qVa rGq knh hjP @@ -47539,74 +39363,74 @@ agi agi agi hoZ -dpE -uTX -dPC -nBV -lwK -fGb -ege +xdI +dAm +aRw +sNH +jny +jYW +oVo mjx mjx -ege +oVo mjx mjx -ege +oVo mjx mjx -mLB -hDx -hDx -hDx +kwn +fSJ +fSJ +fSJ xHV xHV xHV -jDX -hDx -fBP -rsz -hDx -hDx -xCo +lut +fSJ +jqk +dcQ +fSJ +fSJ +dgt dXG dXG dXG dXG -qty +hUw lLe -fBP -vIF -pyW +jqk +who +rBf dIo -tML -iQu +eLz +mts dIo -hDx -qty +fSJ +hUw dXG -hDx -hDx +fSJ +fSJ xHV dIo -iHn -xMe -hoY +cns +bFp +ojq dIo -qWB -qty -qty -qty -lhQ -qty -lhQ -tzj -lvs -hDx +jUS +hUw +hUw +hUw +fuG +hUw +fuG +jeO +tJD +fSJ dIo naW xHV xHV -geU +ftQ amF amF amF @@ -47615,26 +39439,26 @@ amF amF amF amF -geU -sVP -gCX -gHb -aKW -gHb -aKW -aKW -gHb -jEf +ftQ +cxx +qVa +hEE +oyA +hEE +oyA +oyA +hEE +aeF jlk -jDj -qnq -peY -qQf -sJT -gHb -aKW -gHb -aKW +qku +hAD +byH +lTj +bnt +hEE +oyA +hEE +oyA rGq rGq rGq @@ -47650,15 +39474,15 @@ rZP jlk jlk rGq -kgP +gYs rGq rGq rGq gJu -joy -fBg -gCX -aKW +eoe +ugY +qVa +oyA knh rGq hlT @@ -47751,40 +39575,40 @@ agi agi agi hoZ -cBU -vco -wVK -uFX -lwK +aTq +sno +edh +dZw +jny mjx -efz -eQR -efz -eQR -efz -eQR -efz -eQR -efz +fwQ +rxS +fwQ +rxS +fwQ +rxS +fwQ +rxS +fwQ doD doD doD xHV xHV -fBP -fBP -fBP -hDx -fBP -hDx +jqk +jqk +jqk +fSJ +jqk +fSJ xHV xHV nIc dXG -rsz +dcQ dXG dXG -qty +hUw nib dIo dIo @@ -47793,32 +39617,32 @@ dIo dIo dIo dIo -cua -qty +abW +hUw dXG -hDx +fSJ xHV xHV dIo -xfA -fBP -uIu +lXL +jqk +tQM dIo dIo dIo dIo dIo dIo -hDx -hDx -lhQ -oVC -nsg -nsg -nsg -xFx -xHV -geU +fSJ +fSJ +fuG +eBW +wBE +wBE +wBE +tCO +xHV +ftQ amF fjX jXZ @@ -47827,26 +39651,26 @@ jXZ jXZ lZf amF -geU -sVP -gCX -sJT -sJT -sJT -sJT -sJT -sJT -jDj -jDj -jDj -fBg +ftQ +cxx +qVa +bnt +bnt +bnt +bnt +bnt +bnt +qku +qku +qku +ugY ePx -lYc -sJT -sJT -sJT -aKW -aKW +ydQ +bnt +bnt +bnt +oyA +oyA rGq hjP rGq @@ -47856,21 +39680,21 @@ bfF rGq rGq rGq -aKW +oyA jlk rZP daK rGq rGq -aKW +oyA rGq rGq rGq wcP -aKW -sVP -gCX -aKW +oyA +cxx +qVa +oyA jlk jlk rZP @@ -47963,30 +39787,30 @@ agi agi agi hoZ -lwK -lwK -lwK -dCl -lwK +jny +jny +jny +mXn +jny mjx -egY -fLq -efz -fLq -efz -fLq -kur -fLq -efz +thA +oGJ +fwQ +oGJ +fwQ +oGJ +qHz +oGJ +fwQ hoZ -fGb -hDx +jYW +fSJ xHV xHV -hDx -hDx -hDx -hDx +fSJ +fSJ +fSJ +fSJ xHV xHV xHV @@ -47996,25 +39820,25 @@ cmP dIo dXG dXG -qty -qty +hUw +hUw dCu -fBP -eaL +jqk +wsv dIo -moJ -fBP +rpL +jqk dCu -qty +hUw dXG dXG dXG dXG dXG dXG -fBP -aZU -hDx +jqk +qAQ +fSJ dIo xHV xHV @@ -48022,43 +39846,43 @@ xHV xHV dIo dIo -hSF -qty -qty -hDx +nSw +hUw +hUw +fSJ whu -tLT -lvs -xoQ +dVt +tJD +jpZ amF amF hiO -ask -mzy -sXi -kZS +afU +pvJ +bkp +dIJ hiO amF amF -vNx -piL -peY -peY -peY -peY -peY -peY -peY -peY -peY -oiR +tpK +vgo +byH +byH +byH +byH +byH +byH +byH +byH +byH +tbS hjP -gCX -peY -gUf -sJT -aKW -aKW +qVa +byH +cPY +bnt +oyA +oyA rGq rGq rGq @@ -48068,21 +39892,21 @@ bfF rGq rGq rGq -aKW +oyA rZP rZP rGq rGq rGq -aKW -aKW +oyA +oyA fpn fpn -mcG -aKW -sVP -gCX -aKW +ien +oyA +cxx +qVa +oyA jlk jlk rZP @@ -48173,32 +39997,32 @@ agi agi agi agi -gEF +rAZ pCX -lwK -wNw -ykT -uhd -lwK +jny +mvz +quM +xfX +jny jXz jXz -gEF +rAZ gLv jXz -gKu +lpv jXz jXz -liX +aVa hoZ njx -fGb +jYW bby xHV -fBP -hDx -fBP -fBP -fBP +jqk +fSJ +jqk +jqk +jqk xHV xHV xHV @@ -48206,27 +40030,27 @@ xHV nIc yis dIo -fuF +pqQ dXG dXG dXG dIo -fBP -coZ +jqk +eow dIo -moJ -hLt +rpL +cWv dIo -mii -hDx -qty +ydW +fSJ +hUw dXG -hDx +fSJ xHV dIo -uPg -fBP -hDx +qaV +jqk +fSJ dIo dXG dXG @@ -48234,25 +40058,25 @@ xHV xHV xHV dIo -hSF -diP -xFx -hDx -hDx -nEs -oVC -hDx -pyK -sXi -pyK +nSw +qJV +tCO +fSJ +fSJ +lkc +eBW +fSJ +itc +bkp +itc rGq rGq rGq rGq -pyK -sXi -pyK -sVP +itc +bkp +itc +cxx hjP fpn fpn @@ -48263,14 +40087,14 @@ hjP fpn fpn hjP -qUp +tjp hjP -gCX +qVa ruE -gCX -sJT -aKW -aKW +qVa +bnt +oyA +oyA rGq rGq jlk @@ -48280,21 +40104,21 @@ vsT rGq rGq rGq -aKW -mhW -yaC +oyA +tej +jFW rGq bDU rGq -peY -peY -peY -peY -qzW -nqs -crH -gCX -aKW +byH +byH +byH +byH +grg +cax +jhx +qVa +oyA okT jlk rZP @@ -48387,28 +40211,28 @@ aWV hoZ hoZ hoZ -dBY -uTX -dPC -nBV -lwK -fGb +kPD +dAm +aRw +sNH +jny +jYW erl hoZ hoZ jXz -gks +sqN agi jXz agi njx njx -fGb -hDx +jYW +fSJ xHV -fBP -hDx -fBP +jqk +fSJ +jqk dIo dIo dIo @@ -48418,7 +40242,7 @@ xHV nIc dIo dIo -hSF +nSw dXG dXG wlz @@ -48431,14 +40255,14 @@ dIo dIo xEE dXG -qty +hUw dXG -hDx +fSJ xHV dIo -mLB -hgz -yjO +kwn +xLl +rIa dIo xHV mfe @@ -48446,43 +40270,43 @@ xHV xHV xHV dIo -hSF -qty -qty -fpp -fpp -oVC -qty -qty -sXi +nSw +hUw +hUw +dPb +dPb +eBW +hUw +hUw +bkp fpn -sXi +bkp rGq bDU rGq rGq -sXi +bkp fpn -sXi -sVP -hxC -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -sVP +bkp +cxx +bCe +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +cxx hjP -gCX -bEn -lwG -sJT -aKW -aKW +qVa +jXM +bEB +bnt +oyA +oyA rGq rGq knh @@ -48493,20 +40317,20 @@ oDe rGq rGq rGq -aKW -sJT +oyA +bnt rGq rGq rGq -bEn -bEn -bEn -bEn -ftY -nIq -uNX -lwG -aKW +jXM +jXM +jXM +jXM +eRt +cDo +tSd +bEB +oyA rGq jlk rZP @@ -48597,14 +40421,14 @@ bQM bQM aWV cVQ -gEF +rAZ hoZ -lwK -vco -wVK -uFX -lwK -fGb +jny +sno +edh +dZw +jny +jYW hoZ hoZ agi @@ -48615,12 +40439,12 @@ agi agi njx njx -fGb -fGb -fGb -fBP -hDx -fBP +jYW +jYW +jYW +jqk +fSJ +jqk dIo tYw tYw @@ -48630,9 +40454,9 @@ xHV qgi xHV xHV -gGG +mCd dXG -qty +hUw dXG xHV xHV @@ -48643,10 +40467,10 @@ dXG dXG dXG egL -qty +hUw qXM dXG -hDx +fSJ dIo dIo dXG @@ -48658,42 +40482,42 @@ xHV xHV dIo dIo -hSF -diP -xFx -igA -nsg -xFx -qty -qty -sXi +nSw +qJV +tCO +cDs +wBE +tCO +hUw +hUw +bkp fpn -sXi +bkp rGq rGq rGq rGq -sXi +bkp fpn -sXi -sVP -gCX -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -fBg +bkp +cxx +qVa +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +ugY ePx -lYc -sJT -sJT -sJT -aKW +ydQ +bnt +bnt +bnt +oyA rGq hjP boe @@ -48705,20 +40529,20 @@ rGq rGq rGq rGq -aKW -sJT +oyA +bnt rGq rGq rGq -aKW +oyA rZP -aKW -aKW -ezb -xgr -lYc -aKW -aKW +oyA +oyA +gGv +wyS +ydQ +oyA +oyA rGq jlk rZP @@ -48811,11 +40635,11 @@ aWV pCX hoZ hoZ -dCl -lwK -dQA -lwK -lwK +mXn +jny +kus +jny +jny hoZ hoZ hoZ @@ -48826,13 +40650,13 @@ gQK agi aWV aWV -fGb +jYW hoZ hoZ hoZ -fBP -hDx -fBP +jqk +fSJ +jqk dIo tYw tYw @@ -48842,70 +40666,70 @@ xHV qgi xHV xHV -gGG +mCd dXG -qty +hUw dXG -hDx +fSJ xHV -hDx -qty -qty -qty -qty +fSJ +hUw +hUw +hUw +hUw dXG dXG dXG dXG -qty -hDx +hUw +fSJ dXG -hDx -qty -mLB +fSJ +hUw +kwn dIo dIo dIo dIo dIo dIo -hDx -rMg -qty -qty -hDx +fSJ +qJx +hUw +hUw +fSJ whu -tQq -xFx -hDx -sXi -sXi -sXi +pgZ +tCO +fSJ +bkp +bkp +bkp rGq rGq rGq rGq -sXi -sXi -sXi -sVP -gCX -gHb -aKW -gHb -aKW -aKW -gHb -aKW -gHb -sJT -xgr +bkp +bkp +bkp +cxx +qVa +hEE +oyA +hEE +oyA +oyA +hEE +oyA +hEE +bnt +wyS gjX -uZM -sJT -gHb -aKW -gHb +bgm +bnt +hEE +oyA +hEE rGq rGq jlk @@ -48916,20 +40740,20 @@ knh knh jlk jlk -aKW -aKW -sJT +oyA +oyA +bnt rGq rGq rGq -jmy +fgs rZP jDR rGq -aKW -sVP -gCX -aKW +oyA +cxx +qVa +oyA rGq rGq rGq @@ -49021,13 +40845,13 @@ bQM bQM aWV hoZ -gEF +rAZ hoZ -lwK -wNw -ykT -uhd -lwK +jny +mvz +quM +xfX +jny jXz oED hoZ @@ -49038,13 +40862,13 @@ gQK agi agi njx -fGb +jYW hoZ pCX hoZ -fBP -dsv -fBP +jqk +bOW +jqk dIo dIo dIo @@ -49057,66 +40881,66 @@ xHV xHV dXG dXG -qty +hUw dXG -qty +hUw dXG dXG lLe dXG dXG -muB -qty -qty -qty -qty +bam +hUw +hUw +hUw +hUw dXG dXG dXG -qty -hDx +hUw +fSJ vFQ -hDx +fSJ whu -hDx +fSJ whu -hDx -rMg -hDx -diP -tIK -hDx -hDx -hDx -lvs -xoQ +fSJ +qJx +fSJ +qJV +pRx +fSJ +fSJ +fSJ +tJD +jpZ amF amF hiO -tYd -oxK -lev -nPA +cIl +fPI +gyn +vmF hiO amF amF -vNx -gCX -aKW -xrJ -aKW -aKW -aKW -aKW -aKW -aKW -sJT -fBg +tpK +qVa +oyA +jpD +oyA +oyA +oyA +oyA +oyA +oyA +bnt +ugY ePx -lYc -sJT -aKW -aKW +ydQ +bnt +oyA +oyA rGq rGq jlk @@ -49126,22 +40950,22 @@ jlk bfF rGq rGq -jEG +qhV rZP rZP -sor -myg -aKW -aKW -sor -eev +gQy +wVZ +oyA +oyA +gQy +thh rZP rGq rGq -aKW -sVP -gCX -aKW +oyA +cxx +qVa +oyA rGq oyd rGq @@ -49235,31 +41059,31 @@ aWV cVQ hoZ pCX -lwK -uTX -dPC -nBV -lwK +jny +dAm +aRw +sNH +jny jXz hoZ -fGb -gEF +jYW +rAZ gVx hro jor jXz hoZ njx -fGb +jYW oED hoZ hoZ -fBP -hDx -fBP -fBP -fBP -fBP +jqk +fSJ +jqk +jqk +jqk +jqk pqC bQM bQM @@ -49267,8 +41091,8 @@ bQM pqC xHV xHV -hDx -hDx +fSJ +fSJ dXG dXG dXG @@ -49280,29 +41104,29 @@ dXG dXG dXG xHV -qty -qty -diP -qty -diP -qty -diP -qty -diP -qty -diP -qty -diP -qty -diP -hcb -lvs -diP -foZ -xFx -rNF -hDx -taX +hUw +hUw +qJV +hUw +qJV +hUw +qJV +hUw +qJV +hUw +qJV +hUw +qJV +hUw +qJV +kxI +tJD +qJV +bYN +tCO +fNg +fSJ +sng amF aXn jXZ @@ -49311,22 +41135,22 @@ jXZ jXZ qCW amF -geU -jVH -lwG -aKW -aKW -aKW -aKW -aKW -aKW -aKW -gHb -sJT -sVP +ftQ +nbM +bEB +oyA +oyA +oyA +oyA +oyA +oyA +oyA +hEE +bnt +cxx hjP -gCX -sJT +qVa +bnt uNM yhu uNM @@ -49334,11 +41158,11 @@ jlk jlk jlk jlk -uwI +lQI kpp rGq rGq -nUF +faX rZP rZP rZP @@ -49351,8 +41175,8 @@ rZP rGq rGq rGq -sVP -gCX +cxx +qVa rGq lzJ lzJ @@ -49445,33 +41269,33 @@ agi agi aWV hoZ -gEF +rAZ hoZ -lwK -vco -wVK -uFX -lwK -gEF -fGb -fGb +jny +sno +edh +dZw +jny +rAZ +jYW +jYW jXz hhL hro jqs -gEF +rAZ hoZ njx -fGb -fGb -fGb -fGb -fBP -hDx -hDx -hDx -hDx -fBP +jYW +jYW +jYW +jYW +jqk +fSJ +fSJ +fSJ +fSJ +jqk pqC bQM bQM @@ -49479,42 +41303,42 @@ bQM pqC xHV xHV -hDx +fSJ dXG -hDx -xkG -hDx -hDx -jcg -fBP -fBP -hDx -hDx -xHV -xHV -xHV -qty -lhQ -qty -lhQ -qty -lhQ -qty -lhQ -qty -lhQ -qty -lhQ -qty -lhQ -tzj -lvs -lhQ -aUM -lsl -xFx +fSJ +tzz +fSJ +fSJ +trJ +jqk +jqk +fSJ +fSJ +xHV +xHV +xHV +hUw +fuG +hUw +fuG +hUw +fuG +hUw +fuG +hUw +fuG +hUw +fuG +hUw +fuG +jeO +tJD +fuG +ghd +kQr +tCO apw -taX +sng amF amF amF @@ -49523,22 +41347,22 @@ amF amF amF amF -geU +ftQ jlk jlk jlk -aKW -aKW -aKW -aKW -nRI -aKW +oyA +oyA +oyA +oyA +kZA +oyA jlk -sJT -sVP +bnt +cxx hjP -gCX -sJT +qVa +bnt yhu jlJ jlk @@ -49546,11 +41370,11 @@ jlk jlk jlk jlk -uwI +lQI vsT rGq rGq -amj +iPr rZP jlk jlk @@ -49659,14 +41483,14 @@ aWV jXz jXz hoZ -lwK -lwK -lwK -lwK -lwK +jny +jny +jny +jny +jny jXz jXz -fGb +jYW agi gQK agi @@ -49679,11 +41503,11 @@ aWV aWV aWV aWV -fBP -fBP -ngk -hDx -fBP +jqk +jqk +fhu +fSJ +jqk pqC bQM bQM @@ -49697,33 +41521,33 @@ dIo dIo dIo dIo -mLB -qty -qty -mLB +kwn +hUw +hUw +kwn bby xHV xHV xHV xHV xHV -fGY +oxd dXG -qty -hDx +hUw +fSJ vFQ -hDx +fSJ whu -hDx +fSJ whu -hDx -rMg -hDx -lhQ -oVC -dKN -hDx -jUy +fSJ +qJx +fSJ +fuG +eBW +yhk +fSJ +tVE hDq apw apw @@ -49739,18 +41563,18 @@ amF rZP rZP rZP -gHb -qGX -qGX +hEE +cMH +cMH rZP rZP jlk jlk -sJT -sVP +bnt +cxx hjP -gCX -sJT +qVa +bnt uNM jlk jlk @@ -49762,7 +41586,7 @@ rZP jDR rGq rGq -pry +wsU jlk jlk jlk @@ -49774,7 +41598,7 @@ rGq rGq rGq rGq -jhi +pxl jlk jlk jlk @@ -49870,14 +41694,14 @@ rmu aWV vOP aWV -fGb -fGb -fGb -ipy -iSG -ipy -fGb -fGb +jYW +jYW +jYW +cAS +bXX +cAS +jYW +jYW hoZ hoZ mJq @@ -49892,10 +41716,10 @@ pab pnS aWV agi -hDx -fBP -hDx -fBP +fSJ +jqk +fSJ +jqk tYw xHV xHV @@ -49909,33 +41733,33 @@ dIo dIo dIo dIo -hDx -fBP -fBP -hDx +fSJ +jqk +jqk +fSJ xHV xHV xHV xHV xHV xHV -hDx -tZS -qUx -mLB +fSJ +bzY +qfF +kwn dIo dIo dIo kUj kUj kUj -hDx -rMg -qty -qty -hDx +fSJ +qJx +hUw +hUw +fSJ whu -hDx +fSJ qWO mZo apw @@ -49958,11 +41782,11 @@ bHY jlk rZP jlk -rhK -sVP +mAi +cxx hjP -gCX -vqZ +qVa +kmn jlk jlk jlk @@ -49986,7 +41810,7 @@ rGq oyd rGq rGq -jhi +pxl jlk jlk jlk @@ -49997,7 +41821,7 @@ fyO lzJ lzJ lzJ -cdD +hPZ irB irB baC @@ -50083,7 +41907,7 @@ jXz pPG jXz hoZ -fGb +jYW hoZ gFg hoZ @@ -50093,38 +41917,38 @@ hoZ hoZ hoZ hoZ -gEF -jEl -efz -gEF -efz -jEl -gEF -efz -efz -gEF +rAZ +pZd +fwQ +rAZ +fwQ +pZd +rAZ +fwQ +fwQ +rAZ pCX -hDx -fBP -vAZ -fBP -hDx -diX +fSJ +jqk +oCa +jqk +fSJ +bcW xHV xHV xHV -rsz -hDx -hDx +dcQ +fSJ +fSJ dIo -hDx -uST -hDx +fSJ +usv +fSJ tYw xHV -qty -qty -hDx +hUw +hUw +fSJ xHV xHV xHV @@ -50133,24 +41957,24 @@ xHV xHV dIo dIo -jit -wFo +rQb +gAz dIo -xOa -xOa -hDx -hDx +oqZ +oqZ +fSJ +fSJ kUj kUj xHV -lhQ -oVC -gWT -fpp -bln -oVC +fuG +eBW +eaH +dPb +wXE +eBW apw -taX +sng amF amF amF @@ -50159,7 +41983,7 @@ amF amF amF amF -geU +ftQ jlk mHR oBd @@ -50170,15 +41994,15 @@ bBX jlk rZP jlk -rhK -sVP +mAi +cxx hjP -gCX -sVM +qVa +osi jlk jlk -iqt -iqt +nsG +nsG jlk jlk umy @@ -50205,11 +42029,11 @@ jlk lzJ lzJ lzJ -xAR +uVO lzJ lzJ lzJ -cdD +hPZ lzJ irB irB @@ -50291,9 +42115,9 @@ njx njx njx njx -lwK +jny vTB -lwK +jny hoZ hoZ hoZ @@ -50316,26 +42140,26 @@ hoZ pCX hoZ hoZ -gEF -fBP -hDx -fBP -hDx -jje -hDx -rsz -rsz -hDx +rAZ +jqk +fSJ +jqk +fSJ +vfi +fSJ +dcQ +dcQ +fSJ qXM -hDx -sFI +fSJ +snn lLe -qty -qty +hUw +hUw fJj -hDx -fBP -fBP +fSJ +jqk +jqk qXM xHV xHV @@ -50344,25 +42168,25 @@ tYw tYw tYw dIo -pcD -fBP -fBP -fBP -qty -fBP -fBP -fBP -qty +uIj +jqk +jqk +jqk +hUw +jqk +jqk +jqk +hUw kUj kUj -qty -muB -nsg -nsg -iKf +hUw +bam +wBE +wBE +xTp apw -hDx -taX +fSJ +sng amF fjX jXZ @@ -50371,23 +42195,23 @@ jXZ jXZ lZf amF -geU -xFf +ftQ +cze rZP rZP -qGX -qGX -qGX +cMH +cMH +cMH rZP rZP rZP jlk jlk -sVP +cxx hjP -gCX -sJT -jhi +qVa +bnt +pxl rLb hjP hjP @@ -50422,7 +42246,7 @@ irB uYx lzJ lzJ -ajK +hPE plu lzJ irB @@ -50503,9 +42327,9 @@ njx njx njx njx -lwK +jny vTT -lwK +jny hoZ hoZ gGx @@ -50529,26 +42353,26 @@ hoZ hoZ hoZ hoZ -hGZ -hDx -fBP +spG +fSJ +jqk jRk -nnx -hDx -hDx -vAZ +lUc +fSJ +fSJ +oCa dXG lLe dXG qXM dXG -qty -qty +hUw +hUw dXG -hDx -qty -qty -hDx +fSJ +hUw +hUw +fSJ xHV xHV tYw @@ -50556,35 +42380,35 @@ tYw tYw tYw dIo -qnK +raw xzj kdK xzj -fBP +jqk xzj xzj xzj -fBP +jqk xHV kUj -lhQ -oVC -hDx -hDx -hDx -lvs -xoQ +fuG +eBW +fSJ +fSJ +fSJ +tJD +jpZ amF amF hiO -wEX -sXi -sXi -kZS +iOD +bkp +bkp +dIJ hiO amF amF -bDx +jEF jlk jlk hjP @@ -50597,14 +42421,14 @@ rZP jlk jlk whp -gCX -sJT -aKW -aKW -aKW -aKW -aKW -bMd +qVa +bnt +oyA +oyA +oyA +oyA +oyA +jaK rGq rGq rGq @@ -50634,7 +42458,7 @@ irB irB lzJ lzJ -ajK +hPE lzJ lzJ lzJ @@ -50715,9 +42539,9 @@ njx njx njx njx -lwK +jny vZc -lwK +jny hoZ hoZ fqF @@ -50741,26 +42565,26 @@ hoZ hoZ hoZ pCX -fBP -hDx -fBP -fBP -fBP -fBP -sIQ +jqk +fSJ +jqk +jqk +jqk +jqk +web dXG -hDx +fSJ dXG -rsz +dcQ dIo -moJ -qty -moJ +rpL +hUw +rpL dIo -hDx -fBP -fBP -hDx +fSJ +jqk +jqk +fSJ uIG xHV tYw @@ -50768,55 +42592,55 @@ tYw tYw tYw dIo -wfy +dPe xzj xzj xzj -fBP +jqk xzj xzj xzj xHV xHV kUj -qty -qty -hDx +hUw +hUw +fSJ whu -nEs -oVC -hDx -pyK -sXi -pyK +lkc +eBW +fSJ +itc +bkp +itc rGq rGq rGq rGq -pyK -sXi -pyK -ncn -gUf -sJT -sJT -sJT -pOm +itc +bkp +itc +ajt +cPY +bnt +bnt +bnt +lbX fmY -aao -sJT +kwE +bnt jlk jlk jlk hjP -gCX -sJT -sJT -sJT -iAL -sJT -aKW -bMd +qVa +bnt +bnt +bnt +wrZ +bnt +oyA +jaK rGq bDU rGq @@ -50827,16 +42651,16 @@ rZP rZP jlk jlk -uvi +wgp uGM uGM -jUI +sKB fjr jgu jgu jgu irB -ajK +hPE lzJ lzJ uGM @@ -50845,7 +42669,7 @@ irB irB irB irB -cdD +hPZ lzJ lzJ lzJ @@ -50926,12 +42750,12 @@ njx njx njx njx -hwE +uMk jXz pPG jXz -fGb -fGb +jYW +jYW hoZ vjT gFg @@ -50954,25 +42778,25 @@ hoZ hoZ hoZ lLe -hDx -hDx -hDx -hDx -hDx -fBP +fSJ +fSJ +fSJ +fSJ +fSJ +jqk xHV -rsz +dcQ xHV xHV dIo -moJ -qty -moJ +rpL +hUw +rpL dIo -wJa -qty -qty -xoQ +uSk +hUw +hUw +jpZ tYw tYw tYw @@ -50980,54 +42804,54 @@ tYw tYw tYw dIo -rdX +afY xzj xzj xzj -fBP +jqk xzj xzj dXG xHV xHV dIo -lhQ -oVC -fpp -fpp -oVC -qty -qty -sXi +fuG +eBW +dPb +dPb +eBW +hUw +hUw +bkp fpn -sXi +bkp rGq rGq rGq rGq -sXi +bkp fpn -sXi -sVP -piL -peY -cJa -peY +bkp +cxx +vgo +byH +kbc +byH ddM iQK ddM -peY -peY -bST -peY +byH +byH +tCb +byH hjP -piL -peY -peY -peY -gUf -sJT -aKW +vgo +byH +byH +byH +cPY +bnt +oyA jlk jlk jlk @@ -51039,16 +42863,16 @@ dxE rZP jlk jlk -tdo +cTk uGM uGM -jUI -iZA +sKB +jBa jgu jgu jgu -nsn -ajK +nWW +hPE uGM lzJ lzJ @@ -51057,8 +42881,8 @@ irB irB irB irB -cdD -ajK +hPZ +hPE iSh lzJ lzJ @@ -51068,7 +42892,7 @@ irB irB irB irB -iAO +rmY wbI itN baC @@ -51133,9 +42957,9 @@ agi agi aWV jXz -lwK -lwK -lwK +jny +jny +jny jXz aWV aWV @@ -51153,97 +42977,97 @@ hoZ hoZ hoZ hoZ -gEF -jEl -efz -gEF -jEl -efz -gEF -jEl -efz -gEF +rAZ +pZd +fwQ +rAZ +pZd +fwQ +rAZ +pZd +fwQ +rAZ agi hoZ dXG -fon -hDx -hDx -hDx -hDx -fBP +wdD +fSJ +fSJ +fSJ +fSJ +jqk dIo tYw xHV xHV dIo -moJ -oGm -moJ +rpL +loK +rpL dIo -iPZ -fBP -fBP -hDx +xpa +jqk +jqk +fSJ tYw -gto -qNS +qgt +ifz tYw tYw tYw dIo -pcD -fBP -fBP -fBP -qty +uIj +jqk +jqk +jqk +hUw xHV -fBP +jqk xHV xHV xHV -hDx -qty -qty -nsg -nsg -xFx -qty -qty -sXi +fSJ +hUw +hUw +wBE +wBE +tCO +hUw +hUw +bkp fpn -sXi +bkp rGq ugT rGq rGq -sXi +bkp fpn -sXi -sVP -hxC -bEn -kCg -bEn -ajh +bkp +cxx +bCe +jXM +rjk +jXM +bhl ihC -hxC -bEn -bEn -aQM -bEn -bEn -bEn -bEn -ycn -aKW -gCX -sJT -aKW +bCe +jXM +jXM +bDa +jXM +jXM +jXM +jXM +kxW +oyA +qVa +bnt +oyA dro jlk jlk -jhi +pxl rGq rGq rGq @@ -51251,16 +43075,16 @@ rGq rZP jlk jlk -lrC +pUl uGM uGM -xub -xub -xub +asN +asN +asN vhB -xub -cdD -ajK +asN +hPZ +hPE lzJ lzJ irB @@ -51269,8 +43093,8 @@ irB irB irB irB -cdD -ajK +hPZ +hPE irB irB lzJ @@ -51279,8 +43103,8 @@ uGM irB irB irB -nfI -vHK +dWJ +fxk wbI itN baC @@ -51379,11 +43203,11 @@ agi agi xHV xHV -fBP -fBP -fBP -fBP -fBP +jqk +jqk +jqk +jqk +jqk dIo xHV xHV @@ -51393,14 +43217,14 @@ dIo dIo dIo dIo -cDj -rIX -rIX -gma -gma -gma -gma -cDj +gwd +oEU +oEU +bhc +bhc +bhc +bhc +gwd xJw xJw rja @@ -51413,45 +43237,45 @@ egv egv egv egv -gma +bhc apf -lhQ -oVC -hDx -vkM -tQq -xFx -hDx -sXi -sXi -sXi +fuG +eBW +fSJ +dNo +pgZ +tCO +fSJ +bkp +bkp +bkp rGq rGq rGq rGq -sXi -sXi -sXi -jVH -lwG +bkp +bkp +bkp +nbM +bEB jlk jlk -kRL -sVP +bxR +cxx hjP -gCX -sJT +qVa +bnt jlk jlk jlk -pOm -sJT -sJT -sVP +lbX +bnt +bnt +cxx hjP -gCX -sJT -aKW +qVa +bnt +oyA tMP jlk jlk @@ -51463,16 +43287,16 @@ cye jlk jlk jlk -lrC +pUl uGM uGM -xub -xub -xub +asN +asN +asN vhB -xub -cdD -ajK +asN +hPZ +hPE uGM lzJ irB @@ -51481,8 +43305,8 @@ irB irB irB irB -cdD -ajK +hPZ +hPE uGM uGM uGM @@ -51491,8 +43315,8 @@ uGM uGM uGM uGM -cdD -iAO +hPZ +rmY qkg itN baC @@ -51557,9 +43381,9 @@ agi agi aWV jXz -lwK -lwK -lwK +jny +jny +jny jXz jXz jXz @@ -51568,14 +43392,14 @@ uwP uwP dmu jXz -lwK +jny njx hoZ hoZ hoZ hoZ -fGb -fGb +jYW +jYW hoZ aWV aWV @@ -51598,76 +43422,76 @@ bvY apf eWu egv -cDj -gma -gma -gma -gma +gwd +bhc +bhc +bhc +bhc bfZ bfZ bfZ bfZ -gma -gma -nAr -gbD -rVZ -nAr -cDj +bhc +bhc +oyc +wzm +qtn +oyc +gwd xJw rja -vub +wak apf apf -vub +wak egv egv egv egv egv -gma +bhc xna -qty -qty -hDx -hDx -hDx -lvs +hUw +hUw +fSJ +fSJ +fSJ +tJD rZP amF amF hiO -tYd -hRs -qLN -emm +cIl +kLi +jTf +pzr hiO amF amF -duw +tkP jlk jlk jlk jlk -sVP +cxx hjP -gCX -eyM +qVa +kcW jlk jlk jlk jlk -jXB -sJT -sVP +fXy +bnt +cxx hjP -gCX -sJT +qVa +bnt jlk jlk jlk jlk -jhi +pxl rGq rGq rGq @@ -51675,16 +43499,16 @@ rGq jlk jlk jlk -tdo +cTk uGM uGM -jUI -waP +sKB +bcY jgu jgu jgu -rxh -ajK +lDY +hPE uGM hzz uGM @@ -51693,8 +43517,8 @@ irB irB irB irB -cdD -teH +hPZ +oIk oAV oAV tsQ @@ -51703,8 +43527,8 @@ uGM uGM lRI uGM -cdD -ajK +hPZ +hPE jFO itN itN @@ -51768,33 +43592,33 @@ agi agi agi aWV -tHi +lhy cOq njx njx -lwK +jny njx njx njx -lwK +jny dfz njx njx -lwK +jny njx hoZ hoZ hoZ hoZ hoZ -fGb -fGb +jYW +jYW agi agi agi agi hoZ -fGb +jYW eEo agi agi @@ -51803,13 +43627,13 @@ aWV aWV xJw eWu -dUs -iOt -iOt -uAv +viw +mdu +mdu +aCu apf -gma -gma +bhc +bhc bfZ bfZ bfZ @@ -51821,32 +43645,32 @@ bfZ bfZ bfZ bfZ -qPT -ddE -qwJ -eTn -mbN +wMH +rMM +eKE +har +vjg xJw rja -gma -xbQ +bhc +vzw xna -gma +bhc egv egv egv egv apf apf -vsc -tZS -oVC -fpp -fpp -fpp -oVC +wHh +bzY +eBW +dPb +dPb +dPb +eBW rZP -geU +ftQ amF aXn jXZ @@ -51855,53 +43679,53 @@ jXZ jXZ qCW amF -geU -lev +ftQ +gyn jlk jlk mpO -evc -sVP +tlJ +cxx hjP -gCX +qVa jlk jlk jlk jlk jlk jlk -sJT -sVP +bnt +cxx hjP -oYX -sJT +env +bnt jlk jlk jlk rZP -ofo -aKW +yhr +oyA rGq rGq rGq jlk jlk rZP -sRk +xEB uGM uGM -jUI +sKB xck jgu oCe jgu -cdD -ajK +hPZ +hPE uGM pWH uGM tdZ -oPC +leO irB jgu jgu @@ -51909,14 +43733,14 @@ rZh dMc jgu jgu -dxd -xub -qyB +rNk +asN +itz oAV oAV tsQ -cdD -ajK +hPZ +hPE vLH itN aju @@ -51980,33 +43804,33 @@ agi agi agi aWV -cBB +xuU njx njx njx -lwK +jny njx njx njx -lwK +jny njx njx njx -lwK -ykT -uhd +jny +quM +xfX agi -gEF +rAZ hoZ hoZ -fGb -fGb +jYW +jYW agi agi agi agi agi -fGb +jYW eEo agi jXz @@ -52015,10 +43839,10 @@ aWV aWV xJw xJw -tik -mMH -aBs -gFG +jei +atq +kmi +vih bfZ apf bfZ @@ -52033,30 +43857,30 @@ bfZ bfZ bfZ bfZ -nAr -mXY -qJJ -nAr -gma +oyc +rMH +cEC +oyc +bhc rja rja -gma +bhc apf apf -vsc -vub +wHh +wak egv -vub +wak apf -xbQ +vzw apf -gma -qty -qty +bhc +hUw +hUw tYw -hDx -hDx -hDx +fSJ +fSJ +fSJ uNM uNM uNM @@ -52072,53 +43896,53 @@ uNM uNM hjP mpO -evc -kKZ +tlJ +wfE hjP -gCX +qVa jlk jlk jlk jlk jlk jlk -wVu -hIo +wdu +pAv jlk -iDE -wVu +uID +wdu jlk jlk jlk rZP -aBk -aKW +rdv +oyA rGq rGq rGq -ivM -lkD +sBt +kJu glG -jUI +sKB uGM uGM -jUI +sKB oPZ jgu oCe jgu -cdD -ajK +hPZ +hPE uGM tdZ -oPC -war +leO +eIy jgu kXD jgu qOW -lDe -ofF +mQr +mYm chT jgu rZh @@ -52126,14 +43950,14 @@ qPC dMc jgu jgu -dxd -cdD -ajK -hhy -vwc -vwc -vwc -fuA +rNk +hPZ +hPE +wED +vFq +vFq +vFq +wSk qNv uGM jgu @@ -52192,21 +44016,21 @@ agi agi agi aWV -cBU +aTq njx njx njx -lwK +jny njx njx njx -lwK +jny njx njx njx -lwK +jny njx -nBV +sNH jXz hoZ hoZ @@ -52227,10 +44051,10 @@ xJw xJw xJw rja -tik -dGx -kLI -gFG +jei +vuO +tlX +vih bfZ bfZ mJe @@ -52249,28 +44073,28 @@ bfZ bfZ bfZ bfZ -gma +bhc apf apf -xbQ -gma +vzw +bhc apf apf apf apf apf apf -gma -gma +bhc +bhc apf -diP +qJV qXM -mLB +kwn tYw tYw dXG uNM -avf +urk uNM pYh elY @@ -52283,54 +44107,54 @@ uNM uNM uNM hjP -xqf -sJT -sVP +qLH +bnt +cxx hjP -uWg -sJT +pjP +bnt jlk jlk jlk jlk -aKW -sJT -sVP +oyA +bnt +cxx sVi -gCX -sJT -aKW +qVa +bnt +oyA jlk jlk rZP -nkx -aKW +ejh +oyA rGq rGq rGq -aKW -shC +oyA +goy glG -jUI +sKB uGM uGM -jUI -nGI +sKB +hiT jgu jgu jgu -rxh -ajK +lDY +hPE uGM -btz +oTK jgu kXD jgu wbI wbI wbI -cdD -ajK +hPZ +hPE wbI eVf wnu @@ -52338,14 +44162,14 @@ wnu dqE tNV kXD -dxd -cdD -ajK +rNk +hPZ +hPE lzJ -mEc -bDN -bDN -bDN +fJd +ocN +ocN +ocN qNv xZb jgu @@ -52404,21 +44228,21 @@ agi agi agi aWV -tHi +lhy njx njx njx -lwK +jny njx njx njx -lwK +jny njx njx njx -lwK -wVK -uFX +jny +edh +dZw jXz agi agi @@ -52430,8 +44254,8 @@ hoZ agi agi hoZ -fGb -fGb +jYW +jYW egv xJw xJw @@ -52439,119 +44263,119 @@ xJw xJw xJw rja -xSd -vky -vky -dOs +iSb +hmT +hmT +msd apf bfZ bfZ bfZ bfZ bfZ -gma -iht -gma -gma -gma -iht -gma +bhc +fvu +bhc +bhc +bhc +fvu +bhc bfZ bfZ bfZ bfZ bfZ bfZ -vsc -hSH +wHh +jrB apf -vsc -hyz +wHh +bne apf apf apf -gma -gma +bhc +bhc apf egv egv -xmH -rQF -fyA +ltW +lgd +djH hjP hjP hjP hjP -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -sJT +oyA +oyA +oyA +oyA +oyA +oyA +oyA +oyA +oyA +bnt foV hjP hjP -sJT -iAL -sVP +bnt +wrZ +cxx jah -gCX -sJT +qVa +bnt jlk jlk jlk -aKW -aKW -sJT -sVP +oyA +oyA +bnt +cxx sVi -gCX -sJT -aKW +qVa +bnt +oyA jlk jlk jlk -jhi +pxl rGq rGq rGq rGq -aKW -sCB +oyA +xdO glG -lrC +pUl uGM uGM -xub -xub -xub +asN +asN +asN vhB -xub -cdD -ajK +asN +hPZ +hPE tdZ -war +eIy kXD oRR dLq -hhy -vwc -vwc -oTU -mkB -vwc -vwc -aNn +wED +vFq +vFq +dMY +fKh +vFq +vFq +eIt wbI wbI lzJ kXD -dxd -cdD +rNk +hPZ lzJ irB lzJ @@ -52629,12 +44453,12 @@ rCO iJE dEI jXz -ykT -uhd +quM +xfX jXz agi agi -fGb +jYW hoZ hoZ idi @@ -52642,25 +44466,25 @@ hoZ agi agi hoZ -fGb -fGb +jYW +jYW rja rja rja rja rja rja -cDj +gwd bfZ bfZ apf bfZ bfZ -gma -gma -gma -gma -gma +bhc +bhc +bhc +bhc +bhc rja rja rja @@ -52668,15 +44492,15 @@ rja rja rja rja -cDj -gma +gwd +bhc bfZ bfZ bfZ bfZ bfZ -hOW -hyz +xBn +bne rja rja xJw @@ -52687,43 +44511,43 @@ apf egv egv egv -tbC -wUA -fmU +mEz +neY +mhC hjP hjP hjP -aKW -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT -sJT +oyA +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt +bnt uNM -hIo +pAv sVi -iDE +uID uNM -whL -nSa -tqM -aKW -aKW -sJT -sVP +qSo +bPi +drJ +oyA +oyA +bnt +cxx sVi -gCX -sJT -aKW +qVa +bnt +oyA jlk jlk jlk @@ -52735,36 +44559,36 @@ rGq jlk jlk rZP -pmM +vZe cFn uGM -xub -xub -xub +asN +asN +asN vhB -xub -cdD -ajK -btz +asN +hPZ +hPE +oTK jgu jgu wbI wbI -cdD -oGT -bDN -twd -bDN -bDN -gqH -ajK +hPZ +lnX +ocN +wwM +ocN +ocN +oAF +hPE wbI wbI wbI kXD -dxd -iFj -bDN +rNk +usj +ocN irB irB wbI @@ -52829,30 +44653,30 @@ aWV aWV jXz jXz -cQG +cZp njx -qkk +uuZ jXz -olT -olT -olT +oMk +oMk +oMk jXz -cQG +cZp njx -qkk +uuZ gKi njx -nBV +sNH jXz agi agi agi -fGb +jYW hoZ -ied -kdG -kdG -lEI +hEI +cIi +cIi +uzU hoZ cto hoZ @@ -52862,12 +44686,12 @@ rja rja rja rja -xWN +ncB bfZ bfZ bfZ bfZ -gma +bhc rja rja vVi @@ -52882,15 +44706,15 @@ xUi rja rja rja -iht -gma +fvu +bhc bfZ bfZ bfZ bfZ apf -gma -cDj +bhc +gwd rja xJw xJw @@ -52902,11 +44726,11 @@ egv jlk jlk jlk -aKW +oyA hjP hjP -aKW -sJT +oyA +bnt uNM sgw vFi @@ -52920,26 +44744,26 @@ sgw vFi yhu uNM -sJT -sVP +bnt +cxx hjP -uWg -sJT -sJT -sJT -sJT -sJT -sJT -sJT +pjP +bnt +bnt +bnt +bnt +bnt +bnt +bnt jlk jlk -gCX -sJT -aKW +qVa +bnt +oyA jlk jlk jlk -jhi +pxl rGq rGq rGq @@ -52950,31 +44774,31 @@ jlk irB irB irB -sRk -nGI +xEB +hiT jgu jgu jgu -rxh -teH -war +lDY +oIk +eIy kXD wbI jcv djf -cdD -ajK +hPZ +hPE sel qjc qjc pAO -hoN -bWE +aVV +fqS wbI jcv wbI kXD -vOp +vTX wHl wbI irB @@ -53039,53 +44863,53 @@ agi agi aWV aWV -cvf -cvf -lwK +seA +seA +jny njx -nBV -cvf -fGb +sNH +seA +jYW pkp -fGb -cvf -lwK +jYW +seA +jny njx -nBV +sNH gKi -wVK -uFX +edh +dZw jXz agi agi agi agi hoZ -iMm -krn -kJS -lMM +izD +iVm +bIM +jjB hoZ -fGb -fGb +jYW +jYW egv xJw xJw xJw xJw rja -wwZ +csG bfZ bfZ iJJ bfZ -mbN +vjg rja -gRV -bMr -bMr -bMr -bMr +rjj +vaA +vaA +vaA +vaA mDz toE mDz @@ -53096,16 +44920,16 @@ eTC rja rja rja -gma +bhc bfZ bfZ bfZ bfZ bfZ bfZ -gma -gma -mbN +bhc +bhc +vjg rja xJw xJw @@ -53114,41 +44938,41 @@ egv jlk bQM lHx -ezz -cyL -ubk -hAY -sJT -ncn -peY -peY -peY -peY -peY -peY -peY -peY -peY -peY -peY -hwn -xxh -eUk +eOR +txm +bvk +nEA +bnt +ajt +byH +byH +byH +byH +byH +byH +byH +byH +byH +byH +byH +bWZ +uCc +pft hjP -piL -cJa -peY -peY -peY -peY +vgo +kbc +byH +byH +byH +byH jlk jlk jlk jlk -gCX -sJT -aKW -aKW +qVa +bnt +oyA +oyA jlk jlk rGq @@ -53162,35 +44986,35 @@ jlk irB itN irB -lrC +pUl xck jgu itN jgu -cdD -jqg +hPZ +wvF jgu jgu jBQ bvK dLq -cdD -ajK -pGK -jfd -hRX -mjB -cdD -ajK +hPZ +hPE +nJv +iYE +lPY +dip +hPZ +hPE jBQ oRR dLq jgu jgu -dxd +rNk wbI -cdD -ajK +hPZ +hPE lzJ wbI irB @@ -53251,19 +45075,19 @@ agi aWV aWV jXz -cvf -cvf -lwK +seA +seA +jny hoZ -lwK -cvf -cQX -fGb -lwK -cvf -lwK -lwK -lwK +jny +seA +sgY +jYW +jny +seA +jny +jny +jny gKi gKi gKi @@ -53273,13 +45097,13 @@ agi agi agi hoZ -iMm -ksV -kNW -lMM +izD +tBo +gXQ +jjB hoZ -fGb -fGb +jYW +jYW rja xJw xJw @@ -53287,17 +45111,17 @@ xJw xJw rja rja -gma -gma +bhc +bhc bfZ bfZ -gma +bhc rja rja -tqN -jre -wmp -bMr +cVf +qGW +iBW +vaA xxD xxD xxD @@ -53309,15 +45133,15 @@ xxD mYb rja rja -gma +bhc bfZ bfZ bfZ -dUs -iOt -iOt -uAv -gma +viw +mdu +mdu +aCu +bhc rja rja rja @@ -53326,12 +45150,12 @@ egv bQM bQM lHx -jay +emT hjP dlA -aKW -sJT -sVP +oyA +bnt +cxx hjP hjP hjP @@ -53343,7 +45167,7 @@ hjP hjP hjP hjP -bMd +jaK hjP hjP hjP @@ -53358,13 +45182,13 @@ jlk jlk jlk jlk -sJT -aKW -aKW +bnt +oyA +oyA rGq knh -sJT -aKW +bnt +oyA rGq rGq jlk @@ -53379,30 +45203,30 @@ irB jgu itN jgu -cdD -iDo +hPZ +xwM jgu anu wbI rBz wbI -cdD -ajK -pGK -hRX -pzh -sQL -vbY -ajK +hPZ +hPE +nJv +lPY +hSv +jEV +qOL +hPE wbI rBz wbI qkg jgu -snq +arO wbI -cdD -ajK +hPZ +hPE wbI vtl irB @@ -53463,35 +45287,35 @@ agi jXz jXz jXz -ykT +quM njx njx -ykT -ykT -ykT +quM +quM +quM gzb -ykT -ykT -ykT +quM +quM +quM wRg -ykT -ykT -ykT +quM +quM +quM gzb wRg gzb -ykT -ykT -ykT -ykT +quM +quM +quM +quM hoZ -iWy -kty -kOb -iaO -fGb -fGb -gma +mFZ +gXB +nbj +uWk +jYW +jYW +bhc blb bfZ xJw @@ -53500,11 +45324,11 @@ egv egv rja rja -gma +bhc bfZ bfZ bfZ -gma +bhc rja vVi vVi @@ -53522,16 +45346,16 @@ xxD xxD rja rja -gma +bhc bfZ bfZ -tik -mMH -aBs -gFG -gma -gma -mbN +jei +atq +kmi +vih +bhc +bhc +vjg rja xJw egv @@ -53541,29 +45365,29 @@ rZP lHx rZP hjP -aKW -ryx -sVP +oyA +tYz +cxx hjP -hxC -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -aQM -poo -bEn -bEn -bEn -bEn -ycn -hxC -rYJ +bCe +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +bDa +dpg +jXM +jXM +jXM +jXM +kxW +bCe +snW rZP rZP rZP @@ -53571,12 +45395,12 @@ rZP jlk jlk jlk -aKW +oyA rGq rGq knh -sJT -aKW +bnt +oyA rGq rGq jlk @@ -53591,30 +45415,30 @@ irB jgu jgu jgu -cdD -weK -gSG -vwc -vwc -vwc -vwc -oTU -ajK -pGK -mxs -vhI -fgM -cdD -ixb -vwc -vwc -vwc -cpS -omw -kGh -vwc -oTU -ajK +hPZ +txP +rXB +vFq +vFq +vFq +vFq +dMY +hPE +nJv +saC +pKo +uuP +hPZ +hiY +vFq +vFq +vFq +tMo +axs +cyg +vFq +dMY +hPE fyO oyC wbI @@ -53665,34 +45489,34 @@ cAW agi agi aPD -bpC -bIX -fGb -fGb -fGb +seG +jjf +jYW +jYW +jYW hoZ hoZ hoZ mjx njx njx -fGb -fGb -fGb -qqX -fGb +jYW +jYW +jYW +diT +jYW njx njx njx -fGb -fGb -fGb -fGb -fGb -fGb -fGb -fGb -fGb +jYW +jYW +jYW +jYW +jYW +jYW +jYW +jYW +jYW hoZ hoZ pCX @@ -53701,10 +45525,10 @@ hoZ hoZ hoZ ngq -ied -iOt -iOt -uAv +hEI +mdu +mdu +aCu bfZ rja egv @@ -53712,21 +45536,21 @@ bfZ bfZ egv ccH -gma +bhc eWu bfZ bfZ bfZ bfZ -gma -gma -gma -gma -gma +bhc +bhc +bhc +bhc +bhc rja kze rja -wAa +iSS rja rja tDQ @@ -53735,15 +45559,15 @@ xxD xxD rja rja -cDj +gwd bfZ -tik -dGx -kLI -gFG +jei +vuO +tlX +vih bfZ bfZ -gma +bhc rja xJw egv @@ -53752,20 +45576,20 @@ bQM bQM bQM lHx -aKW -aKW -sJT -kKZ +oyA +oyA +bnt +wfE hjP -gCX -sJT -sJT -sJT -sJT -sJT -eyM -uIr -pER +qVa +bnt +bnt +bnt +bnt +bnt +kcW +xvx +ruk jlk jlk jlk @@ -53773,8 +45597,8 @@ jlk jlk jlk jlk -sVP -gCX +cxx +qVa jlk jlk jlk @@ -53783,12 +45607,12 @@ jlk jlk jlk jlk -aKW +oyA rGq rGq knh -sJT -aKW +bnt +oyA rGq rGq rGq @@ -53803,30 +45627,30 @@ irB itN itN uGM -cdD -qNW -xTi -bDN -bDN -bDN -bDN -gqH -tQJ -dqa -sbf -vhI -sQL -mRz -mEc -bDN -bDN -bDN -hqF +hPZ +mGX +gzG +ocN +ocN +ocN +ocN +oAF +tHw +rHL +lEg +pKo +jEV +lwl +fJd +ocN +ocN +ocN +swA hmd -itC -bDN -bDN -xIo +szS +ocN +ocN +aRV wbI wbI wbI @@ -53877,8 +45701,8 @@ cAW agi agi aPD -bpC -bJz +seG +nUR bPK clN clN @@ -53887,44 +45711,44 @@ clN clN crM csH -cxd -wVK -wVK -wVK -wVK -wVK -lwK +afW +edh +edh +edh +edh +edh +jny njx -lwK -wVK -wVK -wVK -wVK -wVK -lwK -wVK -wVK -wVK -fGb +jny +edh +edh +edh +edh +edh +jny +edh +edh +edh +jYW hoZ hoZ -wVK -wVK -wVK -wVK -fGb -tik -mQG -oEs -gFG -gma -gma +edh +edh +edh +edh +jYW +jei +lMx +axz +vih +bhc +bhc apf -gma -gma +bhc +bhc lag -gma -gma +bhc +bhc bfZ bfZ bfZ @@ -53935,27 +45759,27 @@ bfZ apf gHy bfZ -hyz -gma -gma +bne +bhc +bhc bfZ -cMJ +jth rja jta jta rja -xnA +mzY rja rja rja -gma -xSd -vky -vky -dOs -gma -gma -gma +bhc +iSb +hmT +hmT +msd +bhc +bhc +bhc rja xJw egv @@ -53966,17 +45790,17 @@ bQM rZP lHx rZP -sJT -sVP +bnt +cxx hjP -gCX -sJT -qGX -qGX -qGX -qGX -qGX -qGX +qVa +bnt +cMH +cMH +cMH +cMH +cMH +cMH jlk jlk jlk @@ -53985,15 +45809,15 @@ jlk jlk jlk jlk -hIo -iDE +pAv +uID jlk jlk jlk jlk jlk jlk -aKW +oyA rGq rGq rGq @@ -54015,21 +45839,21 @@ irB itN itN uGM -cdD -iDo +hPZ +xwM jgu anu wbI jcv wbI -cdD -ajK -pGK -uxN -gTc -sQL -tov -ajK +hPZ +hPE +nJv +rhv +jgz +jEV +qPY +hPE wbI jcv wbI @@ -54089,8 +45913,8 @@ cAW agi agi aPD -bpG -bJz +qMJ +nUR bQh hoZ hoZ @@ -54098,42 +45922,42 @@ hoZ hoZ jXz jXz -dBC -naj +rTe +xMU jXz -olT -olT -olT +oMk +oMk +oMk jXz -tdb -fGb -naj +wtS +jYW +xMU aWV -olT -olT -olT +oMk +oMk +oMk aWV -tdb +wtS hoZ hoZ hoZ hoZ -fGb +jYW hoZ hoZ -fGb -fGb -fGb -gma -tik -npx -oTz -gFG -gma -gma -gma +jYW +jYW +jYW +bhc +jei +bWX +leS +vih +bhc +bhc +bhc apf -gma +bhc lag apf apf @@ -54150,21 +45974,21 @@ bfZ bfZ bfZ bfZ -gma +bhc eWu rja rja rja rja -nYw -nYw -lmX +gcO +gcO +bWY rja -qjg +fDU bfZ apf imH -gma +bhc rja vVi vVi @@ -54178,36 +46002,36 @@ bQM bQM bQM lHx -sJT -sVP +bnt +cxx hjP -gCX -sJT -sJT -pGg -pGg -pGg -sJT -sJT -pGg -pGg +qVa +bnt +bnt +hJA +hJA +hJA +bnt +bnt +hJA +hJA jlk jlk jlk jlk -aKW -bVh -sVP -gCX -aKW -aKW +oyA +rlS +cxx +qVa +oyA +oyA jlk jlk -aKW -aKW -aKW -aKW -aKW +oyA +oyA +oyA +oyA +oyA dYI yio yio @@ -54225,23 +46049,23 @@ irB irB itN itN -tgv +xGH uGM -cdD -jqg +hPZ +wvF jgu jgu jBQ nAf dLq -cdD -ajK -pGK -hRX -sbf -sQL -cdD -ajK +hPZ +hPE +nJv +lPY +lEg +jEV +hPZ +hPE jBQ oRR dLq @@ -54302,45 +46126,45 @@ aWV aWV aWV aPD -bKM +fsw bQh hoZ hoZ -cqU +fIt jXz jXz ieW -fGb -nBV -nyl -wNw -rKS -uhd -chS -uTX -fGb -nBV -nyl -wNw -ykT -uhd -chS -uTX +jYW +sNH +aWB +mvz +gbb +xfX +gMs +dAm +jYW +sNH +aWB +mvz +quM +xfX +gMs +dAm hoZ -ghU +joB eEo eEo hoZ -fGb +jYW eEo eEo jXz jXz bfZ -xSd -vky -vky -dOs +iSb +hmT +hmT +msd bfZ rja egv @@ -54348,31 +46172,31 @@ bfZ bfZ egv egv -gma +bhc rKZ bfZ bfZ eWu -gma -gma -gma -gma +bhc +bhc +bhc +bhc bfZ bfZ -vsc +wHh bfZ gHy bfZ -gma -gma -gma +bhc +bhc +bhc rja rja -qPG -yfH -ujC +lPP +qjD +uuE rja -qIZ +ixm oKa apf iTm @@ -54390,36 +46214,36 @@ bQM bQM bQM lHx -weN -sVP +qmQ +cxx hjP -piL -peY -peY -peY -peY -peY -xxh -peY -peY -peY -peY -peY -peY -peY -peY -peY -eUk -gCX -aKW -aKW -aKW -aKW -aKW -fQx -aKW +vgo +byH +byH +byH +byH +byH +uCc +byH +byH +byH +byH +byH +byH +byH +byH +byH +pft +qVa +oyA +oyA +oyA +oyA +oyA +apn +oyA rGq -aKW +oyA nLV wIJ iyS @@ -54437,27 +46261,27 @@ uGT itN itN itN -gbU +nGe uGM -cdD -qyi -gng +hPZ +hrI +tco kXD wbI rBz wbI -uds -ajK +jNf +hPE iEi qPC qPC dMc -cdD -ajK +hPZ +hPE wbI rBz wbI -ooF +cOo itN bQM bQM @@ -54514,30 +46338,30 @@ aPD aPD aPD aPD -fGb +jYW bQh hoZ hoZ hoZ jXz -ulW +jDz fWS -fGb -nBV -lwK -uTX +jYW +sNH +jny +dAm njx -nBV -lwK -uTX -fGb -uNR -lwK -uTX +sNH +jny +dAm +jYW +heT +jny +dAm njx -nBV -lwK -uTX +sNH +jny +dAm fGB eEo agi @@ -54550,8 +46374,8 @@ agi aWV bfZ bfZ -gma -gma +bhc +bhc bfZ bfZ xJw @@ -54559,18 +46383,18 @@ egv egv egv rja -cDj +gwd bfZ bfZ bfZ -cDj +gwd rja vVi vVi vVi rja -gma -gma +bhc +bhc bfZ fIj bfZ @@ -54578,17 +46402,17 @@ bfZ bfZ bfZ bfZ -gma +bhc rja rja rja rja rja -gma +bhc imH iTm iTm -ibb +rUx vVi toE mDz @@ -54602,8 +46426,8 @@ bQM bQM bQM lHx -sJT -sVP +bnt +cxx hjP whp hjP @@ -54622,16 +46446,16 @@ hjP hjP ruE hjP -gCX -aKW -aKW +qVa +oyA +oyA rGq -aKW +oyA hjP hjP hjP -aKW -aKW +oyA +oyA bAc hgS hgS @@ -54643,29 +46467,29 @@ wbn rOo wRW jlk -pmM -gmv -xub -nGz -xub -lJm -xub +vZe +fnH +asN +nVk +asN +inM +asN uGM -cdD -ajK -btz +hPZ +hPE +oTK kXD wbI wbI wbI -cdD -mkB -vwc -vwc -dFE -vwc -oTU -ajK +hPZ +fKh +vFq +vFq +jbC +vFq +dMY +hPE wbI wbI tNV @@ -54721,35 +46545,35 @@ bTo pcu pcu agi -aCi -aVT -bac -bdS -bry +xnH +jPw +qad +uAR +wmX hoZ bQh hoZ -fGb +jYW jXz aWV jXz mlM -fGb -nBV -nyl -vco -wVK -cfz -chS -uTX -fGb -nBV -nyl -vco -wVK -uFX -chS -uTX +jYW +sNH +aWB +sno +edh +eBO +gMs +dAm +jYW +sNH +aWB +sno +edh +dZw +gMs +dAm agi aWV aWV @@ -54762,8 +46586,8 @@ egv egv egv egv -gma -gma +bhc +bhc apf xJw xJw @@ -54771,31 +46595,31 @@ xJw xJw xJw rja -xWN +ncB bfZ bfZ -gma +bhc rja rja -iCP +dgp xxD xZI rja vVi rja -gma +bhc bfZ -gma -gma +bhc +bhc apf bfZ bfZ oeZ -gma -gma -jfN -gma -gma +bhc +bhc +ezl +bhc +bhc bfZ apf bfZ @@ -54814,70 +46638,70 @@ xJw bQM bQM rZP -lOo -sVP +gzu +cxx hjP -hxC -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -bEn -kxM -bEn -bEn -bEn -lwG +bCe +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +jXM +qby +jXM +jXM +jXM +bEB rGq uNM uNM -aKW +oyA hjP -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -tEj +ato fpn -aKW +oyA fpn -aKW +oyA fpn vwM vhB -xub +asN vhB -xub +asN vhB -xub +asN vhB uGM -dGc -ajK +lYU +hPE vfQ kXD aBJ wKb wbI -iFj -bDN -bDN -gqH -mEc -bDN -bDN -xIo +usj +ocN +ocN +oAF +fJd +ocN +ocN +aRV wbI wZv lzJ @@ -54941,27 +46765,27 @@ aPD hoZ bQh hoZ -fGb +jYW jXz aWV jXz jXz -dBC -naj +rTe +xMU jXz -ond -ond -ond +lyB +lyB +lyB jXz -tdb -fGb -naj +wtS +jYW +xMU aWV -ond -ond -ond +lyB +lyB +lyB aWV -tdb +wtS agi aWV aWV @@ -54975,21 +46799,21 @@ egv egv egv apf -gma -gma +bhc +bhc rja xJw xJw xJw xJw rja -wwZ +csG bfZ bfZ -gma +bhc rja -wmp -bMr +iBW +vaA xxD xxD sII @@ -54999,7 +46823,7 @@ vVi kze vVi rja -cDj +gwd bfZ bfZ bfZ @@ -55011,7 +46835,7 @@ bfZ bfZ bfZ bfZ -gma +bhc vVi xxD xxD @@ -55020,17 +46844,17 @@ vyu xxD xxD xxD -bMr -jre +vaA +qGW wFU bQM bQM rZP -dbX -sVP +qKW +cxx hjP -gCX -hJc +qVa +xPu rZP lHx lHx @@ -55042,51 +46866,51 @@ lHx jlk jlk jlk -sJT -uxa -saI -sJT -kPi -sJT +bnt +gwB +dCN +bnt +ewH +bnt jlk uNM ubN hjP ubN fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -tHr +aKo fpn -aKW +oyA fpn vwM vhB -xub +asN vhB -xub +asN vhB -xub +asN vhB uGM -cdD -ajK +hPZ +hPE vfQ kXD -kIe +mFW tas tas tTA wbI wbI -cdD -kmE +hPZ +kEH wbI wbI wbI @@ -55150,30 +46974,30 @@ aWV aWV aWV aPD -bNN +jir bQh hoZ -fGb +jYW jXz aWV jXz ieW -fGb -nBV -nyl -wNw -ykT -uhd -chS -uTX -fGb -nBV -nyl -wNw -ykT -uhd -chS -uTX +jYW +sNH +aWB +mvz +quM +xfX +gMs +dAm +jYW +sNH +aWB +mvz +quM +xfX +gMs +dAm agi aWV aWV @@ -55186,22 +47010,22 @@ egv apf apf lag -gma -gma +bhc +bhc apf -gma +bhc egv egv rja rja ccH -cDj +gwd bfZ bfZ -mbN +vjg rja -jOr -bMr +qMa +vaA xxD xxD xxD @@ -55212,13 +47036,13 @@ xxD ntg rja rja -gma +bhc bfZ bfZ -dUs -iOt -iOt -uAv +viw +mdu +mdu +aCu bfZ bfZ bfZ @@ -55232,17 +47056,17 @@ xxD xxD xxD xxD -bMr -tqN +vaA +cVf wFU bQM bQM lHx -qCs -sVP +yeQ +cxx hjP -gCX -sJT +qVa +bnt lHx bQM bQM @@ -55262,33 +47086,33 @@ rGq jlk jlk uNM -kTK -aKW -pBg +wAY +oyA +cgk fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn -aKW +oyA fpn vwM vhB -xub +asN vhB -xub +asN vhB -xub +asN vhB uGM -cdD -ajK +hPZ +hPE vfQ jgu jgu @@ -55297,8 +47121,8 @@ qjc pAO jgu wuC -bod -wLJ +htw +bkz xIh itN wbI @@ -55361,31 +47185,31 @@ agi agi agi aPD -bAb -fGb +kHR +jYW bQh hoZ -cmm +aod jXz aWV -llG +gyT fWS -fGb -nBV -lwK -uTX +jYW +sNH +jny +dAm njx -nBV -lwK -uTX -fGb -nBV -lwK -uTX +sNH +jny +dAm +jYW +sNH +jny +dAm njx -nBV -fSl -uTX +sNH +sJf +dAm agi aWV aWV @@ -55400,20 +47224,20 @@ apf lag egv apf -gma -gma +bhc +bhc egv egv -cMJ -qSv -cDj +jth +gDF +gwd bfZ bfZ bfZ -gma +bhc rja -sCj -bMr +aOI +vaA xxD xxD xxD @@ -55424,18 +47248,18 @@ xxD xxD jta vVi -gma +bhc bfZ bfZ -tik -mMH -aBs -gFG +jei +atq +kmi +vih eWu bfZ eWu bfZ -gma +bhc rja rja rja @@ -55444,17 +47268,17 @@ rja tDQ xxD xxD -bMr -wmp +vaA +iBW wFU bQM bQM lHx -sJT -sVP +bnt +cxx hjP -gCX -sJT +qVa +bnt lHx bQM bQM @@ -55468,16 +47292,16 @@ jlk jlk sgw sgw -jFN +uXe rGq sgw sgw jlk uNM ubN -aKW +oyA ubN -tEj +ato hjP hjP hjP @@ -55491,26 +47315,26 @@ hjP hjP hjP rZP -xub -xub -xub -xub -xub -xub -xub +asN +asN +asN +asN +asN +asN +asN gte -cdD -ajK +hPZ +hPE kEp uRK uRK -sHb -xub -btz +cWz +asN +oTK jgu jgu sel -aiK +xmP jgu itN jBQ @@ -55573,8 +47397,8 @@ agi agi agi aPD -bDC -fGb +sCH +jYW bQk hoZ hoZ @@ -55582,22 +47406,22 @@ jXz aWV jXz mlM -fGb -nBV -nyl -vco -wVK -quy -chS -uTX -qqX -nBV -nyl -vco -rHd -uFX -chS -uTX +jYW +sNH +aWB +sno +edh +bmq +gMs +dAm +diT +sNH +aWB +sno +gWz +dZw +gMs +dAm agi aWV aWV @@ -55611,18 +47435,18 @@ apf egv egv egv -gma -gma -gma +bhc +bhc +bhc bfZ eWu -gma +bhc bfZ bfZ bfZ bfZ bfZ -gma +bhc rja rja vVi @@ -55637,36 +47461,36 @@ xxD jta rja rja -gma +bhc bfZ -tik -dGx -kLI -gFG -dUs -iOt -iOt -uAv +jei +vuO +tlX +vih +viw +mdu +mdu +aCu bfZ -gma +bhc rja -rvu -lmX -xnA +kJy +bWY +mzY xxD xxD xxD -bMr -vXr +vaA +riq xJw bQM bQM lHx -sJT -sVP +bnt +cxx hjP -gCX -sJT +qVa +bnt lHx bQM bQM @@ -55686,14 +47510,14 @@ fmg jlk jlk uNM -aJf -aKW -oWV +jnP +oyA +eZJ hjP -thi -thi -thi -thi +kyq +kyq +kyq +kyq hjP ohY eTb @@ -55703,27 +47527,27 @@ bBX amF rZP rZP -xnS -xnS -xnS -xnS -xkP -lIx -xub +kHz +kHz +kHz +kHz +dMD +eNJ +asN uGM -iFj -xIo +usj +aRV uGM uGM uGM lRI uGM kEp -hOR -hOR -aMZ -knv -hOR +kiv +kiv +mbJ +lrk +kiv itN wbI qJL @@ -55785,31 +47609,31 @@ agi agi agi aPD -bHI +kez hoZ bQh hoZ -fGb +jYW hoZ jXz jXz jXz -dBC -naj +rTe +xMU jXz -kcw -pxa -kcw +pSV +cOJ +pSV jXz -tdb -fGb -naj +wtS +jYW +xMU aWV -kcw -kcw -kcw +pSV +pSV +pSV aWV -wLX +msW agi agi dxS @@ -55823,11 +47647,11 @@ egv egv eXp eXp -gma -gma -gma -gma -gma +bhc +bhc +bhc +bhc +bhc bfZ bfZ bfZ @@ -55835,11 +47659,11 @@ bfZ bfZ bfZ bfZ -cDj +gwd rja -gma +bhc bfZ -gma +bhc rja vVi rja @@ -55849,18 +47673,18 @@ xxD xxD soN rja -gma +bhc bfZ -xSd -vky -vky -dOs -tik -mMH -aBs -gFG +iSb +hmT +hmT +msd +jei +atq +kmi +vih bfZ -gma +bhc rja rja rja @@ -55874,11 +47698,11 @@ xJw xJw xJw xJw -jiW -jiW -jiW -jiW -jiW +gTx +gTx +gTx +gTx +gTx cEw cEw cEw @@ -55888,13 +47712,13 @@ cEw cEw cEw cEw -jiW -jiW -bIg +gTx +gTx +qZc okv -jiW -bIg -jiW +gTx +qZc +gTx aTo aTo rZP @@ -55915,26 +47739,26 @@ rZP rZP rZP rZP -biH -biH -biH -biH +sJB +sJB +sJB +sJB itN itN itN itN -bLz -xnS +slW +kHz vhB vhB -xnS +kHz vhB vhB -xnS +kHz vhB vhB -xnS -xnS +kHz +kHz vhB itN itN @@ -56001,28 +47825,28 @@ hoZ hoZ bUw hoZ -fGb +jYW hoZ jXz jXz ieW njx -lwK -ykT -ykT -ykT -ykT -ykT -lwK +jny +quM +quM +quM +quM +quM +jny njx -lwK -ykT -ykT -ykT -ykT -ykT -lwK -uTX +jny +quM +quM +quM +quM +quM +jny +dAm agi agi agi @@ -56033,13 +47857,13 @@ qlf egv egv eXp -erB +hGd roC -sLT -gma +ntz +bhc eWu -gma -gma +bhc +bhc bfZ bfZ bfZ @@ -56048,34 +47872,34 @@ eGV bfZ bfZ bfZ -gma +bhc bfZ bfZ bfZ -gma -gma +bhc +bhc vVi bQy rja -xnA +mzY rja rja rja -qIZ +ixm mKt -dUs -iOt -iOt -uAv -tik -dGx -kLI -gFG +viw +mdu +mdu +aCu +jei +vuO +tlX +vih bfZ bfZ -gma -gma -gma +bhc +bhc +bhc nip apf apf @@ -56086,21 +47910,21 @@ ojv apf apf nip -jiW -ktD -joz -joz -jiW +gTx +xuJ +nGb +nGb +gTx bnA -wMI +kmR fXv fXv -xSB +lIT bnA -joz -joz -lhj -jiW +nGb +nGb +wKl +gTx aqJ dfV dfV @@ -56110,14 +47934,14 @@ naf naf cqz ggd -ssD +wWo bVO -ssD +wWo dfV -cyd -cyd -cyd -cyd +fBo +fBo +fBo +fBo dfV kzO dfV @@ -56127,14 +47951,14 @@ dfV dfV kzO dfV -cyd -cyd -cyd -cyd +fBo +fBo +fBo +fBo dfV -ssD +wWo iSi -ssD +wWo kOM kOM kOM @@ -56149,9 +47973,9 @@ kOM kOM kOM kOM -ssD +wWo iSi -ssD +wWo iSi hbC hbC @@ -56213,51 +48037,51 @@ hoZ bNP hoZ hoZ -fGb +jYW hoZ jXz -xaS +kIA fWS -fGb +jYW njx -fGb -fGb -fGb -fGb -fGb +jYW +jYW +jYW +jYW +jYW njx -tZN +dZq uTS -fGb -fIv -fGb -fGb -fGb +jYW +gjI +jYW +jYW +jYW njx -uTX -fGb +dAm +jYW agi agi bGY -vFr -aVU -aVU -bel +vKN +dZv +dZv +odr hTs eXp -gma +bhc bfZ apf -lDm +vKp bfZ bfZ eaZ bfZ bfZ -gma -gma -gma -gma +bhc +bhc +bhc +bhc bfZ bfZ bfZ @@ -56265,29 +48089,29 @@ oeZ bfZ bfZ bfZ -gma +bhc rja rja rja -nYw -nYw -ajX +gcO +gcO +fRq rja -gma +bhc bfZ -tik -mMH -aBs -gFG -xSd -vky -vky -dOs -hOW +jei +atq +kmi +vih +iSb +hmT +hmT +msd +xBn bfZ tpY bfZ -gma +bhc nip apf apf @@ -56298,21 +48122,21 @@ apf apf apf nip -jiW -joz +gTx +nGb fXv -joz -jiW +nGb +gTx uLJ fzs fXv -hgC +mBM fXv wAn -joz -joz -lhj -jiW +nGb +nGb +wKl +gTx rol okv okv @@ -56322,9 +48146,9 @@ ygw kEy sDL fiq -vzB +qJo fiq -vzB +qJo okv uSA uSA @@ -56344,9 +48168,9 @@ uSA uSA uSA okv -vzB +qJo fiq -vzB +qJo lzJ lzJ lzJ @@ -56361,9 +48185,9 @@ lzJ lzJ lzJ lzJ -vzB +qJo fiq -vzB +qJo kPz bQM bQM @@ -56422,7 +48246,7 @@ agi agi agi hoZ -fGb +jYW hoZ hoZ hoZ @@ -56431,46 +48255,46 @@ jXz jXz mlM njx -lwK +jny agi agi agi agi agi -lwK +jny njx -lwK -wVK -wVK -wVK -wVK -wVK -lwK -fpi -fGb +jny +edh +edh +edh +edh +edh +jny +vGG +jYW agi agi whf -lUu -rBs -rBs -nxl +xfg +uJN +uJN +hAV whf apf -gma +bhc gGu vzh -lDm +vKp uLd xwD bfZ gGu -gma +bhc rja rja rja rja -gma +bhc eWu bfZ bfZ @@ -56478,19 +48302,19 @@ bfZ fIj bfZ eWu -cDj +gwd rja rja -qPG -ujC +lPP +uuE rja rja -gma +bhc bfZ -tik -dGx -kLI -gFG +jei +vuO +tlX +vih eWu bfZ eWu @@ -56498,8 +48322,8 @@ bfZ bfZ bfZ bfZ -vsc -gma +wHh +bhc rja rja eWu @@ -56510,21 +48334,21 @@ eWu eWu rja rja -jiW -joz -joz -joz -jiW +gTx +nGb +nGb +nGb +gTx uXw fXv -akw +myA fXv fXv bnA -joz -joz -lhj -jiW +nGb +nGb +wKl +gTx rol okv aqJ @@ -56534,14 +48358,14 @@ vcf vcf lku mzT -ssD +wWo ciX -ssD +wWo dfV -cyd -cyd -cyd -cyd +fBo +fBo +fBo +fBo dfV mZV dfV @@ -56551,14 +48375,14 @@ dfV dfV mZV dfV -cyd -cyd -cyd -cyd +fBo +fBo +fBo +fBo dfV -ssD +wWo iSi -ssD +wWo kOM kOM kOM @@ -56573,9 +48397,9 @@ kOM kOM kOM kOM -ssD +wWo iSi -ssD +wWo iSi hbC hbC @@ -56647,27 +48471,27 @@ njx jXz agi agi -ond +lyB jXz -uTX -fGb +dAm +jYW agi aWV -olT -lwK -mVg +oMk +jny +pmJ aWV hoZ -uTX -fGb -nBV -lwK -oKV -rBs -aVU -bOK -rBs -khu +dAm +jYW +sNH +jny +szF +uJN +dZv +jMW +uJN +nWj apf bfZ apf @@ -56677,13 +48501,13 @@ bfZ uLd bfZ oeZ -mbN +vjg rja -jdo -pTA +vOk +crh rja -cDj -gma +gwd +bhc bfZ bfZ bfZ @@ -56691,26 +48515,26 @@ bfZ bfZ bfZ dAA -hyX +lAX rja rja rja rja -cDj +gwd bfZ bfZ -xSd -vky -vky -dOs +iSb +hmT +hmT +msd bfZ apf -vsc +wHh apf bfZ apf bfZ -gma +bhc rja rja rja @@ -56723,28 +48547,28 @@ rja rja rja bnA -mfK -jiW -jiW -iYI +bjb +gTx +gTx +sjA bnA -mfK +bjb pJa fXv -jiW +gTx bnA -qNw -joz -lhj -jiW +eMn +nGb +wKl +gTx rol pLQ rol -jiW -jiW -jiW -jiW -ayA +gTx +gTx +gTx +gTx +mhc cEw cEw cEw @@ -56763,26 +48587,26 @@ tRH tRH tRH tRH -biH -biH -biH -biH +sJB +sJB +sJB +sJB itN itN itN itN -sqB -gyU +rej +vws vhB vhB -gyU +vws vhB vhB -gyU +vws vhB vhB -gyU -gyU +vws +vws vhB itN itN @@ -56844,42 +48668,42 @@ agi agi agi agi -fGb -fGb -fGb -ghU -fGb +jYW +jYW +jYW +joB +jYW hoZ hoZ hoZ -fGb +jYW moW njx njx -nyl -agi -ykT -uhd -chS -uTX -fGb -agi -nyl -wNw -ykT -ifq -chS +aWB +agi +quM +xfX +gMs +dAm +jYW +agi +aWB +mvz +quM +vXu +gMs rPZ -uTX -fGb -nBV -lwK -aVU -aVU -aVU -aVU -aVU -gec +dAm +jYW +sNH +jny +dZv +dZv +dZv +dZv +dZv +tsJ apf nre bfZ @@ -56889,39 +48713,39 @@ bfZ bfZ bfZ bfZ -gma +bhc rja -lAv -nYw +sJP +gcO rja rja rja -gma -hgr -gma -gma +bhc +sGk +bhc +bhc bfZ bfZ bfZ bfZ -nAr -gbD -iGL -nAr +oyc +wzm +rrg +oyc bfZ bfZ bfZ bfZ bfZ -gma -gma -wZo -gma -gma +bhc +bhc +rYG +bhc +bhc apf bfZ bfZ -hOW +xBn apf rja rja @@ -56935,56 +48759,56 @@ rja rja rja bnA -vUa +rsR ifs -nuE -vUa +aOH +rsR bnA jbU xZD bnA bgc bnA -joz -vrc -lhj -jiW +nGb +srF +wKl +gTx rol okv rol -jiW -joz +gTx +nGb uSA uSA -aHx +xSp bnA -dnx -jiW -ioP +pbx +gTx +tYm wrR -iyu -oqn -oqn -cRS +cbd +vek +vek +nwa ipd -npp -lfJ -coT -kul -kul +fxA +eRo +upC +kml +kml hja -hyR -hGC -iyq -gyU -gyU -gyU -xub -xub -xub -xub -hhy -aNn +jCa +kyA +dOj +vws +vws +vws +asN +asN +asN +asN +wED +eIt uGM uGM gUO @@ -56993,8 +48817,8 @@ uGM uGM uGM uGM -hhy -aNn +wED +eIt uGM uGM uGM @@ -57059,39 +48883,39 @@ agi hoZ vjT gFg -ipy -fGb +cAS +jYW hoZ hoZ hoZ -fGb +jYW hoZ njx njx -lwK -uTX +jny +dAm njx -qIO -lwK -uTX -ugC -nBV -lwK -uTX +mgl +jny +dAm +wTl +sNH +jny +dAm hoZ -nBV -fNp +sNH +jhW hoZ -uTX -fGb -nBV -lwK -aVU -aVU -imz -aVU -aVU -khu +dAm +jYW +sNH +jny +dZv +dZv +owR +dZv +dZv +nWj tfX gFc gFc @@ -57101,10 +48925,10 @@ eWu gGu bfZ bfZ -gma +bhc rja rja -xnA +mzY rja jta rja @@ -57112,19 +48936,19 @@ vVi vVi vVi rja -gma +bhc dAA bfZ bfZ -qPT -ddE -qwJ -eTn +wMH +rMM +eKE +har bfZ bfZ bfZ -gma -gma +bhc +bhc bis bis bis @@ -57133,8 +48957,8 @@ bis muO mNh ycC -vYL -gXt +hjz +sRl muO bis bis @@ -57142,61 +48966,61 @@ bis bis bis bis -pxR -fcX -bEO -kEE +scj +ykQ +uaj +bTb xvB -jiW -kpm +gTx +kYg fXv -eAy -jiW -kpm +mfB +gTx +kYg fXv -eAy -jiW +mfB +gTx xvB -kpm +kYg eZm -tMn -jiW +opb +gTx rol pLQ rol -jiW -joz +gTx +nGb ndt -pLh +puI nyo bnA -vjz -jiW -vjz +wIH +gTx +wIH wrR jGA jGA jGA xFB ipd -npp -cLR -wRZ -wRZ -wRZ +fxA +eaq +tZT +tZT +tZT pDg -wRZ -vxV -xub +tZT +nfq +asN vhB vhB -xub +asN vhB vhB -xub +asN vhB -cdD -ajK +hPZ +hPE jgu jgu uGM @@ -57205,8 +49029,8 @@ fZD wbI wbI agG -xzI -tVB +aGB +bCB nKX wbI wbI @@ -57272,38 +49096,38 @@ hoZ gFg hoZ gFg -gEF +rAZ gzb gzb gzb -gEF +rAZ hoZ njx njx -nyl -vco -wVK -uFX -rMt -uTX -fGb -uXu -lwK -vco -pxa -uFX -chS +aWB +sno +edh +dZw +vrY +dAm +jYW +wzy +jny +sno +cOJ +dZw +gMs hoZ -uTX -fGb -nBV -lwK -rBs -rBs -aVU -aVU -vDR -sUY +dAm +jYW +sNH +jny +uJN +uJN +dZv +dZv +gNy +ohr apf bfZ umZ @@ -57314,27 +49138,27 @@ bfZ bfZ eGV bfZ -gma +bhc vVi xxD vXS xxD -vXr -upF -ejp -kdw +riq +bLn +oVa +prB rja -qwh +nNa bfZ -gma -gma -nAr -mXY -qJJ -nAr -gma -gma -gma +bhc +bhc +oyc +rMH +cEC +oyc +bhc +bhc +bhc bis bis bis @@ -57344,88 +49168,88 @@ bis bis wGM ycC -gXt +sRl ycC mNh dDU -olC +fZY bis bis bis -uCW -vmH -bEO -bEO -bEO -kEE +jCN +apH +uaj +uaj +uaj +bTb okv -jiW -kpm +gTx +kYg fXv -eAy -jiW -kpm +mfB +gTx +kYg fXv -eAy -jiW +mfB +gTx okv -kpm +kYg fUF uSA -jiW +gTx rol okv rol -jiW -joz +gTx +nGb uSA uSA xVh kLT qxB fXv -jiW +gTx eMG jGA jGA jGA xFB ipd -tyO -cLR -wRZ -dMv -qfU +nEY +eaq +tZT +uWc +wjA mXe -oJO -bcg -dFw -xub -xub -xub -xub -xub -xub -iNw -cdD -ajK +jCB +lys +jmt +asN +asN +asN +asN +asN +asN +iBd +hPZ +hPE kXD -lsr +kbo vhB kBV wbI -qUo -fAv +xqk +lvO vtl -cdD -ajK +hPZ +hPE ivz -jot -fAv +ugN +lvO wbI bNT -jot -fAv +ugN +lvO vtl uGM wRn @@ -57484,46 +49308,46 @@ hoZ vjT gFg vjT -fGb +jYW lrA lrA lrA -fGb +jYW hoZ njx njx jXz -ond -ond -ond +lyB +lyB +lyB jXz -uTX -fGb -nBV +dAm +jYW +sNH fGB -kXw -fNp -fNp +sPN +jhW +jhW aWV -fGb -uTX -fGb +jYW +dAm +jYW mbC dxS whf -hvg -sdY -rBs -qLI -gec -lDm +vCt +eEs +uJN +tjR +tsJ +vKp rEm nWC -sUq +tgU eWu -lDm +vKp eWu -gma +bhc gFc bfZ bfZ @@ -57531,113 +49355,113 @@ tob xxD xxD xxD -bMr -bMr -iRe -vKV +vaA +vaA +iuA +rNC rja -qIZ -gma -dUs -iOt -iOt -iOt -iOt -iOt -iOt -iOt -uAv +ixm +bhc +viw +mdu +mdu +mdu +mdu +mdu +mdu +mdu +aCu bis bis htb -clP -clP -bEP +uRT +uRT +cux eTc eED ycC lqq ycC lqq -cmW +oyq ycC ycC -oys -ruv -ruv -ruv -tjQ -tJe -bEO -kEE +iAM +jJo +jJo +jJo +aTc +sPb +uaj +bTb okv -jiW -kpm +gTx +kYg muZ -eAy -jiW -kpm +mfB +gTx +kYg vxr -eAy -jiW +mfB +gTx okv -kpm +kYg fUF uSA -jiW +gTx rol pLQ rol -jiW -joz +gTx +nGb fXv fXv fXv uSA ena fXv -jiW +gTx bPG jGA jGA jGA xFB ipd -tyO -cLR -tII -vxV +nEY +eaq +lyE +nfq wrR ipd ipd nvD -dxd +rNk vhB vhB -xub +asN vhB vhB -xub +asN vhB -cdD -ajK +hPZ +hPE kXD -tjo +lTD vhB uGM aRT -kjT -qun +jFg +ghy oyC -cdD -ajK +hPZ +hPE aRT -kjT -qun +jFg +ghy tfx qaO -azs -auQ +coV +tkg oyC uGM uGM @@ -57696,49 +49520,49 @@ hoZ gGx hoZ hoZ -fGb +jYW lrA agi lrA -fGb +jYW hoZ njx njx -nyl -wNw -ykT -uhd -chS -uTX -fGb -veM -lwK -wNw -esF -uhd -chS -fGb -uTX -fGb +aWB +mvz +quM +xfX +gMs +dAm +jYW +fAd +jny +mvz +dow +xfX +gMs +jYW +dAm +jYW eWu eXp vTv heO -vFr -aVU -bel +vKN +dZv +odr bIZ eXp -lDm -gma -wEa -lDm -gma -njq -gma +vKp +bhc +qGC +vKp +bhc +cNa +bhc bfZ bfZ -gma +bhc rja rja mfR @@ -57748,104 +49572,104 @@ xxD xxD xxD vVi -dUs -iOt -hJw -gma -gma -gma -gma -gma -gma -gma -gFG +viw +mdu +hob +bhc +bhc +bhc +bhc +bhc +bhc +bhc +vih bis bis -sfs +sZt lqq mxR lqq -jjW +uSC pYc lqq lqq geL -bEO +uaj ycC -uRO -ydk -ruv -bEO -bEO +ulC +whS +jJo +uaj +uaj ycC -bEO -kEE -bEO -kEE +uaj +bTb +uaj +bTb okv -jiW -kpm +gTx +kYg ndt -pLh +puI ofw -jNA +qSi bzL -eAy -jiW +mfB +gTx okv -kpm +kYg fUF -joz -jiW +nGb +gTx rol aVd rol -jiW -joz +gTx +nGb fXv fXv fXv uSA ena fXv -jiW +gTx bPG jGA jGA jGA xFB ipd -cyO -cLR -wRZ -jya -kul +xJn +eaq +tZT +hyV +kml hja -hyR -hGC -sHb -xub -xub -iNw -xub -xub -xub -xub -cdD -ajK +jCa +kyA +cWz +asN +asN +iBd +asN +asN +asN +asN +hPZ +hPE jgu -vrw +ihU uGM uGM bNT -kjT -qun +jFg +ghy oRR -bAU -ajK +iNF +hPE aRT -kjT -qun +jFg +ghy fQB wbI cCt @@ -57853,8 +49677,8 @@ wbI wbI uGM uGM -jUI -bsF +sKB +jiP jgu itN itN @@ -57908,30 +49732,30 @@ hoZ fqF hoZ hoZ -fGb +jYW lrA agi lrA -fGb +jYW hoZ njx njx -lwK -uTX +jny +dAm njx -nBV -lwK -uTX -fGb -nBV +sNH +jny +dAm +jYW +sNH hoZ hoZ njx -nBV -fSl -fGb -uTX -fGb +sNH +sJf +jYW +dAm +jYW eWu nga eXp @@ -57941,17 +49765,17 @@ apf apf apf eXp -gma -gma -gma +bhc +bhc +bhc rja -aVJ +nvr ccH -gma +bhc eWu bfZ bfZ -cDj +gwd rja rja toE @@ -57960,113 +49784,113 @@ hqc xxD xxD tob -obT -gma -gma -gma -gma -gma -gma -gma -gma -gma -qam +vRG +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +oqF bis bis -tPz +hLk lqq lqq lqq -jjW +uSC ycC lqq lqq ycC lqq sBA -jLF -rrP -vMQ -vMQ -vMQ -vNF -bEO -kEE -vLV +nMY +voc +imv +imv +imv +bdf +uaj +bTb +umQ bis bnA tGi -joz -joz -joz +nGb +nGb +nGb hUf -joz -joz -joz +nGb +nGb +nGb feY bnA -qNw +eMn fUF -joz -jiW +nGb +gTx rol okv rol -jiW -joz +gTx +nGb uSA uSA pCS tYr rAk fXv -jiW +gTx bPG jGA jGA jGA xFB ipd -yhE -rkr -qfU -djd -wRZ +qvE +vec +wjA +wQH +tZT pDg -wRZ -vxV -xub +tZT +nfq +asN hCc vhB -xub +asN vhB vhB -lJm +inM vhB -dGc -ajK +lYU +hPE kXD -nej +ncs vhB uGM bNT -kjT -aPd +jFg +wxi vtl -cdD -nbU +hPZ +hfE lls -kjT -qun +jFg +ghy wbI bNT -jot -fAv +ugN +lvO vtl uGM uGM uGM -jUI +sKB jgu jgu jgu @@ -58120,51 +49944,51 @@ hoZ vjT gFg vjT -fGb +jYW lrA lrA lrA -fGb +jYW hoZ -tXQ +iPn njx -nyl -vco -wVK -uFX -rRb -uTX -fGb -nBV +aWB +sno +edh +dZw +lXn +dAm +jYW +sNH hoZ -tXQ -smX -uFX -chS +iPn +pHY +dZw +gMs agi -uTX -fGb +dAm +jYW egv nga nga nga -kOB +eNw apf huD nga nga apf apf -cMJ +jth rja rja -xUt -gma -gma +odq +bhc +bhc bfZ bfZ wxj -gma +bhc vVi fyy toE @@ -58172,24 +49996,24 @@ toE pxk bJb rja -obT -jxY -vky -vky -vky -rKX -vky -vky -aMq -gma -gFG +vRG +jCh +hmT +hmT +hmT +wBz +hmT +hmT +dsq +bhc +vih bis bis -nHm +dpv puw lqq rle -oph +jdy bis bis wMi @@ -58197,90 +50021,90 @@ wMi wMi bis bis -bEO -bEO -bEO +uaj +uaj +uaj uXB -uRO -bEO -uyr -vLV +ulC +uaj +oAZ +umQ bis bnA tGi -joz -joz -joz +nGb +nGb +nGb fXv -joz -joz -joz +nGb +nGb +nGb feY bnA -qNw +eMn fUF -xcf -jiW +jqY +gTx rol okv rol -jiW -joz +gTx +nGb ndt -pLh +puI nyo bnA -ioP -mBm -ioP +tYm +jJO +tYm wrR vUn -tcJ -tcJ -lUg +bsB +bsB +dcB wrR wrR wrR wrR -cLR -dMv +eaq +uWc mXe -oJO -bcg -dFw -xub -wvS -xub -xub -xub -xub -xub -cdD -ajK +jCB +lys +jmt +asN +fzl +asN +asN +asN +asN +asN +hPZ +hPE kXD -vyz +jSZ itd uGM bNT -azs -bJp +coV +bzr oyC -hln -dfu +axU +iFg pIt -azs -auQ +coV +tkg hFH bNT -azs -auQ +coV +tkg oyC uGM uGM uGM uGM -jUI -bsF +sKB +jiP jgu itN itN @@ -58332,51 +50156,51 @@ hoZ gFg iKg gFg -gEF +rAZ gzb gzb gzb -gEF +rAZ hoZ njx njx jXz -kcw -kcw -kcw +pSV +pSV +pSV jXz -gFK -fGb -nBV +fQA +jYW +sNH fGB -fNp -rLC -kcw +jhW +cQj +pSV aWV agi -vco -wVK +sno +edh qdJ apf -kOB +eNw apf apf -kOB -kOB -kOB -xxP -kOB +eNw +eNw +eNw +hak +eNw eYT eXp eXp eXp rja -gma +bhc eWu bfZ bfZ bfZ -gma +bhc vVi fMF pNj @@ -58384,91 +50208,91 @@ tDB rja rja rja -obT -gFG -gma -gma -gma -gma -gma -gma -obT -gma -gFG +vRG +vih +bhc +bhc +bhc +bhc +bhc +bhc +vRG +bhc +vih bis ycC fAZ -clP -clP -rFu +uRT +uRT +fMc gSP bis bis -aBb -clP -clP +cQq +uRT +uRT bis bis -bEO -sVN +uaj +qUl ycC -bEO -uRO -bEO -kEE -bEO -kEE +uaj +ulC +uaj +bTb +uaj +bTb xvB -jiW -kpm +gTx +kYg ndt -pLh -qkf -jNA +puI +neS +qSi bzL -eAy -jiW +mfB +gTx xvB -kpm +kYg fUF -joz -jiW +nGb +gTx rol okv rol -jiW -bLd +gTx +ilw vJn vJn bLg bnA -hmr -jiW -vjz +xSj +gTx +wIH wrR -gnm -guG -guG -guG -guG -cyO +rvq +yct +yct +yct +yct +xJn ipd -flq -cLR -vxV -gyi -gyi -vyX +sVS +eaq +nfq +oFO +oFO +omS itN itN itN itN jgu -xub -xub -xub -cdD -ajK +asN +asN +asN +hPZ +hPE jgu jgu uGM @@ -58477,8 +50301,8 @@ agv rPI qJf gfL -lty -iIX +rQQ +eNU doq wbI tmx @@ -58492,7 +50316,7 @@ uGM uGM lRI uGM -bcs +tFs jgu jgu jgu @@ -58544,112 +50368,112 @@ hoZ vjT gFg vjT -fGb +jYW hoZ hoZ hoZ hoZ hoZ njx -tXQ +iPn hoZ -ykT -ykT -ykT -ykT -lwK -fGb -lwK -ykT -ykT -ykT -ykT +quM +quM +quM +quM +jny +jYW +jny +quM +quM +quM +quM aWV jXz -fGb -fGb +jYW +jYW qdJ apf ybg -hIR -gyB -kOB -kOB -kOB -kOB -kOB +wur +aLG +eNw +eNw +eNw +eNw +eNw eXp eXp eXp eWu rja -gma -gma +bhc +bhc bfZ bfZ bfZ -gma +bhc rja vVi rja rja rja -dUs -iOt -hJw -gFG -gma -nAr -gbD -rVZ -nAr -gma -obT -gma -vsc +viw +mdu +hob +vih +bhc +oyc +wzm +qtn +oyc +bhc +vRG +bhc +wHh ycC -bEO +uaj ycC lqq lqq bis bis bis -xPF +uxF geL -wNr +nti cCF -tPz +hLk bis bis dje -bEO -bEO -uRO -hCS -kEE -bEO -kEE +uaj +uaj +ulC +eXj +bTb +uaj +bTb okv -jiW -kpm +gTx +kYg fXv -eAy -jiW -kpm +mfB +gTx +kYg muZ -eAy -jiW +mfB +gTx okv -kpm +kYg fUF uSA -jiW +gTx rol okv rol -jiW -emU +gTx +kYh wrR ipd ipd @@ -58658,39 +50482,39 @@ wrR wrR wrR wrR -guG -guG -guG -guG -guG -xAi +yct +yct +yct +yct +yct +gyl ipd -iBi -cLR -vxV -gyi -gyi -aIK +vmL +eaq +nfq +oFO +oFO +nit tRH bQM bQM itN -ujO +iVQ uGM uGM -xub -cdD -mkB -dkC -vwc -vwc -vwc -aDl -hhg -dFE -hUa -oTU -mAg +asN +hPZ +fKh +cUw +vFq +vFq +vFq +nsY +tSJ +jbC +xyx +dMY +nxB iKG uGM vNr @@ -58705,8 +50529,8 @@ uGM uGM uGM uGM -jUI -dkP +sKB +qVo jgu itN bQM @@ -58747,44 +50571,44 @@ bQM bQM agi agi -fGb -fGb -fGb +jYW +jYW +jYW aPD hoZ hoZ hoZ -fGb +jYW itv -fGb +jYW hoZ hoZ hoZ hoZ hoZ njx -tXQ -fGb -fGb -fGb -fGb -fGb -uTX -fGb +iPn +jYW +jYW +jYW +jYW +jYW +dAm +jYW hoZ -fGb -fGb -fGb -fGb -fGb -fGb -fGb -fGb +jYW +jYW +jYW +jYW +jYW +jYW +jYW +jYW egv nga -kOB -kOB -kOB +eNw +eNw +eNw qdJ qdJ qdJ @@ -58794,115 +50618,115 @@ rja rja rja eWu -dUs -pbZ -iOt -iOt -xbq -iOt -iOt -iOt -iOt -iOt -kUI -iOt -hJw -gma -gma -gFG -gma -qPT -ddE -qwJ -eTn -gma -obT -gma -gFG -gXt +viw +nmS +mdu +mdu +vIX +mdu +mdu +mdu +mdu +mdu +hwg +mdu +hob +bhc +bhc +vih +bhc +wMH +rMM +eKE +har +bhc +vRG +bhc +vih +sRl mNh lqq mxR nzI bis bis -dbq -qQA -uAX -clP +mPK +ooD +ftV +uRT puw -aXk -dbq +vDP +mPK dje ycC hNY ycC -uRO -bEO -kEE -bEO -wfi +ulC +uaj +bTb +uaj +mgz okv -jiW -kpm +gTx +kYg fXv -lFC -jiW -kpm +nwi +gTx +kYg fXv -eAy -jiW +mfB +gTx okv -kpm +kYg fUF uSA -jiW +gTx rol okv rol -jiW +gTx nyo -vPk -ohI -lfJ -tQs -kul -kul -kul -kul -kul -kul -kul -kul -wOR -yhE +sKy +aBF +eRo +fiO +kml +kml +kml +kml +kml +kml +kml +kml +qGg +qvE ipd -kGu -cLR -vxV -gyi -gyi -evH +xpy +eaq +nfq +oFO +oFO +fjc tRH bQM bQM itN -dMO +mIh uGM uGM -xub -iFj -bDN -bDN -eQv -bDN -bDN -cie -bDN -bDN -qWw -hue -gKt +asN +usj +ocN +ocN +hBY +ocN +ocN +dtH +ocN +ocN +dbT +vgi +vIp eoR uGM wFE @@ -58918,7 +50742,7 @@ uGM uGM uGM dAk -lrC +pUl jgu itN bQM @@ -58959,150 +50783,150 @@ bQM bQM agi agi -fGb +jYW aWV agi agi hoZ hoZ -fGb +jYW hoZ hoZ hoZ -fGb +jYW hoZ agi agi aWV agi jXz -wVK -wVK -wVK -wVK -lwK +edh +edh +edh +edh +jny hoZ -fGb -nBV -lwK -wVK -wVK -wVK -wVK -lwK -fGb -fGb +jYW +sNH +jny +edh +edh +edh +edh +jny +jYW +jYW egv nga apf -kOB -kOB +eNw +eNw qdJ -qtq +gXh apf -gRy -nAr -dUs -iOt -iOt -iOt -hJw -gma +meZ +oyc +viw +mdu +mdu +mdu +hob +bhc apf -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gFG -gma -nAr -mXY -qJJ -nAr -gma -obT -gFG +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +vih +bhc +oyc +rMH +cEC +oyc +bhc +vRG +vih dWB -bEO -gXt +uaj +sRl ycC lqq geL sBA -dXv +wey lqq -kNs +gcy ane vvp amd -uGu +oaz puw -gPS +sfa dyB mNh dDU -uRO +ulC ycC -kEE -bEO -kEE +bTb +uaj +bTb okv -jiW -kpm +gTx +kYg ndt -pLh -qkf -jNA +puI +neS +qSi bzL -eAy -jiW +mfB +gTx okv -kpm +kYg vdI -ivL -jiW +fxE +gTx rol okv rol -kGq -emU -vPk -ohI -ebm -qfU -qfU -qfU -fbL -qfU -qfU -qfU -qfU -djd -vxV -wcX +aRN +kYh +sKy +aBF +mRH +wjA +wjA +wjA +tPY +wjA +wjA +wjA +wjA +wQH +nfq +aze ipd -tyO -cLR -vxV -gyi -gyi -gyi +nEY +eaq +nfq +oFO +oFO +oFO tRH tRH bQM itN jgu -wGD -xub -xub +rBK +asN +asN wbI wbI wbI @@ -59113,8 +50937,8 @@ hbo jJS occ qBB -cdD -vyA +hPZ +scf rwu wbI uep @@ -59171,8 +50995,8 @@ bQM bQM agi aWV -adk -alJ +lKl +wEf dxS agi hoZ @@ -59180,8 +51004,8 @@ hoZ hoZ hoZ hoZ -nBV -fGb +sNH +jYW kAO agi agi @@ -59192,147 +51016,147 @@ aWV jXz jXz jXz -gEF +rAZ hoZ -fGb +jYW hoZ -gEF +rAZ jXz jXz jXz cvL -lwK +jny hoZ -fGb -hvh +jYW +oId apf -kOB -kOB -kOB +eNw +eNw +eNw qdJ apf iTm -sVa -iOt -hJw -gma -gma -gma -gma +lgL +mdu +hob +bhc +bhc +bhc +bhc apf -jxY -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -vky -dOs +jCh +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +hmT +msd rja rja rja rja rja rja -obT -gma -gFG +vRG +bhc +vih bis ycC nzI ycC lqq sBA -clP -clP -jjW +uRT +uRT +uSC rgg jnq hMf ycC ycC -clP +uRT dje ddG ddG -mWV -bEO -xDe +nOH +uaj +rqx bis bis bnA -qNw -joz -joz -joz +eMn +nGb +nGb +nGb fXv -joz -joz -joz +nGb +nGb +nGb feY bnA -qNw -vrc -lhj -jiW +eMn +srF +wKl +gTx rol okv rol -wlp -emU +eVa +kYh wrR wrR -tWo -wRZ -gyi +aHM +tZT +oFO nnX dyd dyd vqb -kCG -wRZ -cLR -wcm -kWD +whU +tZT +eaq +kQF +tze ipd -tyO -cLR -vxV -oex -gyi -dXH -dXH +nEY +eaq +nfq +pnH +oFO +xfn +xfn gEx bQM uGT -xub +asN uGM uGM -xub +asN bNT -yge -kvh +rtz +iqE wbI uGM uGM bNT -jot -nec +ugN +gtR vtl -cdD -ajK +hPZ +hPE bNT -jot -pIs -kDN -pIs -fAv +ugN +pBY +fGZ +pBY +lvO wbI gUO uGM @@ -59383,17 +51207,17 @@ bQM agi agi aWV -aji -aqS +oeF +nZr dxS dxS hoZ bmV hoZ -uTX +dAm hoZ -nBV -fGb +sNH +jYW hoZ agi agi @@ -59401,46 +51225,46 @@ agi agi jXz jXz -uBS -uBS -lwK -lwK -tgc -lwK -lwK -wLI -qQg -jnO -dxg -bzC -lwK +goC +goC +jny +jny +vaJ +jny +jny +ufa +pSQ +jKB +nMa +biB +jny hoZ pCX -gma +bhc iPx apf -gNY +oFn egv qdJ -gRy +meZ iTm iTm -hvh -gma -gma -jxY -vky -vky -xKf -dOs +oId +bhc +bhc +jCh +hmT +hmT +tjZ +msd eXp -bFt -dCo -nAr -nAr -nAr -gma -bFt +fDz +fnP +oyc +oyc +oyc +bhc +fDz eXp dTx eXp @@ -59452,107 +51276,107 @@ gVs hQH hQH rja -obT +vRG kMq -gFG +vih bis bis hPY lqq lqq sBA -jjW +uSC jpc -lNv +tdv lqq qbW dOE -kNs +gcy lqq -agT +hnD eFD -uRO -bEO +ulC +uaj hNY -bEO -kEE -bEO -bEO +uaj +bTb +uaj +uaj bnA -iKj -joz -joz -joz +ffW +nGb +nGb +nGb fXv -fJx -joz -joz +xtY +nGb +nGb fXv bnA fXv -joz -lhj -jiW +nGb +wKl +gTx rol okv rol -kGq -emU +aRN +kYh wrR -jeD -pan -jjS -qqa -hyG -nYk -nQN -oCI -tUe -xYA -cLR -vxV -rEe +wXi +pAo +bNF +hfo +gjy +neE +bfk +tDR +fFM +xgv +eaq +nfq +aGE ipd -cyO -cLR -vxV -gyi -kWj -iWg -iWg +xJn +eaq +nfq +oFO +xZC +gIN +gIN gEx bQM uGT -lmy -gbU -lQf +cNm +nGe +gLy jgu bNT -azs -auQ +coV +tkg wbI uGM uGM wbI -pKJ -qun +uhQ +ghy oyC -knu -fFC +wUP +uCN wbI -ukr -fOg -fOg -fOg -rGK +nfU +rHE +rHE +rHE +eke wbI uGM uGM eLu -vVu -cEl -cEl -ycd +oVP +fRE +fRE +fVG eLu twb twb @@ -59595,17 +51419,17 @@ bQM agi aWV aak -akE -arS -aCV +fqz +xds +oYv dxS hoZ hoZ -fGb +jYW hoZ hoZ hoZ -fGb +jYW hoZ agi agi @@ -59613,46 +51437,46 @@ agi agi aWV jXz -eTh +qMm njx -lwK -wVK -lwK +jny +edh +jny njx -lwK -wOD -wOD -lwK -wOD -lPq -fGb +jny +qzJ +qzJ +jny +qzJ +xuz +jYW hoZ hoZ -gma +bhc nga esS apf egv qdJ -nAr -obT +oyc +vRG apf -jxY -vky -xKf -dOs +jCh +hmT +tjZ +msd rja rja rja rja eXp -xYY -gma -nAr -nAr -nAr -gma -wMP +wub +bhc +oyc +oyc +oyc +bhc +hFL eXp pTR apf @@ -59664,9 +51488,9 @@ apf apf apf rja -obT +vRG kMq -qam +oqF bis bis bis @@ -59674,64 +51498,64 @@ wlG bis bis bis -dbq -clP -xNg -rFu -daA -clP -dbq +mPK +uRT +xek +fMc +lUO +uRT +mPK bis bis -hxU -bEO -uRO -bEO -kEE +nOR +uaj +ulC +uaj +bTb dje -bEO +uaj bnA -jiW -kpm +gTx +kYg ndt -pLh +puI ofw -jNA +qSi bzL -eAy -jiW +mfB +gTx fXv fXv -vrc +srF lGm -jiW +gTx rol okv rol -jiW +gTx nyo wrR -weS -mQe -xYA -nBK +icA +okn +xgv +rKm bSM bSM bSM bSM -qVF -foL -cLR -vxV -iBi +kJM +bNi +eaq +nfq +vmL ipd -xAi -cLR -vxV -gyi -iWg -eWO -iWg +gyl +eaq +nfq +oFO +gIN +omE +gIN gEx bQM uGT @@ -59743,27 +51567,27 @@ wbI mtj wbI wbI -xnS -xnS +kHz +kHz bNT -kjT -dqG +jFg +bvQ nFB -sNT -ajK +drb +hPE vLH -nCX -dQW -nCX -nCX -rwj +xHl +cpR +xHl +xHl +mIx wbI uGM uGM eLu -nJQ -cEl -cEl +mKv +fRE +fRE clG eLu twb @@ -59808,15 +51632,15 @@ agi agi aWV agi -awh -aIZ +mNf +moG dxS -fGb +jYW hoZ -fGb +jYW hoZ hoZ -nBV +sNH hoZ hoZ agi @@ -59825,32 +51649,32 @@ agi agi aWV jXz -lwK -lwK -wNw +jny +jny +mvz njx -uhd -lwK -viH -wOD -wOD -lwK -wOD -wOD -fGb -fGb -fGb +xfX +jny +tNz +qzJ +qzJ +jny +qzJ +qzJ +jYW +jYW +jYW apf uQE -gma +bhc apf rja rja -dUs -hJw -gma -gFG -mFm +viw +hob +bhc +vih +dJR rja rja eXp @@ -59858,13 +51682,13 @@ eXp eXp eXp eXp -bFt -gma -nAr -nAr -nAr -dCo -bFt +fDz +bhc +oyc +oyc +oyc +fnP +fDz eXp eXp eXp @@ -59876,9 +51700,9 @@ apf apf wvY rja -obT -gma -gFG +vRG +bhc +vih bis ewE ewE @@ -59887,63 +51711,63 @@ xIx bis bis bis -orr +vMC mxR -alX +pcn lqq -tPz +hLk bis bis bis bis bis -uRO -bEO -kEE -bEO -bEO +ulC +uaj +bTb +uaj +uaj bht hTM okv -pie -eAy -jiW -kpm +lJs +mfB +gTx +kYg muZ -eAy -jiW +mfB +gTx fXv fXv -joz +nGb lGm -tlM +smp rol qfR rol -jiW +gTx nyo wrR -gzA -eZL -cjs -mLS -eLO -eLO -eLO -eLO -eew -xYA -cLR -aLj -juE +wUp +plQ +qln +clg +xkM +xkM +xkM +xkM +dzm +xgv +eaq +xPZ +vRh ipd -yhE -cLR -vxV -gyi -gyi -nLf -nLf +qvE +eaq +nfq +oFO +oFO +cZC +cZC gEx bQM bQM @@ -59955,29 +51779,29 @@ itN jgu jgu jgu -rjn -rjn +aAy +aAy jgu -noe -qun +mof +ghy vtl -cdD -ajK +hPZ +hPE bNT -jot -kDN -kDN -kDN -fAv +ugN +fGZ +fGZ +fGZ +lvO vtl uGM uGM eLu -wKF -cEl -cEl +xrO +fRE +fRE clG -hhv +psD twb twb kPz @@ -60023,74 +51847,74 @@ azZ lAh aMg dxS -fGb -fGb -fGb -uTX +jYW +jYW +jYW +dAm hoZ -nBV +sNH hoZ hoZ aWV aWV agi -fGb +jYW aWV jXz -lwK -wLP +jny +dHM qLp -fGb +jYW frt -ugH -lwK -wSe -wSe -lwK -wSe -mSN +jej +jny +gvU +gvU +jny +gvU +bja egv eWu -gma +bhc apf apf apf uQE apf lag -obT -pmy -gma -gFG -iry +vRG +vMg +bhc +vih +dCJ rja eXp -nAr -gbD -rVZ -jIm +oyc +wzm +qtn +mjE eXp -nIf -fiF -nAr -nAr -nAr -tNs -wTo +lks +nOg +oyc +oyc +oyc +tol +iUb eXp -nAr -gbD -rVZ -nAr -uHX +oyc +wzm +qtn +oyc +vqK apf apf apf apf -uHX -obT -gma -gFG +vqK +vRG +bhc +vih wpD lpr ycC @@ -60100,61 +51924,61 @@ bis epn bis bis -rFu -clP -fzO -clP -nUy -aWD -aGs -bEO -nUy -uRO -bEO -kEE -sJw +fMc +uRT +kMM +uRT +vNn +fjK +gZW +uaj +vNn +ulC +uaj +bTb +vMZ hNY omI -jiW -kpm +gTx +kYg fXv -eAy -jiW -kpm +mfB +gTx +kYg fXv -eAy -jiW +mfB +gTx fXv fXv -joz -lhj -aVh +nGb +wKl +mwh kJf okv rol -jiW -emU +gTx +kYh wrR wrR -haU -aVS -gyi -heu -heu -gyi -gyi -hYT -wRZ -cLR -vxV +ueI +cbr +oFO +qTk +qTk +oFO +oFO +lMY +tZT +eaq +nfq wrR wrR wrR -sAK -vxV -nLf -gyi -wuP +nFY +nfq +cZC +oFO +lZk nvD tRH tRH @@ -60170,27 +51994,27 @@ rxz jJb cME eLu -noe -qun +mof +ghy oyC -cdD -ajK +hPZ +hPE bNT -azs -fOg -fOg -syU -auQ +coV +rHE +rHE +sNz +tkg oyC uGM vhB ayX -jmV +vnl gfo qPr -ycd +fVG clG -kDW +luP twb kPz bQM @@ -60237,72 +52061,72 @@ azZ agi qRg aWV -gEF +rAZ hoZ hoZ hoZ -gEF +rAZ agi agi agi hoZ -dfD -fGb +hoA +jYW jXz -lwK -wXP +jny +hAm qOy -xvD +qTj nGX -ukz -lwK -wNw -uhd +dJo +jny +mvz +xfX njx -wNw -uhd +mvz +xfX egv -gma -gma +bhc +bhc apf apf apf apf apf lag -obT -gma -gma -gFG -wCA +vRG +bhc +bhc +vih +akt rja eXp -qPT -ewY -gzF -sjl -mzF -dka +wMH +bJX +uBU +eEr +ous +kDP rTL azN azN azN vpJ -dka -gma -qPT -ddE -qwJ -eTn +kDP +bhc +wMH +rMM +eKE +har rja apf esS apf wAM rja -obT -gma -gFG +vRG +bhc +vih bis xIx ycC @@ -60317,58 +52141,58 @@ wMi wMi bis bis -jLF -nUy -dRm +nMY +vNn +ryh bis -uRO -bEO -kEE -bEO +ulC +uaj +bTb +uaj dje -gZT +vAs okv -aam +uUG fXv -eAy -jiW -kpm +mfB +gTx +kYg muZ -eAy -iTG +mfB +kMg twL fXv -joz -lhj -aVh +nGb +wKl +mwh uEj okv rol -jiW -emU -vPk -ohI -lfJ -kul -oQF -kul -kul -kul -kul -tQs -kul -eVb -jya -kul -kul -kul -elq -jya -kul -kul -kul -kul -idO +gTx +kYh +sKy +aBF +eRo +kml +wqE +kml +kml +kml +kml +fiO +kml +mtq +hyV +kml +kml +kml +skV +hyV +kml +kml +kml +kml +nWf gEx bQM bQM @@ -60376,33 +52200,33 @@ bQM bQM bQM tPN -luy -doY +gTb +xJV rxz cME jJb eLu -tOS -qun +nPE +ghy joE -cdD -qHK +hPZ +vAh wbI -nCX -nCX -xgx -nCX -pBT +xHl +xHl +dvE +xHl +aLr wbI uGM vhB ayX -cEl +fRE gfo gfo -ycd +fVG clG -mRk +xEj twb kPz bQM @@ -60449,30 +52273,30 @@ bQM agi aWV agi -lwK -uTX +jny +dAm hoZ -nBV -lwK +sNH +jny agi -gEF -fGb +rAZ +jYW hoZ hoZ -fGb +jYW hoZ -dfa -nBV +dLu +sNH njx -fGb +jYW njx -uTX -lwK -uTX -nBV +dAm +jny +dAm +sNH njx -uTX -nBV +dAm +sNH egv apf apf @@ -60482,39 +52306,39 @@ pKY qlf hcv hds -vBY -wek -gma -gFG +jox +mdm +bhc +vih eXp eXp eXp -nAr -mXY -uAv -qzB -gma -gma -gma -nAr -nAr -nAr -gma -gma -gma -nAr -mXY -qJJ -nAr +oyc +rMH +aCu +qvK +bhc +bhc +bhc +oyc +oyc +oyc +bhc +bhc +bhc +oyc +rMH +cEC +oyc rja rja rja rja rja rja -obT +vRG kMq -gFG +vih bis ewE ycC @@ -60533,9 +52357,9 @@ bis bis bis bis -uRO -bEO -kEE +ulC +uaj +bTb bis bis bnA @@ -60544,43 +52368,43 @@ cEw bnA bnA bnA -pqq -joz -joz -joz -ptV +foi +nGb +nGb +nGb +ksn fXv -joz +nGb lGm -aVh +mwh jji vjG rol -jiW +gTx nyo -vPk -ohI -dsQ -qfU -qfU -qfU -qfU -qfU -qfU -qfU -dDS -djd -dMv -qfU -qfU -djd -wRZ -wRZ -dMv -qfU -qfU -djd -vxV +sKy +aBF +tPm +wjA +wjA +wjA +wjA +wjA +wjA +wjA +xvP +wQH +uWc +wjA +wjA +wQH +tZT +tZT +uWc +wjA +wjA +wQH +nfq gEx bQM bQM @@ -60588,8 +52412,8 @@ bQM bQM bQM twb -qDn -hUO +oqR +ryc rxz cME cME @@ -60597,24 +52421,24 @@ eLu jgu iSu vtl -cdD -ajK +hPZ +hPE bNT -esZ -kDN -kDN -kDN -exO +iyF +fGZ +fGZ +fGZ +hVn wbI uGM uGM eLu -vVu -cEl -cEl -ycd +oVP +fRE +fRE +fVG xzr -mRk +xEj twb kPz bQM @@ -60661,93 +52485,93 @@ bQM agi agi agi -lwK -uTX +jny +dAm pCX -nBV -lwK +sNH +jny agi -gEF -dfD +rAZ +hoA hoZ hoZ hoZ -gEF -eQD -nBV +rAZ +rvd +sNH qQO -rVS +uDy njx -uTX -lwK -xfR -nBV +dAm +jny +epu +sNH njx -uTX -vzk -gma +dAm +chw +bhc apf iLJ apf -gma -gma -gma -gma +bhc +bhc +bhc +bhc rja -obT -gma -gma -mOF -iOt -iOt -iOt -iOt -sPC -iZt -cOn -cnn -iOt -hSf -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -iOt -hJw +vRG +bhc +bhc +pYs +mdu +mdu +mdu +mdu +wcd +kbq +yfx +gbq +mdu +dZf +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +mdu +hob kMq -qam +oqF bis ewE ycC kCI bis -lOE -mTX -gQx +njP +exu +pDO lqq mxR lqq lqq lqq -ahn -mTX -axi +tcr +exu +qJb bis bFr -aaj -bEO -kEE +pKK +uaj +bTb iFD bFr cEw @@ -60755,44 +52579,44 @@ cEw cEw cEw bnA -oKl -joz -joz +vqr +nGb +nGb uSA -joz -ptV +nGb +ksn fXv -vrc +srF lGm -jiW +gTx rol okv rol -jiW +gTx nyo wrR -plr -ilI +nxE +nxn wrR wrR -kbA -gyi -gYA +iOO +oFO +euh wrR ipd wrR -oJU -vhC -wRZ -gyi +dFc +pfJ +tZT +oFO nnX dyd dyd vqb -gyi -wRZ -cLR -vxV +oFO +tZT +eaq +nfq tRH tRH tRH @@ -60809,24 +52633,24 @@ eLu jgu jgu fic -cdD -ajK +hPZ +hPE bNT -azs -deB -sjR -deB -auQ +coV +eQH +vxD +eQH +tkg wbI uGM uGM eLu -nBp -cEl -cEl -kPJ +dwA +fRE +fRE +anj clG -kDW +luP twb kPz bQM @@ -60873,93 +52697,93 @@ bQM aWV fXL fXL -gXH -hAp +kIM +dNC iDq iDq -gXH +kIM fXL agi -fGb +jYW hoZ hoZ hoZ -gEF -eQD -lwK -vco +rAZ +rvd +jny +sno njx -uFX -lwK -lwK -uTX -wRv +dZw +jny +jny +dAm +vkB njx -uTX -nBV +dAm +sNH uQE apf apf -gma +bhc eWu egv egv rja rja -obT -gma -gma -wEa -gma -gma -gma -gma -gma -qDi -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma -gma +vRG +bhc +bhc +qGC +bhc +bhc +bhc +bhc +bhc +frM +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc +bhc kMq kMq -gma -gma -gma +bhc +bhc +bhc kMq kMq -gma -gFG +bhc +vih bis kCI ycC bis bis -cGm -kLY -klL +guX +gcP +hgv lqq lqq lqq epV lqq -hZp -lmr -pIo +eAi +nSK +nnA bis bis -fRG -bEO -xDe +ebo +uaj +rqx bis bFr cEw @@ -60967,48 +52791,48 @@ cEw cEw cEw bnA -xrU +wvM uSA uSA -joz -joz +nGb +nGb aVE fXv -joz -lhj -jiW +nGb +wKl +gTx rol kEj rol -jiW -emU -vPk -oWc -ohI +gTx +kYh +sKy +uuv +aBF ipd -rWi -ohI -wRZ -ohI -wRZ -saQ +uNg +aBF +tZT +aBF +tZT +wSz ipd -cLR -vxV -xYA -qqa -uOR -nYk -nQN -oCI -tUe -xYA -cLR -vxV +eaq +nfq +xgv +hfo +wad +neE +bfk +tDR +fFM +xgv +eaq +nfq wrR -gyi -gyi -kCG +oFO +oFO +whU wrR eLu eLu @@ -61018,11 +52842,11 @@ eLu rIE usg eLu -noe -qun +mof +ghy msu -qnE -oaI +gCy +ngS fbo wbI fZD @@ -61033,11 +52857,11 @@ wbI uGM uGM eLu -qmS -cEl -cEl +dpZ +fRE +fRE clG -cyu +pUy twb twb kPz @@ -61085,79 +52909,79 @@ bQM agi agi agi -lwK -uTX +jny +dAm hoZ -nBV -lwK +sNH +jny agi -fGb -fGb +jYW +jYW hoZ hoZ hoZ jXz -onw +cpU njx -lwK -ykT -lwK +jny +quM +jny njx -pyv -vco -uFX +fjU +sno +dZw agi -vco -uFX +sno +dZw apf esS -gma +bhc egv egv egv egv eXp rja -dUs -uAv -vky -rHx -vky -xKf -vky -dUs -iOt -iOt -uAv -vky -xKf -vky -vky -vky -vky -vky -xKf -vky -dUs -iOt -iOt -uAv -vky -vky -xKf -vky -vky -vky -vky -vky -dOs +viw +aCu +hmT +nlA +hmT +tjZ +hmT +viw +mdu +mdu +aCu +hmT +tjZ +hmT +hmT +hmT +hmT +hmT +tjZ +hmT +viw +mdu +mdu +aCu +hmT +hmT +tjZ +hmT +hmT +hmT +hmT +hmT +msd bis tgB tgB bis nOz -tvX -rJK +vjl +rds xst lqq lqq @@ -61165,13 +52989,13 @@ lqq lqq lqq vrT -tvX -rJK +vjl +rds nOz bis -uRO -uxp -kEE +ulC +aWc +bTb iFD bFr cEw @@ -61179,48 +53003,48 @@ cEw cEw cEw bnA -jxN -joz -joz +gDW +nGb +nGb uSA -joz -joz +nGb +nGb fXv -vrc -lhj -jiW +srF +wKl +gTx rol okv rol -jiW -emU -vPk -ohI -ohI +gTx +kYh +sKy +aBF +aBF ipd -oxN -ohI -wRZ -ohI -wRZ -eqq +pFF +aBF +tZT +aBF +tZT +wnk ipd -cLR -vha -xYA -nBK +eaq +nDv +xgv +rKm bSM bSM bSM bSM -qVF -xYA -cLR -vxV +kJM +xgv +eaq +nfq wrR -kbA -gyi -cxn +iOO +oFO +eQd wrR jKm aGV @@ -61230,11 +53054,11 @@ eLu cME cME eLu -fOg -xVK +rHE +jIz fZD -cdD -ajK +hPZ +hPE uGM uGM uGM @@ -61245,11 +53069,11 @@ uGM gUO vhB ayX -cEl +fRE gfo gfo -cEl -fBp +fRE +xNs twb twb kPz @@ -61297,11 +53121,11 @@ azZ agi agi hoZ -lwK -uTX +jny +dAm hoZ -nBV -lwK +sNH +jny hoZ hoZ hsc @@ -61309,13 +53133,13 @@ hoZ bmV aWV jXz -oxg -pyv -lwK -lwK -tjU -lwK -lwK +jFa +fjU +jny +jny +gXu +jny +jny agi agi agi @@ -61323,7 +53147,7 @@ agi agi apf apf -gma +bhc egv egv tel @@ -61359,8 +53183,8 @@ ioM hVI hVI hVI -hDy -hDy +xUp +xUp hVI hVI hVI @@ -61368,22 +53192,22 @@ nXj nXj sJu lqq -tvX -rJK -kHf -rlC +vjl +rds +vWG +oTv nOz cLt nOz -jBS -fKm -tvX -rJK +dwr +eIe +vjl +rds lqq wpD -uRO -bEO -kEE +ulC +uaj +bTb bis bFr cEw @@ -61392,61 +53216,61 @@ cEw cEw cEw bnA -nBu -joz -joz -joz -joz +ivo +nGb +nGb +nGb +nGb fXv eZm -tMn -jiW +opb +gTx rol okv rol -jiW -emU -vPk -ohI -ohI +gTx +kYh +sKy +aBF +aBF ipd -iMM -ohI -xfV -ohI -wRZ -nIo +tkG +aBF +qxJ +aBF +tZT +sfB ipd -cLR -vxV -xYA -mLS -eLO -eLO -eLO -eLO -eew -xYA -cLR -jya +eaq +nfq +xgv +clg +xkM +xkM +xkM +xkM +dzm +xgv +eaq +hyV aMM -kul -kul -kul +kml +kml +kml aMM -sRV +nZl fnB fnB -xDQ +mpc liA cME cME liA -nCX -nCX +xHl +xHl wbI -cdD -ajK +hPZ +hPE uGM gUO uGM @@ -61457,11 +53281,11 @@ uGM uGM vhB ayX -cEl +fRE gfo gfo -cEl -mJz +fRE +rHb twb twb kPz @@ -61509,11 +53333,11 @@ azZ agi agi agi -lwK -uTX +jny +dAm pCX -nBV -lwK +sNH +jny hoZ hoZ hsc @@ -61522,9 +53346,9 @@ hoZ aWV aWV aWV -eDs -eDs -eDs +pcA +pcA +pcA jXz aWV agi @@ -61542,18 +53366,18 @@ tel ioM ioM ioM -mJy -cwO +vVG +nVm ioM hVI hVI -goA -wYx -ryN -jEb -jEb -tur -kiE +xEA +sAy +uyF +qxi +qxi +kZw +iqp hVI hVI hVI @@ -61561,15 +53385,15 @@ hVI hVI hVI hVI -fPZ -ryN -jEb -jEb -tur -tSn +jMu +uyF +qxi +qxi +kZw +qua sJu -nFI -iPM +gFZ +hZk hVI bmE bmE @@ -61580,73 +53404,73 @@ mEO mEO hVI nOz -tvX -rJK +vjl +rds eTc -sfi -mWX -mWX -mWX -ifk +snl +pdk +pdk +pdk +rLf eTc -tvX -rJK +vjl +rds nOz bis -uRO -bEO -olC -vNt +ulC +uaj +fZY +clj cvn bQM bQM bQM kPz wyT -joz -tBt -jiW -kpm -joz -joz +nGb +acw +gTx +kYg +nGb +nGb fXv fUF fXv -jiW +gTx rol okv rol -jiW -emU +gTx +kYh wrR -plr -ilI +nxE +nxn wrR wrR -kbA -gyi -gYA +iOO +oFO +euh wrR ipd wrR -oJU -vxV -wRZ -gyi -hdv -gyi -xeD -gyi -gyi -wRZ -cLR -dMv +dFc +nfq +tZT +oFO +uaF +oFO +wCB +oFO +oFO +tZT +eaq +uWc aMM -qfU -qfU -qfU +wjA +wjA +wjA aMM -sRV +nZl fnB fnB fnB @@ -61654,11 +53478,11 @@ phe uJg cME eLu -kDN -exO +fGZ +hVn wbI -cdD -ajK +hPZ +hPE uGM eLu eLu @@ -61669,10 +53493,10 @@ eLu eLu eLu eLu -jJG -cEl -cEl -wCV +qin +fRE +fRE +ftw eLu twb twb @@ -61722,26 +53546,26 @@ agi agi agi aWV -eDs -eDs -eDs +pcA +pcA +pcA jXz -gEF -gEF +rAZ +rAZ agi agi -fGb -fGb +jYW +jYW jXz -rPh -rPh -rPh -rPh -rPh +bpb +bpb +bpb +bpb +bpb jXz xLi -smq -uPz +kZd +qpx azZ xLi rja @@ -61758,31 +53582,31 @@ oAm vQN ioM hVI -hBX -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ -hBX +aSM +jMu +jMu +jMu +jMu +jMu +jMu +jMu +aSM hVI hVI hVI hVI hVI -hBX -fPZ -ouS -xUq -fPZ -fPZ -tSn +aSM +jMu +asi +iem +jMu +jMu +qua sJu cyV cyV -iPM +hZk cyV cyV sJu @@ -61792,71 +53616,71 @@ mJk svh hVI bis -tvX -tcO -mTX -mTX -mTX -mTX -mTX -mTX -mTX -hOz -rJK +vjl +low +exu +exu +exu +exu +exu +exu +exu +svN +rds bis bis -uRO -bEO -bEO -kEE +ulC +uaj +uaj +bTb cvn kPz kPz kPz cEw wyT -joz -eAy -jiW -kpm -joz -joz +nGb +mfB +gTx +kYg +nGb +nGb fXv fUF fXv -jiW +gTx rol okv rol -jiW -dmH +gTx +aHe xDz -wRZ -lfJ -kul -kul -kul -kul -kul -kul -kul -kul -elq -jya -kul -kul -kul -kul -kul -kul -kul -kul -elq -vxV +tZT +eRo +kml +kml +kml +kml +kml +kml +kml +kml +skV +hyV +kml +kml +kml +kml +kml +kml +kml +kml +skV +nfq wrR -gyi -gyi -gyi +oFO +oFO +oFO wrR fnB fnB @@ -61866,20 +53690,20 @@ eLu cME cME eLu -deB -auQ +eQH +tkg wbI -cdD -ajK +hPZ +hPE wRn eLu eLu eLu -mea -mea +vJu +vJu eLu -mea -mea +vJu +vJu eLu eLu ppI @@ -61933,68 +53757,68 @@ azZ azZ azZ azZ -rPh -rPh -rPh -rPh -rPh -xjK -kRt +bpb +bpb +bpb +bpb +bpb +dyP +sit azZ xLi ddL ddL xLi -xjK -xjK -xjK -pQh -xjK -jES -xjK -xjK -xjK -azZ -azZ -fPZ -fPZ -fPZ +dyP +dyP +dyP +eDQ +dyP +jER +dyP +dyP +dyP +azZ +azZ +jMu +jMu +jMu mEO -fPZ -vmr +jMu +vfy hVI -jTG -kwK -kye -ryN -tur -fPZ -nHH -mhb -aja -leR -fPZ -fPZ -mFh -mhb -dFG -dla -dla -iRc -nsb -wVL -aja -fPZ -fPZ -bGs -hjr -bdL -dFG +lkv +lZt +thd +uyF +kZw +jMu +tnQ +cdy +sXC +qBy +jMu +jMu +wQI +cdy +cmp +lTh +lTh +jWu +oHB +kfb +sXC +jMu +jMu +qxP +ckA +kon +cmp ioM hVI cyV cyV -iPM +hZk cyV mbg ioM @@ -62004,74 +53828,74 @@ mrX mrX pkM bis -wjk -bJF -bJF -bJF -lmr -bEO -nrY -bJF -bJF -bJF -dgF +mUU +tVU +tVU +tVU +nSK +uaj +ftO +tVU +tVU +tVU +ezh bis -sXy -usa -vNF -uqa -kEE +mAZ +tau +bdf +cYc +bTb cvn bQM bQM bQM wyT -joz +nGb ndt -pLh +puI ofw -jNA +qSi bzL -mrO +tMj fXv vdI -ivL -jiW +fxE +gTx rol okv rol -jiW +gTx fXv bYB -wRZ -cLR -wRZ -wRZ -wRZ -uRX -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -wRZ -mOn +tZT +eaq +tZT +tZT +tZT +mLp +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +tZT +pqH wrR wrR jRh wrR wrR lbk -crO +fDY fnB aGV eLu @@ -62081,8 +53905,8 @@ eLu sGI szK wbI -iFj -xIo +usj +aRV uGM eLu mTM @@ -62097,8 +53921,8 @@ gyJ cME cME eLu -fdb -fmD +naA +ihG twb twb twb @@ -62142,73 +53966,73 @@ lAh lAh azZ azZ -sqg -sqg -xRh -hhl -hTt -iHU -iYq -xjK -xMg -sqg -sqg -szQ -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -azZ -azZ -azZ -lle -mhb -mhb +rXu +rXu +qxg +xWz +fZa +kOs +aaz +dyP +unx +rXu +rXu +umR +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +azZ +azZ +azZ +xea +cdy +cdy mEO -mhb +cdy mEO mEO -fPZ -cwO -mFh -mhb -aja -mJy -qxL -cwO -mFh -mhb -aja -mJy -fPZ -vkC -mFh -mhb -aja -mJy -fPZ -cwO -mFh -vtn -aja -jUB -fPZ -vbF +jMu +nVm +wQI +cdy +sXC +vVG +rYB +nVm +wQI +cdy +sXC +vVG +jMu +qyj +wQI +cdy +sXC +vVG +jMu +nVm +wQI +pHq +sXC +kql +jMu +nri ioM hVI -iPM -iPM +hZk +hZk hVI -iPM -iPM +hZk +hZk ioM ioM bmE @@ -62217,85 +54041,85 @@ aFZ aFZ bFr jUs -clP -oxS +uRT +sHi eTc -nHG -bEO -rJK +lor +uaj +rds eTc -clP -oxS +uRT +sHi iwf bFr cvn cvn -uRO -bEO -kEE +ulC +uaj +bTb cvn bFr cvn cvn cEw -joz -joz -eAy -jiW -kpm -joz -joz +nGb +nGb +mfB +gTx +kYg +nGb +nGb fXv -vrc -lhj -jiW +srF +wKl +gTx rol okv rol -jiW -bLd +gTx +ilw gMV -wRZ -rkr -qfU -qfU -qfU -qfU -qfU -qfU -qfU -qfU -djd -dMv -qfU -qfU -qfU -qfU -qfU -qfU -qfU -qfU -djd -vxV +tZT +vec +wjA +wjA +wjA +wjA +wjA +wjA +wjA +wjA +wQH +uWc +wjA +wjA +wjA +wjA +wjA +wjA +wjA +wjA +wQH +nfq wrR -gyi -gyi -gyi +oFO +oFO +oFO wrR fnB fnB fnB fnB fXB -jUI -jUI +sKB +sKB vhB uGM uGM uGM uGM uGM -lzX +vHL liA cME cME @@ -62309,10 +54133,10 @@ xno cME cME ayX -hxg -goz -tUr -vbf +pyz +tcU +wRa +vke twb kPz kPz @@ -62353,154 +54177,154 @@ bQM azZ azZ azZ -kbO -kbO -dFk -ezJ -xjK -rPh -ruy -iZn -xjK -tOr -hmk -kbO -mqo -kbO -kbO -kbO -kbO -kbO -fhZ -kbO -tLY -dFk -hmk -kbO -vFF -kbO +aQl +aQl +ssN +fzB +dyP +bpb +eAv +lni +dyP +dIH +xdi +aQl +bAp +aQl +aQl +aQl +aQl +aQl +rRm +aQl +slm +ssN +xdi +aQl +pjv +aQl azZ azZ azZ -jEb -jEb -jEb -jEb +qxi +qxi +qxi +qxi mEO -ryN -jEb -tur -mJy -fPZ -cwO -ryN -jEb -tur -mJy -fPZ -cwO -ryN -jEb -qBG -mJy -wRo -vbF -ryN -jEb -tur -idT -fPZ -cwO -ryN -jEb -deE -tSn +uyF +qxi +kZw +vVG +jMu +nVm +uyF +qxi +kZw +vVG +jMu +nVm +uyF +qxi +iDm +vVG +uJi +nri +uyF +qxi +kZw +cXC +jMu +nVm +uyF +qxi +rJv +qua sJu cyV cyV -iPM +hZk cyV cyV -iPM -iPM +hZk +hZk cyV tQB bQM bQM cvn -jjW +uSC tna umW -jjW -tvX -bEO -rJK -jjW +uSC +vjl +uaj +rds +uSC tna umW -jjW +uSC cvn bQM cvn iKs iKs iKs -gQh -qwl -ilX -bzU -xrs -bUy -joz -eAy -jiW -kpm -joz -joz +dlj +wUO +pMr +bhg +dmw +wSS +nGb +mfB +gTx +kYg +nGb +nGb fXv bnA lGm -jiW +gTx rue dfV efS -jiW -emU +gTx +kYh wrR -ohI -vxV -wRZ -gyi +aBF +nfq +tZT +oFO nnX dyd dyd vqb -gyi -wRZ -tRt -vxV -eqq -nrI +oFO +tZT +mCm +nfq +wnk +hdX nnX dyd dyd vqb -kCG -wRZ -cLR -jya +whU +tZT +eaq +hyV aMM -kul -kul -kul +kml +kml +kml aMM -sRV +nZl fnB fnB fnB fXB -jUI -jUI +sKB +sKB vhB uGM uGM @@ -62521,10 +54345,10 @@ cPq cME cME ayX -hxg +pyz mHC gfo -bNz +jCI twb twb kPz @@ -62567,154 +54391,154 @@ azZ azZ azZ azZ -ghv -ezJ -xjK -hUh -iJC -iZZ -xjK -muT -ezJ +wWI +fzB +dyP +qpO +gTT +iai +dyP +qmT +fzB azZ azZ -xjK -xjK -xjK -xjK -xjK -xjK -xjK -xjK -tOr -ezJ -nvZ -xjK -xjK +dyP +dyP +dyP +dyP +dyP +dyP +dyP +dyP +dIH +fzB +mLr +dyP +dyP tuo azZ azZ azZ azZ -jlg -vmr +mxI +vfy hVI -vmr -fPZ -fPZ -ryN -jEb -tur -fPZ -fPZ -fPZ -ryN -jEb -tur -fPZ -fPZ -bGs -kic -jEb -eYi -fPZ -ajN -fPZ -mUk -rfq -tur -fPZ -fPZ -fPZ -dxA +vfy +jMu +jMu +uyF +qxi +kZw +jMu +jMu +jMu +uyF +qxi +kZw +jMu +jMu +qxP +qME +qxi +qFa +jMu +uxK +jMu +ktd +aDo +kZw +jMu +jMu +jMu +aje sJu cyV cyV -iPM +hZk kvx cyV -iPM -iPM +hZk +hZk cyV tQB bQM bQM cvn -jjW +uSC tna umW -ovM -tvX -bEO -rJK -alX +jeA +vjl +uaj +rds +pcn tna umW -jjW +uSC cvn bQM cvn -gpB -bEO -uxp -ruv -ruv -ruv -ruv -eeL -joz +uAk +uaj +aWc +jJo +jJo +jJo +jJo +jtk +nGb ndt -pLh +puI ofw -jNA +qSi bzL -mrO +tMj feY bnA -lhj -jiW -jiW -jiW -jiW -jiW -emU +wKl +gTx +gTx +gTx +gTx +gTx +kYh wrR -ohI -vxV -otG -qqa -uOR -nYk -nQN -oCI -tUe -xYA -cLR -vxV -meM -qqa -uOR -nYk -nQN -oCI -tUe -xYA -cLR -dMv +aBF +nfq +cuC +hfo +wad +neE +bfk +tDR +fFM +xgv +eaq +nfq +vIy +hfo +wad +neE +bfk +tDR +fFM +xgv +eaq +uWc aMM -qfU -qfU -qfU +wjA +wjA +wjA aMM -sRV +nZl fnB tZo fnB fXB -jUI -jUI +sKB +sKB vhB -xnS +kHz uGM uGM uGM @@ -62723,21 +54547,21 @@ wRn eLu eLu eLu -mea -mea +vJu +vJu eLu -mea -mea +vJu +vJu eLu eLu cME cME eLu -fWD -uJM +sYI +qcP gfo -goz -opC +tcU +hoG twb kPz bQM @@ -62780,29 +54604,29 @@ azZ azZ azZ azZ -ezJ -rPh -hWB -rPh -rPh -rPh -ghv -ezJ +fzB +bpb +bXg +bpb +bpb +bpb +wWI +fzB azZ xLi xLi xLi -dNF -dNF -jmM +fwy +fwy +fhI xLi -idV -xjK -tOr -ezJ -npV -xjK -xjK +rpU +dyP +dIH +fzB +fCE +dyP +dyP tuo azZ azZ @@ -62827,96 +54651,96 @@ tQB tQB aFZ aFZ -fPZ -fPZ -fPZ +jMu +jMu +jMu hVI hVI hVI hVI hVI -daP -yfB -daP +nag +juC +nag ioM hVI -iPM -iPM -iPM -iPM -ykI +hZk +hZk +hZk +hZk +rqI hVI -uLX -kZI +qAZ +oKe tQB bQM bQM cvn -jjW +uSC tna umW -jjW -tvX -bEO -rJK -jjW +uSC +vjl +uaj +rds +uSC tna umW -jjW +uSC cvn bQM cvn iKs iKs iKs -bEO +uaj iKs iKs iKs -joz -joz -joz -eAy -jiW -kpm -joz -joz +nGb +nGb +nGb +mfB +gTx +kYg +nGb +nGb fXv bnA -mRT -hxk +dSD +uBD pip fXv pCS -hxk -nLh +uBD +oGY wrR -plr -vxV -xYA -nBK +nxE +nfq +xgv +rKm bSM bSM bSM bSM -kSL -xYA -cLR -vxV -mCG -nBK +buH +xgv +eaq +nfq +mnM +rKm bSM bSM bSM bSM -qVF -xYA -cLR -vxV +kJM +xgv +eaq +nfq wrR -kbA -gyi -cxn +iOO +oFO +eQd wrR fnB fnB @@ -62946,10 +54770,10 @@ tPN twb twb twb -laG -cEl -cEl -krT +dTn +fRE +fRE +ghC twb kPz kPz @@ -62992,29 +54816,29 @@ azZ azZ azZ azZ -ezJ +fzB azZ azZ azZ azZ azZ -tOr +dIH azZ azZ xLi -eXd -dNF -xMg -sqg -xRh -pBn -xjK -xjK -tOr -ezJ -sNd -xjK -ehf +sMF +fwy +unx +rXu +qxg +miY +dyP +dyP +dIH +fzB +dSK +dyP +oXm azZ azZ azZ @@ -63025,11 +54849,11 @@ aFZ ioM ioM ioM -iPM +hZk idE idE idE -qUQ +gXv aFZ bQM bQM @@ -63043,92 +54867,92 @@ hVI jjs hVI hVI -jvm -kqz +ouT +vDI aif -hvi -kqz -kqz -kqz +cPn +vDI +vDI +vDI ioM -gSD -dDm -iPM -iPM -iPM -tng +sJq +ceh +hZk +hZk +hZk +ddZ hVI -uLX -kZI +qAZ +oKe tQB bQM bQM cvn -jjW +uSC tna umW -alX -tvX -bEO -rJK -jjW +pcn +vjl +uaj +rds +uSC tna umW -jjW +uSC cvn bQM cvn -uRO -bEO -bEO -vMQ -rrP -vMQ -vMQ -nrR -joz -joz -eAy -jiW -kpm -joz -joz +ulC +uaj +uaj +imv +voc +imv +imv +ozB +nGb +nGb +mfB +gTx +kYg +nGb +nGb aiV bnA bnA -vGV +rbT eXU noY tVG -xhc +esx wrR wrR -ohI -vxV -xYA -mLS -eLO -eLO -eLO -eLO -eew -xYA -cLR -vxV -xOV -mLS -eLO -eLO -eLO -lCE -eew -xYA -cLR -vxV +aBF +nfq +xgv +clg +xkM +xkM +xkM +xkM +dzm +xgv +eaq +nfq +tRx +clg +xkM +xkM +xkM +tDb +dzm +xgv +eaq +nfq wrR -gyi -gyi -gyi +oFO +oFO +oFO wrR axA fnB @@ -63141,9 +54965,9 @@ nUJ cME cME eLu -jUI -jUI -lrC +sKB +sKB +pUl itN swg fQV @@ -63158,10 +54982,10 @@ fQV fQV erT twb -bxr +jxB kMU gfo -bNz +jCI twb twb kPz @@ -63214,19 +55038,19 @@ phz azZ azZ xLi -mNj -xMg -sqg -xRh -pAe -qTr -xjK -xjK -tOr -ezJ -xjK -xjK -xjK +guL +unx +rXu +qxg +qir +vKS +dyP +dyP +dIH +fzB +dyP +dyP +dyP azZ azZ azZ @@ -63234,15 +55058,15 @@ bQM pfi hbC hbC -ssD +wWo iSi -ssD +wWo oYH oYH oYH oYH oYH -bTI +jva iSi hEb hzG @@ -63251,92 +55075,92 @@ hay vmj bQM aFZ -fTA -kqz -kqz +tgV +vDI +vDI hVI -iJF -tVt +vhc +jzn hVI -mbi -kqz -kqz -bII +sGG +vDI +vDI +uso ioM -iPM +hZk cyV ndZ -iPM +hZk cyV cyV -iPM -iPM +hZk +hZk cyV tQB bQM bQM cvn -jjW +uSC tna umW -jjW -tvX -bEO -rJK -jjW +uSC +vjl +uaj +rds +uSC tna umW -jjW +uSC cvn bQM cvn iKs iKs iKs -gQh -keV -pYI -oAa -xrs -qbD +dlj +cWg +oFx +rzP +dmw +gTh cEw wyT wyT wyT -joz -joz +nGb +nGb fXv fXv -jiW +gTx fXv fXv fXv fXv bcH -guG -wRZ -ohI -vxV -wRZ -gyi -gyi -gyi -kCG -kCG -gyi -wRZ -cLR -vxV -wRZ -gyi -gyi -gyi -gyi -gyi -gyi -wRZ -cLR -vxV +yct +tZT +aBF +nfq +tZT +oFO +oFO +oFO +whU +whU +oFO +tZT +eaq +nfq +tZT +oFO +oFO +oFO +oFO +oFO +oFO +tZT +eaq +nfq wrR wrR jRh @@ -63345,36 +55169,36 @@ wrR xiF fnB fnB -xDQ +mpc liA cME -nqL +xlP cME cME cME eLu -jUI -jUI -sRk +sKB +sKB +xEB uGT bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq tPN -cVr -cEl -cEl -dtc -mBy +qTZ +fRE +fRE +pTM +tre twb kPz bQM @@ -63426,17 +55250,17 @@ kBE azZ azZ xLi -mSY -nee -xjK -ezJ -dsT -mNj -xjK -xjK -tOr -ayv -jES +pFS +vMO +dyP +fzB +nOj +guL +dyP +dyP +dIH +lho +jER lAh lAh azZ @@ -63446,15 +55270,15 @@ bQM gEU bQM bQM -mTy -alu -mTy -kFH -bow -bow -bow -bow -bTI +qzz +eEt +qzz +hZy +kHh +kHh +kHh +kHh +jva bQM bFA anm @@ -63463,48 +55287,48 @@ hXZ aLp aLp aFZ -nwh -kqz -kqz +vSI +vDI +vDI hVI -xgn -kqz +sYf +vDI hVI -bgR -kcn -kqz -kqz +lNN +mGW +vDI +vDI sJu -iPM +hZk lwd ndZ -iPM +hZk cyV cyV -iPM -iPM +hZk +hZk cyV aFZ aFZ aFZ bFr jUs -clP -clP +uRT +uRT eTc -tvX -wEY -rJK +vjl +kCq +rds eTc -clP -clP +uRT +uRT iwf bFr cvn cvn -uRO -oTl -kEE +ulC +inO +bTb cvn bFr cvn @@ -63515,40 +55339,40 @@ cEw bQM bQM wyT -joz -joz +nGb +nGb fXv otP -jiW +gTx fXv fXv fXv fXv fXv -guG -wRZ -wRZ -lfJ -kul -kul -kul -kul -kul -kul -kul -kul -elq -jya -kul -kul -kul -hGz -kul -kul -kul -kul -elq -vxV +yct +tZT +tZT +eRo +kml +kml +kml +kml +kml +kml +kml +kml +skV +hyV +kml +kml +kml +xbH +kml +kml +kml +kml +skV +nfq wrR nNJ cME @@ -63570,23 +55394,23 @@ fXB fXB dCM bTo -afk -afk -afk +tle +tle +tle pcu -afk -afk +tle +tle pcu -afk -afk -afk +tle +tle +tle iWq tPN -cVr +qTZ dKX gfo -aXM -bTG +vTh +rtt twb kPz bQM @@ -63638,17 +55462,17 @@ azZ azZ azZ xLi -xjK -lax -nDJ -dsT -dNF -pBn -xjK -xjK -tOr -ezJ -xjK +dyP +wxg +pNE +nOj +fwy +miY +dyP +dyP +dIH +fzB +dyP jKR lAh azZ @@ -63658,15 +55482,15 @@ bQM gEU bQM bQM -wsy -aOh -wsy -hDy -hDy -hDy -qmz -hDy -bTI +mkF +kvS +mkF +xUp +xUp +xUp +lvF +xUp +jva bQM bFA hpJ @@ -63674,18 +55498,18 @@ ePq mzS lEp wWW -lBg -hvi -tST -kqz +ogF +cPn +jZX +vDI tEH -kqz -kqz +vDI +vDI hVI -bjO -bjO -kqz -kqz +wgd +wgd +vDI +vDI ioM hVI hVI @@ -63700,23 +55524,23 @@ hVI hVI ioM bis -lOE -mTX -mTX -wot -mxn -bEO -tcO -mTX -jDk -mTX -axi +njP +exu +exu +abm +xqm +uaj +low +exu +vCK +exu +qJb bis -sXy -ghP -xqG -oTl -kEE +mAZ +bxt +aCR +inO +bTb cvn kPz kPz @@ -63727,40 +55551,40 @@ kPz kPz kPz wyT -xPX -joz -joz -joz -vVJ -joz -joz -joz -joz -joz -guG -tOo -wRZ -rkr -qfU -xTa -qfU -qfU -qfU -qfU -xTa -djd -wRZ -wRZ -dMv -lWD -qfU -qfU -qfU -qfU -qfU -qfU -qfU -pnv +hQX +nGb +nGb +nGb +jyC +nGb +nGb +nGb +nGb +nGb +yct +bum +tZT +vec +wjA +bvx +wjA +wjA +wjA +wjA +bvx +wQH +tZT +tZT +uWc +jVP +wjA +wjA +wjA +wjA +wjA +wjA +wjA +tPE wrR bcf cME @@ -63774,7 +55598,7 @@ fnB clG clG clG -qTa +dYi fnB fnB fnB @@ -63782,23 +55606,23 @@ fnB fnB dCM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq tPN -cVr -cEl -cEl -lZC -sNu +qTZ +fRE +fRE +aiy +qcI twb kPz bQM @@ -63851,16 +55675,16 @@ azZ azZ xLi xLi -eXd -mNj -olG -pBn +sMF +guL +rul +miY xLi -jmM -xjK -tOr -ezJ -xjK +fhI +dyP +dIH +fzB +dyP efT lAh azZ @@ -63870,15 +55694,15 @@ bQM qvn hbC hbC -ssD +wWo iSi -ssD +wWo oYH oYH oYH oYH oYH -bTI +jva iSi eHC uVX @@ -63887,24 +55711,24 @@ nHZ tHL sTu aFZ -hvi -kqz -kqz +cPn +vDI +vDI hVI -ieu -ieu +rKQ +rKQ hVI hVI -bjO -kqz -kqz -iPM -rPQ -dVe -cmg -bzH +wgd +vDI +vDI +hZk +pVS +mkW +cko +hLx ioM -bow +kHh ioM hVI idE @@ -63912,23 +55736,23 @@ dSn cRN ioM bis -tvX -nrY -bJF -bJF -oIR -bEO -nrY -bJF -bJF -lmr -rJK +vjl +ftO +tVU +tVU +sGV +uaj +ftO +tVU +tVU +nSK +rds bis bis -uRO -bEO -bEO -kEE +ulC +uaj +uaj +bTb cvn bQM bQM @@ -63978,9 +55802,9 @@ eLu cME cME ggk -jAx +pvy fnB -crO +fDY fnB fnB fnB @@ -64006,10 +55830,10 @@ jlH jlH bUB twb -miu +mVX gfo gfo -bNz +jCI twb twb kPz @@ -64068,10 +55892,10 @@ lAh lAh lAh lAh -xjK -xjK -tOr -ezJ +dyP +dyP +dIH +fzB xLi xLi azZ @@ -64085,11 +55909,11 @@ aFZ aFZ aFZ aSS -iPM +hZk idE xDg idE -iPM +hZk aFZ bQM bQM @@ -64099,24 +55923,24 @@ bQM bQM bQM aFZ -gkZ -kcn -kqz +ujv +mGW +vDI tEH -pJy -rQK -uVD +pzg +nDm +xat aif -wlR -mFh -bPk -mhb -mhb -mhb -iti -mhb -mct -aja +oxV +wQI +pfZ +cdy +cdy +cdy +ntx +cdy +tLE +sXC ioM bfg mEO @@ -64124,23 +55948,23 @@ mEO mEO ioM nOz -tvX -rJK +vjl +rds eTc -clP -wjk -pat -dgF -clP +uRT +mUU +jdw +ezh +uRT eTc -tvX -rJK +vjl +rds nOz bis -uRO -bEO -trB -kEE +ulC +uaj +qod +bTb cvn bQM bQM @@ -64155,14 +55979,14 @@ bQM bQM bQM dCM -qdB -tHs -tHs -tHs -tHs -tHs -tHs -tHs +rvl +bnC +bnC +bnC +bnC +bnC +bnC +bnC dCM bQM kPz @@ -64171,12 +55995,12 @@ bQM kPz bQM dCM -mdn -ftv -tPQ +wys +hyI +oic fnB -xca -sRV +gNE +nZl dCM bQM kPz @@ -64188,7 +56012,7 @@ pJK eLu kNY cME -aJg +nrx uGY fnB fnB @@ -64218,10 +56042,10 @@ pRG aWk twb twb -laG -cEl -cEl -ajH +dTn +fRE +fRE +fbn twb kPz kPz @@ -64279,11 +56103,11 @@ xLi xLi xLi xLi -qVq -sgb -xjK -tOr -ezJ +qRn +oSm +dyP +dIH +fzB lAh lAh lAh @@ -64311,24 +56135,24 @@ tQB tQB aFZ aFZ -gHF -tHX -tHX +uob +wPV +wPV tEH -gtH -uVD -ppX +dUS +xat +xod hVI -auH -ryN -pNV -sjw -jEb -jEb -pdw -jEb -pNV -cwO +aDO +uyF +eNk +oXl +qxi +qxi +aHE +qxi +eNk +nVm ioM hRR mEO @@ -64336,23 +56160,23 @@ mEO mEO sJu lqq -tvX -rJK -jjW +vjl +rds +uSC nOz dnz kNB bPl nOz -jjW -tvX -rJK +uSC +vjl +rds lqq wpD -uRO -uxp -bEO -kEE +ulC +aWc +uaj +bTb bFr bFr kPz @@ -64367,14 +56191,14 @@ kPz kPz kPz dCM -tTu -tHs -fhC -ftv -sRV -aqI -lRH -tHs +uZO +bnC +oBq +hyI +nZl +mhn +lyL +bnC dCM bQM kPz @@ -64383,12 +56207,12 @@ kPz kPz bQM dCM -sRV -ftv +nZl +hyI fnB -iLy -aqI -sRV +ucU +mhn +nZl dCM bQM kPz @@ -64402,20 +56226,20 @@ cME cME uzw uGY -sRV -cvq +nZl +rYa nqN nqN nqN -ksk -sRV -cvq +cBz +nZl +rYa nqN nqN nqN -ksk -sRV -cvq +cBz +nZl +rYa uGY vZX vZX @@ -64428,12 +56252,12 @@ oly vZX vZX jwc -lCw -uat -qwU +ryE +aeI +pmS gfo -fhc -ydY +nsl +ooK twb kPz bQM @@ -64483,24 +56307,24 @@ lAh xLi xLi xLi -npV -nvZ +fCE +mLr xLi xLi -nsx -hKJ +mjM +wKv xLi xLi xLi xLi -xjK -tOr -ezJ +dyP +dIH +fzB xLi -hBI -qTr +eol +vKS xLi -jpS +dqd azZ tel tel @@ -64509,23 +56333,23 @@ hVI xLS mEO ioM -iPM -fPZ -kqz -fPZ -iPM +hZk +jMu +vDI +jMu +hZk tQB pcu pcu pcu tQB -qLz -oPW -roN -iPM -kqz -kqz -kqz +dmt +sWg +pLN +hZk +vDI +vDI +vDI hVI tEH tEH @@ -64533,14 +56357,14 @@ hVI hVI tEH hVI -mJy -cwO -wJJ -mhb -mhb -aja -ogr -tkk +vVG +nVm +mZf +cdy +cdy +sXC +mFH +iJg ioM hwx mEO @@ -64548,23 +56372,23 @@ mEO idE ioM nOz -tvX -rJK +vjl +rds eTc -clP -lOE -mTX -axi -clP +uRT +njP +exu +qJb +uRT eTc -tvX -rJK +vjl +rds nOz bFr -uRO +ulC iKs iKs -kEE +bTb bFr bFr bQM @@ -64579,14 +56403,14 @@ bQM bQM bQM dCM -tTu -tHs -sRV -ftv -sRV -aqI -sRV -tHs +uZO +bnC +nZl +hyI +nZl +mhn +nZl +bnC dCM bQM kPz @@ -64595,12 +56419,12 @@ bQM kPz bQM dCM -sRV -ftv -kzN -tPQ -aqI -hVz +nZl +hyI +dTe +oic +mhn +cFk dCM bQM kPz @@ -64614,20 +56438,20 @@ cME cME cME gIB -sTa -sTa +cfy +cfy dCM bQM dCM -sTa -sTa -sTa +cfy +cfy +cfy dCM bQM dCM -sTa -sTa -sTa +cfy +cfy +cfy ovr vZX vZX @@ -64640,11 +56464,11 @@ vZX vZX vZX jwc -hxg -cEl +pyz +fRE gfo gfo -bNz +jCI twb twb kPz @@ -64694,65 +56518,65 @@ azZ azZ xLi xLi -sNd -xjK -xjK -xjK -mZG -xjK -xjK -idV -bAS +dSK +dyP +dyP +dyP +pjb +dyP +dyP +rpU +pDz xLi xLi -aOd -tOr -ezJ -xIb -jMe -tGO +ggN +dIH +fzB +ayh +rZY +xTH ddL ejw ejw ejw rBr -evg +vDW hVI xLS mEO sJu -hDy -fPZ -kqz -fPZ -hDy +xUp +jMu +vDI +jMu +xUp tQB jlH jlH jlH tQB -iPM -iPM -cHJ -iPM -kqz -imw -kqz -mFh -mhb -mhb -mhb -sRb -mhb -xvt -avX -cwO -mJy -uIl -fbW -xCs -rib -kqz +hZk +hZk +aLH +hZk +vDI +kmj +vDI +wQI +cdy +cdy +cdy +mNU +cdy +oYC +kpx +nVm +vVG +tCK +weR +tQK +tCn +vDI sJu mEO mEO @@ -64760,45 +56584,45 @@ mEO lyd ioM bis -cGm -tcO -mTX -mTX -mxn -bEO -tcO -mTX -mTX -mxn -pIo +guX +low +exu +exu +xqm +uaj +low +exu +exu +xqm +nnA bFr bFr -fRG -bEO -bEO -kEE +ebo +uaj +uaj +bTb bFr bFr bFr bFr bFr bFr -gdt -gdt -gdt +rUN +rUN +rUN bFr -gdt -gdt -gdt +rUN +rUN +rUN dCM -qdB -tHs -sRV -ftv -sRV -aqI -sRV -tHs +rvl +bnC +nZl +hyI +nZl +mhn +nZl +bnC nqN nqN nqN @@ -64811,7 +56635,7 @@ ceC nIh nIh nIh -kov +xjI ceC nqN nqN @@ -64826,20 +56650,20 @@ cME cME cME gIB -tHs -tHs +bnC +bnC dCM bQM dCM -tHs -tHs -tHs +bnC +bnC +bnC dCM bQM dCM -tHs -tHs -iTw +bnC +bnC +wac nqN aWk aWk @@ -64852,11 +56676,11 @@ qkN vZX vZX aWk -cEB -jrk -mNI -xHH -dAp +oLy +mDU +snR +pen +toj twb kPz kPz @@ -64905,66 +56729,66 @@ azZ azZ azZ xLi -jXO -xjK -xMg -sqg -sqg -sqg -sqg -sqg -sqg -sqg +wTK +dyP +unx +rXu +rXu +rXu +rXu +rXu +rXu +rXu xZR -sqg -sqg -ukI -ezJ -xJg -dNF -cwU +rXu +rXu +mtu +fzB +eCa +fwy +hYJ ddL -xjK -dNF -xjK -jpS +dyP +fwy +dyP +dqd phz hVI qeX mEO hVI dVK -rur -kqz -fPZ +qAx +vDI +jMu idE aFZ tQB tQB tQB aFZ -iPM -arf -bgb -lXk -kqz -kqz -kqz -mJy -kqz -kqz -kqz -kqz -kqz -kqz -kqz -cwO -mJy -rXz -goh -cwO -tAI -fwR +hZk +lsy +mLV +eNa +vDI +vDI +vDI +vVG +vDI +vDI +vDI +vDI +vDI +vDI +vDI +nVm +vVG +sHq +qMz +nVm +ijf +tKR aFZ hVI hVI @@ -64972,17 +56796,17 @@ bmE hVI aFZ bFr -wjk -bJF -bJF -bJF -lmr -bEO -nrY -bJF -bJF -bJF -dgF +mUU +tVU +tVU +tVU +nSK +uaj +ftO +tVU +tVU +tVU +ezh bFr bis lEa @@ -65004,13 +56828,13 @@ iKs iKs uGY uGY -tHs -sRV -ftv -sRV -aqI -sRV -tHs +bnC +nZl +hyI +nZl +mhn +nZl +bnC hVG fnB fnB @@ -65021,8 +56845,8 @@ dme fnB dAQ qms -jLK -the +sGj +xso qms aDr fnB @@ -65117,112 +56941,112 @@ azZ azZ azZ xLi -jYB -xjK -tOr -hmk -kbO -fhZ -kbO -kbO -kbO -kbO +nWN +dyP +dIH +xdi +aQl +rRm +aQl +aQl +aQl +aQl xZR -kbO -kbO -dFk -ezJ +aQl +aQl +ssN +fzB xLi -dyc -oHn +qEN +sSC ddL -xjK -dNF -xjK +dyP +fwy +dyP wfY -jpS +dqd hVI hVI mEO hVI -iPM -jUz -kqz -fPZ -iPM +hZk +qTK +vDI +jMu +hZk hVI -ljh -eCh -oxT +oie +pRQ +cCI hVI hVI hVI -cLc -mMo -iPM -kqz -iPM -ryN -opy -eSZ -jEb -jEb -pdw -jEb -pNV +nRS +xSV +hZk +vDI +hZk +uyF +fGi +bYR +qxi +qxi +aHE +qxi +eNk mEO -mJy -gMw +vVG +otI lfo -cwO -mJy -cwO +nVm +vVG +nVm hVI -nmx -kkk -mJy -cwO -uQF +lMq +vKD +vVG +nVm +ogg bFr bFr uIS uIS bis -tvX -bEO -rJK +vjl +uaj +rds bis uIS uIS bis bFr -qZx -tvX +uVi +vjl muO muO -rJK -bEO -mTX -mTX -bEO +rds +uaj +exu +exu +uaj muO muO -rJK -lOE -mTX -mTX -mTX -mTX -axi -tvX +rds +njP +exu +exu +exu +exu +qJb +vjl ggk -tHs -sRV -ftv -sRV -aqI -lYw -tHs +bnC +nZl +hyI +nZl +mhn +mdR +bnC hVG fnB fnB @@ -65230,14 +57054,14 @@ eUD fnB fnB fnB -wLf +ifa sYP -tHs -nIy -fgB -xxE -tHs -tHs +bnC +qYE +gqb +pcT +bnC +bnC fnB fnB uGY @@ -65330,20 +57154,20 @@ azZ azZ xLi xLi -xjK -tOr -ezJ -xjK -xjK -xjK -xjK -xjK -bAS +dyP +dIH +fzB +dyP +dyP +dyP +dyP +dyP +pDz xLi xLi -aOd -tOr -ezJ +ggN +dIH +fzB xLi ddL ddL @@ -65357,66 +57181,66 @@ hVI hVI mEO hVI -gzd -rHj -kqz -fPZ -orx +gAt +pJU +vDI +jMu +xnY hVI -gom -fPZ -fPZ -fPZ -fPZ +rVN +jMu +jMu +jMu +jMu hVI hVI hVI -iPM -mky -iPM +hZk +kOj +hZk hVI -vXB -mMf -bNA -hRV -mYu +wHE +jPS +eDT +gbR +jPa mEO -mJy -vkC -mJy -aBX -fxz -cwO -mJy -cwO +vVG +qyj +vVG +fPi +lhL +nVm +vVG +nVm hVI -jDL -fPZ -fPZ -fPZ -uXW -xfG +hWC +jMu +jMu +jMu +aWs +bAa hVI -dZt -qZx +xSc +uVi bis wMi wMi wMi bis -gET -snp +pDA +vle bis bFr -qZx -tvX +uVi +vjl iKs iKs -xZo -bEO +fDB +uaj iKs iKs -bEO +uaj mEL muO muO @@ -65428,30 +57252,30 @@ dFh muO muO ggk -tHs -sRV -ftv -sRV -aqI -sRV -tHs +bnC +nZl +hyI +nZl +mhn +nZl +bnC hVG jJT fnB fnB fnB -vfJ +iFs fnB -wLf +ifa wWs wWs -sRV -dFO +nZl +rSv wWs wWs -tHs -vDc -xDQ +bnC +dzi +mpc ggk cME cME @@ -65462,27 +57286,27 @@ tPN bQM bQM dCM -tHs -tHs +bnC +bnC dCM bQM dCM -tHs -tHs -tHs +bnC +bnC +bnC dCM bQM dCM -tHs -tHs -tHs +bnC +bnC +bnC dCM bQM bQM pRG vZX vZX -ast +jii nbb vZX vZX @@ -65542,10 +57366,10 @@ azZ azZ xLi xLi -xjK -cjS -ezJ -xjK +dyP +oNc +fzB +dyP xLi xLi ddL @@ -65553,15 +57377,15 @@ ddL ddL xLi xLi -xjK -tOr -ezJ -xQb -kyl -xjK -xjK -xjK -xjK +dyP +dIH +fzB +jgm +wjb +dyP +dyP +dyP +dyP phz phz phz @@ -65570,100 +57394,100 @@ mEO mEO hVI idE -fPZ -kqz -fPZ +jMu +vDI +jMu idE hVI -rei -kqz -kqz -kqz -kqz -kqz +dDq +vDI +vDI +vDI +vDI +vDI aif -kqz -kqz -kqz -cso +vDI +vDI +vDI +oMC hVI -gSN -icK +hde +cOR xxX iAA aRt nUb -wOT -cwO -mJy -uIl -qoZ -kHu -mJy -kqz +koF +nVm +vVG +tCK +tIN +xwv +vVG +vDI aif -fPZ -opV -mJy -cwO -tur -uuk +jMu +asI +vVG +nVm +kZw +orv hVI -bEO -bEO -bEO -tvX +uaj +uaj +uaj +vjl muO -rJK -bEO -bEO -kCv -bEO -bEO -bEO -tvX +rds +uaj +uaj +qfi +uaj +uaj +uaj +vjl muO muO -rJK -bEO -gHP -bJF -bEO +rds +uaj +kbD +tVU +uaj muO muO -rJK -wjk -bJF -bJF -bJF -bJF -dgF -tvX +rds +mUU +tVU +tVU +tVU +tVU +ezh +vjl ggk -tHs -sRV -ftv -sRV -aqI -fhC -iTw +bnC +nZl +hyI +nZl +mhn +oBq +wac ceC xGt xGt ceC fnB -wFD +sAg fnB -tHs +bnC wWs wWs -sRV -sRV +nZl +nZl wWs wWs -tHs -egm -xDQ +bnC +lSb +mpc ggk cME cME @@ -65674,20 +57498,20 @@ tPN bQM bQM dCM -oEY -uEm +iCg +aLM dCM bQM dCM -uEm -uEm -uEm +aLM +aLM +aLM dCM bQM dCM -uEm -uEm -uEm +aLM +aLM +aLM dCM bQM bQM @@ -65753,44 +57577,44 @@ azZ azZ azZ xLi -idV -xjK -tOr -ezJ -bAS +rpU +dyP +dIH +fzB +pDz xLi -pso -nDW -oAQ -nTD -qVD -shq -jES -tOr -ezJ -xjK -xjK -xjK -jES -xjK -xjK -xjK -xjK +dZu +mda +hrN +xMv +hXO +lhM +jER +dIH +fzB +dyP +dyP +dyP +jER +dyP +dyP +dyP +dyP phz ecu mEO hVI hVI -hDy -fPZ -kqz -fPZ -hDy +xUp +jMu +vDI +jMu +xUp vWe hVI -kqz -fPZ -aac +vDI +jMu +qHB hVI hVI hVI @@ -65808,11 +57632,11 @@ azv nUb mEO uza -dnB -jEb -tur -mJy -tkk +iRK +qxi +kZw +vVG +iJg hVI hVI hVI @@ -65823,24 +57647,24 @@ hVI hVI muO muO -bEO -tvX +uaj +vjl iKs -rJK -bEO -lOE -mTX -mTX -mTX -mTX -mxn +rds +uaj +njP +exu +exu +exu +exu +xqm iKs -nrY -dgF -qZx -bFr -bFr -bFr +ftO +ezh +uVi +bis +bis +bis ocd tKs muO @@ -65852,28 +57676,28 @@ bFr muO muO uGY -kaC -tHs -tHs -tHs -tHs -tHs -tHs +krP +bnC +bnC +bnC +bnC +bnC +bnC buz -gvX -aav +iWe +tMb dCM fnB fnB fnB -tHs +bnC wWs wWs -tPQ +oic fnB wWs wWs -tHs +bnC fnB fnB uGY @@ -65886,20 +57710,20 @@ nqN nqN nqN nqN -sRV +nZl fCD nqN nqN nqN -ksk -sRV -cvq +cBz +nZl +rYa nqN nqN nqN -ksk -sRV -cvq +cBz +nZl +rYa nqN nqN nqN @@ -65964,95 +57788,95 @@ azZ azZ azZ azZ -jpS -xjK -xjK -tOr -ezJ -xjK +dqd +dyP +dyP +dIH +fzB +dyP ddL lXO nId ykO pCc -tDY -siz -xjK -tOr -mtk -sqg -sqg -sqg -sqg -sqg -sqg -xRh -xjK +xpA +jWq +dyP +dIH +vmh +rXu +rXu +rXu +rXu +rXu +rXu +qxg +dyP phz mEO mEO hVI -vmr -fPZ -vXi -kqz -fPZ -fPZ -fPZ -rbE -kqz -fPZ -aRx -luv -hBX -fPZ -iRc -fPZ -dla +vfy +jMu +ukV +vDI +jMu +jMu +jMu +boC +vDI +jMu +teu +gND +aSM +jMu +jWu +jMu +lTh oja -dWx -fPZ -hjr -mhb +bwQ +jMu +ckA +cdy mEO -mhb -wMG -kdb -ovC -jvG -mhb -mhb -mhb -avX -cwO -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ +cdy +aij +sYm +fXR +iWC +cdy +cdy +cdy +kpx +nVm +jMu +jMu +jMu +jMu +jMu +jMu +jMu sJu -rIo +gtB muO -bEO -tvX +uaj +vjl iKs -rJK -bEO -tvX +rds +uaj +vjl iKs iKs muO muO iKs -nrY -dgF -qZx -bFr -bFr -bQM -bFr +ftO +ezh +uVi +bis +bis +cME +bis bis jiJ muO @@ -66072,20 +57896,20 @@ nqN aIf fOt gpG -tHs -qIy +bnC +iCm ceC mAv fnB fnB -tHs +bnC wWs wWs -fMk +xZp fnB wWs wWs -tHs +bnC fnB vGe nqN @@ -66101,17 +57925,17 @@ tdG fnB fnB fnB -jCl -rIW +hqz +faB fnB -crO +fDY fnB fnB fnB fnB fnB fnB -crO +fDY fnB dAQ fnB @@ -66177,95 +58001,95 @@ azZ azZ azZ xLi -jpS -jmM -tOr -ezJ -xjK +dqd +fhI +dIH +fzB +dyP ddL ntH nMZ oHX pFP -qZa -sjn -xjK -tOr -hmk -kbO -kbO -kbO -kbO -kbO -dFk -ezJ -xjK +jvT +uWY +dyP +dIH +xdi +aQl +aQl +aQl +aQl +aQl +ssN +fzB +dyP phz mEO hVI hVI -nqV -kqz -kqz -kqz -kqz -kqz -kqz -kqz -kqz -fPZ -kiE -jOJ -fPZ -kqz -kqz -kqz -pIX +bvv +vDI +vDI +vDI +vDI +vDI +vDI +vDI +vDI +jMu +iqp +vuq +jMu +vDI +vDI +vDI +ehX bNf -fPZ -fPZ +jMu +jMu mEO -sjw -jEb +oXl +qxi mEO -jEb -jEb -jEb -oii -jEb -jEb -jEb -pNV -cwO -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ -fPZ +qxi +qxi +qxi +dYw +qxi +qxi +qxi +eNk +nVm +jMu +jMu +jMu +jMu +jMu +jMu +jMu sJu -rIo +gtB ekH -bEO -tvX +uaj +vjl +iKs +rds +uaj +mUU +tVU +tVU +tVU +tVU +tVU +ezh +uVi +bis +bis +cME +cME +wpD iKs -rJK -bEO -wjk -bJF -bJF -bJF -bJF -bJF -dgF -qZx -bFr -bFr -bQM -bQM -bFr -rLJ qXP muO tKs @@ -66284,28 +58108,28 @@ twb oZy nfA gpG -rUT -tHs +rjx +bnC hVG jWB -vfJ +iFs bfx -tHs +bnC wWs wWs -sRV -sRV +nZl +nZl wWs wWs -tHs -vfJ -wOS -sTa -sTa -sTa -sTa -gJG -oWW +bnC +iFs +cdd +cfy +cfy +cfy +cfy +kVX +lAt fnB fnB fnB @@ -66313,8 +58137,8 @@ fnB fnB fnB fnB -ftv -aqI +hyI +mhn sYP fnB fnB @@ -66326,7 +58150,7 @@ fnB fnB sYP fnB -xDQ +mpc ggk vZX vZX @@ -66389,66 +58213,66 @@ azZ xLi xLi xLi -jpS -xjK -tOr -ezJ -ftq +dqd +dyP +dIH +fzB +krR ddL oIq nOw oXR pHh -qZh -sma -xjK -tOr -ezJ -xjK -xjK -xjK -xjK -xjK -tOr -ezJ -xjK +xVS +kOV +dyP +dIH +fzB +dyP +dyP +dyP +dyP +dyP +dIH +fzB +dyP hVI hVI hVI sjx -fPZ -kqz -wLN +jMu +vDI +smG vWe -sbQ -kqz -fPZ -trH -kqz -fPZ -vsz +nus +vDI +jMu +oYL +vDI +jMu +wlB hVI -tOZ -kqz -kqz -kqz -pIX +ycG +vDI +vDI +vDI +ehX bNf -dKy +bUL jyP -mJy -lyX +vVG +rON hVI -vtG -vtG -vtG -aGg +jTh +jTh +jTh +cFT hVI tEH tEH hVI -oxZ -rSM +xLT +pqn hVI tEH tEH @@ -66457,36 +58281,36 @@ hVI hVI hVI hVI -bEO -ncP -bEO -wjk -bJF -dgF -bEO -nHb -bEO -bEO -bEO -hmj +uaj +rXZ +uaj +mUU +tVU +ezh +uaj +qcc +uaj +uaj +uaj +riz +muO muO muO bis -bFr -bQM -bQM -bQM -bFr +cME +cME +cME +bis bis jiJ -bMA -lOE -mTX -azI -mTX -mTX -axi -tvX +tPy +njP +exu +uhY +exu +exu +qJb +vjl rHu bnL cME @@ -66496,49 +58320,49 @@ liA nyS scZ ceC -gIk -aPF +gMC +ijm ceC fnB -wFD +sAg fnB -tHs +bnC wWs wWs -sRV -sRV +nZl +nZl wWs wWs -tHs -wFD -ezT -uEm -uEm -uEm -aQZ -uEm -ajr +bnC +sAg +hug +aLM +aLM +aLM +gIg +aLM +vFd fnB fnB fnB fnB fnB qhB -rmA -ftv -aqI +xtc +hyI +mhn fnB fnB -sRV -sTa -sTa -sTa -sTa -sRV +nZl +cfy +cfy +cfy +cfy +nZl fnB fnB fnB -xDQ +mpc ggk vZX vZX @@ -66603,67 +58427,67 @@ xLi phz phz phz -tOr -ezJ -bAS +dIH +fzB +pDz xLi -nvC -nPO -paQ -pIi -gKL -kWJ -xjK -tOr -vpB -xWp -xfq -sqg -xRh -hYV -tOr -ezJ -bAS +alq +jfZ +fVm +kVc +qLT +rEp +dyP +dIH +wFL +jkE +jQe +rXu +qxg +mSO +dIH +fzB +pDz hVI hVI hVI gfN -rDm -kqz -cxF -sVD -qfI -kqz -gGp -jOJ -kqz -fPZ -brr -kcO -cqy -fPZ -kqz -fPZ -dla +cFj +vDI +mZO +ojn +sjp +vDI +lfq +vuq +vDI +jMu +hwo +ujV +dfF +jMu +vDI +jMu +lTh fzb -mXI -fPZ -mJy -oBP +ejT +jMu +vVG +qFh aif -fPZ -fPZ -fPZ -kuS +jMu +jMu +jMu +wvx hVI -adH -fPZ +aIP +jMu hVI -mJy -kqz +vVG +vDI aif ovJ -fPZ +jMu sJu hSL euG @@ -66683,12 +58507,12 @@ bFr twb eLu tLC +tLC +eLu +cME +cME +cME eLu -twb -twb -twb -twb -twb eTx oti muO @@ -66714,14 +58538,14 @@ ceC fnB fnB fnB -tHs -tHs -tHs -tHs -tHs -tHs -tHs -tHs +bnC +bnC +bnC +bnC +bnC +bnC +bnC +bnC fnB nza nqN @@ -66737,16 +58561,16 @@ hoy fnB pTj fnB -ftv -aqI -rmA +hyI +mhn +xtc fnB -azJ +gIv pPf grL grL apy -azJ +gIv fnB fnB fnB @@ -66809,73 +58633,73 @@ azZ azZ azZ xLi -ruy -ruy +eAv +eAv phz phz csp kEZ -tOr -ezJ -xjK +dIH +fzB +dyP xLi ddL ddL ddL xLi xLi -dMK -xjK -tOr -vqg -xjK -neD +lSo +dyP +dIH +iLU +dyP +nXK xLi -fWc -xjK -tOr -ezJ -xjK +oQN +dyP +dIH +fzB +dyP hVI hVI hVI dvq -fPZ -kqz -hBX -rLT -sQK -mFz -kiE -pKd -kqz -fPZ -bET -luv -xnK -wsY -kqz -fPZ -dla -sbY -gRm -fwZ -dwM -cDr +jMu +vDI +aSM +nFP +tVx +ePS +iqp +noi +vDI +jMu +eOr +gND +mQS +juf +vDI +jMu +lTh +poL +kMZ +ocp +rLt +dAW hVI -mRU -shG -fPZ -djA +cuy +xWf +jMu +lbo hVI -ivR +qdy ovJ dvY -kqz -cwO +vDI +nVm hVI -fgb -onz +htQ +tIo hVI lbu mEO @@ -66897,31 +58721,31 @@ ecL cME cME tIU -tpf +oPb tIU cME eLu nbo muO -rJK -wjk -bJF -bJF -bJF -bJF -dgF -tvX +rds +mUU +tVU +tVU +tVU +tVU +ezh +vjl rHu rJu uzw kqC -cCq -dHp -dHp -uFh +ctv +kmc +kmc +xcp abJ -usz -usz +saZ +saZ abJ fnB fnB @@ -66953,20 +58777,20 @@ gIB uGY flC fnB -sRV -uEm -uEm -uEm -uEm -sRV +nZl +aLM +aLM +aLM +aLM +nZl fnB fnB wxZ qeC aPU -xBT -oyg -xBT +oYx +kjq +oYx plK vZX vZX @@ -67021,59 +58845,59 @@ azZ azZ xLi xLi -jpS +dqd phz ctD phz phz -xjK -tOr -ezJ -xjK -xjK -xjK -xjK -xjK +dyP +dIH +fzB +dyP +dyP +dyP +dyP +dyP xLi rfd -xjK -xjK -tOr -vpB -xWp -jPz -kbO -dsT -xjK -tOr -ezJ -xjK +dyP +dyP +dIH +wFL +jkE +tBL +aQl +nOj +dyP +dIH +fzB +dyP gkt aDi nvF gkt -fPZ -kqz -mYo +jMu +vDI +mRN hVI -jDL -xuH -knt -jOJ -ffm -fPZ -jlg -rLT -qfI -fPZ -kqz -cxF -xWH -wmG -iVC -fPZ -mJy -cwO +hWC +rdZ +obw +vuq +qgo +jMu +mxI +nFP +sjp +jMu +vDI +mZO +grV +dzL +mxF +jMu +vVG +nVm nQq hVI hVI @@ -67083,8 +58907,8 @@ hVI hVI hVI gUH -mJy -tkk +vVG +iJg vWe hVI hVI @@ -67094,46 +58918,46 @@ ndh kwT tQB azy -afk -afk -afk +tle +tle +tle chA uWs -afk -afk -afk +tle +tle +tle wvu fQV tPN ecL cME cME -oOi +fpQ pSJ -qws +sez cME eLu eLu eLu eLu twb -mNn -mNn -mNn -twb +dJr +dJr +dJr +eLu eLu eLu eLu kfW cME kqC -pHu +czn uGD sHH -vei +eDo vRA -usz -usz +saZ +saZ vRA fnB kNP @@ -67158,27 +58982,27 @@ fnB qms cph gIB -ndC -hbq -ejn -oTH +vjy +qoB +oEG +vBF hjE fnB fnB fnB -sRV -sRV -sRV -sRV +nZl +nZl +nZl +nZl fnB fnB fnB kjP qeh nRb -sOn -sOn -xBR +lLM +lLM +wkh plK vZX waU @@ -67233,87 +59057,87 @@ azZ lAh xLi xLi -ruy +eAv phz phz phz xLi azZ -tOr -mtk -sqg -sqg -sqg -sqg -sqg -sqg +dIH +vmh +rXu +rXu +rXu +rXu +rXu +rXu xZR -sqg -sqg -uqo -ezJ -xjK -xjK -xjK -xjK -xjK -tOr -ezJ -xjK +rXu +rXu +gPf +fzB +dyP +dyP +dyP +dyP +dyP +dIH +fzB +dyP cyV -fPZ -fPZ +jMu +jMu cyV -fPZ -kqz -fPZ -sbp -fPZ -uWS -uFM -jlg -kqz -fPZ -jaR -ueA -nxH -kqz -kqz -cxF -goA -wmG -iVC -fPZ -mJy -cwO +jMu +vDI +jMu +dvJ +jMu +nLF +hfB +mxI +vDI +jMu +xQO +vYa +rdW +vDI +vDI +mZO +xEA +dzL +mxF +jMu +vVG +nVm hVI -rCL -fPZ -fPZ -fPZ +aJx +jMu +jMu +jMu hVI -adH -qSg +aIP +pgw hVI -mJy -cwO -tbZ -adH +vVG +nVm +hnA +aIP hVI -fUZ +iPU mEO lLE xoi tQB urJ -afk +tle hkh -afk +tle tCZ urJ -afk +tle hkh -afk +tle tCZ pcu tPN @@ -67321,31 +59145,31 @@ slM cME cME tIU -gZc +mLk tIU cME -liA +cME cME qIq eLu lcH -cCq -dHp -uFh -lcH +ctv +kmc +xcp +cME wQT eLu cME cME cME oFI -pHu +czn lMB sHH -veB +iDr kqC -kis -uiR +bBy +jog kqC rRO hvG @@ -67368,29 +59192,29 @@ nqN flC qms fnB -nDT +aZw gIB -vgu +uDu dzo -sRV -tHs +nZl +bnC hsC fnB fnB fnB -sRV -sRV -sRV -sRV +nZl +nZl +nZl +nZl fnB fnB fnB lAY nRb nRb -sOn -sOn -sOn +lLM +lLM +lLM plK vZX vZX @@ -67445,105 +59269,105 @@ azZ lAh xLi xLi -ruy +eAv phz phz -ruy +eAv azZ azZ -tOr -lro -kbO -kbO -kbO -kbO -kbO -kbO +dIH +jmA +aQl +aQl +aQl +aQl +aQl +aQl xZR -kbO -kbO -uvy -ezJ -xjK -xjK -xjK -xjK -xjK -tOr -ezJ -xjK +aQl +aQl +ecm +fzB +dyP +dyP +dyP +dyP +dyP +dIH +fzB +dyP cyV -fPZ -fPZ +jMu +jMu cyV -fPZ -kqz -cxF -sbQ -sbg -fSI -mIk -fPZ -ygH -kqz -kqz -kqz -kqz -fPZ -fPZ -cxF -goA -wmG -iVC -leq -mJy -cwO +jMu +vDI +mZO +nus +eGQ +adz +nyb +jMu +ckK +vDI +vDI +vDI +vDI +jMu +jMu +mZO +xEA +dzL +mxF +key +vVG +nVm hVI -djA -vDj -fPZ -fPZ +lbo +gWI +jMu +jMu hVI -ivR +qdy ovJ dvY -kqz -cwO -fPZ -fPZ +vDI +nVm +jMu +jMu sJu -rjE +nTT dQp idE fUX tQB iKT -afk -afk -afk +tle +tle +tle cjA cpW -afk -afk -afk +tle +tle +tle rac jlH twb twb twb cME -eLu -eLu -eLu +cME +cME +cME bgy -eLu +cME cME cME cME liA -cFy -mcc -vei +iWE +jpd +eDo xno dTf lcH @@ -67551,13 +59375,13 @@ cME ljd cME oFI -pHu +czn sHH sHH -hPs +klI abJ -usz -usz +saZ +saZ abJ sFf fnB @@ -67571,38 +59395,38 @@ ubH ubH rYC fnB -wOS -sTa -sTa -sTa -sTa -sTa -oWW +cdd +cfy +cfy +cfy +cfy +cfy +lAt eej fnB xnR gIB fnB -juS +hGQ fnB -fYB +rhX vUv fnB fnB -sRV -sTa -sTa -sTa -sTa -sRV +nZl +cfy +cfy +cfy +cfy +nZl fnB fnB cri cIJ mie -scU -sFn -vdZ +nWx +jes +jZH plK wHw plK @@ -67656,73 +59480,73 @@ lAh lAh lAh xLi -jpS +dqd phz phz phz azZ xLi azZ -tOr -ezJ -jES -xjK -xjK -xjK -xjK +dIH +fzB +jER +dyP +dyP +dyP +dyP xLi rfd -xjK -xjK -tOr -vpB -xWp -xfq -sqg -xRh -xjK -tOr -ezJ -xjK +dyP +dyP +dIH +wFL +jkE +jQe +rXu +qxg +dyP +dIH +fzB +dyP cyV -fPZ -fPZ +jMu +jMu cyV -fPZ -kqz -fPZ -wAT -trH -kqz -fPZ -fPZ -tnr -fPZ -fPZ -kqz -kqz -qDH -qDH -syf -syf -aNP -ebc -ven -gnV -uGq +jMu +vDI +jMu +cgl +oYL +vDI +jMu +jMu +bEi +jMu +jMu +vDI +vDI +fjk +fjk +bGO +bGO +fKJ +xwz +cAr +fln +sgM hVI tEH tEH -ajp +aFT aoa hVI tEH tEH hVI -ldT -lAf -fPZ -xns +wmb +pDu +jMu +udF vWe hVI hVI @@ -67748,14 +59572,14 @@ cME cME cME cME -liA +cME cME cME cME kaO -maE -mcc -dds +vCg +jpd +hsH daS cME cME @@ -67763,60 +59587,60 @@ cME cME eLu kqC -pHu +czn sHH -fxP -iUy +dDi +xgZ vRA -usz -usz +saZ +saZ vRA fnB fnB fnB fnB hss -tHs -tHs -tHs -tHs -tHs +bnC +bnC +bnC +bnC +bnC dIi fnB -ezT -uEm -uEm -uEm -uEm -uEm -ajr +hug +aLM +aLM +aLM +aLM +aLM +vFd fnB fnB aaW gIB -sRV +nZl vGe uGY gIB uGY nEy fnB -azJ +gIv pPf grL grL apy -azJ +gIv fnB fnB fnB plK -uZn +gIZ nRb -sOn -oli +lLM +fig plK -uYR +moF gRT vHU nCJ @@ -67868,77 +59692,77 @@ azZ azZ lAh xLi -ruy +eAv phz irD phz azZ azZ azZ -tOr -ezJ -xjK +dIH +fzB +dyP xLi ddL ddL ddL xLi xLi -dMK -jES -tOr -vqg -uef -neD +lSo +jER +dIH +iLU +taA +nXK xLi -fWc -xjK -tOr -ezJ -xjK +oQN +dyP +dIH +fzB +dyP tef tpO nql gkt -yjs -kqz -cJw -vdG -gzQ -kqz -luv -bcF -fPZ -fPZ -fPZ -kqz -vro -qDH +ein +vDI +ikr +pHf +qaL +vDI +gND +aht +jMu +jMu +jMu +vDI +nFs +fjk aSS -qmC -uCa -uCa -jgl -mhb -avX -oBP -cnW -mhb -mhb -mhb -kqz -mhb -mhb -mhb -mhb -avX -cwO -fPZ -cqH +bPI +bwM +bwM +wYq +cdy +kpx +qFh +xoC +cdy +cdy +cdy +vDI +cdy +cdy +cdy +cdy +kpx +nVm +jMu +ako hVI hVI hVI -bZC +oHf hVI aFZ xQC @@ -67960,24 +59784,24 @@ twb twb cME cME -eLu +cME cME rJh eLu eLu -pHu -mcc -vei -vbG +czn +jpd +eDo +cME vZD cME cME cME eLu kqC -pHu +czn sHH -bfb +rer uGY ceC xGt @@ -67988,13 +59812,13 @@ fnB eoZ fnB wTy -tHs -sRV -sRV -sRV -tHs +bnC +nZl +nZl +nZl +bnC aQU -vlm +wTr fbs ceC ceC @@ -68009,26 +59833,26 @@ uGY uxv uGY uGY -tHs -tHs +bnC +bnC fnB -fnB -sRV -uEm -uEm -uEm -uEm -sRV +kRY +nZl +aLM +aLM +aLM +aLM +nZl fnB fnB wzS plK -rtM +qVU nRb -sOn -iif +lLM +qBo nRb -xBT +oYx pSU dKo rJO @@ -68080,86 +59904,86 @@ azZ azZ lAh xLi -ruy +eAv phz phz phz phz -mYx +wEN azZ -tOr -ezJ -bAS +dIH +fzB +pDz xLi -pso -nTD -pdm -pPQ -qVD -kWJ -xjK -tOr -vpB -xWp -jPz -kbO -dsT -xjK -tOr -ezJ -xjK +dZu +xMv +lDp +bGb +hXO +rEp +dyP +dIH +wFL +jkE +tBL +aQl +nOj +dyP +dIH +fzB +dyP hVI rIS hVI dvq -fPZ -kqz -xeh -fPZ -tWe -kqz -qfI -fFU -cqy -fPZ -jaN -kqz -kqz -dla +jMu +vDI +kdp +jMu +uxR +vDI +sjp +miH +dfF +jMu +sFV +vDI +vDI +lTh oja -peh -fPZ -bDD -mJy -sjw -jEb -jEb -oxk -jEb -jEb -jEb -hcf -jEb -jEb -kqz -pxI -jEb -tur -fPZ -goA +cQv +jMu +jBA +vVG +oXl +qxi +qxi +cXU +qxi +qxi +qxi +jrz +qxi +qxi +vDI +lio +qxi +kZw +jMu +xEA hVI lDC lDC ldZ lDC -mhv +nAD mGe dGw -vPM +qeP haa mGe mGe -vPM +qeP rKO mGe mGe @@ -68176,10 +60000,10 @@ eLu mrk cME jkg -lcH -xlq -mcc -vei +cME +czn +jpd +eDo xno cME lcH @@ -68187,60 +60011,60 @@ cME cME cME kqC -pHu +czn sHH -vei +eDo uGY -tBD -pPi -fGp +lQQ +gaO +tHD ceC fnB fnB fnB fnB ceC -jVQ +mNQ tpa tpa tpa -jVQ +mNQ ceC ceC ceC ceC -eZD -wZn -meF +qZD +vEf +ltM ceC ceC fkY -rmA +xtc pTj -jCl +hqz pDH dme fnB -ftv -aqI +hyI +mhn fnB fnB fnB -sRV -sRV -sRV -sRV +nZl +nZl +nZl +nZl fnB fnB fnB fnB vFs -sOn -sOn -sOn -aFg +lLM +lLM +lLM +pun nRb -xBT +oYx gPs iMo rJO @@ -68250,7 +60074,7 @@ aPH aPH aPH aPH -aas +wDh uMw uMw vXT @@ -68297,55 +60121,55 @@ phz phz phz phz -ruy -xjK -tOr -ezJ -xjK +eAv +dyP +dIH +fzB +dyP ddL lXO nId ykO pCc -mQn -siz -xjK -tOr -ezJ -xjK -xjK -xjK -xjK -xjK -tOr -ezJ -bAS +dcT +jWq +dyP +dIH +fzB +dyP +dyP +dyP +dyP +dyP +dIH +fzB +pDz hVI hVI hVI -exs -fPZ -kqz -xwi -fPZ -hqZ -kqz -fPZ -sbQ -luv -dBI -rLT -kqz -dqk -pIX +kum +jMu +vDI +tQj +jMu +dPo +vDI +jMu +nus +gND +kAb +nFP +vDI +jIk +ehX bNf -nBG -fKq -fPZ -mJy -cwO -mJM -fOs +tCW +tFl +jMu +vVG +nVm +poe +tDm hVI hVI hVI @@ -68356,25 +60180,25 @@ hVI aoa hVI vWe -ruB -ruB -dID +wLF +wLF +drT vWe mFv gXD -gTw +feE dGw -vPM -vPM -vPM -vPM -vPM -vPM -vPM -vPM -vPM -vPM -vPM +qeP +qeP +qeP +qeP +qeP +qeP +qeP +qeP +qeP +qeP +qeP dGw eDn oVk @@ -68384,82 +60208,82 @@ bQM twb nSU cME -eLu +cME cME cME eLu -lcH -pHu -mcc -vei -lcH +jkg +czn +jpd +eDo +cME wQT eLu wOy qso hTr kqC -pHu +czn sHH -vei +eDo hVG -hVm +vGg cZV -oQY +kvG hVG fnB fnB fnB fnB ceC -kEP -sRV -sRV -sRV -unc +toH +nZl +nZl +nZl +ikY ceC -bOh -hUV -rRT -hUV -bFR -sMo -gVA +bSE +kRb +vEG +kRb +bSS +kzK +xAF ceC qnQ pTj fnB pTj gnj -crO +fDY fnB -ftv -aqI +hyI +mhn fnB fnB fnB -sRV -sRV -sRV -sRV +nZl +nZl +nZl +nZl fnB fnB fnB fnB vFs -sOn -sOn -sOn -fdS +lLM +lLM +lLM +cQb nRb -xBT +oYx bWg tKv wxX rJO plK -keL -keL +anS +anS aPH nGy rJO @@ -68510,85 +60334,85 @@ phz phz irD phz -xjK -tOr -ezJ -xjK +dyP +dIH +fzB +dyP ddL ntH nUr oHX pFP -rfR -sjn -xjK -tOr -mtk -sqg -sqg -sqg -sqg -sqg -ukI -ezJ -xjK +hFb +uWY +dyP +dIH +vmh +rXu +rXu +rXu +rXu +rXu +mtu +fzB +dyP hVI hVI hVI -xGY -fPZ -kqz -fPZ -fPZ -fPZ -kqz -fPZ -hBX -gwz -fPZ -vBV -aRB -kqz -dWN +qaH +jMu +vDI +jMu +jMu +jMu +vDI +jMu +aSM +olI +jMu +hUB +bgI +vDI +jNM bNf -uxi -fPZ -uvG -mJy -cwO -fPZ -jBK +srx +jMu +urm +vVG +nVm +jMu +tev hVI -sol -fPZ -fPZ -fPZ -fPZ +rvK +jMu +jMu +jMu +jMu hVI -mFh -isJ +wQI +wOz pQD -rME -fPZ -fPZ +jMp +jMu +jMu wGa dGw -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM -vPM -vPM -tvI -tvI -tvI -tvI -vPM -vPM +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP +qeP +qeP +jxH +jxH +jxH +jxH +qeP +qeP dGw eHa eDn @@ -68596,14 +60420,14 @@ bQM twb uts cME -liA +cME cME cME cME liA -pHu -mcc -ueF +czn +jpd +xli kqC kqC kqC @@ -68611,60 +60435,60 @@ kqC kqC kqC kqC -osO -mfV -odg +xDR +huj +nnh uGY -toJ -twB -twB +rEy +vbb +vbb ceC bsq dzo dzo bsq ceC -vUE +iya fnB fnB fnB -sRV +nZl hVG yft eSs -aHY -tXi -huI +cTy +lna +nMb lpf -seY +tmb ceC sns fnB -jmm +veX fnB -tPQ +oic sYP xqD -ftv -aqI +hyI +mhn fnB fnB -sRV -sTa -sTa -sTa -sTa -sRV +nZl +cfy +cfy +cfy +cfy +nZl fnB fnB wzS plK upX nRb -sOn -iif +lLM +qBo nRb -xBT +oYx uMw rJO rJO @@ -68677,7 +60501,7 @@ rJO anP omb rJO -xoK +eOs vXT kPz bQM @@ -68717,115 +60541,115 @@ azZ azZ xLi phz -ruy +eAv phz phz phz -jpS -xjK -tOr -ezJ -mrm +dqd +dyP +dIH +fzB +lWB ddL oIq nOw oXR pHh -lxk -sma -xjK -tOr -hmk -kbO -kbO -kbO -kbO -kbO -kbO -dsT -xjK +pjl +kOV +dyP +dIH +xdi +aQl +aQl +aQl +aQl +aQl +aQl +nOj +dyP mEO mEO hVI hVI -hOg -kqz -kqz -kqz -kqz -kqz -kqz -wOT -kqz -bYq -kqz -kqz -kqz -qCw +ipr +vDI +vDI +vDI +vDI +vDI +vDI +koF +vDI +ujf +vDI +vDI +vDI +kDB bNf -ffU -fPZ -fPZ -mJy -cwO -hOg -xIg +uBg +jMu +jMu +vVG +nVm +ipr +veg hVI -mMb -dLx -fPZ -fPZ -fPZ +kCD +qYM +jMu +jMu +jMu dvY -ryN -gBo +uyF +oaM qpw -fPZ -fPZ -fPZ +jMu +jMu +jMu jEC dGw -tvI -fHy -tvI -tvI -tvI -tvI -tvI -vPM -vPM -vPM -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jxH +dSv +jxH +jxH +jxH +jxH +jxH +qeP +qeP +qeP +jxH +jxH +jxH +jxH +jxH +jxH +qeP deH eDn eDn twb eLu eLu -eLu +cME srI dTf +cME eLu -twb -pHu -mcc -vei -wzE -bux -bZu +czn +jpd +eDo +saZ +gIj +gIj kqC -bux -bZu +xAW +nLp kqC -usz -usz -usz +saZ +saZ +saZ uGY xGt xGt @@ -68836,19 +60660,19 @@ ceC ceC ceC ceC -jpR +lmP fnB fnB fnB -sRV +nZl hVG vOj yft dpI fGe -suE +pUp aBO -tCu +kyT ceC wvf cHx @@ -68857,26 +60681,26 @@ pTj fnB dme fnB -ftv -aqI +hyI +mhn fnB fnB -azJ +gIv pPf grL grL apy -azJ +gIv fnB fnB vGe plK -omi +shX nRb -sOn -aFg +lLM +pun nRb -xBT +oYx uMw rJO rJO @@ -68928,60 +60752,60 @@ azZ azZ xLi xLi -jpS +dqd phz -hWU +ixT phz -jpS +dqd xLi -xjK -tOr -ezJ +dyP +dIH +fzB azZ xLi -nvC -nVA -paQ -pIi -gKL -shq -jES -tOr -ezJ -xjK -xjK -xjK -xjK -xjK -xjK -xjK -xjK +alq +fFI +fVm +kVc +qLT +lhM +jER +dIH +fzB +dyP +dyP +dyP +dyP +dyP +dyP +dyP +dyP mEO mEO mEO hVI -hOg -fPZ -goH -kqz -fPZ -fPZ -fPZ -lvh -fPZ -fPZ -gwz -lCm -fPu -dla +ipr +jMu +lQK +vDI +jMu +jMu +jMu +agj +jMu +jMu +olI +qFH +shR +lTh fzb -mYN -fPZ -mFh -xog -oBP -aja -lUp +qQV +jMu +wQI +qca +qFh +sXC +vqm hVI hLV dDO @@ -68992,75 +60816,76 @@ hVI hVI hVI hVI -fPZ -fPZ -hNi +jMu +jMu +hdF lDC ggQ -tvI -tvI -tvI -tvI -eMO -tvI -tvI -vPM -vPM -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jxH +jxH +jxH +jxH +fVP +jxH +jxH +qeP +qeP +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP dGw -dhe +bdZ liA -gVR +tkC dMa gfo cME wQT -eLu -kqC -pHu -mcc -vei +cME kqC -isP -fAs +czn +jpd +eDo +saZ +saZ +gIj kqC -avl -ocB +rPJ +osr kqC -cCq -dHp -dHp -dHp -ugU -gNW -gNW -gNW -hKE +ctv +kmc +kmc +kmc +oWl +vJP +vJP +vJP +oBc xGt -mni -tHs -mni -tHs -sRV -sRV -sRV -tHs +nRJ +bnC +nRJ +bnC +nZl +nZl +nZl +bnC ceC ryt ryt -nqN +ceC hSR -tam +oYV ilh ceC +ceC uGY uGY uGY @@ -69072,23 +60897,22 @@ uGY uGY uGY uGY -uGY -sRV -uEm -uEm -uEm -uEm -sRV +nZl +aLM +aLM +aLM +aLM +nZl fnB fnB fnB plK -aFg +pun nRb -sOn -fdS +lLM +cQb nRb -xBT +oYx uMw rJO rJO @@ -69140,15 +60964,15 @@ azZ azZ xLi xLi -jpS +dqd phz phz phz phz xLi -xjK -tOr -ezJ +dyP +dIH +fzB azZ xLi xLi @@ -69157,15 +60981,15 @@ ddL ddL xLi xLi -tmi -tOr -ezJ -xjK -bjy -kky -lvx -jpS -ruy +wiF +dIH +fzB +dyP +byi +uUk +oKw +dqd +eAv lAh lAh aFZ @@ -69173,81 +60997,81 @@ aFZ bmE hVI hVI -lxe -ayM -kqz -fPZ -bow +eub +oSl +vDI +jMu +kHh aFZ hVI hVI -kqz -kqz +vDI +vDI hVI hVI hVI yhR -rmI -mhb -avX -kqz -kqz -oBP -uXc -cQn -mhb -mhb -mhb -rAQ -bqy +wjQ +cdy +kpx +vDI +vDI +qFh +mYk +qIj +cdy +cdy +cdy +hKC +qSV hVI -kSp -pEe -mFh -aja -fPZ -uxi -qwZ +gai +vfm +wQI +sXC +jMu +srx +sEm bWr -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP mGe -vPM -jgN -tvI -acx -tvI -tvI -eMO -tvI -vPM +qeP +ktP +jxH +ikn +jxH +jxH +fVP +jxH +qeP dGw -lDC -twb -twb -tPN -tPN -tPN -twb +bdZ +liA +tkC +dMa +gfo +cME +cME eLu kqC -pHu -mcc -vei +eTI +jpd +eDo +saZ +saZ +jog kqC ryJ end kqC -ryJ -end -kqC -pHu +czn juW sHH nCu @@ -69255,59 +61079,59 @@ ufo sHH sHH eGz -isK +isC xGt -fHU -uVa -fHU -tHs -sRV -sRV -sRV -tHs -bpK -ukN -kSI +gfW +xrQ +gfW +bnC +nZl +nZl +nZl +bnC +swm +wQO +idC hVG yft fnB fnB hVG -sRV +nZl sFf -hTy +cfE uGY -pUS -tHs -tHs +ace +bnC +bnC xGt -wTz -iTy -eFX +gtT +cTc +xMk uGY fnB fnB fnB fnB fnB -sRV -sRV -sRV -sRV +nZl +nZl +nZl +nZl plK -fdS +cQb nRb -sOn -sOn -sOn -xBT +lLM +lLM +lLM +oYx uMw rJO rJO rJO plK -keL -keL +anS +anS eYV lvi rJO @@ -69353,166 +61177,166 @@ azZ azZ xLi xLi -jpS +dqd phz phz phz phz -xjK -tOr -ezJ +dyP +dIH +fzB azZ azZ -xjK -xjK -xjK -bAS +dyP +dyP +dyP +pDz xLi xLi -aOd -tOr -ezJ -xjK -kVz +ggN +dIH +fzB +dyP +vbl xLi -xLP +sBu azZ azZ azZ ohF pcu tQB -wnW -aUx +oSk +iOd hVI rfo -fPZ -kqz -fPZ +jMu +vDI +jMu idE tEH -fPZ -fPZ -fPZ -trH -trH -fPZ +jMu +jMu +jMu +oYL +oYL +jMu hVI hVI -wRh -kqz -kqz -nhF -kqz -kqz -icj -tST -kqz -kqz -kqz -aGS -eli +pGG +vDI +vDI +fHW +vDI +vDI +owY +jZX +vDI +vDI +vDI +eIa +xGX hVI -myO -cwO -mJy -cwO -fPZ -uxi -kUR +mso +nVm +vVG +nVm +jMu +srx +jYl eMJ -tvI -vYE -tvI -tvI -tvI -tvI -qbr -vPM -mGe -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jxH +wtb +jxH +jxH +jxH +jxH +vMN +qeP mGe -xQC -bQM -bQM -bQM -bQM -bQM +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP +lDC +eDn +wzE +hZR +hZR +hZR +wzE wzE kqC -pHu -ikA -vei -usz -cCq -dHp -dHp -dHp -uFh -jRR -pHu +eTI +ohm +eDo +saZ +ctv +kmc +kmc +kmc +xcp +rgS +czn sHH sHH cVl sHH bSP sHH -sHw -uAG +rrv +udE xGt -cBT -fEM -rBa -ddO -sRV +ybi +ias +cXs +bDy +nZl fWL -nyD -gkm -oZR -sRV -tJM -nqN -ltb -cbK -hAL +mtg +oOx +hyB +nZl +san ceC -xEa +lgX +cAu +cap +ceC +bqU fnB -lqB +caS uGY -aCT +axZ fnB -sRV +nZl hVG -tHs -qbu -tHs +bnC +byI +bnC hVG -sRV -sRV -sRV -sRV -sRV -sRV -sRV -sRV -cvq +nZl +nZl +nZl +nZl +nZl +nZl +nZl +nZl +rYa plK -lNB +eso nRb nRb nRb -sOn -xBT +lLM +oYx gHz aJX uMw @@ -69570,88 +61394,88 @@ phz phz phz phz -xjK -tOr -mtk -sqg -sqg -sqg -sqg -sqg -sqg +dyP +dIH +vmh +rXu +rXu +rXu +rXu +rXu +rXu xZR -sqg -sqg -uwg -ezJ -xjK -qzn -ham -btq +rXu +rXu +rDU +fzB +dyP +pXy +pUe +ntY azZ azZ azZ bTo pcu aFZ -uCz -kqz +sqj +vDI hVI -bow -fPZ -kqz -mUr -bow +kHh +jMu +vDI +nua +kHh tEH -fPZ -rAa -rss -dBI -ycg -fPZ +jMu +xYm +sRM +kAb +mDR +jMu aif rKa -cVk -oYm -lFj -cFC -kqz -kqz -icj -kqz -kqz -sZr -kqz -aNw +ohv +xcU +uXL +dNl +vDI +vDI +owY +vDI +vDI +ggA +vDI +mEP hVI hVI -mAz -tur -quk -rMS -tcl -seu -hTc +uYX +kZw +wNn +bjd +cgw +nZj +lst bWr -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP dGw -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP mGe xQC bQM @@ -69661,53 +61485,53 @@ bQM bQM wzE kqC -pHu -mcc -vei -usz -avl -xri -xri -xri -iUy -jRR -wjx +czn +jpd +eDo +saZ +rPJ +wLv +wLv +wLv +xgZ +rgS +bkA sHH wOM sHH sHH hxi ufo -isK +isC ceC ceC -bFY -tHs -wJt -vZU -sRV -vKj -nqN -nqN -nqN -nqN -nqN -nqN +aZJ +bnC +aCZ +tCl +nZl +xQT +uGY +uGY +uGY +uGY +uGY ceC -nqN -nqN ceC -hUH -sRV -nBM +ceC +ceC +ceC +bHJ +nZl +yeC uGY -aVN +uDQ fnB -tHs +bnC xGt -gbP -uKh -iin +emy +wGR +ewj uGY sEO sEO @@ -69727,8 +61551,8 @@ dwT dwT plK plK -rrb -aYZ +mHp +wqC aPH kPz kPz @@ -69781,60 +61605,60 @@ xLi xLi xLi phz -jpS -xjK -lax -kbO -kbO -kbO -kbO -kbO -kbO -kbO +dqd +dyP +wxg +aQl +aQl +aQl +aQl +aQl +aQl +aQl xZR -kbO -kbO -dFk -ezJ -xjK -xjK -xjK -xjK +aQl +aQl +ssN +fzB +dyP +dyP +dyP +dyP azZ bQM bQM bTo pcu aFZ -duB -kqz +wDg +vDI aif idE -fPZ -kqz -fPZ +jMu +vDI +jMu idE tEH -fPu -jlg -jlg -fPZ -fPZ -fPu +shR +mxI +mxI +jMu +jMu +shR hVI hVI -wRh -xzb -kqz -kqz -kqz -uXa -icj -vro -kqz -sWu -kqz -bxa +pGG +nYd +vDI +vDI +vDI +qzE +owY +nFs +vDI +eWQ +vDI +wnG lDC lDC lDC @@ -69845,25 +61669,25 @@ lDC lDC lDC ggQ -tvI -kuT -tvI -tvI -tvI -oKQ -tvI -vPM +jxH +piJ +jxH +jxH +jxH +ouh +jxH +qeP mGe -vPM -tvI -oKQ -tvI -tvI -tvI -ioG -tvI -tvI -vPM +qeP +jxH +ouh +jxH +jxH +jxH +ckH +jxH +jxH +qeP deH eDn eDn @@ -69872,10 +61696,10 @@ xQC xQC eDn eDn -vqi -pHu -mcc -veB +jIE +czn +jpd +iDr kqC ryJ end @@ -69883,39 +61707,39 @@ kqC ryJ end kqC -azT +iyb sHH sHH cPQ sHH sHH pbS -isK +isC xGt -mni -tHs -mni -tHs -tHs +nRJ +bnC +nRJ +bnC +bnC fnB fnB pTj -sRV -uSo -bOh +nZl +oRS +bSE wBK -nzm +dJQ ceC -tVZ -tVZ +mHO +mHO uGY uGY uxv uGY uGY -ril +ujk fnB -tHs +bnC uGY xGt xGt @@ -69924,20 +61748,20 @@ uGY jwK jnd jwK -aWR +bGf hxy -aWR -aWR +bGf +bGf hxy -aWR +bGf okg jnd mpf hLz -aWR +bGf hxy hxy -aWR +bGf aPH aPH aPH @@ -69994,23 +61818,23 @@ xLi xLi xLi xLi -xjK -xjK -xjK -xjK -xjK -xjK -xjK -xjK -bAS +dyP +dyP +dyP +dyP +dyP +dyP +dyP +dyP +pDz xLi xLi -aOd -tOr -ezJ -xjK -xjK -xjK +ggN +dIH +fzB +dyP +dyP +dyP azZ azZ bQM @@ -70022,9 +61846,9 @@ hVI hVI hVI gjj -fPZ -kqz -fPZ +jMu +vDI +jMu idE aFZ hVI @@ -70035,100 +61859,100 @@ hVI hVI hVI hVI -wRh -kqz -kqz -kqz -kqz -sHQ -pnc -bII -kqz -kqz -kqz -iJj -cAv -vPM -fhz -gTw -gTw -wuT -qyX -vPM -vPM +pGG +vDI +vDI +vDI +vDI +uUs +rld +uso +vDI +vDI +vDI +mwo +exp +qeP +wao +feE +feE +iuh +caJ +qeP +qeP dGw -tvI -tvI -tvI -tvI -tvI -tvI -kuT -vPM +jxH +jxH +jxH +jxH +jxH +jxH +piJ +qeP mGe -xqh -tvI -tvI -ioG -tvI -aJU -tvI -tvI -tvI -vPM -vPM +ldw +jxH +jxH +ckH +jxH +eAj +jxH +jxH +jxH +qeP +qeP pkw -ybs -gTw -gTw -gTw -vPM +gaB +feE +feE +feE +qeP pkw -tjM -cMg -mcc -vei +kPk +wTb +jpd +xpu kqC -cCq -awo +ctv +jFu kqC -cCq -mIA +ctv +gIU kqC -pHu +czn sHH sHH sHH nCu juW buO -isK +isC xGt -fHU -vah -fHU -tHs -tHs +gfW +fkN +gfW +bnC +bnC fnB fnB pTj -juS +hGQ gmS dhs sYP -nzm +dJQ uGY -wir -tHs -rcu -tHs -sRV -quU +lxM +bnC +fID +bnC +nZl +xUA uGY -jdh +ueq fnB -tHs -nqN +bnC +uGY jKG hxy hxy @@ -70138,18 +61962,18 @@ pbC hxy hxy jwK -aWR -aWR +bGf +bGf jwK hxy mOW hxy -aAM +obc hLz -nID +lBw jwK jwK -hLy +kfw wly kPz kPz @@ -70209,19 +62033,19 @@ xLi xLi xLi xLi -mwU -ruy -ruy -ruy -cft -cft +xtB +eAv +eAv +eAv +vkD +vkD xLi xLi phz -tOr -ezJ +dIH +fzB rBr -xjK +dyP azZ azZ azZ @@ -70230,13 +62054,13 @@ bQM bTo pcu aFZ -fHQ -kqz +aRn +vDI aif idE -fPZ -kqz -fPZ +jMu +vDI +jMu qQU aFZ fIT @@ -70246,20 +62070,20 @@ mEO qDo hVI lmn -jXQ -tqR -bgR -uiK -bgR -izP +xhH +oQt +lNN +uEF +lNN +tYs nQq nQq -sZr -kqz -kqz -kqz -lcu -vbe +ggA +vDI +vDI +vDI +hRi +iZu dGw fsn mGe @@ -70267,27 +62091,27 @@ mGe dGw rVy mGe -wnB -wnB -gVX -vPM -vPM -vPM -vPM -vPM -vPM -vPM +kGr +kGr +tss +qeP +qeP +qeP +qeP +qeP +qeP +qeP dGw -vPM -vPM -vPM -vPM -vPM -vPM -vPM -sYe -tJT -tJT +qeP +qeP +qeP +qeP +qeP +qeP +qeP +ydK +yay +yay mGe isl dGw @@ -70297,71 +62121,71 @@ mGe dGw isl sHH -pHu -mcc -vei +czn +jpd +xpu kqC -wII -bjk +scu +gWy kqC -wII -bjk +scu +gWy kqC -pHu +czn sHH -vDx +tCX sHH aLR sHH -ifI -uAG +xRN +udE xGt -cBT -rFs -cBT -tHs -tHs +ybi +nSc +ybi +bnC +bnC fnB fnB pTj -xTy -xTy -sRV -sRV -nzm +mLW +mLW +nZl +nZl +dJQ cCB -tHs +bnC fnB fnB cQu fnB -tHs +bnC cCB -tHs +bnC fnB -tHs +bnC uGY hLz -wMR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR +xiE +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf hxy -bgG +ajn xUo -aWR +bGf jwK jwK -aWR +bGf ckm kPz bQM @@ -70420,18 +62244,18 @@ xLi xLi xLi xLi -lzO -xjK -dNF -ruy -dNF -xjK -xjK -xjK +qrW +dyP +fwy +eAv +fwy +dyP +dyP +dyP phz phz -tOr -ezJ +dIH +fzB azZ azZ azZ @@ -70442,13 +62266,13 @@ bQM bTo pcu aFZ -qTp -kqz +ehT +vDI hVI idE -fPZ -kqz -fPZ +jMu +vDI +jMu idE sJu mEO @@ -70458,20 +62282,20 @@ mEO ezo hVI gZf -fPZ -mJy -bII -kqz -kqz -cLr +jMu +vVG +uso +vDI +vDI +lsO hVI hVI -fcO -sZr -kqz -kqz -pIX -cYg +fKg +ggA +vDI +vDI +ehX +nbP dGw dGw dGw @@ -70479,10 +62303,10 @@ jqR dGw rVy mGe -bCk -sLl -jNa -vPM +yjV +idL +msN +qeP mGe mGe smz @@ -70496,10 +62320,10 @@ wWT dGw mGe mGe -vPM -liT -jXx -jXx +qeP +qoS +liD +liD mGe isl dGw @@ -70509,9 +62333,9 @@ dGw dGw isl sHH -pHu -mcc -vei +czn +jpd +iDr kqC kqC kqC @@ -70519,61 +62343,61 @@ kqC kqC kqC mCF -iDa +nuQ sHH sHH vRA sHH sHH -isK +isC ceC ceC -bFY -tHs -bFY -tHs -tHs -sRV -qks +aZJ +bnC +aZJ +bnC +bnC +nZl +nta uGY -kik -kik -nqN -kik -iOE +sls +sls uGY -hce +sls +kLK +uGY +lli jpl -tHs -tHs +bnC +bnC fnB -sRV +nZl hVG -sRV +nZl fnB -tHs +bnC uGY mft -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR -aWR +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf +bGf hxy -aWR +bGf xUo -aWR +bGf jwK jwK -aWR +bGf ckm kPz bQM @@ -70633,17 +62457,17 @@ xLi xLi xLi xLi -mzp -dNF -ruy -dNF -xjK -xjK -xjK +udr +fwy +eAv +fwy +dyP +dyP +dyP phz phz -tOr -ezJ +dIH +fzB pPd azZ azZ @@ -70654,13 +62478,13 @@ tuf bTo pcu tQB -qeu -kqz +fTt +vDI hVI lpV -eAQ -kqz -fPZ +pRT +vDI +jMu ygv aFZ hVI @@ -70670,20 +62494,20 @@ mEO rNp hVI gZf -fPZ -mJy -kqz -kqz -iOe -feO +jMu +vVG +vDI +vDI +orX +rZM nQq nQq -fJO -kqz -kqz -kqz -aSw -cYa +bBH +vDI +vDI +vDI +qqP +tdf dGw gfp hkW @@ -70691,27 +62515,27 @@ mGe dGw rVy mGe -oOs -oOs -eKg -vPM -jZx -vPM -vPM -vPM -vPM -jZx +hPu +hPu +cjh +qeP +yed +qeP +qeP +qeP +qeP +yed dGw -vPM -dHI -vPM -vPM -vPM -vPM -vPM -xQs -ckj -ckj +qeP +pxN +qeP +qeP +qeP +qeP +qeP +mxc +mSv +mSv mGe isl dGw @@ -70721,71 +62545,71 @@ mGe dGw isl sHH -pHu -mcc -vei -kqC -bux -bZu +czn +jpd +eDo +saZ +saZ +saZ kqC -bux -bFN +xAW +suL kqC -pHu +czn sHH sHH vRA xQE xBv -isK +isC xGt maC -tHs -tHs -tHs -tHs -tHs +bnC +bnC +bnC +bnC +bnC bDd uGY uGY -qTa -qTa -nqN -qTa -nsH +dYi +dYi +uGY +dYi +iAz xGt -tHs +bnC fnB -aDC -wiQ +wbx +iZe vOj -sRV +nZl hVG -sRV +nZl fnB -tHs +bnC uGY gaN -aWR -aWR -aWR -aWR -tBU -aWR -aWR -aWR -aWR -aWR -aWR -aWR -bgG +bGf +bGf +bGf +bGf +sCM +bGf +bGf +bGf +bGf +bGf +bGf +bGf +ajn hxy -aWR +bGf xUo -aWR +bGf jwK jwK -aWR +bGf ckm kPz kPz @@ -70843,22 +62667,22 @@ xLi xLi csp csp -pvT -pvT -xjK -jvp -ruy -dNF -xjK -xjK -xjK +gPk +gPk +dyP +dpo +eAv +fwy +dyP +dyP +dyP rBr phz -tOr -ezJ -xjK -ruy -jpS +dIH +fzB +dyP +eAv +dqd azZ azZ azZ @@ -70870,9 +62694,9 @@ hVI hVI hVI idE -fPZ -kqz -fPZ +jMu +vDI +jMu idE aFZ hVI @@ -70882,122 +62706,122 @@ mEO hVI hVI gZf -fPZ -mJy -bII -kqz -fyT -kqz -tnd -ueA -bII -kqz -kqz -kqz -kdo -tzF -vPM -guB -ick -jZb -mDi -sWF -vPM -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM +jMu +vVG +uso +vDI +xRp +vDI +cyC +vYa +uso +vDI +vDI +vDI +wMC +cXW +qeP +ycu +qAf +soS +fmN +mYP +qeP +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP mGe -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -tvI -vPM -vPM +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +jxH +qeP +qeP dnA -vWE -jZb -jZb -jZb -vPM +bDY +soS +soS +soS +qeP dnA -reD -pHu -mcc -vei +lGu +czn +jpd +eDo +saZ +saZ +saZ kqC -avl -fAs +rPJ +iyG kqC -avl -jms -kqC -pHu +czn sHH vRA eNV sHH sHH -isK +isC xGt xed -tHs -tHs -tHs -tHs -tHs +bnC +bnC +bnC +bnC +bnC wAR cCB -sRV -sRV -sRV -sRV -sRV -nzm +nZl +nZl +nZl +nZl +nZl +dJQ xGt -tHs +bnC fnB -keF -vrf +aAu +kHc fnB -tHs +bnC uGY -tHs -tHs -pCZ +bnC +bnC +wvU uGY hLz -aWR -aWR +bGf +bGf hxy hxy jrL hxy hxy jwK -aWR -aWR +bGf +bGf jwK hxy mOW hxy -fMY +mal hLz -nID +lBw hxy hxy -hLy +kfw wly ckm ckm @@ -71042,7 +62866,7 @@ bQM azZ azZ ejw -jpS +dqd etL phz phz @@ -71052,26 +62876,26 @@ gDx xLi xLi xLi -ruy +eAv csp csp -deN -deN -eRS -dNF -ruy -dNF -jmM +cDQ +cDQ +oMv +fwy +eAv +fwy +fhI xLi xLi -ruy +eAv phz -tOr -ezJ +dIH +fzB irD trl phz -ruy +eAv azZ azZ lAh @@ -71082,9 +62906,9 @@ idE idE gkt idE -fPZ -iOe -fPZ +jMu +orX +jMu idE eVm hVI @@ -71092,21 +62916,21 @@ tNS mEO xgF hVI -fiD -wkp -fPZ -mJy -kqz -kqz -mqY -kqz -xzb -kqz -kqz -xzb -kqz -kqz -oFW +rOh +xAK +jMu +vVG +vDI +vDI +lui +vDI +nYd +vDI +vDI +nYd +vDI +vDI +enn eDn eHa xQC @@ -71115,27 +62939,27 @@ xQC eDn eDn iCi -vPM -tvI -rxu -tvI -tvI -tvI -tvI -oKQ -tvI -vPM +qeP +jxH +meU +jxH +jxH +jxH +jxH +ouh +jxH +qeP mGe -vPM -tvI -oKQ -tvI -vYE -tvI -xXw -hVS -tvI -vPM +qeP +jxH +ouh +jxH +wtb +jxH +raK +lcb +jxH +qeP deH eDn eDn @@ -71144,51 +62968,51 @@ xQC xQC eDn eDn -vqi -pHu -mcc -veB -kqC -ryJ -end +jIE +czn +jpd +eDo +saZ +saZ +jog kqC ryJ end kqC -ulJ +uOB sHH vRA sHH sHH oJW -isK +isC xGt adl -isB -tHs -pQb -lgy -tHs +cWI +bnC +hEM +fpr +bnC mEb uGY -sRV -sRV -sRV -sRV -sRV -nzm +nZl +nZl +nZl +nZl +nZl +dJQ xGt -kvn +bhP fnB -qKs -tHs +kda +bnC fnB -tHs +bnC uGY ceC uGY uGY -nqN +uGY jlO jwK jwK @@ -71200,8 +63024,8 @@ hxy hxy jwK jwK -aWR -aWR +bGf +bGf okg liZ uSQ @@ -71211,9 +63035,9 @@ xja xja hLz hLz -mWg -mWg -mWg +qWs +qWs +qWs wly wly kPz @@ -71265,38 +63089,38 @@ xLi xLi xLi phz -ruy -ruy +eAv +eAv xLi xLi -cBQ -dNF -ruy -dNF -xjK +vfZ +fwy +eAv +fwy +dyP azZ azZ azZ -eyo -tOr -ezJ +nBq +dIH +fzB phz -jpS +dqd phz -ruy +eAv csp -xjK -xjK +dyP +dyP csp idE idE hVI -jJF -fPZ -fPZ -fPZ -kqz -fPZ +dCT +jMu +jMu +jMu +vDI +jMu idE aFZ hVI @@ -71304,21 +63128,21 @@ svG mEO mEO sJu -fPZ -fPZ -fPZ -urS -kqz -kqz -kqz -teT -kqz -kqz -kqz -kqz -kqz -kqz -lwB +jMu +jMu +jMu +ekT +vDI +vDI +vDI +spu +vDI +vDI +vDI +vDI +vDI +vDI +qIH aFZ aFZ gyW @@ -71327,53 +63151,53 @@ bQM bQM xQC mGe -vPM -tvI -tvI -tvI -tvI -tvI -tvI -tvI -rxu -vPM +qeP +jxH +jxH +jxH +jxH +jxH +jxH +jxH +meU +qeP dGw -vPM -tvI -tvI -rxu -tvI -kuT -tvI -hVS -tvI -vPM +qeP +jxH +jxH +meU +jxH +piJ +jxH +lcb +jxH +qeP mGe xQC -cmz -fyC -qOk -mKS -erT -wzE +cAW +cAW +cAW +cAW +cAW wzE -pHu -mcc -vei -usz -cCq -dHp -dHp -wsN -uFh -jRR -wjx +kqC +lUJ +jpd +eDo +saZ +ctv +kmc +kmc +pYD +xcp +rgS +bkA uyd sHH sHH sHH sHH -isK +isC ceC ceC nqN @@ -71381,22 +63205,22 @@ dCM dCM dCM nqN -nqN -nqN +uGY +uGY uxv ceC ceC bBS -qXl -weQ +jxl +lmL uGY -evQ +gAX fnB fnB fnB fnB -tHs -rfa +bnC +eRX ceC hLz gHl @@ -71475,40 +63299,40 @@ azZ phz xZR phz -xjK +dyP phz -xjK +dyP irD -ldy -lYl -fkP -dNF -ruy -dNF -phg +xnJ +eMN +iLv +fwy +eAv +fwy +oQf azZ xLi xLi -xjK -tOr -ezJ +dyP +dIH +fzB phz phz phz kEZ csp -xjK -xjK +dyP +dyP csp idE idE hVI -hpN -fPZ -fPZ -fPZ -kqz -fPZ +ayf +jMu +jMu +jMu +vDI +jMu idE aFZ hVI @@ -71516,21 +63340,21 @@ svG mEO mEO hVI -fOs -fPZ -fPZ -ryN -owv -jEb -cjl -jEb -yil -jEb -aaf -eTd -jEb -kqz -lJv +tDm +jMu +jMu +uyF +ruS +qxi +xev +qxi +qzm +qxi +kyJ +xPE +qxi +vDI +iJT aFZ aFZ gyW @@ -71539,105 +63363,105 @@ bQM bQM xQC vuc -vPM -tvI -tvI -tvI -qfE -dnI -tvI -tvI -tvI -vPM +qeP +jxH +jxH +jxH +rAq +rZb +jxH +jxH +jxH +qeP mGe -vPM -tvI -rxu -tvI -tvI -tvI -tvI -tvI -tvI -vPM +qeP +jxH +meU +jxH +jxH +jxH +jxH +jxH +jxH +qeP mGe xQC -xyy -afk -afk -afk -ghg +cAW +cAW +cAW +wzE wzE wzE -pHu -mcc -vei -usz -laZ -xri -xri -xri -iUy -jRR -wjx +kqC +uOB +jpd +eDo +saZ +agl +wLv +wLv +wLv +xgZ +rgS +bkA sHH sHH vRA nhR sql -pZb -kWn -hKE +ula +tEu +oBc hZR kPz kPz kPz dCM -tMx -oQY -oQY -vMb +sJS +kvG +kvG +hND xGt -xBI -xBI -xBI +tCm +tCm +tCm gIB -ohs -qgA -tHs -sRV -tHs -mni -gZE +iPc +pih +bnC +nZl +bnC +nRJ +xpH ceC tvU -wMR +xiE hxy hxy -aWR -aWR +bGf +bGf hxy -aWR -jtF +bGf +kFx hxy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf hxy hxy lPW hxy -mqc -aWR +tnV +bGf wSm pBV qKT qbl wSm -aWR -wMR +bGf +xiE hxy wly wly @@ -71687,30 +63511,30 @@ xLi xLi xLi xLi -aOd +ggN phz -xjK -app -lfS -mcT -fkP -dNF -ruy -dNF +dyP +mYw +alI +aqz +iLv +fwy +eAv +fwy phz xLi xLi azZ -xjK -tOr +dyP +dIH phz -xjK -jpS +dyP +dqd wNi -ruy +eAv csp -xjK -xjK +dyP +dyP gKA mxO arm @@ -71718,9 +63542,9 @@ arm arm miZ vcy -jCQ -fPZ -fPZ +hhF +jMu +jMu edv aFZ aFZ @@ -71753,45 +63577,45 @@ jmG cKa cKa cNC -tvI -tvI -tvI -tvI -tvI -tvI -vYE -vPM +jxH +jxH +jxH +jxH +jxH +jxH +wtb +qeP mGe -vPM -vPM -vPM -vPM -hrg -hrg -hrg -vPM -vPM +qeP +qeP +qeP +qeP +naO +naO +naO +qeP +qeP rWB eDn eDn -urJ -afk -hkh -afk -tCZ -pcu +cAW +cAW wzE -pHu -mcc -veB -kqC -ryJ -end +wzE +vPT +jpd +vDN +czn +jpd +eDo +saZ +saZ +jog kqC ryJ end kqC -ulJ +uOB sHH sHH sHH @@ -71799,57 +63623,57 @@ sHH xQE hCX sHH -isK +isC hZR kPz bQM kPz dCM -mZw -oQY +dKe +kvG cZV -oTe +sxn xGt -pGv -pGv -pGv +jHN +jHN +jHN gIB -qzX -tZX +snT +mXs uGY -vaj +oPT uGY -nWK -jdh +ptu +ueq ceC xOQ hxy hxy hxy -aWR -aWR +bGf +bGf hxy -tzx -tGl +oSn +pDr dSy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf hxy tSi fSe dSy -wMR -aWR +xiE +bGf ppG qbl qbl wSm rZr -aWR -aWR +bGf +bGf hxy wly wly @@ -71899,30 +63723,30 @@ xLi xLi xLi xLi -nvZ +mLr phz -xjK -xjK -lfS -mcT -fkP -obL -ruy -dNF +dyP +dyP +alI +aqz +iLv +gnK +eAv +fwy phz lAh lAh lAh -xjK -tOr -ezJ -xjK +dyP +dIH +fzB +dyP lAh lAh beW csp -kYM -xjK +jYw +dyP upt jmG mvl @@ -71935,96 +63759,96 @@ idE idE idE tOp -ror -wwR -uJj -kNz +gAE +hlO +wYB +lEd tOp -aaK -oDG -aRb +cAm +vGk +tyc cKa cKa -vJD -ggB -vJD -ggB -vJD +aul +ntl +aul +ntl +aul hqD -aaK -dkj -kNz -hor +cAm +vZR +lEd +mlf cKa -ocJ -rsE +rxj +dHU cKa -imL -ggB -uCD +dFv +ntl +dug mEv jYs -vMX -tvI -tvI -tvI -hVS -tvI -tvI -tvI -vPM -vZz -vPM -ioG -tvI -rcG -nzp -jdX -tJT -ePm -vPM +lPJ +jxH +jxH +jxH +lcb +jxH +jxH +jxH +qeP +pMG +qeP +ckH +jxH +xDX +quu +aSV +yay +dtn +qeP rWB eDn -jKI -mdJ -afk -afk -afk -xMW -jlH +cAW +cAW +cAW wzE -ldt -mcc -vei -kqC -cCq -pDV +rzF +jpd +jpd +vDN +myV +jpd +eDo +saZ +saZ +saZ kqC -cCq -qkY +ctv +cXQ kqC -avl -xri -xri -xri -xri -xri -xri -xri -uAG +rPJ +wLv +wLv +wLv +wLv +wLv +wLv +wLv +udE hZR kPz kPz kPz dCM -jbx -aSK -rbD -oEt +miX +vue +hJo +bdD xGt -wYE -wYE -wYE +hJT +hJT +hJT uGY tDo cHF @@ -72034,34 +63858,34 @@ uGY gIB gIB ceC -xnN +tNF hxy hxy hxy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf hxy -aWR -aWR +bGf +bGf mnp -aWR -aWR +bGf +bGf hxy wSm wSm hxy rZr -aWR -aWR +bGf +bGf hxy wly tan @@ -72101,7 +63925,7 @@ vcC bQM bQM bQM -dOF +bLm azZ azZ eVq @@ -72111,35 +63935,35 @@ xLi xLi xLi xLi -iQP -ruy -xjK -xjK -ljW -lYl -fkP -dNF -mHN -dNF -xjK +uqR +eAv +dyP +dyP +lAc +eMN +iLv +fwy +sio +fwy +dyP lAh lAh lAh -xjK -tOr -ezJ +dyP +dIH +fzB lAh lAh lAh -ruy +eAv csp -xjK -xjK +dyP +dyP upt lIG -avs -wwr -avs +kax +whA +kax mvl vBQ idE @@ -72147,82 +63971,82 @@ bha cif cif jmG -fmL -aaK -kNz -kNz +dwz +cAm +lEd +lEd tOp -tOK -blQ -tHu +iOP +jKr +bvW cKa bRc -ggB -imL -ggB -iNO -ggB +ntl +dFv +ntl +bID +ntl hqD -bdI -roY -iZV -hor +wMZ +qjb +ilH +mlf hqD -ikq -mYp +tSF +vAo cKa -qZW -ggB -uCD +qSe +ntl +dug biJ jYs -vMX -iuw -tvI -tvI -tvI -tvI -tvI -tvI -sYe -aee -tJT -tvI -tvI -rcG -aIX -vPM -aIX -ePm +lPJ +mzV +jxH +jxH +jxH +jxH +jxH +jxH +ydK +jBD +yay +jxH +jxH +xDX +ozN +qeP +ozN +dtn dGw vVR eDn eDn eDn -wby -llQ -jKI -bUB -bQM +cAW wzE -ulJ -mcc -vei -kqC -wII -bjk +jpd +jpd +jpd +saZ +czn +jpd +eDo +saZ +saZ +saZ kqC -wII -bjk +scu +gWy kqC -gMJ -usz -gMJ +mjK +saZ +mjK kqC kqC -sSJ -sSJ -sSJ +fhD +fhD +fhD kqC wzE hZR @@ -72234,51 +64058,51 @@ xGt ceC xGt ceC -aWR -aWR -aWR -pax +bGf +bGf +bGf +lEL hxy hxy -pax +lEL hxy -pax +lEL hxy hxy -pax -aWR +lEL +bGf hxy tFu hxy -eZN -sIT +etX +lOL uVo -hTm -eZN -sIT -fpM -hTm -eZN -sIT -fpM -hTm -eZN -sIT -fpM -hTm -eZN -sIT +gpS +etX +lOL +ssj +gpS +etX +lOL +ssj +gpS +etX +lOL +ssj +gpS +etX +lOL uVo -hTm -eZN +gpS +etX hxy -aWR -aWR -aWR -aWR -vzB +bGf +bGf +bGf +bGf +qJo fiq -vzB +qJo bQM bQM bQM @@ -72314,7 +64138,7 @@ bQM bQM bQM enY -dOF +bLm azZ azZ azZ @@ -72326,32 +64150,32 @@ xLi xLi phz xLi -ruy +eAv xLi xLi -cBQ -dNF -ruy -dNF -xjK +vfZ +fwy +eAv +fwy +dyP lAh lAh jZc -xjK -xjK -xjK +dyP +dyP +dyP xnM xnM xnM -ruy -ruy -xjK -xjK -bcV +eAv +eAv +dyP +dyP +gEM cKa -hah +xTv xlp -ofy +uWU mvl oAm vMh @@ -72359,53 +64183,53 @@ xFe cPI lvN jmG -jXD -mhe -iZV -ojf +vXw +tXW +ilH +fog tOp -ikq -vII -sKn +tSF +fpF +crm cKa bRc -ggB -uUT -ggB -ktI -ggB +ntl +hQF +ntl +pKO +ntl cKa -cYY -roY -iZV -hor +diB +qjb +ilH +mlf cKa kzh tOp cKa -rfJ -ggB -uCD +tlh +ntl +dug iwK cKa -gde +ijj dGw -vPM -vPM -tvI -tvI -tvI -tvI -sDV -uRu -ckj -tvI -kuT -rcG -sDV -aIX -uAd -ePm +qeP +qeP +jxH +jxH +jxH +jxH +lyN +rrm +mSv +jxH +piJ +xDX +lyN +ozN +bJa +dtn deH ued uvM @@ -72413,57 +64237,57 @@ cnl eDn xQC wzE -wzE -wzE -wzE -wzE -aan -gPm -vei -kqC -kqC -kqC +jpd +jpd +jpd +saZ +czn +etT +eDo +saZ +saZ +saZ kqC kqC kqC mCF -oMz -kWn -hKE +rDL +tEu +oBc kqC -wAj -fXS -fXS -fXS -gpq +aFd +xjg +xjg +xjg +lzr kqC -cCq -dHp -uFh +ctv +kmc +xcp abJ -usz -usz +saZ +saZ abJ -sKq -sKq -sKq +nSX +nSX +nSX hxy -jYS -bkS -bkS -bkS -bkS -aWR -bkS -bkS -bkS -bkS -aWR -aWR -aWR -tts +pwD +egg +egg +egg +egg +bGf +egg +egg +egg +egg +bGf +bGf +bGf +tDk wQN -wSm +xnU wSm wSm wSm @@ -72481,16 +64305,16 @@ wSm wSm wSm wSm -wSm +xnU wQN eAM wSm wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -72526,10 +64350,10 @@ bQM bQM bQM fiq -aDh +pYb ePv ePv -aDh +pYb azZ lAh xLi @@ -72541,29 +64365,29 @@ phz kEZ phz xLi -cfD -dNF -ruy -dNF -xjK +nTx +fwy +eAv +fwy +dyP lAh -vtf -xjK -xMg -aZz -sqg +jSP +dyP +unx +eqX +rXu fde rjz fde -xjK -xjK -xjK -fcp -xjK +dyP +dyP +dyP +tmk +dyP rSr -mIE -mIE -mIE +dmm +dmm +dmm mvl idE idE @@ -72571,112 +64395,113 @@ idE idE jAy jmG -xMR -xMR -iZV -aUa +fzi +fzi +ilH +oyD jmG sta sta sta jmG cKa -vJD -ggB -vJD -ggB -vJD +aul +ntl +aul +ntl +aul cKa -bdI -fnj -iZV -vJD -hFn -dkj -oMR -dkj -dkj -kNz -vJD -vJD +wMZ +igc +ilH +aul +hBy +vZR +jCZ +vZR +vZR +lEd +aul +aul jmG eHa eDn dGw dGw -vPM -vPM -vPM -aLC -sDV -uRu -ckj -vPM -vZz -vPM -mIq -mIq -mIq -vPM -dhe +qeP +qeP +qeP +eLp +lyN +rrm +mSv +qeP +pMG +qeP +qKM +qKM +qKM +qeP +bdZ msS -vMX +lPJ mGe uIA mGe oFI -gEW -mcc -fLR +itY +jpd +kFE +saZ +czn +jpd +eDo +saZ +saZ +saZ kqC -pHu -mcc -vei +xAW +nLp kqC -bux -bZu +czn +nhx +iDr kqC -bux -bZu +wMu +qQJ +eIc +xjg +epv kqC -pHu -mxz -veB -kqC -dhD -vPa -oXJ -fXS -bYG -kqC -ulJ -mcc -vei +uOB +jpd +eDo vRA -usz -usz +saZ +saZ vRA hxy hxy -aWR -hLy +bGf +kfw sEO pXP fSe fSe dSy -aWR +bGf tSi fSe fSe dSy -aWR -aWR -aWR -ttK +bGf +bGf +bGf +gWx +wSm +wSm wSm wSm -xnU wSm wSm wSm @@ -72692,7 +64517,6 @@ wSm wSm wSm wSm -xnU wSm wSm eSF @@ -72700,9 +64524,9 @@ qnB fHB fHB fHB -ssD +wWo iSi -ssD +wWo hbC hbC hbC @@ -72742,8 +64566,8 @@ fiq fiq fiq fiq -aDh -ruy +pYb +eAv lAh lAh lAh @@ -72753,25 +64577,25 @@ phz phz phz xLi -mHN -ruy -ruy -ruy -ruy +sio +eAv +eAv +eAv +eAv lAh lAh jZc -tOr -hmk -rov +dIH +xdi +kpb fde fde fde -xjK -xjK -xjK -xjK -xjK +dyP +dyP +dyP +dyP +dyP jmG mvl mvl @@ -72783,34 +64607,34 @@ idE idE hVI jmG -xMR -xMR -iZV -aFJ +fzi +fzi +ilH +fwo fSq -aaK -dkj -kNz +cAm +vZR +lEd fSq -vJD -aaK -dkj -dkj -dkj -kNz -aau -xMR -roY -iZV -vJD -jvE -vII -vII -vII -vII -dyM -vJD -vJD +aul +cAm +vZR +vZR +vZR +lEd +xsK +fzi +qjb +ilH +aul +tQY +fpF +fpF +fpF +fpF +hwl +aul +aul jmG bQM eDn @@ -72819,73 +64643,73 @@ eDn mGe mGe isL -wUN +ncO mGe mGe mGe -kiq +rOF tsf -lWh -vPM -kiq -vPM -vPM -dhe +cuF +qeP +rOF +qeP +qeP +bdZ msS -vMX +lPJ mGe iTe mGe oFI -gEW -mcc -mcc -usz -pHu -mcc -vei -kqC -avl -jms +itY +jpd +jpd +saZ +czn +jpd +eDo +saZ +saZ +saZ kqC -avl -aIv +rPJ +lwq kqC -pHu -mcc -vei +czn +jpd +eDo kqC -mak -pcl +hlX +tkQ kqC -mak -pcl +hlX +tkQ kqC -pHu -mcc -vei +czn +jpd +eDo kqC -usz -usz +saZ +saZ kqC -qcv -qcv +lhN +lhN hxy -aWR -iPV -iPV -iPV -iPV -iPV -aWR -iPV -iPV -iPV -iPV -hNc -aWR -aWR -uEN +bGf +eCV +eCV +eCV +eCV +eCV +bGf +eCV +eCV +eCV +eCV +gVM +bGf +bGf +ocL wSm wSm wSm @@ -72912,9 +64736,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -72952,9 +64776,9 @@ kPz bQM bQM kPz -rEH -eok -eok +wPT +qiW +qiW azZ azZ azZ @@ -72963,31 +64787,31 @@ azZ azZ kny phz -xjK -xjK -xjK -xjK -csl -xjK -xjK -xjK -xjK -xjK -vBO -ezJ -cAV +dyP +dyP +dyP +dyP +aox +dyP +dyP +dyP +dyP +dyP +fsH +fzB +iJi hLX hLX nGW -ruy -lTm -qOY -xjK -xjK +eAv +jVU +pSk +dyP +dyP lZA -vJD -vJD -vJD +aul +aul +aul lZA idE idE @@ -72995,25 +64819,25 @@ idE idE idE lZA -xMR -xMR -iZV -iZV +fzi +fzi +ilH +ilH fSq -xMR -rmg -iZV +fzi +aLA +ilH fSq -vJD -pya -roY -roY -roY -iZV -pzQ -xMR -oRb -iZV +aul +lIn +qjb +qjb +qjb +ilH +mMY +fzi +nHy +ilH cKa kzh tOp @@ -73021,8 +64845,8 @@ cKa kzh tOp cKa -aaK -kNz +cAm +lEd jmG kPz uwY @@ -73038,63 +64862,63 @@ cYv arY lDC irx -aXK -jZb +jCn +soS dRW -jZb -cFN +soS +eyp eDn eDn xQC xQC xQC wzE -dYr -mcc -mcc -usz -qRD -mcc -veB -kqC -cRB -end +chN +jpd +jpd +saZ +eNj +jpd +eDo +saZ +saZ +jog kqC ryJ end kqC -hpr -mcc -vei -mKG -fXS -fXS -bGy -hQg -fXS -mKG -pHu -mcc -vei +ahd +jpd +eDo +ohh +xjg +xjg +uDK +sLh +xjg +ohh +czn +jpd +eDo abJ -usz -usz +saZ +saZ abJ hxy hxy -aWR -aWR -aWR -cAA +bGf +bGf +bGf +nmz uPA uWQ -aWR +bGf evD -aWR +bGf uPA uWQ -aWR -aWR +bGf +bGf hxy hxy vuE @@ -73124,9 +64948,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -73165,8 +64989,8 @@ bQM bQM kPz bQM -wER -lok +cki +xvd azZ azZ azZ @@ -73176,30 +65000,30 @@ azZ azZ phz azZ -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -sqg -ukI -ezJ -xjK -weH -hFe -sCo +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +rXu +mtu +fzB +dyP +ltZ +xJp +lEw csp fYD -bmX -xjK -xjK +cgC +dyP +dyP wef -vJD -vJD -vJD +aul +aul +aul wef idE idE @@ -73207,34 +65031,34 @@ idE idE idE wef -ikq -ikq -dyM -dyM +tSF +tSF +hwl +hwl fSq -ikq -vII -dyM +tSF +fpF +hwl fSq -vJD -ikq -vII -vII -vII -dyM -aau -xMR -roY -iZV +aul +tSF +fpF +fpF +fpF +hwl +xsK +fzi +qjb +ilH cKa -aaK -soQ +cAm +pXt cKa -cFE -soQ +dBX +pXt cKa -xMR -iZV +fzi +ilH uwk swg fyC @@ -73244,10 +65068,10 @@ erT kPz eDn rkB -rFr +efB lBY -uSb -lzb +mCN +fIP lDC lDC ldZ @@ -73262,54 +65086,54 @@ bce bce wzE kqC -usz -wGe +saZ +saZ kqC -iSn -mcc -krp -dHp -dHp -hCd -dHp -dHp -uFh -usz -pHu -mcc -vei -mKG -fXS -fXS -oXJ -fXS -fXS -mKG -pHu -mcc -vei +opM +jpd +gEk +kmc +kmc +sKi +kmc +kmc +xcp +saZ +czn +jpd +eDo +ohh +xjg +xjg +eIc +xjg +xjg +ohh +czn +jpd +eDo vRA -usz -usz +saZ +saZ vRA hxy hxy -aWR -aWR -aWR -aWR +bGf +bGf +bGf +bGf nKl qfc -aWR +bGf hxy -aWR +bGf nKl qfc -aWR -aWR -aWR -aWR -tts +bGf +bGf +bGf +bGf +tDk wSm wSm wSm @@ -73336,9 +65160,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -73377,8 +65201,8 @@ bQM bQM kPz bQM -rEH -pPb +wPT +uLi azZ azZ azZ @@ -73388,30 +65212,30 @@ azZ azZ azZ azZ -dNF -dNF -dNF +fwy +fwy +fwy bou -dNF -dNF -dNF -jvp -dNF -dNF -ezJ -xjK -fUu -mcT -sCo +fwy +fwy +fwy +dpo +fwy +fwy +fzB +dyP +dmr +aqz +lEw csp csp -cui -xjK -xjK +jrU +dyP +dyP cKa -roY -roY -roY +qjb +qjb +qjb cKa tOp tOp @@ -73419,10 +65243,10 @@ cKa tOp cKa cKa -ikq -ikq -dyM -dyM +tSF +tSF +hwl +hwl jmG jmG jmG @@ -73435,23 +65259,23 @@ cKa kzh tOp cKa -fiu -gbi -iZV +vAI +tnf +ilH cKa -ldm -usA +dJx +gXk cKa -ldm -rEg +dJx +cZw cKa -xMR -iZV +fzi +ilH uwk daD -afk -afk -afk +tle +tle +tle ghg gef xQC @@ -73473,55 +65297,55 @@ bce cAW cAW wzE -msv -uRY -dHp -dHp -bop -scg -mcc -mcc -tsi -fxP -xri -xri -iUy -usz -pHu -mcc -vei +khe +jrV +kmc +kmc +ksg +byS +jpd +jpd +uaP +dDi +wLv +wLv +xgZ +saZ +czn +jpd +eDo kqC -hnJ -pcl +fQO +tkQ kqC -mak -pcl +hlX +tkQ kqC -pHu -mcc -vei +czn +jpd +eDo kqC -usz -usz +saZ +saZ kqC -sKq -sKq +nSX +nSX hxy -aWR -bkS -bkS -bkS -bkS -bkS -aWR -bkS -bkS -bkS -bkS -bkS -aWR -aWR -ttK +bGf +egg +egg +egg +egg +egg +bGf +egg +egg +egg +egg +egg +bGf +bGf +gWx wSm wSm wSm @@ -73548,9 +65372,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -73588,9 +65412,9 @@ bQM bQM vcC kPz -eok +qiW fiq -xLa +orB azZ azZ azZ @@ -73601,55 +65425,55 @@ azZ azZ azZ azZ -kbO -kbO -kbO -kbO -kbO -kbO -kbO -kbO -dFk -ezJ -dTp -sVy -bXa -sCo +aQl +aQl +aQl +aQl +aQl +aQl +aQl +aQl +ssN +fzB +mHS +bPy +lww +lEw csp fYD -bmX -xjK -xjK +cgC +dyP +dyP lZA -vJD -vJD -vJD +aul +aul +aul lZA -aaK -dkj -dkj -dkj -dkj -jGL -dkj -dkj -dkj -dkj -ddz -dkj -jGL -dkj -kNz +cAm +vZR +vZR +vZR +vZR +rqR +vZR +vZR +vZR +vZR +kGQ +vZR +rqR +vZR +lEd cKa -aaK -soQ +cAm +pXt cKa -mOr -wTO +feD +xQL cKa -bGQ -roY -iZV +vcp +qjb +ilH hEs cKa cKa @@ -73657,13 +65481,13 @@ cKa cKa cKa cKa -xMR -iZV +fzi +ilH uwk urJ -afk +tle hkh -afk +tle tCZ pcu xQC @@ -73685,55 +65509,55 @@ bce cAW cAW wzE -pHu -dui -cWN -dWM -mcc -mcc -mcc -qBk -mcc -qjY +czn +pyB +fuu +vBn +jpd +jpd +jpd +oUX +jpd +otp kqC ryJ end kqC -hix -mcc -veB +uOB +jpd +iDr kqC -dhD -fXS -bGy -fXS -bYG +wMu +xjg +uDK +xjg +epv kqC -ulJ -mcc -vei +uOB +jpd +eDo abJ -usz -usz +saZ +saZ abJ hxy hxy -aWR -hLy +bGf +kfw sEO pXP fSe fSe dSy -aWR +bGf tSi fSe fSe dSy -aWR -aWR -aWR -uEN +bGf +bGf +bGf +ocL wSm wSm wSm @@ -73760,9 +65584,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -73802,7 +65626,7 @@ bQM kPz vcC bQM -eok +qiW azZ azZ azZ @@ -73813,77 +65637,77 @@ azZ azZ azZ azZ -xjK -xjK +dyP +dyP azZ -xjK +dyP azZ -xjK -xjK -xjK -tOr -ezJ -xjK +dyP +dyP +dyP +dIH +fzB +dyP ezx ezx reO -ruy -ggG -rar -xjK -xjK +eAv +gLr +dfc +dyP +dyP wef -vJD -vJD -vJD +aul +aul +aul wef -xMR -roY -roY -lSY -roY -roY -roY -roY -roY -roY -roY -roY -roY -lSY -iZV +fzi +qjb +qjb +hKX +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +hKX +ilH cKa -ldm -usA +dJx +gXk cKa -ldm -usA +dJx +gXk cKa -bGQ -roY -iZV +vcp +qjb +ilH cKa -ocJ -rsE +rxj +dHU cKa -ocJ -rsE +rxj +dHU cKa -xMR -iZV +fzi +ilH uwk mdJ -afk -afk -afk +tle +tle +tle xMW ssJ xQC -xkC +ppd tom vGv uzO -dhe +bdZ edd fje das @@ -73897,52 +65721,52 @@ bce bce bce wzE -lll -mcc -oPJ -jfk -mcc -vza -mcc -mcc -mcc -cCq +mcL +jpd +oay +frn +jpd +eyX +jpd +jpd +jpd +ctv kqC -cCq -sCh +ctv +fBV kqC -cLE -mcc -uIb +vPJ +jpd +vZh kqC -mXq -fXS -fXS -vPa -gNF +ssQ +xjg +xjg +qQJ +drZ kqC -pHu -mcc -vei +czn +jpd +eDo vRA -usz -usz +saZ +saZ vRA -qcv -qcv -qcv +lhN +lhN +lhN hxy -roo -iPV -iPV -hNc -iPV -aWR -iPV -iPV -iPV -iPV -aWR +quj +eCV +eCV +gVM +eCV +bGf +eCV +eCV +eCV +eCV +bGf hxy hxy vPA @@ -73972,9 +65796,9 @@ gAS wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -74033,37 +65857,37 @@ lAh lAh lAh xvI -tOr -vJq -sqg +dIH +lfM +rXu fde fde fde -xjK -xjK -xjK -xjK -xjK +dyP +dyP +dyP +dyP +dyP cKa mvl mvl mvl cKa -ikq -vII -vII -wrQ -roY -nhz -vII -vII -vII -vII -vII -vII -wrQ -roY -fin +tSF +fpF +fpF +cbo +qjb +kSO +fpF +fpF +fpF +fpF +fpF +fpF +cbo +qjb +uGd cKa cKa cKa @@ -74071,18 +65895,18 @@ cKa cKa cKa cKa -pka -vII -dyM +ukE +fpF +hwl cKa -dVm -dSw +sAA +fLh cKa -ikq -dSw +tSF +fLh cKa -ikq -dyM +tSF +hwl uwk aKA tWI @@ -74091,11 +65915,11 @@ eOF bUB kPz eDn -vPM +qeP lBY oOv dGw -rFH +kPB lDC izZ uym @@ -74109,33 +65933,33 @@ bce cAW cAW wzE -scw -uFh -mcc -mcc -mcc -evf -dWM -mcc -cCq -pHu +pSE +xcp +jpd +jpd +jpd +gfM +vBn +jpd +ctv +czn kqC -wII -uAi +scu +pUR kqC -pKh -mcc -vei +vzS +jpd +eDo kqC kqC -mKG -mKG -mKG +ohh +ohh +ohh kqC kqC -pHu -mcc -vei +czn +jpd +eDo vMK goG goG @@ -74145,19 +65969,19 @@ vMK xOQ hxy hxy -pax +lEL hxy hxy -pax +lEL hxy -pax +lEL hxy hxy -pax -aWR -aWR -aWR -tts +lEL +bGf +bGf +bGf +tDk wSm wSm wSm @@ -74184,9 +66008,9 @@ kAr wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -74243,49 +66067,49 @@ azZ azZ azZ lAh -vtf -xjK -lax -kbO -kbO +jSP +dyP +wxg +aQl +aQl fde fde fde -xjK -xjK -xjK -xjK -xjK +dyP +dyP +dyP +dyP +dyP mvl -jIZ -wwr -mOT +cIa +whA +nQF mvl -bhR -vJD -vJD -xMR -roY -fin +umz +aul +aul +fzi +qjb +uGd aSz uwk uwk uwk uwk aSz -jXD -roY -iZV +vXw +qjb +ilH cKa -ocJ -iFu +rxj +eTt cKa -ocJ -rsE +rxj +dHU cKa -dso -vJD -vJD +ocF +aul +aul cKa kzh tOp @@ -74293,8 +66117,8 @@ cKa kzh tOp cKa -vJD -vJD +aul +aul jmG jmG mlC @@ -74310,49 +66134,49 @@ cYv arY lDC xKX -wkZ -wkZ +pWd +pWd wWF -wkZ -wkZ +pWd +pWd ecM mlC wzE wzE wzE wzE -glW -vei -mcc -mcc -jsE -mcc -mcc -mcc -pHu -pQu +vbu +eDo +jpd +jpd +gjR +jpd +jpd +jpd +czn +tWV kqC kqC kqC kqC -cjp -mcc -pZb -xyR -xyR -dHp -dHp -dHp -jsD -xyR -bop -mcc -vei +bBK +jpd +ula +qqF +qqF +kmc +kmc +kmc +iIp +qqF +ksg +jpd +eDo goG -xMs -whR -lyF -cFQ +obs +joG +pBG +qQv goG hxy hxy @@ -74361,18 +66185,19 @@ hxy hxy hxy mxQ -xBI +tCm mxQ hxy hxy hxy hxy -aWR -aWR -ttK +bGf +bGf +gWx +wSm +wSm wSm wSm -xnU wSm wSm wSm @@ -74388,7 +66213,6 @@ wSm wSm wSm wSm -xnU wSm wSm eSF @@ -74396,9 +66220,9 @@ mmP fHB fHB fHB -ssD +wWo iSi -ssD +wWo hbC hbC hbC @@ -74457,114 +66281,114 @@ azZ lAh lAh jZc -xjK -xjK -xjK +dyP +dyP +dyP eAo eAo eAo -ruy -ruy -pQh -xjK -ruy +eAv +eAv +eDQ +dyP +eAv mvl -jru +kUM xlp -mIE +dmm cKa cKa cKa cKa -xMR -roY -lpA +fzi +qjb +bfd uwk bQM bQM bQM bQM uwk -ikq -vII -dyM +tSF +fpF +hwl cKa -ikq -dSw +tSF +fLh cKa -ikq -dSw +tSF +fLh cKa -jCU -dkj -dkj -dkj -dkj -dkj -fvY -dkj -dkj -dkj -dkj -dkj -vCT -fYV -fDI -fDI -cjF -cjF -cjF -jMA -cjF -cjF -cjF -cjF -cjF -gky -cjF -cjF -cjF -cjF -cjF -cjF -gky -cjF +gCo +vZR +vZR +vZR +vZR +vZR +cku +vZR +vZR +vZR +vZR +vZR +cHp +gjJ +wqy +wqy +nkE +nkE +nkE +urC +nkE +nkE +nkE +nkE +nkE +ycM +nkE +nkE +nkE +nkE +nkE +nkE +ycM +nkE kqC -usz -usz -usz -usz -usz -mcc -mcc -mcc -mcc -rFT -mcc -avl -xPO +saZ +saZ +saZ +saZ +saZ +jpd +jpd +jpd +jpd +qbq +jpd +rPJ +czn kqC -qDI -npN +hth +heH kqC -cvk -mcc -rrj -mcc -mxz -mcc -rrj -mcc -mcc -mcc -mcc -mcc -vei +czn +jpd +iEv +jpd +nhx +jpd +iEv +jpd +jpd +jpd +jpd +jpd +eDo goG -fHu -qos -jxa -hXc +pAI +lEE +acA +hfs goG hxy abe @@ -74579,11 +66403,11 @@ xOQ hxy hxy hxy -aWR -aWR -uEN +bGf +bGf +ocL wQN -wSm +xnU wSm wSm wSm @@ -74601,16 +66425,16 @@ wSm wSm wSm wSm -wSm +xnU wQN xrH wSm wSm wSm wSm -vzB +qJo fiq -vzB +qJo bQM bQM bQM @@ -74677,29 +66501,29 @@ lAh lAh csp csp -xjK -xjK +dyP +dyP csp cKa -vmW +vqq fyi -mIE +dmm mvl -vJD -vJD -vJD -xMR -roY -fin +aul +aul +aul +fzi +qjb +uGd aSz uwk uwk uwk uwk aSz -cOl -vJD -vJD +ify +aul +aul cKa kzh tOp @@ -74707,29 +66531,29 @@ cKa kzh tOp cKa -jXD -roY -roY -lSY -roY -roY -roY -roY -roY -roY -roY -gLG -iZV +vXw +qjb +qjb +hKX +qjb +qjb +qjb +qjb +qjb +qjb +qjb +mvy +ilH fSq -cjF +nkE gqe -rAW -cjF +pFu +nkE vEF gqe gqe miU -rWX +nEK xKX pXj gqe @@ -74740,43 +66564,43 @@ gqe gqe gqe gqe -nXq +gmE wpO -usz -usz -usz -iUy -mcc -dWM -vza -mcc -qBk -dui -mcc -mcc -avl +saZ +saZ +saZ +xgZ +jpd +vBn +eyX +jpd +oUX +pyB +jpd +jpd +rPJ kqC -avl -iUy +rPJ +xgZ kqC -ggp -xri -lXc -xri -xri -xri -xri -xri -ijP -xri -xri -xri -iUy +rPJ +wLv +dom +wLv +wLv +wLv +wLv +wLv +yie +wLv +wLv +wLv +xgZ goG -oJs -kfA -kfA -fWC +nDi +neW +neW +jLO goG hxy hxy @@ -74794,35 +66618,35 @@ mxQ vMK hxy hxy -tZs -hLK -yfC -fHV -tZs +hHx +nqq +tzS +lld +hHx lLv -yfC -fHV -tZs -hLK -yfC -fHV -tZs -hLK -yfC -fHV -tZs -hLK -yfC -fHV -tZs -aWR -aWR -aWR -aWR -aWR -vzB +tzS +lld +hHx +nqq +tzS +lld +hHx +nqq +tzS +lld +hHx +nqq +tzS +lld +hHx +bGf +bGf +bGf +bGf +bGf +qJo fiq -vzB +qJo bQM bQM bQM @@ -74889,59 +66713,59 @@ lAh lAh glw csp -xjK -xjK +dyP +dyP csp rSr -mIE -mIE -mIE +dmm +dmm +dmm rSr -aaK -dkj -dkj -frY -roY -iZV -vJD -aaK -dkj -dkj -dkj -kNz -kpN -aaK -dkj -dkj -dkj -dkj -dkj -dkj -dkj -dkj -frY -roY +cAm +vZR +vZR +pvN +qjb +ilH +aul +cAm +vZR +vZR +vZR +lEd +sOV +cAm +vZR +vZR +vZR +vZR +vZR +vZR +vZR +vZR +pvN +qjb wef -roY -vrX -vII -vII -vII -vII -vII -vII -vII -dyM +qjb +aLi +fpF +fpF +fpF +fpF +fpF +fpF +fpF +hwl fSq -ebP +mgk jJe gqe gqe -sad -rsW +wSE +ozK kJX oXE -sED +pUA gqe kJX gqe @@ -74952,21 +66776,21 @@ gqe gqe gqe qqJ -nXq +gmE wpO -usz -usz -usz -pHu -ciZ -mcc -mcc -dWM -lCs -mcc -vza -cOb -veB +saZ +saZ +saZ +czn +eHe +jpd +jpd +vBn +kXt +jpd +eyX +xDI +iDr kqC qRi end @@ -74974,21 +66798,21 @@ wzE wzE wzE kqC -usz -usz -usz -usz -dbL +saZ +saZ +saZ +saZ +sRF kqC jTJ goG goG goG vMK -lKt -kfA -kfA -slG +rrI +neW +neW +qhf vMK vMK xOQ @@ -74999,37 +66823,37 @@ hxy mxQ tUs mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vMK xOQ -aWR -aWR -aWR +bGf +bGf +bGf hxy hxy hxy hxy hxy hxy -aWR -aWR -aWR +bGf +bGf +bGf hxy -aWR -aWR -aWR +bGf +bGf +bGf hxy -aWR -aWR -aWR +bGf +bGf +bGf hxy -aWR -aWR -aWR -aWR +bGf +bGf +bGf +bGf hxy wly tan @@ -75099,58 +66923,58 @@ lAh lAh lAh lAh -mYx +wEN csp -xjK -xjK +dyP +dyP csp cKa cKa cKa cKa cKa -xMR -roY -nhz -vII -vII -dyM -vJD -ikq -vII -vII -vII -dyM -vJD -xMR -roY -lSY -roY -roY -roY -roY -roY -roY +fzi +qjb +kSO +fpF +fpF +hwl +aul +tSF +fpF +fpF +fpF +hwl +aul +fzi +qjb +hKX +qjb +qjb +qjb +qjb +qjb +qjb wef -roY -roY -roY -fin +qjb +qjb +qjb +uGd jpN uwk uwk uwk lIG -vJD -gDt -vJD +aul +oUU +aul cKa -cjF +nkE gqe gqe gqe -vTl -ozh +iwp +dUe cnu gqe gqe @@ -75164,62 +66988,62 @@ bKs gqe gqe gqe -cjF +nkE wpO -usz -usz -usz -avl -xri -xri -xri -ibN -mcc -lCs -mcc -mcc -pZb -dHp -dHp -uFh +saZ +saZ +saZ +rPJ +eGM +jpd +jpd +jpd +jpd +kXt +jpd +jpd +ula +kmc +kmc +xcp hZR bQM hZR -dDM -cCq -dHp -dHp -dHp -uFh -dDM +mUP +ctv +kmc +kmc +kmc +lin +uEn duF -jao -qcM -dvs -kfA -kfA -kfA -kfA -kfA -bVY +iZX +wRE +dzR +neW +neW +neW +neW +neW +lDq vMK goG goG goG vMK -xBI +tCm mxQ deR mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vMK hxy -aWR -aWR -aWR +bGf +bGf +bGf hxy wly wly @@ -75230,17 +67054,17 @@ fSe dSy hxy hxy -aWR -aWR +bGf +bGf hxy hxy hxy -aWR +bGf hxy hxy hxy hxy -aWR +bGf hxy hxy wly @@ -75318,12 +67142,12 @@ wef lSj cKa cKa -eJi -kNz -pLk -roY -roY -fin +wjP +lEd +hHo +qjb +qjb +uGd cKa kzh tOp @@ -75334,20 +67158,20 @@ cKa kzh tOp arn -jXD -roY -nhz -vII -vII -vII -vII -vII -vII -wrQ -roY -roY -roY -iZV +vXw +qjb +kSO +fpF +fpF +fpF +fpF +fpF +fpF +cbo +qjb +qjb +qjb +ilH uwk bQM kPz @@ -75361,8 +67185,8 @@ qjp gqe gqe gqe -nSz -nSz +rsZ +rsZ lvk gqe gqe @@ -75371,41 +67195,41 @@ lvk gqe gqe gqe -cjF -cjF -rQm -yiG -rUY -vGO +nkE +nkE +npQ +qzL +fWr +tPb kqC kqC ecd kqC kqC -cRB -end -kqC -vee -mcc -fxP -xri -xri -xri -xri -xri -iUy +czn +jpd +jpd +aAp +jpd +dDi +wLv +wLv +wLv +wLv +wLv +xgZ hZR kPz hZR -vhe -pHu -rrj -mcc -mcc -vei -dDM +mye +czn +iEv +jpd +jpd +eDo +uEn duF -eTo +bEC rII lAS lAS @@ -75423,10 +67247,10 @@ iyf mxQ tUs mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vMK dlX iLQ @@ -75524,57 +67348,57 @@ cAW jmG bQM jmG -vJD -aaK -dkj -kNz -roY +aul +cAm +vZR +lEd +qjb cKa -lLP -iZV +uoq +ilH uwk -xMR -roY -iZV +fzi +qjb +ilH cKa -aaK -soQ +cAm +pXt cKa -aaK -soQ +cAm +pXt cKa -cVX -soQ +khz +pXt cKa -xMR -roY -fin +fzi +qjb +uGd cKa cKa -fdn -fdn +nER +nER cKa jmG gHh -roY -roY -roY -iZV +qjb +qjb +qjb +ilH uwk kPz kPz kPz uwk -mIE -mIE -kFa +dmm +dmm +ehZ lzm gqe gqe gqe gqe -cTA -rsW +jQC +ozK hLO gqe gqe @@ -75583,7 +67407,7 @@ hLO gqe pXj gqe -cjF +nkE kqC kqC xrG @@ -75594,12 +67418,12 @@ rCq vRA vRA kqC -eaQ -jNr -kqC -pHu -mcc -dzj +qdE +eHe +jpd +jpd +jpd +ksM kqC cRB end @@ -75609,21 +67433,21 @@ end wzE bQM hZR -dDM -pHu -fxP -eag -ibN -vei -lhi +xdY +czn +dDi +eJw +eGM +eDo +eXe duF -hXc +hfs lAS lAS lAS lAS -tNt -uBW +lyS +stz lAS lAS lAS @@ -75631,14 +67455,14 @@ lAS lAS bYv mxQ -oYM +cfg tUs tUs vDO -atE -nVq -rev -oYM +aZf +tFR +wnm +cfg bzO bzO ybj @@ -75736,57 +67560,57 @@ cAW jmG jmG jmG -vJD -xMR -roY -iZV -vJD +aul +fzi +qjb +ilH +aul cKa -ldm -usA +dJx +gXk uwk -xMR -roY -iZV +fzi +qjb +ilH cKa -ldm -usA +dJx +gXk cKa -ldm -usA +dJx +gXk cKa -dra -ovc +dxl +lJr cKa -oLd -roY -iZV +gCO +qjb +ilH cKa -cQA -xec -xec -ohN +rRo +wQv +wQv +bEd cKa -xMR -roY -roY -mSM -iZV +fzi +qjb +qjb +vnc +ilH uwk bQM kPz bQM uwk -mIE +dmm fyi -kGi +kcj qva dAe lps gqe gqe -iOJ -ozh +jQk +dUe kJX gqe gqe @@ -75795,7 +67619,7 @@ kJX gqe gqe gqe -rUY +fWr kqC kqC vRA @@ -75806,30 +67630,30 @@ kqC tVV vRA oFI -eGY -eOf -kqC -pHu -mcc -vei +xnP +sfC +wLv +eGM +jpd +eDo kqC -cCq -pDV +ctv +nuN kqC -cCq -pDV +ctv +nuN wzE kPz jTJ -clZ -pHu -vei -vbd -pHu -vei -iPq +jjj +czn +eDo +ayD +czn +eDo +erP jTJ -pMA +aVC lAS lAS lAS @@ -75843,14 +67667,14 @@ lAS lAS bYv mxQ -pes +wSu vfz tUs mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK bzO wly @@ -75948,18 +67772,18 @@ cAW cAW bQM uwk -vJD -ikq -vII -dyM -vJD +aul +tSF +fpF +hwl +aul hEs cKa cKa cKa -dgx -uzX -aFV +flU +kDl +ePi hEs cKa cKa @@ -75970,30 +67794,30 @@ cKa cKa cKa cKa -jXD -roY -iZV +vXw +qjb +ilH cKa -unW -wpu -xec -oYc +xCv +wIr +wQv +sqE cKa -xMR -roY +fzi +qjb wef -roY -iZV +qjb +ilH jmG bQM kPz bQM uwk -vbt +xPS fyi -mIE +dmm cKa -pwN +jYG lps wAD gqe @@ -76007,13 +67831,13 @@ kDj gqe gqe gqe -oEI +mJL jKb abJ -cCq -dHp -uFh -wBr +ctv +kmc +xcp +ubU kqC vRA tiX @@ -76021,27 +67845,27 @@ kqC kqC kqC kqC -pHu -mcc -vei +czn +jpd +eDo kqC -wII -bjk +scu +gWy kqC -wII -bjk +scu +gWy wzE bQM hZR -vbd -pHu -vei -vbd -pHu -vei -vbd +ayD +czn +eDo +ayD +czn +eDo +ayD duF -iJG +fyc lAS lAS lAS @@ -76055,14 +67879,14 @@ mxQ iyf mxQ mxQ -oYM +cfg ndl aZN mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vCv bzO bzO @@ -76160,82 +67984,82 @@ cAW cAW bQM uwk -aaK -dkj -kNz -vJD -vJD +cAm +vZR +lEd +aul +aul wef -ocJ -rsE -oWB -ehA -roY -rAt +rxj +dHU +htd +ksp +qjb +owh cKa -ocJ -rsE +rxj +dHU cKa -ocJ -rsE +rxj +dHU cKa -ocJ -rsE +rxj +dHU cKa -xMR -roY -iZV +fzi +qjb +ilH cKa -vYP +nNT cKa -unW -xec -fdn -xMR -roY -roY +xCv +wQv +nER +fzi +qjb +qjb wef -iZV +ilH uwk bQM kPz bQM jmG -vBc +gkn fyi -xCy +hDz mvl -pwN +jYG lps -uzd +lbV gqe -uzd +lbV gqe -uzd -rUY -vGO -tMF +lbV +fWr +tPb +mhP hgu hgu hgu hgu -rox +iwv xNQ vRA -pHu -djx -vei -wBr +czn +nmB +eDo +ubU oFI vRA glD kqC -tnj -pDV +mpz +nuN kqC -pHu -mcc -dzj +czn +jpd +ksM mCF kqC kqC @@ -76245,19 +68069,19 @@ kqC wzE kPz hZR -vbd -pHu -vei -vbd -pHu -tax -vbd +ayD +czn +eDo +ayD +czn +dga +ayD duF -lQZ +dRN mWF lAS lAS -uyq +njI lAS dCF lAS @@ -76267,19 +68091,19 @@ tUs rbK tUs tUs -rwt +cRy tUs tUs ffZ -oYM -nVq -rev -oYM -oYM +cfg +tFR +wnm +cfg +cfg mxQ -iHJ -xsa -ayK +wHm +wJD +avm bzO rzt rzt @@ -76292,16 +68116,16 @@ kPz bQM bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -76372,72 +68196,72 @@ bce bce uwk uwk -xMR -roY -iZV -mey -vJD -oWB -ikq -dyM +fzi +qjb +ilH +lie +aul +htd +tSF +hwl wef -xMR -roY -lHc +fzi +qjb +aDz cKa -ikq -dyM +tSF +hwl cKa -ikq -dyM +tSF +hwl cKa -ikq -sAx +tSF +gQQ cKa -xMR -iqV -aad +fzi +cRY +cxr cKa -unW -rmb -pdV -xec -fdn -xMR -roY +xCv +sdO +iVF +wQv +nER +fzi +qjb jMf wef -iZV +ilH uwk kPz kPz kPz jmG -wdX +dFP jEK -mIE +dmm jce -pwN +jYG lps gqe gqe gqe gqe gqe -iMF +jvU ecM -fYn -eqT -ofr -bhM -tBa -tuH +iNX +tRK +ygP +ggC +lVo +ohL kqC kqC -ulJ -mcc -vei -wBr +uOB +jpd +eDo +ubU kqC kqC kqC @@ -76445,31 +68269,31 @@ kqC ryJ end kqC -ulJ -mcc -vei +uOB +jpd +eDo kqC -bux -bZu +xAW +nLp kqC -bux -bZu +xAW +nLp wzE bQM hZR -vbd -avl -iUy -vbd -avl -iUy -vbd +ayD +rPJ +xgZ +ayD +rPJ +xgZ +ayD duF -whR +joG lAS lAS lAS -tvu +bcb lAS lAS lAS @@ -76479,23 +68303,23 @@ mxQ tUs mxQ mxQ -jum +poV mxQ tUs mxQ -oYM -nVq -rev -kfA -kfA -tyQ -sTV -tdA -oYM -oYM +cfg +tFR +wnm +neW +neW +kox +aiT +hWj +cfg +cfg lAS -oYM -myt +cfg +mzq bzO bQM kPz @@ -76504,16 +68328,16 @@ kPz bQM bQM bTo -afk -afk -afk +tle +tle +tle pcu -afk -afk +tle +tle pcu -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -76583,19 +68407,19 @@ vBP fQV erT uwk -nuO -ikq -vII -dyM -vJD -pqG +qWc +tSF +fpF +hwl +aul +aPN cKa -oWB +htd wef wef -bDu -hMX -iiE +mfu +nXY +qWo cKa kzh tOp @@ -76606,66 +68430,66 @@ cKa kzh tOp cKa -jXD -roY -iZV +vXw +qjb +ilH cKa -unW -oYc +xCv +sqE cKa -unW -fdn -xMR -roY +xCv +nER +fzi +qjb bJn aTM -iZV +ilH uwk bQM kPz bQM jmG -wQh -mTS -jas +jsy +xmJ +nkZ uhm -ebP +mgk bej -uzd +lbV gqe -uzd +lbV gqe -uzd -tnA +lbV +iIs ecM -fXT -nSz -nSz -nSz -nSz -nSz +kaY +rsZ +rsZ +rsZ +rsZ +rsZ kqC -uPD -uHL -mcc -dzj +leh +hqj +jpd +ksM kqC kqC -pFY -aru -dHp -dHp -dHp -uFh -pHu -mcc -vei +rFA +suJ +kmc +kmc +kmc +xcp +czn +jpd +eDo kqC -avl -jms +rPJ +iyG kqC -avl -jms +rPJ +iyG wzE wzE wzE @@ -76681,33 +68505,33 @@ vMK dhj lAS mKy -lik +nMt lAS lAS -sDF +yaM mxQ jXj mxQ rsp mxQ -oYM -oYM +cfg +cfg mxQ tUs mxQ -oYM -aZQ -rev -oYM -oYM +cfg +vPw +wnm +cfg +cfg mxQ -tdA -tMe -tdA +hWj +tro +hWj krr -mpr +dPd krr -xsa +wJD bzO bQM kPz @@ -76716,16 +68540,16 @@ kPz bQM bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -76790,48 +68614,48 @@ cAW bQM bce bTo -afk -afk -afk +tle +tle +tle ghg uwk -mAE -vJD -aaK -dkj -kNz -vJD -ahe -aaK -cmj -rfD -frY -oSR -qqZ -dkj -dkj -kNz -vJD -eJi -rfD -dkj -dkj -kNz -vJD -xMR -mMq -iZV +sxt +aul +cAm +vZR +lEd +aul +hVv +cAm +iVz +dgh +pvN +pRa +wXJ +vZR +vZR +lEd +aul +wjP +dgh +vZR +vZR +lEd +aul +fzi +eoB +ilH cKa -unW -xec -rmb -oYc +xCv +wQv +sdO +sqE cKa -xMR -roY +fzi +qjb wef -roY -fin +qjb +uGd jmG uwk uwk @@ -76841,37 +68665,37 @@ mvl mvl uhm cKa -vcr -yiG +cHs +qzL gqe gqe gqe gqe -cjF -iMF +nkE +jvU ecM bEX bEX izZ -cjF -cjF -cjF +nkE +nkE +nkE kqC -ftH -pHu -mcc -vei +rGL +czn +jpd +eDo abJ -usz -cCq -dHp -dHp -dHp -uFh -iUy -pHu -mcc -dzj +saZ +ctv +kmc +kmc +kmc +xcp +xgZ +czn +jpd +ksM kqC ryJ end @@ -76881,36 +68705,36 @@ end kqC wzE pah -kwL -mcc -pfE +cLY +jpd +hfw qOq -mcc -mcc +jpd +jpd pah bhu goG lAS lAS lAS -gfw +ezp lAS lAS -aem +uTz mxQ tUs tUs oBj mxQ -oYM +cfg mxQ mxQ msj mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK mxQ mxQ @@ -77002,58 +68826,58 @@ cAW bQM bce ajx -afk +tle hkh -afk +tle tCZ uwk -wtx -vJD -xMR -roY -iZV -roY -roY -ikq -qEn -vII -vII -vII -vII -vII -vII -dyM -sAe -ikq -xqj -qEn -vII -dyM -vJD -xMR -roY -iZV +fkq +aul +fzi +qjb +ilH +qjb +qjb +tSF +gQS +fpF +fpF +fpF +fpF +fpF +fpF +hwl +mjY +tSF +sIO +gQS +fpF +hwl +aul +fzi +qjb +ilH cKa -qzl -pdV -xec -isi +bmu +iVF +wQv +abH hEs -xMR -roY -roY +fzi +qjb +qjb wef -iZV +ilH jYs -vWI -nSz -sad -qpa -nSz -nSz -vli -fGL -uXM +nTQ +rsZ +wSE +inI +rsZ +rsZ +ogU +icw +odM xrG lHy lHy @@ -77067,62 +68891,62 @@ gqe klg gqe gqe -cjF +nkE kqC -pzN -pHu -mcc -vei +oaw +czn +jpd +eDo vRA -usz -avl -xri -xri -xri -iUy -uFh -qWf -mcc -vei -usz -cCq -dHp -dHp -dHp -uFh -usz +saZ +rPJ +wLv +wLv +wLv +xgZ +xcp +sEc +jpd +eDo +saZ +ctv +kmc +kmc +kmc +xcp +saZ duF -koy +kIv gsL -mcc -mcc +jpd +jpd qOq -mcc -mcc -ckx +jpd +jpd +pSD sNN goG lAS lAS lAS -hzq +jpL gnz lAS -tlp +aDe mxQ xCa fgU liI mxQ -qFg +qbj hvF tUs tUs lhY -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK mxQ mxQ @@ -77214,17 +69038,17 @@ cAW bQM bce bTo -afk -afk -afk +tle +tle +tle xMW uwk -wtx -vJD -ikq -vII -dyM -mLe +fkq +aul +tSF +fpF +hwl +cck eov efl fDQ @@ -77232,9 +69056,9 @@ eov tzy wef wef -pnA -vJD -bhR +nao +aul +umz wef wef tOp @@ -77242,34 +69066,34 @@ cKa kzh tOp cKa -jXD -roY -fin +vXw +qjb +uGd aSz aSz aSz hul aSz aSz -pka -vII -vII -vII -dyM +ukE +fpF +fpF +fpF +hwl jYs -nSz -ozh -iOJ -ozh -iOJ -vYA -oDz -fnW -wEQ +rsZ +dUe +jQk +dUe +jQk +goS +hxN +sgQ +pmc gqe -cjF -cjF -enG +nkE +nkE +vdN gqe gqe gqe @@ -77279,73 +69103,73 @@ gqe gqe gqe gqe -cjF +nkE kqC -uPD -gwX -mcc -dzj +leh +kdv +jpd +ksM kqC kqC -usz -avl -xri -xri -xri -iUy -pHu -mcc -vei -usz -avl -xri -xri -xri -iUy -rvf +saZ +rPJ +wLv +wLv +wLv +xgZ +czn +jpd +eDo +saZ +rPJ +wLv +wLv +wLv +xgZ +erF hBF -vHR -uJk -mcc -mcc +wEH +sXZ +jpd +jpd qOq -wwH -mcc +fPv +jpd pah -mbH +cGb goG lAS lAS lAS -aIR +oqJ lAS lAS -hIe +bRi mxQ tUs mxQ tUs tUs -oYM +cfg rbK tUs mxQ mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK -fKv +bdo kcz -aWo -kfA -atE -kfA +psf +neW +aZf +neW lAS lAS -oYM -oYM +cfg +cfg bzO bQM kPz @@ -77431,33 +69255,33 @@ eJQ jlH bUB uwk -fpN -aaK -dkj -kNz -vJD -roY +ohX +cAm +vZR +lEd +aul +qjb eov -svF -qtX +xch +hwB eov -pgV -uMH +gBU +omT jAW -vJD -tMr -vJD +aul +pNo +aul wef -aaK -kNz +cAm +lEd cKa -aaK -soQ +cAm +pXt cKa -xMR -roY -iZV -vJD +fzi +qjb +ilH +aul cKa pVq wef @@ -77469,18 +69293,18 @@ uwk uwk jmG jmG -ozh -kxV -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF +dUe +pCO +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE gqe gqe gqe @@ -77491,13 +69315,13 @@ gqe gqe gqe gqe -aDw +oDW kqC kqC -ulJ -mcc -vei -wBr +uOB +jpd +eDo +ubU kqC ryJ end @@ -77505,9 +69329,9 @@ kqC ryJ end kqC -pHu -mcc -dzj +czn +jpd +ksM kqC ryJ end @@ -77538,18 +69362,18 @@ tUs mxQ vrF hvF -oYM +cfg hvF oBj tUs vDO -atE -nVq -jVW -oYM -oYM -sTV -hHv +aZf +tFR +bbz +cfg +cfg +aiT +nCo waN sfW sfW @@ -77557,7 +69381,7 @@ sfW sfW sfW oqu -jKL +nNN bzO tan tan @@ -77644,32 +69468,32 @@ bce bce uwk uwk -xMR -roY -iZV -vJD -iKC +fzi +qjb +ilH +aul +mke eov -kzI -qfu +jfs +kMQ eov -ldm -wMS +dJx +shK hqD -wZE -vJD -azg +jzP +aul +xMz hqD -ldm -usA +dJx +gXk cKa -ldm -usA +dJx +gXk cKa -xMR -roY -iZV -vJD +fzi +qjb +ilH +aul glj pVq wef @@ -77681,21 +69505,21 @@ bQM bQM bQM uwk -iOJ -cjF -jBL -cjF -cjF -cjF -cjF -cjF -cjF -cjF -krQ -cjF +jQk +nkE +xdV +nkE +nkE +nkE +nkE +nkE +nkE +nkE +qDt +nkE gqe -sad -aPi +wSE +xIU ecM mlC mlC @@ -77703,39 +69527,39 @@ mlC ecM qKF gqe -oEI +mJL jKb abJ -pHu -mcc -vei -wBr +czn +jpd +eDo +ubU kqC -avl -jms +rPJ +iyG kqC -avl -jms +rPJ +iyG kqC -ulJ -mcc -vei +uOB +jpd +eDo kqC -cCq -pDV +ctv +nuN kqC -cCq -pDV +ctv +nuN kqC -qOG +uXg lAS -eBC -nVq -rev -qTy -nVq -rev -oYM +cgO +tFR +wnm +nld +tFR +wnm +cfg cFf vMK tld @@ -77750,18 +69574,18 @@ tUs tUs jXj mxQ -oYM +cfg mxQ tUs hvF mxQ -oYM -nVq -xUz -nbv -nbv +cfg +tFR +nwj +nUK +nUK pdf -aWo +psf hfd fIW htt @@ -77771,9 +69595,9 @@ vjq euC euC euC -ssD +wWo iSi -ssD +wWo hbC cbb bQM @@ -77856,11 +69680,11 @@ cAW cAW bQM uwk -ikq -vII -dyM -vJD -urw +tSF +fpF +hwl +aul +koS eov dRO pvD @@ -77868,9 +69692,9 @@ eov cKa cKa cKa -pEL -vJD -pqG +kXG +aul +aPN hEs cKa cKa @@ -77878,10 +69702,10 @@ cKa cKa cKa cKa -jXD -roY -iZV -vJD +vXw +qjb +ilH +aul glj pVq wef @@ -77894,20 +69718,20 @@ kPz kPz uwk gqe -naN -cjF -rsW +mcQ +nkE +ozK kJX -iOJ -ozh -rsW +jQk +dUe +ozK kJX -iOJ -cjF -cjF +jQk +nkE +nkE gqe -adY -sKS +hmG +fQw mlC kPz kPz @@ -77915,13 +69739,13 @@ kPz mlC gqe bKs -rUY +fWr xNQ vRA -avl -lka -iUy -usz +rPJ +pKq +xgZ +saZ kqC kqC kqC @@ -77929,25 +69753,25 @@ mCF kqC kqC kqC -pHu -mcc -vei +czn +jpd +eDo kqC -wII -bjk +scu +gWy kqC -wII -bjk +scu +gWy kqC -riu +gHn boh -oYM -nVq -rev -kfA -nVq -rev -oYM +cfg +tFR +wnm +neW +tFR +wnm +cfg tld vMK goG @@ -77962,16 +69786,16 @@ mxQ uZX mxQ mxQ -iuV +uAE mxQ uZX mxQ mxQ -jae -nVq -oYM -oYM -oYM +naT +tFR +cfg +cfg +cfg amx lAS hfd @@ -77983,9 +69807,9 @@ tUs tUs tUs tUs -vzB +qJo fiq -vzB +qJo bQM gEU bQM @@ -78068,32 +69892,32 @@ cAW cAW bQM uwk -vJD -aaK -dkj -kNz -cgE +aul +cAm +vZR +lEd +uyg eov doe cAW eov -ocJ -rsE +rxj +dHU cKa -qBh -vJD -vJD +mHs +aul +aul cKa -ocJ -rsE +rxj +dHU cKa -ocJ -rsE +rxj +dHU cKa -xMR -lSY -iZV -vJD +fzi +hKX +ilH +aul cKa nmQ wef @@ -78105,21 +69929,21 @@ bQM bQM bQM uwk -rsW -uyb -cjF -stq +ozK +dsd +nkE +wSO jRL mlC mlC mlC ecM qYc -cjF -cjF +nkE +nkE gqe -jJM -dlE +eQj +ydh mlC bQM bQM @@ -78127,7 +69951,7 @@ bQM mlC bKs gqe -fum +nWo kqC kqC vRA @@ -78135,15 +69959,15 @@ blG kqC kqC kqC -mcc -mcc -mcc -lnU -mcc -mcc -pHu -mcc -dzj +jpd +jpd +jpd +gal +jpd +jpd +czn +jpd +ksM kqC kqC kqC @@ -78153,39 +69977,39 @@ kqC kqC mxQ lAS -oYM -nVq -rev -kfA -nVq -rev -oYM +cfg +tFR +wnm +neW +tFR +wnm +cfg lAS sPk -kfA -kfA -kfA +neW +neW +neW mxQ oXS fUr wcW tTK mxQ -oYM -rwt -nQS -oYM +cfg +cRy +ogm +cfg mxQ tUs tUs bMu -btB -nVq -lXf -nLl -nLl +qFS +tFR +sHD +rCD +rCD jYd -mXT +vnk hfd ucj bBA @@ -78195,9 +70019,9 @@ eMU euC euC euC -ssD +wWo iSi -ssD +wWo hbC ogo bQM @@ -78280,31 +70104,31 @@ cAW jmG jmG jmG -iir -xMR -fnj -iZV -gHc +xej +fzi +igc +ilH +idB eov ivb cAW eov -ikq -dyM +tSF +hwl cKa -uvh -aZZ -vJD +vCn +mmL +aul cKa -ikq -dSw +tSF +fLh cKa -ikq -dSw +tSF +fLh cKa -xMR -roY -iZV +fzi +qjb +ilH cKa cKa cKa @@ -78317,21 +70141,21 @@ hxq hxq vnr vnr -ozh -cjF -cjF -iOJ +dUe +nkE +nkE +jQk mlC bQM kPz bQM mlC -rsW -cjF -cjF +ozK +nkE +nkE gqe -gtM -sbM +xqb +jsQ mlC kPz kPz @@ -78346,32 +70170,32 @@ heb rIC wzE kqC -qVe -lnU -tlS -fFf -pWm -usz -lnU -tno -mcc -vei +aHo +gal +pvQ +gzi +iKE +saZ +gal +lKi +jpd +eDo kqC -bux -bZu +xAW +nLp kqC -bux -bZu +xAW +nLp kqC -lyg +nQH cfj -oYM -nVq -rev -ppK -nVq -mel -oYM +cfg +tFR +wnm +rIT +tFR +uen +cfg pfW fqD cmV @@ -78383,21 +70207,21 @@ rbK tUs tUs uZX -kfA -kfA -ppb -kfA -kfA +neW +neW +nJX +neW +neW tUs pnj mxQ -oYM -nVq -rev -oYM -oYM -fKv -hHv +cfg +tFR +wnm +cfg +cfg +bdo +nCo tuX vEi vEi @@ -78405,7 +70229,7 @@ vEi vEi vEi hhh -eKu +tfg bzO tan tan @@ -78492,11 +70316,11 @@ cAW jmG cAW jmG -vJD -ikq -vII -dyM -nCl +aul +tSF +fpF +hwl +doJ eov hxJ qgd @@ -78504,9 +70328,9 @@ eov kzh tOp cKa -evU -vJD -pqG +tnh +aul +aPN cKa kzh tOp @@ -78514,13 +70338,13 @@ cKa kzh tOp cKa -jXD -roY -fin +vXw +qjb +uGd cKa -vJD -vJD -vJD +aul +aul +aul cKa xyf tMA @@ -78529,21 +70353,21 @@ jsn ycX eOS vNq -srz -cjF -cjF +eqN +nkE +nkE gqe mlC kPz kPz kPz mlC -sad -cjF -cjF +wSE +nkE +nkE gqe -iOJ -dhN +jQk +vdQ ecM mlC mlC @@ -78558,66 +70382,66 @@ rOm gGB rOm kqC -qVe -lnU -cbe -fFf -kqP -usz -rgD -pHu -mcc -vei +aHo +gal +qBL +gzi +xjp +saZ +fLi +czn +jpd +eDo kqC -avl -jms +rPJ +iyG kqC -avl -jms +rPJ +iyG kqC -riu +gHn mGx -oYM -nVq -rev -iCC -nVq -rev -oYM -oYM -oYM -mgU -oYM +cfg +tFR +wnm +wny +tFR +wnm +cfg +cfg +cfg +aAQ +cfg lAS mxQ -xjv -xjv -xjv -xjv +orm +orm +orm +orm uZX -oYM -kvd -ihA -fmM -oYM +cfg +vLK +fRw +eWH +cfg mxQ mxQ mxQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK -sTV +aiT pVv -oYM -kfA -atE -kfA +cfg +neW +aZf +neW lAS lAS -oYM -oYM +cfg +cfg bzO bQM kPz @@ -78713,26 +70537,26 @@ eov eov eov eov -vJD +aul wef -vJD -ceZ -vJD -vJD -jki -aaK -dkj -aPq -rfD -kNz -vJD -xMR -roY -iZV +aul +wEq +aul +aul +bPN +cAm +vZR +mpn +dgh +lEd +aul +fzi +qjb +ilH lZA -aaK -dkj -kNz +cAm +vZR +lEd lZA ycX ycX @@ -78742,17 +70566,17 @@ qYq ycX sun gqe -cjF -cjF -rsW +nkE +nkE +ozK mlC bQM kPz bQM mlC -iOJ -cjF -cjF +jQk +nkE +nkE gqe gqe mmh @@ -78763,23 +70587,23 @@ gqe gqe gqe gqe -sad -rsW +wSE +ozK gqe gqe gqe ijv kqC -qVe -lnU -kau -fFf -tnP -fFf -mcc -pHu -mcc -dzj +aHo +gal +qvy +gzi +dqD +gzi +jpd +czn +jpd +ksM kqC ryJ end @@ -78789,17 +70613,17 @@ end kqC kqC pmg -mTJ -nVq -tTr -wRG -mfd -xUz -nbv -nbv -nbv -bPS -oYM +fqX +tFR +igX +ieP +aVg +nwj +nUK +nUK +nUK +bJR +cfg qLJ bzO rzt @@ -78807,21 +70631,21 @@ rzt rzt rzt bzO -kfA -kfA -deW -kfA -kfA +neW +neW +lds +neW +neW mxQ -sfw -sfw -nyQ -nVq -rev -oYM -oYM -fKv -hHv +dIN +dIN +etJ +tFR +wnm +cfg +cfg +bdo +nCo waN sfW sfW @@ -78829,7 +70653,7 @@ sfW sfW sfW oqu -jKL +nNN bzO tan tan @@ -78924,27 +70748,27 @@ jmG cKa cKa cKa -xCW -vJD -vJD -vJD -vJD -pFg -vJD -bhR -ikq -xqj -qEn -vII -uZe -vJD -xMR -roY -iZV +vHX +aul +aul +aul +aul +qKR +aul +umz +tSF +sIO +gQS +fpF +cPW +aul +fzi +qjb +ilH wef -xMR -roY -iZV +fzi +qjb +ilH wef ycX ycX @@ -78953,18 +70777,18 @@ ycX ycX ovj mfo -cjF -cjF -cjF -stq +nkE +nkE +nkE +wSO ecM mlC mlC mlC ecM qYc -cjF -cjF +nkE +nkE gqe gqe gqe @@ -78975,43 +70799,43 @@ gqe gqe gqe gqe -klv -ozh +bOd +dUe gqe gqe gqe eRY kqC kqC -lVP -kqP +urn +xjp coj -usz -usz -mcc -pHu -mcc -vei -usz -cCq -dHp -dHp -dHp -uFh -usz +saZ +saZ +jpd +czn +jpd +eDo +saZ +ctv +kmc +kmc +kmc +xcp +saZ ntv lAS -oYM -nVq -oYM -oYM -oYM -oYM -oYM -oYM -oYM -rev -oYM +cfg +tFR +cfg +cfg +cfg +cfg +cfg +cfg +cfg +wnm +cfg lAS bzO bQM @@ -79027,13 +70851,13 @@ mxQ mxQ suB lAS -ogX -nVq -xUz -nbv -nbv +bpI +tFR +nwj +nUK +nUK pdf -aWo +psf hfd fIW htt @@ -79043,9 +70867,9 @@ vjq euC euC euC -ssD +wWo iSi -ssD +wWo hbC cbb bQM @@ -79137,9 +70961,9 @@ cKa cKa cKa cKa -vJD -vJD -vJD +aul +aul +aul jfc wef wef @@ -79150,13 +70974,13 @@ rPS wef wef jfc -xMR -roY -iZV +fzi +qjb +ilH lZA -xMR -roY -iZV +fzi +qjb +ilH lZA ycX ycX @@ -79165,24 +70989,24 @@ ycX ycX ycX mfo -cjF -cjF -cjF -iOJ -fnt -rsW +nkE +nkE +nkE +jQk +iSA +ozK gqe -iOJ -fnt -rsW -cjF -cjF -sad -rsW +jQk +iSA +ozK +nkE +nkE +wSE +ozK gqe gqe -sad -rsW +wSE +ozK gqe gqe gqe @@ -79192,38 +71016,38 @@ mQD gqe gas gqe -qnu +icy tHl -fBc +jkw lIJ -fBc -usz -fpY -usz -mcc -avl -xri -iUy -usz -avl -xri -xri -xri -iUy -usz +jkw +saZ +tfB +saZ +jpd +rPJ +wLv +xgZ +saZ +rPJ +wLv +wLv +wLv +xgZ +saZ ntv lAS -oYM -eNs -nLl -nLl -nLl -nLl -nLl -nLl -oiu -rev -oYM +cfg +luR +rCD +rCD +rCD +rCD +rCD +rCD +xAq +wnm +cfg kLN bzO rzt @@ -79232,18 +71056,18 @@ rzt rzt bzO tJR -kfA -oYM -kfA +neW +cfg +neW wcW mxQ lAS lAS -oYM -nVq -rOE -oYM -oYM +cfg +tFR +imx +cfg +cfg amx lAS hfd @@ -79255,9 +71079,9 @@ tUs tUs tUs tUs -vzB +qJo fiq -vzB +qJo bQM gEU bQM @@ -79348,27 +71172,27 @@ jmG cKa cKa cKa -xCW -aaK -dkj -kNz +vHX +cAm +vZR +lEd hqD -aaK -qwy +cAm +stv wef -aaK -kNz +cAm +lEd jfc -aaK -kNz +cAm +lEd rPS -xMR -roY -iZV +fzi +qjb +ilH wef -ikq -vII -dyM +tSF +fpF +hwl wef ycX ycX @@ -79377,24 +71201,24 @@ ycX qHZ ycX jRp -vvX -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -cjF -iOJ -ozh +qwr +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +nkE +jQk +dUe gqe bKs -iOJ -ozh +jQk +dUe gqe gqe gqe @@ -79410,12 +71234,12 @@ vRA sHH vRA vRA -usz -fFf -mcc +saZ +gzi +jpd vRA -mcc -mcc +jpd +jpd kqC ryJ end @@ -79425,39 +71249,39 @@ ecd kqC kqC pmg -oYM -oYM -oYM -oYM -oYM -oYM -oYM -oYM -nVq -rev -oYM -guQ +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg +tFR +wnm +cfg +gUp vDO -prP -prP -prP -jqH -oYM +szD +szD +szD +hCU +cfg tUs -kfA -ppb -kfA +neW +nJX +neW tUs vDO -atE +aZf lAS -oYM -nVq -lXf -nLl -nLl +cfg +tFR +sHD +rCD +rCD jYd -mXT +vnk hfd ucj bBA @@ -79467,9 +71291,9 @@ eMU euC euC euC -ssD +wWo iSi -ssD +wWo hbC ogo bQM @@ -79561,26 +71385,26 @@ cKa cKa cKa cKa -xMR -roY -iZV +fzi +qjb +ilH hqD -ldm -usA +dJx +gXk hqD -ldm -usA +dJx +gXk jfc -ldm -usA +dJx +gXk wef -xMR -roY -iZV +fzi +qjb +ilH cKa -vJD -vJD -vJD +aul +aul +aul cKa xyf ycX @@ -79589,87 +71413,87 @@ ycX ycX eOS vNq -hvE -vvX -ozh -rsW +fTZ +qwr +dUe +ozK hmg -dyi -dQY -eIp +hvv +iWm +ogN uch -flo -dQY -dPQ +eFY +iWm +cnI gqe gqe hmg uch uch cWU -sad -rsW +wSE +ozK gqe hYK -lpp -ppY +arB +kPo gqe gqe gqe gqe oPN vRA -lOa +oFr vRA -fBc +jkw lIJ vRA sHH sHH sHH -qOd +erI kqC -cCq -pDV +ctv +nuN mxQ dIT nZQ sso mxQ mKy -xjv +orm lAS rII rII lAS lAS lAS -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg lAS bzO bzO mxQ tUs rVM -oYM -oYM -pes -qWi -vMS -mNC +cfg +cfg +wSu +gij +gUs +wVf vDO -atE +aZf lAS -oYM -nVq -rev +cfg +tFR +wnm lAS lAS -fKv -hHv +bdo +nCo tuX vEi vEi @@ -79677,7 +71501,7 @@ vEi vEi vEi hhh -eKu +tfg bzO tan tan @@ -79773,9 +71597,9 @@ cKa cKa cKa cKa -dgx -roY -iZV +flU +qjb +ilH hEs cKa cKa @@ -79786,9 +71610,9 @@ cKa cKa cKa cKa -jXD -roY -iZV +vXw +qjb +ilH jmG uwk uwk @@ -79812,37 +71636,37 @@ vnr mlC mlC ecM -mam +vjM lPV lPV kDq ecM nSx eiQ -gCb -ejO +qkw +mzo gqe gqe -iOJ -ozh +jQk +dUe gqe gqe mAA atx -jxy +ary wjH -nph -vHG -pQq +cJQ +sJV +wBF dtg -usz +saZ sHH sHH sHH -qOd +erI kqC -wII -bjk +scu +gWy mxQ gRW ssO @@ -79853,43 +71677,43 @@ iyf mxQ pte bzO -fLs -fLs -fLs -oYM -nVq -rev -oYM -fLs +iox +iox +iox +cfg +tFR +wnm +cfg +iox bzO bzO mxQ tUs uZX -oYM +cfg tUs -kfA -deW -kfA +neW +lds +neW tUs mxQ -sfw +dIN lAS -rOE -nVq -rev +imx +tFR +wnm lAS aRk -fKv +bdo pVv -oYM -kfA -atE -kfA +cfg +neW +aZf +neW lAS lAS -oYM -oYM +cfg +cfg bzO bQM kPz @@ -79982,25 +71806,25 @@ cAW cAW jmG cKa -ocJ -rsE +rxj +dHU cKa -xMR -roY -cHq +fzi +qjb +dln cKa -ocJ -rsE +rxj +dHU cKa -ocJ -rsE +rxj +dHU cKa -ocJ -ukk +rxj +pju cKa -xMR -roY -iZV +fzi +qjb +ilH uwk bQM kPz @@ -80024,10 +71848,10 @@ ezn kPz kPz hxq -jLs -bTe -eRi -llW +fCq +bxg +jiG +jNz ecM nSx nrq @@ -80042,16 +71866,16 @@ gqe gqe atx tHl -opB -mcc -tyb -hDr -mcc -cel -mcc -mcc -aYA -mcc +iHP +jpd +gXo +rkf +jpd +tWr +jpd +jpd +vmP +jpd kqC kqC kqC @@ -80065,16 +71889,16 @@ tUs mxQ bzO bzO -oYM -oYM -oYM -sTV -eNs -snO -sTV -oYM -oYM -oYM +cfg +cfg +cfg +aiT +luR +pSR +aiT +cfg +cfg +cfg mxQ iyf mxQ @@ -80087,13 +71911,13 @@ mxQ mxQ qbv cNn -oYM -nVq -rev +cfg +tFR +wnm lAS xmX -lqo -hHv +udR +nCo waN sfW sfW @@ -80101,7 +71925,7 @@ sfW sfW sfW oqu -jKL +nNN bzO tan tan @@ -80194,25 +72018,25 @@ cAW cAW jmG cKa -ikq -ikz +tSF +nxh cKa -xMR -roY -iZV +fzi +qjb +ilH cKa -ikq -chJ +tSF +jNC cKa -ikq -frw +tSF +nvx cKa -ikq -dSw +tSF +fLh cKa -ikq -vII -dyM +tSF +fpF +hwl uwk bQM kPz @@ -80236,19 +72060,19 @@ vnr hxq hxq vnr -dXz -dpt +slU +jZk ycX -aap +foX ecM nSx -aah -ckD -mQZ +nzn +kEA +dSp gqe -sad -rsW -mQZ +wSE +ozK +dSp gqe gqe gqe @@ -80265,8 +72089,8 @@ blG jTJ jTJ jTJ -mCT -skH +bmS +lIj ffZ tUs fgU @@ -80275,37 +72099,37 @@ noa mxQ mxQ mxQ -nPa -kfA +rDt +neW lAS lAS -oYM -oYM -kfA -kfA -oYM -oYM +cfg +cfg +neW +neW +cfg +cfg lAS lAS -kfA -vWs +neW +fqc mxQ mxQ mxQ -tMz -tMz +qSB +qSB mxQ uod lAS -raF +fWG pVv -oYM -nVq -xUz -nbv -nbv +cfg +tFR +nwj +nUK +nUK pdf -aWo +psf hfd fIW htt @@ -80315,9 +72139,9 @@ vjq euC euC euC -ssD +wWo iSi -ssD +wWo hbC cbb bQM @@ -80409,9 +72233,9 @@ cKa kzh tOp cKa -xMR -roY -iZV +fzi +qjb +ilH cKa kzh tOp @@ -80422,87 +72246,87 @@ cKa kzh tOp cKa -cOl -vJD -vJD +ify +aul +aul uwk bQM kPz kPz bQM hxq -bTe -eRi -kJC -eRi -eRi -eRi -eRi -eRi -eRi -dJl -eRi -eRi -eRi -eRi -eRi -jSC -eRi -eRi -gHW -bra -hrX +bxg +jiG +daY +jiG +jiG +jiG +jiG +jiG +jiG +dJw +jiG +jiG +jiG +jiG +jiG +pdX +jiG +jiG +fkT +fac +kEo nSx cVV -glH +vfX xKX -jbk -mQZ -iOJ -sad -rsW -mQZ +joZ +dSp +jQk +wSE +ozK +dSp gqe gqe uix -fII +rpN ntv -gXL -dHp -dHp -xAw -rdS -usz -usz -dpr +rFD +kmc +kmc +tgL +uyZ +saZ +saZ +bMI duF -euR +pUv rCt -rsh +dBo mxQ tUs kZy mxQ mxQ mxQ -kfA -kfA +neW +neW eCA lAS -oYM -oYM +cfg +cfg lAS -oYM -kfA -kfA -oYM +cfg +neW +neW +cfg lAS -oYM -oYM +cfg +cfg lAS lAS -kfA -dxJ +neW +eQX mxQ mxQ mxQ @@ -80511,11 +72335,11 @@ uLr tUs fXQ ncQ -oYM -nVq -oYM -oYM -oYM +cfg +tFR +cfg +cfg +cfg amx lAS hfd @@ -80527,9 +72351,9 @@ tUs tUs tUs tUs -vzB +qJo fiq -vzB +qJo bQM gEU bQM @@ -80618,118 +72442,118 @@ cAW cAW jmG cKa -aaK -dkj -dkj -frY -roY -qqZ -dkj -dkj -rfD +cAm +vZR +vZR +pvN +qjb +wXJ +vZR +vZR +dgh wef -dkj -dkj -dkj -dkj -kNz -vJD -aaK -dkj -kNz +vZR +vZR +vZR +vZR +lEd +aul +cAm +vZR +lEd uwk bQM kPz kPz bQM hxq -dpt -jLs -jLs -grO -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -jLs -aap +jZk +fCq +fCq +cuW +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +fCq +foX nSx nSx xKX rGf xKX -bRU -mQZ -iOJ -ozh -rsW +lVG +dSp +jQk +dUe +ozK gqe gqe gqe kqC kqC kqC -aKF +lvj sHH -xAw -uJk -usz -usz -sJc +tgL +sXZ +saZ +saZ +ffu kqC -dFC +mlE caF -njT +qXf mxQ cLu wBX mxQ -nPa -kfA +rDt +neW lAS lAS -oYM -oYM +cfg +cfg lAS lAS lAS -oYM -jax -kfA -oYM +cfg +mxu +neW +cfg lAS lAS lAS -oYM -oYM +cfg +cfg lAS lAS -kfA -xmg +neW +wyp mxQ mxQ mWY tUs amx lAS -oYM -nVq -lXf -nLl -nLl +cfg +tFR +sHD +rCD +rCD jYd -mXT +vnk hfd ucj bBA @@ -80739,9 +72563,9 @@ eMU euC euC euC -ssD +wWo iSi -ssD +wWo hbC ogo bQM @@ -80830,70 +72654,70 @@ cAW cAW jmG cKa -xMR -roY -roY -roY -roY -roY -roY -roY -roY +fzi +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb wef -roY -roY -roY -roY -iZV -vJD -xMR -roY -iZV +qjb +qjb +qjb +qjb +ilH +aul +fzi +qjb +ilH uwk bQM kPz kPz bQM hxq -dpt -jLs -mDV -iSQ -iSQ -iSQ -iSQ -iSQ -iSQ -xVP -jLs -mDV -iSQ -iSQ -iSQ -iSQ -iSQ -iSQ -xVP -jLs -aap +jZk +fCq +dOO +juw +juw +juw +juw +juw +juw +hLo +fCq +dOO +juw +juw +juw +juw +juw +juw +hLo +fCq +foX cVV nSx jzY xKX -sGb -ozh +ffr +dUe gqe -mQZ -iOJ -ozh +dSp +jQk +dUe gqe gqe uix -mNg +xyW ntv -gXL -dHp -dHp +rFD +kmc +kmc jTJ jTJ vRA @@ -80901,47 +72725,47 @@ blG jTJ jTJ kqC -oSo +ygC kqC mxQ tUs mxQ mxQ -kfA +neW lAS -oYM -oYM -xoF +cfg +cfg +vSU lAS lAS kIc -pwi -fbT -mBV -wPL -fNc -pwi +lIB +yfK +xjP +wfS +dwS +lIB uIa lAS lAS -bPS -oYM -oYM +bJR +cfg +cfg lAS -kfA +neW mxQ mxQ uSY tUs jYd cNn -wPF -nVq -rev -oYM -oYM -sTV -hHv +xJj +tFR +wnm +cfg +cfg +aiT +nCo tuX vEi vEi @@ -80949,7 +72773,7 @@ vEi vEi vEi hhh -eKu +tfg bzO tan tan @@ -81042,60 +72866,60 @@ cAW cAW jmG cKa -eXC -vII -vII -vII -vII -vII -vII -vII -vII +suY +fpF +fpF +fpF +fpF +fpF +fpF +fpF +fpF ljc -vII -vII -vII -vII -dyM -vJD -ikq -raD -dyM +fpF +fpF +fpF +fpF +hwl +aul +tSF +lrw +hwl uwk bQM kPz kPz bQM hxq -dpt -jLs -wGm +jZk +fCq +kAg vnr hxq vnr vnr hxq vnr -elC -jLs -wGm +wxb +fCq +kAg oUg -fPF -fPF +rNQ +rNQ oUg oUg oUg -ljA -jLs -wGm +htY +fCq +kAg nSx nSx -ajD -rsW -mQZ +dMX +ozK +dSp gqe -sad -vEX +wSE +uuy nSx qKF gqe @@ -81104,7 +72928,7 @@ gqe kqC kqC kqC -mcc +jpd sHH sqC cXY @@ -81112,56 +72936,56 @@ kfl kfl dEo hfT -dAB -xng -dIq +lEb +npn +hkE vDO tUs vDO -kfA +neW lAS -oYM +cfg lAS lAS lAS -qvL -pwi -xcJ +hLP +lIB +eto mxQ mxQ pwg nYA mxQ mxQ -ozg -pwi -qnc +dEi +lIB +gJU lAS lAS lAS -oYM +cfg lAS -kfA +neW mxQ -sfw +dIN lAS -nBO +etl pVv -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg vEK -sTV +aiT pVv -oYM -kfA -atE -kfA -oYM -oYM -oYM -oYM +cfg +neW +aZf +neW +cfg +cfg +cfg +cfg bzO bQM kPz @@ -81257,19 +73081,19 @@ cKa cKa cKa cKa -yke -ggB -vJD -ggB -vJD -roY -roY -roY -vJD -ggB -czC -czC -czC +sEK +ntl +aul +ntl +aul +qjb +qjb +qjb +aul +ntl +auP +auP +auP cKa cKa cKa @@ -81279,90 +73103,90 @@ kPz kPz bQM hxq -dpt -jLs -aap +jZk +fCq +foX hxq hoH bQM bQM bQM hxq -dpt -fPF -aap -dgB -jLs -hfl -lFO -eCg +jZk +rNQ +foX +gVl +fCq +qvf +vGs +cpM oUg -dpt -tTV -aap -fvk -oHI -iOJ -sad -rsW -mQZ -iOJ -sad -ygS +jZk +waJ +foX +qqz +kvy +jQk +wSE +ozK +dSp +jQk +wSE +aAN nSx qKF gqe uix -fII +rpN ntv -gXL -dHp -dHp +rFD +kmc +kmc ntv -mpT -jOO -xbB -ePf +gkP +uwz +cah +rKK jqX -kQY -xng -dIq +hhR +npn +hkE bzO mxQ mxQ -kfA +neW lAS -oYM +cfg lAS kjA -pwi -xcJ +lIB +eto mxQ jjg mxQ -eBC -kfA -kfA -ers +cgO +neW +neW +yen mxQ jjg mxQ -aqW -pwi +dgu +lIB uOb lAS -oYM +cfg lAS -kfA +neW mxQ mxQ mxQ vkZ ncQ -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg mxk mxQ mxQ @@ -81468,21 +73292,21 @@ jmG cKa cKa cKa -xmt -roY -roY -roY -roY -vJD -roY -roY -roY -vJD -roY -roY -xuw -vJD -vJD +czH +qjb +qjb +qjb +qjb +aul +qjb +qjb +qjb +aul +qjb +qjb +gLZ +aul +aul tBP vNq vnr @@ -81491,90 +73315,90 @@ kPz kPz bQM hxq -dpt -jLs -aap +jZk +fCq +foX hxq bQM bQM bQM bQM hxq -dpt -jLs -odH -dgB -dgB -iOG -jLs -jLs +jZk +fCq +akY +gVl +gVl +ndj +fCq +fCq oUg -dpt -jLs -aap -jLs -oHI -mQZ -iOJ -ozh -rsW -mQZ -iOJ -pKz -rsW -mQZ +jZk +fCq +foX +fCq +kvy +dSp +jQk +dUe +ozK +dSp +jQk +fMz +ozK +dSp gqe gqe kqC kqC kqC -qBQ +siu sHH ntv -mpT -jOO -xbB -pOd +gkP +uwz +cah +nXm mwL -jOO +uwz aRG -xbB +cah bzO mxQ -kfA +neW eCA -oYM -xoF +cfg +vSU lAS -neX +lCG mxQ jjg mxQ jMz -lXf -oYM -kfA -kfA -oYM -nyk -swh +sHD +cfg +neW +neW +cfg +eJr +gsB mxQ jjg mxQ -hHv +nCo lAS -bPS -wqx +bJR +lYN eCA -kfA +neW bzO bzO oeG lAS -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg lAS mxQ mxQ @@ -81681,20 +73505,20 @@ cKa cKa cKa cKa -roY -uTp -uTp -jkZ -niw -niw -oKn -niw -jfp -dYP -roY -roY -vJD -vJD +qjb +cSV +cSV +dFy +tHk +tHk +aJC +tHk +wRw +xAm +qjb +qjb +aul +aul tBP vNq vnr @@ -81703,94 +73527,94 @@ kPz kPz bQM hxq -dpt -jLs -aap +jZk +fCq +foX hxq bQM bQM bQM bQM hxq -dpt -jLs -flm -iOG -dgB -eGg -tAk -mhu +jZk +fCq +nvn +ndj +gVl +pMs +cDk +rZn oUg -dpt -kCK -aap -jLs -oHI -rsW -mQZ -iOJ -sad -vEX +jZk +gxn +foX +fCq +kvy +ozK +dSp +jQk +wSE +uuy nSx -urc -sad -rsW -mQZ +pqv +wSE +ozK +dSp uix -jGV +rJs ntv -gXL -dHp -dHp +rFD +kmc +kmc ntv -mpT -jOO -xbB -ngr +gkP +uwz +cah +uLg fKr -fAV -dxO -gSJ +exv +aca +qkL bzO bzO -kfA +neW lAS -oYM +cfg lAS -qvL -xcJ +hLP +eto jjg -xTe -beV -rQP -rev -oYM -kfA -ycN -oYM -nVq -xUz -xUz -byn +miR +boG +iWG +wnm +cfg +neW +pNA +cfg +tFR +nwj +nwj +kRr jjg -aqW -qnc +dgu +gJU lAS -oYM +cfg lAS -dxJ +eQX bzO bzO pmg lAS -oYM -nVq -rev -glI +cfg +tFR +wnm +jUO lAS -oYM +cfg lAS -oYM +cfg lAS bzO bzO @@ -81891,22 +73715,22 @@ jmG jmG jmG jmG -vRj -vJD -roY -uTp -uTp -vvk -nmm -gWg -nmm -nmm -wJd -kNz -xuw -roY -vJD -vJD +oyS +aul +qjb +cSV +cSV +uLN +pBd +xbT +pBd +pBd +qYD +lEd +gLZ +qjb +aul +aul tBP vNq vnr @@ -81915,44 +73739,44 @@ kPz kPz bQM hxq -dpt -jLs -aap +jZk +fCq +foX hxq bQM bQM bQM bQM hxq -eSg -bQx -aap -sJl -bpq -dnp -bpq -ovZ +atX +kNX +foX +esQ +phX +ryb +phX +cyy oUg -dpt -ors -aap -jLs -oHI -ozh -rsW -mQZ -iOJ -ozh -qGl +jZk +rvi +foX +fCq +kvy +dUe +ozK +dSp +jQk +dUe +ptO nSx -srz -ozh -rsW -mQZ +eqN +dUe +ozK +dSp kqC kqC kqC -mcc +jpd sHH jTJ qDd @@ -81964,46 +73788,46 @@ rBF nhY mny bzO -oYM +cfg lAS -oYM +cfg lAS lAS -neX +lCG mxQ mxQ -beV -oYM -oYM -lXf -oYM -kfA -kfA -oYM -klb -vDK -sAk -xUz +boG +cfg +cfg +sHD +cfg +neW +neW +cfg +hYq +fxG +aKY +fKS mxQ mxQ -hHv +nCo lAS lAS -oYM +cfg lAS -xaK -oYM +aOe +cfg lAS mxQ -oYM -nVq -rev -oYM -pmo -pmo -dyp +cfg +tFR +wnm +cfg +vrt +vrt +xbP lAS -oYM +cfg bzO bzO bzO @@ -82103,22 +73927,22 @@ cAW bQM fwn jmG -brS -vJD -roY -uTp -kfF -tyk -nmm -pqz -nmm -nmm -wJd -iZV -roY -roY -aIp -aIp +tXK +aul +qjb +cSV +wKs +vIt +pBd +sUI +pBd +pBd +qYD +ilH +qjb +qjb +qxG +qxG vNq vNq vNq @@ -82127,96 +73951,96 @@ vNq vNq vNq vNq -dpt -jLs -wGm +jZk +fCq +kAg vnr hxq vnr vnr hxq vnr -ljA -jLs -wGm +htY +fCq +kAg oUg -fzt -umq +aPE +vhq oUg oUg oUg -ljA -jLs -aap -xnq +htY +fCq +foX +jSX nSx -kcP -iOJ -rsW -mQZ -iOJ -sad -rsW -mQZ -iOJ -sad -rsW -jZR -wnz -wnz -cCq -uFh +tEP +jQk +ozK +dSp +jQk +wSE +ozK +dSp +jQk +wSE +ozK +anv +nqK +nqK +ctv +xcp jTJ -bxl -jOO -xbB -pOd -vlt -xOI -pOd -kZb +kJG +uwz +cah +nXm +xxA +tUT +nXm +pbz bzO -oYM +cfg lAS -oYM +cfg lAS kjA -xcJ +eto jjg jMz -otq -oYM -oYM -rvW -cDZ -kfA -kfA +qIF +cfg +cfg +plf +vyZ +neW +neW vjR doQ upM vjR -xUz -swh +nwj +gsB jjg -aqW +dgu cNn lAS -oYM +cfg lAS -xaK -oYM +aOe +cfg mKy vaO -oYM -nVq -rev -dEF +cfg +tFR +wnm +lFA hab hab oaX vCv lAS -ehg +olD rzt bQM bQM @@ -82315,20 +74139,20 @@ cAW tan geF jmG -aDs -vJD -roY -uTp -uTp -bXk -nmm -rru -nmm -djB -wJd -dyM -roY -avI +opS +aul +qjb +cSV +cSV +baL +pBd +jfG +pBd +rBi +qYD +hwl +qjb +nsE oUg oUg oUg @@ -82339,96 +74163,96 @@ oUg oUg oUg oUg -dpt -hsd -uTi -wYG -eRi -eRi -eRi -eRi -eRi -gHW -nCC -uTi -eRi -eRi -kqr -eRi -eEh -eRi -gHW -eNm -cfc -lzW -oHI -mQZ -iOJ -ozh -vEX +jZk +iBe +wfR +vep +jiG +jiG +jiG +jiG +jiG +fkT +kLx +wfR +jiG +jiG +kJj +jiG +weU +jiG +fkT +mXj +tdR +rrl +kvy +dSp +jQk +dUe +uuy nSx -srz -ozh -rsW -mQZ -iOJ -ozh -jZR +eqN +dUe +ozK +dSp +jQk +dUe +anv sHH -wnz -avl -iUy +nqK +rPJ +xgZ jTJ -mgC -jOO -xbB -pOd +gJS +uwz +cah +nXm kwv aRG aRG aRG -ewy -oYM -oYM +xPH +cfg +cfg lAS lAS -neX +lCG mxQ mxQ -lXf -nLl -lXf -xMT -fOw -qOG -roS -kfA -vDK -dvV -lqi -kOZ -nLl -nyk +kvg +rCD +sHD +guv +jJL +uXg +paw +neW +fxG +oGj +kBS +eFI +rCD +eJr mxQ mxQ -kGw +tkI lAS lAS -oYM -xaK -oYM +cfg +aOe +cfg lAS kbg -oYM -nVq -rev -oYM -ngd -nbv -odN +cfg +tFR +wnm +cfg +gPr +nUK +iKX lAS -oYM -ehg +cfg +olD rzt bQM bQM @@ -82529,18 +74353,18 @@ cAW jmG uwk jmG -roY -neH -wTV -rSh -nmm -nmm -nmm -nmm -wJd -vJD -roY -roY +qjb +wda +tUz +tSu +pBd +pBd +pBd +pBd +qYD +aul +qjb +qjb oUg oUg oUg @@ -82549,97 +74373,97 @@ oUg oUg oUg oUg -llC -qGn -dpt -jLs -jLs -jLs -dgB -jLs -bRu -lYr -jLs -jLs -jLs -tTV -jLs -bQx -lYr -jLs -mPA -jLs -jfD -jLs -aap -fvk -oHI -rsW -mQZ -iOJ -sad -vEX +xFA +mPT +jZk +fCq +fCq +fCq +gVl +fCq +oNN +jKD +fCq +fCq +fCq +waJ +fCq +kNX +jKD +fCq +nAh +fCq +nDY +fCq +foX +qqz +kvy +ozK +dSp +jQk +wSE +uuy nSx -srz -dDy +eqN +tSR izZ -kcP +tEP bGT kqC -rGV -wnz +wFq +nqK mCF kqC jTJ -wXf -jOO -xbB -pOd -pOd -qzI -pOd -pOd -pOd -sTV -hll -oYM -oYM -dCb +aGI +uwz +cah +nXm +nXm +stx +nXm +nXm +nXm +aiT +cwC +cfg +cfg +ntn mxQ -xhY -oYM -oYM -oYM -sru -qOG -vuW -ufX -fEY +qOI +cfg +cfg +cfg +whX +uXg +nvo +vyB +reS bzO -oYM -oYM -oYM -oYM -oYM -iGW +cfg +cfg +cfg +cfg +cfg +dLb mxQ -qIk -oYM -oYM -hll -sTV -oYM -oYM -oYM -oYM -nVq -rev -oYM -pmo -cRs -nLl +sKz +cfg +cfg +cwC +aiT +cfg +cfg +cfg +cfg +tFR +wnm +cfg +vrt +bLI +rCD lAS -oYM +cfg bzO bzO bQM @@ -82741,18 +74565,18 @@ cAW cAW cAW uwk -roY -roY -roY -tAf +qjb +qjb +qjb +gWC oBC jNl vrp mTa -bsm -kNl -roY -roY +slx +nbA +qjb +qjb oUg kSh wPz @@ -82761,98 +74585,98 @@ wPz wPz ofq oUg -llC -qGn -nOF -iSQ -iSQ -iSQ -suj -iSQ -iSQ -iSQ -tHP -ilv -jLs -pYO -iSQ -fCz -iEz -gzy -iSQ -iSQ -xjW -osR -aap -jLs -oHI -ozh -rsW -mQZ -iOJ -ozh -rsW -mQZ -iOJ -gWf -mQZ -mQZ +xFA +mPT +ctT +juw +juw +juw +gwS +juw +juw +juw +qnv +xcQ +fCq +qQH +juw +hHd +ifB +wmt +juw +juw +llm +jiB +foX +fCq +kvy +dUe +ozK +dSp +jQk +dUe +ozK +dSp +jQk +tKY +dSp +dSp aRG aRG aRG aRG aRG oAv -wXf -jOO -ovE -xng -xng -xng -xng -xng -xng -fBd -kfA -kfA -kfA -ubT +aGI +uwz +jfV +npn +npn +npn +npn +npn +npn +uPB +neW +neW +neW +lHu xyK -kfA -kfA -kfA -kfA -ufX -kfA -kfA -kfA -kfA -kfA -kfA -kfA -cvp -kfA -kfA -kfA -iCR -nVH -kfA -kfA -kfA -xoF -nbv -nbv -nbv -nbv -beV -rev -dEF +neW +neW +neW +neW +vyB +neW +neW +neW +neW +neW +neW +neW +nyR +neW +neW +neW +bEb +vqt +neW +neW +neW +vSU +nUK +nUK +nUK +nUK +boG +wnm +lFA xrn jXC hab vCv lAS -ehg +olD rzt bQM bQM @@ -82953,118 +74777,118 @@ cAW cAW cAW jmG -roY -roY -roY -sTB +qjb +qjb +qjb +oxI ubQ okF fis lUs -pqz -kNl -roY -roY +sUI +nbA +qjb +qjb mPW cpP -aFK -qGn -qGn -aFK +dru +mPT +mPT +dru fnD oUg oUg -qob -kSU -kSU -tBR +mNZ +knw +knw +nly oUg oUg oUg -kRM -sBr +iYD +pnE oUg -ljA -xoB -wGm +htY +iKa +kAg oUg -jPO -dSz -aRY -nCw +ibV +qfx +uKV +sHe ggh -rmS -tVu -tYc -tVu -mQZ -iOJ -ozh -vYA -ozh -mQZ -mQZ -sDp -mQZ -fiI -mQZ -gNK +lzP +giT +aoe +giT +dSp +jQk +dUe +goS +dUe +dSp +dSp +kru +dSp +kMm +dSp +klm aRG aRG aRG aRG aRG aRG -wXf -jOO -oZc -dxO -dxO -dxO -dxO -dxO -dxO -wpp -kfA -kfA -kfA -wPL +aGI +uwz +bqc +aca +aca +aca +aca +aca +aca +mnE +neW +neW +neW +wfS gbn -kfA -kfA -roS -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA -kfA +neW +neW +paw +neW +neW +neW +neW +neW +neW +neW +neW +neW +neW +neW +neW +neW jYd -mBV -kfA -kfA -kfA -eNs -nLl -nLl -nLl -nLl -nLl -fOw -oYM -iXz -hIu -xRg +xjP +neW +neW +neW +luR +rCD +rCD +rCD +rCD +rCD +jJL +cfg +nnp +tAg +hKz lAS -oYM -ehg +cfg +olD rzt bQM bQM @@ -83165,118 +74989,118 @@ cAW cAW cAW uwk -roY -jyc -roY -sTB +qjb +ehY +qjb +oxI hpz hxM fHK iwT -nmm -kNl -xvs -roY +pBd +nbA +uWH +qjb puE -hTf -qGn -eqQ -eqQ -qGn -pbp -qGn -pbp -qGn -dpt -eph -aap +aTZ +mPT +fEE +fEE +mPT +qMU +mPT +qMU +mPT +jZk +vBZ +foX oUg -qvk -tCj -grO -jLs -sJl -dpt -jLs -aap -eBs -cWM -dCA -lFx -cky -laD -dpt -jLs -flm -xnq +cVo +wLp +cuW +fCq +esQ +jZk +fCq +foX +laX +qvY +hym +aeE +vpm +mru +jZk +fCq +nvn +jSX nSx -srz -ozh -mQZ -oFv +eqN +dUe +dSp +rVA izZ bEX bEX bEX iCU -mQZ -mQZ +dSp +dSp aRG oAv aRG aRG aRG aRG -wXf -jOO -ere -wEn -wEn -pOd -pOd -pOd -eEk -sTV -oYM -hll -oYM -dCb +aGI +uwz +kmG +mVx +mVx +nXm +nXm +nXm +xuG +aiT +cfg +cwC +cfg +ntn mxQ -xhY -oYM -oYM -oYM -rhF -rhF +qOI +cfg +cfg +cfg +fgn +fgn mxQ -jxa -kfA -tuB -kAo -tLd -oYM -oYM -oYM -iGW +acA +neW +bAf +hmm +cfL +cfg +cfg +cfg +dLb mxQ -enh -oYM -hll -oYM -sTV -oYM -oYM +iLZ +cfg +cwC +cfg +aiT +cfg +cfg lAS -oYM -oYM -oYM -oYM -pmo -vNY -nLl +cfg +cfg +cfg +cfg +vrt +lqg +rCD lAS -oYM -ehg +cfg +olD rzt bQM bQM @@ -83377,118 +75201,118 @@ cAW cAW cAW jmG -roY -roY -uTp -rSh -wyU -ujs -nmm -nmm -wJd -vJD -roY +qjb +qjb +cSV +tSu +fXP +bRh +pBd +pBd +qYD +aul +qjb wef puE -cJv -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -eqQ -dpt -eph -aap +kpr +fEE +fEE +fEE +fEE +fEE +fEE +fEE +fEE +jZk +vBZ +foX oUg -gDz -jLs -jLs -wQn -vyU -dpt -bQx -sjc -eBs -rjM -tTM -jeY -akc -laD -oHk -tVu -tYc -tVu -sad -ovB -vxp -qvx -ozh +uvl +fCq +fCq +kJT +fsv +jZk +kNX +nmt +laX +gRb +dhH +qaK +klx +mru +xEc +giT +aoe +giT +wSE +iek +nuY +eyW +dUe izZ -bzG -lEz -waz +sbs +lwY +qvF bEX -uRe -mQZ +yfu +dSp bhX aRG vAi mNJ bVk oan -nZT -jOO -ere -pOd +fvr +uwz +kmG +nXm plc -utC +flM aRG aRG -ewy -oYM -oYM +xPH +cfg +cfg lAS lAS -neX +lCG mxQ mxQ -kfA -joS -kfA -kfA -wDF -oYM -kfA -kfA -xLI -dZc -beV -beV -luU -med +pco +eBD +neW +neW +nXc +cfg +neW +neW +hGa +gfX +boG +boG +kaM +rUH mxQ mxQ -hHv +nCo lAS lAS -oYM -xaK -oYM +cfg +aOe +cfg lAS lAS lAS lAS -oYM +cfg vCv hab gIF ptZ vCv lAS -ehg +olD rzt bQM bQM @@ -83589,61 +75413,61 @@ cAW cAW cAW uwk -roY -uTp -uTp -vvk -nmm -nmm -cYT -nmm -wJd -kNz +qjb +cSV +cSV +uLN +pBd +pBd +quc +pBd +qYD +lEd wef -roY +qjb qrz puE -lzn -eqQ -jCy -eqQ -eqQ -eqQ -eqQ -eqQ -dpt -eph -aap +lch +fEE +eFg +fEE +fEE +fEE +fEE +fEE +jZk +vBZ +foX eUi -xup -bQx -jLs -rWZ -jLs -dpt -jLs -aap -eBs -igD -uin -rvR -aag -laD -dpt -jLs -aap -dfZ -iOJ -iOJ -ozh -mQZ -mQZ +gmd +kNX +fCq +hAK +fCq +jZk +fCq +foX +laX +tNL +gCd +ahz +qwI +mru +jZk +fCq +foX +jIp +jQk +jQk +dUe +dSp +dSp izZ -fkp +dbr gWq -waz +qvF bEX -eJP +ubn xKX iyc bhX @@ -83651,55 +75475,55 @@ aRG oAv mNJ aRG -wXf -jOO -xbB -pOd +aGI +uwz +cah +nXm aRG wen aRG aRG -mTq -oYM +lWw +cfg lAS -oYM +cfg lAS flg -wOc +isr mxQ -oYM -oYM -oYM -wqx -kfA -oYM -kfA -qos -wAv -beV -fmM -oYM -lXf +dtO +cfg +cfg +lYN +neW +cfg +neW +lEE +sGg +boG +eWH +cfg +sHD uod jjg -tQL +dmV ncQ lAS -oYM +cfg lAS -xaK -oYM -qFg +aOe +cfg +qbj qbY lAS lAS -oYM +cfg gqd -hIu -nbv -nbv +tAg +nUK +nUK lAS -oYM +cfg bzO bzO bQM @@ -83801,118 +75625,118 @@ cAW cAW cAW jmG -roY -uTp -uTp -vgS -nmm -nmm -nmm -nmm -wJd -iZV -roY -xvs +qjb +cSV +cSV +eOn +pBd +pBd +pBd +pBd +qYD +ilH +qjb +uWH puE -eqQ -qGn -eqQ -eqQ -qGn -qGn -qGn -qGn -qGn -dpt -eph -aap +fEE +mPT +fEE +fEE +mPT +mPT +mPT +mPT +mPT +jZk +vBZ +foX oUg -ovZ -yhT -bQx -jLs -qvk -pYp -jLs -aap -eBs -hjb -gyI -eph -eph -laD -uGb -puB -kiW -jLs -mQZ -ovB -vxp -mQZ -mQZ +cyy +nzB +kNX +fCq +cVo +gXe +fCq +foX +laX +sBc +pAD +vBZ +vBZ +mru +raj +myc +klc +fCq +dSp +iek +nuY +dSp +dSp izZ -hiK +spn tOc tOc bgd -mQZ -mQZ +dSp +dSp bhX mhR bhX aRG nrL aRG -wXf -jOO -xbB -pOd +aGI +uwz +cah +nXm qZL -utC +flM aRG lBJ -xbu -oYM +eRv +cfg lAS -oYM +cfg lAS lAS -neX +lCG mxQ mxQ lAS uTk -oYM -lLU -oYM -kfA -kfA -oYM -beV -oYM -oYM -meG +cfg +uYr +cfg +neW +neW +cfg +boG +cfg +cfg +kaI mxQ mxQ -hHv +nCo lAS lAS -oYM +cfg lAS -xaK -oYM -vDK +aOe +cfg +fxG qbY gxN lAS -oYM +cfg egx -nLl -vZx -pmo +rCD +aXR +vrt lAS -oYM -jfa +cfg +mKJ rzt bQM bQM @@ -84013,104 +75837,104 @@ bQM cAW cAW uwk -roY -uTp -uTp -dLF -nmm -sUX -nmm -nmm -nEN -dyM -roY -roY +qjb +cSV +cSV +lwp +pBd +mnR +pBd +pBd +eRR +hwl +qjb +qjb mPW -vvM -tet -eyz -qGn -tet +xnw +poA +wkK +mPT +poA fnD oUg oUg -qob -kSU -kSU -tBR +mNZ +knw +knw +nly oUg oUg oUg -jLs -hXi +fCq +chk oUg -rmS -tVu -lsU +lzP +giT +byl oUg -gUx -eza -bfs -eir +aUK +eiL +kqj +jov oUg -dzk -jLs -aap -jLs -jLs -iOJ -ozh -mQZ -smh +bSY +fCq +foX +fCq +fCq +jQk +dUe +dSp +koN izZ bEX mrG bEX izZ -kcP -fGM +tEP +bsg vpk bhX aRG vAi fpl aRG -wXf -jOO -xbB -pOd +aGI +uwz +cah +nXm aRG aRG aRG uhb bzO bzO -kfA +neW lAS -oYM +cfg lAS -qMV -wOc +cdW +isr mxQ lAS lAS -oYM -kfA -oYM -kfA -kfA -oYM -nVq -lXf -meG -kaH +cfg +neW +cfg +neW +neW +cfg +tFR +sHD +kaI +sGU jjg -tQL -tsu +dmV +oTZ lAS -oYM +cfg lAS -dxJ +eQX bzO bzO pmg @@ -84123,8 +75947,8 @@ cyU hab tiW vCv -oYM -jfa +cfg +mKJ rzt bQM bQM @@ -84225,18 +76049,18 @@ kPz bce cAW jmG -roY -uTp -neH -jkZ -spl -oNx -uuJ -oNx -jWy -vJD -roY -roY +qjb +cSV +wda +dFy +wIT +wCe +kXB +wCe +och +aul +qjb +qjb jqt pTU wPz @@ -84245,95 +76069,95 @@ wPz wPz jPK oUg -llC -qGn -bTe -eRi -eRi -eRi -eRi -dJl -ami -eRi -lJa -gHW -jLs -uTi -eRi -tBe -eRi -eRi -jgW -lHL -gHW -jLs -vsq -ucr -jLs -jLs -jLs -wXf -wXf -wXf -bmO -wXf -bmO -wXf -bmO -wXf -uFE -wXf -iiP -pEY -vzZ -wXf -wXf -jOO -ere -pOd +xFA +mPT +bxg +jiG +jiG +jiG +jiG +dJw +bWm +jiG +kHV +fkT +fCq +wfR +jiG +bqJ +jiG +jiG +rvM +lQu +fkT +fCq +uPi +ahu +fCq +fCq +fCq +aGI +aGI +aGI +blm +aGI +blm +aGI +blm +aGI +ucw +aGI +sOm +rcp +vgW +aGI +aGI +uwz +kmG +nXm plc -utC +flM aRG nds bzO bzO -kfA +neW eCA -oYM -eNs +cfg +luR lAS -neX +lCG mxQ mxQ mxQ -jcB -kfA -dMm -kfA -kfA -oYM -pON +cqK +neW +oFq +neW +neW +cfg +aVv mLE mxQ jjg mxQ -hHv +nCo lAS -snO -oYM +pSR +cfg lAS -kfA +neW bzO bzO -oYM +cfg qbY gxN lAS -oYM +cfg lAS -nbv -hIu -nbv +nUK +tAg +nUK lAS eCA bzO @@ -84437,18 +76261,18 @@ fiq cAW cAW uwk -roY -roY -roY -roY -roY -roY -roY -roY -roY -roY -roY -roY +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb +qjb oUg oUg oUg @@ -84457,52 +76281,52 @@ oUg oUg oUg oUg -llC -qGn -dpt -eph -eph -eph -eph -eph -eph -skO -gxL -eph -rDl -aAH -eph -gxL -eph -eph -ybR -eph -eph -ybR -eph -xZk -eRi -dJl -eRi -xng -aQK -xng -pAt -kjz -vea -xng -vea -irK -hWJ -xng -iah -xng -mbe -xng -xng -bsJ -ere -pOd +xFA +mPT +jZk +vBZ +vBZ +vBZ +vBZ +vBZ +vBZ +icm +ilu +vBZ +vgb +bgq +vBZ +ilu +vBZ +vBZ +xGV +vBZ +vBZ +xGV +vBZ +mFw +jiG +dJw +jiG +npn +pek +npn +xWg +ydA +mBb +npn +mBb +eCb +rzL +npn +hZo +npn +eNQ +npn +npn +xjT +kmG +nXm aRG aRG aRG @@ -84510,45 +76334,45 @@ xnW bzO bzO mxQ -kfA +neW lAS -oYM +cfg lAS flg -lJy -wOc +cgP +isr mxQ mxQ mxQ -eRH -kfA -kfA -fKF +xLu +neW +neW +fiw mxQ jjg mxQ -tQL -lJy +dmV +cgP ncQ lAS -oYM +cfg lAS -kfA +neW mxQ mxQ mxQ -oYM -oYM -oYM -oYM +cfg +cfg +cfg +cfg lAS -oYM -oYM +cfg +cfg lAS -oYM +cfg dgz -oYM -bGt +cfg +qjF bzO bzO bzO @@ -84649,18 +76473,18 @@ fiq fiq tan jmG -roY -roY -roY -roY -roY -vJD -vJD -vJD -vJD -roY -roY -roY +qjb +qjb +qjb +qjb +qjb +aul +aul +aul +aul +qjb +qjb +qjb oUg oUg oUg @@ -84671,87 +76495,87 @@ oUg oUg oUg oUg -nOF -iSQ -iSQ -iSQ -iSQ -iSQ -gjg -iSQ -njC -iSQ -iSQ -iSQ -iSQ -njC -iSQ -soc -iSQ -iSQ -iSQ -iSQ -iSQ -iSQ -sOp -sOp -iSQ -kJI -dxO -dxO -mjD -dxO -mjD -rmG -mjD -dxO -mki -dxO -dxO -dxO -dxO -dxO -dxO -dxO -gmy -pOd +ctT +juw +juw +juw +juw +juw +lVL +juw +aoD +juw +juw +juw +juw +aoD +juw +rQi +juw +juw +juw +juw +juw +juw +vBC +vBC +juw +aeJ +aca +aca +pOc +aca +pOc +nHt +pOc +aca +emO +aca +aca +aca +aca +aca +aca +aca +tch +nXm plc -utC +flM aRG -gCY +nfE vDO tUs mxQ -kfA +neW lAS -oYM +cfg lAS lAS lAS -qMV -lJy -wOc +cdW +cgP +isr mxQ mxQ kPC bPf mxQ mxQ -tQL -lJy -tsu +dmV +cgP +oTZ lAS lAS lAS -oYM +cfg eCA -kfA +neW mxQ tUs vDO -atE -oYM -oYM +aZf +cfg +cfg lAS eCA boh @@ -84760,7 +76584,7 @@ boh boh lAS lAS -okM +uHR bzO bzO bzO @@ -84893,11 +76717,11 @@ hxq hxq hxq vnr -vtJ -kSU -kSU +bMq +knw +knw vNq -dpt +jZk ycX doB kFM @@ -84907,26 +76731,26 @@ ycX ycX ycX ycX -aap -eix -dZA -eix -kaB -wXf -uCu -wXf -bmO -wXf -xCm -wXf -wXf -wXf -wXf -wXf -sde -tCf -tCf -wXf +foX +wRs +aPb +wRs +flx +aGI +tKC +aGI +blm +aGI +twt +aGI +aGI +aGI +aGI +aGI +rFw +lft +lft +aGI aRG aRG aRG @@ -84935,35 +76759,35 @@ mxQ tUs mxQ mxQ -kfA +neW lAS -oYM -oYM -eNs +cfg +cfg +luR lAS lAS flg -lJy -jka -nVH -ubT -vyF -lJy +cgP +mzs +vqt +lHu +wKy +cgP ncQ lAS lAS -snO -oYM -oYM +pSR +cfg +cfg lAS -kfA +neW mxQ mxQ tUs bzO lAS lAS -oYM +cfg lAS mxQ mLP @@ -85074,14 +76898,14 @@ cAW tan tan tan -mFf -hgp -cXw +sZD +rjY +cKm lRT -fhX -wHx -wHx -esE +fpw +cqJ +cqJ +uns lRT cAW vnr @@ -85105,23 +76929,23 @@ bQM bQM kPz xDw -tRa -fLa -ltV +hbI +vVo +hKo dOX -qqu -rZa -ljZ -kDg -rZa -qHC -arq -qHC +gwU +ipk +gdR +nrV +ipk +xyn +rbh +xyn fxY qcT -hlK +qmq lRT -deL +dzl dzl dzl dzl @@ -85131,15 +76955,15 @@ dzl skM fpl aRG -dEy -gOs -wpf -fTx -wXf -fTx -gOs -fyQ -fTx +pTW +uXS +tZr +eBh +aGI +eBh +uXS +ngY +eBh vOz aRG ogd @@ -85147,28 +76971,28 @@ mxQ cLu kVk mxQ -nPa -kfA +rDt +neW lAS lAS -oYM -oYM +cfg +cfg lAS lAS lAS -oYM -kfA -kfA -oYM +cfg +neW +neW +cfg lAS lAS lAS -oYM -oYM +cfg +cfg lAS lAS -kfA -pzG +neW +oEl mxQ cZr tUs @@ -85178,14 +77002,14 @@ lAS vEK lAS jjg -xoF -pkG -nbv -nbv -nbv -nbv -nbv -izJ +vSU +xIm +nUK +nUK +nUK +nUK +nUK +uAT rzt bQM bQM @@ -85286,14 +77110,14 @@ cAW cAW pcu nfF -xdy +bZf ruD -jVC +vBf taY -voS +nnP hKI hKI -hlK +qmq lRT cAW vnr @@ -85317,21 +77141,21 @@ xDw xDw xDw lRT -hTG -qHC -kjo +oGa +xyn +iEy sIJ -iJf -qWa -lbe -sEi -kge -sEi -oMy -vED -sEi -ltV -hlK +srf +eBb +ism +fEb +rEF +fEb +aBV +vbx +fEb +hKo +qmq xDw cAW bQM @@ -85343,17 +77167,17 @@ rBF dzl bVk vAi -kwm -cll -qmO -lRe -wXf -kwm -xYB -luH -wDV +kce +wrI +emN +kwp +aGI +kce +eJG +jHA +uAO aRG -dGj +fru mxQ mxQ tUs @@ -85361,24 +77185,24 @@ cFX mxQ mxQ mxQ -xjv -kfA +orm +neW eCA lAS -oYM -oYM +cfg +cfg lAS -oYM -kfA -kfA -oYM +cfg +neW +neW +cfg lAS -oYM -oYM +cfg +cfg lAS eCA -kfA -kfA +neW +neW mxQ iyf mxQ @@ -85390,14 +77214,14 @@ lAS vEK lAS jjg -nVq -oYM -oYM -vSk -sFN -oYM -oYM -vqM +tFR +cfg +cfg +pTi +dbw +cfg +cfg +jMC rzt bQM bQM @@ -85498,14 +77322,14 @@ fiq fiq pcu fiq -xdy -xdy -xdy +bZf +bZf +bZf taY -iJf +srf hKI hKI -hlK +qmq lRT cAW vnr @@ -85528,22 +77352,22 @@ lwO eqC foT fxY -hsA -iJf -jOW -hlK +sVk +srf +cpG +qmq dOX -jdc -vbn -tRa -lbe -idq -sEi -lbe -fLa -eWh -hlK -rKB +tbV +kcx +hbI +ism +htu +fEb +ism +vVo +vLQ +qmq +mNF xDw dhi fQV @@ -85555,15 +77379,15 @@ erT dzl kng aRG -fTx -lnf -aVA -fTx -vzZ -fTx -lnf -aVA -fTx +eBh +bcL +dng +eBh +vgW +eBh +bcL +dng +eBh aRG aRG ffZ @@ -85575,20 +77399,20 @@ oXS mxQ iyf mxQ -nPa -kfA +rDt +neW lAS lAS -oYM -oYM -kfA -kfA -oYM -oYM +cfg +cfg +neW +neW +cfg +cfg lAS lAS -kfA -kfA +neW +neW mxQ mxQ mxQ @@ -85602,14 +77426,14 @@ lAS vEK lAS jjg -eNs -nLl -nLl -nLl -nLl -nLl -nLl -qgq +luR +rCD +rCD +rCD +rCD +rCD +rCD +wxl rzt bQM bQM @@ -85714,10 +77538,10 @@ fiq nfF nfF lRT -iJf -dlW -dlW -hlK +srf +hSs +hSs +qmq lRT cAW bce @@ -85740,44 +77564,44 @@ hKI hKI hKI hKI -hsA -iJf -qHC -hlK +sVk +srf +xyn +qmq dOX -pkc -bGr -aCn -tRa -sEi -sEi -sEi -gnS -sYM -hlK -jBj +tMR +sxX +hDI +hbI +fEb +fEb +fEb +qiX +sgp +qmq +uWI lRT ajx -afk -afk +tle +tle hkh -afk -afk +tle +tle iWq dzl aRG aRG -wXf -wXf -wXf -wXf -wXf -wXf -wXf -wXf -wXf -pOd -gCY +aGI +aGI +aGI +aGI +aGI +aGI +aGI +aGI +aGI +nXm +nfE vDO tUs tUs @@ -85789,16 +77613,16 @@ tUs mxQ mxQ bzO -oYM -oYM -oYM -sTV -xoF -bPS -sTV -oYM -oYM -iGW +cfg +cfg +cfg +aiT +vSU +bJR +aiT +cfg +cfg +dLb bzO mxQ mxQ @@ -85810,13 +77634,13 @@ tUs tUs tUs vDO -atE +aZf vEK lAS mxQ -wMQ -kPv -cbC +tuQ +hJq +wWu mxQ syV iyf @@ -85926,10 +77750,10 @@ pcu atp cAW lRT -hTG +oGa hjW hjW -cxe +sCn lRT cAW bce @@ -85952,44 +77776,44 @@ hKI eqC hKI nJC -own -wew -rXT -uxY +lIO +pLl +ioD +sXV dOX -aKc -aQE -iJf -joD -dlW -dlW -dIa -uxY -xmM -hlK -iRy +iaU +aco +srf +knc +hSs +hSs +hNV +sXV +tPx +qmq +fFg xDw ajx -afk -afk +tle +tle pcu -afk -afk +tle +tle iWq dzl aRG aRG -fTx -gOs -fyQ -fTx -wXf -fTx -gOs -fyQ -fTx -pOd -pOd +eBh +uXS +ngY +eBh +aGI +eBh +uXS +ngY +eBh +nXm +nXm mxQ mxQ mxQ @@ -86003,12 +77827,12 @@ oAH bzO bzO bzO -sKP -oYM -nVq -rev -oYM -sKP +nvw +cfg +tFR +wnm +cfg +nvw bzO bzO bzO @@ -86026,13 +77850,13 @@ lAS vEK lAS mxQ -xVR -ipJ -kwy +rGv +nLG +ijJ bzO -lQd -txS -jrn +qhp +dsK +uUJ bzO bQM bQM @@ -86138,10 +77962,10 @@ pcu fiq cAW lRT -iJf -sEi -sEi -hlK +srf +fEb +fEb +qmq lRT cAW bce @@ -86169,57 +77993,57 @@ hir hir hir dOX -fye -gEv -jyK -dlW -dIa -dlW -gxx -dlW -uxY -hlK -tGF +ksI +tPL +bSQ +hSs +hNV +hSs +jHY +hSs +sXV +qmq +frk xDw ajx -afk -afk +tle +tle hkh -afk -afk +tle +tle iWq dzl vOz aRG -kwm -kXH -jGP -wDV -wXf -kwm -cll -wWf -wDV -pOd -pOd -kfA -sTV -rOE -ers -oYM -ers -oYM -prP +kce +kEO +fFy +uAO +aGI +kce +wrI +fgA +uAO +nXm +nXm +neW +aiT +imx +yen +cfg +yen +cfg +szD lAS lAS rzt bQM rzt lAS -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg qLJ mxQ cZr @@ -86238,13 +78062,13 @@ lAS vEK lAS mxQ -itq -oAL -aIE +fJw +jZG +kNg bzO -lQd -btP -jrn +qhp +jhm +uUJ bzO bQM bQM @@ -86350,20 +78174,20 @@ pcu cAW cAW xDw -iJf -dlW -dlW -hlK +srf +hSs +hSs +qmq lRT lRT lRT cAW cAW lRT -nBB -nBB -nBB -nBB +qhI +qhI +qhI +qhI lRT bQM kPz @@ -86377,21 +78201,21 @@ xDw bQM bQM xDw -thU -diR -tVX -qHC -iJf -ojh -dlW -dlW -dlW -pzV -dlW -dlW -dlW -uxY -tNu +gRD +eQw +mOM +xyn +srf +bSk +hSs +hSs +hSs +isS +hSs +hSs +hSs +sXV +iAZ xDw fdV jlH @@ -86403,36 +78227,36 @@ bUB rBF goM aRG -fTx -lnf -aVA -fTx -wXf -fTx -lnf -aVA -fTx -pOd -pOd -kfA -nbv -nbv -nbv -nbv -nbv -bPS -oYM +eBh +bcL +dng +eBh +aGI +eBh +bcL +dng +eBh +nXm +nXm +neW +nUK +nUK +nUK +nUK +nUK +bJR +cfg lAS lAS rzt kPz rzt lAS -oYM -nVq -rev -oYM -guQ +cfg +tFR +wnm +cfg +gUp vDO tUs tUs @@ -86447,12 +78271,12 @@ bQM bQM bzO lAS -xjv +orm kGW mxQ -cGg -kte -tWq +idl +sMa +fSO bzO rzt rzt @@ -86562,10 +78386,10 @@ pcu cAW cAW xDw -iJf +srf hjW hjW -hlK +qmq hKI nvO lRT @@ -86589,21 +78413,21 @@ bQM bQM bQM lRT -iuW +gda hva -nSi -qHC -iJf -qHC -wdA -fsf -qHC -qHC -qHC -lHB +lTS +xyn +srf +xyn +vTS +ntX +xyn +xyn +xyn +mBW bFh hKI -vYM +nYe xDw cAW bQM @@ -86618,32 +78442,32 @@ aRG aRG aRG aRG -wXf -wXf -wXf +aGI +aGI +aGI aRG -pOd +nXm aRG -pOd -pOd -kfA -nLl -nLl -nLl -nLl -oiu -rev -oYM +nXm +nXm +neW +rCD +rCD +rCD +rCD +xAq +wnm +cfg lAS lAS rzt bQM rzt lAS -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg lAS mxQ bzO @@ -86774,11 +78598,11 @@ cAW cAW cAW xDw -iJf -sEi -sEi -mcE -ltV +srf +fEb +fEb +nZu +hKo hKI hKI hKI @@ -86788,34 +78612,34 @@ hKI hKI hKI hKI -rUc -rUc -gnR -rUc -hsA -hsA -hsA -lpm +fHz +fHz +het +fHz +sVk +sVk +sVk +pdg xDw bQM bQM bQM xDw -yiD -lAm -jUp -qHC -qyk -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -pbF -uxY +vnz +qWe +pGe +xyn +efJ +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +uDa +sXV lRT xDw xDw @@ -86830,34 +78654,34 @@ iRa iRa iRa dOX -aIh -hsA -hsA +vUJ +sVk +sVk fjd -pOd -ltu -pOd -kLo -kfA -sTV -oYM -fKF -oYM -nVq -rev -oYM +nXm +fYi +nXm +lsV +neW +aiT +cfg +fiw +cfg +tFR +wnm +cfg lAS eCA bzO rzt bzO pmg -oYM -nVq -rev -rOE +cfg +tFR +wnm +imx lAS -fLO +lji rzt kPz rzt @@ -86986,25 +78810,25 @@ cAW cAW cAW xDw -iJf +srf oWz hKI hKI -tRa -ltV +hbI +hKo hKI -tRa -sEi -ltV +hbI +fEb +hKo hKI -tRa -sEi -ltV +hbI +fEb +hKo hKI -tRa -pJo -ltV -iJf +hbI +sfU +hKo +srf hKI hKI hKI @@ -87037,39 +78861,39 @@ xDw bQM xAl xDw -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN +grE +grE +grE +grE +grE +grE +grE +grE fjd -pOd -pAB -pOd +nXm +oeI +nXm rBF rzt rzt rzt bzO -oYM -nVq -rev -oYM -rOE -oYM -oYM -oYM -oYM -wqx -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg +imx +cfg +cfg +cfg +cfg +lYN +cfg +tFR +wnm +cfg mKy -whR +joG rzt bQM rzt @@ -87198,25 +79022,25 @@ cAW cAW cAW lRT -utV -tqQ +rBn +eeb orA hKI -iJf -hlK -hsA -iJf -hsA -hlK -hsA -iJf -hsA -hlK -hsA -iJf -hsA -hlK -iJf +srf +qmq +sVk +srf +sVk +qmq +sVk +srf +sVk +qmq +sVk +srf +sVk +qmq +srf hKI hKI hKI @@ -87232,14 +79056,14 @@ rMP hKI hKI hKI -iJf -hlK +srf +qmq hKI hKI hKI jal hKI -aai +xqu ddc qbT xeO @@ -87249,14 +79073,14 @@ xDw bQM bQM xDw -cfN +grE hKI hKI hKI hKI hKI hKI -cfN +grE lRT rBF rBF @@ -87266,22 +79090,22 @@ bQM bQM bQM bzO -oYM -nVq -xUz -nbv -nbv -nbv -nbv -nbv -nbv -nbv -nbv -beV -rev -oYM +cfg +tFR +nwj +nUK +nUK +nUK +nUK +nUK +nUK +nUK +nUK +boG +wnm +cfg eCA -byt +mek rzt bQM rzt @@ -87411,24 +79235,24 @@ cAW cAW xDw xDw -jyK -tqQ +bSQ +eeb hKI -jyK -uxY +bSQ +sXV hKI -jyK -dlW -uxY +bSQ +hSs +sXV hKI -jyK -dlW -uxY +bSQ +hSs +sXV hKI -jyK -dlW -uxY -iJf +bSQ +hSs +sXV +srf hKI hKI aHj @@ -87444,31 +79268,31 @@ rMP fxY hKI hKI -iJf -hlK +srf +qmq hKI hjW hjW fxY hjW hKI -tRa -mDs -sEi +hbI +fAf +fEb xeO smv xDw bQM bQM xDw -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN +grE +grE +grE +grE +grE +grE +grE +grE xDw kPz kPz @@ -87478,22 +79302,22 @@ kPz kPz kPz bzO -tnH -nVq -lXf -nLl -nLl -nLl -nLl -nLl -nLl -nLl -nLl -nLl -snO -oYM +odz +tFR +sHD +rCD +rCD +rCD +rCD +rCD +rCD +rCD +rCD +rCD +pSR +cfg lAS -htL +qUI rzt kPz rzt @@ -87624,23 +79448,23 @@ cAW cAW xDw xDw -jyK -dlW -hBn +bSQ +hSs +yfr hKI hKI hKI hKI lmM -mcN -mcN -mcN -rBR -mcN -mcN -crw -mcN -iJf +ePo +ePo +ePo +rom +ePo +ePo +jQy +ePo +srf hKI hKI hKI @@ -87656,27 +79480,27 @@ hKI qcK hKI hKI -iJf -hlK +srf +qmq hKI hKI hKI hKI hKI hKI -iJf +srf hKI -qHC -nsC +xyn +aOf hKI lRT xDw xDw lRT -aIh -hsA -hsA -hsA +vUJ +sVk +sVk +sVk lRT fjd lRT @@ -87690,20 +79514,20 @@ bQM bQM kPz bzO -oYM -nVq -rev -oYM -oYM -oYM -oYM -oYM -oYM -oYM -oYM -oYM -oYM -oYM +cfg +tFR +wnm +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg +cfg lAS mxQ bzO @@ -87844,48 +79668,48 @@ xDw lRT lRT lRT -ukR -ukR -ukR -ukR +taY +taY +taY +taY lRT lRT lRT lRT -dhV -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -ltV -qHC -hlK +bPL +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +hKo +xyn +qmq xeO -qDY -cfN -cfN -cfN -cfN +nhs +grE +grE +grE +grE hKI hKI hKI @@ -87902,10 +79726,10 @@ bQM bQM bQM bzO -oYM -nVq -rev -oYM +cfg +tFR +wnm +cfg lAS lAS kLQ @@ -87916,7 +79740,7 @@ lAS lAS lAS lAS -guQ +gUp vDO tUs tUs @@ -88061,37 +79885,37 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf hKI -hsA -wFk -nGk -uhH -uol -wFk -nGk -uhH -uol -wFk -nGk -uhH -uol -wFk -nGk -uhH -uol -wFk -nGk -uhH -uol -wFk -hsA -hlK -dlW -uxY +sVk +bXK +tHj +poX +pTe +bXK +tHj +poX +pTe +bXK +tHj +poX +pTe +bXK +tHj +poX +pTe +bXK +tHj +poX +pTe +bXK +sVk +qmq +hSs +sXV hKI vQr hKI @@ -88114,10 +79938,10 @@ kPz kPz kPz bzO -oYM -nVq -rev -dMm +cfg +tFR +wnm +oFq lAS lAS lAS @@ -88273,14 +80097,14 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf hKI -owG +ajU iOa -xeO +cCx xeO xeO xeO @@ -88298,21 +80122,21 @@ xeO xeO xeO xeO -xeO +cCx iOa -nBR -hlK +gNO +qmq hKI hKI hKI -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN +grE +grE +grE +grE +grE +grE +grE +grE lRT xeO lRT @@ -88326,17 +80150,17 @@ bQM bQM bQM bzO -tnH -nVq -rev -oYM -kfA -kfA -kfA -kfA -aMz -kfA -kfA +odz +tFR +wnm +cfg +neW +neW +neW +neW +moE +neW +neW bzO rzt rzt @@ -88485,15 +80309,15 @@ hbC hbC hbC hbC -ssD +wWo iSi -ssD -tPi +wWo +rqV viV -wJf +gdr +xeO xeO xeO -cCx xeO xeO xeO @@ -88509,11 +80333,11 @@ xeO xeO xeO xeO -cCx xeO xeO -sLo -hlK +xeO +eJK +qmq hKI iWW hQh @@ -88522,8 +80346,8 @@ hQh hQh hQh hQh -qHC -qHC +xyn +xyn lRT lRT fjd @@ -88697,12 +80521,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -jCp +iXM xeO xeO xeO @@ -88724,8 +80548,8 @@ xeO xeO xeO xeO -pAN -hlK +whq +qmq hjW iWW xeO @@ -88734,12 +80558,12 @@ uKx uKx xew vem -eXr -eXr +dnC +dnC yls -ssD +wWo yls -ssD +wWo iSi hbC iSi @@ -88748,14 +80572,14 @@ hbC hbC hbC hbC -ssD +wWo kqe -eML -lNg -lNg -npz +kfJ +laN +laN +ojz ahR -vrN +vMM dUZ dUZ dUZ @@ -88909,12 +80733,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -hHh +svD xeO xeO xeO @@ -88936,8 +80760,8 @@ xeO xeO xeO xeO -aVK -hlK +qZo +qmq hjW iWW xeO @@ -88949,9 +80773,9 @@ xeO hjW hjW xeO -vzB +qJo xeO -vzB +qJo kPz bQM kPz @@ -88960,14 +80784,14 @@ bQM bQM bQM bQM -vzB +qJo ojK qQl qQl rGt qQl ojK -vzB +qJo cAW cAW bce @@ -89121,12 +80945,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -owG +ajU xeO xeO xeO @@ -89148,8 +80972,8 @@ xeO xeO xeO mUA -nBR -hlK +gNO +qmq hjW iWW xeO @@ -89158,12 +80982,12 @@ lIv lIv xFP sov -eXr -eXr +dnC +dnC yls -ssD +wWo yls -ssD +wWo iSi hbC iSi @@ -89172,14 +80996,14 @@ hbC hbC hbC hbC -ssD +wWo hPW -lNg -lNg -lNg -lNg +laN +laN +laN +laN hPW -vrN +vMM dUZ dUZ dUZ @@ -89333,12 +81157,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -wJf +gdr xeO xeO xeO @@ -89349,7 +81173,7 @@ xeO xeO xeO xeO -dYp +rIi xeO xeO xeO @@ -89360,8 +81184,8 @@ xeO xeO xeO xeO -sLo -hlK +eJK +qmq hKI iWW xeO @@ -89545,12 +81369,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -jCp +iXM xeO xeO xeO @@ -89572,8 +81396,8 @@ xeO xeO xeO xeO -pAN -hlK +whq +qmq hjW iWW xeO @@ -89582,12 +81406,12 @@ uKx uKx xew vem -eXr -eXr +dnC +dnC yls -ssD +wWo yls -ssD +wWo iSi hbC xDq @@ -89596,14 +81420,14 @@ naf cqz bFj hbC -ssD +wWo hPW -lNg -lNg -lNg -lNg +laN +laN +laN +laN hPW -vrN +vMM dUZ dUZ dUZ @@ -89757,12 +81581,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -hHh +svD xeO xeO xeO @@ -89784,8 +81608,8 @@ xeO xeO xeO xeO -aVK -hlK +qZo +qmq hjW iWW xeO @@ -89797,9 +81621,9 @@ xeO hjW hjW xeO -vzB +qJo xeO -vzB +qJo kPz bQM xme @@ -89808,14 +81632,14 @@ kEy sDL bQM bQM -vzB +qJo pXH qQl rGt qQl qQl ojK -vzB +qJo cAW cAW bce @@ -89969,12 +81793,12 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf bYS -owG +ajU xeO xeO xeO @@ -89996,8 +81820,8 @@ xeO xeO xeO xeO -rPu -hlK +uSu +qmq hjW iWW xeO @@ -90006,12 +81830,12 @@ lIv lIv xFP sov -eXr -eXr +dnC +dnC yls -ssD +wWo yls -ssD +wWo iSi hbC iBP @@ -90020,14 +81844,14 @@ vcf lku bOz hbC -ssD +wWo hPW -lNg -lNg -lNg -lNg +laN +laN +laN +laN hPW -vrN +vMM dUZ dUZ dUZ @@ -90181,15 +82005,14 @@ hbC hbC hbC hbC -ssD +wWo iSi -ssD -tPi +wWo +rqV oSK -wJf +gdr doA xeO -cCx xeO xeO xeO @@ -90205,11 +82028,12 @@ xeO xeO xeO xeO -cCx xeO xeO -lGh -hlK +xeO +xeO +kcF +qmq hKI iWW giX @@ -90218,8 +82042,8 @@ giX giX giX giX -qHC -qHC +xyn +xyn scM scM xkv @@ -90393,14 +82217,14 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf hKI -jCp +iXM iOa -xeO +cCx xeO xeO xeO @@ -90418,10 +82242,10 @@ xeO xeO xeO xeO -xeO +cCx iOa -pAN -hlK +whq +qmq hKI hKI qyc @@ -90433,18 +82257,18 @@ hKI hKI hKI lnK -jUK -qVt -jUK +fdQ +bnP +fdQ scM xdE xdE xdE xdE scM -mli -qVt -atm +wWq +bnP +tJt lnK jeh bnK @@ -90452,7 +82276,7 @@ bnK qjC lnK jGd -ctz +sJe voa scM scM @@ -90605,37 +82429,37 @@ bQM bQM bQM bQM -vzB +qJo gws -vzB -iJf +qJo +srf hKI -hsA -tZV -lYA -wfp -xjw -tZV -lYA -wfp -xjw -tZV -lYA -wfp -xjw -tZV -lYA -wfp -xjw -tZV -lYA -wfp -xjw -tZV -hsA -hlK -sEi -ltV +sVk +rtF +tWG +mwr +evJ +rtF +tWG +mwr +evJ +rtF +tWG +mwr +evJ +rtF +tWG +mwr +evJ +rtF +tWG +mwr +evJ +rtF +sVk +qmq +fEb +hKo hKI hKI kdR @@ -90645,28 +82469,28 @@ hjW hjW hKI vfR -ydX -hDL +tmF +mop qQl -jTk -kmB -kmB -kmB -hiu -kmB +pgc +rbg +rbg +rbg +mIV +rbg iXL -ydX -hDL -bbT +tmF +mop +gNb iXL qQl qQl iXL -jTk +pgc sbj jGj uqp -jTk +pgc xdE cAW cAW @@ -90820,64 +82644,64 @@ bQM lRT lRT lRT -utV -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -otB -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -uxY -qHC -hlK -sEi -sEi -sEi -sEi -sEi -sEi -sEi -sEi -fXe -inh -ydX -hDL +rBn +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +oWi +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +sXV +xyn +qmq +fEb +fEb +fEb +fEb +fEb +fEb +fEb +fEb +mGs +cTl +tmF +mop iXL -ydX -ydX -bUH -bUH -bUH -ydX -hDL -pGi -jTk +tmF +tmF +uhZ +uhZ +uhZ +tmF +mop +dvM +pgc qQl -ydX -vlT +tmF +wjF qQl -jTk -ydX -bUH -jlW +pgc +tmF +uhZ +uCM iXL xdE bce @@ -91056,40 +82880,40 @@ hKI hKI hKI hKI -iJf -qHC -qHC -hlK -dlW -dlW -dlW -dlW -dlW -dlW -dlW -dlW -bHl -inh -gFq -nes +srf +xyn +xyn +qmq +hSs +hSs +hSs +hSs +hSs +hSs +hSs +hSs +tMk +cTl +jVI +vzN iXL -gFq -gFq -pEw -pEw -pEw -gFq -nes -pGi -jTk +jVI +jVI +dQv +dQv +dQv +jVI +vzN +dvM +pgc qQl -gFq -nes +jVI +vzN qQl -jTk -gFq -pEw -nes +pgc +jVI +dQv +vzN iXL xdE cAW @@ -91268,10 +83092,10 @@ iUO iUO iUO jmO -jyK -dlW -dlW -uxY +bSQ +hSs +hSs +sXV hKI hKI hjW @@ -91281,28 +83105,28 @@ hjW hjW hKI nhd -gFq -nes +jVI +vzN qQl -jTk -tBy -tBy -tBy -tBy -tBy +pgc +rmP +rmP +rmP +rmP +rmP rOa -gFq -nes -jTk +jVI +vzN +pgc iXL qQl qQl iXL -jTk +pgc sbj jGj uqp -jTk +pgc xdE cAW cAW @@ -91479,7 +83303,7 @@ xeO cXm uXm xeO -cvr +wUr hKI hKI lmM @@ -91493,9 +83317,9 @@ hKI hKI qDD lnK -iVb -dIK -iJM +aeU +lvm +mmG scM xdE xdE @@ -91503,13 +83327,13 @@ xdE xdE scM scM -jUK -jUK -jTk -jTk -jTk -jTk -jTk +fdQ +fdQ +pgc +pgc +pgc +pgc +pgc lnK jGd iXL @@ -91717,11 +83541,11 @@ bQM scM sws dBR -mss -tBy -tBy -tBy -gaL +qux +rmP +rmP +rmP +lSt scM scM scM @@ -91927,8 +83751,8 @@ pcu iWq bQM scM -laP -laP +hZF +hZF scM xdE xdE @@ -92556,16 +84380,16 @@ bQM bQM bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -92768,16 +84592,16 @@ bQM bQM bQM bTo -afk -afk -afk +tle +tle +tle pcu -afk -afk +tle +tle pcu -afk -afk -afk +tle +tle +tle iWq bQM bQM @@ -92980,16 +84804,16 @@ bQM bQM bQM bTo -afk -afk -afk +tle +tle +tle hkh -afk -afk +tle +tle hkh -afk -afk -afk +tle +tle +tle iWq bQM bQM diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm index 059bead7a6..0ed186bad9 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/10.scavshipholder.dmm @@ -1,4 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aB" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "aE" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -12,10 +18,9 @@ icon_state = "stan20" }, /area/template_noop) -"aW" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"bb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, /area/template_noop) "bh" = ( /turf/closed/wall/strata_ice/jungle{ @@ -29,53 +34,16 @@ }, /turf/open/floor/almayer, /area/template_noop) -"bC" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) -"eF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) -"fE" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"cP" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 }, -/area/template_noop) -"fI" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; pixel_y = 10 }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 8; - pixel_x = -9 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = -3; - pixel_x = -9 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = -3; - pixel_x = 7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 7; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "fN" = ( /obj/structure/largecrate/random/barrel{ @@ -92,35 +60,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/template_noop) -"ga" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "gi" = ( /obj/structure/girder/displaced, /turf/open/floor/plating/prison, /area/template_noop) -"hP" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"gw" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, /area/template_noop) -"iT" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 +"hh" = ( +/turf/open/floor/almayer/plate, +/area/template_noop) +"iv" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/obj/item/tool/pen/blue{ - pixel_x = -15; - pixel_y = 2 +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer{ + pixel_y = -9 }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"iJ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, /area/template_noop) "iU" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -131,36 +101,9 @@ opacity = 0 }, /area/template_noop) -"kA" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) -"kO" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) -"kR" = ( -/obj/structure/machinery/light/small{ - dir = 4; - pixel_x = 11; - pixel_y = 10 - }, -/obj/structure/sign/poster/safety{ - pixel_y = 29; - pixel_x = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"ks" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, /area/template_noop) "lI" = ( /obj/structure/largecrate/random/barrel{ @@ -207,12 +150,16 @@ }, /turf/open/floor/almayer, /area/template_noop) +"np" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/template_noop) "nF" = ( /turf/closed/shuttle/ert, /area/template_noop) -"nV" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer, +"nO" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/floor/almayer/plate, /area/template_noop) "oh" = ( /turf/open/floor/plating/prison, @@ -244,17 +191,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/template_noop) -"qn" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "qI" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" }, /area/template_noop) +"rg" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 8; + pixel_x = -9 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -3; + pixel_x = -9 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = -3; + pixel_x = 7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 7; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "rv" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -266,23 +235,6 @@ }, /turf/open/floor/almayer, /area/template_noop) -"rK" = ( -/obj/structure/largecrate/random/barrel{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 12; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "tp" = ( /turf/open/floor/almayer, /area/template_noop) @@ -297,11 +249,31 @@ }, /turf/open/floor/almayer, /area/template_noop) -"vI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "plate" +"ut" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/template_noop) +"va" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) +"vf" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"vH" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/sentry{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/item/ammo_magazine/sentry{ + pixel_x = 6; + pixel_y = 3 }, +/turf/open/floor/almayer, /area/template_noop) "wO" = ( /turf/closed/shuttle/ert{ @@ -330,28 +302,43 @@ }, /turf/open/floor/almayer, /area/template_noop) +"ys" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "yv" = ( /obj/structure/sign/poster{ pixel_y = 30 }, /turf/open/floor/almayer, /area/template_noop) +"Bm" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/almayer/plate, +/area/template_noop) "BC" = ( /turf/closed/shuttle/ert{ icon_state = "stan9" }, /area/template_noop) -"Cc" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/sentry{ - pixel_x = -11; - pixel_y = 3 +"BV" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_x = 11; + pixel_y = 10 }, -/obj/item/ammo_magazine/sentry{ - pixel_x = 6; - pixel_y = 3 +/obj/structure/sign/poster/safety{ + pixel_y = 29; + pixel_x = 5 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/template_noop) "CG" = ( /obj/structure/sign/poster/clf{ @@ -371,46 +358,12 @@ icon_state = "stan27" }, /area/template_noop) -"EF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/template_noop) "EW" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/template_noop) -"Fd" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) -"FV" = ( -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/template_noop) -"Gu" = ( -/obj/structure/prop/structure_lattice{ - dir = 4 - }, -/obj/structure/prop/structure_lattice{ - dir = 4; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) "Hb" = ( /obj/structure/machinery/light/small{ dir = 8; @@ -433,6 +386,16 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) +"IC" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "Jg" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" @@ -451,44 +414,10 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) -"JE" = ( -/obj/structure/flora/bush/ausbushes/ausbush{ - desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; - icon_state = "fullgrass_2"; - name = "Fiberbush(tm) tubers" - }, -/turf/open/organic/grass{ - desc = "It'll get in your shoes no matter what you do."; - name = "astroturf" - }, -/area/template_noop) -"JP" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "Ki" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk, /area/template_noop) -"Ks" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "Ky" = ( /obj/structure/bed, /obj/item/bedsheet/blue, @@ -509,6 +438,21 @@ "Ld" = ( /turf/open/space, /area/template_noop) +"Lp" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = 12; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "Lz" = ( /obj/structure/prop/invuln/fire{ pixel_y = -15 @@ -522,6 +466,10 @@ icon_state = "stan23" }, /area/template_noop) +"Ne" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/floor_plate, +/area/template_noop) "Nm" = ( /obj/structure/prop/invuln/fire{ pixel_y = -15 @@ -533,25 +481,6 @@ "NV" = ( /turf/closed/wall/mineral/bone_resin, /area/template_noop) -"Ok" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer{ - pixel_y = -9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "ON" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" @@ -568,10 +497,20 @@ /obj/structure/barricade/metal/wired, /turf/open/floor/plating/plating_catwalk, /area/template_noop) -"QZ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"Pt" = ( +/obj/structure/flora/bush/ausbushes/ausbush{ + desc = "Fiberbush(tm) infestations have been the leading cause in asbestos related deaths in spacecraft for 3 years in a row now."; + icon_state = "fullgrass_2"; + name = "Fiberbush(tm) tubers" }, +/turf/open/organic/grass/astroturf, +/area/template_noop) +"Rr" = ( +/turf/open/organic/grass/astroturf, +/area/template_noop) +"RR" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/almayer/plating/northeast, /area/template_noop) "Sh" = ( /obj/structure/machinery/light/small{ @@ -590,13 +529,6 @@ }, /turf/open/floor/almayer, /area/template_noop) -"TS" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/template_noop) "Uh" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" @@ -612,25 +544,21 @@ icon_state = "stan_inner_t_right" }, /area/template_noop) -"Vg" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/template_noop) "Vh" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"VB" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4 +"Vs" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 7 }, +/turf/open/floor/almayer/plate, /area/template_noop) "VD" = ( /obj/structure/bed, @@ -641,6 +569,12 @@ }, /turf/open/floor/almayer, /area/template_noop) +"VR" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/template_noop) "VW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer{ @@ -689,6 +623,12 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/prison, /area/template_noop) +"XK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/organic/grass/astroturf, +/area/template_noop) "Yj" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" @@ -703,6 +643,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/template_noop) +"ZH" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer, +/area/template_noop) (1,1,1) = {" NV @@ -738,10 +682,10 @@ tD Ld DS aE -Cc +vH ON -rK -fI +Lp +rg KG Ld Ld @@ -762,7 +706,7 @@ Ld DS Ki tp -JP +VR fN lI UQ @@ -784,7 +728,7 @@ nF Yj qI oH -bC +ut xS UJ UJ @@ -802,18 +746,18 @@ NV NV aN qI -Ok -eF +iv +bb ON -kO -QZ +Bm +hh tp ON -qn -Ks +np +Vs ON -ga -Fd +ys +iJ Ia wO EW @@ -824,19 +768,19 @@ NV NV aN qI -kA +nO pw oH ON yv oH -QZ +hh KC oH oH KC oH -QZ +hh BC Wt Wd @@ -851,15 +795,15 @@ oH tp tp ON -QZ +hh xW -nV +ZH ON VD Ky ON tp -QZ +hh KG NV NV @@ -872,17 +816,17 @@ rv tZ oH oH -QZ +hh ON YV mz -QZ +hh xS UJ UJ qI CG -VB +va KG NV NV @@ -893,19 +837,19 @@ WN xR Nm bw -QZ +hh tp tp KC -Vg +aB ST OP -JP +VR tp tp Hb Jv -Vg +aB KG NV NV @@ -916,13 +860,13 @@ NV NV WN LG -kR +BV oH oH ON -iT +IC pV -Vg +aB ON Sh oH @@ -940,18 +884,18 @@ NV NV WN LG -vI +gw BC HH -TS +RR xR -TS +RR HH LG -QZ -Vg -Vg -QZ +hh +aB +aB +hh BC Wt Wd @@ -965,15 +909,15 @@ NV WN xR Uh -hP +Ne iU -aW +vf iU -hP +Ne WN xR -TS -TS +RR +RR xR Uh NV @@ -987,34 +931,34 @@ NV NV NV NV -Gu -hP +cP +Ne JA -aW +vf iU -hP -Gu +Ne +cP oh oh oh oh -Gu +cP NV NV NV "} (14,1,1) = {" -JE +Pt NV -FV -EF -FV -aW -aW +Rr +XK +Rr +vf +vf Iu -fE +ks Vh -fE +ks Iu Xm oh diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm index 826f673647..4013f26054 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.birthdayparty.dmm @@ -1,27 +1,21 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "b" = ( /obj/item/reagent_container/food/drinks/bottle/gin{ pixel_y = -6; pixel_x = -9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "e" = ( /obj/effect/landmark/corpsespawner/prison_security, /obj/item/clothing/head/cakehat{ pixel_x = -10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "h" = ( /obj/structure/surface/table/woodentable/poor, @@ -33,17 +27,13 @@ pixel_x = -1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "i" = ( /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "o" = ( /obj/structure/machinery/light/double/blue{ @@ -53,18 +43,14 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "s" = ( /obj/item/weapon/broken_bottle{ pixel_x = 5; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "u" = ( /turf/closed/wall/prison, @@ -76,23 +62,17 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "B" = ( /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "E" = ( /obj/structure/surface/table/woodentable/poor, @@ -100,9 +80,7 @@ pixel_y = 14; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "G" = ( /obj/structure/surface/table/woodentable/poor, @@ -114,15 +92,11 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "H" = ( /obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "K" = ( /obj/structure/prop/souto_land/pole{ @@ -130,9 +104,7 @@ pixel_x = 10; pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "L" = ( /obj/structure/surface/table/woodentable/poor, @@ -144,25 +116,19 @@ pixel_y = 2; pixel_x = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "N" = ( /obj/item/stack/sheet/wood{ amount = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "P" = ( /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "U" = ( /obj/structure/prop/souto_land/pole{ @@ -177,9 +143,7 @@ pixel_x = 8; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Y" = ( /obj/structure/machinery/light/double/blue{ @@ -188,17 +152,13 @@ /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Z" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm index 0f952b6fde..c0f7439ed3 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.nogear.dmm @@ -14,9 +14,7 @@ req_access = null }, /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "e" = ( /turf/closed/wall/prison, @@ -24,7 +22,6 @@ "i" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - req_access = null; req_one_access = null }, /turf/open/floor/plating/prison, @@ -36,9 +33,7 @@ /obj/item/clothing/shoes/galoshes{ pixel_y = -6 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "l" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -47,9 +42,7 @@ /obj/item/clothing/shoes/dress/commander{ pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "m" = ( /obj/structure/closet/secure_closet/security_empty, @@ -57,26 +50,18 @@ dir = 8 }, /obj/item/storage/box/flashbangs, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "n" = ( /obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "r" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "s" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, +/obj/structure/machinery/power/apc/power/east, /turf/open/floor/prison, /area/template_noop) "t" = ( @@ -89,9 +74,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "v" = ( /obj/item/clothing/under/color/orange, @@ -102,18 +85,14 @@ dir = 1 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "x" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/template_noop) "y" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "z" = ( /obj/item/clothing/shoes/black{ @@ -128,9 +107,7 @@ pixel_x = -7; pixel_y = -15 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( /obj/structure/machinery/light/double/blue{ @@ -153,18 +130,14 @@ "F" = ( /obj/item/prop/helmetgarb/riot_shield, /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "I" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = null }, /obj/effect/spawner/random/gun/pistol/lowchance, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "J" = ( /obj/structure/window/reinforced{ @@ -174,9 +147,7 @@ /area/template_noop) "K" = ( /obj/item/clothing/under/color/orange, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "L" = ( /obj/structure/window/framed/prison/reinforced, @@ -196,9 +167,7 @@ /area/template_noop) "U" = ( /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "V" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -211,15 +180,11 @@ pixel_x = 2; pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "X" = ( /obj/item/frame/rack, -/turf/open/floor/prison{ - icon_state = "redfull" - }, +/turf/open/floor/prison/redfull, /area/template_noop) "Z" = ( /obj/effect/landmark/corpsespawner/ua_riot, diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm index eb34c85224..d78534bd97 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/15.wardenofficedecorated.dmm @@ -53,6 +53,14 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/template_noop) +"z" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood, +/area/template_noop) "A" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, @@ -60,6 +68,15 @@ "E" = ( /turf/open/floor/wood, /area/template_noop) +"I" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/gun/pistol/highpower/automag/tactical, +/turf/open/floor/plating, +/area/template_noop) "K" = ( /obj/structure/bed/chair{ dir = 1 @@ -87,16 +104,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/template_noop) -"S" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/wood, -/area/template_noop) "T" = ( /obj/effect/landmark/corpsespawner/prison_security, /obj/item/clothing/head/helmet/warden{ @@ -106,15 +113,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/template_noop) -"U" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/gun/pistol/highpower/automag/tactical, -/turf/open/floor/plating, -/area/template_noop) "W" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -140,7 +138,7 @@ L (2,1,1) = {" a a -S +z E E x @@ -194,7 +192,7 @@ x (8,1,1) = {" a a -U +I e t x diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm index 7ce5cfc3f3..5a519e1529 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.gamertime.dmm @@ -1,17 +1,22 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ah" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/template_noop) "aA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/prison, /area/template_noop) +"aU" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"bh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) "da" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) @@ -22,10 +27,21 @@ }, /turf/open/floor/prison, /area/template_noop) -"fi" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" +"dM" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"ew" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"gd" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "gB" = ( /obj/structure/surface/table/reinforced/prison, @@ -40,233 +56,152 @@ }, /turf/open/floor/prison, /area/template_noop) -"hT" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +"hy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"hI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + icon_state = "commb"; + layer = 4 }, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_y = 10 + }, +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) -"jh" = ( -/obj/item/trash/pistachios, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ic" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"jx" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"ji" = ( +"jF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 4; icon_state = "commb" }, -/obj/item/holder/mouse{ - pixel_x = 4; - pixel_y = 18; - desc = "Wait, why won't it work with my computer?" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurple2/southeast, +/area/template_noop) +"kx" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) "kU" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/plating/prison, /area/template_noop) -"lm" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"mN" = ( -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) "na" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/prison, /area/template_noop) -"np" = ( +"nr" = ( +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"nD" = ( +/obj/item/trash/chunk, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"nV" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/template_noop) +"oy" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb"; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/northwest, /area/template_noop) -"nZ" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"pf" = ( +/turf/open/floor/prison/floor_marked/west, /area/template_noop) -"pq" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison{ +"pl" = ( +/obj/structure/machinery/light/double/blue{ dir = 8; - icon_state = "floor_marked" - }, -/area/template_noop) -"sl" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" + pixel_x = -10; + pixel_y = 13 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"sF" = ( +"pF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ - dir = 8; + dir = 4; icon_state = "commb" }, -/obj/item/device/encryptionkey/WY{ +/obj/item/holder/mouse{ pixel_x = 4; - pixel_y = -8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/template_noop) -"tg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + pixel_y = 18; + desc = "Wait, why won't it work with my computer?" }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"tn" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +"qt" = ( +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) -"tH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +"qE" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkpurple2/southwest, /area/template_noop) -"uf" = ( +"rk" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" + dir = 8 }, +/turf/open/floor/prison/darkpurple2/northeast, /area/template_noop) -"ur" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"sV" = ( +/obj/structure/computer3frame, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"uD" = ( -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"uj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) -"uO" = ( -/obj/item/stock_parts/manipulator/pico, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +"vn" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/darkpurple2/west, /area/template_noop) -"va" = ( +"xP" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2/east, /area/template_noop) -"wj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, +"yx" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"xH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"yO" = ( +/obj/item/stock_parts/manipulator/pico, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "yS" = ( /turf/closed/wall/prison, /area/template_noop) -"zv" = ( +"Cu" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"zL" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) -"CE" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/template_noop) -"CO" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/template_noop) -"CV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4 }, -/area/template_noop) -"DF" = ( -/obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/floor_marked/west, /area/template_noop) -"DV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"Dd" = ( +/turf/open/floor/prison/darkpurple2/north, /area/template_noop) "El" = ( /obj/structure/bed/chair{ @@ -274,32 +209,21 @@ }, /turf/open/floor/prison, /area/template_noop) -"Ep" = ( -/obj/structure/machinery/door/airlock/prison_hatch/autoname, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) "Fp" = ( /turf/open/floor/prison, /area/template_noop) -"Ft" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"HL" = ( +/turf/open/floor/prison/darkpurple2/northeast, /area/template_noop) -"Jv" = ( -/obj/item/trash/chunk, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +"Ij" = ( +/obj/item/trash/pistachios, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Kd" = ( +"Jf" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkpurple2, +/area/template_noop) +"Ka" = ( /obj/structure/prop/structure_lattice{ dir = 4; health = 300 @@ -309,56 +233,75 @@ layer = 3.1; pixel_y = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"Mn" = ( -/obj/structure/machinery/light/double/blue{ +"Kt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 8; - pixel_x = -10; - pixel_y = 13 + icon_state = "commb" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/device/encryptionkey/WY{ + pixel_x = 4; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_marked/west, +/area/template_noop) +"Li" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"MZ" = ( +"Lx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/chips, +/turf/open/floor/prison/darkpurple2/northeast, +/area/template_noop) +"LH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ dir = 8; icon_state = "commb"; - layer = 2.99 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" + layer = 4 }, -/area/template_noop) -"Ng" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 8; + pixel_y = 16 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Ot" = ( +"LI" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ - dir = 4; + dir = 8; icon_state = "commb" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"MN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Oy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/chips, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" +"Nd" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"NA" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"OC" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "OG" = ( /turf/closed/wall/mineral/bone_resin, @@ -369,6 +312,16 @@ }, /turf/open/floor/prison, /area/template_noop) +"OT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Pw" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) "Qw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -381,86 +334,39 @@ }, /turf/open/floor/prison, /area/template_noop) -"QB" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"RC" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkpurple2/southeast, /area/template_noop) -"QF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"RW" = ( +/turf/open/floor/bluegrid, /area/template_noop) -"QG" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, +"RX" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/template_noop) +"Sk" = ( +/turf/open/floor/prison/floor_plate, /area/template_noop) -"Rd" = ( +"Tb" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"RW" = ( -/turf/open/floor/bluegrid, +"TR" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Ss" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" - }, +"UK" = ( +/turf/open/floor/prison/darkpurple2/northwest, /area/template_noop) -"SF" = ( +"Vu" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb"; - layer = 4 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Tl" = ( -/obj/structure/computer3frame, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"TI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Vc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 4; + icon_state = "commb" }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "VZ" = ( /obj/structure/surface/table/reinforced/prison, @@ -474,34 +380,18 @@ }, /turf/open/floor/prison, /area/template_noop) -"Wu" = ( +"Wa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/communications{ - dir = 4; - icon_state = "commb" - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/template_noop) -"WV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" + dir = 8; + icon_state = "commb"; + layer = 2.99 }, +/turf/open/floor/prison/darkpurple2/southwest, /area/template_noop) -"XD" = ( +"Xb" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/template_noop) -"Yj" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurple2, /area/template_noop) "Za" = ( /obj/structure/surface/table/reinforced/prison, @@ -510,36 +400,17 @@ }, /turf/open/floor/prison, /area/template_noop) -"Zj" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Zn" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/template_noop) (1,1,1) = {" da yS yS yS -Kd +Ka kU -nZ +NA kU -Kd +Ka yS yS yS @@ -547,148 +418,148 @@ yS "} (2,1,1) = {" yS -mN -lm -jh -lm -lm -lm -lm -zL -zL -Mn -ur -QF +Nd +Pw +Ij +Pw +Pw +Pw +Pw +Sk +Sk +pl +hy +ic "} (3,1,1) = {" yS -Vc +MN Fp -lm -va -Ft +Pw +xP +OT El -xH -uf -tn -lm -tn -pq +Li +Cu +pf +Pw +pf +ew "} (4,1,1) = {" yS -Tl -lm -wj +sV +Pw +oy VZ -MZ -SF -CV -sF -Jv -lm -tn -tn +Wa +LH +LI +Kt +nD +Pw +pf +pf "} (5,1,1) = {" yS -lm -fi +Pw +nr Za RW RW RW RW RW -WV -lm -WV -Zn +qt +Pw +qt +uj "} (6,1,1) = {" yS -tg -Yj +TR +Jf Qw RW RW RW RW RW -Ss +nV Fp -CO -CE +UK +qE "} (7,1,1) = {" kU -lm -DF +Pw +aU dv RW RW RW RW RW -fi +nr Fp -tH -XD +Dd +Xb "} (8,1,1) = {" -Kd -lm -uO +Ka +Pw +yO na RW RW RW RW RW -fi +nr aA -tH -XD +Dd +Xb "} (9,1,1) = {" -Kd -lm -lm -Oy +Ka +Pw +Pw +Lx gB -Wu -ji -Ot -np -fi +jF +pF +Vu +hI +nr Fp -hT -XD +kx +Xb "} (10,1,1) = {" yS -QB +gd Fp -lm -Rd -TI +Pw +vn +Tb OH -zv -ah -sl +bh +rk +RX OG -QG -Ng +HL +RC "} (11,1,1) = {" yS -Zj -tg -lm -lm -DV -lm -uD +jx +TR +Pw +Pw +OC +Pw +yx OG OG OG @@ -698,9 +569,9 @@ OG (12,1,1) = {" da da -Ep -Ep -Ep +dM +dM +dM yS da OG diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm index 368d8e5faa..b4f721a7e6 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm @@ -1,51 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aG" = ( -/obj/structure/bed/chair{ - layer = 2.7; - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/template_noop) -"aZ" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip{ - pixel_y = 19 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"bl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +"af" = ( +/turf/open/floor/prison/whitegreen/northeast, /area/template_noop) -"bm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"at" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/prison/whitegreen, /area/template_noop) -"bs" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"aL" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "bv" = ( /obj/structure/stairs/perspective{ @@ -57,196 +20,141 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"bN" = ( +"bH" = ( /obj/structure/bed/chair{ dir = 4; pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"cO" = ( -/obj/structure/machinery/door/airlock/almayer/marine{ - icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi'; - icon_state = "door_open" +"bI" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating/prison, -/area/template_noop) -"dg" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"dp" = ( -/turf/open/floor/prison{ +"bZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ dir = 4; - icon_state = "whitegreen" + layer = 2.8 }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"dK" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" +"cl" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen, /area/template_noop) -"eb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1; - req_access = null; - req_one_access = null +"cO" = ( +/obj/structure/machinery/door/airlock/almayer/marine{ + icon = 'icons/obj/structures/doors/prepdoor_charlie.dmi'; + icon_state = "door_open" }, /turf/open/floor/plating/prison, /area/template_noop) -"eO" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/template_noop) -"fn" = ( +"ds" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, -/area/template_noop) -"go" = ( -/obj/structure/sign/prop3{ - desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." - }, -/turf/closed/wall/r_wall/prison_unmeltable, +/turf/open/floor/prison/whitegreencorner, /area/template_noop) -"gC" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"dG" = ( +/obj/structure/platform{ + dir = 1; + layer = 2.8 }, -/area/template_noop) -"ir" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/largecrate/random/barrel{ + pixel_x = -8; + layer = 2.9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +/obj/structure/largecrate/random/barrel{ + pixel_x = 13; + layer = 2.9 }, -/area/template_noop) -"it" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitegreen" +/obj/structure/largecrate/random/barrel{ + pixel_x = 3; + layer = 2.9; + pixel_y = -8 }, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"iK" = ( -/obj/structure/janitorialcart, -/turf/open/floor/prison, -/area/template_noop) -"jy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +"eP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"kE" = ( -/turf/closed/wall/prison, +"fz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"kG" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"fN" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) -"kK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"go" = ( +/obj/structure/sign/prop3{ + desc = "Enlist in the Penal Battalions today! The USCM 3rd Fleet features a subset of UA sanctioned penal battalions, drawing from inmate popualtions across the colonies. Mostly New Argentina though." }, +/turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"kY" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"gA" = ( +/turf/open/floor/prison/whitegreen/west, /area/template_noop) -"kZ" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"hp" = ( +/obj/structure/largecrate/random/case/double{ + pixel_y = 8 }, -/area/template_noop) -"lm" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" +/obj/structure/largecrate/random/case/double{ + pixel_y = -4 }, -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/largecrate/random/case/double{ + pixel_y = -18 }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"nj" = ( -/obj/structure/bed/chair/janicart, -/turf/open/floor/prison, -/area/template_noop) -"no" = ( +"iD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 +/obj/item/book/manual/surgery{ + pixel_y = 4 }, -/turf/open/floor/plating/prison, +/obj/item/storage/surgical_tray, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"nx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +"iG" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreencorner/east, /area/template_noop) -"nJ" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"iK" = ( +/obj/structure/janitorialcart, +/turf/open/floor/prison, /area/template_noop) -"nR" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ +"iR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - icon_state = "whitegreen" + req_one_access = null }, +/turf/open/floor/plating/prison, /area/template_noop) -"nX" = ( +"jc" = ( /obj/structure/bed/roller, /obj/structure/machinery/iv_drip{ pixel_y = 19 }, /obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"ju" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitegreen, /area/template_noop) -"of" = ( +"jw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ dir = 4; @@ -257,125 +165,111 @@ pixel_y = 6; layer = 3.1 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/southeast, +/area/template_noop) +"kE" = ( +/turf/closed/wall/prison, /area/template_noop) -"oy" = ( +"la" = ( /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = -3 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/template_noop) -"ph" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/template_noop) -"pR" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" + pixel_y = 13 }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) -"qb" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +"lf" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreencorner, /area/template_noop) -"qe" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +"lA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"qS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"lH" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"sk" = ( +"mU" = ( /obj/structure/bed/roller, /obj/structure/machinery/iv_drip{ pixel_y = 19 }, /obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"tE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"mV" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/whitegreencorner/west, +/area/template_noop) +"na" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, +/obj/structure/inflatable, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"nj" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/prison, /area/template_noop) -"tL" = ( +"nv" = ( /obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/prison/whitegreen, /area/template_noop) -"uE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +"oh" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"uG" = ( -/obj/effect/decal/prints{ - pixel_y = -10 +"om" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/template_noop) -"uU" = ( -/obj/item/storage/pill_bottle/tramadol/skillless, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/item/handset{ + pixel_x = -3; + pixel_y = 13 }, +/turf/open/floor/plating/prison, /area/template_noop) -"vA" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"pA" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"xC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_y = 4 +"qp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"qB" = ( +/obj/structure/bed/chair{ + layer = 2.7; + dir = 4 }, -/obj/item/storage/surgical_tray, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/whitegreen, +/area/template_noop) +"rf" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 2.7 }, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"rm" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) -"xY" = ( +"sf" = ( /obj/structure/largecrate/random/case/double{ pixel_y = 8; pixel_x = -5 @@ -388,39 +282,37 @@ pixel_y = -17; pixel_x = -5 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"zm" = ( -/obj/structure/machinery/optable, -/obj/item/bedsheet/rainbow, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "whitegreen" +"sK" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" }, -/area/template_noop) -"zG" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreencorner" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"Be" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"tD" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) -"BS" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"uj" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"vo" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"Cr" = ( +"vq" = ( /obj/structure/largecrate/random/barrel/yellow{ pixel_x = 6; pixel_y = -11; @@ -436,49 +328,78 @@ pixel_y = 6; layer = 2.7 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"CA" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall/prison_unmeltable, +"vS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) -"Df" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" +"vV" = ( +/obj/effect/decal/prints{ + pixel_y = -10 }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"Es" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/prison, +"wO" = ( +/obj/item/storage/pill_bottle/tramadol/skillless, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"EB" = ( -/obj/structure/bed/chair{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"yr" = ( +/turf/open/floor/prison/whitegreen/east, +/area/template_noop) +"yM" = ( +/obj/item/ammo_casing{ + icon_state = "cartridge_1" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"ES" = ( -/obj/structure/platform{ - dir = 8 +"zK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 }, +/turf/open/floor/plating/prison, +/area/template_noop) +"zL" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/template_noop) +"AP" = ( /obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" + icon_state = "triagedecalbottom" }, /obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Bc" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"BI" = ( +/turf/open/floor/prison/whitegreencorner/west, +/area/template_noop) +"CA" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/template_noop) +"DI" = ( +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Ec" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, +/obj/structure/inflatable/popped, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Es" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/prison, /area/template_noop) "EZ" = ( /obj/structure/machinery/shower{ @@ -486,19 +407,27 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) -"Gl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 +"Fn" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip{ + pixel_y = 19 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Gk" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/handset{ - pixel_x = -3; - pixel_y = 13 +/obj/structure/largecrate/random/barrel, +/obj/structure/largecrate/random/barrel{ + pixel_x = 16; + layer = 3.1; + pixel_y = -4 }, -/turf/open/floor/plating/prison, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) "GI" = ( /obj/structure/stairs/perspective, @@ -511,101 +440,37 @@ /obj/structure/inflatable/door, /turf/open/floor/plating/prison, /area/template_noop) -"GL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/template_noop) "GT" = ( /obj/structure/machinery/cryo_cell, /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) -"Hq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, -/area/template_noop) -"Hw" = ( -/obj/item/ammo_casing{ - icon_state = "cartridge_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"HL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"HS" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ +"Ip" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "whitegreen" - }, -/area/template_noop) -"IK" = ( -/obj/structure/platform{ - dir = 1; - layer = 2.8 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -8; - layer = 2.9 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 13; - layer = 2.9 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = 3; - layer = 2.9; - pixel_y = -8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + pixel_x = 10; + pixel_y = -3 }, +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) -"JJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4; - layer = 2.8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"IJ" = ( +/obj/structure/bed/chair{ + dir = 8; + layer = 2.7 }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"JL" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +"IR" = ( +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) -"JW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, +"IZ" = ( /obj/structure/inflatable/popped, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/prison/whitegreen/east, /area/template_noop) "Kk" = ( /obj/structure/machinery/door/airlock/almayer/marine{ @@ -613,114 +478,46 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"Kp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomright" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"Lw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/defenses/bell_tower/md, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"Ky" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - icon_state = "whitegreencorner" - }, +"Ly" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"KF" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"LW" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"KJ" = ( -/obj/structure/inflatable/door, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreencorner" - }, +"Nb" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"Mi" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" - }, +"Ng" = ( +/turf/open/floor/prison/whitegreen/north, /area/template_noop) -"NV" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitegreen" - }, +"NX" = ( +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/west, /area/template_noop) "Od" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"Ou" = ( -/obj/structure/bed/chair{ - dir = 8; - layer = 2.7 - }, -/obj/effect/decal/cleanable/mucus{ - pixel_x = -16 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"OH" = ( -/obj/structure/largecrate/random/case/double{ - pixel_y = 8 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -4 - }, -/obj/structure/largecrate/random/case/double{ - pixel_y = -18 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"Pa" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"Op" = ( +/obj/structure/platform{ + dir = 1 }, -/area/template_noop) -"Pd" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreen" +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, +/obj/structure/inflatable, +/turf/open/floor/prison/whitegreen/northwest, /area/template_noop) -"Pt" = ( +"OQ" = ( /obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "PE" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname{ @@ -728,28 +525,28 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"PS" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottom" - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"Qq" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/prison/whitegreencorner/east, /area/template_noop) -"PV" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/prison{ +"QA" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "whitegreencorner" + layer = 2.7 }, +/obj/effect/decal/cleanable/mucus{ + pixel_x = -16 + }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"QG" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" +"Rj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) "Ro" = ( /obj/structure/machinery/shower{ @@ -760,123 +557,90 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/template_noop) -"RG" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"RP" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/prison/whitegreen/southeast, /area/template_noop) -"Sz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/largecrate/random/barrel{ - pixel_x = 16; - layer = 3.1; - pixel_y = -4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" - }, +"Sm" = ( +/obj/structure/machinery/optable, +/obj/item/bedsheet/rainbow, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitegreen, /area/template_noop) -"Tb" = ( -/obj/structure/bed/chair{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"SJ" = ( +/turf/open/floor/prison/whitegreen/northwest, +/area/template_noop) +"Tf" = ( +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"TF" = ( +"Tj" = ( /obj/structure/platform_decoration{ - dir = 4 + dir = 8 }, /obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitegreen" + icon_state = "triagedecaldir" }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"TV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"TI" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" }, +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"UI" = ( -/turf/open/floor/prison{ - icon_state = "whitegreen" +"Ur" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"US" = ( +"UA" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"UZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" }, +/obj/structure/inflatable/popped/door, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) "Va" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/template_noop) -"Vp" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitegreen" - }, +"Wb" = ( +/turf/open/floor/prison/whitegreen, /area/template_noop) -"VD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitegreen" - }, +"Wc" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"WP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaldir" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"Wt" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"WY" = ( -/obj/structure/inflatable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"WF" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"Xl" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalleft" - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"Xj" = ( +/obj/structure/inflatable/door, +/turf/open/floor/prison/whitegreenfull/southwest, /area/template_noop) -"Yy" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, +"XN" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Yj" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/prison/whitegreen/southwest, /area/template_noop) "Yz" = ( /obj/structure/window/framed/prison/cell, @@ -886,30 +650,22 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/prison, /area/template_noop) -"Zp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/defenses/bell_tower/md, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) (1,1,1) = {" -Hw -oy -bs +yM +Ur +oh bv -WP -Be -Vp -nx -zG -uE -Kp +Tj +Tf +SJ +Qq +BI +IR +sK kE -Gl -no +om +zK Va kE kE @@ -920,78 +676,78 @@ kE kE kE go -Hq -qe -KJ -kG -WY -PV -JW -ir -qe -qe -Df -Mi -Pa +Op +NX +iG +OQ +LW +mV +fN +vS +NX +NX +tD +Rj +Wc kE "} (3,1,1) = {" -bN -Be +bH +Tf kE kE -IK -TV -TV -TV -TV -TV -lm -TV -TV -TV -TV -eO -Yy +dG +DI +DI +DI +DI +DI +Ec +DI +DI +DI +DI +at +Nb kE "} (4,1,1) = {" -GL -Be -eb +lA +Tf +iR GI -JJ -TV -Zp -nJ -kK -TV -bm -TV -TV -TV -kK -UI +bZ +DI +Lw +aL +eP +DI +TI +DI +DI +DI +eP +Wb kE kE "} (5,1,1) = {" -Be -oy +Tf +Ur kE kE -Sz -dg -TV -TV -TV -TV -bm -kK -TV -TV -TV -VD +Gk +fz +DI +DI +DI +DI +TI +eP +DI +DI +DI +ju kE kE "} @@ -1000,158 +756,158 @@ kE kE kE kE -nR -dg -TV -TV -TV -Cr -PS -EB -EB -EB -TV -JL -xC +bI +fz +DI +DI +DI +vq +AP +rf +rf +rf +DI +cl +iD Od "} (7,1,1) = {" iK kE Ro -ES -TF -Xl -kY -US -US +pA +vo +UZ +UA +na +na Zg Zg -aZ -TV -aZ -TV -PV -jy -Pd +jc +DI +jc +DI +mV +gA +Yj "} (8,1,1) = {" nj kE EZ -Be -QG -TV -TV -uG -tE +Tf +Ng +DI +DI +vV +HL kE kE -sk -TV -aZ -TV -kZ -nJ -UI +Fn +DI +jc +DI +Wt +aL +Wb "} (9,1,1) = {" Es kE GT -Be -QG -TV -kK -KF -RG +Tf +Ng +DI +eP +lH +WF Zg Zg -aZ -TV -nX -TV -Ky -TV -zm +jc +DI +mU +DI +lf +DI +Sm "} (10,1,1) = {" kE kE GT -Be -BS -OH -TV -TV -TV -gC -WY -Ou -Tb -Tb -dg -fn -uU -UI +Tf +Ly +hp +DI +DI +DI +Bc +LW +QA +IJ +IJ +fz +nv +wO +Wb "} (11,1,1) = {" kE -Be -Be -Be -QG -xY -dg -TV -TV -TV -kZ -TV -TV -kK -dg -tL -dp -dK +Tf +Tf +Tf +Ng +sf +fz +DI +DI +DI +Wt +DI +DI +eP +fz +ds +yr +RP "} (12,1,1) = {" PE -ph -Be -qS -QG -kK -TV -TV -TV -TV -vA -TV -TV -TV -TV -aG +Xj +Tf +qp +Ng +eP +DI +DI +DI +DI +XN +DI +DI +DI +DI +qB CA Od "} (13,1,1) = {" kE -Be -Pt -bs -it -bl -pR -pR -pR -pR -pR -NV -qb -HS -pR -of +Tf +zL +oh +af +la +uj +uj +uj +uj +uj +Ip +IZ +rm +uj +jw Od Od "} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm index 5ba86e60f7..d0332503f1 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.poolparty.dmm @@ -9,15 +9,19 @@ }, /turf/open/floor/wood, /area/template_noop) +"bm" = ( +/turf/open/gm/river/pool, +/area/template_noop) "bD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/template_noop) -"bO" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river{ - name = "pool" +"bT" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -2; + pixel_x = -12 }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "cb" = ( /obj/item/trash/barcardine{ @@ -30,15 +34,6 @@ /obj/item/toy/gun, /turf/open/floor/wood, /area/template_noop) -"cj" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -7; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "cq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/head/cueball{ @@ -51,48 +46,66 @@ }, /turf/open/floor/wood, /area/template_noop) -"cK" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"cu" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -13; + pixel_y = 48 }, +/turf/open/gm/river/pool, +/area/template_noop) +"cT" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"cU" = ( -/obj/structure/machinery/power/apc, +"dD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"eh" = ( +/obj/structure/closet/basketball{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/weapon/gun/revolver/spearhead, /turf/open/floor/wood, /area/template_noop) -"dB" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkbrown2" +"ey" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -7; + pixel_x = -1 }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"eJ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/wood, /area/template_noop) -"ef" = ( +"eN" = ( /obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "pool" - }, +/turf/open/gm/river/pool, /area/template_noop) -"el" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 6 +"fk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/template_noop) +"fw" = ( +/obj/item/trash/kepler{ + pixel_x = 13 }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"fB" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) -"fv" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -16 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +"fI" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/template_noop) +"fX" = ( +/turf/closed/wall/mineral/bone_resin, /area/template_noop) -"fL" = ( +"fZ" = ( /obj/structure/grille, /obj/item/reagent_container/food/snacks/carpmeat{ pixel_x = -5; @@ -105,36 +118,35 @@ /obj/structure/prop/invuln/fire{ layer = 2.9 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) -"fN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gA" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = 6 }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) -"fX" = ( -/turf/closed/wall/mineral/bone_resin, +"gH" = ( +/turf/open/floor/prison/darkbrowncorners2/north, /area/template_noop) -"gs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, +"gQ" = ( +/obj/structure/platform, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "gV" = ( /turf/open/space, /area/template_noop) -"hf" = ( -/turf/open/gm/river{ - name = "pool" +"hl" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "hP" = ( /obj/structure/platform{ @@ -142,6 +154,23 @@ }, /turf/open/floor/prison, /area/template_noop) +"hV" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"hW" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = 19; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"hX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) "hY" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -158,46 +187,12 @@ }, /turf/open/floor/wood, /area/template_noop) -"ik" = ( -/obj/item/trash/syndi_cakes{ - pixel_x = -13; - pixel_y = -11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) -"is" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/template_noop) -"iC" = ( -/obj/item/tool/mop{ - pixel_x = 11; - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 9; - pixel_y = -5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) -"iK" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"in" = ( +/obj/item/trash/crushed_cup{ + pixel_y = -6; + pixel_x = -8 }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "iY" = ( /obj/structure/surface/table/reinforced/prison, @@ -211,28 +206,37 @@ }, /turf/open/floor/wood, /area/template_noop) +"ji" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) +"jr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) "jt" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/template_noop) -"jW" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = 6 +"jT" = ( +/obj/item/tool/mop{ + pixel_x = 11; + layer = 2.9; + pixel_y = 3 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 9; + pixel_y = -5 }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) -"kb" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -65; - pixel_x = 29 - }, -/turf/open/gm/river{ - name = "pool" +"kl" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) "ks" = ( /obj/structure/surface/table/reinforced/prison, @@ -249,13 +253,13 @@ }, /turf/open/floor/wood, /area/template_noop) -"kA" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"kC" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) +"kJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "lc" = ( /obj/structure/surface/table/reinforced/prison, @@ -273,6 +277,13 @@ }, /turf/open/floor/wood, /area/template_noop) +"ls" = ( +/obj/item/toy/crossbow_ammo{ + pixel_y = -14; + pixel_x = -15 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) "ly" = ( /obj/structure/platform_decoration{ dir = 8 @@ -299,21 +310,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"mc" = ( -/obj/item/trash/kepler{ - pixel_x = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/template_noop) -"mj" = ( -/obj/structure/prop/souto_land/pole, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "mk" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -325,30 +321,27 @@ }, /turf/open/floor/wood, /area/template_noop) -"mq" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/template_noop) "mu" = ( /turf/open/floor/plating/prison, /area/template_noop) "nf" = ( /turf/open/floor/wood, /area/template_noop) -"ng" = ( +"ni" = ( +/turf/closed/wall/prison, +/area/template_noop) +"nv" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"ny" = ( /obj/item/trash/cigbutt{ pixel_x = 31; pixel_y = -16 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/template_noop) -"ni" = ( -/turf/closed/wall/prison, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "nA" = ( /obj/structure/surface/table/reinforced/prison, @@ -380,18 +373,16 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/wood, /area/template_noop) +"nT" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) "or" = ( /obj/structure/prop/souto_land/pole{ dir = 1 }, /turf/open/floor/wood, /area/template_noop) -"ou" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "oL" = ( /obj/structure/lattice, /turf/open/space, @@ -402,18 +393,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"pB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "bright_clean2" - }, -/area/template_noop) "pG" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -422,42 +401,17 @@ /obj/structure/platform/stair_cut, /turf/open/floor/plating/prison, /area/template_noop) -"pH" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"qa" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) -"pM" = ( -/obj/structure/prop/souto_land/pole{ +"qi" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -3; - pixel_y = -9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) -"ql" = ( -/obj/item/trash/sosjerky{ - pixel_x = -14; - pixel_y = -20 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) "qm" = ( /obj/structure/stairs/perspective{ @@ -467,6 +421,12 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/template_noop) +"qB" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -20 + }, +/turf/open/gm/river/pool, +/area/template_noop) "qG" = ( /obj/item/trash/crushed_cup{ pixel_y = 16 @@ -485,53 +445,10 @@ }, /turf/open/floor/wood, /area/template_noop) -"ro" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) "rp" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/prison, /area/template_noop) -"rq" = ( -/obj/item/trash/semki{ - pixel_x = 15 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) -"rt" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -2; - pixel_y = 36 - }, -/turf/open/gm/river{ - name = "pool" - }, -/area/template_noop) -"rU" = ( -/obj/structure/grille, -/obj/item/reagent_container/food/snacks/bearmeat{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/meat/human{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/structure/prop/invuln/fire{ - layer = 2.9 - }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, -/area/template_noop) "rW" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -542,6 +459,36 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/wood, /area/template_noop) +"sr" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/template_noop) +"su" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"sG" = ( +/obj/structure/platform, +/turf/open/gm/river/pool, +/area/template_noop) +"sI" = ( +/obj/item/toy/crossbow{ + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"sW" = ( +/turf/open/floor/prison/floor_plate, +/area/template_noop) "tb" = ( /obj/item/trash/wy_chips_pepper{ pixel_x = 18; @@ -568,41 +515,59 @@ }, /turf/open/floor/wood, /area/template_noop) -"tD" = ( -/obj/item/trash/plate{ - pixel_x = -9 +"tF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +/obj/structure/platform{ + dir = 8 }, -/area/template_noop) -"tM" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ dir = 4; - icon_state = "darkbrowncorners2" + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = 1; + pixel_y = -9 }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "tT" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/wood, /area/template_noop) -"uw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ +"tX" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"ut" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"uv" = ( +/obj/effect/landmark/corpsespawner/ua_riot/burst, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"uO" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "darkbrowncorners2" + icon_state = "p_stair_sn_full_cap" }, -/area/template_noop) -"vf" = ( -/obj/structure/platform_decoration{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/prop/souto_land/pole{ + dir = 1 }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = -1; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/east, /area/template_noop) "vU" = ( /obj/structure/surface/table/reinforced/prison, @@ -659,61 +624,12 @@ }, /turf/open/floor/wood, /area/template_noop) -"wl" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/template_noop) -"wS" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/template_noop) -"wV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) -"xr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = 1; - pixel_y = -9 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"wv" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = -10; + pixel_y = -7 }, +/turf/open/floor/prison/darkbrown2/west, /area/template_noop) "xz" = ( /obj/structure/prop/souto_land/streamer{ @@ -721,12 +637,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"xQ" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "xS" = ( /obj/structure/platform{ dir = 1 @@ -737,12 +647,27 @@ }, /turf/open/floor/wood, /area/template_noop) -"yx" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"yv" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 5; + pixel_x = 11 + }, +/turf/open/gm/river/pool, +/area/template_noop) +"yz" = ( +/obj/structure/grille, +/obj/item/reagent_container/food/snacks/bearmeat{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/meat/human{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/prop/invuln/fire{ + layer = 2.9 }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "yL" = ( /obj/structure/stairs/perspective{ @@ -754,16 +679,6 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"zc" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "zR" = ( /obj/item/trash/cigbutt{ pixel_x = 10; @@ -771,6 +686,12 @@ }, /turf/open/floor/wood, /area/template_noop) +"zS" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) "Aj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/floor/prison, @@ -788,12 +709,6 @@ /obj/structure/window/framed/prison/reinforced/hull, /turf/open/floor/plating/prison, /area/template_noop) -"Bj" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "Bv" = ( /obj/structure/prop/souto_land/streamer{ dir = 9 @@ -810,6 +725,12 @@ }, /turf/open/floor/wood, /area/template_noop) +"BZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) "Ci" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/beer_pack{ @@ -818,78 +739,88 @@ }, /turf/open/floor/wood, /area/template_noop) -"Cq" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = -17; - pixel_y = 41 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" +"Cj" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"Cw" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Cx" = ( /obj/item/weapon/baseballbat/metal, /turf/open/floor/wood, /area/template_noop) -"Dd" = ( +"CD" = ( /obj/item/trash/crushed_cup{ - pixel_x = -20 - }, -/turf/open/gm/river{ - name = "pool" + pixel_x = -2; + pixel_y = 36 }, +/turf/open/gm/river/pool, /area/template_noop) -"DN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" +"CR" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"CZ" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/darkbrown2, +/area/template_noop) +"DG" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) -"DT" = ( -/obj/structure/platform, -/turf/open/gm/river{ - name = "pool" +"DL" = ( +/obj/item/trash/sosjerky{ + pixel_x = -14; + pixel_y = -20 }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "DW" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/pill_bottle/kelotane/skillless, /turf/open/floor/prison, /area/template_noop) +"Eb" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -17; + pixel_y = 41 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) +"Ez" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/obj/item/toy/plush/barricade{ + pixel_x = -3; + pixel_y = -9 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"EA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) "Fj" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/wood, /area/template_noop) -"Fo" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) "Fy" = ( /turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"Fz" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) -"FN" = ( -/obj/item/toy/crossbow{ - pixel_x = 11; - pixel_y = -8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) "Gi" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -897,39 +828,11 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"Gu" = ( -/obj/item/trash/crushed_cup{ - pixel_y = -2; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) -"GO" = ( -/obj/item/toy/crossbow_ammo{ - pixel_y = -14; - pixel_x = -15 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) -"Hn" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"Gq" = ( +/obj/item/trash/plate{ + pixel_x = -9 }, +/turf/open/floor/prison/darkbrowncorners2, /area/template_noop) "HP" = ( /obj/structure/prop/souto_land/streamer{ @@ -941,15 +844,16 @@ }, /turf/open/floor/wood, /area/template_noop) -"ID" = ( +"IJ" = ( /obj/item/trash/crushed_cup{ - pixel_y = -6; - pixel_x = -8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" + pixel_y = -65; + pixel_x = 29 }, +/turf/open/gm/river/pool, +/area/template_noop) +"IO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/southwest, /area/template_noop) "IU" = ( /obj/effect/decal/cleanable/blood/oil, @@ -967,12 +871,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"Jr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/template_noop) "Jw" = ( /obj/structure/machinery/light/double/blue{ dir = 1; @@ -980,30 +878,22 @@ }, /turf/open/floor/wood, /area/template_noop) +"Jz" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/template_noop) "JQ" = ( /obj/item/clipboard, /turf/open/floor/prison, /area/template_noop) -"JR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) -"Ke" = ( -/obj/item/toy/crossbow_ammo{ - pixel_x = 19; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"Kp" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/template_noop) -"Kx" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 10 }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "KL" = ( /obj/structure/surface/table/reinforced/prison, @@ -1025,13 +915,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"KM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/template_noop) "KO" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cup{ @@ -1045,13 +928,11 @@ }, /turf/open/floor/wood, /area/template_noop) -"La" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river{ - name = "pool" +"Lr" = ( +/obj/item/trash/semki{ + pixel_x = 15 }, +/turf/open/floor/prison/darkbrown2/north, /area/template_noop) "Ls" = ( /obj/structure/surface/table/reinforced/prison, @@ -1091,131 +972,90 @@ }, /turf/open/floor/wood, /area/template_noop) -"LW" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison{ +"Mf" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "darkbrown2" + icon_state = "p_stair_full" }, -/area/template_noop) -"Mn" = ( /obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/darkbrown2, /area/template_noop) -"MQ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +"Nh" = ( +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = -2; + pixel_y = -15 }, -/obj/structure/platform{ +/turf/open/gm/river/pool, +/area/template_noop) +"NE" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/item/toy/plush/barricade{ - pixel_x = -1; - pixel_y = -9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"NR" = ( +/obj/item/toy/crossbow_ammo{ + pixel_x = -16 }, +/turf/open/floor/prison/darkbrowncorners2/west, /area/template_noop) -"MS" = ( -/obj/structure/platform, +"NT" = ( /obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 1 }, +/turf/open/gm/river/pool, /area/template_noop) -"ND" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +"NY" = ( +/turf/open/floor/prison/cell_stripe/east, /area/template_noop) -"NQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkbrown2" - }, +"PC" = ( +/turf/open/floor/prison/darkbrowncorners2/east, /area/template_noop) -"Oz" = ( +"PD" = ( +/obj/structure/platform, /obj/item/trash/crushed_cup{ - pixel_y = 5; - pixel_x = 11 - }, -/turf/open/gm/river{ - name = "pool" + pixel_y = 13; + pixel_x = 45 }, +/turf/open/gm/river/pool, /area/template_noop) -"PA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkbrown2" - }, +"PL" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/pool, /area/template_noop) -"PR" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkbrowncorners2" - }, +"PS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "Qn" = ( /turf/open/floor/prison, /area/template_noop) -"QF" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/template_noop) -"QO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +"Qt" = ( +/obj/item/storage/belt/shotgun/full/quackers{ + layer = 3.1 }, -/area/template_noop) -"Rg" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +/obj/item/trash/crushed_cup{ + pixel_y = 6; + pixel_x = -30 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_y = 4; + pixel_x = 1 }, +/turf/open/gm/river/pool, /area/template_noop) -"Ro" = ( -/obj/item/toy/bikehorn/rubberducky{ - pixel_x = -2; - pixel_y = -15 +"QJ" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/template_noop) +"QR" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/gm/river{ - name = "pool" +/obj/structure/platform_decoration{ + dir = 6 }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Rr" = ( /obj/structure/stairs/perspective{ @@ -1224,10 +1064,17 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"Rs" = ( -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, +"RB" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/template_noop) +"RT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"RV" = ( +/obj/structure/prop/souto_land/pole, +/turf/open/floor/prison/darkbrown2, /area/template_noop) "RW" = ( /obj/structure/surface/table/reinforced/prison, @@ -1246,20 +1093,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"Sg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/template_noop) -"SC" = ( -/obj/effect/landmark/corpsespawner/ua_riot/burst, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) "SO" = ( /obj/structure/machinery/light/double/blue{ dir = 8; @@ -1276,19 +1109,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"Th" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) -"Tq" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/template_noop) "TO" = ( /obj/structure/prop/souto_land/streamer{ dir = 6 @@ -1303,6 +1123,20 @@ /obj/structure/platform, /turf/open/floor/plating/prison, /area/template_noop) +"TV" = ( +/obj/item/trash/syndi_cakes{ + pixel_x = -13; + pixel_y = -11 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/template_noop) +"Uh" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/darkbrown2/north, +/area/template_noop) "Us" = ( /obj/item/toy/syndicateballoon{ pixel_x = 14; @@ -1310,14 +1144,14 @@ }, /turf/open/floor/wood, /area/template_noop) -"UN" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -13; - pixel_y = 48 - }, -/turf/open/gm/river{ - name = "pool" +"UP" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/template_noop) +"Va" = ( +/turf/open/floor/prison/darkbrown2/northeast, /area/template_noop) "Vi" = ( /obj/structure/surface/table/reinforced/prison, @@ -1347,98 +1181,48 @@ }, /turf/open/floor/wood, /area/template_noop) +"VE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkbrowncorners2, +/area/template_noop) "VV" = ( /obj/structure/platform_decoration, /turf/open/floor/prison, /area/template_noop) -"Wa" = ( -/obj/structure/closet/basketball{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/wood, -/area/template_noop) "We" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/template_noop) -"Wh" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/template_noop) -"Wx" = ( -/obj/structure/platform, -/obj/item/trash/crushed_cup{ - pixel_y = 13; - pixel_x = 45 - }, -/turf/open/gm/river{ - name = "pool" - }, +"Wj" = ( +/turf/open/floor/prison/darkbrown2, /area/template_noop) -"WY" = ( -/obj/structure/platform_decoration{ +"WG" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrown2" - }, -/area/template_noop) -"Xn" = ( -/obj/item/storage/belt/shotgun/full/quackers{ - layer = 3.1 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 6; - pixel_x = -30 - }, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_y = 4; - pixel_x = 1 - }, -/turf/open/gm/river{ - name = "pool" +/obj/structure/platform{ + dir = 4 }, -/area/template_noop) -"Xu" = ( -/obj/structure/platform, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "darkbrown2" +/obj/structure/platform_decoration{ + dir = 9 }, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"Xw" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = -10; - pixel_y = -7 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +"XR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/template_noop) -"XM" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/prison/bright_clean2/southwest, /area/template_noop) "XS" = ( /obj/effect/landmark/corpsespawner/prisoner, /turf/open/floor/wood, /area/template_noop) -"XX" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) "Yd" = ( /obj/structure/machinery/light/double/blue, /turf/open/floor/wood, @@ -1498,15 +1282,9 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/wood, /area/template_noop) -"ZB" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) (1,1,1) = {" -Rs +Wj Qn DW Qn @@ -1515,8 +1293,8 @@ fX fX fX fX -Wh -cK +tX +Cw hP hP ly @@ -1525,17 +1303,17 @@ Qn Qn Aj Qn -Wh -Rs +tX +Wj Fy "} (2,1,1) = {" -Rs +Wj Qn JQ Qn VV -fN +UP fX ni ni @@ -1543,28 +1321,28 @@ YP TS ni ni -kA -Kx -XX +BZ +sW +cT hP hP ly -Wh -Rs +tX +Wj so "} (3,1,1) = {" -Rs +Wj Qn VV -fN -MS +UP +QR ni aj ni SO -el -mj +Uh +RV hY ni YP @@ -1572,218 +1350,218 @@ Rr TS ni ni -kA -Wh -Rs -dB +BZ +tX +Wj +sr "} (4,1,1) = {" -Rs +Wj Qn -ZB +CR ni aj ni nf nf nf -ql -Rs +DL +Wj nf BK TO HP nS -Wa +eh aj -kA -Wh -Rs +BZ +tX +Wj mu "} (5,1,1) = {" -Rs +Wj VV -MS +QR aj jt az -dB -yx -XM -tM -QF -XM -Xw -NQ +sr +kJ +QJ +RB +fI +QJ +wv +IO nf IU nf aj -kA -Wh +BZ +tX mu fX "} (6,1,1) = {" -Rs -ZB +Wj +CR ni ni XS nf -GO -PR -Fo -Fo -jW -Fo -mq -Ke +ls +VE +ut +ut +gA +ut +gH +hW lh nf Cx aj -kA -ND -Fo +BZ +Va +ut fX "} (7,1,1) = {" -cK -MS +Cw +QR aj nf tz nf -Th -Rs +EA +Wj pG Gi Gi qm -Wh -Rs +tX +Wj nf tz nf aj -Hn +WG Fj nf fX "} (8,1,1) = {" -ou +nT ni ni Zr ks az -Wh -xQ -La -kb -hf -DT -Wh -Rs +tX +CZ +NT +IJ +bm +sG +tX +Wj Zr Ci az ni ni -kA +BZ nf -Wh +tX "} (9,1,1) = {" -Xu +gQ ni mk nf rW nf -Cq -Rs -La -Dd -ef -DT -Wh -Rs +Eb +Wj +NT +qB +eN +sG +tX +Wj nf rW nf Yd ni -wV +hl nf -Wh +tX "} (10,1,1) = {" -uw -xr -ng -yx -yx -mc -Jr -Rs -La -bO -rt -DT -Wh -fL -XM -yx -yx -wl -pB -pH -XM -Jr +qi +tF +ny +kJ +kJ +fw +PC +Wj +NT +PL +CD +sG +tX +fZ +QJ +kJ +kJ +su +XR +zS +QJ +PC "} (11,1,1) = {" -DN -MQ -JR -Fo -Fo -Fo -Sg -Bj -La -hf -UN -Wx -Wh -rU -KM -Fo -Gu -pM +kC +uO +hV +ut +ut +ut +fk +jr +NT +bm +cu +PD +tX +yz +RT +ut +bT +Ez yL -LW -Fo -Fo +hX +ut +ut "} (12,1,1) = {" -Xu +gQ ni Jw nf tz nf -Wh -Rs -La -Oz -Xn -DT -SC -Rs +tX +Wj +NT +yv +Qt +sG +uv +Wj nf tz nf @@ -1794,20 +1572,20 @@ nf nf "} (13,1,1) = {" -ou +nT ni ni pt LI Vx -Wh -FN -La -Ro -hf -DT -Wh -cj +tX +sI +NT +Nh +bm +sG +tX +ey Zr nA az @@ -1818,44 +1596,44 @@ Bf Bf "} (14,1,1) = {" -WY -Mn +DG +Kp aj nf rW nf -rq -Rs +Lr +Wj nC Rr Rr TS -Wh -QO +tX +PS nf rW nf -cU +eJ Fy gV gV gV "} (15,1,1) = {" -Rs -ZB +Wj +CR aj nf ij tT -iK -fv -gs -XM -XM -XM -Jr -Rs +fB +NR +dD +QJ +QJ +QJ +PC +Wj nf tb nf @@ -1866,20 +1644,20 @@ Bf Bf "} (16,1,1) = {" -Rs +Wj YG aj lc ci tT -ND -iC -ID -mq -tD -Fo -ik -wS +Va +jT +in +gH +Gq +ut +TV +Jz iY cq RW @@ -1890,7 +1668,7 @@ Yr Bf "} (17,1,1) = {" -Rs +Wj YG aj Ls @@ -1899,8 +1677,8 @@ Bv or zR nf -Th -Rs +EA +Wj nf tw XS @@ -1914,7 +1692,7 @@ lS Bf "} (18,1,1) = {" -Rs +Wj YG ni ni @@ -1923,8 +1701,8 @@ Gi qm ni vX -Fz -Rg +qa +Cj Ao Fy nf @@ -1938,17 +1716,17 @@ vU Bf "} (19,1,1) = {" -Rs +Wj We ty ty -vf -Kx -ZB +NE +sW +CR ni ni pG -zc +Mf ni Fy Zr @@ -1962,18 +1740,18 @@ Bf Bf "} (20,1,1) = {" -wS +Jz Qn Qn Qn Aj Qn We -ro -ro -PA -is -ro +nv +nv +kl +ji +nv Fy nf Yh @@ -1986,17 +1764,17 @@ gV gV "} (21,1,1) = {" -Tq +NY YB YB -Tq +NY YB YB -Tq +NY YB YB -Tq -Tq +NY +NY YB Fy Fy diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm index 6662ebf081..ce60474959 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/20.yardbasketball.dmm @@ -36,7 +36,7 @@ "f" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood, -/obj/item/handcuffs/zip{ +/obj/item/restraint/handcuffs/zip{ pixel_y = -12 }, /turf/open/floor/wood, diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm index 6e7f60a9bd..50ae44dab2 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/25.researchprestine.dmm @@ -1,10 +1,16 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"am" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/north, +/area/template_noop) +"aB" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/core, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"aC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "aU" = ( /obj/structure/sign/poster{ @@ -14,77 +20,37 @@ }, /turf/open/space/basic, /area/template_noop) -"bz" = ( -/turf/closed/wall/r_wall/prison_unmeltable, -/area/template_noop) -"bO" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, -/area/template_noop) -"bZ" = ( -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +"bc" = ( +/turf/open/floor/prison/platingdmg2, /area/template_noop) -"cz" = ( +"bq" = ( /obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"cL" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"bz" = ( +/turf/closed/wall/r_wall/prison_unmeltable, /area/template_noop) -"cM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +"bY" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, /area/template_noop) -"dR" = ( -/obj/structure/bookcase/manuals/research_and_development{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +"cc" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison/whitepurple, /area/template_noop) -"eG" = ( -/obj/structure/closet/secure_closet/guncabinet{ - req_access = null - }, -/obj/item/prop/helmetgarb/riot_shield, -/obj/item/prop/helmetgarb/riot_shield, -/obj/item/clothing/under/marine/ua_riot, -/obj/item/clothing/head/helmet/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/obj/item/clothing/suit/storage/marine/veteran/ua_riot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"cB" = ( +/turf/open/floor/prison/whitepurple/east, /area/template_noop) -"eQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"dg" = ( +/turf/open/floor/prison/platingdmg1, /area/template_noop) -"fg" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +"dX" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"el" = ( +/turf/open/floor/prison/whitepurple/west, /area/template_noop) "fk" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -93,17 +59,17 @@ }, /turf/open/space/basic, /area/template_noop) -"gy" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +"fu" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"gB" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"fZ" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"gK" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) "gR" = ( /obj/structure/extinguisher_cabinet{ @@ -121,249 +87,200 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"jt" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 150 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +"jb" = ( +/obj/structure/grille, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"jM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +"jr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) -"ke" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"jE" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 200 }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"ks" = ( +"kO" = ( /obj/structure/bed{ icon_state = "abed" }, -/obj/item/card/id/visa, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, -/area/template_noop) -"kx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"kY" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg1" - }, +/obj/item/toy/deck, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"me" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +"lA" = ( +/turf/open/floor/prison/floorscorched1, /area/template_noop) -"mu" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +"mh" = ( +/obj/structure/bookcase/manuals/research_and_development{ + pixel_y = 10 }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "mz" = ( /obj/item/tool/kitchen/utensil/pspoon, /turf/open/space/basic, /area/template_noop) -"no" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - health = 200 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +"mU" = ( +/turf/open/floor/prison/whitepurple/north, /area/template_noop) -"nw" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" +"ob" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"on" = ( -/obj/structure/barricade/metal/wired{ - dir = 1; - health = 55 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +"oc" = ( +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) -"oR" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +"oT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"pp" = ( +"pD" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" - }, +/turf/open/floor/prison/damaged1/southwest, /area/template_noop) -"pP" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurplecorner" +"qQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"qk" = ( -/obj/structure/bed{ - icon_state = "abed" +"rK" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 50 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +/obj/item/stack/sheet/metal{ + pixel_y = 4; + pixel_x = -10 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"qu" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "damaged1" +"sj" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + health = 150 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"qL" = ( -/turf/open/floor/prison{ - icon_state = "panelscorched" - }, +"sq" = ( +/turf/open/floor/prison/whitepurplecorner/west, /area/template_noop) -"rb" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/blood/writing{ - dir = 6 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +"sT" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/card/id/visa, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) -"tc" = ( +"uu" = ( /obj/structure/bed{ icon_state = "abed" }, -/obj/item/toy/deck, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/turf/open/floor/prison/whitepurple/southeast, +/area/template_noop) +"uw" = ( +/obj/structure/machinery/door/airlock/prison/horizontal, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"uU" = ( +/turf/open/floor/prison/floorscorched2, /area/template_noop) -"tr" = ( -/turf/open/floor/prison{ +"vc" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/whitepurple/east, +/area/template_noop) +"wh" = ( +/obj/structure/sink{ dir = 4; - icon_state = "whitepurple" + pixel_x = 12 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"tB" = ( +"wQ" = ( /obj/structure/barricade/metal/wired{ - dir = 1; - health = 65 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + dir = 8; + health = 200 }, +/turf/open/floor/prison/whitepurple/northwest, /area/template_noop) -"tD" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +"xA" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"xW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"yH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"zt" = ( +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"tI" = ( +"zX" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/prison/whitepurple/northeast, +/area/template_noop) +"zY" = ( /obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/floorscorched1, /area/template_noop) -"tN" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"AZ" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) -"ux" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/spawner/random/pills/lowchance, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +"Bd" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) -"uF" = ( -/obj/effect/decal/prints{ - pixel_y = 3; - pixel_x = -10 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" +"Bg" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null }, +/obj/item/prop/helmetgarb/riot_shield, +/obj/item/prop/helmetgarb/riot_shield, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"uM" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +"Bp" = ( +/turf/open/floor/prison/platingdmg3, /area/template_noop) -"we" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"Br" = ( +/obj/structure/machinery/light/double/blue, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/whitepurple, +/area/template_noop) +"BP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"wv" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"BZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"wy" = ( +"CG" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/implant/loyalty{ pixel_x = -8; @@ -376,130 +293,73 @@ /obj/item/implanter{ pixel_x = -4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"xy" = ( -/obj/structure/grille, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"yv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/template_noop) -"zj" = ( -/obj/item/stack/sheet/metal{ - pixel_y = -9; - pixel_x = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/template_noop) -"zA" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" - }, -/area/template_noop) -"zT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +"CH" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"Bx" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" - }, +"CJ" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/prison/whitepurple/east, /area/template_noop) -"Dq" = ( +"Du" = ( /obj/structure/barricade/metal/wired{ dir = 4; - health = 50 - }, -/obj/item/stack/sheet/metal{ - pixel_y = 4; - pixel_x = -10 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + health = 55 }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"Dt" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +"Ed" = ( +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"DE" = ( +"EL" = ( /obj/structure/toilet{ - dir = 4; + dir = 8; pixel_y = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" +/obj/effect/decal/cleanable/blood/writing{ + dir = 6 }, +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) -"DV" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +"EX" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/storage/fancy/cigar/tarbacks, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"EQ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +"EZ" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"ES" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, +"FA" = ( +/turf/open/floor/prison/whitepurple, /area/template_noop) -"Fc" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +"FZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"FP" = ( +"Gk" = ( /obj/structure/barricade/metal/wired{ - dir = 4; + dir = 8; health = 55 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) -"Gy" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"GM" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "GR" = ( /turf/closed/wall/r_wall/prison_unmeltable{ @@ -507,114 +367,53 @@ name = "metal wall" }, /area/template_noop) -"Hf" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" +"GX" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"Hp" = ( -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, +"Hj" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Hw" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "whitepurple" +"HB" = ( +/obj/effect/decal/prints{ + pixel_y = 3; + pixel_x = -10 }, +/turf/open/floor/prison/whitepurple/west, /area/template_noop) -"HN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"IJ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/floorscorched2, +/area/template_noop) +"IL" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"Id" = ( +"IP" = ( /obj/structure/machinery/light/double/blue{ pixel_y = -1 }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Ig" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Io" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - icon_state = "floorscorched1" - }, +/turf/open/floor/prison/sterile_white/southwest, /area/template_noop) -"Ix" = ( -/obj/structure/machinery/door/airlock/prison/horizontal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"IN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 1; - icon_state = "whitepurple" - }, -/area/template_noop) -"IW" = ( -/turf/open/floor/prison{ - icon_state = "damaged2" - }, -/area/template_noop) -"Jm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/template_noop) -"JQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitepurple" - }, -/area/template_noop) -"Kc" = ( +"Je" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Kj" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" +"JI" = ( +/obj/item/stack/sheet/metal{ + pixel_y = -9; + pixel_x = 8 }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"KF" = ( -/turf/open/floor/prison{ - icon_state = "damaged3" - }, +"Kr" = ( +/turf/open/floor/prison/panelscorched, /area/template_noop) "LM" = ( /turf/closed/wall/prison, @@ -625,203 +424,161 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"Mj" = ( +"Ml" = ( /obj/structure/bed{ icon_state = "abed" }, -/obj/item/storage/fancy/crayons, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) "Mo" = ( /obj/structure/window/framed/prison/cell, /turf/open/floor/plating/prison, /area/template_noop) -"MD" = ( -/obj/structure/machinery/light/double/blue{ - pixel_y = -1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"MV" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"MY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"Oh" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"MI" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/core, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"Oo" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/space/basic, +/area/template_noop) +"Ot" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/template_noop) +"PI" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 8 }, +/turf/open/floor/prison/whitepurple/northeast, /area/template_noop) -"MO" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" +"PL" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/obj/item/storage/fancy/crayons, +/turf/open/floor/prison/whitepurple/southeast, /area/template_noop) -"Nr" = ( -/obj/structure/machinery/light/double/blue, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "whitepurple" +"Qy" = ( +/turf/open/floor/prison/damaged2, +/area/template_noop) +"Rd" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/sterile_white/southwest, +/area/template_noop) +"Rm" = ( +/turf/open/floor/prison/damaged3, +/area/template_noop) +"RH" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/whitepurple/west, +/area/template_noop) +"RK" = ( +/obj/structure/barricade/metal/wired{ + dir = 1; + health = 55 }, +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"Ns" = ( +"RO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/double/blue{ dir = 1; pixel_y = 21 }, -/obj/item/handcuffs{ +/obj/item/restraint/handcuffs{ pixel_x = -3; pixel_y = 10 }, -/obj/item/handcuffs{ +/obj/item/restraint/handcuffs{ pixel_x = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"NI" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"Oo" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/space/basic, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"Pd" = ( +"RY" = ( /obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, -/area/template_noop) -"Pk" = ( -/obj/effect/decal/cleanable/spiderling_remains, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" - }, -/area/template_noop) -"PS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/template_noop) -"Qn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 4; - icon_state = "whitepurple" - }, +/turf/open/floor/prison/whitepurple, /area/template_noop) -"QF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - icon = 'icons/obj/structures/doors/2x1prepdoor_charlie.dmi' - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "sterile_white" - }, -/area/template_noop) -"QU" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"SS" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) -"Sx" = ( -/obj/effect/landmark/corpsespawner/ua_riot, -/turf/open/floor/prison{ - icon_state = "floorscorched2" - }, +"Tj" = ( +/turf/open/floor/prison/whitepurple/southwest, /area/template_noop) -"TD" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/template_noop) -"TE" = ( +"VE" = ( /obj/structure/barricade/metal/wired{ dir = 1; - health = 150 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + health = 65 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"TH" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg3" - }, +"WO" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) -"VP" = ( -/obj/structure/barricade/metal/wired{ - dir = 8; - health = 200 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "whitepurple" - }, +"XX" = ( +/turf/open/floor/prison/damaged1/southwest, /area/template_noop) -"VQ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/prison{ - dir = 8; - icon_state = "whitepurple" +"Yc" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + health = 150 }, +/turf/open/floor/prison/whitepurple/north, /area/template_noop) "Yw" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/prison, /area/template_noop) -"Yx" = ( -/obj/structure/barricade/metal/wired{ - dir = 8; - health = 55 - }, -/turf/open/floor/prison{ - icon_state = "whitepurple" - }, -/area/template_noop) -"YY" = ( -/turf/open/floor/prison{ - icon_state = "platingdmg2" +"YB" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) "Zi" = ( /turf/open/space/basic, /area/template_noop) -"Zw" = ( -/obj/structure/bed{ - icon_state = "abed" +"ZK" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 8 }, -/obj/item/storage/fancy/cigar/tarbacks, -/turf/open/floor/prison{ - dir = 6; - icon_state = "whitepurple" +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"ZS" = ( +/turf/open/floor/prison/whitepurple/northwest, +/area/template_noop) +"ZX" = ( +/obj/structure/machinery/light/double/blue{ + pixel_y = -1 }, +/turf/open/floor/prison/darkpurplefull2, /area/template_noop) (1,1,1) = {" LM LM -ks -ES -Ix -aa -NI -tD +sT +Tj +uw +Rd +Ed +cc LM LQ Mo @@ -834,54 +591,54 @@ Mo LM "} (2,1,1) = {" -NI +Ed LM -dR -Hp +mh +FA Mo -DV -Sx -Yx +mU +IJ +Gk LM -Fc -nw +ZS +GX LM -Fc -nw +ZS +GX LM -Fc -nw +ZS +GX LM "} (3,1,1) = {" -cL +Ot LM -Hw -yv +PI +ob Mo -jt -no -Hp +Yc +jE +FA LM -Hw -yv +PI +ob LM -Hw -yv +PI +ob LM -Hw -yv +PI +ob LM "} (4,1,1) = {" -cL +Ot Yw LM LM LM -DV -NI -Nr +mU +Ed +Br Yw LM LM @@ -894,54 +651,54 @@ LM LM "} (5,1,1) = {" -cL +Ot LM -DE -JQ +ZK +oT LM -DV -qL -Hp +mU +Kr +FA LM -DE -JQ +ZK +oT LM -DE -JQ +ZK +oT LM -DE -JQ +ZK +oT LM "} (6,1,1) = {" -cL +Ot LM -zA -qk +oc +EZ LM -IN -NI -Hp +am +Ed +FA LM -zA -qk +oc +EZ LM -zA -qk +oc +EZ LM -zA -uM +oc +CH LM "} (7,1,1) = {" -tN +ZX LM LQ Mo LM -DV -NI -fg +mU +Ed +bY LM hq Mo @@ -954,47 +711,47 @@ Mo LM "} (8,1,1) = {" -Kc -QF -Fc -VQ -gy -Io -NI -pP -gy -uF -ES -gB -KF -gy -gy -TH -ES -TE +Je +BP +ZS +Bd +el +zY +Ed +sq +el +HB +Tj +Hj +Rm +el +el +Bp +Tj +sj "} (9,1,1) = {" -MO -NI -pp -tr -tr -tr -tr -Kj -tr -qu -Pk -cL -zA -Pd -tr -Qn -oR -tB +fu +Ed +pD +cB +cB +cB +cB +CJ +cB +XX +dX +Ot +oc +vc +cB +jr +zt +VE "} (10,1,1) = {" -MD +IP GR hq Mo @@ -1002,9 +759,9 @@ GR gR Mo LM -cL -cL -kx +Ot +Ot +xA LM hq Mo @@ -1014,47 +771,47 @@ Mo LM "} (11,1,1) = {" -NI +Ed GR -Fc -cM +ZS +Ml GR -Fc -nw +ZS +GX LM -cL -YY -cL +Ot +bc +Ot LM -zT -mu +xW +IL LM -Fc -nw +ZS +GX LM "} (12,1,1) = {" -PS +aC GR -Hw -yv +PI +ob GR -Hw -yv +PI +ob LM -eQ -cL -cL +qQ +Ot +Ot LM -rb -yv +EL +ob LM -Hw -yv +PI +ob LM "} (13,1,1) = {" -Ig +fZ GR GR GR @@ -1062,9 +819,9 @@ GR LM LM LM -Ns -cL -tN +RO +Ot +ZX Yw LM LM @@ -1074,47 +831,47 @@ LM LM "} (14,1,1) = {" -cz +bq GR mz Zi GR -DE -JQ +ZK +oT LM -wy -cL -bZ +CG +Ot +uU LM -DE -JQ +ZK +oT LM -DE -JQ +ZK +oT LM "} (15,1,1) = {" -Gy +MY GR Oo Zi GR -zA -jM +oc +uu LM -eG -HN -cL +Bg +yH +Ot LM -zA -qk +oc +EZ LM -zA -tc +oc +kO LM "} (16,1,1) = {" -wv +FZ GR aU fk @@ -1122,9 +879,9 @@ GR LQ Mo LM -we -cL -Id +GM +Ot +YB LM LQ Mo @@ -1139,39 +896,39 @@ GR GR GR GR -cL -cL -cL -cL -YY -cL -cL -Fc -Bx -gy -bO -zj -QU +Ot +Ot +Ot +Ot +bc +Ot +Ot +ZS +RH +el +lA +JI +MV "} (18,1,1) = {" bz LM LM LM -xy -kY -cL -ke -cL -cL -MI -cL -EQ -YY -tr -tr -me -Dq +jb +dg +Ot +WO +Ot +Ot +aB +Ot +zX +bc +cB +cB +gK +rK "} (19,1,1) = {" bz @@ -1179,9 +936,9 @@ LM LM LM LM -cL -cL -cL +Ot +Ot +Ot LM LQ Mo @@ -1198,19 +955,19 @@ bz LM LM LM -xy -VP -gy -on +jb +wQ +el +RK LM -Fc -nw +ZS +GX LM -Fc -nw +ZS +GX LM -Fc -nw +ZS +GX LM "} (21,1,1) = {" @@ -1219,18 +976,18 @@ LM LM LM LM -DV -aa -Hp +mU +Rd +FA LM -Hw -yv +PI +ob LM -Hw -yv +PI +ob LM -Hw -Jm +PI +wh LM "} (22,1,1) = {" @@ -1239,9 +996,9 @@ LM LM LM LM -Hf -FP -Hp +AZ +Du +FA Yw LM LM @@ -1256,41 +1013,41 @@ LM (23,1,1) = {" bz LM -DE -JQ +ZK +oT LM -DV -NI -Hp +mU +Ed +FA LM -DE -JQ +ZK +oT LM -DE -JQ +ZK +oT LM -DE -ux +ZK +BZ LM "} (24,1,1) = {" bz LM -zA -Dt +oc +Oh LM -tI -IW -TD +SS +Qy +RY LM -zA -Zw +oc +EX LM -zA -Mj +oc +PL LM -zA -qk +oc +EZ LM "} (25,1,1) = {" @@ -1299,9 +1056,9 @@ LM LQ Mo LM -DV -NI -Hp +mU +Ed +FA LM LQ Mo diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm index fde4404791..950c47e07a 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.engineeroffice.dmm @@ -2,41 +2,26 @@ "a" = ( /turf/closed/wall/prison, /area/template_noop) -"e" = ( -/turf/open/floor/plating/prison, -/area/template_noop) -"h" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/template_noop) -"k" = ( -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 29 - }, -/turf/open/floor/prison{ +"b" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "greenfull" + pixel_x = 10; + pixel_y = -3 }, +/obj/item/storage/backpack/marine/engineerpack/satchel, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"n" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"c" = ( +/obj/item/storage/firstaid/regular/empty{ + pixel_x = 14 }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"o" = ( -/turf/closed/wall/mineral/bone_resin, -/area/template_noop) -"s" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, +"e" = ( +/turf/open/floor/plating/prison, /area/template_noop) -"t" = ( +"g" = ( /obj/structure/filingcabinet{ pixel_x = 8; pixel_y = 4 @@ -45,26 +30,39 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/obj/item/pamphlet/engineer, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"x" = ( +"m" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/cell/super{ - pixel_y = 12 +/obj/structure/machinery/microwave{ + icon_state = "mwo"; + pixel_y = 6 }, -/obj/item/cell/super, -/obj/item/storage/pill_bottle/happy{ - layer = 2.8; - pixel_y = -7 +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"o" = ( +/turf/closed/wall/mineral/bone_resin, +/area/template_noop) +"q" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 29 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"r" = ( +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"w" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "greenfull" + pixel_x = 10; + pixel_y = -3 }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"z" = ( +"y" = ( /obj/structure/coatrack, /obj/structure/machinery/light/double/blue{ dir = 4; @@ -76,38 +74,35 @@ pixel_x = -2; pixel_y = 13 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"D" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 +"A" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, +/turf/open/floor/prison/floor_plate, /area/template_noop) -"E" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/paper{ - desc = "The image appears to be someone's backside, the page number is labled as 259." +"C" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/prison/greenfull/east, +/area/template_noop) +"G" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/beret/eng{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/book/manual/engineering_guide{ + pixel_x = -4 }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"F" = ( +"K" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/electrical{ pixel_x = -1; @@ -126,21 +121,13 @@ /obj/item/weapon/butterfly{ pixel_x = 17 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"O" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - icon_state = "mwo"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +"M" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/template_noop) +"P" = ( +/turf/open/floor/prison/floor_plate, /area/template_noop) "Q" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -149,60 +136,29 @@ }, /turf/open/floor/plating/prison, /area/template_noop) -"S" = ( -/obj/item/storage/firstaid/regular/empty{ - pixel_x = 14 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/template_noop) -"T" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/template_noop) -"V" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +"R" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/super{ + pixel_y = 12 }, -/obj/item/pamphlet/engineer, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/cell/super, +/obj/item/storage/pill_bottle/happy{ + layer = 2.8; + pixel_y = -7 }, +/turf/open/floor/prison/greenfull/east, /area/template_noop) -"X" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"W" = ( +/obj/structure/machinery/photocopier, /obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; pixel_y = -3 }, -/obj/item/storage/backpack/marine/engineerpack/satchel, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/template_noop) -"Z" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/beret/eng{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/book/manual/engineering_guide{ - pixel_x = -4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/paper{ + desc = "The image appears to be someone's backside, the page number is labled as 259." }, +/turf/open/floor/prison/floor_plate, /area/template_noop) (1,1,1) = {" @@ -216,20 +172,20 @@ a "} (2,1,1) = {" Q -h -n +r +C a -F -S +K +c Q "} (3,1,1) = {" a -O -D +m +w a -x -z +R +y a "} (4,1,1) = {" @@ -243,20 +199,20 @@ a "} (5,1,1) = {" Q -h -Z +r +G a -V -h +g +r Q "} (6,1,1) = {" a -k -X +q +b a -t -E +A +W a "} (7,1,1) = {" @@ -278,11 +234,11 @@ e e "} (9,1,1) = {" -T +P o -T -s -s -s -s +P +M +M +M +M "} diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm index ca4c904c6b..0ad96220d8 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.pizzatime.dmm @@ -1,16 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "b" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southwest, /area/template_noop) "c" = ( /obj/structure/surface/table/reinforced/prison, @@ -26,9 +21,7 @@ pixel_x = -1; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "d" = ( /obj/structure/surface/table/reinforced/prison, @@ -46,17 +39,12 @@ /area/template_noop) "e" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northwest, /area/template_noop) "f" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "g" = ( /obj/structure/surface/table/reinforced/prison, @@ -67,9 +55,7 @@ pixel_y = -2 }, /obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "i" = ( /turf/open/space, @@ -90,10 +76,7 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/southeast, /area/template_noop) "k" = ( /obj/structure/surface/table/reinforced/prison, @@ -101,17 +84,13 @@ pixel_y = 32 }, /obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "l" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /obj/item/reagent_container/food/condiment/enzyme, /obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "m" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -119,15 +98,11 @@ /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, /obj/item/reagent_container/food/snacks/grown/tomato, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "o" = ( /obj/effect/landmark/corpsespawner/pizza/burst, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "p" = ( /obj/structure/surface/table/reinforced/prison, @@ -156,32 +131,21 @@ pixel_y = -16; pixel_x = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "r" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/template_noop) "s" = ( /obj/structure/machinery/door/airlock/prison_hatch/autoname, /turf/open/floor/plating/prison, /area/template_noop) "t" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/northeast, /area/template_noop) "u" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "v" = ( /obj/structure/window/framed/prison, @@ -196,9 +160,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "y" = ( /obj/structure/closet/crate/freezer, @@ -207,18 +169,13 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, /obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "z" = ( /turf/closed/wall/prison, /area/template_noop) "A" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/north, /area/template_noop) "B" = ( /obj/structure/surface/table/reinforced/prison, @@ -231,9 +188,7 @@ pixel_x = 12; pixel_y = -2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "C" = ( /obj/structure/surface/table/reinforced/prison, @@ -249,23 +204,16 @@ /obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "D" = ( /obj/item/stool, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/west, /area/template_noop) "E" = ( /obj/structure/machinery/gibber, /obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "G" = ( /obj/structure/surface/table/reinforced/prison, @@ -292,44 +240,30 @@ /obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, /obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "I" = ( /obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "K" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/weapon/pizza_cutter, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/obj/item/tool/kitchen/pizzacutter, +/turf/open/floor/prison/kitchen, /area/template_noop) "L" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "M" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/prison, /area/template_noop) "N" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "O" = ( /obj/item/card/id/pizza, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/blue/east, /area/template_noop) "P" = ( /obj/structure/lattice, @@ -341,9 +275,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "S" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -361,9 +293,7 @@ pixel_y = 2 }, /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/template_noop) "T" = ( /turf/closed/wall/r_wall/prison_unmeltable, @@ -382,15 +312,11 @@ /turf/open/floor/plating/prison, /area/template_noop) "X" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "Y" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue, /area/template_noop) (1,1,1) = {" diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm index 8fd9946541..bba4398e4d 100644 --- a/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm +++ b/maps/map_files/FOP_v3_Sciannex/sprinkles/30.repairpanelslz.dmm @@ -26,9 +26,7 @@ /turf/open/space/basic, /area/template_noop) "e" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/template_noop) "f" = ( /obj/item/stack/sandbags_empty/half, @@ -62,7 +60,8 @@ /area/template_noop) "l" = ( /obj/item/limb/head/synth{ - pixel_x = -9 + pixel_x = -9; + icon_state = "scandinavian_head_m" }, /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -118,10 +117,7 @@ /area/template_noop) "y" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/template_noop) "z" = ( /obj/structure/platform/kutjevo/smooth{ @@ -140,11 +136,6 @@ }, /turf/open/space, /area/template_noop) -"C" = ( -/obj/structure/window/framed/prison/reinforced/hull, -/obj/structure/window/framed/prison/reinforced/hull, -/turf/open/floor/plating/prison, -/area/template_noop) "D" = ( /obj/item/trash/used_stasis_bag{ desc = "Wow, instant sand. They really have everything in space."; @@ -164,13 +155,10 @@ /turf/open/floor/plating/prison, /area/template_noop) "G" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/north, /area/template_noop) "H" = ( -/obj/structure/reagent_dispensers/oxygentank, +/obj/structure/reagent_dispensers/fueltank/oxygentank, /turf/open/space, /area/template_noop) "I" = ( @@ -197,21 +185,14 @@ /turf/open/space, /area/template_noop) "L" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/template_noop) "M" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space, /area/template_noop) "N" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" - }, +/turf/open/floor/solarpanel, /area/template_noop) "O" = ( /obj/structure/platform/kutjevo/smooth, @@ -238,9 +219,7 @@ /area/template_noop) "T" = ( /obj/item/stack/sandbags_empty/half, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/template_noop) "U" = ( /obj/item/stack/sheet/metal, @@ -260,10 +239,7 @@ /turf/open/floor/almayer_hull, /area/template_noop) "X" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/northwest, /area/template_noop) "Y" = ( /obj/structure/platform/kutjevo/smooth{ @@ -283,7 +259,7 @@ (1,1,1) = {" x -C +F F F F diff --git a/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm new file mode 100644 index 0000000000..44c403d021 --- /dev/null +++ b/maps/map_files/FOP_v3_Sciannex/standalone/riot_in_progress.dmm @@ -0,0 +1,1959 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"am" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 6 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"aE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"aK" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"aX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"bl" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bm" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"bC" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"bO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ce" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"ch" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"cn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"co" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"cr" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"cI" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"cZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"do" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"dT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"eK" = ( +/obj/structure/window/framed/prison/reinforced/hull, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"fd" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fh" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/prison, +/area/fiorina/station/security) +"fy" = ( +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"fX" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"fZ" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison, +/area/fiorina/station/security) +"gk" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/reagent_container/glass/bottle/robot/antitoxin, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"gI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"gT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"gV" = ( +/obj/structure/window/framed/prison, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"hg" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hI" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"hY" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"is" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"iK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ji" = ( +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"jI" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jJ" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"jL" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"jW" = ( +/obj/item/frame/table/almayer, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ke" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"kX" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/storage/belt/shotgun, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lv" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"lA" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/lz/near_lzII) +"lE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"lF" = ( +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"lO" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"lP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/storage/box/pillbottles, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"lZ" = ( +/obj/item/clothing/under/marine/ua_riot, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"ma" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"mf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mn" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"mt" = ( +/obj/effect/spawner/random/gun/shotgun/midchance, +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"mD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/nade_box/tear_gas, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"nl" = ( +/turf/template_noop, +/area/template_noop) +"np" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"nD" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"nN" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"oi" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname{ + locked = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"on" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/launcher/grenade/m81, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"oE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"oS" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pa" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pd" = ( +/obj/item/ammo_magazine/handful/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"pn" = ( +/obj/effect/acid_hole, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"pp" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pE" = ( +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/prison, +/area/fiorina/station/security) +"pN" = ( +/obj/item/ammo_box/magazine/shotgun/beanbag, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"pR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"pV" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"qd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qw" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"qY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"rg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"rl" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rP" = ( +/obj/item/reagent_container/spray/pepper, +/turf/open/floor/prison, +/area/fiorina/station/security) +"rR" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sj" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"sq" = ( +/turf/open/floor/prison, +/area/fiorina/station/security) +"sA" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"tf" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison, +/area/fiorina/station/security) +"th" = ( +/obj/item/weapon/baton, +/turf/open/floor/prison, +/area/fiorina/station/security) +"tl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"tv" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"ty" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"tS" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/clothing/accessory/storage/holster, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"uQ" = ( +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"uX" = ( +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"vf" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"vq" = ( +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"vS" = ( +/obj/structure/filingcabinet, +/obj/structure/filingcabinet{ + pixel_x = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"wF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"wH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/circuitboard/airlock, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"wJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"wW" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"xp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"xv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"xI" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_cmb, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"xM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/handset{ + pixel_x = 7; + pixel_y = -16 + }, +/obj/item/handset{ + pixel_x = -3; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"xW" = ( +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"yf" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"yn" = ( +/obj/item/weapon/classic_baton, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"yv" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"yP" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zb" = ( +/obj/structure/machinery/light/double/blue, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zx" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 10 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"zI" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Ac" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ai" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AD" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/security_space_law{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"AY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/handset{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/handset{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Bd" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/fiorina/station/security) +"BJ" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Cb" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"CO" = ( +/obj/item/ammo_magazine/handful/shotgun/beanbag, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"De" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"DH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Ek" = ( +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/stack/rods, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"ER" = ( +/obj/effect/landmark/survivor_spawner/fiorina_armory_riot_control, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"EV" = ( +/obj/item/frame/rack, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Fj" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Fr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/fiorina/lz/near_lzII) +"Fw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"FH" = ( +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"FK" = ( +/obj/item/frame/rack, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"FQ" = ( +/obj/effect/landmark/corpsespawner/ua_riot, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison, +/area/fiorina/station/security) +"FZ" = ( +/obj/item/weapon/shield/riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Gd" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/storage/pill_bottle/alkysine, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Gl" = ( +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"GH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/handset{ + pixel_y = -4 + }, +/obj/item/handset{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/tool/pen, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"GZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ho" = ( +/obj/structure/window_frame/prison/reinforced, +/obj/item/shard, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"HF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"HH" = ( +/obj/item/weapon/gun/launcher/grenade/m81/riot, +/turf/open/floor/prison, +/area/fiorina/station/security) +"HL" = ( +/obj/item/clothing/under/color/orange, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/floor_marked/southwest, +/area/fiorina/lz/near_lzII) +"HW" = ( +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/item/tool/screwdriver{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ie" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Iz" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"IG" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/prison, +/area/fiorina/station/security) +"IK" = ( +/obj/item/clothing/head/helmet/marine/veteran/ua_riot, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/lz/near_lzII) +"JR" = ( +/obj/item/ammo_casing, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Kb" = ( +/obj/item/weapon/baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"KU" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Lj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"Mg" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"Mp" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/item/explosive/grenade/custom/teargas, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"MX" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Ne" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/weapon/gun/smg/mp5, +/obj/item/storage/belt/marine, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"NL" = ( +/obj/structure/platform, +/turf/open/floor/prison/cell_stripe/west, +/area/fiorina/station/security) +"NN" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Ox" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"OA" = ( +/obj/item/implanter/compressed, +/obj/structure/safe, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"OE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"OV" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Pt" = ( +/obj/item/prop/helmetgarb/riot_shield, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"PA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Qv" = ( +/obj/structure/machinery/door/airlock/prison_hatch/autoname, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"QC" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"QF" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"QJ" = ( +/turf/closed/wall/prison, +/area/fiorina/station/security) +"QV" = ( +/obj/item/frame/rack, +/obj/item/clothing/under/marine/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Re" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"RR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/tool/lighter, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Sd" = ( +/obj/item/poster, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Sl" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall/prison, +/area/fiorina/station/security) +"Sm" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Sn" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" + }, +/turf/open/floor/prison/darkredfull2, +/area/fiorina/station/security) +"Sp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/item/handset{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Su" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"SD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"SE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"Tn" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Tp" = ( +/obj/item/paper/crumpled, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"TO" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"UE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"UU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Va" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Vb" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Vd" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"Vs" = ( +/obj/structure/closet/secure_closet/guncabinet{ + req_access = null + }, +/obj/item/clothing/under/marine/ua_riot, +/obj/item/clothing/suit/storage/marine/veteran/ua_riot, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"VF" = ( +/turf/closed/wall/prison, +/area/fiorina/lz/near_lzII) +"VG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Wc" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison, +/area/fiorina/lz/near_lzII) +"Wp" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Ws" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Wy" = ( +/obj/item/weapon/shield/riot, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"WB" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/fiorina/station/security) +"WG" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"WI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/handset{ + pixel_x = 6; + pixel_y = -15 + }, +/obj/item/handset{ + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"Xj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1; + pixel_y = 21 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"XA" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/prison, +/area/fiorina/station/security) +"XO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/fiorina/lz/near_lzII) +"XV" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/fiorina/station/security) +"Yt" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/fiorina/station/security) +"YH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/prison/floor_plate, +/area/fiorina/station/security) +"YI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"YL" = ( +/obj/structure/window/framed/prison/reinforced, +/turf/open/floor/plating/prison, +/area/fiorina/station/security) +"YS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/clothing/mask/cigarette, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_y = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"YZ" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/item/shard/shrapnel, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) +"Zg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/flora/pottedplant{ + pixel_y = 9 + }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/prison, +/area/fiorina/station/security) +"Zi" = ( +/obj/structure/machinery/line_nexter, +/obj/item/stack/cable_coil, +/turf/open/floor/prison/red/west, +/area/fiorina/station/security) +"Zo" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/redfull, +/area/fiorina/station/security) + +(1,1,1) = {" +nl +nl +nl +nl +nl +Fj +xW +FH +FH +FH +xW +Ie +Tn +Zg +vq +vq +Sl +vq +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(2,1,1) = {" +nl +nl +nl +nl +nl +vq +Ac +is +is +is +Ac +vq +vq +vq +vq +on +yP +Vs +vq +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(3,1,1) = {" +nl +nl +nl +nl +nl +pn +yf +ch +ch +hI +do +vq +FH +jJ +FH +jJ +NN +lZ +EV +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(4,1,1) = {" +nl +nl +nl +nl +nl +vq +sA +sq +HH +sq +FH +PA +sq +tf +Gd +lP +Va +XA +FK +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(5,1,1) = {" +vq +vq +vq +vq +vq +vq +qQ +wW +sq +sq +FH +PA +sq +sq +wJ +mf +gk +fZ +QV +vq +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +nl +"} +(6,1,1) = {" +nl +nl +YL +lR +xW +lR +xW +FH +ER +pN +xW +vq +fd +fd +vq +lE +kX +aK +vq +vq +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +QJ +cr +"} +(7,1,1) = {" +nl +nl +YL +dT +GH +dT +xW +jI +FH +FH +bm +Su +YH +hg +PA +sq +sq +sq +PA +FH +sq +OA +QJ +YS +xW +ke +YL +FH +pV +Vb +QJ +"} +(8,1,1) = {" +nl +nl +YL +DH +xM +cn +HW +fy +Bd +tl +Zi +bO +FH +Pt +vq +BJ +rR +Ne +vq +tS +sq +Wp +QJ +Ai +sq +fh +PA +xW +hY +WG +wH +"} +(9,1,1) = {" +nl +vq +vq +qd +uX +sj +Tp +ER +mD +QJ +QJ +QJ +QJ +QJ +vq +vq +vq +vq +vq +Iz +FH +zx +QJ +Ws +sq +iK +YL +wF +jW +oE +QJ +"} +(10,1,1) = {" +nl +YL +lR +qw +lR +xW +pd +sq +sq +lF +Wy +Sd +FH +TO +Ox +vq +xW +xW +QJ +QJ +Qv +QJ +QJ +RR +sq +xW +QJ +YL +Ho +YL +cr +"} +(11,1,1) = {" +nl +YL +dT +WI +dT +xW +xI +rP +th +bC +FH +mt +rl +MX +Ox +QJ +Mp +xW +xW +xW +FH +xW +QJ +zA +sq +xW +QJ +pR +uQ +uQ +uQ +"} +(12,1,1) = {" +nl +YL +DH +AY +DH +xW +xW +FZ +sq +CO +hI +FH +FH +Sm +nD +IG +xW +wW +sq +sq +sq +xW +IG +xW +sq +xW +QJ +Mg +aE +nN +nN +"} +(13,1,1) = {" +vq +vq +qd +xW +xW +Kb +xW +ER +gI +QJ +Yt +Yt +XV +Yt +cI +QJ +Xj +sq +xW +xW +sq +QC +PA +FH +sq +xW +QJ +wi +nN +nN +nN +"} +(14,1,1) = {" +YL +Fw +ji +xW +pd +qw +JR +pp +QJ +QJ +lv +lv +XV +lv +NL +YL +Zo +sq +AM +YI +FQ +QC +PA +FH +sq +xW +QJ +SD +nN +nN +nN +"} +(15,1,1) = {" +YL +fs +xW +qw +xW +xW +xW +sq +IG +FH +FH +FH +vS +FH +Ox +YL +bl +sq +uh +am +sq +xW +QJ +xW +xW +xW +QJ +Mg +nN +nN +uQ +"} +(16,1,1) = {" +YL +zI +cZ +xW +UU +jb +YZ +pE +QJ +Cb +FH +fh +gl +FH +Ox +YL +nf +sq +HF +AD +sq +xW +QJ +vq +QJ +QJ +QJ +qY +Fr +Fr +uQ +"} +(17,1,1) = {" +vq +vq +XV +eK +eK +eK +XV +QJ +QJ +Qv +vq +vq +SE +ma +bb +QJ +qX +sq +sq +sq +sq +oS +oS +vq +VF +OE +Mg +uQ +Fr +Fr +uQ +"} +(18,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +mn +Gl +Gl +fX +YL +jL +lA +jL +gV +VG +rg +xW +pa +GZ +lR +UE +vq +gT +aE +uQ +uQ +nN +nN +uQ +"} +(19,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +Sn +Gl +WB +Re +YL +vf +HL +vf +gV +tv +zb +QJ +oi +QJ +aX +zA +vq +Wc +uQ +uQ +uQ +nN +nN +uQ +"} +(20,1,1) = {" +nl +nl +nl +nl +nl +nl +eK +co +De +Lj +xv +YL +IK +lO +yv +QJ +Sp +Ek +cr +OV +cr +gV +gV +vq +ty +uQ +uQ +uQ +nN +nN +uQ +"} +(21,1,1) = {" +nl +nl +nl +nl +nl +nl +XV +YL +YL +vq +YL +vq +nN +Vd +nN +xp +KU +uQ +xp +yn +xp +uQ +uQ +xp +nN +uQ +ce +uQ +XO +QF +np +"} diff --git a/maps/map_files/Ice_Colony_v1/Ice_Colony_v1.dmm b/maps/map_files/Ice_Colony_v1/Ice_Colony_v1.dmm index 05297735f3..d6d8579e60 100644 --- a/maps/map_files/Ice_Colony_v1/Ice_Colony_v1.dmm +++ b/maps/map_files/Ice_Colony_v1/Ice_Colony_v1.dmm @@ -3,15 +3,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"aas" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/storage) "aau" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, @@ -23,57 +14,48 @@ /obj/item/cell, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"aaK" = ( +"abu" = ( /obj/structure/surface/table, -/obj/item/weapon/pole/wooden_cane, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/dorms) +"abE" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"abM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/center) "abQ" = ( /obj/structure/xenoautopsy/tank/broken, /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"abV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"acP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/ice_colony/surface/engineering/generator) -"acV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/obj/item/cell, -/turf/open/floor{ - icon_state = "darkyellow2" +"acJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/surface/research/tech_storage) -"adg" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/dark, +/area/ice_colony/surface/research) +"acU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Colony Power Substation"; + req_access_txt = "100" }, -/area/ice_colony/surface/storage_unit/research) -"adP" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/substation/smes) +"adp" = ( +/obj/structure/machinery/door/airlock/secure, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway) "aed" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -84,6 +66,12 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast/apc_support) +"aeB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering/locker) "aeC" = ( /obj/structure/machinery/light{ dir = 1 @@ -91,6 +79,11 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) +"aeG" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/poster, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "aeM" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/research) @@ -98,18 +91,6 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"afj" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"afL" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) "afP" = ( /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, @@ -127,56 +108,49 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/research/sample) +"agj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "agI" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/valley/south) -"ahc" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"ahd" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) +"agW" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/lv624/lazarus/landing_zones/lz2) +"ahe" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) "ahn" = ( /turf/closed/shuttle{ icon_state = "wall3" }, /area/ice_colony/exterior/underground/caves/dig) -"ahr" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, +"ahI" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"aiB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering) -"ahU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/storage) -"aje" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"ajh" = ( +/obj/structure/surface/table/holotable, +/obj/item/paper, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"ajH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) +"ajR" = ( +/obj/structure/machinery/door/window/eastright{ + name = "Technical Storage" }, -/area/ice_colony/surface/garage/one) +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) "ajU" = ( /obj/structure/prop/static_tank/water, /turf/open/floor/plating/icefloor, @@ -189,19 +163,12 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"akM" = ( -/obj/structure/machinery/computer3, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"alx" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"akS" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/ice_colony/underground/security) +/turf/open/floor/plating/icefloor/warnplate/west, +/area/lv624/lazarus/landing_zones/lz2) "amh" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -211,97 +178,94 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"amr" = ( +"aml" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"amE" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"amF" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/glass/bottle/bicaridine, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"ana" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms/canteen) -"aoL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) +"amn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/area/ice_colony/surface/clinic/treatment) +/obj/item/cell, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/tool) +"anE" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"anV" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) +"aod" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"aos" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) "aoN" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"apg" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) "apv" = ( /obj/structure/machinery/door/window{ dir = 2 }, /turf/open/floor/engine, /area/ice_colony/underground/research) +"apM" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "aqa" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /obj/item/tool/wirecutters, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"aqx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"aqF" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) +"aqG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) "aqN" = ( /obj/structure/surface/rack, /obj/item/stack/medical/ointment, /obj/item/roller, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"asr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, +"aqZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/popcorn, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"arj" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hangar/hallway) +"aro" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/turf/open/floor/darkred2/north, /area/ice_colony/underground/medical/lobby) +"arV" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering) +"asm" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "asx" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/chair/office/light{ @@ -309,15 +273,16 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"asY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) +"atr" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) +"atP" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"atQ" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/security) "aum" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -325,140 +290,127 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"avi" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"awb" = ( -/obj/structure/surface/table/holotable, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"axc" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor{ - icon_state = "darkblue2" +"auG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/underground/command/center) -"axm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Engineering Backup Power Storage"; - req_access_txt = "100" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering/substation) +"auX" = ( +/obj/structure/shuttle/diagonal{ + dir = 10; + icon_state = "wall" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"avb" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"awr" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway/south_east) +"awE" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) +"axu" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/storage) +"axQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms/restroom_w) +"axU" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) +"ayB" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/storage) +"ayQ" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) -"axG" = ( -/obj/structure/bed/chair/wood/normal{ +"azC" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"ayi" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"azc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"azJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) +"azF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/holowindow{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/reception) +"aAk" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "aAr" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"aAx" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ +"aAt" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) -"aAA" = ( -/obj/structure/prop/static_tank/fuel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"aAD" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"aAw" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "ice_dorm_upper"; + name = "Dormitory Upper Floor"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; + airlock_exit = "elevator"; + elevator_network = "dorm"; + airlock_area = /area/shuttle/elevator2/ground }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/ground) "aBa" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/security/brig) -"aBM" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aBX" = ( +"aBe" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"aBD" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) +/obj/item/storage/box/donkpockets, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) "aBZ" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"aCs" = ( -/obj/structure/coatrack, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) "aCF" = ( /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"aCV" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"aDm" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/substation) "aDp" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"aDs" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +"aEe" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, -/area/ice_colony/surface/garage/two) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/library) +"aED" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) "aFn" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -466,53 +418,40 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"aFS" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"aFV" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"aGi" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) "aGW" = ( /obj/structure/machinery/vending/snack/packaged, /turf/open/floor/wood, /area/ice_colony/underground/command/center) +"aHn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/storage) "aHq" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) +"aHt" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) "aHu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"aIq" = ( -/obj/structure/machinery/door/window{ - name = "Anomaly Gear" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +"aJo" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/surface/excavation) +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/telecomms) +"aJv" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/lv624/lazarus/landing_zones/lz2) "aJy" = ( /obj/structure/machinery/door_control{ id = "Classic_06"; @@ -520,41 +459,10 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"aJE" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkblue2" - }, +"aJI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/underground/security/armory) -"aJS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_15"; - pixel_y = 10 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"aKj" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"aKB" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"aKN" = ( -/obj/structure/pipes/unary/outlet_injector, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) "aKV" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -564,10 +472,24 @@ "aLb" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northeast) +"aLl" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) "aLw" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) +"aLM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_armoury"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/security/armory) "aLX" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, @@ -581,140 +503,105 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"aMZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"aNa" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"aNm" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/storage) "aNo" = ( /obj/structure/surface/table/holotable, /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"aNB" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"aNT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aPi" = ( -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor{ - icon_state = "dark" +"aNp" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"aPc" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_1"; + name = "garage shutter control"; + pixel_y = -30 }, -/area/ice_colony/surface/storage_unit/research) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "aPj" = ( /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"aQQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) -"aQT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 +"aPR" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) +"aQv" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"aQD" = ( +/obj/structure/computerframe{ + anchored = 1 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"aQP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"aRe" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"aRR" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"aRV" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) "aSo" = ( /obj/structure/surface/table, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aSE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" - }, -/obj/structure/machinery/door_control{ - id = "hangar_ice_2"; - name = "hangar shutter control" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/beta) -"aSQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"aTd" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"aTm" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 8 +"aTN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/turf/open/floor/engine, -/area/ice_colony/underground/research) -"aTJ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"aTZ" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/clinic/treatment) +"aUm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/substation/smes) +"aUQ" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) -"aUk" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"aVa" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/disposals) "aVq" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"aVG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) "aVS" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, @@ -727,135 +614,104 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/engine, /area/ice_colony/underground/research) -"aWW" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"aXC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/surface/dorms/canteen) -"aXf" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"aYX" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) +"aZn" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/underground) +"aZr" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/surface/hydroponics/north) -"aXQ" = ( -/obj/structure/surface/table/holotable, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"aZE" = ( +/obj/structure/surface/table, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"bak" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_4"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/research/work) -"aXS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"bam" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/engineering/locker) -"aXT" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aYf" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"aZH" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "research_storage_ladder" }, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"bar" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/crew/canteen) +"baB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) "baS" = ( /obj/structure/surface/table/holotable, /obj/effect/spawner/random/technology_scanner, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"baY" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) +"bbT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "bcm" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"bcL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"bdb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"bcO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/underground/engineering/substation) -"bdn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"bdD" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"bdF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"bdJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) "bdM" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"bdX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"bel" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/maintenance/south) +"beb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"bed" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) "beD" = ( /obj/structure/surface/table/holotable, /obj/item/storage/box/beakers, /turf/open/floor/engine, /area/ice_colony/underground/research) +"beK" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) "beW" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, @@ -865,124 +721,93 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) -"bfl" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "bft" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"bhc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +"bfM" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle2"; + dockId = "ice_dorm_upper"; + pixel_y = 32 }, -/area/ice_colony/surface/excavation) -"bhg" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) +"bgp" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/area/ice_colony/underground/medical/lobby) +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"bgQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) "bhW" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/requesitions) -"biJ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/popcorn, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"biN" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "dark" - }, +"biP" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/storage_unit/research) -"bjS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"bjZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"bkS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" +"bjh" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"bkX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms/canteen) +"blx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "Classic_0"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "bly" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"bma" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/research/tech_storage) -"bmF" = ( -/obj/structure/prop/static_tank/fuel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) -"bmM" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"bmn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/clinic/treatment) -"bnj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/reception) +"bmC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/substation) -"bnz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) +"bnK" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"bof" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "boi" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"boB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) "bpa" = ( /obj/structure/machinery/disposal, /turf/open/floor/plating/icefloor, @@ -996,108 +821,81 @@ icon_state = "swall11" }, /area/ice_colony/surface/hangar/beta) -"bqE" = ( -/obj/structure/machinery/power/apc/weak{ +"bqH" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/security/brig) -"bqR" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/library) +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/alpha) "bru" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/ice_colony/underground/research) -"brz" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bsO" = ( +"bry" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/garage/two) -"btd" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bto" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) +"brz" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bsA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"bte" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/clinic/treatment) "btz" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"btA" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"buU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"btF" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"btR" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/surface/research/tech_storage) +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"buQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) "bvE" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/telecomms) +"bvF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/research/work) +"bwH" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "bwW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"bxE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"byv" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"byx" = ( +"bxc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/maintenance/east) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/library) +"byM" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) "byX" = ( /obj/structure/coatrack, /obj/structure/machinery/light{ @@ -1105,17 +903,10 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"bzi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) +"bzl" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hangar/hallway) "bzq" = ( /obj/structure/machinery/light, /obj/structure/bed/chair/wood/normal{ @@ -1123,13 +914,6 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"bzV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) "bAl" = ( /obj/structure/surface/rack, /turf/open/floor/wood, @@ -1138,129 +922,82 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"bAE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"bCq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"bAF" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/dorm_r) +"bAJ" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"bBf" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) +"bBg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/hydroponics/north) -"bCu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"bCK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"bBw" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/underground/security/brig) -"bCO" = ( -/obj/structure/machinery/door/airlock/secure, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"bCh" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/reception) -"bDf" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/tool/screwdriver, -/turf/open/floor{ +"bDb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"bDg" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "darkyellowcorners2" + id = "ice_classic_underground_research_secure_blast"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/hangar/alpha) -"bDp" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"bDm" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"bDH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) +"bEi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/exterior/underground/caves/dig) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) "bEz" = ( /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"bEJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/lavatory) "bEO" = ( /obj/structure/bed/chair/wood/normal, /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"bFs" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"bFS" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/storage) -"bGh" = ( +"bEV" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering) +"bGD" = ( /obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"bGn" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"bGw" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"bGB" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"bGU" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) +/obj/effect/spawner/random/tool, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "bHb" = ( /obj/structure/surface/table, /obj/item/stack/medical/splint, @@ -1272,26 +1009,42 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"bHZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"bHC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Colony Engineering Locker Room"; + req_access_txt = "100" }, -/area/ice_colony/surface/garage/one) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering) +"bIt" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"bII" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/alpha) "bJc" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/fancy/cigar, /obj/item/storage/box/matches, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"bJk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor{ - icon_state = "darkblue2" +"bJj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/center) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/lavatory) +"bJv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) +"bJD" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) "bJE" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -1299,146 +1052,117 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) +"bJR" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"bKG" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "bKO" = ( /obj/structure/surface/rack, /obj/item/device/t_scanner, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"bKU" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"bLm" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"bKT" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/research/storage) +"bLz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/human/burger, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "bMb" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"bMX" = ( -/obj/structure/closet/crate, -/obj/item/poster, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"bMD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/masks, +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) "bMZ" = ( /turf/open/gm/dirt, /area/ice_colony/underground/crew/dorm_r) -"bNH" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" +"bNo" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"bNY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/surface/research) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"bOo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"bOs" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "bOJ" = ( /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor, /area/ice_colony/surface/requesitions) -"bOY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"bOX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 }, -/area/ice_colony/surface/dorms) -"bPP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"bPp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/reception) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/research/work) +"bQb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "bQf" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research/temporary) -"bQx" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, -/area/ice_colony/exterior/underground/caves/dig) -"bQO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"bQT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 1 +"bQR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/electric) +"bQY" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"bSb" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"bSk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/storage) +"bSl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/security) -"bRf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"bRH" = ( -/obj/structure/surface/rack, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"bRL" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"bSv" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) -"bSD" = ( -/obj/structure/closet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"bSJ" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"bTo" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) "bTz" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -1447,30 +1171,12 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"bUw" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway/north_west) -"bUA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 +"bUy" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"bUC" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/dorms) "bVe" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/beta) @@ -1478,158 +1184,128 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"bVl" = ( +"bVE" = ( /obj/structure/surface/table/holotable, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +/obj/item/folder/black_random, +/turf/open/floor/darkgreencorners2/east, /area/ice_colony/underground/crew/canteen) +"bVI" = ( +/obj/structure/surface/table, +/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) "bVS" = ( /obj/structure/inflatable/door, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"bWI" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"bVU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/surface/hydroponics/north) -"bXq" = ( -/obj/structure/machinery/door/window{ +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"bWC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/bar/bar) +"bWV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/research/sample) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) +"bXd" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) "bXs" = ( /obj/structure/surface/rack, /obj/item/device/multitool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"bYy" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"bYF" = ( -/obj/structure/machinery/door/window/eastright{ - name = "Technical Storage" +"bYo" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/toilet{ + dir = 8 }, -/area/ice_colony/surface/excavation) +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) "bZt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"bZL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"bZT" = ( -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, +"bZE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/crew/canteen) -"cae" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" +"bZL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"cam" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/space/compression, +/obj/item/clothing/suit/space/compression, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/research/work) +"cas" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_2"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/substation) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "cax" = ( /turf/closed/wall, /area/ice_colony/surface/hangar/hallway) -"caP" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/security) "cbW" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southwest) -"ccx" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"cdd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"cdA" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkgreencorners2" +"ccC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "garage_ice_2"; + name = "\improper Garage Shutters" }, -/area/ice_colony/surface/hangar/hallway) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/two) "cdB" = ( /obj/structure/surface/table/holotable, /obj/item/storage/firstaid, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"ceF" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/command/center) -"cfR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"cfS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"cgI" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/launcher/grenade/m92, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) +"cdY" = ( +/obj/structure/surface/table, +/obj/item/tool/extinguisher/mini, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"cef" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/syringe, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"cfw" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/research/work) +"cgj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"cgE" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/darkred2, +/area/ice_colony/underground/medical/lobby) "chy" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/engine, @@ -1637,38 +1313,45 @@ "chz" = ( /turf/closed/wall, /area/ice_colony/surface/dorms/restroom_w) -"chQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/research/storage) "cif" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"civ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, +"cix" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/ice_colony/underground/research/work) -"cjl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" +"cjm" = ( +/obj/structure/computerframe{ + anchored = 1 }, -/area/ice_colony/surface/research) -"ckH" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"cjH" = ( +/obj/structure/surface/table/holotable, +/obj/structure/machinery/recharger, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"cjY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/ice_colony/underground/crew/lavatory) +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"ckA" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"cln" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) "clE" = ( /obj/structure/surface/rack, /obj/item/tool/weldingtool, @@ -1677,151 +1360,112 @@ "clZ" = ( /turf/closed/wall, /area/ice_colony/surface/storage_unit) -"cnl" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"cny" = ( -/obj/structure/surface/table/holotable, -/obj/item/stock_parts/matter_bin, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"cnE" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) -"cnL" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"cpA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cmo" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/locker) +"cmx" = ( +/obj/docking_port/stationary/trijent_elevator{ + id = "ice_lab_upper"; + elevator_network = "lab"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/lab; + name = "Laboratory Upper Floor"; + dir = 2; + height = 5; + width = 8; + airlock_area = /area/shuttle/elevator3/ground; + airlock_exit = "elevator" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/ground) +"cnU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) +"coH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/underground/research/work) -"cqY" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms) +"cpi" = ( +/obj/structure/surface/rack, +/obj/item/tool/hatchet, +/obj/item/tool/hatchet, +/obj/item/tool/minihoe, +/obj/item/tool/minihoe, +/obj/item/tool/minihoe, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/north) +"cpP" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"crY" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) "csA" = ( /obj/structure/surface/table/holotable, /obj/structure/prop/server_equipment/laptop, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"csG" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) "csJ" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/maintenance/south) -"csZ" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "ship_ladder"; - pixel_y = 16 - }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"ctE" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"ctp" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/security/armory) "ctH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"ctY" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_0002"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/power) -"cuh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) "cui" = ( /obj/structure/machinery/optable, /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"cux" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"cuL" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) "cuX" = ( /obj/structure/window/shuttle, /turf/open/shuttle/plating, /area/ice_colony/surface/hangar/beta) -"cvk" = ( -/obj/structure/toilet, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"cvK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"cuY" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 }, -/area/ice_colony/surface/hangar/beta) -"cws" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/effect/decal/warning_stripes{ + pixel_y = 32 }, -/area/ice_colony/surface/garage/repair) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "cwA" = ( /turf/closed/wall, /area/ice_colony/surface/requesitions) +"cwX" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) "cxj" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -1831,41 +1475,22 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"cxo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Colony Engineering Generator Room"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/engineering/generator) -"cxB" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway) -"cxU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"cxl" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"cxF" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/electric) +"cxW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/underground/research/work) "cyt" = ( /turf/open/floor, /area/ice_colony/surface/mining) -"czp" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) "czH" = ( /obj/structure/surface/table/woodentable, /obj/structure/bedsheetbin{ @@ -1873,38 +1498,49 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"cBn" = ( -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"cBK" = ( -/obj/structure/machinery/light{ +"czK" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/lavatory) +"czU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/substation) +"cAb" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) +"cAi" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_06"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"cBr" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) "cCu" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northeast) -"cCB" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"cCL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) +"cCv" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/reception) "cDk" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, @@ -1918,44 +1554,32 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"cEr" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"cEI" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" +"cDV" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/tool) +"cEp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/evaguide, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/clinic/treatment) +"cEy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/surface/disposals) +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "cER" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"cEY" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"cFj" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"cFq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"cET" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/research/temporary) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/dorm_r) "cFH" = ( /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/layer3, @@ -1964,59 +1588,47 @@ /obj/structure/tunnel, /turf/open/ice, /area/ice_colony/exterior/surface/valley/north) +"cFV" = ( +/obj/structure/morgue, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "cGm" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"cHN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) +"cHf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/clinic/treatment) +"cHy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) "cIA" = ( /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"cIB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"cJB" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"cJV" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"cKi" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"cKw" = ( -/obj/structure/machinery/shower{ +"cJa" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/ice_colony/surface/dorms/restroom_w) +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) "cKB" = ( /obj/structure/tunnel{ id = "dig_site_tunnel" }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) +"cKW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) "cLa" = ( /obj/structure/surface/table, /obj/item/stack/sheet/metal/large_stack, @@ -2035,64 +1647,39 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"cLw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/security/brig) -"cLx" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"cMk" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"cMo" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) +"cLm" = ( +/obj/structure/surface/table/holotable, +/obj/item/device/t_scanner, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) "cNe" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"cNl" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" +"cNi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/hangar/hallway) -"cNy" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"cNv" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/medical/lobby) +"cNF" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"cNM" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) +/obj/item/trash/chips, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/reception) +"cOL" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"cPL" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) "cPN" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, @@ -2101,278 +1688,215 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"cQs" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"cQu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor{ - icon_state = "dark" +"cPQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/requesitions) +/obj/structure/surface/table, +/obj/item/storage/firstaid, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"cQN" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) "cQP" = ( /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"cRq" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"cRH" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ +"cSr" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"cSA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/security/armory) +"cSN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/mining) -"cSb" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/clinic/treatment) -"cTa" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/disposals) "cTd" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"cTl" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"cTB" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"cUj" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/security/armory) -"cUk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"cUv" = ( -/obj/structure/machinery/door/airlock/secure{ - id = "ICE_CLASSIC_RESEARCH_SMALL"; - locked = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/research) -"cVa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"cTv" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) -"cXm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) -"cYa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/dark, +/area/ice_colony/surface/hydroponics/north) +"cUo" = ( +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/medical/lobby) +"cUA" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall" }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) -"cYu" = ( -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"cYC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) -"cZz" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +"cXr" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/electric) +"cXG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/maintenance/east) +"cXS" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/cell, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"cYD" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/bonegel, +/turf/open/floor/darkgreencorners2, /area/ice_colony/surface/clinic/storage) -"cZE" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) +"cYO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"cZn" = ( +/obj/structure/surface/table, +/obj/item/book/manual/barman_recipes, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "cZK" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/valley/south/excavation) +"cZM" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/underground) "daT" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"daV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"dbb" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) +"daU" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) "dbX" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/hallway/south_east) -"dcT" = ( -/obj/structure/pipes/vents/pump{ +"dbZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hydroponics/north) +"dcn" = ( +/obj/structure/bed/roller, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"dcy" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) -"ddk" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ddW" = ( -/obj/item/trash/syndi_cakes, -/turf/open/floor/plating, -/area/ice_colony/surface/disposals) -"deu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"dfl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer3, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"dft" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"dcK" = ( /obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/item/folder/red, +/obj/item/paper, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"dcW" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/sheet/wood/large_stack, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"dcY" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/surface/hangar/alpha) +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"ddF" = ( +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"ddS" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"ddW" = ( +/obj/item/trash/syndi_cakes, +/turf/open/floor/plating, +/area/ice_colony/surface/disposals) "dfw" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/garage/repair) -"dhC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"dgs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering) +"dhc" = ( +/obj/structure/surface/table, +/obj/item/tool/lighter, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) +"dhr" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"dhX" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/tool/screwdriver, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"dig" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) "dit" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south) -"diy" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) -"diD" = ( -/turf/open/floor{ +"diu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/high/empty, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"diA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "darkpurplecorners2" + name = "\improper Colony Garage Repair Station"; + req_access_txt = "100" }, -/area/ice_colony/underground/research/storage) -"djV" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/repair) +"djs" = ( +/obj/structure/machinery/door/window{ + dir = 1 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"djD" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) "dkF" = ( /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/pass) -"dln" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/structure/holowindow{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"dls" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"dlS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) +"dlA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) "dmI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2384,26 +1908,22 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"dmP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"dnM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_6"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) +"dmW" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/lv624/lazarus/landing_zones/lz2) +"dnm" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/clinic/storage) +"dob" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"don" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "doK" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, @@ -2413,104 +1933,128 @@ "dpl" = ( /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"dqp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) -"dqx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"dqO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"dqe" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility/full, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"dqL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"dqW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/surface/hangar/alpha) -"dtc" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"drI" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/hypospray, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"dso" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/research/storage) +"dsw" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/storage_unit/research) +"dsD" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"dtp" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hangar/hallway) +"dtN" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/underground/engineering) -"dto" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +"dtZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/hallway) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"dup" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) "duI" = ( /obj/item/folder/black_random, /obj/item/folder/black_random, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"duZ" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "dvq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"dwa" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) -"dwm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +"dvv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/research/work) -"dyq" = ( -/obj/structure/shuttle/diagonal{ - dir = 10; - icon_state = "wall" +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"dvC" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"dvH" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"dwM" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/storage) +"dwW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/hangar/beta) -"dzG" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) +"dyD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_3"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/requesitions) -"dAe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"dyS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/surface/research) -"dBg" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/storage) +"dAo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"dAr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/clinic/treatment) +"dAH" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) "dBF" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, @@ -2520,12 +2064,28 @@ /obj/item/bedsheet/hop, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"dCE" = ( +"dCj" = ( +/obj/structure/machinery/door/poddoor{ + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "Strange Airlock" + }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"dCw" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/obj/structure/machinery/microwave, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"dDn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_05"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/hangar/hallway) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "dDL" = ( /obj/structure/surface/table/woodentable, /obj/item/clothing/gloves/yellow, @@ -2534,84 +2094,37 @@ "dDR" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/crew/canteen) -"dEc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) "dEl" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/soap, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"dET" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"dEY" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"dGL" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/obj/item/stack/sheet/glass/large_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"dHb" = ( +"dEp" = ( /obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering/electric) -"dHv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"dIo" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"dIt" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/cell, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"dIx" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"dEt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/hallway) +"dGI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) +"dHI" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/telecomms) +"dIl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) +"dIP" = ( +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/clinic/treatment) "dIW" = ( /obj/structure/machinery/space_heater, /turf/open/floor, @@ -2620,130 +2133,123 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"dLe" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"dLS" = ( -/obj/structure/closet/crate, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"dMK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +"dJP" = ( +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/hangar/alpha) -"dMV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Power Substation SMES"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/substation/smes) -"dNx" = ( -/obj/structure/machinery/power/apc/weak, -/obj/structure/surface/table/holotable, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"dKj" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"dKy" = ( +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"dLw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"dLL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark, /area/ice_colony/underground/storage) +"dLT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/storage_unit/research) +"dMs" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"dNB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering/substation) "dNE" = ( /obj/structure/surface/table, /obj/item/storage/briefcase/inflatable, /obj/item/stack/sheet/wood, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"dOV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"dNL" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/research) -"dPp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"dOf" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"dOh" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"dOP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) +"dOR" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/darkyellowcorners2/east, /area/ice_colony/surface/hangar/alpha) +"dOS" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering) "dPu" = ( /obj/structure/surface/table/holotable, /obj/item/reagent_container/syringe, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"dPC" = ( +/obj/structure/janitorialcart, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "dPH" = ( /obj/structure/machinery/r_n_d/protolathe, /turf/open/floor/engine, /area/ice_colony/underground/research) -"dQD" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"dQN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) +"dRi" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "dRs" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) +"dRW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "dRY" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/command/center) -"dRZ" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/locker) "dSv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"dSN" = ( +"dSJ" = ( /obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"dTG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) +/obj/item/stack/sheet/glass/large_stack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms) "dUf" = ( /obj/structure/machinery/door_control{ id = "hangar_ice_2"; @@ -2751,132 +2257,114 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/beta) -"dUI" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"dUZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"dUh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) "dVs" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/east) -"dVv" = ( -/turf/open/floor{ - icon_state = "dark" +"dWa" = ( +/obj/structure/closet/crate, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"dWy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/storage_unit/power) -"dVC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/area/ice_colony/underground/crew/lavatory) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "dWM" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/hallway) -"dWP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) -"dWQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"dXB" = ( -/obj/structure/surface/table/holotable, -/obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) +"dWV" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"dXH" = ( +/obj/structure/toilet, +/obj/item/storage/bible, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"dYj" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "dYp" = ( /obj/structure/flora/pottedplant, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"dYr" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"dZt" = ( -/obj/structure/closet/crate/freezer, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) +"dZE" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) "eat" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/medical/lobby) +"ebe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway/north_west) +"eby" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"eci" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) "ecm" = ( /obj/structure/surface/rack, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"edH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"edl" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"edm" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"edG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Colony Engineering Electric Storage"; + req_access_txt = "100" }, -/area/ice_colony/underground/security) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering/electric) +"edN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "eew" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"eeR" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) -"efB" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"efF" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) +"eeY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) "egd" = ( /obj/structure/machinery/door_control{ id = "hangar_ice_1"; @@ -2884,152 +2372,101 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/alpha) -"egL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) +"ege" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure2, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) "ehy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"ehI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"ehY" = ( -/obj/structure/machinery/door/airlock/secure{ - id = "ICE_CLASSIC_RESEARCH_SMALL"; - locked = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/sample) +"eit" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/research) +"eiz" = ( +/obj/structure/surface/table/holotable, +/obj/item/trash/syndi_cakes, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "ejb" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase/inflatable, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"ejn" = ( -/obj/structure/surface/table/holotable, -/obj/item/device/t_scanner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"ejr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"ejc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"ejg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"ekR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkbrowncorners2/east, /area/ice_colony/surface/dorms) -"eju" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"ejB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"eks" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"elj" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"elZ" = ( -/obj/structure/surface/table/holotable, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"ema" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"emA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" +"elb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) +"emI" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"end" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/dorms) -"enj" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/backpack/satchel/chem, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) "eno" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"eob" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +"enx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/shuttle/elevator3/ground) -"epW" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"enH" = ( +/obj/structure/closet/crate/critter, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"enL" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) +"eox" = ( +/obj/structure/holowindow, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"epX" = ( /obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/tool) +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) "eqd" = ( /obj/structure/surface/table/holotable, /obj/effect/spawner/random/powercell, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"eqm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) "eqr" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/alpha) -"ery" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"eqO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "erQ" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southwest) @@ -3040,39 +2477,47 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"esu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"esL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/weldingtool, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) +"etq" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/garage/one) -"esx" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/crew/disposals) +"etM" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/mining) +"euK" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"etB" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) +"euL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle"; + dockId = "ice_lab_lower"; + dir = 1; + pixel_y = -32 }, -/area/ice_colony/surface/hydroponics/north) -"etM" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/mining) -"eum" = ( -/obj/structure/ore_box, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/storage) +"evb" = ( +/turf/open/floor/dark, +/area/ice_colony/underground/crew/lavatory) +"evz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/storage_unit/power) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) "evA" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) @@ -3082,24 +2527,10 @@ /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"ewM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_research_cargo_6"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/storage) -"exe" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) +"ewo" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) "exB" = ( /turf/closed/wall, /area/ice_colony/surface/hangar/beta) @@ -3108,15 +2539,11 @@ /obj/item/clothing/mask/rebreather, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"ezV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"ezK" = ( +/obj/structure/surface/table, +/obj/item/storage/syringe_case, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/storage) "eAx" = ( /obj/structure/surface/table/holotable, /obj/effect/spawner/random/powercell, @@ -3127,63 +2554,19 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"eCu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) +"eBF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) "eCT" = ( /obj/structure/xenoautopsy/tank, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"eDq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"eDv" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"eDM" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"eEo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/helmet/space/compression, -/obj/item/clothing/suit/space/compression, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/research/work) -"eEA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) -"eEZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) +"eEE" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/flask/vacuumflask, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) "eFc" = ( /obj/structure/surface/table/holotable, /turf/open/floor/plating/icefloor, @@ -3200,67 +2583,34 @@ /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"eFm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/substation/smes) -"eFs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"eFB" = ( +"eFZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hydroponics/north) +"eGb" = ( +/obj/structure/surface/table/holotable, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"eGI" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/o2, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"eFO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/alpha) +"eHh" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) +"eHC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/dorms) -"eGl" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"eGo" = ( +"eHH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"eGB" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" + icon_state = "S-corner" }, -/area/ice_colony/surface/research/temporary) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/beta) "eHK" = ( /obj/structure/surface/table/holotable, /obj/item/folder/black, @@ -3271,94 +2621,23 @@ /obj/item/stack/medical/bruise_pack, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"eIz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"eJE" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/north) +"eJw" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure2, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) "eJP" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"eJX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"eKr" = ( -/obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"eKv" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) "eKS" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/west) -"eLn" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/tool) -"eLo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"eLL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"eLV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Engineering Electric Storage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/engineering/electric) -"eMo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway) -"eMJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" +"eMh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/center) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/one) "eMX" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator2/ground) @@ -3377,35 +2656,28 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"eND" = ( -/obj/structure/machinery/light{ - dir = 1 +"eOh" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_l" }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +/obj/structure/shuttle/diagonal{ + dir = 1; + icon_state = "platform" }, -/area/ice_colony/underground/research/work) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "eOC" = ( /obj/structure/surface/table/holotable/wood, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"ePc" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"ePH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) +"eOL" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/bar/bar) +"ePv" = ( +/obj/structure/closet, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "eQc" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, @@ -3414,142 +2686,69 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"eRC" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"eTA" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"eTE" = ( -/obj/structure/closet, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"eTK" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"eRo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"eSm" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/underground/engineering/substation) -"eUC" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"eSr" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"eTh" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"eTF" = ( +/obj/structure/machinery/door/window{ + dir = 8 }, -/area/ice_colony/surface/clinic/lobby) -"eWu" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/research) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/security/brig) +"eTW" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"eUt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/fire, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"eVY" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/helmet/space/compression, +/obj/item/clothing/suit/space/compression, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/research/work) "eXe" = ( /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"eXW" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1; - locked = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit) -"eYm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) "eYA" = ( /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"eYB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"eZi" = ( +"eZT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/alpha) +"fal" = ( /obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"eZl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Colony Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/engineering) -"eZy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_06"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"eZF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"eZG" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"fau" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"faD" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"faN" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"faF" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) "faQ" = ( /obj/structure/surface/table, /obj/item/stack/sheet/wood, @@ -3558,24 +2757,33 @@ "faT" = ( /turf/closed/wall/rock/brown, /area/ice_colony/underground/research/storage) -"faZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"fcc" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) +"fbY" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "fco" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) +"fdi" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"fdw" = ( +/obj/item/stack/medical/splint, +/obj/structure/closet/crate, +/obj/item/stack/medical/ointment, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"fed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) "feE" = ( /obj/item/folder/black_random, /obj/item/paper, @@ -3588,16 +2796,22 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"ffT" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"feH" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) "ffV" = ( /turf/closed/shuttle{ icon_state = "swall4" }, /area/ice_colony/surface/hangar/beta) +"fgs" = ( +/obj/structure/closet/crate, +/obj/item/circuitboard/apc, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "fgU" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) @@ -3614,25 +2828,28 @@ "fie" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/storage) -"fiK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +"fip" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/surface/excavation) -"fjW" = ( +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"fjb" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/clinic/storage) +"fjm" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; name = "\improper Colony Engineering Tool Storage"; req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/engineering) "fkC" = ( /obj/structure/surface/rack, @@ -3641,15 +2858,11 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"flg" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/bar/bar) +"fkF" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/survival, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "flj" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -3662,121 +2875,148 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"flW" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor{ - icon_state = "darkgreencorners2" +"flw" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/electric) +"fmg" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/engine, +/area/ice_colony/underground/research) "fmX" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast/apc_support) "fmY" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) +"fne" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/lv624/lazarus/landing_zones/lz2) "fnm" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/substation) +"foi" = ( +/obj/structure/closet/crate, +/obj/item/tool/soap, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"foq" = ( +/obj/structure/toilet, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) "fos" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 29 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"foB" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"foR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"fpC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) "fqb" = ( /obj/structure/surface/table, /obj/item/stack/sheet/metal/large_stack, /turf/open/floor, /area/ice_colony/surface/mining) -"fqL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) -"fru" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"fqt" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"fqx" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"frj" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) "fry" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/north) -"frL" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 4 +"frz" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"frE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/ice_colony/underground/hallway/south_east) +"fsk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) +"fst" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_0002"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/research/work) -"fsX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/power) +"fte" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 }, -/area/ice_colony/surface/garage/two) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/research/storage) "ftr" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) +"ftu" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "ftv" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"fua" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"fuR" = ( -/obj/structure/machinery/power/apc/weak{ +"ftA" = ( +/obj/structure/surface/table/holotable, +/obj/item/restraint/handcuffs, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"ftD" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"ftL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/clinic/lobby) +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) "fvn" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south/excavation) +"fvt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"fwh" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/field_gear) "fyc" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/engineering/tool) @@ -3784,19 +3024,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"fyE" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"fyY" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) "fAu" = ( /obj/effect/landmark/static_comms/net_one, /obj/effect/decal/warning_stripes{ @@ -3820,251 +3047,161 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/engineering/substation) -"fBF" = ( +"fBh" = ( /obj/structure/surface/table/holotable, -/obj/item/storage/firstaid, -/obj/item/storage/firstaid, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"fCp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) -"fCy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) +"fBl" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/ground) +"fBT" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"fBV" = ( +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"fBZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/maintenance/south) +"fDc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/surface/hangar/beta) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "fDq" = ( /obj/structure/dispenser/oxygen, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"fDt" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"fDu" = ( -/obj/structure/machinery/biogenerator, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"fDx" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"fDP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"fDU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"fEY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"fFi" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +"fDB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "garage_ice_1"; + name = "\improper Garage Shutters" }, -/area/ice_colony/surface/excavation) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/one) "fFk" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick/red, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"fFs" = ( -/obj/structure/coatrack, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) "fFv" = ( /obj/structure/surface/table, /obj/item/tool/weldingtool, /obj/item/stack/medical/bruise_pack, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"fFB" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/research/work) "fFK" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"fHm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"fIC" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/mask/rebreather, -/obj/item/paper_bin, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) -"fIG" = ( -/obj/structure/machinery/door/window{ +"fGj" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) +"fGJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"fIN" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway/south_east) +"fGW" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/ice_colony/surface/research/field_gear) +/turf/open/floor/plating/icefloor/warnplate/east, +/area/lv624/lazarus/landing_zones/lz2) +"fHN" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/hypospray/autoinjector/bicaridine, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"fIv" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) "fJn" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"fJs" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/research) "fJI" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/FixOVein, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"fJN" = ( -/obj/structure/machinery/light, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) +"fJX" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"fLg" = ( +/obj/structure/closet/crate, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "fLk" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) -"fLz" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "ice_dorm_upper"; - name = "Dormitory Upper Floor"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; - airlock_exit = "elevator"; - elevator_network = "dorm"; - airlock_area = /area/shuttle/elevator2/ground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"fLL" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway/south_east) -"fLP" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"fMj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"fLA" = ( +/obj/structure/surface/table/holotable, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"fMe" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"fMm" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/lavatory) -"fMo" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"fMn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "fMq" = ( /turf/closed/wall, /area/ice_colony/surface/dorms/canteen) -"fMB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"fMz" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"fNm" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"fNo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Colony Engineering Material Storage"; + req_access_txt = "100" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering/tool) +"fOw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/crew/library) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) +"fOB" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/structure/holowindow{ + dir = 4 + }, +/obj/item/clothing/suit/space/compression, +/obj/item/clothing/head/helmet/space/compression, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/research/storage) "fOQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -4081,51 +3218,47 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"fPR" = ( -/obj/structure/machinery/power/apc/weak{ +"fPy" = ( +/obj/structure/surface/table, +/obj/item/folder/red, +/obj/item/paper, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/dorms) +"fPU" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/black, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"fQD" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"fRr" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"fRs" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"fRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/dorms) +"fRx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/surface/research) "fSq" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"fSM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) +"fSF" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/glass/bottle/bicaridine, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"fSU" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/north) +"fTS" = ( +/obj/structure/bed/roller, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/storage) "fTX" = ( /obj/effect/decal/warning_stripes{ icon_state = "EW-center" @@ -4135,6 +3268,12 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) +"fTZ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) "fUj" = ( /obj/structure/closet/wardrobe, /turf/open/floor/wood, @@ -4142,36 +3281,32 @@ "fUk" = ( /turf/closed/wall, /area/ice_colony/surface/garage/two) -"fUM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"fUF" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"fUL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) "fUW" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"fVe" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/storage) "fVv" = ( /obj/structure/surface/table/holotable, /obj/item/tool/weldingtool, /obj/item/device/t_scanner, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"fVI" = ( -/obj/structure/device/broken_piano, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"fVw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/surface/dorms/canteen) +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) "fVL" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/light{ @@ -4179,17 +3314,23 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"fWo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) "fWE" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"fWV" = ( +"fXk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/medical/lobby) +"fXA" = ( /obj/structure/surface/table/reinforced, -/obj/item/book/manual/evaguide, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, +/obj/item/clothing/mask/rebreather, +/obj/item/paper_bin, +/turf/open/floor/darkblue2/west, /area/ice_colony/surface/clinic/treatment) "fXJ" = ( /obj/item/lightstick/red{ @@ -4204,49 +3345,16 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"fYi" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) -"fYj" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) +"fYq" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) "fZs" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) -"gae" = ( +"fZw" = ( /obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/cell, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/tool) -"gbn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) -"gbv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/reception) "gcK" = ( /obj/structure/holowindow{ dir = 4 @@ -4260,11 +3368,20 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"gdV" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) +"gcV" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/north) +"gdd" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"gea" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "gem" = ( /obj/structure/surface/table, /obj/item/book/manual/engineering_guide{ @@ -4273,128 +3390,76 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"geO" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"gfc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/hallway/south_east) -"ggS" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/hypospray, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"ggT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"ggZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure2, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/research) -"ghe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"ghu" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"ghI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"gia" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"gib" = ( -/obj/structure/surface/table, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, +"gfA" = ( +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/dorms) +"ggO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"ghi" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) +"ghR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/o2, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) "giN" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"gjg" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"gjt" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/research) "gjV" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/mining) -"gkl" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"gkp" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"gmw" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/glass/bottle/antitoxin, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"gmz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Power Substation"; - req_access_txt = "100" +"glv" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"glA" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"gmY" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/substation) +"gna" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/substation) -"gmH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) +"gnb" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "gnr" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/clinic/treatment) +"gnV" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "goo" = ( /obj/structure/machinery/light{ dir = 1 @@ -4402,19 +3467,31 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"got" = ( +/obj/structure/closet, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) +"gou" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/alpha) "goW" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) -"gpr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/storage) +"gpk" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) +"gqe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/reception) +"gqO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/dark, +/area/ice_colony/surface/engineering) "gro" = ( /obj/structure/machinery/light{ dir = 8 @@ -4422,15 +3499,16 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"grq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"grE" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"grG" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/beta) "grT" = ( /obj/structure/machinery/door_control{ id = "Classic_1"; @@ -4438,12 +3516,26 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"gsw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, +"gsy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"gsG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, /area/ice_colony/underground/reception) +"gsK" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"gsX" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/storage_unit/research) "gtG" = ( /obj/item/lightstick{ anchored = 1; @@ -4453,103 +3545,63 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/layer0, /area/ice_colony/surface/excavation/storage) -"gtL" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +"gvd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/beta) +"gvM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz2) -"guf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/item/tool/shovel/snow, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"gvW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Colony Garage"; + req_access_txt = "100" }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/one) +"gwo" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"gwu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/dorms) -"gul" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"guo" = ( -/obj/structure/surface/table, -/obj/structure/machinery/juicer, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"guL" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ice_classic_underground_research_secure_blast"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"gvG" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/locker) -"gvL" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"gwq" = ( -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"gwv" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) "gxe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/hydroponics/north) -"gxf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"gyf" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"gyu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/ice_colony/surface/hangar/beta) -"gxY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"gyq" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/bonegel, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/storage) +"gyx" = ( +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"gyz" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"gyF" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/electric) "gyJ" = ( /obj/structure/surface/table/holotable, /turf/open/floor/engine, @@ -4558,12 +3610,29 @@ /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/mining) -"gzG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +"gzB" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms/canteen) +"gzI" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/structure/holowindow{ + dir = 8 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"gAb" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) "gAA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -4574,87 +3643,70 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"gBx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"gCr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"gBu" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"gDo" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security) +"gDX" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) -"gDl" = ( -/obj/structure/surface/table, -/obj/item/tool/extinguisher/mini, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"gDq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) "gEj" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"gFd" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"gFj" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) +"gEo" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"gEH" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"gEN" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms) "gFy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) +"gFD" = ( +/obj/structure/device/broken_piano, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"gFE" = ( +/obj/structure/surface/table/holotable, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "gFL" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/research) -"gGj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/bar/bar) -"gGA" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +"gGs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) "gGV" = ( /turf/closed/shuttle{ icon_state = "swall3" }, /area/ice_colony/surface/hangar/beta) -"gIM" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) +"gHh" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"gIh" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/clinic/storage) "gIW" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -4665,47 +3717,36 @@ /obj/structure/grille, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"gJl" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/hallway) -"gJJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"gKu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"gNQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/maintenance/north) -"gOy" = ( +"gJK" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"gJP" = ( +/obj/structure/surface/table/holotable, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"gLW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) +"gMe" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/storage) +"gMH" = ( +/turf/open/floor/darkredcorners2/east, /area/ice_colony/underground/research/work) -"gOP" = ( -/turf/open/floor{ - icon_state = "dark" +"gNL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms) "gPl" = ( /obj/structure/machinery/light{ dir = 1 @@ -4714,120 +3755,97 @@ /obj/item/paper, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"gQY" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +"gPN" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) +"gRh" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/hallway) +"gRl" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + id = "st_19"; + locked = 1; + name = "Research Storage Unit"; + req_access_txt = "100" }, -/area/ice_colony/surface/excavation) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/research) "gRE" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"gRS" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"gSH" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"gSO" = ( -/obj/effect/decal/cleanable/spiderling_remains{ - name = "greenish remains" +"gRY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) +"gTX" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility/full, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) +"gUF" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) -"gTc" = ( -/obj/structure/machinery/light_switch{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"gTA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"gTP" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/shaker, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) -"gUq" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) "gVG" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"gWV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"gXa" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"gVI" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/clinic/storage) -"gYt" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"gVJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/security/armory) +"gXh" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/medical/lobby) +"gXX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_1"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"gYe" = ( +/turf/open/floor/dark, +/area/ice_colony/underground/hallway/south_east) "gZu" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/engine, /area/ice_colony/underground/research) -"gZE" = ( -/obj/structure/machinery/door/airlock/almayer/secure/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/alpha) "haU" = ( /obj/structure/surface/table/woodentable, /obj/item/device/camera, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"hbc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) "hbe" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase, @@ -4842,170 +3860,84 @@ /obj/structure/prop/invuln/remote_console_pod, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/south) -"hbs" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_0004"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/power) -"hbD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"hcn" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) +"hbx" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) "hdP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) -"hdX" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) "hee" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/silver, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"hem" = ( -/obj/structure/surface/table/reinforced, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) +"heF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) "heS" = ( /turf/closed/wall, /area/ice_colony/surface/research/tech_storage) -"hfk" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) +"hfl" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/underground/research/work) +"hfC" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) "hgf" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/mining) -"hgB" = ( -/obj/docking_port/stationary/trijent_elevator{ - id = "ice_lab_upper"; - elevator_network = "lab"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/lab; - name = "Laboratory Upper Floor"; - dir = 2; - height = 5; - width = 8; - airlock_area = /area/shuttle/elevator3/ground; - airlock_exit = "elevator" - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"hgT" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +"hgk" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"hhW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/surface/substation) -"hhv" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"hiy" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"hiO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) "hiU" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"hjB" = ( -/obj/structure/surface/table, -/obj/item/folder/red, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +"hji" = ( +/obj/structure/coatrack, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/storage_unit/research) +"hjl" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"hjQ" = ( +/turf/open/floor/darkyellow2/southeast, /area/ice_colony/surface/dorms) -"hkG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"hlp" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/mining) -"hlV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) "hmy" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/storage) -"hmY" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) +"hmU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"hmZ" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) +"hnw" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"hnX" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/storage) "hoA" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/pen, @@ -5020,6 +3952,10 @@ /obj/item/storage/firstaid/rad, /turf/open/floor/engine, /area/ice_colony/underground/research) +"hpq" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "hpF" = ( /obj/effect/landmark/queen_spawn, /obj/structure/bed/chair/office/light, @@ -5030,43 +3966,40 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/west) -"hrw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"hrS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation/smes) -"hsH" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"hsT" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/structure/holowindow{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"htq" = ( -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, +"hpP" = ( /obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/meson, +/turf/open/floor/dark, /area/ice_colony/surface/requesitions) +"hqs" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) +"hra" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/dorm_r) +"hrk" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"hsA" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"hsE" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"hth" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/medical/lobby) "htI" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -5076,56 +4009,31 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"htM" = ( -/obj/structure/closet/crate, -/obj/item/toy/sword, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"hul" = ( -/obj/structure/surface/table/holotable, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"hum" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"huP" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"hvc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"htK" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) +"htQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"hun" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/lv624/lazarus/landing_zones/lz2) +"huN" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit) +"hve" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"hvx" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) -"hwl" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) +"hwn" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) "hxE" = ( /obj/structure/machinery/light{ dir = 8 @@ -5144,74 +4052,82 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"hxZ" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"hyr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/office/light{ - dir = 4 +"hyb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/structure/machinery/door_control{ + id = "hangar_ice_2"; + name = "hangar shutter control" }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/beta) "hyO" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"hze" = ( -/turf/open/floor{ - icon_state = "dark" +"hzM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/ice_colony/surface/hydroponics/north) -"hzV" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/structure/holowindow{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"hAo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) "hAs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/north) -"hBj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"hAx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 }, -/area/ice_colony/surface/engineering) +/obj/item/stack/cable_coil, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/tool) +"hBi" = ( +/obj/structure/cryofeed/right, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) "hBZ" = ( /obj/effect/landmark/xeno_hive_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research) -"hCk" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/dorm_r) "hCt" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"hCx" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/dorms) +"hCP" = ( +/obj/structure/surface/table, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"hCV" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway/south_east) +"hDs" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/treatment) "hDv" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -5224,13 +4140,6 @@ /obj/structure/closet, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"hEP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) "hER" = ( /obj/structure/machinery/door_control{ id = "Classic_5"; @@ -5238,6 +4147,23 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) +"hEX" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/structure/holowindow{ + dir = 8 + }, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"hFc" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"hFp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "hFY" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/hallway/north_west) @@ -5246,81 +4172,45 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"hGx" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"hGQ" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/timer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"hHE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/disposals) -"hHQ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "Classic_00"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"hIs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"hII" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) +"hGe" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) +"hHB" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/ground) +"hIK" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/canteen) "hIQ" = ( /turf/open/floor, /area/ice_colony/surface/requesitions) -"hJt" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"hLA" = ( -/obj/structure/surface/table/holotable, +"hIY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"hJq" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"hJr" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"hKw" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering/substation) +"hLh" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/engine, +/area/ice_colony/underground/research/sample) +"hLA" = ( +/obj/structure/surface/table/holotable, /obj/item/paper, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"hLJ" = ( -/obj/structure/toilet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) "hMm" = ( /obj/structure/closet, /turf/open/floor/wood, @@ -5333,60 +4223,83 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/hangar/beta) -"hNt" = ( -/obj/structure/computerframe, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"hNu" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +"hMC" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/dorms) -"hOC" = ( +"hNd" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/underground) +"hNf" = ( /obj/structure/surface/rack, -/obj/item/storage/bag/plants, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +/obj/item/explosive/plastic, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) +"hNl" = ( +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/north) +"hNC" = ( +/obj/structure/pipes/unary/outlet_injector, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"hNN" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"hNR" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"hNV" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Colony Garage"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/two) +"hNZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"hOt" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/clinic/treatment) "hOO" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/southeast) +"hOP" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/canteen) "hPu" = ( /obj/structure/disposalpipe/junction{ dir = 1 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"hPP" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) "hQD" = ( /obj/structure/pipes/standard/tank, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/engineering/substation) -"hRa" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"hSn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) +"hRb" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/security/armory) +"hRM" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) "hSD" = ( /obj/structure/machinery/door_control{ id = "ice_classic_underground_research_cargo_2" @@ -5397,27 +4310,21 @@ /obj/structure/xenoautopsy, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"hUs" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/shaker, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) "hUK" = ( /obj/structure/machinery/door_control{ id = "ice_classic_underground_research_cargo_4" }, /turf/closed/wall/r_wall/bunker, /area/ice_colony/underground/research/storage) -"hUM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"hVm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) +"hVj" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/south) "hVy" = ( /obj/structure/machinery/door_control{ id = "Classic_0004"; @@ -5429,27 +4336,26 @@ /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"hVV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"hWK" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" +"hVQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/clinic/treatment) +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"hWo" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "hWP" = ( /obj/item/folder/black_random, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"hWQ" = ( +/turf/open/floor/dark, +/area/ice_colony/underground/crew/canteen) "hXg" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -5457,127 +4363,77 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/engineering/substation) -"hXh" = ( -/obj/structure/closet/crate/secure/hydrosec, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"hXo" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"hYs" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) +"hXl" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"hXD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) +"hXG" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/locker) +"hXY" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) "hZr" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/storage) -"hZU" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - id = "st_19"; - locked = 1; - name = "Research Storage Unit"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/research) -"ibz" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"iam" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) +"iaB" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/ice_colony/surface/dorms/canteen) +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"ibr" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"ibE" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/lavatory) "icx" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/north) -"icR" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"idr" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"idI" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"icX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/research/sample) +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"idf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/hallway) +"idz" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) "ied" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) -"iek" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) +"ief" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/substation) "ieG" = ( /turf/open/gm/dirt, /area/ice_colony/underground/research/sample) -"ifb" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"ifu" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/box/donkpockets, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"ifH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"ifQ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) "ifT" = ( /obj/structure/machinery/light{ dir = 4 @@ -5585,123 +4441,47 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/engine, /area/ice_colony/underground/research) -"ifW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Colony Disposals"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/disposals) -"igp" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +"igf" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/area/ice_colony/underground/medical/lobby) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) "igz" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) -"ihb" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"ihE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"ijk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hangar/alpha) -"ijy" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"iku" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) +"ihU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "ikP" = ( /turf/closed/wall/r_wall/bunker, /area/ice_colony/underground/security/armory) -"ilt" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"ilT" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"ine" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/storage_unit/research) -"ioC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_research_cargo_2"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 +"ilK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"imG" = ( +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) +"ioz" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/treatment) +"ipd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/dark, +/area/ice_colony/underground/hallway/south_east) "ipi" = ( /obj/structure/surface/table/holotable, /obj/item/paper_bin, /turf/open/floor/engine, /area/ice_colony/underground/research) -"ipm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"ipv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/security/brig) "ipy" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -5709,21 +4489,20 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"iqr" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"iqS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/shield/riot, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor{ - icon_state = "darkblue2" +"iqP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/underground/security/armory) +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"iqT" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"irc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) "irx" = ( /obj/structure/machinery/light{ dir = 4 @@ -5731,36 +4510,20 @@ /obj/structure/closet/radiation, /turf/open/floor/engine, /area/ice_colony/underground/research) -"isk" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"isi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"isw" = ( +/obj/structure/ore_box, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"isS" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering) -"isq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"isz" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"isG" = ( -/obj/structure/prop/static_tank/fuel, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) "itk" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -5770,30 +4533,55 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"iuM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"ito" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"itt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"itU" = ( +/obj/item/roller, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"iui" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/computer3, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"iuv" = ( +/obj/structure/surface/table, +/obj/item/folder/red, +/turf/open/floor/darkyellowcorners2/west, /area/ice_colony/surface/dorms) -"iuO" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"iuH" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hangar/alpha) +"iuQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/ice_colony/underground/research/work) -"iuX" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"iuW" = ( +/obj/structure/machinery/door/window{ + name = "Anomaly Gear" }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) +"ivM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/ice_colony/surface/storage_unit/research) +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) "iwe" = ( /obj/structure/shuttle/window{ color = "gray"; @@ -5802,23 +4590,37 @@ /obj/structure/grille, /turf/open/floor/plating, /area/ice_colony/exterior/underground/caves/dig) -"iwh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high/empty, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"iwx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/reception) +"iwz" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_research_cargo_6"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) "iwM" = ( /obj/structure/prop/static_tank/water, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"iwT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) "iwX" = ( /obj/structure/surface/table/holotable, /obj/item/folder/black_random, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"ixq" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/underground) "ixr" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -5827,78 +4629,36 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"ixE" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"ixV" = ( +"ixD" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"iyi" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) +"iyv" = ( /obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"iyl" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"iyB" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "izq" = ( /turf/closed/wall, /area/ice_colony/surface/dorms) -"izC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"izE" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"izM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/research/work) "izP" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/east) -"iAl" = ( +"iAf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" + icon_state = "SE-in" }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) "iBg" = ( /obj/structure/machinery/light{ dir = 1 @@ -5906,29 +4666,50 @@ /obj/structure/closet, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"iCc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"iBr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"iDb" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/command/center) +"iBC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1; + locked = 1 }, -/area/ice_colony/surface/storage_unit/telecomms) -"iDk" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit) +"iBV" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "ice_classic_underground_research_cargo_3"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) +"iCk" = ( +/obj/structure/surface/table, +/obj/item/device/flash/old, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"iCx" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"iDj" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/north) +"iDm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "iEc" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -5940,323 +4721,211 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"iEh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) +"iEl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) "iEs" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/pen/red, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"iEP" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"iFR" = ( -/obj/item/stack/medical/splint, -/obj/structure/closet/crate, -/obj/item/stack/medical/ointment, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"iHn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"iEL" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/surface/storage_unit/telecomms) +"iFz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) +"iGP" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "12" }, -/area/ice_colony/underground/hallway/south_east) -"iHv" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"iHw" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure2, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research) +"iHy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/storage_unit/power) -"iIN" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"iIm" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/plating/icefloor/warnplate/west, +/area/lv624/lazarus/landing_zones/lz2) +"iIu" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) "iIO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"iKg" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"iKh" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +"iJQ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) +"iJS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) +"iJZ" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security) +"iKb" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "9" }, +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, /area/ice_colony/exterior/underground/caves/dig) -"iKF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) +"iKe" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"iKL" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) "iLr" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /obj/item/weapon/gun/revolver/small, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"iMq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) +"iMo" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/ground) "iMx" = ( /obj/structure/closet/radiation, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"iNS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, +"iMR" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2/west, /area/ice_colony/surface/substation) -"iPp" = ( -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"iPv" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/security/brig) +"iMW" = ( +/obj/structure/surface/table/holotable, +/obj/item/device/t_scanner, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering) +"iNh" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/hydroponics/north) "iPG" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/dirt, /area/ice_colony/underground/maintenance/south) -"iPL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"iQm" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"iQH" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"iRo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"iRJ" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) +"iPZ" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) +"iQE" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"iSg" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/closet/crate, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"iSp" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) "iTn" = ( /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) "iTq" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/substation/smes) -"iTv" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle2"; - dockId = "ice_dorm_upper"; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"iUO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"iVo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"iVH" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_0001"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/power) -"iWJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/work) -"iWZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Colony Garage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/garage/one) -"iYk" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) -"iYP" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"iYR" = ( +"iUt" = ( +/obj/structure/closet, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/lavatory) +"iVw" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"iZn" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"iWV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/medical/lobby) +"iXe" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 }, -/area/ice_colony/underground/engineering/substation) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/storage) +"iYw" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) "iZo" = ( /obj/structure/surface/table/holotable, /obj/item/stack/cable_coil, /obj/item/storage/toolbox/electrical, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"iZq" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - icon_state = "darkgreen2" +"iZu" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/medical/lobby) +"iZw" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "Classic_00"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/storage_unit/research) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "iZF" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"jaX" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) -"jba" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/storage) -"jbg" = ( -/obj/structure/surface/table, -/obj/item/folder/red, -/obj/item/paper, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"jbq" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"jbN" = ( +"jae" = ( +/obj/structure/closet, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/crew/lavatory) +"jau" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) +"jaK" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) +/obj/item/tool/pen/red, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"jbr" = ( +/obj/structure/closet/crate, +/obj/item/toy/prize/durand, +/obj/item/toy/katana, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "jbY" = ( /obj/structure/surface/table, /obj/item/storage/briefcase/inflatable, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"jdz" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) +"jci" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "jeP" = ( /obj/structure/machinery/door_control{ id = "Classic_3"; @@ -6264,41 +4933,25 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"jeT" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) "jff" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/garage/repair) -"jfs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17" - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"jgE" = ( -/obj/structure/surface/table, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +"jfz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/dorms) -"jgS" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"jfQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/research/tech_storage) +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) +"jgd" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/substation) "jhK" = ( /obj/structure/surface/table, /obj/item/tool/weldingtool, @@ -6315,51 +4968,57 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"jkj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"jjB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) +"jjW" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) +"jkd" = ( +/obj/structure/bed/roller, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"jku" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) "jkB" = ( /obj/structure/surface/table, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/mining) -"jlM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/storage) -"jmf" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"jmv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +"jkJ" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"jkQ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/shovel/snow, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) +"jml" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"jmG" = ( +/obj/structure/sink{ dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"jna" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Garage Repair Station"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" + pixel_x = -11 }, -/area/ice_colony/surface/garage/repair) +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) +"jnl" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) "jnq" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, @@ -6367,13 +5026,14 @@ "jnY" = ( /turf/open/floor/engine, /area/ice_colony/underground/research) -"jpl" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) +"joN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"joR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "jpw" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -6381,163 +5041,83 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"jqf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"jqq" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkyellow2" +"jpG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/syringes, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/storage) +"jqD" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "garage_ladder" }, -/area/ice_colony/underground/storage) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/garage/one) "jrb" = ( /obj/structure/girder, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"jri" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "jro" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/east) -"jrF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hydroponics/north) +"jrD" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) "jrG" = ( /turf/closed/wall, /area/ice_colony/surface/mining) -"jrM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/alpha) -"jsh" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"jsp" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_l" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) +"jsl" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/reception) "jsF" = ( /obj/structure/prop/static_tank/water, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"jsG" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"jsY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"jtP" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/sample) -"jtQ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) +"jtd" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/north) +"jtg" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"jtZ" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/storage) "jua" = ( /turf/closed/shuttle{ icon_state = "swall13" }, /area/ice_colony/surface/hangar/beta) -"juv" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"jux" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"juF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/research/work) "juL" = ( /obj/structure/tunnel, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"jvn" = ( -/obj/structure/machinery/door/airlock/secure, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/work) "jvZ" = ( /obj/structure/grille, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"jxS" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +"jwg" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) +"jxH" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/mining) +"jyb" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/underground) +"jye" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"jyB" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) "jyL" = ( /obj/structure/ice/thin, /turf/open/ice, @@ -6547,148 +5127,142 @@ /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"jzz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"jAf" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) "jAE" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"jBH" = ( -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"jBI" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Colony Garage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/garage/two) -"jCc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"jDc" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "darkyellow2" +"jAX" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"jBc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/ceramic_plate, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"jBl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/garage/repair) -"jDv" = ( -/turf/open/floor/icefloor{ - icon_state = "rockvault" +/turf/open/floor/dark, +/area/ice_colony/underground/crew/canteen) +"jBP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"jDK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"jBY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"jDm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"jDS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"jDT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) "jDZ" = ( /obj/structure/surface/table/holotable, /obj/item/storage/toolbox, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"jET" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"jEW" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"jEn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "st_17"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/hallway/south_east) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/telecomms) +"jFj" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) "jFz" = ( /obj/structure/bed/chair/office/light, /obj/item/paper, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"jGc" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 +"jHb" = ( +/obj/structure/dispenser, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"jHm" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"jHu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/area/ice_colony/surface/substation/smes) -"jHA" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/beta) +"jIo" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"jIJ" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/donut_box/empty, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"jIX" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/clinic/treatment) "jJJ" = ( /obj/structure/surface/table/holotable, /turf/open/floor/engine, /area/ice_colony/underground/research) -"jKJ" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) +"jKL" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"jKM" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) "jLf" = ( /obj/item/trash/burger, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) +"jMb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"jNa" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) "jNr" = ( /obj/structure/surface/table, /obj/item/stack/cable_coil, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) +"jND" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) "jOf" = ( /turf/open/gm/dirt, /area/ice_colony/underground/research) -"jOi" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +"jOL" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "jOO" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/icefloor, @@ -6699,14 +5273,10 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"jPL" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) +"jPl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) "jPP" = ( /obj/structure/machinery/door_control{ id = "Classic_0001"; @@ -6714,77 +5284,49 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) -"jPQ" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"jPV" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "jQq" = ( /turf/open/ice, /area/ice_colony/exterior/surface/clearing/pass) -"jQG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"jRk" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"jRx" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/meatball, -/obj/item/reagent_container/food/snacks/meatball, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"jSk" = ( -/obj/structure/curtain/open, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) -"jSs" = ( +"jQA" = ( /obj/structure/surface/table, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hangar/alpha) +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/timer, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"jQM" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"jSa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) +"jTj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) "jTT" = ( /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"jUL" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) +"jUU" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) "jVd" = ( /obj/structure/tunnel, /turf/open/gm/dirt, /area/ice_colony/surface/bar/bar) -"jVE" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"jWm" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) +"jWe" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "jWn" = ( /obj/structure/surface/table, /turf/open/floor, @@ -6799,106 +5341,56 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/research) -"jWC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +"jWB" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall" }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"jWY" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/canteen) "jXi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"jXQ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"jZa" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/sheet/glass/small_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"jZu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"jZv" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"jZR" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/hallway) -"jZV" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "Classic_0"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"kad" = ( +"jXt" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/reception) +"jYj" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/dorms/canteen) -"kaE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) -"kbx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_1"; - name = "\improper Garage Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/garage/one) -"kbL" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure2, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"kcj" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) +"jYn" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"jZA" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/lavatory) +"kav" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway) +"kbf" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/underground) +"kbg" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/space/compression, +/obj/item/clothing/head/helmet/space/compression, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/field_gear) +"kbB" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"kcD" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) "kcM" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6907,26 +5399,20 @@ /obj/item/stack/sheet/mineral/phoron, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"kdm" = ( -/obj/structure/closet/crate, -/obj/item/toy/prize/phazon, -/obj/item/toy/gun, -/obj/item/toy/gun_ammo, -/turf/open/floor{ - icon_state = "dark" +"kdj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) +"kdJ" = ( +/obj/item/device/flashlight, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "kej" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"keK" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/sprays, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "kfB" = ( /obj/structure/surface/table/holotable, /obj/item/tool/pen/red, @@ -6937,185 +5423,107 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"kgx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) "kgY" = ( /turf/open/floor/engine, /area/ice_colony/underground/research/storage) +"kha" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) "khw" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/garage/two) +"khJ" = ( +/obj/structure/closet/crate/freezer, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) "khT" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"kib" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon_state = "ramptop" - }, -/area/ice_colony/exterior/underground/caves/dig) -"kiu" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) "kiO" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/north) -"kjQ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"kjW" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/maintenance/south) -"kkI" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/box, -/obj/item/stack/nanopaste, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"klz" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"kmr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"kiZ" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/ground) +"kju" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"kkL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight, +/obj/item/tool/weldingtool, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) +"kmd" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) +"kmq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/reception) "kmw" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"kng" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hydroponics/north) -"knj" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) -"knr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) -"knE" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) -"knY" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) -"kqK" = ( -/obj/structure/closet/secure_closet/freezer, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"krU" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"ksg" = ( +"koc" = ( +/obj/structure/computerframe, +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"kop" = ( +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"kos" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" + dir = 1 }, -/area/ice_colony/underground/research/work) -"ksw" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/storage) +"kpz" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/shuttle/elevator3/underground) +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hangar/hallway) +"kqq" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/dorms) +"krm" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) +"krM" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "ksI" = ( /obj/structure/surface/rack, /turf/open/floor, /area/ice_colony/surface/mining) -"ksY" = ( +"ktv" = ( +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"kue" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"ktt" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/ceramic_plate, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, +/obj/item/tool/kitchen/knife, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/dorms/canteen) -"kua" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) "kuu" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, @@ -7128,22 +5536,22 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) -"kuI" = ( -/obj/structure/surface/table/holotable, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"kuL" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"kuE" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) +"kvg" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_research_cargo_5"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/hangar/hallway) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) "kvi" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -7155,49 +5563,20 @@ /obj/structure/closet/crate/secure, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) -"kvH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"kvV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"kvt" = ( +/obj/structure/closet/crate, +/obj/item/toy/prize/marauder, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "kvY" = ( /obj/structure/surface/table/holotable, /obj/item/tool/weldingtool, /obj/item/device/reagent_scanner, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"kwi" = ( -/obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"kwD" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) "kxm" = ( /turf/open/floor/wood, /area/ice_colony/underground/reception) -"kxt" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) "kxH" = ( /obj/structure/surface/table, /obj/item/clothing/head/welding, @@ -7219,183 +5598,117 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"kyM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +"kyN" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) "kyS" = ( /turf/open/gm/dirt, /area/ice_colony/surface/bar/bar) -"kzt" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +"kzi" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"kAu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/shovel/snow, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) +"kAW" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/work) -"kzw" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_1"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"kzY" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"kBC" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/black, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) +"kBz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms/canteen) "kBJ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/clinic/storage) -"kCG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"kDa" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/dorms) -"kDB" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"kDC" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"kEY" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"kFf" = ( +"kCi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" }, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, +/turf/open/floor/darkbrowncorners2, /area/ice_colony/surface/hangar/alpha) +"kCJ" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"kCV" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"kDa" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/dorms) +"kDY" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) "kFl" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"kFE" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"kFN" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, -/area/ice_colony/exterior/underground/caves/dig) -"kGj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"kGn" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +"kFz" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkblue2/north, /area/ice_colony/surface/excavation) -"kGt" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"kHr" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"kHT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +"kFA" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"kGb" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) +"kGM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Colony Power Substation SMES"; + req_access_txt = "100" }, -/area/ice_colony/underground/reception) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/substation/smes) +"kIq" = ( +/obj/item/storage/box/lightstick, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms) "kIK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) -"kIQ" = ( -/obj/structure/surface/table, +"kIL" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"kJi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"kJI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"kJD" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) "kKc" = ( /obj/structure/ice/thin, /turf/open/ice, @@ -7405,164 +5718,104 @@ /obj/item/storage/toolbox/mechanical, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"kKu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) "kKH" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"kKY" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/dorms) -"kLu" = ( -/turf/open/floor{ +"kKQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "darkyellowcorners2" + name = "\improper Colony Power Substation"; + req_access_txt = "100" }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/substation) +"kKY" = ( +/turf/closed/wall/r_wall, /area/ice_colony/surface/dorms) -"kLA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "research_storage_ladder" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"kLS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"kKZ" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"kLo" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"kLt" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"kLx" = ( +/obj/structure/bed/roller, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"kLH" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"kLP" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"kMC" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/survival, +/obj/item/device/flashlight, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"kMK" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) "kNF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"kNG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle2"; - dockId = "ice_dorm_lower"; - dir = 8; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) "kOC" = ( /obj/structure/closet/crate/secure, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) -"kPE" = ( -/obj/structure/surface/rack, -/obj/item/device/flash/old, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"kQd" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"kQx" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"kQZ" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"kRt" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"kRM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"kSL" = ( -/obj/structure/machinery/door_control{ - id = "garage_ice_2"; - name = "garage shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"kUO" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"kVg" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation/smes) -"kVS" = ( -/obj/structure/closet/crate, -/obj/item/tool/weldingtool, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"kVV" = ( -/obj/structure/surface/table, -/obj/item/device/flash/old, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"kPf" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/underground) +"kPH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"kSE" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/garage/one) +"kTe" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/substation) +"kTv" = ( +/obj/structure/closet/crate/secure/hydrosec, +/obj/item/clothing/under/color/green, +/obj/item/clothing/under/color/green, +/obj/item/clothing/under/color/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/north) +"kTO" = ( +/obj/structure/machinery/light_switch{ + pixel_y = 32 }, -/area/ice_colony/surface/research/field_gear) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"kUo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"kUG" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) +"kWb" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/underground) "kWi" = ( /obj/structure/machinery/door_control{ id = "Classic_05"; @@ -7570,117 +5823,77 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"kWQ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"kXO" = ( -/obj/structure/surface/table/holotable, -/obj/item/tool/weldingtool, -/obj/item/storage/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering) -"kYr" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"kYs" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"lak" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"laA" = ( +"kWK" = ( +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"kXc" = ( +/obj/structure/closet/crate, +/obj/item/device/flashlight, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"kYR" = ( +/obj/structure/surface/table, /obj/effect/landmark/good_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"lbO" = ( +/obj/structure/cryofeed, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) -"laC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) -"lbS" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/firstaid/o2, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"lcn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_y = 14 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) -"lcw" = ( -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) +"lcB" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "lcO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood/large_stack, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/east) +"lcT" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) "ldc" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/storage) -"ldh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) "ldy" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"lev" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"ldA" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/lavatory) +"ldP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_0001"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/power) +"ldT" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/treatment) +"leN" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_research_cargo_2"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) +"leR" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/storage) +"lfM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) "lfQ" = ( /obj/structure/machinery/door_control{ id = "Classic_02"; @@ -7688,22 +5901,21 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"lge" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"lhr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, +"lgd" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/crew/canteen) +"lgW" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"lhM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) "lhT" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/surface/clinic/storage) @@ -7713,48 +5925,28 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"lji" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/research/work) -"ljD" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/alpha) -"ljM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"liP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "lkt" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) +"lkJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) "llm" = ( /obj/structure/closet/radiation, /turf/open/floor/engine, /area/ice_colony/underground/research) -"llq" = ( -/obj/item/storage/toolbox, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) "llr" = ( /obj/structure/ice/thin, /turf/open/ice, @@ -7764,33 +5956,16 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"lmW" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/beta) -"lnd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"lnu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"lnI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) +"lnA" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"lol" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/lavatory) +"loL" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) "lpb" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -7798,33 +5973,19 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"lpK" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" +"lpw" = ( +/obj/structure/coatrack, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) +"lrr" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"lrL" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/dark, /area/ice_colony/surface/hydroponics/north) -"lqg" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"lqs" = ( -/obj/structure/toilet, -/obj/item/storage/bible, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"lrK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) "lsI" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) @@ -7836,43 +5997,28 @@ /obj/structure/prop/server_equipment/laptop, /turf/open/floor/engine, /area/ice_colony/underground/research) -"lty" = ( -/obj/structure/surface/table/holotable, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) +"ltM" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/ground) "luf" = ( /obj/structure/surface/rack, /obj/item/device/radio, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"luL" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) "lvh" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"lvp" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/bar/bar) +"lvi" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/maintenance/south) +"lvq" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/lv624/lazarus/landing_zones/lz2) "lvO" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -7882,97 +6028,53 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"lvQ" = ( -/obj/structure/surface/table/holotable, -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) "lvV" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"lwE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"lxo" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"lxu" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"lxC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/storage) "lxE" = ( /obj/structure/surface/table, /obj/item/storage/belt/utility/full, /obj/item/cell/high, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) +"lyA" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/bar/bar) "lzp" = ( /obj/item/frame/apc, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"lzr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"lzC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) +"lzH" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/surface/engineering) +"lAs" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "lAt" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/west) -"lAv" = ( +"lAw" = ( +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"lAz" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"lAR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"lAT" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility/full, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) "lBN" = ( /obj/structure/tunnel, /turf/open/auto_turf/snow/layer2, @@ -8000,37 +6102,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) -"lDk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"lDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"lDv" = ( -/obj/structure/machinery/disposal, -/obj/item/trash/cheesie, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"lDU" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) "lEf" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/engineering/substation) @@ -8038,109 +6109,93 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/ice_colony/underground/crew/library) -"lFc" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - icon_state = "dark" - }, +"lEn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"lFT" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/dark, /area/ice_colony/surface/requesitions) +"lFZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) "lGa" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"lGN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sausage, -/obj/item/reagent_container/food/snacks/sausage, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "lHk" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) -"lHY" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) +"lHG" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/research) "lHZ" = ( /turf/closed/wall, /area/ice_colony/surface/research) -"lIq" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) "lIu" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"lIX" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) "lJh" = ( /obj/item/trash/semki, /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"lLd" = ( -/obj/item/device/flashlight, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"lLe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"lJV" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"lKe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"lKh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/storage) +"lKo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/electric) +"lKD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/surface/hangar/beta) -"lLi" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"lKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/excavation) -"lLk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) +"lKH" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/item/tool/wirecutters, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"lKW" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, +/turf/open/floor/darkbluecorners2, /area/ice_colony/underground/reception) "lMS" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"lMT" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/tech_storage) -"lNj" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) "lNE" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -8155,72 +6210,46 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"lOz" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"lOZ" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"lPe" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +"lNV" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/research/work) +"lPw" = ( +/obj/structure/closet, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "lPY" = ( /obj/structure/machinery/door/window{ dir = 1 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"lQg" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"lQH" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"lRk" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility/full, -/turf/open/floor{ - icon_state = "dark" +"lQK" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"lRa" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, -/area/ice_colony/surface/requesitions) -"lSE" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"lRP" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) -"lTO" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +"lSA" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/plating/icefloor/warnplate/east, +/area/lv624/lazarus/landing_zones/lz2) +"lTa" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "lTZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8228,24 +6257,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) -"lVr" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/telecomms) +"lUz" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) +"lUK" = ( +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security) "lVx" = ( /obj/item/tool/pickaxe, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"lWf" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) +"lVF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"lWx" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) "lXe" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/crew/lavatory) @@ -8253,86 +6284,33 @@ /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research) +"lYc" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) "lYI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"lYJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"lZF" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_container/food/snacks/grown/potato, -/obj/item/reagent_container/food/snacks/grown/potato, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "mah" = ( /obj/structure/machinery/disposal, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/storage) -"maq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/field_gear) -"mau" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/medical/lobby) -"maY" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"mba" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/locker) -"mbe" = ( -/obj/structure/bed/chair{ +"mbF" = ( +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/structure/closet/crate, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"mbM" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"mby" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"mbD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) "mbV" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox, @@ -8341,31 +6319,58 @@ "mci" = ( /turf/closed/wall/rock/brown, /area/ice_colony/exterior/surface/cliff) +"mcE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/reception) +"mcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms) +"mcT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"mcW" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/north) "mdN" = ( /obj/structure/ore_box, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/mining) -"meh" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"meI" = ( -/obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"mfh" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" +"mdV" = ( +/obj/structure/surface/table/holotable, +/obj/item/tool/pen, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"mev" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"meU" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"mfe" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"mfp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) "mft" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /obj/structure/pipes/standard/simple/hidden/green{ @@ -8373,28 +6378,6 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"mfx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) -"mfS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) -"mgn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) "mgp" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/security) @@ -8402,88 +6385,84 @@ /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) +"mgL" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/north) "mgQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"mhs" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/underground) "mhC" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"mhT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"mia" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"miq" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "miu" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick/red, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"mje" = ( -/obj/structure/machinery/power/smes, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/south) -"mjf" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"miv" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway) +"miA" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) +"miZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"mje" = ( +/obj/structure/machinery/power/smes, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/south) +"mjB" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) "mjG" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/dirt, /area/ice_colony/underground/research/sample) -"mkm" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) "mlh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"mlo" = ( -/obj/structure/holowindow{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) "mlA" = ( /obj/structure/surface/table, /obj/item/stack/rods, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) +"mlF" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/research/work) "mlZ" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) +"mmw" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) "mmM" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/medical/lobby) +"mmP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) "mmT" = ( /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ layer = 3.5; @@ -8493,104 +6472,67 @@ /obj/structure/prop/invuln/remote_console_pod, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"mmV" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/engineering/substation) "mnf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"mnC" = ( -/obj/structure/curtain/open, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"mnK" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"mop" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/surface/storage_unit/power) -"mou" = ( -/obj/structure/surface/table/holotable, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/storage) -"mpR" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"mnr" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"mnX" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) +"mpq" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"mpu" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/work) +"mpz" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "mqb" = ( /obj/effect/landmark/yautja_teleport, /turf/open/ice, /area/ice_colony/exterior/surface/valley/north) -"mqs" = ( -/obj/structure/surface/table/woodentable, -/obj/item/toy/dice, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"mqx" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/locker) -"msa" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/research/field_gear) -"msr" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) +"mqH" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"mrz" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "msE" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/black_random, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"muh" = ( -/obj/item/stool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"mta" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/dorms/canteen) -"muH" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Colony Garage"; + req_access_txt = "100" }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/garage/two) +"mtG" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "muX" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -8606,85 +6548,52 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"mvL" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/field_gear) +"mwr" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) "mwB" = ( /obj/structure/machinery/chem_dispenser, /turf/open/floor/engine, /area/ice_colony/underground/research) -"mwT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/storage) -"mxI" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"mxN" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/clinic/storage) -"mzd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"mxm" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) +"mxS" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"mys" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/surface/research/field_gear) +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "mAp" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/valley/west) -"mBa" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"mBm" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"mBB" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/bodybag, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"mCQ" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit) +"mBs" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"mBE" = ( +/obj/structure/machinery/door/airlock/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"mBW" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) "mDG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/dorm_r) -"mDL" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_4"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) "mEa" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/chair/office/light{ @@ -8700,96 +6609,55 @@ /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"mFq" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"mFu" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"mFJ" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/research) "mFZ" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"mHr" = ( +"mGi" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"mGs" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"mHx" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"mGN" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering/substation) -"mHJ" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/work) +"mHk" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"mHs" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/surface/research) +/obj/structure/machinery/disposal, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "mIf" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/engineering/substation) -"mIN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"mIW" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"mJa" = ( +"mIp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"mJV" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkredcorners2/east, /area/ice_colony/underground/security) -"mKf" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) "mLf" = ( /turf/open/floor/wood, /area/ice_colony/surface/dorms) +"mLo" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) "mLr" = ( /obj/structure/machinery/shower{ dir = 4 @@ -8797,13 +6665,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research) -"mLv" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) "mLR" = ( /obj/structure/ladder{ height = 1; @@ -8812,179 +6673,81 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/research) -"mLY" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) "mMu" = ( /obj/structure/surface/table/holotable, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"mNB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/dorm_r) +"mNH" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) "mOK" = ( /obj/structure/largecrate, /turf/open/floor, /area/ice_colony/surface/requesitions) -"mPl" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) +"mPv" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/research/storage) "mPI" = ( /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"mRg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/hallway) -"mRm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"mRW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"mTv" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/space/compression, -/obj/item/clothing/head/helmet/space/compression, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/field_gear) -"mUp" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"mUS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "dark" +"mRa" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering/substation) +"mVn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/underground/storage) +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/beta) "mVr" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/research) -"mWb" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "mWl" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"mWr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"mXf" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure2, -/turf/open/floor/corsat{ - icon_state = "marked" +"mWu" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/plating/icefloor/warnplate, +/area/lv624/lazarus/landing_zones/lz2) "mXt" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"mYl" = ( -/obj/structure/machinery/door/poddoor{ - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "Strange Airlock" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"mYP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"mYX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) +"mYe" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/ground) +"mZi" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/dorms) "mZu" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"naP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"naU" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"mZH" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_st16"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/storage_unit/telecomms) -"nbb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +"nar" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"nat" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "nbv" = ( /obj/structure/ice/thin, /turf/open/ice, @@ -8996,202 +6759,71 @@ "ncM" = ( /turf/closed/wall, /area/ice_colony/surface/engineering/tool) -"ndf" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "ndp" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/black_random, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"ndC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"ndN" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/south) -"neP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Colony Engineering"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/engineering) +"ndE" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "nft" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/north) -"nfz" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"ngt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"ngK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"nhe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"nhn" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"nhV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"nie" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ice_classic_underground_research_cargo_1"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/storage) -"niu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"niO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"niT" = ( +"nfK" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"ngE" = ( /obj/structure/surface/table/reinforced, -/obj/item/trash/chips, -/turf/open/floor{ - dir = 4; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) +/obj/item/storage/belt/medical/full, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"niZ" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) "njn" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/lighter/zippo, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"njM" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"nke" = ( -/obj/structure/machinery/light, +"njZ" = ( +/obj/structure/closet/crate, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"nkd" = ( /obj/structure/surface/rack, -/obj/structure/holowindow{ - dir = 4 - }, -/obj/item/clothing/suit/space/compression, -/obj/item/clothing/head/helmet/space/compression, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/research/storage) -"nkC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/engineering) +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) "nlv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"nlG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"nlL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high, +"nlF" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"nmv" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"nmw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"nmD" = ( -/obj/structure/closet/crate, -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "dark" + dir = 4 }, -/area/ice_colony/surface/requesitions) -"nmG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/ice_colony/surface/garage/repair) +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"nlH" = ( +/obj/structure/surface/table/holotable, +/obj/item/paper_bin, +/obj/item/tool/pen/red, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"nmL" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) "nne" = ( /obj/structure/surface/table/woodentable, /obj/structure/machinery/computer3/laptop/secure_data, @@ -9200,50 +6832,17 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"nnM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"noj" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"noX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"nnL" = ( +/obj/structure/surface/table/holotable, +/obj/item/device/camera, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"non" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/dorms) -"npg" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"npE" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"npH" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "nqC" = ( /obj/structure/holowindow{ dir = 1; @@ -9254,66 +6853,46 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"nri" = ( -/obj/structure/surface/table/holotable, -/obj/item/trash/syndi_cakes, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"nsY" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"nty" = ( +"nrY" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/backpack/satchel/chem, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/storage) +"nsp" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/lavatory) +"nsr" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"ntp" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"nun" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"nuH" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms/canteen) +"nvB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"nuh" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"nvs" = ( +/turf/open/floor/engine, +/area/ice_colony/underground/research/sample) +"nvO" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/garage/one) +"nvP" = ( /obj/structure/surface/table/holotable, -/obj/item/reagent_container/hypospray/autoinjector/bicaridine, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"nvy" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"nvB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ice_colony/underground/research/sample) -"nvO" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/garage/one) -"nvT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"nvV" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) "nwa" = ( /obj/structure/surface/table, /obj/item/device/camera, @@ -9322,28 +6901,37 @@ "nwL" = ( /turf/closed/wall, /area/ice_colony/surface/excavation) -"nxM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_05"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) +"nwZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) +"nxD" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"nxW" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) "nyp" = ( /obj/structure/machinery/light, /turf/open/floor/engine, /area/ice_colony/underground/research) -"nzH" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" +"nzz" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"nzB" = ( +/obj/structure/holowindow{ + dir = 1 }, -/area/ice_colony/surface/research/temporary) +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"nAo" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/space/compression, +/obj/item/clothing/head/helmet/space/compression, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/research/storage) "nAs" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hydroponics/north) @@ -9351,160 +6939,125 @@ /obj/structure/machinery/space_heater, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) +"nBh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"nBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/alpha) "nBo" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"nBr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" +"nCi" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_03"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/storage) -"nDv" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"nCA" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/substation/smes) +"nCJ" = ( +/obj/structure/surface/table/holotable, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"nDP" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"nDT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"nDU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"nDZ" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"nEg" = ( +/obj/structure/shuttle/engine/router{ + dir = 4 + }, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) "nEA" = ( /obj/structure/surface/table/holotable, /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research) -"nEG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) +"nEJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/electric) "nEU" = ( /obj/structure/surface/rack, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"nFc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/storage) -"nFg" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"nFl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"nFP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) -"nHk" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"nHu" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"nIA" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"nII" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"nIQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"nJg" = ( -/obj/structure/surface/rack, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"nJr" = ( -/obj/structure/machinery/door/airlock/secure, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway) -"nJs" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"nJF" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" +"nEZ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hangar/hallway) +"nFF" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"nHm" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/shuttle/red, /area/ice_colony/surface/hangar/beta) -"nJX" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +"nHM" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/sprays, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"nIn" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/clinic/treatment) "nKa" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"nLE" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"nKm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/engineering) +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) +"nKJ" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"nLH" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) "nLR" = ( /obj/structure/grille, /turf/open/floor/plating/icefloor, @@ -9515,54 +7068,45 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"nNx" = ( -/obj/structure/closet/crate/freezer, -/obj/item/tool/crowbar, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - icon_state = "dark" +"nMQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/plating/icefloor/warnplate/east, +/area/lv624/lazarus/landing_zones/lz2) +"nMW" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) +"nOi" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) "nOZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"nPs" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"nQp" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"nQH" = ( +"nPx" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"nQU" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"nQQ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) +"nRz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/engineering) +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) "nRM" = ( /obj/structure/grille, /obj/effect/decal/warning_stripes{ @@ -9571,20 +7115,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) -"nRY" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"nSf" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/storage) +"nSw" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) "nSI" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick, @@ -9597,137 +7131,104 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"nUh" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) "nUp" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor, /area/ice_colony/surface/requesitions) -"nUT" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +"nUO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/shuttle/elevator3/underground) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"nUU" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "nVe" = ( /obj/structure/machinery/light, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"nVh" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/south) -"nVJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"nVL" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"nVs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/command/center) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/north) "nWj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"nWk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"nXo" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"nXP" = ( -/obj/docking_port/stationary/trijent_elevator{ - airlock_area = /area/shuttle/elevator2/underground; - airlock_exit = "elevator"; - elevator_network = "dorm"; - width = 8; - height = 5; - id = "ice_dorm_lower"; - name = "Dormitory Lower Floor" +"nXB" = ( +/obj/structure/closet/crate/freezer, +/obj/item/tool/crowbar, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"nXJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/garage/one) +"nXV" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/shuttle/elevator2/underground) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/alpha) +"nXY" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) "nYm" = ( /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"nYI" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) +"nYC" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) "nZl" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/north) -"nZx" = ( -/obj/structure/machinery/light{ +"nZE" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ dir = 1 }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/storage) +"nZH" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/garage/two) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) "nZP" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/engineering/generator) +"oak" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) "oaC" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"obS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/engineering) -"ocm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) "oco" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) -"ocw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"ocz" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "odp" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -9737,60 +7238,42 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"odv" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) "odM" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 29 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"oeb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"oec" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"oef" = ( -/obj/structure/cryofeed, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +"oee" = ( +/obj/structure/closet/crate, +/obj/item/toy/prize/phazon, +/obj/item/toy/gun, +/obj/item/toy/gun_ammo, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"oez" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"oew" = ( -/obj/structure/machinery/power/apc/weak{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"oeC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "oeF" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/briefcase, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"oeV" = ( -/obj/structure/bed/roller, -/obj/item/weapon/gun/shotgun/combat, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"oeS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/dorms/canteen) +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) "ofc" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/photo_album, @@ -9800,15 +7283,6 @@ /obj/item/stack/nanopaste, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"ofI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) "ogx" = ( /obj/structure/closet/crate, /turf/open/floor/plating/icefloor, @@ -9819,19 +7293,25 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"ohw" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/dorm_r) +"ogS" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sausage, +/obj/item/reagent_container/food/snacks/sausage, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"ohd" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/underground/research/work) "ohE" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/bar/bar) +"ohY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) "oil" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -9841,68 +7321,61 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"oiq" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) "oiA" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/maintenance/north) -"oiQ" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/toolbox, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"oiF" = ( +/obj/structure/mirror{ + pixel_y = -29 }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"oiX" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) -"ojd" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "ojl" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/ice_colony/underground/reception) +"oju" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/darkred2, +/area/ice_colony/underground/medical/lobby) +"ojM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_6"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "ojU" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/west) -"okx" = ( -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"okr" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "okz" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"okF" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"okW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) +"okL" = ( +/obj/structure/surface/table/holotable, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"okU" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/research) +"olb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) "olD" = ( /obj/item/lightstick{ anchored = 1; @@ -9911,63 +7384,72 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"omh" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"ond" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +"omf" = ( +/turf/open/floor/darkyellow2/northeast, /area/ice_colony/surface/dorms) -"onq" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" +"omH" = ( +/obj/structure/dispenser, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"omO" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/clinic/storage) +"onj" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/reception) "onr" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south/excavation) -"oop" = ( -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkbrown2" +"onF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/excavation) +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"ooc" = ( +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"ood" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) +"ooW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "opc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"opn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"opu" = ( -/obj/structure/surface/table/holotable, -/obj/item/handcuffs, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) +"opv" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "opJ" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"oqw" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"oqx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) "oqV" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" @@ -9977,132 +7459,94 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"oru" = ( -/obj/structure/closet/crate, -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "orO" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator3/ground) -"orZ" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) "osw" = ( /obj/structure/surface/table/woodentable, /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"otT" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +"osy" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure2, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"ouk" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, +/turf/open/floor/darkbrowncorners2/north, /area/ice_colony/underground/security/armory) +"ouo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) "oup" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/research/tech_storage) "ovn" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/research/sample) -"ovD" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/storage_unit/research) -"oxt" = ( -/obj/structure/machinery/light{ +"ovZ" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"owu" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/alpha) -"oxv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/underground/research/work) +"owX" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) +"oxg" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/surface/engineering) -"oxx" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/shuttle/diagonal{ + icon_state = "heater" }, -/area/ice_colony/surface/dorms) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "oxA" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"oyb" = ( +"oxB" = ( /obj/structure/surface/rack, -/obj/item/device/t_scanner, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"oys" = ( -/turf/closed/wall, -/area/ice_colony/surface/engineering/generator) -"oyS" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"ozb" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"ozg" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"ozl" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"ozH" = ( -/obj/structure/holowindow{ - dir = 4 - }, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) +"oxD" = ( /obj/structure/surface/rack, -/obj/item/clothing/suit/space/compression, -/obj/item/clothing/head/helmet/space/compression, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/item/stack/sheet/plasteel{ + amount = 15 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"oyb" = ( +/obj/structure/surface/rack, +/obj/item/device/t_scanner, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"oys" = ( +/turf/closed/wall, +/area/ice_colony/surface/engineering/generator) +"oyA" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"oyM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "oAd" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/plating/icefloor, @@ -10111,42 +7555,23 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"oBi" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"oBU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"oCX" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"oDa" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"oDu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +"oBT" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"oCM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/holowindow{ + dir = 4 }, -/area/ice_colony/surface/hangar/alpha) +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/reception) +"oEI" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) "oFa" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -10156,69 +7581,46 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"oFT" = ( +"oFY" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"oGo" = ( -/obj/structure/closet/crate, -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"oGz" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"oGC" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"oGV" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/medical/ointment, -/turf/open/floor{ - icon_state = "darkredcorners2" + dir = 4 }, -/area/ice_colony/underground/medical/lobby) +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/reception) +"oGc" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/large_stack, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"oGP" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) "oHC" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"oHJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"oIr" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/surface/engineering) +"oIc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"oIm" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/research) +"oIq" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator3/ground) "oIt" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) -"oIQ" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) +"oIz" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) +"oJp" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) "oJz" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -10228,60 +7630,33 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"oKf" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"oLf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/storage) +"oLd" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) "oLk" = ( /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) -"oLs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"oLG" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"oLL" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) "oLV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"oMq" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/lv624/lazarus/landing_zones/lz2) +"oMs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) "oMB" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"oMX" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) +"oMC" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) "oNj" = ( /obj/structure/prop/static_tank/water, /turf/open/floor/plating/icefloor, @@ -10292,38 +7667,37 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"oNW" = ( -/obj/structure/coatrack, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, +"oNX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/dorms) "oOf" = ( /obj/structure/machinery/light, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) -"oOI" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" +"oOB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) +"oPK" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/surface/storage_unit/telecomms) +/obj/structure/largecrate, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) "oQb" = ( /turf/closed/wall, /area/ice_colony/surface/hydroponics/north) -"oQk" = ( -/obj/item/roller, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) "oQK" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/research) +"oQL" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) "oQM" = ( /obj/structure/surface/table/holotable, /obj/item/device/t_scanner, @@ -10337,95 +7711,73 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"oSs" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"oSL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway) -"oTb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/hallway/south_east) -"oTo" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"oRu" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/underground) +"oRJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"oSE" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "ship_ladder"; + pixel_y = 16 }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"oSU" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"oTa" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/work) +"oTl" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/medical/lobby) +"oTF" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/locker) "oUj" = ( /obj/structure/surface/rack, /obj/item/reagent_container/glass/canister/oxygen, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"oUw" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"oVO" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) -"oVZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/sample) +"oUA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/reception) +"oWs" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "oWF" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"oWZ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"oXQ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) +"oXM" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "oYl" = ( /obj/structure/machinery/door_control{ id = "ice_classic_underground_research_cargo_6" }, /turf/closed/wall/hangar, /area/ice_colony/underground/research/storage) -"oYv" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"oZp" = ( -/obj/structure/surface/table/holotable, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"oZq" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/medical/lobby) "oZr" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) @@ -10433,99 +7785,65 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"oZJ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) "pad" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/engineering/substation) -"pas" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"paK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"pbm" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"pby" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +"pbO" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/north) +"pcy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/engineering) -"pbH" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"pcO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_15"; + pixel_y = 10 }, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/underground/hallway/south_east) -"pbX" = ( -/obj/structure/machinery/juicer, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"pcr" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/snappops, -/obj/item/storage/box/snappops, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"pcR" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation/smes) -"per" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"peZ" = ( +"pee" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +/turf/open/floor/dark, +/area/ice_colony/underground/crew/canteen) +"pel" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/area/ice_colony/underground/hallway/south_east) -"pfS" = ( -/obj/structure/surface/table/holotable, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"pfp" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"pfy" = ( +/obj/structure/surface/table/reinforced, /obj/item/folder/black_random, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/reception) +"pfA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) +"pgb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/item/cell, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) "pgX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -10535,30 +7853,14 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"phx" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/survival, -/obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"phc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) "phG" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"phM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) "pip" = ( /obj/structure/machinery/door_control{ id = "Classic_4"; @@ -10566,66 +7868,60 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"piT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) +"pja" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hangar/alpha) "pkn" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/research) -"pkv" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) "pkG" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/lockbox, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"pkV" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/reception) "plC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"plG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/field_gear) -"pmV" = ( -/obj/structure/surface/table, -/obj/item/folder/red, -/obj/item/paper, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +"plZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"pmE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/reception) "pmY" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/valley/southeast) +"pnb" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) "pnh" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/south) +"pnl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/reception) "pnn" = ( /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"pnq" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating{ - icon_state = "warnplate" +"pnr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/surface/disposals) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/alpha) "pnQ" = ( /obj/structure/surface/table/holotable, /obj/structure/machinery/light{ @@ -10633,35 +7929,27 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"pnW" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"poh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, +"pnV" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/dorms) "por" = ( /obj/structure/surface/table/holotable, /obj/item/device/healthanalyzer, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"ppl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurplecorners2" +"poB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/research) +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"poW" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/photo_album, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "ppp" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, @@ -10672,6 +7960,9 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) +"ppy" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) "ppz" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/research/work) @@ -10679,24 +7970,25 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"ppZ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"pqc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"pqa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/ice_colony/underground/hallway/south_east) +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"prn" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/medical/lobby) "pro" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/pass) +"prp" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research/temporary) "pru" = ( /obj/structure/machinery/light{ dir = 1 @@ -10709,13 +8001,17 @@ /obj/item/tool/weldingtool, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"pso" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"psq" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"psB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) "psH" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -10729,15 +8025,18 @@ "ptk" = ( /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"ptu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) +"ptw" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"ptL" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/snappops, +/obj/item/storage/box/snappops, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "ptP" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/fancy/vials, @@ -10746,80 +8045,57 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"puM" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/work) -"pwf" = ( -/obj/structure/closet/crate, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"ptU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) +"pvb" = ( +/obj/structure/closet, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"pvJ" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/disposals) +"pvU" = ( +/obj/structure/coatrack, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"pwa" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/dorms) "pwO" = ( /obj/structure/target/alien, /turf/open/floor/engine, /area/ice_colony/underground/research) -"pwZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/bar/bar) -"pxp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) "pxD" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/engineering) -"pyz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"pyM" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering) -"pyX" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"pzq" = ( +"pxQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/underground/hallway/south_east) -"pzy" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"pyn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/library) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/alpha) +"pyw" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/dorms) +"pzC" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/treatment) +"pzL" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) "pAe" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, @@ -10837,21 +8113,15 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south/excavation) -"pCi" = ( -/obj/structure/surface/table, -/obj/item/device/t_scanner, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"pCL" = ( -/obj/structure/closet/crate, -/obj/item/storage/bible, -/turf/open/floor{ - icon_state = "dark" +"pCs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/maintenance/research) +"pCI" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "pDb" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, @@ -10860,73 +8130,68 @@ /obj/structure/closet/crate, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"pDH" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) +"pDx" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"pDS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) "pDX" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) +"pDZ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering/substation) +"pEE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/dorms) +"pEI" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/toolbox, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering) "pEJ" = ( /obj/structure/filingcabinet, /turf/open/floor/engine, /area/ice_colony/underground/research) -"pEM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"pER" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"pFk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"pFp" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"pFM" = ( -/obj/structure/machinery/door_control{ - id = "ice_classic_underground_research_cargo_3" +"pEK" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/storage) +"pFM" = ( +/obj/structure/machinery/door_control{ + id = "ice_classic_underground_research_cargo_3" }, /turf/closed/wall/r_wall/bunker, /area/ice_colony/underground/research/storage) "pFX" = ( /turf/closed/wall, /area/ice_colony/surface/disposals) -"pGI" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "13" - }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +"pGq" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/structure/holowindow{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/research/storage) +"pGB" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"pHo" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms) "pHw" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, @@ -10936,32 +8201,42 @@ /obj/item/stack/medical/ointment, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"pIl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) "pIA" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"pJi" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/poster, -/turf/open/floor{ - icon_state = "dark" +"pIK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/surface/requesitions) -"pJV" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"pJf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/exterior/surface/landing_pad) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/excavation) +"pJj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/locker) +"pJW" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/folder/white, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"pKf" = ( +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) "pKm" = ( /obj/item/trash/barcardine, /obj/structure/machinery/light/small{ @@ -10969,58 +8244,35 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"pLf" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"pMl" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"pNf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"pKO" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/ground) +"pKT" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/dorms) +"pLD" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"pNv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"pNx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/security) +"pMh" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"pNB" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/substation/smes) "pNQ" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"pNW" = ( -/obj/structure/closet/crate, -/obj/item/storage/firstaid/o2, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"pOe" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/ground) "pOC" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/gold, @@ -11030,177 +8282,86 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"pPw" = ( -/obj/structure/surface/rack, -/obj/item/tool/hatchet, -/obj/item/tool/hatchet, -/obj/item/tool/minihoe, -/obj/item/tool/minihoe, -/obj/item/tool/minihoe, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"pPC" = ( -/obj/structure/surface/table/holotable, -/obj/item/folder/black_random, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) "pPX" = ( /obj/structure/machinery/light, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research) -"pRr" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"pRF" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"pRL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"pSj" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"pSF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"pQO" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_0004"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/research/tech_storage) -"pSP" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/storage_unit/power) +"pSo" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/surface/dorms) +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"pSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "pTb" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/research/field_gear) -"pTi" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"pTq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) "pTy" = ( /turf/closed/wall/r_wall/bunker, /area/ice_colony/underground/research/storage) +"pTZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) "pUL" = ( /obj/structure/tunnel, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"pVp" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/work) -"pVu" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"pWa" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) -"pWq" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"pXb" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/meson, -/turf/open/floor{ - icon_state = "dark" +"pWV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/security/brig) "pXI" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"pXJ" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "pXO" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/engine, /area/ice_colony/underground/research) -"pYA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/rollingpin, -/obj/item/storage/box, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"pYT" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"pZj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"qam" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) +"pXT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering/substation) +"pYa" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security) +"pYt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"pYN" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hangar/hallway) +"pZs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"pZJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) "qav" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -11209,169 +8370,120 @@ /obj/structure/surface/table, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"qaX" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"qaH" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/underground) "qbd" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"qda" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"qdx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"qdO" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ice_classic_research_secure_blast"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 +"qbr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"qbT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/adv, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/clinic/storage) +"qcD" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/substation) +"qcH" = ( +/obj/structure/bed/roller, +/obj/item/weapon/gun/shotgun/combat, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"qdc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) +"qdW" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"qem" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/surface/research) +/obj/structure/closet, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/lavatory) "qeH" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, /turf/open/floor, /area/ice_colony/surface/requesitions) -"qfj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"qfx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"qfE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"qgc" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"qgx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"qgF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"qgM" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"qgW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" +"qeP" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/ice_colony/underground/security) +"qfz" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"qgL" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/area/ice_colony/surface/research) +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) "qgY" = ( /obj/structure/prop/static_tank/water, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"qhj" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"qhp" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, +"qhb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/darkyellow2, /area/ice_colony/underground/storage) -"qiu" = ( -/turf/open/floor{ - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) -"qje" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/toolbox/emergency, +"qhJ" = ( +/obj/structure/surface/table/reinforced, /obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"qhP" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) +"qie" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/dorms) "qjg" = ( /obj/structure/surface/rack, /obj/item/cell, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) +"qjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/alpha) "qkh" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"qkp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/beta) -"qkw" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"qkr" = ( +/obj/structure/curtain/open, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"qlp" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"qlr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) "qls" = ( /obj/structure/surface/table, /obj/item/tool/shovel/snow, @@ -11384,80 +8496,60 @@ /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"qmM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) -"qmQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"qnf" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle"; - dockId = "ice_lab_upper"; - dir = 1; - pixel_y = -32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"qop" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight, -/obj/item/tool/weldingtool, -/turf/open/floor{ - icon_state = "dark" +"qmb" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/medical/lobby) +"qme" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"qmg" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/ground) +"qnD" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"qor" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/lavatory) "qpa" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/fancy/cigarettes/blackpack, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"qpW" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) +"qpu" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) "qqi" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, /turf/open/floor/wood, /area/ice_colony/underground/command/center) +"qqn" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"qqK" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) "qqP" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"qrz" = ( -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"qrA" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) +"qqZ" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hangar/alpha) "qsi" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil, @@ -11472,318 +8564,158 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"qsw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +"qsr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"qsy" = ( +/obj/structure/toilet, +/obj/item/toy/bikehorn/rubberducky, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) "qtF" = ( /obj/structure/machinery/washing_machine, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"qtN" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +"qtQ" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/storage_unit/research) +"qtS" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/ice_colony/underground/security) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) "qtX" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"quF" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"qvc" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"qwn" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"qwt" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"qwG" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"qwR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) -"qwS" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"qxC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"qxO" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/crew/disposals) -"qxS" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"qxY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) +"qvS" = ( +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/medical/lobby) +"qwQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/dorms) "qyd" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/donut_box/empty, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"qzb" = ( -/obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"qzc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) "qzh" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /obj/item/reagent_container/glass/canister/oxygen, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"qzq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) +"qzk" = ( +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"qzn" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "qzM" = ( /turf/open/gm/dirt, /area/ice_colony/underground/maintenance/east) +"qzX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Colony Power Substation"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/substation/smes) "qAd" = ( /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"qAQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"qBh" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"qBH" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"qBT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_2"; - name = "\improper Garage Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/garage/two) -"qCy" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"qDy" = ( -/obj/structure/closet/crate, -/obj/item/circuitboard/apc, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"qDL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"qEx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"qEK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "dark" +"qCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/hangar/alpha) -"qFD" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/surface/engineering) -"qFU" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"qGU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"qHb" = ( -/obj/structure/surface/table/holotable, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"qHj" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"qHp" = ( +"qCG" = ( /obj/structure/shuttle/diagonal{ - icon_state = "burst_r" + icon_state = "swall_f6" }, +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"qDk" = ( +/obj/structure/machinery/door/airlock/secure, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) +"qDx" = ( /obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" + icon_state = "swall0" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/beta) -"qHK" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/watertank, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"qEf" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"qEu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/donut_box/empty, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"qFc" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) +"qFt" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/area/ice_colony/surface/hydroponics/north) -"qIa" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"qFX" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"qGC" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/darkyellowcorners2, /area/ice_colony/surface/dorms) -"qIF" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) +"qIN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) "qJj" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"qJJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"qJT" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) +"qKo" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hydroponics/north) "qKW" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) +"qMf" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) "qMB" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"qNi" = ( -/obj/structure/surface/table, -/obj/item/book/manual/barman_recipes, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) +"qMW" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit) "qNj" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -11798,319 +8730,194 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) +"qNp" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "qNB" = ( /obj/structure/surface/table/holotable, /obj/effect/spawner/random/powercell, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"qOi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/rad, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"qOt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"qOA" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"qOM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) +"qNU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/reception) +"qOh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"qOk" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/substation/smes) "qOS" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"qOU" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"qPw" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) "qPK" = ( /turf/open/auto_turf/snow/layer3, /area/space) +"qPP" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/treatment) "qQi" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"qQx" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"qQM" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"qRb" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "12" - }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) "qRy" = ( /obj/structure/machinery/door_control{ id = "ICE_CLASSIC_RESEARCH_SMALL" }, /turf/closed/wall/r_wall, /area/ice_colony/surface/research) -"qRC" = ( -/obj/structure/surface/table/holotable, -/obj/item/device/t_scanner, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering) -"qRN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +"qRF" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"qRM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/hallway) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) "qSb" = ( /obj/item/paper, /obj/item/paper, /obj/item/paper, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"qSv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/storage_unit/research) -"qTA" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) +"qSl" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"qTf" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/north) "qTF" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/reception) +"qTI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/high, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"qTP" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) "qUi" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/cliff) -"qUl" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/masks, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"qUC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/research) -"qVW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"qVX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) +"qUu" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"qUP" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/underground) "qWl" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"qWx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) "qWE" = ( /obj/structure/bed/chair/office/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ice_colony/underground/research/sample) -"qWU" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"qXo" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"qXs" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"qXA" = ( -/obj/structure/surface/table/holotable, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor/engine, -/area/ice_colony/underground/research) -"qXO" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"qYi" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/plating, -/area/ice_colony/surface/engineering/generator) -"qYm" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_04"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"qYo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/northwest) -"qYq" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research) -"qYG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/research/work) -"qZd" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/clinic/storage) -"rbp" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"rbM" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 + dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/engine, +/area/ice_colony/underground/research/sample) +"qXh" = ( +/obj/item/stool, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms/canteen) +"qXm" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"qXA" = ( +/obj/structure/surface/table/holotable, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/engine, +/area/ice_colony/underground/research) +"qYi" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/plating, +/area/ice_colony/surface/engineering/generator) +"qYo" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/northwest) +"qZa" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/ice_colony/exterior/underground/caves/dig) -"rcv" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"raJ" = ( +/obj/structure/surface/table/holotable, +/obj/item/clothing/mask/gas, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/substation) +"raU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/ice_colony/surface/storage_unit/power) +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"rbs" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"rbw" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/engineering/generator) +"rcE" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) "rdO" = ( /obj/structure/surface/table/woodentable, /obj/structure/prop/server_equipment/laptop, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"rdS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/security) +"reo" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/rollingpin, +/obj/item/storage/box, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "res" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south) -"ret" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) +"rey" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/lv624/lazarus/landing_zones/lz2) "reA" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -12119,114 +8926,46 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"reH" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"reU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "rfa" = ( /obj/item/trash/liquidfood, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"rgl" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"rgV" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/crew/lavatory) -"rha" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/security/armory) -"rho" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"rfp" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) +"rfx" = ( +/obj/structure/closet/crate, +/obj/item/toy/sword, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "rhA" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) -"rhH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) "rif" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"rip" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"riJ" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"riW" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"rjq" = ( +"rik" = ( +/obj/structure/machinery/juicer, /obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"rkp" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"rit" = ( +/obj/structure/largecrate, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"rkh" = ( +/obj/structure/surface/table/holotable, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/canteen) "rle" = ( /obj/structure/surface/table/woodentable, /obj/item/folder/black_random, @@ -12245,103 +8984,58 @@ icon_state = "swall8" }, /area/ice_colony/surface/hangar/beta) +"rmj" = ( +/obj/structure/shuttle/diagonal{ + dir = 9; + icon_state = "wall" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"rmI" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) "rmT" = ( /obj/structure/inflatable, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"rnB" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"rnF" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"ror" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) +"rng" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) "roE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"rpa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/alpha) -"rpD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_0003"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/power) -"rpK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rpL" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/floor/plating/icefloor/warnplate/east, +/area/lv624/lazarus/landing_zones/lz2) +"rpM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/hallway) +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "rpU" = ( /obj/effect/landmark/monkey_spawn, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"rrg" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"rrw" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/photo_album, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"rrG" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hydroponics/north) -"rrU" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) +"rpW" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"rqc" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) "rsv" = ( /turf/closed/wall, /area/ice_colony/surface/research/temporary) @@ -12353,12 +9047,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research) -"rtG" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering) "rtW" = ( /obj/item/evidencebag, /obj/structure/machinery/light/small{ @@ -12368,46 +9056,15 @@ /obj/item/trash/candy, /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"rup" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms/canteen) -"rux" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"ruI" = ( -/obj/structure/surface/table/holotable, -/obj/item/clothing/mask/gas, -/obj/item/tank/emergency_oxygen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"rvx" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Colony Engineering Material Storage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/engineering/tool) -"rvV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) +"rvU" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) +"rwo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/weldingtool, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) "rwF" = ( /obj/structure/surface/table/holotable, /obj/item/stack/cable_coil, @@ -12418,13 +9075,18 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/pass) -"rym" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"rxm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/hangar/alpha) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) +"ryd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "ryn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12439,27 +9101,34 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"rzf" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hangar/alpha) -"rzS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"rzs" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/hangar/alpha) -"rAk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/mining) +"rAe" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"rAn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) +"rAI" = ( +/obj/structure/closet, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/engineering/substation) +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"rAQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/field_gear) "rAU" = ( /obj/structure/holowindow{ dir = 4 @@ -12467,71 +9136,78 @@ /obj/item/trash/kepler, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"rBc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"rBf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"rBj" = ( -/turf/open/floor{ - icon_state = "darkgreen2" +"rBZ" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/meatball, +/obj/item/reagent_container/food/snacks/meatball, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"rCa" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"rCp" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/storage) +"rCx" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/underground/hallway/south_east) -"rCj" = ( -/obj/structure/prop/static_tank/fuel, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) "rCI" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"rDK" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"rDY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/research/work) "rEJ" = ( /obj/structure/closet/crate/freezer, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"rEQ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/warnplate, +/area/lv624/lazarus/landing_zones/lz2) +"rEZ" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"rFH" = ( +/obj/structure/closet/crate, +/obj/item/poster, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"rFY" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"rGb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "rGl" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"rGs" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"rHu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/hallway/south_east) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/lavatory) "rIf" = ( /obj/structure/machinery/door_control{ id = "Classic_01"; @@ -12539,13 +9215,19 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"rIh" = ( +"rIo" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator3/underground) +"rIU" = ( /obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"rIY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) "rJv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/icefloor, @@ -12554,62 +9236,79 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south/excavation) -"rJY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"rKl" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_2"; + name = "garage shutter control"; + pixel_y = -30 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"rKr" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/glass/large_stack, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"rKO" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/crew/canteen) -"rLX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"rMh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"rLx" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/tech_storage) +"rLJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"rMl" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/sheet/wood/large_stack, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/command/center) +"rLW" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"rMj" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research/field_gear) +"rMo" = ( +/obj/structure/holowindow{ + dir = 4 }, -/area/ice_colony/underground/engineering/substation) +/obj/structure/surface/rack, +/obj/item/clothing/suit/space/compression, +/obj/item/clothing/head/helmet/space/compression, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/underground/research/work) "rNh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"rNT" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"rOp" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"rOJ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "darkgreencorners2" +"rNv" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/storage) +"rNI" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"rOk" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/bar/bar) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/engineering/substation) +"rOG" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/storage) "rPt" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor, @@ -12621,19 +9320,41 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"rPJ" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation) +"rPD" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) "rPK" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/maintenance/research) +"rQA" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"rQO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) +"rRf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research) +"rRr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_armoury"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/security/armory) +"rRI" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/box/donkpockets, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) "rSn" = ( /obj/structure/machinery/door/window{ dir = 1 @@ -12646,90 +9367,74 @@ "rSy" = ( /turf/closed/wall, /area/ice_colony/exterior/underground/caves/dig) -"rSQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"rTE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"rUG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"rUH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"rTA" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"rUl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) "rUI" = ( /obj/structure/surface/table/holotable, /obj/item/reagent_container/glass/beaker, /turf/open/floor/engine, /area/ice_colony/underground/research) -"rUJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) "rUK" = ( /obj/structure/machinery/disposal, /turf/open/floor, /area/ice_colony/surface/requesitions) +"rUW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/substation) +"rVa" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "rVf" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/research/temporary) -"rWf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"rWN" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/sample) +"rVw" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering/substation) +"rXI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) +"rXK" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/lv624/lazarus/landing_zones/lz2) "rYM" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"rYP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"rZx" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) +"rZA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"rZJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "ice_classic_underground_research_cargo_4"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) +"rZY" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) "saY" = ( /obj/structure/surface/table/woodentable, /obj/item/device/camera, @@ -12739,64 +9444,41 @@ /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/research/work) -"sbB" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) "sbD" = ( /obj/structure/machinery/door_control{ id = "ice_classic_underground_research_cargo_5" }, /turf/closed/wall/hangar, /area/ice_colony/underground/research/storage) -"sbK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) +"sbM" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) "sbS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/west) -"scF" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/tech_storage) +/area/ice_colony/exterior/surface/valley/west) "scN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"scX" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) +"scZ" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_container/food/snacks/grown/potato, +/obj/item/reagent_container/food/snacks/grown/potato, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "sdq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"sdu" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation/smes) +"sdJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) "sea" = ( /obj/structure/machinery/light{ dir = 8 @@ -12809,170 +9491,108 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"seI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"sgd" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"sem" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"sey" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/surface/engineering/electric) +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "sgg" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"shd" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"shB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"shJ" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +"sgD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"sip" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"sgM" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/holowindow, +/obj/item/tool/pen, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"she" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway/south_east) +"shL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/hangar/beta) -"siz" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/north) +"shX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"shY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/electric) +"siC" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"siL" = ( /obj/structure/surface/table, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) "siM" = ( /turf/closed/wall, /area/ice_colony/surface/research/field_gear) -"skr" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"skt" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"sle" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 +"skP" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"slC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/storage_unit/telecomms) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms/restroom_w) +"slE" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"slH" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/toolbox/emergency, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) "smq" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator3/underground) -"smE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/research/work) -"snf" = ( -/obj/structure/closet/crate, -/obj/item/toy/prize/marauder, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"snk" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"snC" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hydroponics/north) -"snF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"smC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/dorms) +"smR" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) "soO" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor, /area/ice_colony/surface/requesitions) -"spe" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"spp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"spx" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +"soV" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, /area/ice_colony/surface/clinic/storage) "sqG" = ( /obj/effect/landmark/survivor_spawner, @@ -12981,16 +9601,28 @@ "sqV" = ( /turf/closed/wall/hangar, /area/ice_colony/surface/bar/bar) -"srv" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) +"srk" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/reception) +"sru" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) "srH" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) +"srJ" = ( +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"srQ" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) "srS" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -13000,182 +9632,128 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"srY" = ( -/obj/docking_port/stationary/trijent_elevator{ - id = "ice_lab_lower"; - elevator_network = "lab"; - name = "Laboratory Lower Floor"; - dir = 2; - width = 8; - height = 5; - airlock_area = /area/shuttle/elevator3/underground; - airlock_exit = "elevator" - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"ssX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"stm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) +"ste" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/dorms) "stn" = ( /obj/structure/prop/static_tank/fuel, /turf/open/floor, /area/ice_colony/surface/requesitions) -"stI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"stN" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"stW" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" +"sts" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/area/ice_colony/surface/bar/bar) -"sul" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"suM" = ( +/obj/item/storage/toolbox, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"suQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"svM" = ( -/obj/structure/closet/crate/critter, -/turf/open/floor{ - icon_state = "dark" + name = "\improper Colony Engineering"; + req_access_txt = "100" }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering) +"swU" = ( +/obj/structure/closet, +/turf/open/floor/dark, /area/ice_colony/surface/storage_unit/power) -"svV" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"sxN" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_01"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"syD" = ( +"swW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"syH" = ( -/obj/structure/surface/table/holotable, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" + dir = 4 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/reception) +"syp" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/north) "syT" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) +"szg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "szz" = ( /turf/closed/shuttle{ icon_state = "swall2" }, /area/ice_colony/surface/hangar/beta) -"szW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hangar/hallway) -"sAs" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"szN" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/ice_colony/underground/reception) -"sAB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"sAx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/surface/storage_unit/telecomms) +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) "sAL" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/research) +"sAO" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"sAT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Colony Engineering Generator Room"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering/generator) +"sBy" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hydroponics/north) "sBA" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/engine, /area/ice_colony/underground/research) -"sBS" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) +"sBO" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"sBY" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/storage) "sBZ" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) +"sCc" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) "sCs" = ( /obj/structure/holowindow{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"sCv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) +"sCI" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) "sCM" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/item/stack/sheet/mineral/phoron, @@ -13184,19 +9762,32 @@ "sDf" = ( /turf/open/space/basic, /area/space) -"sEo" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"sFC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"sDz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/ice_colony/surface/hangar/alpha) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/maintenance/north) +"sDV" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) +"sEj" = ( +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/surface/research) +"sEx" = ( +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"sER" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"sFh" = ( +/obj/structure/surface/table/holotable, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) "sGa" = ( /obj/item/lightstick{ anchored = 1; @@ -13205,372 +9796,274 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) -"sGP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"sGQ" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"sHg" = ( -/turf/open/floor{ - icon_state = "darkyellow2" +"sGT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/research/temporary) +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) "sIe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"sIx" = ( -/obj/structure/coatrack, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"sKn" = ( -/obj/structure/window/reinforced{ +"sIt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"sIA" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"sIK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/surface/excavation) -"sKL" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms) +"sJf" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/storage) +"sKm" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) +"sKO" = ( +/obj/structure/surface/table/holotable, /obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) "sLk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/underground/reception) -"sLo" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"sLG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"sLY" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"sNg" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"sNo" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreencorners2/north, /area/ice_colony/surface/hydroponics/north) -"sMl" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"sMu" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, +"sOs" = ( +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/alpha) +"sOH" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreencorners2/west, /area/ice_colony/surface/hydroponics/north) -"sNm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"sNK" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/crew/canteen) -"sNO" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"sOP" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/survival, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"sPy" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"sPW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +"sPt" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/ice_colony/underground/research/work) -"sQA" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) +"sPv" = ( /obj/structure/surface/table/reinforced, -/obj/item/tool/shovel/snow, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/storage) +"sQf" = ( +/obj/docking_port/stationary/trijent_elevator{ + airlock_area = /area/shuttle/elevator2/underground; + airlock_exit = "elevator"; + elevator_network = "dorm"; + width = 8; + height = 5; + id = "ice_dorm_lower"; + name = "Dormitory Lower Floor" }, -/area/ice_colony/surface/hangar/beta) -"sQB" = ( -/obj/structure/surface/rack, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/underground) +"sQl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/dorms) -"sRQ" = ( -/turf/open/floor{ +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/alpha) +"sRF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/lavatory) +"sRM" = ( +/obj/structure/machinery/biogenerator, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"sRT" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "darkgreen2" + id = "ice_classic_underground_research_cargo_1"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/crew/lavatory) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/storage) "sRZ" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/space) +"sSi" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hydroponics/north) +"sSq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) "sSM" = ( /turf/closed/wall, /area/ice_colony/surface/engineering/electric) -"sTe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"sTh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/valley/southeast/apc_support) -"sTR" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ice_colony/underground/research/sample) -"sWx" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"sST" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"sTt" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"sUE" = ( +/obj/structure/closet/secure_closet/freezer, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"sUH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/ice_colony/underground/security/armory) -"sWz" = ( -/obj/structure/machinery/power/terminal{ +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"sVb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) +"sVk" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, -/area/ice_colony/surface/engineering) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/command/center) +"sVD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) +"sWi" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/dorms) +"sWC" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms) "sWH" = ( /obj/structure/closet/radiation, /obj/structure/machinery/light, /turf/open/floor/engine, /area/ice_colony/underground/research) +"sWM" = ( +/obj/structure/surface/table/holotable, +/obj/item/folder/black_random, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"sWQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) "sXM" = ( /obj/structure/machinery/floodlight, /turf/open/floor, /area/ice_colony/surface/requesitions) +"sXX" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/clinic/treatment) "sYs" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/north) -"sYx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"sYV" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/south_east) +"taC" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/medical/lobby) -"tac" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"tal" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/security) -"taB" = ( -/obj/structure/morgue, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) "taG" = ( /obj/structure/machinery/landinglight/ds1/delaythree, /obj/effect/decal/warning_stripes{ icon_state = "N-corner" }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz1) -"taJ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) "taO" = ( /obj/structure/surface/table/holotable, /obj/item/reagent_container/spray/cleaner, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"taW" = ( -/obj/effect/spawner/random/powercell, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) +"taX" = ( +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "tbm" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"tbo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) "tbK" = ( /turf/closed/wall/shiva/ice, /area/ice_colony/exterior/surface/valley/northwest) -"tbU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"tcu" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ +"tcI" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"tcZ" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/clinic/treatment) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"tdF" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) "tdX" = ( /obj/structure/surface/table/holotable, /obj/effect/spawner/random/powercell, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"teb" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"tee" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/reception) "tek" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"tem" = ( -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, -/area/ice_colony/exterior/underground/caves/dig) -"ten" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"tfh" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"tfP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"tfs" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "tfV" = ( /obj/effect/decal/warning_stripes{ icon_state = "N-corner" @@ -13580,6 +10073,12 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"tgi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) "tgE" = ( /obj/structure/surface/table, /obj/structure/machinery/recharger, @@ -13591,32 +10090,33 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"thg" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"thx" = ( +/obj/structure/bed/roller, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) +"tia" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/clinic/treatment) +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"tis" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) "tit" = ( /obj/structure/bed, /turf/open/floor/engine, /area/ice_colony/underground/research) -"tiz" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"tiG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkredcorners2" +"tiI" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/bar/bar) "tiO" = ( /obj/structure/surface/rack, /turf/open/floor/plating/icefloor, @@ -13626,67 +10126,50 @@ /obj/item/alienjar, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"tjE" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"tjS" = ( -/turf/open/floor{ - icon_state = "dark" +"tjo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/ice_colony/surface/storage_unit) +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) "tjZ" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"tkl" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) -"tle" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"tlF" = ( -/obj/structure/machinery/door/airlock/multi_tile/secure2, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"tko" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2, /area/ice_colony/surface/dorms) -"tmE" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +"tkD" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/valley/northeast/apc_support) +"tkT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17" }, -/area/ice_colony/surface/dorms/canteen) +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/lobby) +"tme" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"tmj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/clinic/storage) +"tmu" = ( +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/research/work) "tmN" = ( /obj/structure/ice/thin, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south) -"tng" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) +"tnc" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) "tnB" = ( /obj/structure/machinery/light, /obj/structure/machinery/r_n_d/circuit_imprinter, @@ -13696,78 +10179,59 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research/field_gear) -"tof" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) "tol" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/engineering) -"tph" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) +"tpJ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/watertank, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/north) +"tpK" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"tpR" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid/o2, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "tpS" = ( /obj/structure/surface/table/holotable, /obj/item/storage/box/survival, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"trq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway) "trA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/west) -"trB" = ( -/turf/open/floor/icefloor{ - icon_state = "ramptop" - }, -/area/ice_colony/exterior/underground/caves/dig) -"tsk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_research_cargo_4"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"tsd" = ( +/obj/structure/surface/table/holotable, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"tsq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/research/storage) +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "tss" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/engineering/electric) -"tst" = ( +"ttT" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"tsM" = ( -/obj/structure/toilet, -/obj/item/toy/bikehorn/rubberducky, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"ttI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"ttM" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/alpha) +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) "tuK" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/hallway) @@ -13776,95 +10240,47 @@ /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"tvu" = ( -/obj/structure/surface/table/holotable, -/obj/item/tool/weldingtool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"tvP" = ( -/obj/structure/surface/table/holotable, -/obj/item/handcuffs, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"twD" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"txb" = ( +"twK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/reception) +"twN" = ( /obj/structure/surface/table/holotable, /obj/item/paper_bin, /obj/item/tool/pen/red, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"txi" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/canteen) "tye" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research/tech_storage) -"tyH" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) -"tyK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) +"tyw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) +"tyL" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) "tyN" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"tyX" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"tzz" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) +"tyR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"tzd" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) +"tzk" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) "tzI" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/library) -"tAa" = ( -/obj/structure/surface/table/holotable, -/obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) "tAe" = ( /obj/structure/surface/table, /obj/structure/machinery/cell_charger, @@ -13873,138 +10289,102 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"tAu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-in" - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) +"tAz" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) +"tAG" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/storage_unit/power) +"tAH" = ( +/obj/structure/surface/rack, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) "tAP" = ( /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"tCM" = ( -/obj/structure/closet/crate, -/obj/item/cell/hyper, -/obj/item/storage/belt/utility/full, -/turf/open/floor{ - icon_state = "dark" +"tBF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/clinic/treatment) +"tCg" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/bar/bar) +"tCm" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"tCv" = ( +/obj/structure/machinery/light, +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) "tDc" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/security/brig) -"tDd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) "tDf" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"tDU" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"tEn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"tET" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"tFb" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/underground/crew/lavatory) -"tFq" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, +"tEi" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid/rad, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/clinic/storage) +"tEy" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"tFz" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/surface/research) +"tGf" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"tGt" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"tHB" = ( +/obj/structure/coatrack, +/turf/open/floor/darkyellow2/east, /area/ice_colony/surface/dorms) -"tGa" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"tGk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_research_cargo_5"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"tHQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/ice_colony/underground/research/storage) -"tHn" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"tHU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/canteen) -"tHH" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +"tIG" = ( +/turf/open/floor/darkyellow2/west, /area/ice_colony/surface/engineering) -"tIf" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal/large_stack, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) -"tIt" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"tIA" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) "tIV" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/treatment) +"tIY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"tJt" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) "tJT" = ( /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, @@ -14016,13 +10396,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"tKq" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/reception) "tKI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -14030,49 +10403,62 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"tLA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"tLH" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"tMg" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) +"tKT" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/storage_unit/research) +"tLb" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/research) +"tLs" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"tMe" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) "tMj" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/clinic/storage) -"tMM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +"tNj" = ( +/obj/structure/machinery/door/window{ + dir = 8 }, -/area/ice_colony/underground/medical/lobby) -"tNA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"tOP" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"tNv" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/firstaid/o2, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/medical/lobby) +"tNw" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/surface/research) +"tNx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_5"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/storage_unit/telecomms) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"tNH" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/sheet/glass/small_stack, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"tOd" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/lavatory) +"tOt" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) "tQj" = ( /obj/structure/machinery/door_control{ id = "Classic_0"; @@ -14080,75 +10466,38 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) -"tQS" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/donut_box/empty, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) -"tRi" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"tRF" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/east) -"tRG" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"tSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"tQQ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/north) +"tRr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/garage/one) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) "tSn" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"tSy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"tSK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/crew/lavatory) -"tSV" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) -"tTQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"tSt" = ( +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"tTc" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/hangar/alpha) +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"tTn" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/security/armory) "tTR" = ( /obj/structure/machinery/light{ dir = 8 @@ -14160,144 +10509,69 @@ /obj/item/storage/donut_box/empty, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"tVr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"tVx" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"tVY" = ( -/obj/structure/closet/crate, -/obj/item/toy/prize/durand, -/obj/item/toy/katana, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) "tWe" = ( /obj/structure/surface/table/holotable, /obj/item/reagent_container/spray/cleaner, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"tWK" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"tXH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"tXY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/belt/medical/full, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"tYn" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"tYv" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/dorms) -"tYy" = ( -/obj/structure/holohoop, -/turf/open/floor/wood, -/area/ice_colony/surface/dorms) -"tYZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/research) -"tZa" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"tZd" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/storage) -"tZg" = ( -/obj/structure/surface/table/holotable, -/obj/item/paper_bin, -/obj/item/tool/pen/red, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"tZy" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/storage) -"tZC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/item/storage/firstaid, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"tZR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"tZU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"tWl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 }, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"tWD" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"tXr" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/electric) +"tXE" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"tXI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurplecorners2/north, /area/ice_colony/underground/research/work) -"tZW" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "darkred2" +"tXP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) +"tYh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"tYv" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"uaO" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/dorms) +"tYy" = ( +/obj/structure/holohoop, +/turf/open/floor/wood, +/area/ice_colony/surface/dorms) +"tYU" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"tYV" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"tYZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/research) +"tZw" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) "ubA" = ( /obj/structure/shuttle/window{ color = "gray"; @@ -14306,21 +10580,6 @@ /obj/structure/grille, /turf/open/floor/plating, /area/ice_colony/exterior/underground/caves/dig) -"ubD" = ( -/obj/item/stool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"ubE" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) "ucB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_27"; @@ -14328,20 +10587,12 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"ucX" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"udl" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +"ueb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/field_gear) "ueM" = ( /obj/structure/machinery/space_heater, /obj/structure/disposalpipe/segment{ @@ -14349,63 +10600,53 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"ufp" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"ufd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/plating/icefloor/warnplate, +/area/lv624/lazarus/landing_zones/lz2) +"ufB" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/crew/canteen) "ufF" = ( /obj/structure/surface/table/holotable, /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) +"ufW" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/good_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"ugd" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "uhr" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator2/underground) -"uhB" = ( -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/security/brig) -"ukw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) +"uhN" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/substation) +"uhW" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/substation) +"ujp" = ( +/obj/structure/machinery/door/airlock/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway) "ukx" = ( /obj/structure/closet/crate, /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"ukK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"ukM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) +"ukV" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) "uli" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, @@ -14415,96 +10656,42 @@ /obj/item/storage/toolbox/emergency, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"ulX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "umc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"umt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/crew/canteen) "umS" = ( /turf/closed/wall, /area/ice_colony/surface/engineering) -"uoF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"uoI" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"upl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"uqq" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"uqD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ +"umT" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway/north_west) -"uqE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle"; - dockId = "ice_lab_lower"; - dir = 1; - pixel_y = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/storage) -"uqO" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/lobby) +"unr" = ( +/obj/structure/closet/crate, +/obj/item/device/flashlight, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"upy" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/alpha) +"upC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/juicer, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"urj" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/east) +"urK" = ( +/turf/open/floor/darkyellow2, /area/ice_colony/surface/research/temporary) -"urd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) "usz" = ( /obj/structure/machinery/door_control{ id = "Classic_0002"; @@ -14512,30 +10699,33 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) -"uut" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"utl" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/substation/smes) +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit) +"uuj" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/power) +"uvw" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"uvX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) "uwa" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/bonegel, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"uwA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"uwJ" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/research) +"uwS" = ( +/obj/structure/closet, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/lavatory) "uxz" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -14544,42 +10734,30 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"uAn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) -"uAA" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/substation/smes) -"uAD" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"uBF" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/excavation) -"uBK" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/splint, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) +"uyn" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"uyH" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"uAq" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"uAC" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"uAE" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"uBz" = ( +/obj/structure/closet/crate, +/obj/item/tool/weldingtool, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "uBP" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 @@ -14597,52 +10775,24 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"uCg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) "uCz" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"uCB" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/ground) "uCE" = ( /obj/item/tool/weldpack, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"uCT" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/valley/northeast/apc_support) -"uDo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"uDA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) +"uDh" = ( +/obj/structure/surface/table/holotable, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) "uDB" = ( /obj/structure/ladder{ height = 1; @@ -14656,146 +10806,120 @@ /obj/item/device/camera, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"uEf" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 4 +"uEs" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"uEt" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/electric) +"uFd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) +"uFh" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"uGM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, +/turf/open/floor/darkpurple2/east, /area/ice_colony/underground/research/storage) -"uFl" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor{ - icon_state = "dark" +"uGR" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"uHe" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/box, +/obj/item/stack/nanopaste, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"uHh" = ( +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) +"uJa" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_0003"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/storage_unit/power) -"uFP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"uJc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation) "uJd" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor, /area/ice_colony/surface/requesitions) -"uJi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) "uJt" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/pass) -"uJL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) "uJV" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /obj/item/tool/pen, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"uKr" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/hallway) +"uKw" = ( +/obj/structure/closet, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/lavatory) "uKQ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"uKY" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"uLb" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"uLk" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/landing_zones/lz2) -"uLz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ +"uLq" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "darkbrowncorners2" + id = "ice_classic_research_secure_blast"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research) "uLX" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/engine, /area/ice_colony/underground/research) -"uLY" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) -"uMk" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"uMK" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/storage) -"uNk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"uMs" = ( +/obj/structure/closet/crate, +/obj/item/storage/firstaid/adv, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"uNo" = ( +/obj/structure/machinery/door/airlock/multi_tile/secure{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"uNx" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/hangar/beta) +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research) +"uOb" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"uOe" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering) "uOB" = ( /obj/structure/surface/table, /obj/item/tool/weldingtool, @@ -14806,33 +10930,76 @@ /obj/item/device/camera, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"uQi" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ +"uON" = ( +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/reception) +"uPf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"uPl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"uQg" = ( +/obj/structure/machinery/door/window{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/clinic/treatment) -"uQp" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/medical/lobby) -"uRM" = ( -/obj/structure/machinery/door/airlock/secure, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) +"uQr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"uQH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/lavatory) +"uRt" = ( +/obj/structure/curtain/open, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) +"uRz" = ( +/obj/structure/surface/rack, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/dorms) +"uSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"uTK" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/crew/canteen) +"uSG" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms) +"uSI" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research) +"uSU" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"uTI" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/reception) +"uUj" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"uUl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/storage) +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) "uUy" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -14842,12 +11009,11 @@ /obj/structure/machinery/juicer, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"uUX" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) +"uUV" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) "uVQ" = ( /obj/structure/surface/rack, /obj/structure/holowindow{ @@ -14855,147 +11021,74 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"uWA" = ( -/obj/structure/closet/crate, -/obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"uXi" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"uXu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"uXZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"uZL" = ( -/obj/structure/surface/table/holotable, -/obj/item/paper, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"uXC" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/temporary) +"uYg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"uZV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/plating/icefloor/warnplate/west, +/area/lv624/lazarus/landing_zones/lz2) "vaZ" = ( /obj/structure/surface/table, /turf/open/floor, /area/ice_colony/surface/mining) +"vba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) "vbf" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northwest) -"vbx" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ice_classic_underground_research_cargo_3"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/storage) "vby" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /turf/open/floor, /area/ice_colony/surface/requesitions) -"vbT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"vca" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) -"vcg" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) -"vco" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, -/area/ice_colony/exterior/underground/caves/dig) -"vcw" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/research) -"vcJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"vcY" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"vds" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/crew/lavatory) -"vdT" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"vdV" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"vbL" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/area/ice_colony/surface/clinic/treatment) -"vek" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"vcj" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/ground) +"vcN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"vdu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/lobby) +"vdS" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"ves" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_04"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/engineering/substation) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "veH" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -15005,30 +11098,59 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"vfd" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"vgq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hangar/hallway) -"vgx" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +"vfs" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/tool/weldingtool, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hangar/alpha) +"vft" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/ground) +"vfP" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/launcher/grenade/m92, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) +"vfQ" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"vgh" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_01"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/underground/research/work) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"vgE" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) "vgJ" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/pen, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) +"vgS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"vha" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/clinic/storage) +"vhq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) "vhK" = ( /turf/closed/wall, /area/ice_colony/surface/hangar/alpha) @@ -15039,55 +11161,37 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"vjT" = ( -/obj/item/bedsheet/yellow, -/obj/structure/bed, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"vjB" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/underground/security/brig) +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/south_east) +"vjY" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/clinic/storage) "vkb" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"vkQ" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "garage_ladder" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"vlr" = ( -/obj/structure/surface/table/holotable, -/obj/item/tool/weldingtool, -/obj/item/storage/toolbox, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering) -"vmn" = ( -/obj/structure/closet/crate, -/obj/item/device/flashlight, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/power) -"vms" = ( -/obj/structure/machinery/light{ - dir = 4 +"vkx" = ( +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"vmk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, -/area/ice_colony/underground/reception) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) "vmE" = ( /obj/structure/bookcase{ density = 0 @@ -15100,151 +11204,94 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"vmI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/hallway/south_east) -"vmZ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - icon_state = "darkbrowncorners2" +"vmO" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/telecomms) +"vnn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Classic_02"; + layer = 3.3; + name = "\improper Secure Armory Blast Door"; + unacidable = 1 }, -/area/ice_colony/surface/dorms) -"vnf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) +"vnF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Colony Engineering Backup Power Storage"; + req_access_txt = "100" }, -/area/ice_colony/underground/engineering/substation) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/engineering) +"vnZ" = ( +/obj/item/stool, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "vok" = ( /obj/structure/target, /obj/structure/target, /obj/structure/closet/crate, /turf/open/floor/engine, /area/ice_colony/underground/research) -"voq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_armoury"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/security/armory) -"voy" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) -"voS" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) -"voW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"vpd" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"vpm" = ( +"voQ" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"vqb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) -"vrb" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"vrc" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_5"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/storage/box/donkpockets, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"vpr" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle"; + dockId = "ice_lab_upper"; + dir = 1; + pixel_y = -32 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"vqa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) "vrn" = ( /turf/closed/shuttle{ icon_state = "swall1" }, /area/ice_colony/surface/hangar/beta) -"vrS" = ( +"vrq" = ( +/obj/structure/surface/table/holotable, +/obj/item/tool/weldingtool, +/obj/item/storage/toolbox, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering) +"vru" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"vsa" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Colony Garage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/garage/two) -"vsB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/storage_unit/research) -"vsU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) +"vsl" = ( +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/work) -"vtz" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"vtY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) +"vsp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"vsu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"vtw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) "vud" = ( /obj/item/lightstick{ anchored = 1; @@ -15257,58 +11304,36 @@ /obj/structure/closet, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"vvv" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/helmet/space/compression, -/obj/item/clothing/suit/space/compression, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/research/work) -"vwj" = ( -/obj/structure/surface/table/holotable, -/obj/item/device/camera, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) "vwq" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hallway/south_east) -"vwu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"vwK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/lavatory) "vxy" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 29 }, /turf/open/floor/engine, /area/ice_colony/underground/research) +"vyX" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/storage_unit/research) "vzh" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"vzl" = ( -/obj/structure/mirror{ - pixel_y = -29 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"vzj" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/area/ice_colony/surface/dorms/restroom_w) +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "vzn" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/storage) @@ -15325,19 +11350,14 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) +"vzO" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/clinic/treatment) "vAd" = ( /obj/structure/machinery/r_n_d/circuit_imprinter, /turf/open/floor/engine, /area/ice_colony/underground/research) -"vAn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) "vAo" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, @@ -15349,6 +11369,13 @@ "vBb" = ( /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) +"vBg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/research/work) "vBj" = ( /obj/structure/machinery/door_control{ id = "st_17"; @@ -15359,19 +11386,16 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/telecomms) -"vBk" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"vCh" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" +"vCb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/hangar/alpha) +"vCk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/surface/requesitions) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) "vCt" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -15381,12 +11405,12 @@ "vCv" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"vDi" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit) +"vCS" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) "vDm" = ( /obj/structure/sign/safety/biohazard{ pixel_x = 8; @@ -15399,36 +11423,35 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/engine, /area/ice_colony/underground/research/storage) -"vDI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkbrown2" - }, +"vDT" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/darkbrown2, /area/ice_colony/surface/substation/smes) -"vDQ" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"vFb" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"vFe" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "ice_classic_underground_armoury"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"vDX" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"vEu" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "13" }, -/area/ice_colony/underground/security/armory) +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"vEM" = ( +/obj/structure/surface/table/holotable, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"vEO" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"vFC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) "vFS" = ( /obj/structure/ice/thin, /obj/effect/decal/warning_stripes{ @@ -15442,100 +11465,88 @@ /obj/item/circuitboard/apc, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"vIg" = ( -/obj/structure/machinery/power/geothermal, +"vGK" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/clinic/treatment) +"vHI" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/substation) +"vIb" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"vIP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/research/work) "vIZ" = ( /obj/structure/bed, /obj/item/bedsheet/green, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"vJb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/underground/command/center) -"vJE" = ( -/obj/structure/machinery/door_control{ - id = "garage_ice_1"; - name = "garage shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "dark2" +"vJj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/garage/one) +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/hallway/north_west) +"vJm" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/clinic/treatment) +"vJB" = ( +/obj/structure/closet/secure_closet/medical3, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/clinic/treatment) +"vJO" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/surface/engineering) "vKi" = ( /obj/structure/machinery/door_control{ id = "ice_classic_research_secure_blast" }, /turf/closed/wall/r_wall, /area/ice_colony/surface/research) -"vKq" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"vLc" = ( -/obj/structure/computerframe{ - anchored = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) -"vLA" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"vLP" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "st_17"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"vLX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +"vKO" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"vMS" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"vLm" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) +"vLs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"vLt" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"vLw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"vLJ" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/hallway/north_west) +"vMj" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 29 }, -/area/ice_colony/surface/research/temporary) -"vNf" = ( -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/reception) +"vMr" = ( +/obj/effect/decal/cleanable/spiderling_remains{ + name = "greenish remains" }, -/area/ice_colony/surface/storage_unit/research) +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "vNq" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/north) @@ -15548,196 +11559,113 @@ icon_state = "swall7" }, /area/ice_colony/surface/hangar/beta) +"vNV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) "vOd" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"vOi" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"vPl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"vPU" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_r" }, -/area/ice_colony/surface/dorms/restroom_w) -"vOx" = ( -/turf/open/floor{ +/obj/structure/shuttle/diagonal{ dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/lobby) -"vPi" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" + icon_state = "platform" }, -/area/ice_colony/surface/research) -"vPy" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"vQi" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) +"vQE" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/dorms) +"vRJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"vQU" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/black, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"vRo" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"vSC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"vTb" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) +"vTq" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"vUA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/underground/storage) -"vTW" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/excavation) -"vUG" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_03"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) "vUI" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"vVu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/tech_storage) +"vUY" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"vWg" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/two) +"vWW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) "vXJ" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast/apc_support) -"vXX" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/underground/research/work) -"vZm" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"vZr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"vZI" = ( -/obj/structure/machinery/door/airlock/secure, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/research/sample) "vZL" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, /turf/open/floor, /area/ice_colony/surface/requesitions) -"waj" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/treatment) -"waX" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) -"wbv" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"wbZ" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +"wab" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/excavation) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) "wcm" = ( /obj/structure/machinery/door_control{ id = "ice_classic_underground_research_cargo_1" }, /turf/closed/wall/r_wall/bunker, /area/ice_colony/underground/research/storage) -"wco" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) +"wcp" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/dorms) +"wcr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) "wcI" = ( /obj/structure/surface/table/holotable, /obj/item/paper_bin, /obj/item/tool/pen/red, /turf/open/floor/engine, /area/ice_colony/underground/research) +"wcZ" = ( +/obj/structure/machinery/door/airlock/secure{ + id = "ICE_CLASSIC_RESEARCH_SMALL"; + locked = 1 + }, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) "wdr" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/crew/disposals) @@ -15746,12 +11674,6 @@ /obj/item/device/t_scanner, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"wdB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) "wdO" = ( /obj/structure/janitorialcart, /turf/open/floor/plating/icefloor, @@ -15760,62 +11682,46 @@ /obj/structure/closet, /turf/open/floor/wood, /area/ice_colony/surface/dorms) +"wec" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway) "wef" = ( /obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/valley/north) -"wej" = ( -/obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/medical/lobby) -"wgI" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +"wer" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/north) +"weD" = ( +/obj/structure/toilet, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/engineering/substation) -"wgW" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/maintenance/south) -"whj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/hangar/hallway) +"weX" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/surface/engineering) -"whl" = ( -/obj/structure/surface/table, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/hangar/hallway) +"wgq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"wgW" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/south) "wif" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/surface/research) -"wio" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"wip" = ( -/obj/structure/computerframe{ - anchored = 1 - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) "wiq" = ( /obj/structure/bed, /obj/item/bedsheet/hop, @@ -15828,34 +11734,88 @@ }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"wkH" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"wjA" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/dorms) +"wkf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/storage) +"wkq" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"wkU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/reception) -"wmt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/clinic/storage) +"wkY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/medical/lobby) +"wll" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"wlB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, +/turf/open/floor/corsat/marked, /area/ice_colony/surface/hydroponics/north) +"wlD" = ( +/obj/structure/surface/table/holotable, +/obj/item/restraint/handcuffs, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"wlS" = ( +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/canteen) +"wlX" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/substation/smes) +"wmd" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"wmA" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) "wmD" = ( /turf/closed/shuttle{ icon_state = "swall14" }, /area/ice_colony/surface/hangar/beta) -"wna" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"wnL" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/dorms) +"wnW" = ( +/obj/structure/surface/table/holotable, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/center) +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/canteen) +"wob" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "woD" = ( /obj/structure/machinery/light, /obj/structure/surface/table, @@ -15866,42 +11826,51 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"wpt" = ( +"wpb" = ( /obj/structure/surface/rack, -/obj/item/storage/box/lightstick, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/dorms) -"wqm" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" - }, +/obj/item/device/flash/old, +/turf/open/floor/darkbrown2/north, /area/ice_colony/surface/excavation) -"wqy" = ( -/obj/structure/machinery/light{ - dir = 1 +"wpc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/beta) +"wpo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/reception) +"wpt" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick, +/turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"wrh" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +"wpR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/ice_colony/exterior/underground/caves/dig) +/obj/structure/machinery/light, +/turf/open/floor/darkpurplecorners2, +/area/ice_colony/surface/research) +"wql" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/research/work) +"wrj" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "wrt" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) +"wse" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/crew/canteen) "wsi" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/plating/icefloor, @@ -15920,57 +11889,66 @@ }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"wsL" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/electric) +"wsM" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) "wsQ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) +"wui" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) "wuH" = ( /turf/open/auto_turf/snow/layer4, /area/ice_colony/exterior/surface/valley/south) -"wuP" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/research/work) -"wuY" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +"wvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/shuttle/elevator2/ground) -"wwa" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/valley/southeast/apc_support) +"wvs" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"wvu" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"wvC" = ( +/obj/structure/janitorialcart, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"wvL" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, +/turf/open/floor/darkyellowcorners2/north, /area/ice_colony/surface/engineering) -"wwk" = ( +"wxm" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"wwR" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/security/armory) -"wwZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"wxE" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "wxG" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold, @@ -15985,6 +11963,12 @@ /obj/item/paper, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) +"wyp" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) "wys" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -15994,89 +11978,49 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"wyu" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) "wzf" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/ice_colony/underground/crew/dorm_r) -"wzm" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"wzI" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"wAc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/holowindow, -/turf/open/floor{ - icon_state = "dark" +"wzy" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research/work) +"wAv" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage) -"wAA" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"wAy" = ( +/obj/structure/machinery/door/airlock/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/reception) +"wAC" = ( /obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/engineering) +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) "wAH" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"wAJ" = ( -/obj/structure/surface/table, -/obj/item/storage/syringe_case, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) -"wBo" = ( -/obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) +"wBv" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/dorms) +"wBI" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) "wBK" = ( /obj/structure/coatrack, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"wBV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"wCt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) "wCv" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/photo_album, @@ -16086,22 +12030,28 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) -"wCV" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"wDX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 +"wCS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"wDw" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/exterior/underground/caves/dig) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"wDK" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/obj/item/bedsheet/medical, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/clinic/treatment) +"wEm" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) "wEH" = ( /obj/structure/ladder{ height = 1; @@ -16111,155 +12061,97 @@ }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/dig) -"wEL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) +"wEV" = ( +/obj/item/bedsheet/yellow, +/obj/structure/bed, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) "wFO" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/engine, /area/ice_colony/underground/research) -"wFV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) +"wGA" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/substation) +"wGK" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) "wHF" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/research/sample) -"wIg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"wIs" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/item/tool/wirecutters, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, +"wIu" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"wIX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/dorms) -"wID" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/security/armory) -"wJa" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"wJQ" = ( -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" - }, -/area/ice_colony/exterior/underground/caves/dig) "wJZ" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/maintenance/east) +"wKb" = ( +/obj/structure/surface/table/holotable, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/medical/lobby) "wKI" = ( /obj/structure/surface/rack, /obj/item/tank/phoron, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"wMZ" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/storage) -"wNc" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"wNn" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +"wLn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"wLy" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/ground) +"wLG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/research/temporary) +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"wLR" = ( +/obj/structure/closet/crate, +/obj/item/cell/hyper, +/obj/item/storage/belt/utility/full, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "wNo" = ( /obj/structure/surface/table/holotable, /obj/item/alienjar, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"wNS" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"wOf" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) "wOm" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"wOL" = ( -/obj/structure/surface/table/holotable, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"wPj" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) +"wOq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/north) +"wOQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/crew/lavatory) +"wPc" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) "wPu" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/crew/dorm_r) -"wPC" = ( -/obj/structure/surface/table/holotable, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) +"wPT" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/research) +"wQt" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/hydroponics/north) "wQT" = ( /obj/structure/closet, /turf/open/floor/plating/icefloor, @@ -16272,13 +12164,9 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/ice_colony/underground/command/center) -"wRn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/clinic/storage) +"wRR" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/crew/lavatory) "wRX" = ( /obj/item/tool/pickaxe/silver, /turf/open/ice, @@ -16288,59 +12176,23 @@ /obj/item/bedsheet/hop, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"wSf" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/tech_storage) "wSj" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/engineering) -"wSC" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"wTa" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"wUK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"wUM" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/security/brig) -"wUS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbluecorners2" - }, -/area/ice_colony/surface/clinic/treatment) -"wVl" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"wSN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) +"wTT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/folder/black_random, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"wVb" = ( +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/requesitions) "wWe" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor, @@ -16349,28 +12201,57 @@ /obj/structure/prop/static_tank/fuel, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/east) -"wZU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor{ - icon_state = "darkpurplecorners2" +"wXJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/south_east) +"wYf" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"wYk" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/research) +"wYu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/research) -"xap" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/research/work) +"wYG" = ( +/obj/structure/inflatable/door, +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"wZn" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/crew/lavatory) +"wZJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/dorms/restroom_w) +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) "xas" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/research/storage) +"xbg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) "xbm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -16378,35 +12259,48 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast/apc_support) +"xbK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Colony Disposals"; + req_access_txt = "100" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) "xbM" = ( /turf/closed/wall, /area/ice_colony/exterior/surface/valley/south/excavation) -"xdb" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/lavatory) -"xdN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 29 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +"xcm" = ( +/obj/structure/surface/table, +/obj/item/tool/weldingtool, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/dorms) +"xdF" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/substation) +"xdT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"xek" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/north) +"xeq" = ( +/obj/structure/machinery/door/airlock/secure{ + id = "ICE_CLASSIC_RESEARCH_SMALL"; + locked = 1 }, -/area/ice_colony/underground/hallway/north_west) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research) "xew" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/storage) -"xeL" = ( -/obj/item/storage/box/lightstick, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) "xff" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, @@ -16416,102 +12310,94 @@ /obj/item/trash/syndi_cakes, /turf/open/floor/engine, /area/ice_colony/underground/research) -"xfr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_3"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/requesitions) -"xfw" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/dorms) -"xfO" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "9" - }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" - }, -/area/ice_colony/exterior/underground/caves/dig) -"xgb" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"xfI" = ( +/obj/structure/surface/table/holotable, +/obj/item/stack/medical/ointment, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"xfK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/security/armory) +"xgG" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/engineering/electric) +/obj/structure/surface/table/holotable, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/storage) "xgI" = ( /obj/structure/surface/rack, /obj/item/tool/weldingtool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"xhu" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"xhF" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"xhQ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_2"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 +"xgK" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/holowindow, +/turf/open/floor/dark, +/area/ice_colony/underground/storage) +"xgX" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/storage_unit/research) +"xhl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/surface/requesitions) -"xhV" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"xho" = ( +/obj/effect/spawner/random/powercell, /obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms/canteen) -"xiB" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"xjs" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"xiF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"xiZ" = ( +/obj/structure/closet/crate, +/obj/item/storage/bible, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) +"xjp" = ( +/obj/structure/surface/table/holotable, +/obj/item/tool/weldingtool, +/obj/item/storage/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/research/work) -"xjv" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/underground/engineering) +"xjq" = ( +/obj/structure/surface/table/holotable, +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/shuttle/elevator2/ground) +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/substation) +"xjx" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/reception) +"xjX" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms/canteen) +"xkn" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) "xkw" = ( /obj/structure/machinery/door_control{ id = "Classic_2"; @@ -16519,80 +12405,51 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) +"xkE" = ( +/obj/structure/closet/crate, +/obj/item/toy/syndicateballoon, +/obj/item/toy/crossbow, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/turf/open/floor/dark, +/area/ice_colony/surface/requesitions) "xkK" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/south) -"xlr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 +"xlb" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"xmi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/shuttle/red, +/area/ice_colony/surface/hangar/beta) +"xlU" = ( +/obj/structure/machinery/door/airlock/secure, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/work) +"xmp" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/research) "xmt" = ( /obj/structure/surface/table/holotable, /obj/item/device/multitool, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) -"xmL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"xne" = ( -/obj/structure/shuttle/engine/router{ - dir = 4 - }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" - }, -/area/ice_colony/exterior/underground/caves/dig) +"xmW" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) "xnn" = ( /turf/closed/wall, /area/ice_colony/surface/substation/smes) -"xnr" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"xnK" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"xoc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"xpP" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "heater" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) "xqV" = ( /obj/structure/surface/rack, /obj/item/tool/mop, @@ -16606,99 +12463,54 @@ }, /turf/closed/wall/r_wall, /area/ice_colony/surface/storage_unit/power) -"xrd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"xrn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"xsl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "darkyellowcorners2" +"xsg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/ice_colony/surface/dorms) +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/clinic/treatment) "xsx" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_17" }, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) +"xti" = ( +/obj/structure/surface/table, +/obj/item/device/t_scanner, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/surface/excavation) "xua" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/maintenance/north) -"xuI" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ +"xuj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/research/work) +"xwV" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/reception) -"xuS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"xuU" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"xvL" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"xwg" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"xxB" = ( -/obj/structure/surface/table/holotable, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +/turf/open/floor/plating/icefloor/warnplate, +/area/lv624/lazarus/landing_zones/lz2) +"xxq" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"xxF" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 1 }, -/area/ice_colony/underground/crew/canteen) +/turf/open/floor/corsat/marked, +/area/ice_colony/surface/research/tech_storage) "xxQ" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/engine, /area/ice_colony/underground/research/sample) -"xxR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) "xyn" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/underground/crew/disposals) @@ -16709,147 +12521,105 @@ "xyD" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/command/center) -"xzk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xyW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkbluecorners2, +/area/ice_colony/underground/command/center) +"xzd" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) -"xzs" = ( -/obj/structure/closet/crate, -/obj/item/toy/syndicateballoon, -/obj/item/toy/crossbow, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/surface/requesitions) -"xzP" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/syringe, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/dorms) +"xzM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) "xAa" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /obj/item/stack/cable_coil, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/dorms) -"xAv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/dorms) "xAP" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/ice_colony/surface/hangar/hallway) -"xAX" = ( -/obj/structure/surface/table/holotable, -/obj/item/reagent_container/food/drinks/flask/vacuumflask, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/bar/bar) "xBa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 29 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"xBB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"xBd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/substation/smes) +"xBg" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/bar/bar) +"xCU" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"xEy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/dark, +/area/ice_colony/surface/hangar/beta) +"xFm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/holowindow{ + dir = 8 }, -/area/ice_colony/underground/crew/lavatory) -"xCa" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 14 }, +/turf/open/floor/darkblue2/west, /area/ice_colony/underground/reception) -"xDl" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"xDH" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hangar/alpha) -"xEa" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"xEk" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"xFq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/ice_colony/underground/research/sample) +"xFT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/holowindow{ + dir = 8 }, -/obj/structure/surface/table/woodentable, /obj/item/paper_bin, -/obj/item/folder/white, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"xEZ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hydroponics/north) -"xFl" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hydroponics/north) -"xGl" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) -"xGo" = ( +/obj/item/tool/pen, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/reception) +"xGT" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/firstaid/fire, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/turf/open/floor/darkgreen2/west, /area/ice_colony/surface/clinic/storage) -"xHi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" +"xGV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/ice_colony/underground/crew/lavatory) +"xHd" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 }, -/area/ice_colony/surface/hydroponics/north) +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/maintenance/south) +"xHO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) +"xIB" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/dark, +/area/ice_colony/surface/storage_unit/telecomms) "xIM" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /obj/effect/decal/warning_stripes{ @@ -16857,81 +12627,52 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"xJp" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/underground/engineering/locker) "xJy" = ( /obj/structure/surface/rack, /obj/item/circuitboard/apc, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"xJJ" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/substation/smes) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"xKL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/ice_colony/underground/storage) -"xLq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/reception) -"xLz" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/tool/weldingtool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"xLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"xMb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway) -"xNm" = ( +"xKf" = ( +/obj/structure/surface/table/woodentable, +/obj/item/toy/dice, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) +"xKu" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/lavatory) +"xKT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/firstaid, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/clinic/storage) +"xLX" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/crew/lavatory) +"xMm" = ( /obj/structure/surface/table, -/obj/item/storage/box/cups, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"xNv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/storage) +"xMp" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) "xNK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -16945,29 +12686,27 @@ /obj/structure/prop/tower, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast/apc_support) -"xOx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbluecorners2" +"xOI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/ice_colony/surface/excavation) -"xQd" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_st16"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle2"; + dockId = "ice_dorm_lower"; + dir = 8; + pixel_y = 32 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/reception) +"xPr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/storage_unit/telecomms) -"xQe" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/storage_unit/research) +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) "xQM" = ( /obj/structure/surface/rack, /obj/structure/holowindow{ @@ -16978,72 +12717,64 @@ "xRd" = ( /turf/closed/wall/hangar, /area/ice_colony/underground/engineering/locker) +"xRo" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) +"xRr" = ( +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" + }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) "xSl" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northwest) -"xSA" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/underground/engineering/substation) -"xSH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) +"xSp" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/reception) +"xSv" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/underground) "xSJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/ice_colony/surface/bar/bar) -"xTn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms/canteen) -"xTZ" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"xUp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/autoname, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/surface/hangar/beta) -"xVh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +"xUR" = ( +/obj/docking_port/stationary/trijent_elevator{ + id = "ice_lab_lower"; + elevator_network = "lab"; + name = "Laboratory Lower Floor"; + dir = 2; + width = 8; + height = 5; + airlock_area = /area/shuttle/elevator3/underground; + airlock_exit = "elevator" }, -/area/ice_colony/surface/substation) -"xVT" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/underground) +"xUT" = ( +/obj/structure/surface/table/holotable, +/obj/item/reagent_container/glass/bottle/antitoxin, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/medical/lobby) +"xVb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/reception) -"xWa" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) +"xVK" = ( +/obj/structure/machinery/disposal, +/obj/item/trash/cheesie, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/dorms/canteen) "xWk" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, @@ -17051,106 +12782,77 @@ "xWF" = ( /turf/open/gm/dirt, /area/ice_colony/underground/maintenance/south) -"xWI" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/substation) -"xXq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"xYq" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/tool/weldingtool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/hangar/alpha) -"xYR" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) +"xWX" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"xYk" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) "xYW" = ( /obj/structure/window/framed/hangar/reinforced, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/research) -"xYZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/crew/canteen) -"xZT" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/clinic/treatment) -"xZV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"yan" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/hangar/hallway) -"yaP" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ybF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Classic_02"; - layer = 3.3; - name = "\improper Secure Armory Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"xZQ" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/clinic/storage) +"yaB" = ( +/obj/structure/inflatable/door, +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"yaI" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"yaT" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"ybj" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/dorms/canteen) +"ybD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/security/armory) +"ydu" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/dark, /area/ice_colony/surface/requesitions) -"ybQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"ydt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) +"ydI" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/garage/two) "ydX" = ( /obj/structure/inflatable, /turf/open/auto_turf/snow/layer0, /area/ice_colony/surface/excavation/storage) +"yes" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"yfx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"yfG" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) "yfN" = ( /obj/structure/machinery/door_control{ id = "Classic_04"; @@ -17164,108 +12866,46 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"yfX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) "yga" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"ygM" = ( -/obj/structure/machinery/door/airlock/almayer/generic/autoname{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/engineering/locker) -"yhY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms/canteen) -"yin" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/ice_colony/underground/maintenance/research) +"ygd" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/garage/repair) "yiC" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/engine, /area/ice_colony/underground/research) -"yiU" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/lobby) -"ykr" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/clinic/treatment) +"yiW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2/west, +/area/ice_colony/underground/medical/lobby) +"ykh" = ( +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) "ykt" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/west) -"ykL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/space/compression, -/obj/item/clothing/head/helmet/space/compression, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/research/storage) -"ykV" = ( +"ykW" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/dorms) -"yln" = ( -/obj/structure/holowindow, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/substation) +"ylc" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/clinic/treatment) "ylO" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southwest) -"ylQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/reception) (1,1,1) = {" sRZ @@ -18395,7 +14035,7 @@ mci sAL cLc lPY -aTm +fmg pIA apv cLc @@ -18693,10 +14333,10 @@ qUi qUi xSl evA -eum -eum -uFl -uFl +isw +isw +tpK +tpK evA evA xSl @@ -18705,10 +14345,10 @@ xSl xSl evA evA -dVv -jsh -iHv -iHv +opv +kKZ +lAs +lAs evA xSl xSl @@ -18929,22 +14569,22 @@ qUi qUi xSl evA -eum -dVv -dVv -dVv -dVv +isw +opv +opv +opv +opv evA xSl xSl qYo xSl evA -dVv -dVv -dVv -dVv -dVv +opv +opv +opv +opv +opv evA xSl xSl @@ -19165,22 +14805,22 @@ qUi oLk xSl evA -dVv -dVv -dVv -dVv -dVv -rpD +opv +opv +opv +opv +opv +uJa xSl xSl xSl xSl -iVH -dVv -dVv -dVv -dVv -dVv +ldP +opv +opv +opv +opv +opv evA xSl xSl @@ -19339,15 +14979,15 @@ sAL sAL sAL sAL -guL -guL +bDg +bDg sAL sAL sAL sAL sAL sAL -qYq +qqn sAL sAL mci @@ -19401,11 +15041,11 @@ qUi oLk xSl evA -dVv -dVv -dVv -dVv -dVv +opv +opv +opv +opv +opv xqX xSl xSl @@ -19413,10 +15053,10 @@ xSl xSl jPP evA -dVv -dVv -iHv -iHv +opv +opv +lAs +lAs evA xSl xSl @@ -19637,11 +15277,11 @@ oLk qUi xSl evA -eum -dVv -dVv -dVv -jsh +isw +opv +opv +opv +kKZ evA xSl xSl @@ -19873,10 +15513,10 @@ oLk qUi xSl evA -eum -sEo -ihb -oIQ +isw +oQL +dPC +jOL evA evA xSl @@ -20276,7 +15916,7 @@ jOf sAL sAL sAL -qYq +qqn sAL sAL sAL @@ -20357,10 +15997,10 @@ xSl xSl evA evA -svM -svM -npg -rcv +enH +enH +hsA +uuj evA xSl xSl @@ -20514,7 +16154,7 @@ jnY jnY nWj jnY -uRM +mBE jnY tnB sAL @@ -20591,12 +16231,12 @@ xSl xSl xSl xSl -ctY -dVv -dVv -dVv -dVv -dVv +fst +opv +opv +opv +opv +opv evA xSl xSl @@ -20828,11 +16468,11 @@ xSl xSl xSl usz -dVv -dVv -dVv -dVv -eTE +opv +opv +opv +opv +swU evA xSl xSl @@ -21065,10 +16705,10 @@ xSl xSl evA evA -cZE -jsh -vmn -oGo +qUu +kKZ +unr +don evA xSl xSl @@ -21458,7 +17098,7 @@ rtF jnY nWj rtF -fIG +djs jnY jnY sAL @@ -21525,9 +17165,9 @@ qUi oLk evA evA -jsh -jsh -jsh +kKZ +kKZ +kKZ evA evA xSl @@ -21699,15 +17339,15 @@ jJJ jJJ sAL sAL -gvL -nPs +mmw +uNo sAL sAL sAL sAL sAL sAL -qYq +qqn sAL sAL mci @@ -21760,11 +17400,11 @@ qUi qUi qUi evA -jsh -dVv -dVv -dVv -jsh +kKZ +opv +opv +opv +kKZ evA xSl xSl @@ -21996,12 +17636,12 @@ qUi qUi qUi evA -kcj -dVv -dVv -dVv -dVv -hbs +bwH +opv +opv +opv +opv +pQO xSl xSl xSl @@ -22046,11 +17686,11 @@ kKc lBN mAp nBo -shd -shd -shd -shd -vCh +eby +eby +eby +eby +qNp nBo kKc kKc @@ -22072,11 +17712,11 @@ ojU ojU eKS nBo -vCh -shd -shd -shd -shd +qNp +eby +eby +eby +eby nBo qUi qUi @@ -22158,7 +17798,7 @@ sAL jnY asx sBA -jAf +edm sBA pXO wFO @@ -22197,7 +17837,7 @@ kgY kgY kgY kgY -ioC +leN kgY kgY kgY @@ -22232,11 +17872,11 @@ qUi oLk oLk evA -dVv -dVv -dVv -dVv -jsh +opv +opv +opv +opv +kKZ hVy xSl xSl @@ -22282,11 +17922,11 @@ eKS eKS eKS nBo -vCh -vCh -shd -shd -vCh +qNp +qNp +eby +eby +qNp nBo kKc qUi @@ -22308,11 +17948,11 @@ ojU eKS eKS nBo -vCh -shd -shd -shd -vCh +qNp +eby +eby +eby +qNp nBo qUi qUi @@ -22402,13 +18042,13 @@ hoJ jJJ htI jnY -fIG +djs jnY rtF sAL sAL -gvL -nPs +mmw +uNo sAL sAL jJJ @@ -22433,7 +18073,7 @@ kgY kgY kgY kgY -ioC +leN kgY kgY kgY @@ -22469,9 +18109,9 @@ qUi oLk evA evA -mop -bjZ -llq +tAG +lEn +suM evA evA xSl @@ -22519,9 +18159,9 @@ eKS eKS nBo nBo -vCh -shd -vCh +qNp +eby +qNp nBo nBo kKc @@ -22545,9 +18185,9 @@ eKS eKS nBo nBo -shd -shd -shd +eby +eby +eby nBo nBo eKS @@ -22642,10 +18282,10 @@ xYW jnY jnY sAL -ksg -nJs -civ -nJs +itt +iQE +aMZ +iQE ppz ppz ppz @@ -22669,7 +18309,7 @@ kgY kgY kgY kgY -ioC +leN kgY kgY kgY @@ -22756,7 +18396,7 @@ eKS eKS nBo nBo -hHQ +iZw rIf nBo eKS @@ -22782,7 +18422,7 @@ eKS eKS nBo nBo -jZV +blx tQj nBo eKS @@ -22878,14 +18518,14 @@ sAL sAL sAL sAL -gYt -gYt -ocw -lwE +sAO +sAO +mcT +vUY ppz -vgx -gYt -cxU +jBY +sAO +lTa sAL jhT lsQ @@ -22905,7 +18545,7 @@ kgY kgY kgY kgY -ioC +leN kgY kgY kgY @@ -23113,15 +18753,15 @@ sAL mLr oNl sAL -hkG -gYt -gYt -ocw -gYt -niO -gYt -gYt -lcw +baB +sAO +sAO +mcT +sAO +vsl +sAO +sAO +sWM ppz ppz ppz @@ -23345,28 +18985,28 @@ sBA iIO sBA bwW -dUI +cwX iIO sBA -dUI -opn -aqx -aqx -rUJ -gTA -niO -gYt -iuO -hwl +cwX +gsy +vPl +vPl +nat +pcy +vsl +sAO +mrz +dRi ppz -vgx -gYt -lcw +jBY +sAO +sWM ppz -tZU -tZU -tZU -tZU +wql +wql +wql +wql pTy kgY kgY @@ -23454,12 +19094,12 @@ qUi qUi nBo nBo -uWA -uWA -shd -shd -wBo -aAA +kXc +kXc +eby +eby +fLg +kLP nBo nBo eKS @@ -23469,23 +19109,23 @@ eKS eKS nBo nBo -njM -lGN -shd -shd -lOZ -lOZ +ydu +ogS +eby +eby +tcI +tcI nBo nBo eKS nBo nBo -kkI -shd -shd -pXJ -sMl -dzG +uHe +eby +eby +gnV +wxE +tLs nBo nBo eKS @@ -23495,12 +19135,12 @@ eKS eKS nBo nBo -ctE -shd -shd -shd -shd -ctE +ixD +eby +eby +eby +eby +ixD nBo nBo qUi @@ -23581,37 +19221,37 @@ jnY nWj jnY jnY -gvL +mmw aWj jnY -gvL -niO -gYt -gYt -gYt -uCg -opn -hII -gYt -vgx +mmw +vsl +sAO +sAO +sAO +mys +gsy +tXI +sAO +jBY sbx -lcw -iuO -uZL +sWM +mrz +ajh ppz -tZU -tZU -tZU -tZU +wql +wql +wql +wql pTy pTy pTy pTy pTy -nie -nie -nie -nie +sRT +sRT +sRT +sRT wcm pTy pTy @@ -23689,14 +19329,14 @@ qUi qUi oLk nBo -aAA -shd -shd -shd -shd -shd -shd -shd +kLP +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -23704,25 +19344,25 @@ hxQ hxQ hxQ nBo -shd -shd -shd -shd -shd -shd -shd -cQu +eby +eby +eby +eby +eby +eby +eby +rpW nBo eKS nBo -oru -shd -shd -shd -shd -shd -shd -shd +eTW +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -23730,14 +19370,14 @@ hxQ hxQ hxQ nBo -shd -shd -shd -shd -shd -shd -shd -ghu +eby +eby +eby +eby +eby +eby +eby +hNR nBo qUi qUi @@ -23821,44 +19461,44 @@ sAL llm sWH sAL -frL -gYt -gYt -gYt -ocw -niO -gYt -bKU -lcw +kAW +sAO +sAO +sAO +mcT +vsl +sAO +xbg +sWM sbx -lty -gYt -lcw +nvP +sAO +sWM sbx -tZU -tZU -tZU -tZU +wql +wql +wql +wql xas -jba -jba -jba +dso +dso +dso xas -gzG -gzG -gzG -gzG -jba -jba -jba -aas -ykL +mPv +mPv +mPv +mPv +dso +dso +dso +fte +nAo xas -tfh -ksw -ksw -ksw -mBm +kWb +rIo +rIo +rIo +kPf xas mci mci @@ -23925,55 +19565,55 @@ qUi oLk oLk nBo -lRk -shd -shd -shd -shd -shd -shd -shd -eZy +dqe +eby +eby +eby +eby +eby +eby +eby +cAi hxQ hxQ hxQ hxQ hxQ -sxN -shd -shd -shd -shd -shd -shd -shd -cQu +vgh +eby +eby +eby +eby +eby +eby +eby +rpW nBo eKS nBo -dLS -shd -shd -shd -shd -shd -shd -shd -dnM +uMs +eby +eby +eby +eby +eby +eby +eby +ojM hxQ hxQ hxQ hxQ hxQ -kzw -shd -shd -shd -shd -vCh -shd -shd -ghu +gXX +eby +eby +eby +eby +qNp +eby +eby +hNR nBo erQ qUi @@ -24050,7 +19690,7 @@ sAL sAL xYW xYW -iPp +tNj sAL sAL sAL @@ -24058,43 +19698,43 @@ sAL sAL sAL ppz -lev -foR -gYt -ocw +xuj +aAk +sAO +mcT ppz -hwl -txb +dRi +gJP ppz ppz -txb -gYt -vgx +gJP +sAO +jBY sbx -iqr -iqr -iqr -bRL +jAX +jAX +jAX +hJq sbD -lxC -fVe -muH +aHn +ayB +sBY sbD -lxC -fVe -fVe -fVe -fVe -fVe -fVe -fVe -nke +aHn +ayB +ayB +ayB +ayB +ayB +ayB +ayB +fOB xas -nUT +jyb smq smq smq -dls +kbf xas mci mci @@ -24161,14 +19801,14 @@ oLk oLk oLk nBo -aAA -shd -shd -shd -shd -shd -shd -shd +kLP +eby +eby +eby +eby +eby +eby +eby aJy hxQ hxQ @@ -24176,25 +19816,25 @@ hxQ hxQ hxQ rIf -shd -shd -shd -shd -shd -shd -shd -cQu +eby +eby +eby +eby +eby +eby +eby +rpW nBo eKS nBo -pwf -shd -shd -shd -shd -shd -shd -shd +dWa +eby +eby +eby +eby +eby +eby +eby vzE hxQ hxQ @@ -24202,14 +19842,14 @@ hxQ hxQ hxQ grT -shd -shd -shd -vCh -vCh -shd -shd -ghu +eby +eby +eby +qNp +qNp +eby +eby +hNR nBo erQ erQ @@ -24289,48 +19929,48 @@ jnY nWj jnY sAL -eEo -gOy -gOy -eEo +cam +lNV +lNV +cam ppz sbx sbx ppz -puM +mGN ppz sbx sbx ppz -gYt -gYt -gYt -kzt +sAO +sAO +sAO +mpu ppz -iAl -sPW -sPW -sPW -ewM -gpr -gpr -gpr -tGk -gpr -gpr -gpr -gpr -gpr -gpr -gpr -gpr -uqE +lAR +wgq +wgq +wgq +iwz +bSk +bSk +bSk +kvg +bSk +bSk +bSk +bSk +bSk +bSk +bSk +bSk +euL xas -nUT +jyb smq smq smq -dls +kbf xas mci mci @@ -24398,12 +20038,12 @@ oLk xSl nBo nBo -kVS -kVS -shd -shd -wBo -aAA +uBz +uBz +eby +eby +fLg +kLP nBo nBo ojU @@ -24413,23 +20053,23 @@ hxQ eKS nBo nBo -jRx -njM -shd -shd -aFV -aFV +rBZ +ydu +eby +eby +lFT +lFT nBo nBo eKS nBo nBo -pNW -iFR -shd -shd -shd -shd +tpR +fdw +eby +eby +eby +eby nBo nBo eKS @@ -24439,12 +20079,12 @@ hxQ eKS nBo nBo -ctE -shd -vCh -vCh -shd -ctE +ixD +eby +qNp +qNp +eby +ixD nBo nBo erQ @@ -24525,48 +20165,48 @@ jnY aWj jnY sAL -qYG -qYG -qYG -qYG -jvn -gYt -gYt -gYt -ocw -nQH -gYt -gYt -gYt -niO -niO -niO -niO -pVp -niO -niO -niO -niO -ewM -jWC -jWC -jWC -tGk -jWC -jWC -jWC -jWC -jWC -jWC -jWC -jWC -jWC -mXf -nUT +tmu +tmu +tmu +tmu +xlU +sAO +sAO +sAO +mcT +eqO +sAO +sAO +sAO +vsl +vsl +vsl +vsl +oTa +vsl +vsl +vsl +vsl +iwz +leR +leR +leR +kvg +leR +leR +leR +leR +leR +leR +leR +leR +leR +ege +jyb smq smq smq -dls +kbf xas mci mci @@ -24761,48 +20401,48 @@ jnY jnY jnY sAL -lji -juF -juF -juF +wYu +gMH +gMH +gMH ppz -iqr -iqr -iqr -qVW -mJa -mJa -mJa -mJa -opn -opn -uXu -opn -iWJ -opn -opn -dwm -niO -ewM -jWC -jWC -jWC -tGk -jWC -jWC -jWC -jWC -jWC -jWC -jWC -jWC -jWC -mjf -nUT +jAX +jAX +jAX +szg +kPH +kPH +kPH +kPH +gsy +gsy +bDb +gsy +cix +gsy +gsy +ejc +vsl +iwz +leR +leR +leR +kvg +leR +leR +leR +leR +leR +leR +leR +leR +leR +nmL +jyb smq smq smq -dls +kbf xas mci mci @@ -24997,48 +20637,48 @@ lvh jnY jnY sAL -wuP -wuP -vvv -wuP +mlF +mlF +eVY +mlF ppz sbx sbx ppz -puM +mGN ppz sbx sbx ppz -iqr -iqr -cpA -kzt +jAX +jAX +cNi +mpu ppz -mYP -lDp -eGo -lDp -ewM -ahU -ahU -ahU -tGk -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU -ahU +xPr +vNV +vba +vNV +iwz +uGM +uGM +uGM +kvg +uGM +uGM +uGM +uGM +uGM +uGM +uGM +uGM +uGM xas -nUT +jyb smq smq smq -dls +kbf xas mci mci @@ -25238,43 +20878,43 @@ wHF wHF wHF ppz -ldh -djV -iqr -cpA +bDm +rZA +jAX +cNi ppz -pPC -syH +gea +mdV ppz ppz -awb -nhV -vXX +nlH +vWW +uyH sbx -gYt -gYt -ocw -tjE +sAO +sAO +mcT +fdi oYl -oLf -diD -nSf +kos +axu +rNv sbD -oLf -diD -diD -diD -diD -diD -diD -diD -hzV +kos +axu +axu +axu +axu +axu +axu +axu +pGq xas -nUT +jyb smq smq smq -dls +kbf xas mci mci @@ -25342,12 +20982,12 @@ xSl xSl nBo nBo -tVY -pcr -shd -shd -shd -htq +jbr +ptL +eby +eby +eby +mbF nBo nBo ojU @@ -25357,23 +20997,23 @@ hxQ eKS nBo nBo -vCh -vCh -shd -vCh -vCh -shd +qNp +qNp +eby +qNp +qNp +eby nBo nBo eKS nBo nBo -vCh -vCh -shd -shd -vCh -vCh +qNp +qNp +eby +eby +qNp +qNp nBo nBo eKS @@ -25383,12 +21023,12 @@ hxQ eKS nBo nBo -pJi -shd -vCh -vCh -lFc -sOP +aeG +eby +qNp +qNp +apM +fkF nBo nBo erQ @@ -25473,44 +21113,44 @@ wHF iMx iMx wHF -niO -iqr -iqr -iqr -cpA -niO -iqr -vsU -iIN +vsl +jAX +jAX +jAX +cNi +vsl +jAX +bQb +ilK sbx -icR -iqr -nri +lJV +jAX +eiz sbx -vIP -vIP -cVa -vIP +jjW +jjW +rxm +jjW xas -nFc -nFc -nFc +rOG +rOG +rOG xas -chQ -chQ -chQ -chQ -nFc -uEf -nFc -kyM -ykL +bKT +bKT +bKT +bKT +rOG +iXe +rOG +gyu +nAo xas -srY -gFd -gFd -gFd -oLG +xUR +qaH +qaH +qaH +xSv xas mci mci @@ -25577,14 +21217,14 @@ xSl xSl xSl nBo -snf -shd -shd -shd -shd -shd -shd -shd +kvt +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -25592,25 +21232,25 @@ hxQ hxQ hxQ nBo -shd -shd -shd -shd -shd -shd -shd -vCh +eby +eby +eby +eby +eby +eby +eby +qNp nBo eKS nBo -qaX -shd -shd -shd -shd -shd -shd -shd +dYj +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -25618,14 +21258,14 @@ hxQ hxQ hxQ nBo -shd -shd -shd -vCh -vCh -shd -shd -shd +eby +eby +eby +qNp +qNp +eby +eby +eby nBo erQ erQ @@ -25705,37 +21345,37 @@ tAP tAP tAP tAP -jtP +tJt qMB tAP -jtP -niO -iqr -iqr -iqr -qVW -opn -nhV -iqr -awb +tJt +vsl +jAX +jAX +jAX +szg +gsy +vWW +jAX +nlH sbx -aXQ -ozl -icR +nCJ +wzy +lJV ppz -vIP -vIP -cVa -vIP +jjW +jjW +rxm +jjW pTy pTy pTy pTy pTy -vbx -vbx -vbx -vbx +iBV +iBV +iBV +iBV pFM pTy pTy @@ -25813,55 +21453,55 @@ xSl xSl xSl nBo -shd -shd -shd -shd -shd -shd -shd -shd -nxM +eby +eby +eby +eby +eby +eby +eby +eby +dDn hxQ hxQ hxQ hxQ hxQ -ybF -shd -shd -shd -shd -shd -shd -shd -shd +vnn +eby +eby +eby +eby +eby +eby +eby +eby nBo eKS nBo -shd -shd -shd -shd -shd -shd -shd -shd -vrc +eby +eby +eby +eby +eby +eby +eby +eby +tNx hxQ hxQ hxQ hxQ hxQ -xhQ -shd -shd -shd -shd -shd -shd -shd -shd +cas +eby +eby +eby +eby +eby +eby +eby +eby nBo erQ erQ @@ -25934,35 +21574,35 @@ tAP qMB chy chy -vZI +qDk chy chy chy chy cLb chy -rWN +tzd fOQ chy -oVZ -opn -mJa -qsw -mJa -lge -niO -iqr -ozl -pPC +xFq +gsy +kPH +agj +kPH +dRW +vsl +jAX +wzy +gea ppz -iIN -iqr -pPC +ilK +jAX +gea ppz -eEZ -diy -cHN -vIP +cxW +olb +dIl +jjW pTy kgY kgY @@ -26049,14 +21689,14 @@ xSl xSl xSl nBo -xzs -shd -shd -shd -shd -shd -shd -shd +xkE +eby +eby +eby +eby +eby +eby +eby kWi hxQ hxQ @@ -26064,25 +21704,25 @@ hxQ hxQ hxQ lfQ -vCh -shd -shd -shd -shd -shd -shd -vCh +qNp +eby +eby +eby +eby +eby +eby +qNp nBo eKS nBo -qaX -shd -shd -shd -shd -shd -shd -shd +dYj +eby +eby +eby +eby +eby +eby +eby hER hxQ hxQ @@ -26090,14 +21730,14 @@ hxQ hxQ hxQ xkw -aAD -shd -shd -shd -shd -shd -uWA -pCL +iKe +eby +eby +eby +eby +eby +kXc +xiZ nBo erQ erQ @@ -26181,24 +21821,24 @@ wHF xxQ xxQ wHF -hkG -iqr -iqr -iqr -iqr +baB +jAX +jAX +jAX +jAX ppz -vXX -iqr -jQG +uyH +jAX +qzn ppz ppz ppz ppz ppz -eND -vIP -cVa -vIP +vBg +jjW +rxm +jjW pTy kgY kgY @@ -26286,12 +21926,12 @@ xSl xSl nBo nBo -htM -kdm -shd -shd -shd -htq +rfx +oee +eby +eby +eby +mbF nBo nBo ojU @@ -26301,23 +21941,23 @@ hxQ eKS nBo nBo -shd -vCh -vCh -vCh -vCh -shd +eby +qNp +qNp +qNp +qNp +eby nBo nBo eKS nBo nBo -vCh -vCh -shd -shd -vCh -vCh +qNp +qNp +eby +eby +qNp +qNp nBo nBo eKS @@ -26327,12 +21967,12 @@ hxQ eKS nBo nBo -keK -oru -shd -shd -shd -aAD +nHM +eTW +eby +eby +eby +iKe nBo nBo erQ @@ -26418,23 +22058,23 @@ wHF wHF wHF ppz -icR -vwj -rrw -icR +lJV +nnL +poW +lJV ppz ppz ppz ppz ppz -ozH -smE -ozH +rMo +cfw +rMo ppz -egL -vIP -cVa -vIP +iYw +jjW +rxm +jjW pTy kgY kgY @@ -26445,7 +22085,7 @@ kgY kgY kgY kgY -tsk +rZJ kgY kgY kgY @@ -26659,18 +22299,18 @@ wHF wHF wHF hFY -xXq -xXq -xXq +nKJ +nKJ +nKJ ppz -rDY -rDY -fFB +ohd +ohd +hfl ppz -vIP -vIP -cVa -vIP +jjW +jjW +rxm +jjW pTy kOC kgY @@ -26681,7 +22321,7 @@ kgY kgY kgY kgY -tsk +rZJ kgY kgY kgY @@ -26894,19 +22534,19 @@ eCT abQ eCT wHF -vDQ -xXq -xXq -xXq -pVp -rDY -rDY -rDY -pVp -vIP -vIP -cVa -vIP +crY +nKJ +nKJ +nKJ +oTa +ohd +ohd +ohd +oTa +jjW +jjW +rxm +jjW pTy kOC kgY @@ -26917,7 +22557,7 @@ kgY kgY kgY kgY -tsk +rZJ kgY kgY kgY @@ -27125,24 +22765,24 @@ tAP tAP tAP tAP -ehY +wcZ tAP fPr tAP wHF -vDQ -xXq -xXq -ydt -iWJ -izM -izM -izM -iWJ -mfx -mfx -dlS -vIP +crY +nKJ +nKJ +shX +cix +bvF +bvF +bvF +cix +gGs +gGs +uFd +jjW pTy kgY kgY @@ -27153,7 +22793,7 @@ kgY kgY kgY kgY -tsk +rZJ kgY kgY kgY @@ -27230,12 +22870,12 @@ xSl xSl nBo nBo -dGL -wzI -shd -shd -qFU -qFU +rKr +wob +eby +eby +cSr +cSr nBo nBo ojU @@ -27245,23 +22885,23 @@ hxQ eKS nBo nBo -wBo -wBo -shd -shd -tGa -lZF +fLg +fLg +eby +eby +fJX +scZ nBo nBo eKS nBo nBo -hRa -nmD -shd -shd -eKr -cFj +pDx +foi +eby +eby +wrj +wvC nBo nBo eKS @@ -27271,12 +22911,12 @@ hxQ eKS nBo nBo -phx -shd -shd -shd -bMX -aAD +kMC +eby +eby +eby +rFH +iKe nBo nBo erQ @@ -27354,7 +22994,7 @@ mci mci mci wHF -sTR +hLh nvB tAP tAP @@ -27366,19 +23006,19 @@ wHF wHF wHF wHF -vDQ -xXq -xXq -eYm +crY +nKJ +nKJ +vJj ppz -xjs -smE -smE +bPp +cfw +cfw ppz -vIP -vIP -vIP -vIP +jjW +jjW +jjW +jjW pTy kgY kgY @@ -27465,14 +23105,14 @@ xSl xSl xSl nBo -tCM -shd -shd -shd -shd -shd -shd -shd +wLR +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -27480,25 +23120,25 @@ hxQ hxQ hxQ nBo -shd -shd -shd -shd -shd -shd -shd -lZF +eby +eby +eby +eby +eby +eby +eby +scZ nBo eKS nBo -hRa -shd -shd -shd -shd -shd -shd -shd +pDx +eby +eby +eby +eby +eby +eby +eby nBo hxQ hxQ @@ -27506,14 +23146,14 @@ hxQ hxQ hxQ nBo -shd -shd -shd -shd -shd -shd -shd -shd +eby +eby +eby +eby +eby +eby +eby +eby nBo erQ erQ @@ -27602,19 +23242,19 @@ eCT eCT eCT wHF -xXq -xXq -xXq -eYm +nKJ +nKJ +nKJ +vJj ppz -aVa -rDY -aVa +owu +ohd +owu ppz -vIP -vIP -nFP -vIP +jjW +jjW +bWV +jjW pTy kgY kgY @@ -27701,74 +23341,74 @@ xSl xSl xSl nBo -tCM -shd -shd -shd -shd -shd -shd -shd -qYm +wLR +eby +eby +eby +eby +eby +eby +eby +ves hxQ hxQ hxQ hxQ hxQ -vUG -shd -shd -shd -shd -shd -shd -shd -lZF +nCi +eby +eby +eby +eby +eby +eby +eby +scZ nBo eKS nBo -shd -shd -shd -shd -shd -shd -shd -shd -mDL +eby +eby +eby +eby +eby +eby +eby +eby +bak hxQ hxQ hxQ hxQ hxQ -xfr -shd -shd -shd -shd -shd -shd -shd -nlG +dyD +eby +eby +eby +eby +eby +eby +eby +joN nBo erQ erQ erQ rVf rVf -wNn -wNn -deu +bDH +bDH +kzi rsv -xhF -mzd -maq -mzd -mzd -mzd -mzd -maq -fIN +rLW +mvL +ueb +mvL +mvL +mvL +mvL +ueb +fwh pTb pTb qUi @@ -27833,15 +23473,15 @@ wNo rGl tAP tAP -ehY +wcZ tAP fPr tAP wHF -xdN -xXq -xXq -eYm +hAo +nKJ +nKJ +vJj ppz ppz ppz @@ -27937,14 +23577,14 @@ xSl xSl xSl nBo -tCM -shd -shd -shd -shd -shd -shd -shd +wLR +eby +eby +eby +eby +eby +eby +eby yfN hxQ hxQ @@ -27952,25 +23592,25 @@ hxQ hxQ hxQ oQY -shd -shd -shd -shd -shd -shd -shd -lZF +eby +eby +eby +eby +eby +eby +eby +scZ nBo eKS nBo -tGa -shd -shd -shd -shd -shd -shd -shd +fJX +eby +eby +eby +eby +eby +eby +eby pip hxQ hxQ @@ -27978,34 +23618,34 @@ hxQ hxQ hxQ jeP -shd -shd -shd -shd -shd -shd -shd -shd +eby +eby +eby +eby +eby +eby +eby +eby nBo erQ erQ erQ rVf -uqO -ema -ema -sHg +oEI +hmZ +hmZ +urK rsv -pDH -mzd -mzd -mzd -mzd -mzd -mzd -mzd -mzd -fIN +byM +mvL +mvL +mvL +mvL +mvL +mvL +mvL +mvL +fwh pTb qUi qUi @@ -28074,20 +23714,20 @@ wHF wHF wHF wHF -cBK -xXq -xXq -qDL -syD -xXq +jfz +nKJ +nKJ +pIK +mfp +nKJ hmy -cny -cny -gRS -dXB +vEM +vEM +mev +cjH hmy -xMb -eMo +jSa +miv pTy pTy pTy @@ -28174,12 +23814,12 @@ xSl xSl nBo nBo -dGL -wzI -shd -shd -pXb -pXb +rKr +wob +eby +eby +hpP +hpP nBo nBo eKS @@ -28189,23 +23829,23 @@ hxQ eKS nBo nBo -wBo -wBo -shd -shd -tGa -lZF +fLg +fLg +eby +eby +fJX +scZ nBo nBo ojU nBo nBo -tGa -nmD -shd -shd -eKr -cFj +fJX +foi +eby +eby +wrj +wvC nBo nBo eKS @@ -28215,33 +23855,33 @@ hxQ eKS nBo nBo -qDy -shd -shd -shd -shd -nNx +fgs +eby +eby +eby +eby +nXB nBo nBo erQ erQ erQ rVf -cFq -ema -ema -sHg +euK +hmZ +hmZ +urK rsv -xhF -mzd -mzd -mzd -mzd -mzd -mzd -mzd -mzd -mzd +rLW +mvL +mvL +mvL +mvL +mvL +mvL +mvL +mvL +mvL pTb qUi qUi @@ -28310,26 +23950,26 @@ hSN tAP tiP wHF -xXq -xXq -xXq -xXq -eYm -xXq -tZd -eTA -eTA -eTA -jWm +nKJ +nKJ +nKJ +nKJ +vJj +nKJ +lKh +fBV +fBV +fBV +rUl xew -dto -eMo -kQZ +kGb +miv +pzL xRd -wNc -gvG -mba -dRZ +uvw +xJp +pJj +oTF xRd eAx rYM @@ -28463,21 +24103,21 @@ erQ erQ rVf rVf -ema -ema -wNn -deu +hmZ +hmZ +bDH +kzi rsv -kVV -mzd -mzd -mzd -mzd -mzd -mzd -mzd -mzd -mzd +iCk +mvL +mvL +mvL +mvL +mvL +mvL +mvL +mvL +mvL pTb pTb qUi @@ -28541,31 +24181,31 @@ dPu rGl tAP tAP -bXq +uQg tAP tAP tiP wHF -vDQ -xXq -xXq -xXq -eYm -xXq +crY +nKJ +nKJ +nKJ +vJj +nKJ hmy -cfR -eTA -eTA -eTA +dup +fBV +fBV +fBV xew -dto -eMo -tYn +kGb +miv +aYX xRd -nhe -aXS -aXS -dRZ +tyL +cmo +cmo +oTF xRd oQM rYM @@ -28698,23 +24338,23 @@ eKS erQ erQ rVf -aUk -ema -sHg +pZJ +hmZ +urK rsv bQf rsv siM siM -msa +rMj siM tnF tnF siM -izC -mzd -mzd -mTv +vqa +mvL +mvL +kbg pTb qUi qUi @@ -28777,31 +24417,31 @@ wrt tAP tAP tAP -bXq +uQg tAP tAP tiP wHF -vDQ -xXq -xXq -xXq -eYm +crY +nKJ +nKJ +nKJ +vJj hmy hmy -xKL -eTA -eTA -eTA +tWl +fBV +fBV +fBV hmy -dto -eMo -tYn -ygM -nhe -aXS -aXS -dRZ +kGb +miv +aYX +aeB +tyL +cmo +cmo +oTF xRd jDZ rYM @@ -28934,23 +24574,23 @@ eKS erQ erQ rVf -aUk -ema -sHg +pZJ +hmZ +urK rsv -fHm -fHm -fHm -fHm -fHm -fHm -fHm -vPi +okU +okU +okU +okU +okU +okU +okU +lHG tnF -hPP -mzd -mzd -mTv +yaT +mvL +mvL +kbg pTb qUi qUi @@ -29018,26 +24658,26 @@ tAP tAP tiP wHF -vDQ -xXq -xXq -xXq -eYm +crY +nKJ +nKJ +nKJ +vJj hmy -maY -eTA -eTA -eTA -eTA -pEM -dto -eMo -tYn +dLL +fBV +fBV +fBV +fBV +sgM +kGb +miv +aYX xRd -vtz -gvG -aXS -mqx +mGi +xJp +cmo +hXG xRd evO rYM @@ -29170,23 +24810,23 @@ eKS erQ erQ rVf -uqO -ema -vwu -vMS -fHm -fHm -fHm -fHm -fHm -fHm -fHm -vPi +oEI +hmZ +fUF +prp +okU +okU +okU +okU +okU +okU +okU +lHG tnF -hPP -mzd -mzd -plG +yaT +mvL +mvL +rAQ pTb qUi qUi @@ -29256,19 +24896,19 @@ wHF wHF rPK rPK -xXq -xXq -eYm +nKJ +nKJ +vJj hmy -tZy +dyS ldc -eTA -eTA -cQs -lnI -dto -eMo -tYn +fBV +fBV +qXm +vFC +kGb +miv +aYX xRd xRd xRd @@ -29406,18 +25046,18 @@ eKS erQ erQ rVf -uqO -ema -sHg +oEI +hmZ +urK rsv -mFJ -uFP -uFP -uFP -uFP -uFP -uFP -uFP +oIm +tLb +tLb +tLb +tLb +tLb +tLb +tLb aeM aeM aeM @@ -29479,7 +25119,7 @@ wHF wHF wHF aga -idI +nZH aga wHF wHF @@ -29492,19 +25132,19 @@ wHF oQK gFL rPK -luL -xXq -eYm -mUS -oGC +frj +nKJ +vJj +irc +aAt ldc ldc -eTA -eTA -mUS -dto -eMo -tYn +fBV +fBV +irc +kGb +miv +aYX xRd rYM uKQ @@ -29642,24 +25282,24 @@ eKS erQ erQ rVf -qOU -ema -efB +tis +hmZ +iCx rsv -oSs -tAu -qgW -qgW -wZU -qgW -qgW -vAn +bBf +iAf +fsk +fsk +fed +fsk +fsk +wpR aeM -meh -eob -eob -eob -oYv +pOe +oIq +oIq +oIq +kiZ aeM oZr oZr @@ -29728,20 +25368,20 @@ eFc pkn pkn rPK -xXq -xXq -eYm -huP -eTA +nKJ +nKJ +vJj +jaK +fBV ldc ldc -eTA -eTA -wAc -dto -eMo -tYn -kjW +fBV +fBV +xgK +kGb +miv +aYX +fBZ oMB oMB oMB @@ -29878,24 +25518,24 @@ eKS erQ erQ rVf -qOU -ema -uJL +tis +hmZ +heF rsv -mHJ -uXZ -pas -mFJ -qUC -dAe -dAe -qnf +fUL +fRx +sEj +oIm +acJ +dvH +dvH +vpr aeM -eGl +vcj orO orO orO -gdV +vft aeM oZr oZr @@ -29964,19 +25604,19 @@ pkn pkn pkn rPK -xXq -xXq -eYm +nKJ +nKJ +vJj hmy -cfR -eTA -eTA -eTA -eTA +dup +fBV +fBV +fBV +fBV hmy -tDd -eMo -tYn +jjB +miv +aYX pxD jsF pxD @@ -30114,24 +25754,24 @@ eKS erQ erQ rVf -ema -ema -nzH +hmZ +hmZ +lYc rsv -eKv -uXZ -pas -pas -cBn -cBn -cBn -cBn +xmp +fRx +sEj +sEj +imG +imG +imG +imG aeM -eGl +vcj orO orO orO -gdV +vft aeM oZr oZr @@ -30200,26 +25840,26 @@ pkn pkn pkn rPK -xXq -xXq -eYm -jlM +nKJ +nKJ +vJj +vUA ldc -eTA -eTA -eTA -eTA +fBV +fBV +fBV +fBV xew -dto -eMo -tYn +kGb +miv +aYX pxD pxD pxD -rtG -vlr -qRC -tvu +dtN +vrq +iMW +fLA pxD kmw rYM @@ -30350,24 +25990,24 @@ eKS erQ erQ rVf -ema -ema +hmZ +hmZ rsv rsv -oSs -uXZ -bNH -pas -cBn -cBn -cBn -cBn -ggZ -eGl +bBf +fRx +tNw +sEj +imG +imG +imG +imG +iHw +vcj orO orO orO -gdV +vft aeM oZr pUL @@ -30430,32 +26070,32 @@ mci mci mci rPK -uwJ +gjt pkn pkn pkn pkn -yin -xXq -xXq -eYm +pCs +nKJ +nKJ +vJj hmy ldc ldc -eTA -eTA -nsY +fBV +fBV +nfK xew -dto -eMo -tYn +kGb +miv +aYX pxD -qfE -pyM -pyM -pyM -pyM -oWZ +vcN +bEV +bEV +bEV +bEV +ovZ pxD rYM rYM @@ -30586,24 +26226,24 @@ eKS erQ erQ rVf -pkv -eGB +uXC +mwr rsv -wCV -oSs -uXZ -bNH -pas -pas -pas -pas -pas -eWu -eGl +htK +bBf +fRx +tNw +sEj +sEj +sEj +sEj +sEj +uSI +vcj orO orO orO -gdV +vft aeM oZr oZr @@ -30672,27 +26312,27 @@ pkn pkn pkn rPK -xXq -xXq -eYm +nKJ +nKJ +vJj hmy mah -eTA -eTA -eTA -jZa +fBV +fBV +fBV +tNH hmy -dto -eMo -tYn +kGb +miv +aYX pxD -tNA -pyM -pyM -pyM -pyM -oWZ -obS +tme +bEV +bEV +bEV +bEV +ovZ +dgs oMB oMB tdX @@ -30825,21 +26465,21 @@ oup heS heS heS -eJX -oSs -uXZ -bNH -dAe -pas -pas -pas -pas +mxm +bBf +fRx +tNw +dvH +sEj +sEj +sEj +sEj aeM -eGl +vcj orO orO orO -gdV +vft aeM oZr oZr @@ -30908,26 +26548,26 @@ pkn pkn pkn rPK -cBK -xXq -eYm +jfz +nKJ +vJj hmy hmy hmy -eTA -eTA +fBV +fBV hmy hmy -kQd -eMo -tYn -nLE -xZV -pyM -pyM -pyM -pyM -dtc +nQQ +miv +aYX +dOS +dOf +bEV +bEV +bEV +bEV +oiX pxD wsi wsi @@ -31024,18 +26664,18 @@ pro pro iTq iTq -ufp -hhv -riJ -hhv -nhn -kRM +lgW +emI +tia +emI +iyv +smR iTq iTq fnm fnm -ixV -pLf +mpz +vHI fnm fnm pro @@ -31058,24 +26698,24 @@ pro pro pro oup -wSf -scF +psB +qhP heS heS -oSs -uXZ -cjl -dAe -dOV -rOp -rOp -rOp +bBf +fRx +tFz +dvH +aTN +wGK +wGK +wGK aeM -eGl +vcj orO orO orO -gdV +vft aeM oZr oZr @@ -31144,32 +26784,32 @@ pkn pkn pkn rPK -qTA -xXq -eYm +rFY +nKJ +vJj hmy -uTK -uTK -eTA +nxD +nxD +fBV ldc -kBC +fPU hmy -dto -eMo -tYn +kGb +miv +aYX pxD -xZV -pyM -pyM -pyM -dtc +dOf +bEV +bEV +bEV +oiX pxD pxD csJ csJ csJ csJ -bel +lvi csJ csJ csJ @@ -31211,7 +26851,7 @@ hIQ btz btz hIQ -dIo +rQA hIQ btz rPt @@ -31259,20 +26899,20 @@ pro pro pro iTq -fMo -jCc -jCc -jCc -jCc -jCc -jCc -sdu +sNg +vTq +vTq +vTq +vTq +vTq +vTq +wlX xnn -rPJ -ilt -bnj -bnj -tET +kuE +rNI +krM +krM +omH fnm pro pro @@ -31294,24 +26934,24 @@ pro pro pro oup -buU -pSF -noj +kdj +rLx +uUj heS -iyl -uXZ -pas -dAe -dOV -hVV -hVV -ppl +igf +fRx +sEj +dvH +aTN +jku +jku +nRz aeM -hgB -fRs -fRs -fRs -ixE +cmx +pKO +pKO +pKO +hHB aeM aeM aeM @@ -31380,25 +27020,25 @@ pkn gFL gFL rPK -xXq -xXq -eYm +nKJ +nKJ +vJj hmy hZr ldc ldc -eTA -eTA +fBV +fBV hmy -dto -eMo -tYn +kGb +miv +aYX cDk -xZV -pyM -pyM -pyM -gkp +dOf +bEV +bEV +bEV +ptw pxD tJT rYM @@ -31407,7 +27047,7 @@ rYM rYM dSv rYM -ndN +hVj csJ mci mci @@ -31495,20 +27135,20 @@ pro pro pro iTq -ukw -jCc -jCc -jCc -jCc -jCc -wFV -uAA +lRa +vTq +vTq +vTq +vTq +vTq +aXC +nCA xnn -dqp -bnj -bnj -qOM -uAn +xRo +krM +krM +cEy +gjg fnm pro pro @@ -31530,18 +27170,18 @@ pro pro pro oup -pSF -pSF -noj +rLx +rLx +uUj tye -oSs -uXZ -pas -dAe -dOV -eqm -eqm -eqm +bBf +fRx +sEj +dvH +aTN +wPT +wPT +wPT aeM aeM aeM @@ -31617,24 +27257,24 @@ rPK rPK rPK hFY -bUw -uqD +vLJ +ebe hmy -uTK -akM -eTA -eTA -srv +nxD +oak +fBV +fBV +hFc hmy -rBf -eMo -tYn +gLW +miv +aYX cDk -azc -pyM -pyM -pyM -scX +beb +bEV +bEV +bEV +vgE pxD tJT rYM @@ -31643,7 +27283,7 @@ rYM rYM dSv rYM -ndN +hVj csJ mci mci @@ -31693,7 +27333,7 @@ hIQ hIQ hIQ hIQ -gDq +qme nZl nZl nZl @@ -31731,20 +27371,20 @@ ryS ryS ryS iTq -rux -jCc -jGc -jCc -jeT -jCc -uNk -vDI -eFm -gbn -qVX -qVX -nII -uJc +sts +vTq +wvs +vTq +oxD +vTq +qsr +aUm +qzX +vtw +uPl +uPl +hhW +oyM fnm pro pro @@ -31766,22 +27406,22 @@ pro pro pro oup -pSF -pSF -noj +rLx +rLx +uUj tye -oSs -uXZ -pas -dAe -dOV -eqm -oSs -oSs -oSs -oSs -oSs -kYr +bBf +fRx +sEj +dvH +aTN +wPT +bBf +bBf +bBf +bBf +bBf +hqs lHZ tYZ tYZ @@ -31848,13 +27488,13 @@ mci mci mci dDR -hxZ -kmr -lxo -qXo +kLH +uGR +bar +hrk hFY -pNv -fRT +vLt +bZE hmy hmy xew @@ -31862,15 +27502,15 @@ xew xew hmy hmy -dto -eMo -vFb +kGb +miv +mNH pxD -xoc -pyM -pyM -pyM -scX +rTA +bEV +bEV +bEV +vgE pxD bqd rYM @@ -31879,7 +27519,7 @@ rYM rYM dSv rYM -ndN +hVj csJ mci mci @@ -31929,7 +27569,7 @@ btz hIQ hIQ hIQ -ffT +wVb nZl nZl nZl @@ -31966,21 +27606,21 @@ ryS ryS ryS ryS -dhC -jCc -jCc -ror -jCc -jeT -jCc -hVm -uAA +acU +vTq +vTq +mtG +vTq +oxD +vTq +rGb +nCA xnn -dqp -bnj -bnj -fDP -bnj +xRo +krM +krM +dLw +krM fnm ryS ryS @@ -32002,23 +27642,23 @@ pro pro pro oup -vVu -pSF -noj +bJv +rLx +uUj heS -mHJ -uXZ -pas -dAe -dOV -eqm -oSs -oSs -oSs -oSs -oSs -oSs -fJs +fUL +fRx +sEj +dvH +aTN +wPT +bBf +bBf +bBf +bBf +bBf +bBf +rRf wif wif wif @@ -32084,29 +27724,29 @@ mci mci mci dDR -xYZ -kmr -kmr -kmr -rJY -sNK -bkS -btd -hyr -btd -btd -btd -sNK +asm +uGR +uGR +uGR +gEH +hWQ +jBl +psq +cJa +psq +psq +psq +hWQ dDR -dto -eMo -tYn +kGb +miv +aYX cDk -xZV -pyM -pyM -pyM -oWZ +dOf +bEV +bEV +bEV +ovZ pxD mFZ rYM @@ -32203,21 +27843,21 @@ ryS ryS ryS iTq -jCc -btA -ror -jCc -kzY -jCc -hVm -uAA +vTq +hpq +mtG +vTq +bof +vTq +rGb +nCA xnn -fYj -lxu -lxu -qxC -qVX -gmz +kUG +ukV +ukV +tsq +uPl +kKQ ryS ryS ryS @@ -32238,22 +27878,22 @@ pro pro pro oup -vVu -pSF -noj -bma -oSs -uXZ -pas -dAe -dOV -eqm -oSs -oSs -oeb -oSs -oSs -mia +bJv +rLx +uUj +xxF +bBf +fRx +sEj +dvH +aTN +wPT +bBf +bBf +nwZ +bBf +bBf +owX lHZ wif wif @@ -32320,29 +27960,29 @@ mci mci mci dDR -bLm -kmr -kmr -kmr -rJY -kmr -reH -nIA -xYR -flW -eZi -jPQ -wPj +dob +uGR +uGR +uGR +gEH +uGR +wAv +gyz +kcD +sbM +dig +ufB +qtS pAe -dto -eMo -tYn +kGb +miv +aYX cDk -xZV -pyM -pyM -pyM -oWZ +dOf +bEV +bEV +bEV +ovZ pxD mje rYM @@ -32350,7 +27990,7 @@ rYM rYM rYM dSv -nVh +xHd csJ mci mci @@ -32444,15 +28084,15 @@ xnn xnn xnn xnn -kUO -hVm -kVg +vLs +rGb +vDT xnn -cXm -bnj -bnj -bnj -bnj +wcr +krM +krM +krM +krM fnm ryS ryS @@ -32474,22 +28114,22 @@ pro pro pro oup -lMT -pSF -jgS +jKM +rLx +fIv heS -oSs -uXZ -pas -dAe -dOV -eqm -oSs -oSs -oSs -oSs -oSs -cNM +bBf +fRx +sEj +dvH +aTN +wPT +bBf +bBf +bBf +bBf +bBf +xkn lHZ oNj lXy @@ -32556,29 +28196,29 @@ xyD xyD xyD xyD -xEa -kmr -oZp -ifu -rJY -kmr -reH -okx -pfS -jPQ -jPQ -xYR -wPj +jci +uGR +gFE +rRI +gEH +uGR +wAv +bVE +fGj +ufB +ufB +kcD +qtS pAe -dto -eMo -tYn +kGb +miv +aYX pxD -elZ -kXO -oiQ -rtG -ejn +eGb +xjp +pEI +dtN +cLm pxD mje rYM @@ -32624,7 +28264,7 @@ vNq nBo cwA cwA -fLP +cxl cwA cwA cwA @@ -32654,10 +28294,10 @@ vNq vNq jff jff -cws -cws -dWP -taW +ygd +ygd +xHO +xho dfw pro pro @@ -32675,20 +28315,20 @@ mZu mZu mZu iTq -ePc -apg -nlL -iwh +qZa +nFF +qTI +diu xnn -jCc -hVm -pcR +vTq +rGb +pNB xnn -xVh -bnj -bnj -bnj -taJ +ykW +krM +krM +krM +iMR fnm pro pro @@ -32711,20 +28351,20 @@ pro pro oup oup -scF -acV +qhP +pgb heS -oSs -uXZ -pas -dAe -dOV -eqm -bdX -oSs -oSs -oSs -cNM +bBf +fRx +sEj +dvH +aTN +wPT +dGI +bBf +bBf +bBf +xkn aeM aeM aeM @@ -32796,19 +28436,19 @@ xyD xyD xyD xyD -gul -kmr -bkS -mRm -mRm -mRm -mRm -mRm -kua +wab +uGR +jBl +ivM +ivM +ivM +ivM +ivM +gPN dDR -dto -eMo -tYn +kGb +miv +aYX pxD pxD pxD @@ -32821,7 +28461,7 @@ csJ csJ csJ csJ -bel +lvi csJ mci mci @@ -32889,11 +28529,11 @@ vNq vNq vNq jff -uDA -nmG -nmG -nmG -iYR +mmP +bSb +bSb +bSb +bQY jff ryS ryS @@ -32911,20 +28551,20 @@ pro pro pro iTq -xJJ -jCc -jCc -hbD -dMV -uut -hbc -hrS +vbL +vTq +vTq +xBd +kGM +qOh +lKD +qOk xnn -bto -cae -cae -bnj -iNS +vCS +kCJ +kCJ +krM +dAo fnm mZu mZu @@ -32951,14 +28591,14 @@ oup oup oup vKi -qdO -qdO -qdO -qdO +uLq +uLq +uLq +uLq aeM aeM qRy -cUv +xeq aeM aeM aeM @@ -33028,24 +28668,24 @@ pDb nYm xyD xyD -ahd -hfk -bJk +oRJ +jWe +oqx xyD -sPy -kmr -dUZ -kmr -kmr -bAE -kmr -kmr -aKB +wDw +uGR +uSi +uGR +uGR +oWs +uGR +uGR +rZY pAe -dto -eMo -tYn -kjW +kGb +miv +aYX +fBZ oMB oMB oMB @@ -33125,12 +28765,12 @@ vNq vNq vNq jff -oZJ -nmG -nmG -nmG -nmv -jna +tYh +bSb +bSb +bSb +xxq +diA ryS ryS ryS @@ -33147,20 +28787,20 @@ mZu pro pro iTq -ePc -jCc -jCc -xJJ +qZa +vTq +vTq +vbL xnn -jCc -jCc -hrS +vTq +vTq +qOk xnn -dqp -bnj -bnj -bnj -iNS +xRo +krM +krM +krM +dAo fnm mZu mZu @@ -33263,24 +28903,24 @@ osw uJV nYm xyD -bSD -uAD -uAD -nQp +rAI +sEx +sEx +jye xyD -wBV -kmr -dUZ -sNK -btd -rSQ -sNK -kmr -kDB +tHU +uGR +uSi +hWQ +psq +hzM +hWQ +uGR +tWD pAe -dto -eMo -tYn +kGb +miv +aYX rli rli rli @@ -33361,11 +29001,11 @@ vNq vNq vNq jff -phM -nmG -nmG -nmG -jDc +mHk +bSb +bSb +bSb +tEy jff ryS ryS @@ -33384,18 +29024,18 @@ pro pro iTq iTq -ePc -apg -ePc +qZa +nFF +qZa xnn -jIX -voy +wxm +mHs iTq iTq fnm fnm -hgT -qwG +hFp +vsp fnm fnm mZu @@ -33499,24 +29139,24 @@ mEa nYm nYm xyD -uAD -uAD -bCu -cuh -ceF -iCc -eju -qgc -nWk -qXo -bZT -wPj -kmr -xnK +sEx +sEx +fip +jND +sVk +iwT +iDm +jDm +mqH +hrk +kJD +qtS +uGR +wlS dDR -tDd -eMo -tYn +jjB +miv +aYX rli vmE dpl @@ -33597,11 +29237,11 @@ vNq vNq vNq jff -eeR -nmG -nmG -xGl -rBc +bIt +bSb +bSb +rIU +sWQ dfw pro pro @@ -33734,25 +29374,25 @@ nYm aKV qbd qbd -wna -vJb -vJb -hYs -nQp +rLJ +joR +joR +xyW +jye xyD -rJY -kmr -dUZ -nWk -tZg -bVl -wPj -fpC -gmH -rJY -dto -eMo -tYn +gEH +uGR +uSi +mqH +twN +wnW +qtS +axU +wse +gEH +kGb +miv +aYX tzI vmE dpl @@ -33761,7 +29401,7 @@ dpl vmE dpl dpl -fMB +bxc oMB oMB oMB @@ -33834,7 +29474,7 @@ nvO nvO nvO nvO -tSb +eMh nvO nvO nvO @@ -33971,24 +29611,24 @@ eFf nYm nYm xyD -uoI -uAD -pxp -nQp +nar +sEx +oeC +jye xyD -rJY -kmr -jsY -sBS -qPw -xxB -wVl -iCc -umt -iCc -qRN -oSL -oFT +gEH +uGR +ryd +rAe +lgd +rkh +tcZ +iwT +pee +iwT +trq +kav +lKG tzI vmE dpl @@ -34066,15 +29706,15 @@ vNq vNq nvO nvO -aje -cTl -esu -gBx -ofI -gBx -gBx -bHZ -tac +jNa +kYR +fMz +qEf +wll +qEf +qEf +iVw +wmA nvO pro pro @@ -34144,9 +29784,9 @@ rxj pro mVr mVr -aCs -aCs -aCs +hji +hji +hji mVr mVr oZr @@ -34207,24 +29847,24 @@ eFf nYm wyb xyD -hem -uAD -eMJ -nQp +wTT +sEx +kUo +jye dRY -tHn -kmr -dUZ -nWk -xYR -svV -wPj -aKB -kmr -rJY -dto -eMo -rpK +ddS +uGR +uSi +mqH +kcD +jWY +qtS +rZY +uGR +gEH +kGb +miv +wec rli vmE dpl @@ -34301,16 +29941,16 @@ icx vNq vNq nvO -lQg -wEL -mIN -mIN -mIN -tfP -mIN -mIN -mIN -csG +dKj +bGD +aRR +aRR +aRR +nDU +aRR +aRR +aRR +sTt nvO nvO ryS @@ -34379,11 +30019,11 @@ ryS pro pro mVr -bzV -qSv -vsB -ovD -vpm +rng +qtQ +tKT +gsX +biP mVr oZr oZr @@ -34443,24 +30083,24 @@ eFf tUE oeF xyD -hfk -uAD -uAD -axc +jWe +sEx +sEx +ttT dRY -lhr -kmr -dUZ -nWk -svV -eZi -wPj -gmH -qrA +wui +uGR +uSi +mqH +jWY +dig +qtS +wse +hIK dDR -tDd -eMo -rpK +jjB +miv +wec rli pru dpl @@ -34537,18 +30177,18 @@ icx vNq vNq nvO -asY -mIN -mIN -mIN -mIN -qfj -shB -qdx -shB -shB -ybQ -iWZ +oez +aRR +aRR +aRR +aRR +bNY +pSJ +tgi +pSJ +pSJ +iEl +gvW ryS ryS ryS @@ -34615,11 +30255,11 @@ ryS pro pro mVr -ahc -qSv -vsB -ovD -iVo +aBD +qtQ +tKT +gsX +dLT mVr oZr oZr @@ -34675,29 +30315,29 @@ mci xyD xyD xyD -nVL +iBr xyD xyD xyD -uoI -uAD -qwt -pyX +nar +sEx +xmW +phc xyD xyD -kmr -dUZ -sNK -mRm -mRm -sNK -gmH -kDB +uGR +uSi +hWQ +ivM +ivM +hWQ +wse +tWD pAe -dto -eMo -rpK -bqR +kGb +miv +wec +aEe dpl dpl dpl @@ -34773,17 +30413,17 @@ icx vNq vNq nvO -bcL -mIN -afL -kLS -mIN -tIA -kLS -tfP -mIN -mIN -mIN +xWX +aRR +oXM +jDS +aRR +jkJ +jDS +nDU +aRR +aRR +aRR nvO ryS ryS @@ -34851,11 +30491,11 @@ ryS pro pro mVr -qgF -qSv -vsB -ovD -vpm +rZx +qtQ +tKT +gsX +biP mVr oZr oZr @@ -34915,26 +30555,26 @@ eFf nYm pDb xyD -byv -uAD -uAD -kFE -qOA +cYO +sEx +sEx +jWe +abM xyD -rUH -dUZ -gmH -gmH -gmH -gmH -gmH -fpC +enx +uSi +wse +wse +wse +wse +wse +axU pAe -dto -eMo -rpK +kGb +miv +wec rli -pzy +kha dpl dpl dpl @@ -35009,18 +30649,18 @@ kiO vNq vNq nvO -dQN -shB -aCV -ezV -shB -foB -kLS -tfP -mIN -mIN -mIN -kbx +yes +pSJ +hNN +fDc +pSJ +uFh +jDS +nDU +aRR +aRR +aRR +fDB ryS ryS ryS @@ -35067,10 +30707,10 @@ ryS ryS mVr mVr -ghI -ghI -qxS -biN +uSU +uSU +gvM +pYt mVr mVr pro @@ -35087,11 +30727,11 @@ ryS pro pro mVr -nRY -qSv -vsB -ine -iZq +kDY +qtQ +tKT +dsw +xgX mVr oZr oZr @@ -35152,23 +30792,23 @@ nYm wyb xyD xyD -rLX -uAD -uAD -nQp +vLw +sEx +sEx +jye dRY -kmr -bkS -btd -btd -btd -btd -btd -jXQ +uGR +jBl +psq +psq +psq +psq +psq +oJp dDR -dto -eMo -rpK +kGb +miv +wec rli vmE dpl @@ -35179,7 +30819,7 @@ dpl aBZ rli rli -igp +gXh csJ rYM rYM @@ -35245,18 +30885,18 @@ icx vNq vNq nvO -yfX -mIN -afL -kLS -mIN -afL -kLS -tfP -mIN -mIN -mIN -kbx +bsA +aRR +oXM +jDS +aRR +oXM +jDS +nDU +aRR +aRR +aRR +fDB ryS ryS ryS @@ -35302,12 +30942,12 @@ ryS ryS ryS mVr -jET -vNf -vNf -vNf -vNf -vNf +qpu +pnb +pnb +pnb +pnb +pnb mVr pro ryS @@ -35323,11 +30963,11 @@ ryS pro pro mVr -stI -qSv -vsB -ovD -vpm +vyX +qtQ +tKT +gsX +biP mVr oZr oZr @@ -35388,23 +31028,23 @@ nYm dvq rle xyD -uAD -hfk -hfk -nQp +sEx +jWe +jWe +jye dRY -kmr -reH -mpR -eZi -xYR -fyE -pfS -wPj +uGR +wAv +hWo +dig +kcD +rKO +fGj +qtS pAe -dto -eMo -rpK +kGb +miv +wec rli rli rli @@ -35414,8 +31054,8 @@ rli rli rli rli -lOz -nYI +cNv +cUo csJ rYM jpw @@ -35481,18 +31121,18 @@ icx vNq vNq nvO -bcL -mIN -afL -kLS -mIN -afL -kLS -tfP -mIN -mIN -mIN -kbx +xWX +aRR +oXM +jDS +aRR +oXM +jDS +nDU +aRR +aRR +aRR +fDB ryS ryS ryS @@ -35538,12 +31178,12 @@ ryS ryS ryS mVr -bRH -xQe -vNf -vNf -vNf -vcw +qlp +buQ +pnb +pnb +pnb +qqK mVr ryS ryS @@ -35559,11 +31199,11 @@ ryS pro pro mVr -sbK -qSv -vsB -ovD -vpm +tXP +qtQ +tKT +gsX +biP mVr oZr oZr @@ -35624,40 +31264,40 @@ nYm nYm wiq xyD -ndC -uAD -hem -mbe +edN +sEx +wTT +dvv xyD -kmr -reH -aZH -jPQ -pfS -ery -xYR -wPj +uGR +wAv +hOP +ufB +fGj +fBh +kcD +qtS pAe -dto -eMo -rpK +kGb +miv +wec eat -aYf -dHv -dHv -aYf +hth +qmb +qmb +hth eat -lbS -dHv -dHv -nYI -spe +tNv +qmb +qmb +cUo +oZq csJ rYM dSv csJ csJ -bel +lvi csJ wdr pKm @@ -35717,18 +31357,18 @@ icx vNq vNq nvO -bcL -mIN -afL -kLS -mIN -afL -kLS -tfP -mIN -mIN -mIN -kbx +xWX +aRR +oXM +jDS +aRR +oXM +jDS +nDU +aRR +aRR +aRR +fDB ryS ryS ryS @@ -35774,13 +31414,13 @@ ryS ryS ryS mVr -kLA -vNf -biN -biN -vNf -vNf -hZU +bam +pnb +pYt +pYt +pnb +pnb +gRl ryS ryS ryS @@ -35797,7 +31437,7 @@ pro mVr mVr mVr -adg +eit mVr mVr mVr @@ -35860,34 +31500,34 @@ xyD xyD xyD xyD -gkl -qwt -jbN -eLL +anE +xmW +nDT +fMe dRY -sNK -bkS -mRm -nnM -mRm -mRm -mRm -sNK +hWQ +jBl +ivM +nlF +ivM +ivM +ivM +hWQ dDR -dto -eMo -rpK +kGb +miv +wec mmM -bGU -jBH -jBH -rip +oju +qzk +qzk +mjB eat -fBF -nYI -nYI -nYI -nYI +aro +cUo +cUo +cUo +cUo csJ rYM ueM @@ -35953,17 +31593,17 @@ icx vNq vNq nvO -bcL -mIN -afL -kLS -mIN -afL -kLS -tfP -mIN -mIN -vJE +xWX +aRR +oXM +jDS +aRR +oXM +jDS +nDU +aRR +aRR +aPc nvO ryS ryS @@ -35977,8 +31617,8 @@ mZu mZu clZ clZ -tjS -vDi +huN +qMW clZ clZ mZu @@ -36010,12 +31650,12 @@ ryS ryS ryS mVr -eRC -biN -biN -vNf -vNf -vNf +oqw +pYt +pYt +pnb +pnb +pnb jWp ryS ryS @@ -36096,13 +31736,13 @@ ikP ikP ikP xyD -qCy -uAD -hfk -eLL +lPw +sEx +jWe +fMe dRY -xmi -pNf +lrr +rIY mgp mgp xWk @@ -36110,20 +31750,20 @@ xWk xWk mgp mgp -rBf -eMo -rpK +gLW +miv +wec mmM -sGP -jBH -jBH -pFp +qvS +qzk +qzk +tTc eat -tAa -nYI -nYI -nYI -nYI +wKb +cUo +cUo +cUo +cUo csJ rYM fkC @@ -36189,17 +31829,17 @@ icx vNq vNq nvO -xDl -mIN -afL -kLS -kvV -afL -kLS -tfP -mIN -mIN -idr +jDT +aRR +oXM +jDS +tyR +oXM +jDS +nDU +aRR +aRR +kSE nvO mZu mZu @@ -36212,10 +31852,10 @@ mZu mZu mZu clZ -vDi -tjS -vDi -vDi +qMW +huN +qMW +qMW clZ mmT rPB @@ -36246,12 +31886,12 @@ ryS ryS ryS mVr -biN -biN -vNf -vNf -vNf -aPi +pYt +pYt +pnb +pnb +pnb +tSt mVr pro ryS @@ -36326,10 +31966,10 @@ mci mci mci ikP -wwR -wwR -wwR -nDv +tTn +tTn +tTn +hRb ikP mgp mgp @@ -36337,28 +31977,28 @@ mgp mgp mgp mgp -tal -bQT +atQ +rdS mgp -fRr -ifb -ifb -ifb -qtN +iJZ +pLD +pLD +pLD +lUK mgp -dto -eMo -rpK +kGb +miv +wec eat -bhg -jBH -jBH -jBH +iZu +qzk +qzk +qzk eat mmM mmM eat -azJ +prn eat csJ rYM @@ -36367,10 +32007,10 @@ csJ rYM ipy oMB -hHE +cSN wsQ bJE -qxO +etq wdr mci mci @@ -36425,16 +32065,16 @@ icx vNq vNq nvO -jux -mIN -cLx -rUG -mIN -cLx -rUG -tfP -mIN -csG +hVQ +aRR +cpP +rpM +aRR +cpP +rpM +nDU +aRR +sTt nvO nvO mZu @@ -36448,10 +32088,10 @@ mZu mZu mZu clZ -tjS -tjS -tjS -tjS +huN +huN +huN +huN clZ mZu vjj @@ -36483,10 +32123,10 @@ ryS ryS mVr mVr -biN -eks -iuX -jET +pYt +wYk +hsE +qpu mVr mVr pro @@ -36562,40 +32202,40 @@ mci mci mci ikP -wID -wID -wID -wID +ctp +ctp +ctp +ctp ikP -avi -wwZ -tvP -fPR -alx -naP -naP -edH -tZR -caP -mJV -gwq -opu -uMk +lQK +dOh +ftA +srJ +nxW +uHh +uHh +cln +jYn +qeP +xMp +aLl +wlD +mbM xWk -dto -eMo -rpK -sYx -jBH -jBH -jBH -jBH -mKf -nvs -oGV -jBH -jBH -wej +kGb +miv +wec +iWV +qzk +qzk +qzk +qzk +rbs +fHN +xfI +qzk +qzk +dcn csJ rYM dSv @@ -36639,9 +32279,9 @@ vNq vNq fyc fyc -gae -epW -aNT +amn +hAx +sPt fyc wSj fPk @@ -36661,16 +32301,16 @@ icx vNq vNq nvO -nIQ -idr -idr -idr -idr -idr -idr -seI -idr -vkQ +cHy +kSE +kSE +kSE +kSE +kSE +kSE +nXJ +kSE +jqD nvO qPK mZu @@ -36684,10 +32324,10 @@ pro pro pro clZ -tjS -tjS -tjS -vDi +huN +huN +huN +qMW clZ mZu taG @@ -36798,40 +32438,40 @@ mci mci mci ikP -wID -otT -aJE -wID +ctp +nSw +sDV +ctp ikP -naP -naP -naP -naP -naP -naP -naP -edH -tZR -lIq -kuI -hul -mJV -uMk +uHh +uHh +uHh +uHh +uHh +uHh +uHh +cln +jYn +bNo +sFh +uDh +xMp +mbM xWk -dto -eMo -ihE -mau -asr -tiG -tiG -tiG -ngK -jBH -jBH -jBH -jBH -wej +kGb +miv +bdJ +fXk +yiW +qIN +qIN +qIN +nBh +qzk +qzk +qzk +qzk +dcn csJ rYM dSv @@ -36874,14 +32514,14 @@ vNq vNq vNq fyc -lNj -eLn -eLn -jbq +mxS +cDV +cDV +miA ncM -tHH -qam -oxv +uPf +ugd +dqL wSj vNq icx @@ -36904,7 +32544,7 @@ fUk fUk fUk fUk -vrS +mta fUk fUk khw @@ -36920,10 +32560,10 @@ ryS ryS ryS clZ -tjS -tjS -tjS -tjS +huN +huN +huN +huN clZ mZu xIM @@ -37034,41 +32674,41 @@ mci mci mci ikP -wID -wID -wID -wID -vFe -naP -naP -naP -naP -naP -naP -naP -edH -tZR -pNx -qGU -qGU -qGU -iku +ctp +ctp +ctp +ctp +aLM +uHh +uHh +uHh +uHh +uHh +uHh +uHh +cln +jYn +lAw +iuQ +iuQ +iuQ +siC mgp -dto -eMo -rpK +kGb +miv +wec eat -bhg -jBH -jBH -jBH -boB -jBH -jBH -jBH -jBH -jBH -kjW +iZu +qzk +qzk +qzk +ejg +qzk +qzk +qzk +qzk +qzk +fBZ oMB rif csJ @@ -37110,14 +32750,14 @@ vNq vNq vNq kvi -lNj -eLn -eLn -iQm +mxS +cDV +cDV +cBr ncM -qda -qam -xSH +hgk +ugd +jnl wSj vNq icx @@ -37133,16 +32773,16 @@ icx vNq vNq khw -elj -rjq -ubE -isG -tLH -tLH -tLH -nty -wNS -gia +iSp +aPR +vWg +nYC +enL +enL +enL +bmC +iJQ +dlA khw qPK mZu @@ -37155,11 +32795,11 @@ ryS ryS ryS ryS -eXW -tjS -tjS -tjS -mCQ +iBC +huN +huN +huN +utl clZ jTT rPB @@ -37270,40 +32910,40 @@ mci mci mci ikP -rha -vLX -vLX -vLX -voq -sTe -sTe -sTe -sTe -sTe -dqx -sTe -xuS -tZR -pNx -pNx -pNx -pNx -iku +aJI +gVJ +gVJ +gVJ +rRr +mIp +mIp +mIp +mIp +mIp +sVb +mIp +fVw +jYn +lAw +lAw +lAw +lAw +siC mgp -dto -eMo -rpK +kGb +miv +wec mmM -fau -jBH -jBH -jBH -jBH -jBH -jBH -jBH -jBH -jBH +oTl +qzk +qzk +qzk +qzk +qzk +qzk +qzk +qzk +qzk csJ rYM dSv @@ -37346,14 +32986,14 @@ vNq vNq vNq fyc -gxY -eLn -eLn -ayi +uQr +cDV +cDV +oOB ncM -uaO -qam -oxv +sIA +ugd +dqL wSj icx fry @@ -37369,16 +33009,16 @@ icx vNq vNq khw -nZx -kHr -kHr -kHr -kHr -kHr -kHr -abV -kHr -jsG +sGT +jIo +jIo +jIo +jIo +jIo +jIo +xiF +jIo +sER khw khw ryS @@ -37392,10 +33032,10 @@ ryS ryS ryS clZ -tjS -tjS -tjS -vDi +huN +huN +huN +qMW clZ mZu vjj @@ -37506,40 +33146,40 @@ mci mci mci ikP -wID -iYk -aJE -wID +ctp +ybD +sDV +ctp ikP -rrg -vKq -cfS -cfS -cfS -rWf -cfS -cfS -tZR -pNx -pNx -pNx -pNx -iku +ahe +lVF +gEo +gEo +gEo +wZJ +gEo +gEo +jYn +lAw +lAw +lAw +lAw +siC xWk -dto -eMo -rpK +kGb +miv +wec mmM -tZW -jBH -jBH -jBH -jBH -jBH -jBH -jBH -jBH -gmw +cgE +qzk +qzk +qzk +qzk +qzk +qzk +qzk +qzk +xUT csJ rYM dSv @@ -37584,11 +33224,11 @@ wSj fyc ncM ncM -rvx +fNo ncM ncM umS -eZl +bHC umS wSj icx @@ -37605,18 +33245,18 @@ icx vNq vNq khw -aDs -kHr -kHr -kHr -kHr -kHr -kHr -abV -kHr -kHr -tLH -jBI +vEO +jIo +jIo +jIo +jIo +jIo +jIo +xiF +jIo +jIo +enL +hNV ryS ryS ryS @@ -37628,10 +33268,10 @@ pro pro pro clZ -tjS -tjS -tjS -vDi +huN +huN +huN +qMW clZ mZu taG @@ -37742,40 +33382,40 @@ mci mci mci ikP -wID -wID -wID -wID +ctp +ctp +ctp +ctp ikP ikP aBa tDc tDc aBa -uhB +eTF aBa aBa -hsT -pNx -pNx -pNx -pNx -dln +gzI +lAw +lAw +lAw +lAw +hEX xWk -dto -eMo -rpK +kGb +miv +wec eat -uQp -tMM -pZj -tMM -tMM -mHr -cnL -amF -ggS -xzP +dhr +kFA +wkY +kFA +kFA +taC +loL +fSF +drI +cef csJ rYM dSv @@ -37817,15 +33457,15 @@ vNq vNq wSj wSj -npE -yaP +jHb +ayQ umS -wwa -qam -kEY -qam -qam -ddk +ftD +ugd +xzM +ugd +ugd +jyB wSj vNq icx @@ -37841,17 +33481,17 @@ icx vNq vNq khw -aDs -kHr -kHr -uoF -kHr -fsX -uoF -abV -kHr -kHr -kHr +vEO +jIo +jIo +eRo +jIo +lFZ +eRo +xiF +jIo +jIo +jIo khw ryS ryS @@ -37864,10 +33504,10 @@ mZu mZu mZu clZ -tjS -tjS -tjS -tjS +huN +huN +huN +huN clZ mZu xIM @@ -37978,29 +33618,29 @@ mci mci mci ikP -wID -otT -aJE -wID -iqS +ctp +nSw +sDV +ctp +xfK ikP -vjT -wUM -wUM -wUM -ipv -iPv +wEV +faF +faF +faF +pWV +got aBa -vLA -yln -snk -snk -mlo -ilT +gDo +eox +aRV +aRV +nzB +pYa mgp -dto -eMo -rpK +kGb +miv +wec eat eat eat @@ -38052,16 +33692,16 @@ vNq vNq vNq wSj -dIx -qam -qam +kCV +ugd +ugd umS -ssX -qam -qam -qam -qam -cJB +bbT +ugd +ugd +ugd +ugd +nun wSj wSj wSj @@ -38077,18 +33717,18 @@ kiO vNq vNq khw -lYJ -isq -isq -bsO -isq -isq -bsO -dWQ -kHr -kHr -kHr -qBT +qbr +tIY +tIY +bry +tIY +tIY +bry +vhq +jIo +jIo +jIo +ccC ryS ryS ryS @@ -38100,10 +33740,10 @@ mZu mZu mZu clZ -vDi -vDi -tjS -vDi +qMW +qMW +huN +qMW clZ mZu rPB @@ -38214,18 +33854,18 @@ mci mci ikP ikP -wID -wID -wID -wID -iqS +ctp +ctp +ctp +ctp +xfK ikP -vjT -wUM -wUM -cLw -bCK -iPv +wEV +faF +faF +ajH +iFz +got aBa mgp mgp @@ -38234,20 +33874,20 @@ mgp mgp mgp mgp -dto -eMo -ihE -iZn -amr -amr -iUO -cTB -cTB -rMl -wPC -wgI -faZ -tof +kGb +miv +bdJ +rOk +fWo +fWo +fvt +xdF +xdF +dcW +ibr +iHy +btF +jTj lEf rYM dSv @@ -38288,19 +33928,19 @@ tss tss tss tss -jri -qam -qam -fjW -qam -qam -mby -mby -qam -whj +wYf +ugd +ugd +fjm +ugd +ugd +bVU +bVU +ugd +arV fPk -eZG -hBj +hNZ +tIG fPk nZl nZl @@ -38313,18 +33953,18 @@ icx vNq vNq khw -hiO -kHr -kHr -uoF -kHr -kHr -uoF -kHr -kHr -kHr -kHr -qBT +pZs +jIo +jIo +eRo +jIo +jIo +eRo +jIo +jIo +jIo +jIo +ccC ryS ryS ryS @@ -38337,8 +33977,8 @@ mZu mZu clZ clZ -vDi -vDi +qMW +qMW clZ clZ mZu @@ -38449,19 +34089,19 @@ mci mci mci ikP -cnE -wID -otT -aJE -wID -iqS +sCc +ctp +nSw +sDV +ctp +xfK ikP -vjT -wUM -bqE -wUM -wUM -iPv +wEV +faF +cAb +faF +faF +got aBa ukx mhC @@ -38470,20 +34110,20 @@ xua mhC rJv oiA -dto -eMo -rpK +kGb +miv +wec lEf -piT -piT -piT -piT -piT -piT -piT -rAk -piT -omh +qcD +qcD +qcD +qcD +qcD +qcD +qcD +czU +qcD +eSm lEf rYM dSv @@ -38520,24 +34160,24 @@ wef nft tss tss -bdD -kvH -okF +gyF +wsL +cXr sSM -wwa -qam -ret +ftD +ugd +tCm umS -reU -xWa -wAA -pyz -esx -qam -neP -ulX -ulX -neP +dWy +kju +aRe +bLz +skP +ugd +suQ +tdF +tdF +suQ nZl nZl nZl @@ -38549,18 +34189,18 @@ icx vNq vNq khw -aDs -kHr -kHr -uoF -kHr -kHr -uoF -kHr -kHr -kHr -kHr -qBT +vEO +jIo +jIo +eRo +jIo +jIo +eRo +jIo +jIo +jIo +jIo +ccC ryS ryS ryS @@ -38685,15 +34325,15 @@ mci mci mci ikP -cnE -wID -wID -wID -wID -cUj +sCc +ctp +ctp +ctp +ctp +ouk ikP -vjT -iPv +wEV +got aBa aBa aBa @@ -38706,21 +34346,21 @@ mhC mhC rJv oiA -nJr +ujp tuK -cxB +adp lEf -xSA -xSA -eTK -piT -piT -piT -piT -ttI -piT -piT -bdb +jgd +jgd +wGA +qcD +qcD +qcD +qcD +bcO +qcD +qcD +auG oMB rif csJ @@ -38755,24 +34395,24 @@ wef wef nft tss -sgd -nFg -nFg -sLo +ckA +tXr +tXr +dEp sSM -stN -mFu +uOb +edl umS umS -gTc -qam -dBg -dBg -qam -miq +kTO +ugd +isS +isS +ugd +nOi fPk -cnl -rIh +dNL +hbx fPk nZl nZl @@ -38785,18 +34425,18 @@ icx vNq vNq khw -aDs -kHr -kHr -uoF -kHr -kHr -uoF -kHr -kHr -kHr -kHr -qBT +vEO +jIo +jIo +eRo +jIo +jIo +eRo +jIo +jIo +jIo +jIo +ccC ryS ryS ryS @@ -38921,12 +34561,12 @@ mci mci mci ikP -otT -wID -tyH -rkp -wID -waX +nSw +ctp +iJS +hXD +ctp +nkd ikP aBa aBa @@ -38942,20 +34582,20 @@ mhC mhC rtc oiA -dto -eMo -rpK +kGb +miv +wec lEf -vek -vek -mHx -xnr -piT -piT -piT -piT -piT -piT +uhW +uhW +aDm +kTe +qcD +qcD +qcD +qcD +qcD +qcD lEf rYM dSv @@ -38991,21 +34631,21 @@ wef wef nft hDv -vtY -nFg -nFg -aBX +oLd +tXr +tXr +nEJ sSM tol tol umS -nkC -qam -xWa -ahr -dBg -esx -cJB +gqO +ugd +kju +rVa +isS +skP +nun wSj wSj wSj @@ -39021,17 +34661,17 @@ icx vNq vNq khw -aDs -kHr -kHr -uoF -kHr -kHr -uoF -kHr -kHr -kHr -kSL +vEO +jIo +jIo +eRo +jIo +jIo +eRo +jIo +jIo +jIo +rKl khw ryS ryS @@ -39122,9 +34762,9 @@ dit dit dit nwL -lqg -aNB -tiz +glA +wAC +wmd nwL qUi qUi @@ -39157,12 +34797,12 @@ mci mci mci ikP -cgI -wID -wID -wID -wID -jPL +vfP +ctp +ctp +ctp +ctp +hfC ikP oiA pDi @@ -39178,20 +34818,20 @@ mhC mhC rtc oiA -dto -eMo -rpK +kGb +miv +wec lEf lEf lEf lEf lEf -mHx -piT -piT -piT -piT -lvQ +aDm +qcD +qcD +qcD +qcD +xjq lEf jpw aFn @@ -39227,24 +34867,24 @@ wef nft nft hDv -vtY -sul -nFg -nFg +oLd +shY +tXr +tXr sSM -fUM -fUM -qam -mWb -amE -bfl -dmP -dmP -qam -whj +uYg +uYg +ugd +szN +ktv +aiB +xhl +xhl +ugd +arV umS -nQU -nQU +qFt +qFt wSj wSj vNq @@ -39257,17 +34897,17 @@ icx vNq vNq khw -wCt -kHr -kHr -uoF -kHr -kHr -uoF -kHr -kHr -kHr -oLL +bgQ +jIo +jIo +eRo +jIo +jIo +eRo +jIo +jIo +jIo +ydI khw pro rxj @@ -39358,9 +34998,9 @@ dit pDX dit nwL -qJT -tle -tzz +tYU +isi +lnA nwL qUi qUi @@ -39393,12 +35033,12 @@ mci mci mci ikP -otT -sWx -efF -jdz -wID -jPL +nSw +cSA +hNf +kmd +ctp +hfC ikP oiA oiA @@ -39414,20 +35054,20 @@ mhC gIZ gIZ oiA -dto -eMo -rpK +kGb +miv +wec lEf -qwS -ppZ -dQD +ief +hKw +rVw lEf lEf -mHx -hIs -xnr -xnr -ruI +aDm +rUW +kTe +kTe +raJ lEf dSv rYM @@ -39463,25 +35103,25 @@ mqb nft nft tss -kIQ -rNT -rNT -rNT -eLV -qam -qam -qam -qam -isk -qam -qam -qam -qam -qam -axm -sWz -sWz -iRo +aQv +slE +slE +slE +edG +ugd +ugd +ugd +ugd +wvL +ugd +ugd +ugd +ugd +ugd +vnF +ocz +ocz +raU wSj vNq vNq @@ -39493,16 +35133,16 @@ icx vNq vNq khw -wbv -kHr -xLO -uoF -kHr -xLO -uoF -kHr -kHr -jsG +htQ +jIo +nUO +eRo +jIo +nUO +eRo +jIo +jIo +sER khw khw mZu @@ -39594,9 +35234,9 @@ dit pDX dit nwL -qJT -xOx -tzz +tYU +gyx +lnA nwL qUi qUi @@ -39650,19 +35290,19 @@ mhC mhC mhC oiA -dto -eMo -rpK -mmV -xWI -uKY -uKY -dQD +kGb +miv +wec +dNB +uhN +mRa +mRa +rVw lEf lEf lEf lEf -vnf +pXT lEf lEf dSv @@ -39699,25 +35339,25 @@ wef nft nft hDv -xgb -xNv -xNv -xNv +bJR +cxF +cxF +cxF sSM -pby -iPL -jRk -bfl -qam -qam -qam -qam -ggT -pby +pMh +gDX +uOe +aiB +ugd +ugd +ugd +ugd +nKm +pMh umS -qam -qam -iRo +ugd +ugd +raU wSj vNq vNq @@ -39730,15 +35370,15 @@ vNq vNq khw khw -oLL -oLL -oLL -oLL -oLL -oLL -oLL -oLL -oLL +ydI +ydI +ydI +ydI +ydI +ydI +ydI +ydI +ydI khw mZu mZu @@ -39830,9 +35470,9 @@ dit dit dit nwL -fFs -xOx -tzz +pvU +gyx +lnA nwL nwL qUi @@ -39878,22 +35518,22 @@ mhC mhC mhC mhC -gNQ +sDz mhC mhC mhC mhC mhC mhC -gNQ -dto -eMo -rpK +sDz +kGb +miv +wec lEf -jKJ -oLs -uKY -uKY +gmY +pDZ +mRa +mRa lEf hQD eQc @@ -39935,25 +35575,25 @@ wef nft nft hDv -hGQ -xNv -xNv -xNv +jQA +cxF +cxF +cxF sSM oys oys oys -cxo +sAT scN scN scN -cxo +sAT oys oys oys -wwa -qam -wco +ftD +ugd +atP wSj vNq vNq @@ -40066,10 +35706,10 @@ dit dit dit nwL -fFs -xOx -xOx -fua +pvU +gyx +gyx +dCw nwL qUi qUi @@ -40122,9 +35762,9 @@ mhC mhC mhC oiA -dto -eMo -rpK +kGb +miv +wec lEf lEf lEf @@ -40171,10 +35811,10 @@ wef nft nft tss -dHb -xNv -xNv -vcJ +jKL +cxF +cxF +bQR sSM pHS vBb @@ -40187,9 +35827,9 @@ vBb vBb qYi oys -bFs -cJB -qFD +cuY +nun +vJO wSj vNq vNq @@ -40302,10 +35942,10 @@ dit dit dit nwL -tZC -xOx -xOx -wqm +cPQ +gyx +gyx +iqT nwL qUi qUi @@ -40354,13 +35994,13 @@ hmy hmy hmy hmy -nBr +wkf hmy hmy hmy -dto -eMo -rpK +kGb +miv +wec csJ rYM rYM @@ -40408,9 +36048,9 @@ nft nft tss tss -teb -klz -bGh +lKo +uEt +flw sSM aeC vBb @@ -40423,9 +36063,9 @@ vBb vBb woD oys -qam -cJB -oIr +ugd +nun +lzH wSj vNq vNq @@ -40538,10 +36178,10 @@ dit dit dit nwL -sNO -xOx -xOx -xOx +aod +gyx +gyx +gyx nwL qUi qUi @@ -40587,16 +36227,16 @@ mhC mhC mhC hmy -fDU -bFS -bFS -bFS -uMK -kQx +plZ +jau +jau +jau +anV +jMb hmy -dto -eMo -rpK +kGb +miv +wec csJ rYM rYM @@ -40648,19 +36288,19 @@ tss tss tss tss -vIg +rbw vBb vBb -vIg -vIg -vIg -vIg +rbw +rbw +rbw +rbw vBb vBb -vIg +rbw oys -qkw -iRo +aBe +raU wSj wSj vNq @@ -40774,10 +36414,10 @@ dit dit dit nwL -cMo -xOx -xOx -nfz +nsr +gyx +gyx +rEZ nwL qUi qUi @@ -40818,22 +36458,22 @@ mci mci mci oiA -eJE +iDj mhC mhC mhC hmy -qHb -vTb -mwT -mwT -mwT -qzc -qhp -qRN -oSL -pYT -kjW +tsd +qdc +uvX +uvX +uvX +qhb +nZE +trq +kav +dOP +fBZ oMB oMB oMB @@ -40956,8 +36596,8 @@ ptk ptk hEA dWM -hLJ -pWa +weD +cPL dWM pro pro @@ -41010,10 +36650,10 @@ dit dit dit nwL -bhc -xOx -xOx -pCi +kFz +gyx +gyx +xti nwL nwL qUi @@ -41059,16 +36699,16 @@ bXs mhC wxG hmy -mFq -bFS -bFS -bFS -bFS -jqq +fal +jau +jau +jau +jau +hmU hmy -dto -eMo -rpK +kGb +miv +wec csJ rYM rYM @@ -41120,16 +36760,16 @@ vNq vNq vNq aAr -vIg +rbw vBb vBb -vIg -vIg -vIg -vIg +rbw +rbw +rbw +rbw vBb vBb -vIg +rbw aAr icx icx @@ -41193,7 +36833,7 @@ fyk dWM dWM dWM -gJl +idf dWM dWM pro @@ -41246,11 +36886,11 @@ dit dit dit nwL -qJT -xOx -xOx -xOx -vTW +tYU +gyx +gyx +gyx +iSg nwL qUi qUi @@ -41295,19 +36935,19 @@ sCM mhC mhC hmy -wOL -bFS -bFS -dNx +okL +jau +jau +xgG qTF qTF qTF -bCO +wAy qTF -tng +qdW qTF qTF -jqf +gsG qTF qTF qTF @@ -41315,7 +36955,7 @@ qTF rYM rYM tek -kjW +fBZ oMB aFn rYM @@ -41427,10 +37067,10 @@ ptk ptk khT dWM -pWa -jSk -pWa -uLY +cPL +uRt +cPL +eHh dWM qUi pro @@ -41481,12 +37121,12 @@ dit dit dit dit -uBF -qJT -xOx -xOx -xOx -kwi +pJf +tYU +gyx +gyx +gyx +njZ nwL qUi qUi @@ -41531,19 +37171,19 @@ mhC mhC mhC hmy -qje -bFS -mou +slH +jau +sKO qTF qTF -tZa -mhT -mhT -kGj -xLq -mhT -mhT -mhT +onj +cCv +cCv +bmn +mcE +cCv +cCv +cCv qTF nEU nEU @@ -41663,10 +37303,10 @@ wBK ptk khT dWM -yan +rfp dWM -pWa -fqL +cPL +tjo dWM qUi qUi @@ -41718,11 +37358,11 @@ oZr dit dit nwL -wzm -xOx -xOx -xOx -vBk +rit +gyx +gyx +gyx +vLm nwL qUi qUi @@ -41767,20 +37407,20 @@ vzh mgA ajU hmy -qje -bFS -mou +slH +jau +sKO qTF -wkH -hJt -gFj -gFj -gFj -adP -gFj -gFj -gFj -sAs +xjx +srk +pkV +pkV +pkV +oFY +pkV +pkV +pkV +pTZ kxm kxm qTF @@ -41833,7 +37473,7 @@ nZP qav gem vBb -acP +vIb vBb qav nZP @@ -41892,16 +37532,16 @@ ptk wBK dWM dWM -gJl +idf dWM dWM dWM -gJl +idf dWM dWM dWM dWM -gJl +idf dWM eqr eqr @@ -41913,7 +37553,7 @@ eqr eqr eqr eqr -jrM +bII eqr eqr uJt @@ -41954,10 +37594,10 @@ pDX pDX nwL nwL -fiK -aIq -bYF -sKn +oPK +iuW +ajR +hve nwL nwL qUi @@ -42007,15 +37647,15 @@ hmy hmy hmy qTF -wkH -gFj -hJt -gFj -gFj -adP -gFj -gFj -xVT +xjx +pkV +srk +pkV +pkV +oFY +pkV +pkV +uTI qTF kxm kxm @@ -42124,33 +37764,33 @@ ryS ryS dWM dWM -gJl +idf dWM dWM -szW -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -kuL +nEZ +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +bzl eqr -mYX -mYX -rCj -rzS -gKu -rzS -rzS -rzS -rzS -rzS -rzS +qhJ +qhJ +wkq +uAC +nPx +uAC +uAC +uAC +uAC +uAC +uAC eqr eqr pro @@ -42189,12 +37829,12 @@ oZr oZr pDX nwL -cMk -cUk -oop -xxR -cUk -uLb +nDP +gpk +yfG +aZr +gpk +fqt nwL qUi qUi @@ -42237,21 +37877,21 @@ mci mci mci oiA -hsH -hmY -hmY -hmY -nXP +cZM +ixq +ixq +ixq +sQf qTF -rbp -gFj -gFj -uXi -dEc -ukM -gFj -fCp -lcn +vMj +pkV +pkV +pnl +qNU +oUA +pkV +xFT +xFm qTF ojl kxm @@ -42358,36 +37998,36 @@ ryS ryS ryS ryS -mRg -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq -vgq +dEt +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp +dtp eqr -qEK -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -oxt +eGI +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sQl egd ryS ryS @@ -42396,26 +38036,26 @@ ryS ryS ryS ryS -npH -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -tWK -ndf +kLo +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +tGt +srQ oZr fZs fZs @@ -42425,12 +38065,12 @@ pDX oZr oZr nwL -wbZ -cUk -oop -xxR -cUk -lLi +jUU +gpk +yfG +aZr +gpk +wIu nwL qUi qUi @@ -42473,21 +38113,21 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx +aZn qTF -wkH -gFj -gFj -hJt -gFj -adP -kHT -iYP -aSQ +xjx +pkV +pkV +srk +pkV +oFY +fZw +jsl +uON qTF dJK kxm @@ -42594,37 +38234,37 @@ ryS ryS ryS ryS -uKr -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -cNl -dPp -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +gRh +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +pYN +gou +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -42632,7 +38272,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -42651,7 +38291,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -42661,12 +38301,12 @@ oZr pDX oZr nwL -fFi -cUk -oop -xxR -cUk -tMg +eSr +gpk +yfG +aZr +gpk +idz nwL qUi qUi @@ -42709,21 +38349,21 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx +aZn qTF -kNG -gFj -gFj -gFj -gFj -adP -tKq -qgM -kGt +xOI +pkV +pkV +pkV +pkV +oFY +bCh +iwx +lKW qTF kxm kxm @@ -42832,11 +38472,11 @@ ryS ryS dWM dWM -gJl +idf dWM dWM dWM -gJl +idf dWM dWM dWM @@ -42844,23 +38484,23 @@ dWM dWM dWM dWM -cNl -cNl -cNl +pYN +pYN +pYN eqr -ttM -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -tTQ -dqO +sOs +tRr +tRr +tRr +tRr +tRr +tRr +tRr +tRr +tRr +tRr +tRr +pyn ryS ryS ryS @@ -42868,7 +38508,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -42887,7 +38527,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -42897,12 +38537,12 @@ oZr oZr wuH nwL -ukK -cUk -oop -xxR -cUk -kGn +icX +gpk +yfG +aZr +gpk +tCv nwL qUi qUi @@ -42945,21 +38585,21 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx -kbL -gsw -gsw -gsw -gsw -gsw -xzk -tKq -jUL -jUL +aZn +osy +jXt +jXt +jXt +jXt +jXt +swW +bCh +uON +uON qTF kxm kxm @@ -43080,23 +38720,23 @@ ptk ptk wBK dWM -cNl -cNl -dCE +pYN +pYN +arj eqr -dMK -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +pnr +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -43104,7 +38744,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -43123,7 +38763,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -43133,12 +38773,12 @@ oZr oZr wuH nwL -fFi -cUk -oop -xxR -cUk -tMg +eSr +gpk +yfG +aZr +gpk +idz nwL qUi qUi @@ -43181,22 +38821,22 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx -riW -hJt -hJt -hJt -hJt -hJt -sCv -tKq -tee -tee -sAs +aZn +qRF +srk +srk +srk +srk +srk +pmE +bCh +uON +uON +pTZ kxm kxm hiU @@ -43315,24 +38955,24 @@ ptk ptk ptk ptk -jZR -cNl -cNl -dCE +weX +pYN +pYN +arj eqr -tyK -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +kCi +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -43340,7 +38980,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -43359,7 +38999,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -43369,12 +39009,12 @@ tmN fZs oZr nwL -gQY -cUk -oop -xxR -cUk -rrU +eTh +gpk +yfG +aZr +gpk +cux nwL qUi qUi @@ -43417,21 +39057,21 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx +aZn qTF -eZF -uwA -uwA -uwA -uwA -ylQ -dwa -eLo -qiu +xVb +fYq +fYq +fYq +fYq +jfQ +twK +iwx +uON qTF kxm aHu @@ -43552,23 +39192,23 @@ ptk ptk eJP dWM -cdA -cNl +kpz +pYN cax eqr -aVG -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +nBj +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -43576,7 +39216,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -43595,7 +39235,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -43605,12 +39245,12 @@ tmN fZs oZr nwL -kPE -cUk -oop -xxR -cUk -wTa +wpb +gpk +yfG +aZr +gpk +mfe nwL qUi qUi @@ -43653,27 +39293,27 @@ mci mci mci oiA -pbm +oRu uhr uhr uhr -qQx +aZn qTF -wkH -uwA -uwA -gsw -uwA -ylQ -bPP -niT -qiu +xjx +fYq +fYq +jXt +fYq +jfQ +pfy +cNF +uON qTF msE sLk kxm kxm -fMj +dqW rif rYM qsi @@ -43792,19 +39432,19 @@ cax cax cax eqr -kFf -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +qCg +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -43812,7 +39452,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -43831,7 +39471,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -43889,21 +39529,21 @@ mci mci mci oiA -iek -eDv -eDv -eDv -mIW +mhs +hNd +hNd +hNd +qUP qTF -rbp -uwA -uwA -pIl -nvT -bjS -uwA -knE -qmM +vMj +fYq +fYq +gqe +kmq +eeY +fYq +oCM +azF qTF msE sLk @@ -44024,23 +39664,23 @@ bcm ptk vIZ cax -sFC -vrb -ijk +gHh +uAE +pja eqr -ngt -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +qjz +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -44048,7 +39688,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -44067,7 +39707,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -44131,15 +39771,15 @@ lXe lXe lXe qTF -wkH -uwA -gsw -uwA -uwA -ylQ -uwA -uwA -xCa +xjx +fYq +jXt +fYq +fYq +jfQ +fYq +fYq +aHt qTF kxm sLk @@ -44260,23 +39900,23 @@ muX khT cax cax -ejB -ejB -xDH +nLH +nLH +qqZ xff -ngt -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +qjz +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -44284,7 +39924,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -44303,7 +39943,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -44363,20 +40003,20 @@ tiO dVs dVs wJZ -vpd -bYy -kRt +iUt +uKw +jae qTF -wkH -gsw -uwA -uwA -uwA -pRL -eFs -eFs -eFs -xuI +xjx +jXt +fYq +fYq +fYq +wpo +rQO +rQO +rQO +gVI lGa ogA qTF @@ -44495,24 +40135,24 @@ dWM dWM dWM eqr -jSs -ejB -ejB -xDH +hCP +nLH +nLH +qqZ xff -ngt -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +qjz +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -44520,7 +40160,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -44539,7 +40179,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -44599,19 +40239,19 @@ jro dVs dVs wJZ -qxY -qxY -hum +nsp +nsp +tOd qTF qTF -wOf -bxE -bxE -vms -pTq -bxE -xrn -lLk +xSp +awE +awE +vRJ +ftL +awE +atr +tyw qTF kxm boi @@ -44731,24 +40371,24 @@ qUi qUi qUi eqr -rym -ejB -ejB -xDH +jPl +nLH +nLH +qqZ vhK -ttM -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -kgx -dqO +sOs +vgS +vgS +vgS +vgS +vgS +vgS +vgS +vgS +vgS +vgS +vgS +pyn ryS ryS ryS @@ -44756,7 +40396,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -44775,7 +40415,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -44834,17 +40474,17 @@ wJZ wJZ dVs dVs -byx -rgV -qxY -cYC -kRt +cXG +evb +nsp +ldA +jae qTF qTF qTF -xhu +gBu qTF -lQH +tYV qTF qTF qTF @@ -44967,24 +40607,24 @@ qUi qUi qUi eqr -lAv -ejB -ejB -xDH -ljD -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -dqO +dOR +nLH +nLH +qqZ +nXV +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +pyn ryS ryS ryS @@ -44992,7 +40632,7 @@ ryS ryS ryS ryS -pJV +nzz oHC oHC oHC @@ -45011,7 +40651,7 @@ oHC oHC oHC oHC -aBM +nvV oZr fZs fZs @@ -45071,16 +40711,16 @@ qzM dVs dVs wJZ -mfS -qxY -qxY -cYC -bYy -kRt +jZA +nsp +nsp +ldA +uKw +jae vwq -oec -lnu -tXH +sYV +bjh +wSN dbX ogx xkK @@ -45203,23 +40843,23 @@ bTz bTz qUi eqr -ejB -ejB -ejB -rzf +nLH +nLH +nLH +vCb vhK -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -ttM -rpa +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +sOs +bqH egd ryS ryS @@ -45228,26 +40868,26 @@ ryS ryS ryS ryS -ojd -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -duZ -iRJ +wvu +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +aNp +djD oZr fZs fZs @@ -45307,17 +40947,17 @@ wJZ izP dVs wJZ -gwv -qxY -vwK -qxY -qxY -hum +uwS +nsp +qor +nsp +nsp +tOd vwq -oec -lnu -tXH -vmI +sYV +bjh +wSN +fGJ oMB oMB oMB @@ -45439,22 +41079,22 @@ bTz bTz qUi eqr -dft -xLz -bDf -xYq +rCa +vfs +dhX +iuH xff -aKj -xmL -czp -oDu -qAQ -ptu -qAQ -qAQ -voW -voW -pnW +lUz +esL +oMC +mLo +dJP +fOw +dJP +dJP +upy +upy +epX eqr eqr mZu @@ -45543,16 +41183,16 @@ wJZ dVs dVs wJZ -dYr -qxY -eEA -qxY -qxY -cYC +qem +nsp +bJj +nsp +nsp +ldA dbX -oec -lnu -jEW +sYV +bjh +vsa dbX rYM rYM @@ -45687,7 +41327,7 @@ eqr eqr eqr eqr -gZE +eZT eqr eqr eqr @@ -45779,23 +41419,23 @@ lcO dVs dVs wJZ -gwv -qxY -xBB -knr -knr -tSK -fLL -peZ -gbv -lDk +uwS +nsp +rHu +sRF +sRF +xGV +hCV +wXJ +hIY +ewo lXe lXe lXe lXe lXe lXe -fMm +uQH lXe rYM rYM @@ -45911,22 +41551,22 @@ qUi qUi qUi bVe -sQA -gxf -mgn -gxf -gxf -gxf -gxf -gxf -gxf -gxf -mgn -gxf -gxf -gxf -cvK -cNy +kAu +hXY +qRM +hXY +hXY +hXY +hXY +hXY +hXY +hXY +qRM +hXY +hXY +hXY +rwo +aqG bVe bVe mZu @@ -46015,23 +41655,23 @@ tiO dVs dVs wJZ -gwv -qxY -qxY -qxY -qxY -ckH +uwS +nsp +nsp +nsp +nsp +wRR dbX -oec -lnu -tXH +sYV +bjh +wSN lXe -knY -knY +jmG +jmG lXe -tFb -tFb -tFb +mnX +mnX +mnX lXe wPu wPu @@ -46147,51 +41787,51 @@ qUi qUi qUi bVe -kaE -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -laC +jkQ +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +azC dUf ryS ryS ryS ryS -tyX -bGB -hdX -kWQ -nJX -bGB -hdX -kWQ -nJX -bGB -hdX -kWQ -nJX -bGB -hdX -kWQ -nJX -bGB -hdX -kWQ -nJX -bGB -geO +dmW +akS +fne +uZV +iIm +akS +fne +uZV +iIm +akS +fne +uZV +iIm +akS +fne +uZV +iIm +akS +fne +uZV +iIm +akS +agW oZr fZs fZs @@ -46251,23 +41891,23 @@ tiO dVs dVs wJZ -dVC -sRQ -qXs -qXs -qXs -xdb +ibE +lol +xKu +xKu +xKu +xLX dbX -oCX -lnu -nEG -bEJ -hSn -hSn -hSn -hSn -qwR -hvx +vjB +bjh +elb +czK +aml +aml +aml +aml +wOQ +kyN lXe tDf nlv @@ -46383,29 +42023,29 @@ nAs nAs qUi bVe -sKL -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -nbb -aSE -ryS -ryS -ryS -ryS -dET +dZE +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +evz +hyb +ryS +ryS +ryS +ryS +oMq lMS lMS lMS @@ -46427,7 +42067,7 @@ lMS lMS lMS lMS -uLk +mWu oZr fZs fZs @@ -46494,16 +42134,16 @@ wJZ wJZ wJZ wJZ -oec -lnu -tXH +sYV +bjh +wSN lXe -tFb -tFb -tFb -tFb -tFb -tFb +mnX +mnX +mnX +mnX +mnX +mnX lXe fVL oLV @@ -46577,10 +42217,10 @@ kDa chz chz chz -xap +axQ chz chz -aQT +end kKY kKY kKY @@ -46604,44 +42244,44 @@ mZu mZu nAs nAs -wmt -hze -wmt -xHi -wmt -hze -wmt -bCq +wer +iNh +wer +lrL +wer +iNh +wer +hNl gxe -hXh -bCq -tEn +kTv +hNl +ood nAs nAs bVe -lLe -gOP -gOP -gOP -gOP -gOP -gOP -kxt +eHH +jrD +jrD +jrD +jrD +jrD +jrD +liP gGV vrn -gOP -gOP -gOP -gOP -gOP -gOP -gOP -qkp +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jHu ryS ryS ryS ryS -ozg +rXK lMS lMS lMS @@ -46663,7 +42303,7 @@ lMS opJ lMS lMS -cKi +xwV oZr res fZs @@ -46730,15 +42370,15 @@ dVs dVs dVs wJZ -pqc -lnu -tXH +rCx +bjh +wSN lXe -vds +wZn lXe -vds +wZn lXe -vds +wZn lXe lXe hMm @@ -46753,7 +42393,7 @@ iTn sdq hMm wPu -xEk +pJW sdq iTn iTn @@ -46807,19 +42447,19 @@ kKY psH kDa kDa -vqb +pfA kDa kDa chz -lqs -vOi -wSC -wSC +dXH +slC +ppy +ppy chz -ejr -ejr -ejr -aAx +hXl +hXl +hXl +gRY mLf yga kKY @@ -46839,45 +42479,45 @@ mZu mZu mZu nAs -iKg -hze -hze -hze -hze -hze -hze -hze -bCq +pbO +iNh +iNh +iNh +iNh +iNh +iNh +iNh +hNl gxe -hXh -bCq -bCq -bWI +kTv +hNl +hNl +oIz oQb -sip -lLe -gOP -gOP -gOP -gOP -gOP -kxt -qWU -xpP -jsp -gOP -gOP -gOP -gOP -gOP -gOP -gOP -qkp -ryS -ryS -ryS -ryS -nHk +xEy +eHH +jrD +jrD +jrD +jrD +jrD +liP +bBw +oxg +eOh +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jHu +ryS +ryS +ryS +ryS +lvq lMS lMS lMS @@ -46899,7 +42539,7 @@ lMS lMS lMS lMS -iyB +ufd oZr res res @@ -46956,7 +42596,7 @@ mci mci mci wJZ -tRF +urj dVs dVs dVs @@ -46965,16 +42605,16 @@ dVs dVs dVs dVs -byx -oec -lnu -tXH +cXG +sYV +bjh +wSN lXe -aTJ +bYo lXe -aTJ +bYo lXe -aTJ +bYo lXe oaC iTn @@ -47049,12 +42689,12 @@ kDa chz chz chz -wSC -vzl +ppy +oiF chz -ejr -ejr -ejr +hXl +hXl +hXl izq wSd wdU @@ -47075,26 +42715,26 @@ mZu mZu nAs nAs -iKg -wmt -hze -wmt -hze -wmt -hze -wmt -bCq +pbO +wer +iNh +wer +iNh +wer +iNh +wer +hNl oQb oQb -snF -bCq -bCq +jtd +hNl +hNl oQb -qop -lLe -gOP -gOP -kxt +kkL +eHH +jrD +jrD +liP gGV vNF bqq @@ -47102,18 +42742,18 @@ gGV gGV gGV vrn -vfd +hJr szz -nJF -gOP -mfh -pER -qkp +nUU +jrD +rmj +cUA +jHu ryS ryS ryS ryS -lzr +rey lMS lMS lMS @@ -47135,7 +42775,7 @@ lMS lMS lMS lMS -gtL +rEQ oZr fZs res @@ -47193,7 +42833,7 @@ mci mci sqV sqV -gGj +lyA sqV sqV sqV @@ -47202,9 +42842,9 @@ wJZ dVs wXg wJZ -oec -lnu -tXH +sYV +bjh +wSN lXe lXe lXe @@ -47214,19 +42854,19 @@ lXe lXe wPu wPu -hCk +cET wPu wPu wPu -mNB +hra wPu wPu wPu -hCk +cET wPu wPu wPu -hCk +cET wPu wPu fFK @@ -47283,14 +42923,14 @@ izq kDa eAO chz -tsM -vOi -qrz -gSH +qsy +slC +kop +bed chz -ejr -ejr -ejr +hXl +hXl +hXl izq izq izq @@ -47310,46 +42950,46 @@ mZu mZu mZu gxe -lDU -iKg -hze -hze -hze -hze -hze -hze -hze -bCq -wUK +sNo +pbO +iNh +iNh +iNh +iNh +iNh +iNh +iNh +hNl +sOH oQb -snF -bCq -bCq +jtd +hNl +hNl oQb -oVO -lLe -gOP -kxt -tVx -fJN +wyp +eHH +jrD +liP +glv +hRM rlC -fCy -iEh -iEh -iEh -fCy -eDM -iEh -nUh -nJF +xlb +jBP +jBP +jBP +xlb +dKy +jBP +btR +nUU ffV -gOP -qkp +jrD +jHu ryS ryS ryS ryS -dET +oMq lMS lMS lMS @@ -47371,7 +43011,7 @@ lMS lMS lMS lMS -uLk +mWu oZr fZs res @@ -47433,37 +43073,37 @@ bEz fUj fUj sqV -gGj +lyA wJZ wJZ wJZ wJZ -stW +eOL sqV -lvp +tiI sqV ppO sqV -jmv -qvc -qvc -qvc -sLG -qvc -oTb -tLA -qvc -oec -lSE -qvc -qvc -qvc -oTb -qvc -qvc -oec -oTb -aJS +tHQ +nDZ +nDZ +nDZ +sru +nDZ +ipd +aED +nDZ +sYV +gYe +nDZ +nDZ +nDZ +ipd +nDZ +nDZ +sYV +ipd +pcO wPu wPu hMm @@ -47521,13 +43161,13 @@ kDa chz chz chz -wSC -wSC -vOi -ejr -ejr -ejr -aAx +ppy +ppy +slC +hXl +hXl +hXl +gRY mLf yga kKY @@ -47546,46 +43186,46 @@ mZu mZu mZu gxe -spp -hze -wmt -hze -wmt -hze -wmt -hze -wmt -hze -bCq -rrG -snF -bCq -qHK +tQQ +iNh +wer +iNh +wer +iNh +wer +iNh +wer +iNh +hNl +wlB +jtd +hNl +tpJ oQb -bmF -cYa -gOP +krm +pqa +jrD cuX -hNt -cdd -vfd -eDM -eDM -eDM -eDM -eDM -eDM -eDM -eDM +koc +nHm +hJr +dKy +dKy +dKy +dKy +dKy +dKy +dKy +dKy wmD jua -gOP -qkp +jrD +jHu ryS ryS ryS ryS -ozg +rXK lMS lMS lMS @@ -47607,7 +43247,7 @@ lMS lMS lMS lMS -cKi +xwV oZr fZs res @@ -47679,28 +43319,28 @@ aLw mnf gro aLw -flg -mbD -mbD -rMh -mbD -eIz -mbD -eIz -mbD -rMh -mbD -mbD -mbD -mbD -mbD -eIz -mbD -mbD -rMh -fEY -pbH -oGz +bWC +eBF +eBF +qlr +eBF +wLG +eBF +wLG +eBF +qlr +eBF +eBF +eBF +eBF +eBF +wLG +eBF +eBF +qlr +bEi +ito +qFX wPu iTn iTn @@ -47755,14 +43395,14 @@ kDa kDa kDa chz -cvk -vOi -wSC -wSC +foq +slC +ppy +ppy chz -ejr -ejr -ejr +hXl +hXl +hXl izq wSd wdU @@ -47782,46 +43422,46 @@ mZu mZu mZu nAs -rYP -hze -hze -hze -hze -hze -hze -hze -hze -hze -bCq +nVs +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +hNl oQb -hOC -tDU +gcV +lcT oQb oQb exB -jkj -gOP -xTZ -dLe -fJN +mVn +jrD +gnb +dcY +hRM ffV -cqY -pFk -pFk -pFk -cqY -eDM -pFk -kYs -ucX +pSo +sAx +sAx +sAx +pSo +dKy +sAx +qCG +qgL rlC -gOP -qkp +jrD +jHu ryS ryS ryS ryS -nHk +lvq lMS lMS lMS @@ -47843,7 +43483,7 @@ lMS lMS lMS lMS -iyB +ufd oZr fZs qUi @@ -47904,7 +43544,7 @@ qtF bEz bEz bEz -pwZ +tCg bEz xSJ bEz @@ -47916,27 +43556,27 @@ bEz bEz bEz sqV -lnu -qEx -oTb -xwg -pzq -lnu -lnu -lSE -hvc -lSE -lnu -lnu -lnu -pzq -lnu -lnu -qEx -oTb -xwg -lnu -lrK +bjh +she +ipd +awr +pxQ +bjh +bjh +gYe +bSl +gYe +bjh +bjh +bjh +pxQ +bjh +bjh +she +ipd +awr +bjh +wLn wPu dCg tDf @@ -47993,12 +43633,12 @@ dRs chz chz chz -nXo -wSC +avb +ppy chz -ejr -ejr -ejr +hXl +hXl +hXl izq izq izq @@ -48018,27 +43658,27 @@ mZu mZu mZu gxe -iKg -hze -wmt -hze -wmt -hze -wmt -hze -wmt -hze -bCq +pbO +iNh +wer +iNh +wer +iNh +wer +iNh +wer +iNh +hNl oQb oQb oQb oQb -kng +sBy hMt -jkj -gOP -gOP -xTZ +mVn +jrD +jrD +gnb gGV bqq vNF @@ -48046,18 +43686,18 @@ gGV gGV gGV vrn -vfd +hJr szz -ucX -gOP -iDk -dyq -qkp +qgL +jrD +jWB +auX +jHu ryS ryS ryS ryS -lzr +rey lMS lMS lMS @@ -48079,7 +43719,7 @@ lMS lMS lMS lMS -gtL +rEQ oZr fZs qUi @@ -48154,14 +43794,14 @@ bEz wPu wPu wPu -hCk +cET wPu wPu wPu wPu -qzq -hvc -rBj +vmk +bSl +wBI wPu wPu wPu @@ -48169,7 +43809,7 @@ wPu wPu wPu wPu -hCk +cET wPu wPu wPu @@ -48198,19 +43838,19 @@ nft vNq vNq kKY -xNm -aaK -jtQ -urd +pnV +bVI +tAz +wIX izq izq izq -fyY +ptU izq izq -lIX -qIa -wyu +dhc +iyi +lWx izq kDa kDa @@ -48220,22 +43860,22 @@ kDa kDa izq izq -fyY +ptU izq izq izq izq izq chz -cKw -mnC -wSC +dcy +qkr +ppy chz chz -ejr -ejr -ejr -aAx +hXl +hXl +hXl +gRY qJj yga kKY @@ -48254,46 +43894,46 @@ pro pro pro gxe -txi -hze -hze -hze -hze -hze -hze -hze -hze -hze -bCq -fcc +mcW +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +hNl +nXY oQb -aFS -lAT -xEZ +nMW +gTX +qKo hMt -jkj -gOP -gOP -gOP -gOP -gOP -xTZ -pRF -xpP -qHp -gOP -gOP -gOP -gOP -gOP -gOP -gOP -qkp -ryS -ryS -ryS -ryS -dET +mVn +jrD +jrD +jrD +jrD +jrD +gnb +qDx +oxg +vPU +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jHu +ryS +ryS +ryS +ryS +oMq lMS lMS lMS @@ -48315,7 +43955,7 @@ lMS lMS lMS lMS -uLk +mWu oZr fZs qUi @@ -48395,9 +44035,9 @@ iTn iTn lBO wPu -pbH -hvc -rBj +ito +bSl +wBI wPu tDf wsF @@ -48434,19 +44074,19 @@ nft vNq vNq kKY -pRr -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -wdB +sWC +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pHo izq kDa kDa @@ -48455,22 +44095,22 @@ kDa kDa izq izq -rnF -bQO -tSy -kjQ -aGi -pYA -guo +ePv +lcB +xdT +xjX +voQ +reo +upC chz chz chz chz chz -sGQ -ejr -ejr -ejr +pGB +hXl +hXl +hXl izq wSd wdU @@ -48491,45 +44131,45 @@ ryS ryS nAs nAs -iKg -wmt -hze -wmt -hze -wmt -hze -wmt -hze -bCq -fcc +pbO +wer +iNh +wer +iNh +wer +iNh +wer +iNh +hNl +nXY oQb -jZv -xFl -xEZ +ghi +kMK +qKo exB -jkj -gOP -gOP -gOP -gOP -gOP -gOP -xTZ +mVn +jrD +jrD +jrD +jrD +jrD +jrD +gnb gGV vrn -gOP -gOP -gOP -gOP -gOP -gOP -gOP -qkp +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jHu ryS ryS ryS ryS -ozg +rXK lMS lMS lMS @@ -48551,7 +44191,7 @@ lMS opJ lMS lMS -cKi +xwV oZr fZs qUi @@ -48631,9 +44271,9 @@ iTn iTn eNo wPu -pbH -hvc -rBj +ito +bSl +wBI wPu hyO rCI @@ -48670,7 +44310,7 @@ nft jyL jyL kKY -bzi +coH rNh rNh rNh @@ -48682,7 +44322,7 @@ rNh rNh rNh rNh -emA +mcN izq psH nLR @@ -48690,23 +44330,23 @@ nLR kDa kDa izq -izE -bQO -bQO -bQO -bQO -bQO -bQO -aTd +fBT +lcB +lcB +lcB +lcB +lcB +lcB +kue izq yga mLf -aAx -ejr -ejr -ejr -ejr -ejr +gRY +hXl +hXl +hXl +hXl +hXl izq izq izq @@ -48725,47 +44365,47 @@ ryS ryS ryS ryS -jrF -bCq -bCq -bCq -bCq -bCq -bCq -bCq -bCq -bCq -bCq -bCq -sLY +dbZ +hNl +hNl +hNl +hNl +hNl +hNl +hNl +hNl +hNl +hNl +hNl +rvU oQb -oBi -xFl -xEZ -lmW -gOP -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -lzC -qkp -ryS -ryS -ryS -ryS -nHk +wQt +kMK +qKo +grG +jrD +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +wpc +jHu +ryS +ryS +ryS +ryS +lvq lMS lMS lMS @@ -48787,7 +44427,7 @@ lMS lMS lMS lMS -iyB +ufd cTd fZs qUi @@ -48858,7 +44498,7 @@ bEz bHk bHk bHk -vcY +feH wPu eyO iTn @@ -48867,9 +44507,9 @@ oLV iTn hMm wPu -pbH -hvc -rBj +ito +bSl +wBI wPu lBO iTn @@ -48906,7 +44546,7 @@ jyL qUi qUi kKY -iuM +gNL mLf mLf mLf @@ -48918,7 +44558,7 @@ mLf mLf mLf mLf -vbT +sIK izq kDa lIu @@ -48926,24 +44566,24 @@ nLR kDa kDa izq -kqK -bQO -bQO -bQO -bQO -bQO -bQO -xhV +sUE +lcB +lcB +lcB +lcB +lcB +lcB +bOs izq wdU wSd izq -ejr -ejr -ejr -ejr -ejr -aAx +hXl +hXl +hXl +hXl +hXl +gRY mLf yga kKY @@ -48961,69 +44601,69 @@ ryS ryS ryS ryS -snC -lpK -lpK -lpK -lpK -lpK -lpK -lpK -lpK -lpK -lpK -lpK -fDu +sSi +vdS +vdS +vdS +vdS +vdS +vdS +vdS +vdS +vdS +vdS +vdS +sRM oQb -xrd -xFl -xEZ +dwW +kMK +qKo exB -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -gOP -uNx +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +jrD +oeS dUf ryS ryS ryS ryS -cCB -ten -sbB -mLY -mkm -ten -sbB -mLY -mkm -ten -sbB -mLY -mkm -ten -sbB -mLY -mkm -ten -sbB -mLY -mkm -ten -bGw +aJv +fGW +nMQ +rpL +lSA +fGW +nMQ +rpL +lSA +fGW +nMQ +rpL +lSA +fGW +nMQ +rpL +lSA +fGW +nMQ +rpL +lSA +fGW +hun oZr fZs bMb @@ -49103,9 +44743,9 @@ bAl iTn dCg wPu -pbH -hvc -rBj +ito +bSl +wBI wPu wPu wPu @@ -49142,7 +44782,7 @@ qUi qUi qUi kKY -iuM +gNL mLf mLf mLf @@ -49154,7 +44794,7 @@ mLf mLf mLf mLf -vbT +sIK izq kDa kDa @@ -49162,23 +44802,23 @@ nLR kDa kDa izq -kqK -bQO -bUA -xhV -bQO -bQO -bQO -xhV +sUE +lcB +siL +bOs +lcB +lcB +lcB +bOs izq izq izq izq -pSP -ejr -ejr -ejr -ejr +onF +hXl +hXl +hXl +hXl izq wSd wdU @@ -49199,38 +44839,38 @@ ryS ryS nAs nAs -ifH -sMu -hze -sMu -hze -sMu -hze -sMu -hze -lpK -bGn +fSU +hwn +iNh +hwn +iNh +hwn +iNh +hwn +iNh +vdS +daU oQb -juv -xFl -xEZ +bBg +kMK +qKo hMt -lak -nVJ -uJi -nVJ -nVJ -nVJ -nVJ -nVJ -nVJ -nVJ -uJi -nVJ -nVJ -qIF -qIF -paK +qfz +dMs +yfx +dMs +dMs +dMs +dMs +dMs +dMs +dMs +yfx +dMs +dMs +jFj +jFj +aQP bVe bVe mZu @@ -49329,7 +44969,7 @@ kFl sqV sqV sqV -stW +eOL sqV wPu wPu @@ -49339,9 +44979,9 @@ wPu wPu wPu wPu -rGs -hvc -rBj +lRP +bSl +wBI wPu tDf ndp @@ -49378,7 +45018,7 @@ qUi qUi qUi kKY -iuM +gNL tYy mLf mLf @@ -49390,31 +45030,31 @@ mLf mLf mLf yfW -vbT +sIK izq kDa kDa nLR izq -fyY +ptU izq izq izq izq izq izq -onq +vQi izq izq izq yga mLf -aAx -ejr -ejr -ejr -ejr -ejr +gRY +hXl +hXl +hXl +hXl +hXl izq izq izq @@ -49434,22 +45074,22 @@ pro pro pro gxe -qBh -hze -hze -hze -hze -hze -hze -hze -hze -hze -lpK -bGn +mgL +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +vdS +daU oQb -nuh -xFl -xEZ +sVD +kMK +qKo bVe bVe bVe @@ -49465,7 +45105,7 @@ bVe bVe bVe bVe -xUp +gvd bVe bVe fUW @@ -49563,10 +45203,10 @@ sqV ohE ohE sqV -rOJ -tph -bSv -dbb +iKL +iam +xBg +qFc wPu oaC iTn @@ -49575,9 +45215,9 @@ hoA tDf brz wPu -pbH -hvc -rBj +ito +bSl +wBI wPu iTn iTn @@ -49614,7 +45254,7 @@ qUi qUi qUi kKY -iuM +gNL mLf mLf mLf @@ -49626,32 +45266,32 @@ mLf mLf mLf mLf -vbT +sIK izq kDa kDa izq izq -bQO -bQO -bQO -mBa +lcB +lcB +lcB +vfQ izq -ibz -qWx -qWx -qWx -wJa +gdd +tfs +tfs +tfs +vDX izq wdU wSd izq -tbU -ejr -ejr -ejr -ejr -aAx +fNm +hXl +hXl +hXl +hXl +gRY qJj yga kKY @@ -49670,22 +45310,22 @@ mZu mZu mZu gxe -ifH -hze -sMu -hze -sMu -hze -sMu -hze -sMu -hze -lpK +fSU +iNh +hwn +iNh +hwn +iNh +hwn +iNh +hwn +iNh +vdS oQb oQb oQb oQb -jDK +eFZ bVe qUi qUi @@ -49796,13 +45436,13 @@ sqV pXI bzq sqV -xAX -bSv -bSv -bSv -bSv -bSv -tSV +eEE +xBg +xBg +xBg +xBg +xBg +niZ wPu aLX iTn @@ -49811,9 +45451,9 @@ iTn iTn iTn wPu -oec -hvc -tLA +sYV +bSl +aED wPu iTn iTn @@ -49850,7 +45490,7 @@ qUi qUi qUi kKY -iuM +gNL mLf mLf mLf @@ -49862,30 +45502,30 @@ mLf mLf mLf mLf -vbT +sIK izq kDa kDa izq -oXQ -bQO -bQO -xhV +grE +lcB +lcB +bOs izq izq -tmE -qWx -qWx -qWx -wJa +wEm +tfs +tfs +tfs +vDX izq izq izq izq izq -onq +vQi tbm -onq +vQi izq izq wSd @@ -49906,20 +45546,20 @@ mZu mZu mZu nAs -qmQ -hze -hze -hze -hze -hze -hze -hze -hze -hze -lpK +shL +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +vdS oQb -pPw -pVu +cpi +dAH oQb nAs bVe @@ -50032,13 +45672,13 @@ sqV pXI gEj sqV -xAX -kJI -bSv -bSv -bSv -kJI -gTP +eEE +sSq +xBg +xBg +xBg +sSq +hUs wPu tDf iTn @@ -50046,11 +45686,11 @@ opc gAC gAC gAC -ohw -gfc -fDt -gfc -ohw +bAF +frE +lhM +frE +bAF gAC gAC gAC @@ -50086,7 +45726,7 @@ qUi qUi qUi kKY -bzi +coH gFy gFy gFy @@ -50098,31 +45738,31 @@ gFy gFy gFy gFy -emA +mcN izq kDa kDa izq -oXQ -bQO -bQO -qNi +grE +lcB +lcB +cZn izq -qWx -qWx -qWx -qWx -qWx -qWx -qWx -qWx -fVI +tfs +tfs +tfs +tfs +tfs +tfs +tfs +tfs +gFD izq -hNu -cIB -cIB -cIB -oHJ +pKT +beK +beK +beK +hCx izq izq kKY @@ -50142,21 +45782,21 @@ mZu fUW mZu gxe -hEP -hze -sMu -hze -sMu -hze -sMu -hze -sMu -hze -lpK -rrG -snF -lpK -ocm +xek +iNh +hwn +iNh +hwn +iNh +hwn +iNh +hwn +iNh +vdS +wlB +jtd +vdS +gJK nAs rhA rhA @@ -50283,9 +45923,9 @@ iTn iTn iTn wPu -qEx -hvc -xwg +she +bSl +awr wPu vUI iTn @@ -50322,45 +45962,45 @@ kKY kKY kKY kKY -pRr -ePH -ePH -ePH -ePH -ePH -ePH -ePH -ePH -ePH -ePH -ePH -wdB +sWC +tzk +tzk +tzk +tzk +tzk +tzk +tzk +tzk +tzk +tzk +tzk +pHo izq kDa kDa izq -kiu -bQO -bQO -bQO -odv -qWx -qWx -qWx -iMq -quF -qQM -quF -qWx -ifQ +okr +lcB +lcB +lcB +non +tfs +tfs +tfs +lKe +fbY +vsu +fbY +tfs +sey tbm -okW -upl -upl -upl -xfw -grq -hcn +vQE +qGC +qGC +qGC +gfA +pEE +sWi kKY mZu mZu @@ -50378,21 +46018,21 @@ mZu mZu mZu gxe -aXf -hze -hze -hze -hze -hze -hze -hze -hze -lpK -qOt +qTf +iNh +iNh +iNh +iNh +iNh +iNh +iNh +iNh +vdS +wOq oQb -snF -lpK -cEr +jtd +vdS +qSl nAs rhA rhA @@ -50519,9 +46159,9 @@ iTn iTn bAl wPu -pbH -hvc -rBj +ito +bSl +wBI wPu lBO tDf @@ -50552,51 +46192,51 @@ qUi qUi qUi kKY -pWq -xvL -xvL -xvL -fLz +ltM +iMo +iMo +iMo +aAw kKY -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -eDq -bTo +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +pyw +mZi izq kDa kDa izq -kiu -bQO -xhV -tSy +okr +lcB +bOs +xdT izq -pbX -qWx -ktt -quF -ubD -ubD -ubD -qWx -vPy +rik +tfs +jBc +fbY +vnZ +vnZ +vnZ +tfs +fMn tbm -okW -gib -gib -jbg -xfw -xfw -guf +vQE +abu +abu +fPy +gfA +gfA +oNX kKY mZu mZu @@ -50615,20 +46255,20 @@ mZu mZu nAs nAs -ifH -sMu -hze -sMu -hze -sMu -hze -sMu -lpK +fSU +hwn +iNh +hwn +iNh +hwn +iNh +hwn +vdS oQb oQb -snF -lpK -cEr +jtd +vdS +qSl nAs rhA rhA @@ -50755,9 +46395,9 @@ hMm wCv tDf wPu -pbH -hvc -rBj +ito +bSl +wBI wPu wPu wPu @@ -50788,27 +46428,27 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf +wLy kKY izq izq tbm izq -vcg -xAv +wBv +lfM tbm tbm -vcg -xAv +wBv +lfM izq tbm izq izq -fyY +ptU izq izq izq @@ -50817,21 +46457,21 @@ izq izq izq izq -jHA -quF -ubD -qWx -aWW -qWx -qWx +qEu +fbY +vnZ +tfs +ybj +tfs +tfs fMq izq -okW -bdF -bdF -bdF -xfw -xfw +vQE +fQD +fQD +fQD +gfA +gfA kKY kKY tbm @@ -50851,20 +46491,20 @@ mZu mZu mZu nAs -ifH -hze -hze -hze -hze -hze -hze -hze -lpK +fSU +iNh +iNh +iNh +iNh +iNh +iNh +iNh +vdS gxe -oTo -lpK -lpK -cEr +syp +vdS +vdS +qSl nAs rhA rhA @@ -50924,7 +46564,7 @@ qUi qUi lsI lsI -jDv +pKf lsI lsI oIt @@ -50991,9 +46631,9 @@ wPu wPu wPu wPu -xlr -hvc -rBj +lkJ +bSl +wBI wPu hoA tDf @@ -51024,55 +46664,55 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf +wLy kKY -iTv -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -eYB -nFl -eYB -eYB +bfM +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rcE +rAn +rcE +rcE izq -yhY -muh -muh -yhY -rup -yhY -yhY -yhY -yhY +gzB +qXh +qXh +gzB +bkX +gzB +gzB +gzB +gzB izq -wqy -eYB -eYB -eYB -eYB -eYB +uUl +rcE +rcE +rcE +rcE +rcE kKY -vQU -sIx -sIx -dZt +oxB +lpw +lpw +khJ kKY ryS ryS @@ -51088,18 +46728,18 @@ mZu mZu nAs nAs -sMu -hze -sMu -etB -sMu -hze -sMu -oew +hwn +iNh +hwn +cTv +hwn +iNh +hwn +qMf gxe -oTo -lpK -rTE +syp +vdS +miZ nAs nAs rhA @@ -51160,7 +46800,7 @@ oIt lsI lsI lsI -jDv +pKf oIt oIt oIt @@ -51227,9 +46867,9 @@ bAl hyO afU wPu -pbH -hvc -rBj +ito +bSl +wBI wPu aLX iTn @@ -51260,56 +46900,56 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf -tlF -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -bOY -aQQ -qWx -qWx -qWx -qWx -oeV -kad -qWx -qWx -qWx -aQQ -bOY -bOY -bOY -bOY -bOY -bOY -aQQ -bOY -bOY -bOY -bOY -aQQ +wLy +eJw +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gEN +gwu +tfs +tfs +tfs +tfs +qcH +meU +tfs +tfs +tfs +gwu +gEN +gEN +gEN +gEN +gEN +gEN +gwu +gEN +gEN +gEN +gEN +gwu ryS ryS ryS @@ -51395,8 +47035,8 @@ oIt oIt lsI lsI -jDv -rnB +pKf +wsM lHk qUi qUi @@ -51463,9 +47103,9 @@ iTn iTn wzf wPu -oec -hvc -tLA +sYV +bSl +aED wPu brz iTn @@ -51496,56 +47136,56 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf -vcg -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -kLu -vcg -rvV -rvV -rvV -cYu -lHY -rvV -rvV -rvV -rvV -vcg -kLu -kLu -kLu -kLu -kLu -kLu -vcg -kLu -kLu -kLu -kLu -vcg +wLy +wBv +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +uSG +wBv +rPD +rPD +rPD +ooc +jYj +rPD +rPD +rPD +rPD +wBv +uSG +uSG +uSG +uSG +uSG +uSG +wBv +uSG +uSG +uSG +uSG +wBv ryS ryS ryS @@ -51698,11 +47338,11 @@ plC gAC gAC gAC -ohw -gfc -fDt -gfc -ohw +bAF +frE +lhM +frE +bAF gAC gAC gAC @@ -51732,55 +47372,55 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf +wLy kKY -cIB -cIB -cIB -ipm -cIB -cIB -cIB -cIB -cIB -cIB -cIB -cIB -cIB -ipm -cIB -cIB -cIB -cIB -cIB -cIB -cIB +beK +beK +beK +gna +beK +beK +beK +beK +beK +beK +beK +beK +beK +gna +beK +beK +beK +beK +beK +beK +beK izq -ana -ana -ana -ana -xTn -ana -ana -ana -ana +nuH +nuH +nuH +nuH +kBz +nuH +nuH +nuH +nuH izq -ykV -cIB -cIB -cIB -cIB -cIB +dUh +beK +beK +beK +beK +beK kKY -uDo -oNW -noX -nHu +cuL +tHB +wcp +jwg kKY ryS ryS @@ -51874,8 +47514,8 @@ qUi qUi qUi lsI -jDv -jDv +pKf +pKf lsI lsI lsI @@ -51935,9 +47575,9 @@ iTn brz erY wPu -qEx -hvc -xwg +she +bSl +awr wPu iTn iTn @@ -51968,11 +47608,11 @@ qUi qUi qUi kKY -afj +mYe eMX eMX eMX -jmf +wLy kKY izq izq @@ -51980,38 +47620,38 @@ izq izq izq izq -jaX +eHC izq izq -fyY +ptU izq tbm tbm izq -vcg -xAv +wBv +lfM izq izq izq -fyY +ptU izq izq izq -bUC -rvV -fDx -biJ -fDx -rvV -rvV +pfp +rPD +qTP +aqZ +qTP +rPD +rPD fMq izq -ond -qJJ -qJJ -qJJ -ejr -ejr +bUy +xzd +xzd +xzd +hXl +hXl kKY kKY tbm @@ -52109,8 +47749,8 @@ oIt qUi qUi oIt -jDv -rnB +pKf +wsM lsI qUi lsI @@ -52171,9 +47811,9 @@ wPu wPu wPu wPu -pbH -hvc -rBj +ito +bSl +wBI wPu dYp uCz @@ -52204,51 +47844,51 @@ qUi qUi qUi kKY -msr -wuY -wuY -wuY -xjv +uCB +fBl +fBl +fBl +qmg kKY jbY qQi lIu izq -sQB -ePH -ePH -lTO +tAH +tzk +tzk +rmI izq kDa izq -eUC -oBU -oyS -oBU -oBU -oBU -rhH +rqc +bAJ +sST +bAJ +bAJ +bAJ +cKW izq kDa lIu izq -oiq -vZm -rvV -axG -axG -axG -lHY -rvV -dfl +bgp +jHm +rPD +vCk +vCk +vCk +jYj +rPD +iui tbm -okW -pmV -whl -hjB -ejr -ejr -lnd +vQE +dcK +aZE +iuv +hXl +hXl +tko kKY fgU fgU @@ -52345,8 +47985,8 @@ lHk oIt oIt oIt -jDv -jDv +pKf +pKf lsI qUi lsI @@ -52407,9 +48047,9 @@ bAl ndp tDf wPu -pbH -hvc -rBj +ito +bSl +wBI wPu wPu wPu @@ -52450,41 +48090,41 @@ dNE kDa kDa izq -cJV -iQH -iQH -iQH +pwa +ste +ste +ste izq kDa izq -vOx -fSM -oyS -oBU -oBU -oBU -rhH +hGe +tGf +sST +bAJ +bAJ +bAJ +cKW izq kDa kDa izq -fDx -vZm -rvV -rvV -rvV -rvV -rvV -rvV -rvV +qTP +jHm +rPD +rPD +rPD +rPD +rPD +rPD +rPD tbm -okW -eFO -eFO -eFO -ejr -bnz -oxx +vQE +iqP +iqP +iqP +hXl +hMC +qie kKY fgU fgU @@ -52582,7 +48222,7 @@ oIt oIt lsI lsI -jDv +pKf lsI qUi lsI @@ -52643,9 +48283,9 @@ iTn iTn iTn wPu -oec -hvc -tLA +sYV +bSl +aED wPu kyd brz @@ -52687,38 +48327,38 @@ kDa kDa izq izq -iQH -iQH -poh +ste +ste +wjA izq kDa izq -tbo -oyS -wwk -oBU -oBU -oBU -rhH +umT +sST +vdu +bAJ +bAJ +bAJ +cKW izq kDa kDa izq -oiq -vZm -rvV -rvV -lHY -rvV -rvV -rvV -lDv +bgp +jHm +rPD +rPD +jYj +rPD +rPD +rPD +xVK izq -udl -eYB -eYB -eYB -tFq +omf +rcE +rcE +rcE +hjQ izq izq kKY @@ -52818,7 +48458,7 @@ lsI lsI lsI lsI -jDv +pKf lsI qUi lsI @@ -52878,11 +48518,11 @@ plC gAC gAC gAC -ohw -gfc -fDt -gfc -ohw +bAF +frE +lhM +frE +bAF gAC gAC gAC @@ -52923,37 +48563,37 @@ kDa kDa kDa izq -nJg -iQH -vmZ +uRz +ste +kqq izq kDa izq -fuR -oBU -oBU -oBU -oBU -oBU -rhH +fTZ +bAJ +bAJ +bAJ +bAJ +bAJ +cKW izq kDa kDa izq izq -vZr -vZr -rvV -vZr -vZr +bnK +bnK +rPD +bnK +bnK izq izq izq izq izq -onq +vQi tbm -onq +vQi izq izq wSd @@ -53115,9 +48755,9 @@ iTn iTn tSn wPu -qEx -hvc -xwg +she +bSl +awr wPu iTn iTn @@ -53165,33 +48805,33 @@ izq izq kDa izq -vOx -oBU -oBU -oBU -oBU -oBU -jfs +hGe +bAJ +bAJ +bAJ +bAJ +bAJ +tkT izq kDa kDa qaz izq -fDx -fDx -lHY -fDx -mqs +qTP +qTP +jYj +qTP +xKf izq wdU wSd izq -xsl -xfw -xfw -xfw -xfw -aAx +qwQ +gfA +gfA +gfA +gfA +gRY mLf qWl kKY @@ -53351,9 +48991,9 @@ mgQ afU wyd wPu -pbH -hvc -iHn +ito +bSl +cjY wPu tDf hMm @@ -53401,13 +49041,13 @@ kDa kDa kDa izq -oDa -ccx -yiU -hlV -oBU -oBU -oUw +cnU +bJD +sem +sUH +bAJ +bAJ +thx izq kDa kDa @@ -53415,18 +49055,18 @@ qaz izq izq izq -fyY +ptU izq izq izq qWl mLf -aAx -xfw -xfw -xfw -xfw -xfw +gRY +gfA +gfA +gfA +gfA +gfA izq izq izq @@ -53588,7 +49228,7 @@ wPu wPu wPu wPu -hCk +cET wPu wPu wPu @@ -53640,10 +49280,10 @@ izq izq izq izq -cEY -oBU -oBU -qXO +sdJ +bAJ +bAJ +iIu izq kDa kDa @@ -53658,11 +49298,11 @@ izq izq izq izq -sNm -xfw -xfw -xfw -xfw +smC +gfA +gfA +gfA +gfA izq wSd wdU @@ -53865,7 +49505,7 @@ kKY kKY izq izq -fyY +ptU izq izq woY @@ -53876,10 +49516,10 @@ kDa kDa eAO izq -cEY -oBU -tRG -hiy +sdJ +bAJ +ggO +sKm izq jnq kDa @@ -53894,12 +49534,12 @@ izq wdU wSd izq -xfw -xfw -xfw -xfw -xfw -aAx +gfA +gfA +gfA +gfA +gfA +gRY qJj qWl kKY @@ -54112,10 +49752,10 @@ kDa kDa kDa izq -cEY -oBU -oBU -oUw +sdJ +bAJ +bAJ +thx izq jnq jnq @@ -54129,12 +49769,12 @@ kDa izq qWl mLf -aAx -xfw -xfw -xfw -xfw -xfw +gRY +gfA +gfA +gfA +gfA +gfA izq izq izq @@ -54227,9 +49867,9 @@ qUi tjZ lsI lsI -jDv -jDv -jDv +pKf +pKf +pKf lsI lsI lsI @@ -54346,12 +49986,12 @@ izq izq izq izq -fyY +ptU izq -cEY -oBU -oBU -oMX +sdJ +bAJ +bAJ +rXI vzn vzn vzn @@ -54367,10 +50007,10 @@ izq izq izq izq -vdT -xfw -xfw -xfw +wnL +gfA +gfA +gfA izq wSd wdU @@ -54462,9 +50102,9 @@ qUi qUi aSo lsI -jDv -rnB -jDv +pKf +wsM +pKf lsI lsI lsI @@ -54577,37 +50217,37 @@ kDa kDa aqN izq -daV -kwD +pDS +pvb tIV -gDl -bSJ -qgx +cdY +tnc +oGP izq izq -vcg -xAv +wBv +lfM izq vzn -niu -mPl -qzb +jml +mnr +qPP vzn -tVr -bdn +xKT +qbT vzn vzn kDa izq -wIs -dIt -jZu +lKH +cXS +ekR izq izq -xfw -xfw -xfw -aAx +gfA +gfA +gfA +gRY mLf qWl kKY @@ -54699,7 +50339,7 @@ qUi lsI lsI lsI -jDv +pKf lsI lsI lsI @@ -54813,36 +50453,36 @@ tYv kDa kDa izq -ljM -vSC -tcu -waj -qgx -qgx -qgx -bRf -qgx -kJi -vSC -vSC -vSC -vSC -qwn +sIt +pCI +dAr +jtg +oGP +oGP +oGP +cgj +oGP +ahI +pCI +pCI +pCI +pCI +ylc kBJ -per -eCu -xGo +oyA +dsD +eUt vzn sBZ izq -krU -iKF -iKF -xeL +dvC +tOt +tOt +kIq izq -xfw -xfw -xfw +gfA +gfA +gfA izq izq izq @@ -55046,39 +50686,39 @@ kKY kKY izq izq -fyY +ptU izq izq tIV tIV tIV -waj -qgx -qgx -qgx -qgx -qgx -vSC -vSC -vSC -vSC -vSC -qwn +jtg +oGP +oGP +oGP +oGP +oGP +pCI +pCI +pCI +pCI +pCI +ylc vzn -per -per -eFB +oyA +oyA +ghR vzn kDa izq -uLz -iKF -iKF -pRr +oMs +tOt +tOt +sWC izq -sNm -xfw -xfw +smC +gfA +gfA izq wSd wdU @@ -55280,42 +50920,42 @@ qUi qUi qUi kKY -taB -taB -vSC -taB +cFV +cFV +pCI +cFV tIV -daV -kwD +pDS +pvb tIV -waj -qgx -bRf -ghe -qgx -qgx -vSC -vSC -vSC -vSC -vSC -qwn -qZd -per -per -kKu +jtg +oGP +cgj +tBF +oGP +oGP +pCI +pCI +pCI +pCI +pCI +ylc +omO +oyA +oyA +sPv vzn kDa izq -kCG -iKF -iKF -pRr -odv -xfw -xfw -xfw -aAx +kIL +tOt +tOt +sWC +non +gfA +gfA +gfA +gRY qJj qWl kKY @@ -55414,7 +51054,7 @@ qUi oIt oIt oIt -jDv +pKf oIt lsI lHk @@ -55516,41 +51156,41 @@ qUi qUi qUi kKY -hrw -vSC -vSC -vSC +ihU +pCI +pCI +pCI tIV -ljM -vSC -tcu -waj -qgx -qgx -mRW -qgx -qgx -vSC -vSC -ljM -vSC -vSC -qwn +sIt +pCI +dAr +jtg +oGP +oGP +poB +oGP +oGP +pCI +pCI +sIt +pCI +pCI +ylc vzn -hGx -jVE -qOi +hnX +pEK +tEi vzn kDa izq -iKF -iKF -iKF -pRr +tOt +tOt +tOt +sWC izq -xfw -xfw -xfw +gfA +gfA +gfA izq izq izq @@ -55650,7 +51290,7 @@ oIt oIt oIt qUi -jDv +pKf oIt lsI lsI @@ -55752,41 +51392,41 @@ qUi qUi qUi kKY -taB -taB -vSC -taB +cFV +cFV +pCI +cFV tIV tIV tIV tIV -waj -qgx -qgx +jtg +oGP +oGP tIV -faD -rho -mxI -pso +mGs +kLx +jkd +cOL tIV -vSC -vSC -qwn +pCI +pCI +ylc vzn vzn vzn vzn vzn sBZ -vqb -iKF -iKF -iKF -pRr +pfA +tOt +tOt +tOt +sWC fJn -xfw -xfw -xfw +gfA +gfA +gfA izq wSd wdU @@ -55885,8 +51525,8 @@ qUi qUi oIt oIt -jDv -jDv +pKf +pKf lsI lsI lsI @@ -55988,42 +51628,42 @@ qUi qUi qUi kKY -vSC -vSC -vSC -vSC +pCI +pCI +pCI +pCI tIV -thg -kwD +wDK +pvb tIV -waj -qgx -qgx +jtg +oGP +oGP tIV gnr gnr gnr gnr tIV -ykr -vSC -qwn +wCS +pCI +ylc vzn -wRn -nmw -uBK +dnm +gIh +xGT vzn kDa izq -tIf -qHj -jgE -siz +oGc +sBO +xcm +dSJ izq -xfw -xfw -xfw -aAx +gfA +gfA +gfA +gRY qJj qWl kKY @@ -56113,16 +51753,16 @@ qUi qUi qUi qUi -jDv -jDv +pKf +pKf lsI lsI oIt qUi -jDv -jDv -jDv -jDv +pKf +pKf +pKf +pKf lsI lsI lsI @@ -56224,30 +51864,30 @@ qUi qUi qUi kKY -taB -taB -vSC -taB +cFV +cFV +pCI +cFV tIV -ljM -kJi -tcu -waj -qgx -qgx +sIt +ahI +dAr +jtg +oGP +oGP tIV -fWV -fIC -jpl -tQS +cEp +fXA +vzO +jIJ tIV -vSC -vSC -qwn -qZd -per -per -qUl +pCI +pCI +ylc +omO +oyA +oyA +bMD vzn kDa izq @@ -56256,7 +51896,7 @@ izq izq izq izq -aQT +end izq kKY kKY @@ -56350,15 +51990,15 @@ qUi qUi qUi xbM -csZ -jDv +oSE +pKf lsI oIt -jDv -jDv -jDv -jDv -jDv +pKf +pKf +pKf +pKf +pKf lsI lsI lHk @@ -56460,30 +52100,30 @@ qUi qUi qUi kKY -vSC -vSC -vSC -vSC +pCI +pCI +pCI +pCI tIV tIV tIV tIV -waj -qgx -qgx +jtg +oGP +oGP gnr -aoL -wUS -hWK -xZT +sXX +dIP +xsg +bte gnr -vSC -vSC -qwn +pCI +pCI +ylc vzn -wMZ -per -wIg +abE +oyA +ouo vzn kDa kDa @@ -56590,10 +52230,10 @@ lsI lsI lsI oIt -jDv -jDv -rnB -jDv +pKf +pKf +wsM +pKf lsI lsI lsI @@ -56696,34 +52336,34 @@ qUi qUi qUi kKY -taB -taB -vSC -taB -taB +cFV +cFV +pCI +cFV +cFV tIV -oQk -vSC -vSC -qgx -qgx +itU +pCI +pCI +oGP +oGP gnr -aoL -wUS -gWV -xZT +sXX +dIP +dIP +bte gnr -vSC -vSC -qwn +pCI +pCI +ylc kBJ -per -eCu -tXY +oyA +dsD +ngE vzn kDa kDa -vqb +pfA kDa kDa kDa @@ -56827,9 +52467,9 @@ lsI lsI lsI qUi -jDv -jDv -jDv +pKf +pKf +pKf lsI lsI oIt @@ -56932,29 +52572,29 @@ qUi qUi qUi kKY -vSC -vSC -vSC -vSC -vSC +pCI +pCI +pCI +pCI +pCI tIV -oQk -vSC -vSC -qgx -qgx +itU +pCI +pCI +oGP +oGP gnr -aoL -wUS -gWV -gUq +sXX +dIP +dIP +hOt gnr -vSC -vSC -qwn +pCI +pCI +ylc vzn -tst -enj +jpG +nrY vzn vzn kDa @@ -57064,7 +52704,7 @@ lsI lsI lsI lsI -jDv +pKf lsI lsI lsI @@ -57168,26 +52808,26 @@ qUi qUi qUi kKY -ykr -vSC -vSC -vSC -vSC -uQi -waj -vSC -vSC -qgx -vRo +wCS +pCI +pCI +pCI +pCI +nIn +jtg +pCI +pCI +oGP +oBT tIV -vca -wUS -gWV -knj +vJB +dIP +dIP +vGK tIV -vSC -vSC -uUX +pCI +pCI +hDs vzn vzn vzn @@ -57405,25 +53045,25 @@ qUi qUi kKY kKY -qfx -vSC -vSC -vSC +ooW +pCI +pCI +pCI tIV -aKN -bmM -vSC -qgx -qgx +hNC +bKG +pCI +oGP +oGP tIV tIV -cSb +cHf tIV gnr tIV -vSC -vSC -qwn +pCI +pCI +ylc izq qgY wWe @@ -57646,21 +53286,21 @@ kKY kKY kKY fie -iEP -cRq -vSC -qgx -ghe -vSC -vSC -qgx -vSC -vSC -vSC -vSC -vSC -qwn -vqb +vJm +kLt +pCI +oGP +tBF +pCI +pCI +oGP +pCI +pCI +pCI +pCI +pCI +ylc +pfA kDa kDa kDa @@ -57882,20 +53522,20 @@ qUi qUi qUi fie -vdV -fru -bmM -qgx -qgx -vSC -vSC -qgx -vSC -vSC -vSC -vSC -vSC -qwn +hnw +vKO +bKG +oGP +oGP +pCI +pCI +oGP +pCI +pCI +pCI +pCI +pCI +ylc izq kDa kDa @@ -58119,19 +53759,19 @@ qUi qUi fie fie -dEY -rgl -gJJ -gJJ -gJJ -gJJ -gJJ -gJJ -gJJ -gJJ -gJJ -gJJ -nvy +ldT +ioz +pzC +pzC +pzC +pzC +pzC +pzC +pzC +pzC +pzC +pzC +aTZ kKY kKY kKY @@ -58358,14 +53998,14 @@ fie fie vzn vzn -mxN +vha vzn kBJ vzn vzn vzn kBJ -mxN +vha fie fie kKY @@ -58592,17 +54232,17 @@ qUi qUi qUi fie -pTi -cZz -cZz -wio -wio -qhj +rCp +xZQ +xZQ +vjY +vjY +gMe vzn -gXa -cZz -cZz -mBB +sJf +xZQ +xZQ +xMm fie fgU fgU @@ -58828,17 +54468,17 @@ qUi qUi qUi fie -hXo -cZz -cZz +aNm +xZQ +xZQ lhT -wio -lWf +vjY +fTS vzn -gXa -cZz -cZz -spx +sJf +xZQ +xZQ +dwM fie fgU fgU @@ -58886,10 +54526,10 @@ fgU fgU bvE bvE -isz -skr -iDb -iDb +oIc +gsK +oSU +oSU bvE bvE rhA @@ -59064,17 +54704,17 @@ qUi qUi qUi fie -pTi -cZz +rCp +xZQ lhT tMj -wio -wAJ +vjY +ezK vzn -gXa -cZz -baY -spx +sJf +xZQ +tmj +dwM fie fgU fgU @@ -59121,12 +54761,12 @@ fgU fgU fgU bvE -sle -hUM -hUM -hUM -hUM -isz +gAb +kbB +kbB +kbB +kbB +oIc bvE rhA rhA @@ -59219,16 +54859,16 @@ qUi qUi qUi ahn -oef -oef +lbO +lbO ahn -laA -tIt -tIt -tIt +dWV +taX +taX +taX ahn -oef -oef +lbO +lbO ahn qUi qUi @@ -59300,17 +54940,17 @@ qUi qUi qUi fie -dTG +jtZ lhT lhT lhT lhT -ksY +soV vzn -gXa -cZz -cZz -spx +sJf +xZQ +xZQ +dwM fie fgU fgU @@ -59357,12 +54997,12 @@ fgU fgU fgU bvE -tOP -hUM -hUM -hUM -hUM -ehI +ufW +kbB +kbB +kbB +kbB +fqx bvE rhA rhA @@ -59455,16 +55095,16 @@ qUi qUi ahn ahn -oef -oef +lbO +lbO ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn -oef -oef +lbO +lbO ahn ahn qUi @@ -59537,15 +55177,15 @@ qUi qUi fie fie -cZz +xZQ lhT -wio -gyq -ksY +vjY +cYD +soV vzn -gXa -mWr -aqF +sJf +wkU +fjb fie fie fgU @@ -59594,10 +55234,10 @@ fgU fgU bvE bvE -naU -hUM -hUM -sAB +uUV +kbB +kbB +tZw bvE bvE rhA @@ -59690,18 +55330,18 @@ qUi qUi qUi ahn -bQx -bQx -bQx -tem -tIt -tIt -tIt -tIt -shJ -bQx -bQx -bQx +mBW +mBW +mBW +vkx +taX +taX +taX +taX +gUF +mBW +mBW +mBW ahn qUi qUi @@ -59832,7 +55472,7 @@ rhA bvE bvE vBj -vLP +jEn bvE bvE rhA @@ -59926,18 +55566,18 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -60076,8 +55716,8 @@ rhA rhA bvE bvE -lVr -oOI +aJo +vmO bvE bvE rhA @@ -60167,8 +55807,8 @@ ahn ahn ahn ahn -wJQ -rbM +xRr +vzj ahn ahn ahn @@ -60311,10 +55951,10 @@ rhA rhA rhA fhn -xuU -xuU -xuU -pSj +dHI +dHI +dHI +iEL bvE bMb rhA @@ -60398,18 +56038,18 @@ qUi qUi qUi ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn -tIt -tIt +taX +taX ahn -mUp -mUp -rDK -rDK +xCU +xCU +uEs +uEs ahn qUi qUi @@ -60546,11 +56186,11 @@ vAo rhA rhA rhA -xQd -xuU -xuU -xuU -aXT +mZH +dHI +dHI +dHI +xIB bvE rhA bMb @@ -60634,18 +56274,18 @@ qUi qUi qUi ahn -tIt -tIt -tIt -tIt -wJQ -tIt -tIt -rbM -tIt -tIt -tIt -tIt +taX +taX +taX +taX +xRr +taX +taX +vzj +taX +taX +taX +taX ahn qUi qUi @@ -60757,7 +56397,7 @@ pFX pFX pFX pFX -ifW +xbK pFX pFX pFX @@ -60784,8 +56424,8 @@ vAo rhA bvE bvE -oOI -oOI +vmO +vmO bvE bvE rhA @@ -60870,18 +56510,18 @@ ahn ahn qUi ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn -tIt -tIt +taX +taX ahn -rDK -rDK -mUp -rDK +uEs +uEs +xCU +uEs ahn qUi ahn @@ -60991,12 +56631,12 @@ fgU fgU pFX itk -meI -jzz -cCL -cTa -tkl -dSN +gyf +aUQ +ohY +uAq +frz +bOo pFX fgU fgU @@ -61101,8 +56741,8 @@ qUi qUi ahn ahn -xne -xne +nEg +nEg ahn ahn ahn @@ -61111,8 +56751,8 @@ ahn ahn ahn ahn -oKf -oKf +aNa +aNa ahn ahn ahn @@ -61121,8 +56761,8 @@ ahn ahn ahn ahn -xne -xne +nEg +nEg ahn ahn qUi @@ -61227,12 +56867,12 @@ fgU fgU pFX ddW -cEI -jzz -cCL -cTa -cTa -qBH +kWK +aUQ +ohY +uAq +uAq +sCI pFX fgU fgU @@ -61336,30 +56976,30 @@ qUi qUi qUi ahn -vco -vco -vco +qnD +qnD +qnD ahn -qpW -qpW -pGI -jOi -qpW -qpW +lAz +lAz +vEu +ddF +lAz +lAz ahn -tIt -tIt +taX +taX ahn -mLv -mLv -jOi -pGI -faN -faN +vru +vru +ddF +vEu +gwo +gwo ahn -vco -vco -vco +qnD +qnD +qnD ahn qUi qUi @@ -61463,12 +57103,12 @@ fgU fgU pFX rtW -tRi -jzz -cCL -cTa -cTa -pMl +eci +aUQ +ohY +uAq +uAq +bXd pFX fgU fgU @@ -61572,30 +57212,30 @@ qUi qUi qUi ahn -wDX -wDX -wDX +bOX +bOX +bOX ahn -jOi -jOi -xfO -jOi -jOi -jOi -jxS -tIt -tIt -orZ -jOi -jOi -jOi -xfO -jOi -jOi +ddF +ddF +iKb +ddF +ddF +ddF +wYG +taX +taX +pel +ddF +ddF +ddF +iKb +ddF +ddF ahn -wDX -wDX -wDX +bOX +bOX +bOX ahn qUi qUi @@ -61699,12 +57339,12 @@ cIA cIA pFX lJh -cEI -jzz -cCL -cTa -stm -xiB +kWK +aUQ +ohY +uAq +tMe +yaI pFX fgU fgU @@ -61808,30 +57448,30 @@ qUi qUi qUi ahn -vco -vco -vco +qnD +qnD +qnD ahn -jOi -jOi -qRb -jOi -jOi -jOi +ddF +ddF +iGP +ddF +ddF +ddF ahn -tIt -tIt +taX +taX ahn -jOi -jOi -jOi -qRb -jOi -jOi +ddF +ddF +ddF +iGP +ddF +ddF ahn -vco -vco -vco +qnD +qnD +qnD ahn qUi qUi @@ -61935,12 +57575,12 @@ cIA cIA pFX oxA -kDC -jzz -gCr -cTa -cTa -exe +jQM +aUQ +sgD +uAq +uAq +hjl pFX fgU fgU @@ -62044,30 +57684,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -jOi -jOi -kib -jOi -jOi -jOi -pGI -tIt -tIt -pGI -jOi -jOi -jOi -trB -jOi -jOi +ddF +ddF +iPZ +ddF +ddF +ddF +vEu +taX +taX +vEu +ddF +ddF +ddF +ykh +ddF +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -62171,12 +57811,12 @@ cIA qUi pFX qAd -cEI -jzz -cCL -cTa -cTa -ijy +kWK +aUQ +ohY +uAq +uAq +mpq pFX fgU fgU @@ -62280,30 +57920,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -jOi -jOi -kib -jOi -gGA -jOi -xfO -tIt -tIt -xfO -jOi -gGA -jOi -trB -jOi -jOi +ddF +ddF +iPZ +ddF +uyn +ddF +iKb +taX +taX +iKb +ddF +uyn +ddF +ykh +ddF +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -62383,7 +58023,7 @@ jrG jrG jrG jrG -hlp +jxH jrG jrG fgU @@ -62407,11 +58047,11 @@ qUi qUi pFX pFX -pnq -twD -dcT -cTa -voS +aos +pvJ +dtZ +uAq +wPc pFX pFX fgU @@ -62516,30 +58156,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -jOi -jOi -kib -jOi -jOi -jOi -qRb -tIt -tIt -qRb -jOi -jOi -jOi -trB -jOi -jOi +ddF +ddF +iPZ +ddF +ddF +ddF +iGP +taX +taX +iGP +ddF +ddF +ddF +ykh +ddF +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -62752,30 +58392,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -qpW -jOi +lAz +ddF ahn -jOi -jOi -jOi +ddF +ddF +ddF ahn -wJQ -wJQ +xRr +xRr ahn -jOi -jOi -jOi +ddF +ddF +ddF ahn -faN -jOi +gwo +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -62988,30 +58628,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -qpW -jOi +lAz +ddF ahn -qpW -fYi +lAz +xYk ahn ahn -ozb -tIt +tXE +taX ahn ahn -mLv -mLv +vru +vru ahn -faN -jOi +gwo +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -63094,7 +58734,7 @@ xyr cyt etM etM -cRH +rzs fgU fgU fgU @@ -63224,30 +58864,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -qpW -jOi +lAz +ddF ahn ahn ahn ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn ahn ahn ahn -iKh -jOi +mBs +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -63460,30 +59100,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -lPe -jOi +cQN +ddF ahn -oef -oef +lbO +lbO ahn -wrh -tIt -tIt -tIt +iaB +taX +taX +taX ahn -oef -oef +lbO +lbO ahn -iKh -jOi +mBs +ddF ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -63696,30 +59336,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn ahn ahn ahn -bQx -bQx +mBW +mBW ahn ahn -tIt -uqq +taX +ftu ahn ahn -bQx -bQx +mBW +mBW ahn ahn ahn ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -63840,7 +59480,7 @@ mPI bdM bdM nOZ -sTh +wvh eno qUi qUi @@ -63932,30 +59572,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx -tem -bQx -bQx -bQx -bQx -bQx -bQx +mBW +mBW +mBW +vkx +mBW +mBW +mBW +mBW +mBW +mBW ahn -lLd -tIt +kdJ +taX ahn -bQx -bQx -bQx -bQx -bQx -bQx -shJ -bQx -bQx -bQx +mBW +mBW +mBW +mBW +mBW +mBW +gUF +mBW +mBW +mBW ahn qUi qUi @@ -64168,30 +59808,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx -tem -bQx -bQx -bQx -bQx -bQx -bQx +mBW +mBW +mBW +vkx +mBW +mBW +mBW +mBW +mBW +mBW ahn -tIt -tIt +taX +taX ahn -bQx -bQx -bQx -bQx -bQx -bQx -shJ -bQx -bQx -bQx +mBW +mBW +mBW +mBW +mBW +mBW +gUF +mBW +mBW +mBW ahn qUi qUi @@ -64310,7 +59950,7 @@ qUi qUi qUi qUi -uCT +tkD ldy qUi qUi @@ -64404,30 +60044,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn ahn ahn ahn -bQx -bQx -bQx -wJQ -tIt -tIt -mYl -bQx -bQx -bQx +mBW +mBW +mBW +xRr +taX +taX +dCj +mBW +mBW +mBW ahn ahn ahn ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -64640,30 +60280,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -tIt -tIt +taX +taX ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -64876,30 +60516,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -tIt -tIt +taX +taX ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -65112,30 +60752,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi bft ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -oKf -oKf +aNa +aNa ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -65348,30 +60988,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn bft bft ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -tIt -tIt +taX +taX ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -65584,30 +61224,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn bft eXe ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn -tIt -tIt +taX +taX ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -65820,30 +61460,30 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn wRX eXe ahn -kFN -kFN +hBi +hBi ahn ahn -wJQ -wJQ +xRr +xRr ahn ahn -kFN -kFN +hBi +hBi ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -66056,9 +61696,9 @@ qUi qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn gVG eXe @@ -66066,10 +61706,10 @@ ahn ahn ahn ahn -tIt -tIt -tIt -tIt +taX +taX +taX +taX ahn ahn ahn @@ -66077,9 +61717,9 @@ ahn qUi qUi ahn -bQx -bQx -bQx +mBW +mBW +mBW ahn qUi qUi @@ -66293,28 +61933,28 @@ qUi qUi ahn ahn -bQx -bQx +mBW +mBW ahn eXe lVx ahn -tIt +taX ahn -tIt -tIt -tIt -tIt -tIt -tIt +taX +taX +taX +taX +taX +taX ahn -tIt +taX ahn qUi qUi ahn -bQx -bQx +mBW +mBW ahn ahn qUi @@ -66529,28 +62169,28 @@ qUi qUi qUi ahn -bQx -bQx +mBW +mBW ahn eXe eXe -skt -tIt -skt -tIt -gIM -tIt -tIt -tIt -tIt -rbM -tIt -rbM +yaB +taX +yaB +taX +ndE +taX +taX +taX +taX +vzj +taX +vzj qUi qUi ahn -bQx -bQx +mBW +mBW ahn qUi qUi @@ -66765,28 +62405,28 @@ qUi qUi qUi ahn -bQx -bQx +mBW +mBW ahn eXe eXe ahn -tIt +taX ahn -bDp -tIt -tIt -tIt -tIt -tIt +jPV +taX +taX +taX +taX +taX ahn -tIt +taX ahn qUi qUi ahn -bQx -bQx +mBW +mBW ahn qUi qUi @@ -67002,26 +62642,26 @@ qUi qUi ahn ahn -bQx +mBW ahn eXe eXe ahn ahn ahn -wJQ -wJQ +xRr +xRr ahn ahn -rbM -rbM +vzj +vzj ahn ahn ahn qUi qUi ahn -bQx +mBW ahn ahn qUi @@ -67238,26 +62878,26 @@ qUi qUi qUi ahn -bQx +mBW ahn eXe eXe ahn -wip -tIt -tIt -tIt -tIt -tIt -tIt -tIt -tIt -wip +aQD +taX +taX +taX +taX +taX +taX +taX +taX +aQD ahn qUi qUi ahn -bQx +mBW ahn qUi qUi @@ -67479,16 +63119,16 @@ ahn bVS bVS ahn -wip -tIt -tIt -tIt -tIt -tIt -tIt -tIt -tIt -wip +aQD +taX +taX +taX +taX +taX +taX +taX +taX +aQD ahn qUi qUi @@ -67715,16 +63355,16 @@ eXe eXe eXe ahn -wip -tIt -tIt -tIt -tIt -tIt -tIt -tIt -tIt -wip +aQD +taX +taX +taX +taX +taX +taX +taX +taX +aQD ahn qUi qUi @@ -67952,14 +63592,14 @@ vNt eXe ahn ahn -tIt -tIt -tIt -tIt -tIt -tIt -tIt -tIt +taX +taX +taX +taX +taX +taX +taX +taX ahn ahn qUi @@ -68188,14 +63828,14 @@ eXe eXe eXe ahn -tIt -tIt -tIt +taX +taX +taX ahn ahn -tIt -tIt -tIt +taX +taX +taX ahn qUi qUi @@ -68424,14 +64064,14 @@ eXe eXe eXe ahn -tIt -tIt -gSO -tIt -tIt -tIt -tIt -tIt +taX +taX +vMr +taX +taX +taX +taX +taX ahn qUi qUi @@ -68661,12 +64301,12 @@ eXe eXe ahn ahn -tIt -tIt -tIt -mnK -tIt -tIt +taX +taX +taX +ntp +taX +taX ahn ahn qUi @@ -68897,12 +64537,12 @@ vNt eXe eXe ahn -wip -tIt -tIt -tIt -tIt -wip +aQD +taX +taX +taX +taX +aQD ahn qUi qUi @@ -69134,10 +64774,10 @@ eXe eXe ahn ahn -tIt -gSO -gSO -tIt +taX +vMr +vMr +taX ahn ahn qUi @@ -69370,10 +65010,10 @@ bft bft bft ahn -wip -tIt -tIt -wip +aQD +taX +taX +aQD ahn qUi qUi @@ -69607,8 +65247,8 @@ bft bft ahn ahn -vLc -wip +cjm +aQD ahn ahn qUi diff --git a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm index 702289945e..948425489e 100644 --- a/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm +++ b/maps/map_files/Ice_Colony_v2/Ice_Colony_v2.dmm @@ -92,27 +92,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) -"aau" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"aav" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"aaw" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "aax" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) @@ -161,15 +140,6 @@ "aaJ" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) -"aaK" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "aaL" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/icefloor, @@ -177,22 +147,6 @@ "aaM" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad2) -"aaN" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"aaO" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "aaP" = ( /turf/closed/ice/corner{ dir = 4 @@ -224,18 +178,6 @@ dir = 9 }, /area/ice_colony/exterior/surface/cliff) -"aaV" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"aaW" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "aaX" = ( /turf/closed/ice/end{ dir = 8 @@ -312,13 +254,6 @@ "abn" = ( /turf/closed/ice/end, /area/ice_colony/exterior/surface/cliff) -"abo" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "abp" = ( /turf/closed/wall{ icon_state = "iron6" @@ -334,13 +269,6 @@ icon_state = "iron10" }, /area/ice_colony/exterior/surface/landing_pad2) -"abs" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) "abt" = ( /obj/structure/ice/thin/straight{ dir = 4 @@ -365,39 +293,6 @@ dir = 4 }, /area/ice_colony/exterior/surface/valley/north) -"aby" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) -"abz" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Requisitions"; - name = "Lower Requisitions"; - airlock_exit = "elevator"; - elevator_network = "Requisitions"; - airlock_area = /area/shuttle/elevator4/underground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) -"abB" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) -"abC" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) "abD" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/requesitions) @@ -470,21 +365,9 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) -"abT" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) "abV" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator4/ground) -"abX" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) "abY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/icefloor, @@ -562,33 +445,6 @@ dir = 8 }, /area/ice_colony/exterior/surface/cliff) -"aco" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Upper_Requisitions"; - name = "Upper Requisitions"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions; - airlock_exit = "elevator"; - elevator_network = "Requisitions"; - airlock_area = /area/shuttle/elevator4/ground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) -"acq" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) -"acs" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/ground) "act" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/north) @@ -637,19 +493,6 @@ "acE" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/exterior/surface/valley/northwest) -"acF" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"acG" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "acH" = ( /obj/structure/machinery/light, /turf/open/floor/plating/icefloor, @@ -660,69 +503,12 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/north) -"acJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"acK" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"acL" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"acM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"acN" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) "acO" = ( /obj/structure/tunnel{ id = "east_cargo_tunnel" }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northwest) -"acP" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) "acQ" = ( /obj/structure/ice/thin/end{ dir = 8 @@ -756,39 +542,6 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"acV" = ( -/obj/item/lightstick/planted, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"acW" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"acX" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"acY" = ( -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"acZ" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "ada" = ( /obj/item/lightstick/planted, /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ @@ -813,42 +566,6 @@ "add" = ( /turf/closed/ice_rock/single, /area/ice_colony/exterior/surface/cliff) -"ade" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"adg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"adh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/electric) -"adi" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) "adj" = ( /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) @@ -862,27 +579,6 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"adm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 0; - name = "Colony Requesitions Storage Pod" - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"adn" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "heater" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) "ado" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -904,66 +600,6 @@ /obj/structure/ice/thin/end, /turf/open/ice, /area/ice_colony/exterior/surface/clearing/north) -"ads" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"adu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"adv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"adw" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "heater" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"adx" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"ady" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) "adz" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -992,61 +628,11 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"adE" = ( -/obj/structure/machinery/conveyor{ - icon_state = "switch-off" - }, -/obj/structure/machinery/door_control{ - name = "Storage Unit Control"; - pixel_x = -24 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"adF" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"adG" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_l" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) "adH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"adI" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"adJ" = ( -/obj/structure/machinery/conveyor{ - icon_state = "switch-off" - }, -/obj/structure/machinery/door_control{ - name = "Storage Unit Control"; - pixel_x = 24 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "adK" = ( /obj/structure/machinery/door_control{ name = "Storage Unit Control"; @@ -1068,57 +654,6 @@ /obj/structure/ice/ice_rock/cornerOverlay, /turf/closed/ice_rock/corners, /area/ice_colony/exterior/surface/cliff) -"adN" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adO" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adP" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/prox_sensor, -/obj/item/device/assembly/timer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adQ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) -"adS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"adT" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) "adU" = ( /obj/structure/ice/thin/end, /turf/open/ice, @@ -1158,12 +693,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"aea" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "aeb" = ( /turf/closed/ice_rock/singlePart, /area/ice_colony/exterior/surface/cliff) @@ -1176,17 +705,6 @@ "aee" = ( /turf/closed/wall, /area/ice_colony/surface/engineering/electric) -"aef" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Electric Storage"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/electric) "aeg" = ( /turf/closed/wall, /area/ice_colony/surface/engineering/generator) @@ -1203,137 +721,17 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"aek" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"ael" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "aem" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/northwest) -"aen" = ( -/obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aeo" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aep" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aeq" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) "aer" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/engineering/tool) -"aes" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aet" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"aeu" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aev" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aew" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aex" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/ice_colony/surface/engineering/generator) "aey" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/northwest) -"aez" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "aeA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/ice, @@ -1344,18 +742,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"aeC" = ( -/obj/structure/machinery/door/airlock{ - id_tag = "st_5"; - locked = 0; - name = "Storage Unit"; - req_one_access_txt = "100;101;102;103" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) "aeD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1407,111 +793,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/engineering) -"aeL" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aeM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/tool) -"aeN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/tool) -"aeO" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/tool) -"aeP" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"aeQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aeR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aeS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aeT" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/generator) -"aeU" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/ice_colony/surface/engineering/generator) -"aeV" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_r" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aeW" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/generator) -"aeX" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "aeY" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/icefloor, @@ -1555,131 +836,6 @@ }, /turf/closed/ice_rock/corners, /area/ice_colony/exterior/surface/cliff) -"afg" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "engineering_ladder"; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afh" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "engineering_ladder1"; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afi" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afj" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"afk" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"afl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/tool) -"afm" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/tool) -"afn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afo" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"afp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Generator Room" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/generator) -"afq" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/generator) -"afr" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/generator) -"afs" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aft" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_l" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"afu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering/generator) -"afv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "afw" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 8 @@ -1697,85 +853,10 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) -"afz" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/cell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afA" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"afB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Tool Storage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/tool) -"afD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afE" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"afF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "afG" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"afH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"afI" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "burst_r" - }, -/obj/structure/shuttle/diagonal{ - dir = 1; - icon_state = "platform" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) "afJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1788,17 +869,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) -"afL" = ( -/obj/structure/surface/table, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "afM" = ( /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/icefloor, @@ -1826,116 +896,6 @@ dir = 1 }, /area/ice_colony/exterior/surface/cliff) -"afR" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"afT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Material Storage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"afU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"afV" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"afX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afY" = ( -/obj/structure/machinery/light_switch{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"afZ" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"aga" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "agc" = ( /obj/item/stack/sheet/mineral/phoron, /turf/open/floor/plating/icefloor, @@ -1946,35 +906,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/northwest) -"age" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/electric) -"agf" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agg" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agh" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "agi" = ( /turf/closed/wall, /area/ice_colony/surface/engineering) @@ -1986,35 +917,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/northwest) -"agl" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ago" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "agp" = ( /obj/structure/window/framed/colony, /obj/structure/pipes/standard/simple/hidden/green{ @@ -2022,62 +924,12 @@ }, /turf/open/floor/plating, /area/ice_colony/surface/engineering/generator) -"agq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"agr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"ags" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/ice_colony/surface/engineering/generator) -"agt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/ice_colony/surface/engineering/generator) "agu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) -"agv" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering/generator) -"agw" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "agx" = ( /obj/structure/ice/ice_rock/cornerOverlay, /turf/closed/ice_rock/westWall, @@ -2112,138 +964,38 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/north) -"agD" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agE" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"agN" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/substation/smes) +"agO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/clearing/north) +"agP" = ( +/turf/open/auto_turf/snow/layer1, +/area/ice_colony/exterior/surface/clearing/north) +"agQ" = ( +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/valley/northeast) +"agR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/valley/northwest) +"agS" = ( +/obj/structure/tunnel{ + id = "south_tunnel" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/valley/northwest) +"agT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/engineering) -"agF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agG" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agI" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"agK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agL" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/hallway/north_west) -"agM" = ( -/obj/structure/surface/table, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"agN" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/substation/smes) -"agO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/clearing/north) -"agP" = ( -/turf/open/auto_turf/snow/layer1, -/area/ice_colony/exterior/surface/clearing/north) -"agQ" = ( -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/northeast) -"agR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/northwest) -"agS" = ( -/obj/structure/tunnel{ - id = "south_tunnel" - }, -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/northwest) -"agT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer1, -/area/ice_colony/exterior/surface/valley/northwest) -"agV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/auto_turf/snow/layer1, +/area/ice_colony/exterior/surface/valley/northwest) +"agV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/northwest) @@ -2254,65 +1006,12 @@ "agX" = ( /turf/closed/ice_rock/southWall, /area/ice_colony/exterior/surface/valley/north) -"agY" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"agZ" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aha" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "ahb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"ahc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahd" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahe" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) "ahf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2345,12 +1044,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/north) -"ahm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "ahn" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, @@ -2362,123 +1055,16 @@ "ahp" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/west) -"ahq" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"ahr" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahs" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"aht" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahu" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "power_storage_ladder1" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahv" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "power_storage_ladder" - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "ahw" = ( /turf/closed/wall, /area/ice_colony/surface/substation/smes) -"ahx" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahy" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahz" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "ahA" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/west) -"ahB" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) -"ahC" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "ahD" = ( /obj/structure/barricade/metal, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/requesitions) -"ahE" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/surface/requesitions) "ahG" = ( /turf/closed/wall/r_wall, /area/ice_colony/exterior/surface/valley/northwest) @@ -2490,68 +1076,12 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"ahK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Engineering Locker Room" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ahO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) "ahP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/north) -"ahQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "ahR" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -2590,52 +1120,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"ahV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"ahW" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ahX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation/smes) -"ahY" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"ahZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"aia" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "aib" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2645,12 +1129,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aic" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation/smes) "aid" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2704,78 +1182,10 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/cliff) -"ail" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aim" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ain" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aio" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aip" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"aiq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"air" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) "ais" = ( /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"ait" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"aiu" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aiv" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "aiw" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -2783,21 +1193,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aix" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"aiy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) "aiz" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2811,84 +1206,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aiB" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "aiC" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aiD" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"aiE" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"aiF" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "aiG" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"aiH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"aiI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) "aiJ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"aiK" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "aiL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -2940,17 +1270,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/cliff) -"aiT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) "aiU" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ @@ -2959,16 +1278,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aiV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Engineering Backup Power Storage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) "aiW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2978,54 +1287,6 @@ "aiX" = ( /turf/open/ice, /area/ice_colony/exterior/surface/clearing/north) -"aiZ" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"aja" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ajb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/cell/high/empty, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ajc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"ajd" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"aje" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "ajf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, @@ -3041,364 +1302,76 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/northeast) -"ajl" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics North Wing Dome" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajm" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajn" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) "ajq" = ( /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/north) -"ajr" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajs" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) "ajt" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aju" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajv" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, +"ajF" = ( +/obj/item/disk/botany, +/turf/open/gm/grass/grass1, +/area/ice_colony/surface/hydroponics/north) +"ajM" = ( +/obj/item/lightstick/red/planted, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/snow/layer1, +/area/ice_colony/exterior/surface/clearing/north) +"ajQ" = ( +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/surface/hydroponics/lobby) +"ajR" = ( +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/surface/hydroponics/lobby) +"ajS" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/west) +"ajU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark2" + dir = 6 }, -/area/ice_colony/surface/engineering) -"ajw" = ( +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/clearing/north) +"ajV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/clearing/north) +"ajW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkyellow2" + icon_state = "pipe-c" }, -/area/ice_colony/surface/engineering) -"ajx" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/clearing/north) +"ajX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/surface/engineering) -"ajy" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajA" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajB" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ajC" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"ajD" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ajE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation SMES" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"ajF" = ( -/obj/item/disk/botany, -/turf/open/gm/grass/grass1, -/area/ice_colony/surface/hydroponics/north) -"ajG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"ajI" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"ajJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ajL" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajM" = ( -/obj/item/lightstick/red/planted, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/snow/layer1, -/area/ice_colony/exterior/surface/clearing/north) -"ajN" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajO" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/engineering) -"ajP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) -"ajQ" = ( -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/surface/hydroponics/lobby) -"ajR" = ( -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/surface/hydroponics/lobby) -"ajS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/west) -"ajT" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"ajU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/clearing/north) -"ajV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/clearing/north) -"ajW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/clearing/north) +"ajZ" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer2, +/area/ice_colony/exterior/surface/valley/southeast) +"aka" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"ajX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/clearing/north) -"ajY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"ajZ" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer2, -/area/ice_colony/exterior/surface/valley/southeast) -"aka" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/clearing/north) -"akb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"ake" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/engineering) "akf" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 1 @@ -3412,90 +1385,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northwest) -"akh" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad2) -"aki" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"akj" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering) -"akk" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/surface/engineering) -"akl" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/surface/engineering) -"akm" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/engineering/generator) -"akn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation/smes) -"ako" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"akp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"akq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) "akr" = ( /obj/structure/disposalpipe/junction{ dir = 8; @@ -3503,35 +1392,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"aks" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"akt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation/smes) -"aku" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "akv" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -3597,53 +1457,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/north) -"akI" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akJ" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) -"akL" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akM" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akN" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"akO" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "akP" = ( /obj/structure/ice/thin/corner, /turf/open/ice, @@ -3673,120 +1486,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"akU" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"akV" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"akW" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"akX" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"akY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"akZ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"ala" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"alb" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"alc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"ald" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"ale" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"alf" = ( -/obj/structure/curtain/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"alg" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"alh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation/smes) "ali" = ( /obj/structure/ice/thin/straight, /turf/open/ice, @@ -3797,18 +1496,6 @@ "alk" = ( /turf/closed/wall, /area/ice_colony/surface/dorms/restroom_w) -"all" = ( -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"alm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) "aln" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, @@ -3821,12 +1508,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/north) -"alq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "alr" = ( /obj/item/shard, /turf/open/auto_turf/snow/layer2, @@ -3834,23 +1515,6 @@ "als" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/substation) -"alt" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"alu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "alv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -3863,49 +1527,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"alx" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"aly" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"alz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"alA" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"alB" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "alC" = ( /obj/structure/ice/thin/corner, /turf/open/ice, @@ -3953,97 +1574,11 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/north) -"alN" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"alO" = ( -/obj/structure/machinery/shower{ - dir = 4; - pixel_x = 5; - pixel_y = -8 - }, -/obj/effect/landmark/survivor_spawner, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"alP" = ( -/obj/structure/curtain/shower, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"alQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "alR" = ( /turf/closed/ice_rock/singlePart{ dir = 8 }, /area/ice_colony/exterior/surface/cliff) -"alS" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"alT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"alU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"alV" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"alW" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"alX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "alY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/ice, @@ -4052,14 +1587,6 @@ /obj/structure/ore_box, /turf/open/floor/plating, /area/ice_colony/surface/mining) -"ama" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/ice_colony/surface/mining) "amb" = ( /turf/open/floor/plating, /area/ice_colony/surface/mining) @@ -4073,59 +1600,6 @@ }, /turf/open/ice, /area/ice_colony/surface/mining) -"ame" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"amf" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"amg" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"amh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"ami" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"amj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"amk" = ( -/obj/item/tool/soap, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "aml" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -4163,43 +1637,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/north) -"ams" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) -"amt" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation) -"amu" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"amv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation) -"amw" = ( -/obj/structure/surface/table/reinforced, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation/smes) "amx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -4227,51 +1664,18 @@ dir = 8 }, /area/ice_colony/exterior/surface/cliff) -"amD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) "amE" = ( /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"amF" = ( -/obj/structure/closet/wardrobe/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"amG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"amH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"amH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/north) -"amI" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "amJ" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -4345,77 +1749,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/north) -"amU" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"amV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation) -"amW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"amX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"amY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"amZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) -"ana" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/substation) -"anb" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "anc" = ( /turf/open/floor, /area/ice_colony/surface/mining) @@ -4431,81 +1764,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"anf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ang" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"anh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics North Wing Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ani" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"anj" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"ank" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"anl" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) "anm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4525,14 +1783,6 @@ "anp" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/surface/dorms/restroom_e) -"anq" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "anr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4583,60 +1833,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/southeast) -"any" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"anz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"anA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"anB" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "anC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"anD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"anE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"anF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "anG" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating, @@ -4671,119 +1873,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"anM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"anN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"anO" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"anP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"anQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"anR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"anS" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"anT" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"anU" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"anV" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"anW" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"anX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -24 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"anY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"anZ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "aoa" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -4815,17 +1904,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/southeast) -"aoe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Power Substation" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/substation) "aof" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -4864,116 +1942,12 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"aol" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"aom" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"aon" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"aoo" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) "aop" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator2/ground) -"aoq" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"aor" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aos" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aot" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "aou" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/treatment) -"aov" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aow" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aox" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aoy" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aoz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aoA" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aoB" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "aoC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -5056,108 +2030,9 @@ /obj/effect/landmark/crap_item, /turf/open/floor, /area/ice_colony/surface/mining) -"aoR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"aoS" = ( -/obj/structure/closet/crate/hydroponics, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) "aoT" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/pass) -"aoU" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aoV" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aoW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aoX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Recovery Room" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aoY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aoZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"apa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Scanning Unit" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"apb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"apc" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"apd" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "ape" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -5184,62 +2059,6 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"api" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"apj" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apk" = ( -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apl" = ( -/obj/structure/surface/table, -/obj/item/storage/box/botanydisk, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"apm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apn" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"app" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "apq" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor, @@ -5254,175 +2073,23 @@ /obj/item/tool/pickaxe, /turf/open/floor, /area/ice_colony/surface/mining) -"apt" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Upper_Dorms"; - name = "Upper Dorms"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; - airlock_exit = "elevator"; - elevator_network = "dorm"; - airlock_area = /area/shuttle/elevator2/ground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"apu" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"apv" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"apw" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) -"apx" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/ground) "apy" = ( /obj/structure/disposalpipe/segment, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"apz" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "apA" = ( /obj/structure/ice/thin/end{ dir = 8 }, /turf/open/ice, /area/ice_colony/surface/mining) -"apB" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"apC" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"apD" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"apE" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/corpsespawner/scientist, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apF" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apG" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"apH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/treatment) -"apI" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "apJ" = ( /turf/closed/wall, /area/ice_colony/surface/clinic/storage) -"apK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"apL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "apM" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"apN" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"apO" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) "apP" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/storage) @@ -5440,226 +2107,32 @@ /obj/structure/ice/thin/end, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"apT" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) -"apU" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"aqj" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer1, +/area/ice_colony/exterior/surface/clearing/pass) +"aql" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/dorms/restroom_w) -"apV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/auto_turf/snow/layer1, +/area/ice_colony/exterior/surface/clearing/pass) +"aqp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/dorms/restroom_w) -"apW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"apX" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"apY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"apZ" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"aqb" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle3"; - dockId = "Upper_Dorms"; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"aqe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"aqf" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"aqg" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) -"aqh" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aqi" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aqj" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer1, -/area/ice_colony/exterior/surface/clearing/pass) -"aqk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aql" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer1, -/area/ice_colony/exterior/surface/clearing/pass) -"aqm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Aurora Medical Clinic Storage" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/storage) -"aqn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/storage) -"aqo" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/storage) -"aqp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/ice_colony/exterior/surface/clearing/pass) -"aqq" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/storage) -"aqr" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"aqs" = ( -/obj/structure/ice/thin/straight{ - dir = 4 +/turf/open/auto_turf/snow/layer0, +/area/ice_colony/exterior/surface/clearing/pass) +"aqs" = ( +/obj/structure/ice/thin/straight{ + dir = 4 }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) @@ -5677,17 +2150,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"aqv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Men's Restroom" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_w) "aqw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5698,100 +2160,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"aqx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Women's Restroom" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/dorms/restroom_e) "aqA" = ( /obj/structure/ice/thin/end{ dir = 1 }, /turf/open/ice, /area/ice_colony/exterior/surface/clearing/north) -"aqC" = ( -/obj/structure/curtain/open/medical, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aqD" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aqE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aqF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"aqG" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"aqH" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/substation) -"aqI" = ( -/obj/structure/surface/table, -/obj/item/device/defibrillator, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "aqJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5806,160 +2180,6 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/valley/northeast) -"aqL" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/north) -"aqM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) -"aqN" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"aqS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqT" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aqW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"aqX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"aqZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "ara" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ @@ -5968,30 +2188,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"arb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) -"arc" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"ard" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "are" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -6007,17 +2203,6 @@ "arg" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/surface/command/control) -"arh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "ari" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -6031,23 +2216,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"ark" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"arl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "arm" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -6063,24 +2231,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"aro" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"arp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "arq" = ( /obj/structure/machinery/door_control{ id = "st_17"; @@ -6092,85 +2242,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/surface/storage_unit/power) -"arr" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"ars" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "art" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/southeast) -"aru" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "arv" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southeast) -"arw" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"arx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"ary" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"arz" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/treatment) "arA" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/west) -"arB" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "arC" = ( /turf/closed/ice/intersection, /area/ice_colony/exterior/surface/cliff) @@ -6187,25 +2270,6 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"arG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"arH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"arJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "arK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -6232,15 +2296,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/ice_colony/surface/mining) -"arO" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "arP" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -6250,13 +2305,6 @@ "arQ" = ( /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"arR" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "arS" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -6273,96 +2321,10 @@ /obj/structure/closet/jcloset, /turf/open/floor/plating, /area/ice_colony/surface/dorms) -"arW" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"arX" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"arY" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"arZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/treatment) -"asa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/treatment) -"asb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"asc" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"asd" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"ase" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "asf" = ( /obj/structure/ice/thin/corner, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"asg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Dome North Wing"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/north) "ash" = ( /obj/structure/ladder{ height = 2; @@ -6375,33 +2337,6 @@ "asi" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southwest) -"asj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Aurora Medical Clinic Treatment"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"ask" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"asl" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Aurora Medical Clinic Storage" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/storage) "asm" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -6409,40 +2344,6 @@ "asn" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hydroponics/lobby) -"aso" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asr" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "ass" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -6456,22 +2357,6 @@ /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"asv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"asw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "asx" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, @@ -6490,212 +2375,20 @@ "asA" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/clinic/lobby) -"asB" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"asC" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"asD" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"asE" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"asF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"asG" = ( -/obj/structure/flora/pottedplant, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) "asH" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/clinic/lobby) -"asI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"asJ" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"asK" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) "asL" = ( /obj/structure/tunnel{ id = "hydroponics_tunnel" }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"asM" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/exterior/surface/valley/west) -"asN" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"asS" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/exterior/surface/clearing/north) -"asT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"asU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "asV" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"asW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"asX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"asY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"asZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"ata" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"atb" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"atc" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) "atd" = ( /turf/closed/ice/straight{ dir = 4 @@ -6732,43 +2425,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/pass) -"ath" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"ati" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"atj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"atk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"atl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "atm" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, @@ -6814,115 +2470,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) -"atv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whiteredfull" - }, -/area/ice_colony/surface/clinic/lobby) -"atw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"atx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"aty" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"atz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"atA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"atB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"atC" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"atD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"atE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"atF" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "atG" = ( /obj/structure/ice/ice_rock/cornerOverlay, /turf/closed/ice_rock/northWall, @@ -6964,20 +2511,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/floor/grass, /area/ice_colony/surface/hydroponics/lobby) -"atO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"atP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "atQ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, @@ -6990,14 +2523,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"atT" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "atU" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, @@ -7009,104 +2534,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/south) -"atX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Aurora Medical Clinic"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "whiteredfull" - }, -/area/ice_colony/surface/clinic/lobby) -"atY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"atZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"aua" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"aub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auc" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"aud" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "whiteredcorner" - }, -/area/ice_colony/surface/clinic/lobby) -"aue" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auf" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"aug" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auh" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) "aui" = ( /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) @@ -7123,62 +2550,10 @@ "aul" = ( /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/lobby) -"aum" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "aun" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/floor/grass, /area/ice_colony/surface/hydroponics/lobby) -"auo" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"aup" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auq" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aur" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "aus" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/southwest) @@ -7195,34 +2570,6 @@ "auw" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/southwest) -"aux" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/surface/clinic/lobby) -"auz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) "auA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -7233,85 +2580,10 @@ }, /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/lobby) -"auC" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auD" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auE" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auH" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"auI" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "auJ" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/grass, /area/ice_colony/surface/hydroponics/lobby) -"auK" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "auL" = ( /obj/structure/sign/safety/biolab, /turf/closed/wall/r_wall, @@ -7326,25 +2598,6 @@ }, /turf/open/floor/wood, /area/ice_colony/surface/dorms) -"auN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"auO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "auP" = ( /obj/effect/spawner/random/toolbox, /turf/open/auto_turf/snow/layer1, @@ -7360,41 +2613,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/clearing/south) -"auS" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"auV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) "auW" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -7410,97 +2628,6 @@ }, /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/lobby) -"auZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"ava" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avb" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avc" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/sensortower, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"ave" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "avk" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -7508,102 +2635,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/clearing/south) -"avl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"avm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"avn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"avo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"avp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"avq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"avr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"avs" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +"avs" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/clearing/south) -"avt" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"avu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "avw" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, @@ -7637,156 +2675,14 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/hydroponics/lobby) -"avB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Zoo Dome" - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avC" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avD" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avF" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Dome" - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avL" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "avO" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/southwest) -"avP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "avQ" = ( /obj/item/shard, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) -"avR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"avS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Dome" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) "avT" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/layer1, @@ -7799,82 +2695,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/surface/research) -"avV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"avW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) -"avX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"avY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"avZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"awa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/dorms) -"awb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "awc" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, @@ -7914,82 +2734,10 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/hydroponics/lobby) -"awi" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awl" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awo" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) "awp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/floor/grass, /area/ice_colony/surface/hydroponics/lobby) -"awq" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awr" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aws" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "awu" = ( /obj/item/shard, /turf/open/auto_turf/snow/layer2, @@ -8035,20 +2783,6 @@ /obj/structure/machinery/light, /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/lobby) -"awB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "awD" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/floor/grass, @@ -8081,13 +2815,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) -"awH" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "awJ" = ( /obj/item/lightstick/planted, /obj/structure/disposalpipe/segment, @@ -8127,20 +2854,6 @@ "awP" = ( /turf/closed/wall, /area/ice_colony/surface/disposals) -"awQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"awR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) "awT" = ( /obj/structure/closet/cabinet, /obj/item/storage/toolbox/emergency, @@ -8221,43 +2934,12 @@ "axg" = ( /turf/open/floor/plating, /area/ice_colony/surface/disposals) -"axh" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/exterior/surface/valley/west) -"axi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"axj" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/exterior/surface/clearing/north) "axk" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/dorms/lavatory) "axl" = ( /turf/closed/wall, /area/ice_colony/surface/dorms/lavatory) -"axm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms) "axn" = ( /turf/closed/wall, /area/ice_colony/surface/dorms/canteen) @@ -8304,221 +2986,21 @@ }, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) -"axv" = ( -/obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"axw" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"axx" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"axy" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"axz" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) -"axA" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/ice_colony/surface/disposals) "axB" = ( /obj/structure/ice/thin/junction, /turf/open/ice, /area/ice_colony/exterior/surface/valley/west) -"axC" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"axD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"axE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"axF" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"axG" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axH" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axI" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axK" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axM" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dorms_ladder"; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"axN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"axO" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axR" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axU" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"axV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) "axW" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/southwest) +"axX" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) "axY" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -8601,114 +3083,17 @@ "ayl" = ( /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"aym" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"ayn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"ayo" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) "ayp" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/hydroponics/south) -"ayq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Hydroponics Dome South Wing" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"ayr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"ays" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"ayt" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/lavatory) -"ayu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/lavatory) "ayv" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/clearing/south) -"ayw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"ayx" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) "ayy" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer3, /area/ice_colony/exterior/surface/valley/southwest) -"ayz" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) -"ayA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) -"ayB" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) "ayC" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) @@ -8763,30 +3148,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/ice_colony/surface/mining) -"ayL" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/treatment) -"ayM" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) "ayN" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/cliff) @@ -8799,17 +3160,6 @@ "ayQ" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south) -"ayR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Disposals" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/disposals) "ayS" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -8825,85 +3175,19 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) -"ayU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ayW" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/hydroponics/south) +"ayX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/disposals) -"ayV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"ayW" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/hydroponics/south) -"ayX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/ice_colony/exterior/surface/valley/south) -"ayY" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"ayZ" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"aza" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"azb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/lavatory) -"azc" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"azd" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms/lavatory) -"aze" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) "azf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8913,47 +3197,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south) -"azg" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"azh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) -"azi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) -"azj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) -"azk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/dorms/canteen) "azl" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -8986,32 +3229,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south) -"azr" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"azs" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/disposals) "azt" = ( /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) -"azu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/disposals) -"azv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) "azw" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/gm/grass/grass1, @@ -9019,15 +3239,6 @@ "azx" = ( /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/south) -"azy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Lavatory" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/lavatory) "azz" = ( /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) @@ -9035,21 +3246,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/dorms/canteen) -"azB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Canteen" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) -"azC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms/canteen) "azD" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/garage/one) @@ -9072,355 +3268,41 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south) -"azI" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"azJ" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/disposals) -"azK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) "azL" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/gm/grass/grass1, /area/ice_colony/surface/hydroponics/south) -"azM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"azN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/dorms) -"azO" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/dorms) "azP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"azQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "azR" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/garage/repair) -"azS" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"azZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aAa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) "aAb" = ( /turf/closed/wall, /area/ice_colony/surface/garage/one) -"aAc" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAe" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aAj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) "aAk" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAl" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) "aAm" = ( /obj/structure/surface/table, /obj/effect/landmark/good_item, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"aAo" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"aAp" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"aAq" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"aAr" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics South Wing Dome" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aAs" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aAt" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aAu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aAv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aAw" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aAx" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/dorms) -"aAy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "aAz" = ( /obj/structure/surface/table, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAA" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) "aAB" = ( /obj/structure/surface/table, /obj/item/device/camera, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "aAD" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -9435,72 +3317,6 @@ /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAG" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aAH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aAI" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aAJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) -"aAK" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aAL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/dorms) "aAN" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer0, @@ -9509,84 +3325,15 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aAQ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"aAR" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aAS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) "aAT" = ( /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aAV" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/storage) -"aAW" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aAX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) "aAY" = ( /obj/structure/surface/rack, /obj/item/storage/box/lightstick/red, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aAZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"aBa" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) "aBb" = ( /obj/structure/ice/thin/straight{ dir = 4 @@ -9604,221 +3351,14 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/command/checkpoint) -"aBf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) "aBh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/command/checkpoint) -"aBi" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aBj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aBk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aBl" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aBm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aBn" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aBo" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) "aBp" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBq" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aBr" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aBs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aBt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aBu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aBv" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aBw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aBx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aBy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aBz" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBA" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBB" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBC" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBE" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) -"aBF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) "aBG" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/gold, @@ -9839,252 +3379,34 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBK" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aBL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/garage/repair) "aBM" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer1, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) "aBO" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBP" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aBQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aBR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) "aBS" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aBU" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aBV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aBW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) "aBX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aBY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aBZ" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aCa" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCb" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCe" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCf" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aCg" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) "aCh" = ( /obj/structure/surface/table, /obj/item/storage/toolbox/emergency, /turf/open/auto_turf/snow/layer0, /area/ice_colony/exterior/surface/valley/south/excavation) -"aCj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aCm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) "aCo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/ice_colony/surface/garage/repair) -"aCp" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aCq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aCr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aCs" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aCt" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aCu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) "aCv" = ( /obj/structure/ice/ice_rock/cornerOverlay, /turf/closed/ice_rock/northWall{ @@ -10099,6152 +3421,1519 @@ dir = 4 }, /area/ice_colony/exterior/surface/cliff) -"aCx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"aCV" = ( /obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aCy" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aCz" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"aCW" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aDt" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aDu" = ( +/turf/closed/ice/corner, +/area/ice_colony/exterior/surface/valley/southeast) +"aDv" = ( +/turf/closed/ice/corner{ + dir = 1 }, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/surface/valley/southeast) +"aDL" = ( +/obj/item/shard, +/obj/item/stack/rods, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/garage/repair) +"aEd" = ( +/turf/closed/ice/straight, +/area/ice_colony/exterior/surface/valley/southeast) +"aEh" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, +/turf/open/floor/plating, /area/ice_colony/surface/command/control/office) -"aCA" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor{ - icon_state = "dark2" +"aEi" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, +/turf/open/floor/plating, /area/ice_colony/surface/command/control/office) -"aCB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" +"aEj" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Forced Blast Door" }, +/turf/open/floor/plating, /area/ice_colony/surface/command/control/office) -"aCC" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood{ - layer = 3 +"aEm" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/plating, /area/ice_colony/surface/command/control/office) -"aCD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark2" +"aEn" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, /area/ice_colony/surface/command/control/office) -"aCE" = ( -/obj/structure/window/reinforced/tinted{ +"aEp" = ( +/obj/item/stack/rods, +/obj/item/shard, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/command/checkpoint) +"aEA" = ( +/turf/closed/ice/end{ dir = 8 }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/surface/valley/southeast) +"aEB" = ( +/turf/closed/ice/junction{ + dir = 8 }, -/area/ice_colony/surface/command/control/office) -"aCF" = ( -/obj/structure/surface/table, -/obj/item/folder/white, -/obj/structure/machinery/firealarm{ +/area/ice_colony/exterior/surface/valley/southeast) +"aEC" = ( +/turf/closed/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aED" = ( +/obj/item/tool/hatchet, +/turf/open/gm/grass/grass1, +/area/ice_colony/surface/hydroponics/south) +"aEG" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/command/control) +"aEN" = ( +/obj/item/shard, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"aCG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + name = "\improper Forced Blast Door" }, -/obj/item/weapon/gun/energy/taser, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/plating, +/area/ice_colony/surface/command/control) +"aEW" = ( +/obj/item/shard, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/garage/repair) +"aFu" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/ice_colony/surface/command/checkpoint) -"aCH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"aFx" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/command/checkpoint) -"aCI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"aFE" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/storage_unit/power) +"aFK" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/ice_colony/surface/dorms) +"aGf" = ( +/turf/closed/ice/end{ + dir = 1 }, -/area/ice_colony/surface/command/checkpoint) -"aCK" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/area/ice_colony/exterior/surface/valley/southeast) +"aGh" = ( +/turf/closed/ice_rock/singleT{ + dir = 8 }, -/area/ice_colony/surface/garage/repair) -"aCL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/area/ice_colony/exterior/surface/cliff) +"aGr" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/surface/command/control) +"aGC" = ( +/obj/structure/ice/thin/end{ + dir = 8 }, -/area/ice_colony/surface/garage/repair) -"aCM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aGD" = ( +/obj/structure/ice/thin/straight{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aCN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aGE" = ( +/obj/structure/ice/thin/end{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aGL" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/command/crisis) +"aGM" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/area/ice_colony/surface/garage/repair) -"aCP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/ice_colony/surface/command/crisis) +"aGN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Forced Blast Door" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Crisis Room" }, -/area/ice_colony/surface/garage/one) -"aCQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aGO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Forced Blast Door" }, -/area/ice_colony/surface/garage/one) -"aCR" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aGP" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Forced Blast Door" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/surface/command/crisis) +"aGQ" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/area/ice_colony/surface/garage/one) -"aCS" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/plating, +/area/ice_colony/surface/command/crisis) +"aGR" = ( +/turf/closed/wall, +/area/ice_colony/surface/command/control/pv1) +"aGS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aGT" = ( +/turf/closed/wall, +/area/ice_colony/surface/command/control/pv2) +"aGU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Colony Administration Office" }, -/area/ice_colony/surface/garage/one) -"aCU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aGV" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/command/control/pv2) +"aHa" = ( +/obj/structure/ice/thin/end{ + dir = 1 }, -/area/ice_colony/surface/garage/two) -"aCW" = ( -/obj/structure/ice/thin/single, /turf/open/ice, /area/ice_colony/exterior/surface/clearing/pass) -"aCY" = ( -/obj/structure/surface/table, +"aHf" = ( +/turf/closed/ice/end{ + dir = 4 + }, +/area/ice_colony/exterior/surface/valley/southeast) +"aHg" = ( /obj/structure/machinery/alarm{ dir = 4; pixel_x = -24 }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDa" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aDb" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aDc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aDd" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHh" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/ice_colony/surface/command/control/office) -"aDe" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/ice_colony/surface/command/checkpoint) -"aDf" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDg" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHl" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/shard, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDh" = ( -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/obj/item/shard, -/obj/item/shard, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDm" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aDn" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aDo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aDp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aDq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Garage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aDr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHq" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHr" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aDt" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aDu" = ( -/turf/closed/ice/corner, -/area/ice_colony/exterior/surface/valley/southeast) -"aDv" = ( -/turf/closed/ice/corner{ - dir = 1 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aDw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHs" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 2; - icon_state = "pipe-u" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aDx" = ( -/obj/structure/closet/crate/hydroponics, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" + dir = 8 }, -/area/ice_colony/surface/hydroponics/south) -"aDy" = ( -/obj/structure/surface/table, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHt" = ( +/obj/structure/closet/secure_closet/personal, /obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDz" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDA" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDC" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHu" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHv" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDD" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aDE" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDF" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDG" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDH" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHx" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aHD" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/checkpoint) -"aDK" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" + pixel_x = -24 }, -/area/ice_colony/surface/command/checkpoint) -"aDL" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/garage/repair) -"aDM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHE" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHF" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHG" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHH" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/ice_colony/surface/garage/repair) -"aDN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHJ" = ( +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "darkyellow2" + pixel_x = -24 }, -/area/ice_colony/surface/garage/repair) -"aDO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHK" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aHM" = ( +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" + pixel_x = -24 }, -/area/ice_colony/surface/garage/one) -"aDP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHN" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aHS" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aHT" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aDQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHU" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aHZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIa" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aDR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 }, -/area/ice_colony/surface/garage/one) -"aDS" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aId" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aIf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aIh" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aIj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aIk" = ( +/obj/structure/ice/thin/corner{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aIl" = ( +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aIo" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aIp" = ( +/obj/structure/closet/secure_closet/guncabinet, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIq" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, /obj/effect/decal/cleanable/blood{ - dir = 4; icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aDT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIr" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIs" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIt" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/door_control{ + name = "Colony Administration Lockdown" }, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIy" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "pipe-j2" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aDU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aIA" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"aIB" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "pipe-c" + pixel_x = -24 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aID" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"aIE" = ( +/obj/structure/ice/thin/corner{ + dir = 8 }, -/area/ice_colony/surface/garage/one) -"aDV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aIG" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/closed/ice_rock/eastWall, +/area/ice_colony/exterior/surface/cliff) +"aII" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/ice_colony/surface/garage/one) -"aDW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIL" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIM" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Colony Garage" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIN" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/landmark/corpsespawner/bridgeofficer, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIO" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIP" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/command/control/pv1) +"aIQ" = ( +/obj/structure/ice/thin/corner{ + dir = 1 }, -/area/ice_colony/surface/garage/one) -"aDX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aIU" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aDY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/turf/closed/ice_rock/corners, +/area/ice_colony/exterior/surface/cliff) +"aIV" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/surface/garage/two) -"aEa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aEb" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIY" = ( +/obj/item/device/pinpointer, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aIZ" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"aJa" = ( +/obj/structure/ice/ice_rock/cornerOverlay, +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aEc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/closed/ice_rock/corners, +/area/ice_colony/exterior/surface/cliff) +"aJb" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/closed/ice_rock/southWall, +/area/ice_colony/exterior/surface/cliff) +"aJc" = ( +/obj/structure/ice/thin/junction{ + dir = 8 }, -/area/ice_colony/surface/garage/two) -"aEd" = ( -/turf/closed/ice/straight, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aJd" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/storage_unit/telecomms) +"aJf" = ( +/turf/closed/wall/r_wall, /area/ice_colony/exterior/surface/valley/southeast) -"aEe" = ( -/obj/structure/disposalpipe/segment, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aEg" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aEh" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +"aJg" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aJk" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aJl" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/surface/hangar/checkpoint) +"aJx" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/control/office) -"aEi" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/turf/closed/ice_rock/southWall, +/area/ice_colony/exterior/surface/cliff) +"aJy" = ( +/obj/structure/ice/thin/end{ + dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/control/office) -"aEj" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "\improper Forced Blast Door" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJB" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator1/ground) +"aJG" = ( +/obj/structure/tunnel{ + id = "south_tcomms_tunnel" }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/control/office) -"aEk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aJH" = ( +/obj/structure/ice/thin/end{ + dir = 8 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Offices" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJI" = ( +/obj/structure/ice/thin/straight{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJJ" = ( +/obj/structure/ice/thin/junction{ + dir = 1 }, -/area/ice_colony/surface/command/control/office) -"aEl" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJK" = ( +/obj/structure/ice/thin/end{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJM" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJN" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aJO" = ( +/obj/structure/ice/thin/junction{ + dir = 1 }, -/area/ice_colony/surface/command/control/office) -"aEm" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/pass) +"aJQ" = ( +/obj/structure/ice/thin/corner{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aKd" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aKf" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/storage_unit/research) +"aKh" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/hangar/checkpoint) +"aKk" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/west) +"aKl" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aKs" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aKt" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aKw" = ( +/turf/closed/wall, +/area/ice_colony/surface/bar/canteen) +"aKx" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating, -/area/ice_colony/surface/command/control/office) -"aEn" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" +/area/ice_colony/surface/bar/canteen) +"aKy" = ( +/turf/closed/wall, +/area/ice_colony/surface/bar/bar) +"aKz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Anti-Freeze Bar" }, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aKA" = ( /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aKB" = ( +/obj/structure/window/framed/colony, /turf/open/floor/plating, -/area/ice_colony/surface/command/control/office) -"aEp" = ( -/obj/item/stack/rods, -/obj/item/shard, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/command/checkpoint) -"aEq" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1; - icon_state = "tableflip0" +/area/ice_colony/surface/bar/bar) +"aKH" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aKI" = ( +/obj/structure/ice/thin/straight{ + dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aKJ" = ( +/obj/structure/ice/thin/corner{ + dir = 1 }, -/area/ice_colony/surface/garage/repair) -"aEr" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aKT" = ( +/obj/structure/ice/thin/corner{ + dir = 4 }, -/area/ice_colony/surface/garage/repair) -"aEs" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aKU" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/garage/repair) -"aEt" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aKV" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aKW" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aKX" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aKY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aKZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLa" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/surface/garage/repair) -"aEu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/surface/garage/repair) -"aEv" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" }, -/area/ice_colony/surface/garage/one) -"aEw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/surface/garage/one) -"aEx" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLe" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLf" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLg" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/garage/one) -"aEy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLh" = ( +/obj/structure/bed/chair{ + icon_state = "wooden_chair" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLi" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/garage/one) -"aEz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLk" = ( +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aLt" = ( +/turf/closed/ice/corner{ + dir = 4 }, -/area/ice_colony/surface/garage/two) -"aEA" = ( -/turf/closed/ice/end{ +/area/ice_colony/exterior/surface/valley/southeast) +"aLw" = ( +/obj/structure/ice/thin/corner{ dir = 8 }, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southwest) +"aLx" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aLz" = ( +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLA" = ( +/obj/item/trash/chips, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLH" = ( +/turf/closed/ice/straight{ + dir = 4 + }, /area/ice_colony/exterior/surface/valley/southeast) -"aEB" = ( -/turf/closed/ice/junction{ +"aLI" = ( +/turf/closed/ice/corner{ dir = 8 }, /area/ice_colony/exterior/surface/valley/southeast) -"aEC" = ( -/turf/closed/ice, +"aLJ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/ice, /area/ice_colony/exterior/surface/valley/southeast) -"aED" = ( -/obj/item/tool/hatchet, -/turf/open/gm/grass/grass1, -/area/ice_colony/surface/hydroponics/south) -"aEE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aEF" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aEG" = ( +"aLK" = ( /turf/closed/wall/r_wall, -/area/ice_colony/surface/command/control) -"aEH" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aEI" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aEJ" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aEK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/area/ice_colony/surface/research/field_gear) +"aLL" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/surface/research/field_gear) +"aLM" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/surface/research) +"aLN" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/research) +"aLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/surface/command/control) -"aEL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/command/control) -"aEM" = ( -/obj/item/stack/rods, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLT" = ( +/obj/item/tool/shovel/snow, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/command/control) -"aEN" = ( -/obj/item/shard, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/control) -"aEO" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "darkblue2" + name = "\improper Anti-Freeze Canteen" }, -/area/ice_colony/surface/command/control) -"aEP" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aLW" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/command/control) -"aEQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLX" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/surface/table{ - flipped = 1; - icon_state = "tableflip0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aER" = ( -/obj/structure/surface/table{ - flipped = 1; - icon_state = "tableflip0" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aES" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aLZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/area/ice_colony/surface/command/control) -"aET" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aEU" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aEV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aEW" = ( -/obj/item/shard, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/garage/repair) -"aEX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Garage Repair Station" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/repair) -"aEY" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aEZ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/one) -"aFb" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFc" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "garage_ladder" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aFe" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aFf" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/garage/two) -"aFg" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Hydroponics South Wing Technical Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFn" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aFo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFr" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFv" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aFy" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFz" = ( -/obj/structure/machinery/door_control{ - id = "garage_ice_1"; - name = "garage shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFA" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aFB" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aFC" = ( -/obj/structure/machinery/door_control{ - id = "garage_ice_2"; - name = "garage shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aFE" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/storage_unit/power) -"aFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFI" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFJ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aFK" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/ice_colony/surface/dorms) -"aFL" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aFM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFR" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Colony Control Center" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFU" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFW" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aFX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aFY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Colony Garage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/one) -"aFZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_1"; - name = "\improper Garage Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/one) -"aGb" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Colony Garage" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/garage/two) -"aGc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "garage_ice_2"; - name = "\improper Garage Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aGd" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aGe" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aGf" = ( -/turf/closed/ice/end{ - dir = 1 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aGg" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aGh" = ( -/turf/closed/ice_rock/singleT{ - dir = 8 - }, -/area/ice_colony/exterior/surface/cliff) -"aGi" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGj" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGk" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aGm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGr" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/control) -"aGs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control) -"aGu" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control) -"aGC" = ( -/obj/structure/ice/thin/end{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aGD" = ( -/obj/structure/ice/thin/straight{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aGE" = ( -/obj/structure/ice/thin/end{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aGF" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aGH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aGI" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aGJ" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aGK" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "hydroponics_ladder"; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aGL" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/command/crisis) -"aGM" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/crisis) -"aGN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Crisis Room" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aGO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "\improper Forced Blast Door" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aGP" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - name = "\improper Forced Blast Door" - }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/crisis) -"aGQ" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - id = "colony_admin_top"; - name = "\improper Colony Administration Blast Door" - }, -/turf/open/floor/plating, -/area/ice_colony/surface/command/crisis) -"aGR" = ( -/turf/closed/wall, -/area/ice_colony/surface/command/control/pv1) -"aGS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aGT" = ( -/turf/closed/wall, -/area/ice_colony/surface/command/control/pv2) -"aGU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Colony Administration Office" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aGV" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/command/control/pv2) -"aHa" = ( -/obj/structure/ice/thin/end{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aHb" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHd" = ( -/obj/structure/machinery/door_control{ - id = "st_17"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - req_access_txt = "100"; - specialfunctions = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHf" = ( -/turf/closed/ice/end{ - dir = 4 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aHg" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/safe, -/obj/item/spacecash/c1000{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c500, -/obj/effect/landmark/good_item, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHh" = ( -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHi" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/shard, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHp" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHq" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHt" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/good_item, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHu" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHx" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aHy" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/surface/clinic/lobby) -"aHB" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "st_17"; - locked = 0; - name = "Power Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHD" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHE" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHF" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHG" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHH" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHJ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHK" = ( -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aHM" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHN" = ( -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHO" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aHP" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHQ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aHS" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aHT" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHV" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aHW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHX" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aHY" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aHZ" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aId" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aIf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aIg" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aIh" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aIj" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aIk" = ( -/obj/structure/ice/thin/corner{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aIl" = ( -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aIm" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aIn" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/power) -"aIo" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aIp" = ( -/obj/structure/closet/secure_closet/guncabinet, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIq" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIr" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIs" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIt" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/door_control{ - name = "Colony Administration Lockdown" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/handcuffs, -/obj/item/tool/stamp, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIw" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/surface/hydroponics/lobby) -"aIx" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIy" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aIz" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aIA" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"aIB" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aIC" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aID" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"aIE" = ( -/obj/structure/ice/thin/corner{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aIG" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 1 - }, -/turf/closed/ice_rock/eastWall, -/area/ice_colony/exterior/surface/cliff) -"aII" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIL" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIM" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIN" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIO" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIP" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/command/control/pv1) -"aIQ" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aIS" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"aIT" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) -"aIU" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/corners, -/area/ice_colony/exterior/surface/cliff) -"aIV" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIY" = ( -/obj/item/device/pinpointer, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aIZ" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"aJa" = ( -/obj/structure/ice/ice_rock/cornerOverlay, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/corners, -/area/ice_colony/exterior/surface/cliff) -"aJb" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/southWall, -/area/ice_colony/exterior/surface/cliff) -"aJc" = ( -/obj/structure/ice/thin/junction{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aJd" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/storage_unit/telecomms) -"aJe" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "st_18"; - locked = 0; - name = "Disposals Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJf" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/exterior/surface/valley/southeast) -"aJg" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aJh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJj" = ( -/obj/structure/machinery/door_control{ - id = "st_18"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJk" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aJl" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/surface/hangar/checkpoint) -"aJm" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJp" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJq" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJr" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) -"aJs" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJt" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) -"aJu" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJx" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/turf/closed/ice_rock/southWall, -/area/ice_colony/exterior/surface/cliff) -"aJy" = ( -/obj/structure/ice/thin/end{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJz" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJA" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"aJB" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator1/ground) -"aJC" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Arrivals"; - name = "Lower Arrivals"; - airlock_exit = "elevator"; - elevator_network = "Arrivals"; - airlock_area = /area/shuttle/elevator1/underground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"aJD" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJE" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJF" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/telecomms) -"aJG" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aJH" = ( -/obj/structure/ice/thin/end{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJI" = ( -/obj/structure/ice/thin/straight{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJJ" = ( -/obj/structure/ice/thin/junction{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJK" = ( -/obj/structure/ice/thin/end{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJM" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJN" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJO" = ( -/obj/structure/ice/thin/junction{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/pass) -"aJQ" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aJY" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Upper_Arrivals"; - name = "Upper Arrivals"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/arrivals; - airlock_exit = "elevator"; - elevator_network = "Arrivals"; - airlock_area = /area/shuttle/elevator1/ground - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aJZ" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"aKa" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aKb" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"aKc" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/ground) -"aKd" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aKf" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/storage_unit/research) -"aKh" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/hangar/checkpoint) -"aKi" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKj" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/west) -"aKl" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aKn" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKo" = ( -/obj/structure/surface/rack, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/obj/item/ammo_rcd, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "research_storage_ladder" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKq" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKr" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKs" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aKt" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aKw" = ( -/turf/closed/wall, -/area/ice_colony/surface/bar/canteen) -"aKx" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/canteen) -"aKy" = ( -/turf/closed/wall, -/area/ice_colony/surface/bar/bar) -"aKz" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Anti-Freeze Bar" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aKA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aKB" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/bar) -"aKH" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aKI" = ( -/obj/structure/ice/thin/straight{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aKJ" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aKK" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKL" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKN" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle4"; - dockId = "Upper_Arrivals"; - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKO" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aKQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKS" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aKT" = ( -/obj/structure/ice/thin/corner{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aKU" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aKV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aKW" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aKX" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aKY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aKZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLa" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLe" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLf" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLg" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLh" = ( -/obj/structure/bed/chair{ - icon_state = "wooden_chair" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLi" = ( -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLk" = ( -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aLl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLt" = ( -/turf/closed/ice/corner{ - dir = 4 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aLv" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aLw" = ( -/obj/structure/ice/thin/corner{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southwest) -"aLx" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aLz" = ( -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLA" = ( -/obj/item/trash/chips, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aLH" = ( -/turf/closed/ice/straight{ - dir = 4 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aLI" = ( -/turf/closed/ice/corner{ - dir = 8 - }, -/area/ice_colony/exterior/surface/valley/southeast) -"aLJ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aLK" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/research/field_gear) -"aLL" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/surface/research/field_gear) -"aLM" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/surface/research) -"aLN" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/research) -"aLO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aLP" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aLQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLT" = ( -/obj/item/tool/shovel/snow, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Canteen" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aLW" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLX" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aLZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMb" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMc" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "wooden_chair" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMe" = ( -/obj/structure/surface/table/gamblingtable{ - dir = 4; - flipped = 1; - icon_state = "gambleflip0" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMf" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "wooden_chair" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMg" = ( -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/bar) -"aMh" = ( -/obj/structure/ice/thin/end{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aMi" = ( -/obj/structure/ice/thin/end{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aMj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMl" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" - }, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMt" = ( -/obj/structure/fence, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aMu" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/west) -"aMv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aMw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aMx" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/disposals) -"aMy" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aMz" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"aMA" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"aMB" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aMC" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aMD" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aME" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aMF" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aMH" = ( -/obj/structure/ice/thin/corner{ - dir = 4 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aMI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"aMK" = ( -/obj/item/stack/rods, -/obj/item/shard, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/canteen) -"aML" = ( -/obj/item/stool, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMN" = ( -/obj/item/shard, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMO" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMP" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMQ" = ( -/obj/structure/bed/chair{ - dir = 1; - icon_state = "wooden_chair" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aMR" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/bar) -"aMT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" - }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMX" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aMY" = ( -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 8 - }, -/obj/structure/ice/ice_rock/cornerOverlay{ - dir = 4 - }, -/turf/closed/ice_rock/southWall, -/area/ice_colony/exterior/surface/cliff) -"aMZ" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aNa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aNb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/field_gear) -"aNc" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/field_gear) -"aNd" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aNe" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"aNf" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator3/ground) -"aNg" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator2/underground) -"aNh" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aNi" = ( -/obj/item/tool/shovel/snow, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNj" = ( -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aNp" = ( -/obj/structure/machinery/door_control{ - id = "st_19"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = -24; - req_access_txt = "103"; - specialfunctions = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aNq" = ( -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aNr" = ( -/obj/structure/ice/thin/corner{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/clearing/south) -"aNs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNt" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNv" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNw" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNx" = ( -/obj/effect/landmark/crap_item, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNy" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNz" = ( -/obj/structure/machinery/door/window/northright{ - name = "Canteen" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNA" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aND" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/wood, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aNE" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aNF" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/bar) -"aNK" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aNL" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/garage/two) -"aNM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aNN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aNO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aNP" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aNQ" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/field_gear) -"aNR" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aNT" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNU" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aNV" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "st_19"; - locked = 0; - name = "Research Storage Unit" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/surface/storage_unit/research) -"aNW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -32 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aNZ" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aOa" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/plating, -/area/ice_colony/surface/bar/canteen) -"aOb" = ( -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOe" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOf" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/hangar/alpha) -"aOg" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/hangar/alpha) -"aOh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Security Checkpoint" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aOi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"aOj" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/hangar/beta) -"aOk" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aOl" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aOm" = ( -/turf/closed/wall, -/area/ice_colony/surface/research/field_gear) -"aOn" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/ice_colony/surface/research/field_gear) -"aOo" = ( -/turf/closed/wall, -/area/ice_colony/surface/research) -"aOp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Omicron Custodial Storage" - }, -/turf/open/floor/plating, -/area/ice_colony/surface/research) -"aOu" = ( -/turf/closed/ice_rock/singleT{ - dir = 4 - }, -/area/ice_colony/exterior/surface/cliff) -"aOv" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/garage/repair) -"aOw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aOy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aOz" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aOA" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aOB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOC" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOD" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/door/window/northright{ - dir = 4; - name = "Bar" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aOG" = ( -/obj/item/shard, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/hangar/alpha) -"aOH" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOL" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aON" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOP" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall0" - }, -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aOQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aOR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aOS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aOT" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aOV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"aOW" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aOX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "hangar_ladder"; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aOY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "hangar_ladder1"; - pixel_y = 16 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aOZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aPa" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"aPb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"aPc" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aPd" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aPe" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aPf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aPg" = ( -/obj/docking_port/stationary/trijent_elevator{ - airlock_area = /area/shuttle/elevator3/ground; - airlock_exit = "elevator"; - elevator_network = "Omicorn"; - height = 5; - width = 8; - name = "Upper Omicorn"; - id = "Upper_Omicorn"; - roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/omicorn - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aPh" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aPi" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) -"aPj" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"aPk" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/ground) -"aPl" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aPm" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aPn" = ( -/obj/structure/machinery/door_control{ - id = "research_entrance"; - name = "Research Entrance Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - req_access_txt = "103"; - specialfunctions = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aPr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPs" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPt" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/surface/table, -/obj/item/tool/soap, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPw" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/trash/plate{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aPx" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aPy" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aPz" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aPA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aPB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aPC" = ( -/obj/item/stack/rods, -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/surface/hangar/alpha) -"aPD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPE" = ( -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPH" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPI" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPJ" = ( -/obj/structure/window/shuttle, -/turf/open/shuttle/plating, -/area/ice_colony/surface/hangar/alpha) -"aPK" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aPP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aPR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aPS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aPT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aPU" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aPV" = ( -/obj/structure/window/shuttle, -/turf/open/shuttle/plating, -/area/ice_colony/surface/hangar/beta) -"aPW" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aPX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aPY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aPZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aQa" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aQb" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aQc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/field_gear) -"aQd" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 8; - name = "\improper Omicron Field Gear Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/field_gear) -"aQe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aQf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aQg" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aQh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aQi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aQj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aQk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aQl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aQm" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - id = "research_entrance"; - locked = 0; - name = "Omicron Research Dome" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aQt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Canteen Freezer" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aQu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Bar Freezer" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aQw" = ( -/obj/structure/bed/stool, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aQx" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aQz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aQA" = ( -/obj/effect/spawner/random/tool, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aQB" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aQC" = ( -/obj/structure/computerframe, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aQD" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aQG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Aerodrome Hangar Alpha" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aQI" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aQJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aQK" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aQL" = ( -/obj/structure/computerframe, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aQM" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aQN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aQO" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aQP" = ( -/obj/structure/ice/thin, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aQQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aQR" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/field_gear) -"aQT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aQV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aQW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aQX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aRd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aRe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/research) -"aRf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aRm" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRn" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRo" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRp" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRq" = ( -/obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRr" = ( -/obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRs" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aRt" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aRu" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aRv" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aRw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aRx" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"aRy" = ( -/turf/closed/shuttle{ - icon_state = "swall3" - }, -/area/ice_colony/surface/hangar/alpha) -"aRz" = ( -/obj/structure/machinery/light, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aRA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aRB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aRD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aRE" = ( -/turf/closed/shuttle{ - icon_state = "swall3" - }, -/area/ice_colony/surface/hangar/beta) -"aRF" = ( -/obj/structure/machinery/light, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aRG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aRH" = ( -/obj/structure/machinery/light, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aRI" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aRJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aRK" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aRM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aRS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aRT" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aRV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aRW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aRY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aRZ" = ( -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aSa" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aSb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aSc" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aSd" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aSe" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aSf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aSg" = ( -/turf/closed/shuttle{ - icon_state = "swall7" - }, -/area/ice_colony/surface/hangar/alpha) -"aSh" = ( -/turf/closed/shuttle{ - icon_state = "swall8" - }, -/area/ice_colony/surface/hangar/alpha) -"aSi" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aSj" = ( -/turf/closed/shuttle{ - icon_state = "swall4" - }, -/area/ice_colony/surface/hangar/alpha) -"aSk" = ( -/turf/closed/shuttle{ - icon_state = "swall11" - }, -/area/ice_colony/surface/hangar/alpha) -"aSm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aSn" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aSo" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aSp" = ( -/turf/closed/shuttle{ - icon_state = "swall7" - }, -/area/ice_colony/surface/hangar/beta) -"aSq" = ( -/turf/closed/shuttle{ - icon_state = "swall8" - }, -/area/ice_colony/surface/hangar/beta) -"aSr" = ( -/obj/structure/machinery/door/unpowered/shuttle, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aSs" = ( -/turf/closed/shuttle{ - icon_state = "swall4" - }, -/area/ice_colony/surface/hangar/beta) -"aSt" = ( -/turf/closed/shuttle{ - icon_state = "swall11" - }, -/area/ice_colony/surface/hangar/beta) -"aSu" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aSv" = ( -/obj/structure/ice/thin/junction{ - dir = 8 - }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/southeast) -"aSw" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/surface/research/temporary) -"aSx" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aSy" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aSz" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/effect/landmark/good_item, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aSA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/command/control/office) -"aSB" = ( -/turf/closed/wall, -/area/ice_colony/surface/research/temporary) -"aSC" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aSD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aSF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aSG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aSH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aSI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aSJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aSK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aSL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aSM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - id = "researchoutside"; - name = "Research Garage Lock"; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aSO" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aSP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aSQ" = ( -/obj/structure/plasticflaps, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aSR" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aSS" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aST" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aSU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aSV" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aSW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aSY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aSZ" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aTa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aTb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aTc" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aTd" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aTe" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aTf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aTg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aTh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aTi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aTj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aTk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" - }, -/area/ice_colony/surface/research) -"aTl" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aTm" = ( -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aTn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/research) -"aTo" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/valley/southwest) -"aTp" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/valley/southwest) -"aTr" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aTs" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aTt" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "canteen_ladder" - }, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aTu" = ( -/obj/structure/closet/bodybag, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aTv" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/canteen) -"aTw" = ( -/obj/structure/kitchenspike, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/ice_colony/surface/bar/bar) -"aTx" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aTz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aTA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aTE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aTH" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aTI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aTJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMb" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aTK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMc" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "wooden_chair" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aTL" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMd" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Omicron Temporary Sample Storage" - }, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMe" = ( +/obj/structure/surface/table/gamblingtable{ dir = 4; - icon_state = "darkyellow2" + flipped = 1; + icon_state = "gambleflip0" }, -/area/ice_colony/surface/research/temporary) -"aTM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMf" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "wooden_chair" }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMg" = ( +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/bar/bar) +"aMh" = ( +/obj/structure/ice/thin/end{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aTN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aMi" = ( +/obj/structure/ice/thin/end{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research) -"aTO" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aMt" = ( +/obj/structure/fence, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aMu" = ( +/obj/structure/tunnel{ + id = "north_research_tunnel" }, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/west) +"aMD" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aTQ" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor{ - icon_state = "dark2" - }, +"aME" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aTR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" - }, +"aMF" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aTS" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/valley/southwest) -"aTT" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +"aMH" = ( +/obj/structure/ice/thin/corner{ + dir = 4 }, -/area/ice_colony/exterior/surface/valley/southwest) -"aTY" = ( /turf/open/ice, -/area/ice_colony/exterior/surface/cliff) -"aTZ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aUa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aUb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aUc" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/research) -"aUd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +/area/ice_colony/exterior/surface/clearing/south) +"aMI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"aMK" = ( +/obj/item/stack/rods, +/obj/item/shard, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/bar/canteen) +"aML" = ( +/obj/item/stool, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMN" = ( +/obj/item/shard, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMO" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMP" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMQ" = ( +/obj/structure/bed/chair{ dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkbrown2" + icon_state = "wooden_chair" }, -/area/ice_colony/surface/research) -"aUe" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aMR" = ( +/obj/item/stack/rods, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/bar/bar) +"aMY" = ( +/obj/structure/ice/ice_rock/cornerOverlay{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/obj/structure/ice/ice_rock/cornerOverlay{ + dir = 4 }, +/turf/closed/ice_rock/southWall, +/area/ice_colony/exterior/surface/cliff) +"aNf" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator3/ground) +"aNi" = ( +/obj/item/tool/shovel/snow, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aUf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +"aNj" = ( +/turf/open/floor/plating, +/area/ice_colony/surface/research) +"aNk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating, +/area/ice_colony/surface/research) +"aNl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/ice_colony/surface/research) +"aNr" = ( +/obj/structure/ice/thin/corner{ + dir = 8 }, +/turf/open/ice, +/area/ice_colony/exterior/surface/clearing/south) +"aNA" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aND" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/wood, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aNE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aNF" = ( +/obj/item/shard, +/obj/item/stack/rods, +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/bar/bar) +"aNT" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aUg" = ( +"aNU" = ( +/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aUh" = ( -/turf/closed/shuttle{ - icon_state = "swall1" - }, +"aOa" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/plating, +/area/ice_colony/surface/bar/canteen) +"aOb" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOe" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOf" = ( +/turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/alpha) -"aUk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/command/control/office) -"aUm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aUn" = ( -/turf/closed/shuttle{ - icon_state = "swall1" - }, +"aOg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/hangar/alpha) +"aOj" = ( +/turf/closed/wall/r_wall, /area/ice_colony/surface/hangar/beta) -"aUq" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/ice_colony/exterior/surface/landing_pad_external) -"aUr" = ( -/obj/structure/fence, -/turf/open/ice, -/area/ice_colony/exterior/surface/cliff) -"aUs" = ( +"aOm" = ( +/turf/closed/wall, +/area/ice_colony/surface/research/field_gear) +"aOn" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, -/area/ice_colony/surface/research/temporary) -"aUt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/area/ice_colony/surface/research/field_gear) +"aOo" = ( +/turf/closed/wall, +/area/ice_colony/surface/research) +"aOp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" + name = "\improper Omicron Custodial Storage" }, +/turf/open/floor/plating, /area/ice_colony/surface/research) -"aUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 +"aOu" = ( +/turf/closed/ice_rock/singleT{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/area/ice_colony/exterior/surface/cliff) +"aOx" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"aOB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/area/ice_colony/surface/research) -"aUv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOC" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/research) -"aUw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOD" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/door/window/northright{ + dir = 4; + name = "Bar" }, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aOG" = ( +/obj/item/shard, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/hangar/alpha) +"aPx" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aPy" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "darkpurple2" + pixel_y = -24 }, -/area/ice_colony/surface/research) -"aUx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aPA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 }, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aPB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/area/ice_colony/surface/research) -"aUy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aPC" = ( +/obj/item/stack/rods, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/surface/hangar/alpha) +"aPJ" = ( +/obj/structure/window/shuttle, +/turf/open/shuttle/plating, +/area/ice_colony/surface/hangar/alpha) +"aPQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/temporary) +"aPV" = ( +/obj/structure/window/shuttle, +/turf/open/shuttle/plating, +/area/ice_colony/surface/hangar/beta) +"aQw" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aQx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "researchoutside"; - name = "Omicron Research Dome" +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aQP" = ( +/obj/structure/ice/thin, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aRh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"aRw" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aRx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"aRy" = ( +/turf/closed/shuttle{ + icon_state = "swall3" }, -/area/ice_colony/surface/research) -"aUz" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +/area/ice_colony/surface/hangar/alpha) +"aRE" = ( +/turf/closed/shuttle{ + icon_state = "swall3" }, -/area/ice_colony/exterior/surface/valley/southwest) -"aUA" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" +/area/ice_colony/surface/hangar/beta) +"aSg" = ( +/turf/closed/shuttle{ + icon_state = "swall7" }, -/area/ice_colony/exterior/surface/valley/southwest) -"aUH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/ice_colony/surface/hangar/alpha) +"aSh" = ( +/turf/closed/shuttle{ + icon_state = "swall8" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/area/ice_colony/surface/hangar/alpha) +"aSj" = ( +/turf/closed/shuttle{ + icon_state = "swall4" }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/surface/hangar/alpha) +"aSk" = ( +/turf/closed/shuttle{ + icon_state = "swall11" }, -/area/ice_colony/surface/hangar/hallway) -"aUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/ice_colony/surface/hangar/alpha) +"aSp" = ( +/turf/closed/shuttle{ + icon_state = "swall7" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/ice_colony/surface/hangar/beta) +"aSq" = ( +/turf/closed/shuttle{ + icon_state = "swall8" }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Aerodrome Hangar Beta" +/area/ice_colony/surface/hangar/beta) +"aSs" = ( +/turf/closed/shuttle{ + icon_state = "swall4" }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/surface/hangar/beta) +"aSt" = ( +/turf/closed/shuttle{ + icon_state = "swall11" }, /area/ice_colony/surface/hangar/beta) -"aUL" = ( -/obj/structure/disposalpipe/segment{ +"aSv" = ( +/obj/structure/ice/thin/junction{ + dir = 8 + }, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/southeast) +"aSw" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/surface/research/temporary) +"aSB" = ( +/turf/closed/wall, +/area/ice_colony/surface/research/temporary) +"aTC" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" + pixel_x = -24 }, -/area/ice_colony/surface/hangar/beta) -"aUM" = ( -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/obj/item/weapon/gun/energy/taser, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"aTS" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/valley/southwest) +"aTY" = ( +/turf/open/ice, +/area/ice_colony/exterior/surface/cliff) +"aUh" = ( +/turf/closed/shuttle{ + icon_state = "swall1" }, -/turf/open/shuttle{ - icon_state = "floor6" +/area/ice_colony/surface/hangar/alpha) +"aUn" = ( +/turf/closed/shuttle{ + icon_state = "swall1" }, /area/ice_colony/surface/hangar/beta) +"aUq" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/surface/landing_pad_external) +"aUr" = ( +/obj/structure/fence, +/turf/open/ice, +/area/ice_colony/exterior/surface/cliff) +"aUs" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/ice_colony/surface/research/temporary) "aUN" = ( /obj/structure/ice/thin/end{ dir = 8 @@ -16260,47 +4949,6 @@ "aUP" = ( /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aUQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aUR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"aUS" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"aUT" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aUU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aUV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) "aUW" = ( /turf/closed/wall, /area/ice_colony/surface/research/tech_storage) @@ -16308,46 +4956,9 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/ice_colony/surface/research/tech_storage) -"aUY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Omicron Technical Storage" - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) "aUZ" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/research/tech_storage) -"aVb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aVc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aVd" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) "aVe" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 4 @@ -16364,297 +4975,16 @@ /obj/effect/landmark/monkey_spawn, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aVi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aVj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"aVk" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/temporary) -"aVl" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aVm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVr" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVs" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/ice_colony/surface/research/tech_storage) -"aVv" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aVw" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aVx" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) "aVy" = ( /turf/closed/shuttle{ icon_state = "swall2" }, /area/ice_colony/surface/hangar/alpha) -"aVz" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aVA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aVB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aVC" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) "aVD" = ( /turf/closed/shuttle{ icon_state = "swall2" }, /area/ice_colony/surface/hangar/beta) -"aVE" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aVF" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVG" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVH" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVI" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVK" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aVL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aVM" = ( -/obj/structure/machinery/light, -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/temporary) -"aVN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"aVO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVP" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVQ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aVT" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) "aVU" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/plating/icefloor, @@ -16666,390 +4996,51 @@ /obj/structure/largecrate/random, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/container_yard) -"aVX" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aVZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWa" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWb" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWc" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aWd" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/alpha) -"aWe" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWf" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWg" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aWh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/hallway) -"aWi" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aWj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aWk" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f5" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aWl" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f10" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aWm" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f6" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/ice_colony/surface/hangar/beta) -"aWn" = ( -/obj/structure/shuttle/diagonal{ - icon_state = "swall_f9" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aWo" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aWp" = ( /turf/open/floor/plating, /area/ice_colony/exterior/surface/landing_pad) -"aWr" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aWs" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWv" = ( -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWw" = ( -/obj/structure/closet/wardrobe/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/surface/hydroponics/south) "aWB" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/container_yard) "aWC" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWD" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWE" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWF" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWG" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWH" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating/icefloor, -/area/ice_colony/exterior/surface/container_yard) -"aWI" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWJ" = ( -/turf/closed/shuttle{ - icon_state = "swall14" - }, -/area/ice_colony/surface/hangar/alpha) -"aWK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aWL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aWM" = ( -/obj/structure/machinery/space_heater, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aWN" = ( -/turf/closed/shuttle{ - icon_state = "swall14" - }, -/area/ice_colony/surface/hangar/beta) -"aWO" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aWP" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aWQ" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/ice_colony/exterior/surface/landing_pad) -"aWR" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aWS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWT" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWW" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWX" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aWZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aXa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellowcorners2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWD" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWE" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWF" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWG" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWH" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating/icefloor, +/area/ice_colony/exterior/surface/container_yard) +"aWJ" = ( +/turf/closed/shuttle{ + icon_state = "swall14" }, -/area/ice_colony/surface/research/tech_storage) -"aXb" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/area/ice_colony/surface/hangar/alpha) +"aWN" = ( +/turf/closed/shuttle{ + icon_state = "swall14" }, -/area/ice_colony/surface/research/tech_storage) +/area/ice_colony/surface/hangar/beta) +"aWQ" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/ice_colony/exterior/surface/landing_pad) "aXc" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/plating/icefloor, @@ -17074,139 +5065,30 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/container_yard) -"aXi" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aXj" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXl" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) "aXm" = ( /turf/closed/shuttle{ icon_state = "swall13" }, /area/ice_colony/surface/hangar/alpha) -"aXn" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXo" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXr" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aXt" = ( -/obj/structure/shuttle/diagonal{ - dir = 9; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) "aXu" = ( /turf/closed/shuttle{ icon_state = "swall13" }, /area/ice_colony/surface/hangar/beta) -"aXv" = ( -/obj/structure/shuttle/diagonal{ - dir = 5; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aXw" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/surface/hangar/beta) -"aXx" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) "aXy" = ( /obj/structure/ice/thin/end{ dir = 1 }, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aXz" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aXA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aXB" = ( -/turf/open/floor{ - icon_state = "darkyellowcorners2" - }, -/area/ice_colony/surface/research/tech_storage) -"aXC" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) +"aXD" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"aXE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) "aXH" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating/icefloor, @@ -17223,141 +5105,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/container_yard) -"aXL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXN" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXO" = ( -/obj/structure/shuttle/diagonal{ - dir = 10; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "hangar_ice_1"; - name = "hangar shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aXR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Aerodrome Hangar" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/hallway) -"aXS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/hallway) -"aXT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aXU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aXV" = ( -/obj/structure/shuttle/diagonal{ - dir = 6; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aXW" = ( -/obj/structure/shuttle/diagonal{ - dir = 10; - icon_state = "wall" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"aXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aXY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "hangar_ice_2"; - name = "hangar shutter control"; - pixel_y = -30 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) "aXZ" = ( /obj/structure/ice/thin/corner, /turf/open/ice, @@ -17375,146 +5122,15 @@ "aYc" = ( /turf/closed/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aYd" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aYe" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aYf" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aYg" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"aYi" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aYk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"aYl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_1"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) "aYo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aYp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aYq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) -"aYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "hangar_ice_2"; - name = "\improper Hangar Shutters" - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/beta) "aYs" = ( /obj/structure/ice/thin/end, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aYt" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aYx" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/icefloor, @@ -17523,22 +5139,6 @@ /obj/vehicle/train/cargo/engine, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/container_yard) -"aYA" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYB" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aYC" = ( /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) @@ -17546,41 +5146,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aYE" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYH" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYI" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYJ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aYK" = ( /turf/closed/ice/straight{ dir = 4 @@ -17591,65 +5156,13 @@ dir = 1 }, /area/ice_colony/exterior/surface/landing_pad_external) -"aYN" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYO" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aYP" = ( /obj/structure/lz_sign/ice_sign, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aYQ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aYR" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aYS" = ( /turf/closed/ice/straight, /area/ice_colony/exterior/surface/landing_pad_external) -"aZa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aZb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17679,30 +5192,6 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aZf" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aZg" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/dropship1, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/landing/console) -"aZh" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aZi" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -17713,12 +5202,6 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/landing_pad_external) -"aZm" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aZn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, @@ -17751,60 +5234,12 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aZw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aZx" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aZy" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) -"aZz" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/container_yard) "aZA" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aZB" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aZC" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aZE" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -17837,23 +5272,6 @@ /obj/vehicle/train/cargo/engine, /turf/open/floor/plating/icefloor, /area/ice_colony/exterior/surface/landing_pad) -"aZQ" = ( -/obj/structure/barricade/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aZR" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"aZS" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "aZT" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating/icefloor, @@ -17910,27 +5328,6 @@ dir = 8 }, /area/ice_colony/exterior/surface/landing_pad_external) -"bae" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"baf" = ( -/obj/structure/machinery/floodlight/landing, -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "bag" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -17955,31 +5352,6 @@ dir = 4 }, /area/ice_colony/exterior/surface/landing_pad_external) -"ban" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"bao" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bap" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baq" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) "bar" = ( /obj/structure/ice/thin/end, /turf/open/ice, @@ -18002,96 +5374,28 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south) -"baw" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "bax" = ( /obj/structure/ice/thin/junction{ dir = 1 }, -/turf/open/ice, -/area/ice_colony/exterior/surface/landing_pad_external) -"bay" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baz" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"baA" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"baB" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baD" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"baE" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baF" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"baH" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"baI" = ( -/obj/structure/machinery/landinglight/ds1, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"baJ" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/ice, +/area/ice_colony/exterior/surface/landing_pad_external) +"baz" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"baA" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"baD" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) +"baG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) "baK" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -18104,12 +5408,6 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"baN" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) "baO" = ( /obj/structure/machinery/landinglight/ds2{ dir = 4 @@ -18136,15 +5434,6 @@ dir = 8 }, /area/ice_colony/exterior/surface/cliff) -"baX" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "baZ" = ( /obj/structure/ice/thin/corner{ dir = 8 @@ -18154,26 +5443,10 @@ "bba" = ( /turf/closed/wall/r_wall/unmeltable, /area/ice_colony/underground/requesition) -"bbb" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) "bbc" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"bbd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) "bbg" = ( /obj/structure/ice/thin/straight, /turf/open/ice, @@ -18197,39 +5470,17 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/cliff) -"bbl" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"bbm" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "bbn" = ( /turf/open/floor/plating/icefloor, /area/shuttle/elevator4/underground) -"bbo" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bbq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +"bbr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/ice_colony/underground/hangar) +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) "bbt" = ( /obj/structure/ice/thin/junction{ dir = 1 @@ -18239,63 +5490,9 @@ "bbu" = ( /turf/closed/wall, /area/ice_colony/surface/tcomms) -"bbw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Storeroom" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/tcomms) -"bby" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"bbz" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"bbA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) -"bbB" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/ice_colony/exterior/surface/landing_pad) "bbE" = ( /turf/closed/wall/r_wall, /area/ice_colony/surface/tcomms) -"bbF" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/tcomms) -"bbG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/tcomms) "bbI" = ( /obj/structure/ice/thin/single, /turf/open/ice, @@ -18312,16 +5509,13 @@ }, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) -"bbR" = ( -/obj/structure/machinery/power/apc{ +"bbV" = ( +/obj/structure/machinery/alarm{ dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "delivery" + pixel_x = 24 }, -/area/ice_colony/surface/tcomms) +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) "bbW" = ( /obj/structure/ice/thin/corner{ dir = 4 @@ -18368,44 +5562,9 @@ }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"bcg" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/ice_colony/surface/excavation/storage) -"bch" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/surface/excavation/storage) "bci" = ( /turf/closed/wall, /area/ice_colony/surface/excavation) -"bcj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Colony Xenoarcheology Outpost" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/excavation) -"bck" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/excavation) -"bcl" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/tcomms) "bco" = ( /obj/structure/ice/thin/end, /turf/open/ice, @@ -18420,6 +5579,9 @@ /obj/structure/ice/thin/straight, /turf/open/ice, /area/ice_colony/exterior/surface/valley/south/excavation) +"bcw" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) "bcx" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -18465,12899 +5627,16467 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating/icefloor, /area/ice_colony/surface/excavation/storage) -"bcF" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +"bcY" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bda" = ( +/turf/closed/wall, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bdb" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/requesition/storage) +"bdc" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/requesition/storage) +"bdg" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/requesition) +"bdh" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bcG" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bdj" = ( /obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/machinery/cell_charger, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bdk" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bdB" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bdV" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"beB" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/hangar) +"beG" = ( +/obj/structure/ice/thin/junction{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bcH" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south) +"beI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"beU" = ( +/turf/closed/ice/straight, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bfb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bfi" = ( +/turf/closed/ice/corner{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bcI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/area/ice_colony/exterior/surface/valley/south/excavation) +"bfr" = ( +/obj/structure/inflatable, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/ice_colony/surface/excavation) -"bcJ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bfs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bft" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"bga" = ( +/obj/structure/ice/thin/end{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bcK" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/ice, +/area/ice_colony/exterior/surface/cliff) +"bgb" = ( +/obj/structure/ice/thin/junction{ + dir = 4 + }, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bgl" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "undergroundhangarwest"; + name = "Underground Hangar" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bgm" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarwest"; + name = "Underground Hangar Lock"; + pixel_y = -24 }, -/turf/open/floor{ +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bgq" = ( +/obj/structure/ice/thin/junction, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bgt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkblue2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcL" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/underground/requesition) +"bgw" = ( +/obj/structure/ice/thin/junction{ + dir = 1 }, -/area/ice_colony/surface/excavation) -"bcM" = ( +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south/excavation) +"bgB" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition) +"bgH" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bgI" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bgL" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south) +"bgN" = ( +/obj/structure/machinery/conveyor, /obj/structure/largecrate/random, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/requesition) +"bgQ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bgU" = ( +/obj/structure/ice/thin/corner{ + dir = 8 + }, +/turf/open/ice, +/area/ice_colony/exterior/surface/valley/south) +"bhe" = ( +/obj/structure/machinery/conveyor, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition) +"bhj" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/north) +"bhk" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkpurple2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcN" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bhn" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/requesition/lobby) +"bho" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition/lobby) +"bhy" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition/lobby) +"bhz" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition/lobby) +"bhD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bhF" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bhG" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bhJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bhX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/computer/powermonitor, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"bic" = ( /obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bif" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/hangar) +"big" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Hangar Power Substation" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bih" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biu" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bix" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biy" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/requesition/sec_storage) +"biB" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition) +"biD" = ( +/obj/structure/machinery/requests_console{ + icon_state = "req_comp_open" + }, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/requesition/lobby) +"biF" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"biH" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biI" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"biM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biN" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biO" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"biP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bjc" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"bjd" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "undergroundhangarpower"; + name = "Underground Hangar Lock"; + pixel_y = -24 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bjf" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bji" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bjx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" + }, +/turf/open/floor/plating, +/area/ice_colony/underground/requesition/lobby) +"bjA" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/maintenance/north) +"bjK" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bjU" = ( +/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ + id = "undergroundhangarsouth"; + name = "Underground Hangar" + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"bjV" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bjX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"bke" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkg" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkj" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkl" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bko" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcO" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/north_west) +"bkt" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/hallway/north_west) +"bku" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkC" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/chapel) +"bkD" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkpurple2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcP" = ( -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/crew/chapel) +"bkE" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/morgue) +"bkF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkpurple2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcQ" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/ice_colony/underground/crew/morgue) +"bkH" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/ice_colony/surface/excavation) -"bcR" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"bcS" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"bcT" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"bkI" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/library) +"bkJ" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/research) +"bkK" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkbrown2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bcU" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/underground/requesition/sec_storage) +"bkP" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/chapel) +"bkW" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/hallway/north_west) +"blc" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bld" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"bcV" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"ble" = ( /obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"blf" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bcW" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"bcY" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bcZ" = ( -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bda" = ( -/turf/closed/wall, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bdb" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/requesition/storage) -"bdc" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/requesition/storage) -"bdd" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bde" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bdf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"blo" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator2/underground) +"blr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/underground/requesition) -"bdg" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/requesition) -"bdh" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bls" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bdi" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/surface/excavation/storage) -"bdj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bdk" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bdl" = ( -/obj/structure/surface/table, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"blB" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"blC" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "darkblue2" + pixel_x = 24 }, -/area/ice_colony/surface/excavation) -"bdm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"blL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"blT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"blU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bdn" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bdo" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"bmg" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering/locker) +"bmh" = ( +/turf/closed/ice/corner{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/area/ice_colony/exterior/underground/caves) +"bmi" = ( +/turf/closed/ice/corner{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bdp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/area/ice_colony/exterior/underground/caves) +"bmj" = ( +/obj/structure/ice/thin/end{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bdq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bmk" = ( +/obj/structure/ice/thin/end{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bdr" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dig_site_prep_ladder1"; - pixel_y = 16 +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bml" = ( +/turf/closed/ice/corner, +/area/ice_colony/exterior/underground/caves) +"bmm" = ( +/turf/closed/ice/corner{ + dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/area/ice_colony/exterior/underground/caves) +"bmx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"bmQ" = ( +/turf/closed/ice/straight{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bdB" = ( -/obj/structure/ice/thin/end, +/area/ice_colony/exterior/underground/caves) +"bmR" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bdD" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "ship_ladder1"; - pixel_y = 16 - }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" +/area/ice_colony/underground/maintenance/research) +"bmS" = ( +/turf/closed/ice/junction, +/area/ice_colony/exterior/underground/caves) +"bmT" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bmU" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bmY" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"bne" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"bnk" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering) +"bnl" = ( +/obj/structure/closet/fireaxecabinet, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering) +"bnm" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering) +"bnn" = ( +/turf/closed/ice/end, +/area/ice_colony/exterior/underground/caves) +"bno" = ( +/obj/structure/tunnel{ + id = "north_tunnel" }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bdE" = ( -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "ship_ladder"; - pixel_y = 16 +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bnA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/north_west) +"bnT" = ( +/turf/closed/ice/straight, +/area/ice_colony/exterior/underground/caves) +"bnU" = ( +/obj/structure/ice/thin/end{ + dir = 1 }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bdF" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bnV" = ( +/obj/structure/tunnel{ + id = "east_cargo_tunnel" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bnW" = ( +/turf/open/ice, +/area/ice_colony/underground/maintenance/research) +"boa" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 }, -/area/ice_colony/underground/requesition/storage) -"bdG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"boc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"bos" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bdH" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/north) +"boB" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"boC" = ( +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/underground/maintenance/research) +"boD" = ( +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"boH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/library) +"boJ" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/hallway/south_east) +"boK" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "\improper Underground Maintenance" }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/south_east) +"boM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/locker) +"boR" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"boS" = ( +/turf/closed/ice/end{ + dir = 8 }, -/area/ice_colony/underground/requesition/storage) -"bdI" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor{ - icon_state = "freezerfloor" +/area/ice_colony/exterior/underground/caves) +"boT" = ( +/turf/closed/ice/end{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bdJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/wrapping_paper, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/area/ice_colony/exterior/underground/caves) +"bpa" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/north_west) +"bpl" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering) +"bqk" = ( +/turf/closed/ice/junction{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bdK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrowncorners2" +/area/ice_colony/exterior/underground/caves) +"bqP" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/engineering) +"bqQ" = ( +/turf/closed/ice/junction{ + dir = 8 }, -/area/ice_colony/underground/requesition) -"bdL" = ( -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves) +"bqR" = ( +/obj/structure/ice/thin/corner{ + dir = 1 }, -/area/ice_colony/underground/requesition) -"bdM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrowncorners2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bqS" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bqT" = ( +/obj/structure/sign/safety/medical, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/lobby) +"bqU" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/medical/lobby) +"bqX" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/lobby) +"bqY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/medical/hallway) +"bqZ" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/treatment) +"brg" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/requesition) -"bdN" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle"; - dockId = "Lower_Requisitions"; - pixel_y = 32 +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "research_storage_ladder" }, -/turf/open/floor{ +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"brh" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/bball) +"bri" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/bball) +"brl" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/bball) +"bro" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bdO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 + name = "\improper Underground Maintenance" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering) +"brs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bdP" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering) +"brt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bdQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bru" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"brv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"brK" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/or) +"brL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkbrown2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition) -"bdR" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/north_west) +"brM" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/reception/checkpoint_north) +"brN" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/reception/checkpoint_north) +"brZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bsa" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/ice_colony/underground/requesition) -"bdS" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bsd" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bse" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bsf" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bsg" = ( +/obj/structure/ice/thin/corner, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bsy" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/hangar) -"bdT" = ( -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bsz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bsD" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"bsJ" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"btm" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"btt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/hangar) -"bdX" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bdY" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"bdZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/surface/excavation) -"bea" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/surface/excavation) -"beb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/surface/excavation) -"bec" = ( -/obj/structure/surface/table, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/excavation) -"bed" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/surface/excavation) -"bee" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btz" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering/substation) +"btA" = ( +/obj/structure/sign/safety/high_voltage, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/engineering/substation) +"btY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/surface/excavation) -"bef" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/window/westright{ + name = "Basketball Court" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"btZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bua" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/excavation) -"beg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bub" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/ice_colony/surface/excavation) -"beh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/surface/excavation) -"bei" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/window/eastleft{ + name = "Basketball Court" }, -/area/ice_colony/surface/excavation) -"bej" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buf" = ( +/obj/structure/tunnel{ + id = "engineering_tunnel" }, -/obj/structure/machinery/door/window{ - name = "Anomaly Gear" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bug" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/exterior/underground/caves) +"buj" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"buk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bul" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bum" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "power_storage_ladder" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bun" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "power_storage_ladder1" }, -/area/ice_colony/surface/excavation) -"bek" = ( -/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"buo" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bup" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/alien/weeds/node, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"buK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bel" = ( -/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/medical/or) +"buL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"bem" = ( -/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"buM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"ben" = ( -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"beo" = ( -/obj/structure/window/reinforced, -/obj/structure/ladder{ - height = 2; - icon_state = "ladderdown"; - id = "dig_site_prep_ladder"; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"beq" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/icefloor{ - icon_state = "rockvault" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"buN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"ber" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bet" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/ice_colony/underground/requesition/storage) -"beu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/weldpack, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/ice_colony/underground/requesition) -"bev" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/ice_colony/underground/requesition) -"beA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"beB" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/hangar) -"beC" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/ice_colony/underground/hangar) -"beD" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/obj/effect/decal/warning_stripes, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hangar) -"beE" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/underground/hangar) -"beF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/underground/hangar) -"beG" = ( -/obj/structure/ice/thin/junction{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"buX" = ( +/obj/structure/mineral_door/resin, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south) -"beH" = ( -/obj/structure/inflatable/door, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/ice_colony/surface/excavation/storage) -"beI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"beJ" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/excavation) -"beK" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/excavation) -"beM" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/underground/maintenance/engineering) +"bvc" = ( +/obj/structure/ice/thin/corner{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"beO" = ( -/obj/structure/machinery/door/window/eastright{ - name = "Technical Storage" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bvv" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/central/construction) +"bvx" = ( +/obj/item/frame/apc, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central/construction) +"bvy" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central/construction) +"bvz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/machinery/door/window/westleft{ + name = "Basketball Court" }, -/area/ice_colony/surface/excavation) -"beP" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/surface/excavation) -"beQ" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/structure/machinery/door/window/eastright{ + name = "Basketball Court" }, -/area/ice_colony/surface/excavation) -"beR" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bvF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"beS" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bvG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/excavation) -"beU" = ( -/turf/closed/ice/straight, -/area/ice_colony/exterior/surface/valley/south/excavation) -"beV" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bvH" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bvJ" = ( +/turf/closed/ice/corner, +/area/ice_colony/exterior/underground/caves/open) +"bvK" = ( +/obj/structure/ice/thin/single, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bvW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/requesition/storage) -"beW" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"beX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/requesition) -"beZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/requesition) -"bfa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/hangar) -"bfb" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bfc" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/surface/excavation) -"bfd" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bvZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bwa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/ice_colony/surface/excavation) -"bff" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bwb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/surface/excavation) -"bfg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/excavation) -"bfh" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bwc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/surface/excavation) -"bfi" = ( -/turf/closed/ice/corner{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bfj" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bfk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/bball) +"bwe" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"bwf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"bwg" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bfm" = ( -/obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bwh" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/ice_colony/underground/requesition) -"bfn" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"bwi" = ( +/obj/structure/ice/thin/end{ + dir = 1 }, -/area/ice_colony/underground/requesition) -"bfo" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bwk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/requesition) -"bfp" = ( -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/canteen) +"bwx" = ( +/turf/closed/ice/junction{ + dir = 1 }, -/area/ice_colony/underground/hangar) -"bfq" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" +/area/ice_colony/exterior/underground/caves) +"bwy" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/exterior/underground/caves/open) +"bwC" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"bwE" = ( +/obj/structure/ice/thin/end, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bwF" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/surface/excavation/storage) -"bfr" = ( -/obj/structure/inflatable, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bwH" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "hydroponics_ladder" }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bfs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bft" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/excavation/storage) -"bfu" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bwI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bwJ" = ( +/turf/closed/ice/corner{ + dir = 1 }, -/area/ice_colony/surface/excavation) -"bfv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - icon_state = "darkblue2" +/area/ice_colony/exterior/underground/caves/open) +"bwK" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bwT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfw" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor{ - icon_state = "darkblue2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bfx" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/ice_colony/underground/medical/treatment) +"bwU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bfy" = ( -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central/construction) +"bxa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/excavation) -"bfz" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bxd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/surface/excavation) -"bfA" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bxe" = ( +/turf/closed/ice/straight, +/area/ice_colony/exterior/underground/caves/open) +"bxf" = ( +/turf/closed/ice/end{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/area/ice_colony/exterior/underground/caves) +"bxi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/treatment) +"bxv" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bxw" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bxx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" }, -/area/ice_colony/surface/excavation) -"bfB" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/ice_colony/underground/crew/bball) +"bxC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bxD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfC" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/ice, +/area/ice_colony/underground/maintenance/engineering) +"bxE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfD" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bxF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfE" = ( -/obj/structure/closet/crate, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bxH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfF" = ( -/obj/structure/closet/crate, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bxJ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/alien/weeds/node, +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/underground/maintenance/research) +"bxS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bfG" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bxT" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bxU" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/surface/excavation) -"bfH" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/excavation) -"bfI" = ( -/obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/storage/belt/utility/full, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bya" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bfJ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/ice_colony/surface/excavation) -"bfK" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"byb" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/ice_colony/surface/excavation) -"bfL" = ( -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"byc" = ( +/turf/open/ice, +/area/ice_colony/underground/maintenance/engineering) +"byo" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/surface/excavation) -"bfM" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byp" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/central) +"byq" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bys" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byt" = ( +/obj/structure/surface/rack, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byu" = ( +/obj/structure/tunnel{ + id = "cargo_tunnel" }, -/area/ice_colony/surface/excavation) -"bfN" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"byv" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/maintenance/research) +"byB" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/hallway) +"byC" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/obj/item/tool/surgery/scalpel, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byE" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "canteen_ladder" }, -/area/ice_colony/surface/excavation) -"bfO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byI" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/canteen) +"byK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"byL" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"byM" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator3/underground) +"byO" = ( +/turf/closed/ice/end{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bfP" = ( +/area/ice_colony/exterior/underground/caves/open) +"byP" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/medical/storage) +"byR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 6 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/requesition/storage) -"bfR" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer" - }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byU" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/requesition/storage) -"bfT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"byV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bzb" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/canteen) +"bzd" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bfV" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bfW" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bfX" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"bzp" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/command/center) +"bzq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition) -"bfY" = ( -/obj/structure/inflatable, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +/turf/open/floor/plating, +/area/ice_colony/underground/command/center) +"bzv" = ( +/obj/effect/alien/weeds/node, +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/underground/maintenance/engineering) +"bzP" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/detective) +"bzQ" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/marshal) +"bzR" = ( +/obj/structure/ice/thin/corner{ + dir = 4 }, -/area/ice_colony/surface/excavation/storage) -"bga" = ( -/obj/structure/ice/thin/end{ +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bzS" = ( +/obj/structure/ice/thin/junction, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bzT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/ice, -/area/ice_colony/exterior/surface/cliff) -"bgb" = ( -/obj/structure/ice/thin/junction{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bzU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bzV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bgc" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/icefloor{ - icon_state = "rockvault" - }, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bge" = ( -/obj/structure/bigDelivery, -/turf/open/floor{ - icon_state = "freezerfloor" +/area/ice_colony/underground/maintenance/research) +"bzW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/storage) -"bgf" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition) -"bgh" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/north_west) +"bAk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bgi" = ( -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bAq" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAr" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/ice_colony/underground/requesition) -"bgj" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAt" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/requesition) -"bgk" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarwest"; - name = "Underground Hangar Lock"; - pixel_y = -24 +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAu" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAv" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAw" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/hangar) -"bgl" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ - id = "undergroundhangarwest"; - name = "Underground Hangar" +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bgm" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarwest"; - name = "Underground Hangar Lock"; - pixel_y = -24 +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAz" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAA" = ( +/obj/structure/ice/thin/junction{ + dir = 4 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bgq" = ( -/obj/structure/ice/thin/junction, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bgs" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/area/ice_colony/exterior/underground/caves) +"bAB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bAC" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bgt" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bAE" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/requesition) -"bgw" = ( -/obj/structure/ice/thin/junction{ - dir = 1 +/area/ice_colony/underground/medical/storage) +"bAF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/surface/valley/south/excavation) -"bgx" = ( -/obj/structure/machinery/bot/mulebot, -/obj/structure/window/reinforced{ - dir = 8; - health = 250 +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/ice_colony/underground/requesition) -"bgy" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bAG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/requesition) -"bgz" = ( -/obj/structure/machinery/bot/mulebot, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bAH" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bgA" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/underground/crew/canteen) +"bAP" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bgB" = ( -/obj/structure/machinery/conveyor, /turf/open/floor/plating, -/area/ice_colony/underground/requesition) -"bgC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/ice_colony/underground/crew/canteen) +"bAR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAS" = ( +/obj/structure/surface/table/woodentable, +/obj/item/evidencebag, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -5; + pixel_y = -1 }, -/area/ice_colony/underground/requesition) -"bgD" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAU" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/computer/cameras/wooden_tv, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bAV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/requesition) -"bgG" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAW" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bAZ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bBa" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/research) +"bBe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bgH" = ( +/area/ice_colony/underground/research) +"bBf" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/research) +"bBg" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/research/storage) +"bBh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Underground Maintenance" + }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bgI" = ( +/area/ice_colony/underground/research/storage) +"bBj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bBk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bgJ" = ( -/obj/effect/decal/cleanable/blood/oil{ - icon_state = "armorblood" +/area/ice_colony/underground/maintenance/central) +"bBl" = ( +/obj/structure/machinery/light/small, +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "research_storage_ladder" }, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bBv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bBw" = ( +/obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bgK" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bgL" = ( -/obj/structure/ice/thin/corner, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bBx" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/red, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bBy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bBz" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_spawn, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south) -"bgM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves/open) +"bBA" = ( +/obj/structure/tunnel{ + id = "construction_tunnel" }, -/area/ice_colony/underground/requesition) -"bgN" = ( -/obj/structure/machinery/conveyor, -/obj/structure/largecrate/random, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bBB" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating, -/area/ice_colony/underground/requesition) -"bgO" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ +/area/ice_colony/underground/maintenance/engineering) +"bBC" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bBP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/requesition) -"bgQ" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bBQ" = ( /obj/structure/barricade/wooden{ dir = 8 }, +/obj/structure/barricade/wooden, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bgR" = ( +/area/ice_colony/underground/maintenance/central) +"bBY" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bBZ" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bCa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bCb" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bCc" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bCd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bCe" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bCf" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ - locked = 0; + dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/hangar) -"bgS" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bgT" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bgU" = ( -/obj/structure/ice/thin/corner{ - dir = 8 +/area/ice_colony/underground/maintenance/engineering) +"bCg" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/east) +"bCh" = ( +/obj/structure/tunnel{ + id = "west_tcomms_tunnel" }, /turf/open/ice, -/area/ice_colony/exterior/surface/valley/south) -"bgW" = ( -/obj/structure/closet/secure_closet/req_officer, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bgX" = ( +/area/ice_colony/exterior/underground/caves/open) +"bCi" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bgY" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"bCu" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/storage/highsec) +"bCv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/underground/requesition) -"bgZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bCw" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bCF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/requesition) -"bha" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"bCG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Detective's Office" }, -/area/ice_colony/underground/requesition) -"bhb" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"bCH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Marshal's Office" }, -/area/ice_colony/underground/requesition) -"bhc" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"bCI" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bCJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bCK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bDi" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor{ - icon_state = "darkbrowncorners2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bDj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/requesition) -"bhd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bDx" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/hallway) +"bDy" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "mining_ladder" }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bDz" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/research/sample) +"bDH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/command/center) +"bDJ" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/command/center) +"bDK" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/ice_colony/underground/command/center) +"bDL" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bhe" = ( -/obj/structure/machinery/conveyor, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bDM" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bDN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/central) +"bDW" = ( +/obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, -/area/ice_colony/underground/requesition) -"bhf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/area/ice_colony/underground/security/hallway) +"bEd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bhg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bhh" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bhj" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/north) -"bhk" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bhm" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/security/hallway) +"bEe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bhn" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/requesition/lobby) -"bho" = ( -/obj/structure/machinery/conveyor, -/obj/structure/plasticflaps, /turf/open/floor/plating, -/area/ice_colony/underground/requesition/lobby) -"bhp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Requesitions Office" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bht" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bhu" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" +/area/ice_colony/underground/maintenance/east) +"bEf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/hangar) -"bhw" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/closet/secure_closet/req_officer, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bEg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition) -"bhy" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/requesition/lobby) -"bhz" = ( -/obj/structure/machinery/conveyor, +/area/ice_colony/underground/maintenance/east) +"bEh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating, -/area/ice_colony/underground/requesition/lobby) -"bhA" = ( -/obj/structure/machinery/power/apc{ +/area/ice_colony/underground/maintenance/east) +"bEF" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/command/pv1) +"bEG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + name = "\improper Underground Maintenance" }, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/command/pv1) +"bEH" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/command/pv2) +"bEI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bhB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bhC" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition/lobby) -"bhD" = ( -/obj/structure/largecrate/random, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bhE" = ( -/obj/structure/machinery/power/apc{ +/area/ice_colony/underground/command/pv2) +"bEJ" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/dorm_l) +"bEK" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/dorm_r) +"bFk" = ( +/obj/structure/machinery/firealarm{ dir = 8; - pixel_x = -24; - start_charge = 0 + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bFm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bFn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bFo" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "warnplate" + pixel_x = -24 }, -/area/ice_colony/underground/hangar) -"bhF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bFq" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bhG" = ( -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bFr" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bFs" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bFt" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bFu" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bhH" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bFw" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bFx" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bFy" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bFD" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/interrogation) +"bFE" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/security/interrogation) +"bFH" = ( +/turf/open/ice, +/area/ice_colony/underground/maintenance/east) +"bGg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bGh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 }, -/area/ice_colony/underground/hangar) -"bhI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bGj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bGm" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bGo" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bGw" = ( +/turf/closed/ice_rock/corners, +/area/ice_colony/exterior/underground/caves) +"bGB" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/command/checkpoint) +"bGD" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/command/checkpoint) +"bGG" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/ice_colony/underground/command/checkpoint) +"bGH" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bGI" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bGJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bGK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/hangar) -"bhJ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bGL" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bGM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bGN" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bhK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bGO" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/plating/icefloor{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bGX" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/research/work) +"bHi" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/storage) +"bHB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bHC" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bHD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bhL" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bHE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/hangar) -"bhS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bHF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bHG" = ( +/obj/structure/coatrack, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bHH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bHI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/requesition/lobby) -"bhT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bHJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bHK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bIb" = ( +/obj/item/stack/sheet/wood, +/obj/structure/mineral_door/resin, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/research) +"bIc" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bhV" = ( -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/ice_colony/underground/hangar) -"bhY" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bhZ" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/underground/requesition) -"bia" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bic" = ( -/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/research) +"bIe" = ( +/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bif" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/hangar) -"big" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Hangar Power Substation" - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bih" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bij" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"bik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"bim" = ( -/obj/structure/machinery/door_control{ - id = "req_sec_storage"; - name = "Requesition Secure Storage"; - normaldoorcontrol = 1; - pixel_y = -24; - req_access_txt = "100"; - specialfunctions = 4 - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition) -"biq" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bir" = ( -/obj/structure/bed/chair/office/dark, +/area/ice_colony/underground/storage) +"bIq" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bis" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"biu" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biv" = ( -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Underground Administration Office" }, -/area/ice_colony/underground/hangar) -"biw" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bix" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biy" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/requesition/sec_storage) -"biz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "req_sec_storage"; - name = "\improper Requesitions Storage Shutters" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"bIr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Underground Administration Office" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"bIs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bIt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bIx" = ( +/obj/structure/tunnel{ + id = "south_tcomms_tunnel" }, -/area/ice_colony/underground/requesition/sec_storage) -"biB" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bIC" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/requesition) -"biC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition) -"biD" = ( -/obj/structure/machinery/requests_console{ - icon_state = "req_comp_open" - }, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/requesition/lobby) -"biE" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" - }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" +/area/ice_colony/underground/research) +"bIL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, +/turf/open/floor/plating, +/area/ice_colony/underground/storage) +"bIN" = ( +/obj/structure/surface/table/reinforced, /obj/item/tool/pen/blue{ pixel_x = -6 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" }, -/area/ice_colony/underground/requesition/lobby) -"biF" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"biH" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biI" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biK" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"biM" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biN" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biO" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"biP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 - }, +/area/ice_colony/underground/command/checkpoint) +"bJG" = ( +/obj/structure/window/framed/colony/reinforced/tinted, +/turf/open/floor/plating, +/area/ice_colony/underground/security/interrogation) +"bJK" = ( +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/underground/maintenance/east) +"bKj" = ( +/obj/structure/bed, /turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"biQ" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"biR" = ( -/turf/open/floor{ +/area/ice_colony/underground/crew/dorm_l) +"bKk" = ( +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"biS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"biU" = ( -/obj/structure/machinery/door_control{ - id = "req_sec_storage"; - name = "Requesition Secure Storage"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 + pixel_y = -24 }, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bKl" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "darkbrown2" + pixel_y = -24 }, -/area/ice_colony/underground/requesition/sec_storage) -"biV" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bKm" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bKn" = ( /obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 + dir = 1; + pixel_y = -24 }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bKo" = ( /obj/structure/machinery/firealarm{ - pixel_y = 24 + dir = 1; + pixel_y = -24 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bKp" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bKq" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bKr" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/requesition/sec_storage) -"biW" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bKs" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bKt" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/backroom) +"bKI" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"biX" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/research) +"bKP" = ( +/obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"biZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/storage) +"bKS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bja" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + name = "\improper Underground Men's Barracks" }, -/turf/open/floor{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bKT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjb" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjd" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "undergroundhangarpower"; - name = "Underground Hangar Lock"; - pixel_y = -24 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bjf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bji" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bjk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bjl" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bjm" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bjn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" + name = "\improper Underground Women's Barracks" }, -/area/ice_colony/underground/requesition/sec_storage) -"bjp" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"bKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition/sec_storage) -"bjq" = ( -/obj/structure/bed/chair{ +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/south_east) +"bKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjw" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bKX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/requesition/lobby) -"bjx" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bLe" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/security/hallway) +"bLq" = ( +/obj/structure/barricade/wooden, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/research) +"bLO" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/security) +"bLP" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bLY" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bMq" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bMs" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security) +"bMw" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/requesition/lobby) -"bjz" = ( +/area/ice_colony/underground/security) +"bNf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bNt" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/disposals) +"bNv" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/lavatory) +"bNx" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - locked = 0; - name = "\improper Underground Maintenance"; - req_access_txt = "100" + name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/hangar) -"bjA" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/maintenance/north) -"bjB" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/area/ice_colony/underground/hallway/south_east) +"bNA" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/leisure) +"bND" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bNE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bNF" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bNG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/requesition/sec_storage) -"bjC" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bjD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bjE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bNH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjF" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bjM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjP" = ( +/area/ice_colony/underground/maintenance/security) +"bNI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/requesition/lobby) -"bjQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/ice_colony/underground/security/backroom) +"bOi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bOj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bOk" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/south) +"bOn" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bOo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bOp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bOO" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bOP" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjR" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/requesition/lobby) -"bjS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + pixel_x = -24 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bOQ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bjT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bOR" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bOS" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/underground/requesition/lobby) -"bjU" = ( -/obj/structure/machinery/door/poddoor/two_tile/four_tile/secure{ - id = "undergroundhangarsouth"; - name = "Underground Hangar" +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bOT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bOU" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bOV" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/armory) +"bOX" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/security/brig) +"bPa" = ( +/turf/closed/shuttle{ + icon_state = "wall3" }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"bjV" = ( -/obj/structure/surface/table/reinforced, +/area/space) +"bPg" = ( /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bjX" = ( +/area/ice_colony/underground/maintenance/south) +"bPh" = ( /obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"bjY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkbrown2" +/area/ice_colony/underground/crew/leisure) +"bPi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bjZ" = ( -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bPj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bPk" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bka" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bPl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bkb" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bPm" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bkc" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bPn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bkd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bPq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bPr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/requesition/lobby) -"bke" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/cobweb{ + dir = 4 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkf" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkg" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, +/area/ice_colony/underground/maintenance/security) +"bPI" = ( +/turf/open/space/transit/north/shuttlespace_ns4, +/area/shuttle/elevator3/transit) +"bPJ" = ( +/turf/open/space/transit/north/shuttlespace_ns4, +/area/shuttle/elevator4/transit) +"bPR" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bPS" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"bPT" = ( +/obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkh" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "Underground Hangar Lock"; - pixel_x = -24 +/area/ice_colony/underground/maintenance/security) +"bQk" = ( +/obj/structure/tunnel{ + id = "hydroponics_tunnel" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bQu" = ( +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bQv" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/ice_colony/underground/hangar) -"bki" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bQw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/underground/hangar) -"bkj" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkk" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bQx" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bQy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/leisure) +"bQz" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkl" = ( +/area/ice_colony/underground/maintenance/security) +"bQA" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" - }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/underground/maintenance/security) +"bQB" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bQC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bko" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bQS" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/crew/disposals) +"bQT" = ( +/obj/item/trash/raisins, /obj/structure/machinery/light/small, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkp" = ( +/area/ice_colony/underground/crew/disposals) +"bQU" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/disposals) +"bQV" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/disposals) +"bQW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/ice_colony/underground/crew/disposals) +"bRh" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/hallway/north_west) -"bkq" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkr" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bks" = ( -/obj/structure/machinery/light{ +/area/ice_colony/underground/crew/leisure) +"bRk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkt" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/hallway/north_west) -"bku" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random, +/obj/structure/machinery/light/small, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkv" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bkw" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/sec_storage) -"bkx" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "darkbrown2" +/area/ice_colony/underground/maintenance/security) +"bRl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/sec_storage) -"bky" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bRo" = ( +/obj/structure/ice/thin/end{ + dir = 8 }, -/area/ice_colony/underground/requesition/sec_storage) -"bkz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bRp" = ( +/obj/structure/ice/thin/straight{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bkA" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves) +"bRq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkC" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/chapel) -"bkD" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/crew/chapel) -"bkE" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/morgue) -"bkF" = ( +/area/ice_colony/underground/crew/disposals) +"bRr" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/crew/morgue) -"bkG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkH" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/area/ice_colony/underground/crew/lavatory) +"bRs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bkI" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/library) -"bkJ" = ( +/area/ice_colony/underground/maintenance/south) +"bRt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bRu" = ( /turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/research) -"bkK" = ( +/area/ice_colony/underground/reception) +"bRv" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; name = "\improper Underground Maintenance" }, /turf/open/floor/plating, -/area/ice_colony/underground/requesition/sec_storage) -"bkM" = ( -/turf/open/floor{ +/area/ice_colony/underground/reception) +"bRw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - icon_state = "darkbrowncorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkN" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"bkO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/hallway/north_west) -"bkP" = ( -/obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, -/area/ice_colony/underground/crew/chapel) -"bkQ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/chapel) -"bkR" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/chapel) -"bkS" = ( -/obj/structure/morgue, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bkT" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bkU" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bkV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/recharge_station, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bkW" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/hallway/north_west) -"bkX" = ( -/obj/structure/bookcase, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bkY" = ( -/obj/structure/bookcase/manuals/medical, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bkZ" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bla" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" +/area/ice_colony/underground/maintenance/security) +"bRJ" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "dorms_ladder" }, -/area/ice_colony/underground/crew/library) -"blc" = ( /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bld" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/ice_colony/underground/maintenance/south) +"bRK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"ble" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"blf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, +/area/ice_colony/underground/maintenance/south) +"bRL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"blg" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/hallway/north_west) -"bll" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"bln" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blo" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator2/underground) -"blp" = ( +/area/ice_colony/underground/maintenance/south) +"bRM" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blq" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bls" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"blt" = ( +/area/ice_colony/underground/maintenance/south) +"bRN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"blu" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bRO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"blv" = ( -/obj/structure/disposalpipe/segment, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bRP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bRQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"blx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/chapel) -"bly" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blA" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blB" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"blC" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"blD" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"blE" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"blF" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blG" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blI" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blJ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blK" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blL" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bRR" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bRX" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/random, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"blM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/area/ice_colony/underground/maintenance/security) +"bSn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bSs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"blO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/chapel) -"blP" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bSE" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bSI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bSM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" + dir = 5 }, -/area/ice_colony/underground/crew/chapel) -"blQ" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bSN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/crew/chapel) -"blS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/security) +"bST" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bSU" = ( +/turf/open/space/transit/north/shuttlespace_ns4, +/area/shuttle/elevator1/transit) +"bSV" = ( +/turf/open/space/transit/north/shuttlespace_ns4, +/area/shuttle/elevator2/transit) +"bSY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"blT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"blU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/wood/normal{ - dir = 8 + name = "\improper Underground Reception Archives" }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"blV" = ( -/obj/structure/morgue, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bSZ" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bTa" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bTc" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/hallway/south_east) +"bTe" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTf" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/crew/morgue) -"blW" = ( -/obj/item/bodybag, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/crew/morgue) -"blX" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/crew/morgue) -"blY" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTk" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTl" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/hallway/south_east) +"bTp" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTq" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"blZ" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bma" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bmb" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTt" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTv" = ( +/turf/open/floor/plating/icefloor, +/area/shuttle/elevator1/underground) +"bTx" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTy" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTz" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTA" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/reception) +"bTD" = ( +/obj/item/paper_bin, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/area/ice_colony/underground/crew/library) -"bmc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/book/manual/marine_law, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTF" = ( +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Underground Reception" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bTH" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1; + icon_state = "tableflip0" }, -/area/ice_colony/underground/crew/library) -"bmd" = ( -/obj/structure/surface/table/woodentable, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bTN" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/reception/toilet_men) +"bTY" = ( +/turf/open/floor, +/area/ice_colony/surface/tcomms) +"bUA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/crew/library) -"bme" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 +/turf/open/floor/plating, +/area/ice_colony/underground/reception/toilet_men) +"bUH" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bUU" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" + dir = 5 }, -/area/ice_colony/underground/crew/library) -"bmf" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bUV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/machinery/light/small, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bUW" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/excavation) +"bVa" = ( +/turf/closed/wall/r_wall, +/area/ice_colony/underground/reception/toilet_women) +"bVb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bmg" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bVc" = ( +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"bVe" = ( /turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering/locker) -"bmh" = ( -/turf/closed/ice/corner{ +/area/ice_colony/underground/reception/checkpoint_south) +"bVf" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/ice_colony/underground/reception/checkpoint_south) +"bVz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/area/ice_colony/exterior/underground/caves) -"bmi" = ( -/turf/closed/ice/corner{ - dir = 8 - }, -/area/ice_colony/exterior/underground/caves) -"bmj" = ( -/obj/structure/ice/thin/end{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, +/turf/open/floor/plating, +/area/ice_colony/underground/reception/toilet_women) +"bVN" = ( +/obj/structure/mineral_door/resin, /turf/open/ice, /area/ice_colony/exterior/underground/caves) -"bmk" = ( -/obj/structure/ice/thin/end{ - dir = 4 +"bVO" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, /turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bml" = ( -/turf/closed/ice/corner, -/area/ice_colony/exterior/underground/caves) -"bmm" = ( -/turf/closed/ice/corner{ - dir = 1 - }, -/area/ice_colony/exterior/underground/caves) -"bmn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/hallway/north_west) -"bmo" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves/open) +"bVP" = ( +/obj/structure/tunnel{ + id = "dig_site_tunnel" }, -/area/ice_colony/underground/hallway/north_west) -"bmp" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bVQ" = ( +/obj/structure/mineral_door/resin, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bVR" = ( +/turf/closed/ice/straight{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bmr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Chapel" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/chapel) -"bmv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/ice_colony/underground/crew/chapel) -"bmx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"bmy" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"bmz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bmD" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves) +"bVS" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/crew/morgue) -"bmE" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bVT" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bmF" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bmG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bmK" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bmL" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bVW" = ( +/turf/closed/shuttle{ + icon_state = "wall3" }, +/area/ice_colony/exterior/underground/caves/dig) +"bVX" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bVY" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bVZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/obj/item/tool/weldingtool, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWa" = ( /obj/structure/ladder{ height = 1; icon_state = "ladderup"; - id = "engineering_ladder" - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"bmM" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 + id = "ship_ladder1" }, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWb" = ( /obj/structure/ladder{ height = 1; icon_state = "ladderup"; - id = "engineering_ladder1" + id = "ship_ladder" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWc" = ( +/obj/structure/tunnel{ + id = "north_research_tunnel" }, -/area/ice_colony/underground/engineering/locker) -"bmN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/engineering/locker) -"bmO" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bWh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/engineering/locker) -"bmP" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bWi" = ( +/turf/closed/ice/corner{ + dir = 4 }, -/area/ice_colony/underground/engineering/locker) -"bmQ" = ( +/area/ice_colony/exterior/underground/caves/open) +"bWj" = ( /turf/closed/ice/straight{ dir = 4 }, -/area/ice_colony/exterior/underground/caves) -"bmR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/ice_colony/underground/maintenance/research) -"bmS" = ( -/turf/closed/ice/junction, -/area/ice_colony/exterior/underground/caves) -"bmT" = ( -/obj/structure/ice/thin/single, +/area/ice_colony/exterior/underground/caves/open) +"bWn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/east) +"bWo" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"bWp" = ( +/turf/closed/ice/intersection, +/area/ice_colony/exterior/underground/caves/open) +"bWq" = ( +/turf/closed/ice/corner{ + dir = 8 + }, +/area/ice_colony/exterior/underground/caves/open) +"bWs" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/crap_item, /turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bmU" = ( +/area/ice_colony/exterior/underground/caves/open) +"bWt" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bmW" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"bWu" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ + pixel_y = 32 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bWv" = ( +/obj/structure/surface/table, +/obj/item/device/camera, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWw" = ( +/obj/structure/ice/thin/junction{ + dir = 4 }, -/area/ice_colony/underground/crew/chapel) -"bmX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWx" = ( +/obj/structure/ice/thin/end{ + dir = 4 }, -/area/ice_colony/underground/crew/chapel) -"bmY" = ( -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/chapel) -"bmZ" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWz" = ( +/obj/structure/ice/thin/straight, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWD" = ( +/obj/item/tool/pickaxe/silver, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWE" = ( +/obj/structure/inflatable/door, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWF" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/curtain/black, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "dig_site_prep_ladder1" }, -/area/ice_colony/underground/crew/morgue) -"bna" = ( -/obj/structure/curtain/black, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bWG" = ( +/obj/item/tool/pickaxe, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bWH" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "dig_site_prep_ladder" }, -/area/ice_colony/underground/crew/morgue) -"bnb" = ( -/obj/structure/curtain/black, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bWI" = ( +/turf/closed/ice/intersection, +/area/ice_colony/exterior/underground/caves) +"bWS" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 }, -/area/ice_colony/underground/crew/morgue) -"bnd" = ( -/obj/structure/curtain/open/black, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/dig) +"bXh" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "16" }, -/area/ice_colony/underground/crew/morgue) -"bnf" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/grille, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves/dig) +"bXi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"bXm" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "15" }, -/area/ice_colony/underground/crew/library) -"bng" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/grille, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves/dig) +"bXt" = ( +/turf/closed/ice/junction{ + dir = 4 }, -/area/ice_colony/underground/engineering/locker) -"bnh" = ( -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves/open) +"bXv" = ( +/turf/closed/ice/end{ + dir = 8 }, -/area/ice_colony/underground/engineering/locker) -"bni" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/exterior/underground/caves/open) +"bXw" = ( +/turf/closed/ice/junction{ + dir = 8 }, -/area/ice_colony/underground/engineering/locker) -"bnj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/area/ice_colony/exterior/underground/caves/open) +"bXx" = ( +/obj/structure/ice/thin/junction{ + dir = 8 }, -/area/ice_colony/underground/engineering/locker) -"bnk" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering) -"bnl" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering) -"bnm" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering) -"bnn" = ( -/turf/closed/ice/end, -/area/ice_colony/exterior/underground/caves) -"bno" = ( +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"bXA" = ( /obj/structure/tunnel{ - id = "north_tunnel" + id = "south_research_tunnel" }, /turf/open/ice, /area/ice_colony/exterior/underground/caves/open) -"bnp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +"bYf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"bYm" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"bYv" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation) +"bYz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"bYV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Chapel" }, +/turf/open/floor/wood, /area/ice_colony/underground/crew/chapel) -"bnq" = ( -/obj/structure/bed/chair{ +"bYY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_l) +"bZY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"caa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "chapel" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"cah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/ice_colony/underground/crew/chapel) -"bnr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"cav" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator4/ground) +"cay" = ( +/obj/structure/surface/table, +/obj/item/storage/surgical_tray, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"caN" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"cbk" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/tcomms) +"cbn" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"ccA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/lobby) +"ccI" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/crew/chapel) -"bns" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"cdE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "chapel" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/ice_colony/underground/crew/chapel) -"bnt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"ceu" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/storage) +"ceA" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Underground Morgue" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/command/checkpoint) +"ceO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/crew/morgue) -"bnu" = ( +/obj/item/reagent_container/food/snacks/hotchili, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"ceW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"cfe" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"cfA" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator3/ground) +"cfT" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/ice_colony/underground/crew/morgue) -"bnv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/crew/morgue) -"bnw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"cgt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/poddoor/two_tile/four_tile/vertical/secure{ + id = "researchoutside"; + name = "Omicron Research Dome" }, -/area/ice_colony/underground/crew/morgue) -"bnx" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/surface/research) +"cgI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"chw" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"chC" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"chP" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"ciE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/crew/morgue) -"bny" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"ciV" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_l" }, -/area/ice_colony/underground/hallway/north_west) -"bnz" = ( -/turf/open/floor{ +/obj/structure/shuttle/diagonal{ dir = 1; - icon_state = "darkgreen2" + icon_state = "platform" }, -/area/ice_colony/underground/hallway/north_west) -"bnA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"cji" = ( +/obj/item/lightstick/planted, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"cjC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"cka" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/backroom) +"ckP" = ( +/obj/structure/mineral_door/resin, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research) +"cld" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"clr" = ( +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/north_west) -"bnB" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/ice_colony/underground/crew/library) -"bnC" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"bnD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering/locker) -"bnF" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering/locker) -"bnG" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +"clK" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"clZ" = ( +/obj/structure/machinery/door/window/northright{ + name = "Canteen" }, -/area/ice_colony/underground/engineering) -"bnH" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"cmj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/area/ice_colony/underground/engineering) -"bnI" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/storage) +"cmk" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"cmJ" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"cmL" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"cno" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/excavation) +"cns" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/underground/hangar) +"cnO" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"cnS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bnJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"cof" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bnK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"cos" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bnL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/plating/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"cow" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/underground/hallway/north_west) +"coy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnM" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"cpM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"cpR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, -/area/ice_colony/underground/engineering) -"bnN" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/dorms) +"cpU" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/substation) +"cpZ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/obj/item/frame/light_fixture, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/armory) +"cqi" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnO" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"cqp" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/lobby) +"cqD" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnP" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/floor/plating/warnplate/northeast, +/area/ice_colony/underground/crew/disposals) +"crd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnQ" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"crf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Engineering Material Storage" }, -/area/ice_colony/underground/engineering) -"bnR" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"crn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnS" = ( -/obj/structure/janitorialcart, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bnT" = ( -/turf/closed/ice/straight, -/area/ice_colony/exterior/underground/caves) -"bnU" = ( -/obj/structure/ice/thin/end{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"crv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"crF" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/tool) +"csj" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"csE" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"ctB" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bnV" = ( -/obj/structure/tunnel{ - id = "east_cargo_tunnel" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bnW" = ( -/turf/open/ice, -/area/ice_colony/underground/maintenance/research) -"bnX" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/hallway/north_west) -"bnY" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/checkpoint) +"cuh" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"cux" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"cvn" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/underground/crew/chapel) -"bnZ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/underground/crew/morgue) -"boa" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"cvw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv2) -"bob" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Underground Morgue" }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) -"boc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) -"boe" = ( -/obj/structure/closet/coffin, +"cvB" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/morgue) -"bof" = ( -/obj/structure/closet/coffin, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"cvO" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"cwr" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad2) +"cxe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/crew/morgue) -"bog" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/ice_colony/underground/crew/morgue) -"boh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/alpha) +"cxg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"cxh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"boi" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"cxA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"cxC" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/backroom) +"cxR" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"cyl" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms) +"cyq" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/ice_colony/underground/hallway/north_west) -"boj" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"bok" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +"cyt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bol" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms/canteen) +"cyA" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"czd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"czk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"czS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bom" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle3"; - dockId = "Lower_Dorms"; - pixel_y = 32 +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"cAa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkgreen2" + icon_state = "pipe-c" }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"bon" = ( -/obj/structure/machinery/light{ +"cBj" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv2) +"cBS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"cBZ" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"boo" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad2) +"cDm" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"bop" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"cDu" = ( +/obj/structure/machinery/light, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"cDA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/ice_colony/underground/hallway/north_west) -"boq" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"cDP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = -24 + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"cEg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/crew/library) -"bor" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control) +"cEo" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics North Wing Dome" }, -/area/ice_colony/underground/crew/library) -"bos" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"cEG" = ( +/obj/docking_port/stationary/marine_dropship/lz2, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"cEX" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/north) -"bot" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering/locker) -"bou" = ( -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"cFy" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/security/brig) +"cFI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/engineering/locker) -"bow" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Underground Engineering Locker Room" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"cGh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/engineering/locker) -"box" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"cGt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"cHy" = ( +/obj/item/device/flashlight, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"cHL" = ( +/turf/open/floor/darkyellow2, /area/ice_colony/underground/engineering) -"boz" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor{ - icon_state = "dark2" +"cHR" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/human/burger, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"cHU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"cHZ" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator4/underground) +"cIo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"cIX" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) +"cJh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"cJB" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/substation) +"cKn" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"cKy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"cKF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"cLy" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"boA" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"cLA" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security) +"cMe" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) -"boB" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"boC" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/research) -"boD" = ( -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"boE" = ( +"cNr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 2; name = "Underground Morgue" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/morgue) -"boF" = ( +"cOs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/command/checkpoint) +"cOF" = ( +/obj/structure/surface/table, +/obj/item/evidencebag, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"cPu" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"cQH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/work) +"cQI" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"cQT" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/locker) +"cRl" = ( +/obj/structure/inflatable/door, +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" + }, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"cRO" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"cTe" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/ground) +"cTi" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"cTp" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"cTG" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/surface/tcomms) +"cTJ" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) +"cUO" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/tech_storage) +"cUQ" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/bball) +"cVM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/hallway/north_west) -"boG" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"cVN" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/item/device/flashlight, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"cVY" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"cWk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"boH" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/library) -"boI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Library" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"cWr" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/interrogation) +"cWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/crew/library) -"boJ" = ( -/turf/closed/wall/r_wall, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"cXi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"boK" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +"cXm" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Maintenance" + icon_state = "pipe-c" }, -/turf/open/floor/plating, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"cXu" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"cXz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platebot, +/area/ice_colony/surface/research/tech_storage) +"cXB" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/storage) +"cXE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"cXJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"cXL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"cXU" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"cXV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"cYB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"boM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/locker) -"boN" = ( +"cYD" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Dome South Wing" + }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"cYI" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/excavation) +"daf" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/command/checkpoint) +"dai" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Underground Engineering Locker Room" + name = "\improper Colony Garage Repair Station" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"dat" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/engineering/locker) -"boO" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"daT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"boP" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/landmark/queen_spawn, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"boQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"dbn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/engineering) -"boR" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"boS" = ( -/turf/closed/ice/end{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"dbu" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"dcn" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"dcv" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "garage_ladder" + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"dcE" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad2) +"ddc" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/area/ice_colony/exterior/underground/caves) -"boT" = ( -/turf/closed/ice/end{ +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"ddu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"ddA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/hallway) +"deb" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"deh" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"dfh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/ice_colony/exterior/underground/caves) -"boV" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"dfj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"dfW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/one) +"dgz" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"dhb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/underground/hallway/north_west) -"boW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"dhj" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" + dir = 8 }, -/area/ice_colony/underground/hallway/north_west) -"boX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c1000, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/storage/highsec) +"dhI" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"dhU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"dib" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bpa" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/hallway/north_west) -"bpb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bpc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/structure/window/framed/colony, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"diu" = ( +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/ice_colony/underground/hallway/south_east) -"bpe" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"djm" = ( +/obj/structure/barricade/metal{ + dir = 8 }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"dju" = ( +/obj/structure/closet/radiation, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"djW" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"dkf" = ( +/obj/structure/machinery/bot/mulebot, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/ice_colony/underground/hallway/south_east) -"bpf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"dki" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/hallway/south_east) -"bpg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"dkz" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"dkC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bpi" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"dkT" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"dlg" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"dll" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/interrogation) +"dlz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bpk" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/center) +"dlD" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/underground) +"dlG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"dmw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"dmy" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/hallway) +"dmM" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"dmR" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/center) +"dnj" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"dnE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"doc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bpl" = ( -/obj/structure/window/framed/colony/reinforced, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/plating, -/area/ice_colony/underground/engineering) -"bpm" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/area/ice_colony/underground/engineering/substation) +"doo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bpn" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/surface/table, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering) -"bpo" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"doA" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"doT" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"dpv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bpp" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"dpx" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/electric) +"dqg" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/interrogation) +"dqy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 + }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/lobby) +"dqA" = ( +/obj/item/stack/rods, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control) +"dqC" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/research) +"drC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bpq" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"drS" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"dsi" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms/canteen) +"dtp" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/ground) +"dun" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"duR" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"dvd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"bpr" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"dvh" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"dvk" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"dvo" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/control) +"dvp" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 15 }, -/area/ice_colony/underground/hallway/north_west) -"bpt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"dvT" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"dwi" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bpu" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/medical/lobby) +"dwz" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"dwR" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bpv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bpw" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"dxf" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/substation/smes) +"dxx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bpx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"dxD" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/command/checkpoint) +"dyg" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/storage/belt/utility/full, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"dyl" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Arrivals"; + name = "Upper Arrivals"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/arrivals; + airlock_exit = "elevator"; + elevator_network = "Arrivals"; + airlock_area = /area/shuttle/elevator1/ground }, -/area/ice_colony/underground/engineering) -"bpy" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator1/ground) +"dyN" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"dzm" = ( +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, -/area/ice_colony/underground/engineering) -"bpA" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bpB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"dzo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/hallway/north_west) -"bpC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"dzs" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"dzy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"dAf" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"dAr" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"dAA" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"dAU" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bpD" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"dBr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"dCj" = ( +/obj/structure/machinery/processor, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"dDu" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"dDA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Theta-V Research Laboratory" }, -/area/ice_colony/underground/hallway/north_west) -"bpG" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"dDT" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"dFi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bpH" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"dFJ" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "pipe-j2" + icon_state = "pipe-c" }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"dGn" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"dGv" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/medical/lobby) +"dGB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bpI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"dGO" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/area/ice_colony/underground/hallway/north_west) -"bpL" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"dGQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"dHd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bpM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bpT" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Medical Laboratory Treatment" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"dHO" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/effect/landmark/good_item, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"dHR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bpX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"dHW" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/engineering) -"bpY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +"dIf" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/checkpoint) +"dIB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"dIE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"dIM" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"dJt" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/engineering) -"bpZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"dJw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"dKc" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" +/obj/structure/shuttle/diagonal{ + icon_state = "heater" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"dKd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"dKr" = ( +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"dKJ" = ( +/obj/structure/bedsheetbin, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"dLs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"dMa" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"dNx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/ice_colony/underground/engineering) -"bqb" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"dNE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bqd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"dOW" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator4/ground) +"dOY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"dPn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"dPo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"dPR" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/lobby) +"dQw" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/hallway/north_west) +"dQE" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"dRe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bqe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/treatment) +"dRA" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/underground) +"dRD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_r" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/shuttle/diagonal{ + dir = 1; + icon_state = "platform" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"dRQ" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/north_west) +"dRY" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/research) +"dSa" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"dSk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/dorm_r) +"dSW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bqf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"dTe" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"dTo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bqg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"dTt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"dUE" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/reception/checkpoint_north) +"dVF" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"dVY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"dWn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"dWx" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"dWz" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator1/ground) +"dWY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bqh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"dXj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"dYk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"dYn" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"dYu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/ice_colony/underground/engineering) -"bqi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"dYB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"dYT" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"dZN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"dZS" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"dZU" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"dZY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/engineering) -"bqj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/engineering) -"bqk" = ( -/turf/closed/ice/junction{ - dir = 4 +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/alpha) +"eab" = ( +/obj/structure/machinery/conveyor{ + icon_state = "switch-off" }, -/area/ice_colony/exterior/underground/caves) -"bql" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" +/obj/structure/machinery/door_control{ + name = "Storage Unit Control"; + pixel_x = -24 }, -/area/ice_colony/underground/hallway/north_west) -"bqm" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrowncorners2" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/requesitions) +"eax" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"eaN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/hallway/north_west) -"bqn" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bqo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bqp" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/north_west) -"bqq" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bqr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"eaX" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"ebI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"bqt" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"ebT" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/sec_storage) +"ecJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"bqu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +/obj/item/tool/stamp, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"ecT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/ice_colony/underground/hallway/north_west) -"bqw" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" +/obj/structure/surface/table, +/obj/item/tool/soap, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = -2 }, -/area/ice_colony/underground/hallway/south_east) -"bqx" = ( -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"edq" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/hallway/south_east) -"bqz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkgreen2" +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"edC" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/ice_colony/underground/hallway/south_east) -"bqA" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"edK" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/ice_colony/underground/hallway/south_east) -"bqB" = ( -/turf/open/floor{ +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"eeE" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"bqC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bqD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bqE" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bqF" = ( -/turf/open/floor{ - icon_state = "darkyellow2" + icon_state = "pipe-j2" }, -/area/ice_colony/underground/engineering) -"bqG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkredcorners2, +/area/ice_colony/underground/security/hallway) +"eeV" = ( +/obj/structure/machinery/space_heater, /obj/structure/machinery/light, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"efb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bqI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"efo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/engineering) -"bqJ" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/research) +"efs" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) +"efA" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "ship_ladder1"; + pixel_y = 16 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"efG" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/surface/rack, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"egk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bqK" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"egs" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/generator) +"egN" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"egO" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"ehI" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bqL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bqM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bqN" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"ehU" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bqO" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"eij" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/temporary) +"eim" = ( +/turf/open/floor/darkredcorners2/west, +/area/ice_colony/underground/security/hallway) +"eiq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"eis" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/hangar/checkpoint) +"eiQ" = ( +/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bqP" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/engineering) -"bqQ" = ( -/turf/closed/ice/junction{ +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms/canteen) +"eiR" = ( +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"eje" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/area/ice_colony/exterior/underground/caves) -"bqR" = ( -/obj/structure/ice/thin/corner{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bqS" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bqT" = ( -/obj/structure/sign/safety/medical, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/lobby) -"bqU" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/medical/lobby) -"bqV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Underground Medical Laboratory"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bqW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"ekz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bqX" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/lobby) -"bqY" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/medical/hallway) -"bqZ" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/treatment) -"bra" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "hangar_ladder1" }, -/area/ice_colony/underground/hallway/north_west) -"brb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/plating/warnplate, +/area/ice_colony/underground/maintenance/east) +"ekG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"brc" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"ekV" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/ice_colony/underground/hallway/north_west) -"brd" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation/smes) +"elk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"elv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"elB" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_2"; + name = "garage shutter control"; + pixel_y = -30 }, -/area/ice_colony/underground/hallway/north_west) -"bre" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"elU" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"brf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"emr" = ( +/obj/structure/machinery/space_heater, /obj/structure/machinery/light, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"brh" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/bball) -"bri" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/bball) -"brk" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"ems" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/underground/crew/bball) -"brl" = ( -/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"emA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"emY" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/bball) -"brm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/bball) -"brn" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/tech_storage) +"ena" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bro" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"end" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway/north_west) +"eni" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"ent" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering) -"brp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"enO" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor{ +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"eog" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/tech_storage) +"eot" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/surface/excavation/storage) +"epe" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/container_yard) +"epI" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "darkyellow2" + pixel_x = 24 }, -/area/ice_colony/underground/engineering) -"brq" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"epQ" = ( +/obj/structure/surface/table, +/obj/item/stack/nanopaste, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"epR" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"epU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"eqc" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"eqe" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "9" }, -/area/ice_colony/underground/engineering) -"brr" = ( +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"eqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/alpha) +"eqF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/engineering) -"brs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"eqX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering) -"brt" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"erz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bru" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"brv" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"brw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/south_east) +"esm" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "engineering_ladder"; + pixel_y = 16 }, -/area/ice_colony/underground/medical/lobby) -"brx" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"esI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"etL" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/security/brig) +"eua" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/underground/medical/lobby) -"bry" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"euA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"euE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"brz" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"brA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"brB" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/hallway/south_east) +"euY" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"evs" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"evG" = ( +/turf/open/floor/bcircuit, +/area/ice_colony/surface/engineering/generator) +"evO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"evT" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper/research_notes, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"ewt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"ewS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"ewY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"exm" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/bball) +"exB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"brC" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"eyC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"ezf" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"ezj" = ( +/obj/structure/pipes/standard/manifold/visible{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"brD" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"ezx" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/medical/lobby) -"brE" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/disposals) +"ezO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"ezR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/medical/hallway) -"brF" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/beta) +"eAm" = ( /obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor{ +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"eAr" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/hallway) -"brG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" + pixel_y = -24 }, -/area/ice_colony/underground/medical/hallway) -"brH" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"eAy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"eAE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/medical/treatment) -"brI" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor{ +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"eBg" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "whitered" + pixel_y = -24 }, -/area/ice_colony/underground/medical/treatment) -"brJ" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"eBr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"eBG" = ( +/obj/docking_port/stationary/trijent_elevator{ + airlock_area = /area/shuttle/elevator3/underground; + airlock_exit = "elevator"; + elevator_network = "Omicorn"; + height = 5; + width = 8; + name = "Lower Omicorn"; + id = "Lower_Omicorn" }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/underground) +"eBJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/whitered/southwest, /area/ice_colony/underground/medical/treatment) -"brK" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/or) -"brL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/hallway/north_west) -"brM" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/reception/checkpoint_north) -"brN" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/reception/checkpoint_north) -"brO" = ( +"eBZ" = ( +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"eCQ" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/field_gear) +"eCU" = ( /obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 2; - icon_state = "leftsecure"; - id = "brg"; - name = "Security Desk" - }, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/window/northright{ - name = "Security Desk" - }, -/obj/item/tool/stamp, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"eCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/reception/checkpoint_north) -"brP" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Checkpoint" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"eDw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"eDx" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/tech_storage) +"eDL" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"eDZ" = ( +/obj/structure/shuttle/diagonal{ + dir = 10; + icon_state = "wall" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"eFl" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"eFu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/reception/checkpoint_north) -"brQ" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"eGt" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/sink{ + pixel_y = 15 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/ice_colony/underground/crew/bball) -"brR" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"eGI" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"eHv" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"eIm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"eJN" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, -/area/ice_colony/underground/crew/bball) -"brT" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/item/storage/box/flashbangs, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/armory) +"eKM" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/valley/southwest) +"eKT" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"eLb" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/ice_colony/underground/crew/bball) -"brU" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) +"eLo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"eMS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"eNa" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/area/ice_colony/underground/crew/bball) -"brV" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"eOJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/hallway) +"ePg" = ( +/obj/structure/machinery/door_control{ + id = "req_sec_storage"; + name = "Requesition Secure Storage"; + normaldoorcontrol = 1; + pixel_y = -24; + req_access_txt = "100"; + specialfunctions = 4 }, -/area/ice_colony/underground/hallway/south_east) -"brW" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"ePA" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"brX" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"ePB" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/tool) +"ePK" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"ePS" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"ePT" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/underground/hallway/south_east) -"brY" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"eQc" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/armory) +"eRO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"eSl" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" }, -/area/ice_colony/underground/hallway/south_east) -"brZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bsa" = ( -/obj/structure/machinery/light/small{ +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"eSP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bsb" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"eTo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"eTD" = ( +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/engineering) -"bsc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bsd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bse" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bsf" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bsg" = ( -/obj/structure/ice/thin/corner, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bsh" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"bsi" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsl" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"bsm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"bsn" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"eTG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/garage/repair) +"eUP" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/work) +"eWy" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"eWN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/medical/hallway) -"bso" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"eWR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"bsp" = ( -/obj/structure/pipes/standard/manifold/visible{ - layer = 2.3 - }, -/turf/open/floor{ - icon_state = "white" + icon_state = "pipe-c" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"eXu" = ( +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/interrogation) +"eXL" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/north, /area/ice_colony/underground/medical/treatment) -"bsq" = ( -/obj/structure/pipes/standard/manifold/visible{ - layer = 2.3 +"eXT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms) +"eYs" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "whiteredcorner" - }, -/area/ice_colony/underground/medical/treatment) -"bsr" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/treatment) -"bss" = ( -/obj/structure/pipes/portables_connector{ +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"eYX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/toy/plush/farwa, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"eZd" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"fas" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"bst" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/or) -"bsu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"fbu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"fbD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/or) -"bsv" = ( -/obj/structure/sink{ - pixel_y = 15 +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"fbJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"fcJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; - icon_state = "whitered" + name = "\improper Underground Security Interrogation Observation" }, -/area/ice_colony/underground/medical/or) -"bsw" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"fcM" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"fcV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/medical/or) -"bsx" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"fdv" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"fdJ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/area/ice_colony/underground/medical/or) -"bsy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"fdY" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"feB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation" }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bsz" = ( +/area/ice_colony/underground/engineering/substation) +"feP" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"feU" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"ffc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bsA" = ( -/obj/structure/machinery/computer/cameras, +/turf/open/floor/whiteredcorner, +/area/ice_colony/surface/clinic/treatment) +"fgc" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/storage) +"fgY" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/obj/item/device/taperecorder, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/backroom) +"fhF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/reception/checkpoint_north) -"bsB" = ( -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkred2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/reception/checkpoint_north) -"bsC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/research) +"fhI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"fic" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkred2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/reception/checkpoint_north) -"bsE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"fin" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/bball) -"bsH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"fio" = ( +/obj/item/weapon/baton, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"fiL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/area/ice_colony/underground/crew/bball) -"bsI" = ( -/turf/open/floor{ +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"fju" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"fjK" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"fjL" = ( +/obj/structure/surface/table, +/obj/item/device/defibrillator, +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/bball) -"bsJ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bsK" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bsL" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "darkyellow2" + pixel_x = 24 }, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"fjZ" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/research/field_gear) +"fkb" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/engineering) -"bsM" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - icon_state = "darkyellow2" +"fkV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/engineering) -"bsN" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"flc" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/engineering) -"bsO" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/structure/noticeboard{ + pixel_y = -32 }, -/area/ice_colony/underground/engineering) -"bsP" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"fly" = ( +/obj/structure/machinery/door_control{ + id = "st_18"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 }, -/area/ice_colony/underground/engineering) -"bsQ" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"flP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/storage/box/lights, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/brig) +"fmd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bsR" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"fmQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/garage/one) +"fot" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/engineering) -"bsS" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"fpk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bsT" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"fpC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/engineering) -"bsU" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/lobby) +"fqi" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation) +"fqt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsV" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsW" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"fqw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "pipe-c" + name = "\improper Underground Requesitions Office" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"fqx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bsX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"frg" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/electric) +"frt" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"frz" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"frJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"frL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/medical/lobby) -"bsY" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/lobby) -"bsZ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"frN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"fsR" = ( +/obj/structure/shuttle/engine/heater{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"fsT" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/requesition) +"ftr" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/tech_storage) +"ftX" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/locker) +"fuA" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/hallway/south_east) +"fuW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"fvy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"fws" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"fwD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"fwT" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/area/ice_colony/underground/medical/lobby) -"bta" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"fxF" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"fxX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"fys" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"btb" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"fyM" = ( +/obj/structure/surface/table, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition/lobby) +"fyY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/north_west) +"fzn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"fzy" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"fzQ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control/office) +"fzV" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hangar) +"fAx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"fAG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"btc" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"fBc" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"fBu" = ( /obj/structure/surface/table, /obj/item/tool/wrench, /obj/item/paper/research_notes, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"btd" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bte" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"btf" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"btg" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/treatment) -"bth" = ( -/obj/structure/surface/table, -/obj/item/stack/nanopaste, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/or) -"bti" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/or) -"btl" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/or) -"btm" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"btn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception/checkpoint_north) -"bto" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_north) -"btp" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception/checkpoint_north) -"btq" = ( +"fCS" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"fDt" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"fDx" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/treatment) +"fEv" = ( +/obj/item/stack/cable_coil/random, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"fFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/reception/checkpoint_north) -"btr" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/obj/structure/machinery/door_control{ + id = "researchoutside"; + name = "Research Garage Lock"; + pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/research) +"fFC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/reception/checkpoint_north) -"bts" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/backroom) +"fFP" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"fFR" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/beta) +"fGl" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/crew/bball) -"btt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"fGA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"fGQ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"fHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced{ +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"fHo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"fHE" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"fHM" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"fIe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"fIx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"fII" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/storage) +"fJl" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"fJo" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"fKc" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bty" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/sec_storage) +"fKf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition) +"fKA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"fKB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, /obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btz" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering/substation) -"btA" = ( -/obj/structure/sign/safety/high_voltage, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/engineering/substation) -"btB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - id = "engine_electrical_maintenance"; - locked = 0; - name = "Underground Power Substation" - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"fKC" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"fKE" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/ice_colony/underground/engineering/substation) -"btC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"fLq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"fLv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - name = "\improper Underground Medical Laboratory" - }, -/turf/open/floor{ - icon_state = "dark2" + name = "\improper Underground Library" }, -/area/ice_colony/underground/medical/lobby) -"btE" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"fLF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"fLM" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"fLW" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"fMc" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "dig_site_prep_ladder1"; + pixel_y = 16 }, -/area/ice_colony/underground/medical/lobby) -"btF" = ( -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/excavation) +"fMl" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"fMU" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/dorms) +"fNm" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/ice_colony/underground/medical/lobby) -"btG" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"fNB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/medical/lobby) -"btH" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"fNH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/medical/lobby) -"btI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"fNM" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/tool) +"fOq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"fOC" = ( +/obj/item/roller{ + icon_state = "down" }, +/turf/open/floor/whitered/southeast, /area/ice_colony/underground/medical/hallway) -"btJ" = ( +"fOM" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"btK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"btL" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/garage/two) +"fOZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"fQg" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"fQw" = ( +/obj/structure/plasticflaps, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"fQB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"fRA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"fRC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"fSD" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/surface/hangar/checkpoint) +"fSV" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"btM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/medical/treatment) -"btN" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/tech_storage) +"fSX" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"btO" = ( -/obj/structure/surface/table, -/obj/item/storage/surgical_tray, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/obj/structure/machinery/door_control{ + id = "hangar_ice_2"; + name = "hangar shutter control"; + pixel_y = -30 }, -/area/ice_colony/underground/medical/or) -"btP" = ( -/obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"fTv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"fUB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/or) -"btQ" = ( -/obj/structure/machinery/computer/operating, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"fUO" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"fVj" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/north_west) +"fVt" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/medical/or) -"btR" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"fWN" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/sec_storage) +"fXe" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" + dir = 8 }, -/area/ice_colony/underground/medical/or) -"btS" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"fXt" = ( +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"fXK" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/crew/disposals) +"fYI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"fYW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/reception/checkpoint_north) -"btT" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_north) -"btU" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"fYY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/reception/checkpoint_north) -"btV" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Colony Garage" }, -/area/ice_colony/underground/reception/checkpoint_north) -"btW" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"fZb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/reception/checkpoint_north) -"btX" = ( -/turf/open/floor{ +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"fZF" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "darkgreen2" + pixel_x = -24 }, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/crew/bball) -"btY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"fZM" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"fZW" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"gap" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"gaq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"gbE" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"gcf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/window/westright{ - name = "Basketball Court" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"btZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"gcj" = ( +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/surface/research) +"gda" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"gdz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bua" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Storage" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"gdC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"gea" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"ger" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bub" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buc" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/hallway) +"geN" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/center) +"ggk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NS-center" + icon_state = "S" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bud" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "E" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"ghp" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bue" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"ghC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/window/eastleft{ - name = "Basketball Court" +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"ghZ" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buf" = ( -/obj/structure/tunnel{ - id = "engineering_tunnel" +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition) +"gig" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"gix" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"giW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bug" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/exterior/underground/caves) -"buh" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) -"bui" = ( -/turf/open/floor{ - icon_state = "bcircuit" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"gjS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "garage_ice_1"; + name = "\improper Garage Shutters" }, -/area/ice_colony/underground/engineering/substation) -"buj" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"buk" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"gkg" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/reception/checkpoint_south) +"gkz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bul" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bum" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "power_storage_ladder" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bun" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "power_storage_ladder1" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"buo" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bup" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/alien/weeds/node, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"buq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"bur" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"bus" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"gkI" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"gkM" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/or) +"gmF" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"gmG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"gnu" = ( +/obj/item/tool/crowbar, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"gnA" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/area/ice_colony/underground/medical/lobby) -"buu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"gnC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/storage) +"goh" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"gor" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/underground/hallway/north_west) +"goB" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"goM" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/ice_colony/underground/medical/lobby) -"buv" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/tool/stamp, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/control/office) +"goN" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bux" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"gqk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/surface/research) +"gqp" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/excavation/storage) +"gqt" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"gqK" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Requisitions"; + name = "Upper Requisitions"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/requisitions; + airlock_exit = "elevator"; + elevator_network = "Requisitions"; + airlock_area = /area/shuttle/elevator4/ground }, -/area/ice_colony/underground/medical/hallway) -"buz" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator4/ground) +"grb" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/crew/lavatory) +"grd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"gry" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"gsa" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"gsd" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering) +"gsl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Medical Laboratory Treatment" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"buA" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"gsn" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"buB" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"gsx" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"gsB" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"gsJ" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/garage/two) +"gtn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"buD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"buE" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 + dir = 5 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/tech_storage) +"gtG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, -/area/ice_colony/underground/medical/treatment) -"buF" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"guj" = ( /obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"guX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "whitered" + pixel_x = 24 }, -/area/ice_colony/underground/medical/treatment) -"buG" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"gvf" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarwest"; + name = "Underground Hangar Lock"; + pixel_y = -24 }, -/area/ice_colony/surface/hangar/checkpoint) -"buH" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/hangar) +"gvX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/work) +"gwo" = ( +/obj/structure/closet/crate, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"gwp" = ( +/obj/structure/machinery/floodlight/landing, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/or) -"buI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/or) -"buJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"gxk" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"gyj" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator1/underground) +"gym" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"gyA" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_south) +"gyZ" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/medical/or) -"buK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"gzb" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/reception/checkpoint_south) +"gAB" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/medical/or) -"buL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"gAM" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"buM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"gAT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"buN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"gAW" = ( +/obj/structure/dispenser, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/tool) +"gBb" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"gBe" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"gBl" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/north_west) +"gBt" = ( /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +/turf/open/floor/plating/warnplate/east, +/area/ice_colony/underground/crew/disposals) +"gBu" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"gBJ" = ( +/obj/structure/machinery/door_control{ + id = "garage_ice_1"; + name = "garage shutter control"; + pixel_y = -30 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buR" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"gBP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"gBV" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"gDs" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"gDA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Underground Medical Laboratory" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"gEN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/lobby) +"gFp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"gFs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buS" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"gFQ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/surface/hangar/checkpoint) +"gGj" = ( +/obj/effect/spawner/random/tool, /obj/effect/decal/warning_stripes{ - icon_state = "NS-center" + icon_state = "E" }, -/obj/effect/decal/warning_stripes, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"gGv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"gGw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"gGy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"gGU" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/generator) +"gHd" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"gHl" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "ship_ladder"; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"gHu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"gHF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"buU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/bball) -"buV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"gHL" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Sports Center" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"gHU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"gHV" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/area/ice_colony/underground/crew/bball) -"buW" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad2) +"gIe" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"gIH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/surface/clinic/lobby) +"gJi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security Checkpoint" }, -/area/ice_colony/underground/hallway/south_east) -"buX" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/engineering) -"bvc" = ( -/obj/structure/ice/thin/corner{ - dir = 8 +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/reception/checkpoint_south) +"gJw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bvd" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/medical/lobby) -"bve" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bvf" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/lobby) -"bvg" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/lobby) -"bvh" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"gJL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/tech_storage) +"gJM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bvi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bvj" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"gJX" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"bvk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"gKG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"gLi" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/hallway) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + health = 80 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"gLq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/medical/treatment) -"bvm" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"gLz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"gLD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bvo" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" + dir = 8 }, -/area/ice_colony/underground/medical/treatment) -"bvp" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"gMt" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/ice_colony/surface/storage_unit/telecomms) +"gMX" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/ice_colony/underground/medical/treatment) -"bvq" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitered" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"gNg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/medical/or) -"bvr" = ( -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"gNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/medical/or) -"bvs" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/or) -"bvt" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"gOF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"gOS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/medical/or) -"bvu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"gOT" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"gOV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/medical/or) -"bvv" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/central/construction) -"bvw" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"gPg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/maintenance/central/construction) -"bvx" = ( -/obj/item/frame/apc, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central/construction) -"bvy" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central/construction) -"bvz" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research/tech_storage) +"gPq" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"gPs" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/hallway/north_west) +"gPM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N-corner" }, -/obj/structure/machinery/door/window/westleft{ - name = "Basketball Court" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"gPY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"gQd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"gQt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics South Wing Dome" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"gSv" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"gTb" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/interrogation) +"gTd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"gTY" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"gUE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/research) +"gUI" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/crew/bball) -"bvC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"gUZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door/window/eastright{ - name = "Basketball Court" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Disposals" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvD" = ( -/obj/structure/machinery/power/geothermal, +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"gVe" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"gVf" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"gWJ" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"gXa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"gXi" = ( +/obj/structure/machinery/iv_drip, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves) -"bvE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"gXX" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"gYH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bvF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bvG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bvH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"gYI" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"gYV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bvI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"gZl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"gZt" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bvJ" = ( -/turf/closed/ice/corner, -/area/ice_colony/exterior/underground/caves/open) -"bvK" = ( -/obj/structure/ice/thin/single, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bvL" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"gZw" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms/canteen) +"gZy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"gZS" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/storage) +"haA" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"hbk" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/surface/command/checkpoint) +"hbx" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"hbz" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"hbZ" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/area/ice_colony/underground/medical/lobby) -"bvM" = ( +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"hds" = ( +/obj/structure/cryofeed, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"hdv" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"hdG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"hdS" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "darkgreen2" + pixel_x = -24 }, -/area/ice_colony/underground/medical/lobby) -"bvN" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"hej" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle4"; + dockId = "Upper_Arrivals"; + pixel_y = 32 }, -/area/ice_colony/underground/medical/lobby) -"bvO" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"hfj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/underground/maintenance/south) +"hfC" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) +"hgV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/medical/lobby) -"bvP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"hhf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/medical/lobby) -"bvQ" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +"hhg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"hhs" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"hht" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/medical/treatment) -"bvR" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "white" +/obj/item/tool/shovel/snow, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"hil" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/ice_colony/underground/medical/treatment) -"bvT" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"hiL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bvU" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/turf/open/floor{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"hjh" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "whitered" + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/treatment) -"bvV" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"hjr" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/underground) +"hjy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/checkpoint) +"hjM" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"hjW" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"hkc" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"hkf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; - name = "Underground Medical Laboratory Operating Theatre" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/or) -"bvW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + name = "\improper Underground Security Checkpoint" }, -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"hku" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/hallway) +"hkx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"hkE" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"hkN" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation/smes) +"hkU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"hlc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/control/office) +"hlg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"hlm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bvZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bwa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"hly" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bwb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"hlX" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/storage) +"hmq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bwc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/sec_storage) +"hmT" = ( +/turf/closed/ice_rock/corners{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/ice_colony/exterior/surface/valley/south) +"hnu" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"hoo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/garage/repair) +"hoH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"hoL" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"hpg" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/ground) +"hpw" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/security/brig) +"hqt" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"hqO" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"hru" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"hrN" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/clearing/north) +"hsc" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/control) +"hsT" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle3"; + dockId = "Upper_Dorms"; + pixel_y = 32 }, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/bball) -"bwg" = ( -/obj/structure/machinery/power/terminal{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"htt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bwh" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bwi" = ( -/obj/structure/ice/thin/end{ - dir = 1 - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bwj" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/north_west) -"bwk" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"htU" = ( +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/alpha) +"huD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"huO" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"hvl" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"hvo" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "garage_ladder" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/canteen) -"bwl" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/one) +"hvw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Canteen" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"hvI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/medical/lobby) -"bwm" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"hwF" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"hwV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/electric) +"hxq" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) +"hxR" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"hyp" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"hyy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/lobby) -"bwn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/underground/maintenance/east) +"hyD" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Underground Medical Laboratory Lobby" - }, -/turf/open/floor{ - icon_state = "white" + name = "\improper Hydroponics South Wing Technical Storage" }, -/area/ice_colony/underground/medical/lobby) -"bwo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/hallway) -"bwp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"hyN" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"hzb" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/excavation) +"hzs" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/storage) +"hzL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/marine_law, +/obj/item/storage/donut_box, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/medical/hallway) -"bwq" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"hAu" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"hAX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/south) +"hBb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"hBq" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"hBr" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/electric) +"hBz" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "whitered" + icon_state = "pipe-c" }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/garage/one) +"hBO" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"hBW" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"hCd" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/east, /area/ice_colony/underground/medical/treatment) -"bwr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"hCh" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bws" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"hCr" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_l" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteredcorner" +/obj/structure/shuttle/diagonal{ + dir = 1; + icon_state = "platform" }, -/area/ice_colony/underground/medical/treatment) -"bwt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"hCE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"hCF" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "canteen_ladder" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/machinery/light/small, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"hCQ" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"hCS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/underground/medical/treatment) -"bwu" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"hCX" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"hDB" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/storage) +"hDM" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/southeast) +"hEi" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "burst_r" }, -/area/ice_colony/underground/medical/treatment) -"bwv" = ( -/turf/open/floor{ +/obj/structure/shuttle/diagonal{ dir = 1; - icon_state = "whitered" + icon_state = "platform" }, -/area/ice_colony/underground/medical/treatment) -"bww" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"hEn" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"hEy" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/lobby) +"hFb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/treatment) -"bwx" = ( -/turf/closed/ice/junction{ +/turf/open/floor/whiteredfull, +/area/ice_colony/surface/clinic/lobby) +"hHI" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 1 }, -/area/ice_colony/exterior/underground/caves) -"bwy" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/exterior/underground/caves/open) -"bwz" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/ice_colony/underground/engineering/substation) -"bwA" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating, -/area/ice_colony/underground/engineering/substation) -"bwB" = ( -/obj/structure/machinery/power/geothermal, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"hHP" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"hHZ" = ( +/obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/ice_colony/underground/engineering/substation) -"bwE" = ( -/obj/structure/ice/thin/end, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bwF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"hIk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"hIB" = ( +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bwG" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"hIS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bwH" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "hydroponics_ladder" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"hJi" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/command/checkpoint) +"hJt" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bwI" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"hJz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"hJH" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/garage/two) +"hJJ" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/surface/hydroponics/lobby) +"hJY" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bwJ" = ( -/turf/closed/ice/corner{ - dir = 1 - }, -/area/ice_colony/exterior/underground/caves/open) -"bwK" = ( -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bwO" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"hKu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Colony Requesitions Storage Pod" }, -/area/ice_colony/underground/medical/treatment) -"bwR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"hKQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Armory" }, -/area/ice_colony/underground/medical/treatment) -"bwS" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"hLu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"hLA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bwT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"hMj" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/storage) +"hNd" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall" }, -/turf/open/floor/plating, -/area/ice_colony/underground/medical/treatment) -"bwU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"hNn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central/construction) -"bwV" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"hNo" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/bball) -"bwW" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"hNt" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation/smes) +"hOe" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"hOJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/obj/structure/bed/chair, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"hOY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"hPv" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/underground/crew/bball) -"bwX" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"hPZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"hQc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"hQB" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"hQH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"hSz" = ( +/obj/structure/surface/table, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"hSW" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"hTy" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/sec_storage) +"hTZ" = ( +/obj/structure/machinery/door_control{ + id = "st_17"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + req_access_txt = "100"; + specialfunctions = 4 }, -/area/ice_colony/underground/crew/bball) -"bwY" = ( -/obj/structure/machinery/light{ +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"hUR" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"hVe" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"hVx" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"hVR" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/treatment) +"hWp" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad2) +"hWJ" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/dorms) +"hWO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Men's Restroom" }, -/area/ice_colony/underground/crew/bball) -"bwZ" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"hWS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure/colony{ dir = 2; id = "engine_electrical_maintenance"; - locked = 0; name = "Underground Power Substation" }, -/turf/open/floor/plating, +/turf/open/floor/dark2, /area/ice_colony/underground/engineering/substation) -"bxa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"hWY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bxd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"hWZ" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/excavation/storage) +"hXj" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/garage/repair) +"hYj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"hYu" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"hZk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bxe" = ( -/turf/closed/ice/straight, -/area/ice_colony/exterior/underground/caves/open) -"bxf" = ( -/turf/closed/ice/end{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"hZp" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"hZP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves) -"bxg" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"iaw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/medical/lobby) -"bxh" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"iaA" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms/canteen) +"iaI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition) +"iaN" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/medical/lobby) -"bxj" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"ibb" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"ibt" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"ibV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"ick" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"icm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"icS" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 }, -/area/ice_colony/underground/medical/lobby) -"bxk" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"icU" = ( /obj/structure/surface/table/reinforced, /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/obj/item/tool/stamp, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, +/turf/open/floor/whitered/west, /area/ice_colony/underground/medical/lobby) -"bxl" = ( -/turf/open/floor{ - icon_state = "whitered" +"ide" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"idn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bxm" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bxn" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Aerodrome Hangar Beta" }, -/area/ice_colony/underground/medical/lobby) -"bxo" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"idV" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"idY" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/crew/disposals) +"iem" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Omicron Technical Storage" }, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"ieq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, /area/ice_colony/underground/medical/lobby) -"bxp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +"ies" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"bxq" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"ieu" = ( /obj/item/roller{ icon_state = "down" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"ieB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"igh" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 }, -/area/ice_colony/underground/medical/hallway) -"bxr" = ( -/turf/open/floor{ +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"igF" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"bxs" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bxt" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/medical/treatment) -"bxu" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"bxv" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bxw" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bxx" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" + pixel_x = -24 }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/bball) -"bxy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/storage) +"igR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"igS" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"ihn" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bxC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"ihs" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"ihU" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/ice, -/area/ice_colony/underground/maintenance/engineering) -"bxE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition/lobby) +"ihV" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/hangar) +"ihY" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"iiD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"iiG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxG" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"iiI" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"ijr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxI" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bxJ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/alien/weeds/node, -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/research) -"bxL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/medical/lobby) -"bxM" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/treatment) -"bxN" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitered" - }, +/turf/open/floor/whiteredcorner/east, /area/ice_colony/underground/medical/treatment) -"bxO" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +"ijD" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"ijZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/underground/medical/treatment) -"bxP" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"ike" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/treatment) -"bxQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"ikn" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/garage/repair) +"ilB" = ( +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/underground/hallway/north_west) +"ilG" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/area/ice_colony/underground/medical/treatment) -"bxR" = ( -/obj/structure/curtain/medical, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/area/ice_colony/underground/medical/treatment) -"bxS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bxT" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/hallway) +"imb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"imv" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"imA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bxU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"imX" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"iny" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"ioE" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation) +"ioH" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"ioJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"ioP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bya" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 1 +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "hangar_ladder" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"byb" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/plating/warnplate/southwest, +/area/ice_colony/underground/maintenance/east) +"ipL" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"byc" = ( -/turf/open/ice, -/area/ice_colony/underground/maintenance/engineering) -"byd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"iqg" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering/locker) +"ish" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/generator) +"iso" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"bye" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"ist" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"itj" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"itm" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "whitered" + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/hallway) -"byf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"itO" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/reception/checkpoint_north) +"itS" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/ice_colony/underground/medical/hallway) -"byg" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"iue" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"iuH" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"ivb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "whitered" + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/hallway) -"byi" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"ivL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/hallway) -"byk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"ivQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/brig) +"ivU" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"iwc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"iwd" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"iwk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"iwT" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"iwX" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"iwY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"ixb" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/syringes, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"ixJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"byl" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"ixO" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition) +"ixP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/storage/box/trackimp, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"iyd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/underground/medical/hallway) -"bym" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"iye" = ( +/obj/effect/decal/cleanable/spiderling_remains{ + name = "greenish remains" }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteredcorner" +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"iyr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"byn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/tool) +"iyC" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/field_gear) +"iyJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/control) +"izf" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"izC" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"izK" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/control) +"iAs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"byo" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"iAM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byp" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/central) -"byq" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bys" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byt" = ( -/obj/structure/surface/rack, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byu" = ( -/obj/structure/tunnel{ - id = "cargo_tunnel" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"iAR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"iBd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"byv" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/maintenance/research) -"byw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"iBJ" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/ground) +"iCh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/hallway) -"byx" = ( -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/surface/clinic/lobby) +"iCv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/medical/hallway) -"byy" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition/lobby) +"iCI" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"iCP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"iDj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"iDr" = ( +/obj/structure/closet/radiation, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "whitered" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"iDL" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"iFf" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"iFT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/underground/medical/hallway) -"byA" = ( -/obj/item/roller{ - icon_state = "down" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"iFW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" +/obj/structure/machinery/sensortower, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"iGA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/south_east) +"iGH" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "dorms_ladder"; + pixel_y = 16 }, -/area/ice_colony/underground/medical/hallway) -"byB" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/hallway) -"byC" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/dorms/lavatory) +"iGM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byE" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "canteen_ladder" +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byI" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/canteen) -"byJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"iHk" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"byK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/surface/excavation) +"iHz" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"iIb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"iIi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"byL" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"iIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"byM" = ( -/turf/open/floor/plating/icefloor, -/area/shuttle/elevator3/underground) -"byO" = ( -/turf/closed/ice/end{ +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/surface/clinic/lobby) +"iID" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"iII" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/area/ice_colony/exterior/underground/caves/open) -"byP" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/medical/storage) -"byQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"iIM" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"iLp" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/computer/communications, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"iLJ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/ice_colony/underground/medical/storage) -"byR" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"iMj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"iNn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byT" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms) +"iNo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"iNy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byU" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byV" = ( -/obj/structure/largecrate/random, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"byW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"byX" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"byY" = ( +/area/ice_colony/underground/maintenance/south) +"iNL" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"iOB" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"iOH" = ( +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/underground/requesition) +"iPY" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) +"iQg" = ( +/obj/item/packageWrap, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"iQk" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/garage/repair) +"iRe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"iRk" = ( +/obj/item/bodybag, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"iRC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/crew/canteen) -"byZ" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"iSg" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"iSu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor{ +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "darkgreen2" + name = "\improper Anti-Freeze Bar Freezer" }, -/area/ice_colony/underground/crew/canteen) -"bza" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"iSB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"iTk" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"iTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) -"bzb" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/canteen) -"bzc" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkredcorners2/west, +/area/ice_colony/underground/security/hallway) +"iTD" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"iTQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation/smes) +"iUb" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/work) +"iUn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/underground/hallway/south_east) -"bzd" = ( -/obj/structure/barricade/wooden{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"iUr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bze" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 9; - icon_state = "whitered" +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"iUP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bzf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"iVb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/medical/storage) -"bzg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"iVk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"iVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bzh" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"iVn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/dark2, /area/ice_colony/surface/hangar/checkpoint) -"bzi" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +"iVt" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/north_west) +"iVH" = ( +/obj/item/device/flashlight/flare, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"iVO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/ice_colony/underground/medical/storage) -"bzj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "white" +/obj/structure/mirror{ + pixel_x = -24 }, -/area/ice_colony/underground/medical/storage) -"bzk" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"iVV" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "st_17"; + name = "Power Storage Unit" }, -/area/ice_colony/underground/medical/storage) -"bzl" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"iWo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/excavation/storage) +"iWp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"iWs" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"iWB" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/medical/storage) -"bzm" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"iWZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/medical/storage) -"bzn" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bzo" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"iXg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/medical/storage) -"bzp" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/command/center) -"bzq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"iXj" = ( +/obj/structure/window/reinforced, +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "dig_site_prep_ladder"; + pixel_y = 16 }, -/turf/open/floor/plating, -/area/ice_colony/underground/command/center) -"bzr" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/excavation) +"iXA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/crew/canteen) -"bzs" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"iXJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) -"bzt" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control) +"iYE" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "13" }, -/area/ice_colony/underground/crew/canteen) -"bzu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"iYQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"bzv" = ( -/obj/effect/alien/weeds/node, -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/engineering) -"bzw" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/crew/disposals) +"iYS" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"iZc" = ( +/obj/structure/lz_sign/ice_sign{ + desc = "The only good bug is a dead bug."; + icon_state = "fort_biceps"; + name = "Fort Bicep: Telecommunications Array" }, -/area/ice_colony/underground/medical/storage) -"bzx" = ( -/turf/open/floor{ - icon_state = "white" +/turf/open/auto_turf/snow/layer3, +/area/ice_colony/exterior/surface/valley/south) +"iZz" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad2) +"jaz" = ( +/obj/structure/shuttle/diagonal{ + dir = 5; + icon_state = "wall" }, -/area/ice_colony/underground/medical/storage) -"bzy" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"jaX" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"jbG" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"jbO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"jck" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/dorms) +"jcI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bzz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"jde" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"jdm" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/generator) +"jdx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/medical/storage) -"bzA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"jew" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/medical/storage) -"bzB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"jeJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"jeW" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"jfr" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "power_storage_ladder" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation/smes) +"jfI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bzC" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"jfW" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitered" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"jga" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/ice_colony/underground/medical/storage) -"bzD" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"jgA" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/underground/command/center) -"bzE" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"jgG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/underground/command/center) -"bzF" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"jhm" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"jhU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"jjo" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/garage/repair) +"jjK" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"jld" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/ice_colony/underground/command/center) -"bzG" = ( -/turf/open/floor{ +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation/smes) +"jlp" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"jlE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"jmj" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"jmK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "darkblue2" + name = "\improper Colony Power Substation SMES" }, -/area/ice_colony/underground/command/center) -"bzH" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"jmW" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"jnQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bzI" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"joc" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"joe" = ( +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/sample) +"jof" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_south) +"joq" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"joJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"joQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bzJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/dark, +/area/ice_colony/underground/security/hallway) +"jpc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"jpd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bzK" = ( +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"jpf" = ( /obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control/office) +"jpN" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering/generator) +"jrj" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/area/ice_colony/underground/command/center) -"bzL" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bzM" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "dark2" + pixel_x = 24 }, -/area/ice_colony/underground/crew/canteen) -"bzN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"jrv" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator1/underground) +"jrM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Power Substation" }, -/area/ice_colony/underground/crew/canteen) -"bzO" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"jrQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/crew/canteen) -"bzP" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/detective) -"bzQ" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/marshal) -"bzR" = ( -/obj/structure/ice/thin/corner{ - dir = 4 +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"jrZ" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bzS" = ( -/obj/structure/ice/thin/junction, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bzT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"jsf" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/underground/hangar) +"jtg" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"jtr" = ( +/turf/closed/wall, +/area/ice_colony/exterior/surface/cliff) +"jtz" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"juf" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bzU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"juq" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/crew/leisure) +"jvp" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"jvy" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bzV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"jvN" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"jvT" = ( +/obj/structure/curtain/open/black, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"jvV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/ice, -/area/ice_colony/underground/maintenance/research) -"bzW" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"jvW" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"jwj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/hallway/north_west) -"bzX" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 10; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/storage) -"bzY" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/storage) -"bzZ" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"jwF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor{ - icon_state = "whitered" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"jwL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/ice_colony/underground/medical/storage) -"bAa" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"jxx" = ( +/obj/structure/curtain/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"jxA" = ( /obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/storage) -"bAb" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/storage) -"bAc" = ( -/obj/item/roller{ - icon_state = "down" +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor{ - icon_state = "whitered" +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"jxH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"jxJ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/underground/medical/storage) -"bAd" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"jxN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "whitered" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bAe" = ( -/obj/item/roller{ - icon_state = "down" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"jyk" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitered" +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"jyl" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/underground) +"jyG" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"jyK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/medical/storage) -"bAf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"jyM" = ( +/obj/structure/shuttle/diagonal{ + dir = 9; + icon_state = "wall" }, -/area/ice_colony/underground/command/center) -"bAg" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"jzY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bAh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"jAF" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/storage/highsec) +"jAN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"jAR" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + dockId = "Upper_Omicorn"; + shuttleId = "ice_classic_shuttle2" }, -/area/ice_colony/underground/command/center) -"bAi" = ( -/obj/structure/pipes/vents/pump{ +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/surface/research) +"jAU" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bAj" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"jBp" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bAk" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"jBF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"jBW" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"jCO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bAl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bAm" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/canteen) -"bAn" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Recovery Room" }, -/area/ice_colony/underground/crew/canteen) -"bAo" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"jCZ" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad2) +"jDn" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/ice_colony/underground/crew/canteen) -"bAp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" +/obj/structure/curtain/black, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"jDD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"jDM" = ( +/obj/structure/window/reinforced, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"bAq" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"jGy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception/checkpoint_north) +"jGV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"jHw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAs" = ( -/obj/structure/bed/chair/comfy/black, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"jHC" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/lobby) +"jHK" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/hallway) +"jJt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAt" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/crew/disposals) +"jJZ" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"jKd" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"jKl" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"jKq" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"jKY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAu" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"jLW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/hallway) +"jMD" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"jMW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAv" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAw" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"jNY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAx" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"jOk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"jOq" = ( +/obj/structure/machinery/bot/mulebot, +/obj/structure/window/reinforced{ + dir = 8; + health = 250 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAy" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"jOE" = ( +/obj/structure/inflatable/door, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/excavation/storage) +"jOH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/two) +"jOR" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAz" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAA" = ( -/obj/structure/ice/thin/junction{ - dir = 4 +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"jQi" = ( +/turf/open/floor/whiteredcorner/west, +/area/ice_colony/surface/clinic/treatment) +"jQU" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bAB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bAC" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bAD" = ( -/turf/open/floor{ +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/checkpoint) +"jRw" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/hallway/north_west) -"bAE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/ice_colony/underground/medical/storage) -"bAF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"jRJ" = ( +/obj/structure/closet/secure_closet/req_officer, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"jRV" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Offices" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bAG" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"jSa" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bAH" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"jSx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"jSH" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"jTN" = ( +/turf/open/floor/bcircuit, +/area/ice_colony/underground/engineering/substation) +"jTQ" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"jTR" = ( +/obj/structure/machinery/door/airlock{ + id_tag = "st_5"; + name = "Storage Unit"; + req_one_access_txt = "100;101;102;103" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bAI" = ( -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"jUD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"jUF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"jUL" = ( +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/north) +"jUY" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/hallway/south_east) +"jUZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2/northeast, /area/ice_colony/underground/command/center) -"bAJ" = ( -/obj/structure/window/reinforced/tinted{ +"jWa" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"jWA" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"jWI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/command/center) -"bAK" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/armory) +"jXh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" + dir = 6 }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/canteen) -"bAL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"jXv" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"jXB" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/substation) +"jXW" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/generator) +"jYX" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator3/underground) +"jZh" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/crew/canteen) -"bAM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/center) +"jZw" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) -"bAN" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"jZH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"jZI" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/dropship2, +/turf/open/floor/plating/icefloor, +/area/ice_colony/landing/console) +"kah" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/excavation) +"kaB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"kaH" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"kaP" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"kbz" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/garage/repair) +"kbM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/canteen) -"bAO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Custodial Closet" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/backroom) +"kcn" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) -"bAP" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"kcN" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/canteen) -"bAQ" = ( +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"kdc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"kdL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/underground/hallway/south_east) -"bAR" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"kdP" = ( +/obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAS" = ( -/obj/structure/surface/table/woodentable, -/obj/item/evidencebag, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAT" = ( +/area/ice_colony/underground/crew/library) +"keo" = ( /obj/structure/surface/table/woodentable, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -5; - pixel_y = -1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"kes" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"keJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/pen/blue, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAU" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/computer/cameras/wooden_tv, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bAV" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Sports Center" }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bAX" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"keV" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/ice_colony/surface/research/field_gear) -"bAZ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bBa" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/research) -"bBb" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"kfT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/research) -"bBc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bBd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"kgG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"kgN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bBe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer" }, -/turf/open/floor/plating, -/area/ice_colony/underground/research) -"bBf" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/research) -"bBg" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/research/storage) -"bBh" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"kgX" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/research/storage) -"bBi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" + name = "\improper Underground Maintenance"; + req_access_txt = "100" }, -/area/ice_colony/underground/hallway/north_west) -"bBj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bBk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/area/ice_colony/underground/hangar) +"kgZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bBl" = ( -/obj/structure/machinery/light/small, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "research_storage_ladder" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bBm" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"khb" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" }, -/area/ice_colony/underground/command/center) -"bBn" = ( -/obj/structure/window/reinforced/tinted{ +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"khm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/machine/smes, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"kic" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/backroom) +"kij" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/brig) +"kio" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/computer/atmos_alert, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bBo" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bBp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"kiz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/command/center) -"bBq" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/center) -"bBr" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"kiR" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/dorms/lavatory) +"kiT" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"kjk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bBs" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bBt" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"kjK" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator4/ground) +"kjU" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"kkc" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/computer/crew, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"kky" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/crew/lavatory) +"klb" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bBu" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bBv" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"klC" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"klU" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/garage/one) +"knq" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"knO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"kon" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"kos" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/south_east) +"koD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"koF" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bBw" = ( -/obj/structure/bed/chair/comfy/black{ +/area/ice_colony/underground/crew/leisure) +"koI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bBx" = ( -/obj/structure/surface/table/woodentable, -/obj/item/folder/red, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bBy" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bBz" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_spawn, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bBA" = ( -/obj/structure/tunnel{ - id = "construction_tunnel" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bBB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bBC" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"kpk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bBD" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"kpo" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/rods{ + amount = 25 }, -/area/ice_colony/underground/research) -"bBE" = ( -/turf/open/floor{ - icon_state = "dark2" +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"kqX" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator4/underground) +"krd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/ice_colony/underground/research) -"bBF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurplecorners2" +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"krm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"krA" = ( +/obj/structure/surface/table, +/obj/item/device/camera, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"krB" = ( +/obj/structure/shuttle/diagonal{ + dir = 10; + icon_state = "wall" }, -/area/ice_colony/underground/research) -"bBG" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"krH" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/surface/requesitions) +"krU" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"ksj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"ktB" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/shuttle/elevator4/underground) -"bBH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"ktL" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/ice_colony/underground/research) -"bBK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/disposaloutlet{ + dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"ktO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"kuB" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/research/storage) -"bBL" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" + dir = 8 }, -/area/ice_colony/underground/research/storage) -"bBM" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"kuS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/research/storage) -"bBN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"kuZ" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/exterior/surface/valley/west) +"kva" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "Underground Hangar Lock"; + pixel_x = -24 }, -/area/ice_colony/underground/research/storage) -"bBO" = ( -/turf/open/floor{ +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hangar) +"kvp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"kvs" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"kvO" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - icon_state = "darkyellow2" + icon_state = "leftsecure"; + id = "brg" }, -/area/ice_colony/underground/hallway/north_west) -"bBP" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bBQ" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"kwx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"kwD" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bBR" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/hallway) +"kwX" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"kxn" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator2/ground) +"kxM" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bBS" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"kxO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"kym" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/ice_colony/surface/hangar/checkpoint) -"bBT" = ( /obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"kyP" = ( +/obj/structure/closet/wardrobe/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/ice_colony/underground/command/center) -"bBU" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"kyV" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/sec_storage) +"kzI" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/south_east) +"kzU" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"kAg" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bBV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/canteen) -"bBW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/canteen) -"bBX" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/cell/high, +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/crew/canteen) -"bBY" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bBZ" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bCa" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"kAp" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bCb" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bCc" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bCd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"kAH" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator1/ground) +"kAT" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/requesitions) +"kBB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bCe" = ( -/obj/structure/closet/secure_closet/warden, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bCf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Colony Garage" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"kCa" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"kCf" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"kCl" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Underground Maintenance" + name = "\improper Colony Engineering Backup Power Storage" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/engineering) -"bCg" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/east) -"bCh" = ( -/obj/structure/tunnel{ - id = "west_tcomms_tunnel" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"kCD" = ( +/obj/structure/surface/table, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"kEs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"kEF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"kFj" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"kGg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bCi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/research) -"bCj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/brig) +"kGE" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/disposals) +"kGF" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/substation) +"kGN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"kHb" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"kHp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"kIs" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/area/ice_colony/underground/research) -"bCk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"kIJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/research) -"bCl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"kIU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/area/ice_colony/underground/research) -"bCm" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"kJe" = ( +/obj/structure/bed, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/security/brig) +"kJg" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"kKh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/research) -"bCq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/storage) +"kKm" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/research) +"kKw" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"kLt" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/ice_colony/underground/research) -"bCt" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"kLz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, -/area/ice_colony/underground/research/storage) -"bCu" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/storage/highsec) -"bCv" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"kMd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bCw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bCz" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bCA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"kMO" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/checkpoint) +"kNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"bCB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"bCG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - name = "\improper Underground Security Detective's Office" + name = "\improper Underground Medical Laboratory" }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/detective) -"bCH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Marshal's Office" +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"kNY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bCI" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bCJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bCK" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"kOz" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/reception/checkpoint_south) +"kOR" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bCL" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/excavation) +"kPj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bCM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"kQs" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"kRw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall, +/area/ice_colony/surface/research) +"kRI" = ( +/turf/open/floor/darkpurple2/southeast, /area/ice_colony/underground/research) -"bCO" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/research/storage) -"bCQ" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) -"bCR" = ( -/obj/structure/dispenser, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) -"bCS" = ( -/obj/structure/safe, -/obj/item/weapon/sword/katana/replica, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +"kSF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"kTL" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad2) +"kTP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 2; + icon_state = "leftsecure"; + id = "brg"; + name = "Security Desk" }, -/area/ice_colony/underground/storage/highsec) -"bCT" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/window/northright{ + name = "Security Desk" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/item/tool/stamp, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/ice_colony/underground/storage/highsec) -"bCU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"kUE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/storage/highsec) -"bCV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/ice_colony/underground/storage/highsec) -"bCW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"kUL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"kVG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/storage) +"kWg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/storage/highsec) -"bCX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage/highsec) -"bCY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"kWv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"kWM" = ( +/obj/structure/surface/table, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 }, -/area/ice_colony/underground/storage/highsec) -"bCZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"kXf" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"kXg" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"kXt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/storage/highsec) -"bDa" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/storage/highsec) -"bDb" = ( -/obj/structure/machinery/alarm{ +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"kXz" = ( +/obj/structure/machinery/firealarm{ dir = 4; - pixel_x = -24 + pixel_x = 24 }, -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms/canteen) +"kXQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/ice_colony/underground/command/center) -"bDc" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"kXW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/command/center) -"bDd" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"kYw" = ( +/obj/docking_port/stationary/trijent_elevator{ + airlock_area = /area/shuttle/elevator3/ground; + airlock_exit = "elevator"; + elevator_network = "Omicorn"; + height = 5; + width = 8; + name = "Upper Omicorn"; + id = "Upper_Omicorn"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/omicorn }, -/area/ice_colony/underground/command/center) -"bDe" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator3/ground) +"kYQ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bDf" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkblue2" - }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"kZy" = ( +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) +"kZB" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"kZG" = ( +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) -"bDg" = ( -/obj/structure/disposalpipe/segment{ +"kZJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bDh" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/flora/pottedplant, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"lay" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/surface/table, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/security/brig) +"laG" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/ice_colony/underground/command/center) -"bDi" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"lbg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"lbl" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) +"lbV" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/alpha) +"lcw" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator1/underground) +"lde" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bDj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"ldh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/electric) +"ldq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bDk" = ( -/obj/structure/bed/chair{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"leu" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"leM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/canteen) -"bDm" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/lobby) +"leT" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"lgF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"lii" = ( +/obj/structure/inflatable/door, +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/area/ice_colony/underground/security/hallway) -"bDn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"liB" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/area/ice_colony/underground/security/hallway) -"bDo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"liL" = ( +/obj/structure/computerframe, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"liU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/temporary) +"llm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/circuitboard/computer/atmos_alert, +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/storage/highsec) +"lly" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bDp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"llJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"llO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/security/hallway) -"bDq" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/security/hallway) -"bDr" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"llT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"lmF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/security/hallway) -"bDs" = ( -/obj/structure/bed/chair, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"lmS" = ( /obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bDt" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/security/hallway) -"bDu" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"lni" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/ice_colony/underground/security/hallway) -"bDv" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"lnp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bDw" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bDx" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/hallway) -"bDy" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "mining_ladder" + name = "\improper Underground Medical Laboratory Storage" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bDz" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/research/sample) -"bDA" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"lns" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/research) -"bDB" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"lnR" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/surface/requesitions) +"loj" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/storage) +"lpd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"lpj" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/ice_colony/underground/research) -"bDC" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/turf/open/floor{ +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"lpn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkpurple2" + icon_state = "pipe-c" }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"bDD" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"lpD" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/obj/item/storage/box/lights, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"lqY" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/tcomms) +"lrd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"lrl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage/highsec) -"bDE" = ( -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Aurora Medical Clinic Scanning Unit" }, -/area/ice_colony/underground/storage/highsec) -"bDG" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"lrC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"lsi" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"ltb" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"lte" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"lts" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/valley/southwest) +"ltv" = ( +/obj/structure/dispenser, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) -"bDH" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, +"ltz" = ( +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) -"bDI" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Underground Command Center" +"ltO" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/dorms/lavatory) +"ltW" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"luf" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"lvI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"lvJ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"lwv" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"lwO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/center) -"bDJ" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/command/center) -"bDK" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/ice_colony/underground/command/center) -"bDL" = ( -/obj/structure/barricade/wooden{ +"lwX" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bDM" = ( -/obj/item/tank/anesthetic, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bDN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/central) -"bDO" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bDP" = ( -/turf/open/floor{ - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/crew/canteen) -"bDQ" = ( +/area/ice_colony/underground/maintenance/engineering) +"lxR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"lyf" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"lys" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Lavatory" }, -/area/ice_colony/underground/crew/canteen) -"bDR" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"lyD" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"lzn" = ( +/obj/structure/dispenser, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/storage/highsec) +"lAb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/crew/canteen) -"bDS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/dorms) +"lAp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/command/checkpoint) +"lAu" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/area/ice_colony/underground/crew/canteen) -"bDT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"lAN" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"lAO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"lCj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Engineering" }, -/area/ice_colony/underground/hallway/south_east) -"bDU" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"lCu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"lDa" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"lDd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) +"lDN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"lDO" = ( +/obj/structure/pipes/standard/manifold/visible{ + layer = 2.3 }, -/area/ice_colony/underground/hallway/south_east) -"bDV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"lDU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"lEk" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"lEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bDW" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"lFi" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/security/hallway) -"bDX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"lGm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"lHY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"lIE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/underground/security/hallway) -"bDY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"lJP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/underground/security/hallway) -"bEb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"lJQ" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/south) +"lKH" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"lKO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/security/hallway) -"bEc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"lLe" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/security/hallway) -"bEd" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"lLi" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/security/brig) +"lMe" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" + dir = 6 }, -/turf/open/floor/plating, -/area/ice_colony/underground/security/hallway) -"bEe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/hangar/alpha) +"lME" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bEf" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/bball) +"lMN" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"lMT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"lNa" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bEg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bEh" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"lNl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"lNm" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"lNS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bEi" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"lNU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/research/sample) -"bEj" = ( -/turf/open/floor{ +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"lNV" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"lOk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - icon_state = "darkpurple2" + name = "\improper Underground Disposals" }, -/area/ice_colony/underground/research/sample) -"bEk" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"lOz" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/ice_colony/underground/research/sample) -"bEl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"lOH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"lPf" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"lPM" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator4/underground) +"lQg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig" }, -/area/ice_colony/underground/research/sample) -"bEm" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"lQv" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"lSf" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/reception/checkpoint_north) +"lSi" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"lSr" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"lSQ" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"lTl" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"lTD" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" + }, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"lTG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"lTI" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"lTM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/research) -"bEo" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"lTZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"lUw" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/one) +"lUP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/research) -"bEp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/checkpoint) +"lUT" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/requesition/sec_storage) +"lUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"lVz" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/control) +"lVH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"lVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Men's Restroom" + }, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"lWu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/tech_storage) +"lWA" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"lWC" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -4 }, -/area/ice_colony/underground/research) -"bEq" = ( +/obj/item/folder/black_random, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"lXk" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/clearing/south) +"lYy" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"lYE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Theta-V Research Laboratory Storage" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Showers" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"lYL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/research/storage) -"bEs" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"lYT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"lZm" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"lZC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/research/storage) -"bEt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/hallway) +"lZR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/research/storage) -"bEv" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"maD" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"maE" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/substation/smes) +"maG" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c1000, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) -"bEw" = ( -/obj/structure/showcase, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/storage/highsec) -"bEx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/sample) +"mbE" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/north_west) +"mcg" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/ice_colony/underground/storage/highsec) -"bEy" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"mda" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"mde" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"mdg" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"mdH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/storage/highsec) -"bEz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/generator) +"mdW" = ( +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) -"bEA" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"mex" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/storage/highsec) -"bEB" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/engineering) +"mey" = ( +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 2; + icon_state = "leftsecure"; + id = "brg"; + name = "Security Desk" }, -/area/ice_colony/underground/command/center) -"bEC" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bED" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bEE" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bEF" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/command/pv1) -"bEG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/command/pv1) -"bEH" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/command/pv2) -"bEI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/obj/structure/machinery/door/window/northright{ + name = "Security Desk" }, -/turf/open/floor/plating, -/area/ice_colony/underground/command/pv2) -"bEJ" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/dorm_l) -"bEK" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/dorm_r) -"bEL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/tool/stamp, +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/ice_colony/underground/hallway/south_east) -"bEM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"meS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"meV" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bEN" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"mfM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/hallway/south_east) -"bEO" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"mfR" = ( +/obj/structure/pipes/portables_connector{ dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security" +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"mge" = ( +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"mgD" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"mgO" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator1/underground) +"mgS" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/research) +"mgX" = ( +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 }, +/turf/open/floor/darkred2/northwest, /area/ice_colony/underground/security/hallway) -"bEP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "darkred2" +"mhd" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/disposals) +"mhh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bEQ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"mhl" = ( /obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bER" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"mhr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/security/hallway) -"bES" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"mht" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkredcorners2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"mhT" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bET" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"mie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bEU" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"mih" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"mjj" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/sample) -"bEV" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"mjC" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"mjL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/research/sample) -"bEW" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/medical/lobby) +"mjW" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation) +"mjZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"mkB" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/area/ice_colony/underground/research/sample) -"bEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"mlf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/area/ice_colony/underground/research/sample) -"bEY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/cell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"mlr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"mlQ" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"mmn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Theta-V Research Laboratory Sample Isolation" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"mno" = ( +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"mnp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"mny" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/sample) -"bEZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"mnB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"mnE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/research) -"bFa" = ( -/turf/open/floor{ +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"mnJ" = ( +/obj/structure/closet/coffin, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"mos" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "darkpurple2" + pixel_x = -24 }, -/area/ice_colony/underground/research/storage) -"bFb" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/atmos_alert, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control) +"moL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage/highsec) -"bFc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"mpp" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/storage/highsec) -"bFd" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"mpu" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/ice_colony/underground/security/marshal) +"mpA" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"mpN" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"mpP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/storage/highsec) -"bFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"mrb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkblue2" +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"mrQ" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/center) -"bFf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"mrV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Theta-V Research Laboratory" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"msb" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/ice_colony/underground/command/center) -"bFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bFh" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/darkblue2/east, /area/ice_colony/underground/command/center) -"bFi" = ( -/obj/structure/disposalpipe/segment, +"mta" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/tcomms) +"mtf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/center) -"bFj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/center) -"bFk" = ( -/obj/structure/machinery/firealarm{ +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"mtS" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"mtT" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/structure/curtain/black, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/backroom) +"muD" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - pixel_x = -24 + icon_state = "pipe-j2" }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bFl" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"muL" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bFm" = ( +/area/ice_colony/underground/crew/library) +"muY" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bFn" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bFo" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bFp" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bFq" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"mvg" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"mvK" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research/field_gear) +"mwO" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"mwS" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/r_wall, +/area/ice_colony/underground/maintenance/south) +"mxJ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"myd" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator4/ground) +"mys" = ( +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"mzm" = ( +/obj/structure/machinery/power/reactor/colony, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bFr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bFs" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bFt" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bFu" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/ice_colony/exterior/underground/caves) +"mzn" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bFv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bFw" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bFx" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bFy" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bFz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"mAi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"mAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bFD" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/interrogation) -"bFE" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/security/interrogation) -"bFG" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"mAG" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"mBl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"mBo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"mBA" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"mCp" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"mCq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"mCI" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"mDd" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"mDf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"mEq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkred2/southwest, /area/ice_colony/underground/security/hallway) -"bFH" = ( -/turf/open/ice, -/area/ice_colony/underground/maintenance/east) -"bFI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/sample) -"bFJ" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +"mEu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"mEx" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"mEE" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/tech_storage) +"mEK" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"mFs" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/ice_colony/underground/research/sample) -"bFK" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/hallway/south_east) +"mFM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"mFR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/research/sample) -"bFL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"mFU" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering) +"mGb" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/hallway/north_west) +"mGt" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"mGu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/research/sample) -"bFM" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/research) -"bFO" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"mGN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"mGR" = ( +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, /area/ice_colony/underground/research) -"bFQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"mHn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"mHq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"mIo" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle"; + dockId = "Lower_Requisitions"; + pixel_y = 32 }, -/area/ice_colony/underground/research/storage) -"bFR" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"mIA" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/area/ice_colony/underground/research/storage) -"bFS" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"mJu" = ( /obj/structure/filingcabinet, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/surface/hangar/checkpoint) -"bFT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/machine/smes, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/interrogation) +"mJT" = ( +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/research) +"mKa" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) -"bFU" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/trackimp, -/turf/open/floor{ - icon_state = "darkblue2" +"mKg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories Women's Restroom" }, -/area/ice_colony/underground/storage/highsec) -"bFV" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"mKu" = ( +/obj/structure/curtain/medical, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"mKC" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/hallway/south_east) +"mKH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkpurplecorners2/west, +/area/ice_colony/underground/hallway/north_west) +"mLv" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/crew, -/turf/open/floor{ - icon_state = "darkblue2" +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"mLW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"mMU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"mNi" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"mNk" = ( +/obj/structure/showcase, +/turf/open/floor/dark2, /area/ice_colony/underground/storage/highsec) -"bFW" = ( -/turf/open/floor{ - icon_state = "darkblue2" +"mNm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/storage/highsec) -"bFX" = ( -/obj/structure/surface/table/reinforced, -/obj/item/circuitboard/computer/powermonitor, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/treatment) +"mOj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"mOk" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"mOu" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/surface/engineering) +"mOD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"mOI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"mOM" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/checkpoint) +"mOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"mPm" = ( +/obj/structure/safe, +/obj/item/weapon/sword/katana/replica, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/storage/highsec) -"bFY" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"mRB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"mRG" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"mRU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/bar/canteen) -"bFZ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/toy/plush/farwa, -/turf/open/floor{ - icon_state = "darkblue2" +/obj/structure/machinery/door/window{ + name = "Anomaly Gear" }, -/area/ice_colony/underground/storage/highsec) -"bGa" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/hypospray/tricordrazine, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"mSt" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/storage/highsec) -"bGb" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"mSM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bGc" = ( -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"mTs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/center) -"bGe" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"mTB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"mTH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"mTJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"mUK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"mVd" = ( +/obj/item/evidencebag, +/obj/item/trash/popcorn, +/obj/item/trash/candy, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"mWB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/command/center) -"bGf" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering) +"mWS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms/canteen) +"mWU" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"mXu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/center) -"bGg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bGh" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bGj" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bGk" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"mXL" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/area/ice_colony/surface/research/field_gear) -"bGm" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bGo" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bGq" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"mYe" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security) +"mYh" = ( +/obj/effect/landmark/crap_item, +/obj/item/stack/sheet/metal, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"mZe" = ( +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/underground/hallway/north_west) +"mZM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"nab" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"naO" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/surface/command/checkpoint) +"nbv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/security/interrogation) -"bGr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"nbY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"ncU" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "engineering_ladder1"; + pixel_y = 16 }, -/area/ice_colony/underground/security/interrogation) -"bGs" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"ncX" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"ndm" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/checkpoint) +"ndr" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/ice_colony/underground/security/interrogation) -"bGt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/ice_colony/underground/security/interrogation) -"bGu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 }, -/area/ice_colony/underground/security/interrogation) -"bGv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"nea" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bGw" = ( -/turf/closed/ice_rock/corners, -/area/ice_colony/exterior/underground/caves) -"bGx" = ( -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "darkbrowncorners2" + icon_state = "pipe-c" }, -/area/ice_colony/surface/research) -"bGy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"neb" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/disposals) +"ned" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/electric) +"nel" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"nez" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"neD" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator3/underground) +"nfr" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"nfu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/research) -"bGz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/alpha) +"nfP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"nga" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"ngo" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"ngq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"ngw" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"nhp" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" }, -/area/ice_colony/underground/research) -"bGA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - locked = 0; - name = "Underground Secure Technical Storage" +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"nhu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/storage/highsec) -"bGB" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/command/checkpoint) -"bGC" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"nhw" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/research/storage) +"nhF" = ( +/obj/structure/sink{ dir = 1; - name = "\improper Underground Security Checkpoint" + pixel_y = -10 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/mirror{ + pixel_y = -28 }, -/area/ice_colony/underground/command/checkpoint) -"bGD" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/command/checkpoint) -"bGE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"nin" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator4/ground) +"niL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2, +/area/ice_colony/surface/hangar/checkpoint) +"njm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/checkpoint) -"bGF" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"njp" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/dorms) +"nkd" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"nkJ" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" }, -/area/ice_colony/underground/command/checkpoint) -"bGG" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/ice_colony/underground/command/checkpoint) -"bGH" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"nkM" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"nla" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"nlE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"nlS" = ( +/obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bGI" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bGJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bGK" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/area/ice_colony/underground/crew/chapel) +"nmO" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Lower_Dorms"; + name = "Lower Dorms"; + airlock_exit = "elevator"; + elevator_network = "dorm"; + airlock_area = /area/shuttle/elevator2/underground }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bGL" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bGM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bGN" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/underground) +"nmX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bGO" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"nnu" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"nnw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/hallway) +"nnC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + id = "research_entrance"; + name = "Omicron Research Dome" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bGP" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"nos" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/research/field_gear) +"noP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"noT" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/surface/command/checkpoint) +"nph" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"nqd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"nqp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/security/interrogation) -"bGR" = ( -/obj/structure/surface/table/reinforced, -/obj/item/evidencebag, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/research) +"nqr" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/security/brig) +"nrm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bGS" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"nrQ" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/container_yard) +"nrW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bGT" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"nrX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"nsb" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"nsq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/security/interrogation) -"bGU" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"nsA" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"nsN" = ( /obj/structure/surface/table, +/obj/item/storage/box/pizza, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/temporary) -"bGV" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms/canteen) +"ntd" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"ntr" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"nty" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/security/interrogation) -"bGW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"ntD" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bGX" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/research/work) -"bGY" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/command/checkpoint) +"ntX" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/electric) +"nua" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"nui" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, -/area/ice_colony/underground/research/work) -"bGZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"nuq" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/treatment) +"nvd" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"nvv" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/ground) +"nvM" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"nvP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/surface/table, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"nwe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/research/work) -"bHa" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/or) +"nwj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research/work) -"bHb" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 5; - icon_state = "darkpurple2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"nwR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"nwY" = ( +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/interrogation) +"nxG" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/ice_colony/underground/research/work) -"bHc" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"nxT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Theta-V Research Laboratory Sample Isolation" }, -/area/ice_colony/underground/research) -"bHd" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"nxV" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bHe" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"nyl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" }, -/area/ice_colony/underground/research/storage) -"bHf" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"nyF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"nyX" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"nze" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/research/storage) -"bHg" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"nzp" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkpurple2/north, /area/ice_colony/underground/research/storage) -"bHh" = ( -/obj/structure/closet/radiation, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" +"nzD" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/area/ice_colony/underground/research/storage) -"bHi" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/storage) -"bHj" = ( -/obj/structure/surface/table, /obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"nAC" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"nAE" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"nBc" = ( +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"nBj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"nBm" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/storage) -"bHk" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"nBD" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"nBH" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; - icon_state = "darkyellow2" + icon_state = "leftsecure"; + id = "brg" }, -/area/ice_colony/underground/storage) -"bHl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/security/brig) +"nBL" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/hypospray/tricordrazine, +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/storage/highsec) +"nCg" = ( /obj/structure/surface/table, -/obj/item/storage/box/lights/mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/ice_colony/underground/storage) -"bHm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"nCt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"nDX" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"nEY" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"nFw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage) -"bHn" = ( +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"nFG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/storage) -"bHo" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"nFN" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/effect/decal/warning_stripes{ + pixel_y = 32 }, -/area/ice_colony/underground/storage) -"bHp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"nGh" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/underground/storage) -"bHq" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/sample) +"nGi" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/disposals) +"nGp" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering/locker) +"nGD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"nHk" = ( +/obj/structure/shuttle/window{ + color = "gray"; + icon_state = "12" }, -/turf/open/floor{ +/obj/structure/grille, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"nHo" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/ramptop, +/area/ice_colony/exterior/underground/caves/dig) +"nHp" = ( +/obj/structure/machinery/alarm{ dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bHr" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "garage_ladder" + pixel_y = -24 }, -/turf/open/floor{ +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"nHt" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"nIa" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bHs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bHt" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" + name = "\improper Aurora Medical Clinic Storage" }, -/area/ice_colony/underground/command/checkpoint) -"bHu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"nIy" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/excavation) +"nIJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"nKc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/checkpoint) -"bHv" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bHw" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"nKu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/ice_colony/underground/command/checkpoint) -"bHx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"nKw" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/beta) +"nKL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bHy" = ( -/obj/structure/bed/chair, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"nKS" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator3/underground) +"nLa" = ( +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research) +"nLb" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/command/checkpoint) -"bHz" = ( -/obj/structure/bed/chair, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"nLl" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"nLD" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bHA" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bHB" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bHC" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bHD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bHE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bHF" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bHG" = ( -/obj/structure/coatrack, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bHH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bHI" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"nLM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 8 + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bHJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bHK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bHM" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/research/temporary) +"nME" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"nNi" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/underground/security/interrogation) -"bHP" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Evidence Storage" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"nNI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Power Substation" }, -/area/ice_colony/underground/security/interrogation) -"bHQ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"nNL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/dorms) +"nNS" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"nOB" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"nPp" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering) +"nPA" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bHR" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"nPG" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"nPM" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/interrogation) -"bHS" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/interrogation) -"bHT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security Interrogation" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/interrogation) -"bHU" = ( -/turf/open/floor{ - icon_state = "dark2" +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, -/area/ice_colony/underground/security/hallway) -"bHV" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"nQI" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"nQT" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"bHX" = ( -/turf/open/floor{ - icon_state = "dark2" + pixel_x = 24 }, -/area/ice_colony/underground/research/work) -"bHY" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"nRb" = ( +/obj/structure/surface/table, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research/work) -"bHZ" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"nRE" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"nRP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/research) -"bIa" = ( -/obj/structure/mineral_door/resin, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - dir = 9; - icon_state = "darkpurple2" +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"nSb" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/center) +"nSk" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) -"bIb" = ( -/obj/item/stack/sheet/wood, -/obj/structure/mineral_door/resin, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/research) -"bIc" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"nSn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"nTa" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator1/underground) +"nTh" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/research) -"bIe" = ( -/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"nTD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"nUd" = ( +/turf/open/floor/plating/warnplatecorner/north, +/area/ice_colony/underground/maintenance/east) +"nUw" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/plating, -/area/ice_colony/underground/storage) -"bIf" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bIg" = ( -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/underground/maintenance/central) +"nVb" = ( +/obj/structure/cryofeed/right, +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"nVi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage) -"bIi" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"nVB" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/storage) -"bIj" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/storage/highsec) +"nVE" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"nWx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/dorms) +"nWA" = ( +/obj/structure/surface/table, +/obj/item/paper, +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"nWK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/storage) -"bIk" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"nWN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"nWP" = ( +/obj/structure/computerframe{ + anchored = 1 }, -/area/ice_colony/underground/storage) -"bIl" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"nXs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/whiteredcorner/north, +/area/ice_colony/underground/medical/hallway) +"nXA" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/hangar/checkpoint) +"nXG" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/south_east) +"nXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"nXN" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "darkred2" + pixel_x = -24 }, +/turf/open/floor/darkred2/west, /area/ice_colony/underground/command/checkpoint) -"bIm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +"nZc" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/timer, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"nZt" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/underground) +"oaa" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/ice_colony/underground/command/checkpoint) -"bIn" = ( -/turf/open/floor{ +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"oaA" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkblue2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/checkpoint) -"bIo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"oaF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Underground Medical Laboratory"; + req_access_txt = "100" }, -/area/ice_colony/underground/command/checkpoint) -"bIp" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"obd" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"ocn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"ocA" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/tool) +"ocW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"ocX" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"oda" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Engineering Generator Room" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/generator) +"odJ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bIq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Underground Administration Office" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"bIr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Underground Administration Office" +/area/ice_colony/underground/crew/library) +"odV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv2) -"bIs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bIt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bIu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bIv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"odZ" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/security/interrogation) -"bIx" = ( -/obj/structure/tunnel{ - id = "south_tcomms_tunnel" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"oeT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bIy" = ( -/obj/structure/machinery/alarm{ +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/backroom) +"oeU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" + name = "\improper Omicron Field Gear Storage" }, -/area/ice_colony/surface/hangar/alpha) -"bIC" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/research) -"bID" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/research) -"bIE" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research/field_gear) +"ofp" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"ofV" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"ogt" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkpurple2" + dir = 8 }, -/area/ice_colony/underground/research) -"bIF" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkpurplecorners2" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/ice_colony/underground/hallway/north_west) -"bIG" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/bball) +"ohr" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/area/ice_colony/underground/storage) -"bIH" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"ohH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/garage/two) +"ohI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"oil" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"oju" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/storage) -"bII" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" + dir = 1 }, -/area/ice_colony/underground/storage) -"bIJ" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"ojO" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"okc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/storage) -"bIK" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"okf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/underground/storage) -"bIL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"okR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/dark2, /area/ice_colony/underground/storage) -"bIM" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"olW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bIN" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"omb" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle3"; + dockId = "Lower_Dorms"; + pixel_y = 32 }, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westright{ - name = "Security Desk" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"onc" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"ong" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/obj/structure/machinery/door/window/eastleft{ - name = "Security Desk" +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv2) +"onG" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" }, -/turf/open/floor/plating, -/area/ice_colony/underground/command/checkpoint) -"bIO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bIP" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/research/sample) +"onI" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/underground/hangar) +"oox" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/ice_colony/underground/command/checkpoint) -"bIQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"ooJ" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"ooV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bIR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"oqu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/command/checkpoint) -"bIS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"orN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bIT" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bIU" = ( -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"osA" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad2) +"osF" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/north) +"otC" = ( +/obj/item/shard, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"otI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security) +"otL" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"oum" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/darkblue2/southwest, /area/ice_colony/underground/command/checkpoint) -"bIV" = ( +"ouA" = ( /obj/structure/surface/table, -/turf/open/floor{ +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"oww" = ( +/obj/structure/sink{ dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bIW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bIX" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bIY" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" + pixel_y = -10 }, -/area/ice_colony/underground/security/interrogation) -"bIZ" = ( -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/mirror{ + pixel_y = -28 }, -/area/ice_colony/underground/security/interrogation) -"bJa" = ( +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"oxh" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"oxl" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/security/interrogation) -"bJb" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/ice_colony/underground/security/interrogation) -"bJc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/lobby) +"oxs" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/requesition/lobby) +"oxw" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"oxz" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/hallway/south_east) +"oxR" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"oyy" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"oyL" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"ozp" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"ozF" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"ozW" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"oAs" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/leisure) +"oBl" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"oBH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security) +"oBI" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"oCy" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/storage) +"oDe" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/interrogation) -"bJd" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"oDk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/security/interrogation) -"bJe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bJf" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"oDo" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) +"oDy" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"oDZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"oEw" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/disposals) +"oFm" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"oFQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/checkpoint) +"oGk" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/armory) +"oHs" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/hangar/alpha) +"oHE" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/tcomms) +"oHV" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"oIc" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"bJg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/research/work) -"bJh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"oIl" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"oIn" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"oIH" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/research/work) -"bJi" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"oIS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Theta-V Research Laboratory" - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"oIZ" = ( +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/command/checkpoint) +"oJr" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"oJE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/ice_colony/underground/research/work) -"bJk" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"oJM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"oJQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/surface/mining) +"oKC" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"oLk" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/sec_storage) +"oNw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"oOd" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/clearing/pass) +"oOo" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/security/detective) +"oPd" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"oPm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"oPq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" }, -/area/ice_colony/underground/research) -"bJo" = ( -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"oPw" = ( +/turf/open/floor/white, +/area/ice_colony/surface/clinic/storage) +"oQF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/storage) -"bJp" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"oRb" = ( +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"oRq" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms/lavatory) +"oRy" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"oSS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/ice_colony/underground/command/checkpoint) -"bJr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"oTf" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"oTW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJs" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - name = "Security Desk" +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/crew/bball) +"oUE" = ( +/obj/item/shard, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/checkpoint) +"oUX" = ( +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/interrogation) +"oVc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" }, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"oVo" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hangar) +"oWi" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"oWs" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/obj/item/tool/stamp, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"oWw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"oWy" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/command/checkpoint) +"oWG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"oWQ" = ( +/turf/open/floor/chapel/north, +/area/ice_colony/underground/crew/chapel) +"oWV" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "engineering_ladder1" }, -/area/ice_colony/underground/command/checkpoint) -"bJt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"oWX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrowncorners2/north, +/area/ice_colony/surface/garage/one) +"oXx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"oXB" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering/generator) +"oXP" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/area/ice_colony/underground/command/checkpoint) -"bJu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"oXV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/command/checkpoint) -"bJv" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"oXW" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"oYa" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJw" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"oYz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"oZM" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"oZX" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"paK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/hangar/beta) +"pbg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/command/checkpoint) -"bJx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"pbi" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/valley/southwest) +"pdd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"pdp" = ( +/obj/structure/machinery/light_switch{ + pixel_y = 32 }, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"pdB" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"pdQ" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJy" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"pdW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"peX" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"pfe" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"pfy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"pfO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bJz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"pgd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJA" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"pgs" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"pgt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 1; + name = "\improper Underground Medical Laboratory" }, -/area/ice_colony/underground/command/checkpoint) -"bJB" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"pgV" = ( +/obj/structure/curtain/black, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"pie" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"piW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"pjQ" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/command/checkpoint) -"bJC" = ( +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/leisure) +"pkk" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/command/checkpoint) -"bJE" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"pko" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJF" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkblue2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) -"bJG" = ( -/obj/structure/window/framed/colony/reinforced/tinted, -/turf/open/floor/plating, -/area/ice_colony/underground/security/interrogation) -"bJH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bJI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/book/manual/marine_law, -/obj/item/storage/donut_box, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bJJ" = ( -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bJK" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/east) -"bJL" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/syringes, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +"pky" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"pkP" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/lobby) +"pna" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Upper_Dorms"; + name = "Upper Dorms"; + roundstart_template = /datum/map_template/shuttle/trijent_elevator/ice_elevator/dorm; + airlock_exit = "elevator"; + elevator_network = "dorm"; + airlock_area = /area/shuttle/elevator2/ground }, -/area/ice_colony/underground/research/work) -"bJM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator2/ground) +"pnF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/area/ice_colony/underground/research/work) -"bJN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/treatment) +"pnL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/research) -"bJO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 1; - name = "\improper Theta-V Research Laboratory" +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"ppb" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"ppj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"ppH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/research) -"bJP" = ( -/obj/item/weapon/baton, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"pqt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bJQ" = ( +/turf/open/floor/vault2/west, +/area/ice_colony/surface/hangar/checkpoint) +"pqT" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/or) +"prk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"prl" = ( /obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bJT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bJU" = ( -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bJV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/storage) -"bJW" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/underground/command/checkpoint) -"bJX" = ( -/turf/open/floor{ - icon_state = "darkred2" +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/area/ice_colony/underground/command/checkpoint) -"bJY" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"prz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/command/checkpoint) -"bJZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"prM" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKa" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"prR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"psc" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKe" = ( -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Colony Offices" - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKh" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"pse" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKi" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/command/checkpoint) -"bKj" = ( -/obj/structure/bed, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bKk" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bKl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"psy" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"psF" = ( +/obj/structure/surface/table, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"psI" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/surface/requesitions) +"psJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bKm" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"psM" = ( /obj/structure/bed, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bKn" = ( -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bKo" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bKp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKq" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKr" = ( +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"ptj" = ( /obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKs" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKt" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/backroom) -"bKu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bKv" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bKw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bKx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bKy" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"ptZ" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/surface/requesitions) +"pul" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"puw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/security/hallway) -"bKz" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/hallway) -"bKA" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - id = "brg" - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkredcorners2/east, +/area/ice_colony/underground/security) +"puP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/armory) +"pvb" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Underground Command Center" }, -/area/ice_colony/underground/security/hallway) -"bKB" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"pvB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/hallway) -"bKD" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bKE" = ( -/obj/structure/surface/table/reinforced, -/obj/item/storage/box/beakers, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"bKF" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/research/tech_storage) -"bKG" = ( -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"bKH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/research) -"bKI" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/research) -"bKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/research) -"bKK" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition/lobby) +"pvH" = ( +/obj/structure/machinery/door_control{ + id = "req_sec_storage"; + name = "Requesition Secure Storage"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 + }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/sec_storage) +"pvX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"pwf" = ( +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"pwl" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"pwJ" = ( +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"pwQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/research) -"bKL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"pwW" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"pxv" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/structure/machinery/computer/cameras, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"pxN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/research) -"bKM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"pyn" = ( +/turf/closed/wall, +/area/ice_colony/underground/hangar) +"pyv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkpurplecorners2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/hallway/north_west) -"bKN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"pyD" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/north_west) -"bKO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Underground Technical Storage" +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"pzn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"pzw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/wrapping_paper, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition) +"pzH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, -/area/ice_colony/underground/storage) -"bKP" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/storage) -"bKQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/surface/dorms) +"pzP" = ( +/obj/structure/machinery/alarm{ dir = 1; - name = "\improper Underground Technical Storage" + pixel_y = -24 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"pAl" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/lavatory) +"pAp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"pAL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"pBH" = ( +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"pBY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/storage) -"bKR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"pCk" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"pCA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/dark2, /area/ice_colony/underground/command/checkpoint) -"bKS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Men's Barracks" +"pDd" = ( +/obj/structure/surface/table{ + flipped = 1; + icon_state = "tableflip0" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_l) -"bKT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"pDk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Underground Women's Barracks" - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/dorm_r) -"bKV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + name = "\improper Colony Garage" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"pEi" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/hallway/south_east) -"bKW" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/underground/hangar) +"pEs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKX" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Underground Medical Laboratory Lobby" + }, +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"pEx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bKY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/darkbrowncorners2/east, +/area/ice_colony/surface/hangar/beta) +"pEH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/area/ice_colony/underground/security/backroom) -"bKZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"pEJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/bball) +"pEK" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/checkpoint) +"pET" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"pEY" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/ice_colony/underground/security/backroom) -"bLa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/ice_colony/underground/security/backroom) -"bLb" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"pFc" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"pFH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"pGS" = ( +/obj/structure/closet/crate/hydroponics, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/south) +"pHc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"pHh" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/or) +"pHs" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"pHu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pHD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/disposals) +"pHK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Secure Technical Storage" }, -/area/ice_colony/underground/security/hallway) -"bLc" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"pHZ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"pJs" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" + dir = 1 }, -/area/ice_colony/underground/security/hallway) -"bLd" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"pJU" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition/sec_storage) +"pKi" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"pKv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/security/hallway) -"bLe" = ( -/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/disposals) +"pLb" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/underground/hangar) +"pLl" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/command/checkpoint) +"pLM" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"pLQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/plating, -/area/ice_colony/underground/security/hallway) -"bLf" = ( -/turf/open/floor{ +/area/ice_colony/underground/maintenance/security) +"pLT" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/storage) +"pLY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"pMt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/work) +"pMJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"pMV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Technical Storage" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"pNe" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "darkred2" + icon_state = "pipe-j2" }, -/area/ice_colony/underground/security/hallway) -"bLg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/hallway) -"bLh" = ( -/obj/structure/machinery/light{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"pND" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/filingcabinet/security, -/turf/open/floor{ +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"pNH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Lobby" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"pOf" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + shuttleId = "ice_classic_shuttle4"; + dockId = "Lower_Arrivals"; + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"pOp" = ( +/obj/structure/machinery/computer/cameras, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/command/checkpoint) +"pPc" = ( +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "darkred2" + pixel_x = -24 }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"pPn" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/substation) +"pPw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, /area/ice_colony/underground/security/hallway) -"bLi" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" +"pPJ" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"pPP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/research) -"bLj" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"pQa" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/crew/disposals) +"pQy" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/generator) +"pQA" = ( +/turf/open/floor/darkpurple2/southwest, /area/ice_colony/underground/research) -"bLk" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +"pRe" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 2 }, -/area/ice_colony/underground/research) -"bLl" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "darkpurple2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"pRf" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/research) -"bLm" = ( -/obj/structure/machinery/shower{ - dir = 1 +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"pRv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"pRA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"pRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/research) -"bLn" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"pRP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/research) -"bLo" = ( -/obj/structure/machinery/shower{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"pSf" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"pSD" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"pSR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkpurple2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/research) -"bLp" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkpurple2" +"pTn" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/research) -"bLq" = ( -/obj/structure/barricade/wooden, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/research) -"bLr" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellowcorners2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/north_west) -"bLt" = ( -/obj/structure/machinery/light{ +/obj/item/stack/sheet/metal, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/command/checkpoint) +"pTE" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator4/underground) +"pUg" = ( +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/disposals) +"pUj" = ( +/turf/open/floor/darkpurple2, /area/ice_colony/underground/hallway/south_east) -"bLu" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"pUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bLw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"pVg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bLy" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"pWF" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/surface/tcomms) +"pWJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"pXD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"pXS" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"pYW" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/sec_storage) +"pZi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/hallway/south_east) -"bLB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/hallway/south_east) -"bLC" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"pZz" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"pZH" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"qal" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"qas" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"qaN" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bLE" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"qbx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"qbO" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/field_gear) +"qbU" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkblue2" - }, -/area/ice_colony/underground/hallway/south_east) -"bLH" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"qch" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bLJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bLK" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bLL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bLO" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/security) -"bLP" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bLQ" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"qcw" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/underground/research) +"qcE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bLR" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"qcR" = ( +/obj/structure/shuttle/diagonal{ + dir = 9; + icon_state = "wall" }, -/area/ice_colony/underground/security/backroom) -"bLS" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"qdX" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/security/brig) +"qdY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/backroom) -"bLT" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bLU" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bLV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security/hallway) -"bLW" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"qed" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bLX" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/hallway) -"bLY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bLZ" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/darkblue2/southeast, +/area/ice_colony/underground/command/center) +"qfm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" }, -/area/ice_colony/underground/hallway/north_west) -"bMa" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"qfA" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" + dir = 6 }, -/area/ice_colony/underground/hallway/north_west) -"bMb" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"qfV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Dome" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"qgt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"qgG" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"qgK" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/crew/lavatory) +"qgT" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"qhC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"qii" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, /area/ice_colony/underground/hallway/north_west) -"bMc" = ( +"qiR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" + }, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"qjQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"qjR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"qkr" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"qkD" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"qkG" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/underground) +"qkL" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_19"; + name = "Research Storage Unit" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"qkT" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"qlb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"qmd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory" }, -/area/ice_colony/underground/hallway/south_east) -"bMe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"qmk" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMf" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"qmo" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMg" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qmz" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"qnh" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + name = "\improper Underground Security Evidence Storage" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"qnr" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bMh" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"qny" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"qov" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"qoD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"qoP" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"qpf" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bMi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"qpn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"qpx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"qpK" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"qpQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"qqg" = ( +/obj/structure/barricade/metal{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bMj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad2) +"qri" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMk" = ( +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"qsn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" }, -/area/ice_colony/underground/hallway/south_east) -"bMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"qst" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/beta) +"qtp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Storeroom" }, -/area/ice_colony/underground/hallway/south_east) -"bMn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"qtK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/ice_colony/underground/hallway/south_east) -"bMo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qtX" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"qtZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"qvT" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"qvW" = ( +/obj/structure/sink{ dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" + pixel_x = -11 }, -/area/ice_colony/underground/hallway/south_east) -"bMp" = ( -/obj/structure/machinery/light{ +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"qwi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/canteen) +"qwI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMq" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bMr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 1; - name = "\improper Underground Security Interrogation Observation" - }, -/turf/open/floor{ - icon_state = "dark2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/security/backroom) -"bMs" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security) -"bMt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"qwS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/storage) +"qwV" = ( +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/interrogation) +"qxF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/security) -"bMu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"qxN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/lobby) +"qxY" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/crew/disposals) +"qyn" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "darkred2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/security) -"bMv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"qyp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - name = "\improper Underground Security Lobby" + name = "\improper Colony Dormitories"; + req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms) +"qyA" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"qzf" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/excavation) +"qAT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"qBa" = ( +/obj/structure/machinery/door/poddoor{ + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "Strange Airlock" }, -/area/ice_colony/underground/security) -"bMw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"qCb" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/medical/lobby) +"qCz" = ( +/obj/structure/machinery/firealarm{ dir = 1; - name = "\improper Underground Maintenance" + pixel_y = -24 }, -/turf/open/floor/plating, -/area/ice_colony/underground/security) -"bMx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"qCA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "req_sec_storage"; + name = "\improper Requesitions Storage Shutters" }, -/area/ice_colony/underground/hallway/north_west) -"bMy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/sec_storage) +"qCF" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor{ - icon_state = "dark2" + icon_state = "pipe-c" }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/north_west) -"bMz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" +"qCH" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/hallway/south_east) -"bMA" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/temporary) +"qDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/underground/requesition) +"qDX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bMC" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/storage) +"qEo" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"qEB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/icefloor, +/area/ice_colony/surface/requesitions) +"qEY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/surface/table/reinforced, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"qFr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation) +"qFt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"qFz" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"qFG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bME" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/brig) +"qGe" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator4/underground) +"qGf" = ( +/turf/open/floor/darkred2/southeast, +/area/ice_colony/surface/command/checkpoint) +"qGR" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad2) +"qHB" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bMG" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/platebot, +/area/ice_colony/surface/engineering/generator) +"qHC" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/armory) +"qHT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/hallway/south_east) -"bMH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMI" = ( -/turf/open/floor{ - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"bMJ" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/structure/curtain/black, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bMK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"qHV" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"qIZ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/storage/highsec) +"qJs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"qJw" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"qJC" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"qKh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/disposals) +"qKm" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/underground/security) -"bML" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bMM" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/checkpoint) +"qKx" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/hallway/south_east) +"qKZ" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research/sample) +"qLp" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkredcorners2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"qLI" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/container_yard) +"qLZ" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"qMm" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator4/underground) +"qMo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/underground/security) -"bMN" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"qMw" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/excavation/storage) +"qMy" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/underground/storage/highsec) +"qMB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"qMQ" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/hallway/south_east) +"qNI" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkredcorners2" - }, -/area/ice_colony/underground/security) -"bMO" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bMP" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bMQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security) -"bMR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bMS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security) -"bMT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"qNT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security) -"bMU" = ( -/obj/item/storage/donut_box, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"qOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/security) -"bMV" = ( -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"qPi" = ( +/turf/open/floor/bcircuit, +/area/ice_colony/underground/hangar) +"qPy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/whitered/northeast, +/area/ice_colony/underground/medical/hallway) +"qPI" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f6" }, -/area/ice_colony/underground/security) -"bMW" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"qPL" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/garage/repair) +"qPO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/security) -"bMX" = ( -/obj/item/book/manual/marine_law, -/obj/structure/surface/table/reinforced, -/obj/item/handcuffs, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/security) -"bMY" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/area/ice_colony/underground/security) -"bMZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkpurple2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"qPP" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/excavation) +"qPT" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"qQs" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/tcomms) +"qRb" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/valley/southwest) +"qRl" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/hallway/north_west) -"bNa" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"qRy" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "Underground Hangar Lock"; + pixel_x = -24 }, -/area/ice_colony/underground/hallway/north_west) -"bNb" = ( -/turf/open/floor{ - icon_state = "darkpurple2" +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"qRB" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"qRD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bNc" = ( -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/field_gear) +"qRK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/hallway/south_east) -"bNf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bNg" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"qSa" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"qTl" = ( +/obj/structure/closet/crate, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"qTn" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/substation) +"qTv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/item/tool/soap{ + pixel_x = 5 }, -/area/ice_colony/underground/security/backroom) -"bNh" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/or) +"qTW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/security) -"bNi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"qUt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/ice_colony/underground/security) -"bNk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"qUQ" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qVv" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/crew/bball) +"qVD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qVE" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/ice_colony/underground/security) -"bNo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"qVJ" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/surface/hydroponics/lobby) +"qVU" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/computer/shuttle_control/dropship1, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/landing/console) +"qWm" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security) -"bNr" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/chapel/east, +/area/ice_colony/underground/crew/chapel) +"qWC" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator2{ + pixel_y = 30 }, -/area/ice_colony/underground/security) -"bNs" = ( -/obj/item/storage/box/donkpockets, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"qWD" = ( +/obj/structure/machinery/microwave, /obj/structure/surface/table/reinforced, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bNt" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/disposals) -"bNu" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"qXh" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator4/underground) +"qXr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/checkpoint) +"qXT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Underground Disposals" + name = "\improper Underground Engineering Locker Room" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"qYG" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Lower_Arrivals"; + name = "Lower Arrivals"; + airlock_exit = "elevator"; + elevator_network = "Arrivals"; + airlock_area = /area/shuttle/elevator1/underground }, -/area/ice_colony/underground/crew/disposals) -"bNv" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/lavatory) -"bNw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory" +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator1/underground) +"qZs" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkpurple2, +/area/ice_colony/surface/excavation) +"qZY" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/weapon/gun/pistol/holdout, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/crew/lavatory) -"bNx" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/armory) +"rab" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"rai" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering/electric) +"raU" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator2/ground) +"rby" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"rbH" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"rca" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/generator) +"rct" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"rdh" = ( +/turf/open/floor/darkgreen2, /area/ice_colony/underground/hallway/south_east) -"bNy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" +"rdZ" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/engineering) +"reA" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/hallway/south_east) -"bNz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/storage) +"reN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bNA" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/leisure) -"bNB" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"reQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"reX" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering) +"rfn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/leisure) -"bND" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bNE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bNF" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bNG" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/dark2, +/area/ice_colony/underground/research/work) +"rfs" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator1/underground) +"rgd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bNH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/or) +"rgk" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/underground/hangar) +"rgn" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/crew/canteen) +"rgo" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/brig) +"rhw" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/crew/canteen) +"rhY" = ( +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bNI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/area/ice_colony/underground/maintenance/north) +"riz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/security/backroom) -"bNJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/computer/station_alert, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"riE" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"riQ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"rjz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/security/backroom) -"bNL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/substation/smes) +"rjA" = ( +/obj/structure/barricade/metal{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Custodial Closet" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/backroom) -"bNO" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"rjC" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/crew/lavatory) +"rjF" = ( +/obj/structure/surface/table, +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"rkc" = ( +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/hallway) +"rkg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security) -"bNP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security) -"bNQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security) -"bNR" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"rkF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/storage/highsec) +"rkG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/surface/hangar/checkpoint) +"rkL" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security) -"bNS" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/research/temporary) +"rkQ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"rkT" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"rkX" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"rlY" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"rmR" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"rmU" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"roe" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "darkred2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/security) -"bNT" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"roo" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/crew/disposals) -"bNU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/lobby) +"roM" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/lobby) +"roN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/north) +"rpi" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"rqp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/disposals) -"bNV" = ( /obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "janitor_ladder" + height = 2; + icon_state = "ladderdown"; + id = "hangar_ladder"; + pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/crew/disposals) -"bNW" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"rqL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/storage) +"rrh" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/weldpack, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"rrJ" = ( +/obj/structure/machinery/power/apc/no_power/north, /obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bNX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/disposals) -"bNY" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 + dir = 4; + pixel_x = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/alpha) +"rsf" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/ice_colony/underground/crew/disposals) -"bNZ" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"rsh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westleft{ + name = "Security Desk" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" }, -/area/ice_colony/underground/crew/disposals) -"bOa" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" +/obj/item/tool/stamp, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/disposals) -"bOb" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/command/checkpoint) +"rsC" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/ice_colony/underground/crew/lavatory) -"bOc" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering) +"rsZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"rtt" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) +"rtv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/crew/lavatory) -"bOd" = ( -/obj/structure/closet/jcloset, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation) +"rvH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/crew/lavatory) -"bOe" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"rwR" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"rxG" = ( +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/requesition/sec_storage) +"rxQ" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/northwest) +"ryW" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"rzp" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOg" = ( /obj/structure/surface/table, -/obj/structure/bedsheetbin, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOh" = ( +/obj/effect/spawner/random/tool, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/garage/repair) +"rzO" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/security/brig) +"rAp" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bOj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bOk" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/south) -"bOl" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/security/brig) +"rAq" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"rAr" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bOn" = ( -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bOo" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"rAP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"rAS" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/exterior/surface/clearing/north) +"rAZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"rBt" = ( +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/security/brig) +"rBU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bOp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bOq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"rCf" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bOs" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"rCg" = ( /obj/structure/surface/table, -/obj/item/storage/box/trackimp, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bOt" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bOu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/item/storage/bag/plants, +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/north) +"rCm" = ( +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/treatment) +"rCW" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"rDw" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/tcomms) +"rEl" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security Interrogation" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/interrogation) +"rEr" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering) +"rEN" = ( /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bOv" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/window/reinforced/tinted{ +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"rFb" = ( +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/or) +"rFn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bOw" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"rFD" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"rFQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/area/ice_colony/underground/security) -"bOx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"rFS" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/garage/one) +"rGt" = ( +/obj/structure/machinery/door/poddoor/two_tile/secure{ + id = "colony_sec_armory"; + name = "Secure Armory" }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"rHT" = ( +/obj/structure/surface/rack, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"rIq" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/reception/checkpoint_north) +"rIw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"rJv" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/security) -"bOy" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"rJJ" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/bcircuit, +/area/ice_colony/underground/engineering/substation) +"rJO" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Colony Dormitories" }, -/area/ice_colony/underground/security) -"bOz" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/dorms) +"rJX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"rKc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/underground/hallway/north_west) +"rKm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security) -"bOB" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Aerodrome Hangar Alpha" }, -/area/ice_colony/underground/security) -"bOC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"rKn" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/item/paper/research_notes, +/turf/open/floor/wood, +/area/ice_colony/underground/command/pv1) +"rKG" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/ice_colony/underground/security) -"bOD" = ( -/obj/structure/closet/crate/trashcart, +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"rKW" = ( +/obj/structure/closet/firecloset/full, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bOE" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "dark2" + pixel_x = -24 }, -/area/ice_colony/underground/crew/disposals) -"bOF" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"rLv" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/medical/lobby) +"rLM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/disposals) -"bOG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"rNa" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"rNr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/area/ice_colony/underground/crew/disposals) -"bOH" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"rNA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/disposals) -"bOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/disposals) -"bOJ" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bOK" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOL" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/crew/lavatory) -"bOM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"rNF" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/area/ice_colony/underground/crew/lavatory) -"bON" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/storage) +"rNM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/crew/lavatory) -"bOO" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bOP" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"rOk" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bOQ" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"rOp" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/generator) +"rPf" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bOR" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bOS" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"rPw" = ( /obj/structure/bed/chair/wood/normal{ - dir = 8 + dir = 4 }, -/obj/effect/landmark/corpsespawner/engineer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bOT" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bOU" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bOV" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/armory) -"bOW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - name = "\improper Underground Security Armory" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/armory) -"bOX" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/security/brig) -"bOY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig" - }, -/turf/open/floor{ - icon_state = "dark2" +/area/ice_colony/underground/crew/library) +"rPB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"rQS" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"rRj" = ( +/obj/item/book/manual/marine_law, +/obj/structure/surface/table/reinforced, +/obj/item/restraint/handcuffs, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"rSb" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/security/brig) -"bPa" = ( -/turf/closed/shuttle{ - icon_state = "wall3" +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"rSz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/space) -"bPb" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"rSB" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/underground/crew/disposals) -"bPc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/underground/crew/disposals) -"bPd" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"rSL" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"rUd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/area/ice_colony/underground/crew/disposals) -"bPe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"rUn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/ice_colony/underground/crew/disposals) -"bPf" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"rUz" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/ice_colony/underground/crew/disposals) -"bPg" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bPh" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bPi" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"rUD" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bPj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bPk" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"rUV" = ( +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"rVS" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bPl" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/lobby) +"rWw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/dorms/lavatory) +"rWM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bPm" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"rWP" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"rWS" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security) +"rXo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bPn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"rXs" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "hydroponics_ladder"; + pixel_y = 16 + }, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/south) +"rXA" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/backroom) +"rXT" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"rXY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/research) +"rXZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"rYp" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/dorms/lavatory) +"rYx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bPo" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"rZe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"rZq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"rZt" = ( +/turf/open/floor/darkred2, +/area/ice_colony/surface/command/checkpoint) +"saq" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/tcomms) +"saC" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"saO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control/office) +"saS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"sba" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bPp" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"sbe" = ( /obj/structure/disposalpipe/junction{ dir = 1; icon_state = "pipe-j2" @@ -31365,247 +22095,217 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"bPq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bPr" = ( +"sbp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/cobweb{ dir = 4 }, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bPs" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/area/ice_colony/underground/maintenance/east) +"sbP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bPt" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"sbW" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"scu" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"scA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/armory) -"bPu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/armory) -"bPv" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/armory) -"bPw" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/armory) -"bPx" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bPy" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bPz" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/brig) -"bPA" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/brig) -"bPC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/brig) -"bPD" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"sda" = ( +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "power_storage_ladder1" }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"sdV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition) +"sga" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"sgR" = ( +/obj/docking_port/stationary/trijent_elevator{ + height = 5; + width = 8; + id = "Lower_Requisitions"; + name = "Lower Requisitions"; + airlock_exit = "elevator"; + elevator_network = "Requisitions"; + airlock_area = /area/shuttle/elevator4/underground }, -/area/ice_colony/underground/security/brig) -"bPE" = ( +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shuttle/elevator4/underground) +"shp" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"shv" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/surface/requesitions) +"sig" = ( +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/dorms) +"sis" = ( /obj/structure/toilet, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/security/brig) -"bPF" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/security/brig) -"bPG" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/security/brig) -"bPH" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/security/brig) -"bPI" = ( -/turf/open/space/transit/north/shuttlespace_ns4, -/area/shuttle/elevator3/transit) -"bPJ" = ( -/turf/open/space/transit/north/shuttlespace_ns4, -/area/shuttle/elevator4/transit) -"bPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bPL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bPM" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/crew/disposals) -"bPN" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"sjn" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/electric) +"sjF" = ( +/obj/structure/curtain/black, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"skf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"skg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/tcomms) +"skK" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/ice_colony/underground/crew/disposals) -"bPO" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_south) +"slt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/ice_colony/underground/crew/lavatory) -"bPR" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/alpha) +"slI" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"slQ" = ( +/obj/structure/bookcase/manuals/research_and_development, /turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bPS" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/area/ice_colony/underground/crew/library) +"smq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"bPT" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bPU" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"smu" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/ice_colony/underground/security/armory) -"bPV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"smT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"snb" = ( +/obj/structure/janitorialcart, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"snm" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"sno" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/platebot, +/area/ice_colony/surface/engineering/generator) +"snQ" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"soK" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/ground) +"spk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/security/armory) -"bPW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/hallway) +"spv" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/hydroponics/lobby) +"spx" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/security/armory) -"bPX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"sqI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/southwest, +/area/ice_colony/surface/command/checkpoint) +"srT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/armory) -"bPY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"sto" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Hangar Landing Zone" }, +/turf/open/floor/plating, +/area/ice_colony/exterior/surface/landing_pad) +"str" = ( +/turf/open/floor/darkred2/north, /area/ice_colony/underground/security/armory) -"bPZ" = ( +"stU" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/disposals) +"sug" = ( /obj/structure/closet/secure_closet/security, /obj/structure/machinery/light{ dir = 4 @@ -31614,3738 +22314,4908 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +/turf/open/floor/darkred2/east, /area/ice_colony/underground/security/armory) -"bQa" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"suk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/ice_colony/underground/security/brig) -"bQb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"svf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"svr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"svJ" = ( +/obj/structure/barricade/metal, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/surface/requesitions) +"swe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint" }, -/area/ice_colony/underground/security/brig) -"bQc" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security) +"sxj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/ladder{ + height = 2; + icon_state = "ladderdown"; + id = "hangar_ladder1"; + pixel_y = 16 }, -/area/ice_colony/underground/security/brig) -"bQd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/beta) +"sxp" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/substation/smes) +"sxC" = ( +/turf/open/floor/darkgreencorners2, +/area/ice_colony/underground/hallway/north_west) +"sxK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"syb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/research) +"syj" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"syu" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/hallway/south_east) +"szY" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"szZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"sAg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/security/brig) -"bQe" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"sAo" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"sAt" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"sAB" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bQf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/lobby) +"sBg" = ( +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/center) +"sBl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"sBN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"sCi" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator1/ground) +"sCq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/ice_colony/underground/security/brig) -"bQg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - name = "\improper Underground Security Showers" +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"sCQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/temporary) +"sDw" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/underground/command/center) +"sDN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/security/brig) -"bQh" = ( +"sEj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"sEF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"sEY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bQi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Hydroponics North Wing Technical Storage"; + req_access_txt = "100" }, -/area/ice_colony/underground/security/brig) -"bQj" = ( -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"sFb" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/interrogation) +"sGD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bQk" = ( -/obj/structure/tunnel{ - id = "hydroponics_tunnel" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bQl" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"sGO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"sGQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/disposaloutlet{ +/obj/structure/closet/crate, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"sGR" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/chapel, +/area/ice_colony/underground/crew/chapel) +"sGW" = ( +/obj/structure/surface/table, +/obj/item/storage/bag/plants, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/south) +"sHz" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/ice_colony/underground/crew/disposals) -"bQm" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/lobby) +"sHJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"sHP" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator2/ground) +"sHW" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms/canteen) +"sIh" = ( +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/underground/hallway/north_west) +"sIC" = ( +/obj/structure/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"sIE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/crew/disposals) -"bQn" = ( -/obj/item/evidencebag, -/obj/item/trash/popcorn, -/obj/item/trash/candy, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"sIY" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"sJe" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"sJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/dark2, /area/ice_colony/underground/crew/disposals) -"bQo" = ( -/obj/item/trash/semki, -/obj/structure/window/reinforced{ - dir = 1 +"sJl" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/plating{ +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/treatment) +"sKx" = ( +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "warnplate" - }, -/area/ice_colony/underground/crew/disposals) -"bQp" = ( -/obj/structure/window/reinforced{ - dir = 1 + icon_state = "pipe-j2" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/ice_colony/underground/crew/disposals) -"bQr" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"sKA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"sKK" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"sLo" = ( +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/reception/checkpoint_north) +"sLY" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/area/ice_colony/underground/crew/disposals) -"bQs" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"sNN" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"sOg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"sOh" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"sOI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/window/reinforced{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/underground/crew/disposals) -"bQu" = ( -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bQv" = ( -/obj/structure/bed/chair/wood/normal{ +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/dorms) +"sOV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bQw" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bQx" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Theta-V Research Laboratory Storage" }, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bQy" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/wood, -/area/ice_colony/underground/crew/leisure) -"bQz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bQA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bQB" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bQC" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"sPf" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"sPP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bQD" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"sQG" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/darkgreencorners2, +/area/ice_colony/surface/dorms) +"sQY" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/exterior/surface/valley/west) +"sRi" = ( +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/or) +"sRl" = ( +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/sample) +"sRy" = ( +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/hallway) +"sSa" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"sSe" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/north_west) +"sSj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bQE" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/garage/repair) +"sSu" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bQF" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrowncorners2/west, +/area/ice_colony/surface/hangar/beta) +"sSE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/security/armory) -"bQG" = ( -/obj/item/tool/crowbar, -/turf/open/floor{ - icon_state = "darkred2" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/ice_colony/underground/security/armory) -"bQH" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"sTg" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/northeast) +"sTD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/area/ice_colony/underground/security/armory) -"bQI" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"sTM" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/security/brig) -"bQJ" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/machinery/light, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/bball) +"sTN" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/security/brig) -"bQK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"sUu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/underground/security/brig) -"bQL" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"sUw" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"sUC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/structure/machinery/disposal, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"sVe" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"sVm" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"sVs" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/armory) +"sVJ" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/lavatory) +"sWp" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/darkyellow2/northwest, /area/ice_colony/underground/security/brig) -"bQM" = ( +"sWy" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/chapel) +"sWB" = ( +/obj/structure/flora/pottedplant, /obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/lobby) +"sWE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bQN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bQO" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"sWN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"sXf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" }, -/area/ice_colony/underground/security/brig) -"bQP" = ( -/obj/structure/mirror{ - pixel_x = -32 +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"sXB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/dark2, +/area/ice_colony/underground/reception/checkpoint_north) +"sXX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"sYn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"sYt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"sYu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/crew/canteen) +"sYE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/security/brig) -"bQQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/underground/security/brig) -"bQR" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"sZf" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"sZu" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"sZO" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"tad" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/white, /area/ice_colony/underground/security/brig) -"bQS" = ( -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bQT" = ( -/obj/item/trash/raisins, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bQU" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bQV" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bQW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bQX" = ( -/obj/structure/window/reinforced{ +"tax" = ( +/obj/structure/inflatable/door, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"taH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + id = "st_18"; + name = "Disposals Storage Unit" + }, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/telecomms) +"taY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"tbS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Colony Offices" + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"tcg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"tcx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"tcz" = ( +/obj/structure/machinery/shower{ dir = 4; - icon_state = "warnplate" - }, -/area/ice_colony/underground/crew/disposals) -"bQY" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" + pixel_x = 5; + pixel_y = -8 }, -/area/ice_colony/underground/crew/disposals) -"bQZ" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" +/obj/effect/landmark/survivor_spawner, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tcJ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/crew/lavatory) -"bRa" = ( /obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"tdp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/engineering/generator) +"tdw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"tdy" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/northeast, /area/ice_colony/underground/crew/lavatory) -"bRb" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor{ - icon_state = "darkbrown2" +"tdT" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/area/ice_colony/underground/crew/lavatory) -"bRc" = ( +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"teb" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"tej" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/plating/warnplate, +/area/ice_colony/surface/disposals) +"tez" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"tff" = ( /obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/area/ice_colony/underground/crew/lavatory) -"bRd" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 }, -/area/ice_colony/underground/crew/lavatory) -"bRe" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/crew/lavatory) -"bRf" = ( -/obj/structure/machinery/alarm{ +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"tfA" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/underground/engineering) +"tfE" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"tfQ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"tgb" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/firealarm{ dir = 1; pixel_y = -24 }, -/turf/open/floor{ - icon_state = "darkbrown2" +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/medical/lobby) +"tgk" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/ice_colony/underground/crew/lavatory) -"bRg" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/ice_colony/underground/crew/lavatory) -"bRh" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad) +"tha" = ( +/turf/open/floor/icefloor/rockvault, +/area/ice_colony/exterior/surface/valley/south/excavation) +"thi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"thq" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"thv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Underground Maintenance" + name = "\improper Colony Engineering Tool Storage" }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/leisure) -"bRi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/tool) +"tig" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bRj" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tik" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/requesitions) +"tiP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/underground/hallway/south_east) -"bRk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/dorms) +"tja" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bRl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"tjY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"tkc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bRm" = ( -/obj/structure/machinery/door/poddoor/two_tile/secure{ - id = "colony_sec_armory"; - name = "Secure Armory" - }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bRn" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"tku" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"tkv" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bRo" = ( -/obj/structure/ice/thin/end{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/hallway) +"tkC" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"tkE" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bRp" = ( -/obj/structure/ice/thin/straight{ +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"tkQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bRq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/disposals) -"bRr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/crew/lavatory) -"bRs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRu" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/reception) -"bRv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/reception) -"bRw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Underground Maintenance" +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"tlf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bRx" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"tmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"tmP" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"tmY" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/hydroponics/north) +"tnH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bRy" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = 26 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/ice_colony/underground/security/armory) -"bRz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"tnW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bRA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"toj" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"toA" = ( /obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 }, -/obj/item/storage/box/flashbangs, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"toC" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/or) +"toG" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/area/ice_colony/underground/security/armory) -"bRB" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bRC" = ( -/obj/structure/bedsheetbin, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/or) +"toL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"toW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bRD" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"tpa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Toilet Unit" + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tpv" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bRE" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/security/brig) -"bRF" = ( -/obj/structure/machinery/microwave, +"tpP" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bRG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/substation/smes) +"tqX" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" }, -/area/ice_colony/underground/security/brig) -"bRH" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bRI" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bRJ" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "dorms_ladder" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + name = "Underground Medical Laboratory Operating Theatre" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRM" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"trY" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/garage/two) +"tso" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, +/turf/open/floor/whitered/southeast, +/area/ice_colony/surface/clinic/lobby) +"tsw" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering/tool) +"tsB" = ( +/obj/structure/bigDelivery, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"ttC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering) +"tuk" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/marine_law, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRO" = ( +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"tux" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRR" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bRS" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception) -"bRT" = ( -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"tuK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/reception) -"bRU" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"tuR" = ( +/obj/effect/decal/cleanable/blood/oil{ + icon_state = "armorblood" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/ice_colony/underground/reception) -"bRW" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/underground/hangar) +"tuS" = ( +/turf/open/floor/chapel/west, +/area/ice_colony/underground/crew/chapel) +"tuW" = ( /obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"tvJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"tvL" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"twp" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"twE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"twJ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"txy" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"txV" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/reception) -"bRX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bRY" = ( -/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/tech_storage) +"txY" = ( +/obj/structure/machinery/door/unpowered/shuttle, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"tyn" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research) +"tzj" = ( +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/crew/canteen) +"tzv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"tAb" = ( +/obj/structure/machinery/optable, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"tAi" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/ice_colony/surface/engineering/generator) +"tAw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"tAD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"tBa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/underground/security/armory) -"bRZ" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"tBe" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"tBo" = ( +/obj/structure/morgue, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"tBu" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"tCv" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation) +"tCT" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"tDl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/disposals) +"tDw" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shuttle/elevator1/ground) +"tDy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/underground/security/armory) -"bSb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"tDF" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/substation/smes) +"tDQ" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/container_yard) +"tEa" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkblue2/northeast, +/area/ice_colony/surface/command/control/office) +"tEe" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/ice_colony/exterior/surface/landing_pad) +"tEq" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/beta) +"tEr" = ( /obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"tEG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"tFg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"tFT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"tGH" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/darkblue2/east, +/area/ice_colony/underground/command/center) +"tGN" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/turf/open/floor{ +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/underground/hangar) +"tGV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"tHb" = ( +/obj/structure/surface/table{ dir = 4; - icon_state = "darkred2" + flipped = 1; + icon_state = "tableflip0" }, -/area/ice_colony/underground/security/armory) -"bSc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/garage/repair) +"tHO" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bSd" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/ice_colony/underground/security/brig) -"bSe" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/darkpurple2/west, +/area/ice_colony/surface/research) +"tHS" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkyellow2" - }, -/area/ice_colony/underground/security/brig) -"bSf" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"tHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/whiteredcorner, +/area/ice_colony/surface/clinic/lobby) +"tIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/security/brig) -"bSg" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_2"; + name = "\improper Hangar Shutters" }, -/turf/open/floor{ - icon_state = "dark2" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/ice_colony/underground/reception) -"bSh" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -4 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/beta) +"tJp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"tKI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/underground/reception) -"bSi" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"tKX" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/freight, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/surface/requesitions) +"tLw" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"tLG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/generator) +"tLI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"tMl" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"tMx" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "darkred2" + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"tNa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"tNt" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/security/armory) -"bSj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/holdout, -/obj/item/weapon/gun/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +"tNB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"tNG" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bSk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkyellow2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/security/brig) -"bSl" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/darkblue2/west, +/area/ice_colony/underground/command/center) +"tNK" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/armory) +"tNL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/security/brig) -"bSm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/hydroponics/lobby) +"tOg" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/east, +/area/ice_colony/surface/clinic/storage) +"tOD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bSn" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"tOE" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bSp" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Engineering Electric Storage"; + req_access_txt = "100" }, -/obj/structure/surface/table/reinforced, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"tOL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/research) +"tOR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bSq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"tPN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/reception) -"bSr" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"tPQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/requesition/lobby) -"bSs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bSt" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/security/armory) -"bSu" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/medical/lobby) +"tPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/research/temporary) +"tQo" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/brig) +"tQu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/security/armory) -"bSv" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/north_west) +"tQx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"tQZ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"tSl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/ice_colony/underground/security/armory) -"bSw" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor{ - icon_state = "darkred2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/armory) -"bSx" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Omicron Temporary Sample Storage" }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/temporary) +"tTb" = ( +/obj/structure/bed/chair, +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/ice_colony/underground/security/armory) -"bSy" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"tTp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"tUp" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"tUu" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/item/ammo_magazine/pistol/holdout, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"tUz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/underground/security/armory) -"bSz" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/dorms) +"tUJ" = ( +/obj/structure/curtain/open/medical, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/ice_colony/underground/security/brig) -"bSB" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"tVG" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bSC" = ( -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - icon_state = "darkyellow2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"tVH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/crew/canteen) +"tWc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/interrogation) +"tWg" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"tWm" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/area/ice_colony/underground/security/brig) -"bSD" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"tWK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/security/brig) -"bSE" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"tXm" = ( /obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bSF" = ( -/obj/structure/pipes/vents/pump{ +/obj/item/clothing/mask/gas, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception) -"bSG" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/excavation) +"tXD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"tXL" = ( +/obj/structure/surface/rack, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/field_gear) +"tYq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"tYA" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"tYB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/reception) -"bSH" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"tYY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/underground/hallway/south_east) +"tZo" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"tZD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"tZS" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/west) +"uah" = ( +/obj/structure/bed/chair/office/dark{ dir = 4; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception) -"bSI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bSJ" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplatecorner" + icon_state = "chair" }, -/area/ice_colony/underground/maintenance/east) -"bSK" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"uan" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/treatment) +"uaD" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"uaE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/reception) -"bSL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"uaT" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"uaW" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/underground/reception) -"bSM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/dark2, +/area/ice_colony/surface/research/tech_storage) +"ubp" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation/smes) +"ucg" = ( +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"ucp" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 }, -/obj/effect/decal/cleanable/cobweb{ +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bSN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/backroom) +"ucD" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"udd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"udB" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"udH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"udV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/security) -"bSP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkblue2/east, +/area/ice_colony/surface/command/checkpoint) +"ueo" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"ueQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"ufa" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/medical/lobby) +"ufm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uft" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/hallway) +"ufS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/disposals) +"uge" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/one) +"ugS" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/container_yard) +"ugV" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator4/ground) +"uhk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uhM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - pixel_y = 24; - start_charge = 0 + name = "\improper Anti-Freeze Canteen Freezer" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uiC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Colony Garage" }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "hangar_ladder" +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/two) +"uiF" = ( +/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ + dockId = "Lower_Omicorn"; + shuttleId = "ice_classic_shuttle2" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +/turf/closed/wall/r_wall/unmeltable, +/area/ice_colony/underground/research) +"ujB" = ( +/obj/structure/surface/table, +/obj/item/storage/box/trackimp, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/backroom) +"ukl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/maintenance/east) -"bSR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkpurple2/north, +/area/ice_colony/surface/research) +"ukx" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "hangar_ladder1" +/turf/open/floor/plating/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"ukz" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/engineering) +"ukC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Security Checkpoint" }, -/turf/open/floor/plating{ - icon_state = "warnplate" +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/hangar/checkpoint) +"ukL" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/container_yard) +"ukR" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms/lavatory) +"ulc" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/dorms) +"ulw" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"ulz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"ulP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/underground/maintenance/east) -"bSS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"umo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"unx" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research) +"unL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uol" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/security/brig) +"uos" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/maintenance/east) -"bST" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bSU" = ( -/turf/open/space/transit/north/shuttlespace_ns4, -/area/shuttle/elevator1/transit) -"bSV" = ( -/turf/open/space/transit/north/shuttlespace_ns4, -/area/shuttle/elevator2/transit) -"bSW" = ( -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/ice_colony/underground/hallway/south_east) -"bSX" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/hangar/alpha) +"uou" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bSY" = ( -/obj/structure/disposalpipe/segment, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"uox" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/tool) +"uoy" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/lobby) +"upe" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Reception Archives" + icon_state = "pipe-c" }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bSZ" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"upg" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator4/ground) +"upk" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bTa" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bTc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/hallway/south_east) -"bTd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"upo" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"upv" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/ice_colony/underground/hallway/south_east) -"bTe" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTf" = ( -/obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTg" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/underground/requesition/sec_storage) +"uqe" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/medical/lobby) +"uqp" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTh" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTi" = ( -/obj/structure/machinery/light{ +/obj/structure/surface/table/reinforced, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"uqI" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"urc" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTj" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTl" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/hallway/south_east) -"bTm" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/obj/structure/machinery/light, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"urh" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/area/ice_colony/underground/hallway/south_east) -"bTn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) +"urM" = ( +/obj/item/trash/semki, +/obj/structure/window/reinforced{ + dir = 1 }, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/underground/crew/disposals) +"usd" = ( +/turf/open/floor/darkgreencorners2, /area/ice_colony/underground/hallway/south_east) -"bTo" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +"usr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"usJ" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/exterior/surface/landing_pad2) +"uta" = ( +/obj/item/roller{ + icon_state = "down" }, -/area/ice_colony/underground/hallway/south_east) -"bTp" = ( -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTq" = ( +/turf/open/floor/whitered/southeast, +/area/ice_colony/underground/medical/storage) +"uts" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 1 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTv" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"utt" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/treatment) +"utx" = ( +/turf/open/floor/darkyellowcorners2, +/area/ice_colony/surface/research/tech_storage) +"utV" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/storage) +"uui" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation) +"uun" = ( +/obj/item/shard, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"uuu" = ( +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/crew/canteen) +"uuB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"uuK" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno, /turf/open/floor/plating/icefloor, -/area/shuttle/elevator1/underground) -"bTx" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTy" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTz" = ( -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTA" = ( -/obj/structure/bed/chair/office/dark, +/area/ice_colony/underground/hangar) +"uvi" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"uvx" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/reception) -"bTC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bTD" = ( -/obj/item/paper_bin, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Underground Technical Storage" }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTF" = ( -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTG" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"uvy" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/temporary) +"uvz" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/tcomms) +"uwb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Underground Reception" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"uwd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bTH" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1; - icon_state = "tableflip0" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"uwj" = ( +/obj/structure/curtain/medical, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"uwm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bTI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/alpha) +"uwG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"uwP" = ( +/obj/structure/reagent_dispensers/beerkeg, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkgreen2" +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"uxb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bTJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkgreencorners2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/lobby) +"uxd" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/research/field_gear) +"uxj" = ( +/obj/structure/surface/table, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/excavation) +"uxs" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkblue2/north, /area/ice_colony/underground/hallway/south_east) -"bTK" = ( +"uxK" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"uxY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/storage) +"uxZ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"uyb" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"uyg" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"uAb" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"uAd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/dorms) +"uAf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control/office) +"uAo" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"uAB" = ( +/obj/structure/machinery/computer/operating, +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"uBb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bTM" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/bcircuit, +/area/ice_colony/surface/engineering/generator) +"uBo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/area/ice_colony/underground/hallway/south_east) -"bTN" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/reception/toilet_men) -"bTO" = ( +/turf/open/floor/plating, +/area/ice_colony/underground/hangar) +"uBE" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/valley/southwest) +"uBH" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/sec_storage) +"uBJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"uCc" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bTS" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"uCd" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/disposals) +"uCi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" + }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"uCn" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" - }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"bTT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"uCT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bTV" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"uDa" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/hallway) +"uDd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/underground/reception/toilet_men) -"bTW" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"uDl" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/effect/landmark/corpsespawner/miner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/reception/toilet_men) -"bTX" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"uDm" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"uDE" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/hallway) +"uEO" = ( /obj/structure/sink{ pixel_y = 15 }, /obj/structure/mirror{ pixel_y = 28 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bTY" = ( -/turf/open/floor, -/area/ice_colony/surface/tcomms) -"bUc" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUe" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/ice_colony/underground/reception/toilet_men) -"bUf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 10; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +"uEX" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator1/ground) +"uFT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"uFU" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/ice_colony/underground/hallway/south_east) -"bUh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"uGg" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/tcomms) +"uGC" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"uGN" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"uHh" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating, +/area/ice_colony/underground/engineering/substation) +"uHH" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/power) +"uIB" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"uIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bUj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/medical/lobby) +"uJb" = ( /obj/structure/flora/pottedplant, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUm" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - shuttleId = "ice_classic_shuttle4"; - dockId = "Lower_Arrivals"; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUo" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"uJW" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"uKq" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"uKC" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"uKM" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Visitor Entrance" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/hallway) +"uKY" = ( +/turf/open/auto_turf/snow/layer4, +/area/ice_colony/exterior/surface/cliff) +"uLh" = ( +/obj/structure/surface/table, +/obj/item/device/encryptionkey, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/tcomms) +"uLo" = ( +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/underground/research/work) +"uLD" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"uLT" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"uML" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkpurplecorners2/north, +/area/ice_colony/surface/research) +"uNC" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Men's Restroom" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"uNM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/area/ice_colony/underground/reception/toilet_men) -"bUv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation/smes) +"uNP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"uOv" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/ice_colony/underground/reception/toilet_men) -"bUx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"uOH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitered/northwest, +/area/ice_colony/underground/medical/storage) +"uOV" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"uPw" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/underground/storage/highsec) +"uQl" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"uQw" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"uRZ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering) +"uSb" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"uTe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/ice_colony/underground/reception/toilet_men) -"bUz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"uTh" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"uTw" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/underground/reception/toilet_men) -"bUA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/alpha) +"uTF" = ( +/obj/structure/surface/table, +/obj/item/trash/chips, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"uTR" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"uTY" = ( +/obj/structure/dispenser, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation) +"uUq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/ice_colony/underground/reception) +"uUs" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/maintenance/central/construction) +"uUv" = ( +/obj/effect/alien/weeds/node, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"uUE" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/reception/toilet_men) -"bUC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/lobby) +"uUK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"uVg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bUH" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/requesition/lobby) +"uWB" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bUI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"uXd" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"uXB" = ( +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research/sample) +"uYs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"uZd" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/treatment) +"uZD" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering/generator) +"vaU" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/treatment) +"vbl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/storage) +"vbU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"vcB" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/closet/secure_closet/req_officer, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"vcJ" = ( +/obj/structure/machinery/conveyor{ + icon_state = "switch-off" + }, +/obj/structure/machinery/door_control{ + name = "Storage Unit Control"; + pixel_x = 24 }, -/area/ice_colony/underground/hallway/south_east) -"bUK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/surface/requesitions) +"vcU" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/ice, +/area/ice_colony/exterior/underground/caves/open) +"vdg" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/trash/plate{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/ice_colony/underground/hallway/south_east) -"bUL" = ( +/obj/structure/machinery/light, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"vdJ" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"veK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreen2" +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"vft" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/substation/smes) +"vfB" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"vgj" = ( +/turf/open/floor/darkgreen2/north, /area/ice_colony/underground/hallway/south_east) -"bUM" = ( +"vgk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/garage/one) +"vgl" = ( +/obj/structure/window/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/excavation) +"vhe" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering/electric) +"vhS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor, +/area/ice_colony/underground/hangar) +"vij" = ( +/obj/structure/pipes/standard/manifold/hidden/green, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"bUN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"viY" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research) +"vjk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/hallway/south_east) -"bUP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"vjC" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator2/underground) +"vke" = ( +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/excavation) +"vkk" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bUQ" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/recharge_station, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"vkA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"vkZ" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkred2/north, +/area/ice_colony/surface/hangar/checkpoint) +"vla" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/underground/reception/toilet_men) -"bUR" = ( -/obj/structure/sink{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"vmi" = ( +/obj/structure/machinery/firealarm{ dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/open/floor{ - icon_state = "white" + pixel_y = -24 }, -/area/ice_colony/underground/reception/toilet_men) -"bUS" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_men) -"bUT" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/darkred2, +/area/ice_colony/underground/reception/checkpoint_north) +"vmt" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"vmG" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Underground Security" }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security/hallway) +"vmM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/mirror{ - pixel_y = -28 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "hangar_ice_1"; + name = "\improper Hangar Shutters" }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/hangar/alpha) +"vna" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/area/ice_colony/underground/reception/toilet_men) -"bUU" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/surface/hydroponics/lobby) +"vnE" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/two) +"voi" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/storage) +"vou" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bUV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/machinery/light/small, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bUZ" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"voH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/underground/hallway/south_east) -"bVa" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/reception/toilet_women) -"bVb" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/garage/repair) +"voY" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/beta) +"vpB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bVc" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"bVe" = ( -/turf/closed/wall/r_wall, -/area/ice_colony/underground/reception/checkpoint_south) -"bVf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/ice_colony/underground/reception/checkpoint_south) -"bVg" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper_bin, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 2; - icon_state = "leftsecure"; - id = "brg"; - name = "Security Desk" - }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"vqf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/engineering/locker) +"vqE" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"vqI" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/sample) +"vrx" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator2/ground) +"vrD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/window/northright{ - name = "Security Desk" - }, -/obj/item/tool/stamp, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"vsv" = ( +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "janitor_ladder" }, -/turf/open/floor{ - icon_state = "darkred2" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/underground/crew/disposals) +"vtj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"vty" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"vua" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVi" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 4; - icon_state = "darkgreen2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"vuc" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/security/brig) +"vuz" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2, +/area/ice_colony/underground/engineering) +"vvo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"bVj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_women) -"bVk" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_women) -"bVl" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" +"vwq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/ice_colony/underground/reception/toilet_women) -"bVm" = ( -/obj/structure/machinery/light{ +/turf/open/floor/darkpurplecorners2/east, +/area/ice_colony/surface/research) +"vwV" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/disposals) +"vxh" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/garage/one) +"vxk" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"vyO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_women) -"bVn" = ( -/obj/structure/machinery/computer/cameras, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVo" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/landing_pad) +"vyW" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/garage/two) +"vzn" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"vzz" = ( /obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/ice_colony/underground/requesition/lobby) -"bVp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVq" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Underground Security Checkpoint" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVs" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/surface/garage/one) +"vzM" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/dorms) +"vzU" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"vAP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"vBt" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/darkyellow2/north, /area/ice_colony/underground/hallway/south_east) -"bVt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Women's Restroom" +"vCJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/ice_colony/underground/medical/or) +"vDk" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research) +"vDG" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/darkpurple2/northeast, +/area/ice_colony/underground/research/work) +"vEl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/ice_colony/underground/reception/toilet_women) -"bVw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/darkgreen2/southwest, +/area/ice_colony/surface/hydroponics/north) +"vEE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/field_gear) +"vEM" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/underground/reception/toilet_women) -"bVx" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition/lobby) +"vFI" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"vFJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"vFV" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/tool/stamp, +/turf/open/floor/wood, +/area/ice_colony/surface/command/crisis) +"vGd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/reception/toilet_women) -"bVy" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"vGo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/reception/toilet_women) -"bVz" = ( +/turf/open/floor/darkblue2, +/area/ice_colony/surface/command/control) +"vGO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/reception/toilet_women) -"bVA" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVB" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVC" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVD" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" - }, -/area/ice_colony/underground/reception/checkpoint_south) -"bVE" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"vGX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"vHD" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/area/ice_colony/underground/hallway/south_east) -"bVF" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/tool) +"vHH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) +"vIh" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"vIj" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator2/underground) +"vIE" = ( +/obj/structure/flora/pottedplant, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/ice_colony/underground/hallway/south_east) -"bVG" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"vJw" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shuttle/elevator3/underground) +"vKc" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/reception/checkpoint_north) +"vKe" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = 26 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security/armory) +"vKC" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = -24 + icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "darkgreen2" +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"vKN" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"vLm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/dark2, /area/ice_colony/underground/hallway/south_east) -"bVI" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" +"vLC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Aerodrome Hangar" }, +/turf/open/floor/darkbrown2/southwest, +/area/ice_colony/surface/hangar/hallway) +"vLU" = ( +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"vMo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"vMS" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/southeast, /area/ice_colony/underground/hallway/south_east) -"bVJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/ice_colony/underground/reception/toilet_women) -"bVK" = ( +"vMV" = ( /obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" + dir = 8; + pixel_x = -24 }, -/area/ice_colony/underground/reception/toilet_women) -"bVL" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"vNf" = ( +/turf/open/floor/darkpurple2/north, +/area/ice_colony/underground/research) +"vNl" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"vNm" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/treatment) +"vNv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/reception/toilet_women) -"bVM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"vNz" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/tech_storage) +"vOm" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/westright{ + name = "Security Desk" }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/door/window/eastleft{ + name = "Security Desk" }, -/area/ice_colony/underground/reception/toilet_women) -"bVN" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves) -"bVO" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bVP" = ( -/obj/structure/tunnel{ - id = "dig_site_tunnel" +/turf/open/floor/darkred2/west, +/area/ice_colony/surface/hangar/checkpoint) +"vOP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bVQ" = ( -/obj/structure/mineral_door/resin, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bVR" = ( -/turf/closed/ice/straight{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/area/ice_colony/exterior/underground/caves) -"bVS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bVT" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"vPX" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bVU" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"vQC" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"vRq" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/garage/repair) +"vRX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/reception/toilet_women) -"bVV" = ( -/obj/structure/sink{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/open/floor{ - icon_state = "white" + name = "\improper Aurora Medical Clinic"; + req_access_txt = "100" }, -/area/ice_colony/underground/reception/toilet_women) -"bVW" = ( -/turf/closed/shuttle{ - icon_state = "wall3" +/turf/open/floor/whiteredfull, +/area/ice_colony/surface/clinic/lobby) +"vSe" = ( +/obj/structure/curtain/medical, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"vSk" = ( +/obj{ + anchored = 1; + density = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_closed"; + name = "strange airlock"; + opacity = 1 }, +/turf/open/floor/icefloor/shuttle_vfloor, /area/ice_colony/exterior/underground/caves/dig) -"bVX" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bVY" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bVZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/obj/item/tool/weldingtool, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWa" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "ship_ladder1" - }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWb" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "ship_ladder" +"vSq" = ( +/obj/structure/pipes/standard/manifold/visible{ + layer = 2.3 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWc" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" +/turf/open/floor/whiteredcorner/east, +/area/ice_colony/underground/medical/treatment) +"vSM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWf" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"vSN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Underground Maintenance" - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bWh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bWi" = ( -/turf/closed/ice/corner{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/ice_colony/exterior/underground/caves/open) -"bWj" = ( -/turf/closed/ice/straight{ +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"vST" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/ice_colony/exterior/underground/caves/open) -"bWk" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 +/turf/open/floor/dark2, +/area/ice_colony/underground/storage) +"vTe" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/underground) +"vTm" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/canteen) +"vTZ" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/lobby) +"vUm" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"vUn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/south_east) +"vUq" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/dorms) +"vUD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWl" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/hallway/south_east) +"vVr" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"vVz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Hydroponics Dome North Wing"; + req_access_txt = "100" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/north) +"vVR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWm" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"vVZ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"vWK" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/delivery, +/area/ice_colony/surface/tcomms) +"vXn" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWn" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/ice_colony/exterior/surface/landing_pad) +"vXO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/east) -"bWp" = ( -/turf/closed/ice/intersection, -/area/ice_colony/exterior/underground/caves/open) -"bWq" = ( -/turf/closed/ice/corner{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/exterior/underground/caves/open) -"bWr" = ( -/obj/structure/shuttle/engine/router{ +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"vYm" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/obj/structure/machinery/vending/cola, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"vYp" = ( +/obj/structure/machinery/light, +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"vYA" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/valley/southwest) +"vZd" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/electric) +"wak" = ( +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/hallway/north_west) +"wbj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWs" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/crap_item, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWu" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ - pixel_y = 32 +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/storage) +"wbm" = ( +/obj/structure/shuttle/engine/router{ + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bWv" = ( +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"wbJ" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms/lavatory) +"wcL" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shuttle/elevator3/ground) +"wcU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/storage/toolbox/emergency, /obj/structure/surface/table, -/obj/item/device/camera, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWw" = ( -/obj/structure/ice/thin/junction{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"wdw" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"wdU" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"weC" = ( +/turf/open/floor/darkpurple2, +/area/ice_colony/underground/research/sample) +"weH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWx" = ( -/obj/structure/ice/thin/end{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"wfC" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/treatment) +"wfQ" = ( +/obj/structure/bed/chair, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"wfV" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWy" = ( -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"wgb" = ( +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/substation) +"wgg" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"wgJ" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f9" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/beta) +"wgS" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f5" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWz" = ( -/obj/structure/ice/thin/straight, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWA" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"wgZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWB" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWC" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWD" = ( -/obj/item/tool/pickaxe/silver, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWE" = ( -/obj/structure/inflatable/door, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"whn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "dig_site_prep_ladder1" +/turf/open/floor/whiteredcorner/west, +/area/ice_colony/surface/clinic/lobby) +"whp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/lobby) +"whr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/beta) +"whv" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"wij" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/repair) +"wit" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "garage_ice_2"; + name = "\improper Garage Shutters" }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bWG" = ( -/obj/item/tool/pickaxe, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bWH" = ( -/obj/structure/ladder{ - height = 1; - icon_state = "ladderup"; - id = "dig_site_prep_ladder" +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/two) +"wiV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bWI" = ( -/turf/closed/ice/intersection, -/area/ice_colony/exterior/underground/caves) -"bWJ" = ( -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/bed/chair{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWK" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "13" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"wlk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"wls" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWL" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "9" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"wlK" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/engineering) +"wmo" = ( +/obj/structure/bed/chair, +/obj/structure/disposalpipe/segment, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/checkpoint) +"wmx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWM" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "12" +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"wmM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/grille, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"wmP" = ( +/obj/item/tool/soap, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWN" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon_state = "ramptop" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"wnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWO" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWP" = ( -/obj/structure/cryofeed, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"woL" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWQ" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/excavation) +"woV" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/engineering/locker) +"wpc" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/disposals) +"wpD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Underground Security Checkpoint" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWR" = ( -/obj/structure/computerframe{ - anchored = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/reception/checkpoint_north) +"wpZ" = ( +/obj/item/roller{ + icon_state = "down" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/whitered/east, +/area/ice_colony/underground/medical/hallway) +"wra" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall_f10" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWS" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"wrc" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/dig) -"bWT" = ( -/obj/effect/landmark/good_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/dark2, +/area/ice_colony/underground/reception) +"wrr" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate/east, +/area/ice_colony/exterior/surface/container_yard) +"wrz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whitered/north, +/area/ice_colony/surface/clinic/lobby) +"wsm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWU" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"wsy" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/excavation) +"wsB" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitered/northwest, +/area/ice_colony/surface/clinic/lobby) +"wsP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation) +"wtb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWV" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWW" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"wtn" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shuttle/elevator1/ground) +"wty" = ( +/obj/structure/kitchenspike, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/bar) +"wtP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/underground/hallway/south_east) +"wue" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/wood, +/area/ice_colony/surface/command/control/pv1) +"wui" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Aurora Medical Clinic Treatment"; + req_access_txt = "100" }, -/area/ice_colony/exterior/underground/caves/dig) -"bWX" = ( -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" +/turf/open/floor/whitered/west, +/area/ice_colony/surface/clinic/treatment) +"wuJ" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkred2/north, +/area/ice_colony/underground/security) +"wuO" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 }, -/area/ice_colony/exterior/underground/caves/dig) -"bWZ" = ( -/obj/structure/inflatable/door, -/obj{ - anchored = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_open"; - name = "strange airlock" +/turf/open/floor/darkredcorners2/north, +/area/ice_colony/underground/security/hallway) +"wvf" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"wvm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Colony Xenoarcheology Outpost" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXa" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"wvw" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/research/tech_storage) +"wvA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkbrown2/northwest, +/area/ice_colony/underground/hallway/north_west) +"wvC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXb" = ( -/obj/item/stack/cable_coil/random, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXc" = ( -/obj/effect/decal/cleanable/spiderling_remains{ - name = "greenish remains" +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"wvW" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/surface/hydroponics/south) +"wwm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation/smes) +"wwH" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/exterior/surface/clearing/north) +"wxq" = ( +/obj/structure/machinery/space_heater, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"wxy" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/garage/two) +"wxL" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkblue2, +/area/ice_colony/surface/dorms) +"wxV" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/canteen) +"wyU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXd" = ( -/obj/structure/inflatable/door, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkyellow2/east, +/area/ice_colony/underground/storage) +"wza" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/north, +/area/ice_colony/surface/engineering) +"wzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXe" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXf" = ( -/obj/item/device/flashlight, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "colony_admin_top"; + name = "\improper Colony Administration Blast Door" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXg" = ( -/obj/structure/computerframe{ - anchored = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Colony Control Center" }, -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"wzQ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/botanydisk, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/north) +"wCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXh" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "16" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/research) +"wCx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves/dig) -"bXi" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"bXj" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/research) +"wCC" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/storage) +"wCQ" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/tcomms) +"wCX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"wCY" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/engineering) +"wEj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXk" = ( -/obj/item/device/flashlight/flare, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/surface/table{ + flipped = 1; + icon_state = "tableflip0" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXl" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkblue2/north, +/area/ice_colony/surface/command/control) +"wEv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXm" = ( -/obj/structure/shuttle/window{ - color = "gray"; - icon_state = "15" +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"wFg" = ( +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"wFF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/ice_colony/exterior/underground/caves/dig) -"bXn" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 +/obj/structure/machinery/door_control{ + id = "hangar_ice_1"; + name = "hangar shutter control"; + pixel_y = -30 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/hangar/alpha) +"wGb" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, +/turf/open/floor/darkpurple2/northwest, +/area/ice_colony/underground/research) +"wGd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXo" = ( -/obj/structure/machinery/door/poddoor{ - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "Strange Airlock" +/turf/open/floor/whitered/southwest, +/area/ice_colony/surface/clinic/lobby) +"wGj" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, +/area/ice_colony/underground/crew/chapel) +"wGq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Underground Maintenance" }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"wGE" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"wHc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXp" = ( -/obj{ - anchored = 1; - density = 1; - desc = "This doors looks like it has been made by aliens..."; - icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; - icon_state = "door_closed"; - name = "strange airlock"; - opacity = 1 +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"wHq" = ( +/turf/open/floor/darkgreencorners2/east, +/area/ice_colony/underground/hallway/south_east) +"wHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "vfloor" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Dome" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXq" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"wId" = ( +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c500, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/item/spacecash/c1, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/storage/highsec) +"wIn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/ice_colony/underground/medical/hallway) +"wIr" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXr" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/item/frame/light_fixture, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering) +"wIv" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/surface/engineering/tool) +"wIC" = ( +/turf/open/floor/darkgreencorners2/north, +/area/ice_colony/underground/hallway/south_east) +"wJn" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXs" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/hallway/north_west) +"wJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXt" = ( -/turf/closed/ice/junction{ +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"wJB" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/hallway) +"wJI" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/area/ice_colony/exterior/underground/caves/open) -"bXu" = ( -/turf/open/floor/icefloor{ - icon_state = "ramptop" +/turf/open/floor/darkpurple2/southeast, +/area/ice_colony/surface/excavation) +"wKc" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXv" = ( -/turf/closed/ice/end{ +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/engineering) +"wKy" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/area/ice_colony/exterior/underground/caves/open) -"bXw" = ( -/turf/closed/ice/junction{ +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition/sec_storage) +"wKK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/surface/hangar/beta) +"wKY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"wLH" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/area/ice_colony/exterior/underground/caves/open) -"bXx" = ( -/obj/structure/ice/thin/junction{ - dir = 8 +/obj/structure/machinery/computer/communications, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"wLO" = ( +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/hangar/beta) +"wMB" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"wNb" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition/lobby) +"wNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"wNq" = ( +/obj/structure/surface/table/reinforced, +/obj/item/evidencebag, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/interrogation) +"wNz" = ( +/obj/structure/machinery/door_control{ + id = "research_entrance"; + name = "Research Entrance Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + req_access_txt = "103"; + specialfunctions = 4 }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bXy" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/darkbrown2/northeast, +/area/ice_colony/surface/research) +"wOu" = ( +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/ice_colony/exterior/surface/landing_pad) +"wOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/exterior/underground/caves/dig) -"bXz" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor6" +/turf/open/floor/darkgreen2/north, +/area/ice_colony/surface/dorms) +"wPL" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/excavation) +"wQc" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/electric) +"wQr" = ( +/turf/open/floor/darkbrown2, +/area/ice_colony/underground/requesition) +"wQC" = ( +/obj/structure/machinery/light, +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"wQL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"wRa" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering/locker) +"wRe" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"wRj" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/area/ice_colony/exterior/underground/caves/dig) -"bXA" = ( -/obj/structure/tunnel{ - id = "south_research_tunnel" +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" }, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"bXB" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" }, -/area/ice_colony/underground/security/armory) -"bXD" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/area/ice_colony/underground/crew/morgue) -"bXE" = ( -/obj/structure/surface/table, -/obj/item/device/camera, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 }, -/area/ice_colony/underground/crew/morgue) -"bXF" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"wRn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"wRH" = ( +/obj/structure/disposalpipe/segment, +/obj/item/tool/shovel/snow, +/turf/open/floor/darkgreen2/west, +/area/ice_colony/surface/hydroponics/south) +"wSo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"wSy" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/ice_colony/underground/engineering) -"bXL" = ( +/obj/structure/machinery/computer/atmos_alert, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"wSG" = ( /obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitered" +/obj/structure/machinery/door/window/brigdoor/westleft{ + id = "brg" }, -/area/ice_colony/underground/medical/lobby) -"bXM" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitered" +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 7 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"wSO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/darkgreen2/west, /area/ice_colony/underground/medical/lobby) -"bXN" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 +"wSQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"wSS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/obj/item/tool/soap{ - pixel_x = 5 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/south_east) +"wTz" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/ice_colony/underground/medical/or) -"bXO" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/plating/icefloor/warnplate/north, +/area/ice_colony/exterior/surface/landing_pad) +"wTB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "whitered" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/north_west) +"wTN" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/ice_colony/surface/bar/bar) +"wTP" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"wUW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"wVY" = ( +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"wWv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/medical/lobby) -"bXQ" = ( +/turf/open/floor/whitered/northeast, +/area/ice_colony/surface/clinic/lobby) +"wWF" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/darkyellow2/east, +/area/ice_colony/surface/engineering/generator) +"wXC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/tool) +"wXG" = ( +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/turf/open/floor{ +/turf/open/floor/icefloor/shuttle_vfloor, +/area/ice_colony/exterior/underground/caves/dig) +"wXN" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "whitered" - }, -/area/ice_colony/underground/medical/storage) -"bXR" = ( -/obj/structure/surface/table/woodentable, -/obj/item/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/ice_colony/underground/security/marshal) -"bXS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor{ - icon_state = "dark2" + icon_state = "pipe-c" }, -/area/ice_colony/underground/command/center) -"bXU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"wXT" = ( +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"wXV" = ( +/obj/structure/closet/wardrobe/green, /obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" + dir = 4; + pixel_x = 24 }, -/area/ice_colony/underground/storage/highsec) -"bXV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c500, -/obj/item/spacecash/c100, -/obj/item/spacecash/c10, -/obj/item/spacecash/c1, -/turf/open/floor{ - icon_state = "darkblue2" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"wYc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/underground/storage/highsec) -"bXW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/dark2, +/area/ice_colony/surface/command/checkpoint) +"wYh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"wYw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 + }, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering) +"wYC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/ice_colony/underground/maintenance/research) +"wZg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"wZJ" = ( +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research) -"bXY" = ( -/obj/structure/surface/table, -/obj/item/evidencebag, -/turf/open/floor{ - icon_state = "dark2" +"xae" = ( +/obj/structure/inflatable, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/excavation/storage) +"xap" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Visitor Entrance" }, -/area/ice_colony/underground/security/interrogation) -"bYa" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"xaF" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/ice_colony/underground/security/interrogation) -"bYb" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/white, +/area/ice_colony/underground/security/brig) +"xaZ" = ( +/turf/open/floor/darkyellow2/southeast, +/area/ice_colony/underground/engineering) +"xbK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/wood, +/area/ice_colony/underground/crew/library) +"xbR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/morgue) +"xcp" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/reception/checkpoint_north) +"xdh" = ( +/obj/structure/flora/pottedplant, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/lobby) +"xdN" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator3/underground) +"xec" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/underground/research/work) -"bYc" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/freezerfloor, +/area/ice_colony/underground/requesition/storage) +"xef" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"xet" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Underground Engineering Locker Room" }, -/turf/open/floor{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering/locker) +"xeU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/underground/research/work) -"bYd" = ( +/turf/open/floor/whitered/north, +/area/ice_colony/underground/medical/treatment) +"xeZ" = ( +/turf/open/floor/darkgreen2/northeast, +/area/ice_colony/underground/hallway/north_west) +"xfd" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "darkpurple2" - }, -/area/ice_colony/underground/research/work) -"bYg" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/ice_colony/underground/security/backroom) -"bYh" = ( -/obj/structure/surface/table, -/obj/item/paper, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/underground/reception) -"bYi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/tool/stamp, +/turf/open/floor/whitered/west, +/area/ice_colony/underground/medical/lobby) +"xfl" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"xfp" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkgreen2/north, +/area/ice_colony/underground/medical/lobby) +"xfr" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/ice_colony/underground/reception) -"bYj" = ( +/obj/effect/landmark/corpsespawner/miner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_men) +"xfu" = ( /obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/storage/firstaid, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"xgc" = ( +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"xgA" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"xgC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2; + icon_state = "pipe-u" }, -/area/ice_colony/underground/reception) -"bYk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/surface/hydroponics/south) +"xhs" = ( +/turf/open/floor/darkyellow2/northeast, +/area/ice_colony/surface/research/tech_storage) +"xhX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"xif" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"xiH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/storage) +"xjc" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, -/area/ice_colony/underground/security/brig) -"bYm" = ( +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/darkred2/southeast, +/area/ice_colony/underground/security/armory) +"xjA" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/wood, -/area/ice_colony/underground/reception) -"bYn" = ( -/obj/structure/surface/table, -/turf/open/floor{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "darkgreen2" - }, -/area/ice_colony/underground/hallway/south_east) -"bYo" = ( -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" + health = 80 }, +/obj/item/tool/stamp, +/turf/open/floor/whitered/southwest, +/area/ice_colony/underground/medical/lobby) +"xkJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/underground/research/storage) +"xkO" = ( +/turf/open/floor/darkred2/northeast, /area/ice_colony/underground/reception/checkpoint_south) -"bYp" = ( -/obj/structure/surface/table, -/obj/item/trash/chips, -/turf/open/floor{ - icon_state = "darkgreen2" - }, +"xll" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"xlo" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2/northwest, /area/ice_colony/underground/hallway/south_east) -"cbk" = ( -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/tcomms) -"csl" = ( +"xlL" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/checkpoint) +"xmj" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/ice_colony/surface/tcomms) +"xmk" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/security/armory) +"xmm" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/treatment) +"xmZ" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/darkblue2/southwest, +/area/ice_colony/underground/command/center) +"xnC" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"xnI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"xoR" = ( /obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"xoY" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/ice_colony/surface/research) -"cEG" = ( -/obj/docking_port/stationary/marine_dropship/lz2, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"cFF" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" +/obj/structure/largecrate/random, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"xpr" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/shuttle/elevator2/underground) -"cVM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/darkred2/southwest, +/area/ice_colony/underground/security/armory) +"xpv" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"xpx" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"dgG" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkyellow2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/tcomms) -"dxa" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"xpC" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/alpha) +"xpO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkpurple2/southwest, +/area/ice_colony/underground/hallway/north_west) +"xpX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/shuttle/elevator3/underground) -"dxl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/engineering) +"xqd" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/landing_pad) +"xqr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/ice_colony/surface/hangar/beta) -"dzn" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/research) +"xrd" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/ice_colony/surface/tcomms) -"ecS" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/ladder{ + height = 1; + icon_state = "ladderup"; + id = "engineering_ladder" }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering/locker) +"xri" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/hangar/beta) -"elU" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"ezT" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkgreen2/southeast, +/area/ice_colony/surface/dorms) +"xrY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/darkbrown2/northwest, /area/ice_colony/surface/research) -"eSd" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/ice_colony/surface/tcomms) -"eSN" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "darkyellow2" +"xrZ" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/research/field_gear) +"xsk" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/icefloor/shuttle_floor6, +/area/ice_colony/exterior/underground/caves/dig) +"xsG" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/incendiary, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/armory) +"xsM" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/exterior/surface/container_yard) +"xth" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"xtm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/ice_colony/surface/research/tech_storage) -"fqt" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/checkpoint) +"xtn" = ( +/turf/open/floor/whitered, +/area/ice_colony/underground/medical/lobby) +"xto" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"fHx" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 2 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Women's Restroom" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/white, +/area/ice_colony/underground/reception/toilet_women) +"xtU" = ( +/obj/structure/machinery/door_control{ + id = "st_19"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = -24; + req_access_txt = "103"; + specialfunctions = 4 }, -/area/ice_colony/surface/tcomms) -"fUW" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/vault2/west, +/area/ice_colony/surface/storage_unit/research) +"xuT" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/ice_colony/surface/hangar/alpha) -"gdd" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/darkblue2/west, +/area/ice_colony/surface/command/control) +"xuU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security) +"xvh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Zoo Dome" }, -/area/ice_colony/surface/disposals) -"giH" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/darkgreen2, +/area/ice_colony/surface/hydroponics/lobby) +"xwc" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"xwP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/ice_colony/surface/tcomms) -"gxg" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"xwV" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator2/ground) +"xwY" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research/tech_storage) +"xxd" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/darkblue2/northwest, +/area/ice_colony/surface/command/control/office) +"xxe" = ( +/obj/structure/curtain/shower, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"xxU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/underground/engineering) +"xyp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"xyU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/north, +/area/ice_colony/surface/garage/one) +"xzb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/darkblue2, +/area/ice_colony/underground/command/center) +"xzg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/hangar/alpha) -"gDb" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/darkred2/east, +/area/ice_colony/underground/security/hallway) +"xzY" = ( /obj/structure/surface/table, -/turf/open/floor{ +/obj/structure/machinery/faxmachine, +/turf/open/floor/darkblue2/north, +/area/ice_colony/underground/command/center) +"xzZ" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/engineering/electric) +"xBm" = ( +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/underground/crew/disposals) +"xBn" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/underground/requesition) +"xBC" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/hallway/north_west) +"xBO" = ( +/obj/structure/machinery/camera/autoname{ dir = 1; - icon_state = "darkred2" + network = list("interrogation") }, -/area/ice_colony/underground/reception/checkpoint_north) -"gXP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/interrogation) +"xBR" = ( +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"xBX" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/surface/command/checkpoint) +"xCq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/ice_colony/surface/research) -"hfj" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/underground/maintenance/south) -"hmT" = ( -/turf/closed/ice_rock/corners{ +/turf/open/floor/darkred2/northwest, +/area/ice_colony/underground/security) +"xCv" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/area/ice_colony/exterior/surface/valley/south) -"hrN" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/clearing/north) -"hAX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"hDM" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/southeast) -"hJJ" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/surface/hydroponics/lobby) -"hRN" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/garage/one) +"xCw" = ( +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shuttle/elevator1/underground) +"xCM" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" + dir = 1 }, -/area/ice_colony/underground/hangar) -"iBu" = ( -/obj/structure/surface/table/reinforced, -/obj/item/paper/research_notes, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/underground/security/backroom) +"xDi" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/south) +"xDR" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/surface/research/temporary) +"xEH" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"xEZ" = ( +/obj/structure/shuttle/diagonal{ + dir = 6; + icon_state = "wall" }, -/area/ice_colony/underground/research) -"iNy" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"xFj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/requesition) +"xFk" = ( +/obj/structure/window/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating, -/area/ice_colony/underground/maintenance/south) -"iQg" = ( -/obj/item/packageWrap, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"iZc" = ( -/obj/structure/lz_sign/ice_sign{ - desc = "The only good bug is a dead bug."; - icon_state = "fort_biceps"; - name = "Fort Bicep: Telecommunications Array" - }, -/turf/open/auto_turf/snow/layer3, -/area/ice_colony/exterior/surface/valley/south) -"jjD" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator4/underground) -"jtr" = ( -/turf/closed/wall, -/area/ice_colony/exterior/surface/cliff) -"juq" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/crew/leisure) -"jAR" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - dockId = "Upper_Omicorn"; - shuttleId = "ice_classic_shuttle2" +/turf/open/floor/darkbrown2, +/area/ice_colony/surface/excavation) +"xFq" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/darkred2, +/area/ice_colony/underground/security/brig) +"xFK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/research/temporary) +"xFO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/surface/research) -"jCk" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/ice_colony/surface/hangar/alpha) -"jZI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/computer/shuttle_control/dropship2, -/turf/open/floor/plating/icefloor, -/area/ice_colony/landing/console) -"kcN" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"xFT" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/research) +"xFW" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shuttle/elevator1/ground) +"xGn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/darkgreen2, +/area/ice_colony/underground/hallway/north_west) +"xGV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/white, +/area/ice_colony/surface/clinic/treatment) +"xHf" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"kfW" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/ice_colony/exterior/surface/landing_pad) +"xHv" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/white, +/area/ice_colony/underground/medical/treatment) +"xIn" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/dark2, +/area/ice_colony/surface/hydroponics/north) +"xIC" = ( +/turf/open/floor/darkyellowcorners2/east, +/area/ice_colony/surface/research/temporary) +"xIH" = ( +/obj/structure/machinery/door/window/eastright{ + name = "Technical Storage" }, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/surface/excavation) +"xIY" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"xJF" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering/generator) +"xJI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/darkpurple2/east, +/area/ice_colony/underground/research/storage) +"xKi" = ( +/turf/open/floor/dark2, /area/ice_colony/surface/tcomms) -"kjt" = ( -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"kKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "dark2" +"xKt" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/darkbrown2/southeast, +/area/ice_colony/surface/dorms/lavatory) +"xKA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/ice_colony/surface/dorms) -"kRw" = ( +/turf/open/floor/darkbrowncorners2, +/area/ice_colony/surface/hangar/beta) +"xKH" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkpurple2/west, +/area/ice_colony/underground/research/work) +"xKK" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/canteen) +"xLz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall, -/area/ice_colony/surface/research) -"lqY" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/tcomms) -"lyD" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/floor/dark2, +/area/ice_colony/underground/security/hallway) +"xLF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"lyE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/surface/table/reinforced, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/underground/requesition) +"xLP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"xMw" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/hangar/beta) -"lIV" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"xNa" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/substation/smes) +"xND" = ( +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/engineering) +"xNZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/shuttle/elevator1/underground) -"lJQ" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/south) -"lXk" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/clearing/south) -"mog" = ( +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition) +"xOD" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hangar/beta) -"mwS" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/r_wall, -/area/ice_colony/underground/maintenance/south) -"mHc" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/excavation) +"xOU" = ( +/turf/open/floor/darkgreen2/east, +/area/ice_colony/underground/hallway/south_east) +"xOV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/alpha) +"xPJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/ice_colony/surface/hangar/beta) -"mXA" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"xQe" = ( +/obj/structure/surface/table/reinforced, +/obj/item/cell/high/empty, +/turf/open/floor/darkyellow2/southwest, +/area/ice_colony/surface/substation/smes) +"xQg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 }, -/area/shuttle/elevator1/underground) -"neZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" +/turf/open/floor/darkgreen2/east, +/area/ice_colony/surface/hydroponics/south) +"xRq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 10; - icon_state = "darkblue2" +/turf/open/floor/darkgreencorners2/west, +/area/ice_colony/surface/hydroponics/lobby) +"xRy" = ( +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shuttle/elevator3/ground) +"xRI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/darkgreen2/east, /area/ice_colony/surface/dorms) -"nup" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "darkpurple2" +"xSx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/northeast, +/area/ice_colony/surface/hangar/checkpoint) +"xSO" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control/office) +"xSQ" = ( +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/underground/engineering) +"xTm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/dark2, +/area/ice_colony/underground/requesition/lobby) +"xTT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/dark2, +/area/ice_colony/surface/dorms) +"xTZ" = ( +/turf/open/floor/darkpurple2/west, /area/ice_colony/underground/research/storage) -"oqw" = ( -/obj/docking_port/stationary/trijent_elevator{ - height = 5; - width = 8; - id = "Lower_Dorms"; - name = "Lower Dorms"; - airlock_exit = "elevator"; - elevator_network = "dorm"; - airlock_area = /area/shuttle/elevator2/underground +"xUQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark2, +/area/ice_colony/surface/command/control) +"xUW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/shuttle/elevator2/underground) -"osF" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/north) -"oHs" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/hangar/alpha) -"oHE" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/tcomms) -"oOd" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/clearing/pass) -"oZq" = ( -/obj/structure/machinery/alarm{ +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/east, +/area/ice_colony/surface/hangar/checkpoint) +"xUX" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -24 + icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"xVf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/ice_colony/surface/hangar/alpha) -"paK" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/hangar/beta) -"pjQ" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/mirror{ + pixel_x = 24 }, -/turf/open/floor/carpet, -/area/ice_colony/underground/crew/leisure) -"pyn" = ( -/turf/closed/wall, -/area/ice_colony/underground/hangar) -"qny" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"qpn" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"qwB" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"xVg" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light{ + dir = 1 }, -/area/ice_colony/surface/tcomms) -"qEB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/darkyellow2/north, +/area/ice_colony/underground/engineering/locker) +"xWm" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating/icefloor, -/area/ice_colony/surface/requesitions) -"qRy" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "Underground Hangar Lock"; - pixel_x = -24 +/turf/open/ice, +/area/ice_colony/exterior/surface/landing_pad_external) +"xWn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"rbS" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/underground/security) +"xWR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/surface/tcomms) -"rmR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"rxQ" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/northwest) -"rAm" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "dark2" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Engineering Locker Room" }, -/area/ice_colony/surface/research) -"rKn" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/item/paper/research_notes, -/turf/open/floor/wood, -/area/ice_colony/underground/command/pv1) -"rKz" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"xXc" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" + dir = 4 }, -/area/ice_colony/surface/hangar/alpha) -"rNn" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/white, +/area/ice_colony/underground/medical/lobby) +"xXr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/ice_colony/underground/requesition/sec_storage) -"rNB" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/surface/hangar/alpha) -"sto" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Hangar Landing Zone" +/turf/open/floor/dark2, +/area/ice_colony/underground/engineering) +"xYi" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/table/reinforced, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/bar/canteen) +"xYv" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/plating, -/area/ice_colony/exterior/surface/landing_pad) -"sKH" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkyellow2" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/ice_colony/surface/tcomms) -"sTg" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/northeast) -"sTY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" +/obj/structure/surface/table/reinforced, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/dark2, +/area/ice_colony/underground/command/center) +"xYL" = ( +/turf/open/floor/darkyellowcorners2/north, +/area/ice_colony/surface/substation/smes) +"xZF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/ice_colony/surface/hangar/beta) -"tbZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/turf/open/floor/dark2, +/area/ice_colony/underground/command/checkpoint) +"yaB" = ( +/obj{ + anchored = 1; + desc = "This doors looks like it has been made by aliens..."; + icon = 'icons/obj/structures/doors/hightechsecurity.dmi'; + icon_state = "door_open"; + name = "strange airlock" }, -/area/ice_colony/surface/hangar/alpha) -"tly" = ( +/turf/open/floor/icefloor/shuttle_floor7, +/area/ice_colony/exterior/underground/caves/dig) +"yaM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/darkgreen2/northwest, +/area/ice_colony/underground/hallway/south_east) +"ybq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_w) +"ybQ" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/darkbrown2/east, +/area/ice_colony/underground/crew/lavatory) +"ycd" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, +/turf/open/floor/darkbrown2/west, +/area/ice_colony/surface/hangar/beta) +"ycj" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/underground/storage) +"ydb" = ( +/turf/open/shuttle/can_surgery/red, /area/ice_colony/surface/hangar/alpha) -"tue" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "darkblue2" - }, -/area/ice_colony/surface/dorms) -"tBe" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"tDi" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"tEG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"tFy" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkblue2" - }, -/area/ice_colony/surface/dorms) -"tZS" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/west) -"ueV" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/hydroponics/south) -"uiF" = ( -/obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call/trijent{ - dockId = "Lower_Omicorn"; - shuttleId = "ice_classic_shuttle2" +"ydu" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark2, +/area/ice_colony/surface/engineering) +"yep" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/closed/wall/r_wall/unmeltable, -/area/ice_colony/underground/research) -"umI" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Colony Dormitories" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/lavatory) +"yeY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" +/turf/open/floor/dark2, +/area/ice_colony/underground/crew/bball) +"yfb" = ( +/turf/open/floor/darkgreen2/west, +/area/ice_colony/underground/crew/bball) +"yfe" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/ice_colony/surface/dorms) -"urm" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/plating/icefloor/warnplate, +/area/ice_colony/surface/requesitions) +"yfx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkred2/west, +/area/ice_colony/underground/security/interrogation) +"yfE" = ( +/turf/open/floor/darkyellow2, +/area/ice_colony/surface/engineering/tool) +"ygE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/ice_colony/exterior/surface/landing_pad) -"uuK" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"uAe" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "darkyellow2" +/turf/open/floor/whitered, +/area/ice_colony/surface/clinic/lobby) +"ygK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/ice_colony/surface/tcomms) -"uBE" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/valley/southwest) -"uKY" = ( -/turf/open/auto_turf/snow/layer4, -/area/ice_colony/exterior/surface/cliff) -"uPr" = ( -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" +/obj/structure/bed/chair{ + dir = 4 }, -/area/ice_colony/surface/hangar/beta) -"uUv" = ( -/obj/effect/alien/weeds/node, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"vcU" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/ice, -/area/ice_colony/exterior/underground/caves/open) -"vhS" = ( +/turf/open/shuttle/can_surgery/red, +/area/ice_colony/surface/hangar/alpha) +"yhm" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /turf/open/floor/plating/icefloor, /area/ice_colony/underground/hangar) -"vpe" = ( -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" +"yhr" = ( +/obj/structure/closet/crate, +/turf/open/floor/vault2/west, +/area/ice_colony/underground/requesition) +"yib" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shuttle/elevator4/underground) -"vtU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/dark2, +/area/ice_colony/underground/research) +"yie" = ( +/obj/structure/closet/radiation, +/turf/open/floor/darkyellow2/west, +/area/ice_colony/surface/research/field_gear) +"yif" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/ice_colony/surface/hangar/alpha) -"vQI" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/turf/open/floor/dark2, +/area/ice_colony/underground/hallway/south_east) +"yjg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/shuttle/elevator3/underground) -"waD" = ( +/turf/open/floor/freezerfloor, +/area/ice_colony/surface/dorms/restroom_e) +"yjv" = ( /obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/excavation) -"waN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/tcomms) -"wcI" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - icon_state = "dark2" - }, +/turf/open/floor/darkbrown2/west, /area/ice_colony/surface/hangar/alpha) -"wue" = ( +"yle" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, /turf/open/floor/wood, -/area/ice_colony/surface/command/control/pv1) -"wDj" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +/area/ice_colony/surface/command/crisis) +"ylq" = ( +/obj/structure/shuttle/diagonal{ + icon_state = "swall0" }, -/area/ice_colony/surface/tcomms) -"wTN" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood, -/area/ice_colony/surface/bar/bar) -"xkk" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/icefloor{ - icon = 'icons/turf/shuttle.dmi'; - icon_state = "floor7" +/obj/structure/shuttle/diagonal{ + icon_state = "heater" }, -/area/ice_colony/exterior/underground/caves/dig) -"xrT" = ( +/turf/open/floor/dark2, +/area/ice_colony/surface/hangar/beta) +"ylU" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 10; - icon_state = "darkyellow2" - }, -/area/ice_colony/surface/tcomms) -"xGL" = ( -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shuttle/elevator1/underground) -"xWm" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/ice, -/area/ice_colony/exterior/surface/landing_pad_external) -"xYW" = ( -/obj/docking_port/stationary/trijent_elevator{ - airlock_area = /area/shuttle/elevator3/underground; - airlock_exit = "elevator"; - elevator_network = "Omicorn"; - height = 5; - width = 8; - name = "Lower Omicorn"; - id = "Lower_Omicorn" - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shuttle/elevator3/underground) -"ygw" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/ice_colony/surface/tcomms) -"yhm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor, -/area/ice_colony/underground/hangar) -"yle" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/wood, -/area/ice_colony/surface/command/crisis) +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/darkyellow2/northwest, +/area/ice_colony/surface/engineering) (1,1,1) = {" aaa @@ -38370,16 +30240,16 @@ blc blc blc bDz -bEi -bEU -bFI +uXB +maG +joe bDz -bGY -bHV -bYb -bYc -bJL -bKE +gvX +xKH +nze +dzy +ixb +cQH bGX bmU bmU @@ -38652,16 +30522,16 @@ blc bCi blc bDz -bEj -bEV -bFJ +qKZ +ekG +weC bDz -bGZ -bHX -bHX -bJg -bHX -bYd +pMt +fdY +fdY +fuW +fdY +eUP bGX bmU bmU @@ -38934,16 +30804,16 @@ blc bls blc bDz -bEk -bEW -bFK +mny +onG +nGh bDz -bHa -bHX -bHX -bJh -bHX -bYd +iwT +fdY +fdY +rfn +fdY +eUP bGX bmT bmU @@ -39206,26 +31076,26 @@ bkJ blc blc byv -tDi -vQI -vQI -vQI -xYW +jYX +xdN +xdN +xdN +eBG byv bBC bls blc bDz -bEl -bEX -bFL +vqI +ike +sRl bDz -bHb -bHY -bHX -bJh -bJM -bKG +vDG +eLb +fdY +rfn +iUb +uLo bGX bnT bml @@ -39488,24 +31358,24 @@ bkJ blc blc byv -aJA +nKS byM byM byM -apu +vJw bBa bBf -bCj +wGq bBf bDz bDz -bEY +nxT bDz bDz bGX bGX -bHX -bJi +fdY +dDA bGX bGX bGX @@ -39770,27 +31640,27 @@ blc blc blc byv -aJA +nKS byM byM byM -apu -bBb -bBD -bCk -bBD -bBD -bBD -bCk -bFM -bXW -bFM -bFM -bBE -bCk -bBD -bBD -bLi +vJw +wGb +wZJ +olW +wZJ +wZJ +wZJ +olW +vDk +tyn +vDk +vDk +uyb +olW +wZJ +wZJ +pQA bBf aZF aZF @@ -39874,15 +31744,15 @@ aaI aaI aaI abD -adm +hKu abD adY abD -aeC +jTR abD adY abD -adm +hKu abD adY abD @@ -40052,27 +31922,27 @@ bxa blc blc byv -aJA +nKS byM byM byM -apu -bBc -bBE -bCk -bBE -bDA -bBE -bCk -bBE -bGy -bBE -bBE -bBE -bCk -bBE -bDA -bLj +vJw +vNf +uyb +olW +uyb +rUD +uyb +olW +uyb +yib +uyb +uyb +uyb +olW +uyb +rUD +lyf bBf aZF aZF @@ -40157,17 +32027,17 @@ aaI aaI acT acg -adE +eab adV -aek +hgV acg -adE +eab adV -aek +hgV acg -adE +eab adV -ahB +bjc aaJ aaJ aaI @@ -40334,27 +32204,27 @@ bls blc ble byv -aJA +nKS byM byM byM -apu -bBc -bBE -bCl -bCL -bDB -bEm -bEZ -bJN -bJN -bJN -bJN -bJN -bEZ -bJN -bKH -bLk +vJw +vNf +uyb +fGA +eCU +nSk +ddc +ePS +iCP +iCP +iCP +iCP +iCP +ePS +iCP +gZy +cQI bBf aZF aZF @@ -40439,17 +32309,17 @@ aaI aaI acT acg -adF -acG -acZ +krH +lnR +shv acg -adF -acG -acZ +krH +lnR +shv acg -adF -acG -ahC +krH +lnR +psI aaJ aaJ aaJ @@ -40611,32 +32481,32 @@ aZF aZF aZF bkJ -bwG +wYC bls blc ble byv -aJA +nKS byM byM byM -apu -bBd -bBF -bCm -iBu -bCM -bCk -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bCk -bLl +vJw +nLa +qcw +gsx +evT +nnu +olW +uyb +uyb +uyb +uyb +uyb +uyb +uyb +uyb +olW +ptj bBf aZF bmh @@ -40898,27 +32768,27 @@ bls blc blc byv -aJA +nKS byM byM byM -apu +vJw uiF -bBc -bBE -bCM -bCM -bEo -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bCk -bLl +vNf +uyb +nnu +nnu +mzn +uyb +uyb +uyb +uyb +uyb +uyb +uyb +uyb +olW +ptj bBf aZF bmQ @@ -40995,11 +32865,11 @@ aac aac aae abl -aby -abT -abT -abT -aco +myd +cav +cav +cav +gqK abl acU acg @@ -41180,27 +33050,27 @@ bls blc ble byv -aPj -apv -apv -apv -dxa +vTe +dlD +dlD +dlD +neD bBa -bBH -bCm -bCM -bCM -bCk -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bCk -bLk +fHo +gsx +nnu +nnu +olW +uyb +uyb +uyb +uyb +uyb +uyb +uyb +uyb +olW +cQI bBf aZF bmQ @@ -41277,13 +33147,13 @@ aac aac aae abl -abB +kjK abV abV abV -acq +dOW abl -acV +cji acg abE abE @@ -41468,21 +33338,21 @@ byv byv byv bBa -bIE -bBE -bCM -bCM -bEo -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bBE -bCk -bLm +mTJ +uyb +nnu +nnu +mzn +uyb +uyb +uyb +uyb +uyb +uyb +uyb +uyb +olW +kym bBf aZF bmQ @@ -41559,13 +33429,13 @@ aac aac aae abl -abB +kjK abV abV abV -acq -acF -acW +dOW +tKX +kAT acg abE abE @@ -41750,21 +33620,21 @@ blL bzT blL bBe -bJN -bJN -bJN -bJN -bEp -bBE -bBE -bBE -bHc -bBE -bBE -bBE -bBE -bCk -bLn +iCP +iCP +iCP +iCP +pSR +uyb +uyb +uyb +idV +uyb +uyb +uyb +uyb +olW +viY bBf aZF bmQ @@ -41841,13 +33711,13 @@ aac aac aae abl -abB +kjK abV abV abV -acq +dOW abE -acX +cbn acg abE adZ @@ -42032,21 +33902,21 @@ blc bls bAB bBf -bBd -bCq -bCq -bCq -bCk -bCq -bFO -bGz -bHd -bHZ -bBF -bBE -bBE -bCk -bLo +nLa +unx +unx +unx +olW +unx +hSW +iWp +rlY +fLM +qcw +uyb +uyb +olW +gsn bBf aZF bmQ @@ -42123,13 +33993,13 @@ aac aac aae abl -abB +kjK abV abV abV -acq +dOW abE -acY +hhs ado adH ack @@ -42318,17 +34188,17 @@ bBg bBg bBg bBg -bEq +sOV bBg bBg bBg bBg bBg -bBc -bBE -bBE -bCk -bLj +vNf +uyb +uyb +olW +lyf bBf aZF bmQ @@ -42405,13 +34275,13 @@ aac aac aae abl -abB +kjK abV abV abV -acq -acG -acZ +dOW +lnR +shv acg abE abE @@ -42596,21 +34466,21 @@ bkJ bls blc bBg -bBK -bFa -bFa -bFa -bEs -bFa -bFa -bFa -bHe +qwS +xTZ +xTZ +xTZ +tOD +xTZ +xTZ +xTZ +nhw bBg -bBd -bBE -bBE -bCk -bLp +nLa +uyb +uyb +olW +kRI bBf aZF bmQ @@ -42687,11 +34557,11 @@ aac aac aae abl -abB +kjK abV abV abV -acq +dOW abl ada acg @@ -42878,19 +34748,19 @@ bkJ bls blc bBg -bBL -bCO -bCO -bCO -bEs -bCO -bCO -bCO -bHf +nzp +oyL +oyL +oyL +tOD +oyL +oyL +oyL +utV bBg bIC -bBE -bJO +uyb +mrV bKI bBf bBf @@ -42969,11 +34839,11 @@ aac aac aae abl -abC -abX -abX -abX -acs +ugV +upg +upg +upg +nin abl acU acg @@ -43160,20 +35030,20 @@ bkJ bzU blL bBh -bBM -bBM -bBM -bBM -bEt -bBM -bFQ -bCO -bHg +xkJ +xkJ +xkJ +xkJ +tZD +xkJ +pJs +oyL +loj bBg -bID -bBE -bBE -bKJ +maD +uyb +uyb +kZJ bBf aZF aZF @@ -43442,20 +35312,20 @@ bkJ bls blc bBg -bBN -bCt -bCt -bCt -nup -nup -bFR -bFR -bHh +gnC +xJI +xJI +xJI +qPT +qPT +vFI +vFI +hMj bBg -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf aZF aZF @@ -43541,17 +35411,17 @@ ack ack ack adp -adI -aea -acW +ptZ +tik +kAT acg -adI -aea -acW +ptZ +tik +kAT acg -adI -aea -ahE +ptZ +tik +svJ aaJ aem afJ @@ -43734,10 +35604,10 @@ bBg bBg bBg bBg -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf aZF aZF @@ -43823,17 +35693,17 @@ abE abE abE acg -adJ +vcJ adV -ael +yfe acg -adJ +vcJ adX -ael +yfe acg -adJ +vcJ adV -ahB +bjc aem aem afJ @@ -44016,10 +35886,10 @@ bmm bml aZF bBf -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf bqk bnT @@ -44104,15 +35974,15 @@ abE abF abF abD -adm +hKu abD adY abD -adm +hKu abD adY abD -adm +hKu abD adY abD @@ -44232,29 +36102,29 @@ aZF aZF aZF bdb -bdF -ber -beV -bfj -bfj -bfj +xec +imX +uwP +lNV +lNV +lNV bdb -bgx -bfk -bgW -bgW -bhw -bfk -bhY -bij +jOq +dYT +jRJ +jRJ +vcB +dYT +cKn +ghZ biy -biQ -bjk -bjB -bjB -bjB -bjk -bkv +rxG +wKy +hTy +hTy +hTy +wKy +lUT biy blc bls @@ -44298,10 +36168,10 @@ bmT bmm bnT bBf -bBc -bBE -bBE -bKL +vNf +uyb +uyb +tWK bBf boT bmT @@ -44514,29 +36384,29 @@ aZF aZF aZF bdb -bdG -ber -ber -ber -bfO -bfj +nLb +imX +imX +imX +ghC +lNV bdb -bde -bdL -bgX -bdL -bdL -bdL -bdL -bgi +cvO +obd +iiG +obd +obd +obd +obd +wQr biy -biR -bjl -bjl -bjn -bjl -bjC -bkw +uBH +lYy +lYy +oDy +lYy +ksj +pYW biy blc bls @@ -44579,11 +36449,11 @@ bmU bmU bmU bmU -bIa -bBc -bBE -bBE -bKK +ckP +vNf +uyb +uyb +qjR bLq bmU bmU @@ -44796,29 +36666,29 @@ aZF aZF aZF bdb -bdH -ber -ber -ber -bfP -bge +bYz +imX +imX +imX +jwj +tsB bdb -bgy -bdL -bgY -bfm -bfo -bfo -bfn -bik -biz -biS -bjm -bjm -bjm -bjm -bjm -bkw +hxR +obd +sGQ +yhr +iIM +iIM +fQB +sAg +qCA +hmq +ebT +ebT +ebT +ebT +ebT +pYW biy bld bls @@ -44862,10 +36732,10 @@ bmU bmU bmU bIb -bBc -bBE -bJP -bKK +vNf +uyb +fio +qjR bIb bmU bmU @@ -45078,29 +36948,29 @@ bba bba bba bdc -bdI -bet -bet -ber -bfP -bge +lTl +vzn +vzn +imX +jwj +tsB bdb -bde -bdL -bgZ -bdL -bdL -bdL -bdL -bik -biz -biS -bjn -rNn -bjn -bjl -bjl -bjm +cvO +obd +pvX +obd +obd +obd +obd +sAg +qCA +hmq +oDy +pJU +oDy +lYy +lYy +ebT bkK blc bls @@ -45144,10 +37014,10 @@ bmU bmU bmU bIc -bBc -bJk -bBE -bKK +vNf +mGR +uyb +qjR bIb bmU bmU @@ -45354,35 +37224,35 @@ aZF aZF aZF bba -vpe -aPi -aPi -aPi -abz +qXh +cHZ +cHZ +cHZ +sgR bdc bdb bdb bdb bdb -bfR +kgN bdb bdb -bgz -bdL -bha -bfm -bfm -bfm -bhZ -bik -biz -biS -bjm -bjm -bjm -bjm -bjm -bkx +dkf +obd +uCT +yhr +yhr +yhr +iFf +sAg +qCA +hmq +ebT +ebT +ebT +ebT +ebT +oLk biy ble bls @@ -45426,10 +37296,10 @@ bmU bzR boB bBf -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf bmT bmU @@ -45636,35 +37506,35 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt +qGe bba -bdJ -beu -beW -bfk -bgZ -bgf -bgs -bdK -bdL -bgZ -bdL -bdL -bdL -bdL -bim +pzw +rrh +xLF +dYT +pvX +hAu +qRB +fsT +obd +pvX +obd +obd +obd +obd +ePg biy -biU -bjl -bjC -bjn -bjl -bjC -bkw +pvH +lYy +ksj +oDy +lYy +ksj +pYW biy ble bls @@ -45708,10 +37578,10 @@ boR bmk bmh bBf -bIE -bBE -bBE -bKK +mTJ +uyb +uyb +qjR bBf bml bmT @@ -45918,35 +37788,35 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt -bdd -bdK -bdL -bdL -bdL -bgZ -bdL -bdL -bdL -bdL -bgY -bfm -bfn -bfo -bfo -bgi +qGe +ihs +fsT +obd +obd +obd +pvX +obd +obd +obd +obd +sGQ +yhr +fQB +iIM +iIM +wQr biy -biV -bjp -bjD -bjD -bjD -bjp -bky +upv +fKc +kyV +kyV +kyV +fKc +fWN biy ble bls @@ -45990,10 +37860,10 @@ bmU bmh bmi bBf -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf bmm bml @@ -46200,27 +38070,27 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt -bde -bdL -bdL -bdL -bdL -bgZ -bdL -bdL -bdL -bdL -bgZ -bdL -bdL -bdL -bdL -bgi +qGe +cvO +obd +obd +obd +obd +pvX +obd +obd +obd +obd +pvX +obd +obd +obd +obd +wQr biy biy biy @@ -46272,10 +38142,10 @@ bnT bmi aZF bBf -bBc -bBE -bBE -bKK +vNf +uyb +uyb +qjR bBf aZF bmm @@ -46482,38 +38352,38 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt -bde -bdL -bdL -bdL -bdL -bgZ -bdL -bdL -bdL -bdL -bgZ -bdL -bdL -bdL -bdL -bgi +qGe +cvO +obd +obd +obd +obd +pvX +obd +obd +obd +obd +pvX +obd +obd +obd +obd +wQr biB -biW -bjq -bjE -bjM -bVo +iCv +tcJ +uUE +qJw +fyM bhn bkt bkt bkt -blt +uCi bkt bkt bkt @@ -46554,10 +38424,10 @@ aZF aZF aZF bBf -bID -bBE -bBE -bKJ +maD +uyb +uyb +kZJ bBf aZF aZF @@ -46764,48 +38634,48 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt -bdf -bdM -bev -beX -beX -bfT -beX -beX -beX -beX -bhb -beX -beX -beX -beX -beX -biC -biX -biX -biX -bjN -bjY +qGe +ixO +iOH +eLo +qcE +qcE +gsl +qcE +qcE +qcE +qcE +uGN +qcE +qcE +qcE +qcE +qcE +kAp +jAN +jAN +jAN +hCS +vEM bhn bkt -agL -blg -blu -blg -bmn -blg -blg -bnX -blg -blg -bmn -bpB -bql +gPs +wak +coy +wak +fXe +wak +wak +qkT +wak +wak +fXe +iRe +rKc bkt bkt bkt @@ -46837,8 +38707,8 @@ bkt bkt bBf bIC -bBE -bJO +uyb +mrV bKI bBf bkt @@ -47046,86 +38916,86 @@ aZF aZF aZF bba -aJr +kqX bbn bbn bbn -aJt +qGe bba -bdN -bfn -bdL -bfo -bfV -bhZ -bdL -bdL -bdL -bhc -bhm -beA -beA -beA -bdL -bdL -bjF -bjF -bjF -bjP -bjZ +mIo +fQB +obd +iIM +oFm +iFf +obd +obd +obd +qDk +dmM +xBR +xBR +xBR +obd +obd +xfl +xfl +xfl +mLW +jeW bhy -bkz -bkM -bkr -blu -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bqm -bkq -bkq -bkq -bkq -bmE -bkq -bkq -bkq -bwj -bkq -bkq -bkq -bkq -bmE -bkq -bkq -bkq -blu -bAD -bAD -bAD -bAD -bAD -bDC -bAD -bAD -bAD -bAD -bAD -bDC -bIF -bkr -bkr -bKM -bDC -bLZ -bMx -bMZ +wvA +ilB +fMl +coy +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +cow +xBC +xBC +xBC +xBC +vHH +xBC +xBC +xBC +hfC +xBC +xBC +xBC +xBC +vHH +xBC +xBC +xBC +coy +oRb +oRb +oRb +oRb +oRb +hru +oRb +oRb +oRb +oRb +oRb +hru +mZe +fMl +fMl +mKH +hru +wJn +llJ +xpO bkt aZF aZF @@ -47328,86 +39198,86 @@ aZF aZF aZF bba -bBG -aoo -aoo -aoo -jjD +pTE +qMm +qMm +qMm +lPM bba -bde -bfo -bdL -bfm -bfV -bfn -bdL -bgA -bgM -bhd +cvO +iIM +obd +yhr +oFm +fQB +obd +aFx +hIS +jwL bhn bhy bhy bhy bhy bhn -biZ -bjs -bjF -bjP -bjF -bkn -bkr -bkr -bkr -blu -bkr -bmo -bkr -bkr -bkr -bkr -bkr -bpq -boF -bqn -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -blu -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -blu -bkr -bkr -bkr -bNa +uVg +wZg +xfl +mLW +xfl +pLY +fMl +fMl +fMl +coy +fMl +kHp +fMl +fMl +fMl +fMl +fMl +wTB +cHU +qCF +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +coy +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +coy +fMl +fMl +fMl +dQw bkt aZF aZF @@ -47616,13 +39486,13 @@ bba bba bba bba -bdO -bfm -bdL -bfm -bfV -bfo -bdL +fNH +yhr +obd +yhr +oFm +iIM +obd bgB bgN bhe @@ -47633,63 +39503,63 @@ bhz bhz bho bhz -bjt -bjG -bjQ -bka -bka -bkA -bkA -bkA -blv -blM -blM -bkA -bkA -bkA -bkA -bkA -bpr -bpC -bqo -bkA -blM -bkA -blM -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -blM -blv -bkA -bBi -bkA -bkA -bkA -bkA -bkA -bkA -bkA -bkA -blM -bkA -bkA -bkA -bkA -bKN -bkA -bMa -bkr -bNa +xTm +gZl +eqX +rZe +rZe +lxR +lxR +lxR +uNP +ent +ent +lxR +lxR +lxR +lxR +lxR +lpn +gcf +vpB +lxR +ent +lxR +ent +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +ent +uNP +lxR +qpQ +lxR +lxR +lxR +lxR +lxR +lxR +lxR +lxR +ent +lxR +lxR +lxR +lxR +mAi +lxR +cAa +fMl +dQw bkt aZF aZF @@ -47898,80 +39768,80 @@ aZF aZF aZF bdg -bdP -bfm -bdL -bfn -bfV -bfm -bdL -bgC -bgC -bhf +pie +yhr +obd +fQB +oFm +yhr +obd +hZk +hZk +lTZ bhn -bhA -bhS -bhS -biq +upo +svf +svf +tja biD -bja -bhS -bjF -bjR -bkb +uDd +svf +xfl +dYk +uaD bhy -bkB -bkN -bkr -bkr -blu -bmp -bkr -bkr -bkr -bkr -bkr -bkr -bpD -bkr -bkr -bmp -bkr -blu -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bmp -bkr -bkr -blu -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bmp -bkr -bkr -bkr -bkr -bkr -bkr -bMb -bkr -bNa +qii +end +fMl +fMl +coy +iXg +fMl +fMl +fMl +fMl +fMl +fMl +daT +fMl +fMl +iXg +fMl +coy +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +iXg +fMl +fMl +coy +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +iXg +fMl +fMl +fMl +fMl +fMl +fMl +vou +fMl +dQw bkt aZF aZF @@ -48180,80 +40050,80 @@ aZF aZF aZF bdg -bdQ -bfo -bdL -bfo -bfW -bfo -bdL -bdL -bdL -bhg -bhp -bhB -bhT -bia -bir -biE -bia -bia -bia -bjS -bkc +crv +iIM +obd +iIM +epR +iIM +obd +obd +obd +xNZ +fqw +hBb +okc +lvI +twp +wRj +lvI +lvI +lvI +eqF +exB bhn bkt -bkO -bkG -bks -blu -bkr -bkG -bkG -bkG -bkG -bkN -bkr -bpD -bqp -bkG -bkG -bkG -blu -bkr -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -bkG -blu -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bBO -bLr -bMb -bkr -bNa +xeZ +mbE +gBl +coy +fMl +mbE +mbE +mbE +mbE +end +fMl +daT +sxC +mbE +mbE +mbE +coy +fMl +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +mbE +coy +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +mGb +gor +vou +fMl +dQw bkt aZF bmh @@ -48462,47 +40332,47 @@ aZF aZF aZF bdg -bdR -beA -bdM -bdL -bdL -bgh -beA -bgD -bgO -bhh +fKf +xBR +iOH +obd +obd +xBn +xBR +xFj +wfV +iaI bhn -bhC -bSp -bSr -bis +pvB +uqp +iLJ +oxs bhn -bjb -bjw -bjH -bjT -bkd +ihU +wNb +umo +jpc +fpC bhn bkC bkP bkP bkC -blO -bmr +oIS +bYV bkC bkP bkP bkC -boV -bkr -bpD -bqq +hCE +fMl +daT +jMD bqT bqU bqU -bsU -btC +nez +pgt bqU bqU bqT @@ -48533,8 +40403,8 @@ bIe bHi bHi bpa -bMb -bMy +vou +sXf bpa bkt aZF @@ -48746,10 +40616,10 @@ aZF bdg bdg bdg -bde -bdL -bdL -bgi +cvO +obd +obd +wQr bdg bdg bdg @@ -48767,57 +40637,57 @@ bhn bhn bhn bkC -bkQ -bkR -blx -blO -bkR -bmW -bkR -bkQ +sWy +hQB +dWY +oIS +hQB +gHL +hQB +sWy bkP -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqU -brw -bsh -bsU -bsi -buq -bvd -bvL -bvd -bvd -bxg +dwi +qLZ +nez +oZM +wSO +qLp +tPQ +qLp +qLp +tgb bqX -byd -byw +hku +uft byP -bze -bzw -bzX +uOH +kKh +rNF byP buL bBP bCu -bCQ -bDD -bEv -bFb -bXU +lzn +nVB +dhj +llm +jAF bCu -bHj -bIf -bIG -bIG -bJQ +reA +wCC +ycj +ycj +igF bHi -bLt -bMc -bpu -bNb +vBt +vSN +xIY +pUj boJ aZF bmQ @@ -48941,8 +40811,8 @@ ahA ahA alL asn -auZ -avB +djW +xvh asn alL ahA @@ -49028,10 +40898,10 @@ aZF aZF aZF bdg -bde -bdL -bdL -bgi +cvO +obd +obd +wQr bdg bkk bkl @@ -49049,57 +40919,57 @@ bgH bke bgH bkC -bkR -bll -bly -blP -bly -bll -bly -bkR +hQB +oWQ +tuS +nFw +tuS +oWQ +tuS +hQB bkP -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqU -brx -bsi -bsU -bsi -bsi -bve -bsi -bsi -bsi -bxh +hhf +oZM +nez +oZM +oZM +jKq +oZM +oZM +oZM +nHp bqX -bye -byx +gJw +dmy byP -bzf -bzx -bzY +mlr +uKq +oZX byP buL bys bCu -bCR -bDE -bDE -bDE -bFT +ltv +nNS +nNS +nNS +khm bCu -bHk -bIg -bIg -bIg -bJU +eRO +uTR +uTR +uTR +voi bIe -bLu -bMc -bpu -bNb +syu +vSN +xIY +pUj boJ aZF bmm @@ -49223,8 +41093,8 @@ ahA ahA ahA atL -auZ -avC +djW +hBq atL ahA ahA @@ -49310,10 +41180,10 @@ aZF aZF aZF bdg -bde -bdL -bdL -bgi +cvO +obd +obd +wQr bgt bgH bgH @@ -49331,57 +41201,57 @@ bgH bgH bgH bkC -bkR -blm -blz -blQ -blz -blm -blz -bkR +hQB +gAT +sGR +qWm +sGR +gAT +sGR +hQB bkC -boW -bkr -bpG -bqr -bqV -bry -bsj -bsV -bsj -bsj -bsj -bsj -bsj -bsj -bsj -bxL -byf -byx +tQu +fMl +dNE +qlb +oaF +mie +lUX +sYn +lUX +lUX +lUX +lUX +lUX +lUX +lUX +gDA +wIn +dmy byP -bzg -bzy -bzY +lCu +gAB +oZX byP buL btm bCu -bCS -bDE -bEw -bDE -bFU +mPm +nNS +mNk +nNS +ixP bCu -bHl -bIg -bIg -bIg -bJU +tHS +uTR +uTR +uTR +voi bIe -bLu -bMc -bpu -bNb +syu +vSN +xIY +pUj boJ aZF aZF @@ -49505,8 +41375,8 @@ ahA ahA ahA atL -auZ -avD +djW +kio atL ahA ahA @@ -49550,18 +41420,18 @@ apS aaQ aLK aLK -aNP -aOk -aPd -aQb -aQQ +xrZ +iDr +yie +xUX +vEE aOm -aSx -aTc -aTH -aTZ -aTZ -aUQ +uvy +qCH +mCI +jeJ +jeJ +liU aSw aSw acm @@ -49592,10 +41462,10 @@ aZF aZF aZF bdg -bde -bdL -bdL -bgi +cvO +obd +obd +wQr bdg bgH bgQ @@ -49613,57 +41483,57 @@ bhj bgH bgH bkC -bkR -bll -bly -blR -bmv -bmX -bnp -bkR +hQB +oWQ +tuS +iVb +sBN +jOk +ems +hQB bkP -bnz -bkr -bpH -boF -bqW -brz -bqW -bsW -bsi -bsi -bsi -bsi -bsi -bsi -bxj +clr +fMl +cyq +cHU +hJz +nfr +hJz +uCc +oZM +oZM +oZM +oZM +oZM +oZM +qyA bqX -byg -byy +iSB +jHK byP -bXQ -bzz -bzZ +fwT +pVg +liB byP buL btm bCu -bCT -bDE -bEx -bDE -bFV +mKa +nNS +uPw +nNS +kkc bCu -bHm -bIg -bIH -bIg -bJU +cXV +uTR +lDN +uTR +voi bIe -bLu -bMc -bpu -bNb +syu +vSN +xIY +pUj boJ aZF aZF @@ -49787,8 +41657,8 @@ ahA ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -49831,20 +41701,20 @@ aba aba aaZ aLK -aMZ -aNb -aNc -aNc -aQc -aQR +sUu +fjZ +mvK +mvK +qRD +iyC aOm -aSy -aTd -aTI -aTd -aTd -aUR -aUQ +xDR +gSv +smq +gSv +gSv +leu +liU aSw acm aac @@ -49874,10 +41744,10 @@ aZF aZF aZF bdg -beZ -bdL -bdL -bgj +sdV +obd +obd +prk bdg bgH bgH @@ -49895,57 +41765,57 @@ bhj bgH bgH bkC -bkR -blm -blz -blQ -blz -blm -bnq -bkR +hQB +gAT +sGR +qWm +sGR +gAT +pfO +hQB bkP -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqU -brA -bsi -bsX -btE -bur -bur -bvM -bur -bvM -btH +kgG +oZM +mjZ +dGv +qCb +qCb +mjL +qCb +mjL +uqe bqU -byg -byx +iSB +dmy byP -bzi -bzz -bzZ +nPM +pVg +liB byP buL btm bCu -bCU -bDE -bEy -bDE -bFW +eTo +nNS +sEF +nNS +luf bCu -bHm -bIg -bII -bIg -bIg -bKO -bpu -bMc -bpu -bNb +cXV +uTR +gFs +uTR +uTR +pMV +xIY +vSN +xIY +pUj boJ aZF aZF @@ -50069,8 +41939,8 @@ amB ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -50113,20 +41983,20 @@ abb aaC aaC aLK -aNa -aNc -aNc -aNc -aQc -aQR +kon +mvK +mvK +mvK +qRD +iyC aOm -aSz -aTd -aTJ -aUa -aUa -aUa -aVh +dHO +gSv +eYs +szZ +szZ +szZ +sCQ aSw acj acD @@ -50156,10 +42026,10 @@ aZF aZF aZF bdg -bde -bdL -bfX -bgi +cvO +obd +pCk +wQr bdg bgH bgH @@ -50177,57 +42047,57 @@ bhj bgH bgH bkC -bkR -bll -bly -blS -bly -bll -bnr -bkR +hQB +oWQ +tuS +jyk +tuS +oWQ +kPj +hQB bkP -bnz -bpt -bpI -bqq +clr +wRn +iVm +jMD bqU -brB -bsi -bsX -btF -bus -bvf -bvN -bXO -bvN -bxk +xfp +oZM +mjZ +ufa +oxl +xfd +cqp +icU +cqp +xjA bqU -byi -bvj -byQ -bzj -bzA -bAa +esI +hiL +lnp +tYq +vbl +efG byP buL btm bCu -bCV -bDE -bEz -bFc -bFc -bGA -bHn -bHn -bIJ -bHn -bJT +rkF +nNS +hlm +iNo +iNo +pHK +hQH +hQH +okR +hQH +fYI bKP -bLw -bMd -bMz -bNb +euE +hUR +mRB +pUj boJ aZF aZF @@ -50351,8 +42221,8 @@ tZS ahA ahA asn -ava -avE +tNL +caa asn ahA ahA @@ -50395,20 +42265,20 @@ aaR abb aLK aLK -aNa -aNQ -aOl -aOl -aQc -bGk +kon +nos +uxd +uxd +qRD +eCQ aOm -bGU -aTe -aTK -aUb -aUb -aUS -aVi +aPQ +qal +odV +nBD +nBD +xIC +lEO aSw aSw acm @@ -50438,12 +42308,12 @@ aZF aZF aZF bdg -bde -bdL -bdL -bgi +cvO +obd +obd +wQr bdg -bgG +rhY bgH bhk bgQ @@ -50459,57 +42329,57 @@ bhk bgH bgH bkC -bkR -bln -blA -bln -blA -bln -bns -bkR +hQB +pwf +eBZ +pwf +eBZ +pwf +jMW +hQB bkC -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqT -brC -bsk -bsY -btF -bXL -bvg -bvO -bvg -bvO -bxl +dlg +ieq +uIS +ufa +leM +cuh +uFT +cuh +uFT +xtn bqU -byg -byx +iSB +dmy byP -bzk -bzz -bAb +ijD +pVg +kZB byP buL btm bCu -bCW -bDE -bDE -bDE -bFW +dlG +nNS +nNS +nNS +luf bCu -bHo -bIi -bIK -bIK -bIK -bKQ -bEL -bMe -bTK -bNb +fvy +pdQ +tTp +tTp +tTp +uvx +oXx +vvo +iXA +pUj boJ aZF aZF @@ -50633,8 +42503,8 @@ tZS ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -50676,22 +42546,22 @@ uBE aJH aaQ aLK -aMv -aNb -aNR +fLq +fjZ +qbO aOm aOm -aQd +oeU aOm aOm aSB aSB -aTL +tSl aSB aSB -aUT -aVj -aVL +pLM +rkL +xFK aSw acn aaC @@ -50720,10 +42590,10 @@ pyn aZF aZF beB -bfa -bfp -bfp -bgk +ihV +oVo +oVo +gvf beB bgH bgH @@ -50741,57 +42611,57 @@ bhj bgH bgH bkD -bkR -bkR +hQB +hQB blB blT bmx blB -blO -bnY +oIS +nlS bkP -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqU -brB -bsi -bsX -btG -buu -bvh -bvg -bwl -bvg -bxm +xfp +oZM +mjZ +psy +iOB +uAo +cuh +xXc +cuh +aCV bqU -byg -byx +iSB +dmy byP -bzl -bzz -bAb +mIA +pVg +kZB byP buL btm bCu -bCX -bDE -bDE -bDE -bFX +jSx +nNS +nNS +nNS +bhX bCu -bHp -bIj -bIg -bIg -bJU +qpx +vST +uTR +uTR +voi bIe -bLu -buW -bMA -bpu +syu +kjk +nrW +xIY bNt bNt bNt @@ -50915,8 +42785,8 @@ apg ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -50958,22 +42828,22 @@ uBE aJK aaQ aLK -aMw -aNc -aNR +sXX +mvK +qbO aOn -aPe -aQe -aQT -aRJ -aSC -aQj -aTM -aUc +dRY +fbD +tOL +fkV +sJe +pdB +pfy +mJT aUs -aUU -aVk -aVM +vbU +tPY +nsb aSw aaC aaC @@ -51023,63 +42893,63 @@ bhj bgH bgH bkC -bkR -bkR +hQB +hQB blC blU -bmy +wGj bmY -blO -bnY +oIS +nlS bkP -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqU -brB -bsi -bsX -btF -buv -bvg -bvg -bwm -bvg -bxn +xfp +oZM +mjZ +ufa +ecJ +cuh +cuh +tcx +cuh +sOh bqU -byg -byx +iSB +dmy byP -bzm -bzz -bAc +oCy +pVg +ieu byP buL btm bCu -bCY -bDE -bEw -bDE -bXV +mih +nNS +mNk +nNS +wId bCu -bHq -bIj -bIg -bIg -bJU +wbj +vST +uTR +uTR +voi bIe -bLu -buW -bMA -bNc +syu +kjk +nrW +qKx bNt -bNT -bOD -bPb -bPK -bQl +fXK +pQa +kGE +jJt +ktL bQS bNt bup @@ -51197,8 +43067,8 @@ aph tZS ahA asn -auZ -avF +djW +vzU asn ahA ahA @@ -51240,22 +43110,22 @@ asi asi abc aLK -bAX -aNc -aNR +tXL +mvK +qbO aOn -aPf -aQf -bGx -aRK -aSD -aTf -aTN -aUd +mgS +jvp +dqC +ehU +dTt +fDt +jNY +fhF aUs -aUV -aVl -aVN +eij +qRK +nLM aSw aaC aaC @@ -51311,57 +43181,57 @@ bkE bkE bkE bkE -bnt +cvw bkE bkE -boX -bkr -bpD -bqq +rpi +fMl +daT +jMD bqX -brD -bsi -bsX -btH -bXM -bvi -bvP -bwm -bvi -bxo +rLv +oZM +mjZ +uqe +ccA +dPR +pkP +tcx +dPR +roo bqX -byk -byx +rFn +dmy byP -bzn -bzB -bAd +nga +lbg +xiH bAE bBj btm bCu -bCZ -bDE -bDE -bDE -bFZ +mdW +nNS +nNS +nNS +eYX bCu -bHr -bIj -bIg -bIg -bJU +dcv +vST +uTR +uTR +voi bIe -bLu -buW -bMA -bNc +syu +kjk +nrW +qKx bNt -bNU -bOE -bPc -bPL -bQm +uQl +dun +cjC +lDd +iaN bQS bNt bml @@ -51479,8 +43349,8 @@ tZS ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -51528,12 +43398,12 @@ aLL aLL aLM aLM -aQV -aRL -aSE -aQf -aQf -aUe +wCm +wCx +dki +jvp +jvp +rXY aOo aUW aUW @@ -51572,11 +43442,11 @@ aZW aZW aZG aZG -bgR +uBo aZG aZG aZG -bgR +uBo aZG aZG aZG @@ -51587,63 +43457,63 @@ aZG bgH bgH bkE -bkS -bkS -bkS -blV -bkS -bmZ -bnu -bnZ +tBo +tBo +tBo +smu +tBo +jDn +jyK +tfQ bkE -bnz -bkr -bpD -bqt +clr +fMl +daT +nQI bqX bqX -bsi -bsZ +oZM +kNz bqU bqU bqU bqU -bwn +pEs bqU bqX bqX -byl -byx +cEX +dmy byP -bzo -bzC -bAe +hzs +qDX +uta byP bBk btm bCu -bDa -bDG -bEA -bFd -bGa +qMy +goh +klb +qIZ +nBL bCu -bHs -bIk -bIg -bJo -bJV +kVG +wyU +uTR +fgc +cmj bHi -bLt -buW -bMA -bNc +vBt +kjk +nrW +qKx bNt -bNV -bOF -bPd -bPM -bQn +vsv +sJk +oxw +cTJ +mVd bQT bNt bmm @@ -51761,8 +43631,8 @@ tZS ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -51804,24 +43674,24 @@ asi asi asi aLL -aMy -aNd -aNd -aNd -aPg +hpg +cfA +cfA +cfA +kYw aLM -aQW -aRM -aSF -aTg -aTg -aUf -aUt +lKO +vOP +uaE +xqr +xqr +gNq +kiz aUW -aVm -aVO -aWs -aWS +vNz +eog +fSV +gJL aUZ abc aJy @@ -51835,30 +43705,30 @@ aab aZG aZU aZW -bao -baJ -baJ -baJ -hRN -baJ -baJ -baJ -bay -baJ -baJ -baJ -bay -baJ -baJ -baJ -baJ -bay -baJ -baJ -baJ -baJ -bhE -bhV +onI +gBV +gBV +gBV +jWA +gBV +gBV +gBV +mDd +gBV +gBV +gBV +mDd +gBV +gBV +gBV +gBV +mDd +gBV +gBV +gBV +gBV +gig +rgk aZW aZW beB @@ -51869,33 +43739,33 @@ aZG bgH bgH bkF -bkT -bkT -bkT -bkT -bkT -bna -bnu -bXD +dnj +dnj +dnj +dnj +dnj +sjF +jyK +uLT bkE -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqY -brE -bsl -bta -btI -btI -btI -btI -bwo -btI -bxp -btI -bym -byx +eOJ +tBu +uNC +rkc +rkc +rkc +rkc +ceW +rkc +spk +rkc +nXs +dmy byP byP byP @@ -51916,16 +43786,16 @@ bIL bHi bHi bHi -bLy -buW -bMA -bNc +fuA +kjk +nrW +qKx bNt -bNW -bOF -bPd -bPM -bQo +mTB +sJk +oxw +cTJ +urM bQU bNt aZF @@ -52043,8 +43913,8 @@ ahA ahA ahA atL -auZ -avE +djW +caa atL ahA ahA @@ -52086,24 +43956,24 @@ asi asi asi aLL -aMB +dtp aNf aNf aNf -aPh +cTe aLM -aQX -aRN -aSG -aTh -aPl -aPl -aUu +mXu +sSE +ciE +kGN +xFT +xFT +kXt aUX -eSN -aVP -aWt -aWT +ouA +xwY +gPg +oyy aUZ asi uBE @@ -52117,30 +43987,30 @@ aab aZG rmR aZW -bap +hwF aZW baK baO -bbb -bbo +krd +cLy baK baO bcc bcx bdh -bdS -beC +dDu +jBp bcx baK baO bcc bcx -bgJ -bgS +tuR +iiI bcc bcx aZW -bht +kCa aZW aZW bif @@ -52151,33 +44021,33 @@ aZG bgH bgH bkE -bkU -bkT -blD -blW -bmz -bnb -bnv -bob +wvf +dnj +usr +iRk +iny +pgV +xbR +rAP bkE -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqY -brF -bsm -btb -btJ -bux -bvj -bvj -bwp -bvj -bvj -bvj -byn -byx +uDa +toL +kWg +iwc +bCF +hiL +hiL +ojO +hiL +hiL +hiL +dfj +dmy byB byp byp @@ -52198,16 +44068,16 @@ btm btm bDN bkt -bLu -bMf -bFB -bqC -bNu -bNX -bOG -bPe -bPN -bQp +syu +yif +sOg +gkz +lOk +ufS +cFI +jBF +pKv +qRl bQV bNt bOk @@ -52325,8 +44195,8 @@ ajS ahA ahA atL -auZ -avE +djW +caa atL ahA tZS @@ -52368,24 +44238,24 @@ aJN asi asi aLL -aMB +dtp aNf aNf aNf -aPh -aQg -aQY -aRO -aQh -aTi -aPl -aPl -aUu +cTe +bWo +fAG +nsq +rct +vwq +xFT +xFT +kXt aUX -bJf -aVP -aWt -aWU +eKT +xwY +gPg +mOj aUZ asi asi @@ -52399,67 +44269,67 @@ aab aZG aZW aZW -bap +hwF baz -bao -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -beD -baJ -baJ -baJ -baJ -baJ -baJ -baJ -baJ -bhV +onI +gBV +gBV +gBV +gBV +gBV +gBV +gBV +gBV +gBV +cnO +gBV +gBV +gBV +gBV +gBV +gBV +gBV +gBV +rgk bhF -bht +kCa aZW aZW big aZW aZW aZW -bjz +kgX bgH bgH bkE -bkT -bkT -bkT -bkT -bkT -bna -bnu -bXE +dnj +dnj +dnj +dnj +dnj +sjF +jyK +krA bkE -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqY -brG -bsn -bsn -bsn -bta -bvk -bsn -bsn -bsn -bxq -bxq -bxq -byA +qPy +ngw +ngw +ngw +uNC +qri +ngw +ngw +ngw +wpZ +wpZ +wpZ +fOC byB byp byV @@ -52480,16 +44350,16 @@ bsz bsz bsz brL -bME -bMg -bpu -bNc +cXi +vij +xIY +qKx bNt -bNY -bOH -bPd -bPM -bQp +onc +qoD +oxw +cTJ +qRl bQU bNt bRJ @@ -52607,8 +44477,8 @@ ahA ahA alL asn -auZ -avG +djW +wHB asn alL ahA @@ -52650,24 +44520,24 @@ aaC uBE asi aLL -aMB +dtp aNf aNf aNf -aPh -aQh -aQY -aRO -aQh -aTj -aTO -aPl -aUu +cTe +rct +fAG +nsq +rct +mOW +gmF +xFT +kXt aUX -aVp -aVP -aWt -aWV +fZW +xwY +gPg +iuH aUZ asi ayj @@ -52681,9 +44551,9 @@ aab aZG aZV aZW -bap +hwF baA -bap +hwF aZW bbc aZW @@ -52702,9 +44572,9 @@ aZW bcy bbc aZW -bht +kCa bhG -bht +kCa aZW aZW bif @@ -52715,25 +44585,25 @@ aZG bgH bgH bkE -bkS -bkS -bkS -bkS -bkS -bna -bnu -bnZ +tBo +tBo +tBo +tBo +tBo +sjF +jyK +tfQ bkE -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqZ bqZ bqZ bqZ bqZ -buz +dHd bqZ bqZ bqZ @@ -52762,16 +44632,16 @@ bGB bGB bGB bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNt -bNZ -bOH -bPd -bPM -bQr +nBm +qoD +oxw +cTJ +nkJ bQW bNt bPg @@ -52860,7 +44730,7 @@ agd agu ahG aif -ajl +cEo aif ahG aaI @@ -52869,7 +44739,7 @@ aaI aaI ahG aif -ajl +cEo aif alL ahA @@ -52878,7 +44748,7 @@ tZS ahA alL aif -ajl +cEo aif alL ahA @@ -52888,10 +44758,10 @@ asm asm asn asn -auC -asO -avH -awi +xdh +qVJ +xRq +axX asn asn asm @@ -52901,7 +44771,7 @@ ahA ahA alL ayp -aAr +gQt ayp alL ahA @@ -52910,7 +44780,7 @@ ahA ahA alL ayp -aAr +gQt ayp alL ahA @@ -52919,7 +44789,7 @@ ahA ahA alL ayp -aAr +gQt ayp alL ahA @@ -52932,24 +44802,24 @@ aar uBE uBE aLM -aMB +dtp aNf aNf aNf -aPh -aQi -aQZ -aRP -aQi -aQi -aTO -aPl -aUu +cTe +bsD +fhI +lYL +bsD +bsD +gmF +xFT +kXt aUW -aVp -aVP -aWt -aWW +fZW +xwY +gPg +hIk aUZ uBE asi @@ -52963,9 +44833,9 @@ aab aZG aZW aZW -bap -baB -bap +hwF +nAC +hwF aZW aZW aZW @@ -52984,44 +44854,44 @@ aZW aZW aZW aZW -bht -bhH -bht +kCa +tGN +kCa aZW bjf beB -biv -biv -biv +qPi +qPi +qPi aZG bgH bgH bkE -bkT -bkT -bkT -bkT -bkT -bna -bnw -bmz -boE -bqr -bqr -bpI -bqq +dnj +dnj +dnj +dnj +dnj +sjF +eSP +iny +cNr +qlb +qlb +iVm +jMD bqZ -brH -bso -btc -btK -buA -bvl -bvQ -bwq -bvQ -bxr -bxM +utt +pnF +fBu +iWZ +pNe +itm +cXU +mfM +cXU +dKr +eBJ bqZ bys byR @@ -53034,27 +44904,27 @@ byp bCv btm bzp -bEB -bFe -bGb +sDw +dlz +xmZ bGB -bHt -bIl -bIM -bJp -bJW +pOp +kuB +nXN +dPo +lAp bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNt -bNU -bOH -bPd -bPM -bQs -bQX +uQl +qoD +oxw +cTJ +cqD +gBt bNt bRK bOj @@ -53142,7 +45012,7 @@ aem afK aaJ ahH -ajm +igS ahH aaI aaI @@ -53151,7 +45021,7 @@ aaI rxQ aaI ahH -ajm +igS ahH ahA ahA @@ -53160,30 +45030,30 @@ ahA tZS ahA ahH -ajm +igS ahH aaI aaI ahA asm -asM -ath -ath -aum -asO -ati -avI -awj -awB -ath -ath -axh +kuZ +kQs +kQs +hdS +qVJ +cmL +tAw +oIl +ppH +kQs +kQs +sQY asm ahA ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53192,7 +45062,7 @@ ahA ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53201,7 +45071,7 @@ ahA ahA ahA ayW -aAs +xDi ayW tZS ahA @@ -53214,24 +45084,24 @@ aae arM asi aLM -aMB +dtp aNf aNf aNf -aPh -aQi -aRa -aRQ -aSH -aTk -ezT -aUg -aUv -aUY -aVq -aVq -aWu -aWX +cTe +bsD +lmF +pRP +uML +qHT +jaX +bYf +pZi +iem +emY +emY +gtn +tLw aUZ uBE asi @@ -53245,9 +45115,9 @@ aab aZG aZW aZW -bap -baC -bap +hwF +pLb +hwF aZW aZW aZW @@ -53266,44 +45136,44 @@ aZW aZW aZW aZW -bht -bhI -bht +kCa +oJE +kCa aZW aZW beB -biw -biw -biw +hCQ +hCQ +hCQ aZG bgH bgH bkE -bkS -bkS -bkS -bkS -bkS -bna -bnx -boe +tBo +tBo +tBo +tBo +tBo +sjF +fNB +jlp bkE -boW -bkr -bpD -bqq +tQu +fMl +daT +jMD bqZ -brI -bsp -btd -btL -buB -bvm -bvR -btd -bvR -btd -bxN +eXL +lDO +wFg +qTW +kfT +mHq +xHv +wFg +xHv +wFg +xll bqZ bys buL @@ -53316,27 +45186,27 @@ byp bCw bAk bzq -bzH -bFf -bAg -bGC -bGF -bGF -bGF -bJq -bJX +fAx +xPJ +kZG +hkf +pwl +pwl +pwl +pXD +daf bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNt -bNU -bOI -bPe -bPe -bPe -bPe +uQl +lYT +jBF +jBF +jBF +jBF bRq bRL bPg @@ -53424,7 +45294,7 @@ aem afJ aey ahH -ajm +igS ahH rxQ aaI @@ -53433,7 +45303,7 @@ aaI aaI rxQ ahH -ajm +igS ahH tZS ahA @@ -53442,30 +45312,30 @@ ahA tZS ahA ahH -ajm +igS ahH aaI rxQ ahA asm -asN -ati -ati -ati -ati -avb -avJ -awk -ati -ati -ati -axi +deb +cmL +cmL +cmL +cmL +nEY +jew +nty +cmL +cmL +cmL +kUL asm tZS ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53474,7 +45344,7 @@ ahA ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53483,7 +45353,7 @@ ahA ahA ahA ayW -aAs +xDi ayW tZS ahA @@ -53496,24 +45366,24 @@ aae ats asi aLM -aMB +dtp aNf aNf aNf -aPh +cTe jAR -aRb -aRR -aSI -aTj -aTQ -aPl -aUw +veK +mpP +mFR +mOW +pHs +xFT +ukl aUW -aVr -aVP -aWv -aWY +txV +xwY +uaW +pzn aUZ asi uBE @@ -53527,9 +45397,9 @@ aab aZG aZW aZW -bap +hwF baz -bap +hwF aZW aZW aZW @@ -53548,9 +45418,9 @@ aZW aZW aZW aZW -bht +kCa bhF -bht +kCa aZW aZW beB @@ -53561,31 +45431,31 @@ aZG bgH bgH bkE -bkT -bkT -bkT -bkT -bkT -bna -bkT -bof +dnj +dnj +dnj +dnj +dnj +sjF +dnj +mnJ bkE -bnz -bkr -bpD -bqq +clr +fMl +daT +jMD bqZ -brI -bsp -btd -btd -bwS -bvm -btd -btd -btd -btd -bxO +eXL +lDO +wFg +wFg +tux +mHq +wFg +wFg +wFg +wFg +xmm bqZ btm buL @@ -53598,27 +45468,27 @@ bzp bzp bzp bzp -bzG -bFg -bGc +uAb +iII +ibt bGB -bHu -bIm -bIm -bJr -bJY +cOs +pLl +pLl +ntD +dxD bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNt -bOa -bOJ -bPf -bPf -bPf -bQY +qxY +iYQ +idY +idY +idY +xBm bNt bRM bPg @@ -53635,7 +45505,7 @@ aZF aZF aZF bOk -bUC +gaq bRN bOk bmU @@ -53706,7 +45576,7 @@ aem afJ aem ahH -ajm +igS ahH rxQ aaI @@ -53715,7 +45585,7 @@ aaI aaI rxQ ahH -ajm +igS ahH tZS ahA @@ -53724,30 +45594,30 @@ ahA ahA ahA ahH -ajm +igS ahH rxQ rxQ aaI asn -asN -ati -ati +deb +cmL +cmL aun atQ -auZ -avE +djW +caa auJ awD -ati -ati -axi +cmL +cmL +kUL asn tZS tZS ahA ayW -aAs +xDi ayW ahA ahA @@ -53756,7 +45626,7 @@ ahA ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53765,7 +45635,7 @@ ahA ahA ahA ayW -aAs +xDi ayW ahA ahA @@ -53778,24 +45648,24 @@ aae arM asi aLM -aMC -aNh -aNh -aNh -aPk +xRy +wcL +wcL +wcL +iBJ aLM -aRc -aRS -aSJ -aTl -aPl -aPl -aUx +oDk +tHO +ggk +gcj +xFT +xFT +fYW aUW -aVn -aVP -aVP -aWZ +fLF +xwY +xwY +tkC aUZ aUZ aUZ @@ -53809,9 +45679,9 @@ aab aZG aZW aZW -bap +hwF baA -bap +hwF aZW aZW bih @@ -53830,9 +45700,9 @@ aZW aZW aZW aZW -bht +kCa bhG -bht +kCa aZW aZW aZW @@ -53843,57 +45713,57 @@ aZG bgH bgH bkE -bkV -bkT -blE -blX -bmD -bnd -bkT -bog +vkk +dnj +itS +nPA +wTP +jvT +dnj +gLi bkE -bkO -bkr -bpD -bqq +xeZ +fMl +daT +jMD bqZ -brJ -bsq -bte -btM -buD -bvo -bvT -bwr -bwO -bxs -bxP +nuq +vSq +mBo +mHn +fUB +tuK +vGX +ueQ +gGy +uwj +vdJ bqZ bxv buL bzp -bzD -bAf -bAf -bBm -bAf -bAf -bDb +dmR +sBg +sBg +tNG +sBg +sBg +jZh bDH -bzG -bFg -bGc +uAb +iII +ibt bGB bGD bGD bIN -bJs +rsh bGD bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNt bNt bNt @@ -53988,7 +45858,7 @@ aaJ afJ aem aif -ajm +igS aif aaI rxQ @@ -53997,7 +45867,7 @@ aaI aaI aaI aif -ajm +igS aif ahA tZS @@ -54006,30 +45876,30 @@ ahA ahA ahA aif -ajm +igS aif aaI aaI ahG asn -asN -ati +deb +cmL atM -aHV -auD -auZ -avE -auD -aIg +spv +vTZ +djW +caa +vTZ +dwz atQ -ati -axi +cmL +kUL asn alL tZS ahA ayp -aAs +xDi ayp ahA ahA @@ -54038,7 +45908,7 @@ ahA ahA ahA ayp -aAs +xDi ayp ahA ahA @@ -54047,7 +45917,7 @@ ahA ahA ahA ayp -aAs +xDi ayp ahA ahA @@ -54066,20 +45936,20 @@ aLM aLM aLM aLM -aRd -aRT -aSK -aTm -aPl -aPl -aUw +xrY +fcV +efo +kKm +xFT +xFT +ukl aUX -aVp -aVP -aVP -aXa -aVO -aYd +fZW +xwY +xwY +ftr +eog +cUO aUZ asi asi @@ -54091,9 +45961,9 @@ aab aZG aZW aZW -bap +hwF baD -bap +hwF aZW aZW aZW @@ -54112,9 +45982,9 @@ aZW aZW bih aZW -bht +kCa bhJ -bht +kCa aZW aZW aZW @@ -54135,54 +46005,54 @@ bkE bkE bkE bpa -bkr -bpL +fMl +qsn bpa bqZ bqZ -bsr -btf -btd -buE -btd -btd -bvm -bwS -bxt -bxQ +ezj +jwF +wFg +jde +wFg +wFg +mHq +tux +ooJ +fBc bqZ bxv buL bzp -bzE -bAg -bAI -bBn -bBR -bAg -bDc +saC +kZG +lOz +wSy +mLv +kZG +uxZ bDH -bzG -bFg -bGc +uAb +iII +ibt bGB -bHv -bIn -bGF -bJt -bJZ +pEK +kMO +pwl +pCA +oum bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNv -bOb -bOK -bOK -bOK -bOK -bQZ +grb +pAl +pAl +pAl +pAl +kky bNv bRN bPg @@ -54270,7 +46140,7 @@ aaJ afJ aem aif -ajn +itj aif ahH ahH @@ -54279,7 +46149,7 @@ aif ahH ahH aif -ajn +itj aif ahH ahH @@ -54288,30 +46158,30 @@ aif ahH ahH aif -ajn +itj aif ahH ahH aif -aso -asO -ati +uJb +qVJ +cmL atN -aup -auE -avc -avK -awl -awH +iMj +ohr +rUV +vFJ +dSa +rkQ auJ -ati -awj -axC +cmL +oIl +sWB ayp ayW ayW ayp -aAt +cXJ ayp ayW ayW @@ -54320,7 +46190,7 @@ ayp ayW ayW ayp -aAt +cXJ ayp ayW ayW @@ -54329,7 +46199,7 @@ ayp ayW ayW ayp -aAt +cXJ ayp ahA ahA @@ -54346,22 +46216,22 @@ aMD aNi aNT aOo -aPe -aQj -aRe -aRU -aSL -aTm -rAm -aPl -aUw +dRY +pdB +gUE +nbv +nqp +kKm +sAt +xFT +ukl aUX -aVp -aVO -aVQ -aVQ -aVP -aYe +fZW +eog +bwC +bwC +xwY +wvw aUZ asi asi @@ -54373,9 +46243,9 @@ aab aZG aZU aZW -bap -baE -bap +hwF +ofV +hwF aZW aZW aZW @@ -54394,9 +46264,9 @@ aZW aZW aZW aZW -bht -bhK -bht +kCa +rUz +kCa aZW aZW aZW @@ -54404,67 +46274,67 @@ aZW aZW aZW bjU -bkh -bkq -bkq -bkq -bkq -bkq -bkq -bmE -bkq -bkq -bkq -bkq -bkq -bkr -bpD -bqu -bra +kva +xBC +xBC +xBC +xBC +xBC +xBC +vHH +xBC +xBC +xBC +xBC +xBC +fMl +daT +sIh +fyY bqZ -bss -btg -btN -buF -bvp -bvU -bws -bwS -bxs -bxP +mfR +nhp +mnp +dVF +uan +hVe +ijr +tux +uwj +vdJ bqZ btm buL bzp -bzF -bAg -bAJ -bBo -bXS -bAg -bDd +pnL +kZG +xYv +wLH +dkC +kZG +uXd bDH -bzG -bFg -bGc +uAb +iII +ibt bGB -bHw -bGF -bIO -bJu -bKa +fjK +pwl +reQ +iTk +fHi bGB -bLC -bMc -bpu -bNc +uxs +vSN +xIY +qKx bNv -bOc -bOL -bOL -bOL -bOL -bRa +sVJ +ozF +ozF +ozF +ozF +eBg bNv bRN bPg @@ -54552,66 +46422,66 @@ aaJ afJ aem aif -ajo -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -anf -ajG -ajG -ajG -ajG -ajG -ajG -ajG -ajG -aqL -ajG -ajG -ajG -asg -asp -asP -atj -atO -atO -auF -avd -avL -awm -atO -atO -awQ -asP -axD -ayq -aFH -aFH -aFH -aAu -aFH -aFH -aFH -aFH -aFH -aFH -aFH -aFH -ueV -aFH -aFH -aFH -aFH -aFH -aFH -aFH -aFH -aIS +iRC +tzv +tzv +tzv +tzv +tzv +tzv +tzv +tzv +sVm +tzv +tzv +tzv +tzv +tzv +tzv +tzv +tzv +tez +tzv +tzv +tzv +vVz +nWN +udd +joJ +qtZ +qtZ +lMT +iFW +gLz +nFG +qtZ +qtZ +imb +udd +ieB +cYD +tXD +tXD +tXD +fin +tXD +tXD +tXD +tXD +tXD +tXD +tXD +tXD +xnC +tXD +tXD +tXD +tXD +tXD +tXD +tXD +tXD +dat ayp ahA ahA @@ -54628,22 +46498,22 @@ aMD aNj aNj aOp -aPl -aQk -aRf -aRV -aSL -aTm -aPl -aPl -aUw +xFT +tBa +xFO +frL +nqp +kKm +xFT +xFT +ukl aUX -aVp -aVQ -aVO -aVO -aVP -aYf +fZW +bwC +eog +eog +xwY +vNl aUZ asi asi @@ -54655,9 +46525,9 @@ aab aZG aZX aZW -bap -baF -bap +hwF +lNm +hwF aZW aZW aZW @@ -54676,9 +46546,9 @@ aZW aZW aZW aZW -bht -bhL -bht +kCa +cBS +kCa aZW aZW aZW @@ -54686,23 +46556,23 @@ aZW aZW aZW aZW -bfp -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bpD -bkr -brb +oVo +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +daT +fMl +xGn bqZ bqZ bqZ @@ -54710,43 +46580,43 @@ bqZ bqZ bqZ bqZ -bwt -bwS -bxt -bxQ +xeU +tux +ooJ +fBc bqZ btm buL bzp -bzG -bAg -bAg -bBp -bAg -bAg -bAg -bDI -bAg -bFg -bGc +uAb +kZG +kZG +iue +kZG +kZG +kZG +pvb +kZG +iII +ibt bGD -bHw -bGF -bGF -bJt -bKa +fjK +pwl +pwl +pCA +fHi bGD -bLB -bMh -bTK -bNc +qMQ +gGv +iXA +qKx bNv -bOd -bOL -bOL -bOL -bOL -bRb +leT +ozF +ozF +ozF +ozF +chw bNv bRN bPg @@ -54834,66 +46704,66 @@ aaJ afJ aem aif -ajp -ajH -ajH -ajH -ajH -ajH -ajH -ajH -ajH -ang -anM -anM -anM -anM -anM -anM -anM -anM -aqM -anM -anM -anM -anM -asq -asQ -atk -atP -atP -auG -ave -avM -awn -atP -atP -awR -asQ -axE -ayr -ayr -ayr -ayr -aAv -ayr -ayr -ayr -ayr -ayr -ayr -ayr -ayr -aFi -aFI -aFI -aFI -aFI -aFI -aFI -aFI -aFI -aIT +efs +nHt +nHt +nHt +nHt +nHt +nHt +nHt +nHt +fKA +roN +roN +roN +roN +roN +roN +roN +roN +pKi +roN +roN +roN +roN +pWJ +whp +cXL +sYt +sYt +oaA +tvJ +qgt +eDw +sYt +sYt +dBr +whp +pMJ +lrd +lrd +lrd +lrd +xQg +lrd +lrd +lrd +lrd +lrd +lrd +lrd +lrd +upe +fcM +fcM +fcM +fcM +fcM +fcM +fcM +fcM +mvg ayp ahA ahA @@ -54910,22 +46780,22 @@ aME aNk aNU kRw -gXP -csl -aPl -aPl -aSL -aTm -aPl -aPl -aUw +syb +qNT +xFT +xFT +nqp +kKm +xFT +xFT +ukl aUX -aVp -aVP -aVP -aVP -aXB -aYg +fZW +xwY +xwY +xwY +utx +lWu aUZ ayc ayc @@ -54937,9 +46807,9 @@ aab aZG aZY aZW -bap +hwF baA -bap +hwF aZW bbc aZW @@ -54958,9 +46828,9 @@ aZW aZW bbc aZW -bht +kCa bhG -bht +kCa aZW aZW biN @@ -54968,67 +46838,67 @@ aZW aZW aZW aZW -bfp -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -bkr -boh -bkr -bkr -bkr -bpD -bkr -brc +oVo +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +fMl +vmt +fMl +fMl +fMl +daT +fMl +iwX brK -bst -bth -btO -bXN -bvq +rFb +epQ +cay +qTv +sRi brK -bwt -bwS -bxs -bxP +xeU +tux +uwj +vdJ bqZ btm byS bzq -bzH -bAh -bzH -bzH -bzH -bzH -bDe +fAx +lwO +fAx +fAx +fAx +fAx +cIo bDJ -bEC -bFh -bzH -bGE -bHx -bHx -bHx -bJv -bIS -bKR -bqC -bMi -bMC -bqC -bNw -bOe -bOM -bOM -bPO -bOL -bRc +hLu +jbG +fAx +kLz +tGV +tGV +tGV +qwI +nrX +wsm +gkz +lNU +muD +gkz +qmd +yep +qMB +qMB +oju +ozF +hOe bNv bRN bPg @@ -55125,7 +46995,7 @@ aif ahH ahH ahH -anh +sEY ahH ahH ahH @@ -55139,20 +47009,20 @@ aif ahH ahH aif -asr -asR -ati +hHI +fzy +cmL atQ -aHY -auH -avf -avN -awo -awH +dAr +vna +lNS +dGB +sga +rkQ auJ -ati -awq -axF +cmL +oxh +mlQ ayp ayW ayW @@ -55166,7 +47036,7 @@ ayp ayW ayW ayW -aFj +hyD ayW ayW ayW @@ -55192,21 +47062,21 @@ aMF aNj aNj aOo -aPm -aQl -aPl -aPl -aSL -aTm -aPl -aPl -aUw +iPY +rXo +xFT +xFT +nqp +kKm +xFT +xFT +ukl aUW -aVs -aVR -bKF -aXb -aXC +xhs +epU +emA +eDx +mEE aUZ aUZ asi @@ -55219,30 +47089,30 @@ aab aZG aZZ aZW -bap +hwF baD -baq -baN -baN -baN -baN -baN -baN -baN -baN -baN -beE -baN -baN -baN -baN -baN -baN -baN -baN -bhu +jsf +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +scu +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +cns bhJ -bht +kCa bih aZW aZW @@ -55250,67 +47120,67 @@ aZW aZW aZW aZW -bki -bks -bkG -bkG -bkG -bkG -bkG -bks -bkG -bkG -bkN -bkr -bkr -bkr -bpD -bkr -brd +fzV +gBl +mbE +mbE +mbE +mbE +mbE +gBl +mbE +mbE +end +fMl +fMl +fMl +daT +fMl +sTN brK -bsu -bti -bti -buH -bvr +snQ +pZz +pZz +fIx +gkM brK -bwt -bwS -bxt -bxQ +xeU +tux +ooJ +fBc bqZ btm byT bzp -bzG -bAi -bAg -bBq -bAg -bAg -bAg -bDI -bAg -bFg -bAg -bGF -bGF -bGF -bGF -bJw -bKc -bGF -bpu -bMj -bMD -bNc +uAb +lVH +kZG +ies +kZG +kZG +kZG +pvb +kZG +iII +kZG +pwl +pwl +pwl +pwl +egk +uyg +pwl +xIY +rYx +oRy +qKx bNv -bOf -bOL -bOL -bOL -bOL -bRd +llO +ozF +ozF +ozF +ozF +qgK bNv bRN bPg @@ -55404,13 +47274,13 @@ agW ahb aax aif -apl -ame -amD -ani -anN -anN -aoR +wzQ +doT +huD +nKc +kEs +kEs +vEl aif hrN abL @@ -55422,18 +47292,18 @@ abL abL alj asn -asN -ati +deb +cmL atR -auq -auI -avg -avE -auI -aIw +hBW +eZd +gAM +caa +eZd +keo atQ -ati -axi +cmL +kUL asn alj hrN @@ -55445,13 +47315,13 @@ abL abL abL ayp -aDw -aEe -aEE -aFk -aFJ -aFJ -aGJ +xgC +wRH +czd +jRw +chC +chC +sGW ayp ahA tZS @@ -55474,17 +47344,17 @@ aLN aNl aNl aOo -aPn -aQl -aQf -aRW -aSM -aTm -aPl -aPl -aUw +wNz +rXo +jvp +tKI +fFg +kKm +xFT +xFT +ukl aUW -aVt +cXz aUZ aUZ aUZ @@ -55501,36 +47371,36 @@ aab aZG baa aZW -bap +hwF aZW baM baQ -bbd -bbq +qoP +ktB baM baQ bcd bcA baM -bdT -beF +lni +eje bcA baM baQ bcd bcA -bgK -bgT +jga +pEi bcd bcA aZW -bht +kCa aZW aZW aZW bjf aZG -bgR +uBo aZG beB bkt @@ -55542,57 +47412,57 @@ bkW bkW bkW bkW -boi -bkr -bkr -bkr -bpD -bkr -brd +kNY +fMl +fMl +fMl +daT +fMl +sTN brK -bsv -bti -btP -buI -bvs -bvV -bwu -bwR -bxs -bxP +rsf +pZz +tAb +vCJ +ulP +tqX +tMx +xoR +uwj +vdJ bqZ btm buL bzp -bzI -bAg -bAI -bBr -bBR -bAg -bDf +dJt +kZG +lOz +hil +mLv +kZG +ezO bDK -bED -bFi -bGe +eyC +pgs +elv bGG -bHy -bIo -bIo -bJx -bKa +wmo +xLP +xLP +eWR +fHi bGD -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNv -bOg -bOL -bOL -bOL -bOL -bOL +gix +ozF +ozF +ozF +ozF +ozF bRr bRN bPg @@ -55686,13 +47556,13 @@ agP ahf agP aif -alN -amf -ajm -anj -ajm -ajm -aoS +rCg +xIn +igS +hJt +igS +igS +jUL aif abL abL @@ -55704,18 +47574,18 @@ hrN abL abL asn -asN -ati -ati +deb +cmL +cmL atQ auJ -avg -avE +gAM +caa awp atQ -ati -ati -axi +cmL +cmL +kUL asn hrN hrN @@ -55727,13 +47597,13 @@ abL abL abL ayp -aDx -aAs -aAs -aFl -aAs -aAs -aGK +pGS +xDi +xDi +xwP +xDi +xDi +rXs ayp tZS ahA @@ -55757,14 +47627,14 @@ aLN aLN aLN aLN -aQm +nnC aLN aLN aLN -aTn -aTR -aTR -aUy +gqk +vLU +vLU +cgt aUZ aUZ aUZ @@ -55783,30 +47653,30 @@ aab aZG bab aZW -baq -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -baN -bhu +jsf +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +kjU +cns aZW aZW aZW @@ -55818,63 +47688,63 @@ bgH bgH bgH bkW -anT -aon -aon -aon -oqw +nZt +qkG +qkG +qkG +nmO bkW -boj -bkr -bkr -bkr -bpD -bkr -brd +meS +fMl +fMl +fMl +daT +fMl +sTN brK -bsw -bti -btQ -buJ -bvt +toC +pZz +uAB +hPZ +toG brK -bwv -bwS -bxt -bxQ +kzU +tux +ooJ +fBc bqZ btm buL bzp -bzJ -bAg -bAJ -bBs -bBT -bAg -bDg +xzY +kZG +xYv +ppb +dQE +kZG +xzb bDH -bzG -bAi -bGc +uAb +lVH +ibt bGB -bHz -bGF -bGF -bJy -bKd +tTb +pwl +pwl +fqx +xlL bGB -bLC -bMc -bpu -bNc +uxs +vSN +xIY +qKx bNv -bOg -bOL -bOL -bOL -bOL -bRe +gix +ozF +ozF +ozF +ozF +hyN bNv bRM bPg @@ -55969,11 +47839,11 @@ ahg ahn alj aif -amg -amF -ank -anO -aol +oDo +kyP +hly +fZM +tmY aif alj abL @@ -55986,18 +47856,18 @@ abL abL abL ass -asN -ati -ati -ati -ati -avh -avP -awk -ati -ati -ati -axi +deb +cmL +cmL +cmL +cmL +mAr +sWN +nty +cmL +cmL +cmL +kUL ass hrN abL @@ -56010,11 +47880,11 @@ abL hrN alL ayp -aEg -aEF -aFm -aWw -aGg +wvW +xwc +kUE +wXV +gTY ayp alL ahA @@ -56043,10 +47913,10 @@ awe auw auw avU -aTo +qRb aTS aTS -aUz +vYA auw auw aus @@ -56100,63 +47970,63 @@ bkj bgH bgH bkW -aNe +hjr blo blo blo -aNg +dRA bkW -bok -boF -boF -boF -bpM -bkr -brd +ldq +cHU +cHU +cHU +pRv +fMl +sTN brK -bsx -btl -btR -buJ -bvu +pqT +pHh +nwe +hPZ +rgd brK -bww -bwS -bxu -bxR +hbz +tux +hCd +hVR bqZ bys buL bzp -bzK -bAj -bAj -bBt -bAj -bCz -bDh +jUZ +ltz +ltz +msb +ltz +mdg +qed bDH -bEE -bFj -bGf +nSb +tGH +geN bGB -bHA -bIp -bIP -bJz -bKe +ndm +qKm +lEk +cWk +gap bGB -bLB -bMk -bMz -bNc +qMQ +cxh +mRB +qKx bNv -bOc -bOL -bOL -bOL -bOL -bRf +sVJ +ozF +ozF +ozF +ozF +pzP bNv bRN bPg @@ -56219,9 +48089,9 @@ aab aab aae aak -aau -aaK -aaV +usJ +qqg +qGR aaJ aaJ aaJ @@ -56244,9 +48114,9 @@ aax aax aax aax -aau -aaK -aaV +usJ +qqg +qGR ahg agP abL @@ -56268,18 +48138,18 @@ abL hrN abL ass -asS -atl -atl -aur -asR -avi -avI -awq -aur -atl -atl -axj +wwH +iFT +iFT +fHM +fzy +dfh +tAw +oxh +fHM +iFT +iFT +rAS ass abL abL @@ -56325,10 +48195,10 @@ awe auw auw auw -aTo +qRb aTS aTS -aUz +vYA auw auw atq @@ -56382,19 +48252,19 @@ bjA bgH bgH bkW -aNe +hjr blo blo blo -aNg -bny -bol -bkr -bkr -bkr -bpD -bkr -bre +dRA +fVj +iVt +fMl +fMl +fMl +daT +fMl +uWB brK brK brK @@ -56425,20 +48295,20 @@ bEF bEF bEF bGD -bJA -bKf +xZF +tbS bGB -bLB -bMc -bpu -bNc +qMQ +vSN +xIY +qKx bNv -bOh -bON -bON -bON -bON -bRg +tdy +ybQ +ybQ +ybQ +ybQ +rjC bNv bRN bPg @@ -56501,34 +48371,34 @@ aab aab aae aal -aav +cBZ aaL aaM -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo -abo +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL +kTL aaM aaL -akh +dcE ahg agP abL @@ -56554,10 +48424,10 @@ ass ass asn asn -auK -avj -avR -awr +rVS +lHY +uxb +sAB asn asn ass @@ -56607,10 +48477,10 @@ awe auw auw auw -aTo +qRb aTS aTS -aUz +vYA auw auw aus @@ -56664,19 +48534,19 @@ bjA bgH bgH bkW -aNe +hjr blo blo blo -aNg -bnz -bkr -bkr -bkr -bpt -bpI -bkr -bqq +dRA +clr +fMl +fMl +fMl +wRn +iVm +fMl +jMD bkt bsy btm @@ -56706,14 +48576,14 @@ biP bGH bHB bEF -bIQ -bJA -bKe +lUP +xZF +gap bGB -bLB -bMc -bpu -bpu +qMQ +vSN +xIY +xIY bNv bNv bNv @@ -56783,7 +48653,7 @@ aab aab aae aam -aaw +osA aaM aaM aaM @@ -56810,7 +48680,7 @@ aaM aaM aaM aaM -aaW +jCZ ahf aax abL @@ -56837,8 +48707,8 @@ abL abL alj auL -avi -avS +dfh +qfV auL alj abL @@ -56889,10 +48759,10 @@ awe auw auw auw -aTo +qRb aTS aTS -aUz +vYA auw auw atq @@ -56946,19 +48816,19 @@ bjA bku bgH bkW -aNe +hjr blo blo blo -aNg -bnz -bkr -bkr -bkr -bkr -bpG -bqr -bqr +dRA +clr +fMl +fMl +fMl +fMl +dNE +qlb +qlb brL bsz bsz @@ -56983,19 +48853,19 @@ bsz bDi btm bEF -bFl +cXu bGg bGI bHC bEF -bIR -bJB -bKg +rJX +uDl +vKC bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ bOi bOO @@ -57066,7 +48936,7 @@ aab aae aan aax -aaN +cwr aaM abp abJ @@ -57091,7 +48961,7 @@ abJ abJ aiP aaM -ajI +hWp aax ahg aax @@ -57171,10 +49041,10 @@ awe auw auw auw -aTo +qRb aTS aTS -aUz +vYA auw auQ auw @@ -57228,22 +49098,22 @@ bjA bhD bgH bkW -aNe +hjr blo blo blo -aNg -bkO -bkN -bkr -bkr -bkr -bpD -bkr -brf +dRA +xeZ +end +fMl +fMl +fMl +daT +fMl +flc brM brM -btn +sXB brM brM bvv @@ -57270,14 +49140,14 @@ bGI bGJ bHD bIq -bIS -bJC -bKa +nrX +vSM +fHi bGB -bLB -bMk -bME -bqz +qMQ +cxh +cXi +tFg bNx bOj bOj @@ -57348,7 +49218,7 @@ aab aaf aan aax -aaN +cwr aaM abq abK @@ -57373,7 +49243,7 @@ abK abK abq aaM -ajI +hWp aax ahg aax @@ -57453,10 +49323,10 @@ awg aww auw auw -aTo +qRb aTS aTS -aUz +vYA auw auw auw @@ -57510,26 +49380,26 @@ bjA bgH bgH bkW -aNe +hjr blo blo blo -aNg +dRA bkW -bom -bkr -bkr -bkr -bpD -bkr -bqq +omb +fMl +fMl +fMl +daT +fMl +jMD brN -bsA -bto -btS +itO +lSf +rIq brM -bvw -bvw +uUs +uUs bvy bvv bxv @@ -57552,14 +49422,14 @@ bFn bGI bHE bEF -bIT -bJt -bKa +fOZ +pCA +fHi bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ bOk bOk @@ -57630,7 +49500,7 @@ aab aad aao aay -aaN +cwr aaM abq abK @@ -57655,7 +49525,7 @@ abK abK abq aaM -ajI +hWp aaA ahg agP @@ -57735,10 +49605,10 @@ auw awe auw auw -aTp -aTT -aTT -aUA +pbi +lts +lts +eKM auw auw auw @@ -57792,27 +49662,27 @@ bjA bgH bgH bkW -aMz -aKb -aKb -aKb -cFF +vjC +vIj +vIj +vIj +jyl bkW -bon -bkr -bkr -bkr -bpD -bkr -bqq +dZN +fMl +fMl +fMl +daT +fMl +jMD brN -gDb -btp -btT +kCD +xcp +rwR brM -bvw +uUs bvy -bvw +uUs bvv bxv buL @@ -57834,14 +49704,14 @@ bEH bEH bEH bEH -bIU -bJu -bKh +edC +iTk +dPn bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ bmQ bmT @@ -57912,7 +49782,7 @@ aab aae aan aaz -aaN +cwr aaM abq abK @@ -57937,7 +49807,7 @@ abK abK abq aaM -ajI +hWp aax ahg agP @@ -58080,21 +49950,21 @@ bkW bkW bkW bkW -boo -bkr -bkr -bkr -bpG -bqr -bqr -brO -bsC -btq -btU +oNw +fMl +fMl +fMl +dNE +qlb +qlb +kTP +fbJ +jGy +vmi brM bvx bvy -bvw +uUs bwU btm buL @@ -58116,14 +49986,14 @@ bGh bGK bHF bEH -bIV -bJt -bKa +euY +pCA +fHi bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ boJ bml @@ -58194,7 +50064,7 @@ aab aae aan aax -aaN +cwr aaM abq abK @@ -58219,7 +50089,7 @@ abK abK abq aaM -ajI +hWp aax ahg agP @@ -58287,10 +50157,10 @@ asi asi aKf aKf -aKQ -aKQ -aLO -aKr +klC +klC +hht +ppj aKf aKf avx @@ -58362,20 +50232,20 @@ bgH bgH bgH bnA -bnz -bkr -bkr -bkr -bpD -bkr -bqq +clr +fMl +fMl +fMl +daT +fMl +jMD brN -bsB -btp -btV +sLo +xcp +eAr brM bvy -bvw +uUs bvy bvv bxw @@ -58393,20 +50263,20 @@ byp buL bDN bEH -bFp +cBj bGj bGL bHG bEH -bIV -bJt -bKa +euY +pCA +fHi bGB -bLB -bMc -bpu -bqB -bNy +qMQ +vSN +xIY +kos +krm boJ bmQ bmU @@ -58476,7 +50346,7 @@ aab aae aap aax -aaN +cwr aaM abq abK @@ -58501,7 +50371,7 @@ abK abK abq aaM -ajI +hWp aax ahg ahn @@ -58568,12 +50438,12 @@ abc asi asi aKf -aKn -aKR -aKR -aKR -aKR -aKR +kwX +feU +feU +feU +feU +feU aKf aus auw @@ -58644,19 +50514,19 @@ bgH bgH bgH bkt -bop -boG -bkG -bkr -bpD -bkG -bkr -brP -btp -btr -btW +sSe +dRQ +mbE +fMl +daT +mbE +fMl +wpD +xcp +dUE +vKc brM -bvw +uUs bvy bvy bvv @@ -58680,15 +50550,15 @@ bGL bGM bHH bIr -bIW -bJE -bKd +dvh +pko +xlL bGB -bLE -bMc -bpu -bMI -bNz +mFs +vSN +xIY +usd +wtP boJ bmi bmU @@ -58758,7 +50628,7 @@ aab aae aak aaA -aaN +cwr aaM abq abK @@ -58783,7 +50653,7 @@ abK abK abq aaM -ajI +hWp aaA ahg agP @@ -58850,12 +50720,12 @@ aJy aJM asi aKf -aKo -aKS -aKR -aKR -aKR -aNn +dYn +fKC +feU +feU +feU +qtX aKf auw auw @@ -58929,8 +50799,8 @@ bkt bkt bkt bpa -bkr -bpL +fMl +qsn bpa brh brh @@ -58962,14 +50832,14 @@ bFr bGL bHI bEH -bIX -bJF -bKi +oWy +qJs +hjy bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ boJ bmU @@ -59040,7 +50910,7 @@ aab aae aaq aax -aaN +cwr aaM abq abK @@ -59065,7 +50935,7 @@ abK abK abq aaM -ajI +hWp aax ahg agP @@ -59132,13 +51002,13 @@ abn aJK asi aKf -aKp -aKR -aKr -aKr -aKR -aKR -aNV +brg +feU +ppj +ppj +feU +feU +qkL auw auw auw @@ -59210,20 +51080,20 @@ bkI bkI bkI bkI -bpb -bpu -bPo -bqw +vVZ +xIY +crn +gBe brh -brQ -bsE -bts -btX -btX -btX -btX -btX -bwV +ogt +exm +fZF +yfb +yfb +yfb +yfb +yfb +chP bxx bxT byp @@ -59248,10 +51118,10 @@ bGB bGB bGB bGB -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ bmT bmU @@ -59322,7 +51192,7 @@ aab aaf aal hrN -aaN +cwr aaM abq abK @@ -59347,7 +51217,7 @@ abK abK abq aaM -ajI +hWp aax agC agW @@ -59414,12 +51284,12 @@ aJH asi asi aKf -aKq -aKr -aKr -aKR -aKR -aNp +rbH +ppj +ppj +feU +feU +xtU aKf avz auw @@ -59483,29 +51353,29 @@ bjA bgH bgH bkI -bkX -blp -blF -blp -bkX -blp -bkX -blp +ltW +ihn +slQ +ihn +ltW +ihn +ltW +ihn bkI -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btt btY buN bvz bvW -brk -bwW +xpv +lME brh buL byp @@ -59530,10 +51400,10 @@ btm btm bDN bkt -bLB -bMc -bpu -bqx +qMQ +vSN +xIY +rdh boJ bml bmU @@ -59604,7 +51474,7 @@ aab aac aam aax -aaN +cwr aaM abq abK @@ -59629,7 +51499,7 @@ abK abK abq aaM -ajI +hWp aax agP agP @@ -59696,12 +51566,12 @@ aJI uBE asi aKf -aKr -aKr -aKR -aKR -aKR -aNq +ppj +ppj +feU +feU +feU +diu aKf aus auw @@ -59765,33 +51635,33 @@ bjA bgH bgH bkI -bkX -bkZ -bkX -blY -bmF -bkZ -bkX -bkZ +ltW +pwW +ltW +lly +jhm +pwW +ltW +pwW boH -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btu btZ bub bub bvX -brk -bwW +xpv +lME brh buL byq -byD +nUw byU byp aZF @@ -59812,10 +51682,10 @@ bsz bsz bsz brL -bME -bMl -bpu -bqA +cXi +cGt +xIY +cvB boJ bmQ bmU @@ -59886,7 +51756,7 @@ aab aac aan aaA -aaN +cwr aaM abq abK @@ -59911,7 +51781,7 @@ abK abK abq aaM -ajI +hWp aaA aax aax @@ -59979,10 +51849,10 @@ asi asi aKf aKf -aKr -aLv -aLP -aKn +ppj +hEn +mSM +kwX aKf aKf aus @@ -60047,29 +51917,29 @@ bjA bgH bgH bkI -bkY -bkZ -bkX -blZ -bkX -bkZ -bkX -bkZ +eiR +pwW +ltW +nwj +ltW +pwW +ltW +pwW boH -bpc -bpu -bPo -bpu -brm -brk -brk +vgj +xIY +crn +xIY +nyl +xpv +xpv btv bua buO bvA bvY -brk -bwW +xpv +lME brh buL byq @@ -60094,10 +51964,10 @@ bEJ bEJ bEJ bEJ -bpc -bMc -bpu -bqx +vgj +vSN +xIY +rdh boJ bmQ bmT @@ -60168,7 +52038,7 @@ aab aac aan aax -aaN +cwr aaM abq abK @@ -60193,7 +52063,7 @@ abK abK abq aaM -ajI +hWp aax aax aax @@ -60329,29 +52199,29 @@ bjA bgI bgH bkI -bkX -bkZ -bkX -blZ -bkX -bkZ -bkX -bkZ +ltW +pwW +ltW +nwj +ltW +pwW +ltW +pwW boH -bpc -bpu -bPo -bpu -brk -brk -brk +vgj +xIY +crn +xIY +xpv +xpv +xpv btv bub bub bub bvZ -brk -bwW +xpv +lME brh buL btm @@ -60376,10 +52246,10 @@ bGm bGN bKj bEJ -bpc -bMc -bpu -bqx +vgj +vSN +xIY +rdh bNA bNA bNA @@ -60450,7 +52320,7 @@ aab aac aap aax -aaN +cwr aaM abr abJ @@ -60475,7 +52345,7 @@ abJ abJ aiQ aaM -ajI +hWp aax aax abL @@ -60611,29 +52481,29 @@ bjA bgH bgH bkI -bkZ -bkZ -bkZ -blZ -bkZ -bkZ -bkZ -boq +pwW +pwW +pwW +nwj +pwW +pwW +pwW +mcg bkI -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btv bub bub bub bvZ -brk -bwW +xpv +lME brh bxU btm @@ -60658,12 +52528,12 @@ bFt bFt bKk bEJ -bpc -bMc -bpu -bqx -bNB -bOl +vgj +vSN +xIY +rdh +oAs +koF bOP bPh bPR @@ -60731,7 +52601,7 @@ aab aab aac aar -aau +usJ aaM aaM aaM @@ -60758,7 +52628,7 @@ aaM aaM aaM aaM -aaV +qGR abL abL abL @@ -60893,29 +52763,29 @@ bjA bgH bgH bkI -bkZ -bkZ -bkZ -bma -bmG -bmG -bmG -bmG -boI -bME -bME -bMl -bqx +pwW +pwW +pwW +pwQ +frN +frN +frN +frN +fLv +cXi +cXi +cGt +rdh bri -brR -brk +pEJ +xpv btv bub bub bub bvZ -brk -bwW +xpv +lME brh byS bsz @@ -60940,10 +52810,10 @@ bIs bIs bIs bKS -bME -bMl -bpu -bpu +cXi +cGt +xIY +xIY bNF bOn bOn @@ -61013,34 +52883,34 @@ aab aab aac aae -aav +cBZ aaL aaM -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs -abs +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz +iZz aaM aaL -akh +dcE abL abL abL @@ -61175,29 +53045,29 @@ bjA bgH bgH bkI -bla -bkZ -blG -bmb -blG -blG -bkZ -bor +gOS +pwW +rPw +odJ +rPw +rPw +pwW +sUw bkI -bpe -bpu -bMk -bqz +nLD +xIY +cxh +tFg brl -brT -bsH +gUI +ipL btw buc buP buc bwa -brk -bwX +xpv +sTM brh buL btm @@ -61213,7 +53083,7 @@ byI byI byI bEJ -bFv +bYY bFt bFt bFt @@ -61222,10 +53092,10 @@ bFt bFt bKl bEJ -bpc -bMc -bMG -bpu +vgj +vSN +wUW +xIY bND bOn bOn @@ -61295,9 +53165,9 @@ aab aab aac aae -aaw -aaO -aaW +osA +gHV +jCZ aax aax aax @@ -61320,9 +53190,9 @@ aax aax aax aax -aaw -aaO -aaW +osA +gHV +jCZ abL abL abL @@ -61432,12 +53302,12 @@ azp ayQ ayQ azH -bcg -bdi -beH -beH -bdi -bfq +eot +qMw +jOE +jOE +qMw +hWZ azH ayQ ayC @@ -61457,43 +53327,43 @@ bjA bgH bgH bkI -bkZ -blq -blH -bmc -bnf -blI -bnB -bkZ +pwW +peX +xbK +tuk +qHV +tQZ +dZS +pwW boH -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btv bub bub bub bvZ -brk -bwW +xpv +lME brh buL btm byI -byW -bzr -bzL -bAl -bAL -bBu -bBU -bCA -bCA -bDO +tVH +wxV +fHE +cKF +pRA +dMa +whv +fzn +fzn +rhw bEJ bFs bGm @@ -61504,10 +53374,10 @@ bGm bGN bKj bEJ -bpc -bMn -bME -bME +vgj +mmn +cXi +cXi bNE bOo bOQ @@ -61713,14 +53583,14 @@ ayC ayC ayQ ayQ -bcg +eot bcB bdj bdk bdk bfb bfr -bfq +hWZ ayQ ayQ ayQ @@ -61739,43 +53609,43 @@ bjA bgH bgH bkI -bkZ -blq -blI -bmd -bnf -bnf -bnB -bkZ +pwW +peX +tQZ +muL +qHV +qHV +dZS +pwW boH -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btv bub buQ bub bvZ -brk -bwW +xpv +lME brh buL btm byI -byX -bzs -bzs -bzs -bAM -bzs -bzs -bzs -bzs -bDP +pBH +wdU +wdU +wdU +euA +wdU +wdU +wdU +wdU +uuu bEJ bEJ bEJ @@ -61786,11 +53656,11 @@ bEJ bEJ bEJ bEJ -bLH -bMk -bMz -bqx -bNB +eWN +cxh +mRB +rdh +oAs bOn bOR bPk @@ -61995,14 +53865,14 @@ azm ayC ayQ ayQ -bch +gqp bcC bdk bdk bdk bdk bfs -bfY +xae ayQ bas ayQ @@ -62021,43 +53891,43 @@ bjA bgH bgH bkI -bkZ -bkZ -blJ -bme -blJ -blJ -bkZ -bkZ +pwW +pwW +kdP +dSW +kdP +kdP +pwW +pwW boH -bpc -bpv -bMl -bpu -brm -brk -brk +vgj +kxO +cGt +xIY +nyl +xpv +xpv btv bub buR bub bvZ -brk -bwW +xpv +lME brh buL btm byI -byX -bzt -bzM -bAm -bAN -bzt -bBV -bzO -bDk -bDP +pBH +qov +xKK +gVf +xpx +qov +hvl +mtS +gTd +uuu bEK bFw bGo @@ -62068,11 +53938,11 @@ bGo bGO bKm bEK -bpc -bMc -bpu -bqx -bNB +vgj +vSN +xIY +rdh +oAs bOn bOR bPk @@ -62277,14 +54147,14 @@ ayC ayC ayQ ayQ -bch +gqp bcD bdk bdk bdk bdk bft -bfY +xae bag beG bbg @@ -62303,43 +54173,43 @@ bjA bgH bgH bkI -bkZ -bkZ -blK -bmf -bmK -bkZ -bkZ -bkZ +pwW +pwW +bbV +prz +oil +pwW +pwW +pwW bkI -bpc -bpu -bPo -bpu -brk -brk -brk +vgj +xIY +crn +xIY +xpv +xpv +xpv btx bud buS bvB bwb -brk -bwW +xpv +lME brh buL btm byI -byX -bzt -bzN -bAn -bAN -bzt -bAn -bzM -bDk -bDP +pBH +qov +mOD +nAE +xpx +qov +nAE +xKK +gTd +uuu bEK bFx bFx @@ -62350,10 +54220,10 @@ bFx bFx bKn bEK -bpc -bMc -bpu -bpu +vgj +vSN +xIY +xIY bND bOn bOR @@ -62559,14 +54429,14 @@ ayl ayC ayQ ayQ -bch +gqp bcE bdk -bdX +iWo beI bdk bft -bfY +xae bah aaP aba @@ -62594,34 +54464,34 @@ bkI bkI bkI bkI -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh bri -brR -brk +pEJ +xpv btv bub buR bub bvZ -brk -bwW +xpv +lME brh buL btm byI -byY -bzt -bzM -bAo -bAN -bzt -bBW -bAn -bDk -bDQ +nIJ +qov +xKK +tuW +xpx +qov +xyp +nAE +gTd +lZm bEK bFy bFx @@ -62632,10 +54502,10 @@ bIt bIt bIt bKT -bME -bMl -bpu -bpu +cXi +cGt +xIY +xIY bND bOn bOR @@ -62876,36 +54746,36 @@ bgH bkH bos boJ -bpc -bpw -bPo -bqx +vgj +jtg +crn +rdh bri -brR -brk +pEJ +xpv bty bue buT bvC bwc -brk -bwW +xpv +lME brh buL bys byI -byZ -bzt -bzO -bAm -bAN -bzt -bBX -bCB -bDk -bDR +rgn +qov +mtS +gVf +xpx +qov +hqO +wQL +gTd +rby bEK -bFz +dSk bFx bFx bFx @@ -62914,10 +54784,10 @@ bFx bFx bKo bEK -bLJ -bMc -bpu -bpu +vUD +vSN +xIY +xIY bNF bOn bOS @@ -63030,8 +54900,8 @@ akC akC akC akC -aqN -arh +sig +jck arD arD arD @@ -63041,8 +54911,8 @@ arD arD arD arD -avl -avV +reN +iNn arD arD arD @@ -63052,9 +54922,9 @@ axk axk axk axk -azM -aAw -neZ +rJO +ucD +pzH aBc aBc aBc @@ -63124,12 +54994,12 @@ ayC ayQ ayQ bci -bcF -bdl -bdY -beJ -bfc -bfu +uxj +rjF +woL +hHP +ozp +cno bci aaC aaC @@ -63158,34 +55028,34 @@ bgH bgH bgH boK -bpc -bpu -bPo -bqA +vgj +xIY +crn +cvB brh -brU -bsI -bsI -bsI -buU -bsI -bsI -bsI -bwY +cUQ +qVv +qVv +qVv +yeY +qVv +qVv +qVv +oTW brh buL byt byI -bza -bzu -bzs -bzs -bAO -bzu -bzs -bzs -bzu -bDS +sYu +fLW +wdU +wdU +qwi +fLW +wdU +wdU +fLW +tzj bEK bFw bGo @@ -63196,11 +55066,11 @@ bGo bGO bKm bEK -bLK -bMc -bpu -bqx -bNB +odZ +vSN +xIY +rdh +oAs bOp bOT bPm @@ -63215,13 +55085,13 @@ bRt bRt bRR boJ -bTm -brn -bTC -bTI -bTC -bYn -bUf +yaM +csE +uah +wSS +uah +jjK +tYY boJ bPg bRN @@ -63298,22 +55168,22 @@ abL abL abL akC -akU +rAr alk -alO +tcz alk -akU +rAr alk -anP +mhT alk -anP +mhT alk -anP +mhT alk -anP +mhT alk -apC -arw +eDL +mNi arE arP arQ @@ -63323,31 +55193,31 @@ ast arQ arP arE -avm -avW +wOS +mBl arE arP arQ ast axl -axG -ays -ayY +ltO +oRq +kiR axl -azN -apZ -aAx +vzM +hVx +njp aBc -aBv -aBZ -aCx -aCY -aDy +xxd +gFp +gNg +jpf +hlc aEh -aEH -aFn -aFL -aGi +lVz +xuT +mos +hsc aGL aHg aHD @@ -63406,12 +55276,12 @@ ayC ayQ ayQ bci -bcG -bcL -bdZ -bcL -bcL -bfv +lPf +oxR +lTM +oxR +oxR +nla bci aaC aaC @@ -63440,16 +55310,16 @@ bhj bhj bhj boJ -bpc -bpu -bPo -bqx +vgj +xIY +crn +rdh brh brh bri bri bri -buV +keJ bri bri brh @@ -63460,12 +55330,12 @@ bkt byI bzb bzb -bzs -bAp +wdU +rUd bAP bzb -bzs -bAp +wdU +rUd bzb bzb bEK @@ -63478,16 +55348,16 @@ bEK bEK bEK bEK -bLL -bMc -bpu -bqx +mBA +vSN +xIY +rdh bNA -bNB +oAs bND bPn bND -bNB +oAs bNA boJ boJ @@ -63497,13 +55367,13 @@ boJ boJ boJ boJ -bTn -bpu -bpu -bpu -bpu -bpu -bUg +szY +xIY +xIY +xIY +xIY +xIY +qiR boJ bPg bRN @@ -63580,22 +55450,22 @@ abL abL abL akC -akV +tUp alk -alP +jxx alk -akV +tUp alk -anQ +tpa alk -anQ +tpa alk -anQ +tpa alk -anQ +tpa alk -apC -apZ +eDL +hVx arF arQ arQ @@ -63605,31 +55475,31 @@ asu arQ arQ arF -avn -aqS +giW +dmw arF arQ arQ asu axl -axH -ayt -ayZ +ukR +wbJ +jKl axl -azN -apZ -aAx +vzM +hVx +njp aBc -aBw -aCa -aCy -aCa -aDz +csj +egN +pND +egN +lAN aEi -aEI -aEJ -aFM -aGj +tmP +oXW +qbx +gsB aGL aHh aHh @@ -63688,12 +55558,12 @@ azp ayQ ayC bci -bcH -bdm -bea -beK -bcL -bfw +rSL +aXE +ivb +dOY +oxR +wsy bci aaC aaC @@ -63722,70 +55592,70 @@ aZF aZF aZF boJ -bpc -bpu -bPo -bqB -brn -brV -brn -brn -brn -buW -brn -brn -brV -brn -brn -buW -brn -brn -brn -brn -bpu -bpu -bAQ -brn -bpu -bpu -brn -brn -brn -brn -brn -brn -brV -brn -brn -brn -brn -brn -bUl -bMc -bpu -bpu -brV -brn -bpu -bPo -bpu -brn -brn -brn -brn -brn -brn -brV -brn -bSW +vgj +xIY +crn +kos +csE +iAM +csE +csE +csE +kjk +csE +csE +iAM +csE +csE +kjk +csE +csE +csE +csE +xIY +xIY +nqd +csE +xIY +xIY +csE +csE +csE +csE +csE +csE +iAM +csE +csE +csE +csE +csE +wIC +vSN +xIY +xIY +iAM +csE +xIY +crn +xIY +csE +csE +csE +csE +csE +csE +iAM +csE +mEx bTc -bpc -bpu -bpu -bpu -bpu -bpu -bUg +vgj +xIY +xIY +xIY +xIY +xIY +qiR boJ bPg bRN @@ -63862,22 +55732,22 @@ abL abL abL akC -akW -all -akW -akW -akW -anl -akW -akW -akW -akW -akW -akW -akW +hnu +mno +hnu +hnu +hnu +eTD +hnu +hnu +hnu +hnu +hnu +hnu +hnu alk -apC -arw +eDL +mNi arE arE arE @@ -63887,31 +55757,31 @@ arE arE arE arE -avm -avW +wOS +mBl arE arE arE arE axl -axH -ayt -aza +ukR +wbJ +rWw axl -azN -apZ -aAx +vzM +hVx +njp aBc -aBw -aCb -aCz -aUk -aDA +csj +qEY +kLt +qmk +otC aEj -aEI -aEJ -aFN -aGj +tmP +oXW +wmM +gsB aGM aHh aHh @@ -63970,12 +55840,12 @@ ayQ ayQ ayC bci -bcI -bcL -beb -bcL -bcL -bfx +eax +oxR +nXH +oxR +oxR +kSF bci aaC aaC @@ -64004,70 +55874,70 @@ aZF aZF aZF boJ -bpc -bpu -bPo -bpu -bpu -brW -bpu -bpu -bpu -buW -bpu -bpu -bpu -bpu -bpu -buW -bpu -bpu -brW -bpu -bpw -bpu -buW -bpu -bpu -bpu -bpu -bDT -bEL -bTK -bpu -bpu -bpu -brW -bpu -bpu -bpu -bpu -bpu -bMh -bTK -bpu -bpu -bpu -bpu -bPo -bpu -bpu -brW -bpu -bpu -bpw -bpu -bpu -bpu -bpu -bTd -bpu -bpu -bpu -bpu -brW -bpu -bUg +vgj +xIY +crn +xIY +xIY +rJv +xIY +xIY +xIY +kjk +xIY +xIY +xIY +xIY +xIY +kjk +xIY +xIY +rJv +xIY +jtg +xIY +kjk +xIY +xIY +xIY +xIY +lIE +oXx +iXA +xIY +xIY +xIY +rJv +xIY +xIY +xIY +xIY +xIY +gGv +iXA +xIY +xIY +xIY +xIY +crn +xIY +xIY +rJv +xIY +xIY +jtg +xIY +xIY +xIY +xIY +qfm +xIY +xIY +xIY +xIY +rJv +xIY +qiR boJ bPg bRN @@ -64144,22 +56014,22 @@ abL abL abL akC -akX -alm -alm -amh -akW -akW -akW -akW -akW -akW -akW -akW -apT +pSf +wKY +wKY +iIi +hnu +hnu +hnu +hnu +hnu +hnu +hnu +hnu +emr alk -apC -arw +eDL +mNi arE arP arQ @@ -64169,31 +56039,31 @@ ast arQ arP arE -avm -avW +wOS +mBl arE arP arQ ast axl -axI -ayu -azb -azy -arH -aAy -aAx +oTf +sEj +vrD +lys +mTH +tAD +njp aBc -aBw -aCc -aCA -aDa -aCa -aEk -aEJ -aEJ -aFN -aGj +csj +sCq +iLp +jAU +egN +jRV +oXW +oXW +wmM +gsB aGM aHi aHE @@ -64252,12 +56122,12 @@ ayQ ayQ ayQ bci -bcJ -bcL -beb -bcL -bcL -bfy +vke +oxR +nXH +oxR +oxR +gDs bci aaC aaC @@ -64286,70 +56156,70 @@ aZF aZF aZF boJ -bpf -bpu -bpT -bqC -bqC -brX -bqC -bqC -bqC -brX -bqC -bqC -bqC -bqC -bxy -brX -bqC -bqC -brX -bqC -bqC -bqC -brX -bqC -bqC -bqC -bqC -bDU -bEM -bFB -bqC -bqC -bqC -brX -bqC -bqC -bqC -bxy -bqC -bMo -bMH -bqC -bqC -bqC -bqC -bPp -bqC -bqC -bRi -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bqC -bTO -bpu -bUg +ngq +xIY +spx +gkz +gkz +xnI +gkz +gkz +gkz +xnI +gkz +gkz +gkz +gkz +fpk +xnI +gkz +gkz +xnI +gkz +gkz +gkz +xnI +gkz +gkz +gkz +gkz +iyd +kYQ +sOg +gkz +gkz +gkz +xnI +gkz +gkz +gkz +fpk +gkz +pyv +cYB +gkz +gkz +gkz +gkz +sbe +gkz +gkz +gGw +gkz +gkz +gkz +gkz +gkz +gkz +gkz +gkz +gkz +gkz +gkz +gkz +uCn +xIY +qiR boJ bPg bRN @@ -64426,22 +56296,22 @@ abL abL abL akC -akY -akW -akW -ami -amG -alm -alm -alm -alm -alm -alm -alm -apU -aqv -aqO -ark +ybq +hnu +hnu +kpk +uUK +wKY +wKY +wKY +wKY +wKY +wKY +wKY +dDT +hWO +iUn +oIc arF arQ arQ @@ -64451,31 +56321,31 @@ atm arQ arQ arF -avn -aqS +giW +dmw arF arQ arQ asu axl -axJ -ayt -ayt -ayt -apZ -aqS -aAx +iVk +wbJ +wbJ +wbJ +hVx +dmw +njp aBc -aBx -aCa -aCB -aCa -aCa -aEl -aEJ -aEJ -aFN -aGk +saO +egN +lrC +egN +egN +dGO +oXW +oXW +wmM +pXS aGL aHh aHF @@ -64534,12 +56404,12 @@ ayQ ayQ ayQ bci -bcJ -bdn -bec -waD -bfd -bfy +vke +lKH +nRb +oHV +oSS +gDs bci aaC aaC @@ -64568,70 +56438,70 @@ aZF aZF aZF boJ -bpg -bpu -bMc -bqD -bqD -brY -bqD -bqD -bqD -bqD -bqD -brY -bqD -bqD -bRj -bqD -bqD -byJ -bzc -byJ -byJ -byJ -byJ -byJ -byJ -bzc -byJ -bDV -bEN -bzc -byJ -byJ -byJ -bzc -byJ -byJ -byJ -buW -byJ -bMp -bMI -bqD -bqD -bqD -bqD -bqD -brY -bqD -bRj -bqD -bqD -bqD -bqD -brY -bqD -bSX +iGA +xIY +vSN +xOU +xOU +jfW +xOU +xOU +xOU +xOU +xOU +jfW +xOU +xOU +fZb +xOU +xOU +oxz +cld +oxz +oxz +oxz +oxz +oxz +oxz +cld +oxz +bZY +hCX +cld +oxz +oxz +oxz +cld +oxz +oxz +oxz +kjk +oxz +jUY +usd +xOU +xOU +xOU +xOU +xOU +jfW +xOU +fZb +xOU +xOU +xOU +xOU +jfW +xOU +mKC bTc -bTo -bqD -bqD -bTJ -bMh -bEL -bUh +kzI +xOU +xOU +wHq +gGv +oXx +hNn boJ bPg bRN @@ -64708,22 +56578,22 @@ abL abL abL akC -akW -akW -akW -akW -akW -anl -anR -akW -anR -akW -anR -akW -apV +hnu +hnu +hnu +hnu +hnu +eTD +xVf +hnu +xVf +hnu +xVf +hnu +tig alk -aqP -arl +kIJ +meV arE arE arE @@ -64733,31 +56603,31 @@ arE arE arE arE -avo -avW +ixJ +mBl arE arE arE arE axl -axK -ayt -azc +jvN +wbJ +bdV axl -azN -aqS -tue +vzM +dmw +wxL aBc -aBw -aCd -aCa -aCa -aDz +csj +xSO +egN +egN +lAN aEh -aEI -aEJ -aFN -aEJ +tmP +oXW +wmM +oXW aGN aHh aHF @@ -64816,12 +56686,12 @@ ayl ayQ ayQ bci -bcK -bdn -bed -beM -bfd -bfz +dxx +lKH +xOD +xfu +oSS +uJW bci aaC aaC @@ -64851,8 +56721,8 @@ aZF aZF bnk bpl -box -bpV +evs +kgZ bpl bnk boJ @@ -64876,9 +56746,9 @@ bzP bzP bzP bzP -bDm +vmG bDW -bEO +lZC bFD bFD bFD @@ -64910,10 +56780,10 @@ bRu bRu bRu bRu -bpc -bPo -bpu -bqA +vgj +crn +xIY +cvB boJ bPg bRN @@ -64990,11 +56860,11 @@ abL abL abL akC -akV +tUp alk -akV +tUp alk -alP +jxx ann ann ann @@ -65004,8 +56874,8 @@ ann ann alk alk -aqQ -arl +pUQ +meV arE arP arQ @@ -65015,31 +56885,31 @@ ast arQ arP arE -avm -avW +wOS +mBl arE arP arQ ast axl -axL -ayt -azc +bcw +wbJ +bdV axl -azN -aqS -aAx +vzM +dmw +njp aBc -aNM -aCe -aCC -aDb -aDB +hQc +pFH +hCh +mde +uAf aEm -aEK -aFo -aFO -aGl +wCX +koD +gym +cdE aGO aHj aHG @@ -65098,12 +56968,12 @@ ayC ayQ ayQ bci -bcJ -bdn -bee -waD -bfd -bfy +vke +lKH +tVG +oHV +oSS +gDs bci aaC aaC @@ -65132,10 +57002,10 @@ aZF aZF aZF bnk -bpi -box -bqh -bqE +mWB +evs +nVi +rEN bnk aZF aZF @@ -65158,15 +57028,15 @@ bAR bAq bBY bzP -bDn -bDX -bEP +qSa +jfI +kwD bFD -bGq -bGP -bHM -bGP -bIY +tWc +dvk +yfx +dvk +mJu bFD bKp bKW @@ -65182,20 +57052,20 @@ bLO bQz bRk bRu -bRS -bSg -bRS -bSg -bRS +fOq +ghp +fOq +ghp +fOq bRu bTe bTp bTx bRu -bpc -bMk -bME -bME +vgj +cxh +cXi +cXi bNx bOj bRQ @@ -65272,22 +57142,22 @@ abL abL abL akC -akZ +gMX alk -akZ +gMX alk -akZ +gMX ann -anS -aom -aom -aom -apt +vrx +xwV +xwV +xwV +pna ano -apW -arG -aqR -avn +nvP +hWJ +nNL +giW arF arQ arQ @@ -65297,36 +57167,36 @@ aFK atS aut auM -avp -aqS +wnh +dmw arF arQ arQ asu axl -axM -ayw -azd +iGH +rYp +xKt axl -azN -aqS -aAx +vzM +dmw +njp aBc -aBx -aCa -aCy -aCa -aCa -aEk -aEJ -aEJ -aFN -aGm +saO +egN +pND +egN +egN +jRV +oXW +oXW +wmM +jzY aGL aHk aHH aHW -aIv +vFV aIK aHh aGL @@ -65380,12 +57250,12 @@ ayC ayQ ayQ bci -bcJ -bcL -beb -bcL -bcL -bfy +vke +oxR +nXH +oxR +oxR +gDs bci aaC aaC @@ -65414,10 +57284,10 @@ bmg bmg bmg bmg -bnL -box -bqh -bqF +jJZ +evs +nVi +cHL bnk bqP bqP @@ -65440,15 +57310,15 @@ bAS bAq bBZ bzP -bDn -bDX -bEP +qSa +jfI +kwD bFD -bGr -bGT -bGT -bGT -bIZ +dll +cxR +cxR +cxR +qwV bFD bKq bKW @@ -65464,20 +57334,20 @@ bLO bQA bKW bRv -bRT -bRT -bRT -bRT -bRT +mda +mda +mda +mda +mda bRu bTf bTq bTy bTD -bpu -bMc -bpu -bqx +xIY +vSN +xIY +rdh boJ bUH bSE @@ -65560,16 +57430,16 @@ akC akC akC ann -anV +raU aop aop aop -apw +sHP ano -apX -apZ -aqS -arl +oPm +hVx +dmw +meV arE arE arE @@ -65579,8 +57449,8 @@ arE arE arE arE -avm -avW +wOS +mBl arE arE arE @@ -65590,20 +57460,20 @@ axl axl axl axl -azN -aqS -aAx +vzM +dmw +njp aBc -aBw -aCb -aCD -aUk -aCa -aEl -aEJ -aEJ -aFN -aGn +csj +qEY +pxv +qmk +egN +dGO +oXW +oXW +wmM +hZP aGP aHl aHF @@ -65661,13 +57531,13 @@ ayC ayQ ayQ ayQ -bcj -bcL -bcL -bef -bcL -bcL -bfy +wvm +oxR +oxR +pgd +oxR +oxR +gDs bci aaC aaC @@ -65691,15 +57561,15 @@ aZF aZF aZF bmg -bmL -bng -bnC -bot +xrd +vqf +ftX +wRa bmg -bnL -bpx -bpX -boQ +jJZ +ocW +mhl +mMU bro brZ brZ @@ -65717,20 +57587,20 @@ aZF aZF aZF bzP -bAs +oOo bAT bAq bAq bzP -bDn -bDX -bEP +qSa +jfI +kwD bFD -bGs -bGR -bGT -bIu -bJa +dqg +wNq +cxR +fRC +cWr bFD bKr bKW @@ -65746,20 +57616,20 @@ bPT bLP bKW bRu -bRU -bRT -bYi -bSF -bRT +wrc +mda +qfA +oQF +mda bRu bTg bTr bTz bYm -bpu -bPo -bpu -bqx +xIY +crn +xIY +rdh boJ boJ boJ @@ -65842,50 +57712,50 @@ abL abL abL ano -anV +raU aop aop aop -apw -apB -apY -apZ -aqS -aro -arG -arR -arG -arG -asT -arG -arG -arG -arG -avq -avX -arG -arR -arG -arG -asT -axN -axN -axN -axN -azO -aqS -aAx +sHP +qFz +goB +hVx +dmw +lAb +hWJ +cyl +hWJ +hWJ +eXT +hWJ +hWJ +hWJ +hWJ +jvV +nWx +hWJ +cyl +hWJ +hWJ +eXT +ulc +ulc +ulc +ulc +fMU +dmw +njp aBc -aBw -aCc -aCE -aDc -aDz +csj +sCq +riz +kcn +lAN aEh -aEI -aEJ -aFN -aGo +tmP +oXW +wmM +vGo aGQ aHm aHh @@ -65943,13 +57813,13 @@ azn azq azq azq -bck -bck -bck -beg -bcL -bcL -bfA +eni +eni +eni +wlk +oxR +oxR +qZs bci aaC aaC @@ -65973,15 +57843,15 @@ aZF aZF aZF bmg -bmM -bnh -bnh -bou +oWV +toj +toj +nGp boM -bnL -box -bqh -bqF +jJZ +evs +nVi +cHL bnk bsa bsJ @@ -66004,13 +57874,13 @@ bAU bBv bCa bCG -bDo -bDY -bEP +xLz +jlE +kwD bFD bFD bFD -bHP +qnh bFD bFD bFD @@ -66021,33 +57891,33 @@ bLQ bLQ bLQ bNH -bOq +pLQ bLQ bPq bPT bLP bKW bRu -bYh -bRT -bSq -bSG -bSK +nWA +mda +eqc +fTv +qyn bSY bTh bTs bTA bTF -bTK -bMh -bTK -bqx +iXA +gGv +iXA +rdh bTc -bUI -bNy +xlo +krm bVf -bVn -bVA +gkg +gzb bVe bPg bRN @@ -66124,52 +57994,52 @@ abL hrN hrN ano -anV +raU aop aop aop -apw -apC -apZ -aqx -aqT -arp -arH -arH -arH -asv -arH -arH -arH -arH -arH -avr -avY -arH -arH -arH -asv -arH -arH -arH -arH -arH -arH -aAC -aAx +sHP +eDL +hVx +rPB +gXa +sPP +mTH +mTH +mTH +wYh +mTH +mTH +mTH +mTH +mTH +ocn +oYa +mTH +mTH +mTH +wYh +mTH +mTH +mTH +mTH +mTH +mTH +ulz +njp aBc -aBw -aCa -aCB -aCa -aDC +csj +egN +lrC +egN +roe aEn -aEL -aFp -aFQ -aGp +prR +thi +pRL +gOF aGL -aHn +cWA aHh aHh aHh @@ -66226,12 +58096,12 @@ ayC ayQ ayQ bci -bcM -bcL -beh -bcL -bcL -bfB +mEu +oxR +uYs +oxR +oxR +kaH bci aaC aaC @@ -66255,15 +58125,15 @@ aZF aZF aZF bmg -bmN -bni -bnD -bnD -boN -boQ -boQ -bpY -bqF +xVg +vQC +uwb +uwb +qXT +mMU +mMU +vGd +cHL bnk bqP bqP @@ -66286,15 +58156,15 @@ bAq bAq bCb bzP -bDp -bDY -bEQ +tNa +jlE +ger bFD -bGt -bGS -bGT -bIv -bJb +oUX +eAE +cxR +eGI +nwY bFD bKt bKt @@ -66310,26 +58180,26 @@ bLP bLP bKW bRu -bRW -bSh -bYj -bSH -bSL +tff +lWC +eWy +kHb +aRh bRu bTi bTr bTz bRu -bTL -bTS -bMA -bpu -bUq -bpu -bqx +suk +njm +nrW +xIY +xap +xIY +rdh bVf -bYo -bVB +gyA +kes bVe bPg bRN @@ -66406,50 +58276,50 @@ abL abL hrN ano -anV +raU aop aop aop -apw -apC -apZ -apZ -aqS -avn -apZ -apZ -apZ -asw -apZ -apZ -atT -apZ -auN -ark -avZ -apZ -apZ -apZ -asw -apZ -apZ -apZ -apZ -apZ -apZ -aqS -aAx +sHP +eDL +hVx +hVx +dmw +giW +hVx +hVx +hVx +tmr +hVx +hVx +qWC +hVx +hjh +oIc +pkk +hVx +hVx +hVx +tmr +hVx +hVx +hVx +hVx +hVx +hVx +dmw +njp aBc -aBy -aCf -aSA -aDd -aDD +tEa +cxA +fzQ +dkz +goM aEh -aEM -aEJ -aFR -aGq +dqA +oXW +oDe +dvo aGL aHo aHI @@ -66508,12 +58378,12 @@ azp ayl ayQ bci -bcN -bcL -beh -bcL -bcL -bfC +fwD +oxR +uYs +oxR +oxR +clK bci aaC aaC @@ -66537,15 +58407,15 @@ aZF aZF aZF bmg -bmO -bnh -bnh -bnh +frt +toj +toj +toj boM -bnL -box -bqh -bqF +jJZ +evs +nVi +cHL bnk aZF bmQ @@ -66568,24 +58438,24 @@ bzP bzP bzP bzP -bDq -bDX -bEP +feP +jfI +kwD bFE -bGu -bGT -bHQ -bGT -bIZ +sFb +cxR +gxk +cxR +qwV bJG -bKu -bKY -bLR +oeT +rXA +kic bKt -bMJ -bNg -bNJ -bYg +mtT +fFC +iwk +cka bKt bKW bLP @@ -66598,20 +58468,20 @@ bRu bRu bRu bRu -bTj +uUq bTt bTB bTG -bME -bTT -bMH -bqC -bqC -bUJ -bME -bVg -bVp -bVC +cXi +jnQ +cYB +gkz +gkz +wtb +cXi +mey +jof +skK bVe bPg bRN @@ -66688,39 +58558,39 @@ hrN hrN abL ano -anV +raU aop aop aop -apw -apD -aqa -apZ -aqU -arr -arJ -arJ -arJ -arJ -asU -arJ -arJ -arJ -auO -avt -awa -aws -aws -aws -aws -axm -aws -aws -aws -aws -aqa -aqS -aAx +sHP +vUq +riE +hVx +nea +sQG +bwf +bwf +bwf +bwf +xRI +bwf +bwf +bwf +pPP +rPf +sOI +uxK +uxK +uxK +uxK +uAd +uxK +uxK +uxK +uxK +riE +dmw +njp aBd aBd aBd @@ -66729,8 +58599,8 @@ aBd aBd aBd aEN -aFr -aFS +sLY +wzs aGr aGL aGL @@ -66790,12 +58660,12 @@ ayl ayC ayC bci -bcO -bcL -beh -bcL -bcL -bfD +tXm +oxR +uYs +oxR +oxR +gWJ bci aaC aaC @@ -66819,15 +58689,15 @@ aZF aZF aZF bmg -bmO -bnh -bnh -bnh +frt +toj +toj +toj boM -bnL -box -bqh -bqF +jJZ +evs +nVi +cHL bnk aZF bmm @@ -66850,24 +58720,24 @@ bAV bAv bAv bzQ -bDr -bDX -bEP +hOJ +jfI +kwD bFE -bGu -bXY -bHR -bYa -bJc +sFb +cOF +gkI +psF +xBO bJG -bKv -bKZ -bLS -bMr -bLS -bLS -bNJ -bOs +ucp +hYj +fxX +fcJ +fxX +fxX +iwk +ujB bKt bPr bLQ @@ -66884,16 +58754,16 @@ bTk bTu bTu bRu -bTM -brY -bqD -bSX +nXG +jfW +xOU +mKC bTc -bUK -bqx +sWE +rdh bVf -bVq -bVD +xkO +kOz bVe bPg bRN @@ -66970,16 +58840,16 @@ akD akD akD anp -anV +raU aop aop aop -apw +sHP ano -aqb -apZ -aqV -ars +hsT +hVx +sGD +tUz arE arE arE @@ -66989,8 +58859,8 @@ arE arE arE arE -avm -avW +wOS +mBl arE arE arE @@ -67000,20 +58870,20 @@ axn axn axn axn -apC -aqS -aAx +eDL +dmw +njp aBd -aBz -aCg -aCG -aDe -aDE +noT +lmS +aTC +mrb +sqI aBd -aEH -aEJ -aFT -aGi +lVz +oXW +vNv +hsc aGR aHp aHJ @@ -67072,12 +58942,12 @@ ayl ayl ayC bci -bcN -bcL -bei -bcL -bcL -bfE +fwD +oxR +jHw +oxR +oxR +qTl bci aaC aaC @@ -67101,15 +58971,15 @@ aZF aZF aZF bmg -bmP -bnj -bnF -bnh +iqg +cQT +woV +toj bmg -bpk -box -bqh -bqG +lMN +evs +nVi +ukz bnk aZF aZF @@ -67132,23 +59002,23 @@ bAW bBw bAv bzQ -bDs -bDX -bEP +mCp +jfI +kwD bFE -bGu -bGT -bHS -bGT -bIZ +sFb +cxR +dTo +cxR +qwV bJG -bKw -bLa -bLT +xCM +cxC +fgY bKt bKt bKt -bNL +kbM bKt bOV bOV @@ -67171,10 +59041,10 @@ bTl bTl boJ boJ -bUL -bqx +tnH +rdh bVe -bVr +gJi bVe bVe bPg @@ -67246,22 +59116,22 @@ abL abL abL akD -ala +sIC alo -ala +sIC alo -ala +sIC anp -anW -aoq -aoq -aoq -apx +soK +nvv +nvv +nvv +kxn ano -aqc -aqy -aqW -avn +uuB +bbr +tiP +giW arF arQ arQ @@ -67271,36 +59141,36 @@ ato arQ arQ arF -avn -aqS +giW +dmw arF arQ arQ asu axn -axO -ayx -aze +mWS +dsi +gZw axn -apC -aqS -aAx +eDL +dmw +njp aBd -aBA -aBg -aBg -aDf -aDF +hbk +eHv +eHv +wYc +rZt aBd -aEO -aFs -aFT -aGj +pAL +kWv +vNv +gsB aGR aHq aHK aId -aIz +qgG aIP aoG aoG @@ -67354,12 +59224,12 @@ ayC ayl ayl bci -bcN -bcL -beh -bcL -bcL -bfF +fwD +oxR +uYs +oxR +oxR +gwo bci aaC aaC @@ -67386,11 +59256,11 @@ bmg bmg bmg bmg -bow +xet bmg bpl -box -bpZ +evs +wgZ bpl bnk bnk @@ -67410,54 +59280,54 @@ bmm bml bzQ bAw -bXR +mpu bBx bCc bzQ -bDt -bDX -bEP +uDE +jfI +kwD bFD -bGv -bGV -bGT -bGV -bJd +eXu +ucg +cxR +ucg +gTb bFD bKt bKt bKt bMs -bMK -bNh -bNP -bOt +xCq +ocX +wHc +mYe bOV -bPs -bPU -bQD +oGk +sVs +xpr bOV -bRx -bRY -bSi -bXB +jWI +mhr +lZR +qHC bOV bEe bSZ bTl -lIV -anU -anU -anU -aJC +xCw +nTa +nTa +nTa +qYG bTl -bUj -brn -bUM -bqB -brn -bpu -bUf +slI +csE +erz +kos +csE +xIY +tYY boJ bPg bRN @@ -67528,11 +59398,11 @@ abL abL abL akD -alb +drS alo -alb +drS alo -alb +drS anp anp anp @@ -67542,8 +59412,8 @@ anp anp alo alo -aqX -aru +vGO +dFJ arE arS arQ @@ -67553,31 +59423,31 @@ ast arQ arS arE -avm -avW +wOS +mBl arE arS arQ ast axn -axP -ayz -azg +sHW +vTm +iaA azA -apC -aqS -aAx +eDL +dmw +njp aBd -aBB -aCH -aCH -aDg -aDG +xBX +hJi +hJi +ceA +qGf aBd -aEP -aFt -aFU -aGs +tUu +ewY +smT +jmW aGS aHr aHL @@ -67597,15 +59467,15 @@ aKU aLz aLz aLz -aNs -aNW -bFY -aPr +fKB +jDD +edq +ihY aKw -aRm -aRY -aSO -aTr +gPY +nRP +pPc +tfE aKw atV axr @@ -67636,12 +59506,12 @@ ayl ayC ayl bci -bcP -bcL -beh -bcL -bcL -bfB +kaP +oxR +uYs +oxR +oxR +kaH bci aaC abf @@ -67667,16 +59537,16 @@ aZF aZF aZF bnk -bnG -box -boO -boO -box -bqh -boO -brp -boO -bsK +fkb +evs +mFU +mFU +evs +nVi +mFU +ttC +mFU +xxU bnk aZF bmm @@ -67696,50 +59566,50 @@ bAv bAv bAv bzQ -bDu -bDX -bEP +qbU +jfI +kwD bFD bFD bFD -bHT +rEl bFD bFD bFD -bKx -bLb -bLU +nnw +rKW +mEq bMs -bML -bNi -bNo -bMQ -bOW -bPt -bPV -bQE +jbO +jgG +xWn +ioJ +hKQ +xef +kdL +igh bOV -bRy -bQF -bQF -bSu +vKe +xmk +xmk +cRO bOV bEe bTa bTl -mXA +rfs bTv bTv bTv -aMA +gyj bTl -bUk -bEL -bTS -bpu -bpu -bpu -bVE +psJ +oXx +njm +xIY +xIY +xIY +vUn boJ bVS bRN @@ -67810,22 +59680,22 @@ abL abL abL akD -alc -alc -alc -alc -alc -anq -anX -alc -anX -alc -anX -alc -aqd +wGE +wGE +wGE +wGE +wGE +yjg +iVO +wGE +iVO +wGE +iVO +wGE +pHc alo -aqY -arw +hkU +mNi arE arE arE @@ -67835,31 +59705,31 @@ arE arE arE arE -avo -avW +ixJ +mBl arE arE arE arE axn -axQ -ayz -azg +fUO +vTm +iaA azA -apC -aqS -tue +eDL +dmw +wxL aBd aBd -aCj +oVc aBd -aDh -aDH +pTn +eSl aBd -aEQ -aEJ -aFT -aGj +wEj +oXW +vNv +gsB aGR aHs aHK @@ -67879,15 +59749,15 @@ aKV aLA aLQ aMI -aNt -aNX -aOw -aNX -aQt -aNX -aNX -aSP -aTs +sIY +vMo +unL +vMo +uhM +vMo +vMo +uhk +nPG aKw aui axs @@ -67918,12 +59788,12 @@ ayl ayl lJQ bci -bcQ -bdo -bej -beO -bff -bfG +iHk +xoY +mRU +xIH +sZO +wJI bci aaC acx @@ -67949,16 +59819,16 @@ aZF aZF aZF bnk -bnH -box -box -box -box -bqb -boQ -boQ -bsb -bsL +imv +evs +evs +evs +evs +mGu +mMU +mMU +uts +vuz bnk aZF aZF @@ -67973,55 +59843,55 @@ bmU bmk bmQ bzQ -bAy +eIm bAv bBy bCd bCH -bDo -bDY -bER -bLf -bLf -bLf -bHU -bLf -bJe -bLf -bKy -bLc -bLV -bMt -bMM -bNP -bNr -bOu +xLz +jlE +iTp +sRy +sRy +sRy +ioH +sRy +hWY +sRy +wuO +joQ +eim +swe +otI +wHc +oKC +jZw bOV -bPu -bPW -bQF -bRm -bQF -bRZ -bQF -bSv +puP +sKA +xmk +rGt +xmk +jvy +xmk +mpp bOV bEe bCI bTl -mXA +rfs bTv bTv bTv -aMA -bUc -bUl -bpu -buW -bpu -bpu -bpu -bVF +gyj +sKK +wIC +xIY +kjk +xIY +xIY +xIY +oIH boJ bCg bWf @@ -68092,22 +59962,22 @@ abL abL abL akD -ald -alc -alc -amj -alq -alq -alq -alq -alq -alq -alq -alq -aqe -aqz -aqZ -apZ +oWG +wGE +wGE +jXh +jUD +jUD +jUD +jUD +jUD +jUD +jUD +jUD +pxN +mKg +iaw +hVx arF arQ arQ @@ -68117,31 +59987,31 @@ atp arQ arQ arF -avn -aqS +giW +dmw arF arQ arQ awT axn -axR -ayz -azh -azB -azQ -aAH -aAx +rsZ +vTm +tku +hvw +mAG +cDP +njp aBe -aBC -aBg -aCI -aDi -aDI +oUE +eHv +mOM +oYz +oIZ aEp -aER -aEJ -aFT -aGj +pDd +oXW +vNv +gsB aGR aGR aGR @@ -68161,15 +60031,15 @@ aKW aLz aLR aLz -aNu -aNZ -aOy -aPs +tvL +ibb +rZq +dCj aKw -aRn -aNZ -aNZ -aNZ +cgI +ibb +ibb +ibb aKw aui axs @@ -68200,12 +60070,12 @@ bas ayl lJQ bci -bcR -bdp -bek -beP -bdp -bfH +cYI +kah +vgl +hzb +kah +qPP bci aaC alR @@ -68231,16 +60101,16 @@ aZF aZF aZF bnk -bnI -box -box -box -box -bqh -box -box -box -bsM +vfB +evs +evs +evs +evs +nVi +evs +evs +evs +pky bnk aZF aZF @@ -68260,50 +60130,50 @@ bAv bAv bAv bzQ -bDv -bEb -bES -bFG -bFG -bGW -bFG -bFG -bFG -bFG -bKz -bLd -bLW -bMu -bMN -bNk -bNr -bOv +dWn +wEv +eeE +cJh +cJh +gJX +cJh +cJh +cJh +cJh +pPw +dJw +guX +iiD +puw +tjY +oKC +pFc bOV -bPv -bPX -bQF -bQF -bQF -bSt -bQF -bSw +eQc +mtf +xmk +xmk +xmk +rHT +xmk +xsG bOV bEe bCI bTl -mXA +rfs bTv bTv bTv -aMA -bpc -bpu -bpu -bUN -bME -bMz -bpu -bVG +gyj +vgj +xIY +xIY +xhX +cXi +mRB +xIY +qUt boJ bVT bEe @@ -68374,22 +60244,22 @@ adr abL abL akD -ale -alq -alq -amk -alc -alc -alc -alc -alc -alc -alc -alc -aqf +iYS +jUD +jUD +wmP +wGE +wGE +wGE +wGE +wGE +wGE +wGE +wGE +eeV alo -apC -arw +eDL +mNi arE arS arQ @@ -68399,31 +60269,31 @@ ast arQ arS arE -avm -avW +wOS +mBl arE arS awN ast axn -axS -ayA -azi -azC -arH -aAI -kKZ -aBf -aBD -aBD -aBD -aDj -aBD -aBf -aES -aFo -aFV -aGj +ceO +mDf +jxN +cxg +mTH +psc +xTT +rXZ +wSQ +wSQ +wSQ +mZM +wSQ +rXZ +wXN +koD +xUQ +gsB aGT aHt aHM @@ -68443,15 +60313,15 @@ aKX aLz aLR aLz -aNv -aNZ -aOy -aPt +tLI +ibb +rZq +ecT aKw -aRo -aNZ -aNZ -aTt +xYi +ibb +ibb +hCF aKw aui axs @@ -68482,12 +60352,12 @@ bbt ayl ayl bci -bcS -bcL -bel -beQ -bcL -bfI +wPL +oxR +xFk +cof +oxR +dyg bci aaC acx @@ -68513,16 +60383,16 @@ aZF aZF aZF bnk -bnJ -box -box -bpm -bpy -bqd -bqI -box -box -bsN +cMe +evs +evs +xSQ +qpf +xXr +nBc +evs +evs +riQ bnk aZF aZF @@ -68542,9 +60412,9 @@ bAZ bAZ bCe bzQ -bDw -bEc -bET +jLW +iUr +ddA bDx bDx bDx @@ -68552,40 +60422,40 @@ bDx bDx bDx bDx -bKA +wSG bLe bDx bMs -bMO -bNP -bNr -bOw +wuJ +wHc +oKC +fNm bOV -bPv -bPY -bQG +eQc +nmX +gnu bOV -bRz -bQF -bQF -bSx +str +xmk +xmk +jxA bOV bEe bCI bTl -mXA +rfs bTv bTv bTv -aMA -bpc -bpu -bpu -buW -bpu -bpu -bpu -bVE +gyj +vgj +xIY +xIY +kjk +xIY +xIY +xIY +vUn boJ bCI bEe @@ -68656,22 +60526,22 @@ abL abL abL akD -alc -alc -alc -alc -alc -anq -alc -alc -alc -api -alc -alc -alc +wGE +wGE +wGE +wGE +wGE +yjg +wGE +wGE +wGE +qmz +wGE +wGE +wGE alo -apC -arw +eDL +mNi arE arE arE @@ -68681,36 +60551,36 @@ arE arE arE arE -avm -avW +wOS +mBl arE arE arE arE axn -axT -ayz -azj +rIw +vTm +cyt azA -apC -aAJ -apZ -aBg -aBg -aBg -aBg -aDi -aBg -aBg -aET -aEJ -aFT -aGj +eDL +ooV +hVx +eHv +eHv +eHv +eHv +oYz +eHv +eHv +htt +oXW +vNv +gsB aGT aHu aHN aIh -aIC +ong aGV aoT aoG @@ -68725,15 +60595,15 @@ aKY aLz aLT aLz -aNw -aNZ -aOy -aPu +ufm +ibb +rZq +sxK aKw -aRp -aNZ -aNZ -aTu +pHu +ibb +ibb +wRe aKw aui axs @@ -68764,12 +60634,12 @@ bat lJQ ayl bci -bcT -bcL -bel -beQ -bcL -bfJ +cKy +oxR +xFk +cof +oxR +gVe bci aaC baW @@ -68795,16 +60665,16 @@ aZF aZF aZF bnk -bnK -box -box -bpn -bXF -bqe -bqJ -box -box -bsO +tJp +evs +evs +wfQ +iwd +doo +fGl +evs +evs +sZu bnk aZF aZF @@ -68833,41 +60703,41 @@ bGw bGw bGw bDx -bJH -bKB -bLf -bLU +mgX +tlf +sRy +mEq bMs -bMP -bNP -bNr -bOx +jrZ +wHc +oKC +icm bOV -bPw -bPZ -bQH +tNt +sug +tNK bOV -bRA -bSb -bSj -bSy +eJN +qZY +cpZ +xjc bOV bEe bCI bTl -mXA +rfs bTv bTv bTv -aMA -bTo -bTJ -bpu -buW -bpu -bpu -bpu -bVE +gyj +kzI +wHq +xIY +kjk +xIY +xIY +xIY +vUn boJ bCI bEe @@ -68938,22 +60808,22 @@ abL abL abL akD -alf +xxe alo -alf +xxe alo -alb +drS alo -anY +kvp alo -anY +kvp alo -anY +kvp alo -anY +kvp alo -apC -apZ +eDL +hVx arK arT arT @@ -68963,31 +60833,31 @@ asu arQ arQ arF -avn -aqS +giW +dmw arF arQ arQ asu axn -axU -ayz -azj +snm +vTm +cyt azA -apC -aAJ -aAx +eDL +ooV +njp aBh -aBE -aBg -aBg -aDk -aDJ +oFQ +eHv +eHv +pbg +ctB aBh -aEU -aFp -aFW -aGs +uOv +thi +sKx +jmW aGU aHv aHO @@ -69007,31 +60877,31 @@ aKZ aLz aLR aLz -aNx -aNZ -aOy -aPu +mYh +ibb +rZq +sxK aKw -aRq -aNZ -aNZ -aTu +aXD +ibb +ibb +wRe aKw aui axs awY -aVv -aVT -aVT -aVT -aVT -aVT -aVT -aVT -aVT -aVT -aVT -aZx +nrQ +ukL +ukL +ukL +ukL +ukL +ukL +ukL +ukL +ukL +ukL +qLI awY aui aui @@ -69046,12 +60916,12 @@ bat ayl lJQ bci -bcU -bcL -bel -beQ -bcL -bfK +dju +oxR +xFk +cof +oxR +ulw bci aaC acm @@ -69077,16 +60947,16 @@ aZF aZF aZF bnl -bnL -box -box -bpo -bXF -bqe -bqK -box -box -bsO +jJZ +evs +evs +krU +iwd +doo +rSz +evs +evs +sZu bnk aZF aZF @@ -69115,15 +60985,15 @@ bGw bGw bGw bDx -bJI -bHU -bLg -bDo -bMv -bMQ -bNk -bNr -bOy +hzL +ioH +xth +xLz +pNH +ioJ +tjY +oKC +xuU bOX bOX bOX @@ -69137,19 +61007,19 @@ bOX bEe bCI bTl -mXA +rfs bTv bTv bTv -aMA +gyj bTl -bUm -bUr -bTT -bME -bME -bVs -bYp +pOf +vLm +jnQ +cXi +cXi +nlE +uTF boJ bCI bWh @@ -69220,22 +61090,22 @@ abL abL hrN akD -alg +dkT alo -alQ +mjj alo -amI +gPq alo -anZ +uFU alo -anZ +uFU alo -anZ +uFU alo -aqg +cfT alo -apC -arw +eDL +mNi arE arU ash @@ -69245,31 +61115,31 @@ ast arQ arS arE -avm -avW +wOS +mBl arE arS arQ ast axn -axV -ayB -azk +nsN +kXz +eiQ axn -apC -aAJ -aAx +eDL +ooV +njp aBd -aBF -aCm -aCm -aDl -aDK +dIf +udV +udV +jQU +naO aBd -aEV -aFv -aFX -aGu +iXJ +iyJ +cEg +izK aGT aHw aHN @@ -69289,20 +61159,20 @@ aLa aLz aLR aLz -aNy -aNZ -aOz -aPv +rUn +ibb +uwd +wMB aKw -aRq -aNZ -aNZ -aTv +aXD +ibb +ibb +dAf aKw aui axs aui -aVw +ugS aVU aVV aVV @@ -69313,7 +61183,7 @@ aVV aVV aVV aVU -aZy +xsM lXk aui aui @@ -69328,12 +61198,12 @@ bah lJQ lJQ bci -bcT -bdq -bem -beR -bfg -bfL +cKy +gKG +jDM +hkc +oXV +teb bci aaC acm @@ -69359,16 +61229,16 @@ aZF aZF aZF bnm -bnL -box -box -bpn -bXF -bqe -bqJ -box -box -bsP +jJZ +evs +evs +wfQ +iwd +doo +fGl +evs +evs +sSa bnk aZF aZF @@ -69397,41 +61267,41 @@ bGw bGw bGw bDx -bJJ -bKD -bLh -bLX +ilG +xif +xzg +wJB bMs -bMR -bNP -bNr -bOz +hkx +wHc +oKC +wls bOX -bPx -bQa -bQI +qdX +uol +hpw bOX -bRB -bSc -bSk -bSz +sWp +rNM +ezf +lLi bOX bEe bCI bTl -kjt -aJZ -aJZ -aJZ -xGL +mgO +lcw +lcw +lcw +jrv bTl -bTM -buW -bUP -bUZ -bVi -buW -bVI +nXG +kjk +ewS +vYm +frJ +kjk +vMS boJ bCI bCI @@ -69516,8 +61386,8 @@ akD akD akD akD -apD -arx +vUq +qyp arD arD arD @@ -69527,8 +61397,8 @@ arD arD arD arD -avu -awb +sbP +xri arD arD arD @@ -69538,9 +61408,9 @@ axo axo axo axo -umI -aAL -tFy +nui +dib +cpR aBd aBd aBd @@ -69571,20 +61441,20 @@ bwk aLz aLR aLz -aNz -aNZ -aNZ -aPw +clZ +ibb +ibb +vdg aKw -aRr -aRZ -aNZ -aTv +sNN +dzm +ibb +dAf aKw aui axs aui -aVw +ugS aVV aWB aXc @@ -69595,7 +61465,7 @@ aVW aVW aVV aVV -aZy +xsM aui lXk aui @@ -69610,12 +61480,12 @@ aaG aar lJQ bci -bcV -bcL -ben -beQ -bcL -bfM +vVr +oxR +qhC +cof +oxR +jZH bci aaC acm @@ -69641,16 +61511,16 @@ aZF aZF aZF bnk -bnM -box -box -bpo -bXF -bqe -bqK -box -box -bsQ +ltb +evs +evs +krU +iwd +doo +rSz +evs +evs +lpD bnk bug bug @@ -69684,19 +61554,19 @@ bDx bDx bDx bMs -bMS -bNP -bNr -bOv +taY +wHc +oKC +pFc bOX -bPy -bQb -bQJ +rtt +rvH +kJe bOX -bRC -bSd -bSl -bYk +dKJ +cIX +nqr +lay bOX bEe bCI @@ -69708,11 +61578,11 @@ bTl bTl bTl bTN -bUs +lVP bTN bVa bVa -bVt +xto bVa bVa bVa @@ -69855,18 +61725,18 @@ aLU aMK aKw aOa -aOA +tZo aKx aKw aKw aKw -aSQ +fQw aKw aKw aui axs aui -aVw +ugS aVV aWC aXd @@ -69877,7 +61747,7 @@ aWB aWE aVV aVV -aZy +xsM lXk aui aui @@ -69892,12 +61762,12 @@ aac aaf aaG bci -bcW -bdr -beo -beS -bfh -bfN +nIy +fMc +iXj +kOR +bUW +qzf bci aaG abG @@ -69923,22 +61793,22 @@ aZF aZF aZF bnk -bnN -box -box -bpo -bXF -bqe -bqK -box -box -bqF +wIr +evs +evs +krU +iwd +doo +rSz +evs +evs +cHL bnk -buh -buh -bvD -buh -buh +lbl +lbl +mzm +lbl +lbl bqP brt bsf @@ -69966,19 +61836,19 @@ bCJ bCJ bCJ bMw -bMT -bNo -bNO -bOw +oWw +xWn +tNB +fNm bOX bOX -bQc +kvO bOX bOX -bRD -bSd -bSl -bSB +tpv +cIX +nqr +cFy bOX bEe bCI @@ -69987,17 +61857,17 @@ aZF aZF aZF bTN -bTV -bUd -bUe -bUx -bUQ +sis +rFQ +mOk +nbY +cGh bVa -bVj -bVw -bVJ -bVM -bVU +eGt +vjk +qvW +sTD +rKG bVa bEe bCI @@ -70140,15 +62010,15 @@ aLi aLi aPx aKy -aRs -aSa -aSc -aRs +dvT +lLe +eFl +dvT aKy aui axs aui -aVw +ugS aVV aWD aXe @@ -70159,7 +62029,7 @@ aWC aWF aVV aVV -aZy +xsM lXk aui aui @@ -70168,7 +62038,7 @@ ayk ayk lJQ ayk -rbS +xmj acj acD aac @@ -70205,22 +62075,22 @@ aZF aZF aZF bnk -bnO -box -box -box -bpA -bqf -box -box -box -bqF +dHW +evs +evs +evs +gOT +rWM +evs +evs +evs +cHL btz -bui -bui -bui -bui -bwz +jTN +jTN +jTN +jTN +rJJ btz brt bsf @@ -70248,19 +62118,19 @@ bCI bCI bLY bMs -bMU -bNr -bNP -bOx +sZf +oKC +wHc +icm bOX -bPz -bQd -bQK +tQo +dVY +kij bOX -bRE -bSd -bSl -bSC +vuc +cIX +nqr +etL bOX bEe bCI @@ -70271,13 +62141,13 @@ aZF bTN bTN bTN -bUn -bUu -bUR +hvI +nKL +oww bVa -bVk -bVw -bVK +nME +vjk +qCz bVa bVa bVa @@ -70422,15 +62292,15 @@ aOb aOB aPy aKy -aRs -aSb -aSc -aRs +dvT +oBl +eFl +dvT aKy aui axs aui -aVw +ugS aVW aVV aVV @@ -70441,7 +62311,7 @@ aWD aWG aVV aVV -aZy +xsM aui aui aui @@ -70450,7 +62320,7 @@ ayk ayk ayk ayk -wDj +uvz oHE acj aag @@ -70487,22 +62357,22 @@ aZF aZF aZF bnk -bnP -box -box -bpp -box -bqh -bqL -box -box -bqF +nzD +evs +evs +tfA +evs +nVi +xaZ +evs +evs +cHL btA +uHh buj buj -buj -bui -bwA +jTN +iHz btz brt bsf @@ -70530,19 +62400,19 @@ bCg bCg bCg bMs -bMV -bNr -bNP -bNr -bOY -bPA -bQd -bQL +cmJ +oKC +wHc +oKC +lQg +dbu +dVY +rgo bOX -bRF -bPx -bQI -bSB +qWD +qdX +hpw +cFy bOX bEe bCI @@ -70551,17 +62421,17 @@ aZF aZF aZF bTN -bTV -bUd -bUe -bUv -bUe +sis +rFQ +mOk +mFM +mOk bVa -bVl -bVw -bVk -bVM -bVU +pEY +vjk +nME +sTD +rKG bVa bEe bCI @@ -70702,17 +62572,17 @@ aMN wTN aOc aMa -aPz +oPd aKy -aRt -aSc -aSc -aSc +fdv +eFl +eFl +eFl aKy aui axs aui -aVw +ugS aVV aWE aXf @@ -70723,7 +62593,7 @@ aVV aVV aVV aZs -aZy +xsM aui aui aui @@ -70732,7 +62602,7 @@ ayk ayk ayk ayk -wDj +uvz cbk bbu bbE @@ -70769,22 +62639,22 @@ aZF aZF aZF bnk -bnQ -box -boP -box -box -bqg -boQ -boQ -boQ -boQ -btB +hbZ +evs +twJ +evs +evs +gHF +mMU +mMU +mMU +mMU +hWS buk buk bvE -bui -bwA +jTN +iHz btz brt bsf @@ -70812,19 +62682,19 @@ aZF aZF aZF bMs -bMW -bNr -bNQ -bMQ -bQN -bQN -bQe -bQM +oJr +oKC +dFi +ioJ +qjQ +qjQ +dnE +xFq bOX -bRG -bPx -bQI -bYk +egO +qdX +hpw +lay bOX bEe bCI @@ -70835,13 +62705,13 @@ aZF bTN bTN bTN -bUo -bUu -bUR +gQd +nKL +oww bVa -bVk -bVw -bVL +nME +vjk +jWa bVa bVa bVa @@ -70985,16 +62855,16 @@ aND aOd aOC aOd -aQu -aRu -aRu -aSR -aSc +iSu +nKu +nKu +rSb +eFl aKy aui axs aui -aVw +ugS aVV aWF aXg @@ -71005,7 +62875,7 @@ aVV aVV aVV aVV -aZy +xsM aui aui aui @@ -71014,13 +62884,13 @@ ayk ayk ayk ayk -eSd -kfW +cTG +pWF lqY -bbF -bbR -bcl -xrT +skg +vWK +wCQ +mta bbE acm aac @@ -71051,24 +62921,24 @@ aZF aZF aZF bnk -bnR -box -box -box -box -bqh -box -box -box -bsR +gHd +evs +evs +evs +evs +nVi +evs +evs +evs +wQC btA bul buj bvF -bui -bwB +jTN +hHZ btz -bxG +lwX bsf bqP bqP @@ -71094,19 +62964,19 @@ bmh bnT bml bMs -bMX -bNr -bNR -bOB +rRj +oKC +oqu +qas bOX -bPC -bQf -bQN -bRn -bRH -bSe -bQI -bSB +ivQ +qFG +qjQ +nBH +nTD +sDN +hpw +cFy bOX bEe bCI @@ -71115,17 +62985,17 @@ aZF aZF aZF bTN -bTW -bUd -bUe -bUx -bUe +xfr +rFQ +mOk +nbY +mOk bVa -bVl -bVw -bVk -bVM -bVU +pEY +vjk +nME +sTD +rKG bVa bEe bCI @@ -71268,15 +63138,15 @@ aMN aOc aPA aKy -aRv -aSd -aSS -aTw +iAR +oIn +vKN +wty aKy aui axs aui -aVw +ugS aVV aWG aXc @@ -71287,7 +63157,7 @@ aVV aVV aXc aVV -aZy +xsM aui aui aui @@ -71299,10 +63169,10 @@ ayk ayQ ayQ lqY -bbG -waN -waN -giH +qQs +xKi +xKi +uGg bbE acm aac @@ -71333,23 +63203,23 @@ aZF aZF aZF bnk -bnJ -boz -boQ -boQ -boQ -bqi -bqM -brq -box -bsS +cMe +hbx +mMU +mMU +mMU +nWK +fxF +iBd +evs +txy btz bum buj bvG buk buk -bwZ +feB bxH brZ brZ @@ -71376,19 +63246,19 @@ bmi bmT bmm bMs -bMY -bNs -bNS -bOC +cLA +epI +rWS +oBH bOX -bPD -bQf -bQO +kGg +qFG +flP bOX -bRI -bSf -bSm -bSD +rAp +jcI +rBt +rzO bOX bEe bCI @@ -71400,11 +63270,11 @@ bTN bTN bTN bTN -bUy -bUR +koI +oww bVa -bVk -bVx +nME +fiL bVa bVa bVa @@ -71558,7 +63428,7 @@ aKy aui axs aui -aVw +ugS aVV aVV aXd @@ -71569,7 +63439,7 @@ aVV aVV aXd aVV -aZy +xsM aui aui aui @@ -71581,10 +63451,10 @@ ayk ayQ ayQ bbu -bbG -waN -waN -qwB +qQs +xKi +xKi +dYB bbE acm aac @@ -71615,16 +63485,16 @@ aZF aZF aZF bnk -bnL -box -box -box -box -box -bqN -brr -box -bsS +jJZ +evs +evs +evs +evs +evs +pse +toW +evs +txy btz bun buj @@ -71632,8 +63502,8 @@ bvH bwg bwg btz -bxI -bse +wKc +tEr bsf brt byc @@ -71664,7 +63534,7 @@ bMs bMs bOX bOX -bQg +lYE bOX bOX bOX @@ -71679,17 +63549,17 @@ aZF aZF aZF bTN -bTX -bUe -bUd -bUz -bUS +uEO +mOk +rFQ +vua +jKY bVa -bVl -bVw -bVM -bVk -bVV +pEY +vjk +sTD +nME +nhF bVa bEe bCI @@ -71840,7 +63710,7 @@ aui aui axs aui -aVw +ugS aVV aVV aXe @@ -71851,7 +63721,7 @@ aVV aVV aXe aWB -aZy +xsM aui atI ayJ @@ -71862,11 +63732,11 @@ ayC ayQ ayQ ayQ -bbw -waN -waN -waN -uAe +qtp +xKi +xKi +xKi +lSQ bbE acm aac @@ -71897,20 +63767,20 @@ aZF aZF aZF bnk -bnS -boA -boA -boA -boA -bqj -bqO -brr -bsc -bsT +snb +uRZ +uRZ +uRZ +uRZ +sHJ +sUC +toW +nua +rdZ btz buo buj -bvI +doc bwh bwh btz @@ -71945,9 +63815,9 @@ bnT bml aZF bOX -bPE -bQh -bQP +rWP +tad +mkB bOX aZF aZF @@ -71961,17 +63831,17 @@ aZF aZF aZF bTN -bTV -bUe +sis +mOk bTN -bUx -bUT +nbY +imA bVa -bVm -bVy +ist +ewt bVa -bVk -bVU +nME +rKG bVa bEe bCI @@ -72122,7 +63992,7 @@ aui aui axs aui -aVw +ugS aVV aVV aVV @@ -72133,7 +64003,7 @@ aVV aVW aVV aWC -aZy +xsM aui att att @@ -72145,10 +64015,10 @@ ayQ ayQ ayQ bbu -bbG -waN -waN -dzn +qQs +xKi +xKi +pET bbE acm aac @@ -72227,9 +64097,9 @@ bmU bmm bml bOX -bPF -bQi -bQQ +tdT +lgF +gdC bOX aZF aZF @@ -72404,7 +64274,7 @@ lXk aui axs aui -aVw +ugS aVV aVV aVV @@ -72415,7 +64285,7 @@ aVV aVV aVV aWD -aZy +xsM aui att atI @@ -72427,10 +64297,10 @@ ayk ayC ayQ lqY -dgG -ygw -fHx -sKH +rDw +uLh +pRe +saq bbE acm aac @@ -72509,9 +64379,9 @@ bmU bmj bmQ bOX -bPG -bQj -bPG +mys +kJg +mys bOX aZF aZF @@ -72644,11 +64514,11 @@ agP aax azR azR -aCp -aCK -aDm -aDM -aEq +eaX +eTG +jjo +iQk +tHb azR aoG aoF @@ -72686,7 +64556,7 @@ aui aui axs aui -aVw +ugS aVV aWH aXh @@ -72697,7 +64567,7 @@ aVV aVV aVV aVV -aZy +xsM aui att att @@ -72791,16 +64661,16 @@ bmU bmk bmQ bOX -bPH -bPH -bQR +hjM +hjM +xaF bOX aZF aZF aZF aZF bCg -bSP +sbp bCI bCI bCI @@ -72925,12 +64795,12 @@ aax aax azR azR -aBK -aBL -aCL -aDn -aBN -aEr +rAq +kbz +ePA +ntr +wij +iDL aEW aoF aoF @@ -72968,7 +64838,7 @@ aui aui axs aui -aVw +ugS aVV aVV aVV @@ -72979,7 +64849,7 @@ aVV aVV aVV aZt -aZy +xsM aui att att @@ -73206,13 +65076,13 @@ aax aax hrN azR -aBi -aBL -aBN -aCM -aDo -aBN -aEs +sSj +kbz +wij +ena +vty +wij +nCt azR aoI aoI @@ -73250,7 +65120,7 @@ aui aui axs aui -aVw +ugS aVW aVV aVV @@ -73261,7 +65131,7 @@ aVV aVV aVV aVV -aZy +xsM atV att att @@ -73488,14 +65358,14 @@ agP abL hrN azR -aBj -aDp -aDp -aCN -aDp -aDp -aDp -aEX +rzp +bne +bne +elk +bne +bne +bne +dai apy apy aqw @@ -73532,7 +65402,7 @@ aui aui axs aui -aVw +ugS aVW aVV aVV @@ -73543,7 +65413,7 @@ aVV aVV aVV aVV -aZy +xsM aui att atI @@ -73770,13 +65640,13 @@ abL abL abL azR -aBk -aBN -aBN -aCM -aBN -aBN -aEt +voH +wij +wij +ena +wij +wij +qPL azR apM aoI @@ -73814,7 +65684,7 @@ atV aui axs aui -aVw +ugS aVV aVV aVV @@ -73825,7 +65695,7 @@ aVV aVV aVV aVV -aZy +xsM atV att att @@ -73928,7 +65798,7 @@ aZF aZF aZF bCg -bSQ +ioP bCI bCg aZF @@ -74052,13 +65922,13 @@ abL hrN abL azR -aBl -aOv -aOv -aCM -aBN -aDN -aEu +hoo +hXj +hXj +ena +wij +ikn +vRq azR aoF aoF @@ -74096,7 +65966,7 @@ awX aui axs aui -aVw +ugS aVU aVV aVV @@ -74107,7 +65977,7 @@ aVV aVV aVV aVU -aZy +xsM att att att @@ -74210,7 +66080,7 @@ bCg bCg bCg bCg -bSR +ekz bCI bCg bmh @@ -74337,8 +66207,8 @@ azR azR azR azR -aCM -aDq +ena +pDk azR azR azR @@ -74378,18 +66248,18 @@ awY atV axs awY -aVx -aVX -aVX -aXi -aXi -aYi -aYi -aXi -aXi -aVX -aVX -aZz +tDQ +wrr +wrr +rjA +rjA +ueo +ueo +rjA +rjA +wrr +wrr +epe auu att ayN @@ -74491,8 +66361,8 @@ bCI bCI bCI bCI -bSJ -bSS +nUd +hyy bCI bCg bmQ @@ -74615,15 +66485,15 @@ abL hrN azD azD -aAP -aBm -aBP -aCq -aCP -aAR -aCq -aEv -aEY +vzz +uge +mWU +lwv +mnB +qUQ +lwv +ntd +klU azD aoF aqp @@ -74896,16 +66766,16 @@ amN abL abL azD -azS -aAQ -aAR -aAR -aAR -aCP -aAR -aAR -aAR -aEZ +rFS +oWX +qUQ +qUQ +qUQ +mnB +qUQ +qUQ +qUQ +czk azD azD aqu @@ -75178,18 +67048,18 @@ amN abL abL azD -azT -aAR -aAR -aAR -aAR -aCQ -aAS -aDO -aEw -aEw -aEw -aFY +vVR +qUQ +qUQ +qUQ +qUQ +ivL +rCf +qmo +uBJ +uBJ +uBJ +kBB ara arj aoI @@ -75460,17 +67330,17 @@ amN abL abL azD -azU -aAR -aBn -aBQ -aAR -aCR -aBQ -aDP -aAR -aAR -aFy +xgc +qUQ +wgg +pEH +qUQ +nxV +pEH +lns +qUQ +qUQ +vxh azD are arn @@ -75742,18 +67612,18 @@ amN abL hrN azD -azV -aAS -aBo -aBR -aAS -aCS -aBQ -aDP -aAR -aAR -aFy -aFZ +nwR +rCf +dhI +weH +rCf +xCv +pEH +lns +qUQ +qUQ +vxh +gjS aoI aoI aoF @@ -76024,18 +67894,18 @@ amN abL hrN azD -azW -aAR -aBn -aBQ -aAR -aBn -aBQ -aDQ -aAR -aAR -aFy -aFZ +tMl +qUQ +wgg +pEH +qUQ +wgg +pEH +sIE +qUQ +qUQ +vxh +gjS aoI aoF aoI @@ -76306,18 +68176,18 @@ amN abL hrN azD -azU -aAR -aBn -aBQ -aAR -aBn -aBQ -aDR -aAR -aAR -aFy -aFZ +xgc +qUQ +wgg +pEH +qUQ +wgg +pEH +qtK +qUQ +qUQ +vxh +gjS aoI aoF aoI @@ -76348,11 +68218,11 @@ aOg aOf aOf aOf -aSn -aSn -aSn -aSn -aSn +qFt +qFt +qFt +qFt +qFt aOf aOf aOf @@ -76540,9 +68410,9 @@ aaE aaE aeI aeI -afz -afR -agH +mlf +kpo +gBu aeI aeK aeK @@ -76588,18 +68458,18 @@ amN abL abL azD -azX -aAR -aBq -aBQ -aAR -aBn -aBQ -aDS -aAR -aAR -aFy -aFZ +baG +qUQ +shp +pEH +qUQ +wgg +pEH +tOR +qUQ +qUQ +vxh +gjS aoI aoF aoI @@ -76623,30 +68493,30 @@ atI atV auR aOg -aOH -aPD -aPD -aPD -aSe -aST -aTx -aPD -aPD -aPD -aPD -aPD -aVZ -aWI -aXj +lbV +syj +syj +syj +rkX +yjv +ngo +syj +syj +syj +syj +syj +ryW +rmU +rAZ aOf aOf -aYA -aYN -aZa -aZm -aZm -aYN -aZC +oWs +djm +rNA +sPf +sPf +djm +kIs aZE aZM aUq @@ -76821,14 +68691,14 @@ aaE aaE aaE aeK -afg -afA -afo -agf +esm +wlK +cux +nkM agi -agY -afn -ail +ylU +xND +rkT aeI abL aax @@ -76870,17 +68740,17 @@ amN abL hrN azD -azU -aAR -aBn -aBQ -aAR -aBn -aBQ -aDR -aAR -aAR -aFz +xgc +qUQ +wgg +pEH +qUQ +wgg +pEH +qtK +qUQ +qUQ +gBJ azD aoI aoI @@ -76905,24 +68775,24 @@ atI atV avk aOg -aOI -aPE -aQz -aQz -aQz -aQz -aQz -aQz -aQz -aQz -aQz -aQz -aWa -aPH -aXk -aXL +lMe +joc +pdW +pdW +pdW +pdW +pdW +pdW +pdW +pdW +pdW +pdW +gLq +xpC +htU +uTw aOf -aYB +lQv aYC aZb aYC @@ -77103,14 +68973,14 @@ aaE aaE aaE aeK -afh -afo -afo -agg +ncU +cux +cux +dGn agi -agZ -afo -aim +thq +cux +mxJ aeI abL aax @@ -77152,17 +69022,17 @@ amN hrN hrN azD -azY -aAR -aBn -aBQ -aCr -aBn -aBQ -aDT -aEx -aFa -aFA +xyU +qUQ +wgg +pEH +qVD +wgg +pEH +oox +fic +fmQ +lUw azD aoI aoI @@ -77187,24 +69057,24 @@ aui atV avk aOg -aOJ -aPF -aQA -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aPF -aXM -aYj -aYB +eqx +oDZ +gGj +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +oDZ +slt +cxe +lQv aYC aZb aYC @@ -77385,14 +69255,14 @@ aaE aaE aaE aeK -afi -afB -afS -agh +huO +nPp +dpv +jtz agi -aha -afS -ain +otL +dpv +jmj aeI aax aax @@ -77434,16 +69304,16 @@ amN abL hrN azD -azZ -aAR -aBr -aBT -aAR -aBr -aDr -aDU -aEy -aFb +ebI +qUQ +qVE +kXW +qUQ +qVE +sYE +hLA +udH +gHU azD azD aoI @@ -77469,23 +69339,23 @@ aui aui avs aOg -aOK -aPG -aPH -aPH -aSf -aPH -aPI +lde +kaB +xpC +xpC +hhg +xpC +qPI aRy aUh -aPH -aPH -aPH -aPH -aPH -aPH -aPH -aYk +xpC +xpC +xpC +xpC +xpC +xpC +xpC +vmM aYC aYC aZc @@ -77509,7 +69379,7 @@ aaU abc azz azz -bcZ +tha azz azz bbW @@ -77669,11 +69539,11 @@ aec aec aed aed -afT +crf agi agi agi -ahK +xWR agi aeI aax @@ -77716,16 +69586,16 @@ amN abL abL azD -aAa -aAU -aAU -aAU -aAU -aAU -aDs -aDV -aDs -aFc +dfW +vgk +vgk +vgk +vgk +vgk +hBz +vXO +hBz +hvo azD aoF aoI @@ -77751,23 +69621,23 @@ lXk aui avs aOf -aOL -aPH -aPH -aPH -aPH -aPI -aAA -adn -adG -aPH -aPH -aPH -aPH -aPH -aPH -aPH -aYk +gZt +xpC +xpC +xpC +xpC +qPI +oXP +dKc +hCr +xpC +xpC +xpC +xpC +xpC +xpC +xpC +vmM aYC aYC aZb @@ -77791,7 +69661,7 @@ bbL azz azz azz -bcZ +tha bbZ bcq bcp @@ -77948,15 +69818,15 @@ abR abR aec aec -aeL -afj +gAW +crF aed -afU -afn -agD -afn -ahL -aio +fIe +xND +eCZ +xND +kdc +uIB aeI abL aax @@ -78005,7 +69875,7 @@ aAb aAb aAb aAb -aDW +fYY aAb aAb azD @@ -78033,9 +69903,9 @@ aLk aui avs aOf -aOM -aPH -aPI +uos +xpC +qPI aRy aSg aSk @@ -78043,13 +69913,13 @@ aRy aRy aRy aUh -aSi +txY aVy -aWb -aSf -aXl -aXN -aYk +wgS +hhg +jyM +iSg +vmM aYC aYC aZb @@ -78072,8 +69942,8 @@ bbZ bcp azz azz -bcZ -beq +tha +keV azt aaP abM @@ -78229,16 +70099,16 @@ abR abR abR aec -aen -aeM -afk +tsw +iyr +yfE aed -afV -afo -agE -afo -ahL -agf +mCq +cux +qOS +cux +kdc +nkM aeI aeI aeI @@ -78280,16 +70150,16 @@ anu amN abL azE -aAc -aNL -aBs -aBU -aCs -aCs -aCs -aDX -aEz -aFd +nph +cVN +vAP +wxy +qEo +qEo +qEo +gLD +rFD +ohH azE aoF aoI @@ -78315,23 +70185,23 @@ aLk lXk avs aOf -aOK -aPI -aQB -aRz +lde +qPI +eNa +vYp aSh -aSU -aTz -aTz -aTz -aSU -aSV -aTz -aWc -aWb +ygK +uSb +uSb +uSb +ygK +ydb +uSb +eua +wgS aSj -aPH -aYk +xpC +vmM aYC aYC aZb @@ -78511,19 +70381,19 @@ acz acz acz aec -aeo -aeN -afl -afC -afW -aet -agF -ahc -ahM -aip +ocA +wXC +uox +thv +czS +dIB +fys +tYB +iIb +gsd aeK -ajr -ajJ +lAu +wCY aeK ahj ahj @@ -78562,16 +70432,16 @@ amQ anv abL azE -aAd -aAW -aAW -aAW -aAW -aAW -aAW -aDX -aAW -aFe +muY +hZp +hZp +hZp +hZp +hZp +hZp +gLD +hZp +vnE azE azE aoI @@ -78597,23 +70467,23 @@ aMh lXk avs aOf -aOK +lde aPJ -aQC -aRA -aSi -aSV -aSV -aSV -aSV -aSV -aSV -aSV -aSV +jSH +wmx +txY +ydb +ydb +ydb +ydb +ydb +ydb +ydb +ydb aWJ aXm -aPH -aYk +xpC +vmM aYC aYC aZb @@ -78643,8 +70513,8 @@ aaQ abj abn azz -bcZ -bcZ +tha +tha azz azz azz @@ -78789,24 +70659,24 @@ abR abR acz acz -ade -ads -adN +sjn +rai +hBr aed -aep -aeO -afm +gOV +ePB +wIv aed -afX -agl -agG -ahd -ahN -aiq -aiT -aiq -ajK -aiT +tPN +kFj +mrQ +cHR +dbn +rab +lCj +rab +grd +lCj ahk ahk ahk @@ -78844,18 +70714,18 @@ amR abL abL azE -aAe -aAW -aAW -aAW -aAW -aAW -aAW -aDX -aAW -aAW -aAW -aGb +haA +hZp +hZp +hZp +hZp +hZp +hZp +gLD +hZp +hZp +hZp +uiC aoI aoF aoI @@ -78879,23 +70749,23 @@ aMi aui avs aOf -aOK -aPK -aQD -aRz +lde +lJP +ePT +vYp aSj -aSW -aTA -aTA -aTA -aSW -aSV -aTA -aWd -aWe +wiV +sba +sba +sba +wiV +ydb +sba +lTD +lSi aSh -aPH -aYk +xpC +vmM aYC aYC aZb @@ -78924,8 +70794,8 @@ bbM aaR aaZ bbL -bcZ -beq +tha +keV azz aaC azz @@ -79070,24 +70940,24 @@ abR abR abR acB -acJ -adf -adt -adO +dpx +hwV +rkg +kXg aed -aeq -aeP +fNM +vHD aed aed -afY -afo -ake -ahe -ahL -air +pdp +cux +mwO +ydu +kdc +hxq aeK -ajs -ajL +dwR +jBW aeK ahj ahj @@ -79111,8 +70981,8 @@ aob aob asA asA -atv -atX +hFb +vRX asA asA asA @@ -79126,17 +70996,17 @@ amR abL hrN azE -aAe -aAW -aAW -aBV -aAW -aCU -aBV -aDX -aAW -aAW -aFB +haA +hZp +hZp +iwY +hZp +fRA +iwY +gLD +hZp +hZp +caN azE aoI aoF @@ -79161,9 +71031,9 @@ aaC aKs avw aOf -aOK -aPH -aPK +lde +xpC +lJP aRy aSk aSg @@ -79171,13 +71041,13 @@ aRy aRy aRy aUh -aSi +txY aVy -aWe -aPH -aXn -aXO -aYk +lSi +xpC +jaz +eDZ +vmM aYD aYC aZb @@ -79206,8 +71076,8 @@ azt bbW bgb bcp -bcZ -bcZ +tha +tha azz aaC azz @@ -79352,21 +71222,21 @@ abR abR abR acB -acK -adg -adu -age +nGD +iWs +efb +pAp aed aer aer aed -afD -afA -agl -agI -ake -ahO -agf +nab +wlK +kFj +rCW +mwO +lNa +nkM aeI aeI aeI @@ -79379,24 +71249,24 @@ agP aib ahj aob -aor -aoU -apj +uZd +rOk +rCm aou -apE -aqh -ayL -aqh -ary -aqh -arW +psM +izf +mSt +izf +enO +izf +dRe aob -asB -asW -atw -atY -aux -auS +wsB +dqy +gIH +whn +hEy +jHC asA abL abL @@ -79408,18 +71278,18 @@ amR abL hrN azE -aAf -aAX -aAX -aBW -aAX -aAX -aBW -aDY -aAW -aAW -aFB -aGc +gBP +svr +svr +gPM +svr +svr +gPM +pBY +hZp +hZp +caN +wit aoF aoI aoI @@ -79443,23 +71313,23 @@ aKh aKh aKh aOf -aON -aPH -aPH -fUW -wcI -aPK -aAG -adn -aeV -aPH -aPH -aPH -aPH -aPH -aPH -aPH -aYk +qxF +xpC +xpC +vtj +sVe +lJP +cvn +dKc +dRD +xpC +xpC +xpC +xpC +xpC +xpC +xpC +vmM aYC aYC aZb @@ -79470,7 +71340,7 @@ aYC aYC aZO aYC -aZR +nRE aaQ aaC acm @@ -79489,7 +71359,7 @@ bbY bcp azz azz -bcZ +tha azz aaC azz @@ -79634,24 +71504,24 @@ abR abR abR acB -acL -adg -adu -adQ +fQg +iWs +efb +wQc aee -aes -aeQ -afn -afE -afZ -agm -agJ -agJ -ahL -agf +jyG +uGC +xND +oaa +wXT +wSo +jgA +jgA +kdc +nkM agi -aju -ajN +urh +tWm aeI aeI agP @@ -79661,24 +71531,24 @@ aax aid ahj aob -aos -aoV -apk +dTe +ide +mge aou -apF -aqi -aqC -aqi -arz -aqi -arX +vSe +mKu +tUJ +mKu +joq +mKu +vaU aob -asC -asJ -atx -atZ -asJ -auT +wrz +mRG +moL +hlg +mRG +ygE asA abL ajf @@ -79690,18 +71560,18 @@ amR hrN hrN azE -aAg -aAW -aAW -aBV -aAW -aAW -aBV -aEa -aAW -aAW -aFB -aGc +uvi +hZp +hZp +iwY +hZp +hZp +iwY +cnS +hZp +hZp +caN +wit aoI aoI aoI @@ -79718,30 +71588,30 @@ aac aac aac aKh -aKK -aLl -bzh -aMj -aMT -aNK +fSD +dzs +nel +dXj +oWi +rkG aOf -aON -aPL -aPH -aPH -aPH -aPH -aPK +qxF +lAO +xpC +xpC +xpC +xpC +lJP aRy aUh -aPH -aPH -aPH -aPH -aPH -aPH -aPH -aYk +xpC +xpC +xpC +xpC +xpC +xpC +xpC +vmM aYC aYC aZb @@ -79752,7 +71622,7 @@ aYC aYC aZO aYC -aZR +nRE aaQ aaC acm @@ -79771,7 +71641,7 @@ azz azz azz azz -bcZ +tha azz aaC azz @@ -79875,16 +71745,16 @@ bmU bmU bmU bVW -bWP -bWP +hds +hds bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW -bWP -bWP +hds +hds bVW bmU bmU @@ -79916,25 +71786,25 @@ abO abR abR acz -acM -adg -adv -adR -aef -aet -aet -aet -aet -aga -agn -agn -aet -afW -aet -aiV -ajv -ajO -aki +vhe +iWs +lTG +nSn +tOE +dIB +dIB +dIB +dIB +dYu +qMo +qMo +dIB +czS +dIB +kCl +xMw +rsC +edK aeI ahi agP @@ -79943,24 +71813,24 @@ agP aib aiC aob -aot -aoW -asK +hkE +cqi +hSz aou -aoz -aoV -aqD -aoW -aoV -aoV -arY +jrQ +ide +nxG +cqi +ide +ide +qkr aou -asD -asX -aty -aua -asJ -auU +gyZ +igR +gEN +wWv +mRG +urc asA abL abL @@ -79972,18 +71842,18 @@ amS abL abL azE -aAe -aAW -aAW -aBV -aAW -aAW -aBV -aEa -aAW -aAW -aFB -aGc +haA +hZp +hZp +iwY +hZp +hZp +iwY +cnS +hZp +hZp +caN +wit aoI aoI aoI @@ -80000,31 +71870,31 @@ aJl aJl aJl aJl -aKL -aKj -aKj -aMk -aKj -bBS +vkZ +rQS +rQS +xtm +rQS +niL aOf -aOO -jCk -aQE -tbZ -vtU -vtU -tbZ -tbZ -tbZ -tbZ -tbZ -tbZ -rKz -aPM -aPM -aXP -aYl -aYB +dZY +dzo +wvC +kuS +uwG +uwG +kuS +kuS +kuS +kuS +kuS +kuS +nhu +fot +fot +mnE +nfu +lQv aYC aZb aYC @@ -80034,7 +71904,7 @@ aZn aYC aZO aYC -aZR +nRE aaQ aaC acm @@ -80157,16 +72027,16 @@ bmU bmU bVW bVW -bWP -bWP +hds +hds bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW -bWP -bWP +hds +hds bVW bVW bmU @@ -80198,25 +72068,25 @@ abb abR abR acB -acN -adg -adg -adQ +lsi +iWs +iWs +wQc aee -aeu -aeR -afo -afF -afB -ago -agK -afo -ahQ -ait +rEr +cpM +cux +nyF +nPp +lpd +llT +cux +mex +reX agi -ajw -ajP -akj +xpX +tdw +wYw aeI aax aax @@ -80226,23 +72096,23 @@ aib ahj aob aou -aoX +jCO aou aou -apG -aoV -aqE -aoZ -aoV -aoV -arZ -asj -asE -asJ -atz -aub -asJ -auT +wcU +ide +xGV +iso +ide +ide +jQi +wui +fXt +mRG +wGd +jpd +mRG +ygE asA abL abL @@ -80254,18 +72124,18 @@ amS ajf hrN azE -aAh -aAW -aAW -aBV -aAW -aAW -aBV -aEb -aAW -aAW -aFB -aGc +jxH +hZp +hZp +iwY +hZp +hZp +iwY +iAs +hZp +hZp +caN +wit aoI aoI aoI @@ -80276,37 +72146,37 @@ aoG aCW acm aJl -aJq -aJz -aJz -aJz -aJY +uEX +xFW +xFW +xFW +dyl aJl -buG -aLD -aLD -aMl -aLD -bFS +xSx +eis +eis +xUW +eis +gFQ aOf -aOQ -aSm -aQG -aRB -aSm -aSm -aSm -aSm -bIy -aRB -aSm -aVz -aWf -aWK -aXo -aXQ +rrJ +fju +tkc +uwm +fju +fju +fju +fju +nQT +uwm +fju +nyX +hoL +eAm +jGV +wFF aOf -aYB +lQv aYC aZb aYC @@ -80316,7 +72186,7 @@ aYC aYC aZO aYC -aZR +nRE aaQ aaC acm @@ -80438,18 +72308,18 @@ bmU bmU bmU bVW -bWm -bWm -bWm -bWy -bWJ -bWJ -bWJ -bWJ -bXp -bWm -bWm -bWm +gXX +gXX +gXX +wXG +pwJ +pwJ +pwJ +pwJ +vSk +gXX +gXX +gXX bVW bmU bmU @@ -80480,25 +72350,25 @@ aaQ aaD abR acB -adP -adg -adx -adQ +nZc +iWs +vZd +wQc aeg aeg aeg -afp +oda afG afG agp afG -afp +oda aeg aeg aeg -ajx -air -ait +eFu +hxq +reX aeI aax aax @@ -80507,24 +72377,24 @@ agP aib ahj aob -aov -aoY -apm -apm -apH -aqk -aqF -arb -aqF -aqF -asa -ask -asF -asY -atA -auc -auy -auT +tcg +dhU +fbu +fbu +bxi +okf +mht +rLM +mht +mht +ffc +gHu +iCh +scA +saS +uoy +cXm +ygE asA abL hrN @@ -80536,17 +72406,17 @@ amS abL abL azE -aAe -aAW -aAW -aBV -aCt -aAW -aBV -aEb -aAW -aAW -aFC +haA +hZp +hZp +iwY +gsa +hZp +iwY +iAs +hZp +hZp +elB azE aoI aoI @@ -80558,37 +72428,37 @@ aGC aaS acm aJl -aJs +wtn aJB aJB aJB -aKa +sCi aJl aKh -aLo +oPq aKh -aMm -aMU +vOm +khb aKh aOf aOf aOf -aQH +rKm aOf -aSn -aSn -aSn -aSn +qFt +qFt +qFt +qFt aOf aOf aOf -aSn -aSn -aSn +qFt +qFt +qFt aOf aOf aOf -urm +nsA aYC aZb aYC @@ -80598,7 +72468,7 @@ aYC aYC aZP aYC -aZR +nRE aaQ aaC acj @@ -80720,18 +72590,18 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -80762,25 +72632,25 @@ aaR abb abR acB -acP -adh -adg -adS +frg +xzZ +iWs +ddu aeg -aev -aeS -afq -aeS -aeS -agq -aeS -afq -aeS -aiu +jdm +ish +xJF +ish +ish +mdH +ish +xJF +ish +uZD aeg -ajy -agf -akk +nFN +nkM +mOu aeI agP aax @@ -80789,24 +72659,24 @@ agP aib ahj aob -aow -aoZ -apd -apz -apI -aoZ -aqG -aqG -aqG -aqG -asb +vNm +iso +iID +sJl +nTh +iso +dIE +dIE +dIE +dIE +mNm aou -asG -asZ -atB -aud -auz -auV +vIE +mOI +iIt +tHZ +mTs +tso asA abL abL @@ -80818,17 +72688,17 @@ amS abL abL azE -aAi -aAW -aAW -aBV -aAW -aAW -aBV -aEb -aAW -aFf -aFg +dvd +hZp +hZp +iwY +hZp +hZp +iwY +iAs +hZp +hJH +vyW azE aGC aqj @@ -80840,37 +72710,37 @@ aGD aaQ acm aJl -aJs +wtn aJB aJB aJB -aKa -aKi -aKj -aKj -aLE -aMn -aMV -aNN +sCi +tYA +rQS +rQS +upk +pqt +nXA +kXf oHs -aOH -aPD -aQG -tly -aPD -aPD -aPD -aPD -aPD -gxg -rNB -aPD -aPD -aPD -oZq +lbV +syj +tkc +pul +syj +syj +syj +syj +syj +xOV +vMV +syj +syj +syj +pRf oHs aYC -aYE +nvd aYC aZb aYC @@ -80880,7 +72750,7 @@ aYC aYC aYC aYC -aZR +nRE aaQ aaC aaC @@ -81007,8 +72877,8 @@ bVW bVW bVW bVW -bWX -bXj +yaB +uLD bVW bVW bVW @@ -81045,24 +72915,24 @@ aaR abb acz acz -adi -ady -adT +ntX +ldh +ned aeg -aew -aeT -afr -afH -afH -agr -afH -aeT -afr -aiv +tdp +jXW +jpN +dWx +dWx +skf +dWx +jXW +jpN +eBr aeg -ajz -agf -akl +wdw +nkM +wza aeI aax aax @@ -81072,11 +72942,11 @@ aib ahj aob aou -apa +lrl aou aou apJ -aqm +gdz apJ apJ apJ @@ -81085,8 +72955,8 @@ apJ apJ asH asH -atC -aue +prM +uQw asA asA asA @@ -81100,16 +72970,16 @@ aid abL abL azE -aAj -aAZ -aBt -aBY -aCu -aBt -aBY -aEc -aAW -aFe +jOH +fOM +cah +dhb +mUK +cah +dhb +jdx +hZp +vnE azE azE aGD @@ -81122,37 +72992,37 @@ aGE aaQ acm aJl -aJs +wtn aJB aJB aJB -aKa -aKj -aKj -aLq -aLF -aMo -aLF -aLF -aOh -aOR -aOR -aQI -aOR -aOR -aOR -aOR -aOR -aOR -aOR -aVb -aVA -aWg -aWg -aWg -aXR +sCi +rQS +rQS +wJv +eMS +kMd +eMS +eMS +ukC +cTi +cTi +jSa +cTi +cTi +cTi +cTi +cTi +cTi +cTi +uKM +ivU +gda +gda +gda +vLC aYC -aZR +nRE aYC aZb aYC @@ -81284,18 +73154,18 @@ bmU bmU bmU bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW -bWJ -bWJ +pwJ +pwJ bVW -bXq -bXq -bXr -bXr +oBI +oBI +dIM +dIM bVW bmU bmU @@ -81331,19 +73201,19 @@ acz acz acz aeh -aex -aeU -afs -aex -aex -ags -aex -ahm -aeU -aex +sno +evG +rOp +sno +sno +qHB +sno +egs +evG +sno aeg -ajA -ajT +qJC +kIU aeI aeI aax @@ -81353,22 +73223,22 @@ aax aib ahj aob -aox -aoZ -apn +aOx +iso +fDx aou -apK -aqn -ayM -arc -arc -aAV -asc +rqL +lOH +fII +ceu +ceu +hlX +cXB apJ -asI -ata -atD -auf +sAo +qxN +dHR +uun asA hrN abL @@ -81383,15 +73253,15 @@ aax aak azE azE -aBa -aBu -aBu -aBu -aBu -aBu -aBu -aBu -aFg +trY +gsJ +gsJ +gsJ +gsJ +gsJ +gsJ +gsJ +vyW azE aaS aGD @@ -81404,37 +73274,37 @@ aoG aaQ acm aJl -aJs +wtn aJB aJB aJB -aKa -aKj -aKj -aLr -aKj -aMp -aMW -aMW -aOi -aOS -aOS -aQJ -aOS -aOS -aOS -aOS -aOS -aOS -aUH -aVc -aVB -aWh -aWh -aWh -aXS +sCi +rQS +rQS +lFi +rQS +iVn +tFT +tFT +qXr +ibV +ibV +mGN +ibV +ibV +ibV +ibV +ibV +ibV +ijZ +ohI +drC +rBU +rBU +rBU +tkv aYo -aYG +wNl aYo aZe aYC @@ -81456,9 +73326,9 @@ aaQ aAm azz azz -bcZ -bcZ -bcZ +tha +tha +tha azz azP azz @@ -81566,18 +73436,18 @@ bmU bmU bmU bVW -bWJ -bWJ -bWJ -bWJ -bWX -bWJ -bWJ -bXj -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ +yaB +pwJ +pwJ +uLD +pwJ +pwJ +pwJ +pwJ bVW bmU bmU @@ -81613,16 +73483,16 @@ adj adj adj aeh -aex -aeU -afq -aeU -aeU -agt -aeU -afq -aeU -aex +sno +evG +xJF +evG +evG +uBb +evG +xJF +evG +sno aeh aeI aeI @@ -81635,22 +73505,22 @@ aax aib agP aob -aoy -apb -apk +wfC +vPX +mge aou -apL -aqo -aqq -aqq -aqq -aqq -aqq -asl -asJ -atb -atE -aug +uxY +jUF +oPw +oPw +oPw +oPw +oPw +nIa +mRG +frz +dAA +hjW asA hrN hrN @@ -81686,37 +73556,37 @@ aoG abc acm aJl -aJs +wtn aJB aJB aJB -aKa -aKj -aKj -aLr -aKj -aMq -aKj -aNO +sCi +rQS +rQS +lFi +rQS +nBj +rQS +tQx paK -mHc -aTb -aTb -aTb -aTb -aTb -aTb -aTb -ecS -mog -aTb -aTb -aTb -aTb -uPr +wLO +uqI +uqI +uqI +uqI +uqI +uqI +uqI +srT +piW +uqI +uqI +uqI +uqI +tEq paK aYC -aYH +wOu aYC aYC aYC @@ -81737,9 +73607,9 @@ aaU aaQ aAz azz -bcZ -beq -bcZ +tha +keV +tha azz azz azz @@ -81848,18 +73718,18 @@ bVW bVW bmU bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW -bWJ -bWJ +pwJ +pwJ bVW -bXr -bXr -bXq -bXr +dIM +dIM +oBI +dIM bVW bmU bVW @@ -81895,16 +73765,16 @@ adj adj adj aei -agw -aeW -afs -aex -aex -ags -aex -ahm -afu -aix +rca +oXB +rOp +sno +sno +qHB +sno +egs +tAi +pQy aei aax aax @@ -81917,22 +73787,22 @@ ahJ aib agP aob -aoz -apc -apk +jrQ +udB +mge aou -atF -aqq -aqq -aqq -aqq -aqq -asd +prl +oPw +oPw +oPw +oPw +oPw +pLT apJ -aCF -atc -aHz -auh +nCg +sHz +mhh +roM asA abL hrN @@ -81968,37 +73838,37 @@ aoG aoG acm aJl -aJs +wtn aJB aJB aJB -aKa +sCi aJl -aKN -aLr -aKj -aMr -aKj -aNO +hej +lFi +rQS +lTI +rQS +tQx aOj aOj aOj aOj aOj -aSo -aSo -aSo -aSo +iDj +iDj +iDj +iDj aOj -aUI +idn aOj -aSo -aSo -aSo +iDj +iDj +iDj aOj aOj aOj -urm +nsA aYC aYC aYC @@ -82020,7 +73890,7 @@ aaQ azz azz azz -bcZ +tha azz azz azz @@ -82125,8 +73995,8 @@ bmU bmU bVW bVW -bWr -bWr +wbm +wbm bVW bVW bVW @@ -82135,8 +74005,8 @@ bVW bVW bVW bVW -bXd -bXd +tax +tax bVW bVW bVW @@ -82145,8 +74015,8 @@ bVW bVW bVW bVW -bWr -bWr +wbm +wbm bVW bVW bmU @@ -82177,16 +74047,16 @@ adj adj adj aei -aez -aeT -afu -aeS -aeS -agq -aeS -aeW -afr -aiy +hoH +jXW +tAi +ish +ish +mdH +ish +oXB +jpN +iTD aei aax aax @@ -82199,17 +74069,17 @@ aax aie ahj aob -aoA -aoV -apo +ofp +ide +fmd aob -apN -aqq -aqq -aqq -aqq -aqq -asd +jOR +oPw +oPw +oPw +oPw +oPw +pLT apP asA asA @@ -82250,37 +74120,37 @@ aoG aoG acm aJl -aJu -aJD -aJD -aJD -aKc +dWz +kAH +kAH +kAH +tDw aJl -aKO -aLr -aKj -aKj -aKj -aNO +ick +lFi +rQS +rQS +rQS +tQx aOj -aOT -aPP -aPP -aRD -aPP -aPP -aPP -aPP -aUm -mog -aVd -aVC -aWi -aWL -aXr -aXT +fFR +tWg +tWg +cmk +tWg +tWg +tWg +tWg +ycd +piW +ccI +uKC +uDm +lDU +voY +qst aOj -aYB +lQv aYC aYC aYC @@ -82406,30 +74276,30 @@ bmi bmU bmU bVW -bWk -bWk -bWk +icS +icS +icS bVW -bWA -bWA -bWK -bWB -bWA -bWA +xsk +xsk +iYE +wVY +xsk +xsk bVW -bWJ -bWJ +pwJ +pwJ bVW -bXs -bXs -bWB -bWK -bXy -bXy +fCS +fCS +wVY +iYE +qgT +qgT bVW -bWk -bWk -bWk +icS +icS +icS bVW bmU bmU @@ -82460,14 +74330,14 @@ adj adj aeh aeh -aeX -aeT -afq -afq -agv -afq -afr -ahV +mjC +jXW +xJF +xJF +gGU +xJF +jpN +tLG aeh aeh aax @@ -82481,17 +74351,17 @@ aax aie ahj aob -aoB -apd -app +uaT +iID +gBb aob -auo -aqr -aqI -ard -arB -arO -ase +hDB +jrj +fjL +kiT +gXi +tOg +gZS apP abL abL @@ -82538,31 +74408,31 @@ aJl aJl aJl aJl -aKP -aLs -aLG -aMs -aMX -aKP +fGQ +vkA +eiq +tnW +qAT +fGQ aOj -aOV -dxl -dxl -dxl -dxl -dxl -dxl -dxl -dxl -aUL -sTY -sTY -lyE -aWM -aPR -aXU -aYp -aYB +xKA +dGQ +dGQ +dGQ +dGQ +dGQ +dGQ +dGQ +dGQ +qNI +lGm +lGm +lNl +wxq +kXQ +gmG +tIE +lQv aYC aYC aYC @@ -82688,30 +74558,30 @@ bmU bmU bmU bVW -bWl -bWl -bWl +fsR +fsR +fsR bVW -bWB -bWB -bWL -bWB -bWB -bWB -bWZ -bWJ -bWJ -bXn -bWB -bWB -bWB -bWL -bWB -bWB +wVY +wVY +eqe +wVY +wVY +wVY +cRl +pwJ +pwJ +mXL +wVY +wVY +wVY +eqe +wVY +wVY bVW -bWl -bWl -bWl +fsR +fsR +fsR bVW bmU bmU @@ -82743,12 +74613,12 @@ adj adj aeh aeh -afv -afL -agb -agM -akm -ahq +hqt +kWM +vxk +knO +wWF +pHZ aeh aeh aax @@ -82827,23 +74697,23 @@ aKh aKh aKh aOj -aOW -aPS -aPT -aPT -aPT -aQN -aPU +nrm +sBl +nvM +nvM +nvM +pdd +kvs aRE aUn -aPT -aPT -aPT -aPT -aPT -aPT -aPT -aYq +nvM +nvM +nvM +nvM +nvM +nvM +nvM +rNr aYC aYC aYC @@ -82873,7 +74743,7 @@ aaC bbI bgq bcp -bcZ +tha bbX azz azt @@ -82970,30 +74840,30 @@ bmU bmU bmU bVW -bWk -bWk -bWk +icS +icS +icS bVW -bWB -bWB -bWM -bWB -bWB -bWB +wVY +wVY +nHk +wVY +wVY +wVY bVW -bWJ -bWJ +pwJ +pwJ bVW -bWB -bWB -bWB -bWM -bWB -bWB +wVY +wVY +wVY +nHk +wVY +wVY bVW -bWk -bWk -bWk +icS +icS +icS bVW bmU bmU @@ -83109,23 +74979,23 @@ aac aac aac aOj -aOW -aPT -aPT -aPT -aPT -aPU -aAK -adw -aft -aPT -aPT -aPT -aPT -aPT -aPT -aPT -aYq +nrm +nvM +nvM +nvM +nvM +kvs +nNi +ylq +ciV +nvM +nvM +nvM +nvM +nvM +nvM +nvM +rNr aYC aYC aYC @@ -83155,7 +75025,7 @@ bbI bbI bbX aaC -bcZ +tha bbM azz azz @@ -83252,30 +75122,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWB -bWB -bWN -bWB -bWB -bWB -bWK -bWJ -bWJ -bWK -bWB -bWB -bWB -bXu -bWB -bWB +wVY +wVY +nHo +wVY +wVY +wVY +iYE +pwJ +pwJ +iYE +wVY +wVY +wVY +kZy +wVY +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bVO @@ -83391,9 +75261,9 @@ aac aac aac aOj -aOX -aPT -aPU +rqp +nvM +kvs aRE aSp aSt @@ -83401,13 +75271,13 @@ aRE aRE aRE aUn -aSr +pPJ aVD -aWk -aPT -aXt -aXV -aYq +vla +nvM +qcR +xEZ +rNr aYC aYC aYC @@ -83436,8 +75306,8 @@ aaR abb bbZ bcp -bcZ -bcZ +tha +tha azz azz azz @@ -83534,30 +75404,30 @@ bmU bVO bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWB -bWB -bWN -bWB -bWT -bWB -bWL -bWJ -bWJ -bWL -bWB -bWT -bWB -bXu -bWB -bWB +wVY +wVY +nHo +wVY +mpN +wVY +eqe +pwJ +pwJ +eqe +wVY +mpN +wVY +kZy +wVY +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -83673,23 +75543,23 @@ aac aac aac aOj -aOY -aPU -aQK -aRF +sxj +kvs +wgJ +qpK aSq -aSY -aTD -aTD -aTD -aSY -aSZ -aTD -aWl -aWk +crd +uou +uou +uou +crd +fFP +uou +hPv +vla aSs -aPT -aYq +nvM +rNr aYC aYC aYC @@ -83710,16 +75580,16 @@ aaC aaC aaC aaQ -bcZ -bdD +tha +efA azz azz bbL abc -bgc -bcZ -bcZ -bcZ +mgD +tha +tha +tha azz azz azz @@ -83816,30 +75686,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWB -bWB -bWN -bWB -bWB -bWB -bWM -bWJ -bWJ -bWM -bWB -bWB -bWB -bXu -bWB -bWB +wVY +wVY +nHo +wVY +wVY +wVY +nHk +pwJ +pwJ +nHk +wVY +wVY +wVY +kZy +wVY +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -83955,23 +75825,23 @@ aac aac aac aOj -aOZ +gYH aPV -aQL -aRG -aSr -aSZ -aSZ -aSZ -aSZ -aUM -aSZ -aSZ -aSZ +liL +ehI +pPJ +fFP +fFP +fFP +fFP +hIB +fFP +fFP +fFP aWN aXu -aPT -aYq +nvM +rNr aYC aYC aYC @@ -83993,15 +75863,15 @@ aaC aaC aaQ bda -bdE -bcZ +gHl +tha azz bbX -bcZ -bcZ -bcZ -bcZ -bcZ +tha +tha +tha +tha +tha azz azz azt @@ -84098,30 +75968,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWA -bWB +xsk +wVY bVW -bWB -bWB -bWB +wVY +wVY +wVY bVW -bWX -bWX +yaB +yaB bVW -bWB -bWB -bWB +wVY +wVY +wVY bVW -bXy -bWB +qgT +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -84237,23 +76107,23 @@ aac aac aac aOj -aOZ -aPW -aQM -aRH +gYH +wra +jxJ +cDu aSs -aTa -aTE -aTE -aTE -aTa -aSZ -aTE -aWm -aWn +iGM +juf +juf +juf +iGM +fFP +juf +lvJ +gnA aSq -aPT -aYq +nvM +rNr aYC aYC aYC @@ -84279,10 +76149,10 @@ azz azz azz bbM -bcZ -bcZ -beq -bcZ +tha +tha +keV +tha azz azz azz @@ -84380,30 +76250,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWA -bWB +xsk +wVY bVW -bWA -bWU +xsk +uOV bVW bVW -bXe -bWJ +jKd +pwJ bVW bVW -bXs -bXs +fCS +fCS bVW -bXy -bWB +qgT +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -84519,9 +76389,9 @@ aac aac aac aOj -aOZ -aPT -aPW +gYH +nvM +wra aRE aSt aSp @@ -84529,13 +76399,13 @@ aRE aRE aRE aUn -aSr +pPJ aVD -aWn -aPT -aXv -aXW -aYq +gnA +nvM +hNd +krB +rNr aYC aYC aYC @@ -84546,7 +76416,7 @@ aYC aYC aYC aYC -aZR +nRE aUN abc aaU @@ -84562,9 +76432,9 @@ azz azz azz aaC -bcZ -bcZ -bcZ +tha +tha +tha azz azz bbW @@ -84662,30 +76532,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWA -bWB +xsk +wVY bVW bVW bVW bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW bVW bVW bVW -bXz -bWB +gYI +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -84801,23 +76671,23 @@ acD aac aac aOj -aOZ -aPT -aPT -aPT -aPT -aPW -aOP -adw -afI -aPT -aPT -aPT -aPT -aPT -aPT -aPT -aYq +gYH +nvM +nvM +nvM +nvM +wra +rSB +ylq +hEi +nvM +nvM +nvM +nvM +nvM +nvM +nvM +rNr aYC aYC aYC @@ -84828,7 +76698,7 @@ aYC aYC aYC aYC -aZR +nRE aZN aUq acj @@ -84845,7 +76715,7 @@ azz azz azz azz -bcZ +tha azz azz azz @@ -84944,30 +76814,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWC -bWB +jTQ +wVY bVW -bWP -bWP +hds +hds bVW -bXa -bWJ -bWJ -bWJ +fJl +pwJ +pwJ +pwJ bVW -bWP -bWP +hds +hds bVW -bXz -bWB +gYI +wVY bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -85083,23 +76953,23 @@ acm aac aac aOj -aOZ -aPX -aQN -aPT -aPT -aPT -aPW +gYH +cDA +pdd +nvM +nvM +nvM +wra aRE aUn -aPT -aPT -aPT -aPT -aPT -aPT -aPT -aYq +nvM +nvM +nvM +nvM +nvM +nvM +nvM +rNr aYC aYC aYC @@ -85110,7 +76980,7 @@ aYC aYC aZu aYC -aZR +nRE aYa aXZ aaS @@ -85226,30 +77096,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bVW bVW bVW -bWm -bWm +gXX +gXX bVW bVW -bWJ -bXk +pwJ +iVH bVW bVW -bWm -bWm +gXX +gXX bVW bVW bVW bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -85287,18 +77157,18 @@ adj adj agN agN -ahW -aiB -aiZ -ajB -ajY -amw +hyp +cPu +hNo +cTp +tpP +wwm agN agN als als -apO -amU +tCv +ioE als als aie @@ -85365,24 +77235,24 @@ acm aac aac aOj -aPa -aPY -aPY -aPY -aPY -aPY -aPY -aPY -aPY -aPY -aPY -aVE -aPY -aPY -aPY -aXX -aYr -aYB +sSu +jhU +jhU +jhU +jhU +jhU +jhU +jhU +jhU +jhU +jhU +fVt +jhU +jhU +jhU +ezR +qPO +lQv aYC aYC aYC @@ -85392,7 +77262,7 @@ aYC aYC aYC aYC -aZR +nRE aUP aZN abc @@ -85508,30 +77378,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm -bWy -bWm -bWm -bWm -bWm -bWm -bWm +gXX +gXX +gXX +wXG +gXX +gXX +gXX +gXX +gXX +gXX bVW -bXf -bWJ +cHy +pwJ bVW -bWm -bWm -bWm -bWm -bWm -bWm -bXp -bWm -bWm -bWm +gXX +gXX +gXX +gXX +gXX +gXX +vSk +gXX +gXX +gXX bVW bmU bmU @@ -85568,20 +77438,20 @@ aar adj adj agN -ahr -ahX -ahY -ahY -ahY -ahY -akn -akI +guj +xYL +nVE +nVE +nVE +nVE +dxf +ubp ahw -alt -alS -amt -amV -any +uui +mjW +cJB +cpU +uTY als aiO ahj @@ -85647,24 +77517,24 @@ acm aac aac aOj -aPb -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aPZ -aWj -aPT -aXw -aXY +pEx +qdY +qdY +qdY +qdY +qdY +qdY +qdY +qdY +qdY +qdY +qdY +uTe +nvM +nKw +fSX aOj -aYB +lQv aYC aYC aYC @@ -85674,7 +77544,7 @@ aYC aYC aYC aYC -aZR +nRE aUP aYa aYs @@ -85790,30 +77660,30 @@ bmj bmU bmU bVW -bWm -bWm -bWm -bWy -bWm -bWm -bWm -bWm -bWm -bWm +gXX +gXX +gXX +wXG +gXX +gXX +gXX +gXX +gXX +gXX bVW -bWJ -bWJ +pwJ +pwJ bVW -bWm -bWm -bWm -bWm -bWm -bWm -bXp -bWm -bWm -bWm +gXX +gXX +gXX +gXX +gXX +gXX +vSk +gXX +gXX +gXX bVW bmU bmU @@ -85850,20 +77720,20 @@ aaB adj adj agN -ahs -ahY -ahY -ahY -ahY -ahY -ako -akJ +gtG +nVE +nVE +nVE +nVE +nVE +iUP +pfe ahw -alu -alT -alT -amW -anz +wgb +mEK +mEK +rtv +nfP als aiO ahj @@ -85929,25 +77799,25 @@ abG aac aac aOj -aPc -aQa -aQO -aRI -aSu -aTb -ecS -aTb -aTb -aTb -aTb -aTb -aTb -aWO -aXx +whr +wKK +ozW +kEF +vIh +uqI +srT +uqI +uqI +uqI +uqI +uqI +uqI +jvW +lWA aOj aOj -aYI -aYO +tEe +cyA aYC aYC aYC @@ -85955,8 +77825,8 @@ aYC aYC aYC aYC -aYO -ban +cyA +ePK aUP aUP aca @@ -86072,30 +77942,30 @@ bvc bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bVW bVW bVW -bWm -bWm -bWm -bWX -bWJ -bWJ -bXo -bWm -bWm -bWm +gXX +gXX +gXX +yaB +pwJ +pwJ +qBa +gXX +gXX +gXX bVW bVW bVW bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -86132,20 +78002,20 @@ acQ adj adj agN -aht -ahY -aiD -ahY -ajC -ahY -akp -akK -alh -alU -alU -amu -amX -anA +uNM +nVE +toA +nVE +dvp +nVE +dZU +fws +nNI +dLs +dLs +hYu +gYV +wsP als aie ahj @@ -86218,11 +78088,11 @@ aOj aOj aOj aOj -aSo -aSo -aSo -aSo -aSo +iDj +iDj +iDj +iDj +iDj aOj aOj aOj @@ -86230,13 +78100,13 @@ aOj aUP aUP aVf -aZf +qnr aYC aYC aYC aYC aYC -aZQ +bwe aVf aUP aUP @@ -86354,30 +78224,30 @@ bnn bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWJ -bWJ +pwJ +pwJ bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -86414,20 +78284,20 @@ adA adj adj agN -ahu -ahY -aiE -ahY -ajC -ahY -akq -akJ +sda +nVE +noP +nVE +dvp +nVE +orN +pfe ahw -alu -alT -alT -amY -anB +wgb +mEK +mEK +gJM +gbE als aie ahj @@ -86512,13 +78382,13 @@ aUP aUP aUP aUP -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aUP aUP aUP @@ -86636,30 +78506,30 @@ bmT bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWJ -bWJ +pwJ +pwJ bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -86696,21 +78566,21 @@ acR adj adj agN -ahv -ahZ -aiF -aja -ajD -aic -akq -akJ +jfr +evO +iTQ +iCI +izC +maE +orN +pfe ahw -alx -alV -alV -amZ -alU -aoe +vqE +pZH +pZH +eaN +dLs +jrM aiU ahj aax @@ -86752,10 +78622,10 @@ aky amm aFE aFE -aGF -aHb -aHy -aHy +lDa +gqt +nOB +nOB aFE aFE aky @@ -86794,13 +78664,13 @@ aUP aUP aUP aUP -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aUP aUP aUP @@ -86918,30 +78788,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bXd -bXd +tax +tax bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -86983,15 +78853,15 @@ ahw ahw ahw ahw -akb -akq -akL +eAy +orN +xNa ahw -aly -alT -alT -alT -anB +ktO +mEK +mEK +mEK +gbE als aiW agP @@ -87033,12 +78903,12 @@ hDM aky amm aFE -aGd -aGH -aGH -aGH -aGH -aIm +ndr +ncX +ncX +ncX +ncX +oJM aFE aky amm @@ -87076,13 +78946,13 @@ aUP aUP aUP aUP -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aVf aUP aUP @@ -87200,30 +79070,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWJ -bWJ +pwJ +pwJ bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -87260,20 +79130,20 @@ aar aaS adk agN -ahx -aia -aiH -ajb +vft +qch +kAg +xQe ahw -akc -akq -akM +tCT +orN +nkd ahw -alz -alT -alT -alT -anD +cXE +mEK +mEK +mEK +gIe als ahg agP @@ -87315,12 +79185,12 @@ hDM aky amm aFE -aGe -aGH -aGH -aGH -aHP -aIn +hJY +ncX +ncX +ncX +rXT +uHH aFE aky amm @@ -87358,13 +79228,13 @@ aUP aUP aUP aUP -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aUP aUP aUP @@ -87482,30 +79352,30 @@ bmU bVO bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW -bWJ -bWJ +pwJ +pwJ bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bVO @@ -87542,20 +79412,20 @@ aae aaR abn agN -ahy -ahY -aiI -ajc -ajE -akd -aks -akN +qkD +nVE +tDF +twE +jmK +dKd +tDy +gea ahw -alA -alW -alW -alT -anE +hdv +hBO +hBO +mEK +sGO als ahf agP @@ -87598,10 +79468,10 @@ aoD amm aFE aFE -aGI -aHd -aGH -aHQ +cfe +hTZ +ncX +doA aFE aFE amm @@ -87640,13 +79510,13 @@ aXZ aUP aUP aYP -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aUP aUP aUP @@ -87764,30 +79634,30 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bWD bmU bVW -bWQ -bWQ +nVb +nVb bVW bVW -bWX -bWX +yaB +yaB bVW bVW -bWQ -bWQ +nVb +nVb bVW bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -87824,20 +79694,20 @@ aae aaC aaC agN -ahz -aic -ahY -ajd +jld +maE +nVE +dAU ahw -akc -akt -akO +tCT +sxp +hNt ahw -alB -alX -amv -ana -anF +jXB +qTn +kGF +pPn +qFr als ahg agP @@ -87882,7 +79752,7 @@ amm aFE aFE aFE -aHB +iVV aFE aFE aky @@ -87922,13 +79792,13 @@ aYa aYs aUP aVf -aYB +lQv aYC aYC aYC aYC aYC -aZR +nRE aVf aUP aUP @@ -88046,9 +79916,9 @@ bmU bmU bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bVO bmU @@ -88056,10 +79926,10 @@ bVW bVW bVW bVW -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ bVW bVW bVW @@ -88067,9 +79937,9 @@ bVW bVO bmU bVW -bWm -bWm -bWm +gXX +gXX +gXX bVW bmU bmU @@ -88107,18 +79977,18 @@ aaG aaG agN agN -ahz -aiK -aje +jld +dyN +ekV ahw -ams -aku +hkN +rjz agN agN als als -aqH -anb +bYv +fqi als als ahf @@ -88204,13 +80074,13 @@ aUP aUP aUP aUP -aZg +qVU aYC aYC aYD aYC aYC -aZQ +bwe aUP aUP aUP @@ -88329,28 +80199,28 @@ bmU bmU bVW bVW -bWm -bWm +gXX +gXX bVW bmU bWG bVW -bWJ +pwJ bVW -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ bVW -bWJ +pwJ bVW bmU bmU bVW -bWm -bWm +gXX +gXX bVW bVW bmU @@ -88486,13 +80356,13 @@ aUP aUP aVf aUP -aZh +kKw aYC aYC aYC aYC aYC -aZS +knq aUP aVf aUP @@ -88611,28 +80481,28 @@ bmU bmU bmU bVW -bWm -bWm +gXX +gXX bVW bmU bmU -bWO -bWJ -bWO -bWJ -bXb -xkk -bWJ -bWJ -bWJ -bXj -bWJ -bXj +lii +pwJ +lii +pwJ +fEv +lte +pwJ +pwJ +pwJ +uLD +pwJ +uLD bmU bmU bVW -bWm -bWm +gXX +gXX bVW bmU bmU @@ -88767,7 +80637,7 @@ aVf aUP aUP aUP -aYQ +tgk aZi aZo aZv @@ -88775,7 +80645,7 @@ aZA aZi aZo aZv -bae +cos aUP aUP aUP @@ -88893,28 +80763,28 @@ bmU bmU bmU bVW -bWm -bWm +gXX +gXX bVW bmU bmU bVW -bWJ +pwJ bVW -bWW -bWJ -bWJ -bWJ -bWJ -bWJ +xEH +pwJ +pwJ +pwJ +pwJ +pwJ bVW -bWJ +pwJ bVW bmU bmU bVW -bWm -bWm +gXX +gXX bVW bmU bmU @@ -89017,8 +80887,8 @@ aky amm aJd aJd -aJm -aJp +mpA +hdG aJd aJd auW @@ -89046,9 +80916,9 @@ abc aUP aUP aUP -aWo -aYt -aYJ +cDm +ukx +fdJ aYC aWp aWp @@ -89058,9 +80928,9 @@ aWp aWp aWp aYC -aYJ -baw -baH +fdJ +fas +tkE aUP aUP aUP @@ -89176,26 +81046,26 @@ bmU bmU bVW bVW -bWm +gXX bVW bmU bmU bVW bVW bVW -bWX -bWX +yaB +yaB bVW bVW -bXj -bXj +uLD +uLD bVW bVW bVW bmU bmU bVW -bWm +gXX bVW bVW bmU @@ -89298,10 +81168,10 @@ amm amm aml aJd -aJh -aJi -aJi -aJE +iWB +gry +gry +gMt aJd awL awL @@ -89325,9 +81195,9 @@ abG aad aaU aUq -aWo -aWP -aXz +cDm +aFu +vXn aWp aWp aWp @@ -89343,9 +81213,9 @@ aWp aWp aWp aWp -aXz -baX -baH +vXn +qaN +tkE aUP aUP aZN @@ -89458,26 +81328,26 @@ bmU bmU bmU bVW -bWm +gXX bVW bmU bmU bVW -bWR -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWR +nWP +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +nWP bVW bmU bmU bVW -bWm +gXX bVW bmU bmU @@ -89579,11 +81449,11 @@ amm amm amm amm -aJe -aJi -aJi -aJi -aJF +taH +gry +gry +gry +iNL aJd auW awL @@ -89607,7 +81477,7 @@ aag aaU aUq aUP -aVH +uTh aWQ aWp aWp @@ -89627,7 +81497,7 @@ aWp aWp aWQ aWp -bbl +xqd aUP aUP aZN @@ -89745,16 +81615,16 @@ bVW bWE bWE bVW -bWR -bWJ -bWJ -bWJ -bWJ -bXl -bWJ -bWJ -bWJ -bWR +nWP +pwJ +pwJ +pwJ +pwJ +vUm +pwJ +pwJ +pwJ +nWP bVW bmU bmU @@ -89839,7 +81709,7 @@ awP axa awP awP -ayR +gUZ awP awP awP @@ -89862,9 +81732,9 @@ aky amm arL aJd -aJj -aJp -aJp +fly +hdG +hdG aJd aJd awL @@ -89888,7 +81758,7 @@ aae aaC aUN aUP -aVF +laG aWp aWp aWp @@ -89910,7 +81780,7 @@ aWp aWp aWp aWp -bby +xHf aUP aZN aaS @@ -90027,16 +81897,16 @@ bmU bmU bmU bVW -bWR -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWR +nWP +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +nWP bVW bmU bmU @@ -90119,12 +81989,12 @@ aky amm awP axb -axv -aym -ayU -azr -azI -aAl +kCf +ezx +kwx +mhd +neb +stU awP amm amm @@ -90170,7 +82040,7 @@ aae aUq aUO aUP -aVG +wTz aWp aWp aWp @@ -90192,7 +82062,7 @@ aWp aWp aWp aWp -bbz +cVY aUP aUO aaQ @@ -90310,14 +82180,14 @@ bmU bmU bVW bVW -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ bVW bVW bmU @@ -90401,12 +82271,12 @@ aky awL awP axc -axw -ayn -ayU -azs -azs -aMx +tej +pUg +kwx +dgz +dgz +wpc awP awL amm @@ -90452,7 +82322,7 @@ aae aaS aUP aUP -aVH +uTh aWp aWp aWp @@ -90474,7 +82344,7 @@ aWp aWp aWp aWp -bbl +xqd aUP aaP aaZ @@ -90592,14 +82462,14 @@ bmU bmU bmU bVW -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ bVW bVW -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ bVW bmU bmU @@ -90683,12 +82553,12 @@ aky awL awP axd -axx -ayn -ayU -azs -azs -aAn +sbW +pUg +kwx +dgz +dgz +deh awP awL amm @@ -90734,7 +82604,7 @@ aJb abc aUP aVf -aVI +dNx aWp aWp aWp @@ -90756,7 +82626,7 @@ aWp aWp aWp aWp -bbA +xgA aUP aaQ aaU @@ -90874,14 +82744,14 @@ bmU bmU bmU bVW -bWV -bWJ -bXc -bWJ -bWJ -bWJ -bWJ -bWV +lSr +pwJ +iye +pwJ +pwJ +pwJ +pwJ +lSr bVW bmU bmU @@ -90965,12 +82835,12 @@ awy awM awP axe -axy -ayn -ayU -azs -gdd -aAo +hOY +pUg +kwx +dgz +pSD +nLl awP awL awL @@ -91016,7 +82886,7 @@ atK aar aUP aUP -aVJ +qvT aWp aWp aWp @@ -91038,7 +82908,7 @@ aWp aWp aWp aWp -bbm +jXv aUP aaQ acm @@ -91157,12 +83027,12 @@ bmU bmU bVW bVW -bWJ -bWJ -bWJ -bWJ -bWJ -bWJ +pwJ +pwJ +pwJ +pwJ +pwJ +pwJ bVW bVW bmU @@ -91247,12 +83117,12 @@ awz auW awP axf -axz -ayn -ayU -azs -azs -aAp +fJo +pUg +kwx +dgz +dgz +nDX awP awL awL @@ -91298,7 +83168,7 @@ acm aae aUq aUP -aVG +wTz aWp aWp aWp @@ -91320,7 +83190,7 @@ aWp aWp aWp aWp -bbz +cVY aUP aaQ acm @@ -91439,12 +83309,12 @@ bmU bmU bmU bVW -bWR -bWJ -bWJ -bWJ -bWJ -bWR +nWP +pwJ +pwJ +pwJ +pwJ +nWP bVW bmU bmU @@ -91529,12 +83399,12 @@ auW aaP awP axg -axy -ayn -ayU -azu -azJ -aAq +hOY +pUg +kwx +qKh +oEw +nGi awP awL awL @@ -91580,7 +83450,7 @@ acm aae aaS aUP -aVK +pyD aWp aWp aWp @@ -91602,7 +83472,7 @@ aWp aWp aWp aWp -bbB +rNa aUP aaQ acm @@ -91722,10 +83592,10 @@ bmU bmU bVW bVW -bWV -bXc -bXc -bWV +lSr +iye +iye +lSr bVW bVW bmU @@ -91811,11 +83681,11 @@ aaP aaZ awP awP -axA -ayo -ayV -azv -azK +mGt +uCd +tDl +vwV +pHD awP awP awL @@ -91863,7 +83733,7 @@ aCw abc aUP aUP -aVJ +qvT aWQ aWp aWp @@ -91883,7 +83753,7 @@ aWp aWp aWQ aYC -bbm +jXv aUP aaP aaZ @@ -92004,10 +83874,10 @@ bVO bmU bmU bVW -bWR -bWJ -bWJ -bWR +nWP +pwJ +pwJ +nWP bVW bmU bmU @@ -92145,9 +84015,9 @@ acn aTY aUP aUP -aWr -aWR -aXA +lpj +goN +fKE aWp aWp aWp @@ -92163,9 +84033,9 @@ aWp aWp aWp aWp -aXA -aZw -baI +fKE +vyO +kxM aUN aaQ aaC @@ -92287,8 +84157,8 @@ bmU bmU bVW bVW -bXg -bWR +dcn +nWP bVW bVW bmU @@ -92430,9 +84300,9 @@ aUP aUP aUP aUP -aWr -aWR -aXA +lpj +goN +fKE aWp aWp aWp @@ -92442,9 +84312,9 @@ aWp aWp aWp aWp -aXA -aZw -baI +fKE +vyO +kxM aUP aUP aZE @@ -92628,7 +84498,7 @@ aae aaP aba alE -ama +oJQ amb amb anG @@ -92715,15 +84585,15 @@ aVf aUP aUP aUP -aYR -aWR -aXA -aZw -aZB -aWR -aXA -aZw -baf +gwp +goN +fKE +vyO +tkQ +goN +fKE +vyO +duR aUP aUP aUP diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm index 3b48073ec6..d18741ffd1 100644 --- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm +++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm @@ -17,18 +17,6 @@ /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"aaf" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"aag" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "aah" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, @@ -99,12 +87,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aar" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "aas" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -112,30 +94,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aat" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) -"aau" = ( -/obj/effect/spider/stickyweb, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) -"aav" = ( -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) -"aaw" = ( -/obj/effect/spider/cocoon{ - icon_state = "cocoon_large2" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "aax" = ( /obj/structure/prop/ice_colony/surveying_device{ layer = 3.01; @@ -176,10 +134,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"aaE" = ( -/mob/living/simple_animal/hostile/giant_spider/nurse, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "aaF" = ( /obj/structure/platform/strata{ dir = 4 @@ -226,10 +180,6 @@ /obj/item/tool/pickaxe/drill, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"aaL" = ( -/obj/effect/spider/cocoon, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "aaM" = ( /obj/structure/platform/strata{ dir = 4 @@ -247,10 +197,6 @@ /obj/item/explosive/plastic, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"aaP" = ( -/mob/living/simple_animal/hostile/giant_spider/hunter, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "aaQ" = ( /obj/effect/spider/stickyweb, /obj/item/clothing/head/helmet/marine/sof, @@ -272,12 +218,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"aaU" = ( -/obj/effect/spider/cocoon{ - icon_state = "cocoon_large3" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "aaV" = ( /obj/effect/spider/stickyweb, /obj/effect/spider/cocoon{ @@ -298,10 +238,6 @@ "aaY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/central) -"aaZ" = ( -/obj/structure/fence, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/warehouse/caves) "aba" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/snow/layer3, @@ -453,10 +389,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"abv" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "abw" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -493,20 +425,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"abC" = ( -/mob/living/simple_animal/hostile/giant_spider/nurse, -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) -"abD" = ( -/obj/effect/spider/cocoon, -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "abE" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/ice/layer1, @@ -521,11 +439,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"abI" = ( -/obj/effect/spider/stickyweb, -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "abJ" = ( /turf/open/shuttle/elevator/grating, /area/shiva/interior/colony/research_hab) @@ -535,11 +448,6 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"abL" = ( -/obj/effect/spider/cocoon, -/obj/effect/spider/stickyweb, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) "abM" = ( /turf/closed/shuttle/elevator{ dir = 1 @@ -549,25 +457,6 @@ /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) -"abO" = ( -/obj/effect/spider/cocoon{ - icon_state = "cocoon_large3" - }, -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) -"abP" = ( -/obj/structure/prop/ice_colony/surveying_device{ - dir = 4 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"abQ" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "abR" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -579,12 +468,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"abT" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "abU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -628,10 +511,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"abZ" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "aca" = ( /obj/item/tank/oxygen, /obj/item/tank/oxygen, @@ -649,17 +528,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"acc" = ( -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"acd" = ( -/obj/structure/machinery/space_heater, -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/research_alley) "ace" = ( /turf/closed/shuttle/elevator/gears, /area/shiva/interior/colony/central) @@ -707,14 +575,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"acn" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "aco" = ( /obj/structure/stairs/perspective/ice{ icon_state = "p_stair_full" @@ -728,16 +588,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"acq" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/shiva/interior/lz2_habs) "acr" = ( /obj/structure/fence{ health = 0 @@ -767,15 +617,6 @@ /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) -"acx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/medseceng) "acA" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -784,12 +625,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"acC" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) "acD" = ( /turf/closed/shuttle/elevator/button/arrivals, /area/shiva/interior/colony/central) @@ -806,19 +641,21 @@ /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"acK" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 4 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "acL" = ( /turf/closed/shuttle/elevator/arrivals, /area/shiva/interior/colony/central) -"acM" = ( -/mob/living/simple_animal/hostile/retaliate/clown{ - desc = "Uh oh, looks like Gonzo got blocked by a cave-in. How is he gonna get out of this one?"; - health = 10000; - move_to_delay = 2; - name = "Gonzo the Magnificent"; - rapid = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "acN" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security Interrogation"; @@ -826,12 +663,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"acO" = ( -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "Original map by Infernus, remapped by Triiodine." - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) "acP" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/ice/layer1, @@ -839,66 +670,16 @@ "acT" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) -"acU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"acW" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) -"acY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "ada" = ( /obj/structure/reagent_dispensers, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"ade" = ( -/obj/structure/fence, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/exterior/cp_colony_grounds) -"adf" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/shiva/interior/colony/central) -"adi" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, -/area/shiva/interior/colony/research_hab) "adj" = ( /obj/item/reagent_container/glass/bucket/mopbucket, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"ado" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"adp" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "adq" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4; @@ -932,97 +713,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"adJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"adR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"adS" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"adT" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"adV" = ( -/obj/structure/surface/table, -/obj/item/device/reagent_scanner, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"adW" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"adX" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"adY" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) +"adL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "adZ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"aea" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aeb" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "aec" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -7; @@ -1040,115 +738,19 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"aef" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "aeg" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aeh" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) +"aei" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "aek" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ael" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"aeo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aeq" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"aet" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aev" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aew" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aex" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aez" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aeC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "aeD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -1178,54 +780,16 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"aeM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"aeN" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/s_admin) -"aeP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aeQ" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" +"aeO" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/shiva/interior/colony/research_hab) -"aeR" = ( -/obj/structure/machinery/light/double, -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) "aeU" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -1238,6 +802,10 @@ /obj/item/weapon/gun/boltaction, /turf/open/floor/wood, /area/shiva/interior/bar) +"afa" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "afb" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/snow/layer3, @@ -1249,84 +817,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"afd" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) -"aff" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"afh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"afi" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afp" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afv" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"afw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"afx" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"afz" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "afA" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -1339,93 +829,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"afE" = ( -/obj/structure/surface/table, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afF" = ( -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"afL" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afM" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"afN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"afP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"afQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"afR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"afV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"afX" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "afY" = ( /obj/item/weapon/ice_axe/green, /turf/open/auto_turf/ice/layer1, @@ -1434,25 +837,6 @@ /obj/structure/closet/bodybag, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"aga" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"agb" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "agc" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -1467,41 +851,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"age" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"agg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"agh" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"agl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"agm" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "agp" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -1533,23 +882,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"agx" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"agy" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"agz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/shiva/interior/colony/research_hab) "agA" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 @@ -1562,103 +894,44 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"agC" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"agF" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/technology_scanner, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"agK" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"agH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4; + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "agM" = ( /obj/item/ammo_box/magazine/nailgun, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"agQ" = ( +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "agR" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"agY" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"agZ" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aha" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"ahe" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) "ahh" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"ahl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +"ahi" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"ahj" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "ahq" = ( /obj/structure/filingcabinet/security, /turf/open/floor/wood, @@ -1669,12 +942,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ahu" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "ahv" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Custodial Closet"; @@ -1682,158 +949,20 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ahy" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"ahB" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva, -/area/shiva/interior/colony/research_hab) "ahC" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ahD" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"ahE" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"ahO" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"ahP" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"ahQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/cell/high, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"ahR" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"ahS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"ahT" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"ahU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"ahW" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "ahX" = ( /turf/closed/shuttle/elevator/gears, /area/shiva/interior/aerodrome) -"ahZ" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"aia" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"aii" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) +"aid" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "aij" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, @@ -1845,18 +974,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aim" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "ain" = ( /obj/structure/flora/bush/snow{ icon_state = "snowbush_2" @@ -1869,6 +986,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aiq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "ait" = ( /obj/structure/flora/bush/snow{ icon_state = "snowbush_3" @@ -1882,112 +1004,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aiv" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"aix" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"aiy" = ( -/obj/structure/surface/table, -/obj/item/storage/surgical_tray, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "aiz" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"aiD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"aiE" = ( -/obj/item/ammo_magazine/flamer_tank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "aiF" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"aiG" = ( -/obj/structure/machinery/optable, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aiH" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aiJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"aiK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"aiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 11; - pixel_y = 5 - }, -/obj/item/explosive/grenade/custom/metal_foam{ - pixel_x = 10 - }, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"aiO" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "aiQ" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; @@ -2002,86 +1026,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aiT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"aiV" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "aiW" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aiZ" = ( -/obj/structure/surface/rack, -/obj/item/cell, -/obj/item/cell, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"ajb" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ajd" = ( -/obj/item/stack/snow{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/stack/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"aje" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ajg" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aji" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"ajq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/shiva/interior/colony/n_admin) "ajr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -2090,75 +1038,24 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"aju" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "ajw" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ name = "\improper Colony Power Substation" }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ajy" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"ajD" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"ajE" = ( -/obj/item/stack/snow{ - pixel_x = -7 - }, -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) +"ajB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "ajF" = ( /obj/item/tool/shovel/etool, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"ajJ" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"ajK" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"ajL" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "ajM" = ( /obj/structure/ore_box, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ajN" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "ajO" = ( /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) @@ -2166,91 +1063,17 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"ajU" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "ajV" = ( /obj/structure/curtain, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"ajW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"ajX" = ( -/obj/structure/surface/table/reinforced, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"ajY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"aka" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"akf" = ( -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"akh" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aki" = ( -/turf/open/floor{ - dir = 5; - icon_state = "darkgreen2" - }, -/area/shiva/interior/colony/botany) -"akj" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"akl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" +"akg" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"ako" = ( -/obj/structure/barricade/snow{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard/fortbiceps) "akr" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating, @@ -2271,53 +1094,10 @@ /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"akA" = ( -/obj/item/tool/shovel/snow, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) -"akE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/shiva/interior/colony/central) -"akF" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/warehouse) "akG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"akH" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal{ - amount = 25; - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"akI" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "akL" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -2349,63 +1129,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"akT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"akX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) "ala" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"ald" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"ale" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"all" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "alr" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Mining Station"; @@ -2413,51 +1140,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"alt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"alx" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/wood{ - amount = 15 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aly" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"alz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "alA" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/junkyard) +"alG" = ( +/obj/structure/surface/table, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "alJ" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -2501,45 +1191,12 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"alV" = ( -/obj/item/clothing/gloves/latex, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "alW" = ( /obj/structure/barricade/deployable{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"alZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"ama" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"amh" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "ami" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -2555,26 +1212,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"amk" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"amn" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"amr" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "amu" = ( /turf/closed/wall/shiva/prefabricated/red, /area/shiva/interior/caves/research_caves) @@ -2583,37 +1220,10 @@ dir = 8 }, /obj/structure/flora/bush/ausbushes/var3/stalkybush{ - icon_state = "stalkybush_2"; - pixel_y = 13 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/colony/central) -"amA" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"amE" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"amG" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1 + icon_state = "stalkybush_2"; + pixel_y = 13 }, +/turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) "amH" = ( /obj/structure/bed/chair{ @@ -2638,18 +1248,6 @@ /obj/item/folder/red, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"amL" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "amM" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -2657,43 +1255,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"amN" = ( -/obj/item/tool/crowbar, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"amO" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"amP" = ( -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "amQ" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"amR" = ( -/obj/structure/prop/ice_colony/ground_wire{ - layer = 2.98 - }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/shiva/interior/lz2_habs) -"amU" = ( -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "amX" = ( /obj/item/paper_bin{ pixel_x = 7; @@ -2707,89 +1272,18 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"anb" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"anc" = ( -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/lz2_habs) -"anm" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"ano" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "anq" = ( /obj/structure/toilet, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"anr" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) "ans" = ( /obj/vehicle/train/cargo/trolley, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"ant" = ( -/obj/item/roller, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"any" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"anz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 9 - }, -/obj/item/stack/sheet/mineral/phoron{ - pixel_x = -1; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"anA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"anE" = ( -/obj/structure/barricade/metal/wired{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "anF" = ( /obj/item/reagent_container/food/drinks/bottle/limejuice{ pixel_x = 11; @@ -2816,84 +1310,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"anI" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "anJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/wirerod, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"anP" = ( -/obj/structure/surface/table/woodentable, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"anR" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"anU" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"anV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"anX" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/n_admin) -"anY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) +"anQ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "anZ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -2911,107 +1336,20 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aoi" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aop" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aor" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aos" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aot" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"aov" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aow" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"aoy" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aoz" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"aoA" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"aoB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +"aon" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"aou" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) "aoK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aoL" = ( -/obj/item/storage/pouch/flare/full, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"aoP" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "aoX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3091,6 +1429,12 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"apg" = ( +/obj/structure/surface/table, +/obj/item/key/cargo_train, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "api" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -3105,13 +1449,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"apk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "apm" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" @@ -3121,40 +1458,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"apv" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"apz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"apB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"apC" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "apD" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"apE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "apF" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -3170,75 +1486,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"apL" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"apO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"apT" = ( -/obj/item/ammo_casing{ - icon_state = "casing_5" - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"apW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"apY" = ( -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"apZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"aqb" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "aqc" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -3297,6 +1544,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"aqJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "aqN" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 6; @@ -3304,14 +1555,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ard" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) +"aqY" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/central) "arh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -3357,31 +1604,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"arB" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"arK" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"arL" = ( -/obj/structure/bed/chair/comfy/blue{ +"arH" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "arN" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 1 @@ -3404,14 +1635,6 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"arU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "arW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -3433,26 +1656,6 @@ /obj/item/stack/folding_barricade, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"asd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"ase" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "ash" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer3, @@ -3512,10 +1715,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"asC" = ( -/obj/structure/fence, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) "asE" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -3537,18 +1736,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"asJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/assembly/timer, -/obj/item/attachable/flashlight{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) "asK" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -3580,13 +1767,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/valley_huts/disposals) -"asU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz1_console/two) "asW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -3640,46 +1820,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"aty" = ( -/obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) -"atB" = ( -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) -"atC" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) -"atD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) -"atF" = ( -/obj/item/evidencebag, -/obj/item/trash/pistachios, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) -"atG" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/shiva/interior/valley_huts/disposals) "atH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -3690,65 +1830,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"atJ" = ( -/obj/structure/flora/tree/dead/tree_3, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) "atK" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"atS" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"atT" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/black{ - pixel_y = 4 - }, -/obj/item/device/flashlight{ - pixel_x = -3; - pixel_y = -13 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"aub" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"aud" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aue" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"auf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) "aug" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -3775,82 +1860,26 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aus" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "aut" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"auB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"auM" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"auS" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"auT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"auU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"auV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"auZ" = ( -/obj/structure/machinery/door/window/northright, -/turf/open/floor{ - dir = 5; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"ava" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - icon_state = "yellow" +"auu" = ( +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"auF" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 4 }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "ave" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -3862,27 +1891,6 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"avu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"avx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) "avz" = ( /obj/structure/surface/rack, /obj/item/bodybag/tarp/snow{ @@ -3893,49 +1901,34 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"avD" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"avG" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"avL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "avU" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"awc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"awj" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"awq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Colony Disposals" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/shiva/interior/valley_huts/disposals) "awr" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"awA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/wood{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) +"aww" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "awK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -3961,13 +1954,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"axd" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "axe" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -3975,43 +1961,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"axf" = ( -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) -"axq" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -5; - pixel_y = -9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"axt" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/storage/toolbox/emergency, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"axv" = ( -/turf/open/floor{ - icon_state = "darkbrowncorners2" - }, -/area/shiva/interior/valley_huts/disposals) -"axw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) "axx" = ( /obj/structure/ice/ice_rock/cornerOverlay{ dir = 1 @@ -4032,50 +1981,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"axG" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"axH" = ( -/obj/structure/surface/table, -/obj/item/storage/belt/utility, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axI" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "axJ" = ( /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"axK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axM" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "axN" = ( /obj/structure/machinery/door_control{ id = "garage_ice_2"; @@ -4083,94 +1991,6 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) -"axO" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axQ" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axR" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"axS" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/good_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 10; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"axT" = ( -/obj/structure/surface/table, -/obj/item/device/lightreplacer, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"axU" = ( -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"axV" = ( -/obj/structure/machinery/light/double, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"axZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"ayb" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight/flare, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 6; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) "ayc" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -4187,61 +2007,19 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ayo" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"ayx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"ayy" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, -/area/shiva/interior/garage) -"ayB" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"ayG" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +"ayk" = ( +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"ayE" = ( +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) "ayH" = ( /obj/item/clothing/shoes/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"ayJ" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/research_alley) "ayK" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, @@ -4290,78 +2068,10 @@ /obj/effect/decal/warning_stripes, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"azd" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"aze" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azf" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azg" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "azm" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"azo" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azp" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azq" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "azx" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -4381,55 +2091,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"azF" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"azH" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"azI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N-corner" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"azK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "azM" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"azO" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) "azS" = ( /obj/structure/surface/table, /obj/item/clipboard, @@ -4439,50 +2104,13 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"azY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"azZ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/n_admin) -"aAc" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"aAg" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"aAh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aAi" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"aAj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"aAe" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 210 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "aAl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -4494,40 +2122,9 @@ /obj/effect/landmark/corpsespawner/security, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"aAn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"aAp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aAM" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"aBe" = ( -/obj/item/bodybag, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"aBf" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) +"aAK" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) "aBi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -4544,57 +2141,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"aBk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aBl" = ( -/obj/item/bodybag, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"aBm" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aBs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"aBt" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "aBA" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aBB" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) +"aBD" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) "aBE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -4603,33 +2158,11 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"aBK" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aBU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"aBV" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"aBZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) +"aBO" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) "aCb" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -4666,31 +2199,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"aCv" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/rebreather, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"aCw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, -/area/shiva/interior/garage) -"aCx" = ( -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/garage) "aCy" = ( /obj/structure/surface/table, /obj/structure/machinery/computer3/laptop/secure_data{ @@ -4698,26 +2206,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"aCz" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"aCA" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"aCB" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "aCC" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer2, @@ -4764,28 +2252,6 @@ "aDn" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/medseceng) -"aDo" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 15 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"aDq" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) "aDu" = ( /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) @@ -4803,35 +2269,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"aDE" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel/snow, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"aDF" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"aDG" = ( -/obj/structure/machinery/door_control{ - id = "st_17"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) "aDH" = ( /obj/structure/machinery/door_control{ id = "st_17"; @@ -4857,12 +2294,6 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"aDR" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) "aDS" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ id = "st_17"; @@ -4870,23 +2301,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/valley_huts/no2) -"aDW" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"aEd" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 2; - pixel_y = -1 - }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/lz2_habs) +"aEn" = ( +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) "aEq" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, @@ -4899,6 +2316,10 @@ }, /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) +"aEt" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "aEu" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/flora/tree/dead/tree_1, @@ -4987,30 +2408,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"aFs" = ( -/obj/structure/machinery/door_control{ - id = "st_18"; - name = "Storage Unit Lock"; - normaldoorcontrol = 1; - pixel_y = 24; - req_access_txt = "100"; - specialfunctions = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 50 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) -"aFu" = ( -/obj/item/storage/pouch/firstaid/full/pills, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "aFz" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, @@ -5044,51 +2441,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"aFL" = ( +/turf/open/floor/shiva/greencorners/east, +/area/shiva/interior/colony/botany) "aFO" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"aFZ" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"aGb" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/shiva/interior/aerodrome) -"aGc" = ( -/obj/structure/prop/structure_lattice{ - dir = 4; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/shiva/interior/aerodrome) -"aGd" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/shiva/interior/aerodrome) -"aGe" = ( -/obj/structure/prop/structure_lattice{ - dir = 8; - health = 300; - icon = 'icons/turf/elevator.dmi'; - icon_state = "wall_broke" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/shiva/interior/aerodrome) +"aGa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "aGf" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -5109,6 +2471,14 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"aGA" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 15; + pixel_y = -3 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "aGC" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -5134,176 +2504,77 @@ /obj/item/stack/rods, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aHr" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/cargo_container/horizontal/blue/top{ - density = 0; - pixel_y = 12 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"aHz" = ( -/obj/structure/flora/tree/dead/tree_1, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) "aHB" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"aHI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"aHJ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "aHP" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"aHQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "aIh" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/barbed_wire, /turf/open/asphalt/cement, -/area/shiva/interior/warehouse) -"aIv" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"aIG" = ( -/obj/item/weapon/wirerod, -/turf/open/shuttle/elevator/grating, -/area/shiva/interior/aerodrome) -"aIO" = ( -/turf/closed/wall/shiva/prefabricated/red, -/area/shiva/interior/oob) -"aJc" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"aJd" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"aJe" = ( -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) +/area/shiva/interior/warehouse) +"aIG" = ( +/obj/item/weapon/wirerod, +/turf/open/shuttle/elevator/grating, +/area/shiva/interior/aerodrome) +"aIJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"aJa" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "aJj" = ( /obj/item/weapon/throwing_knife, /turf/open/shuttle/elevator/grating, /area/shiva/interior/aerodrome) -"aJk" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/shiva/interior/aerodrome) -"aJn" = ( -/obj/item/frame/table, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) +"aJx" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "aJy" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aJB" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/central) -"aJE" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"aJF" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "aJG" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"aJM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"aJR" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassgb_2" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "aJU" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"aKk" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - icon_state = "psiphon:1" +"aKf" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "aKn" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"aKo" = ( -/obj/structure/surface/rack, -/obj/item/ammo_rcd{ - pixel_x = -4 - }, -/obj/item/ammo_rcd{ - pixel_x = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/caves/cp_camp) "aKp" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer3, @@ -5315,42 +2586,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aKr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/bar) -"aKv" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"aKA" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/bar) -"aKD" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/bar) -"aKJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Lounge" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"aKF" = ( +/turf/open/floor/shiva/wredcorners, +/area/shiva/interior/colony/medseceng) "aKK" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -5361,43 +2599,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aKP" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"aKQ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "aKR" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"aKS" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"aLk" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "aLs" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -5425,21 +2632,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aLB" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/s_admin) "aLD" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"aLG" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) "aLJ" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -5466,33 +2662,17 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"aMk" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard/cp_bar) "aMl" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"aMn" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"aMs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aMo" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Colony Dormitories" }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "aMu" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" @@ -5503,42 +2683,6 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"aMw" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"aMx" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"aMy" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) -"aMz" = ( -/obj/structure/machinery/smartfridge{ - density = 0; - pixel_y = 22 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "aMA" = ( /obj/structure/bed/chair{ dir = 4 @@ -5603,55 +2747,19 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aMT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/trash/chunk, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"aMR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "aMW" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"aMZ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"aNb" = ( -/obj/structure/safe, -/obj/item/spacecash/c1000{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c500, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/s_admin) -"aNd" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) "aNe" = ( /obj/effect/spawner/random/toolbox, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"aNf" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "aNg" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -5681,20 +2789,6 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aNp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) -"aNq" = ( -/obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "aNy" = ( /obj/structure/platform/strata{ dir = 1 @@ -5709,21 +2803,10 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"aNL" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"aNN" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) +"aNJ" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "aNP" = ( /turf/closed/shuttle/elevator/button/research, /area/shiva/interior/colony/research_hab) @@ -5740,41 +2823,14 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"aOk" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/valley) -"aOl" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/valley) "aOo" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"aOp" = ( -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/valley) "aOu" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/medseceng_caves) -"aOv" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "aOW" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/s_admin) @@ -5805,47 +2861,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"aPg" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/lz2_habs) -"aPh" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"aPi" = ( -/obj/item/paper/research_notes/bad{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/lz2_habs) -"aPj" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "aPk" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 @@ -5864,56 +2879,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"aPy" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) -"aPX" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"aQb" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/s_admin) -"aQg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"aQh" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = -13; - pixel_y = 28 - }, -/obj/structure/largecrate/random/mini/small_case/b, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 14; - pixel_y = -3 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "aQi" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer2, @@ -5943,10 +2908,39 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"aQt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "aQJ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"aQK" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"aQP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"aQR" = ( +/obj/structure/surface/rack, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/item/cell/hyper/empty, +/obj/item/cell/hyper/empty, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "aQX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, @@ -5975,30 +2969,6 @@ /obj/item/stool, /turf/open/floor/shiva, /area/shiva/interior/bar) -"aRo" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"aRp" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"aRs" = ( -/obj/structure/closet/radiation, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "aRz" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Straight" @@ -6015,6 +2985,14 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"aRN" = ( +/obj/structure/closet/radiation, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "aRS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -6028,29 +3006,25 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"aRW" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/lz2_habs) "aSa" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"aSc" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/s_admin) "aSi" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) +"aSl" = ( +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) +"aSq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aSx" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -6074,31 +3048,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"aSC" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/research_alley) -"aSF" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"aSG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"aSI" = ( -/obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "aSJ" = ( /obj/structure/prop/invuln{ desc = "Boy am I glad that he's in there and that we're out here and that we're in there and that he's the sheriff."; @@ -6134,12 +3083,9 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"aSQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Anti-Freeze Lounge" - }, -/turf/open/floor/plating, -/area/shiva/interior/bar) +"aSS" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) "aSX" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/floor/plating, @@ -6186,52 +3132,10 @@ /obj/effect/spawner/random/tool, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"aTr" = ( -/obj/item/tool/shovel/snow{ - pixel_y = 8 - }, -/obj/item/tool/shovel/snow, -/obj/structure/surface/rack, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) -"aTt" = ( -/obj/item/lightstick/red/variant/planted{ - pixel_x = 11; - pixel_y = 11 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"aTw" = ( -/obj/structure/prop/ice_colony/soil_net, -/obj/item/tool/shovel/spade{ - layer = 2.99; - pixel_x = -9; - pixel_y = -11 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) "aTE" = ( /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"aTH" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/largecrate/random/case, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"aTL" = ( -/obj/structure/largecrate/random/case{ - pixel_y = 11 - }, -/obj/structure/largecrate/random/mini/chest/b{ - pixel_x = -4; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) "aTO" = ( /obj/item/stack/rods, /turf/open/asphalt/cement, @@ -6247,169 +3151,53 @@ /obj/structure/machinery/door/airlock/multi_tile/elevator/access/research, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"aTT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "aTY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) -"aTZ" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/shiva/interior/colony/medseceng) -"aUc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"aUd" = ( -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/junkyard/cp_bar) -"aUn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"aUt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Anti-Freeze Lounge" - }, -/turf/open/floor/plating, -/area/shiva/interior/bar) -"aUw" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan27" - }, -/area/shiva/interior/aerodrome) -"aUx" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan22" - }, -/area/shiva/interior/aerodrome) -"aUy" = ( -/obj/structure/computerframe{ - pixel_y = 24 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"aUz" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan23" - }, -/area/shiva/interior/aerodrome) -"aUA" = ( -/obj/structure/girder/reinforced, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"aUM" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"aUP" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/orange{ - pixel_y = 6 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) -"aUQ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/research_alley) -"aUS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) -"aUT" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"aUU" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"aUX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"aUY" = ( -/obj/structure/machinery/light/double{ +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) +"aTZ" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/shiva/interior/colony/medseceng) +"aUd" = ( +/turf/closed/wall/shiva/ice, +/area/shiva/exterior/junkyard/cp_bar) +"aUt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - pixel_y = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" + name = "\improper Anti-Freeze Lounge" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/turf/open/floor/plating, +/area/shiva/interior/bar) +"aUw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" }, -/area/shiva/interior/colony/research_hab) -"aVc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" +/area/shiva/interior/aerodrome) +"aUx" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan22" }, -/turf/open/floor/shiva{ - dir = 1 +/area/shiva/interior/aerodrome) +"aUz" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan23" }, -/area/shiva/interior/bar) -"aVm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/area/shiva/interior/aerodrome) +"aUB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"aUV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "aVn" = ( /obj/structure/reagent_dispensers/beerkeg, /obj/structure/reagent_dispensers/beerkeg{ @@ -6452,37 +3240,15 @@ "aVx" = ( /turf/closed/shuttle/ert, /area/shiva/interior/aerodrome) -"aVB" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"aVF" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar/red, -/obj/item/device/flash, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"aVL" = ( -/turf/open/shuttle{ - icon_state = "floor7" +"aVK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/shiva/interior/aerodrome) -"aVM" = ( -/obj/item/weapon/gun/pistol/holdout, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/plating, +/area/shiva/exterior/valley) "aVN" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" @@ -6513,72 +3279,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"aVT" = ( -/obj/item/tool/mop{ - pixel_y = 20 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) -"aVU" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"aVW" = ( -/obj/item/lightstick/red/variant/planted{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"aWb" = ( -/obj/structure/foamed_metal, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"aWs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"aWv" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"aWB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"aWC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "aWD" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 5 @@ -6600,16 +3300,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"aWG" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 20 - }, -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) "aWH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -6626,20 +3316,6 @@ icon_state = "stan8" }, /area/shiva/interior/aerodrome) -"aWS" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shiva/interior/aerodrome) -"aWT" = ( -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shiva/interior/aerodrome) "aWU" = ( /turf/closed/shuttle/ert{ icon_state = "stan9" @@ -6662,12 +3338,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"aXa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "aXb" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, @@ -6680,15 +3350,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aXh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "aXi" = ( /obj/structure/ice/thin/indestructible{ icon_state = "Corner" @@ -6715,25 +3376,14 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"aXw" = ( -/obj/vehicle/train/cargo/engine, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"aXH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) +"aXy" = ( +/obj/item/lightstick/red/spoke, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"aXB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "aXI" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -6755,40 +3405,19 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aXZ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aXY" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/shiva/interior/valley_huts/no2) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "aYd" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/shiva/interior/aerodrome) -"aYf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) -"aYg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) "aYx" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3" @@ -6798,17 +3427,21 @@ /obj/structure/window_frame/shiva, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"aYF" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) -"aYU" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +"aYZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/processor{ + desc = "It CAN blend it."; + icon_state = "blender_e"; + name = "Blendomatic"; + pixel_x = -2; + pixel_y = 10 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"aZc" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "aZg" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -6819,23 +3452,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"aZp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"aZw" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) "aZA" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -6848,21 +3464,21 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"aZJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"aZK" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "aZP" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"aZR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Colony Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 6; - icon_state = "darkgreen2" - }, -/area/shiva/interior/colony/botany) "bag" = ( /obj/structure/ice/thin/indestructible{ dir = 8; @@ -6887,12 +3503,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) -"bai" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) "bar" = ( /obj/item/trash/tray, /obj/item/trash/tray{ @@ -6905,9 +3515,13 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"bax" = ( -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/research_alley) +"baA" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"baJ" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/central) "baN" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -6922,40 +3536,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"baV" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"baW" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) "baX" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/shiva/interior/aerodrome) -"baY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) -"bbg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) "bbh" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2" @@ -6974,27 +3560,6 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bbt" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/valley) -"bbw" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/deck) -"bbF" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) "bbG" = ( /obj/structure/ice/thin/indestructible{ dir = 4; @@ -7007,6 +3572,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/ice/noweed, /area/shiva/interior/colony/research_hab) +"bbU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "bcl" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -7022,6 +3591,12 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) +"bcw" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "bcE" = ( /obj/structure/platform/strata{ dir = 8 @@ -7038,10 +3613,6 @@ opacity = 0 }, /area/shiva/interior/aerodrome) -"bcM" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) "bcV" = ( /obj/structure/platform/strata{ dir = 1 @@ -7051,36 +3622,26 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"bdk" = ( -/obj/structure/bed/chair/dropship/passenger{ +"bdF" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) -"bdT" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bel" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"bea" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shiva/interior/aerodrome) "ben" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz1_north) +"beD" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "beF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -7096,13 +3657,13 @@ icon_state = "rightengine_1" }, /area/shiva/interior/aerodrome) -"beP" = ( -/obj/item/clothing/under/rank/janitor, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) +"beL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"beM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_lz2) "beQ" = ( /turf/closed/shuttle/elevator, /area/shiva/interior/colony/central) @@ -7127,18 +3688,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) -"bfy" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"bfB" = ( +"bfw" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/valley) +/area/shiva/interior/caves/cp_camp) "bfL" = ( /obj/structure/largecrate/random/mini/wooden, /turf/open/auto_turf/snow/layer2, @@ -7161,37 +3714,57 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bhB" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassall_1" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"bhI" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +"bgX" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/medseceng) +"bhk" = ( +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"bhD" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/research_caves) +"bhG" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "bhN" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"bhS" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +"bii" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) -"bhY" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"bil" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bix" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/shiva/interior/lz2_habs) +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"biE" = ( +/obj/structure/closet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"biI" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/deck) "biM" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) @@ -7208,42 +3781,54 @@ "bjv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) -"bjP" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"bjT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"bkr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "bks" = ( /obj/structure/morgue{ dir = 8 }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"bkv" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "bkP" = ( /obj/effect/spider/cocoon{ icon_state = "cocoon_large2" }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"blI" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/telecomm/lz1_biceps) -"blP" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "bmg" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"bmh" = ( +/obj/item/paper/research_notes{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"bms" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "bmv" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, @@ -7251,40 +3836,48 @@ "bni" = ( /turf/open/floor/plating, /area/shiva/interior/caves/cp_camp) -"bnk" = ( -/obj/structure/largecrate/random/mini/chest/b, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"bnm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 +"bnj" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "bnD" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"bnK" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"bnN" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "bnS" = ( /obj/structure/bed/chair, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"boz" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +"boe" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"bom" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"boy" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/storage/toolbox/emergency, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) "boA" = ( /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, @@ -7297,50 +3890,63 @@ /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"boS" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_3" - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) -"boT" = ( -/obj/structure/largecrate/random/mini/wooden{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"boJ" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 4; + icon_state = "sandbag_0" }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "boW" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"bpH" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, +"bpU" = ( +/obj/item/trash/candy, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"bqp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"bqq" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"bqy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - icon_state = "redfull" +"bqw" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) -"bqN" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle{ - icon_state = "floor7" +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "bqO" = ( /obj/effect/decal/cleanable/blood, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"bsp" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" +"bqS" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/area/shiva/interior/colony/deck) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"bqZ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"bre" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "bsw" = ( /obj/effect/landmark/corpsespawner/bridgeofficer, /turf/open/auto_turf/snow/layer0, @@ -7351,12 +3957,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bsM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_lz2) "bsN" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/ice/layer1, @@ -7370,56 +3970,51 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"btM" = ( -/obj/item/lightstick/red/spoke/planted{ +"buq" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) +"bur" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/warnplate/northwest, +/area/shiva/interior/colony/medseceng) +"buJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/colony/medseceng) +"buL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/custom/metal_foam{ pixel_x = 11; - pixel_y = 20 + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/explosive/grenade/custom/metal_foam{ + pixel_x = 10 }, -/area/shiva/interior/bar) -"btQ" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 }, -/area/shiva/interior/colony/central) -"buJ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/shiva/prefabricated/reinforced, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "bvb" = ( /obj/structure/platform_decoration/strata, /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bvC" = ( +"bvO" = ( /obj/structure/surface/table, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/wirecutters, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"bwb" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowcorners/north, +/area/shiva/interior/garage) +"bwi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "bwk" = ( /obj/structure/platform/shiva/catwalk{ dir = 1 @@ -7431,44 +4026,31 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bwJ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) +"bwv" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) "bwP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"bxb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"bxL" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/under/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"bxW" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +"bxa" = ( +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal5"; + pixel_y = -17 }, +/turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/colony/research_hab) +"bxj" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"bxS" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "byr" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -7478,42 +4060,36 @@ /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"byH" = ( -/obj/structure/surface/table, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"byK" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"bzh" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 +"byO" = ( +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"bzk" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/shiva/interior/aerodrome) +"bzu" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "bzK" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"bzZ" = ( +"bzN" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"bAg" = ( /obj/structure/surface/rack, -/obj/item/circuitboard/airalarm, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "bAn" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ @@ -7521,12 +4097,13 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"bAv" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) +"bAr" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/aux_power) +"bAy" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "bAK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -7535,28 +4112,41 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"bAX" = ( -/obj/structure/platform_decoration/shiva/catwalk{ +"bAP" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/shiva/interior/aerodrome) -"bBs" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/shiva/wredcorners/north, +/area/shiva/interior/colony/medseceng) +"bBo" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"bBw" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "bBB" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bBT" = ( -/obj/structure/inflatable/popped, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/research_alley) +"bCB" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"bDn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "bDx" = ( /obj/item/reagent_container/food/drinks/flask/vacuumflask, /turf/open/floor/shiva, @@ -7577,14 +4167,9 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"bFP" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 10 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +"bFQ" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "bFS" = ( /obj/structure/platform/shiva/catwalk{ @@ -7596,16 +4181,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"bGk" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"bGx" = ( -/obj/item/shard{ - icon_state = "medium" +"bGh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +/turf/open/floor/strata/floor3/east, +/area/shiva/interior/colony/deck) +"bGt" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "bGU" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -7615,39 +4202,9 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"bHf" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"bHx" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"bHC" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"bHN" = ( -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = -7; - pixel_y = -8 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) +"bHG" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) "bHZ" = ( /obj/structure/platform/strata{ dir = 8 @@ -7658,44 +4215,61 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) +"bId" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) "bIh" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"bIT" = ( +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "bIV" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"bJf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"bJi" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"bJe" = ( +/obj/structure/surface/table, +/obj/item/device/camera, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "bJj" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"bJk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"bJl" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"bJw" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "bJz" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/colony/central) -"bJF" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"bKD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "bKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -7713,119 +4287,102 @@ "bKV" = ( /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"bLb" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "bLf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Underground Maintenance" }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"bLx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/cell/high, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"bLy" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"bLI" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/aux_power) "bMn" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/holywater, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"bMK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "bMW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"bNu" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"bNB" = ( +/obj/item/storage/pouch/firstaid/full/pills, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"bOq" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/shiva/interior/colony/research_hab) -"bNN" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) +"bPl" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"bOh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"bPq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bPu" = ( /obj/item/bodybag, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"bPJ" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"bPv" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/area/shiva/interior/colony/medseceng) +/obj/item/storage/pill_bottle/russianRed{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"bPE" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "bQv" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"bQx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"bQR" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"bQX" = ( -/obj/structure/prop/ice_colony/poly_kevlon_roll{ - pixel_y = 21 - }, -/obj/structure/prop/ice_colony/poly_kevlon_roll{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "bQZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/caves/s_lz2) +"bRA" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "bRD" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Hydroponics South Wing Dome" }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"bRU" = ( -/obj/structure/flora/tree/dead/tree_5, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) "bSB" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -7844,26 +4401,30 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"bTV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 +"bTK" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = 5 }, -/area/shiva/interior/colony/n_admin) +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "bUe" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"bUO" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +"bUu" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "bUU" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -7872,35 +4433,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"bUX" = ( -/obj/item/storage/belt/gun/m44, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"bVb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"bVr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "bVz" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"bVK" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "bVS" = ( /obj/structure/machinery/light/double, /obj/effect/decal/cleanable/vomit, @@ -7915,6 +4457,18 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"bWH" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 32 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"bXa" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "bXl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -7936,100 +4490,77 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"bXC" = ( -/obj/structure/machinery/m56d_hmg{ - dir = 4 +"bXz" = ( +/obj/item/packageWrap, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"bXV" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/tool/weldingtool{ + pixel_x = 5; + pixel_y = 4 }, +/turf/open/floor/shiva/green/west, /area/shiva/interior/colony/botany) -"bYd" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"bYk" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"bZf" = ( +/turf/open/floor/shiva/greencorners, +/area/shiva/interior/colony/botany) +"bZL" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/n_admin) +"bZW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"bYO" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" +"cah" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"cam" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" }, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"caK" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" }, -/area/shiva/interior/aerodrome) -"bYS" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 2; + pixel_y = -1 }, -/area/shiva/interior/colony/central) +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) "caS" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"cbk" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"cbt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +"cbM" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/double, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"cbC" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "cbW" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cce" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"ccu" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz1_north) +"cbX" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "ccI" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/ice/layer1, @@ -8038,6 +4569,14 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"cdH" = ( +/turf/open/floor/darkgreen2/northwest, +/area/shiva/interior/colony/botany) +"cep" = ( +/obj/structure/surface/table, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cex" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -8045,19 +4584,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"ceM" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/cp_lz2) -"ceS" = ( -/obj/structure/bed/chair{ - dir = 1 +"ceU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/platform/shiva/catwalk{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/plating, +/area/shiva/interior/aerodrome) "cgd" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -8073,103 +4608,155 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cgQ" = ( -/obj/item/device/taperecorder, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"cgp" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/shiva/exterior/junkyard/fortbiceps) +"cgK" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"cgP" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "cgR" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) -"chq" = ( -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva{ - dir = 1 +"cgX" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"chG" = ( +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"cii" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/lz2_habs) -"chU" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"cij" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"cix" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" }, -/area/shiva/interior/colony/research_hab) -"cio" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/closed/wall/shiva/ice, +/area/shiva/exterior/cp_s_research) +"ciJ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/warehouse) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "ciL" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) +"cjF" = ( +/obj/item/frame/toolbox_tiles, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"ckj" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/research_caves) "cko" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) +"cks" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) +"ckB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "ckH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_s_research) -"ckI" = ( +"clR" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"cmb" = ( /obj/structure/surface/table, -/obj/item/circuitboard{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"clp" = ( -/obj/item/tool/weldingtool, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/obj/item/device/assembly/infra, +/obj/item/device/assembly/voice, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"cmc" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/shuttle/can_surgery/black, /area/shiva/interior/aerodrome) -"clz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" +"cmv" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"cmN" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"cmV" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/medseceng) -"clK" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/left_spiders) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "cnb" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/telecomm/lz2_northeast) +"cnc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "cng" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"cnk" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +"cnq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 5 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "cnt" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"coj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"cnG" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"cod" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/warehouse/caves) +"coh" = ( +/obj/item/paper/research_notes/decent, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "cos" = ( /obj/item/lightstick/red/spoke/planted{ @@ -8191,16 +4778,6 @@ icon_state = "stan23" }, /area/shiva/interior/aerodrome) -"cpb" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "cpC" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, @@ -8222,17 +4799,26 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"crk" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"cqH" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"cqO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "crF" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/research_hab) +"crS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "cse" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -8242,43 +4828,86 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"cso" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/shiva/interior/colony/medseceng) "csu" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"ctk" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"csM" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/area/shiva/interior/colony/research_hab) -"ctC" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"csN" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"csW" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/clipboard{ + pixel_y = 5 }, -/area/shiva/interior/colony/research_hab) -"ctJ" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"cth" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"cts" = ( +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/garage) +"ctH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/tool/soap{ + pixel_x = -7 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "cur" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) +"cut" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"cuD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "cuJ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"cuU" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"cvh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "cvn" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/plating, @@ -8295,9 +4924,35 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"cwn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) +"cwT" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "cwZ" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) +"cxa" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"cxj" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "cxr" = ( /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) @@ -8307,41 +4962,53 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"cyd" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"cxV" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/obj/structure/sink{ - pixel_y = 15 +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"cxX" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"cyJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"cze" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/shiva/interior/colony/botany) -"cyW" = ( -/obj/structure/girder, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "czf" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"czH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/shiva{ - dir = 1 +"czG" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/research_hab) +"czN" = ( +/obj/structure/prop/structure_lattice{ + dir = 8; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, -/area/shiva/interior/colony/central) -"czI" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "dark2" +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"cAa" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/shiva/interior/caves/research_caves) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "cAH" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, @@ -8355,70 +5022,48 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"cBe" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"cBs" = ( -/obj/structure/machinery/cell_charger, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"cBB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) -"cBF" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"cBG" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "cBL" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/shiva, /area/shiva/interior/bar) -"cBU" = ( -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/research_caves) -"cBX" = ( +"cCr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"cCB" = ( /obj/item/lightstick/red/spoke/planted{ - pixel_x = -16; - pixel_y = -3 + pixel_x = 12; + pixel_y = 25 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"cCI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/plating/icefloor/warnplate/northeast, +/area/shiva/exterior/junkyard/fortbiceps) +"cDd" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 4 }, -/area/shiva/interior/colony/n_admin) +/turf/open/gm/river, +/area/shiva/interior/warehouse/caves) +"cDi" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"cDp" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "cDN" = ( /obj/structure/largecrate/random/case/small{ layer = 2.9 @@ -8431,25 +5076,22 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"cEk" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"cEV" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"cFa" = ( +"cEw" = ( /obj/structure/machinery/light/double{ - dir = 4; + dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"cEJ" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/shiva/interior/bar) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"cFw" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "cFQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -8464,6 +5106,14 @@ /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cGI" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer2, +/area/shiva/exterior/valley) "cGJ" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 @@ -8478,28 +5128,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"cGW" = ( -/obj/structure/largecrate/random{ - anchored = 1; - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 10; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"cHB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +"cHp" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/area/shiva/interior/aerodrome) +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "cIa" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer3, @@ -8514,17 +5151,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"cIV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"cJy" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"cIq" = ( +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) +"cIY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"cJk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "cJC" = ( /obj/structure/platform/strata{ dir = 8 @@ -8534,46 +5174,49 @@ "cKb" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/deck) -"cKB" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"cKE" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/botany) +"cKx" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "cKL" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/valley) "cKR" = ( /turf/open/floor/plating, /area/shiva/interior/caves/s_lz2) -"cLi" = ( +"cKV" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"cLq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"cLv" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 130 }, -/area/shiva/interior/aerodrome) +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "cLx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 2 }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"cLB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"cLL" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) "cLQ" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -8585,6 +5228,10 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"cMl" = ( +/obj/structure/girder, +/turf/open/floor/dark2, +/area/shiva/interior/caves/research_caves) "cMr" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer1, @@ -8595,15 +5242,20 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"cOa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +"cMK" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"cNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"cNE" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "cOq" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, @@ -8615,39 +5267,33 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"cOX" = ( -/obj/structure/surface/table, -/obj/item/key/cargo_train, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" +"cPP" = ( +/obj/structure/barricade/metal/wired{ + dir = 1 }, -/area/shiva/interior/lz2_habs) -"cPK" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"cPZ" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"cQy" = ( +/obj/structure/tunnel{ + id = "south_tcomms_tunnel" }, -/area/shiva/exterior/cp_colony_grounds) -"cQB" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"cQL" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) "cQW" = ( /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) @@ -8655,43 +5301,21 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"cRd" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "cRq" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"cRs" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) +"cRA" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "cRP" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"cRX" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"cSn" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/clothing/suit/armor/riot/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) "cTh" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -8699,50 +5323,24 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"cTo" = ( +"cTH" = ( /obj/structure/surface/table, +/obj/effect/landmark/crap_item, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"cTu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluecorners" - }, -/area/shiva/interior/colony/central) -"cTY" = ( -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"cUl" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" +"cTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/shiva/interior/telecomm/lz1_biceps) +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "cUQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"cUS" = ( -/turf/open/floor/shiva{ - icon_state = "greencorners" - }, -/area/shiva/interior/colony/botany) -"cVy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "cVM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -8750,12 +5348,23 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"cVO" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "cWN" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cWS" = ( +/obj/item/paper/research_notes/good, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cWT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass{ @@ -8763,16 +5372,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"cXb" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_lz2) "cXk" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"cXm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) +"cXK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "cXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -8790,24 +5403,10 @@ /obj/structure/prop/ice_colony/surveying_device, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"cYa" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"cYc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"cYu" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "cYz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -8822,32 +5421,12 @@ /obj/item/device/multitool, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"cYR" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "cYT" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"cZb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "cZk" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) @@ -8857,24 +5436,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"cZE" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) "cZZ" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/blood{ @@ -8885,18 +5446,29 @@ "daD" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"daY" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) +"dbp" = ( +/obj/effect/spawner/random/powercell, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "dbH" = ( /turf/closed/shuttle/ert{ icon_state = "stan1" }, /area/shiva/interior/aerodrome) -"dbQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +"dbK" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) +"dbN" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"dcd" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar/red, +/obj/item/device/flash, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) "dcu" = ( /obj/structure/flora/tree/dead/tree_4, @@ -8908,21 +5480,18 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"dcV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +"dcI" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"ddA" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_1" +"ddb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +/obj/item/newspaper, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "dex" = ( /obj/structure/machinery/photocopier, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -8931,18 +5500,25 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) +"deE" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"deP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "deV" = ( /turf/closed/shuttle/ert{ icon_state = "stan3" }, /area/shiva/interior/aerodrome) -"dgb" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/garage) +"dfk" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/medseceng) "dgF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -8955,80 +5531,63 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"dgK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/research_hab) "dgS" = ( /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) -"dhx" = ( -/obj/item/device/binoculars/civ, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"diL" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva, -/area/shiva/interior/bar) -"djn" = ( -/turf/open/floor/carpet, -/area/shiva/interior/colony/central) -"djy" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/botany) -"djJ" = ( +"dij" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"dis" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/candy_corn{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/clothing/head/fedora{ - pixel_x = -6; - pixel_y = 12 +/obj/item/stack/rods{ + amount = 25 }, +/obj/item/stack/cable_coil, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"diL" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva, +/area/shiva/interior/bar) +"djn" = ( +/turf/open/floor/carpet, +/area/shiva/interior/colony/central) +"dkq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/obj/structure/machinery/light{ + dir = 4 }, -/area/shiva/interior/colony/n_admin) -"djO" = ( -/obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) +"dku" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 10 }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "dkv" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"dkC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"dkI" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) +"dkx" = ( +/obj/structure/fence, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) "dkP" = ( /obj/structure/barricade/metal{ layer = 3 @@ -9051,6 +5610,63 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) +"dln" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"dlD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"dmg" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) +"dmm" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"dmA" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) +"dmI" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/orange{ + pixel_y = 6 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"dmN" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"dns" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/warehouse/caves) +"dnu" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "dnv" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 5 @@ -9063,20 +5679,49 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"dnA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "dnH" = ( /obj/structure/surface/table, /obj/item/storage/box/lightstick/red, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"doc" = ( -/turf/open/floor{ - icon_state = "wood" +"dnJ" = ( +/obj/structure/machinery/door_control{ + id = "st_18"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_y = 24; + req_access_txt = "100"; + specialfunctions = 4 }, -/area/shiva/interior/colony/central) +/obj/structure/machinery/power/apc/power/east{ + start_charge = 50 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"dnO" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "doJ" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"doM" = ( +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "doV" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" @@ -9090,140 +5735,135 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"dqH" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"dpW" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) "dqW" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"drx" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"dri" = ( +/obj/item/tool/mop{ + pixel_y = 20 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = 5 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "drM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/surface/rack, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"drN" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/device/implanter/subdermal_armor{ + pixel_x = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "dsx" = ( /turf/closed/shuttle/elevator{ dir = 1 }, /area/shiva/interior/aerodrome) -"dsD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 +"dsz" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "panic_room" }, -/area/shiva/exterior/lz2_fortress) -"dsY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"dsU" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"dsX" = ( +/obj/structure/surface/table, +/obj/item/storage/box/trackimp, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "dtq" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/botany) -"dtr" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"dtE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"dtZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/bar) "dug" = ( /obj/item/reagent_container/food/drinks/bottle/rum, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"duv" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"duD" = ( +/obj/structure/surface/table, +/obj/item/tool/wirecutters/clippers{ + pixel_y = 8 }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"duE" = ( +/obj/structure/surface/table, +/obj/item/storage/box/syringes{ + pixel_y = 2 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) "dvg" = ( /obj/item/tool/warning_cone{ pixel_y = 16 }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) -"dwf" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/item/clothing/mask/rebreather, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"dwj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 5 }, +/turf/open/floor/prison/kitchen, /area/shiva/interior/bar) +"dwN" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "dwQ" = ( /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"dxh" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber{ - icon_state = "psiphon:1" +"dxs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) +"dxG" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "dxS" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"dyt" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) +"dyP" = ( +/obj/structure/machinery/landinglight/ds1/spoke, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"dyY" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "dze" = ( /obj/effect/decal/warning_stripes{ icon_state = "W-corner" @@ -9236,103 +5876,194 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"dAi" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" +"dzJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/valley) +"dAj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"dAk" = ( +/obj/structure/surface/table, +/obj/item/book/manual/engineering_guide{ + pixel_x = -5; + pixel_y = -5 }, -/area/shiva/exterior/cp_lz2) +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "dAt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dBB" = ( -/obj/item/reagent_container/glass/beaker/cryopredmix{ - pixel_x = -10 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"dBK" = ( +"dAx" = ( /obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -4; - pixel_y = 10 +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"dBi" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"dBt" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"dBD" = ( +/obj/item/clothing/under/rank/janitor, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"dBU" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/n_admin) -"dCo" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/shiva{ - icon_state = "floor3" +"dCC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/area/shiva/interior/bar) +/obj/item/tool/soap{ + pixel_x = 5 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "dCS" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" }, /area/shiva/interior/aerodrome) -"dCY" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 +"dCU" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) -"dDo" = ( -/obj/structure/machinery/landinglight/ds1/spoke, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"dDt" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_y = 5 }, -/area/shiva/interior/colony/botany) -"dEH" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ +/obj/item/paper{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/tool/pen/red{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/paper{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"dDU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dEL" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"dFI" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/central) "dGs" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"dHg" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"dHr" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassall_3" +"dGA" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = -4; + pixel_y = 10 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"dIF" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +"dGR" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 1; + icon_state = "sandbag_0" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"dHc" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"dHf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"dHQ" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"dHZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"dIm" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "dJl" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"dJM" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "dJS" = ( /obj/item/powerloader_clamp, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) +"dJY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"dKc" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard/cp_bar) +"dKx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"dKy" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 10; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "dKL" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -9366,42 +6097,51 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"dLk" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"dMo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" +"dLy" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/area/shiva/interior/aerodrome) -"dMy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/barricade/metal{ + layer = 3 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"dMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/shiva/interior/colony/deck) -"dOf" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"dMq" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/deck) -"dOo" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "nlz_shutters"; - pixel_y = 28 +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"dMV" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/dexalin/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"dNh" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) +"dNJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"dNO" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "dOs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -9414,80 +6154,59 @@ "dOD" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/botany) -"dQp" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/tool/mop{ - pixel_x = -10 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"dPo" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/plating, +/area/shiva/interior/caves/cp_camp) +"dPt" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "dQq" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"dQF" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"dQZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, +"dRp" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"dRb" = ( -/turf/closed/wall/shiva/ice, -/area/shiva/interior/caves/left_spiders) -"dRi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"dRz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "dTj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"dTn" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"dTU" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"dVw" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"dWp" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +"dUk" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"dUN" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/botany) +"dVo" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"dVy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"dWj" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "dWw" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -9509,38 +6228,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"dWM" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"dWO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/warehouse/caves) -"dXc" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"dXp" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/bar) +"dWV" = ( +/obj/item/stool, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "dYi" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -9548,42 +6239,33 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"dYm" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/cp_colony_grounds) "dYp" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/bar) -"dYw" = ( -/obj/structure/machinery/defenses/sentry/premade, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/junkyard) -"dZb" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/weapon/gun/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/ammo_magazine/rifle/boltaction, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"dYE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 10 }, -/area/shiva/interior/colony/s_admin) -"dZN" = ( -/obj/item/newspaper, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/cell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"dYG" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) +"dYK" = ( +/obj/structure/fence, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"dZI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) "eaa" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -9605,25 +6287,26 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"eaz" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_y = 9 - }, -/obj/item/paper{ - pixel_x = -12; - pixel_y = 4 +"ean" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ebC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) -"eaB" = ( -/obj/structure/platform/strata{ - dir = 4 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"ebH" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "ebK" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, @@ -9632,6 +6315,10 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"ecc" = ( +/obj/item/storage/belt/gun/m44, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "ecj" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/right_spiders) @@ -9639,41 +6326,15 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"ect" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) -"ecz" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"ecZ" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"edw" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_lz2) -"edW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_colony_grounds) -"eep" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"eea" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"eeB" = ( +/obj/item/frame/air_alarm, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "eeD" = ( /obj/structure/platform_decoration/strata{ @@ -9685,6 +6346,12 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"egc" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) "egf" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Underground Sports Center" @@ -9699,58 +6366,69 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"ehe" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "labs-entrance" - }, -/turf/closed/wall/shiva/prefabricated/blue, +"egU" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"ehp" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) -"ehV" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, +"ehD" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/cp_s_research) +"ehH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"ehT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"eim" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/shiva/interior/colony/medseceng) "eit" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"eiT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) -"ejt" = ( -/turf/open/floor/shiva{ - dir = 1 +"eiR" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + icon_state = "psiphon:1" }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "ejF" = ( /obj/item/ammo_magazine/handful/shotgun/incendiary, /turf/open/floor/wood, /area/shiva/interior/bar) +"ejL" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "ejX" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"ejZ" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) "ekH" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"eln" = ( -/obj/structure/surface/table, -/obj/item/book/manual/engineering_guide{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "elw" = ( /obj/item/stack/rods, /turf/open/floor/plating, @@ -9763,27 +6441,49 @@ /obj/item/reagent_container/food/snacks/meat, /turf/open/floor/prison, /area/shiva/interior/bar) -"emd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/botany) -"emy" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 +"emU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"emW" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "enc" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"enh" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/research_alley) +"eng" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "eni" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"enp" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) +"enq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) +"enA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "enG" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, @@ -9792,19 +6492,24 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"enK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"eog" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "eom" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"eoG" = ( -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "eoH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/shiva, @@ -9815,42 +6520,22 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"eoO" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/shiva/interior/lz2_habs) -"epp" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_lz2) -"eqD" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, +"epl" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southeast, /area/shiva/interior/colony/botany) -"eqY" = ( -/obj/structure/toilet, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"epB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"epZ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "erc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -9864,6 +6549,19 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"erH" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "esf" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -9871,6 +6569,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"esV" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "etl" = ( /obj/structure/largecrate/random/secure, /obj/item/ashtray/bronze{ @@ -9878,36 +6580,24 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"etm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"etS" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"euy" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/lz2_habs) -"etV" = ( +/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, -/obj/item/device/reagent_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"euA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"evy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/shiva/yellow/east, /area/shiva/interior/colony/research_hab) -"evY" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/storage/box/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "ewa" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) @@ -9923,29 +6613,66 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"exm" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"ewl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) -"exX" = ( -/turf/open/floor/shiva{ +"ewX" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; - icon_state = "bluefull" + pixel_x = -6; + pixel_y = 13 }, -/area/shiva/interior/warehouse) +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) +"exi" = ( +/obj/structure/prop/dam/truck, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"exl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"exC" = ( +/obj/item/stack/sheet/metal/small_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"exQ" = ( +/obj/item/book/manual/atmospipes{ + pixel_y = 10 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"eyb" = ( +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "eyx" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"eyX" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"ezf" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"ezh" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "eAZ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) @@ -9958,51 +6685,48 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"eBp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"eBy" = ( +/obj/item/shard, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"eBz" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "eBG" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"eBU" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"eBZ" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "floor3" +"eBT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/area/shiva/interior/colony/s_admin) -"eCg" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "eCr" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"eCy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"eDA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "eET" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) @@ -10012,39 +6736,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"eFm" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/item/paper/research_notes, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"eFG" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "eFI" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"eFQ" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"eGe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) "eGq" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -10070,30 +6765,21 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"eHk" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/storage/belt/marine, -/obj/item/weapon/gun/rifle/m41a, -/obj/item/ammo_magazine/rifle/extended, -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/s_admin) -"eHp" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - icon_state = "redfull" +"eHn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/technology_scanner, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/area/shiva/interior/colony/n_admin) -"eHL" = ( -/obj/item/tool/wrench, -/turf/open/shuttle{ - icon_state = "floor7" +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"eHM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access_txt = "102" }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "eHY" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -10102,53 +6788,43 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"eIa" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"eIe" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +"eIT" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"eIH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, +"eJn" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"eKj" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"eKM" = ( /obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"eKp" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -2; - pixel_y = -8 + dir = 8; + pixel_y = -5 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"eKY" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"eLf" = ( +/obj/structure/platform_decoration/strata{ dir = 1 }, -/area/shiva/interior/colony/central) +/obj/structure/platform_decoration/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"eLu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"eLC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "eMh" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 9 @@ -10159,42 +6835,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"eMx" = ( -/obj/structure/surface/rack, -/obj/item/tool/lighter/zippo, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"eNr" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"eNv" = ( -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"eOG" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/weapon/gun/rifle/m41aMK1, -/obj/item/storage/belt/marine, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"eNl" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/central) +"eNx" = ( +/obj/structure/fence, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"eNH" = ( +/turf/open/floor/darkgreen2/northeast, +/area/shiva/interior/colony/botany) +"eNK" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/s_admin) +"eOx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "eOK" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/redpyjamas, @@ -10203,71 +6864,52 @@ "eOM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"ePS" = ( -/obj/structure/closet/crate, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/cp_lz2) -"eRk" = ( -/obj/structure/barricade/sandbags/wired{ +"ePp" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"eQe" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eQq" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "sandbag_0" + pixel_x = 24 }, -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"eRc" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"eRv" = ( +/obj/item/trash/hotdog, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"eRB" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "eRE" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"eRG" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"eSc" = ( +"eRN" = ( /obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"eSt" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) "eSK" = ( /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"eSN" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/lz1_valley) +"eTa" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "eTV" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" @@ -10277,14 +6919,12 @@ "eUT" = ( /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) -"eVa" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"eVu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "eVG" = ( /obj/structure/largecrate/random, /turf/open/floor/shiva, @@ -10294,32 +6934,27 @@ pixel_x = 8; pixel_y = -8 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"eVX" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_lz2) -"eWn" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"eVR" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) "eWB" = ( /turf/open/floor/plating, /area/shiva/interior/garage) -"eXL" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"eXH" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 + }, +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "eXN" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -10327,22 +6962,41 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"eYE" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "eYH" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/cp_lz2) -"eZX" = ( -/obj/item/tool/soap, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +"eZq" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"eZA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) -"far" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eZL" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) +"eZQ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/medseceng) "faA" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/s_lz2) @@ -10359,17 +7013,6 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"faR" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 8; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 5; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "faT" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -10377,39 +7020,27 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"faW" = ( -/obj/structure/prop/ice_colony/poly_kevlon_roll{ - dir = 1 - }, -/obj/structure/prop/ice_colony/poly_kevlon_roll{ - dir = 1; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/poly_kevlon_roll{ - dir = 1; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "fbf" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fbI" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/under/marine/veteran/mercenary/support, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/shiva{ - icon_state = "floor3" +"fbQ" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/colony/botany) -"fcq" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"fcn" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, +/turf/open/floor/wood, /area/shiva/interior/colony/central) +"fct" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "fcy" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -10420,52 +7051,62 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/n_admin) -"fcL" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_colony_grounds) -"fel" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/central) -"feA" = ( +"fdq" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"feB" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = -13; + pixel_y = 28 }, -/area/shiva/interior/colony/research_hab) -"feR" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/largecrate/random/mini/small_case/b, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 14; + pixel_y = -3 }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "ffj" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/shiva/interior/colony/central) -"ffn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"ffo" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"ffB" = ( +/turf/open/floor/shiva/greencorners/north, +/area/shiva/interior/colony/botany) +"ffN" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/lz2_habs) -"ffw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"fgf" = ( +/obj/structure/surface/table, +/obj/item/vehicle_clamp{ + pixel_y = 2 }, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) +"fgo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/research_hab) +"fgr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "fgB" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -10475,71 +7116,45 @@ /obj/effect/decal/remains/human, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"fgI" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "fhd" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"fhh" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) "fhv" = ( /obj/item/tool/wrench, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"fir" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"fhL" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/exterior/cp_lz2) +"fhS" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "fiK" = ( /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fjd" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) "fjs" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"fjv" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/interior/caves/research_caves) -"fjI" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +"fjJ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -8 }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "fjS" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -10560,107 +7175,74 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"fkq" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "fkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_s_research) -"fkF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"fkP" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -2; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) "flN" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"flV" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"fnw" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) -"fnx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"fmq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"fmQ" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/warehouse/caves) +"fmR" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"fnD" = ( +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/area/shiva/exterior/cp_lz2) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "fnG" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"fnI" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) "foa" = ( /obj/item/storage/toolbox/electrical, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"fof" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/item/storage/firstaid/fire, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) -"fqb" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"fpB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) -"fqJ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"fpF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fqd" = ( +/turf/open/floor/shiva/yellowcorners/east, /area/shiva/interior/colony/research_hab) "frj" = ( /obj/item/tool/shovel/snow, /turf/open/floor/shiva, /area/shiva/interior/bar) -"frV" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "pink_trim" - }, -/turf/closed/wall/shiva/prefabricated/white, -/area/shiva/interior/lz2_habs) "fse" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/lightstick/red{ @@ -10673,50 +7255,84 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"ftm" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"fsE" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "ftr" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/book/manual/security_space_law, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"fun" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 +"ftE" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"ftY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"fub" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) +"fut" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "fuz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"fwv" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 +"fuA" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -3 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"fuK" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 }, -/area/shiva/interior/colony/research_hab) -"fww" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/valley) +"fuQ" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"fwK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "fwU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -10725,28 +7341,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"fxw" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"fxy" = ( -/obj/item/lightstick/variant/planted, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"fxJ" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "fyC" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ pixel_x = -17; @@ -10754,33 +7348,21 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"fyF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Aurora Medical Clinic Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"fze" = ( -/obj/item/frame/apc, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) +"fyJ" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"fyT" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"fzc" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "fzm" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/cp_colony_grounds) -"fzA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) "fzF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -10791,70 +7373,90 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"fBg" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/shiva{ - icon_state = "greenfull" +"fzV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/boiledspagetti, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"fAk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/n_admin) +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fAK" = ( +/obj/structure/flora/tree/dead/tree_4, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"fAZ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/valley) +"fBo" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"fBs" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber{ + icon_state = "psiphon:1" + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"fBw" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"fBE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard/cp_bar) "fBJ" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, /obj/item/tool/stamp, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"fBQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "fCs" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"fDd" = ( -/obj/structure/surface/table, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"fEf" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"fDm" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) +"fDN" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) +"fDW" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) "fEl" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"fEv" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob) "fEC" = ( /obj/structure/window/framed/shiva, /turf/open/floor/shiva, /area/shiva/interior/bar) -"fEO" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, -/area/shiva/interior/garage) "fEU" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"fFd" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "fFf" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_3" @@ -10867,6 +7469,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"fFD" = ( +/obj/structure/machinery/door_control{ + id = "st_17"; + name = "Storage Unit Lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "fFG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10880,26 +7492,51 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"fFH" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" +"fFL" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/medseceng) -"fGb" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +/obj/item/shard{ + icon_state = "large" }, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"fFO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/clipboard, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"fFP" = ( +/obj/structure/machinery/light/double, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"fGe" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"fGj" = ( +/obj/item/stack/cable_coil/green, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "fGl" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"fGp" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "telecomms relay power controller"; + start_charge = 10 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "fGw" = ( /obj/structure/surface/table/woodentable{ dir = 1; @@ -10917,37 +7554,23 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"fHx" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"fHH" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" +"fGU" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva, +/area/shiva/interior/caves/cp_camp) +"fHn" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"fHq" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/telecomm/lz1_north) "fHM" = ( /obj/item/stool, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"fHQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"fIz" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "fII" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -11; @@ -10968,23 +7591,28 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"fJw" = ( +"fIX" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"fJS" = ( /obj/structure/surface/table, -/obj/item/device/camera, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) +/obj/item/restraint/handcuffs, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"fJW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"fJZ" = ( +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "fKb" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"fKx" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) "fKy" = ( /obj/item/tool/pen/blue{ pixel_x = 5 @@ -11007,50 +7635,36 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/shiva/interior/bar) -"fKT" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"fLi" = ( -/obj/item/tool/shovel/snow, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - layer = 3.1; - pixel_x = -8; - pixel_y = 23 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) -"fLz" = ( +"fKM" = ( /obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva{ dir = 1 }, -/area/shiva/exterior/lz2_fortress) -"fLX" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/caves/s_lz2) -"fMe" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"fLi" = ( +/obj/item/tool/shovel/snow, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + layer = 3.1; + pixel_x = -8; + pixel_y = 23 }, -/turf/open/floor/shiva{ +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"fLm" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"fLv" = ( +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "redfull" + pixel_y = -5 }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) +"fLG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "fMq" = ( /obj/vehicle/train/cargo/engine, @@ -11058,46 +7672,88 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fMG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 1 +"fMC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/n_admin) +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "fMO" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) +"fNt" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "fNE" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"fOE" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - dir = 1 +"fOI" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz2_southeast) +"fOU" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"fPl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"fPm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Anti-Freeze Lounge" + }, +/turf/open/floor/plating, +/area/shiva/exterior/cp_s_research) "fPA" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/closet/cabinet, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"fPD" = ( +"fPJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) +"fQU" = ( +/obj/structure/surface/table/reinforced, +/obj/item/stack/medical/bruise_pack, +/obj/item/cell, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"fQV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "fQX" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"fRg" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"fRh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, /area/shiva/interior/aerodrome) "fSc" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11113,140 +7769,153 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"fSm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 10 +"fTh" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 6 }, -/obj/item/cell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"fTn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"fUa" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"fUc" = ( +/obj/structure/surface/table, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"fSt" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"fUg" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 }, +/turf/closed/wall/shiva/ice, +/area/shiva/exterior/cp_s_research) +"fUy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"fUG" = ( +/obj/structure/surface/table, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) -"fSR" = ( -/turf/open/floor/shiva, -/area/shiva/interior/caves/research_caves) -"fTX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) "fUZ" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"fVl" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) +"fVd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ + pixel_y = 7 + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "fVw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ density = 0 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"fVI" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"fVR" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +"fVB" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"fWb" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 +"fVG" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/advanced/bruise_pack/upgraded{ + pixel_x = -3; + pixel_y = 14 }, -/area/shiva/interior/colony/medseceng) -"fWq" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_3"; +/obj/item/stack/medical/advanced/ointment/upgraded{ + pixel_x = 4; pixel_y = 5 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = -12; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"fVZ" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/aerodrome) +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "fXB" = ( /obj/structure/largecrate/random/case/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"fXQ" = ( -/obj/structure/largecrate/random/case, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"fXX" = ( -/turf/open/floor/plating, -/area/shiva/interior/caves/research_caves) -"fYm" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/item/shard{ - icon_state = "large" +"fXL" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/colony/s_admin) -"fYW" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/hotchili{ - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"fZz" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"fXX" = ( +/turf/open/floor/plating, +/area/shiva/interior/caves/research_caves) +"fYF" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"fZP" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" +"fYI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"fYP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/turf/open/floor/plating/icefloor/warnplate/west, +/area/shiva/exterior/junkyard/fortbiceps) +"fYT" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/area/shiva/interior/lz2_habs) -"fZR" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/warehouse/caves) +"fZr" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/darkbrown2/north, +/area/shiva/interior/valley_huts/disposals) +"fZs" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/bar) +"gay" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "gaz" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/valley) @@ -11261,12 +7930,26 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"gbC" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/prison{ - icon_state = "kitchen" +"gaU" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/research_hab) +"gbI" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"gcH" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "gcK" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -11278,19 +7961,20 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"gcP" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"gdk" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"gdr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) +"gdz" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"gdK" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) "gdU" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -11298,29 +7982,31 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"geh" = ( -/obj/structure/surface/table, -/obj/item/folder/white, -/obj/structure/machinery/firealarm{ +"gec" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/central) +"gel" = ( +/obj/structure/stairs/perspective{ dir = 4; - pixel_x = 24 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" + icon_state = "p_stair_sn_full_cap" }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"gen" = ( +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "geE" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/junkyard) -"geS" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "ggh" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt{ @@ -11333,37 +8019,6 @@ /obj/item/stack/rods, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"ggv" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 5; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 6; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"ggC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) -"ggL" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "gha" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/machinery/light/double{ @@ -11372,25 +8027,26 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ghK" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"ghl" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "ghS" = ( /obj/structure/surface/table, /obj/item/storage/box/explosive_mines, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"ghU" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"giB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "giH" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony, /turf/open/floor/plating, @@ -11403,96 +8059,123 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"gjg" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wredcorners" - }, -/area/shiva/interior/colony/medseceng) -"gjY" = ( -/turf/open/floor/shiva{ +"gjb" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"gjq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "snow_mat" + id = "nlz_shutters"; + name = "\improper Bio-lab Shutters" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"gjx" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/deck) +"gjS" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, +/turf/open/floor/shiva/purple/east, +/area/shiva/interior/lz2_habs) +"gkd" = ( +/turf/open/floor/shiva/greencorners/west, /area/shiva/interior/colony/botany) +"gkh" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"gkn" = ( +/obj/structure/machinery/light/double, +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) "gkv" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"gkE" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/bed/chair/comfy/orange{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "gkG" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"gkK" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"gkL" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "gkY" = ( /turf/open/floor/plating, /area/shiva/exterior/lz2_fortress) -"glG" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"glr" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"gly" = ( +/obj/structure/computerframe, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "gmS" = ( /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gmV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"gnU" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "gnZ" = ( /turf/closed/shuttle/elevator{ dir = 8 }, /area/shiva/interior/colony/central) -"goh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"goj" = ( -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) +"goz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "goS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) +"goT" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "gpb" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"gpn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"gpw" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "gpz" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/research_caves) @@ -11507,20 +8190,17 @@ dir = 4 }, /area/shiva/interior/colony/central) -"gqe" = ( -/obj/structure/machinery/door_control/brbutton/alt{ - id = "hangar_ice_2"; - pixel_y = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "gqp" = ( /obj/item/stack/catwalk, /turf/open/floor/plating, /area/shiva/interior/bar) +"gqw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "gqO" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -11532,15 +8212,39 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"grd" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 +"grH" = ( +/obj/item/paper/research_notes/bad{ + pixel_x = 11; + pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"grQ" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/area/shiva/interior/caves/s_lz2) +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = -14; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"gsj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "gso" = ( /obj/structure/platform/strata, /turf/open/gm/river, @@ -11548,19 +8252,9 @@ "gss" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/junkyard) -"gsK" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) +"gtd" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/medseceng) "gtp" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/ice/layer1, @@ -11575,66 +8269,50 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gtZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/shiva/interior/colony/central) -"gul" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "red" - }, +"gtN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"guz" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/shiva/interior/colony/n_admin) -"guA" = ( -/obj/structure/surface/table, -/obj/item/tool/wirecutters/clippers{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"gup" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13; + pixel_y = 25 }, -/area/shiva/interior/lz2_habs) -"gva" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/layer0, +/turf/open/floor/plating/icefloor/warnplate/northwest, +/area/shiva/exterior/junkyard/fortbiceps) +"guB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"gvc" = ( +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/caves/cp_camp) -"gvz" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/shiva/interior/colony/central) +"gvg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"gvH" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "gvT" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"gvY" = ( -/obj/structure/prop/ice_colony/surveying_device{ - dir = 1 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) -"gwq" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) +"gwi" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"gwp" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "gwA" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -11643,23 +8321,33 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"gxK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"gxJ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) -"gxN" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/shiva/interior/valley_huts/disposals) +"gxM" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airalarm, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "gxW" = ( /obj/structure/closet/cabinet, /obj/item/storage/toolbox/emergency, /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) +"gyu" = ( +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/exterior/valley) +"gyB" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"gyO" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "gyT" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/ice/layer1, @@ -11676,6 +8364,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"gzf" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "gzp" = ( /obj/structure/filingcabinet, /obj/item/paper/research_notes, @@ -11685,12 +8377,14 @@ "gzM" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"gAV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) +"gAd" = ( +/obj/structure/flora/tree/dead/tree_5, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"gAU" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "gBc" = ( /obj/structure/surface/table, /obj/item/device/flashlight, @@ -11701,11 +8395,19 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"gBr" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - icon_state = "wred" +"gBq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/landmark/corpsespawner/scientist, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"gBC" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood/medium_stack, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/medseceng) "gBH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -11715,18 +8417,16 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"gCp" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "gCx" = ( /obj/structure/machinery/landinglight/ds1/spoke, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"gCy" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "gCL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -11738,12 +8438,18 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"gDz" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/botany) +"gDp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"gDK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) +"gEc" = ( +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/aerodrome) "gEk" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -11752,15 +8458,6 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) -"gFb" = ( -/obj/structure/surface/table, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "gFe" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -11768,33 +8465,28 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"gGc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) +"gFi" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) "gGf" = ( /obj/item/ammo_magazine/rifle/m41aMK1, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"gGB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"gGx" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"gGD" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "gGH" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/snow/layer0, @@ -11803,48 +8495,41 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"gHh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"gHr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"gGU" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"gHt" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/obj/structure/sink{ + pixel_y = 15 }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "gHu" = ( /obj/item/explosive/grenade/custom/large, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"gHA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"gIq" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"gHw" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"gHU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"gIJ" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "gIQ" = ( /obj/item/stack/sheet/metal, /turf/open/floor/shiva, @@ -11855,12 +8540,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"gJk" = ( -/obj/structure/platform/strata{ - dir = 4 - }, +"gJh" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/area/shiva/exterior/cp_s_research) "gJo" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard/cp_bar) @@ -11870,65 +8553,69 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gKf" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva, -/area/shiva/interior/bar) -"gKE" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"gKc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "gKQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"gLu" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) +"gKV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/emails, +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"gKZ" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "gLv" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"gMf" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "gMv" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/shiva/interior/colony/central) -"gMP" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" +"gMA" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"gMT" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"gNl" = ( +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"gNs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "gNw" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gNF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) "gNM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -11942,36 +8629,59 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"gOj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"gOc" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/area/shiva/interior/colony/botany) -"gPg" = ( -/turf/open/auto_turf/snow/layer2, -/area/shiva/interior/colony/central) -"gPZ" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 }, -/area/shiva/exterior/lz2_fortress) -"gQx" = ( +/turf/open/floor/strata/floor2, +/area/shiva/interior/colony/research_hab) +"gOn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/feathertrilby{ - pixel_x = -4; - pixel_y = 5 +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 7 }, -/area/shiva/interior/colony/n_admin) +/obj/item/storage/box/donkpockets{ + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"gOA" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"gOH" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"gOQ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/exterior/cp_colony_grounds) +"gPg" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/colony/central) +"gPj" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"gPk" = ( +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"gQh" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/s_admin) "gQy" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -11987,6 +8697,13 @@ dir = 10 }, /area/shiva/interior/aerodrome) +"gQK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "gQL" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/darkred, @@ -11999,6 +8716,17 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"gQV" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/antag{ + pixel_y = 7 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "gRx" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -12012,12 +8740,6 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"gRG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "gRJ" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -12039,60 +8761,53 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"gSb" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"gSG" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"gSJ" = ( -/obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"gSB" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) +"gSY" = ( +/turf/open/floor/shiva/wredcorners/north, +/area/shiva/interior/colony/medseceng) "gTe" = ( /obj/structure/machinery/gibber, /turf/open/floor/prison, /area/shiva/interior/bar) -"gTU" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"gTT" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "gUc" = ( /turf/closed/shuttle/elevator{ dir = 9 }, /area/shiva/interior/aerodrome) -"gVh" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/shiva{ - dir = 1 +"gUu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/garage) +"gWa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 9 }, -/area/shiva/interior/colony/botany) +/obj/item/toy/deck{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "gWk" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/bar) -"gWF" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +"gXz" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "gXS" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) @@ -12102,23 +8817,20 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"gYd" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "gYu" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"gYY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"gZs" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "gZG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 2; @@ -12133,53 +8845,108 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"has" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"haJ" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"haT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "hbo" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"hbu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"hbB" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/warehouse/caves) -"hbD" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 +"hbO" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"hbU" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "hcH" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/bar) "hcJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/telecomm/lz1_biceps) -"hfm" = ( -/obj/item/paper/research_notes/good, -/turf/open/floor/shiva{ - icon_state = "floor3" +"hdJ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/shiva/interior/colony/research_hab) -"hfN" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"hdO" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"heh" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/medseceng) -"hgx" = ( -/obj/structure/machinery/power/geothermal, +"hev" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"heH" = ( +/turf/open/floor/chapel/west, +/area/shiva/interior/colony/central) +"hfp" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"hfD" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hgh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, /turf/open/floor/plating, +/area/shiva/interior/aerodrome) +"hgA" = ( +/turf/open/floor/shiva/wred/northwest, /area/shiva/interior/colony/medseceng) "hgI" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -12191,33 +8958,44 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"hif" = ( -/obj/structure/bed/chair/office/dark{ +"hgM" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"hhv" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"hil" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "hin" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"hju" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"hjx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"hiX" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hjP" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/central) "hkC" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -12229,48 +9007,25 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hlh" = ( -/obj/item/tool/pickaxe, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "hlm" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hlO" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "hmo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/rifle/m41a, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hms" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, +"hmP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"hmR" = ( +/obj/item/weapon/gun/pistol/highpower, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) -"hmI" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"hmQ" = ( -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) "hmU" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_y = 6 @@ -12285,23 +9040,6 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"hnc" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/exterior/lz2_fortress) -"hnf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "hng" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_colony_grounds) @@ -12309,20 +9047,15 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"hpb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 10 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"hpc" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"hoD" = ( +/obj/structure/machinery/smartfridge{ + density = 0; + pixel_y = 22 }, -/area/shiva/interior/caves/s_lz2) +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "hpm" = ( /obj/structure/largecrate/random/mini{ layer = 2.99; @@ -12341,15 +9074,12 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"hpN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva{ - dir = 1 +"hpv" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "hqd" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 6; @@ -12357,19 +9087,26 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"hqh" = ( -/turf/open/floor/shiva{ +"hqe" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 4; - icon_state = "greencorners" + pixel_y = 10 }, -/area/shiva/interior/colony/botany) -"hqC" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"hqp" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"hra" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) "hrb" = ( /obj/structure/surface/table, @@ -12382,26 +9119,14 @@ "hrk" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/warehouse/caves) -"hrB" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"hsu" = ( -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) -"hsw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard, -/obj/item/tool/screwdriver, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) +"hsp" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"hsE" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/central) "hsZ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -12412,48 +9137,52 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"htb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"htC" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/exterior/cp_colony_grounds) -"hul" = ( -/obj/structure/barricade/metal{ - dir = 4; - health = 130 - }, -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) -"hum" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) "huv" = ( /obj/structure/barricade/handrail/wire{ dir = 8; layer = 2.991 }, -/turf/open/auto_turf/snow/layer2, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"huz" = ( +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/interior/warehouse) +"huF" = ( +/obj/structure/flora/tree/dead/tree_3, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"huL" = ( +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"huQ" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"huX" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hve" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"hvg" = ( +/obj/structure/prop/ice_colony/soil_net, +/obj/item/tool/shovel/spade{ + layer = 2.99; + pixel_x = -9; + pixel_y = -11 + }, +/turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"huz" = ( -/turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/interior/warehouse) -"huF" = ( -/obj/structure/flora/tree/dead/tree_3, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +"hvC" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "hvZ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_3"; @@ -12461,34 +9190,12 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hwg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"hwA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"hwJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Underground Morgue" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"hxf" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +"hwy" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 }, -/area/shiva/exterior/cp_lz2) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "hxk" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -12496,15 +9203,13 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"hxp" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) "hxY" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"hyu" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "hyw" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -12512,24 +9217,47 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"hyx" = ( -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 4; +"hyF" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_x = -6; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"hyY" = ( +/obj/item/ammo_magazine/rifle/ap, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/colony/research_hab) +"hzf" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"hzq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "hzJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/lz1_valley) +"hzS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"hzU" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"hAi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "hAS" = ( /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) @@ -12540,77 +9268,28 @@ "hBq" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/caves/cp_camp) -"hBI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"hBN" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) -"hCa" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"hCt" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"hCX" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) +"hBB" = ( +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/shiva/exterior/telecomm/lz1_north) +"hCh" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "hCY" = ( /obj/structure/bed/chair/comfy/orange{ dir = 4 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hDd" = ( -/obj/item/lightstick/red/spoke, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"hDo" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/shiva{ - dir = 1 +"hDb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) "hDs" = ( /obj/vehicle/train/cargo/engine, /turf/open/auto_turf/snow/layer0, @@ -12643,15 +9322,19 @@ /obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_rook, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"hDW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 +"hDM" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/central) +"hDO" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/aux_power) +"hDS" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "hEa" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -12662,6 +9345,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/deck) +"hEw" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) "hEE" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -12670,18 +9357,22 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"hEJ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "hFj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/fortbiceps) "hFl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/oob/dev_room) -"hFJ" = ( -/obj/structure/closet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) +"hFq" = ( +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) "hGj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "hangar_ice_2"; @@ -12689,17 +9380,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"hGH" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "hHf" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"hHi" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz1_north) "hHk" = ( /obj/item/weapon/gun/boltaction, /obj/item/lightstick/red/spoke/planted{ @@ -12708,30 +9397,36 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"hHV" = ( +"hHS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"hHU" = ( /obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "hHY" = ( /obj/structure/barricade/metal{ layer = 3 }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"hIn" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 +"hIc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) "hIu" = ( /obj/structure/surface/rack, /obj/item/device/radio{ @@ -12746,49 +9441,38 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"hIC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) "hIM" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"hJd" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +"hIO" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"hJf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hJj" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "hJH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hKR" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"hKS" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) +"hKx" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/medseceng) +"hKA" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "hLf" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/n_admin) -"hLB" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "hLE" = ( /obj/item/lightstick/red/variant, /obj/effect/decal/cleanable/dirt{ @@ -12797,25 +9481,71 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hMn" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +"hME" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hMZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"hND" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"hNM" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"hMY" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hOt" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"hOL" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"hOU" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 12 }, -/area/shiva/interior/colony/research_hab) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"hOX" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "hPp" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/interior/caves/cp_camp) +"hPU" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" + }, +/obj/item/storage/firstaid/adv, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"hQG" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 3; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"hQK" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "hQO" = ( /obj/structure/surface/table, /obj/item/xeno_egg{ @@ -12824,19 +9554,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hQU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wredcorners" - }, -/area/shiva/interior/colony/medseceng) "hQW" = ( /obj/structure/machinery/light/double{ dir = 1; @@ -12844,6 +9561,21 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"hRb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"hRz" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "hRC" = ( /obj/structure/surface/rack, /obj/item/device/radio{ @@ -12856,19 +9588,6 @@ /obj/structure/machinery/light/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"hRF" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/research_alley) -"hRK" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) "hRQ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -12883,14 +9602,35 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"hSq" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"hSC" = ( +/turf/open/floor/shiva/bluecorners, +/area/shiva/interior/colony/central) +"hSF" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"hSR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"hSV" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 15 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "hSW" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -12903,23 +9643,13 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"hTb" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/device/implanter/subdermal_armor{ - pixel_x = 12 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"hTa" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"hTf" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_lz2) "hTk" = ( /obj/structure/bookcase/manuals/medical, /obj/structure/machinery/light/double{ @@ -12932,6 +9662,13 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"hTq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "hTO" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer1, @@ -12947,20 +9684,25 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"hUG" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"hUK" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "hUM" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"hVi" = ( +/turf/open/floor/darkbrown2/west, +/area/shiva/interior/valley_huts/disposals) "hVs" = ( /obj/structure/surface/table, /obj/item/evidencebag{ @@ -12968,11 +9710,17 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"hWh" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"hVD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 9 }, -/area/shiva/interior/colony/deck) +/obj/item/stack/sheet/mineral/phoron{ + pixel_x = -1; + pixel_y = 14 + }, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "hWK" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -12983,6 +9731,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) +"hWR" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) "hWX" = ( /obj/structure/cargo_container/arious/leftmid{ health = 5000; @@ -12990,16 +9748,13 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"hWY" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"hXs" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/explosive/grenade/custom/metal_foam, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "hXB" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, @@ -13019,36 +9774,36 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) +"hYa" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "hYb" = ( /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"hYf" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/up, -/turf/open/floor/shiva{ - dir = 1 - }, +"hYc" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) -"hYT" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) -"hZu" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"hYI" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"hZc" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"hZv" = ( +/obj/structure/machinery/message_server, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "hZI" = ( /obj/structure/largecrate/random/mini/small_case/b{ pixel_x = -9 @@ -13062,134 +9817,98 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"iaj" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) +"iaw" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"iaG" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "iaK" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"ibN" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 +"ibq" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_y = 7 }, -/area/shiva/interior/colony/central) -"icC" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ibv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/chapel/east, +/area/shiva/interior/colony/central) +"ibz" = ( +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"ico" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) +"icG" = ( +/obj/structure/surface/table, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/signaller, +/obj/item/circuitboard/airlock, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"icO" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/shiva/interior/colony/deck) -"idG" = ( -/obj/structure/flora/tree/dead/tree_4, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"icQ" = ( +/obj/item/weapon/ice_axe/red, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "idR" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"iek" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"iel" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"ieo" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/shiva/interior/colony/n_admin) -"iey" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassall_3" - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_colony_grounds) -"ieD" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer3/laptop/secure_data{ - pixel_y = 6 - }, -/turf/open/floor/interior/plastic/alt, -/area/shiva/interior/warehouse) -"ift" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"ifN" = ( -/obj/structure/surface/rack, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/item/cell/hyper/empty, -/obj/item/cell/hyper/empty, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"ifQ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "labs-cave-complete" - }, -/turf/closed/wall/shiva/ice, -/area/shiva/interior/oob) -"igl" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"iev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/shiva/interior/colony/medseceng) -"igr" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = -1 }, -/area/shiva/interior/colony/botany) -"igN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) +"iey" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" }, -/area/shiva/interior/colony/deck) -"ihh" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_colony_grounds) +"ieD" = ( /obj/structure/surface/table, -/obj/item/clipboard, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/computer3/laptop/secure_data{ + pixel_y = 6 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/interior/plastic/alt, +/area/shiva/interior/warehouse) +"ieF" = ( +/obj/structure/stairs/perspective/ice{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"ige" = ( +/obj/structure/largecrate/random/secure, +/obj/item/ashtray/bronze{ + pixel_y = 7 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "ihp" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/sake, @@ -13202,26 +9921,15 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"iiy" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) +"iix" = ( +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "iji" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/central) -"ijq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) "ijA" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -13240,98 +9948,100 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) +"iki" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "ikR" = ( /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"ile" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"ilk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) -"ilh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ilo" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"ilt" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"ilJ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/shiva/interior/colony/medseceng) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "imk" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"imq" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 4; - icon_state = "sandbag_0" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"imD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -3; + pixel_y = 6 }, -/area/shiva/exterior/lz2_fortress) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "inJ" = ( /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"inN" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"inS" = ( +/obj/structure/foamed_metal, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "iof" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) -"ipc" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) +"iog" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_2"; + pixel_y = 28 + }, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"iok" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 + }, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"ipD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) "ipP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"ipY" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/double, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "iqh" = ( /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/bar) -"iqt" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva{ +"iqv" = ( +/obj/structure/bed/chair/comfy/black{ dir = 8; - icon_state = "yellowfull" + layer = 2.98 }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/research_hab) +"iqx" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "iqA" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" @@ -13342,45 +10052,23 @@ /obj/structure/coatrack, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"ire" = ( +"iqR" = ( /obj/structure/surface/table, -/obj/item/storage/toolbox/antag{ - pixel_y = 7 - }, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/aux_power) +"irl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"irp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"irk" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/boiledspagetti, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"irt" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/structure/barricade/metal{ - layer = 3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"irx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "irT" = ( /obj/structure/platform/strata{ dir = 4 @@ -13388,27 +10076,24 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"isr" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/n_admin) -"isU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"itG" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +"isk" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/deck) +"isu" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/tool/screwdriver, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"isT" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"itx" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "itH" = ( /obj/structure/largecrate/random/secure, /obj/structure/largecrate/random/mini{ @@ -13430,52 +10115,29 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"itW" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/central) -"iuz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) +"iub" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"iuA" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/storage/belt/utility/full, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"iuB" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) "iuI" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"iuK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"iuM" = ( -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/bridgeofficer, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"iuR" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"iuX" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"ivc" = ( +/obj/structure/closet, +/obj/item/newspaper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "ivl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -13483,35 +10145,54 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"ivr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Chapel" +"ivx" = ( +/obj/item/paper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"ivA" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 }, -/area/shiva/interior/colony/central) -"ivy" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"ivX" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"iwg" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"iwk" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "red" + pixel_y = 9 }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"iwn" = ( +"iwN" = ( /obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"ixc" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "ixo" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/wood, @@ -13531,95 +10212,75 @@ /obj/item/device/whistle, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"ixX" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/deck) -"iyk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"ixH" = ( +/obj/structure/surface/table, +/obj/item/device/whistle, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"ixQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/wood{ + amount = 10 }, -/area/shiva/interior/bar) -"iyP" = ( +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"iyg" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/ale{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"izE" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/s_admin) -"izt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) "iAg" = ( /obj/structure/barricade/snow{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"iAt" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "iAG" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"iCs" = ( -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"iAJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"iBl" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"iBY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) "iCF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) -"iCJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"iCH" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) +"iCI" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -2; + pixel_y = -8 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "iCK" = ( /obj/item/storage/belt/medical{ pixel_x = -3; @@ -13639,71 +10300,47 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"iDy" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"iDN" = ( -/obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"iDW" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shiva/interior/aerodrome) -"iEi" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"iEp" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/medseceng) "iEF" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"iFr" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"iEH" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/central) +"iEM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/shiva/interior/colony/botany) -"iGn" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/colony_floodlight{ + layer = 2.9; + pixel_y = 7 }, -/turf/open/floor/shiva, -/area/shiva/interior/bar) -"iHN" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"iGl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/botany) +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"iGE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"iGO" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "iHV" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -13716,20 +10353,11 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"iIe" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 10; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) +"iIH" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "iIP" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, @@ -13744,37 +10372,50 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"iJA" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"iJY" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +"iJT" = ( +/turf/open/floor/shiva/yellow/southwest, /area/shiva/interior/colony/medseceng) -"iLf" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 +"iKr" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/deck) +"iKs" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"iKu" = ( +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +/obj/item/stack/catwalk, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"iKL" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/area/shiva/exterior/lz2_fortress) -"iLS" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"iKN" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iLR" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "iMb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) +"iMe" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "iMA" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -13787,15 +10428,14 @@ /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"iNS" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) +"iNx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"iNJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "iNX" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, @@ -13810,39 +10450,37 @@ /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"iOA" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_3"; - pixel_y = 28 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) -"iPg" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"iOw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/n_admin) -"iPG" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iOE" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"iPk" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/area/shiva/interior/colony/medseceng) -"iPU" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/kelotane/skillless{ +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"iPO" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary, +/obj/item/explosive/grenade/incendiary{ pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = -2 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "iQe" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -13850,103 +10488,88 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"iQl" = ( +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/central) "iQq" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"iQP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ +"iQN" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"iRt" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iRC" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"iRI" = ( +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "yellow" + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"iRK" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"iSr" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) -"iRh" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"iTh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/area/shiva/interior/colony/central) -"iSp" = ( -/obj/item/tool/screwdriver, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"iSG" = ( -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/lz1_valley) "iTQ" = ( /obj/structure/girder, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"iUk" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +"iUz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" }, -/turf/open/floor/shiva{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"iVu" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"iVj" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_lz2) -"iVT" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest/c{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ +"iVB" = ( +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/lz2_habs) -"iWa" = ( -/obj/item/clipboard, -/turf/open/floor/shiva{ - icon_state = "redfull" + pixel_y = -5 }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"iWg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/colony_floodlight{ - layer = 2.9; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/deck) -"iWu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ - pixel_y = 26 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"iWO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +"iWv" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) +"iWF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "iWS" = ( /obj/structure/prop/invuln/dense{ desc = "Gonzo is trying to drill his way to freedom. He made this himself."; @@ -13972,12 +10595,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"iXc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "iXk" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer2, @@ -13999,26 +10616,29 @@ }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"iXC" = ( -/obj/item/book/manual/atmospipes{ - pixel_y = 10 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" +"iXF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/shiva/interior/lz2_habs) -"iXE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "iXG" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) +"iXK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/weapon/gun/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "iXR" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -14031,88 +10651,90 @@ /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"iXZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"iYc" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_x = -2; - pixel_y = 5 +"iYs" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) +"iYv" = ( +/obj/structure/flora/tree/dead/tree_2, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"iYy" = ( +/obj/structure/bedsheetbin{ + pixel_y = 9 }, -/area/shiva/interior/colony/research_hab) -"iYu" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/t_scanner, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "iYC" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"iYF" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"iYQ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_y = 9 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"iYR" = ( +/turf/open/floor/shiva, +/area/shiva/interior/caves/cp_camp) "iZj" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"iZF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"iZI" = ( -/turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/interior/caves/cp_camp) -"iZX" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 - }, -/turf/open/floor/shiva, -/area/shiva/interior/bar) -"jac" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"jay" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, -/area/shiva/interior/colony/medseceng) +"jab" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"jan" = ( +/obj/structure/surface/table, +/obj/item/storage/box/pizza, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "jaF" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"jaU" = ( -/obj/structure/surface/table, -/obj/item/device/whistle, -/turf/open/floor/shiva{ - icon_state = "floor3" +"jaM" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/shiva/interior/colony/research_hab) -"jbE" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/research_caves) +"jaT" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/aerodrome) +"jaW" = ( +/obj/item/device/pinpointer, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"jaZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -2 }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jbf" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, /area/shiva/interior/colony/medseceng) "jbY" = ( /obj/structure/platform/strata{ @@ -14120,20 +10742,43 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"jcv" = ( +"jcn" = ( /obj/structure/surface/table, -/obj/item/clothing/suit/armor/hos, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/item/stock_parts/matter_bin{ + pixel_x = -5; + pixel_y = 14 }, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) +"jdC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "jeg" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/shiva, /area/shiva/interior/bar) +"jek" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"jeo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"jey" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "jft" = ( /obj/structure/surface/table, /obj/item/storage/box/emps, @@ -14149,21 +10794,34 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) -"jgz" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"jfZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jhf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/item/paper/research_notes, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"jhk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jhr" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"jhP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/botany) -"jhq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/n_admin) "jhR" = ( /obj/structure/surface/table/woodentable, /obj/item/tool/kitchen/utensil/pknife{ @@ -14182,19 +10840,38 @@ "jiu" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"jjm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Colony Administration" +"jiP" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"jjd" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"jjp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/s_admin) -"jjq" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) +"jjR" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"jkz" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary/support, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"jkF" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/aux_power) "jkH" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -14203,16 +10880,15 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"jkM" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "hangar_ice_2"; - pixel_y = 28 - }, -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +"jkJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/cp_colony_grounds) +"jlm" = ( +/obj/structure/foamed_metal, +/obj/item/ammo_magazine/handful/shotgun/buckshot, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) "jlv" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood{ @@ -14226,105 +10902,140 @@ }, /turf/open/floor/plating, /area/shiva/interior/bar) +"jlX" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "jlY" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jmq" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) "jmt" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) +"jmK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jmW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"jnW" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"jng" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jnp" = ( +/obj/item/shard{ + icon_state = "large" }, -/area/shiva/interior/colony/medseceng) -"joh" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"jod" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"jou" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"jop" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/medseceng) +"jov" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "joF" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"joP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"joH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"joI" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "jph" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"jpp" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 15; - pixel_y = -3 +"jpC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "jpE" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"jqo" = ( -/obj/item/lightstick/planted, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +"jpU" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_2"; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jpV" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "jqx" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"jqT" = ( -/obj/structure/closet/firecloset, -/obj/item/explosive/grenade/high_explosive/pmc, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"jqY" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +"jra" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/central) "jrg" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/research_caves) -"jru" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"jro" = ( +/obj/item/device/taperecorder, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jrx" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/shiva/interior/colony/n_admin) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) "jrR" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -14335,17 +11046,50 @@ /obj/structure/filingcabinet, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"jsA" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"jsD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/colony/central) +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"jsZ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "jtp" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) +"jtI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"juw" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/exterior/cp_colony_grounds) +"jux" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "jvt" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -14359,6 +11103,11 @@ /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jvB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "jvT" = ( /obj/structure/machinery/light/double{ dir = 4; @@ -14369,55 +11118,68 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jwa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"jwk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "jwm" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"jwr" = ( +/obj/item/storage/donut_box, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"jwz" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"jwH" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) +"jxe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "jxh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"jxJ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +"jxU" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"jyV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jzm" = ( +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"jzL" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"jAg" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"jzN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_x = 5; + pixel_y = 5 }, -/area/shiva/exterior/cp_lz2) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "jAu" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"jAv" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - icon_state = "red" - }, +"jAK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "jAL" = ( /turf/open/auto_turf/snow/layer1, @@ -14425,83 +11187,88 @@ "jAN" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/valley_huts/disposals) -"jBp" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +"jAU" = ( +/turf/open/floor/shiva/blue/west, /area/shiva/interior/colony/n_admin) -"jBu" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"jBN" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"jBe" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jBl" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jBn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center"; + req_access_txt = "100" }, -/area/shiva/exterior/lz2_fortress) -"jCe" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/dark2, +/area/shiva/interior/colony/central) +"jCj" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva, +/area/shiva/interior/colony/research_hab) "jCk" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"jCE" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/oob/dev_room) -"jCZ" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"jDp" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -3; - pixel_y = 6 +"jCp" = ( +/obj/item/newspaper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"jCv" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -11; + pixel_y = 8 }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/tool/mop{ + pixel_x = -10 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"jDB" = ( -/obj/item/shard, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"jEa" = ( -/obj/structure/bed/chair{ +"jCE" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) +"jCU" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) +"jDO" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "jEc" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"jFc" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "jFq" = ( /obj/structure/surface/rack, /obj/item/lightstick/red/variant, @@ -14520,6 +11287,17 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"jFz" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"jGK" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "jGW" = ( /obj/structure/cargo_container/horizontal/blue/middle, /obj/structure/largecrate/random/mini/small_case/b{ @@ -14528,30 +11306,21 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"jGZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "jHg" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"jIF" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"jIK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/n_admin) +"jHP" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"jHX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/colony/research_hab) "jIP" = ( /obj/structure/platform/strata{ dir = 4 @@ -14559,12 +11328,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) -"jIR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/s_admin) "jJf" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -14572,6 +11335,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) +"jJg" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "jJv" = ( /obj/structure/platform/strata{ dir = 1 @@ -14589,28 +11362,22 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"jKI" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "jKN" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jLc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"jLn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/telecomm/lz1_biceps) "jLx" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jLE" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "jLX" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Anti-Freeze Lounge" @@ -14620,32 +11387,31 @@ "jMf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"jMD" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"jMZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/shiva/interior/colony/central) -"jOi" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"jMh" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/shiva/interior/caves/cp_camp) -"jOA" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/weapon/gun/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/obj/item/ammo_magazine/smg/pps43, -/turf/open/floor/shiva{ - dir = 1 +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"jMk" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"jNn" = ( +/obj/structure/surface/table, +/obj/item/device/reagent_scanner, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"jNu" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "jOP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -14656,12 +11422,10 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jPj" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/bar) +"jPm" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "jPo" = ( /obj/structure/platform/strata{ dir = 1 @@ -14671,6 +11435,28 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"jPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"jPF" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"jPG" = ( +/obj/structure/platform/shiva/catwalk, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "jPU" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -14698,12 +11484,19 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"jQt" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 +"jQu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jQx" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "jQy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ dir = 1; @@ -14711,6 +11504,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"jQG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) "jQS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -14722,6 +11519,20 @@ /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"jQX" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/machinery/power/smes/buildable{ + pixel_x = 1 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"jRC" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "jRI" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -14729,25 +11540,64 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"jSb" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = 12; - pixel_y = 6 - }, -/obj/item/ammo_magazine/rifle/boltaction{ - pixel_x = 5; - pixel_y = -7 +"jRK" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"jRP" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/telecomm/lz1_biceps) +"jSn" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12 }, -/obj/structure/barricade/metal{ - dir = 8 +/turf/open/floor/plating/icefloor/warnplate/southeast, +/area/shiva/exterior/junkyard/fortbiceps) +"jSq" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"jSC" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"jSE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jSX" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"jTd" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/obj/structure/barricade/metal{ - layer = 3 +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jTw" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jTy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/assembly/timer, +/obj/item/attachable/flashlight{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"jTP" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "jTT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -14761,23 +11611,45 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"jUj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - dir = 1 +"jUf" = ( +/obj/item/tool/wirecutters{ + pixel_x = -1; + pixel_y = -4 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"jUv" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"jUw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"jUR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"jUT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "jVi" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"jVp" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/deck) +"jVo" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "jVx" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, @@ -14791,21 +11663,55 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"jWL" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"jWf" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"jWw" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"jWQ" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"jXf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"jXs" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"jXy" = ( +/obj/structure/machinery/space_heater, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) "jXD" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"jXV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"jYI" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/central) +"jYN" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "jYO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -14814,68 +11720,60 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"jZF" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"kap" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"kaC" = ( -/turf/closed/wall/shiva/ice, +"jYP" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"jYQ" = ( +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"jZh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/bluefull/west, /area/shiva/interior/aerodrome) -"kaL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"kaT" = ( -/obj/structure/surface/table/woodentable{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"kai" = ( +/obj/item/lightstick/variant/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"kaj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/shiva/interior/colony/s_admin) -"kbf" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 5 }, -/area/shiva/interior/colony/medseceng) -"kbl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"kam" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_3"; + layer = 2.9 }, -/area/shiva/interior/lz2_habs) -"kbJ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"kat" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"kaC" = ( +/turf/closed/wall/shiva/ice, +/area/shiva/interior/aerodrome) +"kbs" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kbK" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -14892,96 +11790,55 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) -"kbZ" = ( -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"kce" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"kcB" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"kdd" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east-gate" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"kdy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"kdK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"kdR" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, +"kbX" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/n_admin) -"kdW" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/red/west, /area/shiva/interior/colony/medseceng) -"kec" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"kdx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration" }, -/obj/structure/window/reinforced/tinted, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"kdG" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"kdJ" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "kee" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"keh" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east-gate" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"kes" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greencorners/west, +/area/shiva/interior/colony/botany) +"kex" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "keI" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -14991,14 +11848,13 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"kfl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_console) +"keV" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"kfw" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "kfW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -15037,22 +11893,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"khx" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) "khz" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"kiv" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "kiB" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -15068,21 +11912,13 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"kiS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/deck) -"kjt" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) +"kjj" = ( +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"kjE" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) "kjM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper North Aerodrome Hangar"; @@ -15090,31 +11926,55 @@ }, /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"kjU" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"kkg" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"kkB" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"kln" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/wood, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "klN" = ( /obj/effect/spider/stickyweb{ icon_state = "stickyweb2" }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/right_spiders) -"klP" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) +"kmD" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "kmM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) +"kmQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "kng" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/right_spiders) @@ -15145,39 +12005,75 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"knR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"knS" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"koe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) "kop" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"koM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"koR" = ( +/obj/structure/closet/crate, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_bishop, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_king, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_knight, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_pawn, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_queen, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/w_rook, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"kpv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "kqb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"kqs" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/shiva/interior/colony/central) -"kqE" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 4; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 1; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"kqH" = ( -/obj/structure/machinery/firealarm{ +"kqk" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"krd" = ( +/obj/structure/machinery/light/double{ dir = 8; - pixel_x = -24 - }, -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = -5 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva, +/area/shiva/interior/aerodrome) +"krg" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "kri" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/layer2, @@ -15185,20 +12081,15 @@ "krm" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/wood, -/area/shiva/interior/aerodrome) -"krM" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"krT" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "labs-elevator" - }, -/turf/closed/wall/shiva/prefabricated/orange, -/area/shiva/interior/colony/research_hab) +/area/shiva/interior/aerodrome) +"kro" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/delivery, +/area/shiva/interior/telecomm/lz1_biceps) +"krq" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "krU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/white, @@ -15208,26 +12099,13 @@ /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"ksu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -32 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ksY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "ktd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) +"kto" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) "kts" = ( /obj/structure/surface/table, /obj/item/storage/box/beakers, @@ -15237,6 +12115,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"ktL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "kue" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/colony/research_hab) @@ -15247,12 +12130,6 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) -"kuM" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/deck) "kuS" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, @@ -15268,23 +12145,15 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"kvu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/russianRed{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"kvh" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"kvk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "kvB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin, @@ -15300,87 +12169,48 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kwc" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) +"kwe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "kwf" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kxb" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) -"kxx" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "kxG" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"kxN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "kys" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/barrel/green, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"kyu" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"kyw" = ( -/obj/structure/barricade/metal{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) +"kyy" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/storage/belt/marine, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/ammo_magazine/rifle/extended, +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "kyD" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"kyG" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"kzr" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, +"kyN" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"kyV" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/s_admin) "kzE" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -15392,22 +12222,40 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"kAp" = ( -/obj/item/stack/sheet/metal/small_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "kAw" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"kAT" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"kAB" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"kAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/shiva/interior/garage) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"kAK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"kAL" = ( +/turf/open/floor/darkbrowncorners2, +/area/shiva/interior/valley_huts/disposals) +"kBa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "kBo" = ( /obj/structure/prop/ice_colony/poly_kevlon_roll{ pixel_y = 21 @@ -15421,6 +12269,29 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"kBz" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) +"kBM" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"kCc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) +"kCE" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/lz1_valley) "kCK" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -15435,21 +12306,17 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"kDJ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"kEh" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"kDp" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = 11; + pixel_y = 11 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"kDF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "kEs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva, @@ -15457,115 +12324,83 @@ "kEx" = ( /turf/open/floor/plating, /area/shiva/interior/bar) -"kEy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"kEB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"kEK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/bar) -"kFd" = ( -/obj/structure/machinery/power/terminal{ +"kFp" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) +"kFC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kFP" = ( +/obj/structure/platform/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"kFJ" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/platform/strata{ + dir = 4 }, +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"kFR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"kGe" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"kGn" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "kGz" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"kGO" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 8 - }, -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"kGW" = ( -/obj/structure/flora/tree/dead/tree_2, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"kHB" = ( -/obj/structure/closet/secure_closet/security, +"kGF" = ( /obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ dir = 8; - icon_state = "redfull" + pixel_y = -5 }, -/area/shiva/interior/colony/medseceng) -"kIo" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"kGR" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 }, -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer1, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"kGW" = ( +/obj/structure/flora/tree/dead/tree_2, +/turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"kIq" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"kHQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) -"kIs" = ( -/obj/item/storage/donut_box, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ +"kHX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/human/burger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"kJc" = ( +/obj/structure/surface/table, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/wirecutters, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "red" + pixel_y = 9 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"kIH" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"kJi" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) "kJw" = ( /obj/item/clipboard, /turf/open/floor/shiva, @@ -15576,26 +12411,28 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"kJL" = ( -/obj/structure/surface/table, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "kJQ" = ( /obj/item/lightstick/red/variant, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kLa" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) +"kKp" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"kKy" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"kKL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"kLf" = ( +/obj/item/book/manual/marine_law, +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "kLi" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/snow_suit/doctor{ @@ -15609,25 +12446,13 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"kLv" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"kLz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"kLB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/emails, -/turf/open/floor/shiva{ - dir = 1 +"kLj" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "kLG" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /obj/structure/flora/grass/tallgrass/ice, @@ -15636,11 +12461,6 @@ "kLM" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"kMg" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/caves/s_lz2) "kMF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -15649,39 +12469,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"kMJ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"kMO" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"kNf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"kOi" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/effect/spawner/random/attachment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"kOj" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"kOB" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/exterior/cp_s_research) +"kOM" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"kOP" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/aux_power) "kOV" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) @@ -15689,6 +12490,24 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) +"kPk" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "kPl" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/medseceng_caves) @@ -15699,24 +12518,10 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"kPX" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "kPZ" = ( /obj/structure/closet/bodybag, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"kQi" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) "kQF" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -15727,6 +12532,9 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) +"kQM" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/research_hab) "kQW" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -15736,49 +12544,17 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"kQX" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"kRj" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +"kRq" = ( +/obj/structure/closet/firecloset, +/obj/item/explosive/grenade/high_explosive/pmc, +/turf/open/floor/shiva/redfull, /area/shiva/interior/colony/research_hab) -"kRI" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"kRK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "chapel" - }, -/area/shiva/interior/colony/central) -"kRV" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"kRy" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "kSh" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, @@ -15792,29 +12568,9 @@ }, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) -"kSW" = ( -/obj/item/circuitboard, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) "kTd" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/colony/research_hab) -"kTI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_queen{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"kTN" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) "kTP" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer1, @@ -15823,6 +12579,15 @@ /obj/item/tool/wirecutters, /turf/open/floor/plating, /area/shiva/interior/colony/deck) +"kUa" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"kUP" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "kVd" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) @@ -15830,19 +12595,19 @@ /obj/structure/surface/table, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"kVs" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"kVA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"kVt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"kVO" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"kVW" = ( +/obj/structure/fence, +/turf/open/floor/shiva/redfull/west, +/area/shiva/exterior/cp_colony_grounds) "kWa" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 @@ -15854,15 +12619,9 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"kWG" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) +"kWC" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/deck) "kWK" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -15872,16 +12631,13 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) -"kWP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/rum{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"kXo" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/green/north, +/area/shiva/interior/colony/botany) "kXs" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -15901,6 +12657,26 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"kXR" = ( +/obj/item/reagent_container/glass/beaker/cryopredmix{ + pixel_x = -10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"kYM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"kYV" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "kZj" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -15911,16 +12687,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"kZy" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8; - layer = 2.98 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) "kZK" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/item/ammo_magazine/handful/shotgun/buckshot{ @@ -15936,6 +12702,9 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"lat" = ( +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "laz" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -15946,33 +12715,16 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"laD" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes/grant, -/obj/item/paper/research_notes/decent{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"laK" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +"laU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"lbF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) +"lce" = ( +/obj/item/tool/shovel/snow, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) "lcv" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -6; @@ -15984,30 +12736,63 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"leg" = ( -/obj/effect/spider/cocoon{ - icon_state = "cocoon_large1" +"lcJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Colony Dormitories"; + req_access_txt = "100" }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) +/turf/open/floor/darkgreen2/southeast, +/area/shiva/interior/colony/botany) +"lcV" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"ldD" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"ldJ" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"ldU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/gun/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/ammo_magazine/rifle/boltaction, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "lfe" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) -"lfk" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars/range{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"lfn" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/warehouse/caves) +"lfv" = ( +/obj/item/lightstick/red/variant, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) "lfC" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer2, @@ -16016,20 +12801,27 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"lgx" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +"lge" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = -6; + pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ + pixel_x = 6; + pixel_y = 11 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "lgN" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard/fortbiceps) +"lgV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "lha" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -16041,27 +12833,40 @@ /obj/structure/surface/rack, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"lhu" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "south-spidercave" - }, -/turf/closed/wall/shiva/ice, -/area/shiva/interior/oob) +"lhi" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"lhP" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) +"lhV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) +"lhZ" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "lip" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"liD" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"liH" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"ljs" = ( +/turf/open/floor/chapel/east, +/area/shiva/interior/colony/central) +"lju" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "ljz" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -16069,62 +12874,40 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ljM" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/deck) -"ljS" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"ljZ" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"lkP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/good_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"lkX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) +"lkx" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"lkO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "lmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"lmL" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"lmQ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/prison{ - icon_state = "kitchen" +"lmD" = ( +/obj/structure/platform/strata{ + dir = 8 }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/lz1_valley) +"lmI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/prison/kitchen, /area/shiva/interior/colony/central) -"lnk" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "telecomms relay power controller"; - start_charge = 10 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) +"lno" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lnH" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_2" @@ -16134,29 +12917,23 @@ "lnR" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"lnY" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/telecomm/lz1_biceps) -"lod" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/botany) -"loe" = ( -/obj/structure/flora/bush/snow{ - icon_state = "snowgrassbb_3"; - layer = 2.9 +"lnV" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_s_research) +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) "lok" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"loo" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "lop" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -16164,35 +12941,33 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"loH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" +"lou" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/shiva/interior/aerodrome) +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"loC" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"loP" = ( +/obj/structure/flora/tree/dead/tree_6, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "loX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"lpn" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"lpA" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"lpe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lpD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -16207,12 +12982,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"lpX" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) "lqY" = ( /obj/structure/largecrate/random/mini/small_case{ pixel_x = -9; @@ -16224,22 +12993,37 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"lrd" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "lrf" = ( /obj/structure/fence{ layer = 2.9 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"lro" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "telecomms relay power controller"; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"lrk" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"lrm" = ( +/obj/structure/surface/table, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"lrn" = ( +/turf/open/floor/bcircuit, +/area/shiva/interior/colony/medseceng) "lrt" = ( /obj/item/shard{ icon_state = "large"; @@ -16247,57 +13031,61 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) +"lsa" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lsg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"lsk" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"ltJ" = ( -/obj/structure/platform_decoration/shiva/catwalk{ +"lso" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"lsL" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"lue" = ( +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"lul" = ( +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lup" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "luD" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"luR" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"lvj" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"lvW" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "red" +"lvQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"lwm" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) "lwo" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"lwx" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "lwG" = ( /obj/structure/machinery/door_control{ id = "garage_ice_1"; @@ -16305,22 +13093,28 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/garage) -"lxl" = ( -/obj/item/stack/rods{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/stack/catwalk, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"lxn" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"lxf" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/garage) +"lxh" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/bar) +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"lxp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lxu" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lyh" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -16329,22 +13123,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"lyw" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"lyE" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/obj/structure/prop/ice_colony/flamingo{ - dir = 1 +"lyy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + pixel_y = 5 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "lzQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NS-center" @@ -16359,41 +13144,39 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"lAN" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"lBC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 +"lAp" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"lAP" = ( +/obj/item/weapon/broken_bottle, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"lAT" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "White" }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"lAZ" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) +"lBw" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/n_admin) +"lBx" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "lCb" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"lCe" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"lCp" = ( -/obj/structure/platform_decoration/shiva/catwalk{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/lz1_valley) -"lDv" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "lDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Colony Dormitories"; @@ -16401,46 +13184,51 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"lDI" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"lEJ" = ( -/obj/structure/surface/table/woodentable{ - flipped = 1 - }, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"lFp" = ( +"lDF" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/item/device/defibrillator, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/shiva/interior/colony/research_hab) -"lFP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"lDO" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) +"lDY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"lEl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) +"lFw" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Research Landing Zone" }, -/area/shiva/interior/bar) +/turf/open/floor/plating, +/area/shiva/exterior/lz2_fortress) +"lFR" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "lFX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"lGe" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "lGq" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) @@ -16450,6 +13238,14 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) +"lGF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"lGS" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lGU" = ( /obj/structure/surface/table, /obj/item/storage/fancy/cigarettes/lucky_strikes{ @@ -16457,18 +13253,13 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"lGZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 +"lGX" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) "lHl" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; @@ -16478,50 +13269,31 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/plating, /area/shiva/interior/garage) -"lHA" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"lHU" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"lHK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool{ - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"lHX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) "lIa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_s_research) -"lJh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"lJt" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1 +"lII" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"lIQ" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "backup power SMES" }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"lJv" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "lJx" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, @@ -16530,56 +13302,40 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"lKJ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) -"lKQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greencorners" - }, -/area/shiva/interior/colony/botany) "lLv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"lLE" = ( -/obj/structure/prop/invuln/ice_prefab/standalone, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/research_alley) +"lLJ" = ( +/obj/structure/stairs/perspective/ice{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) +"lLX" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "lMO" = ( /obj/structure/barricade/snow{ dir = 8 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"lNf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/deck) +"lNd" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/botany) "lNg" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) -"lNm" = ( -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) +"lNl" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "lNE" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" @@ -16599,46 +13355,24 @@ "lNV" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/medseceng) -"lOO" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ +"lOJ" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"lOT" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"lPh" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/explosive/grenade/custom/metal_foam, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"lPC" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 + pixel_y = -5 }, -/area/shiva/interior/colony/medseceng) -"lQa" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) +"lPw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"lPP" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 8 }, -/area/shiva/interior/colony/central) +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) "lQm" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; @@ -16651,184 +13385,154 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"lQz" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/botany) +"lQP" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lQW" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "lRo" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"lRI" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/shiva{ - icon_state = "floor3" +"lSn" = ( +/obj/structure/surface/table, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/area/shiva/interior/valley_huts) -"lSz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/item/folder/black_random{ + pixel_x = -1; + pixel_y = 5 }, -/area/shiva/interior/colony/n_admin) +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"lSq" = ( +/obj/structure/platform_decoration/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"lSw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "lSU" = ( /turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/interior/colony/research_hab) -"lTc" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard/cp_bar) -"lTr" = ( -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz2_southeast) -"lTL" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-north" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"lTN" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "darkbrown2" - }, -/area/shiva/interior/valley_huts/disposals) -"lUF" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/botany) -"lUL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -11; - pixel_y = 25 - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) -"lUQ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"lVb" = ( +/area/shiva/interior/colony/research_hab) +"lTc" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/cp_bar) +"lTq" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/area/shiva/interior/colony/s_admin) -"lVf" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"lTr" = ( +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz2_southeast) +"lTM" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/shiva/interior/colony/central) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/shiva/interior/aerodrome) +"lTS" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"lUa" = ( +/obj/item/circuitboard, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "lVF" = ( /obj/structure/platform/shiva/catwalk{ dir = 4 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/colony/central) -"lVJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"lVN" = ( -/obj/structure/closet/radiation, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"lWr" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 1 +"lVU" = ( +/obj/structure/machinery/light/double, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/shiva/interior/colony/central) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lVW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"lWh" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) +"lWv" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/caves/cp_camp) "lWL" = ( /obj/effect/spider/cocoon{ icon_state = "cocoon_large3" }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"lWR" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"lWW" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/shiva/interior/colony/central) -"lXj" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, -/area/shiva/interior/colony/medseceng) -"lXy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ +"lWM" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = 12; pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"lXE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"lXM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 16 +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = 5; + pixel_y = -7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/metal{ + dir = 8 }, -/area/shiva/interior/bar) -"lYf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" +/obj/structure/barricade/metal{ + layer = 3 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"lWP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/tool/pen/blue{ + pixel_x = 5 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lXh" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"lXW" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) +"lYe" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "lYk" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin{ @@ -16848,6 +13552,20 @@ /mob/living/simple_animal/hostile/giant_spider/hunter, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"lYr" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"lYw" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "lYG" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random{ @@ -16859,29 +13577,37 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"lYX" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"lZk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/colony/s_admin) -"mae" = ( /obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"lZs" = ( +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"lZB" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"lZH" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) +"lZT" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"maf" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-southeast-gate" }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "mah" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -16889,16 +13615,14 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"mai" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/warehouse/caves) "maA" = ( /obj/structure/surface/table/woodentable, /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/wood, /area/shiva/interior/bar) -"maW" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "mbj" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -16915,58 +13639,92 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"mcw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"mbz" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"mca" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/aerodrome) +"mcC" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"mcF" = ( +/obj/structure/platform_decoration/strata{ + dir = 1 + }, +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "mcH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"mda" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"mdx" = ( -/turf/open/floor/shiva{ - dir = 1 +"mcJ" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"mcU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"mdC" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/area/shiva/interior/colony/n_admin) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"mdP" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"mdT" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "mdV" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"med" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 50 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "meg" = ( /obj/item/tool/wet_sign, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"mer" = ( +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "mev" = ( /obj/structure/closet/toolcloset, /obj/item/stack/sheet/metal/small_stack, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"meG" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"meE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"meM" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "mfa" = ( /obj/item/weapon/ice_axe, /turf/open/auto_turf/snow/layer2, @@ -16977,26 +13735,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"mfe" = ( -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"mfr" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, -/area/shiva/interior/colony/medseceng) -"mgA" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +"mgK" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/ammo_magazine/rifle/m41aMK1, +/obj/item/storage/belt/marine, +/obj/item/clothing/suit/armor/riot/marine, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "mgL" = ( /obj/item/weapon/gun/energy/taser, /obj/structure/machinery/light/double{ @@ -17005,6 +13753,22 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"mgO" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + name = "Security Desk" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "mgT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -17015,16 +13779,13 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"mhs" = ( -/obj/effect/spawner/random/powercell, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"mhx" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" +"mhI" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "mhP" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) @@ -17036,113 +13797,125 @@ "mib" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/medseceng_caves) -"mie" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/research_caves) -"miD" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +"miu" = ( +/turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/research_hab) +"mjp" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "mjV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"mkK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 +"mkn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/colony/research_hab) +"mkA" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"mkZ" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/central) +"mlz" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "mlG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"mlX" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "Research Landing Zone" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz2_fortress) -"mms" = ( -/turf/open/floor/shiva{ - dir = 1 +"mmi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/shiva/interior/colony/deck) -"mmW" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent5"; - pixel_x = 16; - pixel_y = 10 +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"mmm" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"mnD" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"mmI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement, +/area/shiva/interior/warehouse) +"mmR" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"mnB" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"mnR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/aux_power) "mnS" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"mnZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) -"moV" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/item/reagent_container/food/snacks/bigbiteburger, -/obj/structure/machinery/light/double, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"mpt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) -"mqd" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"moz" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) +"moM" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"mpA" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) -"mqe" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"mqt" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"mqx" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) "mqD" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/central) +"mqN" = ( +/turf/closed/wall/shiva/prefabricated, +/area/shiva/exterior/cp_s_research) +"mqP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) +"mqZ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "mru" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/rum{ @@ -17151,32 +13924,16 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"mrY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/lz2_habs) -"msd" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"msh" = ( -/obj/structure/flora/tree/dead/tree_6, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"msN" = ( -/obj/structure/bedsheetbin{ - pixel_y = 9 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +"mrB" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"mrJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"msp" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "mti" = ( /obj/structure/machinery/light/double{ @@ -17185,29 +13942,32 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"mtA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"mtD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mtU" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"mue" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"muq" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "muH" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"muI" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "muN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp, @@ -17220,6 +13980,13 @@ /obj/structure/largecrate/random/mini/ammo, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"mva" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "mvF" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -17239,24 +14006,20 @@ "mwE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/junkyard) -"mwF" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "mwJ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/floor/plating, /area/shiva/interior/caves/research_caves) -"mxn" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"mxo" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"myP" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "myR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -17267,10 +14030,18 @@ /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"mAd" = ( +/obj/structure/inflatable, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "mAK" = ( /obj/item/weapon/ice_axe/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"mAS" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "mBf" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_4" @@ -17289,28 +14060,12 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"mBW" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/lz2_habs) "mCe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"mCg" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) "mCj" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) @@ -17320,26 +14075,15 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mCn" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/shiva/interior/lz2_habs) "mCo" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"mCs" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) +"mCu" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) "mCQ" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 1; @@ -17355,18 +14099,49 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"mEp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +"mDb" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"mDk" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/area/shiva/exterior/lz2_fortress) +/obj/structure/barricade/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"mDl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"mDG" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"mDO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"mEe" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) "mEw" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"mEB" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "mEG" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/snow/layer0, @@ -17381,42 +14156,28 @@ }, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) -"mEV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"mFm" = ( -/turf/open/floor/shiva{ - dir = 1 +"mEU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/shiva/exterior/lz2_fortress) +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"mEW" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/aerodrome) "mFo" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mFD" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"mGn" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"mGr" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 }, -/area/shiva/interior/colony/central) +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "mGI" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -17428,20 +14189,19 @@ "mHn" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_southeast) -"mHA" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) "mHB" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"mHK" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) "mHP" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -17454,16 +14214,15 @@ /obj/structure/computerframe, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"mIt" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +"mHY" = ( +/obj/structure/platform/strata{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/obj/structure/platform/strata{ + dir = 8 }, -/area/shiva/interior/colony/botany) +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "mIx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer1, @@ -17471,6 +14230,22 @@ "mIL" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"mIZ" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars/range{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -14; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"mJn" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "mJx" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/layer1, @@ -17493,12 +14268,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/medseceng) -"mKk" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) "mKr" = ( /obj/structure/window/framed/shiva, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -17516,41 +14285,30 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"mKB" = ( -/obj/item/paper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "mKF" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"mLo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/processor{ - desc = "It CAN blend it."; - icon_state = "blender_e"; - name = "Blendomatic"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"mLG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" +"mLv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"mLx" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"mLR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) +"mLL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"mLN" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "mLT" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -17558,13 +14316,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"mMa" = ( -/obj/item/packageWrap, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "mMg" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; @@ -17575,32 +14326,37 @@ "mMK" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"mNk" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/n_admin) "mNs" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"mNK" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"mOu" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +"mNA" = ( +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) +"mOm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "mOv" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/lz1_valley) -"mOT" = ( -/mob/living/simple_animal/hostile/giant_spider/hunter, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) +"mOz" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"mOM" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"mOR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "mOY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/shiva, @@ -17609,29 +14365,45 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) -"mQl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"mPw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/exterior/lz2_fortress) -"mQs" = ( +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"mPA" = ( +/obj/structure/machinery/vending/coffee, /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"mPU" = ( +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"mQy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_y = 10 }, -/area/shiva/interior/colony/deck) -"mQL" = ( -/turf/open/floor{ - dir = 9; - icon_state = "darkgreen2" +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = 7; + pixel_y = 4 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"mQE" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "mRc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -17645,6 +14417,10 @@ /obj/structure/surface/rack, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"mRk" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "mRo" = ( /obj/structure/platform/strata{ dir = 1 @@ -17655,12 +14431,29 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"mRU" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" +"mRL" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-east" }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"mSf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 + }, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_colony_grounds) +"mSj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) "mSv" = ( /obj/item/tool/shovel/spade{ pixel_x = -3; @@ -17668,33 +14461,21 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"mSR" = ( -/turf/open/floor/shiva{ - icon_state = "bluecorners" - }, -/area/shiva/interior/colony/central) -"mTK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"mTN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 4; - pixel_x = -5; - pixel_y = -2 - }, -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ +"mUg" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/obj/item/circuitboard/firealarm, +/obj/structure/machinery/light/double{ dir = 1; - pixel_x = 7; - pixel_y = 16 + pixel_y = 9 }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"mUr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "mUB" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -17707,6 +14488,11 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"mUD" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "mUF" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -17714,21 +14500,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"mUT" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"mVo" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/area/shiva/interior/colony/research_hab) -"mVl" = ( -/obj/structure/prop/dam/truck, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/area/shiva/interior/garage) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "mVY" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -17739,39 +14519,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"mWw" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"mWE" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"mVZ" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"mWb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"mWX" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/garage) +"mWZ" = ( +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_s_research) +"mXu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platebot, /area/shiva/interior/colony/research_hab) -"mWK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"mXq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/n_admin) "mXz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -17782,6 +14549,16 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"mXD" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"mXO" = ( +/obj/structure/largecrate/random/mini/wooden{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "mXS" = ( /obj/structure/machinery/newscaster/security_unit, /turf/closed/wall/shiva/prefabricated, @@ -17790,50 +14567,31 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"mYm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +"mYi" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/garage) "mYK" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"mYX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) "mZb" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/shiva/interior/bar) -"mZH" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) +"nag" = ( +/obj/structure/machinery/cell_charger, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "naN" = ( /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"naQ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "naR" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -17856,23 +14614,20 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/warehouse) -"ncY" = ( -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva{ - icon_state = "floor3" +"ndu" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/wood{ + amount = 15 }, -/area/shiva/interior/colony/central) +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ndJ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ndR" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) "nej" = ( /obj/structure/machinery/door/window/brigdoor/westleft{ dir = 1; @@ -17887,23 +14642,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"neS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/obj/item/tool/surgery/scalpel{ - pixel_x = 16 - }, -/obj/item/tool/surgery/hemostat{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"neR" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "neZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -17914,66 +14656,46 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"nfe" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1 - }, +"nfo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"nfg" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"ngx" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "yellow" +"nfA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 2; + name = "Underground Morgue" }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"nfD" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/north, /area/shiva/interior/garage) "ngz" = ( /obj/item/tool/wrench, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"nhl" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) -"nhB" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/obj/structure/machinery/light/double{ +"nhL" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"nif" = ( +/obj/structure/machinery/firealarm{ dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" + pixel_x = 24 }, -/area/shiva/interior/colony/n_admin) -"nhF" = ( -/obj/structure/prop/ice_colony/surveying_device{ - dir = 4 +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) +"nig" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/obj/item/storage/firstaid/fire, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "niL" = ( /obj/structure/platform/strata{ dir = 8 @@ -17986,10 +14708,29 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"nkH" = ( -/obj/structure/girder, -/turf/open/floor/shiva, -/area/shiva/interior/caves/research_caves) +"njt" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"njD" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"njL" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"nkW" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "nlx" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -18000,28 +14741,19 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"nlG" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"nmi" = ( -/obj/item/weapon/twohanded/spear, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" +"nlL" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/colony/research_hab) -"nmt" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"nmn" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz2_southeast) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "nmT" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue, @@ -18034,13 +14766,13 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nnG" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"nny" = ( +/obj/item/stack/snow{ + pixel_x = -7 }, -/area/shiva/interior/colony/central) +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) "noa" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -18050,6 +14782,15 @@ "noi" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/colony/n_admin) +"noB" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"noS" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) "noV" = ( /obj/item/tool/shovel/spade{ layer = 2.99; @@ -18064,21 +14805,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/medseceng) -"nqu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/central) -"nrf" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 12 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" +"nql" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "nrr" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -18094,26 +14827,27 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nrU" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +"nsb" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nsT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/shiva/interior/lz2_habs) -"nsI" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) "ntc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"ntt" = ( +/obj/structure/surface/table, +/obj/item/storage/surgical_tray, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "ntJ" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) @@ -18135,43 +14869,58 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"nuE" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_colony_grounds) "nuY" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nvS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/shiva/exterior/cp_colony_grounds) -"nwd" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 +"nvl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"nwi" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "telecomms relay power controller" }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"nws" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "nxi" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nxA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"nxw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"nxx" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"nxG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nxO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "nzf" = ( /obj/structure/surface/table, /obj/structure/noticeboard{ @@ -18191,12 +14940,15 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nzr" = ( -/obj/structure/barricade/handrail/wire{ +"nzn" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/auto_turf/ice/layer0, +/turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) +"nzH" = ( +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "nzR" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/snow/layer3, @@ -18205,32 +14957,24 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"nAp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal8" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"nAs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) -"nAY" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" +"nAz" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/area/shiva/interior/colony/medseceng) -"nBh" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) +"nBa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/feathertrilby{ + pixel_x = -4; + pixel_y = 5 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nBm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/warehouse/caves) "nBo" = ( /obj/structure/largecrate/random, /obj/item/device/flashlight{ @@ -18239,37 +14983,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"nBs" = ( -/obj/structure/surface/table, -/obj/item/frame/firstaid_arm_assembly{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"nBB" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"nCo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/shiva/interior/colony/central) +"nBM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"nBZ" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"nCw" = ( +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/interior/aux_power) "nCx" = ( /obj/structure/closet/coffin, /turf/open/floor/plating, @@ -18281,77 +15005,55 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"nDs" = ( +/obj/item/weapon/twohanded/spear, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"nDt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/medseceng) "nDv" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"nEH" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" - }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) -"nEZ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"nFg" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/exterior/cp_lz2) -"nFB" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) -"nGv" = ( -/obj/item/shard{ - icon_state = "large" +"nDT" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/aux_power) +"nEC" = ( +/obj/item/device/flashlight, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"nFI" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"nGm" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"nGD" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"nGM" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "nGT" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nHj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +"nHo" = ( +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/colony/n_admin) -"nHp" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"nHt" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "nHH" = ( /obj/structure/surface/table, /obj/item/storage/donut_box{ @@ -18359,24 +15061,51 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nIB" = ( -/obj/structure/surface/table, -/obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"nHS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"nIb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"nID" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) "nIN" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" }, /turf/open/floor/wood, /area/shiva/interior/bar) -"nJu" = ( -/obj/item/frame/rack, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +"nJx" = ( +/obj/item/weapon/gun/pistol/holdout, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"nJD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"nJX" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/under/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "nKc" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 1; @@ -18384,6 +15113,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) +"nKC" = ( +/obj/item/tool/weldingtool, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "nKD" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -7; @@ -18394,18 +15127,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"nKO" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/botany) -"nLn" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) +"nLP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "nMk" = ( /obj/structure/surface/table, /obj/item/device/flashlight/lamp{ @@ -18413,12 +15141,6 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"nMP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "nMR" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -18443,39 +15165,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"nNj" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"nNl" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) -"nNN" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"nNX" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/warehouse/caves) +"nNy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "nOd" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/s_admin) @@ -18485,20 +15178,16 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"nOw" = ( -/obj/structure/stairs/perspective/ice{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) -"nOB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"nOQ" = ( +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/garage) +"nPa" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "nPb" = ( /obj/structure/prop/ice_colony/soil_net, /obj/structure/platform/strata{ @@ -18506,15 +15195,20 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"nPH" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, +"nPq" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/shiva/exterior/junkyard/fortbiceps) +"nPJ" = ( /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "yellowfull" +/obj/item/clothing/gloves/black{ + pixel_y = 4 }, -/area/shiva/interior/colony/research_hab) +/obj/item/device/flashlight{ + pixel_x = -3; + pixel_y = -13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "nPW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -18524,155 +15218,138 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"nRy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"nRe" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/obj/structure/window/reinforced/tinted, /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"nRL" = ( -/obj/item/device/flashlight, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"nSI" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"nRg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"nSO" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/medseceng_caves) +"nTq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"nSO" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/medseceng_caves) +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"nTs" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "nTu" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"nTv" = ( -/obj/structure/surface/table, -/obj/item/device/encryptionkey, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/telecomm/lz1_biceps) -"nTC" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) +"nTY" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) "nUa" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"nUn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "nUq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"nVn" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"nVL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 7 +"nUH" = ( +/obj/item/ammo_casing{ + icon_state = "casing_5" }, -/obj/item/storage/box/donkpockets{ - pixel_y = 3 +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) +"nVh" = ( +/obj/structure/surface/table, +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/northwest, +/area/shiva/interior/colony/medseceng) +"nVi" = ( +/obj/structure/largecrate/random/mini/chest/b, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"nVv" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) -"nVM" = ( -/obj/structure/bed/chair/comfy/orange{ +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/s_admin) +"nVC" = ( +/obj/item/lightstick/red/variant/planted{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/research_caves) +"nVZ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/shiva/exterior/telecomm/lz2_northeast) +"nWa" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "nWI" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"nXG" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "backup power SMES" +"nWR" = ( +/obj/structure/machinery/chem_master/condimaster, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"nXc" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"nXX" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/research_hab) +"nYb" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"nYu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) +"nYG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"nYU" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "nZA" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/warehouse/caves) -"nZM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"oag" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"oah" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"oaH" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"oaI" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) "oaO" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating, @@ -18685,6 +15362,10 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/shiva/interior/aerodrome) +"obl" = ( +/obj/item/tool/screwdriver, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "obH" = ( /obj/item/device/camera{ pixel_x = 6; @@ -18699,12 +15380,6 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ocl" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "labs-larder" - }, -/turf/closed/wall/shiva/prefabricated/blue, -/area/shiva/interior/colony/research_hab) "ocv" = ( /obj/item/weapon/ice_axe/red, /turf/open/auto_turf/ice/layer0, @@ -18727,26 +15402,12 @@ }, /turf/open/floor/shiva, /area/shiva/interior/bar) -"ocI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W-corner" - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = -1 - }, +"ocN" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"odd" = ( /turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) -"odb" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) +/area/shiva/exterior/junkyard) "odg" = ( /obj/item/tool/weldingtool, /turf/open/auto_turf/snow/layer1, @@ -18754,44 +15415,37 @@ "odz" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/lz2_habs) -"oeQ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - icon_state = "green" +"odT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"oem" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"oeK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"ofj" = ( +/obj/structure/toilet, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ofl" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"ofr" = ( -/obj/item/frame/rack, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) "ofw" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard) -"ofK" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"ofU" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"ogd" = ( -/obj/structure/machinery/chem_master/condimaster, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "ogu" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ dir = 1 @@ -18808,18 +15462,17 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"ohb" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"ohw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/area/shiva/interior/garage) -"ohq" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "ohE" = ( /obj/item/clipboard, /turf/open/floor/wood, @@ -18828,10 +15481,28 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) +"oit" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "oiH" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"oiI" = ( +/obj/item/lightstick/red/variant/planted, +/obj/structure/platform/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/aerodrome) +"oiJ" = ( +/obj/structure/barricade/snow{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/fortbiceps) "oiX" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -18843,37 +15514,21 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"okz" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"okM" = ( -/obj/item/frame/toolbox_tiles, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"ols" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/exterior/valley) -"olI" = ( -/obj/item/device/pinpointer, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"omu" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) +"okK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"olh" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/central) +"olJ" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"omf" = ( +/turf/closed/wall/shiva/prefabricated/orange, +/area/shiva/interior/caves/research_caves) "onc" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -18883,18 +15538,10 @@ /obj/item/evidencebag, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"onF" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) -"onM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) +"onw" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "ood" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/valley) @@ -18902,26 +15549,37 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) +"ooE" = ( +/obj/structure/barricade/snow{ + dir = 4 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard/fortbiceps) +"ooL" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"ooO" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "opa" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"opM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) +"opp" = ( +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/colony/central) "oqf" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"oqt" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/central) "oqy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -18938,15 +15596,9 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"oqQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) +"oqO" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oqX" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 4; @@ -18954,31 +15606,16 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ord" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 2; - name = "Underground Morgue" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "ors" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"orO" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"osh" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"orw" = ( +/obj/structure/barricade/metal{ + health = 230 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "osE" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) @@ -18986,33 +15623,21 @@ /obj/structure/prop/ice_colony/dense/ice_tray, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"otA" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"ota" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/research_hab) "otJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"otL" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greencorners" - }, -/area/shiva/interior/colony/botany) -"otV" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"ouI" = ( +/obj/structure/kitchenspike, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "ouS" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 15; @@ -19023,13 +15648,6 @@ "ovc" = ( /turf/open/floor/carpet, /area/shiva/interior/colony/medseceng) -"ovh" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "ovI" = ( /obj/structure/largecrate/random/mini/med, /turf/open/auto_turf/snow/layer3, @@ -19038,72 +15656,68 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"owr" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_s_research) -"owt" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "oww" = ( /obj/item/frame/rack, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"owx" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "owB" = ( /obj/structure/platform/shiva/catwalk{ dir = 4 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"owD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) +"owR" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/garage) "owW" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"owY" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/plating, -/area/shiva/exterior/telecomm/lz2_northeast) +"oxr" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "oxP" = ( /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"oyc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) "oyw" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"ozl" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -7; + pixel_y = -8 + }, +/obj/structure/barricade/metal{ + layer = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"ozQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"ozU" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"oAc" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "oAo" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ dir = 1; @@ -19111,29 +15725,36 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"oBV" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/warehouse/caves) -"oCk" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 2.99; - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/valley) -"oCr" = ( -/obj/item/shard{ - icon_state = "large" - }, -/turf/open/floor/shiva{ - dir = 1 +"oAX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" }, -/area/shiva/interior/garage) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"oBp" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/shiva/north, +/area/shiva/interior/caves/s_lz2) +"oBt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"oBV" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/warehouse/caves) +"oCy" = ( +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "oCG" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/aerodrome) +"oCQ" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "oDi" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -19144,18 +15765,24 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) +"oDw" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"oDA" = ( +/obj/item/weapon/ice_axe/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) "oDH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"oDM" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "oDQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, @@ -19168,12 +15795,6 @@ /obj/effect/decal/cleanable/vomit, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"oET" = ( -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "oEU" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -19182,6 +15803,20 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"oFb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"oFf" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "oFl" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -19189,88 +15824,72 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"oFG" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"oFX" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wredcorners" - }, -/area/shiva/interior/colony/medseceng) -"oGb" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) "oGg" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) +"oGv" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"oGC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oGY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) "oHf" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) -"oHz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "oHE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"oHF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"oHI" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"oIh" = ( -/obj/item/frame/air_alarm, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +"oHL" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"oHY" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"oIR" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"oJe" = ( +"oIH" = ( /obj/structure/surface/table, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/tool/surgery/scalpel{ + pixel_x = 16 + }, +/obj/item/tool/surgery/hemostat{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"oIL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -32 }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) +"oJY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) "oKc" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -19289,21 +15908,38 @@ /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"oLr" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"oLg" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) "oLu" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/oob/dev_room) +"oLA" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"oLK" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"oMu" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/valley) +"oMz" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/under/marine/veteran/mercenary, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "oMG" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -19317,19 +15953,23 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"oNo" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 +"oNa" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/red/west, +/area/shiva/interior/colony/medseceng) "oNz" = ( /obj/item/stack/rods, /turf/closed/wall/shiva/prefabricated/blue, /area/shiva/interior/warehouse) +"oNI" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oNQ" = ( /obj/structure/barricade/snow{ dir = 1 @@ -19345,68 +15985,139 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/cp_bar) +"oOC" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/caves/research_caves) "oOV" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"oPN" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"oQa" = ( +/obj/effect/spider/stickyweb, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/caves/cp_camp) +"oQf" = ( +/obj/structure/surface/table, +/obj/item/storage/belt/utility, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) +"oQi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Colony Dormitories Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "oQl" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/valley) +"oQp" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oQq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) +"oQC" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/garage) +"oQE" = ( +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"oQP" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"oQS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "oRH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"oSU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 +"oRX" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 }, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/caves/cp_camp) +"oSN" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) "oTd" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/cp_lz2) -"oTh" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) "oUu" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/lz1_valley) -"oWk" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +"oUB" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 }, -/area/shiva/interior/warehouse) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"oWx" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "oWG" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber{ icon_state = "psiphon:1" }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"oXf" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"oXz" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"oWH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"oWS" = ( +/obj/structure/surface/table, +/obj/item/device/lightreplacer, +/obj/item/clothing/mask/rebreather, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2, +/area/shiva/interior/valley_huts/disposals) +"oWT" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp{ + pixel_y = 4 }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"oXd" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"oXA" = ( +/obj/item/storage/pouch/flare/full, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "oXM" = ( /obj/structure/machinery/space_heater, /obj/item/clothing/glasses/welding{ @@ -19426,63 +16137,23 @@ "oYw" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/medseceng) -"oYH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) "oYX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"oZq" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"oZs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "oZE" = ( /obj/structure/coatrack, /turf/open/floor/shiva, /area/shiva/interior/bar) -"oZR" = ( -/obj/item/stack/cable_coil/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +"pbX" = ( +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 6; + pixel_y = -4 }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, /area/shiva/interior/aerodrome) -"pad" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"paZ" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "pbY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" @@ -19492,19 +16163,10 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"pch" = ( -/obj/item/shard{ - icon_state = "large"; - name = "ice shard" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"pct" = ( -/obj/effect/spider/stickyweb, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) +"pcz" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "pcC" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -19517,6 +16179,13 @@ "pcY" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/cp_camp) +"pdb" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pde" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pdf" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -19528,46 +16197,20 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"pef" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/asphalt/cement, -/area/shiva/interior/warehouse) -"pei" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 15; - pixel_y = -3 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -16; - pixel_y = -3 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +"pec" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"pet" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pey" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"peQ" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"pfg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/deck) "pfp" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -19583,15 +16226,6 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/shiva/interior/bar) -"pgh" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) "pgu" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/telecomm/lz2_southeast) @@ -19601,12 +16235,25 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"piW" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 +"pht" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"pij" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/shiva/interior/colony/medseceng) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"pik" = ( +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "pji" = ( /obj/item/paper_bin{ pixel_y = 7 @@ -19614,97 +16261,101 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"pjV" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 +"pkn" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/shiva/exterior/cp_colony_grounds) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "pkp" = ( /obj/structure/filingcabinet, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) -"pkK" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" +"pks" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"pkF" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "pkT" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"plm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/shiva{ +"pkU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "red" + name = "\improper Anti-Freeze Lounge" }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"pkX" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) "plM" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard) -"plS" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"pmz" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"pmI" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/tool/weldingtool{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"pnd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"pmT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/shiva/interior/bar) -"pnK" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) +"pog" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/human/burger, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) +"poi" = ( +/obj/structure/closet/radiation, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"pow" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"poE" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/exterior/junkyard) "ppb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"ppI" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) +"ppR" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/warehouse) "pqe" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/interior/bar) +"pqf" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal{ + amount = 25; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pqg" = ( +/obj/item/ammo_magazine/rifle/boltaction{ + pixel_x = -5; + pixel_y = -9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pqj" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) @@ -19714,45 +16365,33 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"prb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) -"prO" = ( -/obj/structure/stairs/perspective/ice{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) -"prU" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) +"pqy" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "psl" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"pth" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" +"psw" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) +"psI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/area/shiva/interior/lz2_habs) +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"pta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "pti" = ( /obj/item/tool/weldpack{ pixel_x = 6; @@ -19775,90 +16414,36 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"ptr" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) "pue" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_y = 8 }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"pul" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/caves/s_lz2) -"puN" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"puT" = ( -/obj/structure/surface/table, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) "puZ" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) -"pve" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"pvk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "pvv" = ( /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"pvR" = ( -/obj/structure/platform_decoration/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) "pvU" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"pwo" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"pww" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/medseceng) "pwB" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"pwT" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) -"pxi" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "pxl" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -19868,38 +16453,20 @@ pixel_y = 12 }, /turf/open/auto_turf/snow/layer0, -/area/shiva/interior/colony/botany) -"pxA" = ( -/turf/closed/wall/shiva/prefabricated/red, -/area/shiva/interior/colony/research_hab) -"pyp" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"pyB" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 10; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"pyI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/area/shiva/interior/colony/botany) +"pxA" = ( +/turf/closed/wall/shiva/prefabricated/red, +/area/shiva/interior/colony/research_hab) +"pyd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"pyC" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "pyK" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -19912,14 +16479,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/interior/oob) -"pyV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "pzi" = ( /obj/item/newspaper, /turf/open/floor/wood, @@ -19931,83 +16490,55 @@ "pzJ" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_colony_grounds) -"pAE" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"pAO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/newspaper, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"pAV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/bar) -"pBl" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/obj/structure/machinery/landinglight/ds2/delaythree{ +"pzM" = ( +/obj/structure/platform/strata{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"pBy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"pCe" = ( /obj/structure/stairs/perspective/ice{ dir = 1; icon_state = "p_stair_sn_full_cap" }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/lz1_valley) +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"pzR" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"pzY" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pAP" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"pBB" = ( +/turf/open/floor/chapel/north, +/area/shiva/interior/colony/central) +"pBT" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"pCm" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "pCH" = ( /obj/item/tool/shovel, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"pCI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"pCJ" = ( -/obj/item/book/manual/marine_law, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"pDp" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"pCL" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"pDn" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) "pDr" = ( /obj/structure/fence, @@ -20028,14 +16559,14 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"pDH" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "pDW" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) +"pEa" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pEe" = ( /obj/structure/closet/bodybag, /obj/structure/machinery/light/double{ @@ -20044,23 +16575,21 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"pEh" = ( +"pEl" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"pEs" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/red/east, +/area/shiva/interior/colony/medseceng) +"pEn" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"pEu" = ( +/obj/structure/machinery/vending/cola/research, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pEv" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -20076,95 +16605,52 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"pFd" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) +"pES" = ( +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) "pFg" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"pFq" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"pFt" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"pFI" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/botany) -"pFJ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/lz2_habs) -"pGf" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, +"pGy" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) -"pGg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"pGj" = ( -/obj/item/weapon/ice_axe/red, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) "pGL" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"pHz" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"pId" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"pGM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"pHo" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "pIK" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"pJp" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) "pJA" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -20172,6 +16658,10 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"pJB" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/central) "pJM" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -20185,14 +16675,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"pKb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) "pKf" = ( /obj/item/stack/cable_coil/white, /turf/open/floor/interior/plastic, @@ -20202,6 +16684,14 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) +"pKp" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) +"pKx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "pKF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -20213,20 +16703,10 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"pKK" = ( -/obj/item/lightstick/red/variant, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) -"pKP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) +"pKH" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) "pKQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ashtray/plastic, @@ -20236,56 +16716,66 @@ /obj/item/trash/cigbutt, /turf/open/floor/plating, /area/shiva/interior/bar) +"pKX" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/deck) "pLf" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_s_research) -"pLn" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +"pLD" = ( +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"pLy" = ( +"pLG" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/computer/cameras{ + dir = 8; + pixel_y = 6 }, -/area/shiva/interior/colony/medseceng) -"pLS" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"pLN" = ( /obj/structure/surface/rack, -/turf/open/floor/plating, -/area/shiva/interior/caves/research_caves) -"pMs" = ( +/obj/item/tool/lighter/zippo, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"pLO" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/deck) -"pME" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"pLS" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/shiva/interior/caves/research_caves) +"pLX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/wy_mre, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"pMd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) +"pMn" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + pixel_y = 4 }, +/turf/open/floor/shiva/purple/north, /area/shiva/interior/lz2_habs) -"pMK" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/processor, -/turf/open/floor/prison{ - icon_state = "kitchen" +"pMy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" }, -/area/shiva/interior/bar) +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/medseceng) "pMV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -20295,11 +16785,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"pNf" = ( -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, -/area/shiva/interior/garage) "pNo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11 @@ -20309,60 +16794,48 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"pNq" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "pNs" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"pNx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "pNy" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/colonist, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"pNM" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"pOy" = ( -/obj/structure/inflatable, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"pOI" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/prison{ - icon_state = "kitchen" +"pOb" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, +/turf/open/floor/shiva/red, /area/shiva/interior/colony/central) -"pOM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"pOd" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - icon_state = "delivery" +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"pOj" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"pOV" = ( +/obj/structure/machinery/m56d_hmg{ + dir = 4 }, -/area/shiva/interior/telecomm/lz1_biceps) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"pOW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"pPp" = ( +/obj/structure/platform/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "pPt" = ( /obj/structure/surface/table, /obj/item/frame/firstaid_arm_assembly{ @@ -20376,19 +16849,25 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"pPY" = ( -/obj/structure/inflatable/popped, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) -"pQt" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"pQf" = ( +/obj/structure/barricade/sandbags/wired{ + dir = 8; + icon_state = "sandbag_0" }, -/area/shiva/interior/colony/medseceng) +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "pQE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/valley_huts) +"pQG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"pRq" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "pRH" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 5; @@ -20400,18 +16879,37 @@ /obj/item/stack/cable_coil/white, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) -"pSD" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"pSl" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/garage) -"pSM" = ( -/obj/structure/barricade/metal, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/clothing/head/fez{ + pixel_y = 6 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"pSm" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"pSS" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"pST" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"pSV" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/exterior/lz2_fortress) "pTp" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe/green{ @@ -20423,56 +16921,30 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"pTC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "floor3" +"pTw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Aurora Medical Clinic Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"pUj" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "pUp" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"pUx" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) -"pUZ" = ( -/obj/structure/barricade/metal{ - health = 230 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) -"pVm" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +"pUV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"pVU" = ( +/obj/structure/bed, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"pVo" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/caves/s_lz2) "pWf" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/cp_lz2) @@ -20496,10 +16968,11 @@ /obj/effect/landmark/good_item, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"pWY" = ( -/obj/structure/girder, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +"pXd" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/garage) "pXU" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -16; @@ -20507,6 +16980,9 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"pYI" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "pZB" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_x = 3 @@ -20517,10 +16993,29 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"pZH" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "pZV" = ( /obj/effect/spider/cocoon, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"qak" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/medseceng) +"qat" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 + }, +/obj/structure/platform_decoration/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) "qaF" = ( /obj/structure/barricade/handrail/wire, /turf/open/floor/shiva, @@ -20541,49 +17036,106 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/medseceng) +"qbs" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"qbE" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/cp_colony_grounds) "qbF" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/exterior/junkyard/cp_bar) +"qch" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"qcz" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/blue/west, +/area/shiva/interior/colony/n_admin) +"qcA" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "qcT" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"qdd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "yellow" +"qdu" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qdT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/botany) +"qec" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "qep" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_colony_grounds) -"qer" = ( -/obj/structure/surface/table, -/obj/item/vehicle_clamp{ - pixel_y = 2 +"qeJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/item/shard{ + icon_state = "large"; + name = "ice shard" }, -/area/shiva/interior/colony/central) -"qeH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"qeN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, -/area/shiva/interior/colony/medseceng) -"qfe" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qeU" = ( +/obj/item/tool/shovel/snow, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + layer = 3.1; + pixel_x = -8; + pixel_y = 23 }, -/area/shiva/interior/colony/n_admin) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) "qfh" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -20593,25 +17145,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"qfq" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/garage) -"qfI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/desertdam/decals/road_stop{ - icon_state = "road_edge_decal5" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) +"qfY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "qgd" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer2, @@ -20623,22 +17160,6 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"qgp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"qgz" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"qgD" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/interior/colony/research_hab) "qhm" = ( /obj/structure/barricade/metal{ dir = 4 @@ -20648,56 +17169,30 @@ }, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"qhJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) -"qid" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"qiu" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"qiT" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "qjY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_s_research) -"qjZ" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"qkr" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"qkf" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/shiva/interior/colony/deck) -"qkt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/bar) +"qky" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/reagent_container/food/snacks/bigbiteburger, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "qkC" = ( /turf/open/shuttle/elevator, /area/shiva/interior/aerodrome) @@ -20721,16 +17216,6 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"qkR" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "qkT" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -20745,40 +17230,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"qlQ" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"qln" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"qmn" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/adv{ + pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/paper{ + pixel_x = -12; + pixel_y = 4 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "qmv" = ( /obj/item/stack/flag/red{ pixel_x = 6 }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"qmA" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"qng" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/filingcabinet/filingcabinet{ - name = "mail bins"; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) "qnu" = ( /obj/structure/machinery/light/double{ dir = 8; @@ -20800,17 +17272,32 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) +"qnA" = ( +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/exterior/junkyard/cp_bar) +"qnD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"qnP" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "qof" = ( /obj/item/stack/cable_coil/blue, /obj/structure/airlock_assembly, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"qow" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/shiva/interior/colony/central) +"qoj" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) +"qom" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "qoU" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer2, @@ -20821,20 +17308,10 @@ /obj/item/storage/firstaid/o2, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"qpq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"qps" = ( -/obj/structure/surface/table, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) +"qpc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) "qpu" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -20842,146 +17319,97 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"qpv" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"qpZ" = ( -/obj/item/frame/table, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"qrq" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"qrz" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"qsN" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/interior/plastic, -/area/shiva/interior/warehouse) +"qri" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/t_scanner, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "qta" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"qud" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"que" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"quO" = ( -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow{ - pixel_y = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/shiva/interior/caves/cp_camp) -"qvr" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"qum" = ( +/turf/open/floor/shiva/green/northwest, +/area/shiva/interior/colony/botany) +"qvn" = ( +/obj/structure/surface/table, +/obj/item/device/encryptionkey, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"qvF" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes/grant, +/obj/item/paper/research_notes/decent{ + pixel_x = 4; + pixel_y = 6 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "qvY" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse) +"qwj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"qwk" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "qwp" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"qxv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"qwt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/item/clothing/head/fez{ - pixel_y = 6 +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"qwB" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_y = 2 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qwO" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"qxn" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"qxo" = ( +/obj/structure/machinery/colony_floodlight{ + pixel_y = 10 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/cp_lz2) "qxQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"qyd" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"qyy" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, +"qyY" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"qyC" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"qyE" = ( -/obj/item/stool, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "qza" = ( /obj/item/device/flashlight/flare, /turf/open/auto_turf/snow/layer2, @@ -20993,24 +17421,28 @@ }, /turf/open/floor/plating, /area/shiva/interior/garage) -"qAL" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"qzB" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) -"qBn" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"qzG" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent5"; - pixel_y = 10 +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"qzI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"qAx" = ( +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "qBM" = ( /obj/structure/platform/strata{ dir = 8 @@ -21018,21 +17450,10 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) -"qBN" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/caves/cp_camp) -"qCa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) +"qCm" = ( +/obj/structure/girder/reinforced, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "qCn" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) @@ -21050,12 +17471,12 @@ }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"qCM" = ( -/obj/structure/barricade/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qCw" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/darkbrown2/northwest, +/area/shiva/interior/valley_huts/disposals) "qDg" = ( /obj/structure/bed/chair{ dir = 8 @@ -21072,104 +17493,116 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) +"qDM" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/shiva/prefabricated/blue, +/area/shiva/interior/colony/research_hab) +"qDN" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "pink" + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "qDT" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/colony/medseceng) -"qEt" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"qDV" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard) +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/shiva/interior/colony/medseceng) "qEB" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"qEC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"qEQ" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/junkyard) "qFx" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"qGq" = ( -/obj/item/frame/bucket_sensor, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +"qGe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) +"qGk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) "qGN" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"qHt" = ( +/obj/effect/decal/warning_stripes{ + pixel_y = 32 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"qHB" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"qIa" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/valley) "qIr" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/warehouse) -"qIu" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 4; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 9; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"qII" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/cp_lz2) -"qJa" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"qIw" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"qIz" = ( +/turf/open/floor/shiva/wredcorners/east, /area/shiva/interior/colony/medseceng) -"qKn" = ( -/obj/structure/bed/chair{ - dir = 4 +"qIS" = ( +/obj/structure/surface/table, +/obj/item/stock_parts/matter_bin/super{ + pixel_x = 4; + pixel_y = 7 }, -/obj/structure/bed/chair{ - dir = 4; - pixel_y = 4 +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -5; + pixel_y = 11 }, -/obj/structure/bed/chair{ - dir = 4; +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"qKm" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ pixel_y = 8 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"qKG" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"qLz" = ( +/obj/structure/surface/table, +/obj/structure/window{ + dir = 1 }, -/area/shiva/interior/caves/cp_camp) -"qKA" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "qLA" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 8 @@ -21192,29 +17625,35 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"qMd" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"qMN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "qMP" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"qMR" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "qNj" = ( /obj/structure/flora/tree/dead/tree_5, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"qNn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/s_admin) -"qNt" = ( -/obj/structure/barricade/metal{ - dir = 1; - health = 210 +"qNu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/computer/station_alert{ + dir = 4 }, -/area/shiva/interior/colony/botany) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "qNB" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -21222,9 +17661,6 @@ }, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"qNE" = ( -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/research_alley) "qNK" = ( /obj/structure/surface/table, /obj/item/reagent_container/glass/beaker/cryopredmix{ @@ -21245,21 +17681,31 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"qOD" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +"qOj" = ( +/obj/item/wrapping_paper, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/deck) +"qOx" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "qOE" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/rad, /obj/item/storage/firstaid/rad, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qOP" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/auto_turf/snow/layer1, +"qOH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/deck) +"qOS" = ( +/obj/structure/inflatable/popped, +/turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) "qOZ" = ( /obj/structure/bed/chair/comfy/beige{ @@ -21267,6 +17713,10 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"qPc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "qPh" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, @@ -21277,38 +17727,10 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qPi" = ( -/obj/structure/closet/toolcloset, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"qPj" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/left_spiders) -"qRb" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "qRl" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"qRo" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "qRJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -21320,30 +17742,31 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"qRV" = ( -/obj/structure/platform/strata, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/valley) "qRX" = ( /obj/structure/tunnel{ id = "hydroponics_tunnel" }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) +"qRY" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) "qSa" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"qSe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) +"qSz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/interior/caves/research_caves) "qSW" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/rebreather{ @@ -21361,133 +17784,116 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"qUe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cherrypie, -/turf/open/floor/shiva{ - dir = 1 +"qSY" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"qTv" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -7; + pixel_y = 9 }, -/area/shiva/interior/colony/n_admin) -"qUw" = ( -/obj/structure/foamed_metal, -/obj/item/ammo_magazine/handful/shotgun/buckshot, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"qTR" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) +"qTV" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"qUi" = ( +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"qUU" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "qVo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"qVq" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) -"qWu" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) +"qVt" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) +"qVR" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "qWL" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/toxin, /obj/item/storage/firstaid/toxin, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"qWS" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"qXk" = ( -/obj/item/clipboard, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"qXm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/n_admin) -"qXC" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 8; - pixel_x = -6; - pixel_y = 13 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +"qXo" = ( +/obj/structure/platform_decoration/shiva/catwalk, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/valley) "qXS" = ( /turf/open/floor/shiva, /area/shiva/interior/bar) -"qYp" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) +"qYr" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) +"qYu" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "qYP" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/s_lz2) -"qZa" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"qZm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"qZN" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 }, -/area/shiva/interior/lz2_habs) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"qZT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "rad" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"raQ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 +"ram" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/junkyard/cp_bar) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"raP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "rbc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_lz2) -"rbo" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"rbq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/caves/research_caves) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_lz2) "rbA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S-corner" @@ -21495,26 +17901,28 @@ /obj/structure/barricade/metal, /turf/open/floor/plating, /area/shiva/exterior/lz1_valley) -"rbM" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"rbW" = ( +/obj/item/restraint/handcuffs, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "rcp" = ( /obj/item/storage/toolbox/mechanical/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) +"rcq" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "rcD" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"rcG" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "rdh" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/interior/caves/s_lz2) @@ -21525,58 +17933,44 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"rdQ" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 - }, -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/research_alley) +"rdq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"rdz" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/weapon/gun/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/obj/item/ammo_magazine/smg/pps43, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rdO" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/interior/colony/central) "rdS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"rey" = ( -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "large" - }, -/obj/item/shard{ - icon_state = "large" - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - name = "Security Desk" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"reV" = ( +"reG" = ( /obj/structure/surface/table, /obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) -"rfc" = ( +"reH" = ( /obj/structure/surface/table, -/obj/item/storage/toolbox/emergency, -/obj/item/circuitboard/firealarm, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 +/obj/item/storage/pill_bottle/kelotane/skillless{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"reU" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "rfd" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/wood, @@ -21585,71 +17979,111 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"rfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) +"rfq" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"rfr" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"rfO" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "rfU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"rgu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) +"rgf" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "rgy" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rgz" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"rgA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "rgI" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/fire, /obj/item/storage/firstaid/fire, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"rhS" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 +"rgW" = ( +/obj/structure/machinery/landinglight/ds2/spoke, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"rhv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"ril" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"riu" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) +"riL" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/shiva/interior/colony/research_hab) +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "riV" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"rjw" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"rjQ" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ +"riX" = ( +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) +"rjd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "yellow" + pixel_x = -24 }, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"rjx" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/botany) +"rjF" = ( +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) "rkc" = ( /obj/structure/surface/table/reinforced/prison, @@ -21659,44 +18093,67 @@ /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/garage) -"rkS" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13; - pixel_y = 25 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icefloor{ - dir = 9; - icon_state = "warnplate" +"rkn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/shiva/exterior/junkyard/fortbiceps) +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"rkw" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"rkz" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"rkB" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/exterior/cp_colony_grounds) "rli" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"rnz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "wood" +"rlo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"rlO" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"rlV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"rnA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "rnB" = ( /obj/structure/platform_decoration/shiva/catwalk{ dir = 8 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"rnO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S-corner" +"rnF" = ( +/obj/item/shard{ + icon_state = "medium" }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"rnV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W-corner" + icon_state = "N-corner" }, -/turf/open/floor/plating, -/area/shiva/exterior/lz1_valley) +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"rof" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rov" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -21705,31 +18162,39 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"rpv" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"roz" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, -/area/shiva/interior/colony/s_admin) -"rpE" = ( -/obj/structure/ice/thin/single{ - opacity = 1; - unacidable = 0 +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"roB" = ( +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"roG" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"rpp" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) -"rpL" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rrq" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"rsR" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "rti" = ( /obj/structure/surface/table, /obj/item/tool/pen/blue{ @@ -21742,131 +18207,104 @@ }, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"rtv" = ( -/obj/structure/surface/table, -/obj/item/storage/box/trackimp, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "rtZ" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"rwy" = ( -/obj/structure/inflatable/popped, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/research_alley) -"rwQ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"rur" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_y = 6 }, -/area/shiva/interior/colony/botany) -"rxd" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"rvx" = ( /obj/structure/bed/chair, -/turf/open/floor/interior/plastic/alt, -/area/shiva/interior/warehouse) -"rxf" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"rvO" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"rvP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"rwj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + health = 300; + icon = 'icons/turf/elevator.dmi'; + icon_state = "wall_broke" }, +/turf/open/floor/corsat/squares, /area/shiva/interior/aerodrome) +"rwE" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"rxd" = ( +/obj/structure/bed/chair, +/turf/open/floor/interior/plastic/alt, +/area/shiva/interior/warehouse) +"rxr" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "rxF" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "pink" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/valley) -"rym" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"ryI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ryZ" = ( -/obj/structure/surface/table, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) -"rzz" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"rzI" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"rxM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/greenfull/west, +/area/shiva/interior/colony/n_admin) +"rya" = ( +/obj/structure/flora/tree/dead/tree_1, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"rzw" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) -"rzR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/spaceacillin{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/storage/belt/utility/full{ - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"rAm" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor{ - dir = 5; - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) "rAq" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) -"rAF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/deck) "rAH" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_s_research) +"rAM" = ( +/obj/item/tool/shovel/snow{ + pixel_y = 8 + }, +/obj/item/tool/shovel/snow, +/obj/structure/surface/rack, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"rAT" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) "rBk" = ( /obj/structure/platform/strata{ dir = 1 @@ -21876,20 +18314,6 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"rBr" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) -"rBy" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) "rBC" = ( /obj/effect/spawner/random/toolbox, /obj/effect/decal/cleanable/dirt, @@ -21898,26 +18322,63 @@ "rBH" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/botany) +"rCp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rCq" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"rCH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "rCO" = ( /obj/item/tool/wirecutters, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/central) -"rDn" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" +"rCW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_x = 7; + pixel_y = 14 }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"rCY" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) +"rDi" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "rEd" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) +"rEf" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "rEQ" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"rER" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "rEV" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) @@ -21927,83 +18388,148 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rFp" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 +"rFa" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/area/shiva/exterior/cp_colony_grounds) -"rFA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"rFd" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"rFk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/shiva/interior/colony/medseceng) +"rFv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/botany) "rFB" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"rGg" = ( -/turf/open/floor/shiva{ - dir = 1 +"rGf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"rGi" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"rGM" = ( +/obj/item/roller, +/turf/open/floor/shiva/wred/southeast, +/area/shiva/interior/colony/medseceng) +"rGU" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"rGV" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 4; + pixel_y = 5 + }, +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"rHz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) +"rHL" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) "rHO" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) -"rHQ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/shiva{ - dir = 1 +"rId" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"rIw" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 4 }, -/area/shiva/interior/garage) -"rIj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"rJx" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) "rJI" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"rKa" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "rKk" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard/fortbiceps) -"rKo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - name = "\improper Panic Room Shutters" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"rKn" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/s_admin) -"rKW" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/green/northeast, +/area/shiva/interior/colony/botany) +"rKu" = ( +/obj/item/tool/wrench, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"rLn" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "rLu" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"rLD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 +"rLM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "rMb" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -22015,27 +18541,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/valley) -"rMc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, +"rMk" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellow/west, /area/shiva/interior/colony/medseceng) -"rMe" = ( -/obj/structure/surface/table, -/obj/item/handcuffs, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"rMI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) +"rMt" = ( +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) "rNO" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer2, @@ -22050,87 +18562,90 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"rOv" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"rOi" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) "rOG" = ( /obj/structure/machinery/door/airlock/almayer/medical/colony{ name = "\improper Aurora Medical Clinic Scanning Unit" }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"rRb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 +"rOT" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 }, -/obj/structure/machinery/light/double{ +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"rQb" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/shiva/exterior/junkyard/fortbiceps) +"rQD" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating/plating_catwalk/shiva, +/area/shiva/exterior/junkyard) +"rQY" = ( +/obj/structure/stairs/perspective{ dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"rRp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"rRO" = ( -/obj/structure/machinery/light/double, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"rRP" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/shiva/interior/colony/research_hab) -"rSr" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" + icon_state = "p_stair_sn_full_cap" }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"rRI" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/lz2_habs) -"rSL" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"rTk" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, +"rRP" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/shiva/interior/colony/research_hab) +"rRY" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"rTG" = ( -/obj/item/stack/sheet/wood, +"rSF" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"rTa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"rTj" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/floor/wood, +/area/shiva/interior/aerodrome) +"rTN" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"rUc" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = -13; + pixel_y = 28 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"rUy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "rUD" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ desc = "Shhhh, he's sleeping."; @@ -22143,38 +18658,73 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"rUN" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"rUY" = ( +/obj/structure/platform/strata{ + dir = 1 }, -/area/shiva/interior/lz2_habs) -"rVK" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/platform/strata{ + dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"rVb" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/item/circuitboard/apc, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"rVh" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/area/shiva/interior/colony/s_admin) -"rVM" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) +"rVy" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -13; + pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"rWe" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/shiva/exterior/junkyard/fortbiceps) +/obj/item/clothing/mask/rebreather, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"rWf" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "rWj" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_northeast) +"rWm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "rWt" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -22187,44 +18737,50 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"rWS" = ( -/obj/item/ammo_magazine/rifle/ap, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"rWU" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/botany) +"rXg" = ( +/obj/item/shard{ + icon_state = "large" }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "rXn" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/shiva/interior/aerodrome) -"rXp" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) "rXt" = ( /obj/structure/cable/heavyduty{ icon_state = "0-8" }, /turf/open/floor/plating/icefloor, /area/shiva/exterior/junkyard/fortbiceps) +"rXy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "rXC" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"rZj" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) +"rYk" = ( +/turf/open/floor/shiva/purplefull/west, +/area/shiva/exterior/lz2_fortress) +"rYV" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/botany) +"rYY" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "rZq" = ( /obj/structure/surface/table/reinforced/prison{ dir = 4; @@ -22236,56 +18792,20 @@ "rZt" = ( /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"rZD" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"rZH" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "rZP" = ( /obj/structure/machinery/optable, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"rZV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/landmark/corpsespawner/scientist, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"san" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) +"rZQ" = ( +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) "sax" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/warehouse/caves) -"sbd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"sbg" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) "sbj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, @@ -22294,42 +18814,53 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"scN" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/infra, -/obj/item/device/assembly/voice, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"sbI" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"sdF" = ( +"sbM" = ( /obj/structure/surface/table, -/obj/item/tool/kitchen/knife{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/goldapple{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"sdG" = ( -/obj/structure/machinery/message_server, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/storage/box/bodybags, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/central) -"sef" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"sbW" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_access_txt = "102" }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"scl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"scM" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"scT" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) +"sdo" = ( +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"sdI" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "sev" = ( /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer1, @@ -22365,6 +18896,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/colony/research_hab) +"sgI" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "sgS" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating, @@ -22379,26 +18918,19 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"shO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"sii" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"sip" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 2 }, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) -"shP" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) "siD" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -22410,19 +18942,52 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"siJ" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/cp_camp) "siZ" = ( /turf/closed/wall/shiva/prefabricated/orange, /area/shiva/exterior/cp_s_research) +"sje" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) "sjh" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sjo" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +"sjt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"sjz" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins"; + pixel_y = 14 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) +"sjZ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/item/tool/pen/blue{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"skb" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "skl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/snow/layer0, @@ -22440,108 +19005,96 @@ /obj/structure/prop/invuln/ice_prefab/roof_greeble, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"skG" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 1 +"skE" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"skI" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"skK" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 8; - pixel_x = -6; - pixel_y = 13 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) -"slj" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"slC" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/caves/s_lz2) +"sld" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) "slO" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz1_valley) +"slP" = ( +/obj/item/trash/raisins, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "slU" = ( /obj/item/lightstick/red/spoke, /turf/open/floor/shiva, /area/shiva/interior/bar) -"smy" = ( +"smg" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"sml" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 2.99; + pixel_x = 12; + pixel_y = 28 }, -/area/shiva/interior/garage) -"smI" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/closed/wall/shiva/ice, +/area/shiva/interior/caves/cp_camp) +"sng" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) +"snw" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "snN" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"snX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"snZ" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/shiva/exterior/valley) +"snR" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) "sod" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"soj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"soE" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) +"sof" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) "spo" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"sqb" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"sqy" = ( -/obj/item/wrapping_paper, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" +"spN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 4; + pixel_y = 5 }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"srb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"srJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" + }, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) "ssf" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) @@ -22551,11 +19104,6 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"stN" = ( -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) "stT" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" @@ -22572,73 +19120,50 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"sud" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"suu" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/n_admin) "suD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/medseceng_caves) -"swn" = ( -/obj/structure/largecrate/random, +"suM" = ( /turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) -"swF" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"swV" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" +/area/shiva/interior/aerodrome) +"swf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"swH" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "swW" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"sxb" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"sxp" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"sxD" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"sxs" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/clothing/head/cakehat, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "sxT" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"sym" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"sxY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/area/shiva/interior/colony/research_hab) +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "syA" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/ice/layer1, @@ -22647,88 +19172,54 @@ /obj/structure/janitorialcart, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"syK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe/green{ - pixel_y = 4 - }, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/cp_colony_grounds) -"syV" = ( -/obj/structure/surface/table/reinforced, -/obj/item/stack/medical/bruise_pack, -/obj/item/cell, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/shiva{ - dir = 1 +"szv" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/shiva/wred/southwest, /area/shiva/interior/colony/medseceng) -"szU" = ( -/obj/structure/prop/ice_colony/flamingo/festive{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"sAe" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"szL" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"sAA" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/black, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "sAM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"sBh" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"sBl" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"sBz" = ( +/obj/structure/surface/table/woodentable{ + flipped = 1 }, -/area/shiva/interior/colony/medseceng) +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "sBH" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"sBN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "sBT" = ( /obj/structure/flora/bush/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"sBW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"sCc" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/n_admin) "sCi" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -22739,27 +19230,20 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/central) -"sCl" = ( -/obj/structure/surface/table, -/obj/item/clipboard{ - pixel_y = 5 - }, -/obj/item/paper{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/tool/pen/red{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/paper{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"sCV" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"sDW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"sEF" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/central) "sFj" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, @@ -22775,117 +19259,48 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"sFR" = ( -/obj/structure/closet, -/obj/item/newspaper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"sGs" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"sGI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/clothing/head/cakehat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"sGR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating/icefloor{ - dir = 10; - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) -"sHc" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"sHf" = ( -/obj/item/paper/research_notes/grant, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"sHL" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"sII" = ( -/obj/structure/closet/coffin, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"sIP" = ( +"sGo" = ( /obj/item/shard{ icon_state = "large" }, -/turf/open/auto_turf/snow/layer0, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"sGH" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"sHQ" = ( +/obj/structure/flora/tree/dead/tree_4, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"sIj" = ( +/obj/effect/spider/stickyweb, +/turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) +"sIx" = ( +/turf/open/floor/shiva/yellowcorners, +/area/shiva/interior/colony/research_hab) "sIX" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) +"sJk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) "sJo" = ( /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"sJs" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "sJD" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"sJP" = ( -/obj/structure/machinery/light/double, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"sKa" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) "sKf" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 1 @@ -22895,15 +19310,6 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"sKH" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12 - }, -/turf/open/floor/plating/icefloor{ - dir = 6; - icon_state = "warnplate" - }, -/area/shiva/exterior/junkyard/fortbiceps) "sKO" = ( /obj/item/reagent_container/food/drinks/cans/ale{ pixel_x = -7; @@ -22914,6 +19320,10 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/s_admin) +"sLh" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "sLj" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer0, @@ -22924,45 +19334,46 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"sLV" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/shiva{ - icon_state = "green" +"sMd" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/interior/plastic, +/area/shiva/interior/warehouse) +"sMS" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 4 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "sNi" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/shiva/interior/colony/deck) +"sNs" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "sNX" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"sNZ" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"sOg" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, +"sOn" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/shiva/interior/colony/deck) +"sOt" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) -"sPn" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox{ - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +"sOP" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "sPo" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -22970,47 +19381,76 @@ /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"sPA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) "sPM" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"sQt" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor{ - icon_state = "wood" - }, -/area/shiva/interior/colony/central) -"sQU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ +"sQh" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) +"sQP" = ( +/obj/structure/stairs/perspective/ice{ dir = 8; - icon_state = "redfull" + icon_state = "p_stair_sn_full_cap" }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/warehouse/caves) +"sRp" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/cargo_container/horizontal/blue/top{ + density = 0; + pixel_y = 12 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"sRs" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) +"sRP" = ( +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/central) "sRV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" }, /turf/open/floor/wood, /area/shiva/interior/bar) +"sSs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) "sTd" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) +"sTR" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) +"sUw" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"sUB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/spaceacillin{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/storage/belt/utility/full{ + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "sUD" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, @@ -23018,6 +19458,22 @@ "sUE" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) +"sVe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) +"sVo" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"sVq" = ( +/obj/structure/surface/rack, +/obj/item/cell, +/obj/item/cell, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/medseceng) "sVJ" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -23025,50 +19481,21 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"sVV" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"sWt" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) -"sXr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" +"sXe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/shiva/interior/colony/deck) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "sXt" = ( /obj/structure/machinery/light/double, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"sXF" = ( -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"sXP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +"sXB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "sXZ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -23086,6 +19513,17 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"sYf" = ( +/obj/structure/stairs/perspective/ice{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/ice/layer2, +/area/shiva/interior/warehouse/caves) +"sYg" = ( +/obj/item/paper/research_notes/grant, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "sYh" = ( /obj/item/tool/wet_sign, /turf/open/floor/shiva, @@ -23100,14 +19538,6 @@ /obj/item/clothing/shoes/snow, /turf/open/floor/interior/plastic/alt, /area/shiva/interior/warehouse) -"sZx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) "tad" = ( /obj/structure/platform/strata{ dir = 1 @@ -23120,13 +19550,18 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) -"taq" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" +"taB" = ( +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/telecomm/lz1_biceps) +"taZ" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/area/shiva/interior/bar) +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) "tbR" = ( /obj/structure/surface/table, /obj/item/folder/red, @@ -23139,20 +19574,17 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/lz1_valley) -"tcG" = ( -/obj/item/weapon/gun/pistol/highpower, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"tcI" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" +"tcv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/shiva/interior/colony/medseceng) +/obj/item/ammo_magazine/rifle/m41aMK1, +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"tcM" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "tcR" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/snow/layer2, @@ -23164,14 +19596,6 @@ }, /turf/open/floor/interior/plastic, /area/shiva/interior/warehouse) -"tds" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) "tdG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -23189,13 +19613,18 @@ /obj/item/tool/stamp, /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"tef" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) +"tdY" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"tea" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"ter" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tes" = ( /obj/structure/platform/strata, /obj/structure/barricade/handrail/wire{ @@ -23217,85 +19646,97 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/fortbiceps) -"teD" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, +"teS" = ( +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) +"teW" = ( +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) "tfd" = ( /turf/open/floor/wood, /area/shiva/interior/colony/central) +"tfx" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Colony Storeroom" + }, +/turf/open/floor/dark2, +/area/shiva/interior/telecomm/lz1_biceps) "tfQ" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated, /obj/item/tool/shovel/spade, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/botany) -"thc" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"thB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, +"tfZ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"thL" = ( +/obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"thK" = ( -/obj/structure/platform/strata{ - dir = 8 +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"tiL" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) -"tig" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"tiN" = ( +/obj/structure/platform/strata, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"tiw" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/research_hab) +/area/shiva/exterior/cp_s_research) "tiO" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard) -"tkb" = ( -/obj/structure/surface/table, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"tjk" = ( +/obj/structure/filingcabinet/filingcabinet{ + name = "mail bins" }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"tjA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"tjF" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) +"tjM" = ( +/obj/structure/bed/roller, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "tkm" = ( /obj/structure/largecrate/random/case, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tkB" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 +"tkz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/gm/river, -/area/shiva/interior/caves/left_spiders) +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"tkO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cherrypie, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "tle" = ( /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/snow/layer2, @@ -23309,35 +19750,48 @@ }, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) +"tlw" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_lz2) "tlB" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"tlX" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"tlD" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) +"tlF" = ( +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/aerodrome) +"tlI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"tlS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "tmh" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tmi" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"tmI" = ( -/obj/structure/machinery/firealarm{ +"tmv" = ( +/obj/structure/machinery/light/double{ dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "red" + pixel_y = 9 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/research_hab) "tmV" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/arrivals, /turf/open/shuttle/elevator/grating, @@ -23346,53 +19800,32 @@ /obj/item/stack/cable_coil/cut, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/junkyard) -"tnh" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/n_admin) "tnu" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/bar) -"tnz" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) +"tnA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "tnG" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"tnM" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -3; - pixel_y = 8 +"tnW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal5"; + pixel_x = -14 }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"tov" = ( +/obj/structure/barricade/metal, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/botany) -"tnU" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/cp_lz2) -"toA" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "toD" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) @@ -23402,65 +19835,73 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"toN" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"tpg" = ( -/turf/open/floor/plating/plating_catwalk/shiva, -/area/shiva/exterior/lz1_valley) -"tpL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +"tpG" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"tqs" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"tqL" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"tpH" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"tpK" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/interior/colony/n_admin) +"tqw" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/s_admin) +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"tqG" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight/flare, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southeast, +/area/shiva/interior/valley_huts/disposals) "trj" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"trw" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 4 +"trH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"trS" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 }, -/turf/open/gm/river, -/area/shiva/interior/caves/left_spiders) +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"trV" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "trX" = ( /obj/structure/machinery/conveyor, /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) +"trZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "tsI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = -14; @@ -23472,34 +19913,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) -"tsR" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 3; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"tsP" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) "tsU" = ( /obj/structure/machinery/light/double, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"tsZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"tue" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/shiva/interior/caves/left_spiders) +"ttO" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "tuz" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -23518,70 +19943,63 @@ /obj/structure/flora/tree/dead/tree_2, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/cp_bar) -"tvo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 +"tvs" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 1; + pixel_y = 5 }, -/area/shiva/interior/colony/medseceng) -"twc" = ( -/obj/item/paper/research_notes/decent, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; + pixel_y = -5 }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"tvz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) +"tvJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"tvX" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/n_admin) "twi" = ( /obj/structure/girder, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/colony/research_hab) -"twt" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"twJ" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/shiva/interior/colony/deck) +"txj" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/grown/goldapple{ + pixel_y = 4 }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) -"twD" = ( -/obj/structure/machinery/iv_drip, +"txs" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"twG" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"txH" = ( +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"txA" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"txS" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/lz2_habs) -"txU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"txX" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) "tyi" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -23595,54 +20013,50 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"tyL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "tze" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"tzo" = ( -/turf/open/shuttle/elevator/grating, -/area/shiva/interior/aerodrome) -"tzu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/lz2_habs) -"tzH" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/deck) +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"tzo" = ( +/turf/open/shuttle/elevator/grating, +/area/shiva/interior/aerodrome) +"tzz" = ( +/turf/open/floor/shiva/greenfull, +/area/shiva/interior/colony/botany) "tAc" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ icon_state = "lavendergrass_4" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"tAi" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/n_admin) +"tAL" = ( +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) "tBB" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) -"tCi" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 1 +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "tDg" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -23665,19 +20079,45 @@ /obj/item/lightstick/red/spoke/planted, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"tEa" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 15; + pixel_y = -3 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -16; + pixel_y = -3 + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) +"tEh" = ( +/obj/structure/surface/table, +/obj/item/frame/firstaid_arm_assembly{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "tEl" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating, /area/shiva/interior/colony/s_admin) -"tEr" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 1; - icon_state = "sandbag_0" +"tEu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -7 }, -/area/shiva/exterior/lz2_fortress) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tEE" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer1, @@ -23696,6 +20136,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/botany) +"tFu" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "tFw" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -23719,48 +20171,42 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/interior/caves/cp_camp) +"tGu" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/exterior/cp_colony_grounds) "tGv" = ( /turf/closed/shuttle/elevator{ dir = 4 }, /area/shiva/interior/aerodrome) -"tGS" = ( -/obj/structure/machinery/landinglight/ds2/spoke, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) -"tGU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Colony Dormitories Canteen"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1 - }, +"tGF" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_s_research) +"tHa" = ( +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) "tHd" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"tHD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tHx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) "tHJ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"tIR" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/shiva/interior/colony/botany) +"tIJ" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/garage) "tJe" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -23772,49 +20218,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"tJn" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/botany) -"tJP" = ( -/obj/structure/surface/rack, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) +"tJh" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) "tJS" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"tJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"tKd" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) "tKg" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/colony/central) -"tKk" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/shiva/interior/colony/botany) +"tKh" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "tKv" = ( /obj/structure/largecrate/random/mini/wooden{ pixel_x = -16; @@ -23828,11 +20251,11 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/telecomm/lz2_southeast) -"tLz" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, +"tLM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) "tLP" = ( /obj/structure/platform/shiva/catwalk{ @@ -23849,6 +20272,30 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) +"tMs" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/auto_turf/snow/layer0, +/area/shiva/interior/warehouse/caves) +"tMC" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/research_hab) +"tME" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"tMG" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/blue/east, +/area/shiva/interior/colony/n_admin) +"tMQ" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "tMR" = ( /obj/structure/ice/thin/single{ opacity = 1; @@ -23856,50 +20303,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) -"tMS" = ( -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"tMY" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/cp_lz2) -"tNm" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"tNN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/t_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"tNP" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) +"tNz" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "tOo" = ( /obj/effect/spider/stickyweb, /turf/open/auto_turf/ice/layer2, @@ -23914,71 +20321,48 @@ }, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"tOG" = ( -/obj/item/tool/wirecutters{ - pixel_x = -1; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) +"tPr" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "tPs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"tPz" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" +"tPw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/shiva/interior/valley_huts/no2) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "tPJ" = ( /obj/structure/platform/shiva/catwalk, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) +"tPK" = ( +/obj/structure/machinery/processor, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "tQn" = ( /obj/structure/barricade/handrail/wire, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"tQG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Colony Storeroom" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/shiva/interior/telecomm/lz1_biceps) -"tQK" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"tQN" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/lz2_habs) -"tQR" = ( -/obj/structure/bed/chair{ +"tRg" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/obj/structure/machinery/power/apc{ - dir = 8; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/botany) -"tRn" = ( -/obj/item/lightstick/red/variant/planted, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) +"tRj" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "tRN" = ( /obj/structure/largecrate/random{ anchored = 1; @@ -23991,40 +20375,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"tRT" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"tSt" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) -"tSI" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"tTc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) "tTd" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -24038,14 +20388,20 @@ "tTi" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"tTW" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "White" - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"tTm" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"tTx" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"tTU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Colony Disposals" }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/dark2, +/area/shiva/interior/valley_huts/disposals) "tUe" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -24058,74 +20414,62 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) +"tUq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/labcoat/researcher, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"tUF" = ( +/turf/closed/wall/shiva/prefabricated/white, +/area/shiva/interior/aux_power) +"tUL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "tUN" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz2-southwest" }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) +"tVw" = ( +/obj/structure/surface/table, +/obj/item/storage/bag/plants, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"tVA" = ( +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) +"tVB" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) "tVZ" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"tWn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"tWv" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/shiva/interior/colony/medseceng) "tWz" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/bar) -"tWE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"tXd" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/garage) "tXe" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_colony_grounds) +"tXh" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/snow/layer1, +/area/shiva/interior/caves/cp_camp) "tXL" = ( /obj/item/stack/cable_coil/green, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"tYa" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) -"tYm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "tYw" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/junkyard) @@ -24143,36 +20487,18 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"tZs" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) -"tZA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tZe" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 }, -/area/shiva/interior/colony/research_hab) -"tZM" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/n_admin) "tZW" = ( /obj/structure/surface/rack, /obj/item/device/radio/headset{ @@ -24191,6 +20517,25 @@ /obj/item/stack/cable_coil/cyan, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"uai" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/storage/box/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"uar" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"uaP" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "ubv" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -24201,17 +20546,20 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"ubG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "nlz_shutters"; - name = "\improper Bio-lab Shutters" +"ubZ" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"ucg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/purplefull/east, +/area/shiva/interior/colony/research_hab) "ucn" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -24224,6 +20572,40 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) +"ucB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) +"ucD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ + pixel_y = 26 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"ucF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"ucP" = ( +/obj/item/clipboard, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"udt" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "udD" = ( /obj/structure/prop/dam/truck{ dir = 4; @@ -24231,66 +20613,27 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard) -"udJ" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"uee" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"ueu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"ueG" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9 - }, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) "ueX" = ( /obj/item/ammo_magazine/rifle/boltaction, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"ufb" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"ufd" = ( -/obj/structure/surface/table, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +"ufn" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"ufw" = ( +/obj/item/evidencebag, +/obj/item/trash/pistachios, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "ufA" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -24321,73 +20664,27 @@ /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"ugD" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva, -/area/shiva/interior/aerodrome) -"ugP" = ( -/obj/structure/computerframe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/research_hab) -"uhe" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/cp_lz2) -"uhL" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"ugp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/ice_crystal{ + dir = 10 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) +"ugu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/s_admin) -"uhO" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"uhV" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, +"ugy" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/cp_lz2) +"uhK" = ( /obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"uig" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"uil" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/turf/closed/wall/shiva/ice, -/area/shiva/exterior/research_alley) -"uim" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + pixel_y = 24 }, +/turf/open/floor/shiva/yellow/north, /area/shiva/interior/colony/research_hab) "uiI" = ( /obj/item/reagent_container/food/drinks/cans/beer, @@ -24397,69 +20694,32 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/aerodrome) "ujl" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock" - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) -"ujm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"ujJ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"ujV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"ukp" = ( -/turf/open/auto_turf/ice/layer1, -/area/shiva/exterior/cp_s_research) -"ukv" = ( -/obj/structure/surface/table, -/obj/item/tool/wrench, -/obj/item/tool/screwdriver, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"ukU" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock" }, -/area/shiva/interior/lz2_habs) -"ulm" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) +"ujW" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"ukp" = ( +/turf/open/auto_turf/ice/layer1, +/area/shiva/exterior/cp_s_research) +"ult" = ( +/obj/structure/closet/emcloset, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"ulA" = ( +/obj/structure/prop/ice_colony/ground_wire{ + layer = 2.98 }, -/area/shiva/interior/garage) +/turf/open/floor/shiva/purple, +/area/shiva/interior/lz2_habs) "ulD" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" @@ -24467,6 +20727,12 @@ /obj/structure/platform/shiva/catwalk, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/junkyard/fortbiceps) +"ulL" = ( +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"ulN" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/caves/s_lz2) "ulZ" = ( /obj/structure/platform/shiva/catwalk, /obj/structure/cable/heavyduty{ @@ -24474,40 +20740,33 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/junkyard/fortbiceps) -"umj" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +"umh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shiva/exterior/lz2_fortress) -"umm" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"umu" = ( +/obj/item/paper/janitor{ + pixel_y = 8 }, -/area/shiva/interior/colony/medseceng) +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "umB" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/telecomm/lz2_northeast) -"umC" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ +"uof" = ( +/obj/structure/prop/ice_colony/flamingo/festive{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"uot" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"uop" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "uoI" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -24519,12 +20778,25 @@ }, /turf/closed/wall/shiva/prefabricated/white, /area/shiva/exterior/cp_lz2) -"uoZ" = ( -/obj/effect/spider/stickyweb{ - icon_state = "stickyweb2" +"uoL" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"upc" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) "upf" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/snow/layer1, @@ -24539,35 +20811,55 @@ /obj/structure/largecrate/random/mini/chest/b, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"upp" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"upN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"upR" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_s_research) +"upW" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "uqb" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uqS" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ +"uqT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"uqV" = ( +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "redfull" + pixel_y = -5 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "urX" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"ush" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"usK" = ( +/obj/structure/machinery/power/apc/power/east{ + start_charge = 10 }, -/area/shiva/interior/garage) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "usZ" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -24581,73 +20873,64 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"uuv" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +"ute" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow, /area/shiva/interior/colony/research_hab) +"utx" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/deck) "uuN" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"uuZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +"uvc" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "uvU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"uwv" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibhead" +"uwn" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/lz2_habs) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/central) "uwz" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "pink_trim" }, /turf/closed/wall/shiva/ice, /area/shiva/interior/caves/s_lz2) -"uwS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"uxH" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"uxO" = ( -/obj/structure/bed, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +"uxd" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"uxV" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"uxQ" = ( +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"uyd" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "pink_trim" }, -/area/shiva/interior/colony/botany) +/obj/structure/prop/invuln/ice_prefab/roof_greeble, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "uyI" = ( /obj/structure/largecrate/random/mini/small_case/c{ pixel_x = 11; @@ -24655,13 +20938,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"uyJ" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) +"uyK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz1_console/two) "uzf" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/ice/layer0, @@ -24673,29 +20954,16 @@ /obj/structure/barricade/metal/wired, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) -"uzP" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/shiva/interior/colony/n_admin) -"uzU" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) "uAd" = ( /obj/structure/lz_sign/ice_sign{ layer = 3.1 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uAq" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) +"uAx" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/auto_turf/snow/layer2, +/area/shiva/interior/caves/cp_camp) "uAM" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -24704,12 +20972,15 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_colony_grounds) -"uBz" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"uBL" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) +"uBS" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/aux_power) "uCp" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -24720,39 +20991,36 @@ /obj/structure/flora/tree/dead/tree_6, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"uCO" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/exterior/cp_lz2) -"uDb" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"uDZ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-east" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) +"uEd" = ( +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) "uEo" = ( /obj/structure/platform/strata, /obj/item/lightstick/variant/planted, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/cp_lz2) -"uEx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uEv" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9; + pixel_y = 21 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"uEU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts) +"uEV" = ( +/obj/structure/stairs/perspective/ice{ + icon_state = "p_stair_full" }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/ice/layer0, +/area/shiva/interior/warehouse/caves) +"uFg" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "uFl" = ( /obj/structure/barricade/snow{ dir = 1 @@ -24766,51 +21034,45 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"uFr" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"uFA" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) +"uGg" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) "uGq" = ( /turf/open/floor/plating, /area/shiva/interior/colony/n_admin) -"uHa" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"uHA" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"uHH" = ( +"uHc" = ( +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) +"uHh" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"uHo" = ( /obj/structure/machinery/light/double{ dir = 1; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/colony/n_admin) +"uHr" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassbb_1" }, -/area/shiva/interior/colony/central) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"uIb" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/medseceng) +"uId" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "uIC" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -24823,32 +21085,13 @@ /obj/item/stack/sheet/plasteel/medium_stack, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"uII" = ( +"uIJ" = ( /obj/structure/surface/table, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"uJg" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/effect/spawner/random/toolbox{ + pixel_y = 2 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "uJj" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_3"; @@ -24856,13 +21099,13 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"uJk" = ( -/obj/item/weapon/broken_bottle, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/botany) +"uJu" = ( +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"uJv" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/aux_power) "uJL" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13; @@ -24870,53 +21113,24 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"uKo" = ( -/obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/tool/lighter/zippo{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"uKB" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/caves/s_lz2) -"uKN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"uKV" = ( +"uKb" = ( /obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/item/tool/pen/blue{ - pixel_x = 5; - pixel_y = -5 +/obj/item/tool/stamp, +/turf/open/floor/shiva/wred/southwest, +/area/shiva/interior/colony/medseceng) +"uKd" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"uKh" = ( +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "wred" + pixel_y = 9 }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) "uKZ" = ( /turf/closed/wall/shiva/prefabricated, @@ -24935,36 +21149,17 @@ }, /turf/open/gm/river/no_overlay, /area/shiva/interior/caves/cp_camp) -"uLn" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"uLq" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/shiva/interior/lz2_habs) -"uLu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"uLi" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"uLS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "uLT" = ( /obj/structure/machinery/conveyor, /turf/open/asphalt/cement, @@ -24975,16 +21170,18 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"uMJ" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/shiva/interior/aerodrome) +"uMf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"uMp" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/shiva/interior/colony/deck) +"uMw" = ( +/obj/item/frame/bucket_sensor, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "uNe" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Colony Engineering Locker Room" @@ -24992,30 +21189,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uOc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"uNt" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 }, -/area/shiva/interior/colony/research_hab) -"uOR" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"uOq" = ( +/obj/structure/prop/ice_colony/dense/ice_tray{ + pixel_y = 5 }, -/area/shiva/interior/colony/research_hab) -"uPo" = ( -/obj/structure/machinery/light/double{ - dir = 8; +/obj/structure/prop/ice_colony/dense/ice_tray{ + dir = 5; pixel_y = -5 }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/research_hab) +"uOr" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "uPv" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -25030,6 +21224,19 @@ }, /turf/open/floor/wood, /area/shiva/interior/bar) +"uPQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"uQq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating, +/area/shiva/exterior/valley) "uQy" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -25046,107 +21253,78 @@ }, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"uRi" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) -"uRn" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"uRt" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"uRK" = ( -/obj/structure/surface/table, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"uRp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +/obj/item/reagent_container/food/snacks/hotchili{ + pixel_y = 14 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"uRV" = ( +/turf/open/floor/shiva/bluecorners/west, +/area/shiva/interior/colony/central) "uSd" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"uSe" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) +"uSz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "uSF" = ( /mob/living/simple_animal/hostile/giant_spider/nurse, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/right_spiders) +"uTm" = ( +/obj/item/stack/snow{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/stack/snow, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"uTs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) "uTu" = ( /obj/structure/flora/tree/dead/tree_4, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/junkyard/cp_bar) -"uTB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"uTE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Underground Morgue" }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "uTL" = ( /obj/item/tool/pickaxe/diamond{ desc = "So we back in the mine, swinging pickaxe from side to side, side side, to side." }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"uTM" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/obj/effect/landmark/nightmare{ - insert_tag = "lz2-southeast-gate" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"uTN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"uVa" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/medseceng) -"uVK" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/shiva{ - icon_state = "floor3" +"uUr" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_left_to_right, +/area/shiva/interior/aerodrome) +"uVr" = ( +/obj/structure/surface/table, +/obj/item/clipboard{ + pixel_x = -2; + pixel_y = 5 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"uVM" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "uWi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -25157,43 +21335,24 @@ /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"uWA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) -"uXQ" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"uXS" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/area/shiva/interior/colony/medseceng) -"uYa" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "greencorners" +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, +/turf/open/floor/shiva/green/north, /area/shiva/interior/colony/botany) +"uYd" = ( +/turf/open/floor/plating, +/area/shiva/exterior/valley) "uYg" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ name = "\improper Underground Security Checkpoint" }, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uYl" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"uYt" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) "uYC" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/telecomm/lz1_biceps) @@ -25204,31 +21363,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"uZf" = ( -/turf/open/floor/shiva{ - icon_state = "wredcorners" - }, -/area/shiva/interior/colony/medseceng) -"uZl" = ( -/turf/open/floor/shiva{ - icon_state = "greenfull" - }, -/area/shiva/interior/colony/botany) -"uZF" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"uZJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "uZU" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -25239,55 +21373,30 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/colony/medseceng) -"vaT" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/auto_turf/snow/layer1, -/area/shiva/interior/caves/cp_camp) -"vbb" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/tool/pen/blue{ - pixel_x = 5 +"vaB" = ( +/obj/structure/machinery/door_control/brbutton/alt{ + id = "hangar_ice_3"; + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = -12; + pixel_y = 7 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "vbm" = ( /obj/structure/bed/chair/comfy/orange, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"vbA" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"vcx" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/flare, -/obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"vcU" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, +"vbK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) +"vdv" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"vdb" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"vdk" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/lz1_valley) "vdw" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -25301,54 +21410,21 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/s_lz2) -"vdC" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"vdS" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"veo" = ( -/obj/structure/surface/table, -/obj/item/device/defibrillator, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"ver" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"ves" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/colony/central) -"veu" = ( -/obj/structure/platform_decoration/strata, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/junkyard) -"vey" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, +"vdO" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) +"vef" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"veM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/reagent_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) "veS" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, @@ -25356,68 +21432,14 @@ "vfc" = ( /turf/closed/wall/shiva/prefabricated, /area/shiva/exterior/cp_lz2) -"vfd" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) -"vhG" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher/mini, -/obj/item/circuitboard/airlock, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"vhL" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"vhM" = ( -/obj/structure/flora/tree/dead/tree_4, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) -"vhQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"viy" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) -"viF" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"vjg" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) -"vjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +"vfx" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"vhc" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "vjy" = ( /obj/item/lightstick/red/planted, @@ -25430,19 +21452,6 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"vkq" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"vkZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts) "vlh" = ( /obj/structure/platform/strata{ dir = 1 @@ -25453,29 +21462,38 @@ /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"vmy" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"vmU" = ( +/obj/structure/largecrate/random{ + anchored = 1; + pixel_x = 9; + pixel_y = -3 }, -/area/shiva/interior/colony/botany) +/obj/structure/largecrate/random/mini{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) "vnc" = ( /obj/structure/platform/strata, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"vno" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" +"vnj" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" +/obj/effect/spawner/random/attachment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"vnD" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5"; + pixel_x = 16; + pixel_y = 10 }, -/area/shiva/interior/colony/medseceng) -"vnr" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) "vnF" = ( /obj/structure/surface/table, /obj/item/device/radio, @@ -25486,12 +21504,9 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/telecomm/lz1_biceps) -"vnX" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/botany) +"vnI" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) "vom" = ( /obj/structure/barricade/sandbags/wired{ dir = 8; @@ -25499,12 +21514,6 @@ }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"voo" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) "voH" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = 1; @@ -25512,20 +21521,23 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"vpu" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 + }, +/turf/open/floor/shiva/wred, +/area/shiva/interior/colony/medseceng) "vpD" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz1_north) -"vpZ" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/bar) -"vqq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/central) +"vpE" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher/mini, +/obj/item/circuitboard/airlock, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) "vqw" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/layer1, @@ -25534,38 +21546,21 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/layer2, /area/shiva/interior/caves/cp_camp) -"vqV" = ( -/obj/structure/platform/shiva/catwalk{ - dir = 1 - }, -/obj/structure/prop/ice_colony/flamingo{ - dir = 9 - }, -/turf/open/auto_turf/snow/layer2, -/area/shiva/exterior/lz1_valley) -"vrm" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"vrM" = ( -/obj/effect/decal/warning_stripes{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +"vrP" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/shiva/wred/southeast, /area/shiva/interior/colony/medseceng) -"vsi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/wy_mre, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"vsm" = ( +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/caves/cp_camp) +"vtv" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/shiva/interior/colony/n_admin) +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "vty" = ( /obj/item/shard{ icon_state = "medium"; @@ -25573,68 +21568,78 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"vtz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"vuj" = ( -/obj/structure/bed/roller, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"vtA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"vuo" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) -"vvb" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +"vuD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) +"vva" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"vvK" = ( +/obj/structure/bed/chair{ dir = 1 }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/central) -"vwv" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) -"vxb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"vvM" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"vwR" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "vxg" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/bar) -"vxE" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/shiva/interior/colony/central) -"vxW" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - icon_state = "floor3" +"vxw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"vxO" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"vya" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) "vyM" = ( /obj/structure/bed/roller, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vzy" = ( -/obj/structure/machinery/light/double, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor/shiva{ - dir = 1 +"vyO" = ( +/obj/item/stool, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"vzu" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/shiva/interior/colony/central) +/obj/structure/window/reinforced, +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "vzM" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassgb_2" @@ -25655,22 +21660,14 @@ /obj/structure/fence, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/valley) -"vAw" = ( -/obj/structure/bed/chair, +"vAM" = ( +/obj/structure/machinery/iv_drip, /obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" + dir = 4; + pixel_y = -5 }, +/turf/open/floor/shiva/wred/east, /area/shiva/interior/colony/medseceng) -"vAT" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/shiva/interior/colony/botany) "vAU" = ( /obj/structure/platform/strata{ dir = 4 @@ -25678,27 +21675,31 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/warehouse/caves) +"vAX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/obj/item/storage/box/evidence{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "vBg" = ( /obj/structure/curtain/black, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"vBl" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"vBm" = ( -/obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"vBq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/research_hab) +"vBZ" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 }, -/area/shiva/interior/colony/medseceng) +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "vCj" = ( /obj/structure/barricade/snow{ dir = 1 @@ -25710,34 +21711,15 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/fortbiceps) -"vCl" = ( -/obj/structure/surface/table, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/signaller, -/obj/item/circuitboard/airlock, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"vCv" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/s_admin) -"vDB" = ( -/obj/structure/barricade/metal{ - dir = 4 +"vCu" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/barricade/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/shiva/interior/colony/botany) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "vDD" = ( /obj/structure/flora/pottedplant, /turf/open/floor/wood, @@ -25753,26 +21735,48 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/warehouse/caves) +"vFc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) "vFi" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/shiva/interior/colony/botany) -"vFq" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +"vFy" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "vFR" = ( /obj/structure/machinery/space_heater, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) -"vFX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - icon_state = "floor3" +"vGg" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"vGG" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"vGJ" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"vGK" = ( +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "vGY" = ( /obj/structure/barricade/snow{ @@ -25789,11 +21793,15 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"vHM" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) +"vHH" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southwest, +/area/shiva/interior/colony/medseceng) +"vHS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) "vHT" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin, @@ -25804,25 +21812,18 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/shiva/interior/aerodrome) -"vIi" = ( -/obj/effect/landmark/crap_item, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"vIk" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"vIf" = ( +/obj/item/stool, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"vIq" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/shiva/interior/aerodrome) +/obj/effect/landmark/corpsespawner/bridgeofficer, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) "vIy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -25833,79 +21834,126 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"vIA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe, +/obj/item/weapon/ice_axe/red{ + pixel_y = -4 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) "vIJ" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"vIL" = ( -/obj/item/stack/rods, -/turf/open/floor/shiva{ - icon_state = "bluefull" +"vIV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/shiva/interior/colony/central) -"vJh" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"vJl" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/area/shiva/interior/colony/deck) -"vKu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"vJt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/structure/desertdam/decals/road_stop{ + icon_state = "road_edge_decal8"; + pixel_x = -14 + }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) -"vKx" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"vJZ" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"vKy" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"vKz" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"vKW" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) +"vKY" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) +"vMc" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/n_admin) +"vMB" = ( +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/deck) +"vMF" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/n_admin) "vMX" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"vNJ" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/shiva/interior/colony/botany) -"vNN" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"vNP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/chapel, +/area/shiva/interior/colony/central) "vOb" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) -"vOd" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) +"vOm" = ( +/obj/structure/surface/table, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "vOv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/plating, /area/shiva/interior/bar) -"vOP" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +"vPj" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/aux_power) +"vPp" = ( +/obj/structure/platform/shiva/catwalk{ + dir = 1 }, -/area/shiva/interior/colony/medseceng) +/obj/structure/prop/ice_colony/flamingo{ + dir = 9 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) "vPK" = ( /obj/structure/platform/strata{ dir = 1 @@ -25915,25 +21963,33 @@ }, /turf/open/gm/river, /area/shiva/exterior/cp_lz2) -"vPR" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"vQm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"vQo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/flare, +/obj/item/device/radio, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"vQK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/t_scanner, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) +"vQN" = ( +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) "vQZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) +"vRG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) "vRM" = ( /obj/structure/platform/strata{ dir = 8 @@ -25945,23 +22001,6 @@ /obj/structure/flora/tree/dead/tree_3, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"vTc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"vTh" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) "vTi" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -25971,6 +22010,15 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) +"vTj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"vUi" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "vUC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/layer4, @@ -25982,22 +22030,34 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard/fortbiceps) -"vUL" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/shiva/interior/garage) +"vUJ" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/wred/west, +/area/shiva/interior/colony/medseceng) "vUR" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz2_fortress) -"vWf" = ( -/obj/item/handcuffs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"vVj" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/area/shiva/interior/colony/medseceng) +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) +"vWg" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"vWm" = ( +/obj/structure/stairs/perspective/ice{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/junkyard) "vWt" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -26008,53 +22068,38 @@ "vWW" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/exterior/cp_lz2) -"vXh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"vXk" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/botany) "vXl" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassbb_1" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"vXw" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - start_charge = 0 +"vXs" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench{ + pixel_x = -5; + pixel_y = -2 }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "vYm" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"vYU" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/shiva/interior/lz2_habs) -"vZj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 1 +"vYC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 7 }, -/area/shiva/interior/lz2_habs) +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/deck) "wag" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/interior/colony/n_admin) +"way" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "waE" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -26068,12 +22113,26 @@ dir = 6 }, /area/shiva/interior/aerodrome) -"wck" = ( +"wbA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/central) +"wbB" = ( /obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) +"wbZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"wcA" = ( +/obj/structure/machinery/door/window/northright, +/turf/open/floor/darkbrown2/northeast, +/area/shiva/interior/valley_huts/disposals) +"wcB" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) "wcF" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -26082,27 +22141,37 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/valley) -"wdy" = ( -/obj/item/paper/research_notes{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"wfl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) -"wfB" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/shiva{ +"wcZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard, +/obj/item/tool/screwdriver, +/turf/open/floor/shiva/bluefull/west, +/area/shiva/interior/aerodrome) +"wds" = ( +/obj/item/bananapeel, +/turf/open/floor/shiva/north, +/area/shiva/interior/bar) +"wdu" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) +"wef" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/shiva/purple/west, +/area/shiva/interior/lz2_habs) +"wfp" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "wfL" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Evidence Storage" @@ -26110,14 +22179,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"wfO" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) "wfP" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -16; @@ -26135,85 +22196,43 @@ }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) -"wgp" = ( -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 1; - pixel_y = 5 - }, -/obj/structure/prop/ice_colony/dense/ice_tray{ - dir = 5; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"wgd" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 4 }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"wgm" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/research_hab) "wgM" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/lz1_valley) -"wgW" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/shiva{ - icon_state = "floor3" +"whm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, +/turf/open/floor/shiva/north, /area/shiva/interior/bar) -"wgX" = ( -/obj/structure/barricade/sandbags/wired{ - dir = 8; - icon_state = "sandbag_0" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/exterior/lz2_fortress) "whI" = ( /obj/item/weapon/gun/boltaction, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/junkyard) -"whS" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) -"whU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, +"wia" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"wil" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"wiG" = ( -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 6; - pixel_y = -9 - }, -/obj/structure/prop/invuln/dense/ice_tray{ - dir = 8; - pixel_y = 10 - }, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"wiM" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/interior/colony/n_admin) "wje" = ( /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/medseceng_caves) +"wju" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) "wjD" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -26228,77 +22247,62 @@ /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"wjK" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/advanced/bruise_pack/upgraded{ - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/stack/medical/advanced/ointment/upgraded{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"wjM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"wkY" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/shiva/interior/colony/research_hab) "wlj" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/interior/colony/central) -"wls" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "wlJ" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/telecomm/lz2_northeast) -"wmc" = ( -/obj/structure/bed/chair{ - dir = 1 +"wlY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellow, +/area/shiva/interior/aux_power) +"wmF" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 }, -/area/shiva/interior/colony/botany) -"wnK" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) -"woB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"wnF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/shiva/interior/colony/botany) -"wpl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"wnX" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/bar) +"woy" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wpj" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"wpG" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Colony Security Checkpoint" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) +/turf/open/floor/shiva/north, +/area/shiva/exterior/cp_colony_grounds) +"wpt" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/warehouse/caves) +"wpM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/purplefull/north, +/area/shiva/interior/colony/research_hab) "wpW" = ( /obj/item/stack/rods, /obj/structure/window_frame/colony/reinforced, @@ -26308,31 +22312,72 @@ /obj/structure/reagent_dispensers/water_cooler/stacks, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) -"wqQ" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/bar) +"wqL" = ( +/obj/structure/surface/table, +/obj/item/tool/wrench, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) "wsz" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wta" = ( -/obj/item/stool{ - pixel_x = 4; - pixel_y = 9 +"wsF" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_s_research) -"wtC" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wtf" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"wtl" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/area/shiva/interior/colony/n_admin) +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) +"wtn" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/clothing/under/colonist, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"wts" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) +"wtv" = ( +/obj/structure/surface/table, +/obj/item/folder/white, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/wred/northeast, +/area/shiva/interior/colony/medseceng) +"wtD" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"wua" = ( +/obj/item/frame/apc, +/turf/open/floor/shiva/wred/north, +/area/shiva/interior/colony/medseceng) "wui" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26345,14 +22390,23 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"wuw" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 +"wuP" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/purplefull, +/area/shiva/interior/colony/research_hab) +"wuZ" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"wvw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 50 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/valley) +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "wvx" = ( /obj/structure/largecrate/random/case, /turf/open/floor/shiva, @@ -26360,55 +22414,57 @@ "wvS" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/research_caves) -"wvW" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) "wwp" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"wwF" = ( +"wwK" = ( /obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 + dir = 4 }, +/turf/open/floor/shiva/north, /area/shiva/exterior/cp_colony_grounds) -"wwW" = ( -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/research_alley) -"wxs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/tool/soap{ - pixel_x = -7 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"wxL" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"wxQ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/multi_tiles/east, +/area/shiva/interior/colony/botany) "wxY" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/valley) +"wyl" = ( +/turf/open/floor/prison/kitchen, +/area/shiva/interior/colony/central) +"wzj" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green/west, +/area/shiva/interior/colony/botany) +"wzw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/sliceable/cheesecake{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"wAb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wAk" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz2-north" + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "wAr" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/ice/layer1, @@ -26424,6 +22480,14 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"wAI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "wAM" = ( /obj/structure/surface/table, /obj/item/clothing/gloves/latex, @@ -26437,61 +22501,74 @@ /obj/structure/girder, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"wCh" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, +"wBy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) +"wBA" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/interior/aerodrome) +"wBP" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"wCe" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/good_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/darkbrown2/southwest, +/area/shiva/interior/valley_huts/disposals) +"wCl" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, +/turf/open/floor/shiva/wred/north, /area/shiva/interior/colony/medseceng) -"wCn" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; +"wCo" = ( +/obj/structure/platform_decoration/shiva/catwalk{ + dir = 8 + }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"wCq" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; pixel_x = -10; - pixel_y = 13 + pixel_y = 19 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) +"wCL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" }, -/area/shiva/interior/aerodrome) -"wCz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 25 }, -/area/shiva/interior/colony/central) +/turf/open/floor/plating, +/area/shiva/exterior/junkyard) "wCP" = ( /turf/closed/wall/shiva/ice, /area/shiva/interior/colony/s_admin) -"wCU" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 9; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) "wCX" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/s_lz2) -"wFa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "red" +"wDU" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 8 }, -/area/shiva/interior/colony/medseceng) +/turf/open/gm/river, +/area/shiva/exterior/cp_s_research) "wFm" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, @@ -26503,149 +22580,127 @@ /obj/structure/coatrack, /turf/open/floor/carpet, /area/shiva/interior/colony/central) -"wFw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - icon_state = "greenfull" +"wGq" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/botany) +"wGX" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/area/shiva/interior/colony/n_admin) -"wFB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) +"wHe" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/medseceng) +"wIn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"wGD" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/s_admin) -"wHi" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" + pixel_y = -5 }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/central) -"wHr" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "red" - }, +"wIA" = ( +/turf/open/floor/shiva/yellowfull/west, /area/shiva/interior/colony/medseceng) -"wHA" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/shiva/interior/colony/n_admin) "wIC" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wIS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 9 - }, -/obj/item/toy/deck{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"wJd" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"wJT" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"wKB" = ( +/obj/structure/platform/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"wLs" = ( +/obj/structure/prop/invuln{ + desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; + icon = 'icons/obj/structures/props/almayer_props.dmi'; + icon_state = "equip_base"; + name = "shuttle attachment point" }, -/area/shiva/interior/colony/medseceng) -"wJp" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/n_admin) -"wKk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "wMh" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) "wMj" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) -"wMq" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"wMC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/deck) -"wMR" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/botany) +"wMv" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/red/northwest, +/area/shiva/interior/colony/medseceng) +"wMG" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) +"wMZ" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "wNj" = ( /obj/structure/window/framed/shiva, /turf/open/floor/plating/icefloor, /area/shiva/interior/telecomm/lz1_biceps) -"wOq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) -"wOO" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"wND" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/exterior/cp_lz2) +"wNT" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/shiva/exterior/cp_lz2) +"wNY" = ( +/obj/structure/prop/souto_land{ + desc = "Someone has crudely rendered a face and the word 'souto'"; + health = 10000; + layer = 2.9; + name = "souto graffiti" }, -/area/shiva/interior/colony/research_hab) -"wPp" = ( -/turf/closed/wall/shiva/ice, -/area/shiva/interior/colony/research_hab) +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "wPz" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) +"wPX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/north, +/area/shiva/interior/garage) +"wQd" = ( +/obj/item/stool{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/shiva/snow_mat/north, +/area/shiva/exterior/cp_lz2) +"wQn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) +"wQr" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wQJ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/interior/colony/deck) "wQR" = ( /obj/structure/morgue{ dir = 8 @@ -26653,24 +22708,25 @@ /obj/structure/machinery/light/double, /turf/open/floor/plating, /area/shiva/interior/colony/central) -"wRa" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/valley_huts/no2) -"wRi" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) "wRm" = ( /turf/open/floor/plating, /area/shiva/interior/aerodrome) -"wRL" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_s_research) +"wSi" = ( +/obj/structure/ice/thin/single{ + opacity = 1; + unacidable = 0 + }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"wSj" = ( +/obj/structure/computerframe{ + pixel_y = 24 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/can_surgery/black, +/area/shiva/interior/aerodrome) "wSv" = ( /obj/item/lightstick/red/variant/planted{ pixel_x = -7; @@ -26678,47 +22734,32 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/warehouse/caves) -"wSI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/alarm{ +"wSE" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ dir = 4; - pixel_x = -24 + health = 80 }, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - icon_state = "bluefull" +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"wSK" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/area/shiva/interior/colony/s_admin) +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/lz1_valley) "wTg" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/s_lz2) -"wTm" = ( +"wTl" = ( /obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/circuitboard{ + pixel_x = -3; + pixel_y = 18 }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/shiva/interior/colony/research_hab) -"wTx" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 15; - pixel_y = -3 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -16; - pixel_y = -3 - }, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "wTz" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = -7; @@ -26730,6 +22771,11 @@ }, /turf/open/floor/shiva, /area/shiva/interior/aerodrome) +"wTL" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/botany) "wTP" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, @@ -26745,55 +22791,48 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"wUy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"wUi" = ( +/obj/structure/closet/toolcloset, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"wWr" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/aerodrome) -"wWu" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"wWI" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/shiva/wred/west, /area/shiva/interior/colony/medseceng) -"wWY" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"wXh" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"wXQ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"wWV" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva, /area/shiva/interior/bar) -"wYd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/fortunecookie/prefilled{ - pixel_x = 6; - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"wXj" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "hangar_ice_3"; + pixel_y = 28 }, -/area/shiva/interior/bar) +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/junkyard) +"wXm" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/yellow/northwest, +/area/shiva/interior/colony/medseceng) +"wYu" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wYy" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "wZh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/slime{ @@ -26805,107 +22844,56 @@ }, /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) +"wZo" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/research_hab) +"wZv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/yellowfull, +/area/shiva/interior/colony/research_hab) "wZW" = ( /obj/structure/bed, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"wZY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/s_admin) -"xar" = ( -/obj/structure/surface/table, -/obj/item/storage/box/syringes{ - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +"xas" = ( +/turf/open/floor/shiva/yellow/west, +/area/shiva/interior/colony/research_hab) +"xaY" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"xaw" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) -"xbm" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"xbn" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/turf/closed/wall/shiva/ice, -/area/shiva/interior/caves/cp_camp) +"xbr" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/up, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/central) "xbz" = ( /obj/structure/window/framed/shiva, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"xbP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"xbT" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/telecomm/lz1_biceps) -"xbZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/cp_colony_grounds) -"xct" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/ice/layer1, -/area/shiva/interior/caves/cp_camp) -"xcE" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"xcU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/shiva/interior/lz2_habs) "xde" = ( /obj/structure/closet/cabinet, /obj/item/clothing/under/bluepyjamas, /turf/open/floor/wood, /area/shiva/interior/colony/botany) -"xdT" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/lz2_habs) -"xeq" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device{ - dir = 4; - pixel_y = 10 +"xdP" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel/snow, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/valley_huts/no2) +"xdQ" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 9 }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/prison/kitchen, +/area/shiva/interior/bar) "xeE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26913,30 +22901,40 @@ /obj/structure/window/reinforced, /turf/open/floor/wood, /area/shiva/interior/colony/central) -"xfZ" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/auto_turf/ice/layer0, -/area/shiva/interior/caves/cp_camp) "xgc" = ( /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_s_research) +"xgf" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/auto_turf/ice/layer0, +/area/shiva/exterior/cp_s_research) +"xgj" = ( +/obj/item/stack/rods, +/turf/open/floor/corsat/squares, +/area/shiva/interior/aerodrome) +"xgy" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) +"xgA" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/shiva/interior/colony/central) "xgH" = ( /turf/closed/shuttle/elevator, /area/shiva/interior/aerodrome) "xha" = ( /turf/open/floor/plating, /area/shiva/interior/colony/central) -"xhn" = ( -/obj/structure/prop/souto_land{ - desc = "Someone has crudely rendered a face and the word 'souto'"; - health = 10000; - layer = 2.9; - name = "souto graffiti" - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) +"xhu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"xhI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/lz2_habs) "xhJ" = ( /obj/item/tool/wet_sign, /turf/open/floor/wood, @@ -26946,106 +22944,58 @@ /obj/structure/surface/rack, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xiu" = ( -/obj/structure/machinery/vending/cola/research, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) "xiY" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"xjg" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +"xjD" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/colony/research_hab) +"xkj" = ( +/turf/open/floor/shiva/north, /area/shiva/interior/colony/deck) -"xkf" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) -"xkV" = ( -/obj/structure/surface/table, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) "xlg" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"xmS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"xnM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) -"xog" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/gm/river, -/area/shiva/interior/caves/cp_camp) -"xoi" = ( -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"xmN" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/warehouse) +"xmX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/shiva/yellow/southwest, +/area/shiva/interior/colony/research_hab) +"xna" = ( +/obj/structure/machinery/microwave{ + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/north, /area/shiva/interior/colony/medseceng) -"xqe" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/s_admin) -"xqf" = ( -/obj/structure/barricade/wooden{ +"xoe" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/shiva/interior/bar) +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"xon" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) "xru" = ( /obj/structure/foamed_metal, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"xrC" = ( -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/research_alley) "xst" = ( /obj/item/lightstick/red/spoke/planted{ layer = 2.99; @@ -27054,12 +23004,6 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/interior/caves/cp_camp) -"xsD" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/central) "xtc" = ( /obj/structure/platform/strata{ dir = 4 @@ -27067,10 +23011,22 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/shiva/interior/caves/cp_camp) +"xtu" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xtE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "xtI" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/shiva/interior/colony/research_hab) +"xtX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/colony/research_hab) "xui" = ( /obj/structure/platform/strata{ dir = 1 @@ -27084,24 +23040,18 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/research_caves) +"xuB" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"xuT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/central) "xvb" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/lz1_valley) -"xvd" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/storage/belt/utility/full, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/research_alley) -"xvf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "bluefull" - }, -/area/shiva/interior/colony/n_admin) "xvp" = ( /obj/item/lightstick/red/variant/planted, /turf/open/auto_turf/snow/layer1, @@ -27109,6 +23059,10 @@ "xvA" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/junkyard/cp_bar) +"xvD" = ( +/obj/structure/bed/roller, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "xvQ" = ( /obj/structure/machinery/conveyor{ dir = 4; @@ -27119,50 +23073,53 @@ }, /turf/open/asphalt/cement, /area/shiva/interior/warehouse) -"xvS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"xwi" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"xwo" = ( -/obj/structure/platform/shiva/catwalk{ +"xwa" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ dir = 8 }, -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/lz1_valley) -"xwL" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"xwA" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/n_admin) +"xwH" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"xwJ" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/wred/east, +/area/shiva/interior/colony/medseceng) +"xxl" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/shiva/exterior/lz2_fortress) +"xxC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xxV" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/plating/warnplate, +/area/shiva/interior/valley_huts/disposals) "xyd" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_colony_grounds) -"xyY" = ( -/obj/structure/prop/invuln{ - desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again."; - icon = 'icons/obj/structures/props/almayer_props.dmi'; - icon_state = "equip_base"; - name = "shuttle attachment point" - }, -/obj/item/storage/firstaid/adv, -/turf/open/shuttle{ - icon_state = "floor7" - }, -/area/shiva/interior/aerodrome) +"xym" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/medseceng) +"xze" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/deck) "xzo" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -27171,16 +23128,11 @@ }, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/cp_camp) -"xzK" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/central) +"xzw" = ( +/obj/structure/machinery/light/double, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/shiva/interior/colony/medseceng) "xzO" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -27192,6 +23144,27 @@ }, /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) +"xAg" = ( +/obj/item/lightstick/planted, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"xAt" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/shiva/interior/colony/medseceng) +"xAH" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/research_hab) +"xAK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) "xAP" = ( /obj/structure/flora/tree/dead/tree_1, /turf/open/auto_turf/snow/layer2, @@ -27205,40 +23178,39 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) +"xBd" = ( +/mob/living/simple_animal/hostile/retaliate/clown{ + desc = "Uh oh, looks like Gonzo got blocked by a cave-in. How is he gonna get out of this one?"; + health = 10000; + move_to_delay = 2; + name = "Gonzo the Magnificent"; + rapid = 1 + }, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "Original map by Infernus, remapped by Triiodine." + }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/oob/dev_room) +"xBf" = ( +/turf/open/floor/shiva/wredcorners/west, +/area/shiva/interior/colony/medseceng) "xBi" = ( /obj/structure/fence, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) -"xCj" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 1; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 1 +"xBN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"xBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/northeast, /area/shiva/interior/colony/medseceng) -"xCA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) -"xCN" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/shiva/interior/bar) "xCW" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 1 @@ -27249,46 +23221,33 @@ }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"xDq" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, -/area/shiva/interior/colony/research_hab) -"xEd" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"xDx" = ( +/obj/structure/platform_decoration/shiva/catwalk{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"xEu" = ( -/obj/structure/morgue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/central) -"xEw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" - }, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) +"xDN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/southeast, +/area/shiva/interior/colony/medseceng) +"xEn" = ( +/turf/open/floor/shiva/redfull, +/area/shiva/interior/colony/medseceng) +"xEy" = ( +/obj/item/frame/table, +/turf/open/floor/shiva/wred, /area/shiva/interior/colony/medseceng) "xEB" = ( /obj/item/tool/warning_cone, /turf/open/floor/shiva, /area/shiva/interior/colony/research_hab) -"xFp" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) +"xFt" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) "xFM" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -27301,34 +23260,23 @@ }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xFP" = ( -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/colony/research_hab) -"xFR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +"xGh" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/layer3, +/area/shiva/interior/caves/cp_camp) +"xGu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) -"xGR" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/shiva/interior/colony/medseceng) -"xHu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/aerodrome) -"xIL" = ( -/obj/item/powerloader_clamp, -/turf/open/floor/shiva{ - icon_state = "floor3" +"xHv" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 }, -/area/shiva/interior/colony/research_hab) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/lz1_valley) "xIO" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -27337,47 +23285,26 @@ }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/junkyard/cp_bar) -"xIU" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"xKv" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/shiva/interior/colony/botany) +"xLN" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/shiva/floor3, /area/shiva/interior/bar) -"xJA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/colony/research_hab) "xMz" = ( /turf/closed/wall/shiva/ice, /area/shiva/exterior/lz1_valley) -"xMC" = ( -/obj/item/bananapeel, -/turf/open/floor/shiva{ +"xMB" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/shiva/interior/colony/medseceng) +"xME" = ( +/obj/structure/platform_decoration/shiva/catwalk{ dir = 1 }, -/area/shiva/interior/bar) -"xMH" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/deck) -"xMQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/lz2_habs) +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/valley) "xMS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -27387,69 +23314,58 @@ }, /turf/open/auto_turf/snow/layer0, /area/shiva/interior/caves/cp_camp) -"xNe" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +"xNs" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/wred/northeast, /area/shiva/interior/colony/medseceng) -"xNO" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/research_alley) "xOb" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/interior/bar) -"xOT" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/auto_turf/ice/layer2, -/area/shiva/interior/caves/left_spiders) -"xPd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +"xOm" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" }, -/area/shiva/interior/bar) -"xQa" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/cp_camp) +"xPR" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/darkbrown2/east, +/area/shiva/interior/valley_huts/disposals) +"xQb" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "nlz_shutters"; + pixel_y = 28 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "xQj" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"xQJ" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/lz2_habs) -"xQQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Colony Dormitories" +"xQN" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/red/north, +/area/shiva/interior/colony/medseceng) +"xQS" = ( +/obj/structure/stairs/perspective/ice{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"xQZ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"xRr" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/snow_mat, /area/shiva/interior/colony/botany) -"xRg" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, -/area/shiva/interior/telecomm/lz1_biceps) -"xRi" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/shiva/interior/colony/medseceng) "xRy" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, @@ -27466,146 +23382,173 @@ "xRY" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/shiva/exterior/cp_colony_grounds) -"xSk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +"xSZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/shiva/interior/aerodrome) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/research_hab) +"xTz" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/wredfull, +/area/shiva/interior/colony/medseceng) "xTK" = ( /obj/structure/inflatable/popped, /obj/structure/girder, /turf/open/auto_turf/ice/layer2, /area/shiva/interior/caves/research_caves) -"xTZ" = ( -/obj/structure/surface/rack, -/obj/item/weapon/ice_axe, -/obj/item/weapon/ice_axe/red{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/central) -"xUm" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard, -/turf/open/floor/shiva{ +"xTS" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/yellow, +/area/shiva/interior/garage) +"xTT" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "wred" + pixel_y = 9 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/n_admin) +"xTW" = ( +/obj/item/powerloader_clamp, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "xUt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"xVo" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +"xUR" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/area/shiva/interior/colony/n_admin) +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/shiva/interior/caves/research_caves) +"xVU" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/icefloor/warnplate/southwest, +/area/shiva/exterior/junkyard/fortbiceps) "xVZ" = ( /obj/structure/prop/ice_colony/dense/ice_tray{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"xWy" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 5 - }, -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/junkyard) -"xXv" = ( +"xWK" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/colony/research_hab) +"xXE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; +/obj/item/reagent_container/food/snacks/candy_corn{ + pixel_x = 7; pixel_y = 5 }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 8 +/obj/item/clothing/head/fedora{ + pixel_x = -6; + pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shiva/interior/bar) +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) "xXM" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 9 }, /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_colony_grounds) -"xXV" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/garage) +"xYq" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/central) "xYx" = ( /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) +"xYy" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest/c{ + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/shiva/interior/lz2_habs) "xZd" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) -"xZW" = ( -/obj/item/trash/hotdog, -/turf/open/floor/prison{ - icon_state = "kitchen" +"xZh" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" }, -/area/shiva/interior/bar) -"ycc" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"xZu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/ice_axe/green{ + pixel_y = 4 }, +/obj/item/weapon/ice_axe, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"yal" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/shiva/north, /area/shiva/interior/colony/medseceng) -"ydz" = ( -/obj/structure/stairs/perspective{ - dir = 8; +"yas" = ( +/obj/structure/stairs/perspective/ice{ icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/auto_turf/ice/layer1, +/area/shiva/interior/caves/research_caves) +"ybr" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/medseceng) +"ycD" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/bar) -"ydP" = ( -/obj/structure/girder/displaced, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/n_admin) +"ydm" = ( +/turf/open/floor/dark2, +/area/shiva/interior/valley_huts/disposals) +"ydv" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aux_power) +"ydJ" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/hos, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "yer" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/cp_camp) -"yeu" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/shiva/interior/colony/medseceng) "yez" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ name = "\improper Underground Security Showers" @@ -27613,78 +23556,70 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/shiva/interior/colony/medseceng) -"yfE" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/shiva/interior/colony/medseceng) +"yfM" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/research_hab) "yfY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_colony_grounds) -"ygn" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/apc, -/obj/item/circuitboard/apc, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +"ygt" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"ygB" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/redfull/west, /area/shiva/interior/colony/medseceng) -"ygp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/ice_crystal{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"ygJ" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 }, -/area/shiva/interior/lz2_habs) -"yhX" = ( /obj/structure/surface/table, -/obj/item/tool/wrench{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/shiva/interior/colony/research_hab) -"yiw" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wredcorners" +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow/north, +/area/shiva/interior/garage) +"yho" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/aerodrome) +"yht" = ( +/obj/item/tool/soap, +/turf/open/floor/shiva/wredfull, /area/shiva/interior/colony/medseceng) -"yiS" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/shiva/interior/colony/research_hab) -"yjh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/n_admin) -"yjn" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"yhu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/east, +/area/shiva/interior/colony/medseceng) +"yhH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_s_research) +"yis" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/green/east, +/area/shiva/interior/colony/botany) +"yiE" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/exterior/cp_lz2) +"yiX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/area/shiva/interior/colony/central) +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/medseceng) "yjM" = ( /obj/structure/barricade/handrail/wire, /obj/structure/barricade/handrail/wire{ @@ -27693,56 +23628,31 @@ }, /turf/open/auto_turf/ice/layer1, /area/shiva/interior/caves/cp_camp) -"yjY" = ( -/obj/structure/surface/table, -/obj/item/storage/bag/plants, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - dir = 1 - }, +"ykP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/bluefull, /area/shiva/interior/colony/n_admin) -"ykq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/obj/item/storage/box/evidence{ - pixel_x = 5; - pixel_y = 10 +"ykS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Chapel" }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/wood, +/area/shiva/interior/colony/central) +"ylo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/shiva/interior/colony/medseceng) +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/research_hab) "ylz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/shiva/prefabricated, /area/shiva/interior/colony/medseceng) -"ylO" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/interior/colony/medseceng) -"ylP" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"ylU" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/snow/layer0, -/area/shiva/interior/caves/cp_camp) -"ylZ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/shiva/interior/colony/medseceng) (1,1,1) = {" puZ @@ -27882,22 +23792,22 @@ puZ puZ puZ puZ -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD -qgD +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -28027,39 +23937,39 @@ puZ puZ puZ puZ -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -aIO -pxA -pxA -pxA -pxA puZ puZ puZ -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -28082,21 +23992,21 @@ puZ puZ puZ aac -cce -uLq -cce -cce -uLq -sXP -cce -uLq -cce -cce -uLq -cce +nYb +gjS +nYb +nYb +gjS +kex +nYb +gjS +nYb +nYb +gjS +nYb aac -pTC -xMQ +aMR +xhI aac aac aac @@ -28182,46 +24092,46 @@ puZ puZ puZ puZ -asz -asz -asz -asz -asz -asz puZ -pxA -ueu -mMa -euA -vKu -euA -euA -vKu -rhS -oqQ -oqQ -rhS -ueu -pxA -pxA -pxA -pxA -pxA -sym -ctk -ugP -pxA -pxA -xwi -thc -ckI -dTn -pxA -pxA -rZt -rZt -rZt -pxA +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -28244,30 +24154,30 @@ puZ puZ puZ aac -amR -tyL -acq -amR -hpb -acq -amR -sBN -acq -amR -ygp -acq -xQJ -chq -xQJ +ulA +spN +pMn +ulA +ugp +pMn +ulA +cnq +pMn +ulA +lyy +pMn +tMQ +bPE +tMQ aac aac -vZj -wil +fUy +qfY aac -pth -liD -pth -sPn +mOR +uBL +mOR +uIJ aac aac puZ @@ -28342,48 +24252,6 @@ puZ puZ puZ puZ -asz -asz -asz -goj -djO -goj -goj -asz -pxA -pxA -lkX -ffw -uim -vKu -uim -ffw -lkX -vKu -vKu -vKu -vKu -vKu -uLu -pxA -pxA -bJi -bJi -euA -vPR -euA -euA -bJi -euA -euA -vPR -euA -bJi -euA -euA -bJi -rZt -pxA puZ puZ puZ @@ -28391,8 +24259,6 @@ puZ puZ puZ puZ -"} -(5,1,1) = {" puZ puZ puZ @@ -28405,41 +24271,6 @@ puZ puZ puZ puZ -aac -etm -vYU -jZF -cce -eoO -cce -cce -vYU -cce -jZF -vYU -cce -xQJ -xQJ -aiJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cOX -aac -aac -fEU -tTi -tTi -eET -eET -eET -eET -eET puZ puZ puZ @@ -28452,11 +24283,6 @@ puZ puZ puZ puZ -fEU -fEU -fEU -cKR -cOA puZ puZ puZ @@ -28475,20 +24301,232 @@ puZ puZ puZ puZ +"} +(5,1,1) = {" +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +aac +bjT +iBY +mdT +nYb +wef +nYb +nYb +iBY +nYb +mdT +iBY +nYb +tMQ +tMQ +dJM +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +apg +aac +aac +fEU +tTi +tTi +eET +eET +eET +eET +eET +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +fEU +fEU +fEU +cKR +cOA +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +hFl +hFl +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +"} +(6,1,1) = {" +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ puZ +aac +aac +lLX +byG +tMQ +tMQ +odz +tMQ +vKY +odz +tMQ +bPE +odz +tMQ +tMQ +tMQ +tMQ +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +nYb +aac +fEU +fEU +fEU +fEU +fEU +eET +eET +eET +eET +eET puZ puZ puZ puZ puZ +fEU puZ puZ puZ puZ puZ +eET +neD +pEy puZ puZ puZ @@ -28504,57 +24542,11 @@ puZ puZ puZ puZ -asz -fjd -rZt -djO -kts -wAM -djO -asz -pxA -pxA -ift -smI -hUG -vKu -udJ -euA -ift -pKP -nNN -kZy -pKP -vKu -uLu -pxA -pxA -bJi -rZt -dTU -dTU -dTU -dTU -rZt -dTU -dTU -dTU -dTU -rZt -dTU -rZt -mwF -rZt -pxA -kTd -kTd puZ puZ puZ puZ puZ -"} -(6,1,1) = {" puZ puZ puZ @@ -28566,57 +24558,16 @@ puZ puZ puZ puZ -aac -aac -bhY -byG -xQJ -xQJ -odz -xQJ -kLv -odz -xQJ -chq -odz -xQJ -xQJ -xQJ -xQJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cce -aac -fEU -fEU -fEU -fEU -fEU -eET -eET -eET -eET -eET puZ puZ puZ puZ puZ -fEU puZ puZ puZ puZ puZ -eET -neD -pEy puZ puZ puZ @@ -28661,56 +24612,15 @@ puZ puZ puZ puZ +hFl +jCE +jCE +jCE puZ puZ puZ puZ puZ -asz -wgp -rZt -goj -qNK -hrb -goj -wnK -rZt -vKu -lkX -ift -sQU -vKu -sQU -ift -lkX -rhS -oqQ -oqQ -lNm -vKu -pxA -pxA -ctk -mwF -chU -bJi -euA -euA -euA -bJi -euA -euA -euA -euA -bJi -bJi -chU -mwF -rZt -twi -kue -kTd -flN puZ puZ puZ @@ -28729,31 +24639,31 @@ puZ puZ puZ aac -aPg -cce +loo +nYb odz -uwv -xQJ +ixc +tMQ odz -xQJ -xQJ +tMQ +tMQ odz -xQJ -xQJ +tMQ +tMQ odz -xQJ -xQJ -aBB -xQJ -mrY -mrY -xQJ -xQJ -xQJ -xQJ -xQJ -xQJ -cce +tMQ +tMQ +xcU +tMQ +cFw +cFw +tMQ +tMQ +tMQ +tMQ +tMQ +tMQ +nYb aac fEU fEU @@ -28825,55 +24735,55 @@ puZ puZ puZ puZ +tlB +oRH +tlB +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +hFl +jCE +jCE +xBd +jCE +jCE +puZ +puZ puZ puZ puZ -asz -tqs -rZt -goj -rZt -fHM -goj -wnK -rZt -vKu -wnK -rZt -rZt -wnK -rZt -rZt -wnK -vKu -vKu -vKu -vKu -vKu -bqy -pxA -ugP -mwF -chU -mwF -pxA -pxA -pxA -pxA -wnK -vKu -xIL -vKu -wnK -bJi -chU -bJi -rZt -twi -flN -flN -kue -flN puZ puZ puZ @@ -28891,31 +24801,31 @@ caS caS caS aac -iVT -pME -cce -xQJ -cce -cce -cce -cce -cce -cce -cce -cce -cce -xQJ -xQJ -lpX +xYy +krg +nYb +tMQ +nYb +nYb +nYb +nYb +nYb +nYb +nYb +nYb +nYb +tMQ +tMQ +tea aac aac -ijq -xQJ -xQJ -xQJ -xQJ -xQJ -mgA +dHZ +tMQ +tMQ +tMQ +tMQ +tMQ +jey aac aac fEU @@ -28935,9 +24845,9 @@ tTi fEU eET tTi -slC -kMg -uKB +ohw +dpW +oBp eET hRQ eET @@ -28973,8 +24883,24 @@ puZ puZ puZ puZ +ntJ +ntJ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ +hBq +tlB +hBq +hBq +oRH +tlB puZ puZ puZ @@ -28990,52 +24916,36 @@ puZ puZ puZ puZ -asz -asz -rZt -goj -rZt -rZt -goj -wnK -xEB -vKu -wnK -rZt -rZt -eFQ -rZt -rZt -wnK -vKu -vKu -vKu -vKu -vKu -jqT -pxA -ctk -cVy -chU -mwF -pxA -kRV -kVe -wnK -mwF -mwF -yiS -mwF -vKu -mwF -chU -mwF -rZt -flN -flN -flN -kTd -kTd +puZ +puZ +puZ +puZ +snN +uqb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +oaP +jCE +jCE +jCE +jCE +jCE +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -29053,17 +24963,17 @@ caS caS caS aac -reV -fZP -nBB -xQJ -cce -mrY -mrY -eBp -aPi -mrY -mBW +reG +cam +jTP +tMQ +nYb +cFw +cFw +pmT +grH +cFw +gzf aac aac mKr @@ -29071,13 +24981,13 @@ mKr mKr aac aac -jwa -fkP -xQJ -xQJ -xQJ -xQJ -bNN +swf +iCI +tMQ +tMQ +tMQ +tMQ +rfq aac aac lnR @@ -29134,6 +25044,9 @@ puZ puZ puZ puZ +wMh +ntJ +ntJ puZ puZ puZ @@ -29143,6 +25056,13 @@ puZ puZ puZ puZ +hBq +tlB +oRH +oRH +oRH +hBq +oRH puZ puZ puZ @@ -29152,53 +25072,43 @@ puZ puZ puZ puZ -asz -iIe -rZt -goj -fHM -rZt -goj -wnK -rZt -vKu -vKu -vKu -vKu -vKu -vKu -vKu -toN -vKu -vKu -dgF -hEE -wnK -pxA -pxA -pxA -wnK -wnK -wnK -pxA -hQO -pve -wnK -flN -wAP -flN -dJS -flN -mwF -chU -mwF -rZt -rZt -wBf -pxA -kTd -kue -flN +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +uqb +uqb +uqb +kLM +uqb +uqb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +hFl +jLx +iWS +jCE +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ "} @@ -29209,37 +25119,37 @@ puZ caS caS caS -dsD -gpn +eOx +pUj caS caS caS aac aac -tQN -upp -mrY -mrY -tQN +aRW +rRI +cFw +cFw +aRW aac aac -laD -wKk -guA +qvF +kvk +duD aac aac -mnD -mnD -mnD +xxl +xxl +xxl aac aac -bnk -tQN -mrY -mrY -mrY -tQN -cce +nVi +aRW +cFw +cFw +cFw +aRW +nYb aac aac lnR @@ -29295,15 +25205,63 @@ puZ puZ puZ puZ +ntJ +wMh +wMh +wMh puZ puZ puZ -aau -aau -aau puZ puZ puZ +xAS +xAS +hBq +tlB +oRH +oRH +tlB +tlB +oRH +tlB +hBq +puZ +puZ +puZ +puZ +puZ +puZ +slO +slO +slO +puZ +puZ +mev +cQW +rbA +aDM +cko +rLu +rLu +nMR +uqb +uqb +uqb +uqb +uqb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +jCE puZ puZ puZ @@ -29311,56 +25269,8 @@ puZ puZ puZ puZ -lhu puZ puZ -asz -bNu -rZt -djO -qCs -pPt -goj -wnK -qyE -wnK -asz -fNE -fNE -fNE -pxA -xvS -xvS -pxA -pxA -iQe -qaF -chU -pxA -pxA -pxA -vKu -vKu -vKu -pxA -lGU -wnK -wnK -aPd -aRz -aXi -bag -flN -mwF -chU -mwF -rZt -flN -flN -pxA -flN -kTd -kue puZ puZ "} @@ -29370,19 +25280,19 @@ puZ puZ caS caS -dsD -dsD -mFm +eOx +eOx +fhS caS caS caS aac aac -lYf -lYf -lYf -lYf -lYf +gjq +gjq +gjq +gjq +gjq aac aac mKr @@ -29390,17 +25300,17 @@ mKr mKr aac aac -acn -acn -acn +fbQ +fbQ +fbQ aac aac aac -lYf -ubG -ubG -ubG -lYf +gjq +agH +agH +agH +gjq aac aac aac @@ -29457,14 +25367,62 @@ puZ puZ puZ puZ +jmW +jmW +jmW +wMh +ntJ +puZ +puZ +puZ +fJW +tXh +xAS +xAS +oRH +hBq +oRH +tlB +oRH +xAS +xAS +oRH +hBq +oRH +puZ +puZ +puZ +puZ +puZ +slO +slO +slO +slO +puZ +lLv +cQW +rbA +uqb +mNs +xMz +slO +ofl +uqb +uqb +aDM +uqb +uqb +uqb +uqb +riV +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ -pct -hsu -hsu -aaP -aau -aau puZ puZ puZ @@ -29472,57 +25430,9 @@ puZ puZ puZ puZ -clK puZ puZ puZ -asz -iqt -rZt -goj -axa -hVs -djO -dBB -rZt -rZt -fNE -sdF -biM -biM -fNE -rZt -vKu -pxA -pxA -rZt -hEE -chU -gFb -sfM -oHF -wnK -wnK -wnK -pxA -lYG -wnK -wnK -aPe -aSJ -aXn -bah -flN -mwF -chU -mwF -flN -rZt -rZt -flN -flN -kTd -kue puZ puZ "} @@ -29532,12 +25442,12 @@ puZ puZ caS caS -gpn -dsD -gpn -mFm -mFm -sXF +pUj +eOx +pUj +fhS +fhS +bUu aac aac odz @@ -29547,22 +25457,22 @@ odz odz aac aac -mnD -mnD -mnD +xxl +xxl +xxl aac aac -dOo -mFm -mFm -mFm +xQb +fhS +fhS +fhS aac aac -xQJ -xQJ -xQJ -xQJ -xQJ +tMQ +tMQ +tMQ +tMQ +tMQ aac aac vUR @@ -29619,72 +25529,72 @@ puZ puZ puZ puZ +wMh +wMh +wMh +jmW +ntJ +puZ +puZ +xAS +xAS +xAS +xAS +aFO +xAS +oRH +uyd +rUc +qDN +qch +kLj +tlB +oRH +hBq +puZ +puZ +puZ +puZ +slO +slO +slO +jlX +wSK +puZ +giB +aQt +iTh +qza +mNs +slO +slO +ofl +uqb +xvb +kGW +aDM +uqb +uqb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ -pct -hsu -aav -clK -uoZ -aau puZ puZ puZ -aav -clK -aav -clK -aav puZ puZ puZ -asz -asz -asz -goj -goj -djO -goj -wnK -rZt -rZt -fNE -nPH -biM -biM -fNE -chU -wnK -vFX -pxA -iQe -qaF -chU -kyu -drx -rZt -chU -rZt -chU -fNE -mHU -pDp -wnK -aQm -aXc -aXI -bbG -flN -mwF -chU -mwF -rZt -flN -rZt -flN -flN -flN -kue puZ puZ "} @@ -29696,39 +25606,39 @@ caS caS caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS aac aac -lYf -lYf -lYf -lYf -lYf +gjq +gjq +gjq +gjq +gjq aac aac -iuX -acn -acn +lxh +fbQ +fbQ aac aac -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS aac aac -lYf -ubG -ubG -lYf -lYf +gjq +agH +agH +gjq +gjq aac aac -pch -qRb +fnD +ujW sVJ fEU lrt @@ -29781,72 +25691,72 @@ puZ puZ puZ puZ +wMh +wMh +wMh +cQy +ntJ +puZ +puZ +fBs +xAS +xAS +xAS +aFO +hBq +oRH +tlB +qRY +eHY +bqS +oRH +lfe +oRH +oRH +puZ +puZ +puZ +puZ +lmD +lmD +niL +lAZ +aDM +uqb +uqb +uqb +uqb +mfa +jqx +slO +kCE +oqH +uqb +aDM +kLM +kLM +xvb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ -aaw -hsu -uoZ -clK -clK -aav -clK -aav -aav -rpE -clK -aav -aaP -aav -clK -dCY -asz -asz -asz -asz -asz -wnK -wnK -wnK -wnK -wnK -rZt -rZt -asz -wTm -biM -biM -fNE -chU -vKu -vQm -pxA -rZt -iQe -wnK -gFb -nMk -chU -rZt -chU -rZt -fNE -mWE -pDu -wnK -flN -flN -flN -flN -flN -mwF -chU -fww -sNX -dAt -flN -pxA -flN -flN -kue puZ puZ "} @@ -29858,42 +25768,42 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -slj -hnc -hnc -hnc -slj -mFm -asU -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -slj -hnc -hnc -hnc -slj -mFm -mFm -mFm +fhS +fhS +fhS +fhS +fhS +fhS +jYP +rYk +rYk +rYk +jYP +fhS +uyK +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +jYP +rYk +rYk +rYk +jYP +fhS +fhS +fhS uzM jRI jRI -oHI +wSi caS caS caS @@ -29943,72 +25853,72 @@ puZ puZ puZ puZ +wMh +jmW +wMh +wMh +wMh +puZ +puZ +fBs +tlB +oRH +aFO +aFO +aFO +hBq +hBq +xAS +oRH +xAS +oRH +oRH +oRH +xAS +xAS +kvQ +uqb +aDM +uqb +uqb +uqb +uqb +uqb +uqb +qza +kLM +hXX +kLM +mOv +niL +lAZ +kLM +uqb +uqb +aDM +xvb +uqb +uqb +uqb +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ -aaw -hsu -clK -aau -aau -clK -aav -hsu -aav -rpE -clK -aav -clK -aav -clK -dCY -asz -wFB -eSt -wFB -dTU -rZt -gAV -rZt -dTU -asz -asz -asz -asz -asz -goj -goj -fNE -chU -wnK -pxA -pxA -pxA -pxA -pxA -pxA -mcw -rZt -chU -rZt -chU -pxA -pxA -pxA -wnK -mwF -mwF -mwF -mwF -vKu -mwF -chU -uOR -rZt -acP -flN -pxA -flN -flN -kue puZ puZ "} @@ -30018,11 +25928,11 @@ puZ puZ caS caS -aiK -aXa -mFm -mFm -mFm +aSq +cuD +fhS +fhS +fhS mhP mhP mhP @@ -30046,15 +25956,15 @@ mhP mhP mhP mhP -mFm -mFm -uRn -mFm -mFm +fhS +fhS +cuU +fhS +fhS xYx -mFm +fhS nNd -pyp +roz nNd caS caS @@ -30067,10 +25977,10 @@ kOV eni eni lnR -hpc -grd -kMg -hpc +ulN +aHJ +dpW +ulN fEU eET hRQ @@ -30104,73 +26014,73 @@ puZ puZ puZ puZ +wMh +jmW +jmW +wMh +puZ +puZ +puZ +puZ +lju +rUc +qDN +oRX +aFO +fJZ +aFO +aFO +aFO +aFO +aFO +xAS +oRH +oRH +xAS +xAS +kvQ +iOu +kLM +kLM +kLM +kLM +kLM +uqb +uqb +uqb +uqb +kLM +iQq +uqb +uqb +kLM +kLM +kLM +uqb +uqb +uqb +uqb +kLM +uqb +kLM +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ -aaU -uoZ -aav -aau -dRb -dRb -aau -clK -clK -aau -dRb -dRb -dRb -dRb -aaL -abL -dCY -asz -gha -uuN -sNX -rZt -chU -gAV -chU -rZt -asz -dnH -jft -ghS -asz -goj -goj -pxA -rZH -vKu -ghU -pxA -vQm -vFX -pxA -pxA -wnK -wnK -wnK -wnK -wnK -pxA -rZt -vKu -vKu -wnK -vKu -wnK -vKu -wnK -bJi -chU -fww -gaJ -dAt -rZt -rZt -flN -flN -kTd puZ puZ "} @@ -30180,46 +26090,46 @@ puZ puZ caS caS -dsD -mFm -mFm -mFm +eOx +fhS +fhS +fhS mhP mhP -cYR -jBN -lBC -mQl -bjP -jBN -lBC -nlG -kLa -eVa -pBl -mQl -bjP -jBN -lBC -mQl -bjP -jBN -lBC -mQl -aWv +cxj +kRy +scl +kbs +jWw +kRy +scl +dIm +tHx +joI +iGO +kbs +jWw +kRy +scl +kbs +jWw +kRy +scl +kbs +lup mhP mhP -mFm -mFm -fOE -mFm -mFm -mFm -mFm +fhS +fhS +wbB +fhS +fhS +fhS +fhS xYx -mFm -mFm -mFm +fhS +fhS +fhS caS caS mMK @@ -30232,7 +26142,7 @@ lnR rdh bQZ rdh -kMg +dpW fEU eET uIC @@ -30265,74 +26175,74 @@ puZ puZ puZ puZ +wMh +wMh +wMh +wMh +puZ +puZ +puZ +puZ +puZ +xAS +lrd +xAS +hTq +aFO +aFO +aFO +aFO +fjJ +hvg +xAS +oRH +aFO +aFO +xAS +aFO +iQq +iQq +iQq +iQq +uqb +uqb +uqb +uqb +kLM +kLM +iQq +gCx +uqb +uqb +qkI +iQq +kLM +kLM +kLM +kLM +gCx +kLM +uqb +uqb +aDM +upf +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ -clK -aav -clK -aav -tkB -tue -dRb -clK -hsu -aav -dRb -dRb -dRb -dRb -dRb -dRb -dRb -dRb -asz -wFB -eSt -wFB -dTU -rZt -gAV -rZt -txX -kRj -qOZ -cEj -qOZ -goj -fwv -goj -bXo -chU -vKu -vKu -wnK -vKu -wnK -vKu -kap -rZt -crF -crF -crF -wnK -vKu -wnK -chU -rZt -chU -rZt -chU -rZt -chU -rZt -chU -mwF -byr -rZt -rZt -flN -flN -kTd -kue puZ puZ "} @@ -30344,43 +26254,43 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -hZu -mFm -sxD -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -sxD -mFm -wpl +vCu +fhS +gGx +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +gGx +fhS +sCV mhP -mFm -iuK -iuK -mFm -mFm +fhS +pde +pde +fhS +fhS xYx -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS xYx caS caS @@ -30394,7 +26304,7 @@ lnR lnR lnR rdh -pVo +cVO iIP eET gNw @@ -30427,74 +26337,74 @@ puZ puZ puZ puZ -clK -aav -hsu -aau -clK -trw -qPj -abL -clK -aav -aaL -dRb -dRb -dRb -dRb -dRb -dRb -dRb -dRb -asz -rZt -byr -rZt -rZt -chU -gAV -chU -iaK -feA -biM -biM -biM -uuv -yhX -goj -pxA -rZt -dTU -hWY -dTU -dTU -dTU -rZt -kap -rZt -crF -crF -crF -wnK -vKu -wnK -chU -rZt -chU -rZt -chU -rZt -chU -rZt -chU -mwF -bgC -flN -flN -rZt -flN -kTd -flN +wMh +xOm +wMh +puZ +puZ +puZ +puZ +puZ +puZ +xAS +xAS +aFO +aFO +aFO +aFO +xAS +xAS +oRH +kDp +oRH +oRH +xAS +tlB +xAS +xAS +kvQ +oUu +uqb +kLM +kLM +uqb +iQq +gCx +kLM +uqb +kLM +iQq +iQq +kLM +kLM +kLM +kLM +kLM +iQq +iQq +kLM +kLM +kLM +uqb +uqb +uqb +kLM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ "} @@ -30506,42 +26416,42 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -sZx -sxD -mFm -mFm -mFm -mFm +bBo +gGx +fhS +fhS +fhS +fhS gkY gkY gkY -iuK -iuK -mFm -aar -mFm -mFm +pde +pde +fhS +kOM +fhS +fhS gkY gkY gkY gkY -mFm -mFm -sxD -cBF +fhS +fhS +gGx +iVu mhP -mFm -iuK -iuK -mFm -mFm -mFm +fhS +pde +pde +fhS +fhS +fhS xYx -mFm -mFm +fhS +fhS caS caS caS @@ -30556,7 +26466,7 @@ lnR lnR lnR rdh -slC +ohw fEU tTi tTi @@ -30588,74 +26498,74 @@ puZ puZ puZ puZ -hsu -pct -clK -clK -aav -clK -aaw -abL -clK -aav -hsu -abD -tkB -tue -dRb -dRb -dRb -dRb -dRb -dRb -asz -eaa -rZt -rZt -rZt -chU -gAV -chU -iaK -kTI -biM -xtI -qOd -goj -wnK -goj -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -pxA -wnK -wnK -wnK -wnK -wnK -pxA -rZt -vKu -vKu -wnK -vKu -wnK -vKu -wnK -bJi -chU -fww -sNX -dAt -flN -rZt -flN -kTd +jmW +oQa +wMh +pcY +pcY +pcY +pcY +pcY +pcY +oRH +xAS +aFO +aFO +aFO +aFO +xAS +oRH +qTv +xAS +aFO +oRH +xAS +oRH +xAS +xAS +xAS +kvQ +uqb +dgG +kLM +kLM +kLM +kLM +kLM +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +gCx +kLM +kLM +uqb +kLM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -30666,16 +26576,16 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS mhP -jLc -mFm -mFm -aar -mFm +nYG +fhS +fhS +kOM +fhS gkY gkY gkY @@ -30685,25 +26595,25 @@ gkY gkY gkY gkY -mFm +fhS gkY gkY gkY gkY -mFm -aar +fhS +kOM gkY -kiv +fBo mhP -mFm -iuK -imq -mFm -mFm -mFm +fhS +pde +boJ +fhS +fhS +fhS xYx -mFm -mFm +fhS +fhS caS caS caS @@ -30749,75 +26659,75 @@ puZ puZ puZ puZ -clK -uoZ -hsu -aau -aaP -clK -aau -aau -clK -aaE -aau -hsu -uoZ -trw -qPj -dRb -dRb -dRb -dRb -dRb -dRb -asz -rZt -bgC -rZt -rZt -chU -gAV -chU -rZt -asz -biM -biM -biM -goj -lpA -uWA -pxA -tNP -lFp -jcv -fqJ -cSn -pxA -pxA -pxA -rZH -rZt -chU -rZt -rZt -pxA -pxA -pxA -wnK -mwF -mwF -mwF -mwF -vKu -mwF -chU -uOR -uuN -acP -flN -pxA -flN -kTd +wMh +cqH +jmW +sIj +ntJ +ntJ +wMh +wMh +wMh +oRH +xAS +aFO +aFO +aFO +oRH +xAS +noB +tlB +xAS +aFO +xAS +xAS +oRH +oRH +bIT +oQE +xMz +xMz +uqb +uqb +kLM +kLM +gCx +iQq +iQq +cQW +cQW +cQW +iQq +iQq +iQq +gGH +iQq +iQq +cQW +cQW +cQW +cQW +kLM +iQq +iQq +iQq +kLM +uqb +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -30828,16 +26738,16 @@ puZ puZ caS caS -aiK -mFm -mFm -mFm +aSq +fhS +fhS +fhS mhP -mEp -mFm -mFm -mFm -mFm +knR +fhS +fhS +fhS +fhS gkY gkY gkY @@ -30853,21 +26763,21 @@ gkY gkY gkY gkY -mFm +fhS gkY -ylP +uSz mhP -mFm -axq -jSb -tEr -mFm -mFm -mFm -mFm -fOE -mFm -mFm +fhS +pqg +lWM +dGR +fhS +fhS +fhS +fhS +wbB +fhS +fhS caS caS mMK @@ -30911,75 +26821,75 @@ puZ puZ puZ puZ -aav -clK -abC -clK -aau -aav -hsu -clK -clK -aau -clK -pct -hsu -aaL -dRb -dRb -dRb -dRb -aau -aau -dRb -asz -dAt -sNX -dAt -rZt -chU -gAV -chU -rZt -bXo -biM -biM -biM -goj -xJA -goj -bXo -vKu -soj -wnK -wnK -cSn -pxA -pxA -pxA -wnK -wnK -wnK -wnK -wnK -pxA -kRV -pEv -wnK -flN -flN -flN -flN -flN -mwF -chU -fww -sNX -dAt -rZt -pxA -kTd -flN +xOm +wMh +xOm +wMh +wMh +jmW +jmW +wMh +oRH +oRH +xAS +aFO +aFO +xAS +xAS +tlB +eRc +feB +qDN +rVy +oRH +oRH +xAS +sRs +aFc +wMh +xMz +xMz +aDM +uqb +kLM +kLM +gGH +iQq +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +iQq +cQW +cQW +cQW +cQW +kLM +gGH +cQW +iQq +kLM +uqb +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -30992,10 +26902,10 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -iUk +fKM gkY gkY gkY @@ -31017,19 +26927,19 @@ gkY gkY gkY gkY -pGg +bzN mhP -mFm -iuK -bHN -tEr -mFm -mFm -mFm -mFm -mFm -uRn -mFm +fhS +pde +ozl +dGR +fhS +fhS +fhS +fhS +fhS +cuU +fhS caS caS mMK @@ -31073,74 +26983,74 @@ puZ puZ puZ puZ -aav -clK -aav -clK -aav -dRb -dRb -abI -clK -aau -aau -clK -aav -abD -dRb -dRb -aav -aav -hsu -clK -dRb -asz -gha -rZt -sNX -rZt -chU -gAV -chU -rZt -asz -wqc -tOq -hXQ -asz -goj -goj -pxA -vKu -wnK -wnK -cSn -pxA -pxA -sIX -chU -rZt -chU -rZt -wnK -pxA -pxA -nmT -pve -wnK -aPd -aRz -aXi -bag -flN -mwF -chU -mwF -flN -wBf -pxA -pxA -kTd +xOm +wMh +xOm +wMh +wMh +wMh +wMh +wMh +oRH +hBq +xAS +aFO +xAS +xAS +hBq +xAS +pcY +sml +hBq +bnj +xAS +oRH +xAS +xAS +mfc +xMz +xMz +aDM +uqb +uqb +kLM +iQq +iQq +iQq +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +kLM +cQW +iQq +kLM +kLM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -31154,10 +27064,10 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -sZx +bBo gkY gkY gkY @@ -31177,19 +27087,19 @@ gkY gkY gkY gkY -iuK -iuK -rXp +pde +pde +aZJ mhP -mFm -rSL -irt -tEr -mFm -mFm -fOE -mFm -mFm +fhS +uNt +dLy +dGR +fhS +fhS +wbB +fhS +fhS caS caS caS @@ -31234,78 +27144,78 @@ puZ puZ puZ puZ -aav -hsu -aav -aav -clK -dRb -dRb -tkB -tue -xOT -aau -clK -aav -hsu -hsu -abD -rpE -hsu -hsu -uoZ -clK -aat -asz -dAt -sNX -dAt -rZt -chU -gAV -chU -asz -asz -asz -asz -asz -asz -asz -asz -pxA -vdS -wnK -vKu -pxA -pxA -ahu -wnK -wnK -wnK -wnK -mUT -uYt -amu -pxA -nrr -wnK -wnK -aPe -act -acA -bah -flN -mwF -chU -bJi -rZt -flN -flN -rZt -flN +xOm +jmW +xOm +xOm +wMh +abH +wMh +oRH +oRH +hBq +xAS +aFO +aFO +xAS +xAS +oRH +pcY +pcY +pcY +pcY +pcY +rAM +oRH +oRH +xAS +oRH +xMz +xMz +aDM +uqb +kLM +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +kLM +kLM +kLM +aDM +aDM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ -ifQ puZ "} (23,1,1) = {" @@ -31316,10 +27226,10 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -jLc +nYG gkY gkY gkY @@ -31330,7 +27240,7 @@ gkY gkY gkY gkY -mlX +lFw gkY gkY gkY @@ -31339,19 +27249,19 @@ gkY gkY gkY gkY -iuK -iuK -lvj +pde +pde +hOt mhP -mFm -iuK -eRk -mFm +fhS +pde +pQf +fhS wMj wMj -uRn -mFm -mFm +cuU +fhS +fhS mJA caS caS @@ -31396,75 +27306,75 @@ puZ puZ puZ puZ -uoZ -aav -clK -aaL -abD -dRb -dRb -trw -qPj -abD -hsu -aau -clK -aau -clK -uoZ -rpE -aav -aav -clK -aav -aat -asz -asz -asz -asz -asz -chU -gAV -chU -adS -aea -ptr -aew -aew -aex -asz -asz -lXy -nxA -vKu -vKu -bUe -rZt -chU -rZt -chU -dwQ -wnK -pxA -amu -amu -pxA -nzf -wnK -wnK -aQm -aXc -aXI -bbG -flN -mwF -chU -bJi -bJi -wBf -flN -kTd -kTd +cqH +xOm +wMh +wMh +wMh +oRH +oRH +oRH +tlB +tlB +xAS +aFO +aFO +xAS +oRH +oRH +pcY +pcY +pcY +pcY +pcY +pcY +dmI +tlB +xAS +oRH +xMz +xMz +kLM +uqb +kLM +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +iQq +iQq +kLM +kLM +uqb +kLM +uqb +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -31478,10 +27388,10 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -mEp +knR gkY gkY gkY @@ -31501,25 +27411,25 @@ gkY gkY gkY gkY -iuK -iuK -gkK +pde +pde +rGf mhP -mFm -iuK -iuK -mFm +fhS +pde +pde +fhS wMj wMj -mFm -mFm -mFm -qWS +fhS +fhS +fhS +hhv hHY -tEr -mFm +dGR +fhS mhP -slj +jYP waE ntc ntc @@ -31558,74 +27468,74 @@ puZ puZ puZ puZ -rpE -rpE -rpE -dRb -dRb -dRb -dRb -dRb -dRb -abO -aav -hsu -aaE -aav -aau -clK -rpE -aav -aaP -aav -clK -aat -aat -aat -aat -dRb -asz -chU -gAV -chU -adT -rZt -rZt -rZt -rZt -mRU -aex -asz -nVn -iCJ -pxA -pxA -pxA -wnK -wnK -wnK -wnK -mUT -wnK -amu -jrg -jrg -pxA -nHH -pDp -wnK -flN -flN -flN -flN -flN -mwF -rZt -rZt -mwF -pxA -kTd -kTd +iok +jmW +jmW +pcY +pcY +xAS +oRH +oRH +tlB +xAS +tlB +xAS +xAS +oRH +xAS +oRH +pcY +pcY +pcY +pcY +pcY +pcY +baA +ahj +tlB +ahj +baA +xMz +uqb +kLM +iQq +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +boD +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +iQq +iQq +iQq +iQq +iQq +kLM +lMO +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -31640,10 +27550,10 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -iUk +fKM gkY gkY gkY @@ -31665,23 +27575,23 @@ gkY gkY gkY gkY -pGg +bzN mhP -otV -iuK -iuK -iuK -iuK -iuK -iuK -iuK -iuK -uFA +oCQ +pde +pde +pde +pde +pde +pde +pde +pde +gHw dkP -tEr -mFm +dGR +fhS mhP -rOv +njD vYm vYm ntc @@ -31715,78 +27625,78 @@ tlB puZ wMh wMh -aFO -fuz -aFO -dJl -fuz -aFO +tlB +nzn +tlB +pdb +nzn +xAS wMh abB -dRb -dRb -dRb -dRb -dRb -dRb -tkB -tue -aav -hsu -clK -clK -aav -rpE -clK -aav -clK -aav -clK -clK -clK -clK -dRb -asz -chU -gAV -chU -adV -rZt -rZt -rZt -rZt -rZt -mOu -asz -asz -asz -asz -asz -rZt -flN -rZt -rZt -dwQ -pxA -amu -amu -jrg -jrg -pxA -mWE -pJA -wnK -mwF -mwF -mwF -mwF -vKu -bJi -bJi -chU -mwF -pxA -flN +pcY +pcY +xAS +xAS +tlB +xAS +tlB +xAS +tlB +oRH +ben +vpD +vpD +pcY +pcY +pcY +pcY +pcY +pcY +pcY +tlB +xAS +tlB +tlB +xMz +uqb +uqb +kLM +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +iQq +iQq +iQq +kLM +kLM +ath +aDM +kLM +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -31800,16 +27710,16 @@ puZ puZ caS caS -aiK -mFm -mFm -mFm +aSq +fhS +fhS +fhS mhP -sZx -mFm -mFm -mFm -mFm +bBo +fhS +fhS +fhS +fhS gkY gkY gkY @@ -31825,25 +27735,25 @@ gkY gkY gkY gkY -mFm +fhS gkY -cBF +iVu mhP -apY -iuK -iuK -iuK -iuK -wck -iuK -iuK -iuK -rOv +gen +pde +pde +pde +pde +qom +pde +pde +pde +njD vom -mFm -mFm +fhS +fhS mhP -rOv +njD vYm vYm vYm @@ -31877,77 +27787,77 @@ tlB tlB oRH oRH -elN +uFg jmW -tPs -elN +uTs +uFg jmW -tPs -abv -wMh -dRb -dRb -dRb -dRb -dRb -dRb -trw -qPj -clK -uoZ -clK -aav -clK -rpE -aav -clK -uoZ -mOT -uoZ -aav -dRb -dRb -dRb -asz -rZH -gAV -chU -adW -aeb -rZt -miD -miD -adi -aCB -asz -asz -asz -asz -wnK -wnK -wnK -wnK -dwQ -flN -jrg -jrg -jrg -jrg -jrg -pxA -pxA -pxA -wnK -wnK -vKu -wnK -vNN -wnK -rZt -mwF -chU -mwF -pxA +eDA +sng +wMh +pcY +aFO +aFO +wMh +lWv +lWv +wMh +xAS +oRH +oRH +vpD +vpD +qFx +pcY +pcY +pcY +pcY +pcY +pcY +tlB +xAS +aFO +xAS +tlB +xMz +uqb +uqb +uqb +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +iQq +kLM +kLM +lNg +uqb +kLM +kLM +dkx +kAw +kAw +puZ +puZ +puZ +puZ puZ puZ puZ @@ -31962,16 +27872,16 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS mhP -jLc -mFm -mFm -aar -mFm +nYG +fhS +fhS +kOM +fhS gkY gkY gkY @@ -31981,31 +27891,31 @@ gkY gkY gkY gkY -mFm +fhS gkY gkY gkY gkY -mFm -aar +fhS +kOM gkY -kiv +fBo mhP -mFm -iuK -iuK -mFm -uRn -vbA -mFm -mFm -mFm -iLf +fhS +pde +pde +fhS +cuU +wQr +fhS +fhS +fhS +odT mhP -mFm -mFm +fhS +fhS mhP -slj +jYP gRx ntc vYm @@ -32025,9 +27935,9 @@ eET eET eET eET -hpc -fLX -hpc +ulN +dRz +ulN eET wMh wMh @@ -32036,80 +27946,80 @@ oRH oRH jVi oRH +tlB +tlB +tlB +rlo +xoe +xAg +tlB +njL +tlB xAS +wMh +wMh aFO +wMh +dNh +pKx +lWv +lWv +wMh +hBq +xAS +vpD +vpD +vpD +hHi +hBB +pcY +pcY +pcY +pcY +iYv +xAS aFO -vtz -pMV -jqo -aFO -pMV -aFO -aFO -wMh -wMh -dRb -dRb -dRb -dRb -dRb -dRb -dRb -uoZ -clK -aav -clK -aav -dRb -leg -uoZ -hsu -pct -dRb -dRb -dRb -dRb -dRb -asz -chU -gAV -chU -asz -asz -aed -asz -asz -aez -mRU -aeQ -asz -asz -rZt -flN -rZt -dwQ -flN -flN -amu -bJj -jrg -jrg -jrg -jrg -jrg -jrg -pxA -wnK -wnK -pxA -pxA -pxA -pxA -pxA -mwF -chU -mwF -pxA +xAS +tlB +xMz +aDM +uqb +uqb +kLM +iQq +iQq +iQq +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +kLM +cQW +iQq +kLM +kLM +wgM +kLM +ath +iQq +dkx +cwZ +kAw +puZ +puZ +puZ +puZ puZ puZ puZ @@ -32126,42 +28036,42 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -mEp -sxD -mFm -mFm -mFm -mFm +knR +gGx +fhS +fhS +fhS +fhS gkY gkY gkY -iuK -iuK -mFm -aar -mFm -mFm +pde +pde +fhS +kOM +fhS +fhS gkY gkY gkY gkY -mFm -mFm -sxD -ylP +fhS +fhS +gGx +uSz mhP -mFm -qyC -irt -tEr -mFm -mFm -mFm -ftm -mFm +fhS +csM +dLy +dGR +fhS +fhS +fhS +tTm +fhS las caS caS @@ -32187,9 +28097,9 @@ bmv fEU fEU fEU -hpc -pul -hpc +ulN +bRA +ulN fEU wMh pcY @@ -32198,80 +28108,80 @@ jmW tlB oRH xAS -aFO -vtz -aFO -aFO +tlB +nTs +xAS +tlB mCQ pPK eFI -aFO -vtz -gva -aFO +tlB +nTs +xGh +xAS wMh eFI wMh -dRb -dRb -dRb -dRb -dRb -hsu -aav -aav -dRb -dRb -dRb -aaw -aav -aav -dRb -dRb -lSU -lSU -lSU -lSU -lSU -chU -gAV -rZt -dTU -dTU -dTU -rZt -fNE -aeC -rZt -aeR -asz -wnK -dwQ -wnK -wnK -wnK -dwQ -bJj -bJj -jrg -jrg -bJj -osE -jrg -jrg -jrg -pxA -wnK -wnK -pxA -pxA -pxA -pxA -pxA -vKu -vKu -vKu -pxA +dNh +dNh +eZL +lWv +wMh +wMh +wMh +fHq +ben +vpD +vpD +vpD +pcY +pcY +pcY +pcY +tlB +tlB +xAS +tlB +xAS +xMz +aDM +uqb +uqb +uqb +kLM +gGH +iQq +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +cQW +kLM +cQW +cQW +cQW +cQW +kLM +gGH +cQW +kLM +uqb +lNg +erj +kLM +tcp +iQq +dkx +cwZ +kAw +kAw +hrk +puZ +puZ puZ puZ puZ @@ -32288,42 +28198,42 @@ caS caS caS caS -mFm -mFm +fhS +fhS mhP -lgx -mFm -sxD -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -sxD -mFm -hpN +hfD +fhS +gGx +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +gGx +fhS +wsF mhP -mFm -wgX -wgX -mFm -mFm -mFm -aWb -hlO -jMD +fhS +kat +kat +fhS +fhS +fhS +inS +uLi +hME caS caS caS @@ -32349,9 +28259,9 @@ fEU fEU fEU fEU -hpc -hpc -hpc +ulN +ulN +ulN fEU wMh pcY @@ -32359,81 +28269,81 @@ pcY jmW wMh oRH -aFO -aFO -oRH -oRH +tlB +tlB +xAS +xAS wMh pcY jmW nuY wMh -elN +uFg jmW -tPs +uTs wMh wMh wMh wMh +dNh +siJ +lWv wMh -dRb -dRb -aav -uoZ -clK -aav -dRb -dRb -dRb -dRb -dRb -dRb -dRb -dRb -lSU -rHO -rHO -rRP -lSU -chU -gAV -gAV -gAV -gAV -gAV -chU -fNE -aeP -miD -aiV -asz -rZt -rZt -rZt -rZt -flN -amu -fXX -bJj -jrg -bJj -bJj -bJj -bJj -bJj -osE -pxA -wnK -wnK -pxA -pxA -pxA -pxA -pxA -mwF -chU -mwF -pxA +ntJ +ntJ +wMh +wMh +wMh +wMh +oRH +pcY +pcY +pcY +pcY +baA +ahj +xAS +ahj +baA +xMz +cnt +cnt +uqb +xvb +kLM +gCx +kLM +iQq +cQW +cQW +cQW +iQq +iQq +iQq +gGH +kLM +kLM +cQW +cQW +cQW +cQW +kLM +iQq +iQq +kLM +kLM +lNg +xMz +xMz +iQq +kLM +dkx +cwZ +kAw +kAw +hrk +fEv +puZ puZ puZ puZ @@ -32448,46 +28358,46 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS mhP mhP -ujV -kIH -aHQ -luR -xEd -kIH -aHQ -fxw -hSq -wfO -kcB -luR -xEd -fLz -aHQ -luR -xEd -kIH -aHQ -luR -agF +bix +qzB +qbs +hRb +jXs +qzB +qbs +rgW +rLM +qTR +aZK +hRb +jXs +uar +qbs +hRb +jXs +qzB +qbs +hRb +rLn mhP mhP -mFm -iuK -iuK -mFm -slj -crk -hum -qUw -mFm -mFm -cBB +fhS +pde +pde +fhS +jYP +lDO +afa +jlm +fhS +fhS +rWe wMj wMj mMK @@ -32530,72 +28440,72 @@ pcY pcY pcY wMh -aFO -pMV -dJl -aFO -aFO -aFO +tlB +xoe +nYU +xAS +xAS wMh -eFI +dNh +dNh wMh -dRb -rpE -rpE -rpE -dRb -dRb -dRb -dRb -dRb -dRb -dRb -dRb -dRb -ocl -dwQ -dwQ -dwQ -bXo -rZt -dTU -dTU -rZt -gAV -gAV -chU -asz -asz -asz -asz -asz -wnK -wnK -dwQ -wnK -fXX -bJj -bJj -gpz -gpz -gpz -bJj -osE -osE -gpz -gpz -xTK -fXX -fXX -jrg -jrg -jrg -jrg -pxA -xcE -ggL -xcE -pxA +lWv +wMh +jmW +ntJ +jmW +ntJ +wMh +wMh +pcY +pcY +pcY +pcY +pcY +pcY +tlB +xAS +xAS +hBq +xMz +xMz +xMz +xMz +oqf +uqb +kTP +kLM +kLM +iQq +iQq +iQq +kLM +iQq +iQq +iQq +iQq +iQq +kLM +kLM +iQq +iQq +iQq +qkI +iQq +uqb +kLM +aDM +xMz +xMz +xMz +iQq +dkx +cwZ +kAw +kAw +kAw +hrk +puZ puZ puZ puZ @@ -32610,11 +28520,11 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS +fhS mhP mhP mhP @@ -32638,18 +28548,18 @@ mhP mhP mhP mhP -mFm +fhS wMj wMj -iuK -mFm -kEh -jMD -jMD -rOv -vbA -mFm -cBB +pde +fhS +gGU +hME +hME +njD +wQr +fhS +rWe wMj wMj mMK @@ -32692,72 +28602,72 @@ pcY pcY pcY ouS -aFO -jpp +tlB +aGA wMh wMh wMh +tlB +xAS wMh -aFO -aFO wMh -abP wMh +jmW +wMh +wMh +ntJ +jmW wMh -abB pcY pcY +tlB +hBq +tlB pcY -lSU -dRb -dRb -abY -abY -dRb -lSU -dwQ -dwQ -lSU -lSU -lSU -lSU -lSU -shO -gAV -gAV -chU -rZt -rZt -ahB -rZt -rZt -rZt -rZt -rZt -rZt -bJj -bJj -osE -gpz -bJj -bJj -bJj -bJj -bJj -gpz -gpz -rad -fXX -osE -gRJ -jrg -jrg -jrg -pxA -mwF -chU -mwF -pxA +hBq +tlB +xAS +aFO +tlB +hBq +xMz +xMz +xMz +xMz +aDM +uqb +kLM +gCx +kLM +kLM +kLM +kLM +kLM +kLM +iQq +iQq +kLM +iQq +iQq +kLM +uqb +iQq +iQq +iQq +kLM +xvb +uqb +uCs +xMz +xMz +xMz +xMz +cwZ +cwZ +kAw +kAw +kAw +hrk puZ puZ puZ @@ -32774,44 +28684,44 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde wMj wMj -iuK -mFm -hjx -vbA -mFm -rOv -mFm -ftm -slj +pde +fhS +jjd +wQr +fhS +njD +fhS +tTm +jYP wMj wMj wMj @@ -32854,72 +28764,72 @@ pcY pcY pcY laz -aFO -aFO +tlB +tlB yjM kSO qBM -wMh -aFO -aFO -wMh +tlB +tlB xAS xAS -abQ +xAS +xAS +hBq wMh -pcY -pcY -pcY -lSU -dRb -abX -ors -ors -lSU -lSU -dwQ -dwQ -lSU -ada -ady -adE -lSU -goj -goj -goj -goj -goj -goj -goj -goj -goj -wnK -wnK -dwQ -flN -fXX -bJj -bJj -osE -bJj -bJj -gpz -gpz -bJj -bJj -xuz -ciL -bJj -bJj -bJj -jrg -jrg -jrg -amu -fXX -fXX -fSR -amu +wMh +ntJ +wMh +ahj +xAS +hBq +tlB +tlB +hBq +tlB +tlB +tlB +xAS +aFO +tlB +xAS +tlB +xAS +kvQ +kLM +xvb +kLM +kLM +kLM +kLM +kLM +gCx +kJQ +kLM +qkI +iQq +kLM +iOu +kLM +iQq +qkI +lNg +kLM +lNg +uqb +uqb +xMz +xMz +xMz +xMz +xMz +xMz +cwZ +cwZ +kAw +kAw +kAw +kAw puZ puZ puZ @@ -32936,44 +28846,44 @@ caS caS caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -iuK -iuK -sWt -pJp -ftm -umj -hjx -vOd -slj -mFm -hlO -kAp +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +pde +pde +vFy +lYr +tTm +jod +jjd +ezh +jYP +fhS +uLi +exC wMj wMj wMj @@ -33011,77 +28921,77 @@ wMh tQn nBo tlB -oRH +xAS sFj pcY kBo obH -aFO -aFO +tlB +tlB cQY rJI gso -pcY -wMh +tlB +tlB +tlB +oRH wMh -aFO -aFO +tlB +xAS xAS wMh -iZI -ntJ ntJ -pcY -lSU -abV -skl -skl -ors -elw -dwQ -dwQ -dwQ -lSU -ada -dwQ -dwQ -adI -goj -chU -goj -chU -chU -chU -goj -chU -aiD -rZt -flN -rZt -dwQ -bJj -osE -bJj -osE -osE -osE -gpz -bJj -gpz -gpz -bJj -ciL -gpz -bJj -xuz -jrg -jrg -jrg -amu -bJj -fSR -fXX -amu +wMh +eNx +hBq +tlB +tlB +xAS +xAS +xAS +xAS +xAS +xAS +xAS +aFO +xAS +tlB +xAS +cdh +aDM +uqb +kLM +kLM +uqb +uqb +kLM +kLM +kLM +iQq +bzK +iQq +iQq +kLM +kLM +iQq +iQq +iQq +iQq +iQq +iQq +iQq +xMz +xMz +xMz +xMz +xMz +xMz +kAw +kAw +kAw +kAw +kAw +kAw puZ puZ puZ @@ -33096,46 +29006,46 @@ puZ puZ caS caS -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -mFm -aqb -iuK -iuK -mFm -arB -kdd -mFm -mFm -mFm -mFm -mFm -uDZ -bFP -mFm -aqb -iuK -iuK -mFm -arB -uTM -jMD -ftm -mFm -ftm -jMD -jMD -jMD +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +fhS +rOT +pde +pde +fhS +xBN +keh +fhS +fhS +fhS +fhS +fhS +mRL +usK +fhS +rOT +pde +pde +fhS +xBN +maf +hME +tTm +fhS +tTm +hME +hME +hME wMj wMj mMK @@ -33172,78 +29082,78 @@ wMh pcY pcY pcY -xeq -aFO +hqe +xAS tze wMh wMh pWn -aFO -tTc +tlB +irl cQY aNy xtc -nKD +tlB wMh wMh -vtz -aFO -aFO +tlB +tlB +tlB +xAS xAS wMh wMh -ntJ +aaA wMh -lSU -sgB -skl -skl -ors -dwQ -elw -dwQ -dwQ -adI -adj -dwQ -adH -lSU -goj -wnK -goj -wnK -wnK -wnK -goj -txU -goj -rZt -rZt -flN -asz -jrg -jrg -jrg -osE -osE -osE -osE -bJj -bJj -bJj -bJj -sLj -sLj -tnG -jrg -jrg -jrg -jrg -nkH -bJj -fXX -fSR -amu +xAS +tlB +xAS +xAS +aFO +aFO +aFO +aFO +aFO +tlB +xAS +aFO +xAS +tlB +kLM +uqb +kLM +kLM +kLM +kLM +kLM +iQq +iQq +kLM +iQq +iQq +iQq +iQq +kLM +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +xMz +xMz +xMz +xMz +xMz +xMz +kAw +kAw +kAw +kAw +kAw +kAw puZ puZ puZ @@ -33258,46 +29168,46 @@ puZ puZ caS caS -mFm -mFm -mFm +fhS +fhS +fhS caS caS -mFm -mFm +fhS +fhS caS caS -mFm -lTL +fhS +wAk caS voH -slj -vOd -vOd -slj +jYP +ezh +ezh +jYP las caS -mFm -mFm +fhS +fhS wMj wMj -mFm -mFm +fhS +fhS caS voH -slj -vFq -ghK -slj +jYP +bFQ +pSV +jYP las caS -gPZ -mFm -ftm -jMD -jMD -sJs -jMD +rof +fhS +tTm +hME +hME +uOr +hME wMj wMj mMK @@ -33335,77 +29245,77 @@ wMh cQY xhU wMh -aFO -aFO -dJl -fuz -dJl -aFO -aFO -pXU +tlB +tlB +pdb +nzn +pdb +tlB +tlB +fuA wMh wMh -aFO +tlB +hBq +tlB +tlB +oRH +tlB +tlB wMh wMh wMh -eFI +wMh +eNx +hBq +aFO +aFO +aFO +aFO aFO aFO xAS -wMh -ntJ -wMh -lSU -kbT -skl -skl -ors -lSU -lSU -dwQ -dwQ -lSU -dwQ -dwQ -dwQ -lSU -dtE -rZt -rZt -iXr -pue -wui -rZt -rZt -goj -asz -asz -asz -asz -asz -asz -jrg -jrg -jrg -bJj -bJj -bJj -gpz -osE -osE -bJj -osE -osE -jrg -jrg -jrg -jrg -jrg -bJj -gRJ -bJj -amu +tlB +tlB +tlB +xAS +aFO +xAS +kvQ +uqb +aDM +iQq +kLM +kLM +iQq +uqb +uqb +iQq +iQq +iQq +iQq +iQq +kLM +kLM +iQq +iQq +uqb +lNg +lNg +xvb +uqb +xMz +xMz +xMz +xMz +xMz +xMz +kAw +nZA +kAw +kAw +nZA +kAw puZ puZ puZ @@ -33421,16 +29331,16 @@ puZ caS caS caS -mFm -mFm +fhS +fhS caS caS -mFm -mFm +fhS +fhS caS caS -mFm -mFm +fhS +fhS caS caS mhP @@ -33439,12 +29349,12 @@ mhP mhP caS caS -mFm -mFm +fhS +fhS wMj wMj -mFm -mFm +fhS +fhS caS caS xRy @@ -33453,12 +29363,12 @@ mhP xru caS caS -cZE -cZE -slj -qjZ -jMD -jMD +pHo +pHo +jYP +tPr +hME +hME wMj wMj wMj @@ -33496,78 +29406,78 @@ oRH oRH cQY oRH -sIP -aFO -aFO -elN +rXg +tlB +tlB +uFg jmW -tPs -aFO +uTs +tlB wMh wMh wMh -aFO -aFO +tlB +tlB +tlB +tlB +oRH +tlB +tlB +xAS +wMh wMh -aFO wMh +wMh +ahj +xAS +tlB +xAS aFO +xAS +xAS +tlB +tlB +xAS +xAS +xAS aFO -tTc +xAS aFO -vaT -wMh -wMh -lSU -xFP -mIx -aca -wPp -wPp -lSU -dwQ -dwQ -lSU -gpb -adC -adC -lSU -goj -wnK -goj -gKE -pue -iYc -onM -wnK -goj -asz -afz -azH -agZ -aUS -asz -jrg -jrg -jrg -jrg -jrg -bJj -gpz -osE -osE -gpz -bJj -bJj -mKF -jrg -jrg -gRJ -sUD -hXH -apD -hXH -czI +fKb +kLM +iQq +kLM +kLM +kLM +kLM +uqb +iOu +kLM +iQq +iQq +iQq +iQq +iQq +iOu +iQq +iQq +uqb +xHv +auF +auF +hzJ +hzJ +xMz +xMz +xMz +xMz +xMz +kAw +nZA +nZA +kAw +kAw +kAw puZ puZ puZ @@ -33595,10 +29505,10 @@ wMj wMj caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS caS caS wMj @@ -33609,17 +29519,17 @@ wMj wMj caS caS -jMD -jMD -jMD -jMD +hME +hME +hME +hME caS caS wMj wMj wMj wMj -hDo +hCh wMj wMj wMj @@ -33657,80 +29567,80 @@ aFO aFO aFO wfP -oRH +xAS tlB oRH -aFO -dJl -hCa -dJl -aFO -aFO +tlB +pdb +hdO +pdb +tlB +tlB wMh wMh -aFO -aFO -aFO -aFO -aFO -aFO -aFO -vtz -aFO +hBq +wMh +wMh +hBq +tlB +tlB +xAS +tlB +wMh +jmW +pcY +pcY +pcY +pcY +hBq +xAS +xAS +pcY +pcY +xAS +xAS +xAS xAS -wMh -pcY -lSU -wPp -wPp -acb -wPp -wPp -lSU -dwQ -dwQ -lSU -lSU -lSU -lSU -lSU -goj -chU -dsY -hTb -pRH -lpA -goj -chU -goj -fNE -afV -rZt -rZt -aCB -asz -jrg -jrg -jrg -jrg -bJj -bJj -bJj -gpz -gpz -gpz -bJj -bJj -bJj -jrg -gRJ -bJj -osE -gpz -bJj -bJj -jrg -puZ +bfw +cmN +tlB +uji +uji +uji +uji +uji +uAd +kbK +jpE +iQq +kLM +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +kLM +kLM +qoU +hXB +hzJ +hzJ +hzJ +xMz +xMz +xMz +xMz +kAw +kAw +kAw +kAw +kAw +kAw +hrk +hrk puZ puZ puZ @@ -33757,10 +29667,10 @@ wMj wMj caS caS -mFm -mFm -mFm -mFm +fhS +fhS +fhS +fhS caS caS wMj @@ -33771,17 +29681,17 @@ wMj wMj caS caS -jMD -jMD -hlO -jMD +hME +hME +uLi +hME caS caS wMj wMj wMj wMj -hDo +hCh wMj wMj wMj @@ -33823,76 +29733,76 @@ pZB wMh wMh aaA -elN +uFg jmW -swV -aFO -aFO -aFO -wMh -wMh -wMh -aFO -wMh +cut +xAS +xAS +tlB wMh +hBq +tlB wMh -aFO -vtz +tlB +oRH +tlB +tlB wMh wMh +ntJ pcY pcY -lSU -wPp -wPp -wPp -wPp -wPp -lSU -elw -dwQ -dwQ -dwQ -dwQ -lSU -lQm -goj -chU -goj -dqH -rZt -sCl -onM -chU -goj -fNE -afX -rZt -rZt -ahS -asz -jrg -jrg -jrg -jrg -bJj -bJj -bJj -osE -bJj -bJj -gpz -bJj -bJj -jrg -osE -bJj -bJj -gpz -bJj -jrg -jrg -puZ +pcY +pcY +tlB +hBq +xAS +pcY +pcY +pcY +xAS +kmD +gcH +xAS +fUa +tlB +uji +uji +uji +uji +uji +kLM +kLM +knI +iQq +iQq +iQq +iQq +iQq +iQq +iQq +iQq +kLM +uqb +uqb +uqb +qEB +hzJ +hzJ +hzJ +hzJ +kAw +hrk +kAw +kAw +kAw +kAw +kAw +nZA +kAw +kAw +kAw +kAw puZ puZ puZ @@ -33985,77 +29895,77 @@ pcY gXW gXW kQW -dJl -ylU -dJl -aFO -wMh +nYU +nGD +nYU +tlB wMh -aFO wMh -aFO -aFO -aFO +xAS wMh -aFO -aFO +tlB +tlB +tlB +tlB xAS +tlB +wMh +wMh wMh pcY pcY pcY -wPp -wPp -wPp -lSU -lSU -lSU -lSU -dwQ -oaO -dwQ -dwQ -dwQ -bXo -rZt -goj -vuj -goj -eaz -rZt -nwd -goj -wnK -goj -fNE -aud -rZt -rZt -ahT -asz -jrg -jrg -jrg -jrg -bJj -bJj -bJj -bJj -bJj -bJj -bJj -gpz -gpz -bJj -osE -bJj -gpz -gpz -bJj -jrg -jrg -puZ -puZ +pcY +hBq +tlB +pcY +pcY +pcY +uKZ +iMA +aYy +bbj +aYy +iMA +uKZ +uji +uji +uji +uji +uji +uji +qhm +qhm +kXs +mcH +mcH +mcH +mcH +mcH +mcH +mcH +mcH +pNo +qhm +qhm +hzJ +hzJ +hzJ +hzJ +hzJ +kAw +kAw +kAw +hrk +hrk +kAw +nZA +nZA +kAw +kAw +kAw +kAw +hrk puZ puZ puZ @@ -34081,10 +29991,10 @@ eni eni caS mBM -slj -vOd -vOd -slj +jYP +ezh +ezh +jYP mJA caS ocb @@ -34095,10 +30005,10 @@ mMK eni caS mBM -slj -ghK -vOd -slj +jYP +pSV +ezh +jYP mJA caS eni @@ -34151,73 +30061,73 @@ mbt mbt abt wMh -aFO -aFO -aFO -aFO -aFO -aFO -fXQ -pcY -wMh -vtz +xAS +tlB +xAS +tlB xAS wMh -pcY wMh +tlB +tlB wMh -wPp -wPp -wPp -lSU -dwQ -dwQ -dwQ -oaO -dwQ -rEW -lSU -lSU -lSU -ehe -bxW -chU -goj -rZt -rZt -rZt -goj -chU -oag -asz -aud -rZt -rZt -tiw -asz -jrg -jrg -jrg -bJj -osE -bJj -bJj -jrg -bJj -osE -bJj -gpz -gpz -gpz -bJj -bJj -gpz -gpz -fXX -jrg -iTQ -puZ -puZ +wMh +wMh +jmW +pcY +pcY +pcY +uji +uKZ +uKZ +uji +uji +uji +uKZ +wYy +wYy +wYy +gMf +wYy +uKZ +uji +kfw +wfp +kfw +uji +uji +kLM +lNE +uqb +iOu +kLM +iQq +iQq +iQq +iQq +kLM +kLM +uqb +uqb +uqb +hzJ +huz +huz +huz +huz +ncS +ncS +ncS +huz +huz +hrk +kAw +kAw +kAw +kAw +kAw +hrk +hrk puZ puZ puZ @@ -34255,7 +30165,7 @@ mMK mMK eni mMK -tnU +wNT ntc aqD vYm @@ -34315,70 +30225,70 @@ gXW mbt abw wMh -aFO -aFO -aFO +tlB +tlB +xAS wMh -sFj -pcY wMh -aFO +tlB xAS wMh -iZI -ntJ +wMh ntJ wMh -wPp -wPp -lSU -dwQ -eBG -dwQ -dwQ -elw -rRP -lSU -cvn -lSU -exm -goj -rWS -fVI -rZt -rZt -rZt -goj -chU -goj -aeU -rZt -rZt -rZt -aCB -asz -jrg -jrg -jrg -osE -bJj -bJj -bJj -jrg -bJj -bJj -bJj -bJj -bJj -bJj -bJj -gpz -bJj -bJj -fXX -fXX -iTQ -puZ +pcY +pcY +pcY +uji +nGm +gxJ +pvv +krd +pvv +pvv +aWY +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +wYy +uji +ofw +kop +kop +kop +tHd +tHd +kyD +kyD +kyD +kyD +tHd +tHd +rtZ +jMf +ofw +ofw +huz +huz +huz +huz +tRN +rdS +xvQ +huz +huz +kAw +kAw +kAw +kAw +nZA +kAw +hrk puZ puZ puZ @@ -34475,72 +30385,72 @@ cxr idR jHg aui -ecz -aFO -aFO -aFO -wMh -jmW -pcY -pcY -pcY -aFO -aFO +pzY +tlB +tlB +tlB xAS -iZI +tlB +tlB +tlB +tlB wMh wMh ntJ -wPp -wPp -lSU -dwQ -lSU -lSU -lSU -lSU -lSU -lSU -dwQ -lSU -qRo -goj -wnK -goj -kMJ -rZt -neS -goj -wnK -oag -asz -agl -rZt -rZt -apk -asz -jrg -jrg -jrg -osE -bJj -bJj -jrg -jrg -bJj -bJj -gpz -gpz -bJj -bJj -bJj -gpz -bJj -fXX -bJj -fXX -amu -puZ +ntJ +pcY +pcY +pcY +uji +exl +nGm +pvv +aTn +pvv +pvv +pvv +pvv +pvv +bfi +pvv +pvv +pvv +pvv +pvv +wYy +hGj +tHd +xvp +kop +eTa +kop +kyD +kyD +kyD +kyD +tHd +kyD +tHd +kop +tHd +fBw +ofw +huz +kys +hDb +rdS +axJ +axJ +xvQ +fXB +ncS +kAw +nZA +kAw +kAw +nZA +kAw +hrk puZ puZ puZ @@ -34640,69 +30550,69 @@ tes sPo wMh tze -aFO -xbm -pcY -pcY -pcY +tlB +tlB +tlB +tlB +xAS +xAS wMh wMh -vtz -aFO -cyW -xAS wMh wMh wMh -iZI -lSU -jis -lSU -acU -acU -lSU -lSU -lSU -fgH -lSU -bYk -goj -chU -dsY -uKo -rZt -wjK -goj -chU -goj -asz -agm -rZt -rZt -ard -asz -asz -asz -jrg -bJj -bJj -bJj -jrg -jrg -jrg -bJj -gpz -bJj -gpz -bJj -osE -jrg -amu -fXX -fXX -bJj -amu -puZ +pcY +pcY +uji +wYy +nGm +pvv +pvv +aTh +aVx +aWI +aYd +baX +bcJ +pvv +pvv +pvv +pvv +pvv +wYy +hGj +tHd +kyD +tHd +kop +tHd +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD +tHd +tHd +tHd +huz +krU +axJ +axJ +trX +uLT +wTT +fXB +ncS +hrk +hrk +nZA +kAw +kAw +kAw +kAw puZ puZ puZ @@ -34801,70 +30711,70 @@ aRL uLf nlx wMh -aFO -aFO +tlB +tlB wMh -jmW -pcY wMh -aFO -aFO -aFO -aFO -vtz -aFO -aFO +wMh +wMh +tlB xAS wMh -iZI wMh -flN -kEs -agw -agw -kEs -wXh -lSU -cvn -lSU -wOO -goj -chU -goj -lfk -rZt -uII -aiD -chU -goj -fNE -aud -rZt -rZt -mRU -ptr -aue -asz -jrg -bJj -gpz -gpz -bJj -jrg -jrg -jrg -gpz -gpz -gpz -bJj -osE -jrg -iTQ -rbq -rbq -rbq -amu -puZ +wMh +ntJ +wMh +wMh +uKZ +wYy +nGm +pvv +pvv +aUw +rVh +aWQ +aVN +aVN +aVN +cmc +aVx +dbH +pvv +pvv +xAK +hGj +kyD +kyD +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kyD +kyD +kyD +huz +axJ +axJ +rBC +rdS +axJ +axJ +tkm +ncS +hrk +hrk +kAw +kAw +kAw +kAw +kAw puZ puZ puZ @@ -34963,72 +30873,72 @@ wMh wMh jJv afY -aFO -tTc +tlB +irl wMh +nBZ +tlB +tlB +tlB +xAS wMh wMh -aFO -aFO -aFO -aFO -aFO -aFO -tTc -vtz -aFO -eFI -xct wMh -kEs -flN -flN -kEs -flN -kOi -lSU -lSU -lSU -lSU -bxW -wnK -goj -aNf -rZt -nBs -goj -txU -goj -fNE -aud -ptr -miD -miD -rZt -ava -asz -asz -dVw -gpz -gpz -bJj -bJj -jrg -bJj -bJj -gpz -bJj -bJj -jrg -jrg -amu -rbq -rbq -rbq -amu -puZ -puZ -puZ +wMh +ntJ +ntJ +uKZ +hAi +nGm +pvv +aTh +aUx +qAx +uUr +bzk +lTM +bzk +uUr +tFu +aWQ +dbH +fhv +wYy +hGj +tHd +tHd +kyD +kyD +tHd +hIO +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +dHc +hOX +qIr +axJ +axJ +axJ +dQq +axJ +huz +huz +huz +hrk +kAw +kAw +kAw +kAw +kAw +cks +oFl puZ puZ puZ @@ -35124,73 +31034,73 @@ wMh ntJ wMh wMh +tlB +tlB +hBq +pcY wMh -aFO -aFO -aFO -aFO -aFO -aFO -wMh -pWY -wMh -wMh -xAS -xAS +tlB +tlB +tlB wMh +pcY +pcY wMh -tig wMh -eFI -flN -kEs -kEs -fgB -kEs -kOi -lSU -coj -coj -lSU -dtE -rZt -rZt -rZt -rZt -mgT -rZt -uvU -goj -fNE -aud -miD -ptr -ptr -rZt -aCB -aeU -dwQ -bJj -bJj -bJj -bJj -bJj -bJj -bJj -bJj -gpz -bJj -bJj -bJj -jrg -amu -gpz -bJj -osE -amu -puZ -puZ -puZ +ntJ +ntJ +uKZ +hAi +nGm +pvv +aTi +wSj +qAx +uUr +qAx +qAx +qAx +uUr +nKC +sLh +qCm +gIQ +wYy +hGj +kop +kop +kop +tHd +kyD +kqk +kyD +kyD +kyD +cJk +kyD +kyD +kyD +kyD +kyD +rQD +ppR +alS +aMW +ans +dQq +axJ +axJ +huz +huz +huz +hrk +nZA +nZA +nZA +kAw +kAw +rBk +cDd puZ puZ puZ @@ -35278,7 +31188,7 @@ oRH oRH tlB wMh -tlB +xAS wMh wMh oRH @@ -35286,71 +31196,71 @@ tlB tlB wMh wMh -aFO -aFO -aFO -aFO -wMh -wMh -wMh -wMh -wMh -iZI -wMh -wMh -wMh +tlB +tlB +hBq +pcY +pcY +ahj +ahj +ahj +pcY +pcY +pcY +pcY wMh -jmW -xct wMh wMh -gCL -flN -kEs -flN -flN -vTc -rMI -dTU -dTU -rMI -goj -wnK -goj -wnK -wnK -wnK -goj -wnK -goj -fNE -aud -rZt -rZt -rZt -nBh -ajg -asz -asz -jrg -jrg -jrg -cBU -cBU -cBU -bJj -bJj -bJj -gpz -bJj -bJj -bJj -bJj -fXX -osE -fXX -amu -puZ +uKZ +wYy +nGm +pvv +aTj +aUz +sLh +uUr +dkq +hIc +dkq +uUr +wLs +aWU +deV +eVG +wYy +hGj +kop +tHd +tHd +kyD +kyD +kqk +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +dHc +hOX +qIr +rdS +axJ +axJ +axJ +axJ +axJ +huz +huz +sax +hrk +nZA +nZA +kAw +kAw puZ puZ puZ @@ -35447,77 +31357,77 @@ wMh oRH oRH wMh -aFO -aFO -aFO -aFO -wMh -wMh -pcY +tlB +tlB +tlB +tlB +tlB +tlB +hBq +tlB +xAS pcY pcY pcY -iZI pcY -wMh -ntJ -wMh -xct -wMh -wMh -wMh -flN -flN -eit -kEs -kEs -flN -rMI -dTU -dTU -rMI -goj -chU -goj -chU -chU -chU -goj -chU -aiD -asz -twt -agY -aha -arK -arU -asz -asz -qNE -qNE -enh -xNO -bJj -cBU -cBU -cBU -bJj -fXX -gpz -gpz -vlD -bJj -bJj -bJj -osE -bJj -amu -amu -amu -amu -amu -amu -amu +uji +uKZ +uKZ +uji +exl +nGm +pvv +fhv +qCm +rVh +aWU +aVx +aVx +aVx +cmc +aVN +deV +dKR +pvv +wYy +hGj +tHd +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kop +tHd +kyD +kyD +kyD +kyD +kyD +dHc +hOX +qIr +aut +rdS +rdS +axJ +axJ +rdS +huz +huz +sax +hrk +kAw +nZA +kAw +kAw +puZ +puZ +puZ +puZ +puZ puZ "} (49,1,1) = {" @@ -35609,77 +31519,77 @@ wMh wMh wMh wMh -aFO -aFO -aFO -aFO -aFO -wMh -pcY -pcY +tlB +tlB +oRH +tlB +tlB +tlB +tlB +tlB +xAS pcY pcY pcY pcY -jmW -abT -wMh -iZI -pWY -wMh -wMh -flN -kEs -kEs -flN -eit -vTc -asz -coj -coj -asz -dtE -goj -goj -goj -goj -goj -goj -aiD -goj -asz -agz -asz -asz -asz -asz -asz -asz -qNE -enh -xNO -acd -cBU -cBU -cBU -bJj -cBU -bJj -gpz -gpz -bJj -bJj -gpz -rbq -fXX -rbq -mwJ -fXX -fXX -fXX -fXX -pLS -amu +uKZ +mWb +jZh +jXf +wYy +nGm +aSA +gIQ +aTj +aVN +aWV +aYx +bbh +beK +pvv +pvv +pvv +pvv +pvv +wYy +hGj +kyD +kyD +kyD +kyD +kyD +kyD +tHd +ofw +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +huz +aut +rdS +aCy +tdc +axJ +axJ +tZW +huz +huz +sax +hrk +kAw +nZA +kAw +kAw +puZ +puZ +puZ +puZ +puZ puZ "} (50,1,1) = {" @@ -35689,15 +31599,15 @@ puZ puZ puZ puZ -anc -anc -anc -anc -anc -ceM -fnx -fnx -ceM +tUF +tUF +tUF +tUF +tUF +cgK +yiE +yiE +cgK ntc aEJ mMK @@ -35769,79 +31679,79 @@ wMh hBq wMh oRH -aFO -aFO -aFO -aFO -aFO -wMh -wMh -wMh -pcY -pcY +tlB +tlB +tlB +oRH +tlB +oRH +tlB +tlB +tlB +tlB pcY pcY pcY pcY -jmW -jmW pcY -lSU -lSU -lSU -lSU -lSU -wBf -kEs -fgB -kEs -flN -asz -asz -asz -asz -asz -asz -tDg -iWX -wZh -asz -rMI -kdy -asz -asz -asz -asz -asz -asz -asz -asz -asz -qNE -xNO -enh -wwW -bJj -bJj -bJj -jrg -cBU -bJj -fXX -fXX -bJj -gpz -bJj -bJj -fXX -vOb -cuJ -fXX -bJj -fXX -fXX -pLS -amu +uKZ +jZh +dWV +nGm +wYy +nGm +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +wYy +hGj +kyD +xvp +tHd +xvp +tHd +tHd +kyD +tHd +kyD +kyD +kyD +kyD +lfv +kyD +xvp +tHd +huz +rdS +axJ +amH +tbR +axJ +rdS +ixC +huz +huz +sax +hrk +kAw +kAw +kAw +kAw +puZ +puZ +puZ +puZ +puZ puZ "} (51,1,1) = {" @@ -35850,16 +31760,16 @@ puZ puZ puZ puZ -anc -anc -iXC -ukU -iPU -anc -edw -bsM -iVj -qII +tUF +tUF +exQ +gMT +reH +tUF +vnI +hTf +fhL +wND ntc ntc eni @@ -35931,15 +31841,13 @@ hBq wMh oRH xAS -aFO -jCZ -pGj -aFO -abH -wMh -wMh -pcY -pcY +tlB +qeJ +icQ +tlB +uAx +oRH +tlB pcY pcY pcY @@ -35948,62 +31856,64 @@ pcY pcY pcY pcY -lSU -lSU -lSU -aSI -aRs -uRt -flN -sBW -rZt -nOB -rMI -rMI -asz -kbZ -wdy -dTU -wnK -dTU -twc -fNE -rZt -uvU -asz -asz -qNE -qNE -qNE -qNE -qNE -qNE -qNE -qNE -cEV -kSW -wwW -cBU -bJj -jrg -jrg -cBU -cBU -bJj -bJj -bJj -bJj -bJj -fXX -osE -gpz -amu -amu -amu -fXX -fXX -fXX -amu +uKZ +wcZ +jvB +jXf +nGm +nGm +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +jpU +uji +iog +jpV +mQE +jpV +jwH +jXD +tHd +kyD +kyD +tHd +tHd +huz +huz +huz +huz +huz +huz +mmI +axJ +rxd +sFv +axJ +rdS +hRC +huz +huz +sax +qCr +kAw +nZA +kAw +kAw +puZ +puZ +puZ +puZ +puZ puZ "} (52,1,1) = {" @@ -36012,16 +31922,16 @@ puZ puZ puZ puZ -anc -tYm -xQJ -xQJ -nTC -odz -bsM -edw -edw -qII +tUF +rlV +hDO +hDO +riu +nCw +hTf +vnI +vnI +wND ntc vYm ntc @@ -36063,7 +31973,7 @@ toD mMK ntc mHn -nmt +fOI lTr nUq kOV @@ -36093,79 +32003,79 @@ tlB wMh oRH xAS -elN +uFg jmW -swV -aFO -wMh -xAS -wMh -pcY -pcY -xbn -qBn -rdp +cut +tlB +oRH +oRH +tlB pcY pcY pcY pcY pcY -lSU -lSU -aOv -afF -rZt -rZt -gLv -afF -wBf -wnK -dTU -pkK -asz -kbZ -chU -kbZ -chU -kbZ -chU -fNE -uvU -rZt -asz -asz -qNE -qNE -qNE -enh -enh -iSG -xNO -iSG -hRF -bax -wwW -wvS -cBU -bJj -bJj -cBU -cBU -bJj -bJj -bJj -qMc -bJj -rbq -osE -gpz -gpz -amu -amu -fXX -fXX -lAb -amu +uji +uji +uji +uji +uKZ +uKZ +uji +uji +uji +qLA +uji +uKZ +dri +wYy +wYy +nGm +uKZ +bFS +ail +ail +ail +uKZ +uji +uji +iMA +iMA +iMA +uKZ +bcw +ofw +aQJ +kyD +kyD +tHd +kop +huz +xmN +ieD +aKR +aDu +huz +axJ +rdS +rti +ieD +axJ +axJ +hIu +huz +huz +sax +sax +nZA +nZA +kAw +kAw +kAw +puZ +puZ +puZ +puZ puZ "} (53,1,1) = {" @@ -36174,16 +32084,16 @@ puZ puZ puZ puZ -anc -uot -xQJ -xQJ -nTC -odz -uCO -bsM -edw -ceM +tUF +ebH +hDO +hDO +riu +nCw +beM +hTf +vnI +cgK ntc aHP ntc @@ -36255,79 +32165,79 @@ wMh wMh wMh oRH -aFO -pMV -aFO -aFO -wMh -wMh -pcY -pcY +tlB +xoe +tlB +oRH +tlB +oRH pcY -xbn -ppb -rdp pcY pcY pcY pcY pcY -lSU -lSU -tSI -rZt -gLv -rZt -gLv -afF -wBf -wnK -dTU -wnK -asz -kbZ -chU -kbZ -sHf -kbZ -chU -ogu -rZt -rZt -asz -asz -qNE -qNE -xNO -iSG -xNO -xNO -xNO -iSG -rwy -bBT -xrC -cBU -cBU -cBU -bJj -bJj -cBU -bJj -bJj -osE -bJj -bJj -bJj -amu -gpz -gpz -amu -amu -fXX -fXX -pLS -amu +uji +uji +wYy +tPw +oDw +aqJ +aHI +sOP +tPw +bKV +bKV +uKZ +nUa +bKV +bKV +bKV +hgh +gyB +wYy +wYy +wYy +wYy +uqV +wYy +way +ivx +jQG +iMA +mGr +sNs +tHd +kyD +kyD +tHd +dHc +hOX +qIr +azS +qny +aDu +aut +kfW +axJ +axJ +axJ +axJ +axJ +rdS +huz +huz +sax +sax +nZA +nZA +kAw +kAw +kAw +puZ +puZ +puZ +puZ puZ "} (54,1,1) = {" @@ -36335,19 +32245,19 @@ puZ puZ puZ puZ -anc -anc -wls -xQJ -emy -nTC -qkt -odz -odz -anc -anc -anc -anc +tUF +tUF +anQ +hDO +bwv +riu +hEw +nCw +nCw +tUF +tUF +tUF +tUF lFX ntc ntc @@ -36418,78 +32328,78 @@ wMh wMh oRH xAS -aFO -aFO +tlB +tlB wMh xAS -ntJ -pcY -pcY -pcY -xbn -qBn -rdp -wMh -wMh -wMh -ntJ +aFO pcY -lSU -lSU -afF -sBW -xDq -aSI -afF -aUT -asz -rMI -rMI -rMI -asz -kbZ -wnK -dTU -wnK -dTU -hfm -asz -rZt -rZq -asz -asz -rdQ -mmW -lLE -aSC -iSG -iSG -atJ -bax -bax -bBT -xrC -cBU -bJj -bJj -cBU -cBU -bJj -fjv -iTQ -osE -gpz -gpz -bJj -amu -gpz -gpz -amu -amu -fXX -fXX -amu -amu +gUc +xgH +xgH +xgH +gQJ +uji +uji +wYy +wYy +wYy +wYy +wYy +wYy +wYy +bKV +bKV +iMA +vHX +aWX +bKV +bKV +bsC +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +wYy +bBw +iMA +mGr +kop +tHd +kyD +kyD +tHd +dHc +hOX +alW +arW +anJ +dQq +hmo +rdS +axJ +dQq +axJ +axJ +axJ +axJ +huz +huz +sax +sax +nZA +nZA +kAw +kAw +kAw +puZ +puZ +puZ +puZ puZ "} (55,1,1) = {" @@ -36497,19 +32407,19 @@ puZ puZ puZ puZ -anc -jWL -nTC -nTC -nTC -nTC -nTC -nTC -pFJ -anc -xkV -fxJ -frV +tUF +qxn +riu +riu +riu +riu +riu +riu +uJv +tUF +qIS +rur +nAz gNM aMu azy @@ -36579,78 +32489,78 @@ aFO xAS oRH xAS +tlB +tlB +xAS aFO -aFO -aFO -wMh xAS -ntJ -pcY -pcY +aFO pcY -xbn -ppb -rdp -wMh -ntJ -wMh -wMh -wMh -lSU -aNL -nmi -afP -asz -asz -aTQ -asz -asz -wnK -dTU -wnK -asz -asz -qkL -fNE -fNE -asz -asz -asz -crF -crF -asz -asz -qNE -iSG -bax -aUQ -xNO -iSG -iSG -iSG -wwW -pPY -wwW -bJj -fjv -fjv -fjv -bJj -fjv -jrg -amu -osE -gpz -gpz -fXX -bJj -gpz -gpz -amu -amu -fXX -fXX -amu +rwj +qkC +tzo +qkC +tGv +exl +wYy +bKV +bKV +bKV +bKV +bKV +bKV +bKV +bKV +bKV +iMA +vHX +bKV +bKV +bKV +bsC +pvv +pvv +pvv +pvv +pvv +pvv +pvv +pvv +wYy +uKZ +uKZ +vPp +tHd +tHd +kyD +kyD +kyD +tHd +huz +pJM +ayZ +rdS +bqO +axJ +bqO +axJ +axJ +axJ +axJ +axJ +axJ +huz +huz +sax +sax +nZA +nZA +nZA +kAw +kAw +cks +oFl +puZ puZ puZ "} @@ -36659,19 +32569,19 @@ puZ puZ puZ puZ -anc -kTN -mCn -uRi -xQJ -qZa -xQJ -qZa -xQJ -nTC -tzu -mae -anc +tUF +boe +jkF +nID +hDO +kOP +hDO +kOP +hDO +riu +cQL +hyF +tUF mHP ntc azB @@ -36741,78 +32651,78 @@ aFO aFO xAS aFO +tlB +tlB +xAS aFO aFO aFO -wMh -wMh -ntJ -pcY -pcY -pcY -xbn -qBn -tyi -wMh -ntJ -ntJ -wMh -wMh -bXo -kxx -bIh -afQ -fNE -rZt -rZt -rZt -rZt -rZt -rZt -rZt -rkc -wnK -rZt -rZt -rZt -asz -asz -hMY -rZt -rZt -asz -asz -qNE -qPi -iSG -iSG -iSG -iSG -bax -iSG -wwW -pOy -wwW -jrg -cBU -fjv -fjv -fjv -jrg -jrg -amu -osE -gpz -osE -osE -bJj -gpz -amu -amu -amu -fXX -fXX -amu +xAS +vQN +aHd +aIG +tzo +iub +wYy +wYy +bKV +bKV +aMK +aNl +aNl +aPn +bKV +bKV +tsU +uKZ +ocB +bKV +bKV +bKV +ceU +ffN +wYy +wYy +wYy +ter +wYy +pvv +khz +wYy +iMA +jaT +sMS +tHd +kyD +kyD +tHd +kyD +kyD +huz +aQq +axJ +axJ +axJ +axJ +jJZ +oXU +axJ +dQq +axJ +axJ +rdS +huz +huz +sax +sax +kAw +kAw +kAw +kAw +kAw +rBk +cDd +puZ puZ puZ "} @@ -36821,19 +32731,19 @@ puZ puZ puZ puZ -anc -lnk -wRi -ffn -ffn -ffn -ffn -ffn -xdT -ryZ -txS -pth -anc +tUF +fGp +nDT +aAK +aAK +aAK +aAK +aAK +uBS +iqR +vPj +cxX +tUF gJI aEJ ntc @@ -36900,81 +32810,81 @@ wMh wMh oRH oRH +xAS +tlB +tlB +cNE +tlB +tlB +xAS aFO aFO aFO -cou -aFO -aFO -xAS -wMh -pcY -jmW -pcY -pcY -aPX -dRi -abA -wMh -wMh -wMh -ntJ -wMh -asz -aNN -afN -afP -fNE -rZt -rZt -rZt -rZt -gGf -rZt -rZt -qVo -wnK -wnK -wnK -rZt -asz -asz -hLB -rZt -rZt -asz -asz -uil -iSG -ayJ -aSC -wwW -wwW -bax -wwW -wwW -cEV -rfv -jrg -amu -iTQ -amu -amu -amu -amu -amu -osE -gpz -osE -osE -bJj -gpz -amu -amu -amu -fXX -fXX -amu +vQN +tzo +qkC +tzo +vQN +wYy +wYy +bKV +bKV +bKV +bKV +kGz +bKV +bKV +ohE +bKV +uKZ +gxJ +wYy +wYy +nGm +uKZ +bwk +cex +cex +cex +uKZ +jmK +pvv +pvv +oCG +kjM +oCG +kyD +kyD +kyD +tHd +ofw +tHd +kyD +huz +huz +avz +avz +axJ +axJ +alO +pJM +rgI +rdS +axJ +kLi +alP +huz +huz +sax +sax +kAw +kAw +nZA +kAw +kAw +kAw +puZ +puZ puZ puZ "} @@ -36983,19 +32893,19 @@ puZ puZ puZ puZ -anc -kTN -mCn -cce -xQJ -qZa -hKS -qZa -kLB -qhJ -qZa -pth -anc +tUF +boe +jkF +qdu +hDO +kOP +cij +kOP +gKV +wlY +kOP +cxX +tUF kXx eni ntc @@ -37068,75 +32978,75 @@ wMh wMh wMh aFO +tlB +xAS aFO xAS -wMh -jmW -jmW -wMh -wMh -wMh -ntJ -wMh -ntJ -wMh -wMh -ntJ -asz -asz -asz -asz -asz -asz -krT -rZt -rZt -rZt -gGf -bDx -asz -kXt -asz -wnK -rZt -asz -asz -kPX -rZt -rZt -asz -asz -qNE -nHp -bax -aUQ -wwW -wwW -bax -wwW -wwW -jrg -jrg -jrg -amu -fXX -fXX -fXX -fXX -fXX -fXX -osE -gpz -bJj -fXX -bJj -iTQ -amu -amu -amu -fXX -fXX -amu +xgj +tzo +qkC +tzo +vQN +wYy +wYy +bKV +bKV +pzj +pzi +bKV +bKV +bKV +bKV +bKV +nGm +bKV +bKV +bKV +bKV +nGm +bKV +bKV +bKV +bKV +iMA +ivc +pvv +pvv +oCG +wRm +oCG +kyD +kyD +kyD +uof +tHd +kyD +kyD +kop +ncS +pTp +pTp +rdS +axJ +alO +huz +qWL +aut +axJ +kLi +kLi +huz +huz +sax +sax +kAw +kAw +nZA +nZA +kAw +kAw +puZ +puZ puZ puZ "} @@ -37145,19 +33055,19 @@ puZ puZ puZ puZ -anc -nTC -nhl -bwJ -bwJ -bwJ -bwJ -bwJ -nrU -rZj -txS -pth -aEd +tUF +riu +bLI +bAr +bAr +bAr +bAr +bAr +aBO +mnR +vPj +cxX +caK ayc qta azy @@ -37231,74 +33141,74 @@ xAS wMh wMh aFO -aFO +tlB xAS -wMh -wMh -ntJ -ntJ -wMh -wMh -lAN -wMh -ntJ -ntJ -wMh -asz -abn -abF -abF -abF -acg -asz -aUU -aXh -mYX -bVr -aXh -aXh -bJf -rkc -wnK -rZt -hMY -asz -asz -crF -crF -asz -asz -xNO -iSG -iSG -iSG -iSG -wwW -xrC -xrC -iSG -enh -jrg -jrg -amu -lAb -fXX -fXX -fXX -fXX -fXX -fXX -bJj -bJj -gpz -osE -bJj -mwJ -bJj -fXX -fXX -fXX -amu +uji +czN +tzo +tzo +aJj +vQN +wYy +wYy +bKV +bKV +aMK +aNl +aNl +aPn +bKV +bKV +bKV +wYy +bKV +bKV +bKV +bKV +lDY +bKV +bKV +rfd +bKV +iMA +biE +wYy +jCp +wYy +iMA +oiI +dxG +tHd +kyD +tHd +kyD +kyD +tHd +kop +ncS +mRc +rdS +aXk +axJ +jFq +huz +qPh +rdS +axJ +axJ +sXt +huz +huz +sax +sax +kAw +kAw +nZA +nZA +nZA +kAw +puZ +puZ puZ puZ "} @@ -37307,19 +33217,19 @@ puZ puZ puZ puZ -anc -kTN -mCn -cce -xQJ -qZa -xQJ -qZa -xQJ -nTC -rSr -aIv -anc +tUF +boe +jkF +qdu +hDO +kOP +hDO +kOP +hDO +riu +dmg +cbX +tUF ayj eni iDn @@ -37394,73 +33304,73 @@ wMh aFO aFO aFO -aFO -aFO -wMh -wMh -ntJ -gvY -ntJ -qXC -wMh -wMh -wMh -wMh -asz -abp -abG -abJ -abG -ach -asz -aWC -aWs -qkR -eRG -sbd -wnK -aXH -rkc -wnK -rZt -fir -asz -asz -rZt -rZt -asz -asz -iSG -iSG -iSG -bax -bax -wwW -xrC -nRL -kSW -enh -jrg -jrg -amu -cur -fXX -fXX -amu -amu -iTQ -bJj -fXX -gpz -gpz -bJj -fXX -cuJ -fXX -bJj -fXX -fXX -amu +tlB +uji +ahX +qkC +tzo +qkC +mhS +exl +wYy +bKV +bKV +bKV +bKV +bKV +bKV +bKV +bKV +bKV +wYy +bKV +bKV +bKV +bKV +wYy +bKV +bKV +bKV +bKV +uKZ +uKZ +iMA +iMA +iMA +uKZ +uKZ +bcw +tHd +kyD +kyD +kyD +tHd +tHd +kop +ncS +bWB +auh +aTO +hkS +itR +oNz +qOE +rdS +axJ +sYx +wFm +huz +huz +sax +sax +kAw +kAw +nZA +hrk +nZA +kAw +puZ +puZ puZ puZ "} @@ -37469,19 +33379,19 @@ puZ puZ puZ puZ -anc -rUN -nTC -nTC -nTC -nTC -nTC -nTC -pFJ -anc -gYd -kWP -anc +tUF +jQX +riu +riu +riu +riu +riu +riu +uJv +tUF +qeN +jzN +tUF eni eni ntc @@ -37556,73 +33466,73 @@ wMh xAS xAS aFO -aFO -aFO -aFO -wMh -tRn -wMh -wMh -wMh -pyB -lAN -wMh -wMh -asz -abp -abJ -abJ -abJ -aSK -aTR -rMI -acY -rZt -bJi -rZt -wnK -aXH -rkc -wnK -wnK -asz -asz -dTj -rZt -rZt -tYA -fNE -iSG -aHz -iSG -bax -bax -eSc -xrC -cBs -xNO -enh -jrg -jrg -amu -amu -fXX -fXX -amu -jrg -osE -bJj -gpz -gpz -gpz -osE -bJj -iTQ -iTQ -amu -amu -amu -amu +xAS +uji +rXn +dsx +dsx +dsx +waS +uji +uji +wYy +wYy +qwk +wYy +wYy +wYy +nwi +bKV +bKV +nGm +bKV +meg +bKV +bbi +dBD +bKV +meg +bKV +bKV +eGG +bKV +bKV +ftr +obb +vHX +iMA +bcw +tHd +kyD +kyD +tHd +kop +kop +huz +huz +auh +bWB +qvY +gZZ +iof +aDu +qoY +axJ +axJ +wFm +sYx +huz +huz +sax +sax +nZA +kAw +nZA +nZA +nZA +kAw +puZ +puZ puZ puZ "} @@ -37631,19 +33541,19 @@ puZ puZ puZ puZ -anc -anc -cce -xQJ -xQJ -nTC -odz -odz -odz -anc -anc -anc -anc +tUF +tUF +lYe +hDO +hDO +riu +nCw +nCw +nCw +tUF +tUF +tUF +tUF eni vYm vYm @@ -37661,7 +33571,7 @@ vYm vYm eni wlJ -owY +nVZ umB pWf pWf @@ -37692,97 +33602,97 @@ ntc kOV vYm eni -ntc -oRH -tlB -oRH -aFO -aFO -aFO -tlB -eHY -oRH -abc -aFO -aFO -lKz -cpC -wMh -wMh -wMh -wMh -wMh -wMh -wMh -wMh -vXw -wMh -xAS -aFO -aFO -aFO -aFO -wMh -kSO -thK -xog -kqE -wMh -wMh -wMh -asz -aNP -abJ -abG -abJ -abJ -rZt -kxx -oZs -bJi -bJi -bJi -wnK -bQx -asz -asz -qkL -asz -asz -rZt -rZt -iEF -cYC -fNE -iSG -iSG -bax -wwW -xrC -xrC -xrC -iSp -xNO -xNO -enh -jrg -jrg -amu -fXX -fXX -amu -jrg -bJj -gpz -bJj -bJj -bJj -osE -bJj -amu -puZ -puZ -puZ +ntc +oRH +tlB +oRH +aFO +aFO +aFO +tlB +eHY +oRH +abc +aFO +aFO +lKz +cpC +wMh +wMh +wMh +wMh +wMh +wMh +wMh +wMh +dPo +wMh +xAS +aFO +uji +uji +uji +uji +uji +uji +uji +uji +uji +aKL +uji +aNh +aLs +uji +uji +iMA +iMA +uKZ +nGm +xAK +wYy +nGm +uKZ +iMA +iMA +uji +uKZ +uKZ +bKV +rTj +bKV +krm +iXx +iMA +bcw +kop +tHd +kyD +enA +kop +nny +huz +qSW +arZ +aIh +aPf +gtx +aTO +oww +qmv +axJ +axJ +axJ +axJ +huz +huz +sax +sax +kAw +kAw +hrk +kAw +nZA +kAw puZ puZ puZ @@ -37794,16 +33704,16 @@ puZ puZ puZ puZ -anc -kbl -xQJ -xQJ -nTC -odz -bsM -edw -iVj -ceM +tUF +vGG +hDO +hDO +riu +nCw +hTf +vnI +fhL +cgK eni ntc vYm @@ -37872,80 +33782,80 @@ aFO xAS aFO wMh -fGb +gvc wMh wMh -fGb +gvc wMh hPp pcY wMh xAS -aFO -aFO -nhF -aFO -rJI -pvR -vjg -wiG -wMh -ntJ -wMh -asz -aNR -abJ -abG -abJ -abJ -rZt -kxx -oZs -bJi -bJi -ahZ -eRG -aXH -rZt -rZt -rZt -hAX -crF -rZt -rZt -rZt -fhd -fNE -iSG -iSG -bax -wwW -xrC -xrC -xrC -xrC -xNO -xNO -enh -jrg -jrg -amu -eom -fXX -amu -osE -osE -bJj -bJj -bJj -bJj -bJj -bJj -amu -puZ -puZ -puZ -puZ +uji +uji +uji +uji +uji +uji +uji +uji +pRq +bKV +bKV +aNg +bKV +mVo +uji +lsL +wYy +uqV +wYy +wYy +rYY +wYy +uqV +wYy +wYy +wYy +aXB +uKZ +giH +uji +iMA +iMA +iMA +uKZ +bcw +kop +tHd +kyD +kyD +tHd +uTm +huz +fjS +anJ +aGf +aNE +ggr +hLE +qvY +qkQ +axJ +axJ +axJ +axJ +huz +huz +sax +iZj +kAw +kAw +hrk +kAw +nZA +kAw +hrk puZ puZ puZ @@ -37956,16 +33866,16 @@ puZ puZ puZ puZ -anc -dxh -xQJ -xQJ -nTC -odz -edw -bsM -iVj -qII +tUF +eiR +hDO +hDO +riu +nCw +vnI +hTf +fhL +wND eni ntc vYm @@ -38043,71 +33953,71 @@ pcY pcY wMh xAS -aFO -aFO -aFO -wMh -rJI -gso -aJd -ntJ +pPp wMh wMh +ntJ +ntJ +ntJ wMh -asz -abp -abJ -abJ -abJ -abJ -rZt -rMI -oZs -azm -bJi -rZt -wnK -aXH -rZt -rZt -rZt -dwQ -crF -rZt -rZt -rZt -rZt -fNE -iSG -iSG -wwW -xrC -wwW -jjq -iYu -eMx -xNO -xNO -jrg -jrg -jrg -amu -fXX -fXX -amu -osE -osE -gpz -bJj -jrg -bJj -bJj -gpz -osE -puZ -puZ -puZ -puZ +iMA +iyg +bKV +bKV +oWH +mVo +uji +uji +pvv +kJw +pvv +pvv +pvv +pvv +pvv +sYh +pvv +pvv +pvv +pvv +eGs +wYy +uji +jDO +lPP +gXz +gXz +emW +tHd +kyD +kyD +kyD +kyD +qIr +bOq +qIr +anG +axJ +axJ +ggh +rdS +owe +axJ +rdS +axJ +axJ +axJ +huz +huz +sax +kAw +kAw +nZA +nZA +kAw +kAw +kAw +hrk puZ puZ puZ @@ -38118,16 +34028,16 @@ puZ puZ puZ puZ -anc -anc -uBz -mYm -lHK -anc -bsM -edw -edw -qII +tUF +tUF +aNJ +ydv +qwB +tUF +hTf +vnI +vnI +wND eni ntc eni @@ -38205,71 +34115,71 @@ pcY jmW wMh aFO -aFO -aFO +pPp wMh -ntJ -rJI -gso -faR -ntJ wMh wMh +ntJ +ntJ wMh -asz -abp -abG -abJ -abG -acj -asz -aUX -aWB -gTU -wnK -wnK -wnK -aXH -rZt -rZt -rZt -asz -asz -rZt -rZt -hCY -hCY -fNE -iSG -iSG -xrC -wwW -bax -iSG -xrC -xrC -xNO -jrg -jrg -jrg -jrg -amu -fXX -fXX -amu -iTQ -bJj -gpz -bJj -jrg -bJj -bJj -gpz -osE -puZ -puZ -puZ -puZ +iMA +csW +aJU +bKV +pRq +mVo +uji +lsL +pvv +aSA +pvv +vFR +eVG +pvv +pvv +pvv +aSA +pvv +pvv +pvv +pvv +wYy +hvZ +tHd +xvp +tHd +xvp +tHd +kyD +tHd +kyD +kyD +kyD +qIr +bOq +qIr +ans +ans +aMW +fMq +aut +axJ +rdS +aut +huz +huz +huz +huz +huz +hrk +kAw +hrk +hrk +nZA +kAw +kAw +nZA +nZA puZ puZ puZ @@ -38281,15 +34191,15 @@ puZ puZ puZ puZ -anc -anc -anc -anc -anc -ceM -fnx -fnx -ceM +tUF +tUF +tUF +tUF +tUF +cgK +yiE +yiE +cgK eni ntc mMK @@ -38358,79 +34268,79 @@ aFO gJe xAS aFO -fGb +gvc wMh wMh -fGb +gvc wMh pcY jmW wMh nuy -nuy -aFO +vsm wMh ntJ -rJI -gso -qIu -ntJ ntJ wMh +ntJ wMh -asz -abx -abM -abM -abM -ack -asz -aUY -vjs -aXw -kaL -wnK -wnK -aXH -rZt -rZt -rZt -fNE -ril -rZt -iEF -far -nVL -fNE -iSG -wwW -xrC -wwW -wwW -enh -xNO -xNO -jrg -jrg -jrg -jrg -jrg -amu -fXX -fXX -osE -osE -gpz -gpz -jrg -jrg -bJj -bJj -osE -osE -puZ -puZ -puZ +uKZ +iMA +iMA +uji +uji +uji +uji +wYy +pvv +pvv +aTh +aVx +aWI +aYd +baX +bcJ +pvv +pvv +pvv +aSA +pvv +wYy +hvZ +tHd +kyD +kyD +kyD +kyD +tHd +kyD +kyD +kyD +kyD +qIr +ppR +alS +ans +axJ +axJ +fbf +fbf +ook +hAS +aDu +huz +huz +huz +huz +huz +kAw +kAw +nZA +nZA +nZA +kAw +kAw +nZA puZ puZ puZ @@ -38529,70 +34439,70 @@ wMh wMh aFO nuy -nuy -aFO +hBq wMh -tRn -aNy -xtc -ggv -ntJ +pcY ntJ -wMh -wMh -asz -asz -asz -asz -asz -asz -asz -ufb -wnK -jaU -uEx -bJi -bJi -aXH -rZt -rZt -rZt -fNE -ril -rZt -iEF -etV -tNN -fNE -wwW -wwW -xrC -wwW -wwW -enh -enh -jrg -jrg -jrg -jrg -jrg -jrg -amu -fXX -fXX -osE -osE -bJj -bJj -jrg -jrg -jrg -bJj -bJj -bJj -puZ -puZ -puZ +jmW +wMh +ntJ +wMh +fEl +wMh +hBq +miu +uKZ +wYy +xAK +pvv +pvv +aUw +nig +aWQ +aVN +aVN +aVN +cmc +aVN +dbH +wTz +pvv +wYy +hvZ +kyD +tHd +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD +qIr +hOX +qIr +rdS +rdS +axJ +axJ +axJ +hAS +pKf +iYC +huz +huz +oBV +pRU +hrk +hrk +kAw +nZA +nZA +nZA +kAw +kAw +nZA puZ puZ puZ @@ -38691,70 +34601,70 @@ aFO aFO aFO aFO -aFO -aFO -aFO -wMh -ofr -nJu -tze -wMh wMh -ntJ wMh pcY pcY -pcY -pcY -pcY -pcY -asz -asz -asz -ahu -qfI -bJi -bJi -nAp -rZt -asz -asz -asz -asz -qkL -asz -asz -asz -asz -wwW -wwW -iSG -enh -enh -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -amu -amu -amu -bJj -fXX -gpz -bJj -bJj -jrg -jrg -bJj -gpz -osE -puZ -puZ -puZ +jmW +jmW +wMh +wMh +fEl +auu +hBq +hBq +uKZ +wYy +wYy +pvv +aTh +aUx +nJx +uUr +bzk +lTM +bzk +uUr +tFu +aWQ +dbH +wvx +wYy +hvZ +tHd +kyD +tHd +kyD +kyD +kyD +tHd +rli +aQJ +kyD +huz +huz +kLi +amI +aCy +rdS +axJ +axJ +nTu +hAS +sjh +huz +huz +tuA +kAw +hrk +hrk +kAw +kAw +kAw +nZA +kAw +kAw +nZA puZ puZ puZ @@ -38853,70 +34763,70 @@ tPs aFO aFO aFO -aFO -aFO -aFO -aFO -wMh -aFO -aFO -jmW wMh -lAN -ntJ wMh -cQY -skK -kSO -xog pcY pcY -asz -asz -asz -tpL -orO -orO -tJY -asz -asz -asz -gSJ -bJi -bJi -bJi -asz -xvd -lVJ -iSG -wwW -iSG -enh -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -fXX -bJj -bJj -gpz -bJj -bJj -bJj -gpz -bJj -puZ -puZ -puZ +pcY +pcY +pcY +pcY +pcY +ilJ +aZc +tlB +uKZ +yho +wYy +pvv +aTi +wSj +qAx +pbX +qAx +kwe +qAx +uUr +qAx +qAx +dCS +eoH +wYy +hvZ +kyD +kyD +tHd +kyD +kyD +tHd +qLS +ofw +jMf +tHd +huz +huz +dLi +amH +sMd +aMN +faH +hHf +nTu +sMd +iYC +huz +huz +dns +wpt +kAw +hrk +kAw +kAw +kAw +kAw +kAw +oBV +nZA puZ puZ puZ @@ -39016,67 +34926,67 @@ aFO aFO aFO aFO -cou -aFO -aFO -aFO -aFO -aFO -aFO -aFO -wMh -wMh wMh -cQY -ntJ -aNy -xtc pcY pcY -asz -crF -aXH -bJi -crF -crF -tHD -uEx -crF -fNE -hyx -xFp -xFp -sHL -asz -lVN -iSG -iSG -wwW -iSG -enh -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -gpz -bJj -gpz -gpz -gpz -bJj -bJj -bJj -bJj -puZ +pcY +pcY +pcY +pcY +hBq +tlB +hBq +tlB +uKZ +jmK +wYy +pvv +aTj +cov +rKu +uUr +dkq +hIc +dkq +uUr +wLs +aWU +deV +uyI +wYy +hvZ +kyD +kyD +kyD +kyD +kyD +kyD +tHd +ofw +kop +kyD +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +iGE +wpt +kAw +kAw +kAw +hrk +kAw +kAw +vEN puZ puZ puZ @@ -39177,68 +35087,68 @@ aFO aFO wMh aFO -nuy -aFO -aFO -aFO -xAS -aFO -aFO -aFO aFO -aFO -wMh -wMh -pei -wMh -xfZ -ntJ pcY pcY -asz -crF -aXH -tHD -crF -crF -tHD -uEx -crF -fNE -qud -tZA -ctC -ctC -asz -asC -asC -iSG -asC -asC -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -gpz -gpz -gpz -gpz -gpz -gpz -gpz -gpz -bJj -bJj +pcY +pcY +pcY +pcY +aZc +hBq +mdC +hBq +tlB +uKZ +jUT +wYy +pvv +pvv +aUw +hPU +aWU +aVx +aVx +aVx +cmc +qCm +deV +pti +pvv +wYy +hvZ +tHd +kyD +kyD +kyD +kyD +kyD +tHd +jMf +tHd +kyD +kyD +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +huz +dns +wpt +kAw +kAw +kAw +hrk +kAw +nZA +kAw puZ puZ puZ @@ -39339,68 +35249,68 @@ cou wMh wMh wMh -aFO -aFO -aFO -xAS wMh -jmW -aFO -aFO -aFO -aFO -aFO -aFO -cQY -mbt -mbt -mbt pcY pcY -asz -asz -asz -uOc -pCI -gmV -vTc -asz -asz -asz -fNE -fNE -fNE -fNE -asz -kVd -kVd -uzu -xgc -uzu -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -osE -gpz -gpz -gpz -gpz -bJj -bJj -bJj -gpz -bJj -bJj +pcY +pcY +pcY +hBq +aZc +hBq +nIb +tlB +tlB +uKZ +qVR +wYy +pvv +pvv +aTj +aVN +aWV +aYx +bbh +beK +aSA +gIQ +oXM +pvv +pvv +wYy +hvZ +tHd +tHd +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kyD +kyD +kyD +tMs +cwZ +kAw +kAw +nZA +kAw +kAw +hrk +hrk +hrk +acl +kAw +kAw +hrk +kAw +kAw +kAw +kAw +kAw +puZ puZ puZ puZ @@ -39502,67 +35412,67 @@ wMh jmW jmW wMh -aFO -aFO -aFO -wMh -tJP -lAN -aFO -aFO -aFO -aFO -wMh -wMh -wMh -wMh -wMh -wMh pcY pcY -siZ -ukp -kVd -kVd -boW -boW -boW -siZ -dkv -xgc -kVd -kVd -rAH -rAH -kVd -uzu -boW -xgc -uzu -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -gpz -bJj -bJj -jrg -bJj -bJj -bJj -bJj -bJj -bJj +pcY +pcY +pcY +hBq +hBq +tlB +aFO +hBq +hBq +uKZ +aXB +jBe +pvv +pvv +pvv +pvv +pvv +mOY +drM +pvv +aSA +uaa +pvv +pvv +pvv +wYy +hvZ +tHd +xvp +tHd +xvp +tHd +tHd +kyD +tHd +kyD +kyD +tHd +kyD +qzG +cwZ +kAw +kAw +kAw +kAw +nZA +hrk +hrk +nZA +uEV +hrk +nZA +nZA +nZA +kAw +kAw +kAw +nDv +puZ puZ puZ puZ @@ -39664,68 +35574,68 @@ jmW jmW jmW wMh -aFO -aFO -aFO +pcY +pcY +pcY +pcY +fAK +aZc +tlB xAS -tJP -wMh -aFO -aFO -wMh -wMh -wMh -wMh -ntJ -ntJ -wMh -wMh -ukp -kVd -ckH -lIa -lIa -qjY -qjY -qjY -qjY -tsK -qjY -tsK -lIa -oHf -oHf -oHf -lIa -qjY -tsK -tsK -ckH -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -bJj -gpz -bJj -jrg -jrg -bJj -bJj -bJj -bJj -bJj -bJj -bJj +mdC +xAS +hBq +uKZ +aXB +way +pvv +pvv +pvv +tXL +pvv +pvv +pvv +pvv +pvv +pvv +pvv +hZI +pvv +vaB +uji +wXj +ofw +jMf +tHd +kop +kop +kyD +kyD +tHd +tHd +tHd +tHd +sQP +wSv +kAw +kAw +kAw +kAw +kAw +nZA +nZA +nZA +aco +hrk +nZA +nZA +nZA +kAw +nZA +nZA +puZ +puZ +puZ puZ puZ puZ @@ -39826,68 +35736,68 @@ wMh jmW wMh wMh -aFO +wMh +pcY +pcY +tlB +hBq +tlB +xAS aFO xAS xAS -tJP -faW -faW -faW -jmW -wMh -wMh -wMh -ntJ -ntJ -wMh -wMh -kVd -kVd -kVd -kVd -kVd -boW -boW -boW -boW -xgc -boW -xgc -xgc -kVd -rAH -rAH -kVd -xgc -kVd -ukp -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -bJj -bJj -osE -bJj -bJj -jrg -jrg -bJj -bJj -osE -bJj -bJj -bJj -bJj +oRH +uKZ +uKZ +uKZ +wYy +wYy +wYy +wYy +wYy +wYy +fGj +wYy +fRh +wYy +nJX +nJX +tEu +sUB +uji +poE +poE +poE +mqP +mqP +wCL +avL +avL +avL +iev +mqP +mqP +sax +sax +sax +hrk +kAw +kAw +kAw +kAw +kAw +kAw +sYf +hrk +hrk +hrk +kAw +nZA +nZA +puZ +puZ +puZ +puZ puZ puZ puZ @@ -39989,67 +35899,67 @@ wMh ntJ wMh aFO +hBq +xAS +xAS +xAS +xAS +xAS aFO -cpC -lfe -pcY -pcY -pcY -pcY -mTN -nzr -uZF -wMh -wMh -ntJ -ntJ -wMh -kVd -kVd -xgc -xgc -boW -boW -boW -xgc -boW -xgc -xgc -rAH -xgc -xgc -rAH -rAH -kVd -xgc -uzu -mhs -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -bJj -jrg -bJj -bJj -bJj -iel -jrg -jrg -bJj -bJj -osE -bJj -bJj -jrg -bJj +oRH +oGv +xAS +oRH +hBq +uKZ +uKZ +uji +txs +nGm +ldJ +uji +uKZ +iMA +iMA +iMA +uKZ +uKZ +uKZ +uKZ +uji +ofw +ofw +jMf +tHd +kop +kop +kyD +kyD +kyD +tHd +kop +gzb +sax +sax +sax +bcV +oFl +kAw +kAw +kAw +hrk +bcV +tFd +hrk +hrk +kAw +nZA +nZA +nZA +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40127,91 +36037,91 @@ kOV mMK kOV mMK -mMK -eni -ntc -vYm -vYm -ntc -aFO -xAS -tlB -aFO -xAS -wMh -pcY -pcY -pcY -vWW -toD -ntc -ntc -xAS -wMh -wMh -wMh -jmW -wMh -wMh -kSO -xog -pcY -pcY -pcY -kSO -xog -wTx -wMh -wMh -ntJ -wMh -vnr -kVd -kVd -dyt -dyt -fHx -xgc -boW -boW -xgc -boW -boW -boW -xgc -xgc -kVd -rAH -rAH -uzu -kVd -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -bJj -bJj -bJj -bJj -osE -osE -bJj -bJj -bJj -mie -jrg -bJj -bJj -gpz -bJj -bJj -bJj -bJj +mMK +eni +ntc +vYm +vYm +ntc +aFO +xAS +tlB +aFO +xAS +wMh +pcY +pcY +pcY +vWW +toD +ntc +ntc +xAS +wMh +wMh +aFO +aFO +aFO +aFO +xAS +aFO +aFO +aFO +xAS +xAS +aFO +cYu +xAS +hSR +aFO +aFO +uji +uKZ +jLX +uKZ +uji +tHd +rtZ +tHd +tHd +rtZ +kop +kop +xvp +tHd +jMf +xvp +kop +kop +kop +tHd +kyD +kyD +kyD +tHd +kop +bhN +fCs +sax +sax +rBk +vAU +kAw +kAw +kAw +tad +tlr +tuz +tFy +hrk +kAw +nZA +nZA +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40311,68 +36221,68 @@ toD jmW wMh wMh -jmW +aFO +aFO +aFO +aFO +aFO xAS xAS -pcY -aNy -xtc -pcY -pcY -pcY -aNy -xtc -qKA -ntJ -wMh -wMh -ntJ -ntJ -kVd -kVd -boW -boW -xgc -boW -boW -boW -boW -boW -boW -boW -boW -kVd -xgc -rAH -rAH -uzu -kVd -jrg -jrg -jrg -jrg -jrg -jrg -jrg -jrg -bJj -jrg -bJj -bJj -bJj -osE -osE -bJj -gpz -bJj -bJj -jrg -gpz -gpz -bJj -bJj -bJj -bJj +xAS +aFO +aFO +aFO +aFO +oRH +xAS +aFO +aFO +iki +fGU +dNh +fGU +gel +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +iMC +kyD +kyD +tHd +tHd +kyD +tHd +kyD +kyD +tHd +kop +bhN +fCs +sax +sax +sax +sax +kAw +kAw +kAw +acl +rBk +vAU +hrk +kAw +nZA +nZA +nZA +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40473,68 +36383,68 @@ kOV wMh wMh wMh -ntJ -pcY -pcY -pcY -pcY -pcY -pcY -pcY -pcY -pcY -gXW -muI -wMh wMh -eKp -mda +oRH wMh -wRL -kVd -ajy -boW -akf -boW -boW -boW -boW -boW -boW -boW -boW -boW -xgc -xgc -kVd -kVd -uzu -ukp -jrg -jrg -jrg -jrg -jrg -jrg -xgc -ukp -ukp -kVd -kVd -bJj -bJj -bJj -bJj -gpz -dhx -bJj -osE -gpz -gpz -bJj -bJj -bJj -bJj +xAS +xAS +xAS +aFO +aFO +xAS +xAS +xAS +xAS +xAS +aFO +aFO +aFO +jtI +iYR +dNh +iYR +jxe +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +kop +lip +sax +sax +sax +sax +kAw +kAw +nZA +kAw +aco +kAw +hrk +kAw +nZA +nZA +nZA +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40636,66 +36546,66 @@ pcY pcY wMh wMh -ntJ -wMh -wMh -pcY -bQX -wMh -cBX -wMh -wMh -hlh wMh +oRH +oRH +xAS wMh -pcY -pcY -pcY -acc -kVd -kVd -boW -boW -boW -boW -boW -boW -boW -boW -boW -fHx -boW -boW -kVd -xgc -rAH -kVd -kVd -uzu -ukp -jrg -jrg -jrg -jrg -jrg -ukp -kVd -xgc -xgc -rAH -kVd -bJj -bJj -bJj -bJj -bJj -bJj -gpz -gpz -bJj -bJj -jrg -bJj +aFO +xAS +oRH +xAS +xAS +aFO +aFO +aFO +aFO +aFO +jtI +iYR +dNh +iYR +jxe +kyD +kyD +kyD +kyD +kyD +kyD +tHd +tHd +kyD +tHd +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +ofw +sax +hrk +mai +kAw +nZA +nZA +nZA +kAw +aco +kAw +kAw +kAw +nZA +kAw +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40797,67 +36707,67 @@ aby pcY pcY wMh -wMh -wMh -wMh -wMh -wMh -wMh -wMh -hlh -hPp -hPp -hPp -hPp -hPp -hPp -hPp -pcY -pcY -kVd -kVd -dyt -dyt -fHx -boW -boW -boW -boW -boW -boW -dyt -boW -boW -boW -rAH -xgc -kVd -kVd -uzu -ukp -jrg -jrg -ukp -ukp -jrg -uzu -xgc -xgc -xgc -xgc -uzu -rAH -osE -bJj -bJj -bJj -bJj -gpz -gpz -bJj -bJj -bJj -bJj +hBq +bCB +oRH +oRH +xAS +xAS +aFO +aFO +xAS +xAS +oRH +xAS +xAS +aFO +aFO +aFO +jtI +iYR +dNh +iYR +jxe +tHd +tHd +tHd +kop +aQJ +kop +eyx +kop +tHd +kop +kop +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +pzM +hrk +kAw +qVt +kAw +nZA +qVt +kAw +aco +kAw +nZA +kAw +kAw +nZA +puZ +puZ +puZ +puZ +puZ puZ puZ puZ @@ -40959,65 +36869,65 @@ abz pcY wMh wMh -jmW -wMh -ntJ -wMh -ntJ -hlh +snR +hBq +ezf +oRH wMh -jmW -hPp -aMy -mnZ -pwT -mnZ -qKn -hPp -pcY -pcY -ukp -kVd -boW -boW -boW -boW -boW -xgc -boW -boW -boW -dyt -boW -boW -boW -kVd -xgc -rAH -uzu -uzu -uzu -ukp -ukp -uzu -uzu -fkB -xgc -uzu -rAH -rAH -uzu -rAH -kVd -osE -bJj -bJj -bJj -gpz -bJj -bJj -bJj -bJj +xAS +aFO +xAS +xAS +oRH +tlB +oRH +oRH +xAS +aFO +aFO +deP +iYR +dNh +iYR +koe +jMf +tHd +kop +jMf +sJo +ofw +etl +fLi +gGT +kop +tHd +xvp +kyD +kyD +kyD +tHd +kyD +kyD +kyD +tHd +oDi +lGX +kAw +fmQ +kAw +nZA +nZA +sax +kAw +acp +kAw +nZA +nZA +kAw +nZA +puZ +puZ +puZ puZ puZ puZ @@ -41123,62 +37033,62 @@ ntJ wMh wMh wMh -ntJ -ntJ -ntJ wMh -sFj -hPp -hPp -quO -pwT -mnZ -sud -ggC -hPp -pcY -ukp -rAH -kVd -boW -boW -boW -boW -boW -boW -xgc -boW -boW -boW -boW -boW -boW -xgc -xgc -kVd -kVd -kVd -uzu -ukp -pLf -rAH -rAH -oHf -rAH -kVd -rAH -kVd -rAH -rAH -bJj -bJj -bJj -gpz -gpz -osE -bJj -bJj -bJj +vzM +wMh +xAS +aFO +aFO +udt +xAS +pAP +tlB +uHr +kGR +xAS +aFO +lWv +bni +bni +bni +lWv +ofw +jMf +tHd +kop +jMf +gGT +kop +rli +kop +kop +tHd +kyD +kyD +kyD +tHd +kyD +tHd +kyD +kyD +kyD +tHd +fYT +kAw +fmQ +qVt +fmQ +sax +sax +sax +sax +kAw +nZA +nZA +kAw +puZ +puZ +puZ puZ puZ puZ @@ -41289,56 +37199,56 @@ jmW wMh ntJ ntJ -swn -hPp -aKo -qBN -jOi -jOi -jOi -fGb -hPp -xgc -rAH -xgc -kVd -boW -boW -boW -boW -xgc -boW -boW -boW -boW -boW -boW -boW -xgc -xgc -xgc -kVd -kVd -plS -uzu -uzu -rAH -rAH -rAH -fkB -xgc -rAH -kVd -kVd -bJj -bJj -bJj -osE -osE -gpz -osE -bJj -bJj +oRH +oRH +oRH +oRH +oRH +oRH +tlB +tlB +tlB +tHd +odd +odd +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kop +kop +kop +tHd +tHd +jMf +jMf +qLS +ofw +ofw +kop +kyD +kop +vWm +kAw +mai +nZA +nZA +acl +kAw +kAw +hrk +hrk +nZA +hrk +kAw +kAw puZ puZ puZ @@ -41452,55 +37362,55 @@ wMh jmW ntJ wMh -bni -jOi -jOi -jOi -jOi -jOi -jOi -bni -xgc -xgc -boW -xgc -ajy -boW -akf -boW -boW -xgc -boW -boW -boW -boW -boW -boW -xgc -kVd -kVd -kVd -plS -bRU -uzu -rAH -ukp -uzu -rAH -fkB -uzu -uzu -uzu -ukp -bJj -bJj -bJj -osE -gpz -gpz -gpz -bJj -bJj +oRH +oRH +oRH +oRH +oRH +tlB +hBq +tlB +tHd +poE +kyD +odd +kyD +kyD +rSF +eJn +kyD +tHd +kyD +kyD +kyD +kop +kop +kop +kop +jMf +jMf +jMf +qLS +gAd +ofw +kop +mwE +ofw +kyD +vWm +kAw +kAw +lfn +hrk +aco +kAw +qVt +hrk +nZA +nZA +nZA +kAw +kAw puZ puZ puZ @@ -41614,54 +37524,54 @@ pcY wMh wMh wMh -bni -jOi -jOi -jOi -jOi -jOi -jOi -bni -rAH -rAH -boW -boW -boW -boW -boW -boW -boW -boW -boW -boW -boW -boW -boW -boW -kVd -uzu -kVd -kVd -kVd -uzu -plS -rAH -rAH -rAH -rAH -rAH -ckH -ukp -ukp -jrg -bJj -bJj -jrg -osE -gpz -gpz -osE -bJj +oRH +loP +hBq +loP +hBq +hBq +xAS +oRH +kop +poE +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +jMf +ofw +jMf +jMf +jMf +ofw +qLS +kop +kyD +kop +kyD +ptm +kAw +fmQ +fmQ +nZA +acp +kAw +sax +hrk +nZA +nZA +hrk +kAw puZ puZ puZ @@ -41725,10 +37635,10 @@ vYm vYm vYm vYm -uhe -fnx -fnx -uhe +qxo +yiE +yiE +qxo ntc vYm vYm @@ -41737,22 +37647,22 @@ vYm vYm vYm vYm -uhe -jAg -bsM -uhe +qxo +tlw +hTf +qxo ntc -uee +qYr vYm mAK pWf eni ntc -uhe -jAg -edw -iVj -uhe +qxo +tlw +vnI +fhL +qxo eni eni eni @@ -41773,57 +37683,57 @@ wMh ntJ pcY pcY -kVd -kVd -kVd -hPp -hPp -hPp -hPp -hPp -hPp -hPp -hPp -rAH -xgc -xgc -boW -dyt -dyt -boW -boW -boW -boW -boW -boW -boW -boW -xgc -boW -xgc -xgc -kVd -kVd -kVd -uzu -kVd -uzu -bhB -rAH -rAH -ukp -jrg -jrg -jrg -jrg -jrg -bJj -bJj -osE -bJj -bJj -bJj -bJj +jMf +jMf +jMf +loP +oRH +hBq +oRH +hBq +xAS +tlB +oRH +kop +poE +kyD +kyD +kqk +kqk +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +kyD +tHd +tHd +jMf +jMf +jMf +ofw +jMf +ofw +xZh +kop +kop +gss +sax +sax +sax +sax +sax +kAw +kAw +hrk +kAw +kAw +kAw +kAw puZ puZ puZ @@ -41887,10 +37797,10 @@ vYm vYm vYm vYm -ceM -bsM -uCO -ceM +cgK +hTf +beM +cgK vYm vYm vYm @@ -41899,10 +37809,10 @@ vYm vYm ntc vYm -ceM -jAg -bsM -ceM +cgK +tlw +hTf +cgK vYm eni ntc @@ -41910,11 +37820,11 @@ pWf pWf pWf eni -ceM -edw -edw -jAg -ceM +cgK +vnI +vnI +tlw +cgK vYm eni eni @@ -41935,57 +37845,57 @@ jmW pcY pcY pcY -rAH -rAH -rAH -siZ -pFq -fVl -qOP -aMZ -uzu -xgc -siZ -rAH -xgc -xgc -boW -boW -fHx -boW -xgc -boW -boW -boW -boW -boW -boW -boW -boW -xgc -xgc -kVd -kVd -xgc -kVd -rAH -kVd -uzu -uzu -ddA -kVd -ukp -jrg -jrg -jrg -jrg -jrg -bJj -osE -bJj -bJj -bJj -bJj +kop +kop +kop +kop +kop +kop +kop +kop +jMf +kop +ofw +kop +kyD +kyD +kyD +kyD +hIO +kyD +tHd +kyD +kyD +kyD +kyD +kyD +kyD +kyD +kyD +tHd +tHd +jMf +jMf +tHd +jMf +kop +jMf +ofw +ofw +rgy +jMf +gss +sax +sax +sax +sax +sax +kAw +hrk +kAw +kAw +kAw +kAw puZ puZ puZ @@ -42049,10 +37959,10 @@ vYm ntc ntc ntc -ceM -iVj -jAg -ceM +cgK +fhL +tlw +cgK vYm ntc eni @@ -42061,10 +37971,10 @@ eni mMK kOV ntc -ceM -bsM -uCO -ceM +cgK +hTf +beM +cgK eni vYm pWf @@ -42072,11 +37982,11 @@ pWf pWf pWf ntc -ceM -iVj -jAg -edw -ceM +cgK +fhL +tlw +vnI +cgK vYm vYm vYm @@ -42097,56 +38007,56 @@ wMh pcY pcY pcY -rAH -rAH -rAH -kVd -kVd -kVd -kVd -kVd -kVd -kVd -kVd -agy -boW -boW -boW -boW -boW -boW -boW -xgc -boW -boW -boW -boW -xgc -boW -boW -rAH -rAH -aaf -rAH -rAH -ddA -xgc -rAH -uzu -msh -uzu -uzu -rAH -ukp -jrg -jrg -jrg -jrg -jrg -osE -gpz -gpz -bJj +kop +kop +kop +kop +kop +jMf +kop +ofw +jMf +jMf +jMf +iOE +kyD +kyD +kyD +kyD +poE +kyD +kyD +tHd +kyD +kyD +kyD +kyD +tHd +kyD +kop +kop +kop +bnD +kop +kop +rgy +tHd +kop +ofw +oxP +ofw +ofw +kop +mwE +sax +sax +sax +sax +sax +hrk +nZA +nZA +kAw puZ puZ puZ @@ -42212,8 +38122,8 @@ ntc wag hLf hLf -uCO -jAg +beM +tlw hLf hLf kOV @@ -42224,8 +38134,8 @@ mMK mMK rBH rBH -jAg -jAg +tlw +tlw rBH rBH dtq @@ -42235,9 +38145,9 @@ pWf pWf akG vfc -edw -jAg -jAg +vnI +tlw +tlw vfc akG eni @@ -42259,56 +38169,56 @@ wMh pcY pcY pcY -rAH -rAH -rAH -kVd -uzu -kVd -uzu -kVd -uzu -kVd -rAH -xgc -ajy -boW -xgc -boW -boW -boW -boW -boW -boW -boW -boW -xgc -boW -boW -boW -kVd -kVd -rAH -rAH -kVd -rAH -rAH -xgc -kVd -kVd -kVd -rAH -rAH -mhs -jrg -jrg -jrg -jrg -jrg -bJj -bJj -bJj -bJj +kop +kop +kop +jMf +ofw +jMf +ofw +jMf +ofw +jMf +kop +tHd +kyD +kyD +kyD +kyD +poE +kyD +kyD +kyD +kyD +kyD +kyD +tHd +kyD +kyD +kyD +jMf +jMf +kop +kop +jMf +kop +kop +tHd +jMf +jMf +jMf +kop +kop +dbp +sax +sax +sax +sax +sax +kAw +kAw +qVt +kAw puZ puZ puZ @@ -42397,9 +38307,9 @@ dtq dtq dtq rBH -xQQ -gVh -xQQ +aMo +rGi +aMo aOW eni eni @@ -42417,59 +38327,59 @@ kOV ntc kOV kOV -ukp -kVd -kVd -dHr -rAH -msh -uzu -uzu -xgc -rAH -kVd -kVd -rAH -xgc -rAH -xgc -xgc -boW -xgc -boW -xgc -boW -boW -xgc -xgc -xgc -xgc -boW -boW -boW -boW -kVd -kVd -kVd -kVd -ddA -rAH -kVd -kVd -rAH -xgc -xgc -kVd -uzu -loe -jrg -jrg -jrg -jrg -jrg -bJj -gpz -bJj +mwE +jMf +jMf +mdV +kop +oxP +ofw +ofw +tHd +kop +jMf +jMf +kop +tHd +kop +eJn +tHd +kyD +tHd +kyD +poE +kyD +kyD +tHd +tHd +tHd +tHd +kyD +kyD +kop +kop +jMf +jMf +jMf +jMf +rgy +kop +jMf +jMf +kop +tHd +tHd +jMf +ofw +kam +sax +sax +sax +sax +sax +qVt +nZA +kAw puZ puZ puZ @@ -42530,38 +38440,38 @@ vYm toD vYm ntc -uhe -ceM -ceM +qxo +cgK +cgK hLf hLf -wiM -xFR -tnh -jhq -qlQ -emd -tGS -asJ -dDo -emd -atT -ire -emd -fZR -fZR -nKO +uHo +vMc +tpK +nHo +eKM +kFp +gPj +jTy +dyP +kFp +nPJ +gQV +kFp +tHa +tHa +lQz rBH uCp wZW rBH -hYT -uxV -igr +nxx +rYV +roG rBH -gjY -lUF -gjY +dUN +lNd +dUN aOW wCP vjy @@ -42579,59 +38489,59 @@ kOV kOV ntc kOV -kVd -kVd -bhB -kVd -rAH -rAH -uzu -xgc -kVd -rAH -xgc -xgc -kVd -rAH -xgc -rAH -xgc -xgc -boW -boW -boW -xgc -uzu +jMf +jMf +xZh +jMf +kop +kop +ofw +tHd +jMf +kop +tHd +tHd +jMf +kop +tHd +kop +tHd +tHd +kyD +kyD +kyD +tHd +ofw gss gss gss gss -xgc -xgc -xgc -kVd -kVd -kVd -kVd -huF -uzu -rAH -uzu -aJR -kVd -rAH -rAH -rAH -rAH -kVd -rAH -jrg -jrg -jrg -jrg -bJj -gpz -bJj +tHd +tHd +tHd +jMf +jMf +jMf +jMf +gBp +ofw +kop +ofw +rEd +jMf +kop +kop +kop +kop +jMf +kop +sax +sax +sax +sax +hrk +nZA +kAw puZ puZ puZ @@ -42692,38 +38602,38 @@ toD vYm vYm vYm -qII -bsM -bsM -uCO +wND +hTf +hTf +beM lDx -tnh -tnh -duv -wtC -ejt -hju -fZR -fZR -fZR -fZR -fZR -aoB -bJF -gjY -fZR -bJF +tpK +tpK +lBw +cgX +oqO +bnK +tHa +tHa +tHa +tHa +tHa +qGe +jhP +dUN +tHa +jhP tFk fiK gQL rBH -hYT -uxV -tnM +nxx +rYV +uqT rBH -jgz -hju -jCe +jGK +bnK +bLb aOW wCP eni @@ -42741,29 +38651,29 @@ kOV kOV ntc ntc -uzu -vhM -uzu -kVd -kVd -rAH -rAH -kVd -rAH -uzu +ofw +sHQ +ofw +jMf +jMf +kop +kop +jMf +kop +ofw dYp dYp dYp -kVd -kVd -rAH -fxy -boW -boW -boW -fxy -xgc -rAH +jMf +jMf +kop +kai +kyD +kyD +kyD +kai +tHd +kop gss gss gss @@ -42774,26 +38684,26 @@ tiO tiO tiO gss -abZ -kVd -kVd -rAH -rAH -rAH -boS -kVd -rAH -xgc -rAH -rAH -rAH -ukp -jrg -jrg -jrg -cIV -cIV -cIV +gvH +jMf +jMf +kop +kop +kop +gpS +jMf +kop +tHd +kop +kop +kop +mwE +sax +sax +sax +nZA +mai +nZA puZ puZ puZ @@ -42854,38 +38764,38 @@ vYm toD vYm vYm -qII -edw -uCO -edw +wND +vnI +beM +vnI uGq -duv -tnh -tnh -wtC -ejt -hju -fZR -fZR -fZR -fZR -cKE -fZR -bJF -uJk -lod -bJF +lBw +tpK +tpK +cgX +oqO +bnK +tHa +tHa +tHa +tHa +xRr +tHa +jhP +buq +xKv +jhP rBH rBH rBH rBH -cyd -ejt -lmL -bJF -lod -gjY -fZR +gHt +oqO +uaP +jhP +xKv +dUN +tHa nOd wCP eni @@ -42903,16 +38813,16 @@ kOV kOV ntc ntc -kVd -uzu -kVd -kVd -rAH -kVd -xgc -rAH -rAH -uzu +jMf +ofw +jMf +jMf +kop +jMf +tHd +kop +kop +ofw dYp dYp dYp @@ -42920,9 +38830,9 @@ dYp pqe tnu tnu -aUc -aVc -aUc +uLS +whm +uLS tnu tnu tnu @@ -42953,9 +38863,9 @@ tHd mwE geE geE -mwE -mwE -mwE +kop +kop +plM tYw tYw tYw @@ -43016,38 +38926,38 @@ toD vYm arR eni -uhe -ceM -ceM +qxo +cgK +cgK hLf hLf -jhq -iPg -iPg -jhq -ejt -hju -fZR -fZR -fZR -fZR -fZR -gDz -iDN -gjY -gjY -bJF +nHo +gyO +gyO +nHo +oqO +bnK +tHa +tHa +tHa +tHa +tHa +lWh +oDA +dUN +dUN +jhP tFk uCp wZW rBH -hYT -ejt -lmL -bJF -lUF -fZR -gjY +nxx +oqO +uaP +jhP +lNd +tHa +dUN nOd wCP wCP @@ -43065,15 +38975,15 @@ aEq ntc ntc vYm -xgc -kVd -kVd -xgc -xgc -rAH -xgc -kVd -uzu +tHd +jMf +jMf +tHd +tHd +kop +tHd +jMf +ofw dYp dYp dYp @@ -43082,9 +38992,9 @@ dYp pqe tnu tnu -aUn -aVm -aUn +tlI +oFb +tlI tnu tnu tnu @@ -43176,40 +39086,40 @@ mMK mMK kOV jCk -uhe +qxo ntc ntc ntc ntc hLf -kdR -wtC -mdx -mdx -wtC -ejt -emd -woB -woB -fSt -emd -rRb -gOj -emd -hju -hju -nKO +tZe +cgX +pkF +pkF +cgX +oqO +kFp +kln +kln +rWU +kFp +vIA +xZu +kFp +bnK +bnK +lQz rBH fiK oKM rBH -lmL -ejt -lmL -vXk -gjY -vHM -gjY +uaP +oqO +uaP +pOW +dUN +rjx +dUN nOd wCP wCP @@ -43227,15 +39137,15 @@ nOd nOd nOd nOd -xgc -xgc -kVd -xgc -kVd -xgc -kVd -uzu -uzu +tHd +tHd +jMf +tHd +dsz +tHd +jMf +ofw +ofw dYp dYp dYp @@ -43243,11 +39153,11 @@ dYp dYp pqe tnu -xPd -oaI +fZs +qSY xOb -xMC -xPd +wds +fZs tnu hcH pqe @@ -43338,40 +39248,40 @@ kOV aNX eni ntc -ceM +cgK vYm vYm vYm vYm wag -anX -wtC -mdx -mdx -wtC -pFI -pFI -tJn -pFI +tAi +cgX +pkF +pkF +cgX +aSS +aSS +tRg +aSS rBH rBH rBH rBH rBH -sjo -uSe +qum +rMt rBH rBH rBH rBH rBH -iFr -ejt -lmL -bJF -fZR -gjY -gjY +wxQ +oqO +uaP +jhP +tHa +dUN +dUN nOd wCP wCP @@ -43384,20 +39294,20 @@ wCP wCP nOd nOd -aSc -dZb -eOG -aeN +gkh +ldU +fVZ +izE nOd -rAH -rAH -rAH -rAH -xgc -rAH -kVd -bRU -kVd +kop +kop +kop +kop +tHd +kop +jMf +gAd +jMf dYp dYp dYp @@ -43405,11 +39315,11 @@ dYp dYp pqe tnu -xPd -oaI +fZs +qSY xOb -oaI -xPd +qSY +fZs tnu hcH pqe @@ -43495,45 +39405,45 @@ ntc vYm eni aNX -edw -uCO -edw +vnI +beM +vnI aEq ntc -ceM +cgK vYm vYm vYm vYm wag -nhB -jhq -iPg -iPg -jhq -stN -gwq -mkK -mqt +jjp +nHo +gyO +gyO +nHo +etS +sQh +cMK +qdT rBH wZW fiK rBH -gsK -hKR -sLV -qNt -tQR -hBN -qCM +sjz +teS +xuB +aAe +reU +wtn +doM onc -vmy -uxV -fbI +rId +rYV +jkz rBH -jgz -hju -jCe +jGK +bnK +bLb nOd wCP wCP @@ -43545,21 +39455,21 @@ wCP wCP wCP nOd -aNb -uhL -uhL -uhL -eHk +teW +pYI +pYI +pYI +kyy nOd -kVd -bhB -xgc -kVd -xgc -rAH -uzu -kVd -uzu +jMf +xZh +tHd +jMf +tHd +kop +ofw +jMf +ofw dYp dYp dYp @@ -43568,9 +39478,9 @@ dYp pqe tnu tnu -aUc -aVc -aUc +uLS +whm +uLS tnu tnu tnu @@ -43657,9 +39567,9 @@ ntc vYm eni mMK -edw -epp -nFg +vnI +wQd +cXb hDE wag lJx @@ -43670,32 +39580,32 @@ lJx wag hLf hLf -stN -peQ -stN -stN +etS +cmv +etS +etS rNZ -mHA -pFI +nFI +aSS rBH fPA enG iJr -vmy -anV -oeQ -fHH -bXC -vnX -pUZ +rId +uXS +gjb +nRg +pOV +wGq +orw vFi -vmy -rwQ -ect +rId +iuB +oMz rBH -sjo -rZD -uSe +qum +aEn +rMt nOd nOd nOd @@ -43708,19 +39618,19 @@ nOd nOd nOd nOd -uhL -uhL -uhL -eHk +pYI +pYI +pYI +kyy nOd -dHr -kVd -kVd -hxY -kVd -rAH -kVd -ddA +mdV +jMf +jMf +sJo +jMf +kop +jMf +rgy dYp dYp pqe @@ -43730,9 +39640,9 @@ pqe pqe tnu tnu -viF -oaI -mxn +ghl +qSY +gAU tnu tnu tnu @@ -43814,75 +39724,75 @@ pWf mMK mMK axe -uhe +qxo ntc vYm -uhe +qxo wag -edw -epp -eVX +vnI +wQd +wtD wag wag -qXm -akA -wFw -cCI -axf -cCI -yjY +lAp +lce +tvX +pES +qoj +pES +tVw hLf -stN -mdx -mdx -stN -pFI -pFI -pFI +etS +pkF +pkF +etS +aSS +aSS +aSS rBH rBH rBH rBH mCV -hKR -vNJ +teS +hFq nur -hul -vmy -pSM +cLv +rId +tov rBH rBH rBH rBH rBH -sjo -rZD -uSe +qum +aEn +rMt aOW -mqd -nZM -lHA -wSI -lkP -san -hyu -kzr -swF -flV +vWg +wjM +vJZ +mmi +kAK +xxC +ygt +fwK +pks +szL nOd -qNn -qNn -qNn +wxL +wxL +wxL nOd nOd nOd nOd -kVd -xgc -xgc -rAH -kVd -kVd +jMf +tHd +tHd +kop +jMf +jMf dYp dYp pqe @@ -43892,9 +39802,9 @@ tnu tnu tnu tnu -aUn -aVm -aUn +tlI +oFb +tlI tnu tnu tnu @@ -43976,75 +39886,75 @@ kOV mMK kOV kOV -ceM +cgK vYm vYm -ceM +cgK wag -dAi -ePS -hxf +skb +koR +ugy wag hLf -kJi -cCI -axf -cCI -fKx -cCI -axf +bLy +pES +qoj +pES +mLL +pES +qoj gZG -stN -mdx -mdx -amO -amO -stN +etS +pkF +pkF +mLv +mLv +etS beF rBH rBH rBH rBH vDD -hKR -vNJ +teS +hFq qRJ -uVK -shP -vDB +jRC +taZ +mDk rBH rBH rBH rNZ -ejt -sjo -rZD -uSe +oqO +qum +aEn +rMt aOW -hyu -rGg -vrm -rGg -hyu -hyu -rGg -vrm -rGg -hyu +ygt +fct +skE +fct +ygt +ygt +fct +skE +fct +ygt nOd -uhL -uhL -uhL -uhL -gIq -owD +pYI +pYI +pYI +pYI +rFd +dlD nOd -rAH -xgc -xgc -kVd -uzu -dHr +kop +tHd +tHd +jMf +ofw +mdV dYp dYp pqe @@ -44053,11 +39963,11 @@ jPU kEx kEx jlQ -xPd -wqQ +fZs +fGe gqp -oaI -xPd +qSY +fZs tnu hcH pqe @@ -44121,8 +40031,8 @@ axz aaY axz axz -qrz -dkC +hzf +dNJ axz axz pWf @@ -44138,88 +40048,88 @@ mMK kOV mMK aHb -tMY +rJx vYm vYm -tMY +rJx wag wag wag wag wag hLf -nFB -cCI -axf -cCI -axf -cCI +cKx +pES +qoj +pES +qoj +pES hLf hLf -stN -mdx -tKd -bxb -bTV -anm +etS +pkF +xwA +wAI +mOm +gGD fcy doJ -sjo -eqD -pmI -lxl -uYa -otL -rZD -rZD -rZD -ovh -iYF -uSe +qum +mDO +bXV +iKu +ffB +gkd +aEn +aEn +aEn +lkx +wzj +rMt doJ wjD -ejt -hKR -ejt -vNJ +oqO +teS +oqO +hFq tEl -hyu -rbo -uuZ -wZY -nGv -hyu -rbo -rbM -wZY -hyu +ygt +rgA +jsD +euy +rfr +ygt +rgA +bdF +euy +ygt nOd -uhL -hyu -uKN -bVb -goh -okz +pYI +ygt +lgV +bXa +cah +jMh nOd -kVd -xgc -xgc -kVd -huF -xgc +jMf +tHd +tHd +jMf +gBp +tHd dYp dYp pqe tnu bfn qDg -dXp +wnX tnu -xPd -tYa +fZs +jHP xOb -oaI -xPd +qSY +fZs tnu hcH pqe @@ -44277,15 +40187,15 @@ aad aad axz axz -sdG +hZv axz axz aaY axz -qrz -qrz -qrz -qrz +hzf +hzf +hzf +hzf axz pWf pWf @@ -44311,64 +40221,64 @@ hLf hLf hLf hLf -cCI -fBg -pUx -fBg -aZw +pES +dyY +rxM +dyY +bJl hLf -fMG -stN -stN -aAc -bxb -bTV -anm +vHS +etS +etS +kKy +wAI +mOm +gGD beF doJ -hKR +teS dOD -tOG -iiy -vmy -msd -vAT -vmy -vmy -vmy +jUf +goT +rId +mmR +aSl +rId +rId +rId dOD -vNJ +hFq doJ aDz -ejt -sjo -rZD -uSe +oqO +qum +aEn +rMt tEl -hyu -thB -cYc -kyG -hyu -hyu -thB -lGZ -kec -aJE +ygt +nVv +hUK +fMC +ygt +ygt +nVv +qNu +fAk +qyY nOd -fhh -ksY -fFd -uFr -tds -uhL +tVB +kBM +hsp +gTT +oGC +pYI nOd -rAH -wta -owr -uzu -plS -xgc +kop +rOi +fyT +ofw +qLS +tHd dYp dYp pqe @@ -44378,9 +40288,9 @@ pKQ vOv tnu tnu -aUc -aVc -aUc +uLS +whm +uLS tnu tnu tnu @@ -44438,16 +40348,16 @@ aad aad aad axz -prU -ndR -prU +ejL +qMR +ejL axz aaY axz -qrz -qrz -qrz -qrz +hzf +hzf +hzf +hzf axz pWf pWf @@ -44463,15 +40373,15 @@ toD mMK axz axz -qrz -dkC +hzf +dNJ axz hLf hLf hLf -vsi -djJ -gQx +pLX +xXE +nBa hLf bRD hLf @@ -44481,55 +40391,55 @@ hLf hLf hLf hLf -stN -mdx -arL -oXz -stN +etS +pkF +ebC +hve +etS dWw rBH -hKR -vmy +teS +rId sKf tfQ pxl -hKR -tIR +teS +oGY kZj hWK sKf -vmy -vNJ +rId +hFq rBH aDz -ejt -sjo -rZD -jIF +oqO +qum +aEn +beL aOW -mCs -rGg -hwg -rGg -hyu -hyu -rGg -hwg -rGg -hyu +iRC +fct +umh +fct +ygt +ygt +fct +umh +fct +ygt aRb -uhL -hyu -lVb -glG -tds -uhL +pYI +ygt +oQp +jSq +oGC +pYI nOd -rAH -aGF -boW -boW -boW +kop +aQJ +kyD +kyD +kyD dYp dYp dYp @@ -44540,9 +40450,9 @@ tnu tnu tnu tnu -aUn -aVm -aUn +tlI +oFb +tlI tnu tnu tnu @@ -44600,15 +40510,15 @@ aad axz axz axz -qrz -qrz -ndR +hzf +hzf +qMR axz axz axz axz -qrz -dkC +hzf +dNJ axz axz axz @@ -44624,89 +40534,89 @@ pWf toD toD axz -vqq -jmq -jmq -vqq +gec +eNl +eNl +gec hLf hLf hLf -qYp -jru -jru -jru -jru +bkv +iCH +iCH +iCH +iCH hLf -azZ -sCc -uzP -xwL -xwL +hfp +eng +dHQ +vMF +vMF hLf -stN -stN -stN -stN -stN -bHf +etS +etS +etS +etS +etS +nkW rBH -mIt -vmy +kXo +rId hWK -sjo -rZD -hKR -vNJ -rZD -uSe +qum +aEn +teS +hFq +aEn +rMt fzF -vmy -tKk +rId +pkX rBH -djy -uZl -sjo -rZD -uSe +rHL +tzz +qum +aEn +rMt tEl -hyu -eBU -rGg -rGg -hyu -tTW -rGg -rGg -rGg -hyu +ygt +woy +fct +fct +ygt +lAT +fct +fct +fct +ygt aRb -uhL -hyu -hyu -tWn -hyu -uhL +pYI +ygt +ygt +nmn +ygt +pYI nOd -rAH -kuS -boW -boW -boW -owr +kop +oiH +kyD +kyD +kyD +fyT dYp dYp pqe tnu -apz -eIa -eIa -tRT -lxn -oaI -oaI -oaI -aHr -dCo +lvQ +pyC +pyC +gkE +vGJ +qSY +qSY +qSY +sRp +huX tnu pqe gss @@ -44757,23 +40667,23 @@ puZ (106,1,1) = {" aad axz -aAn -dEH -dHg -eKY +eVu +qYu +eZq +hOL mXS -qrz -qrz -ndR -xTZ -uJg -aPy -ndR -jqY -jqY -qrz -qxv -tSt +hzf +hzf +qMR +kYV +uwn +jFc +qMR +jhr +jhr +hzf +pSl +fVB ahh aEY aEY @@ -44786,89 +40696,89 @@ pWf pWf pWf axz -vqq -jmq -jmq -vqq +gec +eNl +eNl +gec hLf hLf -xiu -jru -jru -wJp -wJp -jru +nsb +iCH +iCH +suu +suu +iCH qpu -uzP -jBp -lSz -jBp -uzP +dHQ +mNk +dxs +mNk +dHQ hLf -oyc -jIK +lkO +bZL noi noi -jIK -stN -blP -uYa -vmy +bZL +etS +pKp +ffB +rId sKf -iCs -sjo -teD -mQL -uSe -vNJ +cIq +qum +xQZ +cdH +rMt +hFq sKf -vmy -otL -sVV -uZl -sjo -ejt -ejt -vNJ +rId +gkd +fzc +tzz +qum +oqO +oqO +hFq tEl -hyu -rGg -jBu -rGg -hyu -hyu -rGg -rGg -rGg -bVb +ygt +fct +mpA +fct +ygt +ygt +fct +fct +fct +bXa pbY -kdK -hyu -hyu -hyu -uKN -uhL +srb +ygt +ygt +ygt +lgV +pYI nOd -rAH -xgc -owr -boW -owr -boW +kop +tHd +fyT +kyD +fyT +kyD dYp dYp pqe tnu -iWu -xhn -aLG -xIU -uYl -oaI -oaI -oaI -cGW -rym +ucD +wNY +vGg +wGX +tTx +qSY +qSY +qSY +vmU +qec tnu pqe gss @@ -44919,23 +40829,23 @@ puZ (107,1,1) = {" aad axz -vvb -qrz -qrz -qrz +dnu +hzf +hzf +hzf jFy -qrz -qrz -qrz -qrz -qrz -qrz -mTK -jqY -jqY -qrz -nfe -lWr +hzf +hzf +hzf +hzf +hzf +hzf +uPQ +jhr +jhr +hzf +pcz +wMZ ahh aEY aEY @@ -44949,88 +40859,88 @@ aad aad axz axz -qrz -dkC +hzf +dNJ axz hLf -uTN -ujJ -jru -kIq -qgp -dBK -ile +ykP +xGu +iCH +deE +lJv +oFf +hdJ hLf -eHp -uzP -uzP -isr -uzP +kBz +dHQ +dHQ +cgP +dHQ hLf -stN +etS noi -mdx -mdx +pkF +pkF noi -stN -hKR -ejt -vhL -rZD -rZD -vAT -cUS -hqh -vhL -rZD -rZD -vAT -ejt -vNJ -sjo -ejt -ejt -ejt -tKk +etS +teS +oqO +chG +aEn +aEn +aSl +bZf +aFL +chG +aEn +aEn +aSl +oqO +hFq +qum +oqO +oqO +oqO +pkX aOW -mCs -rGg -vrm -rGg -hyu -hyu -rGg -vrm -rGg -hyu +iRC +fct +skE +fct +ygt +ygt +fct +skE +fct +ygt aRb -iuz -rVK -tkb -rMe -hyu +gvg +eNK +rfO +fJS +ygt nOd nOd hcH -btM -dXp -dXp -dXp -uhO +epZ +wnX +wnX +wnX +gCp hcH pqe pqe mEJ -ueG -iek -wCU -xCN -qiu -oaI -rBr -oaI -lxn -boT +xdQ +fut +uEv +hil +joH +qSY +aEt +qSY +vGJ +mXO tnu hcH gGT @@ -45081,23 +40991,23 @@ puZ (108,1,1) = {" aad axz -aFZ -qrz -qrz -qrz +uKd +hzf +hzf +hzf ajr -qrz -qrz -qrz -qrz -qrz -qrz -ndR -jqY -jqY -qrz -qrz -tSt +hzf +hzf +hzf +hzf +hzf +hzf +qMR +jhr +jhr +hzf +hzf +fVB tLP lVF hpn @@ -45107,21 +41017,21 @@ lVF lVF lVF aad -lKJ -jqY +mjp +jhr aaY aaY -jmq -jmq +eNl +eNl aaY wag -iPg -iPg -iPg -iPg -mXq -iPg -iPg +gyO +gyO +gyO +gyO +dBU +gyO +gyO hLf lJx lJx @@ -45129,70 +41039,70 @@ baN tdR lJx hLf -stN +etS noi -mdx -mdx +pkF +pkF noi -stN -hKR -ejt -uSe -aUM -aUM -kGn -lKQ -uYa -bUX -aUM -aUM -sjo -ejt -vNJ -vAT -ejt -ejt -ejt -vNJ +etS +teS +oqO +rMt +eyb +eyb +aBD +kes +ffB +ecc +eyb +eyb +qum +oqO +hFq +aSl +oqO +oqO +oqO +hFq tEl -hyu -rbo -rbM -wZY -hyu -hyu -rbo -rbM -wZY -gGB +ygt +rgA +bdF +euy +ygt +ygt +rgA +bdF +euy +sxY nOd -uig -hyu -vCv -lYX -hyu -uhL -rKo -lFP -jPj -jPj -jPj -jPj -jPj -pnd -dXp -lxn -dQp -vpZ -lxn -lxn -lxn -lxn -oaI -oaI -oaI -lxn -lxn +mkA +ygt +gOA +qKG +ygt +pYI +cIY +wnF +aQP +aQP +aQP +aQP +aQP +has +wnX +vGJ +jCv +kyN +vGJ +vGJ +vGJ +vGJ +qSY +qSY +qSY +vGJ +vGJ tnu aGl tHd @@ -45222,7 +41132,7 @@ kyD tHd pDr tHd -dYw +kyD kyD kyD kyD @@ -45243,118 +41153,118 @@ puZ (109,1,1) = {" aad axz -qrz -qrz -qrz -qrz +hzf +hzf +hzf +hzf jFy -ndR -ndR -ndR -xTZ -aPy -aPy -ndR -jqY -jqY -qrz -qrz -qrz -anA -anA -gHA -pAO -anA -tZs -anA -anA -vfd -vfd -qrz -vfd -fel -gNF -gNF -fel -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -stN -stN -stN -stN -kWG -stN -jIK +qMR +qMR +qMR +kYV +jFc +jFc +qMR +jhr +jhr +hzf +hzf +hzf +aon +aon +fFO +ddb +aon +enq +aon +aon +lwx +lwx +hzf +lwx +fLv +hxp +hxp +fLv +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +etS +etS +etS +etS +nXc +etS +bZL noi noi -jIK -stN -apL -hqh -vmy +bZL +etS +oJY +aFL +rId sKf -hKR -vAT -eoG -apT -aoL -vNJ +teS +aSl +dBt +nUH +oXA +hFq sKf -vmy -cUS -rzz -uZl -vAT -ejt -ejt -vNJ +rId +bZf +vya +tzz +aSl +oqO +oqO +hFq tEl -hyu -thB -lGZ -kec -hyu -hyu -thB -lGZ -kec -hyu +ygt +nVv +qNu +fAk +ygt +ygt +nVv +qNu +fAk +ygt nOd -uhL -hyu -hyu -tWn -hyu -hyu +pYI +ygt +ygt +nmn +ygt +ygt cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -vpZ -oaI -oaI -whS -bAv -oGb -oGb -lxn -lxn -lxn -dXp +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +kyN +qSY +qSY +tsP +jRK +fIX +fIX +vGJ +vGJ +vGJ +wnX aFA kyD kop @@ -45384,7 +41294,7 @@ tHd kyD pDr kyD -dYw +kyD kyD kyD kyD @@ -45405,118 +41315,118 @@ puZ (110,1,1) = {" aad axz -aTT -qrz -qrz -qrz +bAy +hzf +hzf +hzf axz -qrz -qrz -ndR -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -vfd -vxE -aJB -vfd -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -mdx -mdx -mdx -stN -mdx -stN -stN -stN -stN -stN -bHf +hzf +hzf +qMR +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +lwx +sEF +baJ +lwx +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +pkF +pkF +pkF +etS +pkF +etS +etS +etS +etS +etS +nkW rBH -mIt -vmy +kXo +rId hWK -vAT -aFu -hKR -vNJ -aUM -vhL +aSl +bNB +teS +hFq +eyb +chG hWK -vmy -tKk +rId +pkX rBH -djy -uZl -vAT -aUM -vhL +rHL +tzz +aSl +eyb +chG aOW -hyu -rGg -hwg -rGg -hyu -hyu -rGg -hwg -rGg -hyu +ygt +fct +umh +fct +ygt +ygt +fct +umh +fct +ygt nOd -uhL -hyu -hyu -hyu -iuM -olI +pYI +ygt +ygt +ygt +vIq +jaW cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -lxn -lxn -lxn -lxn -lxn -lxn -bAv -bAv -oaI -oaI -oaI +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +vGJ +vGJ +vGJ +vGJ +vGJ +vGJ +jRK +jRK +qSY +qSY +qSY aFC kyD kyD @@ -45572,113 +41482,113 @@ axz axz axz axz -agx -agx -ndR -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -oqt -jqY -jqY -jqY -jqY -jqY -jqY -jqY -vfd -nqu -twG -vfd -wtC -stN -mdx -stN -mdx -stN -mdx -stN -wtC -stN -mdx -mdx -mdx -stN -mdx -stN -mdx -amE -amE -stN +uMf +uMf +qMR +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +iBl +jhr +jhr +jhr +jhr +jhr +jhr +jhr +lwx +iEH +mkZ +lwx +cgX +etS +pkF +etS +pkF +etS +pkF +etS +cgX +etS +pkF +pkF +pkF +etS +pkF +etS +pkF +tCT +tCT +etS beF rBH -hKR -vmy +teS +rId sKf sKf pxl -hKR -vNJ +teS +hFq fzF hWK sKf -vmy -vNJ +rId +hFq rBH rNZ -ejt -vAT -aUM -vhL +oqO +aSl +eyb +chG aOW -nLn -aAj -pEh -hyu -aBt -hyu -rpv -hyu -hyu -uxH +adL +bPq +nRe +ygt +eBz +ygt +isT +ygt +ygt +xtu nOd -uhL -hyu -hyu -hyu -hyu -hyu +pYI +ygt +ygt +ygt +ygt +ygt cvs -vxb -jPj -jPj -jPj -jPj -jPj -pAV -oaI -oaI -oaI -oaI -lxn -oaI -oaI -lxn -oaI -oaI -oaI -fTX -oaI +kYM +aQP +aQP +aQP +aQP +aQP +vIV +qSY +qSY +qSY +qSY +vGJ +qSY +qSY +vGJ +qSY +qSY +qSY +cLL +qSY aFC kyD kyD @@ -45734,74 +41644,74 @@ axz axz axz axz -jqY -jqY -aBl -jqY -jqY -ndR -xmS +jhr +jhr +liH +jhr +jhr +qMR +tUL jVx wlj odg -xsD +krq qCn -qrz -ydP -kFJ -qrz -qrz -izt -jqY -jqY -mGn -vfd -qrz -vfd -vqq -gNF -gNF -vqq -wtC -stN -mdx -stN -mdx -stN -mdx -qrq -wtC -stN -stN -amO -amO -stN -mdx -stN -tKd -bTV -bTV -anm +hzf +nfo +hev +hzf +hzf +wIn +jhr +jhr +oxr +lwx +hzf +lwx +gec +hxp +hxp +gec +cgX +etS +pkF +etS +pkF +etS +pkF +dPt +cgX +etS +etS +mLv +mLv +etS +pkF +etS +xwA +mOm +mOm +gGD fcy doJ -hKR +teS dOD -vmy -vmy -vmy -uSe -sjo -vmy -vmy -wmc +rId +rId +rId +rMt +qum +rId +rId +pCL dOD -vNJ +hFq doJ wjD -ejt -vAT -aUM -vhL +oqO +aSl +eyb +chG nOd aOW aOW @@ -45809,38 +41719,38 @@ aOW aOW aOW nOd -kQX -aLB -aLB -rGg +jnp +bHG +bHG +fct nOd -akX -opM -puN -mKk -uhL -uhL -rKo -kEK -jPj -jPj -jPj -jPj -jPj -ydz -dXp -lxn -lxn -lxn -lxn -dXc -lxn -lxn -lxn -lxn -lxn -tsR -dXp +jLE +lFR +wWr +lxp +pYI +pYI +cIY +rQY +aQP +aQP +aQP +aQP +aQP +dZI +wnX +vGJ +vGJ +vGJ +vGJ +rcG +vGJ +vGJ +vGJ +vGJ +vGJ +hQG +wnX aFI kyD tHd @@ -45896,13 +41806,13 @@ beQ beQ ffj axz -aiE -aAg -ndR -jqY -jqY -ndR -aAi +txH +tdY +qMR +jhr +jhr +qMR +pBT aaY jVx naN @@ -45914,67 +41824,67 @@ aaY jFy jFy axz -doc -ivr +tfd +ykS axz jFy jFy aaY -gNF -gNF -gNF -gNF +hxp +hxp +hxp +hxp wag -azO -pad -gHr -xaw -dQZ -nRy +iXF +qcA +kHQ +iGl +rFa +cLB wag wag beF -tKd -lXE -yjh -anm -mdx -stN -tKd -yjh -bTV -anm +xwA +epB +ilk +gGD +pkF +etS +xwA +ilk +mOm +gGD dWw doJ -vAT -aUM -mZH -aUM -hqh -cUS -aUM -iAt -nUn -aUM -aUM -vhL +aSl +eyb +vtv +eyb +aFL +bZf +eyb +yis +kBa +eyb +eyb +chG doJ rNZ -ejt -hKR -ejt -vNJ +oqO +teS +oqO +hFq aOW -hCt +hSF aAl mgL mBf -iyP +mQy aOW -vdC -wGD -wGD -vdC +qiT +gQh +gQh +qiT nOd aOW aOW @@ -45984,25 +41894,25 @@ nOd nOd nOd hcH -bHx -dXp -dXp -dXp -aJF +dKx +wnX +wnX +wnX +mcC hcH -dwf -dwf -cBG -mLG +fuQ +fuQ +kdJ +sDW tnu -wgW -soE +hiX +wuZ tnu tnu -cFa -lxn -lxn -mWK +cii +vGJ +vGJ +xLN tnu aGu tHd @@ -46058,13 +41968,13 @@ bfc beY gnZ axz -ayo -aBe -ndR -jqY -jqY -ndR -qSe +tAL +lXh +qMR +jhr +jhr +qMR +dDU axz axz wlj @@ -46073,47 +41983,47 @@ mqD wlj axz axz -rnz -doc -uPo -doc -doc -uPo -doc -rnz +xgA +tfd +fcn +tfd +tfd +fcn +tfd +xgA jFy -qrz -jqY -jqY -qrz +hzf +jhr +jhr +hzf wag -gSb -cOa -mdx -guz -nHj -guz -mdx +lPw +qcz +pkF +jAU +hpv +jAU +pkF wag wag -tKd -qUe -yjh -anm -mdx -stN -stN -arL -arL -stN +xwA +tkO +ilk +gGD +pkF +etS +etS +ebC +ebC +etS dWw rBH rBH rBH rBH vDD -hKR -vNJ +teS +hFq vDD rBH rBH @@ -46122,26 +42032,26 @@ rBH rBH rBH aDz -ejt -vAT -aUM -vhL +oqO +aSl +eyb +chG aOW -otA +oUB sKO inJ inJ -kVA +dRp aOW -tqL -aQb -aLB -rGg +tNz +ipD +bHG +fct aOW -pmz -eBZ -kaT -kqH +lhZ +lou +mva +mEU aOW aQi cZk @@ -46219,14 +42129,14 @@ bfc bfc bfc tmV -kLz -anE -anE -cTY -jqY -jqY -ndR -qSe +csN +cPP +cPP +gNl +jhr +jhr +qMR +dDU axz axz wlj @@ -46235,37 +42145,37 @@ qCn tKg axz axz -doc -wCz -lWW -wCz -lWW -wCz -lWW -doc +tfd +pBB +heH +pBB +heH +pBB +heH +tfd jFy -gNF -jqY -jqY -kxb +hxp +jhr +jhr +olh wag -ajq -mdx -wHA -mdx -wHA -mdx -wHA -eFm +tMG +pkF +lue +pkF +lue +pkF +lue +jhf wag -kwc -yjh -bTV -anm -stN -stN -mdx -stN +xTT +ilk +mOm +gGD +etS +etS +pkF +etS rBH rBH rBH @@ -46274,8 +42184,8 @@ rBH rBH rBH fiK -hKR -vNJ +teS +hFq fiK rBH rBH @@ -46285,25 +42195,25 @@ rBH rBH rBH rBH -vAT -aUM -vhL +aSl +eyb +chG aOW -ofK +esV gdU oEk rAq -rLD +fpF aOW -lJt -aLB -aLB -rGg +rTN +bHG +bHG +fct oAo inJ fKy fGw -xqe +psI aOW daD cZk @@ -46381,14 +42291,14 @@ bfc beY bfc bfc -qrz -anE -anE -hmI -jqY -jqY -ndR -qSe +hzf +cPP +cPP +qUU +jhr +jhr +qMR +dDU axz axz opa @@ -46397,37 +42307,37 @@ qCn ssf axz axz -doc -nCo -kRK -nCo -kRK -nCo -kRK -doc +tfd +ibv +vNP +ibv +vNP +ibv +vNP +tfd aaY -ilo -jqY -jqY -jqY +rGU +jhr +jhr +jhr hZS -stN -stN -stN -stN -stN -stN -stN -stN +etS +etS +etS +etS +etS +etS +etS +etS aGC -stN -arL -arL -stN -mdx -stN -mdx -stN +etS +ebC +ebC +etS +pkF +etS +pkF +etS tFk fiK pNy @@ -46435,37 +42345,37 @@ rBH eOK fiK tFk -vmy -hKR -vNJ -vmy +rId +teS +hFq +rId egr fiK pNy rBH -iaj -mqe -rFA +gKc +uId +jSX rBH -joh -iHN -krM +rKn +xFt +epl nOd nOd -wpG +oAX nOd -rey -sPA +mgO +nHS nOd -fYm -aLB -aLB -rGg +fFL +bHG +bHG +fct aOW -akX -aKv -vxW -owD +jLE +qHB +dln +dlD aOW awr cZk @@ -46476,13 +42386,13 @@ bFg bIV cZk hcH -wxs -apZ -taq +ctH +dwj +thL hcH hcH -sGI -oXf +sxs +pow hcH hcH aVr @@ -46543,14 +42453,14 @@ bfc beY bfc bfc -qrz -anE -anE -ncY -jqY -jqY -ndR -qSe +hzf +cPP +cPP +ayE +jhr +jhr +qMR +dDU axz axz ssf @@ -46559,37 +42469,37 @@ rCO ssf axz axz -doc -wCz -lWW -wCz -lWW -wCz -lWW -doc +tfd +pBB +heH +pBB +heH +pBB +heH +tfd jFy -gNF -gNF -gNF -gNF +hxp +hxp +hxp +hxp lJx -mdx -mdx -mdx -mdx -mdx -mdx -mdx -mdx +pkF +pkF +pkF +pkF +pkF +pkF +pkF +pkF lJx -mdx -mdx -mdx -stN -mdx -stN -stN -aow +pkF +pkF +pkF +etS +pkF +etS +etS +inN rBH gKQ wZW @@ -46597,32 +42507,32 @@ rBH wZW gKQ rBH -qng -hKR -vNJ -hmQ +ivA +teS +hFq +tjk rBH gKQ wZW rBH -ejt -ejt -ejt +oqO +oqO +oqO doJ -hju -hju -hju +bnK +bnK +bnK wpW -owx -rGg -oNo -rGg -rGg +rnF +fct +nlL +fct +fct mKA -owx -aLB -aLB -rGg +rnF +bHG +bHG +fct nOd aOW aOW @@ -46638,14 +42548,14 @@ bFg bFg cZk gWk -xXv -aLG -hbu -fYW -lWR -aLG -aLG -pMK +kaj +vGg +jpC +uRp +ciJ +vGg +vGg +tPK gWk aVs fIW @@ -46705,14 +42615,14 @@ bfc bfc bfc bfc -qrz -anE -anE -ndR -jqY -jqY -ndR -qWu +hzf +cPP +cPP +qMR +jhr +jhr +qMR +jov aaY aaY jVx @@ -46721,36 +42631,36 @@ qCn jVx aaY aaY -doc -nCo -kRK -nCo -kRK -nCo -kRK -doc +tfd +ibv +vNP +ibv +vNP +ibv +vNP +tfd jFy -jqY -jqY -jqY -jqY +jhr +jhr +jhr +jhr hZS -stN -stN -stN -stN -stN -stN -stN -stN +etS +etS +etS +etS +etS +etS +etS +etS aGC -stN -amO -amO -stN -stN -stN -stN +etS +mLv +mLv +etS +etS +etS +etS rBH rBH rBH @@ -46760,36 +42670,36 @@ rBH rBH rBH rBH -hKR -vNJ +teS +hFq rBH rBH rBH rBH rBH -pBy -ejt -ejt +rFv +oqO +oqO doJ -gjY -vHM -gjY -jjm -jIR -jIR -jIR -jIR -jIR -jjm -jIR -wGD -wGD -rGg +dUN +rjx +dUN +kdx +kyV +kyV +kyV +kyV +kyV +kdx +kyV +gQh +gQh +fct aOW -iXE -oLr -vbb -hBI +ugu +aXY +lWP +vvM aOW kgI cZk @@ -46800,14 +42710,14 @@ bFg bFg cZk gWk -xXv -aLG -iyk -xZW -aLG -bBs -aLG -mLo +kaj +vGg +wzw +eRv +vGg +oWx +vGg +aYZ tnu aVt sgl @@ -46868,13 +42778,13 @@ bfc beY gpT axz -ayG -ael -tQK -jqY -jqY -ndR -qrz +riL +mRk +xYq +jhr +jhr +qMR +hzf aaY xha xha @@ -46883,36 +42793,36 @@ qCn gPg xha axz -doc -wCz -lWW -wCz -lWW -wCz -lWW -doc +tfd +pBB +heH +pBB +heH +pBB +heH +tfd jFy -gNF -jqY -jqY -gNF +hxp +jhr +jhr +hxp lJx -xVo -mdx -guz -mdx -guz -mdx -guz -qps +nYu +pkF +jAU +pkF +jAU +pkF +jAU +vtA lJx -tKd -bTV -yjh -anm -mdx -mdx -stN +xwA +mOm +ilk +gGD +pkF +pkF +etS tFk fiK fiK @@ -46922,36 +42832,36 @@ xde fiK fiK tFk -hKR -vNJ +teS +hFq egr fiK fiK gxW rBH -auM -ejt -ejt -tGU -lod -gjY -fZR -rGg -jIR -jIR -jIR -jIR -jIR -rGg -jIR -wGD -wGD -rGg +wTL +oqO +oqO +oQi +xKv +dUN +tHa +fct +kyV +kyV +kyV +kyV +kyV +fct +kyV +gQh +gQh +fct aOW hnw inJ fBJ -nVM +xwH aOW daD cZk @@ -46962,14 +42872,14 @@ bFg bIV cZk gWk -lbF -aLG -kMO -lDI -aLG -aLG -aLG -wYd +bKD +vGg +rDi +rkw +vGg +vGg +vGg +lge tnu aVw vxg @@ -47030,13 +42940,13 @@ bJz bJz gMv axz -aFZ -qrz -ndR -jqY -jqY -ndR -qrz +uKd +hzf +qMR +jhr +jhr +qMR +hzf vWt xha xha @@ -47045,36 +42955,36 @@ xha aaX xha axz -doc -jMZ -gvz -jMZ -gvz -jMZ -gvz -doc +tfd +ljs +riX +ljs +riX +ljs +riX +tfd axz -kFJ -jqY -jqY -kFJ +hev +jhr +jhr +hev lJx -mdx -wHA -wWY -wHA -mdx -ieo -mdx -kQi +pkF +lue +bii +lue +pkF +ehT +pkF +rxr lJx -tKd -yjh -bTV -anm -mdx -mdx -stN +xwA +ilk +mOm +gGD +pkF +pkF +etS rBH gKQ fiK @@ -47084,36 +42994,36 @@ wZW fiK gKQ rBH -hKR -vNJ +teS +hFq rBH fiK gKQ wZW rBH -auS -ejt -ejt -ejt -lUF -fZR -gjY +lYw +oqO +oqO +oqO +lNd +tHa +dUN tEl -meG -rGg -rGg -rGg -jwk +rvx +fct +fct +fct +lHU tEl -rGg -rGg -rGg -rGg +fct +fct +fct +fct oAo inJ inJ inJ -sxb +aJa aOW daD cZk @@ -47124,14 +43034,14 @@ bFg bIV sbj gWk -wIS -aLG -aLG -aLG -tZM -aLG -aLG -nrf +gWa +vGg +vGg +vGg +lAP +vGg +vGg +hOU tnu uiI sgl @@ -47169,9 +43079,9 @@ puZ puZ puZ hcJ -cUl -cUl -xbT +taB +taB +taB hcJ puZ puZ @@ -47192,13 +43102,13 @@ axz axz axz axz -jqY -jqY -ndR -jqY -vIL -ndR -vzy +jhr +jhr +qMR +jhr +moM +qMR +fFP aaY axz bLf @@ -47207,14 +43117,14 @@ aaY xha xha vWt -doc -doc +tfd +tfd cRP dqW bMn cRP -doc -sQt +tfd +hbU aaY axz xha @@ -47222,21 +43132,21 @@ cLx axz wag wag -tWE -qfe -xvf -xvf -wMq -rRp +lso +knS +nxG +nxG +aKf +nLP wag wag -tKd -bTV -bTV -anm -stN -stN -stN +xwA +mOm +mOm +gGD +etS +etS +etS rBH rBH rBH @@ -47246,38 +43156,38 @@ rBH rBH rBH rBH -hju -hju +bnK +bnK rBH rBH rBH rBH rBH -auT -ejt -ejt +dAj +oqO +oqO doJ -gjY -vHM -gjY +dUN +rjx +dUN aOW -fkF -pyV -pNx -pyV -vdC +vFc +ean +fgr +ean +qiT aOW -oSU -nEZ -cbC -fkF +bqp +wYu +bil +vFc aOW -akX -uhL -owD -owD +jLE +pYI +dlD +dlD aOW -raQ +fBE cZk cZk bFg @@ -47286,14 +43196,14 @@ bFg bIV uTu gWk -lxn +vGJ qXS qXS qXS slU frj qXS -wXQ +hJf aUt vxg sgl @@ -47331,9 +43241,9 @@ puZ puZ puZ hcJ -cUl -cUl -cUl +taB +taB +taB hcJ hcJ puZ @@ -47349,39 +43259,39 @@ puZ (122,1,1) = {" aad axz -qrz -qrz -qrz -qrz +hzf +hzf +hzf +hzf axz -jqY -jqY -ndR -jqY -jqY -ndR -qrz +jhr +jhr +qMR +jhr +jhr +qMR +hzf jFy -btQ -lQa -jsA +jYI +iQl +aqY axz xha xha axz -doc -doc +tfd +tfd jUa jvT djn djn -doc -sQt +tfd +hbU axz -pMs -bsp -bsp -icC +rsR +kWC +kWC +cEw wag wag lJx @@ -47392,36 +43302,36 @@ lJx lJx wag wag -nSI -arL -arL -stN -stN -stN -stN +ycD +ebC +ebC +etS +etS +etS +etS gBH -ecZ -ecZ -uzU +jwz +jwz +mxo rBH pNy fiK fiK tFk -gjY -fZR +dUN +tHa egr fiK fiK pNy rBH -fDd -ejt -ejt +fUG +oqO +oqO doJ -fZR -gjY -gjY +tHa +dUN +dUN aOW aOW aOW @@ -47448,14 +43358,14 @@ bFg bIV sbj tnu -lxn -lxn -oET -lxn -cFa -hDd -wXQ -ogd +vGJ +vGJ +iix +vGJ +cii +aXy +hJf +nWR tnu aZA vxg @@ -47495,8 +43405,8 @@ cXk wNj qcT gzM -cUl -xRg +taB +kjE hcJ puZ puZ @@ -47511,22 +43421,22 @@ puZ (123,1,1) = {" aad axz -qrz -jqY -jqY -qrz +hzf +jhr +jhr +hzf axz -qgz -qrz -ndR -jqY -jqY -ndR -qrz +mVZ +hzf +qMR +jhr +jhr +qMR +hzf jFy -qer -qrz -bYS +fgf +hzf +xuT axz xha hYb @@ -47537,13 +43447,13 @@ axz axz axz axz -hwJ +uTE axz aaY -hWh -bsp -bsp -rAF +iaG +kWC +kWC +lZH oWG gzc gzc @@ -47554,36 +43464,36 @@ arX qep hLf hLf -stN -stN -stN -stN -stN -stN -stN +etS +etS +etS +etS +etS +etS +etS rBH -ecZ -ecZ -ecZ +jwz +jwz +jwz rBH wZW fiK gKQ rBH -hju -hju +bnK +bnK rBH fiK gKQ wZW rBH -byH -wMR -viy +jan +oNI +trZ rBH -jgz -hju -jCe +jGK +bnK +bLb aOW aOW aOW @@ -47611,9 +43521,9 @@ bFg aoZ tnu tnu -aMz -aMT -lEJ +hoD +fYI +sBz tnu tnu tmh @@ -47656,9 +43566,9 @@ sod sod wNj gzM -blI -blI -lnY +jRP +jRP +nBM hcJ puZ puZ @@ -47672,40 +43582,40 @@ puZ "} (124,1,1) = {" aad -aag -jqY -jqY -jqY -qrz +pOd +jhr +jhr +jhr +hzf aaY -adJ -ndR -ndR -vIL -jqY -ndR -qrz +iMe +qMR +qMR +moM +jhr +qMR +hzf ufA -plm -qrz -tmI +dFI +hzf +dwN axz xha xha axz -xEu -xEu -uHa -xEu -xEu +iWv +iWv +ubZ +iWv +iWv axz -ndR -iwn +qMR +sbM axz -hWh -bsp -bsp -rAF +iaG +kWC +kWC +lZH oWG stT nbk @@ -47721,19 +43631,19 @@ lJx lJx lJx hLf -mdx -aBs +pkF +eog rBH -ecZ -umC -ecZ +jwz +wgd +jwz rBH rBH rBH rBH rBH -aki -aZR +eNH +lcJ rBH rBH rBH @@ -47743,9 +43653,9 @@ rBH rBH rBH rBH -xQQ -gVh -xQQ +aMo +rGi +aMo aOW aOW aOW @@ -47783,8 +43693,8 @@ xOb tnu kPZ aWE -aLG -baV +vGg +rkz tnu bnS tHd @@ -47817,10 +43727,10 @@ cXk sod rKk uYC -pOM -blI -blI -jLn +kro +jRP +jRP +iKs hcJ puZ puZ @@ -47834,23 +43744,23 @@ puZ "} (125,1,1) = {" aad -aAi -qrz -jqY -jqY -jqY -czH -jqY -jqY -jqY -jqY -jqY -ndR -qrz +pBT +hzf +jhr +jhr +jhr +wBy +jhr +jhr +jhr +jhr +jhr +qMR +hzf jFy -itW -qrz -xzK +sRP +hzf +pOb axz xha xha @@ -47861,13 +43771,13 @@ xha xha xha vBg -ndR -iRh +qMR +xgy axz -hWh -bsp -bsp -rAF +iaG +kWC +kWC +lZH eOM eOM pKF @@ -47882,20 +43792,20 @@ arX lwo qep sYu -dYm -nvS -nvS -dYm -ecZ -xbZ -ecZ +nuE +rkB +rkB +nuE +jwz +lnV +jwz qGN arX arX eOM pzJ -fcL -nvS +tGu +rkB pzJ oOV arX @@ -47933,7 +43843,7 @@ bIV bFg bFg bFg -aKJ +pkU jeg mZb ejF @@ -47945,8 +43855,8 @@ xOb tnu kPZ aKK -xCA -eCg +mOM +qky tnu boA tHd @@ -47978,10 +43888,10 @@ cXk sod sod rKk -tQG -cUl -blI -blI +tfx +taB +jRP +jRP bTC hcJ puZ @@ -47996,23 +43906,23 @@ puZ "} (126,1,1) = {" aad -aAi -qrz -jqY -jqY -jqY -qrz -jqY -sAe -jqY -jqY -jqY -ndR -kFJ +pBT +hzf +jhr +jhr +jhr +hzf +jhr +nPa +jhr +jhr +jhr +qMR +hev hxk -qow -gtZ -nnG +hsE +hDM +pJB axz xha xha @@ -48023,13 +43933,13 @@ xha bPu xha vBg -ndR -lHX +qMR +wBP axz -xMH -bsp -bsp -rAF +rXy +kWC +kWC +lZH eOM sYu sYu @@ -48044,21 +43954,21 @@ arX lwo lwo lwo -dYm -nvS -nvS -dYm -ecZ -xbZ -ecZ +nuE +rkB +rkB +nuE +jwz +lnV +jwz lwo lwo eOM sYu -dYm -fcL -nvS -dYm +nuE +tGu +rkB +nuE sYu lwo lwo @@ -48095,22 +44005,22 @@ bFg lpD lpD bFg -aKJ +pkU jeg kuJ kZK oNZ -aPj +jPF aRn tmh xOb tnu pEe elR -eNv -moV +bhk +eKj tnu -qEt +vbK tHd tHd kyD @@ -48141,9 +44051,9 @@ foa rKk sod uYC -cUl -blI -blI +taB +jRP +jRP gBc hcJ puZ @@ -48158,18 +44068,18 @@ puZ "} (127,1,1) = {" aad -afw -jqY -jqY -jqY -qrz +fOU +jhr +jhr +jhr +hzf axz axz axz -aNd -oaH -aMx -isU +jux +wbZ +upN +qnD axz axz axz @@ -48185,13 +44095,13 @@ xha xha xha vBg -ndR -fJw +qMR +bJe axz -hWh -bsp -bsp -rAF +iaG +kWC +kWC +lZH eOM eOM eOM @@ -48206,10 +44116,10 @@ arX arX lwo lwo -rFp -nvS -nvS -rFp +qbE +rkB +rkB +qbE sYu fSj wPz @@ -48217,10 +44127,10 @@ xXM tUe cGJ eOM -dYm -nvS -htC -dYm +nuE +rkB +gOQ +nuE sYu eOM eOM @@ -48257,20 +44167,20 @@ bFg bFg bFg bIV -aKJ +pkU jlv kgr oNZ nIN -avu -kvu -bwb -jDp +fPl +bPv +mLx +imD tnu kPZ fKE -aLG -baW +vGg +ouI tnu ofw kop @@ -48303,8 +44213,8 @@ sod rKk cXk wNj -cUl -nTv +taB +qvn vnF hgL hcJ @@ -48321,10 +44231,10 @@ puZ (128,1,1) = {" aad sCi -cTu -jqY -jqY -qrz +uRV +jhr +jhr +hzf axz axz axz @@ -48347,13 +44257,13 @@ bks bks wQR axz -ndR -fKT +qMR +hYc axz -mQs -bsp -bsp -rAF +cmV +kWC +kWC +lZH eOM mtU dLe @@ -48379,10 +44289,10 @@ kWa khw dnv lwo -rFp -fcL -fcL -rFp +qbE +tGu +tGu +qbE sYu eOM eOM @@ -48431,8 +44341,8 @@ sFu tnu kPZ gTe -tnz -baW +iIH +ouI tnu ofw kop @@ -48483,20 +44393,20 @@ puZ (129,1,1) = {" aad aan -qrz -jqY -fVR -qrz +hzf +jhr +tnA +hzf aaY -amG -qrz -yjn -qrz -cZb -qrz -qrz -qrz -cZb +pkn +hzf +oem +hzf +njt +hzf +hzf +hzf +njt esf xha xha @@ -48509,13 +44419,13 @@ dWD rWt xha vBg -ndR -ndR -ord -bsp -bsp -bsp -rAF +qMR +qMR +nfA +kWC +kWC +kWC +lZH eOM sYu oMG @@ -48621,9 +44531,9 @@ sod rEV sod sod -rkS -rVM -sGR +gup +fYP +xVU cXk sod sod @@ -48645,20 +44555,20 @@ puZ (130,1,1) = {" aad amx -mSR -jqY -jqY -qrz +hSC +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf aoX aqC ayY qfh cXM -qrz -qSe +hzf +dDU axz xha xha @@ -48671,13 +44581,13 @@ xha vyM xha vBg -ndR -fcq +qMR +cnG axz -mQs -bsp -bsp -rAF +cmV +kWC +kWC +lZH eOM eOM eOM @@ -48749,7 +44659,7 @@ fse jhR oNZ ihp -lXM +kmQ bAn aMB oNZ @@ -48783,9 +44693,9 @@ sod cXk cXk sod -bai +rQb rXt -acW +nPq sod sod sod @@ -48806,21 +44716,21 @@ puZ "} (131,1,1) = {" aad -aag -jqY -jqY -jqY -qrz +pOd +jhr +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf apa arh tfd tfd fFG -qrz -qSe +hzf +dDU axz xha lYL @@ -48833,17 +44743,17 @@ xha xha xha vBg -ndR -fcq +qMR +cnG axz -sqy -bsp -bsp -mms -bbw -bbw -bbw -kiS +qOj +kWC +kWC +xkj +aUV +aUV +aUV +lEl eOM sYu sYu @@ -48945,9 +44855,9 @@ sod sod sod sod -rAm -acC -sKH +cCB +cgp +jSn sod sod sod @@ -48968,21 +44878,21 @@ puZ "} (132,1,1) = {" aad -aAi -qrz -fVR -gdk -jqY -akE -qmA -qrz +pBT +hzf +tnA +kKp +jhr +jBn +kGe +hzf apc arq azc jOP oqy -qrz -qSe +hzf +dDU axz hQW xha @@ -48995,17 +44905,17 @@ hTk nCx nCx vBg -ndR -sII +qMR +wSE axz -lNf -bsp -bsp -bsp -bsp -bsp -bsp -rAF +kCc +kWC +kWC +kWC +kWC +kWC +kWC +lZH eOM sYu sYu @@ -49130,21 +45040,21 @@ puZ "} (133,1,1) = {" aad -aAi -qrz -jqY -jqY -jqY -adf -qrz -qrz +pBT +hzf +jhr +jhr +jhr +ibz +hzf +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz dug xha @@ -49160,14 +45070,14 @@ axz hJH axz aaY -sXr -dMy -hWh -hWh -hWh -hWh -bsp -rAF +vYC +bGh +iaG +iaG +iaG +iaG +kWC +lZH eOM sYu sYu @@ -49205,11 +45115,11 @@ eOM lwo ktd ktd -tmi -aAp -xXV -oCr -ver +hTa +nfD +wtf +sGo +vwR ktd fGl bIV @@ -49292,21 +45202,21 @@ puZ "} (134,1,1) = {" aad -afw -jqY -jqY -jqY -qrz +fOU +jhr +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz csu xha @@ -49327,9 +45237,9 @@ axz axz axz aaY -hWh -bsp -rAF +iaG +kWC +lZH eOM sYu sYu @@ -49366,12 +45276,12 @@ lwo lwo ktd ktd -azF -ver -ver -aBf -ver -aBK +uHh +vwR +vwR +lQW +vwR +bzu aCp bIV bIV @@ -49455,20 +45365,20 @@ puZ (135,1,1) = {" aad ami -cTu -jqY -jqY -qrz +uRV +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz csu xha @@ -49489,9 +45399,9 @@ muN ivl ixo axz -hWh -bsp -rAF +iaG +kWC +lZH sYu eOM sYu @@ -49527,13 +45437,13 @@ lwo lwo qep ktd -ulm -ver -ver -ver -aAh -ver -vhQ +pyd +vwR +vwR +vwR +okK +vwR +sVo ktd bFg bFg @@ -49558,10 +45468,10 @@ cBL tWz qXS qXS -iZX +wWV ocF qXS -lxn +vGJ qXS oZE tnu @@ -49617,20 +45527,20 @@ puZ (136,1,1) = {" aad aeD -qrz -gdk -jqY -qrz +hzf +kKp +jhr +hzf jFy -nfe -qrz +pcz +hzf apd arx aBE arx lzQ -qrz -aub +hzf +vvK aaY axz axz @@ -49651,9 +45561,9 @@ kvB djn wFq axz -hWh -bsp -rAF +iaG +kWC +lZH nOi rnB sYu @@ -49689,13 +45599,13 @@ eOM arX qep ktd -aze -ver -ver -ver -ver -ver -ver +sBl +vwR +vwR +vwR +vwR +vwR +vwR aCt bFg bFg @@ -49723,7 +45633,7 @@ gWk tnu tnu qXS -bwb +mLx mJJ tnu tnu @@ -49748,20 +45658,20 @@ tHd kop kyD tHd -veu -oZq -hrk -kAw -kAw +lSq +mDb +cod +nBm +nBm sax sax sax sax -sPM -sPM -sPM -sPM -ako +ooE +ooE +ooE +ooE +oiJ puZ puZ puZ @@ -49779,31 +45689,31 @@ puZ (137,1,1) = {" aad amx -mSR -jqY -jqY -qrz +hSC +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz -lsk -vdb -lmQ -dQF -dQF -aZp -uAq -cXm -cXm -gbC +jab +bhG +lNl +wyl +wyl +kdG +iQN +cvh +cvh +kAB axz xha xha @@ -49813,10 +45723,10 @@ tfd djn djn gFe -bsp -bsp -mms -iWg +kWC +kWC +xkj +iEM tDr sYu sYu @@ -49851,13 +45761,13 @@ arX arX arX ktd -azf -ver -ver -ver -ver -ver -pFd +tqw +vwR +vwR +vwR +vwR +vwR +kKL ktd kOW bFg @@ -49884,9 +45794,9 @@ daD daD daD gWk -dtZ -xqf -rTG +aeO +qkf +lOJ gWk ofw jMf @@ -49910,19 +45820,19 @@ kop tHd kyD tHd -qEQ -sax -kAw -nZA -kAw -sax -bcV -oFl -sax -sax -aaZ -aaZ -aaZ +wKB +jrg +bJj +gpz +bJj +jrg +hgM +xwa +jrg +jrg +dYK +dYK +dYK puZ puZ puZ @@ -49940,32 +45850,32 @@ puZ "} (138,1,1) = {" aad -iWO -jqY -jqY -jqY -qrz +qZm +jhr +jhr +jhr +hzf jFy -nfe -qrz +pcz +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl axz xha xha @@ -49975,9 +45885,9 @@ jsn tfd hin axz -hWh -bsp -pEs +iaG +kWC +wQJ uQy gkG sYu @@ -50013,13 +45923,13 @@ arX qep arX ktd -azg -kjt -kjt -ver -ver -aBk -aBU +rKa +rrq +rrq +vwR +vwR +wPX +wju ktd bIV bIV @@ -50045,47 +45955,47 @@ iXm daD dKL aPk -hcH -tnu -aSQ -tnu -hcH -aWF -jMf -ofw -jMf -tHd -kop -jMf -gGT -kop -rli -kop -kop -tHd -kyD -kyD -kyD -tHd -kyD -tHd -kyD -kyD -kyD -qEQ -sax -hrk -hrk -kAw -kAw -rBk -vAU -sax -sax -kAw -nZA -nZA -kAw +kOB +mqN +fPm +mqN +kOB +qIw +kVd +uzu +kVd +xgc +rAH +kVd +gJh +rAH +rya +rAH +rAH +xgc +boW +boW +boW +xgc +boW +xgc +boW +boW +boW +tiN +jrg +osE +osE +bJj +bJj +rUY +xUR +jrg +jrg +bJj +gpz +gpz +bJj puZ puZ puZ @@ -50102,32 +46012,32 @@ puZ "} (139,1,1) = {" aad -mtA -qrz -jqY -hYf -jqY -akE -qrz -qrz +rUy +hzf +jhr +xbr +jhr +jBn +hzf +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz -dQF -uDb -lVf -puT -kNf -uDb -amA -sNZ -kNf -dQF +wyl +jek +vKz +fdq +gNs +jek +aid +lZT +gNs +wyl axz xha xha @@ -50137,9 +46047,9 @@ axz axz axz aaY -mQs -bsp -pEs +cmV +kWC +wQJ sNi sYu sYu @@ -50202,53 +46112,53 @@ bIV bFg bIV bIV -cZk +bFg daD cZk cZk bIV -aKr -gKf -lxn -gKf -aFA -kyD -tHd -jMf -tHd -kop -jMf -sJo -ofw -etl -fLi -gGT -kop -tHd -xvp -kyD -kyD -kyD -tHd -kyD -kyD -kyD -tHd -oDi -prO -kAw -hrk -nZA -nZA -nZA -kAw -kAw -acl -kAw -nZA -nZA -kAw -nZA +boW +boW +boW +boW +boW +boW +xgc +kVd +xgc +rAH +kVd +hxY +uzu +ige +qeU +gJh +rAH +xgc +eyX +boW +boW +boW +xgc +boW +boW +boW +xgc +mcF +jaM +bJj +osE +gpz +gpz +gpz +bJj +bJj +yas +bJj +gpz +gpz +bJj +gpz puZ puZ puZ @@ -50264,32 +46174,32 @@ puZ "} (140,1,1) = {" aad -agg -qrz +fsE +hzf apG apG -iXZ -adf -qrz -qrz +gdr +ibz +hzf +hzf ape ary azc cMs oKc -qrz -qSe +hzf +dDU axz -sKa -uDb -pOI -tNm -kNf -uDb -tNm -lVf -kNf -dQF +aUB +jek +upc +dHf +gNs +jek +dHf +vKz +gNs +wyl axz xha xha @@ -50299,9 +46209,9 @@ muN ivl ixo axz -hWh -bsp -pEs +iaG +kWC +wQJ sNi sYu sYu @@ -50336,15 +46246,15 @@ arX qep ktd ktd -ayx -azk -dgb -kAT -ver -ver -kAT -aBV -aCv +tIJ +pXd +aei +jiP +vwR +vwR +jiP +psw +egc ktd bIV bFg @@ -50367,50 +46277,50 @@ bIV bIV cZk bIV -bIV bFg -aKA -qXS -lxn -qXS -aFC -kyD -kyD -tHd -tHd -tHd -kop -aQJ -kop -eyx -kop -tHd -kop -kop -tHd -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -ptm -hrk -kAw -nZA -nZA -nZA -kAw -kAw -aco -kAw -nZA -kAw -kAw -nZA +cZk +rAH +boW +boW +boW +boW +boW +boW +xgc +xgc +xgc +rAH +aGF +rAH +mSj +rAH +xgc +rAH +rAH +xgc +boW +boW +boW +boW +boW +boW +boW +boW +qjY +lLJ +osE +bJj +gpz +gpz +gpz +bJj +bJj +ieF +bJj +gpz +bJj +bJj +gpz puZ puZ puZ @@ -50426,32 +46336,32 @@ puZ "} (141,1,1) = {" aad -ajD +gOH apF apG apG apG jFy -nfe -qrz +pcz +hzf apc tfd tfd tfd xeE -qrz -qSe +hzf +dDU axz -uHH -uDb -lVf -irk -kNf -uDb -irx -tNm -kNf -ves +iOw +jek +vKz +fzV +gNs +jek +lmI +dHf +gNs +nhL axz hQW xha @@ -50461,9 +46371,9 @@ kvB djn wFq axz -hWh -bsp -pEs +iaG +kWC +wQJ hEa rnB sYu @@ -50497,16 +46407,16 @@ arX arX arX ktd -axH -ayy -ver -ver -ver -ver -ver -ver -ver -bYd +oQf +bvO +vwR +vwR +vwR +vwR +vwR +vwR +vwR +xTS ktd ktd bFg @@ -50530,49 +46440,49 @@ bIV bIV bFg bFg -bFg -aKA -qXS -lxn -qXS -aFC -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -tHd -tHd -kyD -tHd -tHd -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -tHd -ofw -sax -hrk -kAw -nZA -nZA -nZA -nZA -kAw -aco -kAw -kAw -kAw -nZA -kAw +cZk +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +xgc +xgc +boW +xgc +xgc +boW +boW +boW +boW +boW +boW +boW +boW +xgc +fkB +jrg +osE +bJj +gpz +gpz +gpz +gpz +bJj +ieF +bJj +bJj +bJj +gpz +bJj puZ puZ puZ @@ -50594,26 +46504,26 @@ gHu iji apG jFy -nfe -qrz +pcz +hzf apf arz aRS cse dlk -qrz -qSe +hzf +dDU axz -iEi -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF -dQF +cEJ +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl +wyl axz xha xha @@ -50623,10 +46533,10 @@ tfd djn djn gFe -bsp -bsp -mms -iWg +kWC +kWC +xkj +iEM tDr lwo sYu @@ -50656,86 +46566,86 @@ lwo lwo kgn arX -arX -tVZ -ktd -axI -ver -ver -ver -ver -ver -ver -aAh -ver -fEO -oDM -aCH -bFg -bFg -bFg -bFg -aUd -aUd -aUd -cZk -cZk -cZk -bIV -bIV -bIV -bIV -bFg -bFg -bIV -bIV -bIV -bIV -bIV -bFg -aKA -qXS -lxn -qXS -aFC -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -tHd -kop -gzb -sax -sax -sax -sax -kAw -kAw -nZA -kAw -aco -kAw -hrk -kAw -nZA -nZA -nZA +arX +tVZ +ktd +oLK +vwR +vwR +vwR +vwR +vwR +vwR +okK +vwR +mYi +nOQ +aCH +bFg +bFg +bFg +bFg +aUd +aUd +aUd +cZk +cZk +cZk +bIV +bIV +bIV +bIV +bFg +bFg +bIV +bIV +bIV +bIV +bIV +cZk +xgc +xgc +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +xgc +rAH +qZN +jrg +jrg +jrg +jrg +bJj +bJj +gpz +bJj +ieF +bJj +osE +bJj +gpz +gpz +gpz puZ puZ puZ @@ -50751,20 +46661,20 @@ puZ (143,1,1) = {" aad agc -awj +lhi apG iNX apG aaY -kFJ -qrz -qrz -qrz -qrz -qrz -qrz -qrz -kFJ +hev +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hev axz jFy axz @@ -50785,9 +46695,9 @@ jsn tfd hin axz -hWh -bsp -rAF +iaG +kWC +lZH gCW gkG lwo @@ -50800,9 +46710,9 @@ lwo sYu sYu eOM -dYm -xbZ -ecZ +nuE +lnV +jwz lwo lwo eOM @@ -50821,17 +46731,17 @@ arX arX uJj ktd -toA -ver -oTh -azI -ver -ver -azI -ver -ver -ver -pSD +cRd +vwR +mEB +rnV +vwR +vwR +rnV +vwR +vwR +vwR +jYQ ktd bFg bFg @@ -50855,50 +46765,50 @@ bFg bFg cZk bIV -aKD -iGn -lxn -iGn -aFI -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -kyD -tHd -iMC -kyD -kyD -tHd -tHd -kyD -tHd -kyD -kyD -tHd -kop -bhN -fCs -sax -sax -sax -sax -kAw -kAw -kAw -acp -bcV -tFd -hrk -kAw -nZA -nZA -nZA +rAH +xgc +rAH +rAH +xgc +boW +boW +boW +boW +boW +boW +boW +boW +boW +boW +xgc +mWZ +boW +boW +xgc +xgc +boW +xgc +boW +boW +xgc +rAH +ehD +bhD +jrg +jrg +jrg +jrg +bJj +bJj +bJj +xQS +hgM +apC +osE +bJj +gpz +gpz +gpz puZ puZ puZ @@ -50913,9 +46823,9 @@ puZ (144,1,1) = {" aad sCi -qrz -gRG -jqY +hzf +kVt +jhr iNX aaY aaY @@ -50928,16 +46838,16 @@ jFy jFy aaY aaY -qrz +hzf nPW -aju -aju -kqs -kqs -aju -aju +opp +opp +rdO +rdO +opp +opp nPW -qrz +hzf cqb xha xha @@ -50947,9 +46857,9 @@ axz axz axz aaY -hWh -bsp -rAF +iaG +kWC +lZH sYu arX arX @@ -50962,9 +46872,9 @@ lwo sYu sYu lwo -cPK -xbZ -ecZ +juw +lnV +jwz arX lwo eOM @@ -50983,17 +46893,17 @@ vSL uJj qep ktd -toA -ver -oTh -azI -ver -iZF -azI -ver -ver -ver -pSD +cRd +vwR +mEB +rnV +vwR +pQG +rnV +vwR +vwR +vwR +jYQ aCK bFg bFg @@ -51017,50 +46927,50 @@ bFg aNe bIV aPm -uji -uKZ -jLX -uKZ -uji -aWG -xWy -tHd -rtZ -tHd -tHd -rtZ -kop -kop -xvp -tHd -jMf -xvp -kop -kop -kop -tHd -kyD -kyD -kyD -tHd -kop -bhN -fCs -sax -sax -bcV -oFl -kAw -kAw -kAw -tad -tlr -tuz -tFy -hrk -kAw -nZA -nZA +xgc +rAH +xgc +rAH +rAH +rAH +uzu +xgc +tGF +boW +boW +upR +rAH +xgc +eyX +xgc +kVd +eyX +rAH +rAH +rAH +xgc +boW +boW +boW +xgc +rAH +ehD +bhD +jrg +jrg +hgM +xwa +bJj +bJj +bJj +acK +qat +eLf +kFP +osE +bJj +gpz +gpz puZ puZ puZ @@ -51074,44 +46984,44 @@ puZ "} (145,1,1) = {" aad -aag -jqY -jqY -jqY -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -qrz -aju -aju -qrz -qrz -aju -aju -qrz -qrz -qrz -qrz -qrz -qrz -ibN +pOd +jhr +jhr +jhr +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hzf +opp +opp +hzf +hzf +opp +opp +hzf +hzf +hzf +hzf +hzf +hzf +jQx axz -mQs -hWh -hWh -hWh -bsp -rAF +cmV +iaG +iaG +iaG +kWC +lZH arX arX arX @@ -51124,9 +47034,9 @@ sYu sYu sYu lwo -cPK -tsZ -ecZ +juw +wwK +jwz qep lwo iCF @@ -51141,21 +47051,21 @@ eOM eOM eOM arX -ecZ -ecZ -ecZ +jwz +jwz +jwz ktd -prb -ver -oTh -azI -ver -ver -azI -hIC -ver -ver -pSD +dVy +vwR +mEB +rnV +vwR +vwR +rnV +nNy +vwR +vwR +jYQ aCK bFg bIV @@ -51179,51 +47089,51 @@ aME bIV cZk xvA -iMA -rxf -oYH -uMJ -uji -uKZ -uKZ -uKZ -iMA -iMA -iMA -uKZ -uKZ -uKZ -uKZ -uji -ofw -ofw -jMf -tHd -kop -kop -kyD -kyD -kyD -tHd -kop -lip -sax -sax -sax -rBk -vAU -kAw -kAw -kAw -hrk -rBk -vAU -hrk -hrk -kAw -nZA -nZA -nZA +boW +xgc +dBi +rAH +xgc +rAH +dBi +rAH +boW +boW +boW +xgc +xgc +rAH +rAH +rAH +uzu +uzu +kVd +xgc +rAH +rAH +boW +boW +boW +xgc +rAH +ooL +jrg +jrg +jrg +rUY +xUR +bJj +bJj +bJj +osE +rUY +xUR +osE +osE +bJj +gpz +gpz +gpz puZ puZ puZ @@ -51236,44 +47146,44 @@ puZ "} (146,1,1) = {" aad -ajN -qrz -jqY -jqY -jGZ -jqY -jqY -jqY -jGZ -jqY -jqY -jqY -jqY -jqY -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -jqY -jqY -jqY -czH -bsp -bsp -bsp -bsp -bsp -rAF +jra +hzf +jhr +jhr +wbA +jhr +jhr +jhr +wbA +jhr +jhr +jhr +jhr +jhr +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +jhr +jhr +jhr +wBy +kWC +kWC +kWC +kWC +kWC +lZH arX eOM eOM @@ -51286,9 +47196,9 @@ sYu sYu lwo lwo -dYm -lpn -wwF +nuE +jXV +vJl tUo tUo tUo @@ -51303,21 +47213,21 @@ tUo tUo tUo tUo -wwF -byK -ecZ +vJl +hzS +jwz aCH -toA -ver -oTh -azI -ver -ver -azI -aBm -ver -oTh -ngx +cRd +vwR +mEB +rnV +vwR +vwR +rnV +qOx +vwR +mEB +sld lHl dgS bIV @@ -51339,53 +47249,53 @@ bFg bIV bIV cZk -uKZ -uKZ -uKZ -fRg -fRg -fRg -fRg -fRg -fRg -oZR -fRg -iXc -fRg -bxL -bxL -gGc -rzR -uji -hzJ -hzJ -hzJ -kyw -kyw -lUL -mLR -mLR -mLR -ocI -kyw -kyw -sax -sax -sax -hrk -kAw -kAw -kAw -kAw -kAw -kAw -hrk -hrk -hrk -hrk -kAw -nZA -nZA +rAH +rAH +rAH +rAH +rAH +boW +rAH +rAH +rAH +xgc +boW +boW +boW +rAH +rAH +rAH +rAH +rAH +rAH +rAH +rAH +rAH +rAH +rAH +boW +boW +xgc +rAH +rAH +oHf +jrg +jrg +jrg +osE +bJj +bJj +bJj +bJj +bJj +bJj +osE +osE +osE +osE +bJj +gpz +gpz puZ puZ puZ @@ -51398,44 +47308,44 @@ puZ "} (147,1,1) = {" aad -ajN -qrz -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jqY -jGZ -jqY -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -aju -aju -jqY -jqY -jqY -jqY -jqY -qrz -bsp -bsp -bsp -bsp -bsp -rAF +jra +hzf +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +jhr +wbA +jhr +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +opp +opp +jhr +jhr +jhr +jhr +jhr +hzf +kWC +kWC +kWC +kWC +kWC +lZH adZ adZ sYu @@ -51448,9 +47358,9 @@ sYu sYu lwo lwo -syK -syK -dYm +mSf +mSf +nuE qep lwo hIz @@ -51465,21 +47375,21 @@ eOM eOM eOM lwo -ecZ -tsZ -ecZ +jwz +wwK +jwz ktd -axK -ver -azo -azI -ver -ver -azI -aBm -ver -oTh -pSD +hMZ +vwR +mcJ +rnV +vwR +vwR +rnV +qOx +vwR +mEB +jYQ aCK bFg bIV @@ -51501,54 +47411,54 @@ bIV aLZ bIV xvA -uKZ -rIj -ohq -pvv -pvv -pvv -tXL -pvv -pvv -pvv -pvv -pvv -pvv -pvv -hZI -pvv -fWq -uji -iOA -aDM -lNg -kLM -uqb -uqb -iQq -iQq -kLM -kLM -kLM -kLM -pCe -wSv -kAw -kAw -kAw -kAw -kAw -nZA -nZA -nZA -kAw -hrk -nZA -nZA -nZA -kAw -nZA -nZA +ukp +ukp +rAH +ukp +rAH +rAH +boW +ukp +kVd +kVd +boW +boW +boW +siZ +dkv +xgc +kVd +kVd +rAH +rAH +kVd +uzu +boW +xgc +uzu +boW +xgc +xgc +xgc +tsK +ckj +nVC +bJj +bJj +bJj +bJj +bJj +gpz +gpz +gpz +bJj +osE +gpz +gpz +gpz +bJj +gpz +gpz puZ puZ puZ @@ -51560,44 +47470,44 @@ puZ "} (148,1,1) = {" aad -afw -jqY -jqY -jqY -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -qrz -qrz -qrz -qrz -kFJ -qrz -qrz -qrz -ibN +fOU +jhr +jhr +jhr +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +hzf +hzf +hzf +hzf +hev +hzf +hzf +hzf +jQx axz -qkr -tzH -tzH -tzH -tzH -vJh +hEJ +utx +utx +utx +utx +xze adZ eOM aec @@ -51627,21 +47537,21 @@ qep arX arX arX -ecZ -tsZ -ecZ +jwz +wwK +jwz ktd -lUQ -ver -oTh -azI -ver -ver -azI -aBm -oTh -oTh -pSD +mEe +vwR +mEB +rnV +vwR +vwR +rnV +qOx +mEB +mEB +jYQ lwG bFg bFg @@ -51663,55 +47573,55 @@ daD bFg xvA xvA -uKZ -rIj -wCn -pvv -pvv -pvv -pvv -pvv -mOY -drM -pvv -aSA -uaa -pvv -pvv -pvv -fRg -hvZ -kLM -iOu -kLM -iOu -kLM -kLM -iQq -kLM -iQq -iQq -kLM -iQq -fnw -cwZ -kAw -kAw -kAw -kAw -nZA -hrk -hrk -nZA -nZA -hrk -nZA -nZA -nZA -kAw -kAw -kAw -nDv +rAH +rAH +ukp +rAH +rAH +rAH +ckH +lIa +lIa +qjY +qjY +qjY +qjY +tsK +qjY +tsK +lIa +oHf +oHf +oHf +lIa +qjY +tsK +tsK +ckH +tsK +qjY +qjY +tsK +qjY +ejZ +wvS +bJj +bJj +bJj +bJj +gpz +osE +osE +gpz +gpz +osE +gpz +gpz +gpz +bJj +bJj +bJj +xuz puZ puZ puZ @@ -51731,9 +47641,9 @@ oGg oGg oGg tTd -qrz -qrz -qrz +hzf +hzf +hzf tTd acT aek @@ -51745,9 +47655,9 @@ acT acT acT aDn -wHi -wHi -wHi +hjP +hjP +hjP aDn acT acT @@ -51789,21 +47699,21 @@ arX qep qep arX -ecZ -pjV -ecZ +jwz +wpj +jwz ktd -axM -ver -oTh -azI -aAh -ver -azI -hIC -aBZ -aCw -aCA +hvC +vwR +mEB +rnV +okK +vwR +rnV +nNy +eea +gUu +ivX ktd bFg bFg @@ -51824,57 +47734,57 @@ peb xvA aMj daD -daD -uKZ -oIR -fRg -pvv -pvv -aTh -aVx -aWI -aYd -baX -bcJ -aSA -gIQ -oXM -pvv -pvv -fRg -hvZ -kLM -kLM -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -iQq -nOw -cwZ -kAw -kAw -nZA -kAw -kAw -hrk -hrk -hrk -kAw -kAw -kAw -hrk -kAw -kAw -kAw -kAw -kAw -puZ +boW +kto +oQq +oQq +oQq +pLf +pLf +asz +asz +asz +jHX +cXK +ktL +tvz +asz +asz +asz +fNE +fNE +fNE +fNE +asz +kVd +kVd +uzu +xgc +uzu +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +bJj +bJj +osE +gpz +gpz +gpz +gpz +bJj +bJj +bJj +gpz +bJj +bJj puZ puZ puZ @@ -51898,29 +47808,29 @@ xbz uYR oGg acT -vXh -vXh -vXh -mEV +xhu +xhu +xhu +qGk acT -eqY -amP -pVm +ofj +lat +wtl aDn arA aek arA aDn -ycc -ujm -hwA -rTk +kjj +oNa +dbK +vHH acT lwo qep kSh hyw -ade +kVW qep eOM eOM @@ -51955,16 +47865,16 @@ lwo arX qep ktd -axO -ver -azp -azK -ver -pKb -azK -ver -ver -aCx +jJg +vwR +mhI +fpB +vwR +sjt +fpB +vwR +vwR +qUi ktd ktd bIV @@ -51986,57 +47896,57 @@ peb xvA aLZ xvA -daD -uKZ -uwS -fRg -pvv -pvv -aUw -xyY -aWQ -aVx -aVx -aVx -bqN -aUA -dbH -pti -pvv -fRg -hvZ -kLM -iQq -iQq -iQq -iQq -iQq -kLM -lNg -kLM -iQq -iQq -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -dWO -hbB -kAw -kAw -kAw -hrk -kAw -nZA -kAw +ukp +tEa +ukp +xgf +rZQ +pLf +pLf +asz +crF +cTK +ajB +crF +crF +ajB +raP +crF +fNE +gsj +eBT +kFR +kFR +asz +bom +bom +kVd +bom +bom +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +bJj +bJj +gpz +gpz +gpz +gpz +gpz +gpz +gpz +gpz +bJj +bJj puZ puZ puZ @@ -52055,34 +47965,34 @@ akM aoK aoK acT -iJY -agh -agh +mCu +vUi +vUi oGg -agh -agh -agh -agh -ykq -acT -hrB -amP -sHc -acT -iJY -agh -agh +vUi +vUi +vUi +vUi +vAX +acT +dnO +lat +onw +acT +mCu +vUi +vUi mMg -vey -hGH -hGH -rtv +mer +lZs +lZs +dsX acT qep lwo qep uSd -ade +kVW qep arX lwo @@ -52117,16 +48027,16 @@ lwo arX arX ktd -axP -vUL -vUL -ohb -ohb -ohb -ohb -vUL -vUL -aCA +lxf +mWX +mWX +owR +owR +owR +owR +mWX +mWX +ivX ktd cZk bIV @@ -52147,58 +48057,58 @@ aUd aUd xvA daD -xvA -daD -uKZ -xHu -fRg -pvv -aTh -aUx -eHL -aWS -aYf -baY -bdk -aWS -bYO -aWQ -dbH -uyI -fRg -hvZ -iQq -iQq -iQq -iQq -iQq -iQq -kLM -aDM -uqb -iQq -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -huz -nNX -hbB -kAw -kAw -kAw -hrk -kAw -kAw -vEN +bFg +ukp +kto +rZQ +enp +vVj +pLf +pLf +asz +crF +cTK +pzR +crF +crF +ajB +raP +crF +fNE +vGK +rIw +rIw +pEa +asz +poi +kVd +kVd +xgc +kVd +ukp +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +bJj +gpz +bJj +gpz +gpz +gpz +bJj +bJj +bJj +bJj +sax puZ puZ puZ @@ -52217,23 +48127,23 @@ akR aoK aoK acT -iJY -agh -agh +mCu +vUi +vUi oGg -agh -agh -agh -agh -jUj -acT -amP -eZX -amP +vUi +vUi +vUi +vUi +sXB +acT +lat +yht +lat afc -iJY -agh -agh +mCu +vUi +vUi aDn acT acT @@ -52244,7 +48154,7 @@ qep eOM hIz eOM -ade +kVW aDm lwo eOM @@ -52282,10 +48192,10 @@ ktd ktd ktd ktd -ctJ -ctJ -ctJ -ctJ +cts +cts +cts +cts ktd ktd ktd @@ -52308,61 +48218,61 @@ aUd aUd aUd aUd -aMk +aMj peb -daD -uKZ -wUy -fRg -pvv -aTi -aUy -aVL -aWT -aVL -bOh -aVL -aWS -aVL -aVL -dCS -eoH -fRg -hvZ -iQq -iQq -kLM -iQq -iQq -kLM -bcM -aDM -lNg -kLM -huz -huz -dLi -amH -qsN -aMN -faH -hHf -nTu -qsN -iYC -huz -huz -dWO -hbB -kAw -hrk -kAw -kAw -kAw -kAw -kAw -oBV -nZA +ukp +kto +ewX +mHY +wDU +pLf +pLf +asz +asz +asz +tnW +gpw +gpw +vJt +asz +asz +asz +pEu +pzR +pzR +pzR +asz +iuA +rWf +kVd +xgc +kVd +ukp +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +bJj +fXX +bJj +bJj +gpz +bJj +bJj +bJj +gpz +bJj +sax +sax +sax puZ puZ puZ @@ -52379,9 +48289,9 @@ akS aoK aoK api -iJY -agh -agh +mCu +vUi +vUi oGg oGg oGg @@ -52389,18 +48299,18 @@ wfL oGg oGg oGg -aef -aef -fkq +vzu +vzu +sGH acT -iJY -agh -agh +mCu +vUi +vUi acT -cRs -hwA -hwA -wOq +lGF +dbK +dbK +dEL acT eOM lwo @@ -52441,16 +48351,16 @@ arX lwo arX ktd -axQ -ayB -azq -ohb -ohb -ohb -ohb -kAT -aBV -aCz +tjF +cKV +kUP +owR +owR +owR +owR +jiP +psw +mDG ktd cZk bIV @@ -52471,60 +48381,60 @@ gJo gJo abg aMl -xvA -xvA -uKZ -fRg -fRg -pvv -aTj -cov -aVM -aWS -aYg -bbg -bea -aWS -cbk -aWU -deV -wvx -fRg -hvZ -kLM -iQq -kLM -iQq -iQq -iQq -kLM -snN -kTP -iQq -huz -huz -kLi -amI -aCy -rdS -axJ -axJ -nTu -hAS -sjh -huz -huz -tuA -kAw -hrk -hrk -kAw -kAw -kAw -nZA -kAw -kAw -nZA +dKc +pLf +pLf +pLf +pLf +pLf +pLf +asz +asz +asz +jTw +raP +pzR +pzR +cTK +rZt +asz +asz +asz +asz +qkL +asz +asz +asz +asz +xgc +xgc +kVd +ukp +bJj +jrg +jrg +jrg +jrg +jrg +jrg +jrg +jrg +amu +amu +amu +bJj +fXX +gpz +bJj +bJj +jrg +jrg +bJj +gpz +osE +sax +sax +sax puZ puZ puZ @@ -52541,28 +48451,28 @@ ncB aoK iqC acT -iJY -agh -skG +mCu +vUi +qZT acT -axG -yeu -axG -axG -axG +rjF +iVB +rjF +rjF +rjF oGg acT acT acT acT -axG -axG -axG +rjF +rjF +rjF acT -iJY -agh -agh -pFt +mCu +vUi +vUi +lul anZ lwo eOM @@ -52603,16 +48513,16 @@ arX arX arX ktd -axR -ver -ver -ver -ver -ver -ver -ver -ver -bYd +ygJ +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +xTS ktd ktd bIV @@ -52624,69 +48534,69 @@ bFg bIV cZk xvA -gJo -aUd -qbF -bsV -gJo -qbF -gJo -abg -gJo -xvA -xvA -uKZ -fRg -gxK -pvv -pvv -aUw -fof -aWU -aVN -aVN -aVN -bqN -aVN -deV -wTz -pvv -fRg -hvZ -iQq -kLM -iQq -iQq -iQq -iQq -iQq -kLM -iQq -iQq -tpg -exX -qIr -rdS -rdS -axJ -axJ -axJ -hAS -pKf -iYC -huz -huz -oBV -pRU -hrk -hrk -kAw -nZA -nZA -nZA -kAw -kAw -nZA +gJo +aUd +qbF +bsV +gJo +qbF +gJo +abg +gJo +dKc +asz +asz +asz +asz +asz +asz +asz +jsZ +aJx +ixH +raP +pzR +pzR +cTK +rZt +rZt +rZt +fNE +vBq +rZt +iEF +veM +vQK +fNE +xgc +xgc +boW +xgc +xgc +ukp +ukp +jrg +jrg +jrg +jrg +jrg +jrg +amu +fXX +fXX +osE +osE +bJj +bJj +jrg +jrg +jrg +bJj +bJj +bJj +sax +sax +sax puZ puZ puZ @@ -52703,28 +48613,28 @@ acT acT acT aDn -vkq -axG -axG +ygB +rjF +rjF aek -axG +rjF aoK hUM aoK -axG +rjF xbz -fMe -yeu -aAM +wdu +iVB +jUv acT -iJY -agh -agh -vWf -iJY -agh -agh -ahU +mCu +vUi +vUi +rbW +mCu +vUi +vUi +dnA acT arX arX @@ -52765,17 +48675,17 @@ eOM arX eOM aCH -toA -ver -ver -ver -ver -ver -ver -ver -ver -fEO -oDM +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +mYi +mbz ktd bFg bIV @@ -52791,64 +48701,64 @@ qbF qbF gJo qbF -gJo -uKZ -iMA -iMA -uji -uji -uji -uji -fRg -pvv -pvv -aTj -aVN -aWV -aYx -bbh -beK -pvv -pvv -pvv -aSA -pvv -fRg -hvZ -kLM -iQq -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq -tpg -akF -alS -ans -axJ -axJ -fbf -fbf -ook -hAS -aDu -huz -huz -huz -huz -huz -kAw -kAw -nZA -nZA -nZA -kAw -kAw -nZA +daD +dmA +dmA +dmA +mEW +asz +abn +abF +abF +abF +acg +asz +vKy +cze +tlD +cNA +aJx +aJx +cTK +rZt +rZt +rZt +fNE +vBq +rZt +iEF +trH +gOn +fNE +kVd +xgc +boW +xgc +xgc +ukp +uzu +uzu +jrg +jrg +jrg +jrg +jrg +amu +fXX +fXX +osE +osE +gpz +gpz +jrg +jrg +bJj +bJj +osE +osE +sax +sax +sax puZ puZ puZ @@ -52865,34 +48775,34 @@ akL aoK aoK acT -asd -agh -agh +jfZ +vUi +vUi aek -axG +rjF onl aNn aTZ -rgu +gqw xbz -pId -agh -agh +eXH +vUi +vUi mMg -iJY -agh -agh -axG -iJY -agh -agh -lvW +mCu +vUi +vUi +rjF +mCu +vUi +vUi +fXL acT psl eOM arX arX -ade +kVW aOg arX lwo @@ -52927,17 +48837,17 @@ eOM arX qep ktd -toA -ver -ver -ver -ver -ver -ver -ver -ver -ver -pSD +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +vwR +rcq ktd cZk bIV @@ -52949,69 +48859,69 @@ cZk cZk tBB gJo -gJo -gJo -qbF +bFg +qnA +qnA qbF -gJo -iMA -aJM -aJU -bKV -aLk -bMK -uji -snX -pvv -aSA -pvv -vFR -eVG -pvv -pvv -pvv -aSA -pvv -pvv -pvv -pvv -fRg -hvZ -kLM -iOu -kLM -iOu -kLM -iQq -kLM -iQq -iQq -iQq -tpg -oWk -qIr -ans -ans -aMW -fMq -aut -axJ -rdS -aut -huz -huz -huz -huz -huz -hrk -kAw -hrk -hrk -nZA -kAw -kAw -nZA -nZA +bIV +dmA +dmA +dmA +mEW +asz +abp +abG +abJ +abG +acj +asz +jUR +ram +wMG +aJx +aJx +aJx +cTK +rZt +rZt +rZt +asz +asz +rZt +rZt +hCY +hCY +fNE +kVd +kVd +boW +xgc +rAH +kVd +boW +boW +uzu +jrg +jrg +jrg +jrg +amu +fXX +fXX +amu +iTQ +bJj +gpz +bJj +jrg +bJj +bJj +gpz +osE +sax +sax +sax +sax puZ puZ puZ @@ -53027,34 +48937,34 @@ vHT amJ aoK acT -ase -agh -agh +xQN +vUi +vUi aek -axG +rjF aoK aVR aoK -axG +rjF xbz -fMe -axG -nIB -acT -iJY -agh -wfB -axG -iJY -agh -agh -wHr +wdu +rjF +vOm +acT +mCu +vUi +kvh +rjF +mCu +vUi +vUi +ozU acT cOU arX eOM arX -ade +kVW eOM eOM sYu @@ -53089,17 +48999,17 @@ arX arX qep qzv -toA -ver -ver -ver -ver -oTh -oTh -ver -ver -ver -pSD +cRd +vwR +vwR +vwR +vwR +mEB +mEB +vwR +vwR +vwR +jYQ rke bIV bFg @@ -53111,69 +49021,69 @@ xvA xvA tBB gJo -gJo -qbF +bFg +qnA qbF qbF gJo -iMA -aKQ -bKV -bKV -omu -bMK -uji -uji -pvv -kJw -pvv -pvv -pvv -pvv -pvv -sYh -pvv -pvv -pvv -pvv -eGs -fRg -uji -jac -jQt -khx -khx -ltJ -kLM -iQq -iQq -iQq -iQq -tpg -oWk -qIr -anG -axJ -axJ -ggh -rdS -owe -axJ -rdS -axJ -axJ -axJ -huz -huz +dmA +dmA +dmA +mEW +asz +abp +abJ +abJ +abJ +aSK +aTR +oPN +pta +azm +pzR +rZt +aJx +cTK +rZt +rZt +rZt +hAX +crF +rZt +rZt +rZt +rZt +fNE +kVd +kVd +xgc +boW +xgc +sof +qri +pLN +uzu +uzu +jrg +jrg +jrg +amu +fXX +fXX +amu +osE +osE +gpz +bJj +jrg +bJj +bJj +gpz +osE +sax +sax +sax sax -kAw -kAw -nZA -nZA -kAw -kAw -kAw -hrk puZ puZ puZ @@ -53185,38 +49095,38 @@ aKq ajO acT agB -akT +ahi amK -anP +laU acT -fBQ -agh -agh +oeK +vUi +vUi acT -axG -axG -axG -axG -axG +rjF +rjF +rjF +rjF +rjF oGg acT acT acT acT -iJY -agh -agh -axG -iJY -agh -agh -hif +mCu +vUi +vUi +rjF +mCu +vUi +vUi +arH acT qep uSd eOM eOM -ade +kVW eOM lwo arX @@ -53251,17 +49161,17 @@ arX qep qep qzv -toA -ver -ver -ver -ver -ver -oTh -ver -ver -ver -pSD +cRd +vwR +vwR +vwR +vwR +vwR +mEB +vwR +vwR +vwR +jYQ rke bFg bFg @@ -53271,71 +49181,71 @@ bIV cZk cZk cZk -uji -uji -uji -uji -uji -uji -uji -uji -aLk -bKV -bKV -aNg -bKV -bMK -uji -snX -fRg -pgh -fRg -fRg -dLk -fRg -pgh -fRg -fRg -fRg -rIj -uKZ -giH -uji -iMA -iMA -iMA -uKZ -ehV -uqb -kLM -iQq -iQq -kLM -ajd -huz -fjS -anJ -aGf -aNE -ggr -hLE -qvY -qkQ -axJ -axJ -axJ -axJ -huz -huz +mca +dmA +mca +dmA +dmA +dmA +dmA +dmA +dmA +suM +mEW +asz +aNR +abJ +abG +abJ +abJ +rZt +uHc +pta +pzR +pzR +pZH +glr +cTK +rZt +rZt +rZt +dwQ +crF +rZt +rZt +rZt +fhd +fNE +kVd +kVd +rAH +xgc +boW +boW +boW +boW +uzu +uzu +ukp +jrg +jrg +amu +eom +fXX +amu +osE +osE +bJj +bJj +bJj +bJj +bJj +bJj +amu +sax +sax +sax sax -iZj -kAw -kAw -hrk -kAw -nZA -kAw -hrk puZ puZ puZ @@ -53351,9 +49261,9 @@ aoK aoK aoK acT -atS -agh -agh +fDm +vUi +vUi acT acT acT @@ -53361,18 +49271,18 @@ acN acT oGg oGg -axG -axG -yeu -axG -axG -vBm -axG -acT -iJY -agh -agh -azY +rjF +rjF +iVB +rjF +rjF +ucP +rjF +acT +mCu +vUi +vUi +iaw aDn acT acT @@ -53413,17 +49323,17 @@ arX arX arX qzv -toA -ver -ver -ver -aAh -ver -wfl -ver -ver -ver -pSD +cRd +vwR +vwR +vwR +okK +vwR +eRB +vwR +vwR +vwR +jYQ rke bFg bFg @@ -53433,70 +49343,70 @@ cZk cZk cZk cZk -uji -uji -uji -uji -uji -uji -uji -uji -uji -aKL -uji -aNh -aLs -uji -uji -iMA -iMA -uKZ -oYH -gxK -fRg -oYH -uKZ -iMA -iMA -uji -uKZ -uKZ -bKV -kjU -bKV -krm -iXx -iMA -ehV -uqb -kLM -iQq -nAs -uqb -ajE -huz -qSW -arZ -aIh -aPf -gtx -aTO -oww -qmv -axJ -axJ -axJ -axJ -huz -huz +wBA +dmA +dmA +tlF +tlF +tlF +lXW +kaC +dmA +dmA +mEW +asz +aNP +abJ +abG +abJ +abJ +rZt +uHc +pta +pzR +pzR +pzR +aJx +crS +asz +asz +qkL +asz +asz +rZt +rZt +iEF +cYC +fNE +kVd +kVd +rAH +xgc +boW +boW +boW +obl +uzu +uzu +ukp +jrg +jrg +amu +fXX +fXX +amu +jrg +bJj +gpz +bJj +bJj +bJj +osE +bJj +amu +sax sax sax -kAw -kAw -hrk -kAw -nZA -kAw puZ puZ puZ @@ -53513,37 +49423,37 @@ aoK aoK aoK apj -iJY -agh -agh -agh -agh -agh -agh -agh -xbP +mCu +vUi +vUi +vUi +vUi +vUi +vUi +vUi +lGe agr -axG -agh -agh -agh -iJY -agh -agh +rjF +vUi +vUi +vUi +mCu +vUi +vUi acT -iJY -agh -agh -sJP +mCu +vUi +vUi +lVU acT -axG -pyI -axG +rjF +qzI +rjF acT -aYU -odb -hwA -lOT +wMv +kbX +dbK +lrk acT lwo arX @@ -53575,17 +49485,17 @@ arX amQ qep qzv -toA -ver -ver -ver -ver -ver -ver -ver -htb -ver -pSD +cRd +vwR +vwR +vwR +vwR +vwR +vwR +vwR +oQP +vwR +jYQ rke bFg bFg @@ -53595,72 +49505,72 @@ bIV bFg cZk bIV -uji -gUc -xgH -xgH -xgH -gQJ -uji -uji -fRg -fRg -aKS -fRg -fRg -fRg -lro -bKV -bKV -oYH -bKV -meg -bKV -bbi -beP -bKV -meg -bKV -bKV -eGG -bKV -bKV -ftr -obb -vHX -iMA -ehV -kLM -iQq -iQq -kLM -uqb -uqb -huz -huz -auh -bWB -qvY -gZZ -iof -aDu -qoY -axJ -axJ -wFm -sYx -huz -huz -sax -sax -nZA -kAw -nZA -nZA -nZA -kAw -puZ -puZ +dmA +mca +dmA +dmA +tlF +dmA +kpv +kaC +dmA +gEc +mEW +asz +abp +abJ +abJ +abJ +abJ +rZt +oPN +pij +rZt +pzR +rZt +aJx +cTK +rkc +aJx +aJx +asz +asz +dTj +rZt +rZt +tYA +fNE +kVd +kuS +kVd +rAH +rAH +pwo +boW +nag +uzu +ukp +jrg +jrg +amu +amu +fXX +fXX +amu +jrg +osE +bJj +gpz +gpz +gpz +osE +bJj +iTQ +iTQ +amu +amu +amu +amu puZ puZ "} @@ -53675,37 +49585,37 @@ aoK aoK aoK acT -iJY -agh -agh -agh -agh -kbJ -agh -agh -xbP +mCu +vUi +vUi +vUi +vUi +ljZ +vUi +vUi +lGe ajO -axG -agh -agh -agh -iJY -agh -agh -acT -iJY -agh -agh -lvW -acT -eNr -axG -uxO -acT -msN -agh -agh -gul +rjF +vUi +vUi +vUi +mCu +vUi +vUi +acT +mCu +vUi +vUi +fXL +acT +muq +rjF +pVU +acT +iYy +vUi +vUi +lZk acT tLW arX @@ -53737,17 +49647,17 @@ arX arX arX axN -toA -aAh -ver -mVl -ver -ver -aAh -ver -ver -ver -pSD +cRd +okK +vwR +exi +vwR +vwR +okK +vwR +vwR +vwR +nws ktd cZk bFg @@ -53757,72 +49667,72 @@ bIV fUZ bIV bIV -uji -ahX -qkC -tzo -qkC -mhS -dtr -fRg -bKV -bKV -bKV -bKV -bKV -bKV -bKV -bKV -bKV -fRg -bKV -bKV -bKV -bKV -fRg -bKV -bKV -bKV -bKV -uKZ -uKZ -iMA -iMA -iMA -uKZ -uKZ -ehV -kLM -iQq -iQq -iQq -kLM -kLM -uqb -ncS -bWB -auh -aTO -hkS -itR -oNz -qOE -rdS -axJ -sYx -wFm -huz -huz -sax -sax -kAw -kAw -nZA -hrk -nZA -kAw -puZ -puZ +dmA +dmA +dmA +dmA +dmA +gEc +kaC +kaC +kaC +dmA +mEW +asz +abp +abG +abJ +abG +ach +asz +mtD +dMl +vBZ +glr +qMN +aJx +cTK +rkc +aJx +rZt +vuo +bxa +asz +rZt +rZt +asz +asz +kVd +kVd +kVd +rAH +rAH +xgc +boW +nEC +lUa +ukp +jrg +jrg +amu +cur +fXX +fXX +amu +amu +iTQ +bJj +fXX +gpz +gpz +bJj +fXX +cuJ +fXX +bJj +fXX +fXX +amu puZ puZ "} @@ -53837,37 +49747,37 @@ ala ala acT aDn -iJY -agh -agh -tvo +mCu +vUi +vUi +lpe acT acT aSz acT buJ aDn -axG -axG -axG -axG -axG -axG -mWw -acT -aMw -agh -agh -wHr +rjF +rjF +rjF +rjF +rjF +rjF +kkB +acT +trS +vUi +vUi +ozU aDn acT aiQ acT acT -igl -agh -agh -jAv +tLM +vUi +vUi +trV acT arX arX @@ -53899,17 +49809,17 @@ arX arX arX ktd -axI -ver -ver -ver -htb -ver -ver -ver -ver -pNf -aCA +oLK +vwR +vwR +vwR +oQP +vwR +vwR +vwR +vwR +daY +oQC ktd gJo lTc @@ -53919,72 +49829,72 @@ bIV bFg bFg bFg -uji -aGc -tzo -tzo -aJj -aJk -fRg -fRg -bKV -bKV -aMK -aNl -aNl -aPn -bKV -bKV -bKV -fRg -bKV -bKV -bKV -bKV -uHA -bKV -bKV -rfd -bKV -iMA -hFJ -fRg -dZN -fRg -iMA -kGO -lyE -kLM -iQq -kLM -iQq -iQq -kLM -uqb -ncS -mRc -rdS -aXk -axJ -jFq -huz -qPh -rdS -axJ -axJ -sXt -huz -huz -sax -sax -kAw -kAw -nZA -nZA -nZA -kAw -puZ -puZ +dmA +dmA +suM +dmA +gnU +kaC +kaC +kaC +dmA +dmA +mEW +asz +abx +abM +abM +abM +ack +asz +fnI +ucg +tcv +iXK +ucg +ucg +kAI +rkc +aJx +rZt +rER +asz +asz +crF +crF +asz +asz +uzu +kVd +kVd +kVd +kVd +xgc +boW +boW +kVd +ukp +jrg +jrg +amu +lAb +fXX +fXX +fXX +fXX +fXX +fXX +bJj +bJj +gpz +osE +bJj +mwJ +bJj +fXX +fXX +fXX +amu puZ puZ "} @@ -53998,10 +49908,10 @@ acT acT acT acT -piW -iJY -agh -agh +gDp +mCu +vUi +vUi acT acT gvT @@ -54013,25 +49923,25 @@ aek aek aek aDn -iJY -agh -tvo +mCu +vUi +lpe acT -kIs -agh -agh -hif +jwr +vUi +vUi +arH acT -jop -hwA -pHz +pKH +dbK +rAT acT -bPJ -agh -agh -wCh +hYa +vUi +vUi +oQS acT -edW +jkJ arX eOM lwo @@ -54061,16 +49971,16 @@ eOM arX arX ktd -axK -ver -ver -ver -htb -ver -ver -ver -ver -bYd +hMZ +vwR +vwR +vwR +oQP +vwR +vwR +vwR +vwR +xTS ktd ktd gJo @@ -54082,71 +49992,71 @@ bFg bFg bFg bIV -aGb -tzo -qkC -tzo -aGd -fRg -fRg -bKV -bKV -pzj -pzi -kGz -bKV -bKV -bKV -bKV -oYH -bKV -bKV -bKV -bKV -oYH -bKV -bKV -bKV -bKV -iMA -sFR -pvv -pvv -oCG -kjM -tpg -iQq -iQq -iQq -szU -kLM -iQq -iQq -uqb -ncS -pTp -pTp -rdS -axJ -alO -huz -qWL -aut -axJ -kLi -kLi -huz -huz -sax -sax -kAw -kAw -nZA -nZA -kAw -kAw -puZ -puZ +dmA +mca +dmA +dmA +gEc +kaC +dmA +tlF +dmA +mEW +asz +asz +asz +asz +asz +asz +asz +rZt +rZt +rZt +gGf +bDx +asz +kXt +asz +aJx +rZt +asz +asz +mUD +rZt +rZt +asz +asz +pLf +dGA +rAH +hZc +xgc +xgc +rAH +xgc +xgc +jrg +jrg +jrg +amu +fXX +fXX +fXX +fXX +fXX +fXX +osE +gpz +bJj +fXX +bJj +iTQ +amu +amu +amu +fXX +fXX +amu puZ puZ "} @@ -54160,38 +50070,38 @@ acT acT acT acT -fWb -iJY -agh -agh -axG +cnc +mCu +vUi +vUi +rjF aek lGq fGG lNV buJ aDn -fSm -aes -aeM +dYE +dis +bJk aDn aek aek aDn aDn -cgQ -agh -agh -pFt +jro +vUi +vUi +lul aiu -iJY -agh -gLu +mCu +vUi +vuD acT -tMS -agh -agh -jAv +xna +vUi +vUi +trV acT arX eOM @@ -54223,16 +50133,16 @@ eOM lwo bjv ktd -axP -smy -smy -lOO -qfq -ohb -ohb -smy -smy -gCy +lxf +aou +aou +fDN +mAS +owR +owR +aou +aou +fLm ktd oQl gJo @@ -54244,71 +50154,71 @@ bFg bFg bFg bFg -aGd -tzo -qkC -tzo -aGd -fRg -fRg -bKV -bKV -bKV -bKV -bKV -bKV -bKV -ohE -bKV -uKZ -ahe -fRg -fRg -oYH -uKZ -bwk -cex -cex -cex -uKZ -xHu -pvv -pvv -oCG -wRm -tpg -iQq -iQq -iQq -kLM -aDM -kLM -iQq -huz -huz -avz -avz -axJ -axJ -alO -pJM -rgI -rdS -axJ -kLi -alP -huz -huz -sax -sax -kAw -kAw -nZA -kAw -kAw -kAw -puZ -puZ +dmA +dmA +dmA +mca +dmA +dmA +dmA +tlF +tlF +mEW +asz +gSB +sdo +pGM +fNE +rZt +rZt +rZt +rZt +gGf +rZt +rZt +qVo +aJx +aJx +aJx +rZt +asz +asz +mPA +rZt +rZt +asz +asz +cix +kVd +bGt +hzU +xgc +xgc +rAH +xgc +xgc +mAd +yhH +jrg +amu +iTQ +amu +amu +amu +amu +amu +osE +gpz +osE +osE +bJj +gpz +amu +amu +amu +fXX +fXX +amu puZ puZ "} @@ -54318,42 +50228,42 @@ acT aKq ajO acT -aim -ale -amL +yiX +kPk +jQu acT aDn -iJY -agh -agh -axG +mCu +vUi +vUi +rjF aek oYw oYw lGq xbz -agh -agh -agh -agh -acT -adY -agh -adp -acT -igl -agh -agh -pFt +vUi +vUi +vUi +vUi +acT +vef +vUi +jAK +acT +tLM +vUi +vUi +lul ajO -iJY -agh -rRO +mCu +vUi +xzw aDn -qeH -agh -agh -gul +mqZ +vUi +vUi +lZk acT arX eOM @@ -54388,11 +50298,11 @@ ktd ktd ktd ktd -ktd -tXd -ado -pSD -ktd +jVo +hND +gwp +jYQ +jVo ktd ktd ktd @@ -54406,71 +50316,71 @@ bFg bFg bFg bIV -aGd -aHd -aIG -tzo -aGd -fRg -fRg -bKV -bKV -aMK -aNl -aNl -aPn -bKV -bKV -tsU -uKZ -ocB -bKV -bKV -bKV -hDW -bzh -fRg -fRg -fRg -qXk -fRg -pvv -khz -fRg -iMA -kIo -lCe -kLM -iQq -iQq -kLM -iQq -iQq -huz -aQq -axJ -axJ -axJ -axJ -jJZ -oXU -axJ -dQq -axJ -axJ -rdS -huz -huz -sax -sax -kAw -kAw -kAw -kAw -kAw -bcV -oFl -puZ +dmA +dmA +dmA +suM +dmA +dmA +dmA +tlF +dmA +mEW +bXo +uHc +bIh +wpM +fNE +rZt +rZt +rZt +rZt +rZt +rZt +rZt +rkc +aJx +rZt +rZt +rZt +asz +asz +rER +rZt +rZt +asz +asz +pLf +wUi +kVd +kVd +kVd +kVd +rAH +kVd +xgc +avG +boW +jrg +xgc +ukp +ukp +ukp +pLf +jrg +amu +osE +gpz +osE +osE +bJj +gpz +amu +amu +amu +fXX +fXX +amu puZ puZ "} @@ -54480,42 +50390,42 @@ acT ajO aQX acT -ahO -agh -agh -anR +jaZ +vUi +vUi +ftY acT -iJY -agh -agh -axG +mCu +vUi +vUi +rjF aek oYw oYw goS xbz -agh -agh -agh -fIz -acT -age -agh -ipY -acT -pCJ -agh -agh -ylZ -acT -iJY -agh -pFt +vUi +vUi +vUi +rVb +acT +bqq +vUi +cbM +acT +kLf +vUi +vUi +lQP +acT +mCu +vUi +lul nej -iJY -agh -agh -jAv +mCu +vUi +vUi +trV acT arX eOM @@ -54550,11 +50460,11 @@ oQl oQl oQl ktd -rHQ -tXd -aAh -pSD -rHQ +kDF +hND +okK +jYQ +kDF ktd oQl oQl @@ -54568,71 +50478,71 @@ bFg bFg bIV kaC -aGe -qkC -tzo -qkC -tGv -dtr -fRg -bKV -bKV -bKV -bKV -bKV -bKV -bKV -bKV -bKV -iMA -vHX -bKV -bKV -bKV -bsC -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -fRg -uKZ -uKZ -vqV -kLM -kLM -iQq -iQq -iQq -kLM -huz -pJM -ayZ -rdS -bqO -axJ -bqO -axJ -axJ -axJ -axJ -axJ -axJ -huz -huz -sax -sax -nZA -nZA -nZA -kAw -kAw -rBk -vAU -puZ +dmA +dmA +dmA +mca +dmA +dmA +suM +dmA +gEc +mEW +lSU +wQn +nDs +pGM +asz +asz +aTQ +asz +asz +aJx +tMC +aJx +asz +asz +qkL +fNE +fNE +asz +asz +asz +crF +crF +asz +asz +pLf +kVd +rAH +hZc +uzu +kVd +kVd +kVd +xgc +cRA +xgc +rAH +ukp +kVd +uzu +ukp +ukp +jrg +amu +osE +gpz +gpz +fXX +bJj +gpz +gpz +amu +amu +fXX +fXX +amu puZ puZ "} @@ -54642,42 +50552,42 @@ ags ajO ajO acT -ahP -ald -agh -anU +iwk +iPO +vUi +bqZ acT -iJY -agh -agh -axG +mCu +vUi +vUi +rjF aek oYw oYw npi xbz -syV -agh -agh -pxi -acT -afv -agh -jOA -acT -sxp -hCX -ahD -fEf -acT -uhV -hGH -bpH +fQU +vUi +vUi +clR +acT +lxu +vUi +rdz +acT +moz +cPZ +mHK +xMB +acT +qDV +lZs +agQ aDn -rjw -vTh -hGH -pLy +ico +pEl +lZs +oWT acT eOM eOM @@ -54712,11 +50622,11 @@ oQl oQl oQl ktd -rHQ -ush -vUL -aCA -rHQ +kDF +keV +mWX +ivX +kDF ktd oQl oQl @@ -54730,71 +50640,71 @@ bFg bFg cZk kaC -rXn -dsx -dsx -dsx -waS -uji -uji -fRg -fRg -fRg -fRg -fRg -fRg -fRg -bKV -bKV -iMA -vHX -aWX -bKV -bKV -bsC -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -fRg -xQa -iMA -avx -uqb -kLM -iQq -iQq -kLM -tpg -exX -alW -arW -anJ -dQq -hmo -rdS -axJ -dQq -axJ -axJ -axJ -axJ -huz -huz -sax -sax -nZA -nZA -kAw -kAw -kAw -puZ -puZ -puZ +dmA +dmA +dmA +dmA +dmA +gEc +dmA +dmA +dmA +mEW +lSU +lSU +gPk +iNx +wuP +uEd +gPk +sip +asz +oPN +oPN +oPN +asz +iPk +aJx +tMC +aJx +tMC +cWS +asz +rZt +rZq +asz +asz +fUg +vnD +naQ +hzU +kVd +kVd +huF +rAH +rAH +cRA +boW +ukp +ukp +kVd +ukp +ukp +ukp +bJj +iTQ +osE +gpz +gpz +bJj +amu +gpz +gpz +amu +amu +fXX +fXX +amu puZ puZ "} @@ -54804,14 +50714,14 @@ ajO ajO ajO aDn -aim -nfg -agh -anY +yiX +uoL +vUi +aiq acT -cpb -agh -agh +akg +vUi +vUi acT acT lGq @@ -54875,9 +50785,9 @@ oQl oQl ktd ktd -rHQ -rHQ -rHQ +kDF +kDF +kDF ktd ktd oQl @@ -54897,66 +50807,66 @@ kaC kaC kaC kaC -uji -uji -fRg -aMs -vIk -lJh -loH -ppI -aMs -bKV -bKV -uKZ -nUa -bKV -bKV -bKV -iDW -bAX -fRg -fRg -fRg -fRg -pgh -fRg -ohq -mKB -cLq -iMA -avx -voo -kLM -iQq -iQq -kLM -tpg -exX -qIr -azS -qny -aDu -aut -kfW -axJ -axJ -axJ -axJ -axJ -rdS -huz -huz -sax -sax -nZA -nZA -kAw -kAw -kAw -puZ -puZ -puZ +dmA +dmA +dmA +dmA +mEW +lSU +lSU +ewl +rZt +gLv +rZt +gLv +gPk +wBf +aJx +tMC +aJx +asz +iPk +oLA +iPk +sYg +iPk +oLA +ogu +rZt +rZt +asz +asz +pLf +pLf +uzu +kVd +uzu +uzu +uzu +boW +qOS +huQ +boW +ukp +ukp +xgc +ukp +ukp +ukp +bJj +bJj +osE +bJj +bJj +bJj +amu +gpz +gpz +amu +amu +fXX +fXX +pLS puZ puZ "} @@ -54966,31 +50876,31 @@ ajO ajO ajO aSa -maW -maW -agh -nfg +xEn +xEn +vUi +uoL acT -iJY -agh -agh -adR +mCu +vUi +vUi +vdv acT aSz acT acT -mNK -lPC +lsa +xon acT -nHt -cYa -jnW -iJA -cYa -vcU +vxO +pww +rMk +kxN +pww +goz acT -nXG -nXG +lIQ +lIQ acT acT lNV @@ -55054,71 +50964,71 @@ mIL fQX fQX fQX -kaC -kaC -kaC -kaC -kaC -uji -uji -uji -uji -uKZ -uKZ -uji -uji -uji -qLA -uji -uKZ -aVT -fRg -fRg -oYH -uKZ -bFS -ail -ail -ail -uKZ -uji -uji -iMA -iMA -iMA -uKZ -ehV -aDM -kTP -iQq -iQq -kLM -uqb -huz -cio -ieD -aKR -aDu -huz -axJ -rdS -rti -ieD -axJ -axJ -hIu -huz -huz -sax -sax -nZA -nZA -kAw -kAw -kAw -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +mIL +mIL +gaz +mIL +oMu +lSU +lSU +cwT +gPk +rZt +rZt +gLv +gPk +wBf +aJx +tMC +jng +asz +iPk +oLA +iPk +oLA +iPk +oLA +fNE +uvU +rZt +asz +asz +pLf +pLf +pLf +ukp +ukp +kVd +uzu +kVd +jYN +ukp +xgc +ukp +xgc +kVd +ukp +ukp +ukp +bJj +bJj +bJj +qMc +bJj +oOC +osE +gpz +gpz +amu +amu +fXX +fXX +lAb puZ puZ "} @@ -55128,32 +51038,32 @@ ajV ajV aDn aDn -agh -maW -agh -nfg +vUi +xEn +vUi +uoL acT -iJY -agh -agh -axG +mCu +vUi +vUi +rjF acT ajO aDn -bvC -agh -agh +kJc +vUi +vUi acT -umm -agh -agh -agh -agh -uXQ +mrB +vUi +vUi +vUi +vUi +dbN acT -xCj -kFd -bnm +bqw +ooO +wvw acT acT acT @@ -55224,63 +51134,63 @@ oQl oQl oQl oQl -uKZ -hsw -aNp -afd -oYH -oYH -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -gqe -uji -jkM -bHC -xwo -bHC -lCp -idG -kLM -iQq -iQq -kLM -kLM -huz -huz -huz -huz -huz -huz -mpt -axJ -rxd -sFv -axJ -rdS -hRC -huz -huz -sax -qCr -kAw -nZA -kAw -kAw -puZ -puZ -puZ -puZ +ood +oMu +lSU +lSU +lSU +uEd +aRN +gMA +flN +iNx +rZt +mXD +oPN +oPN +asz +iPk +bmh +tMC +aJx +tMC +coh +fNE +rZt +uvU +asz +asz +pLf +pLf +pLf +pLf +pLf +pLf +pLf +pLf +mAd +lUa +rAH +ukp +ukp +pLf +pLf +ukp +xgc +bJj +bJj +bJj +bJj +bJj +fXX +osE +gpz +amu +amu +amu +fXX +fXX +fXX puZ puZ "} @@ -55289,35 +51199,35 @@ acH amX ajO acT -afx -agh -maW -agh +eQe +vUi +xEn +vUi aDn aDn -iJY -agh -agh -axG +mCu +vUi +vUi +rjF acT ajO aDn -cbt -agh -agh +jUw +vUi +vUi bFC -umm -agh -hqC -hqC -agh -uXQ +mrB +vUi +nvl +nvl +vUi +dbN aek -agh -agh -med -wvW -agh +vUi +vUi +hNM +tiL +vUi aek qep sYu @@ -55386,63 +51296,63 @@ oQl oQl oQl oQl -uKZ -xSk -aNq -oYH -fRg -oYH -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -fRg -hGj -iQq -iOu -kLM -iOu -kLM -kLM -iQq -kLM -iQq -iQq -iQq -iQq -pKK -iQq -iOu -kLM -huz -rdS -axJ -amH -tbR -axJ -rdS -ixC -huz -huz -sax -hrk -kAw -kAw -kAw -kAw -puZ -puZ -puZ -puZ +mIL +oMu +lSU +lSU +lSU +lSU +lSU +wBf +kEs +fgB +kEs +flN +asz +asz +asz +asz +asz +asz +tDg +iWX +wZh +asz +oPN +xtX +asz +asz +asz +asz +asz +asz +asz +asz +asz +pLf +uzu +ukp +xgc +ukp +ukp +ukp +pLf +ukp +bJj +fXX +fXX +bJj +gpz +bJj +bJj +fXX +vOb +cuJ +fXX +bJj +fXX +fXX +pLS puZ puZ "} @@ -55451,35 +51361,35 @@ acH anq bVS acT -afx -agh -maW -agh +eQe +vUi +xEn +vUi aDn -axG -axG -axG -axG -axG +rjF +rjF +rjF +rjF +rjF aSa ajO aSa -agh -agh -evY -acT -ilt -eFG -ihh -pnK -ceS -uXQ +vUi +vUi +uai +acT +dsU +dVo +ybr +kHX +cCr +dbN fkb -agh -agh -agh -agh -agh +vUi +vUi +vUi +vUi +vUi fkb sYu sYu @@ -55548,63 +51458,63 @@ oQl oQl oQl oQl -uKZ -cHB -xSk -afd -fRg -oYH -aSA -gIQ -aTh -aVx -aWI -aYd -baX -bcJ -pvv -pvv -pvv -pvv -pvv -fRg -hGj -iQq -iQq -iQq -iQq -iQq -iQq -kLM -aDM -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -huz -aut -rdS -aCy -tdc -axJ -axJ -tZW -huz -huz -sax -hrk -kAw -nZA -kAw -kAw -puZ -puZ -puZ -puZ +mIL +oMu +lSU +twi +flN +flN +flN +kEs +kEs +flN +eit +tvz +asz +tUq +tUq +asz +vTj +hKA +hKA +hKA +hKA +hKA +hKA +wZv +hKA +asz +mXu +asz +asz +asz +asz +asz +asz +pLf +ukp +uzu +jXy +xgc +ukp +ukp +ukp +xgc +bJj +gpz +gpz +bJj +bJj +gpz +oOC +fXX +oOC +mwJ +fXX +fXX +fXX +fXX +pLS puZ puZ "} @@ -55613,35 +51523,35 @@ acH anF ajO acT -afx -agh -maW -maW +eQe +vUi +xEn +xEn qgj -iJY -agh -agh -agh -axG +mCu +vUi +vUi +vUi +rjF acT aSz acT -ifN -awA +aQR +ixQ acT acT -umm -agh -cTo -cLi -agh -uXQ +mrB +vUi +pCm +cTH +vUi +dbN aek -vrM -agh -agh -auB -tLz +qHt +vUi +vUi +ufn +oBt aek arX sYu @@ -55710,63 +51620,63 @@ oQl oQl oQl oQl -uji -uKZ -uKZ -uji -dtr -oYH -pvv -fhv -aUA -aVB -aWQ -aVx -aVx -aVx -bqN -aVx -dbH -dKR -pvv -fRg -hGj -kLM -iQq -iQq -iQq -iQq -iQq -kLM -kLM -uqb -kLM -iQq -iQq -iQq -iQq -iQq -tpg -exX -qIr -aut -rdS -rdS -axJ -axJ -rdS -huz -huz -sax -hrk -kAw -nZA -kAw -kAw -puZ -puZ -puZ -puZ +mIL +mIL +mkn +flN +flN +flN +flN +flN +eit +kEs +kEs +flN +oPN +tMC +tMC +oPN +hKA +oLA +hKA +oLA +oLA +oLA +hKA +oLA +wZv +asz +czG +fPJ +evy +bId +wZo +asz +asz +pLf +pLf +ukp +uzu +ukp +ukp +xgc +ukp +bJj +fXX +gpz +gpz +vlD +bJj +bJj +bJj +osE +bJj +amu +amu +amu +amu +amu +amu puZ puZ "} @@ -55776,32 +51686,32 @@ ajV ajV aDn aDn -agh -maW -maW +vUi +xEn +xEn ajO -iJY -agh -agh -agh -axG -axG -axG +mCu +vUi +vUi +vUi +rjF +rjF +rjF acT aek aek acT -whU -umm -eFG -ukv -cTo -ceS -uXQ +meE +mrB +dVo +isu +pCm +cCr +dbN acT -ylO -agh -jxJ +bWH +vUi +bur acT acT acT @@ -55873,58 +51783,58 @@ oQl oQl oQl mIL -mIL -mIL -uKZ -fRg -oYH -pvv -aTh -aUx -aVU -aWS -aYf -baY -bdk -aWS -bYO -aWQ -dbH -eVG -fRg -hGj -uqb -kLM -kLM -iQq -iQq -ipc -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -tpg -exX -qIr -rdS -axJ -axJ -axJ -axJ -axJ -huz -huz +fQX +gaz +mkn +flN +flN +gCL +flN +kEs +flN +flN +tvz +oPN +tMC +tMC +oPN +hKA +aJx +hKA +aJx +aJx +aJx +hKA +aJx +hKA +fNE +ulL +rZt +rZt +rZt +sIx +wJT +asz +omf +jrg +jrg +jrg +ukp +ukp +ukp +bJj +bJj +bJj +gpz +bJj +bJj +bJj +bJj +fXX +osE +fXX +amu sax -hrk -nZA -nZA -kAw -kAw puZ puZ puZ @@ -55938,31 +51848,31 @@ ajO ajO ajO acT -amh -all -axG -acT -iJY -agh -agh -agh -agh -agh -axG -acT -iEp -iEp -jbE -hRK -tcG -nMP -uZJ -uZJ -agh -uXQ -acT -rKW -med +neR +jBl +rjF +acT +mCu +vUi +vUi +vUi +vUi +vUi +rjF +acT +anr +anr +noS +mmm +hmR +pet +bxS +bxS +vUi +dbN +acT +pEn +hNM acT acT qep @@ -56036,59 +51946,59 @@ oQl mIL mIL ood -ood -uKZ -aQg -oYH -pvv -aTi -aUy -aVL -aWS -aVL -aVL -aVL -aWS -clp -aVU -aUA -gIQ -fRg -hGj -uqb -uqb -uqb -kLM -iQq -ipc -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -eSN -akF -alS -aMW -ans -dQq -axJ -axJ -huz -huz -huz -hrk -nZA -nZA -nZA -kAw -kAw -bcV -oFl +mIL +pDn +flN +eit +flN +kEs +kEs +fgB +kEs +vnj +lSU +tUq +tUq +lSU +vTj +rZt +rZt +rZt +rZt +mgT +rZt +uvU +hKA +fNE +ulL +nXX +xas +xas +rZt +mNA +aeU +fXX +bJj +bJj +bJj +bJj +bJj +bJj +bJj +bJj +gpz +bJj +bJj +bJj +jrg +amu +gpz +bJj +osE +amu +sax +sax +sax puZ puZ puZ @@ -56100,28 +52010,28 @@ ajO aQX ajO acT -kHB -agh -amN -acT -axG -axG -axG -axG -xkf -axG -axG +jTd +vUi +pSS +acT +rjF +rjF +rjF +rjF +iRI +rjF +rjF ijP -jbE -jbE -jbE -osh -hnf -cBe -cBe -cBe -cBe -dWp +noS +noS +noS +wIA +pMy +oSN +oSN +oSN +oSN +tME acT acT acT @@ -56190,67 +52100,67 @@ mIL mIL mPu fQX -fQX -fQX +jAL +jAL fQX mIL mIL mIL mIL ood -ood -uKZ -aQg -oYH -pvv -aTj -aUz -aVL -aWS -aYg -bbg -bea -aWS -cbk -aWU -deV -fhv -fRg -hGj -kLM -kLM -iQq -iQq -kLM -vdk -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -tpg -exX -qIr -axJ -axJ -axJ -dQq -axJ -huz -huz -huz -hrk -kAw -kAw -kAw -kAw -kAw -rBk -vAU +pqj +qIa +mkn +flN +kEs +flN +flN +kEs +flN +vnj +lSU +lSU +lSU +lSU +dmN +aJx +hKA +mJn +rZt +tEh +hKA +iNJ +hKA +fNE +ulL +xas +nXX +nXX +rZt +ehH +asz +omf +qSz +gpz +gpz +bJj +bJj +jrg +bJj +bJj +gpz +bJj +bJj +jrg +jrg +amu +oOC +oOC +oOC +amu +sax +sax +sax puZ puZ puZ @@ -56262,28 +52172,28 @@ ajO ajO ajO acT -amh -aly -amh +neR +bnN +neR acT -bdT -maW -bdT +hKx +xEn +hKx acT acT acT acT aDn -acx -jbE -jbE -tlX -osh -osh -osh -osh -osh -cKB +nDt +noS +noS +eCy +wIA +wIA +wIA +wIA +wIA +gwi acT acT acT @@ -56353,64 +52263,64 @@ mIL mIL fQX fQX -fQX -fQX -mIL +jAL +jAL mIL +gyu mIL ood +fQX +jAL mIL -mIL -uKZ -fRg -oYH -pvv -pvv -aUw -aVB -aWU -aVN -aVN -aVN -bqN -aVN -deV -pvv -pvv -gxK -hGj -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -iQq -huz -axJ -axJ -rBC -rdS -axJ -axJ -tkm -ncS -hrk -hrk -kAw -kAw -kAw -kAw -kAw +lSU +mkn +flN +kEs +agw +agw +kEs +pOj +lSU +cvn +lSU +fgI +hKA +oLA +hKA +mIZ +rZt +cep +wZv +oLA +hKA +fNE +ulL +rZt +rZt +kQM +xas +iRK +asz +jrg +bJj +gpz +gpz +bJj +jrg +jrg +jrg +gpz +gpz +gpz +bJj +osE +jrg +iTQ +oOC +oOC +oOC +amu +sax puZ puZ puZ @@ -56428,38 +52338,38 @@ acT acT acT aDn -axG -maW -axG +rjF +xEn +rjF aDn -sOg -lPh -cYa -aVF -cYa -cYa -cYa -xnM -rMc -xnM -cYa -cYa -cYa -nNj -acT -acT -ahl -ahE -ahW -aiv -aiL -aiT +wXm +hXs +pww +dcd +pww +pww +pww +bbU +lhV +bbU +pww +pww +pww +iJT +acT +acT +rTa +loC +ldD +tpH +buL +pMd aDn aDn aDn aDn -ajU -ajX +jbf +nGM aDn aDn sYu @@ -56518,61 +52428,61 @@ fQX fQX mIL mIL -mIL +gyu mIL mIL oQl -oQl -uji -fRg -oYH -pvv -pvv -aTj -aVN -aWV -aYx -bbh -beK -pvv -pvv -pvv -pvv -pvv -fRg -hGj -kLM -iQq -kLM -uqb -kLM -iQq -iQq -iQq -iQq -iQq -kLM -iQq -iQq -kLM -kLM -kLM -huz -krU -axJ -axJ -trX -uLT -wTT -fXB -ncS -hrk -hrk -nZA -kAw -kAw -kAw -kAw +mIL +mIL +lSU +qDM +jis +lSU +mcU +mcU +lSU +lSU +lSU +fgH +lSU +dMV +hKA +oLA +dij +grQ +rZt +fVG +hKA +oLA +hKA +asz +meM +rZt +rZt +bAg +asz +asz +asz +jrg +bJj +bJj +bJj +jrg +jrg +jrg +bJj +gpz +bJj +gpz +bJj +osE +jrg +amu +fXX +fXX +bJj +amu +sax puZ puZ puZ @@ -56590,39 +52500,39 @@ ajO ajO ajO aSa -axG -maW -axG +rjF +xEn +rjF aek -vhG -agh -agh -vcx -agh -agh -agh -afh -agh -afh -agh -agh -agh -uXQ -acT -agJ -jay -kce -agh -aji -agh -lXj -aiZ -acT -ajJ -qJa -jay -uXQ -iuR +vpE +vUi +vUi +vQo +vUi +vUi +vUi +fmq +vUi +fmq +vUi +vUi +vUi +dbN +acT +eHn +eim +vxw +vUi +eRN +vUi +qak +sVq +acT +gFi +rzw +eim +dbN +bxj aDn eOM sYu @@ -56675,66 +52585,66 @@ fQX fQX fQX fQX +jAL fQX -fQX -fQX -mIL +jAL mIL +jAL ood ood oQl oQl +ood oQl -uji -dtr -oYH -pvv -aTn -pvv -pvv -pvv -pvv -pvv -bfi -pvv -pvv -pvv -pvv -pvv -fRg -hGj -kLM -iOu -uqb -kJQ -uqb -iQq -iQq -iQq -iQq -kLM -iQq -kLM -uqb -kLM -que -aDM -huz -kys -pef -rdS -axJ -axJ -xvQ -fXB -ncS -kAw -nZA -kAw -kAw -nZA -kAw -hrk +oQl +lSU +dwQ +lSU +lSU +lSU +lSU +lSU +lSU +dwQ +lSU +cDp +hKA +aJx +hKA +jhk +rZt +oIH +hKA +aJx +uvc +asz +uhK +rZt +rZt +guB +asz +jrg +jrg +jrg +osE +bJj +bJj +jrg +jrg +bJj +bJj +gpz +gpz +bJj +bJj +bJj +gpz +bJj +fXX +bJj +fXX +amu +sax puZ puZ puZ @@ -56752,38 +52662,38 @@ aQX ajO ajO aDn -axG -maW -axG +rjF +xEn +rjF aek -laK -agh -agh -dcV -agh -agh -agh -aff -afh -aff -agh -tCi -agh -feR -acT -xRi -agh -fzA -agh -aji -agh -agh -uXQ -acT -umm -agh -agh -uXQ +ttO +vUi +vUi +ibq +vUi +vUi +vUi +gYY +fmq +gYY +vUi +jjR +vUi +hYI +acT +sbW +vUi +wHe +vUi +eRN +vUi +vUi +dbN +acT +mrB +vUi +vUi +dbN aDn aDn eOM @@ -56846,57 +52756,57 @@ ood mIL oQl oQl +mIL oQl -uji -oYH -ahe -pvv -ugD -pvv -pvv -aWY -pvv -pvv -pvv -pvv -pvv -pvv -pvv -pvv -fRg -uji -aDM -uqb -uqb -uqb -kLM -kLM -iQq -iQq -iQq -iQq -kLM -kLM -sqb -lNg -aDM -aDM -huz -huz -huz -huz -tRN -rdS -xvQ -huz -huz -kAw -kAw -kAw -kAw -nZA -kAw -hrk +oQl +lSU +dwQ +eBG +dwQ +dwQ +elw +rRP +lSU +cvn +lSU +cHp +hKA +hyY +tjM +rZt +rZt +rZt +hKA +oLA +hKA +aeU +rZt +rZt +rZt +mNA +asz +jrg +jrg +jrg +osE +bJj +bJj +bJj +jrg +bJj +bJj +bJj +bJj +bJj +bJj +bJj +gpz +bJj +bJj +fXX +fXX +iTQ +sax puZ puZ puZ @@ -56914,38 +52824,38 @@ acT acT acT acT -tWv -axG -bdT +eZQ +rjF +hKx aek -cJy -agh -agh -agh -agh -agh -agh -afM -agh -ahy -agh -agh -agh -uXQ -acT -agK -agh -aix -agh -aix -agh -agh -uXQ +iwN +vUi +vUi +vUi +vUi +vUi +vUi +yal +vUi +vKW +vUi +vUi +vUi +dbN +acT +eHM +vUi +gBC +vUi +gBC +vUi +vUi +dbN ajw -umm -agh -agh -uXQ +mrB +vUi +vUi +dbN ajw sYu sYu @@ -56972,94 +52882,94 @@ ecj ecj ecj ecj -ecj -ecj -mIL -iMb -jAL -mIL -ood -oQl -oQl -oQl -mIL -mIL -cKL -fQX -iMb -fQX -fQX -fQX -iMb -iMb -iMb -iMb -iMb -iMb -fQX -fQX -fQX -fQX -fQX -fQX -mIL -mIL -mIL -gaz -oQl -oQl -oQl -uji -uKZ -uKZ -uji -uji -uji -uKZ -fRg -fRg -fRg -bfy -fRg -uKZ -uji -dMo -ano -dMo -uji -hzJ -kLM -lNE -uqb -iOu -kLM -iQq -iQq -iQq -iQq -kLM -kLM -uqb -uqb -uqb -hzJ -huz -huz -huz -huz -ncS -ncS -ncS -huz -huz -hrk -kAw -kAw -kAw -kAw -kAw -hrk -hrk +ecj +ecj +mIL +iMb +jAL +mIL +ood +oQl +oQl +oQl +mIL +mIL +cKL +fQX +iMb +fQX +fQX +fQX +iMb +iMb +iMb +iMb +iMb +iMb +fQX +jAL +fQX +fQX +fQX +jAL +mIL +fQX +fQX +gaz +oQl +oQl +oQl +oQl +oQl +lSU +dwQ +dwQ +dwQ +oaO +dwQ +rEW +lSU +lSU +lSU +lSU +dmN +oLA +hKA +rZt +rZt +rZt +hKA +oLA +uvc +asz +ulL +rZt +rZt +dNO +asz +jrg +jrg +jrg +bJj +osE +bJj +bJj +jrg +bJj +osE +bJj +gpz +gpz +gpz +bJj +bJj +gpz +gpz +fXX +jrg +iTQ +sax +sax puZ puZ puZ @@ -57070,44 +52980,44 @@ puZ acH aDn acT -wWu -afE -aiy -alz -pGf +hgA +alG +ntt +dCC +mPU acT -wWu -apv -pGf +hgA +oCy +mPU aDn -rfc -agh -tCi -kEy -agh -agh -agh -aff -afh -aff -agh -agh -tCi -uXQ +mUg +vUi +jjR +tvJ +vUi +vUi +vUi +gYY +fmq +gYY +vUi +vUi +jjR +dbN ajw -umm -agh -agh -agh -agh -agh -agh -uXQ +mrB +vUi +vUi +vUi +vUi +vUi +vUi +dbN ajO -umm -agh -agh -uXQ +mrB +vUi +vUi +dbN ajO sYu sYu @@ -57161,67 +53071,67 @@ iMb kri fQX fQX -fQX -fQX -fQX -fQX mIL mIL +jAL +mIL +jAL +mIL mIL oQl oQl oQl oQl -cKL -fQX -oQl -oQl oQl -uKZ -iMA -aYy -bbj -aYy -iMA -uKZ -uji -uji -uji -uji -uji -hzJ -qhm -qhm -kXs -mcH -mcH -mcH -mcH -nEH -mcH -mcH -mcH -pNo -qhm -qhm -hzJ -hzJ -hzJ -hzJ -hzJ -kAw -kAw -kAw -hrk -hrk -kAw -nZA -nZA -kAw -kAw -kAw -kAw -hrk +lSU +lSU +lSU +lSU +dwQ +oaO +dwQ +dwQ +dwQ +bXo +rZt +hKA +xvD +hKA +qmn +rZt +wmF +hKA +aJx +hKA +fNE +ulL +rZt +rZt +pht +asz +jrg +jrg +jrg +jrg +bJj +bJj +bJj +bJj +bJj +bJj +bJj +gpz +gpz +bJj +osE +bJj +gpz +gpz +bJj +jrg +jrg +sax +sax puZ puZ puZ @@ -57232,44 +53142,44 @@ puZ acH aDn acT -gWF -amP -amP -amP -amU +uKh +lat +lat +lat +byO acT -bhS -amP -amU +pLD +lat +byO aek -vCl -agh -agh -agh -agh -agh -agh -afh -agC -afh -agh -agh -agh -uXQ +icG +vUi +vUi +vUi +vUi +vUi +vUi +fmq +msp +fmq +vUi +vUi +vUi +dbN ajO -vKx -cBe -cBe -cBe -mfr -agh -agh -uXQ -acT -bzZ -ajK -ajK -uXQ +fHn +oSN +oSN +oSN +gtd +vUi +vUi +dbN +acT +egU +gxM +gxM +dbN aDn aDn sYu @@ -57313,76 +53223,76 @@ fQX iMb fIT fIT -tPz -aDF -aDR -aDR +gdz +pSm +tfZ +tfZ fIT fIT fQX iMb fQX -mIL -mIL -fQX -fQX -fQX +wMh +cQY +kSO +qBM +wMh mIL mIL ood oQl oQl +gyu oQl oQl -fQX -cKL -jAL oQl oQl oQl -jAL -aYF -bbt -jAL -bGk -fQX -snZ -hzJ -hzJ -hzJ -hzJ -kLM -kLM -knI -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -kLM -uqb -uqb -uqb -qEB -hzJ -hzJ -hzJ -hzJ -kAw -hrk -kAw -kAw -kAw -kAw -kAw -nZA -kAw -kAw -kAw -kAw +lSU +elw +dwQ +dwQ +dwQ +dwQ +lSU +lQm +hKA +oLA +hKA +hHU +rZt +dDt +qwt +oLA +hKA +fNE +xWK +rZt +rZt +ute +asz +jrg +jrg +jrg +jrg +bJj +bJj +bJj +osE +bJj +bJj +gpz +bJj +bJj +jrg +osE +bJj +bJj +gpz +bJj +jrg +jrg +sax puZ puZ puZ @@ -57394,45 +53304,45 @@ puZ acH aDn acT -aeq -amP -aiG -amP -amU +icO +lat +enK +lat +byO aoe -bhS -amP -amU +pLD +lat +byO aek -scN -eIe -cBe -iQP -cBe -ofU -cBe -kEB -rjQ -kEB -cBe -cBe -cBe -dWp +cmb +hJj +oSN +yhu +oSN +qMd +oSN +eLC +mDl +eLC +oSN +oSN +oSN +tME acT acT acT acT acT -oHz -agh -agh -uXQ +xym +vUi +vUi +dbN acT -umm -agh -agh -lXj -qpq +mrB +vUi +vUi +qak +ozQ acT sYu sYu @@ -57474,77 +53384,77 @@ cKL fQX iMb fIT -aDo -wRa -wRa -wRa -aJc -tPz +hSV +mOz +mOz +mOz +aww +gdz fIT fQX iMb -mIL -mIL -mIL -fQX -fQX -fQX -fQX +wMh +wMh +cQY +rJI +gso +pcY +gaz mIL gaz oQl oQl +gyu oQl oQl -cKL -jAL -jAL +acb oQl oQl -jAL -jAL -jAL -jAL -bfB -bGx -fQX -snZ -hzJ -hzJ -hzJ -hzJ -uAd -kbK -jpE -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -kLM -kLM -qoU -hXB -hzJ -hzJ -hzJ -xMz -xMz -xMz -xMz -kAw -kAw -kAw -kAw -kAw -kAw -hrk -hrk +lSU +dwQ +dwQ +lSU +lSU +lSU +lSU +lSU +hKA +oLA +dij +drN +pRH +iYQ +hKA +oLA +hKA +fNE +dAx +rZt +rZt +mNA +asz +jrg +jrg +jrg +jrg +bJj +bJj +bJj +gpz +gpz +gpz +bJj +bJj +bJj +jrg +gRJ +bJj +osE +gpz +bJj +bJj +jrg +sax puZ puZ puZ @@ -57556,45 +53466,45 @@ puZ acH aDn acT -aet -amP -aiH -amP -anb +jdC +lat +xTz +lat +vpu acT -bhS -amP -amU +pLD +lat +byO acT acT acT acT acT -rzI -osh -pNM -osh -osh -osh -osh -osh -osh -ljS +jWQ +wIA +oHY +wIA +wIA +wIA +wIA +wIA +wIA +wqL acT -aii -uVa -ahQ +fYF +tpG +bLx acT -umm -agh -agh -feR +mrB +vUi +vUi +hYI acT -aeh -agh -agh -agh -kdW +hra +vUi +vUi +vUi +uIb acT sYu sYu @@ -57636,76 +53546,76 @@ cKL fQX iMb fIT -aDq -wRa -wRa -wRa -aDW -aXZ +oHL +mOz +mOz +mOz +sbg +gay fIT fQX iMb +wMh +wMh +cQY +aNy +xtc +nKD mIL mIL mIL -fQX -fQX -fQX -fQX -mIL -mIL mIL mIL -mhl -fQX -fQX -fQX -fQX -jAL -jAL -fQX -fQX -jAL -jAL -jAL -pqj -jAL -pqj -fKb -kLM -iQq -kLM -kLM -kLM -kLM -uqb -iOu -kLM -iQq -iQq -iQq -iQq -iQq -iOu -iQq -iQq -uqb -hbD -boz -iDy -hzJ -hzJ -xMz -xMz -xMz -xMz -xMz -kAw -nZA -nZA -kAw -kAw -kAw +gyu +dzJ +mIx +aca +oQl +oQl +lSU +dwQ +dwQ +lSU +gpb +adC +adC +lSU +hKA +aJx +hKA +jcn +pue +uVr +qwt +aJx +hKA +asz +gaU +wcB +rjd +mrJ +asz +jrg +jrg +jrg +jrg +jrg +bJj +gpz +osE +osE +gpz +bJj +bJj +mKF +jrg +jrg +gRJ +sUD +hXH +apD +hXH +cMl puZ puZ puZ @@ -57718,45 +53628,45 @@ puZ acH aDn acT -aev -hms -hMn -hms -xEw +xNs +nzH +fub +nzH +kUa acT -bhS -amP -oFX -pGf +pLD +lat +xBf +mPU acT aFJ kmM acT -pLn -agh -agh -agh -agh -agh -agh -agh -agh -uyJ -acT -aia -tCi -agh +jou +vUi +vUi +vUi +vUi +vUi +vUi +vUi +vUi +bDn +acT +xAt +jjR +vUi mah -umm -agh -agh -uXQ +mrB +vUi +vUi +dbN acT -ygn -ajL -ajL -agh -akl +mLN +haJ +haJ +vUi +srJ acT lwo sYu @@ -57799,75 +53709,75 @@ jAL iMb fIT fIT -aDE -aDG -wRa -vIi +xdP +fFD +mOz +mdP fIT fIT iMb fQX fQX -mIL -fQX -fQX -fQX -fQX -fQX +wMh +pXU +wMh +wMh +aFO +gaz mIL mIL mIL mIL -wxY -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -jAL -pqj -jAL -kvQ -uqb -aDM -iQq -kLM -kLM -iQq -uqb -uqb -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -uqb -lNg -lNg -xvb -uqb -xMz -xMz -xMz -xMz -xMz -xMz -kAw -nZA -kAw -kAw -nZA -kAw +gyu +kbT +skl +skl +ors +lSU +lSU +dwQ +dwQ +lSU +dwQ +dwQ +dwQ +lSU +vTj +rZt +rZt +iXr +pue +wui +rZt +rZt +hKA +asz +asz +asz +asz +asz +asz +jrg +jrg +jrg +bJj +bJj +bJj +gpz +osE +osE +bJj +osE +osE +jrg +jrg +jrg +jrg +jrg +flN +jrx +flN +pxA puZ puZ puZ @@ -57886,39 +53796,39 @@ acT alQ acT acT -bhS -amP -amP -amU +pLD +lat +lat +byO acT qDT eAZ acT -hgx -cso -agh -hgx -hgx -hgx -hgx -agh -cso -hgx +rFk +lrn +vUi +rFk +rFk +rFk +rFk +vUi +lrn +rFk acT -aii -agh -tCi +fYF +vUi +jjR acT -umm -agh -agh -uXQ +mrB +vUi +vUi +dbN acT -vKx -cBe -mfr -nAY -clz +fHn +oSN +gtd +dfk +haT acT eOM sYu @@ -57969,67 +53879,67 @@ fIT fQX iMb iMb -fQX +jAL fQX fQX fQX fQX cKL -fQX -fQX +ood +cKL mIL mIL rcD -mIL -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -jAL -pqj -jAL -fQX -kLM -uqb -kLM -kLM -kLM -kLM -kLM -iQq -iQq -kLM -iQq -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -xMz -xMz -xMz -xMz -xMz -xMz -kAw -kAw -kAw -kAw -kAw -kAw +gyu +sgB +skl +skl +ors +dwQ +elw +dwQ +dwQ +adI +adj +dwQ +adH +lSU +hKA +aJx +hKA +aJx +aJx +aJx +hKA +iNJ +hKA +rZt +rZt +flN +asz +jrg +jrg +jrg +osE +osE +osE +osE +bJj +bJj +bJj +bJj +sLj +sLj +tnG +jrg +jrg +jrg +jrg +wBf +flN +dwQ +rZt +pxA puZ puZ puZ @@ -58041,45 +53951,45 @@ puZ (188,1,1) = {" acH acT -adX -wWu -afL -aiO -apv -apv -aor -gjg -amP -amP -oah +rCq +hgA +iRt +dUk +oCy +oCy +iKN +gSY +lat +lat +dWj aDn eAZ eAZ aDn -hgx -cso -agh -cso -cso -cso -cso -agh -cso -hgx +rFk +lrn +vUi +lrn +lrn +lrn +lrn +vUi +lrn +rFk acT acT -aii -ahR +fYF +fNt acT -uTB -cBe -cBe -dWp +mUr +oSN +oSN +tME acT acT acT -ajW -ajY +xBZ +xDN aDn aDn lwo @@ -58125,7 +54035,7 @@ iMb iMb iMb aDH -iMb +pqj iMb iMb iMb @@ -58138,60 +54048,60 @@ fQX cKL fQX fQX -fQX +ood mIL ood mIL -wxY -fQX -fQX -fQX -fQX -fQX -fQX -fQX -fQX -jAL -jAL -pqj -jAL -fQX -jAL -cdh -aDM -uqb -kLM -kLM -uqb -uqb -kLM -kLM -kLM -iQq -bzK -iQq -iQq -kLM -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -xMz -xMz -xMz -xMz -xMz -xMz -kAw -kAw -kAw -kAw -kAw -kAw +gyu +abV +skl +skl +ors +elw +dwQ +dwQ +dwQ +lSU +ada +dwQ +dwQ +adI +hKA +oLA +hKA +oLA +oLA +oLA +hKA +oLA +wZv +rZt +flN +rZt +dwQ +bJj +osE +bJj +osE +osE +osE +gpz +bJj +gpz +gpz +bJj +ciL +gpz +bJj +xuz +jrg +jrg +jrg +pxA +flN +rZt +dwQ +pxA puZ puZ puZ @@ -58203,42 +54113,42 @@ puZ (189,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -aos -amP -amP -amP -gBr +rCq +pLD +lat +lat +lat +lat +ftE +lat +lat +lat +sOt aek oYw eAZ aek -eXL -cso -agh -hgx -hgx -hgx -hgx -agh -cso -qdd -qAL +uop +lrn +vUi +rFk +rFk +rFk +rFk +vUi +lrn +ucF +pqy acT acT acT acT acT -kuM -jVp -jVp -wMC -ixX +iKr +lhP +lhP +pKX +qOH aDn aDn aDn @@ -58280,15 +54190,15 @@ oQl oQl jAL iMb +qXo +hwy +hwy +hwy +wCo iMb -iMb -fQX -fQX -iMb -iMb -iMb -iMb -fQX +pqj +pqj +pqj iMb iMb fQX @@ -58304,56 +54214,56 @@ mIL mIL ood mIL -mhl -fQX -cKL -fQX -fQX -cKL -fQX -fQX -fQX -jAL -pqj -fQX -jAL -fQX -jAL -kvQ -kLM -xvb -kLM -kLM -kLM -kLM -kLM -gCx -kJQ -kLM -qkI -iQq -kLM -iOu -kLM -iQq -qkI -lNg -kLM -lNg -uqb -uqb -xMz -xMz -xMz -xMz -xMz -xMz -cwZ -cwZ -kAw -kAw -kAw -kAw +gyu +oQl +abX +ors +ors +lSU +lSU +dwQ +dwQ +lSU +ada +ady +adE +lSU +hKA +hKA +hKA +hKA +hKA +hKA +hKA +hKA +hKA +aJx +aJx +dwQ +flN +fXX +bJj +bJj +osE +bJj +bJj +gpz +gpz +bJj +bJj +xuz +ciL +bJj +bJj +bJj +jrg +jrg +jrg +pxA +dwQ +dwQ +rZt +pxA puZ puZ puZ @@ -58365,45 +54275,45 @@ puZ (190,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -amP -amP -amP -amP -amU +rCq +pLD +lat +lat +lat +lat +lat +lat +lat +lat +byO aek oYw oYw aek -vOP -mfr -agh -agh -agh -agh -agh -agh -nAY -dWp -osh +pog +gtd +vUi +vUi +vUi +vUi +vUi +vUi +dfk +tME +wIA acT jVI kQF kzE acT -qOD +isk kTZ -iLS -mms -xjg +uVM +xkj +biI aek -vBl -itG +qTV +oAc aDn lwo eOM @@ -58442,17 +54352,17 @@ iMb iMb iMb iMb -fQX -fQX -fQX -iMb -iMb +jPG +rWm +hHS +iUz +gZs +pqj +pqj iMb -fQX -fQX iMb iMb -fQX +jAL iMb iMb pQE @@ -58463,59 +54373,59 @@ mIL gaz mIL mIL -ood +jAL gaz mIL +gyu oQl oQl -fQX -cKL -fQX +abY +abY oQl -cKL -fQX -jAL -pqj -fQX -cKL -xMz -xMz -xMz -xMz -aDM -uqb -kLM -gCx -kLM -kLM -kLM -kLM -kLM -kLM -iQq -iQq -kLM -iQq -iQq -kLM -uqb -iQq -iQq -iQq -kLM -xvb -uqb -uCs -xMz -xMz -xMz -xMz -cwZ -cwZ -kAw -kAw -kAw -hrk +lSU +dwQ +dwQ +lSU +lSU +lSU +lSU +lSU +bwi +ocN +ocN +oLA +rZt +rZt +jCj +rZt +rZt +rZt +rZt +rZt +rZt +bJj +bJj +osE +gpz +bJj +bJj +bJj +bJj +bJj +gpz +gpz +rad +fXX +osE +gRJ +jrg +jrg +jrg +pxA +gKZ +oLA +gKZ +pxA puZ puZ puZ @@ -58527,30 +54437,30 @@ puZ (191,1,1) = {" acH acT -adX -bhS -amP -amP -amP -amP -amP -amP -amP -amP -amU +rCq +pLD +lat +lat +lat +lat +lat +lat +lat +lat +byO aek oYw eAZ aDn aDn -qpv -mfr -agh -agh -agh -agh -nAY -hHV +dmm +gtd +vUi +vUi +vUi +vUi +dfk +vRG aDn fSc aDn @@ -58558,14 +54468,14 @@ qbh ovc fMO pji -qOD -iLS -mms -mms -xjg +isk +uVM +xkj +xkj +biI aek -iJY -ylZ +mCu +lQP aDn lwo lwo @@ -58604,22 +54514,22 @@ iMb iMb jAL jAL -fQX -jAL -jAL +jPG +nxw +rpp +rCp +aVK +pqj +pqj iMb -fQX iMb -fQX -fQX aiz -iMb fQX iMb pQE pQE -klP -vkZ +rgf +uEU pQE pQE mIL @@ -58628,56 +54538,56 @@ ood gaz ood mIL -mIL oQl oQl oQl oQl oQl oQl -fQX -jAL -jAL -cKL -xMz -xMz -xMz -xMz -oqf -uqb -kTP -kLM -kLM -iQq -iQq -iQq -kLM -iQq -iQq -iQq -iQq -iQq -kLM -kLM -iQq -iQq -iQq -qkI -iQq -uqb -kLM -aDM -xMz -xMz -xMz -iQq -fKb -cwZ -kAw -kAw -kAw -hrk -puZ +lSU +dwQ +dwQ +dwQ +bXo +rZt +tMC +tMC +rZt +ocN +ocN +oLA +asz +asz +asz +asz +asz +aJx +aJx +dwQ +aJx +dwQ +bJj +bJj +gpz +gpz +gpz +bJj +osE +osE +gpz +gpz +xTK +fXX +fXX +jrg +jrg +jrg +jrg +pxA +olJ +sdI +olJ +pxA puZ puZ puZ @@ -58690,28 +54600,28 @@ puZ acH acT acT -gWF -amP -amP -alZ -amP -sBh -sBh -sef -dkI -qyy +uKh +lat +lat +tkz +lat +jzL +jzL +lVW +nsT +nJD acT eAZ eAZ mnS aDn aDn -fPD -eln -bUO -fZz -fZz -pvk +gDK +dAk +bgX +smg +smg +rvP aDn aDn eAZ @@ -58720,14 +54630,14 @@ mLT ovc ovc aVQ -qOD -mms -mms -mms -xjg +isk +xkj +xkj +xkj +biI nMZ -ivy -wFa +jCU +qnP aDn hkC sYu @@ -58766,80 +54676,80 @@ jAL jAL jAL jAL -jAL -iMb -jAL -iMb -jAL -iMb -iMb -iMb +jPG +nxw +uYd +rCp +tlS +pqj +pqj +pqj iMb iMb iMb kri pQE -eiT -qVq -qVq -lRI +qwj +sje +sje +scM pQE mIL ood ood mIL mIL -mIL -mIL -iMb +jAL oQl oQl oQl oQl -vAp -mhl -jAL -mhl -vAp -xMz -cnt -cnt -uqb -xvb -kLM -gCx -kLM -iQq -cQW -cQW -cQW -iQq -iQq -iQq -gGH -kLM -kLM -cQW -cQW -cQW -cQW -kLM -iQq -iQq -kLM -kLM -lNg -xMz -xMz -iQq -kLM -fKb -cwZ -kAw -kAw -hrk -kAw -puZ +oQl +oQl +lSU +rHO +rHO +rRP +lSU +oLA +ocN +ocN +ocN +ocN +ocN +oLA +fNE +cwn +nXX +gHU +asz +rZt +rZt +rZt +rZt +flN +pxA +fXX +bJj +jrg +bJj +bJj +bJj +bJj +bJj +osE +pxA +aJx +aJx +pxA +pxA +pxA +pxA +pxA +gKZ +oLA +gKZ +pxA puZ puZ puZ @@ -58852,16 +54762,16 @@ puZ acH aDn acT -afi -hms -aje -ama -anz -aov -yiw -amP -amP -amU +iqx +nzH +cth +rCW +hVD +xwJ +qIz +lat +lat +byO acT aFK eAZ @@ -58882,14 +54792,14 @@ hDw ovc fMO pcC -qOD -mms -mms -mms -xjg +isk +xkj +xkj +xkj +biI aek -vey -txA +mer +gdK aDn sYu sYu @@ -58928,12 +54838,12 @@ iMb jAL jAL iMb -iMb -iMb -jAL -jAL -jAL -iMb +dYG +uQq +jPB +rHz +snw +pqj iMb iMb iMb @@ -58941,10 +54851,10 @@ iMb iMb iMb aEW -qVq -qVq -qVq -aJe +sje +sje +sje +roB pQE mIL mIL @@ -58952,56 +54862,56 @@ mIL mIL iMb iMb +oQl +iMb iMb iMb oQl oQl -oQl -oQl -fQX -fQX -jAL -fQX -jAL -xMz -aDM -uqb -uqb -uqb -kLM -gGH -iQq -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -kLM -cQW -cQW -cQW -cQW -kLM -gGH -cQW -kLM -uqb -lNg -erj -kLM -tcp -iQq -fKb -cwZ -kAw -kAw -hrk -sax -puZ +lSU +lSU +lSU +lSU +lSU +oLA +ocN +rZt +tMC +tMC +tMC +rZt +fNE +sJk +rZt +gkn +asz +aJx +dwQ +aJx +aJx +aJx +dwQ +bJj +bJj +jrg +jrg +bJj +osE +jrg +jrg +jrg +pxA +aJx +aJx +pxA +pxA +pxA +pxA +pxA +beD +beD +beD +pxA puZ puZ puZ @@ -59020,10 +54930,10 @@ acT acT acT acT -uKV -yfE -qpZ -aJn +sjZ +nWa +lGS +xEy acT qlk eAZ @@ -59032,10 +54942,10 @@ eAZ eAZ eAZ acT -vXh -vXh -vXh -vXh +xhu +xhu +xhu +xhu acT eAZ qDT @@ -59044,11 +54954,11 @@ aoK ovc ovc acT -qOD -mms -mms -mms -xjg +isk +xkj +xkj +xkj +biI aDn uYg aDn @@ -59080,7 +54990,7 @@ jAN jAN jAN jAN -awq +tTU jAN jAN jAN @@ -59089,12 +54999,12 @@ iMb iMb iMb iMb -iMb -iMb -iMb -iMb -iMb -iMb +aiz +xME +iSr +iSr +iSr +xDx iMb iMb iMb @@ -59103,67 +55013,67 @@ fQX iMb aEC pQE -aFs -vkZ -vkZ +dnJ +uEU +uEU pQE pQE mIL iMb iMb -vpD -vpD -vpD -ccu -ols +iMb +iMb +iMb oQl +iMb +iMb +iMb +iMb oQl oQl oQl -fQX -jAL -pqj -jAL -fQX -xMz -aDM -uqb -uqb -kLM -iQq -iQq -iQq -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -kLM -cQW -iQq -kLM -kLM -wgM -kLM -ath -iQq -fKb -cwZ -kAw -sax -sax -sax -puZ +oQl +oQl +asz +oLA +ocN +oLA +asz +asz +aed +asz +asz +ult +kQM +xmX +asz +asz +rZt +flN +rZt +dwQ +flN +flN +amu +bJj +jrg +jrg +jrg +jrg +jrg +jrg +pxA +aJx +aJx +pxA +pxA +pxA +pxA +pxA +gKZ +oLA +gKZ +pxA puZ puZ puZ @@ -59176,16 +55086,16 @@ puZ acH aDn acT -axG -axG -yeu -wWu -apv -apv -gjg -dbQ -amP -amU +rjF +rjF +iVB +hgA +oCy +oCy +gSY +rnA +lat +byO aDn aDn eAZ @@ -59194,10 +55104,10 @@ eAZ oYw oYw gQR -agh -agh -agh -agh +vUi +vUi +vUi +vUi gQR aSi aSi @@ -59206,18 +55116,18 @@ aoK ovc ovc gQR -ljM -dOf -mms -mms -rDn -jVp -joP -mms -mms -pfg -pfg -kiS +uMp +sOn +xkj +xkj +twJ +lhP +gjx +xkj +xkj +bkr +bkr +lEl owB rnB sYu @@ -59240,12 +55150,12 @@ fQX iMb jAN asK -aty -auU -gxN -auf -axt -axS +bpU +qCw +ydm +hVi +boy +wCe jAN iMb iMb @@ -59271,61 +55181,61 @@ pQE pQE mIL fQX +jAL +iMb +iMb +iMb +iMb +iMb +iMb +jAL +iMb +iMb iMb iMb -vpD -vpD -qFx -oQl -oQl -oQl oQl oQl oQl -fQX -jAL -pqj -jAL -fQX -xMz -uqb -uqb -uqb -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -iQq -kLM -kLM -lNg -uqb -kLM -kLM -fKb -kAw -kAw -sax -sax -sax -puZ +asz +tmv +ocN +oLA +wgm +nif +rZt +nXX +nXX +fqd +mNA +asz +asz +asz +asz +aJx +aJx +aJx +aJx +dwQ +flN +jrg +jrg +jrg +jrg +jrg +pxA +pxA +pxA +aJx +aJx +beD +aJx +mlz +aJx +rZt +gKZ +oLA +gKZ +pxA puZ puZ puZ @@ -59338,16 +55248,16 @@ puZ acH acT acT -axG -maW -axG -bhS -qGq -amP -amP -amP -amP -amU +rjF +xEn +rjF +pLD +uMw +lat +lat +lat +lat +byO knC aSi aSi @@ -59356,10 +55266,10 @@ oYw aSi eAZ acT -ufd -oJe -bQR -tvo +lSn +lrm +nql +lpe acT qlk eAZ @@ -59369,18 +55279,18 @@ pkp pkp acT bjb -ljM -igN -igN -igN -igN -joP -mms -mms -mms -mms -mms -iWg +uMp +vMB +vMB +vMB +vMB +gjx +xkj +xkj +xkj +xkj +xkj +iEM tDr sYu sYu @@ -59402,12 +55312,12 @@ fQX mIL jAN asL -atB -auV -gxN -gxN -gxN -axT +pik +fZr +ydm +ydm +ydm +oWS jAN mIL iMb @@ -59435,60 +55345,60 @@ fQX jAL fQX iMb -ben -vpD -vpD -oQl -oQl -oQl -oQl -oQl -oQl -oQl -fQX jAL -fQX -fQX -xMz -uqb -uqb -kLM -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -iQq -iQq -iQq -kLM -kLM -ath -aDM -kLM -sax -sax -sax -sax -sax -sax -sax -puZ -puZ +iMb +iMb +iMb +iMb +jAL +iMb +iMb +iMb +jAL +jAL +iMb +oQl +asz +oLA +ocN +oLA +jNn +rZt +rZt +rZt +rZt +rZt +xjD +asz +asz +asz +asz +asz +rZt +flN +rZt +rZt +dwQ +pxA +pxA +pxA +jrg +jrg +pxA +ylo +pJA +aJx +gKZ +gKZ +gKZ +gKZ +beD +pzR +pzR +oLA +gKZ +pxA +flN puZ puZ puZ @@ -59498,18 +55408,18 @@ puZ "} (197,1,1) = {" acH -axG -axG -axG -iWa -axG -bhS -amP -amP -amP -amP -amP -amU +rjF +rjF +rjF +rlO +rjF +pLD +lat +lat +lat +lat +lat +byO ajO aSi aSi @@ -59537,11 +55447,11 @@ jQy acT acT acT -mms -mms -mms -mms -mms +xkj +xkj +xkj +xkj +xkj uQy gkG sYu @@ -59564,94 +55474,94 @@ fQX mIL jAN asO -atC -auV -gxN -gxN -gxN -axU +slP +fZr +ydm +ydm +ydm +jzm jAN mIL iMb iMb iMb -fQX -fQX -fQX -iMb -mIL -mIL -mIL -puZ -puZ -fQX -fQX -cKL -fQX -iMb -iMb -iMb -iMb -fQX -jAL -fQX -jAL -jAL -vpD -ben -vpD -oQl -oQl -oQl -oQl -oQl -oQl -vAp -mhl -fQX -mhl -vAp -xMz -uqb -kLM -iQq -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -boD -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -iQq -iQq -iQq -iQq -iQq -kLM -lMO -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +fQX +fQX +fQX +iMb +mIL +mIL +mIL puZ puZ +fQX +fQX +cKL +fQX +iMb +iMb +iMb +jAL +fQX +jAL +fQX +jAL +jAL +iMb +jAL +iMb +iMb +iMb +iMb +iMb +iMb +fuK +fuK +fuK +fuK +oQl +asz +oLA +ocN +oLA +sAA +rZt +rZt +rZt +rZt +kQM +fgo +asz +tjA +pLG +pxA +pxA +pxA +aJx +aJx +aJx +aJx +kGF +aJx +pxA +jrg +jrg +pxA +nHH +rCH +aJx +flN +flN +flN +flN +flN +gKZ +rZt +rZt +gKZ +pxA +kTd +kTd puZ puZ puZ @@ -59660,18 +55570,18 @@ puZ "} (198,1,1) = {" acH -axG -axG -axG -axG -axG -bhS -amP -amP +rjF +rjF +rjF +rjF +rjF +pLD +lat +lat tTd -amP -amP -amU +lat +lat +byO acT aDn oYw @@ -59680,30 +55590,30 @@ aSi oYw eAZ acT -geS -rpL -azd -acT -rZV -rBy -fun -rBy -qid -rBy -owt -aPh -acT -ksu -apv -apv -qCa -qEC -acT -mms -mms -mms -mms -mms +avD +eYE +pGy +acT +gBq +ayk +cDi +ayk +wWI +ayk +szv +hzq +acT +oIL +oCy +oCy +iYs +tJh +acT +xkj +xkj +xkj +xkj +xkj sNi sYu sYu @@ -59726,12 +55636,12 @@ mIL mIL jAN asR -atD -auV -gxN -gxN -gxN -axV +vdO +fZr +ydm +ydm +ydm +kOj jAN mIL mIL @@ -59762,59 +55672,59 @@ pqj jAL iMb iMb -oQl -oQl -oQl -oQl -oQl -oQl -aUP -fQX -jAL iMb -xMz -xMz -kLM -uqb -kLM -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -iQq -iQq -kLM -kLM -uqb -kLM -uqb -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +iMb +iMb +iMb +iMb +fuK +asz +asz +asz +asz +asz +oLA +ocN +oLA +ota +upW +xas +rEf +rEf +fgo +asz +asz +jMk +rhv +beD +beD +bUe +rZt +oLA +rZt +oLA +dwQ +aJx +pxA +pxA +pxA +pxA +nzf +aJx +aJx +aQm +aXc +aXI +bbG +flN +gKZ +oLA +pzR +pzR +wBf +flN +kTd +kTd puZ puZ puZ @@ -59822,18 +55732,18 @@ puZ "} (199,1,1) = {" acH -anI -cRX -hfN -cRX -kJL -bhS -amP -amP -acT -amP -amP -amU +nVh +vUJ +cxa +vUJ +uKb +pLD +lat +lat +acT +lat +lat +byO acT eAZ eAZ @@ -59842,30 +55752,30 @@ aSi oYw eAZ acT -bhS -amP -amU -acT -bhS -amP -iNS -amP -amP -amP -amU -adR -acT -vAw -amP -amP -amP -amU +pLD +lat +byO +acT +pLD +lat +cxV +lat +lat +lat +byO +vdv +acT +dMq +lat +lat +lat +byO knC -mms -mms -mms -mms -mms +xkj +xkj +xkj +xkj +xkj hEa rnB sYu @@ -59888,12 +55798,12 @@ mIL mIL jAN asT -atF -auV -gxN -gxN -gxN -axZ +ufw +fZr +ydm +ydm +ydm +lwm jAN gaz mIL @@ -59924,59 +55834,59 @@ pqj jAL jAL iMb -oQl -oQl -oQl -oQl -oQl -aTr +iMb iMb iMb jAL iMb -xMz -xMz -aDM -uqb -kLM -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -kLM -kLM -kLM -aDM -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +fuK +asz +dAt +sNX +dAt +rZt +oLA +ocN +oLA +asz +asz +asz +asz +asz +asz +asz +asz +pxA +vva +aJx +beD +pxA +pxA +jTw +aJx +aJx +aJx +aJx +kGF +tcM +pxA +pxA +nrr +aJx +aJx +aPe +act +acA +bah +flN +gKZ +oLA +pzR +rZt +flN +flN +rZt +flN puZ puZ puZ @@ -59984,18 +55894,18 @@ puZ "} (200,1,1) = {" acH -bhS -dbQ -amP -dbQ -kRI -bhS -amP -sHc -acT -xoi -amP -amU +pLD +rnA +lat +rnA +swH +pLD +lat +onw +acT +mPw +lat +byO aek eAZ oYw @@ -60004,31 +55914,31 @@ aSi eAZ ajT acT -lyw -hms -bhI +eZA +nzH +huL acT -gWF -amP -iNS -amP -amP -amP -gcP +uKh +lat +cxV +lat +lat +lat +rCY acT acT -wxu -bhI -pNq -amP -amU +myP +huL +uJu +lat +byO ajO -mms -mms -mms -mms -mms -iWg +xkj +xkj +xkj +xkj +xkj +iEM tDr sYu lwo @@ -60050,12 +55960,12 @@ mIL ecj jAN cAW -atD -auV -gxN -gxN -axv -ayb +vdO +fZr +ydm +ydm +kAL +tqG jAN ood ood @@ -60086,59 +55996,59 @@ pqj jAL jAL cKL -jAL oQl -oQl -cKL -cKL -jAL iMb -jAL -jAL -pDH -xMz -xMz -aDM -uqb -uqb -kLM -iQq -iQq -iQq -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -kLM -cQW -iQq -kLM -kLM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +iMb +iMb +iMb +oQl +asz +gha +rZt +sNX +rZt +oLA +ocN +oLA +rZt +asz +wqc +tOq +hXQ +asz +hKA +hKA +pxA +beD +aJx +aJx +mgK +pxA +pxA +sIX +oLA +rZt +oLA +rZt +aJx +pxA +pxA +nmT +jyV +aJx +aPd +aRz +aXi +bag +flN +gKZ +oLA +gKZ +flN +wBf +pxA +pxA +kTd puZ puZ puZ @@ -60146,18 +56056,18 @@ puZ "} (201,1,1) = {" acH -aoy -amP -amP -amP -kRI -bhS -amP -amP +dCU +lat +lat +lat +swH +pLD +lat +lat uZU -amP -amP -amU +lat +lat +byO aek eAZ eAZ @@ -60166,24 +56076,24 @@ aSi oYw aDn aDn -axG -axG -axG -axG -bhS -amP -vwv -amP -amP -amP -amU +rjF +rjF +rjF +rjF +pLD +lat +wia +lat +lat +lat +byO knC -bhS -amP -pGf -wWu -amP -jEa +pLD +lat +mPU +hgA +lat +sbI acT acT acT @@ -60212,11 +56122,11 @@ ecj ecj jAN jAN -atG -auZ -awc -lTN -axw +xxV +wcA +tVA +xPR +nTY jAN jAN gaz @@ -60248,78 +56158,78 @@ pqj pqj jAL jAL -fQX -aOk -aQh -rxF -wuw -iMb +oQl +oQl +oQl iMb jAL -onF -qRV -mIL -xMz -xMz -aDM -uqb -kLM -kLM -gGH -iQq -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -cQW -iQq -cQW -cQW -cQW -cQW -kLM -gGH -cQW -iQq -kLM -uqb -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +asz +dAt +sNX +dAt +rZt +oLA +ocN +oLA +rZt +bXo +biM +biM +biM +hKA +bms +hKA +bXo +beD +ucB +aJx +aJx +mgK +pxA +pxA +pxA +aJx +aJx +aJx +aJx +aJx +pxA +hRz +pEv +aJx +flN +flN +flN +flN +flN +gKZ +oLA +ckB +sNX +dAt +rZt +pxA +kTd +flN puZ puZ puZ "} (202,1,1) = {" acH -bhS -amP -amP -amP -acT -bhS -amP -amP +pLD +lat +lat +lat +acT +pLD +lat +lat tTd -amP -amP -amU +lat +lat +byO aek eAZ eAZ @@ -60328,28 +56238,28 @@ aSi aSi aSi knC -maW -maW -maW -axG -bhS -amP -uZf -hms -hms -hms -bhI +xEn +xEn +xEn +rjF +pLD +lat +aKF +nzH +nzH +nzH +huL ajO -bhS -amP -amP -amP -amP -ryI -acT -aka -aka -apv +pLD +lat +lat +lat +lat +iwg +acT +uxd +uxd +oCy ajO ajO acT @@ -60410,78 +56320,78 @@ pqj pqj pqj iMb -jAL -aOl -oCk -jAL -jJf -jAL -jAL -iMb -iMb -kVs -bbF -xMz -xMz -uqb -uqb -kLM -kLM -gCx -iQq -iQq -cQW -cQW -cQW -iQq -iQq -iQq -gGH -iQq -iQq -cQW -cQW -cQW -cQW -kLM -iQq -iQq -iQq -kLM -uqb -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +oQl +asz +rZt +bgC +rZt +rZt +oLA +ocN +oLA +rZt +asz +biM +biM +biM +hKA +iYQ +rvO +pxA +dku +gQK +ydJ +sXe +mgK +pxA +pxA +pxA +tmv +rZt +oLA +rZt +rZt +pxA +pxA +pxA +aJx +gKZ +gKZ +gKZ +gKZ +beD +gKZ +oLA +jNu +uuN +acP +flN +pxA +flN +kTd puZ puZ puZ "} (203,1,1) = {" acH -pNq -dIF -hms -hms -acT -bhS -amP -sHc -acT -xoi -amP -amU +uJu +sSs +nzH +nzH +acT +pLD +lat +onw +acT +mPw +lat +byO aek eab oYw @@ -60490,30 +56400,30 @@ aSi aSi aSi ajO -uqS -maW -maW -qvr -mFD -hms -bhI +lII +xEn +xEn +eQq +rwE +nzH +huL acT acT acT acT acT -tcI -hms -yiw -uZf -hms -xEw +uGg +nzH +qIz +aKF +nzH +kUa acT ajO -amP -amP -amP -amP +lat +lat +lat +lat amj acT qep @@ -60572,60 +56482,60 @@ jAL pqj pqj pqj -pqj -jAL -iMb -aRo -jAL -pqj -iMb -jAL -iMb -jAL -jAL -jAL -kvQ -uqb -dgG -kLM -kLM -kLM -kLM -kLM -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -iQq -gCx -kLM -kLM -uqb -kLM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +oQl +asz +eaa +rZt +rZt +rZt +oLA +ocN +oLA +iaK +fVd +biM +xtI +qOd +hKA +aJx +hKA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +aJx +aJx +aJx +aJx +aJx +pxA +rZt +beD +beD +aJx +beD +aJx +beD +aJx +pzR +oLA +ckB +sNX +dAt +flN +rZt +flN +kTd puZ puZ puZ @@ -60637,13 +56547,13 @@ dOu aSz acT acT -oIh -amP -amP +eeB +lat +lat acT -amP -amP -amU +lat +lat +byO acT eAZ eAZ @@ -60657,24 +56567,24 @@ rOG acT acT acT -fyF +pTw acT acT -qyd -uLn -vno +mqx +hbO +hDS acT aek aek -xUm -paZ +sTR +fmR acT acT acT ajO akr -amP -amP +lat +lat ajO amj acT @@ -60734,78 +56644,78 @@ jAL jAL pqj pqj -pqj -pqj -jAL -jAL -iMb -aTt -iMb -iMb -iMb -fQX -jAL -jAL -kvQ -oUu -uqb -kLM -kLM -uqb -iQq -gCx -kLM -uqb -kLM -iQq -iQq -kLM -kLM -kLM -kLM -kLM -iQq -iQq -kLM -kLM -kLM -uqb -uqb -uqb -kLM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +oQl +asz +rZt +byr +rZt +rZt +oLA +ocN +oLA +iaK +fTh +biM +biM +biM +ePp +vXs +hKA +pxA +rZt +tMC +pLO +tMC +tMC +tMC +rZt +bZW +rZt +crF +crF +crF +aJx +beD +aJx +oLA +rZt +oLA +rZt +oLA +rZt +oLA +rZt +oLA +gKZ +bgC +flN +flN +rZt +flN +kTd +flN puZ puZ "} (205,1,1) = {" acH -aoz -axG -axG -axG -axG -bhS -amP -amP +wCq +rjF +rjF +rjF +rjF +pLD +lat +lat uZU -amP -amP -amU +lat +lat +byO acT eAZ aDn @@ -60814,31 +56724,31 @@ oYw aDn acT acT -gkL -apv -kbf +jFz +oCy +iAJ acT -gHh -apv -pAE -apv -gjg -amP -amU +fTn +oCy +hQK +oCy +gSY +lat +byO acT -gMP -gSG -hQU -jDB +koM +qPc +bAP +eBy nKc ajO ajO ajO aks -akH -alt -amP -amk +pqf +iWF +lat +lTS acT nSO mib @@ -60896,78 +56806,78 @@ jAL jAL jAL pqj -pqj -pqj -pqj -pqj -aSF -aTw -iMb -iMb -jAL -pqj -jAL -pqj -iQq -iQq -iQq -iQq -uqb -uqb -uqb -uqb -kLM -kLM -iQq -gCx -uqb -uqb -qkI -iQq -kLM -kLM -kLM -kLM -gCx -kLM -uqb -uqb -aDM -upf -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +oQl +asz +qpc +jeo +qpc +tMC +rZt +ocN +rZt +itx +gbI +qOZ +cEj +qOZ +hKA +iKL +hKA +bXo +oLA +beD +beD +aJx +beD +aJx +beD +bZW +rZt +crF +crF +crF +aJx +beD +aJx +oLA +rZt +oLA +rZt +oLA +rZt +oLA +rZt +oLA +gKZ +byr +rZt +rZt +fDW +flN +kTd +kue puZ puZ "} (206,1,1) = {" acH -apB -maW -maW -alV -axG -bhS -amP -amP -amP -amP -amP -amU +wAb +xEn +xEn +jxU +rjF +pLD +lat +lat +lat +lat +lat +byO acT acT aDn @@ -60976,31 +56886,31 @@ cGS aDn acT acT -dWM -amP -amU +eIT +lat +byO acT -apO -amP -amP -amP -amP -amP -amU +aIJ +lat +lat +lat +lat +lat +byO nKc -bhS -mCg -pQt -mhx +pLD +iLR +hmP +bre aDn gXS ajO ajO akt -akI -alx -amP -amP +rgz +ndu +lat +lat acT nSO nSO @@ -61054,106 +56964,106 @@ puZ puZ puZ puZ -aKk +fAZ lyh rxF wcF -pqj -aOp -pqj -pqj -fQX -iMb -iMb -jAL +oQl +oQl +oQl iMb iMb -jAL -jAL -kvQ -iOu -kLM -kLM -kLM -kLM -kLM -uqb -uqb -uqb -uqb -kLM -iQq -uqb -uqb -kLM -kLM -kLM -uqb -uqb -uqb -uqb -kLM -uqb -kLM -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +cGI +asz +gha +uuN +sNX +rZt +oLA +ocN +oLA +rZt +asz +dnH +jft +ghS +asz +hKA +hKA +pxA +tmv +beD +ehp +pxA +rdq +mue +pxA +pxA +aJx +aJx +aJx +aJx +aJx +pxA +rZt +beD +beD +aJx +beD +aJx +beD +aJx +pzR +oLA +ckB +gaJ +dAt +rZt +rZt +flN +flN +kTd puZ puZ "} (207,1,1) = {" acH -apE -axG -axG -axG -axG -bhS -amP -amP -amP -amP -amP -amU -iPG -xar +jSE +rjF +rjF +rjF +rjF +pLD +lat +lat +lat +lat +lat +byO +heh +duE aDn -maW -maW +xEn +xEn aDn acT acT -bhS -eep -amU +pLD +xaY +byO acT -afp -amP -amP -amP -amP -amP -cEk +lTq +lat +lat +lat +lat +lat +lZB acT -geh -uRK -hms -bhI +wtv +fUc +nzH +huL aae gXS ajO @@ -61161,8 +57071,8 @@ ajO ajO ajO ajO -amP -amP +lat +lat gXS wje nSO @@ -61216,101 +57126,101 @@ gkv gkv puZ puZ -aKn +jAL rMb iMb jJf -pqj -pqj -cKL -cKL -fQX -iMb -fQX iMb iMb iMb jAL -jAL -kvQ -uqb -aDM -uqb -uqb -uqb -uqb -uqb -uqb -qza -kLM -hXX -kLM -cko -rLu -nMR -kLM -uqb -uqb -aDM -xvb -uqb -uqb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +iMb +cGI +asz +qpc +jeo +qpc +tMC +rZt +ocN +rZt +tMC +asz +asz +asz +asz +asz +hKA +hKA +fNE +oLA +aJx +pxA +pxA +pxA +pxA +pxA +pxA +aQK +rZt +oLA +rZt +oLA +pxA +pxA +pxA +aJx +gKZ +gKZ +gKZ +gKZ +beD +gKZ +oLA +jNu +rZt +acP +flN +pxA +flN +flN +kue puZ puZ "} (208,1,1) = {" acH acT -wWu -apv -pGf -axG -pNq -hms -hms -hms -hms -hms -bhI -axG -axG -axG -axG -axG -axG -acT -acT -cQB -amP -kDJ -acT -apW -amP -amP -amP -amP -amP -cEk +hgA +oCy +mPU +rjF +uJu +nzH +nzH +nzH +nzH +nzH +huL +rjF +rjF +rjF +rjF +rjF +rjF +acT +acT +pec +lat +fQV +acT +scT +lat +lat +lat +lat +lat +lZB acT aDn aDn @@ -61324,7 +57234,7 @@ ajO ajO ajO ajO -amn +dcI gXS nSO nSO @@ -61382,97 +57292,97 @@ aKn jAL jAL jAL -pqj -cKL -iMb -fQX -cKL -aTH +jAL iMb iMb -hJd iMb iMb -puZ -puZ -puZ -puZ -eaB -eaB -gJk -hIn -aDM -uqb -uqb -uqb -uqb -mfa -jqx -slO -nNl -nMR -uqb -aDM -kLM -kLM -xvb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +cGI +asz +asz +asz +asz +asz +aJx +aJx +aJx +aJx +aJx +rZt +rZt +asz +gOc +biM +biM +fNE +oLA +beD +rdq +pxA +rZt +iQe +aJx +qLz +nMk +oLA +rZt +oLA +rZt +fNE +ylo +pDu +aJx +flN +flN +flN +flN +flN +gKZ +oLA +ckB +sNX +dAt +flN +pxA +flN +flN +kue puZ puZ "} (209,1,1) = {" acH acT -afm -amP -amU -axG -axG -axG -tef -wJd -tef -axG -okM -axG -axG -axG -axG -axG -axG -acT -acT -oFG -hMn -lDv -acT -fFH -fjI -veo -eWn -twD -sGs -nsI +fLG +lat +byO +rjF +rjF +rjF +gtN +oit +gtN +rjF +cjF +rjF +rjF +rjF +rjF +rjF +rjF +acT +acT +ffo +fub +vrP +acT +qwO +erH +lDF +rRY +vAM +lBx +mnB acT aOu aOu @@ -61486,7 +57396,7 @@ ajO gXS ajO alR -amr +jSC acT nSO kPl @@ -61504,95 +57414,22 @@ puZ puZ puZ puZ -tOo -kng -ewb -ecj -ewb -pZV -gkv -kng -kng -kng -kng -kng -gkv -ewb -gkv -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -kng -kng -gkv -gkv -gkv -gkv -gkv -dxS -kng -puZ -puZ -jAL -jAL -jAL -jAL -pqj -jAL -iMb -aRp -lyh -rxF -wuw -aVW -fQX -iMb -cKL -puZ -puZ -puZ -puZ -slO -slO -slO -aKP -aMn -puZ -kfl -eGe -rnO -qza -mNs -slO -slO -ofl -uqb -xvb -kGW -aDM -uqb -uqb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +tOo +kng +ewb +ecj +ewb +pZV +gkv +kng +kng +kng +kng +kng +gkv +ewb +gkv +puZ puZ puZ puZ @@ -61601,27 +57438,100 @@ puZ puZ puZ puZ +puZ +kng +kng +gkv +gkv +gkv +gkv +gkv +dxS +kng +puZ +puZ +jAL +jAL +jAL +jAL +jAL +iMb +iMb +jAL +jAL +oQl +oQl +oQl +asz +asz +asz +hKA +hKA +vyO +hKA +aJx +rZt +rZt +fNE +wts +biM +biM +fNE +oLA +aJx +mue +pxA +iQe +qaF +oLA +lcV +rkn +rZt +oLA +rZt +oLA +fNE +mHU +rCH +aJx +aQm +aXc +aXI +bbG +flN +gKZ +oLA +gKZ +rZt +flN +rZt +flN +flN +flN +kue +puZ +puZ "} (210,1,1) = {" acH acT -eIH -amP -amU -axG -wWu -amP -akh -amP -akh -amP -amP -amP -amP -amP -amP -pGf -mWw +nTq +lat +byO +rjF +hgA +lat +lno +lat +lno +lat +lat +lat +lat +lat +lat +mPU +kkB acT acT acT @@ -61706,84 +57616,84 @@ puZ aLD aMv jAL +oQl +oQl +oQl +oQl jAL -iMb -cKL -iMb -rMb -iMb -fqb -jAL -iMb -cKL -iMb -puZ -puZ -puZ -puZ -puZ -slO -slO -slO -slO -puZ -lLv -cQW -rbA -uqb -mNs -xMz -slO -ofl -uqb -uqb -aDM -uqb -uqb -uqb -uqb -riV -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +asz +rGV +rZt +hKA +axa +hVs +vyO +kXR +rZt +rZt +fNE +txj +biM +biM +fNE +rZt +beD +pxA +pxA +rZt +hEE +oLA +qLz +sfM +sVe +aJx +aJx +aJx +pxA +lYG +aJx +aJx +aPe +aSJ +aXn +bah +flN +gKZ +oLA +gKZ +flN +rZt +rZt +flN +flN +kTd +kue puZ puZ "} (211,1,1) = {" acH acT -afp -amP -amU -axG -amP -wWu -aeo -xGR -ilh -apv -apv -apv -apv -pQt -pGf -amP -axG +lTq +lat +byO +rjF +lat +hgA +lSw +bel +nxO +oCy +oCy +oCy +oCy +hmP +mPU +lat +rjF aDn aOu aOu @@ -61868,84 +57778,84 @@ puZ puZ puZ jAL +oQl +oQl +oQl +oQl jAL -cKL -fQX -iMb -aSG -aTL -fQX -iMb -fQX -cKL -puZ -puZ -puZ -puZ -puZ -puZ -slO -slO -slO -puZ -puZ -mev -cQW -rbA -aDM -mOv -niL -niL -oqH -uqb -uqb -uqb -uqb -uqb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -jCE -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +asz +hWR +rZt +vyO +qCs +pPt +hKA +aJx +vIf +aJx +asz +fNE +fNE +fNE +pxA +aus +aus +pxA +pxA +iQe +qaF +oLA +pxA +pxA +pxA +beD +beD +beD +pxA +lGU +aJx +aJx +aPd +aRz +aXi +bag +flN +gKZ +oLA +gKZ +rZt +flN +flN +pxA +flN +kTd +kue puZ puZ "} (212,1,1) = {" acH acT -apW -amP -amU -axG -amP -amP -akj -amP -axd -amP -amP -amP -amP -amP -amP -amP -axG +scT +lat +byO +rjF +lat +lat +sUw +lat +skI +lat +lat +lat +lat +lat +lat +lat +rjF aDn aOu wje @@ -62032,82 +57942,82 @@ puZ puZ puZ puZ -cKL -fQX -iMb -iMb -iMb -cKL -iMb -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -uqb -uqb -uqb -kLM -uqb -uqb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -hFl -jLx -iWS -jCE -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +oQl +asz +bTK +rZt +hKA +fHM +rZt +hKA +aJx +rZt +beD +beD +beD +beD +beD +beD +beD +jPm +beD +beD +dgF +hEE +aJx +pxA +pxA +pxA +aJx +aJx +aJx +pxA +hQO +jyV +aJx +flN +wAP +flN +dJS +flN +gKZ +oLA +gKZ +rZt +rZt +wBf +pxA +kTd +kue +flN puZ puZ "} (213,1,1) = {" acH acT -fze -amP -amU -axG -amP -bhS -aeo -akh -aeo -amP -amP -amP -amP -amP -amU +wua +lat +byO +rjF +lat +pLD +lSw +lno +lSw +lat +lat +lat +lat +lat +byO gXS -axG +rjF mKf wje wje @@ -62195,57 +58105,57 @@ puZ puZ puZ puZ -cKL -fQX -cKL -cKL -iMb -fQX -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -snN -uqb -uqb -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -oaP -jCE -jCE -jCE -jCE -acO -puZ -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +oQl +oQl +asz +asz +rZt +hKA +rZt +rZt +hKA +aJx +xEB +beD +aJx +rZt +rZt +jKI +rZt +rZt +aJx +beD +beD +beD +beD +beD +kRq +pxA +bPl +xSZ +oLA +gKZ +pxA +hRz +kVe +aJx +gKZ +gKZ +kkg +gKZ +beD +gKZ +oLA +gKZ +rZt +flN +flN +flN +kTd +kTd puZ puZ puZ @@ -62253,22 +58163,22 @@ puZ (214,1,1) = {" acH acT -afR -amP -amU -mfe -amP -bhS -akh -aoA -akh -amP -amP -amP -amP +tRj +lat +byO +uxQ +lat +pLD +lno +qln +lno +lat +lat +lat +lat gXS -amU -amP +byO +lat gXS fjs aah @@ -62359,55 +58269,55 @@ puZ puZ puZ puZ -fQX -iMb -fQX -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -aDM -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -hFl -jCE -jCE -acM -jCE -jCE -puZ -puZ -puZ -puZ -puZ +oQl +oQl +oQl +asz +uOq +rZt +hKA +rZt +fHM +hKA +aJx +rZt +beD +aJx +rZt +rZt +aJx +rZt +rZt +aJx +beD +beD +beD +beD +beD +dgK +pxA +gly +gKZ +oLA +gKZ +pxA +pxA +pxA +pxA +aJx +beD +xTW +beD +aJx +pzR +oLA +pzR +rZt +twi +flN +flN +kue +flN puZ puZ puZ @@ -62415,23 +58325,23 @@ puZ (215,1,1) = {" acH acT -afT -amP -amU -axG -amP -amP -aeo -akh -aeo -amP -amP -amP -amP -amP -amP -amP -axG +wCl +lat +byO +rjF +lat +lat +lSw +lno +lSw +lat +lat +lat +lat +lat +lat +lat +rjF fjs nSO kPl @@ -62494,54 +58404,13 @@ puZ puZ puZ puZ -mRo -mRo -abj -abm -abr -hbo -hbo -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +mRo +mRo +abj +abm +abr +hbo +hbo puZ puZ puZ @@ -62560,15 +58429,56 @@ puZ puZ puZ puZ -hFl -jCE -jCE -jCE puZ puZ puZ puZ puZ +asz +tvs +rZt +hKA +qNK +hrb +hKA +aJx +rZt +beD +yfM +fyJ +xtE +beD +xtE +fyJ +yfM +gIJ +cAa +cAa +umu +beD +pxA +pxA +bPl +gKZ +oLA +pzR +wkY +wkY +wkY +pzR +wkY +wkY +wkY +wkY +pzR +pzR +oLA +gKZ +rZt +twi +kue +kTd +flN puZ puZ puZ @@ -62577,23 +58487,23 @@ puZ (216,1,1) = {" acH acT -aga -amP -amU -axG -amP -pNq -amP -hms -hms -hms -hms -hms -cnk -amP -bhI +kVO +lat +byO +rjF +lat +uJu +lat +nzH +nzH +nzH +nzH +nzH +sii +lat +huL gXS -fHQ +aGa fjs aah nSO @@ -62686,50 +58596,50 @@ puZ puZ puZ puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -hFl -hFl -puZ -puZ -puZ -puZ -puZ +asz +dKy +rZt +vyO +kts +wAM +vyO +asz +pxA +pxA +fyJ +pUV +vhc +beD +vfx +wkY +fyJ +hqp +cyJ +iqv +hqp +beD +emU +pxA +pxA +pzR +rZt +tMC +tMC +tMC +tMC +rZt +tMC +tMC +tMC +tMC +rZt +tMC +rZt +gKZ +rZt +pxA +kTd +kTd puZ puZ puZ @@ -62739,22 +58649,22 @@ puZ (217,1,1) = {" acH acT -agb -amP -amU -axG -pNq -amP -amP -aoi -aop -amP -amP -amP -amP -amP -amP -bhI +sgI +lat +byO +rjF +uJu +lat +lat +oXd +cqO +lat +lat +lat +lat +lat +lat +huL gXS mKf nSO @@ -62848,48 +58758,48 @@ puZ puZ puZ puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +asz +asz +asz +hKA +vyO +hKA +hKA +asz +pxA +pxA +yfM +kFC +eLu +beD +eLu +kFC +yfM +beD +beD +beD +beD +beD +emU +pxA +pxA +pzR +pzR +wkY +xAH +wkY +wkY +pzR +wkY +wkY +xAH +wkY +pzR +wkY +wkY +pzR +rZt +pxA puZ puZ puZ @@ -62901,23 +58811,23 @@ puZ (218,1,1) = {" acH acT -ajb -hMn -ant -axG -axG -axG -axG -xNe -aot -axG -axG -axG -axG -axG -xkf -axG -axG +bJw +fub +rGM +rjF +rjF +rjF +rjF +pST +irp +rjF +rjF +rjF +rjF +rjF +iRI +rjF +rjF aDn wje wje @@ -63012,46 +58922,46 @@ puZ puZ puZ puZ +asz +asz +asz +asz +asz +asz puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +pxA +dJY +bXz +wkY +beD +wkY +wkY +beD +gIJ +cAa +cAa +gIJ +dJY +pxA +pxA +pxA +pxA +pxA +tKh +bPl +gly +pxA +pxA +jWf +qKm +wTl +oLg +pxA +pxA +rZt +rZt +rZt +pxA puZ puZ puZ @@ -63067,15 +58977,15 @@ acT acT acT acT -any -any -any +bVK +bVK +bVK acT acT acT -aoP -aoP -aoP +eVR +eVR +eVR acT acT acT @@ -63181,39 +59091,39 @@ puZ puZ puZ puZ +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA puZ puZ puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ -puZ +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA +pxA puZ puZ puZ diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm index cdf4c28947..58e057efe1 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/20.destroyed_lz2-south-caves.dmm @@ -13,9 +13,7 @@ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "g" = ( /obj/item/shard{ @@ -35,9 +33,7 @@ icon_state = "large"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "o" = ( /obj/item/shard{ @@ -62,9 +58,7 @@ /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "v" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "w" = ( /obj/structure/barricade/snow, @@ -76,15 +70,11 @@ name = "ice shard" }, /obj/structure/barricade/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "z" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "B" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -108,9 +98,7 @@ /turf/open/auto_turf/ice/layer1, /area/shiva/exterior/lz2_fortress) "K" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "L" = ( /turf/closed/wall/shiva/ice, @@ -136,9 +124,7 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "T" = ( /obj/item/shard{ @@ -174,15 +160,11 @@ icon_state = "medium"; name = "ice shard" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) "Z" = ( /obj/structure/barricade/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/s_lz2) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm index 67c9c8136c..969190345f 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-south-caves/30.builtup_lz2-south-caves.dmm @@ -5,9 +5,7 @@ "b" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toy, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "c" = ( /turf/open/auto_turf/snow/layer4, @@ -17,9 +15,7 @@ /area/shiva/interior/caves/s_lz2) "e" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "f" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, @@ -29,41 +25,29 @@ /turf/closed/wall/shiva/ice, /area/shiva/interior/oob) "k" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "l" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "m" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/lz2_habs) "n" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "o" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "p" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "q" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "r" = ( /turf/open/auto_turf/ice/layer2, @@ -73,32 +57,24 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "t" = ( /obj/structure/surface/rack, /obj/item/weapon/ice_axe/red, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "v" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/sliceable/bananabread, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "w" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "x" = ( /turf/open/auto_turf/ice/layer1, @@ -118,9 +94,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "z" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -129,9 +103,7 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "B" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -140,27 +112,21 @@ id = "nlz_shutters"; name = "\improper Bio-lab Shutters" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "C" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/interior/lz2_habs) "D" = ( /turf/open/auto_turf/ice/layer0, /area/shiva/interior/caves/s_lz2) "F" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "G" = ( /obj/item/shard{ @@ -178,32 +144,24 @@ pixel_y = -5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "K" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "L" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "P" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/lz2_habs) "Q" = ( /obj/item/clothing/shoes/snow, @@ -218,10 +176,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/interior/lz2_habs) "S" = ( /obj/effect/decal/cleanable/dirt, @@ -233,18 +188,14 @@ "U" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "V" = ( /obj/structure/surface/table, /obj/structure/largecrate/random/mini/chest/b{ pixel_x = -1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "W" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -260,14 +211,10 @@ pixel_y = -5; pixel_x = 2 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) "Y" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Z" = ( /obj/structure/machinery/light/double{ @@ -275,9 +222,7 @@ pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/lz2_habs) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm index e7cccabcd6..fd089a343c 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/blocked.dmm @@ -11,9 +11,7 @@ /area/shiva/exterior/lz2_fortress) "c" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "f" = ( /obj/item/weapon/gun/boltaction, @@ -25,9 +23,7 @@ "h" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "j" = ( /obj/item/lightstick/red/spoke/planted{ @@ -35,9 +31,7 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/item/lightstick/red/spoke/planted{ @@ -48,9 +42,7 @@ /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) "m" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "p" = ( /obj/structure/foamed_metal, @@ -59,29 +51,19 @@ /area/shiva/exterior/lz2_fortress) "r" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "u" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "z" = ( /obj/structure/foamed_metal, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "A" = ( /obj/item/lightstick/red/spoke/planted{ @@ -97,15 +79,10 @@ /area/shiva/exterior/lz2_fortress) "F" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "H" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "I" = ( /obj/structure/foamed_metal, @@ -116,14 +93,10 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "N" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "O" = ( /obj/structure/machinery/landinglight/ds2/spoke{ diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm index 63cf02c171..190310c2c3 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east-gate/closed.dmm @@ -4,18 +4,14 @@ id = "eelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "c" = ( /obj/structure/machinery/door_control{ id = "eelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "d" = ( /turf/open/auto_turf/snow/layer1, @@ -34,18 +30,14 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "m" = ( /obj/structure/flora/bush/snow{ @@ -66,14 +58,10 @@ id = "eelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "u" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "v" = ( /turf/open/auto_turf/snow/layer0, @@ -83,29 +71,20 @@ id = "elz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "D" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "F" = ( /obj/structure/machinery/door_control{ id = "elz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "J" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "Q" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -121,18 +100,14 @@ id = "elz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "S" = ( /obj/structure/machinery/door_control{ id = "eelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "U" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, @@ -151,9 +126,7 @@ id = "elz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm index 4b5c38ce25..7e3e5a909e 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/full-closed.dmm @@ -6,9 +6,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "l" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "S" = ( /obj/structure/flora/bush/snow{ diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm index b1bf242568..9b8d533d9e 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/east/half-closed.dmm @@ -3,24 +3,18 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "c" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "d" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "q" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "t" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "O" = ( /turf/closed/wall/shiva/prefabricated/pink, @@ -36,9 +30,7 @@ /area/shiva/exterior/cp_lz2) "U" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm index 0e871fb3ab..0bedb79293 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/full-closed.dmm @@ -1,22 +1,24 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) +"g" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"c" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +"i" = ( +/turf/closed/wall/shiva/prefabricated/pink, /area/shiva/exterior/lz2_fortress) -"r" = ( +"D" = ( /obj/structure/largecrate/random/mini/ammo, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"s" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) -"C" = ( +"F" = ( +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"K" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"O" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, /obj/item/clothing/shoes/snow, @@ -29,107 +31,96 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) -"E" = ( -/turf/open/auto_turf/snow/layer3, -/area/shiva/exterior/cp_lz2) -"K" = ( -/turf/closed/wall/shiva/prefabricated/pink, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) -"S" = ( +"P" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"U" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"V" = ( +"S" = ( /obj/structure/flora/bush/snow{ icon_state = "snowgrassall_1" }, /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) +"V" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/cp_lz2) (1,1,1) = {" -c -c -c -c -c -c -r -K -K -s -s +F +F +F +F +F +F +D +i +i +a +a "} (2,1,1) = {" -C -C -U -U -C -C +O +O K K -K -V -s +O +O +i +i +i +S +a "} (3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a +g +g +g +g +g +g +g +g +g +g +g "} (4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a +g +g +g +g +g +g +g +g +g +g +g "} (5,1,1) = {" -S -S +P +P +g +g a a -s -s -E +V +g +g a a -s -s "} (6,1,1) = {" -S -S -a -a -E -E -s +P +P +g +g +V +V a +g +g a -s -E +V "} diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm index 42a9aee042..7c55fc2884 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/eastsouth/half-open.dmm @@ -12,10 +12,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "d" = ( /obj/structure/flora/bush/snow{ @@ -24,9 +21,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "h" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "p" = ( /turf/open/auto_turf/snow/layer3, @@ -60,9 +55,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "X" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm index 4a3306f0b2..ed8cae1804 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-closed.dmm @@ -3,9 +3,7 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "c" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "s" = ( /turf/open/auto_turf/snow/layer4, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm index aea08fa5bf..f73664ae2e 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/north/full-open.dmm @@ -6,9 +6,7 @@ /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) "w" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "C" = ( /turf/open/auto_turf/snow/layer4, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm index 6634138dc5..5df76eba28 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/blocked.dmm @@ -9,6 +9,10 @@ }, /turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) +"d" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) "e" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -32,17 +36,11 @@ /obj/effect/decal/cleanable/ash, /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"k" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"i" = ( +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"l" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +"m" = ( +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "o" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -51,72 +49,34 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"p" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) "s" = ( /turf/open/auto_turf/snow/layer0, /area/shiva/exterior/cp_lz2) -"u" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"w" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +"v" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) -"x" = ( +"y" = ( /obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; + layer = 3.1; + pixel_x = -13; pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"z" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"A" = ( -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) -"B" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "C" = ( /turf/open/auto_turf/snow/layer2, /area/shiva/exterior/cp_lz2) -"F" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"D" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"I" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -13; - pixel_y = 25 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +"E" = ( +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"G" = ( +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "J" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -125,14 +85,19 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"K" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) "L" = ( /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"N" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 +"P" = ( +/obj/item/weapon/gun/boltaction{ + pixel_x = -6 }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "Q" = ( /obj/structure/foamed_metal, @@ -145,21 +110,26 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) +"U" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"V" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) "W" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) -"X" = ( -/obj/item/weapon/gun/boltaction{ - pixel_x = -6 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +"Z" = ( +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" -z +Z a a a @@ -169,7 +139,7 @@ a W "} (2,1,1) = {" -z +Z o a a @@ -179,47 +149,47 @@ f W "} (3,1,1) = {" -z -I +Z +y Q -N -N +D +D Q -l +E e "} (4,1,1) = {" -F -X +i +P Q -B -N +K +D Q -w +G h "} (5,1,1) = {" -k -p +v +V Q -N -N +D +D L -A +d s "} (6,1,1) = {" -z -x +Z +U g -N -B +D +K Q -u +m b "} (7,1,1) = {" -z +Z R a a @@ -229,7 +199,7 @@ J C "} (8,1,1) = {" -N +D a a a diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm index b7262c596b..b8deb9e906 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/south-gate/closed.dmm @@ -1,224 +1,201 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/shiva/exterior/lz2_fortress) -"f" = ( -/obj/structure/machinery/door_control{ - id = "slz_shutters"; - pixel_x = -7 +/turf/open/auto_turf/snow/layer0, +/area/shiva/exterior/cp_lz2) +"b" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 2; + id = "sslz_shutters"; + name = "\improper Landing Zone Shutters" }, -/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"i" = ( +"g" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/cp_lz2) +"h" = ( /obj/structure/machinery/door_control{ - id = "slz_shutters"; + id = "sslz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "j" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/shiva/exterior/lz2_fortress) -"m" = ( -/obj/structure/foamed_metal, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/shiva/exterior/lz2_fortress) -"o" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) -"q" = ( -/obj/structure/machinery/door_control{ - id = "sslz_shutters"; - pixel_x = -22 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "r" = ( +/turf/open/auto_turf/snow/layer4, +/area/shiva/exterior/cp_lz2) +"t" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ density = 0; dir = 2; - id = "sslz_shutters"; + id = "slz_shutters"; name = "\improper Landing Zone Shutters" }, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) -"t" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"u" = ( +/obj/structure/machinery/door_control{ + id = "sslz_shutters"; + pixel_x = 25 }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) -"w" = ( +"v" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_x = -13; pixel_y = 25 }, +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/cp_lz2) +"w" = ( /obj/structure/machinery/door_control{ id = "slz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"A" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/shiva/exterior/lz2_fortress) +"E" = ( +/obj/structure/foamed_metal, +/turf/open/floor/shiva/north, +/area/shiva/exterior/lz2_fortress) +"H" = ( +/obj/structure/machinery/door_control{ + id = "sslz_shutters"; + pixel_x = 25 }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) -"z" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 2; +"K" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/shiva/radiator_tile, +/area/shiva/exterior/lz2_fortress) +"L" = ( +/obj/structure/machinery/door_control{ id = "slz_shutters"; - name = "\improper Landing Zone Shutters" + pixel_x = -7 }, -/turf/open/floor/plating/plating_catwalk/shiva, +/turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) -"B" = ( -/turf/open/auto_turf/snow/layer0, -/area/shiva/exterior/cp_lz2) -"F" = ( +"M" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/exterior/lz2_fortress) +"O" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_x = -13; pixel_y = 25 }, -/turf/open/auto_turf/snow/layer1, -/area/shiva/exterior/cp_lz2) -"I" = ( -/turf/open/auto_turf/snow/layer4, -/area/shiva/exterior/cp_lz2) -"J" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, -/area/shiva/exterior/lz2_fortress) -"Q" = ( /obj/structure/machinery/door_control{ - id = "sslz_shutters"; + id = "slz_shutters"; pixel_x = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) -"T" = ( -/obj/structure/machinery/door_control{ - id = "sslz_shutters"; - pixel_x = 25 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" +"X" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 25 }, -/area/shiva/exterior/lz2_fortress) -"V" = ( -/turf/open/auto_turf/snow/layer2, +/turf/open/auto_turf/snow/layer1, /area/shiva/exterior/cp_lz2) "Z" = ( /obj/structure/machinery/door_control{ id = "sslz_shutters"; - pixel_x = 25 - }, -/turf/open/floor/shiva{ - dir = 1 + pixel_x = -22 }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" j -a -a -a -a -a -a -I +l +l +l +l +l +l +r "} (2,1,1) = {" j -a -a -a -a -a -a -I +l +l +l +l +l +l +r "} (3,1,1) = {" j +O +t w -z -i -Q -r -q -F +Z +b +h +v "} (4,1,1) = {" +M +A t -l -z j j -r -l -B +b +A +a "} (5,1,1) = {" +M +A t -l -z j j -r -l -B +b +A +a "} (6,1,1) = {" j -J -z +K +t j -Z -r -T -o +u +b +H +X "} (7,1,1) = {" j -f -a -f -a -a -a -V +L +l +L +l +l +l +g "} (8,1,1) = {" -m -a -a -a -a -a -a -V +E +l +l +l +l +l +l +g "} diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm index bb1a8e5432..1c1d89a883 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/cleared.dmm @@ -19,10 +19,7 @@ /area/shiva/exterior/lz2_fortress) "h" = ( /obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "k" = ( /obj/item/stack/sheet/metal/small_stack, @@ -36,40 +33,29 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "o" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "p" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) "q" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/plating, /area/shiva/exterior/cp_lz2) "r" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "t" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "u" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/structure/machinery/landinglight/ds2/spoke{ @@ -101,14 +87,10 @@ /area/shiva/exterior/cp_lz2) "F" = ( /obj/item/stack/snow, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "J" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "L" = ( /obj/item/lightstick/red/spoke/planted{ @@ -116,21 +98,14 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "O" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "Q" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "T" = ( /turf/open/auto_turf/snow/layer0, @@ -139,19 +114,13 @@ /turf/open/floor/plating/plating_catwalk/shiva, /area/shiva/exterior/lz2_fortress) "Y" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Z" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/ash, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm index 5ecd5cf734..2cf87d9397 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast-gate/closed.dmm @@ -3,48 +3,35 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "f" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/exterior/lz2_fortress) "i" = ( /obj/structure/machinery/door_control{ id = "seelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "j" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "l" = ( /obj/structure/machinery/door_control{ id = "selz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "m" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/auto_turf/snow/layer2, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/plating, /area/shiva/exterior/cp_lz2) "o" = ( /obj/structure/machinery/door_control{ id = "selz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "q" = ( /obj/item/lightstick/red/spoke/planted{ @@ -52,49 +39,35 @@ pixel_x = 12; pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "r" = ( /obj/structure/machinery/door_control{ id = "seelz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "t" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/exterior/lz2_fortress) "v" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "w" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "z" = ( /obj/structure/machinery/door_control{ id = "selz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "B" = ( /turf/open/auto_turf/snow/layer0, @@ -112,9 +85,7 @@ id = "selz_shutters"; pixel_y = -22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "I" = ( /obj/item/lightstick/red/spoke/planted{ @@ -129,24 +100,18 @@ id = "seelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "K" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "L" = ( /obj/effect/decal/cleanable/blood{ dir = 4; icon_state = "gib6" }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "N" = ( /turf/open/auto_turf/snow/layer1, @@ -165,9 +130,7 @@ id = "seelz_shutters"; pixel_y = 22 }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "V" = ( /turf/open/auto_turf/snow/layer2, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm index 88715aa30e..a16b6fff92 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/full-closed.dmm @@ -24,23 +24,16 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "r" = ( /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "L" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "N" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm index 089aed45da..256ad00f61 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southeast/half-open.dmm @@ -18,10 +18,7 @@ /obj/item/clothing/mask/rebreather, /obj/item/tank/emergency_oxygen/engi, /obj/item/clothing/mask/rebreather, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/north, /area/shiva/exterior/lz2_fortress) "t" = ( /obj/structure/flora/bush/snow{ @@ -36,14 +33,10 @@ /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/shiva/exterior/lz2_fortress) "C" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile" - }, +/turf/open/floor/shiva/radiator_tile, /area/shiva/exterior/lz2_fortress) "Z" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm index 1434a0ba32..12e253378b 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/full-open.dmm @@ -6,18 +6,14 @@ /turf/open/auto_turf/snow/layer4, /area/shiva/exterior/cp_lz2) "s" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "z" = ( /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "B" = ( /obj/item/weapon/gun/boltaction, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "E" = ( /obj/effect/spawner/random/tool, diff --git a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm index bb2c2631ba..16f594f8f7 100644 --- a/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm +++ b/maps/map_files/Ice_Colony_v3/lz2-variations/southwest/half-open.dmm @@ -9,9 +9,7 @@ /turf/open/auto_turf/snow/layer3, /area/shiva/exterior/cp_lz2) "R" = ( -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/exterior/lz2_fortress) "Y" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm index 4528507bb0..399903bd1e 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm @@ -6,10 +6,7 @@ "cs" = ( /obj/structure/surface/rack, /obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "cO" = ( /obj/structure/surface/rack, @@ -19,10 +16,7 @@ /area/shiva/interior/colony/research_hab) "ei" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "fs" = ( /obj/structure/barricade/wooden{ @@ -36,10 +30,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "hG" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "ip" = ( /obj/structure/closet/crate/secure/weyland, @@ -59,14 +50,11 @@ dir = 4; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "jW" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; - req_access = null; req_one_access = null }, /turf/open/floor/plating, @@ -78,15 +66,10 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "lA" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "lM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, @@ -101,9 +84,7 @@ dir = 1; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "mj" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, @@ -116,16 +97,11 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "nn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "nQ" = ( /obj/structure/surface/table, @@ -141,22 +117,15 @@ /area/shiva/interior/colony/research_hab) "pr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "pC" = ( /obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "pI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "qr" = ( /obj/effect/decal/cleanable/dirt, @@ -169,10 +138,7 @@ "qH" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "rA" = ( /obj/structure/machinery/space_heater, @@ -201,10 +167,7 @@ name = "\improper Omicron Field Gear Storage" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "sS" = ( /obj/structure/closet/crate, @@ -213,17 +176,12 @@ /area/shiva/interior/colony/research_hab) "sV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles/east, /area/shiva/interior/colony/research_hab) "tr" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "tL" = ( /obj/effect/decal/cleanable/dirt, @@ -238,10 +196,7 @@ /turf/open/floor/plating, /area/shiva/interior/colony/research_hab) "uJ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "vf" = ( /obj/structure/window/framed/shiva, @@ -258,15 +213,10 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "yZ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "zg" = ( /obj/structure/filingcabinet{ @@ -277,9 +227,7 @@ pixel_x = -8; pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellowfull" - }, +/turf/open/floor/shiva/yellowfull, /area/shiva/interior/colony/research_hab) "AC" = ( /turf/open/floor/plating, @@ -291,15 +239,10 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname{ req_access_txt = "100" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "GL" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "Hk" = ( /obj/structure/closet/radiation, @@ -307,9 +250,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Hm" = ( /turf/open/auto_turf/snow/layer0, @@ -330,9 +271,7 @@ /area/shiva/interior/colony/research_hab) "JH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "JI" = ( /obj/structure/surface/rack, @@ -342,9 +281,7 @@ /area/shiva/interior/colony/research_hab) "JO" = ( /obj/structure/machinery/light/double, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "KS" = ( /turf/open/floor/shiva, @@ -352,9 +289,7 @@ "Lg" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Lk" = ( /obj/structure/surface/rack, @@ -378,10 +313,7 @@ /area/shiva/interior/colony/research_hab) "Ov" = ( /obj/structure/machinery/space_heater, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "OW" = ( /obj/structure/surface/rack, @@ -390,9 +322,7 @@ dir = 8; pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Pf" = ( /obj/structure/machinery/door_control/brbutton{ @@ -425,9 +355,7 @@ dir = 4; pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Rd" = ( /obj/structure/surface/table/reinforced/prison, @@ -442,9 +370,7 @@ }, /obj/effect/spawner/random/attachment, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Vp" = ( /obj/structure/surface/table, @@ -453,9 +379,7 @@ pixel_y = 2 }, /obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Vv" = ( /turf/open/auto_turf/ice/layer1, @@ -467,21 +391,15 @@ /obj/item/explosive/grenade/custom/cleaner, /obj/item/explosive/grenade/custom/cleaner, /obj/item/storage/pill_bottle/dexalin/skillless, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "Xo" = ( -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "XI" = ( /obj/structure/closet/radiation, /obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull, /area/shiva/interior/colony/research_hab) "Yz" = ( /obj/effect/decal/warning_stripes{ @@ -504,9 +422,7 @@ "YZ" = ( /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/30.labs-elevator_alternate.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm similarity index 75% rename from maps/map_files/Ice_Colony_v3/sprinkles/30.labs-elevator_alternate.dmm rename to maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm index f75a526b4f..499218ac03 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/30.labs-elevator_alternate.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/30.labs-elevator_alternate.dmm @@ -5,9 +5,7 @@ id = "garage_ice_labs"; name = "\improper Garage Shutters" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "b" = ( /obj/structure/curtain/black, @@ -15,18 +13,13 @@ /area/shiva/interior/colony/research_hab) "c" = ( /obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "e" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "f" = ( /obj/effect/decal/warning_stripes{ @@ -36,37 +29,25 @@ dir = 4; pixel_x = 6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "g" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "h" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) "k" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "l" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "s" = ( /turf/open/floor/plating/plating_catwalk/shiva, @@ -75,10 +56,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "u" = ( /obj/structure/machinery/door_control{ @@ -96,19 +74,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "B" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "E" = ( /obj/effect/decal/warning_stripes{ @@ -118,16 +90,11 @@ dir = 8; pixel_x = -6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/east, /area/shiva/interior/colony/research_hab) "F" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "I" = ( /turf/closed/wall/shiva/prefabricated/orange, @@ -135,18 +102,13 @@ "L" = ( /obj/structure/prop/dam/truck, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "Q" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "S" = ( /obj/effect/decal/cleanable/dirt, @@ -155,28 +117,20 @@ "T" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/colony/research_hab) "U" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/north, /area/shiva/interior/colony/research_hab) "W" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purplefull/west, /area/shiva/interior/colony/research_hab) "X" = ( /obj/effect/decal/cleanable/dirt, @@ -185,9 +139,7 @@ /area/shiva/interior/colony/research_hab) "Z" = ( /obj/structure/prop/dam/crane, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/shiva/interior/colony/research_hab) (1,1,1) = {" diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/35.south-spidercave_cleared.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm similarity index 98% rename from maps/map_files/Ice_Colony_v3/sprinkles/35.south-spidercave_cleared.dmm rename to maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm index 5ae1484c79..6f9f55d946 100644 --- a/maps/map_files/Ice_Colony_v3/sprinkles/35.south-spidercave_cleared.dmm +++ b/maps/map_files/Ice_Colony_v3/sprinkles/unused/35.south-spidercave_cleared.dmm @@ -15,9 +15,7 @@ /area/shiva/interior/caves/left_spiders) "bP" = ( /obj/structure/prop/static_tank/fuel, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "cf" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -181,24 +179,18 @@ /obj/item/weapon/ice_axe/red{ pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/shiva/interior/caves/left_spiders) "xG" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "yu" = ( /turf/closed/wall/shiva/prefabricated/pink, /area/shiva/interior/caves/left_spiders) "yS" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "Am" = ( /obj/effect/spider/cocoon, @@ -211,9 +203,7 @@ /area/shiva/interior/caves/left_spiders) "Ar" = ( /obj/structure/prop/static_tank, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/shiva/interior/caves/left_spiders) "AW" = ( /obj/structure/barricade/handrail/wire{ diff --git a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm new file mode 100644 index 0000000000..8a8de2a0f4 --- /dev/null +++ b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm @@ -0,0 +1,2066 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"aq" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"aH" = ( +/obj/item/tool/pen/blue{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"ba" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"bi" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"bI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ce" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/colony/s_admin) +"ch" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 20 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"cv" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"cL" = ( +/obj/item/prop/colony/folded_bedroll, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"cO" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) +"cS" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/shiva/interior/bar) +"cY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/frame/table/reinforced, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"dg" = ( +/obj/structure/barricade/metal{ + dir = 1; + health = 210 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"do" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"dv" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"dF" = ( +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"eO" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"eZ" = ( +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"ff" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"fj" = ( +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"fx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"fM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "south_panicroom" + }, +/turf/open/floor/shiva, +/area/shiva/interior/colony/s_admin) +"fR" = ( +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"fT" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"gf" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"gh" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"gk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, +/area/shiva/interior/colony/s_admin) +"gn" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 7 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"gB" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/rifle/m16, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"gL" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"gO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"gR" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"hN" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) +"iF" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"iS" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"iZ" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"js" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"jE" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"jK" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_1" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"jL" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"jP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/soft/sec/corp{ + pixel_y = 10 + }, +/obj/item/tool/stamp/hos, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ky" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 16 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"kB" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"kP" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"kT" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lb" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"lq" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"lP" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"lQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"mC" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"mI" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"ne" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/cp_bar) +"ng" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"nh" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ns" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/rifle/ar10, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"ob" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/ale{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/ale, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"of" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "north_panicroom" + }, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ov" = ( +/obj/item/trash/buritto, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"oH" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"oT" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"oY" = ( +/obj/structure/closet/crate/secure/weyland, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"pz" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"pC" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"pG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"pQ" = ( +/turf/open/auto_turf/snow/layer1, +/area/shiva/exterior/junkyard) +"pS" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"pV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg2, +/area/shiva/interior/colony/s_admin) +"qT" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"qU" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"rM" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"rQ" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"sq" = ( +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"sy" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"sZ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"ti" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating/platingdmg3, +/area/shiva/interior/colony/s_admin) +"tk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"tl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"tu" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"tD" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 + }, +/obj/effect/landmark/corpsespawner/chef, +/obj/structure/bed/bedroll, +/obj/item/bedsheet/ce, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"tG" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"tW" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"tY" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"ug" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"uh" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"ul" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"uA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"uE" = ( +/obj/structure/machinery/door_control{ + id = "north_panicroom"; + pixel_y = 30 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"uJ" = ( +/obj/item/stack/rods, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"uM" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"uP" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"uR" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"vn" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"vq" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"vs" = ( +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/s_admin) +"vL" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"wH" = ( +/turf/open/floor/plating/platingdmg3, +/area/shiva/interior/colony/s_admin) +"wM" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"wO" = ( +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "large" + }, +/obj/item/shard{ + icon_state = "large" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"wW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/shiva/interior/colony/s_admin) +"wX" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"wY" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"xa" = ( +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"xg" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"xD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"xZ" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"yd" = ( +/obj/item/weapon/gun/rifle/ar10, +/obj/item/ammo_magazine/rifle/ar10, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"ye" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"yi" = ( +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"yo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"yq" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"yz" = ( +/obj/structure/flora/bush/snow{ + icon_state = "snowgrassall_3" + }, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"yQ" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"yS" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/weapon/gun/boltaction, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"zc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"zi" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"zp" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"zu" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"zw" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"zA" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Ad" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Av" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"AC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"AY" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"AZ" = ( +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/s_admin) +"Bg" = ( +/obj/structure/machinery/light_construct{ + dir = 1 + }, +/obj/item/light_bulb/tube/prison, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Bq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Bv" = ( +/obj/structure/machinery/door_control{ + id = "south_panicroom"; + pixel_x = 30 + }, +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"BD" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/bar) +"BQ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"BU" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Cc" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/shiva/interior/colony/s_admin) +"Cd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Cu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Cx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"CZ" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Dg" = ( +/obj/effect/decal/cleanable/vomit, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Dl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Dx" = ( +/obj/structure/machinery/light/double, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"DB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"DU" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"DW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"DY" = ( +/obj/item/trash/burger, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"EX" = ( +/obj/structure/machinery/light/double{ + dir = 1; + pixel_y = 9 + }, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Fa" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/platingdmg2, +/area/shiva/interior/colony/s_admin) +"Fc" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/ar10, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Ff" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/s_admin) +"Fg" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"Fn" = ( +/turf/open/floor/shiva/radiator_tile, +/area/shiva/interior/bar) +"Fp" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Fx" = ( +/obj/structure/surface/table, +/obj/structure/prop/ice_colony/hula_girl, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"FH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"FK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"FY" = ( +/turf/template_noop, +/area/template_noop) +"GC" = ( +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"GJ" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"GQ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibhead" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"He" = ( +/obj/item/stool, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Hf" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Hp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) +"Hx" = ( +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"HA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Ik" = ( +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard) +"Iy" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"IB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"IQ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Jp" = ( +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Jv" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Jx" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"JF" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"JQ" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/guncabinet/wy, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"Kb" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/botany) +"Ko" = ( +/obj/structure/bed/chair, +/obj/item/ammo_casing, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Kp" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "large" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"KO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"KR" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Ld" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"Lh" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Lk" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/snow/layer3, +/area/shiva/exterior/junkyard/cp_bar) +"Lr" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "White" + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Lu" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"LE" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"LF" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"LU" = ( +/turf/open/floor/shiva/snow_mat, +/area/shiva/interior/colony/botany) +"Mi" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"MG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Panic Room Shutters"; + id = "south_panicroom" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"ML" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/platingdmg3, +/area/shiva/interior/colony/s_admin) +"MR" = ( +/obj/structure/safe, +/obj/item/spacecash/c1000{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c500, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"Nq" = ( +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"Nt" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/colony/s_admin) +"Nu" = ( +/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"NC" = ( +/obj/item/lightstick/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"On" = ( +/obj/item/stack/rods, +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"ON" = ( +/obj/item/lightstick/red/variant/planted, +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"OV" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Pb" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Py" = ( +/obj/item/trash/kepler, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"PG" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/shiva/interior/colony/botany) +"PI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/tool/stamp, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"PV" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Qh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"QS" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard) +"Rs" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/paper_bin{ + pixel_y = 7 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Ru" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Ry" = ( +/obj/item/tool/mop{ + pixel_x = -10 + }, +/turf/open/floor/shiva/green, +/area/shiva/interior/colony/botany) +"RD" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"RH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"RP" = ( +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"RQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"RS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Se" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Sl" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Sq" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/green/southeast, +/area/shiva/interior/colony/botany) +"SB" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"SU" = ( +/obj/item/device/flashlight/lamp{ + pixel_y = 7 + }, +/obj/item/frame/table/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Tc" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Td" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/ammo_casing, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Tj" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Tr" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"TG" = ( +/obj/item/prop/colony/folded_bedroll, +/turf/open/floor/shiva/redfull/west, +/area/shiva/interior/colony/s_admin) +"TI" = ( +/obj/item/ammo_casing, +/turf/open/floor/shiva/multi_tiles/west, +/area/shiva/interior/colony/s_admin) +"TL" = ( +/obj/item/weapon/gun/energy/taser, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/shiva/interior/colony/s_admin) +"Ub" = ( +/obj/item/trash/kepler/flamehot, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Ue" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/ammo_casing, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"UD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Colony Administration"; + locked = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"UW" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/shiva/green/southwest, +/area/shiva/interior/colony/botany) +"Vb" = ( +/obj/item/bodybag, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Vi" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/shiva/interior/colony/s_admin) +"Vl" = ( +/obj/effect/acid_hole, +/turf/closed/wall/shiva/prefabricated, +/area/shiva/interior/colony/s_admin) +"Vy" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"VC" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"VE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Colony Security Checkpoint" + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"VX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/good_item, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"Wj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Wm" = ( +/turf/open/auto_turf/snow/layer2, +/area/shiva/exterior/junkyard/cp_bar) +"WA" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"WT" = ( +/obj/item/frame/table/wood, +/turf/open/floor/plating/platingdmg2, +/area/shiva/interior/colony/s_admin) +"Xt" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) +"Xu" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/s_admin) +"XP" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"YD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"YS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/shiva/floor3, +/area/shiva/interior/colony/s_admin) +"YT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/north, +/area/shiva/interior/colony/s_admin) +"Zi" = ( +/obj/item/weapon/gun/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/shiva/interior/bar) +"Zl" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/platingdmg1, +/area/shiva/interior/colony/s_admin) +"ZD" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/floor/shiva/bluefull, +/area/shiva/interior/colony/s_admin) + +(1,1,1) = {" +PG +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +ce +ce +ce +ce +ce +pQ +pQ +Ik +FY +FY +"} +(2,1,1) = {" +PG +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +ce +JQ +yS +Av +yd +ce +QS +NC +QS +FY +FY +"} +(3,1,1) = {" +Kb +ce +FY +FY +FY +FY +FY +FY +FY +FY +FY +ce +MR +wM +fj +rQ +iZ +ce +Ik +jK +pQ +FY +FY +"} +(4,1,1) = {" +RP +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +ce +fj +xZ +fj +dv +ce +yz +Ik +Ik +FY +FY +"} +(5,1,1) = {" +RP +GC +iS +pG +tu +ba +Cd +mC +dF +dF +qT +JF +ce +pz +TG +eZ +ce +ce +ce +ce +Ik +FY +FY +"} +(6,1,1) = {" +RP +Vl +dF +Hx +Ad +Hx +dF +CZ +Hx +Ad +zw +dF +ce +Nu +Ub +xZ +Pb +vq +pS +ce +QS +FY +FY +"} +(7,1,1) = {" +Ld +nh +rM +tk +YT +zi +xa +dF +tk +Kp +XP +qU +ce +ul +dF +dF +ov +yQ +kB +ce +Ik +FY +FY +"} +(8,1,1) = {" +RP +Vi +CZ +lQ +gO +uM +dF +dF +RH +Tr +PI +Dx +ce +uE +CZ +tl +Dl +dF +iF +ce +NC +FY +FY +"} +(9,1,1) = {" +UW +GC +mI +Hx +RS +Hx +CZ +dF +Hx +RS +Jp +dF +of +Td +RD +Rs +sq +ye +fj +ce +QS +FY +FY +"} +(10,1,1) = {" +js +zA +do +Hx +Hx +lP +dF +Lr +Hx +Hx +Hx +yq +of +Vy +Fp +Tj +Fx +tY +oY +ce +QS +FY +FY +"} +(11,1,1) = {" +Nq +tW +dg +uh +lq +Hx +dF +dF +Hx +Hx +Hx +CZ +of +ns +PV +He +Wj +dF +gf +ce +QS +FY +FY +"} +(12,1,1) = {" +oH +GC +Bg +oT +Cx +Hx +dF +CZ +LF +Ad +Hx +dF +of +Fc +CZ +DY +dF +BU +ce +ce +cS +ch +Fn +"} +(13,1,1) = {" +Nq +aq +rM +tk +Bq +XP +dF +dF +tk +Bq +XP +sy +ce +YS +dF +dF +cL +bi +Mi +MG +Qh +LE +LE +"} +(14,1,1) = {" +Nq +SB +FK +RH +HA +Cu +dF +dF +cY +HA +Cu +dF +ce +yi +BU +dF +dF +Ko +gB +fM +Ue +Zi +LE +"} +(15,1,1) = {" +Sq +GC +dF +Hx +RS +Hx +CZ +dF +zw +RS +Hx +dF +ce +fj +Vb +ky +CZ +ZD +GJ +fM +fx +BQ +BQ +"} +(16,1,1) = {" +vL +GC +dF +Tc +VC +dF +Lh +dF +gR +dF +vn +Xt +ce +Se +Dg +dF +yQ +CZ +Py +fM +uA +LE +LE +"} +(17,1,1) = {" +fT +ce +GC +GC +GC +jE +GC +ce +oT +cO +cO +uh +ce +tD +RQ +uP +IQ +gL +Bv +MG +WA +LE +LE +"} +(18,1,1) = {" +Ry +GC +DU +jL +TL +fR +ob +GC +AY +vs +vs +AY +ce +GC +GC +GC +GC +ce +ce +ce +cS +BD +Fn +"} +(19,1,1) = {" +tG +GC +gn +fR +fR +Iy +jP +GC +Ru +Hp +cO +Hx +GC +VX +cv +kP +lb +GC +ai +Wm +FY +FY +FY +"} +(20,1,1) = {" +Sq +GC +Hf +ff +OV +xg +YD +GC +gh +cO +cO +Hx +FH +IB +aH +SU +xD +GC +ne +Wm +FY +FY +FY +"} +(21,1,1) = {" +zu +ce +ce +VE +ce +wO +bI +ce +EX +cO +hN +Hx +GC +pC +fj +kT +fj +GC +KO +ON +FY +FY +FY +"} +(22,1,1) = {" +Jx +On +KR +GQ +uR +Hx +Hx +On +Cx +Nt +cO +AC +ce +GC +GC +AZ +GC +ce +Fg +Wm +FY +FY +FY +"} +(23,1,1) = {" +PG +UD +Lu +wX +TI +wX +ug +UD +eO +wW +vs +Hx +GC +Ff +wH +AZ +WT +GC +Lk +Wm +FY +FY +FY +"} +(24,1,1) = {" +LU +Hx +eO +wX +DB +wX +wX +Hx +sZ +vs +vs +zw +Zl +ML +AZ +ti +wH +pV +ne +Wm +FY +FY +FY +"} +(25,1,1) = {" +PG +nh +zc +zw +Hx +Hx +Hx +nh +DW +Hx +Hx +uJ +gk +ng +wH +Cc +Fa +GC +ne +ON +FY +FY +FY +"} +(26,1,1) = {" +PG +GC +Hx +Hx +Jv +Hx +AY +GC +yo +Hx +Jv +zp +GC +Sl +Xu +wH +AZ +GC +wY +Wm +FY +FY +FY +"} +(27,1,1) = {" +PG +GC +GC +GC +GC +GC +GC +GC +GC +GC +GC +ce +ce +ce +ce +GC +GC +ce +ne +Wm +FY +FY +FY +"} diff --git a/maps/map_files/Kutjevo/Kutjevo.dmm b/maps/map_files/Kutjevo/Kutjevo.dmm index 42a46a0d9e..23ab6fde60 100644 --- a/maps/map_files/Kutjevo/Kutjevo.dmm +++ b/maps/map_files/Kutjevo/Kutjevo.dmm @@ -37,6 +37,10 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"acj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "acn" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" @@ -53,6 +57,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"acF" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) "acJ" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/weapon/gun/rifle/m16, @@ -68,12 +76,13 @@ /obj/item/storage/belt/marine, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"acN" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/kutjevo/interior/oob) +"adj" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"adt" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_pad) "adD" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/lz_dunes) @@ -116,6 +125,19 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"aiN" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) "akH" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/multi_tiles, @@ -151,6 +173,21 @@ }, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) +"amw" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "amL" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -183,22 +220,6 @@ /obj/item/stack/sandbags/large_stack, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"anF" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -30 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/locks) -"aog" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_dunes) "aoh" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -208,11 +229,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"aor" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 5 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "aoJ" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -226,11 +242,16 @@ /obj/structure/bed/chair, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"apD" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 +"apu" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"apA" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "aqC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/tiles, @@ -251,28 +272,14 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"arh" = ( -/obj/item/prop/alien/hugger, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) -"arr" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) +"aqY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "arA" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"arG" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "arM" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -295,6 +302,10 @@ /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"asb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "ast" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer0, @@ -303,6 +314,10 @@ /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"asR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "asT" = ( /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/kutjevo/multi_tiles, @@ -317,20 +332,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"atz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"atC" = ( -/obj/item/stack/rods, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) "atQ" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/kutjevo/colors/orange, @@ -370,12 +371,14 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"awJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"aws" = ( +/obj/item/weapon/wirerod, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"awx" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "axK" = ( /obj/item/trash/cigbutt/bcigbutt, /obj/structure/stairs/perspective/kutjevo{ @@ -384,6 +387,10 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) +"axL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "axN" = ( /obj/structure/bed/chair{ dir = 8 @@ -400,93 +407,47 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/construction) -"aze" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, -/area/kutjevo/interior/construction) -"azo" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/nosmoking_1{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) -"azI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/colony_South/power2) -"azO" = ( -/turf/open/desert/desert_shore/desert_shore1{ +"azm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/filtrationside/north, +/area/kutjevo/interior/power) +"azP" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/area/kutjevo/exterior/lz_river) -"aAe" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "aAg" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"aCo" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 +"aBb" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/area/kutjevo/interior/power/comms) +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) +"aBc" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/handcard/aceofspades, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "aCD" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) +"aDA" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) +"aEy" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "aEU" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"aEZ" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/kutjevo/interior/construction) -"aFc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "aFf" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/colors/green, @@ -517,15 +478,12 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east) -"aHg" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/interior/oob) "aHl" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"aHB" = ( +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "aHC" = ( /obj/structure/machinery/light{ dir = 4 @@ -535,6 +493,9 @@ "aHW" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/power) +"aIl" = ( +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "aIu" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/auto_turf/sand/layer1, @@ -542,14 +503,16 @@ "aIw" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/med/operating) -"aIy" = ( -/obj/structure/largecrate/black_market/confiscated_equipment, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) "aIF" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) +"aIO" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "aJy" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -557,6 +520,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"aJQ" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/scrubland) "aJU" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" @@ -592,15 +558,6 @@ }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) -"aNj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "aNn" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/power/comms) @@ -617,17 +574,27 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"aPl" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/kutjevo/colors/orange/edge{ +"aPe" = ( +/obj/structure/platform/kutjevo{ dir = 4 }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "aPA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"aQd" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"aQg" = ( +/obj/item/weapon/gun/rifle/mar40, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aQw" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -639,11 +606,6 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"aRu" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/exterior/lz_dunes) "aRS" = ( /obj/structure/bed{ can_buckle = 0; @@ -655,10 +617,26 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"aRY" = ( +/obj/structure/flora/grass/tallgrass/desert, +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"aSq" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "aSu" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"aTm" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aUF" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/Northwest_Colony) @@ -672,54 +650,40 @@ /obj/structure/largecrate/supply/medicine/medkits, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"aWt" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) -"aWR" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' +"aXJ" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 }, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "aXV" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) +"aYf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "aYr" = ( /obj/item/stack/rods, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"baC" = ( -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall3" - }, -/area/kutjevo/exterior/complex_border/med_park) -"baL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"aYH" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_0" }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) +"aZV" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) +"bap" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/foremans_office) "bbc" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, @@ -728,42 +692,26 @@ "bbW" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/foremans_office) -"bcb" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"bcl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany) -"bcG" = ( -/obj/structure/platform/kutjevo{ +"bce" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/kutjevo/interior/construction) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"bcr" = ( +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) "bcO" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"bdd" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 +"bcV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "bde" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -783,11 +731,15 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"bex" = ( -/turf/open/floor/kutjevo/multi_tiles{ +"beN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/structure/machinery/light{ dir = 4 }, -/area/kutjevo/interior/complex/med/auto_doc) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "beR" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -802,6 +754,9 @@ "bfg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/power/comms) +"bfj" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "bhg" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -829,24 +784,32 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"biZ" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "bja" = ( /obj/structure/machinery/colony_floodlight_switch, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power) -"bjc" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) "bjj" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"bjJ" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "bkR" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"blw" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob/dev_room) "blY" = ( /obj/structure/largecrate/random/secure, /obj/structure/platform/kutjevo/smooth{ @@ -861,39 +824,32 @@ /obj/item/stack/sheet/metal/med_small_stack, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"bmZ" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"bne" = ( -/obj/structure/prop/dam/crane{ - icon_state = "tractor"; - name = "tractor" - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ +"bmn" = ( +/obj/structure/platform/kutjevo{ dir = 1 }, -/area/kutjevo/interior/power/comms) +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/colony_north) "bng" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) +"bnn" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 + }, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"bnr" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "bny" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"bnF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) "bnK" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -904,17 +860,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"bnQ" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/colony_north) -"boa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/power) "boR" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) @@ -947,10 +892,6 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"bsq" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/colony_central) "bsw" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -964,50 +905,38 @@ /obj/item/device/flash, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"btc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 9 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"btI" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/complex/botany/east_tech) -"buo" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +"btR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"bvg" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"bwx" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/inner_corner, -/area/kutjevo/interior/foremans_office) -"bux" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"bxF" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/lz_dunes) +"bxG" = ( +/obj/structure/platform/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/complex/med/auto_doc) -"bvT" = ( /obj/structure/blocker/invisible_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"bwt" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) -"bwT" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) +"bxX" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = -5; + pixel_y = 6 }, +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/north, /area/kutjevo/exterior/runoff_river) "byl" = ( /obj/structure/blocker/invisible_wall, @@ -1028,12 +957,10 @@ "byH" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_S_East) -"byO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"bzc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob/dev_room) "bzj" = ( /obj/structure/machinery/space_heater, /turf/open/floor/plating/kutjevo, @@ -1044,28 +971,29 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"bzY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, +"bzD" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_pad) +"bAp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"bAE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, /area/kutjevo/interior/complex/med/operating) -"bAe" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) -"bBf" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +"bBL" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) +"bBO" = ( +/obj/structure/prop/brazier/frame/full/campfire, +/obj/item/tool/match/paper{ + pixel_x = -11; + pixel_y = -2 }, -/area/kutjevo/exterior/runoff_river) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "bBS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ pixel_x = -6; @@ -1073,12 +1001,24 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"bDg" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"bCg" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) +"bCJ" = ( +/obj/structure/closet, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) +"bCT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "bDl" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -1099,12 +1039,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"bDW" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/interior/oob/dev_room) "bDX" = ( /obj/structure/machinery/sensortower, /turf/open/floor/kutjevo/grey/plate, @@ -1113,13 +1047,6 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/locks) -"bEn" = ( -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) "bEp" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/scrubland) @@ -1142,35 +1069,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"bFz" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/interior/oob) "bGg" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_3" }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"bGi" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) "bGv" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"bGw" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/interior/oob/dev_room) "bGD" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_dunes) @@ -1191,12 +1099,38 @@ "bHA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) +"bIa" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/item/clothing/glasses/thermal/syndi{ + icon_state = "kutjevo_goggles" + }, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med/operating) +"bIy" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz2_south) +"bIG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"bIT" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/surgery, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "bIW" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"bIX" = ( +/obj/item/stack/rods, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "bJc" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -1207,11 +1141,11 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"bJf" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) +"bKe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "bKi" = ( /obj/structure/pipes/unary/freezer{ icon_state = "freezer_1" @@ -1232,14 +1166,10 @@ "bKH" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"bKJ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_rec) +"bKN" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "bKO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer2, @@ -1254,30 +1184,14 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"bMu" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "bNG" = ( /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"bNN" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) +"bNP" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "bOc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, @@ -1287,57 +1201,45 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"bPt" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"bPx" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/spring) "bPV" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"bQg" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/foremans_office) -"bQk" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "bQy" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"bQY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"bRj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"bRE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/gm/river/desert/deep/toxic, /area/kutjevo/interior/oob) -"bRa" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"bRl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/foremans_office) "bRF" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer0, @@ -1348,6 +1250,12 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"bSd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "bSV" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -1371,14 +1279,23 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) -"bTt" = ( -/obj/structure/bed/chair{ - dir = 4 +"bTm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 14 }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 3 }, -/area/kutjevo/interior/construction) +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"bTD" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibarm" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "bTN" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null; @@ -1390,13 +1307,6 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"bVB" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/landmark/corpsespawner/security/marshal, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) "bVK" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 9; @@ -1414,12 +1324,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"bWA" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_3" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) "bXh" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -1433,60 +1337,48 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) +"bXN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) +"bZS" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"bZU" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) +"bZX" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) "caj" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"cal" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) "cbg" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/operating) -"cbv" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "cbz" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) -"cce" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_construction, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, +"cbH" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) -"ccs" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"ccu" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 8 - }, +"cbP" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, /area/kutjevo/interior/complex/med) -"cdE" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/construction) +"cdG" = ( +/turf/open/gm/dirtgrassborder2/north, +/area/kutjevo/exterior/complex_border/med_park) "cek" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -1543,6 +1435,10 @@ /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"cil" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/interior/oob/dev_room) "ciD" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -1553,41 +1449,36 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"cjC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 +"ciS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/botany/east_tech) +"cja" = ( +/obj/structure/platform/kutjevo{ + dir = 8 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/construction) "cjO" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med) -"ckC" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/kutjevo/exterior/scrubland) -"ckF" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/interior/oob/dev_room) -"clo" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/kutjevo/exterior/runoff_dunes) -"cmG" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 +"cle" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/kutjevo/interior/complex/med/triage) +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"clm" = ( +/obj/structure/window/framed/kutjevo/reinforced, +/turf/open/floor/plating/kutjevo, +/area/kutjevo/interior/complex/botany/east_tech) +"cmW" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "cnb" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/kutjevo/colors, @@ -1598,16 +1489,6 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"coF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "coL" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/kutjevo/colors/cyan, @@ -1640,14 +1521,13 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"cpj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"cqB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/area/kutjevo/interior/complex/botany) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "cqX" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -1670,20 +1550,10 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"cso" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "csE" = ( /obj/structure/girder, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"ctA" = ( -/obj/structure/largecrate, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) "ctD" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_30" @@ -1712,25 +1582,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) -"ctV" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"cum" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/oob) -"cun" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) "cuF" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -1743,19 +1594,12 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"cvm" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) -"cvF" = ( -/obj/structure/reagent_dispensers/watertank{ - desc = "A watertank. The label has been written over with the sequence 2---" - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 +"cvn" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 }, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "cvV" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/multi_tiles, @@ -1787,38 +1631,31 @@ "cyc" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central/mine_elevator) -"cyA" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_particle_accelerator, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "cyM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) +"cAi" = ( +/obj/structure/prop/dam/crane{ + icon_state = "tractor"; + name = "tractor" + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "cAt" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"cAF" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_dunes) "cAK" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"cBd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/construction) -"cBi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) +"cBa" = ( +/obj/item/tool/hatchet, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "cBq" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_2"; @@ -1842,6 +1679,15 @@ "cCa" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_north) +"cCo" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"cCJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "cDf" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) @@ -1852,6 +1698,10 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"cDm" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "cDx" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/stonyfields) @@ -1885,23 +1735,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany) -"cFJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany/east_tech) -"cFT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "cFY" = ( /obj/item/stool, /obj/item/frame/firstaid_arm_assembly, @@ -1932,6 +1765,19 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"cHW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) +"cIm" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_dunes) +"cIO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/interior/oob) "cIZ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -1953,11 +1799,13 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"cKi" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 +"cJz" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light{ + dir = 4 }, -/area/kutjevo/exterior/runoff_dunes) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "cKH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -1978,11 +1826,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"cLQ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/kutjevo/exterior/lz_dunes) "cMv" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -2014,18 +1857,11 @@ "cOt" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"cOx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/complex/med) -"cPn" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +"cOP" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/scrubland) +"cOU" = ( +/turf/open/mars_cave/mars_cave_10, /area/kutjevo/exterior/lz_dunes) "cPt" = ( /obj/item/stack/sheet/wood, @@ -2045,16 +1881,10 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"cQt" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) +"cQg" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "cQH" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -2102,18 +1932,6 @@ "cTz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"cTG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "cTW" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2126,31 +1944,45 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"cUe" = ( +/obj/structure/machinery/photocopier, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med) "cUh" = ( /obj/structure/bed/sofa/vert/white/bot, /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med/auto_doc) -"cUl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "cUm" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"cUB" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/scrubland) "cUI" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"cVh" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "cVD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"cVE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "cWc" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -2164,6 +1996,9 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"cWA" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_river) "cWL" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib2" @@ -2183,17 +2018,17 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"cXA" = ( -/obj/structure/flora/bush/ausbushes/ppflowers{ - icon_state = "lavendergrass_1" - }, -/mob/living/simple_animal/cat/Runtime{ - name = "Garry" +"cXv" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 10 }, -/turf/open/gm/dirtgrassborder2{ - dir = 8 +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/kutjevo/exterior/complex_border/med_park) +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med) "cXL" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) @@ -2206,10 +2041,9 @@ /obj/item/clipboard, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"cYb" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +"cYN" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "dax" = ( /obj/structure/sink{ pixel_y = 32 @@ -2237,11 +2071,26 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"dbw" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"dca" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "dcb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"dcl" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_river) "dcA" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2249,13 +2098,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"ddi" = ( -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' +"dcQ" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"ddb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/kutjevo/interior/oob) +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ddk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -2283,15 +2135,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"deo" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/kutjevo/interior/complex/med) "dew" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz2_north) @@ -2304,21 +2147,14 @@ "dfa" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/lz_river) +"dfc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) "dfz" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"dfY" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/kutjevo/exterior/lz_river) -"dga" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "dgs" = ( /obj/item/toy/crayon/rainbow{ desc = "I bet you main observer."; @@ -2326,17 +2162,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"dgw" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) "dgx" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"dgV" = ( -/obj/structure/closet, -/obj/item/clothing/head/helmet/marine/veteran/kutjevo, -/obj/item/clothing/glasses/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge{ +"dgI" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/kutjevo/interior/complex/Northwest_Dorms) +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "dhm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -2344,12 +2182,6 @@ "dht" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/Northwest_Colony) -"dhL" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "dib" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) @@ -2372,33 +2204,37 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) +"djy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"djD" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_dunes) +"djO" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/interior/colony_north) "dkE" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) "dkW" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"dls" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) "dlT" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"dml" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "dnl" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"dnq" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) "dnF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, @@ -2424,51 +2260,44 @@ "dob" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_river) -"dox" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/kutjevo/exterior/runoff_river) -"dpt" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"dpH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"dqc" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/spring) "dql" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"dqp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/kutjevo/exterior/runoff_bridge) "dqK" = ( /obj/structure/flora/grass/desert/lightgrass_1, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"dsi" = ( -/turf/open/floor/coagulation{ - icon_state = "7,0" +"drk" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) +"drP" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/kutjevo/exterior/scrubland) -"dsp" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/structure/bed/chair{ + dir = 4 }, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) +"dsM" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_east"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical East Lock Override"; + pixel_y = 22; + range = 15 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "dsN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -2483,23 +2312,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"dte" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) -"dtM" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) +"dsV" = ( +/obj/item/clothing/mask/cigarette/pipe/cobpipe, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) +"dtU" = ( +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "duu" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ name = "\improper South Power Shutters" @@ -2510,16 +2330,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"dux" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "duP" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"dvH" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_pad) "dvL" = ( /obj/structure/window/reinforced, /obj/structure/surface/table/reinforced/prison, @@ -2530,25 +2347,13 @@ /obj/structure/inflatable/popped, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"dwa" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "dwf" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_bridge) -"dwx" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) -"dwP" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "dxc" = ( /obj/structure/machinery/light{ dir = 8 @@ -2558,34 +2363,13 @@ "dxF" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/oob) -"dxL" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) -"dyz" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/kutjevo/exterior/runoff_river) -"dyU" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 - }, -/area/kutjevo/exterior/lz_river) -"dyW" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) +"dyn" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"dyS" = ( +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "dzd" = ( /obj/item/storage/briefcase, /turf/open/auto_turf/sand/layer0, @@ -2607,29 +2391,30 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"dzH" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/lz_dunes) "dzN" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"dAB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"dAm" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"dAz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 }, -/area/kutjevo/interior/power) +/obj/item/clipboard, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "dAH" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_bridge) -"dAM" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) +"dBg" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "dBO" = ( /obj/structure/ladder, /obj/structure/blocker/invisible_wall, @@ -2662,32 +2447,25 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/exterior/runoff_bridge) -"dDm" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_dunes) "dDq" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"dDL" = ( -/turf/open/gm/river/desert/shallow, -/area/kutjevo/exterior/Northwest_Colony) "dEI" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"dET" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "dFc" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) -"dFk" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/kutjevo/exterior/scrubland) "dFx" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand/layer1, @@ -2698,19 +2476,24 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"dGp" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "dGx" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) -"dGy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +"dHb" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/area/kutjevo/exterior/runoff_river) +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"dHD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "dHF" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand/layer0, @@ -2722,12 +2505,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"dIc" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/kutjevo/exterior/runoff_river) "dIo" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 @@ -2757,19 +2534,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"dKu" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) -"dKz" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/kutjevo/interior/colony_north) "dKO" = ( /obj/structure/bed/chair{ dir = 4 @@ -2792,16 +2556,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"dLZ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/kutjevo/interior/power/comms) -"dNc" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) "dNg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -2817,27 +2571,19 @@ /obj/structure/barricade/deployable, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) -"dOU" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/desert_shore1, -/area/kutjevo/exterior/Northwest_Colony) "dQq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"dQs" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/locks) "dQv" = ( /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"dQx" = ( +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "dQD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -2845,11 +2591,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"dRj" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) "dRX" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -2861,6 +2602,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"dSI" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/interior/oob/dev_room) "dSQ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/auto_turf/sand/layer0, @@ -2870,34 +2615,23 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"dTn" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) -"dTp" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/exterior/lz_river) -"dTJ" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_river) "dTM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) -"dUy" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +"dUw" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "dUE" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer0, @@ -2916,6 +2650,18 @@ /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/botany) +"dVY" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "dWB" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -2957,15 +2703,6 @@ /obj/structure/girder/displaced, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"dYa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "dYB" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) @@ -2988,24 +2725,29 @@ "ebB" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ebP" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 +"ebC" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 9; + icon_state = "p_stair_full" }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ +/obj/structure/machinery/camera/autoname{ dir = 1 }, -/area/kutjevo/interior/oob) +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) +"ebF" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "ebZ" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"ecg" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/lz_dunes) "ecA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 @@ -3016,13 +2758,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"ecO" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/light, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "ecV" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -3033,25 +2768,12 @@ /obj/structure/platform/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) -"eem" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "eeP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 }, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"efF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, -/area/kutjevo/interior/construction) "efS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -3063,58 +2785,12 @@ /obj/item/spacecash/c200, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"egf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) -"egu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/operating) "egx" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"egL" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "egZ" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/botany) @@ -3126,6 +2802,12 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"eit" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "eiz" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /obj/structure/machinery/light{ @@ -3133,12 +2815,16 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) -"eiX" = ( -/obj/structure/flora/grass/tallgrass/desert/corner{ +"eiK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) +"ejF" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ejP" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/multi_tiles, @@ -3147,48 +2833,29 @@ /obj/structure/surface/table/gamblingtable, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"ejZ" = ( +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "ekh" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, /area/kutjevo/interior/complex/med/operating) -"ekw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ekJ" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"ekV" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "ele" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"elo" = ( -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/kutjevo/exterior/scrubland) +"elE" = ( +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/exterior/runoff_river) "emi" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -3196,22 +2863,12 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"emn" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) -"emU" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"emJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "eoc" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -3227,19 +2884,19 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"eot" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/lz_river) "eoA" = ( /obj/structure/machinery/chem_dispenser/medbay, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) -"epb" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.05 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +"eoY" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cleaningprog_botany" }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "epd" = ( /obj/item/reagent_container/food/drinks/cans/thirteenloko, /turf/open/auto_turf/sand/layer1, @@ -3250,11 +2907,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"epG" = ( -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall2" - }, -/area/kutjevo/exterior/complex_border/med_park) "epQ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan, @@ -3262,29 +2914,28 @@ "epR" = ( /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"epV" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "eqJ" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"eqQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +"eqN" = ( +/turf/open/gm/river/desert/shallow_corner, +/area/kutjevo/exterior/spring) +"eqP" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"eqS" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "era" = ( /obj/structure/closet/crate/freezer/rations, /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"erg" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) "erv" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -3305,10 +2956,19 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"ese" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) "esi" = ( /obj/item/weapon/gun/rifle/mar40, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) +"esU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "etm" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, @@ -3326,15 +2986,6 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) -"etY" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) "eud" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, @@ -3342,28 +2993,27 @@ "euj" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"eur" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"euI" = ( -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"euk" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/botany/east_tech) "evr" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) "evZ" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) +"ewc" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/spring) +"ewC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist/kutjevo/burst, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/operating) "ewL" = ( /obj/structure/barricade/handrail/kutjevo{ layer = 3.1 @@ -3375,16 +3025,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"exj" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = 5; - pixel_y = 12 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_bridge) "exD" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/bed{ @@ -3408,37 +3048,46 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"eyl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "eyy" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) -"eyU" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 1 - }, -/area/kutjevo/exterior/lz_river) -"ezg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small{ - pixel_y = 7 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 +"eyS" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 }, -/area/kutjevo/interior/construction) +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "ezm" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"ezJ" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "ezX" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) +"eAw" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) +"eAE" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_river) +"eAF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "eAL" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/tiles, @@ -3461,6 +3110,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) +"eCv" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, +/area/kutjevo/interior/foremans_office) "eCB" = ( /obj/structure/machinery/vending/cigarette/colony, /obj/structure/machinery/light{ @@ -3472,12 +3124,6 @@ /obj/structure/machinery/cryo_cell, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/cells) -"eDQ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/interior/oob/dev_room) "eDS" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -3493,11 +3139,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eFy" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) "eFX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -3509,53 +3150,55 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eGR" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 5 - }, -/area/kutjevo/interior/construction) "eHX" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz1_south) -"eIL" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 +"eIg" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Dunes Landing Zone" }, -/area/kutjevo/interior/complex/med/auto_doc) +/turf/open/floor/plating/kutjevo, +/area/shuttle/drop1/kutjevo) +"eIP" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "eIZ" = ( /obj/item/stack/rods, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eJg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany) -"eJi" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) "eJo" = ( /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"eKr" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555" +"eKL" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 }, -/area/kutjevo/interior/oob) +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) +"eLf" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 8; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "eLO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"eLQ" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "eLT" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -3582,32 +3225,10 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"eNK" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) -"eOc" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 9 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"eOt" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"eNp" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "eOy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, @@ -3619,12 +3240,19 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"eOK" = ( +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "eOM" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibarm" }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"ePd" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "ePn" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "disinfection"; @@ -3637,15 +3265,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"ePq" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/kutjevo/interior/colony_north) "ePx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) @@ -3662,18 +3281,6 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"eQK" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/interior/oob/dev_room) -"eQQ" = ( -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) "eQW" = ( /obj/structure/bed/chair{ dir = 4; @@ -3700,14 +3307,19 @@ /obj/structure/machinery/body_scanconsole, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"eSq" = ( -/obj/structure/machinery/light{ - dir = 8 +"eSa" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 +/obj/structure/platform/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/complex/med/locks) +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) +"eSs" = ( +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "eSH" = ( /turf/open/floor/kutjevo/colors/orange/inner_corner, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -3722,12 +3334,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) -"eTy" = ( -/obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "eTP" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -3739,34 +3345,11 @@ /obj/structure/girder, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"eUA" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/construction) -"eVv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "eVy" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"eVO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "eWP" = ( /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/floor/kutjevo/multi_tiles, @@ -3783,6 +3366,10 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) +"eZi" = ( +/obj/structure/closet/crate, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "eZw" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -3811,11 +3398,14 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) -"fbK" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/colony_central) +"fbI" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/gm/river/desert/deep/covered, +/area/kutjevo/interior/power/comms) +"fbV" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "fbZ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) @@ -3834,23 +3424,6 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"fdr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"fdF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) "fdS" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -3860,6 +3433,12 @@ "feg" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_central) +"feJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "feO" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -3867,13 +3446,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"feQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/kutjevo/drysuit, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "feR" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, @@ -3895,14 +3467,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"ffv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/defibrillator, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/auto_doc) "ffP" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -3929,12 +3493,12 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"fiq" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +"fhD" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 6 }, -/area/kutjevo/exterior/runoff_river) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "fiE" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood/xeno{ @@ -3979,17 +3543,16 @@ /obj/structure/platform/kutjevo, /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) +"flc" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) "fll" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"flP" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555" - }, -/area/kutjevo/interior/oob) +"flD" = ( +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "flW" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer2, @@ -4002,49 +3565,37 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"fmN" = ( -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) -"fmR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/construction) -"foE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) -"foI" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 +"fmC" = ( +/obj/structure/prop/wooden_cross{ + desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; + pixel_x = -6; + pixel_y = 19 }, -/obj/structure/barricade/wooden{ - dir = 4 +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 5; + pixel_y = -2 }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"foA" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) "fpj" = ( /obj/item/trash/hotdog, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"fpJ" = ( -/turf/open/floor/kutjevo/multi_tiles{ +"fpF" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo{ dir = 8 }, -/area/kutjevo/interior/complex/med/locks) +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/colony_central) "fpM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -4072,6 +3623,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) +"frb" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/colony_north) "frj" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -4082,10 +3637,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) -"frx" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "frF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 @@ -4098,6 +3649,13 @@ /obj/item/ashtray/bronze, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"fsH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "fto" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) @@ -4117,11 +3675,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"fui" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/scrubland) +"ful" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) "fuz" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) @@ -4134,11 +3691,21 @@ /obj/item/bodybag/tarp/reactive, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/power) -"fwF" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 +"fuR" = ( +/turf/open/gm/river/desert/deep, +/area/kutjevo/exterior/spring) +"fwD" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"fxi" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -32 }, -/area/kutjevo/interior/colony_central) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "fxL" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -4146,12 +3713,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"fyB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) +"fxP" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/med/cells) +"fyn" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/Northwest_Dorms) "fyD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) @@ -4161,42 +3729,40 @@ "fyT" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/complex_border/med_rec) +"fzb" = ( +/obj/structure/largecrate, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"fzO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "fAE" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"fAF" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/interior/oob) "fAT" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) +"fAY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "fBL" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"fDY" = ( -/obj/structure/platform/kutjevo/smooth/stair_plate, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) -"fEu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"fFz" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "fFH" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -4223,10 +3789,27 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"fHa" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_river) +"fHb" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/lz_river) +"fHH" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_dunes) "fHX" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"fHZ" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"fIb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "fId" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -4242,6 +3825,9 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"fJO" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_bridge) "fKf" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -4252,30 +3838,6 @@ }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"fKD" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"fKJ" = ( -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = 8 - }, -/obj/structure/machinery/light, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/kutjevo/interior/complex/med/operating) "fKL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup{ @@ -4299,32 +3861,22 @@ /obj/effect/landmark/corpsespawner/security/marshal, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"fMi" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) -"fNc" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) -"fNe" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cleaningprog" - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "fNo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) +"fOu" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) +"fON" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/med/auto_doc) "fOO" = ( /obj/structure/flora/grass/desert{ icon_state = "heavygrass_6" @@ -4338,19 +3890,19 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"fPH" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +"fQm" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 17 }, -/area/kutjevo/exterior/runoff_river) -"fQg" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 8 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 17 }, -/area/kutjevo/exterior/complex_border/med_park) +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "fQn" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -4368,18 +3920,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"fQC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/power/comms) "fQJ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 @@ -4404,37 +3944,41 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"fRZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' +"fSo" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/kutjevo/interior/oob) -"fSm" = ( -/obj/structure/sink{ +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 11 + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/roller, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/kutjevo/interior/complex/med/operating) -"fSK" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/handcard/aceofspades, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) -"fTk" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/area/kutjevo/interior/colony_South/power2) +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) +"fSq" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) +"fSP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/complex/med) "fTV" = ( /obj/structure/machinery/computer/emails{ dir = 4 @@ -4448,29 +3992,18 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"fVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "fVv" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"fVA" = ( -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) "fWl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"fWw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) "fWy" = ( /obj/structure/blocker/invisible_wall, /obj/structure/flora/bush/ausbushes/reedbush, @@ -4481,47 +4014,53 @@ /obj/structure/prop/dam/gravestone, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"fYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, +"fWZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) +"fXs" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_pad) -"fYF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) -"fYI" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 4 +"fYj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, +/turf/open/desert/desert_shore/shore_corner2/west, /area/kutjevo/exterior/runoff_river) -"fZT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 +"fYp" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"fZy" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) +"fZE" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) +"gbl" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "gbv" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/runoff_dunes) -"gby" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "gce" = ( /obj/item/device/radio, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"gci" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "gcl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/multi_tiles, @@ -4537,18 +4076,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/kutjevo/interior/oob) -"gde" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "gdX" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -4565,44 +4092,36 @@ /obj/structure/surface/table/gamblingtable, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"gfK" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/interior/oob/dev_room) +"ggp" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/exterior/lz_dunes) "ggC" = ( /obj/structure/fence, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) -"ghj" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "ghk" = ( /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"ghz" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"ghK" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "gic" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"giM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29"; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/power/comms) "giZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = 28 @@ -4615,33 +4134,36 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"gjr" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_dunes) +"gjt" = ( +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/interior/construction) "gjK" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/auto_doc) -"gkU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) "gld" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"glB" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/complex/med/cells) +"glU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "gma" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"gmA" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"gme" = ( +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "gmS" = ( /obj/structure/machinery/shower{ dir = 1; @@ -4652,28 +4174,15 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob) -"gnj" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Dunes Landing Zone" - }, -/turf/open/floor/plating/kutjevo, -/area/shuttle/drop1/kutjevo) "gnP" = ( /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) "gnY" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_dunes) -"goa" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, -/area/kutjevo/exterior/scrubland) -"goh" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/kutjevo/exterior/runoff_dunes) +"gof" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "goT" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) @@ -4683,16 +4192,31 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"gpk" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/spring) +"gqI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pizza, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "gqQ" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"grp" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"gqX" = ( +/obj/structure/bed/bedroll, +/obj/effect/landmark/corpsespawner/colonist/kutjevo, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"grv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/kutjevo/interior/power) +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "grx" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) @@ -4704,99 +4228,59 @@ /obj/item/clipboard, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"gsk" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) "gtr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"gtE" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/kutjevo/interior/power) -"gtL" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) +"gvA" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "gvO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gws" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet, -/obj/item/clothing/under/kutjevo, -/turf/open/floor/kutjevo/tan/grey_edge{ +"gwA" = ( +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/kutjevo/interior/complex/Northwest_Dorms) -"gwv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gwC" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) "gwY" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med) -"gxs" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) -"gxD" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) "gxK" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"gyx" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibarm" - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 +"gxY" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/kutjevo/exterior/runoff_bridge) +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"gyt" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/kutjevo/interior/construction) "gzb" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/Northwest_Colony) +"gzg" = ( +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/complex/med/locks) "gzv" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer1, @@ -4821,11 +4305,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"gAM" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 +"gAy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 }, -/area/kutjevo/exterior/lz_dunes) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "gBa" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand/layer0, @@ -4867,22 +4352,19 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"gCG" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_sn_full_cap" +"gCS" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/construction) "gDP" = ( /obj/item/tool/wrench, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"gEc" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/operating) "gEe" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibarm" @@ -4907,35 +4389,36 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"gEG" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gFf" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"gFo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"gFt" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "gHh" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"gHm" = ( -/obj/structure/platform/kutjevo/smooth{ +"gHI" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) +"gIp" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/runoff_river) +"gJy" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/machinery/camera/autoname, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "gJB" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -4983,17 +4466,15 @@ /obj/item/defenses/handheld/tesla_coil, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) +"gMA" = ( +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "gNx" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"gNI" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/operating) "gNZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -5014,6 +4495,16 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"gOA" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/lz_river) +"gOV" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/construction) "gPW" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -5042,20 +4533,6 @@ "gQI" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_north) -"gQZ" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/pill_bottle/tramadol/skillless, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/kutjevo/interior/complex/med/operating) "gRi" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) @@ -5065,6 +4542,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"gRv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"gRy" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"gSk" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "gSr" = ( /obj/structure/flora/grass/desert/lightgrass_8, /obj/structure/blocker/invisible_wall, @@ -5076,14 +4566,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_dunes) -"gTl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "gTy" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -5096,10 +4578,6 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power/comms) -"gTO" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/Northwest_Colony) "gUa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -5107,6 +4585,13 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) +"gUF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"gUN" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/spring) "gUQ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -5124,6 +4609,11 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/foremans_office) +"gVr" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "gVV" = ( /obj/structure/closet/secure_closet/medical2, /obj/structure/machinery/light{ @@ -5134,19 +4624,16 @@ "gWd" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_river) -"gWo" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river{ - color = "#990000" - }, -/area/kutjevo/interior/oob) "gWF" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"gWM" = ( +/obj/structure/bed/roller, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "gXF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; @@ -5160,6 +4647,10 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"gXJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "gXP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = -28 @@ -5184,6 +4675,9 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) +"gYK" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/lz_river) "gZj" = ( /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer1, @@ -5192,6 +4686,9 @@ /obj/structure/bed/chair, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"gZx" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/spring) "han" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -5226,15 +4723,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"hdF" = ( -/obj/structure/filtration/coagulation_arm{ - pixel_x = -16; - pixel_y = -16 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "hdQ" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/colors/orange, @@ -5249,20 +4737,34 @@ /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"hfu" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ +"hgJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ dir = 8 }, -/area/kutjevo/interior/complex/med/triage) -"hhu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"hgT" = ( +/obj/structure/platform/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"hhb" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"hhl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/atmospipes, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hii" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) @@ -5270,33 +4772,46 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"hjV" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"hkc" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "hkq" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"hku" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hkO" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/complex/botany) -"hkY" = ( +"hlq" = ( +/obj/structure/surface/rack, /obj/item/weapon/gun/revolver/spearhead, -/turf/open/gm/river/desert/deep/covered, -/area/kutjevo/interior/power/comms) +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "hmi" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"hmR" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 9 - }, -/area/kutjevo/interior/foremans_office) -"hnq" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +"hmk" = ( +/turf/open/gm/river, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"hnw" = ( +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/exterior/scrubland) "hnE" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -5318,16 +4833,13 @@ /obj/structure/largecrate/supply/medicine/blood, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) -"hnI" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med/operating) "hnZ" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"hoc" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/exterior/scrubland) "how" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -5349,6 +4861,26 @@ "hpB" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/exterior/construction) +"hpH" = ( +/turf/open/gm/dirtgrassborder2/wall2, +/area/kutjevo/exterior/complex_border/med_park) +"hqj" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_bridge) +"hqw" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_sn_full_cap"; + pixel_y = 16 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"hqA" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "hqN" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -5366,17 +4898,13 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) -"hrv" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) +"hri" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_dunes) +"hro" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) "hrz" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) @@ -5392,6 +4920,12 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"hsB" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power/comms) "htv" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "sedimentation" @@ -5428,23 +4962,6 @@ "hwf" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"hws" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"hwA" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med/locks) "hwO" = ( /obj/structure/machinery/light{ dir = 1 @@ -5455,6 +4972,10 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) +"hxS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/interior/oob) "hyJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4-8" @@ -5473,6 +4994,20 @@ "hzN" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/lz_pad) +"hAB" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"hBf" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"hBj" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "hBm" = ( /mob/living/simple_animal/hostile/retaliate/clown{ name = "Gonzo The Magnificent" @@ -5518,17 +5053,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"hCl" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"hCu" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/botany/east) "hDu" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/red, @@ -5558,12 +5082,6 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"hEY" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east) "hFi" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5571,6 +5089,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"hFj" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"hFG" = ( +/obj/item/prop/alien/hugger, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "hFH" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -5578,45 +5107,56 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) +"hGj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "hGB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"hGM" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/exterior/runoff_bridge) "hGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"hHi" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany) "hHo" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) -"hIp" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, +"hHs" = ( +/turf/open/floor/kutjevo/colors/orange/edge/northwest, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"hJN" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/kutjevo/multi_tiles{ +"hHM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flash, +/obj/structure/machinery/light{ dir = 1 }, -/area/kutjevo/exterior/runoff_bridge) +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"hID" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) +"hIW" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"hJd" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_pad) "hKE" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -5624,22 +5164,18 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"hLi" = ( -/obj/structure/platform/kutjevo, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "hLH" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"hMa" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_dunes) +"hMd" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_pad) "hMi" = ( /obj/structure/machinery/power/port_gen/pacman{ desc = "A portable generator for emergency backup power. A set of numbers have been crudely etched into the side. The sequence reads --2-." @@ -5650,26 +5186,21 @@ "hMu" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) -"hOm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/m94, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/construction) -"hOB" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany) +"hNI" = ( +/turf/open/mars_cave/mars_cave_7, +/area/kutjevo/exterior/lz_dunes) +"hOj" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/med) "hPf" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"hPp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "hPD" = ( /obj/item/storage/toolbox/syndicate, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -5689,15 +5220,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) +"hQE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "hQS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) -"hRm" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg3" - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"hRe" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/complex/botany) "hRV" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -5739,11 +5271,6 @@ "hUk" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_north) -"hUy" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east_tech) "hVg" = ( /obj/effect/spawner/random/tool, /turf/open/floor/kutjevo/tan, @@ -5755,15 +5282,10 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"hVQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/auto_doc) +"hWy" = ( +/obj/item/trash/barcardine, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "hWD" = ( /obj/structure/lattice, /obj/structure/surface/table/almayer, @@ -5824,21 +5346,28 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) +"hZM" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/Northwest_Dorms) "iaj" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_river) -"iax" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +"iaR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/roller, +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/operating) "ibc" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/complex_border/med_rec) +"ibl" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "ibm" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer0, @@ -5850,49 +5379,9 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"iem" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/kutjevo/interior/oob) -"iez" = ( -/obj/structure/closet/firecloset/full, -/obj/item/clothing/glasses/thermal/syndi{ - icon_state = "kutjevo_goggles" - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/complex/med/locks) -"ieA" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"ify" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/complex/med/pano) -"ifE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) -"ifT" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) +"ifh" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_pad) "ige" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -5910,68 +5399,49 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"ihp" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power/comms) +"ihW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"iim" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/lz_river) "iin" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) -"iiy" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) -"iiG" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/colony_South/power2) "iiN" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) -"ikW" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, -/area/kutjevo/interior/construction) -"imG" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 - }, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) +"iiR" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"ijO" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) +"ilS" = ( +/obj/effect/landmark/corpsespawner/colonist/kutjevo, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "inR" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"iob" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/kutjevo/interior/oob) -"ior" = ( -/obj/structure/closet, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"inV" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_dunes) "ips" = ( /obj/item/bodybag/tarp/reactive, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"ipy" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "ipz" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/kutjevo/colors/cyan, @@ -5989,15 +5459,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/triage) -"ird" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river{ - color = "#990000" - }, -/area/kutjevo/interior/oob) "irK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -6005,6 +5466,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"irT" = ( +/obj/structure/bed/bedroll, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "isV" = ( /obj/structure/surface/rack, /turf/open/floor/plating/kutjevo, @@ -6013,20 +5479,29 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"iuz" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) "iuL" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"iuM" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "ivh" = ( /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) +"ivH" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) +"ivK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/under/kutjevo, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "ivW" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red/tile, @@ -6042,11 +5517,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"iwV" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/botany) "iwW" = ( /obj/item/stool{ pixel_y = 8 @@ -6061,33 +5531,9 @@ "ixP" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_river) -"iyd" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) -"iyP" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, -/area/kutjevo/exterior/scrubland) -"izr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 8 - }, +"izF" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, /area/kutjevo/interior/colony_South/power2) -"izS" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/triage) -"iBa" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "iCh" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -6109,21 +5555,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"iCG" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river{ - color = "#990000" - }, -/area/kutjevo/interior/power) -"iCQ" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) +"iCN" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "iDz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, @@ -6151,6 +5586,9 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"iHm" = ( +/turf/open/floor/coagulation/icon2_0, +/area/kutjevo/exterior/lz_river) "iHw" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer2, @@ -6163,32 +5601,15 @@ /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"iIz" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"iIT" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/kutjevo/interior/construction) +"iIt" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/spring) "iJo" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"iJq" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_dunes) "iJx" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ @@ -6196,17 +5617,20 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) -"iKf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "0,8" +"iJM" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/foremans_office) +"iKl" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/colony_north) +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"iKv" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_river) "iKE" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/armband/hydro, @@ -6233,20 +5657,32 @@ /obj/item/ammo_magazine/rifle/mar40/extended, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"iLU" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ +"iLI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) +"iLY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ dir = 1 }, -/area/kutjevo/interior/construction) -"iMR" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) +"iMw" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_pad) +"iMy" = ( +/obj/structure/closet/radiation, +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 }, -/area/kutjevo/interior/colony_central) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) +"iNa" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "iNt" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/rollingpin, @@ -6257,14 +5693,13 @@ /obj/item/storage/box/trackimp, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"iNY" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"iOa" = ( +/turf/open/floor/plating/kutjevo/platingdmg3, +/area/kutjevo/interior/complex/botany/east_tech) +"iOf" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "iPk" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating/kutjevo, @@ -6276,6 +5711,23 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"iQf" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/triage) +"iRk" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"iRq" = ( +/obj/structure/window/framed/kutjevo/reinforced/hull, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/oob) "iSn" = ( /obj/structure/largecrate/random/secure, /obj/structure/machinery/light{ @@ -6289,11 +5741,19 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/oob) -"iSN" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 +"iSL" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany/east) +"iSO" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/botany) +"iSY" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib6" }, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "iTg" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6314,6 +5774,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"iUn" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_river) "iUD" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -6332,6 +5796,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"iVZ" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "iWa" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/colors/cyan, @@ -6363,45 +5835,57 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"iXj" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "iXz" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"iXD" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/scrubland) +"iXL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"iYj" = ( +/obj/structure/closet, +/obj/item/clothing/under/kutjevo/drysuit, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "iYo" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) -"iYO" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 5 +"iYu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/exterior/lz_pad) +"iZm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east) +"iZr" = ( +/obj/structure/surface/table/reinforced/prison{ + indestructible = 1 }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"iZi" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 +/obj/structure/machinery/door_control/brbutton/alt{ + health = null; + id = "kutjevo_medlock_we"; + idle_power_usage = 0; + name = "Medical West Lock Override"; + pixel_y = 4 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/red, +/area/kutjevo/interior/complex/med/pano) "iZu" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"iZU" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/storage/box/stompers, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/construction) "iZZ" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" @@ -6412,19 +5896,24 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"jcd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"jaZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) +"jbj" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) +"jck" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 1 }, -/area/kutjevo/interior/complex/med/auto_doc) +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/foremans_office) "jcI" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) @@ -6440,6 +5929,13 @@ "jec" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) +"jei" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "jeO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -6449,10 +5945,30 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"jfk" = ( +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "jfs" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"jft" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/colony_north) "jfH" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stairs/perspective/kutjevo{ @@ -6463,6 +5979,12 @@ "jfQ" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/stonyfields) +"jgr" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/kutjevo/colors/orange/inner_corner/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "jgv" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -6473,6 +5995,9 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"jgA" = ( +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/lz_pad) "jgF" = ( /obj/structure/machinery/light{ dir = 1 @@ -6498,30 +6023,38 @@ "jhS" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob) +"jix" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) "jiz" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"jiX" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 6 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "jjt" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"jkp" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo, -/turf/open/floor/kutjevo/multi_tiles{ +"jjI" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) +"jkG" = ( +/obj/structure/platform/kutjevo{ dir = 4 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/platform/kutjevo, +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/interior/colony_north) "jkJ" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/item/reagent_container/glass/watertank, @@ -6536,20 +6069,18 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) +"jkU" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/spring) +"jlf" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "jlK" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"jng" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "jnr" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) @@ -6561,6 +6092,13 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"jnI" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) "jnS" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -6568,36 +6106,30 @@ "jnV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/Northwest_Dorms) -"jnY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) +"joc" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "jog" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz1_south) -"joo" = ( -/obj/item/cell/high, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"jos" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) "jpl" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_3" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"jpL" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 1 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"jpR" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "jpS" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -6606,46 +6138,22 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"jqb" = ( +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "jqd" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz1_south) -"jqh" = ( -/obj/structure/surface/table/reinforced/prison{ - indestructible = 1 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - health = null; - id = "kutjevo_medlock_we"; - idle_power_usage = 0; - name = "Medical West Lock Override"; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/red, -/area/kutjevo/interior/complex/med/pano) "jqt" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/lz_dunes) -"jqy" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/turf/open/mars_cave{ - icon_state = "mars_cave_7" - }, -/area/kutjevo/exterior/scrubland) -"jrk" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/botany) +"jrh" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) +"jrp" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "jrs" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -6669,10 +6177,19 @@ /obj/item/tank/emergency_oxygen/engi, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/foremans_office) +"jrX" = ( +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/runoff_river) "jrY" = ( /obj/structure/inflatable/popped, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"jsL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) "jsS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -6683,10 +6200,13 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"jtu" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power/comms) +"jtx" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) "jtJ" = ( /obj/structure/flora/bush/desert{ icon_state = "tree_4" @@ -6701,10 +6221,6 @@ /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"juC" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) "juH" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 6; @@ -6726,12 +6242,24 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"juW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "juY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/foremans_office) +"jvf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "jvp" = ( /obj/structure/bed/chair{ dir = 4; @@ -6752,11 +6280,6 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/med/operating) -"jwx" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "jwA" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) @@ -6771,19 +6294,10 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"jxc" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"jxR" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"jxv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany/east_tech) "jxS" = ( /obj/structure/bed/chair{ dir = 8 @@ -6796,11 +6310,10 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"jyz" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) +"jys" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "jzb" = ( /obj/structure/prop/dam/truck/mining, /turf/open/asphalt/cement_sunbleached, @@ -6812,11 +6325,18 @@ "jzl" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med) -"jzm" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 +"jAj" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_central) +"jAN" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_bridge) +"jBw" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "jBJ" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -6828,23 +6348,28 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"jCD" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/triage) "jCL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"jEh" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "panelscorched" - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "jEo" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"jEw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "jEN" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -6862,6 +6387,10 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"jFr" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "jFB" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -6870,6 +6399,18 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) +"jHO" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "jIt" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -6883,6 +6424,10 @@ /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"jIP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/interior/oob) "jIR" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -6898,32 +6443,49 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_dunes) +"jJh" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "jJj" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"jJo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "jKc" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/interior/power) -"jKm" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/interior/colony_central) "jKI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South) "jKN" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) +"jMS" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/stack/sheet/metal/small_stack, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jNi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"jNB" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/exterior/scrubland) "jNS" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/kutjevo/colors/green, @@ -6934,21 +6496,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"jOx" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_dunes) -"jOA" = ( -/obj/item/prop/alien/hugger, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"jOD" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/construction) "jPb" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -6988,6 +6538,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) +"jQI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jQU" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/cyan/tile, +/area/kutjevo/interior/complex/med/cells) "jRd" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer1, @@ -6999,18 +6561,17 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"jSQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany/east) -"jUK" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"jSN" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"jTt" = ( +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/exterior/scrubland) "jUP" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -7018,14 +6579,20 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) -"jWM" = ( -/obj/structure/platform/kutjevo{ - dir = 4 +"jVi" = ( +/obj/structure/bed/sofa/vert/white/top{ + pixel_y = 17 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"jVj" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/kutjevo/interior/colony_north) +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "jXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -7035,27 +6602,35 @@ "jXq" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/lz_river) +"jXz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "jYS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"jZT" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/triage) +"jYY" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/med/auto_doc) +"jZH" = ( +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "kah" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"kbg" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) +"kbl" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "kbL" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/sheet/wood, @@ -7065,12 +6640,13 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"kcd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 +"kcj" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 4 }, -/area/kutjevo/interior/construction) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "kct" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib4" @@ -7086,11 +6662,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"kdY" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/power) "kec" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -7098,15 +6669,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"keM" = ( -/obj/item/stack/rods, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) "keX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -7130,39 +6692,40 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"kgm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "kgt" = ( /obj/structure/platform/kutjevo, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_north) -"khI" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/kutjevo/grey/plate, -/area/kutjevo/interior/complex/botany/east_tech) -"khW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"kgz" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz2_north) +"kgC" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/exterior/runoff_river) +"khw" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southwest, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "kie" = ( /obj/structure/blocker/invisible_wall, /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/interior/oob/dev_room) +"kif" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "kit" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"kiE" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany) "kiN" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -7173,65 +6736,40 @@ "kjk" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/colony_central) -"kjo" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) "kkB" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"kkC" = ( -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "7,0" - }, -/area/kutjevo/interior/colony_north) "kkH" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/operating) -"kls" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) -"klE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"kkT" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/colony_central) "klN" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"klP" = ( -/obj/structure/machinery/photocopier, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 - }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "kma" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"kmm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 +"kmk" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/construction) +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) +"kmv" = ( +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) +"kmQ" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/spring) "kne" = ( /obj/structure/flora/grass/desert/lightgrass_1, /turf/open/auto_turf/sand/layer1, @@ -7250,6 +6788,11 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"kos" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "koX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -7267,6 +6810,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) +"kpC" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_dunes) "kpK" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -7288,12 +6834,19 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"kqE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 6 +"kqS" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/area/kutjevo/interior/complex/Northwest_Dorms) +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "kqY" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -7337,12 +6890,6 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"kuL" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, -/area/kutjevo/interior/construction) "kuM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -7365,12 +6912,6 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"kvu" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/med) "kvI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -7384,9 +6925,19 @@ "kvU" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/lz_dunes) +"kvY" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "kwy" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/colony_South) +"kwG" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 14 + }, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "kwJ" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/colors/cyan/tile, @@ -7395,6 +6946,13 @@ /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"kwN" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/spring) "kxt" = ( /obj/structure/barricade/metal{ dir = 4 @@ -7424,25 +6982,6 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"kAb" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany) -"kAf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - dir = 8; - network = null - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "kAr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -7453,25 +6992,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) -"kBb" = ( -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_west"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical West Lock Override"; - pixel_y = 22; - range = 15 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "kBz" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"kBN" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/med/pano) +"kCf" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/lz_river) +"kCJ" = ( +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_dunes) "kDl" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/survivor_spawner, @@ -7494,16 +7027,29 @@ }, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/exterior/scrubland) -"kDD" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/vending/snack/packaged{ - anchored = 0 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"kDQ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/construction) "kDS" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"kEn" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power) +"kEt" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) +"kEB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/clothing/glasses/thermal/syndi{ + icon_state = "kutjevo_goggles"; + pixel_y = -2 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "kEG" = ( /obj/structure/sign/poster{ pixel_y = -32 @@ -7511,6 +7057,15 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, /area/kutjevo/interior/construction) +"kFq" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) +"kFx" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "kFF" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -7531,35 +7086,49 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"kGM" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ +"kGA" = ( +/obj/structure/platform/kutjevo{ dir = 1 }, -/area/kutjevo/interior/complex/botany/east_tech) +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/colony_central) +"kGC" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "kGU" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/med/triage) +"kHl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "kHm" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"kHO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"kIc" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "kIn" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) +"kIv" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/construction) +"kIX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) +"kJa" = ( +/obj/structure/prop/dam/large_boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "kKb" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -7579,6 +7148,9 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) +"kKD" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_river) "kKE" = ( /obj/structure/barricade/handrail/kutjevo{ dir = 8 @@ -7588,27 +7160,31 @@ /obj/item/explosive/plastic, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kMx" = ( -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, -/area/kutjevo/interior/power/comms) +"kLg" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"kMn" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/lz_river) "kMC" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central) -"kMP" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ +"kMJ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/area/kutjevo/interior/power/comms) -"kNq" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"kMK" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "trappedmonke_andclown" }, -/area/kutjevo/exterior/lz_river) +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/oob) "kNx" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7636,23 +7212,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"kOX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "kPa" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) -"kPw" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "trappedmonke" - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/oob) -"kPA" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med/locks) "kPM" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -7672,30 +7241,26 @@ /obj/structure/girder, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"kQS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/colony_South) "kQU" = ( /obj/structure/platform/kutjevo{ dir = 8 }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) +"kRk" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "kRM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"kSo" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/interior/oob/dev_room) -"kSy" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "kSB" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7712,6 +7277,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"kUd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/defibrillator, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/auto_doc) "kUX" = ( /obj/structure/machinery/light, /obj/item/stack/sheet/wood, @@ -7724,10 +7295,6 @@ /obj/item/tool/wirecutters, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"kVA" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) "kVH" = ( /obj/structure/flora/grass/desert/lightgrass_11, /turf/open/auto_turf/sand/layer1, @@ -7736,6 +7303,11 @@ /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) +"kVY" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "kXQ" = ( /obj/structure/window{ dir = 1 @@ -7746,27 +7318,6 @@ /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"kYb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/atmospipes, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"kYs" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med) -"kYO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "kZm" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/river/desert/shallow, @@ -7792,12 +7343,6 @@ /obj/structure/prop/dam/torii, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"lac" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "laf" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 @@ -7807,10 +7352,22 @@ "lah" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"lav" = ( +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/scrubland) +"lax" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_river) "laI" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) +"laM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "lbu" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -7818,6 +7375,10 @@ /obj/item/device/defibrillator, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"lbw" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_north) "lbF" = ( /obj/structure/bed, /turf/open/floor/kutjevo/grey/plate, @@ -7830,12 +7391,6 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"lcv" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "lcS" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/med/pano) @@ -7854,16 +7409,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"lfb" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/locks) "lfm" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/tan, @@ -7873,6 +7418,17 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) +"lfX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) +"lgh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/applecakeslice, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "lgJ" = ( /obj/item/reagent_container/glass/bucket, /turf/open/floor/kutjevo/colors/green, @@ -7895,29 +7451,43 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"lhu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/item/device/radio, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"lgU" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"lgY" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_bridge) +"lhF" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lhY" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"lkp" = ( +"lij" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"liz" = ( +/obj/structure/platform/kutjevo{ dir = 4 }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/colony_north) +"ljt" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "lkC" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med/auto_doc) @@ -7925,12 +7495,6 @@ /obj/effect/landmark/corpsespawner/colonist/kutjevo, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/power/comms) -"lkY" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "NW Colony Landing Zone" - }, -/turf/open/floor/plating/kutjevo, -/area/shuttle/drop2/kutjevo) "llg" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer0, @@ -7945,46 +7509,18 @@ "lly" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"lmK" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/interior/oob/dev_room) -"lmM" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1; - pixel_y = 10 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "loe" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/oob) -"lok" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib4" +"loD" = ( +/obj/item/device/radio{ + desc = "A regular shortwave radio, this one has experienced minor water damage but is still functional."; + name = "damp shortwave radio" }, -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) -"lov" = ( -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) +/turf/open/desert/desert_shore/shore_corner2, +/area/kutjevo/exterior/spring) "loI" = ( /obj/structure/surface/rack, /obj/item/stack/cable_coil/green, @@ -8003,19 +7539,12 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/med_rec) -"lpF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) "lpJ" = ( /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) +"lqu" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lqG" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -8024,11 +7553,6 @@ /obj/structure/platform/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power/comms) -"lrx" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/lz_dunes) "lry" = ( /obj/structure/machinery/light{ dir = 8 @@ -8041,45 +7565,50 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/oob) +"lrU" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "lsg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lsy" = ( -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/power/comms) +"lsL" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "ltv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) +"ltA" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "ltU" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/operating) -"luO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "lvb" = ( /obj/structure/surface/table/almayer, /obj/item/card/id/pizza, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) +"lvC" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"lvD" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/runoff_river) "lvR" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/exterior/Northwest_Colony) -"lwL" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 4 - }, -/area/kutjevo/exterior/complex_border/med_park) "lxc" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) @@ -8089,10 +7618,13 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"lxN" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +"lyj" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "lyD" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -8110,19 +7642,25 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"lyJ" = ( -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/kutjevo/exterior/scrubland) -"lzb" = ( +"lyW" = ( +/obj/structure/platform/kutjevo, /obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"lzD" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_river) +"lAk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/area/kutjevo/interior/power/comms) +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_bridge) "lAn" = ( /obj/structure/machinery/light{ dir = 4 @@ -8142,6 +7680,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"lBN" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/spring) "lBP" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -8175,6 +7716,16 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"lEu" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/gm/dirtgrassborder2/wall3, +/area/kutjevo/exterior/complex_border/med_park) +"lEw" = ( +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "lEA" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_central) @@ -8185,25 +7736,43 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"lFq" = ( -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" +"lEN" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) +"lFe" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/kutjevo/multi_tiles/east, /area/kutjevo/interior/colony_South/power2) "lFt" = ( /obj/structure/blocker/invisible_wall, /obj/item/device/radio, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"lFH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"lGc" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/med) "lGj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"lGy" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "lHs" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -8223,27 +7792,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"lIM" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/foremans_office) -"lKR" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, -/area/kutjevo/interior/construction) -"lKV" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) -"lLn" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/botany) +"lKt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "lLo" = ( /obj/structure/monorail, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -8263,17 +7815,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"lLH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) +"lLZ" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_dunes) "lMr" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -8294,16 +7838,23 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"lMy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "lMS" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"lNl" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +"lNi" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"lNt" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/exterior/lz_pad) "lNG" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -8311,6 +7862,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"lNH" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/power) "lOr" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/tan/alt_inner_edge, @@ -8345,6 +7904,19 @@ }, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) +"lSA" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/west, +/area/kutjevo/interior/complex/med) +"lSD" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) +"lSM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "lSX" = ( /obj/structure/machinery/light{ dir = 1 @@ -8358,6 +7930,9 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"lTN" = ( +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "lUg" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -8369,24 +7944,10 @@ /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/interior/oob) -"lVo" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) "lVt" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"lVO" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/kutjevo/exterior/runoff_dunes) "lVS" = ( /obj/structure/monorail, /obj/structure/machinery/door/poddoor/shutters/almayer, @@ -8399,18 +7960,10 @@ "lVZ" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/scrubland) -"lXe" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/interior/oob) +"lWx" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "lXN" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz1_south) @@ -8418,12 +7971,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"lYI" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_corner{ +"lYQ" = ( +/obj/structure/platform/kutjevo{ dir = 1 }, -/area/kutjevo/interior/oob) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "lYW" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors, @@ -8435,36 +7989,15 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"lZT" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/sand/layer2, -/area/kutjevo/interior/colony_north) "lZZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/construction) -"mao" = ( -/obj/structure/prop/dam/large_boulder/boulder1, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) -"mar" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) "maE" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/lz_dunes) -"mbh" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/scrubland) "mbp" = ( /obj/structure/barricade/wooden{ dir = 4; @@ -8473,6 +8006,13 @@ /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"mbB" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "mbR" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand/layer1, @@ -8495,24 +8035,16 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"mdr" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) "mdu" = ( /obj/structure/machinery/light/small, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"mdw" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 29; - start_charge = 0 +"mes" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "meF" = ( /obj/structure/blocker/invisible_wall, /obj/structure/filtration/machine_96x96/indestructible{ @@ -8532,26 +8064,25 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mfk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +"mfe" = ( +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mfD" = ( /obj/structure/prop/dam/truck/mining, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"mfY" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "0,0" - }, -/area/kutjevo/interior/colony_north) +"mfT" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/lz_river) "mgn" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/telecomm/lz2_south) +"mgO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mgP" = ( /obj/structure/machinery/light{ dir = 4 @@ -8573,11 +8104,19 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"mhJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" +"mhq" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform/kutjevo{ + dir = 1 }, -/area/kutjevo/exterior/lz_dunes) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med/triage) +"mhy" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "mhN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -8596,28 +8135,17 @@ "mjg" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/exterior/telecomm/lz2_north) -"mjq" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/kutjevo/exterior/runoff_river) +"mjm" = ( +/obj/item/storage/briefcase, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/auto_doc) "mjN" = ( /obj/item/stack/barbed_wire, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/Northwest_Colony) -"mjP" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/kutjevo/interior/oob) -"mjW" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) +"mko" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/colony_South) "mkJ" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, @@ -8629,24 +8157,29 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"mkU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ +"mlb" = ( +/obj/structure/barricade/handrail/kutjevo{ dir = 4 }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"mmy" = ( +/obj/structure/flora/bush/ausbushes/ppflowers{ + icon_state = "lavendergrass_1" + }, +/mob/living/simple_animal/cat/Runtime{ + name = "Garry" + }, +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) "mmH" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mnk" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/lz_dunes) "mnn" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -8654,44 +8187,68 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_park) +"mnI" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med) "mnT" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) "mob" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/colony_central/mine_elevator) +"moD" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/pill_bottle/tramadol/skillless, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "moL" = ( /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"moT" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/auto_doc) +"moW" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "mpe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"mpl" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"mpE" = ( +/obj/structure/bed/chair{ + pixel_y = 8 }, -/area/kutjevo/interior/complex/med/locks) +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "mpW" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/exterior/complex_border/med_rec) -"mqu" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/lz_river) "mqG" = ( /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) -"mrI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 +"msA" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/spring) +"msD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 }, -/area/kutjevo/interior/construction) +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) "msK" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) @@ -8699,18 +8256,6 @@ /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"mti" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/foremans_office) -"mtp" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) "mtt" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/microwave{ @@ -8738,6 +8283,9 @@ }, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/operating) +"muD" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_river) "muG" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -8745,6 +8293,13 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"muQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "mvt" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer0, @@ -8768,6 +8323,13 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"mwr" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "mwV" = ( /obj/structure/machinery/disposal, /obj/structure/window/reinforced{ @@ -8776,6 +8338,10 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med/operating) +"mxx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer2, +/area/kutjevo/interior/colony_South) "mxB" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/interior/oob) @@ -8783,14 +8349,9 @@ /obj/item/frame/rack, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"mzn" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, +"mzo" = ( /obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, +/turf/open/floor/coagulation/icon2_0, /area/kutjevo/interior/oob) "mzS" = ( /obj/structure/surface/table/reinforced/prison, @@ -8819,15 +8380,12 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"mBu" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "mBD" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/stonyfields) -"mBG" = ( -/obj/item/weapon/wirerod, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "mBP" = ( /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, @@ -8840,12 +8398,6 @@ /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"mCo" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/kutjevo/interior/oob) "mCI" = ( /obj/structure/prop/dam/crane{ icon_state = "tractor"; @@ -8858,6 +8410,10 @@ /obj/effect/decal/cleanable/blood/gibs/down, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"mCP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "mDa" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer1, @@ -8884,17 +8440,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) -"mDz" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 - }, -/area/kutjevo/interior/construction) "mDA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -8934,17 +8479,18 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"mFd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 +"mEE" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/runoff_river) +"mEX" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" }, -/area/kutjevo/interior/colony_central) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "mFf" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -8955,6 +8501,9 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"mGA" = ( +/turf/open/floor/coagulation/icon0_0, +/area/kutjevo/exterior/scrubland) "mGE" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/floor/kutjevo/colors/green, @@ -8975,16 +8524,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/triage) -"mGW" = ( -/obj/structure/closet/radiation, -/obj/effect/spawner/random/toolbox{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/med/locks) "mHo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -8994,12 +8533,6 @@ "mHJ" = ( /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"mIg" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "plinkingspot" - }, -/turf/closed/wall/kutjevo/rock/border, -/area/kutjevo/exterior/scrubland) "mIq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony, @@ -9016,11 +8549,6 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"mIA" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) "mIB" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8; @@ -9029,10 +8557,6 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/auto_doc) -"mIT" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "mJq" = ( /obj/structure/machinery/computer/cameras/telescreen/entertainment{ icon_state = "ai_bsod"; @@ -9047,6 +8571,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"mKs" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/botany/east_tech) "mLe" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/tan/grey_edge, @@ -9058,21 +8585,10 @@ "mLw" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"mLK" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) -"mLY" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"mMd" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/lz_river) "mMf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/complex/botany/east_tech) @@ -9082,12 +8598,10 @@ "mNa" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/telecomm/lz2_north) -"mNl" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#990000" - }, -/area/kutjevo/interior/oob) +"mNz" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "mNM" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/runoff_bridge) @@ -9106,15 +8620,6 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"mPt" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med/triage) "mPL" = ( /obj/structure/flora/grass/desert/lightgrass_10, /turf/open/auto_turf/sand/layer1, @@ -9126,11 +8631,12 @@ "mQl" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/lz_river) -"mRP" = ( -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/construction) +"mQB" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_river) +"mRH" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/lz_pad) "mSd" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -9145,11 +8651,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"mSv" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/auto_doc) "mSG" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -9164,15 +8665,29 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) +"mTQ" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/colony_north) +"mTR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "mTV" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"mVr" = ( -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 +"mUv" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 }, -/area/kutjevo/exterior/lz_river) +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) +"mVe" = ( +/turf/open/gm/river/desert/shallow_edge, +/area/kutjevo/exterior/spring) "mVC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -9182,31 +8697,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"mWv" = ( -/obj/structure/closet/crate, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) -"mWA" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "mWO" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) +"mXK" = ( +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/exterior/lz_pad) "mXZ" = ( /obj/structure/platform/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"mYj" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/kutjevo/exterior/scrubland) "mYt" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/colors, @@ -9219,15 +8722,17 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) +"mYN" = ( +/obj/structure/bed/chair, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) +"mZi" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_dunes) "mZt" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"mZE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "nah" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -9237,6 +8742,9 @@ "naK" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/oob) +"naT" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/lz_dunes) "nbp" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, @@ -9260,49 +8768,38 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"nct" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/exterior/runoff_river) +"ndj" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/foremans_office) "ndw" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) -"ndF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"ndC" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/power/comms) +"neH" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/spring) "neI" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"neV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 28 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) "ngp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"ngK" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 +"ngW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/gm/river/desert/shallow_edge/southeast, +/area/kutjevo/exterior/runoff_bridge) "ngX" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -9319,19 +8816,19 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"nie" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/complex/botany/east) "niC" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/desert/desert_shore/shore_corner2, /area/kutjevo/exterior/runoff_river) -"niP" = ( -/obj/structure/tunnel{ - id = "hole3" +"niI" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -30 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/botany_medical_cave) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "niT" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 @@ -9352,42 +8849,16 @@ /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"nkZ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder2{ - dir = 8 - }, -/area/kutjevo/exterior/complex_border/med_park) -"nlc" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/oob) "nlv" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) -"nlA" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/exterior/construction) +"nlR" = ( +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/exterior/scrubland) "nlT" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"nmw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "nmG" = ( /obj/structure/closet/secure_closet/security, /turf/open/floor/kutjevo/colors/orange/edge, @@ -9399,17 +8870,13 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"nmT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "nnf" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"nni" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "nnx" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 6; @@ -9421,13 +8888,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"npx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "npB" = ( /obj/structure/machinery/light, /turf/closed/wall/kutjevo/colony/reinforced, @@ -9459,15 +8919,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"nsC" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/complex/botany/east) -"nsF" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/med/locks) +"nsk" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/operating) "nsU" = ( /obj/structure/machinery/light{ dir = 8 @@ -9491,6 +8946,9 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"nuf" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nux" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -9523,29 +8981,44 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) +"nwO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"nxb" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "nxf" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"nyp" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) +"nxA" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "nyv" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"nyC" = ( +/obj/structure/filtration/coagulation_arm, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"nyL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nyY" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -9571,14 +9044,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"nzQ" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/kutjevo/exterior/scrubland) "nAc" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/med_rec) +"nAj" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/foremans_office) "nAo" = ( /obj/effect/decal/kutjevo_decals/catwalk, /turf/open/floor/greengrid, @@ -9595,6 +9066,10 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) +"nAQ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_6, +/area/kutjevo/interior/oob) "nCt" = ( /obj/structure/machinery/computer/card{ dir = 4 @@ -9605,39 +9080,16 @@ "nCM" = ( /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) -"nDn" = ( -/obj/structure/bed, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 5 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"nDF" = ( +"nCS" = ( /obj/item/stack/sheet/wood, -/turf/open/floor/kutjevo/tan/multi_tiles{ +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"nDv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/kutjevo/interior/power/comms) +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "nDH" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -9666,16 +9118,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"nEE" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ +"nEy" = ( +/obj/structure/platform/kutjevo{ dir = 8 }, -/area/kutjevo/interior/colony_South/power2) +/obj/structure/machinery/colony_floodlight, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/complex/med) "nFM" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -9687,14 +9136,6 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"nFY" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 29; - start_charge = 0 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz1_south) "nGg" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/kutjevo/colors/orange, @@ -9726,21 +9167,15 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central/mine_elevator) +"nHz" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_dunes) "nHO" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_central) -"nHU" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river{ - color = "#990000" - }, -/area/kutjevo/interior/oob) "nHV" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -9758,6 +9193,12 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"nIW" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "nJa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/kutjevo, @@ -9766,20 +9207,6 @@ /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"nJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/newspaper, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "nJC" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/exterior/scrubland) @@ -9804,11 +9231,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) -"nLc" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"nKP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med) "nLg" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -9850,15 +9278,15 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"nLT" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/kutjevo/exterior/lz_river) "nMz" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"nNl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "nOx" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32 @@ -9892,11 +9320,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) -"nPA" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/colony_central) "nPH" = ( /obj/structure/filingcabinet{ density = 0; @@ -9910,6 +9333,10 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"nPL" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/interior/oob) "nPO" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/colors/cyan, @@ -9921,23 +9348,16 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) -"nQo" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) "nQr" = ( /obj/item/ammo_magazine/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"nQy" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, -/area/kutjevo/interior/construction) +"nQQ" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/spring) +"nQV" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_dunes) "nRd" = ( /obj/item/tool/wrench, /obj/item/prop/alien/hugger, @@ -9953,6 +9373,10 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med) +"nRA" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) "nRE" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -9981,27 +9405,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east_tech) +"nVw" = ( +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tool/pen{ + desc = "It's a seemingly normal pen... aside from the faint red fingerprints on the side..."; + name = "stained pen"; + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/paper/crumpled/bloody, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "nVF" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"nVH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"nWo" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) "nWu" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -10012,6 +9433,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) +"nXq" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/kutjevo/colors/orange/inner_corner, +/area/kutjevo/interior/foremans_office) "nXr" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/construction) @@ -10040,14 +9465,6 @@ /obj/structure/flora/grass/desert/lightgrass_8, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"nZv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/power) "nZw" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/kutjevo/tan, @@ -10069,13 +9486,9 @@ }, /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"oca" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"oaR" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/lz_river) "ocd" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -10087,28 +9500,27 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"oce" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) "ocn" = ( /obj/structure/machinery/light, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"oeb" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 +"odG" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"oed" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 }, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power) "oex" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"oeE" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/kutjevo/exterior/scrubland) "ofn" = ( /obj/structure/flora/grass/desert/lightgrass_6, /turf/open/auto_turf/sand/layer1, @@ -10122,22 +9534,27 @@ }, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"ofA" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/spring) "ofR" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) -"ogo" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) -"ogG" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/operating) +"ogQ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) +"ogZ" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/telecomm/lz1_south) +"ohU" = ( +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "oii" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 1; @@ -10145,15 +9562,30 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"oiz" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/research/containment/floor1, +/area/kutjevo/interior/power) "oiJ" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"oiS" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ojH" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"ojS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "okh" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -10220,6 +9652,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"omi" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "omA" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -10235,11 +9671,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) -"onC" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 9 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "onP" = ( /obj/structure/bed/chair{ dir = 1 @@ -10251,6 +9682,15 @@ /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"ooI" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_S_East) +"ooL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/syndi_cakes, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "opz" = ( /obj/structure/surface/table/almayer, /obj/item/device/tracker, @@ -10259,11 +9699,6 @@ "opQ" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"oqg" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/lz_river) "oqw" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand/layer0, @@ -10296,15 +9731,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/oob/dev_room) -"otc" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/colony_floodlight{ - pixel_y = 10 - }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/complex/med) "otI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -10330,14 +9756,17 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) +"otY" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "oum" = ( /obj/item/storage/toolbox/antag, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"oun" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) "ouR" = ( /obj/structure/blocker/invisible_wall, /obj/structure/xenoautopsy/tank/larva, @@ -10354,6 +9783,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) +"ovr" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "ovv" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/light{ @@ -10361,6 +9796,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"ovw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "ovG" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_bridge) @@ -10389,12 +9834,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) -"ozl" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/kutjevo/exterior/lz_river) +"oyO" = ( +/turf/open/desert/desert_shore/shore_corner2/east, +/area/kutjevo/exterior/runoff_dunes) "ozs" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -10405,6 +9847,14 @@ /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"ozO" = ( +/obj/structure/filtration/machine_32x64/indestructible{ + bound_height = 32; + icon_state = "solo_tank_empty" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "oAj" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -10432,46 +9882,27 @@ /obj/structure/machinery/constructable_frame, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) +"oEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/triage) +"oEQ" = ( +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/exterior/lz_dunes) "oET" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"oFs" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/interior/oob/dev_room) -"oFX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"oFe" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/lz_pad) "oGw" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/machinery/light, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_South/power2) -"oGC" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) -"oHI" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/platform/kutjevo/smooth, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "oIb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -10492,18 +9923,21 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"oJE" = ( -/turf/open/floor/kutjevo/tan/alt_edge, -/area/kutjevo/exterior/Northwest_Colony) +"oIx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) +"oIR" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "oJV" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"oKx" = ( -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/exterior/Northwest_Colony) "oKA" = ( /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/colors/orange, @@ -10531,6 +9965,19 @@ "oMZ" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/foremans_office) +"oNv" = ( +/obj/structure/machinery/door_control/brbutton{ + health = null; + id = "kutjevo_medlock_west"; + idle_power_usage = 0; + indestructible = 1; + name = "Medical West Lock Override"; + pixel_y = 22; + range = 15 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/med) "oNG" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/construction) @@ -10542,20 +9989,13 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) -"oOd" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 5 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +"oNX" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/spring) "oOe" = ( /obj/structure/filingcabinet, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"oOl" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east) "oOs" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -10567,12 +10007,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_N_East) -"oOO" = ( -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/shallow_corner{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) +"oOH" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "oPb" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -10590,11 +10028,9 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"oQL" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/construction) +"oQP" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/lz_river) "oQQ" = ( /obj/structure/window/framed/kutjevo/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -10608,35 +10044,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"oRE" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/auto_doc) -"oRM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) -"oRZ" = ( -/obj/structure/machinery/autodoc_console, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/auto_doc) -"oSx" = ( -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "oSK" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/tan/grey_edge, @@ -10647,6 +10054,10 @@ }, /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/Northwest_Colony) +"oSQ" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "oTF" = ( /obj/structure/sign/prop3, /turf/closed/wall/kutjevo/colony/reinforced/hull, @@ -10662,6 +10073,16 @@ "oUP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/construction) +"oVt" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) "oVO" = ( /obj/structure/machinery/light{ dir = 8 @@ -10675,14 +10096,6 @@ "oVX" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) -"oWo" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/operating) "oXb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -10690,10 +10103,21 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"oXg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"oXF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "oXH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) +"oYn" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power) "oYQ" = ( /obj/structure/blocker/invisible_wall, /obj/structure/surface/table/reinforced/prison, @@ -10701,6 +10125,11 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/kutjevo/interior/oob) +"oZr" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "oZD" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -10721,53 +10150,30 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"pbP" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"pbR" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) +"pbI" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/lz_river) "pbY" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med) "pci" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/telecomm/lz2_south) -"peK" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/surgery, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ +"pdj" = ( +/obj/structure/largecrate, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"pen" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/area/kutjevo/interior/complex/med/operating) -"peQ" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/kutjevo/tan/grey_inner_edge/east, +/area/kutjevo/interior/complex/med) "pfe" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"pfo" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "pfq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -10776,14 +10182,6 @@ "pfz" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/exterior/complex_border/med_rec) -"pfC" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/kutjevo/interior/construction) "pfR" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -10813,24 +10211,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/operating) -"phI" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "pih" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"pio" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "piq" = ( /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, @@ -10847,27 +10231,10 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"pjH" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/kutjevo/exterior/lz_river) -"pkg" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/kutjevo/interior/construction) -"pks" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "8,6" - }, -/area/kutjevo/interior/oob) +"pkJ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "pkP" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/exterior/Northwest_Colony) @@ -10881,20 +10248,10 @@ "plf" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) -"plQ" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany/east) "pma" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/Northwest_Dorms) -"pmo" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 10 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "pmu" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -10908,14 +10265,6 @@ /obj/structure/largecrate/supply/supplies/flares, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"pnn" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "pnM" = ( /obj/item/storage/belt/shotgun, /turf/open/floor/kutjevo/multi_tiles, @@ -10945,16 +10294,6 @@ /obj/item/trash/cigbutt/cigarbutt, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/construction) -"ppn" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) -"ppB" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "ppM" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow_corner, @@ -10962,23 +10301,10 @@ "ppX" = ( /turf/open/floor/plating/kutjevo, /area/shuttle/drop2/kutjevo) -"pqs" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/kutjevo/exterior/scrubland) -"prv" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) +"prl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "prJ" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) @@ -10993,6 +10319,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"psA" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.05 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "ptz" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -11024,6 +10357,15 @@ }, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/med/operating) +"puz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/tan/alt_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"pvb" = ( +/turf/open/floor/kutjevo/tan/alt_edge, +/area/kutjevo/exterior/lz_pad) "pvk" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -11045,17 +10387,9 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/construction) -"pxb" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 6 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) -"pxl" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) +"pxz" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/scrubland) "pxB" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -11081,14 +10415,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"pyZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "pzG" = ( /obj/structure/sign/safety/medical{ pixel_x = -32 @@ -11099,27 +10425,17 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"pzH" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) "pzL" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"pAu" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) "pBi" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"pBA" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/runoff_dunes) "pBJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-4" @@ -11134,24 +10450,23 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_dunes) -"pCJ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/construction) +"pCy" = ( +/obj/item/frame/rack, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany/east_tech) "pCS" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) +"pDa" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "pDi" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"pDk" = ( -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/construction) "pDs" = ( /obj/effect/decal/cleanable/blood, /obj/structure/stairs/perspective/kutjevo{ @@ -11160,17 +10475,17 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/cells) +"pDZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "pEb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1 }, /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"pEg" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_5" - }, -/area/kutjevo/exterior/scrubland) "pEt" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -11183,6 +10498,14 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"pEK" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"pFm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "pFG" = ( /obj/structure/filingcabinet, /turf/open/floor/kutjevo/tan, @@ -11209,26 +10532,12 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/auto_doc) -"pGO" = ( -/obj/item/storage/briefcase, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/auto_doc) "pGY" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaltopleft" }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"pHm" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "pHR" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/grey/plate, @@ -11248,21 +10557,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_north) -"pIE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_30"; - pixel_y = 9 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/locks) -"pIK" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_bridge) "pJa" = ( /obj/structure/machinery/light{ dir = 1 @@ -11282,12 +10576,25 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"pJx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.1 + }, +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "pJL" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"pJX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/darkred, +/area/kutjevo/interior/oob) "pKn" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony/reinforced, @@ -11305,21 +10612,11 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"pKO" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/power/comms) "pKP" = ( /obj/structure/largecrate/supply/supplies/mre, /obj/item/clothing/suit/armor/vest/security, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"pLN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "pLS" = ( /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/kutjevo/colors/red, @@ -11327,29 +10624,25 @@ "pMw" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/med/locks) -"pMS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "pNi" = ( /obj/structure/window_frame/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) +"pNq" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/spring) +"pNC" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/runoff_river) "pNW" = ( /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"pOc" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/foremans_office) +"pOh" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "pOi" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -11360,12 +10653,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"pPz" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "pPJ" = ( /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/lz_dunes) @@ -11387,6 +10674,12 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"pRe" = ( +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) +"pRE" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/construction) "pRI" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -11394,16 +10687,6 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/med) -"pRL" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) -"pRS" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/colony_South/power2) "pSs" = ( /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) @@ -11430,13 +10713,16 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"pUB" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 14 - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) +"pTJ" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/nuclear, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"pUF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) "pVd" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -11454,6 +10740,13 @@ }, /turf/open/floor/kutjevo/colors/cyan/inner_corner, /area/kutjevo/interior/complex/med/triage) +"pVD" = ( +/turf/open/gm/dirtgrassborder2/west, +/area/kutjevo/exterior/complex_border/med_park) +"pVO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/red, +/area/kutjevo/interior/oob) "pWe" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -11472,19 +10765,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Dorms) -"pWW" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/kutjevo/interior/complex/med) -"pXf" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/filtrationside{ - dir = 1 - }, -/area/kutjevo/interior/power) "pXF" = ( /obj/item/device/flashlight/on, /turf/open/floor/kutjevo/colors/orange, @@ -11496,6 +10776,13 @@ }, /turf/open/gm/grass/grass1/weedable, /area/kutjevo/exterior/complex_border/med_park) +"pYZ" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/complex/botany) +"pZb" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/complex/med/locks) "pZx" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/window/framed/kutjevo/reinforced, @@ -11507,36 +10794,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"qae" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door_control/brbutton{ - health = null; - id = "kutjevo_medlock_east"; - idle_power_usage = 0; - indestructible = 1; - name = "Medical East Lock Override"; - pixel_y = 22; - range = 15 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med) "qaI" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/construction) -"qaS" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east_tech) -"qaY" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/kutjevo/interior/oob/dev_room) +"qaT" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) +"qbp" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/kutjevo/colors/purple/edge/east, +/area/kutjevo/interior/construction) "qcE" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -11544,24 +10813,22 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qdj" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) +"qdA" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) +"qdM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east_tech) "qev" = ( /obj/item/trash/chunk, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/construction) -"qfw" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"qeZ" = ( +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "qgr" = ( /obj/item/ammo_magazine/rifle/m16, /turf/open/floor/kutjevo/colors, @@ -11569,6 +10836,10 @@ "qgW" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"qhb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qhi" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/lz_river) @@ -11603,6 +10874,12 @@ }, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/power) +"qjt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "qjz" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer0, @@ -11613,24 +10890,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"qlu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "qmR" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) -"qnd" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/exterior/Northwest_Colony) -"qny" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) -"qnB" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_rec) +"qmS" = ( +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/spring) "qnU" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/exterior/lz_dunes) @@ -11643,6 +10914,9 @@ "qoL" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/construction) +"qoM" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/spring) "qpi" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -11662,30 +10936,11 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/med/locks) -"qpZ" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/complex/botany) "qqM" = ( /obj/structure/surface/table/almayer, /obj/item/trash/candle, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"qqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_x = 1; - pixel_y = 15 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "qrl" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -11700,17 +10955,15 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"qru" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_11" - }, -/area/kutjevo/exterior/lz_dunes) "qsY" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"qtb" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "qtK" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, @@ -11720,32 +10973,21 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) -"quu" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "quy" = ( /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) "quW" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) -"qwg" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"qwT" = ( -/obj/item/tool/wirecutters/clippers, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"qvl" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/colors/orange/tile, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"qvK" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "qxc" = ( /obj/structure/barricade/metal/wired{ dir = 1 @@ -11759,17 +11001,6 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qyD" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "qyS" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 @@ -11789,16 +11020,19 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) +"qzz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/north, +/area/kutjevo/interior/construction) "qzY" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/lz_river) -"qAP" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/kutjevo/interior/oob) +"qAF" = ( +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "qBa" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -11825,39 +11059,10 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"qCi" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) -"qCy" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) "qDu" = ( /obj/item/trash/kepler, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/construction) -"qDH" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) -"qEq" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"qEx" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power) "qEA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -11868,15 +11073,21 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) -"qFU" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 +"qEV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 }, -/area/kutjevo/exterior/runoff_dunes) +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "qGa" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"qGf" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "qGx" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) @@ -11884,20 +11095,14 @@ /obj/item/tool/wirecutters/clippers, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) -"qGJ" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/kutjevo/exterior/lz_dunes) -"qGQ" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 +"qHc" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 }, -/area/kutjevo/interior/power/comms) +/obj/structure/platform/kutjevo/smooth, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "qHH" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_sn_full_cap" @@ -11915,17 +11120,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"qIN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/toy/deck, -/obj/item/device/flashlight/lamp, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "qIV" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/barricade/handrail/kutjevo{ @@ -11933,11 +11127,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"qJx" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 10 - }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "qKm" = ( /obj/structure/machinery/disposal, /obj/effect/decal/medical_decals{ @@ -11945,22 +11134,15 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/operating) -"qLa" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"qLV" = ( -/obj/structure/tunnel{ - id = "hole2" +"qKA" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/lz_river) +"qLx" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -4 }, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/stonyfields) +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "qMC" = ( /obj/structure/machinery/light{ dir = 4 @@ -11974,39 +11156,22 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) -"qOf" = ( +"qNY" = ( /obj/structure/surface/rack, -/obj/item/book/manual/nuclear, -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) -"qOw" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 6 - }, -/area/kutjevo/exterior/runoff_river) -"qOy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/auto_doc) +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) "qOJ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/med/locks) -"qOM" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 5 +"qOK" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: NW Colony Landing Zone" }, -/area/kutjevo/interior/construction) +/turf/open/floor/plating/kutjevo, +/area/shuttle/drop2/kutjevo) "qOP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, @@ -12020,33 +11185,19 @@ /obj/item/reagent_container/food/snacks/meatballspagetti, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"qPz" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 - }, -/area/kutjevo/exterior/runoff_river) "qPO" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"qQp" = ( -/obj/item/frame/rack, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany/east_tech) +"qQq" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/exterior/runoff_bridge) +"qQD" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "qQU" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qRp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 9 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "qRq" = ( /obj/structure/machinery/light{ dir = 4 @@ -12063,12 +11214,10 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qTI" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) +"qSO" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) "qTN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -12079,30 +11228,19 @@ /obj/structure/closet/firecloset/full, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"qUC" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) -"qUZ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 +"qUK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "qVc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"qVe" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 29; - start_charge = 0 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz2_north) "qVg" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/exterior/scrubland) @@ -12112,18 +11250,13 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"qVU" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/auto_doc) -"qVY" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 +"qVF" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "qVZ" = ( /obj/structure/filtration/machine_96x96{ icon_state = "distribution" @@ -12134,14 +11267,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"qXd" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/cyan, -/area/kutjevo/interior/complex/med) "qYn" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12149,10 +11274,23 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"qZN" = ( +/turf/open/gm/river/desert/shallow_edge/southwest, +/area/kutjevo/exterior/spring) "qZO" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"rax" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/interior/oob) "raA" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -12166,23 +11304,17 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/operating) +"rcc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/interior/oob/dev_room) "rdm" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_South/power2) -"rdx" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) "rej" = ( /obj/structure/prop/dam/large_boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"rfz" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) "rfE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/kutjevo/colony/reinforced, @@ -12194,15 +11326,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"rgh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/colony_South/power2) "rgv" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/sand/layer0, @@ -12213,6 +11336,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) +"rgE" = ( +/turf/open/mars_cave/mars_cave_23, +/area/kutjevo/exterior/scrubland) "rgQ" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -12220,9 +11346,26 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"rgR" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/kutjevo/interior/complex/Northwest_Dorms) +"rhd" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/nosmoking_1{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med) "rhK" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/operating) +"rhQ" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony, +/area/kutjevo/interior/complex/botany/east) "rhZ" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -12235,11 +11378,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_north) -"rih" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/exterior/lz_dunes) +"rip" = ( +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) "riu" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/tiles, @@ -12266,29 +11407,21 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/botany) -"rjz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"rjS" = ( +"rkt" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/interior/oob/dev_room) +"rkx" = ( /obj/structure/blocker/invisible_wall, /obj/structure/platform/kutjevo{ dir = 1 }, /obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/river{ - color = "#995555" + dir = 8 }, -/area/kutjevo/interior/oob) -"rkt" = ( -/obj/structure/flora/grass/desert/lightgrass_9, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/interior/oob/dev_room) +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/power) "rky" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -12306,21 +11439,16 @@ "rlB" = ( /turf/open/floor/kutjevo/tiles, /area/kutjevo/interior/complex/med/triage) -"rlI" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) "rlM" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"rme" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany) +"rlO" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/toy/inflatable_duck, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "rmo" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -12328,27 +11456,21 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_South) +"rmp" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "rmt" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_central) -"rmG" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) +"rmM" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) "rmO" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) -"rno" = ( -/turf/open/mars_cave{ - icon_state = "mars_cave_10" - }, -/area/kutjevo/exterior/scrubland) "rnM" = ( /obj/effect/landmark/hunter_secondary, /turf/open/auto_turf/sand/layer0, @@ -12368,12 +11490,25 @@ "roS" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_bridge) +"rpl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/foremans_office) "rpB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"rpF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "rqD" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/gibs/limb, @@ -12382,45 +11517,39 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"rrH" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 - }, -/area/kutjevo/interior/foremans_office) -"rsM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"rsY" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/kutjevo/multi_tiles{ +/turf/open/floor/kutjevo/colors/orange/inner_corner/east, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"rta" = ( +/obj/structure/machinery/light{ dir = 4 }, -/area/kutjevo/interior/colony_South/power2) -"rsV" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "rte" = ( /obj/structure/prop/dam/boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"rtn" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/med/locks) +"rtq" = ( +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "ruM" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"rvt" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) +"rvi" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/complex/botany) "rvA" = ( /obj/structure/girder, /turf/open/floor/kutjevo/grey/plate, @@ -12431,18 +11560,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"rvZ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power/comms) "rwj" = ( /obj/structure/window/framed/kutjevo/reinforced/hull, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/power) +"rwz" = ( +/turf/open/gm/river/desert/shallow_edge/west, +/area/kutjevo/exterior/runoff_river) "rwL" = ( /obj/item/frame/table/almayer, /turf/open/floor/kutjevo/tan, @@ -12464,6 +11588,9 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"rxt" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany) "rxX" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -12474,19 +11601,16 @@ "ryB" = ( /turf/open/floor/kutjevo/colors/cyan/edge, /area/kutjevo/interior/complex/med/triage) +"ryQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/desert/shallow_corner/east, +/area/kutjevo/exterior/lz_river) "ryY" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"rzb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "rzc" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/runoff_dunes) @@ -12506,6 +11630,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_river) +"rzL" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "rzT" = ( /obj/structure/bed{ can_buckle = 0; @@ -12518,9 +11646,29 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany/east_tech) +"rAR" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/botany) +"rBn" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) "rCp" = ( /turf/open/desert/desert_shore/desert_shore1, /area/kutjevo/exterior/runoff_bridge) +"rDg" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) +"rDm" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/construction) "rDO" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomright" @@ -12540,32 +11688,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"rEs" = ( -/turf/open/floor/plating/kutjevo{ - icon_state = "platingdmg1" - }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"rEI" = ( -/turf/open/floor/kutjevo/colors/orange/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/foremans_office) "rES" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/locks) -"rFu" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 3 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "rFR" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/kutjevo/tan/multi_tiles, @@ -12574,6 +11699,12 @@ /obj/structure/machinery/space_heater, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"rHb" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/power) "rHg" = ( /obj/structure/prop/dam/truck/cargo, /turf/open/asphalt/cement_sunbleached, @@ -12585,12 +11716,6 @@ /obj/structure/cargo_container/grant/left, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South/power2) -"rHF" = ( -/obj/structure/bed/roller, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) "rHL" = ( /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/colony_central) @@ -12606,13 +11731,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"rIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "rID" = ( /obj/structure/machinery/shower{ dir = 1; @@ -12626,11 +11744,6 @@ "rIL" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany/east_tech) -"rJU" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_dunes) "rKl" = ( /obj/item/storage/briefcase, /turf/open/floor/kutjevo/colors, @@ -12676,31 +11789,19 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/colony_central) -"rNg" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_river) -"rNG" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "rOd" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"rOo" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/lz_dunes) "rPq" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"rQa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) "rQY" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/power_pt2_electric_boogaloo) @@ -12710,28 +11811,6 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east_tech) -"rRC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/item/clipboard, -/obj/item/clothing/glasses/thermal/syndi{ - icon_state = "kutjevo_goggles"; - pixel_y = -2 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) -"rRL" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/coagulation{ - icon_state = "7,8-2" - }, -/area/kutjevo/interior/colony_north) "rSg" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/kutjevo/colors/green, @@ -12742,11 +11821,10 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"rSU" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) +"rSR" = ( +/obj/structure/prop/dam/boulder/boulder2, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/interior/colony_South) "rTi" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 1 @@ -12757,11 +11835,6 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) -"rTF" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, -/area/kutjevo/interior/construction) "rUi" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -12786,41 +11859,31 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) +"rVI" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"rWq" = ( +/obj/item/clipboard, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "rWK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"rWY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 6 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "rXe" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"rXj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/pizza, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/construction) "rYc" = ( /obj/item/toy/handcard/uno_reverse_yellow, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) -"rYs" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/interior/oob/dev_room) +"rYh" = ( +/turf/open/mars_cave/mars_cave_5, +/area/kutjevo/exterior/scrubland) "rYF" = ( /obj/structure/flora/bush/ausbushes/reedbush{ pixel_x = 5; @@ -12842,50 +11905,38 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) -"rZV" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 +"rZu" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/kutjevo/interior/complex/botany) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/kutjevo/colors/orange/edge/east, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "rZW" = ( /turf/open/floor/kutjevo/colors/orange/tile, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"sal" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/colony_central) -"saK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "sbb" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_central) +"sbp" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "sbz" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"sbF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/filtration/machine_32x64/indestructible{ - bound_height = 32; - icon_state = "solo_tank_empty" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "sbX" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/runoff_river) @@ -12925,23 +11976,15 @@ "sef" = ( /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"sfz" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"sgc" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 6 +"sfV" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"sge" = ( +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "sgF" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -12952,36 +11995,14 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"shn" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/foremans_office) -"shX" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) -"sit" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"siJ" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "siR" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sjE" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "sjN" = ( /obj/structure/surface/rack, /obj/item/clothing/head/welding, @@ -12995,11 +12016,6 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"slx" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/colony_South/power2) "slB" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -13017,6 +12033,9 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"sml" = ( +/turf/open/mars_cave/mars_cave_11, +/area/kutjevo/exterior/scrubland) "smo" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -13055,27 +12074,33 @@ "snr" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"snP" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 +"sob" = ( +/obj/structure/reagent_dispensers/watertank{ + desc = "A watertank. The label has been written over with the sequence 2---" }, -/area/kutjevo/exterior/runoff_bridge) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/Northwest_Colony) "soe" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"soj" = ( +/turf/open/floor/coagulation/icon7_8_2, +/area/kutjevo/interior/power/comms) "soF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"soI" = ( +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/lz_pad) "soP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 @@ -13110,6 +12135,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"ssR" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/construction) "ssV" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters/clippers, @@ -13122,17 +12150,38 @@ }, /turf/closed/wall/kutjevo/rock, /area/kutjevo/exterior/runoff_dunes) +"stp" = ( +/obj/structure/closet, +/obj/item/clothing/head/helmet/marine/veteran/kutjevo, +/obj/item/clothing/glasses/kutjevo, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "str" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"stt" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 +"suD" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"svo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) "svp" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -13155,26 +12204,21 @@ /obj/item/stack/sheet/metal, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"swE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "swZ" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"sxq" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) -"sxy" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 9 - }, -/area/kutjevo/exterior/runoff_river) "syM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) +"syV" = ( +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/exterior/runoff_dunes) "szC" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, @@ -13191,21 +12235,9 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"sAe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east_tech) -"sAf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"sAi" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, +/area/kutjevo/interior/complex/med/operating) "sAA" = ( /obj/structure/bed/chair{ dir = 8 @@ -13228,25 +12260,13 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/foremans_office) -"sBH" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/kutjevo/interior/oob) -"sCw" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 10 +"sBD" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 }, -/area/kutjevo/exterior/runoff_river) +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "sCA" = ( /obj/structure/prop/dam/boulder/boulder3, /turf/open/auto_turf/sand/layer0, @@ -13257,14 +12277,10 @@ "sDG" = ( /turf/open/gm/river/desert/deep, /area/kutjevo/exterior/lz_river) -"sEf" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_rec) +"sDN" = ( +/obj/structure/tunnel, +/turf/open/gm/dirtgrassborder2, +/area/kutjevo/exterior/complex_border/med_park) "sEG" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/exterior/construction) @@ -13275,14 +12291,13 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med) -"sFP" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_0" - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"sGn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/kutjevo/interior/complex/botany) +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "sGs" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/auto_doc) @@ -13292,20 +12307,20 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"sHg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 4 - }, -/area/kutjevo/interior/complex/med/operating) "sHu" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"sHP" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "sHQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand/layer1, @@ -13317,16 +12332,16 @@ /obj/structure/barricade/wooden, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/med/locks) -"sID" = ( +"sIx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"sIE" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/power/geothermal, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/power) +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/complex/botany) "sJj" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -13350,11 +12365,6 @@ /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"sLf" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "sLx" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/kutjevo/colors/orange, @@ -13388,41 +12398,9 @@ "sNZ" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_N_East) -"sOc" = ( -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) -"sOy" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 8; - icon_state = "p_stair_ew_full_cap_butt" - }, -/obj/structure/platform/stair_cut{ - icon_state = "kutjevo_platform_sm_stair" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/complex/med/locks) -"sOF" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -4 - }, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "sOJ" = ( /turf/open/gm/river/desert/shallow_corner, /area/kutjevo/exterior/lz_river) -"sOT" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/power_pt2_electric_boogaloo) "sPp" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/gm/river/desert/deep/covered, @@ -13430,11 +12408,15 @@ "sPE" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"sPV" = ( -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 1 +"sQh" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/complex_border/med_rec) +"sQC" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/triage) "sRb" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -13442,6 +12424,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) +"sSm" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "sSq" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 @@ -13468,6 +12457,9 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) +"sTb" = ( +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "sTB" = ( /obj/structure/platform/kutjevo/rock{ dir = 8 @@ -13492,26 +12484,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/colony_central) -"sUt" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"sUC" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/filtration/coagulation_arm, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"sVc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) +"sUy" = ( +/obj/structure/prop/dam/boulder/boulder1, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "sVx" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/complex/botany) @@ -13548,6 +12524,15 @@ "sXo" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"sXM" = ( +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/construction) +"sXN" = ( +/turf/open/gm/river/desert/shallow, +/area/kutjevo/exterior/lz_pad) "sXR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, @@ -13568,47 +12553,30 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"sYV" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/toy/inflatable_duck, -/obj/structure/platform/kutjevo, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) -"sZz" = ( -/obj/effect/landmark/corpsespawner/colonist/kutjevo, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) -"sZY" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/colony_central) "sZZ" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 9 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/scrubland) +"tah" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) "tax" = ( /turf/open/gm/river/desert/shallow_edge, /area/kutjevo/exterior/runoff_dunes) +"tbb" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/construction) +"tdf" = ( +/turf/open/floor/kutjevo/tan/grey_edge/west, +/area/kutjevo/interior/complex/Northwest_Dorms) "tdG" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"tdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) "tdT" = ( /obj/structure/platform/kutjevo, /turf/open/auto_turf/sand/layer0, @@ -13622,16 +12590,16 @@ }, /turf/open/floor/kutjevo/colors/cyan/tile, /area/kutjevo/interior/complex/med/cells) -"ten" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/operating) "ter" = ( /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) +"tew" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "teN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 8 @@ -13648,20 +12616,11 @@ }, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"tgl" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "tgO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_S_East) -"tgZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) "tha" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -13679,6 +12638,10 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) +"thE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/Northwest_Dorms) "thU" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -13686,6 +12649,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/scrubland) +"tix" = ( +/obj/structure/platform/kutjevo/smooth/stair_plate, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) "tiJ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -13710,15 +12680,16 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) +"tju" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "tjJ" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"tjS" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/kutjevo/exterior/lz_river) "tjZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -13742,6 +12713,9 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central/mine_elevator) +"tlF" = ( +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "tlN" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/power/comms) @@ -13752,18 +12726,9 @@ }, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) -"tnI" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/Northwest_Colony) -"tnM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +"tny" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/east, /area/kutjevo/interior/complex/med) "tob" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ @@ -13798,6 +12763,10 @@ /obj/item/prop/helmetgarb/spent_buckshot, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) +"tqf" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/runoff_river) "tql" = ( /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/stonyfields) @@ -13808,11 +12777,9 @@ }, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/complex/botany) -"tqE" = ( -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/complex/botany/east_tech) +"tqO" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) "trC" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -13833,6 +12800,10 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob) +"tsb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/interior/oob/dev_room) "tsK" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -13844,27 +12815,20 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"ttw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/power/comms) "tun" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/Northwest_Colony) -"tuW" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/power) -"tvb" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 8 - }, -/area/kutjevo/interior/complex/med/operating) "tvJ" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer0, @@ -13876,19 +12840,16 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/construction) -"twq" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_dunes) -"txe" = ( -/obj/structure/platform/kutjevo/rock{ +"twF" = ( +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"txE" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ dir = 1 }, -/turf/open/mars_cave{ - icon_state = "mars_cave_23" - }, -/area/kutjevo/exterior/scrubland) +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "txH" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple/edge, @@ -13899,6 +12860,13 @@ }, /turf/open/gm/dirt2, /area/kutjevo/exterior/complex_border/med_park) +"typ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) "tyq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, @@ -13907,32 +12875,42 @@ /obj/structure/bed/chair/office/light, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/complex/botany/east_tech) -"tyW" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) +"tyK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) "tzJ" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap" }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"tzM" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "tzQ" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_S_East) +"tAg" = ( +/obj/structure/flora/grass/tallgrass/desert, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) +"tAs" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_8, +/area/kutjevo/interior/colony_north) "tAX" = ( /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/grey/plate, /area/kutjevo/interior/construction) -"tBB" = ( -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) "tBS" = ( /obj/structure/blocker/invisible_wall, /obj/structure/bed/chair/office/dark{ @@ -13944,6 +12922,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand/layer2, /area/kutjevo/interior/colony_South) +"tCF" = ( +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/colony_South/power2) +"tCJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "tCK" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -13951,14 +12939,14 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med) -"tDj" = ( -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 14 - }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 +"tDC" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 4; + icon_state = "p_stair_full" }, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/platform/kutjevo, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/complex_border/med_rec) "tDP" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/red, @@ -13989,14 +12977,6 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/power_pt2_electric_boogaloo) -"tFh" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib6" - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany) "tFH" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand/layer0, @@ -14012,32 +12992,39 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/construction) -"tGi" = ( -/turf/open/floor/coagulation{ - icon_state = "8,6" +"tGf" = ( +/obj/structure/platform/kutjevo{ + dir = 1 }, -/area/kutjevo/exterior/runoff_river) +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "tGm" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 1 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"tGE" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/kutjevo/plate, -/area/kutjevo/exterior/Northwest_Colony) -"tHI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"tGN" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "plinkingspot_northlz" + }, +/turf/closed/wall/kutjevo/rock/border, +/area/kutjevo/exterior/scrubland) +"tGQ" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"tIh" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) +"tHk" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" }, -/area/kutjevo/exterior/runoff_river) +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tIz" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/complex/botany/east) @@ -14045,14 +13032,23 @@ /obj/structure/flora/grass/desert/lightgrass_4, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"tIY" = ( -/turf/open/desert/desert_shore/shore_edge1, -/area/kutjevo/exterior/Northwest_Colony) +"tJf" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 10 + }, +/turf/open/auto_turf/sand/layer0, +/area/kutjevo/exterior/lz_pad) "tJu" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/smg/nailgun, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) +"tKq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "tKz" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -14068,22 +13064,44 @@ /obj/structure/bed/sofa/vert/white, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/auto_doc) +"tKH" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "tKY" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_river) -"tLD" = ( -/obj/structure/platform/kutjevo{ +"tLh" = ( +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -8 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/platform/kutjevo, -/turf/open/floor/coagulation{ - icon_state = "0,0" +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = 8 }, -/area/kutjevo/interior/construction) +/obj/structure/machinery/light, +/obj/structure/platform/kutjevo/smooth, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med/operating) "tLO" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany/east_tech) +"tLU" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/red_pool, +/area/kutjevo/interior/oob) "tMe" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, @@ -14115,6 +13133,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power) +"tNJ" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "tOe" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 @@ -14128,6 +13157,11 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) +"tOO" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "tPh" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/med_small_stack, @@ -14139,11 +13173,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) -"tQB" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_dunes) "tQO" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -14161,18 +13190,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/botany) -"tRD" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/closed/wall/kutjevo/rock, -/area/kutjevo/interior/oob) "tRG" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -14187,13 +13204,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South) -"tSs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) +"tSQ" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/complex/botany/east_tech) "tSZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -14210,24 +13223,20 @@ /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) -"tUm" = ( -/turf/open/gm/dirtgrassborder2{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_park) -"tUz" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 +"tTA" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 8 }, -/area/kutjevo/exterior/lz_river) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"tUh" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/desert/shallow_edge/east, +/area/kutjevo/exterior/runoff_river) "tVs" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/complex_border/botany_medical_cave) -"tWv" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river, -/area/kutjevo/interior/oob) "tWM" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power/comms) @@ -14255,19 +13264,6 @@ "tZW" = ( /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/telecomm/lz2_north) -"uah" = ( -/obj/structure/filtration/coagulation_arm, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) -"uaj" = ( -/obj/structure/machinery/light, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "uam" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/platform_decoration/kutjevo/rock{ @@ -14288,6 +13284,18 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"ubz" = ( +/turf/closed/wall/kutjevo/rock, +/area/kutjevo/exterior/lz_pad) +"ubB" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "ubR" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, @@ -14307,13 +13315,6 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_river) -"ufp" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/syndi_cakes, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "ufN" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 10 @@ -14342,11 +13343,6 @@ /obj/structure/barricade/handrail/kutjevo, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/runoff_bridge) -"uhD" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/construction) "uhM" = ( /obj/structure/blocker/invisible_wall, /obj/structure/extinguisher_cabinet, @@ -14402,15 +13398,6 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Dorms) -"ukd" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "ukv" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -14444,16 +13431,16 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/Northwest_Colony) +"ulO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "ulV" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"uma" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) "umo" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/kutjevo, @@ -14462,11 +13449,13 @@ /obj/item/trash/cigbutt/bcigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/colony_central) -"umQ" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 8 +"umY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 4 }, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "una" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -14480,6 +13469,12 @@ /obj/structure/largecrate/random, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) +"unW" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/lz_pad) "uoz" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/oob/dev_room) @@ -14488,41 +13483,18 @@ /obj/item/newspaper, /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/complex/Northwest_Flight_Control) -"upp" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 10 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"upe" = ( +/obj/structure/prop/dam/large_boulder/boulder2, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "upY" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/triage) -"uqv" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/med) -"uqL" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) "uqR" = ( /obj/structure/machinery/light, /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/interior/power) -"uqW" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, -/area/kutjevo/interior/colony_central) "uri" = ( /obj/structure/flora/bush/ausbushes/ppflowers{ icon_state = "fullgrass_3" @@ -14551,17 +13523,10 @@ /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"usc" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/kutjevo/interior/colony_north) +"urW" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_river) "usd" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -14579,16 +13544,47 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) +"utu" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "utY" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany) -"uwD" = ( -/obj/item/clothing/mask/cigarette/pipe/cobpipe, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"uuq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"uvq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/janitor, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"uwj" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/vending/snack/packaged{ + anchored = 0 }, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/tan, +/area/kutjevo/exterior/lz_pad) +"uwq" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) +"uwA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/research/containment/floor2, +/area/kutjevo/exterior/lz_pad) +"uwL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/multi_tiles/west, +/area/kutjevo/interior/complex/med) "uwY" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -14604,30 +13600,18 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/oob) -"uxb" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/barricade/handrail/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"uxk" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirtgrassborder2/east, +/area/kutjevo/exterior/complex_border/med_park) "uxA" = ( /obj/structure/prop/dam/truck, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uze" = ( -/obj/structure/platform/kutjevo/smooth, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_river) +"uxZ" = ( +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "uzp" = ( /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, @@ -14642,6 +13626,11 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) +"uAl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/m94, +/turf/open/floor/kutjevo/colors/purple/inner_corner/west, +/area/kutjevo/interior/construction) "uAz" = ( /obj/structure/fence, /turf/open/auto_turf/sand/layer1, @@ -14703,47 +13692,42 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/complex_border/med_rec) -"uEY" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 1 - }, -/area/kutjevo/exterior/complex_border/med_rec) -"uGd" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/exterior/lz_river) -"uGB" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, +"uET" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/colors/purple, +/area/kutjevo/interior/construction) +"uFz" = ( /obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 +/obj/structure/platform/kutjevo{ + dir = 8 }, +/turf/open/gm/river/darkred, /area/kutjevo/interior/oob) +"uFI" = ( +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/colony_central) "uGN" = ( /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/stonyfields) -"uHg" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 9 +"uHb" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/kutjevo/interior/complex/Northwest_Dorms) "uHo" = ( /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"uHJ" = ( -/obj/structure/stairs/perspective/kutjevo{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) "uHP" = ( /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/auto_doc) @@ -14758,6 +13742,13 @@ /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) +"uIs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "uIF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic/autoname{ dir = 1; @@ -14776,13 +13767,6 @@ }, /turf/open/gm/dirtgrassborder2, /area/kutjevo/exterior/complex_border/med_park) -"uJV" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "uKx" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib5" @@ -14809,16 +13793,21 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"uLi" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/interior/oob) +"uLt" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "uLJ" = ( /obj/structure/machinery/floodlight/landing, /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo, /area/kutjevo/interior/oob/dev_room) -"uMg" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 4 - }, -/area/kutjevo/exterior/lz_dunes) +"uMu" = ( +/turf/open/floor/kutjevo/colors/purple/edge/northeast, +/area/kutjevo/interior/construction) "uML" = ( /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, @@ -14833,26 +13822,6 @@ /obj/structure/closet/crate/secure/ammo, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"uNI" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/kutjevo/interior/oob) -"uNJ" = ( -/obj/structure/platform/kutjevo{ - dir = 8 - }, -/obj/structure/platform/kutjevo, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "uNZ" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/platform/kutjevo/smooth{ @@ -14915,9 +13884,31 @@ /obj/structure/flora/grass/desert/lightgrass_2, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) +"uQK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) +"uRa" = ( +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/triage) "uRm" = ( /turf/open/gm/river/desert/deep/covered, /area/kutjevo/interior/oob) +"uRt" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 14 + }, +/turf/open/desert/desert_shore/desert_shore1/north, +/area/kutjevo/exterior/spring) +"uRz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/north, +/area/kutjevo/interior/complex/med/operating) "uRA" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -14931,65 +13922,26 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) +"uSo" = ( +/turf/open/desert/desert_shore/shore_corner2/north, +/area/kutjevo/exterior/spring) "uSr" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"uSG" = ( -/obj/structure/window/framed/kutjevo/reinforced/hull, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/oob) "uTj" = ( /obj/item/clothing/suit/armor/vest/security, /turf/open/floor/kutjevo/tan/grey_edge, /area/kutjevo/interior/complex/med) -"uTn" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_sn_full_cap"; - pixel_y = 16 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 - }, -/area/kutjevo/interior/power) "uTo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_y = -28 }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"uTr" = ( -/obj/structure/largecrate, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) -"uWk" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/interior/oob) -"uWl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) +"uWm" = ( +/turf/open/floor/kutjevo/tan/grey_edge/east, +/area/kutjevo/interior/colony_central) "uWu" = ( /obj/effect/spawner/random/toolbox{ pixel_x = -2; @@ -14997,19 +13949,26 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med) +"uWF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/kutjevo/tan/grey_edge/north, +/area/kutjevo/interior/complex/Northwest_Dorms) "uXg" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/orange/edge, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"uXM" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) +"uYh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/interior/power/comms) "uYi" = ( /turf/closed/wall/kutjevo/colony/reinforced/hull, /area/kutjevo/interior/complex/med/triage) @@ -15020,6 +13979,10 @@ }, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"uYK" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/interior/oob/dev_room) "uZa" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light{ @@ -15034,31 +13997,12 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"vaa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) "vap" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"vaG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = -7; - pixel_y = -6 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/kutjevo/colors/purple, -/area/kutjevo/interior/construction) "vbl" = ( /obj/structure/prop/dam/wide_boulder/boulder1, /turf/open/auto_turf/sand/layer1, @@ -15074,19 +14018,14 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/floor/mech_bay_recharge_floor, /area/kutjevo/interior/colony_central/mine_elevator) -"vbA" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_dunes) -"vbV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +"vco" = ( +/obj/structure/barricade/wooden{ + desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; + dir = 8; + health = 25000 }, -/area/kutjevo/interior/power) +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "vcs" = ( /obj/structure/machinery/computer/cameras{ dir = 4 @@ -15094,11 +14033,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"vcT" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/lz_river) "vcW" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -15112,13 +14046,6 @@ /obj/structure/platform/kutjevo/rock, /turf/open/gm/river/desert/deep, /area/kutjevo/interior/colony_central) -"vcY" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "vdl" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -15183,10 +14110,17 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/Northwest_Colony) -"vfr" = ( -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 1 +"vfw" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 8 + }, +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"vfF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 }, +/turf/open/floor/kutjevo/colors/purple/edge/west, /area/kutjevo/interior/construction) "vfZ" = ( /obj/structure/platform/kutjevo/rock{ @@ -15194,11 +14128,6 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_river) -"vgw" = ( -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) "vgX" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibmid1" @@ -15215,11 +14144,9 @@ /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vin" = ( -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/kutjevo/exterior/lz_river) +"vip" = ( +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/exterior/runoff_dunes) "viU" = ( /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/construction) @@ -15227,50 +14154,34 @@ /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/exterior/runoff_bridge) -"vjs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/complex/botany/east) -"vkK" = ( -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/exterior/runoff_dunes) -"vkV" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) +"vjA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "vlg" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/complex/med/auto_doc) -"vls" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 4 +"vlZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/power) +"vme" = ( +/turf/open/floor/kutjevo/plate, +/area/kutjevo/exterior/lz_pad) +"vmh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_construction, +/obj/structure/machinery/light{ dir = 4 }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"vmB" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "vmH" = ( /obj/structure/monorail, /obj/structure/platform/kutjevo/smooth{ @@ -15278,24 +14189,13 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) -"vmJ" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) -"vnL" = ( -/obj/item/fuelCell, -/obj/structure/surface/rack, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 +"vnv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_30"; + pixel_y = 9 }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "vnO" = ( /obj/structure/bed/chair{ dir = 8 @@ -15317,14 +14217,21 @@ }, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/scrubland) -"vqQ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 29; - start_charge = 0 +"vpP" = ( +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/telecomm/lz2_south) +/turf/open/floor/kutjevo/tan/multi_tiles, +/area/kutjevo/interior/complex/botany) +"vqO" = ( +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) +"vqY" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/filtration/coagulation_arm, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/oob) "vre" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -15332,30 +14239,18 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) -"vrB" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"vrR" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/exterior/runoff_bridge) "vse" = ( /obj/structure/bed/stool, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/oob/dev_room) -"vsq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, -/area/kutjevo/interior/construction) "vsP" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_N_East) -"vsS" = ( -/turf/open/desert/desert_shore/shore_edge1{ - dir = 1 - }, -/area/kutjevo/exterior/lz_dunes) "vtY" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/multi_tiles, @@ -15367,18 +14262,10 @@ /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vwB" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/plating/kutjevo, -/area/kutjevo/interior/colony_South/power2) -"vxe" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, -/area/kutjevo/interior/colony_South) +"vwL" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "vxM" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/shotgun/buckshot, @@ -15398,12 +14285,18 @@ }, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"vzy" = ( -/obj/structure/tunnel{ - id = "hole4" +"vyK" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20 }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/scrubland) +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/botany) +"vzo" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "vzC" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -15419,6 +14312,21 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) +"vAg" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/power/comms) +"vAr" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/lz_river) +"vBi" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/deep, +/area/kutjevo/interior/complex/botany/east_tech) "vBr" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone2" @@ -15428,43 +14336,28 @@ "vBI" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/lz_dunes) -"vCx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/applecakeslice, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) -"vCT" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/platform/kutjevo{ +"vCY" = ( +/obj/item/stack/rods, +/obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/gm/river{ - color = "#995555"; - name = "pool" - }, -/area/kutjevo/interior/power) +/turf/open/floor/kutjevo/colors/purple/edge/west, +/area/kutjevo/interior/construction) "vDi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/asphalt/cement_sunbleached, /area/kutjevo/exterior/scrubland) -"vDu" = ( +"vDr" = ( /obj/structure/bed/chair{ - pixel_y = 8 - }, -/obj/structure/sign/safety/medical{ - pixel_y = 32 + dir = 8 }, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/area/kutjevo/interior/complex/botany) +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "vDH" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null @@ -15504,12 +14397,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"vER" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "vES" = ( /obj/item/tool/wirecutters, /turf/open/floor/kutjevo/tan, @@ -15543,17 +14430,6 @@ /obj/structure/flora/grass/desert/lightgrass_3, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) -"vGx" = ( -/obj/structure/filtration/coagulation_arm, -/obj/structure/platform/kutjevo/smooth{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "vHf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/sodawater{ @@ -15566,28 +14442,35 @@ }, /turf/open/floor/kutjevo/colors/purple/inner_corner, /area/kutjevo/interior/construction) -"vHh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east) -"vHG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 - }, -/area/kutjevo/exterior/runoff_river) "vHL" = ( /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) +"vHP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/colors/cyan, +/area/kutjevo/interior/complex/med) "vIi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_S_East) +"vIY" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"vKs" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/floor/coagulation/icon8_3, +/area/kutjevo/interior/construction) "vKF" = ( /obj/structure/surface/rack, /turf/open/floor/kutjevo/colors/red, @@ -15632,6 +14515,10 @@ }, /turf/open/floor/kutjevo/colors/red, /area/kutjevo/interior/complex/med/pano) +"vLw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) "vMf" = ( /obj/structure/surface/table/almayer, /turf/open/floor/kutjevo/colors/purple, @@ -15640,15 +14527,10 @@ /obj/structure/fence, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/construction) -"vNt" = ( -/obj/structure/bed/sofa/vert/white/top{ - pixel_y = 17 - }, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/auto_doc) +"vNq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/kutjevo/tan/alt_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "vOc" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" @@ -15667,9 +14549,10 @@ }, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"vPm" = ( -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"vPh" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/interior/oob) "vPE" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib1" @@ -15682,10 +14565,28 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) +"vQv" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/scrubland) +"vQB" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"vQF" = ( +/turf/open/desert/desert_shore/shore_edge1, +/area/kutjevo/exterior/lz_pad) "vQJ" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) +"vQS" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_corner2/west, +/area/kutjevo/interior/oob) "vRH" = ( /obj/structure/platform_decoration/kutjevo/rock{ dir = 8 @@ -15711,16 +14612,16 @@ /obj/structure/prop/dam/boulder/boulder1, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/lz_dunes) -"vTe" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 +"vTO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/kutjevo/exterior/runoff_river) -"vUS" = ( -/obj/structure/closet/crate, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) +/obj/structure/largecrate/random/case/small{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/colors/purple/inner_corner/east, +/area/kutjevo/interior/construction) "vVr" = ( /turf/closed/wall/kutjevo/colony/reinforced, /area/kutjevo/interior/colony_S_East) @@ -15728,14 +14629,6 @@ /obj/structure/flora/grass/tallgrass/desert, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"vXd" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/edge{ - dir = 4 - }, -/area/kutjevo/interior/construction) "vXo" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_full" @@ -15751,21 +14644,13 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power/comms) -"vXs" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) "vXK" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/colony_South/power2) -"vYC" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/scrubland) +"vXT" = ( +/turf/open/asphalt/cement_sunbleached, +/area/kutjevo/exterior/lz_pad) "vYD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/colors/cyan, @@ -15790,18 +14675,27 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_river) -"vYW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"vZh" = ( +/obj/structure/machinery/light, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/exterior/construction) "wae" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 6 }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/scrubland) +"wag" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"waw" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/kutjevo/colors/orange, +/area/kutjevo/exterior/lz_pad) +"waO" = ( +/turf/open/gm/river/desert/shallow_corner/west, +/area/kutjevo/exterior/spring) "waP" = ( /obj/structure/stairs/perspective/kutjevo{ icon_state = "p_stair_ew_full_cap_butt" @@ -15857,6 +14751,12 @@ "wei" = ( /turf/closed/wall/kutjevo/rock/border, /area/kutjevo/exterior/scrubland) +"weT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/desert/shallow_edge/northwest, +/area/kutjevo/exterior/runoff_river) "wff" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/botany_medical_cave) @@ -15872,11 +14772,34 @@ /obj/structure/machinery/disposal, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/complex/botany) -"wgK" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" +"wgi" = ( +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/exterior/lz_pad) +"wgs" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/kutjevo/exterior/scrubland) +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/kutjevo/tan/grey_edge/northeast, +/area/kutjevo/interior/complex/Northwest_Dorms) "wgT" = ( /obj/structure/platform/kutjevo/rock{ dir = 1 @@ -15886,6 +14809,13 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/lz_dunes) +"whL" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/colony_South/power2) +"whT" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/locks) "wix" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -15922,10 +14852,17 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/construction) -"wlg" = ( -/obj/structure/surface/rack, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/exterior/Northwest_Colony) +"wlm" = ( +/obj/item/device/flashlight/lamp/tripod/grey, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"wln" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "wnk" = ( /obj/structure/largecrate/random/case/small, /obj/effect/spawner/random/toolbox{ @@ -15946,25 +14883,26 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/green, /area/kutjevo/interior/complex/botany) -"wnK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 +"wnX" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med) +"wob" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full" }, -/area/kutjevo/interior/complex/Northwest_Dorms) +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) +"wof" = ( +/obj/item/stack/sheet/wood, +/obj/item/storage/belt/marine, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "wpq" = ( /obj/structure/blocker/invisible_wall, /turf/open/gm/river/desert/shallow, /area/kutjevo/interior/oob/dev_room) -"wpY" = ( -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "wqk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/kutjevo, @@ -15972,27 +14910,10 @@ "wqD" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/power) -"wqR" = ( -/obj/structure/bed/chair, -/turf/open/gm/dirtgrassborder2{ - dir = 4 - }, -/area/kutjevo/exterior/complex_border/med_park) -"wrk" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"wsf" = ( -/obj/structure/platform_decoration/kutjevo/rock{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/interior/oob) +"wrU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/multi_tiles/southeast, +/area/kutjevo/interior/power) "wsk" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -16001,15 +14922,17 @@ }, /turf/open/floor/kutjevo/plate, /area/kutjevo/interior/colony_central) -"wtu" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/interior/complex/med/locks) "wtH" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east) +"wtO" = ( +/obj/structure/stairs/perspective/kutjevo{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 16 + }, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/power/comms) "wtZ" = ( /obj/structure/largecrate/random/case, /turf/open/floor/kutjevo/colors/orange, @@ -16029,10 +14952,6 @@ /obj/item/stack/rods, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) -"wvg" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) "wvr" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_South) @@ -16042,6 +14961,13 @@ }, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_central) +"wvL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/colors/cyan/edge/west, +/area/kutjevo/interior/complex/med/auto_doc) "wvW" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -16049,22 +14975,6 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) -"wvX" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) -"wwc" = ( -/obj/structure/prop/wooden_cross{ - desc = "A wooden grave marker. The name 'Richard' is carved into the wood."; - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/Northwest_Colony) "wwd" = ( /obj/item/stool, /turf/open/floor/kutjevo/colors/green/tile, @@ -16079,14 +14989,6 @@ /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wwq" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) "wwG" = ( /obj/structure/surface/rack, /obj/structure/machinery/light{ @@ -16098,6 +15000,10 @@ /obj/structure/window/framed/kutjevo, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"wxC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/multi_tiles/west, +/area/kutjevo/interior/colony_South/power2) "wyp" = ( /obj/item/tool/crowbar, /turf/open/floor/kutjevo/tan, @@ -16115,6 +15021,9 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/complex_border/med_rec) +"wzP" = ( +/turf/open/floor/kutjevo/multi_tiles/north, +/area/kutjevo/interior/colony_South/power2) "wAo" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck/uno, @@ -16150,6 +15059,9 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/botany) +"wCv" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/exterior/scrubland) "wCJ" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/kutjevo/tan, @@ -16157,17 +15069,6 @@ "wCU" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/botany/east_tech) -"wDk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "wDm" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -16182,40 +15083,14 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/foremans_office) -"wEh" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/desert/shallow_edge{ - dir = 5 - }, -/area/kutjevo/exterior/runoff_river) -"wEU" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) "wFQ" = ( /obj/structure/flora/grass/desert/lightgrass_9, /turf/open/auto_turf/sand/layer1, /area/kutjevo/exterior/runoff_dunes) -"wFR" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Dorms) +"wGk" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/desert/desert_shore/desert_shore1, +/area/kutjevo/exterior/spring) "wGD" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green, @@ -16231,11 +15106,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wIR" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power) "wIT" = ( /obj/item/tool/minihoe, /obj/item/tool/minihoe, @@ -16243,11 +15113,18 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany) +"wIU" = ( +/turf/open/desert/desert_shore/shore_edge1/north, +/area/kutjevo/exterior/runoff_bridge) "wJZ" = ( /obj/structure/flora/grass/desert/lightgrass_4, /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/oob/dev_room) +"wKk" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/tan/multi_tiles/north, +/area/kutjevo/interior/complex/botany/east) "wKp" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand/layer1, @@ -16255,6 +15132,9 @@ "wKr" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/kutjevo/interior/colony_central) +"wLf" = ( +/turf/open/floor/kutjevo/tan/grey_inner_edge/north, +/area/kutjevo/interior/construction) "wLp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "kutjevo_medlock_pan"; @@ -16270,34 +15150,15 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/power) -"wNh" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/interior/power) +"wNV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) "wNW" = ( /obj/item/explosive/grenade/high_explosive/pmc, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany) -"wOI" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo/colors/purple/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/construction) "wOU" = ( /obj/structure/flora/bush/ausbushes/ausbush{ icon_state = "pointybush_2"; @@ -16305,12 +15166,34 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/complex/botany) +"wQg" = ( +/obj/item/cell/high, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"wQV" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/kutjevo/interior/complex/botany/east_tech) "wQZ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"wRG" = ( +/obj/structure/flora/grass/tallgrass/desert/corner{ + dir = 5 + }, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) +"wSd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) +"wSr" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_river) "wSw" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/kutjevo/colors/red/tile, @@ -16329,6 +15212,12 @@ "wTt" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_north) +"wTL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "wUa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand/layer1, @@ -16340,10 +15229,24 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/interior/complex/botany) +"wUi" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/kutjevo/colors/orange/edge/north, +/area/kutjevo/interior/foremans_office) +"wVf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 28 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/triage) "wVt" = ( /obj/item/stack/cable_coil/random, /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/colony_South/power2) +"wVI" = ( +/turf/open/floor/kutjevo/tan/alt_edge/southwest, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "wWk" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 8; @@ -16360,24 +15263,17 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"wWy" = ( -/turf/open/gm/river/desert/deep{ - icon = 'icons/turf/floors/desert_water_toxic.dmi' - }, -/area/kutjevo/interior/oob) "wXd" = ( /turf/closed/wall/kutjevo/rock, /area/kutjevo/interior/colony_South) -"wXf" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "wXy" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz2_north) +"wXT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/interior/complex/botany) "wXV" = ( /obj/structure/window/reinforced{ dir = 8 @@ -16411,6 +15307,9 @@ }, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) +"wZs" = ( +/turf/open/desert/desert_shore/desert_shore1/west, +/area/kutjevo/exterior/runoff_dunes) "wZw" = ( /obj/item/clothing/suit/storage/CMB, /turf/open/floor/kutjevo/tan, @@ -16429,29 +15328,9 @@ /obj/item/explosive/plastic, /turf/open/floor/kutjevo/colors/green/tile, /area/kutjevo/interior/complex/botany/east) -"xca" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"xcG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/kutjevo/colors/orange, -/area/kutjevo/exterior/Northwest_Colony) -"xcI" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +"xct" = ( +/turf/open/floor/kutjevo/multi_tiles/east, +/area/kutjevo/interior/complex/med/auto_doc) "xdM" = ( /turf/open/floor/kutjevo/plate, /area/kutjevo/exterior/runoff_dunes) @@ -16460,6 +15339,13 @@ /obj/item/clothing/accessory/storage/black_vest, /turf/open/floor/kutjevo/colors, /area/kutjevo/interior/power/comms) +"xfa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany/east) +"xfK" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/scrubland) "xfW" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand/layer0, @@ -16467,9 +15353,15 @@ "xgl" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/complex/med/operating) +"xgz" = ( +/turf/open/desert/desert_shore/desert_shore1/east, +/area/kutjevo/exterior/runoff_dunes) "xgV" = ( /turf/closed/wall/kutjevo/colony, /area/kutjevo/interior/power) +"xhG" = ( +/turf/open/floor/kutjevo/colors/cyan/edge/east, +/area/kutjevo/interior/complex/med/auto_doc) "xhV" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -16479,49 +15371,9 @@ }, /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/complex/botany) -"xhZ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 17 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) -"xjf" = ( -/obj/structure/stairs/perspective/kutjevo{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 13 - }, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) -"xjg" = ( -/obj/structure/platform/kutjevo{ - dir = 1 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_x = 5; - pixel_y = -12 - }, -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/lz_river) +"xiZ" = ( +/turf/open/floor/coagulation/icon8_0, +/area/kutjevo/exterior/scrubland) "xjY" = ( /turf/open/floor/almayer/research/containment/floor1, /area/kutjevo/interior/power) @@ -16531,19 +15383,15 @@ "xkk" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/kutjevo/interior/complex/botany/east) -"xkE" = ( -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/kutjevo/tan, -/area/kutjevo/interior/complex/botany) "xlk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_S_East) +"xlr" = ( +/turf/open/gm/river/desert/shallow_corner/north, +/area/kutjevo/exterior/lz_river) "xlt" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -16554,6 +15402,21 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power_pt2_electric_boogaloo) +"xlQ" = ( +/turf/open/floor/kutjevo/colors/orange/edge/southeast, +/area/kutjevo/interior/power_pt2_electric_boogaloo) +"xme" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/newspaper, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/orange/edge/west, +/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) "xms" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 10; @@ -16564,38 +15427,20 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_bridge) -"xnk" = ( -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) -"xnr" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/desert/desert_shore/desert_shore1{ - dir = 1 - }, -/area/kutjevo/exterior/runoff_river) "xnT" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand/layer1, /area/kutjevo/interior/colony_South) -"xof" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 29; - start_charge = 0 - }, -/turf/open/floor/kutjevo/tan/multi_tiles, -/area/kutjevo/interior/complex/botany) -"xoq" = ( -/obj/structure/bed/chair/office/light{ +"xom" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/kutjevo/tan/grey_inner_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/med) +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) +"xoE" = ( +/obj/structure/flora/grass/tallgrass/desert/corner, +/turf/open/auto_turf/sand/layer1, +/area/kutjevo/exterior/spring) "xoM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ name = "\improper North Power Shutters" @@ -16603,20 +15448,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) -"xoV" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_dunes) "xpd" = ( /obj/structure/largecrate/guns/merc, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power/comms) -"xpk" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 4 - }, -/area/kutjevo/exterior/lz_river) "xpz" = ( /obj/structure/bed/chair{ dir = 8 @@ -16666,40 +15501,34 @@ }, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/construction) -"xrT" = ( -/obj/structure/flora/grass/desert/lightgrass_8, -/turf/open/auto_turf/sand/layer1, -/area/kutjevo/exterior/Northwest_Colony) -"xti" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/auto_turf/sand/layer0, -/area/kutjevo/exterior/complex_border/med_rec) -"xtN" = ( +"xrL" = ( +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xrX" = ( +/turf/open/mars_cave/mars_cave_10, +/area/kutjevo/exterior/scrubland) +"xsm" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/desert/shallow_edge/northeast, +/area/kutjevo/interior/oob) +"xtb" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/kutjevo/tan, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xtP" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/colors/cyan/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/cyan/edge/west, /area/kutjevo/interior/complex/med/operating) -"xul" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) -"xuY" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) +"xuy" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/kutjevo/colony/reinforced, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "xvg" = ( /obj/item/stool{ pixel_y = 8 @@ -16710,10 +15539,30 @@ /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_bridge) +"xws" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xwu" = ( /obj/structure/window/framed/kutjevo/reinforced, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/complex/med/pano) +"xwv" = ( +/obj/structure/machinery/autodoc_console, +/obj/structure/machinery/light, +/turf/open/floor/kutjevo/colors/cyan/inner_corner/west, +/area/kutjevo/interior/complex/med/auto_doc) +"xxu" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/runoff_bridge) "xxz" = ( /obj/structure/prop/dam/gravestone{ icon_state = "gravestone3" @@ -16739,16 +15588,22 @@ /obj/structure/machinery/light, /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/complex/med/locks) -"xyY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_bridge) +"xyQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/kutjevo, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "xzd" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river/desert/shallow, /area/kutjevo/exterior/runoff_river) +"xze" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/interior/oob/dev_room) "xzI" = ( /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/power) @@ -16759,12 +15614,10 @@ "xzY" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"xAr" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/floor1, -/area/kutjevo/exterior/Northwest_Colony) +"xAl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/kutjevo/tan/grey_edge/northwest, +/area/kutjevo/interior/complex/Northwest_Dorms) "xBb" = ( /obj/structure/platform/kutjevo{ dir = 4 @@ -16773,26 +15626,9 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/runoff_dunes) -"xBl" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, -/area/kutjevo/interior/complex/Northwest_Flight_Control) "xBm" = ( /turf/open/floor/almayer/research/containment/floor2, /area/kutjevo/exterior/Northwest_Colony) -"xCc" = ( -/turf/open/gm/dirtgrassborder2{ - icon_state = "wall3" - }, -/area/kutjevo/exterior/complex_border/med_park) -"xDR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/kutjevo/multi_tiles, -/area/kutjevo/exterior/Northwest_Colony) "xDY" = ( /obj/item/weapon/gun/rifle/m16, /turf/open/floor/kutjevo/colors/orange, @@ -16804,11 +15640,6 @@ /obj/structure/stairs/perspective/kutjevo, /turf/open/floor/kutjevo/grey, /area/kutjevo/interior/complex/med) -"xFN" = ( -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/research/containment/floor2, -/area/kutjevo/exterior/Northwest_Colony) "xGF" = ( /obj/structure/stairs/perspective/kutjevo{ dir = 4; @@ -16816,6 +15647,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_South/power2) +"xHi" = ( +/turf/open/floor/kutjevo/colors/orange/inner_corner/north, +/area/kutjevo/interior/power_pt2_electric_boogaloo) "xHm" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_29"; @@ -16840,6 +15674,9 @@ /obj/structure/prop/dam/large_boulder/boulder2, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/stonyfields) +"xIJ" = ( +/turf/open/floor/kutjevo/tan/multi_tiles/east, +/area/kutjevo/interior/complex/botany) "xIK" = ( /obj/structure/flora/grass/tallgrass/desert/corner, /turf/open/auto_turf/sand/layer2, @@ -16862,6 +15699,14 @@ "xNf" = ( /turf/open/floor/kutjevo/colors/purple, /area/kutjevo/interior/construction) +"xNo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/kutjevo/tan/alt_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) "xNF" = ( /obj/structure/bed/chair{ dir = 1 @@ -16871,16 +15716,9 @@ "xNG" = ( /turf/open/auto_turf/sand/layer2, /area/kutjevo/exterior/telecomm/lz1_south) -"xOx" = ( -/obj/structure/platform/kutjevo/smooth, -/obj/structure/barricade/handrail/kutjevo{ - layer = 3.1 - }, -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 10 - }, -/area/kutjevo/interior/colony_South/power2) +"xOS" = ( +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/scrubland) "xOU" = ( /obj/structure/sign/safety/hazard{ pixel_x = -32 @@ -16895,14 +15733,9 @@ /obj/structure/barricade/wooden, /turf/open/floor/kutjevo/colors/red/tile, /area/kutjevo/interior/complex/botany) -"xQz" = ( -/turf/open/floor/kutjevo/colors/cyan/inner_corner{ - dir = 1 - }, -/area/kutjevo/interior/complex/med/triage) -"xRh" = ( -/turf/closed/wall/kutjevo/colony/reinforced/hull, -/area/kutjevo/interior/power_pt2_electric_boogaloo) +"xPB" = ( +/turf/open/floor/coagulation/icon7_0, +/area/kutjevo/exterior/scrubland) "xRo" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; @@ -16910,17 +15743,6 @@ }, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"xRx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/turf/open/floor/kutjevo/colors/cyan/tile, -/area/kutjevo/interior/complex/med/cells) "xRY" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand/layer1, @@ -16947,14 +15769,22 @@ "xTq" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/runoff_river) -"xTw" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/stack/sheet/metal/small_stack, -/turf/open/floor/kutjevo/colors/orange/edge{ - dir = 8 +"xUh" = ( +/turf/open/floor/coagulation/icon0_5, +/area/kutjevo/interior/complex/botany/east_tech) +"xUz" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xVo" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/kutjevo/interior/complex/Northwest_Security_Checkpoint) +/turf/open/floor/kutjevo/tan/alt_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"xVs" = ( +/turf/open/desert/desert_shore/shore_edge1/west, +/area/kutjevo/exterior/lz_river) "xVt" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/stairs/perspective/kutjevo{ @@ -16970,11 +15800,6 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/interior/colony_N_East) -"xVZ" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 8 - }, -/area/kutjevo/interior/colony_South/power2) "xWn" = ( /obj/structure/closet, /obj/item/clothing/under/kutjevo, @@ -16999,15 +15824,19 @@ }, /turf/open/auto_turf/sand/layer0, /area/kutjevo/exterior/runoff_dunes) -"xXO" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 4 +"xXQ" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_x = 5; + pixel_y = -12 }, -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 6 +/turf/open/desert/desert_shore/shore_edge1/east, +/area/kutjevo/exterior/runoff_bridge) +"xYl" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/kutjevo/interior/colony_South/power2) +/turf/open/floor/kutjevo/colors/cyan/edge/north, +/area/kutjevo/interior/complex/med/operating) "xYs" = ( /obj/structure/platform_decoration/kutjevo/rock, /turf/open/auto_turf/sand/layer1, @@ -17015,13 +15844,6 @@ "xYt" = ( /turf/open/desert/desert_shore/shore_edge1, /area/kutjevo/exterior/scrubland) -"xYR" = ( -/obj/item/stack/sheet/wood, -/obj/item/storage/belt/marine, -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 1 - }, -/area/kutjevo/interior/power/comms) "xZd" = ( /obj/structure/bed/chair{ dir = 4 @@ -17074,18 +15896,11 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/kutjevo/exterior/lz_dunes) -"yaI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany/east_tech) -"ybd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +"yaN" = ( +/turf/open/floor/kutjevo/tan/grey_edge/southeast, +/area/kutjevo/interior/complex/Northwest_Dorms) +"yba" = ( +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/kutjevo/interior/complex/Northwest_Flight_Control) "ybh" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -17104,33 +15919,50 @@ icon_state = "pwall" }, /area/kutjevo/interior/oob) +"yce" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/gm/river/desert/deep/toxic, +/area/kutjevo/interior/power) "ycq" = ( /obj/item/prop/alien/hugger, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Security_Checkpoint) -"ycN" = ( -/turf/open/floor/kutjevo/tan/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/complex/botany) -"ydh" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/desert/shallow_edge{ - dir = 4 - }, -/area/kutjevo/exterior/runoff_river) +"ycu" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "yeY" = ( /obj/item/stack/sheet/wood, /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/power) -"yfc" = ( -/turf/open/desert/desert_shore/desert_shore1{ - dir = 8 - }, -/area/kutjevo/exterior/Northwest_Colony) "yfo" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/colony_central) +"yft" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/kutjevo/multi_tiles/southwest, +/area/kutjevo/interior/colony_South/power2) +"yfN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 8; + network = null + }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, +/area/kutjevo/interior/complex/Northwest_Flight_Control) +"yfT" = ( +/obj/structure/platform/kutjevo{ + dir = 1 + }, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/floor/coagulation/icon0_8, +/area/kutjevo/interior/construction) "ygh" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/visible{ @@ -17154,6 +15986,9 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/interior/colony_central/mine_elevator) +"ygR" = ( +/turf/open/gm/river/desert/shallow_edge/north, +/area/kutjevo/exterior/runoff_river) "yhm" = ( /obj/structure/bed/chair, /turf/open/floor/kutjevo/tan, @@ -17162,14 +15997,22 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/Northwest_Flight_Control) +"yhP" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/kutjevo/multi_tiles/west, +/area/kutjevo/interior/complex/med/locks) "yir" = ( /turf/open/floor/kutjevo/colors/orange, /area/kutjevo/interior/complex/botany/east) -"yjF" = ( -/turf/open/desert/desert_shore/shore_corner2{ - dir = 8 +"yiX" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/kutjevo/exterior/runoff_bridge) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/colors/purple/edge/north, +/area/kutjevo/interior/construction) "yjI" = ( /turf/open/floor/kutjevo/tan, /area/kutjevo/interior/complex/med/cells) @@ -17189,12 +16032,6 @@ }, /turf/open/floor/kutjevo/colors/cyan, /area/kutjevo/interior/complex/med/cells) -"ykL" = ( -/obj/structure/largecrate/random, -/turf/open/floor/kutjevo/multi_tiles{ - dir = 4 - }, -/area/kutjevo/interior/colony_South/power2) "ykY" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -17210,6 +16047,12 @@ }, /turf/open/floor/plating/kutjevo, /area/kutjevo/exterior/complex_border/med_rec) +"ylC" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/kutjevo/multi_tiles, +/area/kutjevo/exterior/lz_pad) "ymc" = ( /obj/structure/machinery/shower{ name = "automatic sprinkler"; @@ -17935,9 +16778,9 @@ dxF dxF dxF nTw -huR -huR -huR +vXT +vXT +vXT nTw dxF sWF @@ -18102,18 +16945,18 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +vXT +vXT +vXT +iiR sWF sWF -nJp -byO -mkU +xme +cCJ +wln sWF sWF -xTw +jMS sWF sWF dxF @@ -18269,17 +17112,17 @@ dxF dxF dxF dxF -huR -huR -huR -oun +vXT +vXT +vXT +rmM wwQ -oca +jQI fKL opQ xpz sWF -bRa +hlq opQ oor sWF @@ -18436,17 +17279,17 @@ dxF dxF dxF dxF -huR -huR -huR -oun +vXT +vXT +vXT +rmM wwQ -oFX +kos ugw ycq mtG sWF -npx +vQB opQ uXg sWF @@ -18603,12 +17446,12 @@ dxF dxF dxF dxF -huR -huR -huR -oun +vXT +vXT +vXT +rmM wwQ -oFX +kos ugw opQ opQ @@ -18751,13 +17594,13 @@ dxF dxF dxF dxF -ybV -ybV -ybV -ybV -ybV -ybV -ybV +tAg +tAg +tAg +tAg +tAg +tAg +tAg dxF dxF dxF @@ -18770,12 +17613,12 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +vXT +vXT +vXT +iiR sWF -bQk +nyL opQ opQ ksN @@ -18846,19 +17689,19 @@ wGH wGH wGH wGH -cPn -cPn -cPn +ggp +ggp +ggp wGH -cPn +ggp wGH wGH wGH vei wGH -cPn -cPn -cPn +ggp +ggp +ggp wGH wGH wGH @@ -18915,18 +17758,18 @@ dxF dxF dxF dxF -wwc -hrz -arM -ybV -mSG -ybV -mSG -mSG -mSG -ybV -ybV -ybV +fmC +ePd +tJf +tAg +dAm +tAg +dAm +dAm +dAm +tAg +tAg +tAg dxF dxF dxF @@ -18937,12 +17780,12 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +vXT +vXT +vXT +iiR qzj -sOF +qLx swq bsP opQ @@ -19075,26 +17918,26 @@ dxF dxF dxF dxF -hrz +ePd dxF dxF dxF dxF -hrz -hrz -hrz -hrz -hrz -arM -eiX -eiX -eiX -eiX -eiX -eiX -eiX -eiX -ksW +ePd +ePd +ePd +ePd +ePd +tJf +lgU +lgU +lgU +lgU +lgU +lgU +lgU +lgU +mes dxF dxF dxF @@ -19104,12 +17947,12 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +vXT +vXT +vXT +iiR qzj -qfw +jSN rwL opQ dKs @@ -19157,13 +18000,13 @@ dxF dxF dxF osB -bGw -eQK +rcc +dSI kie ibm nPs osB -bFz +fZE ppM fQB fQB @@ -19239,31 +18082,31 @@ dxF dxF dxF dxF -mjW -yfc -tIY -hrz +iMw +dvH +vQF +ePd dxF dxF dxF -hrz -bWA -hrz -hrz -hrz -sVF -iin -iin -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz -hrz +ePd +tHk +ePd +ePd +ePd +biZ +jgA +jgA +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd +ePd dxF dxF dxF @@ -19271,12 +18114,12 @@ dxF dxF dxF dxF -huR -huR -huR -xBm +vXT +vXT +vXT +iiR wwQ -eur +hhb opQ opQ swq @@ -19324,15 +18167,15 @@ dxF dxF nPs ibm -rYs +blw wpq uDP nPs ibm osB -uWk -aHg -acN +vQS +xsm +nPL ppM fQB loe @@ -19345,10 +18188,10 @@ wGH cWV exI nbV -nbV umo nbV nbV +nbV lAI lAI lAI @@ -19368,7 +18211,7 @@ nbV nbV qVc cWV -aRu +djD wGH dxF dxF @@ -19379,7 +18222,7 @@ dxF dxF dxF vei -vsS +cIm bGD oqQ sHu @@ -19406,50 +18249,50 @@ dxF dxF dxF dxF -eFy -dDL -dOU -hrz -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -sVF -sVF -iin -iin -hrz -hrz -bNG -hrz -hrz -sVF -sVF -sVF -hrz -hrz -bWA -hrz +ifh +sXN +soI +ePd +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +biZ +biZ +jgA +jgA +ePd +ePd +sUy +ePd +ePd +biZ +biZ +biZ +ePd +ePd +tHk +ePd dxF dxF dxF dxF -iin -huR -huR -xBm +jgA +vXT +vXT +iiR sWF sWF -khW -dwP -xcI -pHm -dwP -aPl +hHM +jqb +rZu +gRy +jqb +gVr sWF sWF dxF @@ -19491,16 +18334,16 @@ dxF fxL ibm gSr -eDQ -lmK -oFs +vwL +ogQ +uYK nPs nPs fqR -kSo -ckF -bDW -fAF +xze +tsb +bzc +uLi fQB loe mxB @@ -19535,7 +18378,7 @@ lAI nbV usd cWV -aRu +djD vei wGH kVH @@ -19546,7 +18389,7 @@ dxF dxF prJ wGH -dzH +naT rHy prJ aIu @@ -19573,43 +18416,43 @@ dxF dxF dxF dxF -tnI -rfz -dyW -sVF -sVF -sVF -iin -iin -sVF -sVF -hrz -hrz -hrz -sVF -iin -iin -iin -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -hrz -hrz -hrz -hrz -iin -iin -sVF -sVF -huR -huR -xBm -aUF +mRH +adt +hMd +biZ +biZ +biZ +jgA +jgA +biZ +biZ +ePd +ePd +ePd +biZ +jgA +jgA +jgA +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +ePd +ePd +ePd +ePd +jgA +jgA +biZ +biZ +vXT +vXT +iiR +ohU sWF sWF sWF @@ -19666,8 +18509,8 @@ rkt jBJ fOU ibm -rYs -fAF +blw +uLi fQB uam jhS @@ -19702,7 +18545,7 @@ lAI nbV slB cWV -aRu +djD wGH wGH wGH @@ -19713,7 +18556,7 @@ dxF dxF prJ wGH -dzH +naT kvU bGD prJ @@ -19741,50 +18584,50 @@ dxF dxF dxF dxF -iin -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -iin -hrz -hrz -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -sVF -sVF -sVF -sVF -hrz -hrz -hrz -hrz -hrz -sVF -sVF -sVF -huR -huR -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht +jgA +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +jgA +ePd +ePd +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +ePd +ePd +ePd +ePd +ePd +biZ +biZ +biZ +vXT +vXT +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH rzh dxF dxF @@ -19831,13 +18674,13 @@ osB dxF dxF mxB -gfK -eQK -qaY -fAF +lEN +dSI +cil +uLi fQB rYM -sBH +mzo kVJ prJ prJ @@ -19869,7 +18712,7 @@ lAI nbV aKl cWV -aRu +djD qnU wGH wGH @@ -19880,7 +18723,7 @@ wGH prJ prJ wGH -dzH +naT pPJ kvU bGD @@ -19909,49 +18752,49 @@ dxF dxF dxF dxF -hrz -hrz -iin -sVF -qDH -qDH -qDH -iin -iin -iin -iin -iin -sVF -qDH -qDH -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -qDH -qDH -qDH -sVF -sVF -huR -huR -sVF -sVF -sVF -iin -iin -iin -sVF -sVF -sVF -sVF +ePd +ePd +jgA +biZ +bzD +bzD +bzD +jgA +jgA +jgA +jgA +jgA +biZ +bzD +bzD +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +bzD +bzD +bzD +biZ +biZ +vXT +vXT +biZ +biZ +biZ +jgA +jgA +jgA +biZ +biZ +biZ +biZ dxF dxF dxF @@ -19998,13 +18841,13 @@ dxF dxF dxF mxB -uGB -mCo -iob -lYI +jtx +hxS +jIP +cIO fQB rYM -sBH +mzo kVJ wGH wGH @@ -20036,7 +18879,7 @@ cBF nbV qVc cWV -aRu +djD qnU qnU wGH @@ -20047,8 +18890,8 @@ vei wGH prJ wGH -uMg -rih +cAF +rOo pPJ rHy prJ @@ -20076,49 +18919,49 @@ dxF dxF dxF dxF -hrz -iin -iin -sVF -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -lRy -huR -huR -huR -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF +ePd +jgA +jgA +biZ +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +vme +vXT +vXT +vXT +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ dxF dxF dxF @@ -20165,13 +19008,13 @@ dxF dxF dxF mxB -lXe -wsf +rax +lyj fQB fQB fQB rYM -sBH +mzo kVJ wGH vei @@ -20189,7 +19032,7 @@ lAI lAI lAI lAI -gnj +eIg lAI lAI lAI @@ -20203,7 +19046,7 @@ nbV nbV usd cWV -aRu +djD qnU wGH qnU @@ -20215,9 +19058,9 @@ prJ wGH jqt prJ -uMg -lrx -mnk +cAF +nQV +nHz dxF dxF dxF @@ -20243,48 +19086,48 @@ dxF dxF dxF dxF -hrz -iin -sVF -oJE -xBm -tGE -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -wrk -ccs -hnq -dhL -tGE -xBm -huR -huR -huR -sVF -sVF -qDH -qDH -qDH -qDH -qDH -sVF -sVF +ePd +jgA +biZ +pvb +iiR +eIP +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +ylC +eit +dbw +tew +eIP +iiR +vXT +vXT +vXT +biZ +biZ +bzD +bzD +bzD +bzD +bzD +biZ +biZ dxF dxF dxF @@ -20333,12 +19176,12 @@ dxF dxF mxB mxB -ebP +oVt han fQB fQB rYM -sBH +mzo kVJ wGH wGH @@ -20370,7 +19213,7 @@ nbV nbV slB cWV -aRu +djD wGH wGH wGH @@ -20410,17 +19253,17 @@ dxF dxF dxF dxF -iin -sVF -hrz -sVF -xBm -wvX -hzN +jgA +biZ +ePd +biZ +iiR +ycu hzN wqk hzN hzN +hzN ppX ppX ppX @@ -20438,20 +19281,20 @@ hzN wqk hzN hzN -dpt -xBm -huR -huR -huR -sVF -oJE -lRy -dht -dht -dht -lRy -qnd -xrT +tCJ +iiR +vXT +vXT +vXT +biZ +pvb +vme +jZH +jZH +jZH +vme +wgi +qdA dxF dxF dxF @@ -20537,7 +19380,7 @@ lAI nbV aKl cWV -aRu +djD gZj wGH wGH @@ -20576,13 +19419,13 @@ dxF dxF dxF dxF -iin -iin -sVF -hrz -sVF -xBm -sUt +jgA +jgA +biZ +ePd +biZ +iiR +bAp hzN hzN hzN @@ -20605,20 +19448,20 @@ hzN hzN ppX hzN -lNl -xBm -huR -huR -huR -sVF -oJE -xBm -uTr -mfk -mfk -xBm -qnd -sVF +bce +iiR +vXT +vXT +vXT +biZ +pvb +iiR +hkc +vLw +vLw +iiR +wgi +biZ dxF dxF dxF @@ -20704,7 +19547,7 @@ lAI cBF qVc cWV -aRu +djD wGH wGH jqt @@ -20743,13 +19586,13 @@ dxF dxF dxF dxF -iin -bGg -sVF -hrz -oJE -xBm -saK +jgA +emJ +biZ +ePd +pvb +iiR +cVE hzN hzN hzN @@ -20772,21 +19615,21 @@ ppX hzN ppX hzN -qTI -xBm -huR -huR -sVF -sVF -oJE -xBm -rlI -pRL -vrB -xBm -qnd -sVF -pkP +kMJ +iiR +vXT +vXT +biZ +biZ +pvb +iiR +dca +pdj +pkJ +iiR +wgi +biZ +mXK pkP pkP hrz @@ -20871,7 +19714,7 @@ lAI cBF usd cWV -aRu +djD wGH wGH jqt @@ -20910,13 +19753,13 @@ dxF dxF dxF dxF -iin -sVF -sVF -sVF -oJE -xBm -sLf +jgA +biZ +biZ +biZ +pvb +iiR +kVY hzN ppX ppX @@ -20939,23 +19782,23 @@ ppX ppX ppX hzN -wXf -xBm -huR -huR -sVF -iin -oJE -xBm -fmN -fmN -fmN -xBm -qnd -sVF -mar +rpF +iiR +vXT +vXT +biZ +jgA +pvb +iiR +twF +twF +twF +iiR +wgi +biZ +oFe ggC -mar +ivH hrz hrz hrz @@ -21015,10 +19858,10 @@ wGH cWV uhO bbc -nbV umo nbV nbV +nbV lAI lAI lAI @@ -21077,13 +19920,13 @@ dxF dxF dxF dxF -iin -sVF -sVF -sVF -oJE -xBm -wvX +jgA +biZ +biZ +biZ +pvb +iiR +ycu hzN ppX ppX @@ -21106,23 +19949,23 @@ ppX hzN eBI hzN -dpt -xBm -huR -huR -sVF -iin -oJE -xBm -wlg -vPm -vPm -xBm -qnd -sVF -mar +tCJ +iiR +vXT +vXT +biZ +jgA +pvb +iiR +kbl +gMA +gMA +iiR +wgi +biZ +oFe ggC -mar +ivH hrz hrz hrz @@ -21170,10 +20013,10 @@ dxF dxF mxB jhS -pks -pks -pks -pks +nAQ +nAQ +nAQ +nAQ jhS mxB dxF @@ -21244,13 +20087,13 @@ dxF dxF dxF dxF -iin -iin -sVF -hrz -oJE -xBm -sUt +jgA +jgA +biZ +ePd +pvb +iiR +bAp hzN ppX ppX @@ -21261,7 +20104,7 @@ ppX ppX ppX ppX -lkY +qOK ppX ppX ppX @@ -21273,23 +20116,23 @@ ppX hzN hzN hzN -lNl -xBm -huR -huR -sVF -sVF -oJE -xBm -qUC -kVA -fmN -xBm -qnd -sVF -mar +bce +iiR +vXT +vXT +biZ +biZ +pvb +iiR +cDm +waw +twF +iiR +wgi +biZ +oFe ggC -mar +ivH sVF hrz hrz @@ -21305,7 +20148,7 @@ sVF mgn mgn mgn -vqQ +bIy jFf dxF dxF @@ -21411,13 +20254,13 @@ dxF dxF dxF dxF -hrz -iin -hrz -iin -iin -xBm -saK +ePd +jgA +ePd +jgA +jgA +iiR +cVE hzN ppX ppX @@ -21440,23 +20283,23 @@ ppX hzN hzN hzN -qTI -xBm -huR -huR -sVF -sVF -oJE -lRy -dht -dht -dht -lRy -qnd -sVF -mar +kMJ +iiR +vXT +vXT +biZ +biZ +pvb +vme +jZH +jZH +jZH +vme +wgi +biZ +oFe pkP -mar +ivH iin hrz hrz @@ -21504,10 +20347,10 @@ sPE xpd mxB tlN -dLZ -dLZ -dLZ -dLZ +vAg +vAg +vAg +vAg tlN tlN tlN @@ -21518,22 +20361,22 @@ wGH wGH wGH vei -gAM +oEQ vei prJ vei -gAM -gAM -gAM +oEQ +oEQ +oEQ wGH -gAM -gAM -gAM +oEQ +oEQ +oEQ vei vei -gAM -gAM -gAM +oEQ +oEQ +oEQ wGH wGH wGH @@ -21578,13 +20421,13 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz -oJE -xBm -mIT +ePd +ePd +ePd +ePd +pvb +iiR +fXs hzN ppX ppX @@ -21607,23 +20450,23 @@ ppX ppX ppX hzN -wXf -xBm -huR -huR -huR -sVF -sVF -rSU -rSU -rSU -rSU -rSU -sVF -sVF -mar +rpF +iiR +vXT +vXT +vXT +biZ +biZ +hJd +hJd +hJd +hJd +hJd +biZ +biZ +oFe ggC -mar +ivH hrz hrz hrz @@ -21671,11 +20514,11 @@ bff oqw mHo ozs -lzb -lzb -lzb -lzb -lzb +hsB +hsB +hsB +hsB +hsB vre tlN dxF @@ -21745,13 +20588,13 @@ dxF dxF dxF dxF -hrz -mao -hrz -iin -oJE -xBm -wvX +ePd +kJa +ePd +jgA +pvb +iiR +ycu hzN hzN hzN @@ -21774,23 +20617,23 @@ ppX hzN ppX eBI -dpt -xBm -huR -huR -huR -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -bGg -mar +tCJ +iiR +vXT +vXT +vXT +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +emJ +oFe ggC -mar +ivH hrz hrz hrz @@ -21837,13 +20680,13 @@ mxB mxB mxB tlN -tSs +aYf xzY xzY xzY xzY xzY -qEx +kEn pyp dxF dxF @@ -21912,13 +20755,13 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz -iin -xBm -sUt +ePd +ePd +ePd +ePd +jgA +iiR +bAp hzN hzN hzN @@ -21941,23 +20784,23 @@ hzN hzN ppX eBI -lNl -xBm -huR -huR -huR -sVF -hrz -sVF -sVF -sVF -sVF -tjJ -sVF -sVF -mar +bce +iiR +vXT +vXT +vXT +biZ +ePd +biZ +biZ +biZ +biZ +asR +biZ +biZ +oFe ggC -mar +ivH hrz hrz hrz @@ -22004,13 +20847,13 @@ dxF dxF dxF tlN -cso +qSO boR -hkY -pKO +fbI +ndC tXm boR -cso +qSO tlN dxF dxF @@ -22079,18 +20922,18 @@ dxF dxF dxF dxF -hrz -hrz -hrz -hrz -oJE -xBm -saK -hzN +ePd +ePd +ePd +ePd +pvb +iiR +cVE hzN wqk hzN hzN +hzN ppX ppX ppX @@ -22108,19 +20951,19 @@ hzN wqk hzN hzN -qTI -xBm -huR -huR -huR -lRy -dht -dht -dht -dht -dht -dht -dht +kMJ +iiR +vXT +vXT +vXT +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH hoK hoK hoK @@ -22171,13 +21014,13 @@ tlN tlN tlN tlN -fQC +svo boR tXm tWM tXm boR -giM +ttw tlN dfa eRE @@ -22246,51 +21089,51 @@ dxF dxF dxF dxF -hrz -hrz -hrz -sVF -oJE -xBm -tGE -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -xDR -tHI -pPz -jUK -tGE -xBm -huR -huR -huR -xBm -aUF -aUF -aUF -aUF -aUF -aUF +ePd +ePd +ePd +biZ +pvb +iiR +eIP +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +gxY +nwO +wSd +azP +eIP +iiR +vXT +vXT +vXT +iiR +ohU +ohU +ohU +ohU +ohU +ohU hoK hoK hbL -hhu +grv hoK hoK dxF @@ -22336,10 +21179,10 @@ jwM ter tPh jvp -rvZ +uYh oru xrb -jtu +ihp boR boR boR @@ -22413,42 +21256,42 @@ dxF dxF dxF dxF -hrz -hrz -sVF -sVF -oJE -lRy -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -dht -lRy -huR -huR -huR -lxN -aUF +ePd +ePd +biZ +biZ +pvb +vme +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +jZH +vme +vXT +vXT +vXT +uwA +ohU hoK hoK dkW @@ -22456,9 +21299,9 @@ uIF hoK hoK oaG -btc -luO -qEq +vNq +tKq +yba hoK dxF dxF @@ -22490,8 +21333,8 @@ dxF dxF dxF dxF -mbh -rsV +fbV +cOP xYt dxF tlN @@ -22502,16 +21345,16 @@ pla boR tWM tWM -kMP -kMP -qGQ -aAe -kMP -kMP -kMP -bne -kMP -kMP +iuM +iuM +wob +wtO +iuM +iuM +iuM +cAi +iuM +iuM pmu qzd ubV @@ -22521,8 +21364,8 @@ vei prJ prJ piq -mhJ -qGJ +cOU +ecg tQi vei wGH @@ -22580,49 +21423,49 @@ dxF dxF dxF dxF -hrz -iin -sVF -sVF -bGg -rSU -rSU -rSU -sVF -rSU -rSU -sVF -rSU -rSU -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -rSU -sVF -huR -huR -huR -xBm -aUF +ePd +jgA +biZ +biZ +emJ +hJd +hJd +hJd +biZ +hJd +hJd +biZ +hJd +hJd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +hJd +biZ +vXT +vXT +vXT +iiR +ohU hoK lOr -iNY -iNY -uaj +ejF +ejF +xrL hoK -wDk +vDr cid nZK jnr @@ -22657,7 +21500,7 @@ dxF dxF dxF dxF -dsp +aJQ dJs xIk bXl @@ -22669,16 +21512,16 @@ moL boR tWM tWM -kMP -kMP -qGQ -aAe -kMP -wIR -kMP -kMP -kMP -kMP +iuM +iuM +wob +wtO +iuM +oYn +iuM +iuM +iuM +iuM pmu qzd ubV @@ -22688,8 +21531,8 @@ prJ prJ prJ piq -cLQ -qru +hNI +bxF tQi wGH vei @@ -22746,51 +21589,51 @@ dxF dxF dxF dxF -iin -iin -iin -iin -sVF -hrz -sVF -sVF -sVF -sVF -sVF -sVF -sVF -sVF -hrz -sVF -sVF -hrz -hrz -hrz -hrz -iin -iin -oKx -oKx -sVF -qDH -qDH -qDH -qDH -qDH -sVF -huR -huR -huR -xBm -aUF +jgA +jgA +jgA +jgA +biZ +ePd +biZ +biZ +biZ +biZ +biZ +biZ +biZ +biZ +ePd +biZ +biZ +ePd +ePd +ePd +ePd +jgA +jgA +ubz +ubz +biZ +bzD +bzD +bzD +bzD +bzD +biZ +vXT +vXT +vXT +iiR +ohU uAJ -iZi +lvC nZK lVt -pmo -gFt -onC -tgl +wVI +xUz +tlF +xtb nZK jnr hoK @@ -22824,9 +21667,9 @@ dxF dxF dxF dxF -gxs -kjo -umQ +xOS +dyn +xfK bXl fFH rwX @@ -22914,44 +21757,44 @@ dxF dxF dxF dxF -iin -iin -iin -iin -iin -iin -iin -sVF -sVF -sVF -sVF -sVF -dFx -hrz -hrz -hrz -hrz -hrz -sVF -hrz -hrz -hrz -hrz -oKx -sVF -gTO -dht -dht -dht -lRy -qnd -huR -huR -huR -xBm -aUF +jgA +jgA +jgA +jgA +jgA +jgA +jgA +biZ +biZ +biZ +biZ +biZ +cQg +ePd +ePd +ePd +ePd +ePd +biZ +ePd +ePd +ePd +ePd +ubz +biZ +qNY +jZH +jZH +jZH +vme +wgi +vXT +vXT +vXT +iiR +ohU hEC -ipy +oiS nZK yhA nZK @@ -22995,24 +21838,24 @@ sYd sYd sYd sYd -xjf -aAe -kMP -kMP -dga -kMP +vIY +wtO +iuM +iuM +gme +iuM tWM tWM mkJ tlN tlN -fQC +svo boR tWM tWM tWM boR -giM +ttw tlN dfa eRE @@ -23086,39 +21929,39 @@ dxF dxF dxF rzh -dht -bEn -bEn -dht -dht -dht -xAr -dht -xAr -wvg -dht -dht -dht -dht -lRy -hrz -hrz -hrz -hrz -eqQ -xFN -cYb -gmA -juC -xBm -qnd -huR -huR -huR -xBm -aUF +jZH +jei +jei +jZH +jZH +jZH +lNt +jZH +lNt +axL +jZH +jZH +jZH +jZH +vme +ePd +ePd +ePd +ePd +pDZ +ejZ +oSQ +tah +uuq +iiR +wgi +vXT +vXT +vXT +iiR +ohU uAJ -rjz +lGy nZK nZK nZK @@ -23162,24 +22005,24 @@ sYd sYd sYd sYd -qGQ -bNN -nDF -kMP -dxL -kMP +wob +dVY +pEK +iuM +gvA +iuM tWM tWM cRo tlN kfe -dux +aTm boR tXm tWM tXm boR -dux +aTm tlN iaj iaj @@ -23265,32 +22108,32 @@ uzp acx jnV jnV -aUF -aUF -xBm -hrz -hrz -hrz -hrz -oJE -xBm -fmN -vPm -uTr -mWv -bdd -huR -huR -huR -xBm -gzb +ohU +ohU +iiR +ePd +ePd +ePd +ePd +pvb +iiR +twF +gMA +hkc +jlf +hro +vXT +vXT +vXT +iiR +oOH hEC -fEu +djy nZK nZK -sgc -gby -oOd +nuf +puz +lqu nZK nZK vKV @@ -23340,13 +22183,13 @@ tWM xZr tlN kfe -dux +aTm vXq kKb tWM tXm boR -dux +aTm tlN iaj iaj @@ -23419,48 +22262,48 @@ dxF jnV jnV gAt -sjE -sjE -uHg -upp +tdf +tdf +bZU +uLt bET jnV xZz -vCx -vXs -sjE -sjE +lgh +prl +tdf +tdf pHR jnV jnV -aUF -xBm -sVF -hrz -hrz -hrz -oJE -xBm -kDD -vPm -vPm -rdx -bdd -huR -huR -huR -xBm -aUF +ohU +iiR +biZ +ePd +ePd +ePd +pvb +iiR +uwj +gMA +gMA +mCP +hro +vXT +vXT +vXT +iiR +ohU hoK -pLN -fYE +omi +iYu nZK jnr hoK -fEu +djy xNF -sgc -pio +nuf +nxA hoK dxF dxF @@ -23507,13 +22350,13 @@ tWM wtZ tlN kfe -dux +aTm boR tXm jFB kKb vXq -dux +aTm tlN iaj iaj @@ -23585,14 +22428,14 @@ dxF dxF jnV hst -uHg +bZU cWc cWc cWc tiL jPD jnV -qqV +uWF hPH laI cWc @@ -23601,30 +22444,30 @@ cWc hst jnV jnV -xBm -sVF -fYF -hrz -hrz -oJE -xBm -fmN -vPm -fmN -ctA -qnd -huR -huR -huR -xBm -aUF +iiR +biZ +unW +ePd +ePd +pvb +iiR +twF +gMA +twF +fzb +wgi +vXT +vXT +vXT +iiR +ohU hoK hoK -ybd +eAF nZK jnr hoK -fEu +djy xNF jnr hoK @@ -23751,7 +22594,7 @@ dxF dxF dxF jnV -bmZ +jbj cWc cWc cWc @@ -23759,7 +22602,7 @@ cWc cWc mLe jnV -quu +jBw cWc cWc cWc @@ -23768,30 +22611,30 @@ cWc cWc dfz jnV -xBm -sVF -fSK -sVF -sVF -oJE -xBm -fmN -vPm -bGi -xBm -bdd -huR -huR -huR -xBm -aUF +iiR +biZ +aBc +biZ +biZ +pvb +iiR +twF +gMA +nCS +iiR +hro +vXT +vXT +vXT +iiR +ohU hoK hoK -nmw +uvq nZK jnr hoK -rFu +bTm nZK jnr hoK @@ -23918,50 +22761,50 @@ dxF dxF dxF jnV -bMu +ebF cWc cWc pfe cWc cWc -upp +uLt pma -qRp +xAl cWc cWc cWc cWc cWc cWc -kSy +cVh pma -wEU -sVF -iiy -sVF -bGg -sVF -xBm -xcG -vPm -fmN -xBm -iin -huR -huR -huR -xBm -aUF +qEV +biZ +bIG +biZ +emJ +biZ +iiR +asb +gMA +twF +iiR +jgA +vXT +vXT +vXT +iiR +ohU hoK nPH -onC +tlF nZK jnr hoK -jng +xNo nZK -pmo -qEq +wVI +yba hoK dxF dxF @@ -24005,16 +22848,16 @@ moL boR nQr tWM -kMP -xnk -qGQ -aAe -kMP -lov -kMP -fyB -nDF -kMP +iuM +fFz +wob +wtO +iuM +dtU +iuM +rmp +pEK +iuM pmu qzd qzd @@ -24045,15 +22888,15 @@ ich jqt pyp pyp -aHW +pyp uPu vYI vYI vYI uCR -aHW -aHW -aHW +pyp +pyp +pyp aHW rwj rwj @@ -24085,47 +22928,47 @@ dxF dxF dxF jnV -hCl +lWx cWc -jiX -mLY -mLY -mLY -mLY +yaN +lrU +lrU +lrU +lrU fto -iYO +dQx cWc jcL cWc cWc tiL cWc -jiX +yaN fto -pUB -sVF -arh -sVF -sVF -iin -xBm -dpH -aIy -vPm -xBm -iin -huR -huR -huR -xBm -aUF +kwG +biZ +apu +biZ +biZ +jgA +iiR +bRj +eOK +gMA +iiR +jgA +vXT +vXT +vXT +iiR +ohU uAJ -xhZ +fQm nZK nZK -gFo -gwv -onC +hQE +lij +tlF rKJ nZK jnr @@ -24172,16 +23015,16 @@ nJY wiH tWM tWM -kMP -eTy -qGQ -aAe -kMP -xYR -kMP -kMP -kMP -kMP +iuM +aQg +wob +wtO +iuM +wof +iuM +iuM +iuM +iuM pmu qzd qzd @@ -24221,19 +23064,19 @@ voy aHW aHW aHW -pXf -vCT -iCG +azm +rkx +lNH aHW evZ hQj evZ aHW -dtM -arr -uNI -nHU -nHU +tKH +mwr +tLU +uFz +uFz "} (43,1,1) = {" ybY @@ -24252,7 +23095,7 @@ dxF dxF dxF jnV -coF +lKt cWc jPD jnV @@ -24260,7 +23103,7 @@ jnV jnV jnV jnV -sit +juW lSc cWc cWc @@ -24269,25 +23112,25 @@ lSc lSc fto jnV -xBm -sVF -sVF -sVF -sVF -iin -xBm -vUS -aIy -juC -xBm -qnd -sVF -huR -kZV -xBm -aUF +iiR +biZ +biZ +biZ +biZ +jgA +iiR +eZi +eOK +uuq +iiR +wgi +biZ +vXT +kFx +iiR +ohU uAJ -jOA +hFG nZK nZK yhA @@ -24367,40 +23210,40 @@ wGH jqt jqt prJ -vcT -azO -azO -azO -azO -azO -azO -azO -cun +oQP +cYN +cYN +cYN +cYN +cYN +cYN +cYN +pbI pyp pyp nXX thu -cvm +vqO hQj hQj hQj -dAB +wrU rwj muG muG qVZ -tuW -gtE +sGn +hPp byl evZ -kdY +flc evZ byl -iXj -qAP -gWo -mNl -mNl +txE +fWZ +pJX +kGC +kGC "} (44,1,1) = {" ybY @@ -24419,15 +23262,15 @@ dxF dxF dxF jnV -dgV +stp cWc -upp +uLt jnV -egL -sjE +fSo +tdf nLR jnV -ufp +ooL iXh vYF cWc @@ -24436,30 +23279,30 @@ iXh ntz jnV jnV -xBm -sVF -sVF -sVF -sVF -oJE -xBm -fmN -dpH -juC -xBm -qnd -iin -huR -huR -xBm -gzb +iiR +biZ +biZ +biZ +biZ +pvb +iiR +twF +bRj +uuq +iiR +wgi +jgA +vXT +vXT +iiR +oOH hEC -fKD +tOO nZK nZK nZK nZK -kIc +mbB nZK nZK jnr @@ -24533,41 +23376,41 @@ jqt jqt jqt jqt -vcT -tjS -iSN -nQo -kNq +oQP +qKA +gYK +mfT +bfj gWd gWd -iSN -nQo -ozl -vin +gYK +mfT +mMd +iHm pBV hQj xzY -cvm -kdY -kdY -kdY -cvm +vqO +flc +flc +flc +vqO rwj wMw wMw wMw -eJi -kbg +hBj +xyQ byl evZ hQj evZ byl -iXj -qwg -eKr -qAP -mNl +txE +qhb +pVO +fWZ +kGC "} (45,1,1) = {" ybY @@ -24586,7 +23429,7 @@ dxF dxF dxF jnV -feQ +iYj cWc cWc ujT @@ -24595,10 +23438,10 @@ cWc mLe jnV wno -vER -wnK -mLY -awJ +thE +gwA +lrU +mYN hmi jnV jnV @@ -24606,27 +23449,27 @@ jnV rzh dxF dxF -iCQ -sVF -sVF -lRy -dht -dht -dht -lRy -qnd -iin -huR -huR -xBm -aUF +pDa +biZ +biZ +vme +jZH +jZH +jZH +vme +wgi +jgA +vXT +vXT +iiR +ohU uAJ -iZi +lvC nZK nZK -sgc -qUZ -ieA +nuf +kLg +lhF nZK wZw jnr @@ -24682,15 +23525,15 @@ boR hnZ boR ezX -kMx -xjg -uqL -azO -azO -azO -azO -azO -azO +soj +kqS +fZy +cYN +cYN +cYN +cYN +cYN +cYN qzY fcB qzd @@ -24699,42 +23542,42 @@ qzd iaj iaj qzd -vcT -tjS -iSN -eyU -apD -dfY +oQP +qKA +gYK +xlr +jrh +eot gWd gWd -dTp +gOA sOJ -oOO -vin +bCg +iHm pBV hQj xzY -cvm +vqO hQj hQj hQj -cvm +qGf rwj uZT uZT uZT -fdF -kbg +aQd +xyQ byl evZ -kdY +flc evZ byl -iem -qAP -qAP -mNl -mNl +iLY +fWZ +fWZ +kGC +kGC "} (46,1,1) = {" ybY @@ -24753,11 +23596,11 @@ dxF dxF dxF jnV -ior +bCJ cWc -kqE +aqY jnV -nDn +wgs cWc old jnV @@ -24775,25 +23618,25 @@ dxF dxF dxF dxF -sVF -rSU -rSU -rSU -rSU -rSU -sVF -sVF -huR -huR -xBm -aUF +biZ +hJd +hJd +hJd +hJd +hJd +biZ +biZ +vXT +vXT +iiR +ohU hoK -xca -pyZ -vls -pbP +oXg +ovr +jVj +rzL hoK -dYa +xws nZK cid vxM @@ -24843,65 +23686,65 @@ sYd sYd gzv ezX -mZE +fYp lkP esi tXm -mZE +fYp ezX -kMx +soj kdf cNE -nQo -nQo -nQo -nQo -nQo -kNq +mfT +mfT +mfT +mfT +mfT +bfj dob -azO -azO -azO -azO -azO -azO -azO -tjS -iSN -eyU -apD -dfY -nLT -xpk -xpk -aWt -uGd +cYN +cYN +cYN +cYN +cYN +cYN +cYN +qKA +gYK +xlr +jrh +eot +fHb +vAr +vAr +kMn +oaR fkP -vin +iHm pyp -wNh +gci xzY -cvm +vqO hQj hQj hQj -cvm +qGf aHW aHW aHW -pXf -sVc -kbg +azm +lYQ +xyQ aHW awa fRI uqR aHW -iXj -qwg -mNl -mNl -mNl +txE +qhb +kGC +kGC +kGC "} (47,1,1) = {" ybY @@ -24920,11 +23763,11 @@ dxF dxF dxF jnV -gws +ivK cWc jPD jnV -wFR +uHb cWc mLe jnV @@ -24960,10 +23803,10 @@ dkW uIF hoK hoK -fVm -cjC -rWY -xBl +oZr +ddb +xVo +eyl hoK dxF dxF @@ -25010,65 +23853,65 @@ bXl sYd gzv ezX -mZE +fYp tXm wqD tXm -lac +qeZ tlN -kMx +soj kdf -dsp +aJQ sDG sDG sDG sDG sDG -mVr -nQo -kNq -nLT -xpk -xpk -xpk -aWt +iim +mfT +bfj +fHb +vAr +vAr +vAr +kMn gWd -iSN -eyU +gYK +xlr sDG qhi -nLT -jyz +fHb +xVs sCA ddq -mqu -uGd +kKD +oaR fkP -vin +iHm pBV hQj xzY -cvm -kdY -kdY -kdY -cvm +vqO +flc +flc +flc +jJh rwj muG muG qVZ -tuW -kbg +sGn +xyQ byl sTC -kdY +flc pvL byl -iXj -qwg -sUC -eKr -mNl +txE +qhb +vqY +pVO +kGC "} (48,1,1) = {" ybY @@ -25088,11 +23931,11 @@ dxF dxF jnV xWn -iYO +dQx jPD jnV nLR -mLY +lrU nLR jnV dxF @@ -25128,8 +23971,8 @@ aUF aUF hoK hoK -ekw -kAf +yfN +kHl hoK hoK dxF @@ -25177,65 +24020,65 @@ sYd sYd gzv ezX -aCo +sIx tXm tXm esi -mZE +fYp ezX -kMx +soj kdf kdf -mIA -tUz -pjH -tUz -tUz -tUz +lav +kCf +bBL +kCf +kCf +kCf sOJ qhi mQl ueO jXq ddq -mqu +kKD gWd -uGd +oaR sDG sDG qhi dob -azO -azO -azO -tjS -uGd +cYN +cYN +cYN +qKA +oaR fkP -vin +iHm pBV -hQj +rHb uBz -cvm +vqO hQj hQj hQj -cvm +sbp rwj wMw wMw wMw -bVB -kbg +yce +xyQ byl vFv hQj evZ byl -iXj -qwg -qwg -flP -mNl +txE +qhb +qhb +nNl +kGC "} (49,1,1) = {" ybY @@ -25345,64 +24188,64 @@ sYd pBi tlN rlM -lsy -kdY -kdY +eNp +flc +flc iGd pBV -kMx -nWo -cBi -vYC -xpk -xpk -xpk -xpk -aWt -dTp -dfY +soj +hIW +jix +vQv +vAr +vAr +vAr +vAr +kMn +gOA +eot dob -azO -azO -azO -tjS +cYN +cYN +cYN +qKA gWd -dTp +gOA sOJ sDG -mVr -kNq +iim +bfj gWd gWd gWd -iSN -eyU -dyU +gYK +xlr +ryQ pyp pyp -hQj +sNp pyp xjY xjY xjY xjY -voy +oiz rwj uZT uZT uZT -fdF -sYV +aQd +rlO byl evZ -kdY +flc sTC byl -iXj -qwg -flP -mNl -mNl +txE +qhb +nNl +kGC +kGC "} (50,1,1) = {" ybY @@ -25422,8 +24265,8 @@ dxF dxF jnV hCh -uHg -upp +bZU +uLt lbF jnV dxF @@ -25495,8 +24338,8 @@ bXl kIn bXl bXl -fui -rsV +pxz +cOP xYt via bEp @@ -25525,30 +24368,30 @@ cTz goT goT goT -oqg -xpk -xpk -xpk -xpk -xpk -xpk -xpk -xpk -aWt -dTp -tUz -tUz -dfY +eAE +vAr +vAr +vAr +vAr +vAr +vAr +vAr +vAr +kMn +gOA +kCf +kCf +eot gWd gWd gWd -dTp -tUz -dfY +gOA +kCf +eot +pyp pyp pyp pyp -aHW yas ddk ddk @@ -25557,19 +24400,19 @@ iHk aHW aHW aHW -pXf -prv -gwC +azm +ovw +bxG aHW evZ cvV evZ aHW -rjS -ird -ird -ird -ird +eSa +jEw +jEw +jEw +jEw "} (51,1,1) = {" ybY @@ -25588,7 +24431,7 @@ dxF dxF dxF jnV -wFR +uHb pfe cWc mLe @@ -25662,7 +24505,7 @@ bXl sYd bXl bEp -dsp +aJQ dJs jvt bTa @@ -25701,28 +24544,28 @@ qzd qzd qzd fcB -oqg -xpk -xpk -aWt +eAE +vAr +vAr +kMn gWd gWd gWd -nLT -xpk -xpk -xpk -tQB +fHb +vAr +vAr +vAr +hri ePx pBV -sID +oed vdl xzY xzY xzY hdQ xHm -cvm +vqO aHW aHW rwj @@ -25755,10 +24598,10 @@ dxF dxF dxF jnV -hRm +fyn cWc jec -rEs +hZM hXt dxF dxF @@ -25829,9 +24672,9 @@ bXl kIn bEp bEp -gxs -kjo -umQ +xOS +dyn +xfK bEp bEp bEp @@ -25871,25 +24714,25 @@ iaj ubV ePx ePx -oqg -xpk -xpk -xpk -jyz +eAE +vAr +vAr +vAr +xVs ePx ePx nah xXI cTz pBV -qdj +fOu xzY oum hQj psz xVt xHm -cvm +vqO fRI hQj okU @@ -25923,7 +24766,7 @@ dxF dxF jnV pWt -jEh +rgR kwM mLe jnV @@ -26049,13 +24892,13 @@ qjz niT cTz pBV -qdj +fOu xzY hQj hQj hQj jrs -uTn +hqw dzD hQj hQj @@ -26091,7 +24934,7 @@ dxF jnV fto iPk -mLY +lrU nwz hXt dxF @@ -26216,18 +25059,18 @@ soe gCb cTz pBV -qdj +fOu oKA hQj hQj hQj dXC -gxD +aXJ fRI hQj hQj hQj -lVo +bcV fRI hQj hQj @@ -26389,12 +25232,12 @@ hQj hQj hQj mDl -eNK +eLf dzD hQj avX kbL -cvm +vqO hQj hQj akH @@ -26549,7 +25392,7 @@ cTz cTz ePx ePZ -nZv +vlZ ePZ xzY hQj @@ -26557,11 +25400,11 @@ hQj hQj waW xHm -cvm +vqO hQj hQj hQj -lVo +bcV iLF hQj pnM @@ -26724,7 +25567,7 @@ hQj hQj uAh xHm -cvm +vqO hQj hQj hQj @@ -27217,15 +26060,15 @@ cTz cTz cTz ePZ -boa +gHI ePZ -cvm +vqO yas szF -grp +lsL yas szF -rvt +sSm xzY hQj xzY @@ -27319,7 +26162,7 @@ sYd bXl bXl bXl -vzy +bXl sYd bXl sYd @@ -27386,10 +26229,10 @@ cTz pyp pyp pyp -vbV +fAY pFZ jKc -uma +dBg pFZ jKc pyp @@ -27556,7 +26399,7 @@ pyp pyp pFZ jKc -rmG +cJz pFZ cKI pBV @@ -27674,11 +26517,11 @@ swl dNg bXl bXl -uSG +iRq oOs naK oOs -uSG +iRq prU ePx ePx @@ -27811,7 +26654,7 @@ sYd bXl sYd rfZ -mIg +tGN mDN wei wei @@ -27841,11 +26684,11 @@ bEp dNg bXl kIn -uSG +iRq trU uRm rID -uSG +iRq mXZ ePx ePx @@ -27972,7 +26815,7 @@ bXl sYd sYd sYd -pqs +rgE gAu bXl bXl @@ -28008,11 +26851,11 @@ bEp dNg bXl sYd -uSG +iRq trU uRm gmS -uSG +iRq uRP cTz ePx @@ -28092,7 +26935,7 @@ dxF dxF dxF mjg -qVe +kgz dew mNa nKs @@ -28139,7 +26982,7 @@ sYd bXl bXl kIn -oeE +sml gAu sYd sYd @@ -28175,11 +27018,11 @@ dez eLO bXl kIn -uSG +iRq trU uRm rID -uSG +iRq pVd ePx ePx @@ -28196,10 +27039,10 @@ goT ePx ePx ePx -rJU -vbA -vbA -vbA +lLZ +wZs +wZs +wZs xkb cTz ePx @@ -28342,11 +27185,11 @@ bXl sYd bXl bXl -uSG +iRq ymc uRm gmS -uSG +iRq mXZ ePx cTz @@ -28363,10 +27206,10 @@ gbv oPb oPb uBc -iJq -clo -cKi -goh +fHH +hMa +gjr +pBA dWO ePx cTz @@ -28468,9 +27311,9 @@ bXl sYd sYd rfZ -rno -pqs -txe +xrX +rgE +ghK vpq kIn bXl @@ -28509,11 +27352,11 @@ bXl bXl bXl bXl -uSG +iRq trU uRm rID -uSG +iRq pVd cTz hii @@ -28531,7 +27374,7 @@ oPb oPb uQC cOt -jOx +mZi rzc tax dWO @@ -28635,8 +27478,8 @@ bXl sYd pEJ rfZ -dFk -oeE +aZV +sml una ujG bXl @@ -28676,11 +27519,11 @@ bXl bXl sYd bXl -uSG +iRq lrO -kPw +kMK lrO -uSG +iRq hqO ePx hii @@ -28697,10 +27540,10 @@ gbv oPb oPb oPb -qFU -vkK -dDm -lVO +vip +syV +inV +kCJ dWO ePx goT @@ -28802,7 +27645,7 @@ bXl bXl bXl rfZ -oeE +sml una ujG kIn @@ -28864,11 +27707,11 @@ goT ePx ePx fRu -aog -qFU +kpC +vip pCj -xoV -tQB +oyO +hri cTz cTz abG @@ -29032,9 +27875,9 @@ ePx rej cTz cTz -aog -twq -tQB +kpC +xgz +hri tIF ePx goT @@ -29067,7 +27910,7 @@ dxF dxF dxF lXN -nFY +ogZ lXN dxF dxF @@ -29516,11 +28359,11 @@ sYd raN raN dDj -arG +kif fyD fyD fyD -arG +kif dDj raN raN @@ -29620,9 +28463,9 @@ sYd sYd sYd pBi -mYj -lyJ -goa +nlR +jNB +mGA mkO sYd pCS @@ -29683,11 +28526,11 @@ sYd raN raN dDj -arG +kif uBO fyD uKx -arG +kif dDj raN raN @@ -29787,9 +28630,9 @@ sYd sYd sYd pBi -iyP +hoc qVg -dsi +xPB ddH sYd pCS @@ -29810,8 +28653,8 @@ sYd xYs wix jFk -ckC -pqs +vfw +rgE bEp bEp bEp @@ -29850,11 +28693,11 @@ bXl sYd ewL plf -pIK +joc fyD fyD fyD -arG +kif plf goT goT @@ -29954,9 +28797,9 @@ sYd sYd sYd pBi -nzQ -elo -wgK +hnw +jTt +xiZ ddH sYd pCS @@ -29975,9 +28818,9 @@ sYd sYd sYd rfZ -rno -pEg -jqy +xrX +rYh +cUB bEp bEp bEp @@ -30017,11 +28860,11 @@ tKY knP wWq plf -arG +kif cEd tiW fyD -arG +kif plf xSn stj @@ -30142,7 +28985,7 @@ sYd sYd sYd rfZ -dFk +aZV bEp bEp bEp @@ -30177,22 +29020,22 @@ grx bEp bEp bEp -dKu -lKV -lKV -lKV -oGC +iKv +lSD +lSD +lSD +urW sSr plf -arG +kif fyD fyD fyD -arG +kif ugU dDj -pAu -lKV +mUv +lSD xTq cTz ePx @@ -30343,13 +29186,13 @@ bEp bEp bEp bEp -dKu -qny -sxy -dte -dte -bwT -dqp +iKv +dGp +sge +rwz +rwz +otY +lAk xrx kqt kqt @@ -30509,10 +29352,10 @@ dic bEp bEp bEp -dKu -vmB -dyz -bjc +iKv +tqf +utu +mEE ixP ixP ixP @@ -30522,11 +29365,11 @@ dAH roS vuo vuo -snP -yjF -bnF -dTJ -dNc +xXQ +hqj +lgY +mQB +fHa bsb uiT ePx @@ -30616,9 +29459,9 @@ hrz hrz hrz sVF -mar +ivH rzh -iXD +wCv kIn sYd qGa @@ -30669,16 +29512,16 @@ kIn sYd sYd bXl -dKu -lKV -lKV -lKV -lKV -lKV -lKV -qny -dyz -bjc +iKv +lSD +lSD +lSD +lSD +lSD +lSD +dGp +utu +mEE ixP ixP ixP @@ -30689,12 +29532,12 @@ rCp bBS roS vuo -eem -tDj +wIU +jAN rCp sbX -bBf -dNc +wSr +fHa lpJ xTq ePx @@ -30783,15 +29626,15 @@ hrz hrz hrz sVF -mar +ivH ggC -iXD +wCv bXl sYd pBi -mYj -lyJ -goa +nlR +jNB +mGA ddH sYd sYd @@ -30804,18 +29647,18 @@ bEp nrk nrk jkR -qOy +fON uHP lkC uHP -qVU +drk jkR bEp bEp bEp bEp bEp -tKY +pNC dic dic dic @@ -30835,36 +29678,36 @@ dic dic dic bXl -dKu -qny -sxy -dte -dte -dte -dte -dte -dte -bjc +iKv +dGp +sge +rwz +rwz +rwz +rwz +rwz +rwz +mEE ixP ixP ixP ixP ixP dLR -bnF -exj +lgY +xxu rYF vuo vuo -ppn +fJO ovG dwf xTq sbX -bJf +lvD bsb lpJ -lKV +lSD xTq ePx ePx @@ -30950,15 +29793,15 @@ hrz sVF sVF sVF -cvF +sob ggC -iXD +wCv bXl sYd pBi -iyP +hoc qVg -dsi +xPB ddH sYd pCS @@ -30983,41 +29826,41 @@ jkR bEp bEp tKY -dKu -lKV -lKV -lKV +iKv +lSD +lSD +lSD xTq tKY tKY -dKu -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -lKV -qny -sxy -bjc +iKv +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +lSD +dGp +sge +mEE ixP ixP ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -ydh -fZT +jrX +ijO +ijO +ijO +ijO +tUh +ngW ndw sRb sRb @@ -31027,11 +29870,11 @@ sRb coU mDH fNo -lKV -qny -sxy -dte -dIc +lSD +dGp +sge +rwz +iUn uiT tKY tKY @@ -31117,15 +29960,15 @@ hrz hrz sVF sVF -mar +ivH ggC -iXD +wCv sYd sYd pBi -nzQ -elo -wgK +hnw +jTt +xiZ ddH sYd pCS @@ -31144,59 +29987,59 @@ iYo iYo uHP dWE -jcd -ffv +wvL +kUd jkR gxK gxK oZK -vmB -sxy -dte -qPz +tqf +sge +rwz +eAw lpJ -lKV -lKV -qny -qVY -dte -dte -dte -dte -dte -dte -dte -dte -dte -dte -dte -bjc +lSD +lSD +dGp +mNz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +rwz +mEE ixP -fYI -tIh -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -uze +jrX +ijO +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +erg sSr plf -arG +kif fyD fyD fyD -arG +kif ugU dDj -vHG +fYj bsb bsb -oce +ygR ixP dib uiT @@ -31284,9 +30127,9 @@ hrz sVF sVF sVF -mar +ivH pkP -iXD +wCv sYd sYd pvk @@ -31310,7 +30153,7 @@ iYo iYo jfs uHP -bux +moT gjK cBJ jkR @@ -31318,14 +30161,14 @@ gxK gxK fWy bsb -oce +ygR ixP -dAM -dte -dte -dte -dte -bjc +gIp +rwz +rwz +rwz +rwz +mEE ixP ixP ixP @@ -31333,37 +30176,37 @@ ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -tIh -mjq -rNg -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +jrX +ijO +ijO +ijO +ijO +ijO +awx +muD +mQB +mQB +mQB +mQB +mQB +lax tKY tKY tKY mtS eeP plf -arG +kif fyD fyD fyD -arG +kif plf erE -dGy -dTJ -dNc -nct +kmk +mQB +fHa +cWA hCc dib uiT @@ -31451,9 +30294,9 @@ hrz sVF sVF sVF -dTn +jaZ ggC -iXD +wCv sYd sYd bXl @@ -31477,37 +30320,37 @@ iYo iYo iYo uHP -pGO -eIL -oRZ +mjm +xhG +xwv jkR gxK gxK gxK -dNc -nct -tIh +fHa +cWA +ijO hCc ixP ixP ixP ixP -fYI -tIh -tIh -tIh -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -vTe -dTJ -iuz +jrX +ijO +ijO +ijO +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +fSq +mQB +lax tKY tKY tKY @@ -31520,19 +30363,19 @@ qhw lHs mbS plf -arG +kif cEd fyD fyD -arG +kif plf mNM eTj eTj vYQ bsb -nct -qOw +cWA +dcl lpJ xTq tKY @@ -31618,9 +30461,9 @@ hrz hrz hrz hrz -bwt +bNP ggC -iXD +wCv sYd sYd xgl @@ -31651,24 +30494,24 @@ jkR jkR jkR jkR -bBf -dTJ -dNc -nct -tIh -tIh -tIh -tIh -qOw -rNg -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +wSr +mQB +fHa +cWA +ijO +ijO +ijO +ijO +dcl +muD +mQB +mQB +mQB +mQB +mQB +mQB +mQB +lax dxF dxF dxF @@ -31687,16 +30530,16 @@ vDS jNS mbS plf -arG +kif fyD uKx fyD -arG +kif plf mNM eTj eTj -xnr +dwa bsb bsb bsb @@ -31785,14 +30628,14 @@ hrz hrz hrz hrz -mar +ivH ggC -iXD +wCv kIn bXl xgl -bzY -ogG +hgJ +pRe xgl oJV sYd @@ -31820,14 +30663,14 @@ uHP lZz dic tKY -bBf -dTJ -dTJ -dTJ -dTJ -dTJ -dTJ -iuz +wSr +mQB +mQB +mQB +mQB +mQB +mQB +lax dic tFH dic @@ -31854,18 +30697,18 @@ qgW jkJ lHs plf -gyx +bTD fyD fyD fyD -arG +kif dDj mNM eTj eTj eTj -dTJ -dNc +mQB +fHa bsb bsb lpJ @@ -31952,9 +30795,9 @@ hrz hrz sVF hrz -mar +ivH pkP -iXD +wCv kIn bXl xgl @@ -32019,7 +30862,7 @@ jwR qgW nAo nIA -rYS +mbS xhV kxW eNf @@ -32032,10 +30875,10 @@ mbS jlK sbX tKY -bJf -sxy -dte -qPz +lvD +sge +rwz +eAw uiT tKY tKY @@ -32134,7 +30977,7 @@ pCS pCS pCS pzG -hVQ +qUK wLp uHP uHP @@ -32199,8 +31042,8 @@ kbN tKY sbX tKY -bJf -oce +lvD +ygR ixP dib lpJ @@ -32289,11 +31132,11 @@ dxF dxF kkH hYs -xtN -sHg +xtP +dET amu mqG -gNI +sAi oww soF aaN @@ -32356,8 +31199,8 @@ qgW nAo qgW vDS -tyW -rNG +kEt +ezJ uhV qhw nOG @@ -32366,11 +31209,11 @@ tKY sbX tKY dic -etY -oce +eKL +ygR ixP -dAM -sCw +gIp +dUw uiT tKY rte @@ -32455,11 +31298,11 @@ dxF dxF dxF kkH -gkU +xYl rHQ lSe cwi -ogo +qvK rbu xgl xgl @@ -32481,8 +31324,8 @@ iYo uHP sGs xSX -oRE -mSv +jYY +iNa iYo uHP jkR @@ -32530,11 +31373,11 @@ qhw nOG nOG sbX -dKu -lKV -lKV -qny -oce +iKv +lSD +lSD +dGp +ygR ixP ixP dib @@ -32622,11 +31465,11 @@ dxF dxF dxF kkH -gkU +xYl rHQ lSe tha -ogo +qvK gRi cbg xgl @@ -32647,7 +31490,7 @@ iYo iYo oUM sGs -vNt +jVi tKC cUh iYo @@ -32659,9 +31502,9 @@ dxF dxF dxF dxF -mxB -mxB -mxB +dxF +dxF +dxF dxF dxF hkO @@ -32690,18 +31533,18 @@ rSg vDS vDS vDS -xkE +rAR kDS vDS lHs nOG nOG kbN -etY +eKL biK bsb bsb -nct +cWA hCc ixP dib @@ -32793,7 +31636,7 @@ iWa dGx dGx kkH -nyp +kFq gRi cbg bKl @@ -32802,7 +31645,7 @@ xgl kDs nDT pGv -bex +xct eAS lTr ecA @@ -32814,7 +31657,7 @@ uHP ahD eRU sGs -tnM +lfX oVX cDf oVX @@ -32826,8 +31669,8 @@ jPt pKP dxF dxF -mxB -mxB +dxF +dxF mhj dxF dxF @@ -32864,12 +31707,12 @@ mbS nCM nCM mbS -fiq +iCN uYx bsb bsb bsb -nct +cWA hCc dib niC @@ -32880,7 +31723,7 @@ xJg xJg xJg xJg -qLV +xJg jfQ jfQ xJg @@ -32957,22 +31800,22 @@ dxF kkH coL mun -egu -oWo +ewC +kIX kkH -rQa -gEc +bKe +nsk cbg mqG -gNI +sAi xgl oww xgl -ify +kBN pSK -ify +kBN pSK -ify +kBN fIm yjI yjI @@ -32981,7 +31824,7 @@ gwY gwY gwY gwY -imG +bnn ghk sVy oVX @@ -32993,10 +31836,10 @@ bjj fpO orL dxF -mxB +dxF mhj fjF -gBl +wff dxF dxF eXm @@ -33031,15 +31874,15 @@ vDS vDS vDS lHs -peQ +bxX hYS qog kZm qog bsb -oce -dAM -qPz +ygR +gIp +eAw lpJ xTq vea @@ -33123,21 +31966,21 @@ dxF dxF kkH tpk -ogo +qvK ltU gRi phz nps ksF cbg -ogo +qvK gRi gOc eoA bhH pSK bTe -jqh +iZr etu pSK ldM @@ -33145,10 +31988,10 @@ usP usP pGY lCu -pWW -deo +uwL +jsL gwY -tnM +lfX oVX cDf oVX @@ -33157,7 +32000,7 @@ jzl jzl fUL jzl -kYs +lcs jzl jzl eMC @@ -33171,7 +32014,7 @@ eXm eXm eXm tpN -wpY +jnI kDS aRh mGE @@ -33199,15 +32042,15 @@ kDS wGD mNM xvn -hGM +mNM xms -dRj -dRj +qQq +qQq nOH -wwq +xom ixP -dAM -qPz +gIp +eAw lpJ xTq vea @@ -33289,15 +32132,15 @@ dxF dxF mxB kkH -hnI -kls -fSm -peK +bIa +uRz +iaR +bIT kkH gVV mCf cbg -ogo +qvK gRi acn pue @@ -33315,7 +32158,7 @@ lCu uWu cwy gwY -imG +bnn ghk sVy oVX @@ -33324,8 +32167,8 @@ xZd jEo snr uIg -pzH -dwx +mBu +fxi uIg htP wff @@ -33334,10 +32177,10 @@ fpO nnf aqO xOU -tFh -foI +iSY +tNJ nvd -emn +nRA kDS oQz juO @@ -33365,17 +32208,17 @@ cAt scY wnw lry -sZz +ilS jiz cqX fyD fyD -oeb -jnY +aDA +uwq ixP ixP -dAM -qPz +gIp +eAw uiT tKY vea @@ -33464,7 +32307,7 @@ xgl xgl xgl ipz -ten +eiK gRi acn dlT @@ -33482,7 +32325,7 @@ lCu oVX oVX gwY -tnM +lfX oVX cDf oVX @@ -33504,7 +32347,7 @@ bWc vDS vDS cWL -tBB +ghz vES jCL bcO @@ -33531,14 +32374,14 @@ cAt cAt lfm gEe -arG +kif fyD -arG +kif cqX fyD fyD -oeb -wwq +aDA +xom ixP ixP ixP @@ -33624,23 +32467,23 @@ mxB mxB wYp quy -tUm +cdG ujo pYf pYf -xCc +bcr oww soP -iyd -tvb +ibl +bAE qKm cnv kqA -ify +kBN xwu -ify +kBN tZc -ify +kBN fIm yjI yjI @@ -33649,7 +32492,7 @@ gwY cDl oVX lcs -imG +bnn ghk sVy oVX @@ -33671,7 +32514,7 @@ gBI cPt qgW nvd -sOc +vpP aYr kiN juO @@ -33699,13 +32542,13 @@ lfm kDS cOh amL -dRj -arG +qQq +kif cqX fyD fyD -oeb -jnY +aDA +uwq ixP ixP ixP @@ -33791,8 +32634,8 @@ mxB gZq crT quy -tUm -epG +cdG +hpH uri ahz onP @@ -33805,7 +32648,7 @@ cbg nux bng ceT -glB +fxP frj hnG nRE @@ -33816,9 +32659,9 @@ tCK oVX aeC gwY -gTl -vmJ -ccu +fSP +hOj +lSA oVX oVX oVX @@ -33846,9 +32689,9 @@ lHs ulo ulo lHs -jrk -nLc -sFP +rvi +hRe +aYH qPO vDS vDS @@ -33871,8 +32714,8 @@ xvn mNM pKE fyD -oeb -wwq +aDA +xom ixP ixP ixP @@ -33955,14 +32798,14 @@ dxF dxF mxB mxB -wqR -lwL +uxk +flD kNx hTn -wqR -lwL -lwL -lwL +uxk +flD +flD +flD oww gUa cbg @@ -33971,8 +32814,8 @@ nZw rhK rhK cbg -fKJ -glB +tLh +fxP tdZ kwJ aHl @@ -33992,8 +32835,8 @@ oVX snr lxd uIg -pzH -hrv +mBu +beN uIg bjj fpO @@ -34002,8 +32845,8 @@ nnf piA slb kZt -kAb -rme +vyK +hAB nvd avf rvK @@ -34013,12 +32856,12 @@ lHs pSs vKF lHs -nLc -rme -rme +hRe +hAB +hAB sgW nCM -ycN +xIJ nCM utY kah @@ -34036,14 +32879,14 @@ tEa tEa tEa lHs -lcv +ojS fyD -oeb -jnY +aDA +uwq ixP ixP -fYI -qOw +jrX +dcl uiT tKY cDx @@ -34139,8 +32982,8 @@ cMv rhK cbg mwV -glB -xRx +fxP +jQU gnP aHl yjI @@ -34157,22 +33000,22 @@ oag oVX oVX iZu -jhS -jhS -kVJ -jhS -jhS -jhS +jzl +jzl +jzl +jzl +jzl +jzl wff -niP wff wff -jhS -jhS -jhS -kVJ -kVJ -rYS +wff +eXm +eXm +lHs +lHs +eXm +eXm lce hVg qgW @@ -34186,12 +33029,12 @@ lHs rYS tZI qgW -rme +hAB lHs kDS wIT mbS -nCM +wXT bds qGA mbS @@ -34203,15 +33046,15 @@ fGk wct bPV lHs -bAe +bKN fyD -oeb -wwq +aDA +xom ixP ixP dib -rNg -iuz +muD +lax tKY cDx vea @@ -34289,14 +33132,14 @@ dxF dxF mxB mxB -cXA -fQg +mmy +pVD dzm cGz -fQg -fQg -fQg -nkZ +pVD +pVD +pVD +ebC xgl aqC cbg @@ -34305,8 +33148,8 @@ mAH cMv rhK cbg -gQZ -glB +moD +fxP vSW gnP aHl @@ -34318,28 +33161,28 @@ oVX jzl ukv rxX -xoq +pen cXP snr oVX oVX cfa -kVJ -wWy -wWy -wWy -wWy -kVJ +lcs +lGc +lGc +lGc +lGc +lcs wff wff wff wff -kVJ -wWy -wWy -wWy -wWy -lLn +lHs +pYZ +pYZ +pYZ +pYZ +lHs kDS kDS eOM @@ -34353,15 +33196,15 @@ xOV qHH cAt qgW -rme +hAB tRp kDS kDS tRp -hHi -ycN -ycN -cpj +qtb +xIJ +xIJ +gAy tRp pSs pLS @@ -34370,10 +33213,10 @@ brL kDS mdu mbS -pfo +qVF fyD -oeb -jnY +aDA +uwq ixP ixP dib @@ -34459,8 +33302,8 @@ mxB bGV fRP diV -tUm -baC +cdG +lEu ujo pYf jUP @@ -34483,30 +33326,30 @@ aHl lCu oVX jzl -pbY -kBb +jzl +oNv uTj abS snr oVX oVX cfa -kVJ -wWy -wWy -hdF -wWy -kVJ +lcs +lGc +jzl +jzl +lGc +lcs nnf wff wff wff -kVJ -wWy -wWy -hdF -wWy -lLn +lHs +pYZ +eXm +eXm +pYZ +lHs kDS kDS kct @@ -34520,15 +33363,15 @@ sef abz cAt qgW -rme +hAB tRp kDS kDS tRp -hHi -ycN -ycN -hHi +qtb +xIJ +xIJ +qtb tRp pSs pSs @@ -34537,13 +33380,13 @@ kDS nOG nOG klN -oeb +aDA fyD -oeb -wwq -fYI -tIh -qOw +aDA +xom +jrX +ijO +dcl uiT tKY tKY @@ -34626,9 +33469,9 @@ mxB mxB wYp uIQ -tUm +cdG wYp -epG +hpH crT jUP kvt @@ -34650,50 +33493,50 @@ etm lCu oVX jzl -pbY -qae +jzl +dsM cDf dvL snr oVX oVX cfa -kVJ -wWy -wWy -wWy -wWy -kVJ +lcs +lGc +jzl +jzl +lGc +lcs nnf wff wff wff -kVJ -wWy -wWy -wWy -wWy -lLn +lHs +pYZ +eXm +eXm +pYZ +lHs bGX kDS qgW uLa sef qgW -xof +odG cht vPE vgX cTW rKl qgW -rme +hAB lHs kDS alh mbS mbS -qwT +qGA xfW nCM mbS @@ -34704,14 +33547,14 @@ bDl wwd nOG rUi -oeb +aDA vjr -hJN -jnY +vrR +uwq dib -rNg -dTJ -iuz +muD +mQB +lax tKY tKY xJg @@ -34792,8 +33635,8 @@ dxF mxB mxB mxB -quy -tUm +sDN +cdG wYp bGV wYp @@ -34818,29 +33661,29 @@ gwY bRJ tCK xFl -jwx -kvu +cbP +ful gMw snr oVX oVX fGG -kVJ -wWy -wWy -wWy -wWy -kVJ +lcs +lGc +lGc +lGc +lGc +lcs nnf nnf nnf wff -kVJ -wWy -wWy -wWy -wWy -lLn +lHs +pYZ +pYZ +pYZ +pYZ +lHs vDS vDS wGD @@ -34852,9 +33695,9 @@ arU jJj vdH mbS -vDu +mpE qgW -rme +hAB lHs kDS tTs @@ -34871,11 +33714,11 @@ cFY nOG nOG rUi -oeb +aDA fyD -phI -wEh -qOw +lSM +lzD +dcl uiT sbX aQw @@ -34992,22 +33835,22 @@ oag oVX oVX sFL -jhS -jhS -kVJ -jhS -jhS -jhS +jzl +jzl +jzl +jzl +jzl +jzl wff nnf wff wff -jhS -jhS -jhS -kVJ -kVJ -rYS +eXm +eXm +lHs +lHs +eXm +eXm nIn cAt vDS @@ -35020,7 +33863,7 @@ rxb kqY lHs mcZ -ycN +xIJ nCM mbS kah @@ -35038,12 +33881,12 @@ nOG nOG nOG dcA -oeb +aDA fyD -oeb +aDA dTM -rNg -iuz +muD +lax dic dic tKY @@ -35135,14 +33978,14 @@ dxF dxF kGU pVt -jZT -izS +iQf +oEC kGU iHO iHO iHO jhb -glB +fxP tRG pDs yjI @@ -35150,7 +33993,7 @@ yjI aHl vQJ pSU -uXM +jjI pSU kkB siR @@ -35161,8 +34004,8 @@ oVX snr xqM ePV -pzH -dwx +mBu +fxi ePV iCl wff @@ -35171,8 +34014,8 @@ wff wff rUm lLC -tFh -rme +iSY +hAB tqC eOD qgr @@ -35205,9 +34048,9 @@ kDS kDS mdu mbS -pfo +qVF fyD -oeb +aDA qog uiT dic @@ -35301,13 +34144,13 @@ dxF dxF dxF kGU -neV +wVf rlB ryB nsd pfz -gCG -gld +pfz +pfz jhb eCY tOe @@ -35365,19 +34208,19 @@ kDS kDS kDS kDS -fNe +eoY vDS pNi kDS kDS kDS mwh -lcv +ojS fyD -oeb +aDA dTM lpJ -lKV +lSD xTq tKY dic @@ -35463,18 +34306,18 @@ dxF dxF dxF dxF -tRD +dxF dxF dxF dxF kGU -rHF +gWM rlB ryB nsd pfz -jos -gld +pfz +pfz jhb bKi asQ @@ -35516,9 +34359,9 @@ cAt cAt vDS nsU -rme -rme -rme +hAB +hAB +hAB nsU vDS kDS @@ -35539,12 +34382,12 @@ tEa tEa tEa mwh -bAe +bKN fyD -oeb -dox -dte -qPz +aDA +weT +rwz +eAw uiT tKY tKY @@ -35635,13 +34478,13 @@ dxF dxF dxF kGU -neV +wVf rlB ryB nsd pfz -jos -gld +pfz +pfz jhb eCY ygh @@ -35682,11 +34525,11 @@ piW piW mYt vDS -iwV +rxt qgW qgW qgW -iwV +rxt vDS kDS kDS @@ -35704,12 +34547,12 @@ vDS mNM xvn dJT -hGM -hGM -oeb +mNM +mNM +aDA fyD -oeb -jnY +aDA +uwq ixP dib lpJ @@ -35802,13 +34645,13 @@ dxF dxF dxF kGU -mLK +gJy rlB jPW kGU kOD -sxq -xti +wzC +tDC jhb ayB nDH @@ -35818,7 +34661,7 @@ aWk sND dLY pSU -azo +rhd pSU snr snr @@ -35829,8 +34672,8 @@ snr oVX snr ePV -pzH -pzH +mBu +mBu ePV bjj fpO @@ -35839,8 +34682,8 @@ wff fpO goZ kpz -bcl -rme +iOf +hAB tqC mbp vDS @@ -35850,9 +34693,9 @@ qMC vDS vDS nCM -rme -rme -rme +hAB +hAB +hAB mgP vDS vDS @@ -35869,17 +34712,17 @@ vDS vDS gqQ vys -dRj -lok -hGM +qQq +hBf +mNM qrl nOH fyD -oeb -wwq +aDA +xom ixP -dAM -qPz +gIp +eAw lpJ xTq tKY @@ -35969,14 +34812,14 @@ dxF dxF dxF kGU -mdr +acj rlB ryB iqE uzq gld nrD -glB +fxP jhb jhb jhb @@ -35984,9 +34827,9 @@ dRX dRX dRX jhb -pbY -pbY -pbY +jzl +jzl +jzl jzl lBP jzl @@ -36019,35 +34862,35 @@ yir yir yir dbg -nsC +rhQ wtH dbg jnS dbg wtH nCM -qpZ -rZV -qpZ -qpZ -qpZ +iSO +dgw +iSO +iSO +iSO nCM kDS kDS scY -arG +kif fiE fyD jiz cqX fyD fyD -oeb -jnY +aDA +uwq ixP ixP -dAM -qPz +gIp +eAw uiT tKY vea @@ -36136,7 +34979,7 @@ dxF dxF dxF kGU -lpF +dHD rlB ryB iqE @@ -36153,11 +34996,11 @@ nAc sUo gUQ gUQ -otc +nEy gwY ann -uqv -mtp +wnX +tny vFg snr cey @@ -36186,31 +35029,31 @@ yir xkk yir xkk -hCu +tqO pjF -hCu +tqO vHL vHL dbg -hHi +qtb gKG sVx bzl sVx gKG -hHi +qtb bPV cAt iub fyD fyD fyD -arG +kif cqX fyD fyD -oeb -wwq +aDA +xom ixP ixP ixP @@ -36303,9 +35146,9 @@ qaI dxF dxF kGU -xQz -cmG -hfu +jCD +sQC +uRa iqE smo nAc @@ -36322,11 +35165,11 @@ vzC gld msK gwY -klP +cUe pOI gLg jzl -qXd +vHP oVX snr tCK @@ -36354,30 +35197,30 @@ xkk yir xkk xkk -oOl +hqA njQ -oOl +hqA xkk jnS -hHi +qtb bzl sVx olO sVx bzl -kiE +siJ kDS qgr kDS kut -dRj +qQq fyD -arG +kif cqX fyD fyD -oeb -jnY +aDA +uwq ixP ixP ixP @@ -36474,7 +35317,7 @@ gXF gXF gXF uYi -mPt +mhq gld gld msK @@ -36489,9 +35332,9 @@ nuA gld msK gwY -lmM -vgw -cOx +cXv +mnI +nKP vFg snr oVX @@ -36515,24 +35358,24 @@ jhD oQc oQc oQc -xRh +oQc yir xkk yir xkk -hCu +tqO vHL -hCu +tqO vHL -hCu +tqO jnS -hHi +qtb olO sVx gKG sVx olO -hHi +qtb kDS cAt kDS @@ -36543,8 +35386,8 @@ sqP cqX fyD fyD -oeb -wwq +aDA +xom ixP ixP ixP @@ -36689,33 +35532,33 @@ kHm ubR ubR oQc -vjs +wKk vHL -hCu +tqO dbg -uwD +dsV gKG sVx bzl sVx gKG -eJg +sIE wCe kDS kDS nOH -xuY -xyY -hGM +pUF +gUF +mNM juH -dRj -dRj +qQq +qQq nOH -jnY +uwq ixP ixP -fYI -qOw +jrX +dcl uiT vea xJg @@ -36856,11 +35699,11 @@ kHm jSi jSi oQc -vjs +wKk vHL -hCu +tqO mbS -hOB +fsH bzl sVx gKG @@ -36873,17 +35716,17 @@ vfd mNM xvn dJT -hGM +mNM wuy mSd dTM -sxy -bjc +sge +mEE ixP -fYI -qOw -rNg -iuz +jrX +dcl +muD +lax vea xJg cDx @@ -37011,9 +35854,9 @@ xWK xWK xWK jhx -xRh -xRh -xRh +dip +dip +dip dnR lah kHm @@ -37038,18 +35881,18 @@ nKh nKh nKh wtH -sbX +kgC mtS -fPH +aBb dTM bsb bsb -oce +ygR ixP -fYI -qOw -rNg -iuz +jrX +dcl +muD +lax tKY xJg xJg @@ -37178,20 +36021,20 @@ xWK xWK xWK jhx -nlc -tWv -nlc +ubR +hmk +ubR eSH -stt -stt -stt -stt -stt -stt -stt -jzm +rtq +rtq +rtq +rtq +rtq +rtq +rtq +qQD kHm -jSQ +iZm nKh nKh vHL @@ -37207,15 +36050,15 @@ nKh wtH dic dic -bJf +lvD xzd bsb bsb -oce +ygR ixP rzE -rNg -iuz +muD +lax tKY dic cDx @@ -37309,14 +36152,14 @@ tAX eIZ oUP eiz -atC -keM -cal -ezg +bIX +vCY +aEy +vTO mYM vHf -qCi -fmR +lEw +vzo heL msK msK @@ -37326,14 +36169,14 @@ msK gwY gwY ktq -iez -anF -fpJ -fpJ -fpJ -eSq -fpJ -lfb +pZb +niI +gof +gof +gof +jvf +gof +yhP gUS ktq giZ @@ -37345,10 +36188,10 @@ bKH xWK xWK xWK -nlc -tWv -nlc -sPV +ubR +hmk +ubR +eSs rQY rQY rQY @@ -37358,7 +36201,7 @@ rQY rQY epR kHm -plQ +dnq nKh nKh nKh @@ -37374,13 +36217,13 @@ nKh ftF dic tKY -bBf -dNc +wSr +fHa bsb bsb -nct -tIh -qOw +cWA +ijO +dcl uiT tKY dic @@ -37475,13 +36318,13 @@ tAX mCL tAX aLQ -vfr +qAF xrF xrF xrF sCG mYM -efF +oIx xNf vEw heL @@ -37493,7 +36336,7 @@ msK uAz hXP ktq -mpl +dfc slF slF slF @@ -37501,7 +36344,7 @@ slF slF slF slF -nsF +rtn kOo nYz wdc @@ -37512,22 +36355,22 @@ bKH xWK xWK xWK -xRh -xRh -xRh -eVv +dip +dip +dip +nDv rQY -pxb -ndF -ppB -ndF -aor +xlQ +laM +hFj +laM +eqP rQY tFe oQc wtH mJq -mdw +iSL xkk qRq xkk @@ -37542,7 +36385,7 @@ ftF tKY dic knP -fNc +ljt cMJ cMJ cMJ @@ -37642,13 +36485,13 @@ eTT kKc eTT oUP -vfr +qAF qIi gew gew sCG twn -vfr +qAF xNf wAF uEi @@ -37660,15 +36503,15 @@ msK uAz dHF rES -mGW +iMy slF slF slF slF -sOy -kPA -hwA -nsF +slF +slF +slF +rtn kOo nYz wdc @@ -37682,21 +36525,21 @@ tDV dip dip lah -sPV +eSs rQY rkO -xRh -frx -xRh -eVv +dip +xuy +dip +nDv rxr -qJx -kYO +khw +rsY dip wtH wtH tIz -nie +tIz vHL vHL vHL @@ -37705,18 +36548,18 @@ tIz tIz wtH wtH -nie -jhS -jhS -jhS -jhS -tGi -tGi -tGi -tGi -tGi -jhS -jhS +wtH +wCU +wCU +wCU +wCU +elE +elE +elE +elE +elE +wCU +wCU dxF dxF dxF @@ -37809,13 +36652,13 @@ mtt wuL juz oUP -vfr -gew +qAF +iZU wAo gew sCG twn -vfr +qAF xNf rEo smo @@ -37828,14 +36671,14 @@ uAz bUI rES aAg -fpJ -fpJ -pIE -uWl -wtu +gof +gof +vnv +gzg nAy -pxl -tdM +nAy +nAy +bXN ktq ngX nnx @@ -37847,15 +36690,15 @@ xWK xWK toV phv -stt -stt -eOc +rtq +rtq +hHs rQY epR -mcv -tWv -mcv -sPV +ubR +hmk +ubR +eSs rQY rQY gQF @@ -37863,27 +36706,27 @@ dip wtH wtH tIz -hEY +xfa nKh xkk xkk nKh -vHh +tyK tIz wtH wtH -nie -jhS -jhS -jhS -jhS -kVJ -kVJ -kVJ -kVJ -kVJ -jhS -jhS +wtH +wCU +wCU +wCU +wCU +clm +clm +clm +clm +clm +wCU +wCU dxF dxF dxF @@ -37976,13 +36819,13 @@ rqD xNf xNf kFF -vfr +qAF xrF xrF xrF sCG mYM -bTt +fzO xNf kxE heL @@ -38019,10 +36862,10 @@ rQY rQY rQY epR -mcv -tWv -mcv -sPV +ubR +hmk +ubR +eSs rQY rQY xyw @@ -38030,27 +36873,27 @@ dip wCU wCU hMu -qaS +qdM nbu jKN jKN nbu -sAe +fIb hMu wCU wCU -btI -btI -btI -btI -jhS -mjP -mjP -mjP -mjP -mjP -jhS -jhS +wCU +wCU +wCU +wCU +wCU +xUh +xUh +xUh +xUh +xUh +wCU +wCU dxF dxF dxF @@ -38143,15 +36986,15 @@ era xNf rGm oUP -wOI -ikW -ikW -ikW -mrI +qzz +aHB +aHB +aHB +rta mYM -rXj -ikW -hOm +gqI +aHB +uAl heL msK gld @@ -38186,13 +37029,13 @@ rQY rQY rQY tFe -xRh -xRh -xRh -eVv +dip +dip +dip +nDv rxr -pxb -kHO +xlQ +jgr dip wCU wCU @@ -38206,18 +37049,18 @@ hMu hMu wCU wCU -btI -btI -btI -btI -sfz -ukd -ukd -ukd -ukd -ukd -uNJ -jhS +wCU +wCU +wCU +wCU +vBi +aIO +aIO +aIO +aIO +aIO +aSq +wCU dxF dxF dxF @@ -38348,21 +37191,21 @@ xWK bKH qYn bpT -ppB -ppB -aor +hFj +hFj +eqP rQY -qJx -nni -hIp -nni -eOc +khw +wTL +tzM +wTL +hHs rQY tFe oQc hMu gEl -qQp +pCy mxT rRl jKN @@ -38376,15 +37219,15 @@ jKN jKN rRl mCd -khI -mzn -qwg -qwg -qwg -uah -qwg -ddi -jhS +clm +bjJ +dyS +dyS +wCU +dyS +dyS +uxZ +wCU dxF dxF dxF @@ -38478,13 +37321,13 @@ fyF fyF alo cPv -qCi -qCi -qCi -kmm -qCi -lLH -cdE +lEw +lEw +lEw +vfF +lEw +ubB +drP mYM heL nAc @@ -38495,9 +37338,9 @@ msK nAc nAc kni -dQs -dQs -dQs +whT +whT +whT sIr gBa xWK @@ -38517,7 +37360,7 @@ tDV dip dip dnR -sPV +eSs rQY rQY rQY @@ -38527,7 +37370,7 @@ rQY rQY epR kHm -cFJ +jxv nbu nbu nbu @@ -38543,15 +37386,15 @@ ctG opz tJu jyq -khI -mzn -qwg -qwg -qwg -qwg -qwg -ddi -jhS +clm +bjJ +dyS +wCU +wCU +wCU +dyS +uxZ +wCU dxF dxF dxF @@ -38644,7 +37487,7 @@ sBh fyF wLt alo -vfr +qAF hkq dKO euj @@ -38684,41 +37527,41 @@ xWK ubR aPA lah -iBa -ppB -ppB -ppB -ppB -ppB -ppB -ppB -ghj +xHi +hFj +hFj +hFj +hFj +hFj +hFj +hFj +gbl kHm -tqE +bnr kAW nbu nbu nbu nbu nbu -hUy -hUy -hUy -hUy +tSQ +tSQ +tSQ +tSQ nbu ctG uIJ iNF jyq -khI -mzn -qwg -qwg -qwg -qwg -qwg -ddi -jhS +clm +bjJ +dyS +dyS +wCU +dyS +dyS +uxZ +wCU dxF dxF dxF @@ -38811,16 +37654,16 @@ cWo iNt nSP qPc -vfr +qAF euj -tgZ -vaG +uET +aiN soQ jpS euj kEG qaI -eQQ +gsk heL msK msK @@ -38872,20 +37715,20 @@ fQn fWl fQn dkE -kGM +euk nbu nbu nbu jKN -khI -mzn -qwg -qwg -qwg -qwg -qwg -ddi -jhS +clm +bjJ +dyS +dyS +dyS +dyS +dyS +uxZ +wCU dxF dxF dxF @@ -38978,7 +37821,7 @@ mDm mDm mDm qaI -mDz +yiX euj euj euj @@ -39019,13 +37862,13 @@ dip dip szC vdV -szC -szC -sOT +lah +lah +lah dip -jxR -jxR -jxR +oXF +oXF +oXF dip gQr hMu @@ -39039,20 +37882,20 @@ dnF fAT rIL uBG -kGM +euk nbu nbu nbu jKN -btI -vkV -bQY -qwg -qwg -qwg -iIz -qLa -jhS +wCU +tGf +tGQ +dyS +dyS +dyS +pOh +bZS +wCU dxF dxF dxF @@ -39145,7 +37988,7 @@ fyF fyF lxc kFF -kuL +jFr euj fMd ssj @@ -39163,9 +38006,9 @@ msK msK msK kni -dQs -dQs -dQs +whT +whT +whT kni bKH bKH @@ -39186,40 +38029,40 @@ oNG dip szC szC -szC -szC -szC +lah +lah +lah dip dip dip dip dip -mMf -mMf -gQr -gQr -gQr gQr gQr gQr rIL +rIL +rIL +rIL +rIL +rIL cyM rIL fWl -kGM +euk nbu eBH nbu hYE -btI -btI -mzn -qwg -qwg -uah -ddi -jhS -jhS +wCU +wCU +bjJ +dyS +wCU +dyS +uxZ +wCU +wCU dxF dxF dxF @@ -39312,8 +38155,8 @@ wAp fyF fyF qaI -iLU -eGR +glU +uMu euj bKm vMf @@ -39321,7 +38164,7 @@ vMf euj txH qaI -eQQ +gsk iTK msK hDE @@ -39353,16 +38196,16 @@ oNG dip szC lNG -szC -lNG -szC +lah +qvl +dip dip -gQr -gQr rIL mMf -rIL -rIL +mMf +gQr +gQr +gQr rIL dnF rIL @@ -39373,19 +38216,19 @@ rIL rIL rIL fQn -kGM +euk nbu nbu nbu jKN jKN -khI -mzn -qwg -qwg -qwg -ddi -jhS +clm +bjJ +wCU +wCU +wCU +uxZ +wCU dxF dxF dxF @@ -39480,8 +38323,8 @@ ouW ouW qaI qaI -pCJ -qOM +nxb +gyt euj vQg vQg @@ -39523,11 +38366,11 @@ dip dip dip dip -dip rIL rIL -mMf rIL +mMf +mMf rIL rIL rIL @@ -39538,21 +38381,21 @@ gQr gQr iGz dnF -gQr +rIL rMp -kGM +euk nbu nbu hXh jKN jKN -khI -mzn -qwg -qwg -qwg -ddi -jhS +clm +bjJ +dyS +wCU +dyS +uxZ +wCU dxF dxF dxF @@ -39648,14 +38491,14 @@ hUk hUk qaI qaI -cBd -lKR -vXd -vXd -vsq -mRP +lMy +qbp +aPe +aPe +cHW +lTN mYM -eQQ +gsk lbu nsi gld @@ -39688,8 +38531,14 @@ oNG rIL rIL rIL -mMf -mMf +rIL +rIL +rIL +rIL +rIL +rIL +rIL +rIL rIL rIL rIL @@ -39698,14 +38547,8 @@ gQr gQr gQr gQr -gQr -gQr -gQr -gQr -gQr -gQr -gQr -gQr +mMf +rIL hMu nbu kAW @@ -39713,13 +38556,13 @@ nbu nbu aHC jKN -khI -mzn -qwg -qwg -qwg -ddi -jhS +clm +bjJ +dyS +dyS +dyS +uxZ +wCU dxF dxF dxF @@ -39854,11 +38697,11 @@ rIL mMf rIL mMf -jhS -kVJ -kVJ -kVJ -jhS +rIL +rIL +rIL +rIL +rIL jhS jhS jhS @@ -39876,17 +38719,17 @@ jhS jhS hMu hMu -hUy -yaI +tSQ +ciS hMu hMu -btI -vkV -bQY -qwg -iIz -hLi -jhS +wCU +tGf +tGQ +dyS +pOh +lyW +wCU dxF dxF dxF @@ -39987,16 +38830,16 @@ bbW bbW bbW oMZ -buo -rrH -rEI +nXq +ndj +nAj oMZ -bQg -sEf +bap +rBn fyT ibc fyT -qnB +adj nRY lPR bKH @@ -40017,29 +38860,29 @@ fyF sTU bDX qaI -oNG -oNG +rIL +rIL fAT dnF +mKs +rIL +rIL +rIL +mMf jhS -gtL -rzb -vGx -jhS -jhS -gtL -rzb -vGx +bCT +cqB +nyC jhS jhS -gtL -rzb -vGx +bCT +cqB +nyC jhS jhS -gtL -rzb -vGx +bCT +cqB +nyC jhS htT smF @@ -40047,13 +38890,13 @@ oNK dkE dkE tKz -btI -jhS -vkV -bcb -hLi -jhS -jhS +wCU +wCU +tGf +hgT +lyW +wCU +wCU dxF dxF dxF @@ -40154,16 +38997,16 @@ cSz oUh nFM cgJ -hmR +eCv oMw agG nFM vFc -bKJ +sfV fyT ibc fyT -qnB +adj lpD hPf xWK @@ -40186,27 +39029,27 @@ fyF qaI oNG oNG -oNG -oNG -jhS -hws -qwg -vcY -jhS +mMf +rIL +mMf +rIL +cXL +rIL +iOa jhS -hws -qwg -vcY +bRE +qhb +cCo jhS jhS -hws -qwg -vcY +bRE +qhb +cCo jhS jhS -hws -qwg -vcY +bRE +qhb +cCo jhS otO dkE @@ -40214,12 +39057,12 @@ tfx dkE tyJ eyk -btI -jhS -jhS -jhS -jhS -jhS +wCU +wCU +wCU +wCU +wCU +wCU dxF dxF dxF @@ -40320,17 +39163,17 @@ bPf iVD iVD okh -lIM +wUi wDT lly agG nFM ylf -uEY +sQh fyT ibc fyT -qnB +adj kSH feY fyF @@ -40354,26 +39197,26 @@ qaI oNG oNG oNG -oNG -jhS -cTG -fRZ -cQt -jhS +hMu +hMu +rIL +rIL +mMf +hMu jhS -cTG -fRZ -cQt +jXz +uQK +qHc jhS jhS -cTG -fRZ -cQt +jXz +uQK +qHc jhS jhS -cTG -fRZ -cQt +jXz +uQK +qHc jhS htT bdu @@ -40381,8 +39224,8 @@ dkE ugQ fjX frW -btI -jhS +wCU +wCU dxF dxF dxF @@ -40487,17 +39330,17 @@ edn jrS gUZ oMZ -pOc -bRl -shn -mti +jck +rpl +apA +iJM oMZ -bQg -sEf +bap +rBn fyT ibc fyT -qnB +adj kSH qaI bzj @@ -40522,11 +39365,11 @@ rfE rdm rdm rdm -jhS -kVJ -kVJ -kVJ -jhS +hMu +cXL +rIL +wQV +hMu jhS kVJ kVJ @@ -40548,8 +39391,8 @@ cXL iiN duP hMu -jhS -jhS +wCU +wCU dxF dxF dxF @@ -40666,11 +39509,11 @@ mpW mpW pmv pmv -jhS -mcv -mcv -mcv -jhS +lPR +hPf +hPf +hPf +lPR feR xWK jhx @@ -40688,35 +39531,35 @@ jhx rfE rdm rdm -fTk -qIN -fDY -fTk -jkp -lkp -foE -fDY -fTk -epb -lkp -aFc -fDY -fTk -epb -lkp -aFc -fDY -fTk -dUy -jhS +gSk +feJ +gSk +gSk +gSk +lFe +dAz +tix +gSk +psA +lFe +lFH +tix +gSk +psA +lFe +lFH +tix +gSk +cbH +nTw rzT aRS cXL cXL aRS hMu -jhS -jhS +wCU +wCU dxF dxF dxF @@ -40832,13 +39675,13 @@ beR jEN jEN dQD -jhS -jhS -bvT -qwg -ecO -jhS -jhS +lPR +lPR +dgI +oIR +vZh +lPR +lPR xrv eTT xWK @@ -40855,35 +39698,35 @@ jhx rfE rdm rdm -rsM -rRC -aoJ -tnx -iiG -fTk -iax +iXL +kEB +mLw +mLw +mLw +gSk +kgm aoJ tnx vDR -egf -eVO +bSd +pJx aoJ tnx vDR -fTk -eVO +gSk +pJx aoJ tnx slP -cum +vPh rUM exD wcl rUM nUV nUV -jhS -jhS +wCU +wCU dxF dxF dxF @@ -40999,13 +39842,13 @@ bKH bKH bKH bKH -mcv -aWR -qwg -qwg -uah -aWR -mcv +hPf +kOX +oIR +lPR +oIR +kOX +hPf cHb fyF xWK @@ -41024,33 +39867,33 @@ rdm rdm qpi evr -ykL -fTk -fTk +mTR +gSk +gSk evr unr -fTk -fTk -pMS +gSk +gSk +whL evr evr -fTk -fTk -fTk +gSk +gSk +gSk vXK evr -fTk -fTk -oSx -eaB +gSk +gSk +gSk +qGx qGx qGx qGx qGx rdm rdm -jhS -jhS +wCU +wCU dxF dxF dxF @@ -41166,13 +40009,13 @@ xWK xWK jhx xWK -mcv -qwg -qwg -qwg -qwg -qwg -mcv +hPf +oIR +lPR +lPR +lPR +oIR +hPf fyF lxc xWK @@ -41189,27 +40032,27 @@ bKH tFK okv rIn -pbR -klE -ngK -klE -ngK -joo -atz -ngK -euI -ngK -klE -klE -ngK -klE -ngK -klE -klE -ngK -klE -azI -rgh +izF +mfe +wzP +mfe +wzP +wQg +ulO +wzP +rWq +wzP +mfe +mfe +wzP +mfe +wzP +mfe +mfe +wzP +mfe +wzP +qGx qGx qGx qGx @@ -41217,7 +40060,7 @@ qGx jhS jhS jhS -jhS +dxF dxF dxF dxF @@ -41333,13 +40176,13 @@ xWK xWK bKH xWK -mcv -epV -qwg -qwg -qwg -epV -mcv +hPf +esU +oIR +lPR +oIR +esU +hPf cUm cUm xWK @@ -41354,29 +40197,29 @@ bKH bKH bKH tFK -fTk +gSk hBt -pbR -klE -ngK -klE -pRS -klE -klE -ngK -klE -ngK -klE -klE -ngK -klE -pRS -klE +izF +mfe +wzP +mfe +iLI +mfe +mfe +wzP +mfe +wzP +mfe +mfe +wzP +mfe +iLI +mfe +qGx +qGx qGx qGx qGx -uHJ -uHJ qGx qGx eQW @@ -41384,7 +40227,7 @@ qGx qhV kma jhS -jhS +dxF dxF dxF dxF @@ -41500,13 +40343,13 @@ bKH xWK xWK xWK -jhS -jhS -bvT -qwg -ecO -jhS -jhS +lPR +lPR +dgI +oIR +vZh +lPR +lPR cUm eTT hpB @@ -41541,9 +40384,9 @@ qGx qGx duw mLw -xVZ -fMi -fMi +lNi +lNi +mLw mLw cpg fqm @@ -41551,7 +40394,7 @@ mLw qhV kma jhS -jhS +dxF dxF dxF dxF @@ -41668,11 +40511,11 @@ bKH xWK xWK xWK -jhS -mcv -mcv -mcv -jhS +lPR +hPf +hPf +hPf +lPR jhx xWK xWK @@ -41690,27 +40533,27 @@ bKH xoM mLw hBt -xVZ -xVZ -xVZ -xVZ -xVZ +lNi +lNi +lNi +lNi +lNi mLw -xVZ -xVZ -xVZ -xVZ -xVZ -izr -xVZ -xVZ -xVZ -xVZ -xVZ +lNi +lNi +lNi +lNi +lNi +wxC +lNi +lNi +lNi +lNi +lNi mLw qGx -vwB -vwB +qGx +qGx qGx qGx gNx @@ -41718,7 +40561,7 @@ qGx qhV kma jhS -jhS +dxF dxF dxF dxF @@ -41862,7 +40705,7 @@ qGx qGx qGx pXF -slx +kvY atQ qGx qGx @@ -41874,10 +40717,10 @@ qGx qGx qGx mEe -slx +kvY +qGx +mfe qGx -uxb -aNj qGx rHE qGx @@ -41885,7 +40728,7 @@ rHE jhS jhS jhS -jhS +dxF dxF dxF dxF @@ -41981,7 +40824,7 @@ bkR wTt bkR bEH -lZT +bEH hUk hUk hUk @@ -42022,37 +40865,37 @@ wAp xWK bKH xoM -fTk +gSk hBt -pbR -klE -pbR -klE +izF +mfe +izF +mfe qGx -slx +kvY qGx -klE -cbv -gde -fdr -lhu -gHm -cFT -eOt -mBG +mfe +dcQ +hku +ihW +uIs +jNi +hGj +mgO +aws qGx -slx +kvY +qGx +hjV qGx -fVA -eaB acD vSE acD vSE rdm rdm -jhS -jhS +rzh +rzh dxF dxF dxF @@ -42191,26 +41034,26 @@ bKH xoM okv rIn -qCy -ctV -xXO -ekV +nIW +ltA +iKl +mlb tQO xGF ocd -xul -oHI +kRk +sHP uhM mcv mcv mcv grR -nEE -shX +cle +hjV qGx -slx +kvY qGx -uJV +gEG rdm rdm rdm @@ -42218,8 +41061,8 @@ rdm rdm rdm rdm -jhS -jhS +rzh +rzh dxF dxF dxF @@ -42328,8 +41171,8 @@ hUk hUk hUk hUk -xWK -nlA +tbb +ssR xWK xWK bKH @@ -42358,26 +41201,26 @@ feg rfE rdm rdm -sbF -dml -sbF +bPt +tju +bPt mvB beo mLw lyG mvB -baL +amw mcv ouR ouR byw mcv -vnL -fdr +jfk +ihW eFf -slx +kvY qGx -qOf +pTJ rdm rdm rdm @@ -42385,8 +41228,8 @@ rdm rdm rdm rdm -jhS -jhS +rzh +rzh dxF dxF mMH @@ -42496,7 +41339,7 @@ hUk hUk fQx xWK -nlA +ssR xWK xWK xWK @@ -42525,9 +41368,9 @@ feg rdm rdm rdm -nVH -klE -klE +gXJ +mfe +mfe mmH mLw mLw @@ -42542,9 +41385,9 @@ grR mcv grR jeO -slx +kvY qGx -cyA +jys rdm rdm rdm @@ -42552,8 +41395,8 @@ rdm rdm rdm rdm -jhS -jhS +dxF +dxF mMH bpj bpj @@ -42663,7 +41506,7 @@ hUk hUk sMg hGP -sZY +kkT sUs dCP hGP @@ -42692,9 +41535,9 @@ feg rdm rdm rdm -cUl -klE -klE +qlu +mfe +mfe qGx mLw mLw @@ -42709,9 +41552,9 @@ xay tTi mcv eaB -slx +kvY qGx -shX +hjV duu okv duu @@ -42830,7 +41673,7 @@ hUk hUk fQx dYB -fwF +ese nbR wKr dYB @@ -42842,7 +41685,7 @@ feg feg qaI vSH -uhD +rDm loO oUP oUP @@ -42859,15 +41702,15 @@ feg rdm rdm rdm -lFq -klE -lFq +ozO +mfe +ozO qGx mLw mLw mLw qGx -qyD +mEX mcv xay xay @@ -42876,11 +41719,11 @@ xay tTi mcv eaB -slx +kvY qGx -klE +mfe tXK -fTk +gSk tXK mMH qOP @@ -42894,11 +41737,11 @@ bpj bpj bpj bpj -dxF -dxF -dxF -dxF -dxF +bpj +bpj +fwD +sTb +jpR dxF dxF dxF @@ -42997,7 +41840,7 @@ hUk hUk fQx dYB -fwF +ese nbR wKr dYB @@ -43008,7 +41851,7 @@ feg feg feg qaI -eUA +jOD euj sBk qUp @@ -43026,9 +41869,9 @@ feg rdm rdm rdm -klE -klE -klE +mfe +mfe +mfe qGx mLw bIW @@ -43043,7 +41886,7 @@ gdb tTi mcv eaB -slx +kvY qGx qGx tXK @@ -43061,12 +41904,12 @@ bpj bpj bpj bpj -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +sTb +sTb +sTb +sTb dxF dxF dxF @@ -43175,7 +42018,7 @@ feg feg feg qaI -eUA +jOD euj sBk qUp @@ -43193,9 +42036,9 @@ feg rdm rdm rdm -cUl -klE -klE +qlu +mfe +mfe qGx wVt bIW @@ -43211,8 +42054,8 @@ mcv grR jeO mLw -xVZ -xVZ +lNi +lNi tXK mLw tXK @@ -43228,14 +42071,14 @@ bpj bpj oXH bpj -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +sTb +sTb +sTb +sTb +qmS +qmS dxF dxF dxF @@ -43313,9 +42156,9 @@ bkR bkR bkR kgt -iKf -dKz -mfY +jft +mTQ +djO kSB bkR hUk @@ -43331,7 +42174,7 @@ hUk uiK uiK mnT -fwF +ese mnT uiK nlv @@ -43343,7 +42186,7 @@ xMm feg qaI wSU -oQL +kDQ hrR qaI qaI @@ -43360,24 +42203,24 @@ feg rdm rdm rdm -lFq -klE -lFq +ozO +mfe +ozO qGx gce bIW mLw qGx -qyD +mEX mcv ige wdt oYQ mcv -emU -dml +iRk +tju eFZ -slx +kvY qGx qGx duu @@ -43396,14 +42239,14 @@ npL bpj bpj bpj -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +sTb +sTb +sTb +fwD +sTb +sTb +qmS dxF dxF dxF @@ -43480,9 +42323,9 @@ bkR bkR bkR kgt -rRL +bmn cCa -kkC +frb kSB bkR hUk @@ -43541,14 +42384,14 @@ mcv mcv mcv grR -oRM -klE +typ +mfe qGx -slx +kvY qGx -klE +mfe tXK -fTk +gSk tXK mMH mMH @@ -43563,16 +42406,16 @@ npL bpj bpj bpj +bpj dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -43647,9 +42490,9 @@ bkR bkR bkR tdT -usc -jWM -ePq +tAs +liz +jkG kSB bkR hUk @@ -43677,7 +42520,7 @@ hwf hwf kFF ubm -uhD +rDm haK qaI feg @@ -43711,9 +42554,9 @@ bsw eFZ qGx qGx -slx +kvY qGx -shX +hjV tXK okv duu @@ -43734,13 +42577,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +jpR +sTb +gRv +fwD +sTb +sTb +jpR dxF dxF dxF @@ -43843,7 +42686,7 @@ oUP uOk oUP oUP -eUA +jOD euj sBk qaI @@ -43871,16 +42714,16 @@ uSr bIW iPV oMS -xVZ -xVZ +lNi +lNi mLw -xVZ -xVZ -xVZ -xVZ +lNi +lNi +lNi +lNi mLw qGx -klE +mfe rdm rdm rdm @@ -43902,14 +42745,14 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -44010,11 +42853,11 @@ pJt euj oUP azb -eUA +jOD euj -rTF -uhD -ifE +pRE +rDm +rDg ubm pih mbR @@ -44040,14 +42883,14 @@ fcJ eoc qGx qGx -slx +kvY qGx qGx qGx qGx qGx qGx -ifT +qaT pKn rdm rdm @@ -44069,15 +42912,15 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +qmS +sTb +sTb +sTb +sTb +sTb +sTb +sTb +sTb dxF dxF dxF @@ -44177,7 +43020,7 @@ euj euj oUP azb -eUA +jOD euj euj epQ @@ -44204,17 +43047,17 @@ qGx qGx qGx qIV -jxc -pbR +yft +izF qGx -slx +kvY qGx -pbR -klE -pbR -klE -pbR -vYW +izF +mfe +izF +mfe +izF +bvg rdm rdm rdm @@ -44237,15 +43080,15 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +qmS +sTb +sTb +fwD +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -44344,11 +43187,11 @@ pih pih oUP oUP -pDk -oQL -oQL -oQL -oQL +wLf +kDQ +kDQ +kDQ +kDQ fyF pih lxc @@ -44370,18 +43213,18 @@ htv nPf nPf nPf -xOx -bDg -pbR +iVZ +swE +izF qGx -slx +kvY qGx -pbR -klE -pbR -sAf -dls -vaa +izF +mfe +izF +umY +tCF +nmT rdm rdm rdm @@ -44405,14 +43248,14 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +sTb +sTb +fwD +fwD +sTb dxF dxF dxF @@ -44522,7 +43365,7 @@ vMk vMk oUP eCB -uhD +rDm iuL oUP feg @@ -44534,9 +43377,9 @@ poF poF poF poF -mWA -pnn -kYb +cmW +qjt +hhl rdm vEz vEz @@ -44574,13 +43417,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +qmS +sTb +sTb +sTb +gRv +sTb +qmS dxF dxF dxF @@ -44688,7 +43531,7 @@ oUP mnT mnT oUP -kcd +fWw euj oSK oUP @@ -44701,16 +43544,16 @@ poF ovv poF poF -rIo -cce -jJo +wNV +vmh +vjA rdm hwO -ngK +wzP qGx mLw qGx -ngK +wzP auj rdm rdm @@ -44743,12 +43586,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +fHZ +sTb +sTb +sTb +sTb +qmS dxF dxF dxF @@ -44855,7 +43698,7 @@ dYB uiK mnT dYB -iMR +uFI fbZ rHL dYB @@ -44911,12 +43754,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +qmS +sTb +fwD +sTb +sTb +qmS dxF dxF dxF @@ -45000,9 +43843,9 @@ mnT mnT mnT iHw -aEZ -pfC -tLD +yfT +sXM +cja bJc mnT mnT @@ -45023,7 +43866,7 @@ uiK uiK mnT kjk -nPA +uWm kjk dYB nlv @@ -45078,12 +43921,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +qmS +sTb +fwD +fwD +sTb +sTb dxF dxF dxF @@ -45167,9 +44010,9 @@ mnT uiK mnT nlT -nQy +kIv nXr -aze +gjt bJc mnT mnT @@ -45246,15 +44089,15 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +jHO +vco +rVI +vco +sTb +sTb +sTb +moW dxF dxF dxF @@ -45334,9 +44177,9 @@ uiK uiK mnT iHw -bcG -iIT -pkg +gCS +vKs +gOV jIt fLE mnT @@ -45414,16 +44257,16 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +cBa +sTb +btR +sTb +fwD +upe +sTb +sTb +sTb dxF dxF dxF @@ -45505,39 +44348,39 @@ aFL aFL meF jkT -sal -fbK -fbK +foA +jAj +jAj mnT mnT uiK mnT dYB -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK -fbK +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj +jAj mnT -fbK -fbK +jAj +jAj mnT mnT mnT mnT uiK mnT -fbK -fbK -fbK -fbK -vxe +jAj +jAj +jAj +jAj +mko oXH mMH bpj @@ -45581,17 +44424,17 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +wlm +sTb +sTb +sTb +gRv +sTb +sTb +sTb +sTb +irT +wag dxF dxF dxF @@ -45671,7 +44514,7 @@ erv aFL aFL dCG -mFd +fpF rky rmt rmt @@ -45747,19 +44590,19 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +fwD +sTb +sTb +qmS +qmS +acF +qmS +hID +fwD +bBO +gRv +jpR dxF dxF dxF @@ -45839,28 +44682,28 @@ aFL aFL aFL jkT -uqW -jKm -jKm -jKm +kGA +kmv +kmv +kmv mnT uiK mnT dYB -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm -jKm +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv +kmv mnT mnT uiK @@ -45868,9 +44711,9 @@ mnT mnT mnT mnT -jKm -jKm -jKm +kmv +kmv +kmv bpj bpj bpj @@ -45913,21 +44756,21 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +jpR +sTb +sTb +sTb +qmS +msA +oNX +oNX +oNX +bPx +gqX +btR +nVw +sTb +hWy dxF dxF dxF @@ -46002,9 +44845,9 @@ mnT mnT mnT pof -aEZ -pfC -tLD +yfT +sXM +cja rMZ cMC dYB @@ -46052,7 +44895,7 @@ wXd wXd wXd wXd -mMH +jrp bpj npL bpj @@ -46080,21 +44923,21 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +fwD +sTb +qmS +msA +uSo +muQ +gpk +qZN +wGk +bZX +rVI +kcj +dHb +kcj dxF dxF dxF @@ -46169,9 +45012,9 @@ mnT mnT mnT nlT -nQy +kIv nXr -aze +gjt bJc uiK mnT @@ -46247,21 +45090,21 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +wRG +gRv +qmS +msA +uSo +ofA +ewc +fuR +mVe +loD +neH +qmS +sTb +fhD +bwx dxF dxF dxF @@ -46336,9 +45179,9 @@ nlv uiK uiK iHw -bcG -iIT -pkg +gCS +vKs +gOV bJc mnT uiK @@ -46413,23 +45256,23 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +eLQ +jpL +fwD +qmS +uRt +ofA +ewc +fuR +fuR +waO +qZN +aIl +qmS +sTb +xoE +eLQ +jkU dxF dxF dxF @@ -46580,23 +45423,23 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +eLQ +jpL +sTb +qmS +rip +pNq +fuR +fuR +fuR +fuR +mVe +sBD +qmS +wlm +xoE +eLQ +eLQ dxF dxF dxF @@ -46747,23 +45590,23 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +tTA +mhy +sTb +qmS +rip +pNq +fuR +fuR +fuR +fuR +mVe +aIl +qmS +sTb +xoE +eLQ +eLQ dxF dxF dxF @@ -46914,23 +45757,23 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +qmS +rip +kwN +eqN +fuR +fuR +gZx +eyS +aIl +qmS +sTb +cvn +jkU +eLQ dxF dxF dxF @@ -47081,22 +45924,22 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +wag +fwD +sTb +qmS +nQQ +gUN +eqS +dqc +dqc +iIt +lBN +kmQ +qmS +upe +sTb +cvn dxF dxF dxF @@ -47249,21 +46092,21 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +qmS +nQQ +qoM +qoM +msD +qoM +kmQ +qmS +sTb +sTb +sTb +sTb dxF dxF dxF @@ -47328,9 +46171,9 @@ hUk hUk hUk hUk -bnQ -bnQ -bnQ +hUk +hUk +hUk fQx fQx fQx @@ -47416,21 +46259,21 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +sTb +sTb +gRv +qmS +qmS +qmS +qmS +qmS +qmS +sTb +fwD +sTb +sTb +fwD dxF dxF dxF @@ -47569,24 +46412,8 @@ npL bpj bpj bpj -mMH -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +gBl dxF dxF dxF @@ -47597,6 +46424,22 @@ dxF dxF dxF dxF +qmS +qmS +suD +sTb +sTb +fwD +sTb +upe +sTb +sTb +sTb +sTb +sTb +gRv +sTb +jpR dxF dxF dxF @@ -47736,6 +46579,8 @@ tCm bpj bpj bpj +bpj +bpj dxF dxF dxF @@ -47745,24 +46590,22 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +fHZ +qmS +fwD +sTb +rVI +sTb +wlm +sTb +sTb +sTb +fhD +bwx +bwx +wRG +fwD +wag dxF dxF dxF @@ -47902,26 +46745,10 @@ mMH bpj bpj bpj -mMH -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +bpj dxF dxF dxF @@ -47929,6 +46756,22 @@ dxF dxF dxF dxF +qmS +sTb +sTb +sTb +sTb +suD +sTb +sTb +sTb +sTb +fwD +xoE +jkU +eLQ +jpL +sTb dxF dxF dxF @@ -47975,7 +46818,7 @@ bkR bkR bkR wTt -wTt +lbw hUk hUk hUk @@ -48069,31 +46912,31 @@ wXd npL bpj bpj +bpj +bpj +bpj +bpj +mMH mMH dxF dxF dxF dxF +qmS +sTb +gRv +sTb +sTb +qmS +qmS dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +sTb +xoE +eLQ +aRY dxF dxF dxF @@ -48236,21 +47079,21 @@ wXd bpj npL bpj -qOP -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +oXH +bpj +bpj +bpj +bpj +bpj +mMH dxF dxF +sTb +sTb +fwD +sTb +qmS +qmS dxF dxF dxF @@ -48405,18 +47248,18 @@ bpj bpj mMH dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +npL +bpj +bpj +mMH +bpj +bpj +sTb +sTb +sTb +qmS dxF dxF dxF @@ -48573,16 +47416,16 @@ bpj dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +oXH +bpj +bpj +bpj +fwD +sTb +qmS dxF dxF dxF @@ -48741,14 +47584,14 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +bpj +bpj +bpj +sTb +sTb dxF dxF dxF @@ -48908,12 +47751,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +npL +bpj +mMH dxF dxF dxF @@ -49077,10 +47920,10 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +mMH dxF dxF dxF @@ -49244,11 +48087,11 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +bpj +mMH dxF dxF dxF @@ -49349,7 +48192,7 @@ kZz feg feg feg -bsq +uiK mnT mnT mnT @@ -49411,11 +48254,11 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF +rSR +bpj +bpj +bpj +mMH dxF dxF dxF @@ -49579,10 +48422,10 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF +pFm +kQS +mxx +kQS dxF dxF dxF @@ -49746,10 +48589,10 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF +mMH +oXH +bpj +bpj dxF dxF dxF @@ -49913,10 +48756,10 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +bpj dxF dxF dxF @@ -50079,11 +48922,11 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +bpj +mMH dxF dxF dxF @@ -50245,12 +49088,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +npL +bpj +mMH dxF dxF dxF @@ -50410,13 +49253,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +bpj +bpj +bpj +mMH dxF dxF dxF @@ -50577,13 +49420,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +npL +bpj +bpj +bpj +mMH dxF dxF dxF @@ -50743,13 +49586,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +bpj +bpj +bpj +npL dxF dxF dxF @@ -50910,12 +49753,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +oXH +bpj +bpj +bpj dxF dxF dxF @@ -51076,13 +49919,13 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +npL +bpj +bpj +bpj +bpj dxF dxF dxF @@ -51243,12 +50086,12 @@ dxF dxF dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF +mMH +bpj +bpj +bpj +bpj +mMH dxF dxF dxF @@ -51408,13 +50251,13 @@ bpj bpj dxF dxF -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +bpj +npL +bpj +mMH dxF dxF dxF @@ -51574,13 +50417,13 @@ bpj bpj bpj mMH -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +npL +bpj +bpj +bpj +bpj +bpj dxF dxF dxF @@ -51741,13 +50584,13 @@ bpj oXH bpj bpj -dxF -dxF -dxF -dxF -dxF -dxF -dxF +bpj +bpj +oXH +bpj +bpj +mMH +mMH dxF dxF dxF @@ -51908,11 +50751,11 @@ bpj bpj bpj bpj -dxF -dxF -dxF -dxF -dxF +bpj +bpj +bpj +npL +mMH dxF dxF dxF @@ -52076,9 +50919,9 @@ bpj bpj bpj mMH -dxF -dxF -dxF +bpj +bpj +bpj dxF dxF dxF @@ -53555,7 +52398,7 @@ ptY ebB ebB bOc -ptY +ooI dxF dxF dxF diff --git a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm index 235f370b43..be6e937531 100644 --- a/maps/map_files/Kutjevo/sprinkles/35.communications.dmm +++ b/maps/map_files/Kutjevo/sprinkles/35.communications.dmm @@ -5,9 +5,7 @@ /turf/open/auto_turf/sand/layer0, /area/template_noop) "cm" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "cL" = ( /obj/item/clothing/suit/storage/hazardvest/yellow, @@ -17,9 +15,7 @@ /turf/open/floor/kutjevo/grey/plate, /area/template_noop) "di" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "dl" = ( /obj/structure/girder/displaced, @@ -104,13 +100,7 @@ /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, -/area/template_noop) -"qI" = ( -/obj/structure/window/framed/kutjevo, -/turf/open/space/basic, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "qM" = ( /obj/structure/machinery/light, @@ -138,9 +128,7 @@ /area/template_noop) "sQ" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "uS" = ( /obj/structure/surface/table/almayer, @@ -210,8 +198,8 @@ /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, /obj/structure/surface/rack, /turf/open/floor/kutjevo/grey/plate, @@ -226,9 +214,7 @@ /area/template_noop) "Af" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Ca" = ( /obj/structure/window/framed/kutjevo, @@ -239,18 +225,14 @@ /area/template_noop) "Ci" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "DY" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ dir = 1; req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "EK" = ( /obj/structure/window/framed/kutjevo, @@ -270,16 +252,12 @@ /area/template_noop) "Jg" = ( /obj/effect/spawner/random/toolbox, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Jz" = ( /obj/item/stack/sheet/metal, /obj/item/stack/rods, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Ks" = ( /obj/effect/decal/cleanable/blood/drip, @@ -310,7 +288,7 @@ dir = 1; req_one_access = null }, -/turf/closed/wall/kutjevo/colony, +/turf/open/floor/plating/kutjevo, /area/template_noop) "LG" = ( /obj/structure/fence, @@ -382,9 +360,7 @@ /turf/open/floor/kutjevo/tan/grey_edge, /area/template_noop) "Um" = ( -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/grey_edge/east, /area/template_noop) "Vc" = ( /obj/effect/decal/cleanable/dirt, @@ -397,9 +373,7 @@ /area/template_noop) "Xq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "XS" = ( /obj/structure/fence{ @@ -409,9 +383,7 @@ /area/template_noop) "Yo" = ( /obj/item/clothing/head/hardhat/orange, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/grey_edge/north, /area/template_noop) "YG" = ( /obj/structure/machinery/power/port_gen/pacman, @@ -423,9 +395,7 @@ dir = 1; req_one_access = null }, -/turf/open/floor/kutjevo/tan/grey_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/grey_edge/west, /area/template_noop) "Zf" = ( /obj/structure/window/framed/kutjevo, @@ -492,7 +462,7 @@ Re EK "} (5,1,1) = {" -qI +EK wC rG LO @@ -506,7 +476,7 @@ cm YO "} (6,1,1) = {" -qI +EK rm lZ nn diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index ef30196f3d..288bae44b5 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -1,47 +1,64 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aam" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) -"aaF" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "20" +"aag" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"aar" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"aax" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"aaz" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "76" }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"aaI" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"aaE" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"aaH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "aaX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/n_rockies) +"aaZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"abk" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "abo" = ( /turf/closed/wall/strata_outpost, /area/lv522/oob) +"abq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "abt" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"aby" = ( -/obj/item/stack/sheet/metal, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"abC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "abL" = ( /obj/structure/platform{ dir = 1 @@ -58,64 +75,28 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"abV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"abX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"ack" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/executive) -"acn" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +"abY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"acf" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) "acp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"acq" = ( -/obj/structure/largecrate/random{ - layer = 2.9 +"acy" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/hairlesshide{ + pixel_y = -1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/stack/sheet/hairlesshide{ + pixel_x = -2; + pixel_y = 5 }, -/area/lv522/atmos/east_reactor) -"acC" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "acD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, @@ -134,6 +115,36 @@ }, /turf/open/gm/river, /area/lv522/oob) +"acW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"adf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"adh" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/west) "adk" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -154,13 +165,17 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"adG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"adz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 5 }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"adC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "adI" = ( /obj/structure/ladder{ icon_state = "ladder10"; @@ -178,6 +193,11 @@ }, /turf/open/gm/river, /area/lv522/oob) +"adP" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "62" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "aea" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -189,19 +209,34 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) -"aeD" = ( -/obj/structure/largecrate/random, +"aep" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, +/obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"aeE" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/mining) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"aeG" = ( +/obj/structure/closet/crate, +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"aeK" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 10; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "afa" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -210,15 +245,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"afn" = ( -/obj/item/reagent_container/spray/cleaner/drone{ - pixel_x = -3; - pixel_y = 6 +"afl" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "afp" = ( /obj/structure/platform, /turf/open/gm/river, @@ -237,14 +268,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"afA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) +"afv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "afI" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -21; @@ -265,18 +292,10 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"afT" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "32" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"afX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) +"agg" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) "agu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -284,34 +303,69 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"agM" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"agI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/c_block/bridge) -"ahs" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"agW" = ( +/obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/atmos/reactor_garage) -"ahH" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"ahk" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"aho" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 5 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 1; + pixel_y = 9 }, -/area/lv522/atmos/east_reactor/east) -"ahJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"ahp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"ahx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "ahP" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"ahQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ahT" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ahW" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ahY" = ( +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "ahZ" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -326,14 +380,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"aia" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "aij" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -341,16 +387,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"aio" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) -"ait" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "aiw" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -359,6 +395,15 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"aiC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"aiI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "aiO" = ( /obj/structure/window_frame/corsat, /turf/open/floor/corsat, @@ -370,15 +415,45 @@ "aiQ" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/central_streets) -"ajw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"aiV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ajg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"ajm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"ajq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"ajC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"ajD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"ajH" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ajM" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -388,56 +463,128 @@ }, /turf/closed/wall/strata_outpost, /area/lv522/oob) -"ajY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"akb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) +"ajO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) "akh" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"akk" = ( -/obj/structure/platform{ - dir = 1 +"aki" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "akl" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"akn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"akm" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) "akp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/prison, /area/lv522/atmos/outdoor) +"akD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"akE" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "akM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) +"akP" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "akV" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"alb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ale" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aln" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"alw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "alx" = ( /obj/structure/platform{ dir = 1 @@ -447,31 +594,54 @@ "alI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) -"alJ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/oob) -"ama" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"alO" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"alR" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"alX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "amc" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ame" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +"amn" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"amq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "amP" = ( /obj/structure/machinery/light{ dir = 8 @@ -481,6 +651,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"amV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Human Resources Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "amY" = ( /obj/structure/cargo_container/horizontal/blue/top, /obj/structure/flora/pottedplant{ @@ -493,65 +671,31 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ana" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"anb" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) "anc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/glasses/sunglasses, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) +"ani" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "ann" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"ans" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"anv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"anw" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +"ant" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor) "anG" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/outdoor_bot) -"anH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "anM" = ( /obj/structure/machinery/defenses/sentry/premade/dumb{ desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; @@ -561,50 +705,77 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"aoe" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 4 - }, +"anQ" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"anW" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"aoa" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/mining) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"aod" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"aog" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "aoi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"aox" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"aoz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"aoH" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) +"aoL" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"aoN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) -"apc" = ( +"aoQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/medical) -"apd" = ( -/turf/open/floor/prison{ +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aoY" = ( +/obj/structure/surface/table/almayer{ dir = 4; - icon_state = "cell_stripe" + flipped = 1 }, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "ape" = ( /obj/structure/bed/chair{ dir = 4 @@ -612,27 +783,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"apt" = ( -/obj/structure/pipes/vents/pump, +"apj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"apF" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"apL" = ( +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0; + pixel_x = -17; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"apN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) "apS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"aqo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"aqc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"aqf" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) +"aqE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "aqH" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt2"; @@ -640,49 +836,95 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"aqT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +"aqN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"aqP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) -"arh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 +"aqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ari" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Equipment" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"arn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 }, -/area/lv522/oob) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) "arq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/burger, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"art" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"arN" = ( +"arB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"arP" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"arH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"arI" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"arJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"arK" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "arV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility, @@ -691,12 +933,27 @@ "asn" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/w_rockies) +"ass" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "asz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"asC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "asF" = ( /obj/structure/platform_decoration{ dir = 4 @@ -704,12 +961,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"asH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "asI" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -723,93 +974,133 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"asZ" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"att" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 +"asM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"asN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/obj/structure/barricade/handrail{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"asU" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"atk" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"atz" = ( -/obj/structure/machinery/light{ - dir = 8 +"ats" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"atP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"atS" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) +"aud" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"aum" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"atL" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +"aus" = ( +/obj/structure/closet/basketball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"aux" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"auy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"auF" = ( +/obj/structure/machinery/light/double, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/indoors/c_block/mining) +"auG" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/nw_rockies) +"auN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -2; + pixel_y = 8 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"atO" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/admin) +"auS" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"avq" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"avr" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/reactor_garage) -"atV" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"avv" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) -"aut" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"avx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/north_command_centre) -"auG" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/nw_rockies) -"avb" = ( -/obj/item/stack/sheet/metal, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"avM" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/kitchen/glass) -"avp" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"avO" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) "avX" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison, @@ -818,13 +1109,15 @@ /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"awm" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"awx" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "awI" = ( /obj/item/explosive/plastic/breaching_charge{ unacidable = 1 @@ -837,97 +1130,121 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) -"axw" = ( +"axu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) -"axC" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"axz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "axD" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"axF" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "axN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"axS" = ( -/obj/structure/bed/chair{ - dir = 8 +"axZ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"aya" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"ayc" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/reactor_garage) -"ayf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"ayh" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ pixel_y = 6 }, -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ayn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ayk" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "63" }, -/area/lv522/indoors/a_block/hallway) -"ayX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ayV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + req_one_access_txt = "100" }, -/area/lv522/atmos/east_reactor/south) -"aza" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"azf" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "azl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"azq" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "azz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"azC" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "azE" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"azF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +"azH" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "azJ" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison, @@ -936,130 +1253,170 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"aAb" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +"azL" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"azQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 }, -/area/lv522/atmos/east_reactor) +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"azX" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"aAe" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"aAk" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"aAH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) "aAI" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"aAL" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "aAN" = ( /obj/structure/cargo_container/wy/mid{ health = 5000 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"aAW" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"aAX" = ( -/obj/item/ammo_box/magazine/misc/mre/empty, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"aAS" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"aBe" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"aBm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice9"; - pixel_x = -5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"aBA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"aBK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "aBY" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"aCJ" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"aCl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/atmos/filt) -"aCQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor) -"aCR" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"aCr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"aCS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/machinery/light{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"aDf" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"aCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"aDb" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) "aDh" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"aDj" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ +"aDi" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"aDo" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "aDs" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"aDE" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "Southeast Landing Zone" +"aDC" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Northern Dorms"; + pixel_y = 26 }, -/turf/open/floor/plating, -/area/shuttle/drop2/lv522) -"aDS" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"aDG" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "29" }, -/area/lv522/atmos/east_reactor) -"aDZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"aDM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/prop/ice_colony/hula_girl{ + layer = 3.1; + pixel_x = 9; + pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = 9 }, -/area/lv522/oob) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "aEF" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -1068,105 +1425,48 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"aEL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"aEM" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"aER" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"aFc" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"aFd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aFr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"aFs" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"aFf" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"aFA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"aFH" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"aFI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "aFN" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"aFP" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = -9 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_y = -3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"aGg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"aGy" = ( +"aFQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ dir = 8; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/mining) -"aGA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + layer = 3; + pixel_x = 5; + pixel_y = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"aGa" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) "aGE" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/buritto, @@ -1175,13 +1475,13 @@ /obj/item/trash/pistachios, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"aGI" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +"aGJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) "aGQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, @@ -1190,12 +1490,33 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) +"aGR" = ( +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "aGS" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"aHn" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_4"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"aHs" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"aHF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) "aHH" = ( /obj/structure/platform{ dir = 1 @@ -1205,23 +1526,16 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"aIc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"aHY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"aId" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "aIf" = ( /obj/structure/machinery/light{ dir = 1 @@ -1233,6 +1547,10 @@ /obj/item/weapon/gun/rifle/l42a, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"aIi" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "aIp" = ( /turf/open/floor/plating, /area/shuttle/drop2/lv522) @@ -1241,151 +1559,131 @@ dir = 5 }, /area/lv522/indoors/c_block/mining) -"aII" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"aIx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Northlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"aIH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"aIP" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "26" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"aIT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null }, -/area/lv522/indoors/a_block/dorms) -"aIM" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"aIV" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) +"aJi" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"aJP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) -"aIY" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"aJQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"aKg" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"aKm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"aJg" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"aKp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"aJr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, -/area/lv522/oob/w_y_vault) -"aJT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"aKf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"aKn" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" + icon_state = "W" }, -/area/lv522/landing_zone_2) -"aKE" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"aKK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"aKA" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"aKO" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aKX" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"aKQ" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aLq" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"aLJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"aMb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/atmos/cargo_intake) -"aLf" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aMf" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"aMm" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 }, -/area/lv522/atmos/sewer) -"aLy" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"aMG" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"aMP" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/prison{ +/obj/item/trash/plate, +/obj/item/trash/eat, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aNd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ dir = 1; - icon_state = "blue_plate" + pixel_x = -10; + pixel_y = 6 }, -/area/lv522/indoors/a_block/hallway) -"aLG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 16; + pixel_y = 8 }, -/area/lv522/oob/w_y_vault) -"aLJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"aMI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1398,21 +1696,28 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"aNI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"aNz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"aNS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/area/lv522/indoors/a_block/corpo/glass) -"aNP" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "white_cyan3" +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"aNV" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"aOc" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/indoors/a_block/medical) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "aOi" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/item/lightstick/red/spoke/planted{ @@ -1429,36 +1734,56 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"aOP" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges) -"aOV" = ( +"aOL" = ( /obj/structure/barricade/deployable{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) +"aPd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "aPe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"aPu" = ( +"aPo" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"aPw" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"aPC" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"aPH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "aPN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -1469,54 +1794,54 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"aPS" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"aQs" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"aQo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"aQH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 +/obj/vehicle/powerloader/ft{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) +"aQI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/lv522/landing_zone_1/tunnel) -"aQU" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = null; - pixel_x = -16 +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"aQK" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"aQY" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"aRf" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"aRm" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 }, -/area/lv522/atmos/east_reactor/north) -"aRd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/medical) -"aRi" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"aRn" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"aRs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "aRH" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1524,45 +1849,47 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"aRM" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) "aRN" = ( /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) +"aRY" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"aSz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "aSE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"aSR" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"aSI" = ( +/obj/vehicle/powerloader, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"aSO" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"aSQ" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "aSZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"aTg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "aTj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1575,6 +1902,9 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"aTs" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) "aTw" = ( /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk/prison, @@ -1585,65 +1915,84 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"aTK" = ( -/obj/structure/prop/dam/truck/cargo{ - layer = 3.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) +"aTF" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) "aTP" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"aTR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"aTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aUf" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"aUg" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/barricade/metal{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"aUk" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"aUm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/c_block/bridge) -"aTS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aUo" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"aUq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"aUv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/dorms) -"aUb" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"aUI" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"aUL" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/security/glass) -"aUN" = ( -/obj/item/stack/sheet/wood/large_stack, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"aUY" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "aVa" = ( /obj/structure/platform{ dir = 1 @@ -1660,146 +2009,112 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"aVo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"aVs" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/corsat{ - icon_state = "squares" +"aVv" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) -"aVt" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"aVy" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "aVA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"aVD" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"aVF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) "aVX" = ( /obj/structure/ore_box, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"aWa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "aWl" = ( /obj/structure/barricade/wooden, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"aWo" = ( -/obj/item/stack/rods{ - pixel_y = 14 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"aWu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"aWw" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ +"aWZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"aWz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" + id = "LZ1_Pressuredoor"; + name = "High Pressure Door"; + unacidable = 1 }, -/area/lv522/atmos/east_reactor/north) -"aWB" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"aXi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"aWJ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/north) -"aWT" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"aWX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"aXa" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/bed/chair, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"aXu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "aXx" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"aXB" = ( +"aXy" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"aXD" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aXE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aXJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 4; + pixel_y = -15 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/admin) +"aXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "aYd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1811,59 +2126,38 @@ /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"aYq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"aYC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "aYD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"aYF" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"aYO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"aYO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"aYQ" = ( -/obj/structure/platform{ - dir = 4 +"aZc" = ( +/obj/vehicle/powerloader{ + dir = 4; + layer = 3.5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) "aZj" = ( /obj/structure/plasticflaps, /obj/structure/machinery/conveyor{ @@ -1872,47 +2166,62 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"aZl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = 24 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "aZD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"aZT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 +"aZI" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/corpo) -"bag" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"aZL" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"aZN" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"aZS" = ( +/obj/structure/window_frame/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"bar" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/atmos/reactor_garage) -"ban" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"baG" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"bat" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/south) +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "baN" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, @@ -1923,67 +2232,32 @@ /obj/item/tool/shovel, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"bbk" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/leafybush{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"bby" = ( -/obj/item/trash/barcardine, -/obj/structure/largecrate/random/mini{ - pixel_x = -7; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/oob) -"bbz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bbq" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/indoors/c_block/cargo) -"bbL" = ( -/obj/structure/machinery/power/apc/weak{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"bbV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cheesie, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bbX" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"bca" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) -"bce" = ( -/obj/item/trash/hotdog, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -2; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -11; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "bcf" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -1995,47 +2269,32 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"bco" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"bcP" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"bcU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/n_rockies) -"bdi" = ( +"bcp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/c_block/t_comm) -"bdj" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"bcD" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" }, -/area/lv522/outdoors/colony_streets/north_west_street) -"bdv" = ( -/obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"bcT" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"bdw" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "bdH" = ( /obj/structure/bed/chair{ dir = 4 @@ -2043,26 +2302,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"bdL" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_street) -"bdX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/nw_rockies) -"beb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) "beh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2074,40 +2313,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"bel" = ( -/obj/structure/machinery/computer/crew/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ben" = ( -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_leg"; - name = "right leg"; - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_foot"; - name = "right foot"; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"bet" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) +"bei" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"bew" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) "bex" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -2121,115 +2332,153 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"bfn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"beU" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"beW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"bfb" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bfg" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = 13; + pixel_y = -5 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"bfC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"bfF" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/east_central_street) +"bfG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "bgc" = ( /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"bgg" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"bgw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bgJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"bge" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/kitchen) -"bgN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Hubba hubba."; - icon = 'icons/obj/structures/props/posters.dmi'; - icon_state = "poster17"; - name = "\improper torn magazine page"; - pixel_x = -2; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/newspaper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"bgC" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 }, -/area/lv522/indoors/c_block/garage) -"bgV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"bgE" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"bgO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/area/lv522/outdoors/n_rockies) +/obj/item/paper/wy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "bha" = ( /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"bhd" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"bhh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/closet/crate/freezer{ - layer = 3 +"bhx" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"bhD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bhA" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, -/area/lv522/indoors/c_block/garage) -"bhL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"bhJ" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/east_reactor/north) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"bhT" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "bia" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"bid" = ( +/obj/structure/largecrate/random, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"bik" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"biv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"biF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "biL" = ( /obj/structure/bed/chair{ dir = 1 @@ -2244,36 +2493,26 @@ /obj/structure/largecrate/random/case/small, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"biY" = ( -/obj/structure/girder, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) +"bja" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "bjd" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) -"bjC" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"bjF" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/damage) -"bjT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"bjx" = ( +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bjK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/outdoors/n_rockies) +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "bjX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -2281,41 +2520,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"bka" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"bkf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"bkh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) "bkl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"bko" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Marshals Office"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"bkr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "bkt" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/headset{ @@ -2334,92 +2563,123 @@ "bkE" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) -"bkQ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +"bkZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"bli" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"blu" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"blI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/area/lv522/oob) -"bkY" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = 20 }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 27 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"blL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"blM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bmd" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"bmf" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) -"blW" = ( -/obj/structure/machinery/light/double, -/obj/structure/window/reinforced{ - dir = 1; +/obj/structure/cargo_container/kelland/left{ layer = 3 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/lv522/indoors/c_block/mining) -"bmg" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"bmh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/floor/almayer/w_y1/north, +/area/lv522/atmos/way_in_command_centre) "bmj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"bnf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"bmB" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/area/lv522/indoors/c_block/garage) -"bnz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/flora/bush/ausbushes/palebush{ + pixel_y = 9 }, -/area/lv522/indoors/a_block/security) -"bnH" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"bmU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"bnN" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null }, -/area/lv522/indoors/a_block/dorms) -"bnP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"bof" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_arm"; + name = "left arm"; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 4 + }, +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"bnP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"bof" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; phone_id = "Chief Engineer Office"; pixel_x = -2; pixel_y = 6 @@ -2443,6 +2703,10 @@ /obj/structure/machinery/light, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"boB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) "boQ" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 @@ -2450,19 +2714,47 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"bpb" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"boS" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/corpo) -"bpD" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"boY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"bph" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"bpk" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"bpm" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"bpG" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/lv522/outdoors/w_rockies) "bpN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -2470,41 +2762,53 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"bpZ" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "64" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bqb" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "bqo" = ( /obj/item/prop/colony/usedbandage{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"bqE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"bqu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) +"bqy" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "brk" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"bry" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"bsx" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" +"brr" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"brz" = ( +/obj/item/explosive/mine/active, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"brU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"bsj" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "bsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -2516,72 +2820,163 @@ "bsG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"btb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"bsR" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"btt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"btw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/landmark/corpsespawner/wy/manager, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"bty" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) +"btX" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) -"btP" = ( -/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"bue" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"buD" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"buI" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"buy" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 29 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"bvI" = ( +/obj/item/prop{ + desc = "Something about a research lab."; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "USCM classified intelligence folder" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/oob) +"buz" = ( /obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 }, -/area/lv522/atmos/command_centre) -"bvK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Chunk 'N Dump" +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"buD" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"buF" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/lone_buildings/chunk) -"bvP" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"buL" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"buP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"buT" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"buV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"bvr" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"bvE" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"bvS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "bvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"bvY" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"bvZ" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/tunnel, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "bwd" = ( /obj/item/toy/beach_ball/holoball{ pixel_x = 8; @@ -2593,56 +2988,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"bwy" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"bwe" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) "bwF" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"bwH" = ( +"bxa" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"bxd" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"bxh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"bwU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"bxn" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"bxk" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "bxr" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -2652,87 +3022,78 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"bxz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"bxU" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"byb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bye" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"byu" = ( -/obj/structure/bed/chair{ - dir = 1 +"bxv" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "100" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bxw" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"bxx" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 18 }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"bxB" = ( +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) -"byD" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"byJ" = ( +"byv" = ( /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"byB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"byS" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"byT" = ( /obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/ghettosmes, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/tool/kitchen/tray{ + pixel_x = 12; + pixel_y = -6 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"byR" = ( -/obj/structure/closet/crate, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 20; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bzv" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"bza" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"bze" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"bzi" = ( +/obj/item/clothing/suit/storage/jacket/marine/RO{ + name = "\improper UA jacket" }, -/area/lv522/atmos/reactor_garage) +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bzq" = ( +/obj/structure/prop/server_equipment/yutani_server/off, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "bzw" = ( /obj/structure/phone_base/colony_net{ phone_category = "LV522 Chances Claim"; @@ -2745,17 +3106,6 @@ "bzC" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/cargo_intake) -"bzD" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/oob) "bzL" = ( /obj/structure/machinery/camera/autoname, /obj/structure/machinery/light/small{ @@ -2763,22 +3113,23 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"bAc" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 1 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 1 +"bzN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"bzR" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bAa" = ( +/turf/open/floor/coagulation/icon0_0, +/area/lv522/oob) "bAe" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2787,6 +3138,13 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"bAj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "bAn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2794,24 +3152,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"bAo" = ( -/obj/item/prop/colony/usedbandage{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bAF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/oob) -"bBe" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"bAL" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/central_streets) +"bAZ" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"bBa" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) "bBt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -2825,44 +3189,14 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"bBB" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"bBE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Garage"; - pixel_x = -16 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"bBF" = ( -/obj/item/ammo_box/magazine/misc/mre, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/trash/tray{ - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +"bBA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/oob) +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "bBI" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -2871,35 +3205,6 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"bBJ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) -"bBW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"bCd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"bCh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "bCl" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; @@ -2910,36 +3215,40 @@ /obj/structure/girder, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"bCy" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/south_street) -"bCX" = ( +"bCR" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"bDh" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 6; + layer = 3.1; + pixel_x = -7; + pixel_y = 10 }, -/area/lv522/atmos/way_in_command_centre) -"bDk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"bDq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/cell/crap{ + pixel_x = 3; + pixel_y = 11 }, -/area/lv522/indoors/b_block/bar) -"bDn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/item/cell/hyper{ + pixel_x = -3; + pixel_y = -3 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "bDr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2947,45 +3256,65 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"bDw" = ( -/obj/vehicle/powerloader{ - dir = 4; - layer = 3.5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/north) -"bDI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"bDv" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"bDH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"bDK" = ( +/obj/structure/cargo_container/seegson/mid, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "bDR" = ( /obj/item/explosive/grenade/high_explosive, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"bDS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"bEk" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"bDW" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"bEe" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"bEG" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"bEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"bER" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"bFc" = ( +/obj/structure/barricade/wooden, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "bFn" = ( /obj/item/tool/wet_sign{ pixel_x = -11; @@ -2995,59 +3324,68 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"bFC" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"bFz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo/glass) -"bFU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"bFF" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/nw_rockies) +"bFS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bGh" = ( +/obj/item/clothing/suit/storage/marine/medium/leader, +/obj/item/clothing/head/helmet/marine/leader{ + pixel_x = 9; + pixel_y = 14 }, -/area/lv522/indoors/b_block/hydro) -"bGL" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"bGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"bGv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"bGF" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "bGT" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"bHa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) +"bGZ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"bHg" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"bHv" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) "bHA" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -3059,40 +3397,48 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"bHE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "bHF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"bHT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) "bIe" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"bIh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/mining) +"bIl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) "bIr" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/north) +"bIw" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "bID" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -3105,205 +3451,159 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"bIF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate{ - pixel_x = -2; - pixel_y = 12 - }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) "bIJ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) -"bIQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"bIY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"bJa" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/corpo/glass) -"bJp" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/tunnel, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"bJE" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel"; - pixel_y = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"bJG" = ( +"bJg" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bJr" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"bJw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 +/obj/structure/closet/emcloset, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bJC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/indoors/c_block/t_comm) +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"bJF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "bJN" = ( /obj/item/stack/folding_barricade, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"bJU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"bJV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) "bJZ" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"bKb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) "bKf" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"bKk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) -"bKn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) "bKq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"bKu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"bKO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"bLh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"bKH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) -"bLk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"bLb" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters{ - pixel_y = 6 - }, -/obj/item/weapon/wirerod{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/recharger{ + pixel_y = 5 }, -/area/lv522/atmos/east_reactor) -"bLA" = ( -/obj/structure/platform_decoration{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bLI" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bLR" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"bMb" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"bMe" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/c_block/t_comm) -"bLV" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"bMh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"bMk" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 13 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 12 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"bMA" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 }, -/area/lv522/indoors/c_block/casino) -"bMa" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "bMB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"bMF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"bMI" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bMM" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "bMN" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 12; @@ -3311,12 +3611,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"bMS" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bMX" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/lv522/oob) +"bMY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) "bNf" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -3329,22 +3639,17 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"bNs" = ( -/obj/structure/closet/secure_closet/bar, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" +"bNu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/b_block/bar) -"bNA" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "bNE" = ( /obj/item/tank/oxygen{ pixel_x = 4; @@ -3359,50 +3664,37 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"bNJ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"bNG" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) +"bNK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) -"bNT" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"bOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"bNY" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" }, -/area/lv522/atmos/east_reactor) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "bOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) -"bOM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bOS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Emergency Engineering" }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "bPH" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -3412,96 +3704,57 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"bPJ" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) -"bPQ" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = -2; - pixel_y = -13 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"bQl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness/glass) -"bQq" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "17" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"bQC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ +"bQe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"bQw" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "brown" + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"bQF" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) "bQG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"bQN" = ( +"bQU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"bQP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 10 - }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"bRc" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bRN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"bRy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bRH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"bRI" = ( +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "bRP" = ( /obj/structure/bed/chair/comfy{ @@ -3509,6 +3762,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"bRZ" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/east_reactor/south) "bSa" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/revolver/spearhead, @@ -3517,49 +3773,80 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"bSs" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"bSc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/area/lv522/indoors/a_block/kitchen) -"bSD" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/barricade/metal{ dir = 4 }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"bSB" = ( +/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"bSI" = ( -/obj/structure/barricade/wooden{ +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges/op_centre) -"bSM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"bSK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"bSO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bST" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = 16; + pixel_y = 7 }, -/area/lv522/atmos/west_reactor) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "bSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"bSY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"bSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"bTf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"bTg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "bTo" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -3567,18 +3854,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"bTF" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/effect/decal/cleanable/cobweb, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +"bTP" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "bTT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3588,46 +3872,33 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"bUx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +"bUj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"bUs" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"bUt" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" }, -/area/lv522/indoors/c_block/mining) -"bUJ" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"bUy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "bUN" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"bUO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "bUV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3636,6 +3907,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"bVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"bVd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"bVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"bVl" = ( +/obj/structure/machinery/computer/crew/colony, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "bVu" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -3644,59 +3938,56 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"bVA" = ( -/obj/structure/bed/chair{ - dir = 8 +"bVD" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -5; + pixel_y = 13 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"bVF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "bVG" = ( /obj/structure/bed/bedroll{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"bVX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"bVZ" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/filt) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "bWd" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"bWm" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +"bWe" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/matches{ + pixel_y = 8 }, -/area/lv522/indoors/a_block/admin) -"bWq" = ( -/obj/item/trash/barcardine, -/obj/item/tool/weldingtool, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bWk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "bWt" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) +"bWu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "bWv" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -3712,58 +4003,29 @@ }, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"bWQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) -"bWX" = ( +"bWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"bXl" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "brown" + dir = 4 }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) -"bXo" = ( +"bWS" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/storage/fancy/cigar/matchbook/exec_select{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/recharger{ + pixel_y = 2 }, -/area/lv522/indoors/a_block/dorms) -"bXq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"bXz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/area/lv522/atmos/west_reactor) -"bXA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/platform_decoration{ + dir = 10 }, -/area/lv522/atmos/north_command_centre) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "bXO" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, @@ -3775,16 +4037,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"bXU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper B-Block Bar" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) +"bXY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "bXZ" = ( /obj/structure/platform{ dir = 1 @@ -3792,24 +4048,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"bYd" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"bYx" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) +"bYi" = ( +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "bYy" = ( /obj/item/paper, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"bYH" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "bYS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4; @@ -3825,10 +4078,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"bYU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "bYV" = ( /obj/structure/platform, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) +"bYY" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "bYZ" = ( /obj/structure/bookcase{ density = 0; @@ -3842,93 +4107,57 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"bZe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" +"bZf" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bZy" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 3 }, -/area/lv522/atmos/east_reactor/north) +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"bZA" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "bZB" = ( /obj/structure/girder/displaced, /turf/open/floor/corsat, /area/lv522/atmos/outdoor) -"bZF" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"bZE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "bZK" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/outdoor_bot) -"bZV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"bZX" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"cac" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = -4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"caf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"cay" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) +"bZS" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"bZY" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "caE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3936,122 +4165,74 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"caN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) -"caP" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibleg" - }, +"caL" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"caM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/damage) -"caV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 5 }, -/area/lv522/atmos/sewer) -"cbb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"cbn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"cbp" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"cbB" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 10; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"cbR" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"caT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"cbc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"cbu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"cbP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "cbW" = ( /obj/structure/machinery/light, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"cbY" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"cce" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"cco" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cct" = ( /obj/structure/bed/chair/wood/normal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ccu" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +"ccv" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/atmos/east_reactor) +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"ccD" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) "ccN" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -4067,20 +4248,58 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"ccV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"cdf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cdj" = ( /obj/structure/largecrate/random, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cdP" = ( +"cdr" = ( +/obj/structure/pipes/unary/freezer{ + dir = 1; + icon_state = "freezer_1" + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"cdx" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"cdV" = ( +/obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"cef" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "cem" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4091,47 +4310,51 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"cet" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"cen" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -2; + pixel_y = 16 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"ceq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "cex" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_2) +"ceB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "ceG" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/chips, /obj/item/trash/buritto, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"cfd" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"cfg" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"cfv" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"ceM" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ceU" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"cfo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "cfT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4147,54 +4370,88 @@ }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"cgB" = ( +"cgt" = ( +/obj/structure/curtain/red, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"cgF" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 + dir = 4 }, -/obj/item/clothing/under/suit_jacket/stowaway, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cgx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) -"cgG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cgK" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"chd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/bridge) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"che" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "chm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) -"cho" = ( -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/plating{ - icon_state = "platebot" +"chz" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" }, -/area/lv522/indoors/c_block/cargo) -"chG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" }, -/area/lv522/indoors/a_block/security) +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 7 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 3 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = -6 + }, +/obj/item/clothing/suit/storage/bomber/alt, +/obj/item/clothing/suit/storage/bomber/alt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "chR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -4202,86 +4459,61 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"chT" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +"chX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"cir" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"cit" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ciw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) -"cia" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/lv522/indoors/lone_buildings/chunk) -"cil" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"cim" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"ciw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"ciA" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"ciF" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"ciL" = ( -/obj/item/tool/pen/clicky, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"ciS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"ciS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"ciT" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) "cjb" = ( /obj/vehicle/train/cargo/engine{ dir = 8 }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) +"cje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"cjr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "cjv" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4295,68 +4527,100 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ckK" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"ckT" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"cjI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"cjJ" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"cjK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"ckc" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cks" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ckA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/indoors/a_block/security) -"ckZ" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ckB" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"clc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "clf" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"clR" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"clT" = ( -/obj/structure/barricade/wooden{ - dir = 4 +"clB" = ( +/obj/item/clothing/accessory/red, +/obj/item/clothing/under/liaison_suit/field{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"clG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) +"clH" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"clL" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"clM" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "clY" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"cmc" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"cmk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"cmm" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"cmA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cmB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -4376,66 +4640,91 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"cnw" = ( -/obj/structure/bed/chair{ +"cmS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"cnC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"cnH" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) +"cnJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"cnQ" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv522/indoors/c_block/casino) -"cnA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"cnS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"cnZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"cnN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cop" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "51" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"col" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -2 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cos" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) -"con" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"cov" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) -"coR" = ( -/obj/structure/ore_box, +"coI" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"coK" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"cpk" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"cpn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"coL" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/oob) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"cpb" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) +"cpq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"cpw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "cpx" = ( /obj/structure/platform_decoration{ dir = 4 @@ -4448,34 +4737,6 @@ "cpy" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"cpC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"cpE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Engineering"; - pixel_y = -6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) "cpG" = ( /obj/structure/surface/table/almayer, /obj/structure/phone_base/colony_net/rotary{ @@ -4495,22 +4756,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"cpO" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"cpU" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) "cpX" = ( /obj/item/toy/beach_ball/holoball, /obj/item/shard{ @@ -4520,14 +4765,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"cpZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "cqb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -4541,24 +4778,13 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"cqh" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"cqm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"cqr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "cqs" = ( /obj/structure/machinery/light{ dir = 1 @@ -4569,48 +4795,43 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/central_streets) -"cqH" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"cqL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"cqP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/north) -"crm" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"cqy" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/north) -"crH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"cqC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"cqG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"cqJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"crf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) "crM" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"crO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "crP" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -4619,6 +4840,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"crS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) "crT" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 6 @@ -4626,110 +4853,143 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"crX" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "marked" +"csc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) -"csl" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"csv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"csy" = ( -/obj/structure/surface/table/almayer, +"cse" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"csh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"csK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 15; + pixel_y = -8 }, -/area/lv522/atmos/north_command_centre) -"csS" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 10; + pixel_y = -13 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/t_comm) +"csP" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "csU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"cte" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"ctf" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"cto" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cts" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"ctA" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"ctB" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ctE" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/oob) -"cuk" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"cuu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ +"ctJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ctS" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ctT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"cuF" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"ctZ" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/north_command_centre) +"cua" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cui" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"cur" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"cux" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/east_reactor/west) -"cuY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"cuQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"cvd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) "cve" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -4739,39 +4999,42 @@ "cvi" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"cvP" = ( -/obj/item/prop/colony/canister{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"cwe" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"cvC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "2" }, -/area/lv522/indoors/c_block/mining) -"cwq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cvE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/atmos/east_reactor/north) -"cwr" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"cvN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) +"cvO" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"cwf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"cwB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"cwD" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "cwE" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, @@ -4799,123 +5062,81 @@ /obj/item/stack/cable_coil, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cxv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"cxC" = ( +"cxx" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"cxH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"cxW" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -3 +/obj/structure/machinery/computer/overwatch/almayer/broken{ + dir = 8; + pixel_x = -12; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/storage/backpack/marine/satchel/rto/small{ + pixel_x = 7; + pixel_y = 19 }, -/area/lv522/indoors/a_block/dorms) -"cxE" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 +/obj/structure/machinery/door_control{ + id = "UD6 East"; + name = "Cargo Shutter Control"; + pixel_y = -4 }, -/obj/structure/platform{ - dir = 1 +/obj/item/clothing/head/headset{ + pixel_x = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"cxK" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cxX" = ( +/obj/item/prop/colony/used_flare, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"czd" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" }, -/area/lv522/indoors/c_block/cargo) -"cxT" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"czj" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "71" }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"czl" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) -"cyl" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"cys" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"czs" = ( +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"czt" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/area/lv522/outdoors/colony_streets/central_streets) -"cyt" = ( -/turf/open/floor/strata{ +/obj/structure/sink{ dir = 8; - icon_state = "white_cyan2" + pixel_x = -11 }, -/area/lv522/indoors/a_block/medical/glass) -"cyu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"cyv" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"cyH" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"cyO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"cyV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/b_block/bridge) -"czd" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"czu" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) "czC" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/east) @@ -4929,24 +5150,39 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"czH" = ( +/obj/structure/window_frame/strata, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) "czO" = ( /obj/structure/blocker/invisible_wall, /obj/item/pamphlet/skill/powerloader, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"czT" = ( -/obj/structure/machinery/light{ - dir = 1 +"czP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"czR" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_x = -7 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "czW" = ( /obj/structure/barricade/wooden{ dir = 1; @@ -4955,107 +5191,142 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"cAp" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"cAx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 +"cAa" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"cAg" = ( +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 2 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 }, -/area/lv522/indoors/c_block/casino) -"cAy" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"cAh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"cAi" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"cAs" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"cAu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"cAw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) -"cAW" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"cAP" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"cBi" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"cBs" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"cBV" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"cCt" = ( -/obj/item/prop/alien/hugger, -/obj/item/clothing/head/helmet/riot, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"cAR" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"cBe" = ( +/obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/kitchen) -"cCC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"cBf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"cBu" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cBG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"cBS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"cCh" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cCm" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"cCu" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "cCH" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"cCK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"cCJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/area/lv522/indoors/a_block/admin) -"cCL" = ( +/obj/item/tool/pen/blue/clicky, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "cCN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"cCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" +"cCS" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southwest, +/area/lv522/indoors/a_block/dorms) +"cCY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) -"cDh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"cDf" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/area/lv522/atmos/east_reactor/north) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "cDi" = ( /obj/structure/platform_decoration{ dir = 4 @@ -5066,29 +5337,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"cDo" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +"cDr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/north) -"cDp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"cDB" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/north_east_street) -"cDx" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "cDH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"cDK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "cEj" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -5104,33 +5377,16 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"cEw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"cEx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"cEM" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - icon_state = "brown" +"cEz" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"cEE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "cEN" = ( /obj/structure/bed/bedroll{ dir = 10 @@ -5141,52 +5397,64 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"cFv" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"cEU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/area/lv522/atmos/cargo_intake) -"cFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"cEY" = ( +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"cFa" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/wy_chips_pepper, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/north) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"cFf" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"cFt" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"cFC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"cFO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "cFR" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cGd" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"cGw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"cGn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"cGG" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"cGB" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"cGO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "cGY" = ( /obj/item/tool/wrench, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5194,117 +5462,89 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cHb" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "cHg" = ( /obj/structure/machinery/deployable/barrier, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"cHi" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "cHj" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cHu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"cHl" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"cHw" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"cHy" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"cHC" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" + pixel_y = 6 }, -/area/lv522/indoors/a_block/dorms) -"cHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"cHr" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"cHs" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"cHR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/east_reactor) -"cHY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"cHS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"cHW" = ( /obj/structure/platform_decoration{ - dir = 8 + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"cIf" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"cIh" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"cIe" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"cIj" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/indoors/b_block/hydro) -"cIm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/obj/item/device/m56d_gun, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cIn" = ( +/obj/structure/surface/rack, +/obj/item/hardpoint/locomotion/van_wheels, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "cIr" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cIs" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) "cIA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -5316,104 +5556,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"cIQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, +"cIB" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"cIG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"cIV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/east) -"cIW" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/east) -"cIX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/item/device/radio/marine{ - pixel_x = 10; - pixel_y = 22 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/oob) -"cJc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cJg" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) -"cJh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/oob) "cJm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"cJo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "cJy" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -5425,38 +5584,21 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"cJW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"cJH" = ( +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"cKa" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/landing_zone_2) +"cKc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 7 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"cKf" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"cKi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"cKo" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "cKp" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -5488,6 +5630,15 @@ "cKG" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/nw_rockies) +"cKM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "cKQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5507,12 +5658,35 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cLb" = ( -/turf/open/floor/corsat{ +"cLa" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"cLd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Interrogation"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "browncorner" + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"cLh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "cLi" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -5520,23 +5694,20 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"cLo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/lv522/indoors/b_block/bar) -"cLx" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"cLm" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"cLn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"cLu" = ( +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "cLB" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -5546,72 +5717,95 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"cLH" = ( +"cLM" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"cLU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"cLQ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) "cMc" = ( /obj/item/clothing/head/hardhat, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cMv" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ - dir = 8 +"cMg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"cMh" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"cMi" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "6" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cMw" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"cMx" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"cMQ" = ( -/turf/open/floor/strata{ +"cMZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "white_cyan4" + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/medical/glass) -"cMW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"cNd" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cNe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/reactor_garage) -"cNB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"cNA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"cNN" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "cNO" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_y = 30 }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"cNQ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/filt) "cNU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5622,103 +5816,75 @@ "cNV" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/north_command_centre) -"cOA" = ( -/obj/structure/machinery/light{ - dir = 4 +"cOg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"cOu" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"cON" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"cOJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"cOQ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cOS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) -"cOZ" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"cPa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/west_reactor) "cPi" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"cPr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) "cPx" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/filt) -"cPy" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"cPN" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/oob) -"cPO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/oob) -"cPU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/oob) -"cPY" = ( +"cQk" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"cQc" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "3" - }, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 29 - }, -/obj/item/prop{ - desc = "Something about a research lab."; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "USCM classified intelligence folder" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/item/toy/blink{ + pixel_x = 3; + pixel_y = 10 }, -/area/lv522/oob) +/obj/item/toy/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "cQm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/backpack/marine/satchel{ @@ -5732,10 +5898,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"cQv" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) +"cQy" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "cQB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5743,131 +5915,79 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"cQS" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) -"cQW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"cRB" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"cRD" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"cRG" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/oob) -"cRL" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 +"cRh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"cRi" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cRm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" }, -/area/lv522/oob) -"cRN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"cSM" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/atmos/north_command_centre) -"cRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"cSb" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) -"cSh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cSO" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"cST" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"cTf" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) -"cTz" = ( -/obj/effect/decal/cleanable/dirt, +"cSP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"cSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"cTD" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"cTF" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "cTU" = ( /obj/structure/curtain/red, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"cTW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "cTX" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"cTY" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "cTZ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"cUa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "cUg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5875,20 +5995,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cUh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "cUl" = ( /obj/item/stack/cable_coil/cut, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5896,210 +6002,95 @@ }, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"cUx" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) -"cUA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "cUG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/garage) -"cUX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/t_comm) -"cVc" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"cUK" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "31" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cUR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"cVe" = ( -/obj/item/stack/sheet/wood, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cVd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"cVm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"cVv" = ( /obj/structure/surface/table/almayer, -/obj/item/grown/nettle/death{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/glowshroom{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) +"cVk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "cVy" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"cVR" = ( +"cVE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"cVS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "cWf" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/atmos/cargo_intake) -"cWg" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"cWr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"cWH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"cWL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"cWS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"cWT" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"cWY" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +"cWn" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"cWD" = ( +/obj/structure/shuttle/engine/heater{ dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"cWZ" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" + pixel_x = 4 }, -/area/lv522/atmos/filt) -"cXf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 }, -/area/lv522/indoors/c_block/casino) -"cXi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"cWN" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"cWP" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/north_command_centre) +"cWV" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"cXl" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/lv522/atmos/east_reactor/south) -"cXm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) "cXq" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -6107,6 +6098,11 @@ /obj/structure/machinery/autolathe, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"cXr" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "cXF" = ( /obj/structure/bed/chair{ dir = 8 @@ -6114,39 +6110,45 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"cYe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"cXV" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/atmos/east_reactor) -"cYf" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"cYa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cYj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "cYn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"cYB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Garage"; - pixel_y = 26 +"cYv" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) +"cYy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "cYE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -6155,200 +6157,69 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"cYF" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) -"cYG" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) +"cYL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "cYQ" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"cZb" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"cZg" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"cZq" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"cZu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"cZB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "cZH" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/atmos/sewer) -"cZM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) -"cZN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) "cZQ" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dae" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "29" +"cZW" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"daj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "29" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dah" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"dak" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"daq" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "2" - }, -/obj/item/storage/belt/gun/m44/custom, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/oob) -"das" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"daz" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"daB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"daG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"daL" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/oob) -"dbc" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"dbi" = ( -/obj/item/clothing/suit/storage/marine/leader, -/obj/item/clothing/head/helmet/marine/leader{ - pixel_x = 9; - pixel_y = 14 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) -"dbs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) +"daw" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"daH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"dbr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, /area/lv522/atmos/filt) -"dbt" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/oob) "dbF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/almayer{ @@ -6369,6 +6240,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) +"dbI" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/plush/farwa{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "dbP" = ( /obj/structure/platform{ dir = 4 @@ -6382,12 +6262,19 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"dbX" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat{ - icon_state = "squares" +"dbV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/oob) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"dbW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "dcc" = ( /obj/structure/cargo_container/kelland/left, /obj/structure/pipes/standard/simple/hidden/green{ @@ -6395,105 +6282,33 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"dci" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/oob) -"dck" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "dco" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dcy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"dcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) -"dcD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"dcF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) -"dcJ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"dcM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"ddr" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dcI" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/davenport{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"ddy" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/cargo_intake) -"ddC" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; +/obj/item/paper_bin{ pixel_x = 8; - pixel_y = 19 + pixel_y = 6 }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ddk" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) "ddK" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -6523,31 +6338,33 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ddN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"ddP" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 +"dee" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"deg" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"ddS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"dei" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1"; + pixel_x = 7 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "dek" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6560,12 +6377,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"del" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "den" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -6579,6 +6390,52 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) +"deA" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ + pixel_x = -5; + pixel_y = 23 + }, +/obj/item/tool/wrench{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) +"deO" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"deS" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"dfj" = ( +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -2; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "dfk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -6586,12 +6443,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"dfn" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat{ - icon_state = "plate" +"dfx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) "dfE" = ( /obj/structure/filingcabinet{ density = 0; @@ -6615,70 +6472,42 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"dfH" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"dfK" = ( +"dfO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"dfU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 1 }, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dgb" = ( /obj/structure/cryofeed, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"dgd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"dgj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"dgq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"dgn" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/east) -"dgI" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"dgz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) +"dgB" = ( +/obj/effect/decal/cleanable/generic, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"dgJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/cargo_intake) -"dgO" = ( -/obj/structure/tunnel, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "dgR" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -6687,157 +6516,104 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"dgY" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"dgZ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"dhj" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"dht" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"dhd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"dhi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 }, -/area/lv522/atmos/cargo_intake) -"dhH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"dhx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_2) -"dhJ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) +"dhD" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dhK" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"dhL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "dhP" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"dhQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) -"dhW" = ( -/obj/item/stack/tile/plasteel, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "dhX" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"dic" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "104" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dio" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"dip" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"die" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"diy" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" }, -/area/lv522/atmos/east_reactor) -"dit" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"diC" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"diL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/c_block/mining) -"diT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"diO" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"diZ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/flora/bush{ + pixel_y = 9 }, -/area/lv522/indoors/a_block/security) -"djg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"djb" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "djm" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"djq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"djD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -14; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"djL" = ( -/obj/structure/prop/invuln/overhead_pipe{ +"djv" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ dir = 8; - pixel_x = -6; - pixel_y = 6 + icon_state = "p_stair_full" }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) "djM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6845,27 +6621,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"djQ" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +"djR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"djS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" }, -/obj/structure/flora/bush/ausbushes/palebush{ - pixel_y = 9 +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"djV" = ( +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"djW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/b_block/bridge) -"dkh" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dka" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"dko" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "dkq" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -6873,6 +6663,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"dkA" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) "dkB" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -6881,73 +6679,36 @@ /obj/structure/cryofeed/right, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"dkJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"dkL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"dkP" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/oob) "dkX" = ( /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"dli" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"dlC" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "22" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dlI" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Marked_2"; - pixel_y = 26 +"dlO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"dmk" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"dlM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/south_street) +"dml" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "dmm" = ( /obj/item/weapon/twohanded/folded_metal_chair{ pixel_y = -8 @@ -6958,50 +6719,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"dmn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"dmx" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) -"dmA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_container/hypospray/autoinjector/kelotane{ - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"dmE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "dmG" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -7014,106 +6731,53 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dne" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"dng" = ( -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) -"dni" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +"dmT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/b_block/bridge) -"dnx" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/filt) +"dnc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"dnB" = ( -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/oob) -"dnD" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"dnG" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"dnq" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) +"dnF" = ( +/obj/structure/barricade/wooden{ dir = 4; - icon_state = "brown" + layer = 5.3 }, -/area/lv522/oob) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "dnM" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"dnO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"dnQ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) -"dnX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"dnT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"dnW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"dnZ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"doc" = ( +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" }, -/area/lv522/indoors/a_block/kitchen) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "doj" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -7122,19 +6786,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"doq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"dos" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Southwest Landing Zone" - }, -/turf/open/floor/plating, -/area/shuttle/drop1/lv522) "dox" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent5"; @@ -7145,36 +6796,41 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"doC" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "doF" = ( /obj/structure/barricade/deployable{ dir = 1 }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"doP" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"doS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/plaincake{ + pixel_y = 4 }, -/area/lv522/atmos/west_reactor) -"dpg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"doT" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/lv522/atmos/west_reactor) -"dpj" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"doY" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"dpe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"dpi" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "dpk" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -7182,99 +6838,90 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"dpz" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"dqn" = ( -/obj/structure/platform_decoration{ - dir = 4 +"dqm" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs{ + pixel_y = 12 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/restraint/handcuffs{ + pixel_y = 6 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/item/restraint/handcuffs, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "dqr" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dqB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +"dqv" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dqw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "86" }, -/area/lv522/outdoors/colony_streets/south_east_street) -"drd" = ( +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dqT" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/crossbow, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"drb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"drv" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"dry" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 16 + }, +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/item/frame/table/almayer{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "drz" = ( /obj/effect/decal/cleanable/blood, /obj/item/tool/hatchet, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"drM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"drS" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"drV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"drP" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "66" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"drX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"dsa" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/landing_zone_2/ceiling) -"dsc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "dsl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -7283,17 +6930,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"dsq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) "dsu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -7311,6 +6947,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) +"dsJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "dsL" = ( /obj/structure/surface/table/almayer, /obj/item/device/sentry_computer, @@ -7322,90 +6966,118 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"dsT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"dsY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dsZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"dth" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dts" = ( +/obj/structure/platform{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"dtB" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"dtK" = ( +/obj/structure/largecrate/random{ + layer = 2.9 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"dtb" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m4ra{ - current_mag = null +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"dtM" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) -"dtl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock"; - welded = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"dtS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"dtU" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "47" }, -/area/lv522/indoors/a_block/kitchen/glass) -"dtr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dtX" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"dub" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/walkman{ + pixel_x = 7; + pixel_y = 14 }, -/area/lv522/atmos/north_command_centre) -"dtE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/device/cassette_tape/pop1{ + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"duF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/c_block/casino) -"dtR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"duT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/reactor_garage) -"dua" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) -"dut" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dva" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"duN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dvi" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "dvp" = ( /obj/structure/largecrate/supply, /obj/structure/largecrate/supply{ @@ -7416,10 +7088,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"dvB" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/east) "dvO" = ( /obj/structure/platform_decoration/strata, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) +"dvQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dvR" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dvT" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dwd" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -7430,42 +7134,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"dwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"dwy" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 15 }, -/area/lv522/atmos/west_reactor) +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/frame/table/almayer{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dwI" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"dwO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 15; - pixel_y = -8 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 10; - pixel_y = -13 - }, -/obj/item/trash/ceramic_plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/t_comm) -"dwP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) "dxc" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -7474,216 +7160,176 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) -"dxl" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"dxJ" = ( +"dxg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"dxU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"dxh" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/atmos/west_reactor) -"dxY" = ( -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) +"dxv" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"dxx" = ( +/obj/structure/safe{ + spawnkey = 0 }, -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/storage/fancy/cigar, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/m_gift, +/obj/item/coin/diamond, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"dxG" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"dyc" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"dyo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"dyr" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dyt" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"dyw" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) -"dya" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +"dyL" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dyX" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"dzc" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/atmos/north_command_centre) -"dyl" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dzk" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 }, -/area/lv522/atmos/north_command_centre) -"dyH" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"dzy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"dzQ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "47" }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"dyI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dzW" = ( +/obj/item/seeds/riceseed, +/obj/structure/closet/crate, +/obj/item/seeds/riceseed, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"dAk" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" +/obj/structure/flora/bush{ + pixel_y = 9 }, -/area/lv522/indoors/a_block/medical) -"dyQ" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"dyS" = ( -/obj/item/stack/sheet/wood, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"dzd" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dAp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv522/indoors/a_block/security) -"dzs" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dAr" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"dAy" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"dAN" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 1 }, -/area/lv522/indoors/c_block/casino) -"dzv" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"dAP" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"dBd" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"dBj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/north) -"dzB" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/c_block/casino) -"dAf" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"dAm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"dAG" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"dAQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"dBa" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"dBb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"dBc" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"dBd" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"dBe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"dBi" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"dBo" = ( -/obj/item/device/defibrillator, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"dBt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/obj/item/newspaper{ + anchored = 1; + desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; + name = "menu"; + pixel_y = 26 }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"dBu" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) "dBC" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -7695,6 +7341,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) +"dBG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "dBQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -7702,73 +7354,98 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"dCx" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/corsat{ - icon_state = "marked" +"dCc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "23" }, -/area/lv522/atmos/north_command_centre) -"dCJ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dCk" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"dCl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dCA" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"dCT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/area/lv522/indoors/a_block/fitness/glass) +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dCH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dCR" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"dCV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "dCY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"dDp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"dDb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "dDq" = ( /turf/closed/wall/shiva/prefabricated, /area/lv522/landing_zone_2/ceiling) -"dDC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"dDF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/filt) +"dDE" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "dDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"dDU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"dDY" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "dEc" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) "dEm" = ( /obj/structure/closet, /turf/open/floor/prison, @@ -7782,61 +7459,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"dEy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_x = -6; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"dEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) -"dEM" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) +"dEF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "dEP" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/chips, /obj/item/trash/wy_chips_pepper, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"dEY" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"dEZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/security) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "dFd" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, @@ -7845,6 +7484,15 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"dFh" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/shuttle/drop2/lv522) "dFn" = ( /obj/structure/bed, /obj/item/bedsheet/yellow, @@ -7858,19 +7506,19 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"dFo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "dFz" = ( /turf/closed/shuttle/elevator{ dir = 6 }, /area/lv522/indoors/c_block/mining) -"dFE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) +"dFG" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "dFH" = ( /obj/structure/machinery/power/port_gen/pacman{ layer = 3.1; @@ -7878,6 +7526,17 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"dFL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"dFP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "dFR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -7889,81 +7548,43 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"dFY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"dGp" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 - }, -/turf/open/floor/plating{ - icon_state = "platebot" +"dGj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"dGB" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dGC" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "dGD" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"dGK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dGV" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/west) -"dHc" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"dHg" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"dGL" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"dGT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "dHj" = ( /obj/item/device/flashlight, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"dHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"dHx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "dHy" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -7971,33 +7592,53 @@ /obj/item/clothing/suit/storage/snow_suit/survivor/parka/red, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"dHz" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"dHE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"dHF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +"dHH" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"dHJ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"dHP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "dHR" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 16 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"dHS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"dIc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dIg" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "dIi" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -8010,65 +7651,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"dIr" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"dIt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"dIG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 3 +"dIz" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/c_block/garage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "dIK" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"dIT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"dIX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"dJp" = ( -/obj/structure/bed/chair/comfy{ +"dIL" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"dIR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"dJg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "dJs" = ( /obj/item/tool/pen/red/clicky, /turf/open/floor/corsat, @@ -8077,27 +7690,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"dJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/operating, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) +"dJv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"dJy" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "dJJ" = ( /obj/structure/cargo_container/horizontal/blue/middle{ pixel_x = 16 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"dJN" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) +"dJO" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dKd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8105,76 +7714,98 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"dKC" = ( +"dKm" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"dKu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"dKF" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"dKM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"dKA" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "dKO" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/east) -"dLf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"dKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"dLb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/corpo/glass) -"dLq" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" +/obj/item/weapon/wirerod{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"dLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/oob) -"dLs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) -"dLz" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dLj" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/area/lv522/oob) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dLA" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) "dLC" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"dLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"dLR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"dLX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dLZ" = ( /obj/item/storage/box/guncase/m3717, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"dMb" = ( -/obj/item/prop/helmetgarb/lucky_feather{ - pixel_x = 11; - pixel_y = 10 - }, -/obj/item/device/implanter/subdermal_armor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) "dMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8182,252 +7813,168 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"dMo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"dMp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +"dMz" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "67" }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dMC" = ( +/obj/structure/noticeboard{ + pixel_y = 29 }, -/area/lv522/indoors/a_block/executive) -"dMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dMD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/lv522/atmos/west_reactor) -"dMy" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"dMH" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" }, -/area/lv522/outdoors/colony_streets/north_west_street) -"dMN" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "4" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"dMI" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/item/clothing/under/marine/officer/pilot/flight, -/obj/item/clothing/suit/storage/jacket/marine/pilot{ - layer = 3.1; - pixel_y = 2 +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dMK" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/oob) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "dMY" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"dNd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"dNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"dNm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dNi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dNm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"dNn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"dNK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) -"dNP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"dNo" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dNJ" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/a_block/security/glass) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"dNS" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"dNY" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/outdoors/n_rockies) "dOa" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/north) -"dOt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"dOw" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"dOz" = ( +"dOf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/hydro) -"dOI" = ( -/obj/structure/prop/invuln/remote_console_pod, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - density = 1; - layer = 3.5; - pixel_y = -9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + dir = 4 }, -/area/shuttle/drop2/lv522) -"dOK" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"dOg" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/atmos/north_command_centre) -"dOY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"dOj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"dON" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"dOS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/north) -"dPl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"dOV" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/lv522/atmos/reactor_garage) -"dPq" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dPk" = ( +/obj/item/trash/wy_chips_pepper, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor/north) -"dPv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dPp" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) +"dPt" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "dPG" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"dPI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"dPP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"dPL" = ( +/obj/item/prop/colony/canister, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dPM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper B-Block Bar" }, -/area/lv522/outdoors/colony_streets/south_west_street) -"dQa" = ( -/obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"dQg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"dQh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"dQm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"dQd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"dQj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dQr" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, @@ -8439,184 +7986,157 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dQM" = ( -/obj/structure/machinery/vending/dinnerware, +"dQw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dQy" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dQF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "101" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dRg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/bar) -"dQQ" = ( /obj/structure/platform{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"dRj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 }, -/area/lv522/outdoors/colony_streets/south_street) -"dRn" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Storage"; - req_access_txt = "100" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dRl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"dRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) -"dRy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"dRK" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "dRL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorm_north) -"dRS" = ( -/obj/structure/machinery/light{ - dir = 4 +"dRV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dRW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/command_centre) -"dSt" = ( +"dSg" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) -"dSy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/atmos/east_reactor/east) -"dSJ" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"dSW" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"dSl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 }, -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"dSn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"dSN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"dTg" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/oob) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) "dTv" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"dTE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "dTJ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"dTW" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/oob) -"dUj" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) -"dUq" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"dUr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"dTP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"dTY" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"dUl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) -"dUw" = ( -/obj/structure/surface/table/almayer, +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Checkpoint"; - pixel_x = 4; - pixel_y = -5 - }, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"dUD" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/oob) -"dUE" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/item/storage/pouch/medkit/full_advanced, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"dUn" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"dUo" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "dUS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -8634,150 +8154,89 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"dVo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) -"dVD" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) +"dVa" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) "dVM" = ( /obj/structure/curtain/red, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"dVU" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) "dWc" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"dWm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +"dWj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dWn" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"dWv" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "24" +"dWz" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "dWD" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"dWE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"dWG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/indoors/c_block/mining) -"dWT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) -"dWX" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Eastern Reactor Control"; - pixel_y = 26 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"dWY" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "65" +"dWH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock" }, -/obj/effect/attach_point/weapon/tornado/right_wing, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "dXa" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/nw_rockies) -"dXd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"dXo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ - dir = 1 +"dXl" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"dXp" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) -"dXq" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) "dXt" = ( /obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"dXB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +"dXF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"dXG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "dXI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/flask/detflask{ @@ -8789,28 +8248,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"dXN" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"dXX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"dYb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +"dYj" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"dYu" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 }, -/area/lv522/indoors/c_block/mining) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dYA" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, @@ -8824,51 +8274,36 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"dYX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"dZd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"dYL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"dYR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/area/lv522/atmos/east_reactor) -"dZr" = ( -/obj/structure/ore_box, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"dZf" = ( +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"dZo" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "dZs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) -"dZw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Equipment" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) "dZx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee{ @@ -8881,54 +8316,54 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"dZG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dZB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"dZF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" }, -/area/lv522/atmos/east_reactor/south) -"dZM" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"dZI" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"dZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "dZP" = ( /obj/structure/curtain/red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"dZY" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"eam" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) -"ear" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +"dZV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"eah" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "eaC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -8939,102 +8374,148 @@ "eaE" = ( /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"eaG" = ( -/obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"eaI" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ebn" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"eaO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "65" }, -/area/lv522/indoors/a_block/security/glass) -"ebt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ebd" = ( +/obj/structure/prop/server_equipment{ + icon_state = "rackframe_broken" }, -/area/lv522/outdoors/colony_streets/south_east_street) -"ebP" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"ebh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock"; + welded = 1 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"ebv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ebA" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" }, -/area/lv522/oob) -"ecm" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ebF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"ebI" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "blue_plate" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/hallway) -"ecq" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"ebL" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"ebW" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ecK" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"eco" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"ecC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ecF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken3, +/area/lv522/indoors/b_block/bar) +"ecL" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"ecP" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "15" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ecU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"edc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"edk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"edr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"edt" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/oob) -"eds" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/c_block/casino) -"edw" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"edB" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) +"edO" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"edP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "edQ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -9044,55 +8525,51 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"eeb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/engine, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 16; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"eeG" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 10 +"eel" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"eep" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"eev" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) +"eeE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) "eeY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"efk" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"efy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 +"efe" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"efv" = ( +/obj/structure/surface/table/almayer, +/obj/item/cpr_dummy, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "efK" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -9108,159 +8585,20 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"efM" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"efR" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph." - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/oob) -"efS" = ( +"efW" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"efT" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 7 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 6 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 2 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 3 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = -6 - }, -/obj/item/clothing/suit/storage/bomber/alt, -/obj/item/clothing/suit/storage/bomber/alt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"egd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"egt" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"egv" = ( -/obj/item/cell/crap{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/item/cell/crap{ - pixel_y = 8 - }, -/obj/item/cell{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"egD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"egE" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_y = 15 - }, -/obj/structure/machinery/washing_machine{ - density = 0; - layer = 3.5; - pixel_y = 29 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"egK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"egP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 6 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"egn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"egr" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "egV" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -9275,75 +8613,75 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"egY" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"egX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/atmos/east_reactor) -"ehr" = ( -/obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"eht" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "ehy" = ( /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) -"ehM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) +"ehD" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "ehO" = ( /obj/effect/alien/resin/sticky, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"eil" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/oob) -"eiP" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 +"eic" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"ein" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"eis" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ - pixel_x = -7; - pixel_y = 26 +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"eiz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"eiT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"eiX" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eiZ" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"ejo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"ejn" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "eju" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -9363,69 +8701,78 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"ejy" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +"ejz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) +"ejH" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"ejN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"ejP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ejX" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 }, -/area/lv522/atmos/east_reactor) -"ejQ" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "76" +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"ekf" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"ekk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv{ + layer = 3.1; + pixel_x = 3; + pixel_y = -2 }, -/area/lv522/indoors/a_block/medical) -"ekt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_y = 14 }, -/area/lv522/atmos/north_command_centre) -"ekK" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ekC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/oob) +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ekO" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ekR" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"ekP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -9; + pixel_y = 7 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/device/flashlight/lamp{ + pixel_x = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"elo" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "elq" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -9438,32 +8785,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"elx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"elS" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"elX" = ( +"elr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"elu" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/reactor_garage) +"elB" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/item/device/camera, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"elI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "emb" = ( /obj/item/ammo_magazine/smartgun{ current_rounds = 249 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"emg" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"emj" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + layer = 3.5; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "emm" = ( /obj/structure/prop/invuln/ice_prefab, /obj/structure/prop/invuln/ice_prefab{ @@ -9472,52 +8843,50 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"emr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/monkey_spawn, +"emw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor) -"emt" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "emz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"emE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +"emY" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"emH" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"end" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 8 }, -/area/lv522/outdoors/colony_streets/north_street) -"ene" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/item/trash/plate, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Pressuredoor"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 7 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "eng" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -9525,290 +8894,146 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"enk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"enr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"enD" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"enG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" +"enA" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) "enP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"enR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) "enS" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"enT" = ( +"eod" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/vehicle/powerloader/ft{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "eof" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 15 }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"eov" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_1"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_2"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_3"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_6"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/oob) -"eow" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) -"eoA" = ( -/obj/item/prop/colony/used_flare, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"eoH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) -"eoZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) -"epb" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) -"epq" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"ept" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"epI" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) -"epN" = ( -/obj/structure/closet/emcloset, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"epS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"epo" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"eqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"eqO" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/east) -"epX" = ( -/obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"eqb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"eqT" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"eqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"erd" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/kitchen/damage) +"eri" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"ert" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"eqe" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"erA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/trash/liquidfood, -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"erF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Generator Room"; + welded = 1 }, -/area/lv522/indoors/a_block/hallway/damage) -"equ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"erK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) -"eqD" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"eqE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/nw_rockies) -"eqM" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/security) -"eqU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"erA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"erM" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"erS" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison{ +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"erT" = ( +/obj/structure/stairs/perspective{ dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"erZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "esa" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"esj" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement9" +"esn" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/east_central_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "eso" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"esq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"ess" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "esw" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/matches{ @@ -9816,66 +9041,73 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"esx" = ( -/obj/structure/platform_decoration{ - dir = 8 +"esA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"esB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"esF" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"etn" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 4 }, -/area/lv522/indoors/c_block/mining) -"etq" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 12 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"esC" = ( +/obj/structure/largecrate/random/mini, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Secure_Master_Armoury_2"; - name = "remote door-control" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"etp" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"etw" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "etx" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"etN" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating{ - icon_state = "platebot" +"etG" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"euj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"etS" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"etZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/casino) +"eud" = ( +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) +"euk" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "eur" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -9886,63 +9118,28 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"euD" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"euN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"evu" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"evv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; +"eus" = ( +/obj/structure/surface/table/almayer, +/obj/item/co2_cartridge{ + pixel_x = -8; pixel_y = 14 }, -/obj/item/device/radio/off{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"evx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"evN" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/clothing/accessory/armband/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"evz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"evE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/weldingtool/simple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "evQ" = ( /obj/structure/barricade/sandbags, /obj/item/trash/uscm_mre{ @@ -9963,54 +9160,41 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"ewe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/oob) -"ewf" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"ewm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"evT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/east_reactor) -"ewn" = ( -/obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/south_west_street) -"ewp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"evV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/atmos/east_reactor) -"ewt" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"ewh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 4 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"ewq" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"ewz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "ewE" = ( /obj/structure/platform{ dir = 4 @@ -10021,6 +9205,29 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"exa" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" + }, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_2"; + name = "treadmill switch"; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"exh" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"exn" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) "exu" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -10041,103 +9248,93 @@ /obj/item/tool/wirecutters/clippers, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"exy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"exB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"exQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"exZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) +"exG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "eyc" = ( /obj/structure/platform{ dir = 1 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"eyh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"eym" = ( +"eye" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 13 +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = -3 +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"eyg" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"eyi" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) +"eyr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"eyt" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 11; + pixel_y = 16 }, -/area/lv522/atmos/reactor_garage) -"eyn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"eyx" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"eyz" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = 1; + pixel_y = 6 }, -/area/lv522/outdoors/colony_streets/central_streets) -"eyy" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "eyM" = ( /obj/item/stack/tile/wood{ layer = 2.5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"eyY" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"eyQ" = ( +/obj/structure/coatrack{ + pixel_x = 11 }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"eyS" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"ezj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"eyV" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"ezg" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ezo" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -10162,48 +9359,39 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"ezB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" +"ezK" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/atmos/east_reactor/south) -"ezC" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"ezH" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"ezQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "ezU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) -"ezW" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"eAg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) +"eAj" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "eAm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10211,12 +9399,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"eAz" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) +"eAt" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"eAw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "eAC" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -10226,22 +9416,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"eAD" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"eAG" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/fitness/glass) -"eAF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"eAR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" }, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) "eAT" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/green, @@ -10252,66 +9439,44 @@ /obj/item/reagent_container/glass/fertilizer, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"eAY" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) "eBi" = ( /obj/item/stack/cable_coil/cut, /obj/item/stack/cable_coil/cut, /turf/open/floor/plating, /area/lv522/atmos/east_reactor) -"eBk" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"eBm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"eBu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"eBA" = ( +"eBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"eBH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) "eCe" = ( /obj/effect/alien/resin/sticky, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"eCh" = ( +/obj/item/reagent_container/spray/cleaner/drone{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"eCk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"eCw" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"eCB" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) "eCO" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -10324,6 +9489,10 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"eCV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "eDc" = ( /obj/structure/bed/chair, /obj/structure/machinery/space_heater/radiator/red{ @@ -10331,14 +9500,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"eDi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) "eDq" = ( /obj/structure/platform{ dir = 1 @@ -10355,66 +9516,46 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"eDD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"eDI" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"eDL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, +"eDO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "eDS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) -"eEv" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"eEe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"eEf" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"eEz" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/lv522/indoors/b_block/bar) -"eEx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 }, -/area/lv522/atmos/north_command_centre) -"eEH" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"eEM" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) "eFb" = ( /obj/structure/machinery/light{ dir = 4 @@ -10422,19 +9563,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"eFg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/off{ + layer = 3.1; + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"eFh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/tool/wrench{ + pixel_y = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "eFt" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"eFK" = ( -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"eFy" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/area/lv522/indoors/a_block/medical/glass) +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"eFM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "eFP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/strata_outpost, @@ -10447,41 +9621,63 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"eGs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +"eGb" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) -"eGL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"eGl" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "eGQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"eHn" = ( +"eGS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo/glass) -"eHp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"eGZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) -"eHu" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"eHl" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"eHm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) "eHy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -10490,105 +9686,90 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"eHB" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"eHE" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) +"eHC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) "eHF" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"eHI" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"eHR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"eHH" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_x = -20 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/lv522/atmos/east_reactor/west) -"eHS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"eHJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"eHK" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/west) +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"eHL" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eHQ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) "eHY" = ( /obj/structure/surface/table/gamblingtable, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"eIk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms/glass) -"eIn" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) -"eIF" = ( -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 +"eIe" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"eIj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"eIr" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eIy" = ( +/obj/structure/machinery/recharge_station, +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/indoors/a_block/fitness) -"eIT" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"eIK" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"eIY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/window/reinforced{ + dir = 8 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"eJd" = ( -/obj/structure/filingcabinet{ - density = 0; - layer = 3.1; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -10; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) +"eJe" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "eJm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -10597,16 +9778,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"eJq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "eJw" = ( /obj/item/clothing/mask/rebreather{ pixel_x = -7; @@ -10614,39 +9785,20 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"eJI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "eJR" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"eJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"eKc" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"eKe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"eKj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) +"eKl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "eKm" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/organic/grass, @@ -10657,30 +9809,35 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"eKK" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "eKL" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"eLf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"eKM" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"eKU" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) +"eLk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_2) -"eLx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"eLm" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 6 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"eLB" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "eLG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -19; @@ -10688,21 +9845,11 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"eLK" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"eLN" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) +"eLL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "eLU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -10712,130 +9859,85 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/oob) -"eLZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Quartermaster" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) -"eMj" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"eLX" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/b_block/bridge) -"eMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"eMm" = ( -/obj/structure/prop/invuln/fusion_reactor, -/obj/structure/prop/turbine_extras, -/obj/structure/prop/turbine_extras, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"eMd" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/atmos/east_reactor) -"eMz" = ( -/obj/item/stack/rods/plasteel, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"eMD" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"eMx" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) +"eMy" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"eMM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"eMY" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"eMT" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "eNf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"eNy" = ( +"eNx" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"eNC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"eND" = ( /obj/structure/phone_base/colony_net{ phone_category = "LV522 Chances Claim"; phone_color = "red"; - phone_id = "Colony Fitness"; + phone_id = "Reactor Central Office"; pixel_y = 26 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"eNR" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"eNN" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Medical"; - pixel_x = 16 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"eNT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"eNW" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"eNO" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"eOd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "eOe" = ( /obj/structure/bed/chair{ dir = 4 @@ -10845,77 +9947,37 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"eOj" = ( -/obj/structure/machinery/light{ - dir = 8 +"eOE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"eOF" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 24 }, -/area/lv522/indoors/a_block/dorms/glass) -"eOl" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"eOn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"eOA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "70" }, -/area/lv522/atmos/north_command_centre) -"eOE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eOM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"eOT" = ( +/obj/item/tool/pen/blue/clicky, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"eOU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"ePc" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) "ePl" = ( /obj/structure/prop/invuln/fire{ pixel_x = -8; @@ -10929,192 +9991,128 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"ePK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"eQf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) -"eQu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"eQB" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) -"eQV" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 16 +"eQj" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"eQH" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/frame/table/almayer{ +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"eRY" = ( +/obj/structure/coatrack{ pixel_x = 10; - pixel_y = 12 + pixel_y = 9 }, -/obj/item/frame/table/almayer{ - pixel_y = 4 +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_x = 8; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 8; + pixel_y = 11 }, -/area/lv522/indoors/a_block/dorms) -"eQY" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"eSd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"eSe" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"eSh" = ( +/obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"eRg" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) -"eRI" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "34" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"eRN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 7 }, -/area/lv522/atmos/east_reactor) -"eSb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -7; + pixel_y = 7 }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"eSi" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/area/lv522/landing_zone_1/ceiling) -"eSf" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/structure/window{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"eSn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/platform, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "eSx" = ( /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"eSy" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"eSG" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "36" +"eSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"eSM" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_street) -"eSO" = ( -/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"eSN" = ( +/obj/item/stack/sheet/wood, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"eSQ" = ( -/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_2/ceiling) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "eSY" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"eTn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"eTu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"eTl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"eTw" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 +/obj/structure/girder/reinforced, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eTt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"eTF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "eTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"eTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "eUf" = ( /obj/item/ammo_magazine/m2c{ current_rounds = 0; @@ -11134,145 +10132,111 @@ "eUh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"eUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "eUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"eUO" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"eUS" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "27" +"eUz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) "eUX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"eVc" = ( -/obj/structure/cargo_container/kelland/left, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 28 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"eVg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"eVi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"eVW" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"eWn" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"eWy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"eVA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor/east) -"eWF" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv{ - layer = 3.1; - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"eWK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"eVJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"eVO" = ( +/obj/structure/tent/big, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"eWb" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"eWR" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_2) -"eWW" = ( -/obj/structure/window_frame/strata, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"eWx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"eWA" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"eWX" = ( +/obj/structure/fence{ + layer = 2.8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/admin) -"eXd" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "eXe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/west) +"eXh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"eXn" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eXp" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"eXy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"eXA" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"eXC" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "eXG" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) @@ -11306,16 +10270,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"eYh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) +"eYo" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) "eYA" = ( /obj/item/clothing/head/headband/tan{ pixel_x = -10; @@ -11323,64 +10281,31 @@ }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"eYF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eYH" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "eYM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/landing_zone_1/tunnel) -"eYT" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"eZb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) -"eZe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"eZq" = ( -/obj/structure/prop/turbine_extras/left, -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/oob) -"eZv" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) -"eZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"eZo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 4 }, -/area/lv522/atmos/sewer) -"eZK" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/clothing/suit/storage/apron/overalls{ + pixel_x = 8 }, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "eZM" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -11388,44 +10313,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"eZY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"fac" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"fad" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 +"eZP" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"eZR" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/lv522/indoors/c_block/cargo) -"faK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"fag" = ( +/obj/item/storage/backpack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"fav" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/east) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "faQ" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -11433,109 +10352,78 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"faZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "fba" = ( /obj/structure/flora/bush/ausbushes/grassybush{ layer = 2.9 }, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"fbh" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"fbc" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"fbm" = ( +/obj/structure/prop/vehicles, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"fbr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "fbA" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"fbC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"fbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/damage) -"fbS" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"fbY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"fcd" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fbH" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fcv" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"fbI" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"fcV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"fcW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/machinery/faxmachine{ + pixel_y = 5 }, -/area/lv522/atmos/north_command_centre) -"fda" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fbP" = ( +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) +"fbV" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/area/lv522/atmos/north_command_centre) -"fdf" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 }, -/area/lv522/landing_zone_2) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"fcM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fcS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/c_block/cargo) "fdh" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -11548,117 +10436,139 @@ /obj/item/trash/plate, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"fdC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"fdE" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"fdR" = ( +"fdu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 1 }, -/area/lv522/atmos/north_command_centre) -"fdS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"fdv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fdA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fdS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"fdT" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"fdZ" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) +"fed" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"fee" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "fej" = ( /obj/structure/bed/roller, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"feu" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"fek" = ( +/obj/item/clothing/head/helmet/marine/grenadier{ + armor_bullet = 10; + desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; + name = "\improper damaged M3-G4 grenadier helmet"; + pixel_x = 3; + pixel_y = 13 }, -/area/lv522/landing_zone_2/ceiling) -"feF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"fel" = ( +/turf/open/floor/corsat/brown, +/area/lv522/oob) +"fen" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" }, -/area/lv522/atmos/east_reactor/west) -"feS" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"fet" = ( +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 }, -/area/lv522/atmos/east_reactor/south) -"feZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -10; + pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"feA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 }, -/area/lv522/atmos/east_reactor/east) -"ffb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 }, -/area/lv522/indoors/c_block/bridge) -"ffj" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"ffo" = ( -/obj/structure/fence{ - layer = 2.9 +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"feB" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ffe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = -6; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ffg" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/outdoors/colony_streets/south_street) -"ffr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -10; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/west) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"ffj" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"fft" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) +"ffB" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "ffG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/girder, @@ -11688,6 +10598,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"fgp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "fgv" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -11696,6 +10610,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"fgz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "fgB" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 18; @@ -11703,12 +10623,50 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) +"fgC" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"fgD" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"fgS" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"fhk" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/prop/holidays/string_lights{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "fhl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"fhn" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) "fhu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -11718,37 +10676,29 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"fhA" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, +"fhw" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"fhD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"fhQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"fhY" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -9; + pixel_y = 11 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) "fib" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"fig" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "fiu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -11756,12 +10706,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fiA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) "fiB" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -11771,16 +10715,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"fiG" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"fiJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "fiS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11790,6 +10730,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"fjf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "fjk" = ( /obj/structure/surface/rack, /obj/item/clothing/ears/earmuffs, @@ -11800,46 +10748,73 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"fjl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "fjr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"fjt" = ( -/obj/structure/machinery/light, +"fju" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"fjF" = ( +"fjw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"fjB" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/east_central_street) +"fjO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/a_block/medical/glass) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "fjP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"fkb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/north_command_centre) -"fki" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"fjU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) +"fkg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 }, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "fkj" = ( /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) +"fkl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "fko" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -11848,6 +10823,9 @@ /obj/structure/window, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"fky" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "fkB" = ( /obj/structure/barricade/deployable, /obj/effect/decal/cleanable/blood, @@ -11857,50 +10835,51 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"fkP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"fkW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"fkS" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "fld" = ( /mob/living/simple_animal/mouse, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"fln" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 6 +"flo" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 }, -/area/lv522/indoors/a_block/admin) -"flC" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fly" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"flz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 }, -/area/lv522/indoors/lone_buildings/engineering) +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "flI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze{ @@ -11912,61 +10891,45 @@ /obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"fmg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" +"flQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + pixel_x = 5; + registered_name = "John Forklift" }, -/area/lv522/indoors/a_block/bridges/corpo) -"fms" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fma" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"fmv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) -"fmB" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/oob) -"fmH" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) -"fmL" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 18 - }, -/obj/item/tool/soap{ - pixel_y = 14 - }, +"fmn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"fms" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"fmR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "fni" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11982,31 +10945,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"fnn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) "fnA" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"fnF" = ( +"fnN" = ( +/obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"fol" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "fop" = ( /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) @@ -12014,143 +10968,86 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"foR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"foT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"foX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"fpl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"fpm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "fpn" = ( /obj/item/device/analyzer, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fpr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"fps" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"fpB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"fpx" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + layer = 2.9 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/obj/structure/machinery/door_display/research_cell{ + id = "Reactor_entry_1"; + pixel_x = 5; + pixel_y = -7; + req_access = null }, -/area/lv522/atmos/east_reactor/west) -"fpH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fpY" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/north_command_centre) -"fpW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"fqd" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/b_block/bar) -"fqe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Entrance Office"; - pixel_y = 26 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"fqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"fqi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"fqD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms/glass) -"fqU" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"fqq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fqy" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"frc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fqL" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fqP" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"fqW" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"frq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/janitor, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"frE" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "frH" = ( /obj/item/clothing/head/hardhat/dblue{ layer = 6.1; @@ -12159,76 +11056,35 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"frL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"frK" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"fss" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fsz" = ( +/obj/structure/platform, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 }, -/area/lv522/atmos/east_reactor/west) -"frZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) -"fsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"fsj" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"fss" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"fsz" = ( -/obj/structure/platform, -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/platform{ - dir = 8 +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fsC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) +"fsK" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) "fsQ" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"fsV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "ftd" = ( /obj/structure/bed/chair{ dir = 1 @@ -12238,6 +11094,11 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"fte" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "ftl" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -12267,19 +11128,18 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"ftA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"ftB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "ftK" = ( /obj/structure/bed/chair, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"ftV" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "fuc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/pipe_water{ @@ -12288,14 +11148,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"fuf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) +"fug" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "ful" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -12315,49 +11171,71 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"fuQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) -"fvc" = ( -/obj/structure/barricade/sandbags, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/north_street) -"fvk" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"fux" = ( +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"fvn" = ( -/obj/structure/platform{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"fuM" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"fuT" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"fuU" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_east_street) +"fuV" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/east) +"fvd" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"fvg" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"fvo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"fvi" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"fvv" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 }, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "fvx" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt" }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"fvy" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"fvC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"fvI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) "fvN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -12366,13 +11244,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fvQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) "fvV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -12380,84 +11251,116 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"fvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Executive Suite" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"fvW" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 }, -/area/lv522/indoors/a_block/executive) -"fwj" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"fwg" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fwk" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "fwo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"fwy" = ( -/obj/structure/bed/chair{ +"fws" = ( +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"fwV" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"fwF" = ( +/obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 8 }, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"fwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" +"fwI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"fwS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/north_command_centre) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"fxb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"fxc" = ( +/obj/structure/largecrate/random/barrel{ + layer = 2.9 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "fxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"fxl" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"fxo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"fxq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"fxN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 }, -/area/lv522/atmos/east_reactor/west) -"fxZ" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"fyl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 1; + pixel_y = 2 }, -/area/lv522/indoors/a_block/bridges/op_centre) +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"fxU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"fxV" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"fym" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "fyC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -12478,13 +11381,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"fyD" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"fyX" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"fyZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/hallway) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fzc" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "fzf" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -12496,72 +11407,37 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fzg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"fzl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +"fzn" = ( +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "fzp" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"fzu" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +"fzs" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Meeting Room"; + pixel_y = 26 }, -/area/lv522/atmos/reactor_garage) -"fzC" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "22" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fzt" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "fzE" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"fzK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"fzL" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) "fzV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -12569,6 +11445,19 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) +"fAi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"fAn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "fAq" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/platform_decoration{ @@ -12576,271 +11465,219 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"fAt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"fAx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 6; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) -"fAA" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.9 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"fAG" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/corsat{ - icon_state = "plate" +"fAM" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/atmos/north_command_centre) -"fAH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/obj/item/prop/colony/usedbandage{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"fBg" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"fBp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"fBL" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"fBP" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"fAZ" = ( +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"fBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fBf" = ( +/obj/structure/window_frame/strata, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"fBh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"fBi" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fBs" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"fBz" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"fBG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "fBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fBU" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/structure/machinery/light{ - dir = 1 +"fBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -11; + pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fCe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"fCf" = ( +/obj/structure/largecrate/supply{ + pixel_x = -4 }, -/area/lv522/atmos/cargo_intake) -"fCb" = ( -/obj/structure/platform{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"fCm" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"fCl" = ( -/obj/structure/barricade/wooden{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fCL" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"fCE" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) -"fCN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) -"fCP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) -"fCU" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"fCW" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"fDg" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "30" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fDi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 14; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) -"fDn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"fCO" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"fCV" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "4" }, -/area/lv522/atmos/east_reactor) -"fDv" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement2" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fDb" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = -3 }, -/area/lv522/outdoors/colony_streets/south_street) -"fDz" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 }, -/obj/item/seeds/potatoseed, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"fDf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/hydro) -"fDC" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/atmos/east_reactor) -"fDF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fDk" = ( /obj/structure/surface/rack, -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - pixel_x = 5; - registered_name = "John Forklift" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/tool/minihoe, +/obj/item/tool/crowbar, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/landing_zone_1/ceiling) -"fDH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"fDV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"fDY" = ( +/obj/structure/coatrack{ + pixel_y = 24 }, -/area/lv522/atmos/east_reactor) -"fDS" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 3 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ + pixel_x = -2; + pixel_y = 27 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"fEa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"fEb" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "fEe" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"fEF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"fEW" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - layer = 4.3; - pixel_y = 13 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"fEo" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"fEB" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fEJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) +"fEO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) -"fEY" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"fER" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fFb" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"fFp" = ( -/obj/item/clothing/gloves/yellow, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/east_reactor/south) +"fFc" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"fFl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fFp" = ( +/obj/item/clothing/gloves/yellow, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"fFr" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Sewer"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "fFw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat, @@ -12854,252 +11691,191 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"fFE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"fFS" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"fGh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"fGv" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"fGc" = ( +/turf/open/floor/strata/white_cyan4/west, +/area/lv522/indoors/a_block/medical/glass) +"fGl" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"fGm" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"fGw" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fGR" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"fGX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 }, -/area/lv522/indoors/b_block/hydro) -"fGH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) +"fHd" = ( +/obj/structure/window/reinforced{ dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) -"fGJ" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"fGN" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"fGU" = ( -/obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"fHf" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/watertank{ - layer = 2.9 + layer = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/command_centre) +"fHe" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/atmos/way_in_command_centre) -"fHy" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"fHl" = ( +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"fHB" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"fHC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/executive) -"fHE" = ( +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"fHv" = ( /obj/structure/surface/table/almayer, -/obj/item/disk{ - desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; - name = "brat 2 disk" - }, -/obj/structure/machinery/recharger{ - layer = 2.9; - pixel_x = 5; - pixel_y = -13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"fHH" = ( +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fHV" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "fIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"fIe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"fIg" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/atmos/east_reactor) -"fIr" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"fIk" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"fIx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"fIm" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"fIs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"fIF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/indoors/c_block/mining) +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "fII" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"fIM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"fIQ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) -"fJd" = ( -/obj/item/storage/firstaid/o2, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"fJe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) +"fIY" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/n_rockies) "fJg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"fJk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "fJq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"fKf" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"fJF" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"fJK" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"fKt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fJT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 }, -/area/lv522/atmos/east_reactor/west) -"fKu" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 3 }, -/area/lv522/atmos/cargo_intake) -"fLa" = ( -/obj/structure/shuttle/part/tornado/transparent, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"fLc" = ( -/obj/structure/bed/bedroll{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fJX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "2" }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, -/obj/effect/decal/cleanable/dirt, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fKn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"fLj" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"fLi" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"fLo" = ( /obj/item/tool/warning_cone{ pixel_x = -10; pixel_y = 11 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/west) +"fLq" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"fLx" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "fLz" = ( /obj/structure/machinery{ density = 1; @@ -13121,23 +11897,12 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"fLA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"fLF" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +"fLE" = ( +/obj/item/stack/rods{ + pixel_y = 14 }, -/area/lv522/landing_zone_1) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "fLK" = ( /obj/structure/cryofeed, /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ @@ -13145,51 +11910,28 @@ }, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"fLM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 +"fLQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"fLP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "fLS" = ( /obj/structure/prop/dam/crane, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"fMd" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_x = -20 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"fMx" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -20 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) +"fMq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"fMM" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_2) "fMN" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pill_bottle/tramadol/skillless{ @@ -13220,88 +11962,65 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"fMS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"fMT" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"fNk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) "fNm" = ( /obj/effect/landmark/monkey_spawn, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"fNp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"fNq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) +"fNG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"fNH" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "fOc" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"fOe" = ( -/obj/structure/bed/chair{ - dir = 8 +"fOg" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Checkpoint"; + pixel_x = 4; + pixel_y = -5 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 }, -/area/lv522/indoors/c_block/casino) -"fOy" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"fOv" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fOA" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) "fOM" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"fOX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) +"fON" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) +"fOS" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) "fPa" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -13311,19 +12030,36 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"fPt" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" +"fPf" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"fPj" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"fPx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/south_west_street) -"fPB" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fPE" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "fPH" = ( /obj/structure/closet/crate/miningcar, /turf/open/auto_turf/shale/layer1, @@ -13334,79 +12070,61 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"fPV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) -"fQb" = ( +"fQm" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"fQi" = ( -/obj/item/prop/colony/canister{ - dir = 8; - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) -"fQD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"fRc" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/co2_cartridge{ + pixel_x = 5; + pixel_y = 5 }, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"fRd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"fQo" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" }, -/area/lv522/atmos/east_reactor/east) -"fRf" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"fQA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"fQM" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"fQW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/hallway) -"fRk" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fRh" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fRz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"fRB" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/clothing/suit/storage/marine/medium/rto, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"fRK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) -"fRw" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "fRP" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.3 @@ -13422,44 +12140,17 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"fSe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) +"fSc" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) "fSf" = ( /obj/structure/blocker/invisible_wall, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/sewer) -"fSj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"fSo" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"fSq" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) +"fSi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) "fSv" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/beret/eng, @@ -13472,31 +12163,37 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"fSR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 +"fSz" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/platform, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) -"fSX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"fSK" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"fTf" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"fTg" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "fTi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -13509,77 +12206,77 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"fTm" = ( -/obj/structure/platform_decoration{ - dir = 8 +"fTj" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fTs" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/obj/item/tool/minihoe{ + pixel_y = -4 }, -/area/lv522/atmos/west_reactor) -"fTK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 }, -/area/lv522/indoors/a_block/corpo) -"fTN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"fTO" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"fTt" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"fTw" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "fTP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"fTS" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"fUc" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement15" +"fTT" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_street) -"fUf" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fTU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"fUi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/a_block/hallway) -"fUk" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"fUj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fUl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "fUx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -13590,6 +12287,22 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"fUB" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"fUC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "fUQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13599,55 +12312,50 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"fUT" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"fUV" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/lv522/atmos/command_centre) -"fVB" = ( -/obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"fVI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"fVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"fVU" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"fWy" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, -/area/lv522/outdoors/colony_streets/central_streets) -"fWD" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "fWG" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"fWM" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) +"fWL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "fWW" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -13662,68 +12370,30 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"fXa" = ( -/obj/structure/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"fXn" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fXs" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"fXv" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"fXj" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"fXl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"fXo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/command_centre) -"fXx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"fXy" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"fXG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) -"fXS" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"fXw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"fXM" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) "fXU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13731,89 +12401,36 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"fXZ" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, -/area/lv522/indoors/a_block/medical) -"fYm" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"fYC" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"fYD" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"fYN" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"fYi" = ( +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"fYx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"fZh" = ( +/obj/structure/largecrate/random/mini{ + layer = 3.1; + pixel_x = 10; + pixel_y = -7 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fYP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/largecrate/random/mini{ + pixel_x = 7; + pixel_y = 15 }, -/area/lv522/atmos/east_reactor/west) -"fYZ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/obj/structure/largecrate/random/barrel{ + pixel_x = -6; + pixel_y = 4 }, -/area/lv522/indoors/a_block/admin) -"fZd" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"fZv" = ( +/obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"fZl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - layer = 3.2; - name = "Television set"; - network = null; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "fZy" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -13828,34 +12445,28 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"fZS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/c_block/mining) -"gat" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"fZD" = ( +/obj/item/tool/pen/clicky, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"fZF" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"gag" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "gaw" = ( /obj/structure/barricade/deployable{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"gaI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) "gaS" = ( /obj/item/bananapeel{ desc = "A bunch of tiny bits of shattered metal."; @@ -13874,13 +12485,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"gbh" = ( -/obj/structure/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "gbk" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_magazine/rifle/heap{ @@ -13903,43 +12507,35 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gbo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"gbq" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gbz" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "gbB" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) +"gbG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "gbH" = ( /obj/structure/cargo_container/wy/mid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"gbM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gbN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) "gbQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -13947,57 +12543,17 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"gbR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) -"gbW" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"gck" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"gcn" = ( -/obj/item/xeno_egg/alpha{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/xeno_egg/alpha{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"gcr" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"gcv" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gbX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"gcl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "gcO" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/under/colonist{ @@ -14006,100 +12562,63 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"gcX" = ( -/obj/structure/window_frame/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) "gcY" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gdk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +"gdd" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"gdn" = ( +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "gdt" = ( /obj/item/tool/kitchen/knife, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"gdJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"gdy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"gdA" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/west) +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "gdO" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) -"gdQ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ +"gdP" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"gdZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"gdX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"gej" = ( -/obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/landing_zone_1) -"gek" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"gem" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"geq" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + name = "\improper A-Block Corporate Office Airlock" }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "get" = ( /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) @@ -14111,46 +12630,27 @@ }, /turf/open/floor/carpet, /area/lv522/atmos/east_reactor/east) -"gex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"geB" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"geG" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "geH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"geP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"geT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, +"geN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"gfg" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "gfi" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/item/prop/alien/hugger{ @@ -14158,13 +12658,29 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"gfu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"gfk" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"gfl" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"gfo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gfI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "gfL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -14174,183 +12690,165 @@ /obj/structure/cargo_container/ferret/mid, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gfU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) "gge" = ( /obj/item/storage/belt/medical/lifesaver, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"ggj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ggk" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/admin) -"ggp" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ggn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/c_block/garage) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ggz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/west_reactor) "ggC" = ( /obj/structure/surface/table/almayer, /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ggH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"ggM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, +"ggQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"ggU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/fake_wood, /area/lv522/atmos/east_reactor/east) -"ggO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"ggS" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) "ggZ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"gha" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +"ghn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 3 }, -/area/lv522/atmos/way_in_command_centre) -"ghr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/trash/ceramic_plate{ + pixel_x = -13; + pixel_y = 2 }, -/area/lv522/atmos/east_reactor/east) -"ghu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ghq" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"ghw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"ghy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -13; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) -"ghE" = ( -/obj/item/clothing/head/helmet/marine/grenadier{ - armor_bullet = 10; - desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; - name = "\improper damaged M3-G4 grenadier helmet"; - pixel_x = 3; - pixel_y = 13 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 5 }, -/area/lv522/outdoors/colony_streets/north_street) -"gib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"ghQ" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" }, -/obj/structure/platform{ - dir = 8 +/obj/item/clothing/under/marine/officer/pilot/flight, +/obj/item/clothing/suit/storage/jacket/marine/pilot{ + layer = 3.1; + pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) +"gig" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/lv522/atmos/sewer) -"gif" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/atm{ + pixel_y = 11 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "gij" = ( /obj/item/tool/wirecutters, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"giF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +"gil" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"giu" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"giw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "giL" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"giV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"giO" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"giU" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "48" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"giW" = ( +/obj/structure/machinery/microwave, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "giX" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gjm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" +"gjg" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"gjl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/bridges/op_centre) +"gjo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "gjt" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -14359,6 +12857,9 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"gjv" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) "gjA" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -14367,32 +12868,17 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"gjB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"gjF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"gjQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"gjE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/c_block/t_comm) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"gjJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "gjV" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -14409,56 +12895,59 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"gkg" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv522/indoors/b_block/hydro/glass) -"gkl" = ( -/obj/structure/barricade/wooden, -/obj/item/shard{ - icon_state = "medium" +"gka" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"gkt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/toy/deck{ + pixel_x = 2; + pixel_y = 4 }, -/area/lv522/indoors/a_block/admin) -"gkF" = ( -/obj/structure/machinery/computer/arcade, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "gkY" = ( /obj/structure/closet/bombcloset, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"glj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"gll" = ( -/obj/structure/bed/chair{ +"gla" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"glh" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + layer = 3.1; + name = "trash bag"; + pixel_x = 4; + pixel_y = 21 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"glI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"glL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "glO" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/warning_stripes{ @@ -14474,82 +12963,108 @@ /obj/structure/platform, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"glV" = ( -/obj/structure/platform{ +"glS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"gmb" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 2.9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/reactor_garage) +"glW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "gme" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"gmt" = ( +"gmg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"gmk" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "gmu" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) -"gnd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "squares" +"gmH" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"gmL" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "gnf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"gnk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +"gng" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"gnl" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"gnD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) -"gnx" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"gnR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"gny" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges) -"gnA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"goa" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ + pixel_y = 2 }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"goc" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"gof" = ( +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) "gok" = ( /obj/effect/decal/cleanable/dirt, @@ -14562,51 +13077,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"gou" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"goK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"goq" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"goO" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"goA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"goP" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "28" }, -/area/lv522/indoors/c_block/mining) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "goT" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -14614,85 +13100,61 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"goW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "goY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"gpi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"gpb" = ( +/obj/structure/platform{ + dir = 1 }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"gpD" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"gpp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"gpu" = ( -/obj/item/fuelCell{ - pixel_x = -8; - pixel_y = -2 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"gpB" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "gpN" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"gqf" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"gqg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"gqh" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +"gqn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Quartermaster" }, -/area/lv522/indoors/a_block/admin) -"gqG" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) -"grg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"gre" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"grh" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "grq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -14706,49 +13168,39 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"grz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) +"grB" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "grP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"grV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) "gse" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"gsn" = ( +"gsi" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"gsp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"gsx" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/obj/vehicle/train/cargo/engine, /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"gsM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) +/area/lv522/landing_zone_forecon/UD6_Tornado) "gsP" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -14760,96 +13212,47 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"gsW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "gsZ" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gtr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) "gts" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"gtt" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 +"gtE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/indoors/c_block/casino) -"gtH" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gtZ" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"gtS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) -"gtX" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"gug" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"guh" = ( -/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"gul" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"guz" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "guB" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"guD" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) "guE" = ( /obj/structure/platform{ dir = 1 @@ -14862,82 +13265,53 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"guH" = ( -/obj/structure/machinery/light{ - dir = 4 +"gvl" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 }, -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"guR" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "26" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gvn" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + id = "Reactor_entry_2"; + pixel_x = 16; + req_access = null }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"guZ" = ( -/obj/structure/machinery/power/apc/weak{ +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"gvk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"gvr" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"gvs" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"gvu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) -"gvG" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"gvH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"gvD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/security) -"gvK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre{ - pixel_x = -12; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) +"gvG" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"gvI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "gvT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -14960,25 +13334,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"gwg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"gwk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +"gwe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "gwt" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/prison, @@ -14987,116 +13348,72 @@ /obj/effect/alien/resin/sticky, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"gwK" = ( +"gwE" = ( +/obj/structure/powerloader_wreckage/jd, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"gwF" = ( +/obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "gwP" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"gwR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Holding Cell" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"gwU" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = 13; - pixel_y = -5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"gxb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"gxc" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) "gxe" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"gxl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) +"gxi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "gxp" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"gxs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gxv" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/hallway) -"gxE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gxy" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"gxM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "gxN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"gxP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/beanbag/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gxR" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "gyb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -15105,43 +13422,38 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gyn" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gyB" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"gyC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gyh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"gyy" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) -"gyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gyR" = ( +/obj/item/ammo_magazine/pistol/m1911{ + pixel_x = 9; + pixel_y = 12 }, -/area/lv522/atmos/north_command_centre) -"gzk" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"gzb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" }, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "gzu" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -15149,55 +13461,15 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gzw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/landmark/corpsespawner/wy/manager, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"gzD" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gzS" = ( -/obj/structure/pipes/unary/freezer{ - dir = 1; - icon_state = "freezer_1" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"gzT" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ +"gzF" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"gzY" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"gzP" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/dorms) "gAa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -15208,50 +13480,61 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"gAJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor/corsat{ - icon_state = "plate" +"gAf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"gAl" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"gAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/atmos/command_centre) -"gAO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gAy" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"gAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/lv522/atmos/east_reactor/south) -"gAU" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = -37; - pixel_y = 17 +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"gAD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"gAF" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 }, -/area/lv522/indoors/a_block/hallway) -"gBb" = ( -/obj/structure/prop/structure_lattice, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/obj/item/stack/sheet/mineral/platinum, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"gAH" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"gAO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"gAY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "gBe" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -15260,54 +13543,40 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"gBg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "gBi" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"gBv" = ( -/obj/item/seeds/riceseed, -/obj/structure/closet/crate, -/obj/item/seeds/riceseed, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) "gBy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"gBE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"gCa" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gCb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"gCC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"gCz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"gCE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "gCO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15323,30 +13592,13 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gCV" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, +"gDe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"gDz" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"gDA" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"gDJ" = ( +/turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "gDL" = ( /obj/structure/surface/table/reinforced/prison, @@ -15358,6 +13610,27 @@ /obj/item/prop/colony/game, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) +"gDM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"gDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gDU" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"gDV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "gEd" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -15365,76 +13638,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"gEk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) -"gEA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Marshall Head Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "gEB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gEQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 1; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"gES" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"gFi" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "gFp" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -15450,84 +13659,34 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gFD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gFG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"gFM" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" +"gFx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"gGa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"gFL" = ( +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"gFT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) -"gGe" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 18 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"gGg" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"gFX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"gGk" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gGq" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gGx" = ( -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/n_rockies) -"gGM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/south_street) -"gGP" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"gGJ" = ( +/obj/structure/safe, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "gGW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15536,51 +13695,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"gHj" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"gHz" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"gHD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"gHF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"gGX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"gHE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) "gHN" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"gHX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"gHV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"gHW" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "gIa" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -15596,126 +13736,111 @@ /mob/living/simple_animal/mouse, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"gIh" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"gIr" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" +"gIo" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "71" }, -/area/lv522/outdoors/colony_streets/south_east_street) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "gIv" = ( /obj/structure/cargo_container/ferret/left, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gIH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +"gIw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/atmos/cargo_intake) -"gIZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"gIK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"gJa" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/cpr_dummy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"gJh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "gJm" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gJr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; +"gJF" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/watertank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"gJN" = ( +/obj/structure/prop/invuln/fire{ pixel_x = -6; - pixel_y = 6 + pixel_y = 32 }, -/obj/structure/platform{ - dir = 4 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"gJD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"gJV" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gKl" = ( +/obj/item/cell/apc{ + pixel_x = -7; + pixel_y = 10 }, -/area/lv522/outdoors/nw_rockies) -"gJK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/cell/hyper{ + pixel_y = -2 }, -/area/lv522/atmos/reactor_garage) -"gJL" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"gKo" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"gJM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/platform_decoration{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"gKg" = ( -/obj/structure/platform, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1) -"gKD" = ( -/obj/item/fuelCell{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/corsat{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"gKL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"gKM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "gKO" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"gKY" = ( +"gKQ" = ( +/obj/item/stack/sheet/metal, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"gKY" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15723,70 +13848,55 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"gLa" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"gLb" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"gLd" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/obj/structure/machinery/atm{ + pixel_y = 11 }, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "gLg" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) +"gLi" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"gLj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "gLk" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"gLw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"gLy" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"gLK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +"gLn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/cargo_intake) -"gLV" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - layer = 3.5; - pixel_y = 16 - }, +"gLr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"gLW" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "gMb" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -15800,70 +13910,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"gMe" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +"gMt" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"gMy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"gMG" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"gMQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"gMT" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"gMV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"gNb" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"gMO" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"gNc" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"gNe" = ( -/obj/structure/prop/server_equipment/yutani_server/off, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 4 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "gNn" = ( /obj/structure/largecrate/supply/medicine/medkits{ pixel_x = -7 @@ -15878,81 +13945,49 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"gNs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) "gNJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/a_block/bridges/op_centre) -"gNN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"gOb" = ( +"gNX" = ( /obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"gNZ" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/area/lv522/indoors/b_block/hydro) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"gOh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "gOj" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"gOo" = ( -/obj/structure/prop/invuln/fusion_reactor, -/obj/structure/prop/turbine_extras, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"gOC" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/beanbag/empty, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"gOE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"gOG" = ( -/obj/structure/prop/turbine_extras/border, -/obj/structure/prop/turbine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) +"gOr" = ( +/obj/structure/closet/crate, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"gOA" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/garden_bridge) "gOJ" = ( /obj/item/tool/wirecutters{ pixel_x = -1; @@ -15970,27 +14005,10 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"gOZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"gPp" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"gPq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) +"gPo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "gPv" = ( /obj/structure/platform{ dir = 1 @@ -16003,44 +14021,60 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"gPw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ +"gPy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4; - icon_state = "darkyellowfull2" + pixel_x = 12; + pixel_y = 4 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"gPQ" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -13; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"gQb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"gQe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"gQk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "gQu" = ( /mob/living/simple_animal/cat/kitten{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"gQy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, +"gQH" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gQM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/northwest, +/area/lv522/indoors/a_block/medical/glass) +"gQQ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "gQV" = ( /obj/structure/platform{ dir = 4 @@ -16051,6 +14085,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"gRd" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/small_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"gRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "gRi" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/medium_stack, @@ -16065,16 +14116,6 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"gRl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) -"gRp" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) "gRs" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/auto_turf/sand_white/layer0, @@ -16091,92 +14132,52 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"gRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"gRK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "gRS" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"gRU" = ( -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"gRV" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/corsat{ - icon_state = "plate" +"gRT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) -"gSn" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"gSe" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "gSw" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"gSJ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"gTc" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"gTw" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"gTM" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "89a" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gTX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"gSE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"gSI" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"gSW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"gTa" = ( +/obj/structure/machinery/door/airlock/almayer/engineering, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/east) -"gUe" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +"gTo" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "gUi" = ( /obj/structure/flora/jungle/planttop1, /turf/open/floor/grass, @@ -16187,44 +14188,34 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"gUm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) -"gUv" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 2 +"gUu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"gUy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/east_reactor/east) -"gUA" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"gUH" = ( +/obj/item/prop/alien/hugger, +/obj/structure/phone_base/colony_net{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"gUQ" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Bar & Grill"; + pixel_x = -16 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"gUP" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "gUT" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -12; @@ -16232,14 +14223,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"gUY" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"gUX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/medical) +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) "gVd" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim, /obj/structure/prop/invuln/ice_prefab/roof_greeble{ @@ -16259,18 +14248,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"gVj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "gVn" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"gVr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) "gVv" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -16281,20 +14275,15 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"gVA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2/ceiling) -"gVD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) +"gVU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"gVZ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "gWb" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -16307,68 +14296,31 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"gWg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"gWh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"gWq" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"gWu" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) -"gWx" = ( -/obj/structure/closet/secure_closet/miner{ - pixel_x = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "gWI" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"gWL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"gWP" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"gXb" = ( -/obj/structure/machinery/light/small{ - dir = 4 + icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"gWQ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) "gXc" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"gXh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/gun/smartgunner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "gXz" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -16377,23 +14329,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"gXA" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"gXB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/lv522/atmos/east_reactor/east) "gXE" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -16402,26 +14337,23 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/atmos/cargo_intake) -"gXI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) -"gXL" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +"gXG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/lone_buildings/chunk) -"gXR" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"gXQ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "gXT" = ( /obj/item/shard{ icon_state = "medium" @@ -16429,160 +14361,55 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"gXY" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "gYc" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"gYs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_y = 3 - }, -/obj/item/paper/janitor, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"gYF" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"gYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"gYu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "gYM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/cargo_intake) -"gYO" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "gYT" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) -"gYX" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"gZd" = ( -/obj/structure/machinery/light{ - dir = 1 +"gZy" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gZH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"gZL" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"gZT" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 }, -/area/lv522/atmos/command_centre) -"gZg" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"gZh" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"gZp" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"gZJ" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"gZL" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"had" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"haf" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"hag" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"hai" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"ham" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) +/obj/item/tool/pen/blue/clicky, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "han" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/sand_white/layer0, @@ -16591,35 +14418,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"haq" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) "har" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"hat" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" +"haz" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"hau" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"haA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "haF" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -16634,165 +14451,75 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"haG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"haR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) "haY" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"hbj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"hbk" = ( -/obj/effect/spawner/gibspawner/robot, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"hbp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/wishsoup, -/obj/item/tool/kitchen/utensil/spoon{ - layer = 2.9; - pixel_x = 10; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"hbu" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) -"hbF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hbG" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"hbe" = ( +/obj/structure/barricade/sandbags{ + dir = 8 }, +/obj/item/trash/uscm_mre, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"hbi" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"hbl" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"hbH" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hbN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) "hbO" = ( /obj/structure/largecrate/random/case/small, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"hcv" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"hbW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "floor3" + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/landing_zone_2/ceiling) -"hcx" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"hbX" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/atmos/command_centre) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hbY" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/west_reactor) +"hca" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "hcE" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"hcG" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "hcO" = ( /obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"hcQ" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"hcV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "hcX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -16802,65 +14529,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"hcZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hdd" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hdk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"hdq" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"hds" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) +"hdn" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) "hdu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) -"hdC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) "hdG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -16868,109 +14545,41 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"hdK" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ +"hem" = ( +/obj/structure/prop/server_equipment/yutani_server{ density = 0; - pixel_y = 24 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hdQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"hdR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"hef" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "heB" = ( /obj/structure/cargo_container/ferret/right, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"heC" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"heF" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"heO" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"heU" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - layer = 2.9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"heX" = ( -/obj/structure/largecrate/random/barrel{ - layer = 5.1; - pixel_x = 13; +"heR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"heS" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; pixel_y = 16 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"hfi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"heZ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) "hft" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"hfx" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "hfy" = ( /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8; @@ -16978,14 +14587,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"hfE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/yutani_server/off, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"hfB" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"hfC" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"hfM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "hfS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -16997,30 +14615,37 @@ /obj/item/prop/alien/hugger, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"hfV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"hgo" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"hgf" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "hgr" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"hgu" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"hgv" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) "hgy" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen{ @@ -17035,68 +14660,51 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"hgH" = ( +"hgA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hhe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"hgM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) -"hgQ" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"hhk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Garage Airlock" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"hho" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"hhy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"hhb" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/landing_zone_2) -"hhu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"hhD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/area/lv522/outdoors/colony_streets/north_street) -"hhI" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) -"hhJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "blue1" +"hir" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hhK" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hiw" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; id = "Reactor_entry_2" @@ -17104,58 +14712,25 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) -"hhQ" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"hig" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/east) -"hij" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"hip" = ( -/obj/structure/pipes/vents/pump, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"hix" = ( -/obj/structure/platform{ - dir = 4 - }, +"hiI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"hiB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" + icon_state = "S" }, -/area/lv522/atmos/command_centre) -"hiK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"hiN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"hiL" = ( +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"hiX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) +"hjf" = ( /obj/structure/platform{ dir = 1 }, @@ -17163,43 +14738,33 @@ dir = 4 }, /turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"hiV" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hiZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Control" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"hjB" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ +/area/lv522/landing_zone_1/tunnel/far) +"hjg" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"hjz" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/item/prop/colony/usedbandage{ + dir = 1 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "hjE" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"hjN" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "hjW" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -17211,6 +14776,11 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"hjZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "hka" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -17222,185 +14792,90 @@ }, /turf/open/floor/plating, /area/lv522/atmos/command_centre) -"hkd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/welding{ - pixel_y = 7 +"hkn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"hkN" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 17 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -1 }, -/area/lv522/indoors/c_block/garage) -"hku" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hkO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"hlf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"hlw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"hlA" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"hlC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"hlD" = ( /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hlO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"hkw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 17 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/command_centre) -"hky" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/command_centre) -"hkC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, /obj/item/tool/pen/red/clicky{ pixel_x = -6 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"hkD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hkE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) -"hkO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"hkT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"hkY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"hlf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"hlh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"hll" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hlp" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"hlH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs/cable/white, -/obj/item/handcuffs/cable/white{ - pixel_y = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"hlJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +"hmc" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" }, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hmn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "hmz" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"hmD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) +"hmB" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hmI" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17412,27 +14887,6 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"hmO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hmV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"hna" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "hnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -17440,39 +14894,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"hnA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"hnD" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"hnG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"hnX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock" +"hnT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"hnU" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"hnW" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"hod" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"hoe" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "hoq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -17491,107 +14939,42 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"how" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "hoy" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"hoN" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"hpe" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +"hoI" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"hpp" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"hpq" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"hpy" = ( -/turf/open/floor/corsat{ +/obj/structure/prop/ice_colony/dense/planter_box{ dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hpH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"hpI" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"hpO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Emergency Engineering" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) -"hqp" = ( -/obj/structure/coatrack{ - pixel_x = 11 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"hqr" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - pixel_y = 2 + layer = 2.9 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hpx" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"hqE" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" }, -/area/lv522/outdoors/colony_streets/north_west_street) -"hqD" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/obj/item/storage/belt/gun/m44/custom, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"hqY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "hqZ" = ( /obj/structure/bed/chair/wheelchair, /turf/open/auto_turf/shale/layer1, @@ -17605,94 +14988,76 @@ /obj/structure/flora/jungle/planttop1, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"hrk" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"hrl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"hrw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +"hrO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hrx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"hry" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hrT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, /area/lv522/atmos/cargo_intake) -"hrH" = ( -/obj/structure/platform_decoration, +"hsa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"hrU" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hsf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "hsh" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"hsz" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"hsJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hsA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -2; - pixel_y = 24 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hsT" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hsU" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"htl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"htq" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "htu" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent4"; @@ -17715,63 +15080,69 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"htN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"htG" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"htK" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/corpo) -"htX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/command_centre) -"hup" = ( -/obj/item/tool/crowbar, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"htQ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"htU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/command_centre) -"huq" = ( -/obj/structure/barricade/wooden{ +/obj/structure/platform{ dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "huu" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"huF" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"huG" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.1 }, -/area/lv522/indoors/a_block/dorms) -"huN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"huY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) -"hvf" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "30" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"hvg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hvh" = ( /obj/structure/platform, /turf/open/gm/river, /area/lv522/atmos/sewer) +"hvq" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "hvD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -17779,62 +15150,33 @@ /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"hvE" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/nw_rockies) -"hwa" = ( -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"hwf" = ( +"hvH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"hwr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"hvV" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"hvZ" = ( +/obj/structure/machinery/computer/arcade, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"hwc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "53" }, -/area/lv522/atmos/command_centre) -"hwt" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hwE" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "hwF" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -17846,16 +15188,9 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"hwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) +"hwT" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "hxn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -17872,12 +15207,27 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"hxV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"hxB" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hxI" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hxP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"hxX" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "hxY" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -17889,185 +15239,117 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"hye" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hyf" = ( -/obj/structure/machinery/light, +"hyb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"hyt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) -"hyA" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"hyv" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"hyG" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"hyE" = ( -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"hyZ" = ( -/obj/structure/fence{ - layer = 2.8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"hyL" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"hyR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"hzc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"hyY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/c_block/mining) +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "hzk" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) -"hzq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) -"hzu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"hzw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +"hzo" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" }, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/landing_zone_forecon/UD6_Tornado) "hzA" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"hzM" = ( -/obj/structure/fence{ - layer = 2.9 +"hzJ" = ( +/obj/effect/spawner/gibspawner/robot, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"hzT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"hzO" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/t_comm) +"hAa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) +"hAd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"hzV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "hAg" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"hAi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"hAk" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"hAr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) "hAs" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"hAw" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" +"hAu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hAx" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hAy" = ( /obj/structure/machinery/light{ dir = 1 @@ -18075,132 +15357,69 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hAA" = ( -/obj/structure/bed/bedroll{ +"hAB" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"hAD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"hAE" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"hAK" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hAX" = ( -/obj/item/weapon/gun/boltaction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"hBf" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/command_centre) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"hAT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) "hBg" = ( /obj/structure/cryofeed, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) -"hBp" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"hBB" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hBD" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hCi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"hCq" = ( -/obj/structure/bed/bedroll{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"hCv" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +"hCa" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "hCH" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"hCU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/east) -"hCV" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/lv522/indoors/lone_buildings/chunk) "hDa" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) -"hDh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "brown" +"hDl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 4; + pixel_y = 15 }, -/area/lv522/atmos/command_centre) +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hDo" = ( +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"hDp" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) "hDy" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/command_centre) +"hDz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"hDD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) "hDE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -18220,114 +15439,133 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"hDZ" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +"hDO" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"hDP" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hDQ" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 }, -/area/lv522/indoors/a_block/admin) -"hEJ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/atmos/way_in_command_centre) -"hES" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hEu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) -"hFg" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 19 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"hFm" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/command_centre) -"hFA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/sewer) -"hFG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"hEx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hEy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liaison Office " }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"hEz" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"hFr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"hFB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"hFL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hFD" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/structure/platform{ - dir = 8 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"hFE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"hFJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"hFS" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hFV" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" }, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "hFX" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_street) -"hGg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"hGm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "marked" +"hGl" = ( +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"hGD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "hGJ" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"hGU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +"hGL" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"hGS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "hGX" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -18343,38 +15581,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"hHh" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, +"hHg" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"hHq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"hHu" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) -"hHj" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"hHN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hHY" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hIf" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"hHw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"hIj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 }, -/area/lv522/landing_zone_2) +/obj/item/seeds/bananaseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "hIp" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null @@ -18389,22 +15624,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hIA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"hID" = ( -/obj/structure/machinery/light{ - pixel_x = 16 +"hIH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "hIP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -18417,19 +15645,20 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/command_centre) +"hIT" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "hIZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"hJp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) +"hJk" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "hJq" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -18437,59 +15666,55 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"hJB" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +"hJz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"hJF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) "hJG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"hJQ" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"hJI" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"hJO" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "hJZ" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"hKj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"hKu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hKy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"hKg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"hKo" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"hKz" = ( -/obj/item/clothing/under/liaison_suit/suspenders{ - pixel_x = -4; - pixel_y = 9 +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"hKr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"hKv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/accessory/red, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "hKE" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -18500,18 +15725,6 @@ /obj/structure/prop/invuln/ice_prefab/standalone, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"hKI" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/sewer) -"hKJ" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "hKK" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -18522,118 +15735,95 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"hKO" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"hKS" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"hLl" = ( +"hKL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"hKP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hLm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"hKX" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hLc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"hLf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) "hLo" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"hLx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"hLu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/bridge) -"hLF" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hLL" = ( +/obj/item/tool/lighter/zippo{ + layer = 3.1; + pixel_x = 12; + pixel_y = 18 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"hLO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 5 }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hLU" = ( +/obj/item/tool/surgery/WYautopsy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ +/obj/structure/sink{ dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"hLK" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"hLT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" + pixel_x = 11 }, -/area/lv522/atmos/cargo_intake) -"hLY" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"hLW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "hMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/admin) -"hMd" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/clothing/glasses/kutjevo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"hMz" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +"hMe" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"hME" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"hMm" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hMI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -18649,13 +15839,6 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"hMR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) "hMT" = ( /obj/structure/surface/table/gamblingtable, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -18663,79 +15846,73 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hNf" = ( +"hMU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"hNh" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/east_reactor/south) -"hNj" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hNk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"hNz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"hNo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"hNt" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"hNP" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/central_streets) -"hNF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"hNP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"hNR" = ( +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"hNR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"hNV" = ( -/obj/item/stack/rods, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"hNZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"hNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) -"hOl" = ( -/obj/structure/bed/bedroll{ - dir = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"hNX" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hOr" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_x = -9; + pixel_y = 15 }, -/obj/item/trash/uscm_mre, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hOs" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "hOy" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -18745,57 +15922,12 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"hOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"hOG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"hOH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"hOI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) -"hOK" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"hOL" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"hON" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"hOX" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/lv522/atmos/command_centre) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "hPd" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -18804,30 +15936,6 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hPq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hPz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hPI" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) "hPM" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, @@ -18839,245 +15947,170 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hPT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" +"hQd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"hQL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"hQh" = ( -/obj/structure/largecrate/random, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"hQR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/nw_rockies) -"hQE" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 + icon_state = "W" }, -/obj/structure/machinery/light{ +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hQS" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/bridge) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "hQU" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/nw_rockies) -"hRd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hRj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) +"hRn" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"hRq" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "hRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"hRy" = ( -/obj/structure/prop/invuln/fusion_reactor, -/turf/open/floor/corsat{ - icon_state = "plate" +"hRB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor) -"hRz" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"hRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"hRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/c_block/casino) -"hRG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"hRY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"hRZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/cargo_intake) -"hRW" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"hSf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "hSi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"hSs" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 4.13 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"hSO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"hSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +"hSY" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/lv522/atmos/way_in_command_centre) -"hTd" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"hTb" = ( +/obj/structure/filingcabinet{ + pixel_x = -9 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/filingcabinet{ + pixel_x = 7 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hTc" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "hTe" = ( /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) -"hTf" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"hTg" = ( +"hTM" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"hTh" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/item/trash/ceramic_plate, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hTZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/lv522/atmos/west_reactor) -"hTk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/east) -"hTo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/bed{ + can_buckle = 0 }, -/area/lv522/atmos/command_centre) -"hTA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Break Room"; - req_one_access = null +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/bedsheet/brown{ + layer = 3.1 }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"hTI" = ( -/obj/structure/prop/server_equipment/yutani_server/off{ - pixel_x = -4 - }, -/turf/open/floor{ - icon_state = "bcircuit" +"hUk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"hUy" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/atmos/east_reactor) -"hTW" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"hUB" = ( +/obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"hTX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"hTY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"hUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"hUM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/trash/plate, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Pressuredoor"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 7 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"hUY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/atmos/east_reactor) "hUZ" = ( /obj/structure/barricade/deployable, /obj/item/weapon/gun/rifle/m41a{ @@ -19085,46 +16118,46 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"hVh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/suspenders, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"hVk" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "bcircuit" - }, +"hVg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor) -"hVu" = ( +"hVn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"hVw" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" }, -/area/lv522/indoors/lone_buildings/chunk) -"hWs" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hVs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"hVz" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"hVG" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/lv522/indoors/b_block/bridge) +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hVS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"hWr" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) "hWz" = ( /obj/structure/platform, /obj/item/prop/colony/canister{ @@ -19134,39 +16167,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"hWC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer2{ - layer = 2.0 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"hWD" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "hWI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"hWJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/casino) "hWV" = ( /obj/structure/barricade/deployable, /obj/item/weapon/gun/rifle/m41a{ @@ -19175,6 +16181,28 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) +"hXb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hXk" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hXl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "hXt" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/warning_stripes{ @@ -19184,91 +16212,38 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"hXA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"hXO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"hXP" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"hXW" = ( -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"hXZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/atmos/east_reactor) -"hYf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hYg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"hXJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"hYk" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"hYc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/atmos/east_reactor) -"hYw" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 16 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"hYq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) -"hYL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"hYO" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/lv522/indoors/b_block/bridge) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"hYS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "hYV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -19287,33 +16262,10 @@ }, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/corpo/glass) -"hZg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hZn" = ( -/obj/structure/prop/server_equipment/yutani_server{ - pixel_x = -4 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/atmos/east_reactor) -"hZK" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - pixel_x = 3 - }, -/obj/structure/prop/server_equipment{ - pixel_x = -16 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/atmos/east_reactor) +"hZB" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "hZL" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -19323,67 +16275,64 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hZO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +"hZV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/lv522/atmos/reactor_garage) -"hZR" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "hZZ" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"iad" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"ial" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/oob) -"iam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"iae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"iax" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/area/lv522/atmos/filt) -"iaD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iay" = ( +/obj/structure/bed/bedroll{ + dir = 4 }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"iaL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) "iaM" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"iaQ" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/sewer) +"iaT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "iaY" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -19391,84 +16340,37 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"ibk" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "ibu" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"iby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ibx" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ibz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 11; + pixel_y = 16 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = -6 }, -/area/lv522/atmos/reactor_garage) -"ibE" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "21" +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/admin) +"ibJ" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) "ibS" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"ibT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"ibW" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"ici" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"ick" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"icr" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "icy" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -19478,25 +16380,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"icM" = ( -/obj/structure/machinery/door_control{ - id = "Marked_6"; - name = "Cargo Shutter Control"; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/prop{ - desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "Weyland classified intelligence folder"; - pixel_y = -2 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) "icT" = ( /obj/structure/machinery/light{ dir = 1 @@ -19504,47 +16387,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"icW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"icX" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 16 }, -/area/lv522/indoors/c_block/bridge) -"idk" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"idh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Wildcatters Office"; + panel_open = 1 }, -/area/lv522/atmos/reactor_garage) -"idn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"idq" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"idt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"idC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/medical) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) "idH" = ( /obj/item/device/flashlight/flare/on, /obj/effect/decal/cleanable/blood, @@ -19558,21 +16422,18 @@ "idL" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/lv522/oob) +"idR" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"idS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "idX" = ( /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/lv522/atmos/east_reactor/south) -"iee" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "iel" = ( /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/shale/layer1, @@ -19580,15 +16441,22 @@ "ien" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) -"ier" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) +"ieF" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"ieI" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"ieM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"ieO" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) "ieW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -19601,48 +16469,23 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"ifd" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "iff" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ifh" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"ifi" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"ifv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"ifw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) "ifx" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -19652,6 +16495,33 @@ /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"ifF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"ifH" = ( +/obj/structure/closet/crate/green, +/obj/item/device/sentry_computer, +/obj/item/defenses/handheld/sentry, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ifO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"ifU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ifZ" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) "igg" = ( /obj/structure/largecrate/random/mini{ pixel_x = 9; @@ -19664,15 +16534,12 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"igp" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"ign" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) "igv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -19686,103 +16553,51 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"igA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/reagent_dispensers/water_cooler/stacks{ +"igE" = ( +/obj/structure/machinery/optable{ density = 0; - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"igL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"igT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"iha" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 + pixel_x = 16; + pixel_y = -6 }, -/obj/item/tool/kitchen/tray{ - pixel_x = 1; - pixel_y = 9 +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"ihh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"ihi" = ( +/obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"ihd" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison{ - icon_state = "blue" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"ihf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"ihs" = ( -/obj/effect/decal/cleanable/dirt, +"iht" = ( +/obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "ihy" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"ihI" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"iiC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = -2 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +"ihM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) +"iie" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"iik" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"iiA" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "iiE" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -19790,14 +16605,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"iiL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges) "iiV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -19805,6 +16612,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"ijb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ijc" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ije" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "ijv" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -19812,91 +16635,96 @@ /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"ijB" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +"ijw" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"ijE" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"ijN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"ijJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" + name = "Bathroom" }, -/area/lv522/indoors/a_block/corpo/glass) -"ijO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ikb" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ikp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ijV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Overseers Office" }, -/obj/item/stack/folding_barricade, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ijY" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/outdoors/colony_streets/north_street) -"ikr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"ijZ" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ikg" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ikj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"iku" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"ikz" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"ikw" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ikE" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"ikH" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ikT" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 }, -/obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ikX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 1 }, -/area/lv522/indoors/c_block/t_comm) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "ikZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -19906,30 +16734,38 @@ "ild" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ily" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" +"ile" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ilh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/indoors/b_block/hydro) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ilF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "ilK" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ilR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +"ilS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/a_block/admin) +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "ilU" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -19940,33 +16776,42 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"ilX" = ( +"imt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"imh" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"imB" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/lv522/indoors/c_block/mining) -"imJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"imD" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/stool, +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"imS" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "imT" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -19974,23 +16819,20 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"inm" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) "inp" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"inq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"inu" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "inA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -19999,11 +16841,9 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"inU" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/n_rockies) +"inQ" = ( +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) "iod" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/auto_turf/sand_white/layer0, @@ -20012,28 +16852,6 @@ /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"ioD" = ( -/obj/structure/prop/structure_lattice, -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ioT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"ipf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/weldingtool/simple, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) "ipw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20046,37 +16864,16 @@ "ipx" = ( /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) +"ipz" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "ipB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"ipH" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 12 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"ipN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) "iqa" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -20087,37 +16884,43 @@ /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"iqg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iql" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 }, -/area/lv522/indoors/a_block/bridges) -"iqt" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"iqq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/indoors/a_block/admin) +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "iqw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iqz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) +"iqD" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"iqE" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -20136,132 +16939,110 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"iqZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"irc" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/kitchen/glass) -"irs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ire" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/c_block/casino) -"irR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"isa" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"isc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"irg" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"irk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"iso" = ( -/obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"irC" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"irS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"irX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) +"irZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"isa" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ise" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) "iss" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"isu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"isA" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"isF" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +"isy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 }, -/obj/structure/barricade/handrail{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"isG" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"isH" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) -"isL" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"iti" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"itl" = ( -/obj/effect/decal/cleanable/blood/drip, +"isN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"isO" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 }, -/area/lv522/indoors/a_block/corpo/glass) -"itp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 }, -/area/lv522/atmos/cargo_intake) -"its" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) +"isT" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 19 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "itz" = ( /obj/structure/largecrate/random/barrel/white, /obj/effect/decal/warning_stripes{ @@ -20270,12 +17051,19 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"itE" = ( +"itB" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"itC" = ( +/obj/structure/closet/crate/miningcar/yellow, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "itG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20288,26 +17076,20 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"iui" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/machinery/microwave{ - pixel_y = 18 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) -"iup" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"itQ" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"itW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"ius" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "iuv" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -20315,63 +17097,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"iuy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"iuC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"iuK" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"iuQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) -"iuW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"ivb" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ivj" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "ivk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -20379,16 +17104,26 @@ /obj/item/tool/wet_sign, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"ivs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"ivm" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"ivn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ivo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "ivy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/jackhammer, @@ -20404,39 +17139,42 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"ivK" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/lone_buildings/engineering) -"ivN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"ivY" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"iwb" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"ivP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"ivX" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"iwd" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) "iwt" = ( /obj/structure/barricade/deployable, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"iwA" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "iwE" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -20450,12 +17188,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iwJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/command_centre) "iwV" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -20467,22 +17199,66 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ixf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"ixc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"ixh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/atmos/command_centre) -"ixs" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ixo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"ixr" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ixB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/adjustable/cable/white, +/obj/item/restraint/adjustable/cable/white{ + pixel_y = 4 }, +/turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/corpo/glass) +"ixC" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ixD" = ( /turf/open/floor/corsat, /area/lv522/atmos/north_command_centre) +"ixE" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "ixO" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 @@ -20499,139 +17275,106 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"ixW" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"iyl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"iyq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"iyt" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"iyx" = ( -/obj/item/stack/rods, +"iyh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iyW" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ize" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/admin) -"iyC" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/stack/sandbags/small_stack, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"izh" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"izq" = ( +/obj/structure/barricade/handrail{ + dir = 1 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) -"iyE" = ( +"izt" = ( /obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"iyQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"iyS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"iyT" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"izj" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"izn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"izr" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "izz" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"izT" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, +"izW" = ( /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 }, -/area/lv522/indoors/a_block/corpo) -"izY" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/circuitboard/computer{ + pixel_x = -3; + pixel_y = 2 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"iAc" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"iAk" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iAn" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"iAt" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "iAv" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) +"iAx" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"iAz" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"iAA" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"iAB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) "iAU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -20639,54 +17382,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"iAV" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 1 +"iAW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/window{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "iAZ" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"iBd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) -"iBe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"iBa" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/indoors/c_block/mining) -"iBl" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iBi" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 9 }, -/area/lv522/landing_zone_2/ceiling) -"iBo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = -4 }, -/area/lv522/indoors/c_block/mining) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "iBr" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -20694,28 +17424,9 @@ /obj/effect/landmark/survivor_spawner/lv522_forecon_tech, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iBs" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"iBI" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"iBQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/t_comm) +"iBz" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "iBY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -20733,50 +17444,37 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"iCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"iCm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"iCs" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 5 }, -/area/lv522/atmos/east_reactor/south) -"iCC" = ( -/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"iCt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"iCR" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"iCS" = ( -/obj/item/stack/sheet/metal, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 6 - }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"iCG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"iDg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"iCV" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"iDA" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) "iDD" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -20792,19 +17490,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iEn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"iDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe{ + pixel_y = -2 }, -/area/lv522/atmos/reactor_garage) -"iEq" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/item/tool/shovel/spade{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"iDT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"iDU" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"iDZ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) +"iEF" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "iEN" = ( /obj/item/reagent_container/food/drinks/drinkingglass{ icon_state = "shotglass"; @@ -20814,68 +17534,23 @@ /obj/structure/surface/table/gamblingtable, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"iFe" = ( -/obj/structure/closet/crate, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"iFk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"iFB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"iFN" = ( -/obj/item/explosive/mine/active, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"iFO" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"iFV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"iGc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"iEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"iFM" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"iGl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"iFP" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) "iGn" = ( /obj/structure/largecrate/random/barrel{ layer = 3.2; @@ -20887,124 +17562,75 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"iGr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"iGD" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"iGF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"iGK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"iGM" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"iGQ" = ( +"iHn" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"iHg" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"iHl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - icon_state = "alert:2"; - name = "inventory computer" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"iHw" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/trash/ceramic_plate{ + pixel_y = 8 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iHq" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "iHD" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iIa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"iHE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iHF" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue{ + pixel_y = -12 }, -/obj/structure/platform/stair_cut, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"iHM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iHQ" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_west_street) +"iHY" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"iId" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"iIi" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"iIk" = ( +/obj/item/ammo_magazine/m56d, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iIp" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "iIs" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iIt" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) "iIw" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -21012,16 +17638,17 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"iIG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"iIx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"iID" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "iIK" = ( /obj/structure/foamed_metal, /obj/item/explosive/grenade/custom, @@ -21038,15 +17665,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"iIY" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +"iJr" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "iJu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -21054,21 +17676,6 @@ /obj/item/ammo_magazine/handful/shotgun, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"iJx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"iJA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) "iJE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -21082,24 +17689,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"iJS" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"iJW" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) "iJZ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -21111,37 +17700,24 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"iKw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"iKC" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/command_centre) +"iKp" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"iKr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "iKF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"iKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"iKN" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +"iKI" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "iKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21152,53 +17728,64 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"iLc" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) -"iLg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"iLn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"iLb" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"iLm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"iLG" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv522/atmos/reactor_garage) -"iLq" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"iLL" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"iLZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"iLC" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"iMc" = ( +/obj/structure/window_frame/strata/reinforced, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"iMh" = ( /obj/structure/stairs/perspective{ - dir = 1; + dir = 6; icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iMi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"iMp" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "iMv" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/corsat, @@ -21214,12 +17801,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"iMx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) "iMC" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -21230,125 +17811,116 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"iML" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"iMQ" = ( +"iMG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iMS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) -"iMU" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iMV" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"iMZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"iNb" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"iNu" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "9" }, -/obj/item/shard{ - icon_state = "medium" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iNF" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"iNN" = ( +/obj/item/xeno_egg/alpha{ + pixel_x = -4; + pixel_y = 18 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/item/xeno_egg/alpha{ + pixel_x = 2; + pixel_y = 7 }, -/area/lv522/indoors/a_block/admin) -"iNs" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/closet/crate, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"iNO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"iNX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/indoors/a_block/security/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iOd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "iOi" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iOl" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"iOr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/area/lv522/atmos/cargo_intake) -"iOt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"iOC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iOD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) -"iOw" = ( -/obj/item/storage/toolbox/electrical{ - pixel_y = -6 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -11; - pixel_y = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"iON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/atmos/reactor_garage) -"iOx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/east_reactor) -"iOG" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"iOP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"iOU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 3 }, -/area/lv522/atmos/cargo_intake) -"iOO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = -8 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"iOV" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "iOY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -21369,171 +17941,175 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iPb" = ( -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) +"iPk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"iPo" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) "iPu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"iPD" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"iPR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"iPV" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/fitness) -"iPZ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"iQb" = ( +"iPA" = ( +/obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) -"iQe" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"iQl" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "iQo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"iQF" = ( -/obj/structure/bed/chair/comfy{ +"iQq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iQs" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/snappop{ + pixel_x = -7 + }, +/obj/item/toy/snappop{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"iQH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/item/trash/liquidfood, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -5; + pixel_y = 3 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway/damage) "iQL" = ( /obj/structure/bed/bedroll{ dir = 5 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iQR" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"iRa" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) "iRl" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"iRV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"iRY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"iSc" = ( -/obj/structure/bed/chair/comfy{ +"iRp" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iRw" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"iRF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) "iSf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"iSu" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" +"iSs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"iSF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/atmos/east_reactor) -"iTb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"iSx" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 4 }, -/area/lv522/indoors/c_block/mining) -"iTn" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor) -"iTF" = ( -/obj/item/ammo_box/magazine/m4ra/ap/empty, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"iSD" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"iSO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iTI" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"iSP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"iSQ" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iSX" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"iTg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"iTj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"iTp" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iTs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iTF" = ( +/obj/item/ammo_box/magazine/m4ra/ap/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"iTK" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) +"iTR" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "iTS" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -21548,30 +18124,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"iTX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"iUa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/atmos/way_in_command_centre) -"iTY" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"iUb" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"iUg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"iUj" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "iUk" = ( /obj/structure/prop/dam/drill{ layer = 3.1; @@ -21580,48 +18151,31 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"iUo" = ( +"iUu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"iUT" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"iUX" = ( -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor) -"iVe" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"iUx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c1000, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"iVk" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"iUG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"iVg" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "iVm" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -21633,132 +18187,82 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"iVy" = ( -/obj/structure/machinery/sensortower{ - pixel_x = 6 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/indoors/a_block/admin) -"iVU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"iVY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"iVZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_x = -7 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"iWc" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/oob) -"iWg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iWh" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_street) +"iVr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"iVS" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) "iWo" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"iWp" = ( -/obj/structure/bed/chair{ - dir = 1 +"iWx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"iWA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/west) +"iWH" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/foamed_metal, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"iWL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"iWu" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/oob) -"iWy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"iWz" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) "iWN" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"iWZ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat{ +"iWV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ dir = 1; - icon_state = "brown" + pixel_y = 3 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"iWW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iXb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iXc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"iXh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges) +"iXv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "iXy" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -12; @@ -21766,12 +18270,11 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iXI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +"iXA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "iXM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -21785,48 +18288,10 @@ /obj/structure/barricade/deployable, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iYa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"iYc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"iYf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "iYm" = ( /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iYs" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) "iYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -21834,64 +18299,76 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"iYy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"iYL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"iYO" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = -4 +"iYE" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/platform/stair_cut, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"iYH" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "66" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iZj" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/indoors/a_block/security) -"iZg" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"iZp" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"iZs" = ( +/obj/item/stack/rods/plasteel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "iZI" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"iZN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box/empty{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "iZS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"jab" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +"iZW" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jae" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/indoors/a_block/medical) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"jaj" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "jaq" = ( /obj/structure/platform_decoration{ dir = 4 @@ -21905,19 +18382,9 @@ "jas" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/mining) -"jaz" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) +"jaB" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "jaO" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/decal/cleanable/dirt, @@ -21944,41 +18411,25 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"jaY" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/fitness) -"jba" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ +"jbe" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"jbd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"jbi" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" }, -/area/lv522/indoors/a_block/dorms) -"jbm" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"jbl" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "jbn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -21986,29 +18437,26 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"jbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"jbv" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"jbr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jbx" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"jbB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "jbI" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -22020,313 +18468,254 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jbO" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"jci" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) -"jcl" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"jcq" = ( -/obj/structure/bed/chair/comfy{ +"jbW" = ( +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jcb" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"jcg" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"jcI" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"jct" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges) -"jcA" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "4" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"jcH" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/suit/storage/marine/smartgunner, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"jcL" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) +"jcM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"jcN" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"jdf" = ( +"jdk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/c_block/t_comm) -"jdl" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) "jdn" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/hypospray/autoinjector/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"jdo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/t_comm) -"jdq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"jdp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"jds" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jdu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 }, -/area/lv522/atmos/cargo_intake) -"jdv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/seeds/potatoseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"jdy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/almayer/w_y0/north, +/area/lv522/atmos/way_in_command_centre) +"jdM" = ( +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 }, -/area/lv522/atmos/outdoor) -"jdD" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"jdQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jdZ" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"jei" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) -"jdI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"jeG" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jfa" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = -4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 5 }, -/area/lv522/indoors/c_block/t_comm) -"jeb" = ( -/obj/vehicle/powerloader{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"jef" = ( -/turf/open/floor/corsat{ +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jfL" = ( +/obj/structure/shuttle/engine/heater{ dir = 8; - icon_state = "browncorner" + pixel_x = -4 }, -/area/lv522/atmos/east_reactor/south) -"jeh" = ( -/obj/item/stack/sandbags/small_stack, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -3 }, -/area/lv522/outdoors/colony_streets/north_street) -"jey" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"jfN" = ( +/obj/structure/closet/crate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"jfO" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"jfQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"jeD" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"jfT" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor) -"jeH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"jfZ" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/c_block/casino) -"jeI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"jeJ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"jft" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"jfx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jgg" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) +"jgi" = ( +/obj/structure/prop/server_equipment/yutani_server{ density = 0; - pixel_x = 8; pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"jfG" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/wishsoup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"jfH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/atm{ + pixel_y = 11 }, -/area/lv522/atmos/way_in_command_centre) -"jfK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"jgG" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/atmos/east_reactor) -"jfO" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"jfZ" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jgM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jgv" = ( -/obj/structure/largecrate/random, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"jgU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"jgI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"jgV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"jgW" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "22" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "jhe" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"jhk" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, +"jhh" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"jhi" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"jhj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) "jhl" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jhp" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 +"jhr" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jhC" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"jhJ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"jhK" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/indoors/a_block/hallway) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "jhQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -22335,45 +18724,20 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"jhS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"jhY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"jic" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger{ - pixel_y = 5 - }, -/obj/item/trash/burger, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"jig" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 8; - pixel_y = 14 +"jhT" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) +"jid" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 }, -/area/lv522/atmos/east_reactor) +/obj/structure/closet/crate, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "jih" = ( /obj/structure/phone_base/colony_net{ dir = 4; @@ -22384,50 +18748,31 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"jin" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation_A_1"; - layer = 3.1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/oob) -"jis" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"jiE" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -11; + pixel_y = 20 }, -/area/lv522/oob) -"jix" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"jiI" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"jiM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"jiF" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "jiP" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/lipstick{ @@ -22442,23 +18787,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"jiW" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/outdoors/nw_rockies) "jiY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/green{ @@ -22466,85 +18794,23 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"jjc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"jjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/cargo_intake) -"jjj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"jjl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"jjo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"jjq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ +"jjk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"jjn" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"jjt" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jju" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/admin) +"jjD" = ( +/turf/closed/shuttle/dropship3/tornado, +/area/lv522/landing_zone_forecon/UD6_Tornado) "jjG" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/sand_white/layer0, @@ -22554,162 +18820,85 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"jjU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"jkb" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"jjV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jkg" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"jko" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"jkq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"jjW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"jkp" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"jku" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plaincakeslice{ + pixel_x = 5; + pixel_y = 8 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/item/reagent_container/food/snacks/plaincakeslice, +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "jkC" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"jkF" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "jkJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"jkL" = ( -/obj/structure/machinery/recharge_station, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"jkO" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"jlc" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"jkR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/b_block/bridge) -"jlh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"jlf" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "jll" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"jln" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"jlr" = ( -/turf/open/floor/coagulation{ - icon_state = "0,8" - }, -/area/lv522/oob) -"jlu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"jmd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"jmi" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"jlz" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/indoors/a_block/medical) -"jmv" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"jma" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "jmz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22719,6 +18908,11 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"jmC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "65" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jmE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22728,70 +18922,32 @@ "jmG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/cargo) -"jmU" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/coagulation{ - icon_state = "4,8" - }, -/area/lv522/oob) -"jmW" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jmI" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "74" }, -/area/lv522/atmos/cargo_intake) -"jmX" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jmR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" }, -/area/lv522/atmos/reactor_garage) -"jnb" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"jnd" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"jnh" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "3" }, -/area/lv522/indoors/a_block/medical) +/area/lv522/landing_zone_forecon/UD6_Tornado) "jnk" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"jnp" = ( -/turf/open/floor/coagulation{ - icon_state = "8,8" - }, -/area/lv522/oob) -"jnr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "jnB" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -22801,14 +18957,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jnE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "jnF" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -22816,14 +18964,15 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"joe" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"jnZ" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) +"joi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) "jom" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -22834,50 +18983,34 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"joJ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"joK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 16 +"joo" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_2"; - name = "remote door-control"; - pixel_x = -8; +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"jor" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + pixel_x = -5; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/oob) -"joV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"jpa" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"joy" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"joX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "jpb" = ( /obj/structure/closet/crate, /obj/item/storage/pouch/shotgun/large/slug, @@ -22889,54 +19022,73 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"jpm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "jpx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jpM" = ( -/obj/structure/bed/chair/comfy{ +"jpI" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"jpS" = ( +/obj/structure/machinery/light{ dir = 4 }, -/mob/living/simple_animal/corgi/puppy, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"jpU" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "Marked_2"; + pixel_y = 26 }, -/area/lv522/indoors/c_block/mining) +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "jqa" = ( /obj/structure/ore_box, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jqr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"jqz" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"jqF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"jqL" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"jqd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, /area/lv522/atmos/reactor_garage) +"jql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"jqn" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"jqv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"jqB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"jqE" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "jqO" = ( /obj/structure/platform{ dir = 4 @@ -22946,102 +19098,57 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"jqV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "jrd" = ( /obj/structure/girder/displaced, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"jri" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) -"jrn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"jrr" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "jru" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"jrB" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"jrD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"jrJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/cassette_tape/pop4{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) "jrL" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"jrQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "jrT" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"jsy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +"jrZ" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"jsl" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"jsn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"jsr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jsD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23049,6 +19156,13 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"jsH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "jsM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -23061,24 +19175,26 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jtf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"jsY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jta" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "jtg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jth" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) "jtu" = ( /obj/structure/barricade/deployable, /obj/structure/barricade/deployable{ @@ -23086,35 +19202,14 @@ }, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jtQ" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"jtZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"jub" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jud" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/lv522/indoors/a_block/admin) +"jtS" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"jtX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "jue" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/item/lightstick/red/spoke/planted{ @@ -23123,15 +19218,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"jur" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) "jus" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -23142,21 +19228,23 @@ /obj/structure/cargo_container/arious/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"juw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"juL" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "23" }, -/area/lv522/atmos/east_reactor/south) -"juQ" = ( -/obj/effect/decal/cleanable/blood/xeno, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"juP" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"juR" = ( +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "juY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -23171,12 +19259,6 @@ /obj/structure/cargo_container/arious/leftmid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jvh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) "jvk" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -23202,27 +19284,65 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"jvq" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"jvr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "jvu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"jvG" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"jvD" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"jvP" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/area/lv522/indoors/a_block/dorms/glass) -"jwx" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/structure/machinery/light{ +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"jvQ" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"jvR" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"jwt" = ( +/obj/structure/machinery/optable, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/reactor_garage) +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"jwu" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) "jwM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -23232,12 +19352,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jwT" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "squares" +"jwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jwV" = ( /obj/structure/filingcabinet{ density = 0; @@ -23251,31 +19373,15 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"jxu" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/mop{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) +"jxc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "jxz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"jxC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) "jxD" = ( /obj/structure/platform, /obj/structure/platform{ @@ -23286,15 +19392,41 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"jxF" = ( -/obj/structure/largecrate/guns/russian, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "jxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/outdoor) +"jxM" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"jxP" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"jye" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = 9 + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "jyf" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3; @@ -23302,75 +19434,57 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"jyw" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"jyx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"jyC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jyj" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/lv522/indoors/a_block/hallway) -"jyF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jyA" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"jyB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "jyM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"jyN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"jyO" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "jze" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"jzu" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"jzB" = ( +"jzx" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 }, -/area/lv522/atmos/way_in_command_centre) +/obj/item/clothing/mask/cigarette, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "jzC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -23415,6 +19529,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"jAb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jAd" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" @@ -23433,21 +19557,36 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"jAA" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"jAH" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/east_central_street) "jAI" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"jAL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"jAQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "jAV" = ( /obj/item/prop/alien/hugger{ pixel_x = -12; @@ -23456,46 +19595,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"jBm" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"jBr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jBa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/way_in_command_centre) -"jBs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jBg" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"jBh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"jBu" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"jBt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "jBw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23506,16 +19630,6 @@ /obj/structure/janitorialcart, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"jBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "jBR" = ( /obj/structure/bed/chair{ dir = 1 @@ -23531,12 +19645,16 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"jBY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "cell_stripe" +"jCa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 }, -/area/lv522/atmos/way_in_command_centre) +/obj/item/clothing/head/hardhat/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "jCb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10; @@ -23555,89 +19673,65 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"jCh" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/tunnel) -"jCq" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"jCy" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"jCA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"jCG" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/area/lv522/atmos/cargo_intake) -"jCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/lv522/atmos/east_reactor/south) -"jCS" = ( -/obj/item/trash/wy_chips_pepper, -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"jCR" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "jCU" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jCW" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -2; - pixel_y = 8 +"jDf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/admin) -"jCY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/hallway) -"jDc" = ( -/obj/structure/stairs/perspective{ +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"jDj" = ( +/obj/structure/surface/table/almayer{ dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"jDy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" + flipped = 1 }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jDx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "jDA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -23650,51 +19744,29 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jDN" = ( -/obj/structure/filtration/machine_96x96/distribution{ - density = 0; - pixel_y = 16 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +"jDL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"jEa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"jEk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"jEq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - icon_state = "plate" +"jEb" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"jEm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"jEp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) "jEu" = ( /obj/structure/sign/safety/rad_haz, /obj/structure/sign/safety/restrictedarea{ @@ -23702,6 +19774,22 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) +"jEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/circuitboard/computer{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "jEW" = ( /obj/structure/bed/chair{ dir = 1 @@ -23715,54 +19803,45 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"jFa" = ( +"jEZ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) +/obj/item/newspaper, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jFc" = ( /obj/item/tool/wrench, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jFl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) "jFr" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"jFu" = ( -/obj/structure/morgue{ - dir = 8 +"jFz" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/paper/crumpled/bloody{ + pixel_x = -9 }, -/area/lv522/indoors/a_block/medical) -"jFC" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/obj/item/trash/cigbutt{ + pixel_x = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "jFG" = ( /obj/structure/cargo_container/arious/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"jFW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "jGa" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -23783,26 +19862,13 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jGh" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"jGj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/maintenance_jack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"jGm" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation{ - icon_state = "0,5" +"jGi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "jGp" = ( /obj/structure/platform{ dir = 1 @@ -23815,21 +19881,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"jGw" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"jGF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "67" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "jGK" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"jHa" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "65" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "jHb" = ( /turf/open/gm/river, /area/lv522/oob) @@ -23837,242 +19900,185 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"jHj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jHn" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jHo" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/dorms) -"jHy" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"jHx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"jHR" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "jIk" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"jIG" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/vomit, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 21 +"jIs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"jIJ" = ( +/obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"jII" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jIN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/n_rockies) -"jIQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) "jIR" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/gm/river, /area/lv522/oob) -"jJa" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) -"jJh" = ( +"jIY" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 20 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_y = 27 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 1 }, -/area/lv522/indoors/b_block/bar) -"jJi" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"jIZ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/lv522/indoors/a_block/medical/glass) -"jJj" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/coagulation{ - icon_state = "8,3" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"jJz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/oob) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jJF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"jJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"jJO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"jKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"jKb" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"jJG" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" }, -/area/lv522/outdoors/colony_streets/east_central_street) -"jKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"jKn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"jKo" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"jKu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) -"jKB" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"jKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jKE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/east_reactor/south) +"jKI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"jKN" = ( +/obj/structure/ore_box{ + pixel_x = -4 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"jLf" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/structure/ore_box{ + layer = 3.2; + pixel_x = -11; + pixel_y = 23 }, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"jKT" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"jLb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"jLk" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" + name = "\improper C-Block - Casino Airlock"; + welded = 1 }, -/area/lv522/landing_zone_2) -"jLD" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light{ +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"jLi" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"jLl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "jLF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) +"jLJ" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jLK" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"jLM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/tofukabob, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jLX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"jMk" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"jMr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +"jMl" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"jMm" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "jMv" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -24085,6 +20091,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"jMw" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob) "jMy" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison, @@ -24098,15 +20111,17 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"jMK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"jMQ" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"jMT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) "jMZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky{ @@ -24119,73 +20134,44 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"jNv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"jNQ" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"jNV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"jNY" = ( +"jNa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_x = 10; + pixel_y = 14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"jNr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_leg"; + name = "left leg"; + pixel_x = -11; + pixel_y = -8 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) "jOh" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating, /area/lv522/oob) -"jOr" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"jOl" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "jOw" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -24205,6 +20191,30 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"jOC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"jOD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jOE" = ( +/obj/structure/machinery/door_control{ + id = "UD6"; + name = "Cargo Shutter Control" + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "53" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jOF" = ( /obj/effect/acid_hole, /turf/closed/wall/shiva/prefabricated/reinforced, @@ -24218,74 +20228,42 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"jPd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"jPg" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"jPj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"jPk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table/reinforced/prison, +"jPf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"jPv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "jPw" = ( /turf/open/floor/plating, /area/lv522/oob) -"jPz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "jPC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) +"jPE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"jPG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"jPS" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jPY" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "jQa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane{ @@ -24299,134 +20277,125 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"jQC" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"jQp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) +"jQs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"jQN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jRc" = ( /obj/structure/machinery/disposal, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"jRT" = ( -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"jRY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"jRl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/microwave{ + pixel_y = 18 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"jRn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"jRt" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"jRu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"jRT" = ( +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "jRZ" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"jSk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"jSb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"jSc" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"jSC" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"jSN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 }, -/area/lv522/indoors/a_block/dorms) -"jSR" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -2; + pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"jSY" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"jTx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"jSU" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/corpo/glass) -"jSW" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +"jTy" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Typhoon' flight controls"; + network = null; + pixel_y = 21 }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 }, -/area/lv522/indoors/b_block/bridge) -"jTb" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"jTi" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"jTl" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"jTr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"jTx" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"jTB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jTH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -24438,20 +20407,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"jTJ" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"jTS" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/apc, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) +"jTM" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "jUe" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -24462,124 +20421,56 @@ /obj/item/ammo_box/magazine/l42a/ap/empty, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"jUk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"jUi" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"jUl" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "jUn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"jUq" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) -"jUy" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"jUE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 13; - pixel_y = 17 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"jUI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"jUO" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 5; - pixel_x = 15 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"jUW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 +"jUv" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"jUB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "jUY" = ( /obj/structure/machinery/door_control/brbutton{ id = "Reactor_garage_2" }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) -"jVa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"jVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/strata{ - icon_state = "blue1" +"jUZ" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 4.13 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"jVc" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) "jVq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"jVz" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"jVC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "jVH" = ( /obj/item/paper{ pixel_x = -4; @@ -24587,70 +20478,68 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jVK" = ( +"jWa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"jWg" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"jWs" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"jWw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"jVS" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"jWr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" + name = "\improper A-Block Canteen Airlock"; + welded = 1 }, -/area/lv522/atmos/east_reactor/south) -"jWB" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/east_reactor/south) -"jWV" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"jWz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"jXd" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 }, -/area/lv522/indoors/a_block/corpo/glass) -"jWX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/sheet/metal{ + amount = 30 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"jXf" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/indoors/a_block/dorms) -"jWZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"jXi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Armory" }, -/area/lv522/atmos/way_in_command_centre) -"jXc" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "greenfull" + id = "Sec-Armoury-Lockdown" }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "jXp" = ( /obj/structure/prop/invuln/rope{ pixel_x = -5; @@ -24667,23 +20556,36 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) +"jXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) "jXT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"jXW" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"jXX" = ( +/obj/item/stack/sheet/wood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "jYj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"jYp" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"jYm" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) "jYr" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -24701,108 +20603,65 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"jYE" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"jYF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/c_block/cargo) -"jYK" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"jYZ" = ( -/obj/structure/filingcabinet, +"jYI" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "jZc" = ( /obj/structure/flora/jungle/thickbush, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"jZe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"jZi" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 23 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "jZo" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"jZA" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"jZD" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"jZt" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" }, -/area/lv522/landing_zone_1) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "jZE" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"jZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"jZS" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" - }, -/obj/structure/barricade/handrail{ +"jZV" = ( +/turf/open/floor/almayer/w_y1/north, +/area/lv522/oob/w_y_vault) +"kac" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"kal" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/lv522/oob) -"kaD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"kaQ" = ( +/obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kaA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"kaB" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "kaV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -24811,13 +20670,6 @@ /obj/item/tool/hand_labeler, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"kaX" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "kba" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2" @@ -24831,40 +20683,20 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"kbg" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"kbn" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"kbo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"kbu" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - icon_state = "plate" +"kbf" = ( +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"kbh" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "77" }, -/area/lv522/atmos/filt) -"kbF" = ( -/obj/structure/surface/table/almayer, -/obj/item/cpr_dummy, -/turf/open/floor/plating{ - icon_state = "platebot" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kbG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) "kbH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24872,42 +20704,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"kbJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"kbM" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1"; - layer = 5.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "0,5" - }, -/area/lv522/oob) "kbS" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"kbV" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) -"kca" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/east) "kcb" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/west_reactor) @@ -24922,13 +20724,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kck" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"kcj" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"kcm" = ( +/obj/structure/machinery/microwave, +/obj/structure/machinery/microwave{ + pixel_y = 13 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "kco" = ( /obj/structure/platform{ dir = 8 @@ -24936,25 +20750,22 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/oob) -"kcv" = ( -/obj/effect/decal/cleanable/blood, +"kcp" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/damage) -"kcw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"kcz" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kcA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "kcC" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -24966,10 +20777,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"kcF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"kcK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kcL" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) +"kcM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "kcN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24982,17 +20810,11 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"kcS" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +"kdc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "kdf" = ( /obj/structure/stairs/perspective{ @@ -25004,18 +20826,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"kdi" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "kdm" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer0, @@ -25026,22 +20836,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"kdr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"kdp" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/structure/platform_decoration{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kdw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "kdx" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, @@ -25049,6 +20858,24 @@ "kdy" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) +"kdD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"kdI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kdK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "kdL" = ( /obj/structure/filtration/collector_pipes{ icon_state = "lower_2"; @@ -25060,20 +20887,21 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/oob) +"kdM" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"kdZ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) "keb" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kel" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation{ - icon_state = "8,3" - }, -/area/lv522/oob) "keq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -25084,25 +20912,27 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"keA" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) -"kfa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" +"keu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"kew" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/security) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"key" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "kfq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -25110,64 +20940,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"kfs" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"kfu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kfv" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"kfw" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"kfA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kfD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/kitchen) -"kfF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" +"kfr" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 }, -/area/lv522/atmos/cargo_intake) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "kfG" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1; @@ -25179,86 +20957,43 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"kgb" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kgm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, +"kfV" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) +"kgf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"kgH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"kgC" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"kgP" = ( +/obj/structure/ore_box, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"kgQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"kgR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"khd" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/c_block/cargo) -"khf" = ( -/obj/structure/prop/server_equipment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"khm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"kho" = ( -/obj/structure/dispenser, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"khx" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"kha" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) +"khu" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"khz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"khE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 9 }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "khG" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/shale/layer1, @@ -25274,111 +21009,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"kib" = ( -/obj/item/clothing/head/hardhat/white, -/obj/item/prop/alien/hugger{ - pixel_x = 11; - pixel_y = -9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kie" = ( +"kid" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"kih" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kiD" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kiE" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kif" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"kim" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/landing_zone_2) +"kiq" = ( +/obj/item/device/m56d_post, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kiv" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"kiM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"kiG" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) -"kiO" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"kiQ" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kiT" = ( /obj/item/stack/medical/bruise_pack, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"kiY" = ( -/obj/structure/ore_box{ - pixel_x = -4 - }, -/obj/structure/ore_box{ - layer = 3.2; - pixel_x = -11; - pixel_y = 23 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) "kjj" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/structure/surface/table/almayer, @@ -25389,6 +21052,12 @@ /obj/item/reagent_container/food/drinks/coffee, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"kjl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) "kjp" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -25397,143 +21066,90 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/oob) -"kjs" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"kjU" = ( -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kkc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"kkq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"kkr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"kjy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"kjG" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"kjS" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) "kky" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-4" }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"kkB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kkP" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"kkR" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"kkS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +"kkD" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges) +"kkG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/lone_buildings/chunk) -"kkZ" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"klk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/north_command_centre) -"klj" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/outdoor) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "kll" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2-8" }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"klp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"kls" = ( +/obj/item/clothing/suit/storage/marine/medium/smooth, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"klu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"klx" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"kly" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"klC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"klM" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"klz" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"klL" = ( -/obj/structure/machinery/microwave, -/obj/structure/machinery/microwave{ - pixel_y = 13 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"klO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "klW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/closed/wall/mineral/bone_resin, @@ -25542,37 +21158,36 @@ /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"kmc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "kmd" = ( /obj/structure/prop/turbine, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"kmg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "squares" +"kmf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) "kmq" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) -"kms" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"kmy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/admin) -"kmz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "kmE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -25583,99 +21198,27 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"kmF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/garden) -"kmH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"kmP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"kmK" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/east_reactor/south) -"kmY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"knC" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"knR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/reagent_container/food/condiment/saltshaker{ +/obj/item/bedsheet/brown{ layer = 3.1 }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tofubreadslice{ - pixel_x = -7 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kne" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"kni" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"knt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"knN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"knS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "knT" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ density = 0; @@ -25684,19 +21227,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"knW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) "koj" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -25708,48 +21238,68 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"kom" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "kor" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kow" = ( -/obj/structure/bed/chair{ +"koy" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"koB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"koG" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"koE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"koF" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 9 }, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "koM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kpo" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"kpu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"koR" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "74" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kpi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster17"; + name = "\improper torn magazine page"; + pixel_x = -2; + pixel_y = 3 }, -/area/lv522/indoors/a_block/dorms) +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "kpB" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -25760,23 +21310,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kpE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"kpG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) +"kpK" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/lv522/indoors/a_block/dorms) "kpN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -25786,22 +21322,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"kqa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"kpS" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"kpX" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/filt) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "kqb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen) -"kqp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +"kqz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "kqJ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -25815,97 +21357,40 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"kqX" = ( -/obj/item/clipboard, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kri" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) -"krj" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) +"kqV" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "krm" = ( /obj/structure/surface/table/almayer{ flipped = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"kru" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/berryseed, -/obj/structure/machinery/light{ - dir = 4 - }, +"krr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "krw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"krx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "kry" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"krH" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "krK" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/wrench, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"krN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"krP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"ksa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/matches{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "ksf" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -25913,31 +21398,42 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"ksh" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/filt) "ksk" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"ksm" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +"ksl" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"ksr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"ksv" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/area/lv522/atmos/north_command_centre) -"kss" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"ksA" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) +"ksD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"ktb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "kti" = ( /obj/structure/platform, /obj/structure/platform{ @@ -25959,6 +21455,27 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/dorms) +"ktM" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "4" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ktQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/cell/high{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "kug" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/pistachios, @@ -25967,52 +21484,53 @@ /obj/item/trash/popcorn, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"kui" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 +"kur" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"kuu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"kuy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/b_block/hydro) -"kun" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"kup" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "kuD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"kuN" = ( +"kuI" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"kuV" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kuX" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_west_street) "kvc" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -26024,56 +21542,55 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"kvq" = ( -/obj/structure/window_frame/strata/reinforced, -/obj/item/stack/rods, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) -"kvJ" = ( +"kvk" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/snappop{ - pixel_x = -7 - }, -/obj/item/toy/snappop{ - pixel_x = 3; - pixel_y = 11 +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kvS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"kvX" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno{ + pixel_x = 8; + pixel_y = 12 }, -/area/lv522/indoors/a_block/fitness/glass) -"kvM" = ( -/obj/structure/pipes/vents/pump, +/obj/item/toy/dice, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kwc" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"kvZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "kwg" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) +"kwh" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard/full_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "kwj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kwo" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) "kwt" = ( /obj/structure/platform, /obj/structure/platform{ @@ -26085,6 +21602,11 @@ }, /turf/open/floor/plating, /area/lv522/oob) +"kwE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) "kwJ" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/north_command_centre) @@ -26095,52 +21617,68 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"kxd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box/empty{ - pixel_x = 1; - pixel_y = 8 +"kwL" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kwY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Marshals Office Armory"; + req_access = null }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/security/glass) -"kxm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"kxc" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/atmos/cargo_intake) -"kxq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_y = 15 +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"kxz" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 9 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"kxA" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/c_block/mining) -"kxW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"kxF" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"kxM" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"kxX" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kyd" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) -"kyb" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 15 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kye" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "kyo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26148,15 +21686,25 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"kyz" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = -14; - pixel_y = -2 +"kyp" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kyr" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"kyt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan4/north, +/area/lv522/indoors/a_block/medical) "kyB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -26171,60 +21719,39 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"kyJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/janitorialcart, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"kyK" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kzc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +"kza" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "24" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kzf" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 }, -/area/lv522/atmos/way_in_command_centre) -"kze" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/item/tool/soap{ + pixel_y = 14 }, -/area/lv522/indoors/a_block/admin) -"kzk" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "47" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"kzi" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kzl" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"kzp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kzr" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -26239,57 +21766,82 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"kzG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"kzR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"kzK" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"kzO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kzT" = ( /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"kAf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"kzW" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/indoors/c_block/casino) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"kAa" = ( +/obj/structure/tunnel{ + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"kAc" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kAh" = ( +/obj/item/trash/uscm_mre, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "kAj" = ( /obj/structure/bed/chair/comfy, /obj/effect/landmark/survivor_spawner/lv522_forecon_squad_leader, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kAn" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"kAG" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"kAp" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 7; + pixel_y = -12 }, -/area/lv522/indoors/c_block/bridge) -"kAI" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"kAz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 }, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_box/rounds/smg{ + layer = 3; + pixel_x = 1; + pixel_y = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kBj" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/prison, @@ -26300,15 +21852,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"kBm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +"kBn" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "kBq" = ( /obj/structure/girder, /turf/open/floor/plating, @@ -26319,6 +21868,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"kBy" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "kBz" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/prison, @@ -26338,12 +21891,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kBJ" = ( -/obj/item/prop/colony/canister, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "kBK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -26351,49 +21898,36 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"kBL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "kBT" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kCf" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kCC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kBW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kBY" = ( +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) +"kBZ" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"kCt" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "kCF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/prop/invuln/ice_prefab{ @@ -26402,65 +21936,29 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"kCJ" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kCM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kCN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_y = 16 +"kCH" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"kCI" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kCQ" = ( -/obj/structure/largecrate/random, -/obj/item/explosive/plastic/breaching_charge{ - pixel_y = -2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"kDH" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/shard{ + icon_state = "medium" }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kDQ" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"kDU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) +"kDF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "kDY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26468,64 +21966,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"kEc" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) "kEd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"kEh" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"kEi" = ( +/obj/item/storage/firstaid/o2, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) "kEj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"kEl" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"kEo" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"kEx" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/corsat{ - icon_state = "plate" +"kEm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"kEy" = ( +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) -"kEA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"kEL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "squares" +"kEE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "kEN" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/prop{ @@ -26537,39 +22016,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"kEP" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"kEQ" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/c_block/bridge) -"kEW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"kEZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/central_streets) +"kER" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) "kFd" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -26586,25 +22035,22 @@ /obj/item/clothing/suit/storage/marine/M3G, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"kFx" = ( +"kFs" = ( +/obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 6; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"kFv" = ( +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "kFB" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"kFK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) +"kFN" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) "kFP" = ( /obj/structure/platform/strata{ dir = 8 @@ -26625,401 +22071,259 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"kGm" = ( -/obj/effect/decal/cleanable/dirt, +"kGd" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"kGf" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"kGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/indie{ + pixel_x = -10; + pixel_y = 8 }, -/area/lv522/indoors/b_block/hydro) +/obj/item/storage/pouch/cassette{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"kGt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"kGA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "kGX" = ( /obj/structure/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"kHd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y0" - }, -/area/lv522/atmos/way_in_command_centre) -"kHy" = ( +"kHN" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kHO" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "kHP" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/uscm_mre, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kHU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"kHX" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"kHZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/weapon/gun/flamer{ - current_mag = null; - layer = 3.1 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"kId" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +"kIh" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) "kIj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"kIn" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kIs" = ( +"kIk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kIo" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"kIs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"kIM" = ( -/obj/item/ammo_magazine/rifle/m4ra/ap{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"kIw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"kIF" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"kII" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"kIJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/oob) "kIV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"kIZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) -"kJb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kJc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 +"kJk" = ( +/obj/structure/prop/vehicles{ + icon_state = "van_damaged" }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"kJq" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"kJh" = ( -/obj/item/stack/rods, -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"kJv" = ( -/obj/structure/largecrate/random/mini, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"kJs" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"kJu" = ( +/obj/structure/closet/crate, +/obj/item/storage/xeno_tag_case, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kJN" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) "kJO" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"kJV" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"kJT" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) +"kJU" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"kKe" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/oob) -"kKc" = ( -/obj/structure/toilet{ - pixel_y = 16 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"kKw" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"kKh" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/coagulation{ - icon_state = "2,0" - }, -/area/lv522/oob) -"kKD" = ( -/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kLo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"kKR" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/dorms) -"kLc" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"kLe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kLs" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"kLO" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"kLQ" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kMi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"kMr" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 9 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"kMc" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_x = 8; +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ pixel_y = 13 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness) -"kMN" = ( -/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kMl" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ dir = 1; - icon_state = "blue_plate" + pixel_y = 26 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kMu" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) "kNe" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"kNj" = ( -/obj/structure/prop/vehicles/crawler{ +"kNu" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"kNw" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security) -"kNL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"kNM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories"; - welded = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) -"kNR" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "100" + pixel_x = -6; + pixel_y = 6 }, +/obj/structure/closet/firecloset/full, /turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/landing_zone_1/tunnel/far) +"kNP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kNU" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "101" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kOa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"kOr" = ( -/obj/effect/decal/cleanable/generic, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -13; - pixel_y = -9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/t_comm) -"kOz" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "kOE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"kOF" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"kOJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"kOG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "kOQ" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -27038,70 +22342,80 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"kOV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"kPc" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kPG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"kPo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) -"kPJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"kPt" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"kPC" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"kPD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kPI" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) "kPO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"kPT" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kPV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"kPR" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "3" }, -/area/lv522/indoors/a_block/dorms) -"kQc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - icon_state = "blue1" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kQf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "5" }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kQw" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kQi" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "102" }, -/area/lv522/atmos/cargo_intake) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kQG" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) "kQJ" = ( /obj/item/explosive/mine/active{ dir = 8 @@ -27114,15 +22428,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"kQR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "kQS" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -27138,98 +22443,46 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kRa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) "kRb" = ( /obj/item/weapon/telebaton, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"kRf" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 +"kRc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "61" }, -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kRd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "kRg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"kRi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"kRp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"kRw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) -"kRB" = ( +"kRq" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"kRL" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"kRJ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "kRQ" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"kRS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, +"kRU" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "kRZ" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -27237,24 +22490,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"kSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"kSi" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"kSh" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/pressurized_reagent_canister/revival, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) "kSm" = ( /obj/structure/machinery/light{ dir = 8 @@ -27264,6 +22505,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"kSr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "kSs" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -27278,6 +22526,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"kSy" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) "kSC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -27291,49 +22542,14 @@ /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kSS" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"kSZ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 16 - }, +"kTc" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"kTd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"kTm" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kTh" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kTn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -27343,71 +22559,47 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kTs" = ( -/obj/effect/decal/cleanable/blood/oil, +"kTP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"kTQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"kTF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/botanic_leather, -/obj/structure/machinery/light{ - dir = 8 - }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"kTW" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"kTJ" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"kUf" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kTY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) "kUo" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"kUs" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"kUF" = ( -/obj/effect/decal/cleanable/dirt, +"kUr" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/way_in_command_centre) -"kUH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"kUt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/area/lv522/indoors/a_block/security) +/obj/item/tool/pen/clicky, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "kUJ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -27417,232 +22609,185 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"kVa" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"kUK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -3; + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kUW" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"kUX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "kVh" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"kVj" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, +"kVl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kVD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "kVG" = ( /obj/structure/cargo_container/kelland/left, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) +"kVH" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) "kVO" = ( /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"kVP" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"kVT" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "kVV" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"kWa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/cargo_intake) -"kWi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"kVW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"kWp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"kWD" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kWH" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kWv" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/lv522/atmos/cargo_intake) -"kWZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kWz" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) -"kXa" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor{ - icon_state = "bcircuit" +/turf/open/floor/wood/wood_broken5, +/area/lv522/indoors/b_block/bar) +"kWC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"kXc" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) +"kWR" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) "kXe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kXf" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"kXg" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +"kXl" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/area/lv522/indoors/a_block/medical) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "kXo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"kXB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "brown" +"kXq" = ( +/obj/item/prop/colony/canister{ + dir = 8; + layer = 3.1; + pixel_y = 16 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"kXt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"kXv" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"kXy" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "kXY" = ( /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) +"kYc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/w_y2/north, +/area/lv522/oob/w_y_vault) +"kYf" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "kYm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"kYu" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"kYB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "kYH" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kYL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kYM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"kZe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "kZj" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ current_rounds = 0 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"kZq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"kZn" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "kZs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -27652,83 +22797,44 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"kZJ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"kZX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = 23; - pixel_y = 21 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/damage) -"lae" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"lag" = ( +"kZL" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"lao" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/sewer) -"lau" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/obj/item/storage/box/flashbangs{ + pixel_x = 7; + pixel_y = 2 }, -/area/lv522/indoors/a_block/admin) -"laB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kZR" = ( +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"kZT" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"laf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/space_heater/radiator/red{ dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" + pixel_y = 26 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lal" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = -5; + pixel_y = 9 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"laE" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8; @@ -27744,132 +22850,90 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"lbg" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"lbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) -"lbo" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"lbt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"lbv" = ( +/obj/structure/barricade/sandbags, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) "lbA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"lbC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "lbD" = ( /obj/item/prop/colony/usedbandage{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"lbH" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"lbI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"lbK" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, +"lbF" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"lbY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"lce" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"lbX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/atmos/outdoor) -"lcK" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lcJ" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 1 }, -/area/lv522/indoors/a_block/admin) -"lcM" = ( -/obj/item/prop/alien/hugger, -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"lcP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"lcT" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lcQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/area/lv522/indoors/a_block/dorms) -"ldg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Kitchen-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = -2 }, -/area/lv522/indoors/a_block/admin) -"ldi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lcR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"ldb" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/squares, +/area/lv522/oob) "ldu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -27877,15 +22941,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"ldy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) "ldC" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, @@ -27896,52 +22951,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"lea" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshall Office Interrogation"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"leg" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"leh" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"lek" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"lel" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +"ldX" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"leb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "lep" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -27950,165 +22967,129 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"leG" = ( +"lew" = ( +/obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - id = "Reactor_entry_2" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"leH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/clothing/suit/storage/marine/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"leI" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"leO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv522/indoors/b_block/hydro/glass) -"leP" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 7; - pixel_y = -12 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" + id = "Sec-Kitchen-Lockdown" }, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "leV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"lfe" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat{ - icon_state = "marked" +"lfc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 }, -/area/lv522/indoors/a_block/dorms) -"lfj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"lfu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/sewer) -"lfI" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"lfC" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Kitchen"; - pixel_y = -6 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"lfS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lfK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 }, -/area/lv522/outdoors/nw_rockies) -"lfU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"lgo" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = 4; + pixel_y = 9 }, -/area/lv522/indoors/c_block/cargo) -"lgf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"lgC" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/atmos/cargo_intake) -"lgw" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "64" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lgR" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"lgY" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"lhb" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 +"lgW" = ( +/obj/structure/bedsheetbin{ + pixel_y = 7 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lha" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"lhg" = ( +/obj/structure/morgue{ + dir = 8 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"lhd" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"lhj" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"lhl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/admin) -"lhC" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"lhD" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lhr" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/atmos/cargo_intake) -"lhE" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"lhu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 }, -/area/lv522/landing_zone_2) -"lhI" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"lhB" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lhF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "lhK" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; @@ -28116,62 +23097,83 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"lhP" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"lhV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 19 }, -/area/lv522/indoors/a_block/medical) -"lhT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, -/area/lv522/indoors/a_block/security) -"lit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"lij" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/area/lv522/atmos/cargo_intake) -"liD" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lik" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"liK" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"liy" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"liz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/south) +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"liF" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"liJ" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) "liN" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ljd" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"ljm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"liX" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lji" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "ljq" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, @@ -28190,20 +23192,17 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) -"ljQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"ljW" = ( +"ljB" = ( +/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"lkh" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "lkj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28211,62 +23210,79 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"lkl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"lkn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "lko" = ( /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"lkr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock"; - welded = 1 +"lkC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/tool/pen/blue/clicky, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_x = -9; + pixel_y = 9 }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lkG" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"llA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/kitchen) -"llG" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"lkO" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lkT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"llJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"llm" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"llw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -3 }, -/area/lv522/atmos/way_in_command_centre) -"llM" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"llP" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"llS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "llU" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/sand_white/layer0, @@ -28281,73 +23297,26 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"lmo" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"lmj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"lms" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"lmp" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"lmu" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"lmz" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lmA" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"lmE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"lmF" = ( +"lmH" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_x = 16; - pixel_y = 16 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - pixel_x = -2; - pixel_y = -6; - stat = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "lmJ" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/plating, @@ -28361,57 +23330,36 @@ "lmY" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor/south) -"lnd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +"lnb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"lnj" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"lnC" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"lnF" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"lng" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/atmos/filt) -"lnH" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"lnq" = ( /obj/structure/surface/table/almayer, -/obj/item/ore/gold, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"lnK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 7 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"lny" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"lnG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "lnL" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -28427,12 +23375,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"lnU" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/filt) "lol" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -28441,73 +23383,62 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"lot" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) -"loB" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"loD" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"loS" = ( -/obj/structure/bed/chair{ - dir = 8 +"los" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"loV" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"loX" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lpc" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"lpi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"lph" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo2"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"lpn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "lpq" = ( /obj/structure/bed/stool, /obj/item/prop/alien/hugger, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"lpt" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "lpy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) +"lpD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "lpH" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -28515,6 +23446,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"lpJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"lpR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lpW" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"lpX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "lpY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -28527,99 +23488,91 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"lqL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"lqs" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"lqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"lqv" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/cargo_intake) -"lrd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lqI" = ( +/turf/open/floor/plating, +/area/lv522/outdoors/w_rockies) +"lqU" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"lqV" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/south) -"lrh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed{ + can_buckle = 0 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "lrm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"lrr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"lrt" = ( +"lrT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security) -"lrG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"lrV" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) -"lrJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"lrM" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/reactor_garage) -"lrQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lsf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"lsa" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"lsc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "22" }, -/area/lv522/indoors/a_block/admin) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lsy" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "lsD" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -28634,41 +23587,40 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lsR" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"lsX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"lte" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "ltf" = ( /obj/structure/platform{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"ltl" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "lty" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"ltB" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "ltC" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28676,6 +23628,40 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"ltD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"ltF" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"ltX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lub" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"luc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) "lui" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28683,13 +23669,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"lul" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) "lum" = ( /obj/structure/platform, /obj/structure/platform{ @@ -28697,6 +23676,13 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) +"luN" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"luW" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "lvb" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -28707,133 +23693,84 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lvl" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe, -/obj/item/tool/crowbar, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"lvF" = ( -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +"lvm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"lvn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/t_comm) +"lvs" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "lvH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"lvN" = ( -/obj/structure/fence, +"lwp" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lwN" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/outdoors/nw_rockies) -"lvX" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"lwW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"lwc" = ( -/obj/structure/prop/vehicles{ - icon_state = "truck_damaged" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"lwm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"lwr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"lwv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"lwH" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 15 - }, -/obj/item/frame/table/almayer{ - pixel_x = 10; - pixel_y = 11 - }, -/obj/item/frame/table/almayer{ - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"lwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lwZ" = ( +/obj/item/ammo_box/magazine/m4ra/ap/empty, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lwZ" = ( -/obj/item/ammo_box/magazine/m4ra/ap/empty, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, +"lxg" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"lxj" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"lxp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"lxG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"lxI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +"lxi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"lxA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"lxJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lxK" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) "lxL" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) @@ -28841,12 +23778,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) -"lxW" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) +"lxR" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "lxZ" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -28859,208 +23794,87 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lyu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" +"lyt" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) -"lyD" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"lyw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_street) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"lyF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "lyP" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"lyQ" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"lzb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +"lzc" = ( +/obj/vehicle/powerloader{ dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"lze" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"lzk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Post Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"lzl" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lzv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "lzw" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"lzA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/clothing/suit/storage/apron/overalls{ - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) "lzB" = ( /obj/structure/surface/rack, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"lzP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) "lzU" = ( /obj/structure/platform{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"lzV" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"lzW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "lAa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"lAj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"lAk" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) "lAm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"lAn" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"lAA" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"lBe" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"lBr" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) -"lAD" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lAK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lAS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lBd" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"lBj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"lBl" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"lBu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) "lBw" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -29068,20 +23882,73 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"lBC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) "lBE" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"lBL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"lBO" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"lBW" = ( +/turf/open/floor/coagulation/icon8_0, +/area/lv522/oob) +"lCb" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"lCc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/engine, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"lCd" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lCe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"lCg" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ + layer = 4.4; + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) "lCh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -29090,213 +23957,151 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lCj" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"lCi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"lCn" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lCk" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"lCm" = ( /obj/structure/stairs/perspective{ - dir = 10; + dir = 1; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"lCp" = ( +/obj/structure/coatrack{ + pixel_x = 12; + pixel_y = 24 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"lCx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/coatrack{ + pixel_x = 1; + pixel_y = 1 }, -/area/lv522/indoors/a_block/security) -"lCD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_y = 5 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 10; + pixel_y = 27 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"lCB" = ( +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "lCH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) -"lCQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +"lCM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/outdoors/colony_streets/north_west_street) -"lDc" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"lCO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/m56d_hmg{ - dir = 8 +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lDf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) -"lDk" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"lDn" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/lv522/atmos/way_in_command_centre) -"lDr" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lDG" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lDH" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv522/atmos/east_reactor/south) -"lDC" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lDK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"lDL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/security) -"lDE" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"lDP" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"lEh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"lEx" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"lEP" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"lDN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/east_reactor/south) -"lDU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"lEb" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_3"; - pixel_x = -16; - req_access = null - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"lEd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"lEX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"lEk" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"lEF" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"lER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"lEZ" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"lFa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"lFd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"lFk" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"lFp" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 1 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) -"lFt" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"lFM" = ( -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"lFK" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/squares, +/area/lv522/oob) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -29309,107 +24114,73 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"lGv" = ( -/obj/structure/machinery/light{ - dir = 1 +"lGj" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) +"lGm" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "102" }, -/obj/effect/decal/cleanable/dirt, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lGF" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"lGx" = ( -/obj/item/trash/uscm_mre, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/obj/item/reagent_container/food/snacks/grown/deathberries{ + pixel_y = 9 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) -"lGA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"lGN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) -"lGW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"lHk" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/lv522/indoors/c_block/bridge) -"lHa" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/indoors/a_block/admin) -"lHd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; - pixel_y = -11 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -2; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"lHh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/lv522/indoors/c_block/cargo) -"lHl" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = -4 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lHp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; pixel_y = 5 }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "lHu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal{ @@ -29423,12 +24194,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"lHH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_2/ceiling) "lHL" = ( /obj/structure/bed/chair{ dir = 1 @@ -29438,11 +24203,11 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"lHS" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) +"lHT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "lHV" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, @@ -29453,40 +24218,6 @@ /obj/item/reagent_container/food/drinks/flask/marine, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lId" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"lIu" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"lIB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "lIR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -29496,48 +24227,32 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"lIY" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"lJe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"lJi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) "lJl" = ( /obj/structure/platform_decoration, /turf/open/gm/river, /area/lv522/atmos/filt) -"lJq" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"lJU" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"lKi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"lJt" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) -"lKl" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "lKu" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -29549,110 +24264,102 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"lKC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"lKF" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/lv522/indoors/a_block/admin) -"lKH" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" +"lKD" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"lKW" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"lLf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/golden_cup{ + pixel_y = 9 }, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "lLl" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"lLp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"lLu" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "lLA" = ( /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"lLL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"lMF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +"lLD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/atmos/east_reactor/south) -"lMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"lLE" = ( +/obj/structure/largecrate, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"lMI" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "62" +/area/lv522/landing_zone_1) +"lLQ" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"lML" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"lMg" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/area/lv522/indoors/b_block/hydro) -"lMN" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"lMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/lv522/atmos/east_reactor/south) -"lMT" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"lMq" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"lMZ" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"lMz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/medical/glass) -"lNb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Wildcatters Office"; - panel_open = 1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"lMD" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"lMH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "lNf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -29664,16 +24371,6 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"lNm" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "lNs" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -29688,30 +24385,40 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"lNI" = ( -/obj/item/ammo_magazine/m56d, -/obj/structure/pipes/standard/manifold/hidden/green{ +"lNG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"lNT" = ( +/obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"lNW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) -"lNU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/roller, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"lOb" = ( +/obj/structure/machinery/light{ + pixel_x = 16 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"lOg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"lOh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) "lOi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -29719,32 +24426,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"lOk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "lOq" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"lPa" = ( -/obj/structure/machinery/optable, -/obj/structure/pipes/vents/pump, +"lOz" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"lOF" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) +"lOG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/medical) +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"lOQ" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "lPf" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -29755,27 +24468,43 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) +"lPg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lPo" = ( +/obj/item/prop/alien/hugger, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "lPq" = ( /obj/structure/platform{ dir = 4 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"lPv" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) -"lPT" = ( -/obj/structure/bed/chair{ +"lPC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lPG" = ( +/obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"lPS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "lPY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -29790,15 +24519,28 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"lQA" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) +"lQh" = ( +/obj/structure/prop/vehicles/crawler, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"lQv" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"lQw" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"lQx" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"lQL" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"lQO" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "lQS" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -29807,6 +24549,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"lQT" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "lRi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29815,46 +24564,47 @@ pixel_x = -12; pixel_y = -1 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"lRn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"lRx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"lRs" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"lRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 +/obj/structure/barricade/metal{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"lRD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lRF" = ( /obj/structure/girder, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"lRY" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lSc" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lSf" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "lSg" = ( /obj/structure/surface/table/almayer, /obj/item/tool/warning_cone{ @@ -29871,35 +24621,30 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lSl" = ( -/obj/structure/barricade/wooden, +"lSh" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"lSp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"lSq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"lSs" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" + name = "\improper Family Dormitories" }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "lSF" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"lTc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "lTd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -29911,28 +24656,23 @@ /obj/structure/girder, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"lTj" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" +"lTL" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/mining) -"lTl" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"lTM" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"lTP" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -29945,14 +24685,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"lUf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) "lUh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -29969,19 +24701,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"lUo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "lUv" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"lUy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"lUz" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "24" }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "lUJ" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -29992,15 +24727,6 @@ "lUK" = ( /turf/open/floor/prison, /area/lv522/outdoors/n_rockies) -"lUR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "lUV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -30008,15 +24734,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"lVe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "lVp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen/glass) -"lVs" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "102" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"lVx" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "lVA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/souto{ @@ -30029,79 +24759,71 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"lVD" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"lVK" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"lVV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"lVY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"lVC" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"lVZ" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +"lVE" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"lWa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/clothing/gloves/boxing/blue{ + pixel_x = 5; + pixel_y = -6 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "lWf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"lWh" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 +"lWu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/kitchen/glass) -"lWj" = ( -/obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"lWm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"lWw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"lWB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"lWO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/security/glass) +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"lWR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "lWW" = ( /obj/item/trash/crushed_cup{ pixel_x = -4; @@ -30109,35 +24831,55 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"lXC" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"lXE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/atmos/east_reactor) -"lXQ" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"lXN" = ( +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) +"lXO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "lXY" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"lYg" = ( +"lYd" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/stairs/perspective{ - dir = 6; icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lYj" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"lYk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "lYG" = ( /obj/structure/platform_decoration{ dir = 8 @@ -30155,13 +24897,6 @@ }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"lYL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) "lYR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/decal/cleanable/dirt, @@ -30170,99 +24905,73 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"lYX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "62" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "lZc" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lZq" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"lZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"lZO" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 3 +"lZt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = -7; +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lZx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = -3; pixel_y = 9 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"lZY" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"mad" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"maj" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/reagent_container/hypospray/autoinjector/kelotane{ + pixel_y = -3 }, -/area/lv522/atmos/east_reactor/south) -"mam" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"lZG" = ( +/obj/structure/platform_decoration{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/landing_zone_2/ceiling) -"max" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"may" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/b_block/hydro) -"maE" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"mab" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"mah" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"maw" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Casino"; + pixel_x = 16 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"max" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) "maF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30270,14 +24979,30 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mbq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"maH" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"maV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"maW" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"maY" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"mbj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "mbr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -30294,45 +25019,24 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) -"mbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "mbx" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"mbF" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mbG" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "wood" +"mbC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mbH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"mbM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) "mbO" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 20 @@ -30346,76 +25050,89 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mcf" = ( -/obj/structure/surface/table/reinforced/almayer_B, +"mbR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/lv522/indoors/lone_buildings/chunk) -"mco" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"mcC" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"mbZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mcm" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) -"mcE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"mco" = ( +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"mcG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"mcz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"mcK" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"mcO" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ - layer = 4.4; - pixel_x = 13; - pixel_y = 19 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mcM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_x = -6; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/south_street) +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"mcQ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_2/ceiling) "mdp" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/tool/weldingtool, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"mdr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) "mdD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) +"mdE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mdO" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "meb" = ( /obj/structure/largecrate/random{ layer = 2.9 @@ -30426,85 +25143,98 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/filt) -"men" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) -"meq" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms/glass) -"mev" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"mfh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"mej" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/hallway) -"mfF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing{ - pixel_x = -5; - pixel_y = 5 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"mes" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/item/clothing/gloves/boxing/blue{ - pixel_x = 5; - pixel_y = -6 +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"mez" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/area/lv522/indoors/a_block/fitness) -"mfS" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"meY" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"mfa" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"mfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"mfm" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "28" }, -/area/lv522/indoors/c_block/casino) -"mfV" = ( -/obj/structure/machinery/light{ - dir = 8 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mfu" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mfW" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "mgb" = ( /obj/structure/largecrate/random/mini{ pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"mgk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 8 +"mgm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/item/device/flash{ + pixel_y = 1 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"mgy" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"mgz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Break Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "mgB" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/vial, @@ -30514,24 +25244,38 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"mhn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/light{ - dir = 1 +"mgP" = ( +/obj/item/stack/sheet/metal, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 6 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mhp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"mhq" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/indoors/a_block/security/glass) -"mhs" = ( -/obj/item/prop/colony/used_flare, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mhz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) "mhT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30551,33 +25295,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"mis" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" +"miE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/computers/sensor_computer3{ + density = 0; + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/south) -"miz" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"miR" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"miS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"miH" = ( -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"miX" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"miW" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "miZ" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -30585,22 +25331,6 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) -"mji" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) -"mjq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) "mjs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30611,87 +25341,45 @@ /obj/structure/dispenser/oxygen, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"mjC" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"mjE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) "mjF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"mjR" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/n_rockies) -"mjT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +"mjP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -6; + pixel_y = 15 }, +/obj/item/trash/plate, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"mjW" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"mka" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/fitness) -"mjY" = ( -/obj/item/shard{ - icon_state = "medium"; - pixel_x = -5; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) -"mkb" = ( -/obj/structure/prop/server_equipment/yutani_server{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"mkf" = ( +/obj/structure/holohoop{ density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/east_reactor/south) -"mkd" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mkh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + pixel_y = 27 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/toy/beach_ball/holoball{ + pixel_x = 5; + pixel_y = -13 }, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "mkm" = ( /obj/structure/closet/crate, /obj/effect/decal/warning_stripes{ @@ -30700,20 +25388,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"mkJ" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mkT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/op_centre) +"mkv" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"mkx" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) "mkW" = ( /obj/structure/bed/chair{ dir = 4 @@ -30726,219 +25407,101 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"mlp" = ( -/obj/structure/machinery/computer3/server/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"mlf" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" }, -/area/lv522/atmos/east_reactor/south) -"mly" = ( -/obj/structure/closet/firecloset/full, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mlu" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "mlE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"mlO" = ( -/obj/structure/bed/chair{ - can_buckle = 0; +"mlL" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"mlW" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/filt) +"mlX" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"mlQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/gun/smartgunner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"mlR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"mlY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"mma" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"mlZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"mmh" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"mmj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"mmv" = ( -/obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/structure/pipes/vents/pump, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"mmu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"mmw" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"mmC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"mmH" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"mna" = ( +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_west_street) -"mmE" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"mnb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"mnl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 2 }, -/area/lv522/outdoors/colony_streets/south_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "mnr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"mns" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) "mnw" = ( /obj/item/clothing/suit/storage/marine/M3S, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"mnx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"mnz" = ( -/obj/structure/platform_decoration{ - dir = 8 +"mnG" = ( +/obj/structure/fence{ + layer = 2.9 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/garden) -"mnN" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"mnQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "S" }, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_east_street) +"mnP" = ( +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "mnU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/l42a/extended{ @@ -30946,137 +25509,107 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"mnX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +"moh" = ( +/obj/structure/closet/crate/freezer{ + layer = 3 }, -/area/lv522/atmos/filt) -"moe" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/oob/w_y_vault) -"moz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"moo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"moq" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = -8; + pixel_y = 11 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = -2; + pixel_y = -13 }, -/area/lv522/landing_zone_1/ceiling) -"moI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = 9; + pixel_y = 8 }, -/obj/structure/filingcabinet{ - density = 0; +/obj/item/tool/crowbar/red{ pixel_x = 8; - pixel_y = 20 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + pixel_y = 8 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "moO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"moZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"mpo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 +"mpd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 }, -/area/lv522/atmos/cargo_intake) -"mpr" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mpB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"mpI" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mpL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/operating, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"mpK" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "mpN" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.2 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"mpQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"mpU" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"mqc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"mqi" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +"mqg" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "blue_plate" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "mqk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -31088,31 +25621,12 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"mql" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"mqu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ +"mqr" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"mqv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "mqx" = ( /turf/open/gm/river, /area/lv522/atmos/sewer) @@ -31128,31 +25642,43 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"mqE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "mqH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"mrc" = ( +"mqZ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/north) +"mre" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"mrD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mrp" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"mrE" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "white_cyan1" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo/glass) -"mrL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/platform/stair_cut, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "mrM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31160,26 +25686,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"msb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +"mrY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mse" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"msf" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) "msj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -31189,20 +25704,13 @@ /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"msp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"msr" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"mso" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) "msB" = ( /obj/item/reagent_container/food/snacks/stewedsoymeat{ pixel_y = -6 @@ -31216,20 +25724,28 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"msQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"msG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/n_rockies) -"mto" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"msI" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"msY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"mth" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "mtt" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" @@ -31237,14 +25753,60 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"mtx" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) "mty" = ( /obj/structure/bed/chair, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"mtA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; + name = "\improper UA Prepared Meal (cornbread)"; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"mtG" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "mtI" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) +"mtQ" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/command_centre) +"mtU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"mtW" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"mtY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "mua" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/filt) @@ -31255,82 +25817,112 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"muP" = ( +"mut" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"mux" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"muV" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"mvd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"muM" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/obj/structure/platform{ +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"muO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"muR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"mvi" = ( +/obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"mvn" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"mvo" = ( +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"mvp" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"mvA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "mvB" = ( /obj/item/prop/alien/hugger, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"mvI" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - icon_state = "plate" +"mvC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/atmos/reactor_garage) -"mvP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"mvR" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"mvU" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/corpo/glass) -"mwf" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"mvW" = ( +/obj/structure/sink{ + pixel_y = 26 }, -/area/lv522/atmos/cargo_intake) -"mwh" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/cheesie, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"mvZ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" }, -/area/lv522/indoors/a_block/admin) -"mwk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/barricade/handrail{ + dir = 4 }, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"mwd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "mwn" = ( /obj/structure/largecrate/random/barrel/white, /obj/effect/decal/cleanable/dirt, @@ -31348,94 +25940,97 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"mwT" = ( -/obj/structure/prop/dam/truck, -/obj/structure/prop/holidays/wreath{ - layer = 4.1; - pixel_x = -1; - pixel_y = 16 - }, -/turf/open/floor/plating{ - icon_state = "platebot" +"mwL" = ( +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"mwV" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "mwX" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mxo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"mxp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "browncorner" +"mxc" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) -"mxt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"mxf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "26" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/c_block/cargo) -"mxz" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"mxv" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 }, -/area/lv522/indoors/b_block/hydro) -"mxD" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"mxx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) "mxO" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, /turf/open/floor/plating, /area/lv522/indoors/c_block/t_comm) -"myc" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"mxU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mxV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"myi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"mys" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen/glass) -"myf" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"myu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"myx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/b_block/hydro) +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "myz" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"myC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "myE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -31443,62 +26038,59 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"myP" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"myQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"myF" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "myV" = ( /obj/item/clothing/suit/storage/marine/light, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"myZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 +"mzc" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"mzs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_x = 16; + pixel_y = 16 }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6 +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + pixel_x = -2; + pixel_y = -6; + stat = 2 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"mzN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"mzR" = ( +/obj/item/prop/colony/used_flare, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/area/lv522/landing_zone_1/ceiling) -"mzP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 1 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "mzX" = ( /obj/structure/bed/chair{ @@ -31510,20 +26102,18 @@ /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mAA" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/c_block/cargo) -"mAC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"mAn" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mAw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "mAD" = ( /obj/structure/closet/secure_closet/detective, /turf/open/floor/wood, @@ -31538,17 +26128,50 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"mAJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"mAK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"mAQ" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.2 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) "mAR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"mAS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "mAW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"mAX" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "mBc" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -31556,153 +26179,135 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mBr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, +"mBe" = ( +/obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mBy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"mBv" = ( +/obj/structure/platform_decoration{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "mBF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bar) -"mBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" - }, -/area/lv522/atmos/way_in_command_centre) -"mCl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mCm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) +"mBK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"mCc" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"mCn" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "mCq" = ( /obj/item/storage/beer_pack, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"mCx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"mCr" = ( +/obj/structure/machinery/autolathe, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "mCA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"mCQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +"mCD" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/atmos/filt) +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"mDd" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) +"mDe" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"mDn" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"mDp" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "mDw" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"mDz" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"mDT" = ( -/obj/structure/largecrate/random/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"mDD" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_2/ceiling) -"mDX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mDJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/fitness/glass) -"mEg" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"mDM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/atmos/filt) -"mEi" = ( -/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"mDU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/dorms/glass) -"mEn" = ( -/obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"mEd" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/indoors/c_block/garage) -"mEp" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"mEq" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"mEu" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "mEx" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -31711,40 +26316,35 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"mEB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"mEG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) -"mFe" = ( +"mEC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"mET" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/cargo_container/grant/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"mFg" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = -8; - pixel_y = 14 + dir = 1 }, -/obj/item/clothing/accessory/armband/engine, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mEV" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"mFk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mFn" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "mFA" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -31768,48 +26368,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/reactor_garage) -"mGD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"mGL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mGH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/nw_rockies) -"mGN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"mGY" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"mHa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "mHo" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"mHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/device/radio/off{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "mHv" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, @@ -31819,108 +26402,61 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) -"mHP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) +"mHD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "mHU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"mHZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/corpo/glass) -"mIa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"mIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"mIO" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"mIU" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +"mIb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) +"mIf" = ( +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"mIs" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/indoors/c_block/mining) -"mIV" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/admin) -"mJs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"mJt" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/south_west_street) +"mJc" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_y = 5 }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mJo" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) -"mJF" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"mJO" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "mJQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -31943,30 +26479,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"mJZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"mKu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2/ceiling) -"mKA" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"mKl" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan4/west, +/area/lv522/indoors/a_block/medical) +"mKw" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "mKC" = ( /obj/item/toy/plush/farwa{ desc = "A Farwa plush doll. Once soft and comforting now just really wet."; @@ -31974,51 +26494,14 @@ }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"mKK" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"mKN" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"mKQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"mLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"mLp" = ( -/turf/open/floor/coagulation{ - icon_state = "8,0" - }, -/area/lv522/oob) -"mLI" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +"mKU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mLN" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "mLO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -32048,27 +26531,43 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mLX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +"mMn" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "brown" + pixel_x = -2; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/south) -"mMj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/atmos/east_reactor/south) -"mMr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/corporate, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/bed{ + can_buckle = 0 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mMo" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "mMv" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -32079,133 +26578,112 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mMI" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - icon_state = "wood" +"mMP" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"mMQ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mNa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, -/area/lv522/indoors/a_block/hallway) -"mMU" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/filt) -"mMX" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "mNc" = ( /obj/structure/machinery/floodlight, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"mNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/strata{ - icon_state = "blue1" +"mNe" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"mNj" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/dorm_north) +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "mNm" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/east) -"mNt" = ( +"mNr" = ( /obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/item/trash/plate, /obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 4; - pixel_y = 15 + pixel_x = -10; + pixel_y = 12 }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -3; - pixel_y = 7 +/obj/item/reagent_container/food/snacks/wishsoup, +/obj/item/tool/kitchen/utensil/spoon{ + layer = 2.9; + pixel_x = 10; + pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"mNy" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"mNC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/medical/glass) -"mNI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"mNF" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 }, -/area/lv522/oob/w_y_vault) -"mNR" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"mNH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"mNN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "mNX" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"mOf" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 3 +"mOd" = ( +/obj/structure/platform_decoration{ + dir = 1 }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) +"mOq" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = -8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"mOh" = ( -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"mOl" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"mOs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/security) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "mOy" = ( /obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/blood/oil, @@ -32216,36 +26694,12 @@ "mOE" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/north_street) -"mOG" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) "mOI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"mOJ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "mOO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -32257,70 +26711,40 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"mOP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +"mOV" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) -"mOQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) "mPc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"mPe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"mPd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "mPj" = ( /turf/closed/wall/strata_outpost, /area/lv522/atmos/sewer) "mPr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"mPs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"mPy" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"mPz" = ( -/turf/open/floor/coagulation{ - icon_state = "0,0" +"mPA" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/area/lv522/oob) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "mPB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -32328,33 +26752,26 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"mPL" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"mPQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 +"mPK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Post Office" }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) +"mPM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "mPR" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"mPV" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "mPY" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/xeno_spawn, @@ -32366,28 +26783,6 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/filt) -"mQh" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"mQm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) "mQo" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -32400,27 +26795,20 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"mQt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"mQv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) "mQw" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/gm/river, /area/lv522/atmos/filt) +"mQx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "mQy" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -32434,35 +26822,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mRf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread, +"mQS" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mQX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"mRg" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Sewer"; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/atmos/sewer) -"mRh" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mRc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "mRs" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, @@ -32475,20 +26849,26 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"mRM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "mRO" = ( /obj/structure/prop/structure_lattice, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) +"mRQ" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "mSa" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"mSc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) "mSe" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) @@ -32501,47 +26881,53 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) -"mSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mTa" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"mSo" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 13 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"mTd" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"mSp" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms/glass) +"mSy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"mSI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/area/lv522/atmos/west_reactor) -"mTo" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -7; + pixel_y = 4 }, -/area/lv522/atmos/outdoor) -"mTx" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/dorms) +"mSJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/cpr_dummy, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"mSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"mTA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "mTE" = ( /obj/structure/platform/strata{ dir = 8 @@ -32561,6 +26947,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) +"mTQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mTX" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) "mTY" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -32579,91 +26981,54 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"mUj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) "mUl" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"mUo" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/prop/invuln{ - desc = "big pile energy."; - icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; - icon_state = "pile_0"; - layer = 2.9; - name = "barrel pile"; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mUr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"mUG" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/garden) -"mUS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) -"mVi" = ( -/obj/structure/platform, +"mUn" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"mUr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"mUH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"mUJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"mVb" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 }, -/area/lv522/indoors/a_block/garden) -"mVj" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mVd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/faxmachine{ + pixel_y = 2 }, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"mVg" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "mVm" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, @@ -32678,16 +27043,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"mVx" = ( +"mVA" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "mVE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -32697,37 +27056,28 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"mVH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"mWa" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/toilet) -"mWc" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/nw_rockies) +"mVN" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"mVT" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/east_reactor/south) "mWd" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) +"mWj" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"mWm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "mWw" = ( /obj/item/prop/colony/proptag{ desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow" @@ -32740,51 +27090,99 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"mWZ" = ( -/obj/item/tool/crowbar, +"mWO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"mWS" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"mWY" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mXa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mXv" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"mXE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"mXI" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"mXn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"mXy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/radio/off{ - pixel_x = 6; - pixel_y = 7 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"mXU" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 }, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/b_block/bar) -"mXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"mXW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/area/lv522/atmos/cargo_intake) -"mYo" = ( -/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"mYq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"mYL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"mYP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "white_cyan1" + id = "Reactor_entry_2" }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "mYS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32795,12 +27193,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"mZj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"mZb" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -11; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"mZf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"mZq" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "49" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mZr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "mZs" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -32810,66 +27229,20 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"mZE" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"mZJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"mZK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_x = 16; - pixel_y = 7 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"mZH" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) +"mZL" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"mZM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mZN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "mZQ" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"mZU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) "mZW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/river, @@ -32880,57 +27253,22 @@ }, /turf/open/gm/river, /area/lv522/atmos/filt) -"nat" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"naw" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"naa" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"naj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"naq" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, +/turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "nax" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"naB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Service Tunnel"; - pixel_y = 24 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"naC" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) "naH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -32938,6 +27276,12 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"naI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "naM" = ( /obj/item/explosive/grenade/high_explosive/m15{ pixel_x = 8 @@ -32948,60 +27292,35 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) -"naN" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"naS" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"naZ" = ( -/obj/structure/platform_decoration{ +"naQ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"nbg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nbe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"nbh" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "nbj" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/lv522/atmos/filt) -"nbk" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/lv522/indoors/a_block/admin) "nbn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/largecrate/random, @@ -33014,101 +27333,85 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"nbB" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"nbD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) "nbE" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nbO" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "86a" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nbT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +"nbL" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) -"ncg" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_street) -"ncs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"nbS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/north_street) -"ncv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/kitchen/damage) +"nbW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"ncj" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"ncz" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/outdoors/w_rockies) +"ncy" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "ncA" = ( /obj/item/clothing/suit/storage/marine/medium, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) +"ncD" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/clothing/under/suit_jacket/stowaway, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "ncJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"ncS" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ncM" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/outdoors/nw_rockies) +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"ncN" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) +"ncQ" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"ncW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"ncY" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ncZ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "ndb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -33116,84 +27419,88 @@ "ndf" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen/damage) -"nds" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +"ndk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "ndP" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"ndZ" = ( -/obj/structure/cargo_container/kelland/right, -/obj/item/seeds/riceseed{ - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"ndV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"nee" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"ndW" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ndY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"neb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "nel" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"nez" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"neI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"neo" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"neq" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"neD" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "33" }, -/area/lv522/atmos/way_in_command_centre) -"neO" = ( -/obj/structure/machinery/light{ +/area/lv522/landing_zone_forecon/UD6_Tornado) +"neN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 7; + pixel_y = 10 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"neX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 7 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"neU" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/b_block/bar) +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"neY" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "nfe" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -33204,22 +27511,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"nff" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "nfk" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -33227,24 +27518,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"nfm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"nfq" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "103" +"nfC" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nfE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) "nfP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33266,12 +27549,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"ngh" = ( +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "ngo" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/plating, /area/lv522/atmos/filt) +"ngv" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ngx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33279,25 +27574,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ngK" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/garden) -"ngL" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 6 +"ngB" = ( +/obj/structure/surface/table/almayer, +/obj/item/grown/nettle/death{ + pixel_x = -3; + pixel_y = 7 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/item/seeds/glowshroom, +/obj/item/seeds/glowshroom{ + pixel_x = -6; + pixel_y = 5 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "ngY" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) @@ -33305,18 +27594,45 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nhi" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"nhe" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"nhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nhh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"nhq" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "nhs" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"nhu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "nhD" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -33324,69 +27640,48 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"nhZ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) -"nia" = ( -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = 5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - layer = 3.1; - pixel_x = -3; - pixel_y = 12 +"nhI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"nhR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) +"nie" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 }, -/area/lv522/indoors/b_block/bar) +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "niu" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"niA" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/landing_zone_1) -"niE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"niz" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" }, -/area/lv522/indoors/a_block/hallway) -"niL" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"niB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"niT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "niU" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green{ @@ -33394,120 +27689,54 @@ }, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"njd" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"nja" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "njm" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"njn" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"njF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"njH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"njW" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"nkm" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"nkt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"nku" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 11; +"nka" = ( +/obj/item/prop/colony/canister{ + layer = 3.1; pixel_y = 16 }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 4; - pixel_y = -6 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"nkb" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) -"nkv" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"nkp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/outdoors/nw_rockies) -"nky" = ( -/obj/structure/machinery/power/apc/weak, -/turf/open/floor/prison{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nkA" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"nkX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/south_street) -"nly" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "nlz" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -33517,43 +27746,14 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"nlO" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"nlR" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"nlI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"nlN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "nlV" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -33567,12 +27767,10 @@ /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nlY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) +"nmb" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "nmh" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -33580,78 +27778,70 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"nmt" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"nmi" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"nmn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) -"nmB" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"nms" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"nmA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"nmJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "nmK" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"nmL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Kitchen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) -"nmX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"nnj" = ( -/obj/structure/barricade/handrail/strata{ +"nmT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"nnx" = ( +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = 5 }, -/area/lv522/indoors/c_block/mining) -"nno" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -8; + pixel_y = -5 }, -/area/lv522/atmos/east_reactor) -"nnv" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -4; - pixel_y = -8 +/obj/structure/reagent_dispensers/beerkeg{ + layer = 3.1; + pixel_x = -3; + pixel_y = 12 }, -/obj/effect/decal/strata_decals/grime/grime3, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "nnz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -33659,6 +27849,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"nnA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "nnB" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -33671,35 +27866,77 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"nnG" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "mining_secure_blast_1"; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 +"nnE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"nnH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"nnZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"nob" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"noe" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nnW" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"noD" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"noh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"noy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"noG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/wood/wood_broken2, +/area/lv522/indoors/b_block/bar) +"noJ" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "68" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "noL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"noO" = ( +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "noT" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -33711,56 +27948,28 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"noV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"npb" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"npd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"npp" = ( -/obj/structure/girder, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = -8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv522/indoors/a_block/dorms) "npx" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution" }, /turf/open/floor/plating, /area/lv522/oob) -"npA" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light{ - dir = 1 +"npz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"npC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "npD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -33770,47 +27979,26 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"npI" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "npT" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"nqe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"npY" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"npZ" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/largecrate/supply/floodlights{ + layer = 3.1; + pixel_y = 9 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "nqo" = ( /obj/item/device/flashlight/lamp{ pixel_y = 13 @@ -33821,21 +28009,24 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"nqw" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nqy" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +"nqp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"nqv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"nqA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nqB" = ( /obj/structure/filtration/machine_96x96/indestructible{ icon_state = "distribution"; @@ -33843,69 +28034,40 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"nqE" = ( +"nqJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"nqN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"nqP" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 }, -/area/lv522/indoors/a_block/corpo/glass) -"nqQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"nqX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/pole/fancy_cane, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "nqY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) -"nrd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"nrh" = ( +"nrr" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/outdoor) -"nri" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "nru" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33916,80 +28078,79 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"nrA" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nrL" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/structure/machinery/light{ - dir = 8 +"nrE" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"nrJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"nrT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/corpo/glass) -"nsd" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"nsr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, +"nrR" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nsv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"nta" = ( -/obj/structure/machinery/light{ - dir = 8; - pixel_y = 16 +"nsG" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"nsK" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/outdoors/colony_streets/central_streets) +"nsR" = ( +/obj/item/ammo_box/magazine/misc/mre, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 }, -/area/lv522/indoors/b_block/hydro) -"nti" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"nsS" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ntd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"ntf" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "ntq" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -33998,13 +28159,17 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) -"ntK" = ( +"ntu" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"ntE" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "ntL" = ( /obj/item/stack/sheet/metal, /turf/open/floor/corsat, @@ -34015,60 +28180,42 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"ntQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ +"ntX" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"nua" = ( +/obj/item/stack/sheet/wood, +/obj/item/stack/rods, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"ntS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/c_block/bridge) -"ntT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "nud" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"nue" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"nuo" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" +"nus" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" }, -/area/lv522/indoors/a_block/dorm_north) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nuv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"nuB" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"nuD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "nuG" = ( /obj/structure/platform{ dir = 4 @@ -34089,184 +28236,102 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nuQ" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"nuU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) +"nuM" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) "nvd" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"nvt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"nvA" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"nvm" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "68" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/landing_zone_forecon/UD6_Tornado) "nvB" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) +"nvC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"nvJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "nvS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"nvV" = ( -/obj/structure/platform{ - dir = 1 +"nwd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "nwj" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms/glass) -"nwz" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"nwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/east_reactor/south) -"nwZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"nxb" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"nxj" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"nxF" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"nxO" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/machinery/vending/cola{ - layer = 3.1 +"nwB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"nwJ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "99" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"nxz" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) -"nxQ" = ( -/obj/structure/bed/chair/comfy{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nym" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"nyr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"nyy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/east_reactor/south) -"nye" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"nyD" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "nyJ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"nyM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"nzt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"nzK" = ( -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/oob) "nzR" = ( /obj/item/stack/sheet/metal, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/cargo_intake) -"nzU" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "nzZ" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -34280,16 +28345,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"nAu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "nAC" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -34300,18 +28355,82 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) +"nAN" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nAO" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"nAU" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"nAZ" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"nBd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "nBe" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"nBo" = ( +"nBh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"nBk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "nBs" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer2, @@ -34327,6 +28446,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"nBH" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"nBL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/janitorialcart, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "nBP" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, @@ -34339,42 +28475,39 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) +"nCg" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"nCj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "nCt" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"nCC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"nCF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob/w_y_vault) -"nCX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) -"nCZ" = ( -/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"nDl" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"nDc" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "nDn" = ( /obj/structure/bed/chair{ dir = 8 @@ -34393,21 +28526,6 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"nDz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"nDI" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/wy_chips_pepper, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) "nDM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/n_rockies) @@ -34415,39 +28533,46 @@ /obj/item/tool/wrench, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nDZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"nEd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"nDX" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"nDY" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ dir = 8; - pixel_y = -1 + icon_state = "p_stair_full" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"nEf" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"nEn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/prop/colony/canister{ + pixel_y = 11 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"nEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Medical"; + pixel_x = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"nEV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"nEq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "nEX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -34463,18 +28588,30 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) +"nFe" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nFj" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1) -"nFt" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"nFv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "nFN" = ( /obj/item/tool/weldingtool{ pixel_x = 6; @@ -34486,49 +28623,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nFO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"nFQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) "nGc" = ( /obj/effect/alien/resin/sticky, /turf/open/gm/river, /area/lv522/atmos/filt) -"nGe" = ( -/obj/structure/cargo_container/kelland/left, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"nGq" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"nGx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"nGg" = ( +/obj/item/trash/barcardine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"nGo" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "nGB" = ( /obj/structure/cargo_container/kelland/right, /obj/effect/decal/warning_stripes{ @@ -34544,88 +28654,91 @@ }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nGJ" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"nGU" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nHg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) -"nHi" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"nHA" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"nHM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nHT" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +"nGW" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"nHe" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"nHf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"nHv" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"nHI" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) +/obj/structure/closet/athletic_mixed, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"nHY" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/clothing/glasses/kutjevo, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "nIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"nIu" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"nIg" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"nIm" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"nIp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"nIF" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"nIs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" }, -/area/lv522/outdoors/colony_streets/north_street) -"nIJ" = ( -/obj/structure/surface/rack, -/obj/structure/barricade/handrail/strata{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"nIx" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Secure_Master_Armoury_2"; + name = "remote door-control" }, +/turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) +"nJm" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "nJr" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -34639,38 +28752,14 @@ "nJv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/lone_buildings/engineering) +"nJJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "nJV" = ( /obj/structure/noticeboard, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"nKh" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"nKj" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nKk" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) "nKm" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement, @@ -34684,6 +28773,21 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) +"nKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"nKD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "nKK" = ( /obj/structure/platform{ dir = 8 @@ -34694,25 +28798,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"nKS" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"nKU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) "nKZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34720,21 +28805,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"nLe" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"nLi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/soap, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) "nLm" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms) @@ -34750,73 +28820,37 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"nLF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nLW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" +"nLN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorm_north) -"nMc" = ( -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"nMd" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"nLX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"nMa" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"nMf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Community Office" }, -/area/lv522/indoors/lone_buildings/engineering) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "nMl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/atmos/reactor_garage) -"nMt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"nMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) -"nMz" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +"nMq" = ( +/obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "nMB" = ( /obj/structure/bed/chair{ dir = 4 @@ -34824,102 +28858,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"nMC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nMP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nMT" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 9 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/north_street) +"nMK" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "nMX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"nNf" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nNh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"nNi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"nMZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nNc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"nNy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) "nNz" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"nNA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"nNH" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) "nNL" = ( /obj/item/ammo_magazine/rifle, /obj/item/ammo_magazine/rifle{ @@ -34938,88 +28905,62 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"nNR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/donut/jelly{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"nOg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"nOl" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, +"nNO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"nOm" = ( -/obj/item/clothing/suit/storage/labcoat/officer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"nNY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"nOh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) "nOB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"nOI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"nOS" = ( -/obj/structure/platform_decoration{ +"nOG" = ( +/obj/structure/platform{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"nOH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"nON" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_street) -"nOT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nOO" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = 2 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"nOQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "nPb" = ( /obj/structure/platform, /obj/structure/platform{ @@ -35035,64 +28976,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"nPe" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "95" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nPf" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "nPo" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"nPu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"nPL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"nPN" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "28" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +"nPT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "nPV" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"nQa" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"nQn" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "nQu" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) @@ -35106,23 +29011,20 @@ /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"nQD" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "nQG" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"nQM" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"nQO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +"nQH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "nQQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -35138,32 +29040,18 @@ /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"nQX" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Security"; - pixel_x = -16 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"nQY" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "35" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"nRp" = ( +"nRk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"nRo" = ( /obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "nRs" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -35171,23 +29059,13 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"nRy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"nRJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"nRF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "nRK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -35196,69 +29074,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating, /area/lv522/atmos/filt) -"nRQ" = ( -/obj/structure/window_frame/strata, -/obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) -"nSk" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Corporate"; - pixel_y = 26 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"nSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"nSq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"nSA" = ( -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 5; - pixel_y = -13 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"nSC" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"nRP" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nSg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness) -"nSE" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"nSn" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "nSF" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -35269,16 +29098,24 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"nSN" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"nSY" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Fitness"; + pixel_y = 26 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "nTa" = ( /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) +"nTf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "nTg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -35286,10 +29123,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"nTj" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/oob/w_y_vault) "nTl" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/east_reactor) @@ -35302,17 +29135,19 @@ "nTv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"nTx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) "nTD" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"nTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "nTJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -35322,25 +29157,27 @@ /obj/structure/cargo_container/wy/left, /turf/open/floor/prison, /area/lv522/atmos/cargo_intake) -"nTX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"nTW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges/corpo) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "nUd" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor/prison, /area/lv522/landing_zone_1) -"nUD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +"nUe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/atmos/filt) +/mob/living/simple_animal/corgi/puppy, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"nUs" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) "nUF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 6; @@ -35358,116 +29195,55 @@ /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"nUV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"nVc" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"nVf" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"nVh" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_2"; - name = "treadmill switch"; - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"nVN" = ( -/obj/item/ammo_magazine/flamer_tank/empty, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"nVR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"nVW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/outdoor) -"nVX" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"nWl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) -"nWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"nWp" = ( +"nUW" = ( /obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/device/radio/off{ - pixel_x = -7; - pixel_y = 9 +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 }, -/obj/item/device/radio/off{ +/obj/item/storage/box/handcuffs{ pixel_x = 5; - pixel_y = 13 + pixel_y = 5 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"nVc" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"nVd" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/prop/almayer/computers/sensor_computer2{ + layer = 2.0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nVe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"nVq" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nVz" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nVN" = ( +/obj/item/ammo_magazine/flamer_tank/empty, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) "nWq" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -35479,64 +29255,44 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"nWD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +"nWy" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"nWW" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/executive) -"nWG" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 11; - pixel_y = 16 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"nWI" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"nWK" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nXi" = ( +/obj/item/shard{ + icon_state = "medium" }, -/obj/structure/platform{ +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"nXr" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"nXl" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -1 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/prison{ +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nXw" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "greenfull" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "nXC" = ( /obj/item/tool/wrench, /obj/structure/platform_decoration{ @@ -35544,51 +29300,14 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"nXI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"nXK" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +"nXM" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "nXO" = ( /obj/item/ammo_box/magazine/misc/flares, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"nXV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/lv522/indoors/lone_buildings/chunk) "nXX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -35596,60 +29315,63 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"nXY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ +"nYy" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/c_block/cargo) -"nYv" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/hallway) -"nYz" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "nYF" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) +"nYK" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) "nYM" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"nYQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"nYN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nYR" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"nYU" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "nYW" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 1; @@ -35662,59 +29384,42 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"nZv" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"nZf" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 1 }, -/area/lv522/indoors/a_block/fitness) -"nZx" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/small_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 1 }, -/area/lv522/indoors/c_block/mining) -"nZF" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"nZI" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) -"nZN" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "39" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"nZO" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"oaa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"oah" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" }, -/area/lv522/outdoors/n_rockies) -"oaj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/cargo_intake) -"oan" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"oai" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "oaq" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -35726,16 +29431,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"oaF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "oaH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -35743,142 +29438,91 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"oaK" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/south_street) "oaN" = ( /obj/structure/cargo_container/kelland/right{ layer = 3.5 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"obb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"oaO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/fitness) -"obe" = ( -/obj/vehicle/powerloader{ +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"obv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"obt" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"obF" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"occ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"obY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"ocd" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "ocn" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"ocw" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"odg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plaincakeslice{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/plaincakeslice, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "kitchen" +"ocq" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Southeast Landing Zone" }, -/area/lv522/indoors/a_block/kitchen) -"odi" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, +/turf/open/floor/plating, +/area/shuttle/drop2/lv522) +"ocE" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"odt" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"odQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"odT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"ocI" = ( +/obj/structure/closet/crate/explosives, +/obj/item/storage/box/explosive_mines, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ocW" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"odX" = ( -/obj/structure/prop/invuln/minecart_tracks, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"odh" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"odZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"oem" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/east_reactor/south) +"odi" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"odB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"odG" = ( +/obj/structure/pipes/vents/pump, +/obj/vehicle/powerloader, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"odH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "oet" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1 @@ -35886,64 +29530,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"oew" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"oeL" = ( -/obj/structure/bed/chair{ - can_buckle = 0; +"oev" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"oeK" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"oeN" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"oeT" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "oeU" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -35954,15 +29557,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"ofd" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges) +"oeY" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "ofi" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) +"ofs" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "ofy" = ( /obj/structure/bed/chair/wood/normal{ dir = 4; @@ -35970,48 +29580,28 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"ofS" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ofX" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9; - pixel_y = 12 +"ofI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"ofV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2) +"ogk" = ( /turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ofZ" = ( -/obj/structure/platform{ +/area/lv522/landing_zone_1/tunnel/far) +"ogu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"oga" = ( -/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"ogf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ogA" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/dirt, @@ -36032,98 +29622,51 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"ogE" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"ogK" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"ogT" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" +"ogU" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ogY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 }, -/area/lv522/indoors/c_block/mining) -"ogX" = ( -/obj/structure/platform{ - dir = 8 +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ohb" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ohc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"ohp" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"ohI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"ogZ" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"oht" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"ohw" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"ohL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"ohP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ohT" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"ohX" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/kitchen/damage) +"oie" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "oig" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -36134,18 +29677,22 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"oik" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/garden) "oim" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"oin" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"oio" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "oiA" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -36154,79 +29701,49 @@ /obj/structure/platform, /turf/open/floor/plating, /area/lv522/atmos/filt) -"oiC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"oiI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"oiD" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"oiL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "oiP" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"oiR" = ( -/obj/item/stack/sheet/wood, -/obj/item/stack/rods, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "oiW" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv522/atmos/cargo_intake) -"oiY" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/landing_zone_1) -"oiZ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"ojb" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/structure/machinery/space_heater/radiator/red{ +"ojc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"ojn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ojh" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -13; + pixel_y = -9 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) "ojp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/garden_bridge) @@ -36236,25 +29753,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"ojw" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"ojx" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ojv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) "ojy" = ( /obj/structure/closet/crate/trashcart{ layer = 3 @@ -36262,36 +29768,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ojW" = ( +"ojH" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"oka" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"okj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"oke" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"oki" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) "okA" = ( /obj/structure/surface/rack, /obj/structure/machinery/camera/autoname{ @@ -36302,69 +29799,83 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"okE" = ( -/obj/structure/noticeboard{ - pixel_y = 29 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"ols" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"olz" = ( +"okJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"okM" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/b_block/bridge) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"olm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"olq" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "olI" = ( /obj/item/prop/colony/usedbandage{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"oml" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"olJ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"olR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/hallway) -"omv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 +/obj/structure/platform{ + dir = 8 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"omG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 4 +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"olS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"omd" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/obj/item/tool/lighter/random{ - pixel_x = 9; - pixel_y = 4 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"omk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"omq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/botanic_leather, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"omE" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "omT" = ( /obj/structure/sign/safety/radio_rad{ pixel_y = -26 @@ -36374,107 +29885,119 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) +"omV" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) "omX" = ( /obj/structure/platform, /obj/effect/decal/cleanable/blood/oil, /obj/structure/surface/rack, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"onj" = ( -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"onM" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) -"onT" = ( -/obj/structure/largecrate/random, +"onF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/strata/white_cyan3/northeast, +/area/lv522/indoors/a_block/medical/glass) +"onO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/lv522/indoors/a_block/hallway) +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "onX" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"ooa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"ood" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "ooe" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"ooh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Generator Room"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"oou" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/engineering) -"oot" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oov" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "oow" = ( /obj/effect/spawner/gibspawner/human, /obj/item/device/defibrillator/compact, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"ooG" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +"oox" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"ooA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"ooH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"ooM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"opk" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "opl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"opo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "opp" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating, /area/lv522/atmos/filt) -"opt" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) "opO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, @@ -36488,40 +30011,40 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oqn" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"opS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oqc" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) "oqp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"oqr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"oqu" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "oqD" = ( /obj/structure/coatrack{ pixel_x = -7; @@ -36536,28 +30059,20 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"oqJ" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/pipes/standard/simple/hidden/green{ +"oqM" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"oqQ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"oqT" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ora" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; @@ -36575,34 +30090,10 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"ort" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"ory" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) "orE" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"orI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "orP" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 @@ -36613,144 +30104,83 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"orS" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "orU" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"osd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"osN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"osU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"osV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"osr" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"osR" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 }, -/area/lv522/indoors/c_block/casino) -"ote" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"osS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) -"otj" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"osX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/lv522/indoors/a_block/bridges) -"otq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) -"otv" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"otd" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"otx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"otC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"otH" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" +"otn" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"otu" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"otM" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"otQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"otS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"otP" = ( +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 5 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"otT" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/storage/box/guncase/m41a{ + pixel_x = 2; + pixel_y = 6 }, -/area/lv522/indoors/a_block/kitchen) -"otY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_box/rounds/empty{ + layer = 3.1; + pixel_y = -15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"otR" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"otV" = ( +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -4; + pixel_y = -8 }, -/area/lv522/indoors/a_block/medical/glass) +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "oud" = ( /obj/structure/platform{ dir = 1 @@ -36767,46 +30197,39 @@ }, /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) -"ous" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ouv" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"ouG" = ( -/obj/structure/barricade/deployable{ - dir = 8 +"ouu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"ouz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"ouB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"ouF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"ouI" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ouO" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"ovj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ovo" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "ovr" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -36815,6 +30238,19 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) +"ovt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ovu" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ovA" = ( /obj/item/shard{ icon_state = "medium" @@ -36822,15 +30258,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ovB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) "ovT" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -36839,56 +30266,55 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"ovV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"owe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_street) "owg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"owC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "marked" +"owo" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/lv522/oob) -"owQ" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"owp" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"owu" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"owB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"owK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/lv522/indoors/c_block/garage) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/central_streets) "owX" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"oxl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"oxp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) "oxq" = ( /obj/item/paper{ pixel_x = 10; @@ -36896,134 +30322,107 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oxt" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"oxH" = ( -/obj/structure/barricade/handrail/strata{ +"oxE" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"oxM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 }, -/area/lv522/indoors/c_block/mining) -"oxT" = ( -/obj/structure/platform{ +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oxO" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"oxQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"oxX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) "oyf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"oyn" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"oyp" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "oyr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"oyB" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"oyC" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"oyK" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat{ - icon_state = "brown" +"oys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"oyL" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/area/lv522/atmos/east_reactor/south) -"oyM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"ozd" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = -14; + pixel_y = -2 }, -/area/lv522/atmos/filt) -"oyN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"ozm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/trash/plate{ + pixel_x = 6 }, -/area/lv522/indoors/a_block/dorms) -"oyR" = ( -/obj/structure/bed/portable_surgery{ - pixel_y = 5 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -3; + pixel_y = 12 }, -/obj/structure/curtain/medical, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 11 }, -/area/lv522/outdoors/w_rockies) -"oyY" = ( -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"ozk" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 +/obj/item/tool/kitchen/knife{ + pixel_x = -11 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" +/obj/item/reagent_container/food/snacks/superbiteburger{ + pixel_x = 4; + pixel_y = 8 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "ozn" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ozt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"ozw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) +"ozy" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/east_central_street) "ozF" = ( /obj/item/shard{ icon_state = "medium" @@ -37031,33 +30430,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"ozQ" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +"ozL" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"oAc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oAd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ozR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"oAe" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"oAk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/lv522/indoors/a_block/hallway) -"oAp" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"oAn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "oAu" = ( /obj/structure/platform{ dir = 1 @@ -37070,71 +30478,46 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"oAJ" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"oAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +"oBb" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "oBf" = ( /obj/structure/bed/chair/wheelchair, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"oBw" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/largecrate, -/obj/structure/machinery/light/small{ - dir = 1 +"oBo" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 5; + pixel_y = -6 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"oBu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) "oBx" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"oBI" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "oBR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"oCi" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/prop/holidays/string_lights{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) "oCn" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -37143,86 +30526,79 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) -"oCs" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "oCt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"oCG" = ( -/obj/structure/curtain/medical, +"oCC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"oCD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"oDa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"oDh" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan4" - }, -/area/lv522/indoors/a_block/medical) -"oCW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"oDj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"oDu" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 5 }, -/area/lv522/indoors/a_block/dorms) -"oDU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"oDn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"oDZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"oDA" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oEc" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 }, -/area/lv522/landing_zone_2/ceiling) -"oEw" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"oEf" = ( +/turf/open/floor/wood/wood_broken7, +/area/lv522/indoors/b_block/bar) +"oEI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"oEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" }, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oEO" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) +"oEY" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "oFr" = ( /obj/structure/machinery/light{ dir = 8 @@ -37230,50 +30606,70 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"oFz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"oFs" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/platform{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"oFw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) -"oFN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = 3; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"oFK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges) -"oFU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"oGl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"oFM" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"oFP" = ( +/obj/structure/window_frame/strata, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/indoors/a_block/kitchen/damage) -"oGp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"oGc" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oGk" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "25" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"oGq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) "oGE" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, @@ -37282,156 +30678,96 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"oGU" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -7; - pixel_y = 16 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"oGY" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"oGH" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"oGS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "oGZ" = ( /obj/item/stack/sheet/wood, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"oHj" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ +"oHf" = ( +/obj/structure/surface/rack, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/structure/machinery/light/double, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"oHk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"oHl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"oHp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 8 }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -8; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"oHv" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"oHG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"oHB" = ( -/obj/structure/machinery/optable{ - density = 0; - pixel_x = 16; - pixel_y = -6 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) -"oHQ" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"oIr" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"oHZ" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms/glass) -"oIu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_street) -"oIE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"oII" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) -"oIP" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"oJj" = ( +"oIU" = ( +/obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"oIV" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"oJp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 11 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = -11 - }, -/obj/item/reagent_container/food/snacks/superbiteburger{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"oJQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"oJj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"oJn" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"oJC" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) "oJS" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/cargo_intake) @@ -37442,6 +30778,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) +"oKa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "oKc" = ( /obj/structure/platform, /obj/structure/platform{ @@ -37458,83 +30807,30 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"oKm" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"oKG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"oKI" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"oKK" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/east_reactor/south) -"oKP" = ( -/obj/structure/machinery/autolathe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"oKQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) +"oKq" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "oLa" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) +"oLc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "oLd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"oLg" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"oLl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "oLo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37549,47 +30845,45 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"oLu" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"oLz" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ +"oLr" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oLx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"oLG" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) -"oLK" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"oLy" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/atmos/reactor_garage) -"oLW" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oLS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"oLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"oMg" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "oMi" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -37597,14 +30891,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"oMn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) "oMo" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -37613,33 +30899,52 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"oML" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +"oMx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"oMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -12; + pixel_y = 8 }, -/area/lv522/atmos/north_command_centre) -"oMO" = ( -/obj/structure/tent/big, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/north_street) -"oNd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 1 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oMz" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"oMB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/t_comm) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oMG" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"oMR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) "oNe" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"oNi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) "oNl" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -37647,48 +30952,33 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"oNv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"oNM" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"oNQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "oOe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"oOh" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"oOq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"oOD" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"oOw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"oOx" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"oOH" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "oOS" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) @@ -37696,62 +30986,54 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"oPs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +"oPk" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) "oPu" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"oPx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"oPL" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" }, -/area/lv522/indoors/b_block/bar) -"oPR" = ( -/obj/structure/bed/chair{ +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"oQd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"oQf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 }, -/area/lv522/landing_zone_1/ceiling) -"oPW" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"oQs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"oQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/atmos/cargo_intake) -"oQt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"oQB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "oQC" = ( /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, @@ -37760,60 +31042,43 @@ /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oQV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/stack/sandbags/small_stack, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"oQW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"oQZ" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) +"oRb" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oRl" = ( +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 }, -/area/lv522/landing_zone_2/ceiling) -"oRr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 }, -/area/lv522/indoors/a_block/dorms/glass) -"oRt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 }, -/area/lv522/indoors/a_block/dorms) -"oRG" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" +/obj/structure/closet/crate/ammo, +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/indoors/a_block/medical/glass) -"oRS" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/structure/machinery/light{ +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"oRw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "32" }, -/area/lv522/landing_zone_1/ceiling) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"oRL" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) "oRU" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -37828,6 +31093,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"oSo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"oSp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "oSA" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -37841,18 +31115,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"oSH" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/bridges) -"oSX" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) "oTc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37864,25 +31126,13 @@ /obj/structure/platform/stair_cut, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"oTd" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"oTg" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"oTl" = ( +"oTh" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "oTp" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/nailgun/empty{ @@ -37893,6 +31143,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"oTy" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "oTD" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -37907,34 +31160,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"oTG" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"oTI" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"oTE" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"oTF" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/north) +"oTK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/b_block/hydro) -"oTJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"oTL" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "oTX" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, @@ -37943,49 +31184,54 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"oUh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"oUk" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "oUq" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/way_in_command_centre) -"oUC" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 +"oUH" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"oUU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"oUV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 }, -/area/lv522/atmos/east_reactor) -"oUE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"oUX" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/atmos/way_in_command_centre) -"oUZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/atmos/east_reactor) -"oVb" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"oUY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "oVk" = ( /obj/structure/largecrate/random{ pixel_x = 1; @@ -37998,13 +31244,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"oVA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) +"oVw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "oVD" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/space_heater/radiator/red{ @@ -38012,133 +31255,169 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"oVK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"oVL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/marine/insulated, -/obj/item/tool/weldingtool{ - pixel_x = -4 - }, -/obj/item/tool/weldpack{ - pixel_x = 14; - pixel_y = 17 +"oVQ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"oVU" = ( +/obj/structure/largecrate/random{ + layer = 2.9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"oVW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/area/lv522/indoors/c_block/garage) -"oVO" = ( -/obj/structure/fence{ - layer = 2.9 +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_3"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_6"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"oVX" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"oVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) -"oWq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) -"oWy" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"oWc" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) -"oWK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Pressuredoor"; - name = "High Pressure Door"; - unacidable = 1 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"oWh" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"oWi" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oWj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/landing_zone_1/tunnel) -"oWS" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"oWz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"oWG" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/area/lv522/atmos/east_reactor/south) -"oWV" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"oWI" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) +"oWT" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges) +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) "oXa" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"oXk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) "oXp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"oXB" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" +"oXt" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/indoors/a_block/admin) -"oXF" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"oXu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"oXz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"oXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"oXG" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) +"oXK" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 }, -/area/lv522/indoors/a_block/bridges) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"oXO" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) "oXQ" = ( /obj/structure/machinery/light{ dir = 8 @@ -38154,24 +31433,6 @@ /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"oXV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oXX" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "oXZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, @@ -38184,21 +31445,17 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"oYu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"oYM" = ( -/obj/structure/platform_decoration, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +"oYc" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"oYB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"oYJ" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) "oYO" = ( /obj/structure/platform{ dir = 1 @@ -38209,36 +31466,71 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"oYZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"oZa" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/lv522/indoors/a_block/bridges/op_centre) -"oZd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"oZh" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = 16 }, -/area/lv522/indoors/lone_buildings/engineering) -"oZC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 4; - icon_state = "greenfull" + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = -4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"oZt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "oZN" = ( /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"oZO" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"oZP" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"oZQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) "pab" = ( /obj/structure/machinery/landinglight/ds2/delayone, /obj/effect/decal/cleanable/dirt, @@ -38254,182 +31546,176 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"pas" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pah" = ( +/obj/structure/platform_decoration, +/obj/structure/bed/roller, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pan" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 }, -/area/lv522/indoors/c_block/cargo) -"paK" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"pao" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pax" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"paT" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +"paJ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "31" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"paZ" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "pbi" = ( /obj/structure/machinery/door_control/brbutton{ id = "Reactor_garage_1" }, /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) +"pbm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/key/cargo_train{ + icon_state = "keys" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "pbp" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"pbv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pbB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pbH" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) "pbN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"pbO" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) -"pck" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pcc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) +"pcd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"pce" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"pch" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/bikehorn, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "pco" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"pcr" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"pcz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) "pcH" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"pcO" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "pcQ" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"pcV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pcT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock"; + welded = 1 }, -/area/lv522/atmos/sewer) -"pdp" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"pdn" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/gm/river, +/turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"pdr" = ( -/obj/structure/curtain/red, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 2.1; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"pdv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pdo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 5 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"pdB" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pds" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Storage"; + req_access_txt = "100" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"pdD" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"pdG" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" }, -/area/lv522/indoors/a_block/dorms) -"pdF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" }, -/area/lv522/indoors/a_block/admin) -"pdO" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"pdR" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"pdV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "pej" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -38444,154 +31730,20 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pex" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) -"pez" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"peM" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"peS" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"pfe" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"pfj" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"pfq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"pfv" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"pfD" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/b_block/bridge) -"pfE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, +"peH" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pfJ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "pfN" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"pfU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"pfV" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "pfX" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"pgl" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) "pgm" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -38599,126 +31751,130 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pgn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"pgv" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"pgF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pgH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pgZ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/dorms) -"pgp" = ( /obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"pgs" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"pgt" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"pgy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 8 }, -/area/lv522/atmos/west_reactor) -"pgG" = ( -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"phk" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "26" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"phn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"phA" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"phO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"phT" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 25 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"pgJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"phZ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"pib" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Control" }, -/area/lv522/atmos/east_reactor) -"pha" = ( -/obj/structure/bed/chair{ - can_buckle = 0; +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"pic" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/machinery/power/apc/weak{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"phn" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"phq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"phu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"phZ" = ( -/obj/structure/surface/table/almayer, +"pif" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/atmos/sewer) +"pin" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical) +"pip" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pid" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/area/lv522/landing_zone_1/tunnel) +"piq" = ( +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_leg"; + name = "right leg"; + pixel_x = 8; + pixel_y = 20 + }, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_foot"; + name = "right foot"; + pixel_x = 12; + pixel_y = 13 }, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"pir" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "pit" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, @@ -38739,17 +31895,25 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"piW" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 7 +"piF" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"piG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Kitchen Airlock" }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) "piY" = ( /obj/structure/platform{ dir = 4 @@ -38757,30 +31921,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pjl" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/strata_ice/dirty, +"pjn" = ( +/turf/open/floor/coagulation/icon8_8, /area/lv522/oob) -"pjm" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) "pjJ" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/n_rockies) -"pjM" = ( +"pjR" = ( /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) "pjT" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -38802,149 +31953,168 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"pjY" = ( -/obj/structure/bed/chair{ - dir = 1 +"pjX" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"pjZ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/limb/hand/l_hand{ + dir = 1; + pixel_x = 9; + pixel_y = 3 }, -/area/lv522/indoors/c_block/mining) -"pka" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"pkk" = ( /obj/structure/platform_decoration, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"pkB" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pkE" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) -"pkH" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" + dir = 4 }, -/area/lv522/landing_zone_1) -"plb" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_4"; - pixel_x = -16; - req_access = null +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pkJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "pli" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"plz" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/executive) -"plN" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"plx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"pme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"plB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"plO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"pmm" = ( +/obj/structure/closet/crate, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"pmA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"pmH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 }, -/area/lv522/landing_zone_2/ceiling) -"pmg" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"pmM" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/indoors/a_block/hallway) -"png" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"pnb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "pni" = ( /obj/item/weapon/gun/revolver/spearhead, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"pnj" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"pnu" = ( -/obj/item/fuelCell{ - layer = 3.1; - pixel_x = 3; - pixel_y = 15 - }, -/obj/item/fuelCell{ - layer = 3.1; - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pnx" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"pnz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +"pnp" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "pnE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"pnH" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "pnO" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"pnP" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/seeds/potatoseed, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"pnQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"pnY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"poa" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"poe" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"poz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) "poD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -38952,15 +32122,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"poM" = ( -/obj/effect/spawner/gibspawner/robot, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) +"poJ" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"poP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "poQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -38969,33 +32139,38 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pps" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "100" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ppy" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ppc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ppg" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/filt) +"ppv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"ppx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "ppD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ppF" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "101" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ppE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"ppG" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "ppK" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -39005,35 +32180,39 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"ppU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"ppO" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/mining) -"pqj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c1000, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"ppZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/casino) +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "pqk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"pqB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"pqt" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pqx" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"pqG" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/lv522/indoors/c_block/casino) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "pqQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39044,11 +32223,6 @@ /obj/effect/decal/cleanable/cobweb2, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"pqU" = ( -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) "pqX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/lightstick/red/spoke/planted{ @@ -39057,12 +32231,19 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"pqZ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "102" +"prj" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "70" }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"prk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"prq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "prs" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -39070,44 +32251,54 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"prD" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "104" +"prv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/colony/canister{ + pixel_y = 14 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"prM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"prT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"prU" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = -5 }, -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"prA" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_arm"; - name = "left arm"; - pixel_x = -4; - pixel_y = 10 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"prF" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) +"prK" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"prM" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"prR" = ( +/obj/structure/prop/turbine_extras/border, +/obj/structure/prop/turbine, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "prW" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -39139,21 +32330,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"psq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"psC" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/hallway) +"psc" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) "psF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/mar40/lmg, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"psO" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) "psQ" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/server_equipment/laptop/on{ @@ -39162,66 +32350,38 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"psT" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"ptc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/filt) -"ptp" = ( -/obj/structure/machinery/light, +"ptA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ptB" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"ptU" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) -"pul" = ( -/obj/item/ammo_magazine/pistol/m1911{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"puu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"puC" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"ptC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/admin) -"puJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"ptN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ptO" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"ptR" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) "puV" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, @@ -39233,32 +32393,41 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pvd" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"pvi" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"pvj" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"pvo" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"pvq" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv522/landing_zone_1) -"pvz" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"pvv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"pvE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"pvP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "pvW" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -12; @@ -39269,28 +32438,19 @@ "pwa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) -"pwg" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"pwk" = ( -/obj/structure/machinery/light{ - dir = 8 +"pwe" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"pwp" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "pwu" = ( /obj/structure/platform_decoration{ dir = 8 @@ -39301,61 +32461,45 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pwA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"pwB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "pwC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"pwH" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1/delayone{ +"pwF" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"pwK" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"pwJ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"pwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "pwT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"pwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pwU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" }, -/turf/open/floor/prison{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "greenfull" + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "pwX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, @@ -39363,72 +32507,59 @@ "pxb" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"pxh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "pxk" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pxp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"pxN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pxs" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"pxx" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"pxS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"pxY" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "95a" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pyc" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) -"pyo" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"pys" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "97a" +"pxM" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -6; + pixel_y = 15 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pyA" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"pye" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/indoors/a_block/hallway) -"pyO" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "99a"; - layer = 2.97 +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"pyt" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"pyy" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"pyG" = ( +/obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/area/lv522/landing_zone_1) "pza" = ( /obj/item/stack/sheet/wood{ pixel_x = -5; @@ -39462,48 +32593,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"pzj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -8; - pixel_y = 15 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) "pzo" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"pzs" = ( -/obj/structure/barricade/wooden, +"pzC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"pzE" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"pzF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"pzN" = ( +/obj/structure/barricade/handrail, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"pzT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/hallway) -"pzH" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/hallway) -"pAd" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "9" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"pzU" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"pzV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pAj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) "pAp" = ( /obj/structure/largecrate, /turf/open/auto_turf/sand_white/layer0, @@ -39512,12 +32651,6 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"pAN" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/east_reactor/south) "pAW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39525,31 +32658,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"pBl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"pBn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"pBF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +"pBx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"pBI" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "pBK" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck{ @@ -39563,20 +32684,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"pBQ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "41"; - density = 0; - layer = 4.2 +"pBO" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pBT" = ( -/turf/open/floor/prison{ - dir = 6; - icon_state = "darkpurple2" +/obj/structure/window{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"pBS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "pCg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -39598,36 +32718,44 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"pCq" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) "pCv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"pCG" = ( -/obj/structure/stairs/perspective{ +"pCz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pCO" = ( +/obj/structure/surface/table/almayer, +/obj/item/book{ + pixel_x = -5; + pixel_y = 14 }, -/area/lv522/indoors/b_block/bridge) +/obj/item/book{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "pCP" = ( /obj/item/tool/hatchet, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"pCQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "pCT" = ( /obj/structure/machinery/power/terminal, /obj/effect/decal/warning_stripes{ @@ -39636,74 +32764,27 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"pCU" = ( -/obj/item/ammo_magazine/smg/nailgun{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"pCW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"pCZ" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"pDe" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"pDh" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"pDA" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"pDG" = ( +"pCX" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pDd" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"pDl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"pDM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 10 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"pDr" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"pDB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "pDU" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -39712,77 +32793,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"pDX" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"pEk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"pEm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"pEp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pEg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "pEs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"pEu" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"pEv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"pEy" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/area/lv522/atmos/filt) -"pEw" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "99" }, -/area/lv522/atmos/command_centre) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "pEA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -39793,47 +32823,24 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pEZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_y = 9 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"pFw" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"pFF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"pFl" = ( +/obj/item/clothing/gloves/yellow, +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 26 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"pFq" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/garden) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "pFH" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -39841,25 +32848,30 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pFQ" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"pFX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 4 }, -/area/lv522/indoors/a_block/security) -"pGe" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/item/reagent_container/food/drinks/coffee{ + layer = 3.1; + pixel_x = -5; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 6; + pixel_y = 16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"pGa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "pGg" = ( /obj/structure/bed/chair{ dir = 8 @@ -39872,36 +32884,42 @@ "pGl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/a_block/kitchen) -"pGN" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "West_Lock"; - name = "remote door-control"; - pixel_x = -9; - pixel_y = 16 +"pGu" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "East_Lock"; - name = "remote door-control"; - pixel_x = 10; - pixel_y = 16 +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"pGC" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -20 }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Containers_west_LV522"; - name = "remote door-control"; - pixel_x = 1; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/door_control/brbutton{ - id = "West LZ Storage"; - name = "West LZ Storage control"; - pixel_x = -9; - pixel_y = 5 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"pGE" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pGJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) "pGQ" = ( /obj/item/prop/alien/hugger, /turf/open/floor/wood/ship, @@ -39919,112 +32937,72 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"pHi" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"pHg" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"pHn" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"pHC" = ( +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) "pHT" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"pIa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"pIu" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "86b" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pIx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"pIO" = ( -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - layer = 3.1 - }, -/obj/structure/prop{ - desc = "A flight computer that can be used for autopilot or long-range flights."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "camerasb_old"; - name = "dropship navigation computer"; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pJh" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, +"pHZ" = ( +/obj/structure/largecrate/supply/supplies/water, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"pJj" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"pIG" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"pJt" = ( -/obj/structure/largecrate/random/mini{ - layer = 3.1; - pixel_x = 10; - pixel_y = -7 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"pJG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/admin) -"pJV" = ( +/obj/structure/platform, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pIR" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"pIX" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"pJb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"pJe" = ( +/turf/open/floor/coagulation/icon0_8, +/area/lv522/oob) +"pJk" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"pJB" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "pJW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40040,41 +33018,92 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) -"pKn" = ( +"pKx" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "75" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"pKK" = ( +/obj/item/prop/alien/hugger, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pKM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/bridges/op_centre) -"pKo" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pKO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/computers/sensor_computer3{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"pKP" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pKS" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"pKT" = ( +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/admin) -"pKv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" +"pKW" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/area/lv522/atmos/filt) +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "pKX" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/op_centre) +"pLa" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"pLd" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"pLe" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) "pLj" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -40082,19 +33111,8 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"pLm" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "pLs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -40109,26 +33127,22 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"pLN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" +"pLy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Executive Suite" }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"pLF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pLR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) -"pLP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "pLT" = ( /obj/item/reagent_container/glass/bucket/janibucket{ desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; @@ -40138,30 +33152,15 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"pMc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pMd" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +"pMf" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) -"pMg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 12 }, -/area/lv522/atmos/filt) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "pMs" = ( /obj/structure/surface/table/gamblingtable, /obj/item/card/id/visa{ @@ -40179,15 +33178,10 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pMt" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) +"pMu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "pMz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -40197,27 +33191,13 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) +"pML" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical/glass) "pMT" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"pNa" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/tunnel) -"pNc" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -40225,75 +33205,57 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"pNo" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"pNq" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/medical, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) +"pNh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"pNi" = ( +/turf/open/floor/almayer/w_y0/north, +/area/lv522/oob/w_y_vault) "pNs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"pNv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"pNF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat{ - icon_state = "squares" +"pNM" = ( +/obj/structure/prop/dam/truck, +/obj/structure/prop/holidays/wreath{ + layer = 4.1; + pixel_x = -1; + pixel_y = 16 }, -/area/lv522/atmos/reactor_garage) -"pNJ" = ( +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"pNP" = ( /obj/structure/stairs/perspective{ - dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"pNQ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "pNY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) +"pOa" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "pOd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"pOm" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - layer = 3.1; - name = "trash bag"; - pixel_x = 4; - pixel_y = 21 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"pOq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) "pOs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -40304,20 +33266,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"pOA" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 - }, +"pOz" = ( +/obj/structure/closet/secure_closet/bar, /obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "pOK" = ( /obj/structure/platform/strata{ dir = 1 @@ -40327,28 +33283,6 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"pON" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"pPm" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "pPt" = ( /obj/structure/largecrate/random, /turf/open/floor/plating/plating_catwalk/prison, @@ -40356,23 +33290,51 @@ "pPC" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"pPV" = ( -/obj/structure/toilet{ +"pPG" = ( +/obj/structure/closet/crate, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"pPJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pPK" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pPY" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"pQp" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 }, -/area/lv522/indoors/a_block/dorms) -"pQx" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"pQt" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89" }, -/area/lv522/indoors/c_block/cargo) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pQw" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -9 + }, +/obj/structure/machinery/suit_storage_unit{ + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "pQA" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green, @@ -40382,58 +33344,6 @@ "pQE" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges) -"pQG" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"pQN" = ( -/obj/item/cell/apc{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/cell/hyper{ - pixel_y = -2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"pQQ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"pQR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor) -"pRf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) "pRg" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -40441,127 +33351,79 @@ "pRh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/n_rockies) -"pRi" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "pRv" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"pRx" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "pRH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"pRK" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pRM" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "41"; - density = 0; - layer = 4.2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pRR" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security) -"pRT" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"pSh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pSj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"pRS" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"pSa" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "45" }, -/area/lv522/indoors/b_block/bridge) -"pSs" = ( +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pSp" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"pSK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" - }, -/area/lv522/atmos/way_in_command_centre) -"pTa" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 3.1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"pTj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"pSC" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" }, -/area/lv522/indoors/a_block/dorms/glass) -"pTl" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_1"; + name = "treadmill switch"; + pixel_x = -8; + pixel_y = 8 }, -/area/lv522/indoors/a_block/bridges/op_centre) -"pTB" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pST" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"pTg" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"pTq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 7 }, -/area/lv522/indoors/a_block/dorms) -"pTH" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"pTr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) "pTJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/on{ @@ -40571,72 +33433,42 @@ /obj/item/device/binoculars, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"pTO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "pTW" = ( /obj/item/explosive/mine/active{ dir = 4 }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) +"pTX" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"pTY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "pTZ" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"pUc" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "38" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pUd" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"pUi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "pUo" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"pUv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/central_streets) "pUR" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -40644,12 +33476,32 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"pVb" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"pUY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"pVa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"pVc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"pVl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"pVm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "pVn" = ( /obj/structure/platform_decoration, /obj/structure/stairs/perspective{ @@ -40664,36 +33516,18 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"pVt" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"pVx" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"pVy" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"pVr" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"pVu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 2; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" }, -/area/lv522/indoors/c_block/mining) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "pVA" = ( /obj/structure/bed/chair{ dir = 1 @@ -40701,174 +33535,163 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"pVH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" +"pVI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"pWo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"pWu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/atmos/way_in_command_centre) -"pVX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pWw" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"pWA" = ( /obj/structure/platform{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"pWk" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"pWx" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"pWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/sewer) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"pWG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"pWP" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "pWR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"pWW" = ( -/obj/item/stack/sheet/wood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"pWX" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"pXh" = ( +"pWU" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"pXf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) -"pXk" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) +"pXr" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "West_Lock"; + name = "remote door-control"; + pixel_x = -9; + pixel_y = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/machinery/door_control/brbutton/alt{ + id = "East_Lock"; + name = "remote door-control"; + pixel_x = 10; + pixel_y = 16 }, -/area/lv522/indoors/lone_buildings/engineering) -"pXq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Containers_west_LV522"; + name = "remote door-control"; + pixel_x = 1; + pixel_y = 16 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/machinery/door_control/brbutton{ + id = "West LZ Storage"; + name = "West LZ Storage control"; + pixel_x = -9; + pixel_y = 5 }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) "pXu" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"pXx" = ( +"pXE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/indoors/a_block/medical) -"pXz" = ( -/obj/structure/platform{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pXR" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"pYb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/ice_colony/dense/planter_box{ +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) +"pYo" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/item/device/radio/marine{ + pixel_x = 10; + pixel_y = 22 }, -/area/lv522/indoors/b_block/bridge) -"pXH" = ( -/obj/effect/alien/weeds/node/alpha, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"pYf" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"pYr" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = -8 }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/bed{ + layer = 2.6; + pixel_y = 5 }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pYj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "pYu" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"pYG" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"pYw" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"pYB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/area/lv522/indoors/c_block/mining) +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) "pYN" = ( /obj/structure/platform_decoration{ dir = 1 @@ -40882,52 +33705,48 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"pYP" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +"pYT" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/oob) -"pYY" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pYX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pZb" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "21" +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"pZi" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pYZ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"pZj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/redpyjamas, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "pZo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"pZy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/mre_pack/meal1{ - desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; - name = "\improper UA Prepared Meal (cornbread)"; - pixel_y = 9 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) "pZA" = ( /obj/item/storage/secure/safe{ pixel_y = 29 @@ -40938,87 +33757,45 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"pZV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"qaj" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"qal" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"qaT" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"qbf" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"qbi" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) -"qbu" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"qbB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +"pZU" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"qbD" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pZX" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) +"qay" = ( /obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qaV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"qba" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"qbe" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_west_street) +"qbp" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"qbs" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qby" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "qbG" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -41045,15 +33822,22 @@ /obj/structure/sign/safety/high_voltage, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"qbL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock" +"qbK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/surface/rack, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"qbO" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -41074,62 +33858,18 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) -"qcd" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"qce" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"qcw" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) +"qcb" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) "qcy" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"qcA" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"qcO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"qda" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) +"qcR" = ( +/obj/structure/largecrate/random/mini, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "qdc" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -41143,79 +33883,35 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"qdg" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Dining"; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"qdA" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/card/id/silver/clearance_badge/cl{ - desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; - name = "certified powerloader operator card"; - pixel_x = 5; - registered_name = "John Forklift" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"qdO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/south_west_street) +"qdh" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) "qdS" = ( /obj/structure/bed/sofa/south/grey/left, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"qdV" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/trash/uscm_mre, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"qer" = ( -/obj/structure/prop/invuln/minecart_tracks{ - layer = 2.6 - }, -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) -"qeJ" = ( -/obj/structure/prop/vehicles/crawler, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"qeK" = ( +"qex" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"qeA" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"qeV" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qff" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "qfm" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -41234,24 +33930,26 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"qfr" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "qfu" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"qfz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) -"qfD" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"qfA" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "40" }, -/area/lv522/indoors/a_block/fitness) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qfB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "qfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -41264,12 +33962,34 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"qfM" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "16" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qfT" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qgf" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "qgj" = ( /obj/structure/barricade/wooden{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"qgm" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "qgr" = ( /obj/structure/machinery/light/small, /obj/structure/ladder{ @@ -41284,18 +34004,45 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"qhk" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qhm" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"qha" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"qhj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/gun/flamer{ + current_mag = null; + layer = 3.1 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"qhp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"qht" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"qhB" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"qhG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "qhO" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -41303,6 +34050,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"qhR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qhV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "qic" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) @@ -41313,84 +34076,54 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qio" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) -"qiw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/recharger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"qix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"qiC" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges) -"qiG" = ( -/obj/structure/window/framed/strata/reinforced, +"qii" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) -"qiJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"qip" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"qiy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qiB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "qiN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/damage) -"qje" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" +"qiP" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"qiS" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 13 }, -/area/lv522/indoors/a_block/dorm_north) -"qjq" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = -3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"qji" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"qjk" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/chunk) "qjr" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -41399,24 +34132,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"qjs" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/oob) -"qjt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv522/indoors/a_block/dorms) -"qjy" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qjC" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -41424,29 +34139,31 @@ "qjG" = ( /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"qjM" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate" +"qjJ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/platform_decoration{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "qjO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"qjX" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "32" - }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"qkh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"qkt" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "qkw" = ( /obj/structure/prop/invuln/remote_console_pod, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ @@ -41456,18 +34173,53 @@ }, /turf/open/floor/prison, /area/shuttle/drop1/lv522) +"qkR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"qlc" = ( +/obj/structure/machinery/door_control{ + id = "Marked_6"; + name = "Cargo Shutter Control"; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "Weyland classified intelligence folder"; + pixel_y = -2 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"qld" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "qle" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"qlr" = ( -/obj/item/trash/barcardine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" +"qlh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"qlu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_y = 4 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "qly" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -41500,6 +34252,14 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) +"qlY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "qma" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -41507,69 +34267,37 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"qml" = ( +"qmo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"qmp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"qmr" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -6; - pixel_y = 15 - }, -/obj/item/trash/plate, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/security) "qmA" = ( -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"qmD" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"qmF" = ( -/obj/item/prop/alien/hugger, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Bar & Grill"; - pixel_x = -16 +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"qmB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"qmV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/indoors/b_block/bar) -"qmM" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "75" +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"qmW" = ( +/obj/structure/girder, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) "qnb" = ( /obj/structure/platform, /obj/structure/platform{ @@ -41580,43 +34308,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qnk" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "77" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qnn" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"qnG" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/cell/high{ - pixel_x = -6; - pixel_y = 10 +"qnq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"qnt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "qnM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -41624,66 +34333,53 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"qnS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"qnU" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"qnV" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "82" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qnY" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"qob" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "qot" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/cardboard/full_stack, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"qow" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"qoz" = ( +/obj/structure/surface/rack, +/obj/item/ore/uranium, +/obj/item/ore/uranium, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "qoG" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"qpc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qpd" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/sewer) -"qpg" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "16" +"qoN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"qoU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"qpn" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/bridges/op_centre) +"qpo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "qpq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -41693,18 +34389,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"qpy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "qpz" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -41718,40 +34402,18 @@ }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/central_streets) -"qpD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"qpE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2/ceiling) -"qqc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"qqk" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) -"qqq" = ( +"qpK" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"qpX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"qqd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "qqx" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -41765,22 +34427,9 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"qqD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control" - }, -/obj/item/limb/hand/l_hand{ - dir = 1; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +"qqA" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/filt) "qqG" = ( /obj/structure/platform, /obj/structure/platform{ @@ -41797,90 +34446,55 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/n_rockies) -"qqN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"qqR" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +"qqV" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"qqX" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/c_block/garage) -"qqS" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/outdoors/w_rockies) -"qqW" = ( -/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) +"qrn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"qrf" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"qrB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80; pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"qrj" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "103" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"qro" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"qrU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"qrT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, /area/lv522/atmos/way_in_command_centre) -"qsd" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +"qrV" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "30" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qrZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -4; + pixel_y = 9 }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qsi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41893,88 +34507,45 @@ /obj/structure/machinery/cell_charger, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qst" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +"qsB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "qsC" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qsL" = ( -/obj/structure/platform{ +"qsD" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"qsG" = ( +/obj/structure/bed/bedroll{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"qsK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86" }, -/area/lv522/indoors/b_block/bridge) +/area/lv522/landing_zone_forecon/UD6_Tornado) "qsN" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"qsQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"qsU" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/garden) "qsW" = ( /obj/structure/platform{ dir = 4 }, /turf/open/gm/river, /area/lv522/atmos/sewer) -"qtc" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "29" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"qtg" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"qtl" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "qts" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -42002,23 +34573,14 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qtE" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/toy/dice, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) +"qtz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor) +"qtM" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "qtN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -42039,6 +34601,9 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"qur" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "quw" = ( /obj/item/clothing/head/welding, /turf/open/auto_turf/sand_white/layer0, @@ -42047,41 +34612,66 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"quL" = ( -/obj/structure/largecrate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"quX" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Tornado' flight controls"; + network = null; + pixel_y = 21 }, -/area/lv522/landing_zone_1) -"qvb" = ( -/obj/structure/stairs/perspective{ +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ dir = 1; - icon_state = "p_stair_full" + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qvd" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qve" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"qvg" = ( +/obj/structure/surface/table/almayer, +/obj/item/ore/gold, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qvh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/atmos/way_in_command_centre) -"qvA" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"qvl" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/landing_zone_2) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"qvw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "qvJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"qvK" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "qvM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ @@ -42095,19 +34685,14 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qvQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) "qvY" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"qwd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "qws" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -42121,24 +34706,10 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qxb" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "qxe" = ( /obj/item/prop/colony/used_flare, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"qxf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel) "qxg" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -42148,19 +34719,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qxi" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/blink{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/toy/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) "qxk" = ( /obj/structure/platform_decoration{ dir = 8 @@ -42171,13 +34729,23 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qxp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"qxr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 6 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qxz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"qxA" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "qxB" = ( /obj/item/ammo_magazine/sniper{ current_rounds = 0; @@ -42192,77 +34760,54 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qxD" = ( -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"qxF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" +"qxV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/b_block/bar) -"qxL" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "qxX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) -"qxZ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "qyG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"qyI" = ( -/obj/structure/closet/firecloset/full, +"qyL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/a_block/fitness/glass) -"qyM" = ( -/obj/structure/bed/chair{ +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qyN" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null }, -/area/lv522/indoors/a_block/fitness) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qyO" = ( +/obj/structure/machinery/light/double, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "qyS" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -42275,26 +34820,13 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"qze" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qzp" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "62" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qzw" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "16" +"qzl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "qzy" = ( /obj/structure/largecrate/random/barrel{ layer = 2.7 @@ -42316,25 +34848,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"qzA" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"qzD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" - }, -/area/lv522/indoors/a_block/medical) "qzE" = ( /obj/structure/platform{ dir = 8 @@ -42355,6 +34868,19 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) +"qAj" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"qAp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "qAt" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -42365,36 +34891,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"qAy" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"qAF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, +"qAw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"qAS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/lv522/atmos/reactor_garage) -"qAX" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"qAx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qAO" = ( +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) +"qAV" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "qBb" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison, @@ -42424,36 +34945,37 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"qBB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"qBt" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"qBz" = ( +/obj/structure/ore_box, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) "qBE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"qBH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"qBG" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/lever_action/r4t{ + pixel_y = 26 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Tornado cargo door" +/obj/item/ammo_magazine/lever_action/marksman{ + layer = 3.1; + pixel_x = -5; + pixel_y = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" +/obj/item/weapon/butterfly/switchblade{ + pixel_x = 11; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "qBQ" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -42465,84 +34987,34 @@ }, /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) -"qBR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Northlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"qBW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"qCl" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/admin) -"qCd" = ( -/obj/structure/machinery/power/apc/weak{ +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"qCu" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"qCv" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"qCe" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"qCP" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/indoors/a_block/bridges/corpo) -"qCs" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qCB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = 9 - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = -8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"qCE" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"qCL" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "qCY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -42557,16 +35029,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qDd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) +"qDf" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "qDl" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -42575,35 +35041,44 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"qDo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/almayer/w_y2/north, +/area/lv522/atmos/way_in_command_centre) +"qDp" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/largecrate, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "qDr" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"qDt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +"qDu" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "qDw" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"qDD" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +"qDF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) +"qDH" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) "qDL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/corpo_fitness) @@ -42637,15 +35112,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"qEu" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" +"qEl" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"qEw" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/medical, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"qEC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"qEI" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"qEN" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "qEQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -42653,63 +35147,55 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"qET" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"qEW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) -"qEU" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"qFc" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" }, -/area/lv522/indoors/a_block/dorms) -"qFs" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "71" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qFj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qFE" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"qFH" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/filt) +"qFI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"qFR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"qFW" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "qGf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qGq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "qGC" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"qGG" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv522/indoors/b_block/hydro/glass) "qGI" = ( /obj/structure/ore_box{ pixel_x = 5 @@ -42719,43 +35205,11 @@ "qGK" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"qGQ" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qHa" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"qHg" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) "qHj" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"qHp" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) "qHr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -42763,25 +35217,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"qHA" = ( -/obj/structure/machinery/computer/overwatch/toc{ - pixel_y = 14 - }, -/obj/structure/surface/table/reinforced/toc/west{ - pixel_y = -7 - }, -/obj/structure/machinery/prop/almayer/CICmap/arc{ - pixel_y = 9; - pixel_x = -9 - }, -/obj/structure/machinery/computer/railgun/toc{ - pixel_y = 14; - pixel_x = 7 +"qHs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"qHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "qHD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -42793,6 +35241,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"qHJ" = ( +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = 3; + pixel_y = 15 + }, +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qHO" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"qIi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "qIu" = ( /obj/structure/bed/bedroll{ dir = 1; @@ -42805,91 +35282,55 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"qIy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"qID" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo/glass) -"qIE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"qIJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"qJl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"qIK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Garage"; + pixel_y = 26 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qJp" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"qIT" = ( /obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"qJd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"qJv" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 12 + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bridge) -"qJw" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"qJh" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "qJy" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"qJE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"qJH" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) "qJK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"qJL" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bridge) "qJN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42905,14 +35346,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"qJU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "qKk" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, @@ -42935,58 +35368,42 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qKO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"qKV" = ( -/obj/structure/platform_decoration{ - dir = 8 +"qKC" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"qKD" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"qLD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"qLE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qLa" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"qLk" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qLu" = ( -/obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"qLy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"qLz" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "73" +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"qLI" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "46" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qLJ" = ( -/obj/structure/sink{ - pixel_y = 26 +"qLO" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "qLQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -42998,6 +35415,10 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"qLY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "qMd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -43005,44 +35426,59 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) +"qMn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "qMo" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/wood/large_stack, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"qMp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "qMx" = ( /obj/item/ammo_magazine/sniper{ current_rounds = 6 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"qME" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "74" +"qMy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qMJ" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"qMN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"qMX" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qNg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qMS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "qNh" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, @@ -43058,28 +35494,19 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"qNA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"qNx" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/c_block/t_comm) -"qNG" = ( -/obj/structure/bed/stool, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"qNC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"qNI" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "qNK" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -43099,154 +35526,51 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"qNM" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/prize/deathripley{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, +"qNL" = ( +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"qNQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/seeds/potatoseed, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "qNR" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"qNY" = ( -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"qOa" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"qOi" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "26" +"qNV" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "27" }, -/turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"qOn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness/glass) -"qOQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"qOg" = ( +/obj/structure/target{ + name = "punching bag" }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"qOS" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) -"qPq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) -"qPu" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/clothing/head/soft/sec, -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" +"qOk" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"qOu" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "69" }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qPi" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"qPx" = ( +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "qPA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qPL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qPS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"qPT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "qPU" = ( /obj/structure/bed/chair{ dir = 8 @@ -43259,37 +35583,21 @@ "qQe" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"qQh" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "qQi" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qQo" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"qQp" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 3 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"qQk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = 11 }, -/area/lv522/indoors/a_block/fitness) +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "qQr" = ( /obj/item/trash/candle{ pixel_x = 8; @@ -43297,41 +35605,12 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qQt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) "qQB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qQM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"qQN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "qQQ" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -43344,23 +35623,21 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"qQZ" = ( +"qQT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"qRw" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"qRh" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_street) +"qRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "qRB" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/medium_stack, @@ -43370,23 +35647,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"qRF" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "qRH" = ( /obj/structure/platform{ dir = 8 @@ -43394,33 +35654,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"qRU" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"qSj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" +"qSa" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "27" }, -/area/lv522/indoors/a_block/dorm_north) -"qSk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qSm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/bridges) -"qSu" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"qSq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "qSw" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -43428,107 +35678,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"qSA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "kitchen" +"qSC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qSD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_3"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) "qSH" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qSP" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "66" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qSS" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"qSW" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"qTh" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "67" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qTr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"qTu" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"qTx" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" +"qTD" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"qTF" = ( +/turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/security) -"qTE" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/east_reactor/south) -"qTG" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen) -"qTH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -43543,129 +35726,56 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"qTO" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/vehicle/toc{ - dir = 1; - pixel_y = 19; - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/marine/satchel/rto{ - pixel_y = 12; - pixel_x = -6 +"qTZ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qUf" = ( -/obj/structure/cargo_container/lockmart/left, /turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/landing_zone_1/tunnel) "qUh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"qUq" = ( +"qUF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"qUs" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) -"qUz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"qUD" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ - pixel_y = 9; - pixel_x = -3 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"qUQ" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/west) -"qVb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"qVf" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"qVl" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qVN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"qVA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"qVM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"qVQ" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/window{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"qWb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "qWf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -43673,150 +35783,78 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"qWi" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"qWt" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"qWq" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"qWH" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) -"qWX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"qWI" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) +"qWR" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/south_east_street) +"qXk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Human Resources Office" + name = "\improper A-Block Fitness Centre Airlock" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"qXt" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = -11 }, -/area/lv522/indoors/a_block/dorms) -"qWZ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "70" +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = 13 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qXs" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qXz" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -2; + pixel_y = 7 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "qXH" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toy, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"qXO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "qXY" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"qYc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness/glass) -"qYk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"qYi" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/atmos/cargo_intake) -"qYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) "qYo" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"qYp" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"qYq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/lv522/indoors/c_block/mining) -"qYt" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"qYv" = ( -/obj/structure/closet/basketball, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"qYy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) "qYG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -43824,12 +35862,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"qYM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/reactor_garage) "qYP" = ( /obj/structure/platform{ dir = 1 @@ -43842,22 +35874,40 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"qYX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" +"qZa" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/lv522/indoors/a_block/kitchen) -"qZd" = ( -/obj/structure/machinery/light{ - pixel_x = 16 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"qZe" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/indoors/c_block/bridge) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) "qZf" = ( /obj/item/storage/belt/marine{ pixel_x = 7; @@ -43865,53 +35915,35 @@ }, /turf/closed/wall/strata_ice/dirty, /area/lv522/oob) -"qZu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"qZB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"qZC" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"qZJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"qZi" = ( +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"qZk" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qZl" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"qZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) "qZT" = ( /obj/item/prop/colony/usedbandage{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"qZW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "qZY" = ( /obj/item/weapon/gun/rifle/m41a{ current_mag = null @@ -43921,34 +35953,23 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"raj" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"ran" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +"rab" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, -/area/lv522/indoors/a_block/kitchen) -"rar" = ( -/obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"ras" = ( -/obj/structure/powerloader_wreckage/jd, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"rad" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"raq" = ( +/obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "raH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -43958,16 +35979,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) -"raQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"raN" = ( +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "raS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -44000,6 +36016,10 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"raX" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "rbb" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -44035,57 +36055,80 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"rbL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"rbn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"rbK" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/mining) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "rbV" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; layer = 3.1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"rbW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "rbX" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"rbZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +"rbY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "rcd" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/poncho, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"rch" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rck" = ( +/obj/structure/largecrate/random/barrel{ + layer = 5.1; + pixel_x = 13; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) "rcr" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"rcw" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"rcF" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) "rcO" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1; @@ -44125,35 +36168,38 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"rcR" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"rcV" = ( -/obj/structure/machinery/bioprinter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"rdc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rcS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"rcX" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) +"rdd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/bar) -"rdf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rde" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rdg" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"rdp" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/atmos/reactor_garage) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "rdq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -44162,25 +36208,17 @@ }, /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) -"rdz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "rdF" = ( /obj/structure/closet/crate/medical, /obj/item/tool/portadialysis, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"rdG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "rdM" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -44191,25 +36229,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rdP" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_east_street) "rdT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) -"rej" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) "reo" = ( /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) @@ -44219,114 +36242,67 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"rew" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_2/ceiling) -"rex" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"reB" = ( -/obj/item/tool/surgery/WYautopsy, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) +"reK" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "reQ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"rfc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"rfe" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"rfg" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"reR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rfi" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "95a" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"reU" = ( +/obj/item/ammo_magazine/rifle/m4ra/ap{ + current_rounds = 0 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) "rfk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/dorm_north) -"rfB" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 6; - layer = 3.1; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"rfq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"rfv" = ( +/obj/structure/surface/table/almayer, +/obj/item/disk{ + desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; + name = "brat 2 disk" }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rfC" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/machinery/recharger{ + layer = 2.9; + pixel_x = 5; + pixel_y = -13 }, -/area/lv522/indoors/a_block/medical) -"rge" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) -"rgk" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"rgA" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "97a"; - opacity = 0 - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"rfL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"rfY" = ( +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"rgc" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"rgg" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "rgG" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -44335,111 +36311,58 @@ /obj/structure/platform, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"rhh" = ( -/obj/structure/bed/chair/wheelchair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"rhk" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +"rgK" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/prison{ +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"rhl" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"rhS" = ( +/obj/structure/platform, +/obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; - icon_state = "greenfull" + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) -"rhz" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"rhB" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rhF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"rie" = ( +"rhX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"rig" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rii" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "99a" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ris" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 7; - pixel_y = 9 +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) +"rij" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer{ + pixel_x = -9; + pixel_y = 3 }, -/obj/item/storage/firstaid/fire, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 }, -/area/lv522/indoors/a_block/medical/glass) -"riE" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"riJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"rir" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"riZ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 15 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"riS" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"riV" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "rjn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6; @@ -44457,91 +36380,73 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"rjx" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = -2 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"rjD" = ( -/obj/item/tool/lighter/zippo{ - layer = 3.1; - pixel_x = 12; - pixel_y = 18 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"rjJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rjK" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"rjN" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"rjQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rjP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/bed{ + can_buckle = 0 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rkR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/barricade/handrail{ - dir = 1 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rkV" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rjZ" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rkx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"rla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/filt) -"rls" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"rlt" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) "rlB" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"rlE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"rlG" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/bridges/op_centre) -"rlI" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"rlK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rlM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "rlV" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/barricade/wooden{ @@ -44549,43 +36454,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"rlX" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"rmi" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges) -"rmk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/weapon/gun/launcher/grenade/m81/m79, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"rmm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "rmp" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, @@ -44599,62 +36467,80 @@ }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"rmC" = ( -/obj/structure/bed/chair{ - dir = 1 +"rmJ" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"rmD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/obj/structure/barricade/handrail{ + dir = 4 }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"rmM" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, +"rmK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) +"rmL" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" }, -/area/lv522/indoors/a_block/hallway) -"rmV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"rmQ" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"rmR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "rmX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"rng" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 +"rnc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "blue" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/hallway) -"rnp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"rne" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rni" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 }, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "rnq" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/landing_zone_2) @@ -44665,14 +36551,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"rnA" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"rnw" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/gm/river, +/area/lv522/atmos/sewer) "rnB" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) @@ -44682,37 +36568,42 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rnT" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"rnU" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/lv522/landing_zone_1) -"rnX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"rob" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -9; - pixel_y = 7 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/device/flashlight/lamp{ - pixel_x = 7 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/lv522/indoors/c_block/cargo) -"rod" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/lv522/indoors/a_block/fitness/glass) +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"roc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rog" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "rot" = ( /obj/structure/cargo_container/kelland/right, /turf/open/asphalt/cement, @@ -44724,67 +36615,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) "rox" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"roL" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"roM" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"roN" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"roT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rpe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"roH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/effect/spawner/random/toy, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_2/ceiling) +"rpi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness/glass) +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"rpj" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"rpl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "rpm" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -44796,37 +36654,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness/glass) -"rpG" = ( -/turf/open/floor/prison{ - dir = 5; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"rqd" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rqn" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rqq" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/landing_zone_2) -"rqs" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/bridges) -"rqA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/c_block/cargo) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) "rqE" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/prop/almayer/CICmap{ @@ -44842,15 +36683,50 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"rqT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rqU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"rqY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"rqZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "rrf" = ( /obj/structure/platform, /obj/structure/prop/invuln/lattice_prop{ @@ -44860,43 +36736,23 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"rro" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"rrI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"rrN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rrV" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" +"rrA" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rrS" = ( +/obj/structure/fence{ + layer = 2.9 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/central_streets) "rsa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -44904,32 +36760,27 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) -"rsl" = ( -/obj/structure/surface/rack, +"rsd" = ( /obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/indoors/a_block/dorm_north) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "rsq" = ( /obj/item/toy/beach_ball, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"rsB" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"rsD" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "32" }, -/area/lv522/atmos/cargo_intake) +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rsE" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "rsF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -44956,38 +36807,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"rtn" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "rtr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"rtv" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"rtw" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) "rtz" = ( /obj/item/stack/sheet/wood, /obj/item/ore/diamond, @@ -45000,12 +36825,11 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) -"rtX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +"rtQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "ruc" = ( /obj/structure/cargo_container/kelland/left{ layer = 2.9 @@ -45019,55 +36843,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"ruj" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "28" - }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1 +"rut" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"rus" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "ruv" = ( /obj/structure/blocker/invisible_wall, /obj/item/clothing/head/soft/ferret, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"ruG" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "ruH" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"ruS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"ruY" = ( -/obj/structure/machinery/optable, -/obj/structure/machinery/light{ +"ruN" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"rvg" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ruS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) "rvh" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, @@ -45076,47 +36885,67 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"rvu" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"rvv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"rvl" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"rvq" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/c_block/cargo) -"rvw" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/dorm_north) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "rvx" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"rvI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +"rvD" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"rvK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"rvV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"rwb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_y = 3 + }, +/obj/item/paper/janitor, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rwl" = ( +/obj/structure/cargo_container/kelland/left, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 28 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "rwo" = ( /obj/structure/surface/table/almayer, /obj/item/stack/tile/plasteel{ @@ -45129,15 +36958,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"rwp" = ( -/obj/structure/prop/turbine_extras, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "rwx" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -45161,6 +36981,12 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"rwz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "rwB" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/shale/layer1, @@ -45184,11 +37010,14 @@ /obj/structure/machinery/light/double, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"rwM" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"rwQ" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/engineering) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "rwR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -45200,133 +37029,92 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"rwW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "rwX" = ( /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"rxl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/tofukabob, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +"rxs" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"rxo" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"rxu" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "rxI" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_street) -"rxT" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"ryb" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"ryj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"rxR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo/glass) -"rys" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"ryi" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"ryA" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"ryu" = ( -/obj/structure/surface/rack, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/structure/machinery/light/double, -/obj/item/ore/silver, -/obj/item/ore/silver, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"ryv" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/indoors/a_block/security) -"ryO" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"ryC" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/executive) -"ryT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rzg" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/indoors/a_block/corpo/glass) -"ryU" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/landing_zone_1) -"ryW" = ( -/obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/outdoors/colony_streets/north_street) -"rza" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"rzh" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "36" }, -/area/lv522/atmos/filt) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rzl" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "rzq" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rzz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"rzG" = ( +"rzJ" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "rzR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -45334,290 +37122,182 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"rAc" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "86b"; - opacity = 0 +"rzT" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "72" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rAf" = ( +"rzU" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"rAg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"rAt" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rAu" = ( -/obj/structure/platform_decoration, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/landing_zone_1) -"rAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/bridges) -"rAL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"rAX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"rBd" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"rBg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) -"rBz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"rBU" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "39" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rBZ" = ( -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 6; - layer = 4.1 - }, -/obj/structure/prop{ - desc = "A flight computer that can be used for autopilot or long-range flights."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "camerasb_old"; - name = "dropship navigation computer"; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rCa" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"rCi" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "89b"; - opacity = 0 - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rCp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rCu" = ( -/turf/open/floor/prison{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"rzZ" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/outdoors/n_rockies) -"rCz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 + id = "Sec-Armoury-Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"rAa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Entrance Office"; + pixel_y = 26 }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"rCE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"rAb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"rCH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/off{ - layer = 3.1; - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"rCI" = ( -/obj/structure/shuttle/part/tornado{ - icon_state = "6" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"rCQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" + dir = 5 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"rDb" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rAf" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/wo_supplies/storage/m56d, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rDu" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "27" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rDz" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rDM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"rEc" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"rAA" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"rAU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"rEm" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rAY" = ( +/obj/item/storage/backpack/marine/engineerpack/satchel, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rBd" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/t_comm) -"rEo" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rEV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"rBz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"rFh" = ( -/obj/structure/platform_decoration{ +"rBC" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) +"rBG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"rDE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"rDX" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"rDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"rEF" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rEJ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"rEO" = ( +/obj/structure/platform{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rFp" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "37" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rFw" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"rFb" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rFk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rFr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"rFs" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"rFR" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "rFT" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"rGg" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "38" +"rFW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/structure/cargo_container/wy/mid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) "rGi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) -"rGm" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"rGt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) +"rGz" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) "rGD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -45627,145 +37307,96 @@ /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rGN" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"rHl" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" +"rGJ" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"rGQ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv522/indoors/a_block/kitchen) -"rHu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"rHq" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"rHG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "rHX" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, /obj/item/trash/chips, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"rIj" = ( -/obj/structure/fence{ - layer = 2.9 +"rIa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"rIe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "rIn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"rIr" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"rIx" = ( -/obj/structure/machinery/light{ - dir = 4 +"rID" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"rIG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block Bar" }, -/area/lv522/indoors/c_block/casino) -"rIB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison{ +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"rIP" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"rIE" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"rIH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"rIM" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" + icon_state = "p_stair_full" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/landing_zone_1/ceiling) -"rIZ" = ( -/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"rJf" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rIY" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorm_north) -"rJr" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"rJv" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"rJz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) "rJC" = ( /obj/structure/window_frame/strata, /obj/item/shard{ @@ -45774,141 +37405,71 @@ /obj/item/stack/rods, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"rJG" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"rJI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/nw_rockies) -"rKa" = ( +"rKc" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"rKe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rKg" = ( +/obj/structure/bed/roller, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"rKh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"rKj" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/prop/alien/hugger, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 9 }, -/area/lv522/indoors/a_block/fitness/glass) -"rKt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rKm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"rKs" = ( +/obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rKz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rKB" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"rKS" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rKQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "rKW" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"rLe" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, +"rKX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"rLg" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"rLq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rLt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"rLn" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"rLu" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "95" }, -/area/lv522/indoors/a_block/fitness) +/area/lv522/landing_zone_forecon/UD6_Tornado) "rLx" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -45917,40 +37478,15 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"rLy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rLB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/fence, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/nw_rockies) -"rMb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"rLz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "rMd" = ( /obj/item/weapon/gun/boltaction{ current_mag = null; @@ -45959,31 +37495,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"rMg" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"rMi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"rMr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/hallway) "rMz" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -45995,32 +37506,53 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"rMD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) +"rMB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "rME" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/outdoors/colony_streets/north_east_street) "rMF" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) +"rMM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) +"rMQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) "rMR" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"rNg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rNh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) "rNm" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"rNs" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) "rNv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46036,16 +37568,21 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"rNF" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"rNG" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/indoors/lone_buildings/chunk) -"rOb" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"rNX" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 }, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) "rOf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -46055,6 +37592,12 @@ "rOg" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) +"rOh" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Southwest Landing Zone" + }, +/turf/open/floor/plating, +/area/shuttle/drop1/lv522) "rOi" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -46069,182 +37612,111 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"rOw" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"rOD" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"rOO" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 +"rOt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"rOP" = ( +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"rOB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"rOZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rPl" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) "rPu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"rPQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"rQd" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"rQg" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"rPR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/bridge) +/obj/structure/machinery/disposal, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "rQB" = ( /obj/structure/closet/crate/miningcar/yellow, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"rQL" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"rRa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"rRc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/cargo) -"rRm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"rRr" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"rQG" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"rQJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"rQL" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 }, -/area/lv522/indoors/a_block/medical) -"rRy" = ( -/obj/structure/prop/server_equipment/yutani_server{ - pixel_y = 17 +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"rQN" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/obj/structure/machinery/light{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"rRA" = ( -/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rQP" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -3; + pixel_y = 11 }, -/area/lv522/atmos/way_in_command_centre) -"rRJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rQR" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "61" }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 6; - pixel_y = 11 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rQX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"rRn" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/item/trash/ceramic_plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs{ - pixel_y = 2 +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"rRF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" }, -/area/lv522/indoors/c_block/t_comm) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) "rRP" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/prop/invuln/lattice_prop{ @@ -46258,13 +37730,17 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"rRY" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"rRR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rRW" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/landing_zone_2) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "rSd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -46288,117 +37764,67 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"rSe" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"rSh" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"rSv" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rSx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/landing_zone_1/ceiling) -"rSs" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rSy" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"rSN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"rTi" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib4" }, -/area/lv522/atmos/sewer) -"rSG" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 5; - pixel_y = -6 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"rTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = 3; + pixel_y = 7 }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 10 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"rSQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"rSW" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/fernybush{ - pixel_y = 12 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"rTf" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"rTh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"rUe" = ( -/obj/structure/largecrate/supply{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"rUg" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"rTJ" = ( +/obj/structure/prop/turbine_extras/left, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"rUl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"rUa" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"rUb" = ( +/obj/item/trash/barcardine, +/obj/structure/largecrate/random/mini{ + pixel_x = -7; + pixel_y = 16 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "rUr" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 5 @@ -46406,20 +37832,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"rUJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +"rUT" = ( +/obj/structure/stairs/perspective{ dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" + icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) "rUX" = ( /obj/structure/shuttle/engine/heater{ dir = 4; @@ -46440,61 +37862,93 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"rVe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"rVb" = ( +/obj/item/prop/alien/hugger, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"rVk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"rVv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"rVy" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 }, -/area/lv522/outdoors/colony_streets/central_streets) -"rVB" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/structure/machinery/vending/cola{ + layer = 3.1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rVH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"rVO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"rVI" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 }, -/area/lv522/indoors/a_block/admin) -"rVR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"rVU" = ( +/obj/structure/cargo_container/kelland/right, +/obj/item/seeds/riceseed{ + pixel_y = 15 }, -/area/lv522/landing_zone_2) -"rVW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"rWe" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "rWu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"rWv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"rWF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rWI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"rWK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "rWP" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -46502,69 +37956,65 @@ "rWS" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"rWX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"rXa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" +"rWU" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "rXb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"rXq" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"rXr" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/outdoors/nw_rockies) -"rXE" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"rXD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "rXH" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"rYg" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" +"rXI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"rXL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rXN" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) +"rXQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "rYi" = ( /obj/structure/platform{ dir = 4 @@ -46574,31 +38024,21 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) +"rYm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "rYp" = ( /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) -"rYq" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"rYD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) "rYE" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" @@ -46621,39 +38061,40 @@ }, /turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) -"rZi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"rZE" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"rZF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"rZA" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"rZM" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"rZK" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"rZN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + pixel_y = 2 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"rZL" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"rZQ" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rZS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Control" }, -/area/lv522/landing_zone_2/ceiling) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"rZX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "sag" = ( /obj/structure/ore_box, /obj/item/tool/weldpack{ @@ -46661,43 +38102,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"sam" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) -"sau" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"say" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +"sak" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "saz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46708,42 +38116,16 @@ "saC" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"saL" = ( -/obj/structure/platform, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"saQ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/west_reactor) -"saS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"saW" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/a_block/corpo/glass) -"saV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) "saY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "flagpole"; @@ -46753,16 +38135,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"sbd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Overseers Office" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) "sbh" = ( /obj/structure/platform_decoration, /obj/structure/stairs/perspective{ @@ -46770,50 +38142,60 @@ }, /turf/open/asphalt/cement, /area/lv522/landing_zone_2/ceiling) -"sbm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/n_rockies) -"sbx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"sbG" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "28" +"sbv" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"sbw" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"sbA" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sbH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sbJ" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"sbI" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"sbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "sbV" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"sbY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) "scc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -46821,63 +38203,91 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"scd" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"sck" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/indoors/a_block/kitchen/damage) -"sci" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "29" +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + layer = 4.3; + pixel_y = 13 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sct" = ( -/obj/structure/closet/crate/explosives, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/wo_supplies/storage/mines, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"scx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"scA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"scC" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"scv" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"scK" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"scT" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"sdc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"scw" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"scy" = ( -/obj/structure/machinery/light/double{ +/obj/structure/window/reinforced{ dir = 4; - pixel_y = -5 + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"scM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sdm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"sdy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) "sdC" = ( /obj/structure/largecrate/random/secure{ pixel_x = -7 @@ -46885,37 +38295,33 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"sdE" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sdM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"sdN" = ( -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"sdR" = ( +"sdH" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"sdQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"sdS" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"sdV" = ( +/obj/structure/target{ + name = "punching bag" }, -/area/lv522/atmos/east_reactor/south) -"sec" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "33" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"seh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/welding{ + pixel_y = 7 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "sek" = ( /obj/structure/machinery/light{ dir = 8 @@ -46925,61 +38331,59 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"seA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) +"sem" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "seF" = ( /obj/structure/window/framed/corsat, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"seG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"seZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_x = -2; + pixel_y = 12 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/obj/item/trash/plate{ + pixel_x = 6 }, -/area/lv522/indoors/a_block/dorms) -"seJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/crossbow, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"sfe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness/glass) -"seX" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"sfi" = ( /obj/structure/platform_decoration{ - dir = 1 + dir = 8 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/south_west_street) -"sfc" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"sfo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 }, -/area/lv522/atmos/way_in_command_centre) -"sfm" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/bikehorn, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"sfG" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "sfI" = ( /obj/structure/platform{ dir = 4 @@ -46989,104 +38393,65 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sfM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "sfO" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"sfZ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "16" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sgi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"sgk" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "sgm" = ( /obj/item/stack/sheet/wood, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"sgq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"sgG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"sgx" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) "sgT" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/indoors/a_block/corpo) -"sha" = ( +"shd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"shc" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/toilet{ + pixel_y = 16 }, -/area/lv522/indoors/c_block/casino) -"shm" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"shx" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/fitness/glass) -"shq" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "86a"; - opacity = 0 +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"shy" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 12 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "shD" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"shK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"shZ" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/east_central_street) "sid" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -47094,28 +38459,57 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"sil" = ( +"sio" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 }, -/area/lv522/indoors/a_block/fitness/glass) -"six" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/reagent_container/food/condiment/saltshaker{ + layer = 3.1 }, -/area/lv522/indoors/c_block/cargo) -"siT" = ( -/obj/structure/bed/chair{ +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tofubreadslice{ + pixel_x = -7 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"siv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) +"siQ" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"siU" = ( +/obj/structure/bed/bedroll{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"siV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "siX" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -47126,177 +38520,69 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"sjd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/key/cargo_train{ - icon_state = "keys" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"sjh" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"sjm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, +/turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) -"sje" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"sjp" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"sjx" = ( -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) "sjy" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/security) -"sjA" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"sjI" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) "sjQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"sjS" = ( -/obj/structure/bed/chair/dropship/passenger/folded, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"sjR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "sjY" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_west_street) -"ske" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"skk" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +"ski" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) -"skn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"skp" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 2; + pixel_y = 2 }, -/area/lv522/indoors/a_block/dorms) -"skC" = ( -/obj/structure/closet/secure_closet/engineering_welding, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"skE" = ( -/obj/structure/shuttle/part/tornado{ - icon_state = "5" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"skH" = ( +/obj/structure/surface/rack, /turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"skQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"skS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"skU" = ( +/area/lv522/landing_zone_1/tunnel) +"skY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"sli" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) "slq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -47307,6 +38593,24 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) +"slu" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"slv" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"sly" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"slz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "slD" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -47314,36 +38618,27 @@ /obj/structure/cargo_container/watatsumi/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"slK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - layer = 5; - pixel_x = 8 - }, -/obj/structure/prop{ - desc = "A computer to manage equipment, weapons and simulations installed on the dropship."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "camerasb_old"; - name = "\improper 'Tornado' weapons controls"; - pixel_x = 8; - pixel_y = 8; - layer = 4.14 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +"slF" = ( +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "slO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) +"slQ" = ( +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "smi" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -47351,105 +38646,98 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"smr" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) -"sms" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"smE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"smH" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/lv522/indoors/a_block/corpo/glass) -"smF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical/glass) -"smK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/oob) -"smR" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"smY" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"smV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Kitchen"; + pixel_y = -6 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"smX" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "snb" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"snn" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) +"sng" = ( +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "sno" = ( /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"snu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/c_block/mining) -"snI" = ( -/obj/structure/machinery/floodlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) -"snP" = ( +"snq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"snt" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/microwave{ + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_y = 15 }, -/area/lv522/atmos/east_reactor/south) -"snR" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"snv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) +"snH" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"snL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) "snX" = ( /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_2/ceiling) +"sod" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) "sol" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, @@ -47459,51 +38747,47 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"soS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/space_heater/radiator/red{ +"sow" = ( +/obj/structure/machinery/light{ dir = 1; - pixel_y = 26 + pixel_x = 16 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) +"soz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"soD" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/fitness) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"soZ" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "spe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"spj" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/landing_zone_1/tunnel) "spm" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"spn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"spo" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) "sps" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -47511,44 +38795,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"spy" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"spz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Control" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"spB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"spI" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) "spJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47556,109 +38802,96 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"spM" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"spQ" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/filt) +"sqf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"spW" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"sqi" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"sqk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"sqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/south_east_street) -"sqd" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"sqK" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"sql" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"sqr" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"sqH" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - id = "Reactor_entry_2"; - pixel_x = 16; - req_access = null - }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"sqL" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "sqQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"srf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +"sqR" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) -"srk" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"srm" = ( -/obj/structure/filingcabinet{ - pixel_x = -9 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"src" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"srl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"srp" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8 }, -/obj/structure/filingcabinet{ - pixel_x = 7 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "UD6 East"; + indestructible = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"srz" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"srF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "srJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"srM" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"srQ" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "srS" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -47666,169 +38899,128 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"sse" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ssb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "ssh" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"ssj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ssl" = ( -/obj/structure/barricade/wooden{ - dir = 4; - layer = 5.3 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"ssn" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/west_reactor) -"ssp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"sso" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"ssu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Engineering"; + pixel_y = -6 }, -/area/lv522/indoors/a_block/corpo) -"ssH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ssN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sto" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/medical) -"ssU" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "89a"; - opacity = 0 +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"stz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"std" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/outdoors/colony_streets/south_west_street) -"stG" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"stE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"stR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"sug" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) "suh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"sui" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 +"suk" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"suz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/storage/toolbox/mechanical, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"sus" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "suF" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"suG" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"suS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"suV" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ - pixel_x = -5; - pixel_y = 23 +"suH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" }, -/obj/item/tool/wrench{ - pixel_y = -6 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"suJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"svf" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"suL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"suN" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"suT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"svg" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/buckshot/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"svj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/admin) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "svo" = ( /obj/structure/surface/table/almayer, /obj/item/tool/wrench, @@ -47849,41 +39041,47 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"svW" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor) -"swf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" +"svM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"svN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"svP" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" }, -/area/lv522/indoors/c_block/cargo) -"swr" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "29" +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"svQ" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"svW" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor) +"swg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "swt" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"swu" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor) -"swD" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) "swF" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -47894,28 +39092,15 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"swW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"swY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"sxg" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) +"swK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) +"swR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "sxp" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/donut{ @@ -47924,37 +39109,48 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"sxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +"sxs" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/east_reactor/west) -"syg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/east_reactor/south) -"syl" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"sxF" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"sxL" = ( /obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"syy" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"syq" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"syA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/lv522/indoors/c_block/garage) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "syB" = ( /obj/structure/ore_box, /obj/effect/decal/warning_stripes{ @@ -47970,48 +39166,49 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"syM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"syV" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) "syW" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"szo" = ( -/obj/structure/platform{ - dir = 8 +"syY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"szb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/south_west_street) -"szJ" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"szA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block Bar" }, -/area/lv522/indoors/a_block/medical) -"szT" = ( -/obj/structure/ore_box, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"szB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"szW" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"szX" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "szY" = ( /obj/structure/bed/chair/comfy{ @@ -48020,16 +39217,14 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"sAn" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"sAa" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"sAf" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "25" }, -/area/lv522/indoors/c_block/mining) +/area/lv522/landing_zone_forecon/UD6_Typhoon) "sAp" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -48052,113 +39247,93 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"sAx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"sAT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"sAU" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"sBg" = ( -/obj/structure/prop/server_equipment/yutani_server{ - pixel_x = 3 - }, -/obj/structure/prop/server_equipment{ - pixel_x = -16 - }, -/turf/open/floor{ - icon_state = "bcircuit" +"sAw" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "73" }, -/area/lv522/atmos/east_reactor) -"sBt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/area/lv522/landing_zone_forecon/UD6_Tornado) +"sAA" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"sBy" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"sBz" = ( +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"sAE" = ( /obj/structure/platform{ dir = 1 }, -/obj/structure/machinery/squeezer, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"sBH" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"sBX" = ( -/obj/structure/girder, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sCb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"sAU" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"sAW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"sAZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = -1 }, -/area/lv522/landing_zone_1) -"sCi" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"sBr" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"sCk" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"sBt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"sCp" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "75" +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"sBv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"sBG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"sBX" = ( +/obj/structure/girder, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"sCh" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"sCj" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "48" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"sCl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"sCm" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "sCr" = ( /obj/structure/bed/chair/wood/normal{ can_buckle = 0 @@ -48166,36 +39341,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"sCw" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/north) -"sDa" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 +"sCx" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"sCA" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/item/stool, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/lone_buildings/chunk) -"sDf" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"sCE" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"sCI" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"sCM" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sDd" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) "sDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -48207,158 +39384,99 @@ /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sDz" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) "sDS" = ( /turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) -"sDY" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs{ - pixel_y = 12 - }, -/obj/item/handcuffs{ - pixel_y = 6 - }, -/obj/item/handcuffs, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) "sEa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"sEc" = ( -/obj/structure/bed/bedroll{ +"sEm" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"sEk" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/item/tool/weldingtool, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"sFb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/reactor_garage) -"sFf" = ( -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"sFp" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"sFF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/hydro) -"sFG" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "22" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"sEG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"sEY" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"sFk" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"sFy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"sFH" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) "sFL" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"sFS" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "23" - }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "23" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sGc" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "24" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sGj" = ( -/obj/structure/closet/crate, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sGt" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"sFN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 }, -/area/lv522/outdoors/nw_rockies) -"sGv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"sFT" = ( +/obj/item/explosive/mine/active{ + dir = 8 }, -/area/lv522/atmos/way_in_command_centre) -"sGD" = ( -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"sFZ" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"sGa" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/landing_zone_2) +"sGd" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/machinery/m56d_hmg{ + dir = 8 }, -/area/lv522/indoors/c_block/t_comm) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "sGF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) +"sGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"sGL" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) "sGQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -48366,68 +39484,47 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"sGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sGY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship{ - icon_state = "floor8" +"sGS" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sHb" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"sHp" = ( /obj/structure/platform_decoration{ - dir = 4 + dir = 8 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"sHq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"sHd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"sHx" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/platform{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"sHg" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sHk" = ( -/obj/structure/curtain/red, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) -"sHy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) -"sHS" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"sHK" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"sHW" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "sHY" = ( /obj/structure/platform{ dir = 8 @@ -48443,149 +39540,69 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"sIc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "sIr" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor/prison, /area/lv522/landing_zone_2) -"sIx" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "25" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sIz" = ( -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sIA" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"sIE" = ( -/obj/structure/machinery/light{ - dir = 1 +"sIy" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"sIQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -12; + pixel_y = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"sIK" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "27" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"sIN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" + pixel_x = 14; + pixel_y = 4 }, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "sIS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) +"sIX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"sJv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "sJI" = ( /obj/structure/surface/table/almayer, /obj/item/key/cargo_train, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"sJP" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"sKa" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"sKc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"sKi" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "77" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sKj" = ( -/obj/structure/toilet{ +"sJT" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/toilet) -"sKu" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"sKk" = ( +/obj/item/shard{ + icon_state = "medium" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) "sKx" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -48611,44 +39628,13 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"sKH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) +"sKD" = ( +/obj/structure/tunnel, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "sKJ" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) -"sKL" = ( -/obj/item/prop/alien/hugger, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"sKS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/prop/colony/canister{ - pixel_y = 11 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"sKU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "sLa" = ( /obj/structure/showcase{ desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; @@ -48662,49 +39648,10 @@ /obj/structure/window/reinforced, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/corpo/glass) -"sLc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/faxmachine{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "sLk" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"sLl" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/indoors/a_block/dorm_north) "sLn" = ( /obj/effect/decal/cleanable/greenglow, /obj/item/reagent_container/glass/beaker, @@ -48717,6 +39664,15 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"sLE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"sLF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) "sLG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48724,23 +39680,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"sLQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "sLR" = ( /obj/structure/prop/dam/van/damaged{ layer = 3.1 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sLT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"sLS" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "sLU" = ( /obj/structure/sign/safety/synth_storage{ pixel_x = 23; @@ -48748,19 +39696,6 @@ }, /turf/open/floor/bluegrid, /area/lv522/indoors/a_block/corpo/glass) -"sLZ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/nw_rockies) "sMa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -48778,24 +39713,6 @@ }, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) -"sMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"sML" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/east_central_street) "sMN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -48804,94 +39721,52 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"sMY" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/item/clothing/under/blackskirt{ - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"sNk" = ( -/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"sNm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"sNQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"sNR" = ( -/obj/structure/coatrack{ - pixel_y = 24 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ - pixel_x = -2; - pixel_y = 27 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"sNU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"sOe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"sMY" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/item/clothing/under/blackskirt{ + pixel_y = -3 }, -/area/lv522/indoors/a_block/corpo) -"sOm" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/window/reinforced, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"sNk" = ( +/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"sNy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"sNQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"sOb" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"sOg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"sOs" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) "sOA" = ( /obj/item/clothing/head/welding{ pixel_y = 7 @@ -48908,11 +39783,16 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"sOL" = ( -/turf/open/floor/strata{ - icon_state = "blue1" +"sOK" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) "sOM" = ( /obj/structure/platform{ dir = 1 @@ -48925,11 +39805,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"sON" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +"sOQ" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "sOR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -48940,38 +39820,17 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"sOW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical/glass) -"sPa" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"sPb" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"sPh" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"sOZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/item/ashtray/bronze, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "sPk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -48981,21 +39840,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"sPp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office Armory"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) "sPs" = ( /obj/item/stack/rods, /turf/open/auto_turf/sand_white/layer0, @@ -49004,138 +39848,72 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"sPH" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "Corpo Vault"; - name = "Vault Lockdown" +"sPA" = ( +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 16 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"sPD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/oob/w_y_vault) -"sPS" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"sQe" = ( +/obj/structure/toilet{ + dir = 4 }, -/area/lv522/indoors/a_block/security) -"sPX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/sink{ + pixel_y = 23 }, -/area/lv522/indoors/b_block/bar) -"sQb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 }, -/area/lv522/indoors/a_block/admin) -"sQr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 12; - pixel_y = 17 +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 29 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"sQn" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 }, -/area/lv522/indoors/b_block/bar) -"sQu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) "sQD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"sQI" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"sQL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) "sQN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"sQQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"sQR" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) -"sQS" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"sQT" = ( +"sQO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"sRo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"sQY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"sQZ" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"sRd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement9" + dir = 5 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sRs" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2) "sRu" = ( /obj/structure/platform, /obj/structure/platform{ @@ -49143,15 +39921,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"sRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "sRA" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) @@ -49165,6 +39934,19 @@ }, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) +"sRT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) "sRY" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -49176,101 +39958,36 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"sSi" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"sSk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"sSl" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"sSn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) -"sSv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"sSh" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"sSG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"sSQ" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"sSD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sTd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 }, -/area/lv522/landing_zone_1) -"sSW" = ( -/obj/item/stack/rods, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"sTm" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"sSZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"sTu" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/obj/item/ore/silver, -/obj/item/ore/silver, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"sTr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"sTy" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "sTA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -49288,12 +40005,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) +"sTL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "sTR" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) +"sTT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "sTX" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -49301,54 +40029,133 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"sUj" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 8 +"sUe" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "sUs" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sUI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" +"sUx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/cargo) -"sUN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"sUA" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"sUJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"sUK" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"sUR" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"sVn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/reactor_garage) +"sVq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"sVu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) +"sVC" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) "sVJ" = ( /obj/structure/barricade/handrail{ layer = 3.7 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"sVM" = ( -/obj/structure/closet/emcloset, +"sVK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_y = 15 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"sVQ" = ( +/obj/structure/prop/vehicles{ + icon_state = "truck_damaged" }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"sVY" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"sWb" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "30" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sWf" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"sWh" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "sWn" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost/reinforced, @@ -49356,6 +40163,11 @@ "sWr" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) +"sWs" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "5" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "sWt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49365,124 +40177,150 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"sWB" = ( -/obj/structure/prop/almayer/computers/sensor_computer2{ - density = 0; - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"sWT" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +"sWV" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"sXb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 }, -/area/lv522/indoors/a_block/admin) -"sXm" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -4; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) -"sXo" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"sXM" = ( -/obj/structure/surface/table/almayer, +"sXi" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"sXO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/engineering) -"sXQ" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"sXS" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"sXU" = ( +/obj/structure/fence, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"sXW" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "sXZ" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"sYh" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sYk" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) "sYl" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sYv" = ( -/obj/structure/platform{ - dir = 8 +"sYp" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"sYA" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 9 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "sYH" = ( /turf/open/floor/plating, /area/shuttle/drop1/lv522) -"sYM" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"sYK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 }, -/area/lv522/indoors/c_block/casino) -"sZq" = ( -/turf/open/gm/river, -/area/lv522/atmos/filt) -"sZs" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"sYO" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/dorm_north) -"taj" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"sZg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_y = 9 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"sZj" = ( /obj/structure/closet/crate, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/item/stack/sheet/plasteel/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"sZm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"sZq" = ( +/turf/open/gm/river, +/area/lv522/atmos/filt) +"sZt" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"sZO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"sZR" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"sZU" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tav" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "taw" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, @@ -49508,49 +40346,26 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"taO" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) "taP" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"taQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"taS" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/outdoors/n_rockies) -"taW" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"taR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"tbl" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "16" +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"taY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "tby" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -49558,77 +40373,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"tbJ" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"tbK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor{ +"tbL" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"tcj" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/b_block/bridge) -"tco" = ( -/obj/item/shard{ - icon_state = "medium" + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"tbR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/indoors/a_block/hallway) -"tcu" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "83" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tcv" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"tcm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tcz" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "17" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"tcx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 16 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tcE" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 10 }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -9; + pixel_y = 5 }, -/area/lv522/indoors/b_block/bridge) +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "tcJ" = ( /turf/closed/shuttle/elevator{ dir = 9 @@ -49641,12 +40431,23 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"tcP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"tcQ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"tcW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "tdi" = ( /obj/structure/prop/dam/crane, /obj/effect/spawner/random/toolbox{ @@ -49655,6 +40456,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) +"tdl" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"tdp" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"tdu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"tdv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/light, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) "tdz" = ( /obj/item/book/manual/marine_law{ pixel_x = 7 @@ -49669,97 +40498,48 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tdD" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib4" - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"tdE" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "9" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tdH" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "47" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tdM" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"tdS" = ( +"tdL" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tdT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/hallway) -"tdV" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"tdX" = ( +/obj/structure/largecrate/random, +/obj/item/storage/box/packet/high_explosive{ + pixel_x = -5; + pixel_y = -14 }, -/area/lv522/indoors/a_block/admin) -"teh" = ( -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -1; + pixel_y = 8 }, -/area/lv522/indoors/a_block/dorms) -"tek" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"tes" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"tew" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +/obj/item/trash/plate{ + pixel_y = 13 }, -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 20 }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tet" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"tev" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/hydro/glass) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "tex" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -49767,65 +40547,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"tez" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "teD" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"teE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"teL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tfb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, +"teG" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"teU" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/area/lv522/landing_zone_1) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "tfi" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"tfl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/railgun_camera_pos, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_1/ceiling) -"tfK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +"tfz" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) "tfO" = ( /obj/item/prop/colony/usedbandage{ dir = 9; @@ -49837,100 +40603,72 @@ "tfP" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"tfV" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "48" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tfW" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/reactor_garage) -"tfZ" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) +"tfS" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) "tgj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"tgq" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"tgo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1) -"tgM" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "15" +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"tgG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"thb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/weak{ - dir = 1 +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"tgL" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"tgQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/area/lv522/indoors/a_block/security) -"thc" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"tgR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"thg" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) -"thd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"the" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "71" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"thi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"thm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "thw" = ( /obj/item/tool/pen/blue/clicky{ pixel_x = 6 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"thI" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) +"thE" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/east) +"thS" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "thU" = ( /obj/structure/prop/invuln/overhead_pipe{ name = "overhead pipe"; @@ -49939,33 +40677,25 @@ }, /turf/closed/wall/mineral/bone_resin, /area/lv522/oob) -"til" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) -"tiC" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"tij" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"tip" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "tiJ" = ( /obj/item/explosive/grenade/incendiary/molotov, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"tiM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"tiP" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "tiQ" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) @@ -49988,40 +40718,57 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"tjg" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"tje" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"tjF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"tjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 }, -/area/lv522/atmos/east_reactor/west) -"tjh" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 6 }, -/area/lv522/indoors/c_block/garage) -"tjx" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 }, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/window{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "tjM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"tjQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) "tjR" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/atmos/outdoor) +"tjU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "tjV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -50030,36 +40777,27 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) +"tkg" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "tkm" = ( /obj/structure/curtain, /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tkx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"tks" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman{ - layer = 2.9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"tkA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"tkF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_2) -"tkC" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/platform{ + dir = 8 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "tkL" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -50068,234 +40806,108 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"tkM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tkW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"tlr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tlv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"tlz" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tlB" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"tlF" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"tlM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) -"tlR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine{ - pixel_y = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"tlX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tlZ" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tms" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"tmy" = ( +"tkP" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/b_block/bridge) -"tmA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/hydro) -"tmC" = ( -/obj/structure/platform{ - dir = 1 + dir = 8 }, +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tmL" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tlo" = ( /obj/structure/surface/table/almayer, -/obj/item/device/walkman{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/device/cassette_tape/pop1{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"tlr" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/area/lv522/landing_zone_1/ceiling) -"tmX" = ( -/obj/structure/platform{ +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tlD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/deployable{ dir = 1 }, -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tne" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"tnh" = ( -/obj/structure/bed/chair{ +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"tlJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"tni" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"tlU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"tmh" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"tmq" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tms" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"tmH" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/outdoors/colony_streets/south_east_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"tnl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "tns" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"tnK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tnL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tnH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/b_block/bar) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tnM" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"tnN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"toe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/lv522/indoors/a_block/corpo/glass) -"tog" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"too" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"top" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) "tos" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -50309,32 +40921,28 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) +"toy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) "toF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"toY" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"toZ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/falcon_drone{ - desc = "Some sort of fancy...toy? You're not sure.."; - pixel_x = -12 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"toH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"toK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "tpa" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -50344,93 +40952,78 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"tpl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"tpz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "tpD" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tpN" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) +"tpF" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"tpH" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"tpT" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) "tpV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) +"tpW" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "tpZ" = ( /obj/structure/curtain/red, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"tqb" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tqh" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +"tqC" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"tqL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor/south) -"tqG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"tqR" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"tqU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"tra" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"trf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "trj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"trq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/tool/pen, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "trD" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -50442,19 +41035,22 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"trV" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"trR" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/ammo_magazine/rifle/m4ra{ + pixel_x = 5; + pixel_y = 6 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "trW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 8 @@ -50469,77 +41065,44 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) -"tsv" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"tsx" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"tsC" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tsE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 8 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 3 }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tsM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"tsV" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"tsK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"tsU" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/dorms) -"ttd" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ttf" = ( /obj/effect/landmark/corpsespawner/forecon_spotter, @@ -50550,59 +41113,51 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"tth" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tti" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"ttp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"ttj" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ttm" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tts" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "ttC" = ( /obj/item/weapon/gun/smg/nailgun, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"ttT" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"tue" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"ttO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "tum" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tur" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"tuw" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/landing_zone_2) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "tuJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -50617,36 +41172,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"tuK" = ( -/obj/structure/ore_box, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"tvi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"tvk" = ( -/obj/structure/prop/turbine_extras/border, -/obj/structure/prop/turbine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"tvn" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/central_streets) "tvq" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_wy"; @@ -50668,116 +41193,91 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tvx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"tvz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"tvO" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"tvP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"tvZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"twq" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"tvy" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/admin) -"tww" = ( -/turf/open/floor/prison{ +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"tvF" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"tvN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/phone_base/colony_net{ dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"twB" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "19" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"twQ" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Botany"; + pixel_x = 16 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"tvR" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) +"twa" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"twm" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "twT" = ( /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"twW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/marine/insulated, +/obj/item/tool/weldingtool{ + pixel_x = -4 + }, +/obj/item/tool/weldpack{ + pixel_x = 14; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "twY" = ( /mob/living/simple_animal/mouse, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"txo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, +"txb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) -"txs" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/obj/structure/platform{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"txt" = ( /obj/structure/phone_base/colony_net{ phone_category = "LV522 Chances Claim"; phone_color = "red"; - phone_id = "Reactor Meeting Room"; - pixel_y = 26 + phone_id = "LZ1 Service Tunnel"; + pixel_y = 24 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"txd" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"txJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "txK" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, @@ -50787,15 +41287,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"tyb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tya" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 }, -/area/lv522/atmos/sewer) +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) "tyc" = ( /obj/structure/surface/rack, /obj/item/storage/bag/ore, @@ -50813,24 +41313,16 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"tyl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"typ" = ( -/obj/item/storage/backpack/marine/engineerpack/satchel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"tyj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/security) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"tyu" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "tyy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -50843,119 +41335,150 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"tyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tyY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"tzb" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "tzd" = ( /turf/closed/shuttle/elevator{ dir = 4 }, -/area/lv522/indoors/c_block/mining) -"tzm" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"tzz" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/largecrate/random/mini{ - pixel_y = 14 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tzA" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tzF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/area/lv522/indoors/c_block/mining) +"tzg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"tzj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"tzz" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/largecrate/random/mini{ + pixel_y = 14 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tzY" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tzD" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tzM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"tAh" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 +"tzS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) -"tAn" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"tzX" = ( +/obj/item/trash/uscm_mre, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"tzZ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/indoors/c_block/cargo) +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"tAb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"tAc" = ( +/obj/structure/largecrate/random/case, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "tAr" = ( /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/prison, /area/lv522/landing_zone_1) -"tAu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tAI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"tAK" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"tAN" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"tAP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/area/lv522/indoors/a_block/garden) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tAT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) "tBb" = ( /obj/structure/prop/dam/drill, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"tBw" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +"tBg" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"tBp" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tBz" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"tBB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) "tBC" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -50963,15 +41486,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"tBM" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/defenses/handheld/sentry, -/obj/item/defenses/handheld/sentry, -/obj/item/device/sentry_computer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "tBQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -50984,13 +41498,20 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tBS" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"tBU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"tBZ" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) "tCa" = ( /obj/item/trash/uscm_mre{ pixel_x = 10; @@ -51025,6 +41546,16 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"tCJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tCL" = ( /obj/structure/surface/table/gamblingtable, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -51039,177 +41570,78 @@ "tCN" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/south_east_street) -"tCR" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" +"tCT" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tCX" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tCZ" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) +"tDb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/east_reactor) +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) "tDd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tDm" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tDq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"tDB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" +"tDJ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) -"tDQ" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) +"tDM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase{ - pixel_y = 6 - }, -/obj/item/storage/briefcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tDR" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/north) -"tDS" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/admin) -"tEc" = ( -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"tEk" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tDN" = ( /obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"tEu" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/south_street) -"tEC" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) -"tEJ" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"tEM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tEW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"tEY" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/m_gift, -/obj/item/coin/diamond, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"tDS" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/admin) +"tEX" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo) -"tFf" = ( -/obj/structure/bed/chair/comfy/beige{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"tFc" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"tFk" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/platform{ + dir = 1 }, -/area/lv522/indoors/a_block/corpo) -"tFu" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tFd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tFl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tFx" = ( /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_1/ceiling) @@ -51224,22 +41656,28 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tFC" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"tFE" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"tFZ" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tFN" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "tGb" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -51262,88 +41700,50 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"tGm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liason Office " - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "tGo" = ( /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tGw" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" +"tGE" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/landing_zone_2) -"tGy" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"tGI" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"tGF" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"tGH" = ( +/obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"tGP" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"tGY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"tHo" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"tGO" = ( +/obj/item/trash/barcardine, +/obj/item/tool/weldingtool, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"tHF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 }, -/area/lv522/indoors/c_block/mining) -"tHC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tHG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/lv522/atmos/filt) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "tHJ" = ( /obj/structure/platform{ dir = 8 @@ -51352,54 +41752,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"tIy" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"tHO" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tIn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"tIA" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 }, -/area/lv522/landing_zone_1) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) "tID" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tIF" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tIM" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.2 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/east_central_street) "tIQ" = ( /obj/structure/barricade/sandbags, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"tIT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) "tIW" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control/brbutton/alt{ @@ -51414,6 +41789,16 @@ /obj/vehicle/train/cargo/trolley, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) +"tJd" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "tJk" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 1; @@ -51422,64 +41807,101 @@ }, /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/oob) -"tJm" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"tJn" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "29" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tJp" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"tJG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Garage"; + pixel_x = -16 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"tJM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tJx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman{ + layer = 2.9 }, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"tJz" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"tJB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"tJI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "tJN" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tKb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" +"tJO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 }, -/area/lv522/atmos/cargo_intake) +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"tJU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"tJW" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Corporate"; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "tKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"tKf" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_x = -9; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "tKo" = ( /obj/structure/prop/invuln/overhead/flammable_pipe/fly{ icon_state = "flammable_pipe_3"; @@ -51511,39 +41933,10 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"tKR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"tKS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_1/ceiling) -"tLl" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) +"tKZ" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) "tLr" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/hazardvest{ @@ -51565,112 +41958,78 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"tLA" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Casino"; - pixel_x = 16 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +"tLx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "tLE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"tLJ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tLL" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical) -"tLQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"tLF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/cargo_intake) -"tLX" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/area/lv522/oob/w_y_vault) +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"tLH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"tLU" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibleg" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"tMg" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "tMk" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"tMl" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/medical) "tMp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"tMq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/landing_zone_1) -"tMt" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/landing_zone_1) +"tMr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "tMD" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"tML" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"tMS" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) +"tMI" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "tMT" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze{ @@ -51681,11 +42040,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tMV" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"tMY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "tNc" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, @@ -51694,41 +42055,39 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tNr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +"tNx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"tNA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) "tNC" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) +"tNE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"tNN" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) "tNQ" = ( /obj/structure/largecrate, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tNT" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed"; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"tOe" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice9"; + pixel_x = -5 }, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) "tOo" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) @@ -51742,14 +42101,6 @@ "tOt" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/north_east_street) -"tOv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) "tOx" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/green{ @@ -51757,35 +42108,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"tOM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"tOV" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tPa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "tPb" = ( /obj/structure/prop/structure_lattice, /turf/open/auto_turf/shale/layer1, @@ -51796,12 +42118,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"tPr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "tPs" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -51812,29 +42128,32 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"tPx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"tPy" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 2.1; + name = "????"; + stat = 2 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "tPB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"tPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"tPC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "81" }, -/area/lv522/indoors/a_block/medical/glass) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tPN" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "tQb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -51844,76 +42163,22 @@ "tQi" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"tQp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"tRj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"tQw" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"tRz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) -"tQE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"tQF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"tRd" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges) -"tRu" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "40"; - density = 0; - layer = 4.2 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tRI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"tRS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"tRC" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -51928,35 +42193,22 @@ /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"tSn" = ( -/obj/structure/girder, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"tSo" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "73" +"tSt" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"tSw" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) "tSF" = ( /obj/item/trash/uscm_mre, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"tSJ" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/ammo, -/obj/item/weapon/gun/rifle/lmg{ - current_mag = null - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "tSL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/hydro) @@ -51965,29 +42217,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"tSU" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tTl" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - layer = 2.9 - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Reactor_entry_1"; - pixel_x = 5; - pixel_y = -7; - req_access = null - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "tTr" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13 @@ -52000,65 +42229,32 @@ "tTD" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) +"tTF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) "tTK" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/medical) -"tTN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) "tTR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/dorms) -"tTU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"tTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tUe" = ( +"tUo" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"tUg" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"tUA" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"tUB" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) "tUL" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -52072,448 +42268,298 @@ "tUM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"tVa" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +"tUW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" }, -/area/lv522/atmos/way_in_command_centre) -"tVj" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"tVe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) "tVv" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"tVw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"tVN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"tVP" = ( +"tVF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"tVO" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"tWt" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"tVS" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"tWa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"tWf" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"tWy" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"tWu" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" }, -/area/lv522/outdoors/colony_streets/north_street) -"tWC" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) "tWE" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"tWX" = ( -/obj/item/storage/backpack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tXa" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 4 +"tWI" = ( +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) +"tWO" = ( +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/obj/item/reagent_container/glass/rag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) -"tXd" = ( -/obj/structure/prop/invuln/lattice_prop{ +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"tXc" = ( +/obj/structure/surface/table/almayer{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 4; - pixel_y = -15 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/lv522/indoors/a_block/admin) -"tXg" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" + flipped = 1 }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tXp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) -"tXG" = ( -/obj/structure/bed/chair{ - dir = 8 +"tXn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tXt" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"tXC" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) -"tXS" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"tXO" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "tXW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) -"tYf" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ +"tYq" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"tYy" = ( +/obj/structure/surface/table/almayer{ dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"tYs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"tYt" = ( -/obj/structure/platform{ - dir = 8 + flipped = 1 }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tYM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/indoors/b_block/bridge) -"tYx" = ( /obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"tYL" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" + dir = 4 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) "tYZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"tZc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bridge) "tZh" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_west_street) -"tZi" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"tZs" = ( +"tZr" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"tZv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"tZC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) "tZF" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"tZJ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 12 - }, +"tZI" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"tZM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"tZP" = ( -/obj/item/prop/alien/hugger, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"tZV" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"uar" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_2/ceiling) -"tZR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"uad" = ( -/obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"uaA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/a_block/fitness) -"uam" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"uaC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo/glass) -"uar" = ( -/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"uaH" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "uaI" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"uaT" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +"uaU" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms/glass) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "uaY" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"ubd" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"ubv" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"ubw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"ubz" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/fitness) -"ubF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"ubH" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) "ubJ" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uco" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/fitness) -"ucx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"ubN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"ubU" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"ucB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness) -"ucD" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "74" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "ucM" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"ucV" = ( +"ude" = ( /obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness) -"ucY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"udh" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 2.9 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "udi" = ( /obj/structure/platform{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"udv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/golden_cup{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"udq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) "udA" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"udK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"udD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"udH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "udM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -52525,47 +42571,37 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"udR" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"udU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"uea" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"ued" = ( +/obj/structure/barricade/deployable{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "ueg" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"uep" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +"uei" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_y = 15 }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/machinery/washing_machine{ + density = 0; + layer = 3.5; + pixel_y = 29 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"uel" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "64" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uem" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/southwest, +/area/lv522/indoors/a_block/medical) "uet" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -52576,84 +42612,37 @@ /obj/item/tool/screwdriver, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ueQ" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) -"ueR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"ueT" = ( -/obj/structure/bed/sofa/vert/white, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"uex" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo/glass) -"ueW" = ( -/obj/structure/machinery/space_heater/radiator/red{ +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"ueH" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"ueX" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"ueY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"ueV" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"ufk" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "59" }, -/area/lv522/indoors/b_block/bridge) -"ufs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ufl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"ufp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) "ufu" = ( /obj/item/tool/wrench{ pixel_x = -8; @@ -52665,92 +42654,39 @@ /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"ufF" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5" +"ufB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "ufR" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"ufS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"ufU" = ( +"ufV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/hallway) -"ugi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"uga" = ( +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"ugq" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/cargo_intake) -"ugn" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"ugo" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"ugu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/cargo_intake) -"ugG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"ugr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/landing_zone_2) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "ugN" = ( /obj/item/storage/backpack/marine/satchel/scout_cloak, /obj/structure/pipes/standard/simple/hidden/green, @@ -52768,21 +42704,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"ugY" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"uhf" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "darkpurple2" +"uhm" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"uht" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) "uhv" = ( /obj/structure/bed/chair{ dir = 4 @@ -52796,46 +42727,14 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"uhP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"uhV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"uic" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) +"uhy" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"uhZ" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "uie" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -52843,60 +42742,60 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"uih" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"uif" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"uig" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"uiu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/eat, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"uim" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"uio" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"uir" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uiw" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"uix" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"uiz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"uiI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "uiK" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/w_rockies) "uiM" = ( /turf/open/floor/prison, /area/lv522/landing_zone_1) -"uiO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo) -"uiQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "uiS" = ( /obj/structure/window_frame/strata, /obj/item/shard, @@ -52916,19 +42815,35 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/atmos/east_reactor/south) -"ujq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/colony/canister{ - pixel_y = 14 +"uji" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -2 }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = -5 +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ujj" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"ujn" = ( +/obj/structure/machinery/computer3/server/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) +"ujs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "ujy" = ( /obj/effect/decal/warning_stripes{ @@ -52937,18 +42852,35 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"ujF" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "flagpole"; - layer = 4.11; - pixel_x = 4; - pixel_y = 3 +"ujN" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ujY" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/coagulation/icon4_8, +/area/lv522/oob) +"ukj" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) +"uko" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "ukp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -52958,25 +42890,25 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"ukt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/surgery/scalpel/manager, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +"ukv" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null }, -/area/lv522/indoors/a_block/medical) -"ukB" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ukH" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ukI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) "ukK" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/medical/bruise_pack{ @@ -52985,24 +42917,48 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) -"ulh" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "41"; - layer = 4.2; - density = 0 +"ukL" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "6" }, -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "61" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ukM" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"ula" = ( +/obj/structure/largecrate/random/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"uli" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"ulm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"ulA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ulI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/effect/attach_point/weapon/tornado/left_wing, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"ulL" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/area/lv522/indoors/c_block/cargo) +"ulM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/obj/item/tool/surgery/scalpel/manager, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "ulZ" = ( /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) @@ -53015,41 +42971,109 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) +"umi" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"umm" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"umq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "ums" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"umK" = ( -/obj/structure/platform{ - dir = 4 +"umw" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"umy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"umz" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 }, -/area/lv522/landing_zone_1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"umJ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/mop{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "umR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"umV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"unn" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Chunk 'N Dump" + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "unt" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/north_command_centre) +"uny" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"unA" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "75" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "unC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"unE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "unM" = ( /obj/structure/platform{ dir = 4 @@ -53060,57 +43084,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"unQ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "unS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"unU" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"unX" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) "uog" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"uoh" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) "uok" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -53121,71 +43104,57 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uol" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"uom" = ( -/obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"uoA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bridge) -"upa" = ( +"uon" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"uox" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"upc" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -9 - }, -/obj/structure/machinery/suit_storage_unit{ - pixel_x = 16 +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"uoC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"uoF" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 }, -/area/lv522/indoors/c_block/mining) -"upl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 4 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"uoP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 }, -/obj/item/reagent_container/food/drinks/coffee{ - layer = 3.1; - pixel_x = -5; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 6; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"uoS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"upk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, -/area/lv522/landing_zone_1/ceiling) +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "upr" = ( /obj/effect/spawner/random/technology_scanner, /turf/open/floor/plating, @@ -53198,11 +43167,39 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"upX" = ( -/obj/structure/machinery/disposal, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) +"upQ" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"upR" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"upT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"upV" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) "upZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -53216,38 +43213,42 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uqe" = ( -/obj/structure/machinery/power/apc/weak{ +"uqk" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) "uqo" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"uqt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/north_command_centre) -"uqx" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) +"uqA" = ( +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"uqE" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) "uqP" = ( /obj/structure/cargo_container/horizontal/blue/top{ pixel_x = 6 }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"uqV" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"uqY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "urd" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/plate, @@ -53266,19 +43267,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"urp" = ( -/obj/structure/platform{ - dir = 1 +"urj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 4 }, -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"uru" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "66" +/obj/item/tool/lighter/random{ + pixel_x = 9; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"uro" = ( +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "urv" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window{ @@ -53286,151 +43290,121 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"urA" = ( +"urG" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/egg_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/obj/item/frame/fire_alarm, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "urM" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"urY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" +"urT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) -"usn" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"urU" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/indoors/lone_buildings/engineering) -"usy" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/a_block/fitness) -"usz" = ( -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"urW" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, /area/lv522/indoors/a_block/fitness) -"usJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv522/indoors/b_block/bar) -"usP" = ( +"usp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"usv" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/item/cell/crap{ - pixel_x = 3; - pixel_y = 11 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"usE" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"usF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/obj/item/cell/hyper{ - pixel_x = -3; - pixel_y = -3 +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"usI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/prison{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"usN" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "darkyellowfull2" + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/t_comm) -"utd" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"uta" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "utq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"utx" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"utH" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"uue" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"uug" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/camera/autoname{ +"uuh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"uum" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"uul" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/cargo_container/wy/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"uuo" = ( +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"uus" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"uur" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) "uuy" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -53438,16 +43412,6 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"uuA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "uuB" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -53464,135 +43428,127 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"uuQ" = ( -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"uuW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"uuI" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"uuX" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"uvd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "uvg" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"uvk" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"uvj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"uvt" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"uvo" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uvw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "uvC" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/buritto, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"uvF" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"uvJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_street) -"uwb" = ( -/obj/structure/machinery/light/double, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"uwk" = ( +"uvG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) -"uwn" = ( +"uvP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "white_cyan1" + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"uvV" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"uvZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"uwq" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"uwD" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "uwF" = ( /turf/closed/wall/strata_ice/dirty, /area/lv522/outdoors/colony_streets/north_east_street) -"uwQ" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "67" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) "uwT" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uwY" = ( -/obj/item/stack/rods, -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "uxd" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"uxf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) -"uxi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/cargo_intake) -"uxn" = ( +"uxC" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"uxO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uxR" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/indoors/a_block/security) +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "uxT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -53600,58 +43556,30 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uya" = ( -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"uye" = ( -/obj/structure/largecrate/random, -/obj/item/storage/box/packet/high_explosive{ - pixel_x = -5; - pixel_y = -14 - }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_street) -"uyt" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"uyi" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -2 }, -/area/lv522/indoors/a_block/bridges/corpo) -"uyB" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"uyn" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/obj/structure/machinery/disposal, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"uyM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/prop/ice_colony/hula_girl{ - layer = 3.1; - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uyL" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) "uyN" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/clothing/head/helmet/marine/scout{ @@ -53671,46 +43599,91 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uzr" = ( -/obj/structure/stairs/perspective{ +"uyQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"uyU" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "p_stair_full" + id = "cargo_container" }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"uzD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 4; - pixel_y = 6 +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"uyV" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/indoors/c_block/mining) +"uyZ" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"uzd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"uzw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"uzy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"uzA" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"uzE" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "uzI" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/space) -"uzK" = ( -/obj/item/stack/rods, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"uzJ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/a_block/admin) -"uzR" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"uzQ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "mining_secure_blast_1"; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"uzX" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "uAa" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) @@ -53721,15 +43694,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"uAd" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/north_command_centre) +"uAj" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "uAm" = ( /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) +"uAp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"uAr" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"uAs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "uAv" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -53739,21 +43732,45 @@ }, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) +"uAW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"uBa" = ( +/obj/structure/prop/almayer/computers/sensor_computer2{ + density = 0; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "uBm" = ( /obj/structure/girder, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/east_central_street) -"uBX" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, +"uBn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"uBB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/medical/glass) +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"uBO" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uBV" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "uCo" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -53774,14 +43791,43 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"uCr" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"uCs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"uCI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"uCS" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 }, -/area/lv522/atmos/north_command_centre) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jaccuzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = -5; + pixel_y = 19; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"uCZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) "uDb" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security) @@ -53790,6 +43836,21 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) +"uDv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uDz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "uDC" = ( /obj/structure/machinery/light{ dir = 4 @@ -53803,175 +43864,53 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) -"uDM" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "41"; - layer = 4.2; - density = 0 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"uDP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "uDT" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uEj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"uEl" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +"uEk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/cargo_intake) -"uEr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Typhoon cargo door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEt" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEC" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"uEu" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"uEw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"uEy" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) "uEE" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"uEG" = ( -/obj/item/explosive/mine/active{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"uEH" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"uEP" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"uEV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"uEX" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "17" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uFe" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"uFo" = ( +"uES" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"uEZ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"uFp" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/lv522/landing_zone_1) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"uFr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) "uFz" = ( /obj/item/clipboard, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"uFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) "uFB" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10; @@ -53979,140 +43918,68 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"uFF" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"uFG" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"uFL" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) -"uFO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Equipment" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"uFT" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +"uFJ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/atmos/reactor_garage) -"uGa" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"uGb" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"uGc" = ( +/obj/item/clothing/head/hardhat/white, +/obj/item/prop/alien/hugger{ + pixel_x = 11; + pixel_y = -9 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "uGd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"uGj" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"uGl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"uGK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"uGO" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 3 +"uGh" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"uGo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"uGs" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 9 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"uGM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_2/ceiling) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "uGT" = ( /obj/item/explosive/mine/active, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"uHc" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"uHn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"uHE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"uHN" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) -"uIa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) +"uHe" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "uIe" = ( /obj/structure/ore_box, /turf/open/auto_turf/sand_white/layer0, @@ -54123,43 +43990,15 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uIn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) -"uIo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"uIr" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"uIB" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 28 - }, -/obj/structure/surface/rack, +"uIq" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"uIu" = ( +/obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"uIF" = ( -/obj/structure/barricade/handrail, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "uIJ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -54172,22 +44011,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"uIO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/indoors/a_block/fitness) -"uIW" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/west_reactor) -"uIY" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "uIZ" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -54196,56 +44019,57 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"uJl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 19 +"uJb" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"uJr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkpurple2" +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"uJk" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10 }, -/area/lv522/indoors/a_block/dorms) -"uJY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"uJA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"uJG" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"uJI" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) +"uJK" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"uJQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"uJV" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"uJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "uKa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"uKj" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"uKk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "uKw" = ( /obj/structure/bed/chair{ dir = 1 @@ -54253,73 +44077,37 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"uKy" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"uKD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) +"uKz" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "uKE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, /mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uKQ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uKR" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"uKS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uKY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"uLk" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uKR" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/lv522/atmos/cargo_intake) -"uLp" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"uKS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uLl" = ( +/obj/item/hardpoint/locomotion/van_wheels{ + desc = "Integral to getting shreaded"; + name = "Lifting weights" }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "uLw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -54356,12 +44144,26 @@ /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"uLG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "uMc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) +"uMi" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "uMl" = ( /obj/item/storage/bag/ore, /obj/structure/surface/rack, @@ -54369,35 +44171,45 @@ /obj/item/storage/bag/ore, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"uMq" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/kitchen) +"uMo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "uMr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/landing_zone_2) +"uMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"uMF" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"uMG" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"uML" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) "uMM" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"uMN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "uMO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"uMP" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/east) -"uMV" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) "uNd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -54407,6 +44219,12 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"uNl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) "uNp" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) @@ -54422,47 +44240,26 @@ }, /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) -"uNB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"uNJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"uNS" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ +"uNx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"uNT" = ( -/obj/structure/prop/invuln/fusion_reactor, -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/corsat{ - icon_state = "plate" + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 }, -/area/lv522/atmos/east_reactor) -"uNW" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"uNI" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ +/obj/item/stack/sheet/mineral/gold{ + amount = 60; pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"uOd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 12 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "uOj" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -54486,19 +44283,6 @@ "uOs" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"uOA" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) "uOD" = ( /obj/structure/bed/stool, /turf/open/floor/carpet, @@ -54510,50 +44294,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) -"uOL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +"uON" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "uPc" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"uPk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) -"uPn" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"uPo" = ( -/obj/structure/largecrate/guns/russian, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1/ceiling) -"uPv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -54561,28 +44308,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"uPF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) -"uPS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/mining) -"uQa" = ( -/obj/item/trash/uscm_mre, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"uPJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"uPY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "uQf" = ( /obj/structure/platform{ dir = 1 @@ -54592,22 +44327,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"uQg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"uQi" = ( -/obj/item/clothing/suit/storage/marine/smooth, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "uQn" = ( /obj/structure/platform{ dir = 1 @@ -54626,28 +44345,19 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"uQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"uQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"uQC" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "uQI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -54658,71 +44368,100 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"uRb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"uQM" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"uRt" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 }, -/area/lv522/indoors/a_block/corpo/glass) -"uRx" = ( -/obj/item/reagent_container/glass/rag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness) -"uRB" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = -8 +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uQN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"uQO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"uQX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) -"uRL" = ( /obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"uRf" = ( +/obj/item/prop/alien/hugger, +/obj/item/clothing/head/helmet/riot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"uRn" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = null; + pixel_x = -16 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"uRJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/outdoors/colony_streets/north_street) -"uRR" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"uRK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"uSn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"uRM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = 23; + pixel_y = 21 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"uSb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"uSk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) "uSo" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -54738,21 +44477,6 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) -"uSB" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "25" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uSI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "uSJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -54787,60 +44511,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"uTj" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +"uTn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) "uTv" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) -"uTy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"uTI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"uTK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"uTS" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/executive) -"uTV" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "uTY" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -54864,148 +44548,99 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"uUm" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 7 - }, +"uUA" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison, +/area/lv522/atmos/sewer) "uUB" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"uVa" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/filt) -"uVj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"uUH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/security) -"uVw" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"uUU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"uVc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "77" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"uVg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"uVp" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"uVq" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) "uVy" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/damage) -"uVH" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) +"uVB" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "uVI" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) -"uVN" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"uVS" = ( -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/storage_blocks) -"uVZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ashtray/bronze, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"uWh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"uWx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"uWz" = ( +"uVO" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"uVW" = ( +/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"uWC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "uWD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"uWI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block Bar" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) "uWO" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"uWT" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv522/indoors/b_block/hydro/glass) -"uXa" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2/ceiling) -"uXj" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"uWQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"uXm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) "uXp" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/warning_stripes{ @@ -55013,178 +44648,152 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"uXu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) +"uXy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "uXO" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"uYi" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"uXP" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 17 }, -/area/lv522/indoors/c_block/casino) -"uYq" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 }, -/area/lv522/indoors/c_block/cargo) +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uYh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "uYu" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"uZc" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"uZf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, -/area/lv522/atmos/west_reactor) -"uZO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"uZV" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) -"vae" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"val" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vav" = ( -/obj/effect/decal/cleanable/dirt, +"uYJ" = ( /obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"vaZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vbk" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "38" +"uYP" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" }, -/turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Tornado) -"vbm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"vbu" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"vbF" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"vbI" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Northern Dorms"; - pixel_y = 26 +"uYS" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"uZh" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/north_command_centre) +"uZl" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"uZu" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"uZM" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/north_command_centre) +"vae" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"vai" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv522/indoors/a_block/dorm_north) -"vbJ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"vat" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"vaA" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vaN" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"vaP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vaZ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 25 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vbn" = ( +/obj/item/cell/crap{ + pixel_x = -8; + pixel_y = -5 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/item/cell/crap{ + pixel_y = 8 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/cell{ + pixel_x = 7; + pixel_y = -6 }, -/area/lv522/indoors/a_block/dorms) -"vbV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vbA" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_x = -5; + pixel_y = -3 }, -/area/lv522/indoors/c_block/mining) +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vbF" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"vbO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vbW" = ( +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) "vbX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -55196,40 +44805,31 @@ }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"vcu" = ( -/obj/structure/shuttle/part/typhoon/transparent, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vcF" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"vcH" = ( -/obj/structure/barricade/wooden, +"vcx" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vcG" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"vcJ" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"vcO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "vcR" = ( /obj/structure/largecrate/random/mini/med, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) +"vcW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "vda" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -55247,41 +44847,41 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vdp" = ( +"vdj" = ( +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vdq" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"vdH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/c_block/casino) -"vdP" = ( /obj/structure/platform_decoration{ - dir = 8 + dir = 9 }, -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"vdD" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"vdV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"vdS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) "vdZ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -55289,58 +44889,29 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"veq" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"ves" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"veA" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"veD" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ +"vez" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) "veP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"veQ" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "veT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"vfb" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, +"veU" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/corpo) +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"vfi" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) "vfj" = ( /obj/structure/bed/stool{ buckling_y = 14; @@ -55348,12 +44919,21 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"vfl" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "2" +"vfk" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1"; + layer = 5.1 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"vft" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "vfC" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -55373,31 +44953,12 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"vfK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vfE" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"vfN" = ( -/obj/structure/surface/rack, -/obj/item/hardpoint/locomotion/van_wheels, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"vga" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "3" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "vgb" = ( /obj/structure/platform, /obj/structure/prop/vehicles/crawler{ @@ -55412,16 +44973,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vgs" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue{ - pixel_y = -12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) "vgw" = ( /obj/structure/platform, /obj/effect/decal/cleanable/blood/oil, @@ -55431,88 +44982,29 @@ /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) -"vgI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"vgM" = ( -/obj/structure/closet/crate/ammo, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"vgB" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/n_rockies) +"vho" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "64" }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vhd" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"vhr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vhs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"vht" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness/glass) -"vhA" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"vhC" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "4" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vhJ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "5" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vhO" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "6" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vil" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"vir" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"vhu" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_west_street) +"vhy" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/area/lv522/indoors/lone_buildings/engineering) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) "viA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -55530,18 +45022,6 @@ /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"viD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) "viE" = ( /obj/structure/platform/strata{ dir = 1 @@ -55552,22 +45032,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"viH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"viI" = ( -/obj/structure/pipes/vents/pump, -/obj/vehicle/powerloader, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) "viN" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer0, @@ -55579,74 +45043,35 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"vji" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "vjl" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/south) -"vjn" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) "vjr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vjs" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "28" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/reactor_garage) -"vjv" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vjA" = ( -/obj/structure/coatrack{ - pixel_x = 12; - pixel_y = 24 - }, -/obj/structure/coatrack{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_y = 5 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 10; - pixel_y = 27 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) "vjB" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vjC" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"vjF" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"vjD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/lv522/landing_zone_2) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "vjG" = ( /obj/structure/largecrate/random{ pixel_x = 1; @@ -55654,6 +45079,18 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"vjI" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/coagulation/icon2_0, +/area/lv522/oob) +"vjK" = ( +/obj/structure/prop/dam/truck/cargo{ + layer = 3.1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) "vjP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement, @@ -55668,6 +45105,13 @@ "vjW" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/n_rockies) +"vjY" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "vkj" = ( /obj/structure/bed/bedroll{ dir = 5 @@ -55676,31 +45120,69 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"vky" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "39" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vkC" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison{ +"vko" = ( +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "blue_plate" + icon_state = "p_stair_full" }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"vkr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"vkv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) "vkD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vkG" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +"vkJ" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 }, -/area/lv522/indoors/a_block/fitness) +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"vkR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"vkW" = ( +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vlf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"vlh" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) "vlp" = ( /obj/item/pipe, /turf/open/floor/prison, @@ -55709,58 +45191,25 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"vlv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"vlN" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"vlT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +"vlD" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 }, -/area/lv522/outdoors/colony_streets/east_central_street) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) "vlX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo_fitness) -"vmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +"vmj" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"vmv" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"vmo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vmp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) "vmG" = ( /obj/structure/surface/table/gamblingtable, /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -55770,20 +45219,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"vmL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard/full_stack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"vmM" = ( -/obj/structure/girder, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) "vmQ" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -55791,116 +45226,90 @@ /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vmT" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"vne" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"vni" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"vnp" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"vnq" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"vnB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"vmS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 7 }, -/area/lv522/indoors/a_block/corpo/glass) -"vnX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vmV" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"vnw" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vou" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"vov" = ( -/obj/item/prop/alien/hugger{ - pixel_x = -6 + icon_state = "p_stair_full" }, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"vnH" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"voI" = ( -/obj/structure/fence{ - layer = 2.9 +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"vob" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"vol" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"vor" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vov" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -6 }, -/area/lv522/outdoors/colony_streets/central_streets) -"voL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"vox" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"voJ" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/area/lv522/outdoors/colony_streets/central_streets) -"voX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"voO" = ( +/obj/item/tool/crowbar, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"voQ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = -9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/toy/beach_ball/holoball{ + pixel_y = -3 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "vpa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -55911,79 +45320,65 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vpi" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 +"vpf" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/obj/structure/flora/bush{ - pixel_y = 9 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"vpo" = ( +/obj/structure/bedsheetbin{ + pixel_y = 7 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) -"vpk" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "vpp" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/landing_zone_2/ceiling) -"vpq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"vpw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"vpx" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"vpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"vpz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"vpC" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "vpD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vpO" = ( +"vpY" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vql" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowfull/east, /area/lv522/indoors/a_block/corpo) -"vpU" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "70" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vqe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/oob/w_y_vault) -"vqk" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) "vqm" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -55992,44 +45387,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"vqq" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"vqs" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) "vqv" = ( /obj/structure/barricade/deployable{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"vqw" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/auto_turf/shale/layer2, -/area/lv522/landing_zone_1) -"vqH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vqW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) "vra" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"vrd" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/outdoors/colony_streets/north_east_street) "vrf" = ( /obj/structure/machinery/light{ dir = 4 @@ -56037,43 +45414,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vrg" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"vri" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/plush/farwa{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"vrp" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv522/indoors/a_block/fitness/glass) -"vrE" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"vrV" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"vrB" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"vrO" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"vrP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"vrQ" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "vrW" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -56084,153 +45450,100 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/plaincake{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"vsh" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vsa" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 }, -/area/lv522/outdoors/colony_streets/south_west_street) -"vsj" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -5; - pixel_y = 13 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 6; + pixel_y = 20 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"vsg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/lv522/atmos/reactor_garage) -"vsk" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 23 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"vsv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"vsz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv522/indoors/c_block/mining) -"vso" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"vsO" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/lv522/landing_zone_1/ceiling) -"vss" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"vsP" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"vsX" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"vsy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"vsG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/east, /area/lv522/indoors/a_block/fitness) -"vsI" = ( -/obj/structure/surface/rack, -/obj/item/ore/uranium, -/obj/item/ore/uranium, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/mining) -"vsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "vtc" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/nw_rockies) -"vtl" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"vtp" = ( -/obj/structure/toilet{ - pixel_y = 16 +"vtu" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/effect/decal/cleanable/cobweb, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vtG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/a_block/executive) -"vtA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"vtN" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/landing_zone_1) -"vtP" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"vtM" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 }, -/obj/structure/window{ - dir = 8 +/obj/item/shard{ + icon_state = "medium" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platebotc" +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vtY" = ( +/obj/item/clothing/suit/storage/marine/medium, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"vub" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Equipment" }, -/area/lv522/indoors/b_block/hydro/glass) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "vuc" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -56241,62 +45554,75 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vuu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"vuj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/landing_zone_1/ceiling) -"vuF" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "48" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vuH" = ( -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"vuw" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"vuU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"vvd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) +"vvs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1/ceiling) -"vuS" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"vvI" = ( +/obj/item/stack/rods{ + pixel_y = -2 }, -/area/lv522/atmos/east_reactor/south) -"vuY" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = -6; + pixel_y = 16 }, -/obj/structure/barricade/deployable{ - dir = 1 +/obj/item/tool/mop{ + pixel_x = 13; + pixel_y = 25 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vvM" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"vvS" = ( +/obj/structure/prop/server_equipment, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vvV" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3" }, -/area/lv522/outdoors/colony_streets/north_east_street) -"vvi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "vwi" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, @@ -56306,6 +45632,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"vwr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"vws" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vwu" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"vwy" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"vwB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) "vwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/window, @@ -56315,21 +45666,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vwQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"vwW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +"vwN" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) "vxa" = ( /obj/structure/closet/crate, /obj/item/clothing/under/colonist, @@ -56343,13 +45683,6 @@ /obj/item/clothing/suit/storage/apron/overalls, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vxe" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "vxf" = ( /obj/item/pipe{ dir = 9 @@ -56360,92 +45693,59 @@ /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"vxq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" +"vxn" = ( +/obj/structure/surface/rack, +/obj/item/card/id/silver/clearance_badge/cl{ + desc = "Wow sorry, didn't mean to drop that in front of you, it's real, btw."; + name = "certified powerloader operator card"; + pixel_x = 5; + registered_name = "John Forklift" }, -/area/lv522/atmos/east_reactor/south) -"vxr" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"vxp" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/mining) -"vxD" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"vxG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_east_street) +"vxu" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "vxM" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vxT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) -"vxY" = ( +"vyj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"vyl" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vym" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/lv522/indoors/a_block/medical) -"vyk" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vyt" = ( +/obj/structure/stairs/perspective{ dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" + icon_state = "p_stair_full" }, -/area/lv522/indoors/c_block/bridge) +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "vyz" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) +"vyB" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) "vyD" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -6; @@ -56453,46 +45753,44 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/bar) -"vyH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"vzc" = ( -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"vzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +"vyI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 16 }, -/area/lv522/atmos/east_reactor/west) -"vzg" = ( -/obj/item/stack/rods{ - pixel_y = -2 +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_y = 3 }, -/obj/structure/machinery/disposal{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vyM" = ( +/obj/structure/machinery/bioprinter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"vyQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"vyR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vyT" = ( +/obj/structure/filingcabinet{ density = 0; - pixel_x = -6; + pixel_x = -8; pixel_y = 16 }, -/obj/item/tool/mop{ - pixel_x = 13; - pixel_y = 25 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) "vzn" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -6; @@ -56509,24 +45807,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vzu" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"vzw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) +"vzs" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vzx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) "vzy" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -56536,118 +45825,104 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vzE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block Bar" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"vzH" = ( +/obj/structure/filtration/machine_96x96/distribution{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/b_block/bar) -"vzV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"vzI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"vzP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/clothing/shoes/marine, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_foot"; + name = "left foot"; + pixel_x = 5; + pixel_y = 25 }, -/area/lv522/indoors/a_block/hallway) -"vzZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" - }, -/area/lv522/indoors/a_block/medical) -"vAi" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) "vAn" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"vAW" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1/ceiling) -"vAX" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"vBa" = ( -/obj/structure/girder/displaced, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"vBb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"vBd" = ( -/turf/open/floor/plating{ - icon_state = "platebot" +"vAp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -14; + pixel_y = 10 }, -/area/lv522/indoors/c_block/cargo) -"vBm" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/platform{ +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"vAy" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"vAP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"vBx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"vAR" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"vAT" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vBf" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "41" }, -/area/lv522/indoors/a_block/dorms) +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vBk" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) +"vBv" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) "vBB" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vBI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) +"vBE" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"vBF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "vBK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -56655,36 +45930,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vBM" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "vBN" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"vCv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"vBV" = ( +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 3; + pixel_y = 10 }, -/area/lv522/indoors/a_block/dorm_north) -"vCy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"vCi" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"vCr" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"vCt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "vCz" = ( /obj/item/pipe{ dir = 4; @@ -56693,28 +45967,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"vCE" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jaccuzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - pixel_x = -5; - pixel_y = 19; - serial_number = 16 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) "vCG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -56728,21 +45980,27 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"vDo" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +"vDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_2/ceiling) -"vDp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_y = 6 +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vDj" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) "vDr" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -56756,76 +46014,52 @@ /obj/item/stack/sheet/metal, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"vDL" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"vDV" = ( +"vDA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"vDC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"vDI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"vDY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "vEf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vEw" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/east) -"vEB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"vEK" = ( +"vEl" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vED" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/hydro) -"vER" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"vEH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "vEW" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"vEX" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "vFd" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -56833,6 +46067,50 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"vFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"vFq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vFs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"vFu" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"vFz" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) "vFD" = ( /obj/structure/platform{ dir = 8 @@ -56852,30 +46130,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"vFJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"vFQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"vFS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) "vGb" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -56891,10 +46145,13 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vGo" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) +"vGn" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "vGp" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) @@ -56902,32 +46159,39 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"vGB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "vGG" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"vGP" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"vGI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray/empty, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, -/area/lv522/indoors/lone_buildings/engineering) -"vHo" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"vGJ" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"vHe" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"vHg" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"vHj" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" + icon_state = "S" }, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "vHw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -56935,199 +46199,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"vHE" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_1"; - name = "treadmill switch"; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vHG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"vHz" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "vHN" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"vIb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vId" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 5; - icon_state = "darkpurple2" - }, -/area/lv522/indoors/a_block/dorms) -"vIe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vIg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Community Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"vIt" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) +"vHU" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"vIi" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) "vIy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"vIS" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"vIU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"vJb" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"vIH" = ( +/obj/item/clipboard, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"vIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "vJj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"vJn" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"vJo" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/obj/structure/prop{ - desc = "A computer to manage equipment, weapons and simulations installed on the dropship."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "camerasb_old"; - name = "\improper 'Typhoon' weapons controls"; - pixel_x = 8; - pixel_y = 8; - layer = 4.14 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "vJr" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"vJu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vJw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/sewer) "vJD" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, @@ -57139,54 +46249,46 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vJT" = ( +"vJW" = ( +/obj/item/clothing/shoes/veteran/pmc{ + name = "steel toe boots" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vKc" = ( +/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "vKe" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"vKl" = ( +"vKj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) -"vKm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 5 }, -/area/lv522/indoors/b_block/bridge) -"vKA" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"vKn" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/under/redpyjamas, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 11 }, -/area/lv522/indoors/a_block/dorms/glass) -"vKF" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 4 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "vKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -57205,103 +46307,95 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"vLf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"vKZ" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/area/lv522/indoors/b_block/bar) -"vLu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison{ +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"vLm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"vLn" = ( +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vLA" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 + pixel_y = -5 }, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vLz" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" }, -/area/lv522/indoors/a_block/medical/glass) -"vLI" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; + id = "Sec-Kitchen-Lockdown"; name = "\improper Storm Shutters" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"vLB" = ( +/obj/item/prop/helmetgarb/lucky_feather{ + pixel_x = 11; + pixel_y = 10 }, -/area/lv522/indoors/b_block/bridge) -"vLO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/item/device/implanter/subdermal_armor, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"vLN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/lv522/indoors/c_block/garage) -"vLQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"vLR" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"vLW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"vLT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/soap/deluxe{ + pixel_x = 4; + pixel_y = 13 }, -/area/lv522/indoors/c_block/cargo) -"vMg" = ( -/obj/structure/safe, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"vMa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) "vMu" = ( /obj/item/weapon/gun/boltaction, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"vMD" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"vMx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"vMy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"vMB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" + icon_state = "W" }, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) "vMJ" = ( /obj/structure/surface/table/gamblingtable, /obj/item/toy/deck{ @@ -57310,25 +46404,18 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vMM" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vMX" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"vNe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel/far) +"vNf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "vNi" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, @@ -57344,14 +46431,6 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) -"vNy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) "vNO" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -57359,28 +46438,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"vNW" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"vNY" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "vOb" = ( /obj/structure/machinery/door_control{ id = "mining_secure_blast_1"; @@ -57388,85 +46445,42 @@ }, /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) -"vOj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor{ +"vOm" = ( +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"vOo" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"vOp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "whiteyellowfull" + id = "Reactor_garage_3" }, -/area/lv522/indoors/a_block/corpo/glass) -"vOt" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"vOu" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_street) -"vOA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vOP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/command_centre) -"vOR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vOT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/c_block/bridge) -"vOY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"vOF" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"vOZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"vPb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"vOX" = ( +/obj/item/prop/colony/canister{ + pixel_y = 7 }, -/area/lv522/landing_zone_2/ceiling) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "vPk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -57474,16 +46488,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) -"vPl" = ( +"vPp" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"vPr" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "vPs" = ( /obj/structure/prop/dam/crane/damaged, /obj/structure/platform, @@ -57496,20 +46510,6 @@ /obj/structure/platform, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"vPA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) "vPO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 8; @@ -57517,116 +46517,87 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"vQn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor) -"vQL" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/indoors/a_block/corpo/glass) -"vQO" = ( +"vPP" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"vQT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vPY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/bridges/corpo) -"vQX" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"vQf" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/clothing/head/soft/sec, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"vQQ" = ( +/obj/structure/closet/bodybag, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"vRg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/obj/structure/barricade/handrail{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vRh" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"vRs" = ( /obj/structure/surface/table/almayer, -/obj/item/book{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/book{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 }, -/area/lv522/indoors/a_block/dorms) -"vRv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"vRE" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"vRQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/cargo) -"vSc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/executive) -"vSC" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/hairlesshide{ - pixel_y = -1 - }, -/obj/item/stack/sheet/hairlesshide{ - pixel_x = -2; - pixel_y = 5 +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"vSe" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 10; + pixel_y = 32 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" }, -/area/lv522/indoors/c_block/mining) -"vSJ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"vSq" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"vSE" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"vSF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) "vSM" = ( /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, @@ -57637,31 +46608,29 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"vSO" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) "vSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"vSV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 +"vSZ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv522/indoors/a_block/hallway) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vTd" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) "vTn" = ( /obj/structure/barricade/wooden{ desc = "This barricade is heavily reinforced. Nothing short of blasting it open seems like it'll do the trick, that or melting the breams supporting it..."; @@ -57676,57 +46645,55 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"vTx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +"vTq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vTG" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"vTK" = ( -/obj/structure/prop/vehicles{ - icon_state = "van_damaged" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"vTI" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vTL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "vTO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"vTQ" = ( -/obj/structure/barricade/handrail, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"vTT" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"vTW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"vUb" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"vTR" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"vTS" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) "vUe" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -57738,36 +46705,26 @@ /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"vUj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) -"vUx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"vUt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 }, -/area/lv522/indoors/a_block/admin) -"vUX" = ( -/obj/structure/powerloader_wreckage/ft, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"vUW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 3 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "vVd" = ( /obj/structure/cargo_container/kelland/left, /obj/effect/decal/warning_stripes{ @@ -57779,46 +46736,38 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"vVh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, +"vVn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) -"vVi" = ( -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"vVy" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "greenfull" + icon_state = "p_stair_full" }, -/area/lv522/landing_zone_1/ceiling) -"vVp" = ( -/obj/structure/machinery/light{ +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"vVC" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"vVs" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/b_block/bar) -"vVx" = ( -/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"vVF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"vVG" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) "vVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -57826,17 +46775,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"vWe" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/hallway) +"vWk" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "vWl" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -57844,80 +46786,93 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"vWp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock"; - welded = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/casino) -"vWv" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vWw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) "vWI" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vWJ" = ( +"vWK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vXc" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vXo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"vXt" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"vXc" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vXg" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/outdoors/colony_streets/south_west_street) +"vXu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"vXz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ dir = 8 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"vXA" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1) +"vXB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"vXK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"vXO" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"vXP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "vXY" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"vYb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"vYJ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, +/obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"vYg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/n_rockies) "vYK" = ( /obj/structure/platform_decoration{ dir = 8 @@ -57929,77 +46884,40 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vYX" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"vYY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"vZm" = ( -/obj/item/shard{ - icon_state = "medium" +"vYP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"vZn" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"vYS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/lv522/indoors/toilet) -"vZv" = ( -/obj/structure/cargo_container/kelland/left, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"vZj" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/area/lv522/landing_zone_1/ceiling) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vZo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "vZy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"vZI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 8; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) "vZP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/prison, @@ -58013,51 +46931,22 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vZY" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"wac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"wan" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) "wao" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"way" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"waz" = ( -/obj/structure/machinery/light/small{ +"waK" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"waP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"waD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/toilet) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "waQ" = ( /obj/structure/platform, /obj/structure/platform{ @@ -58065,19 +46954,17 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) +"waW" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) "waZ" = ( /obj/item/trash/uscm_mre, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wbi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) "wbj" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ density = 0; @@ -58091,180 +46978,114 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"wbr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "wbt" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"wbC" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"wbE" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) -"wbL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/corpo) -"wbP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) "wbR" = ( /turf/open/floor/plating, /area/lv522/atmos/filt) -"wbX" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"wcp" = ( -/obj/structure/machinery/light{ +"wbU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"wcs" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/corpo/glass) -"wcq" = ( -/obj/structure/machinery/light{ +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"wcu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"wcD" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv522/indoors/b_block/bar) +"wcG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"wcO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"wcK" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"wcR" = ( -/obj/item/tool/crowbar, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"wcT" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"wcV" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, -/area/lv522/indoors/a_block/corpo/glass) -"wcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"wdb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) "wdd" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wdg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"wdi" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/security/glass) +"wde" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) "wdj" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"wdy" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"wdI" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"wdA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase{ + pixel_y = 6 }, -/area/lv522/landing_zone_1/ceiling) +/obj/item/storage/briefcase, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wdC" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/apc, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "wdY" = ( /obj/structure/platform{ dir = 1 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wea" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"wee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"web" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/corpo/glass) -"weh" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"wef" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"wej" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 }, -/area/lv522/indoors/b_block/bar) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) "wes" = ( /obj/structure/platform_decoration{ dir = 4 @@ -58275,6 +47096,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) +"wev" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"weB" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"weH" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) "weJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -58306,43 +47142,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorms) -"wfb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/girder/reinforced, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"wfe" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) -"wfh" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/lv522/indoors/a_block/medical/glass) -"wfi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) "wfl" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck{ @@ -58355,32 +47154,32 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wfC" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"wfE" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"wfB" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/central_streets) -"wfK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wfF" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"wfJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wfP" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) @@ -58388,15 +47187,6 @@ /obj/structure/girder/displaced, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wgl" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) "wgn" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -58406,6 +47196,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"wgI" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wgM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "wgR" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, @@ -58413,71 +47216,33 @@ "wgW" = ( /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"whh" = ( +"whb" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"whg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"whj" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"whn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"whp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"whs" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"whl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) -"whz" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"whD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"why" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) "whE" = ( /obj/structure/cargo_container/horizontal/blue/top{ layer = 3.1; @@ -58489,42 +47254,31 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"whG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2) -"whK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) -"whR" = ( -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"whI" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"whL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" }, -/area/lv522/indoors/a_block/kitchen) -"whW" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/c_block/garage) -"whZ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"wia" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "19" }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wih" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wiz" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -58548,6 +47302,16 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) +"wiM" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"wiQ" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"wiS" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/nw_rockies) "wiU" = ( /obj/item/pipe, /obj/effect/decal/cleanable/dirt, @@ -58565,15 +47329,9 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"wjy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) +"wjD" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) "wjE" = ( /obj/structure/platform_decoration{ dir = 8 @@ -58597,31 +47355,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wjP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv522/oob/w_y_vault) -"wke" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"wkh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "wko" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -58630,44 +47371,54 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"wkp" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 +"wkv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) +"wkJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" }, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"wky" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wkC" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"wkM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"wkX" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"wlq" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/kitchen/damage) -"wkO" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"wlu" = ( +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/cargo) +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "wlw" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -58686,29 +47437,41 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wlY" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"wlI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/maintenance_jack, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"wlM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"wlX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"wma" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) "wmk" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) +"wmn" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "wms" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"wmI" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv522/indoors/b_block/bar) +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) "wmJ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen{ @@ -58720,67 +47483,54 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) -"wng" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) -"wnl" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +"wmV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"wnd" = ( +/obj/item/device/defibrillator, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) "wnu" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/w_rockies) -"wny" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "wnM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"wnP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"wnT" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 }, -/area/lv522/landing_zone_1/ceiling) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) "wob" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"wog" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"woi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"wod" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 5; + pixel_x = 15 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "woq" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"wou" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wov" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/closed/wall/solaris/reinforced/hull/lv522, @@ -58817,51 +47567,30 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"wpa" = ( -/obj/structure/prop/server_equipment{ - icon_state = "rackframe_broken" - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"woV" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wpg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 }, -/area/lv522/indoors/a_block/medical/glass) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"wpd" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) "wpn" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/casino) -"wpA" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"wpF" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/indoors/c_block/mining) "wpH" = ( /obj/structure/window_frame/strata, /turf/open/floor/plating, @@ -58869,14 +47598,25 @@ "wqa" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/outdoors/colony_streets/north_west_street) -"wqt" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "41"; - layer = 4.2; - density = 0 +"wqc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"wqg" = ( +/obj/structure/largecrate/random, /turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/area/lv522/indoors/c_block/cargo) +"wqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) "wqA" = ( /obj/structure/bed/chair{ dir = 8 @@ -58884,70 +47624,100 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"wqV" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison{ +"wqD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "greenfull" + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/b_block/bridge) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"wqU" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "wrc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/reactor_garage) -"wrg" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/lv522/indoors/lone_buildings/chunk) -"wrz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wrd" = ( +/obj/structure/machinery/computer/crew/colony{ + density = 0; + pixel_y = 16 }, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"wrf" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/east_central_street) "wrC" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/corpo) -"wrY" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"wsf" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +"wrH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) -"wsz" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"wrK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"wrX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"wrZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"wsg" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, -/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"wsh" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"wsm" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"wsp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/c_block/garage) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"wsu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "wsC" = ( /obj/structure/platform{ dir = 4 @@ -58958,6 +47728,16 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"wsE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wsM" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "wsT" = ( /obj/structure/machinery/light{ dir = 4 @@ -58969,105 +47749,71 @@ /mob/living/simple_animal/mouse, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wsX" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) +"wsV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "wsY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) +"wtb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "wth" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"wtj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"wtq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wtH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wtE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/north_command_centre) -"wtI" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"wtV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/bridges/corpo) -"wtK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wtY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"wtO" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/north_street) -"wtT" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"wua" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"wud" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"wtZ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"wuE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/lv522/indoors/b_block/bar) -"wue" = ( -/obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"wuK" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"wuQ" = ( -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"wuN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) "wuX" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -59082,39 +47828,20 @@ /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"wvq" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv522/indoors/b_block/hydro/glass) "wvt" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wvB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"wvO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"wvV" = ( +"wvC" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"wvR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "wvY" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -59125,186 +47852,109 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"wwd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "wwe" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/west) -"wwy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo2"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 +"wwg" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "Corpo Vault"; + name = "Vault Lockdown" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/corsat/marked, +/area/lv522/oob/w_y_vault) +"wwD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wwF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "wwG" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) -"wwJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"wwM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo/glass) -"wwO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/dorms) -"wwU" = ( +"wwK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wxh" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, +/turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) -"wwX" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges) -"wxa" = ( -/obj/structure/bed/chair{ +"wxn" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"wxT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"wxb" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"wxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) -"wxB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/effect/spawner/random/toy, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) "wxZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wyn" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"wyj" = ( +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"wyE" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"wyN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 }, -/area/lv522/indoors/c_block/t_comm) -"wyv" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "brown" +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/area/lv522/atmos/command_centre) -"wyy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 }, -/area/lv522/indoors/b_block/hydro) -"wyA" = ( +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"wyO" = ( +/obj/structure/curtain/medical, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"wyI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges) -"wyM" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wzg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/strata/white_cyan4, +/area/lv522/indoors/a_block/medical) +"wzd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) "wzt" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -59321,6 +47971,18 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"wzz" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wzH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -59331,73 +47993,51 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) -"wzJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"wzS" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"wAf" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "26" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wAB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"wAE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"wAM" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/largecrate/supply/floodlights{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +"wAh" = ( +/obj/structure/platform{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/north_east_street) -"wBp" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"wAl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/executive) -"wBr" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"wAw" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wAJ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/garden) +"wAO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"wAP" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"wAX" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) +"wBa" = ( +/obj/item/stack/sheet/wood/large_stack, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"wBu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "wBx" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 @@ -59408,69 +48048,50 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"wBG" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/west_reactor) -"wBR" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/reactor_garage) -"wCr" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "41"; - density = 0; - layer = 4.2 - }, -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "61" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wCt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"wBG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ dir = 8; - icon_state = "white_cyan2" + icon_state = "flammable_pipe_3"; + pixel_x = -3 }, -/area/lv522/indoors/a_block/dorms) -"wCy" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/west_reactor) +"wBK" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/fitness) -"wCC" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"wCJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor{ - icon_state = "wood" +"wCh" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"wCo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"wCx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wCz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) "wCM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -59481,70 +48102,77 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wCR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/central_streets) -"wCS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"wCW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/hallway) "wDa" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2) -"wDh" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "blue" +"wDg" = ( +/obj/structure/surface/rack, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "wDj" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"wDk" = ( +"wDr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"wDF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 10; - icon_state = "blue" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"wDG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"wDH" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/a_block/admin) -"wDy" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "wood" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wDJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"wDP" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/suit/storage/marine/smartgunner, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) -"wDO" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"wDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/engi{ + pixel_x = 7; + pixel_y = 3 }, -/area/lv522/indoors/b_block/bar) +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"wDW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "wDZ" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -59556,47 +48184,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wEi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/hallway) -"wEo" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2) -"wEz" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/nw_rockies) -"wEE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/bananaseed, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) +"wEe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "wEP" = ( /obj/structure/prop/invuln/ice_prefab/standalone/trim{ icon_state = "white_trim" @@ -59606,40 +48197,63 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"wER" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"wES" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wEW" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wFv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wFc" = ( +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"wFd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" }, -/area/lv522/atmos/way_in_command_centre) -"wFA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"wFg" = ( +/obj/item/tool/crowbar, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) +"wFm" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3; + pixel_y = 9 }, -/area/lv522/atmos/outdoor) -"wFB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) +"wFu" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/area/lv522/indoors/c_block/cargo) +/obj/structure/largecrate/random, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) "wFC" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) +"wFE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "wFL" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -59649,53 +48263,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"wFP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"wFT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"wFU" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison{ - dir = 6; - icon_state = "blue" - }, -/area/lv522/indoors/a_block/admin) +"wFS" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"wGe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "wGh" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"wGq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wGo" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" }, -/area/lv522/atmos/way_in_command_centre) -"wGG" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"wGx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 }, -/area/lv522/indoors/a_block/kitchen/glass) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "wGH" = ( /obj/item/prop/colony/usedbandage{ dir = 5; @@ -59710,138 +48306,147 @@ /obj/item/stack/sheet/wood, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wGM" = ( -/obj/structure/bed/chair/comfy{ +"wGR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "wGY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"wHi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wHj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wHo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/head/hardhat/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"wHg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"wHq" = ( +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/landing_zone_1/ceiling) -"wHz" = ( -/obj/item/clothing/shoes/veteran/pmc{ - name = "steel toe boots" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/c_block/mining) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) "wHF" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wHR" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) +"wHH" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"wHI" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) "wHU" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"wIc" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) "wIi" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) +"wIp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "wIr" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bridge) +"wIt" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "wIu" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"wIx" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"wIv" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "69" }, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/landing_zone_forecon/UD6_Tornado) "wIE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"wIL" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 +"wIP" = ( +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"wIQ" = ( +/obj/item/fuel_cell{ + pixel_x = -8; + pixel_y = -2 }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"wJf" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, /obj/structure/machinery/light, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"wJb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"wJk" = ( +"wJg" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"wJh" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/item/trash/ceramic_plate, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "wJq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) +"wJs" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"wJB" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) "wJH" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"wJP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"wJR" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"wKf" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "wKg" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/corpo) @@ -59849,22 +48454,18 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"wKR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"wKV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +"wKv" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"wKI" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) "wLd" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -59882,6 +48483,51 @@ "wLp" = ( /turf/closed/wall/mineral/bone_resin, /area/lv522/atmos/east_reactor/west) +"wLw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/holohoop{ + density = 0; + pixel_y = 27 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"wLC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) +"wLF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"wLO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) "wLU" = ( /obj/structure/machinery/light{ dir = 8 @@ -59889,120 +48535,102 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"wMe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"wMd" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"wMJ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"wMM" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"wMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -11; - pixel_y = 10 +"wMZ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"wNj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" }, -/area/lv522/indoors/c_block/casino) -"wMF" = ( -/obj/structure/machinery/camera/autoname{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "wNl" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"wNo" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"wNp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/casino) -"wNF" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"wNA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"wNV" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -11; + pixel_y = 16 }, -/area/lv522/indoors/a_block/admin) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) "wNX" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"wOo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"wOq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) -"wOu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/n_rockies) -"wOU" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"wPt" = ( +"wOa" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) +"wOp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"wOL" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"wOS" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wPA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"wPb" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wPJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "wPL" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -60016,54 +48644,47 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"wPR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" +"wPX" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/area/lv522/indoors/b_block/bar) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "wQa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"wQs" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"wQy" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/c_block/mining) -"wRa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +"wQn" = ( +/obj/structure/prop/server_equipment/yutani_server{ + pixel_y = 17 }, -/area/lv522/indoors/a_block/admin) -"wRd" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkpurple2" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) -"wRf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"wQr" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wQI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"wQP" = ( +/obj/structure/girder, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = -8 }, -/area/lv522/atmos/sewer) +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/dorms) "wRk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -60071,13 +48692,14 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"wRl" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"wRn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) +/obj/structure/medical_supply_link/green, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) "wRp" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -60089,80 +48711,40 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"wRC" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"wRJ" = ( -/obj/item/hardpoint/locomotion/van_wheels{ - desc = "Integral to getting shreaded"; - name = "Lifting weights" - }, +"wRA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"wRN" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"wRL" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "33" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = -37; + pixel_y = 17 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"wRQ" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) +"wRT" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"wSh" = ( /obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Reactor Control"; - pixel_y = 6 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"wRZ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"wSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor) -"wSr" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wSt" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"wSz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) "wSF" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -60170,72 +48752,47 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wSW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"wTf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 +"wSI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"wSP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ pixel_x = 6; - pixel_y = 19 + pixel_y = 7 }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 }, -/area/lv522/indoors/lone_buildings/chunk) -"wTn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"wTd" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/lv522/indoors/a_block/corpo) -"wTq" = ( -/turf/open/floor/corsat{ +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "brown" + pixel_y = -5 }, -/area/lv522/atmos/east_reactor/south) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wTg" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) "wTr" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"wTu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) "wTv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/west_reactor) -"wTx" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) "wTy" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigarettes/kpack{ @@ -60259,59 +48816,67 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"wTJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"wTV" = ( -/obj/structure/prop/vehicles, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat{ - icon_state = "plate" +"wTS" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/atmos/reactor_garage) -"wUj" = ( -/obj/structure/closet/crate/miningcar/yellow, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"wTT" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/indoors/c_block/mining) -"wUp" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wUe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"wUw" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"wUD" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"wUE" = ( /obj/structure/stairs/perspective{ - dir = 4; + dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) -"wUx" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"wUK" = ( +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) "wUL" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plating, /area/lv522/oob) -"wVf" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) +"wUX" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) "wVo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -60339,84 +48904,84 @@ }, /turf/open/floor/plating, /area/lv522/oob) -"wWc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "wWe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"wWV" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +"wWo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) +"wWI" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) "wWX" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"wXe" = ( -/obj/structure/surface/table/reinforced/toc/east{ - pixel_y = -7 - }, -/obj/structure/machinery/computer/railgun/gatling/toc{ - pixel_y = 13; - pixel_x = -7 - }, -/obj/structure/phone_base/toc{ - pixel_y = 13; - pixel_x = 11; - phone_id = "Typhoon Overwatch"; - phone_category = "Overwatch"; - name = "Typhoon overwatch telephone receiver" - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_y = -5; - pixel_x = 10 - }, -/obj/item/clothing/head/headset, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +"wWY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wXq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/grown/deathberries{ - pixel_y = 9 +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"wXk" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/lv522/indoors/b_block/hydro) -"wXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"wXG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"wXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"wXO" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/atmos/east_reactor/south) -"wXQ" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"wXS" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "wYa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"wYb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) "wYe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60424,20 +48989,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wYl" = ( +"wYk" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"wYn" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/seeds/berryseed, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/a_block/kitchen) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"wYr" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"wYw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) "wYE" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -60449,37 +49023,33 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"wYU" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 +"wZc" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/lv522/indoors/a_block/admin) -"wYX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/lv522/indoors/a_block/medical) +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) "wZl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60513,138 +49083,78 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"wZz" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +"wZV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"wZY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/area/lv522/landing_zone_2/ceiling) -"wZH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"wZZ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"xam" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"xaq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/bar) -"wZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"xbk" = ( +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xbl" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/indoors/c_block/cargo) -"xaj" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/oob) +"xbm" = ( /obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/power/apc/weak{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) -"xay" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"xaD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/dorms) -"xaM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen/glass) -"xaN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"xaQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/lever_action/r4t{ - pixel_y = 26 - }, -/obj/item/ammo_magazine/lever_action/marksman{ - layer = 3.1; - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/weapon/butterfly/switchblade{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/c_block/mining) -"xbj" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"xbJ" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/lv522/indoors/a_block/security) -"xbk" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "xbM" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_fuel" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"xbN" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/medical) -"xbX" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) +"xbZ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/west) "xce" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/command_centre) @@ -60654,17 +49164,11 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"xcn" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, +"xcp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/c_block/mining) +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) "xcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60687,27 +49191,21 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xcR" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "101" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xcU" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"xcS" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/area/lv522/oob) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) "xcX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) -"xcY" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_1) +"xcZ" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) "xdb" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/server_equipment/laptop/on{ @@ -60716,22 +49214,21 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xdn" = ( +"xdi" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -13; - pixel_y = 2 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 }, -/area/lv522/landing_zone_1/ceiling) +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xdq" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "xdt" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -60750,15 +49247,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) -"xdF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/command_centre) +"xdK" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"xdR" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) "xdX" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -8; @@ -60795,94 +49291,94 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xeG" = ( -/turf/open/floor/corsat{ +"xeE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"xeO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + layer = 2.6 + }, +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"xeP" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/north_command_centre) +"xeQ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xeT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"xfn" = ( +/obj/structure/prop/structure_lattice, +/obj/structure/stairs/perspective{ dir = 1; - icon_state = "brown" + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) -"xfe" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) "xfp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"xfr" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "xfu" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) +"xfw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/ghettosmes, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) "xfD" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"xfW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) "xfX" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xgl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "plate" +"xgk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/lv522/atmos/north_command_centre) +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "xgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"xgE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +"xgG" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) "xgH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"xgI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/indoors/c_block/mining) -"xgW" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/south_east_street) "xgX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -60898,48 +49394,9 @@ /obj/item/reagent_container/glass/bucket, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"xhd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/lv522/outdoors/colony_streets/north_street) -"xho" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/north_command_centre) -"xhq" = ( -/obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"xhu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"xhz" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) -"xhB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"xhs" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/west) "xhD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -60947,39 +49404,31 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"xhL" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement9" +"xhN" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "xhT" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"xhW" = ( +"xif" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xic" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" - }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xig" = ( -/obj/structure/closet/crate, -/obj/item/storage/xeno_tag_case, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"xim" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"xio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "xiu" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -60987,34 +49436,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"xiG" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"xiU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"xiY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/west) -"xje" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"xiH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/c_block/bridge) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) "xju" = ( /obj/structure/machinery/light{ dir = 4 @@ -61024,130 +49451,50 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"xjz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"xjC" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) +"xjw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) "xjF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/executive) -"xjK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xjO" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) -"xjS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"xjU" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"xjY" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/bridge) -"xka" = ( +"xkn" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/paper/wy, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"xkk" = ( -/obj/structure/shuttle/part/tornado{ - icon_state = "2" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"xkv" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"xkB" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/atmos/outdoor) +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "xkO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/toilet) -"xln" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"xkS" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/area/lv522/indoors/c_block/mining) -"xlq" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"xkW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurple2" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "xly" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"xlI" = ( -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"xlL" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"xlA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"xlB" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) "xlN" = ( /obj/structure/surface/rack, /obj/structure/machinery/camera/autoname, @@ -61164,79 +49511,43 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"xlV" = ( +"xlU" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"xlW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"xmo" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"xlY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"xmj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/nw_rockies) -"xmk" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"xmD" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/trash/ceramic_plate{ + pixel_y = 6 }, -/area/lv522/atmos/east_reactor/south) -"xmN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xmq" = ( +/obj/structure/bed/bedroll{ + dir = 8 }, -/area/lv522/indoors/a_block/corpo) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "xmT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/corsat, /area/lv522/atmos/west_reactor) -"xni" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/landing_zone_1/ceiling) -"xnk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"xmX" = ( +/obj/structure/closet/secure_closet/miner{ + pixel_x = 4 }, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "xno" = ( /obj/item/weapon/gun/smartgun{ current_mag = null @@ -61246,90 +49557,50 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"xnp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"xnu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/obj/item/newspaper{ - anchored = 1; - desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; - name = "menu"; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) -"xnI" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"xnJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/device/flash{ - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) -"xnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/lv522/indoors/a_block/corpo) -"xnX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, +"xoL" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"xoP" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"xoU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 17 }, -/area/lv522/atmos/sewer) -"xoj" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"xoV" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xoX" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) "xpg" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/nw_rockies) -"xpu" = ( -/obj/structure/platform, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"xpy" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -8; + pixel_y = 7 }, -/area/lv522/indoors/a_block/dorms) +/obj/item/toy/plush/farwa, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "xpH" = ( /obj/structure/platform{ dir = 8 @@ -61340,29 +49611,9 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xpX" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_east_street) -"xqd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/a_block/fitness) -"xqi" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +"xpM" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "xqj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer2, @@ -61370,60 +49621,50 @@ "xqp" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/landing_zone_1) -"xqQ" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "3" - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"xqV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"xqY" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_1) -"xrr" = ( -/obj/structure/barricade/deployable, +"xqq" = ( +/obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"xrA" = ( -/turf/open/floor/corsat{ - icon_state = "brown" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"xrl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv522/atmos/cargo_intake) -"xrB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"xrD" = ( +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/c_block/cargo) -"xrF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "brown" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv522/atmos/cargo_intake) +/turf/open/gm/river, +/area/lv522/atmos/sewer) "xrH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"xsc" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "23" +"xrJ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"xrU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"xrV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) "xsd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -61432,64 +49673,81 @@ /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"xsi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/garage) "xsq" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"xsE" = ( +"xsu" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"xsz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"xsB" = ( /obj/structure/platform{ - dir = 4 + dir = 8 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 6 +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"xsD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"xsH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"xsJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"xsW" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) "xtb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) -"xti" = ( -/obj/effect/decal/cleanable/dirt, +"xth" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/indie{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/storage/pouch/cassette{ - pixel_y = 5 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/c_block/t_comm) -"xtk" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5 - }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 9 }, -/area/lv522/indoors/a_block/admin) +/obj/item/storage/firstaid/fire, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) "xto" = ( /obj/item/storage/pouch/autoinjector/full, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/w_rockies) +"xtz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xtO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -61497,17 +49755,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"xtP" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 8 +"xtV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platebotc" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xuh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv522/indoors/b_block/hydro/glass) +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "xuk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -61515,47 +49777,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"xuB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/b_block/bar) -"xuD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) -"xuQ" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" +"xuR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 }, -/area/lv522/atmos/way_in_command_centre) -"xuU" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv522/atmos/cargo_intake) -"xva" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) "xvl" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/bridge) @@ -61564,59 +49799,31 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"xvB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/bridge) -"xvG" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"xvQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/engineering) -"xvW" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges) -"xwv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"xwD" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +"xvU" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"xwb" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"xwL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "xwO" = ( /obj/structure/cargo_container/seegson/left, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xwZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +"xwU" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "xxk" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -61631,11 +49838,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xxq" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/south_east_street) +"xxo" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "xxs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -61659,108 +49866,59 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"xxJ" = ( -/obj/structure/cargo_container/seegson/mid, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +"xxB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xxU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"xxV" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"xxW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"xyf" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"xyi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms) -"xym" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) +"xyx" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"xyL" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"xyN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/central_streets) "xyU" = ( /obj/structure/surface/table/almayer, /obj/item/map/lv522_map, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"xzj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"xyY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"xza" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "xzn" = ( /turf/open/floor/prison, /area/lv522/atmos/outdoor) -"xzp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1/ceiling) -"xzu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - icon_state = "squares" +"xzq" = ( +/obj/structure/bed/bedroll{ + dir = 1 }, -/area/lv522/atmos/east_reactor/south) +/obj/item/trash/uscm_mre, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) "xzK" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) @@ -61771,23 +49929,41 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xzV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xzP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"xzY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/reagent_container/food/snacks/donut/jelly{ + pixel_x = -6; + pixel_y = 4 }, -/area/lv522/indoors/c_block/mining) -"xAr" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xzZ" = ( +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"xAd" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/c_block/garage) -"xAw" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xAn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"xAE" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "xAF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -61800,22 +49976,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"xAN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "xAO" = ( /turf/open/gm/river, /area/lv522/indoors/a_block/fitness/glass) @@ -61823,39 +49983,14 @@ /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xAR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_street) -"xAS" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) +"xAQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bridge) "xAZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"xBg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) "xBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -61867,46 +50002,39 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"xBL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/n_rockies) -"xBS" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/east_central_street) -"xCp" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Central Office"; - pixel_y = 26 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/command_centre) -"xCG" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"xBI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"xBK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xBU" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xCq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" }, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"xCx" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"xCD" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"xCH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "xCN" = ( /obj/item/clothing/under/shorts/blue{ pixel_x = -6; @@ -61914,21 +50042,24 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"xCS" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/south) "xCT" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) -"xCY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"xCW" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Marshal Head Office" }, -/area/lv522/indoors/c_block/garage) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) "xDl" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -61945,6 +50076,25 @@ "xDu" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) +"xDw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) +"xDy" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "15" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xDz" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, @@ -61966,28 +50116,11 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xDG" = ( -/obj/structure/prop/turbine_extras/left, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/south_west_street) "xDJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"xDL" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) "xDM" = ( /obj/structure/surface/table/almayer{ dir = 8; @@ -61999,16 +50132,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) -"xDQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) "xDR" = ( /obj/structure/machinery/conveyor{ dir = 5; @@ -62016,26 +50139,46 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"xDV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xDY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) "xEb" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"xEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"xEl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"xEq" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 }, -/area/lv522/atmos/cargo_intake) -"xEp" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"xEr" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "xEB" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -62043,41 +50186,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xED" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/way_in_command_centre) -"xEH" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/landing_zone_1) -"xFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) +"xEF" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"xEM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"xEO" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xFe" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"xFo" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xFp" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"xFt" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) "xFv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -62085,19 +50216,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xFw" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/admin) "xFG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) +"xFO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) "xGa" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -62114,6 +50240,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"xGh" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"xGi" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "72" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) "xGk" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 13; @@ -62121,29 +50261,35 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"xGC" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +"xGz" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 5 }, -/area/lv522/indoors/c_block/mining) -"xGR" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/reagent_container/food/snacks/wishsoup{ + pixel_x = -4; + pixel_y = -7 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"xGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"xGX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - icon_state = "squares" +"xHa" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" }, -/area/lv522/atmos/east_reactor/south) +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) "xHj" = ( /obj/structure/prop/invuln/minecart_tracks, /obj/structure/closet/crate/miningcar{ @@ -62166,38 +50312,80 @@ }, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"xHJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Botany"; - pixel_x = 16 +"xHt" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 }, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/lv522/indoors/b_block/hydro) -"xIr" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"xHx" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"xHI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"xHS" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv522/indoors/a_block/dorms) +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"xIg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) "xIv" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"xIK" = ( +"xIA" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"xIG" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"xIH" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "100" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xIT" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/prize/deathripley{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/item/toy/prize/ripley{ + pixel_x = 4; + pixel_y = 7 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) "xIW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -62205,6 +50393,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"xIX" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"xJb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) "xJd" = ( /obj/structure/bed/chair{ dir = 4 @@ -62212,52 +50409,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xJg" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "blue1" +"xJi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"xJt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"xJl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/wood/wood_broken4, +/area/lv522/indoors/b_block/bar) "xJB" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"xJF" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/admin) -"xJI" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"xJK" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ausbush{ - pixel_y = 8 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "xJL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -62265,90 +50432,78 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"xJX" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) -"xKc" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"xJM" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_west_street) +"xKb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Reactor Control"; + pixel_y = 6 }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "xKk" = ( /turf/closed/wall/strata_outpost_ribbed, /area/lv522/outdoors/colony_streets/south_west_street) +"xKC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"xKE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "xKH" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xKN" = ( -/obj/structure/machinery/light{ - dir = 8 +"xKJ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/obj/structure/platform{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) -"xLg" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"xLa" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) -"xLm" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/east_reactor/north) -"xLn" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"xLc" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 12; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 20; - pixel_y = -5 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -5 +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 }, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"xLg" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/lv522/indoors/b_block/bar) +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) "xLq" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xLr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/sewer) "xLU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -62361,40 +50516,13 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"xMl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/cargo) -"xMu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/lone_buildings/chunk) -"xMz" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"xME" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/lv522/atmos/east_reactor/south) +"xMc" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"xMt" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xMO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -62404,6 +50532,11 @@ /obj/item/stack/sheet/cardboard/full_stack, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) +"xMZ" = ( +/obj/item/weapon/gun/boltaction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) "xNd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -62413,6 +50546,10 @@ /obj/effect/decal/cleanable/vomit, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) +"xNh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) "xNi" = ( /obj/structure/machinery/conveyor, /obj/structure/machinery/camera/autoname{ @@ -62423,54 +50560,64 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"xNt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"xNu" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"xNv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xNw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"xNz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = -4; + pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/device/cassette_tape/pop4{ + pixel_x = 3; + pixel_y = 8 }, -/area/lv522/indoors/a_block/hallway) -"xNG" = ( -/obj/structure/machinery/computer/crew/colony{ - density = 0; - pixel_y = 16 +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"xNB" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"xND" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"xNR" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"xNF" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv522/indoors/b_block/hydro) -"xOb" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"xNL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"xNN" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 }, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"xNY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"xOs" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "xOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -62482,56 +50629,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"xOB" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/east_central_street) "xOD" = ( /obj/item/clothing/glasses/mbcg, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) -"xOQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/fitness) -"xOS" = ( -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"xOT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"xOZ" = ( +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 }, -/area/lv522/landing_zone_1) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "xPa" = ( /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"xPe" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/plate, +/area/lv522/oob) "xPg" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xPj" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) "xPo" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) +"xPq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "xPx" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -62539,6 +50675,11 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) +"xPy" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) "xPA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -62546,26 +50687,44 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) +"xPB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) "xPF" = ( /turf/closed/shuttle/elevator, /area/lv522/indoors/c_block/mining) "xPH" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) +"xPI" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Dining"; + pixel_y = 26 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) "xPK" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"xPQ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +"xPM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"xPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"xPV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) "xPW" = ( /obj/effect/decal/cleanable/dirt, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -62583,40 +50742,48 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"xPY" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"xQa" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/lv522/atmos/outdoor) +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) "xQc" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/east_reactor/south) -"xQi" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) "xQj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"xQm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/medical) +"xQk" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) "xQq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood/ship, /area/lv522/atmos/way_in_command_centre) +"xQH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"xQL" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "xQZ" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -62624,111 +50791,44 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"xRg" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +"xRf" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 }, -/area/lv522/indoors/a_block/admin) -"xRk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) +"xRl" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) "xRn" = ( /obj/item/clothing/head/hardhat, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"xRo" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/lv522/indoors/a_block/kitchen) -"xRq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/structure/machinery/door/window{ - dir = 2; - pixel_y = 6 - }, -/obj/structure/machinery/door/window{ +"xRp" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) +"xRt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - pixel_y = 18 - }, -/obj/structure/window{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 17 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" + req_one_access_txt = "100"; + welded = 1 }, -/area/lv522/indoors/lone_buildings/chunk) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "xRw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"xRz" = ( -/obj/structure/platform_decoration, -/obj/structure/bed/roller, -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, -/area/lv522/indoors/a_block/admin) -"xRE" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"xRG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"xRI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/c_block/t_comm) -"xRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/lv522/outdoors/colony_streets/north_street) -"xRM" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "18" +"xRJ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "83" }, /area/lv522/landing_zone_forecon/UD6_Tornado) "xRQ" = ( @@ -62738,70 +50838,52 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) +"xSa" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"xSc" = ( +/obj/item/stack/rods, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"xSe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"xSj" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) "xSm" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) +"xSq" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) "xSv" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"xSz" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/hydro) -"xSA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) "xSD" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"xSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ +"xSG" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "cell_stripe" - }, -/area/lv522/atmos/way_in_command_centre) -"xSL" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/south) -"xSN" = ( -/turf/open/floor/corsat{ - icon_state = "marked" + pixel_x = -12; + pixel_y = 6 }, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) "xSP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -62821,23 +50903,60 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"xTj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +"xTk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) +"xTr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/lv522/indoors/c_block/mining) -"xTs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xTw" = ( +/obj/structure/prop/turbine_extras, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"xTy" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"xTz" = ( +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/vomit, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xTB" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "xTJ" = ( /obj/item/tool/kitchen/utensil/pknife{ pixel_x = -9 @@ -62859,62 +50978,79 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"xUl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 7 - }, +"xUf" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) "xUq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) -"xUx" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +"xUD" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" }, -/area/lv522/atmos/filt) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "xUJ" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"xUQ" = ( +"xUN" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"xUW" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xVc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" +/obj/item/falcon_drone{ + desc = "Some sort of fancy...toy? You're not sure.."; + pixel_x = -12 }, -/area/lv522/indoors/a_block/bridges/op_centre) +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) "xVd" = ( /turf/closed/wall/strata_outpost_ribbed, /area/lv522/indoors/lone_buildings/engineering) -"xVq" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) +"xVp" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) "xVz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"xVB" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/atmos/way_in_command_centre) "xVG" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -62923,28 +51059,40 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) -"xVH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +"xVL" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Security"; + pixel_x = -16 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xVO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"xVI" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue" +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xVU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Holding Cell" }, -/area/lv522/indoors/a_block/admin) -"xVV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/outdoors/colony_streets/south_west_street) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"xWa" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) "xWb" = ( /obj/structure/bed/chair{ dir = 1 @@ -62954,127 +51102,93 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"xWc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/cargo_intake) -"xWf" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"xWx" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/toilet) -"xWz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/filt) -"xWA" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +"xWi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/a_block/hallway) -"xWF" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"xWs" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"xWy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" }, -/area/lv522/indoors/a_block/fitness) -"xWL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"xWD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/item/stack/rods, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/lv522/outdoors/colony_streets/north_street) -"xWO" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/colony_streets/south_east_street) -"xWP" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/item/clothing/head/hardhat{ + pixel_x = 17 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"xWT" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "xXg" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"xXh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"xXk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) "xXo" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ pixel_y = 13 }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"xXv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"xXC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"xXF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "18" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xXH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/atmos/sewer) -"xXz" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"xXI" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation_A_1"; + layer = 3.1 }, -/area/lv522/indoors/a_block/dorms/glass) +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) "xXN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"xXO" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"xXQ" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/north_street) "xXR" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -63083,21 +51197,16 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"xXV" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/nw_rockies) -"xXX" = ( -/obj/structure/target{ - name = "punching bag" +"xXU" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "xYn" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/trash/plate{ @@ -63105,6 +51214,9 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) +"xYv" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_east_street) "xYx" = ( /obj/structure/platform{ dir = 1 @@ -63117,42 +51229,49 @@ "xYD" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) -"xZf" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "27" +"xYM" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"xZw" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"xZg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"xZi" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) "xZz" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"xZD" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "xZE" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/prison, /area/lv522/atmos/way_in_command_centre) -"xZL" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/lv522/atmos/cargo_intake) -"xZN" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) "xZP" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -63160,16 +51279,10 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"xZS" = ( -/obj/item/clothing/gloves/yellow, -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 26 - }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/engineering) +"yac" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) "yaf" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, @@ -63179,75 +51292,26 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"yai" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "plate" +"yah" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/area/lv522/atmos/east_reactor/south) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) "yaj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"yak" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/mining) -"yar" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/lv522/landing_zone_2/ceiling) -"yat" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshall Office Armory" - }, +"yal" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/a_block/security) -"yaw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 + dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/reactor_garage) -"yaC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) "yaF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -63262,88 +51326,35 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/sewer) -"yba" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"ybd" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat{ - icon_state = "squares" +"yaN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"yaT" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/east_reactor/south) "ybj" = ( /obj/item/prop/alien/hugger, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ybt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security/glass) "ybz" = ( /turf/open/asphalt/cement, /area/lv522/landing_zone_2) -"ybM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/indoors/c_block/garage) "yca" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"ycb" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ycc" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkbrownfull2" - }, -/area/lv522/landing_zone_2/ceiling) -"yct" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/weak{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"ycv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) "ycw" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"ycA" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) "ycE" = ( /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) @@ -63362,127 +51373,82 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ycO" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" - }, -/area/lv522/indoors/b_block/bridge) -"ycV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" +"ycQ" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv522/outdoors/n_rockies) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) "ydb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"ydy" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ydz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/kitchen) -"ydA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/lv522/outdoors/colony_streets/north_west_street) -"ydD" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/buckshot/empty, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/security) -"ydS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"ydh" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/lv522/indoors/a_block/bridges/op_centre) -"ydU" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"ydo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/indoors/b_block/bar) -"ydV" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison{ +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"ydB" = ( +/obj/structure/window/reinforced{ dir = 1; - icon_state = "blue_plate" + layer = 3 }, -/area/lv522/indoors/a_block/admin) -"yen" = ( -/obj/structure/bed/roller, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) +"ydW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ydX" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/lv522/indoors/a_block/admin) -"yeD" = ( -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 0; - pixel_x = -17; - pixel_y = 14 +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"yez" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) "yeH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"yeM" = ( +"yeK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + dir = 5 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"yeV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/area/lv522/outdoors/colony_streets/north_west_street) -"yeS" = ( -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) "yfk" = ( /obj/item/tool/lighter/random{ pixel_x = -4; @@ -63505,14 +51471,6 @@ "yfu" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) -"yfz" = ( -/obj/structure/largecrate/random/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, -/area/lv522/landing_zone_2/ceiling) "yfH" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -63523,23 +51481,23 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_2) -"yfP" = ( -/turf/open/floor/strata{ - icon_state = "blue1" +"yfL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Storage"; + req_one_access = null }, -/area/lv522/indoors/a_block/dorm_north) -"yfR" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "greenfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/b_block/hydro) -"yfS" = ( -/turf/open/floor/prison{ - dir = 9; - icon_state = "greenfull" +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"yfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/lv522/indoors/b_block/hydro) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "yfX" = ( /obj/item/weapon/gun/boltaction{ pixel_y = -8 @@ -63560,33 +51518,48 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ygu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, -/area/lv522/atmos/east_reactor/west) -"ygw" = ( +"ygk" = ( /obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ygn" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ygr" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv522/indoors/a_block/security) -"ygD" = ( -/turf/open/floor/corsat{ - icon_state = "marked" +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ygY" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ygJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"yhb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"yhc" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"yhe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) "yhi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -63601,6 +51574,11 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) +"yhq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "yhz" = ( /obj/structure/window_frame/corsat, /obj/effect/spawner/gibspawner/xeno, @@ -63609,63 +51587,67 @@ }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) -"yhG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/garden_bridge) "yhK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"yhR" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" +"yhQ" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"yhY" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 }, -/area/lv522/outdoors/colony_streets/south_street) -"yhU" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/prison{ - icon_state = "floor_plate" +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ + pixel_x = -7; + pixel_y = 26 }, -/area/lv522/landing_zone_1/ceiling) -"yif" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 }, -/area/lv522/indoors/a_block/dorms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) "yim" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) -"yiu" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"yiH" = ( -/obj/structure/window_frame/strata, -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" +"yio" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"yis" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/lv522/indoors/a_block/dorms) +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"yiw" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) "yiM" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"yiW" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "23" +"yiP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"yiQ" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "yiZ" = ( /obj/structure/prop/vehicles/crawler{ dir = 8; @@ -63676,21 +51658,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"yje" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/lv522/atmos/sewer) -"yjg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/atmos/east_reactor/south) "yjm" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, @@ -63701,22 +51668,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"yjq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/clothing/shoes/marine, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_foot"; - name = "left foot"; - pixel_x = 5; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/lv522/indoors/a_block/bridges/corpo) "yjr" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/gibs, @@ -63737,39 +51688,14 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) -"yjy" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_leg"; - name = "left leg"; - pixel_x = -11; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - icon_state = "radiator_tile2" - }, -/area/lv522/indoors/a_block/bridges/corpo) -"yjD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"yjx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 }, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "yjK" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -63777,83 +51703,30 @@ /obj/item/tool/weldingtool, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"yjL" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "whitegreenfull" - }, -/area/lv522/oob) "yjT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"yjU" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv522/indoors/c_block/cargo) -"yjW" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/engi{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/engi, +"yjZ" = ( +/obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison{ - icon_state = "darkpurplefull2" - }, -/area/lv522/indoors/a_block/dorms/glass) -"ykc" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "platingdmg3" - }, -/area/lv522/indoors/a_block/bridges/op_centre) -"yke" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - dir = 1; - icon_state = "blue_plate" - }, +/turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"ykL" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ykR" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" +"ykz" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) "ykT" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) -"yld" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/lv522/atmos/east_reactor/south) -"ylm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/lv522/outdoors/n_rockies) +"ykZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) "ylo" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -63864,32 +51737,28 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) -"ylr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/lv522/outdoors/colony_streets/east_central_street) "ylC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/n_rockies) +"ylI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"ylL" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) "ylY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"ymc" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/lv522/landing_zone_1/ceiling) -"ymf" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) (1,1,1) = {" bMX @@ -64756,7 +52625,7 @@ cpy cpy cpy cpy -nGe +dTY pxb pxb pxb @@ -64855,10 +52724,10 @@ cpy cpy cpy cpy -lvN -lvN -lvN -lvN +lqs +lqs +lqs +lqs cpy cpy cpy @@ -64978,12 +52847,12 @@ cpy cpy cpy cpy -nGe -pez -pFw -qbf -lBl -paT +dTY +bsR +kxM +ncZ +pxb +hUB pxb pxb pxb @@ -65204,20 +53073,20 @@ cpy cpy cpy cpy -oyY -paT -lBl -lBl -lBl -lBl -lBl +ltF +hUB +pxb +pxb +pxb +pxb +pxb pxb nQz tPf unM -ryU -ryU -ryU +pxs +pxs +pxs jqO tPf vYK @@ -65258,7 +53127,7 @@ bMX cpy abo afp -alJ +bQF abo abo abo @@ -65431,22 +53300,22 @@ cpy cpy cpy cpy -hTW -lBl -vqw -lBl -lBl -lBl -oYM +pcd +pxb +xqp +pxb +pxb +pxb +nQz tPf oKc -uZc -ryU -ryU -xcY -ryU -ryU -uZc +wyE +pxs +pxs +vXA +pxs +pxs +wyE sOM tPf vYK @@ -65486,11 +53355,11 @@ cpy abo afp akM -arh +xSG abo -bby -bzD -bUJ +rUb +shy +fDb abo cpy cpy @@ -65570,7 +53439,7 @@ sRA sRA sRA sRA -uiK +sRA sRA sRA sRA @@ -65657,25 +53526,25 @@ cpy cpy cpy cpy -nGe -veq -veq -vqw -vqw -vqw -oYM -pLm -ryU -ryU -ryU -xfW -qqc -xcY -pnj -pnj -ryU -ryU -ryU +dTY +pwa +pwa +xqp +xqp +xqp +nQz +oKc +pxs +pxs +pxs +xSj +msY +vXA +jpI +jpI +pxs +pxs +pxs sOM vYK pxb @@ -65714,9 +53583,9 @@ cpy afp ann asI -aDZ +kIJ akM -bAo +uJk bVG abo cpy @@ -65756,7 +53625,7 @@ vtc vtc vtc vtc -rXr +qqX vtc vtc vtc @@ -65791,14 +53660,14 @@ sRA sRA sRA sRA -uiK sRA sRA sRA sRA -uiK -uiK -uiK +sRA +sRA +sRA +sRA sRA sRA sRA @@ -65884,26 +53753,26 @@ cpy cpy cpy cpy -nGJ -veq -veq -lBl -oYM -tZM -pLm -ryU -ryU +pyG +pwa +pwa +pxb +nQz +tPf +oKc +pxs +pxs uiM uiM uiM uiM -xcY +vXA uiM nUd tAr uiM -ryU -ryU +pxs +pxs sOM tPf vYK @@ -65942,9 +53811,9 @@ abS ajM cpy abo -bce -bBF -bWq +dfj +nsR +tGO abo cpy cpy @@ -65983,7 +53852,7 @@ vtc vtc vtc vtc -rXr +qqX vtc uWO uWO @@ -66015,21 +53884,21 @@ rWS sRA sRA sRA -uiK -uiK sRA sRA sRA -uiK -qHg -rGg -sbG -dlC -sfZ -uiK -uiK -uiK -uiK +sRA +sRA +sRA +sRA +pao +goP +vaA +nus +sRA +sRA +sRA +sRA sRA sRA sRA @@ -66111,28 +53980,28 @@ cpy cpy cpy cpy -nMc -lBl -oYM -tZM -pLm -ryU -ryU -ryU -wuK +lLE +pxb +nQz +tPf +oKc +pxs +pxs +pxs +lDP uiM -qqc -qqc -quL -xcY -nHi -png -tIy +msY +msY +ptO +vXA +tkg +jbl +pVr uiM -sQZ -ryU -ryU -ryU +idR +pxs +pxs +pxs sOM tPf vYK @@ -66210,7 +54079,7 @@ uWO gxN hIZ hIZ -jiW +rqq hSi uWO uWO @@ -66238,26 +54107,26 @@ vtc jrT cpy cpy -kBT -uiK sRA sRA sRA sRA sRA -qFs -qSP -qSP -wCr -vky -sci -yiW -tcz -tRu -vjs -sFG -sfZ -vcu +rWS +gIo +drP +rQR +sRA +sRA +vBf +tJn +juL +eIr +pao +goP +jZt +vSe +oAe kor rWS uiK @@ -66337,31 +54206,31 @@ cpy cpy cpy cpy -lJq -lBl -oYM -pLm -pkH -pkH -ryU -wuK -xfW -xfW +nfE +pxb +nQz +oKc +pxs +pxs +pxs +lDP +xSj +xSj uiM -quL -quL -xfW -xcY -nHi -sSi -xqY +ptO +ptO +xSj +vXA +tkg +eMT +bZS uiM -sQZ -uVN -uVN -ryU -ryU -ryU +idR +cos +cos +pxs +pxs +pxs sOM vYK pxb @@ -66465,28 +54334,28 @@ hSi vtc cpy cpy -vZY -pXH -sRA +rWS sRA sRA -pRK -qmM -qGQ -qTh -qTh -qzp -eSG -fDg -sGc -tdE -pBQ -dae -sFS -tcz -vfl sRA rWS +pKx +xGi +dMz +adP +kxX +pVu +rzh +sWb +lUz +qLI +vBf +tJn +juL +eIr +cvC +uiK +rWS rWS sRA uiK @@ -66564,12 +54433,12 @@ cpy cpy cpy cpy -lJq -oYM -pLm -pkH -pvd -nhi +nfE +nQz +oKc +pxs +tgG +uTd oyf tns fOc @@ -66588,8 +54457,8 @@ fOc uTd oyf tns -rhk -ryU +tgG +pxs sOM vYK pxb @@ -66692,26 +54561,26 @@ lMH vtc cpy cpy -kLQ -sRA -sRA +rWS +rWS sRA sRA -pRM -qnk -qHA -qTO -vgM -qJl -rCp -scv -rCp -tdH -eSG -fDg -sGc -nfq -vga +mlf +tPC +cxW +trR +otP +xpM +vyR +dLj +qLO +dLj +dtU +rzh +sWb +lUz +rzh +kPR sRA sRA rWS @@ -66791,10 +54660,10 @@ cpy cpy cpy cpy -veq -lWj -cpU -fSo +pwa +vdj +wyE +qqV nFj pRg nFj @@ -66816,8 +54685,8 @@ sYH nFj pRg nFj -vER -uZc +bVd +wyE wdY pxb pwa @@ -66921,24 +54790,24 @@ vtc cpy cpy cpy -pps -pxY -pIu -nbO -qnV -wXe -wyM -rig -wyM -rDb -rjP -sGT -tdS -tzA -tSJ -scw -uEr -uiK +bxv +nPe +dqw +kbh +lDn +jLJ +jLJ +qEN +jLJ +kiq +jLJ +poe +lpR +qyN +dQy +giu +xTy +cHW uiK uiK sRA @@ -67015,240 +54884,240 @@ cpy cpy tFx tFx -tFx -tFx -niA -veq -oiC -pkH -naS -nFj -nFj -nFj -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -sYH -gnf -ryU -wes -pxb -pwa +tFx +tFx +kjS +pwa +emg +pxs +cAi +nFj +nFj +nFj +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +sYH +gnf +pxs +wes +pxb +pwa +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(15,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +saC +saC +saC +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +vtc +uWO +uWO +uWO +gEB +uWO +uWO +qqX +uWO +uWO +uWO +uWO +aRH +cKF +bIJ +bIJ +bIJ +bIJ +bIJ +dek +bsz +uWO +cJy +uWO +uWO +vtc +jus +eXO +emm +vtc +vtc +lMH +vtc +uWO +cpy +cpy +cpy +kNU +afl +jTy +ahW +sCM +wwK +oRl +noJ +ufk +jOE +cIj +nyD +jJz +kxX +wCx +kxX +fPx +kor +sRA +sRA +sRA +sRA +rWS +ePl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tFx +tFx +iIx +dsZ +sjm +kha pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(15,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vtc -uWO -uWO -uWO -gEB -uWO -uWO -rXr -uWO -uWO -uWO -uWO -aRH -cKF -bIJ -bIJ -bIJ -bIJ -bIJ -dek -bsz -uWO -cJy -uWO -uWO -vtc -jus -eXO -emm -vtc -vtc -lMH -vtc -uWO -cpy -cpy -cpy -ppF -pys -pIO -vJo -pTH -xjK -rhB -rhB -rhB -rhB -xKc -sGY -rhB -uEt -rus -wzg -uEz -riE -uiK -sRA -sRA -sRA -rWS -ePl -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tFx -tFx -wnP -rzz -syM -rnT -lBl -ttT -pkH -haf +eJI +pxs +sCx nFj nFj nFj @@ -67271,7 +55140,7 @@ sYH nFj sYH vTO -ryU +pxs wiY pxb pwa @@ -67314,13 +55183,13 @@ saC saC saC saC -fTs -fTs -fTs -bSM -fTs -dWE -dWE +qPi +qPi +qPi +fDV +qPi +vSF +vSF saC saC saC @@ -67345,7 +55214,7 @@ uWO gEB idH uWO -rXr +qqX uWO uWO uWO @@ -67353,15 +55222,15 @@ uWO aTA bIJ bIJ -fXS -dsq -dht +tBz +gAF +sBv bIJ bIJ -sLZ -sLZ -sLZ -sLZ +wXS +wXS +wXS +wXS hQU iOi jCb @@ -67369,31 +55238,31 @@ fTi ksf kPO jYu -hvE -sLZ -sLZ -sLZ -cpy -cpy -pqZ -pyO -qqS -gTM -qqS -qJw -nOm -wyM -rjP -rjP -qze -sHg -teL -tzF -tSU -cet -uEz -vhd -uiK +mka +wXS +wXS +wXS +cpy +cpy +lGm +pEy +bpG +eHL +ncj +bzi +jLJ +jLJ +kZn +jLJ +qEN +vpC +rdd +fzt +vLn +kTh +wsu +qob +sRA sRA sRA rYp @@ -67467,15 +55336,15 @@ cpy cpy cpy tFx -moz -mvP -ggS +tJB +lms +oie tFx -xOS -lBl -ttT -pkH -das +kha +pxb +eJI +pxs +eYo sYH sYH sYH @@ -67498,7 +55367,7 @@ sYH sYH sYH orU -ryU +pxs wiY pxb pwa @@ -67510,8 +55379,8 @@ cpy cpy eYM eYM -uRR -uRR +cIh +cIh eYM eYM eYM @@ -67540,13 +55409,13 @@ saC saC saC saC -uIW -uIW -uIW -uIW -dxU -uIW -uIW +uVp +uVp +uVp +uVp +cYL +uVp +uVp saC saC saC @@ -67579,11 +55448,11 @@ uWO uWO aTA bIJ -mpo -nZF -nZF -nZF -eIn +htq +ikg +ikg +ikg +eye gVd hoq hKG @@ -67602,24 +55471,24 @@ vtc vtc vtc cpy -qjs -sRA -sRA -sRA -qst -oyR -qUD -sIz -rkR -rDz -scy -rDz -tfV -rFp -sdE -sIx -dic -vhC +cpy +rWS +rWS +lqI +ukM +vGI +kAz +uir +uir +hOX +kWv +hOX +giU +cop +cUK +sAf +cop +ktM uiK uiK gxe @@ -67670,7 +55539,7 @@ ien ien ien ien -ien +vyB umf vXc vXc @@ -67694,15 +55563,15 @@ cpy cpy cpy tFx -moI -mxD -uom -kWp -rnT -lBl -ttT -pkH -eyy +klO +jqB +nhI +pST +kha +pxb +eJI +pxs +lCk sYH sYH sYH @@ -67725,7 +55594,7 @@ sYH nFj nFj dMY -ryU +pxs wiY pxb pwa @@ -67737,11 +55606,11 @@ cpy eYM eYM eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV +sRM eYM eYM cpy @@ -67766,16 +55635,16 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -kkc -kkc +uVp +uVp +uVp +uVp +uVp +cYL +uVp +uVp +vCt +vCt saC saC saC @@ -67798,7 +55667,7 @@ vtc vtc gEB uWO -lfS +wiS cpy cpy cpy @@ -67806,11 +55675,11 @@ uWO uWO cpy bIJ -rsB +jXd eaE eaE eaE -cQS +csP gXE htu uWO @@ -67829,41 +55698,41 @@ vtc vtc vtc cpy -qjs -sRA -sRA +cpy +rWS sRA -qst -qLz -qVl -qVl -bpZ -rFp -sdE -sIx -tgM -pRK -qjy -qOi -tbl -vhJ +lqI +bpG +qOu +uel +kxX +cto +cop +cUK +sAf +mZq +pao +oRw +phk +nus +sWs uiK sRA odi ien ien -jTJ -anH +ctf +ppE ien -dlI -dMy +jpU +ldX ien -sON -jrQ +eHJ +tWs ien ldu yhK -lKi +aqN iSf iSf yhK @@ -67877,8 +55746,7 @@ czW sjY ien lSg -hqr -ylo +rZN ylo ylo ylo @@ -67890,14 +55758,15 @@ ylo ylo ylo ylo +pLe ylo ylo ylo ylo ylo ylo -ien -ien +rMF +vyB vXc vXc vXc @@ -67921,15 +55790,15 @@ cpy cpy ien tFx -inm -myQ -myZ -kWp -rnT -lBl -ttT -pkH -naS +oxM +keu +qlu +pST +kha +pxb +eJI +pxs +cAi sYH sYH sYH @@ -67940,7 +55809,7 @@ sYH sYH sYH sYH -dos +rOh sYH sYH sYH @@ -67952,7 +55821,7 @@ sYH nFj nFj gnf -ryU +pxs wiY pxb pwa @@ -67962,14 +55831,14 @@ cpy cpy eYM eYM -uqe -pNa -fxZ -fxZ -fxZ -pNa -nvV -ait +pdn +hDD +wfP +wfP +wfP +hDD +sRM +hTe eYM cpy cpy @@ -67992,18 +55861,18 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW +uVp +uVp +uVp +uVp +uVp saC saC -uIW -iJA -uIW -uIW -kkc +uVp +rZX +uVp +uVp +vCt saC saC saC @@ -68020,11 +55889,11 @@ cpy cpy cpy lqb -xXV -xXV -xXV -gJD -xXV +wIc +wIc +wIc +wLC +wIc nNL xpg cpy @@ -68033,11 +55902,11 @@ cpy cpy cpy bIJ -cQS +csP eaE eaE eaE -fhY +ctA gVd hoq hKG @@ -68056,41 +55925,41 @@ jXT jXT noL cpy -qjs -qjs +cpy +cpy +sRA sRA +jmI +eOF +jmC sRA sRA -qME -qWZ -qWZ -jHa -pUc -xic -guR -sfZ -pBQ -sec -sIK -uEX -vhO +pao +oRw +aIP +nus +vBf +bNY +qNV +gJN +cMi hPM uiK oow ien -sON -ezH -daG +eHJ +pdD +fCO dkB dkB dYA -lCQ -kOV -lze -tPr +buP +qkR +lte +ajO ldM clY -hyZ +eWX lIR dTJ dTJ @@ -68104,28 +55973,28 @@ woA hJZ hJZ hJZ -sus +nHe ylo -pwk -tfZ -wHi -pYf -udK -wHi -nly -miW -hYf -mFe -hYf -wHi -jZe -wky -xig -tyl +dUl +qfT +rlK +hyY +hIH +rlK +fiJ +jSc ylo -ien -ien -ien +ylo +pLe +pgH +lCi +isH +kJu +ojv +ylo +rMF +vyB +vXc vXc vXc vXc @@ -68148,15 +56017,15 @@ ien ien ien tFx -rIM -rIM -rIM +uGb +uGb +uGb tFx -rnT -lBl -ttT -pkH -haf +kha +pxb +eJI +pxs +sCx sYH sYH sYH @@ -68179,7 +56048,7 @@ sYH nFj nFj vTO -ryU +pxs wiY pxb pwa @@ -68188,15 +56057,15 @@ pxb cpy eYM eYM -qCs -fxZ +jJF +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68218,26 +56087,26 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW +uVp +uVp +uVp +uVp +uVp saC saC -uIW -uIW -uIW -uIW -uIW -kkc -kkc +uVp +uVp +uVp +uVp +uVp +vCt +vCt saC -kkc -kkc +vCt +vCt saC saC -hnD +hbY saC saC saC @@ -68261,9 +56130,9 @@ cpy cpy bIJ bIJ -nZF -nZF -nZF +ikg +ikg +ikg bIJ gXE htu @@ -68283,41 +56152,41 @@ vtc vtc lMH vtc -sRA -qjs -sRA -sRA +wms +cpy sRA sRA -uiK -uiK -pBQ -rBU -sec -rDu -tcz -uiK -uiK sRA sRA sRA sRA sRA +vBf +uXP +qNV +eIr +cpy +cpy +cpy +rWS +ruG +kfr +rjK ien ien ien -xva -xDL +gAH +jhh prM kvc kBz -kId -xRE -jrQ -rvI +hyt +cTY +tWs +fOA clY sjY -hyZ +eWX rOi swt rdM @@ -68330,28 +56199,28 @@ gRs hJZ hJZ hJZ -gHz +kfV gKO ylo -xhW -hYf -wHi -pYY -hYf -wHi -jUk -ouI -hYf -emt -pck -hYf -erS -sau -kSh -ofS +lPg +izh +rlK +jIJ +izh +rlK +bik +sCI +dhL ylo -ien -ien +wLO +ylo +aDi +qNL +rgg +wUw +ylo +rMF +vyB vXc vXc vXc @@ -68374,16 +56243,16 @@ ien qJy aRN ien -mmw -fbh -fbh -fHB -sSQ -rnT -lBl -ttT -pkH -das +wWY +uif +uif +fnA +iZp +kha +pxb +eJI +pxs +eYo sYH sYH sYH @@ -68406,7 +56275,7 @@ sYH sYH sYH orU -ryU +pxs wiY pxb pwa @@ -68414,16 +56283,16 @@ xqp pxb cpy eYM -hUM -qCs -fxZ +end +jJF +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68444,28 +56313,28 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -doP -hnD +uVp +uVp +uVp +uVp +uVp +uVp +uVp +cYL +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +cYL +uVp +uVp +oQZ +hbY saC saC saC @@ -68489,7 +56358,7 @@ cpy cpy bIJ bIJ -dRn +pds bIJ bIJ nru @@ -68532,19 +56401,19 @@ sRA sRA sRA ien -sON -xRE -xEp +eHJ +cTY +ftV eiZ eiZ eiZ kIj eiZ -jrQ -rvI +tWs +fOA clY sjY -tbJ +nAZ mZs mOO iuv @@ -68557,28 +56426,28 @@ aTP hJZ hJZ hJZ -uwb +qyO ylo ylo -gZJ -wHi -hYf -pYY -oVb -hYf -xhW -hYf -hYf -qvK -xoj -hYf -lpt -gJL -wHi -cAW +llS +rlK +izh +jIJ +xqq +izh +lPg +izh +izh ylo +wLO ylo -ien +gfl +fdv +rlK +lxR +ylo +ylo +vyB vXc vXc vXc @@ -68586,31 +56455,31 @@ umf vXc vXc vXc -wdy -iPR -vMD -iPR -iPR -vMD -iPR -kJv -vMD -rjx -iPR -xAS -uOd -cxv +oTE +tNN +rrS +tNN +tNN +rrS +tNN +qcR +rrS +uyi +tNN +wHq +neo +vhu tZh ofi ofi max -rFw -sSQ -rnT -lBl -ttT -pkH -eyy +mna +iZp +kha +pxb +eJI +pxs +lCk nFj nFj nFj @@ -68633,7 +56502,7 @@ sYH nFj sYH dMY -ryU +pxs wiY pxb xqp @@ -68641,16 +56510,16 @@ xqp cpy cpy eYM -vYY -fxZ -fxZ +aUI +wfP +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68671,29 +56540,29 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -doP -hnD +uVp +uVp +uVp +uVp +uVp +uVp +uVp +cYL +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +cYL +uVp +uVp +uVp +oQZ +hbY saC saC saC @@ -68710,8 +56579,8 @@ bzC xpg cKG rtI -ncS -mWc +iAz +gUP cpy csU cpy @@ -68749,7 +56618,7 @@ cpy cpy sRA sRA -sRA +eyx cpy rWS rWS @@ -68759,19 +56628,19 @@ sRA sRA sRA ien -sON +eHJ eiZ xGa xLq uyN -kCf -kIn -xRE -jrQ -rvI +tWu +syq +cTY +tWs +fOA clY clY -tbJ +nAZ slD xPx kCF @@ -68784,35 +56653,35 @@ yhK yhK vKR sjY -oNQ -iPD +jkF +hmc yfu -vBM -wHi -hYf -hLl -fcd -hYf -hLl -wHi -hYf -vBM -hYf -isG -vBM -hYf -wHi -jAA -loX -aId -ien -ien +qfr +rlK +izh +xkW +bZY +izh +xkW +rlK +izh +ylo +pLe +ylo +vjY +izh +rlK +ocW +yfu +ylo +vyB +vXc vXc vXc umf umf vXc -wdy +oTE rMF nJv nJv @@ -68827,17 +56696,17 @@ nJv nJv nJv fnA -hpq +jvD tZh ofi max -rFw -sSQ -rnT -lBl -jPg -pkH -naS +mna +iZp +kha +pxb +ntf +pxs +cAi nFj nFj nFj @@ -68860,7 +56729,7 @@ nFj nFj sYH gnf -ryU +pxs wjE pxb xqp @@ -68868,16 +56737,16 @@ pwa cpy cpy eYM -ofX -rmC -fxZ +kAc +gzF +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -68898,29 +56767,29 @@ saC saC saC saC -uIW -iJA -uIW -dnQ -fzL -fzL -fzL -dMu -fzL -fzL -fzL -fzL -fzL -fzL -ssn -uIW -uIW -pgy -uIW -uIW -uIW -uIW -hTh +uVp +rZX +uVp +fft +vfi +vfi +vfi +nbW +vfi +vfi +vfi +vfi +vfi +vfi +mVN +uVp +uVp +rKm +uVp +uVp +uVp +uVp +oqc saC saC saC @@ -68936,9 +56805,9 @@ kBq bzC xpg pMT -rJI -xmj -mWc +uzy +hGS +gUP uWO uWO uWO @@ -68970,13 +56839,13 @@ sRA rWS sRA sRA -iXI +qMy cpy cpy cpy cpy sRA -sRA +nvB abt rWS sRA @@ -68991,14 +56860,14 @@ xwO eiZ xOD kvh -yeD -xRE -xRE -jrQ -rvI +apL +cTY +cTY +tWs +fOA clY clY -tbJ +nAZ vmQ swt dpk @@ -69011,9 +56880,9 @@ hJZ clY eUt sjY -oNQ -iPD -wHi +jkF +hmc +rlK qvY yfu yfu @@ -69023,48 +56892,48 @@ yfu yfu bZd yfu -bZd -bZd +pgH +wLO +ylo yfu +bZd yfu bZd -loX -rmm -gRl -uVS -ien +bZd +hmc +vyB vXc vXc vXc cpy umf yiM -fXx +caL nJv xVd -vGP -usn +vAy +eMy nJv nJv -rCa -rCa +tgL +tgL nJv -vzc -vzc -vzc +rpj +rpj +rpj xVd nJv -hpq +jvD tZh ofi max ien ien ien -lBl -lWj -cpU -fBL +pxb +vdj +wyE +hyL nFj pRg nFj @@ -69086,8 +56955,8 @@ sYH nFj pRg nFj -xEH -uZc +mTX +wyE wdY pxb pwa @@ -69095,16 +56964,16 @@ pxb pxb cpy eYM -fLM -rmC -fxZ +kvk +gzF +wfP eYM -qCs -fxZ -fxZ +jJF +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -69125,30 +56994,30 @@ saC saC saC saC -uIW -uIW -uIW -hTh +uVp +uVp +uVp +oqc uPc uPc kcb kcb -mTd -mTd +xWT +xWT uPc uPc kmd saC -bco -uIW -uIW -dxU -uIW -uIW -uIW -uIW -doP -hnD +cGB +uVp +uVp +cYL +uVp +uVp +uVp +uVp +oQZ +hbY fop saC tiQ @@ -69163,9 +57032,9 @@ oiW bzC xpg pPt -eqE -xmj -mWc +kQG +hGS +gUP uWO vtc vtc @@ -69191,13 +57060,13 @@ auG uWO vtc vtc -kBD +sRA cpy cpy sRA -sRA +kBT rWS -iXI +rFW sRA cpy cpy @@ -69213,19 +57082,19 @@ sRA sRA rWS ien -isc -xxJ -isc -xPQ -isc -kCC -isc -kPT -kSS -gGP +mTA +bDK +mTA +kUr +mTA +mej +mTA +fkS +avM +fXM sjY clY -tbJ +nAZ vzy hwF ePp @@ -69238,8 +57107,8 @@ hJZ hJZ iPu wBA -sKU -oOh +giw +xZD icE djm pCn @@ -69250,50 +57119,50 @@ qJK qJK cQB bZd +ylo +wLO +pgH yfu +vTq bZd bZd yfu -cQv -gRl -gRl -xXh -qhk -ien +hmc +vyB vXc vXc cpy cpy umf yiM -fXx +caL nJv nJv -vGP -vGP -qZJ -otM +vAy +vAy +qEW +nZO wdj -qOa +pDr nJv bzL qmA qmA -vzc +rpj nJv -hpq +jvD ofi ofi max -rFw -sSQ -rnT -lBl -lgY -oKG -pkH -pwH -sCk +mna +iZp +kha +pxb +fbc +bXz +pxs +wZZ +vJj jIk aGS dhP @@ -69312,8 +57181,8 @@ dhP vJj jIk aGS -uEH -ryU +wZZ +pxs gPv gVn pwa @@ -69323,15 +57192,15 @@ pxb cpy eYM eYM -ivb -fxZ +etp +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -69352,30 +57221,30 @@ saC saC saC saC -uIW -uIW -uIW -hTh +uVp +uVp +uVp +oqc uPc tKo wBG tiQ -mTd -mTd +xWT +xWT tKo -naC +jfL tiQ saC saC -uIW -uIW -kkc -kkc -uIW -uIW -uIW -uIW -doP +uVp +uVp +vCt +vCt +uVp +uVp +uVp +uVp +oQZ fop fop tiQ @@ -69391,8 +57260,8 @@ bzC xpg pPt sDS -xmj -mWc +hGS +gUP uWO uWO vtc @@ -69418,13 +57287,13 @@ auG uWO uWO vtc -kBD +sRA cpy cpy sRA +ocE rWS -rWS -kXo +uum sRA sRA cpy @@ -69440,16 +57309,16 @@ sRA sRA rWS ien -qFE -xxV -qFE -qFE -qFE -kCD -qFE -qFE -qFE -uSn +acf +fBs +acf +acf +acf +qex +acf +acf +acf +jYm sjY hJZ wqa @@ -69465,8 +57334,8 @@ hJZ hJZ slO hJZ -oNQ -iPD +jkF +hmc yfu yfu yfu @@ -69477,69 +57346,69 @@ yfu yfu bDr bZd -yfu -yfu -bZd +ylo +pLe +pgH +iRF bZd +yfu bZd -nvA -gRl -cQv -loX -ien -ien +yfu +hmc +vyB +vXc vXc cpy vXc vXc yiM -fAA +fxc nJv -vir -xJX -vHo +lMl +ggk +yfV udM nEY sQD -nsd +bza nJv cNO qmA mdp -vzc +rpj nJv -gpB +vqs ofi ofi max -rFw -sSQ -rnT -lBl -lBl -lgY -oKG -pkH -pkH -ryU -tgq -qcO -qjq +mna +iZp +kha +pxb +pxb +fbc +bXz +pxs +pxs +pxs +rAA +liy +jxM uiM -wuK -nHi -wuK -xcY -sAT -sAT -pnj +lDP +tkg +lDP +vXA +fYx +fYx +jpI uiM -rrI -tgq -tgq -ryU -ryU -ryU +ihh +rAA +rAA +pxs +pxs +pxs gPv gVn pxb @@ -69549,16 +57418,16 @@ pwa pxb cpy eYM -exQ -fxZ -fxZ +jOC +wfP +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait +sRM +hTe eYM eYM cpy @@ -69580,46 +57449,46 @@ saC saC saC saC -dxU -dxU -lcP +cYL +cYL +jEp tiQ tiQ tiQ tiQ -dpg -dpg +gDV +gDV tiQ tiQ tiQ tiQ saC saC -kkc -kkc -kkc -uIW -uIW -uIW -uIW -uIW -uIW +vCt +vCt +vCt +uVp +uVp +uVp +uVp +uVp +uVp fop fop xmT -fTS -fTS -fTS -fTS -fTS -hkT -fTS +nDX +nDX +nDX +nDX +nDX +cGO +nDX bzC xpg xpg -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO uWO @@ -69645,11 +57514,11 @@ vtc vtc uWO vtc -kBT +sRA uiK uiK sRA -uiK +tPN sRA bKq goY @@ -69668,103 +57537,103 @@ sRA ien ien ien -oqQ -oqQ -oqQ -oqQ -yeM -oqQ -oqQ -oqQ -oqQ -oqQ +cux +cux +cux +cux +uQX +cux +cux +cux +cux +cux wqa wqa wqa -bZF -bZF -bZF -bZF -bZF -bZF -bZF -bZF -bZF -xAN -bZF -bZF +boS +boS +boS +boS +boS +boS +boS +boS +boS +vuj +boS +boS ylo -hYf -pwJ -qpc -dGK -qpc -qpc -qpc +izh +wUX +eKM +aMf +eKM +eKM +eKM yfu bDr yfu +hEx +pLe +ylo hjE -yfu -qpc -nKj -dGK -qpc -snI -jub +aMf +eKM +blu +olJ ylo -ien +vyB vXc vXc vXc vXc yiM yiM -taj +pmm nJv -cfd +qHO vIy vIy oTp knT sEa -nky +soZ nJv rZg mwC kIs -vzc +rpj nJv -gpB +vqs ofi ofi max ien ien ien -veq -lBl -lBl -lgY -qMJ -oKG -ryU -ryU -ryU -qjq +pwa +pxb +pxb +fbc +udi +bXz +pxs +pxs +pxs +jxM qkw -wuK -xfW -wuK -xcY -sAT -sAT -pnj +lDP +xSj +lDP +vXA +fYx +fYx +jpI uiM -tgq -ryU -ryU -ryU +rAA +pxs +pxs +pxs gPv udi gVn @@ -69777,16 +57646,16 @@ cpy cpy eYM eYM -fxZ -fxZ +wfP +wfP eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -nvV -ait -ait +sRM +hTe +hTe eYM cpy cpy @@ -69807,73 +57676,73 @@ saC saC saC saC -uIW -uIW -hTh +uVp +uVp +oqc uPc dUS -saQ +cWD tiQ -mTd -mTd +xWT +xWT tJk -saQ +cWD tiQ saC saC saC saC -kkc -kkc -kkc -uIW -uIW -uIW -uIW -uIW +vCt +vCt +vCt +uVp +uVp +uVp +uVp +uVp fop fop xmT -tKb +rXQ jRZ -xuU -hAk -kyb -hkT +xEF +kEy +fsK +cGO bzC bzC bzC xpg -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO -lfS -xXV -xXV -xXV -xXV -xXV -xXV -xXV -xXV -xXV +wiS +wIc +wIc +wIc +wIc +wIc +wIc +wIc +wIc +wIc uWO iTW cPi uWO -xXV -xXV -xXV +wIc +wIc +wIc uWO uWO vtc vtc vtc uWO -prT -kWD +cnJ +sRA tTr pUR uiK @@ -69892,8 +57761,8 @@ goY rsF sRA sRA -wms -ien +sRA +clY sjY clY clY @@ -69919,35 +57788,35 @@ hJZ hJZ slO hJZ -uwb +qyO ylo ylo -cOA -sOm -jUk -cOA -jUk -jUk -hYf +lZt +llP +bik +lZt +bik +bik +izh sIS yfu -bZd -gJL -vIt -cOA -xhW -hsz -jnr +pgH +wLO ylo ylo -ien +nOQ +rjZ +gil +ylo +ylo +vyB vXc vXc vXc yiM yiM yiM -fXx +caL nJv nJv lHu @@ -69955,41 +57824,41 @@ pwT fSv wbj rIn -wOo -ooh -qOa +hVS +erF +pDr vIy pCT jYy -xvQ -hpq +xsu +jvD ofi tZh max -rFw -sSQ -rnT -veq -veq -lBl -lBl -lBl -lgY -qMJ -oKG -ryU -ryU +mna +iZp +kha +pwa +pwa +pxb +pxb +pxb +fbc +udi +bXz +pxs +pxs uiM uiM uiM uiM -xcY +vXA uiM uiM uiM uiM -ryU -ryU +pxs +pxs gPv udi gVn @@ -70003,17 +57872,17 @@ pwa cpy cpy eYM -jxF -fxZ -xZN +iSD +wfP +lgR eYM -fxZ -fxZ -nxF +wfP +wfP +qiy eYM -nvV -ait -ait +sRM +hTe +hTe eYM cpy cpy @@ -70033,16 +57902,16 @@ saC saC saC saC -uIW -uIW -uIW -doC +uVp +uVp +uVp +jjk uPc uPc uPc kmd -eow -mTd +kAa +xWT uPc uPc kmd @@ -70052,40 +57921,40 @@ saC saC saC saC -gFG -fzL -fzL -fzL -fzL +oLS +vfi +vfi +vfi +vfi fop fop fop xmT -jqz -fTS -xeG -xZw -kxm -hkT -fTS +gvu +nDX +qve +mab +fRz +cGO +nDX bzC xpg xpg -mGH -xmj -mWc +sQO +hGS +gUP aNw uWO -bdX +bFF bIJ bIJ -qmD -qmD -abV -ugu -abV -qmD -qmD +ire +ire +vXo +pkJ +vXo +ire +ire uWO uWO uWO @@ -70099,7 +57968,7 @@ vtc vtc vtc uWO -kLQ +sRA sRA uiK uiK @@ -70119,7 +57988,7 @@ hKE viA sRA sRA -wnl +sRA sjY sjY clY @@ -70133,7 +58002,7 @@ sjY hJZ hJZ clY -hAE +uko hJZ hJZ hJZ @@ -70146,7 +58015,7 @@ hJZ hJZ slO hJZ -jqF +nUs oOS ylo ylo @@ -70155,67 +58024,67 @@ ylo ylo ylo ylo -smR -wbi -smR -smR -smR +qFc +lPC +qFc ylo +pLe ylo ylo ylo ylo ylo -ien -ien -ien +ylo +rMF +bAL +vXc vXc yiM yiM yiM yiM -fCU -kvq -oZd +azf +iMc +oXE qWf icy wdj wdj wdj -pCU -rwM -qOa +xOZ +eXA +pDr vIy eXU lKu -xvQ -hpq +xsu +jvD ofi max max -rFw -sSQ -rnT -veq -veq -veq -lBl -lBl -lBl -lBl -lgY -oKG -ryU -ryU -ryU -qxD -rrI -xcY -pnj -pnj -ryU -ryU -ryU +mna +iZp +kha +pwa +pwa +pwa +pxb +pxb +pxb +pxb +fbc +bXz +pxs +pxs +pxs +giW +ihh +vXA +jpI +jpI +pxs +pxs +pxs gPv gVn pxb @@ -70231,16 +58100,16 @@ cpy cpy eYM eYM -jCh +irS eYM eYM -ivb -fxZ -fxZ +etp +wfP +wfP eYM -vBm -cHY -ait +kxc +qxk +hTe eYM cpy cpy @@ -70259,51 +58128,51 @@ saC saC saC saC -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -vAi -vAi -vAi -vAi -vAi -fTO -uIW +uVp +uVp +uVp +uVp +oqc +daw +daw +daw +daw +daw +daw +daw +daw +daw +cWn +uVp saC saC saC saC saC -uIW -uIW -uIW -uIW +uVp +uVp +uVp +uVp fop fop fop xmT fop -fTS -xeG -xZw -xrA +nDX +qve +mab +fhw kOE -lgf +slz bzC xpg pPC -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO -bdX +bFF bIJ eaE eaE @@ -70326,7 +58195,7 @@ uWO vtc vtc uWO -kNj +uiK sRA uiK uiK @@ -70346,7 +58215,7 @@ uiK hRu uiK sRA -wnu +sRA sjY clY clY @@ -70360,7 +58229,7 @@ hJZ hJZ hJZ clY -hAE +uko hJZ hJZ hJZ @@ -70374,73 +58243,73 @@ hJZ slO hJZ hJZ -jqF -qFE -tbJ -thI -xyN -xyN -xyN -lwv -xyN -cnN -xyN -xyN -xyN -lwv -xyN -xyN -dbc -xyN -xyN -sql -ien +nUs +acf +nAZ +ciT +kdM +kdM +kdM +xrV +kdM +ikj +kdM +kdM +nsK +xrV +kdM +kdM +kdM +kdM +kdM +bAL +vXc yiM yiM yiM yiM yiM yiM -fXx -xvQ -sXM +caL +xsu +rzJ ukp xdD oPc nEY sQD -flC +oWG nJv -xZS +pFl rbc vIy -pXk -xvQ -hpq +usv +xsu +jvD max max max -rFw -sSQ -vGo -jZD -jZD -jZD -jZD -oiY -lBl -lBl -lBl -lgY -qMJ -oKG -uZc -ryU -ryU -xcY -ryU -ryU -uZc +mna +iZp +wFc +bxa +bxa +bxa +bxa +tCZ +pxb +pxb +pxb +fbc +udi +bXz +wyE +pxs +pxs +vXA +pxs +pxs +wyE gPv udi gVn @@ -70457,17 +58326,17 @@ pxb cpy eYM eYM -fxZ -fxZ -fxZ +wfP +wfP +wfP eYM -fxZ -fxZ -qCs +wfP +wfP +jJF eYM eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70485,63 +58354,63 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +uVp +oqc uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd +xWT +xWT +xWT +daw +daw +xWT +xWT +xWT uPc -uIW -mTd -giF +uVp +xWT +kif saC saC saC saC saC -uIW +uVp fop fop fop fop chm fop -fTS -xeG -xZw -xrF -fTS -fTS +nDX +qve +mab +bSK +nDX +nDX bzC xpg xpg sDS -xmj -mWc +hGS +gUP uWO uWO -bdX -hzM +bFF +arI eaE -fXS -fXS +tBz +tBz uWO -fXS -fXS -fXS -hNZ -fXS -fXS +tBz +tBz +tBz +vTd +tBz +tBz uWO uWO uWO @@ -70587,7 +58456,7 @@ wBA wBA vEf wBA -dsT +cVS wBA wBA yhK @@ -70603,7 +58472,7 @@ wBA vEf wBA wBA -osd +uoP tBC rwE rwE @@ -70612,89 +58481,89 @@ rwE rwE hWI yiM +nsK +nsK +nsK vXc vXc vXc -vXc -vXc -dbc umf umf vXc -ien yiM yiM yiM yiM yiM yiM -fXx +yiM +caL nJv xVd -exy -cpE -jkL -xzj -pWW -qLa +tlo +ssu +eIy +ojc +jXX +pvq nJv -gZg -gUA -nMd +wBu +uGh +kIF xVd nJv -hpq +jvD max max max -rFw +mna tFx -kWp +pST tFx tFx -kWp +pST tFx -rnT -lBl -lBl -lBl -lBl -lBl -lgY -qMJ -qDt -pkH -pkH -pkH -taW -qMJ -rPQ -lBl -lBl -lBl -lBl -lBl -lBl -veq -veq -veq -vqw -vqw +kha +pxb +pxb +pxb +pxb +pxb +fbc +udi +pWA +pxs +pxs +pxs +uiz +udi +gVn +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +xqp +xqp cpy cpy eYM -mMX -fxZ -fxZ -fxZ +vWk +wfP +wfP +wfP eYM -fxZ -fxZ -qCs -xIK +wfP +wfP +jJF +mAS eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70712,27 +58581,27 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +uVp +oqc uPc uPc uPc uPc -vAi -vAi +daw +daw uPc uPc uPc uPc -uIW -mTd -dWT -dWT -vAi +uVp +xWT +ulm +ulm +daw saC saC saC @@ -70743,24 +58612,24 @@ fop fop chm chm -hLT -xeG -xZw -xrA -fTS +wwd +qve +mab +fhw +nDX bzC bzC bzC xpg -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO -bdX -hzM +bFF +arI enS -fXS +tBz dmG dQs gFp @@ -70768,7 +58637,7 @@ eaE eaE eaE eaE -fXS +tBz uWO uWO uWO @@ -70780,10 +58649,10 @@ uWO uWO uWO vtc -bBB -nFO -lhC -lxj +kBT +kBD +uiK +uiK sRA uiK uiK @@ -70802,7 +58671,7 @@ uiK uiK sRA clY -xfe +clY clY xGc lvb @@ -70814,7 +58683,7 @@ hJZ hJZ slO clY -ihI +htK clY hJZ gVv @@ -70823,105 +58692,105 @@ xVz xVz gsS hJZ -gHz -ydA -ydA -ydA -wMe -ydA -ydA -tbJ -uIr -jPv +kfV +wjD +wjD +wjD +dJg +wjD +wjD +nAZ +deS +uio +yiM yiM yiM yiM yiM yiM -eYT -eYT -kXc +yiM +nsK vXc vXc vXc -dbc vXc vXc -ien -ien -ien +vXc +vXc +yiM +yiM yiM yiM yiM yiM yiM -fXx +caL gbB nJv -xvQ -gcX -kvq -ivK -wng -hpO -ivK -xvQ -xvQ -xvQ +xsu +aZS +iMc +nJv +mvA +bOS +nJv +xsu +xsu +xsu nJv kmq -xVV +iHQ max max ofi -rFw -aFf -wHo -xzp -ojb -uom -kWp -rnT -lBl -lBl -lBl -veq -veq -lBl -lBl -qDD -rys -rys -rys -jYK -lBl -lBl -lBl -lBl -veq -veq -lBl -veq -veq -veq -lBl -vqw -vqw +mna +fwk +jCa +lgo +gdd +nhI +pST +kha +pxb +pxb +pxb +pwa +pwa +pxb +pxb +yah +ski +ski +ski +nZI +pxb +pxb +pxb +pxb +pwa +pwa +pxb +pwa +pwa +pwa +pxb +xqp +xqp cpy cpy eYM -mMX -fxZ -fxZ -fxZ +vWk +wfP +wfP +wfP eYM -fxZ -fxZ -fxZ -qCs +wfP +wfP +wfP +jJF eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -70940,27 +58809,27 @@ saC saC saC saC -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +oqc uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd +xWT +xWT +xWT +daw +daw +xWT +xWT +xWT uPc -uIW -mTd -vAi -dWT -vAi -vAi +uVp +xWT +daw +ulm +daw +daw saC saC saC @@ -70971,23 +58840,23 @@ chm chm chm saC -kih +jIZ uQI pLj -kOJ -lhD +tBg +izq bzC xpg xpg -eqE -hQh -mWc +kQG +mwV +gUP uWO uWO -bdX -hzM +bFF +arI eaE -cyl +tvF doj eaE gSw @@ -70995,22 +58864,22 @@ eaE nTO gge eaE -fXS +tBz ilK uWO uWO uWO uWO -mWc +gUP uWO vtc uWO uWO uWO -kRf -lhb -lhb -ckK +ylL +dei +dei +svP sRA sRA uiK @@ -71029,7 +58898,7 @@ uiK uiK uiK wKj -xfr +clY clY hJZ slO @@ -71041,7 +58910,7 @@ hJZ hJZ eUt clY -hAE +uko clY hJZ hJZ @@ -71049,33 +58918,32 @@ hJZ hJZ clY clY -gHz +kfV gKO nLm nLm nLm -eBA -qbL +omk +cRh nLm nLm nLm rMF -jPv +uio yiM yiM yiM yiM -arP yiM yiM -puY +nsK +vXc +vXc vXc vXc -dbc vXc vXc yiM -ien yiM yiM yiM @@ -71083,72 +58951,73 @@ yiM yiM yiM yiM -pUv -xyN -xyN -xyN -xyN -pCq -wfE -aRM -iyt -xyN -vMD -veQ -veQ -xVV +yiM +wAP +kdM +kdM +kdM +kdM +ibJ +rUT +xSa +mXv +kdM +rrS +uif +uif +iHQ max max max ofi -rFw -kZJ -ggS -uol -uol -rzz -kWp -rnT -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -lBl -lBl -lBl -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -veq -vqw +mna +fwk +oie +hDz +hDz +opS +pST +kha +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +xqp cpy cpy eYM -oBw -fxZ -fxZ -fxZ +qDp +wfP +wfP +wfP eYM -xZN -fxZ -fxZ -qCs +lgR +wfP +wfP +jJF eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71166,30 +59035,30 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -fTO -vAi -iMx -vAi -bXq -fvo -fFS -mTd -vAi -vAi -bXq -vAi -mTd -uIW +uVp +uVp +uVp +uVp +uVp +oqc +daw +daw +daw +daw +cWn +daw +ajD +daw +wbr +moo +czs +xWT +daw +daw +wbr +daw +xWT +uVp saC saC saC @@ -71198,23 +59067,23 @@ chm chm tiQ saC -kiD +wFu jsD tCh kOQ -lhD +izq bzC xpg pPt sDS -ncS -sGt +iAz +wOL uWO uWO -bdX -hzM +bFF +arI eaE -cFv +tpF fsQ fej eaE @@ -71222,13 +59091,13 @@ eaE gbH hPd eaE -fXS +tBz eaE uWO uWO iTW uWO -mWc +gUP vtc vtc vtc @@ -71237,7 +59106,7 @@ uWO kSR lBE lBE -oOD +niz rWS sRA sRA @@ -71256,8 +59125,8 @@ rGi uiK uiK hJZ -jGh -xyf +clY +hJZ hJZ slO hJZ @@ -71268,7 +59137,7 @@ hJZ wKj eUt sjY -hAE +uko clY clY clY @@ -71276,33 +59145,33 @@ clY clY clY clY -oNQ +jkF nLm nLm -bwy -dBa -nOl -xpu -fEW -jOr +kMc +uvo +aVv +oII +sck +uQM nLm nLm -spo -yiM -yiM -yiM +vyB yiM yiM yiM yiM yiM +nsK +nsK +nsK +vXc vXc vXc -dbc vXc yiM yiM -ien +yiM yiM yiM yiM @@ -71320,7 +59189,7 @@ wYa vXc vXc vXc -vMD +rrS max max max @@ -71328,54 +59197,54 @@ max max max ofi -rFw -kPJ -ggS -nEq -nEq -rzz -syM -rnT -lBl -veq -veq -veq -vqw -veq -veq -veq -veq -veq -veq -veq -lBl -lBl -veq -veq -veq -veq -veq -veq -lBl -lBl -lBl -lBl -lBl +mna +xWy +oie +vXK +vXK +opS +sjm +kha +pxb +pwa +pwa +pwa +xqp +pwa +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb cpy cpy eYM -sdN -fxZ -fxZ -qCs +wyj +wfP +wfP +jJF eYM -xIK -fxZ -fxZ -rcR +mAS +wfP +wfP +iAt eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71392,32 +59261,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -iJA -uIW -hTh +uVp +uVp +uVp +uVp +rZX +uVp +oqc uPc -mTd -mTd -mTd -eoZ -vAi -mTd -mTd -mTd +xWT +xWT +xWT +lQx +daw +xWT +xWT +xWT uPc -gmt -mTd -vAi -vAi -vAi -vAi -mTd -uIW -uIW +naI +xWT +daw +daw +daw +daw +xWT +uVp +uVp saC saC saC @@ -71428,20 +59297,20 @@ saC oJS oJS tCh -isu -lhD +iMp +izq bzC xpg xpg -rJI -ncS -sGt +uzy +iAz +wOL uWO uWO -bdX -iGK +bFF +ggn eaE -cYF +aag gge jsQ uWO @@ -71449,13 +59318,13 @@ cWf gwt eaE eaE -fXS +tBz eaE uWO uWO uWO gcY -nkv +aAk uWO vtc vtc @@ -71484,53 +59353,53 @@ sRA ien ien ien -jVS +hJZ hJZ slO hJZ hJZ hJZ -gHz -ydA -ydA -wMe -ydA -hAE -hiK +kfV +wjD +wjD +dJg +wjD +uko +xJM sjY clY clY clY clY sjY -oNQ +jkF nLm -nWK +rWF jfZ jfZ sWt fgk tHJ jfZ -ftA +gbM nLm -spo +vyB yiM yiM yiM yiM yiM -wdy -iPR -iPR -iPR -iPR -dbc -jPv +oTE +nsK +tNN +tNN +tNN +tNN +uio vXc -ien -ien -ien +vXc +yiM +yiM yiM yiM pWR @@ -71547,7 +59416,7 @@ pnE umf umf vXc -vMD +rrS max max max @@ -71555,54 +59424,54 @@ max max ofi tZh -rFw -aFf -lJU -uol -vbu -oPR -kWp -rnT -veq -veq -veq -lBl -vqw -vqw -veq -veq -vqw -vqw -vqw -veq -veq -veq -veq -veq -veq -tMq -jZD -jZD -jZD -jZD -jZD -jZD +mna +fwk +uLG +hDz +dxG +etw +pST +kha +pwa +pwa +pwa +pxb +xqp +xqp +pwa +pwa +xqp +xqp +xqp +pwa +pwa +pwa +pwa +pwa +pwa +kEc +bxa +bxa +bxa +bxa +bxa +bxa cpy cpy cpy eYM -kbo -fxZ -qCs -qCs +mxU +wfP +jJF +jJF eYM -xIK -qCs -fxZ -rcR +mAS +jJF +wfP +iAt eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71619,32 +59488,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +uVp +uVp +oqc uPc uPc uPc uPc -epb -vAi +dAr +daw uPc uPc uPc uPc -gmt -mTd -mTd -mTd -mTd -mTd -mTd -uIW -uIW +naI +xWT +xWT +xWT +xWT +xWT +xWT +uVp +uVp saC saC saC @@ -71660,15 +59529,15 @@ bzC bzC bzC xpg -rJI +uzy bkE -sGt +wOL uWO oTX -bdX -iGK +bFF +ggn eaE -fXS +tBz doF gFp uWO @@ -71676,7 +59545,7 @@ fkB uWO eaE eaE -fXS +tBz eaE eaE uWO @@ -71716,47 +59585,47 @@ hJZ slO hJZ hJZ -gHz +kfV oOS nLm -pMd -qEU -pMd +fvd +dUn +fvd nLm oOS -hiK +xJM sjY clY clY sjY sjY -oNQ -ygJ -vJT +jkF +gzb +lmE uOs tUM eAm uOs tUM uOs -kcS -ygJ -spo +vor +gzb +vyB yiM yiM yiM yiM -wdy +oTE gbB nLm -pMd -pMd -pMd +fvd +fvd +fvd nLm rMF -jPv +uio +vXc vXc -ien yiM yiM yiM @@ -71769,67 +59638,67 @@ yiM yiM vXc vXc -wdy -iPR -iPR -iPR -iPR -vMD -cxv +oTE +tNN +tNN +tNN +tNN +rrS +vhu max max max max ofi tZh -rFw -aFf -xdn -rzz -omG -oRS -kWp -rnT -veq -veq -lBl -cpy -lBl -lBl -lBl -veq -rAu -umK -sCb -tfb -tMt -umK -uFp -veq -veq -vtN +mna +fwk +ghn +opS +urj +wJh +pST +kha +pwa +pwa +pxb +cpy +pxb +pxb +pxb +pwa +yac +lLQ +sfi +bJV +cur +lLQ +oGq +pwa +pwa +atS tFx tFx -vTT -vTT -vTT +ffB +ffB +ffB tFx tFx cpy cpy eYM -ikb -fxZ -qCs +skH +wfP +jJF eYM eYM eYM -ntT -fxZ -fxZ +fHV +wfP +wfP eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -71845,32 +59714,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -doC +uVp +uVp +uVp +uVp +uVp +uVp +uVp +jjk uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd +xWT +xWT +xWT +daw +daw +xWT +xWT +xWT uPc -gmt -uIW -gjm -uIW -uIW -uIW -uIW -uIW +naI +uVp +nRk +uVp +uVp +uVp +uVp +uVp saC saC saC @@ -71887,15 +59756,15 @@ bzC bzC xpg xpg -rLB +bNu bkE -wEz +dNJ uWO uWO -bdX -iGK +bFF +ggn eaE -fXS +tBz doF eaE gSw @@ -71903,7 +59772,7 @@ gFp eaE gIv eaE -hNZ +vTd eaE eaE uWO @@ -71942,48 +59811,48 @@ hJZ hJZ slO hJZ -gHz +kfV oOS nLm nLm -sQQ -gBE -lmA +lVC +tCJ +eXn nLm nLm oOS -ydA -ydA -ydA -ydA -ydA +wjD +wjD +wjD +wjD +wjD oOS -kwo -vJT +oai +lmE oPu uOs -lAj -oTg +aoN +jhJ fjP uOs -avp -kwo +ajH +oai rMF -iPR -iPR -iPR -iPR +tNN +tNN +tNN +tNN rMF nLm nLm -fmH -qHa -qnY +oqT +nRP +bZf nLm nLm rVa -jPv -ien +uio +vXc vXc vXc yiM @@ -71995,7 +59864,7 @@ yiM yiM vXc vXc -wdy +oTE rMF mBF rMF @@ -72003,60 +59872,60 @@ mBF rMF mBF fnA -cxv +vhu max max max tZh -fPt -fHB +qbe +fnA tFx -kWp -pid -kWp +pST +psO +pST tFx tFx -rnT -lBl -lBl +kha +pxb +pxb cpy cpy -lBl -lBl -lBl -rAu -rOw +pxb +pxb +pxb +yac +fhn tFx tFx -xXO +psO tFx tFx -uKY -jZD -jZD -vGo +vdq +bxa +bxa +wFc tFx -vso -yhU -nEq -yhU -uPo +bDH +lQw +vXK +lQw +eHl tFx eYM eYM eYM eYM -jCh +irS eYM eYM eYM eYM eYM -jCh +irS eYM eYM -nvV -ait +sRM +hTe eYM cpy cpy @@ -72071,32 +59940,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -vAi -vAi -vAi -fTO -vAi -fwj -fGh -fTs -fTs -fTs -fTs -fTs -fTs +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +oqc +daw +daw +daw +daw +daw +daw +daw +cWn +daw +ubU +cPa +qPi +qPi +qPi +qPi +qPi +qPi eLV saC saC @@ -72104,9 +59973,9 @@ saC saC saC tiQ -jqz +gvu tiQ -isu +iMp oJS oJS oJS @@ -72114,15 +59983,15 @@ bzC bzC bzC xpg -rJI +uzy bkE -mWc +gUP uWO uWO -bdX -hzM +bFF +arI enS -fXS +tBz dqr eaE egV @@ -72130,7 +59999,7 @@ eaE eaE gJm eaE -fXS +tBz eaE eaE aNw @@ -72146,9 +60015,9 @@ ien sjY hJZ ien -qtl -qMX -qXz +clY +clY +rnG kYm hJZ hJZ @@ -72168,50 +60037,50 @@ hJZ hJZ hJZ slO -gHz +kfV gKO nLm nLm -pOA -vJT +mVb +lmE lnQ -vJT -sXm +lmE +wJf nLm nwj -uaT -uaT +mSp +mSp nwj -uaT -uaT +mSp +mSp nwj nLm -dgj -pBF -ivj -kVj -cte -qEu -mly -gNb +ppZ +tAP +elo +bge +xoX +omd +hbX +ngv nLm nwj -uaT -uaT -uaT -uaT +mSp +mSp +mSp +mSp nwj nLm -kJb -jbd +eOM +iyh fms -wan -wan +clc +clc nLm nLm -ien -ien -ien +rMF +uio +vXc vXc umf xTV @@ -72221,7 +60090,7 @@ yiM yiM vXc vXc -wdy +oTE gbB mBF mBF @@ -72231,58 +60100,58 @@ mBF mBF mBF fnA -cxv +vhu max max tZh -rFw +mna tFx tFx -eiP -rzz -jQC +yhY +opS +teG tFx tFx -rnT -lBl -lBl -lBl -lBl -lBl -lBl -veq -gej +kha +pxb +pxb +pxb +pxb +pxb +pxb +pwa +lOF tFx tFx -pQG -yhU -tRI +eAG +lQw +ivn tFx tFx cpy cpy -vGo +wFc tFx -vuH -vUX -nEq -yhU -vAW +ewq +tXC +vXK +lQw +dNS tFx eYM -uEV -sdN -fxZ -qCs -qCs +tFc +wyj +wfP +jJF +jJF eYM eYM eYM -nSq -fxZ -qCs -vTQ -nvV +pip +wfP +jJF +pzN +sRM eYM eYM cpy @@ -72297,33 +60166,33 @@ tiQ saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +oqc uPc uPc uPc kmd -mTd -mTd +xWT +xWT uPc uPc kmd uPc -nDz -uIW -uIW -uIW -uIW -uIW -uIW +rOB +uVp +uVp +uVp +uVp +uVp +uVp eLV eLV saC @@ -72331,25 +60200,25 @@ saC saC saC tiQ -xZL -jSR -pyo -xuU +ebW +nBH +lYj +xEF oJS oJS oJS bzC xpg xpg -eqE -ncS -mWc +kQG +iAz +gUP uWO uWO -bdX -hzM +bFF +arI eaE -cZM +rzl dBC dTv eaE @@ -72357,10 +60226,10 @@ jsQ eaE heB eaE -nZF -nZF -nZF -nZF +ikg +ikg +ikg +ikg uWO uWO uWO @@ -72372,7 +60241,7 @@ ien hmz nfU hJZ -vne +kuX clY clY clY @@ -72387,57 +60256,57 @@ lsG qDl clY vjG -kCJ -ydA -ydA -ydA -ydA -hiK +mDd +wjD +wjD +wjD +wjD +xJM xGk slO -oNQ +jkF nLm nLm -oAJ -vJT +awx +lmE uOs eAm uOs -vJn +jEZ nLm -qnG -oHj -mEi -mOQ -tvz -tvz -iWp +ktQ +nDc +gTo +wkh +sTL +sTL +xHS nLm nLm nLm -pMd -eBA -dUr -pMd +fvd +omk +uNx +fvd nLm nLm nLm -uVZ -jTr -oRr -jvG -kUf -eOj +sOZ +kVW +eTt +ejP +rsE +jbe nLm -fcv +dRj lUi fjP guB -uDP -kDH +lTM +aFI nLm nLm -ien +vyB vXc vXc vXc @@ -72447,69 +60316,69 @@ vXc yiM vXc umf -wdy +oTE rMF mBF mBF -cIQ -dQM -sPa -fXa -mIO +rqZ +eWA +xZi +xlU +xZg mBF mBF kmq -cxv +vhu max max -rFw -aFf -lIu -nnv -vbu -vbu -rzz -kWp -rnT -lBl -lBl -lBl -lBl -lBl -lBl -veq -gej +mna +fwk +jvP +otV +dxG +dxG +opS +pST +kha +pxb +pxb +pxb +pxb +pxb +pxb +pwa +lOF tFx -iVZ -rzz -nEq -tUB -uoh +czR +opS +vXK +oio +vKn tFx cpy cpy cpy tFx -ggS -yhU -yhU -yhU -ggS +oie +lQw +lQw +lQw +oie tFx -naB -pET -fxZ -fxZ -fxZ -qCs -xIK +txb +xif +wfP +wfP +wfP +jJF +mAS eYM -qXs -qCs -fxZ -fxZ -vTQ -nvV +kcz +jJF +wfP +wfP +pzN +sRM eYM cpy cpy @@ -72524,32 +60393,32 @@ tiQ saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +uVp +oqc uPc tKo -naC +jfL tiQ -mTd -mTd +xWT +xWT tKo -naC +jfL tiQ -wVf -nDz -uIW -uIW -uIW +hOs +rOB +uVp +uVp +uVp eLV -uIW +uVp eLV eLV eLV @@ -72558,25 +60427,25 @@ saC saC saC tiQ -jsy -loD -lSs -uLk -mwf +iDZ +vKZ +sak +lKD +slv kOU oJS bzC xpg pPC sDS -ncS -mWc +iAz +gUP uWO uWO -bdX -iGK +bFF +ggn eaE -fXS +tBz eaE eaE bex @@ -72584,7 +60453,7 @@ eaE gFp eaE hZZ -iUj +dxv eaE eaE eaE @@ -72599,7 +60468,7 @@ ien hmM clY hJZ -vne +kuX clY clY clY @@ -72614,57 +60483,57 @@ xkO lUh clY clY -oTd -jgv -sXo -wdg -foT -rvI +gLi +sxs +izt +mxq +lWu +fOA tPv slO -oNQ +jkF nLm -oAJ -vJT +awx +lmE uOs mQy mMv uOs -vJT -pMd -rro +lmE +fvd +oMg bkl vUf qfu qfu vUf -jhk -xXz -pMd -pfe -qxZ -qYl -rGm -kcS -rVW -pMd -kun -mVH +jyO +qbp +fvd +umm +nYR +dlO +pTX +vor +ydW +fvd +elB +epo ruS rYE ruS ruS -cLx -pMd -ovV +aPo +fvd +xdi trj tUM uOs fjP -vJT -pfV +lmE +vTI nLm -ien +vyB vXc vXc vXc @@ -72674,69 +60543,69 @@ vXc vXc vXc vXc -fXx +caL mBF mBF -jJh -uWx -skU -eEv -xuB -xuB -xMz +blI +hQd +oQB +fNH +pOq +pOq +ein mBF mBF -hpq +jvD max max -rFw -aFf -mOf -nnW -nEq -uol -rzz -syM -rnT -lBl -lBl -lBl -lBl -lBl -veq -veq -gej -ymc -gQy -xni -nEq -tXG -upl +mna +fwk +iOU +vBv +vXK +hDz +opS +sjm +kha +pxb +pxb +pxb +pxb +pxb +pwa +pwa +lOF +pST +lfK +udq +vXK +jlz +pFX tFx tFx tFx tFx tFx -ggS -vVi -nEq -ggS -rSh -vNW -pYj -fxZ -fxZ -fxZ -fxZ -fxZ -waz +oie +bgE +vXK +oie +cWV +bca +lYd +wfP +wfP +wfP +wfP +wfP +mAn eYM -qLk -fxZ -fxZ -fxZ -uIF -nvV +nmi +wfP +wfP +wfP +dhK +sRM eYM cpy cpy @@ -72751,30 +60620,30 @@ tiQ tiQ saC saC -ssn -uIW -iJA -uIW +mVN +uVp +rZX +uVp chm chm saC -uIW -uIW -hTh +uVp +uVp +oqc tiQ tiQ tiQ tiQ -mTd -mTd +xWT +xWT tiQ tiQ tiQ tiQ -dgI -dxU -dxU -smK +wlM +cYL +cYL +tRz eLV eLV eLV @@ -72785,25 +60654,25 @@ saC saC tiQ tiQ -isu -iWZ -xZw -xZw -xrA -fTS +iMp +uyU +mab +mab +fhw +nDX oJS bzC xpg xpg -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO -bdX -hzM +bFF +arI eaE -liD +cwD eaE dYK gFp @@ -72811,7 +60680,7 @@ eaE eaE eaE hUZ -fXS +tBz enS eaE eaE @@ -72826,7 +60695,7 @@ ien ien hAs hJZ -vne +kuX clY hJZ clY @@ -72836,29 +60705,29 @@ clY clY rmX xkO -sKj +sQe xkO lUh clY clY -srQ -gpp -xRE -xRE -jrQ -rvI +qeA +lCe +cTY +cTY +tWs +fOA tPv slO -oNQ -pMd -vRh +jkF +fvd +pCO fjP ltC jMZ prW sPk sPk -lzk +mPK xrH jDA akh @@ -72866,33 +60735,33 @@ akh iIK uUB lLl -gcv -skn -xIr +nuM +dSl +fma pQA jhl sPk dnM -pxS -hnX -eIk +itW +vji +qmB cDH cDH gbe vyz czd cDH -vIg +nMf dnM rou xXN tUM uOs uOs -vJT -nLm -ien -ien +lmE +fvd +vyB +vXc vXc jue wYa @@ -72901,69 +60770,69 @@ cpy vXc vXc yiM -fXx +caL rMF -vVs -vLf -xuB +miR +rYm +pOq nqY -bSD +iLb cem -tYs -bOM -vVs +avv +jql +miR kbS -hpq +jvD max max -rFw -aFf -mOP -nsr -uol -uol -oVK -kWp -vGo -jZD +mna +fwk +gsp +lHp +hDz +hDz +oAc +pST +wFc +bxa ien -jZD -jZD -jZD +bxa +bxa +bxa ien -jZD -saL -ymc -dUw -yhU -tfl -tKS -nEq -vuu -uXu -vdP -vjC -vuu -vAW -vVi -nEq -ggS -tVj +bxa +sly +pST +fOg +lQw +gHE +glI +vXK +daH +cNN +vDj +jaB +daH +dNS +bgE +vXK +oie +pzU tFx -eTu -kZq -qCs -qVQ -qCs -xIK +cLB +mQX +jJF +vLN +jJF +mAS eYM eYM -epN -fxZ -qCs -qCs -uIF -nvV +pzC +wfP +jJF +jJF +dhK +sRM eYM cpy cpy @@ -72977,60 +60846,60 @@ cpy cpy tiQ saC -dWT -bIY -dwG -dxU +ulm +boB +oYB +cYL chm chm saC saC saC -uIW -hTh +uVp +oqc wTv tJk -saQ +cWD tiQ -mTd -mTd +xWT +xWT tJk rUX tiQ fwo -nDz -uIW -uIW +rOB +uVp +uVp eLV eLV eLV -uIW -uIW +uVp +uVp eLV eLV saC saC tiQ -xZL -pyo -iWZ -xZw -xZw -xrA -ldi +ebW +lYj +uyU +mab +mab +fhw +fEb bzC bzC bzC xpg -eqE -xmj -mWc +kQG +hGS +gUP oTX uWO -bdX -hzM +bFF +arI eaE -fXS +tBz eaE eaE doF @@ -73038,7 +60907,7 @@ eaE eaE bex eaE -iso +ije eaE jvf eaE @@ -73053,7 +60922,7 @@ ien prZ pza hJZ -vne +kuX hJZ hJZ clY @@ -73063,62 +60932,62 @@ hJZ clY rmX xkO -xWx +sYp xkO lUh clY clY -oNQ -gpp -xRE -tGy -bdj -rvI +jkF +lCe +cTY +eXp +vHj +fOA tPv slO -oNQ -pMd -fcv +jkF +fvd +dRj xEB trj fjP fjP rox -wan -pMd -xRG +clc +fvd +kHN klY klY rbj qfu qfu qfu -thd -pMd -sIq -oot +ohI +fvd +fkl +bxB eAm uOs -gWh -kcS -pMd -jTr +hyv +vor +fvd +kVW ruS xNe ruS mtt aFN -dmn -pMd -wan +kTc +fvd +clc rox fjP uOs uOs lsD -aGA -nLm -ien +dLX +fvd +vyB vXc vXc upz @@ -73128,54 +60997,54 @@ cpy yiM yiM yiM -fXx +caL rMF -vVs -weh -xuB +miR +cgK +pOq nqY -xLn +byT gKY -hPI -hyA -sTy +ryi +uJX +mmH fnA -dPP +xFO max max -rFw +mna tFx tFx -nuU -eSb -opt +dGT +dcI +oqu tFx tFx -fLF -fLF +muM +muM ien -fLF -fLF -fLF +muM +muM +muM ien -fLF -gKg +muM +rhS tFx -vCE -yhU -tKS -tKS -upX +uCS +lQw +glI +glI +mOV tFx tFx tFx tFx tFx -vuH -vZv -ggS -rSh -wlY +ewq +aIi +oie +cWV +sug tFx eYM eYM @@ -73185,12 +61054,12 @@ eYM eYM eYM eYM -epN -fxZ -fxZ -fxZ -vTQ -nvV +pzC +wfP +wfP +wfP +pzN +sRM eYM cpy cpy @@ -73204,60 +61073,60 @@ cpy cpy tiQ tiQ -dWT -vAi -bco -uIW +ulm +daw +cGB +uVp chm saC saC saC saC -uIW -hTh +uVp +oqc wTv uPc uPc kmd -mTd -mTd +xWT +xWT uPc saC saC uPc -nDz -uIW -uIW -uIW +rOB +uVp +uVp +uVp eLV -uIW -uIW -uIW -hTh +uVp +uVp +uVp +oqc eLV eLV tiQ tiQ -hhu -loD -uEl -xZw -xZw -xrF -kPG -lgf +npY +vKZ +poa +mab +mab +bSK +ifU +slz bzC xpg xpg -eqE -xmj -mWc +kQG +hGS +gUP uWO uWO -bdX -hzM +bFF +arI eaE -fXS +tBz gSw eaE eaE @@ -73265,7 +61134,7 @@ fvx eaE eaE eaE -iEq +eht eaE jFr eaE @@ -73280,7 +61149,7 @@ ien qzy eyM gfi -vne +kuX hJZ hJZ clY @@ -73295,57 +61164,57 @@ sek qma clY hJZ -oNQ -vWJ -isc -ykR -sXQ -rvI +jkF +vFg +mTA +hCa +wMM +fOA kfq slO -nQM +ksl nLm -nrd -bXo -hpe -kcS -cqh -whn -sQQ +aMb +lkC +naQ +vor +gNc +lRD +lVC nLm -tpl -lYL -xXz -hTY -mZE -mZE -gSJ -gSJ +rdG +aCO +qbp +wev +jhC +jhC +kom +kom nLm nLm -jFC +qcb trj uOs -qsQ -nLm +aOc nLm -pTj -drM -vKA -nKU -hJp -yjW -jTS nLm -tek -qZW -tkW -lBj -vJT -whn -tek +kCt +fUC +pZj +kPD +hsa +wDR +wdC nLm -ien +nFe +ooM +ckA +rKB +lmE +lRD +nFe +fvd +vyB vXc vXc vXc @@ -73355,74 +61224,74 @@ yiM yiM yiM yiM -fXx +caL mBF mBF -ydU -bSD +lQT +iLb nqY -qSA +cIf gKY -eEv -rdc +fNH +cFC mBF mBF -hpq +jvD max max -std -fHB +xRl +fnA tFx -rIM -rIM -rIM +uGb +uGb +uGb tFx -fHB -fbh -fbh +fnA +uif +uif ien -fbh -fbh -fbh +uif +uif +uif ien -fbh -qLu -aFf -fDF -tKS -mvP -yhU -lRn +uif +eSe +fwk +vxn +glI +lms +lQw +ogY tFx cpy cpy cpy tFx tFx -wdI -vAW -tVj +vvM +dNS +pzU tFx tFx -pjl -pjl -pjl -pjl -pjl -pjl -pjl +cpy +cpy +cpy +cpy +cpy +cpy +cpy eYM eYM -qCs -gXb -qCs -qCs +jJF +akD +jJF +jJF eYM eYM -pjl -pjl -pjl -pjl +cpy +cpy +cpy +cpy bMX "} (43,1,1) = {" @@ -73432,56 +61301,56 @@ cpy cpy tiQ tiQ -vAi -bcP -ssn -uIW +daw +psc +mVN +uVp saC saC saC chm -kkc -mjq -dWE -dWE -fTs -fTs -fTs -fTs -fTs -fTs -bSM -fTs -fGH -uIW -uIW -uIW -dxU -uIW -uIW -dnQ -fGJ -vAi -tiQ -tiQ -kgC -gCV -kfu -xZw -xZw -kQw -pRT +vCt +hAT +vSF +vSF +qPi +qPi +qPi +qPi +qPi +qPi +fDV +qPi +ggz +uVp +uVp +uVp +cYL +uVp +uVp +fft +ckB +daw +tiQ +tiQ +eiX +jqE +joo +mab +mab +jnZ +qDH kQK -fTS +nDX bzC xpg pPt sDS -xmj -mWc +hGS +gUP uWO uWO -bdX +bFF uWO uWO iTW @@ -73492,7 +61361,7 @@ eaE eaE eaE eaE -iPb +kYf eaE jFG eaE @@ -73507,7 +61376,7 @@ ien ien pzo hJZ -vne +kuX hJZ qNh clY @@ -73522,20 +61391,20 @@ yhK yhK wBA wBA -sRd -vFJ -vFJ -wKR -qFE -wcR +vvd +vwr +vwr +hhe +acf +wFg hJZ eUt -qQh +dpi nLm nLm nLm nLm -oDu +iVr nLm nLm nLm @@ -73549,12 +61418,12 @@ nLm nLm nLm nLm -bvP -byu +evT +web gRw xPo -qLy -sLQ +jma +nqA nLm nLm nLm @@ -73568,12 +61437,12 @@ nLm nLm nLm nLm -oDu +iVr nLm nLm nLm -ien -ien +vyB +vXc umf vXc vaZ @@ -73582,29 +61451,29 @@ yiM yiM yiM yiM -fXx +caL rMF -vVs -xUl -lcM +miR +rTu +rVb eKH -neX +cLh mVt -xuB -xvG -vVs +pOq +qur +miR fnA -hpq +jvD max max max -std -fbh -fbh -fbh -fbh -fbh -rJv +xRl +uif +uif +uif +uif +uif +iHQ ofi max max @@ -73613,13 +61482,13 @@ max max max max -ewn -aFf -sjd -rzz -nEq -oPR -utx +vwN +fwk +pbm +opS +vXK +etw +jFz tFx cpy cpy @@ -73630,23 +61499,23 @@ tFx tFx tFx tFx -pjl -pjl cpy cpy cpy cpy cpy -pjl -pjl -spj +cpy +cpy +cpy +cpy eYM eYM -oWK eYM +aWZ eYM -pjl -pjl +eYM +cpy +cpy cpy cpy cpy @@ -73659,53 +61528,53 @@ cpy cpy cpy tiQ -dWT -vAi -bcP -ssn -uIW +ulm +daw +psc +mVN +uVp saC chm chm chm -kkc -kkc -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -gmt -uIW -uIW -iJA -dxU -uIW -dnQ -fGJ -vAi -vAi -tiQ -fDS -gCV -gPQ -hry -kfF -kfF -xrA -kPG -lER -nCX +vCt +vCt +uVp +uVp +uVp +uVp +uVp +uVp +uVp +cYL +uVp +naI +uVp +uVp +rZX +cYL +uVp +fft +ckB +daw +daw +tiQ +gNZ +jqE +bmd +vhy +odH +odH +fhw +ifU +fym +whb bzC nDM nDM -jII -aFA -ylm +vYg +hiI +cAa tfP tfP tfP @@ -73719,7 +61588,7 @@ eaE tfP jsQ eaE -fXS +tBz eaE tfP eaE @@ -73733,21 +61602,21 @@ tfP ien hJZ hJZ -gHz -vne -ydA -ydA -ydA -ydA -ydA -ydA -ydA -ydA -ydA -ydA -ydA -ydA -hiK +kfV +kuX +wjD +wjD +wjD +wjD +wjD +wjD +wjD +wjD +wjD +wjD +wjD +wjD +xJM hJZ hJZ clY @@ -73757,49 +61626,49 @@ wBA wBA wBA ldM -oNQ +jkF nLm -fcv -aII -pJV -xhq -oyN -fVB -fmH -oyN -xhq -vmT -oyN -fVB -pdB -oyN -fVB -qVf -oyN -qal -byu +dRj +cBu +kiM +jbW +eNC +iht +oqT +eNC +jbW +nVz +eNC +iht +ezg +eNC +iht +nAN +eNC +suT +web dNm tUM -teh -tnh -oyN -pJV -fVB -oyN -mmv -xhq -oyN -jyF -fVB -oyN -pJV -xhq -oyN -fVB -cxC -rzG +kbf +fly +eNC +kiM +iht +eNC +tnH +jbW +eNC +fQW +iht +eNC +kiM +jbW +eNC +iht +llw +roc nLm -ien +vyB vXc umf vXc @@ -73809,19 +61678,19 @@ umf yiM yiM yiM -fXx +caL rMF -vVs -lxG -scM -xjS -xuB -xuB -bSD -xvG -vVs +miR +oSp +tZI +rVH +pOq +pOq +iLb +qur +miR fnA -hpq +jvD ofi ofi max @@ -73840,39 +61709,39 @@ max max max max -ewn +vwN tFx tFx -sIE -tmL -ufS +cHR +dub +bMF tFx tFx cpy -fHB -fbh -fbh -fbh -fbh -fbh -fbh -fbh -fbh -fHB +fnA +uif +uif +uif +uif +uif +uif +uif +uif +fnA +cpy +cpy cpy cpy cpy cpy cpy cpy +eYM +qTZ +nXw +fSz +eYM cpy -pjl -spj -iIa -drd -uug -spj -pjl cpy cpy cpy @@ -73887,52 +61756,52 @@ cpy cpy tiQ tiQ -vAi -vAi -bcP -ssn +daw +daw +psc +mVN chm chm chm chm -kkc -kkc -uIW -uIW -uIW -saC -saC -kkc -kkc -kkc -uIW -gmt -uIW -uIW -uIW -dxU -dnQ -fGJ -vAi -vAi -tiQ -tiQ -isu -gPQ -hry -kfF -kfF -saC -xrA -rAL +vCt +vCt +uVp +uVp +uVp +saC +saC +vCt +vCt +vCt +uVp +naI +uVp +uVp +uVp +cYL +fft +ckB +daw +daw +tiQ +tiQ +iMp +bmd +vhy +odH +odH +saC +fhw +hrO bzC bzC bzC bzC nDM -jII -aFA -ylm +vYg +hiI +cAa tfP ylC qyG @@ -73946,7 +61815,7 @@ hfS hfS hPO hWV -jjg +pMu hfS hfS hfS @@ -73960,13 +61829,13 @@ uSY ien pAp hJZ -oNQ +jkF xtb xtb xtb -xyL -xyL -xyL +hkn +hkn +hkn xtb xtb xtb @@ -73974,7 +61843,7 @@ xtb xtb xtb xtb -rvI +fOA clY hJZ hJZ @@ -73984,49 +61853,49 @@ hJZ hJZ clY clY -oNQ +jkF nLm -urA +dsY eJm hDE -kPV +mXa nLm -npI -rRm +wZc +dTE nLm -nlR -oRt +rjQ +fVS nLm -npI -rRm +wZc +dTE nLm -npI -nRp +wZc +lkh nLm -oTl -bxn +fHv +vol dNm qEi -teh -oJp +kbf +ozm nLm -uhV -vbJ +gtE +mMn nLm -uhV -npI +gtE +wZc nLm -dnx -npI +wTT +wZc nLm -uhV -npI +gtE +wZc nLm -bGL +stz koj -aMI +knR nLm -ien +vyB vXc vXc vXc @@ -74036,19 +61905,19 @@ vXc umf yiM yiM -fXx +caL mBF mBF -bDk -guD -hKj -xuB -bSD -nOI +sUJ +rNG +bVb +pOq +iLb +pOa mBF mBF mBF -hpq +jvD ofi ofi ofi @@ -74067,16 +61936,16 @@ max max max max -seX -rYq +tDJ +qjJ tFx -rIM -rIM -rIM +uGb +uGb +uGb tFx -uOA -irR -xVV +ghq +etG +iHQ ofi ofi ofi @@ -74085,22 +61954,22 @@ ofi ofi ofi ofi -gMQ -veQ -veQ +xRl +uif +uif fnA -bPJ -bPJ -bPJ -bPJ -bPJ -bPJ -pMc -wfP -dnO -bPJ -bPJ -bPJ +dCk +dCk +dCk +dCk +dCk +dCk +iqq +ogk +fTT +dCk +dCk +dCk cpy cpy cpy @@ -74115,51 +61984,51 @@ cpy cpy tiQ tiQ -vAi -vAi -bcP -fzL +daw +daw +psc +vfi chm chm chm chm -kkc -dxU -dxU -saC -saC -uIW -uIW -dxU -uIW -uIW -gmt -uIW -uIW -dnQ -dMu -fGJ -vAi -vAi +vCt +cYL +cYL +saC +saC +uVp +uVp +cYL +uVp +uVp +naI +uVp +uVp +fft +nbW +ckB +daw +daw uPc tiQ -xZL -pyo -iWZ -xZw -kfF +ebW +lYj +uyU +mab +odH saC saC -xrA -lrG -rUl -aCR +fhw +uMC +pCQ +scA lqb lqb lqb lUK -aFA -ylm +hiI +cAa tfP yim bou @@ -74173,10 +62042,10 @@ eaE eaE eaE hZZ -nZF -nZF -nZF -nZF +ikg +ikg +ikg +ikg tfP tfP tfP @@ -74187,74 +62056,74 @@ ien ien ien pAp -oNQ +jkF xtb -qtE -qNM -oiZ -rod -kvJ -vri -seJ +kvX +xIT +anQ +eNN +iQs +dbI +dqT xtb -myP -knW -qxp +gig +goW +gNX xtb jyf -ydA -ydA -njd -cWS -iYf -ydA -ydA -ydA -njd +wjD +wjD +vBE +ocd +dBj +wjD +wjD +wjD +vBE xWb nLm weR nLm nLm -jHy +qFR nLm nLm -oJQ +nmn nLm nLm -oJQ +nmn nLm nLm -oJQ +nmn nLm nLm -oJQ +nmn nLm nLm -bnH +sfe eAm fjP -bNA +ehD nLm nLm -jHy +qFR nLm nLm -sKH +boY nLm nLm -jHy +qFR nLm nLm -jHy +qFR nLm nLm -sKH +boY weR nLm nLm -ien -ien +vyB +vXc vXc vXc wYa @@ -74263,19 +62132,19 @@ vXc vXc vXc yiM -fXx +caL rMF mBF -gkF -hnA -oqJ -xuB -wZH -sPX +hvZ +ahx +dgB +pOq +vwy +uUU mBF fnA fnA -xVV +iHQ tZh tZh ofi @@ -74295,14 +62164,14 @@ max max max ofi -seX -szo -szo -szo -szo -szo -uTK -xVV +tDJ +rdp +rdp +rdp +rdp +rdp +coL +iHQ ofi ofi max @@ -74315,19 +62184,19 @@ ofi ofi ofi ofi -osN -bPJ -xVH -kEl -peM -jba -bPJ -ayf -aKE -wfP -cbb -sLT -bPJ +mna +dCk +bFz +mlX +aog +pgZ +dCk +fIF +ntX +ogk +szB +jdQ +dCk cpy cpy cpy @@ -74342,51 +62211,51 @@ cpy cpy cpy tiQ -vAi -bXq -vAi -vAi +daw +wbr +daw +daw chm chm saC chm -uIW -uIW -uIW -uIW -uIW -uIW -eAg -cyO -eOn -eOn -fsf -uIW -dnQ -fGJ -saC -tiQ -fIQ -pEw -pEw -tiQ -isu -xuU -iYs -xZw -rEV -saC -saC -bKk -hAk -kQR -fTS -aCR +uVp +uVp +uVp +uVp +uVp +uVp +efW +rzU +cfo +cfo +gAD +uVp +fft +ckB +saC +tiQ +gdP +dtX +dtX +tiQ +iMp +xEF +hSY +mab +ixc +saC +saC +xWs +kEy +biv +nDX +scA sWn -nbT +uZu lUK -aFA -ylm +hiI +cAa tfP yim tfP @@ -74400,7 +62269,7 @@ bex eaE eaE eaE -fXS +tBz eaE eaE tfP @@ -74414,71 +62283,71 @@ tfP ien cwE hJZ -oNQ -xyL -qxi -oiZ -dKC -mCm -dKC -xOb -sfm -xyL -xqd -xTs -tWC +jkF +hkn +cQk +anQ +gAf +cmk +gAf +sqk +pch +hkn +aBA +lTc +azL xtb xtb -xyL -xyL +hkn +hkn xtb nTv -kMi +emw iiE iiE iiE oYa nTv nLm -sdM -wan -kDH -jHj -lcT -wan -fps -mlO -nwz -fps -sdM -wan -fps -kcS -rtn -fps +nrR +clc +aFI +iOd +mTQ +clc +fxb +rXL +pKK +fxb +nrR +clc +fxb +vor +iax +fxb nLm -rxl -rAg +jLM +gFT maF uOs -gWh -mNt +hyv +hDl nLm -fps -qxZ -mlO -fps -vXg -wMF -fps -xhB -xyi +fxb +nYR +rXL +fxb +rAU +pxx +fxb +gQQ +prq dNm -xKN -kcS -fps -kcS -qiJ +wtV +vor +fxb +vor +uxO nLm aiQ vXc @@ -74490,18 +62359,18 @@ vXc vXc vXc umf -fXx +caL rMF mBF mBF mBF -oPx -vzE +xXH +szA mBF mBF mBF mBF -hpq +jvD max tZh ofi @@ -74542,20 +62411,20 @@ ofi ofi ofi ofi -osN -aQH -qaT -hTe -hTe -jFl -aQH -mJs -ous -wfP -wfP -uKk -bPJ -bPJ +mna +vNe +why +kFv +kFv +jRu +vNe +bjK +lbC +ogk +ogk +mAw +dCk +dCk cpy cpy bMX @@ -74569,51 +62438,51 @@ cpy cpy cpy tiQ -vAi -vAi +daw +daw uPc -vAi -vAi +daw +daw saC saC chm -uIW -uIW -uIW -uIW -uIW -uIW -gmt -kkc -kkc -iJA -dnQ -fzL -fGJ +uVp +uVp +uVp +uVp +uVp +uVp +naI +vCt +vCt +rZX +fft +vfi +ckB saC saC tiQ -fUT -uFG -nbD +hDP +xim +uKz tiQ -hlp -xeG -iYy -xZw +xXU +qve +imB +mab saC saC saC saC -xZw -kRa -hAk -kyb -lrh -ddy +mab +tBU +kEy +fsK +ggQ +fSc lUK -aFA -ylm +hiI +cAa tfP yim tfP @@ -74627,7 +62496,7 @@ fFA gzu eaE gFp -fXS +tBz jqa enS tfP @@ -74641,73 +62510,73 @@ tfP ien clY clY -dRK +jei xtb -bQl -qOn -qYc -rpe -bQl -rJz -bQl +iIi +dHJ +gyh +wxT +iIi +dZF +iIi xtb -xWF -uEC -pVx -xqd -pVx -pVx -pVx +gLb +iBz +iyW +aBA +iyW +iyW +iyW xtb -xWf -imJ -xWf -xWf -xWf -qAy -xWf +qOk +wuN +qOk +qOk +qOk +iOV +qOk nLm -kcS -gou -ulL -jWX -ulL -ulL -lVY -uJr -uJr -oTJ -uJr -uJr -pDh -kcS -wfb -qjt +vor +kpK +gDJ +chX +gDJ +gDJ +niB +jWa +jWa +kdK +jWa +jWa +oCC +vor +eTl +fEO nLm -klp -oot +bhx +bxB pJW tUM -gWh -aTS +hyv +jcN nLm -lAj -ulL -ulL +aoN +gDJ +gDJ gRw -uJr -uJr +jWa +jWa xfX -qQZ -ulL -lAj -ulL -ulL -lAj -wRd -rIE +qvh +gDJ +aoN +gDJ +gDJ +aoN +cCS +dvQ nLm -qQM +oLl vXc nRs vXc @@ -74716,19 +62585,19 @@ vXc vXc vXc umf -wdy +oTE gbB mBF mBF fdn xci -usJ -wuQ -wuQ -wud -vVs +ecF +vbW +vbW +oEf +miR fnA -hpq +jvD max max ofi @@ -74769,21 +62638,21 @@ ofi ofi tZh ofi -osN -bPJ -fYD -qxk -ymf -sHd -bPJ -eeb -wfP -bgw -wfP -wfP -pSh -bPJ -bPJ +mna +dCk +dRg +xNB +mwL +xUN +dCk +lCc +ogk +aiV +ogk +ogk +oSo +dCk +dCk cpy bMX "} @@ -74796,51 +62665,51 @@ cpy cpy cpy tiQ -vAi -vAi -vAi -vAi -vAi +daw +daw +daw +daw +daw saC saC saC -fzL -fzL -fzL -ssn -uIW -uIW -eQf -gFG -gFG -gFG -uZf +vfi +vfi +vfi +mVN +uVp +uVp +cvN +oLS +oLS +oLS +crf saC saC saC tiQ tiQ -pEw -pEw -hOI +dtX +dtX +tWa tiQ -isu -xeG -iYy -xZw -xZw +iMp +qve +imB +mab +mab saC saC saC -mKQ -kRp -xWc -rTh -nWl -dgJ +jyB +fgz +isN +noy +gnR +ncW aaX -atV -wOu +aAH +vez qyG rOf bIe @@ -74854,7 +62723,7 @@ eaE gFp eaE eaE -fXS +tBz hUZ eaE tfP @@ -74868,34 +62737,34 @@ ien ien ien clY -bry -vFS -xOb -oiZ -oiZ -jBs -oiZ -xOb -xOb -vFS -xqd -uEC -xTs -xTs -uEC -uEC -pVx -vFS -rZF +ecL +qXk +sqk +anQ +anQ +dtS +anQ +sqk +sqk +qXk +aBA +iBz +lTc +lTc +iBz +iBz +iyW +qXk +nhu tYZ kdy kdy kdy tMk -lEF -ygJ -vJT -oot +rUa +gzb +lmE +bxB fjP pJW fjP @@ -74907,17 +62776,17 @@ weR weR nLm ktx -biY -bNJ -seG -mPQ -osU +qmW +sXb +uBB +wej +rQX uyP esa qvJ jDJ -osU -pxp +rQX +jsH enP dnM dnM @@ -74931,10 +62800,10 @@ xIW sPk dnM esa -gYF -kcS -ygJ -qQM +bMb +vor +gzb +oLl vXc wth vXc @@ -74942,20 +62811,20 @@ wYa vXc vXc yiM -wdy +oTE rMF mBF mBF tPB fdn xci -kmH -wuQ -wuQ -wPR -vVs +xJi +vbW +vbW +wcD +miR fnA -hpq +jvD max max ofi @@ -74996,21 +62865,21 @@ max ofi tZh ofi -osN -bPJ -bPJ -bPJ -bPJ -bPJ -bPJ -bPJ -veA -wfP -wfP -wfP -wfP -sRM -bPJ +mna +dCk +dCk +dCk +dCk +dCk +dCk +dCk +pCX +ogk +ogk +ogk +ogk +pGu +dCk cpy bMX "} @@ -75024,70 +62893,70 @@ cpy cpy tiQ cNV -vSJ -vSJ -vSJ +uMi +uMi +uMi cNV cNV saC saC saC -dWT -dWT -bcP -fzL -fzL -eTZ -dWT -dWT -dWT +ulm +ulm +psc +vfi +vfi +luc +ulm +ulm +ulm saC saC tiQ tiQ tiQ -hiB -uFG +kdw +xim hDa -uFG +xim hDy -isu -xeG -iYy -xZw -xZw -mKQ -saC -mKQ -mKQ -uHn -xZw -xrA -lrh -ddy +iMp +qve +imB +mab +mab +jyB +saC +jyB +jyB +qFj +mab +fhw +ggQ +fSc lUK -aFA -xBL +hiI +uNl tfP tfP tfP tfP tfP bcf -dEM -dZM -liD -fXS -fXS +hYO +rgK +cwD +tBz +tBz tfP -fXS -fXS +tBz +tBz jtu gSw tfP tfP tfP -ylm +cAa pjJ yim tfP @@ -75095,34 +62964,34 @@ tfP ien clY clY -jDc -uwk -fvk -tqU +lJt +uvG +vNf +kjy qYo rpu lAm -dCT -fvk -uwk -cZN -uIO -uIO -qOQ -uIO -qOQ -uZO -uwk -rZi +vuU +vNf +uvG +vox +fCe +fCe +alw +fCe +alw +kVl +uvG +goA opO xfp xfp xfp wWX -pIa -yif -wcX -kpu +eLL +mRc +gQk +nSg sPm wwe sPk @@ -75135,16 +63004,16 @@ nLm weR dNm tTR -uHc -kKR -kwo -xaD +dYR +gzP +oai +qff fuq eAm uOs fjP -xaD -kwo +qff +oai fjP uOs uOs @@ -75158,31 +63027,31 @@ uOs fjP uOs trj -gWh -vJT -kwo -qQM +hyv +lmE +oai +oLl vXc wth vXc wYa yiM yiM -wdy +oTE rMF mBF mBF -mbG +iHq qhO qhO geH -lBC -wuQ -wuQ +kuI +vbW +vbW mBF mBF mBF -hpq +jvD max max ofi @@ -75223,21 +63092,21 @@ max max ofi ofi -gMQ -veQ +xRl +uif cpy cpy cpy cpy -bPJ -bPJ -qxf -wfP -wfP -wfP -aKE -sRM -bPJ +dCk +dCk +usp +ogk +ogk +ogk +ntX +pGu +dCk cpy bMX "} @@ -75250,51 +63119,51 @@ cpy cpy cpy tiQ -xho -xho -xho -xho -xho +tij +tij +tij +tij +tij cNV saC saC saC tiQ -dWT -bet -sHy -bet -eUs +ulm +rQJ +swR +rQJ +uGM tiQ tiQ saC saC saC tiQ -gxc -gYs -qml -hpy -wyv -uFG +xkn +rwb +qlh +fuM +mzc +xim hDy -isu -xeG -iYy -xZw -xZw -xZw -mKQ -mKQ -xZw -kRw -udR -pRT -lrh -ddy +iMp +qve +imB +mab +mab +mab +jyB +jyB +mab +aoz +qha +qDH +ggQ +fSc lUK -rnp -xBL +uzJ +uNl tfP tfP tfP @@ -75314,7 +63183,7 @@ eaE eFT tfP bIJ -ylm +cAa pjJ yim tfP @@ -75322,94 +63191,94 @@ tfP ien sjY clY -vWv +tJd xtb -eAD -dKC -leg +jbx +gAf +aQY moO -leg -leg -shm +aQY +aQY +kFs xtb -wCy -bPQ -tWX -uEC -uEC -uEC -pVx +ejn +moq +fag +iBz +iBz +iBz +iyW xtb -odZ -imJ -xWf -xWf -xWf -xWf -odZ +nJJ +wuN +qOk +qOk +qOk +qOk +nJJ nLm -kcS -vId -oTg -fps -lek -kxW -lek -lek -lek -lek -lek -xaD -fps -npp -cHC -vJT +vor +hAa +jhJ +fxb +eEM +dhd +eEM +eEM +eEM +eEM +eEM +qff +fxb +wQP +mSI +lmE nLm -oeL -rAg +dvT +gFT dNm tUM -gWh -aAW +hyv +cNd nLm -kxW -kxW -lek +dhd +dhd +eEM dNm fjP -lek -kxW -kxW -lek -kxW -lek -oTg +eEM +dhd +dhd +eEM +dhd +eEM +jhJ pJW -iUo -vdV +hiX +vcW nLm -qQM +oLl vXc puY yiM wsY yiM -wdy +oTE gbB mBF mBF -mVx -wDy -wuQ -wuQ -fpW -wuQ -bxz +noG +vyj +vbW +vbW +xJl +vbW +iku mBF mBF mBF fnA -hpq +jvD max max ofi @@ -75457,14 +63326,14 @@ cpy cpy cpy cpy -bPJ -evu -wfP -wfP -wfP -jJF -hiL -bPJ +dCk +uGs +ogk +ogk +ogk +rKX +hjf +dCk cpy bMX "} @@ -75477,71 +63346,71 @@ cpy cpy cpy tiQ -xho -yeS -xho -yeS -xho +tij +qWq +tij +qWq +tij cNV saC saC saC saC -otQ -otQ -otQ -otQ -eVg -otQ +lhj +lhj +lhj +lhj +mNC +lhj saC saC saC saC tiQ -gxl +yhq gYT -hiV -hqD -iKN -uFG +vrO +kSy +iCV +xim hDy -isF -xeG -iYL -xZw -xZw -xZw -xZw -kQw -iyl -kRJ -aCR -aCR +smH +qve +pwe +mab +mab +mab +mab +jnZ +snq +lXN +scA +scA lqb -ddy +fSc wgn -eZv -xBL +bMe +uNl tfP tfP tfP bIJ bIJ tfP -abV -abV +vXo +vXo eUf fLz -abV -hoN -abV -jmW -ugu -abV +vXo +jDf +vXo +okM +pkJ +vXo tfP bIJ bIJ -ylm +cAa pjJ lCH tfP @@ -75549,23 +63418,23 @@ ien ien ien sjY -hip -xyL -vht -oiZ -dKC -mCm -dKC -oiZ -shK -xyL -wCy -tBS -xTs -uEC -uEC -uEC -pVx +kuu +hkn +ohc +anQ +gAf +cmk +gAf +anQ +yio +hkn +ejn +goc +lTc +iBz +iBz +iBz +iyW xtb nTv oTc @@ -75575,45 +63444,45 @@ iIw ovT nTv nLm -qxZ -guH -oTg -fps -kcS -kcS -lBj -wan -wan -oWy -lBj -oTg -fps -kcS -rIH -xiU +nYR +ogu +jhJ +fxb +vor +vor +rKB +clc +clc +pRx +rKB +jhJ +fxb +vor +aZl +aKA nLm -pha -oot +ixC +bxB dNm tUM -teh -lRx +kbf +buz nLm -uTV -vFQ -kcS -fps -oTg -kcS -oWy -xiU -kDH -kcS -kcS -oTg -fps -nyM -wan +fOv +ekC +vor +fxb +jhJ +vor +pRx +aKA +aFI +vor +vor +jhJ +fxb +bBA +clc nLm aiQ vXc @@ -75621,23 +63490,23 @@ yiM yiM wsY yiM -fXx +caL mBF mBF viC cjv ycE -wuQ -wuQ -kmH -wuQ +vbW +vbW +xJi +vbW mBF mBF -bNs +pOz mBF mBF fnA -cxv +vhu max ofi tZh @@ -75684,14 +63553,14 @@ cpy cpy cpy cpy -bPJ -bPJ -nkm -wfP -wfP -vwW -wfP -bPJ +dCk +dCk +aHs +ogk +ogk +bGo +ogk +dCk cpy bMX "} @@ -75704,51 +63573,51 @@ cpy cpy cpy tiQ -xho +tij kwJ -faZ +mSy kwJ -xho +tij cNV saC saC saC saC -xho -yeS -yeS -yeS -oEw -xho -yeS +tij +qWq +qWq +qWq +uex +tij +qWq saC saC saC tiQ -dAf -uFG -xdF -htX -hDh -jFa +pmH +xim +ufl +thm +ieF +nvJ hDy -iti -fKu -iZg -hHj -xZw -xZw -xZw -xrA -kPG -udU -aCR +lBr +uzA +kBn +mCn +mab +mab +mab +fhw +ifU +ixh +scA lqb lqb lqb -jUq -sbm -xBL +dkA +pzT +uNl tfP bcf tfP @@ -75756,19 +63625,19 @@ tfP tfP tfP cpy -inU +bBa cpy cpy -gGx -inU -inU +jcL +bBa +bBa tfP pjJ -inU -inU -inU -inU -bcU +bBa +bBa +bBa +bBa +aIV pjJ lCH tfP @@ -75776,36 +63645,36 @@ tfP ien sjY clY -oNQ +jkF xtb -qyI -mDX -xOb -jBs -oiZ -rKg -sil +raq +imt +sqk +dtS +anQ +dZI +hjg xtb -daz -qPT -xqd -uEC -uEC -uEC -nVh +btX +nQH +aBA +iBz +iBz +iBz +exa xtb vGb -wNo -hhD -hhD -sKa -xXQ +eGZ +xWa +xWa +odB +vat gIc nLm nLm weR -its -mZJ +gUu +nKD weR weR nLm @@ -75813,58 +63682,58 @@ nLm weR weR nLm -its -mZJ +gUu +nKD nLm weR nLm nLm nLm -jcH +wDP xno emb -nxb +gHW nLm nLm nLm weR nLm -eBA -wwO +omk +nTG nLm nLm nLm nLm weR nLm -kwo -hNF +oai +lSp weR nLm nLm -spo +vyB vXc yiM yiM wsY yiM -fXx +caL rMF -vVs +miR xYn uYu xci -wuQ -wDy -kmH -lZY +vbW +vyj +xJi +kXv mBF -vgs -wDy -rRa +iHF +vyj +gkt mBF mBF -hpq +jvD ofi ofi max @@ -75912,13 +63781,13 @@ cpy cpy cpy cpy -bPJ -bPJ -bQP -omv -lFM -bPJ -bPJ +dCk +dCk +feA +iTs +vBV +dCk +dCk cpy bMX "} @@ -75931,51 +63800,51 @@ cpy cpy cpy tiQ -xho +tij kwJ -xho +tij kwJ -xho +tij cNV saC saC saC saC -xho -yeS -yeS -yeS -oEw -xho -yeS +tij +qWq +qWq +qWq +uex +tij +qWq saC saC saC tiQ tiQ -gZd -hjB -iKC -hDh -dFY +suL +kyr +aNV +ieF +szb hDy -fBU -gat -gXR -hHj -xZw -xZw -xZw -xrA -rAL +sOb +lbF +htQ +mCn +mab +mab +mab +fhw +hrO bzC bzC bzC bzC nDM gWI -inU -ycV +bBa +dhx tfP tfP tfP @@ -76003,95 +63872,95 @@ tfP ien sjY clY -oNQ +jkF xtb xtb xtb -xyL -pDG -xyL +hkn +vzI +hkn xtb xtb xtb xtb xtb -fZl -uEC -uEC -uEC -nZv +kUK +iBz +iBz +iBz +xHa xtb -tvO +neY jXQ iKF iKF iKF iKF -tOv +ouz nLm -fVB +iht hfU uOs trj inB lep -qmp +dfU nLm -pdO -mns -gWL +cnQ +klu +gLj sPk -mZK +bST eAT hGX -sLQ +nqA nLm -oeL -rIB +dvT +cmm dNm tUM -gDA -lTl +vSE +eMx nLm -pTO +sdc xXN tpZ vdf vqm wNl wNl -xjC +rde nLm -kCN +vyI adk xLg smi mNX -aoH +feB nLm -spo +vyB yiM yiM yiM wsY yiM -fXx +caL rMF -vVs +miR viR fdn dHy -wuQ +vbW xQj jmE xQj mBF mBF -qxF +qoU mBF mBF fnA -hpq +jvD ofi max max @@ -76122,10 +63991,10 @@ max iiV iKY bZK -mGY -mGY -mGY -mGY +tKZ +tKZ +tKZ +tKZ bZK jTH fgv @@ -76140,12 +64009,12 @@ cpy cpy cpy cpy -bPJ -wfP -wfP -wfP -iGD -bPJ +dCk +ogk +ogk +ogk +vFu +dCk cpy bMX "} @@ -76160,7 +64029,7 @@ cpy tiQ cNV kwJ -xho +tij kwJ cNV cNV @@ -76169,38 +64038,38 @@ saC saC saC saC -uqt -uqt -uqt -qvQ +ivP +ivP +ivP +wtY saC saC saC saC saC tiQ -gyn -hai -xdF -iKC -hDh -hPq +nmb +mqr +ufl +aNV +ieF +dRW hDy iMC rBz npD -xZw -xZw -xZw -kkr -kUs -lrG -lWa -fTS +mab +mab +mab +uAs +qsD +uMC +fUi +nDX bzC nDM nDM -ylm +cAa pjJ yim tfP @@ -76230,95 +64099,95 @@ ien ien ien clY -oNQ +jkF xtb xtb xtb -vSO -cgB -hwf -tJM -qYv -qYv -qYv +lDG +uPY +mNN +qmV +aus +aus +aus xtb -tXa -uEC -uEC -xTs -pVx +tcx +iBz +iBz +lTc +iyW xtb -tvO +neY fjr fjr fjr fjr fjr -tPx +jUB nLm -fVB -qeK -ezC -kWi +iht +tFl +rGt +krx xeA uOs -gEQ +aNd nLm -nNh -pgn +shd +vVn nLm vjB fyC npT cve -rIZ +cZW nLm -eQV -oot +dry +bxB eAm oPu -gDA -vpi +vSE +nYK nLm -nWn -tzY -enD -vJT +mET +flo +iVg +lmE eAm iqa rox -vJT -oyN -aia +lmE +eNC +pZU ruf -vOZ -xay -vJT -tsx +djW +lhl +lmE +lHk nLm -spo +vyB yiM yiM yiM wsY vXc -fXx +caL mBF mBF mBF mBF -kAn -mbG +jRt +iHq hMI pCg nAa -pZV -qmF -wDy -mMI +mNF +gUH +vyj +dvR mBF kmq -hpq +jvD max max max @@ -76329,11 +64198,11 @@ max max max xKk -vsh -vsh -vsh -vsh -vsh +oEY +oEY +oEY +oEY +oEY xKk ofi ofi @@ -76349,10 +64218,10 @@ iiV iKY bZK bZK -lGv -egv -pQN -byJ +vbA +vbn +gKl +xfw bZK bZK jTH @@ -76367,12 +64236,12 @@ cpy cpy cpy cpy -bPJ -bPJ -wfP -bgw -bPJ -bPJ +dCk +dCk +ogk +aiV +dCk +dCk cpy bMX "} @@ -76386,48 +64255,48 @@ cpy cpy tiQ cNV -yeS -xho -yeS +qWq +tij +qWq cNV cNV saC saC tiQ tiQ -uTj -ksm -ksm -ksm -goK +uZM +bty +bty +bty +tVe ixD saC tiQ tiQ saC tiQ -gzk +tAN gYT -xdF -iKC -iKN -uFG +ufl +aNV +iCV +xim hDy itz iMv tCh -xZw -xZw -jTi +mab +mab +lrV kky jTx -kyK +fCL kSC -lgf +slz bzC nDM pRh -ylm +cAa pjJ lCH tfP @@ -76457,39 +64326,39 @@ tfP ien clY clY -oNQ +jkF xtb -aYF -qQp -xqd -xTs -xTs -rKt -xTs -xTs -tjQ +wLw +pGE +aBA +lTc +lTc +nBd +lTc +lTc +xio xtb -tZJ -xTs -uEC -xTs -vHE +eyz +lTc +iBz +lTc +pSC xtb xXR -emH -emH -emH -tNr +riV +riV +riV +cnH fjr -tPx +jUB nLm nLm -kRi +mNa nLm -jbd +iyh tUM tUM -jSC +sCm nLm nLm weR @@ -76498,54 +64367,54 @@ fjP pOd qvM uOs -vJT +lmE nLm -lwH -pjM +dwy +mdO pJW rWu -gDA -dBa +vSE +uvo nLm nLm nLm nLm -kDH +aFI trj aSE eaC -pUd +rxs nLm -enD +iVg dZP -wsf +cgt nLm nLm nLm nLm -spo +vyB yiM yiM yiM wYa vXc -fXx +caL rMF -vVs -qCB +miR +jye mBF mBF -cLo +kWz xQj pCg nAa -sQr -wDy -wDy -mMI +xoU +vyj +vyj +dvR mBF mBF -hpq +jvD ofi tZh ofi @@ -76555,13 +64424,13 @@ max max max max -rIj -nbg -rWv -rWv -rwp -iee -rIj +vXt +axu +gjE +gjE +xTw +jiM +vXt max ofi ofi @@ -76575,12 +64444,12 @@ max fni bZK bZK -wtj +glW wvt wHF wHF txK -stG +opk bZK bZK gol @@ -76595,11 +64464,11 @@ cpy cpy cpy cpy -bPJ -wfP -wfP -bgw -bPJ +dCk +ogk +ogk +aiV +dCk cpy bMX "} @@ -76614,47 +64483,47 @@ cpy tiQ cNV kwJ -xho +tij kwJ cNV cNV unt -ifi -gcn -xho -uAd -yeS -xho -xho -oEw -oML -saC -saC -otQ -dOK -tiQ -gzD -hai -xdF -iKC -hBD -uFG +kJs +iNN +tij +rDX +qWq +tij +tij +uex +fEo +saC +saC +lhj +vrB +tiQ +vaN +mqr +ufl +aNV +pYZ +xim hDy eCO xVG vda -rEV -jtQ +ixc +eAt jTx kll -krj -xrA -hkT -fTS +tJz +fhw +cGO +nDX bzC nDM nDM -ylm +cAa pjJ lCH pjJ @@ -76684,111 +64553,111 @@ tfP ien clY clY -oNQ +jkF xtb -mjW -uEC -uEC -uEC -xTs -roT -xTs -sKL -tkM -xyL -uad -xTs -uIo -uEC -vQX +juR +iBz +iBz +iBz +lTc +ctT +lTc +lPo +lkO +hkn +geG +lTc +vVF +iBz +hVn xtb xtb xtb xtb xtb -tEJ +xIA fjr -tPx +jUB nLm -iJS -kRB +rWU +ezK nLm -nMz +mhq sPk sPk -vmT +nVz nLm -vHG +ale xXN dZP fjP fjP fjP fjP -vJT +lmE nLm nLm -pwg +nGW pJW tUM -pgs +eQH nLm nLm -iJS -oFz +rWU +tzM nLm -ivN +iWW eAm qBE crP -vJT +lmE nLm -qXO +aoQ xXN -jbd +iyh nLm -ijB -pPV +ryA +eyV nLm -sFp +osR yiM yiM vXc wYa vXc -fXx +caL rMF -vVs -cWg +miR +scC vyD -vVs -bIF +miR +seZ xQj pCg lpq -jUE -wDy -wDy -nia +jOl +vyj +vyj +nnx mBF mBF fnA -uOd -uOd -uOd -uOd -uOd -uOd -cxv +neo +neo +neo +neo +neo +neo +vhu max max -rIj -axw -gYO -gYO -tvk -nye -rIj +vXt +dZB +oKq +oKq +prR +tsK +vXt max ofi ofi @@ -76801,14 +64670,14 @@ max max fni bZK -aQs +xdK wvt wHF -khf -wpa +vvS +ebd wHF wjI -wPt +juP bZK gol max @@ -76822,11 +64691,11 @@ cpy cpy cpy cpy -bPJ -gMT -wfP -fvn -bPJ +dCk +uJQ +ogk +oXz +dCk cpy bMX "} @@ -76839,49 +64708,49 @@ cpy cpy cpy tiQ -xho +tij kwJ -xho +tij kwJ -faZ +mSy cNV -xho -dpj -otQ -xho -uAd -xho +tij +wsM +lhj +tij +rDX +tij kwJ kwJ -vDV -oML -xho -otQ -otQ -fAG +lfu +fEo +tij +lhj +lhj +vHz tiQ tiQ tiQ -hkE -hzq +oQd +aqE hDy hDy hDy hDy -fTS -xeG -xZw -xZw +nDX +qve +mab +mab jUe -klx -xZw -xrA -kTd +pTY +mab +fhw +vym bzC bzC bzC nDM -ylm +cAa vjW lCH pjJ @@ -76911,111 +64780,111 @@ ien ien ien clY -oNQ +jkF xtb -soS -qyM -raQ -raQ -raQ -vsG -xTs -xTs -tkM -xyL -ubd -xTs +rWK +ohT +wcG +wcG +wcG +cUR +lTc +lTc +lkO +hkn +hZB +lTc jLF -xTs -vIb +lTc +fcM xtb -eIF -wRJ -xmk +jdM +uLl +tFE xtb -tvO +neY fjr -tPx +jUB nLm -kKc -hau +ifd +xQH nLm -npI -kcS -uRB -sdM +wZc +vor +pYr +nrR nLm -nWn -kiQ -pdr -kcS -vJT -xhq -xhq -xhq -oyN -kLe -ejy +mET +ikH +tPy +vor +lmE +jbW +jbW +jbW +eNC +pIX +fHe eAm uar -fPB -sgG +ntu +goa nLm -ske -wCt -gWL -eOU -wJb -uDP -ols -oWy +czl +uaU +gLj +miS +hSf +lTM +jsY +pRx nLm -fVB -kcS -pDX -jVK -pSs -hau +iht +vor +hDQ +fjl +wXk +xQH nLm -spo +vyB yiM yiM gAa uLF vXc -fXx +caL mBF mBF -sNR +fDY vzn mBF -syl -wDy -oUh -qNG -mXy -wDy -wuQ -suV -vVs +dzc +vyj +bUj +uIu +pTq +vyj +vbW +deA +miR fnA fnA fnA tSL -ibW -ibW -ibW +uyL +uyL +uyL tSL fnA -cxv +vhu max -rIj -mwk -dIt -dIt -xDG -wxg -rIj +vXt +jgU +eCk +eCk +rTJ +mWO +vXt max ofi ofi @@ -77028,14 +64897,14 @@ max max fni bZK -uvk +jor wvt wHF wHF fPa wHF nvS -jUy +aMG bZK gol max @@ -77046,14 +64915,14 @@ max max max max -osN -bPJ -bPJ -bPJ -qKV -jJF -sRM -bPJ +mna +dCk +dCk +dCk +jkb +rKX +pGu +dCk cpy bMX "} @@ -77066,49 +64935,49 @@ cpy cpy cpy tiQ -xho +tij kwJ -xho +tij kwJ -xho +tij cNV -xho -drS -dNd -xho -uAd -xho +tij +nHv +nNY +tij +rDX +tij kwJ kwJ -vDV -oML -xho -otQ -otQ -fGN -tiQ -bvI -hai -xdF -fXv -hup -msp -uFG +lfu +fEo +tij +lhj +lhj +nJm +tiQ +rSx +mqr +ufl +lMq +voO +toK +xim hDy -qYk -xeG -xZw +rwz +qve +mab saC saC saC -mKQ -xrA -hkT -fTS +jyB +fhw +cGO +nDX bzC nDM nDM -ylm +cAa vjW eDS pjJ @@ -77138,37 +65007,37 @@ tfP ien rzq clY -oNQ +jkF xtb rmt qdc raS uIJ rmt -rLq -uEC -xTs -tlz +vvs +iBz +lTc +rbn xtb -mfF -iYa +lVF +dKu pAW -xTs -vIb +lTc +fcM xtb -xqd -pVx -rKt +aBA +iyW +nBd xtb -tvO +neY fjr -tPx +jUB nLm nLm nLm nLm nLm -oDu +iVr nLm nLm nLm @@ -77181,12 +65050,12 @@ nLm nLm nLm nLm -hbp -oot +mNr +bxB eAm uOs -xlq -kmY +hHw +sio nLm nLm nLm @@ -77199,49 +65068,49 @@ nLm nLm nLm nLm -oDu +iVr nLm nLm nLm nLm -afX +aar vXc yiM tiJ mAE vXc -fXx +caL rMF -uWI -xvG -vzu -uWI -qNY -wuQ -kmH -wDy +rIG +qur +sCh +rIG +doc +vbW +xJi +vyj mBF -niL -uFL -ehr -dGB +bNG +kXy +jko +uVq fnA fnA tSL tSL -tne -tne -yfR +fVI +fVI +cMh tSL tSL -hpq +jvD max xKk -rIj -rIj -rIj -rIj -rIj +vXt +vXt +vXt +vXt +vXt xKk max max @@ -77255,14 +65124,14 @@ max max omT bZK -iMU +mNj wHF wvt -tQp -vou +skY +kGd wHF wjI -eDI +qtM bZK czG max @@ -77273,14 +65142,14 @@ max max max max -gMQ +xRl fnA -bPJ -bPJ -fCb -jJF -sRM -bPJ +dCk +dCk +hAB +rKX +pGu +dCk cpy bMX "} @@ -77293,64 +65162,64 @@ cpy cpy cpy tiQ -xho -yeS -xho -yeS -xho +tij +qWq +tij +qWq +tij cNV -hAr -uCr -otQ -xho -uAd -xho +bRI +sUe +lhj +tij +rDX +tij kwJ kwJ -vDV -oML -xho -otQ -dtr -fGU -tiQ -gAJ -hbF -hky +lfu +fEo +tij +lhj +jSb +jfN +tiQ +plB +rqY +fbP hka -hwr -wyv -uFG -iwJ -fTS -xeG -xZw +nIg +mzc +xim +fQA +nDX +qve +mab saC saC saC -mKQ -xrA +jyB +fhw kQK -fTS +nDX bzC nDM pRh -ylm +cAa vjW eDS pjJ pjJ -bgV -sQu -sQu -mjR -sQu -sQu -sQu -sQu -sQu -sQu -oaa +vgB +kPI +kPI +wJR +kPI +kPI +kPI +kPI +kPI +kPI +fIY pjJ pjJ pjJ @@ -77365,111 +65234,111 @@ tfP ien puV clY -oNQ -xyL +jkF +hkn qBe mqk hLo sTA rwR -rLq -siT -uEC -xqd +vvs +xrJ +iBz +aBA xtb -fnF -siT +tHF +xrJ pAW -xTs -vRv +lTc +mzN xtb -joe -uRx +brr +lCB jLF xtb -tvO +neY fjr -tPx +jUB nLm -tsv -iCS -gRU -pJV -kcS -oGU -cPY +jDj +mgP +vkW +kiM +vor +wzz +lal nLm -tsV +gAy nLm -tsV +gAy nLm nLm -tsV +gAy nLm -tsV +gAy nLm -hku -uhf +tsE +dZo pJW tUM -xlq -ddr +hHw +qrZ nLm -pVt +beU nLm -pVt +beU nLm -pVt +beU nLm -pVt +beU nLm -wCS -hrx -hrx -kcS -wxb -mPL -mPL +wSh +xtV +xtV +vor +wou +bJg +bJg nLm -tiC +msI vXc vXc yiM tDd rXb -hNz +mGL qGf -aio -tnL -vBb -aio +tNE +fqP +rID +tNE rAf rAf toF -rlI -bXU -wCJ -ghu -cbp +cIG +dPM +vDC +uMN +nXM mBF mBF -voI +urU tSL -vtP -xNR -fDz -yfS -xtP +eSi +qld +jdu +oGH +pBO tSL -hpq +jvD max -rIj -nbg -rWv -rWv -rwp -iee -rIj +vXt +axu +gjE +gjE +xTw +jiM +vXt max ofi ofi @@ -77481,16 +65350,16 @@ cpy max max yjT -oXV -oDZ +mYq +tet wvt -vou -pcz -lUf -lmF +kGd +iPk +fBb +mzs aGQ -tML -jjc +ojH +rRF wzH max cpy @@ -77501,13 +65370,13 @@ max max max max -osN -bPJ -oeN -byb -wfP -hiL -bPJ +mna +dCk +htU +ydX +ogk +hjf +dCk cpy bMX "} @@ -77520,53 +65389,53 @@ cpy cpy cpy tiQ -xho -xho -xho -xho -xho +tij +tij +tij +tij +tij cNV -eZY -uCr -otQ -xho -uAd -yeS -xho -faZ -oEw -oML -xho -otQ -otQ -xho -tiQ -gFD -hbH -vOP -hkw -hxV -hPz -ibT -ixf -tLQ -jbs -ikr -saC -saC -saC -mKQ -xrA -hkT -nCX +gmH +sUe +lhj +tij +rDX +qWq +tij +mSy +uex +fEo +tij +lhj +lhj +tij +tiQ +iDT +bJr +hlw +xWD +pDB +lJe +vft +kly +gHV +sEG +irX +saC +saC +saC +jyB +fhw +cGO +whb bzC nDM nDM gWI -sQu -msQ -sQu -sQu +kPI +dee +kPI +kPI gWI iAv bZB @@ -77577,7 +65446,7 @@ iAv iAv iAv iAv -ylm +cAa pjJ pjJ pjJ @@ -77592,111 +65461,111 @@ ien ien ien clY -oNQ -xyL +jkF +hkn xPA igv hLo tLw aiw -rLq -siT -xTs -pVx -vFS -vIe -uEC -roT -uEC -xqd -vFS -pVx +vvs +xrJ +lTc +iyW +qXk +nnH +iBz +ctT +iBz +aBA +qXk +iyW gvT jLF -xyL -tvO +hkn +neY fjr -xWL -lfe -lbg +iXc +los +kCI dmm thw vWl fjP guB -lEk +oMy nLm -kzR +xJb nLm -kzR +xJb nLm nLm -kzR +xJb nLm -kzR +xJb nLm nLm -oot +bxB pJW xXN -aWB +oxp nLm nLm -fmL +kzf nLm -fmL +kzf nLm -fmL +kzf nLm -fmL +kzf nLm -vBx +xmo ruf ruf fjP fjP fjP -huF -pMd -ssl +fqW +fvd +dnF sDq faQ yiM sPs vXc -tvn +pgv mBF mBF -vjA -rSG +lCp +oBo mBF spm jaO lYR -wmI +fgD mBF -wDy -hds +vyj +oZP mBF mBF rMF rMF tSL -tew +iql wnM exu -xNR -uWT -rLg -hpq +qld +lOh +ofs +jvD max -rIj -axw -gYO -gYO -tvk -nye -rIj +vXt +dZB +oKq +oKq +prR +tsK +vXt max ofi ofi @@ -77708,16 +65577,16 @@ ofi tZh tZh yjT -eUO -ykL +lSh +fER wHF -vou -hKy -hKy -vou +kGd +lxK +lxK +kGd ufu -ykL -eUO +fER +lSh tSb max cpy @@ -77728,13 +65597,13 @@ max max max max -osN -bPJ -awm -tFC -wfP -wfP -bPJ +mna +dCk +sUx +ntE +ogk +ogk +dCk cpy bMX "} @@ -77748,43 +65617,43 @@ cpy cpy tiQ cNV -vSJ -vSJ -vSJ +uMi +uMi +uMi cNV cNV -eGs -dtr -otQ -xho -uAd -yeS -yeS -saC -eEx -eOA -xho -otQ -otQ -xho -tiQ -gGk -hcx -hkD -hye -hye -hRd -uFG +dFo +jSb +lhj +tij +rDX +qWq +qWq +saC +vjD +vKj +tij +lhj +lhj +tij +tiQ +fvy +ccD +ejz +oEO +oEO +bzN +xim hDy -xxW -dsc -rov +ndk +xwL +yhb saC saC saC -kzc -lit -cyu +czP +wrZ +dRE bzC bzC bzC @@ -77804,7 +65673,7 @@ saC saC saC iAv -ylm +cAa pjJ pjJ tfP @@ -77819,111 +65688,111 @@ tfP ien clY clY -pPm +fPf xtb xPA bID rSd bNf aiw -rLt -sje -qOQ -uZO -uwk -uZO -uIO -tvZ -uIO -uZO -uwk -uZO +xgk +urW +alw +kVl +uvG +kVl +fCe +gCC +fCe +kVl +uvG +kVl jxz jLX -xOQ -xRk +kIh +sZO iKF -xWP -yiH -ukB +iie +fBf +ygn dnM nqo xTJ fjP fjP -tXg -pMd -cLx +xBK +fvd +aPo wLU aFN mPB aFN aFN wLU -jTr -pMd -jYp -ihs +kVW +fvd +vZj +bNK gGW qSw -gWh -wzJ +hyv +oRb nLm -oIE +bTg nLm -oIE +bTg nLm -oIE +bTg nLm -oIE +bTg nLm -unQ +fCm fjP xXN uOs uar fjP -wGM -pMd -pTa +wfJ +fvd +huG hgr fRP vTn cmF qHI -eEH +mma ums mBF mBF mBF mBF mBF -vVs -vVs +miR +miR mBF mBF -wDO +jCy mBF mBF rMF rMF rMF tSL -leO +asN kzT xgX -xNR -uWT -rLg -hpq +qld +lOh +ofs +jvD max -rIj -mwk -dIt -dIt -xDG -wxg -rIj +vXt +jgU +eCk +eCk +rTJ +mWO +vXt max ofi ofi @@ -77936,14 +65805,14 @@ tZh tZh yjT bZK -aIc +xlA wHF wHF -vou -tQp +kGd +skY wvt wvt -hMd +nHY bZK tSb max @@ -77955,13 +65824,13 @@ max max max max -osN -aQH -gsn -tFC -wfP -bPJ -bPJ +mna +vNe +alb +ntE +ogk +dCk +dCk cpy bMX "} @@ -77974,64 +65843,64 @@ cpy cpy cpy tiQ -xho -xho -xho -xho -xho +tij +tij +tij +tij +tij cNV -eGs -otQ -otQ -xho -uAd -bXA -saC -saC -saC -ePK -fdR -otQ -otQ -xho -tiQ -pNc -uFG -qml -uFG -uFG -dRS +dFo +lhj +lhj +tij +rDX +lEx +saC +saC +saC +cbu +wgM +lhj +lhj +tij +tiQ +sJT +xim +qlh +xim +xim +mbZ hDy hDy -fTS -xeG +nDX +qve jiY saC saC saC -xZw -xrA -hkT -nCX +mab +fhw +cGO +whb bzC iAv jUY -smr -smr -kri +bew +bew +kmf iAv iAv iAv xzn xzn -nrh -nrh +tyY +tyY saC saC tjR tjR -xPY -ylm +iWH +cAa oeX tfP tfP @@ -78046,40 +65915,40 @@ uSY ien clY clY -pPm +fPf xtb xPA hLo hLo hLo aiw -rLy -siT -uEC -xqd +kew +xrJ +iBz +aBA xtb -ubv -xXX +qOg +sdV xtb -ubv -xXX +qOg +sdV xtb -xqd -uEC +aBA +iBz wmk xtb -tvO +neY fjr -tPx -lfe -ppy +jUB +los +tXc qjC tCs mbH dnM sPk aWl -lNb +idh vra bFn xrH @@ -78087,39 +65956,39 @@ xrH cDH xrH xrH -mHa -doq -pxS +cjK +rVv +itW sPk qDR dnM sPk -pxS -pxp -fqD +itW +jsH +chd oFr lOi xrH nEX amP lOi -qWX +amV sPk dnM wDZ eAT mum rGE -rHu -pMd -aWo +tzD +fvd +fLE mpN vXc grq grq kqJ mAR -wCR +wma jrd mBF ums @@ -78136,20 +66005,20 @@ rMF rMF tSL tSL -gkg +iAW kzT qzT -xNR -gkg -rLg -hpq +qld +iAW +ofs +jvD max xKk -rIj -rIj -rIj -rIj -rIj +vXt +vXt +vXt +vXt +vXt xKk max ofi @@ -78163,14 +66032,14 @@ ofi ofi yjT bZK -cuY +rWI wvt wHF wHF qJT wvt wHF -kNL +gjJ bZK tSb max @@ -78182,13 +66051,13 @@ ofi max max max -osN -bPJ -cLB -esx -wfP -eLK -bPJ +mna +dCk +xKJ +nGo +ogk +wKv +dCk cpy bMX "} @@ -78201,64 +66070,64 @@ cpy cpy cpy tiQ -xho -xho -xho +tij +tij +tij kwJ -xho +tij cNV -eGs -uqt -uqt -xgl -dwP +dFo +ivP +ivP +nHf +pVI saC saC saC saC saC -cdP -xgl -xgl +oDn +nHf +nHf hDy hDy hDy hDy -hkE -hzq +oQd +aqE hDy hDy hDy -fTS -fTS -xeG +nDX +nDX +qve ipB -xZw +mab saC -xZw -xZw -bKk -kQR -fTS +mab +mab +xWs +biv +nDX bzC iAv iAv -sTr -sTr -lrr +vOp +vOp +nIs iAv iAv mWw nmK -nrh -nrh +tyY +tyY xzn xzn fLS xzn hHd -xPY -ylm +iWH +cAa ylC qyG qyG @@ -78273,17 +66142,17 @@ ien ien ien clY -oNQ -xyL +jkF +hkn xPA hLo hLo hLo aiw -cgB -siT -uEC -tlX +uPY +xrJ +iBz +vkv xtb xtb xtb @@ -78291,22 +66160,22 @@ xtb xtb xtb xtb -jpa -pVx -uEC +lgW +iyW +iBz xtb -tvO +neY fjr -tPx -fSq -geB +jUB +rdg +aKX jFc nhs qcy tUM nBv vxM -kwo +oai bkl aFN txY @@ -78314,32 +66183,32 @@ pbp txY pbp aFN -meq -kwo -xaD +bDv +oai +qff oPu trj uOs uOs -gHX -kwo -oIr +xNL +oai +nVe ruS txY pbp pbp sMV ruS -kwo +oai uOs fjP hxt tUM eAm rGE -wan -pMd -spo +clc +fvd +vyB tVv qgj tvq @@ -78347,29 +66216,29 @@ ftl yiM rwB gBe -fXx +caL vjP rMF rMF -jbv +jae rMF rMF -jbv +jae rMF rMF -jkp +mIs rMF tSL tSL tSL -fNp -gZp +wDJ +vob wnM kzT -yfS -pRi -rLg -hpq +oGH +tGH +ofs +jvD ofi max max @@ -78390,14 +66259,14 @@ ofi ofi yjT bZK -xjz +dka wvt wvt -wpa -wpa +ebd +ebd wvt wvt -nWp +eco bZK juY mse @@ -78408,14 +66277,14 @@ aYO ofi ofi max -pAj +qbe fnA -bPJ -bPJ -uEj -jJF -bPJ -bPJ +dCk +dCk +gpb +rKX +dCk +dCk cpy bMX "} @@ -78428,64 +66297,64 @@ cpy cpy tiQ tiQ -xho -xho -uTj -cBi -xho +tij +tij +uZM +xeP +tij cNV -eGs -otQ -otQ -xho -uAd -saC -saC -saC -saC -saC -goK -ksm -cBi -fTS -uxf -gHF -fTS -hkT -fTS -fTS -fTS -glj -fTS -xuU -txs -uHn -xZw -xZw -tZs -xZw -xZw -mcG -aCR +dFo +lhj +lhj +tij +rDX +saC +saC +saC +saC +saC +tVe +bty +xeP +nDX +dIR +oMB +nDX +cGO +nDX +nDX +nDX +fxU +nDX +xEF +hpx +qFj +mab +mab +nbL +mab +mab +hrT +scA bzC iAv iAv -tfW -tfW -mBy +fTg +fTg +dEZ iAv iAv saC eYA akp hHd -mTo -xkB +hFE +oWh xzn xzn hHd -xPY -ylm +iWH +cAa yim tfP tfP @@ -78500,7 +66369,7 @@ pjJ ien esw clY -oNQ +jkF xtb qBc jZo @@ -78508,65 +66377,65 @@ rbb jZo rwK hzk -eNy -uEC -jXc +nSY +iBz +vsX xtb -ubz -iPV +tSw +dCR xtb -ubz -iPV +tSw +dCR xtb -wpA -vmo -pVx +vpo +ikz +iyW xtb -tvO +neY fjr -tPx +jUB nLm -tTU -vJT +qzl +lmE gdt uOs grw uOs -qGq -pMd -oRr +mdE +fvd +eTt jnk jnk mPR nbx nbx aFN -jTr -pMd -kWZ -mQv +kVW +fvd +gQH +rmK trj gVg -pBT -mnN -pMd -cLx +jVc +lfC +fvd +aPo ruS aFN mQq aFN sMV -iFO -pMd -wGM +vmj +fvd +wfJ fjP tUM uOs vzp -wan -kkB +clc +jgG nLm -vBa +auS ofy sPs grq @@ -78574,7 +66443,7 @@ grq yiM xly wYa -fXx +caL rMF tSL qKr @@ -78587,16 +66456,16 @@ tSL tSL tSL tSL -drV -may -xNR +oTK +kEE +qld wnM wnM kzT -yfS -emE +oGH +eqV tSL -hpq +jvD tZh ofi max @@ -78618,12 +66487,12 @@ ofi yjT bZK bZK -jBu +nkp wvt wHF wHF wHF -oDZ +tet bZK bZK gol @@ -78635,14 +66504,14 @@ erA ofi ofi ofi -osN -bPJ -bPJ -bPJ -bLA -jJF -wfP -bPJ +mna +dCk +dCk +dCk +qay +rKX +ogk +dCk cpy bMX "} @@ -78654,65 +66523,65 @@ cpy cpy tiQ tiQ -xho -xho -uTj -kkZ -oML -xho +tij +tij +uZM +fSi +fEo +tij cNV -eGs -otQ -otQ -xho -uAd -yeS -saC -saC -saC -saC -oEw -yeS -oML -fTS -lrh -gIH -hcV -hkY -hAk -hAk -hRj -kfA -ick -iMS -xWc -itp -xWc -xWc -xWc +dFo +lhj +lhj +tij +rDX +qWq +saC +saC +saC +saC +uex +qWq +fEo +nDX +ggQ +jHo +gSE +kTQ +kEy +kEy +cFO +qip +cSZ +cpq +isN +cse +isN +isN +isN krw -ahJ -pRf +iCG +oOq saC bzC iAv -geP -jqL -jqL -rKz -wAB +ohb +lKW +lKW +jqd +aiI iAv saC saC saC hHd -mTo -mTo +hFE +hFE xzn hHd xzn -jdv -ylm +evV +cAa yim tfP cpy @@ -78727,103 +66596,103 @@ pjJ ien dWc clY -oNQ -xyL +jkF +hkn xPA hLo hLo hLo aiw -rLy -xTs -xTs -jXc +kew +lTc +lTc +vsX xtb -ubz -iPV +tSw +dCR xtb -ubz -usy +tSw +jxP xtb xtb -xyL +hkn xtb xtb -tvO +neY fjr -tPx +jUB nLm nLm -kDH -ojx +aFI +lce uOs fjP fjP -pTB +jeG nLm -nti -mVH -mVH +suN +epo +epo nwj -ghw -mVH -qAF -rro +oTh +epo +wCz +oMg nLm -sIq -xiU -lAj -xaD -xiU -wzJ +fkl +aKA +aoN +qff +aKA +oRb nLm -yct -sAx -uNW +bvY +pWu +ayh nwj -rro -oRr -vYX +oMg +eTt +asC nLm -vJn +jEZ lsD fjP fjP -rGN -rHu +ryC +tzD nLm nLm -afX +aar vXc jrL qig yiM yiM twT -voL +nLN rMF tSL tSL -ibW +uyL tSL tSL -jPd +wqD tSL -rdz -kTF -caf +eFh +omq +iDR tSL -xtP -xNR -xtP +pBO +qld +pBO wnM wnM tSL phn kzT -xNR -dMo -hpq +qld +dHS +jvD ofi ofi tZh @@ -78832,44 +66701,44 @@ max max max max -pAj -uOd -uOd -uOd -uOd -uOd -uOd -cxv +qbe +neo +neo +neo +neo +neo +neo +vhu ofi ofi hov sOB bZK bZK -dPI -wKV -xym -gPw +jEM +cje +aSO +beW anG bZK vVd lUV max -pAj -uOd -uOd -qdO -uOd -uOd -uOd +qbe +neo +neo +eLk +neo +neo +neo fnA cpy cpy -bPJ -wfP -jJF -fvn -bPJ +dCk +ogk +rKX +oXz +dCk cpy bMX "} @@ -78880,66 +66749,66 @@ cpy cpy cpy tiQ -wtH -xho -uTj -ote -jJa -gTw -xho +aax +tij +uZM +jgg +iDA +xgG +tij cNV -eGs -dya -otQ -xho -uAd -yeS +dFo +aqc +lhj +tij +rDX +qWq saC saC saC saC -fkb -dLs -fJe -tLQ -uxi -gLK -xWc +lUo +tNx +dyo +gHV +oCD +svj +isN hlf tso tso -hRG -kzc -xZw -xZw -xZw -iGc -xZw -xZw -xZw -xZw -mKQ +plx +czP +mab +mab +mab +jHx +mab +mab +mab +mab +jyB saC saC bzC iAv -wTV -hAD -lEZ -fNk -wAB +fbm +elr +oYJ +snv +aiI iAv saC saC jPC xzn -xkB -xkB +oWh +oWh xzn xzn vZP -jdv -ylm +evV +cAa yim tfP cpy @@ -78954,149 +66823,149 @@ ien ien ien clY -oNQ +jkF xtb xPA hLo hLo hLo aiw -rLq -siT -xTs -jXc +vvs +xrJ +lTc +vsX xtb -nSC -usy +lMD +jxP xtb -nSC -jaY +lMD +diC xtb xAO xAO xAO xtb -tvO +neY ugV -xhd +fBh yjm nLm nLm -lBj -vJT +rKB +lmE rGE -fQb -vDp +koF +vbO nLm nwj -uaT -uaT +mSp +mSp nwj -uaT -uaT +mSp +mSp nwj nwj nLm nLm nLm -eBA -qbL +omk +cRh nLm nLm nLm nwj -uaT -uaT +mSp +mSp nwj -uaT -uaT +mSp +mSp nwj nLm -qxb -sdM +lvs +nrR cve -vJT -sLQ +lmE +nqA nLm nLm rMF -sql +bAL yiM yiM sPw yiM vXc vXc -rOP +gYu tSL tSL -fOy -pJj -pJj -nta -yfS -heO -xNR -yfS -igL -rLg -uWT -xNR -uWT +pvj +ipz +ipz +rFR +oGH +mXI +qld +oGH +uVO +ofs +lOh +qld +lOh wnM kzT yfH xDl -xNR -mxz +qld +mgy tSL fnA -uOd -uOd -cxv +neo +neo +vhu max max max max -pAj +qbe fnA wIr wIr -vLI -pSj +kXt +nFv wIr wIr kmq -cxv +vhu ofi ofi hov sOB bZK -mGY -mGY -mGY -mGY +tKZ +tKZ +tKZ +tKZ bZK vVd nGB max -pAj +qbe kmq wIr -vLI -bZV -vLI -vLI +kXt +adf +kXt +kXt wIr cpy cpy cpy -bPJ -wfP -pSh -sRM -bPJ +dCk +ogk +oSo +pGu +dCk cpy bMX "} @@ -79107,54 +66976,54 @@ cpy cpy cpy tiQ -vDV -uTj -ote -yeS -oML -xho -xho +lfu +uZM +jgg +qWq +fEo +tij +tij cNV -eGs -dya -otQ -xho -uAd -yeS -saC -saC -saC -saC -oEw -fwX -oML -fTS -lrh -gMy -udR -iKw -udR -udR -udR -xEk -iyl -iOl -xZw -uHn -xZw -xZw -xZw -mKQ +dFo +aqc +lhj +tij +rDX +qWq +saC +saC +saC +saC +uex +rlM +fEo +nDX +ggQ +dSn +qha +uEk +qha +qha +qha +pVc +snq +mZH +mab +qFj +mab +mab +mab +jyB saC saC saC bzC iAv -eTn -gbo -bBJ -iuC -axS +gLr +dzy +kac +lXO +jQs iAv saC lqd @@ -79165,8 +67034,8 @@ hHd hHd xzn xzn -jdv -ylm +evV +cAa yim tfP cpy @@ -79181,149 +67050,149 @@ pjJ ien nBs clY -oNQ +jkF xtb xPA wiz rwx tyy aiw -rLq -siT -uEC -tlZ +vvs +xrJ +iBz +bhT xtb -uco -uco +otR +otR xtb -uco -uco +otR +otR xtb xAO xAO xAO -xyL -ivY +hkn +jcg ugV hNR -xhL +pTg yjm nLm nLm -tTU -leI -lnH +qzl +jPY +qvg nLm nLm ahP -hhD -hhD -hhD -hhD -oLz -rnA -pZi -ahP +xWa +xWa +xWa +xWa +xRf +sGS +uBV +rRW pQE -ooG -rAK -oSH -qSk +iEF +iXh +kkD +ufp pQE +ykz rMF -xyN -xyN -xyN -xyN -xyN -xyN +kdM +kdM +kdM +kdM +kdM rMF nLm nLm -rHu -dJp -pUd +tzD +wPb +rxs nLm nLm rMF -sql +bAL vXc bMN yiM yiM pWR rXb -uHE +nLX oXp tSL -pcr -oKQ -yfS -wxa -yfS -xNR -xNR +bhA +iae +oGH +oUY +oGH +qld +qld rtk -wxa -tne -rLg -uWT -xNR -uWT +oUY +fVI +ofs +lOh +qld +lOh kzT xSm yfH xDp -xNR -gES +qld +eJe tSL fnA fnA tSL kmq -cxv +vhu max max -pAj +qbe kmq wIr wIr -hQE -aPu -aPu -cGw +fpY +hmn +hmn +xrl wIr wIr -fnA -cxv -ofi -ofi -hov -fTN -fTN -fTN -fTN -fTN -lvl -ndZ -gBv -pAj -fnA +dbP +sHp +neo +neo +wUe +xiH +xiH +xiH +xiH +xiH +fDk +rVU +dzW +koy +dbP wIr wIr -xSA -oaF -aPu -ycO +mut +wxh +hmn +xQk wIr wIr cpy -bPJ -bPJ -wfP -wfP -sRM -bPJ +dCk +dCk +ogk +ogk +pGu +dCk cpy bMX "} @@ -79334,54 +67203,54 @@ cpy cpy cpy tiQ -vDV -kmz -yeS -yeS -oML -xho +lfu +wbU +qWq +qWq +fEo +tij cNV cNV cNV -fsj -xho -xho -kmz +cnS +tij +tij +wbU saC saC saC saC -csK -fpH -dOw -gTw -fTS -lrh -gHF -fTS -hkT -fTS -fTS +joi +poz +wCh +xgG +nDX +ggQ +oMB +nDX +cGO +nDX +nDX saC saC saC -iOG -jci -uHn -xZw -xZw -xZw +oke +gLn +qFj +mab +mab +mab saC saC saC saC bzC iAv -eTn -iEn -bBJ -iuC -kzG +gLr +wIt +kac +lXO +ptN iAv saC saC @@ -79392,8 +67261,8 @@ hHd xzn xzn xzn -jdv -ylm +evV +cAa yim tfP cpy @@ -79408,41 +67277,41 @@ pjJ ien hmM clY -oNQ +jkF xtb xPA piE hLo tLw aiw -rLq -siT -xTs -pVx +vvs +xrJ +lTc +iyW xtb -ucx -usz +ihM +oXO xtb -vkC -vJb +sZt +iKp xtb xAO xAO xAO -xyL -tvO +hkn +neY ugV hNR ugV -cJg +ise yjm nLm -lfe -fSq -lfe +los +rdg +los nLm ahP -wCC +qWI fjr xfD fjr @@ -79450,29 +67319,29 @@ fjr bPH dox tGl -crH -ofd -rqs +lCm +uJK +sLS uPy qGK -qSk -ofd -spo -vXc +ufp +uJK +ykz +vyB vXc vXc mqC pwz dFg -pUv +wAP rMF nLm -pMd -pMd -pMd +fvd +fvd +fvd nLm rMF -sql +bAL vXc vXc upz @@ -79480,10 +67349,10 @@ yiM yiM wsY vXc -fXx +caL tSL tSL -gFi +uQC wnM qEf eAX @@ -79491,66 +67360,66 @@ suF wnM wnM tuJ -wEE -wFP -rLg -uWT -yfS -uWT +hIj +ugr +ofs +lOh +oGH +lOh kzT rXH yfH nBY -juQ -cpO +myi +neq tSL tSL tSL tSL tSL -dbP -cbR -cbR -dbP +fnA +neo +neo +fnA wIr wIr -mDz -aPu +hsT +hmn fTP qzQ -aPu -tcE +hmn +iFM wIr wIr -dbP -cbR -cbR -cbR -cbR -cbR -cbR -cbR -cbR -cbR -cbR -cbR -dbP +mez +rZM +rZM +rZM +rZM +rZM +rZM +rZM +rZM +rZM +rZM +rZM +cqy wIr wIr -vDL -aPu +diO +hmn oqp qzQ -aPu -vDL +hmn +diO wIr wIr -bPJ -mPV -wfP -wfP -bPJ -bPJ +dCk +eLB +ogk +ogk +dCk +dCk cpy bMX "} @@ -79561,54 +67430,54 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -oML -xho -xho -uqt -xho -uTj -ksm -ksm -ote +lfu +rDX +qWq +qWq +fEo +tij +tij +ivP +tij +uZM +bty +bty +jgg saC saC saC saC -gyK -xgl -xgl -xgl +hNU +nHf +nHf +nHf hDy hDy hDy hDy -hkE -hzq +oQd +aqE hDy hDy hDy saC saC -xeG -uHn -xZw -xZw +qve +qFj +mab +mab +saC saC saC saC -qpD saC bzC iAv -gem -sjx -bBJ -iuC -jqL +qoN +nka +kac +lXO +lKW iAv saC hHd @@ -79619,8 +67488,8 @@ jxI jxI jxI jxI -nVW -bjT +fnn +oox rOf cpy cpy @@ -79635,40 +67504,40 @@ ien ien ien sjY -oNQ -xyL +jkF +hkn qBe sKz hLo kmE rwR -kcw -sjp -ohP -oZC -tDq -oZC -cZN -rrN -xqd -obb +fRK +thg +iCt +smE +uQN +smE +vox +hLO +aBA +hAu xtb xAO xAO xAO xtb -tvO +neY ugV hNR ugV ugV -eSM -cHw -cHw -hhD -dhj -hhD -wCC +fgS +pjX +pjX +xWa +iMV +xWa +qWI ugV ugV kGX @@ -79677,28 +67546,28 @@ fjr rZc dox tGl -crH -ofd -qSk +lCm +uJK +ufp xeg uMO -rqs -ofd -spo -vXc +sLS +uJK +ykz +vyB laX dFH vXc vXc vXc vXc -pUv -xyN -xyN -xyN -xyN -xyN -sql +wAP +kdM +kdM +kdM +kdM +kdM +bAL vXc vXc vXc @@ -79707,10 +67576,10 @@ vXc yiM wsY yiM -fXx +caL tSL tSL -gOb +tqC wnM qEf hjW @@ -79718,65 +67587,65 @@ dbG eKL wnM fMN -tVw -wFP -rLg -gkg -xNR -gkg +cVd +ugr +ofs +iAW +qld +iAW kzT pCP yfH xDl -gXA -cGG +jCR +nEV tSL -qGG -wvq -uWT +cTF +owp +lOh tSL wIr wIr -tMS +kcj wIr wIr -rvu -aPu +pMf +hmn fTP oLa oLa qzQ -aPu -qSS +hmn +mSo wIr wIr wIr -tMS -tMS -tMS -tMS +kcj +kcj +kcj +kcj wIr wIr -tMS -tMS -tMS -tMS +kcj +kcj +kcj +kcj wIr wIr -vDL -tog +diO +axZ fTP xgH oLa qzQ -hhI -vDL +xIX +diO wIr wIr -dSJ -pSh -wfP -bPJ +tMI +oSo +ogk +dCk cpy cpy bMX @@ -79788,41 +67657,41 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -epI -cBi -xho -uqt -xho -uAd -yeS -yeS +lfu +rDX +qWq +qWq +ctZ +xeP +tij +ivP +tij +rDX +qWq +qWq saC saC saC saC -yeS -jKu -xho -otQ -otQ -dyl +qWq +uAW +tij +lhj +lhj +frE tiQ -gNe -uFG -qml -uFG -uFG -msp +bzq +xim +qlh +xim +xim +toK hDy hDy saC -dsc -rov -kzc +xwL +yhb +czP saC saC saC @@ -79831,23 +67700,23 @@ saC saC bzC iAv -eym -iEn -bBJ -iuC -jqL +qiS +wIt +kac +lXO +lKW iAv lqd xzn sQN -xkB -xkB -wFA +oWh +oWh +cBG hHd xzn xzn -xPY -ylm +iWH +cAa tfP cpy cpy @@ -79862,29 +67731,29 @@ pjJ ien fkD clY -oNQ +jkF xtb rmt bBt rcP qyS rmt -rLy -xTs -uEC -xqd -xyL -xqd -xTs -rKt -uEC -xqd -pnx +kew +lTc +iBz +aBA +hkn +aBA +lTc +nBd +iBz +aBA +vAR xAO xAO xAO -xyL -tvO +hkn +neY ugV hNR ugV @@ -79904,15 +67773,15 @@ fjr rZc dox tGl -crH -ofd -qSk +lCm +uJK +ufp xeg uMO -rqs -ofd -spo -vXc +sLS +uJK +ykz +vyB rjn bVu vXc @@ -79934,10 +67803,10 @@ vXc vXc wsY yiM -pUv +wAP rMF tSL -hZR +hoe kzT qEf msn @@ -79945,65 +67814,65 @@ wfl eKL kzT hsh -bUO -wRC +jqv +nMK tSL -tYf -xNR +lCb +qld gse kzT xDl tSL pJZ drz -bFU +fxo tSL -tne -kGm -lML -hgo +fVI +vXz +fgp +cMh wIr -tmy -hYL -hyf +usI +cqC +kJq wIr -fYm -aPu +wrH +hmn oLa -uWT -uWT +lOh +lOh tkf qzQ -aPu -jiF +hmn +rwQ wIr -tmy -hYL -pfD -hYL -hYL +usI +cqC +uix +cqC +cqC wIr wIr -hYL -hYL -pfD -hYL -hyf +cqC +cqC +uix +cqC +kJq wIr -hWs -pXq +erT +hXl pOs uNu pKl oLa qzQ -hhI -lBd +xIX +lyF wIr -guh -acC -wfP -bPJ +usE +dXG +ogk +dCk cpy cpy bMX @@ -80014,42 +67883,42 @@ cpy cpy cpy cpy -cpn -aGg -dAm -dXq -ekt -eoH -eqU -cJo -fsV -cJo -dAm -dLs -afA +rNX +dbW +kvS +qAj +ilF +pWG +mIb +eWx +kye +eWx +kvS +tNx +qSq saC saC -esB -sGF -dLs -fcW -xho -otQ -otQ -dyl -tiQ -gGq -hcZ -hlJ -hAK -wyv -uFG -uFG +saC +saC +qWq +uAW +tij +lhj +lhj +frE +tiQ +eQj +xPM +oki +mtQ +mzc +xim +xim hDy -qYk -xeG -uHn -xZw +rwz +qve +qFj +mab saC saC saC @@ -80058,23 +67927,23 @@ saC saC bzC iAv -geP -iEn -bBJ -iuC -eTn +ohb +wIt +kac +lXO +gLr iAv hHd xzn sQN -xkB -mTo -xkB +oWh +hFE +oWh ufA hHd xzn -xPY -ylm +iWH +cAa tfP cpy cpy @@ -80089,29 +67958,29 @@ pjJ ien bHA clY -oNQ -xyL -fwy -fwy -vmo -vmo -vmo -pCW -uEC -uEC -qYv -xyL -xqd -xTs +jkF +hkn +pbB +pbB +ikz +ikz +ikz +vDI +iBz +iBz +aus +hkn +aBA +lTc rsa -uEC -xqd -pnx +iBz +aBA +vAR xAO xAO xAO -xyL -tvO +hkn +neY ugV spe hcX @@ -80131,15 +68000,15 @@ nQx rvx fZy hAg -crH -ofd -qiC +lCm +uJK +eMd xeg qGK -rqs -ofd -spo -vXc +sLS +uJK +ykz +vyB qbI qlD qpz @@ -80162,9 +68031,9 @@ tpD tBQ yiM yiM -fXx -tmA -xNR +caL +pcT +qld wnM kzT hsh @@ -80173,9 +68042,9 @@ eKL qNl kzT wnM -yfS -nFQ -yfS +oGH +xXC +oGH wnM wnM wnM @@ -80184,53 +68053,53 @@ kzT kzT kzT kDY -nue -xNR -yfS -yfS -kLO -gwg -jmv +hEu +qld +oGH +oGH +oGH +ajm +umq tkf -dgY -gwg -cHb +byS +ajm +hmn qzQ oLa -uWT -uWT +lOh +lOh tkf fTP fTP -pCG -gwg -jmv +pnp +ajm +umq oLa oLa oLa tkf -rCE -jSk +kGA +gKo tkf tkf tkf tkf -dgY -gwg -cHb +byS +ajm +dOS oqp oLa pKl pKl tkf qzQ -hhI -hLx +xIX +lpn wIr -hcG -lgR -aKE -bPJ +qeV +uny +ntX +dCk cpy cpy bMX @@ -80241,42 +68110,42 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -cCC -xho -uqt -xho -aut -dOw -ajw -bRN -sGF -euN +rNX +lfu +rDX +qWq +qWq +fEo +srl +tij +ivP +tij +uZh +wCh +tNA +cWP +saC saC -yeS -jKu -xho -otQ -otQ -xho +saC +qWq +uAW +tij +lhj +lhj +tij tiQ xce -xCp -xdF -iKC -hCv -wyv -uFG -iwJ -fTS -xeG -uHn -jwT +eND +ufl +aNV +lha +mzc +xim +fQA +nDX +qve +qFj +dJO saC saC saC @@ -80285,23 +68154,23 @@ saC saC bzC iAv -lwc -iEn -bBJ -iyS -eTn +sVQ +wIt +kac +hyR +gLr iAv xzn -klj -lbX -klj -klj +eyi +hJF +eyi +eyi xzn gBi saC hHd -xPY -ylm +iWH +cAa pjJ pjJ pjJ @@ -80316,57 +68185,57 @@ ien ien ien uSo -oNQ +jkF xtb -pVx -xqd -qPT -xqd -pVx -vsG -pVx -fwy -qYv -xyL -pVx +iyW +aBA +nQH +aBA +iyW +cUR +iyW +pbB +aus +hkn +iyW wmk jLF wmk -pVx +iyW xtb xAO xAO xAO xtb -tvO +neY nDo ugV hNR -rJG -mKK -tWy -lae -uvJ -gwU -jeh -qdV -byD -sqr -tNr +xbm +dXl +wDr +gMO +wXG +bfg +meY +hbe +ffg +rhl +cnH ugV spe nQx fjr xfD -crH +lCm pQE pQE -rAK -oSH +iXh +kkD pQE pQE -spo -vXc +ykz +vyB vXc vXc vXc @@ -80389,75 +68258,75 @@ vXc tDd rwE bXS -eyn -cKi -wyy +tZC +hRZ +oHG lUv msj hIP uOJ mCA qYG -wyy -phu -xHJ -cKi -phu -phu +oHG +byB +tvN +hRZ +byB +byB mCA msj eNf -vNY -oht -phu +pvi +lWB +byB xAF -cKi +hRZ msj msj -phu -iLC -tIT -olz +byB +oHG +dsJ +fJk pOs -olz -tIT -skS +fJk +dsJ +cbP iXM uIk -uWT -uWT +lOh +lOh eng iXM vUe -had -tIT -bCh +gXQ +dsJ +sFy fzp fzp pOs pOs -aTg -olz +sHq +fJk fzp fzp pOs pOs -bCh -tIT -skS +sFy +dsJ +eev huu tkf pKl pKl tkf qzQ -aPu -jmv -ueY -tkC -rnX -acC -bPJ +hmn +umq +rnc +lEP +eGl +dXG +dCk cpy cpy bMX @@ -80468,67 +68337,67 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -xho +rNX +lfu +rDX +qWq +qWq +fEo +tij cNV cNV cNV -cCC -xho -xho -uAd +srl +tij +lfu +rDX saC saC -xho -yeS -jKu -xho -otQ -otQ -xho +tij +qWq +uAW +tij +lhj +lhj +tij tiQ -hTg -uFG -qPq -hxV -hFu -hSO -kck -ixf -tLQ -jbs -jtf -kgb -xZw +eKl +xim +koB +pDB +fXo +ieM +hgA +kly +gHV +sEG +aIH +lSf +mab saC saC saC saC saC -oaj +bzC iAv -jqL -vTK -bBJ -iyS -eTn +lKW +kJk +kac +hyR +gLr iAv pbi -bKn -jjW -bKn -bKn +kYB +jmR +kYB +kYB iAv iAv iAv iAv iAv -ylm +cAa vjW pjJ pjJ @@ -80543,57 +68412,57 @@ pjJ ien hJZ hJZ -oNQ +jkF xtb -xyL -xyL +hkn +hkn xtb xtb xtb -rMb -skQ +ydo +uXm xtb xtb xtb -pVx +iyW wmk jLF wmk -pVx +iyW xtb xtb -xyL +hkn xtb xtb -tEJ +xIA fjr ugV hNR -keA -wSW -gvK -nMP -ovB -ikp -cVR -ivs -nMP -eqb -joV +bbX +tLF +umV +mtU +eis +vMB +kkG +qAp +mtU +gvD +idS pqk ugV jXQ nQx fjr -nIu -ofd -iiL +lCm +uJK +oIV xeg uMO -oXF -ofd -aPS -vXc +hjN +uJK +ykz +vyB vXc vXc vXc @@ -80615,76 +68484,76 @@ yiM yiM vXc vXc -voL +nLN rMF tSL -myf -xNR +qhB +qld kzT -sFF -vEK +bKH +hKP wnM -yfS -xwD +oGH +bVZ tSL tSL tSL -pDe -fNp -yfR -tne -xDQ -tne -yfR -tne -yfR +xoV +wDJ +cMh +fVI +iSO +fVI +cMh +fVI +cMh tSL -hES -tne -tne -qRF +uuh +fVI +fVI +gUy wIr -tmy -pfD -hyf +usI +uix +kJq wIr -ttd -aPu +byS +hmn xgH -uWT -uWT +lOh +lOh xgH fTP -dPv -pcO +qpo +sqK wIr -cyV -pfD -pfD -hYL -hYL +tgR +uix +uix +cqC +cqC wIr wIr -pfD -hYL -hYL -hYL -tcj +uix +cqC +cqC +cqC +aRn wIr -ttd -vvi +dPp +yal aft pKl ipx tkf fTP -aPu -pfq +hmn +upk wIr -tXS -acC -wfP -bPJ +iMh +dXG +ogk +dCk cpy cpy bMX @@ -80695,132 +68564,132 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -xho -xho +rNX +lfu +rDX +qWq +qWq +fEo +tij +tij cNV -lxW -dCx -dtr -xho -uAd +nhq +sZR +jSb +lfu +rDX saC saC kwJ -xho -jKu -xho -otQ -otQ -xho -tiQ -gxl +tij +uAW +tij +lhj +lhj +tij +tiQ +yhq gYT -xdF -hBf -hFS -uFG -uFG +ufl +aTs +wYr +xim +xim hDy -gll -xeG -uHn -xZw -xZw -klL +jBa +qve +qFj +mab +mab +kcm saC saC saC saC bzC iAv -gmb -iEn -fQi -iyS -jqL +udh +wIt +kXq +hyR +lKW iAv -kzG -jqL -qUz -jqL -jqL -gcr -skC +ptN +lKW +mys +lKW +lKW +aVy +aXD iAv iAv iAv jEX -sQu -sQu -sQu -sQu -sQu -sQu -oaa +kPI +kPI +kPI +kPI +kPI +kPI +fIY pjJ lCH vjW pjJ -ien +clY hJZ hJZ -jqF -vne -hhD +nUs +qYi +xWa ahP -xyL -xWF -pVx -roT -uEC -xqd -lZO +hkn +gLb +iyW +ctT +iBz +aBA +akE xtb -ucV -uEC +neN +iBz jLF -vkG -vJu -xyL +lqU +dAp +hkn ahP -hhD -hhD -hhD -wCC +xWa +xWa +xWa +qWI fjr ugV hNR -keA -vCy -ryb -ghE -sJP -urY -urY -ryW -fIr -sUN -bKu +bbX +uoC +irg +fek +wJg +uqV +uqV +rcw +hUk +lLD +dSN pqk ugV ibS jXQ iKF -sQL -wyI -gny +wDF +nOh +sLF ocn qGK -xvW -jct -qQM -vXc +fEJ +bIl +ykz +vyB pgm vXc yiM @@ -80829,89 +68698,89 @@ yiM nfk yiM yiM -gek -hXO -hXO -hXO -hXO -fVU -lNU -lNU -rVe +bmf +mXU +mXU +mXU +mXU +aMm +fqh +fqh +dMD yiM yiM yiM vXc -rOP +gYu tSL tSL tSL -ibW -ibW -ily -dlM -ibW -ibW +uyL +uyL +hYc +pwU +uyL +uyL tSL tSL tSL tSL tSL tSL -roN -srM +xdR +oBI tSL -hcQ -kui -cIe -qNQ +snH +kXl +fTj +pnP tSL -uWT -wvq -uWT +lOh +owp +lOh tSL wIr wIr -tMS +kcj wIr wIr -qJv -aPu +bMk +hmn bpN uDT pOs poD -aPu -rSW +hmn +irC wIr wIr wIr -tMS -tMS -tMS -tMS +kcj +kcj +kcj +kcj wIr wIr -tMS -tMS -tMS -tMS +kcj +kcj +kcj +kcj wIr wIr -vDL -aPu +diO +hmn bpN uIk oLa fTP -aPu -mOJ +hmn +dAk wIr wIr -lgR -wfP -jJF -bPJ +uny +ogk +rKX +dCk cpy cpy bMX @@ -80922,64 +68791,64 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -epI -cBi -xho +rNX +lfu +rDX +qWq +qWq +ctZ +xeP +tij cNV -fcV -dCx -otQ -xho -uAd +xMc +sZR +lhj +lfu +rDX saC kwJ kwJ -xho -jKu -xho -otQ -dtr -saC -tiQ -oDU -uFG -hjB -hBB -uFG -dRS +tij +uAW +tij +lhj +jSb +saC +tiQ +waP +xim +kyr +lsa +xim +mbZ hDy hDy -gvs -hdR -uHn -xZw -xZw -kyz -mKQ +sYA +sSh +qFj +mab +mab +ozd +jyB saC saC saC bzC iAv -jqL -iEn -bBJ -iyS -jqL +lKW +wIt +kac +hyR +lKW iAv -pkE -fzu -jMK -lEZ -lEZ -uFT -eTn -atO +lwN +nIm +jQp +oYJ +oYJ +vBk +gLr +ttj iAv iAv kdf @@ -80989,33 +68858,33 @@ ciw lPf qqJ jEX -ylm +cAa pjJ lCH pjJ -ien -ien -ien +pjJ +clY +clY hJZ hJZ -vne +qYi fjr -crH -xyL -rqd +pKS +hkn +aaH jxz -rMi -xTs +sgx +lTc gvT -njW +lij xtb -udv -uEC -rKt -vkG -vKF -xyL -tvO +lLf +iBz +nBd +lqU +ndW +hkn +neY fjr fjr fjr @@ -81023,31 +68892,31 @@ fjr fjr fjr fUQ -rBg -whp -uye +hod +lRt +tdX naM uAa fto uDF mQo -urY -dHx -wtO +uqV +aXu +mWS ugV fjr fjr fjr ibS -miz -tRd -xvW +lCm +lRs +fEJ iaY bGT -xvW -tRd -qQM -vXc +fEJ +lRs +ykz +vyB tpD qQi qQi @@ -81056,7 +68925,7 @@ qQi sMa yiM yiM -cRB +tvy trZ trZ trZ @@ -81064,22 +68933,22 @@ trZ trZ trZ trZ -bKO +fwS yiM yiM yiM vXc -rOP +gYu tSL tSL -xSz -wyy +sWf +oHG lUv -dOz -oTI +bVh +bei kzT -xNR -bAc +qld +nZf tSL tSL tSL @@ -81089,56 +68958,56 @@ tSL tSL tSL tSL -ibW -ibW +uyL +uyL tSL tSL tSL tSL tSL tSL -sYv -ncg -ncg -sYv +tOo +guz +guz +tOo wIr wIr -pXz -foR +pKW +mBv spJ fTP -iyT -riZ +rgc +kyd wIr wIr -sYv -ncg -ncg -ncg -ncg -ncg -ncg -ncg -ncg -ncg -ncg -ncg -sYv +iYE +fav +fav +fav +fav +fav +fav +fav +fav +fav +fav +fav +vVy wIr wIr -vDL -hhI +diO +xIX oqp qzQ -aPu -vDL +hmn +diO wIr wIr -evu -wfP -jJF -jJF -bPJ +uGs +ogk +rKX +rKX +dCk cpy cpy bMX @@ -81150,99 +69019,99 @@ cpy cpy cpy tiQ -aKK -uAd -yeS -yeS -yeS -oML -xho +xyY +rDX +qWq +qWq +qWq +fEo +tij cNV saC -otQ -otQ -xho -uAd -xgl +lhj +lhj +lfu +rDX +nHf kwJ ezU -xho -jKu -xho -otQ +tij +uAW +tij +lhj saC saC tiQ xce xce -hkE -hzq +oQd +aqE hDy hDy hDy -iyq -fTS -xeG -uHn -jxu -xZw -rEV -mKQ +wxn +nDX +qve +qFj +umJ +mab +ixc +jyB saC saC saC bzC iAv -vsj -hij -bBJ -iuC -jqL -jjj -eTn -gbo -sFb -pNF -uFT -lrM -uFT -eTn +bVD +jDx +kac +lXO +lKW +xhN +gLr +dzy +tyj +gjo +vBk +elu +vBk +gLr iAv iAv -mnQ -rCu -rCu -eHE +olm +dNY +dNY +uvV aea -mEG +iCm alx -ylm +cAa vjW lCH pjJ pjJ -pjJ -ien -ien -ien -ien +clY +clY +clY +clY +qYi fjr -crH -xyL -qxp -qPT -rKt -xTs -kMr -nXl +pKS +hkn +gNX +nQH +nBd +lTc +eRY +hkN xtb -uea -pVx -vsG -qfD -vLu -xyL -tvO +ffe +iyW +cUR +pKP +asM +hkn +neY fjr fjr fjr @@ -81250,31 +69119,31 @@ cpy bKf fjr nKZ -rBg -iML -kCQ -rjD -ryW -tlF -fIr -ryb -urY -dHx -csl +hod +aUg +bid +hLL +rcw +tmH +hUk +irg +uqV +aXu +sbI ugV xfD cpy fjr fjr -wsX -ofd -oWV +lCm +uJK +oHv xeg qGK -oWV -ofd -ubH -vXc +oHv +uJK +ykz +vyB yiM yiM yiM @@ -81283,30 +69152,30 @@ yiM sMa yiM vXc -lSq +lub trZ -nXV -wbP -xRq -sDa -hCV +mcz +xsJ +tjH +imD +tXO trZ -bKO +fwS yiM yiM vXc vXc -rOP +gYu rMF tSL -cWY -xJI -yfS -nds -xNR -xNR -xNR -bAc +eZP +iTg +oGH +sKk +qld +qld +qld +nZf tSL tSL gbB @@ -81324,48 +69193,48 @@ tOo tOo tSL dGD -lyD +qRh mPr hFX -bCy -tOo +iTK +bYV wIr wIr -hwa -qTr -clR -dne +tWO +hca +qCl +pFq wIr wIr -dGD -lyD -mPr -mPr -mPr -mPr -mPr -mPr -nax -nax -mPr -mPr -mPr -bCy -dGD +ccv +lkG +guz +guz +guz +guz +guz +guz +guz +guz +guz +guz +guz +xoL +oFs wIr wIr -epq -tsM -aPu -cDx +wOS +bfG +hmn +gfg wIr wIr -qxf -qxf -wfP -jJF -bPJ -bPJ +usp +usp +ogk +rKX +dCk +dCk cpy cpy bMX @@ -81377,99 +69246,99 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -yeS -oML -xho +lfu +rDX +qWq +qWq +qWq +fEo +tij saC saC -otQ -otQ -xho -uAd -dEk -xho -xho -yeS -jKu -xho -otQ +lhj +lhj +reR +kvS +hjZ +eWx +eWx +tNx +aUv +tij +lhj saC saC tiQ -gxl -hai -hmD -iKN -hGU -hTd +yhq +mqr +bue +iCV +kgf +fHd hDy -iyC -xuU -txs -uHn +xam +xEF +hpx +qFj jBy uAm -mKQ +jyB saC saC saC saC uAm iAv -cYB -gbo -bBJ -iuC -jqL -jjj -jqL -gbo -aIM -bBJ -qYM -bBJ -jmX -mlR +qIK +dzy +kac +lXO +lKW +xhN +lKW +dzy +qji +kac +wsV +kac +hfx +pvv iAv iAv -joJ -fBg -oDj -joJ +pWU +aRf +oLc +pWU iAv iAv alx -ylm +cAa vjW hdu nCa nCa -nCa -nCa -nCa -gtS -oVO +yhK +yhK +yhK +iSf +wUK nQx -crH +pKS xtb xtb xtb -rMb -skQ +ydo +uXm xtb xtb xtb xtb xtb -rMb -skQ +ydo +uXm xtb xtb -tvO +neY fjr fjr cpy @@ -81477,31 +69346,31 @@ cpy cpy xDz bAn -crH -yjD -mIa -rSQ -iaD -rmk -mlY -cqL -oQV -ncs -vmM +pKS +ccV +bSc +uRK +mwd +jAL +vYP +buV +ize +iON +khu fjr fjr cpy cpy fjr -crH +lCm pQE pQE -oFN -cXm +eBR +oOw pQE pQE -spo -vXc +ykz +vyB yiM yiM iBY @@ -81510,61 +69379,61 @@ yiM sMa vXc umf -lSq +lub trZ -iui -gXL -oVA -ljW -xMu -bvK -bKO +jRl +iDU +svN +wrK +drX +unn +fwS yiM yiM vXc vXc -cys +kTY rMF tSL tSL -kru -vZm -qqW -mjC -cVv -wXq +wYn +nXi +bSB +eAj +ngB +lGF tSL tSL rMF -xyN -xyN -xyN -xyN -xyN -xyN -xyN -xyN -xyN -xyN -ffo -oIu -oIu -oIu -lyD +kdM +kdM +kdM +kdM +kdM +kdM +kdM +kdM +kdM +kdM +dmk +guz +guz +guz +qRh mPr mPr hFX hFX -bCy -bYV +mOd +ebI wIr wIr -bZV -pSj +adf +nFv wIr wIr -rZK -lyD +eHm +vfE mPr mPr mPr @@ -81578,20 +69447,20 @@ mPr mPr mPr mPr -bCy +iTK tOo wIr -vLI -uoA -srk -vLI +kXt +uvP +bCR +kXt wIr -bPJ -djL -wfP -wfP -wfP -bPJ +dCk +tJO +ogk +ogk +ogk +dCk cpy cpy cpy @@ -81604,40 +69473,40 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -yeS -oML +lfu +rDX +qWq +qWq +qWq +fEo saC saC saC saC -otQ -xho -uAd -dEk -yeS -yeS -yeS -jKu -xho +lhj +tij +rDX +uon +qWq +qWq +qWq +fEo +tij saC saC saC tiQ -gxl +yhq gYT -xdF -iKN +ufl +iCV hDa -hTd +fHd hDy -izY -xeG -xZw -uHn +bqb +qve +mab +qFj uAm uAm klW @@ -81647,56 +69516,56 @@ saC saC uAm lLA -qeJ -mQt -idk -cMW -hZO -mPe -sgq -lFa -iLn -eZb -nQO -qAS -nQO -ahs -gJK -bzv +lQh +uEZ +vmV +cvE +ulA +xCq +qMp +poP +aaZ +gCb +soz +sVn +soz +gIK +uCs +kwE eLU -oXk -bWQ +ajC +tHG mjF -gXI -joJ -urp -hTf -nYz -nYz -nYz -nYz -nYz -nYz -taS -vjW -oxt +oXG +pWU +ifO +gWI +kPI +kPI +kPI +kPI +wjD +wjD +xJM +sjY +qYi jDO -sSn -hhD -hhD -rxu -lnK -smY -kwc -hhD +htG +xWa +xWa +kjG +bGZ +azH +lTL +xWa ahP qDL -nqy -uLp -vlN -utd +uiw +npz +oTy +vIi qDL -tEJ +xIA fjr cpy cpy @@ -81704,31 +69573,31 @@ cpy cpy cpy dBQ -sSn -xhz -hhD -xhz -nHM -oMO -hhD -hhD -lQA -fRw -fUc +htG +xkS +xWa +xkS +oev +eVO +xWa +xWa +uFJ +uVB +ifZ fjr cpy cpy cpy fjr -crH -ofd -otj +lCm +uJK +ohp uPy uMO -rmi -ofd -spo -vXc +uvZ +uJK +ykz +vyB yiM yiM qCY @@ -81737,32 +69606,32 @@ yiM puY vXc umf -lSq +lub trZ -kkS -xMu -jUW -xMu -wrg +lfc +drX +sbH +drX +cAg trZ -bKO +fwS yiM vXc vXc vXc wYa -pUv +wAP gbB tSL tSL -fGv +nkA tSL tSL -ibW +uyL tSL tSL rMF -sql +bAL yiM yiM vXc @@ -81773,7 +69642,7 @@ umf umf vXc vXc -ffo +dmk nax nax nax @@ -81783,15 +69652,15 @@ mPr mPr hFX hFX -bdL -rQg -hYL -pwW -jmv -hYL -rQg -vdp -mPr +bAF +rIY +cqC +kid +umq +cqC +rIY +cVk +jhi mPr tNc gUj @@ -81806,19 +69675,19 @@ mPr mPr mPr mPr -bCy -oIu -oIu -owe -oIu +iTK +guz +guz +jFW +guz tOo -bPJ -bPJ -oCW -wfP -wfP -wfP -bPJ +dCk +dCk +kNu +ogk +ogk +ogk +dCk cpy cpy cpy @@ -81831,77 +69700,77 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -yeS -cCQ +lfu +rDX +qWq +qWq +qWq +uEw saC saC saC saC saC saC -aut -ejo -dOw -dOw -dOw -fda +uZh +aHF +wCh +wCh +wCh +xgG tiQ tiQ tiQ saC tiQ -gxl -hai -xdF -iKN -uFG -hTd +yhq +mqr +ufl +iCV +xim +fHd hDy -iBs -oQs -jcq -uHn -kib -kjU +pqx +klk +iLL +qFj +uGc +gdn saC saC saC saC -mKN +tAK lko lLA -jqL -tNT -mvI -pZy -wAB +lKW +ebA +rvD +mtA +aiI jUY -qUz -rtw -idk -gNs -mCx -ham -jqL -jeb -fBg -mEp +mys +gWQ +vmV +vai +kGf +jPf +lKW +lzc +aRf +pXf myz -smr -kri +bew +kmf kEj -ldy -joJ -gMe -jkO +jXS +pWU +gWI +gWI oUq oUq -tVa -tVa +qrT +qrT oUq oUq oUq @@ -81916,14 +69785,14 @@ iKo fjr fjr fjr -crH -uep -utd +pKS +iID +vIi uLw vlX -utd -uep -tvO +vIi +iID +neY fjr cpy cpy @@ -81947,15 +69816,15 @@ cpy cpy cpy fjr -crH -ofd -qSk +lCm +uJK +ufp xeg qGK -qSk -ofd -spo -vXc +ufp +uJK +ykz +vyB yiM yiM qCY @@ -81964,22 +69833,22 @@ yiM yiM yiM vXc -lSq +lub trZ -xnu -cia -oVA -cia -tEC -hVw -bKO +dBt +fAZ +svN +fAZ +pHg +qjk +fwS yiM vXc vXc vXc wYa umf -pUv +wAP rMF tSL rMF @@ -81988,7 +69857,7 @@ tSL rMF tSL rMF -sql +bAL yiM yiM yiM @@ -82000,7 +69869,7 @@ umf vXc vXc yiM -ffo +dmk nax nax mPr @@ -82010,15 +69879,15 @@ mPr mPr mPr hFX -bdL -rQg -hYL +bAF +rIY +cqC xgH tkf -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi mPr tNc nax @@ -82038,14 +69907,14 @@ mPr kOa jyM nax -mnb +hDp ouj -bPJ -pdp -wfP -wfP -wfP -bPJ +dCk +oKa +ogk +ogk +ogk +dCk cpy cpy cpy @@ -82058,10 +69927,10 @@ cpy cpy cpy tiQ -cdP -dwP -dEk -dEk +oDn +pVI +uon +uon saC saC saC @@ -82072,64 +69941,64 @@ saC saC saC saC -otQ -eyh -cRN -eQu +lhj +lhj +lhj +lhj saC saC saC saC tiQ xce -hdd -xdF -hBD -nbD +mDD +ufl +pYZ +uKz xce hDy -fTS -iOO -jdl -jRY -xZw -kqX +nDX +wtZ +hmB +lpW +mab +vIH saC saC saC -xrA -mOl +fhw +ijc uAm lLA ntL -jqL -jwx -qce +lKW +pyt +eSh iAv iAv -viI -iOw -kzG -bag -dtR -eTn -mlR +odG +mZb +ptN +sNy +mmC +gLr +pvv iAv iAv iAv -joJ -fBg -iby -joJ +pWU +aRf +glS +pWU iAv iAv iAv oUq oUq -oAY -lDk -uFA -qrU +ezQ +gCa +vmS +vxp oUq oUq oUq @@ -82143,14 +70012,14 @@ ugV fjr fjr fjr -crH -uep -utd +pKS +iID +vIi uNt vlX -utd -uep -tvO +vIi +iID +neY fjr cpy cpy @@ -82159,14 +70028,14 @@ fjr fjr hNR ugV -xRK -emH -uQa -gLy -aAX -emH -uvJ -fvc +hWr +riV +tzX +xsW +uIq +riV +wXG +lbv fjr fjr fjr @@ -82174,15 +70043,15 @@ prs cpy fjr fjr -lPv -ofd -aOP +gWP +uJK +kpS xeg qGK -qSk -ofd -spo -yiM +ufp +uJK +ykz +vyB yiM yiM qCY @@ -82191,15 +70060,15 @@ yiM yiM yiM yiM -lSq +lub trZ -gCE -rNF -wTf -xMu -mcf -hVw -bKO +vWw +vHe +lhu +drX +kcM +qjk +fwS yiM yiM vXc @@ -82207,14 +70076,14 @@ vXc wYa vXc umf -pUv -jbv -xyN -xyN -xyN -xyN -xyN -sql +wAP +jae +kdM +kdM +kdM +kdM +kdM +bAL yiM yiM yiM @@ -82227,7 +70096,7 @@ vXc yiM yiM yiM -ffo +dmk nax nax mPr @@ -82237,15 +70106,15 @@ mPr mPr mPr mPr -bdL -rQg -hYL +bAF +rIY +cqC xgH tkf -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi mPr mPr iCb @@ -82265,14 +70134,14 @@ mPr tKB nax nax -mnb +hDp gmu -nYU -geT -wfP -jJF -jJF -bPJ +fxV +pye +ogk +rKX +rKX +dCk cpy cpy cpy @@ -82285,11 +70154,11 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -bXA +lfu +rDX +qWq +qWq +lEx saC saC saC @@ -82300,7 +70169,7 @@ saC saC saC saC -oEw +qWq saC saC saC @@ -82308,24 +70177,24 @@ saC saC saC tiQ -gxM -uFG -xdF -iKN -hHN -hON +vsv +xim +ufl +iCV +eXh +ude hDy -fTS -iOO -jds -jjo -xZw -xZw +nDX +wtZ +jWs +iwA +mab +mab saC saC -kBJ -kXB -mSc +dPL +hvV +dyL uAm uAm lLA @@ -82334,30 +70203,30 @@ iAv iAv iAv iAv -fBg -unU -wBR +aRf +qDu +xCD iAv iAv -uGK +sJv iAv iAv iAv iAv -iyE -tfW -rdf -vju -vju -rKS -vju -xJt -lbo -lbo +raN +fTg +xaq +muO +muO +pKO +muO +oWz +rRR +rRR kXY kXY -lDk -qrU +gCa +vxp oUq oUq fjr @@ -82370,14 +70239,14 @@ ugV ugV fjr rxI -crH -uep -vgI +pKS +iID +bQe uNt vlX -vgI -uep -tvO +bQe +iID +neY fjr fjr cpy @@ -82385,7 +70254,7 @@ fjr hxy iKF kdo -xRK +hWr yjp sjy sjy @@ -82394,22 +70263,22 @@ sjy sjy sjy evQ -tNr +cnH fjr fjr fjr fjr fjr nVN -xlL -ofd -qSk +rbK +uJK +ufp xeg qGK -rqs -ofd -spo -yiM +sLS +uJK +ykz +vyB yiM yiM bYS @@ -82418,15 +70287,15 @@ yiM yiM yiM yiM -lSq +lub trZ -iLc -ljW -adG -ljW -uVH -hVw -bKO +kaB +wrK +che +wrK +mkx +qjk +fwS yiM yiM yiM @@ -82435,7 +70304,7 @@ wYa vXc vXc vXc -jbv +jae yiM yiM yiM @@ -82454,7 +70323,7 @@ vXc vXc yiM yiM -ffo +dmk nax mPr mPr @@ -82464,15 +70333,15 @@ mPr mPr mPr mPr -bdL -rQg -pfD +bAF +rIY +uix qEk tkf -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi mPr nax bjX @@ -82492,14 +70361,14 @@ nax pCv nax mPr -mnb +hDp gmu -bPJ -tlB -wfP -jJF -bPJ -bPJ +dCk +dOj +ogk +rKX +dCk +dCk cpy cpy cpy @@ -82512,12 +70381,13 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -yeS -jJa -gTw +lfu +rDX +qWq +qWq +iDA +xgG +saC saC saC saC @@ -82527,7 +70397,6 @@ saC saC saC saC -qpD saC saC saC @@ -82535,24 +70404,24 @@ saC saC saC tiQ -hTg +eKl gYT -xdF -hCv -hHY -hON +ufl +lha +vSq +ude hDy -fTS -xeG -jdD -jjU -jCq -xZw -xZw -saC -kBL -kAI -fTS +nDX +qve +ueH +tDN +sUR +mab +mab +saC +hlD +jLi +nDX hao uAm uAm @@ -82561,8 +70430,8 @@ bzC bzC bzC iAv -fBg -fBg +aRf +aRf iAv iAv lLA @@ -82570,21 +70439,21 @@ lLA xUq xUq iAv -mOh -vju +sPA +muO nMl wrc mjF mGb -eDD -rvg -fAt -spB +cNe +tLH +uiI +rAb kXY nFc rqE kXY -wRQ +xKb oUq oUq oUq @@ -82597,63 +70466,63 @@ ugV ugV ugV rxI -crH +pKS qDL -vgI -uOL -vni -utd +bQe +rvK +dJy +vIi qDL ahP -tNr +cnH fjr fjr fjr jDO fjr ugV -crH +pKS sjy sjy -asZ -tEk -loB -lDC +dth +tJU +rKj +ood sjy sjy ahP -emH -emH -emH -emH -kHZ -nIF -ouO +riV +riV +riV +riV +qhj +oyL +eFy pQE -rqs -iqg -wwX -rqs +sLS +jgM +omV +sLS pQE +mMo vSN -cWT -cWT -cWT -cWT -cWT -cWT -kEZ +sxF +sxF +sxF +sxF +sxF +sCE yiM yiM -lSq +lub trZ -qLJ -qhm -cia -qhm -cia +mvW +xNF +fAZ +xNF +fAZ trZ -bKO +fwS yiM yiM vXc @@ -82662,7 +70531,7 @@ tDd rXb rXb rXb -oqr +xuR rXb rwE rwE @@ -82681,7 +70550,7 @@ umf vXc vXc yiM -ffo +dmk nax nax mPr @@ -82691,15 +70560,15 @@ hFX hFX mPr mPr -bdL +bAF wIr wIr -hTX -dgY +pPJ +byS wIr wIr -vdp -sxg +cVk +avq mPr bjX yhj @@ -82719,13 +70588,13 @@ nax pCv nax mPr -mnb +hDp eDq -bPJ -gJr -wfP -wfP -bPJ +dCk +rwW +ogk +ogk +dCk cpy cpy cpy @@ -82739,13 +70608,13 @@ cpy cpy cpy tiQ -vDV -uAd -yeS -enG -gTw -xho -xho +lfu +rDX +qWq +oNi +xgG +tij +tij cNV saC saC @@ -82753,35 +70622,35 @@ saC saC saC saC -otQ -eVg -otQ +lhj +lhj +lhj saC saC saC saC saC tiQ -hTg -uFG -qTH -hye -hFS -hTg +eKl +xim +bqu +oEO +wYr +eKl hDy saC -xeG -xZw -jTb -xZw -xZw -xZw -kzc -kCM -kWa -mXn -fTS -lqY +qve +mab +vTG +mab +mab +mab +czP +bRH +wSI +iLm +nDX +ppc saC saC saC @@ -82796,22 +70665,22 @@ lLA lLA lLA xUq -yaw -vju -qRw -vju -vju -oLK -tKR -gxb -dPl -tVa -dio +toe +muO +oHk +muO +muO +hxX +yjx +gQb +lvm +qrT +oou kXY nFc dwI kXY -lDk +gCa oUq oUq rxI @@ -82820,33 +70689,33 @@ fjr fjr ugV ugV -xRK -emH -emH -emH +hWr +riV +riV +riV yjp beB beB -uPk -vnB +aWa +gdZ beB wrC wrC xXR -emH -emH -tNr +riV +riV +cnH dBQ fjr -xRK +hWr uuy sjy -uxn -ckT +klM +jiI jQk cXF -kYM -diZ +fFl +dva sjy sjy sjy @@ -82858,101 +70727,101 @@ sjy sjy kqb kqb -mUS -egP +hbW +cMZ kqb kqb lVp lVp -qHp -uKj -fdZ +oXt +xIG +lew lVp lVp aHH -kEZ +sCE yiM -lSq +lub trZ -hVw +qjk trZ -hVw +qjk trZ -hVw +qjk trZ -bKO +fwS vXc vXc vXc -wdy -iPR -iPR -iPR -iPR -jbv -iPR -iPR -iPR -iPR -iPR -iPR -iPR -iPR -wwJ -iPR -iPR -iPR -iPR -iPR -iPR -iPR -iPR -iPR -ffo -yhR -yhR -yhR -yhR -yhR -gGM +oTE +tNN +tNN +tNN +tNN +jae +tNN +tNN +tNN +tNN +tNN +tNN +tNN +tNN +cMg +tNN +tNN +tNN +tNN +tNN +tNN +tNN +tNN +tNN +dmk +xRp +xRp +xRp +xRp +xRp +gjv hFX hFX mPr -bdL +bAF wIr wIr -bQN -dgY +pXE +byS wIr wIr -vdp -mPr +cVk +jhi mPr aPe ylo ylo -iTY -hJQ +gbX +dLA ylo ylo hdG mPr mPr -tEu -yhR -yhR -yhR -yhR -nkX -yhR -yhR +mkv +xRp +xRp +xRp +xRp +bMY +xRp +xRp tOo -bPJ -bPJ -pHi -wfP -uIY -bPJ +dCk +dCk +kuy +ogk +rad +dCk cpy cpy cpy @@ -82966,12 +70835,12 @@ cpy cpy cpy tiQ -vDV -uAd -jJa -gTw -xho -xho +lfu +rDX +iDA +xgG +tij +tij cNV cNV saC @@ -82979,38 +70848,38 @@ saC saC saC wLp -kbV -kbV -gPq -kbV -kbV +xdq +xdq +xdq +xdq +xdq saC saC tiQ saC tiQ tiQ -hdK -hmO -uFG +dYu +pce +xim hIS -hTo +fMq hDy saC saC -xZw -jTB -xWc -xWc -xWc -gnx -xWc -xWc -mXA -ick +mab +fmR +isN +isN +isN +gfo +isN +isN +xBI +cSZ lvH -lAA -ugi +gdy +caM saC saC saC @@ -83033,12 +70902,12 @@ iAv iAv iAv oUq -jfx +bIw nMX rmA nMX nMX -rRA +kRL oUq oUq rxI @@ -83047,70 +70916,70 @@ fjr ugV ugV ugV -crH +pKS beB beB beB beB beB -bFC -saS -vnX -vMM +uYS +ewh +cpw +nlI wrC wrC wrC wrC wrC -tvO +neY jDO fjr -crH +pKS sjy sjy -kSZ -kNw +nxz +tZr urM xxs uDb -uVj +qAw sjy sjy -ydD -gOC -qqD -pWk -wua -wua +svg +gxP +pjZ +vzs +fqq +fqq sjy -kfw -csv +aud +pmM lkj lxL -otT -ogK +iAx +mCD lVp lVp -kjs -wGG -wGG -xaM +vdD +wsg +wsg +rGJ lVp lVp -jzu +dIg vXc -wxB -sKc -sKc -sKc -sKc -sKc -sKc -sKc -sIN +aQI +aKp +aKp +aKp +aKp +aKp +aKp +aKp +owK vXc vXc -wdy +oTE rMF jmG jmG @@ -83125,9 +70994,9 @@ jmG rMF rMF jmG -gEk -six -six +joX +ats +ats jmG rMF rMF @@ -83142,44 +71011,44 @@ tOo jmG jmG pqR -gGM +gjv hFX mPr -bdL -rQg -hYL +bAF +rIY +cqC xgH tkf -pfD -rQg -vdp -mPr +uix +rIY +cVk +jhi mPr uXp ylo -fCW +dAy yfu nXO -hJQ +dLA ylo hdG mPr -tEu +mkv tOo jas jas jas -gSn -xzV -gSn +iUb +irk +iUb jas jas jas jas -qPL -wfC -uzr -bPJ +pYX +qhp +ukH +dCk cpy cpy cpy @@ -83193,52 +71062,52 @@ cpy cpy cpy tiQ -vDV -aut -gTw -xho +lfu +uZh +xgG +tij cNV cNV cNV -fxq -fxq +kdD +kdD saC saC wLp -qUQ -qUQ -qUQ -ezj -cSh -feF -qUQ -qUQ -qUQ +hwT +hwT +hwT +hwT +hwT +jtX +hwT +hwT +hwT saC saC tiQ -eam -eam -eam +hJO +hJO +hJO tiQ -gxM +vsv tiQ saC saC saC -xZw -xZw -rEV -kmg -kzc -xZw -xZw -xZw -xZw -xZw -xZw -uHn -kfF +mab +mab +ixc +stE +czP +mab +mab +mab +mab +mab +mab +qFj +odH saC saC saC @@ -83248,24 +71117,24 @@ saC saC saC saC -tTv -tTv -tTv -tTv -tTv -tTv -tTv -tTv -tTv -tTv -tTv oUq -hWC -vcF -vsy -wUp -wUp -rXq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +nVd +rQN +tev +oLy +oLy +tbL oUq oUq oUq @@ -83274,29 +71143,29 @@ ugV ugV ugV ugV -crH +pKS beB hZf -tmC -tDQ -ueR -uur -uQg -eHn -mvR +bar +wdA +eYH +jBt +wFE +ylI +tZV wrC -wvO -wSr -jNY +myu +cTD +tbR wrC -tvO +neY jDO -xRK +hWr qxe sjy sjy sjy -lea +cLd sjy tpa tpa @@ -83308,23 +71177,23 @@ kBk iJu uDs jUg -uVj +qAw sjy -ogK +mCD oud dbQ lxL nTD -wIL +uxR lVp -lWh -hLm +hem +wwF oXa awj -cTz -hVu +haA +tnl lVp -jzu +dIg vXc vXc yiM @@ -83336,7 +71205,7 @@ yiM vXc vXc vXc -wdy +oTE rMF jmG jmG @@ -83369,42 +71238,42 @@ jmG jmG jmG jmG -xAR +jhi hFX mPr -bdL -rQg -hYL +bAF +rIY +cqC xgH tkf -hYL -rQg -vdp -lbH +cqC +rIY +cVk +fJF bwF aPe -nnG +uzQ yfu yfu yfu -vMX +rQP ylo hdG jAd -mnb +hDp jas jas -dZr +kgP jas -xTj +oka vjr -aRi +ibx jas -aCS -rbL +mWY +vSZ jas jas -iJx +ayV jas jas cpy @@ -83420,33 +71289,33 @@ cpy cpy cpy tiQ -vDV -xho -xho +lfu +tij +tij cNV cNV cNV cNV -cSb -dcD -moZ -moZ -moZ -dDC -dDC -dDC -dDC -dDC -fhQ -fpB -dDC +wfF +iWA +xNh +xNh +xNh +edB +edB +edB +edB +edB +edB +edB +edB saC saC saC tiQ -iBI -xmD -xCS +pJB +twa +kzi tiQ tiQ tiQ @@ -83454,19 +71323,19 @@ saC saC saC saC -xZw -xZw -xZw -kzc -xZw -xZw -xZw -xZw -xZw -xZw -uHn -rEV -aKQ +mab +mab +mab +czP +mab +mab +mab +mab +mab +mab +qFj +ixc +wmV saC saC saC @@ -83478,21 +71347,21 @@ saC saC saC saC -tTv -men -xVB -onM -men -iQb -pXh -tTv oUq -tTl +xOs +coI +oWc +xOs +fKn +aTQ +oUq +oUq +fpx bJN jbn kXY kXY -jWZ +qHu oUq oUq ugV @@ -83501,57 +71370,57 @@ ugV ugV ugV ugV -crH +pKS beB sLa -tmC -nTx -nTx -nTx -rhF -eHn -jNv -wbL -jyx -jyw -jPk +bar +xMt +xMt +xMt +nbe +ylI +gxi +vsz +lEX +eel +ilS wrC -tvO +neY jDO -crH +pKS sjy sjy -mhn -sDY -kTm -nQX -ort -wdi -wdi +vMa +dqm +dXp +xVL +eCV +gAl +gAl sjy sjy -jmd -eWF -oLW -mbF -jft -xbj +qLE +ekk +nTW +scK +lhB +xEO sjy -mNR +lXE xYx oLd wob nTD -izj +ncy lVp -lWh +hem vAn yca yca wSt -gYX -roL -jzu +fvv +paZ +dIg vXc gsP qtN @@ -83562,7 +71431,7 @@ yiM yiM yiM vXc -wdy +oTE rMF jmG jmG @@ -83583,53 +71452,53 @@ uKS ild ild jmG -yba -eAY +dtK +gpD unS jwM -mwT -wFT +pNM +hnT qvN gwP -hOB -aDf +vPp +lsy dUW dUW jmG -xAR +jhi mPr mPr -bdL -rQg -pfD +bAF +rIY +uix qEk oLa -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi qbG aPe -nnG +uzQ yfu yfu yfu -wHj +ttm ylo hdG mPr -qjM +hnU jas -col +ujN vpe aAI -ozw +irZ wwc -ozw +irZ aAI -iBo +rne eso -sCi +umz jas nQu tms @@ -83647,33 +71516,33 @@ cpy cpy cpy tiQ -eVg -otQ -otQ +mNC +lhj +lhj cNV cNV cNV cNV -qUQ -jth -kbV -kbV -ear -tjg -tjg -tjg -kbV -tjg -tjg -gPq +hwT +luN +xdq +xdq +bUy +uAj +uAj +uAj +xdq +uAj +uAj +xdq saC saC saC saC tiQ -dli -dli -dli +oMG +oMG +oMG tiQ tiQ tiQ @@ -83682,103 +71551,103 @@ saC saC saC saC -xZw -xZw +mab +mab saC -xZw -xZw -xZw -xZw -xZw -xZw -uHn -xZw -kfF +mab +mab +mab +mab +mab +mab +qFj +mab +odH saC saC saC saC saC saC -mqc +hMm saC saC saC -gYK -say -khm -cwr -mLI -pLP -pGe -voX -xED -pVH -lDk +iBa +wfB +xGL +lDH +bzR +kHO +ijY +cYa +gcl +cLn +gCa har jbn awI kXY -lbo -lbo -tVa -emH -emH -emH -emH -emH -emH +rRR +rRR +qrT +riV +riV +riV +riV +riV +riV ahP beB sLU -tmX -iJW -ueT -uFe -rhF -nTx -jNv +azX +jMQ +mnP +qID +nbe +xMt +gxi wrC -occ -wTu -htN +vLT +iUG +dKZ wrC jBU -mGN +ttO nKm sjy -hOL -ebn +cAR +kPt qGC azl qGC mqH mqH -ebn +kPt sjy sjy -uqx +rzZ sjy -yat +jXi sjy -uqx +rzZ sjy sjy -izj +ncy xYx oLd wob nZd -kfw +aud lVp -hyE +cON jfO yca owg jfO -ogE -rrV -jzu +eri +sOK +dIg vXc uWD xkO @@ -83789,7 +71658,7 @@ yiM aOi yiM vXc -fXx +caL jmG jmG ubJ @@ -83810,53 +71679,53 @@ vVS ild ild jmG -yba -tUg +dtK +cAP vVS afI -oCi -lfU +fhk +jLl qvN eHF -hOB -aDf +vPp +lsy jwM nBP jmG -xAR +jhi mPr mPr -bdL -rQg -hYL +bAF +rIY +cqC qEk oLa -hYL -rQg -vdp -dyS +cqC +rIY +cVk +uMF nax glO vOb -fCW +dAy yfu yfu -eaG +vyl ylo nJr mPr -mnb +hDp jas -upc +pQw vpe aAI -ozw +irZ wwc -ozw +irZ aAI -egE +uei vpe -wHz +vJW jas nQu bWv @@ -83874,33 +71743,33 @@ cpy cpy cpy tiQ -wvV -xLm -xLm +qii +oyp +oyp dOa -bDw -enT +aZc +aQo dOa -cuF -jth -tjg -tjg -ear -tjg -tjg -tjg -kbV -tjg -tjg -gPq +aRm +luN +uAj +uAj +bUy +uAj +uAj +uAj +xdq +uAj +uAj +xdq saC saC saC saC tiQ -lAK -hmV -vIS +iQq +qLY +jGw saC saC saC @@ -83912,111 +71781,111 @@ saC saC saC saC -iOl -kmg -xZw -xZw -xZw -xZw -uHn -xZw -xZw -pNv +mZH +stE +mab +mab +mab +mab +qFj +mab +mab +qpX saC saC saC saC -pwB +hFJ kwg kwg saC kwg -gha +fky aYd -vxD +mvp kwg kwg kwg -gha +fky kXY -xED -pyc +gcl +aJQ kwg iZS -jBr -mPs -oYu +vDh +wES +fig kXY -lbo +rRR oUq beB -dhQ -dhQ -dhQ -dhQ +vEH +vEH +vEH +vEH beB beB beB sMY -tnK -tEM -tEM -eHn -vBI -nTx -mvR +dOg +myF +myF +ylI +vMx +xMt +tZV wrC wrC wrC -dNK +lGN wrC -jDy +drv mJS -qbi +hnW sjy -whz +bMA jpc sAU den xDP awK mqH -ebn +kPt sjy -nbB -jft -mBr -nee -leh +oDA +lhB +mQx +pnY +rKs xxs -dzd +tGF sjy -ogX +hQS asF oLd wTr tfi -tYx +wAh lVp -eDi +wkM wSt pni yca gXT -gif -isA -jzu +uHe +hFV +dIg vXc uWD xkO -vZn -waD +czt +ajq qJN vXc vHN yiM vXc -fXx +caL jmG ubJ ubJ @@ -84037,53 +71906,53 @@ vVS ild rGD jmG -etN -hOB +clL +vPp vVS ild -vBd -hOB +cEY +vPp jwM jwM -vBd -vBd +cEY +cEY fhu brk jmG -xAR +jhi mPr mPr -bdL -rQg -hYL +bAF +rIY +cqC qEk oLa -hYL -rQg -vdp -gbW +cqC +rIY +cVk +cen lty aPe ylo ylo -nrA -iTY +vEl +gbX ylo ylo tyc xSQ -vOt +ycQ jas -gWx +xmX eso jas -aRi +ibx wwc -ozw +irZ jas -tKf +hOr eso -hrU +xCH jas nQu nQu @@ -84101,33 +71970,33 @@ cpy cpy cpy tiQ -aVo -xLm -xLm -aQU -xLm -xLm +cYj +oyp +oyp +uRn +oyp +oyp dOa -qUQ -jth -tjg -tjg -ear -kbV -kbV -kbV -xiY -fKt -fKt -vzd -tQw +hwT +luN +uAj +uAj +bUy +xdq +xdq +xdq +ouB +tZv +tZv +bUy +kmc saC saC saC saC -xmD -hna -yiu +twa +gof +xFe saC saC saC @@ -84139,100 +72008,100 @@ tiQ saC saC saC -iOG -udR -udR -nqE -nqE -udR -iKw -udR -udR +oke +qha +qha +vtG +vtG +qha +uEk +qha +qha saC saC saC saC -sse +lxJ kwg mOI pcH pcH pcH -hSQ +gPo pco -jBY +hKg pcH sGF pcH -hSQ +gPo nMX -lbt -hzw +bJU +tlD pcH pcH -jEa -kHd -kgR +hvg +jdy +aXE kXY -llJ +qbs oUq -nrT -mHZ -bJa -bJa -mHZ -ryT +drb +xrU +maH +maH +xrU +xcp beB -pVX -sNm -ozt -iJW -ueT -uFe -vBI -nTx -mvR -wcp +cjr +wQr +qvl +jMQ +mnP +qID +vMx +xMt +tZV +ppx wrC -aEM -htN +skp +dKZ wrC -fIr -mLb -urY +hUk +wvR +uqV sjy -whz +bMA qGC eSx dsA mqH asz xDP -iNX -sPp +wDG +kwY ndb vbX vbX vZy uDb xxs -nKS +ctS sjy -bSs +uzw fJq gZL lxL pli -ohw +cMx lVp -lnj +ydh jfO jfO yca jfO -uaH -isA -jzu +wJs +hFV +dIg vXc uWD xkO @@ -84243,7 +72112,7 @@ vXc vHN yiM vXc -fXx +caL jmG ubJ ubJ @@ -84277,18 +72146,18 @@ ild ild dco jmG -xAR +jhi mPr mPr -bdL -rQg -dni +bAF +rIY +yiP qEk tkf -pfD -rQg -dQQ -nax +uix +rIY +avx +jhi nax uvg cfT @@ -84299,19 +72168,19 @@ ylo oSA jnF mPr -mnb +hDp jas -vcJ +wkX fhl -dZw +vub xcX ueg xcX -dZw +vub kwj kwj cxo -sQY +xRt nQu nQu jas @@ -84328,149 +72197,149 @@ cpy cpy cpy tiQ -aVt -beb -bDS -bDS -cqr -cDh +wlq +wWo +owu +owu +uPJ +oTF cKp -qUQ -jth -tjg -tjg -ear -kbV -kbV -xiY -xiY -tjg -tjg -gPq -tjg -tjg -hJB -qUQ +hwT +luN +uAj +uAj +bUy +xdq +xdq +ouB +ouB +uAj +uAj +xdq +uAj +uAj +pbH +hwT vlq -xmD -hna -yiu -hLY +twa +gof +xFe +kwL saC saC saC saC -iDg -rXa +mKU +lnb tiQ tiQ tiQ saC -kDU -fTS -cOJ +oGS +nDX +fXj saC saC -aCR -hkT -fTS -fTS +scA +cGO +nDX +nDX saC saC saC -men -sse +xOs +lxJ kwg jkJ kwg -mmh -sQS -mPs -cim -mPs +lgC +gmk +wES +xUW +wES saC saC saC -fWD -iTX -xED -pex -lDk +liX +mbC +gcl +sHW +gCa kXY -kzd -pSK -kgR +kIk +bmh +aXE kwg -anb -hnG -jSU +cHs +bMh +lLu xDu xDu xDu raI -jSU -mji -ijE -nTx -eHn -eHn -nTx -nTx -vBI -nTx -vNy -mvR -jqV -jyx -xmN -fTK -kgQ +lLu +aRs +rab +xMt +ylI +ylI +xMt +xMt +vMx +xMt +xxB +tZV +klC +lEX +dIL +lpJ +jPG mLO -fIr +hUk sjy -wbC +nBk uUj kUo sjy -gqf +bpk lpY qGC -lWm +uWQ sjy -nKS -nKS -iGQ -dzd -dzd -kHy -nMt +ctS +ctS +kZL +tGF +tGF +qlY +jRn sjy -efT +chz lxL hnk xGf xGf -xiG -dtl -fCl +oFM +jWw +doT yca jfO jfO gLg -tZi +vkJ lVp -jzu +dIg vXc uWD xkO -mWa -waD +jCG +ajq qJN vXc eLG yiM vXc -fXx +caL jmG jmG dUW @@ -84486,36 +72355,36 @@ ild ild ild jwM -six +ats uKS jwM ild -six +ats eHF ild -qBB -vBd +oEI +cEY ild ild -vBd -vBd +cEY +cEY jwM ild gwP psF jmG -xAR +jhi mPr mPr -bdL +bAF wIr wIr -vzw -jmv +edO +umq wIr wIr -glV -mPr +uDz +jhi nax nax uvg @@ -84526,18 +72395,18 @@ jhe jnF mPr mPr -mnb +hDp jas -vcJ +wkX vjr jas -ozw +irZ wwc -aRi +ibx jas jas jas -uFO +ari jas nQu nQu @@ -84555,46 +72424,46 @@ cpy cpy cpy tiQ -aVF -bfn -tDR -tDR -tDR -cDo +yeV +rMM +cjJ +cjJ +cjJ +sDd cKp -qUQ -jth -tjg -tjg -xiY -xiY -saC -saC -xiY -kbV -kbV -caN -hgM -hgM -idn -cSh +hwT +luN +uAj +uAj +ouB +ouB +saC +saC +ouB +xdq +xdq +vSi +sIX +sIX +ooa +aUq oVt -dNn -hna -yiu -hLY +jbr +gof +xFe +kwL saC lmY -iBI -iQe -pfj -jjV -cuu -jVC +pJB +qLY +bxd +mHD +rLz +kcK tiQ tiQ -kEx -kWH +djS +trf tiQ saC saC @@ -84602,58 +72471,58 @@ saC uhx pwX pwX +qjG saC -saC -tTv -men -sse +oUq +xOs +lxJ iZS jkJ -wIx -jfH -men -iQb -tTv +tez +xTr +xOs +fKn +oUq bUN saC saC saC saC saC -tTv +oUq mVm -sBH +oGc kXY -wGq -mBL -giV +fqy +qDo +gbG pcH -jBY -fAt -ixs +hKg +uiI +uXy lxN lxN lxN fJg -ryj -qIy -jWV -izn -tnN -tEQ -tEQ -izn -uRt -eHn -vOj -jWV -wTn -wfK -xnk -vpk -urY +mZf +cqJ +mFk +qiB +oLx +nPT +nPT +qiB +mcm +ylI +diL +mFk +kLo +abY +oov +fBz +uqV mOE -fIr +hUk sjy sjy sjy @@ -84662,7 +72531,7 @@ sjy lhK nKo mqH -ybt +mnl sjy sjy sjy @@ -84673,20 +72542,20 @@ sjy sjy sjy kqb -ouG +prA bTT srJ lxL -tVN -myc -sEk +hxP +qNx +aZL yca yca wSt tjV -nKk +gGX lVp -jzu +dIg vXc uWD xkO @@ -84697,7 +72566,7 @@ vXc vXc yiM vXc -pUv +wAP rMF jmG jmG @@ -84713,11 +72582,11 @@ ldC ldC ldC iqw -cxK +ksr haY ldC ldC -cxK +ksr ldC ldC uqa @@ -84731,18 +72600,18 @@ ldC jtg liN jmG -xAR +jhi mPr mPr -bdL +bAF wIr wIr -pwW -jmv +kid +umq wIr wIr -vdp -mPr +cVk +jhi nax nax nax @@ -84753,16 +72622,16 @@ mPr mPr mPr mPr -mnb +hDp jas -fhA +lcJ aNr aAI -ozw +irZ wwc -ozw +irZ aAI -hBp +cMw eso vpe jas @@ -84782,45 +72651,45 @@ cpy cpy cpy tiQ -wvV -bgg -tDR -tDR -tDR -sCw +qii +tfS +cjJ +cjJ +cjJ +jid cKp -jur -jth -fsC -kbV -xiY -saC -saC -saC -ffr -xiY -kbV -gPq -fsC -kbV -hJB -qUQ +fLo +luN +mBK +xdq +ouB +saC +saC +saC +oDa +ouB +xdq +sIc +mBK +xdq +pbH +hwT pwX -knt +nja qjG -yiu -hLY -qJE +xFe +kwL +khz ujg -iCk -iQF -jef -vIS -pfj -xmD -xmD -tiQ -kEA +eIY +cAw +lQv +jGw +bxd +twa +twa +tiQ +abq seF tiQ saC @@ -84829,58 +72698,58 @@ saC yaj qjG qjG -saC -saC -tTv -nHg -hzV +qjG +pwC +oUq +xAn +qyL iZS jkJ -xLi -men -men -tTv -tTv -tTv +nMZ +xOs +xOs +oUq +oUq +oUq saC saC saC saC -tTv -tTv +oUq +oUq mVm -hrl +jKr kXY -oUE -ntQ -dNe +pUi +iNO +cKM kXY -lzb +jwS oUq -nrT -mHZ -bJa -mHZ -azF -ryT +drb +xrU +maH +xrU +mhz +xcp beB -ijJ -aNI -iGF -tEW -ueW -nqN -hLF -iKJ -vOA -wcq +duF +lWR +tzZ +kpX +hGL +sHx +dfO +opo +vDA +tav wrC -wTJ -xnP +qEC +ooA wrC -urY +uqV mOE -urY +uqV sjy sjy sjy @@ -84889,31 +72758,31 @@ sjy lhK azl mnU -xhu +bWS sjy -thb -uVj -kHU -iYO -wtK -chG -pgt +bZE +qAw +gAq +iBi +ltX +mPd +cbc sjy -ohL +udD lxL hnk lxL lxL -tVN -dtl -gDz +hxP +jWw +uwq jfO xXo lNs jfO -iqZ +hlC lVp -jzu +dIg vXc hxn eOE @@ -84925,7 +72794,7 @@ yiM yiM vXc vXc -pUv +wAP rMF jmG upr @@ -84954,22 +72823,22 @@ xPa iwF jwM ild -vBd -kbF -dUq +cEY +efv +fQm jmG -xAR +jhi mPr mPr -bdL -rQg -pfD +bAF +rIY +uix xgH tkf -pfD -rQg -vdp -mPr +uix +rIY +cVk +jhi mPr nax nax @@ -84980,18 +72849,18 @@ mPr mPr mPr mPr -iWh +uqE jas -kxz +edt vpe aAI -ozw +irZ wwc -ozw +irZ aAI -cwe +fwg vpe -oCs +xLa jas bWv nQu @@ -85009,64 +72878,64 @@ cpy cpy cpy tiQ -wvV -bgg -tDR -tDR -cqP -cEw +qii +tfS +cjJ +cjJ +vpx +kUX dOa -fxq -jth -tjg -tjg -xiY +kdD +luN +uAj +uAj +ouB saC saC saC saC -xiY -xiY -gPq -tjg -tjg -hJB -qUQ +ouB +ouB +sIc +uAj +uAj +pbH +hwT pwX -knt +nja qjG -yiu -hLY -qJE +xFe +kwL +khz ujg -iDg -iRV -yiu -xzu -jCQ -jWr -xmD -xmD -jVC -miH +mKU +gof +xFe +aZN +lQv +bxd +twa +twa +weB +kBY saC saC saC -qgx +alX yaj qjG qjG -qgx -saC -tTv -men -kUF -gWu -neI -xLi -men -tTv -tTv +jDL +pwC +oUq +xOs +qZk +mrp +uUH +nMZ +xOs +oUq +oUq oUq oUq oUq @@ -85076,19 +72945,19 @@ oUq oUq oUq oUq -uzD +dRl oeU kXY aYd kXY -lbo -sLc +rRR +mVd oUq beB -dhQ -dhQ -dhQ -evN +vEH +vEH +vEH +mJo beB beB beB @@ -85098,49 +72967,49 @@ beB beB beB beB -uam -vOR +wKf +qJd wrC sgT sgT sgT sgT -urY +uqV mOE -urY +uqV sjy -aUb +nAU aPN tIW sjy lhK azl qGC -aUL +xeQ sjy -ifw +uWC bRP xxs xxs szY wYE -lCx -dEY -xiG +cAh +qhG +oFM xGf hnk lxL xGf -xiG +oFM lVp -qdg +xPI yca xXo lNs yca -uaH -isA -jzu +wJs +hFV +dIg vXc yiM yiM @@ -85153,14 +73022,14 @@ vXc vXc vXc vXc -fXx +caL jmG biN -vBd -uYq +cEY +vrQ ild -vBd -vBd +cEY +cEY uKS jwM ild @@ -85181,22 +73050,22 @@ iwF xDD jwM amY -yjU -gug -cho +iAA +dON +uro jmG -xAR +jhi mPr hFX -bdL -rQg -hYL +bAF +rIY +cqC xgH tkf -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi mPr nax nax @@ -85206,19 +73075,19 @@ mPr mPr mPr mPr -fDv +mtx mjz jas -czu -mxo +xza +nYN jas -aRi +ibx vjr -ozw +irZ jas -yak -qbB -snR +nON +dLg +fzn jas tms nQu @@ -85236,138 +73105,138 @@ cpy cpy cpy tiQ -hlh -bhd -spI -spI -crm -cEx +uqY +mqZ +hdn +hdn +wqz +vUt dOa -fxq -jth -tjg -tjg +kdD +luN +uAj +uAj saC saC saC saC saC saC -xiY -gPq -tjg -tjg -hJB -qUQ +ouB +sIc +uAj +uAj +pbH +hwT vlq -knt -hna -yiu -hLY -vhr +nja +gof +xFe +kwL +pgF ujg -iFB -iSc -wTq -wTq -wTq -jWB +rtQ +tXt +pdR +pdR +pdR +hYS xYD kry -jjV -miH +ovo +kBY saC saC saC -pwC +ceB yaj qjG qjG -saC -saC -tTv -tTv -cUA +qjG +ceB +oUq +oUq +mbR nMX pco -jzB -tTv -tTv +syA oUq oUq -ucY -hGm oUq oUq +aiC +kxF oUq -lEd -fHf oUq -lag -lDk +oUq +aKm +gJF +oUq +dbV +gCa kXY aYd nPV -qpy +jAb oUq oUq -hhD -hhD -hhD -hhD -xFg -gHD +xWa +xWa +xWa +xWa +jEm +oDh ahP yjp wrC wrC -tEY -ufF -ufF +dxx +pBI +pBI wrC -vpB -vOY -qQN +uta +nAO +eod sgT wUL alI sgT -fIr +hUk mOE -urY +uqV sjy -xnJ +mgm kRZ sAU qGC jpc azl qGC -ebn +kPt sjy -cWr +vAT dZx uDb eUh uDb uDb -uVj -dEY -sQI +qAw +qhG +aFr pli oLd ndf xGf -xiG +oFM lVp -fIM +pSp yca gXz eAC yca -gYX -isA -jzu +fvv +hFV +dIg vXc vXc yiM @@ -85380,25 +73249,25 @@ vXc vXc vXc yiM -fXx +caL jmG oQN -vBd -wtT -pnu -vBd -eVc +cEY +suk +qHJ +cEY +rwl vVS jwM gwP ild xJd jwM -khd +jmG wZt jwM nPc -khd +jmG xDD xDD jmG @@ -85412,18 +73281,18 @@ ora ild jmG jmG -xAR +jhi mPr hFX -bdL -rQg -hYL +bAF +rIY +cqC qEk oLa -hYL -rQg -vdp -mPr +cqC +rIY +cVk +jhi mPr mPr nax @@ -85432,23 +73301,23 @@ mPr mPr mPr mPr -oaK +rVI oaN jas jas jas jas jas -gSn -xzV -pIx +iUb +irk +vDY jas jas jas jas jas jas -ogT +bXY jas cpy cpy @@ -85463,17 +73332,17 @@ cpy cpy cpy tiQ -wvV -xLm -xLm -bYd -cvP +qii +oyp +oyp +xwb +vOX dOa dOa -fxq -gdJ -ear -ear +kdD +wLF +bUy +bUy saC saC saC @@ -85481,61 +73350,61 @@ saC saC saC saC -vzd -fKt -fKt -fYP -fxq +cnC +tZv +tZv +kTP +kdD saC -knt -hna -yiu -hLY -qJE +nja +gof +xFe +kwL +khz lmY -iFV -iDg -jey -jlh -jEk -hef -kmP -xmD -jVC -kXa +gZT +mKU +mHD +pxh +siV +dIc +sRo +twa +weB +ydB saC saC saC -pwC +ceB yaj qjG qjG -saC -saC +qjG +ceB saC saC afL -sfc -xSE -bCX -iQb -tTv +sOs +siv +uDv +fKn oUq -cCL -sGv -xgE -yaC -vIU -kZe -mkh -iTI oUq +kgH +kmy +hQR +pEg +lik +xVO +qSC +hNh oUq -eYF -qrU -dio -kkR -lbI +oUq +oiL +vxp +oou +pPK +glL oUq oUq pGh @@ -85544,57 +73413,57 @@ ugV ugV fjr jDO -crH +pKS wrC wrC -aZT -tFf -nzt -iPZ +xWi +qgm +eSd +bMM uSv -jyx -uQF -jGj -wwy +lEX +bQU +wlI +lph jPw qgr sgT -fIr +hUk uAa -urY +uqV sjy -wbC +nBk mqH dsv pcQ sAU asz xDP -iNX -how +wDG +bko ndb jQk sLk nel eUh xxs -uMV +bja sjy kqb uVy itG -kcv +uSk gaS kqb lVp -fiG +bEG yca gXz eAC jfO -gYX -isA -jzu +fvv +hFV +dIg yiM vXc vXc @@ -85607,25 +73476,25 @@ vXc yiM yiM yiM -fXx +caL jmG qxm -vBd -qNI +cEY +pPY wsT -vBd -tUg +cEY +cAP liN ild eHF ftK pMs jEW -khd +jmG nnB fvN ful -khd +jmG xDD xDD jmG @@ -85635,22 +73504,22 @@ xDD xDD jwM aTm -dGp -gug +tiP +dON jmG tOo -lyD +qRh hFX hFX -bdL -rQg -pfD -fkP -dgY -hYL -rQg -vdp -mPr +bAF +rIY +uix +xND +byS +cqC +rIY +cVk +jhi mPr mPr mPr @@ -85658,24 +73527,24 @@ mPr mPr mPr mPr -tEu +mkv rot jas jas -fZS -xcn -qSW -pBn -ozw +dYL +wnT +amq +krr +irZ vjr -aRi -eHu -eSO -hzc -tuK +ibx +jaj +mAX +edr +jMm jas -lzP -dDp +fwF +tya jas jas jas @@ -85690,17 +73559,17 @@ cpy cpy cpy tiQ -wvV -dOY -bHa +qii +gZH +ufB dOa dOa dOa dZs -fLi -jth -tjg -tjg +eep +luN +uAj +uAj saC saC saC @@ -85708,15 +73577,15 @@ saC saC saC saC -frL -tjg -tjg -hJB -sxU +nRF +uAj +uAj +pbH +jtX saC -knt -hna -yiu +nja +gof +xFe saC saC lmY @@ -85726,8 +73595,8 @@ ujg ujg lmY lmY -kne -mqu +sto +tzg lmY saC saC @@ -85736,31 +73605,31 @@ pwC qjG yaj qjG +qjG pwC saC saC saC -saC hXt saC jkJ -mIq -iQb -tTv +ptC +fKn +oUq oUq -vVx -fHH +fnN +lqv kXY xZE kXY xZE kXY -gTc -fzK +wih +fDf oUq oUq oUq -nBo +tgo oUq oUq oUq @@ -85771,57 +73640,57 @@ ugV ugV ugV jDO -crH +pKS wrC -sNU -toZ -tFk -ssp -jyx +oFw +xVc +gVj +nqX +lEX wrC -nSk -mYo -wcO +tJW +vVC +iSs sgT wVF alI sgT -fIr -fIr -urY +hUk +hUk +uqV sjy -wbC -ebn +nBk +kPt mqH sxp ukK azl qGC -ort +eCV sjy -mpI +heS xxs xxs nrP uDb xxs -jft -dEY -fbE +lhB +qhG +arn tiZ dMl -scd +erd iDD -kZX +uRM lVp -nWG +eyt yca yca jfO jfO -gYX -isA -jzu +fvv +hFV +dIg yiM yiM vXc @@ -85830,10 +73699,10 @@ vXc vXc vXc vXc -wdy -iPR -iPR -iPR +oTE +tNN +tNN +tNN rMF jmG jmG @@ -85848,11 +73717,11 @@ jmG jmG jmG jmG -khd -rRc +jmG +avr wZy -iuQ -khd +lBL +jmG aZj aZj jmG @@ -85862,22 +73731,22 @@ vXY qPA ild ild -vBd -vBd +cEY +cEY jmG -xAR +jhi mPr hFX -tEu -bYV +agg +lOG wIr wIr -bZV -pSj +adf +nFv wIr wIr -rZK -gGM +vRg +gmL mPr mPr mPr @@ -85885,12 +73754,12 @@ mPr mPr mPr mPr -mnb +hDp jas jas -dxY -wQy -uVw +loV +mNe +vlD xPg vpe eso @@ -85899,12 +73768,12 @@ eso eso uMl vWI -hzc +edr aAI -iTb +sYK wIu -ntK -hkC +qvw +hlO jas cpy cpy @@ -85917,17 +73786,17 @@ cpy cpy cpy tiQ -dzv +xTk dOa dOa dOa -cwq -dQg +cDK +djR dZs -fxq -ddN -tjg -tjg +kdD +xEM +uAj +uAj saC saC saC @@ -85935,30 +73804,30 @@ saC saC saC saC -gPq -tjg -tjg -hJB +sIc +uAj +uAj +pbH saC saC -knt -hna -yiu +nja +gof +xFe saC saC saC saC -xmD -xmD -xmD -atz -xmD -knt -xmD +twa +twa +twa +vPP +twa +nja +twa saC saC saC -lrQ +mRM qjG qjG yaj @@ -85968,22 +73837,22 @@ saC saC saC bUN -sse +lxJ kwg jkJ -xLi -iQb -tTv +nMZ +fKn +oUq oUq oUq -suS +lwp kXY wwG hCH hCH mzX har -qvb +ejH oUq bYZ kVO @@ -85998,57 +73867,57 @@ fjr ugV fjr jDO -crH +pKS wrC -izT -iPZ -iPZ -jyx -uuA +djb +bMM +bMM +lEX +sqw wrC -vpO -vPA +gbN +vkR wrC sgT sgT sgT sgT -uHN -uHN -uHN +egn +egn +egn sjy sjy -lxp -dnD +eXy +rog qpq qGC bmj mqH -sui +nqp sjy -iiC +lcQ mHo xxs mrM uDb mHo -nNR -dEY +xzY +qhG egW bBI -oGl +fmn sqQ qiN nBe lVp -jrB -hVu +oOH +tnl tjV yca -hLK -uWz +cFt +ueV lVp -jzu +dIg vXc yiM yiM @@ -86056,33 +73925,33 @@ yiM yiM yiM vXc -wdy +oTE rMF jmG -six -swf +ats +ius jmG jmG jmG -fad -gHj +iSx +tes jmG -xMl -qIJ -srm +hZV +aKg +hTb jmG -wkp -qIJ -iup -hdC +eHK +aKg +nCg +aki wZy jmz uTh -aER -bDI -whZ -whZ -heC +piF +mZr +aPw +aPw +aFs jmG jmG jzF @@ -86092,29 +73961,29 @@ jwM ild meb jmG -xAR +jhi mPr -tEu -tOo +mkv +bYV wIr wIr -pNJ -eMj -xnp -tPa +mrE +nYy +usN +pIG wIr wIr -dGD -mcO +fUB +lCg mPr mPr mPr mPr mPr nax -mnb +hDp jas -eKc +nWW vpe vpe sVJ @@ -86126,12 +73995,12 @@ eso eso eso vWI -hzc +edr aAI -rfc +ert vpe uEE -eBu +aNS jas cpy cpy @@ -86144,48 +74013,48 @@ cpy cpy cpy tiQ -wvV -bgg +qii +tfS bIr -tDR -tDR -eVi +cjJ +cjJ +sAW dZs -qUQ -jth -tjg -tjg +hwT +luN +uAj +uAj saC saC saC saC saC saC -kbV -gPq -kbV -kbV -hJB +xdq +sIc +xdq +xdq +pbH saC saC -knt -hna -wea -jef -uTy -vIS -vIS -vIS -vIS -vIS -gnA -gwK -knS -vIS +nja +gof +fNG +lQv +uES +jGw +jGw +jGw +jGw +jGw +lng +bSZ +pVa +jGw saC saC -ljQ -pfj +mth +bxd qjG qjG yaj @@ -86195,22 +74064,22 @@ saC saC saC bUN -utH +hAx kwg jkJ -xLi -nMw -tTv +nMZ +syY oUq -hEJ -kgR +oUq +fFc +aXE aVj hCH hCH tpV kXY har -ecK +doY oUq xQq kVO @@ -86225,94 +74094,94 @@ fjr fjr fjr jDO -crH +pKS wrC wrC wrC -tGm +hEy wrC wrC wrC -dLf -sms -wcp -wwM -jYZ -hlH -hVh -jtZ -lvX -lvX +xXk +cdV +ppx +kcp +lPG +ixB +rIe +anW +erM +erM sjy sjy sjy -qnn -kxd -wdi -dNP -lDU -gOE +mxv +iZN +gAl +lOg +caT +nUW sjy -mpL -mGD -mQh -jvh -mpL -mGD -xka +eah +dRV +fJT +mUJ +eah +dRV +bgO sjy -ohX +nbS ogA oLo efK etx -bjF +cwB lVp lVp -avb -qYt -iCR -pDA +wlu +giO +jsl +qCv lVp lVp eyc -iPR -iPR -iPR -iPR -iPR -iPR -iPR +tNN +tNN +tNN +tNN +tNN +tNN +tNN rMF jmG jmG -sUI -sUI -uPn +fcS +fcS +pLF jmG -cZb +jhK khN -rob +ekP jmG -akb +adz jBR -srm +hTb jmG -rQd +bsj wly dIK -jlu +pdo wZy -kTs +cqm unC -rqA +uON wdd mFZ qNR ifB -ptp +lCd +jmG jmG -khd ycH gQV piY @@ -86320,28 +74189,28 @@ piY aDh jmG tOo -yhR +xRp tOo wIr wIr -qsL -sHb +fPE +goq oqp qzQ -dAQ -tYt +cVE +hpp wIr wIr tyh -gGM +gjv mPr mPr mPr mPr nax -mnb +hDp jas -lhI +dOV vpe vpe kpB @@ -86353,12 +74222,12 @@ vpe eso eso lzB -wTx +ceM jas -oeT +kmK sKx vpe -rfc +ert jas cpy cpy @@ -86371,48 +74240,48 @@ cpy cpy cpy tiQ -wvV -bgg +qii +tfS bIr -tDR -tDR -eVi +cjJ +cjJ +sAW cKw -qUQ -jth -tjg -dQm -kbV +hwT +luN +uAj +oVw +xdq saC saC saC saC saC -fsC -gPq -kbV -kbV +mBK +sIc +xdq +xdq saC saC saC -knt -hna -yiu -yiu -xwZ -wea -yiu -mrc -wXA -wXA -mAC -yiu -yiu +nja +gof +xFe +xFe +pmA +fNG +xFe +fEa +qhV +qhV +oZt +xFe +xFe saC saC saC saC -lwm +wYw pwX pwX uhx @@ -86421,24 +74290,24 @@ vlq saC saC saC -iQb -sse -uZV -neI -xLi -men -tTv +fKn +lxJ +iVS +uUH +nMZ +xOs +oUq oUq -xuQ -fHH +akm +lqv kXY aVj har qts nMX nMX -gvk -sSv +hLu +plO raH bof sMA @@ -86452,53 +74321,53 @@ fjr fjr fjr jDO -crH +pKS wrC -sOe -iGM -tGI -uhP -uuQ +vyT +nmT +okJ +agW +buF wuY -jNv -vQL -eHn -nTx -eHn -nTx -nTx -eHn -eHn -nTx -mrD +gxi +jrr +ylI +xMt +ylI +xMt +xMt +ylI +ylI +xMt +cAs sjy sjy sjy sjy -nAu -vil +gKL +wkJ sjy sjy sjy sjy -qTx -qTx +kKe +kKe sjy -qTx -qTx +kKe +kKe sjy sjy kqb ovr -caP -wkC +tLU +gFx rRP kqb lVp lVp lVp -qVb -tQE +nIp +aSz lVp kqb kqb @@ -86512,63 +74381,63 @@ rJC wZy jmG jmG -jPj +mpd bnP wiE -uGl +dnc jmG -tGP +hTZ wly -wgl +icX jmG -xMl +hZV wly -srm +hTb jmG -kkP +jvq wly -qdA +flQ jmG jmG -kie +uaC unC -hAX +xMZ gXc wiE wEW ifB yhi -jIG +xTz jmG jmG -wFB -wFB -wFB +mLN +mLN +mLN jmG jmG wIr -tMS +kcj wIr wIr -jSW -hhI +dMI +xIX fIa iQo tkf fTP -aPu -djQ +hmn +bmB wIr wIr -aFP +voQ mPr mPr mPr mPr nax -fki +gre jas -kdi +xsB rqP rqP vrW @@ -86580,12 +74449,12 @@ vpe eso eso lzB -xqV +vEX jas -rej +alO xFv vpe -jpM +nUe jas cpy cpy @@ -86598,48 +74467,48 @@ cpy cpy cpy tiQ -aWu -dPq -tDR -tDR -tDR -cEM +pYb +rBC +cjJ +cjJ +cjJ +kPc eXe -jur -jth -kbV -kbV -kbV -fKt -tjg -tjg +fLo +luN +xdq +xdq +xdq +tZv +uAj +uAj saC -eHR -bVF -frZ -tjg -tjg +vcO +fwI +tip +uAj +uAj saC saC saC -gRJ -ggH -wXA -wXA -xGX -wXA -wXA -gck -yiu -yiu -yiu -yiu +lkT +tqL +qhV +qhV +sCl +qhV +qhV +uvd +xFe +xFe +xFe +xFe saC saC saC saC -yiu -wea +xFe +fNG qjG qjG yaj @@ -86648,23 +74517,23 @@ saC saC saC tTv -sqH -pwB +gvn +hFJ kXY aYd -njn -nmt +grh +byv tTv oUq oUq -acn -vpq -lDk -lDk -kuN -lbo -hrH -wFv +obF +vWK +gCa +gCa +qAx +rRR +pkk +cOQ oUq kVO pGQ @@ -86679,81 +74548,81 @@ fjr fjr fjr jDO -crH +pKS wrC -sOe -nzt -rAX -bpb -uuW +vyT +eSd +hbi +iQl +eyr uiS -mvR -vBI -wcT -taO -eHn -nTx -nTx -nTx -eHn -nTx -mrD +tZV +vMx +fZv +bYH +ylI +xMt +xMt +xMt +ylI +xMt +cAs sjy -nPu -xBg -uVj -lhT -lrt -uVj -uVj -mfV -jft -jft -uVj -xBg -mkd -msr -mkJ -dEY -sSl +rXD +dQw +qAw +uMG +bWk +qAw +qAw +cIB +lhB +lhB +qAw +dQw +uyZ +qkt +rZQ +qhG +mKw fuc pNs lxL dEp -tVN -qTG -gLV -jZI -lrJ -xiG -iYc +hxP +hgv +emj +mfb +hAd +oFM +jLK kqb -uMq -uMq -kfD -kfD +rcX +rcX +dgz +dgz kqb jmG -tAn -xrB -jYF -jYF +sVY +jcM +vwB +vwB jmG -oGY +tzb wly wiE -nHA +aAS jmG jmG -hTA +mgz jmG jmG jmG -rvv +yfL jmG jmG wZy -eLZ +gqn wZy jmG gOS @@ -86765,37 +74634,37 @@ krm wiE wGJ vNi -jrn +kRU jmG -lHh -wkO -wkO -wkO -mAA +bkr +pwp +pwp +pwp +dKm jmG -cyV -pfD -tcj +tgR +uix +aRn aee -wwU +taR fTP xgH -uWT -uWT +lOh +lOh tkf fTP -hhI -bkY -rQg -ciF +xIX +lMg +rIY +pxM mPr mPr mPr nax nax -fki +gre jas -otv +qgf eso eso eso @@ -86807,12 +74676,12 @@ iqV ixO eso eso -esF +fqL aAI -snu +iLG vjr vpe -mUj +fjf jas cpy cpy @@ -86824,49 +74693,49 @@ cpy cpy cpy cpy -cpn -aWz -bhL -bhL -bhL -bhL -cFP +rNX +toy +rDE +rDE +rDE +rDE +qqd cKy -cSh -ddS -bVF -bVF -bVF -wwi -dcy -hgM -hgM -eHS -kbV -kbV -tjg +aUq +jWz +fwI +fwI +fwI +jKn +uCI +sIX +sIX +gka +xdq +xdq +uAj saC saC saC tiQ -lAK -hna -yiu -yiu -xwZ -yiu -yiu -nqe -yiu -yiu -yiu +iQq +gof +xFe +xFe +pmA +xFe +xFe +cwf +xFe +xFe +xFe saC saC saC saC -yiu -mrc -wXA +xFe +fEa +qhV pHT pHT mlE @@ -86876,10 +74745,10 @@ saC tiQ tTv tTv -leG -leG -hhK -leG +mYP +mYP +hiw +mYP tTv tTv tTv @@ -86887,8 +74756,8 @@ oUq oUq oUq oUq -akn -xGR +rfq +sqf oUq oUq oUq @@ -86906,27 +74775,27 @@ fjr rxI fjr jDO -crH +pKS wrC wrC -tpz -tGY -uiO -uwn -uSI -itl -aVD -oLu -nTx -iJW -ueT -uFe -nTx -nTx -nTx -mvR +mNH +vql +tjF +mXE +rNh +rvV +xSq +bYY +xMt +jMQ +mnP +qID +xMt +xMt +xMt +tZV sjy -uVj +qAw kOS uDb xxs @@ -86940,48 +74809,48 @@ sLk sLk jQk ndb -pRR -ueX -llA +pjR +vLz +tmh sbV ucM cpJ cLi -ycv -frc -ycv +xPB +mDJ +xPB uKa ucM uKa -ycv -frc -ycv +xPB +mDJ +xPB uKa uKa veP -whh -ves +dSg +fyZ eSY tPs tPs -jUI -vLW +coK +oah grP jze grP grP -vLW +oah xNd iYt -oFU -vmg +toH +ouF ogB sBt grP fiu grP -wrz -oFU +uVg +toH cCN kGa wfo @@ -86993,36 +74862,36 @@ grP aVA xNd xNd -vLW -oFU +oah +toH tPs tPs tPs -oFU -pvE -tZc +toH +tUW +xAQ pOs -tZc -vKm +xAQ +hhy vUe hoy qzU -uWT -uWT +lOh +lOh tkf qzQ -sSW -wqV -rQg -eMY +xGh +wef +rIY +sbw mPr mPr bwd nax -tEu +mkv mCq jas -fIx +iHE eso eso eso @@ -87034,12 +74903,12 @@ xHj gvU boQ vpe -tuK +jMm aAI -hFg +isT urh vpe -ntK +qvw jas cpy cpy @@ -87051,72 +74920,72 @@ cpy cpy cpy cpy -cpn -tDR -tDR -tDR -tDR -tDR -cDo +rNX +cjJ +cjJ +cjJ +cjJ +cjJ +sDd eXe -qUQ -jth -dGV -roM -roM -ygu -duN -erZ -roM -roM -roM -roM -roM +hwT +luN +adh +jKT +jKT +jxc +qQT +qxz +jKT +jKT +jKT +jKT +jKT saC saC saC tiQ saC -hna -yiu -yiu +gof +xFe +xFe saC saC -yiu -nqe -yiu -yiu +xFe +cwf +xFe +xFe saC saC saC saC -yiu -yiu -nqe -yiu -yiu +xFe +xFe +cwf +xFe +xFe saC saC saC saC tiQ tiQ -hhQ -ehM -fdE -ayX -lAS -hef -hNf -vsZ +gDU +myx +smX +cSP +eTF +ssN +aFd +xKC tiQ tiQ tiQ bjd -fSj -qKO -dOt -rSs +pnQ +eiT +ssb +bcp oUq oUq oUq @@ -87133,27 +75002,27 @@ fjr rxI fjr jXQ -kFK +yeK ahP wrC wrC -iLg -uiQ -uwY +kUt +rni +uVW uTv -mvR -rhF -eHn -nTx -nTx -nTx -nTx -nTx -nTx -nTx -mvR -qPS -oGp +tZV +nbe +ylI +xMt +xMt +xMt +xMt +xMt +xMt +xMt +tZV +dWH +oXu xxs eUh eUh @@ -87167,37 +75036,37 @@ gLk uDb uDb dXt -lhT -gvH -cCt +uMG +gSW +uRf lxL oLd wTr xDJ -xiG -bgJ -tVN +oFM +jMT +hxP wTr qQS wTr -tVN -bgJ -tVN +hxP +jMT +hxP wTr wTr wTr -tVN -nHA +hxP +aAS qic unC unC -nHA -six +aAS +ats yhi wYe wiE yhi -six +ats wiE wiE qic @@ -87220,36 +75089,36 @@ wiE yhi wdd jAI -six -cqH +ats +umi qic qic qic -cqH -six -sqd +umi +ats +qJL tkf -sqd -ilX +qJL +nmA oqp fTP xgH -uWT -uWT +lOh +lOh oLa cpX -mjY -jlc -dZY -qzA +otu +dCA +efe +wNV mPr mPr nax gvG -fki +gre jas jas -iAV +iRp eso eso nLy @@ -87257,16 +75126,16 @@ qHr kce jas jas -nnj -ckZ -vsI -nIJ +pic +fgC +qoz +wDg jas jas -fwV +ltD vjr iJZ -ntK +qvw jas cpy cpy @@ -87278,26 +75147,26 @@ cpy cpy cpy cpy -cpn -tDR -tDR -tDR -tDR -tDR -cEM +rNX +cjJ +cjJ +cjJ +cjJ +cjJ +kPc cKC -jur -del -dHc -qUQ -qUQ -jri -dEL -qUQ -qUQ -qUQ -qUQ -qUQ +fLo +xbZ +xhs +hwT +hwT +dCV +ouu +hwT +hwT +hwT +hwT +hwT saC saC saC @@ -87310,132 +75179,132 @@ saC saC saC saC -wjy -xwZ -xwZ +dxg +pmA +pmA saC saC saC saC -yiu -yiu -nqe -yiu +xFe +xFe +cwf +xFe saC saC saC saC -jjV -qJE +dWj +khz tiQ -hhQ -gtX +gDU +gxv qjG -vIS -upa -vuS -pfj -ncv -tfK -dXB +jGw +oMx +vwu +bxd +cco +uMo +xEl tiQ bjd -eZF -lfj -lfj -yje +dZL +key +key +xeT +key bjd -nTj -nTj -nTj -sPH -nTj -nTj -nTj -cpy +tvR +tvR +wwg +ncN +tvR +tvR +tvR ien rxI -nri -nMC -nNi +rvq +mDe +rEJ fjr fjr jDO -sSn +htG ahP wrC wuY uiS wuY wrC -nNH -vBI -eLN +oMz +vMx +bkZ beB -dhQ -dhQ -dhQ +vEH +vEH +vEH beB -mcC -nTx -jNv -ryv -lhT +pBx +xMt +gxi +cLa +uMG xxs uDb uDb xtO nPo uDb -uVj -jft -jft -wue -oPs -uVj -xrr -kiO -dEY -xiG +qAw +lhB +lhB +lSc +nhf +qAw +xVp +pyy +qhG +oFM cHg pNs xGf lxL -tVN -qTG -cBV -tVN -qAX -xiG -iYc +hxP +hgv +pWP +hxP +ntd +oFM +jLK kqb -kfD -uMq -uMq -kfD +dgz +rcX +rcX +dgz kqb jmG -wkO -jYF -jYF -xrB +pwp +vwB +vwB +jcM jmG -wZI +pwS wly wiE -uGl +dnc jmG -oKm +hXk yhi -cqH -rqA +umi +uON pCm yhi yhi vjR wiE -cqH -cqH +umi +umi wiE yhi wLd @@ -87446,35 +75315,35 @@ yhi wiE yhi gXc -uGl +dnc jmG -lHh -wkO -wkO -wkO -mAA +bkr +pwp +pwp +pwp +dKm jmG -cyV -hYL -tcj +tgR +cqC +aRn wIr -apt +tsU fTP xgH -uWT -uWT +lOh +lOh oLa fTP -hhI -jBm -rQg -leP +xIX +twm +rIY +kAp mPr nax nax nax -mnb -gSn +hDp +iUb vpe eso vpe @@ -87490,10 +75359,10 @@ xPF xPF ljr jas -lAk +mFn tOx eso -pYG +sTm jas cpy cpy @@ -87505,24 +75374,24 @@ cpy cpy cpy cpy -cpn -tDR -tDR -tDR -bZe -spI -aXa +rNX +cjJ +cjJ +cjJ +fjU +hdn +kUW tiQ -cTf -dfn -dfn -dfn +mvU +ppv +ppv +ppv jEu nTl -eWn -oSX -oSX -oSX +qWH +olq +olq +olq nTl jEu saC @@ -87537,90 +75406,90 @@ saC saC saC saC -nqe -yiu -yiu -yiu +cwf +xFe +xFe +xFe saC saC saC -xwZ -xwZ -mZN -pEm +pmA +pmA +uQO +dFL saC saC -mxp -jWB -xmD +lxi +riS +twa xQc xQc xQc -eoA +mzR ehO qjG -yiu -yiu -jef -vbm -viH -gjB +xFe +xFe +lQv +elI +xeE +pCz tiQ bjd pqQ -tdM -vFD -yje +nDY +rnw +xeT +key bjd -nTj -qqN -vqe -bjC -vqe -isL -nTj +tvR +dtM +wpd +wpd +mPM +tFN +tvR ien ien -ien -nGU -nMT -nOg +nms +wFm +bTP fjr fjr jDO fjr -sSn -hhD -hhD -hhD +htG +xWa +xWa +xWa ahP wrC -vqH -vBI -nTx -nTx -nTx -eHn -eHn -nTx -nTx -eHn -uWh +mMP +vMx +xMt +xMt +xMt +ylI +ylI +xMt +xMt +ylI +bEL sjy -jft +lhB xxs uDb kBB nrP xxs -uVj -bBe +qAw +kal sjy -qTx -qTx +kKe +kKe sjy -qTx -qTx +kKe +kKe sjy sjy kqb @@ -87632,8 +75501,8 @@ kqb kqb kqb kqb -mUS -nmL +hbW +piG kqb kqb kqb @@ -87647,12 +75516,12 @@ wZy wZy jmG jmG -cQW +buT wly yhi -uGl +dnc jmG -uGl +dnc oet yhi onX @@ -87665,43 +75534,43 @@ vMu wiE yhi vNi -nNA +ndV jih -rqA +uON gXc yhi wiE wiE hft -jbm +fUj jmG jmG -wFB -wFB -wFB +mLN +mLN +mLN jmG jmG wIr -tMS +kcj wIr wIr -bbk -aPu +xKE +hmn spJ oLa oLa fTP -aPu -pQQ +hmn +jPE wIr wIr -xAR +jhi mPr nax nax nax -mnb -gSn +hDp +iUb vpe eso eso @@ -87709,18 +75578,18 @@ eso aTj vpe jMv -sKu +yiQ tzd -xgI -iHw -fXG -tLl +cXl +pan +vnH +sFN tzd jas -mIU +oZO lTQ nQG -clT +joy jas cpy cpy @@ -87732,25 +75601,25 @@ cpy cpy cpy cpy -cpn -tDR -tDR -aWJ -cac -xLm -xLm +rNX +cjJ +cjJ +cYv +oZh +oyp +oyp tiQ tiQ tiQ tiQ tiQ tiQ -jcl -jln -ewt -jcl -jcl -jcl +fLq +csc +ktb +fLq +fLq +fLq tiQ tiQ tiQ @@ -87763,55 +75632,55 @@ saC saC saC saC -pEm -nqe -yiu -yiu -yiu +dFL +cwf +xFe +xFe +xFe saC saC -xzu -yiu -yiu -ljm +jvr +xFe +xFe +lDf saC saC saC -cnA -hdQ -xmD -xQc -qJE +hNo +mHD +twa +qjG +khz xQc -qJE -qJE +khz +khz qjG -yiu +xFe qjG qjG -nqe -hLY -oWS +cwf +kwL +wAw tiQ bjd qEQ lYK hvh pqQ +key bjd -nTj -qqN -tbK -oan -wjP -isL -nTj -cpy +tvR +oZa +qZM +esq +lcR +tFN +tvR ien rxI -nLF -nNf -nOS +wBK +fjw +iAn fjr fjr jXQ @@ -87820,27 +75689,27 @@ fjr ugV ugV ugV -crH -uHN -jNv -rhF -nTx -nTx -gfU -hGg -uFe -nTx -nTx -eHn -pgl +pKS +egn +gxi +nbe +xMt +xMt +xtz +sOg +qID +xMt +xMt +ylI +lPS sjy -bnz -xQi +kOG +dNo uDb uDb xtO uDb -uVj +qAw sjy sjy ape @@ -87850,36 +75719,36 @@ dXI kRQ uVI sjy -ydz +uSb xGf pNs kVV xGf -gul +cOu kqb -hAi -cMv -hCi -qcA -gUQ +snt +tuw +iMZ +qht +fuT kqb kqb xXg xXg xXg -ylr -ylr -ylr -ylr -ylr +ass +ass +ass +ass +ass xXg jmG jmG -mxt -nXY -oIP +wkv +rhX +nCj jmG -hIA +nTf yhi yhi yhi @@ -87892,43 +75761,43 @@ wiE tex yhi yhi -bbz +nCF qic -rqA +uON wdd yhi yhi xPK -oTG +gVZ jmG -khd -pjm +jmG +vOu +tsC opQ -ydy -ydy -mUo +tsC +tsC jmG xzK -xxq +dhD xzK wIr wIr -xJK -vvi +jXf +yal hoy afr -tog -eeG +axZ +uAr wIr wIr xzK -cpk +iNF fWG uwT uwT uwT -bqE -gSn +rQG +iUb vpe vpe eso @@ -87936,16 +75805,16 @@ vpe aTj vpe crT -odX -qer -dmx -lTj -lTj -etn +cCu +xeO +ksv +sAA +sAA +dyw tzd jas jas -hiZ +pib qsN aAI jas @@ -87959,12 +75828,12 @@ cpy cpy cpy cpy -cpn -aWJ -spI -aXa -cay -xLm +rNX +cYv +hdn +kUW +ess +oyp tiQ tiQ tiQ @@ -87972,12 +75841,12 @@ hBg hBg hBg tiQ -lXC -lXC -gex -lXC -lXC -lXC +nQD +nQD +cdf +nQD +nQD +nQD tiQ dgb fLK @@ -87990,50 +75859,50 @@ saC saC saC saC -pEm -nqe -yiu -yiu -yiu +dFL +cwf +xFe +xFe +xFe saC -xzu -yiu -yiu -yiu -nqe -xzu +jvr +xFe +xFe +xFe +cwf +jvr saC -eBm -gWg -xmD -xQc -xQc -qJE +sBG +tcW +twa +qjG +qjG +khz xQc xQc -gAS -chT -mis -yiu +vpY +wPX +sGL +xFe acD -nqe -hLY -dcM +cwf +kwL +kyp tiQ bjd qEQ lYK hvh pqQ +key bjd -nTj -ipH -cbn -aLG -tLX -bjC -nTj -ien +tvR +uNI +cEU +pNi +hLc +wpd +tvR ien ien rxI @@ -88047,28 +75916,28 @@ vwi vwi vpa ugV -crH -uHN -abX -rhF -eHn -nTx -nTx -nTx -nTx -nTx -nTx -nTx -pgl +pKS +egn +dDU +nbe +ylI +xMt +xMt +xMt +xMt +xMt +xMt +xMt +lPS sjy sjy -kUH +fBi xxs uDb lui uDb -uVj -dEY +qAw +qhG kpP iXT pLT @@ -88077,85 +75946,85 @@ flI gMb nOB bAe -tVN +hxP bDR pNs pli lxL -tVN +hxP pGl -hAi -fpl -qcA -fpl -eXd +snt +abC +qht +abC +jhr kqb kqb kqb xXg -dCJ +rXN tTD tTD tTD tTD tTD -bmg +aGa xXg jmG -gEk -swf +joX +ius jmG jmG jmG -fRc -oKP -gpi +sjh +mCr +ahQ jmG -kkP -kkP -vmL -oTG +jvq +jvq +kwh +gVZ woy yhi rlV tex -pas +hqY xMX -vRQ +fee yhi wdd -rgk -rgk +yiw +yiw jmG jmG -uYq +vrQ aVX meb -ubJ -ubJ -ubJ +meb +meb +aVX jmG -hMz +fyX fWG -jqr +iFP xzK wIr wIr -hfV -hhI -lIB -vQO +jpS +xIX +pvP +xuh wIr wIr teD -cpk +iNF gme sMN sMN sMN sMN -ebt -oVS +lJi +ygk kwj wiU lWf @@ -88163,18 +76032,18 @@ lWf mOy vpe kZs -pIx -wpF -lNT -lNT -lNT -wpF +vDY +inQ +tIn +tIn +tIn +inQ tzd jas -cVe +qbO xFv eso -cVe +qbO jas cpy cpy @@ -88186,80 +76055,81 @@ cpy cpy cpy cpy -cpn -aXa -bpD -xLm -cbB -tiQ -tiQ -aEL -aEL -aEL -aEL -jcl -jVa -jcl -jcl -ewp -fIe -fIe -fIe -aWX -fIe -fMd -ewt -saC -saC -tiQ -tiQ -saC -saC -saC -pEm -pEm -nqe -yiu -yiu -yiu -xwZ -yiu -mrc -wXA -wXA -mZU -wXA -hwG -syg -jjV -xmD -cHu -jVC -qJE -qJE -cHu -cLH -gAS -aox -rKa -fpm -yld -hpI -xmD +rNX +kUW +kZT +oyp +aeK +tiQ +tiQ +fqi +fqi +fqi +fqi +fLq +fLq +fLq +fLq +wtq +qWb +qWb +qWb +qWb +qWb +eHH +ktb +saC +saC +tiQ +tiQ +saC +saC +saC +dFL +dFL +cwf +xFe +xFe +xFe +pmA +xFe +fEa +qhV +qhV +cDr +qhV +koE +gVU +twa +twa +sEY +aum +khz +khz +evz +mOq +vpY +sjR +vcx +xzP +lWO +apF +twa tiQ bjd qEQ lYK hvh pqQ +key bjd -nTj -icM -cbn -mNI -tLX -bjC -nTj +tvR +qlc +cEU +jZV +hLc +wpd +tvR ien ien ien @@ -88268,34 +76138,33 @@ ien ien ien ien -ien -spy -qnS -uRL +sXU +eFM +kPC hNR -qbu +kWR rYi wrC -bEk -iIG -wee -mvR -mvR -wcq -xCG -xCG -xCG -ocw +qKD +lbl +cef +tZV +tZV +tav +dMK +dMK +dMK +qFI sjy sjy sjy -sli +gxy xxs uDb xtO qDr -jft -dEY +lhB +qhG mty mvB pVA @@ -88304,33 +76173,33 @@ jvk rLx nOB bAe -xiG +oFM xGf pNs lxL xGf -xiG -qTG -rLe -dxl -qcA -fpl -fpl -lHl -rYg +oFM +hgv +azQ +aJi +qht +abC +abC +jfa +wFS kqb kqb xXg -diT +ozy tTD rnB rnB tTD tTD -bmg -ylr -tVP -ylr +aGa +ass +wzd +ass wIi vNk vNk @@ -88342,7 +76211,7 @@ uIZ wpn vNk vNk -jbm +fUj xPK yhi yhi @@ -88350,39 +76219,39 @@ saz avX qot yhi -spM +dFG +jmG jmG jmG -khd -vBd +cEY brk rdF ild -ban -ubJ -ubJ +jwM +moh +vmv jmG -hMz +fyX fWG fWG -jqr +iFP xzK wIr wIr -vLI -nXI +kXt +nBh wIr wIr xzK -cpk +iNF uwT tKe uwT uwT uwT uwT -bqE -gSn +rQG +iUb vpe vpe eso @@ -88390,18 +76259,18 @@ lNl tcK vpe vpe -aXB -wpF -tHo -wpF -wpF -wpF +iEY +inQ +wMd +inQ +inQ +inQ tzd jas -ntK +qvw xFv nQG -fHy +vOF jas jas cpy @@ -88413,30 +76282,30 @@ cpy cpy cpy cpy -cpn -xLm -bsx +rNX +oyp +iTR tiQ tiQ tiQ -aJT -aEL +uvw +fqi cTX iZI iZI iZI svW -ept -hRW -ewm -hRW -gqg -npd +oWI +tYq +wAl +tYq +tAb +ant svW -swu -fMx -geq -gnk +asU +pGC +vvV +sZm saC saC tiQ @@ -88444,50 +76313,50 @@ tiQ tiQ saC saC -pEm -mbq -wXA -wXA -wXA -xGX -wXA -mAC -yiu -yiu -yiu -yiu -cpZ -kda -qJE -xQc -xQc -xmD +dFL +qsB +qhV +qhV +qhV +sCl +qhV +oZt +xFe +xFe +xFe +xFe +iId +tMr +khz +qjG +qjG +twa mPY -qJE +khz xQc xQc -fqU -ecU -tXp -xwZ -lrd -ihf -lyu +wDH +eAw +xNY +pmA +cOS +nuv +xPq tiQ bjd -eZF +dZL lYK hvh -eZF +dZL +key bjd -nTj -ipH -vrE -aJr -tLX -bjC -nTj -ien +tvR +uNI +mXW +kYc +hLc +wpd +tvR ien ien cpy @@ -88498,31 +76367,31 @@ ien rME nQQ qSH -trV +aZI umR -onj +hRn wKg wKg wKg -vQT -fmg +kjl +cRm wKg wKg wKg -lVD -lVD -lVD -lVD +kFN +kFN +kFN +kFN sjy sjy sjy -typ +rAY uDb uDb xtO uDb -jft -dEY +lhB +qhG eDc jjP biL @@ -88532,23 +76401,23 @@ iAU wiI sjy kqb -guZ +hJI nfP wob lxL -tVN -qTG -eXd -qcA -llM -qcw -qcA -qYX -qcA -vtA +hxP +hgv +jhr +qht +jPS +sWV +qht +nwB +qht +jOD kqb xXg -dCJ +rXN tTD tTD rnB @@ -88558,19 +76427,19 @@ tTD rnB kcN rnB -igT +sAa vNk vNk -kAf -nXK -bLV +qIi +phT +qAV vNk -vLR -vYJ -qSu +srz +tdp +qby vNk vNk -oTG +gVZ yhi wiE wly @@ -88578,29 +76447,29 @@ qMo sJI yhi wiE -woi +rFk jmG -eSy +tdL ild dco -ild +wqg jwM liN ild jwM -six -hMz +ats +fyX fWG fWG fWG -jqr -xxq -xxq -xxq -jdq -vss -vss -gxE +iFP +dhD +dhD +dhD +jkR +snL +snL +rBG weJ weJ qUh @@ -88608,8 +76477,8 @@ uwT uwT uwT fWG -bqE -pIx +rQG +vDY eso vpe vpe @@ -88617,19 +76486,19 @@ aBY vjr vpe vpe -pIx -ksA -ksA -wpF -wpF -ksA +vDY +pHC +pHC +inQ +inQ +pHC tzd jas -aWT +iAc vZS vpe -clT -dWG +joy +uyV jas cpy bMX @@ -88641,29 +76510,29 @@ cpy cpy cpy tiQ -xLm +oyp tiQ tiQ -cbY -aEL -aEL +ctB +fqi +fqi aLJ dDS iZI iZI svW svW -aCQ -swu -eRN -swu -swu -hwt +qba +asU +xNv +asU +asU +wmn svW svW -eRN -swu -swu +xNv +asU +asU saC saC saC @@ -88672,49 +76541,49 @@ tiQ tiQ saC saC -pEm -yiu -yiu -yiu -xwZ -yiu -yiu -yiu -yiu -yiu -yiu -wvB -xmD -qJE -xQc -xmD -xmD +dFL +xFe +xFe +xFe +pmA +xFe +xFe +xFe +xFe +xFe +xFe +mYL +twa +khz +qjG +twa +twa mPY -qJE -qJE +khz +khz xQc -fqe -gyB -aox -yiu -wvB -csS -yai +rAa +xxo +sjR +xFe +mYL +kKw +wtb tiQ bjd pqQ lYK hvh -eZF +dZL +key bjd -nTj -qqN -gzw -spn -nCC -isL -nTj -cpy +tvR +oZa +btw +jdk +lsX +tFN +tvR cpy cpy cpy @@ -88725,57 +76594,57 @@ ien rMR jGa qSH -trV +aZI umR -ozQ +aoa wKg wKg -vtl -koG -rfe -rfe +dTg +qHs +fQM +fQM wKg wKg -xlI -xlI -xlI -mev -mev -tdD +rcF +rcF +rcF +inq +inq +rTi sjy -uVj +qAw qDr xxs nrP uDb -uMV +bja sjy sjy -gwR +xVU sjy sjy sjy -gEA +xCW sjy sjy -cBs +fLx xDJ nfP wTr xGf -tVN -qTG -xRo -fpl -fpl -mRf -qcA -fpl -qcw -lfI +hxP +hgv +xEq +abC +abC +aXy +qht +abC +sWV +smV kqb kqb -dCJ +rXN rnB tTD rnB @@ -88785,19 +76654,19 @@ tTD sTX oCt tTD -igT +sAa vNk -iHl +qVM ozn xMO xMO -hWJ +etZ xMO ovA xMO -vcH +bER wpn -kdr +uzE yhi yhi wly @@ -88805,18 +76674,18 @@ wiE wiE onX wiE -uFF -wFB -xqi -ild +uhZ +mLN +jCU +wqg ild ild -hOB -qBB +vPp +oEI ild ild -qfz -hMz +jAQ +fyX fWG fWG fWG @@ -88835,8 +76704,8 @@ uwT fWG fWG fWG -bqE -pIx +rQG +vDY eso eso vpe @@ -88844,19 +76713,19 @@ xAP vjr vpe kZs -aoe +bhJ tzd -oiD -eQB -ksA -oiD +kBZ +eqT +pHC +kBZ tzd jas -fpr +lVx vjr sTG -fpr -blW +lVx +auF jas cpy bMX @@ -88870,28 +76739,28 @@ cpy tiQ tiQ tiQ -aEL -aEL +fqi +fqi aLJ aLJ aLJ dDS iZI fFw -fib -jcl -aCQ -dXd -exB -jcl -swu -hwt -jcl -eHp -dHk -gKD -gpu -tra +iZI +fLq +qba +gIw +lMz +fLq +asU +wmn +fLq +asU +obv +pvo +wIQ +jvQ saC saC saC @@ -88900,32 +76769,32 @@ saC saC saC saC -pEm -pEm -yiu -xwZ -yiu -yiu -yiu -yiu -yiu -yiu -wvB -xmD -xQc -xQc -hdQ -iQe -vIS -jWr -qJE +dFL +dFL +xFe +pmA +xFe +xFe +xFe +xFe +xFe +xFe +mYL +twa +qjG +qjG +mHD +qKC +jGw +kIw +khz xQc xQc -enk -aox -yiu -wvB -pvz +cmA +sjR +xFe +mYL +qNC xQc tiQ bjd @@ -88933,15 +76802,15 @@ pqQ lYK hvh pqQ +key bjd -nTj -qqN -bjC -gNN -bjC -isL -nTj -cpy +tvR +oZa +wpd +qSm +wpd +tFN +tvR cpy cpy cpy @@ -88952,32 +76821,32 @@ ien ien ssh qSH -trV +aZI pRv -oKI -qBR -uTI +mqg +aIx +eUz gIa kRg gIa gIa -wtI -vfb +tUo +eVA gIa opl opl opl kEN -ben -gLw -ygw +piq +fen +gag ndb vbX tjM ndb -ygw -kfa -ogf +gag +whL +aYq nLD xen oXQ @@ -88985,24 +76854,24 @@ jQk uMc xxs bAe -xiG +oFM xDJ nfP wob xDJ -tVN -qTG -fpl -qcw -qcA -ans -dnX -qcA -fpl -fpl -odg +hxP +hgv +abC +sWV +qht +sfG +flz +qht +abC +abC +jku kqb -dCJ +rXN rnB tTD cpy @@ -89012,9 +76881,9 @@ lzw tTD oCt tTD -igT +sAa vNk -iHl +qVM ozn ozn eZM @@ -89022,9 +76891,9 @@ xMO eZM xMO ozn -vcH +bER wpn -xMl +hZV yhi yhi wYe @@ -89032,19 +76901,19 @@ vMu yhi tex bJZ -vqk +lRY jmG -aza +ulI ojy ild ild -vBd -qBB +cEY +oEI ild jwM -qfz +jAQ xzK -eZe +xYv fWG fWG fWG @@ -89062,10 +76931,10 @@ fWG fWG uje fWG -bqE +rQG jas jas -dit +otd mNc eso xFv @@ -89079,11 +76948,11 @@ xPF xPF dFz jas -iRa +iIp bUV vpe -fpr -dWG +lVx +uyV jas cpy bMX @@ -89096,8 +76965,8 @@ cpy cpy tiQ tiQ -aEL -aEL +fqi +fqi aLJ aLJ aLJ @@ -89105,20 +76974,20 @@ iZI dDS iZI iZI -svW -jcl -aCQ -evx +iZI +fLq +qba +vIZ nTl nTl -jcl -hwt -jcl -svW -dYX -hRy -gqG -gOo +fLq +wmn +fLq +iZI +kaA +nQD +nQD +nQD saC saC saC @@ -89128,47 +76997,47 @@ saC saC saC saC -pEm +dFL saC saC -yiu -kVa -yiu -yiu -yiu -uul -dZG -xmD -seF -qJE -lrQ -dRy -yiu -mMj -qJE -qJE +xFe +oAk +xFe +xFe +xFe +bmU +pKG +twa +qjG +khz +mRM +umy +xFe +btt +khz +khz seF -uPv -iSc +nrJ +tXt qjG -wvB -xmD -dmE +mYL +twa +kBW tiQ bjd -eZF +dZL lYK hvh pqQ +key bjd -nTj -nTj -nTj -nTj -nTj -nTj -nTj -cpy +tvR +tvR +tvR +tvR +tvR +tvR +tvR cpy cpy cpy @@ -89179,32 +77048,32 @@ ien tNQ qSH qSH -trV +aZI umR -sPh -qCe -nTX +vko +uZl +vED tQi jdn tQi tQi -nTX -uyt +vED +eCw tQi gwb gwb xZz yjr -yjq -tQF -lhT +vzP +lji +uMG xxs qDr nrP xxs -lhT -gvH -oGp +uMG +gSW +oXu uDb eUh nud @@ -89212,24 +77081,24 @@ nud uDb xxs bAe -wRl +mBe lxL pNs xGf xGf -whR -pGl -mOG -qcA -fpl -dxl -wYl -qcA -qcA -ran -vsd -rHl -dCJ +ngh +kqb +cLM +qht +abC +aJi +lVE +qht +qht +aCr +doS +rmL +rXN rnB tTD tTD @@ -89238,10 +77107,10 @@ cpy lzw tTD oCt -hrk +dBu xXg vNk -iHl +qVM wGh gij mHv @@ -89249,9 +77118,9 @@ nlW eHY ozn xMO -vcH +bER wpn -xMl +hZV wiE tex fiS @@ -89259,9 +77128,9 @@ bJZ wdd yhi yhi -fxl -six -gbq +rrA +ats +jCU jwM jwM ild @@ -89272,7 +77141,7 @@ jwM qEc jmG gkY -eZe +xYv fWG fWG uwT @@ -89289,10 +77158,10 @@ fWG fWG fWG fWG -jqr +iFP xzK jas -lel +rSv rwC eso wwc @@ -89300,16 +77169,16 @@ eso vpe jas jas -kyJ -oxH -oxH -imh +nBL +dBG +dBG +pWw jas jas -cVe +qbO xFv vWI -fpr +lVx jas jas cpy @@ -89322,8 +77191,8 @@ cpy cpy cpy tiQ -aEL -aEL +fqi +fqi aLJ aLJ aLJ @@ -89332,21 +77201,21 @@ fib fXU fib fib -svW -jcl -aCQ -emr +aLJ +fLq +qba +mre nTl nTl -dBe -qZB -jVa -svW -dYX -jcl -jcl -gOG -heF +aqP +nnE +cks +jsn +kaA +nQD +nQD +nQD +qba saC saC saC @@ -89359,42 +77228,42 @@ saC saC vjl vjl -yiu -yiu -yiu -yiu -hLY -knt -kOF -seF -qJE -iQe -baG -yiu -jef -jWr -qJE +xFe +xFe +xFe +xFe +kwL +nja +gJV +qjG +khz +qKC +gSI +xFe +lQv +kIw +khz seF -xuD -ezB +trq +kzp qjG -tOM -egK -gjB +tRj +uli +pCz tiQ bjd pqQ lYK hvh qEQ -bjd -moe -moe -moe -moe -moe -moe -moe +key +mPj +mPj +mPj +mPj +mPj +mPj +mPj cpy cpy cpy @@ -89406,57 +77275,57 @@ ien rNm jOw qSH -trV +aZI umR -prU +bnN wKg wKg -xlI -mev -mev -xlI -uyt -uyt -mev -odT -xlI -xlI -yjy -xlI +rcF +inq +inq +rcF +eCw +eCw +inq +vRE +rcF +rcF +jNr +rcF sjy -uVj -eqM +qAw +qTF cvi tLE iXT -jft +lhB sjy -nPu -uVj -asZ -snn -sPS -rls -nPu +rXD +qAw +dth +mDU +dNi +wsE +rXD sjy -vVh -eSf +wtE +sVq htA vNO -eSf -uue +sVq +fzc kqb -mJZ -jrD -qcA -fpl -fpl -qcA -eXd -fpl -dyQ +bSO +isy +qht +abC +abC +qht +jhr +abC +ycA kqb -dCJ +rXN rnB tTD tTD @@ -89464,30 +77333,30 @@ cpy cpy lzw fgB -rjJ +huY xXg vNk vNk -aUN +wBa xMO xMO mHv vBB vMJ xMO -sMI +sGG vNk vNk vNk -wHR +xAd wiE -mWZ +rsd rtz -cqH +umi yhi qHj yhi -six +ats jCU jwM jwM @@ -89500,7 +77369,7 @@ phZ jmG jmG hkO -eZe +xYv fWG uwT uwT @@ -89517,9 +77386,9 @@ fWG fWG fWG fWG -bqE +rQG jas -wTx +ceM nbE vpe oKe @@ -89532,10 +77401,10 @@ tNl tNl tNl tNl -spz +rZS njm qup -ntK +qvw jas jas cpy @@ -89549,7 +77418,7 @@ cpy cpy tiQ tiQ -aEL +fqi aLJ aLJ dFT @@ -89559,21 +77428,21 @@ iZI dDS iZI iZI -svW -jVa -fLP -wSb +aLJ +cks +iSP +dOf nTl nTl -jcl -hwt -jcl -svW -dYX -hRy -grz -uNT -aCQ +ixr +wmn +fLq +jsn +kaA +nQD +nQD +nQD +qba saC saC saC @@ -89587,43 +77456,43 @@ saC vjl vjl vjl -xzu -xzu -xzu -hLY -knt -xQc -xQc -srf -dRy -yiu -yiu -wea -nmX -qJE +jvr +jvr +aZN +kwL +nja +qjG +qjG +sSD +umy +xFe +xFe +fNG +wQI +khz xQc xQc -ayX -hna -nqe -feS -iDg +cSP +gof +cwf +qiP +mKU tiQ bjd pqQ lYK hvh qEQ +key +mPj +iCs +hFD +aDb +key bjd -bjd -bjd -bjd -bjd -bjd -bjd -alI -alI -alI +mPj +mPj +cpy cpy cpy cpy @@ -89633,17 +77502,17 @@ ien ien svK qSH -lsR +aPC umR -pul +gyR wKg wKg xjF xjF xjF xjF -wBp -fvX +yaN +pLy xjF xjF xjF @@ -89651,12 +77520,12 @@ xjF sjy sjy sjy -iVY -pFQ +laf +dYj xUJ -mOs -jft -eqM +qmo +lhB +qTF sjy sjy tpa @@ -89668,22 +77537,22 @@ sjy sjy kqb kqb -mUS -rUJ +hbW +lCM +kqb kqb kqb -pGl kqb kqb -bJp -fpl -dfH -qcA -fpl -qcA +bvZ +abC +iZW +qht +abC +qht kqb kqb -dCJ +rXN rnB rnB tTD @@ -89691,10 +77560,10 @@ cpy cpy tTD tTD -lpi +nNy vNk vNk -daB +mZL kuD xMO xMO @@ -89702,19 +77571,19 @@ xMO ekO ekO wGh -sYM +iXA vNk vNk vNk -pQx +upR yhi -rqA +uON dfk -oFU +toH grP xNd xNd -cxK +ksr rns ldC xcF @@ -89724,10 +77593,10 @@ taP ojy uqP wjF -ngL +eLm jmG jmG -dVD +iRw fWG uwT uwT @@ -89744,23 +77613,23 @@ dWD fWG fWG fWG -xgW +dMH jas -xqV +vEX xKH vpe wwc vpe vpe -aRi -aRi -aRi -aRi -sbx -aRi -aRi +ibx +ibx +ibx +ibx +vFq +ibx +ibx jas -ogT +bXY jas jas jas @@ -89775,8 +77644,8 @@ cpy cpy tiQ tiQ -aEL -aEL +fqi +fqi aLJ aLJ iZI @@ -89787,21 +77656,21 @@ cHj azz azz eFP -fIe -egd -ejN -fLA -fLA -eVW -hwt -jcl -svW -rbW +qWb +vBF +uaA +mxV +mxV +bUs +wmn +fLq +jsn +qnq tiQ tiQ tiQ -aCQ -lXC +qba +nQD saC saC saC @@ -89816,41 +77685,41 @@ vjl vjl vjl vlq -xwZ -syg -iqz -xQc -qJE -qJE -aox -xwZ -xwZ -pEm -syg -qJE -qJE +pmA +gVU +rNg +qjG +khz +khz +sjR +pmA +pmA +dFL +gVU +khz +khz xQc -pwA -kaQ -nqe -hLY -xmD +iMG +ugq +cwf +kwL +twa tiQ bjd pqQ lYK hvh -eZF -bjd -okj -vJw -apd -apd -lfj +dZL +key +iaL +iaL +dnq +dnq +key +key +key bjd -bjd -bjd -alI +mPj cpy cpy cpy @@ -89860,14 +77729,14 @@ ien iqb kdx vGp -trV +aZI umR -qbD +kSi umg xjF xjF -vtp -ack +vpf +osX xjF giX giX @@ -89880,12 +77749,12 @@ sjy sjy sjy sjy -hbk -poM +kZR +hzJ sjy sjy sjy -gLd +neU ulZ ulZ ulZ @@ -89894,23 +77763,23 @@ twY ulZ ulZ pKX -pTl -oMn -oYZ -pTl +fGl +tcm +uyQ +fGl pKX -nlY +cvd xXg kqb kqb -hzO -iha -pfv -cYf +fbV +aho +eEz +hlA kqb kqb xXg -fBp +wrf rnB tTD tTD @@ -89918,8 +77787,8 @@ cpy cpy tTD tTD -lpi -vmp +nNy +ani sCr uew xMO @@ -89930,31 +77799,31 @@ ozn xMO xMO xMO -vqW +mDp wpn -mPy +tFd wJH wEW -rqA +uON sLG -rqA +uON wiE wiE -uGl -six -sUj +dnc +ats +jCU jwM ild -vBd -hOB +cEY +vPp vVS jwM ild ild -vBd -fYC +cEY +sZj jmG -fEY +dHH fWG uwT uwT @@ -89973,13 +77842,13 @@ xbM fWG xzK jas -myC +cit eso vpe xFv eso -aRi -aRi +ibx +ibx jas jas jas @@ -90001,8 +77870,8 @@ bMX cpy cpy tiQ -aJT -aEL +uvw +fqi aLJ aLJ iZI @@ -90014,21 +77883,21 @@ dDS iZI iZI svW -jcl -aCQ -swu -ojn -swu -swu -hwt -aEL -svW -dYX -hRy -ifh -gOo -aCQ -lXC +fLq +qba +asU +ifF +asU +asU +wmn +fLq +iZI +kaA +nQD +nQD +nQD +qba +nQD saC saC saC @@ -90044,40 +77913,40 @@ saC dxc ntq qjG -hLY -knt -npb -xmD -iQe -baG -yiu -yiu -yiu -jef -pfj -tRS +kwL +nja +eZR +twa +qKC +gSI +xFe +xFe +xFe +lQv +bxd +vZo yhz -xmD -kaQ -nqe +twa +ugq +cwf qjG hKK tiQ bjd -eZF +dZL lYK hvh eTQ -qKO +eiT woU woU woU woU -xXv -lfj -bjd -bjd -alI +nvC +key +key +key +mPj cpy cpy cpy @@ -90087,56 +77956,56 @@ ien isa svK sRI -trV +aZI umR qSH -uRb +lQO xjF -uTS -dMp -fHC +rGQ +jIN +wuE xjF -grV +ucB uog uog xBo nnz oVD -plz +xjF xFp -sYk -uNB -xUQ -ykc +xZP +nMa +obY +qpn gNJ -pTl -uNB +fGl +nMa ulZ ulZ ulZ -mUG -ngK -mnz +xYM +gLW +qxV jZc wIE ulZ -uNB -pTl +nMa +fGl djM xAZ -pTl -uNB -nlY -ylr +fGl +nMa +cvd +xXg wIi kqb kqb -qWt -qWt +mtW +mtW kqb kqb wIi -fBp +wrf rnB rnB tTD @@ -90145,8 +78014,8 @@ cpy tTD tTD rnB -cJW -cUa +wJP +bze oGZ uNd xFG @@ -90157,9 +78026,9 @@ rKW uNd oaH xMO -vLR +srz wpH -rXE +nSn wGJ wiE wiE @@ -90167,52 +78036,52 @@ wYe yhi yhi wiE -spM +dFG jmG -aza +eGS jwM ild -vBd -hOB +cEY +vPp vVS ild uqP wjF -ngL -nlO +eLm +jcb jmG -fEY +dHH fWG uwT uwT fWG wVo -dqB -con -szT -szT -con -con -vYb -con -con -con -con +kVH +oUH +qBz +qBz +oUH +oUH +lLp +oUH +oUH +oUH +oUH jas jas -xlY -aRi +gJh +ibx eso xFv uhv -aRi +ibx jas jas -xaQ -vSC +qBG +acy jas -etq -phq +nIx +tJI jas nQu uTY @@ -90228,7 +78097,7 @@ bMX cpy tiQ tiQ -aEL +fqi aLJ aLJ iZI @@ -90241,28 +78110,28 @@ cUg iZI dHj vNr -jcl -egt -swu -swu -swu -swu -hwt -aEL -cWH -dYX -jcl -jcl -gOG -heU -lXC -ijO +fLq +cdx +asU +asU +asU +asU +wmn +fLq +asU +kaA +nQD +nQD +nQD +qba +nQD +gnD saC tiQ -tiQ saC saC -tiQ +saC +saC tiQ saC saC @@ -90271,40 +78140,40 @@ saC saC vjl qjG -hLY -knt -whK -xmD -hna -yiu -yiu -yiu -yiu -noD -jWB -tRS +kwL +nja +sEY +twa +gof +xFe +xFe +xFe +xFe +ncQ +riS +vZo aiO -snP -vxq -dxJ -jWB +kzO +ujj +sXO +riS pAw tiQ bjd -yje -lYK -jZE +xeT +abL +sVC hNP hNP hNP hNP hNP vFD -dfK -xXv -lfj -bjd -alI +scx +nvC +key +key +mPj cpy cpy cpy @@ -90314,55 +78183,55 @@ ien ien ruv ilU -trV +aZI umR qSH -uRb +lQO xjF xjF xjF -vSc +wGo xjF gCO -hKz +clB wgW wgW jRT jRT -ryO +hfC xFp -sYk -uNB -xUQ +xZP +nMa +obY xAZ -sQT -pTl -uNB +gjl +fGl +nMa ulZ ulZ wIE -mVi -oik -tAu +gnl +wAJ +lhr hre oTY ulZ -uNB -xUQ +nMa +obY xOw ykT -xUQ -uNB -xOB -tTD -ylr -ylr -ylr -ylr -ylr -ylr -ylr -fBp +obY +nMa +cvd +xXg +ass +ass +ass +ass +ass +ass +ass +wrf rnB rnB rnB @@ -90372,10 +78241,10 @@ cpy tTD tTD rnB -igT +sAa vNk vNk -irs +geN xMO ozn xMO @@ -90384,9 +78253,9 @@ xMO nFN tQb mHv -uYi +vVG wpH -rXE +nSn wiE wiE wiE @@ -90394,26 +78263,26 @@ wly yhi wiE wEW -hzu -wFB -bhh +nuD +mLN +jCU ild jwM -vBd -vBd +cEY +cEY vVS ild ild ild -vBd +cEY jmG jmG -gIh +qpK uwT uwT uwT fWG -rCQ +osS xzK jas jas @@ -90428,18 +78297,18 @@ jas jas jas jas -ozw +irZ eso mYS fnm -pjY +jkg jas -vsk -phq -phq +jZi +tJI +tJI jas -cgF -phq +ncD +tJI jas nQu aEF @@ -90454,8 +78323,8 @@ bMX bMX cpy tiQ -acq -bJE +oVU +mJc aLJ dFR azz @@ -90468,28 +78337,28 @@ eJw iZI iZI fib -jcl -aCQ -swu -swu -swu -swu -hwt -jcl -mrL -dYX -hRy -oUC -uNT -aCQ -lXC -lXC +fLq +qba +asU +asU +asU +asU +wmn +fLq +asU +kaA +nQD +nQD +nQD +qba +nQD +nQD tiQ tiQ -icr -kHX -iSF -jeD +saC +saC +saC +saC tiQ saC saC @@ -90497,41 +78366,41 @@ saC saC qjG qjG -yiu -hLY -knt -mad -xmD -juw -wea -yiu -yiu -yiu -hLY +xFe +kwL +nja +bSY +twa +wsm +fNG +xFe +xFe +xFe +kwL saC saC xQc -mMr -eJq -knt -xmD -jpm +ptA +lkn +nja +twa +taY tiQ bjd -yje +xeT +key abL qsW qsW qsW -qsW cgn mqx jZE -vFD +lBO pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy cpy @@ -90541,10 +78410,10 @@ ien iel iel iel -trV +aZI pZo qSH -uRb +lQO xjF pTJ eHy @@ -90556,32 +78425,32 @@ xPW wgW jRT lol -ryO +hfC xFp -sYk -uNB -pTl +xZP +nMa +fGl xAZ djM -xUQ -uNB +obY +nMa ulZ wIE eKm -pFF -qsU -kmF +lZG +haz +sbY wIE bWA ulZ -uNB -xUQ +nMa +obY xOw ykT -xUQ -uNB -xOB -tTD +obY +nMa +cvd +rXN tTD sKJ sKJ @@ -90599,31 +78468,31 @@ tTD tTD rnB rnB -igT +sAa xXg vNk vNk -cKf -wNp -vdH -jLD -tLA -fOe +sem +pfJ +cqG +eSN +maw +cjI gFs pDU -hRz +tcQ vNk -woi -pka -ofZ +rFk +gSe +mfu pwu wly wiE taw -aYQ -gJM +nOG +hXb jmG -sBz +jCU ild jwM okA @@ -90635,38 +78504,38 @@ jkC jmG jmG ifx -ciA +deO uwT uwT uwT fWG -jKa +rxR jas jas -gUe -sAn -tFu -aeD -hzc -wTx -wUj -coR -ozw -ozw +fGw +nVq +lmH +jvR +edr +ceM +itC +bGF +irZ +irZ xcP -gSn +iUb vpe tJN rNv cYE -pjY +jkg aAI -iBe -phq -lHS +bGv +tJI +hDo jas jas -qNg +clG jas rmp aEF @@ -90681,7 +78550,7 @@ bMX bMX cpy tiQ -afn +eCh iZI bNE dDS @@ -90695,70 +78564,70 @@ iZI iZI iZI aLJ -jcl -aCQ -bOv -lXC -eAz -lFk -hwt -jcl -mrL -dYX +fLq +qba +kqz +nQD +hHg +bTf +wmn +fLq +asU +kaA tiQ tiQ tiQ -hfi -lXC -lXC +aYC +nQD +nQD tiQ -hTI -aCQ -dhJ -iTn -jfK +saC +saC +saC +saC +saC tiQ -jEq +kqV saC qjG qjG -yiu -yiu -yiu -lDc -lMN -whK +xFe +xFe +xFe +sGd +cSM +sEY mnw qjG -yiu -yiu -yiu -yiu +xFe +xFe +xFe +xFe saC saC tiQ tiQ tiQ seF -kne -rCz +sto +pVm yhz tiQ bjd eTQ -aLf +nqv kbb pMz yaH -tyU +lny lYK mqx mqx -hvh +bRc pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy cpy @@ -90768,10 +78637,10 @@ ien iel iel iel -trV +aZI pZo vGp -uRb +lQO xjF vuc wgW @@ -90782,16 +78651,16 @@ wgW jiP wgW ydb -val -ryO +iWV +hfC xFp -sYk -uNB -pTl +xZP +nMa +fGl ykT djM -pTl -uNB +fGl +nMa ulZ ulZ ulZ @@ -90801,14 +78670,14 @@ ulZ ulZ ulZ ulZ -uNB -ras +nMa +gwE xOw xAZ -pTl -uNB -xOB -tTD +fGl +nMa +cvd +rXN tTD sKJ tTD @@ -90826,7 +78695,7 @@ tTD tTD rnB rnB -igT +sAa xXg vNk vNk @@ -90836,12 +78705,12 @@ vNk vNk vNk vNk -vKl -vWp +qMS +jLb +vNk vNk vNk vNk -eds vNk mFA eur @@ -90851,25 +78720,25 @@ jmG jmG jmG jmG -six -six +ats +ats jmG jmG -six -six +ats +ats jmG jmG jmG xzK -cpk +iNF uwT uwT uwT uwT fWG -jKa +rxR jas -rWX +dCH vpe vpe vpe @@ -90881,19 +78750,19 @@ vpe fhl ijR ijR -jxC +fdu myE hvD kjj naH kwj -sbd -dYb -bIh -phq -lHS -phq -aam +ijV +xHI +dzk +tJI +hDo +tJI +vdS jas wFC aEF @@ -90908,8 +78777,8 @@ bMX bMX cpy tiQ -aEL -aqT +fqi +xSe azz aZD iZI @@ -90922,70 +78791,70 @@ ciS iZI iZI fFp -nno +jsn nTl nTl nTl nTl nTl nTl -lXC -eHp -dYX -jcl -jcl -jcl -aCQ -lXC -lXC -tiQ -sBg -hXP -tra -tCX -tFZ -tiQ -lKl -xmD -rVB -mbs -mLX -leH -lmu -lDr -lNI -aqo +nQD +asU +kaA +nQD +nQD +nQD +qba +nQD +nQD +tiQ +saC +saC +saC +saC +saC +tiQ +rEF +twa +vGn +vlf +wGe +fRB +bbq +diy +iIk +pLR ugN pHT -lXQ -yiu -yiu -yiu -hLY -tRS -cRD -sRx -cRD -xmD -knt -xmD -skk -tiQ -bjd +mAK +xFe +xFe +xFe +kwL +vZo +iHY +svM +iHY +twa +nja +twa +mrY +lTi bjd bjd -wRf +txJ +pir bjd -hKI -hFA +nEf +tAT lYK mqx mqx -hvh +bRc pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy cpy @@ -90995,10 +78864,10 @@ ien ien khG isa -trV +aZI pZo vGp -uRb +lQO xjF dFn wWe @@ -91010,32 +78879,32 @@ wgW wgW ydb xRQ -plz +xjF xFp -sYk +xZP pKX pKX -vnq -cYG +qEI +sXS pKX pKX ojp -wRZ -wRZ -wRZ +gOA +gOA +gOA ojp -wRZ -wRZ -wRZ +gOA +gOA +gOA ojp pKX pKX -qCd -dak +saW +iqD pKX pKX -xOB -tTD +cvd +rXN tTD tTD tTD @@ -91053,7 +78922,7 @@ rnB rnB rnB rnB -igT +sAa vNk vNk vdZ @@ -91061,21 +78930,21 @@ urd tvv vdZ vNk -mdr -cnw +bDW +ruN ngx xMO vNk -dBc -shc -lVV +jgi +ile +vcG vNk xvl -lot -aTR +kbG +wZY xvl xvl -cxE +jmG jmG jmG xzK @@ -91087,15 +78956,15 @@ xzK jmG jmG xzK -cpk +iNF uwT uwT uwT uwT uwT fWG -jKa -gSn +rxR +iUb vpe eso vpe @@ -91108,19 +78977,19 @@ eso vjr eso eso -gSn +iUb eso eso ipw vpe -ozw +irZ aAI -phq -uPS -cmc -phq -phq -qYq +tJI +frq +qCu +tJI +tJI +mDM jas bWv aEF @@ -91136,83 +79005,83 @@ bMX cpy tiQ jEu -aEL +fqi svW svW -jcl -jcl -jcl -jcl -aqT -jcl -eJZ -dgO -aEL -nno -nno +fLq +fLq +fLq +fLq +xSe +fLq +iOD +sKD +fqi +jsn +jsn nTl nTl nTl nTl nTl nTl -lXC -eLx -dYX -jcl -jcl -jcl -aCQ -lXC -lXC -tiQ -tiQ -idq -jcl -jcl -kkq +nQD +nQD +kaA +nQD +nQD +nQD +qba +nQD +nQD +tiQ +tiQ +saC +saC +saC +saC tiQ jEu -xmD +twa xYD fxh -ezB +kzp saC -lmz -liK -xmD +sbA +nlN +twa saC saC qjG yaj -yiu -kEL -yiu -noV -lyu -cRD -ayX -xVq -liK -gyC -pfj -pvz -tiQ -tiQ +xFe +lWw +xFe +kNP +xPq +iHY +cSP +vxu +nlN +ceq +bxd +cSP +qjG +lTi bjd -rMD -eZF +eDO +dZL bjd bjd bjd lYK mqx mqx -hvh +bRc pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy cpy @@ -91222,15 +79091,15 @@ ien ssh tNQ vGp -trV +aZI pZo vGp -uRb +lQO xjF xjF vwl fUx -nWD +ijN wZw ydb jll @@ -91239,30 +79108,30 @@ jRc xjF xjF xFp -aDj -xAw -nvt +xZP +pKX +vXu ykT kGb -aKf +qIT pKX -krN -dIT -tEc -yhG +uJA +vrp +wsh +sEm ojp -yhG -nDl -tEc -dIT +sEm +exn +wsh +vrp pKX -fyl +omE kcd oig -cLQ -xAw -lCn -tTD +dtB +pKX +cvd +rXN tTD tTD tTD @@ -91274,13 +79143,13 @@ cpy cpy cpy rnB -wzS -rfg -qtg +qTD +aoL +sCA rnB rnB rnB -igT +sAa vNk pZA tGo @@ -91293,27 +79162,27 @@ ikZ vYL ozn vNk -dtE +pGa ozn pUo -lVV +vcG xvl -icW -eHI +rMQ +adC xvl xvl -akk -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -cpk +teD +xzK +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +iNF uwT uwT cpy @@ -91321,8 +79190,8 @@ cpy uwT uwT fWG -taQ -oVS +cov +ygk kwj xcX nyJ @@ -91334,19 +79203,19 @@ lWf lWf cxo vpe -ozw -gSn -aRi -ozw +irZ +iUb +ibx +irZ xFv -vbV -ozw +yez +irZ jas -nHT -vxr -aGy -eJd -ptU +lOz +mcM +lnq +fet +waK jas jas bWv @@ -91362,19 +79231,19 @@ bMX bMX cpy cpy -efy -bKb -aAb -hRW -hRW -hRW -hRW -hRW -gqg -hRW -eMl -iOx -cHL +ebL +ovu +rlt +tYq +tYq +tYq +tYq +tYq +tAb +tYq +qDF +qVA +vhs nTl nTl nTl @@ -91385,74 +79254,74 @@ nTl nTl nTl nTl -dYX -jcl -jcl -jcl -aCQ -lXC -lXC -hME -hUY -ier -hRW -kHX -jcl -dAG -tiQ -jYE +kaA +nQD +nQD +nQD +qba +nQD +nQD +saC +saC +saC +saC +saC +saC +saC +tiQ +nfC xYD -knt -lAD +nja +gZy saC saC -seF -xQc +iJr +mVT saC saC myV yaj qjG -yiu -yiu -hLY -haG -xVq -xmD -xVq -xmD -jjl -hLY +xFe +xFe +kwL +jyj +vxu +twa +vxu +twa +hGD +kwL vDw -rbZ +jDL qjG bjd -rMD -eZF +eDO +dZL bjd fSf cZH -jDN +vzH mqx mKC -hvh -eZF -lfj -bjd -alI +bRc +dZL +key +key +mPj cpy cpy cpy cpy cpy ien -tNQ -qSH -qSH -trV -pZo +jTM +dGC +dGC +aZI +rFr vGp -eKe +weH xFp xjF xjF @@ -91465,32 +79334,32 @@ xjF xjF xjF xFp -dHF +frK xZP -mkT +dfx xAZ xAZ xOw ykT -rlE -buI +cPr +xNN mSe nYF mSe -neO +ijw mSe nDn hYV -mZj -rlE +eIe +cPr xAZ qqx pag bia -mkT -lDE -tTD -tTD +dfx +cvd +rXN +rnB tTD tTD tTD @@ -91501,13 +79370,13 @@ cpy cpy cpy rnB -plN -rEo -jKb +tBZ +bfF +mJO tTD rnB rnB -igT +sAa vJD tGh uUk @@ -91518,19 +79387,19 @@ vNk gyb xMO tQb -kfs +clH vNk -dBc +jgi xMO tQb -oga +hFB xvl -uic -agM +oiI +kJU xvl xvl -xWO -fWG +hNt +fyX fWG fWG fWG @@ -91548,8 +79417,8 @@ cpy uwT uwT uwT -bqE -gSn +rQG +iUb vpe vpe wwc @@ -91560,12 +79429,12 @@ eso vpe eso vpe -ozw +irZ jas jas jas jas -nOT +oLU jas jas jas @@ -91589,19 +79458,19 @@ bMX bMX cpy cpy -efy -jcl -bNT -swu -bxU -swu -swu -swu -swu -cyv -eMz -cyv -gdX +ebL +fLq +umw +asU +kRq +asU +asU +asU +asU +dJv +iZs +dJv +rXI nTl nTl nTl @@ -91612,49 +79481,49 @@ nTl nTl nTl nTl -dZd -hRW -hRW -hRW -egD -lXC -lXC -iZI -hVk -igp -swu -iUT -kHX -evx +arH +tYq +tYq +tYq +eKU +nQD +nQD +saC +saC +saC +saC +saC +saC +saC xQc -lAK +iQq xYD -ljd +cZg saC saC ncA -lDN -pxN +kSr +qDf saC -xQc -sdR +mVT +hsJ lNA -wXA -vhA -wXA -iyQ -qix -eKK -hef -eKK -hef -iFk -jef -pfj +qhV +cxX +qhV +nnA +cnZ +tSt +ssN +tSt +ssN +fbr +lQv +bxd qjG qjG bjd -nRy +key pqQ bjd fSf @@ -91662,63 +79531,63 @@ cZH mqx mqx mqx -hvh +bRc pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy cpy wDj wDj wDj -vGB -vGB +mlL +mlL wDj wDj -pZo +atP vGp vGp -eKe -dHF -dHF -ecq -dHF -tOV -qZu -dHF -gLa -dHF -hAw -dgd -qSH -sPh -uKy +weH +frK +frK +siQ +frK +mVg +ogU +frK +xUD +frK +dDY +oJn +qSH +vko +jSY ykT axD kGb vKe -ydS -pfE +ahp +iOr dbF mHC mSZ -nfm +lyw aXx mSZ rsX -lqL -ydS +wOp +ahp qtx mTK sdC dvp -uKy -lDE -tTD -tTD -tTD +jSY +cvd +rXN +rnB +rnB tTD tTD cpy @@ -91728,13 +79597,13 @@ cpy cpy cpy rnB -rFh -rKe -rUg +sYO +pLa +oeK tTD rnB rnB -igT +sAa vJD tGh pBK @@ -91745,19 +79614,19 @@ vNk nYW vkD ngx -sSG -lkr -cXf +euk +ebh +itB qDw ngx -wNp -lkr +pfJ +ebh xgA bsG -vOT -xvB -xWO -fWG +vyQ +heZ +pNP +fyX fWG fWG fWG @@ -91775,18 +79644,18 @@ cpy uwT uwT uwT -bqE +rQG jas -aRi -ozw -rZE -ozw +ibx +irZ +oeY +irZ vpe vpe eso eso vpe -coR +bGF jas jas cEj @@ -91795,7 +79664,7 @@ myE qHr vpe vxa -ppU +dFP bWv bWv nQu @@ -91816,19 +79685,19 @@ bMX bMX cpy cpy -efy -bLh -bQC -lXC -lXC -lXC -lXC -lXC -lXC -ezW -cUh -dhW -nno +ebL +xsD +vPr +nQD +nQD +nQD +nQD +nQD +nQD +aaE +dXF +oxO +jsn nTl nTl nTl @@ -91839,78 +79708,78 @@ nTl nTl nTl nTl -efS -elx -enr -elx -elx -elx -elx -hNj -hXA -fvQ -fDC -gwk -hgQ -exB +uRJ +hQL +wNA +hQL +hQL +hQL +rpl +saC +saC +saC +saC +saC +saC +saC xQc -xmD -xmD -knt +twa +twa +nja kFo saC -nwR -oem -maj -maj -seF -knt -hna -yiu -yiu -pEm -tlv -qJE -xVq -xmD -xVq -ayX -hna -yiu -oyK -ayX +ooH +fFb +bvE +bvE +iJr +nja +gof +xFe +xFe +dFL +ivo +khz +vxu +twa +vxu +cSP +gof +xFe +cCm +cSP vKP bjd -mRg +key pqQ bjd fSf -cZH -cgn -mqx -mqx -hvh +pif +qsW +qsW +qsW +xrD pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy wDj nJV -elX -hll -hKu -ksa -kOz +cRi +eIj +jQN +bWe +bFS wDj -lVZ +cDB vGp vGp vGp vGp vGp -ecq +siQ vGp vxg vGp @@ -91920,32 +79789,32 @@ qSH qSH qSH qSH -cfv -xAw -xnI +vko +pKX +cxx ykT djM -rie +exG pKX -krN -iLq -krN -tEc +uJA +xcS +uJA +wsh ojp -ojw -tEc -dyH -krN +cZq +wsh +vsP +uJA pKX -art +hFr gNn mgb -rUe -xAw -xBS -tTD -tTD -tTD +fCf +pKX +cvd +rXN +rnB +rnB tTD tTD tTD @@ -91961,7 +79830,7 @@ tTD rnB rnB rnB -igT +sAa vJD tGo ugR @@ -91972,19 +79841,19 @@ vNk xMO xMO kwK -knN -cUa -hFG +bQw +bze +mWm hIx nNM -osV -cUa +wrX +bze aSZ acE -vOT -xvB -xWO -fWG +vyQ +heZ +pNP +fyX fWG fWG cpy @@ -92002,18 +79871,18 @@ uwT uwT uwT uwT -bqE +rQG jas jas jas jas jas -sSZ +vTL vpe vpe eso vpe -ryu +oHf jas cEj vpe @@ -92043,19 +79912,19 @@ bMX bMX cpy cpy -efy -bLk -cce -lXC -lXC -ijO -ciL -lXC -crX +ebL +dLb +rij +nQD +nQD +gnD +fZD +nQD +iqE eBi cUl dhX -dIX +hsf nTl nTl nTl @@ -92066,78 +79935,78 @@ nTl nTl nTl nTl -nno -nno -lXC -lXC -lXC -lXC -lXC -iZI -hXP -egY -cHy -jIQ -bXl -jcl -xQc -tMV -tMV -kne +jsn +jsn +nQD +nQD +nQD +nQD +nQD +saC +saC +saC +saC +saC +saC +saC xQc -mkb -lnd +sEY +sEY +sto +mVT +ptR +jKE xYD -pAN -maj -mql -knt -hna -yiu -yiu -yiu -syg -xmD -xVq -xmD -xVq -uGj -hna -wea -hLY -dpz +bRZ +bvE +kdc +nja +gof +xFe +xFe +xFe +gVU +twa +vxu +twa +vxu +miX +gof +fNG +kwL +uus qjG bjd -lfj +key pqQ bjd bjd bjd -lYK -mqx -mqx -hvh +eDO +eDO +eDO +key pqQ -qpd -bjd -alI +iaQ +aDb +mPj cpy cpy wDj -wJk +iHM ezo eJR iDH eJR -rtX -lUy -tJm +stR +kcF +npC vGp vGp vGp vGp vGp -ecq +siQ nUO hqZ vGp @@ -92147,32 +80016,32 @@ rMR qSH qSH vGp -onj +vko pKX pKX -pKn -mVj +wTS +tVO pKX pKX ojp -wRZ -wRZ -wRZ +gOA +gOA +gOA ojp -wRZ -wRZ -wRZ +gOA +gOA +gOA ojp pKX pKX -heX -jMk +rck +etS pKX pKX -xOB -tTD -tTD -tTD +cvd +rXN +rnB +rnB tTD tTD tTD @@ -92188,7 +80057,7 @@ tTD rnB rnB rnB -igT +sAa vJD tGo tCL @@ -92199,19 +80068,19 @@ vNk hAy xMO ngx -sHS +sqR vNk vNk vNk vNk vNk xvl -eMD -qZd +pLd +cHi xvl xvl -xWO -fWG +pNP +fyX fWG cpy uwT @@ -92229,26 +80098,26 @@ uwT uwT uwT uwT -jqr -xxq -xxq -xxq +iFP +dhD +dhD +dhD xzK jas jas -nZx +gRd vpe eso gRi -coR +bGF jas -sjA +rnU vpe -sjA +rnU eso -sjA +rnU vpe -goO +qZe jas jas jas @@ -92270,19 +80139,19 @@ bMX bMX cpy cpy -efy -bMa -aCQ -swu -swu -swu -cil -swu -swu -eBH -cVc -dip -gnd +ebL +mQS +qba +asU +asU +asU +bMS +asU +asU +tlJ +oVX +nhe +luW nTl nTl nTl @@ -92293,78 +80162,78 @@ nTl nTl nTl nTl -gKM -jhS -jhS -tra -egY -lXC -lXC -hNV -hXZ -igp -swu -iUX -tCX -jcl -xQc -jjV -xmD -knt -xQc -mlp -nxQ -oKK -pDM -qTE +fvI +cLU +cLU +jvQ +jBg +nQD +nQD +saC +saC +saC +saC +saC +saC +saC xQc -wyA -hna -yiu -yiu -yiu -syg -xmD -cRD -uvt -xVq -uGj -gGg -wTq -jWB -lKl +dWj +twa +nja +mVT +ujn +tUA +yaT +eaI +vtY +mVT +tgQ +gof +xFe +xFe +xFe +gVU +twa +iHY +aUm +vxu +miX +hvH +pdR +riS +rEF lTi bjd -lul -dfK -qKO -xLr -xXv -lYK -mqx -mqx -hvh +key +scx +eiT +bYU +xsz +qZi +qZi +qZi +key pqQ -qpd -bjd -alI -alI -alI +iaQ +mPj +mPj +mPj +mPj wDj -jVm +xpy eJR kbH iHD ksk -kQc -ttp -tJG +wEe +pNh +qLD qSH vGp vGp vGp vGp -ecq +siQ nWq vGp qSH @@ -92374,13 +80243,13 @@ qSH qSH vGp vGp -onj -uNB -xUQ +vko +nMa +obY ykT xOw -xUQ -uNB +obY +nMa fkj fkj fkj @@ -92390,17 +80259,17 @@ fkj fkj fkj fkj -uNB -pJt +nMa +fZh iGn uOp -bSI -uNB -xOB -tTD -tTD -tTD -tTD +tfz +nMa +cvd +rXN +rnB +rnB +rnB sKJ tTD tTD @@ -92415,30 +80284,30 @@ tTD rnB tTD rnB -igT +sAa vNk qfK wjf wjf uNp tGo -sHk +jXW xMO eZM hZL -wNp +pfJ vNk vNk -vLQ -oga +msG +hFB vNk xvl -xje -ffb +iaT +whI xvl xvl -xWO -fWG +pNP +fyX dBD sps sps @@ -92460,22 +80329,22 @@ uwT uwT uwT uwT -bqE +rQG xzK jas -gbh +dDE vpe eso eso -coR +bGF jas -goO +qZe oJj -goO +qZe eFb -sjA +rnU eso -goO +qZe jas ctE jas @@ -92497,19 +80366,19 @@ bMX bMX cpy cpy -efy -bIQ -ccu -tra -tra -tra -tra -tra -tra -tra -cVm -cAp -tra +ebL +lIY +oBb +jvQ +jvQ +jvQ +jvQ +jvQ +jvQ +jvQ +vYS +aUf +jvQ nTl nTl nTl @@ -92520,78 +80389,78 @@ nTl nTl nTl nTl -vQn -aEL -aEL -jcl -aCQ -lXC -lXC -iZI -hYk -aDS -tra -tCX -jcl -cYe -tiQ -dXo +aod +nQD +nQD +nQD +qba +nQD +nQD +saC +saC +saC +saC +saC +saC +saC +tiQ +kWC xYD -kpE -xQc -xQc -nEd -piW -pEp -xQc -xQc -knt -hna -qFW -yiu -noD -ihf -suG -cRD -lkl -xVq -hdQ -ayX -nqQ -hdQ -asH +wGR +mVT +mVT +sAZ +rOt +fkg +mVT +mVT +nja +gof +aqf +xFe +ncQ +nuv +aAL +iHY +pbv +vxu +mHD +cSP +vaP +mHD +dQj tiQ bjd -dXX -pWC -rMD -bjd -pqQ -lYK -mqx -mqx -hvh -eZF -bjd -bjd -bjd +waW +eDO +eDO +mSJ +dZL +qZi +qZi +qZi +key +dZL +key +key +key bjd bjd mPj -bel +bVl ftd lTd iJE -kvM -kYL +cCh +nXr wDj -lYg +tEX qSH qSH vGp vGp vGp -ecq +siQ tkL vGp qSH @@ -92601,31 +80470,31 @@ qSH qSH vGp vGp -onj -uNB -xUQ +vko +nMa +obY xAZ djM -pTl -uNB +fGl +nMa fkj mtI mHU -mUG -ngK -mnz +xYM +gLW +qxV bWd jHi fkj -uNB -huq +nMa +kdZ sAp vHw -fEF -uNB -xOB -tTD -tTD +oin +nMa +cvd +rXN +rnB sKJ sKJ sKJ @@ -92642,30 +80511,30 @@ tTD tTD rnB rnB -kEo +tIA vNk xHr xez xez xez veT -dzB +vlh uQr ngb hMT -hFG -mfS -osV +mWm +kEm +wrX qAt -wMq +fBZ vNk -vOT +vyQ xhD acE -vOT -xvB -xWO -fWG +vyQ +heZ +pNP +fyX qjO ylo ylo @@ -92681,19 +80550,19 @@ ybj uwT uwT uwT -dqB -con -con -con -con -con +kVH +oUH +oUH +oUH +oUH +oUH xzK xzK jas jas -gSn -gSn -gSn +iUb +iUb +iUb jas jas jas @@ -92725,100 +80594,100 @@ bMX cpy tiQ jEu -bIQ +lIY svW svW -oUZ -jcl -jcl -jcl -jcl -jcl -eJZ -hwt -jcl -lXC -lXC +iWx +fLq +fLq +fLq +fLq +fLq +iOD +wmn +fLq +nQD +nQD nTl nTl nTl nTl nTl nTl -nno -lXC -hwt -jVa -jcl -jcl -fkW -lXC -lXC +jsn +nQD +wmn +nQD +nQD +nQD +cuQ +nQD +nQD hOy -tiQ -dWX -jcl -jcl -bCd +saC +saC +saC +saC +saC tiQ jEu -xmD +twa xYD -kpE -xmD -xQc -xQc -seF -xQc -xQc -uQi -knt -juw -kEL -yiu -hLY +wGR +twa +mVT +mVT +iJr +mVT +mVT +kls +nja +wsm +lWw +xFe +kwL saC saC tiQ tiQ tiQ seF -tMV -rCz +sEY +pVm seF tiQ tiQ bjd +fFr +wUD +key bjd -bjd -bjd -bjd -qEQ -abL -cgn -mqx -hvh -dfK -woU -woU -woU -xnX -gib +xeT +qZi +qZi +qZi +qZi +hLW +wRA +wRA +wRA +fjO +qnt mPj -btP +uEu axN eJR -iMQ +dnW wDj wDj wDj -pRv +vXB xSv xSv xSv lTV lTV -ssj +qMN lTV dCY qSH @@ -92828,38 +80697,38 @@ qSH vGp vGp vGp -onj -uNB -pTl +vko +nMa +fGl xAZ xOw -lZI -uNB +cOg +nMa gUi jHi fkj -mVi -oik -tAu +gnl +wAJ +lhr mHU fkj fkj -uNB -xUQ +nMa +obY xOw snb -rkV -uNB -xOB -tTD -hrk -vlT -vlT -vlT -vlT -vlT -vlT -vlT +xPT +nMa +cvd +xXg +fjB +fjB +fjB +fjB +fjB +fjB +fjB +fjB rnB rnB rnB @@ -92869,35 +80738,35 @@ tTD tTD rnB rnB -igT +sAa vNk qfK uNp uNp ugR tGh -sHk +jXW cct gbm ozn -cXf +itB vNk -gtt +dWz chR -jeH +fEB vNk -ntS +aep xgA acE -vOT -xvB -xWO -fWG +vyQ +heZ +pNP +fyX qjO ylo -byR -atL -sGj +gOr +hVG +aeG ylo yaf uwT @@ -92908,7 +80777,7 @@ uwT uwT uwT uwT -bqE +rQG uzI dDq dDq @@ -92919,9 +80788,9 @@ uzI uzI uzI ybz -tkA -tkA -tkA +kim +kim +kim cpy cpy cpy @@ -92951,8 +80820,8 @@ bMX bMX saC tiQ -bwU -aqT +rmR +xSe azz azz azz @@ -92965,87 +80834,87 @@ dDS fFw iZI iZI -lXC +nQD nTl nTl nTl nTl nTl nTl -lXC -swu -hwt -jVa -jcl -jcl -aCQ -lXC -lXC -tiQ -hZn -aAb -hRW -kHX -jhY -tiQ -jjV -xmD +nQD +asU +wmn +nQD +nQD +nQD +qba +nQD +nQD +tiQ +saC +saC +saC +saC +saC +tiQ +dWj +twa xYD fxh -hdQ -tMV -whK -xmD -xmD -xmD -xmD -gyC -kpG +mHD +sEY +dEF +twa +twa +twa +twa +ceq +bWu saC saC saC saC tiQ tiQ -yai -ayX -ayX -xmD -xmD -kss +wtb +cSP +cSP +twa +twa +jkq tiQ tiQ -alI -alI -alI -alI bjd -lwr -rSs -abL -cgn -jZE -hNP -hNP -hNP -efM -caV -pcV -xLr +sFk +sFk +bjd +bjd +lhF +uUA +qZi +qZi +qZi +qZi +qZi +qZi +qZi +srF +dLH +bYU lAa gjA -rtX +stR wDj wDj -vGp -vGp -pZo +xFp +xFp +atP qSH qSH qSH qSH vGp -ecq +siQ vGp umR qSH @@ -93054,31 +80923,31 @@ qSH qSH vGp vGp -kqp -sYk -uNB -xUQ -xnI -xkv -xUQ -uNB +lTP +xZP +nMa +obY +cxx +iMi +obY +nMa fkj fkj mHU -pFF -qsU -kmF +lZG +haz +sbY fkj mtI fkj -uNB -pTl +nMa +fGl bSa xAZ -xUQ -uNB -nlY -vlT +obY +nMa +cvd +xXg wIi tTK tTK @@ -93087,7 +80956,7 @@ tTK tTK tTK xXg -diT +ozy rnB rnB cpy @@ -93096,7 +80965,7 @@ rnB tTD rnB rnB -igT +sAa vJD tGh uNp @@ -93107,24 +80976,24 @@ vNk hAy xMO ozn -cXf +itB vNk -dzs +tzj ozn -wNp +pfJ vNk xvl -xjY -qZd +cQy +cHi xvl xvl -xWO -fWG +pNP +fyX qjO ylo -sGj +aeG ttC -byR +gOr ylo mkm uwT @@ -93135,17 +81004,17 @@ pLu uwT uwT uwT -bqE -yar -fOX -fOX -rOb -rOb -rOb -xaN -vDo +rQG +tGE +pUY +pUY +qZl +qZl +qZl +lyt +mcQ tos -dhH +cpb wQa wQa wQa @@ -93192,87 +81061,87 @@ dDS iZI iZI iZI -jcl -aCQ -pQR -nno -nno -jPz -hwt -jcl -iRY -hwt -tiQ -tiQ -tiQ -aCQ -lXC -lXC -tiQ -hZK -aCQ -fMT -iVk -jic -tiQ -jjV -iQe -vIS -kBm -pEs -qET -aqo -pEs -rmV -gwK -gwK -xFt -yiu -yiu +fLq +qba +oAn +jsn +jsn +gQe +wmn +fLq +aBK +wmn +tiQ +tiQ +tiQ +qba +nQD +nQD +tiQ +saC +saC saC saC saC tiQ -kgm -gIZ -iQe -vIS -vIS -pfj -vAX -kJc -tiQ +dWj +qKC +jGw +sTT +pEs +pLR +crO +pEs +hKr +bSZ +bSZ +leb +xFe +xFe saC saC saC -alI +tiQ +qMn +gtZ +qKC +jGw +jGw +bxd +ltl +edc +tiQ bjd -gzY -ama -kbb -abL -qsW -qsW -qsW -qsW -xsE -eZF -tyb -lao +ptB +iWL +bjd +bjd +rjN +rKQ +uUA +qZi +qZi +qZi +qZi +qZi +qZi +lrT +jlf +mSJ iJE gok -rtX -vGB -mTa -oqn -pdv -umR +stR +mlL +txd +qJh +qhR +atP qSH qSH qSH vGp vGp -ecq +siQ qSH umR qSH @@ -93280,13 +81149,13 @@ qSH qSH vGp vGp -kqp +lTP xFp -xAw pKX pKX -kIZ -laB +pKX +yhe +esA pKX pKX pKX @@ -93299,12 +81168,12 @@ fkj fkj fkj pKX -pTl -vfK -rie -xUQ +fGl +tcP +exG +obY pKX -nlY +cvd xXg tTK tTK @@ -93315,7 +81184,7 @@ tTK tTK tTK gjt -diT +ozy cpy cpy rnB @@ -93323,7 +81192,7 @@ rnB tTD rnB sKJ -igT +sAa vJD fMP uNp @@ -93334,24 +81203,24 @@ vNk bXO xMO ozn -oNM +rOZ vNk -riJ +aln ddK -vMg +gGJ vNk xvl -qIE -wog +gla +oUU xvl xvl -xWO -fWG +pNP +fyX qjO jOF -oiR +nua pLs -fWM +ygr ylo mkm uwT @@ -93362,17 +81231,17 @@ tXW uwT uwT uwT -bqE -yar -fOX -gVA -gVA +rQG +tGE +pUY +hVz +hVz xPH -gVA -xaN -vDo +hVz +lyt +mcQ tos -dhH +cpb wQa wQa wQa @@ -93405,8 +81274,8 @@ bMX bMX saC saC -aGI -bdv +ijZ +tAc aLJ aLJ iZI @@ -93419,116 +81288,116 @@ eOe iZI iZI fFw -jcl -aCQ -swu -mrL -mrL -mrL -hwt -jcl -swu -hwt -hRy -ifh -gOo -aCQ -lXC -lXC -tiQ -tiQ -igA -tCX -iVU -jig -tiQ -xmD -hna -yiu -hLY -xmD -tMV -whK -xmD -ajY -yiu -yiu -nqe -yiu -yiu -yiu -saC -saC -tiQ -dck -hmV -qCE -xSL -txo -jef -pfj -tfK +fLq +qba +asU +kcA +kcA +kcA +wmn +fLq +asU +wmn +nQD +nQD +nQD +qba +nQD +nQD +tiQ +tiQ +saC +saC +saC +saC +tiQ +twa +gof +xFe +kwL +twa +sEY +dEF +twa +pJb +xFe +xFe +cwf +xFe +xFe +xFe +saC +saC +tiQ +iHn +qLY +voJ +dml +gMt +lQv +bxd +mcK tiQ -saC -saC -saC -alI bjd +ptB +iWL +ptB bjd -lfj -eTQ -woU -aLf -ubF -ubF -woU -woU -otx -qYy +bjd +eDO +hLW +wRA +sbS +sbS +sbS +wRA +wRA +iUa +wUE mPj -rtX +stR iJE -rtX -vGB -ncz -otC -pgp -umR +stR +mlL +rut +fuU +rEO +atP qSH qSH vGp vGp -kqp -ecq -vTx -qJU -pOm -vTx -vTx -vTx -vTx +lTP +siQ +dGC +wdb +glh +dGC +dGC +dGC +dGC xFp tDS tDS -anw -tdV -paK -ePc -nmB -jCS +mDn +ahT +ewz +azq +oWi +dPk tDS -thc -thc +gXG +gXG tDS tDS -thc -thc +gXG +gXG tDS gdO gdO gdO -ayn -xNw +sdH +eiz gdO gdO tTK @@ -93542,7 +81411,7 @@ tTK tTK tTK tTK -dCJ +rXN rnB cpy cpy @@ -93550,7 +81419,7 @@ rnB tTD tTD tTD -igT +sAa vJD qdS ugR @@ -93561,24 +81430,24 @@ vNk vwH xMO ozn -wNp +pfJ vNk -dzs +tzj kSs -vMg +gGJ vNk -kEQ +fIm xhD bsG -kEQ -xvB -xWO -fWG +fIm +heZ +pNP +fyX qjO ylo -hYf -nqw -hYf +izh +oYc +izh ylo syB uwT @@ -93589,17 +81458,17 @@ fWG uwT uwT uwT -bqE -mam -fOX -gVA -gVA +rQG +nnZ +pUY +hVz +hVz acp -gVA -xaN -vDo +hVz +lyt +mcQ tos -dhH +cpb wQa wQa wQa @@ -93633,7 +81502,7 @@ bMX saC saC saC -aGI +ijZ aLJ aLJ aLJ @@ -93646,130 +81515,130 @@ dDS fpn iZI oim -jcl -aCQ -swu -swu -mrL -lFd -qZB -jVa -pgJ -hwt -jcl -jcl -gRV -hfE -lXC -lXC -swu -tiQ -mRh -iGl +fLq +qba +asU +asU +kcA +gDe +nnE +cks +kcA +wmn +nQD +nQD +nQD +cuQ +nQD +nQD +kcA tiQ +saC +saC +saC tiQ tiQ vjl -hna -yiu -hLY -xCS -tiQ -tiQ -lAK -xNt -yiu -yiu -nqe -yiu -yiu -yiu -hLY -xmD +gof +xFe +kwL +kzi +tiQ +tiQ +iQq +iTj +xFe +xFe +cwf +xFe +xFe +xFe +kwL +twa idX -mFg -tqh -iQe -csy -wWc -pfj -syV -kJc -tiQ -saC -saC -saC -alI -alI -bjd -bjd -bjd -bjd -bjd -bjd +eus +hvq +qKC +iXv +oHZ +bxd +pwF +aUY +vKP bjd +eDO +aDb +eDO bjd bjd +eDO +qZi +qZi +qZi +qZi +eDO +eDO +eDO bjd bjd mPj -rhh -rtX -xjU +dyX +stR +rMB wDj -nff -oxT -pgG -umR +amn +fws +aBe +atP qSH vGp vGp -kqp +lTP xFp tDS tDS -eWW -thc +oFP +gXG tDS -thc -thc +gXG +gXG tDS tDS tDS -wNF -gkl -kYu +pax +bFc +jyA xDM lwW -kIM -tdV -mlZ -uNS -uNS +reU +ahT +sTd +fRh +fRh tDS -dcJ -btb -lCj -maE +hgf +nsS +yjZ +suz gdO -muP -lMT -rDM -sha -pmg -pyA +hRH +mIf +mtY +wCo +noh +uGo tTK -twQ -mTx -jmi -sbJ +kuV +gJa +eud +sIy tTK -wYX -lPa -rar +wyN +jwt +hbl tTK tTK -dCJ +rXN rnB cpy cpy @@ -93777,7 +81646,7 @@ tTD tTD tTD tTD -igT +sAa vJD xcJ ugR @@ -93788,23 +81657,23 @@ vNk fko xMO xMO -wNp +pfJ urv -wNp +pfJ xMO -cXf +itB vNk -kEQ +fIm xhD bsG -vOT -xvB -xWO -fWG +vyQ +heZ +pNP +fyX qjO ylo ylo -ycb +uJG ylo ylo syB @@ -93816,17 +81685,17 @@ fWG uwT uwT uwT -bqE +rQG uzI -rOb -gVA -qpE +qZl +hVz +vzx acp xPH -xaN -vDo +lyt +mcQ tos -dhH +cpb wQa wQa wQa @@ -93861,7 +81730,7 @@ saC saC saC saC -aGI +ijZ aLJ aLJ dFT @@ -93873,130 +81742,130 @@ cVy iZI dJs svW -jcl -aCQ -swu -swu -swu -swu -hwt -jcl -svW -hwt -hRy -oUC -uNT -aCQ -lXC -lXC -swu -swu -swu -jcl +fLq +qba +asU +asU +asU +asU +wmn +fLq +jsn +wmn +nQD +nQD +nQD +qba +nQD +jsn +kcA +saC saC saC saC saC saC -yiu +saC +saC +xFe saC saC tiQ tiQ -xmD -hna -yiu -mrc -mAC -yiu -yiu -kVa -hLY -hdQ -yjg -xmD -hna -wAE +twa +gof +xFe +fEa +oZt +xFe +xFe +oAk +kwL +mHD +eOd +twa +gof +qrn lmY lmY -sfM -hLY -xmD -tiQ -saC -saC -saC -saC -alI -alI -alI -alI -alI -alI -alI +gfI +kwL +twa +qjG +bjd +eDO +key +key +ptB +bjd +eDO +qZi +qZi +qZi +eDO wDj wDj wDj wDj wDj wDj -vGB -wPA -vGB +mlL +gsW +mlL wDj -qSH -qSH -qSH -umR +xFp +xFp +frK +oBu vGp vGp vGp -uRb +lQO tDS tDS -vzg -vUx -nmB -nrL -nmB -ddP -vwQ -wRa +vvI +aHY +oWi +gxR +oWi +bxk +cgx +bJw tDS -oyC -kms +pYT +veU kYH lkH lwZ jUn -kze -bWm -jTl -uNS +cHS +iik +pTr +fRh tDS -pON -cxT -rVO -pJG +xbJ +gwe +fOS +iXb gdO gdO -nYv +hUy oyr pbN -pnz +kGt gdO tTK -twQ -euD -vyH +kuV +mlu +gBg tTK tTK -lvF -ukt -bDn -rcV +uqA +ulM +bxh +vyM tTK -dCJ +rXN cpy cpy rnB @@ -94004,7 +81873,7 @@ tTD tTD tTD tTD -igT +sAa vNk wlw tGh @@ -94015,19 +81884,19 @@ vNk bXO ozn xMO -wNp +pfJ urv -wNp +pfJ ozn -wNp +pfJ vNk xvl -icW -eHI +rMQ +adC xvl xvl -xwv -fWG +pNP +fyX gBy mUr kSm @@ -94043,17 +81912,17 @@ fWG uwT uwT uwT -bqE +rQG uzI -rOb +qZl xPH acp xPH xPH -wZz -vDo +fSK +mcQ tos -dhH +cpb wQa wQa wQa @@ -94100,25 +81969,25 @@ dDS fFw iZI svW -jcl -aCQ -swu -jcl -jcl -swu -hwt -jcl -svW -bye +fLq +qba +asU +fLq +fLq +asU +wmn +fLq +jsn +sLE tiQ tiQ tiQ -aCQ -lXC -lXC -iRY -swu -jcl +hVs +jsn +jsn +gDe +saC +saC saC saC saC @@ -94131,99 +82000,99 @@ saC tiQ tiQ saC -rVB -mbs -msb -wTq -wTq -wTq -wTq -jWB -xmD -tMV -xmD -hna -wAE +vGn +vlf +oaO +pdR +pdR +pdR +pdR +riS +twa +sEY +twa +gof +qrn lmY lmY -sfM -hLY -ayX -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC +gfI +kwL +cSP +qjG +bjd +key +aDb +aDb +eDO +mSJ +eDO +qZi +qZi +eDO wDj wDj -saC -saC -saC +bjx +bjx +bjx wDj -eOT -sOL -sOL -sOL +jsr +bjx +bjx +bjx wDj -qSH -qSH +xFp +sdS qSH umR vGp vGp vGp -uRb -hDZ -nuQ -btb -fAH -gsM -hOl -tww -tww -vxe -way -fRk -ydV -kVT +lQO +ayc +uyn +nsS +wDW +fTf +xzq +cLu +cLu +eyg +iOC +tMg +rWe +eXC kZj oGF pVo wGY fRS iXZ -mpr -btb +uox +nsS tDS -qmr -orI -djD -way -kEP -nCZ -oyB +mjP +ikX +vAp +iOC +kzW +hIT +dZf uuH pej -ubw -oml +uoS +knC tTK -gVD -nwZ -vyH +swg +uwD +gBg tTK -dJB -reB -idt -viD -qxL +mpB +hLU +rHG +kvZ +xyx tTK -dCJ +rXN cpy rnB tTD @@ -94231,7 +82100,7 @@ rnB rnB tTD rnB -igT +sAa vNk vNk tFB @@ -94239,22 +82108,22 @@ uuB uuB tMT vNk -cST -wNp -wNp -rIx +wcK +pfJ +pfJ +sPD vNk -dWm +nmJ ozn -sYM +iXA vNk -lGW +mux xgA acE -kEQ +fIm xvl -otS -fWG +pNP +fyX fWG fWG uwT @@ -94270,17 +82139,17 @@ fWG uwT uwT uwT -bqE -yar -fOX -gVA -gVA -gVA -gVA -wZz -vDo +rQG +tGE +pUY +hVz +hVz +hVz +hVz +fSK +mcQ tos -dhH +cpb wQa wQa cex @@ -94296,7 +82165,7 @@ ctE ctE jas jas -ogT +bXY jas jas cpy @@ -94326,25 +82195,25 @@ fib gbQ jYj jYj -eFP -fIe -egd -ewt +hQL +qWb +vBF +ktb nTl nTl -jcl -hwt -jcl -svW -hwt -hRy -ifh -eMm -aCQ -lXC -lXC -swu -swu +fLq +wmn +fLq +nQD +wmn +nQD +nQD +nQD +hVs +jsn +jsn +saC +saC saC saC saC @@ -94357,100 +82226,100 @@ saC saC tiQ tiQ -xmD -xmD -knt -xmD -xmD -xmD -lkl -xmD -xmD -xmD +twa +twa +nja +twa +twa +twa +pbv +twa +twa +twa idX -iDg -tqh -gGg -xME -hYg -jWB -eIT -kJc -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC +mKU +hvq +hvH +tTF +jfQ +riS +kTW +aUY +qjG +bjd +rbY +aDb +aDb +key +mSJ +vsg +mAJ +mAJ +wsp wDj -saC -saC -saC -arN -vGB -sOL +bjx eJR eJR -fQD -vGB -qSH -qSH +mEC +mlL +bjx +eJR +eJR +bvS +mlL +xFp +sdS qSH umR vGp vGp vGp -uRb -fRk -peS -wDh +lQO +tMg +qvd +vOm mhT sWr wGY sWr krK -muV -xtk +cWN +tRC tDS -czT -pWX +hir +pNQ kZB lHV lwW sWr qBb iXZ -nxj -rMg +aSQ +pqt tDS -uNJ -orS -muV -dHg -odt -puJ -elS +blM +iOP +cWN +hNX +rlG +mVA +wWI xxw pej -ubw -efk +uoS +gsi tTK -ekf -oCG -fXZ +dKA +wyO +pin tTK tTK tTK -kXg +pzV tTK tTK tTK -dCJ +rXN cpy tTD tTD @@ -94458,7 +82327,7 @@ tTD tTD tTD tTD -igT +sAa wIi vNk vNk @@ -94467,21 +82336,21 @@ vJD vNk vNk vNk -dcF +vMy vNk vNk vNk -cAx +cDf xiu -pqB +gng vNk -vOT +vyQ xgA acE -kEQ -vyk -otS -fWG +fIm +mso +pNP +fyX cpy cpy uwT @@ -94497,17 +82366,17 @@ uwT uwT uwT uwT -bqE -yar -fOX -gVA -gVA -gVA -qpE -wZz -vDo +rQG +tGE +pUY +hVz +hVz +hVz +vzx +fSK +mcQ tos -dhH +cpb cex cex eXG @@ -94522,9 +82391,9 @@ abo abo jas jas -xln +xAE vpe -aRi +ibx jas jas cpy @@ -94553,21 +82422,21 @@ iZI dDS iZI iZI -svW -jVa -fLP -iOt +nQD +cks +iSP +wwD nTl nTl -dBe -qZB -jVa -svW -hwt -jcl -jcl -eRg -fmB +lFp +wmn +fLq +nQD +wmn +nQD +nQD +jsn +hVs saC saC saC @@ -94585,66 +82454,66 @@ tiQ tiQ tiQ tiQ -pKv -pfU -pKv -pKv +brU +gRT +brU +brU tiQ tiQ tiQ tiQ tiQ tiQ -snP -sDf -kpo -wQs -llG -noD -lMF -iDg -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC +kzO +wHH +laE +oAd +hKo +rfL +qwd +vaP +lTi +bjd +rbY +key +maV +eDO +bjd +bjd +bcT +vuw +bcT wDj -saC -saC +bjx +eJR iJE -hZg -vGB -sOL +uxC +mlL +bjx rlB azE -qYp -vGB -qSH -qSH +hTM +mlL +xFp +sdS qSH umR vGp vGp vGp -uRb +lQO tDS -pKo -ilR +miE +qow xcE tDS -iVy +jUv xuk kHP wxZ -ldg -tqG -kSb +ovj +tzS +aCl nIa jvu qZT @@ -94653,31 +82522,31 @@ ngY vEW iYm wgf -tSn -vPl -kiE -ilR -mpr -btb -wny -tco -oyB +cir +udH +rRn +qow +uox +nsS +mWj +vsO +dZf nhD pfN -ubw -oml +uoS +knC tTK -dVU -pXx -gVr -sOW -eFK -ici -otY -rex -pEZ -jab -dCJ +hsU +tDb +apN +tpW +bYi +aAe +daj +jEb +sZg +die +rXN tTD tTD rnB @@ -94685,9 +82554,9 @@ tTD tTD tTD tTD -igT +sAa xXg -oLg +jAH aGE uvC vfC @@ -94698,17 +82567,17 @@ rMz xXg vNk vNk -pqj -pqj +iUx +iUx vNk vNk -ntS +aep xgA bsG -kEQ +fIm xvl -otS -fWG +pNP +fyX cpy uwT uwT @@ -94724,17 +82593,17 @@ uwT uwT uwT uwT -bqE -mam -fOX -fOX -rOb -rOb -fOX -wZz -vDo +rQG +nnZ +pUY +pUY +qZl +qZl +pUY +fSK +mcQ tos -dhH +cpb eXG eXG eXG @@ -94748,11 +82617,11 @@ cpy cpy abo jas -bUx +uvj vpe eso eso -xGC +odh jas cpy cpy @@ -94772,7 +82641,7 @@ saC saC saC saC -cfg +wgI aLJ aLJ aLJ @@ -94780,20 +82649,20 @@ iZI dDS iZI iZI -svW -jcl -aCQ -evx +nQD +fLq +qba +vIZ nTl nTl -jcl -hwt -jcl -svW -hwt -hRy -gqG -eZq +fLq +wmn +fLq +nQD +wmn +nQD +nQD +jsn saC saC saC @@ -94807,71 +82676,71 @@ saC saC saC tiQ -yjL -kJV -vrV -lnC -lEb -nUV -mbM -xUx -xUx -pNo -uKD +cHr +eCB +vOo +pHZ +qSD +mah +lnG +wiQ +wiQ +hEz +kxA mQd nbj saC tiQ -mzP -gIZ -gGg -wTq -wTq -jWB -teE -mpQ +bLb +gtZ +hvH +pdR +pdR +riS +lzl +wGx tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC +bjd +bjd +urG +eVJ +bjd +bjd +bjd +bjd +bjd +bjd wDj -saC -hhJ -sOL -sOL -vGB -sOL +bjx +cXr +bjx +bjx +mlL +bjx rlB eJR -loS -vGB -qSH -qSH +kRd +mlL +xFp +sdS qSH umR vGp vGp vGp -uRb +lQO tDS -sWB -ilR +uBa +qow lbA hMb -jud +hiN xSP leV wCM -ggj -nhZ -ugo +ovt +lYk +hfM waZ pVo wGY @@ -94880,31 +82749,31 @@ mEz iwt anM jUn -sPb -sam -kEh -xVI -hat -btb +fed +uAp +upQ +gwF +bAj +nsS gdO gdO -naN -rDM -psT -fjt +ppO +mtY +uuI +uCZ gdO tTK -grg -dyI -bkh -vnp -kaD -kaD -eYh -cMQ -ifv -jab -dCJ +aDo +nyy +uem +oJC +mUH +mUH +ofI +pML +qQk +die +rXN rnB tTD rnB @@ -94912,9 +82781,9 @@ tTD tTD tTD rnB -igT +sAa xXg -oLg +jAH xXg xXg xXg @@ -94930,12 +82799,12 @@ vNk vNk vNk xvl -icW -oPW +rMQ +kII xvl xvl -naZ -uwT +pNP +fyX fWG uwT uwT @@ -94951,17 +82820,17 @@ uwT uwT uwT uwT -bqE +rQG uzI -hcv -hcv +vFz +vFz uzI -hcv -hcv +vFz +vFz uzI uzI uzI -dhH +cpb eXG eXG eXG @@ -94975,11 +82844,11 @@ wQa cpy cpy jas -qrf +oXK cTZ suh vpe -lPT +esn jas cpy cpy @@ -94999,27 +82868,27 @@ saC saC saC saC -oUZ -aEL +iWx +fqi aLJ aLJ iZI dDS iZI iZI -fib -jcl -aCQ -equ -ewt -jcl -dXd -fbC -fIe -ame -fDn -fDH -fFE +iZI +fLq +qba +wER +ktb +fLq +gIw +hVg +qWb +iKr +fXl +dQd +mhp tiQ saC saC @@ -95034,104 +82903,104 @@ saC saC saC saC -yjL -yjL -vrV -xUx -lFt -xUx +cHr +cHr +vOo +wiQ +dVa +wiQ mdD woG -xUx -pNo -xUx +wiQ +hEz +wiQ mQd nbj sZq tiQ tiQ -txt -ayX -ayX -ayX -dpz -cXi +fzs +cSP +cSP +cSP +uus +gOh tiQ tiQ saC -saC -saC -saC -saC +bjd +bjd +bjd +bjd saC saC saC saC saC wDj -saC -saC -ygD -jJI +wDj +wDj +aGR +biF uaY -xNG +wrd eJR eJR -xJg +iAk wDj -aij -qSH +wcV +sdS qSH umR qSH vGp vGp -uRb -hDZ -vav -hKJ +lQO +ayc +tLx +fPj gaw sWr wGY xJL olI -muV -way +cWN +iOC tDS -cpC -ilR +fUl +qow ixQ mEz koM wGY lRF ojt -muV -vrg +cWN +xUf tDS -iNb -wWV -tvi -lhd -fUf -ojW +vtM +xzZ +gAY +pnH +imS +ixo tNC -niE -seA +axz +hMU tNC -fyD -pLN -sBy -qqk -tMl -mNy -dBo -dBb -iad -haq -ris -jab -dCJ +mpK +bcD +qUF +tAI +wHI +whj +wnd +pVl +vFs +kER +xth +die +rXN tTD tTD tTD @@ -95139,9 +83008,9 @@ tTD tTD tTD rnB -bmg +aGa xXg -oLg +jAH xXg mJQ xXg @@ -95154,15 +83023,15 @@ xXg xXg hxY rHX -cKo -xvB -kEQ +jfT +heZ +fIm xhD bsG -kEQ -xvB -xWO -uwT +fIm +heZ +pNP +fyX fWG fWG uwT @@ -95178,7 +83047,7 @@ uwT uwT uwT uwT -bqE +rQG cwL ybz ybz @@ -95188,7 +83057,7 @@ ybz ybz cwL ybz -dhH +cpb wPN eXG eXG @@ -95202,11 +83071,11 @@ wQa wQa cpy jas -uUm +qrB eso wJq wNX -fUk +qRs jas cpy cpy @@ -95227,27 +83096,27 @@ saC saC saC saC -aEL -aEL -aEL +fqi +fqi +fqi aLJ dDS iZI iZI svW svW -aCQ -swu -exZ -oWq -eKj -hwt +qba +asU +erK +iKr +dTP +wmn svW svW -swu -swu -eRN -jcl +asU +asU +xNv +fLq saC saC saC @@ -95261,17 +83130,17 @@ saC saC saC saC -yjL -yjL -vrV -xUx -lFt -xUx +cHr +cHr +vOo +wiQ +dVa +wiQ mdD woG -xWz -pNo -xUx +xOT +hEz +wiQ mQd nbj sZq @@ -95300,65 +83169,65 @@ utq saC qSH qSH -jnE -sOL +kDF +bjx rlB eJR -rtX -lUy -nTp -qSH +stR +kcF +idC +sdS qSH umR qSH vGp vGp -uRb -svf -ydV -iIY -gbz -oHQ -oHQ -jBL -lxI -wFU -btb -jaz -uFo -hKJ -lau -sEc -lxI -oHQ -oHQ -qTu -mjT -vrg +lQO +mRQ +rWe +sqL +mes +cJH +cJH +iUu +eMM +rGz +nsS +bAZ +gDR +fPj +ozL +xmq +eMM +cJH +cJH +xTB +jju +xUf tDS -nxO -ilR -nGq -way +rVy +qow +maW +iOC gdO -puJ -iuy +mVA +fAn uuH pfN -pqU -lSl +tdl +sBr tTK -jmi -rYD -kiG -gvr -lVK -dut -cyt -haq +eud +cCY +uhm +bLR +vQQ +nNO +qPx +kER tTK tTK -dCJ +rXN sKJ tTD tTD @@ -95367,8 +83236,8 @@ tTD tTD rnB rnB -igT -oLg +sAa +jAH gIg ceG sRY @@ -95381,15 +83250,15 @@ xXg xXg xXg qLQ -nDI -xvB -kEQ +cFa +heZ +fIm xhD bsG -kEQ -xvB -xWO -uwT +fIm +heZ +pNP +fyX fWG fWG uwT @@ -95405,7 +83274,7 @@ uwT uwT uwT uwT -bqE +rQG ybz ybz ybz @@ -95415,7 +83284,7 @@ ybz ybz ybz ybz -dhH +cpb uja uja uja @@ -95427,15 +83296,15 @@ wQa wQa wQa wQa -eLf +fMM jas -pVy +irc vpe eso wNX -xlV +too jas -dhH +cpb eXG cpy cpy @@ -95456,25 +83325,25 @@ saC saC saC tiQ -aEL -aEL +fqi +fqi cTX iZI iZI iZI svW -njF -tra -tra -tra -eNT -msf +dDb +jvQ +jvQ +jvQ +bWR +qtz svW -swu -swu -swu -gnk -jcl +asU +asU +asU +sZm +fLq saC saC saC @@ -95484,21 +83353,21 @@ saC saC saC saC -jlr -jGm -jZS -jZS -jGm -mPz +pJe +ign +mvZ +mvZ +ign +bAa tiQ -xUx -lFt -xUx +wiQ +dVa +wiQ mdD woG -xUx -pNo -xUx +wiQ +hEz +wiQ mQd nbj sZq @@ -95531,61 +83400,61 @@ qSH eJR rlB iJE -rtX -ygD -nTp -qSH +stR +aGR +idC +sdS qSH umR qSH qSH vGp -uRb +lQO tDS tDS -ddC -btb -tAh -pJh -jLf -tAh -oew -pEu +rFb +nsS +aoY +tYy +jHn +aoY +gyy +emY tDS -dHg -eZK -iyx -uzK -wfi -lGx -way -rMg -btb -btb +hNX +phA +mfW +uYJ +hjz +kAh +iOC +pqt +nsS +nsS tDS -hYw -hKJ -mjT -eOl -unE -mMQ +eqO +fPj +jju +svQ +nwd +rcS mWF -njH -psT +vAP +uuI poQ -pzs -pMt -vyH -rYD -aNP -uvF -rtv -jeI -krP -jbO -tue +jYI +wZV +gBg +cCY +tWI +dyc +wRn +qkh +onF +lEh +nuB tTK -dCJ +rXN sKJ tTD tTD @@ -95593,7 +83462,7 @@ tTD tTD tTD rnB -gFM +upV xXg uuD uuD @@ -95608,15 +83477,15 @@ uuD uuD lFO gIg -wrY +imT xvl xvl -xjY -qZd +cQy +cHi xvl xvl -xWO -uwT +pNP +fyX uwT fWG fWG @@ -95632,7 +83501,7 @@ uwT uwT uwT uwT -bqE +rQG ybz ybz ybz @@ -95642,7 +83511,7 @@ ybz ybz ybz ybz -dhH +cpb eXG eXG eXG @@ -95654,15 +83523,15 @@ wQa wQa wQa wQa -eLf +fMM jas jas -ozw +irZ eso -ozw +irZ jas jas -dhH +cpb eXG cpy cpy @@ -95684,24 +83553,24 @@ saC saC tiQ tiQ -cOZ -aEL -oUZ -jcl -jcl -jVa -jcl -jcl -jcl -jcl -evx -jcl -jVa -jcl -jcl -jcl -jcl -aAb +eIK +fqi +iWx +fLq +fLq +cks +fLq +fLq +fLq +fLq +vIZ +fLq +fLq +fLq +fLq +fLq +fLq +rlt saC saC saC @@ -95709,23 +83578,23 @@ saC saC saC saC -yjL -jin -jmU +cHr +xXI +ujY jHb jHb jHb jIR -kKh -tiQ -fdC -lFt -xUx -mcE -xUx -xUx -pNo -fdC +vjI +tiQ +aPd +dVa +wiQ +cTW +wiQ +wiQ +hEz +aPd mQd nbj sZq @@ -95750,7 +83619,7 @@ qSH qSH qSH qSH -rtX +stR eJR eJR eJR @@ -95758,61 +83627,61 @@ eJR eJR hcE sjQ -wJk +iHM wDj -bcl -qSH +owo +sdS qSH umR qSH qSH qSH -eKe +weH xFp tDS tDS -thc -ueQ +gXG +nkb tDS -xJF -thc +xQL +gXG tDS tDS tDS -thc -kIZ -laB -thc +gXG +yhe +esA +gXG tDS tDS -thc -thc -thc +gXG +gXG +gXG tDS tDS -gXY -gdQ -way -nQn +axF +qCP +iOC +fJK gdO gdO -lCD -rDM -sha -dua +usF +mtY +wCo +cBf gdO tTK -edw -pXx -hID +hMe +tDb +lOb tTK tTK tTK -uBX -vLA -rhz +sow +sUA +kzK tTK -dCJ +rXN rnB cpy cpy @@ -95820,30 +83689,30 @@ tTD rnB tTD rnB -igT +sAa uuD uuD -lLL -ioT +lDL +afv uuD -qNA -bLI +wXK +sXi uuD uuD -tkx -evv +tJx +mHu uuD uuD xXg -rIr +imT xvl xvl -xje -wog +iaT +oUU xvl xvl -xWO -uwT +pNP +fyX uwT uwT fWG @@ -95859,7 +83728,7 @@ uwT uwT uwT uwT -bqE +rQG cwL ybz ybz @@ -95869,7 +83738,7 @@ ybz ybz cwL ybz -dhH +cpb eXG eXG eXG @@ -95881,15 +83750,15 @@ wQa wQa fdh wQa -tGw +cKa ybz jas jas -ogT +bXY jas jas ybz -fdf +sGa eXG eXG cpy @@ -95917,12 +83786,12 @@ dkC dkC dkC tiQ -lXC -lXC -lXC -lXC -gex -lXC +nQD +nQD +nQD +nQD +cdf +nQD tiQ tiQ cYQ @@ -95936,21 +83805,21 @@ saC saC saC saC -yjL -yjL -jmU +cHr +cHr +ujY jHb jHb jHb jHb -kKh +vjI tiQ mua mua -pEv -qVN -pEv -pEv +tdu +cYy +tdu +tdu mua mua mua @@ -95985,61 +83854,61 @@ eJR iJE eJR azE -wJk +iHM wDj -qSH -qSH +xFp +sdS qSH qQB qDV xSv xSv xSv -cDp -tcX -tcX -tcX -tcX -tcX -tcX -tcX -tTZ +jyN +qfB +qfB +qfB +qfB +qfB +qfB +qfB +lVe xFp tDS -pCZ -uJY -qBW -jNV +bMI +vHU +olS +upT tDS -mpU -ddP -nmB -nmB -veD +xBU +bxk +oWi +oWi +iKI tDS tDS nfe uAv tDS gdO -swY -hXW +rKc +sng uuH pej -pqU -pzH -pNq -szJ -pXx -djg +tdl +aRY +qEw +sgk +tDb +qaV tTK tTK tTK -tpN -vLA -gzS +qAO +sUA +cdr tTK -dCJ +rXN rnB rnB cpy @@ -96047,30 +83916,30 @@ sKJ tTD tTD rnB -igT +sAa uuD -obt -ugY +aqV +fux rOg -uPF +lDK sop pNY mTY mco pNY -tvx -oNd +aXi +dAN uuD xXg imT -cgG -ffb +wFd +whI xhD bsG -kEQ -xvB -xWO -uwT +fIm +heZ +pNP +fyX uwT uwT fWG @@ -96086,17 +83955,17 @@ uwT uwT uwT uwT -bqE +rQG uzI -hcv -hcv +vFz +vFz uzI -hcv -hcv +vFz +vFz uzI uzI uzI -dhH +cpb wQa eXG eXG @@ -96109,13 +83978,13 @@ fII wQa wQa eXG -tGw -tkA -tkA -tkA -tkA -tkA -fdf +cKa +kim +kim +kim +kim +kim +sGa eXG eXG eXG @@ -96144,18 +84013,18 @@ tiQ tiQ tiQ tiQ -jcl -jcl -jcl -jcl -evx -jcl +fLq +fLq +fLq +fLq +vIZ +fLq tiQ -fAx -fCE -fCE -fCE -gTX +vsa +wIP +wIP +wIP +ggU tiQ saC saC @@ -96163,22 +84032,22 @@ saC saC saC saC -yjL -yjL -jmU +cHr +cHr +ujY jHb jIR jHb jHb -kKh +vjI tiQ saC -plb -xWz -mcE -xUx -xUx -pNo +aHn +xOT +cTW +wiQ +wiQ +hEz cPx ljA woR @@ -96212,10 +84081,10 @@ bha eJR eJR eJR -mnx +aUo wDj -qSH -qSH +xFp +sdS qSH qSH umR @@ -96231,42 +84100,42 @@ vGp vGp vGp pZo -uRb +lQO tDS -dEy +ecC iss lbA -ufs -wSz -sQb -lOk -mqv -fYZ -btb -yen -hWD -way -jgV -mlQ +pWo +arJ +cxH +hKL +jta +uuo +nsS +tWf +iTp +iOC +oUk +gXh gdO -uGa -oyB +aIT +dZf oNl pej -pqU -pzH -pNq -xbN -pXx -bkh -wbX -wpg -puu -bkf -qsd -tue +tdl +aRY +qEw +dAP +tDb +uem +mEV +ndY +eHC +gQM +uJb +nuB tTK -dCJ +rXN rnB rnB cpy @@ -96274,29 +84143,30 @@ sKJ tTD tTD rnB -igT -nRQ -sGD +sAa +czH +pXR rMd xBs uuD -nVf +djV pNY -cUX -rEm +fhD +hRL pNY oGE -xti -qUs +kGo +kiv xXg imT -kAG -wog +otn +oUU xgA bsG -vOT -xvB -xWO +vyQ +heZ +pNP +fyX uxT sps sps @@ -96307,23 +84177,22 @@ uwT uwT uwT uwT -uwT tXW uwT uwT uwT uwT -bqE -yar -iBl -mDT -swD -fOX -fOX -xaN -vDo +rQG +tGE +uML +esC +osr +pUY +pUY +lyt +mcQ tos -dhH +cpb eXG eXG eXG @@ -96366,47 +84235,47 @@ saC saC saC tiQ -uMP -epS -uMP -uMP +ivm +hKv +ivm +ivm jEu nTl -oSX -oSX -oSX -eWn +olq +olq +olq +qWH nTl tiQ -fBP +jiE fNm get get -gUm +uFr saC saC saC saC saC -yjL -yjL -yjL -jis -jmU +cHr +cHr +cHr +uht +ujY jHb jHb jHb jHb -kKh +vjI tiQ saC -lFt -xUx -mcE -xUx -xUx -pNo -bVX +dVa +wiQ +cTW +wiQ +wiQ +hEz +mqE mQw sZq sZq @@ -96435,20 +84304,20 @@ tOt qSH cYn xei -hrw -iWg -sOL -sOL -sOL +aPH +bRy +bjx +bjx +bjx wDj -ltB -ltB -ltB -ltB -bBW -ltB -ltB -nQa +cts +cts +vCi +vCi +tJQ +vCi +vCi +mxc qSH qSH qSH @@ -96458,42 +84327,42 @@ vGp cpy vGp pZo -uRb +lQO tDS -kEW +cBS vkj lbD -ggj -nhZ -hdk +ovt +lYk +cGn dPG pVo jzR -tww -vZI -bZX -tww -lsf -mlZ -dgZ -uzR -ozR +cLu +nqJ +sOQ +cLu +nNc +sTd +nrE +nbh +rkx uuH pfN -ubw -lSl -pNq -gUY -pXx -oLG -fXy -epX -cyt -fjF -itE +uoS +sBr +qEw +jMl +tDb +aTF +vCr +iPA +qPx +pBS +mxx tTK tTK -dCJ +rXN rnB rnB tTD @@ -96501,29 +84370,30 @@ tTD rnB tTD rnB -igT -ikT -ugY +sAa +ncM +fux oGE rPu uuD -gtr -iBQ -dwO +ijb +bli +csh mbr -kOr +ojh rOg -qJH -qUs +yhQ +kiv xXg -iQR +imT xvl xvl -xjY -qZd +cQy +cHi xvl xvl -xWO +pNP +fyX ppD xkO xkO @@ -96533,24 +84403,23 @@ uwT uwT uwT uwT -uwT fWG tXW tXW uwT uwT uwT -bqE -yar -iBl -mKu -gVA +rQG +tGE +uML +gvI +hVz xPH -gVA -xaN -vDo +hVz +lyt +mcQ tos -dhH +cpb eXG eXG eXG @@ -96592,47 +84461,47 @@ saC saC saC saC -cpn -uMP -ahH -dJN -uMP -uMP -epS -uMP -uMP -uMP -eWy -epS +rNX +ivm +kJT +eEf +ivm +ivm +hKv +ivm +ivm +ivm +kVD +hKv tiQ -fCE +wIP fOM geu get -fCE +wIP tiQ saC tiQ saC saC -yjL -yjL -yjL -yjL -jmU +cHr +cHr +cHr +cHr +ujY jHb jHb jHb jHb -kKh +vjI tiQ saC -lFt -xUx +dVa +wiQ mdD woG -xUx -pNo +wiQ +hEz cPx mSl mZX @@ -96664,19 +84533,19 @@ dRL dRL dRL dRL -rJf -vCv -rJf +kBy +jbB +kBy dRL dRL dRL -rJf -rJf -qiG -rJf +kBy +kBy +jrZ +kBy dRL guE -nQa +mxc qSH qSH qSH @@ -96685,42 +84554,42 @@ vGp cpy cpy pZo -uRb +lQO tDS -nLe -yke -puC -lmo +uBO +ckc +hxI +dvi tDS -lHa -xRg +lxg +xwU pVo sWr ngY ngY qKk oXU -mpr -nRJ +uox +cZB gdO gdO -kVP +vKc uuH pfN -rng +teU gdO tTK -hbG -qio -til -dQa -mEB -khx -tPQ -lMZ -jJi -jab -dCJ +raX +oWj +rPl +exh +fWL +mtG +jGi +buL +ivX +die +rXN rnB rnB tTD @@ -96728,56 +84597,56 @@ rnB rnB tTD rnB -igT -qUs -wyn +sAa +kiv +ncY ozF xvo mxO -gaI +cNA ugX -jdo -rRJ +oys +acW qnM rOg -jrJ -qUs +xNz +kiv xXg -wrY +imT xvl xvl -xje -wog +iaT +oUU xvl xvl -xWO +pNP +fyX ppD xkO -vZn -waD +czt +ajq ujy uwT uwT uwT uwT -uwT fWG fWG uwT uwT uwT uwT -bqE -mam -kfv -mKu -gVA +rQG +nnZ +hJk +gvI +hVz xPH -gVA -xaN -vDo +hVz +lyt +mcQ tos -dhH +cpb eXG eXG eXG @@ -96819,47 +84688,47 @@ saC saC saC saC -cpn -uMP -dkL -cIm -cWL -cWL -ana -dSt -dSt -dSt -eWK -fuf +rNX +ivm +xcZ +oRL +iPo +iPo +ebF +vrP +vrP +vrP +uzd +fXw tiQ -fCN -fPV -gfu -fCE -ggM +bat +fvC +ksD +wIP +hho tiQ saC tiQ -yjL -ial -yjL -yjL -iWc -yjL -jmU +cHr +aQK +cHr +cHr +rLn +cHr +ujY jHb jHb jHb jIR -kKh +vjI tiQ saC -lFt -iWy +dVa +fug mdD woG -xUx -pNo +wiQ +hEz tiQ tiQ nbj @@ -96888,23 +84757,23 @@ cpy cpy dRL dRL -jNQ +fHl dRL dRL -yfP -yfP -niT +uga +uga +ufV dRL dRL dRL -sZs -yfP -qje -qSj +uqk +uga +lmj +wRT dRL dRL guE -nQa +mxc qSH qSH qSH @@ -96912,42 +84781,42 @@ vGp vGp cpy pZo -tWt -nSE +wvC +tDS tDS -thc -thc +gXG +gXG tDS tDS -lHa -xRg +lxg +xwU mhT sWr xOx wGY azK iYm -muV -way -dgZ -vWe -ozR -rDM -psT -ubw -fRf +cWN +iOC +nrE +uuX +rkx +mtY +uuI +uoS +lOQ tTK -jnd -pXx -kFx -qPu -nWI -wfh -fJd -oRG -jJi -jab -dCJ +eNO +tDb +wOa +vQf +liJ +aux +kEi +fGc +ivX +die +rXN rnB rnB tTD @@ -96955,29 +84824,30 @@ rnB rnB tTD tTD -igT +sAa uuD -foX -bdi -jdf +eSF +jKI +xHx mxO -bwH +izW pNY ylp scc pNY -bHT -qiw +mmu +tdv uuD xXg -wrY -xvB -kEQ +imT +heZ +fIm xhD bsG -kEQ -xvB -xWO +fIm +heZ +pNP +fyX ppD xkO xkO @@ -96986,7 +84856,6 @@ tKC uwT uwT uwT -uwT fWG fWG uwT @@ -96994,17 +84863,17 @@ uwT uwT uwT fWG -bqE +rQG uzI -rOb +qZl xPH acp acp xPH -xaN -vDo +lyt +mcQ tos -dhH +cpb eXG eXG wQa @@ -97047,46 +84916,46 @@ saC saC saC tiQ -uMP -dkL -kca -kca -kca -kca -kca -kca -eGL -dSy -eWy +ivm +xcZ +naa +naa +naa +naa +naa +naa +wTg +xDY +kVD tiQ tiQ -fRd +jdZ get get -gUv +fxN tiQ tiQ tiQ -yjL -yjL -yjL -yjL -yjL -yjL -jmU +cHr +cHr +cHr +cHr +cHr +cHr +ujY jHb jHb jHb jHb -kKh +vjI tiQ saC -lFt -kLs +dVa +alR mdD woG -xUx -pNo +wiQ +hEz tiQ jPw jPw @@ -97114,67 +84983,67 @@ cpy cpy cpy dRL -sLl +lqV xCT -sLl +lqV dRL -yfP +uga xCT -niT +ufV dRL dRL -gCz +dHP xCT xCT qMd xCT -rsl +cFf dRL dRL guE -nQa +mxc qSH qSH qSH vGp vGp pZo -onj +hRn tDS -bTF -lbK -lbK -lcK -kMN -lHd -iuW +vtu +pqG +pqG +uim +noO +qXt +ubN ylY wGY -oHQ -oHQ -gqh -oHQ -dkh -xRz +cJH +cJH +tts +cJH +rfY +pah gdO -vSV -oyB -eqe -sha -qQo -enR +dZV +dZf +iQH +wCo +szW +apj tTK -qJp -gGa -gVr -klz -hMR -eNR -smF -hMR -pBl -jab -dCJ +kMl +xsH +apN +pDd +dpe +nEI +crS +dpe +neb +die +rXN rnB rnB tTD @@ -97182,38 +85051,38 @@ rnB tTD tTD tTD -igT +sAa uuD uuD -bdi -bdi +jKI +jKI mxO -usP -ioT +bDq +afv pNY -swW -wOU -bJG +yis +xoP +gFX uuD uuD xXg -wrY -xvB -vOT +imT +heZ +vyQ xhD bsG -vOT -xvB -xWO +vyQ +heZ +pNP +fyX ppD xkO -mWa -waD +jCG +ajq ujy uwT uwT uwT -uwT cpy fWG fWG @@ -97221,17 +85090,17 @@ uwT uwT uwT fWG -bqE +rQG uzI -rOb -gVA -gVA +qZl +hVz +hVz acp -gVA -xaN -vDo +hVz +lyt +mcQ tos -dhH +cpb wQa cex cex @@ -97273,47 +85142,47 @@ saC saC saC saC -cpn -uMP -cGd -dXN -dXN +rNX +ivm +lGj +fuV +fuV mNm mNm -kca -kca -kca -dKF -fmv -fuf +naa +naa +naa +qdh +pDl +fXw tiQ tiQ get get -gXB +tjU tiQ tiQ -yjL -yjL -yjL -yjL -yjL -iWu -yjL -jmU +cHr +cHr +cHr +cHr +cHr +jbi +cHr +ujY jIR kba kba jHb -kKh +vjI tiQ saC -lFt -xUx -mcE -xUx -xUx -pNo +dVa +wiQ +cTW +wiQ +wiQ +hEz tiQ jPw jPw @@ -97345,63 +85214,63 @@ dRL dVM dRL dRL -gMV +suJ xCT -nuo +jqn dRL -npA +rvl bvU xCT tMp qjr xCT xCT -rvw +sso dRL dRL -fKf +pIR qSH qSH qSH vGp vGp pZo -onj -svf -lHa -iuK -tww -kDQ -fLc -vZI +hRn +mRQ +lxg +xPy +cLu +uzX +iay +nqJ sWr pVo -mpr -mIV -wYU -ixW -lNm -ixW -nPL +uox +hKX +fAM +rch +tCT +rch +eSn gdO -okE -ozR +dMC +rkx cNU rdT -qQo -puJ +szW +mVA tTK -ekf -qOS -tLL +dKA +jcI +sbv tTK tTK tTK -kXg +pzV tTK tTK tTK -dCJ +rXN rnB rnB tTD @@ -97409,35 +85278,35 @@ tTD tTD tTD tTD -shZ +kCH xXg uuD uuD uuD uuD uuD -jdI +eAR rWP -xRI +suH uuD uuD uuD viG xXg -wrY +imT xvl xvl -jVz -wog +eLX +oUU xvl xvl -xWO +pNP +fyX ppD xkO xkO xkO tKC -fWG uwT uwT uwT @@ -97448,26 +85317,26 @@ uwT uwT uwT fWG -bqE +rQG uzI -fOX +pUY mWd xPH xPH xPH -wZz -vDo +fSK +mcQ tos -dhH +cpb wQa wQa eXG dkX rBd ewE -hIf -hIf -hIf +xlB +xlB +xlB iIQ rBd sfO @@ -97500,47 +85369,47 @@ saC saC saC saC -cpn -uMP -feZ -uMP -uMP -uMP -dkL -kca -kca -kca -cIm -dJN -eWy -uMP +rNX +ivm +agI +ivm +ivm +ivm +xcZ +naa +naa +naa +oRL +eEf +kVD +ivm tiQ -ggM -fCE +hho +wIP tiQ tiQ tiQ -yjL -yjL -yjL -yjL -yjL -yjL -yjL -jnp -jJj -jJj -jJj -jJj -mLp +cHr +cHr +cHr +cHr +cHr +cHr +cHr +pjn +ukj +ukj +ukj +ukj +lBW tiQ -nFt -psq -nUV -mbM -xUx -xUx -pNo +fZF +hLf +mah +lnG +wiQ +wiQ +hEz tiQ jPw jPw @@ -97568,15 +85437,15 @@ cpy cpy cpy dRL -ouv +nRo uSJ -sLl +lqV dRL -vbI +aDC fzE -yfP -rJf -nLi +uga +kBy +fBG oBf xCT tMp @@ -97584,51 +85453,51 @@ qsi xCT rsq xCT -yfP -rJf -fKf +uga +kBy +pIR qSH qSH qSH qSH vGp pZo -onj -fRk -ibk -gjF +hRn +tMg +sHK +fIk ngY oGF iTF sWr sWr oMi -muV -mJt +cWN +shx tDS -xaj -wUx -ggj -pdF +oUX +wMJ +ovt +ilh gdO gdO -wEi +lNW uuH tov -fjt +uCZ gdO tTK -vyH -rYD -bHg +gBg +cCY +aFc tTK -aWw -ogZ -idt -vxY -qxL +fUV +jUi +rHG +fLQ +xyx tTK -dCJ +rXN rnB rnB tTD @@ -97637,34 +85506,34 @@ tTD rnB rnB rnB -igT +sAa xXg xXg xXg xXg rWP -ioT +afv rOg -swW +yis rWP xXg xXg xXg xXg -wrY +imT xvl xvl -icW -oPW +rMQ +kII xvl xvl -xWO +pNP +fyX kIV mUr mUr apS wRk -fWG uwT uwT uwT @@ -97675,28 +85544,28 @@ uwT uwT uwT fWG -bqE -dsa -kfv -oEc -tjx +rQG +liF +hJk +oIU +itQ vcR -gVA -wZz -vDo +hVz +fSK +mcQ tos -dhH +cpb wQa dkX rBd nPb -iFe -rVR -hIf -rqn -iGr -iGr -gRp +pPG +uBn +xlB +sRs +ftB +ftB +llm jGp rBd sfO @@ -97732,41 +85601,41 @@ czC czC czC czC -uMP -dkL -kca -aVs -cAy -cIs -cIm -cNB -uMP +ivm +xcZ +naa +nPf +vTR +wiM +oRL +vpz +ivm tiQ -ghr +gTa tiQ tiQ tiQ tiQ tiQ -vrV -vrV -vrV +vOo +vOo +vOo tiQ tiQ tiQ tiQ tiQ -vrV -vrV -vrV +vOo +vOo +vOo tiQ tiQ mua mua -pMg -rqT -uVa -pMg +vXP +aJP +thS +vXP mua tiQ tiQ @@ -97795,15 +85664,15 @@ cpy cpy cpy dRL -gtH +rPR msB oBx -dVo -ipf +pGJ +evE qxX -qUq -kNM -nLW +naj +cmS +rqU oBx nTg nTg @@ -97811,82 +85680,82 @@ iAZ xCT xCT xCT -yfP -rJf -fKf +uga +kBy +pIR qSH qSH qSH qSH vGp pZo -onj -fRk -lHa -orS +hRn +tMg +lxg +iOP kNe sWr dPG wGY sWr xxU -hag -fzl -mKA -sQb -lOk -wDk -rSe +hHq +rir +mbj +cxH +hKL +wHg +ixE gdO -fRf -mhs -oNv -sha -ihd -ecm +lOQ +dyt +tXn +wCo +mCc +mEq tTK -dQh -qzD -vzZ +wlX +kyt +mKl tTK -qWi -bDn -idt -iWz -apc +vGJ +bxh +rHG +ahY +owB tTK -dCJ +rXN rnB rnB tTD rnB rnB -hrk -vlT -vlT +dBu +fjB +fjB xXg xXg xXg xXg xXg rWP -fZd +lvn pNY -gjQ +hzT rWP xXg xXg xXg xXg -wrY +imT xvl xvl -lot -wOq +kbG +hhk xvl xvl -xWO -uwT +pNP +fyX uwT uwT fWG @@ -97902,30 +85771,30 @@ fWG uwT uwT fWG -bqE -dsa -kfv -oEc -uXa +rQG +liF +hJk +oIU +fvi xJB -yfz -wZz -vDo +ula +fSK +mcQ tos -dhH +cpb dkX nPb -gRp -iGr -iGr -uIn -uIn -rqn -qvA -lhE -iGr -iGr -hIf +llm +ftB +ftB +prk +prk +sRs +reK +qxA +ftB +ftB +xlB jGp sfO eXG @@ -97955,60 +85824,60 @@ saC saC saC tiQ -cZu -cWL -dJN -cIV -uMP -dkL -kca -kca +fGX +iPo +eEf +eeE +ivm +xcZ +naa +naa mNm -kca -kca -cRT -uMP -epS -uMP -uMP +naa +naa +jSi +ivm +hKv +ivm +ivm saC tiQ tiQ tiQ -xUx -xUx -xUx +wiQ +wiQ +wiQ saC saC saC saC -xUx -xUx -xUx -xUx -hOH +wiQ +wiQ +wiQ +wiQ +tVF mua -fol -ptc -nUV +dmT +swK +mah bOE woG -xUx -cNQ -cPy +wiQ +mlW +qFH tiQ saC saC tiQ -xSN -xSN -xSN -xSN -pMg -xSN -xSN -xSN -xSN +uJV +uJV +uJV +uJV +vXP +uJV +uJV +uJV +uJV tiQ tiQ tiQ @@ -98022,15 +85891,15 @@ cpy cpy cpy dRL -jfG +xGz gQu -sLl +lqV dRL -yfP +uga jAV -yfP -rJf -nSA +uga +kBy +mkf oBR pjT qly @@ -98038,56 +85907,56 @@ qty reo xCT xCT -yfP -rJf -fKf +uga +kBy +pIR vGp qSH qSH qSH qSH pZo -onj -fRk -ibk -qcd +hRn +tMg +sHK +tqR mEx sWr lxZ lHV wGY sWr -wfe -eyY -ggj -ilR +mfa +vyt +ovt +qow oGF -gRK -fln +yhc +qxr gdO -sVM -tTN -rDM -sha -pqU -vEB +ljB +uYh +mtY +wCo +tdl +dCl tTK tTK -xQm -otq +iAB +oxX tTK tTK -rOD -ruY -rar -kni +woV +eWb +hbl +oOx tTK -dCJ +rXN rnB tTD tTD rnB -hrk +dBu xXg cUG cUG @@ -98097,9 +85966,9 @@ cUG cUG cUG cUG -tlM +whl wao -xsi +oZQ cUG cUG cUG @@ -98107,13 +85976,13 @@ cUG cUG cUG cUG -izr +rHq swF fzV -qqR +djv cUG -xWO -uwT +aeE +fyX uwT uwT fWG @@ -98129,31 +85998,31 @@ tXW uwT uwT fWG -bqE -dsa -fOX -qda -rOb -ycc -ycc -wZz -vDo +rQG +liF +pUY +nMq +qZl +mvi +mvi +fSK +mcQ sbh -hhb +oWT nPb -hIf -jLk +xlB +iiA jMy qGI uMr uMr -rqn +sRs wDa vbF kBj dIi -vjF -vjF +wqU +wqU jGp rBd sfO @@ -98182,61 +86051,61 @@ saC saC saC tiQ -dah -kca -dKF -cIW -uMP -dkL -kca -kca -kca +isO +naa +qdh +eHQ +ivm +xcZ +naa +naa +naa mNm mNm -dgq -cWL -cWL -cWL -dJN -saC -saC -saC -xSN -rza -rza -rza -rza -saC -saC -rza -jJO -kbg -kqa -rza -qqq -mmj -nUD -xUx -xUx +sVu +iPo +iPo +iPo +eEf +saC +saC +saC +uJV +hDO +hDO +hDO +hDO +saC +saC +hDO +hXJ +eqz +ieO +hDO +dLR +rIa +sdy +wiQ +wiQ woG woG -xUx -xUx -cNQ -cWZ -rza -rla -rza -rza -rza -rza -qqq -qqq -rza -rza -rza -rza -ybd +wiQ +wiQ +mlW +akP +hDO +xlW +hDO +hDO +hDO +hDO +dLR +dLR +hDO +hDO +hDO +hDO +uoF saC saC saC @@ -98253,94 +86122,94 @@ dRL dVM dRL dRL -gMV +suJ xCT -nuo +jqn dRL -odQ +qbK oBR ppK qws qNK reQ xCT -hqp +eyQ dRL dRL -fKf +pIR vGp vGp qSH qSH qSH umR -onj +hRn tDS -jjt -hAA +fWy +siU nSG gbk rcd lHY mBc -mpr -gZh -fzg -eZK -wWV +uox +cua +xDV +phA +xzZ oGF -iHg -dtb +tyu +ukv gdO -qnU -tTN +ihi +uYh uuH pfN -qlr -uGa +nGg +aIT tTK -vyH -euj -aRd -gWq +gBg +jIs +tlU +dnZ tTK tTK tTK tTK tTK tTK -dCJ +rXN rnB rnB tTD rnB -igT +sAa cUG cUG -dIG -vlv -ybM -pEk -jeJ -cyH -whs -xCY +vUW +cKc +fIs +hRB +sdQ +hgu +sTu +ebv tID -saV +rVk cUG -vfN -ekR -wsz -tjh -bhD -bBE -wbE +cIn +dGj +oxQ +pHn +iZj +tJp +wXO xRw uaI -eHB +xEr cUG -tti -uwT +xzK +iNF uwT uwT fWG @@ -98356,7 +86225,7 @@ uwT uwT uwT uwT -bqE +rQG uzI dDq dDq @@ -98366,23 +86235,23 @@ uzI uzI uzI uzI -hIf -hIf -hIf -wEo +xlB +xlB +xlB +dko pXu -kiY -dOI -uIn -rqn -qvA -tur -qvA +jKN +dFh +prk +sRs +reK +kur +reK wDa -qvA -hIf -aKn -hIf +reK +xlB +mPA +xlB rnq rnq sfO @@ -98409,61 +86278,61 @@ saC saC saC tiQ -vEw -dXN -dKM +sRT +fuV +dvB cYQ -uMP +ivm mNm mNm -kca -kca +naa +naa mNm mNm -haR -kca -kca -kca -dKF -uMP -saC -xUx -xSN -xUx -iam -nUV -nUV -nUV -tHC -nUV -jKm -nUV -nUV -nUV -kKD -mnX -xUx -xUx +hYq +naa +naa +naa +qdh +ivm +saC +wiQ +uJV +wiQ +tMY +mah +mah +mah +lbY +mah +rDZ +mah +mah +mah +bEe +htl +wiQ +wiQ woG mua mua woG -xUx -xUx -cWZ -xUx -qro -xUx -xUx -xUx -hOH -hOH -hOH -hOH -hOH -xUx -xUx -ybd +wiQ +wiQ +akP +wiQ +wcu +wiQ +wiQ +wiQ +tVF +tVF +tVF +tVF +tVF +wiQ +wiQ +uoF saC saC saC @@ -98476,74 +86345,74 @@ eCe cpy cpy dRL -sLl +lqV xCT -sLl +lqV dRL -jjq +pdV xCT -yfP +uga dRL dRL -oQt +nHI pGg qxg qPU rfk -nKh +iUg dRL dRL qYP -jKB +hfB vGp vGp qSH qSH qSH umR -onj -svf -rEc -wWV +hRn +mRQ +iSQ +xzZ kAj azJ tgj svo bqo -sFf -mJt +slF +shx tDS -pGN -aKO +pXr +wPJ ngY -gRK -fln +yhc +qxr gdO gdO -ozR +rkx uuH pfN -ubw +uoS gdO tTK -tUe -oLG -oLG -gbR -ekf -uQw -vyH -jmi -vyH +fTU +aTF +aTF +lBe +dKA +uTn +gBg +eud +gBg tTK -dCJ +rXN rnB rnB tTD rnB -igT +sAa cUG -dmA +lZx wgR tum pRH @@ -98554,7 +86423,7 @@ tum tum pRH gEd -iBd +pzF pRH pRH pRH @@ -98564,9 +86433,9 @@ pRH tum pYu pRH -dBi +fTt cUG -hMz +fyX xxk ycM tGb @@ -98583,35 +86452,35 @@ uwT uwT uwT uwT -jqr -xxq +iFP +dhD xzK xzK uzI uzI uzI uzI -hIf -hIf -hIf -qvA -qvA -bYx +xlB +xlB +xlB +reK +reK +cvO jpb -hbu -qvA -qvA -rqn -qvA -qvA -qvA +vTS +reK +reK +sRs +reK +reK +reK wDa -qvA -qvA -qvA -hIf -hIf -hIf +reK +reK +reK +xlB +xlB +xlB jGp sfO eXG @@ -98640,35 +86509,35 @@ tiQ tiQ dKO cYQ -uMP +ivm uDC mNm mNm -kca +naa mNm mNm -haR -fCP -fSe -fCP -dKF -uMP -hig -xUx -xSN -xUx +hYq +oqM +nie +oqM +qdh +ivm +lxA +wiQ +uJV +wiQ mdD woG woG -xUx -qro -xUx +wiQ +wcu +wiQ woG woG woG -xUx -kLc -pMg +wiQ +ikE +vXP woG woG mua @@ -98677,20 +86546,20 @@ mua mua woG woG -cWZ -xUx -qro +akP +wiQ +wcu woG woG woG -hOH -hOH -hOH +tVF +tVF +tVF mee mee lpy -eqD -ybd +dnT +uoF saC saC saC @@ -98704,23 +86573,23 @@ eCe cpy dRL dRL -gMV +suJ dRL dRL -jgI -mNf -lZq +eEe +jzx +arK dRL dRL dRL -gMV -qCL -qQt -rge +suJ +mvC +muR +nKB dRL dRL qYP -jKB +hfB vGp vGp vGp @@ -98728,60 +86597,60 @@ vGp qSH qSH umR -onj -fRk -ydV -kVT +hRn +tMg +rWe +eXC dFd arV bkt dsL iQL -muV -wke -eZK -hCq +cWN +kdp +phA +qsG azK wGY -mpr -hWD +uox +iTp ehy -puJ -oyB +mVA +dZf uuH pej -pqU -uih +tdl +uji tTK -jHR -gbR -oLG -oLG -lhP -oLG -oHB -gbR -rlX +cXV +lBe +aTF +aTF +nob +aTF +igE +lBe +pRS tTK -dCJ +rXN rnB tTD tTD tTD -igT +sAa cUG -ujq +prv tID -uya -hdq -uya -xCY -xCY -xCY -xCY +iSX +sxL +iSX +ebv +ebv +ebv +ebv uaI tID -owQ +wYk tID tID fld @@ -98791,9 +86660,9 @@ uaI tID xRw tID -gGe +bxx cUG -hMz +fyX rcO tBb xdb @@ -98812,12 +86681,12 @@ uwT uwT uwT fWG -bqE +rQG xzK uzI uzI uzI -hIf +xlB jVq gxp fPO @@ -98839,7 +86708,7 @@ gxp fPO ufR jVq -hIf +xlB jGp sfO eXG @@ -98869,33 +86738,33 @@ tiQ tiQ tiQ tiQ -aTK -cGd -cLb +vjK +lGj +thE mNm foO -fuQ -fDi -fSR -ghy -eAF -fiA -hCU -nUV -oyM -nUV +vPY +sIQ +vRs +gPy +phO +bfC +wAO +mah +rKh +mah bOE woG woG -xUx -qro -xUx +wiQ +wcu +wiQ woG woG woG -xUx -xUx -mCQ +wiQ +wiQ +dbr woG woG tiQ @@ -98904,20 +86773,20 @@ tiQ mua woG woG -cWZ -xUx -hOH +akP +wiQ +tVF lpy lpy lpy -hOH -hOH -hOH +tVF +tVF +tVF mee woG woG -xUx -ybd +wiQ +uoF saC saC saC @@ -98940,13 +86809,13 @@ dRL dRL dRL dRL -rJf -rJf -qiG -rJf +kBy +kBy +jrZ +kBy dRL pGY -jKB +hfB vGp vGp vGp @@ -98955,72 +86824,72 @@ vGp vGp qSH umR -onj -svf -ydV -sWT +hRn +mRQ +rWe +fGm oGF dkq iBr wGY eUX -mpr -tvP -qRU -wWV +uox +uJI +slu +xzZ wGY wGY -gRK -fln +yhc +qxr gdO -jCY -rpG +aXS +fON hmJ poQ -dHE -lGA +wKI +jIY tTK -vyH -gbR -gbR -oLG -lhP -gbR -oLG -oLG -rfC +gBg +lBe +lBe +aTF +nob +lBe +aTF +aTF +tVS tTK -dCJ +rXN rnB rnB tTD rnB -igT +sAa cUG -sKS +nEn tID -tiM +tBp uQf fsz -uya +iSX uQf vgb -xCY +ebv vDr -vjn +uhy cUG -syy +jUl uaI vBN arq -anv +jNa aOj tID rzR uaI -xPj +xPV cUG -hMz +fyX fWW tlr xdt @@ -99039,11 +86908,11 @@ uwT uwT uwT uwT -bqE +rQG uzI uzI uzI -gRp +llm pab xYA aiP @@ -99067,7 +86936,7 @@ xYA aiP xYA jYr -gRp +llm aVa eXG eXG @@ -99089,62 +86958,62 @@ saC saC tiQ tiQ -cPN -daq -dkP -nzK -dSW +dgn +hqE +cHl +fYi +oPL tiQ tiQ mNm -uMP -dkL +ivm +xcZ mNm -kca -haR -cUx -fSX -cUx -dKF -uMP -hig -xWz -xSN -xUx -xUx -xUx -xUx -iWy -qro -xUx -jKo -kbu -xWz -xUx -kLs -pMg -xUx -mHP +naa +hYq +oxE +dhi +oxE +qdh +ivm +lxA +xOT +uJV +wiQ +wiQ +wiQ +wiQ +fug +wcu +wiQ +mUn +jtS +xOT +wiQ +alR +vXP +wiQ +cAu woG tiQ mua woG -xUx -xUx -cWZ -hOH -hOH -xUx -xUx -xUx -mHP -hOH -hOH -xUx -xUx -dbs -xWz -ybd +wiQ +wiQ +akP +tVF +tVF +wiQ +wiQ +wiQ +cAu +tVF +tVF +wiQ +wiQ +blL +xOT +uoF saC saC saC @@ -99166,13 +87035,13 @@ cpy ien ien ien -whD -whD -whD -hFL -thi -dHz -jKB +pwK +pwK +pwK +tkF +ctJ +fLj +hfB vGp vGp vGp @@ -99182,72 +87051,72 @@ vGp vGp qSH yaF -kJh -svf -lHa -aaI +xSc +mRQ +lxg +egr kNe rUr waZ wGY oGF -mpr -jMr -xFw -wWV +uox +kdI +aOL +xzZ lCh cpG -lUR -mwh +xLc +bbV gdO -kho -jnb -njH -jZA -aLy -ggO +ppG +cEE +vAP +rSy +jBh +liz tTK -jFu -jFu -jFu -jFu +lhg +lhg +lhg +lhg tTK -rRr -vyH -vyH -ssH +gdA +gBg +gBg +whg tTK -dCJ +rXN rnB tTD tTD rnB -igT +sAa cUG -uIB -tiM -bVA +pQp +tBp +egX uQn vPz -ggp +tHO uQn vgw -xPj +xPV vDr -vjn +uhy wao -vjn +uhy tID uaI -kxq +sVK cQm cIA uKw dKd oaq -xAr +cBZ cUG -hMz +fyX uwT uwT uwT @@ -99266,11 +87135,11 @@ uwT uwT uwT uwT -bqE +rQG xzK uzI -sDz -hIf +aUk +xlB gVf xYA xYA @@ -99294,7 +87163,7 @@ xYA xYA aIp kcR -hIf +xlB cDi eXG wQa @@ -99315,63 +87184,63 @@ saC saC saC tiQ -ewe -cPO -bkQ -bkQ -dLq -dTW -ebP +ygY +xbl +gFL +gFL +lpc +wAX +fQo tiQ tiQ ezp eGQ eGQ -hTk -hbN -kca +ajg +nOH +naa mNm mNm -dKF -uMP -hig -xUx -xSN -hOG -aCJ -aCJ -aCJ -aCJ -saC -saC -aCJ -kbJ -aCJ -aCJ -hOG -hbj -lnF -xUx -xUx +qdh +ivm +lxA +wiQ +uJV +src +aLq +aLq +aLq +aLq +saC +saC +aLq +scT +aLq +aLq +src +vpw +ksh +wiQ +wiQ woG woG -xUx -xUx -mEg -fXs -hOG -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -ybd +wiQ +wiQ +spQ +clM +src +aLq +aLq +aLq +aLq +aLq +aLq +aLq +aLq +aLq +aLq +aLq +uoF saC saC bUN @@ -99409,29 +87278,29 @@ lTV lTV xSv tWE -onj +hRn tDS -ibk -lKF +sHK +wJB vqv iIs lHV pfX ngY -mpr -jMr -iCC -wWV +uox +kdI +eyS +xzZ lOq oGF -mgk -vUb +arB +nrr gdO gdO -psC -ayn -xNw -psC +gdO +sdH +eiz +gdO gdO tTK tTK @@ -99444,12 +87313,12 @@ tTK tTK tTK tTK -dCJ +rXN rnB tTD tTD tTD -kEo +tIA cUG sLw sXZ @@ -99463,7 +87332,7 @@ nKK fzf sHY wao -mEn +pJk tID uaI wqA @@ -99472,9 +87341,9 @@ tID tID rzR vBN -uyM +aDM cUG -hMz +fyX uwT uwT uwT @@ -99487,17 +87356,17 @@ kcC uwT uwT uwT -gIr -fbS -fbS -fbS -fbS -fbS +pYw +qBt +qBt +qBt +qBt +qBt lPq lPq uzI -sDz -rVR +aUk +uBn xyC xYA xYA @@ -99521,7 +87390,7 @@ aIp xYA aIp wBx -hIf +xlB lSF eXG eXG @@ -99542,62 +87411,62 @@ saC saC saC tiQ -joK -cPU -daL -xcU -dLz -xcU -edk -eil +eGb +fbH +lFK +hGl +xPe +hGl +bwe +prK eof -uMP -dkL -kca -kca -kca -kca +ivm +xcZ +naa +naa +naa +naa mNm mNm -dKF -uMP +qdh +ivm tiQ saC saC -hOH -hOH -xUx -iIt +tVF +tVF +wiQ +nym saC saC saC saC -xUx -xUx -hOH -hOH +wiQ +wiQ +tVF +tVF mua -lnU -lnF -xUx +ppg +ksh +wiQ woG woG -mto -mEg -mMU +hTc +spQ +qqA tiQ saC saC tiQ -xSN -xSN -xSN -xSN -xSN -xSN -xSN -xSN -xSN +uJV +uJV +uJV +uJV +uJV +uJV +uJV +uJV +uJV tiQ tiQ tiQ @@ -99632,51 +87501,51 @@ vGp vGp vGp vGp -mTa -oqn -pdv +txd +qJh +qhR umR -onj -jCW +hRn +auN jAz -gjF +fIk sWr -nbk +pKT sWr oNe hfy -kaX -jMr -qRU -wWV +xCx +kdI +slu +xzZ ngY ngY -muV -nSm +cWN +hxB gdO -hOK -iVe -xWA -axC -iwb -tYL +dqv +noe +pnb +vnw +uig +heR gdO -hKO -aIY -aIY -aIY -ozk -ozk -aBm -huN -rmD -raj -dCJ +jSN +oQf +oQf +oQf +sjI +sjI +tOh +nyr +tks +fGR +rXN rnB rnB tTD tTD -igT +sAa cUG sLR vpD @@ -99690,18 +87559,18 @@ cSO aqH vPz wao -whW +fte uaI tID uaI -xCY -hUq -vVp +ebv +dcq +lzv xRw -bgN -fMS +kpi +wSP cUG -hMz +fyX uwT uwT uwT @@ -99713,7 +87582,7 @@ uwT fWG uwT uwT -gIr +pYw waQ snX snX @@ -99723,8 +87592,8 @@ vpp vpp snX snX -qvA -rVR +reK +uBn qle aIp aIp @@ -99748,7 +87617,7 @@ aIp aIp aIp jzZ -hIf +xlB lSF eXG eXG @@ -99770,46 +87639,46 @@ saC saC tiQ tiQ -cQc -dbi +buy +bGh akM dLZ akM -xcU -pYP -eov -uMP -dkL -kca -kca -kca -kca -kca -kca -dKF +hGl +fel +oVW +ivm +xcZ +naa +naa +naa +naa +naa +naa +qdh saC saC saC saC saC -vrV -vrV +vOo +vOo tiQ tiQ tiQ tiQ tiQ -vrV -vrV -vrV +vOo +vOo +vOo tiQ tiQ mua mua -pMg -pMg -pMg -pMg +vXP +vXP +vXP +vXP mua tiQ tiQ @@ -99859,51 +87728,51 @@ vGp vGp vGp vGp -ncz -otC -pgp +rut +fuU +rEO umR -gMG +fvg sRu -hsA +xDw vgx -kup -aOV -lyQ -tDB -iqt -oXB -tvP -qRU -hdk -tDB -oHQ -nGx -otH +dPt +hyG +tpH +qEl +lHT +top +uJI +slu +cGn +qEl +cJH +aGJ +oEM gdO -puJ -psT +mVA +uuI bHF kpN -seA -ojW -hPT -gAU -lBu -ipN -ory -mfh -hgH -tZR -wac -tdT -raj -dCJ +hMU +ixo +fAi +wRN +oFK +jCA +oMR +deg +vkr +hRY +hyb +xjw +fGR +rXN rnB rnB tTD tTD -igT +sAa cUG cSO vpD @@ -99917,18 +87786,18 @@ cSO cSO hWz wao -oVL +twW mkW tID -xCY -bnf +ebv +wIp cUG cUG -xsi +oZQ cUG cUG cUG -hMz +fyX uwT uwT uwT @@ -99940,18 +87809,18 @@ fWG cpy fWG uwT -ewf +avO snX snX -rRy -feu +wQn +bpm aTw sGQ -rCH -oQW +eFg +oxl snX snX -rVR +uBn sol aIp aIp @@ -99975,7 +87844,7 @@ aIp xYA xYA srS -hIf +xlB lSF eXG eXG @@ -99996,48 +87865,48 @@ saC saC saC tiQ -cIX -cPO -dbt -dng -dMb -dUj -edP -ekK +pYo +xbl +dGL +pdG +vLB +jMw +pcc +hoI tiQ -uMP -cGd -dXN -dXN -dXN -dXN -dXN -dXN -dKM +ivm +lGj +fuV +fuV +fuV +fuV +fuV +fuV +dvB saC saC tiQ saC saC saC -yjL -yjL -yjL -jis -jlr -jGm -kbM -kbM -jGm -mPz +cHr +cHr +cHr +uht +pJe +ign +vfk +vfk +ign +bAa tiQ -iIt -lFt -xUx -xUx -xWz -xUx -pNo +nym +dVa +wiQ +wiQ +xOT +wiQ +hEz tiQ jPw jPw @@ -100086,51 +87955,51 @@ lyP vGp vGp vGp -nff -oxT -pgG +amn +fws +aBe umR -ikw +cui rrf tDS -nku +ibz uqo -gPp -mqi -mqi -cCK -twq -mvd -way -way -gdk -uiu -nkt -mlZ +sZU +gvl +gvl +bJF +oLr +rIP +iOC +iOC +fdA +aMP +hwE +sTd gdO -onT -hpH +cLm +eNx vDa pfN -sha -sSk +wCo +sdm gdO gdO gdO -wCW +wNj gdO gdO -wCW +wNj gdO gdO gdO gdO -dCJ +rXN rnB rnB tTD rnB -igT +sAa cUG xlN cSO @@ -100144,10 +88013,10 @@ cSO vpD fEe wao -vLO +ujs tMD tID -uya +iSX cUG cUG nTJ @@ -100155,7 +88024,7 @@ mPc xlQ cUG xzK -cpk +iNF uwT uwT uwT @@ -100167,18 +88036,18 @@ cpy cpy fWG uwT -ewf +avO vpp -nat -kow -lHH -lHH -lHH -rew -rOb -pme +khE +fTw +jhj +jhj +jhj +tBB +qZl +urT vpp -hIf +xlB rFT aIp aIp @@ -100190,7 +88059,7 @@ aIp aIp aIp aIp -aDE +ocq aIp aIp aIp @@ -100202,7 +88071,7 @@ aIp xYA xYA iqX -rVR +uBn lSF eXG eXG @@ -100223,48 +88092,48 @@ saC saC saC tiQ -cJh -cRG -dbX -dnB -bkQ -dUD -efR +fIg +vHg +ldb +mvo +gFL +jhT +nsG tiQ tiQ -bbL -feZ -faK -uMP -uMP -uMP -feZ -uMP +xvU +agI +lpD +ivm +ivm +ivm +agI +ivm saC saC saC tiQ -yjL -yjL -ial -yjL -yjL -yjL -yjL -jmU +cHr +cHr +aQK +cHr +cHr +cHr +cHr +ujY jMJ kco kco kti -kKh -vrV -iIt -lFt -hOH -xUx -xUx -xUx -pNo +vjI +vOo +nym +dVa +tVF +wiQ +wiQ +wiQ +hEz tiQ jPw jPw @@ -100317,47 +88186,47 @@ vGp qSH qSH umR -eKe +weH fAq evS -tXd +aXJ bCl tDS -thc -thc -thc +gXG +gXG +gXG tDS tDS tDS -thc -thc -thc -thc +gXG +gXG +gXG +gXG tDS gdO -tBw -psT +xHt +uuI vDa pfN -sha -tBw +wCo +xHt gdO -uJl -xbX -bWX -sha +lhV +vXO +gmg +wCo gdO -oHl -jyC -vzV -rmM +oUV +tkP +gRe +gfk gdO -dCJ +rXN rnB rnB tTD rnB -igT +sAa cUG tKF vpD @@ -100371,20 +88240,20 @@ cSO ngd omX wao -pzj +oHp wzt uaI -xCY +ebv cUG oqD inA qQe inA -xjO -hMz -lzV -hix -jix +oPk +fyX +soD +dts +kIo uwT uwT uwT @@ -100394,17 +88263,17 @@ cpy cpy cpy uwT -ewf +avO vpp -tlR +fbI wmJ piD -rZL -lHH +eic +jhj piD piD -fOX -vPb +pUY +roH wDa vJr aIp @@ -100429,7 +88298,7 @@ aIp xYA xYA wBx -rVR +uBn lSF eXG eXG @@ -100451,11 +88320,11 @@ saC saC tiQ tiQ -cRL -dci -dnG -dMN -dUE +uEy +pZX +enA +ghQ +sFH tiQ tiQ tiQ @@ -100472,26 +88341,26 @@ saC saC tiQ tiQ -yjL -yjL -yjL -yjL -iWc -yjL -jmU +cHr +cHr +cHr +cHr +rLn +cHr +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lFt -hOH +vjI +vOo +wiQ +dVa +tVF mee woG -xUx -pNo +wiQ +hEz tiQ jPw jPw @@ -100545,46 +88414,46 @@ qSH qSH umR qSH -eKe -aby -whD -dHz -whD -whD -whD -whD -whD -mmE -whD -whD -whD -whD -whD +weH +gKQ +pwK +fLj +pwK +pwK +pwK +pwK +pwK +fqd +pwK +pwK +pwK +pwK +pwK umg gdO -jhp -sha +rmJ +wCo uuH pej -psT -att +uuI +sQn gdO -eQY +wqc dsQ pej -uIa +oQm gdO -qaj +lpX tby -uEP +gjg gdO gdO -dCJ +rXN rnB tTD tTD rnB -igT +sAa cUG cSO tdi @@ -100598,20 +88467,20 @@ sOA cSO vPs wao -bka +nqP tID uaI -xCY -xjO +ebv +oPk inA gDL anc inA -xjO -hMz -fac -lKH -spW +oPk +fyX +rmQ +qWR +sAE uwT uwT uwT @@ -100621,18 +88490,18 @@ cpy cpy cpy uwT -ewf +avO vpp -mQm -kow -lHH -eSQ -tZP -rZL -fOX -uGO +iLZ +fTw +jhj +iwd +ceU +eic +pUY +bZy vpp -hIf +xlB kFB aIp aIp @@ -100656,7 +88525,7 @@ aIp aIp aIp yfK -rVR +uBn lSF eXG eXG @@ -100699,26 +88568,26 @@ cpy saC saC tiQ -yjL -yjL -yjL -yjL -yjL -yjL -jmU +cHr +cHr +cHr +cHr +cHr +cHr +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lFt -xUx +vjI +vOo +wiQ +dVa +wiQ mee woG -xUx -pNo +wiQ +hEz tiQ tiQ ndP @@ -100787,31 +88656,31 @@ vcn lyP lyP vGp -uRb +lQO gdO -qDd -oAp -unX -sha -puJ -onT +bgC +tje +atk +wCo +mVA +cLm gdO -nDZ -qaj -uyB -lmp +cCJ +lpX +lNG +tmq gdO -eBk -gxs +pYB +bHE gdO gdO gjt -fBp +wrf rnB tTD tTD rnB -igT +sAa cUG cSO cSO @@ -100825,20 +88694,20 @@ vpD cSO vPz cUG -eDL +wMZ uaI bdH -fNq -xjO +tDM +oPk dIj kEd nmh lHL -xjO -hMz -nYQ -tOe -nVR +oPk +fyX +rzg +wcs +mvn uwT uwT fWG @@ -100848,18 +88717,18 @@ cpy cpy cpy uwT -ewf +avO snX snX -pWx -fHE -dkJ +dIz +rfv +aFQ lVA -fOX -mjE +pUY +mEu snX snX -rVR +uBn sol xYA xYA @@ -100883,7 +88752,7 @@ aIp xYA aIp jYr -hIf +xlB lSF eXG eXG @@ -100928,25 +88797,25 @@ saC saC saC saC -yjL -yjL -iWu -yjL -jmU +cHr +cHr +jbi +cHr +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lFt -xUx +vjI +vOo +wiQ +dVa +wiQ woG woG -xUx -pNo -pMg +wiQ +hEz +vXP mUh ngo wbR @@ -101014,12 +88883,12 @@ umR vGp vGp vGp -uRb +naq gdO gdO gdO -ayn -xNw +sdH +eiz gdO gdO gdO @@ -101032,13 +88901,13 @@ gdO gdO gdO xXg -fBp +wrf rnB rnB tTD tTD rnB -tIM +mAQ cUG cUG aYg @@ -101053,16 +88922,16 @@ nVc cUG cUG cUG -lzA -kRS -hkd +eZo +kPo +seh cUG dfE inA wTy cUG cUG -hMz +fyX uwT uwT uwT @@ -101075,7 +88944,7 @@ cpy cpy tXW uwT -rTf +kMu lum snX snX @@ -101086,7 +88955,7 @@ vpp snX snX oYO -rVR +uBn gVf xYA xYA @@ -101110,7 +88979,7 @@ xYA xYA aIp kcR -hIf +xlB slq eXG eXG @@ -101155,25 +89024,25 @@ saC saC saC saC -yjL -yjL -yjL -yjL -jmU +cHr +cHr +cHr +cHr +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lKC -xUx -xUx -xUx -xUx -pNo -pMg +vjI +vOo +wiQ +ukI +wiQ +wiQ +wiQ +wiQ +hEz +vXP mUl wbR wbR @@ -101222,9 +89091,9 @@ vGv oQC lzU wsC -krH -krH -krH +ieI +ieI +ieI sfI lzU gRD @@ -101241,40 +89110,40 @@ umR qSH vGp vGp -hHh -sYk +weH +xZP gdO -ene -vTW -puJ -ufU +bph +fju +mVA +gDM gdO -nlY -ylr -ylr -ylr -ylr -ylr -ylr -ylr -ylr -fBp +cvd +xXg +ass +ass +ass +ass +ass +ass +ass +wrf rnB rnB tTD tTD tTD ruc -bmg +aGa wIi cUG cUG cUG -owQ -owQ -owQ -owQ -owQ +wYk +wYk +wYk +wYk +wYk cUG cUG cUG @@ -101285,11 +89154,11 @@ cUG cUG cUG cUG -xjO -xjO +oPk +oPk cUG xzK -hMz +fyX uwT uwT uwT @@ -101303,17 +89172,17 @@ cpy tXW uwT uwT -rTf -tni -tni -tni -tni -tni -tni +kMu +ddk +ddk +ddk +ddk +ddk +ddk cpy cpy nDt -gRp +llm xyC xYA aiP @@ -101337,7 +89206,7 @@ xYA aiP xYA wBx -gRp +llm aVa eXG eXG @@ -101384,23 +89253,23 @@ saC saC saC saC -yjL -jin -jmU +cHr +xXI +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lFt -kLs -xUx -xUx -xUx -pNo -hbj +vjI +vOo +wiQ +dVa +alR +wiQ +wiQ +wiQ +hEz +vpw mUl wbR wbR @@ -101447,13 +89316,13 @@ qSH oQC lzU qnb -aSR -krH -krH -lAn -krH -krH -aSR +tpT +ieI +ieI +sFZ +ieI +ieI +tpT oAu lzU gRD @@ -101469,15 +89338,15 @@ qSH vGp vGp vGp -mJF -oXX -ene +bvr +bUt +bph vDa pej -ufU -raj -xOB -sKJ +gDM +fGR +nhR +rXN tTD rnB rnB @@ -101493,30 +89362,30 @@ tTD rnB tSm rnB -esj -sML -rfB -jUO -ylr -ylr -xxq -xxq -xxq -xxq -rdP -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -xxq -cpk +kJN +qZa +bDh +wod +ass +ass +dhD +dhD +dhD +dhD +szX +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +dhD +iNF uwT uwT uwT @@ -101541,7 +89410,7 @@ cpy cpy iWN jxD -hIf +xlB sTR udA xsq @@ -101563,7 +89432,7 @@ udA xsq res sTR -hIf +xlB sAt svG eXG @@ -101611,23 +89480,23 @@ cpy saC saC saC -yjL -yjL -jmU +cHr +cHr +ujY jOh jPw jPw ktp -kKh -vrV -xUx -lFt -xUx -xUx -xUx -xUx -djq -hbj +vjI +vOo +wiQ +dVa +wiQ +wiQ +wiQ +wiQ +ykZ +vpw mUl wbR wbR @@ -101672,17 +89541,17 @@ qSH qSH oQC qnb -krH -krH -vrd -xpX -xpX -naw -wXQ -wXQ -vrd -krH -iNs +ieI +ieI +cEz +nWy +nWy +jdp +maY +maY +cEz +ieI +oVQ oAu gRD qSH @@ -101696,15 +89565,15 @@ qSH qSH vGp vGp -gzT +slQ gdO -ene +bph vDa pej -rMr +rpi gdO -lCn -tTD +nhR +rXN rnB rnB rnB @@ -101769,27 +89638,27 @@ cpy cpy iWN jxD -hIf -hIf -hIf -qvA -qvA -qvA +xlB +xlB +xlB +reK +reK +reK dEm -uIn -qvA -ugG -rqn -qvA -rRY -qvA +prk +reK +sgi +sRs +reK +lQL +reK uMr -oTL -pbO -oTL -lId -fdT -fdT +aya +rFs +aya +bxw +abk +abk sAt svG eXG @@ -101839,22 +89708,22 @@ cpy tiQ saC saC -yjL -jmU +cHr +ujY jOG kdL kdL kwt -kKh -vrV -xUx -lFt -xUx +vjI +vOo +wiQ +dVa +wiQ woG woG -hOH -djq -hbj +tVF +ykZ +vpw mUl wbR wbR @@ -101898,19 +89767,19 @@ qSH oQC gRj qnb -krH -krH +ieI +ieI xIv xIv kqT xIv -lAn +sFZ xIv buD xIv kqT -kbn -hSs +bHv +jUZ oAu lzU gRD @@ -101923,15 +89792,15 @@ uet aoi aoi dcc -vxG -vxT +nhh +bJC vCG -vUj -puJ +rSN +mVA pej -dFE -lDE -rnB +wYb +nhR +rXN rnB rnB rnB @@ -101998,23 +89867,23 @@ eXG iWN rnq rnq -rVR -rVR -hIf -qvA +uBn +uBn +xlB +reK qXH -uIn -uIn -rRY -rqn -qvA -rRY -qvA +prk +prk +lQL +sRs +reK +lQL +reK uMr -sQR -rNs -whG -fdT +poJ +hJz +sWh +abk rnq rnq svG @@ -102067,21 +89936,21 @@ cpy saC saC saC -jnp -jJj -kel -kel -jJj -mLp -vrV -xUx -lFt -xUx +pjn +ukj +dxh +dxh +ukj +lBW +vOo +wiQ +dVa +wiQ woG woG -xUx -djq -xSN +wiQ +ykZ +uJV mUl wbR wbR @@ -102123,23 +89992,23 @@ qSH oQC lzU qnb -krH -krH -krH -rxo +ieI +ieI +ieI +aNz taJ -ugn -kTJ -iFN -lAn -wXQ -tqb -wXQ +nOO +bdw +brz +sFZ +maY +sXW +maY xIv -rJr -kbn -krH -krH +ahk +bHv +ieI +ieI oAu lzU gRD @@ -102150,15 +90019,15 @@ qSH vGp vGp qoG -sPh -rxT +vko +jJG pfN -puJ -puJ +mVA +mVA pej -qZC -lDE -rnB +azC +nhR +rXN rnB rnB rnB @@ -102227,19 +90096,19 @@ eXG iWN jru jxD -rVR -rVR +uBn +uBn crM wDa ffL baN -rqn +sRs wDa sIr wDa wDa -kXf -iGr +cBe +ftB sAt jru svG @@ -102298,17 +90167,17 @@ saC saC saC saC -yjL -kJV -vrV -xUx -lFt -xUx +cHr +eCB +vOo +wiQ +dVa +wiQ woG woG -xUx -dDF -xSN +wiQ +vLm +uJV mUl wbR wbR @@ -102348,27 +90217,27 @@ rMR qSH oQC qnb -krH -krH -krH -wXQ -wXQ -tcv +ieI +ieI +ieI +maY +maY +hHu trD -ujF -wXQ -wXQ -lAn -nez -wXQ -wXQ +fvW +maY +maY +sFZ +inu +maY +maY xIv -wXQ -wXQ -wXQ -krH -krH -krH +maY +maY +maY +ieI +ieI +ieI oAu gRD qSH @@ -102377,15 +90246,15 @@ vGp vGp vGp vGp -gBb +xfn gdO -ene +bph pej pej -ufU +gDM gdO -xBS -rnB +nhR +rXN rnB rnB rnB @@ -102455,17 +90324,17 @@ wQa eXG iWN jxD -rVR -hIf -hIf -qvA -qvA -rqn -qvA -qvA -hIf -hIf -hIf +uBn +xlB +xlB +reK +reK +sRs +reK +reK +xlB +xlB +xlB sAt svG eXG @@ -102525,17 +90394,17 @@ saC saC saC saC -yjL -yjL -vrV -xUx -lFt -xUx -xUx -xUx -xWz -dDF -xSN +cHr +cHr +vOo +wiQ +dVa +wiQ +wiQ +wiQ +xOT +vLm +uJV mUl nhb wbR @@ -102574,29 +90443,29 @@ ien rMR oQC qnb -krH -krH -lAn -lAn -lAn -lAn -lAn -lAn -vuY -lAn -lAn -lAn -lAn -uEG -lAn -lAn -lAn -lAn -lAn -lAn -lAn -krH -krH +ieI +ieI +sFZ +sFZ +sFZ +sFZ +sFZ +jjn +prF +sFZ +sFZ +sFZ +sFZ +sFT +sFZ +sFZ +sFZ +sFZ +sFZ +sFZ +sFZ +ieI +ieI oAu gRD qSH @@ -102604,15 +90473,15 @@ vGp vGp vGp lyP -ioD -oXX -ene +xfn +bUt +bph pej pej -ufU -raj -xOB -rnB +gDM +fGR +nhR +rXN rnB rnB rnB @@ -102684,13 +90553,13 @@ cex iWN jru jxD -gRp -hIf -hIf -eWR -rVR -hIf -gRp +llm +xlB +xlB +ofV +uBn +xlB +llm sAt jru svG @@ -102752,16 +90621,16 @@ saC saC saC tiQ -yjL -yjL +cHr +cHr tiQ -owC -owC -owC -owC -owC -owC -owC +sod +sod +sod +sod +sod +sod +sod tiQ mVE niu @@ -102800,9 +90669,8 @@ ien cpy qSH oZN -aSR -krH -qUL +tpT +ieI qUL qUL qUL @@ -102811,35 +90679,36 @@ qUL qUL nSF qUL -rOO -eRI -ruj -jgW -aaF -qUL qUL +mEd +mEd +qfA +mfm +lsc +qfM +iRl qUL qUL qUL aDs -xfu -krH -aSR +qUL +ieI +tpT ltf qSH vGp vGp kQJ tPb -onj +vko gdO -ene -puJ -puJ -ene +bph +mVA +mVA +bph gdO cpy -rnB +rXN rnB rnB rnB @@ -102913,9 +90782,9 @@ cex iWN jru jxD -rVR -rVR -rVR +uBn +uBn +uBn sAt jru svG @@ -103027,31 +90896,31 @@ ien cpy qSH pet -krH +ieI xIv qUL qUL -nSF qUL qUL qUL -the -uru -uru -ulh -nQY -swr -xsc -ibE -eTw -nPN -fzC -aaF -fLa qUL +czj +iYH +kRc qUL -lAn -krH +qUL +pSa +aDG +dCc +hzo +qfA +mfm +lsc +qfM +jjD +qUL +sFZ +ieI jaq vGp vGp @@ -103254,31 +91123,31 @@ ien ien qSH pFH -krH +ieI xIv qUL -xfu +qUL nSF qUL -rOO -sCp -toY -uwQ -uwQ -lMI -xRM -hvf -dWv -pAd -wqt -qtc -xsc -pZb -xkk -obe qUL -lAn -krH +unA +rzT +jGF +lYX +srp +srp +xXF +qrV +kza +iNu +pSa +aDG +dCc +hzo +fJX +qUL +sFZ +ieI nTp vGp vGp @@ -103477,35 +91346,35 @@ qSH qSH qSH qSH -aJg +mnG qSH qSH pFH -krH +ieI xIv qUL qUL +nSF qUL +qfA +aaz +lzW +onO +lzW +hmI +hmI +lzW +xQa +lzW +dzQ +xXF +qrV +kza +xXF +jnh qUL -wqt -ejQ -tth -rAt -tth -tth -tth -rAt -tth -kzk -xRM -hvf -dWv -qrj -xqQ -qUL -qUL -pVb -krH +auy +ieI nTp vGp vGp @@ -103704,35 +91573,35 @@ qSH qSH qSH qSH -aJg +mnG qSH qSH pFH -krH +ieI xIv qUL -kNR -rfi -rAc -shq -sKi -tBM -uKQ -uKQ -uKQ -fYN -uKQ -hFm -cJc -dqn -xNu -uXj -qBH qUL -qUf -qUL -lAn -krH +xIH +rLu +qsK +uVc +jwu +peH +peH +peH +peH +bfb +peH +oyn +olR +lCO +onO +lzW +pKM +aFH +jWg +sFZ +ieI nTp vGp vGp @@ -103931,35 +91800,35 @@ qSH qSH qSH qSH -aJg +mnG qSH qSH pFH -krH +ieI xIv qUL -xcR -rgA -rBZ -slK -sYh -tCR -nSN -sjS -sjS -sjS -nSN -tCR -mZM -uKQ -dIr -uKQ -fbY qUL -tzm +dQF +uYP +quX +grB +xFo +ifH +nvm +ayk +ayk +hwc +ocI +xFo +gUX +peH +peH +aSI +gsx qUL -lAn -krH +rZA +sFZ +ieI nTp vGp vGp @@ -104162,31 +92031,31 @@ ien ien qSH pFH -krH +ieI xIv qUL -lVs -rii -rCi -ssU -sKi -tDm -uKQ -uKQ -uKQ -uKQ -sct -iSu -mCl -fTm -pkB -uXj -fbY qUL -gOZ -iRl -lAn -krH +kQi +nwJ +pQt +uVc +dUo +peH +peH +peH +peH +peH +peH +vws +duT +sqi +bZA +dyr +tYM +xIg +hRq +sFZ +ieI nTp vGp cpy @@ -104389,31 +92258,31 @@ ien qSH qSH pFH -krH +ieI xIv qUL qUL qUL pTW -eTw -ejQ -wBr -tIF -wBr -wBr -wBr -tIF -wBr -vuF -twB -fXn -uSB -prD -jcA +pSa +aaz +dyr +bZA +sfo +hmI +hmI +dyr +wTd +dyr +sCj +wia +paJ +oGk +wia +fCV qUL -qUL -lAn -krH +sFZ +ieI nTp vGp cpy @@ -104616,31 +92485,31 @@ ien qSH qSH pFH -krH +ieI xIv qUL qUL qUL qUL -uDM -tcu -tSo -vjv -vjv -lgw -twB -fXn -uSB -ecP -eTw -afT -wAf -qpg -skE qUL +xRJ +sAw +wIv +vho +srp +srp +wia +paJ +oGk +xDy +qfA +rsD +mxf +qfM +kQf qUL -lAn -krH +sFZ +ieI nTp vGp cpy @@ -104843,31 +92712,31 @@ ien ien qSH pVn -krH +ieI xIv qUL qUL qUL -sIA qUL +nSF +qUL +koR +prj +eaO qUL -ucD -vpU -vpU -dWY -vbk -qjX -wAf -qzw -wqt -wRL -eUS -bQq -rCI qUL +qfA +rsD +mxf +qfM +pSa +neD +qSa +ejX +ukL qUL -lAn -krH +sFZ +ieI keq vGp cpy @@ -105070,31 +92939,31 @@ ien qSH qSH oZN -aSR -iNs +tpT +oVQ +qUL qUL qUL qUL nSF qUL xfu -dBd -qUL qUL -uDM -nZN -wRL -xZf -bQq +dBd +iRl qUL +pSa +neD +qSa +hzo +iRl pTW qUL qUL qUL -iRl qUL -krH -aSR +ieI +tpT ltf vGp cpy @@ -105298,29 +93167,29 @@ vGp qSH pYN qqG -kbn -krH -lAn -lAn -lAn -lAn -lAn -nVX -nVX -pVb -lAn -lAn -lAn -naw -nzU -lAn -lAn -lAn -lAn -lAn -lAn -krH -krH +bHv +ieI +sFZ +sFZ +sFZ +sFZ +sFZ +bqy +bqy +sFZ +sFZ +sFZ +sFZ +jdp +pzE +sFZ +sFZ +sFZ +sFZ +sFZ +sFZ +ieI +ieI mil wYJ vGp @@ -105526,27 +93395,27 @@ vGp qSH pYN qqG -krH -krH -krH -rJr -rJr -wXQ +ieI +ieI +ieI +ahk +ahk +maY xIv -wXQ -wXQ -wXQ -lAn -rJr -rJr -tqb +maY +maY +maY +sFZ +ahk +ahk +sXW xIv -wXQ -wXQ -wXQ -krH -krH -krH +maY +maY +maY +ieI +ieI +ieI mil wYJ qSH @@ -105755,23 +93624,23 @@ qSH pYN qXY qqG -krH -krH -krH -tcv +ieI +ieI +ieI +hHu uGT -wXQ -wXQ -hKS -eNW -cuk -wAM -tLJ +maY +maY +ued +sUK +vqq +npZ +wde xIv -wXQ -krH -krH -krH +maY +ieI +ieI +ieI mil qXY wYJ @@ -105984,19 +93853,19 @@ qSH pYN qXY qqG -krH -krH +ieI +ieI xIv xIv xIv xIv -lAn +sFZ xIv xIv xIv kVh -krH -krH +ieI +ieI mil qXY wYJ @@ -106212,17 +94081,17 @@ qSH qSH pYN qqG -krH -krH -krH -wXQ -wXQ -lAn -wXQ -wXQ -krH -krH -krH +ieI +ieI +ieI +maY +maY +sFZ +maY +maY +ieI +ieI +ieI mil wYJ qSH @@ -106441,13 +94310,13 @@ qSH pYN qXY qqG -aSR -krH -krH -lAn -krH -krH -aSR +tpT +ieI +ieI +sFZ +ieI +ieI +tpT mil qXY wYJ @@ -106670,9 +94539,9 @@ qSH pYN qXY xpH -krH -krH -krH +ieI +ieI +ieI qzE qXY wYJ diff --git a/maps/map_files/LV624/LV624.dmm b/maps/map_files/LV624/LV624.dmm index 0b68597ab4..6909960060 100644 --- a/maps/map_files/LV624/LV624.dmm +++ b/maps/map_files/LV624/LV624.dmm @@ -118,17 +118,6 @@ "aaQ" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/east_caves) -"aaR" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/east_caves) -"aaS" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/east_caves) "aaT" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/north_central_caves) @@ -151,12 +140,6 @@ "aaZ" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/north_central_caves) -"aba" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/east_caves) "abb" = ( /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) @@ -201,15 +184,6 @@ "abm" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_central_caves) -"abn" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/obj/structure/largecrate/supply/ammo/shotgun{ - pixel_y = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "abo" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -222,14 +196,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"abt" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "abv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -245,11 +211,6 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"abz" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "abA" = ( /obj/structure/closet/crate/freezer/rations, /turf/open/floor/wood, @@ -270,17 +231,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"abG" = ( -/obj/item/clothing/head/helmet/augment{ - desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; - name = "alien mask"; - unacidable = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) "abH" = ( /obj/effect/landmark/good_item, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -309,19 +259,6 @@ "abS" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) -"abU" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) -"abV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "abW" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -330,22 +267,11 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) -"abZ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "aca" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"acb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage) "acc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -368,36 +294,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"ack" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7 - }, -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) "acl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/chapel) -"acm" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"acn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aco" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -416,58 +316,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"acs" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"act" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/kitchen) -"acu" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) -"acv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/kitchen) -"acw" = ( -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acy" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) -"acB" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "acC" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/meat/human{ @@ -500,83 +348,21 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"acJ" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/ground/barrens/north_east_barrens) "acK" = ( /obj/structure/tunnel{ id = "hole1" }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"acL" = ( -/obj/item/tool/shovel, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acM" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acN" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "acO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"acQ" = ( -/obj/item/device/flashlight/on, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "acS" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"acT" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acU" = ( -/obj/item/tool/pickaxe, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acV" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"acW" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "acX" = ( /obj/effect/decal/remains/xeno, /obj/effect/decal/cleanable/blood/gibs/xeno/down, @@ -589,34 +375,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"acZ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) "adc" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"add" = ( -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"ade" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/west_caves) -"adf" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "adg" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, @@ -673,42 +435,9 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"adx" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "ady" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/south_central_caves) -"adA" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) -"adC" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 2 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = -6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"adF" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "adH" = ( /obj/effect/decal/remains/xeno, /obj/structure/stairs/perspective{ @@ -718,40 +447,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"adI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Mining Storage"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "adJ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"adM" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"adN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"adK" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/lazarus/landing_zones/lz2) "adP" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -762,29 +464,6 @@ /obj/item/weapon/gun/rifle/mar40, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"adS" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"adT" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"adU" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) "adX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, @@ -806,21 +485,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"aeb" = ( -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) "aec" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -836,19 +500,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aei" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "aej" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/prop/brazier/torch, @@ -862,20 +513,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"ael" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"aem" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) "aen" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -901,53 +538,12 @@ "aes" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/west_caves) -"aet" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) "aev" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"aex" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) -"aey" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "aez" = ( /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"aeA" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) -"aeC" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) -"aeD" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "aeE" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -973,16 +569,6 @@ /obj/effect/landmark/good_item, /turf/open/floor, /area/lv624/ground/barrens/containers) -"aeR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "aeS" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/river, @@ -991,6 +577,16 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"aeW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) "aeX" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor, @@ -1003,13 +599,6 @@ /obj/structure/cargo_container/grant/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"afd" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) "aff" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor, @@ -1028,18 +617,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"afj" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "afk" = ( /obj/item/ammo_casing, /turf/open/gm/dirt, @@ -1062,86 +639,10 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"afr" = ( -/obj/structure/ore_box, -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"afu" = ( -/obj/item/ammo_casing, -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"afv" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"afw" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"afx" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"afy" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"afE" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) "afF" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"afG" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "afI" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, @@ -1165,16 +666,6 @@ /obj/item/ammo_casing, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"afO" = ( -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "afR" = ( /obj/structure/ore_box, /turf/open/floor, @@ -1189,17 +680,6 @@ "afV" = ( /turf/closed/wall/cult, /area/lv624/ground/caves/south_west_caves) -"afW" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "afX" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, @@ -1298,12 +778,6 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"ags" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "agt" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -1312,12 +786,15 @@ /obj/item/explosive/grenade/high_explosive, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"agv" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"agy" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/ground/barrens/central_barrens) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "agz" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/gm/dirt, @@ -1338,13 +815,6 @@ /obj/item/explosive/grenade/incendiary, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"agF" = ( -/obj/item/ammo_casing, -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/plating, -/area/lv624/ground/barrens/central_barrens) "agG" = ( /obj/structure/surface/table, /obj/item/ammo_casing, @@ -1363,13 +833,6 @@ /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"agQ" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "agR" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -1412,13 +875,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"agW" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "agX" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) @@ -1426,6 +882,9 @@ /obj/effect/landmark/crap_item, /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) +"ahf" = ( +/turf/open/floor/plating/asteroidwarning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "ahh" = ( /obj/effect/decal/cleanable/blood, /obj/item/ammo_casing, @@ -1478,18 +937,6 @@ /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens/ceiling) -"ahy" = ( -/obj/structure/inflatable, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"ahz" = ( -/obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "ahB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/sandstone/runed, @@ -1501,223 +948,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ahJ" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"ahK" = ( -/obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"ahL" = ( -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"ahM" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"ahN" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "ahO" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"ahQ" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"ahR" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"ahS" = ( -/obj/item/ammo_casing, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"ahT" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "ahV" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ahW" = ( -/obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"aie" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"aif" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"aih" = ( -/obj/structure/largecrate/random, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aik" = ( -/obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/stack/flag/red, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aim" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"ain" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aio" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aip" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiq" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiu" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "aiv" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) -"aiw" = ( -/obj/structure/machinery/constructable_frame, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aix" = ( -/obj/item/frame/apc, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiy" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiz" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiB" = ( -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiD" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "aiF" = ( /obj/item/weapon/butterfly/switchblade, /turf/open/floor/plating, @@ -1735,115 +977,16 @@ /obj/structure/bed/stool, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) -"aiJ" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiK" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiL" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Water Filtration Plant"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiM" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiP" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "aiS" = ( /obj/item/tool/kitchen/knife/butcher, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"aiT" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiU" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aiV" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"aja" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/jungle/west_jungle) "ajc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"ajd" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "ajg" = ( /obj/structure/flora/bush/ausbushes, /turf/open/gm/coast/south, @@ -1852,26 +995,6 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) -"aji" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Lurker Hide" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "ajp" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, @@ -1911,25 +1034,11 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/east_river) -"ajx" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "ajA" = ( /obj/structure/fence, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"ajD" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "ajE" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -1954,28 +1063,6 @@ "ajI" = ( /turf/open/gm/river, /area/lv624/ground/river/east_river) -"ajJ" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"ajL" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) -"ajM" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/river/central_river) "ajR" = ( /obj/effect/decal/mecha_wreckage/ripley{ anchored = 1; @@ -1983,30 +1070,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"ajS" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/river/central_river) "ajT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/river/central_river) -"ajU" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/river/central_river) -"ajV" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/river/central_river) "ajW" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) @@ -2030,45 +1097,10 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"akb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"akc" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "akd" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"akh" = ( -/obj/item/trash/candy, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Corporate Lobby APC" - }, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "akj" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -2089,14 +1121,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/west, /area/lv624/ground/river/central_river) -"akp" = ( -/obj/structure/grille, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "akq" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -2105,25 +1129,6 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"akt" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"aku" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "akv" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -2137,36 +1142,6 @@ "aky" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"akA" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"akC" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"akD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"akE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "akJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2177,35 +1152,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"akM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "akN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"akP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "akQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, @@ -2215,25 +1165,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) -"akT" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"akU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "akV" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -2266,17 +1197,6 @@ }, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) -"ald" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "ale" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -2285,14 +1205,6 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"ali" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "alo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -2324,31 +1236,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"alE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "alF" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/coast/east, /area/lv624/ground/river/central_river) -"alK" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "alL" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -2373,28 +1264,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"alR" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"alS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "alT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2411,36 +1280,11 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"alX" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, -/area/lv624/ground/river/central_river) -"alY" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, -/area/lv624/ground/river/central_river) "alZ" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/river/central_river) -"ama" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"amf" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "amh" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/grass/grass1, @@ -2448,14 +1292,6 @@ "amk" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_west_caves) -"aml" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "amo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -2480,16 +1316,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"amA" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "amB" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, @@ -2517,10 +1343,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"amK" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/river/west_river) "amL" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, @@ -2529,40 +1351,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"amR" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) -"amS" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"amT" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "amW" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"amX" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "amZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -2581,16 +1373,6 @@ "ane" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"anf" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "ank" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) @@ -2622,28 +1404,17 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"anE" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "anF" = ( /turf/closed/wall, /area/lv624/lazarus/medbay) "anG" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hydroponics) -"anJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) +"anL" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "anM" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, @@ -2659,266 +1430,61 @@ "anS" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/medbay) -"anT" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "anW" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) -"aoa" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aob" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aol" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "aon" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"aoo" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "aop" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"aor" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, +"aoX" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/coast/beachcorner/south_west, +/area/lv624/ground/river/east_river) +"aoZ" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/river, +/area/lv624/ground/river/west_river) +"apa" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/coast/beachcorner2/south_east, +/area/lv624/ground/river/west_river) +"aph" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_jungle) +"apl" = ( +/obj/structure/fence, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz2) +"apo" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, /obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aou" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) -"aov" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aow" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aox" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aoz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoA" = ( -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoC" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoE" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aoF" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"aoI" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"aoK" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aoL" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aoO" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoP" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoR" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aoU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) -"aoX" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/coast/beachcorner/south_west, -/area/lv624/ground/river/east_river) -"aoZ" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/river, -/area/lv624/ground/river/west_river) -"apa" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/coast/beachcorner2/south_east, -/area/lv624/ground/river/west_river) -"aph" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"apl" = ( -/obj/structure/fence, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) -"apo" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/effect/landmark/crap_item, -/turf/open/gm/river, -/area/lv624/ground/river/east_river) -"app" = ( -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/river/east_river) -"apq" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) -"apt" = ( -/turf/open/floor, +/turf/open/gm/river, +/area/lv624/ground/river/east_river) +"app" = ( +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/river/east_river) +"apq" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz2) +"apt" = ( +/turf/open/floor, /area/lv624/lazarus/medbay) "apu" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"apw" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"apx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"apA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"apC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"apH" = ( -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "apN" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) @@ -2934,26 +1500,11 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"apV" = ( -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "apW" = ( /obj/structure/flora/jungle/vines/light_3, /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"apZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "aqf" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -2963,22 +1514,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"aqp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aqq" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/jungle/west_jungle) "aqr" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker, @@ -3031,17 +1566,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/east_river) -"aqQ" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "aqR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/west_jungle) @@ -3066,20 +1590,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"arf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"arg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) "ari" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/closed/wall/strata_ice/jungle, @@ -3090,85 +1600,17 @@ "aro" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"arp" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/reagent_container/glass/bucket{ - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"arq" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/apron, -/obj/item/tool/shovel, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"arr" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"art" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"aru" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Hydroponics APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"arv" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "arw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/quartstorage/outdoors) -"arE" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, -/area/lv624/ground/jungle/west_jungle) +"arx" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "arG" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -3177,29 +1619,9 @@ /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"arI" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"arJ" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "arK" = ( /turf/closed/wall, /area/lv624/lazarus/quartstorage/outdoors) -"arL" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "arO" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -3221,12 +1643,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/east_river) -"arT" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "arU" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, @@ -3241,10 +1657,6 @@ "asc" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"asd" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/west_jungle) "ase" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_jungle) @@ -3256,16 +1668,6 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"asj" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"ask" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "asl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -3305,12 +1707,6 @@ /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"asA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage/outdoors) "asF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, @@ -3323,23 +1719,6 @@ /obj/item/trash/cigbutt, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"asJ" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"asK" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"asL" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "asM" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper LZ1 Access"; @@ -3351,12 +1730,6 @@ "asN" = ( /turf/closed/wall, /area/lv624/lazarus/quartstorage) -"asO" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage) "asP" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ density = 0; @@ -3385,34 +1758,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"asV" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"asX" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"asY" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) "asZ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -3423,28 +1768,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"atc" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"atd" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "ati" = ( /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"atk" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "atn" = ( /obj/structure/window_frame/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer{ @@ -3454,18 +1780,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"atp" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"atq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "atu" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_jungle) @@ -3476,18 +1790,6 @@ "atw" = ( /turf/closed/wall, /area/lv624/lazarus/fitness) -"aty" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) "atz" = ( /obj/structure/window_frame/colony, /turf/open/floor/plating, @@ -3500,24 +1802,12 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"atD" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "atE" = ( /obj/item/stack/sheet/wood{ amount = 2 }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"atF" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) "atG" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -3554,68 +1844,13 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"atQ" = ( -/obj/structure/lamarr{ - density = 0; - destroyed = 1; - icon_state = "labcageb0"; - occupied = 0 - }, -/obj/item/shard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"atR" = ( -/obj/structure/lamarr{ - density = 0; - destroyed = 1; - icon_state = "labcageb0"; - occupied = 0 - }, -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/item/shard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "atS" = ( /obj/effect/decal/cleanable/blood, /turf/closed/wall, /area/lv624/lazarus/research) -"atT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "atU" = ( /turf/closed/wall, /area/lv624/lazarus/research) -"atV" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"atX" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "atY" = ( /obj/structure/window_frame/colony, /obj/item/shard, @@ -3640,11 +1875,6 @@ "aud" = ( /turf/open/gm/river, /area/lv624/ground/river/west_river) -"aue" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) "auf" = ( /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) @@ -3659,68 +1889,17 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"aum" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "aun" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"auo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aup" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "aut" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"auu" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"auv" = ( -/obj/effect/decal/remains/human, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"auw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "aux" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/medical/advanced/bruise_pack/predator, @@ -3730,82 +1909,19 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_west_jungle) -"auz" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"auA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"auB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/fertilizer{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"auD" = ( -/obj/item/clothing/under/shorts/red, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "auE" = ( /turf/open/gm/river, /area/lv624/lazarus/fitness) -"auF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) -"auG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) -"auI" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"auJ" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"auK" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "auM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) +"auN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "auO" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ name = "\improper River Snack Bar"; @@ -3818,64 +1934,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) -"auR" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) -"auV" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"auW" = ( -/obj/item/bananapeel, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"auX" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"auY" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "auZ" = ( /obj/item/toy/inflatable_duck, /turf/open/gm/river, /area/lv624/lazarus/fitness) -"ava" = ( -/obj/structure/cargo_container/seegson/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"avb" = ( -/obj/structure/cargo_container/seegson/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"avc" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "ave" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -3900,31 +1962,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"avk" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "avm" = ( /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) @@ -3936,119 +1973,20 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"avp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) -"avq" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"avr" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"avu" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"avv" = ( -/obj/item/toy/beach_ball, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) +"avs" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "avw" = ( /obj/effect/landmark/good_item, /turf/open/gm/river, /area/lv624/lazarus/fitness) -"avx" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "avy" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) -"avB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"avD" = ( -/obj/structure/surface/table, -/obj/effect/decal/remains/human, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"avE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"avF" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"avG" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "avH" = ( /turf/closed/wall, /area/lv624/lazarus/robotics) @@ -4056,20 +1994,13 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, /area/lv624/ground/river/west_river) -"avM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"avN" = ( -/obj/item/tool/soap, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"avO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Corporate Liaison" }, -/area/lv624/lazarus/fitness) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "avP" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, @@ -4090,38 +2021,6 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"avT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"avU" = ( -/obj/item/stack/rods{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"avV" = ( -/obj/structure/surface/rack, -/obj/item/weapon/baton/cattleprod{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/weapon/baton/cattleprod{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "avX" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/river, @@ -4154,100 +2053,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"awj" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awl" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awm" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awn" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awo" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awp" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awq" = ( -/obj/item/clothing/glasses/regular, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"aws" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "awt" = ( /obj/effect/decal/remains/human, /obj/item/frame/table, @@ -4256,44 +2061,6 @@ "awu" = ( /turf/open/floor, /area/lv624/lazarus/fitness) -"awv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) -"aww" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Fitness APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"awx" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"awy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "awz" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, @@ -4302,128 +2069,22 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) -"awD" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"awE" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) "awF" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"awG" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"awH" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awI" = ( -/obj/effect/decal/remains/human, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"awK" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "awL" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_central_jungle) -"awM" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "awN" = ( /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor, /area/lv624/lazarus/research) -"awP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) "awQ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_central_jungle) -"awR" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"awS" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"awT" = ( -/obj/item/clothing/under/shorts/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"awU" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) "awV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -4443,100 +2104,10 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"awZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"axa" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"axb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"axe" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"axf" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"axg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"axh" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"axi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"axj" = ( -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"axk" = ( -/obj/structure/prop/mech/armor_booster, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"axo" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "axp" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"axt" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"axu" = ( -/obj/structure/holohoop, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"axv" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "axw" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) @@ -4546,99 +2117,23 @@ /obj/item/weapon/harpoon, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"axA" = ( -/obj/item/stool, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"axB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"axC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "axD" = ( /obj/effect/decal/remains/human, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"axF" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"axG" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/landmark/monkey_spawn, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"axH" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"axI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"axN" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"axQ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" +"axK" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/fitness) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "axR" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"axS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"axV" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/west_jungle) "axW" = ( /obj/effect/decal/remains/xeno, /obj/structure/fence, @@ -4667,135 +2162,17 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"ayd" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"ayg" = ( -/obj/structure/computerframe, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "ayh" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) -"ayj" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"ayk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"ayl" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aym" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"ayn" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"ayp" = ( -/obj/item/bananapeel, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"ayq" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"ayr" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ays" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ayt" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "ayu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"ayv" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/fitness) "ayw" = ( /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"ayx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"ayy" = ( -/obj/item/clothing/under/shorts/black{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"ayz" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "ayA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -4814,64 +2191,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"ayF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"ayG" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"ayI" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop/alien/hugger, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"ayJ" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard{ - pixel_x = -18 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ayK" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"ayM" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ayN" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/jungle/west_jungle) "ayP" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/main_hall) @@ -4904,147 +2223,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/jungle/west_jungle) -"ayW" = ( -/obj/structure/largecrate/random, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 5 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"ayY" = ( -/obj/item/device/multitool, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"ayZ" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aza" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azb" = ( -/obj/structure/prop/mech/mech_parts/part/gygax_torso, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aze" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) "azg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"azh" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"azi" = ( -/obj/structure/surface/rack, -/obj/item/shard{ - pixel_x = 12; - pixel_y = 3 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"azj" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"azk" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"azl" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"azm" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"azn" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"azo" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "azp" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_male) @@ -5052,34 +2236,10 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/sleep_male) -"azr" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "azs" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"azt" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"azu" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"azv" = ( -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "azw" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_female) @@ -5087,12 +2247,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/sleep_female) -"azy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/sleep_female) "azB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -5109,32 +2263,10 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"azF" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"azG" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azI" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"azJ" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) +"azH" = ( +/obj/item/ammo_magazine/rifle/extended, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "azK" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ density = 0; @@ -5145,55 +2277,12 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"azM" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"azN" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "azP" = ( /turf/closed/wall, /area/lv624/lazarus/sleep_male) -"azQ" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "azR" = ( /turf/closed/wall, /area/lv624/lazarus/sleep_female) -"azS" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel{ - pixel_y = 12 - }, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"azT" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "azU" = ( /obj/structure/barricade/wooden, /turf/open/gm/grass/grass1, @@ -5246,43 +2335,9 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"aAh" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"aAi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aAj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aAk" = ( -/obj/structure/prop/mech/mech_parts/chassis/gygax, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "aAl" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"aAm" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "aAo" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 8; @@ -5314,90 +2369,6 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"aAv" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAw" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAx" = ( -/obj/structure/closet, -/obj/item/weapon/baseballbat, -/obj/item/clothing/head/beret/jan, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aAz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aAA" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/laceup, -/obj/item/stack/medical/advanced/ointment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aAB" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aAC" = ( -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aAD" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/wood{ @@ -5416,136 +2387,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aAP" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aAS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Men's Dorms APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/item/toy/deck, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAU" = ( -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAW" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAX" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/scientist, -/obj/structure/window/reinforced/tinted, -/obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aAY" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aAZ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aBa" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/clothing/under/colonist, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBb" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBd" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBf" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aBg" = ( /obj/item/stack/sheet/metal, /obj/structure/girder, @@ -5578,17 +2419,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aBi" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "aBk" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -5601,116 +2431,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) -"aBo" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "Robotics Landing Zone" - }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) -"aBq" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/repair_droid{ - layer = 2; - pixel_y = -10 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aBr" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aBs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aBt" = ( -/obj/structure/computerframe, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "aBx" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"aBy" = ( -/obj/structure/flora/pottedplant, -/obj/item/trash/cheesie, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBz" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBB" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aBC" = ( -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBD" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aBF" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aBG" = ( /obj/item/stack/rods{ amount = 15 @@ -5753,113 +2477,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"aBR" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/mech_parts/part/gygax_armor{ - layer = 1 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aBS" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aBT" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBU" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBV" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBW" = ( -/obj/item/stack/medical/advanced/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBY" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aBZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Male Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCa" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) -"aCb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Female Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aCc" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aCd" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - name = "Women's Dorms APC"; - pixel_x = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aCh" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -5870,30 +2487,6 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aCk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aCl" = ( -/obj/structure/largecrate, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aCm" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"aCn" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "aCo" = ( /obj/effect/decal/mecha_wreckage/ripley{ anchored = 1; @@ -5905,105 +2498,14 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"aCq" = ( -/obj/structure/surface/table, -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "aCs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/lazarus/landing_zones/lz2) -"aCt" = ( -/obj/structure/closet, -/obj/item/tool/crowbar, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCu" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCv" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCw" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "aCx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aCy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) -"aCz" = ( -/obj/structure/closet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/shoes/centcom, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aCA" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aCC" = ( -/obj/item/reagent_container/food/drinks/flask/barflask, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aCE" = ( /obj/structure/girder/displaced, /turf/open/floor/vault, @@ -6021,127 +2523,19 @@ /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"aCK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"aCL" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) "aCO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_jungle) -"aCP" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCQ" = ( -/obj/structure/surface/table, -/obj/item/tool/pen{ - layer = 3.1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCR" = ( -/obj/item/trash/cheesie, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "aCS" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) -"aCT" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCU" = ( -/obj/structure/bed, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aCV" = ( -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/sleep_male) "aCX" = ( /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aCZ" = ( -/obj/structure/surface/table, -/obj/item/weapon/gun/pistol/holdout, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aDa" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aDb" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aDc" = ( -/obj/structure/surface/table, -/obj/item/device/megaphone, -/obj/item/tool/wrench, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aDd" = ( /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) -"aDi" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aDj" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/river, @@ -6154,43 +2548,6 @@ /obj/item/bananapeel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"aDp" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aDq" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aDs" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aDt" = ( -/obj/structure/closet, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aDu" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aDv" = ( /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) @@ -6198,66 +2555,13 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aDx" = ( -/obj/structure/closet, -/obj/item/clothing/under/blackskirt, -/obj/item/stack/medical/advanced/ointment, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "aDy" = ( /turf/closed/wall, /area/lv624/lazarus/toilet) -"aDz" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aDA" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aDB" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aDE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Storage Pods APC"; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) "aDF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"aDG" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aDI" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/plating, @@ -6274,12 +2578,6 @@ /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aDM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aDN" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/river, @@ -6304,34 +2602,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) -"aDV" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"aDW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/trash/cheesie, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aDX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aDY" = ( /turf/closed/wall, /area/lv624/lazarus/quart) @@ -6342,29 +2612,9 @@ "aEb" = ( /turf/open/floor/plating, /area/lv624/lazarus/quart) -"aEd" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) "aEe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_jungle) -"aEf" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quartstorage) -"aEg" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quartstorage) "aEh" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/vault, @@ -6385,13 +2635,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aEn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) "aEs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -6420,160 +2663,23 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aEA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Unisex Bathrooms APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aEB" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "aEC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/toilet) -"aED" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aEE" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "aEF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) -"aEG" = ( -/obj/structure/closet/coffin{ - density = 0; - icon_state = "coffin_open"; - opened = 1 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aEH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "aEI" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aEJ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"aEK" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Chapel APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aEL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "aEM" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/jungle/west_jungle) -"aEO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aEP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aEQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "aER" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -6581,182 +2687,18 @@ }, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aES" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "aET" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall, /area/lv624/lazarus/quart) -"aEU" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aEV" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aEW" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aEX" = ( -/obj/structure/dispenser, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aEY" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aEZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFa" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFb" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) -"aFh" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window, -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aFj" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aFk" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aFl" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "aFm" = ( /turf/closed/wall/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"aFn" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "aFo" = ( /turf/open/floor/plating, /area/lv624/lazarus/chapel) -"aFp" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aFq" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/chapel) "aFr" = ( /obj/structure/bed/chair/wheelchair, /turf/open/floor/wood, @@ -6771,103 +2713,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aFu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Nexus Cargo Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFw" = ( -/obj/structure/machinery/bot/mulebot{ - auto_pickup = 0; - auto_return = 0; - health = 1; - on = 0 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFx" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/computerframe{ - anchored = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFy" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/costume/butler, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFD" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFE" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quartstorage) "aFF" = ( /obj/structure/barricade/wooden, /turf/open/floor, @@ -6903,98 +2748,19 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aFO" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aFP" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "aFQ" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"aFR" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aFS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "aFT" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aFU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFV" = ( -/obj/structure/surface/table, -/obj/item/trash/cheesie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aFW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aFY" = ( -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) "aFZ" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage) -"aGa" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aGb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aGc" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aGe" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -7024,82 +2790,12 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) -"aGm" = ( -/obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aGn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aGo" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Bathroom"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aGp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aGq" = ( -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aGr" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "aGs" = ( /turf/closed/wall, /area/lv624/lazarus/chapel) -"aGt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aGu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "aGw" = ( /turf/open/floor, /area/lv624/lazarus/quartstorage) -"aGx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) "aGy" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -7126,64 +2822,11 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aGH" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aGI" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aGJ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "aGN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aGO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aGP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Storage Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/quartstorage) -"aGQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aGR" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) "aGS" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -7209,160 +2852,15 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/north_nexus_road) -"aGZ" = ( -/obj/structure/surface/table, -/obj/item/poster, -/obj/item/clothing/glasses/regular/hipster, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aHa" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aHb" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aHc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/structure/prop/mech/hydralic_clamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aHe" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"aHf" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHg" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) -"aHi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"aHj" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aHl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aHm" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aHn" = ( -/obj/structure/machinery/still, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"aHo" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHq" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHr" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aHs" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aHu" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warningcorner" +"aHy" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "aHB" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -7375,242 +2873,39 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"aHF" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Chapel"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/chapel) -"aHI" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/chapel) -"aHJ" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHL" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aHM" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aHN" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/flora/jungle/vines/heavy, -/turf/closed/wall/strata_ice/jungle, -/area/lv624/lazarus/landing_zones/lz1) -"aHO" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/coast/south, -/area/lv624/ground/jungle/west_jungle) -"aHQ" = ( -/obj/structure/flora/bush/ausbushes/palebush, -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/east_jungle) -"aHR" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast/south, -/area/lv624/ground/jungle/west_jungle) -"aHT" = ( -/obj/structure/window_frame/wood, -/turf/open/floor/wood, -/area/lv624/ground/caves/north_central_caves) -"aHZ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"aIb" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"aIc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aId" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, -/area/lv624/ground/jungle/south_west_jungle) -"aIe" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIh" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Central Hallway APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIj" = ( -/obj/item/trash/chips, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIm" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aIn" = ( -/obj/structure/flora/bush/ausbushes/var3/sunnybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aIo" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aIp" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aIr" = ( -/obj/structure/machinery/atm{ - name = "Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIs" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIu" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIv" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aIw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aIy" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet01" - }, +"aHN" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/strata_ice/jungle, +/area/lv624/lazarus/landing_zones/lz1) +"aHO" = ( +/obj/structure/flora/bush/ausbushes/var3/sunnybush, +/turf/open/gm/coast/south, +/area/lv624/ground/jungle/west_jungle) +"aHQ" = ( +/obj/structure/flora/bush/ausbushes/palebush, +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/east_jungle) +"aHR" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/south, +/area/lv624/ground/jungle/west_jungle) +"aHT" = ( +/obj/structure/window_frame/wood, +/turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"aId" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, +/area/lv624/ground/jungle/south_west_jungle) +"aIm" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_jungle) +"aIq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_jungle) "aIz" = ( /obj/structure/flora/jungle/vines/light_1, /obj/effect/landmark/monkey_spawn, @@ -7622,24 +2917,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aIB" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aIE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "aIH" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -7647,15 +2924,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"aII" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "aIJ" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -7665,42 +2933,15 @@ /obj/structure/window_frame/colony, /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) -"aIM" = ( -/obj/structure/flora/jungle/vines/light_2, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/yggdrasil) "aIO" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) -"aIP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) "aIV" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"aIX" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) "aIY" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -7709,12 +2950,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"aJa" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) "aJb" = ( /turf/open/floor, /area/lv624/lazarus/main_hall) @@ -7722,68 +2957,11 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor, /area/lv624/lazarus/main_hall) -"aJd" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"aJe" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"aJf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"aJg" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"aJh" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) "aJi" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"aJj" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"aJk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aJl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) "aJr" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) @@ -7806,67 +2984,10 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"aJB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"aJD" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"aJE" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) "aJF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/landing_zones/lz2) -"aJG" = ( -/obj/item/tool/pickaxe/jackhammer{ - desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; - force = 3; - name = "display jackhammer" - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"aJH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"aJI" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) "aJJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/mineral/gold{ @@ -7874,98 +2995,14 @@ name = "Statue of the Sky" }, /area/lv624/lazarus/main_hall) -"aJK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"aJL" = ( -/obj/item/stock_parts/matter_bin/super, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"aJM" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"aJN" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) "aJO" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/lazarus/landing_zones/lz2) -"aJP" = ( -/obj/item/stock_parts/scanning_module/phasic, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"aJQ" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aJR" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aJS" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"aJZ" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "aKb" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) @@ -7996,17 +3033,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"aKj" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) "aKk" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/heavy, @@ -8035,33 +3061,11 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"aKq" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Atmospherics Processing APC" - }, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "aKr" = ( /obj/structure/window_frame/colony, /obj/structure/flora/jungle/vines/light_1, /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) -"aKv" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"aKx" = ( -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) "aKy" = ( /obj/effect/decal/cleanable/blood{ pixel_y = 12 @@ -8103,30 +3107,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/yggdrasil) -"aKJ" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aKK" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aKL" = ( -/obj/item/frame/table, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aKM" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -8202,14 +3182,6 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"aLn" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/tool/mop, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aLo" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, @@ -8225,18 +3197,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"aLs" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"aLt" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "aLv" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) @@ -8247,12 +3207,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"aLz" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "Nexus Landing Zone" - }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz1) "aLF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -8290,165 +3244,10 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"aLS" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aLT" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/structure/surface/rack, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "aLW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"aLX" = ( -/obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aLZ" = ( -/obj/structure/target, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aMa" = ( -/obj/item/device/flash, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/flashbang{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) -"aMb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aMe" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"aMf" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aMg" = ( -/obj/item/trash/raisins, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aMh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) -"aMi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"aMj" = ( -/obj/structure/device/broken_piano, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aMk" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aMl" = ( -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aMm" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aMn" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aMo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aMp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"aMq" = ( -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aMr" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -8457,6 +3256,10 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"aMu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "aMz" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -8508,82 +3311,10 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/east, /area/lv624/lazarus/yggdrasil) -"aMX" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aMY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aMZ" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aNb" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNc" = ( -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNd" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/mime, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"aNe" = ( -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) "aNf" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"aNh" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) -"aNi" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "aNj" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -8592,12 +3323,6 @@ "aNk" = ( /turf/closed/wall, /area/lv624/lazarus/kitchen) -"aNl" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aNn" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/east, @@ -8612,12 +3337,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aNA" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/yggdrasil) "aNB" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -8655,170 +3374,20 @@ "aNK" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window_frame/colony, -/turf/open/floor/plating, -/area/lv624/lazarus/yggdrasil) -"aNL" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aNM" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aNN" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNO" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNP" = ( -/obj/item/folder/red, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) -"aNQ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Security Office APC" - }, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aNS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) -"aNT" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - locked = 1; - name = "\improper Nexus Dome Marshal Office"; - req_one_access_txt = "104;3" - }, -/turf/open/floor, -/area/lv624/lazarus/security) -"aNV" = ( -/obj/structure/surface/table, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aNW" = ( -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aNX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/tomato, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aNY" = ( -/obj/structure/surface/table, -/obj/item/trash/snack_bowl{ - pixel_y = 9 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aNZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aOa" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aOb" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/jungle/north_jungle) -"aOc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aOd" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aOe" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/canteen) -"aOo" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/big, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +/turf/open/floor/plating, +/area/lv624/lazarus/yggdrasil) +"aNT" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + locked = 1; + name = "\improper Nexus Dome Marshal Office"; + req_one_access_txt = "104;3" }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor, +/area/lv624/lazarus/security) +"aOb" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/jungle/north_jungle) "aOs" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/west, @@ -8843,52 +3412,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"aOy" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Secure Vault APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aOB" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"aOC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aOD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/lv624/lazarus/security) "aOF" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -8901,28 +3424,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aOI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) -"aOJ" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) -"aOK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/lv624/lazarus/security) "aOL" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -8932,37 +3433,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aON" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aOO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aOQ" = ( -/obj/structure/surface/table, -/obj/item/trash/candy, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aOR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aOS" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -9006,114 +3476,14 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aPo" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aPp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory"; - req_one_access_txt = "19;106" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"aPq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) -"aPr" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) "aPt" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/comms) -"aPu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aPv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/obj/item/storage/firstaid/adv, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) "aPx" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/crap_item, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aPy" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aPz" = ( -/obj/structure/machinery/chem_master/condimaster, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aPA" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aPB" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aPC" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aPD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aPE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aPH" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible, @@ -9126,23 +3496,13 @@ /obj/effect/landmark/good_item, /turf/open/floor, /area/lv624/lazarus/chapel) -"aPI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aPJ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/box/matches, -/obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" +"aPL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/lv624/lazarus/chapel) +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/river/central_river) "aPM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -9151,22 +3511,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"aPN" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/lv624/lazarus/comms) -"aPO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "aPR" = ( /obj/structure/lz_sign/lazarus_sign{ density = 0 @@ -9196,75 +3540,11 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) -"aPZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aQa" = ( /obj/structure/flora/grass/ice/both, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aQb" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aQc" = ( -/obj/structure/surface/table, -/obj/structure/machinery/processor, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aQd" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aQe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aQf" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aQg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aQn" = ( -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "aQo" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -9300,139 +3580,9 @@ "aQx" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/captain) -"aQy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aQB" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aQD" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aQE" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aQF" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"aQG" = ( -/obj/structure/bookcase, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aQH" = ( -/obj/structure/bookcase, -/obj/item/bananapeel, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aQI" = ( -/obj/structure/showcase{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aQJ" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aQK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "aQM" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hop) -"aQN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aQO" = ( -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aQP" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"aQQ" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Cafeteria APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aQX" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_2, @@ -9447,70 +3597,9 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aRd" = ( -/obj/structure/surface/table, -/obj/item/device/mmi/radio_enabled, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aRe" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aRf" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset{ - frequency = 1469; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/headset{ - frequency = 1469 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "aRg" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aRh" = ( -/obj/structure/closet/coffin, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"aRi" = ( -/obj/structure/surface/table, -/obj/item/ashtray/glass, -/obj/item/tool/crowbar, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aRj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "aRo" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, @@ -9541,89 +3630,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/landing_zones/lz2) -"aRz" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aRB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/mob/living/simple_animal/corgi/puppy{ - desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; - name = "\improper Mister Wiggles" - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aRC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - locked = 1; - name = "\improper Nexus Dome Marshal's Quarters"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/captain) -"aRD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aRE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aRF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/lazarus/hop) -"aRG" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" - }, -/area/lv624/lazarus/landing_zones/lz2) -"aRI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "aRK" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -9640,66 +3646,10 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"aRP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aRR" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/chefhat, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aRU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aRV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"aRW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aRX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aRZ" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -9724,30 +3674,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"aSd" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aSe" = ( -/obj/structure/surface/table, -/obj/item/device/multitool, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aSg" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "aSi" = ( /obj/structure/foamed_metal, /obj/structure/flora/jungle/vines/heavy, @@ -9763,136 +3689,14 @@ /obj/structure/foamed_metal, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aSo" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) -"aSq" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Commandant's Quarters APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aSs" = ( -/obj/structure/coatrack, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "aSv" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/captain) -"aSw" = ( -/obj/item/trash/popcorn, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aSy" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aSA" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "aSB" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/hop) -"aSC" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aSD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aSE" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aSF" = ( -/obj/structure/machinery/requests_console{ - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aSG" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aSH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aSI" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aSJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aSK" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "aSL" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/engineering) @@ -9901,32 +3705,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/engineering) -"aSQ" = ( -/obj/structure/safe/floor{ - name = "safe"; - spawnkey = 0 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aSR" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aST" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) "aSU" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Nexus Dome Command Quarter"; @@ -9939,46 +3717,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"aSW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grilledcheese, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aSX" = ( /turf/closed/wall, /area/lv624/lazarus/engineering) -"aSY" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aSZ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aTb" = ( /turf/open/floor/plating, /area/lv624/lazarus/kitchen) -"aTc" = ( -/obj/structure/surface/table, -/obj/item/trash/chips, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aTd" = ( -/obj/item/frame/table, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "aTe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -9989,74 +3733,10 @@ "aTg" = ( /turf/closed/wall, /area/lv624/lazarus/comms) -"aTh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTj" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTk" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTo" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aTq" = ( -/obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aTs" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/engineering) "aTt" = ( /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"aTu" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aTv" = ( /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, @@ -10072,18 +3752,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"aTB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aTC" = ( -/obj/item/trash/cheesie, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/lazarus/hop) "aTD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -10092,87 +3760,23 @@ }, /turf/open/floor, /area/lv624/lazarus/kitchen) -"aTE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aTF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4; +"aTQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet{ + pixel_x = 6; pixel_y = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aTG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTH" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aTJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Telecomms APC"; - pixel_y = 30; - start_charge = 15 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/comms) -"aTK" = ( -/turf/open/gm/dirt, -/area/lv624/lazarus/comms) -"aTM" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aTN" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aTR" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 }, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "platebot" +/obj/item/tool/minihoe{ + pixel_y = -2 }, -/area/lv624/lazarus/engineering) +/obj/structure/machinery/light, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "aTS" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -10184,75 +3788,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aTW" = ( -/obj/item/clothing/glasses/regular, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aTX" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aTY" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - locked = 1; - name = "\improper Nexus Dome Director's Quarters"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/hop) -"aTZ" = ( -/obj/structure/machinery/vending, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aUa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aUb" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aUc" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Kitchen APC" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aUd" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/rack, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aUe" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_east, @@ -10269,182 +3804,22 @@ /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aUk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aUl" = ( -/obj/item/device/multitool, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aUo" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aUq" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/engineering) -"aUs" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aUt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/assembly/timer, -/obj/item/device/assembly/voice, -/obj/item/tool/crowbar, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aUu" = ( -/obj/structure/machinery/light, -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aUx" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aUz" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) -"aUA" = ( -/obj/item/bedsheet/rd, -/obj/item/weapon/pole/fancy_cane, -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aUB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aUD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aUE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aUF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research Director's APC" - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) "aUG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/hop) -"aUH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aUI" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aUJ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall, /area/lv624/lazarus/kitchen) -"aUL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aUM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aUN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aUO" = ( /obj/item/shard, /obj/structure/flora/jungle/vines/light_3, @@ -10453,15 +3828,6 @@ "aUQ" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aUR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Secure Vault APC"; - pixel_y = 30; - start_charge = 200 - }, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "aUS" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -10469,71 +3835,23 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"aUW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"aUZ" = ( +/obj/item/device/flashlight/on, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "aVa" = ( /obj/item/xenos_claw, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aVb" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aVd" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aVe" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aVf" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aVg" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aVj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aVk" = ( /obj/structure/sign/safety/maint, /obj/structure/fence, @@ -10554,39 +3872,6 @@ }, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"aVp" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aVq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aVr" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aVs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aVt" = ( -/obj/structure/machinery/gibber, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aVu" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/kitchen) @@ -10596,13 +3881,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aVx" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet02" - }, -/area/lv624/ground/caves/north_central_caves) "aVA" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass2, @@ -10611,12 +3889,6 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/engineering) -"aVC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aVE" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -10624,44 +3896,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aVF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Geothermal APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aVG" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aVH" = ( -/obj/item/clothing/head/hardhat/orange, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aVI" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aVJ" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/gm/grass/grass1, @@ -10670,36 +3904,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aVM" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/taperecorder, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aVN" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aVO" = ( -/obj/structure/barricade/wooden, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aVP" = ( -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = -8 - }, -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aVS" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) @@ -10741,57 +3945,10 @@ /obj/item/ore/silver, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aWd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aWe" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aWf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/foamed_metal, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWg" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "aWh" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) -"aWi" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWj" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aWk" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -10799,53 +3956,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"aWl" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aWm" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aWn" = ( -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aWo" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aWp" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "aWq" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/gm/dirtgrassborder/east, @@ -10861,85 +3971,14 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"aWx" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aWy" = ( -/obj/structure/foamed_metal, -/turf/open/gm/dirt, -/area/lv624/lazarus/comms) -"aWz" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating, -/area/lv624/lazarus/engineering) -"aWA" = ( -/obj/structure/foamed_metal, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/east_central_jungle) -"aWD" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"aWE" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWF" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWG" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aWI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, +"aWz" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, /area/lv624/lazarus/engineering) +"aWC" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/east_central_jungle) "aWJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, @@ -10948,15 +3987,6 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"aWL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aWM" = ( /obj/structure/grille{ density = 0; @@ -10966,12 +3996,6 @@ /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"aWO" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "aWP" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -10993,98 +4017,6 @@ /obj/item/weapon/gun/flamer, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aWV" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"aWW" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/extended, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"aWX" = ( -/obj/structure/surface/table, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aWY" = ( -/obj/structure/surface/table, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aWZ" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/soft/blue, -/obj/structure/machinery/light, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aXa" = ( -/obj/structure/surface/table, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/obj/item/tool/crowbar, -/obj/structure/machinery/light, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aXc" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"aXd" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/lazarus/comms) -"aXe" = ( -/obj/structure/foamed_metal, -/turf/open/gm/dirtgrassborder/south, -/area/lv624/lazarus/comms) -"aXf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aXg" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aXh" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) @@ -11106,41 +4038,14 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"aXn" = ( -/obj/structure/fence, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_central_jungle) "aXo" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aXs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aXu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aXv" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aXw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aXx" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, @@ -11150,13 +4055,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"aXA" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "aXB" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -11187,16 +4085,6 @@ /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aXF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"aXG" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) "aXH" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 8 @@ -11205,38 +4093,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_tcomms_road) -"aXJ" = ( -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/obj/item/weapon/baseballbat/metal, -/obj/item/device/lightreplacer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aXK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aXL" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aXN" = ( -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aXP" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -11245,13 +4101,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"aXR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "aXS" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -11266,61 +4115,14 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aXW" = ( -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aXX" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"aXZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aYc" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aYd" = ( -/obj/structure/grille{ - density = 0; - icon_state = "brokengrille" - }, -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aYf" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"aYh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aYj" = ( /obj/effect/landmark/lv624/xeno_tunnel, /obj/structure/flora/jungle/vines/light_3, @@ -11377,78 +4179,21 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"aYz" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "aYC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"aYD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/glasses/sunglasses, -/obj/item/trash/cheesie, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aYE" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/west_barrens) "aYF" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"aYG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/cigbutt/cigarbutt, -/obj/structure/machinery/cell_charger, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aYH" = ( -/obj/structure/closet/lawcloset, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aYI" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/caves/south_west_caves) -"aYM" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aYN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/rdconsole, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aYO" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) "aYQ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, @@ -11499,57 +4244,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"aZc" = ( -/obj/structure/surface/table, -/obj/item/weapon/twohanded/fireaxe, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aZd" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZe" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/atmospipes, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/lighter, -/obj/item/device/analyzer, -/obj/item/device/multitool, -/obj/item/device/assembly/prox_sensor, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZi" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 26 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "aZn" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/candle, @@ -11560,117 +4254,6 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"aZo" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/megaphone, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"aZs" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aZw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/obj/item/storage/donut_box, -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"aZx" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZA" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/lazarus/hop) -"aZB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/machinery/photocopier{ - pixel_y = 12 - }, -/obj/item/tool/wrench, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"aZC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"aZD" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"aZF" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"aZI" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZJ" = ( -/obj/structure/bed, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"aZK" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"aZL" = ( -/obj/structure/surface/rack, -/obj/structure/prop/mech/drill, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"aZM" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aZO" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -11720,28 +4303,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"bbu" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) "bbx" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"bbA" = ( -/obj/structure/prop/mech/tesla_energy_relay{ - layer = 2.5 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"bbC" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) +"bbF" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "bbH" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -11795,39 +4365,31 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bcU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) "bdu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"bdL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"bdS" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "bei" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"beo" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "beB" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -11848,6 +4410,18 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"bgq" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "bgL" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -11856,9 +4430,33 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"bgV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "bhr" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_east_jungle) +"bii" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "bit" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -11869,6 +4467,22 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"bjx" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"bkc" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "bkG" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) @@ -11883,33 +4497,36 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"bkW" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "bkY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_west_jungle) -"blC" = ( -/obj/item/stack/sheet/wood, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"bnq" = ( -/obj/structure/surface/table, -/obj/item/handset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"bnz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Corporate Liason" - }, -/turf/open/floor{ - icon_state = "white" +"bll" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"blt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Corporation Dome"; + req_access_txt = "100" }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"bmx" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bmD" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Mining Storage"; + req_access_txt = "100" + }, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "bnE" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -11927,10 +4544,18 @@ "boe" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"bow" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "boy" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"bpC" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "bqf" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/smokebomb{ @@ -11947,11 +4572,49 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"bqo" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"bqJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bqK" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"brc" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/ground/river/central_river) "brh" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"brj" = ( +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) +"brS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + pixel_x = -4 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"bsC" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "bsR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) @@ -11988,35 +4651,39 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"btD" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"btE" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "btF" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"btJ" = ( +/obj/structure/closet/coffin, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "btS" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) "btX" = ( /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"btY" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"buo" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "buw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -12060,56 +4727,68 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"byc" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "byl" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/river/east_river) +"byE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "byK" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/turf/open/floor/plating, -/area/lv624/lazarus/landing_zones/lz2) -"byL" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirt, -/area/lv624/ground/river/central_river) -"byY" = ( -/turf/open/gm/dirt, -/area/lv624/ground/colony/north_tcomms_road) -"bzs" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4 - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"bzv" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"bzD" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) +"byL" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirt, +/area/lv624/ground/river/central_river) +"byY" = ( +/turf/open/gm/dirt, +/area/lv624/ground/colony/north_tcomms_road) +"bzi" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "bAB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_east_jungle) +"bAM" = ( +/obj/structure/window_frame/colony, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "bBk" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"bBp" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "bBu" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/jungle/west_jungle) @@ -12124,6 +4803,15 @@ "bCe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_east_jungle) +"bCj" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/tool/match{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/carpet/bcarpet08, +/area/lv624/ground/caves/north_central_caves) "bCH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -12134,6 +4822,28 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"bDk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/rdconsole, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"bDp" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"bDJ" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "bEj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -12167,6 +4877,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"bEX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "bFa" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -12177,13 +4891,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"bGV" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "bIO" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 @@ -12201,6 +4908,23 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"bKh" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"bKE" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/river/east_river) +"bKQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/research) "bLs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -12209,28 +4933,35 @@ "bLE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) +"bMi" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/sand_temple) "bMu" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) +"bMR" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/south_west_caves) "bNn" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) +"bOb" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "bOg" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"bOm" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +"bOw" = ( +/obj/structure/girder, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "bOy" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -12245,10 +4976,21 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"bPA" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "bPE" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"bPU" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/west_barrens) +"bQf" = ( +/turf/open/floor/plating/asteroidwarning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "bQz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -12267,122 +5009,173 @@ "bQP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_east_jungle) -"bRf" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "bRk" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) -"bRV" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"bRm" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/engineering) +"bRo" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"bRI" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"bSa" = ( +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) "bSm" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"bTw" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargospecial" - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) -"bUs" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet07" - }, -/area/lv624/ground/caves/north_central_caves) -"bUU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"bXd" = ( -/obj/item/device/flashlight/on, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"bST" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"bTc" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle) +"bTV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"bVF" = ( +/obj/item/stack/sheet/wood, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) +"bXo" = ( +/turf/open/floor/redcorner/east, +/area/lv624/lazarus/security) +"bYu" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"bYF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "bZb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"bZX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"cac" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, +"bZt" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/northeast, /area/lv624/lazarus/landing_zones/lz1) +"bZU" = ( +/obj/structure/ore_box, +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) "cag" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) +"cat" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -12 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "caX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"cbb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"cbe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"cbj" = ( +/obj/structure/inflatable/door, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "ccn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"cdj" = ( -/obj/structure/window_frame/colony, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" +"ccA" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/medbay) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"ccN" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"cdr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop/alien/hugger, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"cdA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "cdF" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-centralcaves" }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) -"cen" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" +"cdH" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"ceE" = ( +/turf/open/floor/white, +/area/lv624/lazarus/research) +"ceU" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) "cfD" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage/outdoors) +"cfJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "cfL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -12391,25 +5184,22 @@ "cfN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"cfT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"cgt" = ( +/obj/item/tool/weldingtool, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_central_jungle) +"cgx" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" + dir = 1 }, -/area/lv624/lazarus/corporate_dome) -"cgC" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 10; - icon_state = "warning" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "cgD" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -12418,16 +5208,6 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"chi" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) "cij" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -12457,6 +5237,32 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"cjp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/banana, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"cjK" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"cjM" = ( +/obj/item/stack/rods{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"clL" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "clO" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/grass_overlay/grass1{ @@ -12468,23 +5274,53 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"cmP" = ( -/obj/structure/barricade/metal/wired, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" +"cmo" = ( +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 }, -/area/lv624/lazarus/corporate_dome) -"cng" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"cmH" = ( +/obj/structure/closet, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"cnG" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"cnL" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"cnU" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 4; + dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"con" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "cop" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -12492,6 +5328,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"cpa" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"cpG" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "cpQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) @@ -12518,14 +5366,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"cqE" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "cqH" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, /turf/open/auto_turf/strata_grass/layer1, @@ -12548,46 +5388,138 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) +"csn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"cso" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) +"csr" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/corporate_dome) "csu" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) +"csK" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "csM" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"csO" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) +"csW" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/rack, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "cuu" = ( /obj/structure/surface/rack, /obj/item/ore/silver, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"cvk" = ( -/obj/structure/fence, -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/east, -/area/lv624/ground/jungle/west_central_jungle) +"cuY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) +"cvc" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"cvr" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "cwv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"cwz" = ( +/obj/item/tool/minihoe{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "cwV" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"cxc" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/west_barrens) "cxi" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"cxj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/lazarus/hop) +"cxp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cxs" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) +"cxN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"cxX" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "cys" = ( /obj/structure/foamed_metal, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) +"cyU" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "czu" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -12598,6 +5530,10 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"cAu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "cAZ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -12608,41 +5544,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"cBG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"cCe" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor{ - icon_state = "cult" - }, +"cBP" = ( +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) +"cBR" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/secure_storage) "cCr" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"cCP" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/south_west_caves) "cDr" = ( /obj/structure/girder, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) +"cDs" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) "cDQ" = ( /obj/item/ammo_magazine/sentry{ current_rounds = 0; @@ -12659,6 +5577,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"cDV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "cEh" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -12673,14 +5597,52 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"cEO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "cEQ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"cFc" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"cFm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"cFF" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"cFS" = ( +/obj/item/tool/soap, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "cGb" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"cGe" = ( +/obj/structure/inflatable, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"cGC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "cHW" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -12695,6 +5657,10 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"cIR" = ( +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "cIU" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -12704,20 +5670,59 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"cJf" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"cJj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "cJA" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cJJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cKc" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "cKj" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"cLD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +"cKl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"cKt" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"cLB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cLE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"cLL" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "cMj" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -12732,6 +5737,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"cMN" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 16 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "cNH" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, @@ -12740,13 +5751,12 @@ "cOs" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/quartstorage/outdoors) -"cOz" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +"cOt" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "cOF" = ( /obj/structure/closet/cabinet, /obj/structure/barricade/sandbags/wired{ @@ -12754,19 +5764,35 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"cPL" = ( -/obj/structure/surface/table, -/obj/item/book/manual/research_and_development, -/obj/item/cell/hyper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"cOT" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"cPt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = -2; + pixel_y = 6 }, -/area/lv624/lazarus/research) +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "cPV" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"cPZ" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, +/area/lv624/ground/jungle/west_jungle) +"cQv" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "cQB" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -12775,6 +5801,9 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"cQR" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/main_hall) "cQX" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -12784,6 +5813,9 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"cRh" = ( +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "cRm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -12792,10 +5824,23 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"cRU" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "cSs" = ( /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"cSI" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "cSL" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -12806,6 +5851,26 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"cTr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/box/matches, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"cTM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"cUi" = ( +/obj/item/stack/sheet/wood, +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "cUk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_east_jungle) @@ -12813,10 +5878,21 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"cVi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "cWm" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"cWp" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "cWr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -12835,59 +5911,76 @@ "cXk" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) -"cXU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 +"cXB" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, -/obj/item/stack/sheet/metal{ - amount = 30 +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"cXF" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "vault" + health = 80 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"cYi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pie, -/turf/open/floor{ - icon_state = "whitebluefull" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/lv624/lazarus/medbay) -"cZs" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 9; - icon_state = "warning" +/obj/item/stack/sheet/animalhide/xeno{ + name = "Lurker Hide" }, -/area/lv624/lazarus/landing_zones/lz2) -"cZN" = ( -/obj/item/storage/firstaid/adv/empty, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"cXK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"cXY" = ( +/obj/item/stack/rods, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"cYl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = 6 }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Corporate Office"; - pixel_y = 24 +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -6 }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"cYs" = ( +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) +"cZM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"daf" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "daz" = ( /obj/structure/prop/brazier/torch, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"daS" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "daY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -12896,48 +5989,78 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"dbA" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"dbT" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dbY" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"dcu" = ( +/obj/structure/lamarr{ + density = 0; + destroyed = 1; + icon_state = "labcageb0"; + occupied = 0 + }, +/obj/item/shard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"ddl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Bathroom"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"ddu" = ( +/obj/structure/barricade/wooden, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "ddS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"deU" = ( -/obj/item/circuitboard/airlock{ - pixel_x = 12 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) -"dff" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) +"def" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/lv624/lazarus/landing_zones/lz2) +"deC" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet02, +/area/lv624/ground/caves/north_central_caves) "dfJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/scientist, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"dgP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"dhm" = ( +/obj/item/circuitboard/airlock{ + pixel_x = 12 + }, +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) "dhp" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) +"dhr" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) "dhw" = ( /obj/effect/acid_hole{ dir = 4 @@ -12949,6 +6072,36 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"dih" = ( +/turf/open/floor/red/southwest, +/area/lv624/lazarus/security) +"dik" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel{ + pixel_y = 12 + }, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"diE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/adjustable/cable/white{ + pixel_y = 4 + }, +/obj/item/restraint/adjustable/cable/white, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) +"diU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "diW" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -12959,10 +6112,43 @@ /obj/item/tool/crowbar, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"dje" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"djE" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "djI" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dkn" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/jungle/west_jungle/ceiling) +"dko" = ( +/obj/item/bedsheet/medical, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"dkB" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) +"dkI" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "lz-containers_swapped" + }, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "dkN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, @@ -12976,12 +6162,13 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"dlq" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"dlF" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) +"dmb" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "dmf" = ( /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) @@ -13005,42 +6192,59 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"dpl" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/secure_storage) -"dql" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"dqo" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"dos" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/ground/barrens/south_eastern_barrens) -"dqz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"dpB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"dpE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv624/ground/colony/telecomm/cargo) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"dqq" = ( +/obj/item/tool/pickaxe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"dqs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "dqK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"dqV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"drO" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "dsi" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"dsk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"dtl" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "dtr" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -13048,61 +6252,64 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"dtG" = ( +/obj/item/stock_parts/matter_bin/super, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "dvf" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"dvi" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/river/central_river) +"dvA" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "yellow"; + phone_id = "Communications"; + pixel_y = 24 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dvF" = ( /obj/structure/flora/bush/ausbushes/pointybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"dvX" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ +"dvG" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"dws" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"dvK" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"dwl" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "dwt" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/lazarus/landing_zones/lz2) -"dwN" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"dxb" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "dxy" = ( /obj/structure/flora/bush/ausbushes/lavendergrass{ pixel_x = 12; @@ -13110,39 +6317,66 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"dxC" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) +"dzD" = ( +/obj/item/bananapeel, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "dzM" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"dzU" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"dzY" = ( +/obj/item/reagent_container/food/drinks/flask/barflask, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "dAu" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"dBS" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +"dAI" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) +"dAR" = ( +/obj/structure/coatrack, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"dBf" = ( +/obj/item/reagent_container/food/snacks/grown/banana, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"dCl" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"dCq" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "dCD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"dCL" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 2 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "dCZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -13154,6 +6388,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"dDW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "dEc" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_central_jungle) @@ -13164,6 +6403,9 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"dEC" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "dEI" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, @@ -13184,9 +6426,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"dFK" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "dGc" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"dGF" = ( +/obj/structure/bed, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "dGG" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) @@ -13195,6 +6456,17 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"dGZ" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "dHg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, @@ -13203,16 +6475,28 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"dId" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"dHJ" = ( +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"dIa" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) "dIj" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"dIk" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"dIq" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "dIu" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, @@ -13221,11 +6505,9 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"dIO" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/central_barrens) +"dJq" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "dJG" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -13239,6 +6521,16 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"dKK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"dLc" = ( +/obj/structure/girder, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) "dLm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -13250,12 +6542,30 @@ /obj/effect/acid_hole, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) +"dLo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "dLt" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) +"dLO" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "nexuscenter_barricaded" + }, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"dLV" = ( +/obj/structure/largecrate/random, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) "dLW" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -13265,6 +6575,34 @@ "dLY" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dMd" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"dMh" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dMy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "dMF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13282,6 +6620,13 @@ "dNj" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"dNt" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "dNx" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, @@ -13302,73 +6647,80 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"dOq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "dOA" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"dOC" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "dOQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dSx" = ( -/obj/structure/bookcase, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" +"dQe" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) +"dRn" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_x = 30 }, -/area/lv624/lazarus/corporate_dome) -"dTm" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"dTk" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"dUw" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) +"dVa" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "dVH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"dVO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"dVQ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"dVM" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"dWz" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "dWM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"dXa" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "dXq" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"dXH" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "dYx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -13383,13 +6735,12 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"dZH" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"dZt" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "dZY" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -13402,19 +6753,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"eaJ" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +"ebL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/lazarus/landing_zones/lz1) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ebS" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/south_nexus_road) +"ecl" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "ecn" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -13426,22 +6785,68 @@ "ecy" = ( /turf/closed/wall/sulaco, /area/lv624/lazarus/crashed_ship_containers) -"ecK" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"ecB" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"ecM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "ecO" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) +"ecP" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"eda" = ( +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) +"edd" = ( +/obj/structure/machinery/bot/mulebot{ + auto_pickup = 0; + auto_return = 0; + health = 1; + on = 0 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"edO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/obj/item/storage/donut_box, +/turf/open/floor/red/west, +/area/lv624/lazarus/security) "edS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"edU" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"eei" = ( +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"eep" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/jungle/west_jungle/ceiling) "eeW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -13470,33 +6875,40 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"ehy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics" - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"ehF" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"eib" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "eil" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"eiH" = ( -/obj/item/stack/sheet/wood{ - amount = 2 +"eip" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 5; - icon_state = "warning" +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "eiP" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) +"eiV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red, +/area/lv624/lazarus/security) "eji" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, @@ -13509,13 +6921,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"ejx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "ekB" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -13530,16 +6935,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"elm" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"ekN" = ( +/obj/structure/girder, +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "elp" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -13549,6 +6948,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"elD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/lighter, +/obj/item/device/analyzer, +/obj/item/device/multitool, +/obj/item/device/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"emi" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "enn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -13560,90 +6981,160 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"enA" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"enE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"eof" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "eoo" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"eoM" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) "eoW" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"epG" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ +"epo" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/west_caves) +"epL" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "eqs" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"eqt" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "eqF" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"eqP" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "eqS" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"eqX" = ( +/obj/item/device/assembly/timer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"era" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) +"erp" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "erx" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/jungle/west_jungle) +"erF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"erS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "esi" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/west_barrens) -"esp" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"etT" = ( +/turf/open/floor/white, +/area/lv624/lazarus/fitness) "etU" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"euW" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet{ - icon_state = "bcarpet03" +"eue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"euu" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "yellow"; + phone_id = "Engineering"; + pixel_y = 24 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"euT" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"evO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "evT" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"evW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"ewe" = ( +/obj/structure/fence, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"exc" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) +"exe" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "exf" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) -"eyb" = ( -/obj/structure/fence, -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/colony/west_tcomms_road) +"exh" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/east_river) "eyn" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -13652,20 +7143,21 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"ezC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 +"eAh" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/device/radio/off{ + frequency = 1469 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"eAo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "eAr" = ( /obj/structure/showcase{ color = "#95948B"; @@ -13690,20 +7182,22 @@ /obj/structure/surface/table, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"eAT" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"eBt" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_y = -30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "eBu" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"eBN" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "eCx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -13713,11 +7207,9 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/gm/dirt, /area/lv624/landing/console2) -"eCY" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/secure_storage) +"eDe" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/central_barrens) "eDy" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -13727,6 +7219,22 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"eDV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/soap/deluxe{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"eEx" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "eER" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) @@ -13740,25 +7248,9 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"eGx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "eGD" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"eHm" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "eHq" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -13770,25 +7262,54 @@ "eHQ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_west_jungle) +"eHT" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"eJN" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "eKs" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"eKt" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"eLh" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "eMe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"eMO" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/obj/structure/largecrate/supply/ammo/shotgun{ + pixel_y = 8 + }, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"eNk" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/central_barrens) "eNK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_east_jungle) -"eNQ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"eNW" = ( +/obj/item/ammo_casing, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/central_barrens) +"eOd" = ( +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "eOk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/east_jungle) @@ -13796,11 +7317,9 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"ePp" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"eOZ" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/south_west_caves) "ePu" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -13809,6 +7328,14 @@ "ePw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_east_jungle) +"ePM" = ( +/obj/item/storage/firstaid, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"ePO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/north_jungle) "ePV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -13817,6 +7344,12 @@ /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) +"eQj" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "eQL" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) @@ -13824,22 +7357,58 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"eSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "eTd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) +"eTi" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard{ + pixel_x = -18 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "eTI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "eTQ" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) -"eVH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor{ - icon_state = "cult" +"eWP" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"eWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/lv624/ground/caves/south_west_caves) +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"eWW" = ( +/obj/item/tool/shovel, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"eXl" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "eYb" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, @@ -13849,6 +7418,13 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"eYO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "eZg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -13860,20 +7436,21 @@ /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"eZD" = ( -/obj/structure/barricade/metal{ - health = 250 - }, -/turf/open/floor{ - icon_state = "white" +"eZQ" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) +"fae" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) -"fau" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_id = "Medbay" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "fbb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -13884,64 +7461,55 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"fcQ" = ( +"fcs" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; light_on = 1; light_range = 1; - light_system = 1 + light_system = 1; + pixel_x = 6; + pixel_y = -8 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +/area/lv624/ground/caves/south_east_caves) "fdl" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) -"fem" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"ffb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Hydroponics" - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"feE" = ( +/obj/structure/machinery/light, +/obj/structure/bed/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ffC" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"fgL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "fgS" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_eastern_barrens) +"fgT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "fhd" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"fhs" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"fho" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "fhJ" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -13990,16 +7558,33 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fkJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"fky" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"flG" = ( +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"flN" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/stack/sheet/metal{ + amount = 30 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"fmU" = ( +/obj/item/stack/medical/ointment, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "fmV" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -14007,9 +7592,23 @@ "fmW" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"fnU" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"fov" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "fpn" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/east_barrens) +"fpY" = ( +/obj/structure/machinery/vending, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fqh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) @@ -14019,59 +7618,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"fqM" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) -"fqP" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "yellow"; - phone_id = "Engineering"; - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"fra" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "frV" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"fsa" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) "fsc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"fsu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"fsn" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/west_caves) +"ftQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"ftS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fur" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) @@ -14079,60 +7653,88 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz2) +"fuJ" = ( +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "fuY" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"fvt" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ +"fva" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"fvk" = ( +/obj/structure/machinery/power/terminal{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) +"fvE" = ( +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"fvK" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) +"fvT" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"fwb" = ( +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"fwj" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"fyr" = ( +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"fyx" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv624/ground/caves/sand_temple) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz2) "fyA" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"fzg" = ( -/obj/item/storage/firstaid/toxin/empty, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"fzZ" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" +"fzp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"fzv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"fAv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"fAz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "fAD" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -14145,28 +7747,28 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"fBC" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/chips, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Director's Office" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"fDq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 10; - icon_state = "warning" +"fCE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"fCF" = ( +/obj/structure/surface/table, +/obj/effect/decal/remains/human, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"fCL" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"fDA" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "fDE" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) @@ -14174,11 +7776,6 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"fDT" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/caves/south_west_caves) "fEn" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -14187,53 +7784,52 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"fEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "fEU" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"fFA" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"fFM" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "fFN" = ( /obj/structure/window_frame/colony/reinforced, /obj/structure/foamed_metal, /turf/open/floor/plating, /area/lv624/lazarus/engineering) -"fFZ" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"fFS" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"fGn" = ( +/obj/effect/decal/grass_overlay/grass1, +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/east_caves) +"fGx" = ( +/obj/structure/prop/tower, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"fGJ" = ( +/obj/item/stack/cable_coil/random{ + pixel_x = 7; + pixel_y = 9 }, -/area/lv624/ground/colony/telecomm/cargo) -"fGn" = ( -/obj/effect/decal/grass_overlay/grass1, -/obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirt, -/area/lv624/ground/caves/east_caves) +/area/lv624/ground/jungle/east_jungle) "fGO" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fHi" = ( -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"fHe" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "fHw" = ( /obj/item/device/sentry_computer{ pixel_y = 5 @@ -14245,10 +7841,21 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"fHC" = ( +/obj/structure/largecrate, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "fIj" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/colony/west_nexus_road) +"fIm" = ( +/obj/structure/largecrate/random, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 5 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "fIt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -14272,35 +7879,90 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"fKG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_central_jungle) +"fLg" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/south_east_jungle) "fLh" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fMl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Corporation Office"; - req_access_txt = "100" +"fLj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"fLT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/area/lv624/lazarus/corporate_dome) -"fNA" = ( -/obj/structure/barricade/wooden, -/turf/open/shuttle{ - icon_state = "floor4" +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"fNW" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/stack/flag/red, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"fOF" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "fPi" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) +"fPk" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) "fPH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) +"fPW" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"fQf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) "fQL" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) +"fQO" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"fQQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"fRa" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) +"fRr" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "fRD" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -14309,6 +7971,10 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"fSQ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "fSX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) @@ -14316,6 +7982,15 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) +"fTg" = ( +/obj/item/ammo_casing, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating, +/area/lv624/ground/barrens/central_barrens) +"fTB" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "fTE" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -14336,6 +8011,25 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"fUC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"fWz" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) +"fWL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Female Dormitories"; + req_access_txt = "100" + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "fXr" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -14356,24 +8050,32 @@ "fZO" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) -"gaw" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 +"gad" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"gav" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"gaB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"gbc" = ( +/obj/structure/surface/rack, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "gbl" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"gby" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "gbz" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -14386,30 +8088,25 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) -"gcB" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"gcI" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" +"gcw" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/lv624/lazarus/crashed_ship_containers) -"gcZ" = ( -/obj/structure/barricade/metal/wired{ - health = 300 +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"gdh" = ( +/obj/structure/closet/coffin{ + density = 0; + icon_state = "coffin_open"; + opened = 1 }, -/turf/open/floor{ - icon_state = "white" +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "gdr" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -14421,32 +8118,59 @@ "gdx" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/west_barrens) -"gef" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "ggl" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"ghe" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"ghu" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"ghE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 15 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"gig" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "git" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"gju" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"gjA" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/medbay) "gkh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"gkj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) "gkC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -14456,51 +8180,33 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) +"glN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"glO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "glS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"gmi" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, +"gnd" = ( /obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"gnt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"gnx" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"gnR" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/snacks/syndicake{ - layer = 2.6 - }, -/turf/open/floor{ - icon_state = "grimy" +/obj/item/storage/firstaid, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 }, -/area/lv624/lazarus/captain) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "god" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -14509,32 +8215,71 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"gox" = ( -/obj/item/clothing/suit/redtag, -/obj/structure/closet/athletic_mixed, -/turf/open/floor{ +"gpu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; dir = 4; - icon_state = "whitepurplecorner" + icon_state = "p_stair_full" }, -/area/lv624/lazarus/fitness) +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "gpC" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) -"gqG" = ( -/obj/item/device/assembly/infra, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/powercell, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" +"gqh" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"gqp" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) +"grj" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 }, -/area/lv624/lazarus/engineering) +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "grl" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"grt" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "grW" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -14546,26 +8291,61 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"gss" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "gsA" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"guQ" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "cargospecial2" +"gsG" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 + }, +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/quartstorage) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"gti" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"gtv" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"gue" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"gut" = ( +/obj/structure/fence, +/turf/open/floor/warning/north, +/area/lv624/ground/barrens/containers) +"guD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "guW" = ( /obj/effect/landmark/nightmare{ insert_tag = "storage-crashed-ship" @@ -14591,15 +8371,44 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"gvw" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"gvE" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) "gwP" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"gwY" = ( +/obj/item/weapon/twohanded/fireaxe, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "gxd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"gyu" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "gyP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) +"gyU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "gyY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/river/east_river) @@ -14615,17 +8424,20 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"gzo" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/east_barrens) -"gzD" = ( +"gzs" = ( +/obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"gzB" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 4 }, -/area/lv624/lazarus/quartstorage) +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 8 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "gzH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -14638,13 +8450,22 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gAS" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" +"gAY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"gBw" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"gBC" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) "gBG" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -14653,6 +8474,17 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) +"gBK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "gDu" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/colony/west_tcomms_road) @@ -14661,33 +8493,32 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"gDF" = ( +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/medbay) "gEn" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"gEX" = ( -/obj/structure/surface/table, -/obj/item/alien_embryo{ - pixel_y = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"gFg" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "casing_9_1" - }, -/turf/open/floor{ - icon_state = "white" +"gEL" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "gFm" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"gFn" = ( +/obj/structure/computerframe{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "gGd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -14696,38 +8527,83 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor, /area/lv624/ground/barrens/containers) -"gKg" = ( -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +"gHR" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" }, -/area/lv624/lazarus/engineering) +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"gIK" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"gKl" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "gKw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_central_jungle) +"gLi" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "gMe" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-rightsidepass" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"gMz" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"gNi" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "gNo" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"gPd" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "gPu" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"gPC" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "gPN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/barrens/south_eastern_barrens) +"gPZ" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "gQr" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) @@ -14739,9 +8615,37 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) +"gRu" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/west_caves) "gRx" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) +"gRM" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/cigbutt/cigarbutt, +/obj/structure/machinery/cell_charger, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"gRV" = ( +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/obj/item/weapon/baseballbat/metal, +/obj/item/device/lightreplacer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"gRY" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"gSC" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "gTj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -14753,15 +8657,28 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"gTD" = ( +/obj/structure/inflatable, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "gTM" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"gTZ" = ( +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle) "gUq" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) +"gUZ" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "gVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -14774,21 +8691,10 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"gWf" = ( -/obj/structure/surface/rack, -/obj/item/stack/sandbags/large_stack{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/stack/sandbags/large_stack{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"gWn" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "gWE" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -14799,19 +8705,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"gXu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"gXy" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "gYs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -14820,6 +8713,16 @@ /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) +"gZt" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz2) +"gZI" = ( +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"hac" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "han" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -14830,19 +8733,34 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"hay" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "haN" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"haV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hba" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"hbF" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) +"hbu" = ( +/obj/item/stack/sheet/metal, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) "hbK" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -14854,36 +8772,42 @@ /obj/item/stack/yautja_rope, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"hcq" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "hcN" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"hdh" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) -"hdA" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" +"hdj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz2) -"hez" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"hdm" = ( +/obj/structure/fence, +/turf/open/floor/warning/northwest, +/area/lv624/ground/barrens/containers) +"hdK" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; light_on = 1; light_range = 1; - light_system = 1 + light_system = 1; + pixel_x = 6; + pixel_y = -8 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/area/lv624/ground/barrens/north_east_barrens) "heC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -14906,10 +8830,36 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"hgG" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/mime, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "hgO" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"hgU" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "hgY" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-leftsidepass" @@ -14921,12 +8871,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"hhv" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"hht" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "hjl" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, @@ -14937,6 +8885,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"hjY" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "hke" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -14952,6 +8909,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"hkY" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"hlk" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "hmq" = ( /obj/structure/flora/bush/ausbushes/ausbush, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -14959,6 +8928,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"hmw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "hmJ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -14969,27 +8944,25 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"hmX" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "hnX" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_central_jungle) -"hpG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/caves/north_central_caves) -"hpK" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"hpQ" = ( +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) +"hpS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "hqQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -14999,37 +8972,75 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"hrD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - locked = 1; - name = "\improper Corporation Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" +"hro" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "hrG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) +"hrN" = ( +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/redcorner/north, +/area/lv624/lazarus/security) +"hrS" = ( +/obj/item/clothing/under/colonist, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "hsc" = ( /turf/closed/wall/r_wall, /area/lv624/ground/river/central_river) -"htV" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +"hsf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"hte" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "huH" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"hva" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"hwy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hwR" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/central_river) @@ -15042,6 +9053,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"hxu" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "hxL" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -15064,46 +9079,64 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"hyU" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "warning" +"hzs" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 40 }, -/area/lv624/lazarus/landing_zones/lz1) +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"hzu" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "hzR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"hBt" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "hBL" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"hBZ" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"hCc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + locked = 1; + name = "\improper Corporation Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"hCD" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/chefhat, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"hDb" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "hDX" = ( /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"hEc" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/lv624/lazarus/engineering) "hEe" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, @@ -15120,9 +9153,24 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/north_tcomms_road) +"hGd" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) +"hGi" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "hGN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_central_jungle) +"hGQ" = ( +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/cargo) "hHc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/foamed_metal, @@ -15132,6 +9180,11 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) +"hHM" = ( +/obj/structure/barricade/wooden, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "hHR" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/east_barrens) @@ -15148,13 +9201,14 @@ /obj/structure/cargo_container/lockmart/left, /turf/open/floor, /area/lv624/ground/barrens/containers) -"hJn" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) "hJW" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) +"hKd" = ( +/obj/structure/grille, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "hKk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -15165,9 +9219,57 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"hLk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"hLp" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "hLu" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) +"hLz" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"hLI" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "hMr" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -15186,10 +9288,25 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"hMJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + locked = 1; + name = "\improper Nexus Dome Marshal's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/captain) "hNq" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"hNr" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "hNR" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, @@ -15199,27 +9316,46 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"hOH" = ( +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) +"hPi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) "hPV" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"hQW" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -12 +"hQk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"hRy" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/ground/caves/south_west_caves) +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"hQw" = ( +/obj/item/trash/cheesie, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"hQU" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"hRx" = ( +/turf/open/floor/warnwhite/northwest, +/area/lv624/lazarus/fitness) "hRB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -15231,16 +9367,18 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"hRJ" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "hRS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"hSa" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) "hSn" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) @@ -15252,10 +9390,21 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) +"hTs" = ( +/obj/structure/bed, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "hTR" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"hTT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hUs" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) @@ -15263,6 +9412,10 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"hVp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "hWj" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) @@ -15270,14 +9423,22 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"hZg" = ( -/obj/structure/bed/chair/office/dark{ +"hXF" = ( +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"hXG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"hXJ" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "hZn" = ( /obj/item/stack/sheet/metal{ pixel_x = 6; @@ -15298,26 +9459,6 @@ }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"iat" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Warrior hide" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "ibS" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -15327,27 +9468,21 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"idz" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +"idk" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) +"idI" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) "ieH" = ( /obj/item/stack/sheet/wood{ amount = 2 @@ -15355,16 +9490,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"ieN" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) "ifk" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -15373,6 +9498,13 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"ifC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/flashlight{ + pixel_y = 5 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ifF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_east_jungle) @@ -15383,11 +9515,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"igj" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) "igN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"igO" = ( +/obj/item/trash/cheesie, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "ihS" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/lemon_lime{ @@ -15399,11 +9539,49 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"iif" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"iil" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "iiK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/queen_spawn, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"ije" = ( +/obj/structure/closet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/shoes/centcom, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"ijF" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"ikg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/corporate_dome) "ikA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, /turf/open/auto_turf/strata_grass/layer1, @@ -15415,6 +9593,15 @@ /obj/structure/flora/jungle/planttop1, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"ilv" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"ilw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "ilF" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -15422,25 +9609,48 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"ilO" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet09" - }, -/area/lv624/ground/caves/north_central_caves) +"ilV" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) +"inn" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"inJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"inN" = ( +/obj/structure/prop/mech/parts/gygax_torso, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"ioz" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) "ioC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) -"iqN" = ( -/obj/structure/closet, -/turf/open/floor{ - icon_state = "bluecorner" +"ipq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) +"iqU" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_central_jungle) +"irx" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"isv" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "isF" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -15459,12 +9669,22 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"itE" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" +"itv" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/item/stack/medical/advanced/ointment, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"itN" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"iud" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/east_barrens) "iuf" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -15472,11 +9692,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"iuO" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "ivl" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -15489,20 +9704,50 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"iwl" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +"ixn" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 +/obj/item/device/flashlight, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/under/colonist, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"ixw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/lv624/ground/caves/sand_temple) +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"ixy" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargospecial1" + }, +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) +"ixZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "iye" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -15515,16 +9760,22 @@ /obj/effect/landmark/corpsespawner/doctor, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"iyY" = ( +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) "izh" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"izv" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"izz" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "izX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -15551,48 +9802,127 @@ "iBy" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) -"iBD" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" +"iCL" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/medbay) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "iCN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_nexus_road) +"iCU" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/newscaster{ + pixel_x = -30 + }, +/obj/structure/machinery/photocopier{ + pixel_y = 12 + }, +/obj/item/tool/wrench, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"iCW" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"iCY" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"iDa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"iDD" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) "iDX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"iFp" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/barricade/wooden{ - dir = 4 +"iEb" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"iEs" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"iFn" = ( +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" }, -/turf/open/floor{ +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 8; - icon_state = "warning" + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) +"iFF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"iGf" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"iGn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) +"iGx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"iGU" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/east_barrens) +"iHN" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/landing_zones/lz1) -"iGf" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) -"iGn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) -"iGx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "iHQ" = ( /obj/structure/xenoautopsy/tank/broken, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"iHR" = ( +/obj/structure/machinery/chem_master/condimaster, +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"iIf" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "iIB" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_central_caves) @@ -15613,35 +9943,21 @@ "iJJ" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"iKp" = ( -/obj/structure/surface/rack, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"iKz" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"iJP" = ( +/obj/structure/bed, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"iJW" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) +"iLc" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"iKD" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "iLL" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, @@ -15656,13 +9972,33 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"iLU" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" +"iMa" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) +"iMd" = ( +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"iMD" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/east_barrens/ceiling) +"iNv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "iNB" = ( /obj/structure/ore_box, /turf/open/gm/dirt, @@ -15671,6 +10007,15 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"iNP" = ( +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) +"iOk" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) +"iOy" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) "iOz" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -15683,51 +10028,65 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"iOY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "iPB" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"iPR" = ( -/obj/item/stack/medical/ointment, +"iPC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /obj/structure/machinery/light{ - dir = 1 + dir = 4 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"iPF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, -/turf/open/floor{ +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"iQP" = ( +/obj/structure/barricade/wooden{ dir = 1; - icon_state = "whiteblue" + pixel_y = 7 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"iQX" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "iRb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"iSa" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "iSg" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"iSQ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"iTv" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"iTz" = ( +/obj/item/tool/shovel, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "iTQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -15743,18 +10102,29 @@ "iUF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_central_jungle) -"iVg" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"iUJ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "iWC" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"iWZ" = ( +/obj/structure/machinery/still, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "iXj" = ( /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) +"iXt" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "iXz" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/west_barrens) @@ -15766,26 +10136,27 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"iYo" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/belt/medical/full, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"iYd" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/engineering) +"iYD" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) "iYJ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"iYM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "iZG" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -15795,15 +10166,24 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"jaa" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/central_barrens) +"jac" = ( +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "jas" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) +"jat" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/carpet/bcarpet01, +/area/lv624/ground/caves/north_central_caves) "jbd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -15814,12 +10194,43 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"jbN" = ( +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) +"jbR" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"jcb" = ( +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"jck" = ( +/obj/effect/landmark/nightmare{ + insert_tag = "cargospecial2" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "jcn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"jcF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"jcS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "jdi" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, @@ -15829,6 +10240,13 @@ "jeL" = ( /turf/closed/wall/r_wall, /area/lv624/ground/caves/north_central_caves) +"jfy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"jfI" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "jga" = ( /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) @@ -15845,20 +10263,30 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"jgz" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) "jgJ" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) -"jhe" = ( -/obj/item/storage/toolbox/syndicate, -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" +"jgT" = ( +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) +"jgW" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/lv624/lazarus/armory) +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "jhj" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -15872,19 +10300,29 @@ }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) +"jhY" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/central_barrens) "jic" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"jih" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "jik" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"jiR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"jkr" = ( +/obj/structure/target, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) +"jkw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/jungle/west_jungle) "jlh" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -15895,6 +10333,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"jmc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"jmI" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/corporate_dome) "jnG" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -15908,16 +10356,16 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"joz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/turf/open/floor{ - icon_state = "whitebluecorner" +"jpd" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) +"jpQ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/central_barrens) "jpX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -15925,6 +10373,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"jqh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "jqr" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -15933,12 +10385,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jrC" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" +"jrO" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"jrT" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "jsd" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -15947,35 +10403,51 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"jtM" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"jum" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirt{ - icon_state = "desert1" +"jtu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/megaphone, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"jtx" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/ground/river/east_river) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"juO" = ( +/obj/structure/bed/stool, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"juW" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/west_tcomms_road) "jvl" = ( /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) +"jvI" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "jvQ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jwW" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +"jwt" = ( +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 }, -/area/lv624/lazarus/engineering) +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) "jxw" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -15993,64 +10465,69 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"jzh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"jzm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright{ - dir = 2; - layer = 2.9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"jyo" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) +"jzE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"jzM" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "jzZ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"jAb" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"jAc" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"jAm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "jAo" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"jAK" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "jBl" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"jBR" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"jCn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) "jCO" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -16078,6 +10555,10 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"jGp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jGs" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/dirt, @@ -16097,6 +10578,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"jHD" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "jHN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) @@ -16111,10 +10595,24 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"jIl" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_east_caves) "jJg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"jJi" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "jKc" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -16126,6 +10624,13 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) +"jKJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "jLc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -16133,12 +10638,29 @@ "jLv" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/east_barrens) +"jLA" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "jLD" = ( /obj/effect/landmark/nightmare{ insert_tag = "maintemple" }, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"jLO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "jLR" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, @@ -16149,45 +10671,57 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"jMk" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "jMD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"jMH" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "jMS" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"jNa" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"jNd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"jNk" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/east_river) +"jNl" = ( +/obj/structure/machinery/requests_console{ + pixel_x = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"jOl" = ( +/obj/item/trash/candy, +/obj/structure/machinery/power/apc/power/north, +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"jOv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "jQj" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, @@ -16196,51 +10730,36 @@ "jQJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_central_jungle) -"jQV" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) +"jRi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "jRm" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"jRC" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "casing_1_1" - }, -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"jRG" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "jRJ" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"jRL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) "jRM" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"jRZ" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "jSp" = ( /obj/structure/showcase{ color = "#95948B"; @@ -16263,37 +10782,82 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"jSY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "jTm" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"jTC" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"jTI" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) "jTP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"jUr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"jUs" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz2) +"jUH" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"jVO" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jWM" = ( /obj/structure/girder, /turf/closed/shuttle{ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"jWN" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"jWP" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) +"jXs" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/tool/mop, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jXT" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_east_jungle) -"jYM" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +"jYs" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/carpet/bcarpet09, +/area/lv624/ground/caves/north_central_caves) +"jYE" = ( +/obj/structure/fence, +/turf/open/floor/warning/west, +/area/lv624/ground/barrens/containers) "jZL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -16312,24 +10876,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"kbn" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/caves/north_central_caves) -"kbr" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"kbD" = ( +/turf/open/floor/warnwhite/west, +/area/lv624/lazarus/fitness) +"kcf" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"kcC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "kcP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/rock/brown, @@ -16338,12 +10899,15 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"kdR" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" +"keK" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 }, -/area/lv624/lazarus/corporate_dome) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "keS" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) @@ -16355,10 +10919,31 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"khB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"kik" = ( +/obj/structure/surface/table, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "kip" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"kjg" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/tomato, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "kjp" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -16370,6 +10955,21 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) +"kkP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"kkV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "klD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -16386,9 +10986,21 @@ /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"kmZ" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/landing_zones/lz1) "knd" = ( /turf/open/gm/coast/west, /area/lv624/ground/jungle/west_jungle) +"kng" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "knp" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -16401,18 +11013,20 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"koW" = ( -/obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) +"kpf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "kpx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"kpD" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "kqx" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_3, @@ -16422,11 +11036,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"krs" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"krr" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/medbay) +"krN" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "ksc" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ icon_state = "fernybush_2"; @@ -16438,19 +11057,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"ksQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "ktf" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -16466,16 +11072,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"kuP" = ( -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"kuh" = ( +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) "kuZ" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -16483,6 +11082,13 @@ "kvo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_central_jungle) +"kvA" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kvE" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, @@ -16492,19 +11098,22 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"kxo" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) "kxv" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"kxE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/main_hall) "kxI" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"kxM" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "kyc" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) @@ -16550,33 +11159,49 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"kAj" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Garage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) "kAl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_west_jungle) -"kBe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) +"kBt" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_9_1" }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) +"kBv" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"kBN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "kCD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"kCH" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + layer = 3.1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"kDi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"kDW" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "kFx" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -16591,11 +11216,33 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"kHB" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +"kGB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/lv624/ground/barrens/central_barrens) +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"kGZ" = ( +/obj/item/bedsheet/rd, +/obj/item/weapon/pole/fancy_cane, +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"kHo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/tool/crowbar, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kHU" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) @@ -16603,6 +11250,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"kJf" = ( +/obj/item/tool/crowbar, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "kJm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -16610,16 +11261,14 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"kJt" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "kJu" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"kJU" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "kKa" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -16627,6 +11276,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"kKu" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset{ + frequency = 1469; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/headset{ + frequency = 1469 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"kKv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 26 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"kKD" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/canteen) "kLl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -16638,6 +11312,13 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"kMg" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"kMB" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kML" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -16645,31 +11326,39 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"kNb" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "kNm" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"kPL" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/ground/barrens/east_barrens) +"kOQ" = ( +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"kOT" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"kOX" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) "kPU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"kPY" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) +"kQB" = ( +/obj/structure/bookcase, +/obj/item/bananapeel, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "kQY" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) @@ -16677,100 +11366,117 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"kRr" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/shotgun/full, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -6 - }, -/turf/open/shuttle{ - icon_state = "floor4" +"kRh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/crashed_ship_containers) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "kRR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"kSs" = ( -/obj/structure/inflatable, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "kSH" = ( /obj/structure/bed/alien{ color = "#aba9a9" }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"kSK" = ( -/obj/structure/surface/table, -/obj/structure/prop/mech/drill, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "kSR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) +"kTX" = ( +/obj/item/clothing/head/helmet/augment{ + desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; + name = "alien mask"; + unacidable = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"kUp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "kUr" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_tcomms_road) -"kVj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"kUS" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/west_caves) +"kVy" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/ground/caves/sand_temple) +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "kVG" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"kVN" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "kVP" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"kWH" = ( -/turf/open/floor{ - icon_state = "dark" +"kWg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kWJ" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"kWL" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_1_1" + }, +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "kWV" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kWX" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) "kXE" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_central_jungle) +"kYr" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kYx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -16796,21 +11502,62 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"lav" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" +"kZE" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) +"kZI" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/ground/caves/west_caves) -"laM" = ( -/obj/structure/computerframe{ +/obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/turf/open/floor/plating, -/area/lv624/lazarus/secure_storage) +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"kZT" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet03, +/area/lv624/ground/caves/north_central_caves) +"laE" = ( +/obj/item/clothing/under/shorts/black{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"laJ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "laY" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) +"lba" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/under/liaison_suit/blue, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "lbd" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/west_barrens) @@ -16827,10 +11574,18 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) +"ldb" = ( +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "ldi" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"ldz" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ldB" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -16844,10 +11599,25 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/south_nexus_road) +"lfY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "lgu" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"lhk" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lhE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -16873,6 +11643,14 @@ /obj/effect/landmark/crap_item, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) +"lkh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lkj" = ( /obj/structure/inflatable/popped/door, /turf/open/gm/dirt, @@ -16882,17 +11660,31 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"lkF" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ +"llc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "warning" + name = "\improper Corporation Office"; + req_access_txt = "100" }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"lmj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"lne" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/south_west_caves) +"lng" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 4 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "lnr" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, @@ -16922,11 +11714,11 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"lpV" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage) +"lpA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "lqI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -16935,6 +11727,21 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"lrx" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"lrA" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "lse" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16951,6 +11758,14 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"lsB" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lsK" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/west_barrens) @@ -16958,15 +11773,45 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"lud" = ( -/obj/structure/fence, -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/colony/north_tcomms_road) +"lus" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"luR" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "lxr" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"lxG" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 14 + }, +/obj/item/clothing/head/soft/blue{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"lxQ" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "lxX" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -16998,11 +11843,28 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"lzE" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"lzh" = ( +/turf/open/floor/red/west, +/area/lv624/lazarus/security) +"lzt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/ground/barrens/west_barrens) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"lzO" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"lAQ" = ( +/obj/structure/surface/table, +/obj/item/device/mmi/radio_enabled, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lAX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -17013,15 +11875,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"lBq" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"lBn" = ( +/obj/structure/surface/rack, +/obj/item/weapon/baton/cattleprod{ + pixel_x = -2; + pixel_y = 1 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/obj/item/weapon/baton/cattleprod{ + pixel_x = 4; + pixel_y = -2 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "lBr" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -17038,13 +11903,9 @@ /obj/effect/decal/cleanable/blood/gibs/robot/down, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"lDh" = ( -/obj/item/clothing/suit/armor/yautja_flavor, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) +"lDi" = ( +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) "lEY" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -17056,52 +11917,47 @@ /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"lGo" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"lHc" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"lHv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) +"lFK" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"lHG" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirt/desert1, +/area/lv624/ground/river/east_river) "lHL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"lHN" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/engineering) +"lHP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lIj" = ( +/obj/structure/bookcase, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/security_space_law, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "lIm" = ( /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) +"lIo" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/parts/gygax_armor{ + layer = 1 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "lIL" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -17112,26 +11968,6 @@ "lIU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_central_jungle) -"lJm" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "lJo" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -17140,24 +11976,10 @@ /mob/living/simple_animal/bat, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) -"lKe" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"lKl" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +"lKr" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) "lKF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) @@ -17165,6 +11987,12 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"lLt" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lLK" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -17179,43 +12007,62 @@ /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) -"lNe" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_east_caves) +"lMH" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"lNn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) -"lNG" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"lNL" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz1) +"lOe" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"lOy" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"lOM" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) -"lPJ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" +/obj/effect/landmark/survivor_spawner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"lPG" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"lQe" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/glasses/sunglasses, +/obj/item/trash/cheesie, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "lQC" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"lRd" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "lRy" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/blood/drip, @@ -17225,17 +12072,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"lSt" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/shoes/dress, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "lSA" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -17247,29 +12083,38 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"lSU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lTv" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"lTP" = ( +/obj/structure/largecrate, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "lTZ" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"lUb" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "lUc" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"lUe" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/main_hall) "lUy" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/rock/brown, @@ -17283,6 +12128,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"lVO" = ( +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "lWh" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -17305,6 +12154,10 @@ "lWO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) +"lXT" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/chapel) "lYt" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -17315,6 +12168,9 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/north_tcomms_road) +"lYG" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "lYI" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -17324,13 +12180,59 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) -"lZl" = ( +"lYO" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"lYT" = ( /obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lYV" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_x = -28 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"lZE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"lZG" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/clothing/under/colonist, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"mbd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "mbp" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -17348,22 +12250,20 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"mca" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"mdG" = ( +"mda" = ( +/obj/item/device/flashlight/on, /obj/effect/decal/cleanable/blood/drip, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) +"mdz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + locked = 1; + name = "\improper Storage Room" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "mdQ" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) @@ -17371,16 +12271,17 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"mfn" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"mfl" = ( +/turf/open/floor/asteroidwarning/west, +/area/lv624/ground/colony/telecomm/sw_lz2) +"mfp" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -17401,77 +12302,90 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"mgs" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "garage_lv"; - name = "\improper Garage" +"mgF" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mgO" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"miu" = ( +/obj/structure/surface/table, +/obj/item/trash/candy, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"miV" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/corporate_dome) -"mhZ" = ( -/turf/open/shuttle{ - icon_state = "floor6" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"miF" = ( -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"mjm" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/river/east_river) -"mjY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +"mjd" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "mko" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_nexus_road) -"mkr" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) "mku" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"mkU" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor/plating, -/area/lv624/lazarus/engineering) +"mkL" = ( +/obj/structure/machinery/constructable_frame, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) "mkW" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"mls" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -20; + pixel_y = 8 + }, +/obj/item/tool/hatchet{ + pixel_x = -14; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mmu" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"mnh" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) +"mnf" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) +"mnj" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "mnr" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_jungle) @@ -17492,22 +12406,26 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"mph" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor{ - icon_state = "whitebluefull" +"mpq" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 }, -/area/lv624/lazarus/medbay) -"mqw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"mpC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"mqp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "mqJ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, @@ -17517,6 +12435,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"mru" = ( +/obj/item/clothing/glasses/regular, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"mrL" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "mrQ" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -17526,22 +12452,20 @@ "msd" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) -"msU" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"msy" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/lv624/lazarus/secure_storage) +/obj/effect/landmark/monkey_spawn, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "msV" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"mtP" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "mun" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -17557,27 +12481,20 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"mvc" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"muU" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 2 }, -/area/lv624/ground/colony/telecomm/cargo) +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "mvr" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"mwB" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "mxd" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -17587,33 +12504,44 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"myF" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "myI" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"mBL" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) -"mBN" = ( -/obj/structure/window/reinforced{ - dir = 1 +"mzj" = ( +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"mzL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/window/reinforced{ +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, -/obj/structure/showcase, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"mAl" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"mDr" = ( +/turf/open/floor/white, +/area/lv624/lazarus/chapel) +"mDt" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "mEo" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -17634,10 +12562,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"mGg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "mGG" = ( /obj/structure/window_frame/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"mGW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "mHk" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -17652,12 +12593,6 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"mJB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) "mJF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -17665,62 +12600,46 @@ "mKf" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_nexus_road) +"mKh" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) +"mKu" = ( +/obj/structure/surface/table, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"mKL" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "mKM" = ( /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ name = "\improper Strange Temple" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mLq" = ( -/obj/structure/filingcabinet/security{ - desc = "A large cabinet with hard copy security records."; - name = "Security Records" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) "mLv" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"mMi" = ( +/obj/structure/surface/table, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "mMq" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"mMv" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"mMA" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "mNl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -17739,6 +12658,11 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_central_jungle) +"mOg" = ( +/obj/effect/decal/remains/human, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/research) "mOA" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, @@ -17747,6 +12671,12 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"mPj" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "mPt" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -17754,36 +12684,32 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"mRh" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"mRm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"mSo" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +"mQK" = ( +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) +"mQP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/ground/barrens/central_barrens) +/obj/structure/surface/table, +/obj/item/trash/cheesie, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mSN" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"mUH" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"mTe" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"mTx" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/pistol/holdout, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "mUQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -17816,13 +12742,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"mVn" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "mVr" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -17837,10 +12756,19 @@ "mWe" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_west_jungle) +"mWo" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "mWA" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"mXg" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "mXR" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) @@ -17850,6 +12778,29 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"mZx" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"nai" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nat" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "naR" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, @@ -17861,16 +12812,9 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) -"ncV" = ( -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_y = -28 - }, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) +"ncy" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ndk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -17879,6 +12823,13 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) +"ndZ" = ( +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = -8 + }, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "ner" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -17887,6 +12838,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"nfm" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_6_1" + }, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "nfD" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -17901,6 +12859,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"ngl" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"ngH" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "nha" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -17909,6 +12886,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"nhb" = ( +/obj/structure/closet, +/obj/item/weapon/baseballbat, +/obj/item/clothing/head/beret/jan, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nhi" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -17917,39 +12904,14 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"niV" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) "njl" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"njs" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_id = "Medbay" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "njC" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"njO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) "nkg" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -17964,34 +12926,117 @@ /obj/effect/landmark/nightmare{ insert_tag = "lv-bridge-east" }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) -"nmO" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/grass/grass1, -/area/lv624/lazarus/landing_zones/lz2) -"nnq" = ( -/obj/structure/prop/brazier, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/barrens/south_eastern_barrens) -"nnL" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/lv624/ground/barrens/east_barrens) +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) +"nlx" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"nlJ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"nmA" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"nmL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"nmO" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz2) +"nnq" = ( +/obj/structure/prop/brazier, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/barrens/south_eastern_barrens) +"nnL" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/lv624/ground/barrens/east_barrens) +"noq" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) +"nov" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"noI" = ( +/obj/structure/surface/table, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"noK" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -1; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) +"noQ" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"noU" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "npf" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) +"npj" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) +"npk" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) "npQ" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"nqt" = ( -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"npS" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 }, -/area/lv624/lazarus/hydroponics) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"nqn" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "nqv" = ( /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) @@ -17999,26 +13044,24 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"nrb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/corporate_dome) -"nrm" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/west_barrens) -"nrR" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - light_on = 1; - light_range = 1; - light_system = 1 +"nqM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"nqN" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"nrv" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nsk" = ( /turf/open/gm/dirt, /area/lv624/ground/river/west_river) @@ -18028,20 +13071,12 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"nsF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"ntp" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "ntr" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/north_east_barrens) @@ -18049,6 +13084,11 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_tcomms_road) +"ntM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ntQ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -18060,6 +13100,11 @@ "nuW" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) +"nva" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "nvS" = ( /obj/structure/showcase{ color = "#95948B"; @@ -18089,71 +13134,94 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"nwE" = ( +/obj/item/device/analyzer, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "nwI" = ( /obj/item/bananapeel, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"nwR" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +"nxk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Water Filtration Plant"; + req_access_txt = "100" }, -/area/lv624/lazarus/engineering) -"nxe" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/structure/machinery/microwave{ - pixel_x = 2; - pixel_y = 3 +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) +"nxt" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"nxv" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/south_west_caves) +"nxH" = ( +/obj/structure/flora/jungle/vines/light_2, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Atmospherics Condenser" }, -/area/lv624/ground/caves/north_central_caves) -"nxu" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) +"nyi" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) +"nyn" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "nys" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"nyN" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/east_barrens/ceiling) "nzw" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"nAa" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "nAD" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"nAR" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"nBh" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"nBK" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/caves/sand_temple) "nBM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"nCm" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"nDT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) "nEd" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -18184,22 +13252,33 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nEE" = ( +"nEP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, +/obj/item/reagent_container/food/snacks/cheeseburger, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"nHj" = ( -/obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 9; - icon_state = "green" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"nFw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) +"nGw" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, -/area/lv624/lazarus/hydroponics) +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) +"nGy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nGJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) "nHq" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -18212,12 +13291,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"nHP" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "nHY" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/east, @@ -18226,46 +13299,51 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"nIs" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"nIA" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/east_barrens) -"nIH" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"nIZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) +"nIj" = ( +/obj/structure/surface/table, +/obj/structure/machinery/processor, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"nIR" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nJF" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) +"nJM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"nJU" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"nJV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nKg" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"nKN" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "nLf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/west, @@ -18280,84 +13358,64 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"nLH" = ( -/obj/structure/prop/tower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) "nLI" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"nMl" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) +"nMv" = ( +/obj/item/shard, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "nMJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"nNu" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +"nML" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"nNl" = ( +/obj/structure/surface/table, +/obj/item/book/manual/research_and_development, +/obj/item/cell/hyper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nNw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) +"nNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "nOX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"nPa" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "nPd" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) -"nPk" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"nQH" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"nQJ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) -"nRb" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"nPW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Chapel"; + req_access_txt = "100" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/white, +/area/lv624/lazarus/chapel) +"nQK" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/central_barrens) "nRA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -18365,35 +13423,27 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"nSg" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "white" +"nSs" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) +"nSA" = ( +/obj/effect/decal/remains/human, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/white, +/area/lv624/lazarus/research) +"nSM" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "nSR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"nTE" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"nUs" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "nUy" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/robotics) @@ -18404,20 +13454,17 @@ /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"nUI" = ( -/obj/item/weapon/gun/smg/mp5, -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_3_1" - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "nUZ" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"nVa" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "nVC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -18439,29 +13486,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"nWa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "nWe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nWw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "nWJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"nXv" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/platebot, +/area/lv624/ground/barrens/east_barrens/ceiling) +"nYn" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/white, +/area/lv624/lazarus/research) "nYx" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -18471,23 +13520,24 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"nYZ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) "nZz" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"oae" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"nZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"oas" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "oaL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -18496,6 +13546,9 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/east_barrens) +"obB" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/sw_lz2) "obC" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -18508,12 +13561,16 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"ocG" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +"ocu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/corporate_dome) "ocL" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -18528,13 +13585,13 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"odD" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"odC" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/research) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "odE" = ( /obj/structure/fence, /obj/effect/landmark/nightmare{ @@ -18542,62 +13599,75 @@ }, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) +"oeg" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/item/trash/cheesie, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"oei" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "oek" = ( /turf/open/gm/coast/north, /area/lv624/ground/jungle/west_jungle) +"oen" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "oeN" = ( /turf/closed/wall, /area/lv624/ground/barrens/north_east_barrens/ceiling) +"oeR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "oeS" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"off" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"ofg" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/west_caves) +"ofo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) "ofv" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"ofO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/westright{ - layer = 2.9 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"ofP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Male Dormitories"; + req_access_txt = "100" }, -/area/lv624/lazarus/quart) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"ofY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "ogJ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"ogL" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ogM" = ( /turf/open/gm/dirt, /area/lv624/ground/river/east_river) -"ogR" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "ogZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, @@ -18617,6 +13687,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"oho" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Robotics Landing Zone" + }, +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz2) "ohE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/tomatomeat, @@ -18628,13 +13704,59 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"okc" = ( +/obj/item/frame/apc, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"okK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"olc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"olE" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) +"olY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "omu" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) +"omF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/white, +/area/lv624/lazarus/research) "omK" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/west_barrens) +"omS" = ( +/turf/open/floor/chapel, +/area/lv624/lazarus/chapel) +"omT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "onP" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -18642,6 +13764,10 @@ "onU" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/west_caves) +"onW" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "oov" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, @@ -18655,44 +13781,87 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"opF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "opP" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) +"opR" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "opS" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) +"oqv" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"oqC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) +"oqG" = ( +/obj/item/stool, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "oqO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_nexus_road) +"orf" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "orj" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"orB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) -"osf" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"otc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "otl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"otL" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/east_river) "oua" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"ovf" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "ovg" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -18703,17 +13872,45 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ovw" = ( -/obj/structure/inflatable/popped, -/obj/item/stack/sheet/wood, -/turf/open/gm/dirt, -/area/lv624/lazarus/crashed_ship_containers) +"ovw" = ( +/obj/structure/inflatable/popped, +/obj/item/stack/sheet/wood, +/turf/open/gm/dirt, +/area/lv624/lazarus/crashed_ship_containers) +"ovV" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "owe" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"owr" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "owQ" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) @@ -18723,15 +13920,37 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"oxn" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/belt/medical/full, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "oxY" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"oyf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "oym" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) +"oyq" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/west_river) "oys" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18743,59 +13962,87 @@ "oyx" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"oyI" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"oyZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"ozM" = ( +/obj/item/clothing/suit/armor/yautja_flavor, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"oyT" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) "oAD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"oAJ" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 +"oAU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_central_jungle) +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "oAV" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"oBc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "oBi" = ( /obj/effect/landmark/nightmare{ insert_tag = "lv-medbay" }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"oCr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor{ - icon_state = "dark" +"oBw" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"oCy" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/foamed_metal{ + layer = 3.1 }, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) -"oCP" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteblue" +"oCL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/medbay) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"oCW" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"oDi" = ( +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "oDE" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -18822,14 +14069,12 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_tcomms_road) -"oEE" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/banana, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "bar" +"oEH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/area/lv624/lazarus/canteen) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "oEI" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/east_barrens) @@ -18840,6 +14085,16 @@ "oFf" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/river/east_river) +"oFm" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "oFJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -18854,6 +14109,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"oFS" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "oGj" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -18865,15 +14126,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"oGr" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "oGs" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) +"oGD" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"oGY" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "oHu" = ( /turf/open/gm/coast/north, /area/lv624/ground/river/east_river) @@ -18881,27 +14150,65 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oHU" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "asteroidplating" +"oHM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" }, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"oId" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) +"oII" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) +"oIK" = ( +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "oJL" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"oKP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"oKL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/lv624/ground/colony/telecomm/sw_lz2) +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"oKX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oLk" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/west_nexus_road) +"oLG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) +"oMm" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"oMU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/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/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "oMZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, @@ -18910,33 +14217,43 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"oOf" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "oOB" = ( /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"oOV" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"oPT" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) +"oQh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "oQm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"oQA" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"oQM" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/big, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"oRb" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"oRG" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/cargo) "oRH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) @@ -18960,19 +14277,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oSJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks{ - pixel_x = -4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "oTt" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/central_river) @@ -18994,27 +14298,53 @@ "oUy" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oUK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"oVM" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"oUF" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"oUH" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) +"oUP" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"oUR" = ( +/obj/structure/prop/mech/drill, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"oVz" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_central_jungle) "oWN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"oXa" = ( +/obj/structure/fence, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/ground/river/central_river) "oXl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) +"oXv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"oXE" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "oXI" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/landing_zones/lz2) @@ -19029,6 +14359,21 @@ "oYM" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/west_barrens) +"oZw" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"oZz" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) +"oZW" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "pab" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -19057,15 +14402,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/south_nexus_road) -"pca" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "nexuscenter" - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) "pcd" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/east_barrens) @@ -19079,12 +14415,38 @@ "pcA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) +"pcB" = ( +/obj/item/storage/toolbox, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"pdP" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"pdY" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"pez" = ( +/obj/structure/surface/table, +/obj/item/handset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "pfl" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/chef, /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"pfs" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "pfK" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -19092,29 +14454,14 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) +"pfV" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "pgc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"pgf" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Medbay APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"pgD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "phU" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -19126,6 +14473,14 @@ "pim" = ( /turf/open/floor, /area/lv624/ground/barrens/east_barrens) +"pir" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"piQ" = ( +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "pjk" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) @@ -19133,6 +14488,31 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"pkh" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/central_barrens) +"pku" = ( +/obj/structure/surface/table, +/obj/item/toy/deck, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"pkw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"pkI" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "pkU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -19152,37 +14532,22 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"pmz" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"plA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv624/ground/river/east_river) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "pnl" = ( /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"por" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) -"pox" = ( -/obj/structure/barricade/metal{ - dir = 8; - health = 70 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"poL" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +"pnw" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "poX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -19199,12 +14564,25 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"prd" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"pql" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/east, +/area/lv624/ground/jungle/west_central_jungle) +"pqu" = ( +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) +"prt" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/atmospipes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"pru" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/main_hall) "prQ" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -19216,6 +14594,12 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"psf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) "psh" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) @@ -19224,52 +14608,81 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"psZ" = ( -/obj/item/stack/sheet/wood, -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 - }, -/turf/open/shuttle{ - icon_state = "floor4" +"psS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"ptn" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv624/lazarus/crashed_ship_containers) -"ptm" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/obj/structure/computerframe{ + anchored = 1 }, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "ptr" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"ptE" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"puf" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/engineering) "puo" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"pwq" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"pws" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"pwE" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"pwP" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "pxc" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) +"pxj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "pxs" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"pyG" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" +"pxM" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) +"pya" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) +"pyj" = ( +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "pyS" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -19278,46 +14691,51 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"pAU" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"pAW" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "pBk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"pBz" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/colony/north_tcomms_road) "pBH" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"pDh" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"pBU" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"pCn" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 200 }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"pCR" = ( +/obj/structure/safe{ + spawnkey = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/coin/diamond, +/obj/item/m_gift, +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/ground/caves/sand_temple) +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/storage/fancy/cigar, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "pDt" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) @@ -19325,27 +14743,37 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"pDK" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"pDW" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Secure Storage"; + pixel_y = 24 }, -/area/lv624/ground/caves/sand_temple) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "pEl" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"pEz" = ( +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "pET" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"pEV" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "pFe" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) @@ -19355,6 +14783,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"pGq" = ( +/obj/item/tool/crowbar, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "pGD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -19375,13 +14807,12 @@ /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) -"pHA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"pHI" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "pIl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 @@ -19404,6 +14835,21 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"pIY" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pie, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"pJd" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "pJr" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -19412,36 +14858,34 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"pKm" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, -/area/lv624/ground/colony/telecomm/sw_lz2) -"pKp" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" +"pKK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "pKS" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"pKW" = ( +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "pLm" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/west_nexus_road) -"pLv" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) +"pLt" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"pLw" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) "pMM" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, @@ -19450,62 +14894,52 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pNa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) "pNr" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"pOi" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/shotgun/full, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -6 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "pOC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) -"pOW" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "pPd" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"pQn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - locked = 1; - name = "\improper Corporate Liason" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"pPu" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/east_barrens) +"pQl" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "pQV" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"pRh" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"pRp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"pQX" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "pRx" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -19520,6 +14954,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"pRK" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "pRT" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) @@ -19533,22 +14972,87 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/west_nexus_road) +"pSS" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/taperecorder, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"pTm" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"pTs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"pTY" = ( +/obj/structure/surface/table, +/obj/structure/machinery/door/window/westright{ + layer = 2.9 + }, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "pUm" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/east_caves) -"pVZ" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - light_on = 1; - light_range = 1; - light_system = 1 +"pUU" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/yggdrasil) +"pWL" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"pXp" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/engineering) +"pXC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "pXI" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"pXS" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"pXU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "pYp" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, @@ -19563,6 +15067,11 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) +"pYY" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "pZb" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_east_caves) @@ -19577,26 +15086,59 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"qbF" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "yellow"; - phone_id = "Communications"; - pixel_y = 24 +"qaG" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/west_jungle) +"qaH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/pole/fancy_cane, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"qbv" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/comms) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "qcz" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"qcP" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "qcX" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"qdr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grilledcheese, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"qdw" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "qdx" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -19607,15 +15149,6 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"qeb" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_6_1" - }, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "qeW" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/caves/sand_temple) @@ -19635,6 +15168,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz2) +"qfI" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qfK" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -19644,6 +15181,11 @@ "qgA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) +"qgY" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "qhl" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -19653,6 +15195,32 @@ "qhn" = ( /turf/open/floor/plating, /area/lv624/lazarus/secure_storage) +"qhx" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"qhI" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) +"qin" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "qiL" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -19660,42 +15228,88 @@ "qjf" = ( /turf/open/floor, /area/lv624/ground/barrens/containers) +"qji" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"qjm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qjt" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qld" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel, -/obj/item/stack/sheet/wood{ - amount = 16 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"qky" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) +"qkE" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"qmp" = ( +/obj/item/frame/table, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "qns" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"qnA" = ( +/obj/structure/surface/table, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "qnQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"qpX" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" +"qoc" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -7; + pixel_y = 13 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) +"qoJ" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"qoZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"qpF" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "qqJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"qrw" = ( +/obj/structure/machinery/gibber, +/obj/effect/landmark/good_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "qrH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -19704,6 +15318,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"qrQ" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_jungle) "qsM" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -19725,30 +15343,12 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"quK" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"qur" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Nexus Landing Zone" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/plating, +/area/lv624/lazarus/landing_zones/lz1) "qvf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/north, @@ -19757,13 +15357,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/west_nexus_road) -"qwC" = ( +"qvE" = ( /obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) +/obj/structure/machinery/microwave, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"qwA" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) +"qxj" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "qxZ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/stack/sheet/metal{ @@ -19773,6 +15378,27 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"qyc" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"qzv" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"qzB" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "qAc" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -19786,6 +15412,13 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/caves/sand_temple) +"qAl" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern, +/obj/structure/barricade/sandbags/wired, +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "qAu" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -19798,6 +15431,26 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"qAY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"qBo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory"; + req_one_access_txt = "19;106" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"qBp" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "qBQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -19816,25 +15469,20 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"qCU" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"qDg" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" +"qDn" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"qDt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/sleep_female) +"qDv" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qDx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -19852,6 +15500,14 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"qFp" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"qGA" = ( +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "qGH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, @@ -19860,19 +15516,34 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"qGR" = ( -/obj/structure/foamed_metal, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/plating, -/area/lv624/lazarus/engineering) +"qHi" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "qHC" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"qHW" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"qIj" = ( +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_y = -28 + }, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "qIw" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) +"qID" = ( +/obj/item/trash/cheesie, +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "qIO" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) @@ -19880,12 +15551,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"qJq" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "qJx" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -19896,48 +15561,103 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"qJH" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) +"qJM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 + }, +/obj/effect/landmark/nightmare{ + insert_tag = "corporatedome" + }, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/west_tcomms_road) "qKl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_nexus_road) -"qKC" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" +"qKH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 }, -/area/lv624/ground/colony/telecomm/sw_lz2) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"qKN" = ( +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "qLc" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"qLi" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"qMc" = ( +/obj/structure/surface/table, +/obj/item/trash/cheesie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"qMd" = ( +/obj/item/clothing/glasses/regular, +/turf/open/floor/white, +/area/lv624/lazarus/research) "qMX" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"qNf" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"qNN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qNQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"qOW" = ( +/obj/structure/barricade/metal/wired, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"qPa" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "qPx" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qPO" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) +"qPI" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qPY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -19977,31 +15697,27 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"qTM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/smg/mp5, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"qTx" = ( +/obj/item/trash/chips, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qUM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/west_central_jungle) -"qVh" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_west_caves) -"qVi" = ( +"qVc" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; light_on = 1; light_range = 1; - light_system = 1 + light_system = 1; + pixel_x = 2; + pixel_y = 7 }, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) +/area/lv624/ground/caves/central_caves) +"qVh" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_west_caves) "qVN" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, @@ -20014,14 +15730,42 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"qXo" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"qWM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"qXq" = ( +/obj/structure/surface/table, +/obj/structure/prop/mech/drill, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"qXD" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"qXI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"qYe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/quartstorage) +/mob/living/simple_animal/corgi/puppy{ + desc = "It's a corgi puppy. MISTER WIGGLES!! HE IS THE GREATEST!"; + name = "\improper Mister Wiggles" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"qYg" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "qYF" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirt, @@ -20038,24 +15782,35 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"qZR" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "rac" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"rah" = ( -/obj/structure/bed/chair{ +"rap" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" +/obj/structure/showcase, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/corporate_dome) -"rba" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/west_barrens) +"rax" = ( +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"rbo" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) "rbs" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -20072,13 +15827,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"rcq" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "rcy" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -20087,37 +15835,30 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"rdS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"rdZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 +"rdn" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"reB" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"reE" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) +"reV" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "rfH" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -20130,48 +15871,73 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"rgA" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "rgQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"rhi" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +"rha" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "rit" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"rkq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"rmg" = ( -/obj/structure/machinery/power/monitor, -/obj/structure/foamed_metal, -/obj/structure/machinery/light{ +"rjz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"rjU" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz1) +"rke" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) +"rks" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"rkw" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) +"rkA" = ( +/obj/structure/closet/lawcloset, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"rle" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ dir = 1 }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"rmt" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"rlG" = ( +/obj/structure/dispenser, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "rmB" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; @@ -20180,16 +15946,15 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"rmW" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"rnD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "rox" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -20198,17 +15963,14 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"rpr" = ( +/obj/structure/prop/mech/parts/chassis/gygax, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "rpx" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"rpR" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "rqf" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -20218,6 +15980,29 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"rrL" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"rsD" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"rsM" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"rtg" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) "rtD" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/heavy, @@ -20236,14 +16021,54 @@ }, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"rvL" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) +"ruz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"ruE" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_9_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"ruJ" = ( +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"ruQ" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"rvc" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"rvj" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rvF" = ( +/turf/open/floor/warnwhite/southeast, +/area/lv624/lazarus/fitness) +"rvM" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/sw_lz2) "rvW" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/river/east_river) +"rwc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "rwg" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -20257,12 +16082,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"rwA" = ( +/obj/item/shard, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) "rwB" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"rxh" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/corporate_dome) "rxk" = ( /obj/structure/safe{ spawnkey = 0 @@ -20273,86 +16105,81 @@ /obj/item/cell/high, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"rxV" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"rxF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) "ryp" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"ryJ" = ( +"ryM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /obj/structure/surface/table, +/obj/structure/prop/mech/hydralic_clamp, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ryY" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"ryS" = ( +/obj/item/ammo_casing, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) "rze" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"rzT" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"rAo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) -"rAU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/east_caves) +"rBy" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "rBF" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"rCK" = ( +"rBT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"rCp" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; + dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/platform{ + layer = 3.1 }, -/area/lv624/ground/caves/sand_temple) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"rCH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "rCV" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) +"rDi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"rDr" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"rDH" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 15 + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "rER" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -20360,11 +16187,32 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"rFc" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"rFe" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"rFi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "rGd" = ( /obj/structure/girder/displaced, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rGi" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "rGu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -20378,16 +16226,21 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"rGE" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 6; - pixel_y = -8; - light_on = 1; - light_range = 1; - light_system = 1 +"rGG" = ( +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"rGT" = ( +/obj/item/stock_parts/scanning_module/phasic, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_east_caves) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "rGW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/south, @@ -20407,6 +16260,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"rHW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "rIc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -20423,6 +16280,11 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"rIv" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "rID" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 @@ -20435,18 +16297,24 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"rJO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "rJS" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"rKj" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) "rKQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -20458,28 +16326,30 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"rMR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"rNq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) +"rNG" = ( +/obj/item/clothing/suit/redtag, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "rON" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"rPa" = ( +/obj/structure/computerframe, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"rPo" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "rPK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -20507,16 +16377,33 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"rRE" = ( -/obj/item/tool/minihoe{ - pixel_x = 1; - pixel_y = -1 +"rQz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor{ - dir = 9; - icon_state = "green" +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"rRq" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 }, -/area/lv624/lazarus/hydroponics) +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"rSg" = ( +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"rSh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/secure_storage) "rSy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_jungle) @@ -20529,31 +16416,68 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) +"rTP" = ( +/obj/structure/holohoop, +/turf/open/floor/warnwhite/north, +/area/lv624/lazarus/fitness) "rTT" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"rUP" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "rUX" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"rVA" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal{ + layer = 3.01 + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"rVE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "rWs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"rWP" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/west_jungle) +"rWV" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) "rWW" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"rXs" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 4; - icon_state = "red" +"rXc" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/lv624/lazarus/security) +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "rXt" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -20573,6 +16497,11 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"rYa" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "rYe" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20584,59 +16513,69 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"rZp" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, +/area/lv624/ground/jungle/west_jungle) "sau" = ( /obj/effect/landmark/crap_item, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"sbt" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor{ - icon_state = "white" +"sbw" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_9_1" }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"sbL" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) +"scb" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "scs" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"scS" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - pixel_x = -4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"scy" = ( +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) "sdh" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"sdS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup{ - desc = "Why would you ever drink this? Its full of mold and yucky slime!"; - pixel_y = 3 - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"sdV" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"sep" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/central_barrens) +"seO" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"sfF" = ( +/obj/item/trash/raisins, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "sfH" = ( /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"sfJ" = ( +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "sgc" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, @@ -20662,26 +16601,26 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"shy" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"sjx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/high_explosive/stick, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = 6 - }, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = -6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"siI" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) +"siL" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"sjH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"skU" = ( +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "slW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -20695,23 +16634,24 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"snc" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"sne" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_10_1" - }, -/turf/open/floor{ - icon_state = "white" +"smI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/lazarus/corporate_dome) +"smL" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl{ + pixel_y = 9 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"snf" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/sand_temple) "snm" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/colony/west_nexus_road) @@ -20719,13 +16659,18 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"snH" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "bar" +"sow" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/area/lv624/lazarus/canteen) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "soz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -20738,10 +16683,26 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"sph" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "spm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"spq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Garage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"spH" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "spK" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -20749,6 +16710,12 @@ "sqj" = ( /turf/open/gm/river, /area/lv624/ground/river/central_river) +"sqq" = ( +/obj/item/frame/table, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "sqs" = ( /obj/item/stack/sheet/metal{ pixel_x = -7; @@ -20761,20 +16728,14 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"sqR" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) +"sqx" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/costume/butler, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"sqS" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/south_west_caves) "srn" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -20788,6 +16749,9 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ssU" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "stt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -20801,11 +16765,45 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"svy" = ( +/obj/item/tool/pickaxe/jackhammer{ + desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; + force = 3; + name = "display jackhammer" + }, +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"svV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup{ + desc = "Why would you ever drink this? Its full of mold and yucky slime!"; + pixel_y = 3 + }, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "swR" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"swZ" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "sxa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -20818,13 +16816,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"sxm" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "sxn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -20832,13 +16823,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"sxN" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "sxY" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -20848,34 +16832,66 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"syr" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "syx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"syy" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "szy" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) +"szL" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "sAh" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"sAA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "sAI" = ( /obj/structure/flora/jungle/planttop1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"sBg" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "sBC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -20887,35 +16903,46 @@ "sBY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"sCg" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ +"sCd" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"sCJ" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/medbay) +"sCh" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"sCG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "sCX" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sDb" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_x = -30 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"sDw" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) "sDE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"sEi" = ( +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/main_hall) +"sEy" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "sET" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -20923,6 +16950,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"sFb" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/effect/glowshroom, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "sFc" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -20932,24 +16969,20 @@ dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/north_east_caves) -"sFY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) +/area/lv624/ground/caves/north_east_caves) "sGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"sGU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"sGY" = ( +/turf/open/floor/warnwhite/southwest, +/area/lv624/lazarus/fitness) "sHT" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -20957,12 +16990,6 @@ "sIg" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_west_barrens) -"sIi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/corporate_dome) "sIr" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -20982,20 +17009,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"sIS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"sJG" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/main_hall) "sJM" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"sJN" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/turf/open/floor{ - icon_state = "bluecorner" +"sJR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"sKi" = ( +/obj/item/clothing/under/shorts/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"sLM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "sLT" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -21015,6 +17056,11 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"sMj" = ( +/obj/structure/surface/table, +/obj/item/trash/cheesie, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "sMx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -21026,23 +17072,46 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"sNg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "sNq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"sNX" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platebot" +"sNt" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) +"sNP" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"sOm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/lazarus/robotics) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "sOp" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"sOx" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"sOB" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "sOC" = ( /obj/item/stack/sheet/metal{ pixel_x = 16; @@ -21050,6 +17119,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"sOD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red, +/area/lv624/lazarus/security) "sOZ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, @@ -21062,14 +17135,36 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"sPD" = ( +/obj/structure/surface/rack, +/obj/item/shard{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "sPK" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"sPZ" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "sRg" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"sRj" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/colony/north_tcomms_road) +"sRv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "sRH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -21077,10 +17172,22 @@ "sRW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) +"sSw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "sSE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) +"sSH" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "sTB" = ( /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) @@ -21104,6 +17211,24 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/hydroponics) +"sVn" = ( +/obj/item/device/flash, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/redcorner, +/area/lv624/lazarus/security) "sVx" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -21112,12 +17237,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"sVZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - icon_state = "grimy" +"sWp" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 6; + pixel_y = 2 }, -/area/lv624/lazarus/hop) +/obj/item/reagent_container/glass/fertilizer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "sWy" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -21126,96 +17255,106 @@ /obj/structure/largecrate, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"sWL" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"sXg" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"sWG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/smg/mp5, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"sWM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/west_caves) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "sXi" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"sXs" = ( +/turf/open/gm/dirtgrassborder/desert, +/area/lv624/ground/barrens/south_eastern_barrens) "sYY" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"taa" = ( -/obj/structure/barricade/wooden, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"taK" = ( -/obj/structure/fence, -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/colony/north_tcomms_road) +"sZB" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"sZI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) +"tau" = ( +/obj/structure/flora/pottedplant, +/obj/item/trash/cheesie, +/obj/structure/pipes/vents/pump, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "tbV" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"tcC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "tcF" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"tcP" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/platinum, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "tde" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"tds" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"tdW" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "tdX" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"tem" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "teJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -21233,14 +17372,16 @@ /obj/item/storage/firstaid, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"tgi" = ( -/obj/effect/landmark/nightmare{ - insert_tag = "lz-containers" - }, -/turf/open/floor{ - icon_state = "warning" - }, +"tgu" = ( +/obj/structure/barricade/wooden, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northwest, /area/lv624/lazarus/landing_zones/lz1) +"tgB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tgL" = ( /mob/living/simple_animal/bat, /turf/open/gm/dirt, @@ -21250,53 +17391,13 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) -"thk" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"thn" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"thG" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Secure Storage"; - pixel_y = 24 - }, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) +"tgZ" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"thB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "thI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -21311,6 +17412,17 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) +"tix" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"tiF" = ( +/turf/closed/wall, +/area/lv624/lazarus/yggdrasil) +"tiQ" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "tka" = ( /obj/item/ammo_casing/bullet{ icon_state = "casing_9_1" @@ -21323,10 +17435,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"tko" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"tkB" = ( +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 0 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "tlk" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"tlm" = ( +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"tly" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "tlD" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, @@ -21350,11 +17480,30 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tnY" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +"tmH" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"tng" = ( +/obj/item/storage/firstaid/toxin/empty, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"tnu" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"tov" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "toz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -21368,16 +17517,9 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"toM" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) +"toN" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "toT" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/item/tool/hatchet{ @@ -21386,6 +17528,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"tpT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "tqe" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -21394,10 +17547,20 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"tqM" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "tqQ" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"trl" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "trs" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, @@ -21416,6 +17579,12 @@ "tsa" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) +"tsd" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "tsK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -21442,26 +17611,44 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"tuJ" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -5; - pixel_y = -5; - light_on = 1; - light_range = 1; - light_system = 1 +"tuV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"tuW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"tuX" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"tvh" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) +"tvu" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + locked = 1; + name = "\improper Nexus Dome Director's Quarters"; + req_access_txt = "100" }, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/cult, +/area/lv624/lazarus/hop) "tvC" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) +"tvY" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "twg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -21481,23 +17668,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"txL" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "tyG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"tzo" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/central_barrens) "tzB" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -21508,6 +17681,19 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"tzL" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/platform, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"tAY" = ( +/obj/item/stack/rods/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) "tBx" = ( /obj/structure/filingcabinet/medical, /turf/open/floor, @@ -21531,6 +17717,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"tDv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + locked = 1; + name = "\improper Corporate Liaison" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"tDB" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"tDD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tEm" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -21539,42 +17750,61 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"tEn" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" +"tFc" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating, +/area/lv624/lazarus/comms) +"tFF" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) -"tES" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"tGT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "tHc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"tIg" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"tHD" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) +"tIw" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/west_caves) +"tIT" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "tIZ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"tJb" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"tJa" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 26 }, -/area/lv624/lazarus/quartstorage) +/obj/item/prop/alien/hugger, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"tJd" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "tJh" = ( /obj/structure/showcase{ color = "#95948B"; @@ -21595,28 +17825,49 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"tJQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) +"tKw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Storage Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/white, +/area/lv624/lazarus/quartstorage) "tKI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"tLk" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_east_caves) "tLQ" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"tLS" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "tLU" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"tLV" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "tMh" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/heavy, @@ -21626,18 +17877,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"tMF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "tMQ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -21653,6 +17892,24 @@ /obj/item/storage/firstaid/adv, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) +"tOc" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 10 + }, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_east_caves) +"tOC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "tOS" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -21661,6 +17918,11 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"tPA" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "tPH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, @@ -21669,16 +17931,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"tQU" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) +"tQa" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"tQJ" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "tRu" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -21716,40 +17975,57 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"tUO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) +"tUf" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/east_caves) +"tVv" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) "tVw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"tWw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"tVx" = ( +/obj/structure/closet, +/obj/item/clothing/under/rank/scientist, +/obj/structure/window/reinforced/tinted, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "tWK" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"tXv" = ( +/obj/structure/barricade/metal{ + dir = 8; + health = 70 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"tXx" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/west_barrens) "tXO" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) -"tXZ" = ( -/obj/structure/largecrate, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"tXQ" = ( +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"tXS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"tYI" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "tYW" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -21764,9 +18040,17 @@ /obj/item/tank/oxygen/yellow, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"tZg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "tZD" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) +"uaK" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "uaL" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, @@ -21779,32 +18063,33 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"ubJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "ubN" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"ubQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"ubU" = ( +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"ubY" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"ucX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "udj" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"udM" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "udP" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) @@ -21820,10 +18105,29 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"ufU" = ( +/obj/structure/bed, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ufW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) +"uge" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"ugh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ugk" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -21835,26 +18139,41 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"ugT" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"ugH" = ( +/obj/structure/lamarr{ + density = 0; + destroyed = 1; + icon_state = "labcageb0"; + occupied = 0 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 }, -/area/lv624/ground/caves/sand_temple) -"uin" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/tool/match{ - pixel_x = 6; - pixel_y = 3 +/obj/item/shard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uhc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/carpet{ - icon_state = "bcarpet08" +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"uhu" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/ground/caves/north_central_caves) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"uhw" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/sand_temple) +"uhB" = ( +/obj/structure/fence, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) "uiz" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -21871,10 +18190,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"ujc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/foamed_metal, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ujd" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"ujk" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/quartstorage) +"ujP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"ujY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "ukh" = ( /obj/item/ammo_casing/bullet{ icon_state = "cartridge_6_1" @@ -21890,11 +18231,20 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"ukE" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"ukK" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"ukN" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"ukX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/red, +/area/lv624/lazarus/security) "ukY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -21903,27 +18253,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"ukZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/colony/telecomm/cargo) -"ulj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"uly" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) "umb" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_membrane, /obj/effect/landmark/structure_spawner/setup/distress/xeno_membrane, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"umw" = ( +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"unm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "unp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_east_caves) @@ -21931,27 +18275,31 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) +"uoh" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "uop" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"uoR" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "upM" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"upP" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/jungle/west_jungle/ceiling) "upQ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"upV" = ( -/obj/item/stack/cable_coil/random{ - pixel_y = 9; - pixel_x = 7 - }, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/east_jungle) "uqm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -21964,12 +18312,6 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"urR" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "urY" = ( /obj/structure/barricade/sandbags/wired{ dir = 4 @@ -21980,10 +18322,38 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) +"utE" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "uuf" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) +"uuk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"uus" = ( +/obj/structure/barricade/metal/wired{ + health = 300 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"uuy" = ( +/obj/effect/decal/remains/xeno, +/obj/item/stack/sheet/metal, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"uuD" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "uuV" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/south, @@ -21994,6 +18364,19 @@ "uvh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) +"uvm" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"uvu" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "uwG" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -22009,16 +18392,6 @@ /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"uxL" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "uxT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -22029,38 +18402,68 @@ "uya" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"uyb" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"uyj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Nexus Cargo Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "uyn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"uzH" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "asteroidwarning" +"uys" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"uzu" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/repair_droid{ + layer = 2; + pixel_y = -10 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "uAp" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) +"uBD" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uBR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"uDd" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"uBT" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"uDe" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/obj/item/tool/wrench, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "uDs" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_central_jungle) @@ -22074,42 +18477,37 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"uEe" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "uEl" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"uEL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"uFA" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"uEM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"uEY" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "uFB" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"uGM" = ( -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" +"uGb" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"uGB" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "uHc" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -22120,24 +18518,58 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"uIF" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken3" +"uIh" = ( +/obj/item/folder/red, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"uIn" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) +"uIr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"uIJ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) +"uIK" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"uKk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"uKS" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "uKT" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"uLW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/north_jungle) "uMd" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -22155,6 +18587,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) +"uMW" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) +"uNl" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "uOi" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -22173,6 +18613,23 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"uOG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"uOS" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/east_barrens/ceiling) +"uQz" = ( +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "uRb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -22181,16 +18638,21 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"uRl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) "uRE" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/lazarus/landing_zones/lz2) +"uSl" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "uSq" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_tcomms_road) -"uSw" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/lv624/ground/jungle/west_jungle) "uSy" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) @@ -22198,72 +18660,99 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"uST" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern, -/obj/structure/barricade/sandbags/wired, -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) +"uSL" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/secure_storage) "uTe" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uUi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "uUl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_west_jungle) -"uUJ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" +"uUn" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" }, -/area/lv624/ground/barrens/south_eastern_barrens) -"uVx" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"uVq" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"uVs" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "uVU" = ( /obj/effect/landmark/lv624/xeno_tunnel, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uWr" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) +"uWF" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "uWJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) -"uXW" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken" +"uXc" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/ground/caves/north_central_caves) +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"uXi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "uYj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"uYo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "uYC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"uYO" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/river/east_river) +"uYW" = ( +/obj/structure/showcase, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"uZf" = ( +/obj/item/ammo_magazine/rifle/extended, +/turf/open/floor/plating, +/area/lv624/lazarus/secure_storage) "uZp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -22273,15 +18762,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"uZq" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) "vam" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -22301,59 +18781,71 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"vce" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) "vcY" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"vdj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) "vdt" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"vdy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"veo" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_3_1" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"vdT" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"vea" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "ver" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"vev" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"vft" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ +"veV" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"veW" = ( +/obj/structure/barricade/metal{ + health = 250 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "vfR" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"vfW" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"vgh" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/west_barrens) +"vgD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) +"vgI" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet07, +/area/lv624/ground/caves/north_central_caves) "vgJ" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -22367,6 +18859,21 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"vgP" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) +"vhd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/banana, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vhx" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -22375,6 +18882,15 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) +"vhH" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7 + }, +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) "vih" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -22382,12 +18898,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"viw" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "viC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"vjb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Research Dome"; + pixel_y = 24 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "vjH" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -22400,30 +18931,14 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/south_nexus_road) -"vkI" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"vkS" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +"vkr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_east_caves) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "vle" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -22440,37 +18955,51 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"vno" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_9_1" - }, -/turf/open/floor{ - icon_state = "white" +"vne" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) +"vnh" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "vnW" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"voy" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 +"voH" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"voO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/device/flashlight, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"voU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"vpc" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) +"vpp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/white, +/area/lv624/lazarus/research) "vpu" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22480,9 +19009,82 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"vpw" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"vpE" = ( +/obj/item/storage/firstaid/adv/empty, +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Corporate Office"; + pixel_y = 24 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"vpW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"vpY" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"vqw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"vqB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"vqQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "vqT" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) +"vra" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"vrt" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/main_hall) +"vsA" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/wrench, +/obj/item/tool/weldingtool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vsT" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -22502,6 +19104,27 @@ "vty" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"vtL" = ( +/obj/structure/prop/mech/tesla_energy_relay{ + layer = 2.5 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"vtR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"vun" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "vuv" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_central_jungle) @@ -22509,22 +19132,32 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"vuR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/adv, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "vvs" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"vvE" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 +"vwC" = ( +/obj/structure/showcase{ + layer = 3.1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "vxa" = ( /obj/structure/flora/jungle/vines/light_3, /obj/item/stack/sheet/wood{ @@ -22539,33 +19172,41 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"vxQ" = ( +/obj/item/device/multitool, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "vxU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"vyz" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"vxZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel, +/obj/item/stack/sheet/wood{ + amount = 16 }, -/area/lv624/lazarus/quartstorage) -"vzT" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"vzh" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" + dir = 1 }, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "vAg" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"vAx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "vAB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -22583,19 +19224,45 @@ "vBe" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) +"vBh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "vBu" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"vBQ" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +"vBz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"vBI" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"vCb" = ( +/turf/open/floor/warnwhite/northeast, +/area/lv624/lazarus/fitness) +"vCf" = ( +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"vCu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"vCw" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vCG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -22605,6 +19272,13 @@ "vDy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/barrens/south_eastern_barrens) +"vDS" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "vDW" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -22613,6 +19287,15 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vEF" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/central_barrens) +"vFu" = ( +/obj/structure/surface/table, +/obj/item/trash/chips, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vGg" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -22632,33 +19315,55 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"vHe" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 +"vHd" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_y = 3 +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"vHo" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) +"vHt" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, +/area/lv624/ground/jungle/south_central_jungle) +"vIi" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/area/lv624/lazarus/quartstorage) -"vIt" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"vIR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/ground/river/east_river) -"vIY" = ( -/obj/item/ammo_casing/bullet{ - icon_state = "cartridge_9_1" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor{ - icon_state = "whiteyellow" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"vIT" = ( +/turf/open/gm/dirt, +/area/lv624/lazarus/secure_storage) +"vJf" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/corporate_dome) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vJs" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/bananapeel, @@ -22717,6 +19422,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"vPO" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"vPU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright{ + dir = 2; + layer = 2.9 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "vPV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_jungle) @@ -22724,10 +19441,27 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"vSu" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "vSG" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"vTx" = ( +/obj/structure/closet, +/obj/item/clothing/under/blackskirt, +/obj/item/stack/medical/advanced/ointment, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"vUv" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vUw" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -22736,12 +19470,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/cult, /area/lv624/ground/caves/south_west_caves) -"vVf" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) "vVC" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/east_caves) @@ -22749,17 +19477,23 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"vVN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"vWb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "vWs" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"vXg" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "vXP" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -22771,6 +19505,29 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vYr" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"vZa" = ( +/obj/structure/largecrate/random, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"vZw" = ( +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"vZY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "waw" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -22783,19 +19540,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"wbu" = ( -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40/extended, -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"wbn" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "wbK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -22807,21 +19555,30 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"wca" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "wcj" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"wct" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wcC" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/shoes/dress, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "wcK" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -22833,17 +19590,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wcT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/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/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "wcW" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/platform/mineral/sandstone/runed{ @@ -22851,10 +19597,47 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) +"wdk" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/west_jungle) +"wdv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "weH" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) +"weM" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"weY" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"wfn" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wgg" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "wgk" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -22862,47 +19645,22 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/sand_temple) -"wgs" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) +"wgJ" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_east_jungle) "wgR" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"whk" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_west_caves) -"whr" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/ammo_magazine/smg/mp5, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"whv" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "whx" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"whL" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "whQ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -22920,6 +19678,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) +"wiE" = ( +/turf/open/floor/warningcorner/east, +/area/lv624/lazarus/landing_zones/lz1) +"wiR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"wjy" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "wjT" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -22947,6 +19715,12 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"wlj" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "wlo" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/genericbush, @@ -22958,6 +19732,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"wnw" = ( +/obj/structure/surface/table, +/obj/item/alien_embryo{ + pixel_y = 4 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "woF" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/barricade/metal/wired{ @@ -22967,36 +19748,6 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) -"woK" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"woM" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "woT" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -23023,29 +19774,46 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"wqY" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "wrN" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"wsQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "wsZ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) +"wta" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wti" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "wty" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"wtK" = ( +"wtE" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"wug" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/suspenders, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "wvO" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -23055,14 +19823,33 @@ /obj/effect/decal/remains/xeno, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"wwI" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/lv624/ground/caves/north_central_caves) +"www" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"wxs" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"wxB" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "wxP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_jungle) +"wyu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"wyQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "wzG" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -23086,6 +19873,10 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"wBN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "wBS" = ( /obj/item/clothing/suit/armor/yautja_flavor, /turf/open/floor/sandstone/runed, @@ -23096,13 +19887,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"wDA" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"wDV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 }, -/area/lv624/lazarus/fitness) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "wEO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -23113,16 +19904,46 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wFj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/crowbar, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whiteyellow/northwest, +/area/lv624/lazarus/corporate_dome) +"wFl" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "wFp" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/river/east_river) -"wFR" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken3" +"wFF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"wGr" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"wGR" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "wHh" = ( /obj/effect/decal/grass_overlay/grass1{ @@ -23130,39 +19951,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"wHp" = ( -/turf/open/floor/plating{ +"wHL" = ( +/obj/structure/surface/table/reinforced{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/landing_zones/lz2) -"wHE" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -1; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_west_caves) -"wIw" = ( -/obj/structure/safe{ - spawnkey = 0 + flipped = 1 }, -/obj/item/coin/diamond, -/obj/item/m_gift, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) +"wIo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/storage/fancy/cigar, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) +"wIS" = ( +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"wJx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "wJA" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony/reinforced, @@ -23176,27 +19986,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"wKv" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"wLe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor{ - icon_state = "whitebluefull" +"wKG" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 }, -/area/lv624/lazarus/medbay) -"wLz" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "wLT" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -23205,38 +20004,51 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"wMr" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 +"wMv" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) +"wMA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/chips, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Director's Office" }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/north_east_caves) -"wNB" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"wNk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz1) -"wOv" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"wNl" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, /obj/structure/showcase, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whiteblue" + dir = 8 }, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/corporate_dome) +"wNs" = ( +/obj/structure/surface/table, +/obj/item/poster, +/obj/item/clothing/glasses/regular/hipster, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wPz" = ( +/obj/item/trash/popcorn, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "wPN" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) @@ -23259,6 +20071,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"wQS" = ( +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "wRb" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -23277,61 +20092,54 @@ "wSo" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/west_barrens) -"wSA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"wSR" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"wSY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - locked = 1; - name = "\improper Storage Room" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"wSp" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "wTa" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"wTd" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"wTB" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) "wTC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) +"wTK" = ( +/obj/structure/foamed_metal, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "wTL" = ( /obj/item/storage/firstaid, /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"wTS" = ( +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"wTW" = ( +/obj/structure/platform_decoration, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"wUl" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "wUv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/structure/flora/jungle/vines/heavy, @@ -23341,6 +20149,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"wVb" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/west_caves) "wVk" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) @@ -23350,11 +20168,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"wWg" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "wWm" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/north_east_jungle) @@ -23362,20 +20175,13 @@ /obj/structure/surface/rack, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"wWK" = ( -/obj/structure/showcase, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" +"wWy" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "wWS" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, @@ -23390,14 +20196,42 @@ "wXp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_central_jungle) +"wXs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "wXy" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wYe" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wYp" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"wYq" = ( +/obj/structure/closet, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wYt" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -32 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/effect/spawner/random/powercell, +/obj/item/device/assembly/infra, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wYz" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -23418,9 +20252,37 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"wZl" = ( +/obj/item/bananapeel, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"wZB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen/north, +/area/lv624/lazarus/main_hall) +"wZI" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"wZR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/east_caves) "wZW" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"xac" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xak" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -23431,16 +20293,16 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"xbu" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "xch" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"xck" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "xcC" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -23452,39 +20314,66 @@ "xdO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) +"xdS" = ( +/obj/structure/closet, +/obj/item/tool/crowbar, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "xei" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"xeq" = ( -/obj/structure/machinery/light{ - dir = 4 +"xex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/computer/telecomms/traffic{ + layer = 3.1; + pixel_y = 16 }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" +/obj/structure/bed/chair/office/light{ + dir = 1; + layer = 3.2 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"xeG" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) "xeT" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"xfP" = ( -/obj/item/stack/rods, -/obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +"xfc" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "xgE" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) +"xgF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"xgI" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/corporate_dome) "xhc" = ( /mob/living/simple_animal/bat, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -23492,6 +20381,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"xhj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "xhv" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -23499,23 +20394,50 @@ "xhC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"xkU" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +"xiU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"xjv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"xkx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/cult, +/area/lv624/ground/caves/west_caves) +"xlz" = ( +/obj/item/weapon/gun/smg/mp5, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"xme" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xmK" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xnt" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) +"xmV" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "xov" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -23529,6 +20451,17 @@ "xpf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) +"xpg" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"xpp" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "xpz" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -23536,13 +20469,28 @@ "xpR" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_east_caves) -"xrI" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" +"xrz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"xrX" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/main_hall) "xsN" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/ppflowers, @@ -23551,22 +20499,15 @@ "xuk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_central_jungle) +"xuy" = ( +/obj/item/stack/rods/plasteel, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "xuK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"xvN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "xvV" = ( /obj/effect/landmark/nightmare{ insert_tag = "sandtemple-lz1" @@ -23580,25 +20521,14 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xwQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs/cable/white{ - pixel_y = 4 - }, -/obj/item/handcuffs/cable/white, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"xxz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/crowbar, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) +"xwX" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"xxW" = ( +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "xyH" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -23607,26 +20537,33 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"xyI" = ( -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 0 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"xyJ" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "xze" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"xzn" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/snacks/syndicake{ + layer = 2.6 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "xzD" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) -"xBi" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/sand_temple) +"xzY" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) +"xAp" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "xBm" = ( /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) @@ -23634,13 +20571,13 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"xCF" = ( -/obj/item/ammo_magazine/smg/mp5, -/obj/item/weapon/gun/smg/mp5, -/turf/open/floor{ - icon_state = "white" +"xBY" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "xDl" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/west, @@ -23648,19 +20585,41 @@ "xDw" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/ground/colony/telecomm/cargo) +"xDA" = ( +/obj/structure/bed/stool, +/obj/item/prop/alien/hugger, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xDR" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"xEq" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 2 + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"xEr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Warrior hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "xEt" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) -"xFf" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "xGd" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -23678,10 +20637,59 @@ /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"xHk" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"xHo" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) +"xHt" = ( +/obj/item/storage/toolbox/syndicate, +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"xHJ" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"xHO" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/north_west_caves) "xHW" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"xIa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) +"xJx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xJA" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, @@ -23711,20 +20719,16 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xMj" = ( -/obj/structure/machinery/light{ +"xMV" = ( +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"xNd" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Research Dome"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "xNi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/grass_overlay/grass1{ @@ -23732,9 +20736,60 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"xNk" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/lv624/ground/colony/telecomm/sw_lz2) +"xNA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) +"xNB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "xNK" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) +"xNQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"xOc" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"xOd" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"xOh" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"xOr" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"xPi" = ( +/obj/item/stack/rods, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "xPk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/south_medbay_road) @@ -23750,35 +20805,58 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xQy" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "xQI" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"xQW" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"xRd" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "xRe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"xRh" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "xRo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"xRI" = ( +/obj/structure/device/broken_piano, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "xSk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"xSu" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xSA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -23792,6 +20870,12 @@ "xTT" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle) +"xUh" = ( +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"xUH" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/river/east_river) "xVb" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/east_barrens) @@ -23799,28 +20883,51 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xVo" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) "xVN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/south_central_jungle) +"xVT" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "xWy" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"xWz" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"xXz" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/item/device/assembly/voice, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xXB" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"xXG" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) "xXZ" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) +"xYh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "xYj" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -23831,11 +20938,22 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"xZB" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "xZE" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"xZH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"yaA" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "ybu" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, @@ -23846,35 +20964,65 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"ybQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) +"ybU" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/main_hall) +"ybW" = ( +/obj/structure/prop/mech/armor_booster, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"ybX" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) +"ycR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "ydp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"ydq" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "ydz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"ydO" = ( +/obj/structure/largecrate, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"yea" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + light_on = 1; + light_range = 1; + light_system = 1; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_west_caves) "yfe" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"yfH" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "yga" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_east_jungle) +"yge" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "ygn" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -23883,37 +21031,17 @@ /obj/structure/surface/rack, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"ygT" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "yhd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"yhH" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"yhT" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/caves/west_caves) "yhY" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"yiw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Corporation Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "yiE" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/lv624/xeno_tunnel, @@ -23927,6 +21055,9 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"yjw" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "yjN" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ @@ -23934,6 +21065,16 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"yke" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "ykM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/pointybush, @@ -23946,6 +21087,19 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) +"ylR" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) (1,1,1) = {" aac @@ -24568,14 +21722,14 @@ gbz nsk aZb aqS -hJn +qrQ atC npQ atC aAt aro aHE -aIn +aro asw asw asw @@ -24795,13 +21949,13 @@ nsk nsk nsk aun -aqS -suv -atZ +ase +cPZ +atC vVD -ayT -aro -aro +wdk +atu +asx aro asw asw @@ -25022,20 +22176,20 @@ aYX alC alC auc -amK -arn -asK +aZb +aAl +ase pbd avf -ayT -aro -aBk -aro -aIo +rWP +aAl +ase +atu +asx asw asw asw -aro +arP awb awe awe @@ -25046,7 +22200,7 @@ aro aro aIq aro -aIX +awz vJs azg aro @@ -25071,7 +22225,7 @@ tMh aKb aVS aVS -bzs +xUh aVS aXy aKf @@ -25190,7 +22344,7 @@ mdQ mdQ gwP gwP -yhT +fsn mdQ mdQ mdQ @@ -25250,18 +22404,18 @@ aYS aud aud auP -aqS -rvL -asc -aro -aro -aro -asw -aro -aro -aro -aro -aro +aAl +aAl +aAl +aAl +aAl +aAl +avf +aAl +aAl +ase +atu +asx aro aro ata @@ -25478,19 +22632,19 @@ arV aud aud auP -aqS +aAl avf -aro -awb -ayd -azg -aro -aro -aIm -aro -aro -arP -asc +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +ase +asx aro aro aro @@ -25526,11 +22680,11 @@ wEQ aKb aKb lyz -aWl -qBW -aWO -aWO -aWl +mgO +uVs +sEy +sEy +mgO aVS aLi aVK @@ -25659,16 +22813,16 @@ mdQ ane afV afV -nBh -nBh -nBh +cBP +cBP +cBP afV -nBh -nBh -nBh -nBh -mkr -nBh +cBP +cBP +cBP +cBP +lOe +cBP afV afV afV @@ -25706,19 +22860,19 @@ aud amG bGb auP -asd +aAl avf -asX -awe -awe -ayl -aro -aro -aro -aIq -aCO -atu -aqq +aAl +aAl +aAl +aAl +aAl +aAl +aAl +rke +aAl +aAl +rZp atu atu atu @@ -25754,9 +22908,9 @@ aVK aKf aId aVS -aWm -aWO -aWO +wUl +sEy +sEy qBW aXQ aVS @@ -25876,30 +23030,30 @@ dmT grW xKL gwP -yhT +fsn tOS gwP -ptm +kUS gwP gwP gwP gwP gwP -esp -nBh -nBh -nBh -nBh -nBh -nBh -eVH -nBh -nBh -nBh -nBh -nBh -nBh -nBh +nmA +cBP +cBP +cBP +cBP +cBP +cBP +kBN +cBP +cBP +cBP +cBP +cBP +cBP +cBP afV ane ane @@ -25934,17 +23088,17 @@ aud aud asp auP -aqS -asc -asY -awe -awe -awV -aro -asw -aro -aCO -aEe +aAl +aAl +aAl +aAl +aAl +aAl +aAl +avf +avf +aAl +aAl aAl aAl aAl @@ -25982,11 +23136,11 @@ hqQ aLj aVT acr -aWn -aWO +cmo +sEy jGs qBW -aWO +sEy aVS aYm aXh @@ -26091,16 +23245,16 @@ mdQ mdQ mdQ gwP -ptm +kUS gwP -tnY +gRu tOS gwP wQK cQB dmT dmT -rmW +vpc ndk grW xKL @@ -26113,21 +23267,21 @@ tOS gwP gwP gwP -esp -nBh -nBh -cCe -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh +nmA +cBP +cBP +iEb +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP afV ahF ahF @@ -26139,7 +23293,7 @@ amy ane ane ane -krs +sqS ahF ane ane @@ -26162,16 +23316,16 @@ aud aud aud auP -aqS -bbu -asZ -awz -ayl -aro -atA -aro -asg -axV +aAl +aAl +aAl +aAl +aAl +aAl +aAl +avf +aAl +aAl aAl aAl aAl @@ -26210,10 +23364,10 @@ aKf aLj exf acr -aWo +lMH aWP -aWO -aWO +sEy +sEy qBW axR xdO @@ -26341,25 +23495,25 @@ gwP gwP gwP tOS -esp -nBh -nBh -eVH -nBh -cCe -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh +nmA +cBP +cBP +kBN +cBP +iEb +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP afV ahF ahF -aYI +lne ahF ahF ahF @@ -26390,16 +23544,16 @@ asF aud fQL aBn -asd -aro -asX -awe -ayA -ayd -azg -aro -aCO -aEe +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl +aAl aAl aAl ayh @@ -26438,10 +23592,10 @@ aVK aPf auy aVS -aWl -aWO -aWO -aWO +mgO +sEy +tvY +sEy qBW aVS aYo @@ -26565,25 +23719,25 @@ gwP mdQ gwP gwP -yhT +fsn gwP gwP gwP -esp -nBh -cCe -nBh -cCe -nBh +nmA +cBP +iEb +cBP +iEb +cBP afV -nBh -nBh -eVH -nBh -nBh -nBh -eVH -nBh +cBP +cBP +kBN +cBP +cBP +cBP +kBN +cBP afV ahF ahF @@ -26618,15 +23772,15 @@ aud aud oym xuK -ase -asx -ata -awV -asw -ata -awV -aro -axV +aAl +aAl +aAl +avf +avf +aAl +aAl +aAl +aAl kQY knd knd @@ -26666,11 +23820,11 @@ gds aKb aKb aVS -aWp -aWO +cFc +sEy qBW -aXA -aWl +kpD +mgO lyz aYp aYv @@ -26799,19 +23953,19 @@ gwP ane afV afV -nBh -nBh -nBh +cBP +cBP +cBP afV -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh -nBh +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP +cBP afV ahF ahF @@ -26824,7 +23978,7 @@ ahF ahF ahF ahF -cCP +bMR ahF ane ane @@ -26846,15 +24000,15 @@ arU aud atJ aYR -akZ -aqS -arP -aro -aro -aro -asc -aCO -aEe +axw +aAl +aAl +aAl +avf +avf +aAl +aAl +aAl oek jga jga @@ -26896,9 +24050,9 @@ aVw aVS axR qBW -aWO -aWO -aXR +sEy +sEy +ccN lyz aLw aXh @@ -27031,15 +24185,15 @@ afV afV afV afV -nBh -eVH -nBh -nBh -nBh -nBh -nBh -nBh -nBh +cBP +kBN +cBP +cBP +cBP +cBP +cBP +cBP +cBP afV ahF ahH @@ -27075,14 +24229,14 @@ xJA xJA bGb dmf -ase -atu -atu -asx -aro -bbC -axV -ayh +aAl +aAl +aAl +aAl +aAl +jCn +aAl +kQY ayV jga azs @@ -27123,8 +24277,8 @@ aXh aKf aVS aXS -aWp -aWl +cFc +mgO aVS aXS aVS @@ -27228,7 +24382,7 @@ mdQ mdQ mdQ mdQ -ofg +tIw gwP gwP gwP @@ -27243,7 +24397,7 @@ mdQ gwP gwP gwP -ptm +kUS gwP gwP mdQ @@ -27262,8 +24416,8 @@ afV afV afV afV -hRy -aYI +nxv +lne ahF afV afV @@ -27306,10 +24460,10 @@ bBu knd knd axw -ase -atu -atu -aEe +aAl +aAl +aAl +aAl oek jga jga @@ -27456,7 +24610,7 @@ gwP mdQ mdQ gwP -ptm +kUS gwP gwP gwP @@ -27464,7 +24618,7 @@ wQK dmT dmT nRA -htV +jAb onU mdQ uRe @@ -27488,7 +24642,7 @@ ahF ahF ahF ahF -aYI +lne ahF ahF ahF @@ -27499,7 +24653,7 @@ ahF ahF ahF ahF -krs +sqS ahF ane ane @@ -27683,10 +24837,10 @@ gwP gwP mdQ mdQ -lav +epo gwP gwP -ofg +tIw gwP hjo gvm @@ -27722,7 +24876,7 @@ ahF ahF ahF ahF -fDT +eOZ ahF ahF ahF @@ -27948,7 +25102,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahF ahH @@ -27956,14 +25110,14 @@ ahF ahF ahF ahF -cCP +bMR ahF ane -fDT +eOZ ahF ahF ahF -aYI +lne ahF ahF ane @@ -28139,7 +25293,7 @@ gwP gwP gwP aca -ptm +kUS gwP gwP gwP @@ -28152,8 +25306,8 @@ qhl qhl wHh gwP -ptm -yhT +kUS +fsn gwP mdQ mdQ @@ -28401,7 +25555,7 @@ ahF xYD hmq lYt -chi +yea fmW rHV nys @@ -28419,9 +25573,9 @@ ane ahF ahF ahF -hRy -hRy -fDT +nxv +nxv +eOZ afV ane ane @@ -28439,8 +25593,8 @@ aud aud asF auP -aqR -arE +aAl +aAl npf sTB sTB @@ -28637,7 +25791,7 @@ nys ahF ahF ahF -aYI +lne ahF ahH ahF @@ -28667,13 +25821,13 @@ aud aud bGb auP -aqS -uSw -asa -asa -asa -asa -arE +aAl +aAl +aAl +aAl +aAl +aAl +aAl awC sTB sTB @@ -28854,7 +26008,7 @@ ane ane ahF wAF -aIE +lrx fmW uWJ uWJ @@ -28895,13 +26049,13 @@ aud asp aud auP -aqS -arP -asc -asg -aro -atA -axV +aAl +jWP +aAl +aAl +aAl +aAl +aAl aiS aAl aAl @@ -28983,7 +26137,7 @@ tgL abN abN lTv -pLv +lng sBY amk amk @@ -29020,7 +26174,7 @@ sBY onU onU onU -lKl +wVb tRM uRe gwP @@ -29094,7 +26248,7 @@ rHV vXP nys ahF -aYI +lne ahF ahF ahF @@ -29123,16 +26277,16 @@ aud aud aud auP -aqS +aAl aFm aFm auO aFm aFm aAl -aqR -asa -aja +aAl +aAl +jkw asa asa asa @@ -29217,7 +26371,7 @@ sBY sBY amk amk -gnt +szL qVN sBY qVh @@ -29351,16 +26505,16 @@ aud aud amG auP -aqS +aAl aFm -aue +upP auf aXC aFm aAl -ayN -asx -ayT +aqi +aAl +qaG aAp aAp baN @@ -29381,9 +26535,9 @@ aAp sqw cIL cIL -gby -aIb -lKe +xHo +gZt +ybX aKd cIL sqw @@ -29495,7 +26649,7 @@ jGU hhs hhs hhs -htV +jAb dOA fRU grW @@ -29535,7 +26689,7 @@ ane ane ane ahF -aYI +lne ahF ahF doe @@ -29548,7 +26702,7 @@ ikA fmW fmW wty -chi +yea ane ane ane @@ -29561,7 +26715,7 @@ ane ahF ahF ahH -cCP +bMR ahF ane ane @@ -29579,15 +26733,15 @@ aud aud aud asR -aqS +aAl aFm auf auf -wgs +dkn aFm aAl omu -aqS +aAl aAp aAp aAp @@ -29781,8 +26935,8 @@ ane ane afV afV -hRy -krs +nxv +sqS afV afV ane @@ -29807,7 +26961,7 @@ amG aud aul aBn -aqS +aAl aFQ aug auf @@ -29815,7 +26969,7 @@ avo aFQ xTM aAl -aDv +aAl aAp aAp nmO @@ -29837,9 +26991,9 @@ cIL aAp tZD vxa -eiH -yhH -jQV +pya +fyx +olE vxa tZD aAp @@ -29995,12 +27149,12 @@ ane ane ane ahF -fDT +eOZ ahF wAF fmW fmW -snc +edU fmW uWJ uWJ @@ -30009,7 +27163,7 @@ ane ane afV ahF -aYI +lne ahF ahF afV @@ -30035,7 +27189,7 @@ aud bGb auP aqi -ase +aAl aFm aZn axp @@ -30043,7 +27197,7 @@ auf aFm aAl wXg -aDv +aAl aAp nmO aXX @@ -30084,7 +27238,7 @@ aXh aXh aXh vxU -ryY +vce nLk ddS jHT @@ -30122,7 +27276,7 @@ sBY sBY sBY sBY -pLv +lng sBY sBY hKP @@ -30224,7 +27378,7 @@ afV afV afV ahF -cCP +bMR wAF fmW fmW @@ -30266,15 +27420,15 @@ aAl aAl aFm aIH -auR +eep auf aFm aAl aAl -aDv +aAl aAp aXX -aRG +jUs aJF aJF aJF @@ -30288,7 +27442,7 @@ aJF aJF aJF aJF -aRG +jUs aJF aJF aJF @@ -30345,7 +27499,7 @@ abN abN vGy sBY -whk +xHO sBY amk amk @@ -30379,7 +27533,7 @@ dhD vGy sBY sBY -gnt +szL sBY amk amk @@ -30448,7 +27602,7 @@ ahF ahF ahF ahF -cCP +bMR ahF afJ xYD @@ -30468,7 +27622,7 @@ ahF ahF ahF ahF -cCP +bMR ahF ahF ahF @@ -30498,38 +27652,38 @@ aFQ aFm aFm aAl -qKC -pKm +xNk +mfl aAp nmO aZP -aOB -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -uzH -aDV -aRG +adK +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +gBC +def +jUs tZD aKb aXh @@ -30670,7 +27824,7 @@ acp ane ane ahF -fDT +eOZ ahF ahF ahH @@ -30724,14 +27878,14 @@ oTJ uiW sqs oTJ -qKC -kWX -hdh -oKP +xNk +mfl +fvK +pnw aAp nmO aZP -aOB +adK aRg aCh kWJ @@ -30756,7 +27910,7 @@ qNQ aCh aRg aRg -wLz +wgg tZD tZD aPf @@ -30908,7 +28062,7 @@ gTj nys afV wAF -tQU +beo uWJ uWJ ane @@ -30925,7 +28079,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahF ahF @@ -30952,17 +28106,17 @@ azB sOC oTJ oTJ -mBL -hdh -hdh -hdh +wjy +fvK +fvK +fvK aAp aXX aZP -aOB +adK oOB aRg -aRg +aCi aRg aRg aRg @@ -30980,11 +28134,11 @@ aRg aRg aRg aRg -aRg +aCi aRg odw aRg -wLz +wgg tZD aAp aXj @@ -31097,9 +28251,9 @@ mdQ mdQ mdQ acp -acu -acu -acu +tVv +tVv +tVv acp acp gwP @@ -31180,19 +28334,18 @@ jRJ oTJ ukh njl -vVf -fqM +obB +rvM oXI aAp fuy aXX aZP -aOB +adK aTv aRg aRg aRg -aCi aRg aRg aRg @@ -31207,12 +28360,13 @@ aRg aRg aRg aRg -aCi +aRg +aRg aKO aRg aEw aRg -wLz +wgg tZD aAp rTG @@ -31324,11 +28478,11 @@ mdQ mdQ mdQ acp -acu -acu -acu -acy -acu +tVv +tVv +tVv +wGr +tVv acp gwP gwP @@ -31359,10 +28513,10 @@ vMV lUQ bJQ uWJ -nQH +oFm fmW lWl -krs +sqS afV ane ane @@ -31376,7 +28530,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahV ahF @@ -31410,12 +28564,12 @@ tka lCG cDQ oTJ -nuW +aAp aAp cIL nmO aZP -aOB +adK kvE aRg aRg @@ -31440,7 +28594,7 @@ aRg aRg byK aRg -wLz +wgg tZD tZD nmO @@ -31482,7 +28636,7 @@ abN abN cMG waw -pLv +lng abM abM abM @@ -31552,12 +28706,12 @@ mdQ mdQ mdQ acp -acu -acu -ade -acu -acy -acu +tVv +tVv +xkx +tVv +wGr +tVv gwP gwP gwP @@ -31600,7 +28754,7 @@ afV ahF ahF ahF -fDT +eOZ ahF ahH ahF @@ -31610,7 +28764,7 @@ ahF ahF ahF ahF -aYI +lne ahF ane ane @@ -31643,7 +28797,7 @@ aAp aAp nmO aZP -aOB +adK aTt aRg aRg @@ -31668,25 +28822,25 @@ aRg aRg aZT aRg -wLz -cZs +wgg +jyo rJS -cgC +wSp aVK vxU aXh aTf aTf aTf -aUR +pCn aUQ aVX aUQ aWT aUQ -aZL -aUQ +cAu aUQ +oUR aTf aTf aTf @@ -31780,11 +28934,11 @@ mdQ mdQ mdQ acp -acu -acy -acu -acu -acu +tVv +wGr +tVv +tVv +tVv acp gwP gwP @@ -31818,10 +28972,10 @@ uWJ uWJ dOb lWl -aYI +lne ahF ahF -krs +sqS ahF ahF ahF @@ -31871,7 +29025,7 @@ aAp aAp aXX aZP -aOB +adK oOB aRg aRg @@ -31896,10 +29050,10 @@ aRg aRg odw aRg -wLz -mRh +wgg +uGB bOy -tEn +dhr aKf aVK aXh @@ -31908,7 +29062,7 @@ aTf aUj aUQ aUQ -ygp +cAu aUQ ygp aUQ @@ -32009,9 +29163,9 @@ mdQ mdQ xZE acp -acu -acu -acu +tVv +tVv +tVv acp xZE gwP @@ -32038,7 +29192,7 @@ acp ane ane ane -krs +sqS ahF wAF fmW @@ -32051,7 +29205,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahF ahF @@ -32094,12 +29248,12 @@ oTJ oTJ oTJ oTJ -nuW +aAp aAp nmO aXX aZP -aOB +adK aTv aRg aRg @@ -32111,7 +29265,7 @@ aRg aKO aRg aRg -aBo +oho aRg aRg aRg @@ -32124,10 +29278,10 @@ aRg aRg aEw aRg -wLz -gef +wgg +gEL mxW -oOf +vra aVK aXh aXh @@ -32283,7 +29437,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahF ahF @@ -32327,7 +29481,7 @@ aAp cIL nmO aZP -aOB +adK kvE aRg aRg @@ -32352,10 +29506,10 @@ aRg aRg byK aRg -wLz -qDg +wgg +dkB lYI -oOV +ukK haN aXh wXy @@ -32365,11 +29519,11 @@ aUj aUQ aUQ aVZ -aUQ -aWV +azH +ygp aUQ aXE -aUQ +enE aUQ aYu aTf @@ -32506,7 +29660,7 @@ fmW qSG ahF ahF -cCP +bMR ahF ahH ahF @@ -32555,7 +29709,7 @@ aAp aAp nmO aZP -aOB +adK aTt aRg aRg @@ -32580,24 +29734,24 @@ aRg aRg aZT aRg -wLz -lUb +wgg +ntp tZD -xrI +fRa aVK aXh aXh aTf aTf aTf -thG -aUQ +pDW +cAu aWa +aMu +iTv aUQ -aWW -aUQ -aXF -aUQ +jzE +xuy aUQ aTf aTf @@ -32721,12 +29875,12 @@ acp ane ane ahF -cCP +bMR ahF ahF ahF wYz -chi +yea uWJ ane uWJ @@ -32783,7 +29937,7 @@ aAp nmO aXX aZP -aOB +adK oOB aRg aRg @@ -32808,7 +29962,7 @@ aRg aRg odw aRg -wLz +wgg tZD tZD jsd @@ -32819,13 +29973,13 @@ vxU aTf aTf aUS -aUQ +qJH ygp -aUQ -aWW -aUQ -aXG -aUQ +enE +bOb +qhn +rha +cAu aYf aTf aTf @@ -32850,7 +30004,7 @@ abN pSe kzn sBY -dBS +jRZ stt abM abM @@ -33011,12 +30165,12 @@ aAp aXX aXX aZP -aOB +adK aTv aRg aRg aRg -aCi +aRg aRg aRg aRg @@ -33031,12 +30185,12 @@ aRg aRg aRg aRg -aCi +aRg aRg aRg aEw aRg -wLz +wgg tZD aAp rTG @@ -33047,13 +30201,13 @@ aXh aTf aTf aTf +tAY aUQ +qhn +enE +qhI aUQ -aUQ -aUQ -eCY -aUQ -aUQ +rSh aTf aTf aTf @@ -33239,10 +30393,10 @@ aAp nmO aXX aZP -aOB +adK kvE aRg -aRg +aCi aRg aRg aRg @@ -33260,11 +30414,11 @@ aRg aRg aRg aRg -aRg +aCi aRg byK aRg -wLz +wgg tZD aAp aAp @@ -33277,11 +30431,11 @@ aTf aTf aTf aTf -qhn -msU -qhn -msU -eCY +tJQ +qJH +vIT +rSh +uSL aTf aTf aXh @@ -33413,7 +30567,7 @@ ahF ahF doe pIl -fcQ +ijF uWJ ane ane @@ -33424,7 +30578,7 @@ ahF ahF ahF ahF -krs +sqS ahF ahF ahF @@ -33467,7 +30621,7 @@ cIL cIL nmO aZP -aOB +adK aRg aAJ aGX @@ -33492,7 +30646,7 @@ aDO aAJ aRg aRg -wLz +wgg tZD aAp aAp @@ -33504,13 +30658,13 @@ aXh efp aTf aTf -laM -qhn -qhn -eCY -qhn -qhn -msU +gFn +jAc +uZf +dAI +cQv +dIq +era vhz aXh aXh @@ -33633,8 +30787,8 @@ mdQ ane afV ahF -aYI -krs +lne +sqS ahF ahF ahF @@ -33649,10 +30803,10 @@ uWJ fmW lWl ahF -hRy -hRy -hRy -hRy +nxv +nxv +nxv +nxv ahF ahF ahF @@ -33695,32 +30849,32 @@ aAp nmO aXX aZP -pRh -niV -niV -niV -niV -niV -niV -niV -niV -niV -niV -niV -hdA -niV -niV -niV -niV -niV -niV -niV -niV -niV -niV -niV -niV -itE +ahf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +tvh +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +mnf +bQf tZD tZD aAp @@ -33732,13 +30886,13 @@ bSm efp efp aTf -aTf -msU -dpl -dpl -msU -xTT -xTT +uSl +dIa +cBR +nJU +qJH +gTZ +bTc pig qGH aLj @@ -33866,14 +31020,14 @@ ahF ahF ahF ahF -fDT +eOZ ahF ahF pIl fmW uWJ uWJ -wHE +noK fmW lWl ahF @@ -33922,7 +31076,7 @@ aAp aAp cIL nmO -aRG +jUs aDv aDv aDv @@ -33932,7 +31086,7 @@ aJO aJO aJO aJO -aRG +jUs eCF aDv aDv @@ -33941,15 +31095,15 @@ aDv aDv aDv aDv -aOB -wHp -wLz +adK +fPk +wgg aDv aDv aDv aDv aDv -aRG +jUs tZD aAp aVK @@ -33961,12 +31115,12 @@ buw efp efp uSq +pcB qIO qIO -qIO -qIO +hbu nAD -qtj +cgt bRk knp iIU @@ -34169,9 +31323,9 @@ aDv aDv aDv aDv -aOB -wHp -wLz +adK +fPk +wgg aDv tZD tZD @@ -34185,7 +31339,7 @@ aXh wTC kjp kjp -ply +qJM efp efp uSq @@ -34193,7 +31347,7 @@ njC qIO qIO qIO -qtj +iqU qtj hZX rox @@ -34288,7 +31442,7 @@ mdQ mdQ mdQ onU -lKl +wVb dmT dmT uRe @@ -34320,9 +31474,9 @@ ahF ane ane ane -hRy -hRy -hRy +nxv +nxv +nxv ahF ahF doe @@ -34397,9 +31551,9 @@ aGh aJO aJO aEs -aOB -wHp -wLz +adK +fPk +wgg tZD tZD aAp @@ -34417,7 +31571,7 @@ efp efp gDu uSq -hDX +uuy qIO qIO aXH @@ -34511,7 +31665,7 @@ mdQ mdQ onU onU -ieN +gAY kWV xZE xyH @@ -34548,7 +31702,7 @@ ahF ahF ane ane -krs +sqS afV afV afV @@ -34612,7 +31766,7 @@ aDv aDv aRx aXX -kxo +aXX aXX aXX aXX @@ -34625,9 +31779,9 @@ aRx anP aXX aZP -aOB -wHp -ncV +adK +fPk +qIj xgE xgE xgE @@ -34645,9 +31799,9 @@ efp efp efp uSq +cXY qIO -qIO -qIO +hbu ntL kxI kxI @@ -34776,20 +31930,20 @@ ahF ahF ane ane -cCP +bMR afV ahF ahF ahF ahF ane -aYI +lne ahF ahF ane ahF -aYI -fDT +lne +eOZ ahF ane ane @@ -34853,14 +32007,14 @@ aRx vcY svh xgE -mgs -mgs -mgs +gHR +gHR +gHR xgE -rNq -kWH -gAS -rNq +cpa +ssU +tJd +cpa xgE xgE xgE @@ -35063,9 +32217,9 @@ nUy nUy nUy nUy -ayW -azF -aAh +fIm +cWp +cGC avH ado ado @@ -35081,18 +32235,18 @@ aRx twg aXX xgE -kWH -kWH -kWH -lGo -uWr -mqw -kWH -kWH +ssU +ssU +ssU +lYV +hNr +sCG +ssU +ssU xgE -oyT -nQJ -bzD +euT +jOv +qBp xgE efp gDu @@ -35287,17 +32441,17 @@ hIq psh nuW ado -axe -aCZ -ayg +uEY +mTx +vdT avH -kJt -axi -axj +mKu +bkW +uGb avH -bbA -aBR -aCk +vtL +lIo +sph ado aXX aXX @@ -35309,18 +32463,18 @@ aRx aXX aXX xgE -kWH -kWH -kWH -kWH -kWH -kWH -kWH -kWH -vdy -fau -fau -fau +ssU +ssU +ssU +ssU +ssU +ssU +ssU +ssU +tuV +xZB +xZB +xZB xgE efp efp @@ -35515,17 +32669,17 @@ oAD psh psh ado -axf -axA -axe -ayF -aLt -axi -axj -ayF -axe -aLs -aCk +fov +oqG +uEY +oCL +mXg +bkW +uGb +oCL +uEY +gPC +sph ado aXX aXX @@ -35537,20 +32691,20 @@ aRx aXX svh xgE -kWH -bUU -kWH -kWH -bUU -oUK -kWH -mRm +ssU +sIS +ssU +ssU +sIS +cdA +ssU +uOG xgE -rAo -fkJ -fau +eDV +smI +xZB xgE -efp +juW efp efp efp @@ -35743,17 +32897,17 @@ fio psh psh ado -axg -axe -ayj +mqp +uEY +dFK avH -ayY -axi -aAi +vxQ +bkW +hVp avH -aBq -axe -aCl +uzu +uEY +lTP ado aXX aXX @@ -35771,15 +32925,15 @@ xgE xgE xgE xgE -kAj +spq xgE xgE xgE xgE -sFY +rQz xgE xgE -eyb +bgL bgL bgL bgL @@ -35972,15 +33126,15 @@ psh avH avH avH -axB +vZY avH avH -ayZ -axi -aAj +bdS +bkW +hsf avH avH -axB +vZY avH avH avH @@ -35992,20 +33146,20 @@ aDv aDv aDv xgE -vvE -iLU -qTM -nIs +oqv +cOT +sWG +iMa xgE -epG -nrb -wKv -kdR -mBN +uYW +iDD +dIk +rxh +wNl xgE -mwB -hhv -cmP +vpY +vBI +qOW xgE qIO qIO @@ -36117,7 +33271,7 @@ mdQ mdQ onU onU -htV +jAb dmT dmT dmT @@ -36198,19 +33352,19 @@ nuW psh cGb ado -awD -axh -axC -ayk -axj -axj -axi -axj -axj -axj -ayG -axj -aCK +gvE +cXB +dpB +wNk +uGb +uGb +bkW +uGb +uGb +uGb +ghe +uGb +rxF ado aDv aEu @@ -36219,22 +33373,22 @@ aDv aDv nwI aDv -hrD -hBt -gFg -tWw -gnx -yiw -gnx -gnx -xCF -sbt -sne -yiw -gnx -tWw -eZD -yiw +hCc +wDV +ruE +jfy +dHJ +blt +dHJ +dHJ +uyb +cJf +luR +blt +dHJ +jfy +veW +blt qIO qIO qIO @@ -36409,7 +33563,7 @@ auP asH oTJ teS -pNa +wTB eny eny fio @@ -36426,19 +33580,19 @@ psh psh psh awh -awD -axi -axi -aym -axi -aza -azG -aAk -axi -aBr -axi -axi -aCL +gvE +bkW +bkW +mDt +bkW +nqN +gWn +rpr +bkW +cOt +bkW +bkW +dlF awh aDv aDv @@ -36447,22 +33601,22 @@ aDv aDv aDv aDv -gnx -gnx -tWw -gnx -gnx -gnx -jRC -tWw -gnx -fHi -gnx -gnx -gnx -gnx -gcZ -gnx +dHJ +dHJ +jfy +dHJ +dHJ +dHJ +kWL +jfy +dHJ +lVO +dHJ +dHJ +dHJ +dHJ +uus +dHJ qIO qIO njC @@ -36607,9 +33761,9 @@ xwr xwr ahx ahx -ahy -ahy -ahy +cGe +cGe +cGe ahx ahx xwr @@ -36654,19 +33808,19 @@ psh psh psh ado -awE -axj -axj -axj -ayG -azb -axi -axj -axj -aBs -axj -aCm -aCL +noq +uGb +uGb +uGb +ghe +inN +bkW +uGb +uGb +veV +uGb +wtE +dlF ado aDv aDv @@ -36676,20 +33830,20 @@ aDv aDv aDv dLn -cfT -rah -rah -sBg +iPC +oLG +oLG +pxM xgE -wWK -sIi -gnx -gnx -wOv +owr +sNt +dHJ +dHJ +rap xgE -pgD -rdS -pHA +fSQ +ocu +wug xgE qIO qIO @@ -36834,11 +33988,11 @@ xwr xwr xwr ahx -ahJ -ahW -ahL -ahL -ahJ +bOw +iTz +wTS +wTS +bOw ahx xwr xwr @@ -36884,15 +34038,15 @@ psh avH avH avH -axB +vZY avH avH -azc -axi -axC +rBy +bkW +dpB avH avH -aBS +lus avH nEd nEd @@ -36911,15 +34065,15 @@ xgE xgE xgE xgE -gnx -fMl +dHJ +llc xgE xgE xgE xgE xgE xgE -cvk +pql yjh qIO qIO @@ -37002,9 +34156,9 @@ jqr sxl xZE acp -acu -acu -acu +tVv +tVv +tVv acp xZE xZE @@ -37035,7 +34189,7 @@ abS abS iIB iIB -rmt +aUW rTT tde vtk @@ -37061,13 +34215,13 @@ xwr xwr xwr xwr -ahy -ahK -ahL -ahL -ahL -ahL -ahy +cGe +nwE +wTS +wTS +wTS +wTS +cGe xwr xwr xwr @@ -37111,17 +34265,17 @@ psh psh psh ado -axk -axe -ayn +ybW +uEY +uuD avH -azd -axi -aAm +sRv +bkW +yge avH -aBt -axe -aCn +rPa +uEY +cRU ado cPV bbH @@ -37135,18 +34289,18 @@ laY xEt xgE xgE -iSQ -hhv -mVn +vIi +vBI +nSM paJ -gnx -tWw -fsu +dHJ +jfy +csn xgE sxY sxY xgE -cPV +oVz cPV uSq qIO @@ -37229,11 +34383,11 @@ mdQ fLh uRe acp -acu -acu -acy -acu -acu +tVv +tVv +wGr +tVv +tVv acp xZE gwP @@ -37289,13 +34443,13 @@ xwr xwr xwr xwr -ahz -ahL -ahL -aie -aiu -ahL -ahz +cbj +wTS +wTS +uXi +kOT +wTS +cbj xwr xwr xwr @@ -37335,21 +34489,21 @@ nuW psh psh psh -psh +ipq psh tLQ ado -axe -aLs -axe -ayF -axj -axi -axj -ayF -axe -axA -aCk +uEY +gPC +uEY +oCL +uGb +bkW +uGb +oCL +uEY +oqG +sph ado ifk cPV @@ -37362,15 +34516,15 @@ iAH xEt xgE xgE -whr -nrb -qeb -tLS -jzm -gnx -veo -gnx -wSY +pfs +iDD +nfm +hBZ +vPU +dHJ +qyc +dHJ +mdz puo lFv xgE @@ -37456,12 +34610,12 @@ mdQ onU gRk uRe -acu -acu -acu -abG -acu -acy +tVv +tVv +tVv +kTX +tVv +wGr acp xZE gwP @@ -37517,13 +34671,13 @@ xwr xwr xwr xwr -ahy -ahL -ahL -ahL -ahL -ahL -ahy +cGe +wTS +wTS +wTS +wTS +wTS +cGe xwr lTZ xwr @@ -37567,17 +34721,17 @@ psh psh psh ado -axe -axf -sNX +uEY +fov +tYI avH -aze -azI -kSK +jRi +vfW +qXq avH -aHc -axf -aCk +ryM +fov +sph ado cPV aGl @@ -37589,15 +34743,15 @@ laY cPV xEt xgE -lSt -lNe -nUI -tWw -uUi +wcC +nFw +xlz +jfy +wyu paJ -gnx -tWw -xeq +dHJ +jfy +dOq xgE tNV pnl @@ -37685,11 +34839,11 @@ onU dmT uRe acp -acu -acy -acu -acy -acu +tVv +wGr +tVv +wGr +tVv acp xZE gwP @@ -37746,11 +34900,11 @@ xwr xwr xwr ahx -ahJ -ahL -aif -ahL -ahJ +bOw +wTS +lOy +wTS +bOw ahx xwr xwr @@ -37799,9 +34953,9 @@ ado ado ado avH -azf -azJ -azJ +sGU +iCW +iCW avH ado ado @@ -37817,14 +34971,14 @@ wMk qGK xEt xgE -dSx -uGM -gnx -joz -cBG +lIj +eda +dHJ +ikg +pTs xgE -gnx -fMl +dHJ +llc xgE xgE xgE @@ -37914,9 +35068,9 @@ dmT grW xZE acp -acu -acu -acu +tVv +tVv +tVv acp xZE xZE @@ -37975,9 +35129,9 @@ xwr jTP ahx ahx -ahy -ahy -ahy +cGe +cGe +cGe ahx ahx xwr @@ -38047,15 +35201,15 @@ xEt xgE xgE dhw -pQn +tDv xgE xgE xgE -pox -tWw -anJ -cen -sxN +tXv +jfy +psf +jmI +gkj oYx wMk wMk @@ -38197,7 +35351,7 @@ afJ afJ xwr xwr -rba +vgh xwr xwr xwr @@ -38273,17 +35427,17 @@ xEt bCH aDP xgE -xxz -mJB -gnx -nxu -xbu +wFj +csr +dHJ +nGJ +rwA mGG -gnx -tES -vno -gnx -xwQ +dHJ +fho +sbw +dHJ +diE ilf lsq wMk @@ -38366,7 +35520,7 @@ acf mdQ onU mdQ -htV +jAb dmT grW xKL @@ -38501,17 +35655,17 @@ xEt bbU mfI xgE -wIw -cLD -ocG -rMR -vIY +pCR +igj +xHJ +qKH +kBt qTu -gnx -gnx -fzg -pyG -wtK +dHJ +dHJ +tng +xgI +lba wJA wMk wMk @@ -38520,8 +35674,8 @@ uSq qIO qIO qIO -qIO -qIO +ewe +ewe ntL kxI kxI @@ -38545,10 +35699,10 @@ abm abm abk ach -abU +mZx avm avm -dOC +eLh abk aaF aaF @@ -38730,15 +35884,15 @@ wMk laY xgE xgE -cZN -cOz -ybQ -gnx -bnz -tWw -gnx -pyG -dvX +vpE +cDs +qaH +dHJ +avO +jfy +dHJ +xgI +dUw nMJ rfH rIq @@ -38748,9 +35902,9 @@ uSq njC qIO qIO -qIO -qIO -ntL +ewe +vHt +hGN kxI jxG qZv @@ -38772,7 +35926,7 @@ aac abm abm abk -ack +vhH aqz avm avm @@ -38865,7 +36019,7 @@ tPH rTT pIB rTT -hpK +aeW rTT ohf onP @@ -38959,13 +36113,13 @@ mfI xEt xgE xgE -jYM -mMA -xfP +kkV +gBK +mWo paJ -xkU -dff -dwN +dVa +rsD +hxu nMJ nMJ bbp @@ -38976,11 +36130,11 @@ uSq qIO qIO qIO -qIO -qIO -ntL +ewe +hLu +kxI kxI -oAJ +fKG qZv tWK qZv @@ -39002,9 +36156,9 @@ abm abk acC avm -aYO +uly avm -nxe +bDJ abk aaF aaF @@ -39202,11 +36356,11 @@ bCH qGK aPt aPT -aUk +sSw aPT aPt -qIO -ntL +hLu +kxI kxI gzd eqs @@ -39228,9 +36382,9 @@ aac abm abm abk -acZ +uIJ avm -abU +mZx avm qxZ abk @@ -39284,7 +36438,7 @@ mdQ onU onU onU -sXg +oBc dmT tlk uRe @@ -39429,9 +36583,9 @@ aPT aPT aPT aPt -aTG -aQn -aQn +iOY +vCf +uEM aPt aPT aPT @@ -39458,7 +36612,7 @@ abm abk atv avm -aEJ +bsC avm avm avm @@ -39568,9 +36722,9 @@ xwr xwr jTP xwr -cxc -nrm -nrm +kJU +bPU +bPU xwr xwr xwr @@ -39579,16 +36733,16 @@ xwr xwr xwr xwr -amX -akA -akM -akT -aml -aml -alR -aml -amA -amR +oyq +iQX +eWU +ecM +ycR +ycR +izz +ycR +npS +otL nsk asr cfN @@ -39653,17 +36807,17 @@ bwR cPV bCH aPT -aQn -aON -aQn -aQn -aQn -aQn -aQn -aQn -aQn -aSg -aSg +kKu +lLt +vCf +cFm +cFm +vCf +vCf +cFm +vCf +eAh +vsA aPT ooM nuU @@ -39685,11 +36839,11 @@ abm abm abk aec -aYO +uly avm aqz avm -abU +mZx sdh aHT aaV @@ -39789,7 +36943,7 @@ xwr xwr xwr xwr -lzE +tXx xwr xwr xwr @@ -39807,7 +36961,7 @@ xwr xwr xwr xwr -anf +aPL hsc hsc hsc @@ -39816,7 +36970,7 @@ hsc hsc hsc hsc -amS +dvi asr cfN tyG @@ -39845,7 +36999,7 @@ psh psh asT atO -awj +qhx atO asT psh @@ -39881,17 +37035,17 @@ cPV cPV akq aPT -aRd -aQn -aQn -aQn -aTH -aUl -aQn -aQn -aQn -aQn -aWX +lAQ +vCf +vCf +vCf +myF +vCf +vCf +vCf +vCf +vCf +hwy aPT kxI kxI @@ -39916,7 +37070,7 @@ afU adQ avm avm -aYO +uly aqz sdh aHT @@ -40035,16 +37189,16 @@ jTP xwr xwr xwr -anE -akC -akC -akU -ali -alE -alS -akC -akC -amT +eZQ +tiQ +tiQ +vkr +dDW +rVE +fEQ +tiQ +tiQ +rWV hJW tyG tyG @@ -40072,9 +37226,9 @@ atO atO atO asT -avB -atp -aum +pRK +ceE +uaK asT atO atO @@ -40107,19 +37261,19 @@ byY fTf nhi cPV -cPV +oVz aPT -aRe -aSd -aSI +nlx +vCf +pLt aTg -aQn -aQn -aQn +tJa +vCf +vCf aTg -aWd -aSd -aWY +lxG +vCf +cFm aPT kxI kxI @@ -40139,13 +37293,13 @@ aaa aac abm abk -abn +eMO avm -abU +mZx avm uxq avm -aEJ +bsC sdh aHT aah @@ -40296,17 +37450,17 @@ psh oBi bnE atn -gEX -aum -azS +wnw +uaK +dik atU -avD -awk -auX +fCF +vpp +sCh atU -qwC -ayp -axF +btE +wZl +tLV asU psh cGb @@ -40334,20 +37488,20 @@ ylL byY mun oGs -lud +oGs aPt aPt -aRf -aQn +ebL +vCf aTg aTg -aTI -aQn -aVb +uuk +vCf +ntM aTg aTg -aQn -aWZ +fgT +vCf aPt aPt kxI @@ -40371,7 +37525,7 @@ abp avm avm avm -woK +tQa wTL avm avm @@ -40524,17 +37678,17 @@ psh psh psh atn -atQ -auo -aum -avq -aum -awl -awG -avq -axF -ayq -axF +dcu +evO +uaK +bBp +uaK +dvK +eWP +bBp +tLV +fDA +tLV asU psh psh @@ -40563,20 +37717,20 @@ byY byY byY byY -aPN -aQn -aQn -aQn -aSJ -aTh -aQn -aQn -aQn -aTh -aQn -aQn -aQn -aQn +bRo +haV +cFm +vCf +vCf +vCf +vCf +vCf +vCf +oQh +cFm +vCf +vCf +rjz aPT kxI lAX @@ -40596,12 +37750,12 @@ aac abm abk abA -aEJ +bsC avm aqz avm avm -abZ +sfJ avm obJ aah @@ -40689,7 +37843,7 @@ abS abS abS cdF -aYE +tQJ xwr xwr xwr @@ -40739,10 +37893,10 @@ tyG mUQ tyG anS -nSg -nSg -cdj -nSg +fCL +fCL +bAM +fCL anF psh psh @@ -40752,17 +37906,17 @@ psh tLQ psh atn -atR -aup -aII +ugH +iIf +tsd atU -aum -atp -aum +uaK +ceE +uaK atU -axG -axF -ayI +msy +tLV +cdr asU nVG psh @@ -40791,21 +37945,21 @@ byY byY byY byY -aPO -aQn -aQn -aQn -aQn -aQn -aQn +xNA +vCf +vCf +fvE +vCf +cFm +vCf aTg -qbF -aQn -aQn -aON -aQn -aQn -aPO +dvA +vCf +vCf +pLt +vCf +vCf +xNA kxI kxI kxI @@ -40826,7 +37980,7 @@ abk avm avm avm -abU +mZx atM avm avm @@ -40901,7 +38055,7 @@ dGQ wbg xdb rTT -mca +dMd rTT rTT onP @@ -40967,13 +38121,13 @@ anS anS anS anS -wLe -apw -eHm -wLe +kGB +jLA +xOc +kGB anF -nSg -nSg +fCL +fCL anF kSR ast @@ -40981,15 +38135,15 @@ ast asT asT atS -auu +rvc atU atU atU -awm +qdw atU atU atU -ayr +kBv atU asT asT @@ -41019,20 +38173,20 @@ byY byY byY byY -aPN -aQn -aQn -aQn -aQn -aTi -aQn -aQn -aQn -aTi -aQn -aQn -aQn -aQn +bYu +khB +opF +vCf +vCf +cFm +cFm +mls +wTW +wYe +wYe +iDa +lhk +xHk aPT kxI lIU @@ -41054,8 +38208,8 @@ abk avm avm aCG -aIy -bUs +jat +vgI moV bJz sdh @@ -41153,8 +38307,8 @@ xwr xwr jTP xwr -nrm -nrm +bPU +bPU xwr xwr xwr @@ -41192,34 +38346,34 @@ tyG tyG tyG anS -aor -oSJ +dNt +rsM anF anF -apx -koW -nYZ -bzv -txL -tIg -nSg +vWb +dko +oId +lzO +dsk +lpA +fCL opP udP udP asU -vev -vev -aum -auV +qnA +qnA +uaK +uEe atU -avE -atp -awr +hdj +ceE +ofo atU -axH -aum -ayJ -avB +oen +uaK +eTi +pRK asU byY byY @@ -41246,20 +38400,20 @@ kUr byY ylL byY -taK +sRj aPt aPt -aTI -aQn +vCf +vCf aTg aTg -aTI -aQn -aVb +cgx +eue +cSI aTg aTg -aTG -aXa +bDp +pTm aPt aPt kxI @@ -41280,10 +38434,10 @@ aac abm abk avm -abZ +sfJ aCG -aVx -uin +deC +bCj moV aEI sdh @@ -41386,8 +38540,8 @@ xwr xwr xwr xwr -nrm -nrm +bPU +bPU xwr xwr xwr @@ -41420,35 +38574,35 @@ tyG tyG tyG anS -iYo -aoE -pOW +oxn +kxM +rDr anF -iPR -pwq -pwq -apV -pwq -dId -nSg +fmU +hXF +hXF +hrS +hXF +jUr +fCL opP udP udP -asV -atp -atp -auv -atp -avr -atp -awn -awH -avr -atp -atp -ayK -atp -asV +wFl +ceE +ceE +mOg +ceE +bkc +ceE +omF +nYn +bkc +ceE +ceE +dVM +ceE +wFl byY byY byY @@ -41474,20 +38628,20 @@ uiN byY byY byY -fTf +pBz aPT -aRi -aQn -aQn -aSK +sWM +cFm +vCf +vCf aTg -aTJ -aQn -aQn +rDH +eSR +hTT aTg -aWe -aWx -aZc +cMN +hac +hac aPT kxI kxI @@ -41507,14 +38661,14 @@ aaa aac abm abk -abU +mZx aqz aCG -euW -ilO +kZT +jYs moV lRy -uIF +wGR aHT aah aah @@ -41612,7 +38766,7 @@ wVk wVk wVk wVk -jaa +nQK wVk wVk wVk @@ -41648,34 +38802,34 @@ tyG tyG anS anS -pgf -pwq -aoI -gXu -pwq -aoI -pwq -pwq -pwq -arf +bKh +hXF +wxs +bST +hXF +wxs +hXF +hXF +hXF +vAx anF anF udP udP asU -atq -atT -aum -auW +sNg +dgP +uaK +dzD atU -avF -atp -awI +bKQ +ceE +nSA atU -axI -aum -aum -azh +vqQ +uaK +uaK +gSC asU aAq byY @@ -41702,20 +38856,20 @@ uiN byY byY byY -fTf +pBz aPT -aSe -aQn -aQn -aQn -aQn -aQn -aZK -aQn -aQn -aQn -aQn -jtM +hay +okK +eue +vCf +vCf +oKX +kWg +hTT +hac +hac +hac +oRb aPT kxI kxI @@ -41737,9 +38891,9 @@ abm abk avm avm -abU +mZx avm -abZ +sfJ avm avm avm @@ -41875,33 +39029,33 @@ tyG tyG tyG anS -aoa -aoU -aoF -pwq -pwq -pwq -pwq -pwq -hbF -pwq -arg -iBD -nSg +opR +gjA +ptE +hXF +hXF +hXF +hXF +hXF +onW +hXF +oII +xMV +fCL udP udP asT asT atU -auu +rvc atU asT asT -awo +xck asT asT atU -ayr +kBv atU asT asT @@ -41930,20 +39084,20 @@ uiN byY byY byY -fTf +pBz aPT -aQn -aTk -aQn -aQn -aTj -aQn -aQn -aQn -aTH -aQn -aQn -aQn +ldb +sSH +kHo +vCf +vCf +vCf +vCf +hTT +bjx +hac +tZg +pkI aPT sBJ kxI @@ -41969,7 +39123,7 @@ aEI pfl avm avm -aEJ +bsC avm abk aah @@ -42077,7 +39231,7 @@ wVk wVk wvP wVk -jaa +nQK wVk csM wVk @@ -42103,34 +39257,34 @@ vqT tyG tyG anS -aob -pwq -pwq -fAz +rUP +hXF +hXF +rDi anF -mtP -pwq -cYi -aov -pwq -pwq -pwq -gXu +bTV +hXF +pIY +uNl +hXF +hXF +hXF +bST udP udP udP atn -vev -aum -auX +qnA +uaK +sCh asT -aum -atp -aum +uaK +ceE +uaK asT -xMj -aum -aFV +vjb +uaK +qMc asU aJr aJr @@ -42153,25 +39307,25 @@ aLv aJr iSg aJr -aJr +xzY aIO aMN -aNA +sbL aMN aIO aPt -aTI -aQn -aQn -aQn +nMv +ldb +eSR +vCf +vCf +vCf +vCf +hTT +hac +gwY +xIa aPt -aQn -aQn -aQn -aPt -aPT -aPT -aPN aPt tzK kxI @@ -42192,11 +39346,11 @@ aac abm abk rmB -abZ +sfJ avm aEI -wFR -woK +rYa +tQa avm sdh aHT @@ -42292,7 +39446,7 @@ wVk wVk wVk wVk -mSo +eNk wVk wVk afF @@ -42310,9 +39464,9 @@ wVk wVk wVk wVk -mSo -dIO -dIO +eNk +eDe +eDe wVk wVk ajq @@ -42331,34 +39485,34 @@ tyG tyG tyG anS -aox -pwq -pwq -eqP +tDB +hXF +hXF +gMz anF -apA -pwq -mph -aov -pwq -pwq -pwq -pwq +voU +hXF +bii +uNl +hXF +hXF +hXF +hXF udP asI udP atn -avG -auw -aum -avq -aum -awp -awK -avq -aum -ays -ayM +daS +dKK +uaK +bBp +uaK +cvc +xyJ +bBp +uaK +jzM +cnG asU wkE aJr @@ -42387,20 +39541,20 @@ aMO aKB aMP aIO -aSg -aQn -aQn -aQn -aQn -aPt -aPT -aUk -aPT -aPt -aTK -aTK -aXd -aXn +dMh +xex +hQk +ixw +vCf +vCf +vCf +vCf +jAm +hac +hac +xPi +tFc +kxI kxI tsa kxI @@ -42419,10 +39573,10 @@ aaa aac abm abk -abZ +sfJ avm aFr -abZ +sfJ avm avm avm @@ -42559,34 +39713,34 @@ tyG dvf tyG anS -qJq -eoM -aoI -pwq -gXu -pwq -pwq -miF -pwq -dCL -aou -nHP -nSg +xwX +krr +wxs +hXF +bST +hXF +hXF +ePM +hXF +xEq +gDF +lDi +fCL udP udP udP asU -odD -aum -auY +qkE +uaK +hzu asT -aAR -awq -atq +tdW +qMd +sNg asT -cPL -vev -ryJ +nNl +qnA +fQQ asU aJr jGW @@ -42615,20 +39769,20 @@ aMP aNB aNJ aIO +pUU aIL -aIL -aIO -aRe -aQn -aPT -aTK -aTK -aTK -aTK -aTK -aWy -aXe -aXn +tiF +ghE +nZS +pir +ifC +cFm +ugh +fky +hac +dqs +kOX +kxI kxI kxI kxI @@ -42654,7 +39808,7 @@ avm avm avm avm -uXW +uoh aHT aah aah @@ -42750,19 +39904,19 @@ wVk csM wVk afk -afu -afG -afW -afG -afG -ags -ags -agQ -afG -afG -afG -afG -ahM +eNW +uIn +mKL +uIn +uIn +uWF +uWF +oUH +uIn +uIn +uIn +uIn +jhY wVk wVk wVk @@ -42788,16 +39942,16 @@ tyG tyG anS anS -aov -pwq -pwq -pwq -pwq -pwq -pwq -pwq -pwq -dZH +uNl +hXF +hXF +hXF +hXF +hXF +hXF +hXF +hXF +eKt anF anF udP @@ -42808,9 +39962,9 @@ atO atO atO asT -aSR -awr -auX +dZt +ofo +sCh asT atO atO @@ -42847,16 +40001,16 @@ aNB aQo aJz aIO -aSg -aPT -aTK -aTK +vZa +aPt +ogL +tcC aSL +vun aVB -aWf -fFN +vun aSL -aXn +sBJ kxI kxI lUc @@ -42906,7 +40060,7 @@ aaH aaw aaw aaw -oHU +ekN aaw aaw cDr @@ -42972,13 +40126,13 @@ abS wVk wVk wVk -dIO +eDe wVk wVk wVk wVk afk -afv +wHL ajW ajW afI @@ -42990,7 +40144,7 @@ ajW ajW afX ajW -ahN +hRJ wVk wVk wVk @@ -43016,17 +40170,17 @@ xze tyG tyG anS -aow -aoK -bGV +sCd +ubU +xeG anF -apC -pwq -pwq -aoI -hZg -oCP -nSg +vzh +hXF +hXF +wxs +cZM +ydq +fCL opP udP udP @@ -43037,8 +40191,8 @@ jHN jHN asT asT -aws -awM +uUn +cnL asT aJr aKg @@ -43075,14 +40229,14 @@ aEt aQp aRo aIO -aSg +vZa aSL aSL aSL aSL -rmg -aTq -aWA +tDD +cIR +cIR aSL aSL aVB @@ -43106,9 +40260,9 @@ abm abk avn avm -aYO +uly abk -abU +mZx avm fiE aHT @@ -43136,7 +40290,7 @@ aaw aaw aaw aaw -wwI +jbN wbM jeL aaF @@ -43189,7 +40343,7 @@ abS iIB iIB iIB -mca +dMd rTT tde uwG @@ -43206,7 +40360,7 @@ wVk wVk wVk wVk -afv +wHL afI afX agf @@ -43218,7 +40372,7 @@ ajW ajW afX agk -ahQ +jpd afk wVk wVk @@ -43235,7 +40389,7 @@ sqj rit wqy hJW -gaw +siI xei tyG amB @@ -43244,17 +40398,17 @@ tyG tyG tyG anS -wcT -aoL +oMU +xAp anF anF -apx -pwq -aou -njs -aqQ -atV -nSg +vWb +hXF +gDF +fae +reB +oGD +fCL opP udP udP @@ -43276,7 +40430,7 @@ aJr aJr vKc aJr -por +nyi kAg kAg iAA @@ -43305,16 +40459,16 @@ aQo aIO aSL aSL -aVg -tem -aVd -aTM -aTq -dlq +npj +kVy +qzB +tgB +cIR +cIR aSX -aZI -aXJ -aXW +btD +gRV +iMd aWz kxI kxI @@ -43332,13 +40486,13 @@ aac abm abm abk -axo +cjK avm rQf abk aqz avm -uST +qAl aHT aah aah @@ -43364,7 +40518,7 @@ aaw aaw aaw wbM -kbn +gNi wbM jeL abm @@ -43434,7 +40588,7 @@ wVk wVk wvP afk -afw +hGi afK afN ajW @@ -43446,7 +40600,7 @@ aVn afN afN ajW -ahQ +jpd wVk wVk wVk @@ -43463,7 +40617,7 @@ sqj rit dVH hJW -uLW +ePO toL tyG amC @@ -43475,13 +40629,13 @@ anS anS anS anS -wLe -pwq -pwq -wLe +kGB +hXF +hXF +kGB anF -nSg -nSg +fCL +fCL anF szy udP @@ -43532,17 +40686,17 @@ aQr aQo aSi aSL -aTo -ogR -aUs -nwR -aTM -aTM -aTM -aXf -aTM -aTM -aXW +ngl +pXp +exc +yke +ncy +cIR +tgB +cEO +ncy +ncy +uQz aVB kxI kxI @@ -43562,10 +40716,10 @@ abm abk avn avm -tuX +jTC abk avm -abZ +sfJ fiE aHT aah @@ -43591,8 +40745,8 @@ aaz aay aaw aaw -wwI -hpG +jbN +oZz wbM jeL abm @@ -43662,7 +40816,7 @@ wVk wVk wVk afk -afv +wHL afL afX agg @@ -43674,7 +40828,7 @@ afN ajW afN ajW -ahQ +jpd wVk wVk wvP @@ -43704,8 +40858,8 @@ tyG tyG anS anS -pwq -apZ +hXF +oHM anS anS jHN @@ -43721,8 +40875,8 @@ jHN ofv jHN atw -awv -awP +cXK +mGg atw atw aJr @@ -43745,7 +40899,7 @@ mKf qAP mKf mKf -aIM +nxH aJv aKl aKG @@ -43759,18 +40913,18 @@ aLN aQs aQo aSi -mkU -qGR -aWD -aUq -aTN -aTM -aTM -aUo +wTK +dCl +puf +bRm +oZw +ncy +uBD +rVA aSX -aZJ -aXK -aZe +ufU +kRh +prt aSL mnK kxI @@ -43821,7 +40975,7 @@ aaw aaw wbM wbM -wwI +jbN jeL abm abm @@ -43890,7 +41044,7 @@ wVk wVk wVk wvP -afx +fWz ajW afN agh @@ -43902,7 +41056,7 @@ ajW ahk afN afN -ahR +lYG wVk afk csM @@ -43920,7 +41074,7 @@ sqj rit mVV wxP -gaw +siI jbB amB tyG @@ -43949,9 +41103,9 @@ adp adp adp atw -aww -awR -atX +tko +ofY +fuJ atw adp adp @@ -43987,14 +41141,14 @@ aPU aQt aQo aSj -qGR -mkU -aWD -aUq -aTN -udM -aTM -aWE +sZB +ilv +puf +bRm +oZw +bmx +ncy +eqt aSX aSX aSX @@ -44115,22 +41269,22 @@ abS wVk wVk wVk -jaa +nQK wVk wVk -afx +fWz agf ajW agi ajW eAu -agF +fTg agT ahh ahl afN ajW -ahS +rbo afk wVk wVk @@ -44173,17 +41327,17 @@ udP udP gRx adp -auz -atX -avu -mnh -atX -awR -atX -axN -auz -iKz -azi +anL +fuJ +fQO +trl +fuJ +ofY +fuJ +csK +anL +rax +sPD atY aLv aJr @@ -44216,18 +41370,18 @@ aQr aQo aSi aSL -lHc -gKg -aVe -jwW -aTM -aTM -gqG +ngl +iYd +jvI +reE +ncy +ncy +wYt aSX -aZd -aZx -aXZ -aYh +jtx +vJf +bqJ +rHW aVB kxI kxI @@ -44331,7 +41485,7 @@ abS iIB iIB rTT -uxL +dje onP eGD abS @@ -44346,7 +41500,7 @@ wVk wVk wVk wVk -afx +fWz ajW afX agj @@ -44358,7 +41512,7 @@ afN ahm ajW ajW -ahR +lYG wVk wVk wVk @@ -44401,17 +41555,17 @@ udP udP mHM adp -auA -atX -atX -avM -awx -atX -axt -ayt -ayt -ayt -azj +kpf +fuJ +fuJ +tIT +iLc +fuJ +hRx +kbD +kbD +kbD +sGY adp aJr aJr @@ -44445,18 +41599,18 @@ aGk aQo aSL aSL -aVf -jMk -aWg -aTM -aTM -aWF +qoc +vgP +tzL +plA +bgw +tnu aSX -aXs -aTM -aZM -aTM -aXg +cTM +ncy +bgq +rHW +otc kyN kxI tsa @@ -44574,7 +41728,7 @@ wvP wVk wVk wVk -afv +wHL afN ajW afX @@ -44586,7 +41740,7 @@ ajW ajW afN ajW -ahQ +jpd wVk wVk wVk @@ -44629,17 +41783,17 @@ udP udP udP atw -toM -atX -atX -avN -atX -atX -axu -ayv -ayv -ayv -azk +gav +fuJ +fuJ +cFS +fuJ +fuJ +rTP +etT +etT +etT +qji atw aJr cwv @@ -44676,14 +41830,14 @@ aSX aSX aSX aSX -aXs -aTM -aTM -aXg -aTM -aVC -aTM -aTM +nNI +tGT +ncy +iNv +ncy +jNd +ncy +ncy aWz kxI kxI @@ -44802,7 +41956,7 @@ wVk wVk wVk wVk -afv +wHL ajW afN ajW @@ -44814,7 +41968,7 @@ ahi ajW afN agp -ahQ +jpd wVk wVk wVk @@ -44844,8 +41998,8 @@ tyG eDy anG anG -aoA -ffb +fwb +dLo anG anG jHN @@ -44857,17 +42011,17 @@ udP udP atw atw -gox -atX -atX -atX -atX -atX -axv -axQ -ayx -ayx -azl +rNG +fuJ +fuJ +fuJ +fuJ +fuJ +vCb +nDT +scy +scy +rvF atw atw hEu @@ -44887,7 +42041,7 @@ rGu mNz hSn aJz -aKq +wMv aKI aLh aLg @@ -44900,17 +42054,17 @@ aQw aJz aJz aSL -aTs -hEc -aUt +lHN +fvk +syy aSX -aVF -aTM -aTM -aXg -aTM -aTM -aZf +lSU +lkh +eqX +kOQ +ncy +ncy +elD aSL aSL aYw @@ -45030,7 +42184,7 @@ wVk wVk afk afk -afv +wHL afN afY agk @@ -45042,7 +42196,7 @@ ajW ajW ahs ajW -ahQ +jpd wVk wVk wVk @@ -45068,35 +42222,35 @@ tyG tyG sUT anG -anT -anT +pxj +pxj anG -aru -apH -aoA -aqp +tix +pGq +fwb +nJM anG -anT -anT +pxj +pxj anG szy udP udP udP adp -buo -auD -atX -atX -atX -atX -atX -atX -atX -atX -atX -atX -wDA +sDb +tly +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +xQW adp mKf mKf @@ -45128,17 +42282,17 @@ aIL aPk uDs aSL -aTs -aTR -aUu +lHN +iJW +feE aSX -aVG -aTM -aWG +qNN +hro +rCp aSX -fqP -aWi -aYc +euu +enA +bqK aVB dEp kxI @@ -45243,7 +42397,7 @@ abS abS rTT rTT -hpK +aeW xdb onP eGD @@ -45258,7 +42412,7 @@ wVk wVk wVk afk -afv +wHL ajW ajW agl @@ -45270,10 +42424,10 @@ afN ajW ajW ajW -ahQ +jpd wVk wVk -jaa +nQK csM wVk wVk @@ -45295,37 +42449,37 @@ ldZ tyG tyG tyG -anT -aoz -aoA -aoA -aoA -aoA -aoA -aoA -eBN -oae -arp -anT +pxj +wBN +fwb +fwb +fwb +fwb +fwb +fwb +nKN +weM +keK +pxj xPk udP udP udP -aty -atX -auF -auF -avv -aEn -auF -awS -atX -atX -atX -atX -atX -atX -aty +clL +fuJ +hlk +hlk +hte +uBT +hlk +iil +fuJ +fuJ +fuJ +fuJ +fuJ +fuJ +clL mKf mKf mKf @@ -45356,17 +42510,17 @@ tXO xuk oUy aSL -aTu -aZM -aTM -aVj -aTM -aWi -aWH +xXz +qoJ +vCu +ylR +arx +xDA +mpC aSX -aXu -aXN -aYc +qoZ +bPA +kcf aVB kxI kxI @@ -45486,19 +42640,19 @@ wVk wVk wVk wVk -afy -afO -afO -afO -afO -agv -agv -agW -afO -afO -afO -afO -ahT +jpQ +jwt +jwt +jwt +jwt +kZE +kZE +ryS +jwt +jwt +jwt +jwt +sep wVk wVk wVk @@ -45523,36 +42677,36 @@ tyG tyG tyG tyG -anT -aol -aoA -rkq -aoO -aoA -aoA -aoA -aoA -aoA -arq -anT +pxj +pBU +fwb +nAa +rdn +fwb +fwb +fwb +fwb +fwb +cvr +pxj udP udP udP udP atz -atX -auF +fuJ +hlk auE auE auE -auF -atX -atX -atX -ayy -atX -atX -azM +hlk +fuJ +fuJ +fuJ +laE +fuJ +fuJ +oCW adp mKf mKf @@ -45584,17 +42738,17 @@ dEg kvo mNO fFN -aTM -aTM -aUx +ncy +ncy +kJf aSX -aVH -aTq -aWI +ujc +cIR +xme aSX -aXw -oCr -aYd +pdY +xac +oCy aWz kxI kxI @@ -45752,16 +42906,16 @@ tyG tyG anG anG -elm -aoA -aoA -aoP -aoA -aoA -aoP -aoA -aoA -arr +dos +fwb +fwb +dwl +fwb +fwb +dwl +fwb +fwb +aTQ anG anG udP @@ -45769,17 +42923,17 @@ udP udP atw atw -auF +hlk auE avw auE -auF -atX -atX -atX -atX -atX -azm +hlk +fuJ +fuJ +fuJ +fuJ +fuJ +rrL atw atw iXG @@ -45816,9 +42970,9 @@ fFN hHc aSL aSL -aTq -aTq -aVI +cIR +cIR +ldz aSL aVB aVB @@ -45978,36 +43132,36 @@ tyG tyG nqy tyG -anT -aoA -aoA -aoA -aoP -aoP -aoA -aoA -aoP -aoP -aoA -aoA -rRE -anT +pxj +fwb +fwb +fwb +dwl +dwl +fwb +fwb +dwl +dwl +fwb +fwb +cwz +pxj jRm jRm jRm jRm atw -auG +gaB auZ auE auE -auF -atX -atX -atX -avM -atX -azn +hlk +fuJ +fuJ +fuJ +tIT +fuJ +rks atw oUy oUy @@ -46044,8 +43198,8 @@ aSm aSm oUy aSL -hHc -aWf +aVB +vun aVB aSL iUm @@ -46206,36 +43360,36 @@ tyG tyG tyG tyG -ehy -nHj -aoA -aoA -aoA -aoA -aoA -aoA -aoA -rkq -aoA -aoA -aoA -ehy +hLk +whL +fwb +fwb +fwb +fwb +fwb +fwb +fwb +nAa +fwb +fwb +fwb +hLk jRm jRm jRm ppR atY -auF -auF -auF -auF -auF -atX -atX -atX -atX -atX -azo +hlk +hlk +hlk +hlk +hlk +fuJ +fuJ +fuJ +fuJ +fuJ +gyu adp oUy aRa @@ -46353,7 +43507,7 @@ acf uxU uxU fDE -gcB +pAW fDE acf acf @@ -46434,36 +43588,36 @@ tyG qJx tyG tyG -aoA -aoA -aoA -aoA -aoA -aoA -aoA -aoA -aoA -nqt -aoA -aoA -aoA -aoA +fwb +fwb +fwb +fwb +fwb +fwb +fwb +fwb +fwb +pKW +fwb +fwb +fwb +fwb jRm jRm ppR oqO adp -sxm -atX -atX -atX -atX -awT -atX -axS -ayz -bRf -auz +fPW +fuJ +fuJ +fuJ +fuJ +sKi +fuJ +eYO +sdV +rRq +anL adp oUy bbI @@ -46480,11 +43634,11 @@ oUy oUy ayP ayu -aHZ -aIP +nCm +hPi aJA -aHZ -aIP +nCm +hPi aJA ayP ezz @@ -46610,21 +43764,21 @@ abS iIB iIB rTT -rmt +aUW rTT onP abS abS abS -ael -aet -aet -aet -aet -aet -aet -aet -aet +hdm +jYE +jYE +jYE +jYE +jYE +jYE +jYE +jYE wVk wVk wVk @@ -46662,20 +43816,20 @@ tyG tyG tyG tyG -anT -aoA -aoA -aoA -aoP -aoP -kuP -aoA -aoP -aoP -aoA -aoA -aoA -anT +pxj +fwb +fwb +fwb +dwl +dwl +xpg +fwb +dwl +dwl +fwb +fwb +fwb +pxj jRm jRm iwh @@ -46685,9 +43839,9 @@ atz adp adp atw -awy -atX -atX +gju +fuJ +fuJ atw adp adp @@ -46707,13 +43861,13 @@ aDS aDS aDS aDS -azt -azt -azu -azt -azt -azt -azt +kMB +kMB +ruz +kMB +kMB +kMB +kMB aLk aLk aLk @@ -46844,7 +43998,7 @@ onP abS abS abS -aem +gut qjf qjf qjf @@ -46892,16 +44046,16 @@ xze tyG anG anG -aoB -aoA -aoA -aoP -aoA -aoA -aoP -aoA -aoA -art +cdH +fwb +fwb +dwl +fwb +fwb +dwl +fwb +fwb +qzv anG anG jRm @@ -46914,7 +44068,7 @@ oUy oUy atw adp -awU +ccA adp atw oUy @@ -46932,19 +44086,19 @@ oUy aDS aDS aDS -aFh -aFh +lsB +lsB aDy -aHF -azt -aAZ -azu -aAZ -aAZ -aAZ +eib +kMB +qYg +ruz +qYg +qYg +qYg aLk -aMX -aNL +qFp +kMg aLk aLk aLk @@ -47043,7 +44197,7 @@ fDE uxU uxU uxU -hez +qVc fDE spK acf @@ -47072,29 +44226,29 @@ abS abS abS abS -aem +gut qjf -aex -aex +yjw +yjw xNK -aex -aex -aex -aex -aex -aex +yjw +yjw +yjw +yjw +yjw +yjw wVk wVk wVk wVk csM -tzo -kHB -kHB -kHB +vEF +pkh +pkh +pkh wVk wVk -jaa +nQK wVk wVk wVk @@ -47119,18 +44273,18 @@ tyG tyG tyG tyG -anT -nEE -aoA -aoA -aoA -rkq -aoA -aoA -aoA -aoA -auB -anT +pxj +pQl +fwb +fwb +fwb +nAa +fwb +fwb +fwb +fwb +sWp +pxj jRm jRm jRm @@ -47155,26 +44309,26 @@ oUy aMD bbJ bbO -aCV +oUy aDS aDS -aFh -aFh -aGm -aGH +lsB +lsB +xxW +rFe aDy aDy -aIc -azt -azt -azt -aKJ +wta +kMB +kMB +kMB +xSu aLk aLk -aMY -aMZ -aOy -aMZ +fzp +scb +fHe +scb aLk aQx aQx @@ -47300,9 +44454,9 @@ abS pDt pDt pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -47310,7 +44464,7 @@ qjf qjf qjf qjf -aex +yjw wVk wVk wVk @@ -47329,15 +44483,15 @@ wVk wVk wVk wVk -ajM -ajU -ajU +uMW +uhB +uhB ajX sqj sqj ajX ajX -alX +oXa amr hJW tyG @@ -47347,18 +44501,18 @@ tyG tyG tyG tyG -anT -aoC -aoR -vzT -aoA -aoA -aoA -aoA -aoA -aoA -arv -anT +pxj +hmX +kUp +iUJ +fwb +fwb +fwb +fwb +fwb +fwb +wZI +pxj xpf jRm mFu @@ -47385,26 +44539,26 @@ oUy azp azp aDS -aEA -aGH -aGH -aGn -aGH -aQF +uYo +rFe +rFe +ucX +rFe +eBt aDy -azt -azt -azt -azt -azt +kMB +kMB +kMB +kMB +kMB aLk -aLS -aMZ -aMZ -aMZ -aPo +auN +scb +scb +scb +bbF aLk -aZi +kKv aQx aQx oUy @@ -47528,9 +44682,9 @@ pDt pDt pDt pDt -aem +gut qjf -aey +cxs qjf qjf qjf @@ -47538,7 +44692,7 @@ qjf aff qjf qjf -aex +yjw wVk csM lQC @@ -47557,15 +44711,15 @@ wVk wVk wVk wVk -ajS -ajV +ceU +iYD whR sqj sqj sqj whR -ajV -alY +iYD +brc amr hJW tyG @@ -47576,16 +44730,16 @@ tyG tyG tyG anG -anT -anT +pxj +pxj anG -aoA -aoA -aoA -aoA +fwb +fwb +fwb +fwb anG -anT -anT +pxj +pxj anG gYs jRm @@ -47611,29 +44765,29 @@ azp azq azq azp -aNi +nrv aDy -aEB -aFj -aFj -aFj -aGH -aHa +bzi +cyU +cyU +cyU +rFe +gIK aDy -aIe -azt -azt -azt -azt +tXS +kMB +kMB +kMB +kMB aLk -aLT -aNM -aNM -jhe -aMZ +noU +isv +isv +xHt +scb aLk -aQB -aRz +wXs +hLz aQx aSv aTw @@ -47756,9 +44910,9 @@ pDt pDt qRj pDt -aem +gut qjf -aeA +jih qjf qjf qjf @@ -47766,7 +44920,7 @@ qjf afg qjf qjf -aex +yjw qjf lQC lQC @@ -47783,17 +44937,17 @@ wVk csM xov wVk -dIO +eDe wVk -ajS +ceU whR sqj kft sqj whR whR -ajV -alY +iYD +brc amr hJW tyG @@ -47807,10 +44961,10 @@ tyG tyG tyG anG -anT -aoA -ffb -anT +pxj +fwb +dLo +pxj anG tyG tyG @@ -47836,35 +44990,35 @@ oUy wAP oUy azq -aAU -aBA -aCP -aAU +vZw +nGy +pQX +vZw aDy aEC aDy aDy aDy -aGI -aGH -aGo -azt -aJg -aJB -aHZ -azt +pdP +rFe +ddl +kMB +cQR +jgz +nCm +kMB aLk aLk aLk aLk aLk -aPp +qBo aLk -aQD -aRA -aSq -aQD -aQD +tXQ +erS +rFc +tXQ +tXQ aSv oUy fjP @@ -47973,7 +45127,7 @@ eQL pgc iIB iIB -bOm +cuY xhv abS pDt @@ -47984,9 +45138,9 @@ pDt pDt pDt pDt -aem +gut qjf -aeC +gUZ qjf qjf xNK @@ -47994,7 +45148,7 @@ xNK afh qjf qjf -aex +yjw qjf lQC lQC @@ -48013,15 +45167,15 @@ wVk wVk wVk wVk -ajS -ajV +ceU +iYD whR sqj sqj sqj -ajV +iYD whR -alY +brc amr hJW tyG @@ -48064,35 +45218,35 @@ oUy oUy oUy azq -aBT -aCq -aAP -aAU +nIR +sMj +avs +vZw aDT -aED -aFk -aFO -aGo -aGJ -aGH +sFb +gcw +epL +ddl +lFK +rFe aDy -azt -aJh -gmi -aKv -azt +kMB +sEi +gsG +pqu +kMB aLl -aLX -aNb -aNN -aOC -aNN +qpF +wsQ +toN +tFF +toN aLl -aQE -aRB -aQD -aQD -aZo +ixZ +qYe +tXQ +tXQ +jtu aSv oUy oUy @@ -48212,9 +45366,9 @@ pDt pDt pDt wWS -aem +gut qjf -aex +yjw qjf qjf xNK @@ -48222,7 +45376,7 @@ xNK xNK qjf qjf -aex +yjw qjf qjf lQC @@ -48241,15 +45395,15 @@ wVk wVk wVk wVk -ajM +uMW ajX ajX sqj sqj ybu -ajU -ajU -alX +uhB +uhB +oXa amr hJW tyG @@ -48292,35 +45446,35 @@ oUy azp azp azp -aBU -aAP -aCQ -aDp +vSu +avs +kCH +daf aDy -aEE -aFl -aFP +uKS +cpG +nVa aDy -iKD -aHb +syr +dRn aDy -aHp -aJh -aJD -aKv -azt +oEH +sEi +wWy +pqu +kMB aLl -aLZ -aNc -aNc -aOD -aNc +jkr +eOd +eOd +xfc +eOd aLl -gnR -aRA -aSs -aSQ -tUO +xzn +erS +dAR +rSg +gzs aQx oUy oaL @@ -48440,9 +45594,9 @@ pDt pDt pDt guW -aem +gut qjf -aex +yjw qjf qjf qjf @@ -48450,7 +45604,7 @@ qjf qjf afl qjf -aex +yjw qjf qjf lQC @@ -48518,12 +45672,12 @@ aKo oUy oUy azq -aXc -aBy -aBV -aCr -aCR -aBV +mMi +tau +wyQ +nJV +igO +wyQ aDU aEF aDT @@ -48532,11 +45686,11 @@ aDy aDy aDy aDy -aIg -aJh -aJE -aKv -aKK +wfn +sEi +jBR +pqu +kYr aLl aKQ aKQ @@ -48545,7 +45699,7 @@ aKQ aNT aLl aQx -aRC +hMJ aQx aQx aQx @@ -48648,7 +45802,7 @@ fDE fDE fDE fDE -osf +xRh hNT ydz xhv @@ -48668,9 +45822,9 @@ pDt pDt pDt pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -48678,7 +45832,7 @@ qjf qjf afn qjf -aex +yjw qjf qjf lQC @@ -48746,39 +45900,39 @@ oUy oUy oUy azq -aGZ -aAU -aBW +wNs +vZw +eei azP azP azP azP -aEG -aPI -aPJ -aPI -aQy -aRh +gdh +oeR +cTr +oeR +dXa +btJ aGW -aIh -aJh -aJD -aKv -aKL +cLB +sEi +wWy +pqu +sqq aLl -aMa -rXs -aNO -aXL -aPq +sVn +nva +vXg +uIK +bXo aLl -aQG -aRD -aZA +dCq +jcS +csO aQM -aYM -aTW -aUA +fUC +mru +kGZ aQM oUy tBJ @@ -48890,15 +46044,15 @@ xhv pDt oeN oeN -adI +bmD oeN oeN oeN pDt pDt -aem +gut qjf -aeD +dQe aeF aeL qjf @@ -48906,10 +46060,10 @@ qjf qjf afo qjf -aet -aet -aet -aet +jYE +jYE +jYE +jYE lQC lQC fpn @@ -48974,39 +46128,39 @@ oUy pBk azp azp -aAS -aBz -aAU -aCu -aCU -aDq +pku +oyZ +vZw +cFF +dGF +wlj azP -aEH -aFn -aFR -aFn -aFR -aFn +sow +omS +tlm +omS +tlm +omS acl -aIi -aJh -aJG -aKv -azt +vqB +sEi +svy +pqu +kMB aKQ -aMb -aNe -aNe -aNe -aPr +ukX +skU +skU +skU +cJj aLl -aQH -aRE -aSw +kQB +uKk +wPz aQM -aYN -aTX -aUB +bDk +bYF +jKJ aQM aQM oUy @@ -49117,16 +46271,16 @@ hEe xhv pDt oeN -adC -adM -adM -scS +muU +wIS +wIS +brS oeN pDt pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -49134,7 +46288,7 @@ qjf qjf qjf qjf -aex +yjw qjf qjf qjf @@ -49201,13 +46355,13 @@ oUy oUy oUy azp -aAv -aAU -aBA -aAU -aCt -aCT -iqN +rGi +vZw +nGy +vZw +xdS +nai +wYq azP aOF aFo @@ -49215,27 +46369,27 @@ aFo aFo aFo aFo -aHH -azt -aJj -aJH -aJK -azt +nPW +kMB +xrX +pru +ybU +kMB aKQ -aST -aNh -aNP -pca -aYH +eiV +kVN +uIh +dLO +rkA aLl -aQI -aRF -aSA +vwC +cxj +bpC aQM aQM aQM -aUB -xnt +jKJ +omT aQM aXV oUy @@ -49318,7 +46472,7 @@ cSL ryp fDE fDE -pVZ +pwE fDE fDE acf @@ -49341,20 +46495,20 @@ crn nbw ntr ntr -nNu +hdK xhv pDt oeN -pAU -adM -adM -adT +iif +wIS +wIS +mjd oeN pDt pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -49362,7 +46516,7 @@ qjf qjf aeN qjf -aex +yjw qjf qjf qjf @@ -49431,8 +46585,8 @@ azp azp azP azP -aAU -aBY +vZw +eof azP azP azP @@ -49443,27 +46597,27 @@ aFo aFo aFo aFo -aHI -azt -azt -azt -azt -azt +mDr +kMB +kMB +kMB +kMB +kMB aKQ -lHv -aZw -aNQ -aOI -aPu +oqC +edO +dih +xgF +iFF aLl -aQJ -aRD -aSy -aZB -aSA -aTY -aUD -sVZ +oeg +jcS +oFS +iCU +bpC +tvu +lzt +fTB aQM aQM oUy @@ -49573,16 +46727,16 @@ eQL xhv pDt oeN -cXU -adM -adM -aei +flN +wIS +wIS +orf oeN pDt pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -49656,43 +46810,43 @@ oUy oUy oUy azq -azN -aAw -aAW -aAU -aAU -aCu -aCU -aDs +dbT +gue +hTs +vZw +vZw +cFF +dGF +aYz azP -aEK -aFp -aFS -aFp +oXv +qGA +fyr +qGA aGs aGs aGs -azt -aJa -aHZ -azt -azt +kMB +dtl +nCm +kMB +kMB aLl aKQ aLl -aNR -aOJ -aPv +sOD +nML +vuR aLl -aQK -aYD -aYG -fBC -aTB +tds +lQe +gRM +wMA +mbd aQM -aUE -aVp -aZF +jLO +fvT +ehF aSB oUy mko @@ -49780,7 +46934,7 @@ jgy abl acf uxU -osf +xRh fDE qWI abl @@ -49801,16 +46955,16 @@ aTy hRB pDt oeN -abt -adM -adM -ajd +xNB +wIS +wIS +oZW oeN qRj pDt -aem +gut qjf -aex +yjw qjf qjf qjf @@ -49834,7 +46988,7 @@ lQC lQC iXj iXj -aiL +nxk iXj lQC lQC @@ -49884,43 +47038,43 @@ oUy oUy oUy azq -sJN -aAx -aAX -aBA -aAU -aCv -aJZ -aDt +siL +nhb +tVx +nGy +vZw +gvw +voH +gPd azP -aEL -aFn -aFR -aFn +sJR +omS +tlm +omS aGs -aHe -aHJ -azt -aJa -aJa -aHZ -azt -aHJ -aMe +sJG +uVq +kMB +dtl +dtl +nCm +kMB +uVq +vrt aKQ -aNS -aOK -mLq +brj +lzh +hrN aLl -akh -aRI -aSA -aSA -aTC +jOl +uys +bpC +bpC +qID aQM -aUF -aVq -aVM +ujY +vtR +pSS aSB oUy mko @@ -50029,14 +47183,14 @@ pDt pDt pDt oeN -adF -adN -sjx -wbu +xNQ +tcP +cYl +pEz oeN pDt pDt -aem +gut xNK xNK qjf @@ -50061,8 +47215,8 @@ lQC lQC lQC iXj -aiw -aiM +mkL +inn iXj ajq ako @@ -50115,26 +47269,26 @@ azp azP azP azP -aAU -aBZ +vZw +ofP azP azP azP azP acc -aFq +lXT acl acl aGs -aHf -azt -azt +rle +kMB +kMB aJb -aJa -aJa -aHZ -azt -aMf +dtl +dtl +nCm +kMB +tPA aLl aNT aKQ @@ -50274,7 +47428,7 @@ qjf xNK qjf qjf -aex +yjw qjf xNK qjf @@ -50288,10 +47442,10 @@ lQC lQC lQC lQC -bZX -aix -wWg -bZX +npk +okc +mrL +npk ajr sqj sqj @@ -50339,45 +47493,45 @@ oUy sgj mXR ayu -azr -azt -aAy -azt -azt -azt -azt -azt -aDu -aDW -aEO -azt -azt -azt -azt -azt -azt -aIj +eAT +kMB +vBz +kMB +kMB +kMB +kMB +kMB +reV +mQP +qjm +kMB +kMB +kMB +kMB +kMB +kMB +qTx aJb aJc -aJf -aJa -aWj -aMg -azt -azt -aIe -aDu -aPZ -aQN -aEP -azt -azt -azt -aTZ -aEP -aAy -aVN -azt +ecP +dtl +ftS +sfF +kMB +kMB +tXS +reV +mfp +olc +rFi +kMB +kMB +kMB +fpY +rFi +vBz +gig +kMB aWK yle yle @@ -50502,24 +47656,24 @@ qjf qjf qjf qjf -aex +yjw qjf qjf qjf pim lQC lQC -nIA +iud lQC lQC lQC lQC lQC lQC -bZX -aiy -aiO -ejx +npk +vnh +jmc +oyf aju ajF ajG @@ -50567,46 +47721,46 @@ tsK axW jRm ayQ -azt -azt -azQ -azt -aBB -azt -azt -azt -azt -azt -aEP -azt -azt -azt -azt -azt -aBB -azt +kMB +kMB +iQP +kMB +gKl +kMB +kMB +kMB +kMB +kMB +rFi +kMB +kMB +kMB +kMB +kMB +gKl +kMB aJc -aJI -aKx -aJf -aWj -azt -azt -azt -azt -azt -azt -azt -aEP -aIe -azt -azt -azt -aEP -azt -azu -aVN -aWL +eHT +jgT +ecP +ftS +kMB +kMB +kMB +kMB +kMB +kMB +kMB +rFi +tXS +kMB +kMB +kMB +rFi +kMB +ruz +gig +kDi yle yle yle @@ -50730,10 +47884,10 @@ qjf qjf qjf qjf -afd -afd -afd -kPL +sDw +sDw +sDw +pPu lQC lQC lQC @@ -50744,10 +47898,10 @@ lQC tMB lQC lQC -bZX -oVM -aiP -ejx +npk +tgZ +xBY +oyf aju ajF ajZ @@ -50795,46 +47949,46 @@ jRm mFu jRm ayw -azt -azt -azQ -aAY -azt -azt -aCw -aCw -aCw -aCw -aEQ -aCw -aCw -aCw -aCw -aHg -azt -aWj -aJd -aJI -aJf +kMB +kMB +iQP +qDv +kMB +kMB +jcb +jcb +jcb +jcb +vdj +jcb +jcb +jcb +jcb +jVO +kMB +ftS +bow +eHT +ecP aJc -azt -azt -aCw -aCw -aCw -aCw -aCw -aCw -aEQ -aCw -aCw -azt -azt -aEP -azt -aIe -aVN -azt +kMB +kMB +jcb +jcb +jcb +jcb +jcb +jcb +vdj +jcb +jcb +kMB +kMB +rFi +kMB +tXS +gig +kMB yle yle yle @@ -50915,7 +48069,7 @@ acf uxU uxU mrg -thk +diU ogJ jgy abl @@ -50958,12 +48112,12 @@ qjf qjf qjf qjf -aex +yjw qjf qjf -gzo -gzo -nIA +iGU +iGU +iud lQC lQC lQC @@ -50973,8 +48127,8 @@ lQC lQC lQC iXj -aiA -aiQ +hmw +cbb ajh ajs sqj @@ -51023,12 +48177,12 @@ jRm jRm jRm ayu -azu -azu -azt -azt -azt -aCa +ruz +ruz +kMB +kMB +kMB +kuh aCx aCX aDw @@ -51038,15 +48192,15 @@ aFt aFT aFt aGN -aHh -abV -aHK -aJe +wZB +qWM +inJ +mnj aJJ aKy aKM -aHK -aMh +inJ +uRl aNj aFt aOM @@ -51056,12 +48210,12 @@ aFt aRN aFt aSV -aHh -aUa -aUH -azt -azt -azt +wZB +gyU +rBT +kMB +kMB +kMB aWM yle yle @@ -51157,12 +48311,12 @@ acf acf ecy acH -acM +nqn adk -adx +qHW kZk -gss -tXZ +qfI +ydO ecy ecy ecy @@ -51186,7 +48340,7 @@ qjf qjf qjf qjf -aex +yjw afR qjf lQC @@ -51201,8 +48355,8 @@ lQC lQC oeS iXj -aiB -aiQ +flG +cbb iXj ajr sqj @@ -51251,46 +48405,46 @@ jRm jRm jRm ayQ -azu -azt -azQ -aAZ -azt -azt -aCy -aCy -aCy -aCy -aES -aCy -aCy -aCy -aCy -azt -azt -aWj -aJf -aJf -aJI +ruz +kMB +iQP +qYg +kMB +kMB +cYs +cYs +cYs +cYs +wIo +cYs +cYs +cYs +cYs +kMB +kMB +ftS +ecP +ecP +eHT aJc -azt -azt -aCy -aCy -aCy -aCy -aCy -aCy -aES -aCy -aCy -azt -azt -aEP -azt -aVN -aVN -aWL +kMB +kMB +cYs +cYs +cYs +cYs +cYs +cYs +wIo +cYs +cYs +kMB +kMB +rFi +kMB +gig +gig +kDi yle yle yle @@ -51385,22 +48539,22 @@ acf acf ecy acH -acw -acQ -yfH -gcI -xyI -adf -yfH -kSs +jac +aUZ +wQS +qPI +tkB +kNb +wQS +gTD vhx sfH adw pDt pDt pDt -adU -acJ +hht +pLw qRj pDt pDt @@ -51414,7 +48568,7 @@ qjf qjf qjf qjf -aex +yjw qjf qjf lQC @@ -51429,9 +48583,9 @@ lQC lQC iXj iXj -aiD -aiQ -bZX +noQ +cbb +npk ajt sqj sqj @@ -51479,46 +48633,46 @@ aWh god jRm ayw -azu -azQ -azt -azt -azt -azt -azt -azt -azt -azt -aEP -azt -azt -azt -azt -azt -azt -azt +ruz +iQP +kMB +kMB +kMB +kMB +kMB +kMB +kMB +kMB +rFi +kMB +kMB +kMB +kMB +kMB +kMB +kMB aJc -aJf -aJa -aJf -azt -aHg -azt -aBB -azt -azt -azt -azt -aEP -azt -azt -azt -azt -aEP -azu -aVO -aWj -azt +ecP +dtl +ecP +kMB +jVO +kMB +gKl +kMB +kMB +kMB +kMB +rFi +kMB +kMB +kMB +kMB +rFi +ruz +hHM +ftS +kMB yle yle nfD @@ -51612,13 +48766,13 @@ acf acf acf ecy -acw -acU -acT -kRr -qld -add -yfH +jac +dqq +sjH +pOi +vxZ +pXS +wQS nUC sfH wcK @@ -51635,14 +48789,14 @@ pDt aen xNK xNK -aex -aex -aex -aex -aex +yjw +yjw +yjw +yjw +yjw xNK -aex -aex +yjw +yjw qjf qjf lQC @@ -51656,10 +48810,10 @@ lQC eOq lQC iXj -aih +dLV keS -aiR -bZX +oAU +npk ajr kft sqj @@ -51707,52 +48861,52 @@ fjM aVm qKl ayR -azv -azu -aAz -azt -azt -azt -azt -azt -aDu -aDX -aEO -azt -azt -azt -azt -azv -azt -azt +hQw +ruz +cxp +kMB +kMB +kMB +kMB +kMB +reV +nEP +qjm +kMB +kMB +kMB +kMB +hQw +kMB +kMB aJb aJb -aJa -aJa -azt -azt -azt -azt -azt -aDu -aQb -aQN -aRP -azt -azt -azt -azt -aUI -azt -azt -azt +dtl +dtl +kMB +kMB +kMB +kMB +kMB +reV +itN +olc +xjv +kMB +kMB +kMB +kMB +lYT +kMB +kMB +kMB aWK yle yle yle yle cqw -oAJ +fKG qZv bFa tsa @@ -51840,14 +48994,14 @@ acf acf acf acE -acB -acN -acW -iKp +oKL +nov +eAo +dXH qHC -blC -fNA -gcI +bVF +ddu +qPI lkj uya wSg @@ -51883,11 +49037,11 @@ lQC lQC lQC lQC -bZX -rcq +npk +sLM aiF -aiQ -bZX +cbb +npk ajr sqj sqj @@ -51939,32 +49093,32 @@ azw azR azR azR -aBC -aCb +mzj +fWL azR azR azR aDY aET -aFu -aFu +uyj +uyj aDY aDY -aHf -azt -azt +rle +kMB +kMB aJb -aJa -aJa -aJK -azt -aMf +dtl +dtl +ybU +kMB +tPA aNk -act -acv -act -act -act +hGd +fQf +hGd +hGd +hGd aUJ aNk aNk @@ -51980,7 +49134,7 @@ ebS ebS ebS vjO -oAJ +fKG qZv hxL tsa @@ -52068,13 +49222,13 @@ acf acf acf ecy -acw -mdG -gcI -acV +jac +qAY +qPI +gqh tlQ hfX -bXd +mda xPD ovw qSn @@ -52091,15 +49245,15 @@ pDt aen aen aen -afd -afd -afd -afd -afd -afd -afr -afd -afd +sDw +sDw +sDw +sDw +sDw +sDw +bZU +sDw +sDw agc lQC lQC @@ -52111,11 +49265,11 @@ lQC lQC lQC lQC -bZX -aik +npk +fNW aiG -aiQ -bZX +cbb +npk ajr sqj sqj @@ -52164,43 +49318,43 @@ fjM fjM fjM azx -aIB -aAA -aBa -aBD -aBD -aCz -voy -aDx +cmH +itv +lZG +sOB +sOB +ije +ixn +vTx aDY -aEU -aFv -aFv -aGp +iCL +dJq +dJq +xYh aDY -aHi -aHJ -azt -aJa -aJa -aJK -azt -aLn -aMi +lUe +uVq +kMB +dtl +dtl +ybU +kMB +jXs +kxE aNk -aNV -aNZ -aPy -aQc -aOa -aRR -aSC -aSW +kik +djE +yaA +nIj +lxQ +hCD +oXE +qdr aNk -aUb -aZD -aSE -aVP +xNd +oQA +iCY +ndZ aVu dZp wpw @@ -52297,24 +49451,24 @@ acf acf jGo acD -acw -acL -xyI +jac +eWW +tkB vuy dOf -psZ -fNA -kSs +cUi +ddu +gTD ecy ecy ads pDt -adA +ovf pDt adi lLi -adA -acJ +ovf +pLw pDt lKF xNK @@ -52339,10 +49493,10 @@ lQC lQC lQC lQC -bZX -aim +npk +xmV keS -aiQ +cbb iXj ajr sqj @@ -52391,44 +49545,44 @@ cOs cOs fjM ayS -azy -azT -aAB -aBb -aBC -aBC -aCA -aAB -aDz +qDt +bqo +jRG +iJP +mzj +mzj +gad +jRG +cLL aDY -aEV -aFw -aFU -aGq +odC +edd +bEX +oIK aDY aDY aDY -aIl -aJa -aJK -azt -aIl +cJJ +dtl +ybU +kMB +cJJ aLp aLp aLp -aNW -aNZ -aNZ -aNZ -aNZ -aUL -aSD -aSY +nyn +djE +djE +djE +djE +dMy +rCH +nlJ aNk -aUc -aUL -aVr -aZs +pYY +dMy +wti +uoR aVu wpw wpw @@ -52525,19 +49679,19 @@ acf acf acE ecy -acw -acw +jac +jac acX -adS +fRr iHQ -dbA +rvj ecy ecy ecy adu oSp -adA -acJ +ovf +pLw pDt pDt pDt @@ -52568,9 +49722,9 @@ lQC lQC lQC iXj -ain +jUH aiH -aiQ +cbb iXj ajv sqj @@ -52623,39 +49777,39 @@ azw azw azR azR -aBD -aCc +sOB +jJi azR azR azR aDY -aEW -aFx -ofO -aGr -aGO -aHj +qbv +ptn +pTY +ubY +pXC +uvu aDY -aIp -azt -azt -azt -aIp -acm -aMj -aNl -aNX -aNZ -aPz -aQd -aNZ -aUM -aSE -aSZ +eQj +kMB +kMB +kMB +eQj +xZH +xRI +juO +kjg +djE +iHR +www +djE +tuW +iCY +fva aNk -aUd -aUM -aVs +csW +tuW +cLE aVu aVu wpw @@ -52795,11 +49949,11 @@ hHR hHR tMB lQC -bZX -aio +npk +uvm keS -aiz -ejx +qLi +oyf aju ajG sqj @@ -52823,7 +49977,7 @@ cwV bit cpY cpY -xVo +tHc kip rck cpY @@ -52849,41 +50003,41 @@ fjM fjM fjM azw -aAC -aBc -aBC -aBC -aIB -aNd -aIB +pyj +hjY +mzj +mzj +cmH +hgG +cmH aDY -aEX -aFv -aFW -aFv -aFv -aGt +rlG +dJq +cDV +dJq +dJq +rIv aDY -aIr -aJg -aJB -aHZ -aIi -acm -aMk -aNl -aNY -aNZ -aNZ -aNZ -aNZ -aRU -aSF -aSE +wct +cQR +jgz +nCm +vqB +xZH +vCw +juO +smL +djE +djE +djE +djE +hXG +jNl +iCY aTD -aSE -aUN -aVt +iCY +voO +qrw aVu wpw tIZ @@ -53023,11 +50177,11 @@ hHR lQC lQC lQC -bZX -aio +npk +uvm keS -aiT -ejx +byE +oyf aju ajG sqj @@ -53051,7 +50205,7 @@ cwV vSG pba cpY -xVo +tHc kip kip ueZ @@ -53078,33 +50232,33 @@ fjM fjM azw azw -aBd -aBE -aBE -btY -aDa -aDA +sNP +qXI +qXI +fnU +mPj +ruQ aEa -aEY -aFy -aFv -poL -aFv -aRj +fFS +sqx +dJq +gbc +dJq +pHI aDY -aIs -aJh -aJL -aKv -azt -acn -aMl -aNl -aNZ -aNZ -aNZ -aNZ -aQO +irx +sEi +dtG +pqu +kMB +nqM +ruJ +juO +djE +djE +djE +djE +dBf aUJ aNk aTb @@ -53251,11 +50405,11 @@ lQC lQC lQC lQC -bZX -aip +npk +hzs aiI -aiU -bZX +xOr +npk ajr sqj ybu @@ -53305,40 +50459,40 @@ fjM fjM fjM azU -azy -bnq -aBC -aBC +qDt +pez +mzj +mzj azR azR azR aDY -aEV -aFA -aFv -aFB -aFv -aHl +odC +cxN +dJq +ubQ +dJq +xhj aDY -aIt -aJh -aJM -aKv -aIe -aMl -aMl -aNl -aOa -fsa -aPA -aQe -aQP +xJx +sEi +gti +pqu +tXS +ruJ +ruJ +juO +lxQ +piQ +qvE +sOm +qHi aUJ -aSG -aOO -aTE -aMl -aMl +fLT +dpE +jSY +ruJ +ruJ aNo eeW wpw @@ -53459,9 +50613,9 @@ pDt ahv aeg aeg -bRV -off -nUs +agy +krN +pXU aeg aeg ahv @@ -53480,9 +50634,9 @@ lQC lQC lQC iXj -aiq -aiJ -aiV +uOS +iMD +nyN iXj ajr sqj @@ -53533,39 +50687,39 @@ fjM pJN cOs azU -azy -aBf -aBF -aBC -aCC -aBC -aDB +qDt +ujP +lOM +mzj +dzY +mzj +lYO aEb -aEV -aFB -aFv -aGu -aFv -aHm +odC +ubQ +dJq +tOC +dJq +xRd aDY -aIc -aJh -aJN -aKv -azt -acm -aMl -aMl -aMl -aMl +wta +sEi +oBw +pqu +kMB +xZH +ruJ +ruJ +ruJ +ruJ aNk aNk aNk aUJ -aSH -aTc -aTF -aZC +rgA +vFu +grt +lNn aNo aNo wpw @@ -53686,11 +50840,11 @@ ahv ahv ahv slW -uFA -nPk -urR -nUs -uFA +nKg +pKK +gBw +pXU +nKg aeg ahv ahv @@ -53708,9 +50862,9 @@ lQC lQC lQC iXj -bZX -aiK -bZX +npk +nXv +npk iXj ajr ajH @@ -53749,8 +50903,8 @@ aqW aqW arH aqW -arI -ask +dLc +jHD arK avR vLO @@ -53764,35 +50918,35 @@ fjM azw aBg azR -aCd -aBC -aDb -aOo +pkw +gRY +lPG +oQM aDY -aEZ -aFC -aFv -aHl -aFv -aHn +gPZ +nmL +dJq +xhj +dJq +iWZ aDY -aIu -aJh -aJM -aKv -aBB -acm -aMm -aMl -aMl -aMl -aMl -aQf -aQQ -aRW -aMl -aTd -aTd +mpq +sEi +gti +pqu +gKl +xZH +qDn +ruJ +ruJ +ruJ +ruJ +xiU +vUv +wJx +ruJ +qmp +qmp aNo aNo cMj @@ -53878,7 +51032,7 @@ pUm pUm vVC vVC -rhi +aHy etU xar pUm @@ -53914,11 +51068,11 @@ ahv ahv ahv aeg -ecK -qCU -cng -vkI -ecK +uge +cbe +fzv +eXl +uge slW ahv ahv @@ -53977,9 +51131,9 @@ aqW asi aqW aqW -asj -ask -ask +ilV +jHD +jHD arK arK fjM @@ -53994,33 +51148,33 @@ ati azR azR azR -aDc -aBf +uDe +ujP aDY -aFa -aFD -aFv -aFB +ecl +hkY +dJq +ubQ aDY aDY aDY -azt -aJh -aJP -aKv -azt +kMB +sEi +rGT +pqu +kMB aLp aLp aLp -aMl -aOO -aOO -aQg -aOO -aRW -aOd -aMl -aMl +ruJ +dpE +dpE +oas +dpE +wJx +sOx +ruJ +ruJ aTe wpw wpw @@ -54097,7 +51251,7 @@ vVC vVC vVC bvj -jRL +mKh bvj bvj pUm @@ -54142,11 +51296,11 @@ ahv ahv ahv aeg -uFA -urR -urR -urR -uFA +nKg +gBw +gBw +gBw +nKg aeg ahv ahv @@ -54205,10 +51359,10 @@ aqW arH aqW aua -asj -ava -ask -ask +ilV +ygT +jHD +jHD arK arK fjM @@ -54230,25 +51384,25 @@ aDY aEb aDY aDY -aHo -azt -azt -aJj -aJH -aJK -azt -azt -aMn +seO +kMB +kMB +xrX +pru +ybU +kMB +kMB +kvA aLp -aOc -kPY -aPB -xFf -oEE -aRW -aMl -aOd -aMl +hpS +wxB +ecB +noI +cjp +wJx +ruJ +sOx +ruJ aUh aUO wpw @@ -54370,11 +51524,11 @@ ahv ahv afS aej -wSA -jAK -ubJ -jMH -iwl +fAv +evW +vYr +gpu +cnU aej ssK rYA @@ -54433,11 +51587,11 @@ asz aqW aqW aqW -asj -avb -ask -ask -ask +ilV +jrT +jHD +jHD +jHD arK arK fjM @@ -54452,28 +51606,28 @@ ati wWs ati asN -aEd -aFb -aEd -aFY +vgD +eEx +vgD +hpQ aGw asN -aHp -azt -aIv -azt -azt -azt -azt -azt -azt -acm -aMl -aOQ -aPC -xFf -snH -aRX +oEH +kMB +jGp +kMB +kMB +kMB +kMB +kMB +kMB +xZH +ruJ +miu +vhd +noI +mgF +uXc aNo aNo aNo @@ -54574,7 +51728,7 @@ whU whU unp vAT -lNG +emi vAT lBl uyn @@ -54597,13 +51751,13 @@ ahv ahv ahv aeg -uDd -iSa -mhZ -mhZ -mhZ -pEV -uFA +byc +viw +oDi +oDi +oDi +weY +nKg cRm rYA agX @@ -54624,16 +51778,16 @@ xch xch xch xch -ajx -ajJ -akb -akt -akD -akP -akt -akD -alK -ama +vHo +vPO +cVi +gtv +lmj +sAA +gtv +lmj +hDb +nSs cpY dmZ dmZ @@ -54658,15 +51812,15 @@ arH aqW aqW aqW -asj -asj -asA -asj -avc -ask -ask -ask -ask +ilV +ilV +lKr +ilV +drO +jHD +jHD +jHD +jHD arK axY abY @@ -54680,27 +51834,27 @@ ati aAD ati axZ -aEf -aEg -aEg -aEg -aGx -aGP -azt -azt -azt -azv -azt -azt -azt -azt -azt -acs -aMl -aOR -aPD -aPD -aPD +thB +rkw +rkw +rkw +ujk +tKw +kMB +kMB +kMB +hQw +kMB +kMB +kMB +kMB +kMB +uhc +ruJ +guD +cKl +cKl +cKl aNo aNo aky @@ -54779,7 +51933,7 @@ pUm pUm vVC bvj -mfn +olY bvj bvj pUm @@ -54812,7 +51966,7 @@ tSi bkK vAT jJg -nrR +hcq whU whU pDt @@ -54825,13 +51979,13 @@ ahv ahv ahv slW -quK -pEV -mhZ -mhZ -mhZ -lDh -pws +hgU +weY +oDi +oDi +oDi +ozM +qPa ssK rYA agX @@ -54852,7 +52006,7 @@ xch xch xch xch -anf +aPL hsc hsc hsc @@ -54861,7 +52015,7 @@ hsc hsc hsc hsc -amS +dvi dmZ dmZ amW @@ -54886,15 +52040,15 @@ aqW aqW asz aqW -arI -ask -ask -ask -ask -ask -ask -ask -ask +dLc +jHD +jHD +jHD +jHD +jHD +jHD +jHD +jHD arK asN asN @@ -54908,25 +52062,25 @@ ati wWs ati axZ -aEg -aEg -aFE -aEg -aGx -aGP -azt -azt -aAY -azt -azt -azt -azt -aAY -aHL -acm -aMl -aPE -aMl +rkw +rkw +ilw +rkw +ujk +tKw +kMB +kMB +qDv +kMB +kMB +kMB +kMB +qDv +cfJ +xZH +ruJ +glN +ruJ aNo aNo aNo @@ -55053,13 +52207,13 @@ ahv ahv ahv slW -uDd -pEV -mhZ -mhZ -mhZ -pEV -kbr +byc +weY +oDi +oDi +oDi +weY +jNa jFc rYA agX @@ -55073,23 +52227,23 @@ wJT xch xch xch -oGr -abz +eJN +tHD xch xch xch xch xch -ajD -akp -akc -aku -akE -akE -ald -ajL -ajL -amf +exh +hKd +dzU +fCE +mGW +mGW +nxt +xWz +xWz +jNk cpY dmZ dmZ @@ -55114,16 +52268,16 @@ aqW aqW aqW aqW -arI -atD -ask -ask -ask -ask -ask -asL -ask -ask +dLc +cKc +jHD +jHD +jHD +jHD +jHD +lrA +jHD +jHD asN ayC ati @@ -55142,22 +52296,22 @@ aFF aFF aGy asN -aHq -azt -azt -azt -azt -aAY -azt -azt -aMo +jbR +kMB +kMB +kMB +kMB +qDv +kMB +kMB +lHP aLp -aOd +sOx aNo -nIZ +kcC aNo -aDG -aGQ +umw +rGG aky btF muv @@ -55221,7 +52375,7 @@ pZb uYj eqS uYj -tuJ +lfY xpR xpR xpR @@ -55281,13 +52435,13 @@ ahv ahv ahv slW -quK -pEV -mhZ -mhZ -mhZ -pEV -lJm +hgU +weY +oDi +oDi +oDi +weY +ovV aeg rYA gxd @@ -55338,20 +52492,20 @@ cpY aqG aqX aqW -arI -asj -asA -asj -asj -ask -ask -ask -ask -avx -ask -ask -ask -ask +dLc +ilV +lKr +ilV +ilV +jHD +jHD +jHD +jHD +qXD +jHD +jHD +jHD +jHD axZ ati ati @@ -55363,7 +52517,7 @@ aBH ati wWs ati -aDE +jqh atE asN aFG @@ -55371,21 +52525,21 @@ aFZ aFZ aFG aGW -aHL -aAY -aAY -aJQ -azt -aAY -aJQ +cfJ +qDv +qDv +uhu +kMB +qDv +uhu ayP aNo -aOe +kKD aNo aGz aGz aGz -aMq +qKN aky btF muv @@ -55437,7 +52591,7 @@ aag aag dzM uYj -tuJ +lfY gzH qfK pRD @@ -55509,13 +52663,13 @@ ahv ahv ahv aeg -kbr -pEV -mhZ -mhZ -mhZ -pEV -uDd +jNa +weY +oDi +oDi +oDi +weY +byc slW rYA fPi @@ -55532,9 +52686,9 @@ xch ffC xch xch -oGr -ukE -oGr +eJN +jfI +eJN jic xch ajw @@ -55566,20 +52720,20 @@ cpY aqI aqY aqY -arJ -ask -ask -ask -ask -ask -ask -auI -ask -ask -ask -ask -ask -ask +hXJ +jHD +jHD +jHD +jHD +jHD +jHD +dmb +jHD +jHD +jHD +jHD +jHD +jHD axZ ati ati @@ -55595,25 +52749,25 @@ ati ati ati axZ -aGa -aDG -aGQ +dEC +umw +rGG ayP ayu -azt -aJk +kMB +wdv ayu -azt -aJk +kMB +wdv ayu ayP aky aky -aDi -aHM -lZl -aHM -aMq +gZI +sPZ +kkP +sPZ +qKN aGS btF akj @@ -55737,13 +52891,13 @@ ahv ahv ahv afS -sWL -pEV -mhZ -mhZ -mhZ -pEV -fzZ +kZI +weY +oDi +oDi +oDi +weY +miV aeg vgJ mUZ @@ -55796,18 +52950,18 @@ aqK aqK arK arK -ask -ask -atc -atc -ask -auJ -ask -ask -ask -ask -ask -ask +jHD +jHD +spH +spH +jHD +hQU +jHD +jHD +jHD +jHD +jHD +jHD asN ayC ati @@ -55823,26 +52977,26 @@ ati ati ati aFH -aGb +ftQ aGz -aGR -aHr -aDG -aDG -aDG -aJR -aDG -aDG -aDG -aMp -aDG -aDG -aHu +hOH +oei +umw +umw +umw +gzB +umw +umw +umw +rnD +umw +umw +wiE aGz aGz aGz -tgi -aGQ +dkI +rGG btF aky muv @@ -55966,18 +53120,18 @@ ahv afS afS afS -nTE -jrC -jrC -jrC -nTE +dWz +qxj +qxj +qxj +dWz afS afS aeg wcW gQr agX -xBi +bMi agX agX ahv @@ -56024,17 +53178,17 @@ fuY cpY cpY arK -ask -ask -ask -ask -ask -auK -asL -ask -ask -atd -atd +jHD +jHD +jHD +jHD +jHD +swZ +lrA +jHD +jHD +pfV +pfV cfD lyS lyS @@ -56051,26 +53205,26 @@ aDF ayE asN asN -aGc -aDM -aDM -aHs -eaJ -aIw -aJl -aIw -aIw -aIw -aHM -aMq -eaJ -aHM -vBQ -eaJ -aHM -lZl -aMq -aMq +pwP +iNP +iNP +nMl +jrO +iyY +idI +iyY +iyY +iyY +sPZ +qKN +jrO +sPZ +wbn +jrO +sPZ +kkP +qKN +qKN btF btF akj @@ -56194,11 +53348,11 @@ ahv aeg wcj lse -sqR -oyI -oyI -oyI -ezC +idk +fOF +fOF +fOF +eip trJ oDY aeg @@ -56251,17 +53405,17 @@ lBu cpY cpY cpY -ask -ask -asL -ask -ask -ask -ask -ask -ask -atd -atd +jHD +jHD +lrA +jHD +jHD +jHD +jHD +jHD +jHD +pfV +pfV cfD cfD apu @@ -56282,23 +53436,23 @@ aky aky aky aGS -aDi -vBQ +gZI +wbn aGz -aHM +sPZ aGz -aHM +sPZ aGz -lZl -aMq -oPT +kkP +qKN +kmZ aGz aGz aGz aGz aGz -aMq -aMq +qKN +qKN aky btF aky @@ -56479,16 +53633,16 @@ cpY cpY oER cpY -ask -ask -ask -atd -atd -ask -ask -ask -atd -atd +jHD +jHD +jHD +pfV +pfV +jHD +jHD +jHD +pfV +pfV cfD cfD apu @@ -56510,23 +53664,23 @@ aky jtg aky aPR -aDi -aHM +gZI +sPZ aGz -lZl +kkP adh -eaJ +jrO aGz -eaJ -aMq -oPT -aHM -aHM -lZl -aHM -vBQ -aMq -aMq +jrO +qKN +kmZ +sPZ +sPZ +kkP +sPZ +wbn +qKN +qKN aky btF aky @@ -56602,7 +53756,7 @@ bvj bvj oQm bvj -mfn +olY mHk egU acg @@ -56642,28 +53796,28 @@ vAT fIW fTM agd -afE -aSo -aeb +axK +laJ +iFn dkN ufW ufW aAd -avk +hLI wmj boe boe boe qAc -thn +grj qsM ufW -fvt -rCK -rCK -rCK -rCK -rCK +tpT +mAl +mAl +mAl +mAl +mAl slW afS ahv @@ -56674,11 +53828,11 @@ xch xch dXq qBQ -dws +iPF cQX nnq oGj -tMF +jcF nVZ udj ajw @@ -56691,7 +53845,7 @@ arS als arO oRH -xVo +tHc kip rck cpY @@ -56707,14 +53861,14 @@ cpY fuY cpY cpY -ask -ask +jHD +jHD arK arK arK -ask -ask -ask +jHD +jHD +jHD cfD cfD cfD @@ -56734,27 +53888,27 @@ ati ati ati abY -aDG -aGQ +umw +rGG aky aky -aDi -aHM +gZI +sPZ aGz -aHM +sPZ aJS -aHM +sPZ aGz -vBQ -aMq -oPT +wbn +qKN +kmZ aGz eQh aGz aGz aGz -aMq -aMq +qKN +qKN aky btF btF @@ -56806,7 +53960,7 @@ pZb xpR pZb rYe -tuJ +lfY uYj rIm aag @@ -56866,7 +54020,7 @@ whU whU whU unp -rGE +fcs fIW akL adZ @@ -56896,9 +54050,9 @@ wUz afS aeg lUy -sCg -qpX -qpX +iYM +lZE +lZE pRx vpu jSp @@ -56940,9 +54094,9 @@ cpY cpY aya arK -lpV -lpV -lpV +qky +qky +qky cfD apu apu @@ -56962,27 +54116,27 @@ abY abY abY asN -nLH -aMq +fGx +qKN aky aRq -aDi -lZl +gZI +kkP aGz -aHM +sPZ aGz -eaJ +jrO aGz -aHM -aMq -eaJ -aHM -aHM -aHM -lZl -eaJ -aMq -aMq +sPZ +qKN +jrO +sPZ +sPZ +sPZ +kkP +jrO +qKN +qKN aky aky aky @@ -57108,8 +54262,8 @@ agX agX boe adY -rCK -nRb +mAl +vHd fur kRR ksB @@ -57129,13 +54283,13 @@ ahB wZW wZW oFO -dVO +wFF bEq -iuO -lPJ -whv +cRh +sXs +mQK dGc -lBq +cxX gTM jLc aqu @@ -57168,9 +54322,9 @@ abY abY abY asN -axa -nAR -axa +ukN +xOd +ukN lyS lyS lyS @@ -57182,43 +54336,43 @@ apu apu apu asN -acb +gqp avS -acb +gqp asN -uVx -aDG -aDG -aDG -aHu -aGR -aDG -aDG -aHu +lNL +umw +umw +umw +wiE +hOH +umw +umw +wiE aGz aGz aGz -uVx +lNL aGz aGz aGz -aGR -aDG -aDG -aDG -aDG -aDG -aDG -aDG -uVx +hOH +umw +umw +umw +umw +umw +umw +umw +lNL aky aky aky aky pab -taa +tgu apN -wNB +tmH meP wYp cJA @@ -57336,16 +54490,16 @@ agX boe boe oys -ulj -aeR +dqV +con ufW qvf kqL kff -nBK +uhw boe boe -nBK +uhw yhd ufW agX @@ -57357,13 +54511,13 @@ wZW wZW wZW wZW -mjY +erp bEq -lPJ -rxV -lPJ +sXs +qwA +sXs dGc -shy +vea gTM xch ajw @@ -57392,17 +54546,17 @@ uaP cpY cpY abY -bdL -rdZ -guQ -axa -axa +nWa +cPt +jck +ukN +ukN ati -axa -fem -axa -jzh -wSR +ukN +fLj +ukN +bgV +dGZ lyS apu apu @@ -57410,11 +54564,11 @@ apu apu pab btF -lRd +wTd btb -uZq -aDG -aHu +vne +umw +wiE ank aGB aEj @@ -57438,15 +54592,15 @@ aFK aGe aGB ank -aMq +qKN aky aky aky aky aky -lkF +iEs fTE -prd +iXt meP wVK fEn @@ -57564,8 +54718,8 @@ boe boe boe ekB -aBi -nIH +qin +pWL nLf aev wUz @@ -57585,13 +54739,13 @@ wZW wZW wZW pIz -xvN +glO bEq -uUJ -lPJ -mUH +dxC +sXs +iOk dGc -wca +dvG gTM xch ajw @@ -57620,17 +54774,17 @@ cpY cpY cpY abY -dxb -axa -axa -axa +gnd +ukN +ukN +ukN ati ati ati -axa -axa -axa -sdS +ukN +ukN +ukN +svV lyS apu apu @@ -57638,14 +54792,13 @@ apu phU muv btF -aDi +gZI lke aGz aGz aGz aDJ ank -ank ano ank ank @@ -57654,6 +54807,7 @@ ank ank ank ank +ank ano ank ank @@ -57666,15 +54820,15 @@ ank ano ank aRZ -aMq +qKN aky aky aky aky aky -cqE +fwj aqf -sCJ +vpw wYp wYp meP @@ -57808,9 +54962,9 @@ kqL aeg aeg lUy -nWw -dqo -dqo +ngH +oUP +oUP bQA lWw eAr @@ -57821,7 +54975,7 @@ iOz ttZ mVg gTM -arT +qZR ajw ajI ajI @@ -57848,17 +55002,17 @@ cpY cpY alD abY -eGx -axa -axa +wqY +ukN +ukN ave ati -qXo +qgY ati wQj -axa -axa -nAR +ukN +ukN +xOd lyS apu apu @@ -57866,11 +55020,11 @@ apu muv pab btF -aGc -aDM -aDM -aDM -hSa +pwP +iNP +iNP +iNP +bSa aDK ank ank @@ -57894,15 +55048,15 @@ ank ank ank aSa -aMq +qKN aky aky aky aky muv -arL +jWN jnG -prd +iXt fEn meP xcC @@ -57931,7 +55085,7 @@ pZb xpR xpR uYj -wMr +tLk uYj rpx aag @@ -58010,28 +55164,28 @@ vCG fTM fTM aer -aKj -avp -aKj +tov +kng +tov ahv aeg aeg qAc -woM +hva rYA yhd dxy agX hNq -idz +iHN afq ufW -qPO -aBi -aBi -aBi -aBi -aBi +jgW +qin +qin +qin +qin +qin aeg aeg ahv @@ -58042,11 +55196,11 @@ xch xch bOg tDa -fhs +mzL hke nnq sIM -nsF +nat kZs ekJ rGZ @@ -58076,17 +55230,17 @@ dLY dLY asN asN -atF -axa +fgL +ukN ati tfA aub -fFM +bRI ati awY ati -pKp -gzD +vBh +psS lyS lyS apu @@ -58098,7 +55252,7 @@ btF btF btF btF -aDi +gZI aDL ank ank @@ -58122,15 +55276,15 @@ ank ank ank aSb -aMq +qKN aky aky aky aky muv -rzT +rPo apN -gXy +xXG meP wYp jzZ @@ -58302,20 +55456,20 @@ jik fED jik dLY -asO -axa -axa +xpp +ukN +ukN ati atE rGB ati -rKj +exe ati -tJb +oGY ati ati -axa -ksQ +ukN +wKG lyS apu phU @@ -58326,7 +55480,7 @@ aky aky dbY btF -aDi +gZI aDI ank ank @@ -58350,7 +55504,7 @@ ank ank ank aSc -aMq +qKN aky aky aky @@ -58468,7 +55622,7 @@ fTM fTM vNT vAT -vkS +tOc ahv ahv slW @@ -58531,19 +55685,19 @@ dLY dLY dLY asP -axa +ukN ati ati ati avg ati -avT +erF ati -awZ +nPa atE -axa -jiR -dVQ +ukN +cKt +qNf lyS apu apu @@ -58554,7 +55708,7 @@ kFx aky aky btF -aDi +gZI aDJ ank ank @@ -58578,7 +55732,7 @@ ank ank ank aRZ -aMq +qKN aky btF btF @@ -58656,7 +55810,7 @@ pUm pUm vVC vVC -rhi +aHy bvj mNl oDE @@ -58701,13 +55855,13 @@ ahv ahv aeg aeg -qPO -aBi -aBi -aBi -aBi -aBi -afj +jgW +qin +qin +qin +qin +qin +xOh afS afS rYA @@ -58723,7 +55877,7 @@ xch xch xch xch -abz +tHD xch xch xch @@ -58758,20 +55912,20 @@ dLY dLY dLY dLY -asO -axa -axa +xpp +ukN +ukN ati ati avh ati -avU +cjM aub -fFM +bRI ati ati -axa -hQW +ukN +cat lyS apu apu @@ -58782,7 +55936,7 @@ vGg nSR aky btF -aDi +gZI aDK ank ank @@ -58794,7 +55948,7 @@ ank ank ank ank -aLz +qur ank ank ank @@ -58806,7 +55960,7 @@ ank ank ank aSa -aMq +qKN aky btF aky @@ -58938,7 +56092,7 @@ boe kPU afS ahv -vft +nGw agX agX agX @@ -58988,17 +56142,17 @@ dLY eCx asN asN -uEL -dql -bTw +pJd +ghu +ixy bqf ati -vHe +gLi atE ave ati -axa -axa +ukN +ukN lyS lyS apu @@ -59006,11 +56160,11 @@ apu apu muv akj -cac +rjU qBX nSR btF -aDi +gZI aDL ank ank @@ -59034,7 +56188,7 @@ ank ank ank aSb -aMq +qKN aky btF aky @@ -59216,17 +56370,17 @@ dLY dLY dLY abY -xQy -axa -axa +mTe +ukN +ukN cNH ati -avV +lBn ati xLi -axa -axa -vyz +ukN +ukN +fHC lyS apu apu @@ -59234,11 +56388,11 @@ apu apu pab phU -cac +rjU qBX tKI btF -aDi +gZI aDI ank ank @@ -59262,7 +56416,7 @@ ank ank ank aSc -aMq +qKN btF btF aky @@ -59369,7 +56523,7 @@ whU aco vAT vAT -bcU +jIl vAT whx lBl @@ -59444,17 +56598,17 @@ dLY dLY dLY abY -xQy -axa -axa -axa +mTe +ukN +ukN +ukN ati ati ati -axa -axa -axa -kBe +ukN +ukN +ukN +uIr lyS apu apu @@ -59466,7 +56620,7 @@ shq qBX tKI btF -aDi +gZI aDJ ank ank @@ -59490,7 +56644,7 @@ ank ank ank aRZ -aMq +qKN btF aky aky @@ -59567,7 +56721,7 @@ pUm pUm pUm aaQ -aaR +jTI aaQ acg acg @@ -59625,7 +56779,7 @@ ufW rac agX agX -pDK +snf agX agX rGZ @@ -59672,17 +56826,17 @@ dLY qcX dLY abY -mMv -axa -axa -pKp -axa +hLp +ukN +ukN +vBh +ukN ati -axa -axb -gWf -fFA -vVN +ukN +vpW +vqw +unm +wiR lyS apu apu @@ -59694,7 +56848,7 @@ aky shq rKQ btF -aDi +gZI aDK ank ank @@ -59718,7 +56872,7 @@ ank ank ank aSa -aMq +qKN btF anv akj @@ -59794,9 +56948,9 @@ pUm pUm pUm aaQ -aaR -aaR -aaR +jTI +jTI +jTI aaQ acg acg @@ -59874,7 +57028,7 @@ vty glS vty iJs -dTm +aoo hba hba hba @@ -59904,9 +57058,9 @@ atI abY abY asN -axa -axa -axa +ukN +ukN +ukN asN aFG aFG @@ -59922,10 +57076,9 @@ phU aky jtg btF -aDi +gZI aDL ank -ank ano ank ank @@ -59934,6 +57087,7 @@ ank ank ank ank +ank ano ank ank @@ -59946,7 +57100,7 @@ ank ano ank aSb -aMq +qKN btF aky aky @@ -60021,11 +57175,11 @@ pZb pUm pUm aaQ -aaR -aaS -aaR -aaR -aaR +jTI +tUf +jTI +jTI +jTI aaQ acg aaN @@ -60139,8 +57293,8 @@ asN ihS oUa oUa -deU -fFZ +dhm +dTk xDw apu apu @@ -60150,7 +57304,7 @@ pab aky aky btF -aDi +gZI ank aGE aEl @@ -60174,7 +57328,7 @@ aFM aGf aGE ank -aMq +qKN btF aky aky @@ -60249,11 +57403,11 @@ pZb pUm pUm aaQ -aaR -aaR -aba -aaR -aaR +jTI +jTI +sZI +jTI +jTI aaQ acg acg @@ -60334,7 +57488,7 @@ hba hba nWe hba -ePp +xVT hba hba mOA @@ -60367,9 +57521,9 @@ oUa isJ oUa kGk -dqz -ukZ -mvc +cso +iOy +oUF apu apu apu @@ -60378,31 +57532,31 @@ phU eHr aky btF -uVx -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -uVx -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -aDM -uVx +lNL +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +lNL +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +iNP +lNL btF aky akj @@ -60477,11 +57631,11 @@ pZb pUm vVC aaQ -aaR -aaR -aaS -aaR -aaR +jTI +jTI +tUf +jTI +jTI aaQ acg acg @@ -60534,7 +57688,7 @@ agX boe boe boe -ugT +rwc afS ahv agX @@ -60595,9 +57749,9 @@ oUa vbh dsi oUa -dqz -ukZ -ukZ +cso +iOy +iOy apu apu apu @@ -60674,7 +57828,7 @@ pZb cfL rYe uYj -qVi +qcP egc uYj mEo @@ -60706,9 +57860,9 @@ vVC vVC uBR aaQ -aaR -aaR -aaR +jTI +jTI +jTI aaQ nzw acg @@ -60762,7 +57916,7 @@ kRR agX boe boe -pRp +vIR afS ahv ahv @@ -60792,7 +57946,7 @@ ePV dKg syc hba -izv +oMm hba hba ajw @@ -60821,10 +57975,10 @@ oUa oUa oUa oUa -upV +fGJ oUa -njO -orB +oRG +hGQ apu apu oUa @@ -60990,7 +58144,7 @@ cpQ agX boe boe -pDh +xrz jFc ahv ahv @@ -61218,7 +58372,7 @@ aev agX boe boe -iat +xEr jFc ahv ahv @@ -61250,7 +58404,7 @@ vty uve iJs hba -izv +oMm ajw ajI ajI @@ -61311,9 +58465,9 @@ apu apu apN phU -hyU -iFp -fDq +tqM +rXc +vDS akj ncq apu @@ -61446,7 +58600,7 @@ agX boe boe boe -aji +cXF jFc ahv ahv @@ -61674,7 +58828,7 @@ boe boe boe boe -kVj +rJO afS ahv ahv @@ -61767,9 +58921,9 @@ apu aHN phU ugk -asJ -atk -rpR +bZt +rtg +ioz phU phU eDS @@ -61784,7 +58938,7 @@ lBw eTQ opS opS -gUq +fLg wpw lBw lBw @@ -61861,7 +59015,7 @@ eZC uBR pUm vVC -rAU +wZR lhE acg acg @@ -61934,7 +59088,7 @@ uve uve iJs hba -iVg +kDW hba hIh kJm @@ -62238,7 +59392,7 @@ qjt wpw wpw eTQ -opS +wgJ lnV qgA lBw @@ -62365,7 +59519,7 @@ ahv ahv xch xch -abz +tHD xch ahr xch @@ -62394,7 +59548,7 @@ hba nWe hba hba -jum +lHG ogM oHu ajI @@ -62403,7 +59557,7 @@ wkt efX efX hWj -pmz +xUH mqJ cCr dLY @@ -62604,7 +59758,7 @@ jxR uve uve uve -vty +bll git vty moM @@ -62620,7 +59774,7 @@ uve iJs hba hba -eNQ +utE hba mqJ ogM @@ -62629,7 +59783,7 @@ fXD efX tZa ogM -vIt +bKE ogM ogM mqJ @@ -62852,10 +60006,10 @@ hba hba mqJ ogM -mjm +uYO ogM ogM -pmz +xUH ogM ogM ogM @@ -63062,7 +60216,7 @@ uve vty vty nED -glS +fra vty uve uve diff --git a/maps/map_files/LV624/armory/10.cheese.dmm b/maps/map_files/LV624/armory/10.cheese.dmm index 347e392787..bf6d89ea6f 100644 --- a/maps/map_files/LV624/armory/10.cheese.dmm +++ b/maps/map_files/LV624/armory/10.cheese.dmm @@ -1,47 +1,47 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "b" = ( /obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "c" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"d" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 + }, +/obj/structure/surface/rack{ + layer = 2.5 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) "e" = ( /obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) "g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) "h" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "i" = ( /turf/closed/wall/r_wall, @@ -53,9 +53,7 @@ /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, /obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "l" = ( /obj/effect/decal/cleanable/cobweb2, @@ -64,23 +62,16 @@ /obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "m" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "n" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "o" = ( /obj/structure/machinery/light/small{ @@ -91,14 +82,10 @@ /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, /obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "p" = ( -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "q" = ( /obj/structure/surface/rack, @@ -106,38 +93,22 @@ /obj/effect/landmark/crap_item, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/verymature, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "r" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "s" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "u" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Secure Vault APC"; - pixel_x = -28; - start_charge = 0 - }, /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/cheesewedge/verymature{ pixel_x = -7; @@ -150,9 +121,19 @@ /obj/item/reagent_container/food/snacks/cheesewedge/verymature{ pixel_y = 6 }, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"w" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/mousetraps{ + pixel_x = -5 + }, +/obj/item/paper/lv_624/cheese{ + pixel_x = 8; + pixel_y = -4 }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "y" = ( /obj/structure/window/reinforced{ @@ -163,28 +144,21 @@ /obj/item/ammo_magazine/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) "z" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "A" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "B" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) "C" = ( /obj/structure/machinery/door_control{ @@ -200,42 +174,8 @@ /obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ pixel_y = -6 }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"L" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/mousetraps{ - pixel_x = -5 - }, -/obj/item/paper/lv_624/cheese{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"O" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) "Q" = ( /obj/structure/surface/rack, /obj/effect/landmark/crap_item, @@ -247,9 +187,7 @@ pixel_x = -4; pixel_y = -3 }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) (1,1,1) = {" @@ -308,7 +246,7 @@ i l q Q -L +w p i "} @@ -325,7 +263,7 @@ B i "} (7,1,1) = {" -O +d g a j diff --git a/maps/map_files/LV624/armory/10.extra.dmm b/maps/map_files/LV624/armory/10.extra.dmm index 53a94ef204..67b62dc7fd 100644 --- a/maps/map_files/LV624/armory/10.extra.dmm +++ b/maps/map_files/LV624/armory/10.extra.dmm @@ -1,55 +1,30 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"b" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"c" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"e" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"h" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"d" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "i" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) "j" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) -"k" = ( +"v" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/machinery/door_control{ + id = "garage_blast"; + name = "Garage Shutters"; + pixel_x = -26; + range = 200 + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"w" = ( /obj/structure/surface/rack{ layer = 2.5 }, @@ -57,65 +32,48 @@ /obj/item/ammo_magazine/shotgun/slugs, /obj/item/ammo_magazine/shotgun/flechette, /obj/item/ammo_magazine/shotgun/incendiary, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"l" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, +"x" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"z" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/east_central_jungle) +"D" = ( +/obj/item/storage/toolbox/syndicate, /obj/structure/surface/rack{ layer = 2.5 }, -/obj/item/reagent_container/hypospray/autoinjector/dexalinp{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/reagent_container/hypospray/autoinjector/tricord, /obj/effect/landmark/crap_item, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, +/obj/item/ammo_magazine/smg/m39/extended, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"m" = ( +"E" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"n" = ( +"G" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"H" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"I" = ( /obj/structure/machinery/deployable/barrier, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"o" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/explosive/grenade/flashbang, -/obj/item/explosive/grenade/flashbang, -/obj/item/ammo_magazine/shotgun/beanbag, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"p" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"q" = ( +"J" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"K" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"M" = ( /obj/structure/surface/rack{ layer = 2.5 }, @@ -123,43 +81,54 @@ /obj/effect/landmark/crap_item, /obj/item/ammo_magazine/smg/m39/extended, /obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"r" = ( -/obj/structure/machinery/light/small{ +"N" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"O" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 }, -/area/lv624/lazarus/security) -"s" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/surface/rack{ + layer = 2.5 }, -/area/lv624/lazarus/armory) -"t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv624/lazarus/security) -"u" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Secure Vault APC"; - pixel_x = -28; - start_charge = 0 +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"P" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"Q" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/reagent_container/hypospray/autoinjector/dexalinp{ + pixel_x = -2; + pixel_y = -2 }, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"y" = ( +"R" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -168,85 +137,56 @@ /obj/item/ammo_magazine/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"z" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/east_central_jungle) -"A" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"B" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory" - }, -/turf/open/floor{ - icon_state = "cult" - }, +"S" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"C" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/machinery/door_control{ - id = "garage_blast"; - name = "Garage Shutters"; - pixel_x = -26; - range = 200 - }, -/turf/open/floor{ - icon_state = "cult" +"T" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv624/lazarus/armory) -"L" = ( -/obj/item/storage/toolbox/syndicate, /obj/structure/surface/rack{ layer = 2.5 }, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/explosive/grenade/flashbang, +/obj/item/explosive/grenade/flashbang, +/obj/item/ammo_magazine/shotgun/beanbag, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"U" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"V" = ( +/obj/structure/machinery/light/small, /obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"W" = ( /obj/effect/landmark/crap_item, -/obj/item/ammo_magazine/smg/m39/extended, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"Z" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/window/reinforced{ +"X" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"Y" = ( +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) (1,1,1) = {" -a -a -a -a +H +H +H +H i i i @@ -255,74 +195,74 @@ z z "} (2,1,1) = {" -b -e -e -e +J +N +N +N i -n -s +I +S i i i "} (3,1,1) = {" -a -a -h +H +H +V i i -o -p -u -C +T +G +U +v i "} (4,1,1) = {" -a -a -a +H +H +H i -k -p -p -p -A +w +G +G +G +W i "} (5,1,1) = {" -a -a -a +H +H +H i -l -q -q -L -p +Q +M +M +D +G i "} (6,1,1) = {" -c -f -a +K +x +H i i i i i -B +P i "} (7,1,1) = {" -Z -g -a +O +Y +H j -m -r -t -y -t +E +X +d +R +d j "} diff --git a/maps/map_files/LV624/armory/10.looted.dmm b/maps/map_files/LV624/armory/10.looted.dmm index ae5bbef21b..ec29591b3d 100644 --- a/maps/map_files/LV624/armory/10.looted.dmm +++ b/maps/map_files/LV624/armory/10.looted.dmm @@ -1,173 +1,115 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"b" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"c" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"e" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"f" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"g" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"h" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/item/stack/tile/plasteel, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"d" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "i" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) "j" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) -"k" = ( -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg3" +"v" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/structure/surface/table, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"x" = ( +/turf/open/floor/whiteyellow/north, /area/lv624/lazarus/main_hall) -"l" = ( -/turf/open/floor{ - icon_state = "platingdmg3" - }, +"z" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/east_central_jungle) +"D" = ( +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"m" = ( +"E" = ( /obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"n" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" +"F" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"G" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"o" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +"H" = ( +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) -"p" = ( -/turf/open/floor{ - icon_state = "cult" +"I" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"J" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/item/stack/sheet/metal, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"q" = ( -/turf/open/floor{ - icon_state = "platingdmg3" +"K" = ( +/obj/structure/machinery/door_control{ + id = "garage_blast"; + name = "Garage Shutters"; + pixel_x = -26; + range = 200 }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"r" = ( +"L" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"M" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"N" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/red/northeast, /area/lv624/lazarus/security) -"s" = ( +"O" = ( /obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"t" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"u" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Secure Vault APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "cult" - }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"w" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "cult" - }, +"P" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"R" = ( +/turf/open/floor/platingdmg3, /area/lv624/lazarus/armory) -"y" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"z" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/east_central_jungle) -"A" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "cult" +"S" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv624/lazarus/armory) -"B" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"U" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"V" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ locked = 1; name = "\improper Nexus Dome Armory" }, -/turf/open/floor{ - icon_state = "cult" - }, +/turf/open/floor/cult, /area/lv624/lazarus/armory) -"Q" = ( +"W" = ( /obj/item/handset{ desc = "A model of an ancient Earth communication device."; force = 8 @@ -182,27 +124,25 @@ dir = 1 }, /obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, +/turf/open/floor/wood, /area/lv624/lazarus/main_hall) -"T" = ( -/obj/structure/machinery/door_control{ - id = "garage_blast"; - name = "Garage Shutters"; - pixel_x = -26; - range = 200 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) +"X" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"Y" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"Z" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) (1,1,1) = {" -a -a -a -a +D +D +D +D i i i @@ -211,74 +151,74 @@ z z "} (2,1,1) = {" -b -h -e -e +X +S +F +F i -n -s +O +d i i i "} (3,1,1) = {" -a -a -k +D +D +L i i -A -p -u -T +J +M +I +K i "} (4,1,1) = {" -a -a -l -q -w -p -p -p -p +D +D +H +R +G +M +M +M +M i "} (5,1,1) = {" -a -a -o +D +D +U i -w -w -w -w -p +G +G +G +G +M i "} (6,1,1) = {" -c -f -a +Y +P +D i i i i i -B +V i "} (7,1,1) = {" -Q -g -a +W +x +D j -m -r -t -y -t +E +N +Z +v +Z j "} diff --git a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm index 50bb156910..9152f2e091 100644 --- a/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm +++ b/maps/map_files/LV624/cargospecial/cargospecial3_gear.dmm @@ -1,12 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( +"e" = ( /obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) -"f" = ( +"h" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/etool{ pixel_x = 6 @@ -15,11 +14,28 @@ pixel_x = -6 }, /obj/item/tool/shovel/etool, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"p" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/storage/webbing, +/obj/effect/landmark/wo_supplies/storage/webbing, +/obj/effect/landmark/wo_supplies/storage/webbing, +/obj/item/poster, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"w" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/stack/folding_barricade, +/obj/item/explosive/grenade/high_explosive/frag, +/obj/item/explosive/grenade/high_explosive/frag{ + pixel_x = 6 }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"i" = ( +"D" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal{ amount = 50 @@ -29,20 +45,12 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"A" = ( -/obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"E" = ( +/turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"C" = ( +"K" = ( /obj/structure/surface/rack, /obj/item/clothing/shoes/veteran/pmc, /obj/item/clothing/shoes/veteran/pmc{ @@ -55,64 +63,36 @@ }, /obj/item/poster, /obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"E" = ( -/turf/open/floor/vault, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) -"J" = ( +"U" = ( /obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/facepaint/skull, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) -"R" = ( +"Y" = ( /obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/storage/webbing, -/obj/effect/landmark/wo_supplies/storage/webbing, -/obj/effect/landmark/wo_supplies/storage/webbing, -/obj/item/poster, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"V" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, /obj/item/stack/folding_barricade, -/obj/item/explosive/grenade/high_explosive/frag, -/obj/item/explosive/grenade/high_explosive/frag{ - pixel_x = 6 - }, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/facepaint/skull, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) (1,1,1) = {" -R +p E -a +U "} (2,1,1) = {" -A +e E -C +K "} (3,1,1) = {" -i +D E -f +h "} (4,1,1) = {" -V +w E -J +Y "} diff --git a/maps/map_files/LV624/centralcaves/10.T.dmm b/maps/map_files/LV624/centralcaves/10.T.dmm index 8e4b087612..e70ab651a0 100644 --- a/maps/map_files/LV624/centralcaves/10.T.dmm +++ b/maps/map_files/LV624/centralcaves/10.T.dmm @@ -1,16 +1,22 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 5 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) "b" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 10 + dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "c" = ( -/obj/effect/decal/grass_overlay/grass1{ +/obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/caves/central_caves) "d" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) @@ -26,6 +32,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"h" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) "i" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -33,10 +43,8 @@ /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "j" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 5 - }, -/turf/open/gm/dirt, +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) "k" = ( /turf/open/gm/dirt, @@ -53,99 +61,99 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"o" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"p" = ( +"q" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/ground/barrens/containers) -"q" = ( +"s" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "t" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) "u" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +/area/lv624/ground/caves/central_caves) "v" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) "w" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"x" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"y" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) "A" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "B" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ +/obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "D" = ( -/obj/effect/decal/grass_overlay/grass1{ +/obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"E" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/caves/south_central_caves) "F" = ( -/turf/open/auto_turf/strata_grass/layer1, +/obj/effect/decal/grass_overlay/grass1{ + dir = 10 + }, +/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) "G" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"H" = ( +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) "I" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) +/area/lv624/ground/barrens/north_east_barrens) "K" = ( -/turf/closed/wall/strata_ice/jungle, +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 2; + pixel_y = 7; + light_on = 1; + light_range = 1; + light_system = 1 + }, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"L" = ( +"M" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/barrens/north_east_barrens) +"N" = ( +/obj/effect/landmark/hunter_primary, /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 + dir = 9 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"O" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"P" = ( -/turf/open/auto_turf/strata_grass/layer1, +"O" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 1 + }, +/turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) "Q" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -158,34 +166,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"T" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"S" = ( /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) +/area/lv624/ground/caves/south_central_caves) "U" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"V" = ( -/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"X" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"Y" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 8 - }, +"V" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"W" = ( +/obj/structure/fence, +/turf/open/floor/warning/northwest, +/area/lv624/ground/barrens/containers) "Z" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -194,13 +188,13 @@ (1,1,1) = {" f g -c -D B -F -F -q b +N +S +S +s +F Q V V @@ -218,12 +212,12 @@ l f g R -O -F -y -F -F -I +U +S +K +S +S +v Q V V @@ -241,12 +235,12 @@ l f g R -F -F -K -K +S +S +E +E l -I +v Q V G @@ -265,8 +259,8 @@ f A l l -K -K +E +E l l l @@ -810,14 +804,14 @@ V l l l -o +W "} (28,1,1) = {" f e -Y -Y -Y +D +D +D l l l @@ -833,13 +827,13 @@ V l l l -p +q "} (29,1,1) = {" f -L -F -F +O +S +S l l l @@ -856,12 +850,12 @@ l l l l -p +q "} (30,1,1) = {" f -L -x +O +j l l l @@ -879,13 +873,13 @@ l k k k -p +q "} (31,1,1) = {" f -X +c Z -K +E l l l @@ -902,19 +896,19 @@ k k k k -p +q "} (32,1,1) = {" -L -P -K -K +O +u +E +E l l l l -K -K +E +E l l l @@ -925,20 +919,20 @@ k k m k -p +q "} (33,1,1) = {" f -j -U -v -v -v -u -K -K -T +a +h +H +H +H +M +E +E t +I l k k @@ -948,5 +942,5 @@ k k k k -p +q "} diff --git a/maps/map_files/LV624/centralcaves/10.qc.dmm b/maps/map_files/LV624/centralcaves/10.qc.dmm index 1374567128..ce8185e3aa 100644 --- a/maps/map_files/LV624/centralcaves/10.qc.dmm +++ b/maps/map_files/LV624/centralcaves/10.qc.dmm @@ -1,7 +1,34 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"bV" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"dd" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"gU" = ( +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/central_caves) +"hJ" = ( +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"hP" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; + pixel_x = 11; pixel_y = -2; light_on = 1; light_range = 1; @@ -9,149 +36,139 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"ab" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, +"iS" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"ac" = ( +"kc" = ( +/obj/structure/flora/bush/ausbushes/pointybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"ks" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 4; + pixel_x = 2; + pixel_y = 7; light_on = 1; light_range = 1; light_system = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"ad" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"lp" = ( /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"af" = ( -/turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"ag" = ( +"lq" = ( +/turf/closed/wall/rock/brown, +/area/lv624/ground/barrens/west_barrens) +"mN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"oB" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"ah" = ( +"oJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"ai" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 11; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"pd" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aj" = ( -/obj/effect/landmark/hunter_primary, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 10 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"ak" = ( -/turf/open/gm/dirt, +"pC" = ( +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"al" = ( -/turf/closed/wall/rock/brown, +"pR" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"an" = ( +"qK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"ao" = ( +"ry" = ( +/obj/structure/flora/bush/ausbushes/var3/leafybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"sL" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"ap" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aq" = ( +"sO" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/caves/south_central_caves) +"tF" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, +/turf/open/floor/warning/northwest, /area/lv624/ground/barrens/containers) -"ar" = ( +"vB" = ( /obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, +/turf/open/floor/warning/north, /area/lv624/ground/barrens/containers) -"as" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 8 - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"at" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8 +"vC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"au" = ( -/obj/effect/decal/grass_overlay/grass1, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"av" = ( +"vR" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aw" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"ay" = ( +"wk" = ( /turf/closed/wall/rock/brown, -/area/lv624/ground/barrens/west_barrens) -"az" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 10 - }, -/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aA" = ( +"wL" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aB" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 4 - }, +"yv" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/decal/grass_overlay/grass1, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"yD" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"aC" = ( +"yO" = ( +/obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"aD" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/area/lv624/ground/barrens/north_east_barrens) +"zh" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 1 + dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aE" = ( +"An" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/south_central_caves) +"DG" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_central_caves) +"ER" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aF" = ( +"GE" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; light_on = 1; @@ -160,56 +177,47 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"aG" = ( +"GR" = ( /obj/effect/landmark/hunter_primary, /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aH" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = 2; - pixel_y = 7; - light_on = 1; - light_range = 1; - light_system = 1 - }, +"Is" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/lv624/ground/caves/central_caves) +"Jf" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aI" = ( +"JB" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 6 + dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aJ" = ( +"JX" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/barrens/north_east_barrens) -"aK" = ( -/obj/effect/decal/grass_overlay/grass1{ - dir = 9 - }, -/turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aL" = ( +"KX" = ( +/turf/open/gm/dirt, +/area/lv624/ground/barrens/west_barrens) +"Od" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1, +/obj/effect/decal/grass_overlay/grass1{ + dir = 1 + }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aM" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"aN" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ - pixel_x = 8; - pixel_y = 13 - }, +"Oe" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"aQ" = ( +/area/lv624/ground/caves/central_caves) +"Pd" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /obj/effect/decal/grass_overlay/grass1{ @@ -217,845 +225,831 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"aR" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"aS" = ( -/obj/effect/decal/grass_overlay/grass1, +"PB" = ( /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"aT" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, +/area/lv624/ground/caves/central_caves) +"Rx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"Tu" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 +/obj/effect/decal/grass_overlay/grass1{ + dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aV" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +"Uu" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = 4; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aW" = ( +"UB" = ( /obj/effect/decal/grass_overlay/grass1/inner{ - dir = 6 + dir = 1 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/south_central_caves) -"aX" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/caves/south_central_caves) -"aY" = ( +/area/lv624/ground/caves/central_caves) +"Vd" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/grass_overlay/grass1/inner{ + dir = 9 + }, /turf/open/gm/dirt, -/area/lv624/ground/barrens/west_barrens) -"aZ" = ( -/obj/structure/flora/bush/ausbushes/pointybush, +/area/lv624/ground/caves/south_central_caves) +"VY" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 + }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"pN" = ( +"Xj" = ( /obj/effect/decal/grass_overlay/grass1{ - dir = 1 + dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"yO" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/amanita, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/south_central_caves) -"zb" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"AO" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 9 - }, +"XV" = ( /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"Cb" = ( -/obj/effect/decal/grass_overlay/grass1/inner{ - dir = 1 +/area/lv624/ground/caves/south_central_caves) +"ZM" = ( +/obj/effect/decal/grass_overlay/grass1{ + dir = 4 }, /turf/open/gm/dirt, -/area/lv624/ground/caves/central_caves) -"Fo" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) -"MU" = ( +/area/lv624/ground/barrens/north_east_barrens) +"ZU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"To" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/auto_turf/strata_grass/layer1, -/area/lv624/ground/caves/central_caves) (1,1,1) = {" -af -an -aK -as -aG -av -av -aA -az -an -aC -ag -aC -aC -al -al -al -al -al -al -al +PB +qK +dd +DG +Vd +ER +ER +wL +Xj +qK +XV +sL +XV +XV +wk +wk +wk +wk +wk +wk +wk "} (2,1,1) = {" -af -an -pN -ad -av -aH -av -av -aS -an -aC -aC -aC -aC -aC -al -al -al -al -ay -aY +PB +qK +JB +Rx +ER +ks +ER +ER +hJ +qK +XV +XV +XV +XV +XV +wk +wk +wk +wk +lq +KX "} (3,1,1) = {" -af -an -pN -av -av -aX -aX -al -aS -an -aC -aC -aC -aC -aC -aC -al -al -al -aY -aY +PB +qK +JB +ER +ER +sO +sO +wk +hJ +qK +XV +XV +XV +XV +XV +XV +wk +wk +wk +KX +KX "} (4,1,1) = {" -af -aw -al -al -aX -aX -al -al -al -al -al -aC -aC -aC -aC -aC -al -al -al -aY -aY +PB +aD +wk +wk +sO +sO +wk +wk +wk +wk +wk +XV +XV +XV +XV +XV +wk +wk +wk +KX +KX "} (5,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -aC -aC -aC -aC -aC -aC -al -al -ay -aY +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +XV +XV +XV +XV +XV +XV +wk +wk +lq +KX "} (6,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -al -al -aC -aC -aC -aC -aC -al -ay -aY +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +XV +XV +XV +XV +XV +wk +lq +KX "} (7,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -al -al -al -aE -aL -an -an -al -al -ay +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +Tu +yv +qK +qK +wk +wk +lq "} (8,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -al -al -al -av -aA -az -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +ER +wL +Xj +XV +XV +wk +wk "} (9,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -al -al -av -aZ -av -aS -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +ER +kc +ER +hJ +XV +XV +wk +wk "} (10,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -al -aX -av -av -av -aS -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +ER +ER +ER +hJ +XV +XV +wk +wk "} (11,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -aX -aX -aH -av -aW -aI -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +sO +ks +ER +bV +zh +XV +XV +wk +wk "} (12,1,1) = {" -al -al -al -al -al -al -al -al -al -al -aX -aX -aX -av -av -aS -ag -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +sO +sO +ER +ER +hJ +sL +XV +XV +wk +wk "} (13,1,1) = {" -al -al -al -al -al -al -al -al -al -al -aX -av -av -ad -av -aj -az -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +ER +ER +Rx +ER +GR +Xj +XV +XV +wk +wk "} (14,1,1) = {" -al -al -al -al -al -al -al -al -al -al -al -aX -av -av -av -av -aS -aC -aC -al -al +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +ER +ER +ER +ER +hJ +XV +XV +wk +wk "} (15,1,1) = {" -al -al -al -al -al -al -aC -aC -al -al -al -ab -at -av -av -av -aS -aC -aC -al -al +wk +wk +wk +wk +wk +wk +XV +XV +wk +wk +wk +pd +iS +ER +ER +ER +hJ +XV +XV +wk +wk "} (16,1,1) = {" -al -al -al -al -al -aC -aC -aC -aC -al -al -al -aX -aX -av -ai -aS -aC -al -al -al +wk +wk +wk +wk +wk +XV +XV +XV +XV +wk +wk +wk +sO +sO +ER +hP +hJ +XV +wk +wk +wk "} (17,1,1) = {" -al -al -al -aC -aC -aC -aC -aC -aC -aC -al -al -al -aX -av -av -aS -aC -al -al -al +wk +wk +wk +XV +XV +XV +XV +XV +XV +XV +wk +wk +wk +sO +ER +ER +hJ +XV +wk +wk +wk "} (18,1,1) = {" -al -al -al -aC -aC -ag -aC -aC -aC -ag -aC -aC -al -aX -av -aM -aS -aC -al -al -al +wk +wk +wk +XV +XV +sL +XV +XV +XV +sL +XV +XV +wk +sO +ER +Jf +hJ +XV +wk +wk +wk "} (19,1,1) = {" -al -al -aC -aC -aC -aC -aC -aC -aC -aC -aC -aC -aD -av -av -av -aA -az -aC -al -al +wk +wk +XV +XV +XV +XV +XV +XV +XV +XV +XV +XV +Od +ER +ER +ER +wL +Xj +XV +wk +wk "} (20,1,1) = {" -al -aC -aC -aC -aC -aC -al -al -aC -aC -aC -aC -aD -av -av -aa -ad -aS -aC -al -al +wk +XV +XV +XV +XV +XV +wk +wk +XV +XV +XV +XV +Od +ER +ER +VY +Rx +hJ +XV +wk +wk "} (21,1,1) = {" -af -aC -aC -aC -aC -aC -al -al -aC -aC -aC -ag -aQ -av -av -av -av -aS -aC -al -al +PB +XV +XV +XV +XV +XV +wk +wk +XV +XV +XV +sL +Pd +ER +ER +ER +ER +hJ +XV +wk +wk "} (22,1,1) = {" -af -aC -ag -aC -aC -al -al -al -al -aC -aC -aC -aD -av -ad -av -ap -aS -aC -al -al +PB +XV +sL +XV +XV +wk +wk +wk +wk +XV +XV +XV +Od +ER +Rx +ER +JX +hJ +XV +wk +wk "} (23,1,1) = {" -af -af -aC -aC -al -al -al -al -al -al -aC -aC -aD -av -aT -av -aW -aI -aC -al -al +PB +PB +XV +XV +wk +wk +wk +wk +wk +wk +XV +XV +Od +ER +ry +ER +bV +zh +XV +wk +wk "} (24,1,1) = {" -af -af -aC -aC -al -al -al -al -al -al -al -al -al -aN -av -av -aS -aC -al -al -al +PB +PB +XV +XV +wk +wk +wk +wk +wk +wk +wk +wk +wk +pR +ER +ER +hJ +XV +wk +wk +wk "} (25,1,1) = {" -af -af -aC -al -al -al -al -al -al -al -aX -aX -av -av -av -ad -aS -aC -al -al -al +PB +PB +XV +wk +wk +wk +wk +wk +wk +wk +sO +sO +ER +ER +ER +Rx +hJ +XV +wk +wk +wk "} (26,1,1) = {" -af -af -aC -al -al -al -al -al -al -al -aX -av -av -av -ac -av -aS -al -al -al -al +PB +PB +XV +wk +wk +wk +wk +wk +wk +wk +sO +ER +ER +ER +Uu +ER +hJ +wk +wk +wk +wk "} (27,1,1) = {" -af -af -al -al -al -al -al -al -al -al -aX -aX -av -av -av -av -aS -al -al -al -aq +PB +PB +wk +wk +wk +wk +wk +wk +wk +wk +sO +sO +ER +ER +ER +ER +hJ +wk +wk +wk +tF "} (28,1,1) = {" -af -ah -al -al -al -al -al -al -al -al -al -al -al -av -av -av -al -al -al -al -ar +PB +oJ +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +ER +ER +ER +wk +wk +wk +wk +vB "} (29,1,1) = {" -af -Cb -al -al -al -al -al -al -al -al -al -aX -aX -aV -aV -aU -al -al -al -al -ar +PB +UB +wk +wk +wk +wk +wk +wk +wk +wk +wk +sO +sO +An +An +vC +wk +wk +wk +wk +vB "} (30,1,1) = {" -af -Cb -yO -al -al -al -al -al -al -al -al -al -al -aB -aB -aB -al -al -ak -ak -ar +PB +UB +oB +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +ZM +ZM +ZM +wk +wk +yD +yD +vB "} (31,1,1) = {" -af -AO -To -aX -al -al -al -al -al -al -al -al -ak -ak -ak -ak -ak -ak -ak -ak -ar +PB +gU +Oe +sO +wk +wk +wk +wk +wk +wk +wk +wk +yD +yD +yD +yD +yD +yD +yD +yD +vB "} (32,1,1) = {" -Cb -Fo -aX -aX -al -al -al -al -aX -aX -al -al -al -ak -ak -ak -ak -ak -ao -ak -ar +UB +lp +sO +sO +wk +wk +wk +wk +sO +sO +wk +wk +wk +yD +yD +yD +yD +yD +mN +yD +vB "} (33,1,1) = {" -af -MU -zb -aJ -aJ -aJ -aR -aX -aX -aF -au -al -ak -ak -ak -ak -ak -ak -ak -ak -ar +PB +ZU +Is +pC +pC +pC +vR +sO +sO +GE +yO +wk +yD +yD +yD +yD +yD +yD +yD +yD +vB "} diff --git a/maps/map_files/LV624/crashedship/10.digsite.dmm b/maps/map_files/LV624/crashedship/10.digsite.dmm index ed653d985f..8fa2618f3b 100644 --- a/maps/map_files/LV624/crashedship/10.digsite.dmm +++ b/maps/map_files/LV624/crashedship/10.digsite.dmm @@ -8,32 +8,14 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"bB" = ( -/obj/item/clothing/shoes/veteran/pmc, -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"bQ" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) "bT" = ( /obj/structure/shuttle/engine/propulsion, /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"cv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"cV" = ( -/obj/item/storage/toolbox/electrical, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "cZ" = ( /obj/item/storage/toolbox/mechanical, /obj/effect/decal/cleanable/blood, @@ -44,43 +26,26 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"eW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) -"gu" = ( -/obj/item/stack/cable_coil/random, -/obj/item/explosive/grenade/high_explosive, -/obj/item/explosive/grenade/high_explosive, +"fH" = ( /obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"ip" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"iw" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "jo" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"jE" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"jB" = ( +/obj/item/clothing/shoes/veteran/pmc, +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"kp" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"ke" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "kP" = ( /obj/structure/girder/displaced, @@ -108,11 +73,20 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"rP" = ( +"qf" = ( /obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" +/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"ql" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"re" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "tf" = ( /obj/structure/machinery/constructable_frame{ @@ -121,11 +95,6 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"tv" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/ground/barrens/north_east_barrens) "uw" = ( /obj/structure/bed/chair{ dir = 8 @@ -142,11 +111,6 @@ /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"xg" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "xt" = ( /obj/item/ammo_magazine/rifle/m16, /obj/item/ammo_magazine/rifle/m16, @@ -174,11 +138,12 @@ "AA" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) -"BQ" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"AE" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"Ch" = ( +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "Dw" = ( /obj/item/tool/shovel/spade, @@ -189,12 +154,6 @@ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) -"DT" = ( -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "Fg" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -228,18 +187,13 @@ /obj/effect/decal/remains/human, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"Kz" = ( -/obj/item/tool/crowbar, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"Ku" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"KG" = ( -/obj/structure/bed/chair/dropship/pilot, -/obj/item/clothing/head/helmet/marine/veteran/pmc/leader, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"LK" = ( +/obj/item/tool/crowbar, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "LQ" = ( /obj/effect/landmark/corpsespawner/security, @@ -261,12 +215,9 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"RT" = ( -/obj/item/explosive/grenade/high_explosive/pmc, -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"SB" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "SJ" = ( /turf/template_noop, @@ -280,6 +231,17 @@ /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"Vm" = ( +/obj/item/stack/cable_coil/random, +/obj/item/explosive/grenade/high_explosive, +/obj/item/explosive/grenade/high_explosive, +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"Wq" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "Wu" = ( /obj/effect/decal/remains/human, /turf/open/gm/dirt, @@ -290,6 +252,14 @@ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"WG" = ( +/obj/item/explosive/grenade/high_explosive/pmc, +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"WL" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "WP" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) @@ -300,12 +270,6 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"ZH" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) (1,1,1) = {" AA @@ -334,12 +298,12 @@ PE AA Xk tf -KG +qf yJ -xg +Ch cZ yV -xg +Ch Xk Xk Xk @@ -356,37 +320,37 @@ PE (3,1,1) = {" AA Xk -gu +Vm yV -xg +Ch LQ nt -xg +Ch Dw yV -cV +Ku Xk zH PE Wu PE PE -eW -tv +Wq +bQ Fk PE "} (4,1,1) = {" AA Xk -xg +Ch oT -xg +Ch Xy HK -jE +ql vD -xg +Ch nt SX Fg @@ -405,12 +369,12 @@ kP yJ yV IP -cv -BQ -jE -bB -xg -xg +re +iw +ql +jB +Ch +Ch Fg yV PE @@ -429,9 +393,9 @@ xt Xy yV zH -Kz -DT -DT +LK +fH +fH zH IP nt @@ -449,42 +413,42 @@ PE AA OV Ie -kp +SB zH -RT -DT +WG +fH LQ -ip +ke UG -xg +Ch Xk Xk PE PE -ZH +WL PE pp bT -ZH -tv +WL +bQ "} (8,1,1) = {" AA kP Xk -rP -xg +AE +Ch zH -cv +re uw -cv +re Xk Gs Xk DD PE -ZH -tv +WL +bQ PE PE PE diff --git a/maps/map_files/LV624/crashedship/10.swapped.dmm b/maps/map_files/LV624/crashedship/10.swapped.dmm index da7a6e4da1..5c9d7dcb06 100644 --- a/maps/map_files/LV624/crashedship/10.swapped.dmm +++ b/maps/map_files/LV624/crashedship/10.swapped.dmm @@ -5,6 +5,12 @@ icon_state = "wall3" }, /area/lv624/lazarus/crashed_ship_containers) +"bJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "bL" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -15,12 +21,6 @@ "dZ" = ( /turf/closed/wall/sulaco, /area/lv624/ground/barrens/north_east_barrens) -"eC" = ( -/obj/item/storage/firstaid/adv, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "fb" = ( /obj/structure/bed/chair{ dir = 4 @@ -31,13 +31,6 @@ /obj/effect/landmark/corpsespawner/security, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"fx" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "fC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, @@ -46,6 +39,14 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"he" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"hz" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "iF" = ( /obj/item/explosive/grenade/high_explosive, /turf/open/gm/dirt, @@ -57,6 +58,9 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"iL" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) "jM" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -66,28 +70,10 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"mG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"ng" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"pd" = ( -/obj/item/ammo_magazine/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"mS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "pg" = ( /obj/effect/alien/weeds/node, /turf/open/gm/dirt, @@ -103,12 +89,6 @@ /obj/structure/foamed_metal, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"qk" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "sq" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -117,6 +97,20 @@ /obj/effect/decal/remains/human, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"tB" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"uo" = ( +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"ur" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "vh" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/m16, @@ -138,62 +132,32 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"zg" = ( +/obj/item/ammo_magazine/rifle/m16, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "zh" = ( /obj/effect/spawner/random/toolbox, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"At" = ( -/obj/structure/foamed_metal, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"Aj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m16, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "AI" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"AT" = ( -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"BI" = ( +"CJ" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"BW" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" + dir = 4 }, +/obj/structure/foamed_metal, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"CI" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/ground/barrens/north_east_barrens) "Dq" = ( /turf/template_noop, /area/lv624/ground/caves/central_caves) -"Ex" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m16, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"EH" = ( -/obj/item/ammo_magazine/rifle/m16/ap, -/obj/item/ammo_magazine/rifle/m16/ap, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "Fb" = ( /turf/closed/shuttle{ icon_state = "wall3" @@ -208,62 +172,46 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"IN" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "IT" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/blood/oil, /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"Jl" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"Lc" = ( +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"KY" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"LJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/rifle/m16/ap, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) -"My" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) "NQ" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"Pa" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "Pp" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"Qq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"PN" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "QE" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_east_caves) -"Sj" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) +"Rk" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "SS" = ( /obj/structure/foamed_metal, /turf/open/gm/dirt, @@ -287,13 +235,14 @@ "Vy" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"Wh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, +"VN" = ( +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"Wg" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, /area/lv624/lazarus/crashed_ship_containers) "WE" = ( /obj/item/explosive/grenade/high_explosive, @@ -305,6 +254,15 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"XT" = ( +/obj/item/storage/firstaid/adv, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"Yw" = ( +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) (1,1,1) = {" Um @@ -333,12 +291,12 @@ Vy Um cb iK -ng +CJ fb -eC +XT fb -pd -Wh +zg +ur cb cb cb @@ -355,35 +313,35 @@ Vy (3,1,1) = {" Um cb -EH +Yw SS -AT +VN AI Pp -Pa +Lc AI -qk -At +PN +uo cb SS gQ Vf Vy Vy -Sj -CI +mS +iL pg Vy "} (4,1,1) = {" Um cb -At +uo zh fb fb -Ex -Jl +Aj +Rk sK AI SS @@ -404,10 +362,10 @@ kS pw AI sK -Pa -fx -mG -At +Lc +LJ +he +uo AI AI SS @@ -429,8 +387,8 @@ AI iF AI xU -At -At +uo +uo SS AI Pp @@ -448,42 +406,42 @@ Vy Um px vh -KY +tB SS AI -Pa +Lc fd -Pa -Pa -Pa +Lc +Lc +Lc cb cb Vy Vy -My +hz Vy bL yK -My -CI +hz +iL "} (8,1,1) = {" Um kS cb -BW -Qq +Wg +IN Ue -BI -BI -BI +bJ +bJ +bJ cb cb cb Fb Vy -My -CI +hz +iL Vy Vy Vy diff --git a/maps/map_files/LV624/gym/20.pool.dmm b/maps/map_files/LV624/gym/20.pool.dmm index a96c1eb1a1..ceb522aaa9 100644 --- a/maps/map_files/LV624/gym/20.pool.dmm +++ b/maps/map_files/LV624/gym/20.pool.dmm @@ -3,55 +3,18 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"bQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +"dF" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor, /area/lv624/lazarus/fitness) -"dw" = ( -/obj/item/clothing/under/shorts/red, +"gU" = ( /obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/clothing/under/shorts/grey{ - pixel_x = -1; - pixel_y = -8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"gL" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) -"hb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"hX" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor, +"hr" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ic" = ( /turf/open/gm/grass/grass2, @@ -63,60 +26,27 @@ "iJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_nexus_road) -"jS" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/swimsuit/black, -/obj/item/clothing/under/swimsuit/blue{ - pixel_x = 7 - }, -/obj/item/clothing/under/swimsuit/red{ - pixel_x = -7 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"kE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"kY" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"je" = ( +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"li" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"jq" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"ls" = ( -/obj/item/tool/soap, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"jU" = ( +/obj/structure/sign/safety/water{ + pixel_x = 7; + pixel_y = 26 }, +/obj/structure/surface/table, +/obj/item/storage/box/cups, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"lB" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"kF" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/storage/firstaid/regular, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "ma" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -124,46 +54,41 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"oK" = ( -/obj/item/shard, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"ov" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"re" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"qa" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"rI" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"rn" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"sa" = ( +/obj/item/tool/soap, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) "sA" = ( /turf/closed/wall, /area/lv624/lazarus/fitness) -"tV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"tC" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) -"vq" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"uf" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "wj" = ( /turf/open/gm/dirt, @@ -187,57 +112,36 @@ "xS" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"yb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "yO" = ( /obj/item/toy/beach_ball, /turf/open/gm/river, /area/lv624/lazarus/fitness) -"yP" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"yV" = ( -/obj/structure/sign/safety/water{ - pixel_x = 7; - pixel_y = 26 +"Bv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/surface/table, -/obj/item/storage/box/cups, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Be" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Fitness APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Cf" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Ei" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Cv" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Er" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, +"DW" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ez" = ( /turf/open/floor, @@ -250,28 +154,16 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"Ga" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Gf" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/south_medbay_road) -"Iu" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_x = -30 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Ir" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"IL" = ( +/obj/item/shard, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Jk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -287,9 +179,27 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/north_nexus_road) +"Mn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "NC" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"Of" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_x = -30 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "Ot" = ( /obj/structure/window_frame/colony, /turf/open/floor/plating, @@ -301,41 +211,22 @@ "Pw" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"Px" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"Rf" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Rh" = ( +/obj/effect/decal/remains/human, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Rl" = ( -/obj/item/clothing/under/shorts/red, +"RA" = ( /obj/structure/surface/rack, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/swimsuit/black, +/obj/item/clothing/under/swimsuit/blue{ + pixel_x = 7 }, -/area/lv624/lazarus/fitness) -"SW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/item/clothing/under/swimsuit/red{ + pixel_x = -7 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Td" = ( /obj/structure/machinery/colony_floodlight, @@ -345,24 +236,21 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"Us" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Uh" = ( +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) -"UM" = ( -/obj/structure/machinery/light{ - dir = 4 +"UB" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/item/clothing/under/shorts/grey{ + pixel_x = -1; + pixel_y = -8 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Vb" = ( /turf/open/gm/dirtgrassborder/south, @@ -371,21 +259,41 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"VM" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/item/storage/firstaid/regular, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Wj" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"WP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "WV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) +"Xt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"Xz" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"Zk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "Zo" = ( /obj/effect/landmark/good_item, /turf/open/gm/river, @@ -403,7 +311,7 @@ xS xS Vo Ez -hX +dF Vo NC Jk @@ -419,8 +327,8 @@ xS JM xS sA -lB -tV +Zk +Mn sA sA NC @@ -436,9 +344,9 @@ Vo Ot Vo sA -Be -li -vq +Rh +Cf +je sA Vo Vo @@ -449,187 +357,187 @@ NC (4,1,1) = {" Vb Vo -Ga -oK -vq -Ei -vq -vq -vq -Ei -re -vq -Px +Cv +IL +je +ov +je +je +je +ov +DW +je +gU Fx ic "} (5,1,1) = {" Gf Vo -rI -vq -bQ -bQ -bQ -ls -bQ -bQ -bQ -vq -VM +jq +je +Uh +Uh +Uh +sa +Uh +Uh +Uh +je +kF Vo NC "} (6,1,1) = {" wj sA -yV -vq -bQ +jU +je +Uh EG EG EG Zo EG -bQ -vq -Px +Uh +je +gU sA NC "} (7,1,1) = {" sA sA -vq -vq -bQ +je +je +Uh EG yO EG EG EG -bQ -vq -vq +Uh +je +je sA sA "} (8,1,1) = {" Vo -Iu -vq -vq -Er +Of +je +je +tC EG EG Ou EG EG -bQ -vq -vq -Us +Uh +je +je +rn Vo "} (9,1,1) = {" -gL -vq -vq -vq -bQ +Xt +je +je +je +Uh EG EG EG EG EG -bQ -vq -vq -vq -gL +Uh +je +je +je +Xt "} (10,1,1) = {" Ot -UM -vq -vq -bQ +yb +je +je +Uh EG EG iv EG EG -bQ -vq -vq -Rf +Uh +je +je +Xz Vo "} (11,1,1) = {" sA sA -vq -vq -bQ +je +je +Uh EG EG EG EG EG -bQ -vq -vq +Uh +je +je sA sA "} (12,1,1) = {" Pw sA -vq -vq -bQ +je +je +Uh EG Ou EG EG EG -bQ -vq -jS +Uh +je +RA sA Wj "} (13,1,1) = {" WV Fx -SW -yP -bQ -bQ -bQ -bQ -bQ -bQ -bQ -yP -Rl +hr +qa +Uh +Uh +Uh +Uh +Uh +Uh +Uh +qa +uf Vo Wj "} (14,1,1) = {" iJ Vo -kE -vq -vq -UM -vq -vq -vq -hb -vq -vq -dw +Ir +je +je +yb +je +je +je +Bv +je +je +UB Vo Wj "} @@ -640,9 +548,9 @@ Ot Vo Vo sA -kY -vq -vq +WP +je +je sA Vo Vo diff --git a/maps/map_files/LV624/gym/30.alternate.dmm b/maps/map_files/LV624/gym/30.alternate.dmm index c22fa45a4f..ba1fb557cc 100644 --- a/maps/map_files/LV624/gym/30.alternate.dmm +++ b/maps/map_files/LV624/gym/30.alternate.dmm @@ -1,95 +1,44 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ar" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "aG" = ( /obj/structure/window_frame/colony, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"cD" = ( -/obj/structure/surface/rack, -/obj/item/tool/mop, -/obj/item/clothing/under/shorts/black{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"ds" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_1"; - name = "treadmill switch"; - pixel_x = 8; - pixel_y = 7 - }, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_2"; - name = "treadmill switch"; - pixel_x = -8; - pixel_y = -4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"bo" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/lv624/lazarus/fitness) -"ej" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"bL" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/o2, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"ek" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -5 - }, -/obj/effect/spawner/random/toy, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"cK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"ez" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/orange{ - name = "running shoes"; - pixel_x = -5; - pixel_y = -9 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"dh" = ( +/obj/item/toy/beach_ball/holoball, +/obj/effect/decal/warning_stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/lv624/lazarus/fitness) -"eD" = ( -/obj/structure/machinery/light, +"dm" = ( /obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/item/weapon/baseballbat, +/obj/item/weapon/baseballbat{ + pixel_x = -6; + pixel_y = 2 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"fr" = ( -/turf/open/floor{ - icon_state = "warnwhite" +"du" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_x = -30 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "fv" = ( /obj/effect/landmark/survivor_spawner, @@ -98,57 +47,25 @@ "fV" = ( /turf/closed/wall, /area/lv624/lazarus/fitness) -"hd" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"hm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"hn" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"gt" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"il" = ( -/obj/item/clothing/under/shorts/red, +"hr" = ( /obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/clothing/under/shorts/grey{ - pixel_x = -1; - pixel_y = -8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"iM" = ( -/obj/item/toy/beach_ball/holoball, -/obj/effect/decal/warning_stripes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" +"hL" = ( +/turf/open/floor/warnwhite/north, +/area/lv624/lazarus/fitness) +"iG" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/effect/landmark/corpsespawner/colonist/random/burst, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "iN" = ( /obj/structure/barricade/handrail, @@ -162,72 +79,106 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"kk" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"jM" = ( +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"kg" = ( +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"kj" = ( +/obj/structure/holohoop{ + dir = 8 }, +/turf/open/floor/warnwhite/east, /area/lv624/lazarus/fitness) -"kv" = ( -/obj/effect/decal/remains/human, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"ku" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "lv_gym_1"; + name = "treadmill" + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 8; + pixel_y = 7 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "lq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) +"nc" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -5 + }, +/obj/effect/spawner/random/toy, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "nl" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"ok" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"nx" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "lv_gym_2"; + name = "treadmill" }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"pV" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"oi" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_1"; + name = "treadmill switch"; + pixel_x = 8; + pixel_y = 7 + }, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_2"; + name = "treadmill switch"; + pixel_x = -8; + pixel_y = -4 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"rw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" +"oT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"pq" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor, +/area/lv624/lazarus/fitness) +"pW" = ( +/obj/structure/surface/rack, +/obj/item/tool/mop, +/obj/item/clothing/under/shorts/black{ + pixel_x = 2; + pixel_y = 2 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"sd" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null +"qV" = ( +/turf/open/floor/warnwhite/southwest, +/area/lv624/lazarus/fitness) +"ry" = ( +/obj/item/clothing/under/shorts/red, +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/item/clothing/under/shorts/grey{ + pixel_x = -1; + pixel_y = -8 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "sx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"tD" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/fitness) "tY" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) @@ -252,58 +203,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/lv624/lazarus/fitness) -"ve" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "lv_gym_2"; - name = "treadmill" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "vZ" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"wA" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "wL" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/south_medbay_road) -"xe" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"xT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/suit/redtag{ - pixel_x = 2; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"wW" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "lv_gym_2"; + name = "treadmill" }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Ah" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"Ap" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) "Aq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -311,22 +234,31 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"AE" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" +"AA" = ( +/obj/structure/bed/chair, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"AC" = ( +/obj/effect/spawner/gibspawner/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"AM" = ( +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/floor/warnwhite/west, +/area/lv624/lazarus/fitness) +"Bj" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Bl" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) -"Bm" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "BE" = ( /obj/structure/window_frame/colony, /obj/item/shard{ @@ -335,53 +267,40 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"BW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"BR" = ( +/obj/structure/closet/lasertag/blue, +/obj/item/tool/crowbar, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"Cw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "CO" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"CZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) -"DH" = ( -/obj/structure/closet/lasertag/blue, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "DM" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"EQ" = ( -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, +"Ed" = ( +/turf/open/floor/warnwhite/northeast, /area/lv624/lazarus/fitness) -"FD" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" +"EN" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/suit/redtag{ + pixel_x = 2; + pixel_y = -5 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Ge" = ( /obj/structure/barricade/handrail{ @@ -389,92 +308,45 @@ }, /turf/open/floor, /area/lv624/lazarus/fitness) -"Hn" = ( -/obj/item/clothing/suit/redtag, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"Hz" = ( -/obj/structure/fence, -/turf/open/gm/grass/grass1, -/area/lv624/ground/colony/north_nexus_road) -"HF" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/o2, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"Ia" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"In" = ( -/turf/open/floor, -/area/lv624/lazarus/fitness) -"It" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, +"Gm" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Ix" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" - }, +"Gq" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"IL" = ( +"GO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Leisure Dome"; req_access_txt = "100" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) -"Js" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) -"JF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/baseballbat, -/obj/item/weapon/baseballbat{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Hz" = ( +/obj/structure/fence, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/north_nexus_road) +"HC" = ( +/turf/open/floor/warnwhite/southeast, /area/lv624/lazarus/fitness) -"JN" = ( -/obj/structure/filingcabinet/medical, +"In" = ( /turf/open/floor, /area/lv624/lazarus/fitness) -"Kc" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"IA" = ( +/turf/open/floor/white, +/area/lv624/lazarus/fitness) +"Ja" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"JV" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "LB" = ( /obj/structure/fence, @@ -484,11 +356,24 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"Mn" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "warnwhite" - }, +"MI" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"MR" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"Nm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"No" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Nt" = ( /turf/open/gm/grass/grass1, @@ -502,14 +387,6 @@ "Od" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"Op" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Pb" = ( /obj/structure/barricade/handrail, /obj/effect/decal/cleanable/dirt, @@ -518,23 +395,16 @@ "Ph" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_nexus_road) -"PC" = ( -/obj/item/tool/soap, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"PK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/fitness) -"Qf" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"PQ" = ( +/turf/open/floor/warnwhite/northwest, +/area/lv624/lazarus/fitness) +"PS" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Qh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -542,36 +412,20 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"Qj" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "Qw" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"Sj" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"QQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Ss" = ( -/obj/effect/spawner/gibspawner/robot, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"Sx" = ( +/obj/structure/machinery/light, +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"SA" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "SD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -579,60 +433,42 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"To" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" +"ST" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "lv_gym_1"; + name = "treadmill" }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Tq" = ( +"Tw" = ( /obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"Tv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/orange{ + name = "running shoes"; + pixel_x = -5; + pixel_y = -9 }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"TS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Tz" = ( +/obj/structure/machinery/light, +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Ur" = ( +"TM" = ( /obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Vk" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Vt" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Vs" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "lv_gym_1"; - name = "treadmill" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"VN" = ( +/obj/item/clothing/suit/redtag, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "Wh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -642,24 +478,17 @@ /obj/item/shard, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"Wy" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Fitness APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"Xe" = ( +/obj/item/tool/soap, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) -"Xu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"XY" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"YC" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) (1,1,1) = {" @@ -670,7 +499,7 @@ Nt Nt sx In -JN +pq sx DM NW @@ -686,8 +515,8 @@ Nt ux Nt fV -CZ -IL +PK +GO fV fV DM @@ -703,9 +532,9 @@ sx sx sx fV -Wy -hd -Qf +Ja +kg +du fV aG sx @@ -719,14 +548,14 @@ jA In In iN -Tv -hd -Kc -Js -wA -AE -EQ -Ix +QQ +kg +TM +Nm +AA +PQ +AM +qV sx Bl "} @@ -736,14 +565,14 @@ sx In fv Pb -hd -kv -hd -hd -wA -rw -tD -fr +kg +PS +kg +kg +AA +hL +IA +jM BE DM "} @@ -753,150 +582,150 @@ fV uF Ge uY -PC -hd -TS -hd -hd -rw -iM -Mn +Xe +kg +MI +kg +kg +hL +dh +Sx fV DM "} (7,1,1) = {" fV fV -xe -kk -Tv -hd -hd -hd -Tv -wA -rw -Ur -fr +JV +Gq +QQ +kg +kg +kg +QQ +AA +hL +bo +jM fV fV "} (8,1,1) = {" sx -hd -hd -hd -hd -Tv -hd -Ia -hd -wA -To -It -FD -Ah +kg +kg +kg +kg +QQ +kg +No +kg +AA +Ed +kj +HC +SA sx "} (9,1,1) = {" -sd -hd -hd -hd -hd -hd -pV +Ap +kg +kg +kg +kg +kg +gt fV -ok -hd -hd -hd -hd -Sj -Ss +Bj +kg +kg +kg +kg +YC +AC "} (10,1,1) = {" sx -hd -hd -Tv -hd -Hn -hd -Bm -hd -hd -Tv -hd -hd -Xu +kg +kg +QQ +kg +VN +kg +Gm +kg +kg +QQ +kg +kg +oT Wx "} (11,1,1) = {" fV fV -ez -hd -il -hd -hd -hd -Tv -Tv -Tv -hd -hd +Tw +kg +ry +kg +kg +kg +QQ +QQ +QQ +kg +kg fV fV "} (12,1,1) = {" Qw fV -BW -hn -Kc -hd -hd -hd -kk -DH -xT -JF -eD +iG +cK +TM +kg +kg +kg +Gq +BR +EN +dm +Tz fV Od "} (13,1,1) = {" lq aG -hm -ek -ve -hd -hd -hd -Tv -hd -Op -Tv -ej +ku +nc +nx +kg +kg +kg +QQ +kg +Vt +QQ +MR sx Od "} (14,1,1) = {" Ph sx -Vs -ds -ar -hd -hd -hd -hd -Vk -Tq -cD -HF +ST +oi +wW +kg +kg +kg +kg +XY +hr +pW +bL sx Od "} @@ -907,9 +736,9 @@ Wx sx sx fV -Qj -hd -hd +Cw +kg +kg fV sx sx diff --git a/maps/map_files/LV624/hydro/30.destroyed.dmm b/maps/map_files/LV624/hydro/30.destroyed.dmm index 5235c1f45a..9c2f3b46e4 100644 --- a/maps/map_files/LV624/hydro/30.destroyed.dmm +++ b/maps/map_files/LV624/hydro/30.destroyed.dmm @@ -1,37 +1,16 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aO" = ( -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/hydroponics) -"bd" = ( -/obj/item/stack/sheet/metal, -/obj/item/explosive/mine/pmc/active{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"ai" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"bk" = ( -/obj/item/tool/extinguisher, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"aL" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"bm" = ( +"bg" = ( /obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/midchance{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/item/robot_parts/leg/l_leg, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "bM" = ( /obj/structure/fence, @@ -41,20 +20,28 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"cQ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"dM" = ( +/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth{ + desc = "A serious modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, with every armor insert removed. It's designed with the idea of a high speed lifesaver in mind. This set seems damaged..."; + name = "damaged M4 Synthetic PMC armor"; + pixel_x = -5; + pixel_y = -5 + }, +/obj/effect/spawner/gibspawner/robot, +/obj/item/limb/head/synth{ + desc = "This appears to be the head of a synthetic, though it it is so destroyed there is no way in hell anyone is going to bring it back to even basic functionality."; + name = "shattered synthetic head"; + pixel_x = 9; + pixel_y = 3; + icon_state = "scandinavian_head_m" }, +/obj/item/robot_parts/arm/l_arm, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"dZ" = ( +"ez" = ( +/obj/item/clothing/gloves/botanic_leather, /obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/lowchance{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "eU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -62,70 +49,32 @@ "fk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/south_medbay_road) -"ft" = ( -/obj/item/clothing/gloves/marine/veteran/pmc{ - armor_bio = 10; - armor_bomb = 10; - armor_bullet = 15; - armor_energy = 15; - armor_internaldamage = 15; - armor_laser = 15; - armor_melee = 15; - armor_rad = 10; - name = "damaged WY PMC gloves" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"gb" = ( +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"fX" = ( -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/spawner/random/claymore, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"ih" = ( -/obj/item/clothing/gloves/botanic_leather, +"gf" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"it" = ( -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"go" = ( +/obj/structure/barricade/deployable{ + damage_state = 2; + dir = 8; + health = 140; + icon_state = "folding_2" }, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/obj/item/ammo_magazine/rifle/nsg23, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "jg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jy" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"jY" = ( -/obj/item/reagent_container/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/landmark/crap_item, -/obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/midchance{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"jj" = ( +/obj/item/ammo_magazine/rifle/nsg23/extended, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "kg" = ( /obj/structure/window/framed/colony/reinforced, @@ -135,25 +84,21 @@ /obj/structure/girder, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"km" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ +"kq" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random/claymore/midchance{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) -"kD" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"lk" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"lm" = ( +"lH" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/spawner/random/claymore/lowchance, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "lP" = ( /obj/item/stack/sheet/metal, @@ -162,14 +107,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"np" = ( -/obj/item/tool/weldingtool/simple, -/obj/item/stack/sheet/wood, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "nJ" = ( /obj/item/stack/sheet/metal, /turf/open/floor, @@ -177,61 +114,90 @@ "og" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"ot" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"om" = ( +/obj/structure/barricade/deployable{ + damage_state = 3; + health = 50; + icon_state = "folding_3" }, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "ou" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) -"qe" = ( -/obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/lowchance{ - dir = 4 +"pJ" = ( +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"qH" = ( +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/landmark/crap_item, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random/claymore/midchance{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"se" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_medbay_road) -"tK" = ( -/obj/structure/barricade/deployable{ - damage_state = 3; - dir = 1; - health = 45; - icon_state = "folding_3" - }, +"qJ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"qM" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"qP" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/smg/fp9000, -/obj/item/clothing/under/marine/veteran/pmc/leader{ - pixel_x = -7 +/obj/item/ammo_magazine/smg/fp9000{ + pixel_x = 1 + }, +/obj/item/ammo_magazine/smg/fp9000{ + pixel_x = -3 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) -"vm" = ( -/obj/item/stack/sheet/wood{ - amount = 16 - }, -/obj/item/ammo_magazine/rifle/nsg23{ - current_rounds = 13 +"rf" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1 }, -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/head/helmet/marine/veteran/pmc{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/plating/panelscorched, +/area/lv624/lazarus/hydroponics) +"ry" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random/claymore/lowchance{ + dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"se" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/south_medbay_road) +"tB" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"uo" = ( +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random/claymore/midchance{ + dir = 4 }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"uR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) -"xa" = ( +"uZ" = ( /obj/effect/decal/cleanable/blood, /obj/item/ammo_magazine/rifle/nsg23{ current_rounds = 2 @@ -241,44 +207,33 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "xm" = ( /obj/item/stack/sheet/metal, /obj/effect/spawner/random/claymore/lowchance, /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"xF" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/under/marine/veteran/pmc{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"xr" = ( +/obj/item/storage/firstaid, +/obj/item/explosive/grenade/high_explosive/pmc{ + pixel_x = 6 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"xM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/reagent_container/glass/bucket{ - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - icon_state = "platingdmg1" +"yy" = ( +/obj/item/stack/sheet/wood{ + amount = 16 }, -/area/lv624/lazarus/hydroponics) -"ym" = ( -/obj/item/tool/crowbar, -/obj/effect/spawner/random/claymore/midchance{ - dir = 4 +/obj/item/ammo_magazine/rifle/nsg23{ + current_rounds = 13 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/head/helmet/marine/veteran/pmc{ + pixel_x = -6; + pixel_y = 8 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) "zj" = ( /obj/item/stack/folding_barricade, @@ -289,90 +244,67 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc/leader, /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"zL" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/hydroponics) "zS" = ( /obj/structure/window_frame/colony, /obj/item/shard, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"zX" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000{ - pixel_x = 1 - }, -/obj/item/ammo_magazine/smg/fp9000{ - pixel_x = -3 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"Ao" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/hydroponics) +"BE" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) "BL" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"Cp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/apron, -/obj/item/tool/shovel, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - icon_state = "platingdmg1" +"Dg" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/under/marine/veteran/pmc{ + pixel_x = -7; + pixel_y = 9 }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) -"Cq" = ( -/obj/structure/girder, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"Dl" = ( +/obj/item/tool/crowbar, +/obj/effect/spawner/random/claymore/midchance{ + dir = 4 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"CG" = ( -/obj/item/reagent_container/glass/fertilizer{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer, +"Ds" = ( /obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/midchance, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1 }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) -"Dy" = ( -/obj/item/clothing/suit/storage/marine/veteran/pmc/light/synth{ - desc = "A serious modification of the standard Armat Systems M3 armor. This variant was designed for PMC Support Units in the field, with every armor insert removed. It's designed with the idea of a high speed lifesaver in mind. This set seems damaged..."; - name = "damaged M4 Synthetic PMC armor"; - pixel_x = -5; - pixel_y = -5 - }, -/obj/effect/spawner/gibspawner/robot, -/obj/item/limb/head/synth{ - desc = "This appears to be the head of a synthetic, though it it is so destroyed there is no way in hell anyone is going to bring it back to even basic functionality."; - name = "shattered synthetic head"; - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/robot_parts/arm/l_arm, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"Ey" = ( +/turf/open/floor/plating/panelscorched, +/area/lv624/lazarus/hydroponics) +"EA" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"Ed" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "platingdmg1" +"Fg" = ( +/obj/structure/barricade/deployable{ + damage_state = 3; + dir = 1; + health = 45; + icon_state = "folding_3" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/smg/fp9000, +/obj/item/clothing/under/marine/veteran/pmc/leader{ + pixel_x = -7 }, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/hydroponics) "Fk" = ( /obj/item/clothing/head/helmet/marine/veteran/pmc{ @@ -381,13 +313,64 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"FJ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "platingdmg1" +"HI" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/hydroponics) +"Ie" = ( +/obj/item/clothing/gloves/marine/veteran/pmc{ + armor_bio = 10; + armor_bomb = 10; + armor_bullet = 15; + armor_energy = 15; + armor_internaldamage = 15; + armor_laser = 15; + armor_melee = 15; + armor_rad = 10; + name = "damaged WY PMC gloves" }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"JE" = ( +/turf/open/floor, +/area/lv624/lazarus/hydroponics) +"Km" = ( +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/south_medbay_road) +"Kt" = ( +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"Ha" = ( +"KO" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/hydroponics) +"KV" = ( +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"LG" = ( +/obj/structure/girder, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"LU" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"Mm" = ( +/obj/effect/landmark/crap_item, +/turf/open/gm/grass/grass1, +/area/lv624/ground/colony/south_medbay_road) +"MY" = ( /obj/structure/barricade/deployable{ damage_state = 1; dir = 1; @@ -406,122 +389,81 @@ name = "scratched VP78 magazine (9mm)"; pixel_x = 6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"IO" = ( -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/hydroponics) -"IP" = ( -/obj/item/ammo_magazine/rifle/nsg23/extended, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/lv624/lazarus/hydroponics) -"Jc" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"JE" = ( -/turf/open/floor, +"Nl" = ( +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"JK" = ( +"NO" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"JO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"Km" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/colony/south_medbay_road) -"Lk" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"Ox" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"Lu" = ( -/obj/structure/window_frame/colony, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"OG" = ( +/obj/item/tool/minihoe{ + pixel_x = 1; + pixel_y = -1 }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"LQ" = ( +"OI" = ( +/obj/item/reagent_container/glass/fertilizer, /obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/lowchance, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/hydroponics) -"Mi" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"Mm" = ( -/obj/effect/landmark/crap_item, -/turf/open/gm/grass/grass1, -/area/lv624/ground/colony/south_medbay_road) -"MM" = ( -/obj/structure/barricade/deployable{ - damage_state = 3; - health = 50; - icon_state = "folding_3" - }, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"Pd" = ( +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/spawner/random/claymore, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"MT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "platingdmg1" +"Qd" = ( +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/clothing/gloves/marine/veteran/pmc{ + armor_bio = 10; + armor_bomb = 10; + armor_bullet = 15; + armor_energy = 15; + armor_internaldamage = 15; + armor_laser = 15; + armor_melee = 15; + armor_rad = 10; + name = "damaged WY PMC gloves"; + pixel_y = 9 }, +/turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"MV" = ( -/obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/midchance{ +"Rm" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"NO" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"On" = ( -/obj/structure/window_frame/colony, -/turf/open/floor{ - icon_state = "platingdmg1" +"Rw" = ( +/obj/item/tool/extinguisher, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 1 }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"RM" = ( +/obj/item/tool/weldingtool/simple, +/obj/item/stack/sheet/wood, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"OH" = ( +"RS" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade, /obj/item/tool/hatchet{ @@ -535,55 +477,49 @@ /obj/item/tool/minihoe{ pixel_y = -2 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"OI" = ( -/obj/item/reagent_container/glass/fertilizer, +"RY" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/plating, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"Pk" = ( +"Sw" = ( /obj/item/stack/sheet/metal, -/turf/open/floor{ - dir = 9; - icon_state = "green" +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/hydroponics) +"SZ" = ( +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 6; + pixel_y = 2 }, +/obj/item/reagent_container/glass/fertilizer, +/obj/item/stack/sheet/metal, +/obj/effect/spawner/random/claymore/midchance, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"Px" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ +"Up" = ( +/obj/item/stack/sheet/metal, +/obj/item/explosive/mine/pmc/active{ dir = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) -"Qd" = ( -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/clothing/gloves/marine/veteran/pmc{ - armor_bio = 10; - armor_bomb = 10; - armor_bullet = 15; - armor_energy = 15; - armor_internaldamage = 15; - armor_laser = 15; - armor_melee = 15; - armor_rad = 10; - name = "damaged WY PMC gloves"; - pixel_y = 9 - }, +"UE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/panelscorched, +/area/lv624/lazarus/hydroponics) +"VT" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/plating/panelscorched, +/area/lv624/lazarus/hydroponics) +"Wg" = ( /turf/open/floor/plating, /area/lv624/lazarus/hydroponics) -"QR" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"Wi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) -"RT" = ( +"Wr" = ( /obj/item/clothing/shoes/veteran/pmc{ armor_bio = 15; armor_bomb = 5; @@ -598,54 +534,14 @@ pixel_y = -10; slowdown = 0.5 }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/green/northwest, /area/lv624/lazarus/hydroponics) -"TC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"TL" = ( +"Xm" = ( /obj/item/stack/sheet/metal, -/obj/effect/spawner/random/claymore/midchance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"Ul" = ( -/obj/structure/barricade/deployable{ - damage_state = 2; - dir = 8; - health = 140; - icon_state = "folding_2" - }, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/obj/item/ammo_magazine/rifle/nsg23, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/lv624/lazarus/hydroponics) -"UG" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"Wg" = ( -/turf/open/floor/plating, -/area/lv624/lazarus/hydroponics) -"Xv" = ( -/turf/open/floor{ - dir = 9; - icon_state = "green" +/obj/effect/spawner/random/claymore/lowchance{ + dir = 8 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/hydroponics) "XA" = ( /turf/open/gm/grass/grass1, @@ -654,36 +550,10 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"YJ" = ( -/obj/item/storage/firstaid, -/obj/item/explosive/grenade/high_explosive/pmc{ - pixel_x = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/hydroponics) -"YV" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/hydroponics) -"Zm" = ( +"ZB" = ( /obj/item/stack/sheet/metal, -/obj/item/robot_parts/leg/l_leg, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/lv624/lazarus/hydroponics) -"ZL" = ( -/obj/item/tool/minihoe{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, +/obj/effect/spawner/random/claymore/midchance, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/hydroponics) (1,1,1) = {" @@ -723,12 +593,12 @@ XA XA XA BL -YV -zL -Ed +Nl +qM +Sw Wg -MV -Cq +uo +LG Km Km Km @@ -736,194 +606,194 @@ se "} (4,1,1) = {" XJ -Cq -Lu -TC -dZ +LG +lk +gb +Xm Wg -ym -FJ -Xv -zL +Dl +tB +pJ +qM Wg -Ed -Xv +Sw +pJ se "} (5,1,1) = {" XA -qe -YV -TC -FJ +ry +Nl +gb +tB Wg -YV +Nl Wg Wg -Mi -Mi -xM -zL +ai +ai +Ox +qM fk "} (6,1,1) = {" XA -Ed +Sw Wg Wg -JK -kD -TC -Xv +BE +Ao +gb +pJ Wg Wg lP -Cp -zL +LU +qM og "} (7,1,1) = {" -Xv -Xv -Lk +pJ +pJ +Wi Wg -Pk -JO -Ul -zX -jy -Xv -Lk -OH -Xv -Xv +RY +VT +go +qP +KO +pJ +Wi +RS +pJ +pJ "} (8,1,1) = {" -YV +Nl Wg -ft -TC -bm -tK +Ie +gb +kq +Fg zj -IP -xa -JO +jj +uZ +VT Wg -TL -ZL -Xv +ZB +OG +pJ "} (9,1,1) = {" -Px -bk -Px -km -Jc -km -YJ +EA +Rw +EA +rf +Ds +rf +xr Qd -MM -ot +om +uR Wg -TC -Ed -Xv +gb +Sw +pJ "} (10,1,1) = {" -RT -Xv -QR -JO +Wr +pJ +Ey +VT Fk -xF -Ha -vm -jy -fX -TC +Dg +MY +yy +KO +Pd +gb Wg -FJ -Xv +tB +pJ "} (11,1,1) = {" -Xv -Xv -cQ -Xv +pJ +pJ +UE +pJ Wg -TC -it -UG -np -Xv +gb +HI +Rm +RM +pJ Wg xm -YV -YV +Nl +Nl "} (12,1,1) = {" -Xv -bd -aO -QR -Dy +pJ +Up +KV +Ey +dM Wg -TC +gb Wg -TC -TC -lm +gb +gb +gf OI -Cq -Cq +LG +LG "} (13,1,1) = {" XA -On -IO -Zm -Lk -TC +aL +Kt +bg +Wi +gb NO Wg -TC -lm +gb +gf ck -CG -YV +SZ +Nl ou "} (14,1,1) = {" XA -Lu -ih -jY -MT +lk +ez +qH +qJ Wg Wg Wg -FJ +tB Wg -lm -Ed -Lu +gf +Sw +lk eU "} (15,1,1) = {" XA -Xv -Xv -Ed -YV -Xv -Xv -YV -LQ -Xv -Xv -YV -Cq +pJ +pJ +Sw +Nl +pJ +pJ +Nl +lH +pJ +pJ +Nl +LG bM "} (16,1,1) = {" @@ -931,12 +801,12 @@ XA XA XA XA -Xv -Xv -Xv -Xv -Lu -Cq +pJ +pJ +pJ +pJ +lk +LG XA XA XA diff --git a/maps/map_files/LV624/maintemple/1.intact.dmm b/maps/map_files/LV624/maintemple/1.intact.dmm index a8748f8f94..bf01cd3f21 100644 --- a/maps/map_files/LV624/maintemple/1.intact.dmm +++ b/maps/map_files/LV624/maintemple/1.intact.dmm @@ -13,18 +13,17 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"aA" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; +"at" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; dir = 4; - name = "plasma power generator" + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 }, -/area/lv624/ground/caves/sand_temple/powered) +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "aI" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -51,15 +50,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"aO" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple/powered) "aT" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -68,13 +58,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"bP" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"bE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/area/lv624/ground/caves/sand_temple/powered) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "bZ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -82,33 +73,32 @@ /obj/item/tool/pickaxe/plasmacutter, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"cq" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +"dc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"dk" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) +"dq" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) "dr" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -120,26 +110,14 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"dA" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_y = 9 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"dw" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/ground/caves/sand_temple/powered) +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "dE" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -152,14 +130,6 @@ "dF" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"dJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -175,13 +145,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"dQ" = ( -/obj/structure/machinery/autolathe/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"dT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/ground/caves/sand_temple/powered) +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "dV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -216,17 +186,24 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"el" = ( +"eq" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; + color = "#6b675e"; + dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) +"ew" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "ez" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -243,24 +220,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"eG" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/weapon/sword/machete{ - desc = "This machete seems not standard issue, indeed it seems to be an ancient military design. Smells like the jungle."; - name = "\improper Dutch's Machete" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "eM" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -269,6 +228,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"eN" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple/powered) "eY" = ( /obj/structure/showcase{ color = "#FFE55C"; @@ -306,33 +271,6 @@ "fl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"fw" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "fD" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -351,76 +289,17 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"fP" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "fV" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) -"gb" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"gk" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/tank/nitrogen{ - pixel_x = 5 - }, -/obj/item/tank/nitrogen, -/obj/item/tank/oxygen/yellow{ - pixel_x = -4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"gd" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, /area/lv624/ground/caves/sand_temple) "gw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"gA" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "gI" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -428,35 +307,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"gL" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"gS" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"gY" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "gZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -466,23 +316,6 @@ "hi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"hA" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"hD" = ( -/obj/item/weapon/yautja/knife, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "hL" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -503,16 +336,15 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ig" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"ic" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple/powered) "iw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -524,54 +356,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"iD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"iW" = ( -/obj/structure/barricade/handrail/strata{ +"iA" = ( +/obj/structure/bed/chair/comfy/black{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"jq" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "kb" = ( /obj/effect/decal/remains/xeno, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"kd" = ( +"kO" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"ld" = ( /obj/structure/stairs/perspective{ color = "#b29082"; - dir = 8; + dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) -"kO" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/sandstone/runed, +"lV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = -7 + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = 5 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "ma" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -704,25 +525,46 @@ /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"nB" = ( +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"nD" = ( +/obj/item/weapon/yautja/knife, +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "nL" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"nN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"nS" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/item/tool/surgery/retractor/predatorretractor, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"nY" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "od" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -744,25 +586,29 @@ "pb" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"po" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" +"pJ" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/ground/caves/sand_temple) -"pu" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "pX" = ( /obj/structure/stairs/perspective{ @@ -787,6 +633,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"qW" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "rA" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 @@ -817,13 +670,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"rS" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "rU" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 @@ -842,17 +688,15 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"sd" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"sv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) +"sK" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "sM" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -863,19 +707,24 @@ }, /turf/template_noop, /area/template_noop) -"th" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +"tn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/sheet/animalhide/xeno{ + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" }, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "ts" = ( /obj/structure/stairs/perspective{ @@ -888,6 +737,30 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"tD" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "tE" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -933,6 +806,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"uX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "vu" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -944,22 +824,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"vC" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple/powered) "vN" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"we" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "wf" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -971,6 +845,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"wg" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) "wi" = ( /obj/item/hunting_trap{ desc = "A bizarre alien device used for trapping and killing prey."; @@ -983,18 +860,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"wm" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = -6 - }, -/obj/item/XenoItem/AntiAcid{ - pixel_x = 4 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "wx" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1004,32 +869,12 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"wR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/yautja_rope, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple/powered) -"wS" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"wZ" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" +"xs" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "xx" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, @@ -1043,6 +888,24 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"xR" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/mask/yautja_flavor, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "yc" = ( /obj/structure/bed/alien{ color = "#aba9a9" @@ -1054,6 +917,9 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"yo" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "yv" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -1076,6 +942,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"zc" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "zg" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -1102,6 +977,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"zX" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/FixOVein/predatorFixOVein, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "zZ" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -1155,29 +1040,71 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"Cr" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +"Cf" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1 }, -/area/lv624/ground/barrens/south_eastern_barrens) -"Dd" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/mineral/sandstone/runed, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja/hunter{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple/powered) +"CQ" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"Dg" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +"CV" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"Dd" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) "DG" = ( /obj/structure/barricade/handrail/strata{ @@ -1196,6 +1123,31 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"Eq" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/weapon/sword/machete{ + desc = "This machete seems not standard issue, indeed it seems to be an ancient military design. Smells like the jungle."; + name = "\improper Dutch's Machete" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"Eu" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/xeno_restraints, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "EJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1209,28 +1161,25 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Ff" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +"Fy" = ( +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) -"FS" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/shuttle{ - icon_state = "floor6" +"FV" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/lv624/ground/caves/sand_temple) -"Ge" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) +"FW" = ( +/turf/open/gm/dirtgrassborder/desert, +/area/lv624/ground/barrens/south_eastern_barrens) +"Gi" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Gt" = ( /obj/structure/platform/mineral/sandstone/runed{ @@ -1238,32 +1187,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"GK" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"GJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "GO" = ( /obj/structure/stairs/perspective{ @@ -1279,13 +1209,6 @@ "GT" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) -"He" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "Hl" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1307,6 +1230,17 @@ /obj/item/stool, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Hu" = ( +/obj/structure/prop/brazier, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"Hy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/yautja_rope, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple/powered) "HJ" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1336,15 +1270,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"Ix" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"Iy" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "IR" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -1356,11 +1285,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"Jc" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "Je" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -1387,19 +1311,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Jw" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) +"JV" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "JZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 @@ -1424,6 +1339,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Li" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "LF" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1435,6 +1358,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"LH" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "LL" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1462,33 +1389,9 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"Mn" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"Mx" = ( -/obj/structure/prop/brazier, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"Mg" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, /area/lv624/ground/caves/sand_temple) "MB" = ( /obj/structure/bed/chair/comfy/black{ @@ -1510,89 +1413,51 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"MK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"MT" = ( +"Nj" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/weapon/yautja/knife{ - color = "#FFE55C"; - name = "sacred ceremonial dagger"; - pixel_x = -10 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_y = 9 }, -/obj/item/weapon/yautja/knife{ - color = "#FFE55C"; - name = "sacred ceremonial dagger" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/weapon/yautja/knife{ - color = "#FFE55C"; - name = "sacred ceremonial dagger"; - pixel_x = 9 +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_y = 6 }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"Nt" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple/powered) +"No" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; + color = "#b29082"; dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"ND" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) -"Od" = ( +"Oa" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = -7 - }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = 5 +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50; + pixel_y = 7 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple/powered) +"On" = ( +/obj/structure/machinery/autolathe/yautja, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple/powered) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"OJ" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"OP" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "Ps" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -1608,28 +1473,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"PN" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1 - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja/hunter{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple/powered) "PO" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -1656,42 +1499,51 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Ql" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"Qy" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "QG" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"QH" = ( +"Rh" = ( +/obj/structure/prop/brazier/torch, +/turf/closed/wall/mineral/sandstone/runed/decor, +/area/lv624/ground/caves/sand_temple) +"Ru" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50; - pixel_y = 7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/weapon/yautja/knife{ + color = "#FFE55C"; + name = "sacred ceremonial dagger"; + pixel_x = -10 }, -/area/lv624/ground/caves/sand_temple/powered) -"QL" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" +/obj/item/weapon/yautja/knife{ + color = "#FFE55C"; + name = "sacred ceremonial dagger" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/weapon/yautja/knife{ + color = "#FFE55C"; + name = "sacred ceremonial dagger"; + pixel_x = 9 }, -/area/lv624/ground/caves/sand_temple) -"Rh" = ( -/obj/structure/prop/brazier/torch, -/turf/closed/wall/mineral/sandstone/runed/decor, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) "Rx" = ( /obj/structure/bed/chair/comfy/black{ @@ -1699,6 +1551,17 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"RB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/item/tool/surgery/retractor/predatorretractor, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "RV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1718,6 +1581,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Sx" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "SF" = ( /obj/effect/decal/remains/xeno, /obj/structure/stairs/perspective{ @@ -1741,30 +1612,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"TY" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"UK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "UP" = ( /obj/structure/stairs/perspective{ color = "#b29082" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"UU" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "UX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1782,47 +1635,40 @@ "Vu" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"VU" = ( +"Wv" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/restraints, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"Wl" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = -10; + pixel_y = 3 }, +/turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"Ws" = ( +"WS" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" + dir = 4 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"Wv" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"WU" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/obj/item/reagent_container/food/snacks/stew, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = -10; - pixel_y = 3 +/obj/item/tank/nitrogen{ + pixel_x = 5 }, -/turf/open/floor/sandstone/runed, +/obj/item/tank/nitrogen, +/obj/item/tank/oxygen/yellow{ + pixel_x = -4 + }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "Xg" = ( /obj/structure/barricade/handrail/strata{ @@ -1839,34 +1685,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"XA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "XV" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple/powered) -"YB" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "YT" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -1889,11 +1719,17 @@ /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"ZG" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" +"ZU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/ground/barrens/south_eastern_barrens) +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "ZX" = ( /turf/template_noop, /area/template_noop) @@ -1993,9 +1829,9 @@ ZX GT OC OC -Dg -ig -we +GJ +qW +Gi OC OC GT @@ -2034,11 +1870,11 @@ GT GT GT oi -rS -Dg -Ge -we -rS +nY +GJ +yo +Gi +nY OC GT GT @@ -2076,11 +1912,11 @@ GT GT GT OC -rS -QL -Nt -sd -rS +nY +Sx +Qy +dc +nY oi GT GT @@ -2118,11 +1954,11 @@ GT GT GT OC -Ge -Ge -Ge -Ge -Ge +yo +yo +yo +yo +yo OC GT GT @@ -2160,11 +1996,11 @@ GT GT OC IR -ND -Jw -pu -gY -th +dk +ZU +dw +at +eq IR OC qf @@ -2201,13 +2037,13 @@ GT GT GT OC -wS -gL -Jc -Jc -Jc -gL -wS +Ql +Fy +nB +nB +nB +Fy +Ql oi qf Ai @@ -2243,13 +2079,13 @@ GT GT GT oi -YB -gL -Jc -Jc -Jc -gL -Mn +CV +Fy +nB +nB +nB +Fy +xR OC qf Ai @@ -2285,13 +2121,13 @@ GT GT GT oi -wS -gL -Jc -Jc -Jc -gL -wS +Ql +Fy +nB +nB +nB +Fy +Ql oi qf dK @@ -2327,13 +2163,13 @@ GT GT GT oi -YB -gL -Jc -Jc -Jc -gL -Mn +CV +Fy +nB +nB +nB +Fy +xR OC qf Ai @@ -2369,13 +2205,13 @@ GT GT GT OC -wS -gL -Jc -Jc -Jc -gL -wS +Ql +Fy +nB +nB +nB +Fy +Ql oi qf Ai @@ -2411,13 +2247,13 @@ GT GT GT OC -YB -gL -Jc -Jc -Jc -gL -Mn +CV +Fy +nB +nB +nB +Fy +xR OC Ps mf @@ -2454,11 +2290,11 @@ GT OC OC IR -He -gA -gA -gA -He +Mg +LH +LH +LH +Mg IR OC OC @@ -2579,13 +2415,13 @@ GT OC OC zZ -gb +CQ vN mv mv mv zZ -cq +tD vN OC GO @@ -2666,8 +2502,8 @@ mv mv mv Ba -kd -hA +bE +ld mv mv kO @@ -2687,13 +2523,13 @@ uE uE uE SK -Ws +zc dF -Cr -UK -hD +FV +FW +nD hi -OJ +ew zO "} (20,1,1) = {" @@ -2708,8 +2544,8 @@ mv mv mv eM -gS -po +dT +uX mv mv kO @@ -2729,13 +2565,13 @@ uE uE uE uE -dJ +sv dF -UK -MK -UK +FW +wg +FW hi -OP +JV zO "} (21,1,1) = {" @@ -2750,8 +2586,8 @@ mv mv mv oR -el -Ff +No +Li mv mv kO @@ -2771,13 +2607,13 @@ uE uE uE xx -iW +WS dF -ZG -UK -wZ +sK +FW +dq hi -Ix +xs zO "} (22,1,1) = {" @@ -2831,13 +2667,13 @@ GT OC OC zZ -GK +nS vN mv mv mv zZ -fw +pJ vN OC mB @@ -3302,7 +3138,7 @@ Rx mv mv mv -eG +Eq OC GT Ai @@ -3386,7 +3222,7 @@ mv mv mv mv -iD +tn oi GT GT @@ -3587,7 +3423,7 @@ oi UX pb pb -wR +Hy OC qz mv @@ -3596,7 +3432,7 @@ OC MD mv mv -wm +XA OC GT GT @@ -3635,10 +3471,10 @@ qz mv yc OC -gk -Ge -Ge -Mx +WU +yo +yo +Hu OC GT GT @@ -3668,19 +3504,19 @@ ZX ZX GT OC -QH -aO -bP -dA +Oa +eN +vC +Nj IR qz mv qz IR -Od -gL -gL -fP +lV +Fy +Fy +zX OC GT GT @@ -3710,19 +3546,19 @@ ZX ZX GT OC -aA -PN -PN -dQ +ic +Cf +Cf +On OC fE Hq rU OC -VU -TY -Wl -nN +Eu +Iy +iA +RB OC GT GT @@ -3758,13 +3594,13 @@ OC OC OC OC -MT +Ru OC OC -FS -UU -UU -UU +jq +gd +gd +gd OC GT GT diff --git a/maps/map_files/LV624/maintemple/2.flooded.dmm b/maps/map_files/LV624/maintemple/2.flooded.dmm index 1badb8a8e4..d704b3c189 100644 --- a/maps/map_files/LV624/maintemple/2.flooded.dmm +++ b/maps/map_files/LV624/maintemple/2.flooded.dmm @@ -27,6 +27,13 @@ /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"aH" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "aN" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -38,16 +45,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"aT" = ( +"bc" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) +"bs" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; + color = "#6b675e"; + dir = 5; icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "bP" = ( /obj/structure/flora/jungle/vines/light_3, @@ -60,37 +67,15 @@ "ci" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"cS" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"cA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/sand_temple) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "de" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"dr" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "dA" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -126,14 +111,6 @@ "dF" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"dJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "dK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -153,6 +130,25 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) +"dS" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "dV" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -211,12 +207,6 @@ "gw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"gA" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "gI" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -224,31 +214,12 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"gL" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "gS" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"gY" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "gZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -258,13 +229,29 @@ "hi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) +"hl" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"hu" = ( +/obj/item/weapon/sword, +/turf/open/gm/coast/beachcorner2/north_west, +/area/lv624/ground/caves/sand_temple) "hA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/sand_temple) -"hD" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" +"hK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "hO" = ( /obj/structure/bed/chair/comfy/black{ @@ -273,6 +260,20 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) +"hQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "ic" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -281,30 +282,6 @@ "if" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"ig" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"iw" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "iM" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -313,21 +290,25 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"iW" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"iO" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "ja" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"jR" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "jZ" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -336,6 +317,14 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) +"kM" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "lm" = ( /turf/open/gm/coast/east, /area/lv624/ground/caves/sand_temple) @@ -407,12 +396,19 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"mF" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"mE" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) "mI" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -422,6 +418,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"mS" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "mW" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -452,26 +451,36 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"nr" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, +"nA" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; icon = 'icons/mob/humans/species/r_synthetic.dmi'; icon_state = "Synthetic_Template"; name = "Eternal guardian" }, +/obj/item/clothing/mask/gas/yautja/damaged{ + anchored = 1; + armor_bio = 0; + armor_bomb = 0; + armor_bullet = 0; + armor_energy = 0; + armor_internaldamage = 0; + armor_laser = 0; + armor_melee = 0; + armor_rad = 0; + desc = "A beautifully designed stone face mask, both ornate and functional."; + name = "stone clan mask"; + unacidable = 0 + }, +/obj/structure/flora/jungle/vines/heavy, /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "nL" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -491,13 +500,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"ow" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "oC" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -515,16 +517,6 @@ "po" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/caves/sand_temple) -"pu" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "py" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -537,20 +529,14 @@ }, /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"pX" = ( +"pP" = ( /obj/structure/stairs/perspective{ - color = "#b29082"; + color = "#6b675e"; dir = 4; icon_state = "p_stair_full" }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "qf" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -593,30 +579,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"rL" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "rU" = ( /obj/effect/decal/remains/xeno{ pixel_x = 31 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"sd" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "sM" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, @@ -624,20 +592,6 @@ "sN" = ( /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"th" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "tn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -645,6 +599,24 @@ /obj/item/stack/yautja_rope, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"tr" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "ts" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -656,10 +628,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"tu" = ( -/obj/item/weapon/sword, -/turf/open/gm/coast/beachcorner2/north_west, -/area/lv624/ground/caves/sand_temple) "tE" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -672,18 +640,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"ue" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "uE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) @@ -702,22 +658,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"uQ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "vl" = ( /obj/item/tool/kitchen/utensil/spoon, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"vp" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "vu" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -742,16 +693,6 @@ "vY" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) -"we" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "wf" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -799,25 +740,9 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"wS" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "wU" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) -"wZ" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "xp" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -880,6 +805,18 @@ /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"yB" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "yT" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -901,6 +838,10 @@ "zA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) +"zD" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "zO" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -911,6 +852,14 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Aa" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "Ai" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) @@ -978,6 +927,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"Ca" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"Cg" = ( +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "Ci" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -995,22 +955,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"Cr" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"Dg" = ( +"Di" = ( /obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; + color = "#b29082"; + dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "Dj" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1028,6 +983,26 @@ "Dw" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) +"Dx" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"DB" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "DG" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -1041,23 +1016,6 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"Eq" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "Es" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/coast/beachcorner/north_east, @@ -1069,40 +1027,6 @@ "EJ" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/sand_temple) -"EM" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/mask/gas/yautja/damaged{ - anchored = 1; - armor_bio = 0; - armor_bomb = 0; - armor_bullet = 0; - armor_energy = 0; - armor_internaldamage = 0; - armor_laser = 0; - armor_melee = 0; - armor_rad = 0; - desc = "A beautifully designed stone face mask, both ornate and functional."; - name = "stone clan mask"; - unacidable = 0 - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "Ff" = ( /obj/item/weapon/twohanded/yautja/spear, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1130,12 +1054,9 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/caves/sand_temple) -"Ge" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"Go" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) "Gt" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -1165,13 +1086,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"He" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "Hk" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/bed/chair/comfy/black{ @@ -1196,30 +1110,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Hm" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "Hq" = ( /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"Hr" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) -"Hy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) "HJ" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1246,6 +1144,14 @@ "HN" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"HO" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "Il" = ( /obj/structure/flora/jungle/vines/heavy, /obj/item/tool/kitchen/utensil/fork{ @@ -1254,14 +1160,8 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"Ix" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, +"Iq" = ( +/turf/open/gm/dirtgrassborder/desert, /area/lv624/ground/barrens/south_eastern_barrens) "IZ" = ( /obj/structure/barricade/handrail/strata{ @@ -1270,11 +1170,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"Jc" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "Je" = ( /obj/item/weapon/harpoon/yautja{ name = "Alien Harpoon"; @@ -1316,21 +1211,7 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"Jw" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) -"JN" = ( +"Jz" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; @@ -1339,16 +1220,14 @@ icon_state = "Synthetic_Template"; name = "Eternal guardian" }, +/obj/structure/flora/jungle/vines/heavy, /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "JZ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -1363,60 +1242,18 @@ "Kk" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"Kl" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "Kr" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"KB" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "KL" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"KS" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "Lg" = ( /turf/open/gm/river, /area/lv624/ground/barrens/south_eastern_barrens) @@ -1435,6 +1272,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"LK" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "LL" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1462,27 +1303,26 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"Mn" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +"LX" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"Me" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 8 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "Mq" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -1493,75 +1333,96 @@ "MD" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"MK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "MX" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"Nt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ +"Ng" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; dir = 1; - icon_state = "squareswood" + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/ground/caves/sand_temple) -"ND" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"Nk" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) "OC" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"OJ" = ( -/obj/structure/barricade/handrail/strata, +"OF" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" + dir = 1 }, -/area/lv624/ground/barrens/south_eastern_barrens) -"OP" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, /area/lv624/ground/barrens/south_eastern_barrens) "OR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"OU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "Ps" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"Px" = ( +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "PA" = ( /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ name = "\improper Strange Temple" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"PI" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "PN" = ( /obj/structure/showcase{ color = "#95948B"; @@ -1609,23 +1470,47 @@ /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) +"Qo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/sand_temple) +"QE" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "QG" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"QL" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "QX" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 @@ -1647,6 +1532,14 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"Ry" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"RS" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "RV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1655,42 +1548,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"Sa" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"Sy" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "SK" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 @@ -1718,6 +1575,18 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/barrens/south_eastern_barrens) +"Tr" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "TY" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/surface/table/reinforced/prison{ @@ -1731,6 +1600,27 @@ }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) +"Ui" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor/map_random{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "Uk" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -1745,11 +1635,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"UK" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "UQ" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, @@ -1763,24 +1648,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"UZ" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) "Vu" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) +"VE" = ( +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "Wl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"Ws" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "Wv" = ( /obj/item/reagent_container/food/snacks/stew, /turf/open/floor/sandstone/runed, @@ -1789,6 +1669,13 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"WW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "Xg" = ( /obj/structure/barricade/handrail/strata{ dir = 1 @@ -1798,12 +1685,25 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) +"Xm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) "XV" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"XW" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "Yd" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -1816,28 +1716,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"YB" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor/map_random{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "YT" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -1859,11 +1737,6 @@ /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"ZG" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "ZX" = ( /turf/template_noop, /area/template_noop) @@ -1963,9 +1836,9 @@ ZX GT xO xO -Sa -ig -we +Dx +aH +WW xO xO GT @@ -2004,11 +1877,11 @@ GT GT GT Jm -rL -Dg -Ge -we -rL +LK +Ca +Kl +WW +LK xO GT GT @@ -2046,11 +1919,11 @@ GT GT GT xO -mF -QL -Nt -sd -mF +RS +bs +HO +Aa +RS Jm GT GT @@ -2088,11 +1961,11 @@ GT GT GT xO -rL -Ge -Ge -Ge -rL +LK +Kl +Kl +Kl +LK xO GT GT @@ -2130,11 +2003,11 @@ GT GT OC yA -ND -Jw -pu -gY -th +yB +Tr +pP +OU +jR Mq OC qf @@ -2171,13 +2044,13 @@ GT GT GT xO -ue -ow -Jc -Jc -Jc -gL -wS +Nk +zD +Cg +Cg +Cg +mS +kM if qf Ai @@ -2213,13 +2086,13 @@ GT GT GT Jm -EM -gL -Jc -Jc -Jc -gL -JN +nA +mS +Cg +Cg +Cg +mS +Ng OC qf Ai @@ -2255,13 +2128,13 @@ GT GT GT Jm -ue -gL -Jc -Jc -Jc -gL -wS +Nk +mS +Cg +Cg +Cg +mS +kM if qf Ai @@ -2297,13 +2170,13 @@ GT GT GT Jm -EM -gL -Jc -Jc -Jc -gL -JN +nA +mS +Cg +Cg +Cg +mS +Ng xO qf wU @@ -2339,13 +2212,13 @@ GT GT GT xO -wS -gL -Jc -Jc -Jc -gL -ue +kM +mS +Cg +Cg +Cg +mS +Nk Jm qf ax @@ -2381,13 +2254,13 @@ GT GT GT OC -YB -gL -Jc -Jc -Jc -gL -Mn +dS +mS +Cg +Cg +Cg +mS +Jz xO Ps po @@ -2424,11 +2297,11 @@ GT OC OC Mq -He -gA -gA -gA -He +Ry +iO +iO +iO +Ry Mq OC fE @@ -2549,7 +2422,7 @@ ai dA dA Dl -Sy +Ui vN mv mv @@ -2574,11 +2447,11 @@ ZX ZX ZX ts -iw +Me lI Zs Ck -uQ +LX wf uO "} @@ -2596,7 +2469,7 @@ rA mv mv wU -tu +hu ci vY eY @@ -2636,7 +2509,7 @@ Ai Ai mv Ba -aT +hl Ug ci vY @@ -2657,13 +2530,13 @@ mI uE uE SK -Ws +OF dF -Cr -UK -hD +VE +Iq +Px hi -OJ +XW zO "} (20,1,1) = {" @@ -2678,7 +2551,7 @@ Ai mv mv eM -Ge +Kl Yd MB MX @@ -2699,13 +2572,13 @@ uE uE uE uE -dJ +cA dF -UK -MK -UK +Iq +UZ +Iq hi -OP +Hm zO "} (21,1,1) = {" @@ -2741,13 +2614,13 @@ uE uE uE xx -iW +hK dF -ZG -UK -wZ +bc +Iq +Go hi -Ix +vp zO "} (22,1,1) = {" @@ -2801,13 +2674,13 @@ GT xO xO zZ -KS +QE qf Ai ax ci ky -nr +PI wR dA mB @@ -2826,11 +2699,11 @@ ZX ZX ZX yT -pX +Di uK Zs Jo -dr +DB vu JZ "} @@ -3260,7 +3133,7 @@ ZX ZX GT OC -cS +Qo Ai UX Ai @@ -3302,7 +3175,7 @@ ZX ZX GT bZ -KB +tr mv mv UX @@ -3344,7 +3217,7 @@ ZX ZX Ai bZ -Eq +mE vl mv vC @@ -3482,7 +3355,7 @@ Ai ax MB mv -Hr +hQ OC GT GT @@ -3599,7 +3472,7 @@ OC as XV Ai -Hy +Xm OC qz mv diff --git a/maps/map_files/LV624/medbay/10.destroyed.dmm b/maps/map_files/LV624/medbay/10.destroyed.dmm index d0f71603dd..2cbab72460 100644 --- a/maps/map_files/LV624/medbay/10.destroyed.dmm +++ b/maps/map_files/LV624/medbay/10.destroyed.dmm @@ -1,194 +1,121 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"am" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"az" = ( +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"aw" = ( -/obj/item/clothing/under/colonist, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"bE" = ( +/obj/effect/landmark/crap_item, +/obj/structure/barricade/wooden, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"aO" = ( +"cR" = ( +/obj/structure/machinery/iv_drip, /obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) -"bk" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"cZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) -"cQ" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"dS" = ( +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) -"fX" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" +"ef" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 2 }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"gp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"eL" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/medbay) -"hW" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Medbay APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, +"eM" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/medbay) -"ih" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "whitebluefull" +"hn" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"iq" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 2 - }, -/turf/open/floor{ - icon_state = "white" - }, +"hU" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) -"it" = ( -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" - }, +"il" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"jg" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"iN" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"jW" = ( -/obj/item/storage/firstaid/toxin, -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +"jP" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) "jY" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"ke" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "kg" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"kh" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "white" - }, +"km" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "kD" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"lk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"lD" = ( +"mm" = ( /obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_id = "Medbay" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"mz" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"mS" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/storage/belt/medical/full, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"nz" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, +"mV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "nG" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) +"ob" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "og" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"ok" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"ot" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/lv624/lazarus/medbay) -"pp" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"ow" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/damaged5/west, /area/lv624/lazarus/medbay) -"qe" = ( +"oB" = ( /obj/structure/surface/table, /obj/item/storage/box/masks{ pixel_x = -4 @@ -197,15 +124,25 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"rL" = ( +"oY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"pj" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"pL" = ( +/turf/open/floor/damaged5/west, +/area/lv624/lazarus/medbay) +"rD" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "rZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, @@ -215,41 +152,63 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"tK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, +"td" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"ti" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"uV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +"tj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"vm" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "platingdmg1" +"tL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"tQ" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"xe" = ( -/obj/structure/fence, -/turf/open/gm/dirtgrassborder/west, -/area/lv624/ground/colony/south_medbay_road) -"xF" = ( +"uy" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"uX" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/surgical_tray, /obj/item/reagent_container/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/open/floor{ - icon_state = "whitebluefull" +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"vE" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/medbay) +"xe" = ( +/obj/structure/fence, +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/colony/south_medbay_road) +"xh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"xK" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "xM" = ( /turf/open/gm/dirtgrassborder/north, @@ -258,42 +217,31 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"ys" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/medbay) "yU" = ( /obj/structure/girder, /turf/closed/wall, /area/lv624/lazarus/medbay) +"zh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_id = "Medbay" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/medbay) "zj" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"zl" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"zy" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"zD" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"zL" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +"zv" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "zS" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -306,302 +254,199 @@ "Bn" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"BL" = ( -/obj/structure/window_frame/colony, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"Cq" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"Df" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"Ca" = ( +/turf/open/floor/plating/panelscorched, /area/lv624/lazarus/medbay) -"Dk" = ( +"CO" = ( /obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"Ed" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"Dd" = ( +/obj/structure/window_frame/colony, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"EZ" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" +"DX" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"Fk" = ( -/turf/closed/wall, -/area/lv624/lazarus/medbay) -"FJ" = ( +"EP" = ( /obj/structure/surface/table, /obj/item/stack/medical/bruise_pack{ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"Gh" = ( -/obj/effect/landmark/crap_item, -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" +"Fk" = ( +/turf/closed/wall, +/area/lv624/lazarus/medbay) +"Fx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/damaged5/west, +/area/lv624/lazarus/medbay) +"FC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/medbay) +"FO" = ( +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/medbay) +"FV" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 }, +/obj/item/tool/pen, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "Ha" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"Il" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"Iy" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"IO" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"Jc" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"HK" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "JE" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"JK" = ( -/obj/item/stack/medical/ointment, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"JO" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/lv624/lazarus/medbay) -"JY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, -/area/lv624/lazarus/medbay) "Km" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"Lk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/medbay) -"MT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/medbay) -"MW" = ( +"Kx" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"Ny" = ( -/obj/structure/window_frame/colony, -/obj/item/shard, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"NO" = ( +"LH" = ( /obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/medbay) +"LP" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"MA" = ( +/obj/item/stack/medical/ointment, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/storage/belt/medical/full, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"Os" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"OK" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"NT" = ( +/obj/item/storage/firstaid, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"OO" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"OM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/lv624/lazarus/medbay) "Pd" = ( /obj/item/trash/cigbutt, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"Pk" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"Px" = ( -/obj/structure/surface/table, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/medbay) -"PE" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" +"Pm" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) "Qd" = ( /turf/open/floor, /area/lv624/lazarus/medbay) -"QR" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/medbay) -"RO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" - }, -/turf/open/floor{ - icon_state = "white" - }, +"QA" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) -"RT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged5" - }, +"Ri" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"TC" = ( +"Ru" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"Ul" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"RJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/medbay) -"Uq" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"SK" = ( +/obj/item/storage/firstaid/toxin, +/obj/structure/barricade/wooden, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"UG" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +"Tw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"UH" = ( +"TL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"Xv" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +"VY" = ( +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"WT" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/medbay) +"Xm" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) "XA" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"XD" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/medbay) "XJ" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/medbay) -"YJ" = ( -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"XP" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) -"YV" = ( -/turf/open/floor{ - icon_state = "white" - }, +"XR" = ( +/obj/item/clothing/under/colonist, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/medbay) +"XY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/plating/panelscorched, +/area/lv624/lazarus/medbay) +"Yi" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/medbay) (1,1,1) = {" @@ -649,10 +494,10 @@ XA Ha XA XJ -BL -BL -zy -am +Dd +Dd +Yi +Ri Fk JE JE @@ -668,13 +513,13 @@ XJ XJ XJ XJ -gp -am -Df -gp +tj +Ri +Xm +tj Fk -Ny -Ny +td +td Fk Be xe @@ -684,17 +529,17 @@ xe XA XA XJ -kh -qe +pj +oB Fk Fk -mS -QR -QR -pp -TC -zD -OK +Tw +dS +dS +tQ +Ru +LH +iN xM og og @@ -703,17 +548,17 @@ og XA XA XJ -NO -YV -jW -EZ -JK -QR -Pk -aw -Uq -Pk -Pk +mm +VY +SK +hU +MA +dS +ys +XR +FC +ys +ys xM og og @@ -722,94 +567,94 @@ og XA XJ XJ -hW -YV -Gh -UH -Pk -rL -Ul -Pk -Pk -mz +tL +VY +bE +TL +ys +CO +mV +ys +ys +ti Fk -Jc +XP og og "} (8,1,1) = {" XA XJ -bk -YV -zl -Iy -YV -YV -YV -QR -OO -Pk -JO -fX -Ny +ob +VY +rD +xK +VY +VY +VY +dS +km +ys +XY +Ca +td og og "} (9,1,1) = {" XA XJ -cQ -YV -YV -lk +hn +VY +VY +oY Fk -ok -Ed -YJ -Ed -UG -ot -ot -UH +ke +pL +az +pL +il +eM +eM +TL og og "} (10,1,1) = {" XA XJ -ih -YV -YV -Il +DX +VY +VY +uy yU -QR -QR -YJ -vm -uV -fX -Ed -YV +dS +dS +az +QA +FO +Ca +pL +VY og Pd "} (11,1,1) = {" XA XJ -jg -nz -Xv -Iy -UH -QR -YV -it -UG -iq -fX -Ed -Ny +zv +WT +OM +xK +TL +dS +VY +NT +il +ef +Ca +pL +td og og "} @@ -817,18 +662,18 @@ og XA XJ XJ -ok -YV -aO -YV -JY -YV -uV -Ed -Ed -PE +ke +VY +XD +VY +Fx +VY +FO +pL +pL +jP yU -fX +Ca og og "} @@ -836,17 +681,17 @@ og XA XA XJ -tK -zL -IO -Jc -Lk -Ed -Ed -Dk -RT -Px -am +eL +LP +cR +XP +Pm +pL +pL +cZ +ow +vE +Ri xM og og @@ -855,17 +700,17 @@ og XA XA XJ -xF -Cq +uX +HK Fk Fk -MT -Ed -Ed -lD -FJ -Os -OK +RJ +pL +pL +zh +EP +FV +iN xM og og @@ -877,13 +722,13 @@ XJ XJ XJ XJ -Ed -QR -QR -MW -Jc -BL -BL +pL +dS +dS +Kx +XP +Dd +Dd Fk nG og @@ -897,8 +742,8 @@ XA XA XJ XJ -YV -RO +VY +xh XJ XJ Bn diff --git a/maps/map_files/LV624/medbay/30.larvasurgery.dmm b/maps/map_files/LV624/medbay/30.larvasurgery.dmm index 7a773c4c6d..41b7064454 100644 --- a/maps/map_files/LV624/medbay/30.larvasurgery.dmm +++ b/maps/map_files/LV624/medbay/30.larvasurgery.dmm @@ -12,289 +12,27 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"ai" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aj" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "al" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"an" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"ao" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/belt/medical/full, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"ap" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aq" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"ar" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"as" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/storage/surgical_tray, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"at" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "au" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"av" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aw" = ( -/obj/item/reagent_container/hypospray, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"az" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"aA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"aB" = ( -/obj/item/reagent_container/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/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aC" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aJ" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aO" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"aP" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"aU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "aX" = ( /turf/open/floor, /area/lv624/lazarus/medbay) -"aY" = ( -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"bc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bg" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) -"bi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) -"bk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"bo" = ( -/obj/structure/window_frame/colony, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"bq" = ( -/obj/structure/bed, +"br" = ( +/obj/effect/landmark/corpsespawner/colonist/random/burst, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"bs" = ( -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bu" = ( -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "bw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) -"bx" = ( -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"by" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bA" = ( -/obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"bB" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) "bE" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -310,96 +48,125 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"bN" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +"bO" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"io" = ( -/obj/item/stack/medical/ointment, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" +"ct" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, +/turf/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) -"mA" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "white" +"fj" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 2 }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"pc" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, +"fY" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"hv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"hW" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"kL" = ( +/obj/structure/surface/table, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"kP" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"ll" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"qr" = ( +"lI" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"mg" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) +"mK" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"nk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"nW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"op" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"os" = ( /obj/structure/surface/table, /obj/item/reagent_container/spray, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"pg" = ( +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"qC" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" +"qs" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "qK" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"qP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Medbay APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/effect/landmark/corpsespawner/colonist/random/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"tr" = ( -/obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +"sr" = ( +/obj/item/storage/firstaid, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"us" = ( +"sB" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue, /area/lv624/lazarus/medbay) -"uD" = ( -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "white" +"sK" = ( +/obj/item/reagent_container/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/open/floor/whiteblue/east, /area/lv624/lazarus/medbay) -"vC" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "whitebluefull" +"tv" = ( +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"tE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"vQ" = ( +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/medbay) "we" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, @@ -409,108 +176,176 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"yd" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" +"xi" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/medbay) +"yj" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) "zE" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"zF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "zL" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"AO" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"CZ" = ( -/obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "white" +"BF" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"DR" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, +"Cu" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"En" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks{ - pixel_x = -4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "whitebluefull" +"CR" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "Es" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"ES" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/colony/south_medbay_road) -"Gu" = ( +"Ey" = ( /obj/structure/closet/wardrobe, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"EG" = ( +/obj/item/trash/plate, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"EL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"ES" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/colony/south_medbay_road) +"Fd" = ( +/turf/open/floor/whitebluecorner/east, /area/lv624/lazarus/medbay) -"JK" = ( +"FX" = ( +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/medbay) +"Gc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"Hm" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"Hs" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"It" = ( +/obj/item/reagent_container/hypospray, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"IC" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"Jg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"JN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) +"Kg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"Ll" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/item/tool/kitchen/utensil/knife{ pixel_x = 8; pixel_y = 6 }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) -"Le" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +"LK" = ( +/obj/item/tool/crowbar, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) "LQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"Mc" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"Mo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"MW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/storage/surgical_tray, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/medbay) "Np" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"Nw" = ( +/obj/item/stack/medical/ointment, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"Oa" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) "Pe" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"Pi" = ( +"PW" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"RF" = ( /obj/structure/surface/table, /obj/structure/machinery/light{ dir = 4 @@ -519,57 +354,67 @@ phone_category = "Lazarus Landing"; phone_id = "Medbay" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"Qu" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" +"Ts" = ( +/obj/item/storage/firstaid/toxin, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) +"TW" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 }, +/obj/item/tool/pen, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"QG" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 2 +"Uh" = ( +/obj/item/clothing/under/colonist, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"Vm" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"Wc" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor{ - icon_state = "white" +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 }, +/obj/item/storage/belt/medical/full, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) -"QQ" = ( +"Ww" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, +/turf/open/floor/whiteblue/west, /area/lv624/lazarus/medbay) -"TK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" - }, +"WD" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"Vq" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "whiteblue" - }, +"WW" = ( +/obj/item/bedsheet/medical, +/turf/open/floor/white, /area/lv624/lazarus/medbay) -"VI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"Xq" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) -"YV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, +"XS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"Zd" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/medbay) (1,1,1) = {" @@ -617,10 +462,10 @@ ac ag ac ae -mA -mA -bo -mA +Cu +Cu +WD +Cu af zE zE @@ -636,13 +481,13 @@ ae ae ae ae -VI -aO -bq -VI +tE +ll +Vm +tE af -mA -mA +Cu +Cu af bw bE @@ -652,17 +497,17 @@ bE ac ac ae -an -En +PW +yj af af -aP -CZ -YV -Gu -qr -QQ -mA +qs +WW +Oa +Ey +os +Ww +Cu ES bF bF @@ -671,17 +516,17 @@ bF ac ac ae -ao -av -tr +Wc +mK +Ts af -io -aq -aq -aY -aq -zF -mA +Nw +pg +pg +Uh +pg +fY +Cu ES bF bF @@ -690,16 +535,16 @@ bF ac ae ae -qP -aq -az -TK -aq -az -aq -aq -aq -bp +br +pg +Kg +hv +pg +Kg +pg +pg +pg +nk af af bF @@ -708,76 +553,76 @@ bF (8,1,1) = {" ac ae -ai -bi -aw -aq -aq -aq -aq -aq -bs -bx -bB -bN -bo +kP +xi +It +pg +pg +pg +pg +pg +tv +EG +JN +Jg +WD bF bF "} (9,1,1) = {" ac ae -aj -aA -aA -aI +Mc +Mo +Mo +nW af -bb -aq -vC -bu -by -aq -aq -TK +Xq +pg +hW +LK +lI +pg +pg +hv bF bF "} (10,1,1) = {" ac ae -ap -aq -aq -aJ +BF +pg +pg +bO af -bk -aq -JK -ar -aq -aq -aq -aq +XS +pg +Ll +Hs +pg +pg +pg +pg bF bI "} (11,1,1) = {" ac ae -Qu -qC -az -aq -TK -aq -aq -uD -aq -QG -bg -yd -mA +IC +Fd +Kg +pg +hv +pg +pg +sr +pg +fj +FX +vQ +Cu bF bF "} @@ -785,16 +630,16 @@ bF ac ae ae -ar -aA -AO -aq -aq -aq -aq -aq -aq -us +Hs +Mo +op +pg +pg +pg +pg +pg +pg +sB af af bF @@ -804,17 +649,17 @@ bF ac ac ae -as -aB -Le +MW +sK +mg af -aU -aq -aq -az -pc -Vq -mA +CR +pg +pg +Kg +EL +kL +Cu ES bF bF @@ -823,17 +668,17 @@ bF ac ac ae -at -aC +Zd +Hm af af -aP -aq -bg -Pi -DR -bA -mA +qs +pg +FX +RF +ct +TW +Cu ES bF bF @@ -845,13 +690,13 @@ ae ae ae ae -VI -aq -aq -VI +tE +pg +pg +tE af -mA -mA +Cu +Cu af wz bF @@ -865,8 +710,8 @@ ac ac ae ae -aq -bc +pg +Gc ae ae Pe diff --git a/maps/map_files/LV624/science/10.yautja.dmm b/maps/map_files/LV624/science/10.yautja.dmm index e9c8ffd648..a948201c2a 100644 --- a/maps/map_files/LV624/science/10.yautja.dmm +++ b/maps/map_files/LV624/science/10.yautja.dmm @@ -14,21 +14,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"ad" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) "ae" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) @@ -48,26 +33,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"aj" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/item/weapon/yautja/combistick, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ak" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"al" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "an" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, @@ -85,328 +50,197 @@ "ar" = ( /turf/closed/wall, /area/lv624/lazarus/research) -"at" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"au" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "av" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"aw" = ( -/obj/structure/machinery/optable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"bg" = ( +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) +"bh" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/central_jungle) +"bq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/white, /area/lv624/lazarus/research) -"ax" = ( +"bw" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ay" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"az" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aD" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/clothing/glasses/regular, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aE" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"bT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aF" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"cd" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper/research_notes, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aG" = ( +"cY" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aH" = ( +"dK" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"eJ" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aK" = ( -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, -/turf/open/floor{ - icon_state = "white" - }, +"iB" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, +"jo" = ( /obj/structure/surface/table, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/obj/effect/landmark/crap_item, +/obj/item/weapon/yautja/combistick, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aN" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - icon_state = "white" - }, +"lX" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aO" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, +"mG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/item/tool/crowbar, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aP" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome" +"nb" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"pM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - icon_state = "white" +/obj/effect/landmark/crap_item, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Research Dome"; + pixel_y = 24 }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aQ" = ( +"rH" = ( /obj/item/clothing/glasses/regular, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"aS" = ( +"sg" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; id = "science_blast"; layer = 3.3; name = "\improper Science Wing Blast Door" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"aX" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"aY" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"aZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ba" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"th" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" }, -/area/lv624/lazarus/research) -"bd" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"be" = ( +"tO" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; pixel_x = 11 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"bf" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"uv" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"bg" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) -"bh" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/central_jungle) -"bj" = ( +"vc" = ( /obj/structure/surface/table, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/obj/structure/machinery/light, +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/item/tool/surgery/retractor/predatorretractor, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"bk" = ( -/obj/structure/surface/table, -/obj/item/explosive/grenade/spawnergrenade/smartdisc, -/obj/item/explosive/grenade/spawnergrenade/smartdisc, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"yG" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"ec" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"Bw" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"gd" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" +"BD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"gM" = ( +"ER" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /obj/structure/surface/table, /obj/item/paper/research_notes, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"iy" = ( +"GA" = ( /obj/structure/surface/table, -/obj/item/weapon/yautja/scythe, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"lw" = ( +"Hs" = ( /obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/obj/item/weapon/yautja/knife, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"mG" = ( +"HF" = ( /obj/structure/surface/table, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"nJ" = ( +"HO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"It" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/remains/human, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"Iv" = ( /obj/structure/machinery/light{ dir = 8 }, @@ -418,111 +252,139 @@ }, /obj/item/paper/research_notes, /obj/item/prop/alien/hugger, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/lv624/lazarus/research) +"Iy" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"rg" = ( +"IP" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"IY" = ( /obj/structure/surface/table, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"zm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "white" +"Jc" = ( +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"Cp" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"Ju" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"JM" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Ml" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Mr" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome" + }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"CC" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"Mt" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"Os" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, /area/lv624/lazarus/research) -"Dm" = ( +"OD" = ( /obj/structure/surface/table, +/obj/item/paper/research_notes, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"OE" = ( /obj/structure/machinery/light, -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/item/tool/surgery/retractor/predatorretractor, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"FO" = ( +"OG" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/white, +/area/lv624/lazarus/research) +"OP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"Lo" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/remains/human, -/turf/open/floor{ - icon_state = "white" +"Pd" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, +/obj/item/clothing/glasses/regular, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"LE" = ( +"RJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Si" = ( /obj/structure/surface/table, /obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"Np" = ( +"Ug" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"Rn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"Wk" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard, /obj/effect/landmark/crap_item, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Research Dome"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"Rr" = ( +"Wp" = ( /obj/structure/surface/table, -/obj/item/weapon/yautja/knife, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/item/explosive/grenade/spawnergrenade/smartdisc, +/obj/item/explosive/grenade/spawnergrenade/smartdisc, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Yf" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"Zw" = ( +"YB" = ( /obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/obj/item/weapon/yautja/scythe, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"YD" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"YU" = ( +/turf/open/floor/white, /area/lv624/lazarus/research) (1,1,1) = {" @@ -533,7 +395,7 @@ aa aa ab ao -aN +Mr ao ab aa @@ -549,9 +411,9 @@ ao ao ao ab -Zw -ak -ec +lX +YU +nb ab ao ao @@ -562,51 +424,51 @@ aa (3,1,1) = {" aa ai -mG -aw -Dm +HF +IP +vc ar -gM -aO -aE +dK +OP +OE ar -lw -aX -FO +GA +Mt +YD ac aa "} (4,1,1) = {" aa ai -al -ax -al -aG -al -gd -al -aG -aX -aX -aX +Ju +bw +Ju +cY +Ju +OG +Ju +cY +Mt +Mt +Mt ac aa "} (5,1,1) = {" aa ai -al -al -aD +Ju +Ju +Pd ar -al -ak -al +Ju +YU +Ju ar -aY -aX -be +Bw +Mt +tO ac aa "} @@ -614,83 +476,83 @@ aa ab ab ar -ay +eJ ar ar ar -aP +Yf ar ar ar -ay +eJ ar ab ab "} (7,1,1) = {" ac -LE -Zw -ec -al +Si +lX +nb +Ju ar -nJ -Lo -gd +Iv +It +OG ar -aZ -CC -bf -rg +bT +RJ +Wk +OD ac "} (8,1,1) = {" -ad -ak -ak -Lo -ak -aH -ak -zm -ak -aH -ak -ak -zm -ak -ad +th +YU +YU +It +YU +yG +YU +bq +YU +yG +YU +YU +bq +YU +th "} (9,1,1) = {" ac -ec -ba -al -al +nb +Iy +Ju +Ju ar -aK -ak -aT +Jc +YU +Os ar -ba -ec -al -al +Iy +nb +Ju +Ju ac "} (10,1,1) = {" ab ab ar -az +uv ar ab ab -aP +Yf ab ab ar -ay +eJ ar ab ab @@ -698,51 +560,51 @@ ab (11,1,1) = {" ae ai -Zw -al -aE +lX +Ju +OE ab -ec -ak -al +HO +YU +Ju ab -Rn -al -Rr +pM +Ju +Hs ac bg "} (12,1,1) = {" ae ai -at -aA -al -aG -al -Np -al -aG -al -bd -bj +cd +BD +Ju +cY +Ju +Ug +Ju +cY +Ju +iB +IY ac bg "} (13,1,1) = {" ae ac -au -ec -aF +Ml +nb +JM ab -aL -aQ -al +ER +rH +Ju ab -iy -bk -aj +YB +Wp +jo ac bg "} @@ -753,9 +615,9 @@ ao ao ao ab -Cp -ak -aE +mG +YU +OE ab ao ao @@ -771,8 +633,8 @@ av av ab ab -aS -aS +sg +sg ab bg bg diff --git a/maps/map_files/LV624/science/40.fullylocked.dmm b/maps/map_files/LV624/science/40.fullylocked.dmm index 9ebc528d01..9df3379571 100644 --- a/maps/map_files/LV624/science/40.fullylocked.dmm +++ b/maps/map_files/LV624/science/40.fullylocked.dmm @@ -14,21 +14,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"ad" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) "ae" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) @@ -48,25 +33,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"aj" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ak" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"al" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "an" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, @@ -81,224 +47,142 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"ap" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ar" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"as" = ( -/obj/structure/machinery/optable, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"at" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "au" = ( /turf/closed/wall, /area/lv624/lazarus/research) -"av" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"aw" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "ax" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"ay" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"bE" = ( +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) +"bF" = ( +/turf/closed/wall/strata_ice/jungle, +/area/lv624/ground/jungle/central_jungle) +"bM" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"az" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - icon_state = "white" - }, +"bO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aA" = ( -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, -/turf/open/floor{ - icon_state = "white" - }, +"dm" = ( +/turf/open/floor/white, /area/lv624/lazarus/research) -"aB" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"ff" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"aC" = ( +"fQ" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"gM" = ( +/obj/structure/surface/table, +/obj/structure/machinery/cell_charger, +/obj/item/tool/crowbar, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aD" = ( +"js" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"jE" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aG" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/clothing/glasses/regular, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"kg" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"aI" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" +"ly" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"aJ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"lS" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aK" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"nT" = ( +/obj/item/clothing/glasses/regular, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"oa" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"pL" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"qg" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, +/obj/item/clothing/glasses/regular, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aL" = ( +"sc" = ( /obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"aM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" +"sn" = ( +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"aO" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"st" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/xenoautopsy/jar_shelf, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"sJ" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aR" = ( +"vG" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"aS" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"wv" = ( +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aT" = ( -/obj/structure/surface/table, -/obj/structure/machinery/cell_charger, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"wE" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"aU" = ( +"yd" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ dir = 4; id = "science_blast"; @@ -309,63 +193,44 @@ locked = 1; name = "\improper Research Dome" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"aV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, +"yh" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"bm" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" +"zn" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"bp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"Aq" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"bq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"Av" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" }, -/area/lv624/lazarus/research) -"bx" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"bz" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"AG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"bE" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) -"bF" = ( -/turf/closed/wall/strata_ice/jungle, -/area/lv624/ground/jungle/central_jungle) -"nW" = ( +"Bw" = ( /obj/structure/machinery/light{ dir = 8 }, @@ -376,79 +241,96 @@ pixel_y = 5 }, /obj/item/storage/fancy/vials/random, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/research) -"qs" = ( -/obj/structure/surface/table, -/obj/item/storage/fancy/vials/random, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"so" = ( -/obj/item/clothing/glasses/regular, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"tP" = ( +"EY" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; phone_id = "Research Dome"; pixel_y = 24 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"wY" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) -"DC" = ( -/obj/structure/machinery/light, +"FJ" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/turf/open/floor/white, +/area/lv624/lazarus/research) +"HT" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/obj/item/paper/research_notes, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Id" = ( +/obj/structure/machinery/optable, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"IY" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/structure/surface/table, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"JM" = ( +/turf/open/floor/freezerfloor, /area/lv624/lazarus/research) -"HE" = ( +"KD" = ( +/obj/structure/surface/table, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"LL" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"NO" = ( /obj/structure/surface/table, /obj/item/tool/surgery/scalpel{ pixel_y = 12 }, /obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"PD" = ( +/obj/structure/surface/table, +/obj/item/paper/research_notes, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"QH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"Jv" = ( -/obj/effect/landmark/corpsespawner/scientist, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" +"Ri" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Rk" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/xenoautopsy/jar_shelf, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"Kl" = ( +"Wx" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) -"Tz" = ( -/obj/structure/surface/table, -/obj/item/paper/research_notes, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"XS" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + dir = 1; + locked = 1; + name = "\improper Research Dome" }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"Yd" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/northeast, /area/lv624/lazarus/research) (1,1,1) = {" @@ -459,7 +341,7 @@ aa aa ab ao -aU +yd ao ab aa @@ -475,9 +357,9 @@ ao ao ao ab -qs -Jv -ay +st +pL +wv ab ao ao @@ -488,51 +370,51 @@ aa (3,1,1) = {" aa ai -aj -as -HE +KD +Id +NO au -Tz -aV -aJ +PD +AG +Yd au -bm -wY -wY +kg +JM +JM ac aa "} (4,1,1) = {" aa ai -al -at -ay -aL -ay -ak -ay -aL -wY -wY -wY +js +QH +wv +XS +wv +dm +wv +XS +JM +JM +JM ac aa "} (5,1,1) = {" aa ai -ap -ay -aG +Aq +wv +qg au -tP -ak -ay +EY +dm +wv au -aO -wY -aR +ly +JM +vG ac aa "} @@ -540,83 +422,83 @@ aa ab ab au -aB +fQ au au au -aC +sc au au au -aB +fQ au ab ab "} (7,1,1) = {" ac -Tz -aj -ay -ay +PD +KD +wv +wv au -nW -Kl -ak +Bw +FJ +dm au -bp -ay -bz -Tz +bO +wv +Ri +PD ac "} (8,1,1) = {" -ad -ak -ak -Jv -ak -az -ak -ak -Kl -az -ak -Jv -ak -ak -ad +Av +dm +dm +pL +dm +zn +dm +dm +FJ +zn +dm +pL +dm +dm +Av "} (9,1,1) = {" ac -ay -bq -ay -ay +wv +lS +wv +wv au -aA -ak -aM +sn +dm +ff au -bq -ay -ay -ay +lS +wv +wv +wv ac "} (10,1,1) = {" ab ab au -aw +LL au ab ab -aC +sc ab ab au -aB +fQ au ab ab @@ -624,51 +506,51 @@ ab (11,1,1) = {" ae ai -qs -ay -aJ +st +wv +Yd ab -ay -ak -ay +oa +dm +wv ab -aP -ay -aj +Rk +wv +KD ac bE "} (12,1,1) = {" ae ai -av -aD -ay -aL -ay -Kl -ay -aL -ay -bx -qs +HT +jE +wv +XS +wv +FJ +wv +XS +wv +yh +st ac bE "} (13,1,1) = {" ae ac -ar -ay -aK +sJ +wv +bM ab -aS -so -ay +IY +nT +wv ab -Tz -Tz -aj +PD +PD +KD ac bE "} @@ -679,9 +561,9 @@ ao ao ao ab -aT -ak -DC +gM +dm +Wx ab ao ao @@ -697,8 +579,8 @@ ax ax ab ab -aI -aI +wE +wE ab bE bE diff --git a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm index 01a7f91c60..1bb4a39563 100644 --- a/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm +++ b/maps/map_files/LV624/sprinkles/20.lz-containers_swapped.dmm @@ -1,16 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"c" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) "d" = ( /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) @@ -18,235 +6,197 @@ /obj/effect/landmark/hunter_primary, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"g" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +"l" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"j" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, +"n" = ( +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"k" = ( -/obj/structure/machinery/bot/mulebot{ - auto_pickup = 0; - auto_return = 0; - health = 1; - on = 0 - }, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +"r" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"m" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +"u" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"o" = ( +"x" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, +/turf/open/floor/warning/southwest, /area/lv624/lazarus/landing_zones/lz1) -"p" = ( -/turf/open/floor{ - icon_state = "warning" - }, +"z" = ( +/turf/open/floor/loadingarea/north, /area/lv624/lazarus/landing_zones/lz1) -"t" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +"A" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"C" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +"E" = ( +/turf/open/floor/warning, /area/lv624/lazarus/landing_zones/lz1) "F" = ( /obj/vehicle/train/cargo/trolley, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"K" = ( +"G" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"H" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) -"L" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +"J" = ( +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) -"O" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" +"M" = ( +/turf/open/floor/warningcorner/east, +/area/lv624/lazarus/landing_zones/lz1) +"N" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 8 + }, +/turf/open/floor/warning/west, /area/lv624/lazarus/landing_zones/lz1) "P" = ( /obj/vehicle/train/cargo/engine, /obj/effect/landmark/good_item, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"R" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) -"T" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) -"U" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +"Q" = ( +/obj/structure/machinery/bot/mulebot{ + auto_pickup = 0; + auto_return = 0; + health = 1; + on = 0 }, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) -"X" = ( +"S" = ( /obj/structure/machinery/bot/mulebot{ auto_pickup = 0; auto_return = 0; health = 1; on = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"V" = ( +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"Z" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/loadingarea/west, /area/lv624/lazarus/landing_zones/lz1) (1,1,1) = {" -a -a -a -j -a -a -a -o -a -a -R +V +V +V +N +V +V +V +x +V +V +M d d d -p +E "} (2,1,1) = {" -L -c -g -c -c -k -L -p -L -m -U -m -L -m -p +n +J +Z +J +J +Q +n +E +n +G +l +G +n +G +E "} (3,1,1) = {" -m +G d -L +n d -t +u d -m -p -O +G +E +z d F d d d -p +E "} (4,1,1) = {" -T +A d -C +r d -m +G d -L -p -O +n +E +z d -U -T -m -m -p +l +A +G +G +E "} (5,1,1) = {" -C +r d -X +S f -L +n d -L -p -O +n +E +z d P d d d -p +E "} (6,1,1) = {" -L +n d -L +n d -L +n d -L -p -L -L -L -t -K -L -p +n +E +n +n +n +u +H +n +E "} diff --git a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm index 421249816a..d74422a285 100644 --- a/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm +++ b/maps/map_files/LV624/sprinkles/30.nexuscenter_barricaded.dmm @@ -1,241 +1,180 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/floor{ - icon_state = "damaged5" - }, -/area/lv624/lazarus/main_hall) -"ab" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"ac" = ( -/turf/open/floor{ - icon_state = "damaged2" - }, -/area/lv624/lazarus/main_hall) "ad" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/stack/sheet/metal, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"ae" = ( -/turf/open/floor{ - icon_state = "damaged4" - }, -/area/lv624/lazarus/main_hall) -"af" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/main_hall) -"ag" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"ah" = ( -/obj/structure/machinery/vending/snack, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"ai" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor{ - icon_state = "floorscorched2" - }, -/area/lv624/lazarus/main_hall) -"aj" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor{ - icon_state = "damaged2" - }, +"aD" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor, /area/lv624/lazarus/main_hall) -"ak" = ( +"aS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/landmark/corpsespawner/doctor, /obj/item/frame/table, -/obj/item/ammo_magazine/smg/mp27, -/turf/open/floor{ - icon_state = "white" - }, +/obj/item/ammo_casing, +/turf/open/floor, /area/lv624/lazarus/main_hall) -"al" = ( +"aY" = ( /obj/effect/decal/cleanable/blood/splatter, +/obj/item/limb/arm/l_arm, +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" +/turf/open/floor, +/area/lv624/lazarus/main_hall) +"aZ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/table{ + flipped = 1 }, +/turf/open/floor, /area/lv624/lazarus/main_hall) -"am" = ( -/obj/effect/landmark/good_item, +"bg" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor, /area/lv624/lazarus/main_hall) -"an" = ( +"bk" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/obj/structure/surface/table, +/turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"ap" = ( -/obj/item/weapon/twohanded/fireaxe, -/obj/item/ammo_casing, +"bn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/closed/wall/mineral/gold, /area/lv624/lazarus/main_hall) -"aq" = ( -/obj/item/ammo_casing, +"bL" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/surface/table{ + flipped = 1 + }, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" +/turf/open/floor, +/area/lv624/lazarus/main_hall) +"bM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/limb/leg/r_leg, +/obj/structure/surface/table{ + flipped = 1 }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor, /area/lv624/lazarus/main_hall) -"ar" = ( +"dE" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/limb/foot/l_foot, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged3" +/turf/open/floor/floorscorched1, +/area/lv624/lazarus/main_hall) +"dQ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/main_hall) +"ef" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"as" = ( -/obj/item/limb/arm/l_arm, +"eI" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"at" = ( -/obj/effect/decal/cleanable/vomit, -/obj/item/ammo_casing, +"fz" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"fU" = ( +/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/whiteyellowcorner/north, /area/lv624/lazarus/main_hall) -"au" = ( -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, +"gY" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"av" = ( +"hC" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/limb/arm/l_arm, +/obj/item/frame/table, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"aw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_casing, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, +"hL" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"ax" = ( -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +"if" = ( +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) -"ay" = ( -/obj/effect/decal/cleanable/blood/splatter, +"is" = ( +/obj/item/tool/crowbar, /obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" +/obj/structure/surface/table{ + dir = 8; + flipped = 1 }, +/obj/item/ammo_casing, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"az" = ( +"jk" = ( /obj/effect/decal/cleanable/blood/splatter, +/obj/structure/surface/table{ + flipped = 1 + }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"aA" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"jp" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/cult, +/area/lv624/lazarus/kitchen) +"ju" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Chapel" }, -/obj/structure/barricade/wooden, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/lv624/lazarus/chapel) +"jz" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/area/lv624/lazarus/main_hall) -"aB" = ( -/obj/structure/flora/pottedplant, -/obj/structure/barricade/wooden, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) -"aC" = ( -/obj/effect/decal/cleanable/blood/splatter, +"kt" = ( /obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"kA" = ( /obj/effect/decal/cleanable/blood/splatter, +/obj/item/limb/foot/l_foot, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, -/area/lv624/lazarus/main_hall) -"aD" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor, -/area/lv624/lazarus/main_hall) -"aE" = ( -/obj/item/trash/chips, -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"aF" = ( +"kF" = ( /obj/item/limb/foot/r_foot, /obj/structure/surface/table{ dir = 8; @@ -243,39 +182,18 @@ }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"aG" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/limb/arm/l_arm, -/obj/item/frame/table, +"kJ" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/frame/table, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) -"aI" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/frame/table, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +"kM" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/main_hall) -"aJ" = ( +"kT" = ( /obj/item/limb/hand/r_hand, /obj/structure/surface/table{ dir = 4; @@ -283,752 +201,444 @@ }, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aK" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"aL" = ( -/turf/open/floor{ - icon_state = "floorscorched1" - }, +"lu" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/frame/table, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"aM" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "damaged2" - }, +"lH" = ( +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27, +/turf/open/floor/wall_thermite, /area/lv624/lazarus/main_hall) -"aN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "damaged5" - }, +"lI" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/tool/mop, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"aO" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - icon_state = "white" - }, +"lO" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) -"aP" = ( +"mx" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"aQ" = ( -/obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, /obj/item/ammo_casing, +/turf/open/floor/floorscorched2, +/area/lv624/lazarus/main_hall) +"mI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged3" - }, +/turf/open/floor/whitegreen, /area/lv624/lazarus/main_hall) -"aR" = ( +"no" = ( /obj/item/limb/foot/r_foot, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) -"aS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/corpsespawner/doctor, +"nM" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"nP" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/main_hall) +"oh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/frame/table, /obj/item/ammo_casing, -/turf/open/floor, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) -"aT" = ( -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27, -/turf/open/floor{ - icon_state = "wall_thermite" - }, -/area/lv624/lazarus/main_hall) -"aU" = ( +"oj" = ( +/obj/item/stack/barbed_wire, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged4" - }, -/area/lv624/lazarus/main_hall) -"aV" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"aW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "white" - }, +"os" = ( +/turf/open/floor/whiteyellow/west, /area/lv624/lazarus/main_hall) -"aX" = ( +"oC" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/cult, +/area/lv624/lazarus/canteen) +"pC" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) -"aY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/limb/arm/l_arm, -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/blood/splatter, +"pY" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen" + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"qo" = ( +/obj/item/trash/raisins, +/obj/structure/barricade/wooden{ + dir = 8 + }, /obj/item/ammo_casing, -/turf/open/floor, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"aZ" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/table{ - flipped = 1 - }, -/turf/open/floor, +"qs" = ( +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) -"ba" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +"ra" = ( +/obj/item/weapon/gun/smg/mp27, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"bb" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "platingdmg3" +"rz" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bc" = ( -/obj/effect/decal/cleanable/blood/splatter, +"rS" = ( +/obj/effect/landmark/corpsespawner/chef, /obj/structure/surface/table{ - flipped = 1 - }, -/turf/open/floor{ dir = 4; - icon_state = "whiteyellowfull" + flipped = 1 }, -/area/lv624/lazarus/main_hall) -"bd" = ( -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"be" = ( -/obj/item/stack/barbed_wire, +"sB" = ( +/obj/item/trash/chips, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, -/area/lv624/lazarus/main_hall) -"bf" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bg" = ( +"sH" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor, -/area/lv624/lazarus/main_hall) -"bh" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/frame/table, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) -"bi" = ( +"sJ" = ( /obj/effect/decal/cleanable/blood/gibs, +/obj/item/weapon/gun/pistol/highpower, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, -/area/lv624/lazarus/main_hall) -"bj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/platingdmg3, /area/lv624/lazarus/main_hall) -"bk" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/pipes/standard/simple/hidden/cyan, +"sM" = ( /obj/structure/surface/table, -/turf/open/floor/grass, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bl" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" +"sZ" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ + dir = 1 }, -/area/lv624/lazarus/main_hall) -"bm" = ( -/turf/open/floor{ - icon_state = "floorscorched2" +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bn" = ( +"tt" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/closed/wall/mineral/gold, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bo" = ( -/obj/item/stack/barbed_wire, -/turf/open/floor{ - icon_state = "damaged2" +"ub" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/lv624/lazarus/main_hall) -"bp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/limb/foot/l_foot, -/obj/item/ammo_casing, -/obj/item/ammo_casing, +/obj/structure/barricade/wooden, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - icon_state = "damaged4" - }, +"uI" = ( +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) -"br" = ( +"ve" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/surface/table{ - dir = 4; flipped = 1 }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"bs" = ( -/obj/item/ammo_casing, -/obj/item/ammo_casing, +"vH" = ( +/turf/open/floor/damaged5, +/area/lv624/lazarus/main_hall) +"vS" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/whiteyellow/east, /area/lv624/lazarus/main_hall) -"bt" = ( +"vZ" = ( /obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/damaged3, /area/lv624/lazarus/main_hall) -"bu" = ( -/obj/item/stack/barbed_wire, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" +"xr" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Nexus Cargo Storage" }, -/area/lv624/lazarus/main_hall) -"bv" = ( -/obj/item/ammo_casing, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"xC" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"bw" = ( -/obj/structure/barricade/metal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +"yh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/main_hall) -"bx" = ( -/turf/open/floor{ - icon_state = "wall_thermite" +"yT" = ( +/obj/structure/machinery/vending/snack, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, +/turf/open/floor/whiteblue/northeast, /area/lv624/lazarus/main_hall) -"by" = ( +"za" = ( +/obj/item/weapon/twohanded/fireaxe, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"bz" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bA" = ( -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/surface/table{ - dir = 8; - flipped = 1 - }, -/obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +"zd" = ( +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bB" = ( +"zh" = ( +/obj/structure/barricade/wooden, /obj/effect/decal/cleanable/blood/splatter, -/obj/item/limb/foot/l_foot, -/obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/main_hall) -"bC" = ( -/obj/effect/decal/cleanable/blood{ - pixel_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/limb/hand/l_hand, -/obj/item/ammo_casing, +"zH" = ( +/obj/item/weapon/gun/smg/mp27, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) -"bD" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/weapon/gun/pistol/highpower, +"An" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "platingdmg3" - }, +/turf/open/floor/floorscorched2, /area/lv624/lazarus/main_hall) -"bE" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/structure/surface/table{ - dir = 4; - flipped = 1 - }, +"BM" = ( /obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"bF" = ( /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" +/turf/open/floor/damaged4, +/area/lv624/lazarus/main_hall) +"Cn" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bG" = ( +"Dc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched2" - }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"bH" = ( -/obj/structure/barricade/wooden, +"DY" = ( +/turf/closed/wall, +/area/lv624/lazarus/quart) +"DZ" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_casing, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) -"bI" = ( +"EA" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_magazine/smg/mp27, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged2" - }, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"bJ" = ( +"EJ" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/structure/surface/table{ - flipped = 1 - }, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"bK" = ( -/turf/open/floor{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/main_hall) -"bL" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/surface/table{ - flipped = 1 - }, -/obj/item/ammo_casing, -/turf/open/floor, -/area/lv624/lazarus/main_hall) -"bM" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/limb/leg/r_leg, -/obj/structure/surface/table{ flipped = 1 }, /obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor, -/area/lv624/lazarus/main_hall) -"bN" = ( -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, /obj/item/ammo_casing, -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"bO" = ( -/obj/effect/landmark/good_item, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"bP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, +"EN" = ( /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"bQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/damaged4, /area/lv624/lazarus/main_hall) -"bR" = ( +"EX" = ( /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"bS" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_casing, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"bT" = ( -/obj/item/weapon/gun/smg/mp27, -/obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "floorscorched1" - }, -/area/lv624/lazarus/main_hall) -"bU" = ( -/obj/item/trash/raisins, -/obj/structure/barricade/wooden{ - dir = 8 - }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) -"bV" = ( +"Fn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) -"bW" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "damaged5" - }, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) -"bX" = ( +"Fp" = ( /obj/effect/landmark/good_item, -/obj/effect/decal/cleanable/blood/splatter, /obj/item/ammo_casing, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"zt" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"zv" = ( -/obj/item/trash/cheesie, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"BB" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"Cw" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"Cy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) -"DY" = ( -/turf/closed/wall, -/area/lv624/lazarus/quart) "Ft" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"Fu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Nexus Cargo Storage" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "Fz" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/chapel) +"FH" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/floorscorched1, +/area/lv624/lazarus/main_hall) "FT" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) +"Ge" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/damaged5, +/area/lv624/lazarus/main_hall) "Gs" = ( /turf/closed/wall, /area/lv624/lazarus/chapel) -"He" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" +"Hh" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"Hf" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" +"Hn" = ( +/obj/structure/barricade/metal{ + dir = 4 }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/ammo_casing, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) -"HH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Chapel" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/chapel) -"HI" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/chapel) -"HJ" = ( +"Hx" = ( /obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"Ie" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, +"HC" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/main_hall) -"Ii" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, +"HQ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"Il" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, +"HV" = ( +/obj/item/ammo_casing, +/turf/open/floor/damaged2, /area/lv624/lazarus/main_hall) -"Ir" = ( -/obj/structure/machinery/atm{ - name = "Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" +"Io" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ + dir = 1 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"IY" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, +"IU" = ( +/turf/open/floor/white, +/area/lv624/lazarus/chapel) +"Jw" = ( +/obj/item/limb/arm/l_arm, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor/floorscorched1, +/area/lv624/lazarus/main_hall) +"Jz" = ( +/obj/item/ammo_casing, +/turf/open/floor/floorscorched1, /area/lv624/lazarus/main_hall) -"Jf" = ( +"JI" = ( +/obj/effect/decal/cleanable/vomit, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/damaged2, +/area/lv624/lazarus/main_hall) +"JM" = ( +/turf/open/floor/damaged2, +/area/lv624/lazarus/main_hall) +"Kj" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/damaged5, /area/lv624/lazarus/main_hall) -"JH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, +"Kp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/frame/table, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"JK" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" +"KG" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/barricade/wooden{ + dir = 8 }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "KQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/security) +"Li" = ( +/obj/item/ammo_casing, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "Ll" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) -"Ln" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/tool/mop, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "Lp" = ( /turf/closed/wall, /area/lv624/lazarus/canteen) -"Lq" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/canteen) -"Me" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"Mf" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"Mi" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) "Nk" = ( /turf/closed/wall, /area/lv624/lazarus/kitchen) @@ -1039,12 +649,11 @@ }, /turf/open/floor, /area/lv624/lazarus/security) -"NU" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/kitchen) +"NX" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "OK" = ( /turf/template_noop, /area/template_noop) @@ -1053,27 +662,161 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"ON" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen" +"OR" = ( +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/floorscorched1, +/area/lv624/lazarus/main_hall) +"PD" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/floorscorched2, +/area/lv624/lazarus/main_hall) +"Qy" = ( +/obj/structure/barricade/metal{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +/turf/open/floor/floorscorched2, +/area/lv624/lazarus/main_hall) +"Qz" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/main_hall) +"QG" = ( +/obj/item/stack/barbed_wire, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor/damaged2, +/area/lv624/lazarus/main_hall) +"QO" = ( +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/damaged3, +/area/lv624/lazarus/main_hall) +"QS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/damaged5, +/area/lv624/lazarus/main_hall) +"RV" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"Sn" = ( +/obj/item/stack/barbed_wire, +/turf/open/floor/damaged2, +/area/lv624/lazarus/main_hall) +"SF" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 }, -/area/lv624/lazarus/kitchen) +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"SN" = ( +/obj/item/trash/cheesie, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"SS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/turf/open/floor/floorscorched2, +/area/lv624/lazarus/main_hall) +"Tc" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"Td" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"Th" = ( +/obj/effect/decal/cleanable/blood{ + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/limb/hand/l_hand, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/floorscorched1, +/area/lv624/lazarus/main_hall) +"Ue" = ( +/turf/open/floor/platingdmg3, +/area/lv624/lazarus/main_hall) +"Vr" = ( +/turf/open/floor/damaged4, +/area/lv624/lazarus/main_hall) +"Wg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"Ww" = ( +/turf/open/floor/wall_thermite, +/area/lv624/lazarus/main_hall) +"WF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"XF" = ( +/obj/item/frame/table, +/obj/item/ammo_magazine/smg/mp27, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"XJ" = ( +/obj/effect/landmark/good_item, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing, +/obj/item/ammo_casing, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"XQ" = ( +/obj/structure/surface/table{ + dir = 4; + flipped = 1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"YO" = ( +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"Zb" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"ZE" = ( +/obj/structure/flora/pottedplant, +/obj/structure/barricade/wooden, +/obj/item/ammo_casing, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) (1,1,1) = {" OK OK OK OK -HH -zt -IY -JH -JK -ae +ju +zd +nP +os +Qz +Vr KQ OK OK @@ -1085,12 +828,12 @@ OK OK OK OK -HI -zt -zt -aa -ac -zt +IU +zd +zd +vH +JM +zd KQ OK OK @@ -1103,11 +846,11 @@ OK Gs Gs Gs -aV -aM -bb -aK -aV +sM +ef +Tc +Hh +sM Ll KQ Ll @@ -1118,15 +861,15 @@ OK OK OK Gs -He -HJ -ac -aN -ac -bq -aW -HJ -Me +dQ +Hx +JM +Kj +JM +DZ +fz +Hx +kM KQ OK OK @@ -1135,168 +878,168 @@ OK Fz Fz Gs -Hf -ar -aC -aQ -av -ar -bH -bO -Mf +Io +QO +QS +vZ +Td +QO +zh +Fp +NX Ll NT KQ "} (6,1,1) = {" -zt -ae -ab -ak -as -aE -aR +zd +Vr +rz +XF +Jw +sB +no bg -bz -bI -bP -bU -aW -zt -Ie +HV +EA +KG +qo +fz +zd +gY "} (7,1,1) = {" -aa -ac -ab -al -at -aF +vH +JM +rz +xC +JI +kF aS -bh -bA -bJ -aP -bd -aV -zt -bK +lu +is +jk +Li +kJ +sM +zd +Ue "} (8,1,1) = {" -Cw -ai -aj -am -av -aG -aU -bi -bB +YO +PD +HQ +XJ +Td +hC +BM +Ge +dE aZ -av -al -bj -Cw -Cw +Td +xC +Zb +YO +YO "} (9,1,1) = {" FT Ft ad -an -aw -aH -aX +Fn +Dc +oh +EX bn -bC +Th bL -bQ -bV +tt +mI bk Ft OM "} (10,1,1) = {" -Cy -ae -af -ap -ax -aI -aT -bp -bD +if +Vr +nM +za +Jz +Kp +lH +kA +sJ bM -bm -bW -bl -bK -Cy +qs +sH +lO +Ue +if "} (11,1,1) = {" -zt -aa -ab -aq -ay -aJ +zd +vH +rz +EN +SS +kT aY -br -bE -bc -bR -bX -aW -BB -zt +EJ +rS +ve +eI +RV +fz +hL +zd "} (12,1,1) = {" -ac -zt -ab -zv -az -aP -bd -bs -bx -bz -bS -aP -aW -zt -zt +JM +zd +rz +SN +FH +Li +kJ +mx +Ww +HV +Wg +Li +fz +zd +zd "} (13,1,1) = {" -Fu +xr DY DY -ag -aA -aO +sZ +ub +kt aD -bt -bF -bN -bT -Mf +ra +OR +fU +zH +NX Nk -NU -ON +jp +pY "} (14,1,1) = {" OK OK DY -ah -aB -aL -Jf -bu -bG -bm -Ln -Mi +yT +ZE +uI +HC +oj +pC +qs +lI +yh Nk OK OK @@ -1307,11 +1050,11 @@ OK DY DY DY -Il -be -bv -bo -Il +Cn +QG +An +Sn +Cn Lp Lp Lp @@ -1324,12 +1067,12 @@ OK OK OK DY -au -bf -bw -ba -au -Lq +XQ +jz +Hn +Qy +XQ +oC OK OK OK @@ -1341,12 +1084,12 @@ OK OK OK DY -Ir -ac -by -aa -Ii -Lq +SF +JM +vS +vH +WF +oC OK OK OK diff --git a/maps/map_files/LV624/standalone/clfship.dmm b/maps/map_files/LV624/standalone/clfship.dmm index f37a7b1954..2f5bef9189 100644 --- a/maps/map_files/LV624/standalone/clfship.dmm +++ b/maps/map_files/LV624/standalone/clfship.dmm @@ -21,44 +21,24 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"aC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) "aO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"aQ" = ( +/obj/structure/girder, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) "aY" = ( /obj/structure/tunnel{ id = "hole3" }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"bc" = ( +"bl" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"bf" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/green/north, /area/lv624/lazarus/crashed_ship) "by" = ( /turf/closed/wall/rock/brown, @@ -67,90 +47,38 @@ /obj/item/stool, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"bL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"bP" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +"bK" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) -"bQ" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 1; - faction_group = list("CLF") - }, -/obj/item/ammo_casing/shell{ - icon_state = "casing_7_1" - }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 1; - faction_group = list("CLF") - }, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) "ca" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ch" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) -"cl" = ( -/obj/structure/phone_base/clf_net{ - phone_category = "CR-116"; - phone_id = "Cargo Bay"; - pixel_y = 32 - }, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +"cs" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"cD" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/spawner/random/toolbox, -/obj/item/toy/deck/uno{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/wood, +"dN" = ( +/turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"dt" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_3" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"dP" = ( +/obj/item/stack/rods, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"dK" = ( +"dS" = ( /obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"dN" = ( -/turf/open/floor/plating, +/obj/item/bedsheet/purple, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) "dY" = ( /obj/structure/machinery/computer/communications{ @@ -160,74 +88,100 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"eG" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt, -/area/lv624/ground/caves/south_west_caves) -"eT" = ( -/turf/closed/shuttle/ert{ - icon_state = "stan_inner_t_left" +"ed" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"eh" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) -"eY" = ( -/obj/item/tool/shovel/spade, -/turf/open/floor{ - icon_state = "platingdmg1" +"ev" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16/ap, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -2 }, -/area/lv624/ground/caves/south_west_caves) -"fe" = ( -/obj/item/weapon/gun/rifle/m16, -/obj/item/weapon/gun/rifle/m16{ - pixel_x = 5; +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/rifle/m16/ap{ + pixel_x = -8 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; + pixel_y = 9 + }, +/obj/item/weapon/throwing_knife{ + pixel_x = 18; pixel_y = 6 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"eG" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"eQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light/small{ dir = 1; - icon_state = "bluecorner" + pixel_y = 20 }, +/obj/item/toy/plush/farwa, +/turf/open/floor/almayer/green/northwest, /area/lv624/lazarus/crashed_ship) -"ft" = ( -/obj/item/stool, -/turf/open/floor{ - icon_state = "platingdmg1" +"eT" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_inner_t_left" }, /area/lv624/lazarus/crashed_ship) -"fX" = ( -/obj/item/stool, +"eW" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"eX" = ( +/obj/structure/phone_base/clf_net{ + phone_category = "CR-116"; + phone_id = "Armoury"; + pixel_y = 32 }, +/turf/open/floor/almayer/bluecorner/north, /area/lv624/lazarus/crashed_ship) -"gg" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 3 +"fb" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = -3 +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"fm" = ( +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"fE" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_2_1" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/structure/machinery/defenses/sentry/premade/dumb{ + dir = 4; + faction_group = list("CLF") }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"gj" = ( -/obj/item/stack/sheet/metal{ - amount = 2; - pixel_x = 4; - pixel_y = 4 - }, +"gc" = ( /obj/structure/barricade/metal/wired{ - dir = 8; + dir = 4; icon_state = "metal_1" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "gn" = ( /obj/structure/girder/displaced, @@ -237,66 +191,22 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"gv" = ( -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/ground/caves/south_west_caves) -"gD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 8 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = 10 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/rifle/m16{ - pixel_x = -4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +"gz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/east, /area/lv624/lazarus/crashed_ship) -"gF" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, +"gA" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orange/northwest, +/area/lv624/lazarus/crashed_ship) +"gP" = ( +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) "gQ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"gU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) -"gW" = ( -/obj/structure/girder/displaced, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) "gX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, @@ -306,27 +216,64 @@ icon_state = "stan1" }, /area/lv624/lazarus/crashed_ship) +"hm" = ( +/turf/open/floor/almayer/greencorner/east, +/area/lv624/lazarus/crashed_ship) +"hp" = ( +/obj/structure/girder/displaced, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) "hw" = ( /obj/item/weapon/gun/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"id" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +"hK" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 2 }, +/turf/open/floor/almayer/emerald, +/area/lv624/lazarus/crashed_ship) +"hV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/compensator, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/extended_barrel, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/flashlight/grip, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/obj/item/attachable/attached_gun/flamer, +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"ig" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/crashed_ship) +"in" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"io" = ( +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) "iq" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3" }, /area/lv624/lazarus/crashed_ship) -"iF" = ( -/obj/effect/landmark/corpsespawner/wysec, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"iu" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/almayer/orange/northwest, /area/lv624/lazarus/crashed_ship) "jb" = ( /obj/structure/largecrate/random/barrel/red, @@ -339,18 +286,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"jr" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"jx" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/lazarus/crashed_ship) "jz" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; @@ -358,33 +293,29 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"jH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/storage/firstaid/adv, -/turf/open/floor/wood, -/area/lv624/lazarus/crashed_ship) -"jI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ +"jA" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ dir = 1; - icon_state = "emerald" + pixel_y = 20 }, -/area/lv624/lazarus/crashed_ship) -"jO" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -1 }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, +/turf/open/floor/almayer/orange/northeast, +/area/lv624/lazarus/crashed_ship) +"jH" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/firstaid/adv, +/turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) "jR" = ( /obj/item/stack/rods, @@ -400,50 +331,17 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ko" = ( -/obj/structure/phone_base/clf_net{ - phone_category = "CR-116"; - phone_id = "Armoury"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"kp" = ( -/obj/item/stack/rods, -/obj/structure/girder, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) -"kw" = ( -/obj/item/ammo_casing/shell{ - icon_state = "shell_6_1" - }, -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"kk" = ( +/turf/open/floor/almayer/bluecorner/west, /area/lv624/lazarus/crashed_ship) -"ky" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - dir = 8; - name = "\improper Bridge" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"kC" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"kY" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"kZ" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/sniper/svd, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "lf" = ( /obj/structure/barricade/sandbags/wired{ @@ -452,32 +350,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"lh" = ( -/obj/item/stack/rods, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) "lj" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ll" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/wrench{ - pixel_y = 7 - }, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "ln" = ( /obj/structure/bed/chair, /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, @@ -490,17 +366,21 @@ /obj/item/ammo_magazine/sniper/svd, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"lD" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"mh" = ( +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"lU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" +"mm" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 }, +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/crashed_ship) "mq" = ( /obj/structure/largecrate/supply/supplies/water, @@ -516,114 +396,122 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"mK" = ( -/obj/structure/girder/displaced, -/turf/open/floor{ - icon_state = "platingdmg1" +"mQ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/green/northeast, +/area/lv624/lazarus/crashed_ship) +"mX" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_2" }, -/area/lv624/ground/caves/south_west_caves) -"mS" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/structure/machinery/m56d_hmg{ + rounds = 700 }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"nc" = ( +/obj/structure/machinery/power/smes/buildable/charged, +/turf/open/floor/almayer/orange/north, /area/lv624/lazarus/crashed_ship) "nj" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf_engineer, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) +"nn" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "nt" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/lv624/lazarus/crashed_ship) -"nx" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +"nv" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"nA" = ( +/obj/effect/landmark/corpsespawner/wysec, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"nJ" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "nO" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"of" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +"oc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"oh" = ( +/obj/item/stool, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "ok" = ( /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"ou" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "platingdmg1" +"oZ" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = -3 }, -/area/lv624/lazarus/crashed_ship) -"oI" = ( -/obj/item/stack/rods, -/obj/effect/landmark/corpsespawner/clf, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = 3 }, +/turf/open/floor/almayer/green, /area/lv624/lazarus/crashed_ship) -"oO" = ( -/obj/structure/barricade/plasteel/wired{ - icon_state = "plasteel_3" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"pb" = ( +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, +/turf/open/floor/almayer/green, /area/lv624/lazarus/crashed_ship) -"oW" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_1" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"ph" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/restraint/handcuffs{ + pixel_x = 4; + pixel_y = 4 }, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/green/southeast, /area/lv624/lazarus/crashed_ship) "pq" = ( /turf/closed/shuttle/ert{ icon_state = "stan2" }, /area/lv624/lazarus/crashed_ship) +"pA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) "pK" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"pS" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/crashed_ship) -"pY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +"qj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray{ + pixel_x = -4; + pixel_y = 4 }, -/area/lv624/ground/caves/south_west_caves) -"qu" = ( -/obj/item/ammo_casing/shell{ - icon_state = "casing_2_1" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"qx" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_2" }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "qT" = ( /obj/structure/barricade/sandbags/wired{ @@ -634,13 +522,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"qU" = ( -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "rf" = ( /obj/item/ammo_casing/shell{ icon_state = "casing_7_1" @@ -650,6 +531,16 @@ "ro" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) +"ru" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/heavy_barrel, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/verticalgrip, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/bayonet, +/obj/item/attachable/bayonet, +/turf/open/floor/almayer/bluecorner/west, +/area/lv624/lazarus/crashed_ship) "rw" = ( /obj/item/stack/rods, /obj/item/ammo_magazine/smg/fp9000, @@ -665,15 +556,16 @@ /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"sH" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp{ - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"sm" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"sB" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "sO" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -691,6 +583,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"ta" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/toolbox, +/obj/item/toy/deck/uno{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/crashed_ship) "tc" = ( /obj/structure/barricade/metal/wired{ dir = 4; @@ -705,95 +606,101 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"ts" = ( +/obj/structure/surface/rack, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) +"tw" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/item/toy/katana, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) "tB" = ( /obj/structure/bed/chair, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"ug" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ +"tC" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/crashed_ship) +"tN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/almayer/green/west, +/area/lv624/lazarus/crashed_ship) +"uh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; - icon_state = "damaged3" + name = "\improper Bridge" }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "uq" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ur" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"uC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"uG" = ( +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) -"uz" = ( -/obj/structure/girder/displaced, -/obj/item/stack/rods, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"uH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/backpack/general_belt{ + pixel_y = 3 }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"uV" = ( +/obj/structure/machinery/computer/station_alert{ + icon_state = "atmosb"; + stat = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) "uX" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"vb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"vf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor{ - icon_state = "platingdmg1" +"uY" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "vo" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" }, /area/lv624/lazarus/crashed_ship) -"vp" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "vw" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"vO" = ( -/obj/structure/girder/reinforced, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) -"wh" = ( -/obj/item/weapon/gun/rifle/sniper/svd, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) +"vJ" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) "wo" = ( /obj/structure/machinery/floodlight, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"wr" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"wp" = ( +/obj/effect/landmark/corpsespawner/colonist/random, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) "wx" = ( /obj/effect/decal/cleanable/blood/oil, @@ -806,44 +713,28 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"wR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) -"wV" = ( -/obj/structure/machinery/power/smes/buildable/charged, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/lv624/lazarus/crashed_ship) -"xh" = ( -/obj/structure/girder, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) -"xj" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) -"xk" = ( -/obj/item/ammo_casing/shell{ - icon_state = "casing_9_1" +"wY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 8; - faction_group = list("CLF") +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_y = 1 }, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/item/stack/sheet/plasteel{ + pixel_x = 7; + pixel_y = 11 }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/orange/southeast, /area/lv624/lazarus/crashed_ship) +"xg" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) "xl" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating, @@ -852,6 +743,10 @@ /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) +"xp" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) "xs" = ( /obj/effect/landmark/corpsespawner/wysec, /turf/open/gm/dirt, @@ -866,36 +761,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"xG" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "clf_umbilical_1"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) -"xI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"xK" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"xV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +"xO" = ( +/obj/structure/barricade/plasteel/wired{ + icon_state = "plasteel_3" }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) +"xT" = ( +/obj/structure/girder/displaced, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) "xX" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -903,24 +779,18 @@ }, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"yK" = ( -/obj/item/stack/rods, -/obj/item/ammo_magazine/sniper/svd, -/turf/open/floor{ +"yi" = ( +/obj/structure/machinery/light/small{ dir = 8; - icon_state = "damaged3" + pixel_x = -10 }, +/turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) -"yT" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_2" - }, -/obj/structure/machinery/m56d_hmg{ - rounds = 700 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"ys" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/lv624/lazarus/crashed_ship) +"yJ" = ( +/turf/open/floor/almayer/greencorner/west, /area/lv624/lazarus/crashed_ship) "yX" = ( /obj/structure/surface/table/reinforced/prison, @@ -930,12 +800,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"zb" = ( -/obj/structure/girder/reinforced, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "zl" = ( /obj/structure/barricade/metal/wired{ dir = 8; @@ -946,36 +810,17 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"zz" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) -"zD" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, +"zu" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"Aa" = ( -/obj/effect/vehicle_spawner/van/fixed{ - color = "#4a9eed"; - desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; - name = "CLF Van" - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"zB" = ( +/obj/item/stack/sheet/metal{ + amount = 2; + pixel_x = 4; + pixel_y = 4 }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/lazarus/crashed_ship) "Ab" = ( /turf/open/gm/dirt, @@ -987,25 +832,6 @@ "Ar" = ( /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"AD" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"AP" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "AQ" = ( /obj/structure/machinery/door_control/brbutton{ id = "clf_umbilical_1"; @@ -1016,13 +842,12 @@ /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) "AS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/storage/bag/trash, -/obj/item/tool/screwdriver, -/turf/open/floor{ - icon_state = "platingdmg1" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine{ + department = "CLF - Cell 42" }, +/obj/item/paper/prison_station/pirate_note/clfship, +/turf/open/floor/almayer/emerald, /area/lv624/lazarus/crashed_ship) "AT" = ( /obj/structure/barricade/plasteel/wired{ @@ -1030,11 +855,17 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"Bc" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +"AY" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/general_belt{ + pixel_y = 7 }, +/obj/item/storage/backpack/general_belt, +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Be" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Bg" = ( /obj/structure/surface/table/woodentable, @@ -1056,12 +887,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"BY" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, +"BK" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "Cq" = ( /obj/item/circuitboard/apc{ @@ -1080,12 +908,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"Cw" = ( -/obj/item/ammo_magazine/smg/fp9000, -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - icon_state = "warnplate" +"CD" = ( +/obj/structure/phone_base/clf_net{ + phone_category = "CR-116"; + phone_id = "Cargo Bay"; + pixel_y = 32 }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "CO" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -1094,11 +923,8 @@ }, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"CZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +"Dd" = ( +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "Dm" = ( /turf/closed/shuttle/ert{ @@ -1110,34 +936,6 @@ icon_state = "stan_white_t_up" }, /area/lv624/lazarus/crashed_ship) -"Dt" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) -"Dv" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/item/toy/katana, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"Dw" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/effect/landmark/corpsespawner/colonist, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) "DS" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/firstaid/regular{ @@ -1147,191 +945,125 @@ /obj/item/storage/firstaid/regular, /turf/open/floor/wood, /area/lv624/lazarus/crashed_ship) -"DY" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -3 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/lv624/lazarus/crashed_ship) "DZ" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_s_w" }, /area/lv624/lazarus/crashed_ship) -"Ei" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +"Ef" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Em" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, +"Ep" = ( +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) +"Es" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) "Ev" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"Ex" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/obj/structure/machinery/m56d_hmg{ - rounds = 700 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"Fu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/bluecorner/east, /area/lv624/lazarus/crashed_ship) -"EB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/heavy_barrel, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/attached_gun/flamer, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +"FM" = ( +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"EO" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -10 +"Gb" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) -"Gf" = ( -/obj/structure/barricade/metal/wired{ - dir = 8; - icon_state = "metal_1" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Gk" = ( +/obj/structure/largecrate/supply/ammo/m56d, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Gm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, +"Gn" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/blue/north, /area/lv624/lazarus/crashed_ship) -"GE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/phone_base/clf_net/rotary{ - phone_category = "CR-116"; - phone_color = "yellow"; - phone_id = "Engineering" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +"Go" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/emeraldcorner/west, /area/lv624/lazarus/crashed_ship) -"GN" = ( +"Gy" = ( /obj/item/stack/rods, -/turf/open/floor{ - icon_state = "platingdmg1" +/turf/open/floor/plating/platingdmg3, +/area/lv624/ground/caves/south_west_caves) +"GI" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_2_1" }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) "GQ" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"GT" = ( -/obj/structure/machinery/computer/station_alert{ - icon_state = "atmosb"; - stat = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) -"Hg" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "Hj" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_west_caves) -"HN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +"Hr" = ( +/turf/open/floor/almayer/greencorner, /area/lv624/lazarus/crashed_ship) -"HR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 +"Hu" = ( +/obj/item/tool/shovel/spade, +/turf/open/floor/platingdmg1, +/area/lv624/ground/caves/south_west_caves) +"Hx" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_y = 1 - }, -/obj/item/stack/sheet/plasteel{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/machinery/m56d_hmg{ + rounds = 700 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"Ik" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +"HD" = ( +/turf/open/floor/almayer/greencorner/north, /area/lv624/lazarus/crashed_ship) -"IG" = ( -/turf/open/floor/almayer{ +"HF" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"Ij" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 1; - icon_state = "greencorner" + faction_group = list("CLF") + }, +/obj/item/ammo_casing/shell{ + icon_state = "casing_7_1" }, +/turf/open/gm/dirt, +/area/lv624/ground/caves/south_west_caves) +"Iz" = ( +/obj/item/stack/rods, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"IC" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/crashed_ship) +"ID" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/emerald/northeast, /area/lv624/lazarus/crashed_ship) "IH" = ( /obj/item/ammo_casing/shell{ @@ -1339,43 +1071,43 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"IP" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/item/handcuffs{ - pixel_x = 4; - pixel_y = 4 +"IK" = ( +/turf/open/floor/almayer/bluecorner, +/area/lv624/lazarus/crashed_ship) +"IR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = -3; + pixel_y = 20 }, -/obj/item/handcuffs, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/turf/open/floor/almayer/orangecorner/north, +/area/lv624/lazarus/crashed_ship) +"IX" = ( +/obj/item/weapon/gun/rifle/sniper/svd, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ju" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/phone_base/clf_net/rotary{ + phone_category = "CR-116"; + phone_color = "yellow"; + phone_id = "Engineering" }, +/turf/open/floor/almayer/orangecorner, /area/lv624/lazarus/crashed_ship) "JC" = ( /obj/item/stack/rods, /obj/effect/landmark/survivor_spawner/lv624_crashed_clf, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"JG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) -"JO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +"JK" = ( +/obj/effect/vehicle_spawner/van/fixed{ + color = "#4a9eed"; + desc = "A rather old hunk of metal with four wheels, you know what to do. Entrance on the back and sides. This one seems to be used by the CLF"; + name = "CLF Van" }, +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "JW" = ( /obj/item/toy/beach_ball{ @@ -1383,6 +1115,23 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"JZ" = ( +/obj/structure/barricade/metal/wired{ + dir = 8; + icon_state = "metal_1" + }, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"Ka" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"Ke" = ( +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" + }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) "Kg" = ( /turf/closed/shuttle/ert{ icon_state = "stan_r_w" @@ -1398,59 +1147,100 @@ icon_state = "stan5" }, /area/lv624/lazarus/crashed_ship) -"KK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - dir = 8; - name = "\improper General Area" - }, -/turf/open/floor/plating/plating_catwalk, -/area/lv624/lazarus/crashed_ship) -"KZ" = ( +"KE" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/backpack/general_belt{ +/obj/item/tool/wirecutters, +/obj/item/tool/wrench{ + pixel_y = 7 + }, +/obj/item/tool/screwdriver{ + pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"KF" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) -"Lx" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/weapon/gun/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/ammo_magazine/pistol/heavy, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +"KI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full{ + pixel_x = 2; + pixel_y = 4 }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/emerald/northwest, /area/lv624/lazarus/crashed_ship) -"LD" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ +"KK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; - icon_state = "warnplate" + name = "\improper General Area" }, +/turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"LG" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"KM" = ( +/obj/structure/barricade/plasteel/wired{ + dir = 8; + icon_state = "plasteel_closed_1" }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"LK" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"KO" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_3" }, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/crashed_ship) +"KW" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/lv624/lazarus/crashed_ship) +"Lb" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/emerald/southwest, +/area/lv624/lazarus/crashed_ship) +"LI" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "LV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"Mb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/rifle/m16{ + pixel_x = -4 + }, +/turf/open/floor/almayer/bluecorner/east, +/area/lv624/lazarus/crashed_ship) "Mm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -1468,242 +1258,114 @@ icon_state = "stan20" }, /area/lv624/lazarus/crashed_ship) -"Mw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) -"Mz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"MO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +"My" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Nk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +"MT" = ( +/turf/open/floor/plating/warnplate/north, /area/lv624/lazarus/crashed_ship) "Ns" = ( /turf/closed/shuttle/ert{ icon_state = "stan21" }, /area/lv624/lazarus/crashed_ship) -"Nw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/crashed_ship) -"NC" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_x = 3; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"NI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/rifle/m16/ap, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/rifle/m16/ap{ - pixel_x = -8 - }, -/obj/item/weapon/throwing_knife{ - pixel_x = 18; - pixel_y = 9 - }, -/obj/item/weapon/throwing_knife{ - pixel_x = 18; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/lv624/lazarus/crashed_ship) -"Oc" = ( -/obj/effect/landmark/corpsespawner/colonist/random, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, -/area/lv624/lazarus/crashed_ship) -"Om" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/phone_base/clf_net{ - phone_category = "CR-116"; - phone_color = "green"; - phone_id = "Medical Bay"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) -"Op" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/general_belt{ - pixel_y = 7 - }, -/obj/item/storage/backpack/general_belt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +"NV" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Ot" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +"Ob" = ( +/turf/open/floor/damaged3/west, +/area/lv624/ground/caves/south_west_caves) +"Or" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"OB" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_2_1" - }, -/obj/structure/machinery/defenses/sentry/premade/dumb{ - dir = 4; - faction_group = list("CLF") - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"OI" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing fifty reposessed USCM MRE packets."; + name = "\improper CLF Supply MRE crate (x50)" }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/lazarus/crashed_ship) "OL" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/plating/plating_catwalk, /area/lv624/lazarus/crashed_ship) -"OS" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +"OO" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/crashed_ship) +"OT" = ( +/obj/item/ammo_casing/shell{ + icon_state = "shell_6_1" + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "OU" = ( /obj/structure/machinery/floodlight, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"Pu" = ( -/obj/effect/landmark/corpsespawner/clf, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) -"Px" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Crashed Ship APC"; - pixel_y = 25 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +"Pb" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/green/east, /area/lv624/lazarus/crashed_ship) -"PA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/storage/firstaid/regular/empty, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"Pd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" }, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"PR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +"Pn" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/weapon/gun/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/northeast, /area/lv624/lazarus/crashed_ship) -"PY" = ( -/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +"PV" = ( +/obj/item/ammo_casing/shell{ + icon_state = "casing_9_1" }, -/area/lv624/lazarus/crashed_ship) -"Qc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ +/obj/structure/machinery/defenses/sentry/premade/dumb{ dir = 8; - icon_state = "emeraldcorner" + faction_group = list("CLF") }, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "Qd" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_2" }, /area/lv624/lazarus/crashed_ship) -"Qf" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "Qp" = ( /obj/item/stack/rods, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship) -"Qs" = ( -/obj/structure/barricade/metal/wired{ - icon_state = "metal_1" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) -"Qu" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Qy" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/ground/caves/south_west_caves) +"QB" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/orange/southwest, /area/lv624/lazarus/crashed_ship) "QE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -1712,40 +1374,69 @@ }, /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"QQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +"QP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg3, /area/lv624/lazarus/crashed_ship) -"Ro" = ( -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" +"Rg" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 3; + pixel_y = 20 }, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"Rx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/damaged3/west, +/area/lv624/lazarus/crashed_ship) +"Ry" = ( +/obj/structure/girder/displaced, +/turf/open/floor/platingdmg1, /area/lv624/ground/caves/south_west_caves) +"RF" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/crashed_ship) +"RJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/storage/firstaid/regular/empty, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) "RS" = ( /turf/open/floor/almayer, /area/lv624/lazarus/crashed_ship) -"Sg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/verticalgrip, -/obj/item/attachable/compensator, -/obj/item/attachable/compensator, -/obj/item/attachable/compensator, -/obj/item/attachable/extended_barrel, -/obj/item/attachable/extended_barrel, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/flashlight/grip, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/obj/item/attachable/bayonet, -/obj/item/attachable/attached_gun/flamer, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +"RW" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 3 }, +/obj/item/device/radio, +/obj/item/device/radio{ + pixel_x = -3 + }, +/turf/open/floor/almayer/green/southwest, +/area/lv624/lazarus/crashed_ship) +"RZ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) +"St" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/emerald/north, /area/lv624/lazarus/crashed_ship) "Sx" = ( /obj/structure/largecrate/random/barrel/blue, @@ -1759,36 +1450,15 @@ "SG" = ( /turf/closed/shuttle/ert, /area/lv624/lazarus/crashed_ship) -"SW" = ( -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) -"Tx" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing fifty reposessed USCM MRE packets."; - name = "\improper CLF Supply MRE crate (x50)" - }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +"Tn" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "Tz" = ( /turf/closed/shuttle/ert{ icon_state = "stan22" }, /area/lv624/lazarus/crashed_ship) -"TA" = ( -/obj/structure/barricade/plasteel/wired{ - dir = 8; - icon_state = "plasteel_closed_1" - }, -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/lazarus/crashed_ship) "TK" = ( /obj/item/stack/rods, /obj/structure/machinery/defenses/sentry/premade/dumb{ @@ -1800,95 +1470,37 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"TN" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -1 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/lv624/lazarus/crashed_ship) "TQ" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_t_right" }, /area/lv624/lazarus/crashed_ship) -"Ud" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +"TS" = ( +/obj/item/stool, +/obj/effect/landmark/survivor_spawner/lv624_crashed_clf_leader, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) -"Uv" = ( -/obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"Uo" = ( +/turf/open/floor/almayer/green/east, /area/lv624/lazarus/crashed_ship) "Uw" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"UD" = ( -/obj/structure/barricade/plasteel/wired{ - icon_state = "plasteel_2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +"Uz" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"UV" = ( -/turf/open/floor{ - icon_state = "platingdmg1" - }, -/area/lv624/ground/caves/south_west_caves) "Vb" = ( /obj/item/stack/rods, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Ve" = ( -/obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/ground/caves/south_west_caves) -"Vh" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = -3 - }, -/obj/item/device/radio, -/obj/item/device/radio{ - pixel_x = 3 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/lv624/lazarus/crashed_ship) -"Vj" = ( +"Vd" = ( /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/crashed_ship) "Vs" = ( /obj/item/ammo_casing/shell{ @@ -1896,6 +1508,18 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"Vv" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) +"Vz" = ( +/obj/item/weapon/gun/rifle/m16, +/obj/item/weapon/gun/rifle/m16{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/bluecorner/north, +/area/lv624/lazarus/crashed_ship) "VA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 8; @@ -1918,27 +1542,20 @@ opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"VQ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_x = -3; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/lv624/lazarus/crashed_ship) "VX" = ( /turf/closed/shuttle/ert{ icon_state = "stan_rightengine" }, /area/lv624/lazarus/crashed_ship) -"Wa" = ( -/obj/effect/landmark/survivor_spawner/lv624_crashed_clf, -/turf/open/floor/almayer{ - icon_state = "green" +"Wc" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = -4 }, +/turf/open/floor/whitebluefull, /area/lv624/lazarus/crashed_ship) "Wg" = ( /obj/structure/surface/table/almayer, @@ -1948,143 +1565,115 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) +"Wj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/lv624/lazarus/crashed_ship) "Wo" = ( /obj/structure/largecrate/supply/ammo/m56d, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Wt" = ( -/obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor{ - icon_state = "platingdmg1" - }, +"Wv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/green/north, +/area/lv624/lazarus/crashed_ship) +"WD" = ( +/obj/item/stack/rods, +/obj/structure/girder, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) "WH" = ( /turf/closed/shuttle/ert{ icon_state = "stan25" }, /area/lv624/lazarus/crashed_ship) -"WJ" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +"WO" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/ammo_magazine/smg/fp9000, +/turf/open/floor/plating/warnplate/east, /area/lv624/lazarus/crashed_ship) -"Xm" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"WV" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/crashed_ship) +"WY" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/phone_base/clf_net{ + phone_category = "CR-116"; + phone_color = "green"; + phone_id = "Medical Bay"; + pixel_y = 32 }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/almayer/emerald/north, +/area/lv624/lazarus/crashed_ship) +"Xc" = ( +/obj/item/ammo_magazine/smg/fp9000, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/lv624/lazarus/crashed_ship) "Xq" = ( /turf/closed/shuttle/ert{ icon_state = "stan_inner_w_1" }, /area/lv624/lazarus/crashed_ship) -"Xx" = ( -/obj/item/stack/rods, -/turf/open/floor{ - dir = 8; - icon_state = "damaged3" - }, -/area/lv624/lazarus/crashed_ship) -"XG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +"Xw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/storage/bag/trash, +/obj/item/tool/screwdriver, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "XX" = ( /turf/closed/shuttle/ert{ icon_state = "stan8" }, /area/lv624/lazarus/crashed_ship) -"Ya" = ( -/obj/item/ammo_magazine/sniper/svd, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) -"Yh" = ( -/obj/structure/barricade/metal/wired{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/lv624/lazarus/crashed_ship) "Yj" = ( /turf/template_noop, /area/template_noop) -"Ys" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" +"Yl" = ( +/obj/structure/barricade/metal/wired{ + dir = 8 + }, +/obj/structure/barricade/metal/wired{ + icon_state = "metal_1" }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/lazarus/crashed_ship) "Yx" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/lv624/lazarus/crashed_ship) -"Yz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine{ - department = "CLF - Cell 42" - }, -/obj/item/paper/prison_station/pirate_note/clfship, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/lv624/lazarus/crashed_ship) "YF" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/lv624/lazarus/crashed_ship) -"YX" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/lazarus/crashed_ship) -"Zu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +"YL" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "clf_umbilical_1"; + name = "\improper Umbillical Airlock" }, +/turf/open/floor/damaged3/west, /area/lv624/lazarus/crashed_ship) -"ZN" = ( -/obj/item/stack/sheet/metal{ - amount = 2; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +"Zq" = ( +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/platingdmg1, /area/lv624/lazarus/crashed_ship) "ZS" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1" }, /area/lv624/lazarus/crashed_ship) -"ZV" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/lv624/lazarus/crashed_ship) (1,1,1) = {" by @@ -2239,7 +1828,7 @@ Hj Hj Hj Hj -UV +uG Hj Hj Hj @@ -2286,14 +1875,14 @@ Hj Hj Hj Ab -ur +Gy Ab Hj Mv -vO -vO +kC +kC Kg -vO +kC SG Kk YF @@ -2332,16 +1921,16 @@ Hj Hj Hj OU -UV +uG Ab -Ro +Ob Hj -vO -nx -bf +kC +iu +QB Xq -PR -Dt +KI +Lb XX Kk YF @@ -2376,20 +1965,20 @@ Hj Hj Hj Hj -Xm +vJ lj -pY +Es Ab -uz +xT Mv SG Tz -VQ -HN +IR +KW Xq -jI -Oc -OS +qj +wp +HF XX ha Hj @@ -2420,29 +2009,29 @@ LV sT Ab Hj -UV -Ve +uG +xg te jS -Ro -mK -Xm +Ob +Ry +vJ Ab Ns -Px +gA Cq nj lr Xq -JO +KF RS -Ud -gU +gP +pA TQ SG SG -zb -vO +sB +kC SG ha Hj @@ -2468,29 +2057,29 @@ je TK Ab Ab -eY -Xm -Ro +Hu +vJ +Ob Ab Mv ro -wR -xh -wV +QP +aQ +nc lr gQ -GE +Ju Xq -Om +WY lr lr -Yz +AS Xq -Tx -WJ -jx -LD -Ys +OI +OO +tC +bK +in XX Kk YF @@ -2514,30 +2103,30 @@ LV BF JW sj -Xm +vJ Ab -gv +Qy Mv -Qu +LI Tz -Qf -vp +Ep +nJ Xq -TN +jA lr -DY -HR +Wj +wY Xq -xV -Ud +oc +gP lr -ch +hK Xq -pS -bP -Aa -Qf -bP +MT +ig +JK +Ep +ig dN XX Kk @@ -2559,32 +2148,32 @@ Yj (11,1,1) = {" LV at -bQ -Ro +Ij +Ob te -UV -Ro +uG +Ob Sy -AS +Xw ok dN -Bc +Dd Dp Qd Ct Qd Qd DZ -Gm -gF +St +ys Ac -Qc +Go Xq -XG -bP -pS -Qf -Cw +eh +ig +MT +Ep +Vd jR dN XX @@ -2607,33 +2196,33 @@ Yj by Ab Ab -Ve -UV +xg +uG Mv -gW +hp DZ -ll +KE ro -Bc -Qf -Qf +Dd +Ep +Ep lr lr -EO -gg +yi +RW Xq -Op -Ud +AY +gP lr RS VA -id -YX -id -Vj -ZN +WV +IC +WV +WO +zB Vb -OB +fE dN XX SG @@ -2654,36 +2243,36 @@ Yj by OU Ab -UV +uG Mv Tz ro -kp -Qf -Xx -ug +WD +Ep +Uz +Rx dN Xq -of +fb lr lr -Vh +oZ Xq -Mw -Ot +ID +gz lr lr lr dN -Pu +Zq JC GQ hw -oW -dt +gc +KO tc wo -mS +FM dN pq Ab @@ -2700,38 +2289,38 @@ Yj (14,1,1) = {" by Ab -Ve +xg ro gn -Bc -Qf +Dd +Ep Xq -Bc -Qf -mS -wr +Dd +Ep +FM +Be Xq -vb +Wv RS lr -Ik +yJ Dp Qd Qd lr QE DZ -JG -Uv -mS -qu -zz -wr -mS -Qf +Ef +mh +FM +GI +uY +Be +FM +Ep Qp -Qf -Bc +Ep +Dd pq Ab Ab @@ -2748,17 +2337,17 @@ Yj by Ab Ab -xj +BK dY -ft -Bc -Qu +oh +Dd +LI Wg -Bc -Qf -mS -LG -bc +Dd +Ep +FM +zu +bl xo lr lr @@ -2766,20 +2355,20 @@ KK lr lr lr -xI +Vv Xq AQ -Qf -lh -Qf -yT +Ep +Iz +Ep +mX dN -Bc +Dd ro -iF -Xx -bP -aC +nA +Uz +ig +YL Ab Ab Ab @@ -2795,37 +2384,37 @@ Yj by Ab Ab -Xx -Bc +Uz +Dd ro gX Dp -zb -Bc -mS +sB +Dd +FM Qd DZ -xK -CZ -CZ -Nk +mQ +Uo +Uo +hm RS -xI +Vv lr -xI -jr -vO +Vv +IK +kC Wo IH dN -mS -kw +FM +OT dN Qp ro -Qf -Bc -Qf +Ep +Dd +Ep CO Ab Ab @@ -2842,38 +2431,38 @@ Yj by Ab Ab -LG +zu dN -Xx -Qf -ky +Uz +Ep +uh dN -Qf -Xx -KZ +Ep +Uz +uH Dp Qd Qd Qd Qd DZ -Em +Fu lr -bL -QQ +io +kk Xq -Wt -SW -Qf +Gk +nv +Ep rw -UD -mS -mS -Bc -mS +qx +FM +FM +Dd +FM ro -bP -vf +ig +cs Ab Ab Ab @@ -2890,13 +2479,13 @@ by Ab Ab nt -GT -fX +uV +TS dN -Qf -lU -mS -mS +Ep +uC +FM +FM xo Xq tB @@ -2904,22 +2493,22 @@ DS jH uX Xq -xI +Vv yX -NI -jr -vO +ev +IK +kC dN -oI +dP rX -mS -oO +FM +xO ro -Qf -lD +Ep +nn ro ro -bP +ig CO Ab Ab @@ -2939,35 +2528,35 @@ Ab WH vo dN -mS +FM Xq -Bc -mS -Qf +Dd +FM +Ep wx -LG +zu ln Bg -cD +ta uX Xq -Mz +sm ag -gD -QQ +Mb +kk Xq -cl +CD dN dN -Bc -Ex -Qf +Dd +Hx +Ep xs ro -Bc +Dd ro ro -xG +Pd Ab Ab Ab @@ -2986,9 +2575,9 @@ Ab Ab WH vo -LK -vO -mS +Ka +kC +FM RS lr RS @@ -2998,22 +2587,22 @@ Ar Ar Ar Xq -ko +eX OL -fe -jr +Vz +IK Xq -Yh -TA -Ei +Or +KM +Yl dN -Qs +Ke wo dN -Bc -Qf -Qf -Bc +Dd +Ep +Ep +Dd pq Ab Ab @@ -3032,7 +2621,7 @@ Ab Ab Ab Ab -vO +kC xl Xq Sx @@ -3047,20 +2636,20 @@ lr xF lr lr -PY -QQ +eW +kk VB -Qf +Ep lC -wh -gj -jO -Gf -Gf +IX +mm +RF +JZ +JZ zl wo dN -mS +FM pq Ab Ab @@ -3094,16 +2683,16 @@ Ar RS RS lr -xI -jr -zb +Vv +IK +sB dN ok -Pu -qU -Bc -yK -xk +Zq +Xc +Dd +kZ +PV dN Dm Kt @@ -3139,17 +2728,17 @@ Qd Qd Qd DZ -MO +Gn lr -bL -QQ +io +kk Xq -JG -Qf -Ya -Bc -BY -Pu +Ef +Ep +fm +Dd +ed +Zq lC Dm VX @@ -3181,21 +2770,21 @@ vo lr RS Xq -dK -Dv -sH -IG +eQ +tw +tN +HD Mm RS lr -xI -jr +Vv +IK Xq -ou +My dN -GN -Qf -Hg +xp +Ep +NV dN Dm VX @@ -3228,7 +2817,7 @@ WH dN wG DZ -PA +RJ xo bF lr @@ -3236,13 +2825,13 @@ lr nO lr lr -EB +ru Xq Yx -mS -Bc -mS -AP +FM +Dd +FM +RZ Dm VX iq @@ -3275,15 +2864,15 @@ rf mH Ab Ns -AD -Dw -Nk -ZV +dS +Pb +hm +Hr Xq -kY +Tn vo RS -Sg +hV eT Kt Kt @@ -3324,12 +2913,12 @@ lf WH Kt vo -NC -Wa +Rg +pb Xq -zD +Wc Xq -Zu +ts Dm VF Ab @@ -3371,10 +2960,10 @@ Ab Ab Ab Ns -Lx -IP +Pn +ph Xq -Nw +Gb Xq Dm VX diff --git a/maps/map_files/LV624/standalone/corporatedome.dmm b/maps/map_files/LV624/standalone/corporatedome.dmm new file mode 100644 index 0000000000..430de7e6c4 --- /dev/null +++ b/maps/map_files/LV624/standalone/corporatedome.dmm @@ -0,0 +1,1481 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Corporation Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"bm" = ( +/obj/structure/surface/rack, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/spacecash/c1000/counterfeit, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"bA" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"bD" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"bE" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"cm" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/barricade/sandbags{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"cn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"cA" = ( +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"cB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"cR" = ( +/obj/structure/flora/jungle/vines/light_2, +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"da" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) +"dq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"dH" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"dI" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"dO" = ( +/obj/item/weapon/pole/fancy_cane, +/obj/item/shard, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"dY" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"ev" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"eF" = ( +/obj/structure/barricade/deployable{ + damage_state = 1; + health = 245; + icon_state = "folding_1" + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"fm" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"fq" = ( +/obj/effect/acid_hole, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"ft" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"fF" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_9_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"fH" = ( +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) +"gx" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"gz" = ( +/obj/item/shard, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_central_jungle) +"gX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Garage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"ha" = ( +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) +"hc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/marine/veteran/pmc/corporate{ + pixel_y = -2 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"he" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"hf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"is" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"iF" = ( +/obj/structure/closet/crate/secure/weyland, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/corporate_dome) +"iT" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) +"jH" = ( +/obj/structure/bookcase/manuals/medical, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"jJ" = ( +/obj/item/shard, +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/corporate_dome) +"kl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) +"kU" = ( +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_y = -28 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) +"ln" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"lG" = ( +/obj/item/storage/firstaid/adv/empty, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Corporate Office"; + pixel_y = 24 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"lX" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/corporate_dome) +"mg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"mi" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/corporate_dome) +"mp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"ms" = ( +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"mw" = ( +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"mK" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"ny" = ( +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"oj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Corporation Office"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"oq" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"pg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/head/manager{ + pixel_y = 13 + }, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"pR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) +"qn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/bodybag, +/obj/effect/landmark/corpsespawner/clf, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"qH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"qI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"qJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Storage Room" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"qM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_x = -28 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"sc" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl, +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) +"sm" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"sH" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/corporate_dome) +"sX" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platingdmg2, +/area/lv624/lazarus/corporate_dome) +"vf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Corporate Liaison"; + locked = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"vC" = ( +/obj/structure/prop/server_equipment/yutani_server/off, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"vW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) +"wy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"wW" = ( +/obj/structure/closet/bodybag, +/obj/effect/landmark/corpsespawner/security/marshal, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"xk" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"xG" = ( +/obj/structure/machinery/photocopier, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"yc" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/lazarus/landing_zones/lz2) +"yJ" = ( +/turf/open/floor/plating/platingdmg2, +/area/lv624/lazarus/corporate_dome) +"zm" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"zs" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"zw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + name = "Weyland-Yutani Classified folder"; + desc = "A black folder which has the Weyland-Yutani symbol inside it, along with CLASSIFIED in giant red letters." + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"zx" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"zz" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"Aj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/prop/invuln/pipe_water{ + dir = 8; + pixel_y = -12; + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"AG" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"AT" = ( +/obj/item/shard, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Bh" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"BL" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"BZ" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_6_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Ct" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/corporate_dome) +"CF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + locked = 1; + name = "\improper Corporate Liaison" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Df" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) +"Dn" = ( +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/item/ammo_magazine/smg/mp5, +/obj/structure/closet/crate/secure/weyland, +/obj/item/weapon/gun/smg/mp5, +/obj/item/weapon/gun/smg/mp5, +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) +"Dp" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/obj/effect/landmark/corpsespawner/wysec, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"DU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"Ez" = ( +/obj/structure/machinery/light_construct{ + dir = 4 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) +"EM" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"Fh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/corporate_dome) +"Fk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/lazarus/landing_zones/lz2) +"Fl" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) +"Fu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"FP" = ( +/obj/item/shard, +/obj/item/stack/sheet/wood, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) +"FZ" = ( +/obj/structure/machinery/faxmachine/corporate/liaison, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"Gi" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"Go" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Gt" = ( +/obj/structure/machinery/light_construct/small{ + dir = 8 + }, +/turf/open/floor/plating/platingdmg1, +/area/lv624/lazarus/corporate_dome) +"GM" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/corporate_dome) +"GV" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) +"Hn" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_9_1" + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Ho" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/corporate_dome) +"Hv" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigar, +/turf/open/floor/whiteyellow/northwest, +/area/lv624/lazarus/corporate_dome) +"HK" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/spawner/random/powercell, +/obj/item/tool/crowbar/red{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/tool/screwdriver, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"Ii" = ( +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"IM" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods{ + amount = 15 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Jg" = ( +/obj/structure/machinery/light, +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"Jq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + locked = 1; + name = "\improper Corporation Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"JL" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) +"Kv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/dirt, +/area/lv624/ground/colony/west_tcomms_road) +"KC" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"KG" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Le" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"Lh" = ( +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/item/shard, +/obj/structure/machinery/vending/cola, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Li" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"Ln" = ( +/obj/structure/barricade/plasteel/metal{ + health = 250 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"LZ" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/corporate_dome) +"Me" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) +"Ml" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"OH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/obj/structure/closet/crate/secure/weyland, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/stack/sheet/plasteel/med_small_stack, +/obj/item/stack/sandbags/small_stack, +/obj/item/device/motiondetector/hacked/pmc, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"Pa" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"Pr" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_9_1" + }, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) +"Qi" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"Rn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/head/helmet/marine/veteran/pmc{ + pixel_y = 11; + pixel_x = -1 + }, +/obj/item/clothing/under/marine/veteran/pmc{ + pixel_y = -2 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"RD" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "casing_1_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"RF" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"RN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"Sb" = ( +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_goon, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"SO" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"SV" = ( +/turf/open/floor/greengrid, +/area/lv624/lazarus/corporate_dome) +"Tc" = ( +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/frame/table/wood/fancy, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"TF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/supply/medicine, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"Uo" = ( +/obj/item/shard, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"Uz" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"UF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) +"Vj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 12 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) +"Wx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/corporate_dome) +"Xc" = ( +/obj/structure/barricade/metal{ + dir = 4; + health = 200 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"Xf" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/platingdmg3, +/area/lv624/lazarus/corporate_dome) +"Xp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/colonist{ + pixel_y = -2 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"Xt" = ( +/turf/template_noop, +/area/template_noop) +"Xz" = ( +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_3_1" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"XC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) +"XG" = ( +/turf/closed/wall/r_wall, +/area/lv624/lazarus/corporate_dome) +"Ye" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"Yg" = ( +/obj/item/moneybag, +/obj/structure/surface/rack, +/obj/item/coin/diamond, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"Yv" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/plating, +/area/lv624/lazarus/corporate_dome) +"YN" = ( +/turf/open/gm/dirt, +/area/lv624/lazarus/landing_zones/lz2) +"ZG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/scientist, +/obj/item/restraint/handcuffs, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"ZO" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/sheet/wood, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"ZT" = ( +/obj/effect/landmark/survivor_spawner/lv624_corporate_dome_cl, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) + +(1,1,1) = {" +Xt +Xt +Xt +Fk +Me +dY +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} +(2,1,1) = {" +Xt +Xt +Xt +yc +da +dY +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} +(3,1,1) = {" +Xt +Xt +Xt +yc +Me +kU +XG +XG +XG +XG +XG +XG +XG +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} +(4,1,1) = {" +Xt +Xt +XG +BL +BL +BL +XG +he +Bh +fm +he +XG +XG +XG +LZ +yJ +Xt +Xt +Xt +Xt +"} +(5,1,1) = {" +Xt +Xt +XG +Bh +Bh +Bh +qM +Uz +ft +Bh +Bh +XG +Pa +Gt +LZ +LZ +Xt +Xt +Xt +Xt +"} +(6,1,1) = {" +Xt +Xt +XG +ny +Bh +mw +Bh +Bh +Bh +Bh +Bh +qH +Uo +yJ +LZ +mi +Xt +Xt +Xt +Xt +"} +(7,1,1) = {" +Xt +Xt +XG +ZG +cB +mw +wW +qn +OH +Bh +Bh +XG +Yv +Aj +mi +XG +Xt +Xt +Xt +Xt +"} +(8,1,1) = {" +Xt +XG +XG +XG +XG +XG +XG +XG +XG +gX +XG +XG +XG +XG +wy +XG +XG +Xt +Xt +Xt +"} +(9,1,1) = {" +YN +XG +ln +GV +GV +TF +XG +Rn +Fl +cA +iF +Xp +XG +Ml +GV +eF +fq +Ii +Ii +Ii +"} +(10,1,1) = {" +YN +Lh +hf +ev +cA +cA +Jq +cA +cA +Go +cA +cA +aQ +cA +Hn +Ln +aQ +Kv +Ii +Ii +"} +(11,1,1) = {" +YN +mp +sm +RF +fF +KG +cA +cA +cA +Sb +cA +cA +cA +RD +Sb +AG +cA +Ii +dI +mK +"} +(12,1,1) = {" +YN +XG +xk +fH +fH +UF +XG +hc +Dn +cA +cA +pg +XG +Ye +kl +DU +XG +Ii +Ii +bD +"} +(13,1,1) = {" +Xt +XG +XG +XG +XG +XG +XG +XG +XG +cA +oj +XG +XG +XG +XG +XG +XG +Xt +Xt +Xt +"} +(14,1,1) = {" +Xt +Xt +Xt +XG +XG +Yg +bm +FZ +gx +cA +cA +cn +XG +Gi +vC +XG +Xt +Xt +Xt +Xt +"} +(15,1,1) = {" +Xt +Xt +XG +XG +HK +Fl +ZT +ms +IM +cA +BZ +cA +qJ +SV +Jg +XG +Xt +Xt +Xt +Xt +"} +(16,1,1) = {" +Xt +Xt +XG +RN +sc +bA +cA +ms +gx +cm +Sb +UF +XG +Fu +dH +EM +Xt +Xt +Xt +Xt +"} +(17,1,1) = {" +Xt +Xt +XG +qI +Vj +xG +Fh +zw +XG +cA +oj +XG +XG +XG +XG +Qi +Xt +Xt +Xt +Xt +"} +(18,1,1) = {" +Xt +Xt +XG +XG +XG +CF +XG +XG +XG +KG +bA +XC +jJ +iT +Xf +Xt +Xt +Xt +Xt +Xt +"} +(19,1,1) = {" +Xt +Xt +XG +Hv +GM +bA +Df +ha +zz +AT +mg +cA +bA +vW +zs +Xt +Xt +Xt +Xt +Xt +"} +(20,1,1) = {" +Xt +Xt +XG +zm +KC +zx +Dp +JL +oq +cA +Xz +cA +Ho +FP +sH +Xt +Xt +Xt +Xt +Xt +"} +(21,1,1) = {" +Xt +Xt +XG +XG +lG +Pr +cA +ZO +vf +bE +Xc +Wx +Ez +SO +cR +Xt +Xt +Xt +Xt +Xt +"} +(22,1,1) = {" +Xt +Xt +Xt +XG +XG +Tc +dq +dO +Xf +jH +is +pR +SO +SO +Xt +Xt +Xt +Xt +Xt +Xt +"} +(23,1,1) = {" +Xt +Xt +Xt +Xt +XG +Li +sX +Ct +Le +sX +lX +sX +SO +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} +(24,1,1) = {" +Xt +Xt +Xt +Xt +Xt +Xt +gz +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} +(25,1,1) = {" +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +Xt +"} diff --git a/maps/map_files/LV624/standalone/laststand.dmm b/maps/map_files/LV624/standalone/laststand.dmm index ebdb595397..8023be9a00 100644 --- a/maps/map_files/LV624/standalone/laststand.dmm +++ b/maps/map_files/LV624/standalone/laststand.dmm @@ -10,15 +10,6 @@ /obj/structure/closet/crate/freezer/rations, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"ae" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/obj/structure/largecrate/supply/ammo/shotgun{ - pixel_y = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "ah" = ( /turf/closed/wall/wood, /area/lv624/ground/caves/north_central_caves) @@ -29,11 +20,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"ak" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "al" = ( /obj/structure/bed/alien, /obj/item/storage/pouch/flare/full, @@ -44,17 +30,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"an" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7 - }, -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) "ao" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/meat/human{ @@ -68,12 +43,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"ap" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) "aq" = ( /obj/structure/closet/crate, /turf/open/floor/wood, @@ -86,17 +55,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"at" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/tool/match{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet08" - }, -/area/lv624/ground/caves/north_central_caves) "au" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -105,17 +63,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"ay" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "aA" = ( /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, @@ -125,11 +72,6 @@ /obj/item/device/flashlight/lantern, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aC" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) "aD" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_central_caves) @@ -182,37 +124,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aP" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) -"aQ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet01" - }, -/area/lv624/ground/caves/north_central_caves) -"aR" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet02" - }, -/area/lv624/ground/caves/north_central_caves) -"aS" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet{ - icon_state = "bcarpet03" - }, -/area/lv624/ground/caves/north_central_caves) "aU" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/chef, @@ -222,12 +133,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"aW" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) "aZ" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, @@ -241,12 +146,6 @@ /obj/effect/landmark/corpsespawner/security/liaison, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"bc" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) "bd" = ( /obj/structure/closet/crate, /obj/item/ammo_magazine/shotgun/buckshot, @@ -262,39 +161,57 @@ /obj/effect/landmark/crap_item, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"en" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/carpet/bcarpet09, +/area/lv624/ground/caves/north_central_caves) "fH" = ( /obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"jP" = ( +"gp" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/carpet/bcarpet01, +/area/lv624/ground/caves/north_central_caves) +"hf" = ( /obj/item/weapon/gun/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) -"jQ" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood{ - icon_state = "wood-broken3" +"ju" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/tool/match{ + pixel_x = 6; + pixel_y = 3 }, +/turf/open/floor/carpet/bcarpet08, +/area/lv624/ground/caves/north_central_caves) +"kp" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern, +/obj/structure/barricade/sandbags/wired, +/obj/item/weapon/baseballbat/metal, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"lG" = ( +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) "lJ" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"lP" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/structure/machinery/microwave{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) "mu" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/tomatomeat, @@ -311,16 +228,6 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"oA" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet09" - }, -/area/lv624/ground/caves/north_central_caves) "pH" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/stack/sheet/metal{ @@ -348,16 +255,69 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"rv" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"st" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "tb" = ( /obj/structure/barricade/plasteel/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"EY" = ( +"tE" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"tK" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"vA" = ( +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"xr" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"Bj" = ( /obj/structure/surface/table/woodentable/poor, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/carpet{ - icon_state = "bcarpet07" +/obj/structure/machinery/microwave{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"Cw" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/obj/structure/largecrate/supply/ammo/shotgun{ + pixel_y = 8 + }, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"Cy" = ( +/obj/structure/phone_base/colony_net{ + pixel_y = 32; + phone_category = "Lazarus Landing"; + phone_id = "Lakeside Bar" }, +/turf/open/floor/wood, +/area/lv624/ground/caves/north_central_caves) +"Dk" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet07, +/area/lv624/ground/caves/north_central_caves) +"Fm" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/carpet/bcarpet02, +/area/lv624/ground/caves/north_central_caves) +"GQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/wood/wood_broken6, /area/lv624/ground/caves/north_central_caves) "Ic" = ( /obj/structure/bed/chair/wood/normal{ @@ -370,46 +330,40 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"Ms" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) -"ND" = ( +"PM" = ( /obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern, -/obj/structure/barricade/sandbags/wired, -/obj/item/weapon/baseballbat/metal, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet03, /area/lv624/ground/caves/north_central_caves) -"OT" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +"PS" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) -"Td" = ( -/obj/structure/barricade/sandbags/wired, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +"TY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"UK" = ( +/turf/open/floor/wood/wood_broken3, /area/lv624/ground/caves/north_central_caves) "UM" = ( /obj/structure/bed/alien, /obj/structure/barricade/sandbags/wired, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"Yc" = ( -/obj/structure/phone_base/colony_net{ - pixel_y = 32; - phone_category = "Lazarus Landing"; - phone_id = "Lakeside Bar" +"XE" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7 }, -/turf/open/floor/wood, +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) +"ZG" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood/wood_broken, /area/lv624/ground/caves/north_central_caves) (1,1,1) = {" @@ -428,10 +382,10 @@ aD aa ah am -aP +UK bf bf -OT +ZG ah aD aD @@ -439,7 +393,7 @@ aD (3,1,1) = {" aa ah -an +XE bg aK bf @@ -453,9 +407,9 @@ aa ah ao bf -aC +lG bf -lP +Bj ah aD aD @@ -463,9 +417,9 @@ aD (5,1,1) = {" aa ah -ap +PS bf -aP +UK ba pH ah @@ -477,7 +431,7 @@ aa ah aq bf -aw +tE aK bf bf @@ -488,11 +442,11 @@ ah aa ah ar -aC +lG bf bg bf -aP +UK aA aZ "} @@ -503,20 +457,20 @@ au aE bf bf -aC +lG bg aA aZ "} (9,1,1) = {" ah -ae +Cw bf -aP +UK bf bb bf -jP +hf aA aZ "} @@ -526,7 +480,7 @@ ac bf bf bf -bc +GQ oj bf bf @@ -535,12 +489,12 @@ ah (11,1,1) = {" ah ad -aw +tE bf bg aK bf -ak +vA tb lJ "} @@ -549,7 +503,7 @@ ah bf bf bf -aP +UK bd bf bf @@ -561,8 +515,8 @@ ah bf bf aG -aQ -EY +gp +Dk Ic pS aA @@ -571,10 +525,10 @@ aZ (14,1,1) = {" ah bf -ak +vA aG -aR -at +Fm +ju Ic aV aA @@ -582,23 +536,23 @@ aZ "} (15,1,1) = {" ah -aP +UK bg aG -aS -oA +PM +en Ic Lu -Ms +tK aZ "} (16,1,1) = {" ah bf bf -aP +UK bf -ak +vA bf bf bf @@ -612,28 +566,28 @@ aV aU fH bf -aw +tE bf ah "} (18,1,1) = {" ah -Yc -ak +Cy +vA bf aV -jQ -bc +st +GQ bf aA aZ "} (19,1,1) = {" ah -ak +vA bf aI -ak +vA bf bf aK @@ -649,7 +603,7 @@ bf bf bf bf -Td +rv aZ "} (21,1,1) = {" @@ -669,9 +623,9 @@ aa ah al bf -aC +lG ah -aP +UK bf UM aZ @@ -679,13 +633,13 @@ aZ (23,1,1) = {" aa ah -ay +xr bf aN ah bg bf -ND +kp aZ "} (24,1,1) = {" @@ -693,10 +647,10 @@ aa ah aM bf -aW +TY ah bf -ak +vA qW aZ "} diff --git a/maps/map_files/LV624/standalone/leftsidepass.dmm b/maps/map_files/LV624/standalone/leftsidepass.dmm index 678059d4ad..0b90931f2f 100644 --- a/maps/map_files/LV624/standalone/leftsidepass.dmm +++ b/maps/map_files/LV624/standalone/leftsidepass.dmm @@ -1,8 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/coast/north, -/area/lv624/ground/river/west_river) "ac" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -53,87 +49,26 @@ "ar" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) -"as" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt, -/area/lv624/ground/jungle/west_jungle) -"at" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, -/area/lv624/ground/river/west_river) "au" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) -"av" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, -/area/lv624/ground/jungle/west_jungle) "aw" = ( -/obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) -"ax" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, -/area/lv624/ground/jungle/west_jungle) -"ay" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"az" = ( -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"aA" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"aB" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, -/area/lv624/ground/jungle/west_jungle) "aC" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) "aD" = ( /obj/structure/flora/jungle/vines/light_1, -/turf/open/gm/grass/grass2, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_jungle) "aE" = ( -/obj/structure/flora/bush/ausbushes/pointybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aF" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 6 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"aG" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/west_jungle) -"aH" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aI" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aJ" = ( -/obj/structure/flora/bush/ausbushes/var3/leafybush, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"aK" = ( -/turf/open/gm/dirtgrassborder/west, +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_jungle) "aU" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"aV" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) "aX" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) @@ -172,8 +107,7 @@ /turf/open/gm/river, /area/lv624/ground/river/west_river) "bV" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirtgrassborder/south, +/turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) "gX" = ( /turf/closed/wall/rock/brown, @@ -268,7 +202,7 @@ ES ES ES qG -au +aE aD "} (4,1,1) = {" @@ -282,8 +216,8 @@ ai ad ad aq -at -ax +ES +bV aE "} (5,1,1) = {" @@ -297,9 +231,9 @@ bm bc bc bt -au -ay -az +bV +bV +bV "} (6,1,1) = {" bi @@ -312,9 +246,9 @@ aj bc bc bt -au +bV Za -aV +bV "} (7,1,1) = {" bi @@ -329,7 +263,7 @@ FJ bt bV Za -aF +bV "} (8,1,1) = {" bi @@ -342,9 +276,9 @@ bc bc am bt -au -az -aG +bV +bV +bV "} (9,1,1) = {" bx @@ -357,9 +291,9 @@ bc bc bc bt -au -aA -aH +bV +bV +bV "} (10,1,1) = {" bf @@ -373,8 +307,8 @@ bc aX ar bV -aV -aF +bV +bV "} (11,1,1) = {" bi @@ -386,10 +320,10 @@ bN bc bc bt -as -av -aB -aI +bV +bV +bV +bV "} (12,1,1) = {" bi @@ -403,8 +337,8 @@ bc ao zW aw -au -aJ +bV +bV "} (13,1,1) = {" bx @@ -418,12 +352,12 @@ bc bc ve Ms -av -aK +bV +bV "} (14,1,1) = {" bi -ab +bL af af af diff --git a/maps/map_files/LV624/standalone/lv-bridge-east.dmm b/maps/map_files/LV624/standalone/lv-bridge-east.dmm index 62df758ef0..09f938cadc 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-east.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-east.dmm @@ -5,25 +5,16 @@ "ac" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/barrens/central_barrens) "ad" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/barrens/central_barrens) "ae" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/barrens/central_barrens) "af" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -50,16 +41,10 @@ "al" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "am" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "ao" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -80,10 +65,7 @@ "au" = ( /obj/effect/landmark/lv624/fog_blocker, /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "av" = ( /obj/effect/landmark/crap_item, @@ -128,10 +110,7 @@ /area/lv624/ground/river/central_river) "aO" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/central_river) "aQ" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -148,17 +127,11 @@ /turf/open/gm/dirt, /area/lv624/ground/river/central_river) "aW" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "aX" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/central_river) "aZ" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -254,10 +227,7 @@ /area/lv624/ground/river/central_river) "Bv" = ( /obj/effect/landmark/good_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "BA" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -272,10 +242,7 @@ /area/lv624/ground/jungle/north_jungle) "GU" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "Hi" = ( /obj/structure/flora/jungle/plantbot1, @@ -313,10 +280,7 @@ /area/lv624/ground/river/central_river) "XY" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "YA" = ( /obj/structure/flora/jungle/plantbot1, @@ -324,10 +288,7 @@ /area/lv624/ground/river/central_river) "YL" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm index 1b9b8a9408..d715a9e30f 100644 --- a/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm +++ b/maps/map_files/LV624/standalone/lv-bridge-nofog.dmm @@ -4,52 +4,31 @@ /area/lv624/ground/river/central_river) "ab" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/lv624/ground/river/central_river) "ac" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) "ad" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/lv624/ground/river/central_river) "ae" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/lv624/ground/river/central_river) "af" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/lv624/ground/river/central_river) "ag" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/lv624/ground/river/central_river) "ah" = ( /obj/structure/fence, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/lv624/ground/river/central_river) "ai" = ( /turf/open/gm/dirt, @@ -62,20 +41,14 @@ /area/lv624/ground/jungle/north_jungle) "al" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "dC" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/central_river) "iW" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "jr" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -97,10 +70,7 @@ /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) "lY" = ( -/turf/open/floor/plating{ - dir = 2; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning, /area/lv624/ground/river/central_river) "mq" = ( /obj/structure/machinery/colony_floodlight, @@ -129,10 +99,7 @@ "qL" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "xB" = ( /obj/effect/landmark/crap_item, @@ -146,16 +113,10 @@ /area/lv624/ground/jungle/north_jungle) "BW" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "DX" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "EG" = ( /obj/effect/landmark/lv624/fog_blocker, @@ -167,10 +128,7 @@ "Uh" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/asteroidfloor/north, /area/lv624/ground/river/central_river) "VN" = ( /turf/open/gm/grass/grass1, @@ -179,10 +137,7 @@ /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) "Yw" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/north, /area/lv624/ground/river/central_river) (1,1,1) = {" diff --git a/maps/map_files/LV624/standalone/rightsidepass.dmm b/maps/map_files/LV624/standalone/rightsidepass.dmm index 944be98dfb..e7ce416997 100644 --- a/maps/map_files/LV624/standalone/rightsidepass.dmm +++ b/maps/map_files/LV624/standalone/rightsidepass.dmm @@ -96,25 +96,19 @@ /area/lv624/ground/jungle/east_jungle) "tn" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +/turf/open/gm/dirt/desert_dug, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "tJ" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "tN" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "tT" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) "ww" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/river/east_river) "zT" = ( /obj/structure/flora/bush/ausbushes/ppflowers, @@ -202,9 +196,7 @@ /turf/open/gm/dirt, /area/lv624/ground/river/east_river) "PZ" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/lv624/ground/jungle/east_jungle) "Qb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -225,9 +217,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) "Wq" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) "WK" = ( /obj/structure/flora/bush/ausbushes/reedbush, diff --git a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm index f9dfdd8bf9..ad10125803 100644 --- a/maps/map_files/LV624/standalone/sandtemple-jungle.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-jungle.dmm @@ -21,12 +21,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fv" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 4 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "gb" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -83,6 +77,10 @@ "pB" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"pO" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/lv624/ground/jungle/south_west_jungle) "qZ" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -133,6 +131,12 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"zM" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 4 + }, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) "AQ" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -243,18 +247,16 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"Wp" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "WQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"XD" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_west_jungle) "XG" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/dirt, @@ -341,7 +343,7 @@ oD LW dy Ok -NU +XD NU Ge AQ @@ -369,7 +371,7 @@ zh uj uj uj -fv +zM eV Lz jV @@ -388,7 +390,7 @@ uj uj uj eV -Lz +pO Kn IP oD @@ -414,7 +416,7 @@ LW DF oD oD -Wp +cP uj uj WQ diff --git a/maps/map_files/LV624/standalone/sandtemple-se.dmm b/maps/map_files/LV624/standalone/sandtemple-se.dmm index 76d29d2d01..7e1db79bab 100644 --- a/maps/map_files/LV624/standalone/sandtemple-se.dmm +++ b/maps/map_files/LV624/standalone/sandtemple-se.dmm @@ -74,6 +74,10 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"vt" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/gm/dirt, +/area/lv624/ground/jungle/south_east_jungle) "wQ" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -109,6 +113,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/floor/sandstone/runed, /area/lv624/ground/jungle/south_east_jungle) +"Kj" = ( +/obj/effect/landmark/lizard_spawn, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/jungle/south_east_jungle) "LV" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) @@ -317,7 +325,7 @@ Wt gU Xz Xy -Xl +vt Xl Xl Ze @@ -347,7 +355,7 @@ Tl aK Wl yg -Xy +Kj Xl br EZ diff --git a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm index 620c72915a..d2b126afff 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.armorystorage.dmm @@ -1,5 +1,17 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( +"a" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"c" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_box/magazine/nailgun, +/obj/item/ammo_box/magazine/nailgun, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"f" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/gold{ amount = 2 @@ -11,76 +23,28 @@ /obj/item/stack/sheet/mineral/platinum{ pixel_x = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"d" = ( -/obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"e" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Armory Vault"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"i" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27{ - pixel_x = -8 - }, -/obj/item/ammo_magazine/smg/mp27{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/smg/mp27, -/obj/item/ammo_magazine/smg/mp27{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/smg/mp27{ - pixel_x = 7 - }, +"g" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" + dir = 4 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"j" = ( -/turf/closed/wall, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"n" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 2 +/obj/item/ammo_magazine/smg/mac15{ + pixel_x = 1 }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = 6 +/obj/item/ammo_magazine/smg/mac15{ + pixel_x = -3 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/ammo_magazine/smg/mac15{ + pixel_x = -7 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/ammo_magazine/smg/mac15{ + pixel_x = 6 }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"p" = ( -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"s" = ( +"h" = ( /obj/structure/closet/crate, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, @@ -93,58 +57,44 @@ /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"t" = ( -/obj/item/tool/pickaxe, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"v" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +"j" = ( +/turf/closed/wall, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"x" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/fp9000, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"k" = ( +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"y" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/high_explosive/stick, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = 6 - }, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = -6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"l" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Armory Vault"; + req_access_txt = "100" }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"z" = ( +"m" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, /obj/item/weapon/gun/rifle/mar40{ pixel_y = -3 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"o" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"B" = ( +"p" = ( +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"q" = ( /obj/structure/closet/crate, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, @@ -153,21 +103,17 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"F" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_box/magazine/nailgun, -/obj/item/ammo_box/magazine/nailgun, -/turf/open/floor{ - icon_state = "dark" - }, +"r" = ( +/obj/item/tool/shovel, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"G" = ( +"u" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"w" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/smg/mp27{ pixel_y = -4 @@ -175,91 +121,97 @@ /obj/item/weapon/gun/smg/mp27{ pixel_y = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"I" = ( -/obj/structure/machinery/light{ - dir = 4 +"A" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"C" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"E" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/mac15{ - pixel_x = 1 +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, -/obj/item/ammo_magazine/smg/mac15{ - pixel_x = -3 +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 }, -/obj/item/ammo_magazine/smg/mac15{ - pixel_x = -7 +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"H" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27{ + pixel_x = -8 }, -/obj/item/ammo_magazine/smg/mac15{ - pixel_x = 6 +/obj/item/ammo_magazine/smg/mp27{ + pixel_x = -4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/ammo_magazine/smg/mp27, +/obj/item/ammo_magazine/smg/mp27{ + pixel_x = 4 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"K" = ( -/obj/effect/landmark/crap_item, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"N" = ( -/turf/open/floor{ - icon_state = "dark" +/obj/item/ammo_magazine/smg/mp27{ + pixel_x = 7 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"O" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"J" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "\improper Armory Vault"; + req_access_txt = "100" }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"P" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/mac15, -/obj/item/weapon/gun/smg/mac15{ - pixel_y = 6 +"K" = ( +/obj/effect/landmark/crap_item, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"L" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = 6 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -6 }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"Q" = ( +"M" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ +/obj/item/stack/sheet/mineral/gold{ amount = 2 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"T" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "\improper Armory Vault"; - req_access_txt = "100" +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = 6 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"U" = ( +"S" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/weapon/gun/smg/mac15, +/obj/item/weapon/gun/smg/mac15{ + pixel_y = 6 }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"V" = ( +"W" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/mineral/diamond{ amount = 2 @@ -267,28 +219,17 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "X" = ( /obj/effect/alien/weeds/node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"Z" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"Y" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) (1,1,1) = {" @@ -314,7 +255,7 @@ p (3,1,1) = {" j j -T +J j j j @@ -323,59 +264,59 @@ j "} (4,1,1) = {" j -F -d -O +c +r +Y j -i -G +H +w j "} (5,1,1) = {" j -N -N -N -e -v -N +k +k +k +l +u +k j "} (6,1,1) = {" j -Z -N -b +m +k +f j -N -t +k +a j "} (7,1,1) = {" j -z -N -x +E +k +A j -N -N +k +k j "} (8,1,1) = {" j -B -N -s +q +k +h j -U -n +o +M j "} (9,1,1) = {" j -P -v -Q +S +u +C j j j @@ -383,9 +324,9 @@ j "} (10,1,1) = {" j -I -y -V +g +L +W j X K diff --git a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm index f4da3f1594..83dad4dd8a 100644 --- a/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm +++ b/maps/map_files/LV624/storage-crashed-ship/10.valuables.dmm @@ -1,43 +1,28 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"d" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/sandstone{ - amount = 50 - }, -/turf/open/floor{ - icon_state = "dark" - }, +"b" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"e" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/supply, -/turf/open/floor{ - icon_state = "dark" +"c" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Mining Storage"; + req_access_txt = "100" }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) "f" = ( /turf/closed/wall, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"i" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/turf/open/floor{ - icon_state = "dark" +"g" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"l" = ( /obj/effect/landmark/crap_item, -/obj/effect/alien/weeds/node, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"o" = ( +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"h" = ( /obj/structure/closet/crate, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, @@ -50,46 +35,19 @@ /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, /obj/item/ammo_magazine/smg/fp9000, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"p" = ( +"k" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"q" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/obj/item/tool/shovel, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"r" = ( +"l" = ( /obj/effect/landmark/crap_item, +/obj/effect/alien/weeds/node, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"s" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"t" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"y" = ( +"n" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal{ amount = 50; @@ -99,66 +57,84 @@ /obj/item/stack/sheet/metal{ amount = 30 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"C" = ( +"r" = ( +/obj/effect/landmark/crap_item, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) +"u" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = -6 +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, -/turf/open/floor{ - icon_state = "dark" +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"D" = ( +"w" = ( /obj/structure/largecrate/supply, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"G" = ( +"x" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/stack/sheet/mineral/platinum, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"H" = ( -/obj/structure/machinery/light{ - dir = 8 +"A" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 }, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"B" = ( +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"I" = ( +"E" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"F" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 +/obj/structure/largecrate/supply, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"J" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"K" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = -6 }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"M" = ( +"L" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 }, -/obj/item/tool/pickaxe/diamond, -/turf/open/floor{ - icon_state = "dark" +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, +/obj/effect/landmark/crap_item, +/turf/open/floor/vault2/west, /area/lv624/ground/barrens/north_east_barrens/ceiling) "N" = ( /obj/effect/alien/weeds/node, @@ -167,21 +143,30 @@ "O" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"R" = ( +"P" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 +/obj/item/stack/sheet/mineral/sandstone{ + amount = 50 }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"Q" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 }, +/obj/item/tool/pickaxe/diamond, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"T" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) -"U" = ( +"W" = ( /obj/structure/closet/crate, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40, @@ -190,38 +175,7 @@ /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/rifle/mar40/extended, /obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"V" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/platinum, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"X" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Mining Storage"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"Z" = ( -/turf/open/floor{ - icon_state = "dark" - }, +/turf/open/floor/dark, /area/lv624/ground/barrens/north_east_barrens/ceiling) (1,1,1) = {" @@ -247,7 +201,7 @@ r (3,1,1) = {" f f -X +c f f f @@ -256,61 +210,61 @@ O "} (4,1,1) = {" f -R -Z -H -Z -G +L +B +g +B +E f O "} (5,1,1) = {" f -I -Z -C -Z -p +u +B +K +B +A f N "} (6,1,1) = {" f -y -Z -M -Z -D +n +B +Q +B +w f O "} (7,1,1) = {" f -U -Z -o -Z -s +W +B +h +B +T f O "} (8,1,1) = {" f -t -q -i -Z -d +k +b +J +B +P f O "} (9,1,1) = {" f -V -Z -Z -Z -e +x +B +B +B +F f O "} diff --git a/maps/map_files/LV624_Fixed/LV624_repaired.dmm b/maps/map_files/LV624_Fixed/LV624_repaired.dmm index f97a2d55ce..fdba63f22e 100644 --- a/maps/map_files/LV624_Fixed/LV624_repaired.dmm +++ b/maps/map_files/LV624_Fixed/LV624_repaired.dmm @@ -1,4 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aad" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/engineering) "aaO" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -14,27 +17,17 @@ "abo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"abp" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/scientist, -/obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"abs" = ( +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"abH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "acc" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) -"acR" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "acW" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, @@ -46,62 +39,28 @@ "adJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_east_caves) -"adK" = ( -/obj/structure/cargo_container/seegson/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "aes" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"aeE" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "aeR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) -"aeW" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_central_jungle) -"afE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"afj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"agg" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "agr" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"agx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"agN" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "ahb" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -114,22 +73,15 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"ahX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/sleep_female) +"ahu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/wy, +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) "aih" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"aip" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) "ais" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -143,17 +95,23 @@ "ajA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_jungle) +"ajD" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "ajM" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ake" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "akj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, @@ -178,35 +136,19 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"akv" = ( -/obj/structure/closet/coffin, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "alv" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"amU" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "amX" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"anm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, +"ana" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "anv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -220,6 +162,13 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"aok" = ( +/obj/structure/surface/table/reinforced{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "aom" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/north_east_barrens) @@ -227,15 +176,18 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"aoF" = ( +/obj/structure/machinery/vending, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "aoM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/west_barrens) -"aoV" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) +"apc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "apA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump, @@ -245,9 +197,33 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) +"aqc" = ( +/obj/structure/surface/rack, +/obj/item/weapon/baton/cattleprod{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/weapon/baton/cattleprod{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"aqo" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin/wy, +/obj/item/tool/pen/clicky, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "aqp" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/north_central_caves) +"aqy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "aqI" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -270,19 +246,31 @@ /obj/structure/cargo_container/arious/rightmid, /turf/open/floor, /area/lv624/ground/barrens/containers) -"asu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - icon_state = "white" +"asJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Director's Office" }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "asY" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"asZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "atn" = ( /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) +"atq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "atO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -310,22 +298,31 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"auq" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"auz" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "auD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"auN" = ( -/obj/structure/largecrate, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "avg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"avK" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"awd" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "awh" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, @@ -339,21 +336,24 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"awR" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"axk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/main_hall) "axr" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"axM" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/platform, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "axZ" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, @@ -361,13 +361,6 @@ "ayu" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"ayD" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "ayG" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -376,49 +369,20 @@ /obj/item/clothing/suit/armor/yautja_flavor, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"azy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +"aAm" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/west_central_jungle) +"aAF" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_y = 30 }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"azB" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"aAm" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_central_jungle) -"aAC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "aBa" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -435,26 +399,19 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) -"aBI" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"aCc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor{ +"aBZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"aCe" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ dir = 4; - icon_state = "whiteyellow" + pixel_x = -32 }, -/area/lv624/lazarus/corporate_dome) +/obj/item/reagent_container/food/drinks/flask/barflask, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "aCh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -470,15 +427,6 @@ "aDe" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/east_barrens) -"aDo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "aDB" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) @@ -494,6 +442,15 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"aEB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/lighter, +/obj/item/device/analyzer, +/obj/item/device/multitool, +/obj/item/device/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "aEK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, @@ -512,16 +469,6 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"aFI" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"aFP" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "aFY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirtgrassborder/east, @@ -551,29 +498,10 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aHi" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/obj/structure/platform, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "aHz" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"aHI" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "aHO" = ( /obj/structure/machinery/landinglight/ds2{ dir = 1 @@ -612,12 +540,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"aIS" = ( -/turf/open/floor{ - dir = 5; - icon_state = "red" +"aIE" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/lazarus/security) +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "aIU" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/prop/brazier/torch, @@ -630,17 +561,23 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"aJG" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/laceup, -/obj/structure/machinery/light{ - dir = 8 +"aJu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/newscaster{ + pixel_x = -30 }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +/obj/item/reagent_container/food/drinks/coffeecup/wy, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"aJV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) "aJX" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 @@ -657,21 +594,28 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"aKP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"aLe" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "aLj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"aLn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "aLC" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) @@ -685,49 +629,26 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"aMg" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "aMi" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"aMJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"aMZ" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/central_barrens) "aNe" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"aNy" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/river/east_river) "aNA" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"aNU" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"aOd" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) "aOE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -735,6 +656,10 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/chapel) +"aOJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "aOU" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -749,6 +674,9 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"aPz" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "aPD" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/jungle/west_jungle) @@ -760,19 +688,10 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"aQx" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"aRi" = ( -/obj/item/device/analyzer, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) +"aQg" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "aRG" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_west, @@ -780,13 +699,13 @@ "aRL" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) -"aRY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/taperecorder, -/turf/open/floor{ - icon_state = "grimy" +"aRW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "Hydroponics" }, -/area/lv624/lazarus/hop) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "aSh" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -797,26 +716,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"aST" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"aTd" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +"aSV" = ( +/obj/item/stack/rods{ + amount = 20 }, -/area/lv624/ground/river/west_river) +/obj/structure/surface/rack, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "aTg" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/river/east_river) +"aTl" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"aTA" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 9 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "aUc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -827,33 +752,46 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) -"aUA" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warnwhite" +"aVe" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/fitness) -"aUG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/crew/colony, -/turf/open/floor{ - icon_state = "grimy" +/obj/item/stack/cable_coil, +/obj/item/tool/screwdriver{ + pixel_x = -6; + pixel_y = 6 }, -/area/lv624/lazarus/hop) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "aVf" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/canteen) +"aVk" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "aVn" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) -"aVt" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"aVF" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "aVH" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) @@ -861,58 +799,52 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"aVR" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 +"aWa" = ( +/obj/item/handset{ + desc = "A model of an ancient Earth communication device."; + force = 8 }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv624/lazarus/sleep_male) -"aWH" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "aXq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_east_jungle) -"aXZ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) +"aYE" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "aYG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"aZe" = ( -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ +"aYZ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; - icon_state = "warnplate" + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/white, +/area/lv624/lazarus/research) +"aZj" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "aZu" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -923,28 +855,12 @@ "aZH" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_central_caves) -"bab" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"bap" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"aZQ" = ( +/obj/structure/surface/table, +/obj/item/book/manual/research_and_development, +/obj/item/cell/hyper, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "bat" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -956,6 +872,11 @@ "baP" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_central_jungle) +"bbp" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "bbA" = ( /obj/item/stack/sheet/metal{ amount = 3 @@ -968,28 +889,26 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bbQ" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) "bbS" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"bbU" = ( +/obj/structure/machinery/fermenter, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "bbV" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"bcv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"bct" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 26 }, -/area/lv624/lazarus/kitchen) +/obj/effect/landmark/good_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "bcU" = ( /obj/structure/surface/table/woodentable/poor, /turf/open/floor/wood, @@ -1002,13 +921,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_tcomms_road) -"bdf" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "bdt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1025,16 +937,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"bdZ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - locked = 1; - name = "\improper Nexus Dome Armory"; - req_one_access_txt = "19;106" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "bee" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirt, @@ -1042,30 +944,11 @@ "beo" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz2) -"bey" = ( -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"beA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/lighter, -/obj/item/device/analyzer, -/obj/item/device/multitool, -/obj/item/device/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"beK" = ( +"beV" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" + dir = 4 }, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) "beX" = ( /obj/structure/flora/jungle/vines/light_3, @@ -1084,33 +967,58 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) -"bgv" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) -"bhm" = ( -/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ - pixel_x = -10; - pixel_y = -2; - light_on = 1; - light_range = 1; - light_system = 1 +"bfS" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/medbay) +"bfV" = ( +/obj/structure/surface/table, +/obj/item/trash/snack_bowl{ + pixel_y = 9 + }, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"bfX" = ( +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/east_barrens/ceiling) +"bgd" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"bgW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"bhf" = ( +/obj/structure/surface/rack, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"bhm" = ( +/obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ + pixel_x = -10; + pixel_y = -2; + light_on = 1; + light_range = 1; + light_system = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"bhB" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) "bie" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/south_eastern_barrens) -"biQ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/chocolatecakeslice, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) "bja" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -1130,17 +1038,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"bjY" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) +"bkq" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "bkN" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -1152,28 +1053,26 @@ }, /turf/closed/wall, /area/lv624/lazarus/toilet) -"blk" = ( -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) +"blr" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "blw" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"blC" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"blV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"bmp" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/area/lv624/lazarus/toilet) +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) "bmX" = ( /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) @@ -1190,12 +1089,13 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"bnF" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"bns" = ( +/obj/item/device/assembly/timer, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"bnD" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/sand_temple) "boa" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_central_jungle) @@ -1203,33 +1103,8 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/north_nexus_road) -"boC" = ( -/obj/structure/sink/kitchen{ - pixel_y = 30 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"boN" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +"bok" = ( +/turf/open/floor/plating/warnplate/north, /area/lv624/ground/barrens/east_barrens/ceiling) "bpl" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -1238,12 +1113,18 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"bqv" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" +"bqu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "bqL" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -1254,12 +1135,18 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"bqV" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood{ - icon_state = "wood-broken" +"bqW" = ( +/obj/item/stock_parts/scanning_module/phasic, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/ground/caves/north_central_caves) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "brg" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -1270,19 +1157,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"brl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"brn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "brz" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -1321,24 +1195,15 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/west_nexus_road) -"buH" = ( +"buI" = ( /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "bvx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/west_river) -"bvB" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/hotdog, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "bvL" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -1354,21 +1219,28 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"byv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"byy" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +"bwL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) +"bwS" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) +"bxr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pie, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"byw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 }, -/area/lv624/lazarus/sleep_female) +/obj/item/clothing/under/liaison_suit/suspenders, +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "byF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1393,63 +1265,17 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_east_jungle) -"bzG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"bzH" = ( -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/lv624/ground/caves/north_central_caves) -"bAI" = ( -/obj/structure/surface/rack, -/obj/item/stack/sandbags/large_stack{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/stack/sandbags/large_stack{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"bAP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) -"bBr" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "bBv" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bCa" = ( -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"bCp" = ( -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"bBD" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "bCs" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -1460,20 +1286,21 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"bCA" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "bCH" = ( /obj/structure/machinery/colony_floodlight, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/gbcorner/south_west, /area/lv624/lazarus/yggdrasil) -"bCO" = ( -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "bDM" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) @@ -1487,20 +1314,17 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"bEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "bFQ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"bFS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/comms) "bGb" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -1516,29 +1340,15 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"bHA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/computerframe{ - anchored = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "bHI" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"bHO" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"bHL" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "bIj" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle) @@ -1551,20 +1361,24 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"bKg" = ( -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"bJQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) +"bJV" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 }, -/area/lv624/lazarus/quartstorage) -"bKL" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 8; - icon_state = "warning" +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"bKf" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "bLa" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) @@ -1572,33 +1386,20 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"bLm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"bLo" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) +"bLe" = ( +/obj/structure/surface/table, +/obj/item/toy/dice, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "bLw" = ( /turf/open/gm/coast/north, /area/lv624/ground/barrens/east_barrens) +"bLJ" = ( +/obj/structure/surface/table, +/obj/item/ashtray/plastic, +/obj/item/stack/flag/red, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "bMd" = ( /obj/structure/surface/rack, /turf/open/floor/vault, @@ -1613,37 +1414,16 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"bNj" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Cafeteria APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"bNo" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/caves/west_caves) +"bMM" = ( +/obj/item/tool/crowbar, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "bNA" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bNB" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "bNI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -1657,6 +1437,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"bOw" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"bOR" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Secure Vault APC" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "bPf" = ( /obj/item/bananapeel, /turf/open/gm/dirt, @@ -1673,40 +1463,24 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"bPL" = ( -/obj/structure/machinery/vending/hydroseeds, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"bPR" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"bPU" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"bPW" = ( -/obj/structure/computerframe, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "bQd" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"bQF" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"bQQ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "bRn" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -1716,46 +1490,30 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bSN" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"bTt" = ( -/obj/structure/machinery/atm{ - name = "Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"bTS" = ( -/obj/structure/prop/mech/armor_booster, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platebot" +"bRC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Corporate Office"; + req_access_txt = "100" }, -/area/lv624/lazarus/robotics) -"bUi" = ( -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"bUk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv624/lazarus/research) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "bUm" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/east_barrens) -"bUA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" +"bUP" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "bUY" = ( /turf/closed/wall/sulaco, /area/lv624/lazarus/crashed_ship_containers) @@ -1772,11 +1530,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"bVG" = ( -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "bVH" = ( /obj/structure/flora/jungle/alienplant1{ layer = 4.13; @@ -1784,66 +1537,26 @@ }, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"bVS" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"bWy" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "bWC" = ( /turf/closed/wall, /area/lv624/lazarus/toilet) -"bWH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"bXf" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"bXh" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/west_caves) -"bXM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"bXu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "bXX" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/north_tcomms_road) -"bYJ" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, +"bYb" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowcorner/east, /area/lv624/lazarus/corporate_dome) +"bYn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/pastatomato, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "bYS" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grassbeach/south, @@ -1858,15 +1571,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"bZR" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) +"caL" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "caR" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) +"caX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "cbZ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -1877,64 +1595,35 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"ccE" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "ccH" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/jungle/west_jungle) -"ccK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "ccP" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"ccT" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" +"cdJ" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/white, +/area/lv624/lazarus/research) "cee" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/central_river) -"cef" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"ceO" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"cfi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) +"cew" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "cfj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -1945,48 +1634,48 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) -"cgk" = ( -/obj/structure/machinery/light{ - dir = 8 +"cgj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/lv624/lazarus/comms) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "cgm" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"cgC" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Commandant's Quarters APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) +"cgQ" = ( +/turf/open/floor/warningcorner/east, +/area/lv624/lazarus/landing_zones/lz1) +"cgS" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/south_west_caves) "cgY" = ( /obj/structure/sign/safety/maint, /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_nexus_road) -"chm" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"chi" = ( +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/lazarus/engineering) +"chr" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 30 }, -/area/lv624/ground/caves/sand_temple) -"chp" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor{ - icon_state = "dark" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cht" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/lv624/lazarus/engineering) +/obj/structure/computerframe{ + anchored = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "chK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -1994,69 +1683,36 @@ "chW" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) +"cio" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "ciz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/caves/north_central_caves) -"ciR" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"cjc" = ( +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "cjr" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"cjH" = ( +/obj/structure/bed/alien, +/obj/item/clothing/yautja_cape, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "cjM" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"cjO" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"cks" = ( -/obj/structure/dispenser/oxygen, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"ckt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ckW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "cla" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"cmi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/gun/clf_primary/midchance, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "cml" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/west_central_jungle) @@ -2064,6 +1720,17 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"cmA" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"cmM" = ( +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "cnz" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirt, @@ -2072,10 +1739,22 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/river, /area/lv624/ground/river/central_river) +"cnJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "col" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) +"com" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "coK" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -2088,75 +1767,118 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"cqh" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"cqG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv624/ground/river/east_river) -"crf" = ( -/obj/effect/landmark/lv624/fog_blocker, +"cpq" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/obj/item/tool/mop, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"cpT" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"cqs" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/jungle/west_jungle/ceiling) +"cqG" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv624/ground/river/east_river) +"cqQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"crf" = ( +/obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) +"crB" = ( +/obj/structure/closet, +/obj/item/clothing/under/rank/scientist, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "crD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"crN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "crY" = ( /turf/open/gm/coast/south, /area/lv624/ground/barrens/west_barrens) +"csC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "csU" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/landmark/crap_item, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"csW" = ( -/obj/structure/machinery/door/window/westleft, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "cta" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"ctP" = ( +"ctm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/structure/surface/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) +"ctB" = ( +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"ctI" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "science_blast"; + layer = 3.3; + name = "\improper Science Wing Blast Door" }, -/area/lv624/lazarus/robotics) -"ctX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/med_data/laptop, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/turf/open/floor{ - icon_state = "grimy" +/turf/open/floor/white, +/area/lv624/lazarus/research) +"cur" = ( +/obj/structure/surface/table, +/obj/item/paper_bin{ + pixel_y = 4 }, -/area/lv624/lazarus/hop) +/obj/item/tool/pen, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "cuy" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"cuV" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "cvp" = ( /obj/structure/largecrate, /turf/open/floor/vault, @@ -2169,23 +1891,21 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"cvL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Hydroponics APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "cvN" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"cwd" = ( +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"cwx" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "cwz" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) @@ -2194,32 +1914,30 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"cwR" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "cwX" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"cxH" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor{ - icon_state = "freezerfloor" +"cxh" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz2) +"cxw" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"cxA" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"cxC" = ( +/obj/structure/flora/jungle/vines/light_2, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2; + name = "\improper Atmospherics Condenser" }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) "cxX" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_central_jungle) @@ -2229,13 +1947,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"cyF" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "cza" = ( /obj/effect/landmark/hunter_secondary, /obj/effect/landmark/lv624/fog_blocker, @@ -2252,20 +1963,23 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"czF" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet03, +/area/lv624/ground/caves/north_central_caves) +"czK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "cAp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) -"cAu" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/atmospipes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "cAS" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -2277,17 +1991,6 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"cAZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "cBl" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, @@ -2298,18 +2001,19 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"cCj" = ( -/obj/structure/girder, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"cBJ" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "cCJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) "cCX" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"cDd" = ( +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/cargo) "cDi" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -2320,21 +2024,6 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"cDq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Chapel APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "cDz" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -2343,54 +2032,104 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/jungle/west_jungle) -"cEm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"cEp" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "cEI" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/chanterelle, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"cEX" = ( +/obj/structure/surface/table, +/obj/item/stack/cable_coil/random, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/east_barrens/ceiling) "cFr" = ( /obj/structure/prop/brazier/torch, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"cFG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + name = "Research Director's APC" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"cGh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"cGO" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"cGR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "cGX" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"cHa" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "cHb" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"cHi" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - locked = 1; - name = "\improper Engineering Dome Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" +"cHw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/engineering) +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"cHx" = ( +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "cHQ" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"cHW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/megaphone, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "cId" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/r_wall, /area/lv624/lazarus/hop) +"cIl" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/river/east_river) +"cIm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/main_hall) "cIo" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2399,17 +2138,6 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"cIr" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/east_barrens) -"cIF" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "cIG" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -2425,72 +2153,40 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"cJN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"cKJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_x = -28 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"cKN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"cKE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/apron, +/obj/item/tool/shovel, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"cKF" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/central_barrens) +"cLh" = ( +/obj/structure/largecrate/random, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 5 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) +"cLt" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/lv624/lazarus/quartstorage) -"cLd" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 8; - icon_state = "warning" +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/river/central_river) +"cMf" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/lv624/lazarus/landing_zones/lz1) -"cLz" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/glass/fertilizer{ - pixel_x = 6; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 2 }, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"cLE" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"cLG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "cML" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -2500,6 +2196,10 @@ "cMY" = ( /turf/open/gm/grass/grassbeach/east, /area/lv624/lazarus/yggdrasil) +"cNy" = ( +/obj/structure/prop/mech/parts/gygax_torso, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "cNY" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = 8; @@ -2511,11 +2211,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"cOf" = ( +/obj/structure/machinery/constructable_frame, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) "cOm" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) +"cOD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "cOY" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/vines/heavy, @@ -2535,21 +2249,38 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"cQg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"cPI" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv624/lazarus/comms) +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "cQy" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"cQH" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "cQJ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/east, @@ -2557,42 +2288,34 @@ "cQR" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_jungle) -"cRn" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) +"cQW" = ( +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "cRs" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"cRx" = ( -/obj/structure/surface/table, -/obj/item/toy/deck, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"cRT" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "cSb" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/west_caves) -"cSd" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/mech_parts/part/gygax_armor{ - layer = 1 +"cSh" = ( +/obj/structure/surface/table/reinforced{ + dir = 4; + flipped = 1 }, -/turf/open/floor/plating{ - icon_state = "platebot" +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) +"cSC" = ( +/obj/structure/closet/radiation, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/lazarus/robotics) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "cSF" = ( /turf/open/floor, /area/lv624/lazarus/fitness) @@ -2606,69 +2329,33 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"cTA" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"cTB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Nexus Cargo Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "cUc" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) -"cUs" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"cUy" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/barber/west, /area/lv624/lazarus/fitness) -"cUU" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"cVg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen, +/area/lv624/lazarus/main_hall) "cVm" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"cVZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "bar" +"cVK" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/canteen) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "cWd" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -2693,13 +2380,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"cXr" = ( -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"cXc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/lv624/ground/caves/sand_temple) +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "cXL" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -2710,39 +2397,51 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"cYd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/turf/open/floor{ - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/corporate_dome) "cYh" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"cZd" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" +"cYs" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/baseballbat/metal, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"cYB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Female Dormitories"; + req_access_txt = "100" }, -/area/lv624/ground/barrens/west_barrens) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"cZe" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "cZD" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"dat" = ( -/obj/structure/platform_decoration{ - dir = 4 +"daj" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/repair_droid{ + layer = 2; + pixel_y = -10 }, -/turf/open/floor{ - icon_state = "dark" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/lazarus/engineering) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"daL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whitegreen/north, +/area/lv624/lazarus/main_hall) "dbt" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -5; @@ -2757,20 +2456,15 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/yggdrasil) -"dbx" = ( -/obj/structure/machinery/light/small, +"dbA" = ( +/obj/item/storage/toolbox/syndicate, +/obj/structure/surface/rack, /obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"dbS" = ( -/obj/item/device/flash, -/obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/flashbang{ - pixel_x = 7; - pixel_y = 2 - }, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"dbH" = ( /obj/structure/machinery/light/small{ dir = 1 }, @@ -2780,14 +2474,34 @@ name = "General Listening Channel"; pixel_y = 30 }, -/turf/open/floor{ - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "dbY" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"dcd" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"dcR" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"dee" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/medbay) "def" = ( /obj/structure/showcase{ color = "#95948B"; @@ -2819,27 +2533,28 @@ }, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"deN" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage) "deS" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/west, /area/lv624/ground/river/west_river) -"deV" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "deW" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"dfq" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Corporate Lobby APC" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"dfr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "dfv" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -2849,23 +2564,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"dfE" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"dfU" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"dfz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/lazarus/quart) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "dgj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -2882,11 +2586,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"dgH" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/central_barrens) "dgN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -2894,20 +2593,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"dhe" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "dhq" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/west_nexus_road) +"dhF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"dhK" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/sw_lz2) "dih" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) @@ -2916,43 +2616,46 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"diI" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"djy" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) +"diP" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz1) +"djj" = ( +/obj/structure/computerframe, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "djO" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_west_jungle) -"djR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "dkc" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"dkL" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "dkT" = ( /obj/item/storage/firstaid, /obj/structure/surface/rack, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"dlb" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"dlf" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "dlg" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -2961,6 +2664,17 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"dlr" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"dlL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dlM" = ( /turf/open/floor, /area/lv624/ground/caves/north_central_caves) @@ -2968,6 +2682,9 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"dnC" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) "dol" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, @@ -2976,6 +2693,14 @@ "doy" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/central_river) +"doA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "doB" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/meat/human{ @@ -2989,6 +2714,13 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"doK" = ( +/obj/structure/surface/table/reinforced{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "doY" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -3001,19 +2733,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"dqg" = ( -/obj/effect/spawner/random/powercell, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"dqk" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "dqo" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/quartstorage/outdoors) @@ -3053,20 +2772,6 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"dra" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -32 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/effect/spawner/random/powercell, -/obj/item/device/assembly/infra, -/obj/effect/spawner/random/powercell, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "drq" = ( /turf/closed/wall, /area/lv624/lazarus/yggdrasil) @@ -3076,22 +2781,11 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) -"dsx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"dsA" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) +"dsz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/whiteyellow/northwest, +/area/lv624/lazarus/corporate_dome) "dsB" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, @@ -3100,55 +2794,30 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/sand_temple) -"dsQ" = ( -/obj/structure/bookcase, -/obj/item/bananapeel, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"dsV" = ( -/obj/structure/surface/table, -/obj/item/poster, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "dtP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"duc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) +"dtT" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/pen/clicky, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "duq" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/jungle/west_jungle) -"duJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright{ - dir = 2; - layer = 2.9 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "duW" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"dvV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) +"dvk" = ( +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/medbay) +"dvE" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "dvY" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -3160,26 +2829,20 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"dwk" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" +"dwq" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_id = "Medbay" + }, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "dwv" = ( /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) -"dwE" = ( -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "dwF" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/r_wall, @@ -3191,6 +2854,18 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"dwM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "dxg" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -3200,51 +2875,25 @@ "dxi" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/east_jungle) -"dyq" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"dyy" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"dyI" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"dyX" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"dzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Corporate Dome"; - req_access_txt = "100" +"dxw" = ( +/obj/structure/machinery/still, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"dxz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dyN" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dzT" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -3252,29 +2901,12 @@ "dzU" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"dzZ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) "dAn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"dAo" = ( -/obj/structure/closet/athletic_mixed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "dAC" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -3283,21 +2915,14 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"dAK" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"dAZ" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/west_barrens) "dBl" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"dBm" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) "dBu" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/armory) @@ -3307,69 +2932,36 @@ "dCh" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/barrens/east_barrens) -"dCy" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"dCS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "dDj" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"dDD" = ( -/obj/structure/largecrate, -/turf/open/shuttle{ - icon_state = "floor4" +"dDu" = ( +/obj/structure/holohoop{ + dir = 1 }, -/area/lv624/lazarus/crashed_ship_containers) +/obj/structure/machinery/light, +/turf/open/floor/warnwhite, +/area/lv624/lazarus/fitness) +"dEh" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"dEi" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) "dEk" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) -"dEs" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/clothing/under/colonist, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"dEu" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"dEP" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 9; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) "dFu" = ( /obj/structure/fence, /obj/structure/machinery/door_control{ @@ -3394,34 +2986,18 @@ "dGm" = ( /turf/closed/wall, /area/lv624/lazarus/comms) -"dGO" = ( -/obj/item/clothing/under/chainshirt/hunter, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"dHa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, +"dGn" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, /area/lv624/lazarus/landing_zones/lz1) -"dHf" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "dHl" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"dHn" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "dHR" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, @@ -3440,35 +3016,17 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"dJz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"dKv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +"dJr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv624/ground/barrens/south_eastern_barrens) -"dKO" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" + dir = 4 }, -/area/lv624/lazarus/main_hall) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dLa" = ( /obj/item/tool/pickaxe/diamonddrill, /turf/open/gm/dirt, @@ -3482,6 +3040,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_west_jungle) +"dMp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 15 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dNd" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/tool/candle, @@ -3491,14 +3058,15 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"dNh" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/chapel) "dNi" = ( /turf/open/floor, /area/lv624/lazarus/research) +"dNq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "dNH" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, @@ -3513,13 +3081,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"dOq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/wy, -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "dOP" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -3532,13 +3093,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"dPu" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "dPz" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, @@ -3548,13 +3102,49 @@ /obj/effect/landmark/good_item, /turf/open/floor, /area/lv624/ground/barrens/containers) +"dRd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"dRt" = ( +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "dRv" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/landing_zones/lz2) +"dRS" = ( +/obj/item/stack/sheet/wood{ + amount = 2 + }, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"dRW" = ( +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 + }, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"dRX" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/glass/fertilizer{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "dSk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_east_jungle) +"dSL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) "dSU" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -3567,18 +3157,6 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"dTi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "dTw" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -3601,11 +3179,13 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"dTE" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"dTN" = ( +/obj/structure/device/broken_piano, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/ground/river/east_river) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "dUj" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -3614,19 +3194,15 @@ /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"dUp" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) "dUJ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/hop) +"dUK" = ( +/obj/structure/surface/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "dUT" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/lemon_lime{ @@ -3638,11 +3214,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"dVl" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/caves/sand_temple) "dVt" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, @@ -3655,6 +3226,25 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) +"dVI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/item/clothing/ears/earmuffs, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) +"dVQ" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "dWe" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 @@ -3668,33 +3258,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) -"dWP" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/hud/health, -/obj/effect/landmark/crap_item, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "dXc" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"dXF" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"dYn" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/engineering) "dYp" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -3705,6 +3272,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"dYN" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) +"dZg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "dZn" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -3721,51 +3299,40 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_tcomms_road) -"dZL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"dZT" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"ead" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"eaw" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/ointment, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"dZS" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"eab" = ( +/obj/item/hunting_trap, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"eap" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"eaS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 }, -/area/lv624/lazarus/hop) -"ebc" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "bar" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"eaH" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv624/lazarus/canteen) +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/obj/item/ammo_magazine/pistol/highpower, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"eaO" = ( +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/medbay) "ebl" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) @@ -3775,22 +3342,20 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"ebI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/robotics, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "ebX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"ecv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"ecR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "ecY" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -3803,78 +3368,67 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"edZ" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "eeU" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"efs" = ( -/obj/structure/surface/table, -/obj/item/clothing/glasses/sunglasses/aviator, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"eff" = ( +/obj/structure/machinery/light, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "efD" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"efI" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"egh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "egk" = ( /obj/item/prop/almayer/flight_recorder, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"egL" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) "egX" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"ehf" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grown/tomato, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) "eho" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"eic" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"eiq" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"ehL" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"eiB" = ( +/turf/open/floor/red/west, +/area/lv624/lazarus/security) "eiI" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"eiP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "eiX" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -3885,18 +3439,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ejY" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"ejR" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/jungle/west_jungle/ceiling) +"ekS" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "eld" = ( /obj/structure/girder, /turf/closed/shuttle{ @@ -3909,17 +3461,8 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"elQ" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +"ems" = ( +/turf/open/floor/podhatchfloor, /area/lv624/lazarus/comms) "emI" = ( /obj/structure/machinery/landinglight/ds1, @@ -3963,21 +3506,10 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"enN" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"enV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"eou" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "epb" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -3986,6 +3518,22 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) +"epK" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"epM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "eqc" = ( /obj/item/stack/sheet/metal{ amount = 30; @@ -3998,54 +3546,34 @@ /obj/structure/surface/rack, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"eqe" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"eqi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "equ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"eqz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "eqF" = ( /turf/closed/wall, /area/lv624/lazarus/engineering) -"eqW" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"err" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"erC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/processor, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "erK" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_jungle) "erP" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"esc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "esf" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -4068,6 +3596,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) +"eto" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "eue" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -4077,17 +3614,26 @@ "euq" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_east_jungle) -"euM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Kitchen APC" +"eus" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"euw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"evA" = ( +/obj/structure/sink{ + pixel_y = 30 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "evV" = ( /obj/structure/fence, /obj/structure/flora/jungle/vines/heavy, @@ -4097,40 +3643,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_tcomms_road) -"ewK" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"ewS" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "exc" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"exh" = ( -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "exi" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, @@ -4139,13 +3655,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"exQ" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "eyd" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 @@ -4167,35 +3676,17 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"ezR" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "ezX" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"eAM" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/mar40{ - pixel_y = -3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"eBH" = ( -/turf/open/shuttle{ - icon_state = "floor6" +"eBR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + dir = 2; + name = "\improper Medical Bay" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "eBT" = ( /obj/structure/bed/chair/wheelchair{ dir = 4 @@ -4203,6 +3694,10 @@ /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/corporate_dome) +"eCh" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) "eCk" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -4218,29 +3713,6 @@ }, /turf/open/gm/coast/north, /area/lv624/ground/caves/sand_temple) -"eCR" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) "eDp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -4257,14 +3729,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"eED" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) "eEL" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_2, @@ -4282,11 +3746,6 @@ }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/north_central_caves) -"eFH" = ( -/turf/open/floor{ - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) "eFJ" = ( /obj/structure/prop/brazier/torch, /turf/closed/wall/mineral/sandstone/runed, @@ -4313,50 +3772,41 @@ /obj/structure/closet/cabinet, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"eHj" = ( -/obj/structure/filingcabinet, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"eHP" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "eIm" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) +"eIn" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/mime, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "eJa" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"eJc" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/tool/extinguisher, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"eJw" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "eJG" = ( /obj/structure/flora/jungle/vines/light_3, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"eKr" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "eKD" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"eKW" = ( -/turf/open/floor{ - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) +"eKM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "eLl" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, @@ -4366,70 +3816,55 @@ /obj/item/tool/pickaxe/hammer, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"eLP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"eLZ" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"eMk" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "wood" +"eMr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/lv624/lazarus/hop) +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"eMV" = ( +/obj/structure/holohoop, +/turf/open/floor/warnwhite/north, +/area/lv624/lazarus/fitness) +"eNa" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "eNn" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"eOd" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) "eOn" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"eOy" = ( -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"eOA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/robotics) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "eOG" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"eOU" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) +"eOL" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/taperecorder, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "ePq" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_central_jungle) +"ePt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "eQJ" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -4440,6 +3875,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) +"eQZ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "eRc" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 6; @@ -4450,6 +3890,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"eRD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "eRG" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -4470,24 +3916,30 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/barrens/west_barrens) -"eSL" = ( -/obj/structure/largecrate/random, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"eSW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) +"eSq" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/east_river) +"eSx" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) "eSY" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"eTi" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "eTx" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed, @@ -4503,20 +3955,28 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"eTP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Chapel"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" +"eTZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"eUb" = ( +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"eUj" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/area/lv624/lazarus/chapel) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "eUm" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) +"eUr" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/sand_temple) "eUI" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) @@ -4524,31 +3984,16 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"eUZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "eVg" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"eVE" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"eWD" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, +"eWM" = ( +/turf/open/floor/plating/warnplate/west, /area/lv624/lazarus/engineering) "eWP" = ( /obj/structure/flora/bush/ausbushes/ausbush, @@ -4578,60 +4023,41 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"eXZ" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "eYe" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/west_caves) -"eYJ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"eYO" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "eYT" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/gbcorner/south_west, /area/lv624/lazarus/yggdrasil) -"eZx" = ( -/obj/structure/bed/chair{ - dir = 3 - }, -/turf/open/gm/dirt, -/area/lv624/ground/barrens/north_east_barrens) -"faf" = ( -/obj/structure/surface/table, -/obj/item/handset, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, +"eYU" = ( +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/purple/northwest, /area/lv624/lazarus/sleep_female) -"fam" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research APC"; - pixel_y = 30; - start_charge = 0 +"faa" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/surface/table, -/obj/item/clothing/accessory/armband/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/lv624/lazarus/research) -"faz" = ( -/turf/open/floor{ - icon_state = "podhatchfloor" +/obj/item/stack/sheet/animalhide/xeno{ + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" }, -/area/lv624/lazarus/comms) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "faD" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -4639,33 +4065,36 @@ "faY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/south_central_jungle) -"faZ" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"fci" = ( -/obj/structure/surface/table/reinforced{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +"fbP" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/area/lv624/ground/barrens/central_barrens) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"fcB" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/ground/river/central_river) "fcF" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) +"fcI" = ( +/obj/structure/target/syndicate, +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "fcJ" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_tcomms_road) +"fdf" = ( +/obj/structure/closet/coffin, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "fds" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) @@ -4673,44 +4102,43 @@ /obj/structure/kitchenspike, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) +"fek" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/south_west_caves) "fem" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) -"feC" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"feD" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) -"ffB" = ( -/obj/item/clothing/suit/storage/militia/brace, -/turf/open/shuttle{ - icon_state = "floor4" +"fep" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "ffS" = ( /obj/structure/ore_box, /turf/open/floor, /area/lv624/ground/barrens/containers) -"fgo" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"fgp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "fgt" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) +"fgE" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "fgV" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 @@ -4721,44 +4149,34 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"fhn" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/main_hall) "fhu" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"fhS" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) "fhU" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"fiW" = ( +"fiG" = ( +/obj/structure/fence, +/turf/open/floor/warning/northeast, +/area/lv624/ground/barrens/containers) +"fiO" = ( /obj/structure/surface/table, -/obj/item/storage/firstaid, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "fjh" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"fji" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/item/clothing/under/colonist/clf, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "fjo" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/river, @@ -4775,12 +4193,22 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"fkP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/robotics, -/turf/open/floor/plating{ - icon_state = "platebot" +"fkn" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/area/lv624/lazarus/robotics) +/obj/item/device/flashlight, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "flc" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, @@ -4788,6 +4216,12 @@ "flt" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/north_east_barrens) +"fme" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fmk" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, @@ -4812,6 +4246,12 @@ "fnn" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/north_central_caves) +"fnF" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "fnO" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, @@ -4821,6 +4261,11 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"fnR" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/turf/open/floor/carpet/bcarpet01, +/area/lv624/ground/caves/north_central_caves) "fnX" = ( /turf/closed/wall, /area/lv624/lazarus/fitness) @@ -4834,11 +4279,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"fow" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "foA" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) @@ -4846,16 +4286,18 @@ /obj/item/device/analyzer, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"fpo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) +"foP" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/hud/health, +/obj/effect/landmark/crap_item, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"fpv" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "fpz" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -4864,17 +4306,44 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) +"fql" = ( +/obj/structure/closet/coffin{ + density = 0; + icon_state = "coffin_open"; + opened = 1 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"fqG" = ( +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "fqS" = ( /turf/open/gm/coast/north, /area/lv624/ground/jungle/west_jungle) -"fro" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" +"fqW" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/structure/machinery/microwave{ + pixel_x = 2; + pixel_y = 3 }, -/area/lv624/ground/river/central_river) +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"frA" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"frH" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "frJ" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/jungle/planttop1, @@ -4892,60 +4361,57 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/sand_temple) -"fsB" = ( +"fsA" = ( /obj/structure/machinery/shower{ - dir = 8 - }, -/obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" + dir = 4 }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/toilet) "fsE" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"ftj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/effect/spawner/random/tool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"ftF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" +"ftG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/lv624/lazarus/canteen) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "fuq" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"fuJ" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "fuS" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"fvm" = ( -/obj/structure/disposalpipe/broken{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "fvJ" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/quartstorage/outdoors) +"fwe" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_y = -30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"fwl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 9 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "fxs" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/vault, @@ -4953,11 +4419,35 @@ "fxy" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"fxz" = ( +/obj/item/storage/box/beakers, +/obj/structure/surface/table, +/obj/structure/sign/safety/biohazard{ + pixel_x = -18 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "fxB" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grassbeach/east, /area/lv624/lazarus/yggdrasil) +"fxD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"fxX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "fya" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -4972,54 +4462,100 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_tcomms_road) +"fyz" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/power/apc/power/north{ + name = "Kitchen APC" + }, +/obj/effect/landmark/good_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "fzi" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"fAM" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) -"fBI" = ( +"fzs" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/chefhat, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/tool/kitchen/rollingpin, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"fzu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"fzF" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"fzI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"fAM" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) +"fBH" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) +"fBI" = ( /obj/item/tool/warning_cone{ pixel_x = -20 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"fBL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/bronze, -/obj/item/storage/donut_box, -/turf/open/floor{ - dir = 8; - icon_state = "red" +"fBM" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" }, -/area/lv624/lazarus/security) +/turf/open/floor/white, +/area/lv624/lazarus/research) "fBN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"fBS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"fCg" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "fCL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) +"fCP" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "fCQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/jungle/west_jungle) @@ -5027,23 +4563,10 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"fDI" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"fDM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) +"fDL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "fEn" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, @@ -5053,10 +4576,19 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"fEH" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "fFc" = ( /obj/item/tool/warning_cone, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"fFh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "fFD" = ( /obj/structure/cargo_container/ferret/left, /turf/open/floor, @@ -5067,37 +4599,17 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"fGc" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"fGy" = ( -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "fGC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"fHs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) +"fGY" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "fHE" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/shotgun/slugs, @@ -5111,12 +4623,9 @@ "fHW" = ( /turf/closed/wall, /area/lv624/lazarus/sleep_female) -"fIj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) +"fIh" = ( +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) "fIk" = ( /obj/structure/lz_sign/lazarus_sign{ density = 0 @@ -5134,47 +4643,35 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"fIy" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"fIJ" = ( -/obj/structure/showcase{ - desc = "A stand with a plastic display of some kind of weird machine."; - icon_state = "coinpress0" - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +"fJh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"fJy" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/lv624/lazarus/main_hall) -"fJl" = ( -/obj/effect/landmark/crap_item, -/turf/open/shuttle{ - icon_state = "floor4" +/obj/effect/glowshroom, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "fJz" = ( /mob/living/simple_animal/bat, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"fJK" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/platebot, +/area/lv624/ground/barrens/east_barrens/ceiling) "fJO" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/barrens/west_barrens) -"fKt" = ( -/obj/structure/surface/table, -/obj/structure/machinery/processor, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) "fKG" = ( /obj/item/weapon/harpoon/yautja{ anchored = 1; @@ -5205,18 +4702,6 @@ "fKW" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"fLi" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/scalpel{ - pixel_y = 12 - }, -/obj/structure/machinery/light, -/obj/item/clothing/suit/storage/labcoat/researcher, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "fLD" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -5226,10 +4711,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"fLG" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) "fLJ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/river/central_river) +"fLU" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) "fMc" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -5239,46 +4731,38 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"fMg" = ( -/obj/structure/inflatable, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"fMs" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/central_barrens) -"fME" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"fMk" = ( +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) +"fMr" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"fMw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"fML" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/chair{ + dir = 4 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fMN" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"fNf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Director's Office" - }, -/turf/open/floor{ - icon_state = "wood" +"fMV" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/hop) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "fND" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -5308,6 +4792,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"fOQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "fOX" = ( /obj/structure/prop/rock, /turf/open/gm/dirt, @@ -5319,21 +4813,6 @@ "fPu" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) -"fPx" = ( -/obj/structure/closet/coffin{ - density = 0; - icon_state = "coffin_open"; - opened = 1 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "fQs" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass2, @@ -5347,17 +4826,18 @@ "fQL" = ( /turf/open/gm/coast/east, /area/lv624/ground/river/east_river) -"fQX" = ( +"fRF" = ( /obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/lazarus/quart) +"fRT" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"fRU" = ( +/obj/structure/bed/chair, +/turf/open/gm/dirt, +/area/lv624/ground/barrens/north_east_barrens) "fSd" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -5366,19 +4846,24 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) -"fTc" = ( +"fTM" = ( +/obj/structure/largecrate, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"fTZ" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, +/area/lv624/ground/jungle/west_jungle) +"fUh" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +/obj/structure/coatrack, +/obj/item/clothing/head/soft/sec/corp{ + pixel_y = 11; + pixel_x = -4 }, -/area/lv624/lazarus/comms) -"fTZ" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, -/area/lv624/ground/jungle/west_jungle) +/turf/open/floor/whiteyellow/southeast, +/area/lv624/lazarus/corporate_dome) "fUj" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/river, @@ -5394,6 +4879,17 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) +"fUT" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"fVf" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "fVB" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -5402,12 +4898,20 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"fWa" = ( +/obj/item/clothing/glasses/sunglasses/aviator, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "fWf" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"fWr" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) "fWJ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_central_jungle) @@ -5415,19 +4919,24 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"fXo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/computer/telecomms/traffic{ + layer = 3.1; + pixel_y = 16 + }, +/obj/structure/bed/chair/office/light{ + dir = 1; + layer = 3.2 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "fXL" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/west_river) -"fXZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "fZl" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, @@ -5435,15 +4944,6 @@ "fZy" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_west_jungle) -"fZS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - dir = 2; - name = "\improper Medical Bay" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "fZT" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -5456,18 +4956,32 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"fZZ" = ( +/obj/structure/safe/floor{ + name = "safe"; + spawnkey = 0 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "gav" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"gaN" = ( -/obj/vehicle/powerloader/jd{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor4" +"gaD" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"gaH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/lv624/lazarus/crashed_ship_containers) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) +"gaY" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "gbo" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, @@ -5475,12 +4989,21 @@ "gbt" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) +"gbz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "gbE" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"gbL" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/fries, +/turf/open/floor/carpet/bcarpet07, +/area/lv624/ground/caves/north_central_caves) "gbP" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/platform_decoration/mineral/sandstone/runed{ @@ -5492,38 +5015,9 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) -"gco" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Mining Storage"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"gcP" = ( -/obj/item/weapon/sword{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) +"gcj" = ( +/turf/open/floor/warnwhite/southeast, +/area/lv624/lazarus/fitness) "gdw" = ( /obj/structure/sign/safety/high_voltage{ pixel_x = 7; @@ -5531,34 +5025,39 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"gdV" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"geq" = ( -/obj/structure/bed/chair/dropship/pilot, -/turf/open/shuttle{ - icon_state = "floor4" +"geN" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray, +/obj/item/stack/medical/ointment, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) +"geP" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) +"gfn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Male Dormitories"; + req_access_txt = "100" }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"gfq" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "gfx" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ggM" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) +"gfC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"ggi" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/lv624/ground/barrens/south_eastern_barrens) "ghf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -5573,47 +5072,35 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ghp" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "ghE" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"ghM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/landmark/crap_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "giB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"giK" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "giL" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"giP" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) -"giS" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Atmospherics Processing APC" - }, -/turf/open/gm/grass/grass2, -/area/lv624/lazarus/yggdrasil) "giX" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper LZ2 Access"; @@ -5635,44 +5122,24 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/research) -"gkd" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"gkv" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"gkV" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "asteroidplating" - }, -/area/lv624/ground/caves/north_central_caves) +"gjP" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) +"gkk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "glt" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"glG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) "glX" = ( /turf/closed/wall, /area/lv624/ground/barrens/east_barrens/ceiling) +"gmF" = ( +/turf/open/floor/warnwhite/northeast, +/area/lv624/lazarus/fitness) "gmI" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) @@ -5682,6 +5149,14 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"gna" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/fancy/cigar/matchbook/wy_gold, +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) "gnc" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, @@ -5704,22 +5179,19 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"goG" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"gpu" = ( -/obj/structure/machinery/status_display{ - pixel_y = -32 +"goX" = ( +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) +"gpk" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 }, -/area/lv624/lazarus/quart) +/obj/structure/platform, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "gpD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_jungle) @@ -5727,21 +5199,28 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/medbay) +"gpH" = ( +/obj/item/tool/crowbar, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "gqn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) +"gqM" = ( +/obj/item/reagent_container/food/snacks/grown/banana, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"grq" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) "gru" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) -"grv" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/engineering) "grH" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -5749,58 +5228,54 @@ "grT" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/caves/north_central_caves) -"gsC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"gti" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"grU" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"gst" = ( +/turf/open/floor/plating/asteroidwarning/northeast, +/area/lv624/lazarus/landing_zones/lz2) +"gsT" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"gtq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"gtS" = ( +/obj/item/stack/rods, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"guh" = ( +/turf/open/floor/plating/warnplate, /area/lv624/ground/barrens/central_barrens) -"gtZ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"guB" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/window/reinforced{ +"gus" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"guG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Storage Room" }, -/area/lv624/lazarus/quart) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "guV" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"gvM" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) +"gvH" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/central_barrens) "gwi" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/grass_overlay/grass1{ @@ -5816,19 +5291,13 @@ /obj/structure/closet/crate, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"gwT" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"gwU" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"gwJ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "gxa" = ( /obj/structure/prop/dam/truck/mining, /turf/open/gm/dirt, @@ -5839,20 +5308,17 @@ }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"gxv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor{ - dir = 9; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "gxU" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"gyb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "gye" = ( /turf/closed/wall, /area/lv624/lazarus/sleep_male) @@ -5861,25 +5327,72 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/gm/dirt, /area/lv624/landing/console2) +"gzu" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/gm/dirt/desert1, +/area/lv624/ground/river/east_river) "gzJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"gzL" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"gAe" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "gAk" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"gAs" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/south_central_jungle) -"gBA" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/effect/landmark/lv624/fog_blocker, +"gAm" = ( +/obj/structure/surface/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"gAs" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/south_central_jungle) +"gAD" = ( +/obj/structure/closet/athletic_mixed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"gAL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"gAX" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/aviator, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"gBA" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) "gBF" = ( @@ -5894,12 +5407,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/lazarus/landing_zones/lz2) -"gCO" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "gDf" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, /turf/open/auto_turf/strata_grass/layer1, @@ -5931,13 +5438,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/west_river) -"gEq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Corporate Lobby APC" - }, -/turf/open/floor/wood, -/area/lv624/lazarus/hop) "gEy" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/south, @@ -5955,20 +5455,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"gFa" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "gFd" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -5979,42 +5465,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"gFf" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "gFi" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"gFu" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Nexus Dome Director's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/hop) "gFN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"gGb" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"gGi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) "gGl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/sand_temple) @@ -6022,6 +5487,9 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) +"gGw" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/central_barrens) "gGO" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/east_jungle) @@ -6032,19 +5500,21 @@ "gGS" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"gHd" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "gHE" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"gIq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" +"gHU" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "gIU" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/west_barrens) @@ -6057,23 +5527,47 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"gJb" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "gJe" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"gJk" = ( -/obj/item/reagent_container/food/snacks/grown/banana, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"gJQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/lv624/lazarus/kitchen) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) "gKb" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/west_nexus_road) +"gKi" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Chapel APC" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"gKt" = ( +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/main_hall) +"gKG" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/central_barrens) "gKH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -6096,36 +5590,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"gLu" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"gLF" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/plantbgone{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"gMm" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) +"gMp" = ( +/obj/structure/bed/alien, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"gMr" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "gMz" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"gND" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) "gNJ" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -6147,30 +5633,36 @@ "gOD" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) +"gOK" = ( +/obj/structure/surface/table, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"gOM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "gPf" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/lazarus/quartstorage/outdoors) -"gPl" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "gPz" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"gPV" = ( -/obj/structure/surface/table, -/obj/item/folder, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "gPX" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -6191,22 +5683,22 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"gQJ" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor{ - icon_state = "white" +"gQx" = ( +/obj/item/hunting_trap{ + desc = "A bizarre alien device used for trapping and killing prey."; + name = "Alien Mine" }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "gQT" = ( /obj/structure/barricade/sandbags, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"gRh" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "gRy" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/river, @@ -6224,44 +5716,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) -"gSL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Unisex Bathrooms APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"gSP" = ( -/obj/item/handset{ - desc = "A model of an ancient Earth communication device."; - force = 8 - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"gTn" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "gTy" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -6275,6 +5729,21 @@ "gTH" = ( /turf/open/gm/dirt, /area/lv624/ground/river/east_river) +"gTW" = ( +/obj/structure/girder, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"gUe" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) "gUf" = ( /turf/open/gm/coast/west, /area/lv624/ground/barrens/east_barrens) @@ -6282,43 +5751,37 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"gUm" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "gUt" = ( /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/north_central_caves) -"gUy" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +"gUv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"gUJ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/corporate_dome) +/obj/item/clothing/mask/gas/yautja/damaged, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "gUP" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"gVj" = ( -/obj/item/tool/shovel, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) +"gVg" = ( +/turf/open/gm/dirtgrassborder/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "gVy" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/flamer, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"gVD" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) "gVK" = ( /turf/open/floor, /area/lv624/lazarus/quartstorage) @@ -6330,17 +5793,6 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"gWq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "gWz" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -6358,13 +5810,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"gXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) "gXn" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/north, @@ -6374,20 +5819,14 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"gXB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"gYa" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor{ - icon_state = "whitebluefull" +"gXM" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/medbay) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "gYp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -6402,21 +5841,34 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"gYO" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "gZf" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"gZh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"gZx" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) "hai" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) -"hao" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) "hap" = ( /obj/item/tool/pickaxe/jackhammer, /obj/structure/prop/rock, @@ -6436,13 +5888,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"haS" = ( -/obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"haR" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "haW" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/security) @@ -6459,62 +5908,33 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hbq" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"hbu" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quart) -"hbG" = ( -/obj/structure/surface/table/reinforced{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "hbZ" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"hca" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/shotgun/full, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = -6 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "hcb" = ( /turf/open/gm/river, /area/lv624/ground/river/west_river) +"hcT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "hcX" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"hdx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hdD" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/north_east_jungle) @@ -6543,10 +5963,20 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) +"heK" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Robotics Lab APC" + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "heP" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"hfd" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "hfp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/lazarus/quartstorage/outdoors) @@ -6562,27 +5992,26 @@ }, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"hfR" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) +"hfL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/emeraldgreen, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "hgd" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) +"hgw" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "hgx" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"hgy" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/west_barrens) "hhd" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/floor, @@ -6594,12 +6023,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/colony/south_nexus_road) -"hib" = ( -/obj/structure/kitchenspike, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/caves/north_central_caves) +"hid" = ( +/obj/structure/closet, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "hiv" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/gm/dirt, @@ -6620,29 +6047,29 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) +"hjS" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hkv" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/west_barrens) -"hlZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"hlv" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv624/lazarus/comms) +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "hma" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hmu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) +"hmr" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "hmC" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -6653,15 +6080,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hmT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "hnc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -6676,88 +6094,67 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"hns" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/west_caves) "hnA" = ( /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 }, /turf/open/gm/dirt, /area/lv624/ground/jungle/south_west_jungle/ceiling) +"hnJ" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "hnR" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"hoi" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"hot" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"hnZ" = ( +/obj/structure/machinery/door/window/westleft, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "how" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"hoB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "hoD" = ( /obj/effect/landmark/crap_item, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"hoH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "hoN" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) +"hoP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "hoU" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hpo" = ( -/obj/structure/surface/table, -/obj/item/stack/medical/bruise_pack{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/surgical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/storage/belt/medical/full, -/obj/item/reagent_container/hypospray, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"hpv" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) +"hpl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "hpG" = ( /obj/structure/flora/jungle/treeblocker, /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"hpN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/engineering) "hpU" = ( /obj/structure/bed/chair{ dir = 8 @@ -6794,27 +6191,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/caves/sand_temple) -"hqo" = ( -/obj/structure/surface/table, -/obj/item/device/mmi/radio_enabled, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"hqZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"hre" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) "hrs" = ( /obj/structure/surface/table/reinforced{ dir = 1; @@ -6826,53 +6202,83 @@ /obj/effect/landmark/crap_item, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"hrM" = ( -/obj/structure/dispenser, +"hsc" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/sandstone/runed, +/area/lv624/ground/caves/sand_temple) +"hsh" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"hsn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder, +/obj/item/device/assembly/signaller, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"hsI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Nexus Cargo Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"hsS" = ( +/obj/structure/bed, /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" + pixel_x = -30 }, -/area/lv624/lazarus/quart) -"hsc" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/sandstone/runed, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "hta" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"htw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100" +"htc" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor{ - icon_state = "bar" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/bar, /area/lv624/lazarus/canteen) "htX" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"hul" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "dark" +"hue" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" }, -/area/lv624/lazarus/engineering) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"huh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100" + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "huu" = ( /obj/structure/prop/ice_colony/surveying_device{ dir = 8 @@ -6890,6 +6296,18 @@ /obj/item/tool/warning_cone, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"hwM" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"hwZ" = ( +/obj/structure/closet, +/obj/item/weapon/baseballbat, +/obj/item/clothing/head/beret/jan, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "hxk" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -6901,26 +6319,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"hxu" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 +"hxQ" = ( +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 4 }, -/obj/item/stack/sheet/metal{ - amount = 30 +/obj/effect/decal/cleanable/blood/tracks/footprints{ + dir = 8 + }, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz1) +"hxW" = ( +/obj/item/stock_parts/matter_bin/super, +/obj/structure/surface/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "vault" + health = 80 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"hyS" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"hyC" = ( +/obj/structure/largecrate/random, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) +"hyI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/north{ + name = "Geothermal APC" }, -/area/lv624/ground/barrens/west_barrens) +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"hyP" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "hyX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -6936,32 +6371,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"hzK" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"hzU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"hzW" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +"hzA" = ( +/obj/item/tool/pickaxe/drill, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "hAo" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, @@ -6981,25 +6394,10 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"hCr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Fitness APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"hCu" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"hBQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "hCG" = ( /obj/item/device/radio/off{ frequency = 1469; @@ -7015,22 +6413,13 @@ "hDv" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_west_jungle) -"hDw" = ( -/obj/structure/bed/stool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"hDR" = ( +/obj/structure/target, +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "hEm" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hydroponics) -"hEH" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "hFe" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -7048,19 +6437,20 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"hGa" = ( -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40/extended, -/obj/item/ammo_magazine/rifle/mar40/extended, -/turf/open/floor{ - icon_state = "dark" +"hFG" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) +"hFO" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"hGf" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "hGo" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/item/bananapeel, @@ -7076,21 +6466,9 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"hHr" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"hHA" = ( -/obj/structure/noticeboard{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"hHs" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "hHP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/river/east_river) @@ -7098,22 +6476,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hHS" = ( -/obj/item/clothing/glasses/sunglasses/aviator, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"hHX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "hIa" = ( /obj/effect/landmark/crap_item, /obj/structure/fence, @@ -7128,42 +6490,14 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) -"hIv" = ( -/obj/structure/surface/table, -/obj/item/tool/pen{ - layer = 3.1 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"hIU" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "hJh" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"hJu" = ( -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"hJI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) +"hJl" = ( +/obj/structure/inflatable, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "hKF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -7177,37 +6511,15 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/caves/sand_temple) -"hLD" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/toxin, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"hMk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"hMq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"hMO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - icon_state = "wood" +"hMy" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/hop) +/obj/structure/platform/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "hMS" = ( /obj/item/trash/cigbutt{ pixel_x = -9; @@ -7226,13 +6538,6 @@ /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) -"hNP" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "hNY" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -7251,17 +6556,6 @@ "hOB" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/north_central_caves) -"hOC" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "hOD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -7272,114 +6566,38 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/lazarus/landing_zones/lz2) -"hOP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) +"hON" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/ground/caves/north_central_caves) "hPf" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"hPv" = ( -/obj/item/frame/apc, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "hPw" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"hQh" = ( -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) -"hQC" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"hRc" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "hRq" = ( /turf/open/gm/coast/west, /area/lv624/ground/jungle/west_jungle) -"hRv" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"hRA" = ( +"hSv" = ( +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) +"hSN" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) +"hSU" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) -"hSv" = ( -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) "hSV" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"hTy" = ( -/obj/structure/surface/table, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"hTJ" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"hTM" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "hUg" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -7392,78 +6610,35 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"hVk" = ( -/turf/open/gm/coast/south, -/area/lv624/ground/caves/north_central_caves) -"hVH" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 +"hVf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"hVg" = ( +/obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"hVL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) -"hVU" = ( -/obj/structure/bed/chair/office/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"hVk" = ( +/turf/open/gm/coast/south, +/area/lv624/ground/caves/north_central_caves) +"hVs" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"hWl" = ( -/obj/structure/machinery/door_control{ - id = "garage_lv"; - name = "Garage Shutters"; - pixel_y = -28 - }, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "hWv" = ( /obj/structure/flora/tree/jungle/bigtreeTR, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"hWA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Engineering Dome SMES"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/engineering) -"hXC" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"hWy" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/south_west_caves) "hXE" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -7480,51 +6655,44 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"hZT" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "iaO" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iaU" = ( -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"ibc" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" +"ibF" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "icM" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"icO" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating{ - icon_state = "platebotc" +"idA" = ( +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/main_hall) +"idF" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Cafeteria APC" }, -/area/lv624/lazarus/quartstorage/outdoors) -"ier" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/wy_chips/pepper, -/turf/open/floor{ - icon_state = "bluecorner" +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"idP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 }, -/area/lv624/lazarus/sleep_male) -"ies" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/folder/yellow{ + pixel_y = 4 }, -/area/lv624/lazarus/quartstorage) +/obj/item/folder/red, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "iev" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_east, @@ -7537,6 +6705,9 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/central_jungle) +"ifd" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "ifo" = ( /obj/item/weapon/unathiknife{ desc = "A curved blade made of a strange material. It looks both old and very sharp."; @@ -7550,6 +6721,9 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) +"ifz" = ( +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "ifT" = ( /turf/closed/wall, /area/lv624/lazarus/research) @@ -7572,40 +6746,10 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"igK" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/box/matches, -/obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"igY" = ( -/obj/structure/inflatable/door, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "ihp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"ihU" = ( -/obj/item/stock_parts/matter_bin/super, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) "iic" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /obj/effect/decal/grass_overlay/grass1/inner{ @@ -7613,16 +6757,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"iiE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/device/flashlight{ - pixel_y = 5 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"iii" = ( +/turf/open/floor/white, +/area/lv624/lazarus/fitness) +"iiu" = ( +/obj/structure/computerframe, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/comms) +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"ijS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/tool/extinguisher, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "ijT" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/north_east, @@ -7630,48 +6779,41 @@ "ijV" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_female) -"ijW" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) +"ikc" = ( +/obj/structure/grille, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "ike" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_central_jungle) -"ikn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "ilb" = ( /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/north_central_caves) -"ilq" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - icon_state = "warning" +"ilu" = ( +/turf/open/floor/whiteyellow/southwest, +/area/lv624/lazarus/corporate_dome) +"ilw" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "ilx" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"ilF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ilG" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -8; @@ -7679,34 +6821,16 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"ilH" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"ilT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grilledcheese, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "imd" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"imp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "imF" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 @@ -7719,52 +6843,34 @@ "inc" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"inE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 +"inp" = ( +/obj/structure/machinery/bot/mulebot{ + auto_pickup = 0; + auto_return = 0; + health = 1; + on = 0 }, -/turf/open/floor{ - icon_state = "cult" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"inA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100" }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "ioa" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage) -"iof" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "Hydroponics" - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"iol" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"ioC" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"ioM" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"iox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ioW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/mineral/sandstone/runed, @@ -7777,14 +6883,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"ipF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"ipT" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "iqz" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_nexus_road) @@ -7794,20 +6896,41 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) +"irr" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "ism" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/central_jungle) -"isn" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" - }, -/area/lv624/lazarus/landing_zones/lz1) +"isx" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/machinery/light, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"isz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "isJ" = ( /obj/vehicle/train/cargo/trolley, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"isZ" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"itb" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) "itw" = ( /obj/effect/decal/mecha_wreckage/ripley{ anchored = 1; @@ -7815,50 +6938,13 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"itX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"iul" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"iuf" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "ium" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"iup" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_2{ - pixel_y = -22 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"iuv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "iuQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -7867,16 +6953,17 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"ivj" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"iuV" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"ivT" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/comms) +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "iwh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_central_jungle) @@ -7885,50 +6972,24 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) -"iwz" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"iwH" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "iwJ" = ( /obj/structure/machinery/conveyor_switch, /turf/open/floor, /area/lv624/lazarus/quartstorage) +"iwL" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/canteen) "ixg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_jungle) "ixp" = ( /turf/closed/wall, /area/lv624/lazarus/canteen) -"ixN" = ( -/obj/structure/surface/table, -/obj/item/ashtray/plastic, -/obj/item/stack/flag/red, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"iya" = ( -/turf/open/floor{ - icon_state = "asteroidwarning"; - dir = 8 - }, -/area/lv624/ground/colony/telecomm/sw_lz2) +"iyd" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "iyu" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, @@ -7942,6 +7003,13 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_central_jungle) +"izv" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"izV" = ( +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "izW" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -7950,13 +7018,6 @@ "izY" = ( /turf/closed/wall, /area/lv624/lazarus/kitchen) -"iAd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) "iAI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/caves/north_central_caves) @@ -7966,45 +7027,21 @@ "iBy" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/caves/sand_temple) +"iCg" = ( +/obj/item/tool/pickaxe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "iCu" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"iCW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/random/tool, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"iDu" = ( -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"iDz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"iEc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +"iEf" = ( +/obj/item/storage/medicomp/full, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "iEk" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -8033,29 +7070,40 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"iED" = ( -/obj/structure/flora/jungle/vines/light_1, -/turf/open/floor{ - dir = 5; - icon_state = "warning" +"iEz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "iFa" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"iFs" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"iFN" = ( +/obj/structure/surface/table, +/obj/item/stack/rods{ + amount = 40 }, -/area/lv624/ground/river/central_river) +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "iGy" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) +"iGE" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "garage_lv"; + name = "\improper Garage" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "iGU" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -8066,18 +7114,21 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"iHG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Mining Storage"; + req_access_txt = "100" + }, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "iHI" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"iIc" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/south_west_jungle) "iIj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -8095,32 +7146,39 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"iIY" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"iJd" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/obj/structure/machinery/light, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "iJq" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/west_river) +"iKW" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "iLy" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"iLL" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Security Office APC" - }, -/turf/open/floor{ - icon_state = "red" - }, -/area/lv624/lazarus/security) -"iLM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "iLN" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, @@ -8135,30 +7193,32 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/r_wall, /area/lv624/lazarus/corporate_dome) -"iMe" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "iMk" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"iMY" = ( +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"iNd" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/plating/asteroidwarning/east, +/area/lv624/lazarus/landing_zones/lz2) "iNC" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"iNH" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"iNR" = ( +/obj/structure/surface/table, +/obj/item/folder, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"iNU" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "iNV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /obj/item/tool/hatchet{ @@ -8173,6 +7233,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"iOA" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage) "iPd" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; @@ -8182,13 +7246,6 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"iPI" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "iPU" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -8196,23 +7253,38 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) +"iQk" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "iQp" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"iRw" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" +"iQM" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) +"iQP" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/lv624/lazarus/main_hall) -"iRB" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"iSd" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/landmark/monkey_spawn, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "iSf" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -8221,47 +7293,10 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"iSz" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"iTR" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Secure Vault APC"; - pixel_y = 30; - start_charge = 200 - }, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"iTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/matchbook/wy_gold, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"iUb" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) +"iSN" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "iUj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/south_east_jungle) @@ -8278,14 +7313,22 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) -"iWO" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" +"iWC" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"iWK" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate, /area/lv624/ground/river/central_river) +"iXe" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "iXv" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_west_caves) @@ -8293,17 +7336,10 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"iXK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) +"iXM" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "iXP" = ( /obj/item/stack/sheet/wood{ amount = 50 @@ -8314,15 +7350,6 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"iYj" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/colony/telecomm/cargo) "iYx" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/r_wall, @@ -8331,40 +7358,44 @@ /obj/effect/spawner/random/tech_supply, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"iYU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"iZd" = ( +/obj/structure/machinery/sensortower, +/turf/open/floor/bot/north, +/area/lv624/ground/caves/north_central_caves) "iZU" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"jam" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "jaB" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/barrens/north_east_barrens) +"jaR" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "jbc" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) -"jbu" = ( -/obj/structure/target/syndicate, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"jch" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +"jbI" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz1) +"jcb" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/caves/west_caves) "jcl" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, @@ -8381,16 +7412,6 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"jdz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "jdA" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "Nexus Landing Zone" @@ -8401,6 +7422,19 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"jdT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"jej" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "jeG" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 @@ -8418,13 +7452,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"jfp" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "jfv" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /turf/open/floor/wood, @@ -8436,33 +7463,26 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"jfM" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"jfY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 29 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"jgn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_id = "Medbay" +"jfR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Storage Dome"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/white, +/area/lv624/lazarus/quartstorage) +"jfU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/medbay) +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "jgv" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -8485,18 +7505,19 @@ "jij" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz1) -"jjf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"jjt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"jiD" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"jiF" = ( +/obj/structure/largecrate, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"jiP" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/hotdog, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "jkb" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/river, @@ -8508,25 +7529,34 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"jkQ" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 +"jkr" = ( +/obj/structure/surface/table, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"jkO" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_full" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"jkP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = -2; + pixel_y = 6 }, -/area/lv624/lazarus/engineering) -"jkS" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/stack/sheet/metal{ + amount = 5; + pixel_x = 4; + pixel_y = 4 }, -/area/lv624/ground/colony/telecomm/cargo) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "jle" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 6; @@ -8544,14 +7574,6 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"jlw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "jlB" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, @@ -8572,30 +7594,43 @@ }, /turf/closed/wall, /area/lv624/lazarus/kitchen) -"jnw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) "jnQ" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_east_jungle) -"jon" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) +"jov" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "joE" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_west_jungle) +"joX" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"jpg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "jpQ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -8606,6 +7641,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"jqb" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "jqh" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -8619,27 +7661,34 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) +"jqz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/adv, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) +"jqG" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/central_jungle) "jrx" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"jry" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Storage Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/quartstorage) +"jrL" = ( +/turf/open/floor/whiteyellowcorner, +/area/lv624/lazarus/main_hall) "jrM" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"jrS" = ( +/obj/structure/sign/kiddieplaque{ + pixel_x = 32 + }, +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "jsl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 @@ -8654,70 +7703,80 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"jsG" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"jth" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/shotgun/full, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -6 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"jtj" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/sand_temple) "jtl" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"jty" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"jtG" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"jtP" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv624/lazarus/comms) +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "jud" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"jue" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet09" +"jus" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/lv624/ground/caves/north_central_caves) +/obj/item/clothing/gloves/yellow, +/turf/open/floor/platebot, +/area/lv624/lazarus/engineering) "juS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/yggdrasil) -"jva" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "jvi" = ( /obj/structure/fence, /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_central_jungle) -"jvl" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"jvo" = ( -/obj/item/stack/rods, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"jvu" = ( +/turf/open/gm/dirtgrassborder/desert, +/area/lv624/ground/barrens/south_eastern_barrens) "jvA" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/lazarus/landing_zones/lz2) +"jvF" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) "jww" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -8728,6 +7787,12 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"jwO" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) +"jwP" = ( +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) "jxe" = ( /obj/structure/surface/rack, /obj/item/moneybag, @@ -8739,98 +7804,100 @@ }, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"jxJ" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) +"jxw" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"jxI" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/river/central_river) "jxM" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) +"jyv" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidwarning/east, +/area/lv624/ground/colony/telecomm/sw_lz2) "jyw" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/east_jungle) -"jzX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - icon_state = "dark" +"jyD" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -4; + pixel_y = 9 }, -/area/lv624/lazarus/engineering) +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"jzi" = ( +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) +"jzy" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) +"jzE" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Commandant's Quarters APC" + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "jAg" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"jAP" = ( -/turf/closed/wall, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"jBw" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"jAp" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/comms) -"jBL" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"jBP" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"jAL" = ( +/turf/open/floor/whitegreen, /area/lv624/lazarus/main_hall) -"jBW" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"jAP" = ( +/turf/closed/wall, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"jAX" = ( +/turf/open/floor/warningcorner/north, +/area/lv624/lazarus/landing_zones/lz1) +"jBj" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"jBO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/lv624/lazarus/comms) +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "jCk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/jungle/west_jungle) -"jCw" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"jCY" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"jDq" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/CMB{ - pixel_y = 10 - }, -/obj/item/clothing/suit/storage/CMB, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/ground/barrens/north_east_barrens) "jDs" = ( /obj/effect/landmark/yautja_teleport, /turf/open/gm/dirt, @@ -8861,20 +7928,16 @@ /obj/item/storage/backpack, /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"jFK" = ( +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "jFM" = ( /obj/structure/bed/chair/wood/normal, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/caves/north_central_caves) -"jFN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "jFX" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) @@ -8896,15 +7959,30 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) -"jIa" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +"jIe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"jIp" = ( +/obj/item/circuitboard/airlock{ + pixel_x = 12 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/cargo) +"jIH" = ( +/obj/structure/lattice{ + layer = 2.9 }, -/area/lv624/lazarus/main_hall) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) "jJc" = ( /turf/closed/wall, /area/lv624/lazarus/main_hall) @@ -8920,19 +7998,6 @@ "jJq" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"jJx" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"jJQ" = ( -/obj/item/tool/crowbar, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "jJU" = ( /turf/open/gm/coast/west, /area/lv624/ground/river/central_river) @@ -8940,14 +8005,22 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"jKR" = ( -/obj/structure/ore_box, -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" +"jKG" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/CMB{ + pixel_y = 10 }, -/area/lv624/ground/barrens/containers) +/obj/item/clothing/suit/storage/CMB, +/turf/open/shuttle/bright_red, +/area/lv624/ground/barrens/north_east_barrens) +"jKX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "jLd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, @@ -8958,27 +8031,28 @@ /obj/structure/prop/invuln/fire, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"jLJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"jLW" = ( +/obj/structure/morgue/sarcophagus, +/obj/item/weapon/twohanded/yautja/glaive/damaged{ + name = "damaged war glaive" }, -/area/lv624/ground/river/central_river) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"jMn" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/reagent_container/glass/bucket{ + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "jMp" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"jMN" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "jMT" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -8992,13 +8066,17 @@ "jNI" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/caves/north_central_caves) -"jNN" = ( -/obj/item/toy/beach_ball, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"jNT" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/fitness) +/obj/structure/platform/mineral/sandstone/runed{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "jNU" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -9008,16 +8086,14 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/barrens/south_eastern_barrens) +"jOe" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/corporate_dome) "jOI" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"jOL" = ( -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "jOO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -9027,12 +8103,6 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"jPl" = ( -/obj/structure/bookcase, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "jPJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -9060,6 +8130,11 @@ "jRf" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) +"jRj" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "jRD" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/north_central_caves) @@ -9067,33 +8142,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"jSc" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "jSt" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"jTl" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"jTw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) "jTI" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -9102,6 +8154,9 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) +"jUC" = ( +/turf/open/floor/warnwhite/west, +/area/lv624/lazarus/fitness) "jUM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -9112,12 +8167,12 @@ "jUU" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/east_caves) -"jUY" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 +"jVb" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Storage Pods APC" }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_west_jungle) +/turf/open/floor/vault, +/area/lv624/lazarus/quartstorage) "jVg" = ( /obj/structure/target, /obj/item/clothing/head/militia/bucket{ @@ -9126,12 +8181,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"jVL" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "jWO" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -9146,14 +8195,9 @@ /obj/structure/largecrate/random, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"jXm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) +"jXB" = ( +/turf/open/gm/dirtgrassborder/west, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "jXS" = ( /obj/item/toy/inflatable_duck, /turf/open/gm/river, @@ -9162,12 +8206,21 @@ /obj/effect/landmark/crap_item, /turf/open/gm/coast/west, /area/lv624/ground/barrens/west_barrens) -"jYU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" +"jYF" = ( +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"jYY" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) +"jZb" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + locked = 1; + name = "\improper Nexus Dome Armory"; + req_one_access_txt = "19;106" }, -/area/lv624/lazarus/engineering) +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "jZh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -9180,54 +8233,19 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"kab" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) +"jZE" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"kao" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "kaw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"kaB" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"kaM" = ( -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) -"kaW" = ( -/turf/open/floor{ - dir = 10; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"kbi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"kbK" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "kbO" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -9245,17 +8263,15 @@ "kcg" = ( /turf/open/gm/coast/east, /area/lv624/ground/jungle/west_jungle) -"kcK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"kcX" = ( -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"kcm" = ( +/obj/item/clothing/suit/armor/yautja_flavor, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"kdl" = ( +/obj/structure/surface/table, +/obj/item/clothing/glasses/sunglasses/big, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "kdt" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ @@ -9263,18 +8279,12 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"kdy" = ( -/obj/item/shard, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/lv624/lazarus/comms) -"kdK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, -/turf/open/floor{ - icon_state = "white" +"kek" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "ker" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/east, @@ -9297,6 +8307,19 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"kgl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "Hydroponics" + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"kgm" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + layer = 3.1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "khP" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -9311,11 +8334,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"kil" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) +"kiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "kiJ" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 6 @@ -9337,69 +8360,23 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/colony/north_tcomms_road) -"kkx" = ( -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/main_hall) "kkG" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"klc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"klk" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"kkY" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "klm" = ( /turf/closed/wall/mineral/sandstone/runed, /area/lv624/ground/caves/sand_temple) "klv" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/west_caves) -"klF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "kma" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -9411,16 +8388,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"kmL" = ( -/obj/structure/grille, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "kna" = ( /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"knd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "knt" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -9431,18 +8407,30 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"knS" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"knX" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "knZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/east_jungle) +"koe" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"kok" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "koG" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, @@ -9451,38 +8439,20 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"koN" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) "koY" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kpz" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"kpD" = ( -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"kpI" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/area/lv624/lazarus/kitchen) +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "kpM" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/south_medbay_road) -"kpX" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "kqo" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -9491,16 +8461,6 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"kqB" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Nexus Dome Director's Quarters"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/hop) "kqQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, @@ -9509,14 +8469,6 @@ /obj/structure/prop/rock/black_ground, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"krg" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/costume/butler, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "krA" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -10; @@ -9527,49 +8479,56 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"ksg" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) "ksC" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 24 }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) +"ksH" = ( +/obj/structure/surface/table, +/obj/item/device/radio/headset{ + frequency = 1469; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/headset{ + frequency = 1469 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ksI" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) -"ksM" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) "ksY" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/north_nexus_road) -"ktZ" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt, -/area/lv624/ground/caves/north_central_caves) -"kuY" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"kve" = ( +"kta" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; pixel_x = -30 }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"ktF" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/south_west_caves) +"ktZ" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/dirt, +/area/lv624/ground/caves/north_central_caves) +"kvI" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "kvQ" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, @@ -9578,12 +8537,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kwd" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "kwx" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -9608,6 +8561,14 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"kxv" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "kxU" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 @@ -9628,6 +8589,10 @@ "kyl" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) +"kyw" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kyR" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 11; @@ -9638,20 +8603,15 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"kyX" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) "kzi" = ( /obj/structure/flora/tree/jungle/bigtreeTL, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grassbeach/west, /area/lv624/lazarus/yggdrasil) +"kzu" = ( +/obj/item/stool, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "kzG" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -9670,6 +8630,16 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) +"kBc" = ( +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "kBi" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -9680,21 +8650,23 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) +"kBD" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "kBJ" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"kBY" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "kBZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kCg" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "kCo" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_west_caves) @@ -9708,6 +8680,17 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/north_tcomms_road) +"kDv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "kDX" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/plating, @@ -9716,16 +8699,15 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) +"kEu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "kEG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"kEI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) "kFe" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ icon_state = "fernybush_2"; @@ -9733,14 +8715,9 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"kFm" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) +"kFh" = ( +/turf/open/floor/plating/asteroidwarning/southeast, +/area/lv624/lazarus/landing_zones/lz2) "kFp" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/south, @@ -9749,6 +8726,11 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"kFy" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "kFz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_east_jungle) @@ -9756,28 +8738,10 @@ /obj/item/reagent_container/food/snacks/grown/mushroom/libertycap, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"kGV" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"kHv" = ( -/obj/item/hunting_trap{ - desc = "A bizarre alien device used for trapping and killing prey."; - name = "Alien Mine" - }, -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) +"kHF" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/central_river) "kIc" = ( /obj/structure/ore_box, /turf/open/gm/dirt, @@ -9791,40 +8755,14 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"kIU" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) -"kJh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - dir = 9; - icon_state = "redfull" - }, -/area/lv624/lazarus/security) "kKi" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) -"kKO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Male Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"kKX" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) +"kKV" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) "kLF" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -9840,32 +8778,17 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_nexus_road) -"kMS" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"kNf" = ( -/obj/structure/surface/table, -/obj/item/toy/dice, -/turf/open/floor{ - icon_state = "bluecorner" +"kMC" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/area/lv624/lazarus/sleep_male) +/obj/item/clothing/under/colonist/clf, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "kOr" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"kOw" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "kON" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/coast/beachcorner2/north_west, @@ -9873,24 +8796,6 @@ "kPc" = ( /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) -"kPj" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"kPu" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -12 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "kPL" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -9898,43 +8803,24 @@ "kPZ" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/east_barrens) -"kQd" = ( -/obj/structure/closet/wardrobe, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "kQi" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"kQO" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"kRa" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) -"kRs" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) +"kQI" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) +"kRy" = ( +/obj/structure/fence, +/turf/open/floor/warning/north, +/area/lv624/ground/barrens/containers) "kRE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_east_jungle) +"kRM" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/central_barrens) "kRZ" = ( /obj/structure/disposalpipe/segment{ layer = 5.1; @@ -9942,89 +8828,49 @@ }, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"kSc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/canteen) -"kTk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "kTl" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"kTs" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"kTt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"kTm" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/east_river) "kTK" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"kTS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/tomatosoup{ - desc = "Why would you ever drink this? Its full of mold and yucky slime!"; - pixel_y = 3 - }, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "It's a spoon. Covered in red slime and mold."; - pixel_x = 10; - pixel_y = 5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "kTV" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"kTY" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" +"kUt" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/lv624/ground/barrens/central_barrens) -"kVk" = ( -/obj/structure/flora/jungle/vines/light_3, -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 9; - icon_state = "warning" +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/landing_zones/lz2) -"kVq" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/area/lv624/lazarus/engineering) +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"kVn" = ( +/obj/structure/prop/mech/parts/chassis/gygax, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"kVu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "kVx" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_jungle) @@ -10034,26 +8880,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"kWB" = ( -/obj/item/device/assembly/timer, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"kWG" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quartstorage) -"kWK" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "kXi" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_jungle) @@ -10088,6 +8914,11 @@ "kYS" = ( /turf/open/gm/coast/west, /area/lv624/ground/caves/north_central_caves) +"kYY" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "kZt" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -10106,34 +8937,28 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"kZS" = ( -/obj/structure/closet, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "kZX" = ( /turf/open/gm/grass/grass1/weedable, /area/lv624/ground/caves/north_east_caves) +"lac" = ( +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "laR" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/east_barrens) +"laX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"lbc" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) "lbk" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"lbo" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "lbW" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass2, @@ -10145,90 +8970,56 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"lch" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "lcj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) -"lcM" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/obj/item/device/flashlight, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 +"ldt" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) "ldF" = ( /obj/structure/cargo_container/lockmart/mid, /turf/open/floor, /area/lv624/ground/barrens/containers) +"lec" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "leh" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_central_jungle) -"leo" = ( -/obj/structure/surface/table, -/obj/structure/prop/mech/drill, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "let" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"lfk" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"lgg" = ( +"lfz" = ( /obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"lga" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/lv624/lazarus/sleep_female) +/obj/effect/glowshroom, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lgx" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"lgG" = ( -/turf/open/floor{ - dir = 4; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) -"lgV" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) +"lhI" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/ground/barrens/central_barrens) "lhX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/vault, @@ -10237,37 +9028,40 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) +"lig" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/chocolatecakeslice, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) +"lip" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"liT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "ljl" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"ljx" = ( -/obj/structure/device/broken_piano, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "ljG" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"ljH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/quartstorage) -"ljO" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "lki" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -10276,13 +9070,15 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"lkL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor{ - icon_state = "whiteblue" +"lkG" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/machinery/power/apc/no_power/north{ + name = "Unisex Bathrooms APC" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lln" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -10291,6 +9087,13 @@ /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"lmo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/good_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "lnn" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -10314,27 +9117,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"lou" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"lov" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/west, +/area/lv624/lazarus/landing_zones/lz2) "loE" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"lpb" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) +"loR" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/medbay) "lpf" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) +"lpg" = ( +/turf/open/floor/warning/east, +/area/lv624/lazarus/landing_zones/lz1) "lph" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/east_central_jungle) +"lpo" = ( +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "lpx" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -10342,13 +9161,13 @@ /mob/living/simple_animal/bat, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"lpL" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor{ - icon_state = "bar" +"lpK" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/canteen) +/obj/item/tool/weldingtool/hugetank, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "lpV" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/dirt, @@ -10360,14 +9179,6 @@ "lqD" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_west_jungle) -"lrA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "lrI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -10375,37 +9186,19 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"lsm" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +"lsM" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv624/ground/colony/telecomm/cargo) -"lsV" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/floor/plating{ - icon_state = "platebotc" +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/quartstorage/outdoors) +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "lte" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"lth" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/lattice{ - layer = 2.9 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"ltm" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) "lts" = ( /turf/open/gm/coast/south, /area/lv624/ground/caves/sand_temple) @@ -10420,31 +9213,18 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"lub" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "luf" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"luq" = ( -/obj/structure/girder, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"luQ" = ( -/obj/structure/surface/table, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"luh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/research) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "lvd" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, @@ -10455,18 +9235,30 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) +"lvG" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "lvZ" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_tcomms_road) -"lwr" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +"lwk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/ground/barrens/central_barrens) +/turf/open/floor/red/northeast, +/area/lv624/lazarus/security) "lwG" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) +"lwV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "lwZ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -10477,28 +9269,17 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_central_jungle) -"lxD" = ( +"lxi" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/lv624/ground/caves/north_central_caves) -"lxI" = ( -/obj/item/device/multitool, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"lye" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"lxk" = ( +/obj/structure/machinery/computer/telecomms/monitor{ + pixel_y = 16 }, -/area/lv624/ground/river/central_river) +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "lyV" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) @@ -10507,23 +9288,21 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grassbeach/south, /area/lv624/lazarus/yggdrasil) -"lzr" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) +"lzg" = ( +/obj/structure/closet, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"lzA" = ( +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "lzU" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lAn" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"lAH" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "lBg" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light{ @@ -10531,26 +9310,6 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"lBG" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold{ - amount = 2 - }, -/obj/item/stack/sheet/mineral/platinum{ - pixel_x = -6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"lBO" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "lBW" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -10560,12 +9319,11 @@ }, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"lCm" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/landing_zones/lz2) +"lCr" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/grown/tomato, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "lCt" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 @@ -10585,19 +9343,6 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lCJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks{ - pixel_x = -4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) "lCS" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -10605,37 +9350,17 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) +"lDe" = ( +/obj/structure/largecrate, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"lDg" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "lDp" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/comms) -"lDE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Research Director's APC" - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"lEo" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"lEz" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "lEK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -10664,6 +9389,20 @@ /obj/item/reagent_container/food/drinks/bottle/sake, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"lFw" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lFx" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -10674,60 +9413,52 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"lFK" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"lFN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" +"lFS" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/lv624/lazarus/comms) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "lFX" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/barrens/east_barrens) -"lGF" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"lGX" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/reagent_container/glass/bucket{ - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"lGu" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, -/area/lv624/lazarus/hydroponics) +/obj/structure/platform, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/lazarus/engineering) +"lHk" = ( +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "lHp" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"lHW" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "lIf" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"lIh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) +"lIp" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quartstorage) "lIs" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/barrens/east_barrens) @@ -10749,6 +9480,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"lJo" = ( +/turf/open/floor/redcorner/east, +/area/lv624/lazarus/security) "lJt" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -10757,32 +9491,10 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"lJy" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/obj/item/tool/match{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/carpet{ - icon_state = "bcarpet08" - }, -/area/lv624/ground/caves/north_central_caves) "lKb" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_east_jungle) -"lKj" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "lKk" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 @@ -10804,13 +9516,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/west_nexus_road) -"lKJ" = ( -/obj/structure/machinery/sensortower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/caves/north_central_caves) "lLf" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -10822,31 +9527,21 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"lLB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "lLF" = ( /obj/structure/prop/fishing/line/long/part2, /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"lLH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"lMe" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" +"lMu" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "lMx" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -10855,22 +9550,15 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"lNa" = ( -/obj/structure/machinery/fermenter, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"lNK" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" +"lMW" = ( +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"lNn" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "lNZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/west_jungle) @@ -10881,6 +9569,23 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"lOk" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"lOA" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "lPg" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_x = -28 @@ -10888,19 +9593,15 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"lPt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/red, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "lPB" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"lPR" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "lQD" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/hop) @@ -10913,36 +9614,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/sand_temple) -"lRb" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"lRc" = ( -/obj/structure/largecrate/random, -/obj/item/storage/fancy/crayons{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) -"lRR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/south_east_caves) "lSl" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/orange{ @@ -10963,22 +9634,21 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"lTp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome Chapel"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/chapel) +"lTv" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "lTx" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"lTH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder, -/obj/item/device/assembly/signaller, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "lTU" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -10988,13 +9658,21 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz1) -"lUG" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"lUl" = ( +/obj/structure/closet, +/obj/item/clothing/shoes/laceup, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"lUD" = ( +/obj/structure/largecrate, +/obj/structure/prop/mech/parts/gygax_armor{ + layer = 1 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "lVq" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/door/airlock/almayer/engineering/colony{ @@ -11018,80 +9696,59 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/jungle/east_central_jungle) -"lVz" = ( -/turf/open/floor{ - icon_state = "vault" +"lWC" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Fitness APC" }, -/area/lv624/lazarus/robotics) -"lVY" = ( -/obj/item/storage/medicomp/full, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"lWM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"lWO" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor{ - icon_state = "cult" +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 }, +/turf/open/floor/cult, /area/lv624/ground/caves/south_west_caves) -"lWj" = ( -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/tracks/footprints{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "lWP" = ( /obj/structure/flora/jungle/vines/heavy, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"lXy" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" +"lXi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/lv624/ground/colony/telecomm/sw_lz2) +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "lXF" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"lXX" = ( +"lYs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/closed/wall, +/area/lv624/lazarus/quart) +"lZo" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"lYa" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser" - }, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/yggdrasil) -"lYs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/closed/wall, -/area/lv624/lazarus/quart) -"lYz" = ( -/obj/structure/machinery/constructable_frame, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "lZw" = ( /obj/effect/landmark/crap_item, /turf/open/gm/river, @@ -11106,15 +9763,6 @@ }, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"may" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) "maF" = ( /obj/structure/closet/crate, /obj/item/storage/firstaid, @@ -11127,22 +9775,40 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"mbh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/main_hall) +"mbB" = ( +/obj/structure/bed, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/bedsheet/hos, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "mcb" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/barrens/south_eastern_barrens) -"mcH" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "mdp" = ( /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"mdv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"mdE" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "mdK" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) @@ -11165,37 +9831,24 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"meU" = ( -/obj/structure/closet/cabinet, -/obj/item/weapon/baseballbat/metal, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"mfx" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "mgr" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"mgH" = ( +"mgY" = ( /obj/structure/surface/table, -/obj/item/trash/snack_bowl{ - pixel_y = 9 - }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"mgN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) +/obj/item/device/mmi/radio_enabled, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "mhi" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -11204,15 +9857,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"mie" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "mig" = ( /obj/structure/inflatable, /turf/open/gm/dirt, @@ -11255,14 +9899,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_tcomms_road) -"mjq" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "mjI" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, @@ -11282,9 +9918,25 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"mmk" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"mmn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/bronze, +/obj/item/storage/donut_box, +/turf/open/floor/red/west, +/area/lv624/lazarus/security) "mms" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/south_medbay_road) +"mmE" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Security Office APC" + }, +/turf/open/floor/red, +/area/lv624/lazarus/security) "mmF" = ( /turf/closed/shuttle{ icon_state = "wall3" @@ -11294,25 +9946,43 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"mnh" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"mns" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/lv624/ground/barrens/central_barrens) +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/jungle/west_jungle/ceiling) +"mnR" = ( +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) +"mnX" = ( +/obj/structure/filingcabinet/security{ + desc = "A large cabinet with hard copy security records."; + name = "Security Records" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/redcorner/north, +/area/lv624/lazarus/security) "mnY" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"mot" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" +"moF" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "moU" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/lazarus/landing_zones/lz2) +"mpe" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "mpi" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/heavy, @@ -11329,16 +9999,6 @@ /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"mrP" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "msU" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, @@ -11346,103 +10006,123 @@ "msX" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"mth" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatballsoup, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mtB" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/caves/west_caves) "mtZ" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"mue" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) "muv" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"muA" = ( +/obj/structure/fence, +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/central_river) +"muK" = ( +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"muQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"mvp" = ( +/obj/item/device/multitool, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"mvK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "mwe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"mwh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "mwi" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"mwn" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/folder/black, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" +"mwJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liason Office" }, +/turf/open/floor/white, /area/lv624/lazarus/corporate_dome) +"mwS" = ( +/obj/structure/closet/wardrobe, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/under/colonist, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "mwV" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/colony/north_tcomms_road) +"mxh" = ( +/obj/structure/prop/mech/armor_booster, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "mxi" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) -"mxo" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"mxk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/lv624/lazarus/comms) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "mxB" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"mxS" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_x = 30 - }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"mym" = ( -/obj/structure/bed/chair/hunter{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"mxK" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/lazarus/landing_zones/lz1) "myt" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/jungle/west_jungle) -"mzY" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"myv" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/toilet) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"mAq" = ( +/obj/structure/surface/table, +/obj/item/clipboard, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "mAx" = ( /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) @@ -11455,17 +10135,15 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"mBE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) +"mAZ" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "mBQ" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/central_river) +"mCe" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/east_barrens) "mCI" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/window/framed/colony, @@ -11482,11 +10160,30 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"mEf" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/east{ + name = "Women's Dorms APC" + }, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"mEK" = ( +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "mES" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"mEV" = ( +/obj/structure/machinery/vending/hydroseeds, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "mEX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, @@ -11495,37 +10192,39 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/north_nexus_road) -"mGo" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"mGD" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mFW" = ( +/obj/structure/bed/chair/wood/wings{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/lazarus/quart) -"mGX" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"mHx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) +"mHy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv624/ground/caves/sand_temple) -"mHb" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pastatomato, -/turf/open/floor{ - icon_state = "bar" +/obj/item/tool/crowbar, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"mHF" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 6; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/canteen) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "mHG" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -11537,34 +10236,30 @@ "mHO" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) -"mHX" = ( -/obj/structure/machinery/computer/telecomms/monitor{ - pixel_y = 16 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) "mIq" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"mIs" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"mIG" = ( -/obj/structure/machinery/light{ - dir = 8 +"mIB" = ( +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"mIW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Forced Blast Door" }, -/turf/open/floor{ - dir = 8; - icon_state = "whiteyellowcorner" +/obj/structure/machinery/door/airlock/almayer/research/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Research Dome"; + opacity = 0; + req_access_txt = "100" }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"mJp" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/medbay) "mJs" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -11579,13 +10274,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/jungle/west_jungle) -"mJX" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet{ - icon_state = "bcarpet01" - }, -/area/lv624/ground/caves/north_central_caves) "mKi" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/barrens/containers) @@ -11596,6 +10284,21 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) +"mLt" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mLv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mLx" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "mLK" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -11613,6 +10316,18 @@ name = "Statue of the Sky" }, /area/lv624/lazarus/main_hall) +"mMG" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) +"mNd" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/off{ + frequency = 1469 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "mNk" = ( /obj/structure/sign/safety/analysis_lab{ pixel_x = 40 @@ -11627,6 +10342,18 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"mOJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"mOO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Nexus Dome"; + req_access_txt = "100" + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mPA" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -11659,34 +10386,17 @@ }, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) +"mQg" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "mQh" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) -"mQk" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_color = "blue"; - phone_id = "Corporate Office"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "secure_outer_blast"; - name = "Secure Outer Doors"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"mQz" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "mQA" = ( /turf/closed/wall/wood, /area/lv624/ground/jungle/west_jungle/ceiling) @@ -11695,58 +10405,42 @@ /obj/item/reagent_container/food/snacks/boiledspagetti, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"mQJ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) +"mQP" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/central_barrens) "mQU" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"mRc" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"mRf" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor{ - dir = 8; - icon_state = "warningcorner" - }, -/area/lv624/lazarus/landing_zones/lz1) "mRM" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"mSo" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "platebotc" +"mTa" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/quartstorage/outdoors) +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"mTo" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "mTy" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"mTE" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "mUx" = ( /turf/open/gm/coast/north, /area/lv624/ground/caves/north_central_caves) @@ -11756,21 +10450,12 @@ }, /turf/open/floor, /area/lv624/lazarus/security) -"mVp" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/pie, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"mVs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/wy_chips/pepper, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" +"mVc" = ( +/obj/structure/sink{ + pixel_y = 30 }, -/area/lv624/lazarus/corporate_dome) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "mVt" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, @@ -11779,19 +10464,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"mVI" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) -"mVX" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "mWN" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -11803,27 +10475,12 @@ }, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"mXY" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 14 - }, -/obj/item/clothing/head/soft/blue{ - pixel_x = 7; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, +"mXF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, /area/lv624/lazarus/comms) -"mYJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/framed/colony, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "mYT" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, @@ -11843,6 +10500,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"mZm" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "mZn" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/dirt, @@ -11852,55 +10513,48 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) -"mZY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"nag" = ( -/turf/open/gm/dirtgrassborder/north, -/area/lv624/ground/jungle/west_central_jungle) -"nap" = ( +"mZJ" = ( /obj/structure/surface/rack, -/obj/item/weapon/baton/cattleprod{ - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/weapon/baton/cattleprod{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/vault2/west, /area/lv624/lazarus/quartstorage) -"naZ" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +"mZK" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/barrens/central_barrens) +"mZP" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"mZT" = ( +/obj/item/tool/pickaxe/jackhammer{ + desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; + force = 3; + name = "display jackhammer" }, -/area/lv624/ground/river/central_river) -"nbj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ dir = 4; - name = "\improper Forced Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" + health = 80 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/research) +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) +"nag" = ( +/turf/open/gm/dirtgrassborder/north, +/area/lv624/ground/jungle/west_central_jungle) +"naA" = ( +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) +"naQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "nbw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 @@ -11913,40 +10567,22 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"nbQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) -"ncv" = ( +"nbY" = ( /obj/structure/surface/table, -/obj/item/device/megaphone, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "ncL" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"ndb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) +"ndl" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "nds" = ( /obj/item/weapon/gun/rifle/l42a/abr40, /obj/structure/barricade/sandbags, @@ -11965,12 +10601,6 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/robotics) -"ndO" = ( -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/fitness) "ndU" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -11979,22 +10609,16 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor, /area/lv624/lazarus/hydroponics) -"net" = ( -/obj/structure/largecrate, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) +"neq" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "neB" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/r_wall, /area/lv624/lazarus/landing_zones/lz2) -"neT" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) +"neI" = ( +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "nfe" = ( /obj/structure/surface/table/reinforced{ dir = 4; @@ -12003,24 +10627,58 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"nfu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 26 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "nfA" = ( /obj/item/xenos_claw, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"nga" = ( -/obj/structure/closet/lawcloset, -/turf/open/floor{ +"nfR" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ dir = 1; - icon_state = "red" + locked = 1; + name = "\improper Research Dome"; + req_access_txt = "100" }, -/area/lv624/lazarus/security) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "ngi" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/south_nexus_road) +"ngx" = ( +/turf/open/floor/warnwhite/east, +/area/lv624/lazarus/fitness) +"ngF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/tomatosoup{ + desc = "Why would you ever drink this? Its full of mold and yucky slime!"; + pixel_y = 3 + }, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "ngH" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"ngP" = ( +/obj/structure/machinery/door/airlock/almayer/research/colony{ + name = "\improper Research Dome"; + req_access_txt = "100" + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nhK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -12029,58 +10687,13 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"nhY" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "nhZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/west_jungle) -"nip" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"niC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/under/liaison_suit/suspenders, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "niL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"njv" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"njI" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "nkr" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, @@ -12092,26 +10705,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"nkx" = ( -/obj/effect/vehicle_spawner/van/decrepit, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"nkE" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"nkK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - icon_state = "podhatchfloor" - }, -/area/lv624/lazarus/comms) "nkN" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -12122,48 +10715,39 @@ /obj/structure/ore_box, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"nlh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"nlx" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"nlO" = ( +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_y = -28 }, -/area/lv624/ground/barrens/south_eastern_barrens) +/turf/open/floor/plating/asteroidwarning, +/area/lv624/lazarus/landing_zones/lz2) "nmr" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"nmQ" = ( +/obj/structure/closet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/device/healthanalyzer, +/obj/item/clothing/shoes/centcom, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "nmU" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"nnh" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"nna" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/fitness) +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "nnw" = ( /turf/open/gm/coast/east, /area/lv624/ground/caves/north_central_caves) @@ -12173,22 +10757,18 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"nnR" = ( -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "noE" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"noT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"noM" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"npb" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "npf" = ( /obj/structure/surface/table/reinforced{ dir = 8; @@ -12200,6 +10780,12 @@ /obj/effect/decal/cleanable/blood/gibs/xeno, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) +"npw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "npI" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -12210,6 +10796,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) +"npV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_id = "Research Dome"; + pixel_y = 24 + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "nqf" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/east, @@ -12218,24 +10815,26 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/lazarus/landing_zones/lz2) +"nqZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) +"nrn" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "nrQ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) -"nrY" = ( -/obj/item/stack/rods{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"nsg" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/ground/barrens/north_east_barrens) "nsi" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/rifle/mar40, @@ -12252,12 +10851,6 @@ "nsz" = ( /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"nsA" = ( -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "ntI" = ( /obj/structure/largecrate/lisa, /turf/open/floor/greengrid, @@ -12266,32 +10859,17 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"nul" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nuA" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "nuF" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"nuH" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) +"nvb" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "nvr" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 4 @@ -12306,17 +10884,44 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"nvU" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"nvX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/ground/caves/west_caves) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"nwy" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "nwF" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) +"nwO" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/main_hall) "nwZ" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/caves/sand_temple) +"nxb" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"nxG" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/engineering) +"nxK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "nyg" = ( /obj/structure/girder/displaced, /turf/closed/shuttle{ @@ -12358,20 +10963,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"nAi" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/weapon/gun/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/obj/item/ammo_magazine/smg/nailgun, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "nBy" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -12380,23 +10971,6 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/colony/west_nexus_road) -"nBR" = ( -/obj/structure/machinery/computer3, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"nCa" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Garage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) "nCh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -12409,11 +10983,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"nCN" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/central_barrens) "nCP" = ( /turf/open/gm/river, /area/lv624/lazarus/fitness) @@ -12421,6 +10990,11 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"nCZ" = ( +/obj/structure/surface/table, +/obj/item/handset, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "nDn" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, @@ -12430,25 +11004,18 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/gbcorner/north_east, /area/lv624/lazarus/yggdrasil) +"nDv" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "nDM" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"nDU" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) +"nDS" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "nEp" = ( /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) @@ -12456,6 +11023,15 @@ /obj/structure/inflatable/door, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"nEV" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/plantbgone{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "nFg" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -12464,6 +11040,24 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"nGc" = ( +/obj/item/device/flash, +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/turf/open/floor/redcorner, +/area/lv624/lazarus/security) "nGh" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -12490,37 +11084,47 @@ /obj/item/storage/box/mousetraps, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"nIs" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/caves/south_west_caves) -"nIv" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/medbay) -"nJB" = ( +"nIu" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/caves/west_caves) +"nIW" = ( +/obj/structure/ore_box, +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) +"nJf" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"nJs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/lv624/lazarus/fitness) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "nJG" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nKH" = ( -/obj/structure/surface/table, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) +"nJL" = ( +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/medbay) +"nKv" = ( +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) +"nKQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/blue, +/turf/open/floor/whiteblue, +/area/lv624/lazarus/corporate_dome) +"nKW" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/warningcorner/west, +/area/lv624/lazarus/landing_zones/lz1) "nLe" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/heavy, @@ -12529,69 +11133,27 @@ "nLt" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"nLF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 4; - name = "Women's Dorms APC"; - pixel_x = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"nLK" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"nLS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "nLT" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) -"nMb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/landing_zones/lz1) "nMK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/lazarus/landing_zones/lz2) +"nMN" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/ground/river/central_river) +"nMV" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/power/apc/power/north{ + name = "Atmospherics Processing APC" + }, +/turf/open/gm/grass/grass2, +/area/lv624/lazarus/yggdrasil) "nNm" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"nNH" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "nNK" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) @@ -12603,67 +11165,52 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"nPh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"nPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"nPI" = ( +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) "nQb" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"nQc" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Telecomms APC"; - start_charge = 15 - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/comms) +"nQi" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "nQl" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"nQo" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"nQJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"nRc" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"nQz" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/fitness) +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "nRg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) -"nRv" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/tool/wrench, -/obj/item/tool/weldingtool, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"nSF" = ( -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) +"nRx" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/suit/armor/vest/security, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) "nSM" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, @@ -12672,13 +11219,11 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_central_jungle) -"nUg" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) +"nUh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/crew/colony, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "nUz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -12687,18 +11232,22 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"nVl" = ( -/obj/structure/bed/chair/hunter{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) "nVt" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"nWc" = ( +/obj/item/clothing/head/helmet/augment{ + desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; + name = "alien mask"; + unacidable = 1 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) +"nWe" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "nWm" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/auto_turf/strata_grass/layer1, @@ -12709,73 +11258,10 @@ "nWM" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"nXa" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/chefhat, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/tool/kitchen/rollingpin, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"nXI" = ( -/obj/structure/surface/table/holotable, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "nXL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"nXN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"nXV" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"nXZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"nYf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"nYi" = ( -/obj/structure/surface/table, -/obj/item/stack/cable_coil/random, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "nYl" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -12783,21 +11269,11 @@ "nYF" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"nZk" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) -"nZy" = ( -/obj/structure/surface/table, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +"nYK" = ( +/obj/structure/machinery/requests_console{ + pixel_x = 30 }, +/turf/open/floor/freezerfloor, /area/lv624/lazarus/kitchen) "nZI" = ( /obj/structure/fence, @@ -12812,23 +11288,15 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"occ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"oby" = ( +/obj/structure/machinery/light, +/obj/structure/bed/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "ock" = ( /obj/structure/surface/rack, /obj/item/ore/diamond, @@ -12842,23 +11310,23 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/north_jungle) -"ocS" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/central_jungle) "odo" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/west_river) -"odF" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" +"odN" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/medbay) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"odV" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "oeF" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/barrens/west_barrens) @@ -12867,34 +11335,18 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) -"ofX" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Corporate Liason Office" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"ogh" = ( -/turf/open/floor{ - dir = 5; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "ogn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ogz" = ( -/obj/structure/closet/cabinet, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"ogu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/fitness) +/turf/open/floor/whitegreencorner/west, +/area/lv624/lazarus/main_hall) "ogW" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -12902,14 +11354,14 @@ "ohr" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/north_central_caves) -"ohO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/red, -/turf/open/floor{ - dir = 1; - icon_state = "red" +"oii" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Central Hallway APC" }, -/area/lv624/lazarus/security) +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "oio" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, @@ -12935,64 +11387,29 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"olj" = ( -/obj/structure/prop/mech/tesla_energy_relay{ - layer = 2.5 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "olA" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"olB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 26 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"olG" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "olH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/colony/south_medbay_road) +"olJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/research) "omw" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor, /area/lv624/ground/barrens/containers) -"onh" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"ont" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"onx" = ( +/obj/structure/girder, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "onE" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_central_jungle) @@ -13000,6 +11417,11 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) +"onT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "onX" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -13008,6 +11430,14 @@ /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) +"ooq" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "oow" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -13022,28 +11452,30 @@ "opF" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/east_river) +"opR" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "opY" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"oqz" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) -"oqO" = ( +"oqt" = ( /obj/structure/surface/table, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor{ - icon_state = "white" +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"oqZ" = ( +/obj/structure/machinery/door_control{ + id = "science_blast"; + name = "Science Wing Lockdown"; + pixel_x = 25 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/white, +/area/lv624/lazarus/research) "orc" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/canteen) @@ -13055,24 +11487,16 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"osi" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +"orJ" = ( +/obj/item/clothing/under/chainshirt/hunter, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "osk" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/east_caves) -"oso" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) "osD" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -13089,42 +11513,25 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) -"ota" = ( -/obj/structure/surface/table/reinforced{ - flipped = 1 - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"otr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "otv" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"otM" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_y = 3 +"otV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/quartstorage) +/obj/structure/platform/stair_cut, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "oum" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, @@ -13132,28 +11539,36 @@ "ouL" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"ovA" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"ouV" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" }, +/turf/open/floor/whiteyellowfull/east, /area/lv624/ground/caves/sand_temple) -"ovC" = ( -/obj/structure/pipes/vents/pump{ +"ovq" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/central_barrens) +"ovt" = ( +/turf/open/floor/warnwhite/northwest, +/area/lv624/lazarus/fitness) +"ovw" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) +/obj/effect/landmark/good_item, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "ovE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"owj" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "own" = ( /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) @@ -13163,6 +11578,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"owr" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "oxo" = ( /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, @@ -13170,70 +11589,55 @@ "oxy" = ( /turf/closed/wall, /area/lv624/lazarus/quartstorage/outdoors) +"oxG" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/landing_zones/lz1) "oxO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"oxT" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"oyg" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/scalpel{ + pixel_y = 12 + }, +/obj/structure/machinery/light, +/obj/item/clothing/suit/storage/labcoat/researcher, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "oyq" = ( /obj/structure/flora/jungle/plantbot1, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"oyI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - dir = 1; - icon_state = "red" - }, -/area/lv624/lazarus/security) "oyV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"ozj" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/obj/item/device/assembly/voice, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"oza" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "ozt" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"ozx" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"ozA" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "oAa" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -13241,15 +11645,10 @@ "oAG" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"oAH" = ( -/obj/structure/computerframe, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) +"oBb" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "oCc" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -13276,50 +11675,20 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"oCY" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray, -/obj/item/stack/medical/ointment, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"oDa" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/candle, -/turf/open/floor/carpet{ - icon_state = "bcarpet03" - }, -/area/lv624/ground/caves/north_central_caves) "oDu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"oDx" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/lazarus/hop) "oDI" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_central_jungle) -"oEj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) +"oDT" = ( +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/medbay) "oEm" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, @@ -13328,14 +11697,6 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"oEB" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "oFP" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) @@ -13346,74 +11707,65 @@ /obj/item/trash/cigbutt, /turf/open/gm/dirt, /area/lv624/ground/colony/south_medbay_road) -"oGH" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - name = "Water Filtration Plant"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"oHv" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"oHk" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/weapon/sword{ + layer = 3.1; + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor{ - icon_state = "bar" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 }, -/area/lv624/lazarus/canteen) -"oIc" = ( -/obj/structure/inflatable, -/turf/open/shuttle{ - icon_state = "floor4" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"oHY" = ( +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"oIb" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) +"oIs" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/medbay) "oIE" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"oIT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "oIU" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"oJt" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "oKa" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_east_caves) -"oKt" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "oKP" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/west_jungle) -"oMh" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor{ - icon_state = "white" +"oLa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/main_hall) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "oMn" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, @@ -13422,26 +11774,17 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/river, /area/lv624/ground/jungle/west_jungle) -"oNt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "dark" +"oNr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "oNu" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"oNN" = ( -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "oNX" = ( /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) @@ -13455,15 +11798,27 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"oRH" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"oQF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/mask/gas/yautja/damaged, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"oQL" = ( +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"oRu" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/river/east_river) +"oRL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/tritium{ + pixel_x = -4 }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "oRP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, @@ -13480,19 +11835,10 @@ "oSd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_east_jungle) -"oSe" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) +"oSY" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) "oTq" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -13501,38 +11847,6 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"oUh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "Lazarus Landing"; - phone_id = "Research Dome"; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"oUq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/flower_vase/bluewhiteflowers, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"oUx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) "oUy" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/south_central_jungle) @@ -13543,46 +11857,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"oVe" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"oVi" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/mech_bay_recharge_floor{ - name = "Shuttle Landing Lights" - }, -/area/lv624/lazarus/landing_zones/lz2) -"oVw" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"oVO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) "oVU" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 8 @@ -13598,13 +11872,9 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"oWG" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +"oWv" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/lv624/ground/colony/telecomm/sw_lz2) "oWP" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 @@ -13617,6 +11887,9 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"oXt" = ( +/turf/open/floor/whitebluecorner/east, +/area/lv624/lazarus/corporate_dome) "oXJ" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -13643,34 +11916,17 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/lv624/ground/caves/south_east_caves) -"oZs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "pan" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"paN" = ( -/obj/structure/coatrack, -/obj/item/clothing/head/beret/sec/hos{ - pixel_y = 10 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "paO" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/barrens/east_barrens) +"pbL" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "pbU" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -13696,6 +11952,20 @@ /obj/item/tank/phoron, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"pcx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Bathroom"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"pcY" = ( +/obj/structure/surface/rack, +/obj/item/device/multitool, +/obj/item/device/multitool, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "pdf" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor, @@ -13713,31 +11983,21 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"peR" = ( -/obj/structure/target, -/turf/open/floor{ - dir = 9; - icon_state = "red" +"peN" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/security) +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"peY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/white, +/area/lv624/lazarus/research) "pfj" = ( /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"pfF" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"pfT" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) "pfY" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -13756,6 +12016,23 @@ "pgJ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) +"phv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"phx" = ( +/obj/structure/machinery/computer3, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"pir" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "piP" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, @@ -13764,6 +12041,10 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/south_nexus_road) +"pjf" = ( +/obj/structure/bed, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "pjl" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -13777,20 +12058,36 @@ /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) +"pju" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 14 + }, +/obj/item/clothing/head/soft/blue{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "pjH" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_west_caves) +"pjV" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "pkE" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"pkV" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) "pkY" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -13800,29 +12097,11 @@ "ple" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/barrens/south_eastern_barrens) -"plj" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"pls" = ( -/obj/structure/prop/mech/mech_parts/part/gygax_torso, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "plL" = ( /obj/structure/flora/jungle/plantbot1, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"plP" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "plS" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_west, @@ -13839,6 +12118,24 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) +"pmI" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"pmM" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "pnc" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -13846,14 +12143,6 @@ "pnj" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/caves/south_east_caves) -"pnm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light/small, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "pno" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, @@ -13872,25 +12161,15 @@ /obj/structure/machinery/landinglight/ds2/delayone, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"pnD" = ( -/obj/item/clothing/head/helmet/augment{ - desc = "Part of a strange alien mask. It loosely fits on a human, but just barely."; - name = "alien mask"; - unacidable = 1 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"pnG" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/south_eastern_barrens) "pnM" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"poa" = ( +/obj/structure/flora/jungle/vines/light_3, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) "pom" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) @@ -13912,16 +12191,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) -"pqy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "pqJ" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, @@ -13943,115 +12212,97 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"pse" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "psw" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"psz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Quartermaster APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +"psD" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "psG" = ( /obj/structure/flora/jungle/vines/light_2, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"ptz" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"ptA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"ptH" = ( +/obj/structure/closet, +/obj/item/clothing/under/blackskirt, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "ptP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"pub" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window, -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"puv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"puI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"pvj" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" +"ptV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/lv624/ground/river/central_river) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"puX" = ( +/obj/structure/closet/lawcloset, +/turf/open/floor/red/north, +/area/lv624/lazarus/security) "pvG" = ( /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"pvM" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"pvO" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4 - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "pvT" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/space) +"pvW" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"pww" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "pwE" = ( /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"pwK" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/west_barrens) "pxo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/east_jungle) -"pxp" = ( -/turf/open/floor{ - icon_state = "cult" +"pxt" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 3; + pixel_y = 3 }, -/area/lv624/ground/caves/south_west_caves) +/obj/item/clothing/mask/surgical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/storage/belt/medical/full, +/obj/item/reagent_container/hypospray, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "pxv" = ( /obj/structure/surface/table/reinforced{ flipped = 1 @@ -14059,50 +12310,43 @@ /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"pxz" = ( +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "pyP" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"pyU" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"pzz" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "pAb" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/river, /area/lv624/ground/river/east_river) -"pAh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 9 - }, -/turf/open/shuttle{ - icon_state = "floor4" +"pAK" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "pAL" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"pBT" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) +"pBj" = ( +/obj/structure/surface/table, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) +"pBY" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "pCL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/gbcorner/north_east, @@ -14113,44 +12357,28 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"pDC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) "pEd" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"pEp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "pEY" = ( /turf/open/gm/river, /area/lv624/ground/caves/north_central_caves) -"pEZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"pFi" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Storage Pods APC"; - pixel_x = -30; - start_charge = 0 - }, -/turf/open/floor/vault, -/area/lv624/lazarus/quartstorage) -"pFG" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "whitebluefull" +"pFw" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"pFA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "pGc" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/west_barrens) @@ -14165,23 +12393,13 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"pHB" = ( -/obj/item/circuitboard/airlock{ - pixel_x = 12 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/cargo) -"pHH" = ( -/obj/structure/surface/table, -/obj/item/clipboard, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"pHt" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/lv624/lazarus/research) +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "pHO" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/north_tcomms_road) @@ -14212,78 +12430,59 @@ /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"pKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "dark" +"pKd" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/door_control{ + id = "garage_lv"; + name = "Garage Shutters"; + pixel_x = -28 }, -/area/lv624/lazarus/engineering) +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "pKf" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"pKD" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "pKL" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"pLd" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/tritium{ - pixel_x = -4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +"pKM" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/bot/north, +/area/lv624/ground/barrens/containers) "pLs" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/quartstorage/outdoors) -"pLw" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +"pMi" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Hydroponics APC" }, -/area/lv624/lazarus/comms) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"pMj" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/corporate_dome) "pMr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"pMK" = ( -/obj/structure/machinery/requests_console{ - pixel_x = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"pMV" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window{ + dir = 8 }, -/area/lv624/lazarus/kitchen) -"pNa" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/toilet{ + dir = 8 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "pNp" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, @@ -14291,22 +12490,13 @@ "pNu" = ( /turf/open/gm/river, /area/lv624/ground/caves/west_caves) -"pNA" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "pNM" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pOf" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"pNS" = ( +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "pOo" = ( /obj/structure/surface/table/reinforced{ dir = 1; @@ -14341,19 +12531,30 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"pRc" = ( -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "bluecorner" +"pQY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "pRo" = ( /obj/vehicle/train/cargo/engine{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"pRS" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"pSa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/random/tool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "pSh" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -14362,13 +12563,6 @@ "pSi" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"pSu" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "pSF" = ( /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) @@ -14382,21 +12576,31 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"pTO" = ( -/turf/open/floor{ +"pTz" = ( +/obj/structure/flora/jungle/vines/light_1, +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz1) +"pTU" = ( +/obj/item/weapon/sword{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; dir = 1; - icon_state = "warningcorner" + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/lazarus/landing_zones/lz1) +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "pUx" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/east_river) -"pVc" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "pVi" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" @@ -14423,12 +12627,25 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"pWo" = ( +/obj/structure/coatrack, +/obj/item/clothing/head/beret/sec/hos{ + pixel_y = 10 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) "pWD" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/caves/west_caves) "pWR" = ( /turf/closed/wall, /area/lv624/lazarus/medbay) +"pXG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "pXJ" = ( /obj/structure/flora/jungle/vines/light_2{ pixel_y = -22 @@ -14436,6 +12653,16 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_west_jungle) +"pXM" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"pXU" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "pYI" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -14451,16 +12678,13 @@ "pYP" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/caves/north_central_caves) +"pYQ" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/lv624/lazarus/landing_zones/lz2) "pYT" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/quartstorage/outdoors) -"pYX" = ( -/obj/item/hunting_trap, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) "pZi" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/amanita, /turf/open/auto_turf/strata_grass/layer1, @@ -14472,76 +12696,59 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"pZL" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/yggdrasil) "pZP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"pZT" = ( +"qbB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"qbM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) +"qbP" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" + pixel_y = 30 }, -/area/lv624/lazarus/medbay) -"qab" = ( +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"qbR" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"qcM" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/loadingarea/west, +/area/lv624/lazarus/landing_zones/lz1) +"qdf" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/explosive/grenade/high_explosive/stick, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = 6 - }, -/obj/item/explosive/grenade/high_explosive/stick{ - pixel_x = -6 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"qai" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/lazarus/hop) -"qbD" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"qck" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"qcy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +/obj/item/reagent_container/food/snacks/wy_chips/pepper, +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "qdJ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"qdL" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "qec" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, @@ -14550,90 +12757,59 @@ /obj/item/reagent_container/food/drinks/cans/beer, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) -"qet" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "qeD" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"qfj" = ( +/obj/structure/girder, +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "qfu" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"qgq" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"qgx" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/caves/north_central_caves) -"qgJ" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) +"qfN" = ( +/obj/structure/bed, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "qgK" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall, /area/lv624/lazarus/yggdrasil) -"qhb" = ( -/turf/open/floor{ - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/main_hall) -"qhe" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Men's Dorms APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/item/toy/deck, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"qgR" = ( +/turf/open/floor/plating/asteroidwarning, +/area/lv624/ground/river/central_river) "qhg" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"qih" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "\improper Communications Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" - }, +"qiv" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"qiC" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) +"qiI" = ( +/obj/structure/grille, +/turf/open/floor/dark, /area/lv624/lazarus/engineering) -"qim" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/caves/south_west_caves) "qjl" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"qjx" = ( +/turf/open/floor/white, +/area/lv624/lazarus/research) "qjJ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -14644,19 +12820,18 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) -"qkp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "bluecorner" - }, +"qkx" = ( +/obj/structure/closet, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) "qkS" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) +"qlb" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/central_barrens) "qll" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -14670,6 +12845,16 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"qmd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + locked = 1; + name = "\improper Engineering Dome Office"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "qmw" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/north_west_jungle) @@ -14695,6 +12880,11 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) +"qmW" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "qne" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -14709,13 +12899,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"qnH" = ( -/obj/item/clothing/suit/armor/yautja_flavor, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/lv624/ground/caves/sand_temple) "qnP" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -14733,22 +12916,18 @@ /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"qoZ" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/fitness) "qpb" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"qpg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" +"qpo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/lazarus/toilet) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qpt" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) @@ -14760,39 +12939,14 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"qqB" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"qqF" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/item/coin/diamond, -/obj/item/m_gift, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/storage/fancy/cigar, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" +"qrb" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/surface/table, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "qrv" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/central_caves) @@ -14800,6 +12954,9 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"qsc" = ( +/turf/open/floor/red/southwest, +/area/lv624/lazarus/security) "qsg" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -14814,17 +12971,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"qsE" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"qsN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) "qsZ" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 6 @@ -14835,23 +12981,16 @@ /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"quj" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/caves/west_caves) -"quk" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor{ - icon_state = "cult" +"qtG" = ( +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"qut" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/wood/wood_broken4, +/area/lv624/lazarus/hop) "quF" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -1; @@ -14862,14 +13001,11 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"quP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) +"quM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) "quW" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/east_jungle) @@ -14892,12 +13028,6 @@ /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"qvS" = ( -/turf/open/floor{ - dir = 9; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "qwp" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass2, @@ -14906,61 +13036,48 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"qwA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "qwC" = ( /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"qwG" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/loadout/clf, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "qwT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"qxe" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qxs" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) +"qxv" = ( +/obj/structure/largecrate/black_market/clf_supplies, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "qxw" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"qxA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"qyz" = ( -/obj/structure/closet, -/obj/item/weapon/baseballbat, -/obj/item/clothing/head/beret/jan, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "bluecorner" +"qxy" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/redfull/northwest, +/area/lv624/lazarus/security) +"qxE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "qzH" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -14971,23 +13088,21 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qAR" = ( -/turf/open/floor{ +"qAg" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 8; - icon_state = "redcorner" + icon_state = "p_stair_full" }, -/area/lv624/lazarus/security) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/south_east_caves) "qBF" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"qBN" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) +"qBX" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/caves/west_caves) "qCo" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/river, @@ -15002,15 +13117,16 @@ "qCq" = ( /turf/closed/wall/r_wall, /area/lv624/ground/caves/north_central_caves) -"qCt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" +"qCs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/research) +/turf/open/floor/whitegreencorner, +/area/lv624/lazarus/main_hall) +"qCu" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "qCG" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/flora/jungle/vines/light_2, @@ -15020,6 +13136,10 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass2, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"qDO" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_west_jungle) "qDX" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, @@ -15028,21 +13148,20 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/closed/wall, /area/lv624/lazarus/toilet) -"qFh" = ( -/obj/structure/flora/jungle/vines/heavy, +"qEM" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Men's Dorms APC" + }, +/obj/structure/surface/table, +/obj/item/toy/deck, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"qFh" = ( +/obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qFn" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_full" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) "qFw" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, @@ -15054,43 +13173,26 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"qGz" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/hatchet{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "qHk" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/jungle/north_west_jungle) -"qHu" = ( -/turf/open/floor{ - dir = 6; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) "qHL" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"qHU" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "qHX" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) +"qIi" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "qIn" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirtgrassborder/east, @@ -15098,36 +13200,22 @@ "qIM" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"qJD" = ( -/obj/item/bedsheet/rd, -/obj/item/weapon/pole/fancy_cane, -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"qKe" = ( +"qJg" = ( /obj/structure/surface/table/woodentable/poor, -/obj/structure/machinery/microwave{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7 }, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/wood/wood_broken4, /area/lv624/ground/caves/north_central_caves) -"qKD" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass2, -/area/lv624/ground/jungle/north_jungle) +"qLd" = ( +/obj/item/tool/shovel, +/obj/structure/surface/table, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"qLi" = ( +/turf/open/gm/dirtgrassborder/desert_dug, +/area/lv624/ground/barrens/south_eastern_barrens) "qLP" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/east_jungle) @@ -15150,77 +13238,50 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"qMH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Nexus Dome Marshal's Quarters"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/captain) -"qMX" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/kitchen) "qNS" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/central_river) -"qOi" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"qOu" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +"qOk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/lv624/lazarus/quartstorage) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"qOx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/box/matches, +/obj/item/tool/candle, +/turf/open/floor/chapel/north, +/area/lv624/lazarus/chapel) "qPx" = ( /obj/structure/inflatable, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens/ceiling) -"qPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"qPV" = ( -/obj/item/tool/pickaxe, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"qQi" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +"qPz" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/containers) +"qQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "qQq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"qQJ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"qQF" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 }, -/turf/open/floor{ - icon_state = "cult" +/obj/structure/flora/jungle/vines/light_2{ + pixel_y = -22 }, -/area/lv624/ground/caves/south_west_caves) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "qQU" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -15228,6 +13289,14 @@ "qRj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/north_central_caves) +"qRp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/whitebluecorner, +/area/lv624/lazarus/corporate_dome) "qRz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/colony/north_nexus_road) @@ -15235,27 +13304,34 @@ /obj/structure/machinery/landinglight/ds2, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"qSe" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"qSv" = ( +/obj/structure/showcase{ + desc = "A stand with a plastic display of some kind of weird machine."; + icon_state = "coinpress0" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "qSw" = ( /turf/closed/wall/r_wall, /area/lv624/ground/river/central_river) -"qSD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "qSG" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"qSV" = ( -/obj/structure/closet, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"qSI" = ( +/turf/open/gm/dirtgrassborder/desert2, +/area/lv624/ground/barrens/south_eastern_barrens) +"qSJ" = ( +/turf/open/floor/whiteyellow, +/area/lv624/lazarus/corporate_dome) "qTs" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_east_jungle) @@ -15282,20 +13358,10 @@ "qUy" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_central_jungle) -"qUz" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"qVa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"qVo" = ( +/obj/structure/kitchenspike, +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "qVP" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/flora/jungle/vines/heavy, @@ -15304,26 +13370,17 @@ "qWn" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/caves/sand_temple) -"qWq" = ( -/obj/structure/surface/table/woodentable, -/obj/item/paper_bin/wy, -/obj/item/tool/pen/clicky, -/turf/open/floor{ - icon_state = "grimy" +"qWu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/hop) +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "qWD" = ( /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"qWT" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "qXf" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -15334,22 +13391,26 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"qXx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) +"qXA" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) +"qXH" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/north, +/area/lv624/lazarus/landing_zones/lz2) "qXL" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"qYa" = ( -/turf/open/floor{ - dir = 9; - icon_state = "green" +"qXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/lv624/lazarus/hydroponics) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/east_river) "qYd" = ( /obj/structure/phone_base/colony_net{ phone_category = "Lazarus Landing"; @@ -15362,82 +13423,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"qYi" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"qYw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"qZb" = ( -/obj/structure/largecrate/black_market/clf_supplies, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "qZU" = ( /obj/structure/machinery/light/small, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"raw" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"raP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "raQ" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/barrens/central_barrens) -"rbg" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"rbh" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "rce" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/colony/south_medbay_road) -"rcq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "rcN" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_barrens) @@ -15453,6 +13450,10 @@ "rds" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/north_central_caves) +"rdw" = ( +/obj/item/frame/apc, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "rdI" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/lv624/ground/caves/sand_temple) @@ -15460,43 +13461,41 @@ /obj/effect/landmark/crap_item, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"rey" = ( -/obj/structure/bed, -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"reW" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "rfb" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"rfN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rfl" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/gun/clf_primary/midchance, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rfQ" = ( +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"rgj" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 }, -/turf/open/floor{ - dir = 5; - icon_state = "red" +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = 4; + pixel_y = 4 }, -/area/lv624/lazarus/security) +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "rgp" = ( /turf/open/floor, /area/lv624/lazarus/hydroponics) -"rha" = ( -/obj/structure/closet/radiation, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "rhe" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 1 @@ -15520,61 +13519,30 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_west_barrens) -"rjf" = ( -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "rjs" = ( /obj/structure/surface/rack, /obj/item/storage/box/bodybags, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"rju" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Engineering Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/engineering) -"rks" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"rjB" = ( +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/barrens/east_barrens/ceiling) "rkx" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"rkC" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_2, -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "rkH" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/barrens/south_eastern_barrens) -"rlb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"rln" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) +"rlp" = ( +/obj/structure/bookcase, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/atmospipes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "rls" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -15587,31 +13555,41 @@ "rlI" = ( /turf/open/gm/coast/beachcorner/north_east, /area/lv624/ground/river/central_river) -"rmM" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -5; - pixel_y = -1 +"rmb" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Quartermaster APC" }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"rmU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"rnJ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, /area/lv624/lazarus/quartstorage) -"rog" = ( -/obj/item/storage/toolbox/syndicate, -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" +"roa" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/lv624/lazarus/armory) +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Engineering Dome SMES"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "ros" = ( /obj/structure/platform/mineral/sandstone/runed, /obj/structure/stairs/perspective{ @@ -15635,30 +13613,12 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_central_jungle) -"roT" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "rpz" = ( /obj/item/tool/warning_cone{ pixel_x = -11 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"rpF" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "rqw" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 @@ -15675,16 +13635,23 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/central_caves) -"rqY" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" +"rrk" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "rrl" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"rsJ" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "rsS" = ( /obj/structure/girder, /obj/structure/prop/invuln/fire{ @@ -15701,29 +13668,18 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"rtf" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"rti" = ( +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "rtl" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"rtq" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"rts" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "rtv" = ( /obj/item/tool/warning_cone{ pixel_x = -11; @@ -15739,16 +13695,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"rtK" = ( -/obj/structure/largecrate/random, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 5 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) "rwb" = ( /obj/structure/largecrate, /turf/open/gm/dirt, @@ -15766,69 +13712,77 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"rwC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "warnplate" +"rxf" = ( +/obj/structure/bed/chair/hunter{ + dir = 8 }, -/area/lv624/lazarus/robotics) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "rxq" = ( /obj/item/tool/warning_cone{ pixel_x = -20 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"rxD" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Research Dome"; - opacity = 0; - req_access_txt = "100" +"rxM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/research) -"rzm" = ( -/obj/structure/machinery/light{ +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"rye" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"ryT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/research) -"rzX" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/lv624/ground/colony/telecomm/cargo) -"rzY" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/tool/pen/clicky, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/stack/sheet/animalhide/xeno{ + name = "Lurker Hide" }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"rzu" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/lv624/lazarus/hop) -"rzZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor{ - icon_state = "whitebluefull" +/obj/item/tool/kitchen/utensil/spoon{ + desc = "It's a spoon. Covered in red slime and mold."; + pixel_x = 10; + pixel_y = 5 }, -/area/lv624/lazarus/medbay) +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "rAp" = ( /obj/structure/machinery/landinglight/ds2/delaythree, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) +"rAy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/med_data/laptop, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"rAT" = ( +/obj/structure/largecrate, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) "rBg" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, @@ -15836,77 +13790,43 @@ "rBu" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/jungle/south_central_jungle) -"rBR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"rBY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "rCp" = ( /obj/effect/landmark/hunter_primary, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) +"rCu" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Corporate Liason Office" + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "rCB" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"rCP" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) +"rCJ" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "rCV" = ( /obj/structure/flora/bush, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"rCX" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) -"rCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) -"rDl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"rDK" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "rDR" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) +"rEa" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "rEw" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -15922,52 +13842,28 @@ "rFN" = ( /turf/closed/wall, /area/lv624/lazarus/robotics) -"rGg" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) -"rGj" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/obj/item/tool/mop, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"rGa" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_barrens) "rGO" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) -"rGU" = ( -/obj/structure/fence, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +"rGZ" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, -/area/lv624/ground/river/central_river) -"rGX" = ( -/obj/structure/machinery/light{ +/obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 8 }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "rHG" = ( /obj/structure/surface/table/reinforced, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"rHH" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) "rIy" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/secure_storage) @@ -15978,58 +13874,40 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/sand_temple) -"rJA" = ( -/turf/open/floor{ - dir = 8; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"rJe" = ( +/obj/vehicle/powerloader/jd{ + dir = 1 + }, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) "rJG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_barrens) +"rJO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/stack/sheet/animalhide/xeno{ + name = "Warrior hide" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "rKe" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"rKf" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "rKP" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/river, /area/lv624/ground/river/west_river) -"rKX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"rLa" = ( -/obj/structure/surface/table, -/obj/item/device/radio/headset{ - frequency = 1469; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/headset{ - frequency = 1469 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "rLd" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/heavy, @@ -16039,34 +13917,17 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"rLq" = ( -/turf/open/floor{ - icon_state = "delivery" - }, -/area/lv624/lazarus/engineering) "rLB" = ( /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"rLI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "Lazarus Landing"; - phone_color = "red"; - phone_id = "Marshal Office" - }, -/turf/open/floor{ - dir = 8; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) "rLQ" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) +"rLV" = ( +/obj/item/shard, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) "rMb" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -16083,29 +13944,31 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"rMJ" = ( +/turf/open/floor/white, +/area/lv624/lazarus/medbay) "rMX" = ( /turf/open/gm/dirt, /area/lv624/ground/jungle/south_east_jungle) -"rOo" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) -"rPu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/megaphone, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"rPQ" = ( +"rNz" = ( /obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/river/west_river) +"rOw" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/lv624/ground/river/east_river) +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"rOV" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern, +/turf/open/floor/wood/wood_broken6, +/area/lv624/ground/caves/north_central_caves) "rPT" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/barrens/south_eastern_barrens) @@ -16113,10 +13976,18 @@ /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"rQM" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) "rRh" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/south_medbay_road) +"rRB" = ( +/obj/structure/bed/stool, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "rRZ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 11; @@ -16135,6 +14006,22 @@ /obj/structure/flora/bush/ausbushes, /turf/open/gm/coast/south, /area/lv624/ground/jungle/west_jungle) +"rTg" = ( +/obj/structure/machinery/atm{ + name = "Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"rTv" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/bot/north, +/area/lv624/lazarus/quart) "rTJ" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -16149,59 +14036,70 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) -"rVj" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/mar40, -/obj/item/ammo_magazine/rifle/mar40, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) -"rVX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) +"rWe" = ( +/obj/item/pipe, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"rWf" = ( +/obj/structure/fence, +/turf/open/floor/warning/west, +/area/lv624/ground/barrens/containers) "rWv" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"rWM" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/greengrid, -/area/lv624/lazarus/secure_storage) -"rWX" = ( +"rWx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray, /obj/item/reagent_container/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/open/floor{ - icon_state = "whitebluefull" +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"rWM" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) +"rWR" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Medbay APC" }, +/turf/open/floor/whiteblue/north, /area/lv624/lazarus/medbay) +"rXg" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/engineering) "rXj" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"rXk" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/folder/black, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"rXl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Nexus Dome Freezer"; + req_access_txt = "100" + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "rXz" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/east_river) -"rXR" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) "rXX" = ( /obj/structure/flora/grass/ice/both, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -16214,31 +14112,18 @@ /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"rYI" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - name = "\improper Nexus Dome Command Quarter"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) -"rZh" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - name = "Secure Vault APC"; - pixel_x = -28; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "rZn" = ( /obj/structure/flora/jungle/vines/light_1, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"rZo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 29 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "rZR" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, @@ -16250,6 +14135,9 @@ "san" = ( /turf/open/floor/plating, /area/lv624/ground/barrens/east_barrens/ceiling) +"sav" = ( +/turf/open/floor/whiteyellowcorner/east, +/area/lv624/lazarus/corporate_dome) "saw" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/captain) @@ -16261,50 +14149,28 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"sbn" = ( +/obj/structure/surface/rack, +/obj/item/stack/sandbags/large_stack{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/stack/sandbags/large_stack{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "sbw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"sbJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) -"scn" = ( -/obj/structure/flora/pottedplant, -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"scO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"sdn" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/fries, -/turf/open/floor/carpet{ - icon_state = "bcarpet07" - }, -/area/lv624/ground/caves/north_central_caves) -"sdx" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" +"scQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/hydroponics) +/turf/open/floor/wood/wood_broken6, +/area/lv624/lazarus/hop) "sdO" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, @@ -16326,64 +14192,80 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"sez" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "seQ" = ( /obj/item/tool/warning_cone{ pixel_x = -8 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"seY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"sfd" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "sfg" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/lv624/ground/river/central_river) -"sfA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null +"sfk" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/structure/window/reinforced/tinted, +/obj/item/clothing/under/colonist, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 }, -/area/lv624/lazarus/robotics) +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "sfO" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/jungle/south_east_jungle) +"sfZ" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "shg" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"shy" = ( -/obj/structure/machinery/chem_master/condimaster, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"sig" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" +"sib" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/medbay) +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "sit" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/grass, /area/lv624/lazarus/main_hall) -"siI" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" +"sjB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/lv624/ground/caves/south_west_caves) -"sjy" = ( -/turf/open/floor/plating{ - icon_state = "platebot" +/obj/structure/bed/chair{ + dir = 1 }, -/area/lv624/lazarus/robotics) +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "sjK" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, @@ -16391,6 +14273,10 @@ "sjL" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/south_central_caves) +"skd" = ( +/obj/structure/surface/table/holotable, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "sks" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -16406,37 +14292,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"skN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) -"slt" = ( -/obj/structure/machinery/light{ +"slJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"slN" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"slR" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"sma" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) "smd" = ( /turf/open/gm/grass/grassbeach/north, /area/lv624/lazarus/yggdrasil) @@ -16444,79 +14311,36 @@ /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) -"smO" = ( -/obj/structure/machinery/light, -/obj/structure/bed/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "sne" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"snE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/sheet/metal{ - amount = 5; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"snH" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"soa" = ( -/turf/open/floor{ - dir = 1; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) -"soF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"spe" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, +"snB" = ( +/obj/item/tool/soap, +/turf/open/floor/whitepurplecorner/east, /area/lv624/lazarus/fitness) "spj" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/river/west_river) -"spq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "vault" +"spn" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/robotics) +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "spX" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 @@ -16537,24 +14361,18 @@ "sqU" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"sre" = ( -/obj/structure/machinery/vending, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"srt" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz2) +"srF" = ( +/turf/open/floor/whiteblue/west, +/area/lv624/lazarus/corporate_dome) "srN" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"srZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) "ssg" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass2, @@ -16567,24 +14385,20 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"stn" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"stq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" +"ssY" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/podhatchfloor, +/area/lv624/lazarus/comms) +"stp" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = 6 }, -/turf/open/floor{ - icon_state = "vault" +/obj/item/weapon/gun/rifle/mar40{ + pixel_y = -3 }, -/area/lv624/lazarus/robotics) +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "sts" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush{ desc = "The oranges aren't done yet... this sucks."; @@ -16594,32 +14408,23 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/caves/sand_temple) -"stW" = ( -/obj/structure/bed/bedroll, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "svb" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"svf" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/carpet/bcarpet09, +/area/lv624/ground/caves/north_central_caves) "svo" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/cheeseburger, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"svA" = ( -/obj/item/storage/box/beakers, -/obj/structure/surface/table, -/obj/structure/sign/safety/biohazard{ - pixel_x = -18 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "svB" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, @@ -16633,6 +14438,10 @@ "swD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/lv624/ground/caves/north_central_caves) +"swK" = ( +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "swO" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -16652,12 +14461,11 @@ "syl" = ( /turf/closed/wall/r_wall/unmeltable, /area/lv624/lazarus/robotics) -"syP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) +"syC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "syU" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -16669,124 +14477,41 @@ /obj/structure/machinery/light, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"szp" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"szq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"szB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) "szD" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"szR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, -/area/lv624/lazarus/main_hall) -"sAe" = ( -/obj/structure/closet, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"sAo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) -"sAv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) "sAV" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/north, /area/lv624/ground/river/central_river) -"sBs" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"sBD" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) -"sCE" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "sDl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grassbeach/west, /area/lv624/lazarus/yggdrasil) -"sDw" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"sDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +"sDp" = ( +/obj/structure/fence, +/turf/open/floor/warning/east, +/area/lv624/ground/barrens/east_barrens) "sEi" = ( /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/barrens/east_barrens) +"sEr" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/loadingarea/east, +/area/lv624/lazarus/quartstorage) "sEs" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/caves/sand_temple) +"sED" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "sFn" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -16806,12 +14531,6 @@ /obj/structure/prop/brazier, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/caves/sand_temple) -"sHk" = ( -/obj/item/clothing/head/militia, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "sHx" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -16821,28 +14540,19 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"sHO" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) +"sHL" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "sIf" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/sleep_male) -"sJm" = ( -/obj/structure/bookcase, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"sJu" = ( +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) +"sJL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "sJM" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) @@ -16850,13 +14560,10 @@ /obj/effect/landmark/yautja_teleport, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"sKj" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +"sKl" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/wood/wood_broken3, +/area/lv624/ground/caves/north_central_caves) "sKE" = ( /turf/closed/wall, /area/lv624/lazarus/chapel) @@ -16872,6 +14579,9 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/west_jungle) +"sKX" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "sKY" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -16881,16 +14591,18 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"sLB" = ( -/obj/structure/bed, -/obj/structure/pipes/vents/pump{ - dir = 4 +"sLy" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/bedsheet/hos, -/turf/open/floor{ - icon_state = "grimy" +/turf/open/floor/whiteblue/east, +/area/lv624/lazarus/corporate_dome) +"sLR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) }, -/area/lv624/lazarus/captain) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "sNb" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, @@ -16904,15 +14616,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"sOk" = ( -/obj/structure/surface/table, -/obj/item/book/manual/research_and_development, -/obj/item/cell/hyper, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) +"sNP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "sOD" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_west_jungle) @@ -16920,41 +14627,19 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/lv624/lazarus/quartstorage/outdoors) -"sOP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "sOR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/dirt, /area/lv624/ground/river/east_river) -"sOZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"sPa" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"sPK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Storage Room" - }, -/turf/open/floor{ - icon_state = "white" - }, +"sPg" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) +"sPX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/flower_vase/bluewhiteflowers, +/turf/open/floor/whiteblue/southeast, /area/lv624/lazarus/corporate_dome) "sPZ" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet, @@ -16982,14 +14667,6 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"sRx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "sRG" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -16998,41 +14675,44 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) -"sRR" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 10; - icon_state = "p_stair_full" +"sSw" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 1 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_jungle) +"sSG" = ( +/obj/item/weapon/sword{ + pixel_x = -6; + pixel_y = 7 }, -/area/lv624/ground/caves/sand_temple) -"sSf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor{ - icon_state = "bluecorner" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 }, -/area/lv624/lazarus/sleep_male) -"sSo" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/comms) -"sSw" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 1 +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) +"sTf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) +/obj/effect/landmark/crap_item, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "sTl" = ( /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/caves/sand_temple) @@ -17043,24 +14723,29 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"sTG" = ( -/obj/item/pipe, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "sTK" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"sUd" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/gm/dirt{ - icon_state = "desert1" +"sUr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/ground/river/east_river) +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) +"sUt" = ( +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/robotics) +"sUy" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass2, +/area/lv624/ground/jungle/north_jungle) +"sUA" = ( +/obj/structure/closet/crate/secure/hydrosec, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "sUS" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/river/east_river) @@ -17075,30 +14760,13 @@ "sVL" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/west_jungle) -"sVW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"sWe" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) "sWm" = ( /obj/effect/landmark/good_item, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"sXe" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) "sXi" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor, @@ -17107,12 +14775,11 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"sXr" = ( -/obj/structure/bed, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) +"sXs" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "sXF" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/main_hall) @@ -17120,100 +14787,59 @@ /obj/item/tool/shovel, /turf/open/gm/dirt, /area/lv624/ground/barrens/west_barrens) -"sXX" = ( -/obj/structure/machinery/conveyor{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) -"sYp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"sYQ" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/lv624/ground/barrens/east_barrens) -"sYU" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"sZf" = ( +"sYA" = ( +/obj/item/clothing/suit/storage/militia/brace, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"sZq" = ( /obj/structure/surface/rack, -/obj/item/device/multitool, -/obj/item/device/multitool, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) +/obj/effect/landmark/costume/butler, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "sZs" = ( /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"taH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/corporate_dome) -"taQ" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/apron, -/obj/item/tool/shovel, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"sZI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light/small, +/obj/effect/landmark/crap_item, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"tac" = ( +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/rifle/mar40/extended, +/obj/item/ammo_magazine/rifle/mar40/extended, +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "tba" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/south_central_jungle) -"tcL" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, +"tbb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"tds" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/plating/platebotc, /area/lv624/lazarus/quartstorage/outdoors) -"tdy" = ( -/obj/structure/closet{ - density = 0; - icon_state = "open"; - opened = 1 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"tdG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/lmg, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "tdL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"tdU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "tdV" = ( /obj/structure/flora/bush/ausbushes/reedbush, /obj/structure/flora/jungle/vines/light_3, @@ -17244,93 +14870,41 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"tfI" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/lv624/lazarus/engineering) -"tgQ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/barrens/south_eastern_jungle_barrens) -"thm" = ( -/obj/item/stock_parts/scanning_module/phasic, -/obj/structure/surface/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" +"tfz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4; + pixel_y = 4 }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"tgR" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights, +/area/lv624/lazarus/landing_zones/lz2) "thv" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"thA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, +"thB" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"thF" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/white, /area/lv624/lazarus/main_hall) -"thC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) "thU" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/south_central_jungle) -"tir" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "garage_lv"; - name = "\improper Garage" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/corporate_dome) -"tiG" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ +"tjf" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"tja" = ( -/obj/structure/fence, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/corporate_dome) "tjo" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) @@ -17344,19 +14918,6 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"tkg" = ( -/obj/structure/surface/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "tkY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/decal/grass_overlay/grass1{ @@ -17364,255 +14925,108 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"tlp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"tlH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 +"tls" = ( +/obj/structure/safe{ + spawnkey = 0 }, +/obj/item/coin/diamond, +/obj/item/m_gift, /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"tlP" = ( -/obj/structure/surface/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"tlT" = ( -/obj/structure/machinery/power/terminal{ dir = 1 }, -/obj/item/clothing/gloves/yellow, -/turf/open/floor{ - icon_state = "platebot" - }, -/area/lv624/lazarus/engineering) -"tmT" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"tnh" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/storage/fancy/cigar, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"tmV" = ( +/obj/item/clothing/under/shorts/blue, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "toI" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/south_nexus_road) -"toN" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) -"tpc" = ( -/turf/open/floor{ - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/main_hall) -"tpt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) +"toJ" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"tpf" = ( +/turf/open/floor/dark, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "tpS" = ( /obj/structure/flora/jungle/vines/light_3, /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"tpY" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "tqT" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) -"tqX" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) -"tst" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) +"trp" = ( +/obj/structure/surface/table, +/obj/item/stack/medical/ointment, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/barrens/east_barrens/ceiling) "tsJ" = ( /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) +"tto" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "Lazarus Landing"; + phone_color = "blue"; + phone_id = "Corporate Office"; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "secure_outer_blast"; + name = "Secure Outer Doors"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) "tty" = ( /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/east_jungle) -"ttE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "ttG" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/main_hall) -"tud" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/hop) "tup" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"tuz" = ( -/turf/open/floor{ - dir = 9; - icon_state = "redfull" +"tur" = ( +/obj/item/tool/minihoe{ + pixel_x = 1; + pixel_y = -1 }, -/area/lv624/lazarus/security) +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "tuR" = ( /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"tuX" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Warrior hide" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"tuZ" = ( -/obj/item/stool, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"tvq" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "tvK" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"twE" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"twU" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) "txK" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/west_tcomms_road) -"txW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 5; - icon_state = "red" - }, -/area/lv624/lazarus/security) -"tyj" = ( -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"tym" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"tyx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) "tyH" = ( /obj/effect/landmark/crap_item, /turf/open/gm/river, @@ -17628,23 +15042,32 @@ }, /turf/open/floor/wood, /area/lv624/ground/caves/north_central_caves) -"tzV" = ( -/obj/structure/machinery/light{ - dir = 1 +"tzb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/turf/open/floor{ - icon_state = "bluecorner" +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 }, -/area/lv624/lazarus/sleep_male) -"tAE" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/whiteyellow/northeast, +/area/lv624/lazarus/corporate_dome) +"tzX" = ( +/obj/item/clothing/under/shorts/black{ + pixel_x = 2; + pixel_y = 2 }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/barber/west, +/area/lv624/lazarus/fitness) +"tAM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/main_hall) +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "tAN" = ( /obj/structure/showcase{ color = "#95948B"; @@ -17665,12 +15088,20 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) +"tBj" = ( +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "tBr" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) +"tBH" = ( +/obj/structure/surface/table, +/obj/item/toy/deck, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "tBQ" = ( /obj/structure/flora/jungle/vines/light_1, /obj/structure/flora/bush/ausbushes/ppflowers, @@ -17688,16 +15119,10 @@ }, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"tCN" = ( -/obj/structure/morgue/sarcophagus, -/obj/item/weapon/twohanded/yautja/glaive/damaged{ - name = "damaged war glaive" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"tCK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whiteblue/north, +/area/lv624/lazarus/medbay) "tCQ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/snacks/carrotcakeslice, @@ -17707,73 +15132,41 @@ /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"tDa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor{ - dir = 1; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) "tDe" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tDn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liason Office" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"tDB" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/obj/item/ammo_magazine/pistol/highpower, -/turf/open/floor{ - icon_state = "cult" +"tDi" = ( +/obj/structure/fence, +/turf/open/floor/plating/warnplate/east, +/area/lv624/ground/river/central_river) +"tDw" = ( +/obj/item/clothing/head/militia, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"tDZ" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/armory) +/turf/open/floor/plating/warnplate/southeast, +/area/lv624/lazarus/engineering) "tEl" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"tEq" = ( -/obj/item/tool/minihoe{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "tEA" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"tED" = ( +"tEF" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_1" }, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"tFB" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "tFF" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) @@ -17798,46 +15191,41 @@ }, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) -"tGs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) -"tHg" = ( -/obj/structure/surface/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/off{ - frequency = 1469 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) -"tHn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor{ - icon_state = "whitebluefull" - }, -/area/lv624/lazarus/medbay) -"tHt" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 8; - icon_state = "loadingarea" - }, +"tGr" = ( +/obj/structure/bookcase, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/book/manual/security_space_law, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) +"tHd" = ( +/turf/open/floor/bot/north, /area/lv624/lazarus/landing_zones/lz1) +"tHs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "tHB" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"tHS" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) +"tIe" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"tIV" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "tJC" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -17845,6 +15233,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"tKr" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "tKs" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, @@ -17854,6 +15249,15 @@ /obj/structure/flora/jungle/alienplant1, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"tKJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"tKL" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/cargo) "tLo" = ( /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/dirtgrassborder/south, @@ -17865,14 +15269,20 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) -"tLH" = ( -/obj/structure/bed/chair/office/light{ +"tLN" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor{ - icon_state = "bluecorner" +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"tLS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Garage"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/sleep_male) +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "tMe" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -17903,17 +15313,6 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"tNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/tool/crowbar, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "tOc" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -17922,6 +15321,11 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"tOz" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "tOA" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -9; @@ -17933,56 +15337,16 @@ /obj/effect/decal/cleanable/blood/gibs/xeno/limb, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tON" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"tPx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"tPE" = ( -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"tQE" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/west_jungle) -"tQG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"tQN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Freezer"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "freezerfloor" +"tPe" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Telecomms APC"; + start_charge = 15 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) +"tPv" = ( +/turf/open/floor/loadingarea/north, +/area/lv624/lazarus/quartstorage) "tQV" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -17998,24 +15362,10 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"tRV" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "tSe" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) -"tSo" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "tSC" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -18038,106 +15388,82 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/lv624/ground/jungle/north_west_jungle) -"tTU" = ( +"tTE" = ( +/turf/open/floor/whiteyellow/west, +/area/lv624/lazarus/main_hall) +"tTQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/platinum, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"tUD" = ( -/obj/structure/machinery/door_control{ - id = "science_blast"; - name = "Science Wing Lockdown"; - pixel_x = 25 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) -"tVa" = ( -/obj/structure/closet, -/obj/item/clothing/under/blackskirt, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"tVi" = ( -/turf/open/gm/coast/east, -/area/lv624/ground/river/central_river) -"tVR" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/lv624/ground/barrens/east_barrens) -"tWc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"tUe" = ( +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) +"tUo" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, -/area/lv624/ground/caves/south_west_caves) -"tWg" = ( -/obj/item/weapon/sword{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/plating/warnplate/east, +/area/lv624/lazarus/engineering) +"tUx" = ( +/obj/structure/largecrate/random, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/warnplate/northwest, +/area/lv624/ground/barrens/east_barrens/ceiling) +"tUI" = ( /obj/structure/showcase{ color = "#95948B"; desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; icon = 'icons/mob/humans/species/r_synthetic.dmi'; icon_state = "Synthetic_Template"; name = "Eternal guardian" }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, +/obj/structure/flora/jungle/vines/heavy, /obj/item/clothing/suit/armor/yautja_flavor{ anchored = 1 }, /obj/item/clothing/shoes/yautja_flavor{ anchored = 1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 }, +/turf/open/floor/corsat/squareswood/north, /area/lv624/ground/caves/sand_temple) +"tVi" = ( +/turf/open/gm/coast/east, +/area/lv624/ground/river/central_river) +"tVE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Nexus Dome Marshal's Quarters"; + req_access_txt = "100" + }, +/turf/open/floor/cult, +/area/lv624/lazarus/captain) +"tVR" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/lv624/ground/barrens/east_barrens) "tWk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/river, /area/lv624/ground/river/west_river) "tWv" = ( /turf/open/gm/coast/beachcorner/south_west, -/area/lv624/ground/barrens/east_barrens) -"tWI" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/structure/surface/rack, -/obj/item/reagent_container/hypospray/autoinjector/tricord, -/obj/effect/landmark/crap_item, -/obj/effect/landmark/crap_item, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"tWK" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) +/area/lv624/ground/barrens/east_barrens) "tWP" = ( /obj/structure/lz_sign/lazarus_sign{ layer = 4 @@ -18179,6 +15505,17 @@ /obj/structure/prop/mech/drill, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"tZx" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -5 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "tZH" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_central_jungle) @@ -18190,19 +15527,11 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"uab" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/cable_coil, -/obj/item/tool/screwdriver{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"tZV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "uaq" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, @@ -18231,12 +15560,6 @@ /obj/effect/decal/grass_overlay/grass1/inner, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"ubM" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 3 - }, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_jungle) "uca" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -18245,113 +15568,38 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/lv624/lazarus/fitness) -"ucs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/grilledcheese, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) "ucQ" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/lazarus/landing_zones/lz2) -"ucX" = ( -/obj/structure/holohoop, -/turf/open/floor{ - dir = 1; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"udd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"udH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) -"udT" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"uet" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"ufc" = ( -/obj/structure/machinery/still, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +"ueA" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "ufg" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"ufF" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"ufn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor{ - icon_state = "bar" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/lv624/lazarus/canteen) +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) "ufZ" = ( /mob/living/simple_animal/bat, /turf/open/gm/grass/grass1, /area/lv624/ground/caves/north_central_caves) -"ugj" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) -"ugv" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "ugM" = ( /obj/structure/flora/jungle/vines/heavy{ pixel_y = 26 @@ -18365,24 +15613,11 @@ "uhm" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uht" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "vault" - }, -/area/lv624/lazarus/robotics) -"uik" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"uib" = ( +/obj/effect/vehicle_spawner/van/decrepit, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "uiI" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -18397,14 +15632,12 @@ "uiN" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/colony/north_nexus_road) -"uje" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/candle, -/turf/open/floor{ - dir = 8; - icon_state = "chapel" - }, -/area/lv624/lazarus/chapel) +"uiS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/red, +/area/lv624/lazarus/security) "ujE" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass2, @@ -18416,36 +15649,19 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"ukl" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "ukz" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"ulp" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/effect/glowshroom, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "ulr" = ( /obj/structure/platform/mineral/sandstone/runed, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"ult" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/candle, +/turf/open/floor/chapel/west, +/area/lv624/lazarus/chapel) "ulz" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1, @@ -18472,6 +15688,10 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) +"umV" = ( +/obj/structure/flora/jungle/vines/light_2, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz1) "unM" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 2; @@ -18482,12 +15702,27 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"uon" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor{ - icon_state = "white" +"unY" = ( +/obj/structure/prop/mech/tesla_energy_relay{ + layer = 2.5 }, -/area/lv624/lazarus/research) +/obj/structure/largecrate/random, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) +"uoa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/whiteblue/southeast, +/area/lv624/lazarus/corporate_dome) "uoH" = ( /obj/structure/surface/table, /turf/open/floor/plating, @@ -18523,6 +15758,15 @@ "upT" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) +"uqj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/lv624/ground/barrens/south_eastern_barrens) "uqA" = ( /obj/structure/cargo_container/ferret/right, /turf/open/floor, @@ -18538,20 +15782,10 @@ /obj/structure/largecrate/random, /turf/open/floor, /area/lv624/lazarus/landing_zones/lz1) -"usj" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) +"usn" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) "usx" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/river/east_river) @@ -18570,26 +15804,19 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"uuf" = ( -/obj/structure/machinery/light/small{ +"uuu" = ( +/obj/structure/surface/table, +/obj/effect/landmark/crap_item, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_y = 3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) -"uuD" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) +"uuS" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_west_jungle) "uvs" = ( /obj/item/stool, /turf/open/gm/dirt, @@ -18602,71 +15829,58 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"uvC" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "bot" +"uvE" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/lv624/lazarus/landing_zones/lz1) +/obj/structure/platform/mineral/sandstone/runed{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/barrens/south_eastern_barrens) "uvJ" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/sand_temple) -"uvO" = ( -/obj/structure/platform_decoration, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"uwb" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"uwh" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"uwO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/tool/weldingtool/hugetank, -/turf/open/floor{ - icon_state = "cult" +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) +"uwS" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/area/lv624/ground/caves/south_west_caves) +/obj/item/clothing/under/colonist, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "uxL" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_central_caves) -"uyh" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/ground/barrens/containers) "uyq" = ( /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) -"uyu" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 4; - icon_state = "warning" +"uyA" = ( +/obj/structure/closet{ + density = 0; + icon_state = "open"; + opened = 1 }, -/area/lv624/ground/barrens/east_barrens) +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "uzf" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"uzk" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "redyellowfull" - }, -/area/lv624/ground/barrens/west_barrens/ceiling) "uzr" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -18682,16 +15896,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uzA" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 9 - }, -/turf/open/shuttle{ - icon_state = "floor4" - }, -/area/lv624/lazarus/crashed_ship_containers) "uzT" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8 @@ -18718,21 +15922,18 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/north_tcomms_road) -"uBd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 15 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "uBg" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_barrens) +"uCU" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/tool/candle, +/obj/item/tool/match{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/carpet/bcarpet08, +/area/lv624/ground/caves/north_central_caves) "uDh" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/adv{ @@ -18746,17 +15947,6 @@ /obj/structure/flora/jungle/planttop1, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) -"uDq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "uDS" = ( /obj/structure/cargo_container/wy/left, /turf/open/floor, @@ -18768,6 +15958,10 @@ "uEo" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/lv624/ground/jungle/west_jungle) +"uEq" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/southwest, +/area/lv624/ground/river/east_river) "uEu" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall, @@ -18779,6 +15973,12 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"uGe" = ( +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "uGq" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor, @@ -18802,76 +16002,32 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"uHA" = ( -/obj/structure/filingcabinet/security{ - desc = "A large cabinet with hard copy security records."; - name = "Security Records" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "redcorner" - }, -/area/lv624/lazarus/security) "uIe" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"uIh" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) "uIj" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 8 }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"uIm" = ( -/obj/structure/surface/table, -/obj/structure/mirror{ - pixel_y = -30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) -"uIs" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/lv624/ground/jungle/west_jungle/ceiling) -"uIL" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" +"uIo" = ( +/turf/open/floor/plating/asteroidwarning/west, +/area/lv624/lazarus/landing_zones/lz2) +"uIK" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 8; + icon_state = "p_stair_full" }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/caves/sand_temple) +"uIT" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light, +/turf/open/floor/bluecorner, /area/lv624/lazarus/sleep_male) -"uIM" = ( -/obj/structure/flora/jungle/vines/heavy{ - pixel_y = 26 - }, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) "uJr" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -18896,34 +16052,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"uLq" = ( -/obj/item/tool/pickaxe/jackhammer{ - desc = "Cracks rocks with sonic blasts, perfect for killing cave lizards. This one is dull and nearly useless."; - force = 3; - name = "display jackhammer" - }, -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor{ - icon_state = "wood" - }, -/area/lv624/lazarus/main_hall) -"uLN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) +"uKN" = ( +/turf/open/floor/whitebluecorner/north, +/area/lv624/lazarus/corporate_dome) +"uLI" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "uLZ" = ( /obj/structure/surface/rack, /obj/item/storage/fancy/cigarettes/wypacket, @@ -18933,41 +16068,49 @@ /obj/structure/flora/bush/ausbushes/palebush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) -"uMr" = ( -/obj/structure/bed/alien, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"uMx" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) "uNa" = ( /obj/structure/prop/brazier, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"uNn" = ( -/obj/item/tool/pickaxe/drill, -/turf/open/shuttle{ - icon_state = "floor4" +"uNl" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/lv624/lazarus/crashed_ship_containers) +/turf/open/floor/whiteblue/northwest, +/area/lv624/lazarus/corporate_dome) +"uNt" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/whiteyellow/east, +/area/lv624/lazarus/corporate_dome) +"uNx" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "uNz" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) +"uNL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/whiteblue/southwest, +/area/lv624/lazarus/corporate_dome) "uNR" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/river, /area/lv624/ground/river/east_river) +"uNU" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "uNW" = ( /obj/structure/largecrate/supply/floodlights, /obj/item/toy/dice{ @@ -18977,6 +16120,10 @@ /obj/item/spacecash/c10, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"uOs" = ( +/obj/item/device/analyzer, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "uOy" = ( /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -18994,14 +16141,24 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"uQS" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light/small{ - dir = 8 +"uQF" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/obj/item/device/radio/off{ + frequency = 1469 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"uRa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/obj/effect/landmark/good_item, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"uRd" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whiteblue/southwest, /area/lv624/lazarus/main_hall) "uRi" = ( /obj/effect/landmark/crap_item, @@ -19010,14 +16167,6 @@ "uRr" = ( /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"uRt" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) "uRY" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/machinery/door/poddoor/almayer{ @@ -19033,30 +16182,33 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"uSH" = ( -/turf/open/floor{ - icon_state = "dark" +"uSQ" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/structure/surface/rack, +/obj/item/reagent_container/hypospray/autoinjector/tricord, +/obj/effect/landmark/crap_item, +/obj/effect/landmark/crap_item, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"uSR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + density = 0; + icon_state = "door_open"; + name = "\improper Robotics Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "uSU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"uTn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/clothing/ears/earmuffs, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor{ - dir = 9; - icon_state = "red" - }, -/area/lv624/lazarus/security) +"uSZ" = ( +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) "uTG" = ( /turf/closed/wall/sulaco, /area/lv624/ground/barrens/north_east_barrens) @@ -19070,14 +16222,11 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/east_jungle) -"uUL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) +"uVA" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/carpet/bcarpet02, +/area/lv624/ground/caves/north_central_caves) "uVT" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -19101,53 +16250,22 @@ /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"uWB" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/central_river) -"uWF" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light, -/obj/item/tool/pen/clicky, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"uWI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor{ - dir = 8; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) "uWM" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/open/gm/coast/south, /area/lv624/ground/river/central_river) -"uWO" = ( -/obj/structure/surface/table, -/obj/structure/machinery/door/window/westright{ - layer = 2.9 - }, -/obj/item/paper_bin, -/obj/item/tool/pen, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) "uWU" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/colony/west_nexus_road) +"uXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) "uXS" = ( /obj/structure/flora/jungle/alienplant1, /turf/open/gm/grass/grass1, @@ -19156,69 +16274,42 @@ /obj/structure/machinery/landinglight/ds2/delaytwo, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz2) -"uYE" = ( -/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, -/area/lv624/ground/jungle/south_east_jungle) -"uZf" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/effect/landmark/hunter_primary, -/turf/open/gm/grass/grass1, -/area/lv624/ground/jungle/north_east_jungle) -"uZu" = ( -/turf/open/gm/dirtgrassborder/south, -/area/lv624/ground/jungle/north_east_jungle) -"uZZ" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/device/flashlight/lantern, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/lv624/ground/caves/north_central_caves) -"vaF" = ( -/obj/structure/bed, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"vaV" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - name = "Lurker Hide" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"uYD" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + name = "\improper Nexus Dome Command Quarter"; + req_access_txt = "100" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/wood, +/area/lv624/lazarus/hop) +"uYE" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/lv624/ground/jungle/south_east_jungle) +"uZd" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/south_central_jungle) +"uZf" = ( +/obj/structure/flora/jungle/vines/heavy, +/obj/effect/landmark/hunter_primary, +/turf/open/gm/grass/grass1, +/area/lv624/ground/jungle/north_east_jungle) +"uZu" = ( +/turf/open/gm/dirtgrassborder/south, +/area/lv624/ground/jungle/north_east_jungle) +"vbe" = ( +/turf/open/floor/plating/warnplate/north, +/area/lv624/lazarus/robotics) +"vbM" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/lazarus/robotics) "vbO" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"vcl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/coatrack, -/obj/item/clothing/head/soft/sec/corp{ - pixel_y = 11; - pixel_x = -4 - }, -/turf/open/floor{ - dir = 6; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) +"vce" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "vct" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, @@ -19235,12 +16326,10 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/east_river) -"veN" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/medbay) +"vek" = ( +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "veW" = ( /obj/item/ammo_magazine/rifle/l42a/abr40, /obj/structure/barricade/sandbags, @@ -19264,55 +16353,43 @@ "vgI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/barrens/south_eastern_barrens) -"vhi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) -"viw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 26 - }, -/obj/effect/landmark/good_item, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) "viB" = ( /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_central_jungle) -"viO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"viG" = ( +/obj/effect/landmark/lv624/fog_blocker, +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/ground/river/central_river) +"viJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"viP" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_x = -30 }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "vja" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, /area/lv624/ground/colony/north_nexus_road) -"vjD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "science_blast"; - layer = 3.3; - name = "\improper Science Wing Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/research/colony{ - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/research) +"vjY" = ( +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"vkh" = ( +/obj/structure/largecrate, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "vkv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/east_central_jungle) +"vkF" = ( +/obj/structure/bed, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "vkI" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -19338,6 +16415,9 @@ /obj/structure/fence, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/colony/west_nexus_road) +"vlQ" = ( +/turf/open/floor/red/northwest, +/area/lv624/lazarus/security) "vlS" = ( /obj/structure/surface/rack, /obj/item/storage/box/beakers, @@ -19347,32 +16427,26 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/river/east_river) -"vmC" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/lv624/ground/colony/telecomm/sw_lz2) "vmU" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/coast/east, /area/lv624/ground/barrens/east_barrens) -"vnw" = ( -/obj/structure/safe/floor{ - name = "safe"; - spawnkey = 0 - }, -/turf/open/floor{ - icon_state = "grimy" +"vnc" = ( +/turf/open/floor/whiteyellow/north, +/area/lv624/lazarus/main_hall) +"vnu" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/lv624/lazarus/captain) -"vnG" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/window/reinforced, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/wood, +/area/lv624/lazarus/main_hall) "vnV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -19395,20 +16469,9 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"voL" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) -"vpa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "Hydroponics" - }, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) +"vos" = ( +/turf/open/floor/white, +/area/lv624/lazarus/chapel) "vpc" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/robotics) @@ -19422,35 +16485,25 @@ }, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"vpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"vqp" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/river/east_river) +"vpJ" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/red/east, +/area/lv624/lazarus/security) +"vpX" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"vqh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest/security, +/turf/open/floor/red, +/area/lv624/lazarus/security) "vqx" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_tcomms_road) -"vqB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/ground/barrens/north_east_barrens/ceiling) "vqW" = ( /obj/structure/bed/alien{ color = "#aba9a9" @@ -19460,14 +16513,10 @@ "vra" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/north_jungle) -"vrb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) +"vrc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "vrg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/south_central_jungle) @@ -19475,44 +16524,28 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_west_jungle) +"vrJ" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/lv624/ground/colony/telecomm/sw_lz2) +"vrL" = ( +/turf/open/floor/cult, +/area/lv624/lazarus/armory) "vsp" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, /area/lv624/ground/colony/west_nexus_road) -"vsD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/energy/yautja/plasma_caster{ - anchored = 1; - desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; - name = "damaged plasma caster" - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"vsN" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "vsT" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_east_caves) -"vsV" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"vtq" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/lv624/lazarus/landing_zones/lz2) -"vtv" = ( -/obj/structure/surface/table, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) +"vtl" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "vtJ" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, @@ -19525,23 +16558,21 @@ /obj/structure/largecrate/random, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"vuJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Leisure Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, +"vuw" = ( +/turf/open/floor/warnwhite/southwest, /area/lv624/lazarus/fitness) "vvm" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/west, /area/lv624/ground/jungle/west_central_jungle) +"vvv" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/bot/north, +/area/lv624/lazarus/landing_zones/lz1) +"vvy" = ( +/turf/open/floor/warning/northeast, +/area/lv624/lazarus/landing_zones/lz2) "vvP" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/plumphelmet{ pixel_x = 8; @@ -19570,6 +16601,18 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/river/central_river) +"vyM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/chapel/east, +/area/lv624/lazarus/chapel) "vyR" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 10 @@ -19587,6 +16630,19 @@ /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"vzC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) +"vzE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/research) "vzK" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Storage Dome"; @@ -19595,53 +16651,31 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"vzR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" +"vzO" = ( +/obj/item/stack/sheet/wood{ + amount = 2 }, -/area/lv624/lazarus/quart) +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage) "vzS" = ( /obj/structure/bed/alien{ color = "#aba9a9" }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/sand_temple) -"vAi" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowcorner" - }, -/area/lv624/lazarus/corporate_dome) -"vBa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 6; - icon_state = "whiteblue" - }, +"vAy" = ( +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"vAE" = ( +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"vAV" = ( +/turf/open/floor/whitegreencorner/west, /area/lv624/lazarus/main_hall) -"vBb" = ( -/obj/structure/bed, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_x = -30 - }, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"vBe" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/carpet{ - icon_state = "bcarpet02" - }, -/area/lv624/ground/caves/north_central_caves) +"vBz" = ( +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "vBD" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -19662,26 +16696,6 @@ "vBH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) -"vBP" = ( -/turf/open/floor{ - dir = 10; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) -"vBT" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -5 - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "vBY" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, @@ -19693,6 +16707,15 @@ }, /turf/open/gm/dirt, /area/lv624/ground/colony/west_tcomms_road) +"vCl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"vCp" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_barrens) "vDx" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/dirt, @@ -19700,54 +16723,10 @@ "vDH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) -"vEg" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Central Hallway APC"; - pixel_y = 30; - start_charge = 0 - }, -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "vEy" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_central_jungle) -"vES" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/captain) -"vEU" = ( -/obj/item/clothing/under/shorts/black{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/fitness) -"vFv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "vFz" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -19763,10 +16742,26 @@ }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"vGT" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vHb" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/south_west_jungle) +"vHR" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "vHT" = ( /obj/item/weapon/broken_bottle, /obj/effect/landmark/lv624/fog_blocker, @@ -19786,13 +16781,6 @@ /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_central_caves) -"vII" = ( -/obj/structure/flora/pottedplant, -/obj/structure/machinery/light/spot, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "vJq" = ( /obj/effect/decal/grass_overlay/grass1/inner, /obj/structure/flora/bush/ausbushes/ausbush, @@ -19802,26 +16790,28 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) +"vKH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "vKL" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"vKU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) -"vLc" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" +"vKM" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"vKV" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/lv624/ground/river/east_river) +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vLo" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -19840,13 +16830,6 @@ /obj/structure/surface/rack, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"vLU" = ( -/obj/structure/closet/crate/secure/hydrosec, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) "vMj" = ( /obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ id = "colony_sec_armory"; @@ -19872,24 +16855,6 @@ /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz1) -"vNg" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"vNh" = ( -/obj/structure/machinery/door/airlock/almayer/research/colony{ - dir = 1; - locked = 1; - name = "\improper Research Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "vNk" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_2, @@ -19903,30 +16868,9 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_jungle) -"vOc" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"vOo" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7 - }, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/lv624/ground/caves/north_central_caves) +"vOz" = ( +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/engineering) "vPJ" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, @@ -19941,20 +16885,34 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"vPQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "vPR" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_jungle) +"vQv" = ( +/obj/structure/bed, +/obj/structure/machinery/light, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) "vQz" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/lv624/ground/barrens/containers) -"vRf" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"vQG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/lv624/lazarus/medbay) +"vQJ" = ( +/obj/effect/landmark/good_item, +/turf/open/floor/dark, +/area/lv624/lazarus/comms) "vRi" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/flora/jungle/vines/light_1, @@ -19968,97 +16926,54 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/east_central_jungle) +"vTc" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) "vTi" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"vTz" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor{ - icon_state = "grimy" - }, -/area/lv624/lazarus/hop) -"vUg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteyellow" - }, -/area/lv624/lazarus/corporate_dome) "vUo" = ( /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/sand_temple) -"vUL" = ( -/obj/structure/largecrate, -/turf/open/floor{ - dir = 1; - icon_state = "bot" - }, -/area/lv624/lazarus/landing_zones/lz1) "vVx" = ( /turf/closed/wall/wood, /area/lv624/ground/caves/north_central_caves) -"vVA" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - name = "Medbay APC"; - pixel_y = 30; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"vVE" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating{ - icon_state = "warnplate" +"vWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/lv624/lazarus/engineering) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) "vWv" = ( /turf/open/gm/river, /area/lv624/ground/caves/sand_temple) -"vWw" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" +"vWQ" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/area/lv624/lazarus/kitchen) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"vXc" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) +"vXK" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light, +/obj/item/tool/wrench, +/obj/item/tool/weldingtool, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "vXT" = ( /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_barrens) -"vYg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"vYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/ground/river/west_river) -"vYw" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) "vYz" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 @@ -20069,41 +16984,9 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"vZN" = ( -/obj/structure/surface/table/reinforced{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) "vZZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/lv624/ground/jungle/south_west_jungle) -"waq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/airless{ - dir = 5; - icon_state = "asteroidfloor" - }, -/area/lv624/ground/barrens/north_east_barrens) -"waB" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"wbj" = ( -/obj/structure/fence, -/turf/open/floor{ - dir = 5; - icon_state = "warning" - }, -/area/lv624/ground/barrens/containers) "wbp" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, @@ -20114,112 +16997,43 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_central_caves) +"wbO" = ( +/obj/structure/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "wbQ" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"wcu" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/mineral/sandstone/runed, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"wcD" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/caves/sand_temple) -"wcI" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor{ - dir = 8; - icon_state = "barber" - }, -/area/lv624/lazarus/kitchen) -"wdK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitebluecorner" - }, -/area/lv624/lazarus/corporate_dome) -"wea" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"wbS" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/cult, +/area/lv624/lazarus/armory) +"wdl" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/lv624/ground/caves/sand_temple) +/obj/structure/bed/chair, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) "weT" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass1, /area/lv624/lazarus/quartstorage/outdoors) -"weW" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/structure/flora/jungle/vines/heavy, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"wfh" = ( +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) +"wfv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "wfE" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/lv624/ground/jungle/south_west_jungle/ceiling) -"wfK" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, -/area/lv624/lazarus/quartstorage) "wgg" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass/grass2, @@ -20233,89 +17047,63 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/south, /area/lv624/ground/river/east_river) -"whl" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) -"whL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc{ +"who" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "Geothermal APC"; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "delivery" + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/engineering) +/turf/open/floor/dark, +/area/lv624/lazarus/corporate_dome) "whT" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"wie" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +"whY" = ( +/turf/open/floor/asteroidwarning/north, +/area/lv624/ground/colony/telecomm/sw_lz2) +"wiv" = ( +/obj/structure/flora/jungle/vines/heavy{ + pixel_y = 26 }, -/area/lv624/ground/barrens/west_barrens) +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "wiV" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) -"wju" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "wjK" = ( /obj/structure/platform_decoration/mineral/sandstone/runed{ dir = 1 }, /turf/open/floor/sandstone/runed, /area/lv624/ground/barrens/south_eastern_barrens) -"wkz" = ( -/obj/structure/grille, -/obj/effect/landmark/lv624/fog_blocker, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/lv624/ground/river/east_river) "wkZ" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/south_west_jungle) +"wls" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "wlA" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"wmd" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) -"wmf" = ( -/obj/structure/cargo_container/seegson/mid, -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage/outdoors) +"wnd" = ( +/obj/structure/fence, +/turf/open/floor/warning/northwest, +/area/lv624/ground/barrens/containers) "wnx" = ( /obj/structure/prop/brazier/campfire, /turf/open/gm/dirt, @@ -20337,19 +17125,6 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"wpe" = ( -/obj/structure/bed{ - desc = "For prime comfort."; - name = "fancy bed" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "wpq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -20368,22 +17143,44 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"wqW" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/asteroidfloor/north, +/area/lv624/ground/colony/telecomm/cargo) +"wra" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold{ + amount = 2 + }, +/obj/item/stack/sheet/mineral/platinum{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "wrp" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"wrt" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/science, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "wrz" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/west_central_jungle) +"wrH" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"wrK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"wrS" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/sleep_female) "wsb" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 6; @@ -20418,6 +17215,10 @@ /obj/item/cell/high, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) +"wtJ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) "wtV" = ( /obj/item/reagent_container/food/snacks/wy_chips/pepper, /obj/structure/surface/table/woodentable/poor, @@ -20438,88 +17239,59 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/central_caves) -"wvt" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/turf/open/floor{ - dir = 9; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/corporate_dome) +"wuI" = ( +/obj/structure/surface/table, +/obj/structure/prop/mech/drill, +/turf/open/floor/vault2, +/area/lv624/lazarus/robotics) +"wuQ" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) "wvv" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 5 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"wvI" = ( +/turf/open/gm/dirt/desert1, +/area/lv624/ground/barrens/west_barrens) "wvN" = ( /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"wwn" = ( -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/comms) "wwI" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/barrens/west_barrens) +"wwS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plating/warnplate/north, +/area/lv624/ground/barrens/east_barrens/ceiling) "wxh" = ( /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) -"wxo" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) -"wxL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) -"wxV" = ( -/obj/structure/flora/jungle/vines/light_2, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2; - name = "\improper Atmospherics Condenser" +"wxs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/turf/open/floor/plating{ - icon_state = "platebotc" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/lv624/lazarus/yggdrasil) +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"wxC" = ( +/turf/open/floor/warning/northwest, +/area/lv624/lazarus/landing_zones/lz1) "wxX" = ( /obj/structure/platform_decoration/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"wyb" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/clothing/suit/armor/vest/security, -/obj/item/clothing/suit/armor/vest/security, -/turf/open/floor{ - dir = 4; - icon_state = "red" - }, -/area/lv624/lazarus/security) +"wyP" = ( +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "wzq" = ( /obj/structure/flora/jungle/planttop1, /turf/closed/wall, @@ -20549,19 +17321,49 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/east_jungle) +"wzU" = ( +/turf/open/floor/chapel, +/area/lv624/lazarus/chapel) "wAc" = ( /turf/open/floor/plating, /area/lv624/lazarus/main_hall) +"wAk" = ( +/obj/structure/flora/pottedplant, +/obj/structure/machinery/light/spot{ + dir = 1 + }, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "wAl" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_jungle) +"wAJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright{ + dir = 2; + layer = 2.9 + }, +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "wAO" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"wBy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + name = "Water Filtration Plant"; + req_access_txt = "100" + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/east_barrens/ceiling) +"wBA" = ( +/obj/structure/machinery/chem_master/condimaster, +/obj/structure/surface/table, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) "wBK" = ( /turf/open/gm/river, /area/lv624/lazarus/yggdrasil) @@ -20580,6 +17382,21 @@ /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/rock/brown, /area/lv624/ground/jungle/west_jungle) +"wCN" = ( +/obj/structure/surface/table, +/obj/structure/mirror{ + pixel_x = 30 + }, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/toilet) +"wCQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) "wDr" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/caves/north_central_caves) @@ -20587,57 +17404,61 @@ /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/river, /area/lv624/ground/river/central_river) -"wEn" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/lv624/ground/barrens/south_eastern_barrens) +"wEe" = ( +/turf/open/gm/dirt/desert0, +/area/lv624/ground/barrens/west_barrens) "wED" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"wFz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) -"wGi" = ( -/obj/structure/surface/table, -/obj/item/device/analyzer/plant_analyzer, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) -"wGk" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 6; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz1) +"wFB" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) +"wFM" = ( +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/barrens/central_barrens) "wGF" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/plating, /area/lv624/lazarus/landing_zones/lz1) +"wGI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "wGX" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/jungle/west_jungle) +"wHx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "wHI" = ( /obj/effect/landmark/hunter_primary, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/west_jungle) +"wHK" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "wHW" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/closed/wall/rock/brown, @@ -20645,53 +17466,37 @@ "wIn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/north_jungle) -"wIx" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) -"wIE" = ( -/obj/structure/machinery/bot/mulebot{ - auto_pickup = 0; - auto_return = 0; - health = 1; - on = 0 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/lazarus/quart) +"wIS" = ( +/obj/structure/inflatable/door, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "wJi" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/angel, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/north_west_caves) -"wJp" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/barrens/west_barrens) "wJt" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/lv624/ground/caves/north_central_caves) -"wJD" = ( -/obj/item/stack/sheet/wood{ - amount = 2 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/quartstorage) +"wJu" = ( +/obj/effect/landmark/crap_item, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"wJy" = ( +/obj/structure/bed/chair/dropship/pilot, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"wJR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"wJS" = ( +/turf/open/floor/plating/asteroidwarning/southwest, +/area/lv624/lazarus/landing_zones/lz2) "wKl" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; @@ -20709,17 +17514,21 @@ /obj/structure/flora/jungle/planttop1, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) -"wKy" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/jungle/south_west_jungle/ceiling) +"wKz" = ( +/turf/open/gm/dirt/desert2, +/area/lv624/ground/river/east_river) +"wKD" = ( +/turf/open/floor/wood/wood_broken, +/area/lv624/ground/caves/north_central_caves) "wKI" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/jungle/west_jungle) +"wKU" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "wLU" = ( /obj/structure/surface/rack, /obj/item/ore/silver, @@ -20729,19 +17538,37 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) -"wMx" = ( +"wMp" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/lv624/ground/caves/sand_temple) +"wMC" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/south_eastern_jungle_barrens) +"wMH" = ( /obj/structure/surface/table, -/obj/item/trash/tray, -/turf/open/floor{ - dir = 8; - icon_state = "barber" +/obj/structure/machinery/door/window/westright{ + layer = 2.9 }, -/area/lv624/lazarus/kitchen) -"wMT" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/obj/item/paper_bin, +/obj/item/tool/pen, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) +"wMK" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/landing_zones/lz2) +"wMQ" = ( +/obj/structure/surface/table, +/obj/item/poster, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) +"wNh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/lv624/ground/caves/south_west_caves) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "wNw" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -20749,6 +17576,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/barrens/south_eastern_barrens) +"wNx" = ( +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "wOs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/lv624/fog_blocker, @@ -20757,6 +17588,10 @@ "wOA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/lv624/ground/caves/sand_temple) +"wOI" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/platebotc, +/area/lv624/lazarus/quartstorage/outdoors) "wOJ" = ( /obj/structure/flora/jungle/vines/light_2, /turf/open/gm/grass/grass1, @@ -20764,20 +17599,36 @@ "wOL" = ( /turf/open/gm/dirt, /area/lv624/ground/colony/north_nexus_road) +"wPw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/turf/open/floor/whiteblue/northeast, +/area/lv624/lazarus/corporate_dome) "wPx" = ( /turf/open/floor, /area/lv624/lazarus/main_hall) -"wQv" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" +"wPW" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/lattice{ + layer = 2.9 }, +/turf/open/floor/plating/warnplate, /area/lv624/lazarus/engineering) +"wQt" = ( +/obj/structure/filingcabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "wQM" = ( /obj/structure/flora/bush/ausbushes/pointybush, /turf/open/gm/dirtgrassborder/west, @@ -20793,22 +17644,10 @@ }, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"wRA" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/main_hall) "wSP" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/lazarus/landing_zones/lz2) -"wTf" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/lv624/ground/caves/west_caves) "wTl" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /obj/effect/landmark/lv624/fog_blocker, @@ -20824,58 +17663,67 @@ /obj/structure/flora/jungle/vines/light_3, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"wTw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"wTQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Engineering Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/delivery, +/area/lv624/lazarus/engineering) "wUB" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/north_west_jungle) "wUM" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/research) +"wUW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = -30 + }, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) "wUX" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"wUY" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor{ - dir = 9; - icon_state = "green" - }, -/area/lv624/lazarus/hydroponics) "wWl" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"wWm" = ( -/obj/structure/flora/jungle/vines/light_1, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "wWn" = ( /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/west, /area/lv624/ground/river/east_river) -"wWU" = ( -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/lv624/ground/caves/sand_temple) -"wXA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" +"wWs" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/loadout/clf, +/turf/open/shuttle/bright_red, +/area/lv624/lazarus/crashed_ship_containers) +"wXg" = ( +/obj/structure/machinery/light, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/area/lv624/lazarus/main_hall) +/obj/structure/platform, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"wXN" = ( +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/whiteyellowfull/east, +/area/lv624/ground/jungle/south_west_jungle/ceiling) "wYK" = ( /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, @@ -20884,17 +17732,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/east_jungle) -"wZy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "wZL" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/coast/south, @@ -20915,11 +17752,9 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xaL" = ( -/turf/open/floor/plating{ - icon_state = "platebotc" - }, -/area/lv624/lazarus/quartstorage) +"xaI" = ( +/turf/open/floor/asteroidwarning/west, +/area/lv624/ground/colony/telecomm/sw_lz2) "xba" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 9 @@ -20929,78 +17764,33 @@ "xbz" = ( /turf/closed/wall/rock/brown, /area/lv624/ground/caves/north_east_caves) -"xbA" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/lv624/ground/caves/sand_temple) "xbY" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirt, /area/lv624/ground/barrens/east_barrens) -"xci" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration/mineral/sandstone/runed{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellowfull" - }, -/area/lv624/ground/barrens/south_eastern_barrens) -"xdV" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/central_barrens) -"xen" = ( +"xcV" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) +"xdd" = ( /obj/structure/surface/rack, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/kitchen) -"xeM" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/weapon/sword{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = 7 }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -7 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) +"xdM" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Secure Vault APC"; + start_charge = 200 }, -/area/lv624/ground/caves/sand_temple) +/turf/open/floor/greengrid, +/area/lv624/lazarus/secure_storage) "xfl" = ( /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/jungle/east_jungle) @@ -21008,13 +17798,6 @@ /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_central_jungle) -"xfv" = ( -/obj/structure/flora/jungle/vines/heavy, -/turf/open/floor{ - dir = 4; - icon_state = "warning" - }, -/area/lv624/lazarus/landing_zones/lz2) "xgm" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/bush/ausbushes/var3/brflowers, @@ -21036,52 +17819,58 @@ }, /turf/open/gm/grass/grass2, /area/lv624/ground/jungle/north_east_jungle) -"xgO" = ( -/obj/structure/flora/jungle/vines/heavy, -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 10; - icon_state = "warning" +"xhM" = ( +/obj/structure/platform_decoration/mineral/sandstone/runed{ + dir = 4 }, -/area/lv624/lazarus/landing_zones/lz2) +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/sand_temple) "xin" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, /area/lv624/lazarus/landing_zones/lz2) -"xiC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ +"xiK" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/lv624/lazarus/engineering) -"xjr" = ( -/obj/structure/flora/jungle/vines/light_3, -/turf/open/floor{ - dir = 9; - icon_state = "warning" +/obj/structure/flora/jungle/vines/heavy, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/landing_zones/lz1) -"xkq" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +/obj/item/clothing/shoes/yautja_flavor{ + anchored = 1 }, -/area/lv624/lazarus/quartstorage) +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) +"xiZ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/green/northwest, +/area/lv624/lazarus/hydroponics) "xky" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 4 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_east_caves) +"xlu" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xlC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/grass/grass1, @@ -21094,19 +17883,54 @@ /obj/effect/landmark/corpsespawner/clf, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) -"xnj" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor{ - dir = 4; - icon_state = "whiteyellow" +"xnh" = ( +/obj/structure/disposalpipe/broken{ + dir = 1 }, -/area/lv624/lazarus/corporate_dome) +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/west_river) +"xni" = ( +/obj/structure/flora/jungle/vines/light_1, +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning, +/area/lv624/lazarus/landing_zones/lz2) +"xnu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/explosive/grenade/high_explosive/stick, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = 6 + }, +/obj/item/explosive/grenade/high_explosive/stick{ + pixel_x = -6 + }, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) "xnz" = ( /obj/structure/prop/dam/truck{ dir = 1 }, /turf/open/gm/dirt, /area/lv624/ground/barrens/north_east_barrens) +"xoE" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/main_hall) +"xoU" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/freezerfloor, +/area/lv624/lazarus/kitchen) +"xoY" = ( +/obj/item/bedsheet/rd, +/obj/item/weapon/pole/fancy_cane, +/obj/structure/bed{ + desc = "For prime comfort."; + name = "fancy bed" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/grimy, +/area/lv624/lazarus/hop) "xpb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -21115,43 +17939,26 @@ }, /turf/open/floor/sandstone/runed, /area/lv624/ground/caves/south_east_caves) -"xpi" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/lv624/ground/barrens/central_barrens) -"xpn" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor{ - icon_state = "bluecorner" - }, -/area/lv624/lazarus/sleep_male) -"xpt" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Nexus Dome Canteen"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - icon_state = "bar" +"xpJ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -12 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/vault2/west, +/area/lv624/lazarus/quartstorage) "xpM" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xpS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Female Dormitories"; - req_access_txt = "100" - }, -/turf/open/floor{ - dir = 9; - icon_state = "purple" +"xpW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Nexus Dome Canteen"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/sleep_female) +/turf/open/floor/bar, +/area/lv624/lazarus/kitchen) "xpY" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/lv624/ground/jungle/north_west_jungle) @@ -21163,53 +17970,29 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) -"xrs" = ( -/obj/structure/machinery/power/apc{ - start_charge = 0 - }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +"xru" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/flashlight{ + pixel_y = 5 }, -/area/lv624/ground/colony/telecomm/sw_lz2) +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) +"xrA" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "xso" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) -"xsJ" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/lazarus/armory) -"xsO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/lv624/ground/barrens/east_barrens/ceiling) -"xsR" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/mime, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) -"xtq" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) +"xtk" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/lmg, +/turf/open/floor/vault2/west, +/area/lv624/ground/barrens/north_east_barrens/ceiling) +"xtS" = ( +/turf/open/floor/asteroidplating, +/area/lv624/ground/caves/north_central_caves) "xtX" = ( /obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ name = "\improper Strange Temple" @@ -21220,16 +18003,6 @@ /obj/structure/largecrate/black_market/clf_supplies, /turf/open/gm/dirt, /area/lv624/lazarus/crashed_ship_containers) -"xvL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Nexus Dome Bathroom"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/toilet) "xvU" = ( /obj/effect/landmark/crap_item, /turf/open/gm/grass/grass2, @@ -21238,59 +18011,34 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/south, /area/lv624/ground/jungle/west_jungle) +"xwu" = ( +/obj/structure/girder, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "xwB" = ( /obj/structure/fence, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"xwH" = ( -/obj/item/clothing/under/shorts/blue, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"xxg" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/clothing/shoes/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/lv624/ground/caves/sand_temple) -"xxA" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, +"xxl" = ( +/turf/open/gm/dirt/desert_dug, +/area/lv624/ground/caves/south_west_caves) +"xxm" = ( +/obj/structure/surface/table, +/obj/item/tool/crowbar, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) +"xxI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating/warnplate/west, +/area/lv624/ground/river/central_river) +"xyq" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southeast, +/area/lv624/lazarus/landing_zones/lz1) +"xyz" = ( +/turf/open/floor/whiteyellowcorner, /area/lv624/lazarus/corporate_dome) -"xyb" = ( -/obj/structure/closet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/device/healthanalyzer, -/obj/item/clothing/shoes/centcom, -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) "xyG" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -21299,6 +18047,9 @@ /obj/effect/landmark/lv624/fog_blocker, /turf/open/gm/coast/beachcorner/north_west, /area/lv624/ground/river/west_river) +"xyK" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/lv624/ground/caves/sand_temple) "xzi" = ( /obj/effect/landmark/crap_item, /turf/open/gm/dirt, @@ -21307,25 +18058,19 @@ /obj/structure/flora/bush/ausbushes/var3/sunnybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_central_jungle) -"xzO" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/lv624/ground/caves/south_west_caves) "xzQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"xAl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor{ - icon_state = "dark" - }, -/area/lv624/lazarus/engineering) +"xAs" = ( +/obj/structure/surface/table, +/obj/item/device/megaphone, +/turf/open/floor/purple/northwest, +/area/lv624/lazarus/sleep_female) +"xAY" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) "xAZ" = ( /obj/structure/surface/rack, /obj/item/explosive/grenade/incendiary/molotov{ @@ -21333,50 +18078,46 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xBf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"xBk" = ( -/obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor{ - dir = 5; - icon_state = "whitepurple" - }, -/area/lv624/lazarus/research) "xBp" = ( /obj/effect/landmark/monkey_spawn, /obj/structure/flora/jungle/vines/light_3, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) -"xBA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - density = 0; - icon_state = "door_open"; - name = "\improper Robotics Dome"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor{ - dir = 8; - icon_state = "vault" - }, +"xBO" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/grimy, +/area/lv624/lazarus/captain) +"xBQ" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating/platebot, /area/lv624/lazarus/robotics) +"xBZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xCo" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/south_west_caves) +"xCv" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/whitebluefull, +/area/lv624/lazarus/medbay) "xCM" = ( /obj/effect/decal/grass_overlay/grass1{ dir = 10 }, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) +"xCN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/airless/asteroidfloor/northeast, +/area/lv624/ground/barrens/north_east_barrens) "xDd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/lv624/ground/jungle/south_east_jungle) @@ -21396,29 +18137,9 @@ /obj/effect/decal/grass_overlay/grass1, /turf/open/gm/dirt, /area/lv624/ground/caves/south_west_caves) -"xEw" = ( -/obj/structure/lattice{ - layer = 2.9 - }, -/obj/structure/machinery/power/geothermal{ - fail_rate = 5 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/engineering) -"xEC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) +"xFc" = ( +/turf/open/gm/dirt/desert3, +/area/lv624/ground/barrens/east_barrens) "xFB" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor, @@ -21427,32 +18148,30 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv624/ground/barrens/central_barrens) +"xFJ" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "xGm" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/corporate_dome) +"xGp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "Lazarus Landing"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/redcorner/west, +/area/lv624/lazarus/security) "xGC" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/lv624/ground/caves/north_central_caves) -"xGV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/meatballsoup, -/turf/open/floor{ - icon_state = "bar" - }, -/area/lv624/lazarus/canteen) -"xHp" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/landmark/monkey_spawn, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/lv624/lazarus/research) "xHs" = ( /obj/structure/flora/jungle/vines/light_1, /turf/closed/wall/strata_ice/jungle, @@ -21463,6 +18182,11 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) +"xHD" = ( +/obj/structure/flora/pottedplant, +/obj/structure/pipes/vents/pump, +/turf/open/floor/bluecorner, +/area/lv624/lazarus/sleep_male) "xHJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -21474,13 +18198,21 @@ /obj/item/device/aicard, /turf/open/floor/greengrid, /area/lv624/lazarus/secure_storage) -"xJq" = ( -/obj/item/tool/soap, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" +"xIB" = ( +/obj/structure/surface/table, +/turf/open/floor/white, +/area/lv624/lazarus/main_hall) +"xIX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Communications Dome"; + req_access_txt = "100"; + req_one_access = null }, -/area/lv624/lazarus/fitness) +/turf/open/floor/delivery, +/area/lv624/lazarus/comms) +"xJe" = ( +/turf/open/floor/whitebluecorner/west, +/area/lv624/lazarus/medbay) "xJB" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/grass/grass1, @@ -21493,9 +18225,24 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/lv624/ground/river/west_river) +"xKR" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "xKU" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/engineering) +"xLi" = ( +/obj/structure/bookcase, +/obj/item/bananapeel, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/lv624/lazarus/hop) "xLx" = ( /turf/open/gm/river, /area/lv624/ground/river/central_river) @@ -21507,47 +18254,46 @@ /obj/item/bananapeel, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/central_jungle) -"xMy" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/main_hall) "xMA" = ( /obj/structure/platform/mineral/sandstone/runed{ dir = 8 }, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/lv624/ground/caves/sand_temple) -"xMX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +"xMU" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"xMV" = ( +/obj/structure/largecrate/random, +/obj/item/storage/fancy/crayons{ + pixel_x = 1; + pixel_y = 8 }, -/area/lv624/lazarus/hop) +/turf/open/floor/plating/asteroidfloor/north, +/area/lv624/lazarus/corporate_dome) +"xNa" = ( +/obj/structure/inflatable, +/turf/open/floor/redyellowfull, +/area/lv624/ground/barrens/west_barrens/ceiling) "xNj" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_west_jungle) +"xNq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Leisure Dome"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/fitness) "xNz" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/south_east_jungle) -"xNQ" = ( -/obj/structure/machinery/light, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "xNX" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/jungle/vines/light_3, @@ -21558,17 +18304,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, /area/lv624/ground/jungle/south_west_jungle) -"xOR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/lv624/lazarus/corporate_dome) "xOT" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1, @@ -21579,6 +18314,20 @@ "xPe" = ( /turf/open/gm/grass/grass2, /area/lv624/lazarus/yggdrasil) +"xPC" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/robotics) +"xPU" = ( +/obj/structure/girder, +/turf/open/floor/dark, +/area/lv624/lazarus/quartstorage/outdoors) +"xQb" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/vault2/west, +/area/lv624/lazarus/robotics) "xQe" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = 4; @@ -21588,19 +18337,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/east_caves) -"xQh" = ( -/obj/structure/largecrate, -/obj/structure/prop/mech/repair_droid{ - layer = 2; - pixel_y = -10 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) "xQn" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -21612,19 +18348,26 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirtgrassborder/east, /area/lv624/ground/barrens/south_eastern_jungle_barrens) +"xQH" = ( +/obj/structure/lattice{ + layer = 2.9 + }, +/obj/structure/machinery/power/reactor/colony{ + fail_rate = 5 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/west, +/area/lv624/lazarus/engineering) "xRe" = ( /turf/open/gm/coast/beachcorner/south_east, /area/lv624/ground/river/east_river) -"xRf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/lv624/lazarus/robotics) +"xRi" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/whitepurplecorner/east, +/area/lv624/lazarus/fitness) "xRl" = ( /turf/closed/wall/r_wall, /area/lv624/lazarus/kitchen) @@ -21640,10 +18383,23 @@ /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) +"xTa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/brown/northwest, +/area/lv624/lazarus/comms) "xTp" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/lv624/ground/jungle/west_jungle/ceiling) +"xTy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/lv624/lazarus/research) "xTE" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = -10; @@ -21652,24 +18408,6 @@ /obj/item/stool, /turf/open/gm/dirt, /area/lv624/ground/caves/west_caves) -"xUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/computer/telecomms/traffic{ - layer = 3.1; - pixel_y = 16 - }, -/obj/structure/bed/chair/office/light{ - dir = 1; - layer = 3.2 - }, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "xUI" = ( /obj/structure/girder, /turf/open/gm/dirt, @@ -21681,19 +18419,26 @@ "xVp" = ( /turf/open/gm/dirt, /area/lv624/ground/river/west_river) -"xVu" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor{ - dir = 9; - icon_state = "brown" - }, -/area/lv624/lazarus/comms) "xVK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/lv624/ground/caves/west_caves) +"xVR" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/warning/southwest, +/area/lv624/lazarus/landing_zones/lz1) +"xWd" = ( +/turf/open/floor/plating/warnplate/northeast, +/area/lv624/lazarus/engineering) +"xWl" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" + }, +/obj/structure/flora/jungle/vines/heavy, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "xWm" = ( /obj/structure/flora/jungle/vines/light_2, /turf/closed/wall/strata_ice/jungle, @@ -21702,27 +18447,39 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/lv624/lazarus/captain) +"xWI" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/weapon/gun/energy/yautja/plasma_caster{ + anchored = 1; + desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; + name = "damaged plasma caster" + }, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "xWN" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/lv624/ground/river/west_river) -"xXk" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"xXT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1469; - name = "General Listening Channel"; - pixel_y = 30 +"xXh" = ( +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/east_barrens/ceiling) +"xXu" = ( +/turf/open/floor/whiteyellowcorner/north, +/area/lv624/lazarus/corporate_dome) +"xXA" = ( +/obj/structure/surface/table/reinforced{ + flipped = 1 }, -/obj/effect/landmark/crap_item, -/turf/open/floor{ - icon_state = "bar" +/turf/open/floor/plating/warnplate, +/area/lv624/ground/barrens/central_barrens) +"xXG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Corporate Dome"; + req_access_txt = "100" }, -/area/lv624/lazarus/canteen) +/turf/open/floor/white, +/area/lv624/lazarus/corporate_dome) "xXU" = ( /obj/item/reagent_container/food/snacks/grown/mushroom/glowshroom{ pixel_x = -5; @@ -21754,31 +18511,22 @@ "xYV" = ( /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"xZs" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Corporate Office"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "xZL" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/east_jungle) -"xZP" = ( -/obj/structure/surface/table, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"yaj" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -32 }, -/area/lv624/ground/barrens/east_barrens/ceiling) +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/effect/spawner/random/powercell, +/obj/item/device/assembly/infra, +/obj/effect/spawner/random/powercell, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "yap" = ( /obj/structure/fence, /turf/open/gm/grass/grass1, @@ -21837,15 +18585,6 @@ }, /turf/open/floor/vault, /area/lv624/lazarus/quartstorage) -"ydl" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/lv624/lazarus/corporate_dome) "ydr" = ( /obj/effect/landmark/survivor_spawner, /turf/open/gm/dirt, @@ -21862,53 +18601,56 @@ }, /turf/open/gm/dirt, /area/lv624/ground/caves/east_caves) -"yew" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor{ - dir = 4; - icon_state = "whitepurplecorner" - }, -/area/lv624/lazarus/fitness) -"yfL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, -/area/lv624/lazarus/robotics) -"yfR" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ - dir = 8 +"yeA" = ( +/obj/structure/dispenser, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_y = 30 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/lv624/lazarus/kitchen) +/turf/open/floor/whiteyellowfull/east, +/area/lv624/lazarus/quart) "yfX" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/lv624/ground/colony/north_tcomms_road) -"ygb" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whiteblue" - }, -/area/lv624/lazarus/medbay) +"ygC" = ( +/turf/open/floor/whiteyellowcorner/west, +/area/lv624/lazarus/main_hall) +"yhr" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/cult, +/area/lv624/ground/caves/south_west_caves) "yhs" = ( /turf/open/gm/grass/grass1, /area/lv624/lazarus/sleep_male) "yhx" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/caves/north_central_caves) -"yhG" = ( -/obj/structure/prop/mech/mech_parts/chassis/gygax, -/turf/open/floor{ - dir = 8; - icon_state = "vault" +"yhB" = ( +/obj/structure/bed/stool, +/turf/open/floor/bar, +/area/lv624/lazarus/canteen) +"yhJ" = ( +/obj/structure/surface/table, +/obj/item/trash/tray, +/turf/open/floor/barber/west, +/area/lv624/lazarus/kitchen) +"yhW" = ( +/obj/structure/machinery/power/apc/no_power/north{ + name = "Research APC" }, -/area/lv624/lazarus/robotics) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/table, +/obj/item/clothing/accessory/armband/science, +/turf/open/floor/whitepurple/northeast, +/area/lv624/lazarus/research) "yid" = ( /obj/structure/fence, /turf/open/gm/dirtgrassborder/north, @@ -21922,46 +18664,36 @@ /obj/structure/platform/mineral/sandstone/runed, /turf/open/gm/dirt, /area/lv624/ground/barrens/south_eastern_barrens) -"yiQ" = ( -/obj/structure/bed/alien, -/obj/item/clothing/yautja_cape, -/turf/open/floor{ - icon_state = "cult" - }, -/area/lv624/ground/caves/south_west_caves) +"yiC" = ( +/obj/structure/flora/jungle/vines/light_3, +/turf/open/floor/corsat/squareswood/north, +/area/lv624/ground/caves/sand_temple) "yiY" = ( /obj/structure/flora/jungle/vines/heavy, /obj/structure/flora/jungle/vines/light_1, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) -"yju" = ( -/turf/open/floor{ - dir = 4; - icon_state = "warnwhite" - }, -/area/lv624/lazarus/fitness) -"yjT" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 4; - icon_state = "loadingarea" - }, -/area/lv624/lazarus/quartstorage) "yjV" = ( /obj/structure/flora/bush/ausbushes/ausbush, /turf/open/gm/grass/grass1, /area/lv624/ground/jungle/north_east_jungle) +"ykb" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/obj/item/device/assembly/voice, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/dark, +/area/lv624/lazarus/engineering) "yke" = ( /obj/effect/decal/grass_overlay/grass1/inner{ dir = 9 }, /turf/open/gm/dirt, /area/lv624/ground/caves/north_west_caves) -"ykO" = ( -/turf/open/floor{ - icon_state = "whitegreen" - }, -/area/lv624/lazarus/main_hall) "ylf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1, @@ -21970,12 +18702,11 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/lv624/ground/river/east_river) -"ylV" = ( -/turf/open/floor{ - dir = 9; - icon_state = "purple" - }, -/area/lv624/lazarus/sleep_female) +"ylU" = ( +/obj/structure/surface/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating/platebot, +/area/lv624/lazarus/robotics) (1,1,1) = {" pvT @@ -23060,7 +19791,7 @@ rCB rCB sec rCB -tQE +bbS hGo ebX rCB @@ -23085,7 +19816,7 @@ szD oFP fds fds -pvO +jXB fds gUP shg @@ -23200,7 +19931,7 @@ cSb cSb mlw mlw -quj +jcb cSb cSb cSb @@ -23532,11 +20263,11 @@ oEm oFP oFP wfE -aQx +iuV bLa -vhi -vhi -aQx +rCJ +rCJ +iuV fds vpn sjK @@ -23661,16 +20392,16 @@ cSb prG ooz ooz -uMr -pxp -uMr +gMp +iMY +gMp ooz -oRH -lVY -jvo -dGO -uwb -pxp +gUJ +iEf +gtS +orJ +fFh +iMY ooz ooz ooz @@ -23756,9 +20487,9 @@ sjK shg esf fds -rKf -vhi -vhi +ekS +rCJ +rCJ bLa ulF fds @@ -23874,30 +20605,30 @@ kzX mkc rhK mlw -quj +jcb mlw mlw -nvU +nIu uvs mlw iHB mlw hap -rHH -pYX -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp +yhr +eab +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY ooz prG prG @@ -23980,11 +20711,11 @@ oTT miz pXJ hnA -bCO -vhi +jFK +rCJ lpV bLa -vhi +rCJ fds ksC uRr @@ -24085,9 +20816,9 @@ cSb cSb cSb mlw -nvU +nIu mlw -wTf +qBX mlw mlw xHz @@ -24107,21 +20838,21 @@ mlw hMS kqV mlw -rHH -pxp -pnD -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -mym -pxp -mym +yhr +iMY +nWc +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +dkL +iMY +dkL ooz prG prG @@ -24133,7 +20864,7 @@ cwz prG prG prG -nIs +fek cwz prG prG @@ -24204,10 +20935,10 @@ shg miz pom hnA -iup +qQF jUM -vhi -vhi +rCJ +rCJ bLa bee lqD @@ -24331,25 +21062,25 @@ mlw mlw qCp mlw -rHH -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -inE -qQJ -quk +yhr +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +rzu +dRd +aKP ooz prG cwz -qim +hWy cwz cwz cwz @@ -24428,10 +21159,10 @@ sjK mIq djO fds -aQx -vhi -vhi -vhi +iuV +rCJ +rCJ +rCJ bLa fds kLF @@ -24551,25 +21282,25 @@ mlw cSb elH mlw -quj +jcb dLa lmg cSb -rHH -pxp -pYX -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -pxp -tWc -qQJ -wxo +yhr +iMY +eab +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +iMY +wHx +dRd +lWO ooz prG cwz @@ -24652,11 +21383,11 @@ rKe oFP oFP fds -uIM -vhi +wiv +rCJ bLa -wKy -aQx +jYY +iuV wfE wBP frJ @@ -24781,19 +21512,19 @@ hiv prG ooz ooz -pxp -yiQ -pxp +iMY +cjH +iMY ooz -pxp -pxp -pxp -pxp -pxp -pxp -nVl -pxp -nVl +iMY +iMY +iMY +iMY +iMY +iMY +rxf +iMY +rxf ooz prG cwz @@ -24806,7 +21537,7 @@ cwz cwz cwz cwz -xzO +ktF cwz prG prG @@ -24878,9 +21609,9 @@ tNA fds bee bLa -vhi -vhi -hoi +rCJ +rCJ +wXN wfE ugM uRr @@ -25009,15 +21740,15 @@ ooz ooz ooz ooz -uab -vsD -uwh -pxp -pxp -pxp -pxp -pxp -pxp +aVe +xWI +lpK +iMY +iMY +iMY +iMY +iMY +iMY ooz prG cwz @@ -25101,8 +21832,8 @@ uRr shg fds dZn -uIM -aQx +wiv +iuV fds dZn fds @@ -25202,7 +21933,7 @@ cSb cSb cSb cSb -bXh +mtB mlw mlw mlw @@ -25217,7 +21948,7 @@ cSb mlw mlw mlw -nvU +nIu mlw mlw cSb @@ -25426,7 +22157,7 @@ mlw cSb cSb mlw -nvU +nIu mlw mlw mlw @@ -25469,7 +22200,7 @@ prG prG prG cwz -nIs +fek cwz prG prG @@ -25649,10 +22380,10 @@ mlw mlw cSb cSb -bNo +hns mlw mlw -bXh +mtB mlw bNA cML @@ -25688,7 +22419,7 @@ cwz cwz cwz cwz -wMT +xxl cwz cwz cwz @@ -25910,7 +22641,7 @@ cwz cwz cwz cwz -nIs +fek cwz cwz cwz @@ -25918,14 +22649,14 @@ cwz cwz cwz cwz -xzO +ktF cwz prG -wMT +xxl cwz cwz cwz -qim +hWy cwz cwz prG @@ -26097,7 +22828,7 @@ mlw mlw mlw mlw -nvU +nIu mlw mlw mlw @@ -26110,8 +22841,8 @@ cML cML jAg mlw -nvU -quj +nIu +jcb mlw cSb cSb @@ -26373,9 +23104,9 @@ prG cwz cwz cwz -siI -siI -wMT +cgS +cgS +xxl cwz prG prG @@ -26587,7 +23318,7 @@ xCM cwz cwz cwz -qim +hWy cwz cwz cwz @@ -27036,7 +23767,7 @@ hKF iHI xCM cwz -qim +hWy cwz cwz cwz @@ -27291,7 +24022,7 @@ tKE lvd gSw mQA -koN +ejR uyq dSU mQA @@ -27319,9 +24050,9 @@ beo hGN tZc tZc -kVk -bKL -xgO +poa +lov +qmW nLe tZc hGN @@ -27469,7 +24200,7 @@ prG prG prG cwz -qim +hWy cwz cwz wvv @@ -27495,7 +24226,7 @@ prG prG cwz cwz -xzO +ktF cwz prG prG @@ -27517,7 +24248,7 @@ gSw mQA jfv uyq -toN +cqs mQA byJ dsB @@ -27711,8 +24442,8 @@ prG prG prG prG -siI -nIs +cgS +fek prG prG prG @@ -27767,9 +24498,9 @@ tZc beo chW oTq -dPu -xfv -qbD +iQM +cxh +gfq oTq chW beo @@ -27921,7 +24652,7 @@ prG prG prG cwz -wMT +xxl cwz amX hPw @@ -27935,7 +24666,7 @@ prG prG prG cwz -qim +hWy cwz cwz prG @@ -28010,7 +24741,7 @@ uRr uRr uRr qec -iIc +qDO lnn lFx lwZ @@ -28146,7 +24877,7 @@ cwz cwz cwz cwz -xzO +ktF amX hPw hPw @@ -28188,7 +24919,7 @@ byJ byJ mQA tEl -uIs +mns uyq mQA byJ @@ -28196,7 +24927,7 @@ byJ byJ beo cuy -oVi +tgR eHd eHd eHd @@ -28210,7 +24941,7 @@ eHd eHd eHd eHd -oVi +tgR eHd eHd eHd @@ -28366,7 +25097,7 @@ cwz cwz cwz cwz -xzO +ktF cwz cwz sFn @@ -28386,7 +25117,7 @@ cwz cwz cwz cwz -xzO +ktF cwz cwz cwz @@ -28416,38 +25147,38 @@ lIR mQA mQA byJ -vmC -iya +oWv +xaI beo oTq ndU -vtq -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -dEu -kMS -oVi +pYQ +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +uIo +wJS +tgR chW oFP uRr @@ -28584,7 +25315,7 @@ pNu prG prG cwz -wMT +xxl cwz cwz cwz @@ -28638,14 +25369,14 @@ nQl nQl nQl nQl -vmC -fhS -tst -lzr +oWv +xaI +aPz +dhK beo oTq ndU -vtq +pYQ nEp vkI tCe @@ -28670,7 +25401,7 @@ mwi vkI nEp nEp -eOd +hGf chW chW mIq @@ -28835,7 +25566,7 @@ cwz cwz cwz cwz -nIs +fek cwz cwz cwz @@ -28862,14 +25593,14 @@ lSX nQl nQl nQl -lXy -tst -tst -tst +whY +aPz +aPz +aPz beo cuy ndU -vtq +pYQ pnC nEp nEp @@ -28894,7 +25625,7 @@ nEp nEp jeG nEp -eOd +hGf chW beo wWl @@ -29086,14 +25817,14 @@ nQl nQl nQl nQl -rGg -xrs +vrJ +jyv xlJ beo moU cuy ndU -vtq +pYQ qRO nEp nEp @@ -29118,7 +25849,7 @@ enI nEp aHO nEp -eOd +hGf chW beo qlO @@ -29264,7 +25995,7 @@ kCo gDZ hPw ubi -nIs +fek wvv prG prG @@ -29278,7 +26009,7 @@ cwz cwz cwz cwz -nIs +fek cwz kIL cwz @@ -29317,7 +26048,7 @@ beo tZc oTq ndU -vtq +pYQ rAp nEp nEp @@ -29342,7 +26073,7 @@ nEp nEp fhu nEp -eOd +hGf chW chW oTq @@ -29498,7 +26229,7 @@ cwz cwz cwz cwz -wMT +xxl cwz cwz cwz @@ -29508,7 +26239,7 @@ cwz cwz cwz cwz -qim +hWy cwz prG prG @@ -29541,7 +26272,7 @@ beo beo oTq ndU -vtq +pYQ uYB nEp nEp @@ -29566,17 +26297,17 @@ nEp nEp aFE nEp -eOd -dCy +hGf +srt iXY -deV +mMG sjK qec uRr rIy rIy rIy -iTR +xdM mAx nHw mAx @@ -29712,10 +26443,10 @@ kCo kCo hbo ubi -qim +hWy cwz cwz -nIs +fek cwz cwz cwz @@ -29765,7 +26496,7 @@ beo beo cuy ndU -vtq +pYQ pnC nEp nEp @@ -29790,10 +26521,10 @@ nEp nEp jeG nEp -eOd -plP +hGf +eKr jQR -jCw +twU shg sjK uRr @@ -29928,7 +26659,7 @@ pNu prG prG prG -nIs +fek cwz amX hPw @@ -29941,7 +26672,7 @@ cwz cwz cwz cwz -nIs +fek cwz cwz cwz @@ -29989,7 +26720,7 @@ beo oTq cuy ndU -vtq +pYQ qRO nEp nEp @@ -30014,10 +26745,10 @@ nEp nEp aHO nEp -eOd -kaB +hGf +qXH qne -dqk +gaD sjK uRr uRr @@ -30169,7 +26900,7 @@ cwz cwz cwz cwz -nIs +fek cwz cwz cwz @@ -30213,7 +26944,7 @@ beo tZc oTq ndU -vtq +pYQ rAp nEp nEp @@ -30238,10 +26969,10 @@ nEp nEp fhu nEp -eOd -plP +hGf +eKr esi -wWm +xni nDn uRr jrx @@ -30388,7 +27119,7 @@ hPw xDW cwz cwz -xzO +ktF cwz cwz cwz @@ -30437,7 +27168,7 @@ beo beo oTq ndU -vtq +pYQ uYB nEp nEp @@ -30462,10 +27193,10 @@ nEp nEp aFE nEp -eOd -eVE +hGf +vvy chW -qbD +gfq sjK uRr uRr @@ -30599,7 +27330,7 @@ pNu prG prG cwz -xzO +ktF cwz cwz cwz @@ -30661,7 +27392,7 @@ beo oTq cuy ndU -vtq +pYQ pnC nEp nEp @@ -30686,7 +27417,7 @@ nEp nEp jeG nEp -eOd +hGf chW chW uIe @@ -30885,7 +27616,7 @@ beo cuy cuy ndU -vtq +pYQ qRO nEp nEp @@ -30910,7 +27641,7 @@ nEp nEp aHO nEp -eOd +hGf chW beo qlO @@ -31109,7 +27840,7 @@ beo oTq cuy ndU -vtq +pYQ rAp nEp nEp @@ -31134,7 +27865,7 @@ nEp nEp fhu nEp -eOd +hGf chW beo beo @@ -31290,7 +28021,7 @@ cwz cwz cwz cwz -nIs +fek cwz cwz cwz @@ -31333,7 +28064,7 @@ tZc tZc oTq ndU -vtq +pYQ nEp ilx wzr @@ -31358,7 +28089,7 @@ qUt ilx nEp nEp -eOd +hGf chW beo beo @@ -31495,8 +28226,8 @@ cSb prG cwz cwz -qim -nIs +hWy +fek cwz cwz cwz @@ -31511,10 +28242,10 @@ kCo hPw ubi cwz -siI -siI -siI -siI +cgS +cgS +cgS +cgS cwz cwz cwz @@ -31557,32 +28288,32 @@ beo oTq cuy ndU -dwk -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -jJx -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -bqv -ccT +gst +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +iNd +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +kFh chW chW beo @@ -31724,7 +28455,7 @@ cwz cwz cwz cwz -wMT +xxl cwz cwz aIc @@ -31780,7 +28511,7 @@ beo beo tZc oTq -oVi +tgR dwv dwv dwv @@ -31790,7 +28521,7 @@ ucQ ucQ ucQ ucQ -oVi +tgR gza dwv dwv @@ -31799,15 +28530,15 @@ dwv dwv dwv dwv -vtq -lCm -eOd +pYQ +wMK +hGf dwv dwv dwv dwv dwv -oVi +tgR chW beo sjK @@ -32023,9 +28754,9 @@ dwv dwv dwv dwv -vtq -lCm -eOd +pYQ +wMK +hGf dwv chW chW @@ -32170,9 +28901,9 @@ cwz prG prG prG -siI -siI -siI +cgS +cgS +cgS cwz cwz wvv @@ -32247,9 +28978,9 @@ nqn ucQ ucQ nMK -vtq -lCm -eOd +pYQ +wMK +hGf chW chW beo @@ -32394,7 +29125,7 @@ cwz cwz prG prG -nIs +fek prG prG prG @@ -32471,9 +29202,9 @@ gCx ovE cuy ndU -vtq -lCm -hWl +pYQ +wMK +nlO iAV iAV iAV @@ -32618,20 +29349,20 @@ cwz cwz prG prG -xzO +ktF prG cwz cwz cwz cwz prG -qim +hWy cwz cwz prG cwz -qim -wMT +hWy +xxl cwz prG prG @@ -32695,14 +29426,14 @@ gCx dkc bHI iAV -tir -tir -tir +iGE +iGE +iGE iAV -fDM -dXF -nkx -fDM +cnJ +sKX +uib +cnJ iAV iAV iAV @@ -32901,9 +29632,9 @@ syl syl syl syl -rtK -xXk -yfL +cLh +sXe +xPC rFN aih aih @@ -32919,18 +29650,18 @@ gCx mnY cuy iAV -dXF -dXF -dXF -cKJ -bPU -puv -dXF -dXF +sKX +sKX +sKX +pKd +iyd +ecR +sKX +sKX iAV -dzZ -gUy -lRc +wtJ +pFw +xMV iAV ssy aDI @@ -33121,17 +29852,17 @@ ojg hSv sOD aih -sjy -ctP -bPW +hwM +xBQ +djj rFN -uht -eOy -lVz +lfz +lAH +lMW rFN -olj -cSd -kpX +unY +lUD +gYO aih cuy cuy @@ -33143,18 +29874,18 @@ gCx cuy cuy iAV -dXF -dXF -dXF -dXF -dXF -dXF -dXF -dXF -oNt -sWe -sWe -sWe +sKX +sKX +sKX +sKX +sKX +sKX +sKX +sKX +who +eJw +eJw +eJw iAV ssy ssy @@ -33345,17 +30076,17 @@ hnc hSv hSv aih -jSc -tuZ -sjy -uDq -rbh -eOy -lVz -uDq -sjy -rln -kpX +pBY +kzu +hwM +hcT +bOw +lAH +lMW +hcT +hwM +vTc +gYO aih cuy cuy @@ -33367,18 +30098,18 @@ gCx cuy bHI iAV -dXF -mBE -dXF -dXF -mBE -jfY -dXF -eLP +sKX +cGR +sKX +sKX +cGR +lou +sKX +lIh iAV -xOR -fpo -sWe +vKH +jBO +eJw iAV ssy ssy @@ -33569,17 +30300,17 @@ gHE hSv hSv aih -fkP -sjy -wIx +ebI +hwM +mTo rFN -lxI -eOy -eYJ +mvp +lAH +cew rFN -xQh -sjy -auN +daj +hwM +vkh aih cuy cuy @@ -33597,12 +30328,12 @@ iAV iAV iAV iAV -nCa +tLS iAV iAV iAV iAV -iEc +qWu iAV iAV dZH @@ -33794,15 +30525,15 @@ hSv rFN rFN rFN -sfA +uwO rFN rFN -sPa -eOy -dyq +jsG +lAH +hBQ rFN rFN -sfA +uwO rFN rFN rFN @@ -33814,20 +30545,20 @@ dwv dwv dwv iAV -sCE -mVs -uWI -xxA +tKr +qdf +hfL +nQz iAV -wvt -rqY -ugj -wdK -tlH +kUt +uKN +naA +jOe +spn iAV -qdL -pOf -jvl +uNl +srF +mEK iAV gOl gOl @@ -34016,19 +30747,19 @@ sOD hSv sbk aih -vNg -lVz -sAv -fHs -lVz -lVz -eOy -lVz -lVz -lVz -lVz -lVz -rwC +vbe +lMW +gbz +slN +lMW +lMW +lAH +lMW +lMW +lMW +lMW +lMW +bwL aih dwv dRv @@ -34037,22 +30768,22 @@ dwv dwv bPf dwv -dzD -ugj -ugj -ugj -ugj -dzD -ugj -ugj -ugj -ugj -ugj -dzD -ugj -ugj -ugj -dzD +xXG +naA +naA +naA +naA +xXG +naA +naA +naA +naA +naA +xXG +naA +naA +naA +xXG gOl gOl gOl @@ -34223,7 +30954,7 @@ lvd tDe nQl qmw -jUY +uuS pno pno gHE @@ -34240,19 +30971,19 @@ hSv hSv hSv atW -vNg -eOy -eOy -qgJ -eOy -ioC -ayD -yhG -eOy -kOw -eOy -eOy -qgq +vbe +lAH +lAH +pww +lAH +iNU +iWC +kVn +lAH +xQb +lAH +lAH +vbM atW dwv dwv @@ -34261,22 +30992,22 @@ dwv dwv dwv dwv -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj -ugj +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA +naA gOl gOl onX @@ -34417,9 +31148,9 @@ pSi pSi qPx qPx -fMg -fMg -fMg +xNa +xNa +xNa qPx qPx pSi @@ -34464,19 +31195,19 @@ hSv hSv hSv aih -vNg -lVz -lVz -lVz -lVz -pls -eOy -lVz -lVz -oEj -lVz -spq -qgq +vbe +lMW +lMW +lMW +lMW +cNy +lAH +lMW +lMW +aqy +lMW +iuf +vbM aih dwv dwv @@ -34486,20 +31217,20 @@ dwv dwv dwv iAV -nXN -tPx -tPx -stn +lsM +sLy +sLy +bKf iAV -ikn -taH -ugj -ugj -udH +wPw +oXt +naA +naA +jAp iAV -kTk -iTY -oUq +bXu +gna +sPX iAV gOl gOl @@ -34640,11 +31371,11 @@ pSi pSi pSi qPx -aBI -gVj -giK -stW -aBI +xwu +qLd +tOz +hZT +xwu qPx pSi pSi @@ -34690,15 +31421,15 @@ hSv rFN rFN rFN -sfA +uwO rFN rFN -lEo -eOy -sAv +heK +lAH +gbz rFN rFN -xBA +uSR rFN vpc vpc @@ -34717,8 +31448,8 @@ iAV iAV iAV iAV -ugj -xZs +naA +bRC iAV iAV iAV @@ -34863,13 +31594,13 @@ pSi pSi pSi pSi -fMg -aRi -kaM -kaM -kaM -stW -fMg +xNa +uOs +vBz +vBz +vBz +hZT +xNa pSi pSi pSi @@ -34913,17 +31644,17 @@ hSv hSv hSv aih -bTS -sjy -cks +mxh +hwM +frA rFN -bNB -eOy -stq +hlv +lAH +lFS rFN -oAH -sjy -pNA +iiu +hwM +sfZ aih oAG wnz @@ -34937,13 +31668,13 @@ nST jDT iAV iAV -cwR -pOf -qVa +fzF +srF +qiC xGm -ugj -ugj -slt +naA +naA +uNL iAV jxe jxe @@ -35087,13 +31818,13 @@ pSi pSi pSi pSi -igY -kaM -kaM -kaM -kaM -kaM -igY +wIS +vBz +vBz +vBz +vBz +vBz +wIS pSi pSi pSi @@ -35137,17 +31868,17 @@ hSv hSv qrK aih -sjy -rln -sjy -uDq -lVz -eOy -lVz -uDq -sjy -tuZ -kpX +hwM +vTc +hwM +hcT +lMW +lAH +lMW +hcT +hwM +kzu +gYO aih eGN oAG @@ -35160,15 +31891,15 @@ cxX jDT iAV iAV -acR -rqY -ugj -aST -duJ -ugj -ugj -ugj -sPK +usn +uKN +naA +izv +wAJ +naA +naA +naA +guG aRL eBT iAV @@ -35311,13 +32042,13 @@ pSi pSi pSi pSi -fMg -stW -kaM -stW -kaM -hHr -fMg +xNa +hZT +vBz +hZT +vBz +xcV +xNa pSi sXL pSi @@ -35361,17 +32092,17 @@ hSv hSv hSv aih -sjy -jSc -tlP +hwM +pBY +ylU rFN -tnh -eOy -leo +ipT +lAH +wuI rFN -xRf -jSc -kpX +qrb +pBY +gYO aih oAG epb @@ -35383,15 +32114,15 @@ nST oAG jDT iAV -mwn -rqY -ugj -ugj -lkL +rXk +uKN +naA +naA +nKQ xGm -ugj -ugj -dTi +naA +naA +sjB iAV uDh gVM @@ -35536,11 +32267,11 @@ pSi pSi pSi qPx -aBI -kaM -uzk -stW -aBI +xwu +vBz +eou +hZT +xwu qPx pSi pSi @@ -35589,9 +32320,9 @@ aih aih aih rFN -pkV -bZR -bZR +gtq +sUt +sUt rFN aih aih @@ -35607,14 +32338,14 @@ aAm eJa jDT iAV -sJm -taH -ugj -cYd -kTt +tGr +oXt +naA +qRp +uoa iAV -ugj -xZs +naA +bRC iAV iAV iAV @@ -35761,9 +32492,9 @@ pSi pSi qPx qPx -fMg -fMg -fMg +xNa +xNa +xNa qPx qPx pSi @@ -35833,15 +32564,15 @@ jDT iAV iAV iAV -tDn +mwJ iAV iAV iAV -ugj -ugj -mIG -iUb -dZT +naA +naA +tjf +pMj +dSL mZB aAm aAm @@ -35979,7 +32710,7 @@ cwz cwz pSi pSi -hyS +wvI pSi pSi pSi @@ -36055,17 +32786,17 @@ jDT lEK cPj iAV -gxv -qsN -ugj -bbQ -pVc +dsz +xXu +naA +jwO +ilu xGm -ugj -ugj -ugj -ugj -dOq +naA +naA +naA +naA +ahu oio czA aAm @@ -36279,17 +33010,17 @@ jDT lEK fCL iAV -qqF -vAi -ugj -ydl -lgV +tls +sav +naA +afj +qSJ xGm -ugj -ugj -ugj -feD -niC +naA +naA +naA +xyz +byw eKD aAm aAm @@ -36319,10 +33050,10 @@ eRV eRV vVx fdy -kil +nKv vxL vxL -hib +qVo vVx ohr ohr @@ -36504,15 +33235,15 @@ aAm nST iAV iAV -mQk -mVI -gQJ -ugj -ofX -ugj -ugj -feD -vcl +tto +bYb +qHU +naA +rCu +naA +naA +xyz +fUh dwF rlB cOY @@ -36542,7 +33273,7 @@ pvT eRV eRV vVx -vOo +qJg hrJ vxL vxL @@ -36729,13 +33460,13 @@ fCL jDT iAV iAV -vUg -aCc -nZk +tzb +idP +awd xGm -aNU -xnj -bYJ +rQM +uNt +aQg dwF dwF eUm @@ -36750,7 +33481,7 @@ tOc tOc fcJ mdK -aeW +uZd bZf ydC bZf @@ -36768,9 +33499,9 @@ eRV vVx doB vxL -lpb +hON vxL -qKe +fqW vVx ohr ohr @@ -36968,7 +33699,7 @@ lEK eJa lDp fMc -bFS +xIX fMc lDp faY @@ -36990,9 +33721,9 @@ pvT eRV eRV vVx -hpv +sKl vxL -kil +nKv vxL bcU vVx @@ -37191,9 +33922,9 @@ fMc fMc fMc lDp -jdz -bey -vrb +hVg +lzA +kiE lDp fMc fMc @@ -37216,7 +33947,7 @@ eRV vVx maF vxL -qck +hSN vxL vxL vxL @@ -37326,9 +34057,9 @@ pSi pSi pSi pSi -wie -wJp -wJp +pwK +hgy +hgy pSi pSi pSi @@ -37337,16 +34068,16 @@ pSi pSi pSi pSi -qOi -rXR -vYq -nuA -gXB -gXB -nuA -gXB -aTd -qBN +rNz +aZj +vWt +aYE +eKM +eKM +aYE +eKM +xnh +uEq xVp ixg dzU @@ -37411,17 +34142,17 @@ ljG oAG lEK fMc -rLa -jBW -bey -djR -djR -bey -bey -djR -bey -pLw -nRv +ksH +kkY +lzA +dxz +dxz +lzA +lzA +dxz +lzA +uQF +vXK fMc lkx swS @@ -37439,11 +34170,11 @@ eRV eRV vVx svo -lpb +hON vxL hrJ vxL -kil +nKv vxL koG hOB @@ -37543,7 +34274,7 @@ pSi pSi pSi pSi -dAZ +wEe pSi pSi pSi @@ -37561,7 +34292,7 @@ pSi pSi pSi pSi -bXf +cLt qSw qSw qSw @@ -37570,7 +34301,7 @@ qSw qSw qSw qSw -tED +iWK ixg dzU tjo @@ -37599,7 +34330,7 @@ hSv hSv wUM uRY -vjD +ctI uRY wUM hSv @@ -37635,17 +34366,17 @@ oAG oAG lPB fMc -hqo -bey -bey -bey -snH -bey -bey -bey -bey -bey -dJz +mgY +lzA +lzA +lzA +qCu +lzA +lzA +lzA +lzA +lzA +iox fMc mdK mdK @@ -37666,7 +34397,7 @@ mQI vxL vxL vxL -lpb +hON hrJ vxL koG @@ -37785,16 +34516,16 @@ pSi pSi pSi pSi -hzW -jam -jam -hzU -jLJ -jLJ -sDN -jam -jam -sKj +viG +gVD +gVD +nPx +mOJ +mOJ +dfr +gVD +gVD +jxI kXi tjo tjo @@ -37822,9 +34553,9 @@ uRY uRY uRY wUM -xBk -onh -kTs +vpX +qjx +wyP wUM uRY uRY @@ -37859,17 +34590,17 @@ bPD oAG grH fMc -fGy -bey -hJI +rrk +lzA +dlL dGm -olB -bey -bey +nfu +lzA +lzA dGm -mXY -bey -djR +pju +lzA +dxz fMc mdK mdK @@ -37885,13 +34616,13 @@ pvT pvT eRV vVx -biQ +lig tCQ -kil +nKv vxL vxL vxL -qck +hSN vxL koG lyV @@ -38042,17 +34773,17 @@ hSv hSv xSl bnc -bSN -jfp -fLi +fiO +jej +oyg ifT -bSN -lRb -tym +fiO +tdU +eff ifT -vtv -bUi -bUi +pBj +kvI +kvI gjx hSv sbk @@ -38083,17 +34814,17 @@ pnB pnB lDp lDp -jFN -bey +hFO +lzA dGm dGm -sSo -bey -jBw +hVs +lzA +nvb dGm dGm -vKU -bey +jIe +lzA lDp lDp mdK @@ -38113,7 +34844,7 @@ vxL vxL vxL vxL -qck +hSN vxL vxL vxL @@ -38266,17 +34997,17 @@ hSv hSv hSv bnc -hNP -qCt -kTs -vNh -kTs -onh -whl -vNh -bUi -bUi -bUi +xrA +qQa +wyP +nfR +wyP +qjx +vKM +nfR +kvI +kvI +kvI gjx hSv hSv @@ -38306,19 +35037,19 @@ fUn fUn fUn fMc -cgk -djR -bey -bey -bey -bey -bey -bey -djR -djR -bey -bey -sBs +xTa +dxz +lzA +lzA +lzA +lzA +lzA +lzA +dxz +dxz +lzA +lzA +rBY fMc mdK hFh @@ -38334,12 +35065,12 @@ pvT eRV vVx vxL -qck +hSN vxL hrJ vxL vxL -gMm +wKD vxL cla lyV @@ -38427,7 +35158,7 @@ sjL sjL sjL sjL -cZd +iKW pSi pSi pSi @@ -38477,10 +35208,10 @@ tjo pGI tjo btX -nIv -nIv -nIv -nIv +gfC +gfC +gfC +gfC pWR hSv hSv @@ -38490,17 +35221,17 @@ hSv qrK hSv bnc -iaU -kTs -wrt +jrS +wyP +dlf ifT -kTs -onh -kTs +wyP +qjx +wyP ifT -xHp -bUi -sHO +iSd +kvI +vzE gjx msU hSv @@ -38529,21 +35260,21 @@ fUn fUn fUn fUn -lFN -bey -bey -bey -bey -djR -bey +aJV +lzA +lzA +lzA +lzA +dxz +lzA dGm -bey -bey -bey -hJI -bey -bey -lFN +lzA +lzA +lzA +dlL +lzA +lzA +aJV mdK mdK mdK @@ -38560,7 +35291,7 @@ vVx vxL vxL vxL -kil +nKv vxL vxL vxL @@ -38701,13 +35432,13 @@ btX btX btX btX -tHn -ezR -ezR -tHn +vzC +naQ +naQ +vzC pWR -nIv -nIv +gfC +gfC pWR rce fZl @@ -38715,15 +35446,15 @@ fZl wUM wUM ifT -jxJ +fbP ifT ifT ifT -hQC +jzy ifT ifT ifT -iwz +ngP ifT wUM wUM @@ -38754,19 +35485,19 @@ fUn fUn fUn fMc -fTc -djR -bey -bey -djR -djR -bey -uvO -mxo -mxo -cTA -udT -mrP +qpo +dxz +lzA +lzA +dxz +dxz +lzA +laX +aLe +aLe +dZg +hjS +wls fMc mdK ujI @@ -38784,8 +35515,8 @@ vVx vxL vxL gWc -mJX -sdn +fnR +gbL fjh vxL vxL @@ -38883,8 +35614,8 @@ pSi pSi pSi pSi -wJp -wJp +hgy +hgy pSi pSi pSi @@ -38922,34 +35653,34 @@ tjo tjo tjo btX -dWP -lCJ +foP +cGh pWR pWR -pZT -ijW -veN -kQd -oCY -hLD -nIv +fgp +rMJ +xJe +mwS +geN +oIs +gfC kpM lwG lwG gjx -bSN -ckt -kTs -kTs +fiO +cHa +wyP +wyP ifT -cJN -onh -onh +olJ +qjx +qjx ifT -eqz -kTs -svA -xBk +crN +wyP +fxz +vpX gjx fUn fUn @@ -38979,17 +35710,17 @@ fUn upQ lDp lDp -bey -bey +lzA +lzA dGm dGm -ttE -lXX -elQ +dyN +lZo +wXg dGm dGm -udd -xNQ +fzI +dEh lDp lDp mdK @@ -39006,10 +35737,10 @@ pvT eRV vVx vxL -gMm +wKD gWc -vBe -lJy +uVA +uCU fjh vxL vxL @@ -39112,8 +35843,8 @@ pSi pSi pSi pSi -wJp -wJp +hgy +hgy pSi pSi pSi @@ -39146,35 +35877,35 @@ tjo tjo tjo btX -hpo -cLE -ygb +pxt +neq +oDT pWR -aAC -ijW -ijW -ijW -ijW -oIT -nIv +dfz +rMJ +rMJ +rMJ +rMJ +eqi +gfC kpM lwG lwG -qqB -onh -onh -onh -onh -rxD -onh -uon -onh -rxD -onh -onh -onh -onh -qqB +aYZ +qjx +qjx +qjx +qjx +fBM +qjx +peY +qjx +fBM +qjx +qjx +qjx +qjx +aYZ fUn fUn fUn @@ -39202,18 +35933,18 @@ fUn fUn pHO fMc -wju -djR -bey -bey +qOk +dxz +lzA +lzA dGm -nQc -lLH -ivj +tPe +ptV +caX dGm -mHX -wwn -wwn +lxk +hHs +hHs fMc mdK mdK @@ -39229,14 +35960,14 @@ pvT pvT eRV vVx -kil +nKv hrJ gWc -oDa -jue +czF +svf fjh hrJ -kil +nKv koG lyV lyV @@ -39334,7 +36065,7 @@ nWM nWM nWM nWM -xpi +cKF nWM nWM nWM @@ -39370,34 +36101,34 @@ tjo tjo btX btX -vVA -ijW -ksM -kdK -ijW -ksM -ijW -ijW -ijW -bzG +rWR +rMJ +vQG +qbB +rMJ +vQG +rMJ +rMJ +rMJ +gyb pWR pWR lwG lwG gjx -kTs -tTU -kTs -kTs +wyP +eOA +wyP +wyP ifT -tUD -onh -rzm +oqZ +qjx +xTy ifT -tTU -kTs -kTs -kTs +eOA +wyP +wyP +wyP gjx fUn fUn @@ -39426,18 +36157,18 @@ fUn fUn pHO fMc -jty -otr -lXX -bey -bey -dsx -szq -ivj -wwn -wwn -wwn -djy +cOD +bUk +lZo +lzA +lzA +hdx +nJs +caX +hHs +hHs +hHs +ndl fMc mdK mdK @@ -39455,9 +36186,9 @@ eRV vVx vxL vxL -kil +nKv vxL -gMm +wKD vxL vxL vxL @@ -39593,33 +36324,33 @@ tjo tjo tjo btX -bPR -tFB -ijW -ijW -ijW -ijW -ijW -ijW -ijW -ijW -sig -ygb -nIv +xCv +bfS +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +bJQ +oDT +gfC lwG lwG wUM wUM ifT -jxJ +fbP ifT wUM wUM -may +cdJ wUM wUM ifT -iwz +ngP ifT wUM wUM @@ -39650,18 +36381,18 @@ fUn fUn pHO fMc -faz -nkK -tNL -bey -bey -bey -bey -ivj -neT -wwn -gXf -tHg +ems +ssY +mHy +lzA +lzA +lzA +lzA +caX +vQJ +hHs +syC +mNd fMc qFw mdK @@ -39683,7 +36414,7 @@ vxL vxL vxL vxL -qck +hSN vxL vVx lyV @@ -39791,7 +36522,7 @@ nWM nWM nWM nWM -xpi +cKF nWM nWM nWM @@ -39817,34 +36548,34 @@ nwF tjo tjo btX -pFG -ijW -ijW -rzZ +fUT +rMJ +rMJ +wfv pWR -gIq -ijW -mVp -srZ -ijW -ijW -ijW -kdK +hFG +rMJ +bxr +lHk +rMJ +rMJ +rMJ +qbB lwG lwG lwG bnc -bSN -kTs -tym +fiO +wyP +eff wUM -kTs -onh -oVw +wyP +qjx +fRT wUM -oUh -kTs -bSN +npV +wyP +fiO gjx uhm uhm @@ -39870,21 +36601,21 @@ uhm uhm qgK mCI -lYa +pZL mCI qgK lDp -kdy -faz -lLH -bey -bey -bey -bey -ivj -wwn -wwn -pDC +rLV +ems +ptV +lzA +lzA +lzA +lzA +caX +hHs +hHs +qxE lDp lDp jtl @@ -39902,11 +36633,11 @@ pvT eRV vVx pQs -gMm +wKD vxL vxL -lxD -qck +iIY +hSN vxL vxL koG @@ -40002,7 +36733,7 @@ nWM nWM nWM nWM -fMs +gGw nWM nWM nWM @@ -40020,9 +36751,9 @@ nWM nWM nWM nWM -fMs -nCN -nCN +gGw +qlb +qlb nWM nWM lcj @@ -40041,34 +36772,34 @@ tjo tjo tjo btX -dyX -ijW -ijW -gYa +rOw +rMJ +rMJ +avK pWR -mwh -ijW -hHX -srZ -ijW -ijW -ijW -ijW +tCK +rMJ +jyD +lHk +rMJ +rMJ +rMJ +rMJ lwG oGE lwG bnc -pHH -kbi -kTs -vNh -kTs -onh -kTs -vNh -kTs -exQ -gPV +mAq +hVf +wyP +nfR +wyP +qjx +wyP +nfR +wyP +dHn +iNR gjx pTi uhm @@ -40097,18 +36828,18 @@ vfA fkl fAM qgK -hbq -xUi -uet -vpZ -bey -bey -bey -bey -wZy -wwn -wwn -wwn +vGT +fXo +dJr +liT +lzA +lzA +lzA +lzA +gzL +hHs +hHs +hHs fMc mdK mdK @@ -40125,10 +36856,10 @@ pvT pvT eRV vVx -gMm +wKD vxL vxL -gMm +wKD vxL vxL vxL @@ -40265,34 +36996,34 @@ tjo pIL tjo btX -ceO -bUA -ksM -ijW -kdK -ijW -ijW -ijW -ijW -ijW -eFH -hXC -nIv +tIV +mJp +vQG +rMJ +qbB +rMJ +rMJ +rMJ +rMJ +rMJ +eaO +nJL +gfC lwG lwG lwG gjx -nXI -kTs -tSo +skd +wyP +vHR wUM -fam -onh -kTs +yhW +qjx +wyP wUM -sOk -xBk -bSN +aZQ +vpX +fiO gjx uhm hai @@ -40324,15 +37055,15 @@ qgK mCI mCI drq -uBd -cQg -hlZ -iiE -djR -wZy -wwn -wwn -rCY +dMp +bEL +dZS +xru +dxz +gzL +hHs +hHs +abH fMc mdK mdK @@ -40356,7 +37087,7 @@ vxL vxL vxL vxL -gMm +wKD koG lyV lyV @@ -40452,19 +37183,19 @@ nWM nWM nWM nWM -xdV -fci -fci -fci -fci -slR -slR -slR -fci -fci -fci -fci -feC +ovq +doK +doK +doK +doK +wFM +wFM +wFM +doK +doK +doK +doK +aMZ nWM nWM nWM @@ -40490,16 +37221,16 @@ tjo tjo btX btX -srZ -ijW -ijW -ijW -ijW -ijW -ijW -ijW -ijW -iNH +lHk +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +rMJ +dYN pWR pWR lwG @@ -40510,9 +37241,9 @@ uRY uRY uRY wUM -luQ -onh -tym +xxm +qjx +eff wUM uRY uRY @@ -40549,14 +37280,14 @@ qVP xso uEu qgK -tRV +ptA lDp -sZf -xVu +pcY +mXF xKU -rju +wTQ xah -rju +wTQ xKU qFw mdK @@ -40604,7 +37335,7 @@ fnn mHO mHO mHO -gkV +qfj mHO mHO vMX @@ -40670,13 +37401,13 @@ sjL nWM nWM nWM -nCN +qlb nWM nWM nWM nWM nWM -hbG +aok foA foA hnn @@ -40688,7 +37419,7 @@ foA foA foA foA -ota +xXA nWM nWM nWM @@ -40714,17 +37445,17 @@ dAH tjo tjo btX -wFz -odF -aVt +dee +dvk +ksg pWR -aAC -ijW -ijW -ksM -mZY -fiW -nIv +dfz +rMJ +rMJ +vQG +lXi +loR +gfC kpM lwG lwG @@ -40735,8 +37466,8 @@ msX msX wUM wUM -nbj -nbj +mIW +mIW wUM uhm vFX @@ -40773,14 +37504,14 @@ bqL bCH dol qgK -tRV +ptA xKU xKU xKU xKU -qcy -fow -fow +wNh +vjY +vjY xKU xKU xah @@ -40800,9 +37531,9 @@ eRV vVx wpT vxL -lpb +hON vVx -kil +nKv vxL wpT koG @@ -40830,7 +37561,7 @@ mHO mHO mHO mHO -bzH +xtS dlM qCq ohr @@ -40900,7 +37631,7 @@ nWM nWM nWM nWM -hbG +aok hnn foA foA @@ -40912,7 +37643,7 @@ foA foA foA hnn -ota +xXA nWM nWM nWM @@ -40929,7 +37660,7 @@ xLx nNK olA kXi -ubM +oSY sSw tjo oRP @@ -40938,17 +37669,17 @@ tjo tjo tjo btX -rWX -gkd +rWx +wKU pWR pWR -pZT -ijW -eFH -jgn -agN -oqO -nIv +fgp +rMJ +eaO +dwq +bmp +cur +gfC kpM lwG lwG @@ -40970,7 +37701,7 @@ uhm uhm fKS uhm -ocS +jqG edj edj gbE @@ -40999,16 +37730,16 @@ xso qgK xKU xKU -gGb -jkQ -aHi -jYU -fow -fow +gZx +tUo +gpk +gUv +vjY +vjY eqF -eWD -byv -meU +xlu +fEH +cYs xah mdK mdK @@ -41022,13 +37753,13 @@ pvT eRV eRV vVx -bqV +eqe vxL gwH vVx hrJ vxL -uZZ +rOV koG lyV lyV @@ -41054,7 +37785,7 @@ mHO mHO mHO dlM -lKJ +iZd dlM qCq eRV @@ -41124,7 +37855,7 @@ nWM nWM nWM nWM -hbG +aok foA foA foA @@ -41136,7 +37867,7 @@ npf foA foA foA -ota +xXA nWM nWM nWM @@ -41153,7 +37884,7 @@ xLx nNK pvG kXi -qKD +sUy tke tjo vNT @@ -41165,13 +37896,13 @@ btX btX btX btX -tHn -ijW -ijW -tHn +vzC +rMJ +rMJ +vzC pWR -nIv -nIv +gfC +gfC pWR jRJ lwG @@ -41222,17 +37953,17 @@ iGy xso xso xKU -lth -nsA -gCO -xiC -fow -fow -jYU -cHi -fow -fow -vFv +wPW +chi +eWM +ldt +vjY +vjY +gUv +qmd +vjY +vjY +viJ xah mdK mdK @@ -41248,10 +37979,10 @@ eRV vVx wpT vxL -rDl +frH vVx vxL -gMm +wKD wpT koG lyV @@ -41277,8 +38008,8 @@ qRj iAI mHO mHO -bzH -qgx +xtS +geP dlM qCq eRV @@ -41348,7 +38079,7 @@ nWM nWM nWM nWM -hbG +aok foA foA foA @@ -41360,7 +38091,7 @@ foA foA foA foA -ota +xXA nWM nWM nWM @@ -41390,8 +38121,8 @@ tjo tjo btX btX -ijW -fZS +rMJ +eBR btX btX msX @@ -41407,8 +38138,8 @@ msX msX msX fnX -ndO -kab +lvG +inA fnX fnX uhm @@ -41431,7 +38162,7 @@ ena gKb ena ena -wxV +cxC pVK vPP uzu @@ -41446,17 +38177,17 @@ bYS xso xso xKU -vVE -kVq -grv -uLN -fow -fow -fDI +jvF +aad +vOz +fxD +vjY +vjY +jqb eqF -pKD -tQG -cAu +vkF +mvK +rlp xKU mtZ mdK @@ -41503,7 +38234,7 @@ mHO mHO dlM dlM -bzH +xtS qCq eRV eRV @@ -41572,7 +38303,7 @@ nWM nWM nWM nWM -gti +gKG foA foA hrs @@ -41584,7 +38315,7 @@ foA pxv foA foA -kTY +guh nWM nWM nWM @@ -41602,7 +38333,7 @@ xLx nNK wIn cQR -ubM +oSY iVA oRP tjo @@ -41631,9 +38362,9 @@ ucr ucr ucr fnX -hCr -nRc -nRc +lWC +pNS +pNS fnX ucr ucr @@ -41670,13 +38401,13 @@ lyX xso uub xKU -vVE -kVq -grv -uLN -tyj -fow -waB +jvF +aad +vOz +fxD +ehL +vjY +qxe eqF eqF eqF @@ -41793,10 +38524,10 @@ sjL nWM nWM nWM -xpi +cKF nWM nWM -gti +gKG foA foA ahi @@ -41808,7 +38539,7 @@ foA tGo foA foA -kTY +guh nWM nWM nWM @@ -41851,17 +38582,17 @@ lwG lwG wtn ucr -klF -nRc -nnh -szp -nRc -nRc -nRc -kRs -rtq -rtq -rtq +sXs +pNS +qSe +oza +pNS +pNS +pNS +ptz +eQZ +eQZ +eQZ ucr ism uhm @@ -41894,18 +38625,18 @@ iGy xso xso xKU -gvM -cIF -pfT -wQv -fow -fow -dra +nxG +xWd +gHd +tDZ +vjY +vjY +yaj eqF -rha -roT -nAi -jYU +cSC +xKR +efI +gUv xah mdK mdK @@ -42020,7 +38751,7 @@ nWM nWM nWM nWM -gti +gKG foA foA hrs @@ -42032,7 +38763,7 @@ foA tGo foA foA -kTY +guh nWM nWM nWM @@ -42075,17 +38806,17 @@ lwG lwG olH ucr -tlp -nRc -nRc -nRc -nRc -nRc -qvS -jfM -jfM -jfM -aUA +mZm +pNS +pNS +pNS +pNS +pNS +ovt +jUC +jUC +jUC +vuw ucr uhm uhm @@ -42119,18 +38850,18 @@ xgm xso xKU xKU -xEw -nDU -axM -xAl -bLm -hul +xQH +jIH +lGu +xBZ +gZh +isx eqF -puI -fow -mQz -jYU -hpN +wrK +vjY +kBY +gUv +jfU umK mdK tZH @@ -42244,7 +38975,7 @@ nWM nWM nWM nWM -hbG +aok foA foA foA @@ -42256,7 +38987,7 @@ foA foA foA foA -ota +xXA nWM nWM nWM @@ -42299,17 +39030,17 @@ lwG lwG lwG fnX -dAo -nRc -nRc -xJq -nRc -nRc -ucX -qoZ -qoZ -qoZ -dHf +gAD +pNS +pNS +snB +pNS +pNS +eMV +iii +iii +iii +dDu fnX uhm gBF @@ -42346,14 +39077,14 @@ eqF eqF eqF eqF -whL -aLn -fow -qih -fow -jjf -fow -fow +hyI +fzu +vjY +tAM +vjY +nxK +vjY +vjY xah mdK mdK @@ -42468,7 +39199,7 @@ nWM nWM nWM nWM -hbG +aok foA foA foA @@ -42480,7 +39211,7 @@ mQd foA foA xFI -ota +xXA nWM nWM nWM @@ -42510,8 +39241,8 @@ tjo wAl hEm hEm -qYa -iof +dRt +aRW hEm hEm msX @@ -42523,17 +39254,17 @@ lwG lwG fnX fnX -lub -nRc -nRc -nRc -nRc -nRc -ogh -yju -yju -yju -qHu +xRi +pNS +pNS +pNS +pNS +pNS +gmF +ngx +ngx +ngx +gcj fnX fnX nBH @@ -42553,7 +39284,7 @@ qsA xOT lgx uEu -giS +nMV dbw jfg pCL @@ -42566,17 +39297,17 @@ wur uEu uEu xKU -dYn -tfI -iul +rXg +gND +cMf eqF -rcq -rKX -kWB -rLq -fow -fow -beA +wxs +lwV +bns +mnR +vjY +vjY +aEB xKU xKU gdw @@ -42692,7 +39423,7 @@ nWM nWM nWM nWM -hbG +aok foA foA hnn @@ -42704,7 +39435,7 @@ foA foA sWm foA -ota +xXA nWM nWM nWM @@ -42730,35 +39461,35 @@ tjo tjo hdV hEm -wUY -wUY +owr +owr hEm -cvL -qYa -qYa -cef +pMi +dRt +dRt +bgd hEm -wUY -wUY +owr +owr hEm jRJ lwG lwG lwG ucr -spe -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -nRc -ogz +viP +pNS +pNS +pNS +pNS +pNS +pNS +pNS +pNS +pNS +pNS +pNS +cGO ucr ena ena @@ -42790,17 +39521,17 @@ mCI fem baP xKU -dYn -tlT -smO +rXg +jus +oby eqF -pse -agx -bap +otV +cVK +pmM eqF -lUG -hDw -mIs +qIi +rRB +agg xah fDa mdK @@ -42916,7 +39647,7 @@ nWM nWM nWM nWM -hbG +aok foA foA foA @@ -42928,10 +39659,10 @@ foA foA foA foA -ota +xXA nWM nWM -xpi +cKF nWM nWM nWM @@ -42953,37 +39684,37 @@ vra tjo tjo tjo -wUY -eJc -haS -qYa -qYa -qYa -qYa -qYa -sdx -bHO -lGX -wUY +owr +ijS +vek +dRt +dRt +dRt +dRt +dRt +ibF +cBJ +jMn +owr mms lwG lwG lwG -vuJ -nRc -nSF -nSF -jNN -oso -nSF -goG -nRc -nRc -nRc -nRc -nRc -nRc -vuJ +xNq +pNS +nPI +nPI +lTv +hoB +nPI +jBj +pNS +pNS +pNS +pNS +pNS +pNS +xNq ena ena ena @@ -43014,17 +39745,17 @@ jRf eDs upT xKU -ozj -ead -pKe -hWA -dat -hDw -lTH +ykb +ooq +mxk +roa +gAL +rRB +hsn eqF -iCW -dqg -chp +pSa +oQL +haR xah mdK mdK @@ -43140,19 +39871,19 @@ nWM nWM nWM nWM -pSu -vZN -vZN -vZN -vZN -mnh -mnh -mnh -vZN -vZN -vZN -vZN -njI +mZK +cSh +cSh +cSh +cSh +mQP +mQP +mQP +cSh +cSh +cSh +cSh +lhI nWM nWM nWM @@ -43177,36 +39908,36 @@ tjo tjo tjo tjo -wUY -qet -qYa -jMN -qYa -qYa -qYa -qYa -qYa -qYa -taQ -wUY +owr +hfd +dRt +uLI +dRt +dRt +dRt +dRt +dRt +dRt +cKE +owr lwG lwG lwG lwG ucr -nRc -nSF +pNS +nPI nCP nCP nCP -nSF -nRc -nRc -nRc -nRc -nRc -nRc -kGV +nPI +pNS +pNS +pNS +pNS +pNS +pNS +xFJ ucr ena ena @@ -43238,17 +39969,17 @@ wZS vkv xJO xah -fow -fow -jJQ +vjY +vjY +gpH eqF -qYw -fow -ftj +nJf +vjY +ilF eqF -jzX -wmd -kmL +wFB +hoH +qiI xah mdK mdK @@ -43402,16 +40133,16 @@ tjo tjo hEm hEm -bPL -qYa -qYa -ckW -qYa -qYa -ckW -qYa -qYa -qGz +mEV +dRt +dRt +xiZ +dRt +dRt +xiZ +dRt +dRt +iJd hEm hEm lwG @@ -43419,17 +40150,17 @@ lwG lwG fnX fnX -nSF +nPI nCP nCP nCP -vEU -nRc -nRc -nRc -nRc -nRc -mTE +tzX +pNS +pNS +pNS +pNS +pNS +sPg fnX fnX uWU @@ -43466,9 +40197,9 @@ xah xah xKU xKU -fow -fow -vYw +vjY +vjY +aOJ xKU xah xah @@ -43624,36 +40355,36 @@ tjo tjo ozt tjo -wUY -qYa -qYa -qYa -ckW -ckW -qYa -qYa -ckW -ckW -qYa -qYa -tEq -wUY +owr +dRt +dRt +dRt +xiZ +xiZ +dRt +dRt +xiZ +xiZ +dRt +dRt +tur +owr wOL wOL wOL wOL fnX -nJB +cUy jXS nCP nCP -nSF -nRc -nRc -nRc -nRc -nRc -nQo +nPI +pNS +pNS +pNS +pNS +pNS +ghM fnX upT upT @@ -43691,7 +40422,7 @@ upT upT xKU xah -rju +wTQ xah xKU rLo @@ -43848,36 +40579,36 @@ tjo tjo tjo tjo -vpa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -jMN -qYa -qYa -qYa -vpa +kgl +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +uLI +dRt +dRt +dRt +kgl wOL wOL wOL qRz ucr -nSF -nSF -nSF -nSF -nSF -nRc -nRc -nRc -nRc -nRc -ljO +nPI +nPI +nPI +nPI +nPI +pNS +pNS +pNS +pNS +pNS +wHK ucr upT dqW @@ -44072,36 +40803,36 @@ tjo sxA tjo tjo -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa -qYa +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt +dRt wOL wOL qRz nGZ ucr -vLU -nRc -nRc -nRc -nRc -xwH -nRc -fXZ -yew -dwE -cUs +sUA +pNS +pNS +pNS +pNS +tmV +pNS +rZo +bHL +dRW +opR ucr upT aCh @@ -44118,11 +40849,11 @@ upT upT sXF ttG -jBP -jnw +lbc +mbh ttG -jBP -jnw +lbc +mbh ttG sXF cPy @@ -44250,15 +40981,15 @@ uiI sjL sjL sjL -dEP -nUg -nUg -nUg -nUg -nUg -nUg -nUg -nUg +wnd +rWf +rWf +rWf +rWf +rWf +rWf +rWf +rWf nWM nWM nWM @@ -44296,20 +41027,20 @@ tjo tjo tjo tjo -wUY -qYa -qYa -qYa -ckW -ckW -exh -qYa -ckW -ckW -qYa -qYa -qYa -wUY +owr +dRt +dRt +dRt +xiZ +xiZ +bJV +dRt +xiZ +xiZ +dRt +dRt +dRt +owr wOL wOL kMu @@ -44319,9 +41050,9 @@ ucr ucr ucr fnX -eqW -nRc -nRc +iEz +pNS +pNS fnX ucr ucr @@ -44341,13 +41072,13 @@ jFZ jFZ jFZ jFZ -aFP -aFP -aFP -aFP -aFP -aFP -aFP +psD +psD +psD +psD +psD +psD +psD dBu dBu dBu @@ -44474,7 +41205,7 @@ uiI sjL sjL sjL -cqh +kRy pVp pVp pVp @@ -44522,16 +41253,16 @@ dAH tjo hEm hEm -aWH -qYa -qYa -ckW -qYa -qYa -ckW -qYa -qYa -scO +uuu +dRt +dRt +xiZ +dRt +dRt +xiZ +dRt +dRt +sfd hEm hEm wOL @@ -44544,7 +41275,7 @@ upT upT fnX ucr -bjY +nqZ ucr fnX upT @@ -44562,19 +41293,19 @@ upT jFZ jFZ jFZ -pub -pub +lHW +lHW bWC -mRc -aFP -aFP -aFP -aFP -aFP -gdV +iSN +psD +psD +psD +psD +psD +fVf dBu -uIh -xsJ +fCP +auz dBu dBu dBu @@ -44698,29 +41429,29 @@ sjL sjL sjL sjL -cqh +kRy pVp -brn -brn -brn -brn -brn -brn -brn -brn -brn +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz nWM nWM nWM nWM nWM -dgH -lwr -lwr -lwr +gvH +kRM +kRM +kRM nWM nWM -xpi +cKF nWM nWM nWM @@ -44745,18 +41476,18 @@ tjo tjo tjo tjo -wUY -wGi -qYa -qYa -qYa -jMN -qYa -qYa -qYa -qYa -cLz -wUY +owr +gOK +dRt +dRt +dRt +uLI +dRt +dRt +dRt +dRt +dRX +owr wOL wOL wOL @@ -44784,23 +41515,23 @@ aUc yhs jFZ jFZ -pub -pub -lEz -lEz +lHW +lHW +uSZ +uSZ bWC bWC -thA -aFP -aFP -aFP -dbx +fme +psD +psD +psD +kFy dBu dBu -tDB -iDu -rZh -iDu +eaH +vrL +bOR +vrL dBu saw saw @@ -44922,9 +41653,9 @@ sjL pSF pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -44932,7 +41663,7 @@ pVp pVp pVp pVp -brn +ifz nWM nWM nWM @@ -44951,15 +41682,15 @@ nWM nWM nWM nWM -iWO -oWG -oWG -oWG -oWG -oWG -oWG -oWG -tja +muA +twE +twE +twE +twE +twE +twE +twE +kHF kBn kXi tjo @@ -44969,18 +41700,18 @@ tjo tjo tjo tjo -wUY -hTy -gLF -hOC -qYa -qYa -qYa -qYa -qYa -qYa -mjq -wUY +owr +dUK +nEV +doA +dRt +dRt +dRt +dRt +dRt +dRt +oqt +owr uiN wOL urB @@ -45007,26 +41738,26 @@ upT sIf sIf jFZ -gSL -lEz -lEz -hRc -lEz -uIm +lkG +uSZ +uSZ +reW +uSZ +fwe bWC -aFP -aFP -aFP -aFP -aFP +psD +psD +psD +psD +psD dBu -sDw -iDu -iDu -iDu -gRh +nxb +vrL +vrL +vrL +wbS dBu -viw +bct saw saw upT @@ -45146,9 +41877,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -gTn +dvE pVp pVp pVp @@ -45156,7 +41887,7 @@ pVp uDS pVp pVp -brn +ifz nWM nWM aLC @@ -45175,15 +41906,15 @@ nWM nWM nWM nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +fcB +nMN +nMN +nMN +nMN +nMN +nMN +nMN +qgR kBn kXi tjo @@ -45194,16 +41925,16 @@ tjo tjo tjo hEm -wUY -wUY +owr +owr hEm -qYa -qYa -qYa -qYa +dRt +dRt +dRt +dRt hEm -wUY -wUY +owr +owr hEm vja wOL @@ -45229,29 +41960,29 @@ sIf ayG ayG sIf -kuY +qbR bWC -eLZ -blC -blC -blC -lEz -nLK +cmA +pMV +pMV +pMV +uSZ +sED bWC -jjt -aFP -aFP -aFP -aFP +dcR +psD +psD +psD +psD dBu -tWI -oJt -oJt -rog -iDu +uSQ +fuJ +fuJ +dbA +vrL dBu -lrA -sLB +bgW +mbB saw xWu xWu @@ -45370,9 +42101,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -uyh +pKM pVp pVp pVp @@ -45380,7 +42111,7 @@ pVp gwz pVp pVp -brn +ifz pVp aLC aLC @@ -45397,17 +42128,17 @@ nWM nWM ncL nWM -nCN -nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +qlb +nWM +fcB +nMN +nMN +nMN +nMN +nMN +nMN +nMN +qgR kBn kXi tjo @@ -45421,10 +42152,10 @@ tjo tjo tjo hEm -wUY -qYa -iof -wUY +owr +dRt +aRW +owr hEm tjo tjo @@ -45450,35 +42181,35 @@ upT oIU upT ayG -kcX -kcX -ewK -kcX +oHY +oHY +mFW +oHY bWC bla bWC bWC bWC -kFm -lEz -xvL -aFP -qhb -duc -jBP -aFP +mVc +uSZ +pcx +psD +jrL +idA +lbc +psD dBu dBu dBu dBu dBu -bdZ +jZb dBu -bVG -iLM -cgC -bVG -bVG +mIB +egh +jzE +mIB +mIB xWu upT qov @@ -45594,9 +42325,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -kIU +mpe pVp pVp pVp @@ -45604,7 +42335,7 @@ pVp omw pVp pVp -brn +ifz pVp aLC aLC @@ -45623,15 +42354,15 @@ nWM nWM nWM nWM -lye -naZ -naZ -naZ -naZ -naZ -naZ -naZ -pvj +fcB +nMN +nMN +nMN +nMN +nMN +nMN +nMN +qgR kBn kXi tjo @@ -45674,35 +42405,35 @@ upT upT upT ayG -xpn -ier -cRx -kcX +nWe +knd +tBH +oHY bWC -pBT -edZ -ulp -xvL -qpg -lEz +fJy +fsA +kpI +pcx +buI +uSZ bWC -aFP -tpc -gSP -lfk -aFP +psD +gKt +aWa +vnc +psD haW -jbu -rfN -aIS -txW -aIS +fcI +lwk +abs +ctm +abs haW -vES -iLM -bVG -bVG -rPu +dbH +egh +mIB +mIB +cHW xWu upT upT @@ -45818,9 +42549,9 @@ pSF pSF pSF pZP -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -45828,7 +42559,7 @@ pVp pVp pVp pVp -brn +ifz pVp pVp aLC @@ -45847,15 +42578,15 @@ nWM nWM nWM nWM -rGU -iFs -iFs -iFs -iFs -iFs -iFs -iFs -oKt +eSx +tDi +tDi +tDi +tDi +tDi +tDi +tDi +gjP kBn kXi tjo @@ -45898,35 +42629,35 @@ upT sIf sIf sIf -tzV -kNf -hIv -tON +nPh +bLe +kgm +vWQ bWC -bLo -mzY -fsB +dcd +gHU +lga bWC -hVH -mxS +lFw +wCN bWC -anm -tpc -tAE -lfk -aFP +vCl +gKt +myv +vnc +psD haW -peR -hJu -hJu -uTn -hJu +hDR +vlQ +vlQ +dVI +vlQ haW -jCY -iLM -paN -vnw -pnm +xBO +egh +pWo +fZZ +sZI saw upT lIN @@ -46042,9 +42773,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -46052,7 +42783,7 @@ pVp pVp fFD pVp -brn +ifz pVp pVp aLC @@ -46120,12 +42851,12 @@ cCJ upT upT ayG -efs -pRc -cEm -sSf -cEm -cEm +gAX +xHD +gkk +pmI +gkk +gkk jbc qEj bWC @@ -46134,11 +42865,11 @@ bWC bWC bWC bWC -azy -tpc -oVO -lfk -pfF +gOM +gKt +vnu +vnc +fML haW jZh jZh @@ -46147,7 +42878,7 @@ jZh mUV haW saw -qMH +tVE saw saw saw @@ -46266,9 +42997,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -46276,7 +43007,7 @@ pVp pVp lqx pVp -brn +ifz pVp pVp aLC @@ -46344,39 +43075,39 @@ upT upT upT ayG -dsV -kcX -kcX +wMQ +oHY +oHY gye gye gye gye -fPx -uje -igK -uje -tDa -akv +fql +ult +qOx +ult +mHx +fdf jJc -vEg -tpc -tAE -lfk -qUz +oii +gKt +myv +vnc +lxi haW -dbS -hzK -nXV -wyb -lgG +nGc +aVF +vpJ +nRx +lJo haW -jPl -tud -oDx +eXZ +nvX +qut lQD -ctX -hHS -qJD +rAy +fWa +xoY lQD upT vnV @@ -46484,15 +43215,15 @@ eho pSF jAP jAP -gco +iHG jAP jAP jAP pSF pSF -cqh +kRy pVp -tvq +nDS qUf sXi pVp @@ -46500,10 +43231,10 @@ pVp pVp uqA pVp -nUg -nUg -nUg -nUg +rWf +rWf +rWf +rWf aLC aLC lIs @@ -46568,39 +43299,39 @@ upT rZR sIf sIf -qhe -tLH -kcX -cRT -vBb -diI +qEM +fgE +oHY +kok +hsS +mfx gye -ndb -eKW -sbJ -eKW -sbJ -eKW +vyM +wzU +tUe +wzU +tUe +wzU sVw -aFP -tpc -uLq -lfk -beK +psD +gKt +mZT +vnc +iYU jZh -eED -tuz -tuz -tuz -hMk +uiS +cmM +cmM +cmM +blV haW -dsQ -tud -hMO +xLi +nvX +mmk lQD -aUG -hVU -uUL +nUh +fnF +pQY lQD lQD upT @@ -46707,16 +43438,16 @@ hNK eho pSF jAP -lBG -voL -voL -pLd +wra +tpf +tpf +oRL jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -46724,7 +43455,7 @@ pVp pVp pVp pVp -brn +ifz pVp pVp pVp @@ -46791,13 +43522,13 @@ upT upT upT sIf -qkp -kcX -kcX -kcX -hEH -aVR -sAe +lmo +oHY +oHY +oHY +isZ +uwS +qkx gye fya sGh @@ -46805,27 +43536,27 @@ sGh sGh sGh sGh -eTP -aFP -iRw -aOd -nXZ -aFP +lTp +psD +ygC +tTE +xoE +psD jZh -hao -dUp -tuz -tuz -nga +vqh +qxy +cmM +cmM +puX haW -nLS -xMX -jOL +jtP +scQ +lpo lQD lQD lQD -uUL -eHj +pQY +wQt lQD ghg upT @@ -46931,16 +43662,16 @@ jle eho pSF jAP -jBL -voL -voL -hMq +ghp +tpf +tpf +dlb jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -46948,7 +43679,7 @@ pVp pVp lKs pVp -brn +ifz pVp pVp pVp @@ -47017,8 +43748,8 @@ sIf sIf gye gye -kcX -gwT +oHY +lDg gye gye gye @@ -47029,27 +43760,27 @@ sGh sGh sGh sGh -dNh -aFP -aFP -aFP -aFP -aFP +vos +psD +psD +psD +psD +psD jZh -rLI -fBL -kaW -gGi -ohO +xGp +mmn +qsc +quM +lPt haW -eMk -tud -rbg -pqy -jOL -kqB -uUL -kpz +eUj +nvX +bUP +aJu +lpo +gFu +pQY +npb lQD lQD upT @@ -47155,16 +43886,16 @@ jWV eho pSF jAP -hxu -voL -voL -eAM +koe +tpf +tpf +stp jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -47238,43 +43969,43 @@ upT upT upT ayG -mue -uIL -sXr -kcX -kcX -cRT -vBb -gLu +mdE +lMu +pjf +oHY +oHY +kok +hsS +uIT gye -cDq -qXx -dvV -qXx +gKi +sJu +pxz +sJu sKE sKE sKE -aFP -bAP -jBP -aFP -aFP +psD +nwO +lbc +psD +psD haW jZh haW -iLL -kJh -oyI +mmE +oBb +jqz haW -imp -rzY -hmu -fNf -eaS +epM +csC +aTl +asJ +aBZ lQD -usj -vTz -qWq +dwM +cxA +aqo dUJ upT chK @@ -47379,16 +44110,16 @@ gAk nmr pSF jAP -tdG -voL -voL -tWK +xtk +tpf +tpf +gMr jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -47412,7 +44143,7 @@ aLC aLC glX glX -oGH +wBy glX aLC aLC @@ -47462,43 +44193,43 @@ upT upT upT ayG -tdy -qyz -abp -kcX -kcX -hRv -bVS -kZS +uyA +hwZ +crB +oHY +oHY +ajD +hgw +lzg gye -dCS -eKW -sbJ -eKW +nna +wzU +tUe +wzU sKE -mgN -rjf -aFP -bAP -bAP -jBP -aFP -rjf -wRA +fhn +thF +psD +nwO +nwO +lbc +psD +thF +uRd jZh -qAR -kcK -uHA +wfh +eiB +mnX haW -gEq -iuv -jOL -jOL -qai +dfq +uRa +lpo +lpo +neI lQD -lDE -quP -aRY +cFG +sUr +eOL dUJ upT chK @@ -47603,16 +44334,16 @@ pSF pSF pSF jAP -vqB -sVW -qab -hGa +iXe +tTQ +xnu +tac jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -47635,8 +44366,8 @@ aLC aLC aLC glX -lYz -jVL +cOf +rjB glX lcj ybU @@ -47689,8 +44420,8 @@ sIf gye gye gye -kcX -kKO +oHY +gfn gye gye gye @@ -47700,15 +44431,15 @@ sVw sVw sVw sKE -lNK -aFP -aFP +wAk +psD +psD wPx -bAP -bAP -jBP -aFP -vII +nwO +nwO +lbc +psD +wrH haW mUV jZh @@ -47717,7 +44448,7 @@ haW lQD cId dUJ -rYI +uYD dUJ lQD cId @@ -47834,9 +44565,9 @@ jAP jAP pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -47844,7 +44575,7 @@ pVp pVp pVp pVp -brn +ifz pVp pVp pVp @@ -47858,10 +44589,10 @@ aLC aLC aLC aLC -ioM -hPv -mot -ioM +fWr +rdw +xXh +fWr nkr xLx xLx @@ -47909,45 +44640,45 @@ upT fND kyl ttG -qwA -aFP -dKO -aFP -aFP -aFP -aFP -aFP -xMy -ecv -gWq -aFP -aFP -aFP -aFP -aFP -aFP -aFP +cEp +psD +oQF +psD +psD +psD +psD +psD +xAY +gus +rmU +psD +psD +psD +psD +psD +psD +psD wPx wPx -bAP -bAP -aFP -aFP -aFP -aFP -jjt -xMy -enV -wxL -hot -aFP -aFP -aFP -sre -hot -dKO -aFP -aFP +nwO +nwO +psD +psD +psD +psD +dcR +xAY +peN +tLN +tHs +psD +psD +psD +aoF +tHs +oQF +psD +psD ttG ngi ngi @@ -48058,9 +44789,9 @@ pSF pSF kxY pSF -cqh +kRy pVp -brn +ifz pVp pVp pVp @@ -48068,24 +44799,24 @@ pVp pVp pVp pVp -brn +ifz pVp pVp pVp eXn aLC aLC -sYQ +mCe aLC aLC aLC aLC aLC aLC -ioM -tpY -mie -mYJ +fWr +knX +kVu +kEu cvK kRZ cJy @@ -48133,46 +44864,46 @@ mFg ksY wOL heF -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -aFP -aFP -aFP +psD +psD +psD +psD +psD +psD +psD +psD +psD +psD +tHs +psD +psD +psD +psD +psD +psD +psD wPx -bAP -kkx -bAP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -jjt -aFP -aFP -aFP -hot -aFP -aFP -aFP -fBS +nwO +bMM +nwO +psD +psD +psD +psD +psD +psD +psD +psD +tHs +dcR +psD +psD +psD +tHs +psD +psD +psD +mOO ngi ngi ngi @@ -48282,9 +45013,9 @@ pSF gxa pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp hdW @@ -48292,10 +45023,10 @@ pVp pVp pVp pVp -rCX -rCX -rCX -uyu +qPz +qPz +qPz +sDp aLC aLC aLC @@ -48306,10 +45037,10 @@ aLC aLC aLC aLC -ioM -kbK -lbo -mYJ +fWr +bok +eMr +kEu cvK kRZ hiO @@ -48357,46 +45088,46 @@ wOL urB wOL wAc -aFP -aFP -aFP -aFP -aFP -aFP -hre -hre -hre -hre -szR -hre -hre -hre -hre -lAn -aFP -aFP -bAP -bAP -bAP +psD +psD +psD +psD +psD +psD +jwP +jwP +jwP +jwP +qCs +jwP +jwP +jwP +jwP +kyw +psD +psD +nwO +nwO +nwO wPx -aFP -aFP -hre -hre -hre -hre -hre -hre -szR -hre -hre -aFP -aFP -hot -aFP -jjt -aFP -aFP +psD +psD +jwP +jwP +jwP +jwP +jwP +jwP +qCs +jwP +jwP +psD +psD +tHs +psD +dcR +psD +psD ngi ngi ngi @@ -48506,9 +45237,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp hdW @@ -48516,12 +45247,12 @@ pVp pVp pVp pVp -brn +ifz pVp pVp -cIr -cIr -sYQ +xFc +xFc +mCe aLC aLC aLC @@ -48531,8 +45262,8 @@ aLC aLC aLC glX -xsO -cLG +wwS +uXN wzq plL xLx @@ -48581,12 +45312,12 @@ wOL wOL wOL ttG -aFP -aFP -aFP -aFP -aFP -ykO +psD +psD +psD +psD +psD +jAL kqp jht poX @@ -48596,15 +45327,15 @@ jcl cOm jcl cIG -iAd -pEZ -noT -afE +daL +tZV +ana +hoP mMu pdf pdf -noT -kEI +ana +cVg lXF jcl sit @@ -48614,12 +45345,12 @@ jcl rCV jcl qqk -iAd -xEC -dZL -aFP -aFP -aFP +daL +apc +pEp +psD +psD +psD ttG ngi ngi @@ -48711,12 +45442,12 @@ qrv qrv xUI egk -geq +wJy pVi -qZb +qxv kTK -eSW -dDD +grU +lDe wnL bUY bUY @@ -48730,9 +45461,9 @@ pSF pSF pSF pSF -cqh +kRy pVp -brn +ifz pVp pVp hdW @@ -48740,7 +45471,7 @@ pVp pVp pVp pVp -brn +ifz ffS pVp aLC @@ -48755,8 +45486,8 @@ aLC aLC aLC glX -aZe -cLG +muK +uXN glX nkr xLx @@ -48805,46 +45536,46 @@ wOL wOL wOL heF -aFP -aFP -aFP -aFP -aFP -aFP -aHI -aHI -aHI -aHI -hmT -aHI -aHI -aHI -aHI -aFP -aFP -aFP -bAP -bAP -bAP +psD +psD +psD +psD +psD +psD +vAV +vAV +vAV +vAV +ogu +vAV +vAV +vAV +vAV +psD +psD +psD +nwO +nwO +nwO wPx -aFP -aFP -aHI -aHI -aHI -aHI -aHI -aHI -hmT -aHI -aHI -aFP -aFP -hot -aFP -aFP -aFP -fBS +psD +psD +vAV +vAV +vAV +vAV +vAV +vAV +ogu +vAV +vAV +psD +psD +tHs +psD +psD +psD +mOO ngi ngi ngi @@ -48935,28 +45666,28 @@ qrv qrv bUY fOX -oNN -pAh -oNN -fJl -sHk -oNN -pvM -oIc +cwd +fwl +cwd +wJu +tDw +cwd +iQk +hJl xUI mig uEe pSF nHa pSF -waq -nsg +xCN +jzi pSF rxq pSF -cqh +kRy pVp -brn +ifz lCv pVp dQF @@ -48964,7 +45695,7 @@ pVp pVp pVp pVp -brn +ifz pVp pVp aLC @@ -48979,9 +45710,9 @@ aLC aLC glX glX -uMx -cLG -ioM +evA +uXN +fWr vHT xLx xLx @@ -49029,46 +45760,46 @@ cSP htX wOL wAc -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -aFP -aFP -aFP +psD +psD +psD +psD +psD +psD +psD +psD +psD +psD +tHs +psD +psD +psD +psD +psD +psD +psD wPx -bAP -bAP -bAP -aFP -lAn -aFP -aFP -aFP -aFP -aFP -aFP -hot -aFP -aFP -aFP -aFP -hot -aFP -jjt -aFP -aFP +nwO +nwO +nwO +psD +kyw +psD +psD +psD +psD +psD +psD +tHs +psD +psD +psD +psD +tHs +psD +dcR +psD +psD ngi ngi gWD @@ -49158,13 +45889,13 @@ qrv qrv qrv bUY -oNN -qPV -uzA -hca -tGs -oNN -oNN +cwd +iCg +aTA +jth +phv +cwd +cwd vkX mig wvN @@ -49178,17 +45909,17 @@ uTG pSF lFH pSF -cqh +kRy pVp -brn -brn -brn -brn -brn -brn -brn -brn -brn +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz +ifz pVp pVp aLC @@ -49202,10 +45933,10 @@ aLC rfb aLC glX -eSL +tUx san -rVX -ioM +cXc +fWr nkr kwJ xLx @@ -49253,52 +45984,52 @@ lKt eRU uOZ ttG -asu -aFP -sRx -aFP -aFP -aFP -aFP -aFP -xMy -cAZ -gWq -aFP -aFP -aFP -aFP -aFP -aFP -aFP +owj +psD +tKJ +psD +psD +psD +psD +psD +xAY +euw +rmU +psD +psD +psD +psD +psD +psD +psD wPx wPx -bAP -bAP -aFP -aFP -aFP -aFP -aFP -xMy -bnF -wxL -oZs -aFP -aFP -aFP -aFP -mcH -aFP -aFP -aFP +nwO +nwO +psD +psD +psD +psD +psD +xAY +xIB +tLN +rxM +psD +psD +psD +psD +mQg +psD +psD +psD ttG ngi ngi ngi ngi btc -aeW +uZd bZf uVT tZH @@ -49382,14 +46113,14 @@ qrv qrv qrv muv -bBr -fji -sTG -qwG +pXM +kMC +rWe +wWs rUl -oNN -gaN -fJl +cwd +rJe +wJu nEF wvN mig @@ -49402,7 +46133,7 @@ pSF pSF pSF pSF -cqh +kRy pVp lCv pVp @@ -49425,11 +46156,11 @@ aLC aLC aLC aLC -ioM -viO +fWr +sNP san -cLG -ioM +uXN +fWr nkr xLx xLx @@ -49481,32 +46212,32 @@ ijV fHW fHW fHW -ylV -xpS +rti +cYB fHW fHW fHW mLm wpq -cTB -cTB +hsI +hsI mLm mLm -lNK -aFP -aFP +wAk +psD +psD wPx -bAP -bAP -nXZ -aFP -vII +nwO +nwO +xoE +psD +wrH izY -qMX -xpt -qMX -qMX -qMX +bwS +xpW +bwS +bwS +bwS jnf izY izY @@ -49522,7 +46253,7 @@ toI toI toI awE -aeW +uZd bZf uiK tZH @@ -49606,13 +46337,13 @@ qrv qrv qrv bUY -oNN -oNN -fJl -cmi +cwd +cwd +wJu +rfl eTx wvN -oNN +cwd eLB mig tSC @@ -49626,19 +46357,19 @@ xlU pSF eRG pSF -wbj -rCX -rCX -rCX -rCX -rCX -rCX -rCX -rCX -jKR -rCX -rCX -rCX +fiG +qPz +qPz +qPz +qPz +qPz +qPz +qPz +qPz +nIW +qPz +qPz +qPz aLC aLC xPa @@ -49649,11 +46380,11 @@ aLC aLC aLC aLC -ioM -ixN +fWr +bLJ jFp -cLG -ioM +uXN +fWr nkr xLx xLx @@ -49702,43 +46433,43 @@ lKt lKt lKt wqj -byy -aJG -dEs -ylV -ylV -xyb -lcM -tVa +jRj +lUl +sfk +rti +rti +nmQ +fkn +ptH mLm -ukl -ugv -ugv -rGX +bCA +sHL +sHL +ovw mLm -nbQ -rjf -aFP -bAP -bAP -nXZ -aFP -rGj -vBa +axk +thF +psD +nwO +nwO +xoE +psD +cpq +cIm izY -nZy -aoV -wcI -fKt -uRt -nXa -nKH -ucs +jkr +eNa +vsN +erC +nQi +fzs +fMr +ilT izY -yfR -soF -rCP -pNa +gsT +wCQ +gaY +ccE xRl xNz aDB @@ -49831,24 +46562,24 @@ qrv qrv xUI rwh -pvM -uNn -oNN +iQk +hzA +cwd rDR rDR -oNN -ffB -oIc +cwd +sYA +hJl bUY bUY gnc mdO -hQh +fMk pSF lFH uvz -hQh -nsg +fMk +jzi pSF mKi bDM @@ -49873,10 +46604,10 @@ aLC aLC aLC aLC -ioM -fgo +fWr +tHS san -cLG +uXN glX nkr xLx @@ -49925,44 +46656,44 @@ fvJ fvJ lKt sKH -ahX -osi -kWK -vaF -ylV -ylV -oEB -kWK -rey +wrS +bBD +cqQ +qfN +rti +rti +kYY +cqQ +vQv mLm -mGD -wIE -ugv -gpu +fep +inp +sHL +uGe mLm mLm mLm -ipF -bAP -nXZ -aFP -ipF +beV +nwO +xoE +psD +beV ixp ixp ixp -boC -aoV -aoV -aoV -aoV -soF -jva -cxH +rgj +eNa +eNa +eNa +eNa +wCQ +lNn +hmr izY -euM -soF -fCg -iol +fyz +wCQ +xoU +jxw xRl aDB aDB @@ -50055,19 +46786,19 @@ qrv qrv muv wnL -oNN -oNN +cwd +cwd tMe -qZb +qxv xuI -qZb +qxv wnL bUY bUY mmF -eZx -tqX -jDq +fRU +fBH +jKG nku pSF pSF @@ -50098,9 +46829,9 @@ aLC aLC aLC glX -nBR +phx iYS -cLG +uXN glX cwJ xLx @@ -50153,39 +46884,39 @@ ijV ijV fHW fHW -ylV -brl +rti +odV fHW fHW fHW mLm -tkg -bHA -uWO -csW -bab -guB +gAm +cht +wMH +hnZ +eRD +dVQ mLm -iPI -aFP -aFP -aFP -iPI -rlb -ljx -ake -ehf -aoV -shy -dyy -aoV -aDo -rCP -vWw +ueA +psD +psD +psD +ueA +epK +dTN +yhB +lCr +eNa +wBA +vtl +eNa +sTf +gaY +pRS izY -xen -soF -vYg +bhf +wCQ +vce xRl xRl aDB @@ -50281,10 +47012,10 @@ qrv bUY muv muv -cCj +onx wnL bUY -cCj +onx bUY rsS qTU @@ -50321,11 +47052,11 @@ xPa xPa aLC aLC -ioM -boN +fWr +tEF san -njv -mYJ +rye +kEu cvK cJy xLx @@ -50349,7 +47080,7 @@ exj ihp agr agr -kRa +adq tef gmU agr @@ -50375,41 +47106,41 @@ lKt lKt lKt ijV -wpe -uik -ylV -ylV -qSV -xsR -qSV +kBc +kta +rti +rti +hid +eIn +hid mLm -hrM -ugv -vzR -ugv -ugv -bdf +yeA +sHL +moF +sHL +sHL +fRF mLm -bTt -qhb -duc -jBP -beK -rlb -itX -ake -mgH -aoV -aoV -aoV -aoV -cfi -pMK -rCP -tQN -rCP -ovC -raP +rTg +jrL +idA +lbc +iYU +epK +lec +yhB +bfV +eNa +eNa +eNa +eNa +oLa +nYK +gaY +rXl +gaY +mdv +rsJ xRl aDB oXJ @@ -50545,11 +47276,11 @@ xPa aLC aLC aLC -ioM -boN +fWr +tEF san -qPK -mYJ +muQ +kEu cvK cJy xLx @@ -50573,7 +47304,7 @@ exj fPr xlC agr -kRa +adq tef tef jqh @@ -50600,33 +47331,33 @@ lKt lKt ijV ijV -scn -bWH -bWH -qWT -pyU -lPR +eYU +seY +seY +slJ +qiv +uNU lYs -dfU -krg -ugv -bdf -ugv -gsC +fGY +sZq +sHL +fRF +sHL +kao mLm -hHA -tpc -ihU -lfk -aFP -htw -bCa -ake -kpD -aoV -aoV -aoV -gJk +com +gKt +hxW +vnc +psD +huh +tBj +yhB +ctB +eNa +eNa +eNa +gqM jnf izY izY @@ -50769,11 +47500,11 @@ aLC aLC aLC aLC -ioM -xZP +fWr +iFN pdP -kKX -ioM +nwy +fWr nkr xLx cnI @@ -50823,40 +47554,40 @@ lKt lKt lKt lKt -ahX -faf -ylV -ylV +wrS +nCZ +rti +rti fHW fHW fHW mLm -mGD -sAo -ugv -kPj -ugv -jlw +fep +wJR +sHL +isz +sHL +eTZ mLm -sYp -tpc -jIa -lfk -jjt -bCa -bCa -ake -kpD -wMx -bcv -jTw -iRB +qbP +gKt +gwJ +vnc +dcR +tBj +tBj +yhB +ctB +yhJ +pir +oNr +toJ jnf -xXT -eiP -iXK -bCa -bCa +aAF +ePt +htc +tBj +tBj orc aqI aDB @@ -50973,9 +47704,9 @@ pSF uvJ tFW tFW -aMJ -tCN -gkv +sib +jLW +hSU tFW tFW uvJ @@ -50994,9 +47725,9 @@ aLC aLC aLC glX -nYi -eaw -dsA +cEX +trp +bfX glX nkr xLx @@ -51047,39 +47778,39 @@ lKt kZO fvJ lKt -ahX -lgg -hIU -ylV -uik -ylV -cUU +wrS +rEa +dlr +rti +kta +rti +aCe mLm -mGD -kPj -ugv -nYf -ugv -lNa +fep +isz +sHL +fMw +sHL +bbU mLm -thA -tpc -fIJ -lfk -aFP -rlb -eiP -bCa -ake -ake +fme +gKt +qSv +vnc +psD +epK +ePt +tBj +yhB +yhB izY izY izY jnf -gFf -iMe -cVZ -xBf +wdl +rtf +tfz +pXG orc orc aDB @@ -51196,11 +47927,11 @@ uvJ uvJ uvJ acW -gwU -xtq -chm -gkv -gwU +nDv +pAK +qtG +hSU +nDv tFW uvJ uvJ @@ -51218,9 +47949,9 @@ aLC aLC aLC glX -ioM -hTM -ioM +fWr +fJK +fWr glX nkr tyH @@ -51259,8 +47990,8 @@ nsz nsz qtl nsz -luq -amU +xPU +izV oxy pnc dqo @@ -51274,35 +48005,35 @@ lKt ijV fHW fHW -nLF -ylV -nNH -uWF +mEf +rti +sJL +dtT mLm -psz -jch -ugv -jlw -ugv -ufc +rmb +asZ +sHL +eTZ +sHL +dxw mLm -ibc -tpc -jIa -lfk -aFP -rlb -lBO -xBf -bCa -bCa -bCa -oHk -bNj -qxA -kwd -bvB -fIy +chr +gKt +gwJ +vnc +psD +epK +mZP +pXG +tBj +tBj +tBj +npw +idF +mLv +swK +jiP +nbY orc orc eOG @@ -51420,11 +48151,11 @@ uvJ uvJ uvJ tFW -uuD -wea -gtZ -hRA -uuD +iXM +gXM +fJh +odN +iXM acW uvJ uvJ @@ -51483,9 +48214,9 @@ nsz sOL nsz nsz -nip -amU -amU +dEi +izV +izV oxy oxy lKt @@ -51500,33 +48231,33 @@ xYV fHW fHW fHW -ncv -ciR +xAs +kdl mLm -nhY -fQX -dfE -kPj +iQP +nrn +wbO +isz mLm mLm mLm -aFP -tpc -thm -lfk -aFP +psD +gKt +bqW +vnc +psD ixp ixp ixp -bCa -eiP -eiP -iDz -eiP -qxA -bCa -ftF -ftF +tBj +ePt +ePt +cPI +ePt +mLv +tBj +wTw +wTw aVf aDB aDB @@ -51644,11 +48375,11 @@ uvJ uvJ uvJ tFW -gwU -chm -chm -chm -gwU +nDv +qtG +qtG +qtG +nDv tFW uvJ uvJ @@ -51707,10 +48438,10 @@ nsz qtl nsz xzi -nip -adK -amU -amU +dEi +tds +izV +izV oxy oxy lKt @@ -51729,28 +48460,28 @@ eul mLm mLm mLm -hbu +rTv mLm mLm -knS -aFP -aFP -iRw -aOd -nXZ -aFP -aFP -uQS +cwx +psD +psD +ygC +tTE +xoE +psD +psD +ivT ixp -jXm -ebc -eHP -faZ -mHb -qxA -bCa -bCa -bCa +irr +mLt +tbb +xMU +bYn +mLv +tBj +tBj +tBj aVf bLd aDB @@ -51868,11 +48599,11 @@ uvJ uvJ klm aIU -iSz -hfR -mQJ -xbA -lch +bqu +lip +mTa +gUe +jNT aIU ioW gNJ @@ -51931,11 +48662,11 @@ nsz nsz nsz nsz -nip -wmf -amU -amU -amU +dEi +wNx +izV +izV +izV oxy oxy lKt @@ -51950,28 +48681,28 @@ xYV bMd xYV eul -yjT -giP -yjT -sXX +hyC +sEr +hyC +cZe iwJ eul -anm -aFP -vRf -aFP -aFP -aFP -aFP -aFP -aFP -rlb -bCa -jTl -lpL -xGV -ebc -bWy +vCl +psD +hyP +psD +psD +psD +psD +psD +psD +epK +tBj +bbp +tIe +mth +mLt +eto orc orc orc @@ -52091,13 +48822,13 @@ uvJ uvJ uvJ tFW -ejY -nuH -eBH -eBH -eBH -oqz -gwU +xWl +hnJ +rfQ +rfQ +rfQ +xyK +nDv hLe gNJ iaO @@ -52118,16 +48849,16 @@ gGS gGS gGS gGS -tPE -sma -thC -uWB -fro -fro -uWB -fro -fvm -cyF +egL +vAE +gJQ +eus +xxI +xxI +eus +xxI +gAe +fLU agr fxy fxy @@ -52152,15 +48883,15 @@ qtl nsz nsz nsz -nip -nip -nip -nip -lsV -amU -amU -amU -amU +dEi +dEi +dEi +dEi +thB +izV +izV +izV +izV oxy lKt rls @@ -52174,27 +48905,27 @@ xYV aPh xYV sKY -qOu -kWG -kWG -kWG -soa -jry -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -qYi -bCa -ccK -ftF -ftF -ftF +lIp +cHx +cHx +cHx +tPv +jfR +psD +psD +psD +psD +psD +psD +psD +psD +psD +czK +tBj +vPQ +wTw +wTw +wTw orc orc jUO @@ -52315,13 +49046,13 @@ uvJ uvJ uvJ acW -tmT -oqz -eBH -eBH -eBH -qnH -vnG +tUI +xyK +rfQ +rfQ +rfQ +kcm +yiC ioW gNJ iaO @@ -52342,7 +49073,7 @@ gGS gGS gGS gGS -bXf +cLt qSw qSw qSw @@ -52351,7 +49082,7 @@ qSw qSw qSw qSw -tED +iWK fxy fxy xvU @@ -52376,15 +49107,15 @@ nsz nsz nsz nsz -luq -amU -amU -amU -amU -amU -amU -amU -amU +xPU +izV +izV +izV +izV +izV +izV +izV +izV oxy eul eul @@ -52398,25 +49129,25 @@ xYV bMd xYV sKY -kWG -kWG -ljH -kWG -soa -jry -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -aFP -rlb -bCa -ufF -bCa +cHx +cHx +atq +cHx +tPv +jfR +psD +psD +psD +psD +psD +psD +psD +psD +psD +epK +tBj +vKV +tBj orc orc orc @@ -52539,13 +49270,13 @@ uvJ uvJ uvJ acW -ejY -oqz -eBH -eBH -eBH -oqz -dhe +xWl +xyK +rfQ +rfQ +rfQ +xyK +hue pds gNJ iaO @@ -52559,23 +49290,23 @@ iaO gGS gGS gGS -err -pnG +rGa +fLG gGS gGS gGS gGS gGS -bgv -wkz -vLc -rts -hOP -hOP -hVL -vLc -vLc -rPQ +kTm +ikc +caL +qXW +jov +jov +gaH +caL +caL +eSq agr fxy fxy @@ -52600,16 +49331,16 @@ nsz nsz nsz nsz -luq -mSo -amU -amU -amU -amU -amU -dAK -amU -amU +xPU +bQF +izV +izV +izV +izV +izV +wOI +izV +izV eul fFc xYV @@ -52628,22 +49359,22 @@ gVK gVK gVK eul -oMh -aFP -aFP -aFP -aFP -aFP -aFP -aFP -asu +pXU +psD +psD +psD +psD +psD +psD +psD +owj ixp -bCa +tBj orc -oUx +luh orc -rJA -vBP +cjc +lac jUO jOZ ezX @@ -52763,13 +49494,13 @@ uvJ uvJ uvJ acW -tmT -oqz -eBH -eBH -eBH -oqz -xxg +tUI +xyK +rfQ +rfQ +rfQ +xyK +aVk tFW gNJ nwZ @@ -52820,20 +49551,20 @@ agr yid hOq nsz -luq -nip -nip -nip -nip -amU -amU -amU -amU -ozx -amU -amU -amU -amU +xPU +dEi +dEi +dEi +dEi +izV +izV +izV +izV +blr +izV +izV +izV +izV sKY xYV xYV @@ -52845,7 +49576,7 @@ dkT xYV bMd xYV -pFi +jVb xYV eul oGs @@ -52853,21 +49584,21 @@ cbZ cbZ oGs jJc -aFP -aFP -aFP -aFP -aFP -aFP -aFP +psD +psD +psD +psD +psD +psD +psD sXF orc -kSc +iwL orc rLB rLB rLB -bCp +cQW jUO jOZ ezX @@ -52987,13 +49718,13 @@ uvJ uvJ uvJ tFW -dhe -oqz -eBH -eBH -eBH -oqz -ejY +hue +xyK +rfQ +rfQ +rfQ +xyK +xWl acW gNJ dih @@ -53010,9 +49741,9 @@ gGS jcy gGS gGS -err -kQO -err +rGa +vCp +rGa tEA gGS kvQ @@ -53045,19 +49776,19 @@ fSd jHz jHz oxy -amU -amU -amU -amU -amU -amU -rOo -amU -amU -amU -amU -amU -amU +izV +izV +izV +izV +izV +izV +vXc +izV +izV +izV +izV +izV +izV sKY xYV xYV @@ -53073,25 +49804,25 @@ xYV xYV xYV sKY -cjO -rJA -vBP +wxC +cjc +lac sXF ttG -aFP -wXA +psD +jKX ttG -aFP -wXA +psD +jKX ttG sXF jUO jUO -szB -skN -uvC -skN -bCp +eUb +tHd +pFA +tHd +cQW aLH jOZ gTy @@ -53211,13 +49942,13 @@ uvJ uvJ uvJ klm -eCR -oqz -eBH -eBH -eBH -oqz -weW +cQH +xyK +rfQ +rfQ +rfQ +xyK +xiK tFW nyx cZD @@ -53270,18 +50001,18 @@ gDp gDp oxy oxy -amU -amU -tcL -tcL -amU -ewS -amU -amU -amU -amU -amU -amU +izV +izV +gTW +gTW +izV +jiD +izV +izV +izV +izV +izV +izV eul fFc xYV @@ -53297,26 +50028,26 @@ xYV xYV xYV lVq -hqZ +hpl rLB -pTO -kve -rJA -rJA -rJA -lWj -rJA -rJA -rJA -klc -rJA -rJA -ltm +jAX +aIE +cjc +cjc +cjc +hxQ +cjc +cjc +cjc +wUW +cjc +cjc +cgQ rLB rLB rLB -bCp -vBP +cQW +lac jOZ jUO ezX @@ -53436,18 +50167,18 @@ uvJ klm klm klm -cXr -mVX -mVX -mVX -cXr +fqG +wMp +wMp +wMp +fqG klm klm tFW rIX sEs iaO -mGX +bnD iaO iaO uvJ @@ -53494,17 +50225,17 @@ qTs agr agr oxy -amU -amU -amU -amU -amU -icO -dAK -amU -amU -tyx -tyx +izV +izV +izV +izV +izV +pzz +wOI +izV +izV +eUZ +eUZ pLs ioa ioa @@ -53521,26 +50252,26 @@ lhX qZU eul eul -eic -lLB -lLB -mRf -kyX -blk -tHt -blk -blk -blk -skN -bCp -kyX -skN -vUL -kyX -skN -uvC -bCp -bCp +ifd +lpg +lpg +nKW +dRS +goX +qcM +goX +goX +goX +tHd +cQW +dRS +tHd +rAT +dRS +tHd +pFA +cQW +cQW jOZ jOZ gTy @@ -53660,11 +50391,11 @@ uvJ tFW jMp aBa -gFa -lKj -lKj -lKj -aXZ +pvW +jaR +jaR +jaR +kDv kma eCO tFW @@ -53718,16 +50449,16 @@ agr agr agr pYT -amU -dAK -amU -amU -amU -amU -amU -amU -tyx -tyx +izV +wOI +izV +izV +izV +izV +izV +izV +eUZ +eUZ pLs pLs jFX @@ -53748,23 +50479,23 @@ jUO jUO jUO aLH -szB -vUL +eUb +rAT rLB -skN +tHd rLB -skN +tHd rLB -uvC -bCp -nMb +pFA +cQW +oxG rLB rLB rLB rLB rLB -bCp -bCp +cQW +cQW jUO jOZ jUO @@ -53942,15 +50673,15 @@ agr iGU agr pYT -amU -amU -tyx -tyx -amU -amU -amU -tyx -tyx +izV +izV +eUZ +eUZ +izV +izV +izV +eUZ +eUZ pLs pLs jFX @@ -53972,23 +50703,23 @@ jUO gQe jUO fIk -szB -skN +eUb +tHd rLB -uvC +pFA uGq -kyX +dRS rLB -kyX -bCp -nMb -uvC -skN -uvC -skN -vUL -bCp -bCp +dRS +cQW +oxG +pFA +tHd +pFA +tHd +rAT +cQW +cQW jUO jOZ jUO @@ -54100,28 +50831,28 @@ sqU wYK aVH cIo -lRR -lRR -kHv +qAg +qAg +gQx jLd dsK dsK sRJ -klk +oHv sTK hgx hgx hgx ulr -tWg +sSG fFU dsK -vOc -hTJ -hTJ -hTJ -hTJ -hTJ +eTi +uIK +uIK +uIK +uIK +uIK acW klm uvJ @@ -54132,11 +50863,11 @@ gGS gGS wxX lor -tiG +rGZ gJa uNa wRo -oVe +jdT tdY aJX kvQ @@ -54149,7 +50880,7 @@ plS wWn vct uZu -kRa +adq tef gmU agr @@ -54170,9 +50901,9 @@ pYT pYT pYT oxy -amU -amU -amU +izV +izV +izV pLs pLs pLs @@ -54192,27 +50923,27 @@ xYV xYV xYV rls -rJA -vBP +cjc +lac jUO jUO -szB -skN +eUb +tHd rLB -skN +tHd hUO -skN +tHd rLB -vUL -bCp -nMb +rAT +cQW +oxG rLB usf rLB rLB rLB -bCp -bCp +cQW +cQW jUO jOZ jOZ @@ -54350,9 +51081,9 @@ tRv klm tFW fIu -fME -nlh -nlh +uvE +kxv +kxv mPA yij qmA @@ -54394,9 +51125,9 @@ agr agr agr oxy -xaL -xaL -xaL +aMg +aMg +aMg pLs jFX jFX @@ -54416,27 +51147,27 @@ rls rls rls eul -sBD -bCp +vvv +cQW jUO pOo -szB -uvC +eUb +pFA rLB -uvC +pFA rLB -kyX +dRS rLB -skN -bCp -kyX -skN -skN -skN -uvC -kyX -bCp -bCp +tHd +cQW +dRS +tHd +tHd +tHd +pFA +dRS +cQW +cQW jUO jUO jUO @@ -54558,8 +51289,8 @@ iaO iaO hgx aHd -hTJ -sRR +uIK +dhF gOD wOA uOy @@ -54579,13 +51310,13 @@ pwE pwE pwE wjK -dKv +uqj ple -vsV -qsE -fGc +gVg +jvu +qSI rkH -mGo +pHt pKf iLN ijT @@ -54618,9 +51349,9 @@ rls rls rls eul -uSH -wJD -uSH +mAZ +vzO +mAZ ioa ioa ioa @@ -54632,43 +51363,43 @@ jFX jFX jFX eul -deN +iOA vzK -deN +iOA eul -isn -rJA -rJA -rJA -ltm -pTO -rJA -rJA -ltm +diP +cjc +cjc +cjc +cgQ +jAX +cjc +cjc +cgQ rLB rLB rLB -isn +diP rLB rLB rLB -pTO -rJA -rJA -rJA -rJA -rJA -rJA -rJA -isn +jAX +cjc +cjc +cjc +cjc +cjc +cjc +cjc +diP jUO jUO jUO jUO kqo -xjr +mLx jij -aeE +xVR hHQ bLd hma @@ -54782,16 +51513,16 @@ iaO hgx hgx nvs -ovA -qFn +cHw +jkO dsK pjm lKp iFa -dVl +jtj hgx hgx -dVl +jtj abo dsK iaO @@ -54803,13 +51534,13 @@ pwE pwE pwE pwE -sOZ +ftG ple -qsE -eYO -qsE +jvu +qLi +jvu rkH -eiq +bkq pKf gGS kvQ @@ -54838,17 +51569,17 @@ bGL agr agr rls -cKN -snE -uSH -uSH -uSH +fxX +jkP +mAZ +mAZ +mAZ xYV -uSH -glG -uSH -rBR -vBT +mAZ +kek +mAZ +wGI +tZx ioa jFX jFX @@ -54856,11 +51587,11 @@ jFX jFX kqo jOZ -szB +eUb rLB -pTO -rJA -ltm +jAX +cjc +cgQ gmI fgV hyX @@ -54884,15 +51615,15 @@ oao cTj fgV gmI -bCp +cQW jUO jUO jUO jUO jUO -rkC +jbI wKl -nnR +umV hHQ gMz hJh @@ -55006,8 +51737,8 @@ hgx hgx hgx fVB -lGF -eOU +ouV +mHF jEY gGl tRv @@ -55027,13 +51758,13 @@ pwE pwE pwE oCM -wEn +cgj ple -cuV -qsE -lMe +pbL +jvu +ggi rkH -ilH +ilw pKf gGS kvQ @@ -55062,17 +51793,17 @@ agr agr agr rls -rDK -uSH -uSH -uSH +gJb +mAZ +mAZ +mAZ xYV xYV xYV -uSH -uSH -uSH -kTS +mAZ +mAZ +mAZ +ngF ioa jFX jFX @@ -55080,7 +51811,7 @@ jFX rty ezX jOZ -szB +eUb jcV rLB rLB @@ -55108,15 +51839,15 @@ gmI tSe gmI kCp -bCp +cQW jUO jUO jUO jUO jUO -lFK +itb qCG -ilq +oIb bLd bLd hHQ @@ -55246,9 +51977,9 @@ lKp tFW tFW fIu -ozA -dyI -dyI +eap +bQQ +bQQ uHf qvf aks @@ -55259,7 +51990,7 @@ dEk wNw dTw pKf -ont +grq kvQ vMB vMB @@ -55286,17 +52017,17 @@ agr agr hAI rls -xkq -uSH -uSH +mZJ +mAZ +mAZ nsi xYV -rpF +fpv xYV nsi -uSH -uSH -wJD +mAZ +mAZ +vzO ioa jFX jFX @@ -55304,11 +52035,11 @@ jFX ezX kqo jOZ -eic -lLB -lLB -lLB -jon +ifd +lpg +lpg +lpg +fIh emI gmI gmI @@ -55332,15 +52063,15 @@ gmI gmI gmI hdI -bCp +cQW jUO jUO jUO jUO ezX -rks +dGn kwx -nnR +umV hJh hHQ kfV @@ -55444,28 +52175,28 @@ oYz aVH aVH fZT -ggM -ggM -ggM +fMV +fMV +fMV uvJ tFW tFW ulr -xeM +joX gNJ abo tLC iaO uJU -gcP +pTU mgr dsK -olG -lGF -lGF -lGF -lGF -lGF +oxT +ouV +ouV +ouV +ouV +ouV tFW tFW uvJ @@ -55476,11 +52207,11 @@ gGS gGS cXP hxk -xci +qbM ros uNa lCt -nlx +hsh dqG mQU gGS @@ -55510,17 +52241,17 @@ gFN gFN eul eul -syP -uSH +rnJ +mAZ xYV esM cvp -bKg +cxw xYV vld xYV -buH -fIj +qXA +vrc ioa ioa jFX @@ -55532,7 +52263,7 @@ jOZ jOZ jOZ jOZ -szB +eUb mdp gmI gmI @@ -55556,15 +52287,15 @@ gmI gmI gmI nbO -bCp +cQW jUO jUO jUO jUO ezX -hCu +kKV jij -gPl +xyq hHQ bLd kQi @@ -55732,20 +52463,20 @@ oad vPJ oad gFN -deN -uSH -uSH +iOA +mAZ +mAZ xYV lvq xAZ xYV -rVj +dNq xYV -sYU +kBD xYV xYV -uSH -azB +mAZ +awR ioa jFX rty @@ -55756,7 +52487,7 @@ jUO jUO dDj jOZ -szB +eUb kDX gmI gmI @@ -55780,7 +52511,7 @@ gmI gmI gmI nzq -bCp +cQW jUO jUO jUO @@ -55957,19 +52688,19 @@ gFN gFN gFN hBy -uSH +mAZ xYV xYV xYV whT xYV -nkE +onT xYV -sOP +cpT lvq -uSH -bXM -wfK +mAZ +vAy +xdd ioa jFX jFX @@ -55980,7 +52711,7 @@ tBg jUO jUO jOZ -szB +eUb wGF gmI gmI @@ -56004,7 +52735,7 @@ gmI gmI gmI kCp -bCp +cQW jUO jOZ jOZ @@ -56123,13 +52854,13 @@ uvJ uvJ tFW tFW -olG -lGF -lGF -lGF -lGF -lGF -wcu +oxT +ouV +ouV +ouV +ouV +ouV +hMy klm klm gNJ @@ -56145,7 +52876,7 @@ gGS gGS gGS gGS -pnG +fLG gGS gGS gGS @@ -56180,20 +52911,20 @@ gFN gFN gFN gFN -deN -uSH -uSH +iOA +mAZ +mAZ xYV xYV rjs xYV -nrY +aSV cvp -bKg +cxw xYV xYV -uSH -kPu +mAZ +xpJ ioa jFX jFX @@ -56204,7 +52935,7 @@ tdL gxp jUO jOZ -szB +eUb emI gmI gmI @@ -56228,7 +52959,7 @@ gmI gmI gmI hdI -bCp +cQW jUO jOZ jUO @@ -56356,7 +53087,7 @@ hgx pQM klm uvJ -wWU +xhM iaO iaO iaO @@ -56406,17 +53137,17 @@ gFN xDn eul eul -uuf -net +lWM +fTM xYV ycY xYV -otM +lOA lvq nsi xYV -uSH -uSH +mAZ +mAZ ioa ioa jFX @@ -56424,11 +53155,11 @@ jFX jFX ezX gTy -dHa +mxK xYG gxp jOZ -szB +eUb mdp gmI gmI @@ -56452,7 +53183,7 @@ gmI gmI gmI nbO -bCp +cQW jUO jOZ jUO @@ -56630,17 +53361,17 @@ gFN gFN gFN rls -ies -uSH -uSH +jpg +mAZ +mAZ vlS xYV -nap +aqc xYV jwI -uSH -uSH -gUm +mAZ +mAZ +jiF ioa jFX jFX @@ -56648,11 +53379,11 @@ jFX jFX kqo rty -dHa +mxK xYG ybC jOZ -szB +eUb kDX gmI gmI @@ -56676,7 +53407,7 @@ gmI gmI gmI nzq -bCp +cQW jOZ jOZ jUO @@ -56854,17 +53585,17 @@ gFN gFN gFN rls -ies -uSH -uSH -uSH +jpg +mAZ +mAZ +mAZ xYV xYV xYV -uSH -uSH -uSH -esc +mAZ +mAZ +mAZ +sLR ioa jFX jFX @@ -56876,7 +53607,7 @@ ezc xYG ybC jOZ -szB +eUb wGF gmI gmI @@ -56900,7 +53631,7 @@ gmI gmI gmI kCp -bCp +cQW jOZ jUO jUO @@ -57031,7 +53762,7 @@ dsK fzi iaO iaO -qQi +eUr qkS iaO gGS @@ -57078,17 +53809,17 @@ gFN ccP gFN rls -rmM -uSH -uSH -buH -uSH +pjV +mAZ +mAZ +qXA +mAZ xYV -uSH -nQJ -bAI -tpt -qSD +mAZ +jtG +sbn +fDL +cio ioa jFX jFX @@ -57100,7 +53831,7 @@ jUO ezc aod jOZ -szB +eUb emI gmI gmI @@ -57124,7 +53855,7 @@ gmI gmI gmI hdI -bCp +cQW jOZ jZC gTy @@ -57276,7 +54007,7 @@ lcb nFg lcb fmM -aFI +wuQ hNE hNE hNE @@ -57306,9 +54037,9 @@ rls rls rls eul -uSH -uSH -uSH +mAZ +mAZ +mAZ eul oGs oGs @@ -57324,7 +54055,7 @@ rty jUO gQe jOZ -szB +eUb mdp gmI gmI @@ -57348,7 +54079,7 @@ gmI tSe gmI nbO -bCp +cQW jOZ jUO jUO @@ -57537,8 +54268,8 @@ eul dUT qLP qLP -pHB -iYj +jIp +noM uro jFX jFX @@ -57548,7 +54279,7 @@ kqo jUO jUO jOZ -szB +eUb gmI iLy nuF @@ -57572,7 +54303,7 @@ gJe vBD iLy gmI -bCp +cQW jOZ jUO jUO @@ -57728,7 +54459,7 @@ hNE hNE hNE hNE -plj +wMC hNE hNE pnM @@ -57761,9 +54492,9 @@ qLP hfy qLP uHe -aip -jkS -rzX +dnC +jYF +wqW jFX jFX jFX @@ -57772,31 +54503,31 @@ rty lMO jUO jOZ -isn -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -isn -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -lLB -isn +diP +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +diP +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +lpg +diP jOZ jUO gTy @@ -57924,7 +54655,7 @@ iaO hgx hgx hgx -iwH +lOk klm uvJ iaO @@ -57985,9 +54716,9 @@ qLP hCG ksI qLP -aip -jkS -jkS +dnC +jYF +jYF jFX jFX jFX @@ -58148,7 +54879,7 @@ wOA iaO hgx hgx -oSe +fOQ klm uvJ uvJ @@ -58178,7 +54909,7 @@ wED qIM sQd hNE -enN +jZE hNE hNE kvQ @@ -58209,8 +54940,8 @@ qLP qLP fNO qLP -lsm -cRn +tKL +cDd jFX jFX qLP @@ -58372,7 +55103,7 @@ sTl iaO hgx hgx -wcD +faa pds uvJ uvJ @@ -58596,7 +55327,7 @@ gGl iaO hgx hgx -tuX +rJO pds uvJ uvJ @@ -58628,7 +55359,7 @@ lcb lCS fmM hNE -enN +jZE kvQ vMB vMB @@ -58689,9 +55420,9 @@ jFX jFX jij rty -cjO -cLd -kCg +wxC +dBm +auq gTy plV jFX @@ -58820,7 +55551,7 @@ iaO hgx hgx hgx -vaV +ryT pds uvJ uvJ @@ -59044,7 +55775,7 @@ hgx hgx hgx hgx -occ +ufn klm uvJ uvJ @@ -59137,9 +55868,9 @@ jFX lUf rty mPH -iED -raw -wGk +pTz +kQI +eCh rty rty lQO @@ -59300,7 +56031,7 @@ lCS lCS fmM hNE -nul +uNx hNE eue tFF @@ -59723,7 +56454,7 @@ uvJ uvJ gGS gGS -pnG +fLG gGS jDs gGS @@ -59752,7 +56483,7 @@ hNE hNE hNE hNE -sUd +gzu gTH rYg vMB @@ -59761,7 +56492,7 @@ lEU fQL fQL xRe -aNy +wKz ipd gbt gFN @@ -59974,7 +56705,7 @@ lCS fmM hNE hNE -tgQ +sez hNE ipd gTH @@ -59983,7 +56714,7 @@ ieK fQL nRg gTH -dTE +oRu gTH gTH ipd @@ -60202,10 +56933,10 @@ hNE hNE ipd gTH -vqp +cIl gTH gTH -aNy +wKz gTH gTH gTH diff --git a/maps/map_files/New_Varadero/New_Varadero.dmm b/maps/map_files/New_Varadero/New_Varadero.dmm index b4c1f27e7f..9f72280978 100644 --- a/maps/map_files/New_Varadero/New_Varadero.dmm +++ b/maps/map_files/New_Varadero/New_Varadero.dmm @@ -14,37 +14,35 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"aaA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aaj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/medical) +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"abf" = ( +"aaQ" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/mob/living/simple_animal/mouse, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"abl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "abu" = ( /obj/item/stack/sheet/wood, /obj/item/shard{ @@ -65,31 +63,49 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"abK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) "abL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"acO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"abY" = ( +/obj/structure/bed/chair/comfy/orange{ + buckling_y = 9; + dir = 8; + pixel_y = 9 }, -/area/varadero/interior/medical) -"ade" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) +/obj/item/device/megaphone{ + layer = 2; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest{ + desc = "It oozes authority, prestige, and sick summer vibes."; + name = "life guard's vest"; + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"aco" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"acp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"adn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "adw" = ( /turf/closed/wall/r_wall, /area/varadero/interior/cargo) @@ -100,55 +116,55 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"adR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"adO" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" }, -/area/varadero/interior/electrical) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"aeE" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"afe" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"aff" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "afg" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 }, /area/varadero/interior/hall_N) -"afx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"afz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_N) -"afR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"afP" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"agc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -177,21 +193,10 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"agn" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/trackimp, -/obj/item/device/binoculars, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) +"agB" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure{ @@ -216,74 +221,27 @@ "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) -"ahD" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/shuttle{ - icon_state = "floor6" +"ahC" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior_protected/vessel) -"ahK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aiK" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/hall_SE) +"ajd" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"ajC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"aiR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Evidence Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"aiY" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/toy/plush/farwa, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"akg" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/monsoon) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "akk" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -306,21 +264,20 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/varadero/interior/library) -"akO" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"ald" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" - }, -/turf/open/floor/shiva{ - icon_state = "red" +"ale" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"alx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) "alD" = ( /obj/structure/filtration/coagulation_arm{ indestructible = 1; @@ -337,32 +294,21 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"alG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"alL" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"alM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"alI" = ( +/mob/living/simple_animal/cat{ + desc = "A domesticated, feline pet. The collar says 'Orion'."; + name = "Orion"; + real_name = "Orion" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"alY" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"amb" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ami" = ( /obj/structure/prop/dam/crane/damaged{ dir = 4 @@ -370,60 +316,67 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"ani" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +"amo" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"amG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/technical_storage) -"anu" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"amX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"anr" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"ans" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "anA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"anE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aog" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"aoi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/computer/emails{ + pixel_y = 5 }, -/area/varadero/interior/maintenance/research) -"aoo" = ( -/obj/structure/prop/structure_lattice{ +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aon" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"aor" = ( +/obj/structure/closet/secure_closet/personal{ density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" + pixel_x = -8; + pixel_y = 15 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 7; + pixel_y = 15 }, -/area/varadero/interior/medical) +/turf/open/floor/white, +/area/varadero/interior/laundry) "aoC" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/comms2) @@ -431,6 +384,43 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) +"aoP" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"aoR" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"aoZ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"apg" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"aph" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "apj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -438,70 +428,37 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"apl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "apG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"apH" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"apI" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"apY" = ( -/obj/structure/reagent_dispensers/fueltank, +"apR" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"aqb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" + dir = 8 }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"aqh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"aqk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"apW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "aqq" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -510,31 +467,18 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"aqw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"aqy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = 6 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) -"arg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"arC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) "arF" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/ceramic_plate, @@ -544,81 +488,39 @@ /obj/item/tool/lighter/zippo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"asf" = ( -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"asx" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"atz" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"atM" = ( -/obj/structure/prop/mech/drill, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aud" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"auE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_NW) -"avl" = ( -/obj/structure/disposalpipe/junction{ +"asg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"atf" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"atw" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"avy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) +"avi" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "avD" = ( /turf/closed/wall/huntership, /area/varadero/interior_protected/vessel) -"avF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"avE" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/varadero/exterior/lz1_near) +"avO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + pixel_x = -3; + pixel_y = 3 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "avX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -627,125 +529,63 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"awr" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz1_near) -"awu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "awJ" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"axh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"axs" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"axv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"axm" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"axn" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/area/varadero/exterior/pool) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, /area/varadero/interior/research) -"ayo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"ayx" = ( -/obj/structure/prop/power_transformer{ - dir = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) +"ayi" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"ayn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"azh" = ( -/obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"azr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"azv" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"ayP" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 7 }, -/area/varadero/interior/hall_SE) -"azw" = ( -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior_protected/maintenance/south) -"azK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"ayR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"aAd" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" }, -/area/varadero/interior/administration) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "aAg" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -753,175 +593,91 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"aAj" = ( -/obj/structure/bed/chair{ +"aAD" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"aAr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"aAC" = ( -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/wood, +/area/varadero/interior/library) +"aAS" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aBd" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, -/area/varadero/exterior/pool) -"aAX" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2 - Palm Airfield" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"aBf" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"aAY" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aBg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aBi" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aBp" = ( -/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"aBz" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"aBB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"aBn" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"aBr" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"aBE" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aBO" = ( +"aBY" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/disposals) -"aCd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"aCl" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aCz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ +/obj/item/ammo_casing{ dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"aCH" = ( -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "cartridge_2" }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"aCc" = ( +/obj/structure/prop/turbine_extras/left, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"aCf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"aCQ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aCX" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"aCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aDu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "aDv" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/light{ @@ -929,69 +685,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aDF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"aEf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"aEi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"aED" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"aEQ" = ( -/obj/structure/shuttle/engine/router{ - dir = 4; - unacidable = 0 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"aDS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"aEd" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1001,60 +704,44 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aFh" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/shorts/black, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.1; - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/rag{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) -"aFu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"aFK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"aFM" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ +"aFz" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "leftsecure"; - id = "brg" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/security) -"aFX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"aFB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "greencorners" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aFI" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -1064,68 +751,71 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"aGX" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 +"aGE" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/morgue) +"aGN" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/obj/structure/machinery/alarm{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) -"aHu" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"aHw" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz2_near) -"aHy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"aHG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"aIm" = ( -/obj/item/shard{ - icon_state = "medium" +"aHS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/sink{ + pixel_y = 15 }, -/area/varadero/interior_protected/vessel) -"aIq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/turf/open/floor/white, +/area/varadero/interior/toilets) +"aHY" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarwest"; + unacidable = 1; + name = "Pontoon West Door"; + openspeed = 17; + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/interior/cargo) +"aIj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/paper/janitor{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "aIu" = ( /obj/structure/filingcabinet{ density = 0; @@ -1143,73 +833,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"aJc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -13; - pixel_y = 16 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/xenoburger{ - pixel_x = 5; +"aIz" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/administration) +"aIL" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -8; pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) -"aJp" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aJD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"aIW" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1220,36 +858,38 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aJI" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "aJP" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/varadero/interior/library) -"aJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"aJU" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) -"aKk" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"aKc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aKe" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/area/varadero/interior/maintenance/security) +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) "aKA" = ( /obj/structure/filingcabinet{ density = 0; @@ -1267,6 +907,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"aKB" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"aKG" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "aKJ" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -1276,45 +927,76 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"aLc" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, -/area/varadero/interior/disposals) -"aLl" = ( -/turf/open/floor/shiva{ - icon_state = "wred" +"aLB" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/varadero/interior/medical) -"aLn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/varadero/interior/hall_SE) -"aMp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/medical) +/obj/structure/window/reinforced, +/obj/item/clothing/head/fedora, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"aMf" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"aMN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ +"aMW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"aND" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aNW" = ( +/obj/structure/machinery/light, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"aOc" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"aOl" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"aOv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "aOG" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -1; @@ -1324,75 +1006,41 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"aOJ" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "aPe" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/scientist, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aPU" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"aQc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"aQG" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"aQN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"aRf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"aRg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/exterior/lz2_near) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"aRr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"aRL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - pixel_y = 17 - }, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"aRS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aRU" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, /obj/effect/decal/cleanable/blood/drip, @@ -1405,55 +1053,79 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"aSn" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"aSs" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "aSt" = ( /obj/item/stack/sheet/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"aSw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aSU" = ( /obj/structure/catwalk, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) -"aTg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"aTh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aSW" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/medical) -"aTC" = ( -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 5; - pixel_y = 2 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -5; - pixel_y = -9 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/sign/safety/waterhazard, +/obj/structure/sign/safety/water{ + pixel_x = 15 }, -/area/varadero/interior_protected/maintenance/south) -"aTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"aTq" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"aTz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"aTV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" }, -/area/varadero/interior/cargo) -"aTY" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"aUc" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "aUA" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, @@ -1469,178 +1141,122 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"aUP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"aVs" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) -"aVt" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"aVF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 +"aVb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"aVy" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva{ +/obj/structure/closet/firecloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"aVE" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "blue" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/technical_storage) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"aVM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aVQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/hall_N) -"aWA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"aWP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" - }, +"aVV" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) -"aXb" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) -"aXm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aXn" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"aWi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"aWk" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"aWl" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"aWC" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/varadero/exterior/eastocean) -"aXt" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aWJ" = ( +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) +"aWX" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/varadero/interior/maintenance/north) -"aXz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"aXA" = ( -/obj/structure/largecrate/supply/medicine/iv, -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/records) -"aXC" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"aYg" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aWZ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"aZb" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/bunks) -"aZq" = ( -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"aXb" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) +"aXc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"aXA" = ( +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/records) +"aYl" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"aYL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "aZv" = ( /obj/structure/bed/chair{ @@ -1649,68 +1265,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"aZX" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"baa" = ( +"aZJ" = ( +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"aZS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 5 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"bag" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"bah" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bak" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"baH" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = -5 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) +"bbs" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/trash/ceramic_plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "bbt" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"bbv" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) "bbG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/west, @@ -1719,64 +1296,61 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bbW" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +"bbO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) -"bcg" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"bcG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior/research) -"bcD" = ( -/obj/item/tool/wet_sign, -/turf/open/floor{ +/turf/open/floor/wood, +/area/varadero/interior/records) +"bcN" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/eastbeach) -"bdc" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"bdk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/north_research) -"bdJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Custodial Closet"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"beE" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" +"bei" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + icon_state = "chair" }, -/area/varadero/interior/security) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/lz2_near) @@ -1794,42 +1368,53 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"bfq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bfD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bfG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance) -"bft" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"bgf" = ( +/turf/open/floor/shiva/blue, /area/varadero/interior/maintenance) -"bfX" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"bgh" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +"bgu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/north) -"bgl" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/electrical) +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bgR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bhs" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 @@ -1845,33 +1430,31 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bih" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"bia" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"big" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bik" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; + icon = 'icons/turf/walls/hunter.dmi'; + icon_state = "globe"; + name = "Hunter Globe"; + pixel_y = 16 }, -/area/varadero/interior/hall_N) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "bio" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/chapel) -"biz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) "biS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1884,185 +1467,153 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"bjd" = ( -/obj/item/weapon/gun/smg/nailgun{ - pixel_y = 3 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" - }, -/area/varadero/interior/research) -"bjf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"bjA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"bjw" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "cargobay"; + name = "Cargo Bay Lock"; + pixel_y = 20 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"bjU" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) "bko" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"bkC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Morgue"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/varadero/interior/morgue) -"bkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) "bkM" = ( /turf/closed/wall, /area/varadero/interior/hall_SE) +"blb" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/mask/cigarette/ucigarette{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "bls" = ( /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"bmt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"blI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"blV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/research) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"bml" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bmr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "bmI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bmV" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"bnc" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"bnf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"bng" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bmS" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bnd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + id = "engine_electrical_maintenance"; + locked = 1; + name = "Underground Power Substation"; + req_access_txt = "100" }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "bnm" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/cargo) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "bnH" = ( /obj/structure/prop/dam/truck/damaged, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"boI" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/varadero/interior/dock_control) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"bon" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"boA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance) -"bpH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"boK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"boZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bpc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/area/varadero/interior/cargo) -"bpI" = ( -/obj/effect/landmark/hunter_secondary, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/court) +"bph" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"bpk" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"bpv" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"bpG" = ( +/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"bpR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/varadero/interior/toilets) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2071,31 +1622,39 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"brx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/paper{ - pixel_x = -11; - pixel_y = 4 - }, -/obj/item/paper/research_notes/good{ - pixel_x = -15; - pixel_y = 2 +"bpX" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"bqh" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/turf/open/floor/shiva{ +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"bqF" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"brc" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"brR" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purplefull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) -"brM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "brT" = ( /turf/closed/wall/huntership/destructible, /area/varadero/interior_protected/vessel) @@ -2108,12 +1667,6 @@ "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bst" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "bte" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/phoron/medium_stack{ @@ -2130,6 +1683,39 @@ }, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) +"btn" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"btI" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"btJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"btP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "btU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -2137,6 +1723,15 @@ }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"btV" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"buh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "bum" = ( /obj/structure/machinery/shower{ dir = 4 @@ -2147,113 +1742,47 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, /area/varadero/interior/administration) -"buB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"buH" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"bvE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"bvF" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bwz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"bwP" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"bxx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"bye" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"byl" = ( +"buY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/encryptionkey/dutch, -/obj/item/device/encryptionkey/dutch{ - pixel_x = -6 - }, -/obj/item/device/encryptionkey/dutch{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = 1 +/obj/item/evidencebag, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"bwa" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 }, -/obj/item/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"bwp" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"bwA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"bwU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"bxm" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/records) +"bxL" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"byq" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "bys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2265,13 +1794,6 @@ /obj/item/folder/black, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"byC" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/eastocean) "byF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2280,34 +1802,24 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"byU" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"bzf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"bzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"bzt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/cargo) -"bzq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"bzy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/varadero/interior/medical) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2316,18 +1828,34 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bAj" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"bzL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"bzX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/donut_box{ + pixel_y = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"bAf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "bAE" = ( /obj/structure/window/reinforced{ dir = 4; @@ -2359,16 +1887,6 @@ /obj/item/ammo_magazine/rifle/m4ra, /turf/open/floor/wood, /area/varadero/interior/bunks) -"bBo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) "bBt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2385,73 +1903,83 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"bBV" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"bCi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bBy" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/storage/belt/medical{ + pixel_x = -3; + pixel_y = 1 }, -/area/varadero/interior/research) -"bCA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"bBM" = ( +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"bCe" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/varadero/interior/security) -"bCM" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"bCq" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"bCu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/exterior/pontoon_beach) -"bDs" = ( -/obj/item/weapon/gun/flare{ - current_mag = null +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bCC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 2 }, -/area/varadero/exterior/lz2_near) -"bEj" = ( +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"bCF" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/varadero/interior/security) +"bDF" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bDL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"bEX" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"bEF" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"bEU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/comms3) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"bEW" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -2465,63 +1993,22 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"bFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 17 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "bFo" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFD" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"bFV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"bGe" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"bGy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"bGz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" +"bFu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"bFL" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) "bGC" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall, @@ -2529,37 +2016,59 @@ "bGU" = ( /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bHc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" +"bGY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/toilets) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bJv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"bIu" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/machinery/light{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"bIP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bIQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"bJp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"bJu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -2570,81 +2079,53 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bJV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bLl" = ( -/obj/structure/platform/kutjevo/smooth{ +"bJM" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"bJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"bKf" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - climb_delay = 1; - layer = 2.99 + health = 300 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 + layer = 3.1; + pixel_y = 10 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/administration) -"bLy" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/mess) "bLB" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/chapel) -"bLI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "HotlineAlt" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/administration) -"bLN" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) "bLV" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"bLW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "bMf" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green, @@ -2655,176 +2136,83 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"bMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) "bMx" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"bMG" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/trash/ceramic_plate, -/turf/open/floor/shiva{ - icon_state = "floor3" +"bNb" = ( +/obj/structure/bed/chair/hunter{ + dir = 1 }, -/area/varadero/interior/cargo) -"bMV" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"bNF" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bNT" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/area/varadero/interior/hall_SE) -"bNi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"bOW" = ( +/obj/item/shard{ + icon_state = "medium"; + name = "ice shard" }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"bNt" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"bOY" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/area/varadero/interior/bunks) -"bNC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"bPn" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"bPw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/administration) -"bNN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"bPB" = ( +/obj/item/tool/crowbar, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"bPQ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"bQM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/item/prop/almayer/comp_open, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"bOO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"bPe" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"bPk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"bPl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"bPm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"bPx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"bPF" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"bPG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"bPL" = ( -/obj/item/handcuffs{ - pixel_x = 2; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"bQa" = ( -/obj/structure/catwalk, -/obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"bQY" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"bQH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2834,20 +2222,6 @@ "bRi" = ( /turf/open/floor/shiva, /area/varadero/interior/disposals) -"bRo" = ( -/obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"bRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2870,14 +2244,6 @@ /obj/effect/spawner/random/attachment, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"bSD" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) "bSQ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -2887,67 +2253,52 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"bTg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"bTm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) +"bTr" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"bTx" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "bTA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) -"bTN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"bUg" = ( -/obj/structure/machinery/microwave{ - pixel_y = 9 +"bTX" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"bUh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"bUk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "bUm" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"bUK" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"bUS" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -4; + pixel_y = 11 }, -/area/varadero/interior/hall_N) -"bUP" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, @@ -2963,28 +2314,24 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bVq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"bVu" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "red" +"bVt" = ( +/obj/structure/prop/dam/van{ + desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; + icon_state = "crawler_crate_wy"; + name = "crawler"; + pixel_y = 7 }, -/area/varadero/interior/medical) -"bVI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"bVM" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/area/varadero/interior/court) +/turf/open/floor/wood, +/area/varadero/interior/library) "bVQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2998,23 +2345,71 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"bVS" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/lz1_near) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz1_near) -"bWq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/trash/crushed_cup, -/obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva{ - icon_state = "floor3" +"bVY" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bWx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"bWR" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"bXf" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"bXv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"bXP" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1; + locked = 1; + name = "\improper Engine Room" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"bXU" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bYt" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"bYz" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/popcorn, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"bYA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -3026,129 +2421,30 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"bZg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/maintenance/research) "bZv" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"bZA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"bZI" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "bZU" = ( /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) +"cah" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "cak" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caD" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"caV" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"cba" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cbe" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"cbg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"cbq" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"cbv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/hydro{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_container/spray/hydro{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"cbI" = ( -/obj/item/cpr_dummy{ - dir = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"cas" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -3160,6 +2456,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"cbM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) +"cbV" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 9 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "ccp" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -3167,130 +2478,119 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ccs" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"ccP" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ccR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) -"cdc" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"cdy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) +"cdn" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "cdL" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"cdO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "cdS" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"ceb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cee" = ( +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ + pixel_x = 10 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "cel" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ceo" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cfq" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"cfs" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cfd" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"cfx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"cfy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/varadero/interior/maintenance/north) -"cgb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cfH" = ( +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cgd" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, +/turf/open/floor/shiva/yellow/southwest, /area/varadero/interior/technical_storage) -"cgj" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/north, /area/varadero/interior/caves/north_research) -"cgA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"cgt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/area/varadero/exterior/lz1_near) -"che" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"cgI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/comms3) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "chr" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -3303,14 +2603,11 @@ "chs" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"chE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"chH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 @@ -3321,20 +2618,12 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cic" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"cil" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "yellow" +"cid" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "cio" = ( /obj/structure/filingcabinet{ density = 0; @@ -3355,44 +2644,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"cit" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ciu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"ciD" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"cjb" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/area/varadero/interior/hall_SE) -"ciH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/hall_N) -"ciR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"cjM" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"cjf" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "cka" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -3405,108 +2675,79 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"ckx" = ( +"cko" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"ckz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"ckF" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva{ - icon_state = "floor3" + dir = 10 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"cks" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "ckG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ckI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) "ckM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"clv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ckP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"cle" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 }, -/area/varadero/interior/research) -"clD" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"clf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/varadero/interior/bunks) -"clG" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"clj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"cls" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - climb_delay = 1; - layer = 2.99 + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"clw" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) -"cmf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"cmk" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/cooler, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/peach, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "cmr" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -3514,123 +2755,88 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"cmU" = ( -/obj/item/reagent_container/food/snacks/fishfingers{ - pixel_y = 7 +"cmx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cmS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz1_near) -"cne" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"cnz" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"cnG" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"cnv" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"cnW" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"coc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/technical_storage) -"cog" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"coa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "coz" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"coQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"coX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"cpy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"cpA" = ( -/obj/structure/morgue, -/turf/open/floor/shiva{ - icon_state = "floor3" +"coB" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"coN" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cpj" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cpB" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/area/varadero/interior/morgue) -"cpC" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"cpM" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves/central) +"cqa" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"cqb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/stamp{ + pixel_x = 8; + pixel_y = 10 }, -/area/varadero/interior/maintenance/security) -"cpF" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/tool/pen/blue{ + pixel_x = -6; + pixel_y = 6 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "cql" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -3645,6 +2851,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"cqo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "cqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, @@ -3652,201 +2864,163 @@ "cqZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/maintenance/south) +"crb" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "crq" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"csb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"csr" = ( -/obj/structure/prop/ice_colony/flamingo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"cto" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"ctw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" +"crs" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"crG" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 }, -/area/varadero/interior/administration) -"cty" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior_protected/caves/central) -"ctE" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cso" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"cuc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"cud" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"cug" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"cur" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70{ - pixel_y = -2 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"csR" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"cty" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior_protected/caves/central) +"cul" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior/security) -"cvI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ + pixel_x = -10; + pixel_y = 15 }, -/obj/item/tool/pen/blue{ +/obj/item/reagent_container/blood/empty{ pixel_x = 6; - pixel_y = -4 + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/storage/box/cups{ + pixel_x = -13; + pixel_y = 3 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"cuD" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cvb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 17 }, +/obj/structure/machinery/recharger, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"cvW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"cvc" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cve" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/mess) -"cvX" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"cvi" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"cwe" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"cvy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/dry_ramen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/shiva{ +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "multi_tiles" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) -"cwk" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"cwp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"cvN" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"cvQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"cvZ" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/varadero/exterior/lz1_near) +"cwg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"cwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"cwr" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"cwB" = ( +/obj/structure/surface/rack, +/obj/item/clipboard, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "cwE" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/north) @@ -3855,63 +3029,101 @@ /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"cxg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"cxl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"cxR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) "cxT" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"cym" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"cyT" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +"cya" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"cyA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"cyV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/maintenance/research) -"czA" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/disposals) +"czh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) -"czG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"cAp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior_protected/vessel) -"cAw" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"cAv" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "cAx" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"cAX" = ( +"cAG" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Disposals"; + req_access_txt = "100" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"cAL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/flashlight, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"cBi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"cBl" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "cBq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -3919,145 +3131,109 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) +"cBD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cBF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "cBI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cBW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "cCk" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"cCO" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/laundry) -"cDc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cCl" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) -"cDm" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 12 +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"cDj" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"cEm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, +"cDG" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"cDQ" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"cDU" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"cDW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/area/varadero/exterior/pontoon_beach) -"cEu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"cEX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ dir = 1; - icon_state = "green" + icon_state = "pipe-c" }, -/area/varadero/interior/hall_SE) -"cFe" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "cFh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"cFu" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "cFw" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "cFz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/interior/caves/east) -"cFK" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) "cFZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cGc" = ( -/obj/item/book/manual/detective, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"cGd" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/mess) -"cGx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +"cGm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -4068,78 +3244,25 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/hall_NW) -"cGT" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +"cGH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) "cGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/records) -"cHf" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, +"cHr" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"cHl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"cHR" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"cHS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -3 - }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 6 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) +"cHF" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "cHV" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -4158,181 +3281,141 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"cHY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"cIB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"cIP" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"cIG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/tool/lighter/zippo/black{ + pixel_x = -5; + pixel_y = 7 }, -/area/varadero/interior/bunks) -"cJa" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 +/obj/item/ashtray/plastic{ + pixel_x = 6; + pixel_y = -4 }, -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"cIJ" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"cJi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"cKi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ dir = 8; - icon_state = "purplefull" + pixel_y = 2 }, -/area/varadero/interior/research) -"cJL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"cKv" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/area/varadero/exterior/farocean) -"cKB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/wood, +/area/varadero/interior/library) +"cKF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/farocean) -"cKC" = ( -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cKG" = ( +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "cKK" = ( /obj/item/paper/crumpled/bloody, /obj/effect/landmark/corpsespawner/security, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"cKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" +"cLd" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"cLz" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/varadero/interior/cargo) -"cLD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) "cLP" = ( /turf/open/space, /area/space) -"cLV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"cLX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cLY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"cMf" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"cMx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/court) -"cMw" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"cMR" = ( +/obj/structure/target/syndicate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"cMT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cMQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ +/obj/structure/closet/crate/ammo/alt, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"cNf" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"cNk" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) -"cNb" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/area/varadero/interior/maintenance/north) -"cNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/security) +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "cNt" = ( /turf/open/gm/coast/north, /area/varadero/exterior/comms4) -"cNu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) "cNA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -4355,44 +3438,26 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNC" = ( -/obj/item/fuelCell{ - pixel_x = 4; - pixel_y = 22 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"cNF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"cNJ" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lantern, -/obj/item/map/current_map, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"cNQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_y = 5 }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"cOh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"cNT" = ( -/obj/structure/pipes/vents/pump{ +"cOq" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"cOj" = ( -/obj/item/circuitboard/apc, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -1 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -4400,66 +3465,61 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cOK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/morgue) -"cPI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"cPR" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ +"cOZ" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"cPt" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/area/varadero/interior/research) -"cQr" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 9; +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"cPy" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cPH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cQo" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"cQF" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/sosjerky, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"cRa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"cRu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/technical_storage) -"cQu" = ( -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"cRn" = ( -/obj/item/prop/alien/hugger, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"cRZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cRE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/varadero/interior/comms2) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_3" @@ -4473,98 +3533,46 @@ "cSq" = ( /turf/open/floor/wood, /area/varadero/interior/chapel) -"cTb" = ( -/obj/item/device/flashlight/flare, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"cTg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"cTr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +"cSs" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"cTw" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"cTV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"cUE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"cSQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/stack/cable_coil/cut{ + pixel_y = 12 }, -/area/varadero/interior_protected/vessel) -"cUF" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"cTs" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"cTT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cTZ" = ( +/obj/structure/bed, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"cUm" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"cUN" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"cUZ" = ( -/obj/structure/largecrate/random/case/double{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cUs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"cUK" = ( +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker{ @@ -4572,51 +3580,28 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"cVo" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "cVq" = ( /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"cVG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"cWs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"cWu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"cWN" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 }, -/area/varadero/interior/oob) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"cWW" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -4629,124 +3614,145 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"cXQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"cXb" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" }, -/area/varadero/interior/technical_storage) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"cXK" = ( +/obj/structure/airlock_assembly, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "cYa" = ( /obj/item/storage/firstaid/adv, /turf/open/floor/wood, /area/varadero/interior/security) -"cYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"cYr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"cYw" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cYe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cYg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/exterior/monsoon) -"cYB" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"cYm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/varadero/interior/maintenance/security) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "cYC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"cYR" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "cYV" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cYZ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"cZm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/lz1_near) -"cZN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"cZB" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "cZR" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) -"cZZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cZT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"cZW" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) "dad" = ( /obj/item/stack/tile/plasteel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"daA" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/court) -"daS" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"dae" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) -"dbg" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"dag" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"dap" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"daX" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dbV" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"dby" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"dbD" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 }, -/area/varadero/interior/hall_NW) +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"dbK" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dcF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) "dcM" = ( /obj/item/ammo_magazine/revolver/spearhead, /turf/open/auto_turf/sand_white/layer1, @@ -4762,34 +3768,37 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ddz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Reception"; +"ddq" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/wred/southeast, +/area/varadero/interior/medical) +"ddt" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"ddz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Reception"; req_access_txt = "100"; req_one_access = null }, /turf/open/floor/plating, /area/varadero/interior/records) -"ddY" = ( +"ddK" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dec" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"ded" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) "deg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/plating, @@ -4815,210 +3824,201 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"deX" = ( -/obj/item/trash/boonie, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"dff" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"dfJ" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +"dgp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"dgE" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/morgue) -"dfP" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ - pixel_y = 32 +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"dgI" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"dgJ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"dgq" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"dgF" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"dgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dgN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "yellowcorners" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/disposals) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"dgU" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -10; + pixel_y = 19 + }, +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "dgY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"dhp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"dhV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"dir" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"diu" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 +"dhf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dhl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"dhw" = ( +/obj/structure/morgue{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"dhL" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) -"diK" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/item/stack/sheet/wood, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"diQ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dib" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/folder/black_random{ +/obj/item/clipboard{ pixel_x = -3; - pixel_y = -1 + pixel_y = 4 }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"diD" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"djd" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"diW" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"djg" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" - }, -/area/varadero/interior/security) -"djb" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/shiva{ - icon_state = "redfull" + dir = 4; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"djh" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" +"djz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/library) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"djK" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) "djP" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dkl" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"djU" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"djX" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/maintenance) -"dkr" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"djZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + pixel_y = 17 }, -/area/varadero/interior/research) -"dkC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/item/weapon/gun/revolver/spearhead{ + pixel_y = 2 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 2; + pixel_y = 8 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"dkV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"dlc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ density = 0; @@ -5027,132 +4027,101 @@ /obj/item/frame/table/wood/poor, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dlr" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"dlv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) +"dlB" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"dlC" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "dlD" = ( /obj/structure/prop/rock/brown_degree, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"dmq" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"dlE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/obj/item/storage/belt/shotgun, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"dmu" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"dmL" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) "dmN" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 }, /area/varadero/interior/records) -"dmP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "dmR" = ( /obj/structure/surface/rack, /obj/item/storage/pouch/medkit/full_advanced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"dmS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "dnh" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"dnA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/court) -"dnU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"dnV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"dnW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"doa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"dob" = ( +"dnN" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"doi" = ( +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "dos" = ( /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/security) +"dou" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"dov" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/retractor/predatorretractor, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "doH" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"doO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) +"doL" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "doP" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/warning_stripes{ @@ -5167,74 +4136,118 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/plating, /area/varadero/interior/research) -"dpz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig"; - req_access_txt = "100" +"dph" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Breakroom"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/security) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"dpy" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"dpM" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"dpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, +"dpX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "dqx" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"dro" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 +"dqG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dqO" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"dqY" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"drE" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"drZ" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, +/obj/item/trash/crushed_cup, +/obj/item/trash/c_tube, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"drK" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dsf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"dss" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"dsC" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"dsk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"dsP" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/varadero/exterior/comms4) +/turf/open/floor/wood, +/area/varadero/interior/library) +"dth" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, /area/varadero/interior/technical_storage) +"dtl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/prop/static_tank{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"dtr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "dtu" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -5245,6 +4258,16 @@ /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"dtY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"dum" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "duw" = ( /obj/effect/decal/cleanable/cobweb2{ pixel_x = 11; @@ -5272,6 +4295,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"duA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "duN" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; @@ -5281,62 +4314,54 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"dvw" = ( -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -13; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"dvm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/hall_N) -"dvT" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"dvu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/eastbeach) -"dwN" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"dvP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/exterior/eastbeach) -"dwP" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dvY" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"dwg" = ( +/turf/open/floor/white, +/area/varadero/interior/security) +"dxy" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "yellow" + icon_state = "pipe-c" }, -/area/varadero/interior/electrical) -"dxn" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"dxt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" + icon_state = "pottedplant_22" }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "dxK" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"dyl" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dym" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -5351,59 +4376,108 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) +"dyz" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dzc" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"dzr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"dzG" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "dzH" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dzN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 3; - pixel_y = 2 +"dzZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"dAs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"dBA" = ( -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ - pixel_x = 10 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"dAB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"dAF" = ( +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"dAH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior_protected/vessel) -"dBB" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/varadero/interior/medical) -"dCz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 9 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"dBa" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/kepler, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"dBe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dBQ" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - health = 80 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "red" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"dCD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/co2{ + pixel_y = 7 }, -/area/varadero/interior/morgue) -"dCE" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"dCN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"dCQ" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"dDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) "dDn" = ( /obj/item/shard{ icon_state = "large"; @@ -5420,13 +4494,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dEo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dEa" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -5434,18 +4511,17 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"dFd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"dFq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dFt" = ( /obj/structure/prop/fishing/line/long, /turf/open/gm/coast/beachcorner2/south_west, @@ -5480,23 +4556,31 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"dGR" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 +"dHr" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/toilets) -"dHD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior_protected/vessel) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"dHP" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5535,164 +4619,102 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"dID" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ +"dIm" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"dJk" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/stack/sheet/wood, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"dJt" = ( +/obj/structure/bed/alien{ + can_buckle = 0; + color = "#aba9a9" + }, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellowfull" + layer = 3.3; + pixel_y = 4 }, -/area/varadero/interior/electrical) -"dIK" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed/alien{ + buckling_y = 13; + color = "#aba9a9"; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"dJN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dJX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"dKc" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"dKm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"dKq" = ( +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/bunks) -"dKy" = ( -/obj/structure/closet/crate/freezer/cooler/oj, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"dLf" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"dLN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/medical) -"dLP" = ( -/obj/item/stool{ - icon_state = "stool_alt" +"dLu" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"dLB" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"dLM" = ( +/obj/structure/machinery/light{ dir = 1 }, -/area/varadero/interior/medical) -"dMm" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"dNh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"dNt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/north_research) -"dNU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"dNW" = ( -/obj/structure/machinery/light{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"dLO" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -7 - }, -/obj/item/facepaint/lipstick/jade{ - pixel_x = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"dNY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"dNZ" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves/central) -"dOk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dLX" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"dMc" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dMP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"dOf" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "dOl" = ( /obj/item/prop/colony/used_flare, /turf/open/gm/dirt, @@ -5701,84 +4723,68 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dOS" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"dOo" = ( +/obj/item/toy/deck/uno{ + pixel_y = 6 }, -/area/varadero/exterior/pontoon_beach) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dOG" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"dON" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"dOU" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dOX" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"dPJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "dPR" = ( /obj/item/reagent_container/glass/bucket, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"dQe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"dQl" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"dQr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"dQK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"dQT" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"dQV" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"dRs" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"dQJ" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/area/varadero/exterior/eastocean) -"dRI" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dRS" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/varadero/interior/caves/east) -"dRX" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"dSc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "dSo" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -5790,134 +4796,119 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"dSs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"dSA" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"dTe" = ( -/obj/item/stack/cable_coil/random, -/turf/open/shuttle{ - icon_state = "floor6" +"dSy" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"dST" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"dSU" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -4; + pixel_y = 13 }, -/area/varadero/interior_protected/vessel) -"dTl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "dTu" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"dTC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/medical) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"dUh" = ( -/obj/structure/morgue, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"dUA" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"dUL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"dUS" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"dVq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +"dTN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - name = "\improper Underground Library"; - req_one_access = null; - req_access = null + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"dUe" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dUu" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/varadero/interior/library) -"dWu" = ( -/obj/structure/surface/rack, -/obj/item/broken_device{ - desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/shiva{ +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"dUv" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "purple" + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/research) -"dWE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"dUM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/area/varadero/interior/administration) -"dWH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/item/device/flashlight/lamp/candelabra{ + pixel_x = -6; + pixel_y = 22 }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/administration) +"dVs" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"dVv" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"dWe" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"dWv" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 + dir = 8; + layer = 3.5 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"dWx" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 }, -/area/varadero/exterior/comms4) +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"dWL" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -5928,6 +4919,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"dWU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "dWV" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -5955,101 +4951,91 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dYn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "dYp" = ( /obj/item/book/manual/hydroponics_beekeeping, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"dYW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dYM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/exterior/eastbeach) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "dYX" = ( /obj/structure/machinery/light, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/pen/blue{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"dZT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"dZZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/tool/lighter/zippo{ - icon_off = "blackzippo"; - icon_on = "blackzippoon"; - icon_state = "blackzippo"; - pixel_x = -5; - pixel_y = 7 +"dZL" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"dZN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dZR" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"ead" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/technical_storage) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"eae" = ( +/obj/item/device/mass_spectrometer, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"eai" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"eaz" = ( +/obj/structure/closet/crate/construction, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"eaB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "eaC" = ( /obj/item/packageWrap, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"eaQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"ebi" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, +"eaP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"ebi" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "ebm" = ( @@ -6063,194 +5049,161 @@ "ebr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves) -"ebF" = ( -/obj/structure/bed/chair{ - dir = 8 +"ebL" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"ebM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"ebJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ebY" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ece" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) -"ebN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"ecb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 1 +"ecv" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 9; + pixel_y = 15 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -6; + pixel_y = 15 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/white, +/area/varadero/interior/laundry) +"ecS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ecX" = ( /obj/effect/landmark/corpsespawner/engineer, /obj/effect/decal/cleanable/blood, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"edu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"edh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance) -"edD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/white, +/area/varadero/interior/security) +"edB" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"eez" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"eeF" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"eeG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/cell/high, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"efk" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"eea" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"eeg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"efw" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "efy" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastocean) -"efU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"efJ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"ege" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/exterior/lz1_near) +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"egp" = ( -/obj/structure/window/framed/colony, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/varadero/interior/hall_N) -"egH" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"egJ" = ( +"egn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"egr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"egL" = ( /obj/structure/surface/table, -/obj/item/storage/box/lightstick{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "egV" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"eha" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ehw" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/window/reinforced{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"ehD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"ehH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 + health = 80 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) +/obj/item/storage/large_holster/katana/full, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ehM" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -6272,6 +5225,13 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) +"ehU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/security, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "ehY" = ( /obj/item/clothing/under/shorts/red{ pixel_y = 9; @@ -6285,16 +5245,38 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"eij" = ( -/obj/structure/bed, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +"eid" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "eiK" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"ejf" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" + }, +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" + }, +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "ejk" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice4"; @@ -6308,38 +5290,35 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ejK" = ( -/obj/structure/machinery/alarm{ +"ejA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ejH" = ( +/obj/structure/shuttle/engine/heater{ dir = 8; - pixel_x = 24 + unacidable = 0 }, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/area/varadero/interior/library) +/obj/item/device/flashlight/slime, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ejM" = ( /turf/open/gm/coast/north, /area/varadero/exterior/monsoon) -"ejZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"ekp" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/sling, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" +"ekh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/area/varadero/interior/medical) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6352,66 +5331,121 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"ekO" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"ekP" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 5; + pixel_y = 4 }, -/area/varadero/exterior/comms4) -"elI" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/eastocean) -"elO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"elh" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, +/turf/open/floor/shiva/greencorners/east, +/area/varadero/interior/hall_SE) +"elk" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"elP" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"ell" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/area/varadero/exterior/monsoon) -"emt" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" +/obj/item/tool/soap{ + pixel_x = 5 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"emC" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"elu" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"elx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) +"ely" = ( +/obj/item/weapon/gun/shotgun/pump, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_N) +"elI" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/eastocean) +"ema" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "emP" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"enu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"emW" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"end" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/comms2) -"enH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"eny" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"enF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"enU" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"enP" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/varadero/interior/cargo) +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"enX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "enZ" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -6424,31 +5458,68 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"eoq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eou" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"eoB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) +"eoU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "eoV" = ( /obj/structure/prop/resin_prop, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"epf" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"epz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"epI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "epN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -6457,47 +5528,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"epO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "epQ" = ( /turf/closed/wall, /area/varadero/interior/morgue) -"epY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ +"epW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"eqe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6506,74 +5548,41 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"eqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"eqB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"eqT" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"erE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eql" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"eqP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"erh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"err" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/hall_N) -"erK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "erQ" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"esw" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"esA" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"esB" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"erX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"erY" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/varadero/interior/comms3) +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "esK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -6581,36 +5590,23 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"esM" = ( -/obj/structure/target/syndicate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"esO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"etf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"etv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"esZ" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"etk" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"etq" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + layer = 2.15; + density = 0; + climb_delay = 0 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "etE" = ( /obj/structure/filingcabinet{ density = 0; @@ -6630,74 +5626,37 @@ /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"euH" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tank/emergency_oxygen, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"euM" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, +"euL" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/trash/boonie, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"evN" = ( +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_N) -"euS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach) -"evV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"evW" = ( -/obj/item/lightstick/variant/planted, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"evX" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ewv" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"ewS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) +"ewg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"ewW" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) +"exl" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"exp" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "exs" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -6705,31 +5664,12 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"exH" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"exX" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"eye" = ( +"eyp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" + dir = 6 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) @@ -6737,6 +5677,17 @@ /obj/structure/surface/table, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"eyR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"eyY" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "ezb" = ( /obj/structure/surface/rack, /obj/item/frame/table, @@ -6745,64 +5696,25 @@ /obj/item/frame/table, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"ezc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"ezd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"ezt" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ezm" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"ezx" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/sign/safety/waterhazard, -/obj/structure/sign/safety/water{ - pixel_x = 15 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"ezI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva{ - dir = 1 +"ezy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"ezJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"ezO" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ezU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -6816,144 +5728,62 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ezW" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ezZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"eAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"eAJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eAn" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -3; + pixel_y = 14 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"eBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"eBm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, +"eAt" = ( /obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" + dir = 4; + pixel_x = -3 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"eAY" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/varadero/interior/library) +"eBi" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 }, /area/varadero/interior/records) -"eBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"eBL" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"eBS" = ( -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"eBT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 +"eBx" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) "eCg" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"eCj" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/varadero/interior/dock_control) +"eCh" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eCB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) +"eCJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"eCP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -6969,16 +5799,6 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"eDY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, @@ -6992,44 +5812,82 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) -"eFB" = ( -/obj/structure/prop/fishing/line/long{ - dir = 8 +"eEZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt, -/area/varadero/exterior/pontoon_beach) -"eFJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/comms3) -"eFW" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/maintenance/security) -"eGq" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"eFj" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"eFx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/hydro{ pixel_x = -4; - pixel_y = -7 + pixel_y = 7 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/reagent_container/spray/hydro{ + pixel_x = 4; + pixel_y = 4 }, -/area/varadero/interior_protected/maintenance/south) -"eGL" = ( -/obj/item/stack/sheet/plasteel{ - amount = 24 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"eFB" = ( +/obj/structure/prop/fishing/line/long{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt, +/area/varadero/exterior/pontoon_beach) +"eGn" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"eGp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/bible{ + pixel_x = -2; + pixel_y = 3 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"eGy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"eGz" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"eGJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "eGP" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/powercell, @@ -7039,6 +5897,22 @@ "eGX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) +"eGZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"eHf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "eHl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -7051,127 +5925,75 @@ /obj/item/stack/sheet/wood/medium_stack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eHB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"eHT" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/area/varadero/interior/security) +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) "eHZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"eIr" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"eIT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"eIV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"eJI" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/pillbottles{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/packet/bicaridine{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +"eIf" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"eJN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"eJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"eKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"eIv" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"eKF" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"eKG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eLZ" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 +"eLd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"eLU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"eMf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -7196,12 +6018,13 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/varadero/interior/court) -"eMD" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) +"eMs" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eNg" = ( +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "eNk" = ( /obj/item/toy/sword, /obj/item/clothing/head/pirate, @@ -7212,6 +6035,13 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"eNC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) "eOa" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -7219,47 +6049,41 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"eOh" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"eOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") +"eOo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "eOv" = ( /obj/item/circuitboard/airlock, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"eOC" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "eOK" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"eOZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"ePb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"ePu" = ( +/obj/item/tool/wrench{ + pixel_x = -1; + pixel_y = -2 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "ePz" = ( /obj/item/explosive/grenade/incendiary/molotov{ @@ -7267,73 +6091,86 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ePB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"eQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"ePC" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/hall_SE) +"ePH" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"eQr" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 +"eQs" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ammo_magazine/pistol{ + pixel_x = -4 }, -/area/varadero/interior_protected/maintenance/south) -"eQz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol{ + pixel_x = 4 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"eQx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "eQC" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"eQI" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"eQE" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"eQO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/caves/east) -"eQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"eRr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"eRz" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/eat, +/obj/item/trash/cheesie, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "eRD" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, @@ -7344,48 +6181,48 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"eRM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"eRO" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eRJ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"eRK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/hall_NW) -"eRQ" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"eRX" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"eSg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"eSY" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 }, -/area/varadero/interior/medical) -"eSo" = ( -/obj/structure/closet/crate/construction, -/obj/item/tool/extinguisher, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 }, -/area/varadero/exterior/eastbeach) +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "eTb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -7395,13 +6232,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"eTi" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/shiva{ - icon_state = "redfull" +"eTj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "eTP" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -7413,32 +6249,9 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"eUh" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"eUr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"eUv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) +"eUl" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "eUH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7448,118 +6261,43 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"eVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"eVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"eVU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"eVW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"eUW" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"eWp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"eVi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"eVj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -4; + pixel_y = 9 }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/storage/bible/booze{ + pixel_x = 10; + pixel_y = 2 }, -/area/varadero/interior/comms1) -"eWR" = ( -/turf/open/floor/shiva{ +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "purplecorners" - }, -/area/varadero/interior/research) -"eWZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_x = -24 }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"eVl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"eXg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"eXr" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"eXw" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - name = "barge float"; - desc = "A supportive lattice connected to two floating pontoons." - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) +"eVB" = ( +/obj/item/stool, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eVQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -7576,57 +6314,48 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"eYe" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"eYG" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"eYM" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eXS" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"eYx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/electrical) -"eZc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"eYA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/administration) -"eZk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"eYF" = ( +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"eZv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_SE) +"eZV" = ( +/turf/open/floor/shiva/yellow/east, /area/varadero/interior/cargo) -"fao" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"faq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/medical) +"faw" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "fay" = ( /turf/closed/wall/r_wall, /area/varadero/interior/research) @@ -7635,26 +6364,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"faP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/comms3) -"faX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"faS" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "fbr" = ( /obj/effect/landmark/corpsespawner/miner, /turf/open/auto_turf/sand_white/layer1, @@ -7666,18 +6383,10 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) -"fbJ" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) +"fbz" = ( +/obj/item/prop/alien/hugger, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -7692,18 +6401,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"fbW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = -4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/plating, @@ -7713,81 +6410,62 @@ /obj/item/device/camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fcg" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"fcz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Underground Morgue"; + req_access_txt = "100" + }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) "fcF" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fcK" = ( +"fdj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"fdn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"fdw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"fdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/maintenance/research) -"fef" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 7; - pixel_y = 13 - }, -/obj/item/implantcase/explosive{ - pixel_x = -3; - pixel_y = 3 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Power Substation" }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"fdN" = ( +/obj/item/moneybag{ + anchored = 1; + desc = "A console designed by the Hunters to assist in flight pathing and navigation."; dir = 8; - icon_state = "purplefull" + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "overwatch"; + name = "Hunter Flight Console"; + pixel_x = -17 }, -/area/varadero/interior/research) +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"fdY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"feb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -7798,42 +6476,27 @@ /obj/structure/barricade/wooden, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"feR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"feV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"feW" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/interior/maintenance/north) "ffe" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"ffk" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 +"fff" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"ffj" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/area/varadero/interior/medical) +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7841,28 +6504,47 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ffC" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fge" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78{ + pixel_y = -4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"fgk" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"fgz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Colony Offices"; + req_access_txt = "100" }, -/area/varadero/interior/disposals) -"fga" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"fgD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"fgV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastocean) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -7873,92 +6555,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fhh" = ( -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fhu" = ( -/obj/structure/bed/chair{ - dir = 3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"fhA" = ( -/obj/item/device/flashlight, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"fhM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"fhV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fiv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"fiA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" +"fit" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "fjg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"fjv" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"fjx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +"fjt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"fjA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "fjC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -7983,51 +6600,39 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"fjU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"fjX" = ( +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/area/varadero/interior/hall_SE) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"fjY" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fkd" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"fkj" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"fky" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fkE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"fkF" = ( -/obj/structure/machinery/light{ - dir = 4 +"fku" = ( +/obj/structure/tunnel{ + id = "north_research_tunnel" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"fkD" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) @@ -8041,205 +6646,159 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"flA" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"flN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"fmy" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"fnj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fmA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"fmF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/maintenance/south) -"fnl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/area/varadero/interior/comms2) -"fnq" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"fmV" = ( +/obj/structure/prop/static_tank/fuel{ + pixel_y = 8 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"fnB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"fnJ" = ( +/turf/open/floor/darkgreencorners2/west, /area/varadero/interior/hall_SE) -"fnF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/stamp{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 +"fnU" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"foa" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"foi" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fom" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/medical) -"fnX" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"fon" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"fof" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - unacidable = 0 - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/item/device/flashlight/slime, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"foz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) -"foE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/exterior/eastbeach) -"foF" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"foU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"fpe" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"fpf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, +"fpj" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + dir = 4; + icon_state = "chair_alt" }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "fpq" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/lz2_near) -"fpY" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/research, -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/records) -"fqs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +"fpx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"fqu" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"fqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"fpI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) +"fpY" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/records) +"fqT" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/security) -"frQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"frJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "frR" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"frZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"fsc" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"fsf" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "fsC" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -8249,6 +6808,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fsP" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"ftf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "ftm" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -8263,36 +6834,77 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"ftF" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"ftJ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/comms3) -"fuh" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/varadero/interior/maintenance/north) -"fuj" = ( -/obj/structure/barricade/wooden, -/obj/structure/safe/floor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"ftT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior_protected/maintenance/south) -"fuF" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"fuJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"fuN" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior/cargo) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "fuS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/disposals) +"fuT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"fuV" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "fvd" = ( /obj/structure/filingcabinet{ density = 0; @@ -8308,16 +6920,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fvw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +"fvt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) "fvV" = ( /obj/structure/largecrate/random/barrel/green, /obj/structure/machinery/light/small{ @@ -8328,34 +6934,19 @@ "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"fxK" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"fxR" = ( -/obj/item/moneybag{ - anchored = 1; - desc = "A console designed by the Hunters to assist in flight pathing and navigation."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "overwatch"; - name = "Hunter Flight Console"; - pixel_x = -17 - }, -/obj/structure/bed/chair/hunter{ - dir = 8 +"fwT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"fxL" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -8370,27 +6961,21 @@ /obj/item/weapon/sword/katana, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"fys" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"fyH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" +"fyz" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"fyD" = ( +/obj/item/paper_bin{ + pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/item/tool/pen/blue{ + pixel_x = 7 }, -/area/varadero/interior/medical) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "fyP" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -8400,185 +6985,110 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"fyZ" = ( -/mob/living/simple_animal/cat{ - desc = "A domesticated, feline pet. The collar says 'Orion'."; - name = "Orion"; - real_name = "Orion" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"fzx" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"fzy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"fAq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"fAs" = ( +"fzG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"fAf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/administration) +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"fAQ" = ( +"fBm" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"fBx" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/alarm{ + dir = 1; + pixel_y = -24 }, -/area/varadero/interior/maintenance) +/turf/open/floor/white, +/area/varadero/interior/toilets) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fCB" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ +"fCc" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"fCm" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"fCG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"fDB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "fDH" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"fEb" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"fEm" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"fEu" = ( -/turf/open/floor{ - icon_state = "bcircuit" +"fDS" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/area/varadero/interior/electrical) -"fEz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/stack/cable_coil/pink{ + pixel_x = -7; + pixel_y = -4 }, -/area/varadero/interior/records) -"fEA" = ( -/obj/structure/girder/displaced, -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fDY" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"fEC" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"fEI" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"fER" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ +"fEE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"fEM" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"fFj" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"fFm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 3 - }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"fFs" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"fFu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) "fFw" = ( /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"fFx" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -8587,34 +7097,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fFI" = ( -/obj/structure/bed/chair/office/dark{ +"fFT" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"fFK" = ( -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/vessel) -"fFO" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"fGl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -8624,173 +7119,117 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"fGN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/farocean) "fGP" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"fHf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) "fHg" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) +"fHi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "fHk" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"fHs" = ( +"fHm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"fHH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"fIo" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/technical_storage) +"fIE" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"fIN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/hall_NW) -"fHx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"fKe" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"fKp" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/item/paper/crumpled{ + pixel_x = 9 }, -/area/varadero/interior/security) -"fIk" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor{ +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"fKx" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz2_near) -"fJb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"fKC" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"fKN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/light{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"fLb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"fJw" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"fJI" = ( -/obj/item/clothing/gloves/yautja{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System"; - pixel_y = 24 - }, -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"fJR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"fKz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Sample Isolation"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"fLn" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" - }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fLF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"fLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"fLZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"fMq" = ( -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 5; - pixel_y = -3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/medical) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fNc" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "fNm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -8809,99 +7248,60 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fND" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"fOG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) "fOO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"fPn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"fPo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/item/storage/fancy/cigar, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) +"fPc" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"fPk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"fPm" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_2" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"fPq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"fPy" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"fPz" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/area/varadero/exterior/eastocean) +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"fPF" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) "fPJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fPU" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/flora/pottedplant{ - desc = "How did that get in there?"; - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"fPZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "fQh" = ( /obj/item/shard{ icon_state = "large"; @@ -8913,33 +7313,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fQr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"fQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"fQp" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/area/varadero/interior/mess) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/maintenance/south) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"fQW" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) "fRl" = ( /obj/structure/largecrate/random/case, /obj/item/spacecash/c10{ @@ -8956,115 +7346,69 @@ /obj/structure/window_frame/colony, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fTh" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"fUn" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"fSy" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"fSE" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"fSK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "fUs" = ( /obj/structure/machinery/light/small, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"fUF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) +"fUH" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "fUJ" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fUY" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"fUZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"fVt" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 +"fVk" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) +"fVo" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) "fVw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fWd" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/eastocean) -"fWn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"fWr" = ( +"fVD" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"fWz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"fWA" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"fWE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, +"fWd" = ( /turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach) +/area/varadero/exterior/eastocean) "fWR" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -9078,13 +7422,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fWU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"fWV" = ( +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 13 }, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fWW" = ( /obj/structure/surface/rack, /obj/structure/surface/rack, @@ -9100,16 +7444,25 @@ /obj/item/ashtray/plastic, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"fXu" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fXh" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"fXl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fXn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "fXA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -9120,6 +7473,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"fXD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "fXG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9129,157 +7491,77 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fXH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"fXL" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"fXX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/trash/crushed_cup, -/obj/item/trash/c_tube, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"fYs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fYA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_N) -"fYH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"fYQ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"fYV" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"fZd" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"fZe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"fZx" = ( -/obj/item/stool{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"fYp" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"fYu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"fZB" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"fYS" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/exterior/lz1_near) -"fZI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"fYW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/medical) -"fZP" = ( -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"fZc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"fZH" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/caves/east) +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "fZX" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"gan" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/court) -"gar" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"gam" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/light_fixture, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"gaw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gaJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) +"gbq" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "gbE" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -9289,16 +7571,32 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"gbG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" +"gbQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "greenfull" + icon_state = "pipe-c" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"gce" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"gcq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "gcB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, @@ -9312,15 +7610,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gcK" = ( -/obj/structure/bed/chair{ +"gdb" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/court) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -9340,17 +7635,24 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"gdO" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +"gdK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Sports Center"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/exterior/pool) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"gem" = ( +/obj/item/device/flashlight, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "geo" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) @@ -9359,6 +7661,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"geH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "geK" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9373,6 +7682,11 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"geT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "gfc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9395,75 +7709,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gfg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"gfj" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gfp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"gfr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"gfs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"gfu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gfm" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"gfx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -9474,19 +7734,57 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gfG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gfC" = ( +/obj/structure/girder/displaced, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"gfE" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"gfT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/area/varadero/interior/maintenance/security) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"gfV" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"gfY" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "ggk" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 }, /area/varadero/interior/records) -"ggr" = ( -/obj/item/device/binoculars, +"ggo" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ggq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/paper{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/paper/research_notes/good{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"ggr" = ( +/obj/item/device/binoculars, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) "ggX" = ( @@ -9496,30 +7794,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gha" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"ghb" = ( -/obj/item/tool/crowbar, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"ghr" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"ghs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "ghI" = ( /obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ @@ -9527,112 +7801,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) +"ghM" = ( +/obj/structure/largecrate/random, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "ghN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) -"ghW" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz2_near) -"gia" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"giq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) +"giA" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gja" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"gjs" = ( +"gjc" = ( /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; + icon_state = "lattice3"; pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"gjw" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"gjy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"gjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"gjm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gka" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) "gkb" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/large_holster/ceremonial_sword/full, /turf/open/floor/wood, /area/varadero/interior/security) -"gkw" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"gkj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "gkx" = ( /obj/item/stack/tile/plasteel{ pixel_y = 6 @@ -9645,91 +7867,65 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance) -"gkG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"gkL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"gkS" = ( +"gkH" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "glp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"gms" = ( -/obj/effect/landmark/good_item, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"gmK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"gmT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"glE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"gnm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"gnx" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"gnC" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 7 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"glU" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"gme" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"gmv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/shield/riot, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"gmO" = ( +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) -"gnZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" +"gna" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"gnn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/interior/security) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"gnw" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/pontoon_beach) "god" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -9742,6 +7938,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"gop" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "gor" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -9750,88 +7950,102 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"gpJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"goI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"gqd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"gqN" = ( -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "white" +"gqU" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/security) -"gqX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"grd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"grk" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"grw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "grG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"grQ" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/administration) "grT" = ( /obj/structure/sign/safety/water, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"gsg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "gsm" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gso" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"gsq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"gsu" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"gsw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"gsA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz2_near) +"gsH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"gsM" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "gsP" = ( /turf/open/space/basic, /area/space) @@ -9854,121 +8068,133 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gtv" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gsS" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/exterior/eastbeach) -"gtz" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"gta" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gtj" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"gts" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/maintenance/security) -"gun" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"gtx" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"gtH" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"guf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"guk" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"guE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" +"guA" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"gvg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"gvj" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "gvo" = ( /obj/item/ore/diamond, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"gvE" = ( -/obj/structure/machinery/light{ +"gvs" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"gvN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"gvF" = ( -/obj/structure/machinery/computer/cameras, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"gvT" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) +"gwd" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/administration) -"gvJ" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"gvM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/obj/structure/machinery/recharger{ + pixel_y = 4 }, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/dock_control) +"gwg" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"gwh" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"gvR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"gwt" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +"gwn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"gwB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"gwC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) +"gwu" = ( +/obj/structure/prop/broken_arcade, +/turf/open/floor/wood, +/area/varadero/interior/library) "gwD" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -9977,19 +8203,14 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"gwG" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"gwO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"gxg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -6; + pixel_y = 3 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -9998,16 +8219,23 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxu" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"gxX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gyv" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10025,24 +8253,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/security) -"gze" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette/ucigarette{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) +"gzl" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "gzm" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -10052,58 +8266,50 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gAl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"gAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"gAB" = ( +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"gAV" = ( -/obj/structure/barricade/wooden{ - dir = 1 +"gAU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"gBl" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 14 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, -/area/varadero/interior/maintenance/security) -"gBi" = ( -/obj/item/stool{ - icon_state = "stool_alt" +/turf/open/floor/white, +/area/varadero/interior/laundry) +"gBH" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_y = 4; + pixel_x = -12 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"gBN" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) -"gBM" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "gBP" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -10118,13 +8324,6 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"gBV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) "gBW" = ( /obj/item/stack/sandbags_empty/half, /turf/open/auto_turf/sand_white/layer1, @@ -10138,14 +8337,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gCi" = ( -/obj/structure/machinery/light{ +"gCz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"gCE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "gCH" = ( /obj/item/ammo_casing{ dir = 6; @@ -10153,6 +8354,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"gCL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "gCQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -10160,6 +8365,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"gCV" = ( +/obj/structure/surface/table, +/obj/item/storage/wallet/random{ + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "gCZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10179,115 +8394,146 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "gDr" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gDu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"gDG" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) "gDI" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gEy" = ( -/obj/structure/machinery/light, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, -/area/varadero/interior/research) -"gEz" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"gDS" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gEa" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"gEO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 +"gEw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +/turf/open/floor/shiva/purplecorners, +/area/varadero/interior/research) +"gEx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "gEP" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"gFt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"gFA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt{ - icon_state = "desert1" +"gFF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/eastbeach) +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "gFH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"gFW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"gFX" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/varadero/interior/administration) +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/weapon/gun/rifle/sniper/svd, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "gFY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gHH" = ( -/obj/structure/machinery/light{ - dir = 4 +"gGd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gGz" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/pontoon_beach/lz) +"gGM" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"gHa" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"gHo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "gHJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gIB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"gJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gHW" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"gIj" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/records) +"gIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "gJy" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -10298,68 +8544,42 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"gKn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/varadero/interior/court) -"gKs" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/interior/oob) -"gKw" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"gLo" = ( -/obj/structure/machinery/light/small{ +"gJY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"gKp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gKI" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"gLu" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "gLw" = ( /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gLS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "gLV" = ( /obj/structure/closet/crate, /obj/item/tool/lighter, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gMi" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"gMm" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, /obj/item/paper_bin{ @@ -10369,40 +8589,61 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"gMq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"gMH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"gMY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, /area/varadero/interior/chapel) -"gNe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"gNg" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"gNj" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gNs" = ( +/obj/structure/bedsheetbin, +/obj/item/storage/box/attachments{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"gNA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) "gNE" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gOe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/varadero/interior/records) +"gOd" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/varadero/interior/laundry) "gOj" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -10411,27 +8652,40 @@ /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gPi" = ( -/turf/open/gm/coast/west, -/area/varadero/exterior/monsoon) -"gPA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"gOr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/item/storage/fancy/cigar, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"gOZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"gPd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance) -"gPE" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior_protected/caves/central) -"gPG" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"gPi" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/monsoon) +"gPk" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/caphat{ + pixel_x = 2; + pixel_y = 9 }, -/area/varadero/exterior/lz1_near) +/obj/item/clothing/head/cmcap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10446,41 +8700,10 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"gPY" = ( -/obj/structure/surface/table, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"gPZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/administration) -"gQa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) +"gQk" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "gRj" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -10488,84 +8711,126 @@ /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gRN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/bedsheet{ - anchored = 1; - desc = "A console used by the Hunters for navigation purposes."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Hunter Nav Console" +"gRl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"gRy" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"gRE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) -"gRS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"gRQ" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/medical) "gRU" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gSn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"gSC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"gSE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"gRW" = ( +/obj/effect/landmark/hunter_secondary, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"gRZ" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"gSd" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior_protected/vessel) -"gSY" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -6; - pixel_y = -3 +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"gSq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"gSJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "gTe" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"gTp" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "gTC" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/disposals) +"gUg" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/varadero/exterior/lz1_near) +"gUj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"gUK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "gUP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -10578,29 +8843,23 @@ /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"gVv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"gVI" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "gVO" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"gVP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/lz2_near) -"gVQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/shield/riot, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) +"gWb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -10611,14 +8870,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gWu" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"gWi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/medical) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"gWo" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "gWA" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -10635,6 +8900,20 @@ /obj/structure/machinery/faxmachine, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"gWT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/suit/fire/firefighter{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gXa" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "gXf" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -10654,53 +8933,53 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gXh" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"gXw" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"gXN" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"gXO" = ( -/obj/structure/machinery/light{ +"gXT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"gYg" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"gZq" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" +"gYF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/morgue) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gYP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"gZh" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"gZi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"gZJ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hap" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "haq" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -10709,101 +8988,57 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"hay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) -"haC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wred" +"haO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/medical) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "haP" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms1) -"haR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/pontoon_beach) -"haT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"haX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"hbi" = ( +"hbb" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"hbE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"hbD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hbK" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -6; + pixel_y = 6 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"hco" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/caves) -"hbP" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"hca" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"hcz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"hcx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hcA" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "hcI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -10811,145 +9046,99 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"hds" = ( -/turf/open/gm/coast/north, -/area/varadero/exterior/eastocean) -"hdV" = ( +"hcJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"hcK" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 4 }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"hdq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"hds" = ( +/turf/open/gm/coast/north, +/area/varadero/exterior/eastocean) +"hdA" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "hej" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hek" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"hen" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" +"hgS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/mess) -"heu" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior/caves/north_research) -"hfn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"hhc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"hhq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"hht" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"hfo" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"hhz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"hfR" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"hfX" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) -"hfZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"hgc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"hgB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hhD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) "hhM" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/north_research) -"hhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) -"hic" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"hiD" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"hhS" = ( +/obj/effect/landmark/good_item, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"hir" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/mess) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"hiZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -10973,6 +9162,17 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"hjR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "hkQ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, @@ -10994,48 +9194,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "hlw" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hlF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"hlG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"hlz" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -11052,6 +9223,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"hlP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -11059,36 +9238,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"hmh" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/lz2_near) -"hmm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/item/device/cassette_tape/pop2{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"hmp" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) +"hmM" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) "hmR" = ( /obj/item/tool/crowbar, /turf/open/gm/dirt, @@ -11099,35 +9251,27 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hnR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/light{ +"hnn" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"hno" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hnt" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hoG" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) "hoK" = ( /obj/item/stack/tile/plasteel{ pixel_x = -4; @@ -11139,63 +9283,95 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance) -"hoU" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"hrc" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +"hoT" = ( +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"hpq" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) +"hpA" = ( +/obj/structure/cable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"hpC" = ( +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"hpN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/comms2) -"hre" = ( -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) -"hrG" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_N) -"hrI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/hall_SE) -"hsa" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"hpS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"hqc" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/exterior/lz2_near) -"hsl" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hqv" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hqB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/crew{ + pixel_x = -5; + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/obj/item/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"hqP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hre" = ( +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) +"hse" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "hso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -11205,21 +9381,13 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"hsx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"hsz" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"hsF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) @@ -11238,40 +9406,16 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"htP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"huf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"hus" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"hux" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +"htO" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"huy" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"huA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -11281,133 +9425,69 @@ "huF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"hvh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"huQ" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hvl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"hvO" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"hwa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"hvp" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/maintenance) -"hwE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"hvH" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "\improper Theta-V Research Laboratory Director's Office"; + req_access = null; + req_one_access = null }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"hwm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "hwL" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) "hwP" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"hwZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/demo_scanner{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"hxa" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/administration) +"hxB" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "hxO" = ( /obj/structure/barricade/wooden{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"hyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/crowbar, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"hyp" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"hyr" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"hys" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"hyQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, +"hyg" = ( +/turf/open/floor/shiva/purple/northwest, /area/varadero/interior/research) +"hyw" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/mess) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_4" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hza" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"hyX" = ( +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/comms2) -"hzm" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, @@ -11424,6 +9504,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"hAe" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "hAg" = ( /obj/structure/largecrate/random/case/double, /turf/open/gm/dirt, @@ -11432,25 +9516,36 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/court) -"hAI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"hAu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"hAz" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"hAQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"hAY" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hBm" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "hBA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hBX" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, -/area/varadero/interior/research) "hCw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -11464,26 +9559,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hCZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"hDk" = ( -/obj/structure/bedsheetbin, -/obj/item/storage/box/attachments{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" +"hDr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/bunks) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners/east, +/area/varadero/interior/security) "hDw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -11492,18 +9575,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hDA" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"hDH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) -"hDX" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "windsock"; @@ -11512,29 +9596,34 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"hEs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +"hEx" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/white, +/area/varadero/interior/security) +"hEB" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 7 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"hEv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/eastocean) -"hEN" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"hEF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory Storage"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/research) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"hEO" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "hET" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11543,57 +9632,67 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hFE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"hFl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "hFM" = ( /obj/structure/window_frame/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"hFU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "hGl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"hGz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"hGm" = ( +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hGF" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"hGZ" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/pontoon_beach) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" +"hHp" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"hHC" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/electrical) -"hHK" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "hHR" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -11605,25 +9704,17 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/security) -"hIo" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/varadero/interior/court) -"hJl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"hIh" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"hIu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/varadero/interior/security) +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "hJq" = ( /obj/structure/bed/chair{ dir = 4 @@ -11643,66 +9734,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"hJx" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "hJB" = ( /obj/structure/blocker/fog, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"hJO" = ( +"hJC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) +"hJK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"hKe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hJX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hKa" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "hKK" = ( /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"hLE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"hLF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +"hKQ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/area/varadero/interior/maintenance) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"hKX" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "hLI" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, @@ -11710,49 +9781,30 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood, /area/varadero/interior/administration) -"hLQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"hLY" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva{ +"hLO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"hLV" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"hMg" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/exterior/lz2_near) -"hMh" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"hMe" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) -"hMC" = ( -/obj/item/clothing/ears/earmuffs{ - layer = 3.1; - pixel_x = 2; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -11768,31 +9820,19 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastbeach) -"hMV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +"hMN" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"hNc" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) "hNq" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -11807,16 +9847,6 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"hOp" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -11829,51 +9859,78 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hPd" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) +"hPc" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) +"hPk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/sprays{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "hPq" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hPD" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"hPF" = ( -/obj/item/paper/crumpled, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"hPB" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/morgue) -"hQb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"hPI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"hPR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_x = 2; + pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hQc" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/area/varadero/interior/administration) -"hQl" = ( -/obj/structure/girder, -/turf/open/gm/dirt{ - icon_state = "desert3" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/exterior/eastbeach) -"hQo" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/wood, +/area/varadero/interior/library) +"hQh" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) +"hQy" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "hQP" = ( /obj/item/ammo_magazine/handful/shotgun/buckshot{ pixel_x = 4; @@ -11881,41 +9938,44 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hQV" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"hQY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"hSg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"hSE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hTg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hTh" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"hTo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/area/varadero/exterior/lz2_near) -"hRs" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; - dir = 4; - name = "plasma power generator" +/obj/item/storage/box/donkpockets{ + pixel_x = 5 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 18 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11925,96 +9985,57 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"hTQ" = ( -/obj/structure/airlock_assembly, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"hTX" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"hTZ" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"hUp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"hUs" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"hUx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/hall_SE) +"hUI" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"hUJ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "hUU" = ( /obj/structure/machinery/requests_console{ icon_state = "req_comp_open" }, /turf/closed/wall, /area/varadero/interior/cargo) -"hUY" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"hVL" = ( -/obj/item/stack/sandbags/large_stack{ - pixel_y = 4; - pixel_x = -12 - }, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz2_near) +"hVJ" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"hVP" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) +"hVR" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"hWA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) "hWG" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"hWP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/device/reagent_scanner{ + pixel_x = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hWZ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "hXe" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/knife{ @@ -12028,74 +10049,45 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hXq" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/digsite) -"hXv" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) +"hXk" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"hYp" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/maintenance) -"hZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"hXY" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"hYh" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hYV" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"hZD" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) -"iad" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"iah" = ( -/obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"iaj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/comms1) -"ias" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/obj/structure/machinery/landinglight/ds1/spoke{ - pixel_y = -5; - pixel_x = 13 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iao" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -7; + pixel_y = -11; + desc = "A chest... filled with the wildest riches!" }, -/turf/open/auto_turf/sand_white/layer1, +/turf/open/gm/dirt/desert_dug, /area/varadero/exterior/lz2_near) -"iat" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "iax" = ( /turf/open/gm/coast/south, /area/varadero/interior/oob) @@ -12107,12 +10099,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iaM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "iaO" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -12122,47 +10108,36 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ibi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"ibd" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/caves/east) -"ibo" = ( -/obj/structure/prop/broken_arcade, -/turf/open/floor{ - icon_state = "wood" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/library) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iby" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"ibP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) +"ibB" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"ibR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -12195,68 +10170,56 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"icn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"ico" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"icJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"icw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"icz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance/security) -"icM" = ( -/obj/structure/bed/chair{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"icF" = ( +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"icN" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/hall_NW) -"idn" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"icV" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"idd" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "idr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/wooden, @@ -12265,24 +10228,22 @@ "idw" = ( /turf/open/floor/wood, /area/varadero/interior/security) -"iet" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"ieu" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ifB" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"idI" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"idZ" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"ifG" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ifO" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -12312,54 +10273,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"igQ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"igU" = ( -/obj/item/roller{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/surface/table, -/obj/item/roller{ - pixel_x = 4; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"ihn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"iht" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ihC" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"igM" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"igW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"ihb" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/area/varadero/exterior/monsoon) +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -12375,141 +10301,96 @@ "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"iig" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"iir" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/kepler, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"iiX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - locked = 1; - name = "Underground Secure Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"ijo" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/shuttle{ - icon_state = "floor6" +"iik" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior_protected/vessel) -"ijO" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"iiE" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"iiF" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/varadero/interior/beach_bar) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ijX" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "ijZ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"ikd" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ikq" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/morgue) "iks" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"ilQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"ilZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Armory"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"imd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_N) -"imk" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"imu" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +"ikw" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"ikB" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/absinthe, +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/beach_bar) +"ily" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"ilP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) -"inj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"inN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ +"imH" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"inV" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"imS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"inX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, /obj/item/shard{ icon_state = "medium" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "ioc" = ( /obj/structure/surface/table/woodentable, /obj/item/evidencebag, @@ -12524,30 +10405,21 @@ /obj/structure/closet/medical_wall, /turf/closed/wall, /area/varadero/interior/medical) -"ior" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"ioA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +"ioB" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"ioO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"ipf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "ipi" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12559,18 +10431,12 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"ipl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ipw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "ipC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ @@ -12589,88 +10455,72 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iqv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"iqU" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"iqW" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - name = "Incendiary Ammunition Order"; - desc = "An order manifest for incendiary ammo that has yet to be filled out." - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) +"iqj" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"iqB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"iqS" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"irj" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redcorners" +"irs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/turf/open/floor/shiva/redcorners/west, /area/varadero/interior/security) -"irk" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"irw" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"isK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = 7; - pixel_y = 3 +"isy" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"isN" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"isV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/cargo) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "itb" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"itL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"ite" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/chapel) +"ito" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + pixel_x = -7; + pixel_y = 13 }, -/area/varadero/exterior/farocean) +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = -7 + }, +/obj/item/facepaint/lipstick/jade{ + pixel_x = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 @@ -12694,50 +10544,39 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"itZ" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -8; - pixel_y = 7 +"iub" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"iuN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"iuO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) "ivo" = ( /obj/structure/airlock_assembly, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ivD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"ivq" = ( +/turf/open/floor/shiva/red/east, /area/varadero/interior/hall_N) -"ivO" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"ivX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, @@ -12746,67 +10585,68 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/wood, /area/varadero/interior/court) +"iwv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"iwI" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "iwT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"iwV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"ixd" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"ixh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/pistol/vp78{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) "ixl" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"ixq" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) "ixr" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) +"ixt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "ixw" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"ixx" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"ixG" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"ixP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "ixQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"iyd" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) +"iye" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "iyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -12824,35 +10664,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"izi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"izl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"izs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) +"izk" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "izy" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -12860,34 +10675,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"izB" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"izC" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = -3 }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"izP" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"iAa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 @@ -12895,25 +10689,14 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"iAp" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) -"iAx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "iAE" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) +"iAN" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "iAP" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -12924,44 +10707,62 @@ "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) -"iBz" = ( +"iBk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/glass/pressurized_canister, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/technical_storage) +"iBA" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iBS" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"iBZ" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 5 }, -/area/varadero/interior/mess) -"iCy" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"iCj" = ( +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "iCB" = ( /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) +"iCP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"iDd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "iDn" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"iDE" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) "iDM" = ( /obj/structure/machinery/bot/medbot{ name = "FOXYBOT 3000"; @@ -12978,19 +10779,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEm" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Navigation Chamber" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"iEq" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iEz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"iEF" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/chunk, +/obj/item/trash/raisins, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) -"iFc" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -7; - pixel_y = -11; - desc = "A chest... filled with the wildest riches!" - }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/lz2_near) "iFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/guestpass{ @@ -13002,82 +10818,69 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"iFy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"iFK" = ( -/obj/structure/surface/table/reinforced/prison, +"iFF" = ( /obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" + pixel_x = 5; + pixel_y = 12 }, -/area/varadero/interior/technical_storage) +/obj/item/trash/barcardine, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"iFJ" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "iFQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"iFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"iGm" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/varadero/interior/court) -"iGM" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"iGS" = ( -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"iGY" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"iHg" = ( +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 }, -/area/varadero/interior/electrical) +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/hall_N) "iHh" = ( /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/security) +"iHy" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"iHz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "iHE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"iHN" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +"iHG" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/exterior/eastocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"iHL" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "iIc" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -13087,86 +10890,61 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pool) -"iIt" = ( +"iIh" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"iIt" = ( /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/varadero/interior/records) -"iIC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"iIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"iIW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) "iIY" = ( /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"iJa" = ( +"iJs" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"iJk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"iJu" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"iKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"iJU" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "pipe-j2" + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/bed{ + can_buckle = 0 }, -/area/varadero/interior/hall_SE) -"iLc" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/varadero/interior/maintenance/security) +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"iKg" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -13196,85 +10974,78 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iLz" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +"iLn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"iLC" = ( +/obj/item/paper/crumpled, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "iLD" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"iMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/prop/magazine/boots, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"iMc" = ( -/obj/structure/surface/rack, -/obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"iMp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"iMM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"iNh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"iMi" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"iMI" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Underground Command Center"; + req_access_txt = "100" }, -/area/varadero/interior/hall_SE) -"iNr" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"iNu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"iNw" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"iNz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"iNA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/security) -"iNE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"iNQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"iNV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 }, -/area/varadero/interior/mess) -"iNU" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/mirror{ + pixel_x = -32 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "iOi" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -13291,6 +11062,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/records) +"iOV" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"iOZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"iPn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "iPw" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -13303,154 +11088,119 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"iPH" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"iPI" = ( +"iPx" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"iQl" = ( -/obj/item/storage/firstaid, -/turf/open/floor/shiva{ +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iPG" = ( +/obj/structure/prop/souto_land/pole{ dir = 1 }, -/area/varadero/interior/morgue) -"iQr" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"iQs" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/chunk{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 5 +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/surface/table, -/turf/open/floor{ +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"iPY" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"iQS" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"iRw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 + health = 300 }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"iRR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/area/varadero/interior/hall_NW) -"iRZ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/area/varadero/interior/maintenance) -"iSi" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"iQe" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/disposals) -"iSz" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"iQI" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"iSC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/suit/storage/marine/veteran/dutch{ - layer = 3.1 - }, -/obj/item/clothing/under/gimmick/dutch, -/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; pixel_y = 8 }, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"iSO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -4; - pixel_y = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"iQZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"iRb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/item/storage/bible/booze{ - pixel_x = 10; - pixel_y = 2 +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"iRv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"iRw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"iRO" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"iSc" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"iSB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/morgue) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"iSL" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "iSW" = ( /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"iTd" = ( -/obj/structure/morgue{ +"iSX" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz2_near) +"iTs" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"iTM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"iTF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) +/obj/structure/closet/radiation, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "iTP" = ( /obj/structure/filingcabinet{ density = 0; @@ -13471,88 +11221,54 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iUx" = ( -/obj/structure/machinery/constructable_frame, +"iUr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"iUH" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) +/obj/structure/surface/rack, +/turf/open/floor/shiva/wred/southwest, +/area/varadero/interior/medical) +"iUM" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iVt" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"iVD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"iWf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) +"iVN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iVV" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "iWj" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"iWE" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_10" - }, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"iWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"iWm" = ( +/obj/item/device/camera, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"iWv" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"iWH" = ( +/obj/structure/catwalk{ + indestructible = 1 }, -/area/varadero/interior/administration) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "iWX" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"iWY" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/varadero/exterior/lz1_near) "iXy" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -13562,38 +11278,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"iXX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"iXC" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"iYb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -10; - pixel_y = 15 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"iXU" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "iYi" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 @@ -13603,47 +11297,21 @@ /obj/item/device/camera_film, /turf/open/floor/wood, /area/varadero/interior/security) -"iZj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"iZx" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "cargobay"; - name = "Cargo Bay Lock"; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"iZy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/cargo) -"iZH" = ( +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) +"iZJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) "iZP" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -13653,93 +11321,69 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iZT" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/obj/item/shard{ - icon_state = "medium" +"jad" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_NW) +"jag" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance) +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "jaF" = ( /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"jaL" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"jbh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"jbd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 1; + name = "LZ1 Pontoon Dock computer" }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_console) +"jbo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior/administration) -"jbR" = ( -/obj/item/device/flashlight/lamp/tripod{ - pixel_x = 7; - pixel_y = 18 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"jck" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) -"jcz" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"jcB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"jcC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) -"jcY" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"jdk" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) "jdm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"jdn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "jdu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13757,49 +11401,17 @@ "jek" = ( /turf/open/gm/coast/west, /area/varadero/exterior/eastocean) -"jeo" = ( -/obj/item/tool/mop, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jew" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jeB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jeT" = ( -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/caves/digsite) "jeW" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, @@ -13808,98 +11420,39 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/records) -"jfn" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/court) -"jfw" = ( +"jfs" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "jfA" = ( /obj/item/device/motiondetector/hacked, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"jfD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jfP" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"jgw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/ethanol{ - desc = "The beaker stares at you lecherously. Its contents... irresistible."; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"jgL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"jgQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"jfB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jgY" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/records) -"jhe" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"jhd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -13913,65 +11466,43 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"jhv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"jhK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"jhL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"jhM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +"jhR" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) -"jhW" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jhY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/maintenance/research) -"jif" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"jij" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/research) -"jjg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"jim" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jiT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -13980,80 +11511,32 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jjl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +"jjr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/wood, -/area/varadero/interior/records) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"jjt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "jju" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jjE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"jjN" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/interior/maintenance/north) -"jjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/maintenance/north) -"jjZ" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"jks" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"jlt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 +"jkn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "jmb" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -14067,28 +11550,40 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jnq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ +"jme" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "purple" + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"jmR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/item/implantcase/explosive{ + pixel_x = -3; + pixel_y = 3 }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"jnA" = ( +"jnv" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"jnx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -14100,13 +11595,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"joN" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/cable/heavyduty{ @@ -14114,6 +11602,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"joU" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/toilets) "joV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -14126,43 +11618,17 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jps" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "jpD" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves) -"jpM" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jpZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, +"jpT" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -14171,19 +11637,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"jqr" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "jqu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, @@ -14192,23 +11645,27 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"jqJ" = ( -/obj/structure/disposalpipe/segment, -/obj/item/key/cargo_train, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"jqK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +"jqz" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"jqD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"jqP" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"jrm" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -14222,158 +11679,80 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"jsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/security) -"jsh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"jrw" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) +"jsa" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "jsx" = ( /obj/item/prop/almayer/comp_open, /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"jsA" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 + }, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "jsG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jsO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"jts" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"jtx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"jty" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"jtH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"jtI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ +"jsK" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"jtU" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"jub" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; - icon = 'icons/turf/walls/hunter.dmi'; - icon_state = "globe"; - name = "Hunter Globe"; - pixel_y = 16 - }, -/turf/open/shuttle{ - icon_state = "floor6" + icon_state = "door_locked"; + locked = 1; + name = "\improper External Airlock" }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"juL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) "juW" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms3) -"jvh" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"jvc" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/area/varadero/interior/records) -"jvF" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"jvk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/area/varadero/interior/research) +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = -5; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "jwf" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jwy" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "purple" - }, +"jwo" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"jwS" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -14385,109 +11764,85 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jxi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"jyq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"jxq" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor{ +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"jxD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "asteroidfloor" + name = "\improper Theta-V Research Laboratory"; + req_access_txt = "100" }, -/area/varadero/exterior/lz1_near) -"jyw" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"jyn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Lobby"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"jyK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/demo_scanner{ pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"jzq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" + pixel_y = 8 }, -/area/varadero/interior/security) -"jzB" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/obj/item/device/reagent_scanner{ + pixel_x = -7; + pixel_y = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"jzH" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"jzJ" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_N) +"jzU" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/exterior/lz2_near) -"jzL" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "jzZ" = ( /turf/open/floor/carpet, /area/varadero/interior/library) -"jAx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"jAm" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table, +/obj/item/spacecash/c1000{ + pixel_y = 6 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"jAn" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"jBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"jBp" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -14495,81 +11850,66 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jCr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) "jCs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jCA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"jCE" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"jCN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jCt" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"jCx" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"jDe" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"jDO" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"jCC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"jCS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/administration) -"jDW" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/obj/structure/noticeboard{ - pixel_y = 32 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"jCX" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/shiva{ +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"jDE" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "greenfull" + pixel_x = 3 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"jEd" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"jEl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "jEv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -14589,102 +11929,58 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"jEZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"jFh" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"jFt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/wood/normal{ - dir = 8 +"jFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ + dir = 8 }, /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jFL" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/monsoon) -"jGk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +"jGg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"jGy" = ( +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/medical) -"jGm" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"jGz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"jGA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jGC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"jGH" = ( +/obj/item/tool/mop{ + pixel_x = -16; + pixel_y = 26 }, -/area/varadero/interior/maintenance/research) -"jGT" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"jGX" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"jHI" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 +"jHC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purple" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 3; + pixel_y = 2 }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -14698,22 +11994,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -11; - pixel_y = 16 +"jHN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"jHO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"jId" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"jIk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -9; - pixel_y = 13 +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 7 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -8 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "jJf" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/gm/coast/beachcorner/north_west, @@ -14722,20 +12029,10 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"jJp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) +"jJu" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -14745,43 +12042,26 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jJX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 1; - name = "\improper Underground Security Interrogation Observation"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"jKs" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"jKz" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" - }, +"jJP" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"jJT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"jKf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"jKi" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14812,39 +12092,35 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jLS" = ( +"jLa" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"jLr" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" + dir = 1 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"jLs" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/maintenance/north) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jMq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"jMr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"jNb" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"jMf" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"jMu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"jMY" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -14855,13 +12131,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"jNS" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/varadero/interior/medical) +"jNI" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "jNT" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable, @@ -14879,58 +12151,69 @@ /obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jNW" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"jNY" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) -"jOR" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jOh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/varadero/interior/administration) -"jPe" = ( +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"jOl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"jOM" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/varadero/interior/electrical) -"jPh" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_x = -2; - pixel_y = -3 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"jOP" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"jOW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms1) -"jPC" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"jPE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Sample Isolation"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"jPL" = ( +/obj/structure/prop/rock/brown, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14943,27 +12226,11 @@ "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"jQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) +"jQm" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -14974,49 +12241,57 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"jQG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/obj/item/clothing/head/fedora, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"jQM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"jQD" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"jQL" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"jRr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/research) -"jRu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"jRY" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"jSk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/hall_SE) +"jSm" = ( +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"jSI" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) "jSN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/woodentable{ @@ -15024,158 +12299,173 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jSP" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) -"jTi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"jTL" = ( -/turf/open/floor{ - icon_state = "bcircuit" +"jTD" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Hangar Power Substation"; + req_access = null }, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) +"jTE" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -3 + }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"jTJ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"jTO" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/technical_storage) +"jTP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"jUt" = ( -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jUc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"jUz" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jUB" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jUM" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"jUY" = ( -/obj/structure/bed/chair/hunter, -/turf/open/shuttle{ - icon_state = "floor6" +"jUL" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"jVl" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/hall_N) -"jVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"jUZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"jVm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/area/varadero/interior/security) -"jXn" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/administration) +"jVz" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jVF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"jWf" = ( +/obj/structure/barricade/wooden, +/obj/structure/safe/floor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jXj" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jYl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"jXr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"jXL" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"jXN" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/monsoon) +"jYm" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"jYJ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/administration) -"jYs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"jYX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/camera{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" +"jYQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/technical_storage) +/mob/living/simple_animal/mouse, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "jYZ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jZw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"jZg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"jZl" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "jZE" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -15202,130 +12492,137 @@ /obj/item/clothing/suit/storage/bomber/alt, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jZO" = ( -/obj/structure/pipes/vents/pump{ +"jZH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"kap" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"kaY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless{ - pixel_x = 7; - pixel_y = 9 +"jZJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_x = -2; + pixel_y = -3 }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -4; - pixel_y = 8 +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"jZW" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/administration) -"kbp" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"kab" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/disposals) +"kau" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"kax" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"kaS" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kca" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "kcn" = ( /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"kcE" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kcy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) -"kdf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"kcA" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"kdk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "kdq" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"kdV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) -"keb" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"keE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"kdr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor{ - icon_state = "wood" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"kef" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/library) -"keN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"keg" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"kel" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"keo" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/cargo) +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"keR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, @@ -15336,36 +12633,53 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kfj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +"kfe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kft" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Morgue"; + req_access_txt = "100" }, -/area/varadero/interior/medical) +/turf/open/floor/dark2, +/area/varadero/interior/morgue) +"kfv" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "kfG" = ( /turf/closed/wall, /area/varadero/interior/caves/east) -"kfJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit{ layer = 3.1 }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) +"kgo" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony/elevator1{ + pixel_y = 32 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kgp" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) +"kgq" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "kgw" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -15373,89 +12687,78 @@ "kgA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastbeach) -"kgC" = ( -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kgD" = ( +/turf/open/floor/shiva/wred/west, +/area/varadero/interior/medical) +"kgM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"kgQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, -/area/varadero/interior_protected/maintenance/south) -"khb" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"khs" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"khy" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"khB" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"kif" = ( -/obj/structure/ladder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/farocean) -"kin" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"khG" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"kiE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/maintenance) -"kiG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"khS" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -13; + pixel_y = 16 }, -/area/varadero/interior/security) -"kjp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/xenoburger{ + pixel_x = 5; + pixel_y = 7 }, -/turf/open/gm/dirt{ - icon_state = "desert3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"kix" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"kiJ" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"kjb" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"kje" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/eastbeach) +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15464,19 +12767,27 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"kjI" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +"kjF" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior/caves/east) +"kjO" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "kkc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"kkj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) "kkt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15489,108 +12800,96 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kkw" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"klf" = ( -/obj/structure/barricade/wooden{ +"klc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"klz" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"klT" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/research) +"kmW" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/interior_protected/caves/central) +"kmY" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"knu" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"knB" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"knO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"kli" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, +"kol" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"koq" = ( +/obj/item/paper, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"koZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"klu" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"klP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"klT" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/research) -"klY" = ( -/obj/item/cell/high, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/pontoon_beach) +"kpj" = ( +/obj/structure/surface/table, +/obj/item/inflatable{ + pixel_x = -5; + pixel_y = 9 }, -/area/varadero/interior/maintenance/north) -"kmb" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/inflatable{ + pixel_x = 6 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/item/inflatable{ + pixel_x = -1; + pixel_y = 7 }, -/turf/open/floor/shiva{ +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"kmo" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"kmu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_x = -24 }, -/area/varadero/interior/maintenance) -"kmI" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/technical_storage) +"kpA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/varadero/interior_protected/caves/central) -"kmW" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/interior_protected/caves/central) -"knN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"kpM" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, @@ -15609,57 +12908,16 @@ }, /obj/structure/platform_decoration/kutjevo, /obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/oob) -"knP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"kof" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"koZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/pontoon_beach) -"kpN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"kpS" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"kqe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +"kpO" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kpZ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "kqs" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/sand_white/layer1, @@ -15668,22 +12926,24 @@ /obj/structure/window/framed/colony, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"kqF" = ( +/obj/structure/cryofeed, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "kqN" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"kqQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" +"krB" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"krG" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) -"krl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) "krL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -15693,14 +12953,19 @@ /obj/item/paper, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"krP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"krO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ksc" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "ksf" = ( /obj/structure/machinery/light{ dir = 4 @@ -15711,13 +12976,21 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ksn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"kso" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -15734,39 +13007,36 @@ "ksX" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"ktN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"kul" = ( -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"kus" = ( +"ksY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"ktd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"ktq" = ( +/obj/structure/machinery/light, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"ktt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/hall_SE) -"kuE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"kun" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) +/obj/item/prop/almayer/comp_open, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "kuO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15774,30 +13044,19 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kuX" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"kvx" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"kvz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "kvC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"kvF" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Evidence Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "kvG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -15805,45 +13064,102 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"kvQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"kwa" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"kwo" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 1 +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"kwr" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) +"kwt" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) +"kwv" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/varadero/exterior/lz1_near) -"kvS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/exterior/comms4) -"kwB" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/largecrate/random/mini/wooden{ + desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." }, -/area/varadero/interior/hall_NW) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kwC" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"kwY" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/interior_protected/caves/central) -"kxU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"kxg" = ( +/obj/item/tool/minihoe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kxz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kxN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms2) +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"kxQ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"kxT" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "kxW" = ( /obj/structure/window/reinforced{ dir = 4; @@ -15871,17 +13187,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kyh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"kyb" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) "kyj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/south_west, @@ -15889,22 +13198,14 @@ "kyp" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"kyr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "kyz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"kyB" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/varadero/interior/medical) "kyD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, @@ -15912,52 +13213,34 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) -"kyI" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"kyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"kyL" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) "kyP" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kzo" = ( -/obj/structure/bed/chair{ +"kzf" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kzk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "kzp" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /obj/item/tool/weldingtool, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"kzy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "kzE" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/holywater, @@ -15967,25 +13250,22 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"kzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"kAl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) +"kzT" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kAm" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"kAv" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/hall_N) +"kAx" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "kAH" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -16004,6 +13284,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"kBg" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "kBo" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -16020,97 +13304,53 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"kBS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "kBZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/security) -"kCb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"kCy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"kCA" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"kCT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Lobby"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"kDd" = ( +"kCr" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"kCE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"kDh" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "kDk" = ( /obj/item/tool/screwdriver, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kDF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"kDs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"kEb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"kEs" = ( +/obj/structure/largecrate/random/mini/chest, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"kEz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"kDH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"kDJ" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "kEB" = ( /obj/structure/prop/invuln/static_corpse/afric_zimmer{ desc = "A card lays in his lap. 'Happy birthday, Steve. Here's to another fruitful year!'"; @@ -16120,44 +13360,22 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kEK" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"kEV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"kFn" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"kEE" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 }, -/area/varadero/exterior/lz2_near) -"kFH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/flare, -/turf/open/floor{ - icon_state = "asteroidwarning" +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, -/area/varadero/exterior/lz2_near) -"kFT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/item/clothing/head/hardhat/white{ + pixel_x = 2; + pixel_y = 17 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "kFV" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -16166,61 +13384,26 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"kGo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kGk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"kGm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/pontoon_beach/lz) "kGq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"kGB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"kGD" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/pontoon_beach) -"kGF" = ( -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/tool/pen/blue{ - pixel_x = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) "kGJ" = ( /turf/open/gm/coast/east, /area/varadero/exterior/eastocean) @@ -16228,6 +13411,43 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_NW) +"kHo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kHt" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security) +"kHA" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"kHK" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/phoronglass{ + amount = 32 + }, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"kHO" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "kIb" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -16251,46 +13471,92 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kIz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kIi" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"kIn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/beaker/ethanol{ + desc = "The beaker stares at you lecherously. Its contents... irresistible."; + pixel_y = 7 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kIx" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"kIF" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/area/varadero/interior/electrical) -"kIJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"kIM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 14 }, -/area/varadero/exterior/lz1_near) -"kIK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/storage/box/pillbottles{ + pixel_x = -4; + pixel_y = 7 }, -/area/varadero/interior/maintenance) -"kIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"kIP" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ dir = 4; - pixel_x = -16; - pixel_y = 13 + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"kIW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"kJk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Armory"; + req_access_txt = "100" }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"kJy" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"kKs" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kKG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "kKS" = ( /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) @@ -16307,80 +13573,53 @@ /obj/item/paper_bin, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"kLd" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/administration) -"kLA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) "kLF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"kLI" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "kMf" = ( /obj/structure/window/framed/colony/reinforced/tinted, /turf/open/floor/plating, /area/varadero/interior/security) -"kMi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"kMj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"kMn" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"kMt" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) -"kMy" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kME" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kMN" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" +"kML" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/varadero/interior/security) -"kMU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "red" +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) +"kMR" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "kNa" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -16388,75 +13627,69 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"kNe" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 14 - }, -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"kNN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"kOS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ +"kOl" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"kPj" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 + pixel_x = -24 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"kOs" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/mess) -"kPX" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno{ - pixel_x = -4; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"kOv" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kOL" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"kOR" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kPw" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"kPL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"kPM" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) "kPZ" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"kQw" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -16469,41 +13702,51 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kRp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kQL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) -"kRH" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/lz1_near) -"kRU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"kQT" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -10; + pixel_y = -9 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"kRt" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"kRG" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"kRH" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/exterior/lz1_near) +"kRQ" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 13; + pixel_y = 8 }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kSd" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -16512,60 +13755,22 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"kSz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kSD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"kSF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"kSN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"kSm" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/area/varadero/interior/comms3) -"kTo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kSA" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/blue/southwest, /area/varadero/interior/administration) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16577,44 +13782,44 @@ /obj/item/tool/pickaxe/silver, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kTD" = ( -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"kUa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"kTG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/varadero/interior/medical) -"kTI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) "kUj" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/random/toolbox, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kVp" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" +"kUq" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 }, -/area/varadero/interior/cargo) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kVd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"kVl" = ( +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kVn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -16622,15 +13827,6 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"kVE" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -16645,129 +13841,87 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kWf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"kVR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -4; + pixel_y = 8 }, -/area/varadero/exterior/farocean) -"kWB" = ( -/turf/open/shuttle/elevator/grating, -/area/varadero/interior/records) -"kWR" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"kWg" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"kWn" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"kWZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"kWo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/bedsheet{ + anchored = 1; + desc = "A console used by the Hunters for navigation purposes."; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Hunter Nav Console" }, -/area/varadero/interior/maintenance) -"kXn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"kWB" = ( +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/records) +"kWU" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -5 }, -/area/varadero/interior/cargo) -"kXA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"kWV" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"kXj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"kXP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1 +"kXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/cargo) +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"kXZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "blue" +"kYC" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/pontoon_beach/lz) +"kYK" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/administration) -"kYn" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"kZX" = ( /obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"kYF" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"kYM" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"kYN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"kZe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"kZg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/hall_NW) -"kZl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"kZn" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -16775,49 +13929,73 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lab" = ( +"lap" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 4 }, -/area/varadero/interior/maintenance/security) -"lat" = ( -/obj/item/device/camera, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/maintenance/north) -"laN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/obj/structure/barricade/handrail/wire{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"lax" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"laJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"laR" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"lbe" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/area/varadero/exterior/comms4) -"lbr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/area/varadero/interior/hall_N) -"lbK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"lbz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/pen/blue{ + pixel_x = 4; + pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -5; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lbD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "lbX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -16826,182 +14004,79 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"lch" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) "lci" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"ldr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"lck" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"lcn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"lcW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"lcY" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"ldc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "ldw" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"ldJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/hall_SE) -"leF" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"leG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ +"ldD" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"lep" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"leI" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"leO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = 3 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ler" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/shiva/wred/northwest, +/area/varadero/interior/medical) +"lft" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"lfM" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"lgi" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"lgn" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"leP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +"lgu" = ( +/turf/open/floor/asteroidwarning/east, /area/varadero/exterior/lz1_near) -"leU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"lfp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"lgb" = ( -/obj/structure/bedsheetbin, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"lgP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"lhm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/device/flashlight/lamp/candelabra{ - pixel_x = -6; - pixel_y = 22 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/administration) -"lhn" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"lhp" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"lhB" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "lhJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -17011,6 +14086,33 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) +"lhX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/encryptionkey/dutch, +/obj/item/device/encryptionkey/dutch{ + pixel_x = -6 + }, +/obj/item/device/encryptionkey/dutch{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/book/manual/marine_law{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "liq" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -17027,140 +14129,70 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"liM" = ( -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"ljt" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/north_research) -"ljx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"lkz" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +"lji" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/area/varadero/interior/chapel) +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lkH" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lkI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"llj" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"lmd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"lms" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"lmu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"lkN" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"lmS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"lkP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"llV" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"lma" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"lnw" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lmK" = ( +/obj/structure/machinery/computer/cameras, /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 2 +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"lne" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"lnm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/administration) -"lnG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"lnn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/hall_N) +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "lnO" = ( /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"loh" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/shiva{ - dir = 1 - }, +"lnY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) "loA" = ( /obj/structure/prop/structure_lattice{ @@ -17180,33 +14212,20 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"loQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"loW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"lpv" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"lpJ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bcircuit" +"lpi" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"lpK" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"lpT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_NW) "lqa" = ( /obj/item/tool/warning_cone{ pixel_x = -11 @@ -17216,6 +14235,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lqk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"lqp" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "lqF" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -17232,61 +14262,50 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lrp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/administration) -"lrR" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lsf" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"lsg" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/varadero/exterior/eastbeach) -"lss" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"lsu" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/hall_N) -"lsN" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"lsG" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lsN" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"lsR" = ( -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"lsT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"ltA" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"lto" = ( +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/area/varadero/interior/records) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"ltv" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "ltB" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -17294,45 +14313,30 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ltI" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper/research_notes/grant/high{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"ltW" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"lum" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"ltD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"ltV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/item/tool/pen/sleepypen{ + pixel_x = -4; + pixel_y = 4 }, -/area/varadero/exterior/pool) -"lun" = ( -/obj/item/device/mass_spectrometer, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/lighter/zippo/fluff{ + pixel_x = 7; + pixel_y = 2 }, -/area/varadero/interior_protected/maintenance/south) -"lur" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"luc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security Interrogation"; + req_access_txt = "100" }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "luu" = ( /obj/item/tool/warning_cone{ pixel_x = -20 @@ -17342,24 +14346,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"luz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -17368,57 +14354,50 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) +"luH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "luZ" = ( /obj/structure/closet/secure_closet/miner, /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"lvG" = ( -/obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"lvi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/bunks) -"lvS" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Research Chamber" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"lvC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 }, -/area/varadero/interior_protected/vessel) -"lvV" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 1; + pixel_y = 5 }, -/obj/structure/window/reinforced{ +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lvD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lwa" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "lwm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -17432,6 +14411,15 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"lww" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lxd" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "lxe" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -17445,243 +14433,106 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"lxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"lxs" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"lxy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"lxR" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"lxT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"lxI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/medical) -"lyp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"lxU" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov{ pixel_x = -3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6 }, -/area/varadero/interior/security) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"lxY" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"lyD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/administration) "lyP" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/comms4) -"lze" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"lzu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) "lzD" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"lzP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) "lzT" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"lzX" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -24; - indestructible = 1 +"lAO" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/maintenance/north) -"lAk" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"lAZ" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"lBf" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"lBw" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"lCK" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lBC" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/clothing/under/shorts/blue{ + pixel_x = -2; + pixel_y = -2 }, -/area/varadero/exterior/comms4) -"lDh" = ( -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/red{ + pixel_x = 2; + pixel_y = 2 }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) -"lDk" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"lDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lBY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"lDr" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/disposals) +"lCc" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"lCB" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"lDz" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" + dir = 8 }, -/area/varadero/interior_protected/vessel) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"lCD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) -"lDN" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"lDS" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"lEc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"lEm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"lEw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"lEM" = ( +"lEj" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" + dir = 6 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "lEV" = ( /obj/structure/barricade/handrail/wire{ dir = 8; @@ -17699,25 +14550,23 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"lEZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick/red{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "lFk" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"lFl" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/varadero/interior/cargo) -"lFr" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "lFA" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -17725,57 +14574,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lFE" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"lFI" = ( -/obj/structure/prop/structure_lattice{ +"lFH" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - health = 300 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/structure_lattice{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "hr_kutjevo"; + name = "support struts" }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"lFS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"lFT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) +"lFY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) +"lGs" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" + }, +/turf/open/floor/shiva/greencorners/north, +/area/varadero/interior/hall_SE) +"lGA" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -13; + pixel_y = -3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "lGD" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, @@ -17790,64 +14628,24 @@ }, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"lHH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"lIb" = ( -/obj/structure/bed, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"lId" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"lGV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"lIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) -"lIo" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"lIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 1; - name = "LZ1 Pontoon Dock computer" - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" + dir = 4 }, -/area/varadero/exterior/lz1_console) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -17855,125 +14653,139 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"lIT" = ( -/obj/structure/pipes/vents/pump{ +"lIQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lIU" = ( /obj/effect/spawner/random/attachment, /turf/open/floor/carpet, /area/varadero/interior/administration) -"lKS" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"lKV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"lLe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +"lJo" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/area/varadero/interior/research) -"lLq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"lJU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 3 }, -/area/varadero/interior/technical_storage) -"lLZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7 }, -/area/varadero/interior/hall_N) -"lMb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lKa" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior_protected/caves) -"lMl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lKi" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/administration) -"lMv" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"lKP" = ( +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 }, -/area/varadero/interior/hall_SE) -"lMB" = ( -/turf/open/floor{ +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; dir = 1; - icon_state = "asteroidfloor" + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/area/varadero/interior/comms1) -"lMD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/area/varadero/interior/hall_SE) -"lMP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"lKW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 4; + pixel_y = 4 }, -/area/varadero/interior/cargo) +/obj/item/device/camera{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"lLS" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lLU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" + }, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/court) +"lMH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"lMX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials/random{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_y = 9 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"lNa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "lNb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lNd" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) +"lNg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "lNw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed{ @@ -17981,6 +14793,15 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) +"lNI" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"lNJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "lNL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -17989,43 +14810,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"lNX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"lOc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"lPj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ +"lOy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/oob) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "lPk" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 1; @@ -18033,12 +14826,28 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"lPq" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +"lPn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/area/varadero/interior/morgue) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"lPA" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"lPP" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -18052,78 +14861,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lQA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"lQO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/varadero/interior/mess) -"lQW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lRk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"lRw" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) -"lRy" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) "lRz" = ( /obj/item/ammo_casing{ icon_state = "casing_7_1" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"lRU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "purplecorners" - }, -/area/varadero/interior/research) -"lSg" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) "lSG" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"lTb" = ( +"lSP" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" + dir = 1 }, -/area/varadero/interior/court) +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"lTh" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"lTk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "lTv" = ( /obj/item/tool/warning_cone{ pixel_x = -13; @@ -18134,50 +14911,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lTR" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"lUe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"lUG" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"lUT" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/varadero/interior/mess) -"lVa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/interior/comms1) -"lVc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -18187,17 +14920,14 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lVh" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "lVB" = ( /obj/item/device/camera, /turf/open/floor/wood, /area/varadero/interior/security) -"lVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) "lVQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, @@ -18231,37 +14961,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lWh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"lWo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"lWB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "lWJ" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -18269,55 +14968,53 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lXc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"lWZ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lXv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"lXT" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"lXx" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"lXB" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"lYi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"lXQ" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/eastbeach) +"lYm" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "lYo" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -18325,24 +15022,16 @@ "lYr" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"lYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) "lYF" = ( /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lYQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lYK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "lZa" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -18352,16 +15041,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "lZh" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -18374,15 +15053,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lZR" = ( -/obj/structure/bed/chair{ +"lZB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"lZT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "lZU" = ( /obj/item/ammo_casing/shell{ dir = 10; @@ -18391,34 +15071,16 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/security) -"map" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lZZ" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/varadero/interior/library) +"mai" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"mau" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"maN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"maQ" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "mbf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/pwine{ @@ -18435,75 +15097,22 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"mbt" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"mbu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"mca" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"mcp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" +"mbm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/exterior/eastbeach) -"mcr" = ( -/obj/structure/machinery/light, -/turf/open/floor{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"mbz" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"mcs" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "mcB" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/lightstick/red/spoke/planted{ @@ -18531,78 +15140,47 @@ /obj/item/device/flashlight, /turf/open/floor/wood, /area/varadero/interior/administration) -"mdg" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz2_near) -"mdj" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mdy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"mdL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"mdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) +"mdk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "mdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/maintenance/south) -"mey" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = 1; - pixel_y = 6 +"mek" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mel" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"meG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"meH" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + indestructible = 1; + unacidable = 1 }, -/area/varadero/interior/laundry) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"meR" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "meS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -18613,12 +15191,76 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"mfj" = ( +/obj/structure/closet/crate/construction, +/obj/item/grown/log, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"mfp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"mfv" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"mfL" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mfV" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"mfY" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"mgh" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"mgl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "mgq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /obj/item/weapon/gun/rifle/m41a, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"mgr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"mgt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"mgM" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"mgN" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "mgT" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/dirt, @@ -18627,33 +15269,26 @@ /obj/structure/barricade/wooden, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"mhm" = ( -/obj/item/ammo_magazine/smg/nailgun, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"mhj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/varadero/interior/research) -"mio" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"mid" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"mig" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "miy" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -18661,114 +15296,38 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"miF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"miP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"miR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/dock_control) -"miT" = ( -/obj/item/stool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"miU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"mjA" = ( +"miD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"mke" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/largecrate/random/mini/wooden{ - desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"mkn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"mkt" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"mlN" = ( -/obj/vehicle/powerloader/ft, -/turf/open/shuttle/elevator/grating, +"miI" = ( +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"miL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"mlR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" +"mjP" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/medical) -"mlT" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mkz" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"mkL" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"mlw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -18776,10 +15335,21 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mlN" = ( +/obj/vehicle/powerloader/ft, +/turf/open/shuttle/elevator/grating, +/area/varadero/interior/hall_N) +"mlV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mmp" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/court) "mmq" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -18794,6 +15364,17 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"mmH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "mmO" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -18808,12 +15389,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "mnm" = ( /obj/structure/window/reinforced{ dir = 4; @@ -18849,6 +15424,9 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) +"mnJ" = ( +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/morgue) "mnL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -18868,18 +15446,13 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"mos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"moE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 4 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "moH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/prop/invuln/overhead_pipe{ @@ -18904,250 +15477,125 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"mpn" = ( -/obj/item/weapon/baton, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) -"mpH" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"moT" = ( +/obj/structure/prop/mech/drill, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"mpq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mpv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "mpL" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mqe" = ( -/obj/structure/cryofeed, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"mqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ +"mpR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"mrd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"mrC" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" + name = "Television set"; + network = null; + pixel_x = 1; + pixel_y = 6 }, -/area/varadero/exterior/lz1_near) -"mrP" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 + pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"mqv" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mqQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"mrg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) "mrR" = ( /obj/effect/decal/cleanable/blood, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"mrT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "mrY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"msj" = ( -/obj/structure/prop/rock/brown, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"msx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"mtp" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"mtx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +"mtA" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"mtB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "mtJ" = ( /obj/structure/barricade/wooden, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"mtN" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "mtT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"mtU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"mux" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"muE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"muF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"muY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"mve" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"mus" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/effect/landmark/corpsespawner/security, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 }, -/area/varadero/interior/security) -"mvi" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"muI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) -"mvv" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"mvA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mvI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"mvO" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +"mvu" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"mwa" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "mwd" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"mwm" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -19156,31 +15604,33 @@ /obj/structure/closet/crate/supply, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"mwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/stack/cable_coil/cut{ - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "blue" +"mwF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "mwI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) +"mxm" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"mxu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "mxv" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mxx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -19193,42 +15643,27 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"myj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"mym" = ( -/obj/structure/lamarr, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"myo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"mzf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"myd" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"myt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"myA" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"mzd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -19239,26 +15674,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"mzI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "mzJ" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -19277,79 +15692,27 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mzT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"mAm" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"mAB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" +"mAH" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"mBl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"mAP" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"mAX" = ( -/obj/structure/prop/dam/van{ - desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; - icon_state = "crawler_crate_wy"; - name = "crawler"; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"mBG" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"mCe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mCx" = ( +"mBB" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" + dir = 10 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"mBX" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/technical_storage) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) @@ -19366,6 +15729,11 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"mCU" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "mCX" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -19385,26 +15753,38 @@ "mCZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/research) -"mDl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"mDi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_x = 4; + pixel_y = 13 }, -/area/varadero/interior/chapel) +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "mDm" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"mEs" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"mEy" = ( +"mDA" = ( +/obj/structure/bedsheetbin{ + pixel_y = 4 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"mDT" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 @@ -19414,99 +15794,75 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"mEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"mEB" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"mEs" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"mEt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/electrical) +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "mED" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"mFY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"mGb" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"mHa" = ( -/obj/item/tank/anesthetic, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"mHh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mHM" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"mFr" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"mFy" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"mFS" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/oob) -"mIG" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mGG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/security) -"mIL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"mHA" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"mHI" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mId" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) -"mIQ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"mIn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"mII" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -19522,79 +15878,99 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) +"mJa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "mJe" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"mJh" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"mJw" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +"mJv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/court) "mJH" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"mJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mJR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "mKb" = ( /obj/structure/sign/safety/medical, /turf/closed/wall, /area/varadero/interior/medical) -"mKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"mLg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"mLt" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 +"mKc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"mKe" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "red" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/security) -"mLB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mKg" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"mLu" = ( +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/morgue) "mLJ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"mLU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"mMi" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"mMo" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "mMu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, @@ -19603,234 +15979,116 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"mMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) "mMJ" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"mMX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, +"mMP" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"mOe" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"mMZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mNm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"mNO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mNT" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mOx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"mOo" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"mOG" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mOO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" + icon_state = "chair_alt" }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"mPf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) -"mPk" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"mPl" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"mOB" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"mPA" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/maintenance) -"mPI" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"mPD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"mPT" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"mQL" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"mQV" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"mPW" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"mPX" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"mQC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"mQF" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/north_research) -"mQG" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +"mRm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/library) -"mRs" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" - }, -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"mRL" = ( -/obj/item/paper/crumpled/bloody, -/turf/open/floor/shiva{ +"mRy" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/area/varadero/interior/morgue) -"mRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"mRC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/administration) +/obj/structure/bed/chair{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "mSa" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"mSf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"mSr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"mSD" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"mSS" = ( -/obj/structure/prop/invuln/minecart_tracks{ +"mSI" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "mTD" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"mUg" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) "mUv" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -19848,24 +16106,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mUz" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/eastbeach) -"mUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mVc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -19895,231 +16135,222 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"mVF" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"mVN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"mVS" = ( -/turf/open/floor/shiva{ +"mVq" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"mVE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"mVL" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"mWr" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "bluefull" + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"mVY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mWC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 4 }, -/obj/item/clothing/under/shorts/grey, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/tool/plantspray/pests/old/phosmet{ + pixel_x = -6; + pixel_y = 14 }, -/area/varadero/exterior/pool) -"mXs" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/weapon/wirerod{ + pixel_x = 8 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"mWE" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"mXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = 13 }, -/area/varadero/interior/court) -"mXO" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"mWN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 }, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -9 +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 }, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"mWQ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/interior/hall_N) -"mXV" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mXj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"mXN" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"mXP" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Palm Airfield" }, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"mXR" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"mXS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/camera, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) -"mYd" = ( +"mXX" = ( /obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"mYA" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"mYR" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"mYp" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"mYW" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" +"mYu" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/area/varadero/interior/cargo) -"mZi" = ( -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/area/varadero/interior/court) -"mZk" = ( +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/administration) +"mYO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"mYP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 10 }, -/area/varadero/interior/maintenance/security) -"mZC" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"mYQ" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" +/turf/open/floor/shiva/floor3, +/area/varadero/interior_protected/caves/central) +"mZl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/technical_storage) +"mZy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/peach, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mZA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"mZB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) "mZH" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"mZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"nak" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/eastbeach) -"nau" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"nbA" = ( +"nay" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"naZ" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"nbq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) +"nbC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/security) +"nbN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/tool/stamp, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"nbQ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "ncd" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ncg" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"nch" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "ncn" = ( /obj/item/trash/cheesie, /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"ncu" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "ncv" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -20152,40 +16383,58 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"ndp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"ndi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"nds" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"ndA" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"ndG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "squareswood" + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"ndJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"nen" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "neq" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"new" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"nex" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "neD" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -20196,82 +16445,46 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"neU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"ngg" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/hall_SE) +"ngE" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"ngJ" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ngR" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"nfk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"nfv" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"nfX" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"nfZ" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"ngg" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/hall_SE) -"ngm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"ngY" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 5; + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"nht" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ngC" = ( -/obj/structure/largecrate/random/mini/chest, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"ngY" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 5; - pixel_y = 6 + pixel_y = -8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nhE" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "nhI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -20294,6 +16507,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"nhO" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "nhX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -20313,35 +16529,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"nhY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"nih" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/hall_N) @@ -20351,12 +16538,34 @@ /obj/item/device/floor_painter, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"niF" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" +"niD" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"niP" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"njg" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "njC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -20368,49 +16577,95 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"nkd" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 +"njL" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance/north) +"nkc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"nki" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nkj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"nkq" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +"nko" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior_protected/vessel) +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"nma" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = 3; - pixel_y = 17 +"nkW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/maintenance) +"nlm" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"nlr" = ( +/obj/structure/lamarr, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"nlw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"nlx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 9 + }, +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"nlG" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"nms" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ pixel_x = -4 @@ -20430,83 +16685,61 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nmQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"nnb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"nni" = ( +"nmM" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"nnk" = ( -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"nnt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + dir = 9 }, -/area/varadero/interior/cargo) -"nnw" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"nnj" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nnn" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 }, -/area/varadero/interior/hall_N) -"nnF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"nnP" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"nnU" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) "noj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"noC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) "noR" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"npi" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"noY" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/mirror{ + pixel_y = 28 }, -/area/varadero/interior/maintenance/north) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nps" = ( +/obj/structure/closet/crate/construction, +/obj/item/storage/belt/utility/full, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) "npF" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, @@ -20521,54 +16754,93 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"nqc" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) "nqf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"nqN" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/technical_storage) +"nqk" = ( +/obj/structure/bed/chair/hunter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"nrd" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"nsc" = ( +"nrb" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"nrf" = ( +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"nrn" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"nrv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nrx" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/varadero/interior/maintenance) -"nsl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -9 + }, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"nry" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"nrR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/electrical) -"nsn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) +"nsz" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "nsN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) +"nsY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"nsZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "nti" = ( /turf/closed/wall/r_wall, /area/varadero/exterior/lz2_near) @@ -20588,171 +16860,144 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"ntw" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"nuv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ntA" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"ntR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Lobby"; + req_access_txt = "100" }, -/area/varadero/interior_protected/maintenance/south) -"nuQ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"ntU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"nuh" = ( +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"nvv" = ( -/obj/structure/blocker/fog, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"nwi" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"nuA" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"nvq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "nwq" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nwV" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +"nxk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +/obj/item/stack/sheet/glass{ + amount = 30 }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"nxG" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"nxM" = ( +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/medical) -"nxl" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"nxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "nxW" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/medical) -"nyJ" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"nzb" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"nzd" = ( +"nxX" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"nyz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"nzr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/varadero/interior/mess) -"nzS" = ( +/obj/structure/closet/crate, +/obj/item/trash/crushed_cup, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"nzW" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nAk" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "nAq" = ( /turf/open/shuttle/elevator, /area/varadero/interior/records) +"nAN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) -"nBl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"nBD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"nBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"nBe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/interior/hall_NW) -"nCl" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"nBt" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/exterior/lz2_near) -"nCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nBA" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"nBL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"nBY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_SE) +"nCf" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"nCu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) @@ -20760,6 +17005,16 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/research) +"nCW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"nDa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "nDk" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -20770,17 +17025,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"nDC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) +"nDK" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20791,122 +17038,102 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"nEp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"nEE" = ( -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -5 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +"nDR" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/trash/crushed_cup, +/obj/item/prop/magazine/dirty/torn, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"nDY" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "nEY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nFf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"nFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"nFp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"nFj" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/hall_NW) +"nFK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/swcaves) +"nFL" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/pillbottles{ + pixel_x = -7; + pixel_y = 6 }, -/area/varadero/interior/caves/north_research) -"nFy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/item/storage/pill_bottle/packet/bicaridine{ + pixel_x = 6; + pixel_y = -2 }, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"nFX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/dirt, +/area/varadero/exterior/lz2_near) +"nGj" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 }, -/area/varadero/interior_protected/vessel) -"nFB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"nGk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/lz1_near) -"nFD" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"nGu" = ( +/obj/item/fuel_cell{ + pixel_x = 4; + pixel_y = 22 }, -/area/varadero/exterior/pontoon_beach) -"nFH" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"nGN" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"nFK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/swcaves) -"nFX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/dirt, -/area/varadero/exterior/lz2_near) -"nGE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"nGS" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms3) -"nHk" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"nGY" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "nHy" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -20916,35 +17143,31 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"nHA" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"nHC" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"nHH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 +"nHG" = ( +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"nHP" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"nIf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) +"nIn" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"nIE" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -20952,53 +17175,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"nIN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "nIR" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"nJg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "nJn" = ( /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"nKd" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"nKf" = ( -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"nKr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/sprays{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"nJM" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "nKy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -21007,76 +17218,90 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"nKR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"nKU" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"nLi" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/exterior/monsoon) -"nLw" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"nLz" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"nLA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/research) -"nLH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/disposals) +"nLF" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) +"nLL" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/area/varadero/exterior/eastbeach) -"nLI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"nMA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/area/varadero/interior/maintenance) -"nMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/area/varadero/interior/medical) +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"nME" = ( +/obj/structure/safe, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/pwine, +/obj/item/storage/box/stompers, +/turf/open/floor/wood, +/area/varadero/interior/research) "nMJ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"nMT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" +"nMW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"nMZ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"nNv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) "nNz" = ( /obj/structure/machinery/light{ dir = 4 @@ -21088,36 +17313,14 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nNZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"nOg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - icon_state = "door_locked"; - id = "engine_electrical_maintenance"; - locked = 1; - name = "Underground Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"nOj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"nNN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/station_alert{ @@ -21125,11 +17328,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"nOB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "nOI" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) +"nOJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "nOM" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21142,13 +17362,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"nOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) "nOQ" = ( /obj/structure/safe/floor{ pixel_x = 7; @@ -21157,50 +17370,6 @@ /obj/item/tool/lighter/zippo/gold, /turf/open/floor/carpet, /area/varadero/interior/research) -"nPx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"nPE" = ( -/obj/structure/safe, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/pwine, -/turf/open/floor/wood, -/area/varadero/interior/research) -"nPG" = ( -/obj/structure/surface/table, -/obj/item/inflatable{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/inflatable{ - pixel_x = 6 - }, -/obj/item/inflatable{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "nPI" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -21210,23 +17379,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"nPK" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"nPR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +"nQh" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/eastbeach) "nQo" = ( /obj/structure/machinery/conveyor, /obj/structure/largecrate/random, @@ -21239,217 +17394,117 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"nQH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"nQR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"nRk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/med_large_stack, -/obj/item/trash/boonie, -/turf/open/floor/shiva{ - icon_state = "floor3" +"nQP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"nRy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/mess) -"nRH" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/interior/maintenance/north) -"nRP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/item/cell/high, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"nRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"nRU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +"nRC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 }, -/area/varadero/exterior/eastbeach) -"nRW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nSi" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"nSO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "nSP" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/medical) -"nTj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) +"nTf" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"nTh" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"nTi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "nTG" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_SE) -"nTH" = ( -/obj/structure/bed/chair/comfy/orange{ - buckling_y = 9; - dir = 8; - pixel_y = 9 - }, -/obj/item/device/megaphone{ - layer = 2; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/hazardvest{ - desc = "It oozes authority, prestige, and sick summer vibes."; - name = "life guard's vest"; - pixel_x = 10; - pixel_y = -9 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) "nTS" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"nTX" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"nUf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"nVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"nTW" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Pontoon Dock" }, -/area/varadero/interior/maintenance) -"nVn" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating/icefloor, +/area/varadero/exterior/lz1_near) +"nUd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "warnplate" - }, -/area/varadero/interior/disposals) -"nVv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 + icon_state = "pipe-c" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nUo" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/area/varadero/exterior/comms4) -"nVy" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"nUB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"nUC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/morgue) -"nWg" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"nVm" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"nWi" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"nWm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"nWs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "nWS" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -21460,98 +17515,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"nXU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, /area/varadero/interior/records) -"nXR" = ( -/obj/structure/machinery/landinglight/ds2{ +"nYm" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"nXY" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - pixel_y = 14 +"nYo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_x = -6; + pixel_y = 10 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) -"nYi" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior_protected/caves/central) -"nYx" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"nYy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"nYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"nZd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"nZi" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -21560,25 +17545,47 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"nZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"oam" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"nZo" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"nZG" = ( +/obj/item/device/flashlight/slime{ + mouse_opacity = 0; + invisibility = 1; + indestructible = 1; + alpha = 0 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nZL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"nZN" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"oaD" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"oaE" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "oaO" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/storage/firstaid/regular{ @@ -21587,82 +17594,64 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"oaR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" +"oaX" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"obm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"obg" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"obq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "obr" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"obN" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -32; - pixel_y = -18; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/exterior/lz1_near) -"obS" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ocr" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ocz" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"ocu" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, -/area/varadero/exterior/lz2_near) -"ocQ" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"ocE" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"ocM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"odt" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -21671,32 +17660,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"odD" = ( -/obj/structure/bed/chair, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"odZ" = ( -/obj/structure/closet/toolcloset, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"oef" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "oep" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -21705,41 +17668,38 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"oeF" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"oeM" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + desc = "For all your soapy needs."; + icon_state = "tray"; + name = "soap dish"; + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 3; + pixel_y = 7 }, -/area/varadero/interior/maintenance) -"oeO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - pixel_y = 9 +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 2; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/soap/weyland_yutani{ + desc = "Teetering at the brink! A life's thread, about to be cut short."; + pixel_x = 5; + pixel_y = 15 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/white, +/area/varadero/interior/laundry) +"ofb" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"ofI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/co2_cartridge{ - pixel_x = 13; - pixel_y = 7 - }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) "ofJ" = ( /obj/structure/shuttle/engine/router{ dir = 4; @@ -21747,14 +17707,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"oga" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "ogj" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -21768,13 +17720,29 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ogq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"ogw" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_N) +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"ogB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"ogU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ogW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -21783,153 +17751,79 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ohi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"ohC" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner2/south_west, -/area/varadero/exterior/pontoon_beach) -"ohM" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"oiB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ - pixel_x = -10; - pixel_y = 15 - }, -/obj/item/reagent_container/blood/empty{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/storage/box/cups{ +"oha" = ( +/obj/item/paper/crumpled/bloody, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"oij" = ( +/obj/item/ammo_magazine/handful/shotgun/buckshot{ pixel_x = -13; - pixel_y = 3 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"oiM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"ojm" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ojF" = ( -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"ojG" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_y = 12 }, -/area/varadero/interior/maintenance) -"ojJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"oiK" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"oke" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"okf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/maintenance/north) -"okI" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/area/varadero/interior/maintenance/security) -"okJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"oiV" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"ojQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"okW" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"oll" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"olt" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_10" }, -/area/varadero/interior/maintenance/security) -"ola" = ( -/obj/structure/machinery/power/apc{ +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"olB" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz2_near) -"olD" = ( -/turf/open/floor{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"olP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -21938,67 +17832,78 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"omj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"omW" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "onj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"onr" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ooe" = ( -/obj/structure/surface/rack, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"onC" = ( +/turf/open/gm/dirt/desert2, /area/varadero/interior/maintenance/north) +"ooo" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"ooq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) "oos" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"opd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood{ - icon_state = "wood-broken3" +"ooC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/beach_bar) -"opP" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_x = -5; + pixel_y = 6 }, -/obj/item/shard{ - icon_state = "medium" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ooZ" = ( +/obj/item/device/flashlight/flare, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"opa" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"opi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/device/cassette_tape/ocean{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/device/cassette_tape/pop2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"opD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"opI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pool) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "opW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/stack/sheet/wood{ @@ -22017,25 +17922,50 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oqh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"oqf" = ( +/obj/structure/surface/rack, +/obj/item/pizzabox/meat, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oqg" = ( +/obj/item/stool, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"oqv" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "yellowfull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) -"orb" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"oqx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 5; + pixel_y = 16 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"orj" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -22057,92 +17987,72 @@ }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"orT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) "osn" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"osr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"ost" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) +"osp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "osE" = ( /obj/structure/largecrate/random/barrel, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"osP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "osX" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) +"ott" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"otu" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "otH" = ( /obj/structure/closet/crate/construction, /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"otL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) +"otN" = ( +/obj/item/cpr_dummy, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"ouo" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) -"ouP" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"ouV" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"ovp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +"ove" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) @@ -22156,20 +18066,46 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"owk" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"owb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"owg" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"owD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) +"owO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "owY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -22195,16 +18131,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oxa" = ( -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -22215,35 +18141,21 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oxA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +"oxo" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "colony_sec_armory"; + name = "Secure Armory" }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"oxR" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"oyb" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"oyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) +"oyk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "oyl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22252,20 +18164,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"oyv" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz2_near) -"oyx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) +"oyw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "oyT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -22288,39 +18190,25 @@ }, /turf/open/floor/plating, /area/varadero/interior/security) -"ozz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"ozC" = ( -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"ozD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"ozb" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/trash/plate{ + pixel_y = 7 }, -/area/varadero/exterior/comms4) -"oAm" = ( -/obj/structure/toilet{ +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"ozu" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"oAs" = ( +/obj/structure/girder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/coast/beachcorner2/north_east, @@ -22343,42 +18231,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) +"oAN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "oBq" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"oBG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/court) "oBJ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -22386,66 +18247,42 @@ /obj/item/tool/soap/syndie, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"oBP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"oBQ" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oBR" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"oCi" = ( -/obj/item/shard{ - icon_state = "medium"; - name = "ice shard" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oCN" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, +"oBO" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/security) -"oCR" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"oBV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) +"oCA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"oCT" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -24; + indestructible = 1 }, -/area/varadero/exterior/lz1_near) -"oDz" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"oDi" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"oDr" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -22453,12 +18290,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"oDN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" +"oDM" = ( +/obj/structure/machinery/landinglight/ds1/spoke{ + pixel_y = -5; + pixel_x = -13 }, -/area/varadero/interior/electrical) +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) "oDS" = ( /obj/structure/sign/safety/hazard{ pixel_x = 15 @@ -22475,18 +18314,16 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oDX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"oDV" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "oEc" = ( /obj/structure/filingcabinet{ density = 0; @@ -22517,68 +18354,186 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oET" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/security) -"oEX" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"oEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"oEE" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 }, -/area/varadero/interior_protected/maintenance/south) -"oFd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = 10; + pixel_y = 20 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "greenfull" + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"oEK" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"oEN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/green/southwest, /area/varadero/interior/hall_SE) -"oFq" = ( -/turf/open/floor/shiva{ +"oER" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Showers"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"oET" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/security) +"oEY" = ( +/obj/structure/girder/displaced, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oEZ" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "green" + health = 80 }, -/area/varadero/interior/mess) -"oGc" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"oFf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"oFh" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"oGq" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_SE) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "oGv" = ( /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"oGU" = ( +/obj/item/prop/helmetgarb/bullet_pipe{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_container/glass/fertilizer/l4z{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"oGX" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"oHb" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"oHf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"oHi" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "oHo" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"oIc" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_east, +"oHu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"oHP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/comms4) -"oIq" = ( +"oHT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"oIc" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_east, +/area/varadero/exterior/comms4) +"oId" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/hall_SE) -"oIC" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva{ +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"oIJ" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "yellowfull" + pixel_x = 24 }, -/area/varadero/interior/electrical) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "oJb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -22588,36 +18543,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oJm" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Hangar Power Substation"; - req_access = null - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"oJt" = ( +/obj/structure/catwalk, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) -"oJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"oJB" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"oJW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "oJX" = ( /obj/item/stack/sheet/metal, /obj/structure/shuttle/engine/heater{ @@ -22645,66 +18577,52 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"oKx" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oKy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"oLb" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"oLh" = ( +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = -3; + pixel_y = 3 }, -/area/varadero/interior_protected/vessel) -"oKN" = ( -/obj/item/weapon/gun/shotgun/pump, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"oLC" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 8; - icon_state = "red" + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/varadero/interior/hall_N) -"oLa" = ( -/obj/item/trash/barcardine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"oLG" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "oLM" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"oLV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -22718,123 +18636,224 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oMl" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oMs" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"oMZ" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" }, -/area/varadero/interior/hall_N) -"oNa" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"oNq" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"oOF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ +"oNH" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"oNY" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"oOa" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "purple" + climb_delay = 1; + layer = 2.99 }, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"oOH" = ( +/obj/structure/closet/toolcloset, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"oOK" = ( +/turf/open/floor/shiva/purple/southwest, /area/varadero/interior/research) -"oPb" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"oOQ" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"oOR" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/varadero/interior_protected/vessel) -"oPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) -"oPQ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + layer = 3.1 }, -/area/varadero/interior/caves/north_research) +/obj/item/clothing/under/gimmick/dutch, +/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ + pixel_y = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"oPj" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oPl" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"oPA" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oPP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "oPV" = ( /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"oRx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/eat, -/obj/item/trash/cheesie, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 +"oPX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"oQa" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/area/varadero/interior/cargo) -"oRB" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 +/turf/open/floor/wood, +/area/varadero/interior/library) +"oQD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = -2; - pixel_y = 6 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"oQI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oQS" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oRg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"oRv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "oRD" = ( /obj/structure/prop/rock/brown, /obj/structure/prop/invuln/lattice_prop, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"oSe" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"oRU" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oSs" = ( +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oSQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"oSS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "oSX" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/electrical) +"oTr" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "oTs" = ( /obj/structure/blocker/fog, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) +"oTx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "oTE" = ( /obj/item/tool/crowbar/red, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"oTX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"oTK" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"oTU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms1) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -22847,84 +18866,47 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"oUp" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"oUO" = ( +"oVj" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"oVm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"oVn" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"oVp" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"oVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redcorners" +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "oVt" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"oWf" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +"oVL" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_3_1" }, -/area/varadero/exterior/eastocean) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"oVV" = ( +/obj/structure/window/framed/colony, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/open/floor/dark2, +/area/varadero/interior/hall_N) "oWg" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"oWr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/varadero/interior/administration) +"oWj" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "oWs" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -22939,122 +18921,120 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"oWO" = ( -/obj/structure/toilet, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"oWU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/shuttle{ - icon_state = "floor6" +"oWK" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior_protected/vessel) +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) -"oXi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"oXm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +"oXl" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "oXo" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"oXp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ +"oXr" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "red" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"oXw" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1 - Pontoon Dock" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor, -/area/varadero/exterior/lz1_near) +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "oXC" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"oXZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"oXT" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"oYc" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/administration) -"oYB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"oYg" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"oYm" = ( +/obj/item/book/manual/detective, +/turf/open/floor/wood, +/area/varadero/interior/library) +"oYq" = ( +/obj/structure/surface/table, +/obj/item/prop/helmetgarb/flair_uscm, +/obj/item/storage/box/uscm_mre{ + pixel_x = -4; + pixel_y = 13 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"oYy" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "oYE" = ( /obj/structure/closet/crate, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oZw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"oZi" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, -/area/varadero/interior/hall_N) -"oZA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"oZk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oZC" = ( +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/evidencebag{ + pixel_x = 13; + pixel_y = 5 }, -/area/varadero/interior/maintenance/north) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "oZJ" = ( /obj/structure/fence, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"paq" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"paB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) +"oZY" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "pbd" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -23081,186 +19061,117 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"pbp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +"pbi" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) "pbt" = ( /turf/closed/wall, /area/varadero/interior/mess) -"pbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pbE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) -"pbM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/varadero/interior/mess) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "pbT" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"pco" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"pcH" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"pcK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"pdc" = ( -/obj/structure/largecrate/random{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pcx" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pcy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pdh" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "pdn" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"pdr" = ( -/obj/structure/surface/table, -/obj/item/trash/chips{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"pdK" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) -"pea" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/coast/beachcorner2/north_east, -/area/varadero/interior/caves/north_research) -"per" = ( +"pdo" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"peu" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"pdN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"pea" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/coast/beachcorner2/north_east, +/area/varadero/interior/caves/north_research) +"peg" = ( +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 }, -/area/varadero/interior/caves/east) -"peA" = ( +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"peq" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pfD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"pfL" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"pfR" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor{ - icon_state = "freezerfloor" +"pfH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"pfV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) +"pgh" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"pgm" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) "pgn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -23285,43 +19196,33 @@ }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"pie" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"phC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"phT" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/court) +"piI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/obj/item/tool/crowbar, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "pja" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/security) -"pjk" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"pjm" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = -25 - }, -/turf/open/shuttle{ - icon_state = "floor6" +"pjl" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior_protected/vessel) +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pjn" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -23329,15 +19230,12 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/carpet, /area/varadero/interior/library) -"pjs" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) "pjD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/eastocean) +"pjG" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) "pjH" = ( /obj/structure/surface/table, /obj/item/paper/janitor{ @@ -23346,20 +19244,25 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"pkh" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pkj" = ( /obj/item/tool/weldingtool, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"pkl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) "pku" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -23373,29 +19276,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"pkG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"pkT" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/varadero/interior/electrical) -"pkX" = ( -/obj/structure/disposalpipe/segment{ +"pky" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -23404,99 +19290,69 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"plm" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) -"plF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"plN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"plH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "plT" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pmh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pnp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"pnr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/toilets) -"pmM" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/exterior/monsoon) -"pmW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"pns" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"pnn" = ( -/obj/item/ammo_magazine/shotgun/slugs, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/research) -"pnL" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"pnt" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"pof" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/comms3) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/library) -"pot" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "pox" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -23508,127 +19364,108 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"poC" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 13; +"poG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"poE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"poU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, +/turf/open/floor/shiva/green/northwest, /area/varadero/interior/hall_SE) "ppl" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"ppw" = ( -/obj/structure/pipes/vents/pump{ +"ppD" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"pqf" = ( -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"pqC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"pqG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"pqn" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"pqy" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"pqz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/court) -"pqO" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"pqF" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"pqY" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"prb" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"prh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" + icon_state = "pottedplant_22" }, -/area/varadero/interior/medical) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "prl" = ( /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"pru" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "prC" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/eastbeach) -"prY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"prF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "green" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/hall_SE) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"psa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "psb" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = -13; @@ -23644,42 +19481,46 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"psk" = ( -/obj/structure/closet/secure_closet/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/varadero/interior/beach_bar) -"pth" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/gm/dirt, -/area/varadero/interior/maintenance/north) -"pti" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"psG" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance) -"ptp" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"psK" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = "brg" }, -/area/varadero/exterior/comms4) -"ptw" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"psV" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"pth" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/gm/dirt, +/area/varadero/interior/maintenance/north) +"ptl" = ( +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"ptn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -23688,83 +19529,51 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"ptM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"ptP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ptY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"pun" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/pontoon_beach) "puq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Treatment"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +"puv" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"puE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/medical) -"pvs" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"puO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"puQ" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"pvy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pwc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) +"pwH" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"pwJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "pxa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/ammo{ @@ -23775,75 +19584,80 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - dir = 1 +"pxP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"pxV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"pyz" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pya" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior_protected/maintenance/south) -"pAa" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"pzl" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"pzD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pAp" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/exterior/lz1_near) -"pAX" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"pAZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/phoronglass{ - amount = 32 - }, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/surface/table, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"pBb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"pAc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"pAg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) -"pBf" = ( -/obj/structure/prop/rock/brown{ - layer = 2 +"pAh" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"pAF" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"pAG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) +"pAI" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"pAM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "pBo" = ( /obj/structure/coatrack, /obj/item/clothing/head/fedora{ @@ -23852,77 +19666,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"pBx" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"pBK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/administration) -"pBS" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"pBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"pCc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"pCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"pCp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"pCO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/varadero/interior/electrical) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 2; @@ -23932,58 +19685,53 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/research) -"pCV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) "pDl" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"pDD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"pDW" = ( +"pDq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"pDr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pDt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "pDX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pEv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, +"pEd" = ( +/turf/open/floor/shiva/red/west, /area/varadero/interior/security) -"pEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pEm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pEp" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"pEW" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"pEY" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "pFd" = ( /obj/item/storage/pouch/construction, /obj/structure/prop/invuln/lattice_prop{ @@ -23993,36 +19741,28 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"pFF" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/limb, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"pFJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/atmos_alert, +/obj/item/circuitboard/machine/smes{ + pixel_x = -7; + pixel_y = 7 }, -/area/varadero/exterior/lz1_near) -"pFS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 13 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/technical_storage) "pGc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior/research) -"pGi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) "pGj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner/north_west, @@ -24030,6 +19770,9 @@ "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) +"pGx" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "pGJ" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) @@ -24037,93 +19780,70 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"pGS" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"pHn" = ( +/obj/structure/ladder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"pHp" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pHq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"pHL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"pGU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"pIe" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"pIj" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pIz" = ( -/obj/structure/surface/table, -/obj/item/trash/plate{ - desc = "For all your soapy needs."; - icon_state = "tray"; - name = "soap dish"; - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 3; - pixel_y = 7 +"pIt" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 2; - pixel_y = 11 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/obj/item/tool/soap/nanotrasen{ - desc = "Teetering at the brink! A life's thread, about to be cut short."; - pixel_x = 5; - pixel_y = 15 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"pIy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray/tricordrazine{ + pixel_x = -14; + pixel_y = 2 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/storage/large_holster/m39/full, /turf/open/floor/wood, /area/varadero/interior/security) -"pJf" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"pJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"pJp" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pIQ" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pIU" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pIV" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "pJs" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair{ @@ -24131,26 +19851,28 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"pJA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "pJF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"pJQ" = ( -/obj/item/book/manual/evaguide, -/turf/open/floor{ - icon_state = "wood" +"pJL" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/library) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"pJM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"pJY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "pKg" = ( /obj/item/book/manual/nuclear, /turf/open/floor/carpet, @@ -24159,57 +19881,88 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"pKC" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"pKD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/tool/stamp/clown{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/stamp/rd{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "pKK" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"pLp" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ +"pLe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "asteroidfloor" + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"pLV" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +"pLS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 3; + pixel_y = 2 }, -/area/varadero/interior/administration) -"pMG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -2; + pixel_y = -4 }, -/area/varadero/exterior/lz1_near) -"pNa" = ( -/obj/structure/catwalk, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"pMe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -8; + pixel_y = 3 }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"pMS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"pMX" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/sling, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24217,6 +19970,13 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"pNi" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "pNk" = ( /obj/effect/decal/cleanable/blood, /obj/structure/barricade/wooden, @@ -24229,136 +19989,118 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"pNJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"pNO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pNR" = ( /obj/effect/decal/cleanable/blood/drip, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) -"pNT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, +"pOx" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"pOC" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"pOH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"pOa" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior_protected/maintenance/south) -"pOg" = ( -/obj/structure/machinery/storm_siren{ +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"pPb" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pOz" = ( -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" + icon_state = "pipe-j2" }, -/area/varadero/interior/disposals) -"pOC" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"pPf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/security) +"pPH" = ( /obj/structure/surface/table, -/obj/item/prop/helmetgarb/flair_uscm, -/obj/item/storage/box/uscm_mre{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 }, -/area/varadero/interior/laundry) -"pPl" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"pPP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pQd" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz2_near) +"pQl" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pQp" = ( /turf/closed/wall/r_wall, /area/varadero/interior/technical_storage) -"pQw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"pQx" = ( /obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"pQF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pQE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/paint/black{ + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/obj/item/tool/wirecutters/clippers, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = -6; + pixel_y = 12 }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/technical_storage) -"pRa" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "pRb" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"pRl" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" - }, -/turf/open/floor/plating{ +"pRe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"pRk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - icon_state = "warnplate" + name = "\improper Underground Library"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/disposals) +/turf/open/floor/wood, +/area/varadero/interior/library) +"pRm" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pRs" = ( /obj/structure/prop/souto_land/pole{ dir = 8 @@ -24366,89 +20108,34 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"pRy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bible{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"pRP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_SE) -"pRR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, +"pRx" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"pRX" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) "pSg" = ( /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"pSy" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pSD" = ( -/obj/structure/bed/chair, +"pSt" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"pSK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"pTc" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"pTe" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle{ - icon_state = "floor6" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "pTg" = ( /obj/structure/machinery/light{ dir = 1 @@ -24456,32 +20143,6 @@ /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"pTs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/crew{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"pTI" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) "pTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24489,24 +20150,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pTQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) "pUi" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -24521,6 +20164,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) +"pUn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"pUE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"pUO" = ( +/obj/structure/computer3frame, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "pUW" = ( /obj/item/stack/tile/plasteel{ pixel_x = 4; @@ -24528,76 +20185,114 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"pVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ +"pUY" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"pVo" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"pVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"pVx" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/area/varadero/interior/research) -"pVz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"pVD" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "pVN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"pWm" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pXp" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +"pWe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"pWh" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"pWs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"pWy" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 8 }, -/area/varadero/interior/hall_N) -"pXG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"pWC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/stool{ + icon_state = "stool_alt" }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"pXL" = ( -/obj/structure/machinery/light{ - dir = 1 +"pWD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"pWX" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/north, /area/varadero/interior/hall_N) +"pXk" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lantern, +/obj/item/map/current_map, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"pXB" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"pXD" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pXN" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Engine Room" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pXR" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -24608,21 +20303,6 @@ "pYn" = ( /turf/closed/wall, /area/varadero/interior/records) -"pYt" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"pYv" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) "pYx" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24669,40 +20349,39 @@ /obj/item/ammo_magazine/handful/lever_action, /turf/open/floor/carpet, /area/varadero/interior/research) -"pYK" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +"pYY" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/monsoon) -"pYV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/mess) -"pZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"pZb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"pZh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"pZD" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -24715,20 +20394,34 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) +"qah" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qaX" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qaR" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qaW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "qaY" = ( /obj/structure/sign/safety/water, /turf/closed/wall, /area/varadero/interior/library) +"qbT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qbX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24736,48 +20429,27 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"qcC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"qcD" = ( -/obj/structure/bed/chair{ +"qcL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -10; - pixel_y = -9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_x = 24 }, -/area/varadero/interior/comms2) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) -"qdd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"qdJ" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/area/varadero/interior/records) -"qdk" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/comms3) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "qdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -24787,6 +20459,16 @@ /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/dock_control) +"qeb" = ( +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"qef" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) "qeh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -24824,28 +20506,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qeK" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"qfb" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = -4; - pixel_y = -5 +"qey" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"qeE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"qeG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) +"qeH" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"qeL" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qeW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_NW) "qfr" = ( /turf/open/gm/dirt, /area/varadero/exterior/comms4) @@ -24865,53 +20557,53 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"qfL" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 +"qfG" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"qgc" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/exterior/pool) +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"qgy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qgq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_N) -"qgR" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"qgQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "qhF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qhN" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) "qhO" = ( /obj/effect/spawner/random/tool, /turf/open/gm/dirt, @@ -24928,22 +20620,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qhZ" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qif" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/security) +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) -"qir" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) "qis" = ( /obj/item/paper{ pixel_y = -6; @@ -24954,43 +20642,30 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qiv" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"qiP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"qiR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/technical_storage) -"qjd" = ( /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/area/varadero/interior/laundry) -"qjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"qjR" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -25001,68 +20676,69 @@ /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qkF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qlj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +"qks" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qkz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/research) -"qlw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"qkZ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "qlx" = ( /obj/item/stack/tile/plasteel, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"qlW" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qlR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/mess) -"qmF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"qlY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"qmb" = ( +/obj/structure/bed/chair, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qmy" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"qmB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) -"qnf" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qna" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"qnm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 1; + name = "\improper Underground Security Interrogation Observation"; + req_access_txt = "100" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qnp" = ( /obj/item/shard{ icon_state = "large"; @@ -25071,18 +20747,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qnN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qnA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "qnW" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, @@ -25096,33 +20769,9 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"qoE" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) -"qps" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/varadero/interior/court) -"qpD" = ( -/obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "qpK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -25131,27 +20780,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qpZ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"qqs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"qqA" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, /obj/structure/machinery/door_control/brbutton{ @@ -25162,25 +20790,19 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz1_near) -"qqM" = ( -/obj/structure/largecrate/random/mini, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"qqR" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"qqT" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"qrv" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qrO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "qsb" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25194,29 +20816,34 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"qsh" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 +"qsq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"qsE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/security) -"qto" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security Interrogation"; - req_access_txt = "100" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"qsF" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 9; + pixel_y = 8 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -25225,20 +20852,23 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"qtQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"qtP" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qtY" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) @@ -25246,12 +20876,16 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"quP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"quy" = ( +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"quA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance/security) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "quR" = ( /obj/item/stack/sheet/metal, /turf/open/floor/wood, @@ -25260,100 +20894,57 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/administration) -"qvv" = ( -/obj/effect/landmark/corpsespawner/colonist, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/morgue) -"qvO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"qvQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) +"qvA" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) "qvS" = ( /turf/open/gm/coast/south, /area/varadero/exterior/eastocean) -"qwB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"qvV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"qwb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qwh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qwn" = ( +/obj/item/ammo_casing/shell{ + icon_state = "cartridge_1_1" }, -/area/varadero/interior/administration) +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"qwz" = ( +/turf/open/floor/white, +/area/varadero/interior/laundry) "qwE" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"qwQ" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qwU" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"qxa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"qxb" = ( -/obj/structure/bed/alien{ - can_buckle = 0; - color = "#aba9a9" +"qxT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/structure/window/reinforced{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"qxV" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed/alien{ - buckling_y = 13; - color = "#aba9a9"; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"qxu" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "pipe-c" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qyk" = ( /obj/structure/machinery/light{ dir = 8 @@ -25369,27 +20960,26 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"qym" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"qyq" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qyu" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"qyw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/disposals) -"qyH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "qyJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) @@ -25397,14 +20987,6 @@ /obj/structure/largecrate/random/case, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qyW" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/beach_bar) "qza" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -25418,24 +21000,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"qzb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qzd" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, -/area/varadero/interior/administration) "qzi" = ( /obj/structure/sign/safety/high_voltage, /obj/structure/sign/safety/hazard{ @@ -25451,18 +21015,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"qAd" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper External Airlock" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "qAg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -25471,56 +21023,25 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qAr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) "qAy" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAI" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +"qAE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qAS" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qBn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qBx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/maintenance) +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -25530,29 +21051,31 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"qBO" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"qBD" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "qBQ" = ( /obj/structure/coatrack, /obj/item/clothing/suit/armor/bulletproof, /turf/open/floor/wood, /area/varadero/interior/research) -"qBR" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +"qBT" = ( +/obj/structure/window/reinforced{ + dir = 1 }, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northeast, +/area/varadero/interior/disposals) "qBU" = ( /obj/structure/machinery/space_heater, /obj/item/device/flashlight/lamp/green{ @@ -25560,13 +21083,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"qCk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" +"qCj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "qCE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/gin{ @@ -25575,44 +21098,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"qCI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"qCN" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/hall_NW) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qCY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"qDh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"qDg" = ( +/turf/open/floor/shiva/purplecorners/west, +/area/varadero/interior/research) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25620,40 +21131,17 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"qDs" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"qDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"qDv" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "qDR" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qEa" = ( -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qDW" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + name = "Incendiary Ammunition Order"; + desc = "An order manifest for incendiary ammo that has yet to be filled out." }, +/turf/open/floor/shiva/red, /area/varadero/interior/security) "qEc" = ( /obj/structure/platform_decoration/kutjevo{ @@ -25672,12 +21160,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"qEn" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" +"qEr" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -25686,109 +21175,147 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qEG" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qEz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) -"qFe" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/pontoon_beach) -"qFC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/area/varadero/exterior/lz1_near) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"qEB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"qFn" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"qFG" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "qFI" = ( /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) -"qGE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"qGg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/varadero/interior/cargo) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qGo" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"qGR" = ( +/obj/structure/machinery/landinglight/ds1/spoke{ + pixel_y = -5; + pixel_x = 13 + }, +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"qGY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"qHl" = ( -/obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qHu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"qHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" +"qHr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"qId" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"qHM" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"qHP" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/security) +"qHT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"qHU" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"qIe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/electrical) -"qIi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Storage"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"qIr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) +"qJI" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "qKq" = ( /obj/structure/closet/secure_closet/RD, /turf/open/floor/wood, /area/varadero/interior/research) +"qKv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qKM" = ( /obj/structure/surface/rack, /obj/item/tool/shovel, @@ -25797,41 +21324,13 @@ "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLf" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qLq" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qLj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/interior/hall_SE) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "qLs" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -25840,106 +21339,46 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, /area/varadero/interior/court) -"qLH" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"qMl" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"qMr" = ( -/obj/item/tool/minihoe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"qMD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = 3; - pixel_y = 9 - }, -/obj/item/device/cassette_tape/ocean{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/device/cassette_tape/pop2, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"qLw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"qLL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"qMx" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qMY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"qNu" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz2_near) -"qNC" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"qNE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"qNP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +"qNA" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "qNX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz2_near) +"qNZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qOe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "qOh" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"qOn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) "qOF" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -25949,21 +21388,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"qOK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"qOM" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/varadero/exterior/comms4) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, @@ -25974,70 +21409,41 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"qPd" = ( -/obj/structure/machinery/light, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"qPk" = ( -/obj/structure/machinery/light{ - dir = 8 +"qPe" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"qPh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"qPN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/area/varadero/interior/security) -"qPs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qQo" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qQr" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"qPG" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"qQd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"qQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"qQk" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ dir = 1; - icon_state = "blue" + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "qQt" = ( /obj/structure/window/reinforced{ dir = 4; @@ -26062,89 +21468,36 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"qQN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"qRe" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/interior/comms1) -"qRi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/north_research) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"qSj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"qSJ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +"qSf" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"qSm" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"qSt" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/area/varadero/interior/morgue) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qSF" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "qSR" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qTh" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/monsoon) "qTs" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -26157,139 +21510,140 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"qTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"qTG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"qTP" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"qTR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor{ + pixel_x = -4; + pixel_y = 4 }, -/area/varadero/interior/records) -"qTE" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -4 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qTY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"qUf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"qUy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "qUK" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qUQ" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) "qUW" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"qVb" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qVh" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/eastbeach) -"qVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/maintenance/research) -"qVD" = ( -/obj/item/reagent_container/glass/bucket{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"qVk" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; pixel_x = 8; - pixel_y = -6 + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"qVt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"qVH" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/hall_SE) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qVO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qVS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"qWt" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"qWw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"qVN" = ( +/obj/structure/inflatable/door, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"qVW" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "qWC" = ( /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qXn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" +"qWE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qXh" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior/mess) -"qXO" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/area/varadero/interior/maintenance) -"qYd" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qXr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"qXT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) "qYg" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -26297,36 +21651,32 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"qYE" = ( +"qYB" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"qZi" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"qZI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/fire/firefighter{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"qZr" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"qZH" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "qZJ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"qZM" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "qZR" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/grass/grass1/weedable, @@ -26358,82 +21708,106 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"raG" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) "raW" = ( /turf/closed/wall, /area/varadero/interior_protected/caves/central) -"rbd" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"rbp" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"rbl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"rbt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"rbz" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/oob) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) -"rco" = ( -/obj/structure/inflatable/door, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/medical) +"rcs" = ( +/obj/structure/surface/rack, +/obj/item/maintenance_jack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rcu" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"rcA" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"rcK" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/tool/surgery/hemostat/predatorhemostat, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rcP" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/medical) -"rdq" = ( -/obj/item/tool/wrench{ - pixel_x = -1; - pixel_y = -2 +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"rcX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) +"rdr" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/toilets) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) +"rdE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"rdH" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"rdN" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "red" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -26445,100 +21819,43 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"res" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"rex" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"reA" = ( -/obj/structure/xenoautopsy/tank/broken, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"reG" = ( -/turf/closed/wall/r_wall/elevator{ - dir = 10 +"reG" = ( +/turf/closed/wall/r_wall/elevator{ + dir = 10 }, /area/varadero/interior/hall_N) -"rfn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"rft" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, +"rff" = ( +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/administration) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rgb" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"rgf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz1_near) +"rge" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "rgg" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rgy" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"rgz" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/swcaves) -"rgZ" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +"rgr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"rgw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rhe" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rhu" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/sand_white/layer1, @@ -26547,6 +21864,12 @@ /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"rit" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, @@ -26564,53 +21887,33 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rja" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) +"riN" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"riO" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"riP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "rjn" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/records) -"rjo" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz1_near) -"rjE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"rjH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"rjz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"rjL" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "rjM" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -26623,26 +21926,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"rjZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"rkA" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"rjP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "rkC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"rkF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "rkH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -26652,42 +21951,53 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rlw" = ( -/obj/item/tool/pickaxe, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"rlI" = ( +"rkK" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"rkQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"rkR" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"rlJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/hall_NW) -"rme" = ( -/obj/structure/surface/table, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds{ - pixel_x = 1; - pixel_y = -2 +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"rlw" = ( +/obj/item/tool/pickaxe, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"rlz" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"rlA" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/area/varadero/interior/maintenance/research) +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "rmf" = ( /obj/structure/barricade/wooden, /turf/open/shuttle/elevator/grating, @@ -26706,133 +22016,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"rmB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"rmL" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"rmS" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"rmA" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior_protected/vessel) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"rmT" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) "rmV" = ( /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"rnj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"rnL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) -"rnP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 +"rmW" = ( +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"rnb" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/security) +"rnX" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"roh" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) "ron" = ( /obj/structure/tunnel{ id = "north_research_tunnel" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"roy" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/surface/table, -/obj/item/spacecash/c1000{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"roJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Requesitions Office"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"roT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"rpd" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rpi" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 12 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -26840,44 +22068,27 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"rpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lights, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"rpI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rpS" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/electrical) -"rpN" = ( -/obj/item/shard{ - icon_state = "medium" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "rpT" = ( /obj/item/ammo_casing/shell{ icon_state = "shell_9_1" }, /turf/open/floor/wood, /area/varadero/interior/security) -"rqa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "rqg" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -26890,40 +22101,20 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/comms2) -"rqn" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) -"rqx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +"rqr" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"rqs" = ( +/obj/structure/closet/crate/secure, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"rqJ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"rqQ" = ( +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/disposals) -"rqG" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) "rrp" = ( /obj/item/paper_bin, /obj/item/tool/stamp{ @@ -26935,69 +22126,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"rrr" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rrA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"rrO" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/cargo) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rsh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"rsj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = -5; - pixel_y = 17 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"rsB" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"rsL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"rsM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"rsq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27013,196 +22157,164 @@ /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"rtr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"rtn" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"rtt" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/medical) -"rtu" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"rtE" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"rtH" = ( +/obj/structure/closet/secure_closet/bar, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) +"rtS" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) -"rtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"rup" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) +"rvD" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"rvV" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"rwb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"rtP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"rtR" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rtV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"rwf" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) -"rvD" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"rwh" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rwl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"rwv" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/defibrillator{ + pixel_y = 5 }, -/area/varadero/interior/security) -"rwP" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"rwx" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/area/varadero/interior/cargo) -"rwV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"rwQ" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/paper/research_notes/grant/high{ + pixel_x = -2; + pixel_y = -2 }, -/area/varadero/interior/hall_SE) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"rwX" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"rxG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance) -"rxe" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"rxZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) -"rxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ryo" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/item/tool/stamp{ + pixel_x = -5; + pixel_y = 11 }, -/area/varadero/interior/maintenance/research) +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "ryD" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"ryG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"ryY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/bunks) -"rzg" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"rzh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/administration) -"rzM" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"rzO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"rzU" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"rAf" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate{ - pixel_y = 7 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"rAj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rzq" = ( +/obj/item/clothing/shoes/swimmingfins, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "rAt" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"rAy" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) "rBa" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -27210,41 +22322,43 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"rBi" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ +"rBe" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "redfull" + icon_state = "pipe-c" }, -/area/varadero/interior/hall_SE) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "rBq" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rBP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"rBJ" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"rBV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"rCd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rCf" = ( /obj/structure/largecrate/random/case/small, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rCs" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"rCp" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -27254,47 +22368,54 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"rDz" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_3_1" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"rDD" = ( -/obj/structure/machinery/light/small{ +"rCJ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) -"rDK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"rCU" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -32; + pixel_y = -18; + indestructible = 1 }, -/area/varadero/interior_protected/vessel) -"rEO" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) +"rDt" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"rDx" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rDJ" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) +"rFj" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rFv" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"rFz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "rFD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -27310,14 +22431,9 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"rGl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) +"rGd" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) "rGA" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -27326,20 +22442,22 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rGE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"rGQ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"rHs" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/exterior/comms4) -"rHv" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = -4 }, -/area/varadero/interior/hall_N) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27347,36 +22465,56 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"rIF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"rHR" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"rHV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/caves/north_research) +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"rIj" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"rIr" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rIN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/court) -"rIU" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/chapel) +"rJf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rJp" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -27389,34 +22527,21 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"rJI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"rKf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"rKl" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rKy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +"rJy" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"rJB" = ( +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/mess) +"rJC" = ( +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"rKq" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -27425,20 +22550,15 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"rKL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"rKP" = ( +/obj/structure/prop/static_tank{ + pixel_y = 8 }, -/area/varadero/interior/electrical) -"rKM" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27453,51 +22573,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"rLC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"rLK" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 +"rKW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"rLh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"rLt" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"rLE" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/area/varadero/interior/caves/north_research) -"rLU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rLP" = ( +/obj/item/roller{ + pixel_x = 2; + pixel_y = 7 }, -/area/varadero/interior/maintenance) -"rLW" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/chunk, -/obj/item/trash/raisins, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 14 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"rMg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "rMl" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -27505,63 +22625,57 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"rMM" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"rMN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"rMn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rMP" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rNf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) "rNm" = ( /obj/item/stack/sheet/wood, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/research) -"rNo" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ +"rNx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"rOv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"rOw" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"rPm" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rPp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"rOL" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 7; - pixel_y = 15 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"rPw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "white" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "rPB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -27572,37 +22686,22 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/records) -"rPT" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"rQe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"rQk" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +"rPO" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "greencorners" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"rQG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "rQU" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -27612,17 +22711,9 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rQV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"rQY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) +"rRg" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rRm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27630,51 +22721,36 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rRE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"rRL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"rRz" = ( +"rRO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "rSl" = ( /obj/item/tool/wrench, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rSu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"rSx" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"rSA" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"rSw" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rSX" = ( /obj/structure/window/reinforced{ dir = 4; @@ -27704,26 +22780,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"rTi" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"rTu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/varadero/interior/security) -"rTv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -27733,13 +22789,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/disposals) -"rUa" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "rUc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27757,14 +22806,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"rUI" = ( -/obj/structure/closet/crate/construction, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/exterior/eastbeach) +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "rVi" = ( /obj/item/tool/candle, /turf/open/floor/carpet, @@ -27777,138 +22833,105 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"rVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"rVZ" = ( +"rVV" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"rWL" = ( +/obj/structure/surface/table, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; + icon_state = "lattice12"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"rWx" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"rWJ" = ( -/obj/item/stool, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rWY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"rWR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"rWV" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"rXk" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/lz2_near) +"rXr" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/item/device/cassette_tape/pop2{ + pixel_x = 5; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/device/cassette_tape/pop3{ + pixel_y = 7 }, -/area/varadero/interior/maintenance/security) -"rXf" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "redcorners" +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 7 }, -/area/varadero/interior/morgue) -"rXk" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "rXS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"rXU" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "rYi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rYC" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"rYO" = ( -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"rYR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"rYW" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 6 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"rZA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"rZy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/mess) +"rZS" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"rZT" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/maintenance) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "sah" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -27918,29 +22941,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"saq" = ( -/obj/item/storage/firstaid/o2{ - layer = 3.1; - pixel_x = 2; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - layer = 3.2; - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/medical) -"saC" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "saQ" = ( /obj/structure/barricade/wooden, /obj/item/shard{ @@ -27950,25 +22950,47 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sbi" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -4; + pixel_y = -7 }, -/obj/structure/closet/crate, -/obj/item/trash/crushed_cup, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sbp" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/cargo) -"sbX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"sbu" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"sbH" = ( +/obj/structure/catwalk, +/obj/structure/largecrate/random, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"sbI" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"scs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + icon_state = "door_locked"; + locked = 1; + name = "Underground Secure Technical Storage"; + req_access_txt = "100" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) "scD" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" @@ -27978,15 +23000,13 @@ "scL" = ( /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"scO" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"sdo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "sdq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28009,74 +23029,62 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sdy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/maintenance/north) "sdz" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_NW) -"sdS" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) +"sdO" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "sdU" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/varadero/interior/research) -"sdZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick/red{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ses" = ( +"seb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/disposals) -"seY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"sed" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"sel" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"seJ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"seP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"seT" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"sff" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "sfj" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) +"sfz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "sfF" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -28084,90 +23092,59 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"sfM" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +"sfR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"sfU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"sgg" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sgl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"sgn" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) "sgp" = ( /obj/structure/barricade/wooden, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"sgq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"sgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "sgz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"sgB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sgC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "shb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/medical) -"shG" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"shl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + name = "barge float"; + desc = "A supportive lattice connected to two floating pontoons." }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"shM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "shO" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -28179,12 +23156,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"shP" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "sia" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -28192,104 +23163,59 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"sic" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ +"sil" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/comms3) -"sid" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"sjD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"sjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) -"skp" = ( +/turf/open/gm/coast/beachcorner2/south_west, +/area/varadero/exterior/pontoon_beach/lz) +"siK" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"siQ" = ( /obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"slj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/tool/plantspray/pests/old/phosmet{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/weapon/wirerod{ - pixel_x = 8 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"slw" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"slA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 + layer = 3.5 }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"sjB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/morgue) +"sjT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"skx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"skB" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"slx" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/maintenance/security) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -28299,6 +23225,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"slD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/roller, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "slE" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/electrical) @@ -28306,34 +23237,43 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"smx" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +"slR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"smv" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"smA" = ( +/obj/item/card/id/silver{ + pixel_x = 3; + pixel_y = 4 }, -/area/varadero/interior_protected/vessel) -"smE" = ( +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"smB" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"smL" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"smP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"smO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/north, +/area/varadero/interior/maintenance/research) "snl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -28344,95 +23284,82 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sny" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"snP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"snS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"sou" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"spd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"spv" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"snF" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/exterior/eastocean) -"spP" = ( -/obj/structure/bed/chair, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/mess) +"snR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"snY" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"sog" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"sox" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/court) -"sqG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"soB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"sre" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"spa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"spz" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"spV" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"sqe" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"sqf" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "srg" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) +"srr" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"srA" = ( +/obj/structure/closet/crate/construction, +/obj/item/tool/extinguisher, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "srU" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -12; @@ -28451,38 +23378,16 @@ }, /turf/closed/wall, /area/varadero/interior/hall_N) -"ssg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ssh" = ( -/obj/structure/prop/turbine_extras/left, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"ssv" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +"ssl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "ssZ" = ( /obj/item/storage/belt/marine, /turf/open/floor/carpet, @@ -28490,83 +23395,97 @@ "stl" = ( /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/pontoon_beach) -"stv" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +"stn" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 }, -/area/varadero/interior/maintenance) -"stw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"stq" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"stF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/area/varadero/interior/maintenance/security) -"stK" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"suz" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"suX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 }, -/area/varadero/interior_protected/caves/digsite) -"stU" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 }, -/area/varadero/interior/mess) -"stV" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 }, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"svb" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "yellow" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) -"suC" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"svi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) -"suE" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"svm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/maintenance) -"suN" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "blue" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"suY" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/area/varadero/exterior/lz2_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "svt" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -28578,12 +23497,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"svG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "svH" = ( /obj/structure/surface/table/woodentable, /obj/item/book/manual/marine_law{ @@ -28600,22 +23513,15 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"swa" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"swf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +"svV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"swc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "swi" = ( /obj/item/storage/pouch/shotgun/large, /turf/open/floor/wood, @@ -28628,32 +23534,42 @@ /obj/item/storage/pouch/machete/full, /turf/open/floor/wood, /area/varadero/interior/security) -"swk" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"swv" = ( -/obj/structure/surface/rack, -/obj/item/pizzabox/meat, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"sww" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"swS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"swX" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"sxl" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"sxt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"sxK" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "sxL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -28671,79 +23587,12 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"sxY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"syb" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol{ - pixel_x = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"syl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"syt" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"syL" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"syM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/atmos_alert, -/obj/item/circuitboard/machine/smes{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) +"syj" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"syz" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "szh" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 @@ -28757,122 +23606,85 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"szS" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"szZ" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"sAf" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"sAR" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"sAY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"szI" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/morgue) -"sBk" = ( -/obj/structure/bed/chair{ +"szY" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/effect/decal/strata_decals/grime/grime3{ +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sAA" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sBl" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_SE) +"sBw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"sBF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"sBA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/administration) -"sBN" = ( -/obj/structure/target/syndicate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "sBX" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/laundry) -"sCk" = ( +"sBZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"sCp" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"sCA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/maintenance/security) -"sCJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"sCe" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"sCf" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"sCn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"sCu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/cargo) -"sCK" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"sDe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/research) -"sCV" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"sDm" = ( /obj/structure/machinery/alarm{ dir = 8; pixel_x = 24 @@ -28880,147 +23692,74 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/cargo) -"sDf" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"sDj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"sDo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"sDE" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"sDC" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) "sDH" = ( /obj/item/grown/log, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"sDM" = ( -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"sDQ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +"sEk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 }, -/area/varadero/interior/medical) -"sDZ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"sEH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) -"sFa" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"sEP" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "sFc" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/barcardine, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sFJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"sFN" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"sGb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Disposals"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/disposals) -"sGo" = ( -/turf/open/floor{ - icon_state = "white" +"sFS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/toilets) -"sGY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"sFY" = ( +/obj/item/clothing/gloves/yautja{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System"; + pixel_y = 24 }, -/area/varadero/interior/cargo) -"sHs" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ +/obj/structure/bed/chair/hunter{ dir = 1 }, -/area/varadero/interior/electrical) -"sHJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"sGw" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"sGM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/comms4) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/varadero/interior/toilets) "sHO" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -29029,69 +23768,51 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"sHV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sIf" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +"sHT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"sIn" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"sIK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"sHW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"sIb" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"sId" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/white, +/area/varadero/interior/security) +"sIx" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) +"sIz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/area/varadero/exterior/eastbeach) -"sIQ" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"sIS" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, -/area/varadero/exterior/lz1_near) -"sIU" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sIX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + dir = 8; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) -"sJm" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz1_near) "sJq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -29113,51 +23834,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sJx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"sJF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" +"sJN" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"sJQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/hall_SE) -"sJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"sKb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"sKf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/hall_SE) -"sKe" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purple" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) -"sKu" = ( -/obj/structure/barricade/wooden{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"sKx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/maintenance/security) +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -29169,156 +23895,96 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/morgue) +"sKE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 + }, +/obj/structure/flora/bush/desert{ + pixel_y = 14 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) "sKF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sKL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLi" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"sLO" = ( -/obj/item/device/flashlight/slime{ - mouse_opacity = 0; - invisibility = 1; - indestructible = 1; - alpha = 0 +"sKS" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/pool) -"sLU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"sLo" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"sMb" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) "sMn" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, /area/varadero/interior/records) +"sMx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "sMJ" = ( /obj/structure/closet/crate, /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sMS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"sNa" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"sNl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"sNp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) -"sNy" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"sNT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"sOj" = ( +"sNH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) +"sNW" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "sOw" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"sPh" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) +"sPq" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "sPs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/wood, /area/varadero/interior/security) -"sPD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"sPY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"sQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"sPQ" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "sQs" = ( /obj/structure/filingcabinet{ density = 0; @@ -29340,6 +24006,22 @@ /obj/item/ammo_magazine/rifle, /turf/open/floor/wood, /area/varadero/interior/bunks) +"sQx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"sQI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"sQM" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "sQN" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -29352,9 +24034,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sRs" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/pontoon_beach) +"sQU" = ( +/obj/structure/largecrate/random{ + anchored = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"sRl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"sRs" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/pontoon_beach) "sRM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -29366,133 +24060,119 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"sRO" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"sSd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "sSp" = ( /obj/effect/decal/cleanable/blood, /obj/item/weapon/gun/shotgun/pump, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"sSz" = ( -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/evidencebag{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sSU" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Underground Command Center"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"sSZ" = ( -/obj/structure/pipes/vents/pump{ +"sSF" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"sTA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"sTT" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"sSS" = ( +/obj/structure/disposalpipe/junction{ dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + icon_state = "pipe-j2" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"sUj" = ( -/obj/structure/platform/kutjevo/smooth{ +"sTo" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 + health = 300 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"sTw" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/maintenance/north) +"sTz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/oob) -"sUm" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"sTR" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"sUo" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_y = 7 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "sUp" = ( /obj/item/toy/beach_ball, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sUG" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle{ - icon_state = "floor6" +"sUO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/co2_cartridge{ + pixel_x = 13; + pixel_y = 7 }, -/area/varadero/interior_protected/vessel) -"sUK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"sUV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"sVj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "sVk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -29507,6 +24187,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"sVA" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/hall_SE) "sVH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -29515,12 +24206,15 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"sWp" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/medical) +"sVK" = ( +/obj/structure/xenoautopsy/tank/broken, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"sWc" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "sXb" = ( /turf/closed/wall, /area/varadero/interior/library) @@ -29532,88 +24226,114 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"sYi" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"sXL" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/varadero/interior/comms3) +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"sXP" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"sXS" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"sYR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "sZd" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"sZe" = ( -/obj/item/paper, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"sZk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"sZW" = ( +/obj/effect/landmark/corpsespawner/scientist, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"sZL" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"tah" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"tam" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_N) -"tbQ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"taF" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"taG" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tbt" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"tcq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"tbG" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/varadero/interior/maintenance) -"tcS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/varadero/interior/toilets) -"tcX" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed{ + can_buckle = 0 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"tcd" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"tdg" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"tdo" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -29630,92 +24350,19 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"tdy" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) +"tdA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"tdI" = ( +/obj/item/weapon/baton, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "tdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"tdX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"teg" = ( -/obj/structure/girder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"ten" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"teu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/technical_storage) -"tex" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "tez" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/gm/coast/beachcorner/north_west, @@ -29729,46 +24376,17 @@ /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"tfc" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"tfj" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +"tfp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/c_tube, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tfO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"tfC" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/caves/digsite) "tgk" = ( /obj/structure/filingcabinet{ density = 0; @@ -29796,11 +24414,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tgE" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/pontoon_beach) "tgK" = ( /obj/structure/closet/crate/construction, /obj/item/stack/sandbags_empty/half, @@ -29810,24 +24423,54 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"thw" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"thD" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "thS" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"thY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 +"thT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior/bunks) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "tia" = ( /obj/structure/machinery/conveyor, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"tic" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tif" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"til" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"tin" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "tiw" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, @@ -29836,29 +24479,6 @@ /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"tjn" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -29877,12 +24497,13 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tjF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"tjA" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ @@ -29890,76 +24511,32 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"tkh" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/eastbeach) -"tkr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"tkw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Breakroom"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "tkF" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tkT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"tkV" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"tkJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"tkX" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"tlj" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"tll" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "tlq" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -29977,75 +24554,41 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tlG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"tlM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"tlT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"tmm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"tlJ" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"tmc" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/comms3) -"tmC" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"tmg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tmO" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"tmP" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "tmZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz2_near) -"tng" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"tnD" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/bottle/absinthe, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/varadero/interior/beach_bar) -"tnN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"toN" = ( -/obj/item/tool/warning_cone{ - pixel_x = 5; +"tnj" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"toN" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; pixel_y = 8 }, /turf/open/floor/plating, @@ -30077,96 +24620,42 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"tpB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -16; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"tpL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/court) "tpO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"tpV" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -13; - pixel_y = -3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"tqa" = ( +"tpW" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior_protected/caves) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"tqg" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "tqh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/research) -"tqr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +"tqs" = ( +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"tqV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"trh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) +"trl" = ( +/obj/structure/lz_sign/new_varadero, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "trB" = ( /obj/item/stack/sheet/wood{ amount = 40 @@ -30207,51 +24696,39 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"trQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"tso" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"tsz" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tsX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"tsH" = ( +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, -/area/varadero/interior/technical_storage) -"tuL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/dock_control) +"ttE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"tuv" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "tuR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -30264,36 +24741,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/varadero/interior/disposals) -"tuZ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"tve" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/co2{ - pixel_y = 7 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"tvv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "tvI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill{ @@ -30302,125 +24749,111 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"twh" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"twm" = ( -/obj/structure/bed/chair{ +"twi" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"twD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"tyT" = ( +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"twP" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"txF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"txH" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"tyR" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"tzm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) -"tzp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"tzS" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 }, -/area/varadero/interior/hall_NW) -"tzw" = ( -/turf/open/floor{ - icon_state = "wood" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"tAb" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel/pict_system, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tAd" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/varadero/interior/library) -"tzP" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "tAT" = ( /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"tBm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"tBJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"tCd" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "tCA" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/caves/east) -"tCG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"tCM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"tCV" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"tCQ" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"tDm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"tDh" = ( -/obj/structure/pipes/portables_connector{ - dir = 8 +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"tDo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"tDF" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"tDR" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) +"tDL" = ( +/obj/item/stack/cable_coil/random, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -30428,6 +24861,19 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) +"tEx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "tEF" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -30437,11 +24883,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"tEJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "tEM" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -30455,33 +24896,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tER" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"tFj" = ( +/obj/structure/machinery/light, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"tFz" = ( +/obj/structure/shuttle/engine/router{ + dir = 4; + unacidable = 0 }, -/area/varadero/exterior/comms4) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"tFF" = ( +/obj/structure/target/syndicate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "tFQ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tGl" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" - }, -/area/varadero/interior/research) -"tGr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -30489,33 +24924,61 @@ }, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"tGA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"tGP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/security) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tGU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/hall_N) -"tHc" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"tHA" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/area/varadero/exterior/eastocean) -"tIT" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/wood, +/area/varadero/interior/library) +"tHB" = ( +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"tHE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"tHK" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tIa" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"tIp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "tIV" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -30535,67 +24998,39 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"tJN" = ( -/obj/structure/closet/crate, -/obj/item/trash/chunk, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"tJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"tJq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/medical) -"tKr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"tJs" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tLm" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "redfull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"tKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 1 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"tKE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"tKI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "tLu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -30604,14 +25039,14 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"tMx" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/key/cargo_train, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"tMw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "tMJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -30645,65 +25080,32 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) "tNT" = ( /obj/effect/spawner/random/tool, /turf/open/floor/carpet, /area/varadero/interior/administration) -"tOd" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"tOp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_NW) -"tOx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"tNZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/oob) +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "tOV" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tOZ" = ( +/obj/item/storage/firstaid, +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"tPe" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 }, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "tPE" = ( /obj/item/tool/pickaxe, /obj/structure/platform_decoration/kutjevo{ @@ -30711,15 +25113,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPI" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "tPK" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -30728,140 +25121,150 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tPS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"tPZ" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/mess) -"tQn" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva{ +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "red" + layer = 3.1; + pixel_y = 10 }, -/area/varadero/interior/morgue) -"tQy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/area/varadero/interior/maintenance) -"tQz" = ( -/obj/structure/sink{ - pixel_y = 15 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"tQt" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"tQE" = ( +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/medical) -"tQI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing{ - dir = 8; - icon_state = "cartridge_2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"tRu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/bunks) -"tQT" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"tRv" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" }, -/area/varadero/interior/comms1) -"tRs" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"tRz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Lobby"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) "tRN" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"tSg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"tSK" = ( -/obj/structure/window/framed/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"tSQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"tSR" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"tSj" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/shorts/black, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.1; + pixel_x = -5; + pixel_y = 15 }, -/area/varadero/interior_protected/caves) -"tTo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/souto_land/streamer{ +/obj/item/reagent_container/glass/rag{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"tSu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"tSG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/hall_NW) -"tTq" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) +"tSK" = ( +/obj/structure/window/framed/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"tSN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"tSQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"tTz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"tTO" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, -/area/varadero/exterior/farocean) -"tTN" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"tTR" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = -8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "tTU" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"tUd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"tUi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/trackimp, +/obj/item/device/binoculars, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"tVe" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "tVf" = ( /obj/structure/closet/crate, @@ -30869,65 +25272,47 @@ /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tVj" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"tVl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"tVo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tVv" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"tVF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"tVD" = ( +"tVS" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"tVX" = ( -/obj/structure/surface/rack, -/obj/item/maintenance_jack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"tWm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "tWA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"tWJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"tWR" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"tXg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/laundry) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/caves/east) @@ -30942,12 +25327,14 @@ "tXE" = ( /turf/open/floor/wood, /area/varadero/interior/administration) -"tXF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) +"tXG" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tXR" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "tXT" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -30958,44 +25345,6 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tYg" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"tYw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"tYP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"tYT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -31005,34 +25354,33 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"tZm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"tZR" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"uaL" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/electrical) -"tZr" = ( -/obj/item/toy/deck/uno{ - pixel_y = 6 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"uaM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/surface/table, -/turf/open/floor{ +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"uaN" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"tZE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" + health = 300 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "uaU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -31040,115 +25388,72 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"uaV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"uaY" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarwest"; - unacidable = 1; - name = "Pontoon West Door"; - openspeed = 17; - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/varadero/interior/cargo) -"ubF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"ubH" = ( +"ubh" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"ubl" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"ubm" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/records) +"ubD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubK" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"ubT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"ucL" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/monsoon) +"ubO" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ucO" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "udp" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ueg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"uet" = ( -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/interior/caves/east) -"ueB" = ( -/obj/structure/cable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"udS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"ueP" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"uem" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) -"ueQ" = ( -/obj/structure/computer3frame, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/darkgreencorners2/north, +/area/varadero/interior/hall_SE) +"uen" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"uet" = ( +/turf/open/gm/coast/beachcorner/north_west, +/area/varadero/interior/caves/east) "ufn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -31158,6 +25463,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"ufr" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "ufB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31167,243 +25476,193 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"ufE" = ( -/obj/structure/barricade/handrail/wire{ +"ufD" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ufV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/court) -"ugi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_c" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ufG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"ugl" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"ugJ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/court) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"ugW" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"uhi" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"uhD" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) "uhV" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"uiq" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"uiy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"ujg" = ( -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/shuttle{ - icon_state = "floor6" +"uiw" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior_protected/vessel) -"ujp" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ujt" = ( /obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/obj/item/paper/crumpled{ - pixel_x = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"ujR" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 + icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ujZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/varadero/interior/maintenance) -"ukw" = ( /obj/structure/window/reinforced{ - dir = 1 + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/obj/structure/bed{ + can_buckle = 0 }, -/area/varadero/interior/disposals) -"ukz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/varadero/interior/cargo) -"ukX" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"ukj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ukF" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) -"ulb" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"uli" = ( -/obj/structure/bed/chair/hunter{ +"ukU" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"ula" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uld" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_N) +"ull" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"uln" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"umA" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"ulH" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"ulX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"umj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"umk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/security) -"umO" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"umL" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/area/varadero/interior/hall_NW) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/cargo) "umT" = ( /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"unh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"unf" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"unk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"unw" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "unH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"uoh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"uon" = ( -/obj/structure/largecrate/random, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, +"unM" = ( /obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/caves/east) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"unW" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) +"uod" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"uoJ" = ( +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "uoN" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -31422,12 +25681,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"uoO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -31445,15 +25698,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"upb" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -31462,61 +25706,53 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"upO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 5; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"upN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/hall_SE) -"upY" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"uqb" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"uqo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"uqt" = ( +/obj/structure/toilet, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) -"uqw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"uqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/white, +/area/varadero/interior/toilets) +"uqO" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "uqW" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/east) +"ura" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "urd" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -31524,54 +25760,90 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"urA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"urD" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"urz" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/exterior/lz2_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "urE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/research) -"usB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"usl" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"usu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"usK" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz1_near) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"usU" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "uti" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/comms2) +"utn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table, +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"utC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"utE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "utZ" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"uug" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" }, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "uul" = ( /obj/structure/machinery/light{ dir = 1 @@ -31590,45 +25862,30 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uuv" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"uuN" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "purple" - }, -/area/varadero/interior/research) -"uvd" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"uvr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"uvw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"uup" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Underground Morgue"; - req_access_txt = "100" +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"uuB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 3; + pixel_y = 17 }, -/turf/open/floor{ - icon_state = "dark2" +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 }, -/area/varadero/interior/morgue) +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"uvs" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "uvB" = ( /obj/structure/machinery/shower{ dir = 8 @@ -31637,18 +25894,22 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uww" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"uvL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/hall_N) -"uwJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"uvR" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = -25 }, -/area/varadero/interior/maintenance/security) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uwM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31658,103 +25919,102 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"uwQ" = ( +"uwY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, +/obj/item/storage/box/lights, +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) -"uxi" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"uxv" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"uxI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"uxK" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "uxM" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"uyd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, +"uxY" = ( /obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"uyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"uzb" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"uyo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/disposals) -"uzg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"uzv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"uzL" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/shiva/blue/northeast, /area/varadero/interior/hall_SE) -"uzr" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +"uAC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"uAM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"uBh" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/disposals) -"uzN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"uBo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/maintenance/research) -"uAt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/court) +"uBN" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"uBQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/maintenance/north) -"uAM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -31762,81 +26022,57 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"uBX" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"uCc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) +"uCh" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) "uCJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uDg" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"uDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"uDQ" = ( +"uCM" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/prop/magazine/boots, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"uCO" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"uDq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uDv" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" }, +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uDJ" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"uEc" = ( -/obj/structure/machinery/light/small{ +"uDK" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"uEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"uEE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/turf/open/floor/wood, +/area/varadero/interior/library) +"uEe" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/area/varadero/interior/chapel) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "uEF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -31847,34 +26083,42 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"uEI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"uEQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"uEW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) -"uFq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"uFl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/exterior/monsoon) -"uFE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uFn" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior_protected/caves/central) +"uFx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz1_near) -"uFJ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -31882,32 +26126,62 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uGf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uGo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/cargo) -"uGi" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"uGp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/item/paper/janitor{ + pixel_y = 8 }, -/area/varadero/interior/security) -"uGs" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"uGM" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"uHl" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"uHo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"uHw" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -31919,20 +26193,6 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"uIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) "uIl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -31944,18 +26204,46 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"uIH" = ( -/obj/structure/window/framed/colony/reinforced, +"uIG" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uII" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"uIK" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"uJb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"uJt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"uJE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "uJO" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 @@ -31966,34 +26254,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"uKr" = ( -/obj/structure/machinery/photocopier{ - pixel_y = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/varadero/interior/dock_control) -"uKY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"uKk" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"uKB" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"uKQ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -32002,188 +26276,151 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"uLP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/caphat{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/clothing/head/cmcap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"uLY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"uMx" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"uMB" = ( +"uLf" = ( /obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"uMQ" = ( -/obj/item/ammo_casing/shell{ - icon_state = "cartridge_1_1" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/pistol/vp70, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"uNh" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 9; - pixel_y = 15 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"uLg" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"uLi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -6; - pixel_y = 15 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"uLl" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"uLE" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/laundry) -"uNq" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"uMy" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"uMK" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "uNz" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"uNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"uOD" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"uOk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"uPk" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Research Chamber" }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uPr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"uQi" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/cargo) +"uQp" = ( +/obj/item/storage/firstaid/o2{ + layer = 3.1; + pixel_x = 2; + pixel_y = 10 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + layer = 3.2; + pixel_x = -4; + pixel_y = 3 }, -/area/varadero/interior/oob) -"uOo" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/roller, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"uQG" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior/morgue) -"uOC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/area/varadero/interior/hall_N) -"uOF" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"uQU" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"uRt" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) +"uRw" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" + pixel_x = -3 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"uOL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"uQa" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"uQi" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/cargo) -"uQH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/court) -"uQJ" = ( +"uRT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"uQK" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Requesitions Office"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"uRa" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) "uRU" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/hall_N) +"uSt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "uSx" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/cargo) +"uSE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "uSF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -32194,49 +26431,24 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTj" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"uSZ" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/area/varadero/exterior/comms4) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"uTA" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"uTV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" - }, -/area/varadero/interior/medical) "uTY" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTZ" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "uUl" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -32247,51 +26459,21 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"uUF" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/defibrillator{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"uUS" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "redcorners" - }, -/area/varadero/interior/security) -"uUW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +"uUo" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"uUs" = ( +/obj/structure/machinery/computer/operating{ + density = 0 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) -"uVe" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"uVo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"uUw" = ( +/obj/item/lightstick/variant/planted, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "uVu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -32299,51 +26481,25 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"uVy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"uVR" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/varadero/interior/beach_bar) -"uVV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ +"uVx" = ( +/obj/structure/bed/chair/office/dark{ dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"uVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + icon_state = "chair" }, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/hall_SE) -"uWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert0" +"uVN" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"uVT" = ( +/obj/structure/catwalk, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 }, -/area/varadero/exterior/eastocean) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32351,23 +26507,13 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"uWW" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"uXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"uWI" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "uXR" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -32378,34 +26524,28 @@ "uXS" = ( /turf/closed/wall, /area/varadero/interior/toilets) -"uXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" +"uXW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/mess) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "uXZ" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, +"uYs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"uYJ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "uYL" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -32413,80 +26553,62 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uZa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"uZK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"uZp" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"uZv" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"uZY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"vap" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"vaV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 +"uZD" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/paper/janitor{ - pixel_x = 5; - pixel_y = 3 +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_c" }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"uZN" = ( +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"uZV" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"vab" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/red{ + pixel_x = -2; + pixel_y = -4 }, -/area/varadero/interior/administration) -"vbr" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"vaC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/disposals) +"vaD" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/disposals) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"vbP" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/hall_N) "vbS" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -32505,26 +26627,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vcd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"vcj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) "vco" = ( /obj/item/paper_bin, /obj/item/tool/pen/blue, @@ -32533,12 +26635,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vct" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/swcaves) "vcz" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -32549,14 +26645,9 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"vdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"vdK" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "vdL" = ( /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, @@ -32571,6 +26662,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"veh" = ( +/turf/open/floor/asteroidwarning/north, +/area/varadero/exterior/lz1_near) "ver" = ( /obj/structure/machinery/shower{ dir = 8 @@ -32579,6 +26673,17 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/security) +"veU" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "veV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) @@ -32590,16 +26695,6 @@ "veZ" = ( /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vfg" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -32632,60 +26727,77 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vfG" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"vfH" = ( -/obj/structure/surface/table, -/obj/item/bodybag, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"vgu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"vfo" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vfO" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "wred" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"vfQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"vfZ" = ( +/turf/open/floor/wood/wood_broken6, +/area/varadero/interior/security) "vgA" = ( /obj/item/stool{ icon_state = "stool_alt" }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"vgF" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "vgH" = ( /obj/structure/blocker/fog, /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"vhb" = ( -/obj/structure/machinery/light{ - dir = 1 +"vgI" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"vhf" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"vhh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -11; + pixel_y = 16 }, -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -9; + pixel_y = 13 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"vho" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "vhw" = ( /obj/structure/sign/safety/water{ @@ -32693,21 +26805,6 @@ }, /turf/closed/wall, /area/varadero/interior/library) -"vhB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"vhI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/central) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard{ @@ -32729,6 +26826,13 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"vii" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "vio" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -32739,62 +26843,44 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"viK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"viP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" +"viW" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"viY" = ( -/obj/structure/prop/structure_lattice{ +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"vji" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"vjs" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - health = 300 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/structure_lattice{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/exterior/lz1_near) -"vjA" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vjz" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "HotlineAlt" }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -32807,27 +26893,36 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vjZ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stool, -/turf/open/floor/shiva{ +"vki" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purplefull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"vkK" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"vkO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "vll" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/glass/bucket{ @@ -32835,95 +26930,57 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vlm" = ( -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"vlw" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"vlq" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/varadero/interior/library) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vlL" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"vmc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 +"vlS" = ( +/obj/item/clothing/ears/earmuffs{ + layer = 3.1; + pixel_x = 2; + pixel_y = 18 }, -/area/varadero/interior/electrical) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"vmY" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"vnb" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) +"vmP" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "vnm" = ( /turf/closed/wall, /area/varadero/interior/chapel) -"vnH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vnJ" = ( +/obj/item/reagent_container/food/snacks/fishfingers{ + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"vod" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarsouth"; + unacidable = 1; + name = "Pontoon South Door"; + openspeed = 17 }, -/area/varadero/interior/electrical) -"vnN" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"vnU" = ( -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/interior/maintenance/north) "vom" = ( /obj/item/storage/beer_pack, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"voE" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "voJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -32939,13 +26996,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vpr" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "vpQ" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -32953,71 +27003,36 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pool) -"vpV" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"vqd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"vqt" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/morgue) -"vqw" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +"vqF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"vqG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "vqK" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vqR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"vqU" = ( -/obj/effect/landmark/corpsespawner/chef, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/mess) "vqY" = ( /turf/open/floor/carpet, /area/varadero/interior/security) -"vqZ" = ( +"vrl" = ( +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"vrs" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/prop/invuln/overhead_pipe{ dir = 4; + pixel_x = 12; pixel_y = 13 }, /obj/structure/prop/invuln/overhead_pipe{ @@ -33025,25 +27040,8 @@ pixel_x = -16; pixel_y = 13 }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/interior/maintenance/north) -"vrh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"vrj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "vru" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/wood, @@ -33052,59 +27050,46 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vrO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8 +"vrH" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"vrN" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"vsz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/security) -"vsa" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; +/obj/item/reagent_container/food/snacks/stew{ pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"vss" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_y = 16 }, -/area/varadero/exterior/pontoon_beach) -"vsJ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"vsE" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"vsP" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"vtP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"vsO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/maintenance) "vus" = ( /obj/structure/stairs/perspective{ @@ -33118,15 +27103,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"vuA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) "vuE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33140,6 +27116,17 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"vuN" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "vuQ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -33148,100 +27135,123 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"vvh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vvc" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"vve" = ( +/obj/structure/largecrate/random/mini/chest/b, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vvm" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/maintenance/research) -"vvS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/stack/rods{ + pixel_x = 10; + pixel_y = -4 }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vvz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "redcorners" - }, -/area/varadero/interior/security) -"vwT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/weapon/gun/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"vvA" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"vwZ" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/maintenance/research) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastocean) "vxi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vxM" = ( -/obj/structure/machinery/light{ +"vxn" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"vxr" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/closet/radiation, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"vxJ" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"vxN" = ( +/obj/item/trash/barcardine, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "vyp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vyy" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - layer = 2.15; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"vyI" = ( -/obj/structure/catwalk, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"vyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +"vys" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"vyE" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"vzh" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "vzq" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vzt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vzs" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/hall_SE) +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "vzB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -33257,126 +27267,49 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vzF" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "vzH" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"vzN" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"vzY" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"vAg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"vAz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vzT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance/north) -"vAF" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"vzZ" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"vAo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"vAB" = ( +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) -"vAI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"vAR" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"vAZ" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz1_near) -"vBk" = ( +"vBe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"vBC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/cargo) -"vBF" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"vBO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"vBW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "blue" + dir = 5 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vBZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -33387,22 +27320,18 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vCf" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/administration) -"vCE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"vCn" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"vCZ" = ( +/obj/structure/bedsheetbin, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "vDe" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -33423,51 +27352,25 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"vDl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"vDm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"vDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "vDw" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"vDC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"vDI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" +"vDM" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33484,16 +27387,33 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vEa" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"vDU" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"vDW" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = -1 }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"vDX" = ( +/turf/open/floor/shiva/redcorners/west, /area/varadero/interior/security) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ @@ -33514,55 +27434,48 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"vEg" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"vEi" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard{ - icon_state = "medium" +"vEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/caves/east) -"vEJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" }, -/area/varadero/interior/hall_NW) -"vEM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vEE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -6; + pixel_y = 4 }, -/area/varadero/interior/maintenance/north) -"vEU" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = 7; + pixel_y = 3 }, -/obj/structure/prop/invuln/minecart_tracks{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"vEF" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"vEY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/oob) +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) "vFf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigar{ @@ -33579,20 +27492,28 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"vFs" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vFB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/comms1) -"vFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vFC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"vGm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -33601,6 +27522,12 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"vGI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "vGQ" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -33614,79 +27541,86 @@ "vHs" = ( /turf/closed/wall/r_wall, /area/varadero/interior/records) -"vHY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vHz" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 7; + pixel_y = 18 }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor{ - icon_state = "white" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vHC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"vIy" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"vIQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 9 }, -/area/varadero/interior/toilets) -"vJg" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/varadero/exterior/lz1_near) -"vJk" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"vJL" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"vKv" = ( -/obj/structure/window/framed/colony/reinforced/hull{ - indestructible = 1 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vKv" = ( +/obj/structure/window/framed/colony/reinforced/hull{ + indestructible = 1 }, /turf/open/floor/plating/icefloor, /area/varadero/interior/maintenance/north) -"vLc" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 +"vKy" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/barricade/handrail/wire{ - dir = 8 +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"vKD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vLb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 4; + pixel_y = 4 }, -/area/varadero/exterior/comms4) +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "vLh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/laundry) "vLo" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -33696,70 +27630,16 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"vLw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/varadero/interior/dock_control) -"vLU" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"vLV" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"vMe" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"vMo" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"vMq" = ( -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"vMU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vNe" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"vNf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "vNu" = ( /turf/open/floor/carpet, /area/varadero/interior/bunks) @@ -33783,73 +27663,49 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"vNT" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat{ +"vNI" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "squareswood" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) -"vNY" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vNP" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_N) -"vOa" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"vNV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 3 }, -/area/varadero/interior_protected/vessel) +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"vOr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "vOW" = ( /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"vPe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"vPh" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -33859,13 +27715,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vPj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) "vPK" = ( /obj/item/ammo_casing{ icon_state = "casing_8" @@ -33887,6 +27736,14 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) +"vQp" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vQz" = ( /obj/structure/machinery/light{ dir = 8 @@ -33901,14 +27758,23 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"vQL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/light_fixture, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"vQM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"vRa" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vRc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -33932,78 +27798,28 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"vSu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) +"vSK" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "vTd" = ( /obj/structure/machinery/conveyor, /obj/item/paper_bin, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vTe" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"vUx" = ( -/obj/structure/girder/displaced, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"vUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"vUM" = ( -/turf/open/floor/shiva{ - icon_state = "blue" +"vUl" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"vUo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles/east, /area/varadero/interior/hall_SE) -"vUQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -34011,30 +27827,16 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vUZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"vVy" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ +"vVj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"vVn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "vVz" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -34046,68 +27848,20 @@ "vVH" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms2) +"vVI" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "vVJ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"vWn" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/coast/beachcorner/north_west, -/area/varadero/exterior/pontoon_beach) -"vWG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"vXx" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"vXG" = ( -/obj/structure/closet/crate/construction, -/obj/item/grown/log, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/monsoon) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Showers"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"vYp" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"vYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/maintenance/north) +"vYd" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "vYy" = ( /obj/item/tool/shovel, /obj/structure/prop/invuln/lattice_prop{ @@ -34117,22 +27871,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vYF" = ( +"vYJ" = ( +/obj/item/book/manual/evaguide, +/turf/open/floor/wood, +/area/varadero/interior/library) +"vYO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/item/tool/pen/sleepypen{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/lighter/zippo/fluff{ - pixel_x = 7; - pixel_y = 2 +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/obj/item/clothing/ears/earmuffs{ + pixel_y = 18 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -34159,16 +27912,16 @@ /obj/item/ammo_magazine/handful/shotgun/buckshot, /turf/open/floor/wood, /area/varadero/interior/bunks) +"vYT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "vYW" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"vZl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34185,15 +27938,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"vZv" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -34213,59 +27957,68 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vZO" = ( -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"vZR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"vZS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"wae" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"was" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "waB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"waP" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" +"waK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 10 }, -/area/varadero/exterior/lz1_near) +/obj/item/storage/toolbox/syndicate{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"waO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"waS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"waV" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) "wba" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"wbB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "blue" +"wbJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/administration) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"wbL" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "wcb" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown{ @@ -34276,52 +28029,25 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wcl" = ( -/obj/item/tool/mop{ - pixel_x = -16; - pixel_y = 26 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"wcq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"wco" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/flare, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"wcA" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"wcE" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"wcG" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) +"wcJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wcO" = ( +/obj/item/device/motiondetector/hacked, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -34341,63 +28067,28 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"wdg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ +"wdc" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"wdh" = ( -/obj/structure/machinery/computer/operating{ - density = 0 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" + icon_state = "chair_alt" }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) -"wdx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"wdy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) +"wdu" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"weG" = ( -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) +"wei" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"weo" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/varadero/interior/cargo) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -34405,29 +28096,20 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"wff" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"weT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"wfh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"wfr" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"wfl" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "wft" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -34446,14 +28128,10 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"wfy" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) +"wfu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "wfK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -34482,42 +28160,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wfT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"wgv" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wgU" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) +"wgF" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/hall_SE) +"wgQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"whv" = ( +/obj/item/paper, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"whH" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -34528,83 +28184,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wir" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"wiu" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, -/area/varadero/interior/hall_NW) -"wiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/obj/item/storage/belt/shotgun, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"wjd" = ( -/obj/item/book/manual/robotics_cyborgs, -/turf/open/floor/carpet, -/area/varadero/interior/library) -"wjf" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"wjh" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) -"wjB" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"wjp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"wjG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wjL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "wjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"wkp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"wkb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -34612,37 +28224,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wkt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"wku" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "colony_sec_armory"; - name = "Secure Armory" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"wkL" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) -"wkC" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -34671,15 +28257,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wlq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) +"wkP" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/varadero/interior/security) +"wll" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "wlB" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) @@ -34687,47 +28272,22 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"wlQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"wmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"wmC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"wmL" = ( +"wmz" = ( +/obj/structure/blocker/fog, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"wmE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "wmX" = ( /obj/structure/filingcabinet{ @@ -34753,20 +28313,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wng" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"wno" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/mess) "wns" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/wood, @@ -34784,68 +28330,45 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"wnK" = ( -/turf/open/floor/shiva{ - icon_state = "wredfull" +"wnW" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/medical) -"woj" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"wol" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/technical_storage) -"won" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/area/varadero/interior/comms2) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "wop" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"wot" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"wox" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_SE) +"woq" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "woF" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"woI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) "woJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/explosive/grenade/incendiary/molotov{ @@ -34853,48 +28376,27 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"wpe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "wph" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"wpi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"wpm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"wpr" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/medical) +"wpF" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "wpG" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"wpM" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, /obj/item/weapon/gun/rifle/m41a, @@ -34903,14 +28405,33 @@ "wqb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/security) -"wqc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"wqg" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"wqh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"wqi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"wqz" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -34920,13 +28441,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wrv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "wrB" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/cable_coil/cut, @@ -34942,17 +28456,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wsa" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "wsn" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"wsp" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "wsG" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -34970,163 +28481,151 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"wsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"wtk" = ( -/obj/structure/barricade/wooden, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"wts" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"wty" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"wsN" = ( +/turf/open/floor/shiva/yellow/southeast, /area/varadero/interior/cargo) -"wtB" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 12 +"wte" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"wtr" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno{ + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 }, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) -"wtU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wuA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"wuc" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"wup" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/varadero/interior/maintenance/research) -"wuR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/mirror{ + pixel_y = -28 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/white, +/area/varadero/interior/toilets) +"wuH" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/area/varadero/interior/comms3) -"wvI" = ( -/obj/structure/tunnel{ - id = "north_research_tunnel" +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"wuQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood/wood_broken3, +/area/varadero/interior/beach_bar) +"wwK" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/administration) +"wwO" = ( +/obj/structure/closet/crate, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"wxo" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/hall_SE) -"wwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wxE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"wxG" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"wxO" = ( +/obj/item/trash/boonie, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"wyr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"wzy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/administration) -"wwk" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" +/obj/structure/largecrate/random/mini/med{ + pixel_x = -10; + pixel_y = 15 }, -/area/varadero/interior/medical) -"wwq" = ( -/obj/structure/catwalk, -/obj/structure/machinery/light{ +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"wzS" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"wAe" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 1 }, -/area/varadero/interior/maintenance/north) -"wws" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wAp" = ( +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"wxf" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" +"wAw" = ( +/obj/structure/mirror{ + pixel_x = -32 }, -/area/varadero/interior/laundry) -"wyE" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/varadero/exterior/pool) -"wAx" = ( -/obj/effect/landmark/corpsespawner/security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/white, +/area/varadero/interior/security) +"wAD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 }, -/area/varadero/interior/research) -"wAE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, -/area/varadero/interior/electrical) +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "wBc" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wBp" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"wBf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/farocean) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "wBD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/uscm{ @@ -35136,49 +28635,26 @@ /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/carpet, /area/varadero/interior/library) -"wBN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" +"wBJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wCo" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 }, -/area/varadero/interior/cargo) -"wBY" = ( -/obj/structure/prop/invuln/minecart_tracks{ +/obj/structure/barricade/handrail/wire{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"wCc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"wCx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -8; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "wCE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"wCR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "wDi" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/gm/coast/beachcorner2/north_west, @@ -35187,70 +28663,47 @@ /obj/structure/largecrate/random/mini/ammo, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"wDH" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"wDN" = ( -/obj/structure/disposalpipe/segment{ +"wDw" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"wDZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"wEn" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"wEL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/morgue) -"wEU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"wED" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance) -"wFx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 }, -/area/varadero/interior_protected/maintenance/south) -"wFJ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"wFD" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/farocean) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach/lz) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ id = "undergroundhangarwest"; @@ -35261,35 +28714,20 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"wFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"wGl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"wGs" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"wFV" = ( +/obj/structure/girder, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"wGi" = ( +/obj/item/weapon/gun/flare{ + current_mag = null }, -/area/varadero/interior/comms3) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"wGE" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -35297,102 +28735,68 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wGV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +"wGT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "wHk" = ( /turf/closed/wall, /area/varadero/interior/maintenance/north) +"wHm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "wHt" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wHu" = ( -/obj/structure/prop/static_tank/fuel{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"wIg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz1_near) -"wIm" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"wIr" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"wIH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ +"wHU" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/administration) -"wJl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"wHV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/varadero/exterior/pontoon_beach) -"wJu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wJi" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wJr" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"wJx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + pixel_y = 9 }, -/area/varadero/interior/cargo) -"wJB" = ( -/obj/item/device/motiondetector/hacked, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wJG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"wKd" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_NW) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -35404,74 +28808,53 @@ /obj/item/stack/sandbags/large_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wLq" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"wLv" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"wLB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"wLF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"wLw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_SE) -"wLR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray/tricordrazine{ - pixel_x = -14; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Treatment"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "wMj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"wMu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/security) -"wMw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz1_near) -"wMx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"wME" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"wMO" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wNc" = ( +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/disposals) "wNz" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -35479,43 +28862,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"wNV" = ( -/obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"wOC" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wOL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +"wOD" = ( +/obj/structure/largecrate/random/case/double{ + anchored = 1 }, -/area/varadero/interior/disposals) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "wOO" = ( /turf/closed/wall/r_wall, /area/varadero/interior/electrical) @@ -35523,21 +28875,23 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"wPl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"wOS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"wPf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wPs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -35553,202 +28907,155 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wPE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"wPH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"wQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"wQh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"wQi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Colony Offices"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"wRi" = ( +"wPw" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"wRu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/varadero/interior/medical) -"wRB" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = 1; + pixel_y = -2 }, -/area/varadero/interior/hall_N) -"wRR" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wPF" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"wSx" = ( -/turf/closed/wall, -/area/varadero/interior/laundry) -"wSL" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"wSX" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"wPH" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"wTE" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 + dir = 1 }, -/obj/item/stack/cable_coil/pink{ - pixel_x = -7; - pixel_y = -4 +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"wRe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"wRr" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"wRP" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"wSr" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"wSx" = ( +/turf/closed/wall, +/area/varadero/interior/laundry) +"wTz" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/maintenance/north) +"wTA" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) "wTJ" = ( /turf/open/floor/plating, /area/varadero/interior/disposals) -"wTM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"wUj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"wUr" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"wUh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"wUq" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/exterior/lz1_near) "wUF" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"wUG" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) "wUU" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/varadero/interior/oob) -"wVa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/medical) "wVf" = ( /turf/closed/wall/r_wall, /area/varadero/interior/security) +"wVg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "wVp" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"wVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"wVE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +"wVy" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/hall_SE) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "wVI" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"wVT" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "wWd" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator, /area/varadero/interior/records) +"wWj" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"wWn" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"wWp" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"wWu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "wWx" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -35768,6 +29075,11 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"wWL" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "wXc" = ( /obj/item/reagent_container/glass/bucket{ pixel_y = -3 @@ -35778,32 +29090,37 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/lz1_near) +"wXk" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wXm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "wXs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"wXu" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"wXC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wXD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"wXx" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"wXO" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 5 }, -/area/varadero/interior/hall_SE) +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -35827,62 +29144,94 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wYF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ +"wYl" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"wYp" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"wYu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wZe" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"wZg" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"wZt" = ( +/obj/structure/barricade/wooden{ dir = 1 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"wZx" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/white, +/area/varadero/interior/laundry) "wZF" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"xag" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xat" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/varadero/interior_protected/maintenance/south) -"xaK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) -"xbc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/clothing/head/uppcap/peaked, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xav" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/caves/north_research) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xaH" = ( +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8; + pixel_y = 18 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"xbe" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "xbm" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"xbA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xbU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"xbD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "xce" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -35899,52 +29248,58 @@ "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) -"xcz" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xcl" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/caves/east) -"xcE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xct" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/exterior/lz1_near) -"xdz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"xdd" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"xdn" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"xdq" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"xdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) -"xdJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) -"xdW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"xdP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -35957,20 +29312,6 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xeV" = ( -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"xff" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) @@ -35987,54 +29328,27 @@ "xfQ" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xgG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/administration) -"xgU" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xgc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xgj" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_SE) -"xgW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/tool/stamp/clown{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/tool/stamp/rd{ - pixel_x = 7; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, +"xgq" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"xgG" = ( +/turf/closed/wall/r_wall, /area/varadero/interior/administration) "xgY" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"xhs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) "xhx" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -36050,84 +29364,91 @@ /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xiV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate/ammo/alt, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"xjp" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xjf" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/electrical) -"xka" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/area/varadero/interior_protected/vessel) -"xkb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random{ - pixel_y = 5 +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/obj/item/clothing/glasses/science{ - pixel_y = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"xjG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/security) +"xjS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) "xke" = ( /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"xkj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"xkk" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/varadero/interior/medical) -"xlb" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/hall_SE) -"xlv" = ( +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"xks" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/disposals) -"xml" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xkL" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"xkP" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"xmc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -36136,169 +29457,158 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xne" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +"xmX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"xns" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/area/varadero/interior/maintenance) -"xnr" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"xnu" = ( +/obj/structure/machinery/space_heater, /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "xnS" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/eastbeach) -"xnV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"xoj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/morgue) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xoT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) +"xoY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xpD" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior/maintenance/security) -"xpL" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/obj/structure/machinery/landinglight/ds1/spoke{ - pixel_y = -5; - pixel_x = -13 +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqG" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"xqN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"xqP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"xqS" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, +"xqn" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xqt" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"xqw" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"xqA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"xqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light{ - dir = 4 +"xqQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"xrJ" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/cargo) -"xrl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"xrT" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"xrZ" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/interior/oob) +"xst" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xsS" = ( +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"xts" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) +"xtx" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"xty" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = -6; + pixel_y = -1 }, -/area/varadero/exterior/farocean) -"xrA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = 6; + pixel_y = 1 }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"xsi" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"xsH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"xtV" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ @@ -36310,25 +29620,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xug" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"xuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"xuo" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/area/varadero/interior/hall_N) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "xuJ" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -36338,118 +29635,93 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xuN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"xuT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"xuS" = ( +/obj/structure/surface/rack, +/obj/item/broken_device{ + desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"xuW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"xuX" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"xvj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +"xvr" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xvF" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) -"xwk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"xwG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xvI" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 4 }, -/area/varadero/interior/maintenance/research) -"xwY" = ( -/obj/structure/machinery/light{ +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"xxk" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"xxo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"xwb" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 +/obj/structure/barricade/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xwd" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 4; + icon_state = "leftsecure"; + id = "brg" }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = 2; - pixel_y = 17 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"xwg" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/varadero/interior/bunks) -"xxs" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xwt" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"xwz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/area/varadero/interior/maintenance/security) -"xxE" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xwL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" }, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"xwP" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xwT" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) +"xwV" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"xxk" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -36462,129 +29734,70 @@ /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"xxZ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"xya" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/under/shorts/blue{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/red{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"xyr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"xyJ" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/records) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xyU" = ( -/obj/structure/closet/crate/secure, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "xza" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"xzc" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/pontoon_beach) -"xzd" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" +"xzi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/toilets) +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "xzj" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/library) -"xzr" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"xzB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/comms3) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"xzO" = ( +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) -"xAs" = ( -/obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) -"xAK" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"xAO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"xBv" = ( +"xAT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - name = "\improper Underground Lavatory"; - req_access_txt = "100" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"xAY" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"xBd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "xBw" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -36592,32 +29805,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"xBH" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"xBS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"xCd" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"xBX" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) +"xCk" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) @@ -36629,19 +29825,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"xCM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"xCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) "xCZ" = ( /obj/structure/prop/tower, /turf/open/gm/dirt, @@ -36657,99 +29840,100 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xDf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/scientist, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"xDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Sports Center"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) +"xDv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/technical_storage) "xDE" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"xEc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"xEl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) +"xEu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xEG" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xFb" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/eastocean) -"xFw" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 +"xFk" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"xFn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cdeathalarm_kit{ + pixel_x = -8; + pixel_y = 1 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xFx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/laundry) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) -"xFO" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" +"xFH" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/mess) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xFR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance/north) "xFS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"xFZ" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +"xFT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"xGd" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70{ + pixel_y = -2 }, -/area/varadero/interior/medical) -"xGp" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"xGk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"xGs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -36769,67 +29953,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xHz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"xIA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"xHD" = ( +/obj/structure/disposalpipe/segment, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/yellowcorners, /area/varadero/interior/cargo) -"xJb" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"xJt" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"xJx" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) +"xIu" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"xJE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJZ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"xKo" = ( -/obj/structure/surface/table, -/obj/item/storage/wallet/random{ - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +"xJN" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xJX" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, +/area/varadero/interior/security) "xKq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ @@ -36859,63 +30010,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xKC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"xKL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) -"xKS" = ( -/obj/structure/lz_sign/new_varadero, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"xLB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"xKR" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/hall_N) +"xLi" = ( +/obj/structure/prop/rock/brown{ + layer = 2 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -36923,34 +30034,20 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/varadero/interior/security) -"xLN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"xMq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"xMs" = ( -/obj/item/paper, -/turf/open/floor/shiva{ +"xLK" = ( +/obj/structure/window/phoronreinforced{ dir = 4; - icon_state = "multi_tiles" + icon_state = "phoronrwindow" }, -/area/varadero/interior/morgue) -"xNb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xMp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/white, +/area/varadero/interior/toilets) "xNw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, @@ -36959,93 +30056,59 @@ /obj/structure/fence, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"xNE" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) -"xNY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xNS" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"xOu" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"xPp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"xOo" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"xOx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/popcorn, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"xOz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"xOI" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"xOX" = ( +"xPZ" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"xPj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"xPx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "\improper Theta-V Research Laboratory Director's Office"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"xPV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/electrical) -"xQe" = ( -/obj/structure/window/reinforced{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xQl" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 }, -/turf/open/floor/shiva{ - icon_state = "purple" +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"xQw" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" }, -/area/varadero/interior/research) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -37054,27 +30117,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xRt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "xRx" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/gun/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, /turf/open/floor/wood, /area/varadero/interior/security) +"xRB" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "xRF" = ( /turf/closed/wall, /area/varadero/interior/hall_N) +"xRS" = ( +/obj/item/cell/high, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xSg" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -37093,88 +30163,49 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xTd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 +"xTh" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"xTt" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"xTD" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xUb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) -"xTA" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"xTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "xUp" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"xUq" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) "xUu" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/shield/riot, /turf/open/floor/carpet, /area/varadero/interior/library) -"xUH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/varadero/interior/court) -"xVe" = ( -/obj/item/prop/helmetgarb/bullet_pipe{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/fertilizer/l4z{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"xVw" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"xUQ" = ( +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) +"xVd" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/varadero/exterior/farocean) -"xVA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"xVC" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/sosjerky, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "xVQ" = ( /obj/structure/sign/safety/reception, /obj/structure/sign/safety/one{ @@ -37182,54 +30213,45 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance/north) -"xVX" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"xWj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"xVS" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "red" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"xWL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) +"xWd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/exterior/eastbeach) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"xWs" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xWz" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) -"xWY" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"xXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/paint/black{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/tool/wirecutters/clippers, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "xXp" = ( /obj/structure/closet/crate/ammo/alt, /obj/item/ammo_magazine/rifle/m4ra{ @@ -37249,53 +30271,39 @@ }, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xXr" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"xXw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xXD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"xXH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"xYp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "xYB" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"xYC" = ( -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"xYM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "xZa" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"xZv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"xZw" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "xZD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -37306,89 +30314,35 @@ }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"xZN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"xZO" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +"xZE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"yab" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"yaf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"yaC" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Navigation Chamber" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"yba" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"ybj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/research) +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"ybl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "ybm" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"ybt" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ybH" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ybL" = ( /obj/structure/filingcabinet{ density = 0; @@ -37404,18 +30358,11 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"ybY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/stamp{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) +"ycc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ycz" = ( /obj/structure/machinery/shower{ dir = 8 @@ -37423,13 +30370,18 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"ycE" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"ycL" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "ycY" = ( /obj/item/trash/ceramic_plate{ pixel_x = -8; @@ -37438,6 +30390,18 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) +"ydo" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) +"ydu" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken, +/area/varadero/interior/beach_bar) "ydx" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -37449,69 +30413,47 @@ "ydI" = ( /turf/open/floor/carpet, /area/varadero/interior/records) -"ydP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" +"ydK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/medical) -"ydQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"ydX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"yeg" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"ydZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/weapon/gun/rifle/sniper/svd, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"yeF" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"yem" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/security) -"yeG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/camera, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"yeH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) "yeJ" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) +"yeO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach/lz) "yeR" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/stack/tile/plasteel{ @@ -37520,32 +30462,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"yeY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"yfh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"yfQ" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +"yeW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"yfj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "yfT" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -37571,46 +30498,25 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"ygn" = ( -/obj/structure/catwalk{ - indestructible = 1 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +"ygj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/interior/maintenance/north) -"ygT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ygW" = ( +/obj/item/reagent_container/food/snacks/eat_bar{ pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"ygY" = ( -/obj/item/card/id/silver{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ygZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 + pixel_y = 2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = -9 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "yhy" = ( /obj/structure/filingcabinet{ density = 0; @@ -37632,6 +30538,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"yhM" = ( +/obj/item/circuitboard/apc, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "yhU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, @@ -37648,64 +30558,68 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yil" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance) -"yiA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"yib" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/item/tool/pen/blue, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 5 }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"yji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 +"yic" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/device/flashlight, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"yil" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance) +"yiG" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/item/storage/firstaid/rad{ +/turf/open/floor/plating/warnplate/east, +/area/varadero/interior/disposals) +"yjq" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"yjp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"yjG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "yjH" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yjK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "ykc" = ( /turf/closed/wall, /area/varadero/interior/cargo) +"ykg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ykk" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "yks" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/research) @@ -37713,22 +30627,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"ykx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"ykA" = ( -/obj/structure/closet/crate/construction, -/obj/item/storage/belt/utility/full, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/eastbeach) "ykM" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -37739,6 +30637,13 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"ykT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "ykU" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, @@ -37747,6 +30652,16 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"ylN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "ylX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -37756,6 +30671,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"ylZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "ymb" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, @@ -37984,30 +30906,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -38166,30 +31088,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -38348,30 +31270,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -38530,30 +31452,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -38600,7 +31522,7 @@ xCn xCn xCn srg -ljt +was dxK pGs pGs @@ -38712,30 +31634,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -38759,7 +31681,7 @@ pGs pGs pGs uHY -ljt +was xCn xCn xCn @@ -38782,12 +31704,12 @@ xCn xCn xCn xCn -oPQ +qFn xCn cBI xCn -emt -ljt +xCn +was pGs pGs pGs @@ -38894,30 +31816,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +jNI pGs pGs pGs @@ -38936,25 +31858,25 @@ pGs pGs srg srg -ljt +was pGs pGs uHY xCn -oPQ +qFn xCn xCn xCn xCn xCn -qRi -oPQ +bJM +qFn xCn xCn xCn xCn xCn -oPQ +qFn xCn xCn srg @@ -38964,12 +31886,12 @@ xCn oVt xCn xCn -oPQ +qFn xCn cBI xCn -oPQ -oPQ +qFn +qFn xCn pGs pGs @@ -39076,31 +31998,31 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg pGs pGs pGs @@ -39118,25 +32040,25 @@ srg xCn xCn xCn -oPQ +qFn uHY xCn qYg xCn -oPQ +qFn srg xCn srg xCn -oPQ -oPQ -oPQ +qFn +qFn +qFn xCn xCn srg srg xCn -oPQ +qFn xCn xCn xCn @@ -39151,7 +32073,7 @@ xCn cBI xCn xCn -oPQ +qFn kAL xCn fHk @@ -39258,32 +32180,32 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg pGs pGs pGs @@ -39300,7 +32222,7 @@ xCn xCn fHk xCn -oPQ +qFn xCn xCn xCn @@ -39311,14 +32233,14 @@ xCn xCn xCn xCn -oPQ -oPQ +qFn +qFn xCn xCn oVt xCn sfF -ljt +was uHY qul qul @@ -39440,33 +32362,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -39476,28 +32398,28 @@ xCn xCn xCn xCn -oPQ -oPQ -oPQ +qFn +qFn +qFn xCn xCn oVt xCn xCn -oPQ +qFn xCn xCn hGl tMJ wpG -vYp +kOv tMJ ncL yks yks ncL tMJ -vYp +kOv tMJ yks yks @@ -39622,33 +32544,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +jNI +jNI +jNI pGs pGs pGs @@ -39656,44 +32578,44 @@ pGs xCn xCn xCn -xbc +osp xCn -oPQ -oPQ -oPQ +qFn +qFn +qFn xCn xCn xCn -oPQ +qFn xCn xCn srg xCn hGl -efw +dCN kXQ -efw +dCN kXQ kXQ -fND +sJQ xCq kXQ -efw -jGA -efw -efw -awu +dCN +wjG +dCN +dCN +wWL fay -uuN -sqG -hBX +hyg +fVD +oOK fay -eqe -xyr -fWA -mEA -sBk -ksn +waK +aFB +kfv +avO +aND +fjA pGc srg xCn @@ -39804,78 +32726,78 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI sNx -mPk -imk -mPk -imk +jNI +oYg +jNI +oYg pGs pGs pGs pGs xCn xCn -oPQ +qFn xCn -oPQ +qFn xCn xCn xCn xCn xCn xCn -oPQ +qFn xCn uHY xCn xCn -mQF -efw +wxG +dCN kXQ -efw -efw -efw +dCN +dCN +dCN kXQ -pJA +ckP kXQ -efw -efw -efw -mzI -efw +dCN +dCN +dCN +mgl +dCN fay -wIr -mym -sDM +qHM +nlr +qVW fay -cJa -hDA -pjs -aJc -hDA -xrA +dgU +nms +mgM +khS +nms +tic pGc srg xCn @@ -39986,33 +32908,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI sNx -mPk -mPk -rYR +jNI +jNI +rPO pGs pGs pGs @@ -40028,15 +32950,15 @@ qul uHY srg srg -ljt +was qul qul qul uHY hhM -qDh -qlj -qlj +qgQ +xBd +xBd yks aoE yks @@ -40044,20 +32966,20 @@ yks aoE yks yks -efw -qMY -efw -dkr -tKE -hfX -xQe -dkr -qMD -hDA -iAp -gwC -hDA -tMx +dCN +pAM +dCN +sIx +gZi +adO +nGY +sIx +opi +nms +knB +peq +nms +jwo tqh dxK xCn @@ -40168,43 +33090,43 @@ pGs pGs pGs pGs -cJL -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -vlm -imk -mPk -imk -xTA +sgg +jNI +jNI +jNI +sgg +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +oGX +oYg +jNI +oYg +rdH pGs pGs pGs qul -ljt -oPQ -oPQ -oPQ -ljt +was +qFn +qFn +qFn +was qul qul qul @@ -40216,30 +33138,30 @@ qul qul qul hhM -efw -efw -kYN +dCN +dCN +kfe yks cka fla vFf eGP -nPE +nME yks -bag -qMY -efw +fSy +pAM +dCN fay -tGl -loW -fUY +hpC +gqd +jSm fay -qtQ -fef -hDA -gwC -odD -rjE +vYO +jmR +nms +peq +qmb +xoY fay qul qul @@ -40350,43 +33272,43 @@ pGs pGs pGs pGs -wBp -wBp -rYC -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -wBp -oNa -mYA -cLV -eCB +uBN +uBN +btV +ngJ +uBN +uBN +uBN +btV +ngJ +uBN +uBN +uBN +uBN +ngJ +btV +uBN +uBN +uBN +ngJ +uBN +btV +uBN +uBN +uBN +pwH +vfO +lRk +meH klT klT klT klT -vYp +kOv ncL tMJ yks -vYp +kOv yks yks yks @@ -40398,9 +33320,9 @@ yks yks yks yks -efw -efw -efw +dCN +dCN +dCN yks mzJ rbU @@ -40409,17 +33331,17 @@ sdU rbU yks yks -fdA -vYp +smP +kOv fay fay -fKz +jPE fay fay fay -lBw -ltW -tkw +qZi +amo +dph ftA fay fay @@ -40429,7 +33351,7 @@ ebr pKK vYW loA -uQa +rqr vYW vYW vYW @@ -40532,77 +33454,77 @@ pGs pGs pGs pGs -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -tER -sNy -dWH -jhW -jhW -jhW -mxx -jGm -fND -uVo +wDw +qTP +wDw +wDw +wDw +wDw +wDw +wDw +wDw +qTP +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +qTP +wDw +wDw +oOQ +wDw +lKi +jCC +jCC +jCC +uwM +afP +sJQ +tWJ kXQ kXQ -efw -fND -uVo +dCN +sJQ +tWJ kXQ -efw -xwG +dCN +nht xCq kXQ kXQ -efw -efw -fND -uVo -efw -efw -efw -efw +dCN +dCN +sJQ +tWJ +dCN +dCN +dCN +dCN pCP ovC ovC nOQ lIO rbU -aCz -uuN -nuQ -rQV -rQV -rQV -nuQ -sKe -cGx -iLz -cGT -rQV -nuQ -hBX +bhs +hyg +rbl +nuh +nuh +nuh +rbl +buh +kje +vmP +jqP +nuh +rbl +oOK eEY xhx fay @@ -40714,79 +33636,79 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw lyP -sNy +wDw lyP -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -nVv -efw -efw -qVp -sQn -sQn -rxI -sQn -sQn -sQn -sQn -rxI -sQn -sQn -sQn -rxI -sQn -sQn -sQn -sQn -tVD -rxI -sQn -dTl -vdq -efw -efw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +nGN +dCN +dCN +eyp +rFz +rFz +upN +rFz +rFz +rFz +rFz +upN +rFz +rFz +rFz +upN +rFz +rFz +rFz +rFz +aHG +upN +rFz +oSS +aSw +dCN +dCN aoE mbf ovC ovC ovC rbU -aCz -wIr -qQF -ltW -cNT -ltW -qQF -ltW -ltW -ltW -ltW -ltW -qQF -eWR -oXi -gEy +bhs +qHM +oPX +amo +lnm +amo +oPX +amo +amo +amo +amo +amo +oPX +qDg +mai +aNW fay ebr ebr @@ -40794,8 +33716,8 @@ ebr vYW vYW vYW -uQa -uQa +rqr +rqr vYW neq vYW @@ -40896,89 +33818,89 @@ pGs pGs pGs pGs -tER -sNy -sNy -sNy -sNy +oOQ +wDw +wDw +wDw +wDw lyP -sNy -sNy -sNy +wDw +wDw +wDw lyP -sNy -sNy -sNy -sNy -sNy -sNy -wLq +wDw +wDw +wDw +wDw +wDw +wDw +fYp lyP lyP -sNy -dhV -ozD -nFH -ozD -jpZ -byU -byU -qMY -efw -efw -efw -pJA -jGA -efw -efw -efw -pJA -efw -efw -efw -pJA -efw -efw -efw +wDw +xFk +hPB +kdr +hPB +pdo +gwg +gwg +pAM +dCN +dCN +dCN +ckP +wjG +dCN +dCN +dCN +ckP +dCN +dCN +dCN +ckP +dCN +dCN +dCN kXQ kXQ -pJA -efw -jif -efw -miP +ckP +dCN +cAL +dCN +smL yks qBU rbU ovC adC rbU -aCz -wIr -ezI -wdg -yba -pVl -xDf -wmg -izs -vku -izs -wmg -vSY -izs -oyi -sDM +bhs +qHM +aXc +dAs +xnu +gcq +sZk +rsq +hhz +lcW +hhz +rsq +cqo +hhz +aRS +twP fay ebr ebr ebr vYW vYW -uQa +rqr vYW vYW -uQa +rqr vYW vYW vYW @@ -41078,35 +34000,35 @@ pGs pGs pGs pGs -sNy -sNy -tER -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +wDw +wDw +oOQ +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw +wDw lyP -wLq -sNy -sNy -hlG -pVz -skp -skp -vLc -qDh -qlj -vvh -qlj +fYp +wDw +wDw +oGq +bzy +dZR +dZR +wCo +qgQ +xBd +lbD +xBd yks yks yks @@ -41125,10 +34047,10 @@ yks yks yks yks -bvE -qMY -mxx -cbv +hUJ +pAM +uwM +eFx yks vNG rbU @@ -41136,32 +34058,32 @@ pYJ nCV ovC fay -wIr -ltW -xuT -eYe -qQF -ltW -dQl -rWJ -jJp -aJI -dQl -rWJ -ltW -qQF -fYV +qHM +amo +aog +fsf +oPX +amo +nrf +oqg +qPN +mkL +nrf +oqg +amo +oPX +xdn fay ebr ebr vYW vYW -uQa +rqr jAI vYW -uQa -uQa -uQa +rqr +rqr +rqr vYW vYW vYW @@ -41260,35 +34182,35 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -mLg -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -ozD -nFH -tdX -ifB -lCK -ifB -lCK -efw -efw -qMY -cyT +wDw +wDw +wDw +wDw +wDw +wDw +wDw +cwr +kdr +kdr +kdr +kdr +kdr +kdr +kdr +kdr +kdr +kdr +hPB +kdr +rpS +flN +sTo +flN +sTo +dCN +dCN +pAM +vxJ yks qul qul @@ -41298,8 +34220,8 @@ uHY uHY qHc qHc -oPQ -ljt +qFn +was qul qul qul @@ -41307,32 +34229,32 @@ qul qul qul yks -sDE -wuA -efw -rme +bXU +aKc +dCN +wPw aoE qKq axY lNw urE xNw -xPx -wIr -ltW -pCc -kvx -qQF -rWJ -hyQ -ltW -jgw -rWJ -tve -ltW -ltW -qQF -eXr +hvH +qHM +amo +moE +mLU +oPX +oqg +wVg +amo +kIn +oqg +dCD +amo +amo +oPX +fEM fay ebr vYW @@ -41342,8 +34264,8 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW @@ -41442,45 +34364,45 @@ pGs pGs pGs pGs -sNy -wLq -sNy -sNy -sNy -sNy -sNy -sHJ -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -efw -efw -qMY -efw +wDw +fYp +wDw +wDw +wDw +wDw +wDw +dHP +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +flN +dCN +dCN +pAM +dCN yks qul qul qul -ljt -oPQ +was +qFn xCn xCn -oPQ -oPQ +qFn +qFn qHc xCn xCn @@ -41489,10 +34411,10 @@ qul qul qul yks -mbu -qMY -efw -nKr +xRB +pAM +dCN +hPk yks gWA xxO @@ -41500,21 +34422,21 @@ rFD ncC qBQ fay -jcB -ltW -hux -brx -qQF -rWJ -dzN -ltW -iFy -rWJ -ofI -ltW -ltW -lRU -leI +sgC +amo +kpO +ggq +oPX +oqg +jHC +amo +oVj +oqg +sUO +amo +amo +gEw +hnt tqh rpw neq @@ -41524,8 +34446,8 @@ vYW ixl hto vYW -uQa -uQa +rqr +rqr vYW vYW vYW @@ -41625,43 +34547,43 @@ pGs pGs pGs pRV -sNy -wLq -sNy -sNy -sNy -sNy -dsC -rNf -mdy -nQR -nQR -nQR -nQR -nQR -nQR -qOO -rNf -mdy -nQR -pTQ -ifB -ifB -ifB -ifB -efw -efw -qMY -aoi +wDw +fYp +wDw +wDw +wDw +wDw +pRx +aWk +wPF +cBi +cBi +cBi +cBi +cBi +cBi +swX +aWk +wPF +cBi +uBh +flN +flN +flN +flN +dCN +dCN +pAM +tJs yks yks qul qul -oPQ -oPQ -oPQ +qFn +qFn +qFn xCn -oPQ +qFn xCn xCn xCn @@ -41671,10 +34593,10 @@ cgr qul qul yks -ico -vBk -efw -efw +uQG +wHm +dCN +dCN yks yks yks @@ -41682,22 +34604,22 @@ aoE yks yks yks -iYb -ltW -kCy -cpy -qQF -ltW -yji -ltW -dQl -ltW -eUr -rWJ -ltW -sKL -xbD -dkr +wzy +amo +hWP +dib +oPX +amo +cDW +amo +nrf +amo +hPR +oqg +amo +ulX +oHu +sIx rpw neq vYW @@ -41705,9 +34627,9 @@ vYW ebr ebr ebr -uQa -uQa -uQa +rqr +rqr +rqr vYW hto vYW @@ -41807,35 +34729,35 @@ pGs pGs lYo cNt -sNy -tER -sNy -wLq -uTj -sNy -dsC -rNf -izl -sNy -wLq -sNy -wLq +wDw +oOQ +wDw +fYp +rKq +wDw +pRx +aWk +dgN +wDw +fYp +wDw +fYp lyP -sNy -sHJ -rNf -izl -ekO -aCd -ifB -ifB -kYM -ifB -mPX -efw -qMY -efw -mbu +wDw +dHP +aWk +dgN +foa +khy +flN +flN +aBn +flN +nBt +dCN +pAM +dCN +xRB yks qul qul @@ -41843,7 +34765,7 @@ xCn oVt xCn xCn -oPQ +qFn xCn xCn xCn @@ -41854,31 +34776,31 @@ pea qul yks yks -uzN -sQn +qif +rFz vSd -sQn -fdn +rFz +jfs yeR -sQn -jQM -sQn -bZg -giq -izs -izs -kSF -clv -ltW -rWJ -ltW -ltW -ltW -ltW -ltW -ltW -sKL -gka +rFz +dum +rFz +alx +ccR +hhz +hhz +cGH +bwA +amo +oqg +amo +amo +amo +amo +amo +amo +ulX +aBE fay rpw vYW @@ -41886,10 +34808,10 @@ vYW vYW vYW ebr -alL -uQa -uQa -uQa +iNQ +rqr +rqr +rqr vYW vYW neq @@ -41989,42 +34911,42 @@ pGs qfr nbB cNt -wLq -wLq -sNy -sNy -sNy -sNy -dsC -rNf -izl -wLq -sNy +fYp +fYp +wDw +wDw +wDw +wDw +pRx +aWk +dgN +fYp +wDw lyP lyP -sNy -uTj -sHJ -rNf -izl +wDw +rKq +dHP +aWk +dgN lyP -hlG -ifB -ifB -ifB -ifB -efw -byU -qMY -efw -mbu +oGq +flN +flN +flN +flN +dCN +gwg +pAM +dCN +xRB yks qul uHY xCn xCn xCn -oPQ +qFn xCn xCn qul @@ -42036,31 +34958,31 @@ bdH qul qul yks -kDh -efw -efw -efw -jGA -efw -efw -qMY -byU +taG +dCN +dCN +dCN +wjG +dCN +dCN +pAM +gwg aoE -tGl -xAK -xAK -xAK -loW -xAK -xAK -nQH -mVc -nYx -xAK -ltW -ltW -fWn -vVy +hpC +rIj +rIj +rIj +gqd +rIj +rIj +pSt +lMH +iJs +rIj +amo +amo +kcy +bCe fay rpw neq @@ -42068,10 +34990,10 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa +rqr +rqr +rqr +rqr vYW vYW vYW @@ -42172,33 +35094,33 @@ nbB qfr dpW oIc -wLq -wLq -tER -sNy -sNy -dsC -rNf -izl -wLq -sNy +fYp +fYp +oOQ +wDw +wDw +pRx +aWk +dgN +fYp +wDw lyP -sNy -sNy -sNy -sHJ -rNf -izl -wLq -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -fZd +wDw +wDw +wDw +dHP +aWk +dgN +fYp +oGq +flN +flN +flN +flN +dCN +dCN +pAM +diD yks yks qul @@ -42218,31 +35140,31 @@ xCn qul qul yks -alG -xVe +gta +oGU kXQ kXQ qOS -efw -efw -qMY -knP +dCN +dCN +pAM +hqv yks -dMm -bcg -bmt +oEZ +kIP +rcK fay -xxE +qIe fay -dkr +sIx fay fay fay -dQl -hDA -hDA -icn -qPd +nrf +nms +nms +jOl +tFj fay ebr vYW @@ -42250,10 +35172,10 @@ hto vYW neq vYW -uQa -uQa -uQa -uQa +rqr +rqr +rqr +rqr vYW vYW vYW @@ -42355,31 +35277,31 @@ rcu fQK dpW pRV -wLq -wLq -wLq -wLq -dsC -plF -izl -wLq -uTj -sNy -sNy -sNy -sNy -sHJ -rNf -iVD +fYp +fYp +fYp +fYp +pRx +mus +dgN +fYp +rKq +wDw +wDw +wDw +wDw +dHP +aWk +lFH lyP -hlG -ifB -ifB -kyI -ifB -efw -byU -qMY +oGq +flN +flN +wpF +flN +dCN +gwg +pAM yks yks qul @@ -42389,7 +35311,7 @@ xCn xCn qHc xCn -oPQ +qFn xCn xCn xCn @@ -42406,25 +35328,25 @@ vSN vSN yks yks -qDh -vBF -qlj +qgQ +lap +xBd yks -uuN -rQV -rQV -rQV -nuQ -lKS -sCK -lLe -nLw +hyg +nuh +nuh +nuh +rbl +xqw +htO +eQE +cnz fay -rex -hDA -hDA -icn -hEN +ejA +nms +nms +jOl +mqv fay ebr ebr @@ -42432,8 +35354,8 @@ vYW ckM vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW @@ -42538,30 +35460,30 @@ nbB qfr dpW oIc -wLq -wLq -dhV -mwm -rNf -iZj -vqR -wLq -wLq -wLq -llj -dhV -qCY -rNf -iZj -dkC -hlG -xCM -lCK -ifB -lCK -qDh -qlj -lWB +fYp +fYp +xFk +mDT +aWk +olB +rkK +fYp +fYp +fYp +kax +xFk +mKg +aWk +olB +gXa +oGq +riP +sTo +flN +sTo +qgQ +xBd +hbE yks qul qul @@ -42571,7 +35493,7 @@ qHc xCn xCn xCn -oPQ +qFn qHc xCn xCn @@ -42588,24 +35510,24 @@ qul qul qul yks -efw -qMY -kYN +dCN +pAM +kfe yks -pfD -ltW -ltW -ltW -qQF -ltW -ltW -ltW -jHI +oBO +amo +amo +amo +oPX +amo +amo +amo +uHl fay -lBw -hDA -tnN -cPR +qZi +nms +jxD +knu fay fay ebr @@ -42614,8 +35536,8 @@ ebr vYW vYW vYW -uQa -wUr +rqr +aOv vYW vYW vYW @@ -42722,28 +35644,28 @@ ykM dpW iIY oIc -dsC -ifB -ifB -ifB +pRx +flN +flN +flN kVL iIY iIY pRV -uTj -dsC -ifB -ifB -ifB -iVD -hlG -kvS -laN -rGE -rGE -efw -efw -ybj +rKq +pRx +flN +flN +flN +lFH +oGq +qFG +gMq +dsf +dsf +dCN +dCN +guf yks qul qul @@ -42752,8 +35674,8 @@ qHc mJe xCn xCn -oPQ -oPQ +qFn +qFn xCn tuR xCn @@ -42770,24 +35692,24 @@ cYV qul qul yks -efw -xnr -sQn -bZg -oOF -izs -izs -izs -vSY -izs -dmS -ltW -sAf +dCN +iSB +rFz +alx +fLF +hhz +hhz +hhz +cqo +hhz +mRy +amo +oWK fay -rex -hDA -hDA -bjf +ejA +nms +nms +kKG fay ebr ebr @@ -42796,8 +35718,8 @@ hto vYW vYW vYW -uQa -fFO +rqr +kBg dGu hto vYW @@ -42895,9 +35817,9 @@ pGs pGs huF haP -rQe -vFs -iqv +sKb +ulH +nGk haP uQi nbB @@ -42905,27 +35827,27 @@ fQK nbB dpW red -ifB -lFI -ifB +flN +xjf +flN nhX gor qoj avX ehT kQy -ifB -lFI -ifB -sZW -hnR -ptp -ptp -ptp -kRU -efw -efw -qMY +flN +xjf +flN +gBN +iQe +oHP +oHP +oHP +keo +dCN +dCN +pAM yks qul qul @@ -42934,7 +35856,7 @@ xCn xCn fHk xCn -oPQ +qFn xCn xCn xCn @@ -42946,30 +35868,30 @@ xCn qHc qHc xCn -heu +lCc vQe xCn uHY qul yks -qDh -vvh -qlj +qgQ +lbD +xBd aoE -bjd -mhm -aJW -gun -aWA -dWu -iMc -xAK -ckz +eYF +xty +ijX +dnN +ouo +xuS +cwB +rIj +bTr fay -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN fay ebr ebr @@ -42978,8 +35900,8 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr jAI vYW ebr @@ -43076,38 +35998,38 @@ pGs pGs huF huF -eWp -lMB -lMB -lMB -jPh +ojQ +lsf +lsf +lsf +jZJ uQi uQi uQi uQi uQi ykc -ifB -huf -ifB +flN +pUn +flN ykc -cog +hHp ykc -cog +hHp ykc ykc -gkw -huf -ifB +wdu +pUn +flN ykc uQi uQi uQi uQi uQi -efw -efw -qMY +dCN +dCN +pAM yks qul qul @@ -43116,7 +36038,7 @@ xCn jCs xCn xCn -oPQ +qFn xCn qHc xCn @@ -43134,24 +36056,24 @@ xCn xCn qul yks -efw -qMY -kYN +dCN +pAM +kfe yks fay fay fay fay -dkr -dkr +sIx +sIx fay fay fay fay -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN fay ebr ebr @@ -43160,8 +36082,8 @@ ebr vYW neq vYW -uQa -uQa +rqr +rqr vYW vYW hto @@ -43258,38 +36180,38 @@ pGs pGs huF huF -oTX -tQT -tQT -fQW -jSP +pTe +igM +igM +xZw +ndJ ykc ykc ykc ykc ykc ykc -cog +hHp ykc -uZY +wxE ykc -cAw -cAw -qNC -rSx +fKC +fKC +vDW +dSU ykc -cog +hHp ykc -rnP +xUb ykc ykc ykc ykc ykc ykc -lSg -lSg -vLt +nbQ +nbQ +rcX adw qul uHY @@ -43297,8 +36219,8 @@ xCn xCn xCn qul -ljt -oPQ +was +qFn xCn xCn xCn @@ -43315,10 +36237,10 @@ mJe xCn xCn xCn -efw -efw -qMY -efw +dCN +dCN +pAM +dCN nSi bMx qul @@ -43330,10 +36252,10 @@ qul qul qul fay -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN fay ebr ebr @@ -43341,9 +36263,9 @@ ebr vYW vYW vYW -uQa -uQa -uQa +rqr +rqr +rqr neq vYW vYW @@ -43440,38 +36362,38 @@ pGs pGs huF huF -cne -tQT -tQT -rMM -wjB +qBD +igM +igM +mfY +cNf ykc -pFS -eBL -vjA -pfR -pfR -bRo +cxl +eNg +pNi +khs +khs +vji ykc -kVp -tjS -tjS -tjS -tjS -tjS -iUx -gXh +aWJ +vdK +vdK +vdK +vdK +vdK +jGX +oMZ uXZ -kVp -aDF -tjS -tjS -tjS -aDF +aWJ +uaM +vdK +vdK +vdK +uaM uXZ -pYt -vsa -fcK +pZb +gjc +fYW uSx xCn xCn @@ -43479,9 +36401,9 @@ xCn tuR xCn qul -ljt -oPQ -oPQ +was +qFn +qFn xCn xCn xCn @@ -43490,7 +36412,7 @@ qul xCn xCn qYg -ljt +was hhM hhM xCn @@ -43499,7 +36421,7 @@ qHc xCn kXQ kXQ -qMY +pAM kXQ kXQ xCn @@ -43512,23 +36434,23 @@ uHY qul qul fay -tYT -iCy -iCy -jnq +jCx +jAn +jAn +psa fay ebr hto vYW vYW vYW -uQa -alL -uQa -uQa +rqr +iNQ +rqr +rqr vYW -alL -alL +iNQ +iNQ ebr ebr ebr @@ -43622,38 +36544,38 @@ huF huF huF huF -oTX -tQT -tQT -ssh -pPl +pTe +igM +igM +aCc +nZN ykc -dro -eBL -eBL -eBL -aBp -pfR +hdq +eNg +eNg +eNg +rZT +khs ykc -hic -oJB -plN -sGY -sGY -sGY -sGY -uQK +nsZ +sLo +eLd +uQU +uQU +uQU +uQU +vzF oLM -mIL -xOx -iir -oke -jFh -wGl +xWz +bYz +dBa +uDJ +idZ +ale ykc -pkG -nsn -ehH +dvm +jHO +cwg uSx xCn xCn @@ -43662,55 +36584,55 @@ qHc qHc uHY cYV -dNt -oPQ -oPQ -oPQ -ljt -ljt +txH +qFn +qFn +qFn +was +was xCn -oPQ -oPQ +qFn +qFn xCn xCn -oPQ -oPQ -oPQ -oPQ +qFn +qFn +qFn +qFn qHc -oPQ -efw +qFn +dCN kXQ bRS -efw +dCN kXQ -oPQ -oPQ -oPQ -oPQ -oPQ +qFn +qFn +qFn +qFn +qFn xCn xCn dcM -oPQ +qFn deg -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN lxe -tDo -vYW -vYW -uQa -uQa -uQa -cUZ -tDR -uQa -uQa -uQa -uQa +eai +vYW +vYW +rqr +rqr +rqr +wOD +dlB +rqr +rqr +rqr +rqr ebr ebr ebr @@ -43804,38 +36726,38 @@ huF huF huF huF -fOG -lMB -lMB -vMq -wjB -olP -eBL -eBL -eBL -eBL -mzT -fcg +oOa +lsf +lsf +ptl +cNf +cgt +eNg +eNg +eNg +eNg +blI +uLg uXZ -foF -oJB -sba -bWq -hHK -oke -wGl -dpZ -sou -myo -sGY -sGY -sGY -sGY -sGY +fNc +sLo +nyz +nDR +kOL +uDJ +ale +jOh +ily +umj +uQU +uQU +uQU +uQU +uQU oLM -lSg -lSg -vLt +nbQ +nbQ +rcX bnm qul xCn @@ -43844,55 +36766,55 @@ xCn xCn qHc xCn -oPQ -oPQ -oPQ -oPQ -oPQ +qFn +qFn +qFn +qFn +qFn xCn xCn qHc xCn -oPQ -oPQ +qFn +qFn xCn xCn qHc -oPQ -oPQ -xbc -efw -efw +qFn +qFn +osp +dCN +dCN bRS -efw +dCN kXQ -oPQ -oPQ -oPQ -oPQ +qFn +qFn +qFn +qFn xCn oVt yfT -oPQ -oPQ +qFn +qFn doW -sDM -pnn -mpn -dlv +qVW +kAx +tdI +gvN doW -tDo -uQa -vYW -uQa -uQa -uQa -esM -pdc -ivO -uQa -uQa -uQa +eai +rqr +vYW +rqr +rqr +rqr +cMR +sQU +hlz +rqr +rqr +rqr ebr ebr ebr @@ -43971,54 +36893,54 @@ pGs pGs pGs pGs -knN -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -leG -cWu -cWu -cUF -oVp -wqc -jts -arC -wjB +kpM +ece +ece +ece +ece +ece +ece +ece +ece +ece +ece +cNk +ece +ece +sKf +crb +rWR +nnn +ktd +cNf uXZ -cHS -wVT -wVT -eBL -mzT -xIA +lxU +tlJ +tlJ +eNg +blI +wbL ykc -iZx -oJB -sfs -sGY -sGY -sGY -sGY -pxg -syl -nYL -oke -oRx -hsF -rLW -xyU -keN -lSg -lSg -vLt -lSg +bjw +sLo +rQG +uQU +uQU +uQU +uQU +xXH +iOZ +iHz +uDJ +eRz +pOx +iEF +rqs +qeG +nbQ +nbQ +rcX +nbQ qul qul xCn @@ -44042,40 +36964,40 @@ xCn xCn xCn xCn -oPQ -efw +qFn +dCN kXQ -qMY +pAM kXQ -efw -oPQ -oPQ -oPQ +dCN +qFn +qFn +qFn xCn xCn xCn -oPQ -oPQ -oPQ +qFn +qFn +qFn deg -sDM -wAx -iCy -dlv +qVW +mCU +jAn +gvN rNm -tDo -uQa -uQa -vYW -vYW -uQa -uQa -uQa -mdL -mdL -uQa -uQa -alL +eai +rqr +rqr +vYW +vYW +rqr +rqr +rqr +snR +snR +rqr +rqr +iNQ hto vYW vYW @@ -44153,7 +37075,7 @@ pGs pGs pGs pGs -lPj +aOl huF huF huF @@ -44164,44 +37086,44 @@ huF huF huF huF -luz +eaB huF huF huF -cne -dQK -wBY -lMB -wjB +qBD +dLX +rkQ +lsf +cNf ykc ykc uXZ ykc oLM -vDI +mig ykc ykc -suC -oJB -cPI -bMG -fXX -tJN -nPK -xuN -wJu -uGf -sGY -sGY -sGY -sGY -sGY +iRb +sLo +mZA +bbs +drZ +wwO +qyq +hiZ +eny +dDh +uQU +uQU +uQU +uQU +uQU uXZ -lSg -lSg -vLt -nfX -tng +nbQ +nbQ +rcX +tPe +niD qul qul uHY @@ -44219,17 +37141,17 @@ mJe xCn xCn xCn -ljt +was hhM hhM -ljt -oPQ +was +qFn hhM kXQ kXQ -qMY +pAM kXQ -efw +dCN uHY uHY xCn @@ -44239,11 +37161,11 @@ xCn xCn qYg xCn -bCi -jwy -jvF -iCy -dlv +qXT +rdN +dAF +jAn +gvN fHg oAE vYW @@ -44251,13 +37173,13 @@ vYW vYW vYW vYW -uQa -uQa -mdL -mdL -uQa -uQa -alL +rqr +rqr +snR +snR +rqr +rqr +iNQ vYW cmr vYW @@ -44335,56 +37257,56 @@ pGs pGs huF huF -lPj +aOl huF huF huF huF huF huF -ebJ -ebJ -ebJ -ebJ -uOk +sKS +sKS +sKS +sKS +epf huF rpu huF -oTX -lMB -vUZ -lMB -wjB -eVn -isK -nma -vxM -cdO -pSK -sfM -odZ -mYW -gso -sfs -sGY -sGY -sGY -sGY -uQK +pTe +lsf +iQI +lsf +cNf +kxQ +vEE +uuB +iTM +uLl +sEH +sSF +oOH +rtn +sel +rQG +uQU +uQU +uQU +uQU +vzF ykc -iZx -xVC -wGl -oke -xyU -wGl +bjw +cQF +ale +uDJ +rqs +ale ykc -fuF -lSg -bpH -rdq -lSg -bAj +hAz +nbQ +jhd +ePu +nbQ +oDV qul qul qul @@ -44410,7 +37332,7 @@ qul mCZ kXQ bRS -efw +dCN yks qul qul @@ -44422,10 +37344,10 @@ oVt uHY qul fay -rjZ -iCy -iCy -dlv +lSP +jAn +jAn +gvN fay ebr luZ @@ -44433,28 +37355,28 @@ vYW neq vYW vYW -uQa +rqr vYW vYW -uQa -uQa -uQa +rqr +rqr +rqr vYW -uQa -uQa -uQa +rqr +rqr +rqr vYW vYW vYW -lMb -uQa +bYt +rqr vYW -uQa +rqr vYW vYW vYW vYW -alL +iNQ vYW vYW vYW @@ -44517,7 +37439,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -44532,41 +37454,41 @@ huF huF rpu huF -oTX -lMB -wBY -lMB -wjB -lDN -saC -saC -lDN -oJB -dFd -oJB -oJB -oJB -oJB -xiV -nRk -wGl -hHK -oke -uQK +pTe +lsf +rkQ +lsf +cNf +mFr +eZV +eZV +mFr +sLo +oRg +sLo +sLo +sLo +sLo +cMT +euL +ale +kOL +uDJ +vzF ykc -sCV -sDZ -saC -saC -saC -sDZ +sDm +rtt +eZV +eZV +eZV +rtt ykc -lSg -gKw -vLt -miU -vBC -gKw +nbQ +gna +rcX +nUo +umL +gna qul qul qul @@ -44590,24 +37512,24 @@ qul qul qul yks -qDh -vvh -qlj +qgQ +lbD +xBd yks qul -kli -bTg -aYg +svb +dBQ +psG qul qul qul qul qul fay -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN fay ebr ebr @@ -44615,19 +37537,19 @@ hto vYW rZr vYW -uQa -uQa -uQa +rqr +rqr +rqr vYW -uQa -uQa +rqr +rqr vYW -uQa -uQa -uQa -uQa -uQa -uQa +rqr +rqr +rqr +rqr +rqr +rqr vYW vYW vYW @@ -44699,7 +37621,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -44714,27 +37636,27 @@ huF huF huF huF -nPx -arC -lxr -lMB -wjB -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -sfs -sGY -sGY -sGY -sGY -uQK +qgq +ktd +stq +lsf +cNf +uQU +nrn +nrn +uQU +sLo +oRg +sLo +sLo +sLo +sLo +rQG +uQU +uQU +uQU +uQU +vzF ykc ykc ykc @@ -44743,12 +37665,12 @@ uXZ uXZ ykc ykc -lSg -bFV -vLt -lSg -lSg -gKw +nbQ +qBx +rcX +nbQ +nbQ +gna qul qul qul @@ -44772,24 +37694,24 @@ qul qul qul yks -vwT -qMY -kYN +aOc +pAM +kfe yks qul -gMV -eLZ -rIF -bTg -bTg -rLK -aYg +fKx +ocu +jLr +dBQ +dBQ +oEE +psG qul fay -sDM -iCy -iCy -dlv +qVW +jAn +jAn +gvN fay ebr ebr @@ -44797,12 +37719,12 @@ ebr ebr ebr fRl -hMC -iWE -csr -uQa -uQa -uQa +vlS +olt +aff +rqr +rqr +rqr vYW vYW vYW @@ -44861,8 +37783,8 @@ wUU "} (40,1,1) = {" wUU -nvv -mPk +wmz +jNI pGs pGs pGs @@ -44881,53 +37803,53 @@ pGs pGs huF huF -rbp -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -mSS -jGT -wqc -jRu -lMB -qRe -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -dFd -oJB -oJB -oJB -oJB -uQK +icN +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +sKS +fuT +orj +rWR +stn +lsf +uln +uQU +nrn +nrn +uQU +sLo +oRg +sLo +sLo +sLo +sLo +oRg +sLo +sLo +sLo +sLo +vzF uXZ -gcK -xYM -gAl -swf -qiv +kMt +ftJ +qsE +uvL +wuH ykc xRF -rSu +srr pGJ -dRX +bzt wVI pGJ lsU @@ -44954,37 +37876,37 @@ sdz sdz qul yks -efw -qMY -kNN +dCN +pAM +uLE yks qul -edD -cym -cym -cym -cym -cym -nFp +tEx +pJL +pJL +pJL +pJL +pJL +hgS qul fay -rex -hDA -hDA -bjf +ejA +nms +nms +kKG fay ebr ebr ebr ebr ebr -xEl -rDz -uMQ -uQa -uQa -uQa -uQa +jxq +oVL +qwn +rqr +rqr +rqr +rqr vYW vYW vYW @@ -45000,8 +37922,8 @@ ebr sQN vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW @@ -45043,9 +37965,9 @@ wUU "} (41,1,1) = {" wUU -nvv -mPk -mPk +wmz +jNI +jNI pGs pGs pGs @@ -45063,7 +37985,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45078,67 +38000,67 @@ huF huF huF huF -oTX -iah -wBY -lMB -wjB -lDN -tjS -qGE -dss -bMk -xTd -bMk -bMk -bMk -bMk -gwB -bMk -bMk -bMk -bMk -cKZ -msx -xCU -tVo -tVo -nni -dZT +pTe +eFj +rkQ +lsf +cNf +mFr +vdK +pJY +nry +pxV +mIn +pxV +pxV +pxV +pxV +qSF +pxV +pxV +pxV +pxV +nIf +uug +qPh +ixt +ixt +gMY +cZB oLM -fYA -fYA -fYA -cYc -mGb -lgP -lzu -mGb -qHu -mGb -lzu -lgP -uOC -arg +uld +uld +uld +kVd +whH +hQY +bPn +whH +wll +whH +bPn +hQY +lCD +erh pGJ pGJ pGJ pGJ pGJ -vWG -oRB -tzp -wtB -nXY -pSD -roy -umO +fqT +gZh +jhY +nLF +sKE +omW +jAm +jYm sdz sdz sdz -iRR -wmL -iRR +nTh +jkn +nTh sdz sdz kGM @@ -45151,8 +38073,8 @@ kGM sdz sdz kGM -aRr -nBH +hxB +pLe miy sdz sdz @@ -45160,14 +38082,14 @@ sdz sdz sdz ebr -tSR -tDo +btI +eai vYW vYW vYW vYW jAI -uQa +rqr vYW hto ebr @@ -45181,8 +38103,8 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW @@ -45225,9 +38147,9 @@ wUU "} (42,1,1) = {" wUU -nvv -mPk -mPk +wmz +jNI +jNI pGs pGs pGs @@ -45245,7 +38167,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45260,96 +38182,96 @@ huF huF huF huF -cne -lMB -wBY -lMB -wjB -mIL -oke -mAX -pBx -oke -sCJ -oke -oJB -oJB -oJB -xml -fDB -saC -saC -saC -saC -saC -wBN -sGY -sGY -sfs -xaK +qBD +lsf +rkQ +lsf +cNf +xWz +uDJ +bVt +afe +uDJ +jzH +uDJ +sLo +sLo +sLo +dvu +ydX +eZV +eZV +eZV +eZV +eZV +xwT +uQU +uQU +rQG +pJM uXZ -qKb -oMs -uww -tPz -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -lzu -mGb -mGb -mGb -mGb -lgP -kwB -icM -kwB -kwB -kwB -vEJ -kPX -bPl -uVV -kwB -kwB -kwB -nWg -kwB -sIn -fWr -wfr -vbr -wfr -fWr -wfr -wfr -vbr -wfr -fWr -rlJ -aRr -aRr -cGR -fWr -nyJ -bwz -kZg +tfO +aTq +ugl +uII +pEW +pEW +pEW +pEW +pEW +pEW +pEW +pEW +pEW +bPn +whH +whH +whH +whH +hQY +syz +dhl +syz +syz +syz +mXX +wtr +iDd +uyo +syz +syz +syz +lvi +syz +gxu +dgp +iqj +unw +iqj +dgp +iqj +iqj +unw +iqj +dgp +vkO +hxB +hxB +gEx +dgp +bwp +qHT +kDs kGM -kSD -mMX -tDo -uQa +jag +wMu +eai +rqr hto vYW vYW vYW -uQa +rqr hto ebr ebr @@ -45407,10 +38329,10 @@ wUU "} (43,1,1) = {" wUU -nvv -mPk -mPk -mPk +wmz +jNI +jNI +jNI pGs pGs pGs @@ -45427,7 +38349,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45443,93 +38365,93 @@ huF huF huF xpP -bJv -otL -nzS -lVa -wSX -oke -oke -uQK -cnv -sCJ -oke -oJB -nfZ -ePb -kMi +rkR +xvI +fmF +sZL +qyu +uDJ +uDJ +vzF +vDM +jzH +uDJ +sLo +nZo +cwl +jqD ykc uXZ uXZ uXZ uXZ oLM -bzn -ePb -oJB -sfs -oke -nnt -oMs -jVl -uww -tPz -hvO -bpI -hvO -hvO -hvO -hvO -hvO -uDw -erE -vUE -hvO -hvO -hvO -hvO -hvO -kuX -kuX -wJB -kuX -kuX -kuX -cVG -cVG -dbV -kuX -kuX -kuX -ddY -kuX -kuX -kuX -kuX -eRO -scO -kuX -kuX -kuX -eRO -kuX -kuX -kuX -kuX -kuX -ddY -kuX -kuX -kuX -uOL +nQP +cwl +sLo +rQG +uDJ +shM +aTq +hVP +ugl +uII +pEW +gRW +pEW +pEW +pEW +pEW +pEW +wUh +tmg +ylZ +pEW +pEW +pEW +pEW +pEW +iSL +iSL +wcO +iSL +iSL +iSL +csR +csR +vSK +iSL +iSL +iSL +ryY +iSL +iSL +iSL +iSL +qSf +hoT +iSL +iSL +iSL +qSf +iSL +iSL +iSL +iSL +iSL +ryY +iSL +iSL +iSL +nFj kGM -hbD -jtx -lhB +aVE +ogw +fPc vYW -uQa +rqr vYW -uQa +rqr vYW vYW ebr @@ -45551,7 +38473,7 @@ vYW vYW vYW vYW -uQa +rqr vYW vYW jQa @@ -45589,10 +38511,10 @@ wUU "} (44,1,1) = {" wUU -nvv -mPk -mPk -mPk +wmz +jNI +jNI +jNI pGs pGs pGs @@ -45609,7 +38531,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45626,18 +38548,18 @@ huF huF huF huF -mHM +gTp huF huF uQi -uyd -rwP -uQK -qfb -sCJ -oke -oJB -eZk +ykT +hbK +vzF +fPz +jzH +uDJ +sLo +vYT nQo fjM jeO @@ -45647,69 +38569,69 @@ vrw vrw jeO vrw -eBG -kXP -ezd -ukz -ukz -nOO -vFu -imd -jsh -kzJ -kzJ -oZw -oZw -oZw -oZw -oZw -sCk -xuB -bEj -oZw -kzJ -oZw -kzJ -oZw -lVP -lVP -lVP -lfp -lVP -fpf -lVP -lVP -lVP -lVP -lVP -ehD -qCI -lVP -pDD -lVP -lVP -tTo -lVP -lVP -lVP -lVP -tTo -ehD -lVP -lVP -lVP -lVP -hCZ -lVP -fHs -kuX -uOL +fjt +hhq +aaQ +iqB +iqB +eVi +xYp +rdE +qxT +tTz +tTz +sHW +sHW +sHW +sHW +sHW +uXW +gWi +pBQ +sHW +tTz +sHW +tTz +sHW +fzG +fzG +fzG +ibR +fzG +ygj +fzG +fzG +fzG +fzG +fzG +mbm +jOW +fzG +qEB +fzG +fzG +icw +fzG +fzG +fzG +fzG +icw +mbm +fzG +fzG +fzG +fzG +fAf +fzG +kCE +iSL +nFj kGM -hbD -dTS -qyH +aVE +nAk +kjO vYW -uQa +rqr vYW vYW vYW @@ -45722,7 +38644,7 @@ vYW vYW pJF neq -trQ +hco vYW vYW vYW @@ -45732,8 +38654,8 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW jQa @@ -45742,8 +38664,8 @@ jQa jQa jQa jQa -vct -rgz +cbM +hJC jQa jQa jQa @@ -45771,11 +38693,11 @@ wUU "} (45,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI pGs pGs pGs @@ -45791,7 +38713,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45808,93 +38730,93 @@ huF huF huF huF -kGB +qEz huF huF ykc -tPI -itZ -uQK -wGl -sCJ -oke -oJB -wDG -wDG -afR +kHA +aIL +vzF +ale +jzH +uDJ +sLo +usu +usu +gnn oLM -uDQ -iMa -gsw -qZH +eRr +uCM +nbN +jCt hUU -rrA -aTS -oJB -wIm -xqP +amX +dYM +sLo +tCd +dxy uXZ -qKb -oMs -uww -hvO -tPz -nNZ -hvO -hvO -hvO -hvO -hvO -hvO -bih -hvO -hvO -ost -hvO -tPz -hvO -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -pCp -kuX -kuX -ddY -kuX -kuX -xeV -ybY -ltI -iIW -fao -xeV -pCp -kuX -kuX -kuX -kuX -kuX -kuX -sDj -kuX -uOL +tfO +aTq +ugl +pEW +uII +vxr +pEW +pEW +pEW +pEW +pEW +pEW +bzL +pEW +pEW +wPs +pEW +uII +pEW +iSL +iSL +iSL +iSL +iSL +iSL +iSL +iSL +iSL +iSL +iSL +sbu +iSL +iSL +ryY +iSL +iSL +wKd +ryo +rwQ +nYo +nGj +wKd +sbu +iSL +iSL +iSL +iSL +iSL +iSL +wmE +iSL +nFj kGM -wkp -tqa +xZE +rbz ebr vYW vYW vYW vYW -uQa +rqr vYW ebr ebr @@ -45914,14 +38836,14 @@ ebr ebr hto vYW -uQa -uQa +rqr +rqr vYW vYW jQa -rgz -rgz -rgz +hJC +hJC +hJC jQa jQa jQa @@ -45953,12 +38875,12 @@ wUU "} (46,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -45973,7 +38895,7 @@ pGs pGs huF huF -lPj +aOl huF huF huF @@ -45990,84 +38912,84 @@ huF huF huF huF -lPj +aOl huF huF ykc -aDu -oke -uQK -oke -uBX -oke -oJB -oJB -oJB -oPe -roJ -yab -sNl -wty -vzN -mZC -kXn -aFu -jqJ -xqY -muE +aRf +uDJ +vzF +uDJ +daX +uDJ +sLo +sLo +sLo +mBB +uRT +rRO +fZc +iPn +cDU +ejf +dpX +slR +xHD +rUK +gfx oLM -fYA -fYA -fYA -dQe -lWo -vAF -dQe -yeH -yeH -bUK -lzu -hvO -bih -lzu -yeH -yeH -dxn -lWo -oMs -auE -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -wfT -vDm -vDm -fPU -cnW -foU -ujp -vDm -mVF -vDm -vDm -deX -vDm -vDm -vDm -tOp -sDj -kuX -rlJ +uld +uld +uld +osP +cqa +cBF +osP +evN +evN +kRt +bPn +pEW +bzL +bPn +evN +evN +wkb +cqa +aTq +lpT +jad +jad +jad +jad +jad +jad +jad +jad +jad +jad +jad +jad +jad +rLh +ngE +ngE +iPG +sQM +qCN +fKp +ngE +btn +ngE +ngE +wxO +ngE +ngE +ngE +qeW +wmE +iSL +vkO sdz ebr ebr @@ -46075,8 +38997,8 @@ ebr ebr vYW vYW -uQa -uQa +rqr +rqr vYW vYW hto @@ -46088,7 +39010,7 @@ vYW fGP vYW vYW -uQa +rqr vYW gEP ebr @@ -46096,13 +39018,13 @@ ebr ebr vYW vYW -uQa -uQa +rqr +rqr vYW vYW jQa -rgz -rgz +hJC +hJC jQa jQa jQa @@ -46135,12 +39057,12 @@ wUU "} (47,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -46155,7 +39077,7 @@ pGs pGs huF huF -wRR +cso huF huF huF @@ -46172,35 +39094,35 @@ pGs bZv iUZ huF -wgU +uFx huF huF ykc -nPR -saC -lDN -saC -saC -lDN -saC -mAm -iAx -lMP +sQx +eZV +mFr +eZV +eZV +mFr +eZV +obg +sRO +vvc ykc -ubT -xwk -lDN -lzP +iuO +hcJ +mFr +qJI ykc -rxe -saC -uVe +uRt +eZV +wsN ykc uXZ ykc -vYr +xFR vnm -rIU +ite vnm brX vUT @@ -46208,15 +39130,15 @@ uJO bLB bLB vnm -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM cZR nxW nxW -rsM -rtr +svi +fCG nxW nxW mKb @@ -46230,9 +39152,9 @@ qcN qcN qcN lGp -hYp -uqx -hYp +mUg +nrR +mUg bIt bIt pQp @@ -46247,8 +39169,8 @@ ykw bIt bIt kGM -sDj -wir +wmE +vAo kGM sdz ebr @@ -46279,7 +39201,7 @@ ggX vYW vYW vYW -mdL +snR iOv vYW jQa @@ -46317,13 +39239,13 @@ wUU "} (48,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -46337,7 +39259,7 @@ pGs pGs huF huF -wRR +cso huF huF huF @@ -46354,16 +39276,16 @@ lYr qjU gvo rlw -eWZ +dhL huF huF ykc ykc oDS -lDN -sGY -sGY -lDN +mFr +uQU +uQU +mFr ykc ykc uXZ @@ -46371,18 +39293,18 @@ uXZ ykc ykc uXZ -oqh +utC uXZ ykc uXZ jpm uXZ ykc -hyr -npi -hyr +rRg +aSs +rRg vnm -bPG +dgI vQz hMG jZE @@ -46390,48 +39312,48 @@ vQz iDM vPY bLB -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -wlQ -saq -rsM -maN -faq -cvI -dNW -wCx -lxT -mOO +hsz +uQp +svi +qeL +voE +qTR +ito +xFn +pMe +cTs qcN -tJT -xLN +iBS +wYu qcN -rsh -nMT +ler +iUr qcN -lUe -aQc -bft +ipf +cmx +tXG ykw -ani -irw -pTs -hJO -syM +fIo +pgm +hqB +mrg +pFJ ykw -nPG -egJ -teu -teu -uMB +kpj +iBk +mZl +mZl +cgd bIt -wox -sJZ -tEJ -iNh +rPw +gXT +ezO +yeW nTG ebr ebr @@ -46461,9 +39383,9 @@ vYW vYW vYW vYW -mdL -mdL -uQa +snR +snR +rqr jQa jQa jQa @@ -46499,14 +39421,14 @@ wUU "} (49,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -46519,7 +39441,7 @@ pGs pGs huF huF -wRR +cso huF huF huF @@ -46530,90 +39452,90 @@ huF pGs pGs iUZ -vJg +sMb lYr lYr fwo lYr sQR -eWZ +dhL huF huF huF huF ykc -lDN -tjS -tjS -lDN +mFr +vdK +vdK +mFr uXZ -rtP -aqk -okf -wwq -ukX -wxf -hyr -cTV -vyI -jEZ -hyr -cTV -aAY -vyI -wPE -hyr +pMS +qWE +ffj +apg +cDG +amb +rRg +ecS +uVT +mxu +rRg +ecS +eRK +uVT +hKX +rRg vnm -oiB +cul rVi brX oXf jZE -lkz +pdh bio bLB -xWY -hvO -bih -lzu +vAB +pEW +bzL +bPn nxW -fZI -maN -rsM -cbI -maN -maN -maN -maN -maN -aTh +jMu +qeL +svi +otN +qeL +qeL +qeL +qeL +qeL +aIW qcN -vhb -kFT +qiR +wBJ qcN -nwV -aLl +gEa +icF qcN -qqA -aQc -hwa +jKi +cmx +sIb bIt -ecb -haT -cQr -qiP -mwH +rxG +jwS +qsF +cCl +cSQ bIt -uCc +qVt vgA pOC qWC -dbg +nLz ykw -pRX -sJZ -tEJ -cNu +alY +gXT +ezO +vCn nTG jpD ebr @@ -46637,15 +39559,15 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW -uQa -uQa -uQa -uQa +rqr +rqr +rqr +rqr jQa jQa jQa @@ -46681,17 +39603,17 @@ wUU "} (50,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI pGs pGs pGs @@ -46701,7 +39623,7 @@ pGs pGs huF huF -wRR +cso huF huF huF @@ -46715,88 +39637,88 @@ fwo lYr lYr qyT -sJm +raG lYr tia -ten +svm huF huF huF huF ykc -stV -sAR -enU -uQK -oBs -hyr -hyr -hyr -aXt -hyr -hyr -hyr -omj -weG -hyr -hyr -hyr -hyr -aXt -hyr -hyr +rIr +rJy +nrn +vzF +tVF +rRg +rRg +rRg +cah +rRg +rRg +rRg +xXD +xzO +rRg +rRg +rRg +rRg +cah +rRg +rRg aGx -hfR +kix gqE mUy uUl ria -mDl +prb cSq vnm -ePB -hvO -mrd -ciH -kyh -lAk -nMe -ckF -nMe -nMe -aaA -wsZ -wsZ -csb -nMe -ejZ -wVa -wpr +xct +pEW +pru +cyA +xks +xbU +gDu +tin +gDu +gDu +pWs +hvl +hvl +wqi +gDu +sDe +xwV +pjG nxW -qir -haC +sHT +bph nxW -qqA -aQc -qqA +jKi +cmx +jKi bIt -tsX -wkC +aVb +tTR fAO -haT -slj +jwS +mWC bIt -gze +blb qWC eOv rJq -dbg +nLz ykw -pRX -sJZ -tEJ -cNu -kyL +alY +gXT +ezO +vCn +fsc jpD oAE oAE @@ -46819,13 +39741,13 @@ neq vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW -uQa -lMb +rqr +bYt vYW vYW gxQ @@ -46863,18 +39785,18 @@ wUU "} (51,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI sNx pGs pGs @@ -46883,7 +39805,7 @@ huF huF huF huF -wRR +cso huF pGs pGs @@ -46906,85 +39828,85 @@ huF huF huF ykc -wcl -enU -enU -uQK +jGH +nrn +nrn +vzF uXZ -hyr -ohM -hyr -weG -leU -pIe -hyr -hyr -weG -hyr -omj -hyr -pIe -weG -fzx -hyr +rRg +jQL +rRg +xzO +xWs +fSE +rRg +rRg +xzO +rRg +xXD +rRg +fSE +xzO +cZW +rRg bLB -wcE +clj oXf dbu xxI woJ -iXX +isV cSq bLB -xWY -hvO -anu -lnG -cAX -vsP -cAX -kDF -nZd -maN -maN -maN -maN -maN -maN +vAB +pEW +dEa +hwm +aCf +sSS +aCf +bfG +qNZ +qeL +qeL +qeL +qeL +qeL +qeL qcN -seY -gjw +dSc +mMP nxW -ygT -wRu +gGM +sBw nxW -qqA -aQc -qqA +jKi +cmx +jKi ykw -dmq -sDo -cXQ -haT -wLR +tWR +ayi +lxI +jwS +pIy ykw -avF +wOS qDR iRw pjH -nqN +cpB ykw -pRP -sJZ -tEJ -cNu -upO +ncu +gXT +ezO +vCn +oqx gUP -clG -mMX +btJ +wMu oAE -uQa -uQa +rqr +rqr vYW vYW vdQ @@ -47001,13 +39923,13 @@ neq vYW vYW vYW -uQa -uQa +rqr +rqr cmr vYW vYW -uQa -uQa +rqr +rqr vYW vYW pGs @@ -47045,19 +39967,19 @@ wUU "} (52,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI sNx sNx huF @@ -47065,7 +39987,7 @@ huF huF huF huF -vEU +tuv huF pGs pGs @@ -47077,10 +39999,10 @@ kFV vmw eaC fwo -oCR +dpy hAg lYr -bVS +unW lYr fwo huF @@ -47088,84 +40010,84 @@ huF huF huF ykc -hic -enU -enU -sDf +nsZ +nrn +nrn +iXU oLM -omj -jMq +xXD +tmO lEV -ygn +iWH alD aSU ghI lEV -ygn +iWH alD aSU ghI lEV -ygn +iWH alD -hyr +rRg bLB -mDl +prb gqE mUy cOs ria -lmu +lcn cSq bLB -xWY -hvO -bih -lzu +vAB +pEW +bzL +bPn nxW -nnF -maN -wFX -maN -xkj -dLP -sdS -sdS -gBi -xkj +xTt +qeL +ppD +qeL +tSG +wUG +gLu +gLu +mHI +tSG nxW -dmP -wwk +mEt +giA qcN -wNV -wRu +xOu +sBw qcN -vMU -aQc -qqA +grw +cmx +jKi ykw -hJx -haT -hwN -haT -xBX +ufG +jwS +vBe +jwS +jMY pQp -lXc +xrJ vgA bRg fXa -pYv -epY -rMN -sJZ -tEJ -cNu -qNP +snY +kgQ +bpk +gXT +ezO +vCn +xns gUP -bPe -dTS +clw +nAk oAE -nHC +dON vYW vYW vYW @@ -47183,13 +40105,13 @@ vYW vYW vYW vYW -uQa -uQa +rqr +rqr vYW vYW vYW vYW -uQa +rqr vYW vYW pGs @@ -47227,27 +40149,27 @@ wUU "} (53,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead kkF huF huF pGs bJI ahb -wdy +fon vQK pGs pGs @@ -47256,7 +40178,7 @@ huF huF huF fwo -sJm +raG lYr lYr wKW @@ -47270,83 +40192,83 @@ huF huF huF ykc -mIL -enU -nOj -uQK +xWz +nrn +mId +vzF uXZ -lhn -pNa -liM -ygn -uWW -weG -fys -liM -ygn -uWW -bQa -fys -liM -ygn -uWW -vyy +xQl +oJt +doi +iWH +khG +xzO +bqh +doi +iWH +khG +sbH +bqh +doi +iWH +khG +etq bLB -joN +tVv jZE mfa fyi krM -uEE +opI xWU bLB -xWY -tam -lss -rHv +vAB +uAC +tGP +dpM nxW -qDv -maN -wFX -xkj -cMQ -fnF -paB -bkG -dYZ -gfr +dag +qeL +ppD +tSG +nkj +cqb +bgR +mmH +lbz +cBD nxW -tGr -cBW -dOk -mau -dnW -kTG -qqA -aQc -qqA +cid +kzk +hEF +qOK +oWj +owD +jKi +cmx +jKi ykw -wcG -woj -uyK -lkI -vZS -iiX -vZS +qVk +kpZ +sRl +tWm +gCE +scs +gCE jqu qVL jqu -cZN +mZB ykw -uEI -jPC -jjg -cNu -rMN +vVj +cvi +qwh +vCn +bpk gUP -hbD -dTS -tDo +aVE +nAk +eai ebr vYW ckM @@ -47409,38 +40331,38 @@ wUU "} (54,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead kkF -tOx +owg huF pGs dfs fwo -eVW +aoZ lYr arF pGs huF huF huF -xKS -qFC -qFC -qFC -kIJ +trl +rDt +rDt +rDt +cvZ cRx lYr pdn @@ -47452,82 +40374,82 @@ huF huF huF ykc -lDN -saC -saC -lDN +mFr +eZV +eZV +mFr ykc -ldr -jMq +ccP +tmO lGT -ygn +iWH uEF aSU ghI lGT -ygn +iWH uEF aSU ghI lGT -ygn +iWH uEF -hyr +rRg vnm -hfR +kix ePz pRb ceJ oXf -uEE +opI cSq vnm -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM mKb -ffk -ydP -lKV -sdS -gjy -jgQ -gQa -wnK -jgQ -wnK +jXj +eGy +bbO +gLu +pWe +kwo +lsg +fCc +kwo +fCc nxW -nRW -fYQ +qef +nxM nSP -fJR -wRu +lcY +sBw qcN -emC -aQc -qqA +tAb +cmx +jKi bIt -uMx -haT -teu -haT -coc +wRP +jwS +mZl +jwS +puQ bIt -nRP +eeG kvG thn thn -vCE -jCA -iMM -oIq -tvv -cNu -rMN +pqn +eGJ +pHL +ipw +uJE +vCn +bpk gUP -wkp -tqa +xZE +rbz ebr ebr oAE @@ -47553,10 +40475,10 @@ ebr ggX vYW vYW -uQa +rqr vYW vYW -uQa +rqr pGs pGs pGs @@ -47591,41 +40513,41 @@ wUU "} (55,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead kkF -tOx +owg huF pGs ipZ lYr -iSz +nYm fwo rIG pGs huF huF dEJ -wMw -wMw -aHy -wMw -mrC +iBA +iBA +fYu +iBA +usK lYr -rjo -gPG +sDC +gvT lYr gLV oYE @@ -47634,78 +40556,78 @@ huF huF huF wFP -lFl -lFl -lFl -lFl +weo +weo +weo +weo uQi -hyr -hyr -hyr -weG -hyr -hyr -pIe -hyr -weG -omj -hyr -hyr -hyr -weG -omj -hyr +rRg +rRg +rRg +xzO +rRg +rRg +fSE +rRg +xzO +xXD +rRg +rRg +rRg +xzO +xXD +rRg aGx -hfR +kix fyP cwQ kzE fyP -uEE +opI gNb bLB -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -qDv -maN -wFX -gBi -mKD -iWf -rzU -hLE -fJw -aEi +dag +qeL +ppD +mHI +yib +sMx +fCm +nOJ +eIf +ldc nxW -spd -lBf +tRu +ekP nxW -nkd -wRu +jvc +sBw nxW -qqA -aQc -qqA +jKi +cmx +jKi ykw -ibP -haT -teu -haT -dZZ +ocM +jwS +mZl +jwS +cIG ykw -cIB +gYP waB nTS qWC -lLq +cRu ykw -pRP -uXw -sIU -cNu +ncu +rwl +nxQ +vCn kyG kyG gTC @@ -47773,38 +40695,38 @@ wUU "} (56,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead kkF -tOx +owg huF huF tlE lYr -iSz +nYm lYr lYr hCw -pbp -loQ -nEp -wMw -wMw -qNE -wMw -mrC +veh +pwJ +aVy +iBA +iBA +cdn +iBA +usK rCf nDk lYr @@ -47816,84 +40738,84 @@ huF huF huF uQi -uaY -uaY -uaY -uaY +aHY +aHY +aHY +aHY uQi -aqw -hyr -pIe -weG -xAs -omj -pJf -pJp -weG -fzx -hyr -hyr -pIe -weG -klY -xEc +pVx +rRg +fSE +xzO +vve +xXD +hLO +gZJ +xzO +cZW +rRg +rRg +fSE +xzO +xRS +hcx vnm uCe lEY ksf -qBR +dvY oXf ugR gNb bLB -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -qDv -kpS -wFX -sdS -ocQ -wnK -eTi -gVQ -qUQ -hMh +dag +rVV +ppD +gLu +lGV +fCc +usl +gmv +tqs +dWe nxW -hyd -gjw +piI +mMP nxW -exH -wRu +hYV +sBw nxW -hQo -aQc -qqA +aMf +cmx +jKi bIt -aVF -haT -teu -haT -jIo +qsq +jwS +mZl +jwS +vhh bIt -cgb +qHr rRm wph qWC -pcK +erX ykw -pRX -uXw -sIU -cNu +alY +rwl +nxQ +vCn gTC -tIT -fUZ -fhM -sTA -ukw +uKk +vaC +kab +nLA +dae rTT fuS oAE @@ -47955,127 +40877,127 @@ wUU "} (57,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lUG -rqG +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +qrv +vsE kkF -sUj -vJk -lXT -oDX -wcq -mLB -aTg -ixq -dNh -pbp -wMw -wMw -wMw -wMw -wMw -dob -wMw -fhu -lIE -qFC -pMG -pMG -qFC -kME -paq -gSY -xBS +wED +tLm +dHr +viW +mPA +tkX +wei +jhR +qZM +veh +iBA +iBA +iBA +iBA +iBA +ilP +iBA +miI +jbd +rDt +egr +egr +rDt +jXr +ikd +izC +pcx qqJ -waP -waP -waP -waP +wUq +wUq +wUq +wUq aMC -hyr -cNb -fkF -weG -qkF -leU -wEn -xKo -weG -pJp -iJa -leU -hyr -weG -hyr -omj +rRg +big +ufD +xzO +pDr +xWs +bml +gCV +xzO +gZJ +dMc +xWs +rRg +xzO +rRg +xXD epQ sKC epQ epQ epQ sKC -uvw +fcz epQ epQ -ntw -hvO -bih -rHv +iIh +pEW +bzL +dpM qcN -uUW -maN -wFX -dLN -mlR -rLC -aoo -fyH -iNU -xFZ +iEz +qeL +ppD +pAG +mtA +cSs +rlz +aYL +yic +kWn shb -eSg -fMq +gSq +oLh iop -lDS -yfh -vgu -kIK -rLU -qqA +rBJ +mGG +keg +sfU +sSd +jKi ykw -xXe -oVn -jYX -iFK -wsa +pQE +tHB +lKW +kIM +mBX bIt -eeg -pQF -jcz -jcz -mkn +xDv +pWD +iSc +iSc +jTO ykw -pRX -uXw -sIU -cNu +alY +rwl +nxQ +vCn gTC -tIT -rqx +uKk +lft aae -qHF -wOL +gIJ +twD wTJ fuS oAE @@ -48137,19 +41059,19 @@ wUU "} (58,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead xfo xfo ydy @@ -48161,29 +41083,29 @@ itT lYr hkQ bVQ -pbp -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -bnf -vMe -wMw -vLV -wMw -wMw -wMw -xJb -wMw -wMw -wMw -mcr +veh +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +uDq +xbe +iBA +eOC +iBA +iBA +iBA +aeE +iBA +iBA +iBA +izk ccp qpK qAp @@ -48193,71 +41115,71 @@ qAp qAp bgE bgE -erK +ula qAp bgE -hyr -ukX -weG -gnm -hyr +rRg +cDG +xzO +aRU +rRg sKC -dUh -dUh -vnN -dUh -oUp -cTg -iSO +bbv +bbv +icV +bbv +mnJ +gOZ +eVj sKC -xWY -hvO -bih -euM +vAB +pEW +bzL +unf qcN qcN -maN -sTW +qeL +hpN qcN nxW nxW nxW -tRs +jyn nxW nSP qcN -cTr -tjF +rCJ +wXk qcN -jNS -mJw +kyB +ddq qcN -lUe -aQc -qqA +ipf +cmx +jKi bIt ykw -cHl +cAp bIt ykw ykw bIt ykw bIt -cHl +cAp ykw bIt bIt -sjD -uXw -sIU -cNu +dsk +rwl +nxQ +vCn kyG -qym -rJI +rcP +soB bRi -mBG -pRl +roh +oNq tuV kyG ebr @@ -48273,9 +41195,9 @@ ebr ebr ksX ksX -wff -dEo -rqa +ycc +jQm +rgw ksX ebr ebr @@ -48319,128 +41241,128 @@ wUU "} (59,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead aQq -eCj +iWv pxa -uKr +tsH ahg -wIg -asx -asx -nKd +kcA +aUc +aUc +hIh nDL -new -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kME -wMw -mpH -hcz -wMw -ojm -huy +jeB +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +jXr +iBA +nBL +agB +iBA +qwb +eMs qAp -qVO -cOj -cfs +bQY +yhM +rFj qAp -hyr -hyr -weG -hyr -hyr -sAY -eYG -ghr -eYG -eYG -eYG -cTg -vfH +rRg +rRg +xzO +rRg +rRg +pns +qeH +dtY +qeH +qeH +qeH +gOZ +eGz epQ -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -xKC -wnK -pVh -uTV -uTV -uTV -uTV -nRT -sWp -kMU -tjF -woI -qUQ +eOo +fCc +iZJ +kgD +kgD +kgD +kgD +cmS +pXB +cMx +wXk +lNJ +tqs qcN nxW nxW qcN -qqA -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -mPl -qqA -qqA -qqA -qqA -gSC +jKi +cmx +jKi +jKi +jKi +jKi +jKi +jKi +jKi +uRw +jKi +jKi +jKi +jKi +myt jcT -bMV -uXw -sIU -pRP +jTJ +rwl +nxQ +ncu kyG -wTM -dgP +mfp +lBY bRi -mBG -lvV -nVn +roh +qBT +yiG kyG ebr ebr @@ -48453,12 +41375,12 @@ ebr ebr ebr ksX -rmr -cto -cto +uaL +oAN +oAN uKZ xxk -ghs +pXD ksX ebr ebr @@ -48501,128 +41423,128 @@ wUU "} (60,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead aQq -boI +kiJ qaE -miR +gwd nqQ tlE -asx -asx -jjZ +aUc +aUc +pbi nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sIQ -wMw -wMw -mpH -wMw -wMw -wMw +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +myd +iBA +iBA +nBL +iBA +iBA +iBA qzi -jTL -jTL -uGs +ciD +ciD +sNW bgE -omj -cTV -weG -jEZ -hyr +xXD +ecS +xzO +mxu +rRg sKC -hPF -uOo -pqO -pqO -xnV -wEL -ewS +iLC +slD +vNf +vNf +sjB +hhc +egL sKC -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -qUQ -hGz -eAG -rtx -yiA -mau -mau -gNe -dTC -yaf -wVD -myj -qUQ +tqs +bUk +eez +eaP +xkP +qOK +qOK +uEW +jdn +vHC +pDq +pxP +tqs nxW -cbe -stv -hwa -hwa -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -qqA -kmu -mtU -qqA -qqA -qqA +pXR +bOY +sIb +sIb +cmx +jKi +jKi +jKi +jKi +jKi +jKi +jKi +jKi +gvg +lPA +jKi +jKi +jKi hoP -pRX -lbK -sOj -cug -sGb -xlv +alY +amG +sNH +jGC +cAG +mPD xZD iJD -gfp -ffY -gvR +hFl +lAO +hPI kyG ksX ksX @@ -48635,12 +41557,12 @@ ebr ebr ebr ksX -cto -cto -gLo -cto -cLX -cto +oAN +oAN +rit +oAN +fXl +oAN ksX ebr ebr @@ -48683,146 +41605,146 @@ wUU "} (61,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead aQq -vLw +ihb qaE qdL ahg tlE -asx -asx -cQu +aUc +aUc +eUW lqF -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -nFB -wMw -sIQ -wMw -wMw -wMw -wMw -oJm -hyr -hyr -hyr -uAt -lhn -weG -weG -hyr -hyr +iBA +iBA +iBA +iBA +iBA +iBA +iBA +xtV +iBA +iBA +iBA +iBA +iBA +xtV +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +fXL +iBA +myd +iBA +iBA +iBA +iBA +jTD +rRg +rRg +rRg +skx +xQl +xzO +xzO +rRg +rRg epQ -upY -mRL -iQl -fyZ -dgq -cTg -tQn +lbe +oha +tOZ +alI +jLa +gOZ +ajd epQ -gnx -hvO -bih -rHv +oNH +pEW +bzL +dpM nxW -sbX -eIV -sDQ -eIV -pVh -vsJ -eIV -pqY -sIf -lWh -vSh -aMp -igU +cPH +iMi +riN +iMi +iZJ +hht +iMi +eNC +wdc +mOo +uMy +oLb +rLP nxW -vMU -qqA -qqA -eBf -bfq -kIK -gPA -kIK -kIK -jxi -pti -kIK -fqs -kIK -kIK -kIK -kIK -kIK -kqe -uEI -obm -tEJ -pRP +grw +jKi +jKi +lYK +pky +sfU +kMj +sfU +sfU +xPp +rgr +sfU +sBZ +sfU +sfU +sfU +sfU +sfU +ylN +vVj +adn +ezO +ncu kyG -nBl +fKe wKi bRi -mBG -ffY -xZN +roh +lAO +oYy kyG -ghs -cto -cto -tVX -swv +pXD +oAN +oAN +rcs +oqf ksX ksX ksX ksX ksX ksX -kcE -cto +sIS +oAN ksX -cDc -cto -cto +qtP +oAN +oAN ksX cty cty @@ -48865,89 +41787,89 @@ wUU "} (62,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vlm -fjv -wBp -gpJ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oGX +iNw +uBN +qQo xfo bGC qzq ahg nQA tlE -eRM -tCG -aEf +pEY +lNg +rKW nDL -wMw -wMw -wMw -aHy -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw +iBA +iBA +iBA +fYu +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA qAp -hyr -eaQ -hyr +rRg +axm +rRg qAp -hyr -okf -weG -ukX -hyr +rRg +ffj +xzO +cDG +rRg sKC -xMs -qvv -rXf -lPq -oUp -cTg -nVy +whv +tyR +aGE +eeF +mnJ +gOZ +ikq sKC -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM lGp qcN nxW qcN nSP -pvk +wLw qcN nxW rcq @@ -48957,14 +41879,14 @@ qcN nxW nxW qcN -vMU -qqA -qqA -tYP -qqA -oeF -aQc -qqA +grw +jKi +jKi +pbE +jKi +dLO +cmx +jKi xgG qvo xgG @@ -48976,35 +41898,35 @@ xgG qvo xgG xgG -rGl -sJZ -tEJ -cNu +nLi +gXT +ezO +vCn kyG -uzb +nnP wKi bRi -mBG -ffY -fYH +roh +lAO +rqQ gTC -fhh -cto -qMr -cto -cto -cto -lOc -cto -lOc -cto -lOc -kkw -cto -cto -cto -pyz -cto +wAp +oAN +kxg +oAN +oAN +oAN +pPP +oAN +pPP +oAN +pPP +xvr +oAN +oAN +oAN +iAN +oAN ksX cty cty @@ -49047,146 +41969,146 @@ wUU "} (63,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -imk -mPk -mPk -wBp -fjv -qwQ -uYJ -bah -uZK -kME -wMw -kME -tzP +wmz +jNI +jNI +jNI +jNI +oYg +jNI +jNI +uBN +iNw +mel +kRG +cnG +djz +jXr +iBA +jXr +oQS psd -asx -asx -nKd +aUc +aUc +hIh nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sTT +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +xtV +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +xtV +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +kZX bgE -jTL -jTL -lpJ +ciD +ciD +fUH bgE -ldr -hyr -weG -hyr -hyr +ccP +rRg +xzO +rRg +rRg sKC -iTd -iTd -dCz -gZq -eYG -uuj -sFJ -bkC -lbr -urA -lss -rHv +dhw +dhw +vIQ +ccs +qeH +glE +bWx +kft +uzv +imS +tGP +dpM qcN -rsj -dQT -uUF -hvh -tqr -mrP -sWp -kDH -bzq -aZq +jvk +iiE +rwv +nsY +uxv +eQO +pXB +nCu +jGy +ujZ qcN -qBn -qqA -eBf -kIK -kIK -kIK -ueP -gSC +dQJ +jKi +lYK +sfU +sfU +sfU +dJN +myt clX -nsc -qqA +xFx +jKi xgG -azK -xPj -ctw +iZy +ptn +vEY qvo -gvF -pLV -bLI -lrp -pBK +wwK +eBx +vjz +gUj +mYu qvo -vUM -sJZ -tEJ -cNu +rZS +gXT +ezO +vCn gTC -qPG -mCx -aLc -mBG -iSi -tTN +frZ +cyV +vaD +roh +lsu +oLC gTC -kQb -mUP -mUP -mUP -mUP -mUP -gja -mUP -ior -mUP -gja -mUP -mUP -mUP -mUP -mUP -qWw +mlV +gGd +gGd +gGd +gGd +gGd +cfy +gGd +hqP +gGd +cfy +gGd +gGd +gGd +gGd +gGd +aZS ksX cty hoC @@ -49229,146 +42151,146 @@ wUU "} (64,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -uYJ -lTR -kap -wMw -wMw -wMw -mrC +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uBN +mel +kRG +nhO +oaX +iBA +iBA +iBA +usK hzK eat -asx -asx -jjZ +aUc +aUc +pbi lqF -wMw -iyd -qFC -qFC -qFC -qFC -qFC -qFC -leP -qFC -qFC -qFC -vfG -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -kIJ -wMw -wMw -wMw -wMw -wMw +iBA +iWY +rDt +rDt +rDt +rDt +rDt +rDt +tmP +rDt +rDt +rDt +jqz +rDt +rDt +rDt +rDt +rDt +rDt +rDt +rDt +rDt +rDt +rDt +rDt +cvZ +iBA +iBA +iBA +iBA +iBA qAp -nwi -igQ -kCb +gwh +lYm +lFY qAp -pJp -omj -weG -hyr -hyr +gZJ +xXD +xzO +rRg +rRg epQ -cpA -cpA -tpB -eYG -aQG -sSZ -ncg +etk +etk +dcF +qeH +mLu +vEF +nIE epQ -ePB -hvO -bih -rHv +xct +pEW +bzL +dpM nxW -bFj -dQT -eJI -hZo -nJc -wQd -sWp -gEz -maN -bzq +cvb +iiE +nFL +kVn +gkj +tRb +pXB +xrT +qeL +jGy nxW -kmu -qqA -aQc -qqA -qqA -qqA -iat -qqA +gvg +jKi +cmx +jKi +jKi +jKi +wZt +jKi clX -vtP -fqs -vcd -rRz -oJv -ugW +haO +sBZ +mlw +wGT +meG +aKB olU -maQ -vCf -vCf -oXZ -lhm +aIz +rff +rff +elx +dUM xgG -gfs -sJZ -tEJ -cNu +bUS +gXT +ezO +vCn kyG -wHu -uIe -wdx -ses -nFg -nFg -aBO -vAI -cto -fuj -cto -ghs -cto -nuv -cto -nuv -cto -nuv -aCH -ghs -swk -cto -cto -etv +fmV +dtl +mKc +xmX +fHi +fHi +uPr +wcJ +oAN +jWf +oAN +pXD +oAN +rMn +oAN +rMn +oAN +rMn +oSs +pXD +pRm +oAN +oAN +gYF tdN hoC aOg @@ -49411,98 +42333,98 @@ wUU "} (65,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -rYC -fjv -uYJ -qwQ -pAX -lTR -kap -wMw -wMw -wMw -mrC +wmz +jNI +jNI +jNI +jNI +jNI +btV +iNw +kRG +mel +lVh +nhO +oaX +iBA +iBA +iBA +usK qhQ -jhM -asx -asx -cQu +mFy +aUc +aUc +eUW nDL -wMw -pbp -wCc -ygZ -ygZ -efU -bNN -cYr -ygZ -efU -onr -ahK -ssv -efU -cgA -ahK -ygZ -efU -onr -ahK -uFE -efU -onr -ahK -wCc -mrC -wMw -wMw -wMw -wMw -wMw +iBA +veh +tnj +pVo +pVo +qSt +kun +hIu +pVo +qSt +rLE +hTg +lAZ +qSt +cOq +hTg +pVo +qSt +rLE +hTg +hno +qSt +rLE +hTg +tnj +usK +iBA +iBA +iBA +iBA +iBA weJ qAp coz qAp bgE -hyr -hyr -weG -hyr -leU +rRg +rRg +xzO +rRg +xWs sKC -vqt -cOK -rmZ -eYG -fAq -ghr -biz +mVq +gQk +hAu +qeH +bEW +dtY +uLi sKC -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM nxW -swS -sdS -tYg -sdS -xTH -wQd -sWp -dBB -maN -aiY +bXv +gLu +gbq +gLu +pDt +tRb +pXB +vzZ +qeL +iJU qcN oHo -qqA -aQc +jKi +cmx xgG xgG qvo @@ -49512,33 +42434,33 @@ xgG qvo xgG xgG -xUq -bNC -ugW +tdg +gRl +aKB qvo -hxa -kLd -kLd -gPZ -jlt +grQ +nqc +nqc +kML +jVm qvo -hTZ -sJZ -tEJ -cNu +cbV +gXT +ezO +vCn kyG -rYO -jBl -uzr -pOz -qpZ -qpZ +pWy +dgE +dRS +wNc +ibB +ibB kyG -rjH -cto -vTe -wXC -ghs +xFH +oAN +oPj +gDS +pXD ksX ksX ksX @@ -49549,8 +42471,8 @@ ksX ksX ksX mSu -iaM -hbi +phC +eou ksX mCF aOg @@ -49593,35 +42515,34 @@ wUU "} (66,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -qwQ -qwQ -lTR -qwQ -kap -wMw -wMw -wMw -wMw -tzP +wmz +jNI +jNI +jNI +jNI +uBN +uBN +mel +mel +mel +nhO +mel +oaX +iBA +iBA +iBA +iBA +oQS jhu fFH lNL fFH wPv -wMw -pbp -sHV -bZU -bZU +iBA +veh +kel bZU +rtm bZU bZU bZU @@ -49639,64 +42560,65 @@ bZU bZU bZU bZU +rtm bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -paq -rkA -wMw -mcr +cxg +usK +iBA +iBA +iBA +iBA +iBA +ikd +spV +iBA +izk aMC -aCY -hyr -weG -hyr -qkF +eql +rRg +xzO +rRg +pDr epQ -lRy -dfJ -vDl -qSJ -vcj -leF -ded +ayP +oIJ +gtH +uKB +cfx +szI +nlx epQ -lzu -oMs -hca -lzu +bPn +aTq +fXD +bPn qcN -hDX -kfj -krl -vrh -abf -uNJ -oYB -ubF -ckx -bzq +hKa +fsP +bmr +xJE +jYQ +cRE +oFf +xWd +rwb +jGy nxW -ojG -qqA -aQc +bia +jKi +cmx xgG -qzd -eQz -vYF -ixd -xgW -pSy -sMS +dym +vIy +ltV +nLL +pKD +pAh +kSA qvo -pWm -bNC -ugW +iiF +gRl +aKB xgG qvo qvo @@ -49704,10 +42626,10 @@ cNA tpp qvo xgG -oyx -sJZ -tEJ -cNu +axn +gXT +ezO +vCn kyG kyG kyG @@ -49716,11 +42638,11 @@ gTC kyG kyG kyG -etv -cto -cto -cto -qEG +gYF +oAN +oAN +oAN +cuD ksX cty cty @@ -49730,9 +42652,9 @@ cty cty cty iFb -kuE -cto -etv +ddt +oAN +gYF ksX mCF aOg @@ -49775,36 +42697,36 @@ wUU "} (67,1,1) = {" wUU -nvv -mPk -mPk -mPk -imk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -kap -sSz -miT -wMw -wMw -wMw -new -new -new -new -new -wMw -pbp -irk +wmz +jNI +jNI +jNI +oYg +uBN +mel +kRG +mel +mel +mel +mel +oaX +oZC +eVB +iBA +iBA +iBA +jeB +jeB +jeB +jeB +jeB +iBA +veh +uZv +bZU bZU bZU bZU -rtm bZU bZU bZU @@ -49819,26 +42741,26 @@ bZU bZU bZU qOh -rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -wMw +bZU +jUz +usK +iBA +iBA +iBA +iBA +iBA +iBA +iBA +eOC +iBA aMC coz -qzb -erK -qzb -qzb +lLS +ula +lLS +lLS epQ sKC epQ @@ -49849,59 +42771,59 @@ epQ sKC epQ lsU -oMs -pCf +aTq +vEl lsU nSP qcN -uTZ -bVu -sdS -rcA -sdS -sWp -alM -rsM -nZi +oZi +iXC +gLu +hMe +gLu +pXB +kXN +svi +tbG nxW -ojG -qqA -aQc +bia +jKi +cmx qvo -xUq -jMr -kfJ -fFI -rzM -rQY -wiL +tdg +qSm +sdo +uSE +ull +aBr +dlE qvo -xUq -bNC -ugW +tdg +gRl +aKB xgG -vaV -yfQ -xZO -pAa -jbh +aIj +fpj +cUK +vVn +cxR xgG -vUM -sJZ -tEJ -cNu +rZS +gXT +ezO +vCn wSx -wjf -oBR -oBR -oBR -oBR -oBR +tjA +wqz +wqz +wqz +wqz +wqz sBX -etv -cto -oxa -vDr +gYF +oAN +jNY +hJK ksX ksX cty @@ -49913,8 +42835,8 @@ cty cty iFb xxk -cto -etv +oAN +gYF iDn meS xSl @@ -49957,32 +42879,32 @@ wUU "} (68,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -fjv -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -kap -cmU -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pbp -cYZ +wmz +jNI +jNI +jNI +jNI +iNw +mel +mel +lVh +mel +mel +mel +oaX +vnJ +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +veh +foi bZU bZU bZU @@ -50004,85 +42926,85 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -obN -aVs -lzX -sdy -sdy -sdy -sdy -mGb -mGb -mGb -mGb -lgP -mGb -mGb -mGb -mGb -lzu -oMs -hca -lzu -fzy +lPP +usK +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +rCU +vod +oCT +wTz +wTz +wTz +wTz +whH +whH +whH +whH +hQY +whH +whH +whH +whH +bPn +aTq +fXD +bPn +nUB qcN -tDh -ald -iby -acO -fFs -tZE -iZH -kGo -hMV +vho +uOD +xzi +feb +dWx +gRQ +tzm +uJt +eGn qcN -qqA -qqA -aQc +jKi +jKi +cmx xgG -tbQ -jMr -muY -rzM -rzM -oiM -fPo +fHH +qSm +oTx +ull +ull +bFL +gOr qvo -xUq -bNC -ugW +tdg +gRl +aKB qvo -aPU -rQY -dWE -mRZ -wbB +ujt +aBr +iwv +oCA +rjP xgG -gCi -sJZ -tEJ -cNu +dLM +gXT +ezO +vCn sBX -uNq -uNq -uNq -uNq -uNq -uNq +fPF +fPF +fPF +fPF +fPF +fPF sBX -etv -cto -cto +gYF +oAN +oAN ksX ksX cty @@ -50096,7 +43018,7 @@ cty iFb swV xxk -etv +gYF xEG mCF mCF @@ -50139,32 +43061,32 @@ wUU "} (69,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -kap -rgZ -olD -olD -cmk -ufE -iQs -kSz -kSz -kSz -wMw -wMw -pbp -fXH +wmz +jNI +jNI +jNI +jNI +uBN +mel +mel +mel +mel +mel +nhO +oaX +iHy +lgu +lgu +mZy +lvC +mDi +gsA +gsA +gsA +iBA +iBA +veh +iVN bZU bZU bZU @@ -50186,37 +43108,37 @@ bZU bZU bZU bZU -evX -mrC -wMw -wMw -wMw -nFB -wMw -wMw -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -bih -rHv -fzy +qGg +usK +iBA +iBA +iBA +fXL +iBA +iBA +iBA +iBA +nDK +vod +aoP +njL +jLs +njL +jLs +pEW +err +pEW +err +pEW +err +pEW +err +pEW +err +pEW +bzL +dpM +nUB qcN qcN nxW @@ -50224,47 +43146,47 @@ qcN nxW qcN qcN -sgy -peA -sFa +oiK +mMC +pHq qcN yil -qqA -aQc +jKi +cmx qvo -xUq -jMr -rQY -avy -rzg -rQY -rzM -sSU -rzM -bNC -ugW +tdg +qSm +aBr +coB +kwr +aBr +ull +iMI +ull +gRl +aKB qvo -rzO -rQY -oiM -qOn -vBW +cve +aBr +bFL +rkF +fgD qvo -mVS -iKa -tvv -pRP +wgF +ebM +uJE +ncu sBX -cCO -nfv -nfv -aFh -uNq -pPf +lax +iKg +iKg +tSj +fPF +oYq sBX -etv -cto -cto +gYF +oAN +oAN iFb cty cty @@ -50277,13 +43199,13 @@ cty cty iFb wNz -cto -etv +oAN +gYF iDn iDn ksX ksX -cba +oll ksX xxk xxk @@ -50321,32 +43243,32 @@ wUU "} (70,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -lTR -pAX -qwQ -qwQ -lTR -lTR -eDY -tpV -asx -cfq -qAI -bJV -ohC -euS -vWn -fWE -ezx -inj -pbp -sHV +wmz +jNI +jNI +jNI +jNI +btV +nhO +lVh +mel +mel +nhO +nhO +tbt +lGA +aUc +glU +xVS +kLI +sil +eGZ +kGm +bgu +aSW +btP +veh +kel bZU bZU bZU @@ -50368,85 +43290,85 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -bnf -cHY -wMw -rSA -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -jty -hvO -ckI -hvO -bih -rHv -uiq +cxg +usK +iBA +iBA +iBA +iBA +uDq +hYh +iBA +rJf +nDK +vod +aoP +njL +jLs +njL +jLs +pEW +err +pEW +err +pEW +err +pEW +tXR +pEW +err +pEW +bzL +dpM +sAA nxW -sbX -wMx -jqK -sjR -sbX +cPH +mYO +boZ +ell +cPH nxW -tex -gJs -niF +tas +mwF +oDr nxW yil -qqA -dYn -vcd -lFS -bRQ -lFS -lFS -lFS -lFS -fAs +jKi +qOe +mlw +mJQ +iNA +mJQ +mJQ +mJQ +mJQ +oEx krL -rRz -eZc -lFS -xqN -lFS -lFS -lFS -bQH -qnf -sBF -cug -gia -avl -cug -xBv -vLk -ptw -ptw -qjd -uNq -mey +wGT +jYJ +mJQ +fPZ +mJQ +mJQ +mJQ +gsS +uxI +uen +jGC +sIX +mWr +jGC +gLS +wqh +xjS +xjS +jKf +fPF +mpR wSx -cMw -cto -cto +ykg +oAN +oAN iFb cty cty @@ -50459,25 +43381,25 @@ cty iFb owM xxk -cto -etv -cto -cto -vTe -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto +oAN +gYF +oAN +oAN +oPj +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN xxk -cto -pOa +oAN +kKs iDn mCF mCF @@ -50503,32 +43425,32 @@ wUU "} (71,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -lTR -qwQ -qwQ -qwQ -lTR -qwQ -eDY -lZR -asx -lZR -caD -lTR -aTY -eGX -haR -kap -wMw -tZr -pbp -irk +wmz +jNI +jNI +jNI +jNI +uBN +nhO +mel +mel +mel +nhO +mel +tbt +owO +aUc +owO +jzU +nhO +wzS +mXR +kYC +oaX +iBA +dOo +veh +uZv bZU bZU bZU @@ -50539,7 +43461,7 @@ bZU bZU bZU bZU -oXw +nTW bZU bZU bZU @@ -50550,85 +43472,85 @@ bZU bZU bZU bZU -hEs -mrC -wMw -wMw -vpr -wMw -pFF -wMw -wMw -wMw -pAp -cFK -kdV -gvM -gvM -gvM -gvM -yeH -yeH -yeH -yeH -lNX -bUK -yeH -yeH -yeH -lzu -hrG -mos -rHv -nnw +lji +usK +iBA +iBA +eVl +iBA +cks +iBA +iBA +iBA +nDK +vod +pZh +sTw +sTw +sTw +sTw +evN +evN +evN +evN +aBi +kRt +evN +evN +evN +bPn +mHA +lIu +dpM +jrw nSP -tQz -xug -gjw -jZO -djb +sPQ +wSr +mMP +imH +bDF nSP -tyT -peA -ubH +tDm +mMC +ubl nxW -qqA -qqA +jKi +jKi bYT xgG -xUq -tkT -rzg -rzg -rQY -jMr -rzM -sSU -rzM -bNC -rzM -rzM -rzM -rzM -rzM -qFO -iWK -rzM -rMN -kyK -epO -pRP +tdg +wHU +kwr +kwr +aBr +qSm +ull +iMI +ull +gRl +ull +ull +ull +ull +ull +thT +qQr +ull +bpk +nUd +qxV +ncu wSx -tXg -cic -cic -ceo -cic -hmm +bJp +nrb +nrb +gWo +nrb +rXr wSx -pQw -cto -cto +gJY +oAN +oAN iFb cty cty @@ -50640,25 +43562,25 @@ cty cty mCF wOR -cto -cto -etv +oAN +oAN +gYF xxk -cto -vTe -cto -cto +oAN +oPj +oAN +oAN xxk -cto -cto -vTe -sgl -cto +oAN +oAN +oPj +eKG +oAN xxk -cto -fLu -cto -cto +oAN +nJg +oAN +oAN xxk ksX mCF @@ -50685,32 +43607,32 @@ wUU "} (72,1,1) = {" wUU -nvv -mPk -mPk -imk -mPk -xVw +wmz +jNI +jNI +oYg +jNI +ngJ dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -gnC -mYR -asx -caD -lTR -dXg -lTR -lTR -kap -wMw -ygY -pbp -cYZ +mel +mel +mel +mel +wFD +hEB +dLf +aUc +jzU +nhO +gGz +nhO +nhO +oaX +iBA +smA +veh +foi bZU bZU bZU @@ -50732,23 +43654,23 @@ bZU qOh bZU bZU -miF -mrC -wMw -wMw -wMw -vpr -wMw -wMw -wMw -vLV -mcr +lPP +usK +iBA +iBA +iBA +eVl +iBA +iBA +iBA +eOC +izk aMC bgE -qzb -erK -qzb -qzb +lLS +ula +lLS +lLS pGJ pGJ pGJ @@ -50756,63 +43678,63 @@ pGJ pGJ pGJ xxV -pXL -oMs -xWY -hvO -bih -rHv -nnw -jCE -qUQ -gjw -eOh -tGr -jnA -jKz -prh -wVa -rEO +tNZ +aTq +vAB +pEW +bzL +dpM +jrw +mbz +tqs +mMP +rjL +cid +djg +rXU +oSQ +xwV +pqy qcN -qqA -qqA -aQc +jKi +jKi +cmx xgG -xJx -oiM -rzM -rzM -kaY -jDO -uEz +wWp +bFL +ull +ull +kVR +vrH +icz itb -bjA -fWz -jhL +txF +jJP +lZB itb -rft -brM -kTo -map -vBW +bJu +ksY +fdY +gbQ +fgD qvo -mVS -sJZ -tEJ -cNu +wgF +gXT +ezO +vCn sBX -pIz -lpv -wxu -lpv -xFw -lpv -nTj -etv -cto -cto +oeM +qwz +opa +qwz +xaH +qwz +epW +gYF +oAN +oAN nNe -dNZ +cpM eCu eov mCF @@ -50822,26 +43744,26 @@ cty hoC mCF wOR -cto -cto -etv -cto -cto -cto -cto -cto -cto -cto +oAN +oAN +gYF +oAN +oAN +oAN +oAN +oAN +oAN +oAN feM -cto -cto -cto -cto -cto -cto -cto -cto -cto +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN ksX mCF aOg @@ -50867,32 +43789,32 @@ wUU "} (73,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -dXg +wmz +jNI +jNI +jNI +jNI +uBN +uod dXg -qwQ -lTR -qwQ -fHf -wPl -xOX -lId -jLS -lTR dXg -dXg -aTY -kap -oLa -vUQ -pbp -fXH +mel +nhO +mel +oNY +vki +hpS +qVh +yeO +nhO +gGz +gGz +wzS +oaX +vxN +cDj +veh +iVN bZU bZU bZU @@ -50914,23 +43836,23 @@ bZU bZU bZU bZU -kMy -lEm -wMw -wMw -xXr -wMw -plm -wMw -rSA -wMw -wMw -kdf -hyr -htP -hyr -hyr -leU +cPt +tll +iBA +iBA +pfV +iBA +oPA +iBA +rJf +iBA +iBA +lOy +rRg +doL +rRg +rRg +xWs pGJ iaO uRU @@ -50938,61 +43860,61 @@ uRU uRU reG pGJ -neU -oMs -xWY -hrG -mos -rHv -nnw +miL +aTq +vAB +mHA +lIu +dpM +jrw nxW -aXC -gjw -wdh -lEM -rNo +rge +mMP +uUs +jZH +uSZ qcN -maN -rsM -ekp +qeL +svi +pMX qcN yil -qqA -aQc +jKi +cmx qvo -smO -rQY -rzM -vPe -jTi -jMr -wbB +dAB +aBr +ull +jUc +cNQ +qSm +rjP qvo -xUq -tkT -ugW +tdg +wHU +aKB xgG -klu -rQY -oiM -jYl -lEw +mvu +aBr +bFL +epI +fKN xgG -iMp -sJZ -tEJ -cNu +uzL +gXT +ezO +vCn sBX -kNe -ptM -lpv -lpv -lpv -uuv +gBl +wZx +qwz +qwz +qwz +edB wSx -rjH -wOC -gMm +xFH +nhE +fQp iFb kxe awJ @@ -51004,9 +43926,9 @@ mCF jdm mCF wOR -cto -cto -etv +oAN +oAN +gYF xxk ksX ksX @@ -51021,9 +43943,9 @@ ksX ksX ksX ksX -azw -cto -cto +gAB +oAN +oAN xxk mCF xGV @@ -51049,32 +43971,32 @@ wUU "} (74,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ +wmz +jNI +jNI +jNI +jNI +uBN +nxG dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -xOX -bCM -rlI -rlI -rlI -rlI -rlI -cEm -fZB -wMw -pbp -sHV +mel +mel +mel +mel +wFD +hpS +kso +jpT +jpT +jpT +jpT +jpT +epz +iPY +iBA +veh +kel bZU bZU bZU @@ -51096,23 +44018,23 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -rSA -wMw -rSA -wMw -rSA -wMw -sid -hyr -hyr -hyr -hyr -hyr +cxg +usK +iBA +iBA +iBA +rJf +iBA +rJf +iBA +rJf +iBA +ukF +rRg +rRg +rRg +rRg +rRg pGJ nio bte @@ -51120,61 +44042,61 @@ mxv qHJ afg pGJ -bOO -lnG -rKf -erE -ivD -rHv -nnw +hFU +hwm +sfz +tmg +rPp +dpM +jrw qcN -dUA -qUQ -bVq -woI -xVA +pnt +tqs +qeE +lNJ +hir nxW -mVN -doa -gWu +mJa +vGI +vkK qcN dmR yil -aQc +cmx xgG -lMq -jOR -wIH -gkL -xkb -fFu -xxZ +cRa +vvA +bFu +cKi +lMX +jSI +xkk qvo -gFW -mXs -qwB +sBA +sFS +kdk xgG -lnw -mbt -jBp -ilQ -rzM +bCC +cjb +bTX +dlc +ull qvo -vUM -fPn -jjg -cNu +rZS +vFB +qwh +vCn sBX -uNh -sNa +ecv +gOd ffe lSG ffe kSd wSx -etv -cto -cto +gYF +oAN +oAN iFb kmW mCF @@ -51187,9 +44109,9 @@ mCF mCF wOR noj -cto -etv -cto +oAN +gYF +oAN ksX cty cty @@ -51203,9 +44125,9 @@ cty cty cty ksX -cto -cto -cto +oAN +oAN +oAN xxk mCF mCF @@ -51231,36 +44153,36 @@ wUU "} (75,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +uBN +uod +uod dXg dXg dXg -qwQ -qwQ -eDY -xOX -tkV -asx -asx -asx -cDm -asx -asx -paq -wMw -pbp -irk +mel +mel +tbt +hpS +aWZ +aUc +aUc +aUc +rpi +aUc +aUc +ikd +iBA +veh +uZv +bZU bZU bZU bZU -rtm bZU bZU bZU @@ -51275,54 +44197,54 @@ qOh bZU bZU bZU -rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -euH -pLp -wMw -kdf -hyr -hyr +bZU +jUz +usK +iBA +iBA +iBA +iBA +iBA +iBA +fPm +mFS +iBA +lOy +rRg +rRg giN -htP -bmV -afz +doL +huQ +vNP xyO eDQ eDQ eDQ xyO -fZe -tfj -mGb -lzu -hrG -mos -rHv -shG +wsp +kHO +whH +bPn +mHA +lIu +dpM +jZW qcN qcN nxW nSP -hli +kxN nxW qcN nSP -jGk +wDZ nxW qcN -pco -qqA -aQc +kWg +jKi +cmx xgG xgG qvo @@ -51339,23 +44261,23 @@ xgG xgG xgG qvo -mjA -wQi +qTG +fgz xgG -vUM -sJZ -tEJ -cNu +rZS +gXT +ezO +vCn wSx -rOL -sNa +aor +gOd dnh osX oBJ osX wSx -etv -cto +gYF +oAN xxk eov mCF @@ -51370,8 +44292,8 @@ mCF wOR xxk mxB -eJS -cto +nWm +oAN ksX cty cty @@ -51385,9 +44307,9 @@ cty cty cty ksX -cto -cto -cto +oAN +oAN +oAN xxk aOg aOg @@ -51413,35 +44335,34 @@ wUU "} (76,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +ngJ +uod +uod +uod dXg dXg dXg dXg -eDY -asx -asx -kzo -izB -fZx -asx -hOp -asx -wMw -wMw -pbp -cYZ -bZU -bZU +tbt +aUc +aUc +xdP +oHb +sXP +aUc +wVy +aUc +iBA +iBA +veh +foi bZU +rtm bZU bZU bZU @@ -51459,75 +44380,76 @@ bZU bZU bZU bZU +rtm bZU -miF -mrC -wMw -wMw -wMw -wMw +lPP +usK +iBA +iBA +iBA +iBA xVQ kyz kqA fOO aMC aMC -aqw +pVx giN -cTV -hyr -bmV -qxu +ecS +rRg +huQ +mAH eDQ svD oNy teT eDQ -lzu -gqX -hvO -ckI -tam -lss -rHv -oMs -kiE -xNY -qqA -qqA -aQc -qqA -kWZ -rVZ -aQc -qqA -nfk -qqA -qqA -aQc -kWZ -rVZ -qqA -qqA -qqA -qqA -qqA -xNY -qqA +bPn +kgq +pEW +err +uAC +tGP +dpM +aTq +waV +iik +jKi +jKi +cmx +jKi +iHG +rLt +cmx +jKi +oTr +jKi +jKi +cmx +iHG +rLt +jKi +jKi +jKi +jKi +jKi +iik +jKi sah haq eRE iPw pbf xgG -wwd -mjA -rzM +fpI +qTG +ull qvo -eea -sJZ -tEJ -cNu +ezm +gXT +ezO +vCn wSx wSx wSx @@ -51536,7 +44458,7 @@ wSx wSx wSx wSx -etv +gYF xxk xxk mCF @@ -51550,10 +44472,10 @@ mCF mCF mCF mnL -cto -cto -etv -cto +oAN +oAN +gYF +oAN ksX cty cty @@ -51567,9 +44489,9 @@ cty cty cty ksX -cto -fLu -cto +oAN +nJg +oAN ksX aOg aOg @@ -51595,59 +44517,59 @@ wUU "} (77,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -pAX -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +btV +uod +cOZ +lRw +uod +uod +uod dXg xFS -vZR -eha -dKy -qVD -fXu -asx -asx -asx -wMw -wMw -pbp -wCc -uaV -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -uaV -nXR -kvQ -jyq -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -wCc -mrC -wMw -olD -olD -olD +atf +dOX +qtY +wiu +iFF +aUc +aUc +aUc +iBA +iBA +veh +tnj +xCd +xCd +lWZ +wcA +fLb +xCd +lWZ +wcA +fLb +xCd +lWZ +wAe +fLb +xCd +lWZ +wcA +fLb +xCd +lWZ +wcA +fLb +tnj +usK +iBA +lgu +lgu +lgu teH oaO wns @@ -51657,69 +44579,69 @@ kqA giN giN giN -hyr -bmV -qxu +rRg +huQ +mAH eDQ eDQ oNy eDQ eDQ -lzu -gqX -hvO -ckI -hvO -mrd -ogq -qgy -mlT -kIK -kIK -kIK -bfq -kIK -jAx -kIK -bfq -akf +bPn +kgq +pEW +err +pEW +pru +ura +kUa +ydK +sfU +sfU +sfU +pky +sfU +xzB +sfU +pky +egn snE -kIK -kIK +sfU +sfU pLF -jAx -kIK -kIK -kIK -kIK -kIK -kIK -fAQ -qqA +xzB +sfU +sfU +sfU +sfU +sfU +sfU +nUC +jKi qvo vOW rKB jHJ tXE qvo -mqt -qhN -kXZ +bIP +fuN +jme qvo -ueg -sJZ -tEJ -cNu +atw +gXT +ezO +vCn lNb -apY -vzt -ezt -ezt -ezt -ezt -ezt +wXm +ltD +aYl +aYl +aYl +aYl +aYl toU -cto +oAN xxk mCF aOg @@ -51732,9 +44654,9 @@ mCF mCF hoC owM -qEG -cto -etv +cuD +oAN +gYF xxk xxk mCF @@ -51749,9 +44671,9 @@ cty cty cty ksX -cto -cto -cto +oAN +oAN +oAN ksX hoC mCF @@ -51777,59 +44699,59 @@ wUU "} (78,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ +wmz +jNI +jNI +jNI +jNI +ngJ +uod +ePH +uod gVO jaF qgm -lTR +cOZ dXg dXg xFS eqg -bJV -bJV -bJV +ndi +ndi +ndi qTs -asx -asx -xOI -qoE -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -jgL -mrC -asx -asx -asx +aUc +aUc +mYp +gUg +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +lgu +avE +usK +aUc +aUc +aUc kqA aSe rFv @@ -51838,70 +44760,70 @@ iFm kqA lGD giN -hyr -hyr +rRg +rRg qOV -qxu +mAH eDQ mlN eDQ mxv eDQ -lzu -vfg -yeH -lzu -hrG -mos -rHv -oMs -kiE -qqA -qqA -qqA -qqA +bPn +gHa +evN +bPn +mHA +lIu +dpM +aTq +waV +jKi +jKi +jKi +jKi yil -qqA +jKi gxi -qqA -qqA +jKi +jKi sKN -qqA -qqA -bft -qqA -gjs -qqA -qqA -qqA -qqA -qqA -aQc -qqA +jKi +jKi +tXG +jKi +jnx +jKi +jKi +jKi +jKi +jKi +cmx +jKi qvo slB tNT bur vRI oxi -qnf -ayo -wbB +uxI +rBe +rjP qvo -ueg -fPn -aBB -ozz -lmd -hys -hys -hys -hys -hys -hys -hys +atw +vFB +keR +mXj +xAT +lTk +lTk +lTk +lTk +lTk +lTk +lTk pGP -cto +oAN xxk mCF aOg @@ -51914,9 +44836,9 @@ mCF mCF hoC owM -ghs -cto -etv +pXD +oAN +gYF xxk xxk mCF @@ -51931,9 +44853,9 @@ mCF cty cty ksX -cto -cto -cto +oAN +oAN +oAN ksX hoC mCF @@ -51959,70 +44881,70 @@ wUU "} (79,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +uBN +uod +uod +cOZ scL vLo lnO -qwQ -qwQ -qwQ +uod +uod +uod dXg -qwQ -qwQ -qwQ -pAX +uod +uod +uod +lRw rMl -asx -fZB -asx -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -fZB -asx +aUc +iPY +aUc +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +usK +aUc +iPY +aUc kqA kEB sSp hlw vhJ bgE -kpN +mSI giN -hyr -hyr -hyr +rRg +rRg +rRg pGJ nio lkH @@ -52030,26 +44952,26 @@ xXp lYF srW pGJ -mFY -oMs -xWY -hvO -bih -rHv -qMl +kgM +aTq +vAB +pEW +bzL +dpM +oxR xRF srY -hFE -egp +gHo +oVV xRF yil qio yil jcT -ojG -aQc -qqA -vMU +bia +cmx +jKi +grw clX clX qio @@ -52057,32 +44979,32 @@ qio qio qio qio -qqA -aQc -qqA +jKi +cmx +jKi xgG duw aKA mcN aAg xgG -sLU -qOn -wbB +bVY +rkF +rjP qvo -ueg -sJZ -tEJ -ouV +atw +gXT +ezO +nuA lNb -ezt -ezt -ezt -ezt +aYl +aYl +aYl +aYl ixr ixr ixr -etv +gYF xxk xxk mCF @@ -52096,9 +45018,9 @@ bls mCF cty owM -cto -cto -etv +oAN +oAN +gYF xxk xxk mCF @@ -52113,9 +45035,9 @@ aOg cty cty ksX -cto -cto -cto +oAN +oAN +oAN ksX cty mCF @@ -52141,59 +45063,59 @@ wUU "} (80,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +ngJ +uod +uod +uod eGX hKK fLY -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +uod +uod +uod +uod +uod +uod +uod +uod btU -asx -asx -wCR +aUc +aUc +dOU gsQ icb -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -dlr -asx +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +iBA +usK +aUc +ksc +aUc bgE pTg ycY @@ -52204,7 +45126,7 @@ giN giN giN giN -rfn +bGY pGJ dXd tGV @@ -52212,26 +45134,26 @@ tGV tGV itP pGJ -vNY -oMs -xWY -hrG -mos -rHv -oMs +quA +aTq +vAB +mHA +lIu +dpM +aTq snl -kTD -lLZ -dKc +iHg +ivq +vbP snl yil yil tiF yil -ojG -aQc -qqA -qqA +bia +cmx +jKi +jKi clX qio qio @@ -52239,34 +45161,34 @@ aUA vpQ qio qio -hLY -aXz -lhp +fit +lZT +tTO xgG xgG qvo xgG xgG xgG -rgy -mRZ -wDN +erY +oCA +jiT xgG -rGl -sJZ -fnq -cNu +nLi +gXT +tQt +vCn bkM ngg bkM ixr -ezt +aYl dad ixr ixr toU -cto -cto +oAN +oAN iFb mCF mCF @@ -52278,10 +45200,10 @@ mCF cty cty owM -diu -cto -etv -cto +suX +oAN +gYF +oAN ksX mCF aOg @@ -52295,9 +45217,9 @@ aOg cty cty ksX -bxx -bxx -bxx +xEu +xEu +xEu ksX cty mCF @@ -52323,29 +45245,29 @@ wUU "} (81,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -ebN -eha -tNy +wmz +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +nMZ +oqv +gHW gXf unH kKX @@ -52354,9 +45276,9 @@ wfK wfK ebm bJI -asx -asx -asx +aUc +aUc +aUc bJI bJI oJb @@ -52364,9 +45286,9 @@ wfK wfK ebm bJI -asx -asx -asx +aUc +aUc +aUc bJI bJI oJb @@ -52382,10 +45304,10 @@ egV bTf cKK duN -hyr -nRH -nRH -feW +rRg +hmM +hmM +qLw giN pGJ pGJ @@ -52394,65 +45316,65 @@ pGJ bhF pGJ pGJ -oBj -oMs -xWY -hvO -mrd -ogq -ciH +esZ +aTq +vAB +pEW +pru +ura +cyA tIV -hKe -fWU -mXO +ooq +mqQ +nrx xRF ira yil yil -qqA -qqA -aQc +jKi +jKi +cmx yil -qqA +jKi qio qio pGj iIc -aAC -wSL -axv -lDh -jQe -mHa +wMO +isy +hGF +bgf +dzZ +wZg sah jxe orH uIl odw qvo -feV -qOn -wbB +faw +rkF +rjP xgG -xff -sJZ -tEJ -cNu +cUs +gXT +ezO +vCn bkM bkM ngg -ipl +rwx ixr exj ixr -gxX -etv -cto -cto +lpK +gYF +oAN +oAN iFb mCF jdm -mCF +mSa mCF mCF mCF @@ -52461,7 +45383,7 @@ cty cty owM rXS -cto +oAN toU xxk ksX @@ -52477,9 +45399,9 @@ aOg aOg ksX ksX -qYd -fLu -cto +bYA +nJg +oAN ksX ksX hoC @@ -52505,29 +45427,29 @@ wUU "} (82,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy +wmz +jNI +jNI +jNI +jNI +uBN +nxG +cOZ +cOZ +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +cOZ +uod +xcl +gHW gPL hKK srU @@ -52536,28 +45458,28 @@ lYr pdn cRx bJI -asx -fZB -asx +aUc +iPY +aUc pUi rIG lYr -awr +nTf lYr -aHu +gmO tEc -asx -viY -asx +aUc +wol +aUc gfc -sFN +xuo lYr lYr lYr kRH bJI -rgf -asx +wWn +aUc aMC dSo kUj @@ -52565,71 +45487,71 @@ ixw rmV kqA giN -hyr +rRg giN iSW giN qUW -hyr -pJf +rRg +hLO giN -kIV -hyr +eMf +rRg thS -oMs -vAF -xWY -hrG -mos -rHv -oMs +aTq +cBF +vAB +mHA +lIu +dpM +aTq snl -qgR -dvw -qWt +dmL +oij +pWX snl yil yil yil gkF -pZD -aQc +eVQ +cmx yil -qqA +jKi qio qio vDf -gvJ -sLO -lum -lxR -rpN -jQe -xvj +qGo +nZG +sCe +nko +fxL +dzZ +cVo xgG -oWr +lyD iAX lIU tXE xgG -suN -qOn -wbB +xNE +rkF +rjP qvo -fkE -sJZ -tEJ -cNu -qnm +tkJ +gXT +ezO +vCn +gsg bkM ngg -tsz +rtS chs ixr ixr -gxX -etv -cto +lpK +gYF +oAN xxk iFb mCF @@ -52643,9 +45565,9 @@ hoC cty owM xxk -cto -etv -tcX +oAN +gYF +twi ksX vOo aOg @@ -52658,11 +45580,11 @@ mCF aOg aOg ksX -kgC -wtU -cto -cto -jps +rKP +kSm +oAN +oAN +tfp ksX ksX mCF @@ -52687,50 +45609,50 @@ wUU "} (83,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -aTY +wmz +jNI +jNI +jNI +jNI +uBN +uod +spz dXg -aTY -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -sUK +spz +uod +cOZ +uod +uod +uod +uod +uod +uod +uod +uod +cOZ +xcl +gHW +vjs +cWN eGX wXc -sJm -bVS +raG +unW kRH eOa -asx -dlr -asx +aUc +ksc +aUc itQ qKZ qyJ -vAZ +vyE vmw kRH eOa -svG -dlr -asx +sJN +ksc +aUc itQ qKZ qyJ @@ -52739,7 +45661,7 @@ lYr hZE bVX eOa -asx +aUc aMC dSo rmo @@ -52747,28 +45669,28 @@ qfC xbm kqA giN -hyr +rRg giN -hyr +rRg ovD hxO hxO -rbd -hyr -oZA -htP +sPq +rRg +pcy +doL jrq -oMs -oMs -hmp -oMs -hca -lzu -oMs -yjp -lDk -oKN -nTX +aTq +aTq +jHN +aTq +fXD +bPn +aTq +xFT +xKR +ely +kAv xRF yil yil @@ -52776,42 +45698,42 @@ yil qio sMJ sKN -qqA -qqA +jKi +jKi qio qio oRD -wSL +isy vVz -wSL -hlF -hLQ -boV -dkl +isy +tmc +wgQ +kEz +gVI qvo opW nOz hLI vRI oxi -rVI -hQb -lEw +aTz +nmM +fKN xgG -hUs -sJZ -tEJ -cNu -qnm +exp +gXT +ezO +vCn +gsg bkM ngg -qLq +jck chs ixr ixr nTG -etv -cto +gYF +oAN xxk mCF mCF @@ -52824,11 +45746,11 @@ mCF mCF cty vVJ -cto -cto -etv -cto -wFx +oAN +oAN +gYF +oAN +iEq mCF aOg aOg @@ -52840,12 +45762,12 @@ mCF aOg aOg ksX -kgC -lun -cto -cto -drK -cto +rKP +eae +oAN +oAN +nnj +oAN ksX mCF mCF @@ -52869,59 +45791,59 @@ wUU "} (84,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -rYC +wmz +jNI +jNI +jNI +jNI +uBN +uBN +btV dXg -qwQ -lTR +uod +cOZ gVO jaF jaF jaF qgm -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod +cOZ scL -dOS +hGZ rfV lnO -fHf -eha -tNy -eXg -jLS -lTR +mjP +oqv +gHW +prF +mWQ +cOZ scL oGv lsN lnO -fHf -eha -tNy -eXg -jLS -lTR +mjP +oqv +gHW +prF +mWQ +cOZ scL oGv -rKM +rDJ lnO -lTR -fHf -wPl +cOZ +mjP +brR aMC kqA kqA @@ -52929,22 +45851,22 @@ bgE bgE bgE aMC -ldr -hyr +ccP +rRg iSW giN giN mMJ -cZZ -htP -ooe -ukX +krO +doL +mWE +cDG wHk -evV +qyw aVQ lsU -oMs -pCf +aTq +vEl lsU fkR fkR @@ -52957,33 +45879,33 @@ pVN pVN fkR fkR -gSn -qqA -tDF +vFC +jKi +eBi qio qio qio -qfL -wSL -wyE -axv -hLY -boV -nLI +tzS +isy +qNA +hGF +fit +kEz +dZL qvo tgk bLp dWN sRM xgG -qCk -gsq -atz +cJi +fvt +cLd xgG -vUM -sJZ -tEJ -ciu +rZS +gXT +ezO +ezJ bkM bkM chs @@ -52992,7 +45914,7 @@ chs ixr poz nTG -etv +gYF xxk xxk mCF @@ -53006,9 +45928,9 @@ mCF mCF mCF wOR -cto -cto -etv +oAN +oAN +gYF xxk xxk mCF @@ -53022,10 +45944,10 @@ ksX ksX ksX loP -lYQ -cto -cto -wgv +bfD +oAN +oAN +ifG mMu xxk iDn @@ -53051,59 +45973,59 @@ wUU "} (85,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +ePH dXg -aTY +spz scL lsN gcF wnA lnO -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod +cOZ scL gDI jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +cOZ +xcl +gHW +vjs +cOZ +cOZ scL kvC jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +cOZ +xcl +gHW +vjs +cOZ +cOZ scL oGv oGv lnO -lTR +cOZ dXg -fHf +mjP jEG hET hET @@ -53111,7 +46033,7 @@ koZ hET wft aMC -sNT +gVv giN vFl sXb @@ -53124,34 +46046,34 @@ mRq sXb mRq xzj -oxA -oMs -hca -wRB +lkN +aTq +fXD +vKy fkR -qps -bVI -pqG -bVI -gan -bVI -bVI -bVI -gKn -nDC -aQc -tDF -tDF -tDF +uBo +wWj +kOl +wWj +qYB +wWj +wWj +wWj +lLU +dTN +cmx +eBi +eBi +eBi qio qio -rja -gvJ -szS -axv -lDh -boV -dkl +puv +qGo +wxo +hGF +bgf +kEz +gVI xgG xgG qvo @@ -53162,25 +46084,25 @@ xgG qvo xgG xgG -vUM -sJZ -tEJ -muF +rZS +gXT +ezO +uKQ pKs chs chs kGq -wvI +ixr ixr ixr ixr toU -cto +oAN xxk meS eOK -gPE -gPE +uFn +uFn cty cty mCF @@ -53188,9 +46110,9 @@ mCF mCF mCF wOR -cto -cto -etv +oAN +oAN +gYF swV xxk mCF @@ -53201,18 +46123,18 @@ cty mCF mCF iDn -wTE -cto -cto -cto -cto +fDS +oAN +oAN +oAN +oAN xxk -cto +oAN xxk xxk xEG cSa -mCF +mSa mCF mCF mCF @@ -53233,59 +46155,59 @@ wUU "} (86,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +nxG +cOZ scL vom hJq hXe lnO -qwQ -pAX -qwQ -qwQ -uYJ -eDY -tNy -oLZ -qwQ -qwQ +uod +lRw +uod +uod +nxG +xcl +gHW +vjs +uod +uod eGX hKK fLY -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR +cOZ +uod +xcl +gHW +vjs +cOZ +cOZ eGX hKK fLY -lTR -lTR -eDY -jzL -oLZ -lTR -lTR +cOZ +cOZ +xcl +mxm +vjs +cOZ +cOZ scL oGv oGv lnO dXg -lTR -lTR +cOZ +cOZ qTZ hKK bbG @@ -53293,61 +46215,61 @@ hKK hKK gdJ vKv -bZA +kau giN giN sXb -egH -pJQ -aVt -tzw -dSA -cGc -aVt -iet +cKv +vYJ +tHA +ydo +hQc +oYm +tHA +eAY sXb -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp vDe vio dHY wrg -jfn -hPD -ugi +aKe +rwX +uZD pVN -aQc -tDF -bzf +cmx +eBi +dth gyz clX -azr -aAC -wSL -wSL -axv -edu -boV -nLI -jfP -bak -cmf -ezc -ezc -bak -uOF -bak -tQy -fEm -vUM -sJZ -tEJ -cNu +hLV +wMO +isy +isy +hGF +uZV +kEz +dZL +bpX +dmu +nBe +nNN +nNN +dmu +nds +dmu +oyk +eAn +rZS +gXT +ezO +vCn pKs chs chs @@ -53356,13 +46278,13 @@ ixr ixr ixr exj -etv +gYF xxk xxk aOg eOK -gPE -nYi +uFn +mYQ cty aOg aOg @@ -53372,7 +46294,7 @@ mCF wOR xxk xxk -gAK +cKF xxk mrY mCF @@ -53383,15 +46305,15 @@ eoV mCF mCF iDn -fLu -cto -cto -kDJ +nJg +oAN +oAN +mQV ncd ckG -cto -cto -cto +oAN +oAN +oAN iDn xGV aOg @@ -53415,126 +46337,126 @@ wUU "} (87,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -aTY -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +spz +cOZ eGX hKK vDw aag lnO -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY +uod +cOZ +uod +uod +cOZ +xcl +gHW +vjs +uod +uod +cOZ +uod +uod +uod +cOZ +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +xcl iAP -sgn +pkh dXg dXg scL oGv hXR lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR -aTY +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +spz qsb vKv -hsl +kjb iSW giN mRq -oyb +oQa jzZ mCY pjn mCY jzZ mCY -wjd +jzZ mRq -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp xtZ cbK ara wrC eTP -hPD -uQH +rwX +xdq pVN -aQc -dkl -dkl -mOx -iZT -roT -gdO -wSL -gvJ -hlF -suE -dkV -sff -sff -hLF -nVk -rZA -hLF -nVk -nVk -nVk -mlT -nbA -nbA -lQA -ptY -uzg +cmx +gVI +gVI +kzy +rGQ +rHV +vzh +isy +qGo +tmc +oTK +wWu +mII +mII +vrs +sox +lNa +vrs +sox +sox +sox +ydK +rOv +rOv +blV +bWR +wME bkM chs chs chs -rCs +sVA ixr ixr ixr @@ -53543,7 +46465,7 @@ xxk xxk eOK mCF -gPE +uFn cty cty aOg @@ -53553,9 +46475,9 @@ mCF mCF owM mxB -cto -etv -cto +oAN +gYF +oAN ksX cty mCF @@ -53566,14 +46488,14 @@ mCF mCF xEG xxk -cto -cto -cto -cto -wgv -cto -fLu -cto +oAN +oAN +oAN +oAN +ifG +oAN +nJg +oAN ksX aBK aOg @@ -53597,71 +46519,71 @@ wUU "} (88,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -aTY -qwQ -aTY +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +uod +spz +uod +spz dFt hKK fLY -lTR -qwQ -lTR -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -aqh -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -aTY -lTR -lTR -lTR -eDY -cpF -cpF +cOZ +uod +cOZ +uod +uod +xcl +gHW +vjs +uod +uod +uod +fuV +uod +cOZ +uod +xcl +gHW +vjs +cOZ +cOZ +cOZ +spz +cOZ +cOZ +cOZ +xcl +mKe +mKe dXg -lTR +cOZ scL oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -aTY -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ +spz +cOZ +cOZ vEe vKv -hsl +kjb giN -hyr +rRg mRq -nih +bVM jzZ lZa gyw @@ -53670,48 +46592,48 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv -mXx -tpL -khb -dnA +vAB +pEW +bzL +dpM +tGU +avi +hvp +kwt lQg ara xHt nZk -hPD -mZi -mXx -aQc -qXO -tso -bbW -qQk -per -mVY -opP -lMl -pRR -rpN -aXz -oXm -oXm -xne -xne -xne -xne -mtx -cWs -xne -tQy -rMN -lMD -anE -tEJ -bZI +rwX +byq +tGU +cmx +uGM +rvV +uVN +hBm +pYY +qIr +inX +mOe +aFz +fxL +lZT +jsa +jsa +dUv +dUv +dUv +dUv +sKx +tJq +dUv +oyk +bpk +uCO +gPd +ezO +xts bkM ngg dtH @@ -53720,7 +46642,7 @@ chs ixr ixr ixr -mMZ +weT xxk xxk mCF @@ -53735,9 +46657,9 @@ dda mCF owM xxk -cto -etv -cto +oAN +gYF +oAN ksX cty mCF @@ -53750,12 +46672,12 @@ ksX ksX ksX ksX -aMN +tif xxk -cto -cto -esw -cto +oAN +oAN +mpq +oAN ksX aOg mCF @@ -53779,71 +46701,71 @@ wUU "} (89,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -qHl -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -pAX -lTR -lTR -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +cOZ +uod +uod +uod +nay +uod +cOZ +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod +lRw +cOZ +cOZ +uod dXg -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR -lTR -lTR -fHf -cpF -lTR -lTR +uod +xcl +gHW +vjs +cOZ +cOZ +spz +cOZ +cOZ +cOZ +cOZ +mjP +mKe +cOZ +cOZ gVO uTu oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ gVO bEY aMC -hyr +rRg giN mpL sXb -nih +bVM jzZ mCY gyw @@ -53852,34 +46774,34 @@ pKg mCY jzZ mRq -xWY -hvO -bih -rHv -hPD -tpL -khb +vAB +pEW +bzL +dpM +rwX +avi +hvp urd hla lVW lZh nZk -hPD -mZi -hPD -aQc -qXO -tso -qBO -eUh -izP -khB -nTH -pNT -izP -eUh -aXz -nYy +rwX +byq +rwX +cmx +uGM +rvV +ebL +ntA +nkW +eHT +abY +eEZ +nkW +ntA +lZT +sfR xNR ydx xNR @@ -53890,10 +46812,10 @@ xNR ydx xNR xNR -rMN -mzv -fqu -rMN +bpk +bAf +aVV +bpk bkM bkM bkM @@ -53901,9 +46823,9 @@ bkM pKs pKs bkM -cNC -etv -cto +nGu +gYF +oAN xxk mCF mCF @@ -53916,10 +46838,10 @@ gCh dda mCF owM -cto -cto -etv -cto +oAN +oAN +gYF +oAN ksX mCF mCF @@ -53932,12 +46854,12 @@ mCF hoC cty ksX -kgC -qYd -cto -cto -cto -cto +rKP +bYA +oAN +oAN +oAN +oAN ksX aOg mCF @@ -53961,51 +46883,51 @@ wUU "} (90,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -msj -daS -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jPL +ePH +lRw +uod +uod +uod +uod +uod +lRw +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod dXg -qwQ -qwQ +uod +uod dXg -qwQ -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +uod +uod +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +ePH +cOZ +cOZ +cOZ +cOZ +cOZ scL hXR oGv @@ -54013,19 +46935,19 @@ oGv lnO dXg dXg -daS -lTR -lTR +ePH +cOZ +cOZ gVO jaF aqq cwE cwE -ngC -hyr +kEs +rRg iSW sXb -djh +lZZ jzZ jzZ gyw @@ -54034,58 +46956,58 @@ jzZ jzZ sia sXb -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp qLs iwg ara hAh nZk -hPD -uQH +rwX +xdq pVN -aQc +cmx bum -azh -fEb -nLI -nLI -ovp -mIQ -fnX -ujR -dkl -boV -dkl +rzq +bLW +dZL +dZL +kYK +tlj +hQh +uEe +gVI +kEz +gVI xNR iLd iTP jZG wmX vYQ -lgb -fEI -wfy +vCZ +myA +vgF xNR gFx aFg umT gCH gFx -vrj -mkt -aUP -jeo -kbp -xgU +jTP +vQp +iNV +bpG +fBm +wnW xxk -etv -cto +gYF +oAN xxk mCF mCF @@ -54098,11 +47020,11 @@ mCF mCF aOg wOR -cto -cto +oAN +oAN toU -cto -cba +oAN +oll mCF mCF jdm @@ -54114,11 +47036,11 @@ aOg aOg cty ksX -kgC -qYd -cto +rKP +bYA +oAN xxk -cto +oAN ksX ksX mCF @@ -54143,71 +47065,71 @@ wUU "} (91,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -aTY -qwQ -qwQ -qwQ -aTY -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +cOZ +spz +uod +uod +uod +spz +cOZ +uod +uod +uod +uod +cOZ +uod +xcl +gHW +vjs +uod dXg dXg -qwQ +uod dXg -qwQ -aqh -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY -cpF -lTR -lTR +uod +fuV +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +xcl +mKe +cOZ +cOZ scL oGv -tmC +xCk hXR lnO dXg -daS -lTR -lTR -lTR +ePH +cOZ +cOZ +cOZ scL oGv cwE cwE -qqM -hsl -hyr +ubh +kjb +rRg giN -dVq -tzw +pRk +ydo jzZ jzZ rdx @@ -54215,59 +47137,59 @@ pol pol pol pol -dVq -lbr -urA -lss -rHv +pRk +uzv +imS +tGP +dpM pVN -daA -khb +xIu +hvp urd mwd ara ara nZk -hPD -uQH +rwX +xdq pVN -dYn -rmB -rmB -dxt -rxa -rxa -wEU -sNp -rmB -rmB -tcq -jyw -xya +qOe +tah +tah +aMW +wJG +wJG +uup +vsO +tah +tah +pRe +nIN +lBC ydx sdq wpX qQt jNT qeu -thY -mPI -bTm -snP +sEk +nTi +vvz +oBV qhF ffx umT eDF gFx -fvw -tEJ -ozC -qIi -tEJ -ezt +fHm +ezO +qeb +ofb +ezO +aYl xxk toU -cto +oAN xxk mCF mCF @@ -54281,8 +47203,8 @@ aOg xGV wOR xxk -cto -etv +oAN +gYF xxk ksX aOg @@ -54297,9 +47219,9 @@ aOg cty ksX ksX -qYd -cto -fLu +bYA +oAN +nJg ksX ksX mCF @@ -54325,51 +47247,51 @@ wUU "} (92,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -pAX -lTR -lTR -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -nFD -lTR -lTR -lTR -lTR -lTR -lTR -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +cOZ +uod +lRw +cOZ +cOZ +cOZ +cOZ +uod +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod +cOZ +cOZ +uod +uod +uod +uod +xcl +gHW +vjs +pQl +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ stl -caD -lTR +vJL +cOZ scL oGv hXR @@ -54377,19 +47299,19 @@ oGv pfd qgm dXg -lTR -lTR -lTR +cOZ +cOZ +cOZ scL oGv cwE cwE -hsl -hsl -hyr -hyr +kjb +kjb +rRg +rRg sXb -esO +aAD dYp wZF fjH @@ -54398,58 +47320,58 @@ wZF jzZ dYX sXb -ePB -hvO -mrd -ogq +xct +pEW +pru +ura riJ -spP -fdw +sdO +yjG xtZ ifZ eMi qRy moK -hPD -uQH +rwX +xdq riJ -aQc -qqA -qqA +cmx +jKi +jKi pbt iLD pbt pbt -cLY +enX iLD iLD pbt pbt iLD xNR -wjh +kPL vNu cdL oWs qFZ -syL -lsR -clD +fgk +rmW +gzl ydx -xGp +qVH aFg aPe qnp gFx -wLF -oCi -sgq -mAB -tEJ -jUt -mOG +bIQ +bOW +qlR +uxK +ezO +bBM +uaN toU -cto +oAN xxk mCF jdm @@ -54463,9 +47385,9 @@ aOg aOg iHE xxk -cto -etv -cto +oAN +gYF +oAN xxk mCF mCF @@ -54479,9 +47401,9 @@ aOg aOg cty cqZ -bxx -bxx -bxx +xEu +xEu +xEu ksX mCF mCF @@ -54507,71 +47429,71 @@ wUU "} (93,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -aTY -lTR -lTR -lTR -lTR -uoh -lTR -lTR -lTR -cpF -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +cOZ +uod +uod +lRw +uod +uod +uod +uod +uod +uod +xcl +gHW +vjs +uod +uod +uod +uod +uod +uod +cOZ +xcl +gHW +vjs +spz +cOZ +cOZ +cOZ +cOZ +lXx +cOZ +cOZ +cOZ +mKe +cOZ scL rMb oGv oGv oGv lnO -lTR -lTR -lTR +cOZ +cOZ +cOZ dXg scL hXR cwE cwE -hsl -hsl +kjb +kjb giN -hyr +rRg sXb -tzw +ydo aJP svH kBo @@ -54580,54 +47502,54 @@ ybm lWf jzZ mRq -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp urd ara ara -iGm +phT nZk -hPD -uQH +rwX +xdq pVN -aQc -qqA -pZD +cmx +jKi +eVQ iLD -lQO -cvW -pYV -iJk -foz -juL -iBz -tPS -lUT +rZy +aFI +nOB +cvN +kGk +ogB +lPn +ayR +hyw xNR trC yhy sJq oEc tMY -dKm -xxo -uLP +uIK +kEE +gPk xNR nIF qeh otO qhF tjO -cwe -wpm -vDC -tEJ -tEJ +vLb +pWC +emW +ezO +ezO pKs xxk toU @@ -54645,9 +47567,9 @@ hoC hoC owM xxk -cto -etv -cto +oAN +gYF +oAN xxk meS aOg @@ -54661,9 +47583,9 @@ aOg aOg cty cqZ -cto -cto -cto +oAN +oAN +oAN ksX mCF mCF @@ -54689,51 +47611,51 @@ wUU "} (94,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +cOZ +nxG +uod +uod +uod +uod +uod +cOZ +uod +uod dXg -qwQ -qwQ -eDY -tNy -oLZ -qwQ -aqh -lTR -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR +uod +uod +xcl +gHW +vjs +uod +fuV +cOZ +uod +uod +cOZ +uod +xcl +gHW +vjs +cOZ +cOZ +spz +cOZ +cOZ dXg -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv oGv @@ -54741,19 +47663,19 @@ hXR oGv pfd qgm -lTR -lTR -lTR +cOZ +cOZ +cOZ scL oGv cwE bgE yeJ giN -hyr +rRg iSW mRq -tzw +ydo aJP ogj akk @@ -54762,34 +47684,34 @@ akJ lWf jzZ mRq -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp urd hAh ara ara nZk -hPD -uQH +rwX +xdq pVN -aQc -qqA -qqA +cmx +jKi +jKi iLD -wno -jCr -iNE -xbA -akO -jCr -iNE -jCr -bLy +mid +vgI +tSu +coa +sWc +vgI +tSu +vgI +iGY xNR xNR xNR @@ -54805,14 +47727,14 @@ eUH kIb vPK eDF -fFm -eIT -xdz -yeG -frQ +vNV +wAD +kQL +mXS +pzl bkM rXS -etv +gYF xxk xxk mCF @@ -54827,9 +47749,9 @@ cty cty owM ksX -cto -etv -cto +oAN +gYF +oAN xxk mCF aOg @@ -54843,9 +47765,9 @@ mCF aOg hoC cqZ -cto +oAN mxB -cto +oAN ksX mCF mCF @@ -54871,61 +47793,61 @@ wUU "} (95,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +cOZ +uod +uod +uod +uod +cOZ +cOZ +cOZ +cOZ dXg -qwQ -qwQ -eDY -tNy -oLZ -pAX -qwQ -qwQ -qwQ -uoh -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF +uod +uod +xcl +gHW +vjs +lRw +uod +uod +uod +lXx +cOZ +uod +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +mKe gVO jaF uTu -tmC +xCk oGv -dOS +hGZ hXR oGv lnO -lTR -lTR -lTR +cOZ +cOZ +cOZ scL oGv cwE @@ -54935,7 +47857,7 @@ iks giN iSW mRq -tzw +ydo jzZ oos fGM @@ -54944,49 +47866,49 @@ oos jzZ jzZ mRq -xWY -tam -lss -rHv -mXx -tpL -khb -hIo +vAB +uAC +tGP +dpM +tGU +avi +hvp +bpc hOv wYa god nZk -hPD -mZi -mXx -aQc -qqA -qqA +rwX +byq +tGU +cmx +jKi +jKi iLD -nRy -qlW -gPY -uYF -hen -sJx -kZn -qvQ -bLy +pAF +aoR +rWL +nGS +nWi +jEd +veU +lma +iGY ydx bAE kIg nmC cio agi -hDk -aZb -rAy +gNs +iBZ +nIn xNR fvd aFg woF uYL -bGz +ePC chr eDF fXG @@ -54994,9 +47916,9 @@ gFx gFx bkM aFt -etv -cto -cto +gYF +oAN +oAN xxk ksX ksX @@ -55009,9 +47931,9 @@ ksX ksX eEd eEd -iaM -hbi -iaM +phC +eou +phC eEd mCF mCF @@ -55025,8 +47947,8 @@ mCF mCF mCF cqZ -cto -cto +oAN +oAN xxk xEG jdm @@ -55053,49 +47975,49 @@ wUU "} (96,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +uod +uod +cOZ +uod +uod +uod +uod dXg dXg -lTR -qwQ -pAX -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -oLZ -lTR -lTR -lTR +cOZ +uod +lRw +xcl +gHW +gRE +xqn +xqn +xqn +xqn +xqn +xqn +xqn +ycL +gHW +vjs +cOZ +cOZ +cOZ dXg dXg dXg -lTR -lTR -lTR +cOZ +cOZ +cOZ scL hXR oGv @@ -55105,65 +48027,65 @@ oGv oGv oGv lnO -lTR -lTR +cOZ +cOZ gVO lzD upH cwE bgE -fuh -kWR +qvA +bpv iSW iSW sXb -ibo -tzw -ejK -keE -fpe -tzw -tzw -tzw +gwu +ydo +dsP +uDK +vlq +ydo +ydo +ydo sXb -ntw -hvO -bih -rHv -hPD -tpL -khb +iIh +pEW +bzL +dpM +rwX +avi +hvp urd pku -xUH +mmp xHt nZk -hPD -mZi -hPD -aQc -qqA -qqA +rwX +byq +rwX +cmx +jKi +jKi iLD -nRy -vPj -cHR -uYF -hen -hWA -nBD -qvQ -uXX +pAF +hEO +lKa +nGS +nWi +kJy +ikw +lma +fDY xNR rau vNu vNu iAc qFZ -hPd -wLv -dSs -lvG +nJM +hVJ +wte +dKq gFx aFg qlx @@ -55174,24 +48096,24 @@ gFx sgz qhF qhF -qnN -mUP +cvy +gGd nDl -mUP +gGd qMW qMW -mUP -mUP -mUP +gGd +gGd +gGd qMW -mUP -mUP +gGd +gGd qMW -mUP -mUP -mUP -mUP -mUP +gGd +gGd +gGd +gGd +gGd pGP xxk eEd @@ -55207,9 +48129,9 @@ mCF mCF mCF ksX -cto -cto -cto +oAN +oAN +oAN iDn mCF mCF @@ -55235,49 +48157,49 @@ wUU "} (97,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +nxG +uod +uod +uod +uod +uod +cOZ dXg dXg -qwQ -qwQ -lTR -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy -oLZ -lTR -lTR -lTR +uod +uod +cOZ +xcl +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +gHW +vjs +cOZ +cOZ +cOZ dXg dXg -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ scL oGv oGv @@ -55287,15 +48209,15 @@ oGv oGv hXR lnO -lTR -lTR +cOZ +cOZ scL oGv hXR cwE -lat -hyr -xYC +iWm +rRg +iCj dPR giN sXb @@ -55308,44 +48230,44 @@ sXb mRq mRq xzj -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM pVN -cMf -khb +uMK +hvp xtZ vcc ara gfA eTP -hPD -uQH +rwX +xdq pVN -aQc -qqA -hwa +cmx +jKi +sIb iLD -wno +mid pbt pbt -uYF -hen +nGS +nWi pbt pbt -qvQ -bLy +lma +iGY ydx kxW pbd mnm vNu wkM -thY -mPI -tQI -snP +sEk +nTi +aBY +oBV wrB ffx ddc @@ -55354,27 +48276,27 @@ nIR agl aZv vZm -xGp +qVH vZs -cTw -cto -cto +oZY +oAN +oAN mxB -cto -cto +oAN +oAN xxk -cto -cto -cto -cto -kul -cto +oAN +oAN +oAN +oAN +fWV +oAN xxk -cto -cto -cto -cto -etv +oAN +oAN +oAN +oAN +gYF mxB ksX cty @@ -55389,9 +48311,9 @@ mCF mCF mCF ksX -cto -cto -cto +oAN +oAN +oAN ksX mCF mCF @@ -55417,116 +48339,116 @@ wUU "} (98,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +uod +uod +cOZ +cOZ dXg -qwQ -qwQ -lTR -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -oLZ -daS -lTR -lTR -lTR +uod +uod +cOZ +xcl +gHW +oXr +ndi +ndi +ndi +ndi +ndi +ndi +ndi +oqv +gHW +vjs +ePH +cOZ +cOZ +cOZ dXg -lTR -aTY -lTR -lTR +cOZ +spz +cOZ +cOZ scL oGv hXR oGv -tgE +fVk hXR gJy oGv lnO -lTR -lTR +cOZ +cOZ scL vcz hXR cwE -leU -hyr -hyr -nRH -nRH -nRH -nRH -nRH -nRH -vqZ -hyr -aXm -rPT -rPT +xWs +rRg +rRg +hmM +hmM +hmM +hmM +hmM +hmM +dUu +rRg +rhe +oDi +oDi qAp -xWY -xuW -bih -rHv +vAB +pIV +bzL +dpM pVN -cMf -khb +uMK +hvp xKv gWd vfj qBy fbQ -hPD -uQH +rwX +xdq pVN -aQc -qqA -bft +cmx +jKi +tXG pbt -kPj -xFO -stU -uYF -hen -jCr -jCr -aAj -cGd +cYg +tIa +eAt +nGS +nWi +vgI +vgI +eyR +kwC xNR ybL vNu pRs ssZ vzH -bNt -syL -syL +gfY +fgk +fgk ydx hwP vuE @@ -55539,25 +48461,25 @@ bpT hoK lWJ bkM -dIK -vTe -vTe -cto -cto -cto -cto -cto -cto -eBT -bnc -fhV -lYi -oeO -cto +sww +oPj +oPj +oAN +oAN +oAN +oAN +oAN +oAN +vVI +jIk +lJU +ffC +wJx +oAN ubJ -cto -eJS -owk +oAN +nWm +kaS ksX cty cty @@ -55572,9 +48494,9 @@ aOg wBc glp xxk -cto -cto -cba +oAN +oAN +oll vOo mCF mCF @@ -55599,49 +48521,49 @@ wUU "} (99,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -vEg -qwQ -qwQ -eDY -tNy -nhY -rlI -rlI -rlI -rlI -bvF -rlI -hAI +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +nxG +cOZ +uod +uod +uod +uod +uod +uod +cOZ +cOZ +gvs +uod +uod +xcl +gHW +pOH +xqn +xqn +xqn +xqn +kxT +xqn +pNO qDr -tNy -oLZ -lTR -lTR -lTR +gHW +vjs +cOZ +cOZ +cOZ gVO jaF qgm -lTR -lTR -lTR +cOZ +cOZ +cOZ eGX hKK sRs @@ -55651,64 +48573,64 @@ oGv jSX hKK fLY -lTR -lTR +cOZ +cOZ scL hXR oGv cwE -cTV -hyr -sZe -hyr +ecS +rRg +koq +rRg iSW giN iSW iSW giN -vAz +pEm giN giN -rbd -hyr +sPq +rRg jrq -xWY -hvO -bih -euM +vAB +pEW +bzL +unf fkR -oBG -ufV -ufV -ufV -rIN -ufV -ufV -ufV -lTb +mJv +rGd +rGd +rGd +rBV +rGd +rGd +rGd +gdb fkR -pvs -qqA -gYg +cgI +jKi +niP pbt -qXn -hiD -hiD -fQE -oFq -hiD -vqU -oFq -nzr +snF +bPQ +bPQ +dec +jMf +bPQ +xUQ +jMf +rJB xNR pYx sQs rSX aIu owY -klP -ryG -cIP +bBy +vab +dqY xNR nWS aFg @@ -55721,13 +48643,13 @@ oKo laa gkx pKs -ghs -cto -cto -gLo -oEX -ghs -vTe +pXD +oAN +oAN +rit +ebY +pXD +oPj bkM bkM pKs @@ -55737,9 +48659,9 @@ pKs pKs bkM aFt -cto -etv -cto +oAN +gYF +oAN ksX cty cty @@ -55754,9 +48676,9 @@ aOg mCF iDn xxk -cto -cto -cba +oAN +oAN +oll mCF mCF mCF @@ -55781,105 +48703,105 @@ wUU "} (100,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +cOZ +uod +uod +uod +uod +uod +uod +cOZ +uod +uod +uod +uod +uod +xcl +gHW +rwf gYh gYh tSK eQm gYh rHE -uKY -eDY -tNy -oLZ -lTR -aTY -lTR +lXB +xcl +gHW +vjs +cOZ +spz +cOZ scL vGn lnO -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ scL hXR oGv oGv lnO -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ eGX sRs oGv cwE bgE -rAj -bGe -hyr +ogU +kUq +rRg iSW -cZZ -iJa +krO +dMc nKy pth uBV -jjN +onC giN -hyr -hyr +rRg +rRg qAp -xWY -hvO -bih -rHv +vAB +pEW +bzL +dpM fkR fkR pVN pVN pVN -xDy +gdK pVN pVN pVN fkR fkR -ojJ -kEV -iRZ +dFq +uSt +dOf pbt iLD -jCr -fiv +vgI +stF uWA iLD -jCr -pbM +vgI +gfT iLD iLD xNR @@ -55892,7 +48814,7 @@ xNR ydx xNR xNR -ldJ +aiK aFg umT scD @@ -55911,17 +48833,17 @@ bkM pKs bkM bkM -gIB -uLY -oFd -cLD -oFd -mcs -kus +iye +dCQ +uVx +duA +uVx +kCr +mSr aFt -wOC -etv -cto +nhE +gYF +oAN ksX cty cty @@ -55935,9 +48857,9 @@ phA aOg mCF ksX -cto -cto -bng +oAN +oAN +fjY ksX mCF mCF @@ -55963,69 +48885,69 @@ wUU "} (101,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +cOZ +uod dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -ctE +uod +uod +uod +uod +uod +uod +cOZ +uod +uod +cOZ +xcl +gHW +rwf gYh aDv -opd +wuQ iEe -diK +dJk rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR +vjs +xcl +gHW +vjs +cOZ +cOZ +cOZ eGX hKK fLY -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv hXR oGv lnO -lTR -lTR -lTR -nFD -aTY +cOZ +cOZ +cOZ +pQl +spz scL oGv cwE bgE -jEZ -cjf -jqr -vEM +mxu +aBd +wXO +luH bgE pGs pGs @@ -56036,42 +48958,42 @@ iSW uXR pGs pGJ -gnx -hvO -bih -mux -pot -kmb -mvI -mvI -mvI -wVE -mvI -mvI -pot -fJb -mvI -wVE -mvI -mvI -mvI -uLY -pGS -pGS -ihn -uLY -mJh -pGS -uLY -mvI -mvI -mvI -mvI -mvI -wmC -aED -pie -guE +oNH +pEW +bzL +jzJ +mBl +pnr +pgh +pgh +pgh +tIp +pgh +pgh +mBl +vqF +pgh +tIp +pgh +pgh +pgh +dCQ +vYd +vYd +ntU +dCQ +rHR +vYd +dCQ +pgh +pgh +pgh +pgh +pgh +ezy +eqP +eQx +uxY qus scD gFx @@ -56079,30 +49001,30 @@ aFg umT gFx dDu -xGp +qVH gFx vZm pUW quR lPk -jNW -rMN -mvI -mvI -wmC -mvI -uLY +sog +bpk +pgh +pgh +ezy +pgh +dCQ pKs -iTF -tEJ -tEJ -tEJ -tEJ -tEJ -gbG +cBl +ezO +ezO +ezO +ezO +ezO +bei upL -cto -etv +oAN +gYF xxk ksX cty @@ -56117,9 +49039,9 @@ aOg aOg mCF cqZ -cto -cto -cto +oAN +oAN +oAN xEG mCF aOg @@ -56145,61 +49067,61 @@ wUU "} (102,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +ePH +uod dXg -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +uod +cOZ +uod +uod +uod +uod +uod +uod +cOZ +uod +xcl +gHW +rwf gYh dlh ncn lXv sFc rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF -lTR -lTR +vjs +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +mKe +cOZ +cOZ scL oGv -xzc +kyb oGv lnO -daS -lTR -lTR -lTR -lTR +ePH +cOZ +cOZ +cOZ +cOZ scL oGv foQ @@ -56218,42 +49140,42 @@ pGs pGs pGs pGJ -xWY -hvO -bih -hvO -tEJ -rtV -tEJ -tEJ -tEJ -uXw -tEJ -tEJ -tEJ -rwV -tEJ -uXw -tEJ -tEJ -hgB -tEJ -aLn -tEJ -uXw -tEJ -azv -tEJ -tEJ -qDt -xAO -tvv -tEJ -tEJ -tEJ -oMl -oKx -bGy +vAB +pEW +bzL +pEW +ezO +xav +ezO +ezO +ezO +rwl +ezO +ezO +ezO +tMw +ezO +rwl +ezO +ezO +mJR +ezO +ubO +ezO +rwl +ezO +qbT +ezO +ezO +jnv +mek +uJE +ezO +ezO +ezO +vUo +ubD +dby tak pJs umT @@ -56266,26 +49188,26 @@ umT kTs lRz umT -lIT -qeK -bGy -aLn -tEJ -tEJ -tEJ -rMN -etf -rMN -tEJ -tEJ -tEJ -hgB -tEJ -gbG +mRC +qKv +dby +ubO +ezO +ezO +ezO +bpk +qrO +bpk +ezO +ezO +ezO +mJR +ezO +bei upL -fky -etv -cto +bNF +gYF +oAN ksX cty cty @@ -56299,9 +49221,9 @@ aOg mCF hoC cqZ -cto -cto -cto +oAN +oAN +oAN iDn aOg aOg @@ -56327,70 +49249,70 @@ wUU "} (103,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +uod +uod dXg -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +uod +uod +uod +cOZ +uod +uod +uod +uod +uod +xcl +gHW +rwf rHE -psk +rtH gyE anA jUB ipi -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -uoh -lTR +vjs +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +lXx +cOZ stl -cpF +mKe gVO uTu -rKM +rDJ oGv oGv lnO -aTY -lTR -lTR -lTR -lTR +spz +cOZ +cOZ +cOZ +cOZ scL oGv rMb oGv oGv -vss -vss +hXk +hXk gJy -dOS +hGZ pGs pGs pGs @@ -56400,42 +49322,42 @@ pGs pGs pGs pGJ -fQr -hvO -pXp -oZw -oGc -ngm -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -lEc -cit -eAJ -oGc -oGc -eAJ -oGc -buB -oGc -eAJ -oGc -oGc -oGc -oGc -kyr -eVU -sOj -oGc -oGc -oGc -bNi -lEc -tSg +dMP +pEW +uBQ +sHW +geT +fpx +geT +geT +geT +tBJ +geT +geT +geT +seb +jjr +tBJ +geT +geT +tBJ +geT +iPx +geT +tBJ +geT +geT +geT +geT +xoj +gkH +sNH +geT +geT +geT +qaW +seb +wjp hNb fjC hNb @@ -56448,26 +49370,26 @@ hNb rBa hNb mgq -jfD -uQJ -tSg -oGc -oGc -oGc -oGc -cug -cug -cug -oGc -oGc -oGc -ezW -tEJ -gbG +tdA +fXn +wjp +geT +geT +geT +geT +jGC +jGC +jGC +geT +geT +geT +bCq +ezO +bei upL -cto -etv -cto +oAN +gYF +oAN ksX ksX ksX @@ -56481,9 +49403,9 @@ mCF mCF mCF cqZ -cto -cto -cto +oAN +oAN +oAN iDn aOg aOg @@ -56509,50 +49431,50 @@ wUU "} (104,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -bLl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +cOZ +uod +xcl +gHW +jRr rHE rjM gLw hso -ijO +quy rHE -wJl -mEy -tNy -oLZ -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +gRE +ycL +gHW +vjs +cOZ +lXx +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv oGv @@ -56561,16 +49483,16 @@ oGv pfd jaF oAC -lTR -lTR -lTR +cOZ +cOZ +cOZ eGX hKK sRs oGv -kin -vss -vss +end +hXk +hXk oGv hXR pGs @@ -56582,42 +49504,42 @@ pGs pGs pGs pGJ -arg -oMs -qPs -lzu -rBP -afx -rBP -rBP -rBP -rBP -rBP -gvE -rBP -qQN -fjU -rBP -rBP -rBP -gvE -uLY -rBP -rBP -pqC -rBP -rBP -dYy -rMN -pGi -poU -dYy -hUx -hUx -hUx -cNF -oBQ -frQ +erh +aTq +oTU +bPn +iVV +gts +iVV +iVV +iVV +iVV +iVV +dtr +iVV +hlP +bUh +iVV +iVV +iVV +dtr +dCQ +iVV +iVV +oHf +iVV +iVV +czh +bpk +ftf +fFT +czh +sBl +sBl +sBl +cZm +oYc +pzl gFx vZm qus @@ -56630,30 +49552,30 @@ lFA wba nNz gFx -mXV -lMv -oDz -gFt -rBP -gvE -rBP -uLY +hcK +lxY +mVL +nBY +iVV +dtr +iVV +dCQ pKs -uLY -uLY -uLY -uLY -iKa -xAO -gmT +dCQ +dCQ +dCQ +dCQ +ebM +mek +gsH upL -cto -etv +oAN +gYF xxk ksX -cFe -cFe -cFe +kzT +kzT +kzT ksX iFb iFb @@ -56662,10 +49584,10 @@ mCF mCF mCF mCF -cba -cto -cto -cto +oll +oAN +oAN +oAN ksX aOg aBK @@ -56691,68 +49613,68 @@ wUU "} (105,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -eDY -vss -vss +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod +cOZ +cOZ +xcl +hXk +hXk gLw sKF aSt gLw pNk aSt -vss -vss -tNy -oLZ -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +hXk +hXk +gHW +vjs +cOZ +cOZ +cOZ +cOZ +ePH +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv hXR oGv -tmC +xCk oGv oGv lnO -lTR -lTR -daS -lTR -lTR +cOZ +cOZ +ePH +cOZ +cOZ scL hXR oGv -vss -gMi +hXk +siQ oGv oGv pGs @@ -56764,22 +49686,22 @@ pGs pGs pGs juW -wUj -bLN -viP -wUj +jJu +sed +aTV +jJu juW nTG nTG nTG lNb -vqd +oLV lNb nTG nTG nTG pNf -vqd +oLV lNb nTG nTG @@ -56790,15 +49712,15 @@ wVf sPs wVf wVf -qUf -uIH -jQg +eIv +wfl +uqo wVf -qhZ +hWZ wVf -qhZ +hWZ wVf -qhZ +hWZ wVf wjV abE @@ -56824,30 +49746,30 @@ pYn kgw kgw pYn -uLY -pEE -tEJ -buH +dCQ +miD +ezO +dSy aFt -cto +oAN toU -cto -cto -qYE -cto -cto -cto -ghs +oAN +oAN +gWT +oAN +oAN +oAN +pXD iFb cty cty mCF jdm mCF -cba +oll xxk xxk -cto +oAN ksX mCF aOg @@ -56873,70 +49795,70 @@ wUU "} (106,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +ePH +uod +cOZ +uod +uod +uod +uod +uod +cOZ dXg dXg -qwQ -eDY -vss -czA +uod +xcl +hXk +crs gLw dXr -qyW +uHw idr gLw gLw -czA -vss -tNy -wJl -rlI -rlI -rlI -rlI -lTR -rlI -lTR -lTR -lTR -lTR +crs +hXk +gHW +gRE +xqn +xqn +xqn +xqn +cOZ +xqn +cOZ +cOZ +cOZ +cOZ scL oGv oGv ibs -lQW +hSg gux -kGD +jdk kgm -mQG -lTR -lTR -aTY -lTR +sxt +cOZ +cOZ +spz +cOZ scL oGv nee -vss -gMi +hXk +siQ oGv -qFe +xQw oGv pGs pGs @@ -56946,23 +49868,23 @@ pGs pGs pGs juW -faP -ftF -bEX -pnL +ssl +uCh +pof +ktq juW -gDh -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -gDh -uEc -viK -gAV -xJZ +rPm +cHF +cHF +cHF +cHF +cHF +cHF +rPm +vNe +ajC +elu +cHF wqb kBZ hPj @@ -56972,54 +49894,54 @@ qyk jBw hlK wVf -gwG -pJn -krP +pUY +jZg +eTj wVf -kof -cHf -tGA -cHf -gwO +ayn +apR +gWb +apR +gCL wVf -pBS -viK -xJZ -yeF +pdN +ajC +cHF +iFJ cdb cdb wjV cdb cdb -wXu +qaR cdb -rRq -usB +aBg +qmB pYn -qTz -nWs -nWs -sre -nWs +grd +nXU +nXU +sbp +nXU pYn iIt xFE cBq pYn -tVl -fPn -aBB -tuL +kMR +vFB +keR +nkc mzt -mUP -chE -mUP -mUP -mUP -uVy -mUP -qWw -cto +gGd +qUy +gGd +gGd +gGd +mdk +gGd +aZS +oAN iFb cty cty @@ -57027,9 +49949,9 @@ hoC mCF jdm ksX -cto -cto -cto +oAN +oAN +oAN xxk mCF aOg @@ -57055,68 +49977,68 @@ wUU "} (107,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +cOZ +uod +uod +uod +uod +uod +uod +cOZ dXg -lTR +cOZ dXg -qwQ -eDY -tNy -aJD +uod +xcl +gHW +vNI eQm jFt qCE abu -tnD +ikB hFM -qLf -eha -vss -vss -vss -vss -vss -vss +oXr +oqv +hXk +hXk +hXk +hXk +hXk +hXk stl -lTR -lTR -lTR -lTR -cpF +cOZ +cOZ +cOZ +cOZ +mKe eGX sRs lsN hXR ibs eFB -kGD +jdk mnz -lTR -lTR -lTR +cOZ +cOZ +cOZ gVO jaF uTu oGv oGv -vss -vss +hXk +hXk oGv oGv oGv @@ -57128,23 +50050,23 @@ juW juW juW juW -xzr -eFJ -trh -qdk -wUj -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -viK -gAV -xJZ +bjU +iUM +qkz +aWl +jJu +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +ajC +elu +cHF wqb kBZ hPj @@ -57152,56 +50074,56 @@ wVf xLE ioc vqY -oaR +vfZ sPs -gwG -pJn -krP -qhZ -gwG -xOo -xOo -xOo -nHA -qhZ -uqw -viK -xJZ -xJZ -xJZ -ccU -sCA -aKk -xJZ -xJZ +pUY +jZg +eTj +hWZ +pUY +seJ +seJ +seJ +laR +hWZ +sxK +ajC +cHF +cHF +cHF +eLU +dUe +ooC +cHF +cHF cdb -wMn -viK +cTT +ajC lhJ -wot -jvh -jvh -jvh -wot +llV +uZp +uZp +uZp +llV pYn wkq wCE sMn rrp -uLY -sJZ -tEJ -uLY +dCQ +gXT +ezO +dCQ aFt -xZv -mPT -cto -cto -cto -cto -cto +pjl +oRU +oAN +oAN +oAN +oAN +oAN toU -cto +oAN cty cty cty @@ -57210,8 +50132,8 @@ mCF mCF glp xxk -cto -cto +oAN +oAN rgg mCF mCF @@ -57237,96 +50159,96 @@ wUU "} (108,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -lTR -qwQ -qwQ -qwQ -lTR -qwQ -lTR -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +ePH +cOZ +uod +uod +uod +cOZ +uod +cOZ +uod +cOZ dXg -lTR -qwQ -eDY -tNy -ctE +cOZ +uod +xcl +gHW +rwf hFM fQh gLw bUm mhf eQm -oLZ -eDY -tNy -qLf -bJV -bJV -bJV -lTR -bJV -lTR -lTR -lTR -cpF -lTR -lTR +vjs +xcl +gHW +oXr +ndi +ndi +ndi +cOZ +ndi +cOZ +cOZ +cOZ +mKe +cOZ +cOZ scL oGv -vss +hXk oGv hwL -pun +gnw oTE -coQ -lTR -lTR +rNx +cOZ +cOZ scL lsN oGv -dOS +hGZ nee -vss -gMi +hXk +siQ oGv hXR oGv hXR pGs juW -wGs -oVm -fLZ -esB +hUI +ltv +gUK +naZ juW -xzr -hus -wuR -rVS -kSN -lVc -lVc -lVc -lVc -lVc -uTq -lVc -lVc -lVc -qRP -xJZ -xJZ +bjU +dST +aph +aWi +eYx +jfB +jfB +jfB +jfB +jfB +aVM +jfB +jfB +jfB +jZl +cHF +cHF wqb kBZ wVf @@ -57336,44 +50258,44 @@ jQB psb idw sPs -gwG -pJn -krP +pUY +jZg +eTj wVf -vyX -pEv -xOo -iIL -qDs +qZI +sYR +seJ +mtB +psV wVf -qvO -viK -xJZ -xJZ -xJZ -xJZ -jew -iXR -xJZ -xJZ -cYB -gDh -viK +djd +ajC +cHF +cHF +cHF +cHF +gxg +cle +cHF +cHF +elk +rPm +ajC kgw -nXB -jvh -mPf -qdd -dhp +pAc +uZp +lEj +bon +kIx pYn wic pqj ydI jff -uLY -pEE -tEJ -uLY +dCQ +miD +ezO +dCQ bkM pKs bkM @@ -57381,8 +50303,8 @@ bkM bkM pKs bkM -cto -etv +oAN +gYF xxk cty cty @@ -57391,9 +50313,9 @@ cty mCF mCF iDn -cto -cto -cto +oAN +oAN +oAN ksX hoC mCF @@ -57419,96 +50341,96 @@ wUU "} (109,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +cOZ +uod +uod +uod +cOZ dXg -lTR -lTR -qwQ -lTR -lTR -qwQ -eDY -tNy -ctE +cOZ +cOZ +uod +cOZ +cOZ +uod +xcl +gHW +rwf gYh xuJ fgW npF trB gYh -eBm -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +ibd +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv -vss -vss +hXk +hXk oGv oGv ecX -lTR -lTR -lTR +cOZ +cOZ +cOZ scL oGv oGv oGv hXR -vss -gMi +hXk +siQ oGv oGv oGv eCg ltB szp -qdk -eFJ -cgj -iPH +aWl +iUM +hdA +pAI szp -xzr -eFJ -trh -qdk -wUj -gtz -sKu -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -mvA -xJZ -xJZ +bjU +iUM +qkz +aWl +jJu +aWX +idd +cHF +cHF +cHF +cHF +cHF +cHF +cHF +vRc +cHF +cHF wqb kBZ wVf @@ -57518,54 +50440,54 @@ idw eRD gyX eTb -mnc -xMq -krP +enF +cHr +eTj wVf wVf xvF -aiR -qhZ +kvF +hWZ wVf wVf -okI -lab -lVc -lVc -lVc -jfw -okJ -gjz -lVc -iFZ -xJZ -xJZ -viK +coN +xgc +jfB +jfB +jfB +plH +spa +oRv +jfB +waO +cHF +cHF +ajC pYn -diQ -hhW -tKI -doO -bBo +sVj +frJ +mYP +uJb +vzT bMf rPD bTA iOQ qOF -orT -iKa -tvv -uLY +iuN +ebM +uJE +dCQ pKs -hrI -pXG +uUo +asg bkM -vAR -dQV +lmK +oXT bkM -cto -etv -cto +oAN +gYF +oAN cty cty cty @@ -57573,9 +50495,9 @@ cty cty mCF iDn -cto -cto -qEG +oAN +oAN +cuD ksX cty hoC @@ -57601,96 +50523,96 @@ wUU "} (110,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +nxG +cOZ +uod +uod +uod +uod +cOZ +uod +uod +uod +uod dXg -qwQ -eDY -tNy -ctE +uod +xcl +gHW +rwf hFM aSt xQJ -uVR +ydu saQ hFM -oLZ -eDY -tNy -oLZ +vjs +xcl +gHW +vjs dXg dXg -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR +cOZ +lXx +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv -vss -vss +hXk +hXk jSX hKK wDi -coQ -lTR -daS +rNx +cOZ +ePH scL oGv -rKM +rDJ hXR oGv -vss -vss +hXk +hXk hmR oGv oGv oGv oDU szp -caV -noC -ktN -qSj -nGE -qSj -ktN -che -qdk +sGw +tqg +aon +iRv +ndG +iRv +aon +jgv +aWl juW wqb -crC -xJZ +gKp +cHF ryD -xJZ +cHF ryD joV wqb wqb -viK -xJZ -tBm +ajC +cHF +oQI wqb kBZ wVf @@ -57700,29 +50622,29 @@ idw idw idw wVf -tCM -xMq -fqY +jjt +cHr +cvQ wVf -qPk -uFJ -xOo -uFJ -eMD +oQD +pEd +seJ +pEd +jXL wVf wVf wVf -qhZ +hWZ wVf -qhZ +hWZ wVf -vOr -qhZ +nZL +hWZ wVf -viK -xJZ -xJZ -viK +ajC +cHF +cHF +ajC pYn pYn kgw @@ -57734,20 +50656,20 @@ nto pqj ydI pYn -jDW -uVY -sIU -uLY +goI +bPw +nxQ +dCQ vke -iad -fkj +iTs +xTh pKs -tXF -uhD +lgi +jQD bkM -rmr -etv -cto +uaL +gYF +oAN iFb cty cty @@ -57755,9 +50677,9 @@ cty cty cty cqZ -ghs +pXD xxk -cto +oAN ksX cty cty @@ -57783,96 +50705,96 @@ wUU "} (111,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +cOZ +uod +cOZ +uod +cOZ +uod +uod +uod +uod +uod +cOZ +uod +xcl +gHW +rwf gYh hFM gYh gYh hFM gYh -uKY -eDY -tNy -oLZ +lXB +xcl +gHW +vjs dXg -lTR -nFD -lTR -lTR -lTR +cOZ +pQl +cOZ +cOZ +cOZ dXg -eDY -vss -caD -lTR +xcl +hXk +vJL +cOZ scL oGv -dOS +hGZ oGv pfd qgm -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ scL hXR oGv -vss -inN -abK -abK -inN -inN -inN -inN -inN -tmm -qdk -eFJ -eFJ -xzr +hXk +qGY +ukU +ukU +qGY +qGY +qGY +qGY +qGY +eHf +aWl +iUM +iUM +bjU szp -xzr -eFJ -trh -qdk +bjU +iUM +qkz +aWl juW kBZ kBZ joV keY -xJZ +cHF ryD ryD ryD ryD -viK -xJZ -wXu +ajC +cHF +qaR wqb kBZ wVf @@ -57882,54 +50804,54 @@ vPi pBo wVf wVf -hXv -pJn -krP -qhZ -gwG -xOo -cvX -xOo -nHA +jId +jZg +eTj +hWZ +pUY +seJ +iub +seJ +laR kMf -fjx -xhs -abl +huA +oPP +gMH wVf -sUm -jZw -xMq -vnU -qhZ -viK -xJZ -mdj -icJ -cYB -eoq -xJZ -uEc -xJZ -iGM +dVv +ixP +cHr +xSg +hWZ +ajC +cHF +guk +rxZ +elk +kef +cHF +vNe +cHF +pEp pYn -jjl +bcG nkF xGJ ddz -tuL -xNb -mzf -hfo +nkc +kEb +vKD +dWU veW -oam -nCE +cEX +bJQ wWx -vqw -hNc +cYm +iwI bkM -cto -etv -cto +oAN +gYF +oAN iFb cty cty @@ -57937,9 +50859,9 @@ cty cty cty ksX -cto -bdc -cto +oAN +rDx +oAN ksX cty cty @@ -57965,54 +50887,54 @@ wUU "} (112,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -lTR -qwQ -lTR -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +cOZ +cOZ +uod +cOZ +cOZ dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -lmS -bJV -bJV -bJV -qmF -bJV -bJV -nHH -eDY -tNy -oLZ -lTR -lTR -lTR -lTR +uod +uod +uod +uod +uod +uod +uod +xcl +gHW +tpW +ndi +ndi +ndi +xPZ +ndi +ndi +gvj +xcl +gHW +vjs +cOZ +cOZ +cOZ +cOZ dXg -lTR +cOZ dXg -lTR -tNy -caD +cOZ +gHW +vJL gVO uTu rfV -vss +hXk oGv oGv pfd @@ -58023,36 +50945,36 @@ jaF uTu oGv nee -vss +hXk oGv rMb oGv oGv -rKM +rDJ oGv oGv rkH szp -caV -eFJ -eFJ -xzr +sGw +iUM +iUM +bjU szp -xzr -eFJ -trh -qdk +bjU +iUM +qkz +aWl juW kBZ kBZ kBZ -xJZ -quP +cHF +bmS ryD fbr ryD ryD -viK +ajC sHO ryD wqb @@ -58064,53 +50986,53 @@ wVf wVf wVf wVf -hJl -pJn -krP -qhZ -gwG -kXA -wrv -cNh -eOu +kXj +jZg +eTj +hWZ +pUY +buY +qvV +dqG +pAg kMf -apI -uoO -mnc -jJX -mnc -mnc -xMq -agJ -qhZ -lab -lVc -lVc -pfr -pbw -lVc -lVc -qjg -lVc -iFZ -pIj +hHC +tSN +enF +qna +enF +enF +cHr +tUi +hWZ +xgc +jfB +jfB +dvP +cls +jfB +jfB +iNz +jfB +waO +ahC pYn pYn pYn pYn -kus -gHH -uLY -uLY +mSr +cjM +dCQ +dCQ pKs -prY -fkj +tRz +xTh pKs -tXF -rBi +lgi +kMn pKs -cto -etv +oAN +gYF xxk owM iFb @@ -58119,8 +51041,8 @@ iFb iFb iFb ksX -cto -cto +oAN +oAN xxk ksX ksX @@ -58147,39 +51069,39 @@ wUU "} (113,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +cOZ +uod +uod dXg dXg -lTR -lTR -qwQ -lTR -lTR -lTR -qwQ -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy +cOZ +cOZ +uod +cOZ +cOZ +cOZ +uod +xcl +gHW +gRE +xqn +xqn +xqn +xqn +xqn +xqn +xqn +ycL +gHW dyo jaF jaF @@ -58188,9 +51110,9 @@ jaF qgm dXg dXg -lTR +cOZ stl -cpF +mKe scL oGv oGv @@ -58201,12 +51123,12 @@ oGv oGv oGv oGv -tmC +xCk oGv oGv -fxK -vss -vss +rrO +hXk +hXk dXg eCg iZP @@ -58215,27 +51137,27 @@ tXv tXv oGv szp -sYi -gXO -aZX -dCE +wJr +iRO +tCQ +pGx juW -sic -ftF -bEX -pnL +uHo +uCh +pof +ktq juW kBZ kBZ kBZ -xJZ -xJZ +cHF +cHF ryD ryD ryD ryD -viK -xJZ +ajC +cHF ryD ryD kBZ @@ -58246,36 +51168,36 @@ vco pja idw wVf -jhe -pJn -krP -qhZ -gwG -xOo -eqB -xOo -nHA +qEr +jZg +eTj +hWZ +pUY +seJ +uFl +seJ +laR kMf -eOZ -hzm -uiy +mpv +iOV +mgr wVf -qhZ +hWZ wVf -bdJ +xwL wVf wVf -gfj -fEA -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -viK -wXu +fEC +oEY +cHF +cHF +cHF +cHF +cHF +cHF +aCQ +ajC +qaR vHs vHs vHs @@ -58285,32 +51207,32 @@ vHs vHs bkM bkM -cEu -fkj +fIN +xTh bkM ncX bkM bkM -xag -etv -cto -iaM -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -wXC -cto -cto -cto +boK +gYF +oAN +phC +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +oAN +gDS +oAN +oAN +oAN xxk xEG mCF @@ -58329,55 +51251,55 @@ wUU "} (114,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +ePH +uod +uod +cOZ +cOZ +uod +uod +cOZ +uod +cOZ dXg -qwQ -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy +uod +xcl +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +hXk +gHW hNq oGv oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ pgg oGv oGv rMb -vss +hXk oGv hXR oGv @@ -58386,9 +51308,9 @@ oGv nwq iaH kAN -nRU -nRU -nRU +puE +puE +puE rQU ihY cCk @@ -58400,12 +51322,12 @@ wOO wOO wOO wOO -wkt +fGl wOO -nUf -cbq -hHE -nUf +oiV +kIi +fdj +oiV wOO wOO wOO @@ -58416,48 +51338,48 @@ ryD ryD ryD ryD -lDm -xJZ +rRL +cHF joV ryD kBZ hPj wVf dtu -rTu +xJX hkZ xRx sPs -xsi -pJn -krP +kPw +jZg +eTj wVf -gwt -hzm -xOo -hzm -vEa +gSd +iOV +seJ +iOV +fFj wVf wVf wVf -qhZ +hWZ wVf -ezZ -lyp -pJn -pBb +mhj +lwa +jZg +ttE wVf -qhZ +hWZ wVf -qhZ +hWZ wVf wVf wVf wVf wVf -xJZ -viK -xJZ +cHF +ajC +cHF vHs eBs xcf @@ -58465,34 +51387,34 @@ xcf xcf cGV vHs -gaw -rBP -sJF -aWP -rBP -rBP -lZb +poG +iVV +uem +fnJ +iVV +iVV +oEN wMj -cto -etv -vTe -iaM +oAN +gYF +oPj +phC mxB -cto -cto +oAN +oAN xxk wNz xxk -cto -cto -cto -cto -cto +oAN +oAN +oAN +oAN +oAN xxk xxk xxk -cto -cto +oAN +oAN xxk iDn mCF @@ -58511,66 +51433,66 @@ wUU "} (115,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -qwQ -lTR -qwQ -qwQ -lTR -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +cOZ +uod +uod +cOZ +uod +uod +cOZ +uod dXg dXg -lTR -qwQ -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy +cOZ +uod +xcl +gHW +oXr +ndi +ndi +ndi +ndi +ndi +ndi +ndi +oqv +gHW hNq hXR oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ scL oGv -tmC -vss +xCk +hXk oGv oGv oGv -rKM +rDJ oGv hXR ihY oDB cFw -dwN -jks -jks +siK +opD +opD epN cFw cFw @@ -58581,16 +51503,16 @@ pGs pGs pGs wOO -gXN -sPY -sPY -qId -iVt -pZl -qId -cud -kOS -wAE +nMW +cIJ +cIJ +dIm +kWV +jij +dIm +wYp +lCB +lnY wOO kBZ kBZ @@ -58598,8 +51520,8 @@ kBZ ryD kBZ wqb -smE -xJZ +lIQ +cHF ryD jeW joV @@ -58610,36 +51532,36 @@ iYE dos idw wVf -ivX -pJn -krP +tVe +jZg +eTj wVf wVf -qhZ -qto -qhZ +hWZ +luc +hWZ wVf wVf -xdJ -aGX -eHB +uEQ +vuN +boA wVf -unh -ydQ -eKw -mnc -ilZ -mnc -bCA -fVt +xdG +hJX +dZN +enF +kJk +enF +mXN +jsA wVf -ixh -xKL -baH +fge +eSY +tZR wVf -xJZ -viK -xJZ +cHF +ajC +cHF vHs imz mwD @@ -58647,35 +51569,35 @@ ezb wWd ggk vHs -xlb -xAO -uVY -tEJ -tEJ -tEJ -twm +bdk +mek +bPw +ezO +ezO +ezO +ozu lNb -cto -etv -vTe -dfP -cto -wXC -cto -cto +oAN +gYF +oPj +kgo +oAN +gDS +oAN +oAN xxk xxk -cto -cto -gLo +oAN +oAN +rit xxk -cto -cto -fLu -cto -cto -cto -cto +oAN +oAN +nJg +oAN +oAN +oAN +oAN ksX hoC mCF @@ -58693,54 +51615,54 @@ wUU "} (116,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -eDY -tNy -oLZ -lTR -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +cOZ +cOZ +uod +cOZ +uod +uod +uod +uod +cOZ +uod +uod +uod +xcl +gHW +vjs +cOZ +uod dXg -qwQ -qwQ -lTR +uod +uod +cOZ dXg -eDY -tNy +xcl +gHW hNq oGv oGv hXR lsN lnO -lTR -daS -lTR -lTR -lTR +cOZ +ePH +cOZ +cOZ +cOZ scL oGv oGv -vss +hXk gJy hXR oGv @@ -58751,9 +51673,9 @@ ihY cFw cel fSa -jks -coX -mUz +opD +djX +lXQ cFw cFw qtv @@ -58763,16 +51685,16 @@ pGs pGs pGs wOO -faX -kCA -kCA -cbq -kCA -mZI -adR -vmc -wYF -rsB +xgq +iqS +iqS +kIi +iqS +ans +tVS +mRm +bwU +hse wOO kBZ kBZ @@ -58780,8 +51702,8 @@ kBZ kBZ kBZ wqb -viK -xJZ +ajC +cHF ryD ryD ryD @@ -58792,53 +51714,53 @@ iHh eRD jSN ylX -mnc -xMq -oVr -uFJ -uFJ -uFJ -xOo -uFJ -rsL -uFJ -kMN -ppw -irj -rsL -diW -pJn -xOo -rwh +enF +cHr +irs +pEd +pEd +pEd +seJ +pEd +qCj +pEd +fXh +rCp +vDX +qCj +fEE +jZg +seJ +apl wVf -vLU -pJn -xOo -wku -cKC -xOo -jcC +ndA +jZg +seJ +oxo +cfH +seJ +dff wVf -xJZ -viK -oef -fEz +cHF +ajC +rSw +kQw fpY eQC kWB kWB fpY -gOe -rQk -tEJ -uXw -tEJ -tEJ -tEJ -lHH +bxm +lGs +ezO +rwl +ezO +ezO +ezO +pqz bkM mdN -bnB +bCu mdN eEd ksX @@ -58857,7 +51779,7 @@ iDn iDn xxk xxk -cto +oAN ksX hoC mCF @@ -58875,66 +51797,66 @@ wUU "} (117,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -lTR +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +cOZ +cOZ +uod +uod +cOZ +uod +uod +uod +uod +uod +uod +cOZ +xcl +gHW +vjs +uod +cOZ dXg dXg -qwQ -qwQ +uod +uod dXg -eDY -tNy +xcl +gHW hNq oGv upH oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +cOZ +cOZ +cOZ +cOZ +cOZ scL upH oGv hXR -vss +hXk oGv oGv jju ihY ihY -hQl +wFV vyp cFw -jks -jks -jks +opD +opD +opD cFw cFw cFw @@ -58945,25 +51867,25 @@ pGs pGs pGs wOO -dwP -kCA -tlT -cbq -tlT -ljx -cbq -tlT -loh -rsB -poE -tlT -nHk +til +iqS +xst +kIi +xst +fSK +kIi +xst +rWV +hse +pKC +xst +oFh kBZ kBZ kBZ wqb -viK -xJZ +ajC +cHF ryD ryD ryD @@ -58974,54 +51896,54 @@ lZU vqY tiw sPs -oXp -jVK -uUS -yeY -yeY -fER -yeY -yeY -haX -yeY -haX -cdy -jjE -haX -vvS -rKy -xOo -hoG -qhZ -vLU -eye -xOo -wku -xOo -qEa -iqW +ggo +gCz +pPb +ewg +ewg +nvq +ewg +ewg +rRE +ewg +rRE +pWh +qcL +rRE +hDr +jUZ +seJ +bNT +hWZ +ndA +oHT +seJ +oxo +seJ +hGm +qDW wVf -xJZ -viK -oef -jgY +cHF +ajC +rSw +wZe kWB kWB nAq rmf kWB -ltA -jpM -tEJ -mQC -aBB -jjg -tEJ -rtu +gIj +wJi +ezO +laJ +keR +qwh +ezO +fVo bkM -iaM -hbi -iaM +phC +eou +phC eEd cty cty @@ -59039,7 +51961,7 @@ mCF iDn xxk xxk -ghs +pXD ksX cty mCF @@ -59057,56 +51979,56 @@ wUU "} (118,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qwQ -lTR -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +nxG +uod +cOZ +uod +uod +cOZ +cOZ +uod +uod +uod +uod +uod +uod +xcl +gHW mIU jaF jaF jaF jaF qgm -vEg -qwQ -eDY -tNy +gvs +uod +xcl +gHW jdu hXR oGv oGv hXR lnO -lTR -lTR -lTR +cOZ +cOZ +cOZ stl -lTR +cOZ scL oGv oGv -jks -gkG -nRU +opD +wRe +puE jjj vuQ ihY @@ -59116,9 +52038,9 @@ iaT cFw rSl utZ -coX +djX cFw -dvT +gNg cFw pkj wUF @@ -59127,25 +52049,25 @@ pGs pGs pGs wOO -mNm -kCA -tlT -cbq -dNU -kDd -cbq -aFK -kCA -jaL -poE -tlT -nex +dAH +iqS +xst +kIi +qkZ +iLn +kIi +qlY +iqS +xGk +pKC +xst +flA kBZ kBZ ryD hcI wXs -xJZ +cHF ryD ryD ryD @@ -59156,9 +52078,9 @@ idw izy hJw wVf -hek -hUp -gfg +gfm +gjm +geH wVf wVf wVf @@ -59170,40 +52092,40 @@ oyT xvF wVf wVf -mLt -pJn -xOo -oCN -qhZ -vLU -nmQ -ghb +mQL +jZg +seJ +gce +hWZ +ndA +jbo +bPB wVf -gwG -xOo -mAP +pUY +seJ +pLS wVf -xJZ -tYw -oef -jgY +cHF +wHV +rSw +wZe kWB wmt sgp eQC kWB -ltA -jpM -tEJ -uXw -tEJ -tEJ -tEJ -twm +gIj +wJi +ezO +rwl +ezO +ezO +ezO +ozu lNb -iaM -gAK -cto +phC +cKF +oAN ksX cty cty @@ -59220,8 +52142,8 @@ mCF mCF ksX mxB -cto -bng +oAN +fjY ksX cty mCF @@ -59239,43 +52161,43 @@ wUU "} (119,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +cOZ +cOZ +uod +uod +uod +uod +uod +uod +cOZ +xcl +gHW igB oGv oGv oGv oGv lnO -lTR -lTR -eDY -tNy +cOZ +cOZ +xcl +gHW igB oGv oGv -tmC +xCk oGv pfd jaF @@ -59288,7 +52210,7 @@ oGv hXR ihY cFw -kmo +vys cFw epN qkq @@ -59298,10 +52220,10 @@ nwq cFw cFw fWW -jks -jks +opD +opD cFw -tkh +nQh cFw nwq cFw @@ -59309,25 +52231,25 @@ pGs pGs pGs wOO -pNJ -kCA -tlT -mYd -oSe -ssg -rKL -tlT -kCA -cil -cuc -tlT -mrT +muI +iqS +xst +ixx +qfG +hDH +krB +xst +iqS +oEK +nxk +xst +gRy kBZ ryD ryD ryD wXs -xJZ +cHF ryD ryD ryD @@ -59338,54 +52260,54 @@ gkb wVf wVf wVf -qhZ -jsf -qhZ +hWZ +xjG +hWZ wVf eyt eyt eyt eyt wVf -ohi -wpi -uFJ -eHB +mWN +aco +pEd +boA wVf -dQr -pJn -bPL -tUd +isN +jZg +vrl +clf wVf -rmL -qsh -ycE +eRJ +qjR +sxl wVf -cur -syb -gEO +xGd +eQs +jTE wVf -rDD -viK -oef -jgY +wjL +ajC +rSw +wZe kWB cAx aXA kWB kWB -xyJ -aFX -tEJ -uXw -tEJ -tEJ -tEJ -twm +ubm +elh +ezO +rwl +ezO +ezO +ezO +ozu lNb -iaM -etv -cto +phC +gYF +oAN ksX ksX iFb @@ -59400,10 +52322,10 @@ cty mCF mCF mCF -cba +oll xxk -cto -cto +oAN +oAN ksX xEG iDn @@ -59421,39 +52343,39 @@ wUU "} (120,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR -qwQ -qwQ -lTR -eDY -tNy +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +nxG +cOZ +uod +uod +uod +uod +cOZ +cOZ +cOZ +cOZ +uod +uod +cOZ +xcl +gHW igB oGv lsN -tmC +xCk hXR pfd jaF jaF tGw -tNy +gHW igB oGv hXR @@ -59471,7 +52393,7 @@ gfk ihY xnS vyp -jks +opD cFw cFw cFw @@ -59480,8 +52402,8 @@ cFw cFw gJN wop -jks -rUI +opD +eaz nwq cFw cFw @@ -59491,25 +52413,25 @@ nwq cFw pGs qnW -bgl -kCA -tlT -mYd -iht -iIC -rKL -tlT -kCA -aIq -tlT -eGL -mrT +hnn +iqS +xst +ixx +peg +pzD +krB +xst +iqS +smv +xst +lto +gRy kBZ tkF ryD ryD wXs -xJZ +cHF ryD ryD eyt @@ -59520,24 +52442,24 @@ wVf wVf eyt wqb -wXu -viK -xJZ +qaR +ajC +cHF wqb eyt eyt eyt eyt wVf -jtI -xOo -uoO -mnc -kCT -mnc -xMq -shP -gBV +bzX +seJ +tSN +enF +ntR +enF +cHr +lqp +hAQ wVf xvF wVf @@ -59547,9 +52469,9 @@ wVf wVf wVf wVf -sKu -viK -xJZ +idd +ajC +cHF vHs imz wDv @@ -59557,18 +52479,18 @@ bSu wdI szh vHs -iad -lIo -xNb -aBB -aBB -wXD -pdr +iTs +kBS +kEb +keR +keR +vBO +pPH bkM -kRp -mNO -qWw -cto +dgJ +cGm +aZS +oAN xxk iFb hoC @@ -59584,9 +52506,9 @@ aOg mCF ksX xxk -cto -cto -cto +oAN +oAN +oAN xxk xxk ksX @@ -59603,29 +52525,29 @@ wUU "} (121,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +uod +uod +uod +uod +uod dXg -qwQ -qwQ +uod +uod btU -tNy +gHW igB hXR rMb @@ -59635,63 +52557,63 @@ oGv oGv oGv eoj -tNy +gHW igB oGv oGv oGv -rKM +rDJ fkd oGv hXR svt -vss +hXk mmO -dOS +hGZ oGv dXg ihY xnS -fPq -jks -upb -upb -jks -jks -upb -upb -jks -jks -qTE +otu +opD +dWv +dWv +opD +opD +dWv +dWv +opD +opD +djK cFw cFw cFw jsG -jks +opD cFw cFw nwq nwq oSX -mvO -kCA -tlT -mYd -hbP -iIC -rKL -tlT -kCA -cil -wae -sdZ -hwZ +odt +iqS +xst +ixx +nlm +pzD +krB +xst +iqS +oEK +lgn +lEZ +jyK kBZ kBZ ryD ryD apj -xJZ +cHF ryD ryD kbQ @@ -59702,36 +52624,36 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb eyt eyt eyt eyt wVf -mca -hzm -lDr -swa +nMA +iOV +yeg +dVs wVf -xWj -pJn -xOo -tKr +tHE +jZg +seJ +xVd wVf -lIb -wGV -eij +hAY +uIG +cTZ wVf -ieu -qAr -mIG +qHP +acp +oXl wVf -eFW -viK -xJZ +gyv +ajC +cHF vHs dmN iYi @@ -59739,18 +52661,18 @@ iYi iYi rjn vHs -bPm -wVE -ioA -jsO -ciR -wVE -fiA +eZv +tIp +xgj +wBf +cya +tIp +jSk bkM -eQr -iaM -hbi -gMm +kOR +phC +eou +fQp xxk iFb mCF @@ -59766,11 +52688,11 @@ aOg mCF iDn xxk -sgl -cto -cto -cto -cto +eKG +oAN +oAN +oAN +oAN ksX aOg mCF @@ -59785,39 +52707,39 @@ wUU "} (122,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +cOZ +uod +uod +uod +uod +uod +uod +uod +uod dXg dXg -qwQ -tqV -mEy -tNy +uod +vfo +ycL +gHW jKW hej -dOS +hGZ oGv oGv -rKM +rDJ oGv fZX nOM -tNy +gHW jKW hej rMb @@ -59827,16 +52749,16 @@ oGv oGv oGv svt -tNy +gHW mmO oGv oGv oGv cFw ngY -jks -qVb -jks +opD +hAe +opD kPZ cFw cFw @@ -59848,23 +52770,23 @@ jJC pFd vuQ cel -jks -jks +opD +opD nwq cFw cFw fsC wOO -fFx -kCA -tlT -mYd -jNb -jPe -rKL -tOd -kCA -rpH +oPl +iqS +xst +ixx +uLf +uGp +krB +xJN +iqS +uwY wOO wOO wOO @@ -59873,8 +52795,8 @@ wOO oSX wOO jPM -xJZ -xJZ +cHF +cHF ryD lFk kbQ @@ -59884,9 +52806,9 @@ eyt jqw eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb wqb wqb @@ -59898,22 +52820,22 @@ xvF wVf xvF wVf -umA -mve -xOo -hoG -qhZ -xOo -ppw -xOo +vGm +ehU +seJ +bNT +hWZ +seJ +rCp +seJ wVf -wpM -vpV -uGi +mDA +qqT +fwT wVf -xJZ -viK -xJZ +cHF +ajC +cHF vHs vHs vHs @@ -59931,10 +52853,10 @@ eHl uXS uXS uXS -hbi -cto +eou +oAN xxk -vhI +kkj mCF mCF aOg @@ -59949,11 +52871,11 @@ mCF iDn xxk qAS -fYs +sQI dDG -wws -poC -cba +cWW +kRQ +oll aOg aOg aOg @@ -59967,96 +52889,96 @@ wUU "} (123,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +gDG +gDG +gDG +gDG kgp -pdK -pdK -gVP -aQN -jzB -aQN +gDG +gDG +pfH +eUl +uqO +eUl geK -qNu +iSX wlB wlB wlB -ghW +kPM mnU -aQN -jzB -aQN +eUl +uqO +eUl geK wlB wlB lTg -ghW +kPM wlB mnU -suY -aQN -hMg +kpA +eUl +nHP lTg wlB wlB -res -res -kZe -lrR -jks +rOw +rOw +taF +ufr +opD qKM -mUz +lXQ cFw cFw ihY cFw -ewv -jks +eid +opD nwq gwD cFw -jks -jks +opD +opD cFw cFw cFw nwq oSX -vQL -kCA -tlT -mYd -wRi -leO -rKL -mSf -kCA -rsB +gam +iqS +xst +ixx +sUo +utn +krB +rjz +iqS +hse wOO -ubK -ubK -sLi -pkT -pAZ +sqe +sqe +rYW +ove +kHK wOO -rWY -xJZ -xJZ +cvc +cHF +cHF ryD kbQ kbQ @@ -60066,57 +52988,57 @@ jqw kbQ eyt wqb -rDD -wng -lVc -lVc -lVc -lVc -lVc -elO -lVc -lVc -lVc -lVc -lVc -gRS -enH -eKw -bCA -oCN +wjL +rzh +jfB +jfB +jfB +jfB +jfB +oZk +jfB +jfB +jfB +jfB +jfB +sCu +mVE +dZN +mXN +gce wVf wVf -aFM +xwd wVf wVf -pRy -vpV -mIG -obS -xJZ -hfn +eGp +qqT +oXl +mOB +cHF +lvD ryD -xJZ +cHF kfG eyt eyt uXS -vZv +uqt kNa -sGo -eQZ -xwY +gRZ +bEU +hhD uXS -xOz -eQZ -sGo +aHS +bEU +gRZ kNa -oAm +rdr uXS -hbi -cto +eou +oAN mMu -vhI +kkj mCF aOg aOg @@ -60130,12 +53052,12 @@ mCF mCF xEG xxk -cto -cto -cto -eGq -aTC -cba +oAN +oAN +oAN +sbi +ygW +oll aOg aOg aOg @@ -60149,30 +53071,30 @@ wUU "} (124,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -urD -urD -urD +wmz +jNI +jNI +jNI +jNI +jNI +jNI +btV +uod +cOZ +cOZ +uod +uod +lck +lck +lck kgp -pdK -pdK +gDG +gDG fpq kVq -aQN -hQV -aQN +eUl +vzs +eUl geK wlB lTg @@ -60180,9 +53102,9 @@ wlB wlB wlB mnU -aQN -ocz -aQN +eUl +tPZ +eUl geK wlB wlB @@ -60191,16 +53113,16 @@ wlB wlB mnU wlB -aHw -aQN -vMo -qNu +mMi +eUl +wuc +iSX wlB wlB -iUH +gqU cel -jks -jks +opD +opD cFw ihY cFw @@ -60208,97 +53130,97 @@ cFw vYy deE nwq -aBz +drE xfz ihY cel -jks -jks -jks -jks +opD +opD +opD +opD cFw nwq oSX -uwQ -kCA -tlT -cbq -oga -kca -cbq -tlT -kCA -rsB +nDa +iqS +xst +kIi +xXw +umk +kIi +xst +iqS +hse oSX -fEu -fEu -fEu -fEu -pCO +anr +anr +anr +anr +chH oSX -viK -xJZ -xJZ +ajC +cHF +cHF wqb -tVj +nDY kbQ kbQ kbQ kbQ kbQ lFk -bPk -xJZ -viK -xJZ -sxY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -qhZ -rqn -kGF -pJn -tUd -qhZ -hyp -iNr -vZl -qhZ -tdy -vpV -dNY -obS +ykk +cHF +ajC +cHF +cYe +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +hWZ +fkD +fyD +jZg +clf +hWZ +lxd +qLL +sCn +hWZ +dbD +qqT +sXL +mOB ryD -viK -xJZ -xJZ +ajC +cHF +cHF kfG eyt eyt uXS uXS uXS -tlG -eQZ -rWx +pya +bEU +wup uXS -sGo -pmh -iAa +gRZ +sGM +mtN uXS uXS uXS -hbi -cto -cto -vhI +eou +oAN +oAN +kkj mCF aOg mCF @@ -60313,10 +53235,10 @@ mCF ksX dzH xxk -cto -cto -cto -bst +oAN +oAN +oAN +dOG ksX lVQ xGV @@ -60331,30 +53253,30 @@ wUU "} (125,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ -qwQ -qwQ -pdK -pdK -pdK -urD -pdK -pdK +wmz +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +uod +ePH +uod +uod +uod +gDG +gDG +gDG +lck +gDG +gDG nsN mnU -aQN -aQN -aQN +eUl +eUl +eUl geK vLh hDw @@ -60362,9 +53284,9 @@ qZV qZV oyl mnU -aQN -aQN -aQN +eUl +eUl +eUl geK vLh hDw @@ -60372,114 +53294,114 @@ qZV qZV oyl fmu -xVX +mwa wlB lTg -aQN +eUl wlB lTg wlB cFw cel -jks -jks +opD +opD cFw cFw -jks +opD ebi xmL otH iWX -jks +opD kDk -xWL +cAv cFw -jks +opD uAM cFw cFw cFw tlq oSX -oUO -kCA -tlT -syt -tlT -xdW -cbq -tlT -kCA -rsB +seP +iqS +xst +nxX +xst +uYs +kIi +xst +iqS +hse oSX -lur -lur -lur -fEu -ubK +exl +exl +exl +anr +sqe oSX -viK -xJZ +ajC +cHF ryD ryD -tVj +nDY kbQ jqw kbQ kbQ kbQ ofC -uvr -xJZ -viK -xJZ -xJZ -sny -vlw -xJZ -xJZ -xxs -iXR -xJZ -xJZ -gDh -qhZ -beE -orb -pJn -xOo -dpz -xOo -kiG -lxy -qhZ -bUg -vpV -uDg -obS +qAE +cHF +ajC +cHF +cHF +uiw +aCQ +cHF +cHF +wfu +cle +cHF +cHF +rPm +hWZ +wkL +iaj +jZg +seJ +gwn +seJ +lne +gtj +hWZ +rtE +qqT +xAY +mOB ryD wXs -xJZ +cHF ryD kfG xAx eyt uXS -vZv +uqt kNa -sGo -wlq -sGo +gRZ +gNA +gRZ uXS -aud -vHY -sGo +noY +xMp +gRZ kNa -oAm +rdr uXS -hbi -cto -cto +eou +oAN +oAN iFb mCF aOg @@ -60513,68 +53435,68 @@ wUU "} (126,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -urD -urD -pdK -pdK -pdK -urD +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +uod +uod +uod +uod +lck +lck +gDG +gDG +gDG +lck nsN bys kkt -hsa +aJU ksu njC riM -aQN -aQN -aQN -hsa +eUl +eUl +eUl +aJU xDd rUc -hsa +aJU ksu bVe yhZ -aQN -aQN -aQN -hsa -wlB -aQN -aQN -kYF +eUl +eUl +eUl +aJU +wlB +eUl +eUl +hPc kgp kgp wlB -ghW +kPM cFw cFw cFw osE cFw cFw -eSo -dvT +srA +gNg cFw tPK -jks -jks -upb -jks +opD +opD +dWv +opD qSR wop cFw @@ -60583,38 +53505,38 @@ cFw pGs pGs wOO -pCV -kCA -tlT -iGS -tlT -qqs -adR -gkS -vmc -oDN +vii +iqS +xst +uZN +xst +aRg +tVS +eCP +mRm +rMg agM -aDZ -aDZ -rTv -fEu -ubK +pvy +pvy +bQM +anr +sqe oSX -mZk -xJZ -xJZ -imu -tVj -tVj -tVj -tVj -tVj -tVj -tVj -uvr -xJZ -viK -xJZ +ukj +cHF +cHF +aAS +nDY +nDY +nDY +nDY +nDY +nDY +nDY +qAE +cHF +ajC +cHF wqb eyt eyt @@ -60626,43 +53548,43 @@ wVf xvF wVf wVf -xOo -xOo -jVK -mnc -mnc -mnc -xMq -kYn +seJ +seJ +gCz +enF +enF +enF +cHr +qHU wVf -fHx -vpV -qVS +lqk +qqT +uWI wVf -rWY -viK -xJZ -xJZ +cvc +ajC +cHF +cHF vph qIF sgk uXS uXS uXS -jGz -hsx -rWx +bpR +nrv +wup uXS -xzd -eQZ -sGo +ewW +bEU +gRZ uXS uXS uXS wGQ xxk -cto -kmI +oAN +hpq mCF jdm mCF @@ -60695,47 +53617,47 @@ wUU "} (127,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qqR -qwQ -qwQ -lTR -pdK -pdK -pdK -pdK -pdK -urD +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +nxG +kmY +uod +uod +cOZ +gDG +gDG +gDG +gDG +gDG +lck nBc gsC lTg -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl lTg wlB kgp @@ -60753,98 +53675,98 @@ jjj jjj ihY ihY -teg -jks -jks +oAs +opD +opD cFw cFw gDr -dvT +gNg nwq cFw cFw pGs wOO -fCB -kCA -tlT -cbq -mSf -ljx -cbq -tlT -kCA -xPV +gtx +iqS +xst +kIi +rjz +fSK +kIi +xst +iqS +kwa hst -rKl -lur -cbg -fEu -xjp +gop +exl +qah +anr +xdd wOO -viK -xJZ -xJZ +ajC +cHF +cHF wqb -tVj -tVj +nDY +nDY qIF kbQ qIF tTU kbQ -uvr -xJZ -viK -gDh +qAE +cHF +ajC +rPm wqb eyt eyt eyt eyt wVf -sBN -xOo -xOo -xOo -aRL -xOo -xOo -vrO -vAg +tFF +seJ +seJ +seJ +djZ +seJ +seJ +xpD +ixG wVf -gwG -jVK -iPI -fLn -jhv -jzq -ocr +pUY +gCz +gAU +psK +wyr +dzr +okW wVf -ybt -viK -xJZ -vlw +qXh +ajC +cHF +aCQ qIF kbQ kbQ uXS -dGR +cUm kNa -eqn -eQZ -sGo +qTY +bEU +gRZ uXS -vzY -eQZ -eqn +enP +bEU +qTY kNa -oAm +rdr uXS -hbi -cto -cto -kmI +eou +oAN +oAN +hpq mCF mCF mCF @@ -60877,47 +53799,47 @@ wUU "} (128,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -wBp -uYJ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK -pdK -pdK -urD +wmz +jNI +jNI +jNI +vxn +jNI +jNI +uBN +nxG +uod +uod +uod +uod +gDG +gDG +gDG +gDG +gDG +gDG +lck nsN usQ -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -wlB -aQN -aQN +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +eUl +wlB +eUl +eUl wlB kgp kgp @@ -60935,11 +53857,11 @@ cFw epN cFw ihY -hQl -jks -jks +wFV +opD +opD fSa -jks +opD cFw cFw cFw @@ -60947,27 +53869,27 @@ cFw cFw fsC oSX -bgl -mSD -gkS -adR -gkS -xRt -yjK -lsT -kCA -hUY +hnn +meR +eCP +tVS +eCP +jCS +nlw +obq +iqS +mgN oSX -lur -rtR -osr -aDZ -aDZ -nOg -pfr -lVc -lVc -iFZ +exl +qPe +sjT +pvy +pvy +bnd +dvP +jfB +jfB +waO kbQ kbQ kbQ @@ -60976,9 +53898,9 @@ kbQ sgk eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb eyt eyt @@ -60990,23 +53912,23 @@ wVf xvF wVf wVf -hay -hZD -byl -gmK +hTo +sqf +lhX +tcd wVf -vap -jVK -eUv +wqg +gCz +pnp wVf -twh -aqb -ptP +hMN +udS +yjq wVf -mNT -viK -xJZ -xJZ +jim +ajC +cHF +cHF kfG nMJ uqW @@ -61014,18 +53936,18 @@ uXS uXS uXS uXS -bHc -rWx +ceb +wup uXS -sGo -qQe +gRZ +fBx uXS uXS uXS uXS -hbi -cto -cto +eou +oAN +oAN iFb hoC mCF @@ -61059,33 +53981,33 @@ wUU "} (129,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -daS -uYJ -qwQ -pdK -pdK -pdK -pdK -pdK +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uod +cOZ +ePH +nxG +uod +gDG +gDG +gDG +gDG +gDG fpq cVq mtT lTg -nCl -nCl -nCl -aQN -aQN +cQo +cQo +cQo +eUl +eUl kgp kgp kgp @@ -61094,62 +54016,62 @@ kgp kgp kgp kgp -nCl -nCl -nCl -aQN +cQo +cQo +cQo +eUl dOm -aQN -nCl -nCl -nCl -nCl -nCl -aQN +eUl +cQo +cQo +cQo +cQo +cQo +eUl wlB gDr ihY ihY mgT -bfX -uRa -uRa -uRa -eoB -kjp -uRa -lNd -jks -fbJ -lch -fbJ -lch -fbJ -lch -fbJ -lch -tZm -mvi -kCA -sHs -cbq -kCA -kCA -pkX -nsl -kCA -hUY +brc +nAN +nAN +nAN +xqQ +wbJ +nAN +pUE +opD +dhf +ugJ +dhf +ugJ +dhf +ugJ +dhf +ugJ +mgt +jJT +iqS +ioO +kIi +iqS +iqS +seT +agc +iqS +mgN oSX -eYM -lur -rpI -rrr -rrr +kol +exl +mzd +qmy +qmy wOO -fga -uwJ -xJZ -viK +szY +lsG +cHF +ajC kbQ kbQ qIF @@ -61158,9 +54080,9 @@ qIF uet eyt wqb -rpd -viK -xJZ +ddK +ajC +cHF wqb eyt eyt @@ -61173,41 +54095,41 @@ xAx kjN wVf xvF -nNv +apW wVf wVf wVf wVf -vXW +oER wVf wVf wVf wVf wVf wVf -rDD -viK -xJZ -xJZ +wjL +ajC +cHF +cHF kbQ kbQ eyt uXS -pjk -qZr +grk +joU kNa -tKw -nFf +cZT +iCP uXS -vzY -eQZ +enP +bEU kNa -sGo -rWx +gRZ +wup uXS -hbi -cto -wXC +eou +oAN +gDS iFb cty mCF @@ -61241,24 +54163,24 @@ wUU "} (130,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -rYC -wLB -mPW -wBp -lze -pdK -urD -pdK -urD -urD +wmz +jNI +jNI +jNI +jNI +jNI +jNI +uBN +btV +qMx +hTh +uBN +idI +gDG +lck +gDG +lck +lck nsN wlB kAH @@ -61266,7 +54188,7 @@ kgp kgp wsn wlB -aQN +eUl kgp kgp wlB @@ -61281,27 +54203,27 @@ pNR vll bbK bSQ -iQr -tCV -tCV -iQr -iQr -tCV -iQr -iQr -sIK -foE -nnb -pmW -keb -nnb -wtk -wDH -nLH -wDH -nnb -nnb -nnb +jRY +igW +igW +jRY +jRY +igW +jRY +jRY +vDU +qnA +suz +owb +cYR +suz +wXx +rbt +utE +rbt +suz +suz +suz cFw cFw nwq @@ -61311,27 +54233,27 @@ gDr cFw mcB oSX -oIC -jtU -jtU -qId -jtU -oBP -kLA -vnH -jtU -dID +bTx +vUl +vUl +dIm +vUl +jGg +jVF +xGs +vUl +dlC wOO -gar -dgF -uZa -mEB -mEB +thw +aSn +vfQ +dzc +dzc oSX -xJZ -xJZ -xJZ -viK +nKU +cHF +cHF +ajC ryD ouy ofC @@ -61340,9 +54262,9 @@ jJf cFz eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb eyt eyt @@ -61355,40 +54277,40 @@ qIF kbQ qIF kbQ -tVj +nDY kbQ eyt wVf -oWO -nzd -xqG +bCF +edh +wAw wVf eyt eyt eyt wqb -xJZ -viK -xJZ -xJZ +cHF +ajC +cHF +cHF kbQ kbQ kbQ uXS -vZv -vZO +uqt +nHG uXS -jCN -rWx +gFF +wup uXS -tcS -dnU +fPk +iQZ uXS -sGo -oAm +gRZ +rdr uXS -hbi -cto +eou +oAN mxB eHZ aOg @@ -61423,67 +54345,67 @@ wUU "} (131,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +wmz +vxn +jNI +vxn +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +btV fpq mwI cVq cVq pZT nsN -mdg +xqt lTg kgp nit wlB -aQN -slw +eUl +iJu kgp eia lTg -hVL +gBH wlB qAy -hmh +ldD wlB -ebF +klc ggr kgp kyP wlB wlB -tCV -iQr -aCX -tCV -iQr -iQr -iQr -tCV -eJN -vuA -vuA -bcD -pmW -pmW -nnb -nnb -sIK -nnb -nnb -nnb -nnb +igW +jRY +eYA +igW +jRY +jRY +jRY +igW +hjR +vQM +vQM +kwY +owb +owb +suz +suz +vDU +suz +suz +suz +suz nwq ebi cFw @@ -61494,14 +54416,14 @@ cFw kuO slE cqC -sPh -qId -qxa +rJp +dIm +uqb wOO wOO -nUf -kIz -nUf +oiV +uGo +oiV wOO wOO wOO @@ -61511,10 +54433,10 @@ wOO wOO wOO wqb -xJZ -xJZ -viK -xJZ +cHF +cHF +ajC +cHF tCA kbQ kbQ @@ -61522,9 +54444,9 @@ vcR eyt eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb eyt eyt @@ -61537,22 +54459,22 @@ kbQ qIF sgk kbQ -tVj +nDY kbQ eyt wVf -jUM -dnV -kTI +hEx +sId +nbC wVf eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ +cHF +ajC +cHF +cHF kfG ofC kbQ @@ -61569,8 +54491,8 @@ uXS uXS uXS uXS -hbi -cto +eou +oAN xxk eHZ aOg @@ -61605,19 +54527,19 @@ wUU "} (132,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -cJL -mPk -xVw +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +vxn +jNI +sgg +jNI +ngJ nsN xNA xNA @@ -61632,7 +54554,7 @@ wlB bYO lTg wlB -nKf +rJC wlB wlB wlB @@ -61640,36 +54562,36 @@ wlB wlB tgK wlB -aQN +eUl wlB wlB bbK wlB -iQr -iQr +jRY +jRY bSQ -qNu +iSX wlB wlB -aQN +eUl wlB aKJ mrR cFw cFw -dYW -jks +bwa +opD cFw cFw xmL fMI eHv cFw -jks +opD cFw cFw cFw -mUz +lXQ nwq cFw cFw @@ -61681,10 +54603,10 @@ oSX oSX slE xAg -axh -enu -iQS -cRZ +ktt +aDS +hyX +urz vVH kBZ kBZ @@ -61693,10 +54615,10 @@ kBZ kBZ kBZ wqb -gDh -xJZ -viK -xJZ +rPm +cHF +ajC +cHF tCA kbQ kbQ @@ -61704,9 +54626,9 @@ eyt eyt eyt wqb -xJZ -viK -wXu +cHF +ajC +qaR wqb eyt eyt @@ -61718,40 +54640,40 @@ qIF kbQ kbQ kbQ -wQh -tVj -tVj +hSE +nDY +nDY eyt wVf -gqN -nrd -gnZ +wkP +dwg +rnb wVf eyt eyt wqb -oJW -xJZ -eQa -lVc -lVc -lVc -lVc -lVc -mCe -lVc -lVc -lVc -pfr -lVc -feR -lVc -pfr -vJp -lVc -mUP -fnj -baa +gNj +cHF +sUV +jfB +jfB +jfB +jfB +jfB +nbq +jfB +jfB +jfB +dvP +jfB +wpe +jfB +dvP +sgB +jfB +gGd +pqF +qLj mMu xhA eHZ @@ -61778,7 +54700,7 @@ cty cty aOg mCF -mSa +mCF mCF pGs pGs @@ -61787,22 +54709,22 @@ wUU "} (133,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -mPk +wmz +jNI +jNI +jNI +vxn +jNI +jNI +jNI +jNI +jNI +vxn +jNI wcb wlH tMZ -ghW +kPM wlB beK mtT @@ -61810,33 +54732,33 @@ kgp kgp wlB wlB -hmh +ldD wlB jwX -aQN -aQN +eUl +eUl sKz wlB tez tmZ rXk wlB -aQN -hmh +eUl +ldD wlB bbK -mdg +xqt dWV -tCV -jKs +igW +cDQ wlB wlB kgp doH -nCl +cQo bbK xmL -iUH +gqU icm cFw nwq @@ -61847,11 +54769,11 @@ cFw pll jNn eNA -jks +opD cFw -jks -jks -jks +opD +opD +opD cFw cFw nwq @@ -61863,10 +54785,10 @@ xSZ qEt biS vVH -hrc -enu -iQS -pGU +hQy +aDS +hyX +ema vVH kBZ kBZ @@ -61875,10 +54797,10 @@ kBZ kBZ kBZ wqb -rDD -xJZ -viK -stw +wjL +cHF +ajC +kHt ouy kbQ kbQ @@ -61886,9 +54808,9 @@ kbQ eyt eyt wqb -rDD -viK -gha +wjL +ajC +bqF wqb eyt eyt @@ -61900,7 +54822,7 @@ kbQ kbQ ofC tTU -tVj +nDY sgk jqw eyt @@ -61912,28 +54834,28 @@ wVf eyt eyt wqb -qQd -xJZ -viK -xJZ -vlw -xJZ -xJZ +cPy +cHF +ajC +cHF +aCQ +cHF +cHF ryD -xJZ -xJZ -xJZ -xJZ -xJZ +cHF +cHF +cHF +cHF +cHF ryD -xJZ -xJZ -xJZ -xJZ -xJZ -cto -tuZ -sgl +cHF +cHF +cHF +cHF +cHF +oAN +aWC +eKG wNz xxk eHZ @@ -61969,24 +54891,24 @@ wUU "} (134,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -cUN -cUN +wmz +vxn +jNI +vxn +jNI +jNI +jNI +jNI +jNI +vxn +vxn +vxn pCa tMZ wlB eia wlB -ghW +kPM lTg wlB wlB @@ -62000,22 +54922,22 @@ wlB wlB qNX ehY -urD +lck nsN lTg -aQN -aQN +eUl +eUl gjC wlB wlB dWV -iQr -jKs +jRY +cDQ wlB kgp kgp kgp -nCl +cQo wlB cFw tPK @@ -62024,16 +54946,16 @@ nwq cFw cFw cel -jks +opD cFw tPK qkq xpe -jks -jks -jks -mtp -coX +opD +opD +opD +rnX +djX cFw cFw cFw @@ -62045,10 +54967,10 @@ nwq nwq oep vVH -won -vSu -iQS -pGU +fYS +puO +hyX +ema vVH kBZ kBZ @@ -62057,20 +54979,20 @@ kBZ kBZ kBZ wqb -bFD -xJZ -viK -xJZ -lFE +vhf +cHF +ajC +cHF +xwt kbQ kbQ kbQ eyt eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF wqb eyt eyt @@ -62082,7 +55004,7 @@ kbQ kbQ kbQ kbQ -tVj +nDY kbQ kbQ kbQ @@ -62095,28 +55017,28 @@ eyt eyt wqb wqb -xJZ -viK -ouP -vlw -pOg -xJZ -xJZ -wXu +cHF +ajC +rCd +aCQ +lep +cHF +cHF +qaR ryD ryD -xJZ -xJZ -xJZ -gDh -vlw +cHF +cHF +cHF +rPm +aCQ ryD -vXx -xJZ -fLu -iaM -pyz -cto +sEP +cHF +nJg +phC +iAN +oAN xxk hBA mCF @@ -62151,18 +55073,18 @@ wUU "} (135,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI wfR dYd wlB @@ -62178,26 +55100,26 @@ wlB lTg wlB wlB -mdg +xqt wlB beK cVq cVq mtT wlB -aQN -aQN +eUl +eUl wlB -oyv +rmT lTg wlB -iQr -iQr +jRY +jRY lTg wlB gjC kgp -nCl +cQo wlB cFw ihY @@ -62206,20 +55128,20 @@ ihY cSc jrr jrr -vUx +gfC jrr cSc cCk cFw cFw -jks -jks -jks -coX +opD +opD +opD +djX nwq cFw cFw -tkh +nQh cFw nwq wUF @@ -62227,10 +55149,10 @@ cFw cFw uFO vVH -iQS -aQY -iQS -iQS +hyX +iNu +hyX +hyX vVH kBZ kBZ @@ -62240,9 +55162,9 @@ kBZ kBZ wqb wqb -xJZ -viK -sKu +cHF +ajC +idd ouy kbQ kbQ @@ -62250,10 +55172,10 @@ kbQ eyt eyt wqb -rWY -viK -xJZ -bPk +cvc +ajC +cHF +ykk jqw kbQ kbQ @@ -62264,7 +55186,7 @@ kbQ mED kbQ sgk -tVj +nDY kbQ kbQ kbQ @@ -62277,19 +55199,19 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF ouy ouy ouy wVp iwT ouy -nZP -nZP -nZP -nZP +ybl +ybl +ybl +ybl ouy ouy ouy @@ -62333,18 +55255,18 @@ wUU "} (136,1,1) = {" wUU -nvv -mPk -cUN -mPk -mPk -mPk -mPk -cUN -mPk -mPk -rUa -cUN +wmz +jNI +vxn +jNI +jNI +jNI +jNI +vxn +jNI +jNI +eXS +vxn xDE wlB wlB @@ -62353,31 +55275,31 @@ lTg wlB wlB wlB -mdg +xqt wlB wlB wlB -ghW +kPM wlB lTg wlB -ghW +kPM wlB wlB lTg wlB wlB -mdg +xqt wlB -qNu +iSX wlB wlB wlB -iQr -iDE +jRY +usU doH -gXw -aQN +unk +eUl wlB lTg wlB @@ -62389,30 +55311,30 @@ nwq cFw nwq nwq -qTE +djK ihY ihY cFw ykU -jks +opD nwq cFw fSa cFw -jks -jks -jks -jks +opD +opD +opD +opD cFw cFw cFw dgY kuO vVH -iQS -fnl -iQS -iQS +hyX +qXr +hyX +hyX vVH kBZ kBZ @@ -62422,9 +55344,9 @@ kBZ kBZ kBZ wqb -xJZ -viK -gDh +cHF +ajC +rPm ouy sgk kbQ @@ -62432,9 +55354,9 @@ qIF eyt eyt wqb -oJW -viK -xJZ +gNj +ajC +cHF wqb kbQ sgk @@ -62443,10 +55365,10 @@ kbQ kbQ kbQ kbQ -tVj -tVj -ykx -tVj +nDY +nDY +bIu +nDY kbQ kbQ sgk @@ -62459,9 +55381,9 @@ jqw eyt eyt eyt -rDD -viK -xJZ +wjL +ajC +cHF ouy eyt eyt @@ -62515,21 +55437,21 @@ wUU "} (137,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +vxn +jNI +jNI iWj wlB -mdg +xqt lTg wlB wlB @@ -62554,11 +55476,11 @@ wlB lTg wlB wlB -tfc -tCV -iQr +tdo +igW +jRY wlB -ghW +kPM wlB wlB rBq @@ -62567,7 +55489,7 @@ xmL deE cFw cFw -jks +opD cFw cFw cFw @@ -62576,7 +55498,7 @@ cFw deq cFw cFw -jks +opD cFw mEs ihY @@ -62584,17 +55506,17 @@ wop cFw cFw cFw -jks +opD cFw cFw -dvT +gNg cFw kuO vVH -iQS -enu -apH -iQS +hyX +aDS +hap +hyX vVH kBZ wqb @@ -62604,19 +55526,19 @@ wqb kBZ kBZ wqb -xJZ -viK -gDh -lFE +cHF +ajC +rPm +xwt sgk kbQ jqw eyt eyt wqb -xJZ -viK -xJZ +cHF +ajC +cHF tFQ iyv tTU @@ -62625,10 +55547,10 @@ kbQ jqw kbQ kbQ -tVj -tVj -tVj -tVj +nDY +nDY +nDY +nDY eyt eyt kbQ @@ -62641,12 +55563,12 @@ kbQ eyt eyt eyt -xJZ +cHF wXs -xJZ +cHF ouy eyt -wnE +kbQ kbQ kbQ kbQ @@ -62697,18 +55619,18 @@ wUU "} (138,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +sgg iWj hPq wlB @@ -62729,27 +55651,27 @@ wlB chX lTg lTg -jtH +pQd lTg lTg -jtH -jtH -jtH +pQd +pQd +pQd lTg lTg -tCV -iQr +igW +jRY wlB wlB wlB wlB -nCl +cQo wlB xmL cFw cFw cFw -jks +opD cFw cFw cFw @@ -62758,47 +55680,47 @@ cFw tEM hzx cFw -jks +opD nwq nwq ihY ihY cFw mDm -dvT +gNg nwq -jks +opD cFw cFw cFw kuO vVH -nxl -enu -iQS -hza +vrN +aDS +hyX +oyw aoC vVH rql -qcD -kAl +kQT +cas vVH wqb kBZ wqb -xJZ -viK -klf +cHF +ajC +mfL ouy kbQ sgk kbQ eyt wqb -xxs -xJZ -viK -xJZ +wfu +cHF +ajC +cHF tWA tWA tLu @@ -62807,7 +55729,7 @@ wqb wqb tWA gey -uvr +qAE tWA wqb wqb @@ -62815,17 +55737,17 @@ wqb wqb tLu tLu -xJZ -xJZ -xJZ +cHF +cHF +cHF wqb tLu wqb wqb wqb -xJZ -viK -xJZ +cHF +ajC +cHF ouy eyt qIF @@ -62879,18 +55801,18 @@ wUU "} (139,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI rJv rXk lTg @@ -62920,18 +55842,18 @@ jqd lTg lTg lTg -kFn +jrm wlB -iQr +jRY wlB lTg -nCl +cQo wlB -iig -jks +aaj +opD cFw cFw -jks +opD cFw cFw nwq @@ -62939,8 +55861,8 @@ ihY ihY fxX iaH -mio -nRU +dBe +puE jjj hjn ihY @@ -62949,65 +55871,65 @@ cFw cFw cFw cFw -jks -jks +opD +opD cFw cFw kuO uti -kxU -enu -iQS -iQS -iQS -iQS -jXn -iQS -iQS -tkr -imu -xJZ -xJZ -xJZ -viK -xJZ +hcA +aDS +hyX +hyX +hyX +hyX +faS +hyX +hyX +swc +aAS +cHF +cHF +cHF +ajC +cHF ouy tCA kbQ tCA wqb wqb -xJZ -xJZ -viK -xJZ -xJZ -xJZ -xJZ -xJZ -wXu -xJZ +cHF +cHF +ajC +cHF +cHF +cHF +cHF +cHF +qaR +cHF ryD ryD -xJZ +cHF keY -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +cHF +aCQ +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF +cHF wXs -xJZ +cHF kbQ kbQ kbQ @@ -63061,28 +55983,28 @@ wUU "} (140,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vhB +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +hXY nsN -ghW +kPM wlB lTg wlB lTg lTg lTg -lTg +emP pXT lTg lTg @@ -63091,26 +56013,26 @@ wlB wlB lTg lTg -lTg emP lTg +lTg wlB wlB wlB wlB wlB lTg -pXT +qGR pXT rhu wlB lTg wlB hPq -aQN +eUl wlB xmL -qTE +djK cFw cFw cFw @@ -63118,11 +56040,11 @@ ebi cFw ihY ihY -gFA +dLB nwq -upb -jks -jks +dWv +opD +opD cFw epN cFw @@ -63131,65 +56053,65 @@ vbS cFw cFw cFw -jks -jks +opD +opD cFw nwq ezU uti -sPD -hdV -pDW -pDW -pDW -eVH -pDW -pDW -pDW -pDW -lVc -lVc -lVc -lVc -pfr -lVc -lVc -lVc -lVc -lVc -lVc -pbw -lVc -lVc -pfr -nch -lVc -lVc -lVc -lVc -xpk -lVc -elO -lVc -lVc -lVc -lVc -lVc -lVc +eoU +cko +bDL +bDL +bDL +nCW +bDL +bDL +bDL +bDL +jfB +jfB +jfB +jfB +dvP +jfB +jfB +jfB +jfB +jfB +jfB +cls +jfB +jfB +dvP +kHo +jfB +jfB +jfB +jfB +xmc +jfB +oZk +jfB +jfB +jfB +jfB +jfB +jfB xza -lVc -lVc -lVc -elO -lVc -lVc -lVc -tlM -lVc -lVc -lVc -cpC -xJZ +jfB +jfB +jfB +oZk +jfB +jfB +jfB +qks +jfB +jfB +jfB +yem +cHF kbQ ofC kbQ @@ -63243,19 +56165,19 @@ wUU "} (141,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -pRa -cJL -rYC +wmz +jNI +jNI +jNI +vxn +jNI +jNI +jNI +jNI +jNI +pVD +sgg +btV nsN wlB wlB @@ -63266,7 +56188,7 @@ eia lTg lTg lTg -ade +wlB wlB wlB wlB @@ -63281,15 +56203,15 @@ wlB wlB wlB nFX -ias +pXT lTg wlB lTg lTg -iQr +jRY kgp kgp -nCl +cQo wlB cFw tPK @@ -63302,75 +56224,75 @@ cFw ihY fvV cFw -coX +djX cFw cFw -dvT +gNg nwq cFw cFw cFw nwq cFw -jks -jks +opD +opD cFw cFw nwq kuO uti -fmy -iQS -iQS -iQS -iQS -iQS -iQS -axs -iQS -iQS -xJZ -xJZ -xJZ -xJZ -xJZ +oLG +hyX +hyX +hyX +hyX +hyX +hyX +jDE +hyX +hyX +cHF +cHF +cHF +cHF +cHF ryD ryD oPV -xJZ -xJZ -eKF -bPk -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJt -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -vlw -xJZ -xJZ -xJZ -vXx +cHF +cHF +dWL +ykk +cHF +cHF +cHF +cHF +cHF +cHF +aCQ +cHF +cHF +cHF +cHF +uiw +cHF +cHF +cHF +cHF +cHF +lww +cHF +cHF +uiw +cHF +cHF +cHF +cHF +aCQ +cHF +cHF +cHF +sEP ryD kbQ kbQ @@ -63425,19 +56347,19 @@ wUU "} (142,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +uBN nsN wlB wlB @@ -63471,20 +56393,20 @@ rhu wlB kgp kgp -nCl +cQo wlB cFw cFw ihY ihY -qTE +djK cFw cFw nwq cFw -hQl +wFV cFw -coX +djX cFw nwq cFw @@ -63494,39 +56416,39 @@ cFw cFw ihY wop -gkG -nRU +wRe +puE jjj jjj -mcp +kIW tdt xAg xAg -bSD -kAl -kAl +nVm +cas +cas vVH vVH vVH vVH vVH vVH -gfu -xJZ -xJZ -gfu -sny +eyY +cHF +cHF +eyY +uiw sVr ryD ryD -xJZ -iLc -dUL -jcY -sny -xJZ -xJZ -mHh +cHF +ucO +xwb +ykk +uiw +cHF +cHF +knO wqb wqb tLu @@ -63535,21 +56457,21 @@ wqb wqb wqb wqb -bPk +ykk tLu tWA gey tWA wqb wqb -bPk +ykk wqb -bPk +ykk wqb wqb tLu -bPk -bPk +ykk +ykk wqb iwT wVp @@ -63607,18 +56529,18 @@ wUU "} (143,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +sgg ovT mtT wlB @@ -63649,11 +56571,11 @@ wlB wlB wlB lTg -eqT -iQr +ooo +jRY eia kgp -nCl +cQo wlB cFw nwq @@ -63666,18 +56588,18 @@ cFw cFw cFw cFw -jks +opD cFw ihY ihY cFw -jks +opD cFw ihY ihY xfz cFw -jks +opD cFw eHs cFw @@ -63694,20 +56616,20 @@ bzz fNm vVH oET -slA -gfG +nRC +jVz oET oET iwT iwT iwT -lFE +xwt tCA ouy ouy ouy tCA -lFE +xwt ouy ouy kbQ @@ -63720,7 +56642,7 @@ kbQ kbQ kbQ kbQ -tVj +nDY kbQ kbQ liq @@ -63789,18 +56711,18 @@ wUU "} (144,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD iWj wlB gjC @@ -63832,11 +56754,11 @@ lTg uHD rhu lTg -fIk +klz wlB kgp -nCl -ghW +cQo +kPM nwq cFw cFw @@ -63844,22 +56766,22 @@ nwq cFw cFw cFw -upb +dWv cFw cFw cFw -jks +opD cFw uAM ihY cFw -agn +dbK cFw ejk nwq -nak +jCX cFw -jks +opD nwq cFw cFw @@ -63971,18 +56893,18 @@ wUU "} (145,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD iWj wlB wlB @@ -64001,7 +56923,7 @@ wlB wlB wlB wlB -aAX +mXP wlB wlB wlB @@ -64013,8 +56935,8 @@ wlB lTg lTg lTg -kFH -iQr +wco +jRY wlB kgp kgp @@ -64024,19 +56946,19 @@ cFw cFw xfz cel -jks -jks -jks -gtv -jks -jks -coX +opD +opD +opD +ngR +opD +opD +djX cFw cFw cFw cFw cFw -jks +opD pll cFw cFw @@ -64153,23 +57075,23 @@ wUU "} (146,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +pVD xDE wlB lTg wlB -mdg +xqt wlB lTg lTg @@ -64196,8 +57118,8 @@ lTg pXT lTg cxT -bDs -aQN +wGi +eUl kgp kgp wlB @@ -64224,7 +57146,7 @@ eHs cFw nwq bGU -pmM +woq bGU bGU rvD @@ -64234,7 +57156,7 @@ rvD bGU rvD rvD -elP +lTh bGU bGU rvD @@ -64335,18 +57257,18 @@ wUU "} (147,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +eXS rJv rXk wlB @@ -64386,11 +57308,11 @@ lTg cFw cFw xmL -jks -jks +opD +opD cFw cFw -ykA +nps cFw cFw cFw @@ -64400,14 +57322,14 @@ nwq nwq cFw cFw -agn +dbK tPK udp cFw bGU bGU -pmM -cYw +woq +slx bGU bGU trI @@ -64454,7 +57376,7 @@ eyt eyt jqw qfu -kbQ +wnE sgk kbQ kbQ @@ -64517,19 +57439,19 @@ wUU "} (148,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +hTh nsN wlB lTg @@ -64560,22 +57482,22 @@ uHD wlB lTg dOl -iQr +jRY wlB kgp kgp wlB cFw -iUH -wfh -jks +gqU +sTz +opD nwq wop gDr cFw cFw -jks -jks +opD +opD udp cFw nwq @@ -64584,7 +57506,7 @@ nwq nwq cFw nwq -tkh +nQh nwq bGU bGU @@ -64596,7 +57518,7 @@ rvD bGU bGU bGU -pYK +gfV bGU rvD bLV @@ -64620,13 +57542,13 @@ eyt eyt qIF uqW -gaJ -tVj +wGE +nDY qfu -eQI -tVj -tVj -tVj +rlA +nDY +nDY +nDY eyt eyt eyt @@ -64699,19 +57621,19 @@ wUU "} (149,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPW +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +hTh nsN wlB wlB @@ -64722,7 +57644,7 @@ lTg lTg lTg lTg -ade +wlB wlB wlB wlB @@ -64737,12 +57659,12 @@ nFX wlB wlB wlB -xpL +uHD lTg wlB lTg wlB -iQr +jRY kgp kgp kgp @@ -64756,7 +57678,7 @@ cFw cFw cFw cFw -jks +opD cFw fSa fSa @@ -64775,7 +57697,7 @@ trI bGU bLV bGU -elP +lTh bGU rvD bGU @@ -64784,13 +57706,13 @@ bGU bGU bGU rvD -pYK +gfV bGU bGU bGU bGU bGU -elP +lTh rvD bGU bGU @@ -64804,9 +57726,9 @@ tXu tXu ouy ouy -uon -kvz -peu +ghM +yfj +rmA ouy ouy tXu @@ -64817,8 +57739,8 @@ tXu tXu tXu tXu -vqG -tVj +pQx +nDY kbQ qIF qfu @@ -64881,19 +57803,19 @@ wUU "} (150,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -wLB +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +qMx nsN hPq wlB @@ -64902,7 +57824,7 @@ lTg lTg wlB lTg -lTg +emP uHD lTg lTg @@ -64911,23 +57833,23 @@ wlB wlB lTg lTg -lTg emP lTg +lTg wlB wlB wlB wlB wlB lTg -uHD +oDM uHD lTg lTg -iQr -aQN +jRY +eUl kgp -nCl +cQo lTg cFw nwq @@ -64962,7 +57884,7 @@ bGU lzT bGU rvD -uFq +eCh bGU bGU bGU @@ -64984,11 +57906,11 @@ eyt eyt eyt eyt -qTh +dou ouy -qaX -rTi -rTi +ioB +pIQ +pIQ ouy nhI vjO @@ -64999,8 +57921,8 @@ oAJ liz vDP ouy -cwk -sCp +skB +kOs kkc vqK kbQ @@ -65063,26 +57985,26 @@ wUU "} (151,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +uBN nsN wlB -qNu +iSX lTg wlB lTg -mdg +xqt lTg lTg lTg @@ -65105,11 +58027,11 @@ lTg lTg lTg lTg -iQr -iQr -aQN +jRY +jRY +eUl wlB -nCl +cQo wlB cFw ykU @@ -65128,7 +58050,7 @@ pgn kgA nwq kyp -oWf +vwZ kyp kyp kyp @@ -65180,12 +58102,12 @@ fPJ bGU oBq kjr -kVE -ibi -dRI -jrv -fZP -vqG +dap +tQE +fmA +dPJ +waS +pQx pGs pGs pGs @@ -65245,18 +58167,18 @@ wUU "} (152,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg wHt mtT wlB @@ -65275,12 +58197,12 @@ lTg lTg wlB gjC -mdg +xqt lTg lTg lTg lTg -ghW +kPM wlB lTg wlB @@ -65288,19 +58210,19 @@ wlB lTg wlB wlB -iQr -aQN +jRY +eUl wlB -nCl +cQo wlB cFw cFw -wfh -agn +sTz +dbK nwq cFw cFw -qTE +djK nNB cFw cFw @@ -65315,8 +58237,8 @@ cFh kyp elI fWd -dRs -dRs +lNI +lNI pjD dTG cFh @@ -65362,11 +58284,11 @@ huE lzT bGU rKS -vEi -dir -xHz -tVj -xcz +hqc +tHK +fnB +nDY +mkz pGs pGs pGs @@ -65427,18 +58349,18 @@ wUU "} (153,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD iWj wlB lTg @@ -65448,7 +58370,7 @@ wlB wlB lTg wlB -ghW +kPM wlB wlB wlB @@ -65471,14 +58393,14 @@ wlB lTg wlB wlB -aQN -aQN -nCl +eUl +eUl +cQo wlB cFw nwq ihY -vlL +ftT gcB jNE cFw @@ -65496,10 +58418,10 @@ dTG kyp kyp hds -exX -xFb -ulb -dRs +rqJ +gfE +mgh +lNI qvS hWv bGU @@ -65508,7 +58430,7 @@ rvD lzT bGU vNB -elP +lTh bGU bGU bGU @@ -65517,7 +58439,7 @@ bGU bGU rvD bGU -uFq +eCh bGU rvD bGU @@ -65529,7 +58451,7 @@ bGU bGU bGU kyD -uFq +eCh qZJ bGU kyD @@ -65544,9 +58466,9 @@ huE lzT lzT gzm -rTi -sCp -inV +pIQ +kOs +fIE ouy ouy huF @@ -65585,7 +58507,7 @@ bsf bsf bsf bsf -bsf +fku bsf bsf pDX @@ -65609,25 +58531,25 @@ wUU "} (154,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD rJv rXk wlB wlB wlB wlB -ghW +kPM wlB wlB wlB @@ -65646,7 +58568,7 @@ phk wlB wlB bnH -mdg +xqt wlB wlB lTg @@ -65655,7 +58577,7 @@ wlB lTg hPq kgp -nCl +cQo wlB nwq cFw @@ -65666,22 +58588,22 @@ ihY nwq nwq wUF -oWf +vwZ lci kyp kyp nCF kGJ plq -dRs +lNI qvS kyp -hEv +xoT hds -ulb -dRs -dRs -dRs +mgh +lNI +lNI +lNI qvS kyp bGU @@ -65721,7 +58643,7 @@ kyD bGU bGU kyD -pYK +gfV fFw pYI huE @@ -65791,19 +58713,19 @@ wUU "} (155,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +uBN nsN tLS wlB @@ -65818,7 +58740,7 @@ wlB wlB wlB lTg -mdg +xqt wlB xCZ wlB @@ -65837,7 +58759,7 @@ wlB lTg kgp kgp -aQN +eUl wlB kyp kyp @@ -65855,17 +58777,17 @@ kyp kyp cFh hds -dRs +lNI qvS kyp kyp hds -dRs -xFb -xFb -xFb +lNI +gfE +gfE +gfE qvS -uWo +fgV bGU rvD bGU @@ -65877,7 +58799,7 @@ bGU lzT lzT bGU -pYK +gfV bLV bGU bGU @@ -65973,19 +58895,19 @@ wUU "} (156,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN nsN wlB wlB @@ -65996,32 +58918,32 @@ wlB lTg lTg wlB -qNu +iSX wlB wlB wlB wlB wlB pDl -dyl +kjF lTg aCW wlB wlB -qNu +iSX mJH wlB lTg wlB lTg -aQN -ayx +eUl +dqO kgp kgp kyP -aQN +eUl lTg -iHN +gsM kyp kyp kyp @@ -66037,15 +58959,15 @@ cFh kyp kyp hds -dRs +lNI qvS cFh kyp hds -ulb -dRs -xFb -xFb +mgh +lNI +gfE +gfE pjD dTG bGU @@ -66155,19 +59077,19 @@ wUU "} (157,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -rUa -wBp +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +eXS +uBN nsN eNk wlB @@ -66185,9 +59107,9 @@ lTg wlB cFZ nti -ola +uvs ayF -ueB +hpA lTg wlB lTg @@ -66196,12 +59118,12 @@ wlB wlB wlB wlB -aQN -aQN +eUl +eUl tMZ pvQ lTg -aQN +eUl wlB kyp cFh @@ -66219,20 +59141,20 @@ elI jek jek fWd -xFb +gfE qvS cFh kyp hds -dRs -xFb -tHc -xFb -dRs +lNI +gfE +guA +gfE +lNI pjD gPi xfQ -bUP +bEF veV jTR bGU @@ -66254,9 +59176,9 @@ bGU rvD lzT bGU -elP +lTh bLV -pYK +gfV bGU bGU bGU @@ -66270,7 +59192,7 @@ bGU kyD bGU huE -uFq +eCh bGU huE bGU @@ -66337,21 +59259,21 @@ wUU "} (158,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +btV nsN -iFc +iao qAy lTg lTg @@ -66359,7 +59281,7 @@ wlB wlB wlB wlB -ghW +kPM lTg wlB gjC @@ -66367,7 +59289,7 @@ wlB lTg yjH mUv -hgc +aEd sZd wlB gOp @@ -66375,10 +59297,10 @@ wlB qNX rXk wlB -ghW +kPM kAH wlB -aQN +eUl tMZ lTg tmZ @@ -66390,32 +59312,32 @@ kyp jTj elI fWd -xFb -xFb -dRs +gfE +gfE +lNI qvS kyp kyp kyp hds -exX -dRs -xFb -dRs +rqJ +lNI +gfE +lNI qvS cFh cFh hds -dRs -xFb -xFb -xFb -dRs -dRs -dRs -bUP -bUP -bUP +lNI +gfE +gfE +gfE +lNI +lNI +lNI +bEF +bEF +bEF ghN rvD bGU @@ -66423,7 +59345,7 @@ qoI gPi gPi jTR -elP +lTh bGU lzT lzT @@ -66489,16 +59411,16 @@ bsf bsf bsf avD -mqe -mqe +kqF +kqF avD -hRs +aAd cHV wsG -hRs +aAd avD -mqe -mqe +kqF +kqF avD bsf bsf @@ -66519,19 +59441,19 @@ wUU "} (159,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ngJ nBc tmZ rXk @@ -66550,7 +59472,7 @@ tmZ rXk wlB wlB -aQN +eUl lTg kAH wlB @@ -66560,50 +59482,50 @@ wlB lTg wlB wlB -aQN -aQN +eUl +eUl tMZ -pTI -rnL -pdK +qey +bxL +gDG pjD jek jek jek fWd -xFb -xFb -xFb -xFb +gfE +gfE +gfE +gfE pjD jek jek jek fWd -xFb -xFb -dRs -xFb +gfE +gfE +lNI +gfE qvS kyp kyp hds -dRs -dRs -dRs -xFb -dRs -dRs -xFb -xFb -xFb -bUP +lNI +lNI +lNI +gfE +lNI +lNI +gfE +gfE +gfE +bEF ghN bGU bGU ejM -bUP -bUP +bEF +bEF veV jTR bGU @@ -66641,7 +59563,7 @@ pYI lzT lzT bGU -pYK +gfV pYI qZJ kyD @@ -66671,16 +59593,16 @@ pDX bsf avD avD -uvd -lFT +pHp +tRv avD -kjI -snS -snS -kjI +cpj +syj +syj +cpj avD -qcC -uvd +cXb +pHp avD avD bsf @@ -66701,21 +59623,21 @@ wUU "} (160,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -pdK -pdK +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +gDG +gDG jJn wlB wlB @@ -66726,9 +59648,9 @@ nBc tmZ tmZ sXc -pdK -pdK -pdK +gDG +gDG +gDG nsN wlB tLS @@ -66745,48 +59667,48 @@ wlB lTg tMZ fbw -pdK -pdK -pdK -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb +gDG +gDG +gDG +gfE +gfE +gfE +gfE +lNI +gfE +gfE +lNI +gfE +gfE +lNI +gfE +lNI +gfE +lNI +lNI +gfE +gfE pjD jek jek fWd -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -bUP +lNI +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +bEF ghN bGU ylB ejM -bUP -xFb -bUP +bEF +gfE +bEF veV jTR bGU @@ -66795,7 +59717,7 @@ bGU lzT bGU bGU -pYK +gfV bGU bGU bGU @@ -66811,10 +59733,10 @@ bGU rqg gPi xeU -dRs -spv -spv -aXn +lNI +wRr +wRr +bXf kyj gPi bko @@ -66852,18 +59774,18 @@ bsf bsf bsf avD -fFK -uvd -smx -aCl -kjI -kjI -kjI -kjI -aCl -nzb -uvd -uvd +fjX +pHp +xwg +pXN +cpj +cpj +cpj +cpj +pXN +sIz +pHp +pHp avD bsf bsf @@ -66883,34 +59805,34 @@ wUU "} (161,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp -rnL -pdK +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +uBN +bxL +gDG nBc tmZ tmZ tmZ tmZ sXc -rnL -pdK -pdK -pdK -urD -rnL -pdK +bxL +gDG +gDG +gDG +lck +bxL +gDG nBc tmZ tmZ @@ -66927,49 +59849,49 @@ wlB wlB pvQ tMZ -pdK -pdK -pdK -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -dRs -dRs -byC -xFb -dRs -xFb -xFb -xFb -exX -xFb -bUP +gDG +gDG +gDG +lNI +gfE +gfE +gfE +gfE +gfE +gfE +gfE +lNI +xkL +gfE +gfE +gfE +gfE +gfE +gfE +xkL +gfE +lNI +lNI +lNI +lNI +lNI +xkL +gfE +lNI +gfE +gfE +gfE +rqJ +gfE +bEF veV gPi gPi xfQ -bUP -xFb -bUP -bUP +bEF +gfE +bEF +bEF veV jTR bGU @@ -66990,26 +59912,26 @@ bko gPi bko gPi -wts -dRs -spv -dRs -spv -spv -spv -dRs -dRs -spv +qdJ +lNI +wRr +lNI +wRr +wRr +wRr +lNI +lNI +wRr ghN pZS kyD bGU bGU pZS -vXG +mfj bGU bGU -uFq +eCh rvD bGU rvD @@ -67034,18 +59956,18 @@ bsf bsf bsf avD -pBf -fFK -bye +xLi +fjX +xwz avD -fJI -kjI -kjI -vnb +sFY +cpj +cpj +aOJ avD -gBM -uvd -uvd +hKQ +pHp +pHp avD bsf bsf @@ -67065,42 +59987,42 @@ wUU "} (162,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lze -wBp -xVw -mPW -bBV -mPW -xVw -wBp -wBp -wBp -bBV -mPW -mPW -wLB -wBp -mPW -wBp -xVw -rYC -xVw -wBp -mPW -wBp -bBV +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +idI +uBN +ngJ +hTh +nlG +hTh +ngJ +uBN +uBN +uBN +nlG +hTh +hTh +qMx +uBN +hTh +uBN +ngJ +btV +ngJ +uBN +hTh +uBN +nlG rJv tWT uxM @@ -67109,50 +60031,50 @@ tWT uxM loO ifO -wBp -xVw -rYC -xVw -wBp -wBp -xVw -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -mPW -wLB -wBp -mPW -wLB -bBV -wLB -mPW -wBp -xFb -xFb -bUP -bUP -bUP -bUP -hwE -xFb -xFb -nKR -bUP +uBN +ngJ +btV +ngJ +uBN +uBN +ngJ +uBN +uBN +btV +ngJ +uBN +uBN +uBN +uBN +btV +ngJ +uBN +uBN +uBN +uBN +ngJ +btV +uBN +hTh +qMx +uBN +hTh +qMx +nlG +qMx +hTh +uBN +gfE +gfE +bEF +bEF +bEF +bEF +ocE +gfE +gfE +smB +bEF veV gPi gPi @@ -67168,20 +60090,20 @@ bGU qoI gPi xfQ -spv -dRs -esA -dRs -esA -dRs -spv -dRs -dRs -spv -spv -dRs -spv -spv +wRr +lNI +fom +lNI +fom +lNI +wRr +lNI +lNI +wRr +wRr +lNI +wRr +wRr ghN gRj bGU @@ -67191,7 +60113,7 @@ pZS kyD qhO kyD -cYw +slx bGU bGU rvD @@ -67221,8 +60143,8 @@ avD avD avD avD -lms -lms +aBf +aBf avD avD avD @@ -67247,97 +60169,97 @@ wUU "} (163,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -cJL -mPk -mPk -mPk -pRa -mPk -rUa -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -pRa -rUa -pRa -pRa -mPk -pRa -pRa -rUa -pRa -pRa -uhi +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +jNI +sgg +jNI +jNI +jNI +pVD +jNI +eXS +jNI +jNI +jNI +jNI +sgg +jNI +jNI +jNI +jNI +pVD +eXS +pVD +pVD +jNI +pVD +pVD +eXS +pVD +pVD +jEl kkF -mPk -mPk -mPk -mPk -cJL -mPk -mPk -cJL -mPk -cJL -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -pRa -mPk -mPk -mPk -rUa -pRa -wLB -dRs -xFb -xFb -bUP -xFb -bUP -xFb -xFb -xFb -xFb -bUP -bUP -bUP -bUP +jNI +jNI +jNI +jNI +sgg +jNI +jNI +sgg +jNI +sgg +jNI +jNI +jNI +jNI +sgg +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +jNI +jNI +pVD +jNI +jNI +jNI +eXS +pVD +qMx +lNI +gfE +gfE +bEF +gfE +bEF +gfE +gfE +gfE +gfE +bEF +bEF +bEF +bEF veV gPi gPi @@ -67348,22 +60270,22 @@ gPi gPi gPi xfQ -bUP -bUP -spv -dRs -spv -ulb -spv -dRs -dRs -esA -spv -spv -dRs -dRs -spv -dRs +bEF +bEF +wRr +lNI +wRr +mgh +wRr +lNI +lNI +fom +wRr +wRr +lNI +lNI +wRr +lNI veV bko gPi @@ -67398,18 +60320,18 @@ bsf bsf bsf avD -qxb -aEg -snS -qxb +dJt +jOP +syj +dJt brT -nEE -kjI +kWU +cpj brT -qxb -aEg -snS -qxb +dJt +jOP +syj +dJt avD bsf bsf @@ -67429,130 +60351,130 @@ wUU "} (164,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -rUa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +pVD +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +sgg +jNI +jNI +jNI +jNI +eXS kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW -exX -xFb -xFb -xFb -xFb -xFb -xFb -xFb -ulb -dRs -xFb -dRs -xFb -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -dRs -spv -dRs -dRs -spv -hwE +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +hTh +rqJ +gfE +gfE +gfE +gfE +gfE +gfE +gfE +mgh +lNI +gfE +lNI +gfE +bEF +bEF +bEF +bEF +bEF +bEF +bEF +bEF +bEF +bEF +lNI +lNI +wRr +lNI +lNI +wRr +lNI +lNI +wRr +lNI +lNI +lNI +lNI +lNI +lNI +wRr +lNI +lNI +wRr +ocE ghN pZS -lYD -fTh +gSJ +sCf kyD bGU bGU @@ -67580,18 +60502,18 @@ mMz bsf bsf avD -oWU -kjI -jub -kjI -szZ -kjI -kjI -szZ -kjI -kjI -jub -kjI +sbI +cpj +bik +cpj +fyz +cpj +cpj +fyz +cpj +cpj +bik +cpj avD bsf bsf @@ -67611,131 +60533,131 @@ wUU "} (165,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -spv -dRs -dRs +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +fom +lNI +lNI +wRr +lNI +lNI +wRr +lNI +lNI +lNI +lNI +lNI +wRr +wRr +lNI +wRr +lNI +lNI aaG dkS -qlw -tjn -pmM +svV +bKf +woq bGU qZJ pGs @@ -67758,22 +60680,22 @@ bsf bsf crq ulv -uvd +pHp avD bsf avD -qxb -snS -pcH -qxb +dJt +syj +tAd +dJt brT -kjI -kjI +cpj +cpj brT -qxb -snS -snS -qxb +dJt +syj +syj +dJt avD bsf gFH @@ -67793,133 +60715,133 @@ wUU "} (166,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -xFb -xFb -dRs -dRs -ulb -dRs -dRs -dRs -dRs -dRs -dRs -spv -esA -dRs -dRs -spv -dRs -dRs -dRs -spv -spv -dRs -dRs -fPy -spv -dRs -spv -dRs -dRs -esA -ihC +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +btV +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +lNI +gfE +gfE +gfE +gfE +lNI +lNI +mgh +lNI +lNI +lNI +lNI +lNI +lNI +wRr +fom +lNI +lNI +wRr +lNI +lNI +lNI +wRr +wRr +lNI +lNI +nBA +wRr +lNI +wRr +lNI +lNI +fom +dLu ghN -pmM -hTX -evW -pYK -elP +woq +unM +uUw +gfV +lTh rvD pGs pGs @@ -67939,9 +60861,9 @@ gNE bsf avD ulv -uvd -uvd -aEQ +pHp +pHp +tFz avD avD brT @@ -67949,8 +60871,8 @@ brT brT brT brT -rco -rco +qVN +qVN brT brT brT @@ -67959,8 +60881,8 @@ brT avD avD ofJ -uvd -uvd +pHp +pHp crq gFH mMz @@ -67975,127 +60897,127 @@ wUU "} (167,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -spv -spv -dRs -dRs -dRs -spv -esA -spv -spv -dRs -dRs -esA -dRs -esA -dRs -bUP +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +gfE +lNI +gfE +gfE +lNI +gfE +gfE +lNI +lNI +lNI +lNI +lNI +lNI +lNI +fom +wRr +lNI +lNI +wRr +wRr +lNI +lNI +lNI +wRr +fom +wRr +wRr +lNI +lNI +fom +lNI +fom +lNI +bEF ghN bGU trI @@ -68122,27 +61044,27 @@ bsf ulv mol mol -fof +ejH avD -vNT -vNT -xka -vNT -vNT +lfM +lfM +nen +lfM +lfM brT -snS -kjI -kjI -snS +syj +cpj +cpj +syj brT -rmS -rmS -xka -fbW -rnj +cfd +cfd +nen +rHs +aKG oJX -pqf -uvd +xLK +pHp ulv gFH bsf @@ -68157,127 +61079,127 @@ wUU "} (168,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -exX -dRs -exX -dRs -esA -dRs -lxs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -dRs -bUP +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +xkL +gfE +gfE +gfE +gfE +gfE +gfE +xkL +gfE +gfE +gfE +xkL +gfE +gfE +gfE +xkL +gfE +lNI +lNI +lNI +rqJ +lNI +rqJ +lNI +fom +lNI +nCf +lNI +lNI +fom +wRr +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +wRr +wRr +lNI +lNI +bEF veV jTR bGU @@ -68302,29 +61224,29 @@ bsf bsf mMz crq -uvd -uvd -uvd +pHp +pHp +pHp brT -kjI -snS -xka -snS -kjI -rco -sUG -kjI -kjI -qpD -lvS -kjI -snS -xka -nFy -ojF +cpj +syj +nen +syj +cpj +qVN +hbb +cpj +cpj +aZJ +uPk +cpj +syj +nen +oId +kVl brT -uvd -uvd +pHp +pHp crq ulv bsf @@ -68339,128 +61261,128 @@ wUU "} (169,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -wLB -mPW -wLB -bBV -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -bBV -wBp -xBH -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -spv -esA -esA -dRs -dRs -dRs -bUP -bUP +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +uBN +qMx +hTh +qMx +nlG +ngJ +uBN +uBN +uBN +ngJ +uBN +btV +uBN +ngJ +uBN +uBN +uBN +btV +ngJ +uBN +uBN +uBN +nlG +uBN +ege +lNI +lNI +lNI +lNI +lNI +lNI +fom +wRr +lNI +lNI +lNI +lNI +wRr +fom +fom +lNI +lNI +lNI +bEF +bEF ghN bGU bGU @@ -68484,30 +61406,30 @@ bsf bsf bsf ulv -uvd +pHp crq -uvd +pHp brT -bPx -snS -xka -snS -cRn +gKI +syj +nen +syj +fbz brT -czG -izi -izi -snS +xtx +eCJ +eCJ +syj brT -kjI -snS -xka -ndp -kjI +cpj +syj +nen +dov +cpj brT -uvd -kEK -uvd +pHp +dyz +pHp gFH bsf bsf @@ -68521,128 +61443,128 @@ wUU "} (170,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -mPk -mPk -cJL -mPk -tTq -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -spv -spv -spv -spv -dRs -dRs -dRs -dRs -bUP -ucL +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +sgg +jNI +jNI +jNI +jNI +jNI +sgg +jNI +fZH +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +wRr +wRr +wRr +wRr +wRr +wRr +lNI +lNI +lNI +lNI +bEF +fnU ghN bGU bGU @@ -68667,30 +61589,30 @@ bsf bsf ulv ulv -uvd -uvd +pHp +pHp brT -kjI -snS -xka -snS -kjI -mRs -snS -kjI -kjI -snS -mRs -kjI -snS -xka -eBS -kjI +cpj +syj +nen +syj +cpj +eRX +syj +cpj +cpj +syj +eRX +cpj +syj +nen +xsS +cpj brT -uvd -uvd -uvd -uvd +pHp +pHp +pHp +pHp bsf gRU bsf @@ -68703,128 +61625,128 @@ wUU "} (171,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -rYC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +jNI +jNI +jNI +btV +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +bEF ghN bGU bGU @@ -68848,30 +61770,30 @@ bsf gRU bsf brT -kEK -uvd -uvd +dyz +pHp +pHp brT -kjI -kjI -rco -kjI -gms -mRs -snS -kjI -kjI -snS -mRs -gms -kjI -lvS -nkq -kjI +cpj +cpj +qVN +cpj +hhS +eRX +syj +cpj +cpj +syj +eRX +hhS +cpj +uPk +jOM +cpj brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -68885,132 +61807,132 @@ wUU "} (172,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa -mPW -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -ulb -bUP +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +eXS +hTh +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +mgh +bEF veV jTR bGU -akg +nnU bGU rvD rvD @@ -69030,30 +61952,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +pHp +pHp +pHp brT -kjI -snS -xka -snS -snS -mRs -snS -kjI -kjI -snS -mRs -snS -snS -xka -dBA -kjI +cpj +syj +nen +syj +syj +eRX +syj +cpj +cpj +syj +eRX +syj +syj +nen +cee +cpj brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69067,129 +61989,129 @@ wUU "} (173,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ngJ +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +bEF ghN bGU bGU @@ -69212,30 +62134,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +pHp +pHp +pHp brT -cRn -vNT +fbz +lfM brT -snS -snS +syj +syj brT -snS -ujg -kjI -snS +syj +uoJ +cpj +syj brT -snS -snS +syj +syj brT -qwU -kjI +riO +cpj brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69249,129 +62171,129 @@ wUU "} (174,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +bEF veV jTR bGU @@ -69394,30 +62316,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +pHp +pHp +pHp brT -kjI -vNT +cpj +lfM brT -reA +sVK brT brT -snS -kjI -kjI -snS +syj +cpj +cpj +syj brT brT -rmS +cfd brT -qwU -nnk +riO +cKG brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69431,130 +62353,130 @@ wUU "} (175,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -wBp -byC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -bUP -bUP +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +uBN +xkL +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +gfE +gfE +bEF +bEF ghN bGU vNB @@ -69576,30 +62498,30 @@ bsf bsf bsf ulv -uvd -uvd -uvd +pHp +pHp +pHp brT -kjI -vNT +cpj +lfM brT brT brT -oKy -snS -kjI -kjI -snS -oKy +pIU +syj +cpj +cpj +syj +pIU brT brT brT -iqU -kjI +gme +cpj brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69613,130 +62535,130 @@ wUU "} (176,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -dRs -dRs -tHc -jFL +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +btV +gfE +gfE +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +lNI +gfE +gfE +lNI +lNI +guA +jXN ghN bGU bGU @@ -69758,30 +62680,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +pHp +pHp +pHp brT -kqQ +vRa avD brT -cNJ -cNJ -snS -czG -kjI -kjI -snS -snS -cNJ -cNJ +pXk +pXk +syj +xtx +cpj +cpj +syj +syj +pXk +pXk brT avD -cFu +xTD brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69795,130 +62717,130 @@ wUU "} (177,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +lJo kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -dRs -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb -jFL +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +xkL +gfE +gfE +gfE +lNI +lNI +lNI +lNI +lNI +lNI +lNI +gfE +lNI +lNI +gfE +lNI +gfE +lNI +lNI +gfE +gfE +jXN ghN vNB rvD @@ -69940,30 +62862,30 @@ bsf bsf bsf brT -uvd -uvd -dHD +pHp +pHp +mfV avD avD avD -snS -snS -snS -snS -izi -kjI -cTb -izi -snS -snS -snS -snS +syj +syj +syj +syj +eCJ +cpj +ooZ +eCJ +syj +syj +syj +syj avD avD avD -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -69977,130 +62899,130 @@ wUU "} (178,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xFb -xFb -dRs -xFb -byC -dRs -xFb -dRs -byC -xFb -xFb -dRs -byC -dRs -xFb -byC -xFb -xFb -xFb -byC -xFb -exX +lJo +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +gfE +gfE +lNI +gfE +xkL +lNI +gfE +lNI +xkL +gfE +gfE +lNI +xkL +lNI +gfE +xkL +gfE +gfE +gfE +xkL +gfE +rqJ kyj jTR dlD @@ -70122,31 +63044,31 @@ bsf bsf bsf brT -uvd -uvd -uvd -wNI -xqS -rco -kjI -kjI -kjI -kjI -kjI -fhA -cUE -kjI -kjI -kjI -kjI -atM -pTc -lvt -lFr -uvd -uvd -uvd -uvd +pHp +pHp +pHp +nki +ott +qVN +cpj +cpj +cpj +cpj +cpj +gem +vsz +cpj +cpj +cpj +cpj +moT +bXP +kxz +ybH +pHp +pHp +pHp +pHp bsf bsf bsf @@ -70159,131 +63081,131 @@ wUU "} (179,1,1) = {" wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz hJB -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xVw -rYC -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -xVw -wBp -wBp -rYC -wBp -xVw -wBp -rYC -xVw -wBp -xVw -rYC +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +uBN +ngJ +btV +ngJ +uBN +uBN +uBN +ngJ +uBN +btV +uBN +uBN +ngJ +uBN +uBN +btV +uBN +ngJ +uBN +btV +ngJ +uBN +ngJ +btV enZ iAE pGs @@ -70304,30 +63226,30 @@ bsf bsf bsf brT -uvd -uvd -iwV -uvd -smx -rco -izi -kjI -kjI -kjI -kjI -oKy -oKy -kjI -kjI -kjI -kjI -izi -pTc -nzb -uvd -iwV -uvd -uvd +pHp +pHp +lkP +pHp +xwg +qVN +eCJ +cpj +cpj +cpj +cpj +pIU +pIU +cpj +cpj +cpj +cpj +eCJ +bXP +sIz +pHp +lkP +pHp +pHp ulv bsf bsf @@ -70430,43 +63352,43 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -cJL -pRa -mPk -mPk -mPk -rUa -imk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +sgg +jNI +jNI +jNI +sgg +pVD +jNI +jNI +jNI +eXS +oYg rJv iAE pGs @@ -70486,29 +63408,29 @@ bsf bsf bsf brT -uvd -uvd -uvd -eIr -uxi -rco -kjI -snS -kjI -snS -izi -kjI -kjI -izi -snS -kjI -snS -snS -hTQ -vPh -nau -uvd -uvd +pHp +pHp +pHp +xNS +fuJ +qVN +cpj +syj +cpj +syj +eCJ +cpj +cpj +eCJ +syj +cpj +syj +syj +cXK +aGN +kzf +pHp +pHp ulv crq bsf @@ -70612,44 +63534,44 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -imk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +pVD +pVD +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +pVD +oYg rJv pGs pGs @@ -70668,31 +63590,31 @@ bsf bsf bsf ulv -uvd -uvd -uvd +pHp +pHp +pHp brT avD avD avD brT -mvv -snS -snS -kjI -kjI -snS -czG -pjm +jUL +syj +syj +cpj +cpj +syj +xtx +uvR brT avD avD avD brT -uvd -uvd +pHp +pHp ulv -uvd +pHp bsf bsf bsf @@ -70794,47 +63716,47 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -xTA -pRa -wBp -fjv -mPW +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +rdH +pVD +uBN +iNw +hTh mZH kdq tWT @@ -70849,30 +63771,30 @@ hre bsf bsf bsf -uvd -uvd -uvd -uvd +pHp +pHp +pHp +pHp ulv bsf bsf -kjI -bPF -kjI -jUY -pwc -kjI -kjI -oKy -asf -ahD -idn +cpj +qgc +cpj +nqk +aqy +cpj +cpj +pIU +bNb +vvm +xat avD bsf bsf brT -uvd -uvd +pHp +pHp ulv brT bsf @@ -70976,54 +63898,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -xTA -pRa -imk -cJL -xTA -pRa -pRa -pRa -mPk -rUa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +rdH +pVD +oYg +sgg +rdH +pVD +pVD +pVD +jNI +eXS +pVD iWj hre bsf @@ -71032,30 +63954,30 @@ hre bsf bsf crq -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf avD -jQG -kjI -jUY -oKy -kjI -kjI -pfL -asf -aIm -cwp +aLB +cpj +nqk +pIU +cpj +cpj +lnn +bNb +oaE +njg avD bsf bsf brT -uvd -uvd -uvd +pHp +pHp +pHp brT bsf bsf @@ -71158,54 +64080,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +jNI +pVD +pVD +jNI +pVD +pVD +pVD +pVD xDE kkv dsi @@ -71213,32 +64135,32 @@ dsi bsf bsf bsf -uvd +pHp eiK -uvd -uvd +pHp +pHp ulv bsf mMz -kjI -ydZ -kjI -jUY -rAf -kjI -kjI -oKy -asf -qLH -jYs -kjI +cpj +gFX +cpj +nqk +ozb +cpj +cpj +pIU +bNb +fff +ehw +cpj bsf mMz -uvd -uvd -uvd -kEK -uvd +pHp +pHp +pHp +dyz +pHp bsf bsf bsf @@ -71340,54 +64262,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -imk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -mPk -rUa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +jNI +oYg +jNI +jNI +pVD +jNI +pVD +pVD +jNI +pVD +jNI +eXS iWj tOV dsi @@ -71396,29 +64318,29 @@ hre gRU bsf ulv -dHD -kEK -uvd +mfV +dyz +pHp ulv bsf bsf -qEn -iSC -kjI -jUY -oKy -kjI -kjI -pfL -asf -vmY -mke -kjI +xwP +oOR +cpj +nqk +pIU +cpj +cpj +lnn +bNb +uDv +kwv +cpj bsf bsf brT -uvd -uvd +pHp +pHp ulv ulv bsf @@ -71522,54 +64444,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -mPk -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +oYg +jNI +pVD +pVD +pVD +pVD +jNI +pVD +pVD +pVD +jNI +pVD iWj tRN dsi @@ -71578,29 +64500,29 @@ hre bsf bsf brT -uvd -uvd -uvd -kEK +pHp +pHp +pHp +dyz kTu bsf avD brT -gsu -snS -snS -izi -izi -snS -snS -pjm +mfv +syj +syj +eCJ +eCJ +syj +syj +uvR brT -kjI +cpj mMz bsf brT -uvd -uvd +pHp +pHp ulv brT bsf @@ -71704,54 +64626,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +pVD +pVD +jNI +pVD +pVD +jNI +pVD +pVD +pVD rJv iAE hre @@ -71760,9 +64682,9 @@ hre bsf bsf ulv -uvd -uvd -uvd +pHp +pHp +pHp brT gRU mLJ @@ -71770,21 +64692,21 @@ avD brT brT brT -uTA -jbR -kjI -snS +oaD +vHz +cpj +syj brT brT brT avD bhU bsf -uvd -uvd -uvd -uvd -uvd +pHp +pHp +pHp +pHp +pHp mMz bsf bsf @@ -71886,55 +64808,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -hfZ -mPk -mPk -pRa -mPk -mPk -pRa -pRa -mPk -jhK -mPk -mPk -cJL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +iHL +jNI +jNI +pVD +jNI +jNI +pVD +pVD +jNI +kIF +jNI +jNI +sgg xDE aOG tRN @@ -71944,27 +64866,27 @@ bsf lqa ulv ulv -uvd +pHp brT vdV tPE qza -kjI -rco -kjI -snS -aJp -kjI -snS -kjI -hTQ -kjI +cpj +qVN +cpj +syj +oHi +cpj +syj +cpj +cXK +cpj vus xfD mMz ulv -uvd -uvd +pHp +pHp brT brT bsf @@ -72068,41 +64990,41 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead xce byF xce @@ -72118,36 +65040,36 @@ xce xce xce gBP -hXq -hXq -hXq -hXq -hXq +rup +rup +rup +rup +rup qbX -uvd -iwV -uvd +pHp +lkP +pHp ulv bsf -jeT +lKP lbX -izi -rco -izi -dTe -kjI -kjI -kjI -izi -qAd -izi -xuX -tfC +eCJ +qVN +eCJ +tDL +cpj +cpj +cpj +eCJ +jsK +eCJ +ekh +cLz bsf brT -uvd -uvd -uvd +pHp +pHp +pHp bsf bsf bsf @@ -72250,55 +65172,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl iWj bsf vxi @@ -72307,28 +65229,28 @@ hre vxi esK vBZ -kEK +dyz eiK ulv bsf jwf ehM -kjI -rco -eRQ -kjI -snS -snS -kjI -kjI -qAd -kjI +cpj +qVN +mMo +cpj +syj +syj +cpj +cpj +jsK +cpj cXa rYi bsf brT -uvd -rDK +pHp +xqA ulv bsf bsf @@ -72432,55 +65354,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl rJv sXn hre @@ -72497,21 +65419,21 @@ jXp avD avD brT -yaC -yaC +iEm +iEm brT brT -yaC -yaC +iEm +iEm brT avD avD xfD bsf ulv -uvd +pHp ulv -kEK +dyz bsf bsf bsf @@ -72614,56 +65536,56 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD rJv apG vxi @@ -72672,27 +65594,27 @@ dsi bsf pTO vxi -uvd +pHp brT bsf bsf avD -vOa -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +nzW +cpj +cpj +cpj +syj +syj +cpj +cpj +cpj +pUO avD bsf bsf crq -uvd -uvd +pHp +pHp bsf bsf bsf @@ -72796,57 +65718,57 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD rJv iAE bsf @@ -72859,16 +65781,16 @@ ulv gNE gNE avD -gSE -asf -kjI -izi -snS -snS -izi -kjI -jUY -bTN +wPf +bNb +cpj +eCJ +syj +syj +eCJ +cpj +nqk +dzG avD bsf bsf @@ -73002,34 +65924,34 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD iWj bsf dsi @@ -73041,16 +65963,16 @@ gFY lqM lqM ulv -kEK -kjI -kjI -kjI -lDz -oPb -ijo -kjI -kjI -ueQ +dyz +cpj +cpj +cpj +wYl +djU +sXS +cpj +cpj +pUO ulv bsf bsf @@ -73184,34 +66106,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD rJv iAE hre @@ -73223,15 +66145,15 @@ bsf bsf vxi ulv -uvd -uvd -kjI -izi -snS -snS -izi -kjI -kEK +pHp +pHp +cpj +eCJ +syj +syj +eCJ +cpj +dyz avD sOw bsf @@ -73366,35 +66288,35 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -rUa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +eXS iWj bsf hre @@ -73406,14 +66328,14 @@ bsf bsf nEY avD -cdc -kjI -qEn +thD +cpj +xwP avD avD -dUS +krG eiK -uvd +pHp ulv bsf bsf @@ -73548,34 +66470,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD +pVD +pVD +shl +pVD +pVD +pVD ovT uNz vxi @@ -73588,13 +66510,13 @@ pDX bsf lVf iyk -kZl +cOh eiK -hoU -fxR -fxR -kjI -kjI +qOM +fdN +fdN +cpj +cpj fcF ulv bsf @@ -73730,17 +66652,17 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +ead lwm tjs lwm @@ -73758,11 +66680,11 @@ tjs lwm lwm hjK -stK -hXq -hXq -hXq -hXq +wTA +rup +rup +rup +rup qCT qCT qCT @@ -73771,13 +66693,13 @@ bsf bsf fVw ulv -kjI -kjI -kjI -kjI -kjI +cpj +cpj +cpj +cpj +cpj ulv -uvd +pHp ulv uaU bsf @@ -73912,33 +66834,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -jhK -mPk -pRa -mPk -mPk -pRa -pRa -mPk -vjZ -aAr -fGN -wFJ -xrl -pRa -hfZ +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +kIF +jNI +pVD +jNI +jNI +pVD +pVD +jNI +hVR +pIt +lpi +sTR +bcN +pVD +iHL iWj tRN hre @@ -73952,13 +66874,13 @@ qCT gRU bsf luu -uvd +pHp crq -kjI -hoU -kjI +cpj +qOM +cpj ulv -kEK +dyz ulv nmH hmg @@ -74094,33 +67016,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -pRa -pRa -pRa -pRa -itL -kif -fGN -fGN -xrl -pRa -mPk +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +jNI +jNI +pVD +pVD +pVD +pVD +ead +pHn +lpi +lpi +bcN +pVD +jNI xDE hre gOj @@ -74136,10 +67058,10 @@ bsf bsf hte sOw -kZl +cOh ulv -hoU -kZl +qOM +cOh ulv avD doP @@ -74276,32 +67198,32 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -kWf -cKB -mdM -mdM -hjf -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +jNI +pVD +efJ +nsz +efk +efk +nSO +pVD fDH ymb hre @@ -74318,10 +67240,10 @@ bsf bBt bsf avD -gRN +kWo crq -uli -kEK +crG +dyz ulv lqM vRW @@ -74458,31 +67380,31 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +pVD +pVD +jNI +pVD +pVD +pVD +pVD +pVD ovT ymb hre @@ -74502,7 +67424,7 @@ bsf hte sOw akn -iwV +lkP ulv hte bsf @@ -74640,30 +67562,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -pRa -pRa -pRa -pRa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +jNI +pVD +pVD +pVD +pVD +pVD +pVD ovT dTu gOj @@ -74822,30 +67744,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa -rUa +wmz +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +jNI +pVD +pVD +jNI +pVD +pVD +pVD +pVD +eXS xDE hre tRN @@ -75004,29 +67926,29 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz +wmz oTs vgH pGs @@ -75186,29 +68108,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ iax pGs pGs @@ -75368,29 +68290,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ iax pGs pGs @@ -75550,29 +68472,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ iax pGs pGs @@ -75732,29 +68654,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ iax pGs pGs @@ -75914,29 +68836,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -76096,29 +69018,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -76278,29 +69200,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -76460,29 +69382,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -76642,29 +69564,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -76824,29 +69746,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -77006,29 +69928,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -77188,21 +70110,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -77370,21 +70292,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs @@ -77552,21 +70474,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ +xrZ pGs pGs pGs diff --git a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm index d02f6e7d89..a35a0ac32e 100644 --- a/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm +++ b/maps/map_files/New_Varadero_Fixed/New_Varadero_Repaired.dmm @@ -10,37 +10,48 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"aaA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aax" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"aaC" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 9 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "aaG" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) -"abf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +"abk" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/mob/living/simple_animal/mouse, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, -/area/varadero/interior/medical) -"abl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "abu" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -58,83 +69,128 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"abK" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) +"abG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) "abL" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"acO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/beakers, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"abP" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"abT" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"acm" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "ade" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"adp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "adw" = ( /turf/closed/wall/r_wall, /area/varadero/interior/cargo) -"adR" = ( +"adB" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"adM" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"aef" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"ael" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 3; + pixel_y = 15; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "aer" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"aeC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "afg" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 }, /area/varadero/interior/hall_N) -"afx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"afz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_N) -"afR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"afw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/pen/blue{ + pixel_x = 4; + pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = -5; + pixel_y = 11 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"afM" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"agf" = ( +/obj/structure/closet, +/obj/item/device/flashlight/lantern, +/obj/item/map/current_map, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "agi" = ( /obj/structure/window/reinforced{ dir = 4; @@ -159,21 +215,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"agn" = ( -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"agj" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 7 }, -/area/varadero/exterior/eastbeach) -"agJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/trackimp, -/obj/item/device/binoculars, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"agk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"agC" = ( +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "agM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/secure{ @@ -184,6 +241,16 @@ }, /turf/open/floor/plating, /area/varadero/interior/electrical) +"agY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "ahb" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -196,74 +263,31 @@ "ahg" = ( /turf/closed/wall, /area/varadero/interior/dock_control) -"ahD" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"ahK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"aiR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Evidence Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"aiY" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +"ahR" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"aic" = ( +/obj/structure/machinery/computer/card{ + dir = 8 }, -/obj/item/toy/plush/farwa, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/disposals) +"ajb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cdeathalarm_kit{ + pixel_x = -8; + pixel_y = 1 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"akg" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/gm/dirt{ - icon_state = "desert0" +"ajZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "akk" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -277,19 +301,22 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) +"aky" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) "akJ" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/varadero/interior/library) -"ald" = ( -/obj/structure/pipes/unary/freezer{ - dir = 8; - icon_state = "freezer_1" - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) "alD" = ( /obj/structure/filtration/coagulation_arm{ indestructible = 1; @@ -306,79 +333,56 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"alG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"alL" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"alM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"alI" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"alP" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"alU" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "ami" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/prop/dam/crane/cargo, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"ani" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"anu" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"amt" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"amI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "anA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aoi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"aoo" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" +"anP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"aou" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/co2{ + pixel_y = 7 }, -/area/varadero/interior/medical) +/obj/effect/spawner/random/powercell, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "aoC" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/comms2) @@ -386,6 +390,16 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/research) +"aoK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "apj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -393,70 +407,40 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"apx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) "apG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"apH" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"apI" = ( -/obj/structure/machinery/computer/cameras/telescreen{ - name = "Interrogation Telescreen"; - network = list("interrogation"); - pixel_y = 32 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"apY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"aqb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ +"apM" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - icon_state = "snow_mat" + pixel_x = -3 }, -/area/varadero/interior/security) -"aqh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"aqc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; pixel_y = -8 }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"aqk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"aqf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "aqq" = ( /obj/structure/prop/rock/brown, /obj/structure/machinery/storm_siren{ @@ -465,31 +449,20 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"aqw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "ara" = ( /turf/open/floor/wood, /area/varadero/interior/court) -"arg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"arC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"arc" = ( +/obj/item/stool{ + pixel_x = 7; + pixel_y = -6 }, -/area/varadero/interior/comms1) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"art" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "arF" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/ceramic_plate, @@ -499,68 +472,98 @@ /obj/item/tool/lighter/zippo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"asf" = ( -/obj/structure/bed/chair/hunter{ - dir = 1 +"arL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"arV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + id = "engine_electrical_maintenance"; + name = "Underground Power Substation"; + req_access_txt = "100" }, -/area/varadero/interior_protected/vessel) -"asx" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"asg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz1_near) -"atz" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"atk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/administration) -"atM" = ( -/obj/structure/prop/mech/drill, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"att" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior_protected/vessel) -"auE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/largecrate/random/mini/med{ + pixel_x = -10; + pixel_y = 15 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"atU" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access_txt = "100" }, -/area/varadero/interior/hall_NW) -"avl" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"aul" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"aup" = ( +/obj/item/roller{ + pixel_x = 2; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/surface/table, +/obj/item/roller{ + pixel_x = 4; + pixel_y = 14 }, -/area/varadero/interior/hall_SE) -"avy" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"avz" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass{ + amount = 30 }, -/area/varadero/interior/administration) +/obj/item/trash/crushed_cup, +/obj/item/trash/c_tube, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "avD" = ( /turf/closed/wall/huntership, /area/varadero/interior_protected/vessel) -"avF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"avK" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"avM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/paper/research_notes, +/obj/item/storage/belt/shotgun, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"avO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/technical_storage) "avX" = ( /obj/structure/platform/kutjevo/smooth{ @@ -570,118 +573,97 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"awr" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz1_near) -"awu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"awb" = ( +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_s" }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/greencorners/east, +/area/varadero/interior/hall_SE) "awJ" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"axh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"axs" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"awQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/comms2) -"axv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"axm" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = 1; + pixel_y = 6 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/area/varadero/exterior/pool) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "axY" = ( /obj/structure/bed/chair/comfy/lime, /turf/open/floor/wood, /area/varadero/interior/research) -"ayo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"ayi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + icon_state = "chair" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"ayr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/administration) -"ayx" = ( -/obj/structure/prop/power_transformer{ - dir = 0 +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ayE" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 1 }, -/area/varadero/exterior/lz2_near) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "ayF" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"azh" = ( -/obj/item/clothing/shoes/swimmingfins, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"azr" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"ayU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pool) -"azw" = ( -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"azv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"azK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +"azL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"azX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) "aAg" = ( /obj/structure/machinery/disposal, @@ -690,157 +672,73 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"aAr" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +"aAy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"aAT" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/technical_storage) +"aAV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/varadero/exterior/farocean) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "aAX" = ( /obj/docking_port/stationary/marine_dropship/lz2{ name = "LZ2 - Palm Airfield" }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"aAY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aBp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"aBz" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"aBB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"aBn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aBo" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/holywater, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "aBK" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers{ icon_state = "brflowers_3" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"aBO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/disposals) -"aCd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"aCl" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aCz" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"aCH" = ( -/obj/structure/bed/chair/wheelchair{ - desc = "Great scott, it can move on its own!"; - dir = 4; - icon_state = "officechair_white"; - name = "Dr. O's fantastic self rolling wheelie chair"; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"aBZ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"aCx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/rods, +/obj/item/storage/donut_box, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "aCW" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"aCX" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"aCY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aDu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"aDr" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 11 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "aDv" = ( /obj/structure/machinery/light{ dir = 1 @@ -848,69 +746,41 @@ /obj/structure/closet/secure_closet/bar, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"aDF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"aEf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"aDM" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"aEi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"aED" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"aDR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"aDS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + layer = 2.99; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/device/camera{ + pixel_x = -5; + pixel_y = 9 }, -/area/varadero/interior/hall_SE) -"aEQ" = ( -/obj/structure/shuttle/engine/router{ +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"aEb" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - unacidable = 0 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior_protected/vessel) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "aFg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -920,54 +790,46 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"aFh" = ( -/obj/structure/surface/table, -/obj/item/clothing/under/shorts/black, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.1; - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/rag{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) "aFt" = ( /turf/closed/wall, /area/varadero/interior_protected/maintenance/south) -"aFu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1 +"aFv" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"aFx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/cargo) -"aFM" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 4; - icon_state = "leftsecure"; - id = "brg" +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"aGg" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"aGm" = ( +/turf/open/floor/shiva/snow_mat, /area/varadero/interior/security) -"aFX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +"aGq" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 14 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "greencorners" +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/white, +/area/varadero/interior/laundry) "aGx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -977,68 +839,51 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"aGX" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) -"aHu" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"aHw" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"aGB" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"aHi" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"aHC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"aHy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) +"aHF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "asteroidfloor" + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "aHM" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/wood, /area/varadero/interior/security) -"aIm" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aIq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +"aHQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"aHT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) +"aId" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "aIu" = ( /obj/structure/filingcabinet{ density = 0; @@ -1056,73 +901,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"aJc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -13; - pixel_y = 16 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/xenoburger{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) -"aJp" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"aJD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"aJe" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) +"aJB" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "aJF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1137,26 +928,6 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/varadero/interior/library) -"aJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"aKk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 1; - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "aKA" = ( /obj/structure/filingcabinet{ density = 0; @@ -1174,6 +945,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"aKH" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "aKJ" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -1183,32 +962,65 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"aLc" = ( -/turf/open/floor/shiva{ +"aLa" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"aLe" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - icon_state = "yellowcorners" + pixel_x = -3 }, -/area/varadero/interior/disposals) -"aLl" = ( -/turf/open/floor/shiva{ - icon_state = "wred" +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"aLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/medical) -"aLn" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"aLu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/hall_SE) -"aMp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"aLx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"aLU" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "colony_sec_armory"; + name = "Secure Armory" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "aMC" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) +"aNn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/c_tube, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aNJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) "aOg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) @@ -1221,69 +1033,52 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"aPU" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" +"aOI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Custodial Closet"; + req_access_txt = "100" }, -/area/varadero/interior/administration) -"aQc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"aOJ" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"aPg" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"aPy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "aQq" = ( /obj/structure/window/framed/colony/reinforced/hull, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"aQG" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"aQN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"aQY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"aRr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"aRL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 1; - pixel_y = 17 - }, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 2; - pixel_y = 8 +"aQu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"aQx" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) "aSe" = ( /obj/item/reagent_container/food/snacks/birthdaycakeslice, @@ -1304,51 +1099,33 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"aSE" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "aSU" = ( /obj/structure/catwalk, /turf/open/floor/plating/plating_catwalk, /area/varadero/interior/maintenance/north) -"aTg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"aTh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"aTC" = ( -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -5; - pixel_y = -9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"aTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1 +"aTd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -6; + pixel_y = 3 }, -/area/varadero/interior/cargo) -"aTY" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"aUp" = ( /obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) "aUD" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -1359,179 +1136,102 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"aUP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"aVs" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) -"aVt" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" +"aUE" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"aUI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/varadero/interior/library) -"aVF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"aVu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"aVE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "aVQ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/hall_N) -"aWA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"aWP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkgreencorners2" +"aWq" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"aWz" = ( +/turf/open/floor/shiva/red/west, /area/varadero/interior/hall_SE) "aXb" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"aXm" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"aXn" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"aXc" = ( +/obj/structure/surface/table, +/obj/item/cell/high/empty, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/varadero/exterior/eastocean) -"aXt" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/technical_storage) +"aXd" = ( +/obj/structure/surface/table, +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -4; + pixel_y = 13 }, -/area/varadero/interior/maintenance/north) -"aXz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"aXj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "aXA" = ( /obj/structure/largecrate/supply/medicine/iv, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"aXC" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"aYg" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"aZb" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"aZq" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +"aXF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"aZg" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "aZv" = ( /obj/structure/bed/chair{ dir = 4; @@ -1539,140 +1239,81 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"aZX" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"baa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"bag" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"bah" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bak" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +"aZy" = ( +/obj/structure/sink{ + pixel_y = 15 }, -/area/varadero/interior/maintenance) -"baH" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = -5 +/obj/structure/mirror{ + pixel_y = 28 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/turf/open/floor/white, +/area/varadero/interior/toilets) +"aZF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"aZU" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"aZV" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"bao" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "bbt" = ( /obj/effect/landmark/hunter_primary, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"bbv" = ( +/obj/structure/surface/table, +/obj/item/tool/plantspray/pests, +/obj/item/tool/plantspray/weeds{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "bbG" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"bbK" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"bbW" = ( -/obj/item/clothing/under/shorts/black, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"bcg" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"bcv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/research) -"bcD" = ( -/obj/item/tool/wet_sign, -/turf/open/floor{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"bdc" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 + name = "\improper Underground Power Substation" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"bcJ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"bcP" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "bdH" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/north_research) -"bdJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Custodial Closet"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"beE" = ( -/obj/item/device/taperecorder, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) "beK" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/lz2_near) +"beP" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) "bfg" = ( /obj/structure/surface/table, /obj/item/ashtray/plastic, @@ -1687,40 +1328,50 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"bfq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"bft" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"bgh" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, +"bfo" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"bgl" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) +"bfx" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_large_stack, +/obj/item/trash/boonie, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "bgE" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) +"bgR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"bgZ" = ( +/obj/structure/machinery/optable, +/obj/item/cpr_dummy, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"bhq" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "bhF" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) +"bhQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "bhU" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" @@ -1730,33 +1381,25 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bih" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) "bio" = ( /obj/structure/surface/table/woodentable, /obj/effect/spawner/random/powercell, /turf/open/floor/wood, /area/varadero/interior/chapel) -"biz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 +"biv" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -6; + pixel_y = -3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"biL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/morgue) +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "biS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -1769,164 +1412,167 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"bjd" = ( -/obj/item/weapon/gun/smg/nailgun{ - pixel_y = 3 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" +"bja" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/varadero/interior/research) -"bjf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"bjy" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purplefull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) -"bjA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 15; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/area/varadero/interior/administration) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "bjC" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"bjL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"bjX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"bkj" = ( +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"bkk" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "bko" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/west, /area/varadero/exterior/monsoon) -"bkC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Morgue"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" - }, -/area/varadero/interior/morgue) -"bkG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"bkB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "bkM" = ( /turf/closed/wall, /area/varadero/interior/hall_SE) -"bmt" = ( -/obj/structure/surface/rack, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"bmV" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bkQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior/maintenance/north) -"bnc" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"blG" = ( /obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ +/obj/item/inflatable{ pixel_x = -5; - pixel_y = 7 + pixel_y = 9 }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 8; - pixel_y = -8 +/obj/item/inflatable{ + pixel_x = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/inflatable{ + pixel_x = -1; + pixel_y = 7 }, -/area/varadero/interior_protected/maintenance/south) -"bnf" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/varadero/interior/maintenance/security) -"bng" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/technical_storage) +"bmp" = ( +/obj/item/tool/mop{ + pixel_x = -16; + pixel_y = 26 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "bnm" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/cargo) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bnn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"bnz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "bnH" = ( /obj/structure/prop/dam/truck, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"boI" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"bnV" = ( +/obj/item/clothing/under/shorts/black, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"bor" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/dock_control) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"boA" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"boF" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 }, -/area/varadero/interior/maintenance) -"bpI" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"bpq" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "bpT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1935,31 +1581,48 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"brx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = 5; - pixel_y = 4 +"bqa" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"bqe" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/paper{ - pixel_x = -11; - pixel_y = 4 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/item/paper/research_notes/good{ - pixel_x = -15; - pixel_y = 2 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"bqy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"bqK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/varadero/interior/research) -"brM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bqR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Library"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/administration) +/turf/open/floor/wood, +/area/varadero/interior/library) "brT" = ( /turf/closed/wall/huntership/destructible, /area/varadero/interior_protected/vessel) @@ -1972,12 +1635,18 @@ "bsf" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bst" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"bsl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"bsF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "bte" = ( /obj/structure/closet/crate/radiation, /obj/item/stack/sheet/mineral/phoron/medium_stack{ @@ -2011,99 +1680,72 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, /area/varadero/interior/administration) -"buH" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"bvE" = ( -/obj/structure/machinery/power/apc{ +"buv" = ( +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"bvg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/roller, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) +"bwc" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"bvF" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bwz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"bwP" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 + health = 300 }, -/turf/open/floor{ +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "asteroidfloor" + layer = 3.1; + pixel_y = 10 }, -/area/varadero/exterior/lz1_near) -"bye" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 5; - icon_state = "p_stair_full" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/area/varadero/interior_protected/vessel) -"byl" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"bwp" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"bwr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/encryptionkey/dutch, -/obj/item/device/encryptionkey/dutch{ - pixel_x = -6 - }, -/obj/item/device/encryptionkey/dutch{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = 1 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 14 }, -/obj/item/handcuffs{ - pixel_x = 2; - pixel_y = 16 +/obj/item/storage/box/pillbottles{ + pixel_x = -4; + pixel_y = 7 }, -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/technical_storage) +"bwE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"bxB" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"bxR" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"bxS" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) "bys" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2115,13 +1757,27 @@ /obj/item/folder/black, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"byC" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"byx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/eastocean) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"byB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "byF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2130,28 +1786,21 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"bzf" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"bzn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"byU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stock_parts/matter_bin/adv{ + pixel_x = -5; + pixel_y = 11 }, -/area/varadero/interior/cargo) -"bzq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bzi" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) "bzz" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -2160,18 +1809,62 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bAj" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"bzF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 2 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/stamp, +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"bzM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 + }, +/obj/item/weapon/gun/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"bzQ" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 + }, +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"bAe" = ( +/obj/structure/machinery/optable{ + desc = "This maybe could be used for advanced medical procedures."; + name = "Exam Table" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "bAE" = ( /obj/structure/window/reinforced{ dir = 4; @@ -2203,16 +1896,33 @@ /obj/item/ammo_magazine/rifle/m4ra, /turf/open/floor/wood, /area/varadero/interior/bunks) -"bBo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"bAF" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"bAK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/area/varadero/interior/records) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"bBp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"bBr" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "bBt" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2229,67 +1939,69 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"bBV" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"bCA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"bCM" = ( -/obj/structure/platform_decoration/kutjevo, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"bBB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"bBY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) -"bDs" = ( -/obj/item/weapon/gun/flare{ - current_mag = null +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"bCm" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"bCz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"bCU" = ( +/obj/structure/girder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"bDM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"bDR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" }, -/area/varadero/exterior/lz2_near) -"bEj" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"bDT" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/wy_chips_pepper, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"bEk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"bEz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"bEX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/disposalpipe/segment, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"bEN" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "bEY" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -2303,96 +2015,125 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"bFj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/donkpockets{ - pixel_x = -6; - pixel_y = 17 +"bEZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/machinery/recharger, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/storage/firstaid/rad{ + pixel_y = 4 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bFg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"bFk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "bFo" = ( /obj/structure/surface/table, /obj/item/device/flashlight/flare, /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"bFD" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"bFV" = ( -/obj/structure/machinery/light/small{ +"bFt" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"bGe" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"bGy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"bFS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/toilets) "bGC" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall, /area/varadero/interior/dock_control) +"bGF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"bGP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "bGU" = ( /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"bHc" = ( +"bHm" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"bHu" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"bHK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"bIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" + dir = 1; + pixel_y = -24 }, +/turf/open/floor/white, /area/varadero/interior/toilets) +"bIc" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"bIq" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "bIt" = ( /turf/closed/wall, /area/varadero/interior/technical_storage) -"bJv" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) +"bJt" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"bJC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "bJH" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -2403,77 +2144,71 @@ "bJI" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz1_near) -"bJV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"bLl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"bKU" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"bKZ" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"bLk" = ( +/obj/item/prop/helmetgarb/bullet_pipe{ + pixel_x = -8; + pixel_y = 15 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/reagent_container/glass/fertilizer/l4z{ + pixel_x = 10; + pixel_y = 10 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"bLm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) +"bLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/varadero/exterior/pontoon_beach) +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "bLp" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/administration) -"bLy" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/mess) "bLB" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/chapel) -"bLI" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - icon_state = "HotlineAlt" +"bLM" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "red" + pixel_x = 24 }, -/area/varadero/interior/administration) -"bLN" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "bLV" = ( /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, @@ -2488,168 +2223,81 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"bMk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 +"bMs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/interior/cargo) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "bMx" = ( /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"bMG" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/trash/ceramic_plate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"bMV" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"bNi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"bNt" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/clothing/suit/storage/bomber, -/obj/item/storage/belt/marine, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"bNC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"bNN" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/item/prop/almayer/comp_open, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"bOO" = ( +"bNm" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, /obj/structure/machinery/alarm{ pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) -"bPe" = ( +"bNq" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"bPk" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"bPl" = ( -/obj/structure/bed/chair{ +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"bNZ" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"bOp" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) +"bOx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/hall_NW) -"bPm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"bPx" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"bPF" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"bPG" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/flashlight/lamp/candelabra{ - layer = 3.2; - pixel_x = 1; +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black{ + pixel_x = -7; pixel_y = 13 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 7 }, -/area/varadero/interior/chapel) -"bQa" = ( -/obj/structure/catwalk, -/obj/structure/largecrate/random, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/item/folder/yellow{ + pixel_x = -7 }, -/area/varadero/interior/maintenance/north) -"bQH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/facepaint/lipstick/jade{ + pixel_x = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"bPK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"bQh" = ( +/obj/structure/machinery/light, +/obj/structure/closet/toolcloset, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"bQY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/evidence, +/obj/item/tool/hand_labeler, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "bRg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2659,26 +2307,29 @@ "bRi" = ( /turf/open/floor/shiva, /area/varadero/interior/disposals) -"bRo" = ( -/obj/structure/reagent_dispensers/beerkeg/alt_dark, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"bRQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"bRs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"bRA" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "bRS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"bSb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "bSj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -2695,74 +2346,74 @@ /obj/effect/spawner/random/attachment, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"bSD" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) +"bSI" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior_protected/caves/central) "bSQ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bTg" = ( +"bSS" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/caves/north_research) -"bTm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"bTv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/bunks) +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "bTA" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/records) -"bTN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"bTC" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"bTG" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"bTI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Staff Canteen" }, -/area/varadero/interior_protected/vessel) -"bUg" = ( -/obj/structure/machinery/microwave{ - pixel_y = 9 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"bUu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "Underground Morgue"; + req_access_txt = "100" }, +/turf/open/floor/dark2, +/area/varadero/interior/morgue) +"bUN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/security) -"bUK" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"bUP" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/monsoon) "bUZ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/auto_turf/sand_white/layer1, @@ -2778,28 +2429,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"bVq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"bVw" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/medical) -"bVu" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"bVK" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "red" - }, +/turf/open/floor/shiva/red, /area/varadero/interior/medical) -"bVI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/court) "bVQ" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -2813,23 +2455,80 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"bVS" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, +"bVT" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) "bVX" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz1_near) -"bWq" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/trash/crushed_cup, -/obj/item/prop/magazine/dirty/torn, -/turf/open/floor/shiva{ - icon_state = "floor3" +"bWi" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"bWr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"bWB" = ( +/obj/item/paper, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) +"bWR" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"bXr" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) +"bXw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"bXD" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"bXF" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"bYm" = ( +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" + }, +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 + }, +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 + }, +/obj/item/clothing/mask/yautja_flavor{ + anchored = 1; + unacidable = 0 + }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"bYx" = ( +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/hall_SE) "bYO" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, @@ -2841,121 +2540,73 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"bZg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 +"bZc" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "bZv" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"bZA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"bZI" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"bZP" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/area/varadero/interior/hall_SE) +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "bZU" = ( /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) +"caj" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag, +/obj/item/storage/box/syringes, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "cak" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"caD" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"caV" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"cba" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cbe" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"cbg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cao" = ( +/obj/structure/sink{ + pixel_y = 15 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"caB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) -"cbq" = ( -/turf/open/floor/shiva{ +"caT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"cbv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/spray/hydro{ - pixel_x = -4; - pixel_y = 7 + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null }, -/obj/item/reagent_container/spray/hydro{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"cbF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/court) "cbK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -2967,6 +2618,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"cbO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"cbY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"cci" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "ccp" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -2974,150 +2648,134 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/maintenance/north) -"ccU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"ccs" = ( +/obj/item/tool/minihoe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ccH" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "cdb" = ( /turf/closed/wall, /area/varadero/interior/maintenance/security) -"cdy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +"cdj" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -4; + pixel_y = 9 }, -/area/varadero/interior/security) -"cdO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/obj/item/storage/bible/booze{ + pixel_x = 10; + pixel_y = 2 }, -/turf/open/floor/shiva{ +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "yellow" + pixel_x = -24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "cel" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ceo" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) +"ceu" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "ceJ" = ( /obj/item/storage/fancy/candle_box, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cfq" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"ceL" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"cfs" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"cgb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 +"ceP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/mess) +"cfb" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"cfl" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"cfy" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"cfM" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "yellow" + icon_state = "pipe-c" }, -/area/varadero/interior/technical_storage) -"cgj" = ( -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"cgl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"cgm" = ( +/obj/structure/fence, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) "cgr" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/north, /area/varadero/interior/caves/north_research) -"cgA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"che" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"cgJ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"cgY" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior/comms3) -"chr" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/obj/item/tool/wet_sign, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"cha" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null }, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "chs" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"chE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "chU" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"chW" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "chX" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cic" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) "cio" = ( /obj/structure/filingcabinet{ density = 0; @@ -3138,44 +2796,30 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"cit" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ciu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"ciH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"ciR" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"cjf" = ( -/obj/item/reagent_container/glass/bucket{ +"ciU" = ( +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"cji" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/explosive/grenade/incendiary, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"cjv" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; pixel_x = 8; - pixel_y = -6 + pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "cka" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -3188,101 +2832,88 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"ckx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"ckh" = ( +/obj/structure/surface/table, +/obj/item/storage/wallet/random{ + pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/medical) -"ckz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ckp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) -"ckF" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/medical) -"ckI" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ckt" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -5 }, -/area/varadero/interior/hall_N) +/obj/structure/surface/table/reinforced/prison, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "ckM" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"clv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"ckQ" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = 3; + pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -2; + pixel_y = -4 }, -/area/varadero/interior/research) -"clD" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"clo" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/bunks) -"clG" = ( -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/prop/structure_lattice{ dir = 1; - climb_delay = 1; - layer = 2.99 + layer = 3.1; + pixel_y = 10 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"clP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "clX" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance) -"cmf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, +"cmo" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"cmk" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/cooler, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/peach, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "cmr" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -3290,116 +2921,36 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"cmU" = ( -/obj/item/reagent_container/food/snacks/fishfingers{ - pixel_y = 7 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"cne" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"cnv" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_y = 4; - pixel_x = -5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"cnW" = ( +"cnb" = ( /obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"coc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"cog" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"cnT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "coz" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"coX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"cpy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"cpA" = ( -/obj/structure/morgue, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"cpC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"cpF" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"coF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"cqb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/north, +/area/varadero/interior/medical) "cql" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -3414,10 +2965,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"cqr" = ( +/obj/structure/surface/table, +/obj/item/trash/plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"cqx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "cqC" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) +"cqQ" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"cqT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "cqZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/maintenance/south) @@ -3425,196 +3008,131 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"crC" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"csb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/shiva{ - icon_state = "floor3" +"crx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"csr" = ( -/obj/structure/prop/ice_colony/flamingo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"cto" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"ctw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ +"csi" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -3 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"csj" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"csB" = ( +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/area/varadero/interior/administration) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) "cty" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/central) -"ctE" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"cuc" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"cud" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +"ctZ" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/wood, +/area/varadero/interior/library) +"cui" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/electrical) -"cug" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"cus" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"cur" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp70, -/obj/item/weapon/gun/pistol/vp70{ - pixel_y = -2 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"cvI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper/janitor{ - pixel_x = -4; - pixel_y = 4 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Requesitions Office"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"cuQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cvs" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"cvt" = ( +/obj/item/clothing/gloves/yautja{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System"; + pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/bed/chair/hunter{ + dir = 1 }, -/area/varadero/interior/medical) -"cvW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"cvy" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) -"cvX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = 24 }, -/area/varadero/interior/security) -"cwe" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"cvD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/dry_ramen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = -10; - pixel_y = 4 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/item/tool/soap{ + pixel_x = 5 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cvJ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"cwk" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"cwp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"cvU" = ( +/obj/structure/closet/secure_closet/security_empty, +/obj/item/ammo_box/magazine/shotgun/buckshot, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"cwf" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"cwg" = ( +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"cwu" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = -25 }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) "cwE" = ( /turf/closed/wall/rock/brown, @@ -3624,52 +3142,57 @@ /obj/item/storage/bible/booze, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cym" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"cyT" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"czG" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"cwV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 9 }, -/area/varadero/interior_protected/vessel) -"cAw" = ( -/obj/structure/closet/secure_closet/cargotech, -/turf/open/floor/shiva{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellowfull" + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"cxv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) +"cxG" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lightstick{ + pixel_x = -4; + pixel_y = 11 }, +/obj/item/reagent_container/glass/pressurized_canister, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/technical_storage) +"cxR" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) +"cye" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"cyu" = ( +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"czc" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) "cAx" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"cAX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"cAz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "cBq" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -3681,141 +3204,112 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cBW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +"cBS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"cBU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/item/storage/fancy/cigar, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "cCk" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"cCO" = ( -/obj/structure/closet/jcloset, -/turf/open/floor/shiva{ +"cCL" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/laundry) -"cDc" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cDm" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"cEm" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"cEu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) +"cCP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/item/tool/pen/sleepypen{ + pixel_x = -4; + pixel_y = 4 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 +/obj/item/tool/lighter/zippo/fluff{ + pixel_x = 7; + pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"cCQ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"cCW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"cDu" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"cEi" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"cEE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"cEU" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"cFe" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "cFh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"cFu" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "cFw" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) "cFz" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/interior/caves/east) -"cFK" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarsouth"; - unacidable = 1; - name = "Pontoon South Door"; - openspeed = 17 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" +"cFG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "cFZ" = ( /obj/structure/cargo_container/kelland/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"cGc" = ( -/obj/item/book/manual/detective, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"cGd" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 +"cGb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/mess) -"cGx" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 }, -/obj/structure/machinery/r_n_d/protolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "cGD" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -3826,76 +3320,47 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"cGR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"cGJ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/hall_NW) -"cGT" = ( -/obj/structure/machinery/r_n_d/circuit_imprinter, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cGS" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) "cGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/records) -"cHf" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +"cGX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) -"cHl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"cHR" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"cHS" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = -3 + icon_state = "pipe-c" }, -/obj/item/explosive/grenade/incendiary/molotov{ - pixel_x = 6 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"cHx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor{ - icon_state = "freezerfloor" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"cHz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"cHF" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/cargo) "cHV" = ( /obj/structure/window/phoronreinforced{ @@ -3915,175 +3380,70 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"cHY" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"cIB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"cIP" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"cJa" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = -10; - pixel_y = 19 - }, -/obj/effect/decal/strata_decals/grime/grime2, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"cJL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"cKB" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +"cHX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"cIq" = ( +/obj/structure/safe/floor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"cIF" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz2_near) +"cKl" = ( +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"cKC" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) "cKK" = ( /obj/item/gift, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"cKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"cLD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) "cLP" = ( /turf/open/space, /area/space) -"cLV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"cLX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cLY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"cMf" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/court) -"cMw" = ( +"cLS" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"cMg" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"cMQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/clothing/head/helmet, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"cNb" = ( -/obj/structure/surface/table, -/obj/item/device/binoculars, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"cNh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"cMS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/white, +/area/varadero/interior/toilets) "cNt" = ( /turf/open/gm/coast/north, /area/varadero/exterior/comms4) -"cNu" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"cNy" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) "cNA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue{ @@ -4106,44 +3466,20 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"cNC" = ( -/obj/item/fuelCell{ - pixel_x = 4; - pixel_y = 22 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) -"cNF" = ( -/obj/structure/machinery/light{ +"cOe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"cNJ" = ( -/obj/structure/closet, -/obj/item/device/flashlight/lantern, -/obj/item/map/current_map, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"cNT" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"cOj" = ( -/obj/item/circuitboard/apc, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"cOr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) "cOs" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 4 @@ -4151,66 +3487,61 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"cOK" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/morgue) -"cPI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"cOF" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/cargo) -"cPR" = ( +"cOP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"cOX" = ( +/obj/structure/cryofeed, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"cPO" = ( /obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"cQn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"cQB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/co2_cartridge{ + pixel_x = 13; + pixel_y = 7 }, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"cQr" = ( -/obj/item/tool/crowbar/red{ - pixel_x = 9; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"cQu" = ( -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cRq" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz1_near) -"cRn" = ( -/obj/item/prop/alien/hugger, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 16 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "cRx" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"cRZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"cRU" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/area/varadero/interior/comms2) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "cSa" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_3" @@ -4224,92 +3555,49 @@ "cSq" = ( /turf/open/floor/wood, /area/varadero/interior/chapel) -"cTg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"cSw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"cTa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"cTb" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/morgue) -"cTr" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"cTz" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"cTw" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"cTV" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"cUE" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew{ +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" + pixel_y = 24 }, -/area/varadero/interior_protected/vessel) -"cUF" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"cTC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/window/reinforced{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"cUN" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"cUZ" = ( -/obj/structure/largecrate/random/case/double{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + health = 80 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"cTD" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/eastbeach) "cVd" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /obj/effect/landmark/lv624/fog_blocker{ @@ -4317,51 +3605,56 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"cVe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) "cVq" = ( /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"cVG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"cWs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/shiva{ +"cVv" = ( +/obj/structure/closet/jcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"cVA" = ( +/obj/structure/barricade/handrail/wire{ dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"cWu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 + layer = 3.5 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"cWw" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper External Airlock" }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cWC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/interior/oob) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"cWN" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "cXa" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -4374,120 +3667,124 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"cXQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) +"cXh" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "cYa" = ( /obj/item/storage/firstaid/adv, /obj/structure/surface/table/woodentable, /turf/open/floor/wood, /area/varadero/interior/security) -"cYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"cYr" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"cYf" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarwest"; + unacidable = 1; + name = "Pontoon West Door"; + openspeed = 17; dir = 4 }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"cYw" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"cYB" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/interior/cargo) +"cYh" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "cYV" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"cYZ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"cYX" = ( +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"cZs" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"cZN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/technical_storage) "cZR" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) -"cZZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "dad" = ( /obj/item/stack/tile/plasteel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"daA" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"dag" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/court) -"daS" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"daz" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) +"daD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) -"dbg" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"daK" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"daL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "dbu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"dbV" = ( -/obj/item/trash/liquidfood, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"dbw" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"dby" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"dbI" = ( +/obj/structure/machinery/floodlight/landing, +/obj/effect/decal/warning_stripes, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dcd" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"dck" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/area/varadero/interior/hall_NW) +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"dcq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) "ddz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -4498,24 +3795,14 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) -"ddY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"ded" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "floor3" +"deb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "deq" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -4537,196 +3824,139 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"deX" = ( -/obj/item/trash/boonie, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) "dfs" = ( /obj/item/storage/belt/utility, /obj/structure/surface/rack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"dfJ" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) -"dgq" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"dgF" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"dgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ +"dgi" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "yellowcorners" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"dgw" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"dgH" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dgN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) "dgY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"dhp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"dhV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"dir" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"diu" = ( -/obj/structure/bed/chair/comfy{ +"dhh" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/bed/chair/comfy{ - pixel_x = -7; - pixel_y = 18 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/bed/chair/comfy{ - dir = 4; - pixel_x = 7 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dhW" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/area/varadero/interior_protected/maintenance/south) -"diK" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -30; - start_charge = 0 +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -7; - pixel_y = 6 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"diF" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"diP" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/varadero/interior/beach_bar) -"diQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue{ - pixel_x = 6; - pixel_y = 5 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = -3 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/item/folder/black_random{ - pixel_x = -3; - pixel_y = -1 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 18; + pixel_y = 23 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"diS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"diZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 9 }, -/area/varadero/interior/records) -"diW" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"djF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" - }, +/obj/item/clothing/under/CM_uniform, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"djh" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) "djP" = ( /obj/structure/bed/chair, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"dkl" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"dkr" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/research) -"dkC" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"dkh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/comms4) +/turf/open/floor/white, +/area/varadero/interior/toilets) +"dkp" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "dkS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) -"dkV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +"dkT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/crowbar/red, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "dlh" = ( /obj/structure/machinery/chem_dispenser/soda{ density = 0; @@ -4734,35 +3964,35 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"dlr" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"dlA" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/storage/firstaid/adv, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"dlB" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, +/turf/open/gm/dirt/desert3, /area/varadero/exterior/lz1_near) -"dlv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) "dlD" = ( /obj/structure/prop/rock/brown_degree, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"dmq" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"dlS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/area/varadero/interior/technical_storage) +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "dmN" = ( /turf/closed/wall/r_wall/elevator{ dir = 5 @@ -4773,66 +4003,20 @@ /obj/item/storage/pouch/medkit/full_advanced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"dmS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "dnh" = ( /obj/structure/machinery/shower{ dir = 8 }, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"dnU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"dnV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"dnW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"doa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"dob" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"doO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"dnH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery{ + pixel_x = 2; + pixel_y = 7 }, -/area/varadero/interior/records) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "doP" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/warning_stripes{ @@ -4841,80 +4025,91 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"doW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null +"dpi" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 24 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"dpC" = ( +/obj/structure/bed/chair{ dir = 1 }, -/area/varadero/interior/research) -"dpz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Brig"; - req_access_txt = "100" +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"dpD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) +"dpJ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -4; + pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"dpS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "dpW" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/comms4) -"dpZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) "dqx" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"dro" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"drK" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" +"dqF" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_x = -5; + pixel_y = 6 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dqY" = ( +/obj/structure/surface/rack, +/obj/item/maintenance_jack, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) "dsi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"dss" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"dsI" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/varadero/interior/cargo) -"dsC" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dsL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "dtj" = ( /obj/structure/sign/poster/propaganda, /turf/closed/wall, @@ -4925,10 +4120,45 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"dtv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/inaprovaline/skillless{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"dtF" = ( +/obj/structure/prop/broken_arcade, +/turf/open/floor/wood, +/area/varadero/interior/library) "dtH" = ( /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) +"dtK" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/cooler, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/peach, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"duj" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "duw" = ( /obj/effect/decal/cleanable/cobweb2{ pixel_x = 11; @@ -4956,6 +4186,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"duE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"duM" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "duN" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; @@ -4965,58 +4208,91 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"dvw" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"duR" = ( +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 }, -/area/varadero/interior/hall_N) -"dvT" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"dvH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/eastbeach) -"dwN" = ( -/obj/item/tool/wet_sign, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"dvU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/exterior/eastbeach) -"dwP" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/electrical) -"dxn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"dwk" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/wood, +/area/varadero/interior/library) +"dwp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_N) -"dxt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"dwy" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"dwK" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - icon_state = "snow_mat" + icon_state = "warning_s" }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/greencorners/north, +/area/varadero/interior/hall_SE) "dxK" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"dyl" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dxQ" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + dir = 1; + layer = 2.25; + density = 0; + climb_delay = 0 }, -/area/varadero/exterior/lz2_near) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"dye" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"dyn" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) "dyo" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -5031,59 +4307,133 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) +"dyy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"dyG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"dyM" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"dzh" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dzi" = ( +/obj/structure/prop/static_tank/water{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "dzH" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"dzN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 3; - pixel_y = 2 +"dzU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"dAf" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"dAH" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purplefull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/research) -"dBA" = ( -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ - pixel_x = 10 +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"dAW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/vessel) -"dBB" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dBw" = ( +/obj/item/trash/boonie, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"dBy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) -"dCz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 9 +"dCa" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"dCb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dCg" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dCn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"dCD" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/morgue) -"dCE" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/largecrate/random/mini/wooden{ + desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." }, -/area/varadero/interior/comms3) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dDf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"dDg" = ( +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/cargo) "dDn" = ( /obj/item/shard{ icon_state = "large"; @@ -5092,17 +4442,40 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"dDp" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "dDu" = ( /obj/item/tool/wirecutters, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dEo" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"dEp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"dEu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"dEv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"dEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "dEJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -5110,14 +4483,10 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"dFd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) +"dFa" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dFm" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/interior/plastic, @@ -5152,23 +4521,6 @@ icon_state = "pwall" }, /area/space) -"dGR" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"dHD" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "dHY" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -5207,169 +4559,62 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"dID" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"dIL" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"dJx" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"dKi" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"dKN" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/electrical) -"dIK" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"dLy" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) -"dKc" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -9 - }, -/obj/item/ammo_magazine/handful/shotgun/buckshot{ - pixel_x = -13; - pixel_y = 12 - }, -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"dKm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/weapon/gun/rifle/m41a, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"dKy" = ( -/obj/structure/closet/crate/freezer/cooler/oj, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/item/reagent_container/food/drinks/cans/souto/lime, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"dLN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 1 +"dLR" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/area/varadero/interior/medical) -"dLP" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"dNC" = ( /obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/medical) -"dMm" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/rack, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"dNh" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/dirt{ - icon_state = "desert3" + pixel_x = 7; + pixel_y = -6 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"dNt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/north_research) -"dNU" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"dNW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -7 - }, -/obj/item/facepaint/lipstick/jade{ - pixel_x = 5 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"dNT" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/medical) -"dNY" = ( -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"dOh" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"dNZ" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves/central) -"dOk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dOl" = ( /obj/item/prop/colony/used_flare, /turf/open/gm/dirt, @@ -5378,84 +4623,67 @@ /obj/structure/barricade/handrail/wire, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dOS" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"dPn" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/pontoon_beach) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"dPu" = ( +/obj/structure/ladder, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) "dPR" = ( /obj/item/reagent_container/glass/bucket, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"dQe" = ( -/obj/structure/machinery/light{ +"dQh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"dQl" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"dQr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"dQK" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"dQT" = ( -/obj/structure/bed/chair/comfy/teal, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/medical) -"dQV" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"dQj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/green/southeast, /area/varadero/interior/hall_SE) -"dRs" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"dRI" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"dRX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"dQZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"dRd" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/hall_N) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"dRe" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"dRi" = ( +/obj/structure/machinery/light, +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) "dSo" = ( /obj/structure/filingcabinet{ pixel_x = 8; @@ -5473,70 +4701,43 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"dSA" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"dTe" = ( -/obj/item/stack/cable_coil/random, -/turf/open/shuttle{ - icon_state = "floor6" +"dSD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"dSF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) -"dTl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/research) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"dSP" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/clothing/suit/storage/bomber, +/obj/item/storage/belt/marine, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) "dTu" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"dTC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/medical) "dTG" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastocean) -"dTS" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"dUh" = ( -/obj/structure/morgue, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"dUA" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, +"dTY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"dUr" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) "dUS" = ( /obj/structure/bed/chair{ @@ -5546,48 +4747,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"dVq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ +"dVf" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/hall_N) +"dVz" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/maintenance/north) +"dVA" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Library"; - req_one_access = null; - req_access = null - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"dWu" = ( -/obj/structure/surface/rack, -/obj/item/broken_device{ - desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"dWE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"dWH" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 + icon_state = "pipe-c" }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"dWm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"dWn" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"dWI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "dWN" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/faxmachine{ @@ -5612,6 +4802,12 @@ "dXg" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) +"dXs" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "dYd" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -5619,83 +4815,49 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"dYn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +"dYg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "dYp" = ( /obj/item/book/manual/hydroponics_beekeeping, /turf/open/floor/carpet, /area/varadero/interior/library) -"dYy" = ( -/obj/structure/machinery/light{ - dir = 4 +"dYs" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"dYW" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 11 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"dYQ" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/exterior/eastbeach) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "dYX" = ( /obj/structure/machinery/light, -/turf/open/floor/carpet, -/area/varadero/interior/library) -"dYZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/pen/blue{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = -5; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"dZT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"dZZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/tarbacks{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/tool/lighter/zippo{ - icon_off = "blackzippo"; - icon_on = "blackzippoon"; - icon_state = "blackzippo"; - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/ashtray/plastic{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/carpet, +/area/varadero/interior/library) +"eai" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"eam" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "eat" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -5706,12 +4868,6 @@ /obj/item/packageWrap, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"eaQ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "ebi" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, @@ -5727,61 +4883,112 @@ "ebr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves) -"ebF" = ( -/obj/structure/bed/chair{ - dir = 8 +"ebw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ebx" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"ebU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/handcuffs, +/obj/structure/machinery/flasher_button{ + id = "sec_checkpoint"; + pixel_y = 24 }, -/area/varadero/exterior/lz2_near) -"ebJ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "sec_checkpoint_lock"; + name = "Checkpoint Lockdown"; + pixel_y = 36 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +/obj/item/clothing/suit/armor/vest, +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"ecj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"ecu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/varadero/interior/oob) -"ebN" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security"; + req_access_txt = "100" }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"ecx" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/exterior/pontoon_beach) -"ecb" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"ecz" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"ecS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/technical_storage) -"edu" = ( -/turf/open/floor/shiva{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "blue" + name = "\improper Underground Power Substation" + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"edq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"edH" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Hangar Power Substation"; + req_access = null + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"edP" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"efk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"efy" = ( +/turf/closed/wall/rock/brown, +/area/varadero/exterior/eastocean) +"efR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/maintenance) -"edD" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 8; climb_delay = 1; layer = 2.99 }, @@ -5790,123 +4997,61 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"eea" = ( -/obj/vehicle/train/cargo/engine{ - dir = 2 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"eeg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"efw" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"efy" = ( -/turf/closed/wall/rock/brown, -/area/varadero/exterior/eastocean) -"efU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "egj" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"egp" = ( -/obj/structure/window/framed/colony, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/turf/open/floor{ - icon_state = "dark2" - }, +"egz" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) -"egH" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"egJ" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lightstick{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/glass/pressurized_canister, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "egV" = ( /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"eha" = ( +"ehq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"ehw" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ehy" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"ehD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_NW) -"ehH" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"ehE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ehM" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -5941,12 +5086,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"eij" = ( -/obj/structure/bed, -/turf/open/floor/shiva{ - icon_state = "floor3" +"eic" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_N) +"eir" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "eiK" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, @@ -5964,38 +5117,24 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ejK" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) +"ejy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "ejM" = ( /turf/open/gm/coast/north, /area/varadero/exterior/monsoon) -"ejZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"ekp" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/sling, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" +"ekq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"ekD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ekE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6008,58 +5147,93 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"ekO" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"elo" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "elI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastocean) -"elP" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +"elO" = ( +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/area/varadero/exterior/monsoon) -"emC" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel/pict_system, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/area/varadero/interior/maintenance) -"emP" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) -"enu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/administration) +"emd" = ( +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"emh" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"emz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"emA" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/comms2) -"enH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "red" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"enU" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/cargo) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"emN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"emP" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"ene" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"enP" = ( +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "enZ" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) +"eoa" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"eoi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 1; + name = "\improper Underground Security Interrogation Observation"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "eoj" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -6067,23 +5241,58 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) +"eoq" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"eos" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "eov" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"eoB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"eox" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/turf/open/gm/dirt{ - icon_state = "desert3" +/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ + pixel_x = -5; + pixel_y = 17 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "eoV" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"epm" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"epE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "epN" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -6092,46 +5301,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"epO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "epQ" = ( /turf/closed/wall, /area/varadero/interior/morgue) -"epY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"eqe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/toolbox/syndicate{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/reagent_container/food/drinks/sillycup{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"epU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) "eqg" = ( /obj/structure/platform/kutjevo/smooth{ @@ -6141,68 +5318,91 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"eqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"eqB" = ( +"eqi" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"erE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eqq" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" }, -/area/varadero/interior/hall_N) -"erK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"eqs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"eqJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"erf" = ( +/obj/structure/catwalk, +/obj/structure/largecrate/random, +/turf/open/gm/river/desert/deep/no_slowdown, /area/varadero/interior/maintenance/north) +"erB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) "erQ" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"esw" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"erZ" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior_protected/maintenance/south) -"esA" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/white, +/area/varadero/interior/toilets) +"esa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + dir = 1; + name = "LZ1 Pontoon Dock computer" }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_console) +"esg" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"esk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"esr" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/exterior/eastocean) -"esB" = ( -/obj/structure/closet/radiation, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/comms3) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"esC" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/storage/box/flashbangs, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "esK" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -6210,36 +5410,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"esM" = ( -/obj/structure/target/syndicate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"esO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"etf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"etv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "etE" = ( /obj/structure/filingcabinet{ density = 0; @@ -6259,22 +5429,32 @@ /obj/item/stack/sheet/metal, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"euH" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tank/emergency_oxygen, -/turf/open/floor{ +"eue" = ( +/obj/structure/closet/crate/construction, +/obj/item/tool/extinguisher, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"euf" = ( +/obj/structure/prop/souto_land/streamer{ dir = 1; - icon_state = "asteroidfloor" + pixel_y = 24 }, -/area/varadero/exterior/lz1_near) -"euM" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"eul" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"euF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - icon_state = "green" + name = "\improper Underground Security Armory"; + req_access_txt = "100" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "euS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -6283,46 +5463,39 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"evV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"evW" = ( -/obj/item/lightstick/variant/planted, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"evX" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor{ +"evL" = ( +/obj/structure/machinery/light, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"evM" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"evY" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "asteroidfloor" + health = 300 }, -/area/varadero/exterior/lz1_near) -"ewv" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"ewi" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8 }, -/area/varadero/exterior/eastbeach) -"ewS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/holywater, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8 }, -/area/varadero/interior/morgue) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"ewK" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "exj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -6334,24 +5507,28 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"exH" = ( -/obj/item/device/defibrillator, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +"exM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior/medical) -"exX" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"eyj" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/exterior/eastocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eyt" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/east) +"eyC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "eyL" = ( /obj/structure/surface/table, /turf/open/floor/interior/plastic, @@ -6364,64 +5541,38 @@ /obj/item/frame/table, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"ezc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"eze" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ezk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/maintenance) -"ezd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"ezy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"ezt" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"ezx" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/sign/safety/waterhazard, -/obj/structure/sign/safety/water{ - pixel_x = 15 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"ezI" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"ezR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ezU" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -6435,144 +5586,85 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ezW" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ezZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"eAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"eAJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"eBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eAd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, +/turf/open/floor/shiva/snow_mat/west, /area/varadero/interior/maintenance) -"eBm" = ( +"eAn" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; icon_state = "hr_kutjevo"; name = "support struts" }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "eBs" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 }, /area/varadero/interior/records) -"eBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"eBL" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"eBS" = ( -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"eBT" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"eBw" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance/north) +"eBO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "eCg" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"eCj" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"eCp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/dock_control) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"eCr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"eCt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "eCu" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/interior_protected/caves/central) -"eCB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 3; - pixel_y = 15; - indestructible = 1; - unacidable = 1 +"eCx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "eDF" = ( /obj/structure/bed/stool{ icon_state = "stool_alt" @@ -6588,20 +5680,24 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"eDY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +"eEc" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "eEd" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) +"eEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "eEY" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -6611,6 +5707,11 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) +"eFo" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "eFB" = ( /obj/structure/prop/fishing/line/long{ dir = 8 @@ -6618,37 +5719,31 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"eFJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"eFW" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eFQ" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/maintenance/security) -"eGq" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = -4; - pixel_y = -7 +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"eGv" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) -"eGL" = ( -/obj/item/stack/sheet/plasteel{ - amount = 24 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"eGG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "eGP" = ( /obj/structure/closet/cabinet, /obj/effect/spawner/random/powercell, @@ -6671,123 +5766,82 @@ /obj/item/stack/sheet/wood/medium_stack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"eHB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"eIq" = ( +/obj/structure/prop/rock/brown, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/security) -"eIr" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"eIF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_x = -13; + pixel_y = 11 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"eIH" = ( +/obj/effect/landmark/crap_item, +/obj/structure/inflatable/door, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"eIT" = ( +"eIY" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"eIV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"eJI" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/pillbottles{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/packet/bicaridine{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"eJN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"eJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"eKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 3; + pixel_y = 2 }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"eJl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"eKF" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eJq" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -8; + pixel_y = 7 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"eJr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "eKL" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"eLZ" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 +"eLm" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/prop/almayer/comp_open, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eLF" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"eLH" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"eLK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "eMi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -6812,12 +5866,26 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood, /area/varadero/interior/court) -"eMD" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"eMq" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) +"eMx" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/area/varadero/interior/security) +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"eMU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "eNk" = ( /obj/item/toy/sword, /obj/item/clothing/head/pirate, @@ -6835,25 +5903,10 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"eOh" = ( -/obj/structure/machinery/optable, -/obj/item/cpr_dummy{ - dir = 0 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"eOu" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) +"eOd" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) "eOv" = ( /obj/item/circuitboard/airlock, /turf/open/floor/shiva, @@ -6861,90 +5914,88 @@ "eOK" = ( /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"eOZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"ePb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"ePB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"eQa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"ePo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"eQe" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_x = -1; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/server_equipment/laptop/closed{ + pixel_y = 9 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "eQm" = ( /obj/structure/window/framed/wood, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"eQr" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"eQp" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior_protected/maintenance/south) -"eQz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"eQt" = ( +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill{ + pixel_x = 10 }, -/area/varadero/interior/administration) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "eQC" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"eQI" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"eQD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"eQJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"eQY" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 }, -/area/varadero/interior/caves/east) -"eQZ" = ( +/obj/structure/flora/bush/desert{ + pixel_y = 14 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) +"eRm" = ( +/obj/item/book/manual/detective, +/turf/open/floor/wood, +/area/varadero/interior/library) +"eRo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"eRy" = ( +/obj/item/storage/belt/marine/quackers, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"eRC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "eRD" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/carpet, @@ -6955,215 +6006,144 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"eRM" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"eRO" = ( -/obj/structure/prop/souto_land/streamer{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"eRQ" = ( -/obj/item/tool/screwdriver, -/obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"eSg" = ( +"eSP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/medical) -"eSo" = ( -/obj/structure/closet/crate/construction, -/obj/item/tool/extinguisher, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"eTb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Detective's Office"; - req_access_txt = "100" - }, -/turf/open/floor/wood, -/area/varadero/interior/security) -"eTP" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/barricade/handrail/wire, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood, -/area/varadero/interior/court) -"eUh" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"eUr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"eUv" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"eUH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/varadero/interior/hall_SE) -"eVn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"eVH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"eVU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Showers"; + req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"eTb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Detective's Office"; + req_access_txt = "100" }, -/area/varadero/interior/hall_SE) -"eVW" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/turf/open/floor/wood, +/area/varadero/interior/security) +"eTP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 +/obj/structure/barricade/handrail/wire, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/wood, +/area/varadero/interior/court) +"eTX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/exterior/lz1_near) -"eWp" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"eUe" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/largecrate/random, -/turf/open/floor{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "asteroidfloor" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/comms1) -"eWR" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplecorners" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/research) -"eWZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"eUf" = ( +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"eUi" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"eUn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"eUE" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"eUH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/exterior/lz1_near) -"eXg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/carpet, +/area/varadero/interior/hall_SE) +"eVp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/westleft, +/obj/item/tool/stamp{ + pixel_x = 8; + pixel_y = 10 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 5 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/item/tool/pen/blue{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"eVO" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"eWv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick/red{ + pixel_x = 4; + pixel_y = 7 }, -/area/varadero/exterior/pontoon_beach) -"eXr" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/turf/open/floor/shiva{ - icon_state = "purple" +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/research) -"eXw" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - name = "barge float"; - desc = "A supportive lattice connected to two floating pontoons." +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"eWO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"eXD" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"eXI" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"eXL" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "eXN" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -7180,80 +6160,58 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"eYe" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"eYG" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"eYM" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"eZc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"eZk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"fao" = ( -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_y = 19 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"eYT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"eZn" = ( +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_NW) -"faq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +"eZC" = ( +/obj/structure/surface/table, +/obj/item/storage/box/sprays{ + pixel_x = -1; + pixel_y = 3 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"eZH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"eZT" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/hall_N) +"fam" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"fan" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fay" = ( /turf/closed/wall/r_wall, /area/varadero/interior/research) -"faP" = ( -/obj/structure/machinery/light{ +"faT" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/comms3) -"faX" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"faY" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "fbw" = ( /obj/structure/prop/ice_colony/dense/planter_box/hydro{ desc = "A high-power hydroelectric generator."; @@ -7261,6 +6219,21 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"fbD" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"fbN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "fbQ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -7275,18 +6248,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"fbW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein{ - pixel_x = -4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) "fbZ" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/plating, @@ -7296,117 +6257,60 @@ /obj/item/device/camera, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fcg" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "fcp" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"fcC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "fcF" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"fcK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"fdn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = -28 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fcS" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/morgue) +"fdm" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/area/varadero/interior/maintenance/research) -"fdw" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"fem" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, /obj/structure/barricade/handrail/wire{ layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"fdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"fef" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 7; - pixel_y = 13 - }, -/obj/item/implantcase/explosive{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/prop/static_tank{ + pixel_y = 8 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "feH" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"feR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"feV" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) +"feZ" = ( +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ffe" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"ffk" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "ffx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -7414,28 +6318,14 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ffY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"fga" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fge" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "fgW" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -7444,82 +6334,26 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"fhh" = ( -/obj/item/tool/mop{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fhu" = ( -/obj/structure/bed/chair{ - dir = 3 - }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"fhM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"fhV" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fiv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Staff Canteen" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"fhp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/mess) -"fiA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"fjc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "fjg" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/swcaves) -"fjv" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"fjx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) "fjC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -7544,54 +6378,32 @@ }, /turf/open/floor/plating, /area/varadero/interior/cargo) -"fjU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "fkd" = ( /obj/item/toy/beach_ball, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"fkj" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"fky" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fkE" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"fkF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +"fkO" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "fkR" = ( /turf/closed/wall, /area/varadero/interior/court) +"fkV" = ( +/obj/item/moneybag{ + anchored = 1; + desc = "A console designed by the Hunters to assist in flight pathing and navigation."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "overwatch"; + name = "Hunter Flight Console"; + pixel_x = -17 + }, +/obj/structure/bed/chair/hunter{ + dir = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "fla" = ( /obj/structure/machinery/faxmachine, /obj/structure/surface/table/reinforced/prison, @@ -7602,191 +6414,132 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"fly" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "fmu" = ( /obj/structure/barricade/handrail/wire{ layer = 3.5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"fmy" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"fnj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"fnl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"fnq" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"fnF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/westleft, -/obj/item/tool/stamp{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"foo" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/varadero/interior/medical) -"fnX" = ( -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"fof" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - unacidable = 0 - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/obj/item/device/flashlight/slime, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"foz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) -"foE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) -"foF" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"foI" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) +/mob/living/simple_animal/mouse, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "foQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"foU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"fpe" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "wood" +"fpa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"fpo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/library) -"fpf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/white, +/area/varadero/interior/security) +"fpq" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/varadero/exterior/lz2_near) +"fpQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"fpS" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"fpV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/hall_NW) -"fpq" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/varadero/exterior/lz2_near) +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "fpY" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"fqs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ - dir = 4 +"fqo" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fqv" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + unacidable = 0 }, -/area/varadero/interior/maintenance) -"fqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/item/device/flashlight/slime, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"fqz" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/hydro{ + pixel_x = -4; + pixel_y = 7 }, -/area/varadero/interior/security) +/obj/item/reagent_container/spray/hydro{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"frC" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/hall_SE) +"frN" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "frR" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"frS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"fsn" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"fss" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "fsC" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 10; @@ -7796,6 +6549,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fsO" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"fte" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) "ftm" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -7803,6 +6570,12 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ftq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "ftA" = ( /obj/structure/sign/safety/coffee, /obj/structure/sign/safety/galley{ @@ -7810,35 +6583,65 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/research) -"ftF" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"ftQ" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"ftV" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/chunk, +/obj/item/trash/raisins, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"fub" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/tarbacks{ + pixel_x = -7; + pixel_y = 8 }, -/area/varadero/interior/comms3) -"fuh" = ( -/obj/structure/prop/ice_colony/soil_net, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +/obj/item/tool/lighter/zippo{ + icon_off = "blackzippo"; + icon_on = "blackzippoon"; + icon_state = "blackzippo"; + pixel_x = -5; + pixel_y = 7 }, -/area/varadero/interior/maintenance/north) -"fuj" = ( -/obj/structure/safe/floor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ashtray/plastic{ + pixel_x = 6; + pixel_y = -4 }, -/area/varadero/interior_protected/maintenance/south) -"fuF" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"fuA" = ( +/obj/item/stool{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"fuP" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"fuQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/machinery/storm_siren{ pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "fuS" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/disposals) +"fvb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "fvd" = ( /obj/structure/filingcabinet{ density = 0; @@ -7854,15 +6657,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fvw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda/beer{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"fvU" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_SE) "fvV" = ( /obj/structure/largecrate/random/barrel/green, @@ -7874,34 +6675,15 @@ "fwo" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"fxK" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"fxR" = ( -/obj/item/moneybag{ - anchored = 1; - desc = "A console designed by the Hunters to assist in flight pathing and navigation."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "overwatch"; - name = "Hunter Flight Console"; - pixel_x = -17 - }, -/obj/structure/bed/chair/hunter{ - dir = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) +"fwM" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"fwQ" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "fxX" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -7910,15 +6692,19 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"fys" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +"fxZ" = ( +/turf/open/floor/shiva/purple/northwest, +/area/varadero/interior/research) +"fyN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/structure/bed/chair{ + buckling_y = 18; + dir = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "fyP" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -7928,178 +6714,185 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"fyZ" = ( -/mob/living/simple_animal/cat{ - desc = "A domesticated, feline pet. The collar says 'Orion'."; - name = "Orion"; - real_name = "Orion" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) +"fyY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "fzc" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) -"fzx" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fzs" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"fzF" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 }, -/area/varadero/interior/maintenance/north) -"fzy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"fzH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/hall_N) -"fAq" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"fzI" = ( +/obj/structure/disposalpipe/segment, +/obj/item/trash/chunk{ + pixel_x = 3; + pixel_y = 6 }, -/area/varadero/interior/morgue) -"fAs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"fAv" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) +"fAz" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "fAO" = ( /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"fAQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"fBh" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"fBK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"fBM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"fBT" = ( +/obj/item/storage/firstaid/o2{ + layer = 3.1; + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + layer = 3.2; + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "fBV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"fCB" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 1 +"fCm" = ( +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"fCE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/security) +"fCF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"fCX" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"fDb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/structure/machinery/disposal, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/electrical) -"fDB" = ( -/obj/structure/machinery/light{ +"fDn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"fDo" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "fDH" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"fEm" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/drinks/cans/thirteenloko{ - pixel_x = -3; - pixel_y = 14 +"fDU" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_SE) -"fEu" = ( -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/varadero/interior/electrical) -"fEz" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/records) -"fEA" = ( -/obj/structure/girder/displaced, -/obj/structure/machinery/light/small{ +"fEc" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"fEn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"fEI" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access = null; + req_one_access = null }, -/obj/item/clothing/under/CM_uniform, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"fEU" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/storage/belt/medical{ + pixel_x = -3; + pixel_y = 1 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/bunks) -"fER" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"fFm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 3 - }, -/obj/effect/spawner/random/attachment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"fFs" = ( -/obj/structure/machinery/reagentgrinder{ - pixel_y = 7 - }, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/item/stack/sheet/mineral/phoron, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"fFu" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) "fFw" = ( /obj/item/stack/sheet/wood, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"fFx" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"fFy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 9 }, -/area/varadero/interior/electrical) +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "fFH" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -8108,28 +6901,17 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fFI" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"fFK" = ( -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"fFP" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"fFT" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) "fGM" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -8139,152 +6921,95 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"fGN" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/farocean) -"fHf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"fHj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fHk" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"fHs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"fHx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"fIk" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"fJb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"fJI" = ( -/obj/item/clothing/gloves/yautja{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System"; - pixel_y = 24 - }, -/obj/structure/bed/chair/hunter{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"fJR" = ( -/obj/structure/surface/table, -/obj/item/bodybag/cryobag, -/obj/item/storage/box/syringes, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, +"fHy" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) -"fKz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Sample Isolation"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"fLn" = ( -/obj/structure/machinery/door/window/brigdoor/westleft{ - dir = 1; - icon_state = "leftsecure"; - id = "brg" - }, +"fHR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"fIO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"fJx" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"fKs" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"fKu" = ( +/obj/structure/prop/turbine_extras/left, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"fKV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"fLq" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) +"fLK" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fLS" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "fLY" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"fLZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/effect/landmark/crap_item, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"fMq" = ( -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - pixel_x = 5; - pixel_y = -3 +"fMD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"fMG" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -32; + pixel_y = -18; + indestructible = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) "fMI" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"fNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) "fNm" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -8302,127 +7027,91 @@ layer = 2.99 }, /turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"fND" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"fOG" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"fOO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/north) -"fPn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"fPo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/item/storage/fancy/cigar, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) +/area/varadero/exterior/monsoon) +"fNw" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"fNF" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"fOa" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"fOO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/north) "fPp" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_2" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"fPq" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"fPy" = ( -/obj/structure/prop/rock/brown, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +"fPt" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"fPG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/exterior/eastocean) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "fPJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"fPU" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 +"fPK" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/structure/flora/pottedplant{ - desc = "How did that get in there?"; - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"fQr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"fQE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"fPN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"fPX" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tank/emergency_oxygen, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"fQh" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" }, -/area/varadero/interior/mess) +/obj/structure/machinery/light, +/turf/open/floor/shiva/wred/southeast, +/area/varadero/interior/medical) "fQK" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"fQW" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) "fRl" = ( /obj/structure/largecrate/random/case, /obj/item/spacecash/c10{ @@ -8435,107 +7124,104 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"fRw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"fRx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/item/clothing/head/helmet, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"fRV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp{ + icon_state = "stamp-ce" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "fSa" = ( /obj/structure/window_frame/colony, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"fTh" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fSw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"fSX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 }, -/area/varadero/exterior/monsoon) -"fUn" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 }, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"fTY" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "fUs" = ( /obj/structure/machinery/light/small, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"fUF" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "fUJ" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fUY" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"fUZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" +"fVd" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/disposals) -"fVt" = ( -/obj/structure/machinery/door_control{ - id = "colony_sec_armory"; - name = "Colony Secure Armory"; - pixel_y = -26 +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 1; + pixel_y = 5 }, -/area/varadero/interior/security) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "fVw" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"fWa" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "fWd" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/eastocean) -"fWn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"fWr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"fWz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"fWA" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) +"fWj" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/item/reagent_container/food/drinks/cans/souto/lime, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "fWE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -8560,13 +7246,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"fWU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_N) "fWW" = ( /obj/structure/surface/rack, /obj/structure/surface/rack, @@ -8582,16 +7261,6 @@ /obj/item/ashtray/plastic, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"fXu" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/trash/barcardine, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "fXA" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -8611,153 +7280,122 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"fXH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"fXN" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/exterior/lz1_near) -"fXX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 30 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"fXQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/trash/crushed_cup, -/obj/item/trash/c_tube, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/yellow/west, /area/varadero/interior/cargo) -"fYA" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_N) -"fYH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"fYQ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"fYV" = ( -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"fZd" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"fZe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"fZx" = ( -/obj/item/stool{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fYo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 13 }, -/area/varadero/exterior/lz1_near) -"fZB" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/obj/item/paper/janitor{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/prop/structure_lattice{ +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) +"fYr" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"fZg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/exterior/lz1_near) -"fZI" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"fZh" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"fZP" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"fZG" = ( +/obj/item/stack/sheet/plasteel{ + amount = 24 }, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"fZM" = ( +/obj/item/paper/crumpled, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "fZX" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"gan" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"gah" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/varadero/interior/court) -"gar" = ( -/obj/structure/machinery/computer3/powermonitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"gai" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/north, /area/varadero/interior/electrical) -"gaw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"gaz" = ( +/obj/structure/surface/table, +/obj/item/trash/plate{ + desc = "For all your soapy needs."; + icon_state = "tray"; + name = "soap dish"; + pixel_x = 4; + pixel_y = 10 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 3; + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +/obj/item/tool/soap/weyland_yutani{ + pixel_x = 2; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) +/obj/item/tool/soap/weyland_yutani{ + desc = "Teetering at the brink! A life's thread, about to be cut short."; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) "gaG" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"gaJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gaK" = ( +/obj/structure/machinery/door/window/northright{ + name = "Disposals Chute" }, -/area/varadero/interior/caves/east) +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"gaT" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "gbE" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -8767,20 +7405,30 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) -"gbG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1; - icon_state = "chair" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +"gcb" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"gcu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gcA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "gcB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gcC" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "gcF" = ( /obj/structure/prop/wooden_cross{ desc = "A grave to a fishing buddy, long gone" @@ -8790,15 +7438,25 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gcK" = ( -/obj/structure/bed/chair{ - dir = 4 +"gdg" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"gdE" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"gdI" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "gdJ" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -8818,9 +7476,37 @@ }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"gdL" = ( +/obj/structure/catwalk, +/obj/structure/platform{ + layer = 2.15; + density = 0; + climb_delay = 0 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"gdN" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"ged" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "geo" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) +"gey" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "geK" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -8857,74 +7543,10 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gfg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"gfj" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "gfk" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gfp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"gfr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/tool/stamp{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/box/masks{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"gfs" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"gfu" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "gfA" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -8935,12 +7557,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gfG" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "ggk" = ( /turf/closed/wall/r_wall/elevator{ dir = 8 @@ -8957,31 +7573,11 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"gha" = ( -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"ghb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ghs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"ghE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ghI" = ( /obj/structure/catwalk, /obj/structure/barricade/handrail/wire{ @@ -8992,88 +7588,22 @@ "ghN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/monsoon) -"ghW" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz2_near) -"gia" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +"ghX" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "giN" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"gja" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"gjs" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"gjw" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"gjy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"gjz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"giO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) "gjC" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gka" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) "gkb" = ( /obj/structure/closet/secure_closet/personal, /obj/item/storage/pouch/shotgun/large, @@ -9082,100 +7612,72 @@ /obj/item/storage/large_holster/m39/full, /turf/open/floor/wood, /area/varadero/interior/security) -"gkw" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) "gkF" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/maintenance) -"gkG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"gkL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"gkS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"gms" = ( -/obj/effect/landmark/good_item, -/turf/open/shuttle{ - icon_state = "floor6" +"glp" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_x = -2; + pixel_y = -3 }, -/area/varadero/interior_protected/vessel) -"gmK" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/area/varadero/interior/security) -"gmT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"glw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"glO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) -"gnm" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"gnx" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/obj/structure/surface/table, +/obj/item/paper/janitor{ + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "green" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"gna" = ( +/obj/structure/machinery/door_control{ + id = "undergroundhangarsouth"; + name = "South Dock Door"; + pixel_x = -24; + indestructible = 1 }, -/area/varadero/interior/hall_N) -"gnC" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -9; - pixel_y = 7 +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"gnp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/device/flashlight/lamp/candelabra{ + pixel_x = -6; + pixel_y = 22 }, -/area/varadero/exterior/lz1_near) -"gnZ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/red/north, +/area/varadero/interior/administration) +"gnK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance/north) "god" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -9196,45 +7698,71 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"gpJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"goF" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"goQ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/area/varadero/exterior/farocean) +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"gpl" = ( +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"gpS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"gqg" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"gqA" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) "gqE" = ( /obj/structure/bed/sofa/pews/flipped{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"gqN" = ( -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"gqX" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) +"gqJ" = ( +/turf/open/floor/plating/icefloor/warnplate/west, +/area/varadero/interior/cargo) +"grn" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "grG" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) +"grM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"grP" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "grT" = ( /obj/structure/sign/safety/water, /turf/closed/wall/r_wall, @@ -9243,13 +7771,15 @@ /obj/structure/prop/rock/brown, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"gsq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" +"gsn" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/varadero/interior/administration) +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) "gsC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/beachcorner/south_west, @@ -9276,99 +7806,61 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gtv" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"gun" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"gsV" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "\improper Theta-V Research Laboratory Director's Office"; + req_access = null; + req_one_access = null }, +/turf/open/floor/shiva/north, /area/varadero/interior/research) +"gtO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"gtR" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "gux" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"guE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"guG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/hall_SE) +"guR" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"gva" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"gvg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "gvo" = ( /obj/item/ore/diamond, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"gvE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"gvF" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/administration) -"gvM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/maintenance/north) -"gvR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"gwt" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"gwB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"gwC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) +"gvv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"gwv" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/shiva/wred/northeast, +/area/varadero/interior/medical) "gwD" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -9377,19 +7869,10 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"gwG" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"gwO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) +"gwX" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -9398,16 +7881,31 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"gxM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "gxQ" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"gxX" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"gya" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "gyw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9417,32 +7915,35 @@ "gyz" = ( /turf/closed/wall/mineral/gold, /area/varadero/interior/maintenance) +"gyB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/security) "gyE" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gyQ" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -1; + pixel_y = 12 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"gyU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "gyX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/security) -"gze" = ( -/obj/structure/surface/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette/ucigarette{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "gzm" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -9452,50 +7953,81 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gAl" = ( -/obj/structure/bed/chair{ - dir = 4 +"gzr" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) -"gAK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"gzG" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"gzH" = ( +/obj/structure/bed/chair/hunter{ dir = 4 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"gAa" = ( +/turf/open/floor/shiva/wred/west, +/area/varadero/interior/medical) +"gAJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"gAL" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"gBa" = ( +/obj/structure/surface/table, +/obj/item/trash/chips{ + pixel_x = 2; + pixel_y = 8 }, -/area/varadero/interior_protected/maintenance/south) -"gBi" = ( -/obj/item/stool{ - icon_state = "stool_alt" +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"gBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) -"gBM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"gBs" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) +"gBA" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/maintenance/north) "gBP" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -9510,13 +8042,9 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) -"gBV" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) +"gBT" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "gBW" = ( /obj/item/stack/sandbags_empty/half, /turf/open/auto_turf/sand_white/layer1, @@ -9526,14 +8054,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gCi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) +"gCy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "gCQ" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -9560,111 +8084,177 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"gDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"gDp" = ( +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "gDr" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"gDt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "gDI" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gEy" = ( -/obj/structure/machinery/light, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" +"gDJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/area/varadero/interior/research) -"gEz" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/storage/box/donkpockets{ + pixel_x = 5 }, -/area/varadero/interior/medical) -"gEO" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3{ - pixel_y = -3 +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -2; + pixel_y = 18 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"gDV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"gEe" = ( +/obj/structure/window/framed/colony/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"gEm" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gEo" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "gEP" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"gFt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"gFi" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"gFw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "gFx" = ( /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"gFA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/gm/dirt{ - icon_state = "desert1" +"gFy" = ( +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_y = 19 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) "gFH" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"gFW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/administration) "gFY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gHH" = ( -/obj/structure/machinery/light{ - dir = 4 +"gGg" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"gHa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"gHd" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"gHp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"gHx" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"gHG" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_SE) -"gIB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "greenfull" + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"gHT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = -10; + pixel_y = 4 }, +/turf/open/floor/shiva/multi_tiles/north, /area/varadero/interior/hall_SE) -"gJs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"gIo" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"gIp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"gIv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) +"gIZ" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"gJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"gJq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "gJy" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -9675,68 +8265,56 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"gKn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" +"gKl" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + name = "barge float"; + desc = "A supportive lattice connected to two floating pontoons." }, -/area/varadero/interior/court) -"gKs" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"gKy" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/oob) -"gKw" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"gKD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"gKU" = ( +/obj/structure/prop/almayer/computers/sensor_computer1{ + name = "computer" }, -/area/varadero/interior/cargo) -"gLo" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) +"gLa" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"gLd" = ( +/obj/structure/machinery/computer/cameras{ + pixel_y = 6 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/surface/table, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/hall_N) "gLw" = ( /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"gLS" = ( +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "gLV" = ( /obj/structure/closet/crate, /obj/item/tool/lighter, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"gMi" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"gMm" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/maintenance/south) "gMp" = ( /obj/structure/surface/table, /obj/item/paper_bin{ @@ -9746,40 +8324,30 @@ /obj/item/tool/pen/red/clicky, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"gMV" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) "gNb" = ( /obj/structure/closet/wardrobe/chaplain_black, /turf/open/floor/wood, /area/varadero/interior/chapel) -"gNe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) +"gNy" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) "gNE" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"gOe" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +"gNG" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"gOf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/records) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "gOj" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, @@ -9788,27 +8356,46 @@ /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"gPi" = ( -/turf/open/gm/coast/west, -/area/varadero/exterior/monsoon) -"gPA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"gOr" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"gOJ" = ( +/obj/structure/prop/static_tank/fuel{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"gOW" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/interior/maintenance) -"gPE" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"gPa" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 6; + pixel_y = 9 }, -/area/varadero/interior_protected/caves/central) -"gPG" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gPi" = ( +/turf/open/gm/coast/west, +/area/varadero/exterior/monsoon) +"gPI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "gPL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -9823,29 +8410,53 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"gPY" = ( -/obj/structure/surface/table, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"gPN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/mess) -"gPZ" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gQi" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gQr" = ( +/obj/structure/barricade/handrail/wire{ dir = 4 }, +/obj/structure/closet/crate/trashcart{ + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"gQs" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"gRc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"gRf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/administration) +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "gRj" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -9853,23 +8464,18 @@ /obj/item/grown/log, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"gRN" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/bedsheet{ - anchored = 1; - desc = "A console used by the Hunters for navigation purposes."; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Hunter Nav Console" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"gRU" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/area/varadero/interior_protected/vessel) -"gRS" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/caves/digsite) +"gSm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/camera, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"gSO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -9877,50 +8483,72 @@ req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"gSQ" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"gTe" = ( +/turf/open/floor/plating, +/area/varadero/interior_protected/caves/digsite) +"gTC" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, +/area/varadero/interior/disposals) +"gTE" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior/security) -"gRU" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/digsite) -"gSn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sign/safety/waterhazard, +/obj/structure/sign/safety/water{ + pixel_x = 15 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"gTU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/varadero/interior/maintenance) -"gSC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"gTY" = ( +/obj/item/paper, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"gUd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/maintenance) -"gSY" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -6; - pixel_y = -3 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"gUv" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table, +/obj/item/device/cassette_tape/pop2{ + pixel_x = 5; + pixel_y = 11 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/device/cassette_tape/pop3{ + pixel_y = 7 }, -/area/varadero/exterior/lz1_near) -"gTe" = ( -/turf/open/floor/plating, -/area/varadero/interior_protected/caves/digsite) -"gTC" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/disposals) +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "gUP" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -9933,19 +8561,18 @@ /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"gVv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) "gVO" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/pontoon_beach) -"gVP" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/lz2_near) "gWd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -9956,14 +8583,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"gWu" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) "gWA" = ( /obj/structure/filingcabinet{ pixel_x = -8; @@ -9999,71 +8618,53 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"gXh" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"gXN" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"gXO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"gYg" = ( -/obj/item/toy/beach_ball/holoball, +"gXH" = ( /obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"gXX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "gYh" = ( /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"gZq" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"hay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 5 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = -2; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"gYq" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"gZs" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"gZz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/security) -"haC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"gZJ" = ( +/obj/structure/prop/souto_land/pole, +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 24 }, -/turf/open/floor/shiva{ - icon_state = "wred" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"gZR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"hav" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) "haP" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms1) @@ -10071,70 +8672,23 @@ /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/pontoon_beach) -"haT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"haX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"hbi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"hbD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"hbP" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"hca" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"hcz" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"hbf" = ( +/turf/open/floor/white, +/area/varadero/interior/toilets) +"hbV" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) +"hcC" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "hcI" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -10145,133 +8699,101 @@ "hds" = ( /turf/open/gm/coast/north, /area/varadero/exterior/eastocean) -"hdV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"hdy" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hdz" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"heb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms2) +/turf/open/floor/white, +/area/varadero/interior/toilets) "hej" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hek" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"hen" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"heu" = ( -/obj/item/device/flashlight/lamp/tripod, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"hfo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"hfR" = ( -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"hfX" = ( -/obj/structure/machinery/door/window/brigdoor/eastleft{ - name = "Sample Isolation" - }, +"hfG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hga" = ( +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"hhI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/research) -"hfZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"hgc" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"hgB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "hhM" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/north_research) -"hhW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp{ - icon_state = "stamp-ce" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) -"hic" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"hil" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) -"hiD" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/mess) +/turf/open/floor/white, +/area/varadero/interior/toilets) "hiE" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hjf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 +"hiS" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/stack/cable_coil/pink{ + pixel_x = -7; + pixel_y = -4 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hjb" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hjm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/clothing/mask/cigarette/weed{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/structure/machinery/light, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "hjn" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -10281,6 +8803,12 @@ /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"hjH" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "hjK" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ @@ -10295,6 +8823,22 @@ }, /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/farocean) +"hjZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"hkl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"hkE" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "hkQ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, @@ -10317,20 +8861,9 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) +"hlf" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "hlw" = ( /obj/effect/landmark/survivor_spawner, /obj/structure/bed/chair/comfy/beige{ @@ -10338,19 +8871,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hlG" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) "hlK" = ( /obj/structure/surface/table/woodentable, /obj/item/storage/box/drinkingglasses{ @@ -10367,6 +8887,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) +"hlQ" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "hmg" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -10374,129 +8902,125 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"hmh" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/lz2_near) -"hmm" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table, -/obj/item/device/cassette_tape/pop2{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"hmz" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/administration) "hmR" = ( /obj/item/tool/crowbar, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"hmW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"hng" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "hni" = ( /obj/structure/sign/safety/fire_haz{ pixel_y = 7 }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"hnR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) "hoC" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"hoG" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) +"hoE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/hall_SE) +"hoJ" = ( +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "hoP" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating, -/area/varadero/interior/maintenance) -"hoU" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"hrc" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"hre" = ( -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) -"hrG" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating, +/area/varadero/interior/maintenance) +"hoX" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"hpb" = ( +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"hpj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/hall_N) -"hrI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"hpv" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior/hall_SE) -"hsa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/security) +"hpT" = ( +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"hpW" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz2_near) -"hsl" = ( -/turf/open/floor{ +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"hqe" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/monsoon) +"hqv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "asteroidfloor" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/maintenance) +"hqW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"hqZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"hre" = ( +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) +"hrv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/technical_storage) "hso" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -10507,12 +9031,6 @@ /obj/structure/sign/safety/high_voltage, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) -"hsF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "hte" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/vessel) @@ -10527,38 +9045,34 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"htj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "hto" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"huf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"hus" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"hux" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"hts" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/research) -"huy" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) +"hul" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "asteroidfloor" + pixel_y = -24 }, -/area/varadero/exterior/lz1_near) +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "huE" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -10568,127 +9082,123 @@ "huF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/oob) -"hvh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"huQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"hvO" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hvM" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/area/varadero/interior/hall_N) -"hwa" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) +"hwe" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/maintenance) -"hwE" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"hwr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"hwy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "hwL" = ( /obj/structure/prop/dam/crane, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hwN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hwM" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"hwW" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/technical_storage) -"hwZ" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"hxO" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/demo_scanner{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/storage/fancy/vials/random{ + pixel_y = 5 }, -/area/varadero/interior/electrical) -"hxa" = ( -/obj/structure/closet/secure_closet/security, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/item/clothing/glasses/science{ + pixel_y = 9 }, +/turf/open/floor/shiva/bluefull/west, /area/varadero/interior/administration) -"hyd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"hyg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/tool/crowbar, -/turf/open/floor/shiva{ +/obj/item/clothing/under/shorts/grey, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"hyF" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "snow_mat" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) -"hyp" = ( -/obj/structure/machinery/computer/prisoner, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"hyI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/security) -"hyr" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"hyL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = 7; + pixel_y = 5 }, -/area/varadero/interior/maintenance/north) -"hys" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/trash/plate{ + pixel_x = -6 }, -/area/varadero/interior/hall_SE) -"hyQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -7; + pixel_y = 8 }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) +"hyR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "hyT" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers{ icon_state = "ywflowers_4" }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"hza" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"hzm" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) "hzx" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"hzG" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "hzK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -10701,6 +9211,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"hzN" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"hAc" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz2_near) "hAg" = ( /obj/structure/largecrate/random/case/double, /turf/open/gm/dirt, @@ -10709,21 +9226,57 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/wood, /area/varadero/interior/court) -"hAI" = ( +"hAr" = ( +/obj/item/weapon/gun/smg/nailgun{ + pixel_y = 3 + }, +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple/northeast, +/area/varadero/interior/research) +"hAt" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"hAw" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"hBN" = ( /obj/structure/platform_decoration/kutjevo{ - dir = 8 + dir = 4 + }, +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"hBX" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" +"hCb" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"hCj" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/area/varadero/interior/research) +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/varadero/interior/bunks) "hCw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -10737,26 +9290,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"hCZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"hDk" = ( -/obj/structure/bedsheetbin, -/obj/item/storage/box/attachments{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) +"hCS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"hDr" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "hDw" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -10765,18 +9307,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hDA" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) -"hDX" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hDT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "hDY" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "windsock"; @@ -10785,19 +9323,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"hEv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/eastocean) -"hEN" = ( -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) +"hEn" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/disposals) +"hEw" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) "hET" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -10806,49 +9338,69 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hFE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"hFb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"hFp" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hFr" = ( +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/hall_N) -"hGz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"hFP" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/area/varadero/interior/medical) +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/maintenance/security) +"hHe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "hHn" = ( /obj/effect/landmark/hunter_secondary, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hHE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"hHp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + pixel_y = 5 }, -/area/varadero/interior/electrical) -"hHK" = ( -/obj/structure/machinery/bot/mulebot, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hHJ" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt"; + pixel_x = 3; + pixel_y = 17 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "hHR" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -10860,16 +9412,33 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/security) -"hJl" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"hHY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/structure/closet/crate/ammo/alt, +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"hIt" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"hIA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"hIK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"hJg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "hJq" = ( /obj/structure/bed/chair{ dir = 4 @@ -10887,64 +9456,59 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"hJx" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "hJB" = ( /obj/structure/blocker/fog, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"hJO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"hKe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, +"hJF" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hJJ" = ( +/turf/open/floor/shiva/green/northeast, /area/varadero/interior/hall_N) +"hKr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"hKJ" = ( +/obj/structure/catwalk, +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "hKK" = ( /turf/open/gm/coast/west, /area/varadero/exterior/pontoon_beach) -"hLE" = ( -/obj/structure/pipes/vents/pump{ +"hKU" = ( +/obj/structure/catwalk, +/obj/structure/filtration/flacculation_arm{ + density = 0; + layer = 2.1 + }, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"hLi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, +/turf/open/floor/shiva/red/east, /area/varadero/interior/medical) -"hLF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"hLs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/technical_storage) "hLI" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable/fancy, @@ -10952,31 +9516,6 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood, /area/varadero/interior/administration) -"hMg" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"hMh" = ( -/obj/structure/filingcabinet, -/obj/item/paper/research_notes, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"hMC" = ( -/obj/item/clothing/ears/earmuffs{ - layer = 3.1; - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) "hMG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10992,30 +9531,18 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastbeach) -"hMV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/medical) "hNb" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"hNc" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +"hNn" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -3; + pixel_y = 14 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) "hNq" = ( /obj/structure/platform/kutjevo/smooth{ @@ -11031,16 +9558,18 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"hOp" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) +"hNO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"hNR" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"hNT" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "hOv" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -11053,11 +9582,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"hPd" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"hOF" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/area/varadero/interior/bunks) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "hPj" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/security) @@ -11065,80 +9596,95 @@ /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"hPD" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"hPy" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -8; + pixel_y = 15 }, -/area/varadero/interior/court) -"hPF" = ( -/obj/item/paper/crumpled, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 7; + pixel_y = 15 }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"hPM" = ( +/obj/item/storage/firstaid, +/turf/open/floor/shiva/north, /area/varadero/interior/morgue) -"hQb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"hQl" = ( -/obj/structure/girder, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"hQo" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) +"hPT" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/medical) +"hQx" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"hQC" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) "hQP" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"hQV" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 +"hSh" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"hSn" = ( +/obj/structure/machinery/flasher{ + id = "sec_checkpoint"; + name = "Checkpoint Flash"; + pixel_x = -32; + pixel_y = 32 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"hSu" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"hSA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"hSD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"hTq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"hRs" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; - dir = 4; - name = "plasma power generator" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"hTt" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = -3 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 6 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"hTv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"hTA" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "hTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11148,85 +9694,42 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) -"hTX" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"hTZ" = ( -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/prop/server_equipment/laptop/closed{ - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"hUp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"hUs" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"hUx" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"hTQ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "hUU" = ( /obj/structure/machinery/requests_console{ icon_state = "req_comp_open" }, /turf/closed/wall, /area/varadero/interior/cargo) -"hUY" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"hVL" = ( -/obj/item/stack/sandbags/large_stack{ - pixel_y = 4; - pixel_x = -12 - }, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz2_near) +"hVm" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"hVo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "hWv" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"hWA" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/fork, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) +"hWV" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"hXa" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "hXe" = ( /obj/structure/surface/table, /obj/item/tool/kitchen/knife{ @@ -11240,58 +9743,49 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"hXq" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"hXn" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior_protected/caves/digsite) -"hXv" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"hXE" = ( +/obj/structure/computer3frame, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "hXR" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"hYp" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/maintenance) -"hZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"hYm" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt" }, -/area/varadero/interior/medical) -"hZD" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"hYA" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/security) +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "hZE" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/coast/north, /area/varadero/exterior/lz1_near) -"iad" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"iah" = ( -/obj/item/tool/pickaxe, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) +"hZG" = ( +/obj/structure/closet/coffin, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) +"hZV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) "ias" = ( /obj/structure/machinery/camera/autoname/lz_camera, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -11311,12 +9805,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iaM" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "iaO" = ( /turf/closed/wall/r_wall/elevator{ dir = 9 @@ -11326,47 +9814,35 @@ /obj/structure/largecrate/random/barrel, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"ibi" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"ibo" = ( -/obj/structure/prop/broken_arcade, -/turf/open/floor{ - icon_state = "wood" +"ibd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/library) +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"ibe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"ibk" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) "ibs" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iby" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"ibP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 +"ibT" = ( +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = -5; + pixel_y = -9 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ibV" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, @@ -11399,76 +9875,97 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"icn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"icT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/turf/open/floor/shiva{ +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"ico" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"icM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_NW) -"idn" = ( -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 + climb_delay = 1; + layer = 2.99 }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"idb" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/clothing/head/uppcap/peaked, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) "idw" = ( /turf/open/floor/wood, /area/varadero/interior/security) -"iet" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "wood" +"idS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/administration) +"iek" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/hypospray/tricordrazine{ + pixel_x = -14; + pixel_y = 2 }, -/area/varadero/interior/library) -"ieu" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) +"iev" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_NW) +"iex" = ( +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = 9; + pixel_y = 15 + }, +/obj/structure/closet/secure_closet/personal{ + density = 0; + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"ifp" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"ifv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "snow_mat" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"ifB" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/comms4) +/obj/structure/platform_decoration/kutjevo, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"ifE" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "ifO" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/ice_colony/dense/planter_box/hydro{ @@ -11477,6 +9974,48 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/farocean) +"iga" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"igd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"igg" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"igk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/glass/paint/black{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/tool/wirecutters/clippers, +/obj/item/reagent_container/food/drinks/h_chocolate{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/technical_storage) +"igm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "igB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -11491,54 +10030,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"igQ" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"igU" = ( -/obj/item/roller{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/surface/table, -/obj/item/roller{ - pixel_x = 4; - pixel_y = 14 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"ihn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"iht" = ( -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ihC" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"igP" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/varadero/exterior/monsoon) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ihX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -11554,128 +10053,126 @@ "ihY" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"iig" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"iir" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/kepler, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"iiX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Secure Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"iit" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"ijs" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/caphat{ + pixel_x = 2; + pixel_y = 9 }, -/area/varadero/interior/technical_storage) +/obj/item/clothing/head/cmcap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"ijG" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "ijO" = ( /obj/structure/holostool, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"iks" = ( -/obj/item/tool/shovel/spade, -/turf/open/gm/dirt, +"ijT" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"ijU" = ( +/obj/structure/largecrate/random/mini, +/turf/open/floor/asteroidfloor/north, /area/varadero/interior/maintenance/north) -"ilQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +"ijW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"ikq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/administration) -"ilZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Armory"; - req_access_txt = "100" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"iks" = ( +/obj/item/tool/shovel/spade, +/turf/open/gm/dirt, +/area/varadero/interior/maintenance/north) +"ikv" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"imd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/area/varadero/interior/hall_N) -"imk" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/maintenance) +"ilD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/exterior/farocean) -"imu" = ( -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"ilN" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"ilO" = ( +/obj/structure/prop/rock/brown{ + layer = 2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/area/varadero/interior/maintenance/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/vessel) +"imn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "imz" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/records) -"inj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"inN" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"imE" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) -"inV" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/shard{ - icon_state = "medium" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"imQ" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"ink" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"inX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "ioc" = ( /obj/structure/surface/table/woodentable, /obj/item/evidencebag, @@ -11690,13 +10187,58 @@ /obj/structure/closet/medical_wall, /turf/closed/wall, /area/varadero/interior/medical) -"ioA" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ +"ios" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ioD" = ( +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "green" + pixel_x = -24 }, -/area/varadero/interior/hall_SE) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/taperecorder, +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"ioE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"ioJ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"ioU" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"ioW" = ( +/obj/item/stool{ + icon_state = "stool_alt" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "ipi" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -11708,118 +10250,95 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"ipl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ipA" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "ipC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"ipZ" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/gm/dirt, -/area/varadero/exterior/lz1_near) -"iqv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"iqU" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"iqW" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - name = "Incendiary Ammunition Order"; - desc = "An order manifest for incendiary ammo that has yet to be filled out." + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"ipZ" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/security) +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) "ira" = ( /obj/item/frame/apc, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"irj" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redcorners" +"irF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/security) -"irk" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor{ +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"irR" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"irw" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "blue" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/technical_storage) -"isK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = -6; - pixel_y = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"irX" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_x = 7; - pixel_y = 3 +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"isr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"isJ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 16; + pixel_y = 16 }, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"isR" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"isW" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "itb" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/administration) -"itL" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"itr" = ( +/obj/structure/largecrate/random/case/double{ + anchored = 1 }, -/area/varadero/exterior/farocean) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "itP" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 @@ -11843,92 +10362,50 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"itZ" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -8; - pixel_y = 7 +"iuz" = ( +/obj/structure/closet/secure_closet/security_empty, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"iuF" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"iuR" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iuW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior/cargo) +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "ivo" = ( /obj/structure/airlock_assembly, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ivD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"ivO" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"ivX" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) "iwf" = ( /mob/living/simple_animal/mouse, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"iwV" = ( -/obj/structure/inflatable, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"ixd" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"ixh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/vp78, -/obj/item/weapon/gun/pistol/vp78{ - pixel_y = -4 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) +"iwv" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"iwG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/white, +/area/varadero/interior/toilets) "ixl" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"ixq" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) "ixr" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) @@ -11938,16 +10415,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"ixB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"ixJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) "ixQ" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"iyd" = ( -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) "iyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11965,29 +10444,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"izl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"izs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) +"iyF" = ( +/turf/open/floor/asteroidwarning/north, +/area/varadero/exterior/lz1_near) "izy" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -11995,55 +10454,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"izB" = ( -/obj/item/stool{ - pixel_x = 7; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"izP" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"iAa" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" +"izz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/toilets) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"izM" = ( +/obj/structure/bed/chair/hunter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "iAc" = ( /obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"iAp" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) -"iAx" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "iAE" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_west, @@ -12058,26 +10484,38 @@ "iAX" = ( /turf/open/floor/carpet, /area/varadero/interior/administration) -"iBz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ +"iBi" = ( +/obj/structure/closet/crate/secure, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"iBA" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "green" + icon_state = "chair_alt" }, -/area/varadero/interior/mess) -"iCy" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iBC" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/swcaves) +"iBR" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"iBZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iDa" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 4 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "iDM" = ( /obj/structure/machinery/bot/medbot{ name = "FOXYBOT 3000"; @@ -12094,19 +10532,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"iEl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iEF" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "iFb" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves/central) -"iFc" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -7; - pixel_y = -11; - desc = "A chest... filled with the wildest riches!" - }, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/lz2_near) "iFm" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/guestpass{ @@ -12114,66 +10558,69 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"iFy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape{ - pixel_x = -7; - pixel_y = 8 +"iFQ" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/gm/dirt, +/area/varadero/interior_protected/caves/digsite) +"iFT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 9 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"iGb" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "purplefull" + pixel_x = 3 }, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"iFK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"iFQ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/gm/dirt, -/area/varadero/interior_protected/caves/digsite) -"iFZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"iGi" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"iGk" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/paper/research_notes/grant/high{ + pixel_x = -2; + pixel_y = -2 }, -/area/varadero/interior/maintenance/security) -"iGM" = ( -/obj/effect/decal/cleanable/cobweb{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"iGr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"iGT" = ( +/obj/item/device/defibrillator, +/obj/structure/surface/table, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"iHh" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/maintenance/north) +"iHk" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) "iHE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"iHN" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/eastocean) "iIc" = ( /obj/item/device/flashlight/slime{ mouse_opacity = 0; @@ -12187,81 +10634,63 @@ /obj/structure/filingcabinet/chestdrawer, /turf/open/floor/wood, /area/varadero/interior/records) -"iIC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"iIx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"iIE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/encryptionkey/dutch, +/obj/item/device/encryptionkey/dutch{ + pixel_x = -6 }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/device/encryptionkey/dutch{ + pixel_x = 8; + pixel_y = 3 }, -/area/varadero/interior/electrical) -"iIL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/item/book/manual/marine_law{ + pixel_x = 8 }, -/area/varadero/interior/security) -"iIW" = ( -/obj/structure/surface/table, -/obj/item/storage/box/cups{ - pixel_x = 6; - pixel_y = 6 +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -5; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ - pixel_x = -6; - pixel_y = 10 +/obj/item/restraint/handcuffs{ + pixel_x = 2; + pixel_y = 16 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "iIY" = ( /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"iJa" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"iJk" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ +"iJp" = ( +/obj/effect/landmark/good_item, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"iJA" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ dir = 8; - icon_state = "green" + layer = 2.991 }, -/area/varadero/interior/mess) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "iJD" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"iKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"iLc" = ( -/obj/structure/surface/table/woodentable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"iKK" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "iLd" = ( /obj/structure/window/reinforced{ dir = 4; @@ -12291,69 +10720,54 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iLz" = ( -/obj/structure/machinery/r_n_d/destructive_analyzer, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"iLD" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating, -/area/varadero/interior/mess) -"iMc" = ( -/obj/structure/surface/rack, -/obj/item/clipboard, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"iMp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"iMM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"iNh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"iLh" = ( +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 5; + pixel_y = -3 }, -/area/varadero/interior/hall_SE) -"iNr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"iLj" = ( +/obj/structure/girder, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"iLp" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/security) -"iNE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +/turf/open/floor/wood, +/area/varadero/interior/library) +"iLs" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"iLw" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"iLD" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating, /area/varadero/interior/mess) +"iNH" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/research) "iOi" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -12361,6 +10775,17 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"iOp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"iOv" = ( +/obj/item/reagent_container/food/snacks/fishfingers{ + pixel_y = 7 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "iOQ" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, @@ -12378,153 +10803,102 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"iPH" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"iPI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"iQl" = ( -/obj/item/storage/firstaid, -/turf/open/floor/shiva{ - dir = 1 +"iQi" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"iQw" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/morgue) -"iQr" = ( -/turf/open/floor{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"iRr" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"iQs" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/chunk{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 5 + climb_delay = 1; + layer = 2.99 }, -/obj/structure/surface/table, -/turf/open/floor{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"iQS" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"iRw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva, -/area/varadero/interior/technical_storage) -"iRR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"iRZ" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"iSi" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"iSz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"iSC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/item/clothing/suit/storage/marine/veteran/dutch{ - layer = 3.1 +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"iRw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/clothing/under/gimmick/dutch, -/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ - pixel_y = 8 +/turf/open/floor/shiva, +/area/varadero/interior/technical_storage) +"iRC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior_protected/vessel) -"iSO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -4; - pixel_y = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"iRH" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"iSe" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/item/storage/bible/booze{ - pixel_x = 10; - pixel_y = 2 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/firealarm{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = -24 + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"iSs" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/turf/open/floor/shiva{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"iSv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - icon_state = "red" + name = "\improper Underground Medical Laboratory"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/morgue) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "iSW" = ( /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"iTd" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"iTo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/morgue) -"iTF" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"iTG" = ( +/obj/structure/reagent_dispensers/beerkeg/alt_dark, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "iTP" = ( /obj/structure/filingcabinet{ density = 0; @@ -12545,79 +10919,54 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"iUx" = ( -/obj/structure/machinery/constructable_frame, -/obj/structure/machinery/light{ - dir = 8 +"iTY" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"iUR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"iUH" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_y = 2 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "iUZ" = ( /obj/structure/ore_box, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"iVt" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"iVD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"iWf" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +"iVh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/medical) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "iWj" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"iWK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) +"iWz" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves/central) "iWX" = ( /obj/structure/machinery/floodlight{ name = "Floodlight" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"iXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "iXy" = ( /obj/item/tool/warning_cone, /obj/structure/prop/invuln/lattice_prop{ @@ -12627,85 +10976,50 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"iXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"iXX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"iYb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -10; - pixel_y = 15 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) "iYi" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/records) -"iZj" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"iZx" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "cargobay"; - name = "Cargo Bay Lock"; - pixel_y = 20 +"iYx" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) +"iYP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"iZa" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"iZu" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + desc = "A high-power hydroelectric generator."; + name = "hydroelectric generator" }, -/area/varadero/interior/cargo) -"iZH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"iZM" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"iZO" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -9; + pixel_y = 12 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "iZP" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -12714,83 +11028,77 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"iZT" = ( -/obj/structure/machinery/power/apc{ +"iZS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 8; - pixel_x = -24; - start_charge = 0 + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/maintenance) -"jaF" = ( -/turf/open/gm/coast/east, -/area/varadero/exterior/pontoon_beach) -"jbh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"iZY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"jag" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/paper/research_notes, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, +/turf/open/floor/shiva/blue/northwest, /area/varadero/interior/administration) -"jbR" = ( -/obj/item/device/flashlight/lamp/tripod{ - pixel_x = 7; - pixel_y = 18 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +"jah" = ( +/obj/item/device/flashlight, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"jaF" = ( +/turf/open/gm/coast/east, +/area/varadero/exterior/pontoon_beach) "jcr" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/swcaves) -"jcz" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"jcB" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"jcC" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"jcw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "jcT" = ( /turf/closed/wall, /area/varadero/interior/maintenance) -"jcY" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jcU" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "jdm" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"jds" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/sosjerky, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "jdu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -12805,52 +11113,27 @@ }, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) +"jdV" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "jek" = ( /turf/open/gm/coast/west, /area/varadero/exterior/eastocean) -"jeo" = ( -/obj/item/tool/mop, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jew" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"jep" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "jeO" = ( /obj/structure/machinery/conveyor, /obj/structure/plasticflaps, /turf/open/floor/plating, /area/varadero/interior/cargo) -"jeT" = ( -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - dir = 1; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/caves/digsite) "jeW" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, @@ -12873,72 +11156,25 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"jfw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"jfD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jgw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/beaker/ethanol{ - desc = "The beaker stares at you lecherously. Its contents... irresistible."; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"jgL" = ( -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"jgQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +"jfB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/wredfull, /area/varadero/interior/medical) +"jfC" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"jfG" = ( +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"jgs" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "jgV" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jgY" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/records) -"jhe" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) "jhu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -12952,65 +11188,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"jhv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"jhK" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"jhL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"jhM" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/lz1_near) -"jhW" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"jif" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"jhO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/obj/item/device/flashlight, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"jjg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"jhS" = ( +/obj/structure/bedsheetbin, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"jiI" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) "jjj" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -13019,80 +11217,51 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jjl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +"jjp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"jjq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/turf/open/floor/wood, -/area/varadero/interior/records) +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "jju" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jjE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"jkU" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"jlf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/cargo) +"jlC" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"jlU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/security) -"jjN" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/interior/maintenance/north) -"jjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/maintenance/north) -"jjZ" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"jks" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"jlt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/administration) "jmb" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -13106,27 +11275,24 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jnq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" +"jmf" = ( +/obj/structure/pipes/binary/passive_gate, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"jmO" = ( +/turf/open/floor/darkgreencorners2/west, +/area/varadero/interior/hall_SE) +"jno" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3{ + pixel_y = -3 }, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"jnJ" = ( +/turf/open/floor/shiva/purple/northeast, /area/varadero/interior/research) -"jnA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "joe" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" @@ -13138,13 +11304,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"joN" = ( -/obj/item/trash/candle, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +"jom" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/chapel) +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"joz" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/white, +/area/varadero/interior/security) "joO" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/structure/cable/heavyduty{ @@ -13152,55 +11332,58 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"joS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "joV" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"joY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"jpa" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/records) "jpm" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/plating, -/area/varadero/interior/cargo) -"jps" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/c_tube, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/plating, +/area/varadero/interior/cargo) +"jpp" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"jpC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "jpD" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/caves) -"jpM" = ( -/obj/effect/decal/warning_stripes/asteroid{ +"jpW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"jpZ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" + name = "\improper Theta-V Research Laboratory"; + req_access_txt = "100" }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "jqd" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -13209,19 +11392,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"jqr" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "jqu" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/shiva, @@ -13230,22 +11400,22 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"jqJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"jqK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/shiva{ - icon_state = "redfull" +"jqF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/redfull, /area/varadero/interior/medical) +"jqM" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/varadero/exterior/lz1_near) +"jqZ" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) "jrq" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -13259,146 +11429,106 @@ /obj/structure/prop/invuln/overhead_pipe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"jsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jry" = ( +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/area/varadero/interior/security) -"jsh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"jsc" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_N) +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"jso" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "jsx" = ( /obj/item/prop/almayer/comp_open, /obj/structure/surface/table, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"jsC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/bible{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "jsG" = ( /obj/structure/surface/rack, /obj/item/device/flashlight, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jsO" = ( -/obj/structure/machinery/light{ +"jtC" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"jum" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"juW" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/comms3) +"jva" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"jts" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"jtx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 9 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"jty" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/hall_N) -"jtH" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"jtI" = ( +"jvk" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/donut_box{ - pixel_y = 9 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"jtU" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"jub" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; - icon = 'icons/turf/walls/hunter.dmi'; - icon_state = "globe"; - name = "Hunter Globe"; - pixel_y = 16 - }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = -6; + pixel_y = 4 }, -/area/varadero/interior_protected/vessel) -"juL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"jvH" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"jwd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/mess) -"juW" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/comms3) -"jvh" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/records) +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "jwf" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"jwy" = ( +/obj/item/clothing/ears/earmuffs{ + layer = 3.1; + pixel_x = 2; + pixel_y = 18 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"jwV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/shiva/yellowcorners/west, +/area/varadero/interior/cargo) "jwX" = ( /obj/structure/largecrate/random, /turf/open/gm/dirt, @@ -13410,109 +11540,80 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jxi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"jyq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"jyw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/item/clothing/mask/cigarette/cigar{ - desc = "Manufactured in New Space Cuba, a product of Castro LTD."; - name = "comically large cigar"; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"jzq" = ( +"jym" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/pontoon_beach) +"jyB" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"jzB" = ( +"jyE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jzd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, /obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 + dir = 4; + pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) +"jzo" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz2_near) -"jzL" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) "jzZ" = ( /turf/open/floor/carpet, /area/varadero/interior/library) -"jAx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"jAE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "jAI" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"jBl" = ( -/obj/structure/machinery/light{ +"jAK" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank/water{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"jBp" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"jBe" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) "jBw" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 4; @@ -13520,81 +11621,57 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"jCr" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) "jCs" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"jCA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Technical Storage"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"jCE" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ +"jCx" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"jCN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"jDe" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"jDO" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"jDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) +"jCy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"jDm" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"jDq" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"jDv" = ( +/obj/item/card/id/silver{ + pixel_x = 3; + pixel_y = 4 }, -/obj/structure/noticeboard{ - pixel_y = 32 +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"jDy" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"jDz" = ( +/obj/structure/machinery/smartfridge, +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/mess) +"jDI" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 6; + pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/item/stack/tile/plasteel{ + pixel_x = -4; + pixel_y = 9 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) "jEv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -13614,98 +11691,70 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"jEZ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"jFo" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"jFh" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/wy_chips_pepper, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/reagent_container/food/snacks/wrapped/chunk{ + pixel_x = 4; + pixel_y = 13 }, -/area/varadero/interior/cargo) +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "jFt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jFL" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/monsoon) -"jGk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"jFO" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_2" }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/medical) -"jGm" = ( -/obj/structure/machinery/storm_siren{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"jFU" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"jGz" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"jGA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_x = -14; + pixel_y = 13 }, -/area/varadero/interior/maintenance/research) -"jGT" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"jGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"jGX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/disposals) "jHb" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"jHI" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) "jHJ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/toolbox/mechanical{ @@ -13718,40 +11767,31 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"jIo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -11; - pixel_y = 16 - }, -/obj/item/clothing/mask/cigarette/weed{ - pixel_x = -9; - pixel_y = 13 +"jHW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "jJn" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"jJp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"jJx" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"jJB" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "jJC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -13761,43 +11801,32 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"jJX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 1; - name = "\improper Underground Security Interrogation Observation"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"jKs" = ( +"jJI" = ( /obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" + dir = 8 }, -/area/varadero/exterior/lz2_near) -"jKz" = ( -/obj/structure/machinery/holosign/surgery{ - id = "otice" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Underground Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"jJR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva{ +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "snow_mat" + pixel_x = 24 }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) +"jKj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) "jKK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13828,57 +11857,69 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"jLS" = ( -/obj/structure/platform_decoration/kutjevo{ +"jLn" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"jLw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/plating/warnplate/northeast, +/area/varadero/interior/disposals) +"jLQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/exterior/pontoon_beach) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "jLU" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"jMq" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.01 +"jNf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"jNj" = ( +/obj/structure/closet/crate/construction, +/obj/item/storage/belt/utility/full, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"jNk" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 8; + pixel_y = -6 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"jMr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"jNb" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "jNn" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"jNz" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "jNE" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"jNS" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "wred" - }, -/area/varadero/interior/medical) "jNT" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/woodentable, @@ -13896,51 +11937,43 @@ /obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jOR" = ( -/obj/structure/closet/secure_closet/security_empty, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"jPe" = ( +"jOA" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"jOD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/paper/janitor{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"jPh" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"jOT" = ( /obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ +/obj/item/clothing/under/shorts/red{ pixel_x = -2; - pixel_y = -3 - }, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 + pixel_y = -4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, -/area/varadero/interior/comms1) -"jPC" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"jPu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"jPw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"jPD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) "jPM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13953,27 +11986,10 @@ "jQa" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"jQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) +"jQd" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "jQB" = ( /obj/structure/surface/table/woodentable, /obj/item/clipboard, @@ -13984,195 +12000,190 @@ /obj/item/tool/pen/blue, /turf/open/floor/wood, /area/varadero/interior/security) -"jQG" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced, -/obj/item/clothing/head/fedora, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"jQM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"jRu" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 9 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"jSP" = ( +"jQW" = ( /obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"jRc" = ( +/obj/item/prop/alien/hugger, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"jSv" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/structure/machinery/light, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "jSX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) -"jTi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) "jTj" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"jTL" = ( -/turf/open/floor{ - icon_state = "bcircuit" +"jTE" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "jTR" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/monsoon) +"jUd" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"jUk" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_N) +"jUw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "jUB" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/snacks/wrapped/barcardine, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"jUM" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "white" +"jVA" = ( +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) +"jVN" = ( +/obj/structure/surface/rack, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/varadero/interior/security) -"jUY" = ( -/obj/structure/bed/chair/hunter, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior_protected/vessel) -"jVl" = ( -/turf/open/floor/shiva{ - dir = 1 +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"jVP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_N) -"jVK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table, +/obj/item/weapon/gun/flamer, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"jVR" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"jXn" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"jWt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"jWw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"jWU" = ( +/obj/structure/xenoautopsy/tank/broken, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"jXj" = ( +/obj/item/tool/soap, +/turf/open/floor/white, +/area/varadero/interior/security) "jXp" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"jYl" = ( +"jXI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"jXX" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/varadero/interior/administration) -"jYs" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"jYh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/storage/large_holster/katana/full, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"jYX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - layer = 2.99; - pixel_x = 4; - pixel_y = 4 + pixel_x = 24 }, -/obj/item/device/camera{ - pixel_x = -5; - pixel_y = 9 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"jYA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp70, +/obj/item/weapon/gun/pistol/vp70{ + pixel_y = -2 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"jYS" = ( +/turf/open/floor/asteroidwarning/southeast, +/area/varadero/exterior/lz1_near) "jYZ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/swcaves) -"jZw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"jZh" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"jZm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"jZp" = ( +/obj/structure/prop/ice_colony/soil_net, +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"jZA" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"jZE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red/southwest, /area/varadero/interior/security) "jZG" = ( /obj/structure/window/reinforced{ @@ -14196,123 +12207,85 @@ /obj/item/clothing/suit/storage/bomber/alt, /turf/open/floor/wood, /area/varadero/interior/bunks) -"jZO" = ( -/obj/structure/pipes/vents/pump{ +"jZI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"kap" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) -"kaY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/inaprovaline/skillless{ - pixel_x = 7; - pixel_y = 9 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"kao" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -4; - pixel_y = 8 +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/cargo) +"kaK" = ( +/obj/structure/xenoautopsy/tank, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"kbH" = ( +/obj/structure/machinery/holosign_switch{ + id = "otice"; + pixel_y = -24 }, -/area/varadero/interior/administration) -"kbp" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "kbQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"kca" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "kcn" = ( /obj/item/stack/sandbags_empty/full, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"kcE" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kco" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior_protected/maintenance/south) -"kdf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"kcz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"kcW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "kdq" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"kdV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" - }, -/area/varadero/interior/maintenance/north) -"keE" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) -"keN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"kep" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/cargo) +"keO" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"keQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/arrivals, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/records) "keY" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, @@ -14323,27 +12296,45 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kfj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"kff" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"kfn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"kfD" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/area/varadero/interior/medical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "kfG" = ( /turf/closed/wall, /area/varadero/interior/caves/east) -"kfJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 3 +"kfR" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 }, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"kfV" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "kgm" = ( /obj/effect/vehicle_spawner/van/decrepit, /turf/open/gm/coast/north, @@ -14351,6 +12342,14 @@ "kgp" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/lz2_near) +"kgu" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "kgw" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, @@ -14358,84 +12357,24 @@ "kgA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/eastbeach) -"kgC" = ( -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"khb" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"khB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ +"kgG" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/eastocean) +"kgO" = ( +/obj/structure/bed/chair{ + buckling_y = 18; dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"kif" = ( -/obj/structure/ladder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/farocean) -"kin" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"kiE" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = 18 }, -/area/varadero/interior/maintenance) -"kiG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/white, +/area/varadero/interior/laundry) +"khQ" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/item/clothing/under/CM_uniform, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"kjp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) "kjr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -14444,11 +12383,18 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"kjI" = ( -/turf/open/shuttle{ - icon_state = "floor6" +"kjC" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"kjL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "kjN" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, @@ -14469,137 +12415,64 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kkw" = ( -/obj/effect/landmark/crap_item, -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "kkF" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/farocean) -"kli" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"klu" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"klP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/item/storage/belt/medical{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"kla" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/bunks) -"klT" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/research) -"klY" = ( -/obj/item/cell/high, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/maintenance/north) -"kmb" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"klD" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"kmo" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"kmu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"kmI" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/central) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"klT" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/research) "kmW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/interior_protected/caves/central) -"knN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"knb" = ( +/obj/structure/filingcabinet, +/obj/item/paper/research_notes, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"knk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"knV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/oob) -"knP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"koI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_x = 6; + pixel_y = 11 }, -/area/varadero/interior/maintenance/research) -"kof" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/item/device/reagent_scanner{ + pixel_x = -7 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"koW" = ( +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "koZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -14608,30 +12481,40 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/pontoon_beach) -"kpN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"kqe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"kpm" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"kpz" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"kpJ" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"kqc" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"kqi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "kqs" = ( /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"kqy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = -28 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "kqA" = ( /obj/structure/window/framed/colony, /turf/open/floor/wood, @@ -14640,18 +12523,6 @@ /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"kqQ" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"krl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) "krL" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green, @@ -14661,14 +12532,9 @@ /obj/item/paper, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"krP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) +"krR" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "ksf" = ( /obj/structure/machinery/light{ dir = 4 @@ -14679,13 +12545,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"ksn" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) "ksu" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -14699,42 +12558,34 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"ksQ" = ( +/obj/structure/bed/chair{ + dir = 1; + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) "ksX" = ( /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"ktN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"kul" = ( -/obj/item/pizzabox/meat{ - pixel_x = -5; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"kus" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ +"ktd" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ktq" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "greenfull" + icon_state = "pipe-j2" }, -/area/varadero/interior/hall_SE) -"kuE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"ktK" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "kuO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -14742,28 +12593,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"kuX" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"kvx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"kvz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) "kvC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" @@ -14777,45 +12606,41 @@ }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"kvQ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kvS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kvX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/exterior/comms4) -"kwB" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kwc" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_y = 7 }, -/area/varadero/interior/hall_NW) +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/item/stack/sheet/mineral/phoron, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "kxe" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/interior_protected/caves/central) -"kxU" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" +"kxH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"kxQ" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/comms2) +/obj/item/stack/sheet/metal, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "kxW" = ( /obj/structure/window/reinforced{ dir = 4; @@ -14843,17 +12668,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kyh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"kxX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/medical) +/obj/structure/closet/radiation, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "kyj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/south_west, @@ -14861,18 +12683,6 @@ "kyp" = ( /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"kyr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "kyz" = ( /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, @@ -14884,46 +12694,51 @@ "kyG" = ( /turf/closed/wall, /area/varadero/interior/disposals) -"kyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"kyL" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) "kyP" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"kzo" = ( -/obj/structure/bed/chair{ - dir = 8 +"kyX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"kzj" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "kzp" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, /obj/item/tool/weldingtool, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"kzy" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kzA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"kzD" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "kzE" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/bottle/holywater, @@ -14933,21 +12748,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"kzJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"kAl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) "kAm" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/wood, @@ -14966,6 +12766,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"kAT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) +"kBf" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "kBo" = ( /obj/structure/surface/table/woodentable, /obj/structure/pipes/standard/simple/hidden/green{ @@ -14985,87 +12797,45 @@ "kBZ" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance/security) -"kCb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/metal/med_small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"kCy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"kCA" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"kCT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Underground Security Lobby"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"kDd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"kCd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/disposals) +"kCv" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = -18; + pixel_y = -8 }, -/area/varadero/interior/electrical) -"kDh" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + pixel_x = -17; + pixel_y = -19 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"kCR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) "kDk" = ( /obj/item/tool/screwdriver, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kDF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"kDH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"kDm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"kEo" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"kEy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/beakers, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/shiva/multi_tiles/southeast, /area/varadero/interior/medical) "kEB" = ( /obj/structure/surface/table/woodentable, @@ -15076,44 +12846,13 @@ /obj/item/m_gift, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kEK" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"kEV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"kFn" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz2_near) -"kFH" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/device/flashlight/flare, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"kFT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) +"kFw" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"kFF" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "kFV" = ( /obj/structure/largecrate/random/mini/med{ layer = 3.01; @@ -15122,61 +12861,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"kGo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/medical) "kGq" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"kGB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"kGD" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/pontoon_beach) -"kGF" = ( -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/tool/pen/blue{ - pixel_x = 7 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flash, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) +"kGH" = ( +/obj/structure/closet/radiation, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "kGJ" = ( /turf/open/gm/coast/east, /area/varadero/exterior/eastocean) @@ -15184,6 +12877,9 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_NW) +"kHN" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) "kIb" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -15207,46 +12903,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"kIz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"kIm" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"kIJ" = ( -/turf/open/floor{ - dir = 10; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"kIK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"kIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kIo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"kJa" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/administration) +"kJB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kKk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "kKS" = ( /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) @@ -15263,155 +12951,106 @@ /obj/item/paper_bin, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"kLd" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/administration) -"kLA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"kLF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz2_near) -"kMf" = ( -/obj/structure/window/framed/colony/reinforced/tinted, -/turf/open/floor/plating, -/area/varadero/interior/security) -"kMi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"kMy" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kME" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kMN" = ( -/obj/structure/machinery/flasher{ - id = "sec_checkpoint"; - name = "Checkpoint Flash"; - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "redcorners" - }, -/area/varadero/interior/security) -"kMU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"kNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Toilet Unit" - }, -/turf/open/floor/plating, -/area/varadero/interior/toilets) -"kNe" = ( -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 14 - }, -/obj/item/tool/mop{ - pixel_x = -10; +"kLe" = ( +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"kLk" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -3; pixel_y = 11 }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"kNN" = ( -/obj/structure/machinery/light/small{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"kLC" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"kOS" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -13; + pixel_y = 16 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 6 }, -/area/varadero/interior/electrical) -"kPj" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/item/reagent_container/food/snacks/xenoburger{ + pixel_x = 5; + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"kLF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz2_near) +"kMf" = ( +/obj/structure/window/framed/colony/reinforced/tinted, +/turf/open/floor/plating, +/area/varadero/interior/security) +"kMV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/area/varadero/interior/mess) -"kPX" = ( -/obj/structure/surface/table, -/obj/item/toy/deck/uno{ - pixel_x = -4; - pixel_y = 6 +/obj/item/stock_parts/matter_bin/super{ + pixel_x = -8; + pixel_y = 3 }, -/obj/item/trash/eat{ - pixel_x = 10; - pixel_y = 10 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"kNa" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Toilet Unit" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/plating, +/area/varadero/interior/toilets) +"kNj" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"kOA" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"kPc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"kPm" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"kPo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"kPM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "kPZ" = ( /obj/structure/surface/rack, /obj/item/tool/weldpack, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"kQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"kQk" = ( +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"kQt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "kQy" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15424,41 +13063,34 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kRp" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kQB" = ( +/obj/structure/prop/structure_lattice{ + dir = 1; + health = 300 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "kRH" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz1_near) -"kRU" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 15; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"kSb" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = "brg" }, -/area/varadero/exterior/comms4) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "kSd" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -15467,61 +13099,19 @@ /obj/structure/curtain/shower, /turf/open/floor/interior/plastic, /area/varadero/interior/laundry) -"kSz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"kSD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) -"kSF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"kSN" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"kSR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"kTp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"kTo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "kTs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15532,43 +13122,40 @@ /obj/item/tool/pickaxe/silver, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"kTD" = ( -/obj/structure/machinery/computer/cameras{ - pixel_y = 6 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"kTG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/varadero/interior/medical) -"kTI" = ( -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) "kUj" = ( /obj/item/m_gift, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"kVp" = ( -/turf/open/floor/shiva{ +"kUo" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"kUE" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"kUL" = ( +/obj/structure/pipes/unary/freezer{ + dir = 8; + icon_state = "freezer_1" + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"kUS" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; - icon_state = "yellow" + icon_state = "planter_box_soil" }, -/area/varadero/interior/cargo) +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/technical_storage) "kVq" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -15576,15 +13163,12 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) -"kVE" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kVB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access_txt = "102" }, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) "kVL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -15599,128 +13183,54 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"kWf" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "kWB" = ( /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"kWR" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/interior/maintenance/north) -"kWZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"kXr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior/maintenance) -"kXn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) -"kXA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"kXC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"kXP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1 +"kXJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "kXQ" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"kXZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"kYn" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"kYF" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"kYM" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"kYN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"kZe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"kZg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/hall_NW) -"kZl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"kZn" = ( -/obj/structure/surface/table, -/obj/item/tool/kitchen/utensil/knife, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"kXS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"kYf" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"kYs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/varadero/interior/mess) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"kYA" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) "laa" = ( /obj/structure/bed/chair{ dir = 1; @@ -15728,49 +13238,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lab" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"lat" = ( -/obj/item/device/camera, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"laN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"laC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/barricade/handrail/wire{ +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"laO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"laR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/comms4) -"lbr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/hall_N) -"lbK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"lbh" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lbu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"lbx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"lbI" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "lbX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -15779,164 +13291,98 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"lch" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) "lci" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastocean) -"ldr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"lcw" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"lcR" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"lcW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Underground Lavatory"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "ldw" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"ldJ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"leF" = ( -/obj/structure/machinery/optable{ - desc = "This maybe could be used for advanced medical procedures."; - name = "Exam Table" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"leG" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"leI" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "purple" - }, -/area/varadero/interior/research) -"leO" = ( +"ldD" = ( +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"leo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table, -/obj/item/weapon/gun/flamer, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"leP" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"leU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"lgb" = ( -/obj/structure/bedsheetbin, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"lgP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"lhm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/obj/item/device/flashlight/lamp/candelabra{ +/obj/item/paper_bin{ pixel_x = -6; - pixel_y = 22 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" + pixel_y = 6 }, -/area/varadero/interior/administration) -"lhn" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - dir = 1; - layer = 2.25; - density = 0; - climb_delay = 0 +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"lfk" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"lfo" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/technical_storage) +"lfC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"lfN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"lgm" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/maintenance/north) -"lhB" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"lgM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"lhr" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"lhx" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "lhJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -15946,6 +13392,12 @@ }, /turf/open/floor/plating, /area/varadero/interior/records) +"lim" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "liq" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -15962,134 +13414,146 @@ /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"liM" = ( -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +"liT" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/north) -"ljt" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/caves/north_research) -"ljx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"liX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"ljd" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"lje" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"ljn" = ( +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"ljJ" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) +"ljL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) "lkH" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"lkI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"llj" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"lmd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"lms" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Engine Room" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"lmu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"lld" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"lln" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/prison/chapel_carpet{ +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"llM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"llP" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "doubleside" + icon_state = "pipe-c" }, -/area/varadero/interior/chapel) -"lmS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"llR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"llS" = ( +/obj/structure/window_frame/colony/reinforced, +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"lnc" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"lnx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/area/varadero/exterior/pontoon_beach) -"lnw" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"lnB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"lnG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" + pixel_y = 7 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "lnO" = ( /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"loh" = ( -/obj/structure/surface/rack, -/obj/item/weapon/sword/katana, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lnU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance/north) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"loj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "loA" = ( /obj/structure/prop/structure_lattice{ dir = 1; @@ -16108,33 +13572,29 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior_protected/maintenance/south) -"loQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"loW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"lpp" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"lpz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = 3; + pixel_y = 17 }, -/area/varadero/interior/research) -"lpv" = ( -/turf/open/floor{ - icon_state = "white" +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 }, -/area/varadero/interior/laundry) -"lpJ" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/barricade/handrail/wire, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"lpO" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "lqa" = ( /obj/item/tool/warning_cone{ pixel_x = -11 @@ -16144,6 +13604,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"lqf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "lqF" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -16160,55 +13626,62 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lrp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/arcturian_ace{ - pixel_x = -5; - pixel_y = 5 +"lrs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"lrG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Theta-V Breakroom"; + req_one_access = null; + req_access = null }, -/area/varadero/interior/administration) -"lrR" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"lrM" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/exterior/eastbeach) -"lss" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"lso" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"lsv" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"lsF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Sports Center" }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"lsM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Disposals"; + req_access_txt = "100" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) "lsN" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"lsT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "lsU" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"ltA" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/records) "ltB" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -16216,44 +13689,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"ltI" = ( +"ltC" = ( /obj/structure/surface/table, -/obj/item/paper, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/paper/research_notes/grant/high{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"ltW" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"lum" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"lun" = ( -/obj/item/device/mass_spectrometer, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"lur" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"ltX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/electrical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "luu" = ( /obj/item/tool/warning_cone{ pixel_x = -20 @@ -16263,24 +13711,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"luz" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) +"luv" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"lux" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "luC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -16294,65 +13730,65 @@ /obj/item/clothing/accessory/storage/black_vest/brown_vest, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"lvt" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" +"lvd" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"lvY" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"lwm" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"lvG" = ( -/obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"lvS" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper Research Chamber" - }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) -"lvV" = ( -/obj/structure/window/reinforced{ - dir = 1 +/turf/open/floor/plating/bare_catwalk, +/area/varadero/exterior/farocean) +"lwp" = ( +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) +"lwy" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/obj/structure/closet/firecloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lwT" = ( +/obj/structure/surface/rack, /obj/structure/window/reinforced{ - dir = 4 + dir = 4; + health = 80 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"lxf" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/disposals) -"lwm" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/floor/plating/bare_catwalk, -/area/varadero/exterior/farocean) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "lxi" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -16361,119 +13797,100 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) -"lxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"lxs" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"lxy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - icon_state = "red" +"lxt" = ( +/obj/item/tool/wrench{ + pixel_x = -1; + pixel_y = -2 }, -/area/varadero/interior/security) -"lxT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/obj/item/stock_parts/matter_bin/super{ - pixel_x = -8; +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"lxA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; pixel_y = 3 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/mirror{ + pixel_x = -32 }, -/area/varadero/interior/medical) -"lyp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"lyn" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"lyw" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "red" + pixel_x = 3 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "lyP" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/comms4) -"lze" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"lzu" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) +"lzb" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/ammo_magazine/rifle, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"lzp" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) "lzD" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"lzP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) "lzT" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"lzX" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -24; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "warnplate" +"lAH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 7 }, -/area/varadero/interior/maintenance/north) -"lAk" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"lBm" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"lBf" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"lBw" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"lBp" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 1 }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"lBU" = ( +/obj/structure/machinery/r_n_d/circuit_imprinter, +/turf/open/floor/shiva/purple/west, /area/varadero/interior/research) -"lCK" = ( +"lCt" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"lCC" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"lCF" = ( /obj/structure/prop/structure_lattice{ dir = 1; health = 300 @@ -16487,78 +13904,45 @@ icon_state = "vent4"; pixel_y = 25 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"lDh" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"lDk" = ( -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"lDm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"lDr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"lCN" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) "lDF" = ( /turf/closed/wall/rock/brown, /area/varadero/interior_protected/caves/digsite) -"lDN" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"lDS" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/iv_drip, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"lEc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"lDY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lEd" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) -"lEw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"lEg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"lEp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lED" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "lEM" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/toolbox, @@ -16581,21 +13965,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"lFl" = ( -/turf/open/floor/plating/icefloor{ - dir = 8; - icon_state = "warnplate" - }, -/area/varadero/interior/cargo) -"lFr" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "lFA" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -16603,54 +13972,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lFE" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"lFI" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"lFS" = ( +"lGh" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"lFT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "lGp" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/medical) @@ -16658,6 +13983,18 @@ /obj/structure/largecrate/random, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) +"lGM" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/trash/barcardine, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"lGO" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "lGT" = ( /obj/structure/barricade/handrail/wire{ dir = 4; @@ -16668,56 +14005,28 @@ }, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"lHH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"lId" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"lIo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"lHL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lHP" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_SE) -"lIE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - dir = 1; - name = "LZ1 Pontoon Dock computer" - }, -/turf/open/floor{ +"lIh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"lIq" = ( +/obj/structure/barricade/handrail/wire{ dir = 8; - icon_state = "asteroidwarning" + layer = 3.5 }, -/area/varadero/exterior/lz1_console) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "lIO" = ( /obj/structure/prop/ice_colony/tiger_rug{ icon_state = "White"; @@ -16725,102 +14034,76 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"lKS" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"lKV" = ( -/obj/structure/disposalpipe/segment{ +"lIT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"lLe" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/shiva/north, /area/varadero/interior/research) -"lLq" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +"lJs" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/area/varadero/interior/technical_storage) -"lLZ" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lKl" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/hall_N) -"lMb" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"lKT" = ( +/turf/open/floor/shiva/wred/east, +/area/varadero/interior/medical) +"lLl" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"lLm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"lLr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/area/varadero/interior_protected/caves) -"lMl" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"lLK" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"lMq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/obj/effect/spawner/random/supply_kit, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"lMv" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"lMw" = ( +/obj/structure/machinery/holosign/surgery{ + id = "otice" }, -/area/varadero/interior/hall_SE) -"lMB" = ( -/turf/open/floor{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) -"lMD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"lMP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" + name = "Underground Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"lMH" = ( +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"lMS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellowcorners/west, /area/varadero/interior/cargo) "lNb" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"lNj" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "lNw" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/prop/server_equipment/laptop/closed{ @@ -16836,49 +14119,55 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"lNX" = ( -/obj/structure/machinery/light{ +"lOE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"lOc" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"lPi" = ( +/obj/structure/machinery/door/window/brigdoor/westleft{ dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "leftsecure"; + id = "brg" }, -/area/varadero/interior_protected/maintenance/south) -"lPj" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"lPx" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"lPC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"lPK" = ( +/obj/item/device/camera{ + pixel_x = -4; + pixel_y = 9 }, -/area/varadero/interior/oob) -"lPq" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/obj/item/evidencebag{ + pixel_x = 13; + pixel_y = 5 }, -/area/varadero/interior/morgue) +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"lPX" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"lQc" = ( +/obj/structure/lz_sign/new_varadero, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "lQg" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -16892,79 +14181,53 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lQA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"lQO" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" - }, -/area/varadero/interior/mess) -"lQW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"lRy" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/machine/batteryrack, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) -"lRz" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"lQy" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"lRU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"lRQ" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/turf/open/floor/shiva{ - icon_state = "purplecorners" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/research) -"lSg" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"lSl" = ( +/obj/structure/prop/static_tank{ + pixel_y = 8 }, -/area/varadero/interior/cargo) +/obj/structure/barricade/handrail/wire{ + layer = 3.01 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "lSG" = ( /obj/structure/curtain/shower, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"lTb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/varadero/interior/court) +"lSN" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"lSU" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "lTg" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"lTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) "lTv" = ( /obj/item/tool/warning_cone{ pixel_x = -13; @@ -16975,50 +14238,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lTR" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"lUe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"lUG" = ( +"lTK" = ( /obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"lUT" = ( -/obj/structure/machinery/smartfridge, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/varadero/interior/mess) -"lVa" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/interior/comms1) -"lVc" = ( +"lUo" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) "lVf" = ( /obj/item/tool/warning_cone{ pixel_x = -9 @@ -17028,13 +14256,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"lVP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"lVz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/metal/med_small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"lVK" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "lVQ" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/grass/grass1/weedable, @@ -17062,43 +14297,50 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"lWa" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "lWf" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lWh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"lWo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"lWB" = ( +"lWg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"lWs" = ( +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"lWz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "lWJ" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -17106,50 +14348,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"lXc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 +"lXA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 10 }, -/obj/structure/surface/table, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -1; - pixel_y = 3 +/obj/item/storage/toolbox/syndicate{ + pixel_x = -5; + pixel_y = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = 7; + pixel_y = -7 }, -/area/varadero/interior/technical_storage) -"lXT" = ( -/obj/structure/plasticflaps/mining, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"lXG" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"lYi" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "lYo" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -17157,17 +14390,22 @@ "lYr" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"lYD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lYE" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "lYF" = ( /obj/structure/largecrate/random/case, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) +"lYT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/hall_SE) "lZa" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -17177,16 +14415,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"lZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) +"lZg" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/cargo) "lZh" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -17199,47 +14430,42 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"lZR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"lZS" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "lZU" = ( /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/security) -"map" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"maE" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"maT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"mau" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) -"maN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/medical) -"maQ" = ( -/turf/open/floor/shiva{ - icon_state = "red" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 }, -/area/varadero/interior/administration) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "mbf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/bottle/pwine{ @@ -17256,75 +14482,46 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"mbt" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"mbu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"mbo" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"mca" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/tool/stamp, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +"mbx" = ( +/obj/item/weapon/harpoon/yautja{ + anchored = 1; + name = "Alien Harpoon"; + pixel_x = 6 }, -/area/varadero/interior/security) -"mcp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/showcase{ + color = "#95948B"; + desc = "A grey statue dawned in ancient armor, it stares into your soul."; + dir = 1; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Eternal guardian" }, -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/item/clothing/suit/armor/yautja_flavor{ + anchored = 1 }, -/area/varadero/exterior/eastbeach) -"mcr" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/caves/digsite) +"mbG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"mcs" = ( -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) +"mci" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"mcx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"mcA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "mcB" = ( /obj/structure/platform_decoration/kutjevo, /obj/item/lightstick/red/spoke/planted{ @@ -17335,6 +14532,11 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"mcH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/frame/light_fixture, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "mcN" = ( /obj/structure/coatrack{ pixel_x = 14; @@ -17351,115 +14553,100 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"mdg" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz2_near) -"mdj" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mdy" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"mdM" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) "mdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/maintenance/south) -"mey" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"mex" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/administration) "meS" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) +"meW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "mfa" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"mfu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"mfO" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -9 + }, +/obj/item/ammo_magazine/handful/shotgun/buckshot{ + pixel_x = -13; + pixel_y = 12 + }, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/hall_N) +"mgF" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"mgG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -16; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) "mhf" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"mhm" = ( -/obj/item/ammo_magazine/smg/nailgun, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/ammo_magazine/smg/nailgun{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"mio" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +"mhq" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz2_near) +"mhT" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/candelabra{ + layer = 3.2; + pixel_x = 1; + pixel_y = 13 }, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"mii" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mil" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "miy" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -17467,21 +14654,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_NW) -"miF" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"miP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) "miR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ @@ -17489,101 +14661,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"miT" = ( -/obj/item/stool, -/turf/open/floor{ +"mjg" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"miU" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"mjA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/administration) -"mke" = ( -/obj/structure/window/reinforced{ +/obj/structure/platform/kutjevo/smooth{ dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/largecrate/random/mini/wooden{ - desc = "A small wooden crate with a note attached it reads, 'Item 8 taken to examination." - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"mkn" = ( -/obj/structure/surface/table, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/technical_storage) -"mkt" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"mkw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/hall_SE) +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) +"mkZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/mess) +"mld" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "mlN" = ( /obj/vehicle/powerloader/ft, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mlR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "redfull" +"mme" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) -"mlT" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; name = "\improper Underground Maintenance"; req_access_txt = "100"; req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "mmq" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -17598,6 +14725,9 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) +"mmC" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "mmO" = ( /obj/structure/barricade/handrail{ desc = "Your platforms look pretty heavy king, let me support them for you."; @@ -17612,12 +14742,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +"mmR" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, -/area/varadero/interior/security) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mng" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "mnm" = ( /obj/structure/window/reinforced{ dir = 4; @@ -17659,6 +14792,14 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"moc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "mol" = ( /obj/structure/window/phoronreinforced{ dir = 4; @@ -17666,18 +14807,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"mos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) +"mou" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/item/toy/plush/farwa, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) "moH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/prop/invuln/overhead_pipe{ @@ -17702,193 +14837,119 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"mpH" = ( -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"mpL" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/north) -"mqe" = ( -/obj/structure/cryofeed, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"moT" = ( +/obj/item/ammo_magazine/smg/nailgun, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = -6; + pixel_y = -1 }, -/area/varadero/interior_protected/vessel) -"mqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/ammo_magazine/smg/nailgun{ + pixel_x = 6; + pixel_y = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"moU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/administration) -"mrd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mpz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"mpI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mpK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"mpL" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/north) +"mqu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mrr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"mrv" = ( +/turf/open/floor/shiva/green/east, /area/varadero/interior/hall_N) -"mrC" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"mrP" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"mrR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"mrT" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/accessory/storage/black_vest/brown_vest, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "mrY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"msj" = ( -/obj/structure/prop/rock/brown, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"msx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Bay" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"mtp" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"msh" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mtg" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"mtG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/trackimp, +/obj/item/device/binoculars, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "mtT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"mtU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"mux" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"muE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +"mtW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"muF" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"muL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/area/varadero/interior/hall_SE) -"muY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 5; - pixel_y = 12 +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 7 }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = 11 +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -8 }, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"mve" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"mvv" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = 25 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"mvA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mvI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"mvO" = ( -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" + icon_state = "pipe-c" }, -/area/varadero/interior/electrical) -"mwm" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"mvC" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, @@ -17897,19 +14958,30 @@ climb_delay = 1; layer = 2.99 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_gutted"; - name = "gullible toothfish"; - pixel_x = 1; - pixel_y = -2 +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"mvD" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"mwc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/donkpockets{ + pixel_x = -6; + pixel_y = 17 }, -/area/varadero/exterior/comms4) +/obj/structure/machinery/recharger, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mwC" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" + }, +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) "mwD" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; @@ -17918,31 +14990,33 @@ /obj/structure/closet/crate/supply, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"mwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light, -/obj/item/circuitboard/computer/powermonitor, -/obj/item/stack/cable_coil/cut{ - pixel_y = 12 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "mwI" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/coast/east, /area/varadero/exterior/lz2_near) +"mxa" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/pontoon_beach) +"mxi" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"mxq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "mxv" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"mxx" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"mxA" = ( +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "mxB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, @@ -17955,42 +15029,35 @@ /obj/item/storage/beer_pack, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"myj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"mym" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"myo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"mxO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"mxQ" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" +/obj/item/ammo_magazine/revolver/spearhead{ + pixel_x = -4; + pixel_y = -5 }, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"mzf" = ( +"mxX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"myU" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "mzt" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint{ @@ -18001,26 +15068,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"mzI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +"mzD" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "mzJ" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -18039,72 +15090,31 @@ /obj/item/storage/toolbox/electrical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"mzT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"mAm" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, +"mAM" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"mAU" = ( +/turf/open/floor/shiva/yellow/northwest, /area/varadero/interior/cargo) -"mAB" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"mAP" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "red" +"mBh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Checkpoint"; + req_access_txt = "100" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) -"mAX" = ( -/obj/structure/prop/dam/van{ - desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; - icon_state = "crawler_crate_wy"; - name = "crawler"; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"mBG" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"mCx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +"mBp" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/comms3) +"mBs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) "mCF" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) @@ -18130,131 +15140,61 @@ density = 0; desc = "On closer inspection, everything on these shelves are made of plastic."; icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor/carpet, -/area/varadero/interior/library) -"mCZ" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/maintenance/research) -"mDl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" - }, -/area/varadero/interior/chapel) -"mDm" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_3" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"mEs" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/eastbeach) -"mEy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"mEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"mEB" = ( -/obj/structure/machinery/power/smes/buildable{ - name = "colony distribution SMES" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"mFY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"mGb" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"mHa" = ( -/obj/item/tank/anesthetic, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"mHh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mHM" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"mIG" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - icon_state = "snow_mat" + name = "book case" }, -/area/varadero/interior/security) -"mIL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/carpet, +/area/varadero/interior/library) +"mCZ" = ( +/turf/closed/wall/rock/brown, +/area/varadero/interior/maintenance/research) +"mDm" = ( +/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ + icon_state = "sparsegrass_3" }, -/area/varadero/interior/cargo) -"mIQ" = ( -/obj/structure/platform/kutjevo/smooth{ +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"mDK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"mDW" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"mEs" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/eastbeach) +"mFE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"mFH" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; dir = 8; - climb_delay = 1; - layer = 2.99 + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"mFQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/floor/shiva/green/southwest, +/area/varadero/interior/hall_SE) +"mHD" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"mIe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) "mIU" = ( /obj/structure/platform/kutjevo/smooth{ @@ -18270,64 +15210,61 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/pontoon_beach) +"mIZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Main Hallway" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "mJe" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"mJw" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access_txt = "100" +"mJl" = ( +/obj/structure/prop/power_transformer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"mJR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "wred" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "mKb" = ( /obj/structure/sign/safety/medical, /turf/closed/wall, /area/varadero/interior/medical) -"mKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/brigdoor/northright, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"mLg" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"mLt" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +"mKh" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/obj/item/tool/surgery/surgicaldrill, +/obj/item/storage/firstaid/adv, +/turf/open/floor/shiva/red/southeast, /area/varadero/interior/security) -"mLB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"mKs" = ( +/obj/item/weapon/gun/pistol/vp70, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"mKG" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_x = -6; + pixel_y = 6 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"mKL" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) +"mKP" = ( +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) "mLJ" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/sand_white/layer1, @@ -18336,7 +15273,20 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"mMX" = ( +"mMR" = ( +/obj/structure/bed/chair{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"mNp" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"mNx" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; climb_delay = 1; @@ -18346,42 +15296,9 @@ climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/interior_protected/caves) -"mMZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mNm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/floodlight{ - name = "Floodlight" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"mNO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mNT" = ( +"mOg" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 9; icon_state = "planter_box_soil" @@ -18390,155 +15307,129 @@ icon_state = "pointybush_2"; pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mOx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"mOO" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"mPf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) -"mPk" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mOl" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"mOP" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 }, -/area/varadero/exterior/farocean) -"mPl" = ( -/obj/structure/machinery/storm_siren{ +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"mPp" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"mPI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) -"mPT" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mPW" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"mPX" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "pipe-c" }, -/area/varadero/interior/maintenance/research) -"mQC" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"mPF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) -"mQF" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/caves/north_research) -"mQG" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) +"mPJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/wood, +/area/varadero/interior/library) +"mQd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/green, +/area/varadero/interior/court) +"mQn" = ( +/obj/item/lightstick/variant/planted, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "mRq" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/library) -"mRs" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" +"mRu" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -16; + pixel_y = -8 }, -/obj/structure/curtain/red, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"mRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior_protected/vessel) -"mRL" = ( -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/morgue) -"mRZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"mRV" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/administration) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "mSu" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"mSD" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"mSS" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"mSP" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"mTa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/morgue) +"mTC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/varadero/interior/oob) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "mTD" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"mTK" = ( +/obj/structure/prop/dam/van{ + desc = "An older Weyland Yutani space crawler. These things are most commonly seen along former trails on shake and bake colonies."; + icon_state = "crawler_crate_wy"; + name = "crawler"; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"mUk" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/interior/oob) +"mUq" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) "mUv" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -18556,24 +15447,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"mUz" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/eastbeach) -"mUP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"mVc" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) "mVj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -18603,226 +15476,130 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"mVF" = ( -/obj/structure/prop/souto_land/pole{ - dir = 1 - }, -/obj/structure/prop/souto_land/pole{ - dir = 8; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"mVN" = ( -/obj/structure/machinery/light{ +"mVv" = ( +/obj/structure/janitorialcart, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"mWg" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mWy" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/medical) -"mVS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) +"mXe" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/hall_SE) -"mVY" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"mXg" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/item/clothing/under/shorts/grey, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"mXs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"mXx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Sports Center" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) -"mXO" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 1; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"mXV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_SE) -"mYd" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "multi_tiles" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/electrical) -"mYA" = ( -/obj/structure/blocker/invisible_wall/water, /obj/structure/platform/kutjevo/smooth{ dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"mYR" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"mYW" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"mZi" = ( -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/court) -"mZk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"mZC" = ( -/obj/structure/surface/table/woodentable{ - icon_state = "reinf_table" - }, -/obj/structure/machinery/door/window/brigdoor/westleft{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"mXq" = ( +/obj/structure/target/syndicate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"mYp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"mYr" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - icon_state = "leftsecure"; - id = null; - name = "Requesitions Desk" - }, -/obj/structure/machinery/door/window/northright{ - dir = 2; - name = "Requesitions Desk" - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/obj/item/clipboard, -/obj/structure/noticeboard{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" + icon_state = "warning_s" }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_N) +"mYz" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "mZH" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"mZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/electrical) -"nak" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/eastbeach) -"nau" = ( +"naa" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"naR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -1; + pixel_y = 3 }, -/area/varadero/interior_protected/vessel) -"nbA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"nbn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) "nbB" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"ncd" = ( -/obj/structure/closet/crate/secure, -/obj/item/stack/sheet/plasteel{ - amount = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"ncg" = ( +"nbN" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/sling, /obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"nbU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"ncf" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/varadero/interior/morgue) -"nch" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"ncj" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"ncm" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_y = 8 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "ncv" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -18836,6 +15613,12 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) +"ncw" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "ncC" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -18843,6 +15626,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) +"ncO" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"ncQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"ncT" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "ncX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Underground Security Checkpoint"; @@ -18850,16 +15647,9 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"ndp" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/retractor/predatorretractor, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) +"ndR" = ( +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "nee" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -18869,21 +15659,14 @@ "neq" = ( /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"new" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"nex" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, +"neu" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/electrical) +"neA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "neD" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -18894,73 +15677,17 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"neU" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +"neG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) -"nfk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"nfv" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"nfX" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"nfZ" = ( -/obj/structure/machinery/conveyor_switch, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) +"nfG" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "ngg" = ( -/turf/closed/wall/rock/brown, -/area/varadero/interior/hall_SE) -"ngm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"ngC" = ( -/obj/structure/largecrate/random/mini/chest, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) +/turf/closed/wall/rock/brown, +/area/varadero/interior/hall_SE) "ngY" = ( /obj/item/stack/sheet/metal/med_small_stack, /obj/structure/prop/server_equipment/laptop{ @@ -18970,6 +15697,16 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"nhv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nhy" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "nhI" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -18992,6 +15729,20 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"nhN" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"nhQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "nhX" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -19011,35 +15762,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/comms4) -"nhY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"nih" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-5"; - name = "book case" - }, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) "nio" = ( /turf/closed/wall/r_wall/elevator/gears, /area/varadero/interior/hall_N) @@ -19049,12 +15771,20 @@ /obj/item/device/floor_painter, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"niF" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" +"njm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/medical) +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"njr" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "njC" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -19066,49 +15796,72 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"nkd" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"nkq" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "nkF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"nma" = ( +"nkR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"nkV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) +"nlt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = 3; - pixel_y = 17 +/obj/item/circuitboard/computer/crew{ + pixel_x = -5; + pixel_y = 8 }, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 +/obj/item/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"nlx" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/pontoon_beach) +"nlD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/floor/shiva/yellow/southeast, +/area/varadero/interior/technical_storage) +"nmm" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"nmA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "nmC" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat/chess{ pixel_x = -4 @@ -19128,83 +15881,92 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nmQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"nnb" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"nni" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"nnk" = ( -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"nnt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Requesitions Lobby" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"nnw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"nnF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +"nmW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"noc" = ( +/obj/structure/machinery/computer/operating{ + density = 0 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/snow_mat/east, /area/varadero/interior/medical) "noj" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"noC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"nox" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) +"noz" = ( +/obj/item/tool/screwdriver, +/obj/item/device/multitool, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"noD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms3) +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"noO" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "noR" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"npi" = ( -/obj/structure/machinery/storm_siren{ +"npg" = ( +/obj/structure/machinery/computer3/powermonitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"npy" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/popcorn, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"npB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"npF" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = -3 + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/varadero/interior/maintenance/north) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/toy/plush/farwa, +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"npI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "npW" = ( /obj/item/tool/warning_cone{ pixel_x = -8 @@ -19218,44 +15980,65 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/central) -"nqN" = ( -/obj/item/stool{ - icon_state = "stool_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/technical_storage) "nqQ" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating/icefloor, /area/varadero/interior/dock_control) -"nrd" = ( -/turf/open/floor{ - icon_state = "white" +"nrt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/security) -"nsc" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"nrF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"nrS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"nsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"nrY" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) +"nsM" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 5 }, -/area/varadero/interior/electrical) +/obj/structure/surface/table, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "nsN" = ( /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) +"nsZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"ntg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/purplecorners, +/area/varadero/interior/research) "nti" = ( /turf/closed/wall/r_wall, /area/varadero/exterior/lz2_near) @@ -19275,171 +16058,154 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"ntw" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"nuv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"nts" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/chem_dispenser/soda/beer{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"nuI" = ( +/obj/structure/morgue, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"nuZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/varadero/interior_protected/maintenance/south) -"nuQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/stamp{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +/obj/item/storage/box/masks{ + pixel_x = 6; + pixel_y = 3 }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"nvc" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) +"nvn" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"nvp" = ( +/obj/structure/surface/rack, +/obj/item/clipboard, +/turf/open/floor/shiva/purple/east, /area/varadero/interior/research) -"nvv" = ( -/obj/structure/blocker/fog, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"nvw" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/varadero/exterior/farocean) -"nwi" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/yellow/northeast, +/area/varadero/interior/disposals) +"nvQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/blue/northwest, +/area/varadero/interior/administration) "nwq" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nwV" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" +"nwP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -8; + pixel_y = 3 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"nwZ" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, +/turf/open/floor/shiva/north, /area/varadero/interior/medical) -"nxl" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"nxC" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"nxE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"nxS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "nxW" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/medical) -"nyJ" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/open/floor/shiva{ +"nyB" = ( +/obj/structure/machinery/alarm{ dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"nzb" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" + pixel_x = -24 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior_protected/vessel) -"nzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"nzy" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/court) +"nzL" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"nzU" = ( +/obj/structure/surface/table/woodentable, +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton, +/turf/open/floor/wood, /area/varadero/interior/security) -"nzr" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "green" - }, -/area/varadero/interior/mess) -"nzS" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/drill{ - pixel_y = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/comms1) "nAq" = ( /turf/open/shuttle/elevator, /area/varadero/interior/records) +"nAY" = ( +/obj/item/stack/sandbags/large_stack{ + pixel_y = 4; + pixel_x = -12 + }, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) "nBc" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/lz2_near) -"nBl" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"nBD" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"nBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"nCl" = ( -/obj/structure/fence, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"nCE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "green" +"nBf" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"nBr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"nCc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"nCr" = ( +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "nCF" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/eastocean) @@ -19453,17 +16219,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"nDC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) "nDL" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -19474,119 +16229,74 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"nEp" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +"nEe" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/records) +"nEj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/closet/firecloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"nEo" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/exterior/lz1_near) -"nEE" = ( -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = -5 +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"nEL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Underground Security Interrogation"; + req_access_txt = "100" }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"nEQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior_protected/vessel) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redcorners/east, +/area/varadero/interior/security) "nEY" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"nFf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"nFg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"nFp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"nFy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"nFB" = ( -/obj/structure/machinery/floodlight/landing, -/obj/effect/decal/warning_stripes, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"nFD" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"nFH" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) +"nFu" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_SE) "nFX" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"nGE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"nGf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Theta-V Research Laboratory"; + req_one_access = null; + req_access = null }, -/turf/open/floor/shiva{ +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"nGx" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/trash/crushed_cup, +/obj/item/prop/magazine/dirty/torn, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"nGP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"nHk" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "nHy" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -19596,35 +16306,15 @@ /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"nHA" = ( -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"nHC" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"nHH" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +"nHF" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 + }, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "nIF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -19632,23 +16322,19 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"nIL" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "nIR" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) +"nIT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "nJd" = ( /obj/item/stack/sheet/wood/small_stack, /turf/open/gm/dirt, @@ -19657,28 +16343,27 @@ /obj/structure/bed/chair, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"nKd" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"nKf" = ( -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"nJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/exterior/lz2_near) -"nKr" = ( -/obj/structure/surface/table, -/obj/item/storage/box/sprays{ - pixel_x = -1; - pixel_y = 3 +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"nJE" = ( +/obj/item/tool/mop{ + pixel_x = -10; + pixel_y = 11 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"nKx" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/area/varadero/interior/maintenance/research) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "nKy" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe, @@ -19687,98 +16372,78 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"nKR" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/monsoon) -"nLw" = ( -/obj/structure/machinery/r_n_d/server, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "purple" - }, -/area/varadero/interior/research) -"nLH" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 +"nKK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"nKO" = ( +/mob/living/simple_animal/cat{ + desc = "A domesticated, feline pet. The collar says 'Orion'."; + name = "Orion"; + real_name = "Orion" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"nKV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/eastbeach) -"nLI" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance) -"nMe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"nLq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"nLE" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 3 }, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) +"nMb" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/eat, +/obj/item/trash/cheesie, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "nMJ" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"nMT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/rack, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "wred" +"nMU" = ( +/obj/structure/machinery/door_control{ + id = "colony_sec_armory"; + name = "Colony Secure Armory"; + pixel_y = -26 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/red, +/area/varadero/interior/security) "nNe" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"nNv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) "nNB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"nOg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - id = "engine_electrical_maintenance"; - name = "Underground Power Substation"; - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"nOj" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +"nOy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) "nOz" = ( /obj/structure/surface/table/woodentable/fancy, @@ -19799,13 +16464,6 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"nOO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) "nOQ" = ( /obj/structure/safe/floor{ pixel_x = 7; @@ -19813,21 +16471,24 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"nPx" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"nPq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Sports Center"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/largecrate/random, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) +"nPv" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "nPE" = ( /obj/structure/safe, /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -19835,28 +16496,6 @@ /obj/item/reagent_container/food/drinks/bottle/pwine, /turf/open/floor/wood, /area/varadero/interior/research) -"nPG" = ( -/obj/structure/surface/table, -/obj/item/inflatable{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/inflatable{ - pixel_x = 6 - }, -/obj/item/inflatable{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "nPI" = ( /obj/structure/prop/structure_lattice{ density = 0; @@ -19866,28 +16505,42 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"nPK" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" +"nPY" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) -"nPR" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nQe" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "yellow" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "nQo" = ( /obj/structure/machinery/conveyor, /obj/structure/largecrate/random, /turf/open/floor/plating, /area/varadero/interior/cargo) +"nQt" = ( +/obj/item/trash/liquidfood, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"nQy" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "nQA" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -19895,315 +16548,185 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) -"nQH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +"nQJ" = ( +/obj/effect/landmark/crap_item, +/obj/structure/window/reinforced{ + dir = 1 }, -/area/varadero/interior/research) -"nQR" = ( -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/plating/warnplate/north, +/area/varadero/interior/disposals) +"nQT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) +"nRD" = ( +/obj/structure/window/reinforced{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"nRk" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/med_large_stack, -/obj/item/trash/boonie, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"nRy" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/mess) -"nRH" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/interior/maintenance/north) -"nRP" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 + health = 80 }, -/obj/item/cell/high, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/varadero/interior/technical_storage) -"nRT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva{ - icon_state = "wredfull" +/obj/item/clothing/suit/storage/marine/veteran/dutch{ + layer = 3.1 }, -/area/varadero/interior/medical) -"nRU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/item/clothing/under/gimmick/dutch, +/obj/item/clothing/head/helmet/marine/veteran/dutch/cap{ + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"nRK" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"nRQ" = ( +/obj/structure/closet/crate/construction, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/eastbeach) -"nRW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) "nSi" = ( /obj/structure/largecrate/random/case, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"nSl" = ( +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/mess) "nSP" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/medical) -"nTj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"nTl" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/laundry) -"nTG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/hall_SE) -"nTH" = ( -/obj/structure/bed/chair/comfy/orange{ - buckling_y = 9; +/obj/structure/machinery/storm_siren{ dir = 8; - pixel_y = 9 - }, -/obj/item/device/megaphone{ - layer = 2; - pixel_x = -4; - pixel_y = 6 + pixel_x = 3 }, -/obj/item/clothing/suit/storage/hazardvest{ - desc = "It oozes authority, prestige, and sick summer vibes."; - name = "life guard's vest"; - pixel_x = 10; - pixel_y = -9 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"nTs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"nTF" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/hall_SE) +"nTG" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/hall_SE) +"nTM" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"nTP" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/security) "nTS" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"nTX" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"nUf" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"nVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"nVn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, -/area/varadero/interior/disposals) -"nVv" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"nTT" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/varadero/exterior/comms4) -"nVy" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"nVc" = ( +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"nVj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/morgue) -"nWg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/blue, +/area/varadero/interior/administration) +"nVw" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"nWs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"nVZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "nWS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"nXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"nXR" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"nXY" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - pixel_y = 14 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_NW) -"nYi" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -9 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior_protected/caves/central) -"nYx" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"nYy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ +"nXX" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/red, +/area/varadero/interior/morgue) +"nYo" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz2_near) +"nYG" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"nYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"nZd" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - icon_state = "floor3" + icon_state = "pipe-c" }, -/area/varadero/interior/medical) -"nZi" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"nYI" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"nYP" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"nZh" = ( /obj/structure/window/reinforced{ dir = 4; - pixel_x = -2; - pixel_y = 4 + health = 80 }, /obj/structure/window/reinforced{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 + health = 80 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/medical) +/obj/item/clothing/head/uppcap/peaked, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "nZk" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -20212,19 +16735,6 @@ /obj/structure/barricade/handrail/wire, /turf/open/floor/wood, /area/varadero/interior/court) -"oam" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "oaO" = ( /obj/structure/bed/chair{ dir = 4; @@ -20232,77 +16742,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"obm" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"obr" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" - }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) -"obN" = ( -/obj/structure/machinery/door_control{ - id = "undergroundhangarsouth"; - name = "South Dock Door"; - pixel_x = -32; - pixel_y = -18; - indestructible = 1 - }, -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/exterior/lz1_near) -"obS" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ocr" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ocz" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"ocQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"obr" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" }, -/area/varadero/interior/medical) +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) +"oci" = ( +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/morgue) +"ocu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"odb" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/disposals) "odw" = ( /obj/structure/machinery/photocopier, /obj/item/storage/firstaid/regular{ @@ -20311,33 +16767,42 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"odD" = ( -/obj/structure/bed/chair, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 +"odC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) -"odZ" = ( -/obj/structure/closet/toolcloset, -/obj/structure/barricade/handrail/wire, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"odM" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/cargo) -"oef" = ( -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"oea" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "oep" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -20346,32 +16811,42 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"oeO" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"oex" = ( +/obj/structure/bed/chair/wheelchair{ + desc = "Great scott, it can move on its own!"; + dir = 4; + icon_state = "officechair_white"; + name = "Dr. O's fantastic self rolling wheelie chair"; + pixel_x = 7 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior_protected/maintenance/south) +"oeA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"oeQ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"ofl" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_N) +"ofs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "ofC" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"ofI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/co2_cartridge{ - pixel_x = 13; - pixel_y = 7 - }, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) "ofJ" = ( /obj/structure/shuttle/engine/router{ dir = 4; @@ -20379,14 +16854,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"oga" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) +"ofZ" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "ogj" = ( /obj/structure/surface/table/woodentable, /obj/item/newspaper{ @@ -20400,13 +16870,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"ogq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/hall_N) "ogW" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -20415,28 +16878,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"ohi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handcuffs, -/obj/structure/machinery/flasher_button{ - id = "sec_checkpoint"; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "sec_checkpoint_lock"; - name = "Checkpoint Lockdown"; - pixel_y = 36 - }, -/obj/item/clothing/suit/armor/vest, -/obj/item/handcuffs{ - pixel_x = 2; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) "ohC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -20445,113 +16886,71 @@ }, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"oiB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ - pixel_x = -10; - pixel_y = 15 +"ohG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"ohQ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/obj/item/reagent_container/blood/empty{ - pixel_x = 6; - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"oic" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/obj/item/storage/box/cups{ - pixel_x = -13; - pixel_y = 3 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"oiu" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"oiL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"oiN" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/chapel) -"oiM" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"ojz" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"okc" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/varadero/interior/administration) -"ojm" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/varadero/exterior/lz1_near) -"ojF" = ( -/obj/item/tool/surgery/bonegel/predatorbonegel, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, +/turf/open/floor/corsat/squareswood/north, /area/varadero/interior_protected/vessel) -"ojJ" = ( +"old" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"oke" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"okf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"okI" = ( -/obj/structure/surface/rack, -/obj/item/implantpad, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"okJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"ola" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"olD" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"olP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"olj" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/north_research) +"olx" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "olU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -20560,52 +16959,87 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"omj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"omx" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-3"; + name = "book case" }, -/area/varadero/interior/maintenance/north) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/varadero/interior/library) +"onf" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "onj" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"onr" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"onT" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"onV" = ( +/turf/open/floor/asteroidwarning/northwest, /area/varadero/exterior/lz1_near) -"ooe" = ( -/obj/structure/surface/rack, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ +"ook" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/north) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) "oos" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/library) +"ooB" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"ooC" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"ooQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"ooU" = ( +/obj/structure/closet/toolcloset, +/obj/structure/barricade/handrail/wire, +/obj/item/device/flashlight, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"opa" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) "opd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, /area/varadero/interior/beach_bar) +"opk" = ( +/obj/structure/largecrate/random, +/obj/item/shard{ + icon_state = "large"; + pixel_x = -5; + pixel_y = -6 + }, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "opP" = ( /obj/structure/machinery/light{ dir = 4 @@ -20625,25 +17059,29 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"oqh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +"oqn" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) -"orb" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/blocker/invisible_wall/water, +/obj/structure/plasticflaps/mining, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"oqH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "orr" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -20665,32 +17103,16 @@ }, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"orT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"osr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"ost" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"orU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"osp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "osE" = ( /obj/structure/largecrate/random/barrel, /turf/open/gm/dirt, @@ -20706,40 +17128,54 @@ /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"otL" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) "otO" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"oug" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"ouu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) "ouy" = ( /turf/closed/wall/r_wall, /area/varadero/interior/caves/east) -"ouV" = ( -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/shiva{ +"ova" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"ovu" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "yellow" + health = 300 }, -/area/varadero/interior/hall_SE) -"ovp" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_y = 25 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "ovC" = ( /turf/open/floor/carpet, /area/varadero/interior/research) @@ -20747,16 +17183,26 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"owk" = ( -/obj/structure/machinery/light/small, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +"ovX" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"owf" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/window/reinforced, +/obj/item/clothing/head/fedora, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "owM" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, @@ -20786,16 +17232,6 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oxa" = ( -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment, @@ -20806,35 +17242,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"oxA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_N) -"oyb" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "On closer inspection, everything on these shelves are made of plastic."; - icon_state = "book-3"; - name = "book case" - }, -/turf/open/floor{ - icon_state = "wood" +"oxV" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1; + locked = 1; + name = "\improper Engine Room" }, -/area/varadero/interior/library) -"oyi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 1 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"oyh" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "oyl" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -20843,20 +17264,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"oyv" = ( -/obj/item/device/flashlight, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz2_near) -"oyx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - icon_state = "blue" +"oyS" = ( +/obj/structure/pipes/portables_connector{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "oyT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/brigdoor/westleft{ @@ -20879,33 +17293,10 @@ }, /turf/open/floor/plating, /area/varadero/interior/security) -"ozz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"ozD" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"oAm" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) +"oAb" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "oAC" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/coast/beachcorner2/north_east, @@ -20928,42 +17319,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBj" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" +"oAO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) "oBq" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"oBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"oBG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" - }, -/area/varadero/interior/court) "oBJ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -20971,54 +17338,13 @@ /obj/item/tool/soap/syndie, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/laundry) -"oBP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"oBQ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oBR" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"oCN" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, +"oCH" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"oDs" = ( +/turf/open/floor/shiva/red/east, /area/varadero/interior/security) -"oCR" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz1_near) -"oDz" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) "oDB" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /obj/structure/machinery/storm_siren{ @@ -21026,12 +17352,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"oDN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) "oDS" = ( /obj/structure/sign/safety/hazard{ pixel_x = 15 @@ -21048,18 +17368,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"oDX" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/prop/invuln/minecart_tracks, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "oEc" = ( /obj/structure/filingcabinet{ density = 0; @@ -21090,68 +17398,99 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"oET" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/maintenance/security) -"oEX" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/helmet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"oFd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - icon_state = "chair" +"oEI" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = 6 }, -/area/varadero/interior/hall_SE) -"oFq" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"oET" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/maintenance/security) +"oEW" = ( +/obj/structure/girder/displaced, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/varadero/interior/mess) -"oGc" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"oFc" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/device/flashlight/flare, +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) +"oFO" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"oGe" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/disposals) +"oGo" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) "oGv" = ( /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"oHm" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "oHo" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) +"oHM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"oHQ" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/hall_NW) "oIc" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"oIq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"oIv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/hall_SE) -"oIC" = ( -/obj/structure/janitorialcart, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"oIR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light, +/obj/item/circuitboard/computer/powermonitor, +/obj/item/stack/cable_coil/cut{ + pixel_y = 12 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "oJb" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -21161,36 +17500,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oJm" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 2; - name = "Underground Hangar Power Substation"; - req_access = null - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"oJv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"oJB" = ( -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"oJW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"oJd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/security) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) "oJX" = ( /obj/item/stack/sheet/metal, /obj/structure/shuttle/engine/heater{ @@ -21200,6 +17516,13 @@ /obj/item/device/flashlight/slime, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) +"oKg" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "oKo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21218,67 +17541,48 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"oKx" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 +"oKH" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_SE) -"oKy" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"oLg" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) +"oLA" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/vessel) -"oKN" = ( -/obj/structure/machinery/light{ +/obj/structure/platform_decoration/kutjevo{ dir = 4 }, -/obj/item/clothing/suit/armor/vest, -/obj/structure/coatrack, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/area/varadero/interior/hall_N) -"oLa" = ( -/obj/item/trash/barcardine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/exterior/lz1_near) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "oLM" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/cargo) -"oLZ" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) "oMa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/packet/bicaridine, @@ -21292,95 +17596,99 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oMl" = ( -/obj/structure/pipes/vents/pump{ +"oMf" = ( +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"oMm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"oMs" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"oNa" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/mess) +"oMB" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/knife, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "oNy" = ( /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"oOF" = ( +"oOB" = ( +/obj/item/device/taperecorder, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"oOG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"oPe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"oPu" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/cargo) -"oPQ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"oPI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) "oPV" = ( /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"oRx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/eat, -/obj/item/trash/cheesie, -/obj/item/reagent_container/food/drinks/flask/vacuumflask{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"oRB" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/surface/table, -/obj/item/storage/firstaid/adv{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"oRg" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior/hall_NW) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"oRs" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/electrical) "oRD" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"oSe" = ( -/obj/structure/surface/table, -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"oSn" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"oSr" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/electrical) +"oSA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "oSX" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/electrical) +"oTn" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"oTr" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) "oTs" = ( /obj/structure/blocker/fog, /turf/open/gm/coast/beachcorner2/south_east, @@ -21389,17 +17697,26 @@ /obj/item/tool/crowbar/red, /turf/open/gm/coast/north, /area/varadero/exterior/pontoon_beach) -"oTX" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +"oUe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"oUf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/brigdoor/northright, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 6 }, -/area/varadero/interior/comms1) +/obj/item/tool/pen/blue, +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "oUh" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" @@ -21412,84 +17729,84 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"oUp" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" +"oUt" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior/morgue) -"oUO" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"oUK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/inflatable, -/obj/item/inflatable/door, -/obj/item/storage/box/engineer, -/turf/open/floor/shiva{ +/obj/item/clothing/suit/fire/firefighter{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"oUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "yellow" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) +"oVt" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) +"oVH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lights, +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, /area/varadero/interior/electrical) -"oVm" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"oVn" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"oVp" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 +"oVI" = ( +/obj/structure/machinery/power/apc/no_power/west, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/woodentable, +/turf/open/floor/wood, +/area/varadero/interior/beach_bar) +"oVL" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior/comms1) -"oVr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 11 }, -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"oVN" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "redcorners" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) -"oVt" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/north_research) -"oWf" = ( -/obj/structure/machinery/floodlight/landing{ - desc = "A powerful light stationed near construction zones to provide better visibility."; - name = "Construction Light" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/area/varadero/exterior/eastocean) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/monsoon) +"oWc" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "oWg" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"oWr" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/wood, -/area/varadero/interior/administration) "oWs" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -21499,43 +17816,26 @@ }, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"oWO" = ( -/obj/structure/toilet, -/turf/open/floor{ - icon_state = "white" +"oWy" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"oWP" = ( +/obj/structure/surface/table, +/obj/item/toy/deck/uno{ + pixel_x = -4; + pixel_y = 6 }, -/area/varadero/interior/security) -"oWU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 10 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_NW) "oXf" = ( /turf/open/floor/carpet, /area/varadero/interior/chapel) -"oXi" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"oXm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"oXp" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) "oXw" = ( /obj/docking_port/stationary/marine_dropship/lz1{ name = "LZ1 - Pontoon Dock" @@ -21547,70 +17847,41 @@ /obj/structure/prop/server_equipment/laptop/on, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"oXZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/administration) -"oYB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"oXG" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) +"oYj" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, -/area/varadero/interior/medical) +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "oYE" = ( /obj/structure/closet/crate, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"oZw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"oZA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +"oZh" = ( +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/maintenance) "oZJ" = ( /obj/structure/fence, /turf/open/gm/coast/south, /area/varadero/exterior/lz2_near) -"paq" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor{ +"pak" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"paB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" + icon_state = "warning_s" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_N) +"paS" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pbd" = ( /obj/structure/surface/table/woodentable, /obj/item/ashtray/plastic, @@ -21638,172 +17909,65 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/administration) -"pbp" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) "pbt" = ( /turf/closed/wall, /area/varadero/interior/mess) -"pbw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "pbT" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"pco" = ( -/obj/structure/surface/rack, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pcj" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/interior/maintenance) -"pcH" = ( -/obj/effect/decal/cleanable/blood{ - basecolor = "#20d450"; - color = "#20d450" +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pcv" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/effect/decal/remains/human, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"pcV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/white, +/area/varadero/interior/security) +"pdh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"pcK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) -"pdc" = ( -/obj/structure/largecrate/random{ - anchored = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) "pdn" = ( /obj/item/tool/shovel/spade, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"pdr" = ( -/obj/structure/surface/table, -/obj/item/trash/chips{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"pdK" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) +"pdE" = ( +/obj/structure/bed/chair, +/turf/open/floor/asteroidwarning/west, +/area/varadero/exterior/lz1_near) "pea" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/interior/caves/north_research) -"per" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"peu" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"peA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) "pfd" = ( /turf/open/gm/coast/beachcorner/north_east, /area/varadero/exterior/pontoon_beach) -"pfr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pfD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"pfL" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"pfR" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) +"pfh" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"pfJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) "pgg" = ( /obj/item/tool/pickaxe, /turf/open/gm/coast/south, @@ -21816,6 +17980,13 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/eastbeach) +"pgt" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pgN" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "phk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/dirt, @@ -21832,41 +18003,24 @@ }, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"pie" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +"phE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"phY" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"piy" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "pja" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/open/floor/wood, /area/varadero/interior/security) -"pjk" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"pjm" = ( -/obj/effect/decal/remains/xeno{ - pixel_y = -25 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "pjn" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -21874,12 +18028,6 @@ /obj/item/book/manual/research_and_development, /turf/open/floor/carpet, /area/varadero/interior/library) -"pjs" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/research) "pjD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/eastocean) @@ -21891,20 +18039,19 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) +"pjX" = ( +/obj/structure/surface/rack, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "pkj" = ( /obj/item/tool/weldingtool, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"pkl" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) "pku" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -21918,29 +18065,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"pkG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"pkT" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/varadero/interior/electrical) -"pkX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pkQ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/electrical) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) "pll" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -21952,62 +18088,68 @@ "plq" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/eastocean) -"plF" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - desc = "Revolting beyond description."; - icon = 'icons/obj/items/fishing_atoms.dmi'; - icon_state = "gullible_toothfish_teeth"; - name = "human-ish teeth"; - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"plN" = ( -/obj/structure/pipes/vents/pump{ +"plu" = ( +/obj/structure/bedsheetbin, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"plY" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/cargo) +"plZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"pmh" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"pmo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 10 }, -/area/varadero/interior/cargo) -"pmM" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/area/varadero/exterior/monsoon) -"pnL" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/administration) +"pnt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"pny" = ( +/obj/structure/prop/ice_colony/flamingo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"pnH" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pob" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/obj/item/trash/plate{ + pixel_y = 7 }, -/area/varadero/interior/comms3) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"poc" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "pol" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/library) -"pot" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) "pox" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -22019,97 +18161,60 @@ /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/hall_SE) -"poC" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/obj/item/reagent_container/food/snacks/eat_bar{ - pixel_x = 13; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"poE" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"poU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"poX" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"ppB" = ( +/turf/open/floor/shiva/green/north, /area/varadero/interior/hall_SE) -"ppw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"pqf" = ( -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) +"ppH" = ( +/obj/structure/machinery/light, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "pqj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"pqG" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/court) -"pqO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"pqY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"pqo" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/marine_law{ + pixel_x = -6; + pixel_y = 5 }, -/area/varadero/interior/medical) -"prh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"pqy" = ( +/obj/structure/largecrate/random/mini/chest, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"pqL" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"prj" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "prl" = ( /obj/item/grown/log, /turf/open/gm/dirt, @@ -22117,18 +18222,15 @@ "prC" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/eastbeach) -"prY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ +"prE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "green" + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "psb" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = -13; @@ -22136,6 +18238,14 @@ }, /turf/open/floor/carpet, /area/varadero/interior/security) +"psc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "psd" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -22149,36 +18259,32 @@ /obj/structure/inflatable, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"psu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"psU" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) "pth" = ( /obj/structure/surface/rack, /obj/item/tool/pickaxe/plasmacutter, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"pti" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"ptp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"ptw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"ptm" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/item/cell/high, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"pto" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 13; + pixel_y = 8 }, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "ptC" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -22187,82 +18293,37 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"ptM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"ptP" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"ptY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"pun" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/pontoon_beach) +"pua" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "puq" = ( /obj/item/lightstick/variant/planted, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Treatment"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +"puO" = ( +/obj/item/stack/cable_coil/cut{ + pixel_x = 5; + pixel_y = 4 }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"pvb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) -"pvs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) "pvQ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"pwc" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) +"pwe" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"pwy" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "pxa" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/largecrate/random/mini/ammo{ @@ -22273,69 +18334,67 @@ }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"pAa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"pxi" = ( +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"pyf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/shiva{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pAp" = ( -/turf/open/floor/plating/icefloor{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/exterior/lz1_near) -"pAX" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"pAZ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/phoronglass{ - amount = 32 + health = 80 }, -/turf/open/floor{ - icon_state = "bcircuit" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/electrical) -"pBb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/item/storage/large_holster/katana/full, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"pyu" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/hall_SE) +"pyA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 1; + name = "\improper Colony Offices"; + req_access_txt = "100" }, -/area/varadero/interior/security) -"pBf" = ( -/obj/structure/prop/rock/brown{ - layer = 2 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"pyJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"pyN" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + desc = "A globe designed by the hunters to show them the location of prey across the hunting grounds."; + icon = 'icons/turf/walls/hunter.dmi'; + icon_state = "globe"; + name = "Hunter Globe"; + pixel_y = 16 }, +/turf/open/shuttle/red, /area/varadero/interior_protected/vessel) +"pAb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"pAH" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) "pBo" = ( /obj/structure/coatrack, /obj/item/clothing/head/fedora{ @@ -22344,71 +18403,38 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"pBK" = ( -/obj/structure/filingcabinet{ - pixel_x = -8 +"pBD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = 5 }, -/obj/structure/filingcabinet{ - pixel_x = 8 +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = -3 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +/obj/item/folder/black_random{ + pixel_x = -3; + pixel_y = -1 }, -/area/varadero/interior/administration) -"pBS" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/maintenance/security) +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "pCa" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"pCc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/largecrate/random/mini/ammo{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"pCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"pCp" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"pCO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/varadero/interior/electrical) +"pCJ" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) "pCP" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 2; @@ -22418,54 +18444,41 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"pCV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/rods, -/obj/item/storage/donut_box, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) "pDl" = ( /obj/structure/girder, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"pDD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"pEt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/hall_NW) -"pDW" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"pEA" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"pEv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/evidencebag, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"pEE" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"pEG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"pEJ" = ( +/turf/open/floor/white, +/area/varadero/interior/laundry) +"pFb" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "pFd" = ( /obj/item/storage/pouch/construction, /obj/structure/prop/invuln/lattice_prop{ @@ -22475,36 +18488,44 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"pFS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "pGc" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/varadero/interior/research) -"pGi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) "pGj" = ( /obj/structure/prop/rock/brown, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pool) +"pGl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "pGs" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/oob) +"pGE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_bishop{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/reagent_container/blood/empty{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/storage/box/cups{ + pixel_x = -13; + pixel_y = 3 + }, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) "pGJ" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) @@ -22512,87 +18533,41 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"pGS" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"pGU" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"pIe" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pGW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"pIj" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"pHb" = ( /obj/structure/surface/rack, -/obj/structure/machinery/light/small{ +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pIz" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"pHV" = ( /obj/structure/surface/table, -/obj/item/trash/plate{ - desc = "For all your soapy needs."; - icon_state = "tray"; - name = "soap dish"; - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/tool/soap/nanotrasen{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/tool/soap/nanotrasen{ - desc = "Teetering at the brink! A life's thread, about to be cut short."; - pixel_x = 5; - pixel_y = 15 - }, -/turf/open/floor{ - icon_state = "white" +/obj/item/paper/janitor{ + pixel_y = 8 }, -/area/varadero/interior/laundry) +/obj/item/storage/belt/utility, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "pIC" = ( /obj/structure/closet/secure_closet/security_empty, /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/security) -"pJn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"pJp" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"pII" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "pJs" = ( /obj/structure/bed/chair{ buckling_y = 18; @@ -22603,22 +18578,9 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"pJA" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"pJQ" = ( -/obj/item/book/manual/evaguide, -/turf/open/floor{ - icon_state = "wood" - }, -/area/varadero/interior/library) +"pJD" = ( +/turf/open/floor/shiva/wred, +/area/varadero/interior/medical) "pKg" = ( /obj/item/book/manual/nuclear, /turf/open/floor/carpet, @@ -22627,49 +18589,33 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/hall_SE) +"pKD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "pKK" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"pLp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "pLF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"pLV" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/administration) -"pNa" = ( -/obj/structure/catwalk, -/obj/structure/barricade/handrail/wire{ - layer = 3.01 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) +"pMZ" = ( +/turf/open/floor/shiva/yellowcorners/east, +/area/varadero/interior/disposals) +"pNe" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22677,124 +18623,73 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"pNJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"pNT" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"pOa" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"pOg" = ( -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"pOz" = ( -/obj/structure/machinery/computer/card{ - dir = 8 +"pNg" = ( +/obj/structure/prop/mech/drill, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"pOp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "pOC" = ( /obj/item/tool/wirecutters/clippers, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"pPf" = ( -/obj/structure/surface/table, -/obj/item/prop/helmetgarb/flair_uscm, -/obj/item/storage/box/uscm_mre{ - pixel_x = -4; - pixel_y = 13 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"pPl" = ( -/obj/structure/machinery/light, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/interior/comms1) -"pQp" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/technical_storage) -"pQw" = ( +"pOL" = ( +/obj/structure/surface/rack, +/obj/item/pizzabox/meat, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"pOO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"pQF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"pPg" = ( +/turf/open/floor/shiva/blue/east, /area/varadero/interior/technical_storage) -"pRa" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"pPi" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/shorts/green{ + pixel_x = -4; + pixel_y = -4 }, -/area/varadero/exterior/farocean) -"pRl" = ( -/obj/structure/machinery/door/window/northright{ - name = "Disposals Chute" +/obj/item/clothing/under/shorts/blue{ + pixel_x = -2; + pixel_y = -2 }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/red{ + pixel_x = 2; + pixel_y = 2 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"pQp" = ( +/turf/closed/wall/r_wall, +/area/varadero/interior/technical_storage) +"pQB" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) +"pQI" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "pRs" = ( /obj/structure/prop/souto_land/pole{ dir = 8 @@ -22802,89 +18697,33 @@ /obj/structure/prop/souto_land/pole, /turf/open/floor/carpet, /area/varadero/interior/bunks) -"pRy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/bible{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"pRP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_SE) -"pRR" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) "pRV" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/comms4) -"pRX" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) +"pRY" = ( +/turf/open/floor/plating/icefloor/warnplate/east, +/area/varadero/exterior/lz1_near) "pSg" = ( /obj/structure/inflatable/door, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"pSy" = ( -/obj/structure/closet/secure_closet/security_empty, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pSD" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"pSK" = ( +"pSt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"pTc" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1; - locked = 1; - name = "\improper Engine Room" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"pSE" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior_protected/vessel) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) "pTg" = ( /obj/structure/machinery/light{ dir = 1 @@ -22894,32 +18733,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"pTs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/crew{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/trackimp{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 18 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"pTI" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) +"pTp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "pTO" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -22927,25 +18744,43 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"pTQ" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, +"pUi" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 1; climb_delay = 1; layer = 2.99 }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/lz1_near) +"pVb" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 }, -/area/varadero/exterior/comms4) -"pUi" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"pVA" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"pVB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -22957,78 +18792,47 @@ icon_state = "hr_kutjevo"; name = "support struts" }, -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/lz1_near) -"pVh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"pVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"pVz" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/comms4) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "pVN" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/court) -"pWm" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"pXp" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"pWd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"pWM" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/hall_N) -"pXG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "green" +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "Revolting beyond description."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_teeth"; + name = "human-ish teeth"; + pixel_x = 1; + pixel_y = -2 }, -/area/varadero/interior/hall_SE) -"pXL" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"pWO" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - icon_state = "floor3" + dir = 4 }, -/area/varadero/interior/hall_N) +/obj/structure/machinery/vending/cola, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "pXT" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -23039,21 +18843,6 @@ "pYn" = ( /turf/closed/wall, /area/varadero/interior/records) -"pYt" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"pYv" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) "pYx" = ( /obj/structure/window/reinforced{ dir = 4; @@ -23098,40 +18887,13 @@ }, /turf/open/floor/carpet, /area/varadero/interior/research) -"pYK" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/monsoon) -"pYV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ +"pZB" = ( +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) -"pZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"pZD" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + pixel_x = 3 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "pZS" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -23144,20 +18906,41 @@ "pZT" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/lz2_near) +"qaf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qaE" = ( /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qaX" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) +"qaH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "qaY" = ( /obj/structure/sign/safety/water, /turf/closed/wall, /area/varadero/interior/library) +"qbj" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"qbm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qbX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -23165,48 +18948,38 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"qcC" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"qcD" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt"; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cherry{ - pixel_x = -10; - pixel_y = -9 +"qcg" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"qcn" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qcy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) "qcN" = ( /turf/closed/wall, /area/varadero/interior/medical) -"qdd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) -"qdk" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"qdi" = ( +/obj/structure/prop/fishing/line/long/part2, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"qdr" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) "qdL" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/security_space_law{ @@ -23216,6 +18989,14 @@ /obj/item/clothing/head/helmet, /turf/open/floor/wood, /area/varadero/interior/dock_control) +"qdQ" = ( +/turf/open/floor/shiva/redcorners/west, +/area/varadero/interior/security) +"qdU" = ( +/obj/structure/surface/rack, +/obj/item/implantpad, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qeh" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -23225,6 +19006,10 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) +"qes" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "qeu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -23253,22 +19038,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qfb" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = -4; - pixel_y = -5 - }, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qeQ" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "qfr" = ( /turf/open/gm/dirt, /area/varadero/exterior/comms4) @@ -23276,6 +19052,13 @@ /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"qfw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/phoronglass{ + amount = 32 + }, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) "qfC" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -23288,39 +19071,41 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"qgc" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "qgm" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"qgy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes/asteroid{ - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"qgR" = ( -/turf/open/floor/shiva{ - icon_state = "red" +"qgr" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/varadero/interior/hall_N) -"qhF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"qhN" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) +"qhh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargobay"; + name = "\improper Requesitions Storage Shutters" }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"qhy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"qhF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) "qhO" = ( /obj/effect/spawner/random/tool, /turf/open/gm/dirt, @@ -23337,22 +19122,29 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"qhZ" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qhT" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/security) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"qhY" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"qic" = ( +/obj/structure/largecrate/random{ + anchored = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "qio" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/maintenance) -"qir" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) "qis" = ( /obj/item/paper{ pixel_y = -6; @@ -23363,41 +19155,39 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qiv" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" +"qit" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/vp78, +/obj/item/weapon/gun/pistol/vp78{ + pixel_y = -4 }, -/area/varadero/interior/cargo) -"qiP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"qiF" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qjA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Colony Administration"; + req_access_txt = "100" }, -/obj/item/paper/crumpled{ - pixel_x = 15; - pixel_y = -9 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"qjQ" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/area/varadero/interior/technical_storage) -"qjd" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/laundry) -"qjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) "qjU" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -23408,80 +19198,104 @@ /obj/structure/largecrate/random, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qkF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qlj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"qlw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) -"qlW" = ( -/obj/structure/surface/table, -/obj/item/trash/plate, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qkx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/mess) -"qmF" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qkz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/area/varadero/exterior/pontoon_beach) -"qnf" = ( +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"qkG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) +"qkL" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/wood, +/area/varadero/interior/library) +"qli" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"qlN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"qlQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qmw" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qmZ" = ( +/turf/open/floor/shiva/redfull/west, /area/varadero/interior/administration) -"qnm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ +"qng" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "yellowfull" + icon_state = "pipe-j2" }, -/area/varadero/interior/hall_SE) -"qnN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"qnk" = ( +/obj/structure/machinery/power/monitor, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"qnz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave{ + desc = "There's two of them."; + pixel_y = 5 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/clothing/ears/earmuffs{ + pixel_y = 18 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qnK" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/digsite) "qnW" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/r_wall, /area/varadero/interior/electrical) +"qob" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "qoj" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -23491,33 +19305,32 @@ /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"qoE" = ( -/turf/open/floor{ - dir = 5; - icon_state = "asteroidwarning" +"qor" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/exterior/lz1_near) +/obj/structure/surface/rack, +/turf/open/floor/shiva/wred/southwest, +/area/varadero/interior/medical) "qoI" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/monsoon) -"qps" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "green" +"qpn" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/area/varadero/interior/court) -"qpD" = ( -/obj/item/device/multitool, -/turf/open/shuttle{ - icon_state = "floor6" +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qpy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "qpK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Underground Maintenance"; @@ -23526,27 +19339,14 @@ }, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qpZ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"qqs" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"qqA" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qqq" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Navigation Chamber" }, -/area/varadero/interior/maintenance) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "qqJ" = ( /obj/structure/sign/safety/bulkhead_door, /obj/structure/machinery/door_control/brbutton{ @@ -23557,25 +19357,14 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz1_near) -"qqM" = ( -/obj/structure/largecrate/random/mini, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/interior/maintenance/north) -"qqR" = ( -/obj/structure/prop/rock/brown{ - indestructible = 1; - unacidable = 1; - name = "sturdy rock(s)"; - desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +"qrg" = ( +/obj/structure/blocker/fog, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qrl" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) "qsb" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23589,33 +19378,35 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"qsh" = ( -/obj/structure/closet/secure_closet/security, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +"qsg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"qsm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 5; + pixel_y = 12 }, -/area/varadero/interior/security) -"qto" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security Interrogation"; - req_access_txt = "100" +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"qti" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/obj/structure/closet/crate, +/obj/item/prop/magazine/dirty/torn/alt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qtv" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice2"; @@ -23624,20 +19415,25 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"qtQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - desc = "There's two of them."; - pixel_y = 5 +"qtE" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 18 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/drill{ + pixel_y = 4 }, -/area/varadero/interior/research) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"qtN" = ( +/obj/structure/toilet, +/turf/open/floor/white, +/area/varadero/interior/security) "qul" = ( /turf/closed/wall/rock/brown, /area/varadero/interior/caves/north_research) @@ -23645,99 +19441,57 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"quP" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "qvo" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/administration) -"qvO" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"qvS" = ( +/turf/open/gm/coast/south, +/area/varadero/exterior/eastocean) +"qwr" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/varadero/interior/maintenance/security) -"qvQ" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"qxj" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qxo" = ( +/obj/structure/largecrate/random/mini/chest/b, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qxq" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/interior/maintenance/north) +"qxy" = ( +/obj/structure/platform_decoration/kutjevo{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"qxS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qxV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/mess) -"qvS" = ( -/turf/open/gm/coast/south, -/area/varadero/exterior/eastocean) -"qwB" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"qwQ" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qwU" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"qxa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"qxb" = ( -/obj/structure/bed/alien{ - can_buckle = 0; - color = "#aba9a9" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed/alien{ - buckling_y = 13; - color = "#aba9a9"; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"qxu" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/comms3) "qyk" = ( /obj/structure/machinery/light{ dir = 8 @@ -23753,34 +19507,51 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"qym" = ( -/obj/structure/barricade/handrail/wire{ +"qyz" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/maintenance/north) +"qyJ" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/lz1_near) +"qyO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qyQ" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior/disposals) -"qyH" = ( -/obj/structure/window/framed/colony/reinforced, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/paper/crumpled{ + pixel_x = 6; + pixel_y = 18 }, -/area/varadero/interior_protected/caves) -"qyJ" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "qyT" = ( /obj/structure/largecrate/random/case, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"qyZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "qza" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -23794,24 +19565,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"qzb" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qzd" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/paper/research_notes, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, -/area/varadero/interior/administration) "qzi" = ( /obj/structure/sign/safety/high_voltage, /obj/structure/sign/safety/hazard{ @@ -23823,18 +19576,14 @@ /obj/structure/machinery/door/airlock/almayer/engineering/autoname, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"qAd" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - dir = 1; - icon_state = "door_locked"; - locked = 1; - name = "\improper External Airlock" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +"qzG" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/access/dormatory, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) +"qzH" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "qAg" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, @@ -23843,52 +19592,55 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"qAr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) "qAy" = ( /obj/item/tool/shovel, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"qAI" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +"qAD" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 9; + icon_state = "p_stair_full" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"qAP" = ( +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"qBk" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"qBl" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qBn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -11; - pixel_y = 20 +/obj/structure/barricade/handrail{ + density = 0; + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "If this is removed, you cannot escape."; + health = 300; + icon_state = "ladder10"; + name = "ladder" }, -/area/varadero/interior/maintenance) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "qBy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -23898,19 +19650,18 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) +"qBJ" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "qBQ" = ( /obj/structure/coatrack, /obj/item/clothing/suit/armor/bulletproof, /turf/open/floor/wood, /area/varadero/interior/research) -"qBR" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) "qBU" = ( /obj/structure/machinery/space_heater, /obj/item/device/flashlight/lamp/green{ @@ -23918,13 +19669,10 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"qCk" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/administration) +"qCc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastbeach) "qCE" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/gin{ @@ -23933,44 +19681,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"qCI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) "qCT" = ( /obj/structure/inflatable, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qCY" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"qDh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qCW" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "qDr" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -23978,28 +19698,6 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"qDs" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"qDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"qDv" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) "qDR" = ( /obj/item/device/flashlight, /turf/open/floor/shiva, @@ -24017,13 +19715,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/suit/storage/jacket/marine/corporate, /turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"qEn" = ( -/obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +/area/varadero/interior/hall_SE) "qEt" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -24032,105 +19724,58 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qEG" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"qFe" = ( -/obj/effect/overlay/palmtree_r{ - icon_state = "palm2" - }, -/turf/open/gm/dirt{ - icon_state = "desert1" +"qFy" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 1 }, -/area/varadero/exterior/pontoon_beach) -"qFC" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_y = 12 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_NW) "qFI" = ( /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) "qFZ" = ( /turf/open/floor/wood, /area/varadero/interior/bunks) -"qGE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +"qGf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "qHc" = ( /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/caves/north_research) -"qHl" = ( -/obj/structure/prop/fishing/line/long/part2, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qHu" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"qHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) "qHJ" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/shuttle/elevator, /area/varadero/interior/hall_N) -"qId" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/electrical) -"qIi" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +"qIl" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/shiva/blue, +/area/varadero/interior/technical_storage) "qIF" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"qKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"qJh" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) +"qJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"qKj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "qKq" = ( /obj/structure/closet/secure_closet/RD, /obj/item/ammo_magazine/handful/lever_action, @@ -24147,126 +19792,51 @@ "qKZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz1_near) -"qLf" = ( +"qLu" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"qMn" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"qLq" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_2"; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"qLH" = ( -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"qMl" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"qMr" = ( -/obj/item/tool/minihoe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"qMD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = 3; - pixel_y = 9 - }, -/obj/item/device/cassette_tape/ocean{ - pixel_x = 6; - pixel_y = 4 +/obj/item/reagent_container/food/snacks/carpmeat{ + desc = "This leathery protofish was named the gullible toothfish for the combination of its near identical dentata to that of Homo sapiens sapiens and the fact that if released after being caught, it is not uncommon to catch the same one; it not having learned its lesson. Its meat is said to taste like bitter clove."; + icon = 'icons/obj/items/fishing_atoms.dmi'; + icon_state = "gullible_toothfish_gutted"; + name = "gullible toothfish"; + pixel_x = 1; + pixel_y = -2 }, -/obj/item/device/cassette_tape/pop2, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"qMI" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) "qMW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"qMY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"qNu" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz2_near) -"qNC" = ( -/obj/structure/surface/table, -/obj/item/tool/weldpack{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"qNE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"qNP" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +"qNi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"qNU" = ( +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/records) "qNX" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/lz2_near) @@ -24274,14 +19844,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"qOn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) +"qOp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "qOF" = ( /obj/item/tool/pen/blue, /obj/structure/surface/table/reinforced/prison, @@ -24291,95 +19857,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"qOO" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) "qOS" = ( /obj/item/reagent_container/glass/bucket, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) +"qOU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) "qOV" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"qPd" = ( -/obj/structure/machinery/light, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"qPk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) -"qPs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"qPG" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"qQd" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"qQe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"qQk" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"qOZ" = ( +/obj/item/reagent_container/food/snacks/eat_bar, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"qPU" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/maintenance) +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"qQl" = ( +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) "qQt" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24404,224 +19914,237 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"qQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"qQN" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"qRe" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/interior/comms1) -"qRi" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qQS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 8 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"qRn" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) "qRy" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, /turf/open/floor/wood, /area/varadero/interior/court) -"qRP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"qRR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/varadero/interior/maintenance/security) -"qSj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/comms3) -"qSJ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/laundry) +"qSb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/nanopaste, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"qSz" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"qSI" = ( +/obj/structure/surface/table, +/obj/item/prop/helmetgarb/flair_uscm, +/obj/item/storage/box/uscm_mre{ + pixel_x = -4; + pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"qSL" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, -/area/varadero/interior/morgue) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"qSO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "qSR" = ( /obj/structure/closet/crate/trashcart, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"qTh" = ( +"qSW" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + name = "Incendiary Ammunition Order"; + desc = "An order manifest for incendiary ammo that has yet to be filled out." + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"qTj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"qTs" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -1; - pixel_y = 9; - indestructible = 1; - unacidable = 1 +/turf/open/gm/coast/beachcorner2/south_east, +/area/varadero/exterior/pontoon_beach) +"qTw" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -13; + pixel_y = -3 }, -/turf/open/gm/dirt{ - icon_state = "desert1" +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/exterior/monsoon) -"qTs" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qTI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"qTM" = ( /obj/structure/platform/kutjevo/smooth{ + dir = 8; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/coast/beachcorner2/south_east, -/area/varadero/exterior/pontoon_beach) -"qTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/records) -"qTE" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"qTW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "qTZ" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/pontoon_beach) -"qUf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Underground Security"; - req_access_txt = "100" +"qUb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"qUv" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"qUA" = ( +/obj/item/stool{ + layer = 2.5; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"qUB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/disposals) +"qUJ" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "qUK" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"qUQ" = ( -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"qVb" = ( -/obj/item/stack/cable_coil/cyan, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"qVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"qVD" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 8; - pixel_y = -6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) +"qUR" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "qVL" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qVO" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"qVS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"qWt" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/hall_N) -"qWw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"qVM" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) +"qWr" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "qWC" = ( /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"qXn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 +"qXq" = ( +/obj/item/tank/anesthetic, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"qXM" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"qXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/mess) -"qXO" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "snow_mat" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/area/varadero/interior/maintenance) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"qXQ" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"qYf" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "qYg" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -24629,46 +20152,25 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"qYE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/fire/firefighter{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"qZr" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"qZH" = ( -/obj/structure/machinery/conveyor_switch, +"qYG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" + icon_state = "N" }, +/turf/open/floor/shiva/yellowcorners/east, /area/varadero/interior/cargo) +"qZw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/shiva/wred/northwest, +/area/varadero/interior/medical) "qZJ" = ( /obj/item/tool/warning_cone, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"qZR" = ( -/obj/structure/bed/chair{ - dir = 1; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +"qZN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "qZV" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -24677,6 +20179,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"rak" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -11; + pixel_y = -4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"rap" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) "rau" = ( /obj/structure/filingcabinet{ density = 0; @@ -24696,82 +20211,110 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"raW" = ( -/turf/closed/wall, -/area/varadero/interior_protected/caves/central) -"rbd" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"raF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/maintenance/north) -"rbp" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"raJ" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, /obj/structure/prop/invuln/minecart_tracks{ - dir = 5 + dir = 9 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"raW" = ( +/turf/closed/wall, +/area/varadero/interior_protected/caves/central) +"rbG" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"rbL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, -/obj/structure/platform_decoration/kutjevo, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 5; + pixel_y = 16 }, -/area/varadero/interior/oob) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"rbT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowcorners, +/area/varadero/interior/cargo) "rbU" = ( /turf/open/floor/wood, /area/varadero/interior/research) -"rco" = ( -/obj/structure/inflatable/door, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) "rcq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall, /area/varadero/interior/medical) +"rct" = ( +/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ + id = "undergroundhangarsouth"; + unacidable = 1; + name = "Pontoon South Door"; + openspeed = 17 + }, +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/interior/maintenance/north) "rcu" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/comms4) -"rcA" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +"rcY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 1 }, -/area/varadero/interior/medical) -"rdq" = ( -/obj/item/tool/wrench{ - pixel_x = -1; - pixel_y = -2 +/obj/structure/plasticflaps/mining, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"rdf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) "rdx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/carpet, /area/varadero/interior/library) +"rdz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"rdW" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/research) "red" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -24783,103 +20326,72 @@ }, /turf/open/gm/coast/east, /area/varadero/exterior/comms4) -"res" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/exterior/eastbeach) -"rex" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"reA" = ( -/obj/structure/xenoautopsy/tank/broken, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) +"rey" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/lz1_near) "reG" = ( /turf/closed/wall/r_wall/elevator{ dir = 10 }, /area/varadero/interior/hall_N) -"rfn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"reQ" = ( +/obj/structure/machinery/floodlight{ + name = "Floodlight" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"reS" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/plating/warnplate/east, +/area/varadero/interior/disposals) +"rfe" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"rft" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) "rfV" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"rgb" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"rgf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz1_near) "rgg" = ( /obj/structure/girder/displaced, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"rgy" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"rgz" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rgQ" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) +"rhq" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"rhA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/caves/swcaves) -"rgZ" = ( -/obj/item/tool/kitchen/knife, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" +/obj/structure/largecrate/random, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"rhU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/lz1_near) +/obj/item/device/flashlight, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "ria" = ( /obj/structure/bed/sofa/pews/flipped, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"rit" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"riF" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) "riJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/window/framed/colony, @@ -24897,53 +20409,21 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rja" = ( -/obj/item/toy/beach_ball, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) "rjn" = ( /turf/closed/wall/r_wall/elevator{ dir = 6 }, /area/varadero/interior/records) -"rjo" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/lz1_near) -"rjE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = -6 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/shiva{ +"rjB" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"rjH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + icon_state = "chair_alt" }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/medical) +"rjL" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/pontoon_beach) "rjM" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -24956,21 +20436,17 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"rjZ" = ( -/obj/structure/machinery/light{ +"rjW" = ( +/obj/structure/platform/kutjevo/rock{ dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"rkA" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/platform/kutjevo/rock, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -3 }, -/area/varadero/exterior/lz1_near) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/maintenance/south) "rkH" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -10; @@ -24980,42 +20456,40 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"rkO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"rls" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "rlw" = ( /obj/item/tool/pickaxe, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rlI" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +"rlF" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/pontoon_beach) -"rlJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/hall_NW) -"rme" = ( -/obj/structure/surface/table, -/obj/item/tool/plantspray/pests, -/obj/item/tool/plantspray/weeds{ - pixel_x = 1; - pixel_y = -2 +"rlM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"rlS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "rmo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/medical/advanced/bruise_pack/upgraded{ @@ -25030,121 +20504,58 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rmr" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"rmB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"rmL" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/storage/box/flashbangs, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" - }, -/area/varadero/interior/security) -"rmS" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"rmx" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"rmz" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rmV" = ( /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"rnj" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"rnL" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/lz2_near) -"rnP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"roy" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/surface/table, -/obj/item/spacecash/c1000{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"rnc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = 5; + pixel_y = 4 }, -/area/varadero/interior/hall_NW) -"roJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Underground Requesitions Office"; - req_access_txt = "100"; - req_one_access = null +/obj/item/paper{ + pixel_x = -11; + pixel_y = 4 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/item/paper/research_notes/good{ + pixel_x = -15; + pixel_y = 2 }, -/area/varadero/interior/cargo) -"roT" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rnH" = ( +/obj/item/device/flashlight, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"roL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/barricade/handrail{ - density = 0; - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"rpp" = ( +/obj/structure/catwalk, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/structure_lattice{ +/obj/structure/filtration/flacculation_arm{ density = 0; - desc = "If this is removed, you cannot escape."; - health = 300; - icon_state = "ladder10"; - name = "ladder" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"rpd" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + layer = 2.1 }, -/area/varadero/interior/maintenance/security) +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "rpu" = ( /turf/closed/wall, /area/varadero/interior/oob) @@ -25152,29 +20563,22 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/gm/dirt, /area/varadero/interior_protected/caves) -"rpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lights, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"rpI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rpK" = ( +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"rqb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/varadero/interior/electrical) -"rqa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/attachment, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) "rqg" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -25187,40 +20591,20 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/comms2) -"rqn" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/security) -"rqx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"rqG" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 +"rqm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"rqT" = ( +/obj/structure/machinery/r_n_d/server, +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) "rrp" = ( /obj/item/paper_bin, /obj/item/tool/stamp{ @@ -25232,68 +20616,27 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"rrr" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rrA" = ( +"rrs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" + icon_state = "E" }, +/turf/open/floor/shiva/north, /area/varadero/interior/cargo) "rsf" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/caves/east) -"rsh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"rsj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/microwavable/donkpocket{ - pixel_x = -5; - pixel_y = 17 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"rsB" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"rsL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"rsF" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior/security) -"rsM" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"rsJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" + dir = 5 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) "rsO" = ( /obj/structure/platform/kutjevo/smooth{ @@ -25306,200 +20649,118 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) +"rsY" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"rtk" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) "rtm" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating/icefloor, /area/varadero/exterior/lz1_near) -"rtr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"rtu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/shiva{ - icon_state = "green" +"rtt" = ( +/obj/effect/decal/remains/xeno{ + pixel_y = 25 }, -/area/varadero/interior/hall_SE) -"rtx" = ( -/obj/structure/disposalpipe/segment, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"rtG" = ( +/turf/open/floor/white, +/area/varadero/interior/security) +"ruj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"rtP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"rtR" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rtV" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"rvD" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/exterior/monsoon) -"rwh" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"ruB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) -"rwP" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"rwV" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"rxe" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"rxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"ryD" = ( -/turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/maintenance/security) -"ryG" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/red{ - pixel_x = -2; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"rzg" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"rzM" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"rzO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"rzU" = ( -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"rAf" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Sample Isolation"; + req_access = null; + req_one_access = null }, -/obj/item/trash/plate{ - pixel_y = 7 +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"ruO" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/area/varadero/interior_protected/vessel) -"rAj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/wood, +/area/varadero/interior/records) +"rvk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/maintenance) +"rvy" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"rvD" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/exterior/monsoon) +"rwg" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"rwK" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"rye" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"ryn" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"ryt" = ( +/obj/structure/surface/table, +/obj/item/device/binoculars, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"ryy" = ( +/obj/item/device/camera, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) +"ryD" = ( +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/maintenance/security) +"rza" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"rzE" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) "rAt" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/caves/central) -"rAy" = ( -/obj/structure/bedsheetbin, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) "rBa" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -25507,41 +20768,62 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"rBi" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ +"rBk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/storm_siren{ dir = 8; - icon_state = "redfull" + pixel_x = 3 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "rBq" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"rBP" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" +"rBv" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/area/varadero/interior/hall_SE) -"rCf" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/gm/dirt, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"rCs" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 +"rBO" = ( +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"rBS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/item/ammo_magazine/pistol/vp70, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 +/obj/item/ammo_magazine/pistol{ + pixel_x = -4 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol{ + pixel_x = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"rCf" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/gm/dirt, +/area/varadero/exterior/lz1_near) +"rCv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rCB" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_x = -8 @@ -25551,31 +20833,62 @@ }, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"rDz" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +"rCF" = ( +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 }, -/area/varadero/interior_protected/caves) -"rDD" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"rCH" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/maintenance) +"rCY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"rDI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) +"rDN" = ( +/turf/open/floor/shiva/purple/southwest, +/area/varadero/interior/research) +"rDY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/security) -"rEO" = ( -/obj/structure/surface/rack, -/obj/item/storage/pouch/shotgun, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"rEn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"rFa" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"rFi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) "rFv" = ( /obj/structure/surface/table/woodentable, /obj/item/reagent_container/food/snacks/birthdaycakeslice, @@ -25596,14 +20909,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"rGl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"rFT" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"rGs" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/effect/decal/warning_stripes/asteroid{ + dir = 1; + icon_state = "warning_c" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "rGA" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random/mini{ @@ -25612,20 +20931,27 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rGE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"rGK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"rGP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/exterior/comms4) -"rHv" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"rGV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/cargo) "rHE" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25633,36 +20959,26 @@ }, /turf/closed/wall/wood, /area/varadero/interior/beach_bar) -"rIF" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 +"rHU" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/surface/table, +/obj/item/spacecash/c1000{ + pixel_y = 6 }, -/area/varadero/interior/caves/north_research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_NW) +"rIg" = ( +/obj/item/device/mass_spectrometer, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rIG" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"rIN" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/court) -"rIU" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/chapel) "rJq" = ( /obj/structure/surface/table, /obj/item/pamphlet/skill/engineer{ @@ -25675,34 +20991,28 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/farocean) -"rJI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rJE" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva{ +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"rKb" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/white, +/area/varadero/interior/security) +"rKd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"rKf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"rKl" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"rKy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/comms3) "rKB" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -25712,20 +21022,10 @@ /obj/item/clothing/suit/armor/vest, /turf/open/floor/wood, /area/varadero/interior/administration) -"rKL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"rKM" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/pontoon_beach) +"rKK" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "rKS" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25740,51 +21040,30 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"rLC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"rLK" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0; - pixel_x = 11; - pixel_y = 9 +"rLM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = 10; - pixel_y = 20 +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/bed/chair{ dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/caves/north_research) -"rLU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"rLW" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/chunk, -/obj/item/trash/raisins, -/turf/open/floor/shiva{ - icon_state = "floor3" + icon_state = "chair_alt" }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) "rMb" = ( /obj/structure/flora/bush/ausbushes/var3/fernybush, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"rMi" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "rMl" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -25792,82 +21071,97 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"rMM" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"rMN" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" +"rMy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/varadero/interior/hall_SE) -"rNf" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) +"rMS" = ( +/obj/structure/catwalk{ + indestructible = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"rMU" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/area/varadero/exterior/comms4) -"rNo" = ( -/obj/structure/machinery/holosign_switch{ - id = "otice"; - pixel_y = -24 +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"rMY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/surface/table, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"rNA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/medical) -"rOL" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/hall_SE) +"rNX" = ( +/obj/structure/machinery/r_n_d/destructive_analyzer, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"rOc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 7; - pixel_y = 15 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"rOu" = ( +/obj/item/tool/kitchen/knife, +/obj/structure/surface/table, +/turf/open/floor/asteroidwarning/east, +/area/varadero/exterior/lz1_near) +"rOP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"rPk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/laundry) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "rPD" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/wood, /area/varadero/interior/records) -"rQe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"rQk" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" +"rQh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "greencorners" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red, +/area/varadero/interior/hall_N) +"rQs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"rQG" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "rQU" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -25877,17 +21171,13 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rQV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"rQY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"rRc" = ( +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/administration) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "rRm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25895,43 +21185,62 @@ /obj/item/circuitboard/apc, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"rRq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"rRo" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/interior/maintenance/north) +"rRG" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/varadero/exterior/lz1_near) +"rRP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/maintenance/security) -"rRz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/filingcabinet{ + density = 0; + icon_state = "chestdrawer"; + pixel_x = -8; + pixel_y = 11 + }, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"rRS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/arcturian_ace{ + pixel_x = -5; + pixel_y = 5 }, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/red/east, /area/varadero/interior/administration) +"rRY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) "rSl" = ( /obj/item/tool/wrench, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"rSu" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"rSx" = ( -/obj/structure/surface/table, -/obj/structure/largecrate/random/mini/chest{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/shiva{ +"rSw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"rSK" = ( +/obj/structure/machinery/alarm{ dir = 8; - icon_state = "yellowfull" + pixel_x = 24 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/turf/open/floor/shiva/yellow/northeast, /area/varadero/interior/cargo) "rSX" = ( /obj/structure/window/reinforced{ @@ -25962,26 +21271,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"rTi" = ( -/obj/structure/window_frame/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"rTu" = ( -/obj/structure/surface/table/woodentable, -/obj/item/handcuffs, -/obj/item/weapon/baton, -/turf/open/floor/wood, -/area/varadero/interior/security) -"rTv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) "rTT" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -25991,13 +21280,6 @@ }, /turf/open/floor/plating, /area/varadero/interior/disposals) -"rUa" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "rUc" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -26015,14 +21297,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"rUI" = ( -/obj/structure/closet/crate/construction, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/item/tool/hatchet, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) "rVi" = ( /obj/item/tool/candle, /turf/open/floor/carpet, @@ -26035,121 +21309,142 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_console/two) -"rVI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"rVS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/comms3) -"rVZ" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"rWx" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/mirror{ - pixel_y = -28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"rWJ" = ( -/obj/item/stool, -/turf/open/floor/shiva{ +"rVR" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/security) +"rWm" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/area/varadero/interior/research) +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"rWD" = ( +/obj/structure/surface/table, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"rWK" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "rWN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) -"rWY" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"rXk" = ( +/turf/open/gm/coast/beachcorner/south_west, +/area/varadero/exterior/lz2_near) +"rXl" = ( +/obj/structure/machinery/computer/cameras/telescreen{ + name = "Interrogation Telescreen"; + network = list("interrogation"); + pixel_y = 32 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"rXx" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/varadero/interior/maintenance/security) -"rXf" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "redcorners" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"rXB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/morgue) -"rXk" = ( -/turf/open/gm/coast/beachcorner/south_west, -/area/varadero/exterior/lz2_near) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"rXL" = ( +/obj/item/tool/shovel, +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) "rXS" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"rYe" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/mess) "rYi" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"rYC" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"rYl" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"rYD" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/varadero/exterior/farocean) -"rYO" = ( -/obj/structure/prop/static_tank/water{ - pixel_y = 8 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/bed{ + can_buckle = 0 }, -/area/varadero/interior/disposals) -"rYR" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 22; - indestructible = 1; - unacidable = 1; - layer = 4.1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/machinery/light, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"rYV" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/exterior/farocean) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/eastbeach) "rZr" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 6 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) +"rZs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"sab" = ( +/obj/structure/target/syndicate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"sae" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) "sah" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -26159,72 +21454,85 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"saq" = ( -/obj/item/storage/firstaid/o2{ - layer = 3.1; - pixel_x = 2; - pixel_y = 10 - }, +"sao" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - layer = 3.2; - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/medical) -"saC" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" +/obj/structure/machinery/microwave{ + pixel_y = 6 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) "saQ" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sbc" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sbq" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"sbt" = ( +/obj/item/tool/shovel, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"sbG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/closet/crate, -/obj/item/trash/crushed_cup, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/green/southeast, +/area/varadero/interior/court) +"scd" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/cargo) -"sbX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"scv" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/security) "scD" = ( /obj/structure/bed/chair{ icon_state = "chair_alt" }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"scI" = ( +/obj/structure/surface/table, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "scL" = ( /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"scO" = ( -/obj/item/paper{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"scX" = ( +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"sdl" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "sdq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -26247,74 +21555,58 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sdy" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/maintenance/north) "sdz" = ( /turf/closed/wall/r_wall, /area/varadero/interior/hall_NW) -"sdS" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) +"sdI" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior/caves/north_research) "sdU" = ( /obj/effect/landmark/yautja_teleport, /turf/open/floor/wood, /area/varadero/interior/research) -"sdZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick/red{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"ses" = ( +"sew" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"seY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"seJ" = ( +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/comms3) +"sfc" = ( +/obj/item/paper_bin{ + pixel_y = 6 }, -/area/varadero/interior/medical) -"sff" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/obj/item/tool/pen/blue{ + pixel_x = 7 }, -/area/varadero/interior/maintenance) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flash, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) "sfj" = ( /obj/item/shard{ icon_state = "medium" }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"sfp" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"sfy" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/varadero/interior/cargo) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) "sfF" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -26322,80 +21614,58 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"sfM" = ( -/obj/structure/barricade/handrail/wire, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +"sfY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) +"sgg" = ( +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/morgue) "sgk" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sgn" = ( -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"sgq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"sgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" +"sgw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/medical) +/obj/item/tool/surgery/retractor/predatorretractor, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "sgz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) +"sgL" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/lz1_near) "shb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/medical) -"shG" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"shs" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"shN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/varadero/interior/hall_N) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) "shO" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -26414,104 +21684,80 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"sic" = ( -/obj/structure/machinery/light{ - dir = 1 +"siG" = ( +/obj/structure/prop/rock/brown, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) +"siN" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"siW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/machinery/alarm{ - pixel_y = 24 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"sjd" = ( +/obj/item/shard{ + icon_state = "medium" }, -/area/varadero/interior/comms3) -"sid" = ( -/obj/structure/window/framed/colony, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior/maintenance/north) -"sjD" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"sjF" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/hall_SE) -"sjR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"skp" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) +"skb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"skJ" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"skL" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/comms4) -"slj" = ( +"skV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/screwdriver{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/tool/plantspray/pests/old/phosmet{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/weapon/wirerod{ - pixel_x = 8 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"slw" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"slA" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 12; - pixel_y = 25 +/obj/item/device/demo_scanner{ + pixel_x = 5; + pixel_y = 8 }, -/obj/structure/bed/chair/comfy{ +/obj/item/device/reagent_scanner{ pixel_x = -7; - pixel_y = 18 - }, -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 7; - pixel_y = 12 + pixel_y = 3 }, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"sla" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + health = 80 }, -/area/varadero/interior/maintenance/security) +/obj/structure/surface/rack, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "slB" = ( /obj/structure/filingcabinet{ density = 0; @@ -26528,133 +21774,171 @@ /obj/structure/machinery/vending/snack, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"smx" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" +"smi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/administration) +"smA" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior_protected/vessel) -"smE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/prop/invuln/minecart_tracks{ dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"smX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 }, -/area/varadero/interior/maintenance/security) -"smO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 }, -/area/varadero/interior/administration) +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 + }, +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"snf" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "snl" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/hall_N) +"sno" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) "snq" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"sny" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"sns" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -9 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/floor3, +/area/varadero/interior_protected/caves/central) "snE" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"snP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/curtain/red, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"snS" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"sou" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"spd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"snR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, +/turf/open/floor/shiva/green/northeast, +/area/varadero/interior/court) +"sop" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/shiva/greenfull/west, /area/varadero/interior/medical) -"spv" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"spP" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" +"soS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/varadero/interior/court) -"sqG" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"soW" = ( +/obj/structure/machinery/photocopier, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"spx" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/farocean) +"spL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"sqz" = ( +/obj/structure/window/reinforced{ + dir = 4 }, +/turf/open/floor/shiva/purple, /area/varadero/interior/research) -"sre" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 +"sqX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"src" = ( +/obj/structure/bedsheetbin, +/obj/item/storage/box/attachments{ + pixel_x = -2; + pixel_y = 8 }, -/area/varadero/interior/records) +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "srg" = ( /turf/open/gm/dirt, /area/varadero/interior/caves/north_research) +"srw" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"srz" = ( +/obj/structure/window/framed/colony/reinforced{ + color = "#aba9a9" + }, +/obj/structure/curtain/red, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"srG" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) +"srO" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/blue, +/area/varadero/interior/maintenance) "srU" = ( /obj/item/reagent_container/glass/bucket{ pixel_x = -12; @@ -26673,119 +21957,53 @@ }, /turf/closed/wall, /area/varadero/interior/hall_N) -"ssg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"ssQ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/electrical) -"ssh" = ( -/obj/structure/prop/turbine_extras/left, -/obj/item/tool/crowbar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 }, -/area/varadero/interior/comms1) -"ssv" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"stf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) "stl" = ( /turf/open/floor/plating/bare_catwalk, /area/varadero/exterior/pontoon_beach) -"stv" = ( -/obj/structure/closet/secure_closet/medical1{ - req_access_txt = "100" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"stw" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/maintenance/security) -"stK" = ( -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves/digsite) -"stU" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"stV" = ( +"stn" = ( /obj/structure/reagent_dispensers/water_cooler{ density = 0; + pixel_x = -10; pixel_y = 19 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"suC" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"suE" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/maintenance) -"suN" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"suY" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"stz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"sve" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/medical) "svt" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -26797,12 +22015,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"svG" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "svH" = ( /obj/structure/surface/table/woodentable, /obj/item/book/manual/marine_law{ @@ -26819,22 +22031,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"swa" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"swf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "swj" = ( /obj/structure/closet/secure_closet/detective, /obj/structure/machinery/firealarm{ @@ -26843,32 +22039,36 @@ /obj/item/storage/pouch/machete/full, /turf/open/floor/wood, /area/varadero/interior/security) -"swk" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"swn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/varadero/interior_protected/maintenance/south) -"swv" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"swF" = ( +/obj/structure/surface/table, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"swK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"swM" = ( /obj/structure/surface/rack, -/obj/item/pizzabox/meat, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"swS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "swV" = ( /obj/structure/closet/crate/construction, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) +"sxj" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"sxF" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "sxL" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -26886,72 +22086,17 @@ /obj/item/weapon/gun/energy/yautja/plasmapistol, /turf/open/floor/interior/plastic, /area/varadero/interior_protected/caves/digsite) -"sxY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"syb" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol{ - pixel_x = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"syl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"syL" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"syM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/circuitboard/computer/atmos_alert, -/obj/item/circuitboard/machine/smes{ - pixel_x = -7; +"syF" = ( +/obj/structure/machinery/light/small, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; pixel_y = 7 }, -/obj/item/storage/box/mousetraps{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"syN" = ( +/turf/open/floor/shiva/green, +/area/varadero/interior/court) "szh" = ( /turf/closed/wall/r_wall/elevator{ dir = 4 @@ -26965,249 +22110,105 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"szZ" = ( -/obj/structure/curtain/red, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"sAf" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"sAR" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "multi_tiles" - }, +"szJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"sAY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"sAl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/inflatable, +/obj/item/inflatable/door, +/obj/item/storage/box/engineer, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"sAJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"sBk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" + name = "\improper Underground Technical Storage"; + req_access_txt = "100" }, -/area/varadero/interior/research) -"sBF" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"sBD" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Morgue"; req_access_txt = "100" }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"sBN" = ( -/obj/structure/target/syndicate, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) +/turf/open/floor/dark2, +/area/varadero/interior/morgue) "sBX" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/laundry) -"sCk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"sCp" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"sCA" = ( +"sCI" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"sCJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"sCK" = ( -/obj/structure/closet/secure_closet/scientist, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" - }, -/area/varadero/interior/research) -"sCV" = ( -/obj/structure/machinery/alarm{ - dir = 8; - pixel_x = 24 +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 3 }, -/obj/structure/machinery/firealarm{ +/obj/effect/spawner/random/attachment, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"sCM" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; pixel_y = 24 }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"sDf" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"sDj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"sDo" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"sDE" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - icon_state = "pointybush_3"; - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"sCN" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"sCQ" = ( +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) "sDH" = ( /obj/item/grown/log, /obj/effect/decal/cleanable/dirt, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"sDM" = ( -/turf/open/floor/shiva{ - icon_state = "purple" - }, -/area/varadero/interior/research) -"sDQ" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"sDZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"sFa" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 2.991 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"sFJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) -"sFN" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/turf/open/gm/dirt{ - icon_state = "desert3" +"sEn" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/area/varadero/exterior/lz1_near) -"sGb" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) +"sEK" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sGj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Disposals"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/yellow, /area/varadero/interior/disposals) -"sGo" = ( -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"sGY" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"sGB" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/area/varadero/interior/cargo) -"sHJ" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"sHp" = ( +/obj/structure/bedsheetbin{ + pixel_y = 4 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/security) +"sHw" = ( +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"sHF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/varadero/exterior/comms4) +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/cargo) "sHO" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -27216,69 +22217,17 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"sHV" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sIf" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/medical) -"sIn" = ( -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"sIK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"sIQ" = ( -/obj/item/stack/sheet/wood/small_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"sJm" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" +"sIw" = ( +/obj/structure/closet/crate/construction, +/obj/item/grown/log, +/turf/open/gm/dirt/desert2, +/area/varadero/exterior/monsoon) +"sJo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/morgue) "sJq" = ( /obj/structure/window/reinforced{ dir = 4; @@ -27300,43 +22249,29 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"sJx" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/chips, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"sJF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "darkgreencorners2" - }, -/area/varadero/interior/hall_SE) -"sJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"sJz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/hall_SE) -"sKe" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purple" +/turf/open/floor/shiva/green/northwest, +/area/varadero/interior/court) +"sKa" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"sKk" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"sKx" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/varadero/interior/research) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_N) "sKz" = ( /obj/structure/closet/crate/supply, /obj/item/storage/box/wy_mre, @@ -27352,48 +22287,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"sKL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "purple" +"sKG" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/varadero/interior/research) +/obj/structure/machinery/light/small, +/turf/open/floor/white, +/area/varadero/interior/toilets) "sKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sLi" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light{ +"sLr" = ( +/obj/structure/bed/chair, +/obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"sLO" = ( -/obj/item/device/flashlight/slime{ - mouse_opacity = 0; - invisibility = 1; - indestructible = 1; - alpha = 0 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pool) -"sLU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"sLP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/administration) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "sMn" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/carpet, @@ -27403,101 +22322,107 @@ /obj/item/prop/magazine/dirty, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"sMS" = ( -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"sMX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/comms3) +"sNn" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/red/west, /area/varadero/interior/administration) -"sNa" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"sNl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"sNp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) "sNx" = ( /turf/closed/wall/rock/brown, /area/varadero/exterior/farocean) -"sNy" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"sNJ" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/exterior/comms4) -"sNT" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/pillbottles{ + pixel_x = -7; + pixel_y = 6 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/storage/pill_bottle/packet/bicaridine{ + pixel_x = 6; + pixel_y = -2 }, -/area/varadero/interior/maintenance/north) -"sOj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/junction, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"sNV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"sOp" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "sOw" = ( /obj/structure/inflatable, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"sPh" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/shiva{ +"sOB" = ( +/obj/structure/bed/chair/comfy/orange{ + buckling_y = 9; dir = 8; - icon_state = "yellowfull" + pixel_y = 9 }, -/area/varadero/interior/electrical) +/obj/item/device/megaphone{ + layer = 2; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest{ + desc = "It oozes authority, prestige, and sick summer vibes."; + name = "life guard's vest"; + pixel_x = 10; + pixel_y = -9 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/maintenance) "sPs" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/wood, /area/varadero/interior/security) -"sPD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"sPv" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/comms2) -"sPY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/obj/structure/platform_decoration/kutjevo{ + dir = 4 }, -/area/varadero/interior/electrical) -"sQn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/prop/invuln/minecart_tracks, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"sPN" = ( +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"sPR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/research) +/obj/structure/machinery/light, +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/research) +"sQl" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"sQp" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "sQs" = ( /obj/structure/filingcabinet{ density = 0; @@ -27516,9 +22441,27 @@ /obj/item/storage/pill_bottle/inaprovaline/skillless{ pixel_x = -5 }, -/obj/item/ammo_magazine/rifle, -/turf/open/floor/wood, -/area/varadero/interior/bunks) +/obj/item/ammo_magazine/rifle, +/turf/open/floor/wood, +/area/varadero/interior/bunks) +"sQt" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"sQC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"sQN" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) "sQR" = ( /obj/item/ore/coal, /obj/item/ore/silver{ @@ -27527,9 +22470,19 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"sQZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) "sRs" = ( /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) +"sRI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "sRM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -27546,129 +22499,25 @@ /obj/structure/surface/table/woodentable, /turf/open/floor/carpet, /area/varadero/interior/maintenance/north) -"sSz" = ( -/obj/item/device/camera{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/evidencebag{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sSU" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Underground Command Center"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"sSZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"sTA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"sTT" = ( -/obj/structure/machinery/light, -/obj/structure/closet/toolcloset, -/obj/item/clothing/mask/rebreather, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"sTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Underground Medical Laboratory"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"sUj" = ( +"sTD" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; climb_delay = 1; layer = 2.99 }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) -"sUm" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" - }, -/area/varadero/interior/security) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/comms4) +"sTE" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) "sUp" = ( /obj/item/toy/beach_ball, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"sUG" = ( -/obj/item/tool/pickaxe/plasmacutter, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"sUK" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -1; - pixel_y = 12 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - density = 0 - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) "sVk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -27683,6 +22532,9 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) +"sVF" = ( +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) "sVH" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -27691,12 +22543,25 @@ }, /turf/closed/wall/rock/brown, /area/varadero/interior/oob) -"sWp" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, +"sVJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/north, /area/varadero/interior/medical) +"sWq" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "sXb" = ( /turf/closed/wall, /area/varadero/interior/library) @@ -27708,88 +22573,75 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/farocean) -"sYi" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/comms3) +"sXA" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"sYA" = ( +/obj/structure/largecrate/random, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "sZd" = ( /obj/structure/girder/displaced, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"sZe" = ( -/obj/item/paper, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"sZW" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"sZi" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/exterior/comms4) +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "tak" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"tam" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"tbQ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"tbo" = ( +/obj/structure/surface/rack, +/obj/item/broken_device{ + desc = "A timeless piece of technology from another era, of spacemen who once plunged into the 12th Bay and beyond." }, -/area/varadero/interior/administration) -"tcq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"tbN" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) +"tca" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance) -"tcS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor{ - icon_state = "white" +"tcm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/toilets) -"tcX" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"tcI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"tcV" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, -/area/varadero/interior_protected/maintenance/south) +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastocean) +"tcY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"tdc" = ( +/obj/structure/prop/rock/brown, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "tdp" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -27806,92 +22658,32 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"tdy" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/marine_law{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) +"tdA" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "tdN" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"tdX" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"tdS" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/platform/kutjevo/smooth{ +/obj/structure/window/reinforced{ dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"teg" = ( -/obj/structure/girder, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"ten" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"teu" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/technical_storage) -"tex" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + health = 80 }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/medical) +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/weapon/gun/rifle/sniper/svd, +/obj/structure/window/reinforced, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "tez" = ( /obj/item/toy/bikehorn/rubberducky, /turf/open/gm/coast/beachcorner/north_west, @@ -27901,50 +22693,31 @@ /obj/structure/sign/banners/happybirthdaysteve, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"teI" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/eastbeach) +"teM" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "teT" = ( /obj/structure/largecrate/random/case/small, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"tfc" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz2_near) -"tfj" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_N) -"tfC" = ( -/obj/structure/showcase{ - color = "#95948B"; - desc = "A grey statue dawned in ancient armor, it stares into your soul."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Eternal guardian" - }, -/obj/item/clothing/suit/armor/yautja_flavor{ - anchored = 1 - }, -/obj/item/weapon/harpoon/yautja{ - anchored = 1; - name = "Alien Harpoon"; - pixel_x = 6 - }, -/obj/item/clothing/mask/yautja_flavor{ - anchored = 1; - unacidable = 0 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"teY" = ( +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/maintenance/north) +"tfn" = ( +/obj/item/stool, +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"tfK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/caves/digsite) +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "tgk" = ( /obj/structure/filingcabinet{ density = 0; @@ -27960,6 +22733,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) +"tgq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11; + pixel_y = 3 + }, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "tgC" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -27971,16 +22752,24 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tgE" = ( -/turf/open/gm/dirt{ - icon_state = "desert_dug" - }, -/area/varadero/exterior/pontoon_beach) "tgK" = ( /obj/structure/closet/crate/construction, /obj/item/stack/sandbags_empty/half, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"tgT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"tgZ" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "thn" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/shiva, @@ -27989,52 +22778,36 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/north) -"thY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/closet/crate/trashcart, -/obj/item/stack/sheet/mineral/plastic{ - amount = 3 - }, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) "tia" = ( /obj/structure/machinery/conveyor, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) +"tir" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "tiw" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/security) +"tiB" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) "tiF" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"tjn" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/monsoon) "tjs" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -28053,12 +22826,10 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tjF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) +"tjw" = ( +/obj/structure/machinery/bot/mulebot, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "tjO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/stool{ @@ -28066,55 +22837,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"tjS" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"tkh" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, -/area/varadero/exterior/eastbeach) -"tkr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"tkw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Breakroom"; - req_one_access = null; - req_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) +"tjY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) +"tkc" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "tkF" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"tkT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/administration) -"tkV" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"tlf" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"tll" = ( +/obj/item/stack/sheet/wood/small_stack, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tlq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 2; + indestructible = 1; + unacidable = 1 }, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) +"tlB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; @@ -28127,24 +22880,12 @@ name = "support struts" }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; + dir = 8; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"tlq" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 2; - indestructible = 1; - unacidable = 1 - }, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) "tlE" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1; @@ -28153,58 +22894,53 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tlG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"tlT" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"tmm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" +"tlF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"tlK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/comms3) -"tmC" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"tmo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) "tmZ" = ( /turf/open/gm/coast/west, /area/varadero/exterior/lz2_near) -"tng" = ( -/obj/item/stool{ - layer = 2.5; - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"tnN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1; - name = "\improper Theta-V Research Laboratory"; - req_access_txt = "100" +"tnO" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Construction Light" }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"tou" = ( +/turf/open/floor/shiva/purplecorners/west, /area/varadero/interior/research) +"tow" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"toE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) "toN" = ( /obj/item/tool/warning_cone{ pixel_x = 5; @@ -28212,6 +22948,12 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/vessel) +"toO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) "toU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28239,92 +22981,73 @@ }, /turf/open/floor/plating, /area/varadero/interior/administration) -"tpB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -16; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"tpL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/court) -"tpV" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -13; - pixel_y = -3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"tqa" = ( -/obj/structure/platform/kutjevo/smooth{ +"tpu" = ( +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"tpx" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; dir = 4; - climb_delay = 1; - layer = 2.99 + name = "plasma power generator" }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"tpQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 3.5 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/eastbeach) "tqh" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/research) -"tqr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"tqp" = ( +/obj/structure/toilet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/varadero/interior/toilets) +"tqT" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"tqV" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"trh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"tqW" = ( +/turf/open/floor/shiva/redfull, +/area/varadero/interior/security) +"trk" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/shorts/black, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.1; + pixel_x = -5; + pixel_y = 15 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/reagent_container/glass/rag{ + pixel_x = 6; + pixel_y = 14 }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/laundry) +"trq" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_N) +"trv" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "trB" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/absinthe, @@ -28364,45 +23087,41 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"tso" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/maintenance) -"tsz" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" +"tsA" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 22; + indestructible = 1; + unacidable = 1; + layer = 4.1 }, -/area/varadero/interior/hall_SE) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) "tsC" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass{ icon_state = "sparsegrass_3" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tsX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) -"tuL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) +"tsL" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"ttY" = ( +/obj/item/tool/hatchet, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"tuP" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) "tuR" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/grass/grass1/weedable, @@ -28415,36 +23134,23 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating, /area/varadero/interior/disposals) -"tuZ" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"tve" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/co2{ - pixel_y = 7 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"tvv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"tvf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate/trashcart, +/obj/item/stack/sheet/mineral/plastic{ + amount = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) +"tvm" = ( +/obj/structure/largecrate/random/mini/med{ + layer = 3.01; + pixel_x = -13; + pixel_y = 11 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "tvI" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/condiment/peppermill{ @@ -28454,114 +23160,162 @@ /obj/effect/spawner/random/attachment, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"twh" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/storm_siren{ - dir = 8; - pixel_x = 3 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +"tvM" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"tvN" = ( +/obj/structure/surface/table, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"twk" = ( +/obj/item/tool/mop, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"twT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, -/area/varadero/interior/security) -"twm" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"txQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"txY" = ( /obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "green" + dir = 8 }, -/area/varadero/interior/hall_SE) -"tyT" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"tyN" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"tzv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) +"tzA" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/wire{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"tzp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_NW) -"tzw" = ( -/turf/open/floor{ - icon_state = "wood" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tzB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"tzY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/library) -"tzP" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/hall_SE) +"tAD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tAM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_SE) +"tAQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/maintenance) +"tBq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"tBF" = ( +/turf/open/floor/asteroidwarning, /area/varadero/exterior/lz1_near) -"tBm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) +"tBQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"tBU" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) "tCA" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/caves/east) -"tCG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"tCQ" = ( +/obj/structure/prop/souto_land/pole{ + dir = 1 }, -/area/varadero/exterior/lz1_near) -"tCM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 24 }, -/area/varadero/interior/security) -"tDh" = ( -/obj/structure/pipes/portables_connector{ +/obj/structure/flora/pottedplant{ + desc = "How did that get in there?"; + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"tCS" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" + }, +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/varadero/interior/medical) -"tDo" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tDj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OMinus, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"tDM" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior_protected/caves) -"tDF" = ( -/turf/open/floor/shiva{ +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) +"tDS" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - icon_state = "snow_mat" + icon_state = "warning_s" }, -/area/varadero/interior/maintenance) -"tDR" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"tDZ" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -1; + pixel_y = 1 }, -/area/varadero/interior_protected/caves) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "tEc" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -28578,11 +23332,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"tEJ" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) "tEM" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -28596,28 +23345,42 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tER" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/comms4) -"tGl" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "purple" +"tES" = ( +/obj/item/fuel_cell{ + pixel_x = 4; + pixel_y = 22 }, -/area/varadero/interior/research) -"tGr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/auto_turf/sand_white/layer1, +/area/varadero/interior_protected/maintenance/south) +"tFE" = ( +/obj/structure/dispenser, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"tFH" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = -5 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) +"tFR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) +"tGg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"tGh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/caves/east) "tGw" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -28625,33 +23388,43 @@ }, /turf/open/gm/coast/beachcorner2/north_east, /area/varadero/exterior/pontoon_beach) -"tGA" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +"tGJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/interior/security) +/obj/item/clothing/mask/cigarette/cigar{ + desc = "Manufactured in New Space Cuba, a product of Castro LTD."; + name = "comically large cigar"; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "tGV" = ( /turf/closed/wall/r_wall/elevator{ dir = 1 }, /area/varadero/interior/hall_N) -"tHc" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/eastocean) -"tIT" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tHj" = ( +/obj/structure/inflatable, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"tIy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/disposals) +/obj/item/clothing/suit/armor/vest, +/obj/structure/coatrack, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/hall_N) +"tIC" = ( +/obj/structure/surface/rack, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "tIV" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -28671,67 +23444,42 @@ }, /turf/open/floor/plating, /area/varadero/interior/hall_N) -"tJN" = ( -/obj/structure/closet/crate, -/obj/item/trash/chunk, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"tJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"tKr" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) -"tKw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"tKE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/research) -"tKI" = ( +"tJb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) +"tJF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"tKc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"tKN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"tKT" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"tKV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/northwest, +/area/varadero/interior/disposals) +"tLg" = ( /obj/structure/machinery/storm_siren{ dir = 8; pixel_x = 3 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/records) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "tLu" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, @@ -28740,14 +23488,24 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"tMx" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/key/cargo_train, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"tMm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/research) +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Lobby"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"tMM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "tMY" = ( /obj/structure/window/reinforced{ dir = 4; @@ -28776,54 +23534,28 @@ "tMZ" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/lz2_near) -"tNy" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"tOp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_NW) -"tOx" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ +"tNb" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/electrical) +"tND" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/oob) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"tOD" = ( +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/eastocean) "tOV" = ( /obj/item/tool/warning_cone, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"tPt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/hall_N) "tPE" = ( /obj/item/tool/pickaxe, @@ -28832,15 +23564,12 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"tPI" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/shiva{ - icon_state = "floor3" +"tPJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/cargo) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "tPK" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice8"; @@ -28849,187 +23578,97 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"tPS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/mess) -"tQn" = ( -/obj/structure/closet/coffin, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) -"tQy" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"tQz" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"tRh" = ( +/obj/structure/curtain/red, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/bunks) +"tRk" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/medical) -"tQT" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/surgery/FixOVein/predatorFixOVein{ + pixel_x = -4 }, -/area/varadero/interior/comms1) -"tRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"tRv" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Medical Laboratory Lobby"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) "tRN" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/digsite) -"tSg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"tSb" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "tSK" = ( /obj/structure/window/framed/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"tSR" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"tTo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"tTq" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"tSO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/farocean) -"tTN" = ( -/obj/structure/stairs/perspective{ - color = "#b29082"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Theta-V Research Laboratory Storage"; + req_access = null; + req_one_access = null }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"tTu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/disposals) +/turf/open/floor/shiva/north, +/area/varadero/interior/research) "tTU" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior/caves/east) -"tUd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/security) +/area/varadero/interior/caves/east) +"tUh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "tVf" = ( /obj/structure/closet/crate, /obj/item/tool/stamp, /obj/item/tool/wet_sign, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"tVj" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"tVl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/hall_SE) -"tVo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"tVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"tVX" = ( -/obj/structure/surface/rack, -/obj/item/maintenance_jack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"tWl" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"tWG" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "tWT" = ( /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"tXg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/laundry) "tXu" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/caves/east) @@ -29041,15 +23680,12 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) +"tXB" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "tXE" = ( /turf/open/floor/wood, /area/varadero/interior/administration) -"tXF" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) "tXT" = ( /obj/structure/fence, /obj/effect/decal/warning_stripes{ @@ -29060,19 +23696,33 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"tYg" = ( -/turf/open/floor/shiva{ - icon_state = "red" +"tXU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/medical) -"tYT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"tXW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "purple" +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/research) +/obj/structure/prop/static_tank/water{ + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) +"tXX" = ( +/obj/item/stool, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"tYn" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southeast, +/area/varadero/interior/administration) "tZl" = ( /obj/effect/landmark/lv624/fog_blocker{ time_to_dispel = 25000 @@ -29082,34 +23732,33 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/monsoon) -"tZm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"tZr" = ( -/obj/item/toy/deck/uno{ - pixel_y = 6 +"tZz" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"tZJ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/exterior/lz1_near) -"tZE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/mess) +"uaj" = ( +/turf/open/floor/shiva/red/east, +/area/varadero/interior/morgue) +"uao" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "uaU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -29117,115 +23766,63 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"uaV" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"uaY" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "undergroundhangarwest"; - unacidable = 1; - name = "Pontoon West Door"; - openspeed = 17; - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/varadero/interior/cargo) -"ubF" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"ubH" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) +"ubD" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/prison/darkredfull2, +/area/varadero/interior/dock_control) "ubJ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"ubK" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"ubT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"ucL" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"uch" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 }, -/area/varadero/exterior/monsoon) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"udi" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "udp" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"ueg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/shiva{ - icon_state = "blue" +"udN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/hall_SE) +"uem" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/blue, /area/varadero/interior/hall_SE) "uet" = ( /turf/open/gm/coast/beachcorner/north_west, /area/varadero/interior/caves/east) -"ueB" = ( -/obj/structure/cable, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"ueA" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/exterior/lz2_near) -"ueP" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"ueQ" = ( -/obj/structure/computer3frame, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" + dir = 4 }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"ufk" = ( +/obj/structure/closet/secure_closet/cargotech, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) "ufn" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -29244,227 +23841,140 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"ufE" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ufV" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/court) -"ugi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_c" - }, -/turf/open/floor/shiva{ - icon_state = "green" +"ufC" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"ufL" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/court) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "ugR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) -"ugW" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"uhi" = ( -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - desc = "A high-power hydroelectric generator."; - name = "hydroelectric generator" - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"uhD" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"uiq" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"uiy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/taperecorder, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) -"ujp" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/obj/item/paper/crumpled{ - pixel_x = 9 +"uiC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_NW) -"ukw" = ( -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Underground Medical Laboratory Treatment"; + req_access_txt = "100"; + req_one_access = null }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"uiV" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, -/area/varadero/interior/disposals) -"ukz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_y = 4; + pixel_x = -5 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"ukX" = ( -/obj/structure/surface/rack, -/obj/item/prop/magazine/boots, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"ulb" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"uli" = ( -/obj/structure/bed/chair/hunter{ - dir = 4 +"ukx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/shuttle{ - icon_state = "floor6" +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior_protected/vessel) +/obj/structure/largecrate/random, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "ulv" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"umA" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"ulB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) -"umO" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/closet/crate, +/obj/item/trash/crushed_cup, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"ulP" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/power/apc{ +/obj/structure/window/reinforced{ dir = 8; - pixel_x = -24; - start_charge = 0 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/bed{ + can_buckle = 0 }, -/area/varadero/interior/hall_NW) +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"umd" = ( +/obj/item/book/manual/evaguide, +/turf/open/floor/wood, +/area/varadero/interior/library) +"umk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/technical_storage) "umT" = ( /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"unh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) "unH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"uoh" = ( -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/prop/ice_colony/dense/planter_box/hydro{ - pixel_x = -17; - pixel_y = -19 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"uon" = ( -/obj/structure/largecrate/random, -/obj/item/shard{ - icon_state = "large"; - pixel_x = -5; - pixel_y = -6 +"uoq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"uos" = ( +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"uot" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uoE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/red/north, +/area/varadero/interior/security) +"uoK" = ( +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/caves/east) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "uoN" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -29483,12 +23993,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"uoO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "uoU" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -29506,15 +24010,18 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"upb" = ( -/obj/structure/barricade/handrail/wire{ +"upD" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 8; - layer = 3.5 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/exterior/eastbeach) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"upF" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "upH" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/gm/dirt, @@ -29523,57 +24030,19 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior_protected/maintenance/south) -"upO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 5; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"upY" = ( -/obj/structure/filingcabinet{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/filingcabinet{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/morgue) -"uqw" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/blood/OMinus, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"uqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"upX" = ( +/obj/structure/prop/rock/brown{ + indestructible = 1; + unacidable = 1; + name = "sturdy rock(s)"; + desc = "A solidified collection of local minerals. When melted, becomes a substance best known as lava. These look particularly durable." }, -/area/varadero/interior/maintenance) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"uqt" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "uqW" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -29585,33 +24054,56 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"urA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"urD" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/lz2_near) +"urj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) "urE" = ( /obj/structure/bed/chair/comfy/lime{ dir = 8 }, /turf/open/floor/carpet, /area/varadero/interior/research) -"usB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"urY" = ( +/obj/structure/surface/table/woodentable{ + icon_state = "reinf_table" }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/door/window/brigdoor/westleft{ + dir = 1; + icon_state = "leftsecure"; + id = null; + name = "Requesitions Desk" }, -/area/varadero/interior/maintenance/security) +/obj/structure/machinery/door/window/northright{ + dir = 2; + name = "Requesitions Desk" + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/obj/item/clipboard, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"usn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/disposals) +"usw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/court) "usQ" = ( /obj/item/facepaint/sunscreen_stick, /turf/open/gm/dirt, @@ -29620,19 +24112,15 @@ /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/comms2) +"utI" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "utZ" = ( /obj/structure/surface/rack, /obj/item/tool/wirecutters, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uuj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/morgue) "uul" = ( /obj/structure/machinery/light{ dir = 1 @@ -29651,39 +24139,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uuv" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"uuN" = ( -/turf/open/floor/shiva{ - dir = 9; - icon_state = "purple" - }, -/area/varadero/interior/research) -"uvd" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"uuI" = ( +/obj/structure/shuttle/engine/router{ + dir = 4; + unacidable = 0 }, +/turf/open/floor/strata/grey_multi_tiles, /area/varadero/interior_protected/vessel) -"uvw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "Underground Morgue"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "dark2" +"uuL" = ( +/obj/structure/urinal{ + pixel_y = 32 }, -/area/varadero/interior/morgue) +/turf/open/floor/white, +/area/varadero/interior/security) +"uuY" = ( +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "uvB" = ( /obj/structure/machinery/shower{ dir = 8 @@ -29692,18 +24164,29 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"uww" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"uvP" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uwz" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/machine/batteryrack, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/hall_N) -"uwJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"uwH" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/shiva/purple/southeast, +/area/varadero/interior/research) "uwN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -29713,103 +24196,89 @@ }, /turf/open/floor/plating, /area/varadero/interior/toilets) -"uwQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/lightstick, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"uxi" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; +"uwS" = ( +/obj/effect/decal/warning_stripes/asteroid{ dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" + icon_state = "warning_s" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_N) "uxM" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/west, /area/varadero/exterior/farocean) -"uyd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"uyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"uzb" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"uzg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) -"uzr" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, +"uyu" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"uzN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/spawner/random/tool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"uyE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/white, +/area/varadero/interior/toilets) +"uzi" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/redcorners, +/area/varadero/interior/morgue) +"uzC" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/research) +"uzS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/area/varadero/interior/maintenance/research) -"uAt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/disposalpipe/segment{ dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null + icon_state = "pipe-c" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"uAh" = ( +/obj/item/paper{ + pixel_x = 2; + pixel_y = 2 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"uAn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/junction, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "uAM" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"uBe" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"uBf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1; + name = "\improper Underground Medical Laboratory"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"uBh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"uBr" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "uBV" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; @@ -29817,81 +24286,48 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/north) -"uBX" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"uCc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access_txt = "102" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/technical_storage) "uCe" = ( /turf/open/floor/prison/chapel_carpet, /area/varadero/interior/chapel) +"uCH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "uCJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"uDg" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/item/toy/plush/farwa, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"uDw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"uDQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"uEc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"uEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"uDc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) +"uDz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/varadero/interior/administration) -"uEE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/chapel_carpet{ - dir = 1; - icon_state = "doubleside" +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) +"uDB" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/chapel) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"uEC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/hall_NW) "uEF" = ( /obj/structure/barricade/handrail/wire{ layer = 3.1 @@ -29902,34 +24338,15 @@ /obj/structure/platform, /turf/open/gm/river/desert/deep/covered, /area/varadero/interior/maintenance/north) -"uEI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/hall_SE) -"uFq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/monsoon) -"uFE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +"uEH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/lightstick, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"uFr" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"uFJ" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) "uFO" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -29937,32 +24354,38 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"uGf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"uFZ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/technical_storage) +"uGp" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) +"uGw" = ( +/obj/structure/bed/chair/hunter{ + dir = 1 }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uGy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) -"uGi" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/surface/table, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"uGs" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "bcircuit" +"uGR" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) +"uHm" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/area/varadero/interior/maintenance/north) +/obj/item/clothing/under/CM_uniform, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "uHD" = ( /obj/structure/machinery/landinglight/ds1/spoke{ pixel_y = -5; @@ -29970,24 +24393,18 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) +"uHH" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"uHI" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) "uHY" = ( /obj/structure/prop/rock/brown, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"uIe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/prop/static_tank{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) "uIl" = ( /obj/structure/machinery/alarm{ dir = 4; @@ -29999,54 +24416,105 @@ }, /turf/open/floor/wood, /area/varadero/interior/administration) -"uIH" = ( -/obj/structure/window/framed/colony/reinforced, +"uIw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/security) +"uII" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"uIQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) "uIW" = ( /turf/open/gm/coast/north, /area/varadero/exterior/lz2_near) +"uJi" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/eastocean) +"uJo" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"uJD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/comms3) "uJO" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/chapel) +"uJQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) "uJT" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/r_wall, /area/varadero/interior/research) +"uKb" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"uKf" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/shiva/blue/southeast, +/area/varadero/interior/administration) +"uKg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/medical) "uKr" = ( /obj/structure/machinery/photocopier{ pixel_y = 4 }, /turf/open/floor/wood, /area/varadero/interior/dock_control) -"uKY" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +"uKX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "uKZ" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -30055,170 +24523,171 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"uLP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/caphat{ - pixel_x = 2; - pixel_y = 9 +"uLa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/obj/item/clothing/head/cmcap, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"uLF" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/area/varadero/interior/bunks) -"uLY" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uMu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/pontoon_beach) +"uNx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/shiva/yellowfull/west, /area/varadero/interior/hall_SE) -"uMx" = ( -/obj/structure/dispenser, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +"uNz" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/coast/beachcorner/south_east, +/area/varadero/exterior/farocean) +"uNE" = ( +/obj/structure/machinery/alarm{ + pixel_y = 24 }, -/area/varadero/interior/technical_storage) -"uMB" = ( -/obj/structure/surface/table, -/obj/item/cell/high/empty, -/obj/structure/machinery/cell_charger, /obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 + dir = 4; + pixel_x = 24 }, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "yellow" +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"uNL" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = -7; + pixel_y = -11; + desc = "A chest... filled with the wildest riches!" }, -/area/varadero/interior/technical_storage) -"uMQ" = ( -/obj/item/weapon/gun/pistol/vp70, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz2_near) +"uOe" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"uOj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/caves) -"uNh" = ( -/obj/structure/closet/secure_closet/personal{ - density = 0; - pixel_x = 9; - pixel_y = 15 +/obj/structure/machinery/storm_siren{ + pixel_y = 5 }, -/obj/structure/closet/secure_closet/personal{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"uOw" = ( +/obj/structure/prop/structure_lattice{ density = 0; - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/laundry) -"uNq" = ( -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/laundry) -"uNz" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/item/lightstick/variant/planted, -/turf/open/gm/coast/beachcorner/south_east, -/area/varadero/exterior/farocean) -"uNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + desc = "On closer inspection, everything on these shelves are made of plastic."; + icon_state = "book-5"; + name = "book case" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/medical) -"uOk" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/turf/open/floor/wood, +/area/varadero/interior/library) +"uOT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Underground Engineering Locker Room"; + req_access_txt = "100" }, -/obj/structure/platform/kutjevo/smooth{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/electrical) +"uPg" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - climb_delay = 1; - layer = 2.99 + pixel_x = -3 }, -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"uQi" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/varadero/interior/cargo) +"uQl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/structure/platform_decoration/kutjevo{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/closet/hydrant{ + pixel_y = 32 }, -/area/varadero/interior/oob) -"uOo" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/roller, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/green/north, +/area/varadero/interior/hall_SE) +"uQq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/morgue) -"uOC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"uQQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/hall_N) -"uOF" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"uRd" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_x = -14; - pixel_y = 13 + climb_delay = 1; + layer = 2.99 }, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"uOL" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) -"uQa" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + dir = 4 }, -/area/varadero/interior_protected/caves) -"uQi" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/varadero/interior/cargo) -"uQH" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"uRi" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 8; + icon_state = "chair_alt" }, -/turf/open/floor/shiva{ - icon_state = "green" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"uRK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/varadero/interior/court) -"uQK" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) "uRU" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/hall_N) +"uSh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "uSx" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/cargo) +"uSB" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "uSF" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -30229,97 +24698,45 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"uTj" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"uTq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "uTu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/pontoon_beach) -"uTV" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "wred" +"uTC" = ( +/obj/structure/curtain/red, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"uTI" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 7; + pixel_y = 18 }, -/area/varadero/interior/medical) +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "uTY" = ( /obj/structure/prop/rock/brown, /obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt, -/area/varadero/exterior/monsoon) -"uTZ" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"uUl" = ( -/obj/structure/bed/sofa/pews/flipped{ - dir = 4 - }, -/obj/item/storage/bible/booze{ - pixel_x = 6 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/carpet, -/area/varadero/interior/chapel) -"uUF" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/defibrillator{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"uUS" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "redcorners" - }, -/area/varadero/interior/security) -"uUW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "greenfull" - }, -/area/varadero/interior/medical) -"uVe" = ( -/turf/open/floor/shiva{ - dir = 6; - icon_state = "yellow" +/turf/open/gm/dirt, +/area/varadero/exterior/monsoon) +"uUl" = ( +/obj/structure/bed/sofa/pews/flipped{ + dir = 4 }, -/area/varadero/interior/cargo) -"uVo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -16; - pixel_y = 24 +/obj/item/storage/bible/booze{ + pixel_x = 6 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) +"uUw" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/yellow, +/area/varadero/interior/disposals) +"uUQ" = ( +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "uVu" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -30327,13 +24744,11 @@ }, /turf/open/floor/carpet, /area/varadero/interior/hall_SE) -"uVy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/crowbar/red, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) +"uVD" = ( +/obj/structure/surface/rack, +/obj/item/prop/magazine/boots, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "uVR" = ( /obj/structure/machinery/light{ dir = 4 @@ -30343,33 +24758,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"uVV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"uVY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"uWo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/eastocean) "uWA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30377,23 +24765,20 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/mess) -"uWW" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.1 - }, -/obj/structure/pipes/binary/passive_gate, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"uXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +"uWS" = ( +/obj/item/trash/barcardine, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"uWY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/evidencebag, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"uXP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/north, +/area/varadero/interior/hall_N) "uXR" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -30404,108 +24789,53 @@ "uXS" = ( /turf/closed/wall, /area/varadero/interior/toilets) -"uXX" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "green" - }, -/area/varadero/interior/mess) "uXZ" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/cargo) -"uYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"uYJ" = ( -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"uZa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"uZK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/storm_siren{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"uZY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/glass{ - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"vap" = ( -/obj/structure/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +"uYm" = ( +/obj/structure/machinery/microwave{ + pixel_y = 9 }, -/area/varadero/interior/security) -"vaV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/paper/janitor{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"vbr" = ( -/obj/structure/prop/souto_land/pole, -/obj/structure/prop/souto_land/pole{ - dir = 4; - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/security) +"uYH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/area/varadero/interior/hall_NW) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"uYN" = ( +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"vav" = ( +/obj/item/circuitboard/apc, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vaR" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vbi" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/exterior/lz2_near) "vbH" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"vbR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vbS" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -30524,32 +24854,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vcd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"vcj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/morgue) "vco" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/varadero/interior/security) +"vcp" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "vcz" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, @@ -30560,14 +24874,24 @@ }, /turf/open/gm/coast/beachcorner/north_east, /area/varadero/interior/caves/east) -"vdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"vcZ" = ( +/obj/structure/surface/table, +/obj/item/storage/box/cups{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/souto/pineapple{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"vdK" = ( +/obj/effect/overlay/palmtree_r{ + icon_state = "palm2" }, -/area/varadero/interior/maintenance/research) +/turf/open/gm/dirt/desert1, +/area/varadero/exterior/pontoon_beach) "vdQ" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/dirt, @@ -30578,6 +24902,21 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) +"vdW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/cargo) +"vec" = ( +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/electrical) +"vei" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "ver" = ( /obj/structure/machinery/shower{ dir = 8 @@ -30586,6 +24925,24 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic/alt, /area/varadero/interior/security) +"veO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/crowbar, +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) +"veS" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_3"; + pixel_y = 11 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "veV" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/varadero/exterior/monsoon) @@ -30594,16 +24951,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vfg" = ( -/obj/effect/decal/warning_stripes/asteroid{ - dir = 1; - icon_state = "warning_s" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) "vfj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -30636,34 +24983,31 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"vfG" = ( -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, -/area/varadero/exterior/lz1_near) -"vfH" = ( +"vfm" = ( /obj/structure/surface/table, -/obj/item/bodybag, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/area/varadero/interior/morgue) -"vgu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"vfA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/bcircuit, +/area/varadero/interior/electrical) +"vfI" = ( +/obj/item/stool{ + icon_state = "stool_alt" }, -/turf/open/floor/shiva{ - icon_state = "wred" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/technical_storage) +"vgb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/stool{ + icon_state = "stool_alt" }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vgA" = ( /obj/item/stool{ icon_state = "stool_alt" @@ -30675,42 +25019,44 @@ /obj/structure/blocker/invisible_wall/water, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/farocean) -"vhb" = ( -/obj/structure/machinery/light{ - dir = 1 +"vgI" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = -6 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vgP" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/comms4) +"vhg" = ( +/obj/structure/machinery/power/smes/buildable{ + name = "colony distribution SMES" }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) "vhw" = ( /obj/structure/sign/safety/water{ pixel_x = 15 }, /turf/closed/wall, /area/varadero/interior/library) -"vhB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"vhI" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vhx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior_protected/caves/central) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"vhG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) "vhJ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clipboard{ @@ -30732,6 +25078,11 @@ /obj/structure/machinery/light, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) +"vhZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) "vio" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -30742,62 +25093,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"viK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"viP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Power Substation" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"viY" = ( -/obj/structure/prop/structure_lattice{ - dir = 1; - health = 300 - }, -/obj/structure/prop/structure_lattice{ - dir = 1; - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_y = 25 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 18; - pixel_y = 23 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"vjA" = ( -/obj/structure/reagent_dispensers/beerkeg/alt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "vjO" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -30810,112 +25105,99 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vjZ" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) "vke" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Underground Visitor Entrance" }, /turf/open/floor/plating, /area/varadero/interior/hall_SE) -"vku" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stool, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"vki" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_access = null; + req_one_access = null }, -/area/varadero/interior/research) +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"vkH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "vll" = ( /obj/item/reagent_container/glass/bucket{ pixel_y = -3 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vlm" = ( -/obj/item/lightstick/variant/planted, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) "vlB" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vlL" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/structure/window_frame/colony, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"vmc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1 +"vlF" = ( +/obj/structure/reagent_dispensers/beerkeg/alt, +/obj/structure/machinery/light{ + dir = 8 }, -/area/varadero/interior/electrical) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"vmt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "vmw" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"vmY" = ( -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/sheet/metal, -/turf/open/shuttle{ - icon_state = "floor6" +"vmF" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 }, -/area/varadero/interior_protected/vessel) -"vnb" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat{ +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"vnh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - icon_state = "squareswood" + name = "\improper Underground Security Lobby"; + req_access_txt = "100" }, -/area/varadero/interior_protected/vessel) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "vnm" = ( /turf/closed/wall, /area/varadero/interior/chapel) -"vnH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/electrical) -"vnN" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" +"vno" = ( +/obj/item/device/flashlight/slime{ + mouse_opacity = 0; + invisibility = 1; + indestructible = 1; + alpha = 0 }, -/area/varadero/interior/morgue) -"vnU" = ( -/obj/item/storage/box/bodybags, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"vns" = ( +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/monsoon) +"vnV" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +/obj/item/storage/donut_box{ + pixel_y = 9 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 24 }, +/turf/open/floor/shiva/red/north, /area/varadero/interior/security) +"voa" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 10 + }, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) "vom" = ( /obj/item/storage/beer_pack, /turf/open/gm/dirt, @@ -30928,6 +25210,20 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) +"voM" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"voX" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/pontoon_beach) "vph" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -30935,6 +25231,15 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) +"vpj" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "vpQ" = ( /obj/structure/machinery/storm_siren{ dir = 4; @@ -30942,88 +25247,33 @@ }, /turf/open/gm/coast/west, /area/varadero/exterior/pool) -"vpV" = ( -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/security) -"vqd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/hall_SE) -"vqt" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/morgue) -"vqw" = ( +"vqo" = ( /obj/structure/bed/chair/office/dark{ - dir = 1 + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/varadero/interior/hall_SE) -"vqG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/security) +"vqA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/caves/east) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "vqK" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/east) -"vqR" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) "vqY" = ( /turf/open/floor/carpet, /area/varadero/interior/security) -"vqZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/gm/dirt{ - icon_state = "desert3" - }, -/area/varadero/interior/maintenance/north) -"vrh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"vrj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_SE) +"vrk" = ( +/obj/structure/window_frame/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "vru" = ( /obj/item/a_gift, /turf/open/floor/wood, @@ -31032,60 +25282,23 @@ /obj/structure/machinery/conveyor, /turf/open/floor/plating, /area/varadero/interior/cargo) -"vrO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"vsa" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"vsK" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/multi_tiles/west, /area/varadero/interior/cargo) -"vss" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/pontoon_beach) -"vsJ" = ( +"vtj" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"vsP" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"vtP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) +"vts" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.01 }, -/area/varadero/interior/maintenance) +/obj/structure/catwalk, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) "vus" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -31098,15 +25311,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/vessel) -"vuA" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) "vuQ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -31115,100 +25319,106 @@ }, /turf/closed/wall/rock/brown, /area/varadero/exterior/eastbeach) -"vvh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"vuU" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/scalpel/pict_system, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"vvi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"vvZ" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light{ + dir = 1 }, -/area/varadero/interior/maintenance/research) -"vvS" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vwe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "redcorners" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/cargo) +"vwB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) -"vwT" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +/turf/open/floor/shiva/multi_tiles/west, +/area/varadero/interior/medical) +"vwG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper/janitor{ + pixel_x = -4; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/tool/pen/blue{ + pixel_x = 6; + pixel_y = -4 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"vxg" = ( +/turf/open/floor/asteroidwarning, +/area/varadero/interior/comms1) "vxi" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vxM" = ( -/obj/structure/machinery/light{ - dir = 8 +"vxH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/closet/radiation, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"vyg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/cargo) +/turf/open/floor/shiva/snow_mat/west, +/area/varadero/interior/medical) "vyp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vyy" = ( -/obj/structure/catwalk, -/obj/structure/platform{ - layer = 2.15; - density = 0; - climb_delay = 0 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"vyI" = ( -/obj/structure/catwalk, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, +"vyx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/north) -"vyX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/evidence, -/obj/item/tool/hand_labeler, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "red" +"vyS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/security) +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/administration) "vzq" = ( /obj/structure/machinery/storm_siren{ pixel_y = 5 }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vzt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vzu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Security Brig"; + req_access_txt = "100" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "vzB" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -31230,114 +25440,25 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"vzN" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"vzY" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"vAg" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/security) -"vAz" = ( -/obj/structure/prop/invuln/overhead_pipe{ +"vzR" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/pipe_water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"vAI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"vAR" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/hall_SE) -"vAZ" = ( -/obj/item/facepaint/sunscreen_stick, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/lz1_near) -"vBk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"vBC" = ( -/obj/structure/platform/kutjevo/rock{ - dir = 1 - }, -/obj/structure/platform/kutjevo/rock, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -3 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior/cargo) -"vBF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = 24 - }, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/research) -"vBW" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"vAp" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"vBI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "vBZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -31348,22 +25469,11 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"vCf" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/administration) -"vCE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/trash/chunk{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) +"vCK" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/trash/ceramic_plate, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "vDe" = ( /obj/structure/barricade/handrail/wire{ dir = 8 @@ -31383,52 +25493,20 @@ }, /turf/open/gm/coast/north, /area/varadero/exterior/pool) -"vDl" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/morgue) -"vDm" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"vDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vDt" = ( +/obj/effect/landmark/lv624/fog_blocker{ + time_to_dispel = 25000 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) "vDw" = ( /obj/item/fishing_pole{ anchored = 1 }, /turf/open/gm/coast/beachcorner/south_west, /area/varadero/exterior/pontoon_beach) -"vDC" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"vDI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Underground Requesitions Freezer"; - req_access_txt = "100" - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) "vDP" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -31444,17 +25522,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) -"vEa" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/obj/item/tool/surgery/surgicaldrill, -/obj/item/storage/firstaid/adv, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) "vEe" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; @@ -31474,55 +25541,12 @@ }, /turf/open/gm/coast/south, /area/varadero/exterior/pontoon_beach) -"vEg" = ( -/obj/structure/flora/bush/ausbushes/var3/fernybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/pontoon_beach) -"vEi" = ( -/obj/structure/window_frame/colony/reinforced, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"vEJ" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_NW) -"vEM" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"vEU" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vEh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/oob) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) "vFf" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/cigar{ @@ -31539,20 +25563,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/varadero/interior/maintenance/north) -"vFs" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"vFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/hall_N) "vGn" = ( /obj/effect/overlay/palmtree_r{ pixel_x = -11; @@ -31571,73 +25581,120 @@ /obj/item/lightstick/variant/planted, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"vGY" = ( +/obj/structure/window/framed/colony/reinforced, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves) +"vHb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/comms3) +"vHk" = ( +/obj/item/cell/high, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vHm" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + name = "\improper Underground Security Evidence Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"vHo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/medical) "vHs" = ( /turf/closed/wall/r_wall, /area/varadero/interior/records) -"vJg" = ( -/obj/item/tool/shovel, -/turf/open/gm/dirt{ - icon_state = "desert_dug" +"vHT" = ( +/obj/structure/machinery/constructable_frame, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"vIp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"vIv" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"vIE" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/exterior/lz1_near) -"vJk" = ( -/obj/structure/platform/kutjevo/smooth{ +"vIP" = ( +/obj/structure/window/phoronreinforced{ dir = 4; - climb_delay = 1; - layer = 2.99 + icon_state = "phoronrwindow" }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"vIW" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"vJc" = ( +/obj/structure/filingcabinet{ + pixel_x = -8; + pixel_y = 4 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 4 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -11; + pixel_y = 20 }, -/area/varadero/interior/oob) -"vJp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"vJd" = ( +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"vKg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) "vKv" = ( /obj/structure/window/framed/colony/reinforced/hull{ indestructible = 1 }, /turf/open/floor/plating/icefloor, /area/varadero/interior/maintenance/north) -"vLc" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -11; - pixel_y = -4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"vKP" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_N) +"vKQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = -8 }, -/area/varadero/exterior/comms4) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "vLh" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"vLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/laundry) "vLo" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2"; @@ -31647,70 +25704,46 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vLt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/cargo) -"vLw" = ( -/obj/structure/prop/almayer/computers/sensor_computer1{ - name = "computer" - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/varadero/interior/dock_control) -"vLU" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"vLV" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 +"vLA" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"vLX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/area/varadero/exterior/lz1_near) -"vMe" = ( -/obj/structure/largecrate/random/mini/med{ - layer = 3.01; - pixel_x = -13; - pixel_y = 11 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) +"vLY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"vMj" = ( +/obj/item/toy/deck/uno{ + pixel_y = 6 }, +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, /area/varadero/exterior/lz1_near) -"vMo" = ( -/obj/item/tool/shovel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"vMq" = ( -/obj/item/stack/sheet/metal/med_large_stack, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"vMA" = ( +/obj/structure/prop/ice_colony/dense/planter_box/plated{ + dir = 9; + icon_state = "planter_box_soil" }, -/area/varadero/interior/comms1) -"vMU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/flora/bush/ausbushes/pointybush{ + icon_state = "pointybush_2"; + pixel_y = 11 }, -/area/varadero/interior/maintenance) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"vNs" = ( +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/laundry) "vNu" = ( /turf/open/floor/carpet, /area/varadero/interior/bunks) @@ -31718,10 +25751,19 @@ /obj/structure/cargo_container/wy/left, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) +"vNA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/attachment, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "vNB" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/exterior/monsoon) +"vNF" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "vNG" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/computer/cameras/telescreen/entertainment{ @@ -31734,69 +25776,14 @@ }, /turf/open/floor/wood, /area/varadero/interior/research) -"vNT" = ( -/obj/structure/xenoautopsy/tank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/varadero/interior_protected/vessel) -"vNY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/hall_N) -"vOa" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) "vOo" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/central) -"vOr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"vPe" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"vPh" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) +"vOs" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/shiva/green/west, +/area/varadero/interior/court) "vPi" = ( /obj/structure/closet/secure_closet/personal, /obj/item/attachable/magnetic_harness, @@ -31806,13 +25793,16 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"vPj" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/shiva{ - icon_state = "floor3" +"vPO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Bay" }, -/area/varadero/interior/mess) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) +"vPW" = ( +/turf/open/floor/shiva/purple/east, +/area/varadero/interior/research) "vPY" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp/candelabra{ @@ -31842,14 +25832,42 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz1_near) -"vQL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/light_fixture, -/turf/open/floor/shiva{ +"vQR" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/gm/river/desert/deep/no_slowdown, +/area/varadero/interior/maintenance/north) +"vRj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/gm/dirt/desert3, +/area/varadero/interior/maintenance/north) +"vRn" = ( +/obj/structure/bed/chair/office/dark{ dir = 1; - icon_state = "yellow" + icon_state = "chair" }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/hall_SE) +"vRr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/administration) +"vRB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) "vRI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/disposalpipe/segment{ @@ -31873,67 +25891,42 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSh" = ( -/obj/structure/bed/chair{ - dir = 8; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"vSu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"vSl" = ( +/obj/item/stack/cable_coil/random, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"vSm" = ( +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastbeach) +"vSn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) +/turf/open/floor/shiva/red/east, +/area/varadero/interior/medical) "vSN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"vSY" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +"vTo" = ( +/obj/structure/machinery/computer/prisoner, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"vUu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"vUx" = ( -/obj/structure/girder/displaced, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"vUE" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"vUM" = ( -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) -"vUQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/administration) +"vUD" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "vUT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -31941,30 +25934,6 @@ }, /turf/open/floor/carpet, /area/varadero/interior/chapel) -"vUZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"vVy" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/research) "vVH" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms2) @@ -31980,50 +25949,102 @@ }, /turf/open/gm/coast/beachcorner/north_west, /area/varadero/exterior/pontoon_beach) -"vWG" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/storm_siren{ - pixel_y = 5 +"vWw" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/electrical) +"vWC" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/hall_NW) -"vXG" = ( -/obj/structure/closet/crate/construction, -/obj/item/grown/log, -/turf/open/gm/dirt{ - icon_state = "desert2" +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vWD" = ( +/obj/structure/surface/table, +/obj/item/tool/weldpack{ + pixel_x = -2; + pixel_y = 11 }, -/area/varadero/exterior/monsoon) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = -1 }, -/obj/structure/machinery/door/airlock/almayer/security{ - name = "\improper Underground Security Showers"; - req_access_txt = "100" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"vWE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 12; + pixel_y = 25 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/bed/chair/comfy{ + pixel_x = -7; + pixel_y = 18 }, -/area/varadero/interior/security) -"vYp" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 7; + pixel_y = 12 }, -/area/varadero/interior/maintenance/research) -"vYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null +/obj/structure/bed/chair/comfy{ + dir = 4; + pixel_x = 7 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"vWK" = ( +/obj/structure/window_frame/colony/reinforced, +/turf/open/floor/shiva/snow_mat/north, +/area/varadero/interior/maintenance) +"vWL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/north) +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"vWZ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"vXi" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/red/northeast, +/area/varadero/interior/security) +"vXI" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/shotgun, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/medical) +"vYk" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "vYy" = ( /obj/item/tool/shovel, /obj/structure/prop/invuln/lattice_prop{ @@ -32033,22 +26054,6 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"vYF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/item/tool/pen/sleepypen{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/tool/lighter/zippo/fluff{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) "vYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -32078,13 +26083,6 @@ "vYW" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves) -"vZl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" - }, -/area/varadero/interior/security) "vZm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32101,15 +26099,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"vZv" = ( -/obj/structure/toilet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) "vZN" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -32129,53 +26118,74 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"vZR" = ( +"vZP" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"wai" = ( +/obj/structure/cable, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"wao" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Underground Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"waq" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Underground Command Center"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/administration) +"wax" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 8; + dir = 1; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, /area/varadero/exterior/pontoon_beach) -"vZS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/technical_storage) -"wae" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) "waB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"waP" = ( -/turf/open/floor/plating/icefloor{ - dir = 4; - icon_state = "warnplate" - }, -/area/varadero/exterior/lz1_near) +"waY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "wba" = ( /obj/structure/largecrate/random, /turf/open/floor/wood, /area/varadero/interior/hall_SE) -"wbB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wbE" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/varadero/interior/administration) +/turf/open/floor/shiva/red/north, +/area/varadero/interior/hall_N) +"wbY" = ( +/turf/open/floor/shiva/greenfull/west, +/area/varadero/interior/medical) "wcb" = ( /obj/structure/blocker/invisible_wall/water, /obj/structure/prop/rock/brown{ @@ -32186,42 +26196,16 @@ }, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wcl" = ( -/obj/item/tool/mop{ - pixel_x = -16; - pixel_y = 26 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +"wcs" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"wcY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"wcq" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"wcG" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "wdb" = ( /obj/structure/machinery/computer/cameras/wooden_tv{ dir = 4; @@ -32241,63 +26225,39 @@ }, /turf/open/floor/wood, /area/varadero/interior/security) -"wdg" = ( +"wdE" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/cargo) +"wdH" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +/obj/item/reagent_container/glass/beaker/ethanol{ + desc = "The beaker stares at you lecherously. Its contents... irresistible."; + pixel_y = 7 }, +/turf/open/floor/shiva/purplefull/west, /area/varadero/interior/research) -"wdh" = ( -/obj/structure/machinery/computer/operating{ - density = 0 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "snow_mat" - }, -/area/varadero/interior/medical) -"wdx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" - }, -/area/varadero/interior/disposals) -"wdy" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 4 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "wdI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"weG" = ( -/obj/structure/catwalk, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +"wdK" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"wdU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/maintenance/north) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/darkgreencorners2/north, +/area/varadero/interior/hall_SE) +"wem" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/green/east, +/area/varadero/interior/hall_SE) "weJ" = ( /obj/structure/machinery/landinglight/ds2/spoke{ pixel_x = -1; @@ -32305,29 +26265,6 @@ }, /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/north) -"wff" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wfh" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/eastbeach) -"wfr" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/hall_NW) "wft" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -32346,15 +26283,15 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/pontoon_beach) -"wfy" = ( -/obj/structure/bedsheetbin{ - icon_state = "linenbin-empty" - }, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/bunks) +"wfG" = ( +/obj/structure/closet/crate, +/obj/item/trash/chunk, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"wfH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/disposals) "wfK" = ( /obj/structure/stairs/perspective{ color = "#b29082"; @@ -32383,42 +26320,34 @@ }, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"wfT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/hall_NW) -"wgv" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_1" - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wgU" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +"wgb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wgi" = ( +/obj/effect/decal/warning_stripes/asteroid{ + icon_state = "warning_s" }, -/obj/structure/blocker/invisible_wall/water, -/obj/structure/plasticflaps/mining, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wgR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/shiva/blue/northeast, +/area/varadero/interior/administration) +"whm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Underground Requesitions Freezer"; + req_access_txt = "100" }, -/area/varadero/interior/oob) +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"whN" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/multi_tiles/north, +/area/varadero/interior/administration) "wic" = ( /obj/structure/machinery/alarm{ pixel_y = 24 @@ -32429,83 +26358,37 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wir" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Underground Main Hallway" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"wiL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/paper/research_notes, -/obj/item/storage/belt/shotgun, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"wjd" = ( -/obj/item/book/manual/robotics_cyborgs, -/turf/open/floor/carpet, -/area/varadero/interior/library) -"wjf" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) -"wjh" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 +"wid" = ( +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) +"wil" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/turf/open/floor/wood, -/area/varadero/interior/bunks) -"wjB" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"wiZ" = ( +/obj/item/tool/wrench, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"wjC" = ( +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wjG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/comms1) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) "wjV" = ( /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/maintenance/security) -"wkp" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 4; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/interior_protected/caves) "wkq" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/firealarm{ @@ -32513,37 +26396,12 @@ }, /turf/open/floor/wood, /area/varadero/interior/records) -"wkt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Underground Engineering Locker Room"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/electrical) -"wku" = ( -/obj/structure/machinery/door/poddoor/almayer/planet_side_blastdoor{ - id = "colony_sec_armory"; - name = "Secure Armory" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"wkC" = ( -/obj/item/stack/cable_coil/cut{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"wkJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/shiva/green/west, +/area/varadero/interior/hall_SE) "wkM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -32572,6 +26430,20 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"wlh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/shiva/blue/west, +/area/varadero/interior/technical_storage) +"wlj" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) "wlB" = ( /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) @@ -32579,48 +26451,18 @@ /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner/south_east, /area/varadero/exterior/lz2_near) -"wlQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"wmg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) +"wmc" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/lz2_near) +"wmm" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/chapel) "wmt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/shuttle/elevator/grating, /area/varadero/interior/records) -"wmC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"wmL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Underground Maintenance"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) "wmX" = ( /obj/structure/filingcabinet{ density = 0; @@ -32645,118 +26487,63 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"wng" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"wno" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "green" - }, -/area/varadero/interior/mess) -"wnK" = ( -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"woj" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/technical_storage) -"won" = ( -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = 8; - pixel_y = 11 - }, -/obj/structure/filingcabinet{ - density = 0; - icon_state = "chestdrawer"; - pixel_x = -8; - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms2) -"wop" = ( -/obj/structure/girder/displaced, -/turf/open/gm/dirt, -/area/varadero/exterior/eastbeach) -"wot" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/records) -"wox" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ +"wna" = ( +/turf/open/floor/shiva/red/west, +/area/varadero/interior/administration) +"wny" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "yellowfull" + health = 80 }, -/area/varadero/interior/hall_SE) -"woI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"wnE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"wnN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/medical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wop" = ( +/obj/structure/girder/displaced, +/turf/open/gm/dirt, +/area/varadero/exterior/eastbeach) "wph" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/shiva, /area/varadero/interior/technical_storage) -"wpi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"wpm" = ( +"wpj" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/stool{ - icon_state = "stool_alt" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/varadero/interior/hall_SE) -"wpr" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"wps" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty" }, -/area/varadero/interior/medical) +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/bunks) "wpG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"wpM" = ( -/obj/structure/bedsheetbin{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "snow_mat" - }, -/area/varadero/interior/security) "wpX" = ( /obj/effect/decal/strata_decals/grime/grime2, /turf/open/floor/carpet, @@ -32764,14 +26551,41 @@ "wqb" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/security) -"wqc" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 1 +"wqs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 2; + name = "Underground Secure Technical Storage"; + req_access_txt = "100" + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/technical_storage) +"wqx" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat{ + pixel_x = 3; + pixel_y = 1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/clothing/head/hardhat/red{ + pixel_x = -2; + pixel_y = 9 }, -/area/varadero/interior/comms1) +/obj/item/clothing/head/hardhat/white{ + pixel_x = 2; + pixel_y = 17 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/bunks) +"wqA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/sword/katana, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) +"wqP" = ( +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/security) "wrg" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -32781,13 +26595,6 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wrv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "wrC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -32798,13 +26605,23 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wsa" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" +"wrP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/varadero/interior/technical_storage) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"wrR" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"wsm" = ( +/obj/structure/bed, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "wsn" = ( /obj/item/storage/toolbox/mechanical, /turf/open/gm/dirt, @@ -32826,138 +26643,187 @@ }, /turf/open/floor/light, /area/varadero/interior_protected/vessel) -"wsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"wts" = ( -/obj/structure/flora/bush/ausbushes/var3/sparsegrass{ - icon_state = "sparsegrass_2" - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/eastocean) -"wty" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"wtB" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 1 - }, -/obj/structure/flora/bush/desert{ - icon_state = "tree_2"; - pixel_y = 12 +"wta" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) +"wtZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wuh" = ( +/turf/open/floor/shiva/green/west, /area/varadero/interior/hall_NW) -"wtU" = ( -/obj/structure/bed/chair{ +"wux" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 24 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"wuF" = ( +/obj/structure/machinery/storm_siren{ dir = 4; - icon_state = "chair_alt" + pixel_x = -3 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/monsoon) +"wuK" = ( +/obj/structure/bed/chair, +/turf/open/floor/white, +/area/varadero/interior/laundry) +"wvs" = ( +/obj/structure/window/framed/colony, +/obj/structure/noticeboard{ + pixel_y = -32 }, -/area/varadero/interior_protected/maintenance/south) -"wuA" = ( +/turf/open/floor/dark2, +/area/varadero/interior/hall_N) +"wvv" = ( /obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/records) +"wvx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"wwv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior/maintenance/research) -"wuR" = ( +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_SE) +"wwA" = ( +/turf/open/floor/shiva/north, +/area/varadero/interior/morgue) +"wwE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/comms3) -"wwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "blue" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wwO" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/area/varadero/interior/administration) -"wwk" = ( -/turf/open/floor/shiva{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"wwX" = ( +/obj/structure/prop/structure_lattice{ dir = 1; - icon_state = "snow_mat" + health = 300 }, -/area/varadero/interior/medical) -"wwq" = ( -/obj/structure/catwalk, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/structure_lattice{ + dir = 1; + layer = 3.1; + pixel_y = 10 }, -/obj/structure/filtration/flacculation_arm{ - density = 0; - layer = 2.1 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"wxK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/maintenance/north) -"wws" = ( -/obj/item/reagent_container/food/snacks/eat_bar, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"wxL" = ( +/obj/item/trash/candle, +/turf/open/floor/prison/chapel_carpet/doubleside/north, +/area/varadero/interior/chapel) +"wxN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/varadero/interior_protected/maintenance/south) -"wxf" = ( -/obj/structure/machinery/power/monitor, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/hall_NW) +"wyz" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 4 }, -/area/varadero/interior/maintenance/north) -"wxu" = ( -/obj/structure/bed/chair, -/turf/open/floor{ - icon_state = "white" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wyU" = ( +/obj/structure/prop/ice_colony/dense/planter_box/hydro{ + density = 0; + pixel_x = 11; + pixel_y = 9 }, -/area/varadero/interior/laundry) -"wyE" = ( -/obj/item/storage/belt/marine/quackers, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/flora/bush/desert{ + icon_state = "tree_2"; + pixel_x = 10; + pixel_y = 20 }, -/area/varadero/exterior/pool) -"wAE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/shiva{ +/obj/structure/platform/kutjevo/smooth{ dir = 8; - icon_state = "yellowfull" + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/electrical) -"wBp" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior/caves/north_research) +"wzJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/shiva/red, +/area/varadero/interior/security) +"wzK" = ( +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"wAq" = ( /obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) +"wAx" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/turf/open/floor/shiva/yellow/southwest, +/area/varadero/interior/cargo) +"wAy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Underground Medical Laboratory Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/shiva/wredfull, +/area/varadero/interior/medical) +"wAF" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/white, +/area/varadero/interior/laundry) "wBD" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/uscm{ @@ -32966,110 +26832,70 @@ }, /turf/open/floor/carpet, /area/varadero/interior/library) -"wBN" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellowcorners" - }, -/area/varadero/interior/cargo) -"wBY" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/comms1) -"wCc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor{ +"wBI" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"wCx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/cdeathalarm_kit{ - pixel_x = -8; - pixel_y = 1 + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/medical) +"wBW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "wCE" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/records) -"wCR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) "wDv" = ( /obj/structure/largecrate/random/mini/ammo, /turf/open/shuttle/elevator, /area/varadero/interior/records) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"wDH" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8; - layer = 3.5 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/eastbeach) -"wDN" = ( -/obj/structure/disposalpipe/segment{ +"wDB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wEe" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/administration) -"wEL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/structure/platform_decoration/kutjevo{ + dir = 8 }, -/area/varadero/interior/morgue) -"wEU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light/small{ +/obj/structure/platform_decoration/kutjevo, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms1) +"wEl" = ( +/obj/structure/inflatable/door, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"wFh" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"wFx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wFJ" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) +"wFj" = ( +/obj/structure/flora/bush/ausbushes/var3/fernybush, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"wFK" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/exterior/farocean) +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) "wFP" = ( /obj/structure/machinery/door_control/brbutton{ id = "undergroundhangarwest"; @@ -33080,35 +26906,41 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/cargo) -"wFX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"wGg" = ( +/obj/structure/surface/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 5; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/obj/item/clothing/mask/cigarette/ucigarette{ + pixel_x = -5; + pixel_y = 2 }, -/area/varadero/interior/medical) -"wGl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/technical_storage) +"wGp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/varadero/interior/cargo) -"wGs" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/item/bedsheet{ + anchored = 1; + desc = "A console used by the Hunters for navigation purposes."; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Hunter Nav Console" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wGw" = ( +/obj/structure/machinery/landinglight/ds2/spoke{ + pixel_x = -1; + pixel_y = 22 }, -/area/varadero/interior/comms3) +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz1_near) "wGQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -33116,169 +26948,122 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wGV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) "wHk" = ( /turf/closed/wall, /area/varadero/interior/maintenance/north) +"wHp" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "wHt" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/beachcorner2/south_east, /area/varadero/exterior/farocean) -"wHu" = ( -/obj/structure/prop/static_tank/fuel{ - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/disposals) -"wIg" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 1; - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/dirt{ - icon_state = "desert1" - }, -/area/varadero/exterior/lz1_near) -"wIm" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"wHY" = ( +/obj/structure/surface/table, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 16; + pixel_y = 24 }, -/area/varadero/interior/cargo) -"wIr" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "purple" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/mess) +"wJn" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/lz2_near) +"wJy" = ( +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/medical) +"wJS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/shiva/purple/north, /area/varadero/interior/research) -"wIH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ +"wJY" = ( +/obj/structure/prop/invuln/minecart_tracks{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) -"wJl" = ( +/obj/structure/plasticflaps/mining, /obj/structure/platform/kutjevo/smooth{ dir = 1; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, /obj/structure/platform/kutjevo/smooth{ - dir = 4; climb_delay = 1; layer = 2.99 }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) -"wJu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cargobay"; - name = "\improper Requesitions Storage Shutters" - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "wKi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/shiva, /area/varadero/interior/disposals) +"wKy" = ( +/turf/open/gm/dirt/desert_dug, +/area/varadero/exterior/lz1_near) "wKW" = ( /obj/item/stack/sandbags/large_stack, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wLq" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/comms4) -"wLB" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"wLF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/shaker{ - pixel_x = -8; - pixel_y = 3 +"wLf" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) +"wLl" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; dir = 1; - icon_state = "multi_tiles" + icon_state = "hr_kutjevo"; + name = "support struts" }, -/area/varadero/interior/hall_SE) -"wLR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/hypospray/tricordrazine{ - pixel_x = -14; - pixel_y = 2 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) +"wLz" = ( +/obj/structure/machinery/storm_siren{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz2_near) +"wLU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/red/northwest, +/area/varadero/interior/security) +"wLW" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 }, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/technical_storage) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/interior_protected/caves) "wMj" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior/hall_SE) -"wMn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"wMw" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"wMx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/nanopaste, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) +"wMz" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/shiva/multi_tiles/east, +/area/varadero/interior/morgue) "wNz" = ( /obj/item/stack/tile/plasteel{ pixel_x = 8; @@ -33286,65 +27071,46 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"wNI" = ( -/obj/structure/platform_decoration/kutjevo{ - dir = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"wNV" = ( +"wNZ" = ( /obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = 10 +/obj/item/paper_bin, +/obj/item/tool/stamp{ + pixel_x = -5; + pixel_y = 11 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" +/obj/item/tool/pen/blue, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"wOg" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"wOB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stool, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"wOH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/medical) -"wOC" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wOL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, -/area/varadero/interior/disposals) "wOO" = ( /turf/closed/wall/r_wall, /area/varadero/interior/electrical) "wOR" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/sand_white/layer1, -/area/varadero/interior_protected/caves/central) -"wPl" = ( -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 - }, -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/pontoon_beach) +/area/varadero/interior_protected/caves/central) +"wOV" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/caves/central) +"wOX" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/red/north, +/area/varadero/interior/morgue) "wPv" = ( /obj/structure/platform/kutjevo/smooth{ dir = 4; @@ -33360,185 +27126,190 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"wPE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +"wPC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/carpet, +/area/varadero/interior/chapel) "wPH" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"wQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/medical) -"wQi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 1; - name = "\improper Colony Offices"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/administration) -"wRi" = ( -/obj/structure/surface/table, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_y = 7 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/electrical) -"wRu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "wred" - }, -/area/varadero/interior/medical) -"wRB" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ +"wPM" = ( +/obj/structure/closet/crate/secure, +/obj/item/trash/kepler, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) +"wPX" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "greenfull" + icon_state = "chair_alt" }, -/area/varadero/interior/hall_N) -"wRR" = ( +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"wQk" = ( /obj/structure/platform/kutjevo/smooth{ climb_delay = 1; layer = 2.99 }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"wQA" = ( +/obj/structure/machinery/door/window/brigdoor/eastleft{ + name = "Sample Isolation" }, -/area/varadero/interior/oob) -"wSx" = ( -/turf/closed/wall, -/area/varadero/interior/laundry) -"wSL" = ( -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/exterior/pool) -"wSX" = ( -/obj/structure/platform_decoration/kutjevo{ +/turf/open/floor/shiva/north, +/area/varadero/interior/research) +"wQG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"wRt" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/shiva/green, +/area/varadero/interior/hall_N) +"wRG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellow" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"wRV" = ( +/obj/vehicle/train/cargo/engine{ + dir = 2 }, -/area/varadero/interior/cargo) -"wTE" = ( -/obj/structure/bed/chair{ - icon_state = "chair_alt"; - pixel_x = 3; - pixel_y = 17 +/turf/open/floor/shiva/blue, +/area/varadero/interior/hall_SE) +"wSx" = ( +/turf/closed/wall, +/area/varadero/interior/laundry) +"wSV" = ( +/obj/structure/machinery/storm_siren{ + dir = 4; + pixel_x = -3 }, -/obj/item/stack/cable_coil/pink{ - pixel_x = -7; - pixel_y = -4 +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/lz1_near) +"wTw" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/defibrillator{ + pixel_y = 5 }, -/area/varadero/interior_protected/maintenance/south) +/turf/open/floor/shiva/red, +/area/varadero/interior/medical) +"wTF" = ( +/turf/open/floor/wood, +/area/varadero/interior/library) "wTJ" = ( /turf/open/floor/plating, /area/varadero/interior/disposals) -"wTM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ +"wTS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"wTT" = ( +/obj/structure/bed/chair{ + buckling_y = 18; dir = 8; - icon_state = "yellowfull" + pixel_y = 18 }, -/area/varadero/interior/disposals) -"wUj" = ( -/obj/structure/window/framed/colony/reinforced, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +/obj/item/paper/crumpled{ + pixel_x = 9 }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) +"wUl" = ( +/obj/item/stack/cable_coil/cyan, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "wUF" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) +"wUK" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "wUU" = ( /turf/closed/shuttle{ dir = 1; icon_state = "pwall" }, /area/varadero/interior/oob) -"wVa" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/medical) "wVf" = ( /turf/closed/wall/r_wall, /area/varadero/interior/security) -"wVD" = ( +"wVp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/eastocean) +"wVG" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"wVE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "wVI" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"wVT" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) +"wVK" = ( +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/hall_NW) "wWd" = ( /obj/structure/largecrate/random, /turf/open/shuttle/elevator, /area/varadero/interior/records) +"wWr" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4; + climb_delay = 1; + layer = 2.99 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"wWu" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/barricade/handrail/wire{ + layer = 3.1 + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pool) "wWx" = ( /obj/structure/surface/table/reinforced, /obj/item/paper_bin, @@ -33574,26 +27345,19 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"wXu" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"wXC" = ( -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/maintenance/south) -"wXD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"wXH" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) +"wXJ" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/records) "wYa" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -33617,54 +27381,131 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"wYF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"wYf" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - dir = 1 +/obj/structure/machinery/r_n_d/protolathe, +/turf/open/floor/shiva/purple/west, +/area/varadero/interior/research) +"wYQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 }, -/area/varadero/interior/electrical) +/obj/item/tool/stamp{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/tool/stamp/clown{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/tool/stamp/rd{ + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) +"wZB" = ( +/turf/open/floor/plating/icefloor/warnplate/north, +/area/varadero/exterior/lz1_near) "wZF" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/carpet, /area/varadero/interior/library) -"xaK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"wZK" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/shiva{ - icon_state = "yellow" +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 }, -/area/varadero/interior/cargo) -"xbc" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 }, -/area/varadero/interior/caves/north_research) +/obj/item/ammo_magazine/pistol/vp78, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/pistol/vp78{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/shiva/red/west, +/area/varadero/interior/security) +"wZL" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/varadero/interior_protected/vessel) +"wZU" = ( +/obj/structure/barricade/handrail{ + desc = "Your platforms look pretty heavy king, let me support them for you."; + dir = 1; + icon_state = "hr_kutjevo"; + name = "support struts" + }, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xao" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/prop/ice_colony/tiger_rug{ + icon_state = "HotlineAlt" + }, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/administration) +"xaB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/electrical) +"xaE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xaT" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + dir = 1; + icon_state = "door_locked"; + locked = 1; + name = "\improper Research Chamber" + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) "xbm" = ( /obj/structure/machinery/photocopier, /turf/open/floor/wood, /area/varadero/interior/maintenance/north) -"xbA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) -"xbD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +"xbq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/area/varadero/interior/research) +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/medical) +"xbH" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/shiva/red/southwest, +/area/varadero/interior/administration) "xce" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -33681,40 +27522,25 @@ "xcf" = ( /turf/closed/wall/r_wall/elevator, /area/varadero/interior/records) -"xcz" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"xcE" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"xdz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"xdb" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) +"xen" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.1 }, -/area/varadero/interior/hall_SE) -"xdJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/shiva{ - dir = 9; - icon_state = "red" +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/security) +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"xep" = ( +/obj/structure/girder/displaced, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/exterior/eastbeach) "xeO" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -33727,20 +27553,6 @@ }, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/monsoon) -"xeV" = ( -/obj/structure/prop/souto_land/streamer{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) -"xff" = ( -/obj/structure/largecrate/random, -/turf/open/floor/shiva{ - icon_state = "blue" - }, -/area/varadero/interior/hall_SE) "xfo" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/dock_control) @@ -33754,48 +27566,58 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/caves/digsite) -"xfQ" = ( -/turf/open/gm/coast/beachcorner2/north_west, -/area/varadero/exterior/monsoon) -"xgG" = ( -/turf/closed/wall/r_wall, -/area/varadero/interior/administration) -"xgW" = ( +"xfN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 +/obj/item/reagent_container/food/snacks/eat_bar{ + pixel_x = 7; + pixel_y = 13 }, -/obj/item/tool/stamp{ - pixel_x = 6; - pixel_y = 12 +/obj/item/implantcase/explosive{ + pixel_x = -3; + pixel_y = 3 }, -/obj/item/tool/stamp/clown{ - pixel_x = 8; - pixel_y = 5 +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) +"xfQ" = ( +/turf/open/gm/coast/beachcorner2/north_west, +/area/varadero/exterior/monsoon) +"xgA" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_y = 7 }, -/obj/item/tool/stamp/rd{ - pixel_x = 7; - pixel_y = -2 +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xgB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) +"xgF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced{ + dir = 1 }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/shiva/redfull, +/area/varadero/interior/medical) +"xgG" = ( +/turf/closed/wall/r_wall, /area/varadero/interior/administration) +"xgL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/wet_sign, +/turf/open/floor/white, +/area/varadero/interior/toilets) "xgY" = ( /obj/effect/overlay/palmtree_r, /turf/open/gm/dirt, /area/varadero/exterior/lz1_near) -"xhs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" - }, -/area/varadero/interior/security) "xhx" = ( /obj/structure/prop/ice_colony/dense/planter_box/plated{ dir = 4 @@ -33806,84 +27628,60 @@ }, /turf/open/floor/plating, /area/varadero/interior/research) -"xiV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/closet/crate/ammo/alt, -/obj/item/storage/belt/utility, -/turf/open/floor/shiva{ - icon_state = "floor3" +"xhV" = ( +/obj/structure/closet/crate/secure, +/obj/item/stack/sheet/plasteel{ + amount = 24 }, +/turf/open/floor/shiva/floor3, /area/varadero/interior/cargo) -"xjp" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/electrical) -"xka" = ( -/obj/structure/window/framed/colony/reinforced{ - color = "#aba9a9" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"xkb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials/random{ - pixel_y = 5 - }, -/obj/item/clothing/glasses/science{ - pixel_y = 9 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "bluefull" - }, -/area/varadero/interior/administration) +"xip" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xke" = ( /obj/effect/overlay/palmtree_r, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/monsoon) -"xkj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - dir = 1 +"xkX" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/varadero/interior/medical) -"xlb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/shiva/north, +/area/varadero/interior/cargo) +"xlp" = ( +/obj/item/facepaint/sunscreen_stick, +/turf/open/gm/dirt/desert0, +/area/varadero/exterior/lz1_near) +"xlJ" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; + locked = 1; + name = "\improper Engine Room" }, -/turf/open/floor/shiva{ +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xlW" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + autoname = 0; dir = 1; - icon_state = "green" - }, -/area/varadero/interior/hall_SE) -"xlv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "floor3" + icon_state = "door_locked"; + locked = 1; + name = "\improper Engine Room" }, -/area/varadero/interior/disposals) -"xml" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xmd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = 6 }, -/area/varadero/interior/cargo) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "xmL" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -33892,51 +27690,93 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xne" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +"xni" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) +"xnv" = ( +/obj/structure/bed/alien{ + can_buckle = 0; + color = "#aba9a9" }, -/turf/open/floor/shiva{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "snow_mat" + layer = 3.3; + pixel_y = 4 }, -/area/varadero/interior/maintenance) -"xnr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/bed/alien{ + buckling_y = 13; + color = "#aba9a9"; + layer = 3.5; + pixel_y = 13 }, -/area/varadero/interior/maintenance/research) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) +"xnw" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/turf/open/floor/white, +/area/varadero/interior/toilets) "xnS" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/exterior/eastbeach) -"xnV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 10; - icon_state = "red" +"xnW" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/area/varadero/interior/morgue) +/obj/item/paper/crumpled{ + pixel_x = 15; + pixel_y = -9 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"xok" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/alarm{ + pixel_y = 24 + }, +/turf/open/floor/freezerfloor, +/area/varadero/interior/cargo) +"xor" = ( +/obj/structure/machinery/conveyor_switch, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"xow" = ( +/turf/open/floor/shiva/yellow, +/area/varadero/interior/electrical) +"xoE" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "xpe" = ( /obj/structure/surface/rack, /obj/item/tool/extinguisher, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xpk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/tile/plasteel{ - layer = 2.89; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xpI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/varadero/interior/maintenance/security) +/turf/open/floor/wood, +/area/varadero/interior/library) "xpL" = ( /obj/structure/machinery/camera/autoname/lz_camera, /obj/structure/machinery/landinglight/ds1/spoke{ @@ -33948,114 +27788,62 @@ "xpP" = ( /turf/closed/wall/r_wall, /area/varadero/interior/comms1) -"xqG" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/security) -"xqN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Colony Administration"; - req_access_txt = "100" +"xqO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/electrical) +"xqQ" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"xrD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Underground Maintenance"; + req_access_txt = "100"; + req_one_access = null }, -/area/varadero/interior/administration) -"xqP" = ( +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/hall_SE) +"xrE" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, -/area/varadero/interior/cargo) -"xqS" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" + dir = 4 }, -/obj/structure/platform/kutjevo/smooth{ - dir = 8; - climb_delay = 1; - layer = 2.99 +/turf/open/floor/shiva/redcorners/north, +/area/varadero/interior/security) +"xrG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/structure/disposalpipe/segment, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_NW) +"xrR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/circuitboard/computer/atmos_alert, +/obj/item/circuitboard/machine/smes{ + pixel_x = -7; + pixel_y = 7 }, -/area/varadero/interior_protected/vessel) -"xqY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 13 }, -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/alarm{ +/obj/structure/machinery/firealarm{ dir = 8; - pixel_x = 24 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "yellow" + pixel_x = -24 }, -/area/varadero/interior/cargo) -"xrl" = ( +/turf/open/floor/shiva/blue/southwest, +/area/varadero/interior/technical_storage) +"xtJ" = ( /obj/structure/platform/kutjevo/smooth{ - dir = 1; + dir = 4; climb_delay = 1; layer = 2.99 }, -/obj/structure/barricade/handrail{ - desc = "Your platforms look pretty heavy king, let me support them for you."; - dir = 1; - icon_state = "hr_kutjevo"; - name = "support struts" - }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, +/obj/structure/blocker/invisible_wall/water, +/turf/open/gm/river/ocean/deep_ocean, /area/varadero/exterior/farocean) -"xrA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"xsi" = ( -/obj/structure/bed/chair, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" - }, -/area/varadero/interior/security) -"xsH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) "xtZ" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -34066,18 +27854,26 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xuB" = ( -/obj/structure/disposalpipe/segment{ +"xud" = ( +/obj/structure/platform/kutjevo/smooth{ dir = 4; - icon_state = "pipe-c" + climb_delay = 1; + layer = 2.99 }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/pontoon_beach) +"xuG" = ( +/obj/effect/decal/cleanable/blood{ + basecolor = "#20d450"; + color = "#20d450" }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/obj/effect/decal/remains/human, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/area/varadero/interior/hall_N) +/turf/open/floor/corsat/squareswood/north, +/area/varadero/interior_protected/vessel) "xuJ" = ( /obj/structure/machinery/atm{ name = "Weyland-Yutani Automatic Teller Machine"; @@ -34085,244 +27881,131 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xuN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/shiva{ - icon_state = "yellowcorners" +"xuV" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"xvh" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, +/turf/open/floor/shiva/multi_tiles, /area/varadero/interior/cargo) -"xuT" = ( +"xvo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - pixel_y = 5 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"xuW" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_N) -"xuX" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"xvj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) +/obj/item/device/flashlight/lamp, +/turf/open/floor/shiva/red/east, +/area/varadero/interior/security) "xvF" = ( /obj/structure/window/framed/colony/reinforced, /turf/open/floor/plating, /area/varadero/interior/security) -"xwk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/packageWrap, -/obj/item/tool/hand_labeler, -/obj/item/tool/stamp, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/cargo) -"xwG" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 16; - pixel_y = -8 - }, -/obj/item/device/flashlight/lamp/tripod, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, +"xxf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/icefloor/asteroidplating, /area/varadero/interior/maintenance/research) -"xwY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) "xxk" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior_protected/maintenance/south) -"xxo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/clothing/head/hardhat/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = 2; - pixel_y = 17 - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/bunks) -"xxs" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"xxE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Theta-V Research Laboratory Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) "xxI" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, /area/varadero/interior/chapel) +"xxT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + indestructible = 1; + unacidable = 1 + }, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "xxV" = ( /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall, /area/varadero/interior/hall_N) -"xxZ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"xya" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/shorts/green{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/under/shorts/blue{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/red{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/shiva{ - icon_state = "snow_mat" - }, -/area/varadero/interior/maintenance) -"xyr" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"xyJ" = ( -/turf/open/floor/shiva{ - dir = 5; - icon_state = "green" +"xyI" = ( +/obj/structure/stairs/perspective{ + color = "#b29082"; + dir = 1; + icon_state = "p_stair_full" }, -/area/varadero/interior/records) +/turf/open/gm/dirt/desert3, +/area/varadero/exterior/lz1_near) "xyO" = ( /obj/structure/machinery/door/airlock/multi_tile/elevator/research, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xyU" = ( -/obj/structure/closet/crate/secure, -/obj/item/key/cargo_train, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) "xza" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/security) -"xzc" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/gm/dirt{ - icon_state = "desert0" +"xzg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = 3; + pixel_y = 9 }, -/area/varadero/exterior/pontoon_beach) +/obj/item/device/cassette_tape/ocean{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/device/cassette_tape/pop2, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "xzj" = ( /obj/structure/sign/safety/airlock{ pixel_x = 8 }, /turf/closed/wall, /area/varadero/interior/library) -"xzr" = ( -/turf/open/floor/shiva{ - icon_state = "yellow" +"xzo" = ( +/obj/structure/bed/chair{ + icon_state = "chair_alt" }, -/area/varadero/interior/comms3) +/turf/open/floor/shiva/blue/north, +/area/varadero/interior/administration) +"xzq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xzu" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/interior/comms1) +"xzB" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) +"xzC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/north) "xAg" = ( /turf/closed/wall/r_wall/unmeltable, /area/varadero/interior/comms2) -"xAs" = ( -/obj/structure/largecrate/random/mini/chest/b, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) +"xAw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/snow_mat, +/area/varadero/interior/maintenance) "xAx" = ( /turf/open/gm/coast/east, /area/varadero/interior/caves/east) -"xAK" = ( -/turf/open/floor/shiva{ - dir = 4; - icon_state = "purple" - }, -/area/varadero/interior/research) -"xAO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"xBv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Underground Lavatory"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/laundry) +"xAC" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/structure/flora/bush/ausbushes/var3/stalkybush, +/turf/open/gm/river/ocean/deep_ocean, +/area/varadero/exterior/farocean) "xBw" = ( /obj/structure/machinery/storm_siren{ dir = 8; @@ -34330,32 +28013,25 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/eastbeach) -"xBH" = ( -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/effect/landmark/lv624/fog_blocker{ - time_to_dispel = 25000 - }, -/obj/structure/blocker/invisible_wall/water, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +"xBE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/screwdriver{ + pixel_x = -2; + pixel_y = 4 }, -/area/varadero/exterior/farocean) -"xBS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/tool/plantspray/pests/old/phosmet{ + pixel_x = -6; + pixel_y = 14 }, -/area/varadero/exterior/lz1_near) -"xBX" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/shiva{ - icon_state = "blue" +/obj/item/weapon/wirerod{ + pixel_x = 8 }, +/turf/open/floor/shiva/blue, /area/varadero/interior/technical_storage) +"xBW" = ( +/obj/structure/bed/chair, +/turf/open/floor/shiva/green/north, +/area/varadero/interior/court) "xCn" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) @@ -34367,19 +28043,38 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"xCM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/comms4) -"xCU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "yellowcorners" +"xCv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/freezerfloor, /area/varadero/interior/cargo) +"xCy" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xCD" = ( +/obj/structure/bed/chair{ + dir = 4; + icon_state = "chair_alt"; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -10; + pixel_y = -9 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/comms2) +"xCV" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/morgue) "xCZ" = ( /obj/structure/prop/tower, /turf/open/gm/dirt, @@ -34395,80 +28090,53 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/lz2_near) -"xDy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Underground Sports Center"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/court) "xDE" = ( /obj/structure/blocker/invisible_wall/water, /obj/item/lightstick/variant/planted, /turf/open/gm/coast/south, /area/varadero/exterior/farocean) -"xEc" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"xEl" = ( -/obj/structure/machinery/storm_siren{ - pixel_y = 5 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior_protected/caves) -"xFb" = ( -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/eastocean) -"xFw" = ( -/obj/structure/bed/chair{ - buckling_y = 18; - dir = 8; - pixel_y = 18 - }, -/turf/open/floor{ - icon_state = "white" +"xEi" = ( +/obj/item/clothing/shoes/swimmingfins, +/turf/open/floor/shiva/snow_mat/east, +/area/varadero/interior/maintenance) +"xEz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/varadero/interior/laundry) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) +"xEN" = ( +/obj/item/tool/pickaxe/plasmacutter, +/turf/open/shuttle/red, +/area/varadero/interior_protected/vessel) +"xFx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xFE" = ( /turf/open/floor/wood, /area/varadero/interior/records) -"xFO" = ( -/obj/item/device/flashlight, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/mess) +"xFN" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/redfull/west, +/area/varadero/interior/hall_SE) "xFS" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 }, /turf/closed/wall/rock/brown, /area/varadero/exterior/pontoon_beach) -"xFZ" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light{ - dir = 4 +"xGD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/shiva{ - icon_state = "redfull" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/area/varadero/interior/medical) +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_SE) "xGJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/carpet, @@ -34488,153 +28156,82 @@ }, /turf/open/floor/wood, /area/varadero/interior/court) -"xHz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"xIA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/varadero/interior/cargo) -"xJb" = ( -/obj/structure/machinery/landinglight/ds2/spoke{ - pixel_x = -1; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"xJt" = ( +"xIn" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/shiva/yellow/north, +/area/varadero/interior/hall_SE) +"xIs" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 3 }, -/area/varadero/interior/maintenance/security) -"xJx" = ( -/obj/structure/machinery/photocopier, +/turf/open/floor/shiva/wred/north, +/area/varadero/interior/medical) +"xIO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/packageWrap, +/obj/item/tool/hand_labeler, +/obj/item/tool/stamp, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/cargo) +"xIU" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" +/turf/open/floor/plating/icefloor/warnplate, +/area/varadero/interior/maintenance/north) +"xIV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -16; + pixel_y = 24 }, -/area/varadero/interior/administration) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance) "xJH" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, /turf/open/gm/coast/beachcorner2/north_west, /area/varadero/exterior/lz2_near) -"xJZ" = ( -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"xKo" = ( -/obj/structure/surface/table, -/obj/item/storage/wallet/random{ - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) "xKq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin{ pixel_x = 2; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pknife{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/varadero/interior/hall_SE) -"xKv" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood, -/area/varadero/interior/court) -"xKC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"xKL" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/pistol/vp78, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -3; - pixel_y = 3 + pixel_y = 8 }, -/obj/item/ammo_magazine/pistol/vp78{ - pixel_x = -7; - pixel_y = 6 +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -9; + pixel_y = 7 }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "red" +/obj/item/tool/kitchen/utensil/pknife{ + pixel_x = 12; + pixel_y = 7 }, -/area/varadero/interior/security) -"xKS" = ( -/obj/structure/lz_sign/new_varadero, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +/turf/open/floor/wood, +/area/varadero/interior/hall_SE) +"xKv" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/area/varadero/exterior/lz1_near) -"xLB" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/exterior/pontoon_beach) +/turf/open/floor/wood, +/area/varadero/interior/court) +"xKH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/shiva/yellowcorners/north, +/area/varadero/interior/cargo) +"xLp" = ( +/turf/open/floor/shiva/green/north, +/area/varadero/interior/mess) "xLE" = ( /obj/structure/noticeboard{ pixel_y = 32 @@ -34642,34 +28239,27 @@ /obj/structure/bed/chair/comfy/black, /turf/open/floor/wood, /area/varadero/interior/security) -"xLN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" - }, -/area/varadero/interior/medical) -"xMq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"xMs" = ( -/obj/item/paper, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" +"xLL" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/morgue) -"xNb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/comms4) +"xMe" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) +"xMr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) +/turf/open/floor/shiva/blue/east, +/area/varadero/interior/administration) +"xNn" = ( +/turf/open/floor/shiva/purple/north, +/area/varadero/interior/hall_NW) "xNA" = ( /obj/structure/fence, /turf/open/gm/dirt, @@ -34677,90 +28267,22 @@ "xNR" = ( /turf/closed/wall, /area/varadero/interior/bunks) -"xNY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance) -"xOo" = ( -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"xOx" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/popcorn, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/cargo) -"xOz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor{ - icon_state = "white" - }, -/area/varadero/interior/toilets) -"xOI" = ( -/obj/item/tool/wrench, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"xOX" = ( -/obj/structure/platform/kutjevo/smooth{ - climb_delay = 1; - layer = 2.99 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz1_near) -"xPj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"xPx" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "\improper Theta-V Research Laboratory Director's Office"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/research) -"xPV" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva{ - icon_state = "yellow" - }, +"xOk" = ( +/turf/open/floor/shiva/floor3, /area/varadero/interior/electrical) -"xQe" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/shiva{ - icon_state = "purple" +"xPY" = ( +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/monsoon) +"xQu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) +"xQy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Underground Requesitions Lobby" }, -/area/varadero/interior/research) +/turf/open/floor/shiva/floor3, +/area/varadero/interior/cargo) "xQJ" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/mask/cigarette/cigar, @@ -34769,31 +28291,62 @@ }, /turf/open/floor/wood, /area/varadero/interior/beach_bar) -"xRt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"xQL" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 2.991 }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/research) +"xQZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/tile/plasteel{ + layer = 2.89; + pixel_x = 17; + pixel_y = 16 }, -/area/varadero/interior/electrical) +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/maintenance/security) "xRx" = ( /obj/structure/surface/table/woodentable, /obj/item/weapon/gun/revolver/spearhead, /obj/item/ammo_magazine/revolver/spearhead, /turf/open/floor/wood, /area/varadero/interior/security) +"xRz" = ( +/obj/item/weapon/gun/flare{ + current_mag = null + }, +/turf/open/floor/asteroidfloor/north, +/area/varadero/exterior/lz2_near) "xRF" = ( /turf/closed/wall, /area/varadero/interior/hall_N) +"xRO" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/technical_storage) +"xRT" = ( +/turf/open/floor/shiva/multi_tiles/southeast, +/area/varadero/interior/hall_N) +"xSd" = ( +/obj/item/pizzabox/meat{ + pixel_x = -5; + pixel_y = 13 + }, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior_protected/maintenance/south) "xSl" = ( /obj/item/device/flashlight/lamp/tripod, /turf/open/gm/grass/grass1/weedable, /area/varadero/interior_protected/caves/central) +"xSD" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/key/cargo_train, +/turf/open/floor/shiva/purplefull/west, +/area/varadero/interior/research) "xSZ" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8; @@ -34808,73 +28361,23 @@ }, /turf/open/gm/dirt, /area/varadero/exterior/eastbeach) -"xTd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 1 - }, -/area/varadero/interior/cargo) -"xTA" = ( -/obj/structure/prop/rock/brown, -/turf/open/gm/river{ - name = "shallow ocean"; - default_name = "shallow ocean" - }, -/area/varadero/exterior/farocean) -"xTH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "multi_tiles" - }, +"xTe" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/shiva/wred/north, /area/varadero/interior/medical) -"xUq" = ( -/turf/open/floor/shiva{ - dir = 1; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"xVe" = ( -/obj/item/prop/helmetgarb/bullet_pipe{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/reagent_container/glass/fertilizer/l4z{ - pixel_x = 10; - pixel_y = 10 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/research) -"xVw" = ( -/obj/structure/blocker/invisible_wall/water, -/obj/structure/flora/bush/ausbushes/var3/stalkybush, -/turf/open/gm/river/ocean{ - name = "deep ocean"; - default_name = "deep ocean" - }, -/area/varadero/exterior/farocean) -"xVA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "redfull" +"xUC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/area/varadero/interior/medical) -"xVC" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/sosjerky, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/shiva{ - icon_state = "floor3" +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) +"xVv" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "cargobay"; + name = "Cargo Bay Lock"; + pixel_y = 20 }, +/turf/open/floor/shiva/yellow/north, /area/varadero/interior/cargo) "xVQ" = ( /obj/structure/sign/safety/reception, @@ -34883,54 +28386,35 @@ }, /turf/closed/wall, /area/varadero/interior/maintenance/north) -"xVX" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/exterior/lz2_near) -"xWj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "red" +"xWz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/varadero/interior/security) -"xWL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/alarm{ + dir = 8; + pixel_x = 24 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/exterior/eastbeach) +/turf/open/floor/shiva/yellow/east, +/area/varadero/interior/cargo) "xWU" = ( /obj/item/trash/candle, /turf/open/floor/wood, /area/varadero/interior/chapel) -"xWY" = ( -/turf/open/floor/shiva{ - icon_state = "green" +"xXa" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_SE) +"xXh" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/shiva/green, /area/varadero/interior/hall_N) -"xXe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/glass/paint/black{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/tool/wirecutters/clippers, -/obj/item/reagent_container/food/drinks/h_chocolate{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/shiva{ - dir = 5; - icon_state = "blue" - }, -/area/varadero/interior/technical_storage) "xXp" = ( /obj/structure/closet/crate/ammo/alt, /obj/item/ammo_magazine/rifle/m4ra{ @@ -34950,51 +28434,31 @@ }, /turf/open/shuttle/elevator/grating, /area/varadero/interior/hall_N) -"xXr" = ( -/obj/structure/inflatable, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) +"xXS" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop, +/turf/open/floor/shiva/yellowfull/west, +/area/varadero/interior/electrical) +"xXY" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/floor/shiva/multi_tiles, +/area/varadero/interior/hall_N) "xYB" = ( /obj/item/tool/pickaxe, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/caves/north_research) -"xYC" = ( -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/north) -"xYM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellow" - }, -/area/varadero/interior/cargo) "xZa" = ( /obj/structure/prop/rock/brown, /turf/open/gm/dirt, /area/varadero/interior_protected/caves/swcaves) -"xZv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +"xZA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, -/area/varadero/interior_protected/maintenance/south) +/obj/structure/closet/radiation, +/turf/open/floor/shiva/purple, +/area/varadero/interior/research) "xZD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -35005,89 +28469,32 @@ }, /turf/open/floor/shiva, /area/varadero/interior/disposals) -"xZN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "yellowfull" - }, -/area/varadero/interior/disposals) -"xZO" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) -"yab" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/cargo) -"yaf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - icon_state = "red" - }, -/area/varadero/interior/medical) -"yaC" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - autoname = 0; - locked = 1; - name = "\improper Navigation Chamber" - }, -/turf/open/shuttle{ - icon_state = "floor6" - }, -/area/varadero/interior_protected/vessel) -"yba" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" - }, -/area/varadero/interior/research) -"ybj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"yaK" = ( +/obj/structure/blocker/invisible_wall/water, +/obj/item/lightstick/variant/planted, +/turf/open/gm/river/shallow_ocean_shallow_ocean, +/area/varadero/exterior/farocean) +"yaQ" = ( +/obj/structure/platform/kutjevo/smooth{ + climb_delay = 1; + layer = 2.99 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -16; - pixel_y = -8 +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" +/obj/structure/platform/kutjevo/smooth{ + dir = 1; + climb_delay = 1; + layer = 2.99 }, -/area/varadero/interior/maintenance/research) +/obj/structure/blocker/invisible_wall/water, +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/oob) "ybm" = ( /obj/structure/surface/table/woodentable, /obj/item/device/flashlight/lamp, /turf/open/floor/carpet, /area/varadero/interior/library) -"ybt" = ( -/obj/structure/prop/ice_colony/dense/planter_box/plated{ - dir = 9; - icon_state = "planter_box_soil" - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 11 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) "ybL" = ( /obj/structure/filingcabinet{ density = 0; @@ -35103,18 +28510,13 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) -"ybY" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/obj/item/tool/stamp{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/shiva{ - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_NW) +"ybR" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/effect/landmark/crap_item, +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/comms3) "ycz" = ( /obj/structure/machinery/shower{ dir = 8 @@ -35122,14 +28524,6 @@ /obj/structure/machinery/door/window/westleft, /turf/open/floor/interior/plastic, /area/varadero/interior/security) -"ycE" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/explosive/grenade/incendiary, -/turf/open/floor/shiva{ - dir = 6; - icon_state = "red" - }, -/area/varadero/interior/security) "ycY" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -35148,63 +28542,6 @@ "ydI" = ( /turf/open/floor/carpet, /area/varadero/interior/records) -"ydP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/medical) -"ydQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/shiva{ - icon_state = "floor3" - }, -/area/varadero/interior/security) -"ydZ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/ammo_magazine/sniper/svd, -/obj/item/weapon/gun/rifle/sniper/svd, -/obj/structure/window/reinforced, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/varadero/interior_protected/vessel) -"yeF" = ( -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/maintenance/security) -"yeG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/frame/camera, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "multi_tiles" - }, -/area/varadero/interior/hall_SE) -"yeH" = ( -/turf/open/floor/shiva{ - dir = 8; - icon_state = "green" - }, -/area/varadero/interior/hall_N) "yeJ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -35219,32 +28556,6 @@ }, /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance/research) -"yeY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/shiva{ - dir = 4; - icon_state = "red" - }, -/area/varadero/interior/security) -"yfh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"yfQ" = ( -/obj/structure/bed/chair{ - dir = 4; - icon_state = "chair_alt" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "blue" - }, -/area/varadero/interior/administration) "yfT" = ( /obj/item/stack/tile/plasteel{ layer = 2.89; @@ -35270,46 +28581,17 @@ }, /turf/open/floor/plating, /area/varadero/interior_protected/caves/digsite) -"ygn" = ( -/obj/structure/catwalk{ - indestructible = 1 - }, -/turf/open/gm/river/desert/deep{ - base_river_slowdown = 0 - }, -/area/varadero/interior/maintenance/north) -"ygT" = ( -/obj/structure/surface/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "wred" - }, -/area/varadero/interior/medical) -"ygY" = ( -/obj/item/card/id/silver{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/surface/table, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/varadero/exterior/lz1_near) -"ygZ" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" +"yhh" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/hall_N) +"yhj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera{ + pixel_y = 5 }, -/area/varadero/exterior/lz1_near) +/turf/open/floor/shiva/bluefull/west, +/area/varadero/interior/administration) "yhy" = ( /obj/structure/filingcabinet{ density = 0; @@ -35331,6 +28613,22 @@ }, /turf/open/floor/wood, /area/varadero/interior/bunks) +"yhO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 1; + pixel_y = 17 + }, +/obj/item/weapon/gun/revolver/spearhead{ + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + pixel_x = 2; + pixel_y = 8 + }, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/security) "yhU" = ( /obj/structure/flora/bush/ausbushes/var3/brflowers, /turf/open/gm/grass/grass1/weedable, @@ -35350,61 +28648,40 @@ "yil" = ( /turf/open/auto_turf/sand_white/layer1, /area/varadero/interior/maintenance) -"yiA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/shiva{ - icon_state = "wredfull" - }, -/area/varadero/interior/medical) -"yji" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/storage/firstaid/rad{ - pixel_y = 4 - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "purplefull" +"yin" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/varadero/interior/research) -"yjp" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ +/turf/open/floor/plating/icefloor/asteroidplating, +/area/varadero/interior/electrical) +"yiX" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/shiva/green, +/area/varadero/interior/mess) +"yje" = ( +/obj/structure/machinery/firealarm{ dir = 1; - name = "\improper Underground Security Checkpoint"; - req_access_txt = "100" - }, -/turf/open/floor/shiva{ - dir = 8; - icon_state = "redfull" + pixel_y = -24 }, -/area/varadero/interior/hall_N) +/turf/open/floor/white, +/area/varadero/interior/toilets) "yjH" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/sand_white/layer1, /area/varadero/exterior/lz2_near) -"yjK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/shiva{ - dir = 1; - icon_state = "multi_tiles" +"yjR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/area/varadero/interior/electrical) +/turf/open/floor/shiva/yellow/west, +/area/varadero/interior/cargo) "ykc" = ( /turf/closed/wall, /area/varadero/interior/cargo) +"ykr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/shiva/floor3, +/area/varadero/interior/medical) "yks" = ( /turf/closed/wall/r_wall, /area/varadero/interior/maintenance/research) @@ -35412,22 +28689,6 @@ /obj/structure/window/framed/colony, /turf/open/floor/plating, /area/varadero/interior/technical_storage) -"ykx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plating/icefloor{ - icon_state = "asteroidplating" - }, -/area/varadero/interior/caves/east) -"ykA" = ( -/obj/structure/closet/crate/construction, -/obj/item/storage/belt/utility/full, -/turf/open/gm/dirt{ - icon_state = "desert0" - }, -/area/varadero/exterior/eastbeach) "ykM" = ( /obj/effect/overlay/palmtree_r{ icon_state = "palm2" @@ -35683,30 +28944,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -35865,30 +29126,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -36047,30 +29308,30 @@ pGs pGs pGs pGs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -36229,30 +29490,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -36299,7 +29560,7 @@ xCn xCn xCn srg -ljt +evY dxK pGs pGs @@ -36411,30 +29672,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -36458,7 +29719,7 @@ pGs pGs pGs uHY -ljt +evY xCn xCn xCn @@ -36481,12 +29742,12 @@ xCn xCn xCn xCn -oPQ +eoa xCn cBI xCn xCn -ljt +evY pGs pGs pGs @@ -36593,30 +29854,30 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +tXB pGs pGs pGs @@ -36635,25 +29896,25 @@ pGs pGs srg srg -ljt +evY pGs pGs uHY xCn -oPQ +eoa xCn xCn xCn xCn xCn -qRi -oPQ +iHk +eoa xCn xCn xCn xCn xCn -oPQ +eoa xCn xCn srg @@ -36663,12 +29924,12 @@ xCn oVt xCn xCn -oPQ +eoa xCn cBI xCn -oPQ -oPQ +eoa +eoa xCn pGs pGs @@ -36775,31 +30036,31 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR pGs pGs pGs @@ -36817,25 +30078,25 @@ srg xCn xCn xCn -oPQ +eoa uHY xCn qYg xCn -oPQ +eoa srg xCn srg xCn -oPQ -oPQ -oPQ +eoa +eoa +eoa xCn xCn srg srg xCn -oPQ +eoa xCn xCn xCn @@ -36850,7 +30111,7 @@ xCn cBI xCn xCn -oPQ +eoa xCn xCn fHk @@ -36957,32 +30218,32 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR pGs pGs pGs @@ -36999,7 +30260,7 @@ xCn xCn fHk xCn -oPQ +eoa xCn xCn xCn @@ -37010,14 +30271,14 @@ xCn xCn xCn xCn -oPQ -oPQ +eoa +eoa xCn xCn oVt xCn sfF -ljt +evY uHY qul qul @@ -37139,33 +30400,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -37175,28 +30436,28 @@ xCn xCn xCn xCn -oPQ -oPQ -oPQ +eoa +eoa +eoa xCn xCn oVt xCn xCn -oPQ +eoa xCn xCn xCn kXQ wpG -vYp +nvn kXQ kXQ yks yks kXQ kXQ -vYp +nvn kXQ yks yks @@ -37321,33 +30582,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +tXB +tXB +tXB pGs pGs pGs @@ -37355,44 +30616,44 @@ pGs xCn xCn xCn -xbc +cHz xCn -oPQ -oPQ -oPQ +eoa +eoa +eoa xCn xCn xCn -oPQ +eoa xCn xCn srg xCn xCn -efw +tdA kXQ -efw +tdA kXQ kXQ -fND +iZa xCq kXQ -efw -jGA -efw -efw -awu +tdA +mbo +tdA +tdA +xxf fay -uuN -sqG -hBX +fxZ +bTv +rDN fay -eqe -xyr -fWA -mEA -sBk -ksn +lXA +tgq +aGB +bFg +nmA +dzU pGc srg xCn @@ -37503,78 +30764,78 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB sNx -mPk -imk -mPk -imk +tXB +gtR +tXB +gtR pGs pGs pGs pGs xCn xCn -oPQ +eoa xCn -oPQ +eoa xCn xCn xCn xCn xCn xCn -oPQ +eoa xCn uHY xCn xCn -mQF -efw +olj +tdA kXQ -efw -efw -efw +tdA +tdA +tdA kXQ -pJA +pII kXQ -efw -efw -efw -mzI -efw +tdA +tdA +tdA +lqf +tdA fay -wIr -mym -sDM +gqA +lIT +rBO fay -cJa -hDA -pjs -aJc -hDA -xrA +stn +qJh +aHi +kLC +qJh +hKr pGc srg xCn @@ -37685,33 +30946,33 @@ pGs pGs pGs pGs -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB sNx -mPk -mPk -rYR +tXB +tXB +lnx pGs pGs pGs @@ -37727,15 +30988,15 @@ qul uHY srg srg -ljt +evY qul qul qul uHY hhM -qDh -qlj -qlj +wux +aVE +aVE fay tqh fay @@ -37743,20 +31004,20 @@ fay tqh fay fay -efw -qMY -efw -dkr -tKE -hfX -xQe -dkr -qMD -hDA -iAp -gwC -hDA -tMx +tdA +jOD +tdA +iNH +rMU +wQA +sqz +iNH +xzg +qJh +rdW +pGW +qJh +xSD tqh dxK xCn @@ -37867,43 +31128,43 @@ pGs pGs pGs pGs -cJL -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -vlm -imk -mPk -imk -xTA +utI +tXB +tXB +tXB +utI +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +qAP +gtR +tXB +gtR +tdc pGs pGs pGs qul -ljt -oPQ -oPQ -oPQ -ljt +evY +eoa +eoa +eoa +evY qul qul qul @@ -37915,9 +31176,9 @@ qul qul qul hhM -efw -efw -kYN +tdA +tdA +fBM fay cka fla @@ -37925,20 +31186,20 @@ vFf eGP nPE fay -bag -qMY -efw +ioE +jOD +tdA fay -tGl -loW -fUY +jnJ +ged +buv fay -qtQ -fef -hDA -gwC -odD -rjE +qnz +xfN +qJh +pGW +sLr +hyL fay qul qul @@ -38049,43 +31310,43 @@ pGs pGs pGs pGs -wBp -wBp -rYC -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -wBp -oNa -mYA -cLV -eCB +uuY +uuY +diF +xAC +uuY +uuY +uuY +diF +xAC +uuY +uuY +uuY +uuY +xAC +diF +uuY +uuY +uuY +xAC +uuY +diF +uuY +uuY +uuY +ncw +wAq +xtJ +ael klT klT klT klT -vYp +nvn kXQ kXQ yks -vYp +nvn yks yks yks @@ -38097,9 +31358,9 @@ yks yks yks yks -efw -efw -efw +tdA +tdA +tdA fay mzJ rbU @@ -38108,17 +31369,17 @@ sdU rbU fay fay -fdA -dkr +fEn +iNH fay fay -fKz +ruB fay fay fay -lBw -ltW -tkw +qes +mng +lrG ftA fay fay @@ -38128,7 +31389,7 @@ ebr pKK vYW loA -uQa +dSD vYW vYW vYW @@ -38231,77 +31492,77 @@ pGs pGs pGs pGs -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -jDe -sNy -sNy -tER -sNy -dWH -jhW -jhW -jhW -mxx -jGm -fND -uVo +dRe +ewK +dRe +dRe +dRe +dRe +dRe +dRe +dRe +ewK +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +ewK +dRe +dRe +kpJ +dRe +iEF +xQL +xQL +xQL +joS +aGg +iZa +rGP kXQ kXQ -efw -fND -uVo +tdA +iZa +rGP kXQ -efw -xwG +tdA +pcj xCq kXQ kXQ -efw -efw -fND -uVo -efw -efw -efw -efw +tdA +tdA +iZa +rGP +tdA +tdA +tdA +tdA pCP ovC ovC nOQ lIO rbU -aCz -uuN -nuQ -rQV -rQV -rQV -nuQ -sKe -cGx -iLz -cGT -rQV -nuQ -hBX +cPO +fxZ +oAO +cwg +cwg +cwg +oAO +gHx +wYf +rNX +lBU +cwg +oAO +rDN eEY xhx fay @@ -38413,79 +31674,79 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe lyP -sNy +dRe lyP -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -nVv -efw -efw -qVp -sQn -sQn -rxI -sQn -sQn -sQn -sQn -rxI -sQn -sQn -sQn -rxI -sQn -sQn -sQn -sQn -tVD -rxI -sQn -dTl -vdq -efw -efw +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +tsA +tdA +tdA +nhv +kCR +kCR +clP +kCR +kCR +kCR +kCR +clP +kCR +kCR +kCR +clP +kCR +kCR +kCR +kCR +fKV +clP +kCR +ghE +vRB +tdA +tdA tqh mbf ovC ovC ovC rbU -aCz -wIr -qQF -ltW -cNT -ltW -qQF -ltW -ltW -ltW -ltW -ltW -qQF -eWR -oXi -gEy +cPO +gqA +vLY +mng +mTC +mng +vLY +mng +mng +mng +mng +mng +vLY +tou +lld +ppH fay ebr ebr @@ -38493,8 +31754,8 @@ ebr vYW vYW vYW -uQa -uQa +dSD +dSD vYW neq vYW @@ -38595,89 +31856,89 @@ pGs pGs pGs pGs -tER -sNy -sNy -sNy -sNy +kpJ +dRe +dRe +dRe +dRe lyP -sNy -sNy -sNy +dRe +dRe +dRe lyP -sNy -sNy -sNy -sNy -sNy -sNy -wLq +dRe +dRe +dRe +dRe +dRe +dRe +sxF lyP lyP -sNy -dhV -ozD -nFH -ozD -jpZ -efw -efw -qMY -efw -efw -efw -pJA -jGA -efw -efw -efw -pJA -efw -efw -efw -pJA -efw -efw -efw +dRe +tWl +csi +ook +csi +gya +tdA +tdA +jOD +tdA +tdA +tdA +pII +mbo +tdA +tdA +tdA +pII +tdA +tdA +tdA +pII +tdA +tdA +tdA kXQ kXQ -pJA -efw -jif -efw -miP +pII +tdA +rhU +tdA +pTp fay qBU rbU ovC ovC rbU -aCz -wIr -ezI -wdg -yba -pVl -vSY -wmg -izs -vku -izs -wmg -vSY -izs -oyi -sDM +cPO +gqA +ilD +ncm +cRq +sNV +pEG +qJQ +frS +wOB +frS +qJQ +pEG +frS +qzH +rBO fay ebr ebr ebr vYW vYW -uQa +dSD vYW vYW -uQa +dSD vYW vYW vYW @@ -38777,35 +32038,35 @@ pGs pGs pGs pGs -sNy -sNy -tER -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy -sNy +dRe +dRe +kpJ +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe +dRe lyP -wLq -sNy -sNy -hlG -pVz -skp -skp -vLc -qDh -qlj -vvh -qlj +sxF +dRe +dRe +xen +uJo +hwy +hwy +rak +wux +aVE +pOO +aVE yks yks yks @@ -38824,10 +32085,10 @@ yks yks yks yks -bvE -qMY -mxx -cbv +sKk +jOD +joS +fqz fay vNG rbU @@ -38835,32 +32096,32 @@ pYJ ovC ovC fay -wIr -ltW -xuT -eYe -qQF -ltW -dQl -rWJ -jJp -ltW -dQl -rWJ -ltW -qQF -fYV +gqA +mng +hHp +qTW +vLY +mng +feZ +tfn +byU +mng +feZ +tfn +mng +vLY +tIC fay ebr ebr vYW vYW -uQa +dSD jAI vYW -uQa -uQa -uQa +dSD +dSD +dSD vYW vYW vYW @@ -38959,35 +32220,35 @@ pGs pGs pGs pGs -sNy -sNy -sNy -sNy -sNy -sNy -sNy -mLg -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -nFH -ozD -nFH -tdX -ifB -lCK -ifB -lCK -efw -efw -qMY -cyT +dRe +dRe +dRe +dRe +dRe +dRe +dRe +gAL +ook +ook +ook +ook +ook +ook +ook +ook +ook +ook +csi +ook +nQe +ecz +ovu +ecz +ovu +tdA +tdA +jOD +mRu yks qul qul @@ -38997,8 +32258,8 @@ uHY uHY qHc qHc -oPQ -ljt +eoa +evY qul qul qul @@ -39006,32 +32267,32 @@ qul qul qul yks -sDE -wuA -efw -rme +dhW +kcz +tdA +bbv tqh qKq axY lNw urE ovC -xPx -wIr -ltW -pCc -kvx -qQF -rWJ -hyQ -ltW -jgw -rWJ -tve -ltW -ltW -qQF -eXr +gsV +gqA +mng +aBn +rZs +vLY +tfn +uyu +mng +wdH +tfn +aou +mng +mng +vLY +sdl fay ebr vYW @@ -39041,8 +32302,8 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -39141,45 +32402,45 @@ pGs pGs pGs pGs -sNy -wLq -sNy -sNy -sNy -sNy -sNy -sHJ -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -ifB -efw -efw -qMY -efw +dRe +sxF +dRe +dRe +dRe +dRe +dRe +fsO +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +ecz +tdA +tdA +jOD +tdA yks qul qul qul -ljt -oPQ +evY +eoa xCn xCn -oPQ -oPQ +eoa +eoa qHc xCn xCn @@ -39188,10 +32449,10 @@ qul qul qul yks -mbu -qMY -efw -nKr +oVL +jOD +tdA +eZC fay gWA rbU @@ -39199,21 +32460,21 @@ rFD ncC qBQ fay -jcB -ltW -hux -brx -qQF -rWJ -dzN -ltW -iFy -rWJ -ofI -ltW -ltW -lRU -leI +maE +mng +ojz +rnc +vLY +tfn +eIY +mng +diZ +tfn +cQB +mng +mng +ntg +uwH tqh rpw neq @@ -39223,8 +32484,8 @@ vYW ixl hto vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -39324,43 +32585,43 @@ pGs pGs pGs pRV -sNy -wLq -sNy -sNy -sNy -sNy -dsC -rNf -mdy -nQR -nQR -nQR -nQR -nQR -nQR -qOO -rNf -mdy -nQR -pTQ -ifB -ifB -ifB -ifB -efw -efw -qMY -aoi +dRe +sxF +dRe +dRe +dRe +dRe +xLL +nRK +lXG +hyF +hyF +hyF +hyF +hyF +hyF +sTD +nRK +lXG +hyF +gHG +ecz +ecz +ecz +ecz +tdA +tdA +jOD +hJF yks yks qul qul -oPQ -oPQ -oPQ +eoa +eoa +eoa xCn -oPQ +eoa xCn xCn xCn @@ -39370,10 +32631,10 @@ cgr qul qul yks -ico -vBk -efw -efw +mOg +noD +tdA +tdA fay fay fay @@ -39381,22 +32642,22 @@ tqh fay fay fay -iYb -ltW -kCy -cpy -qQF -ltW -yji -ltW -dQl -ltW -eUr -rWJ -ltW -sKL -xbD -dkr +att +mng +koI +aeC +vLY +mng +bEZ +mng +feZ +mng +dnH +tfn +mng +tzv +hhI +iNH rpw neq vYW @@ -39404,9 +32665,9 @@ vYW ebr ebr ebr -uQa -uQa -uQa +dSD +dSD +dSD vYW hto vYW @@ -39506,35 +32767,35 @@ pGs pGs lYo cNt -sNy -tER -sNy -wLq -uTj -sNy -dsC -rNf -izl -sNy -wLq -sNy -wLq +dRe +kpJ +dRe +sxF +ooC +dRe +xLL +nRK +bSS +dRe +sxF +dRe +sxF lyP -sNy -sHJ -rNf -izl -ekO -aCd -ifB -ifB -kYM -ifB -mPX -efw -qMY -efw -mbu +dRe +fsO +nRK +bSS +fCX +poX +ecz +ecz +skL +ecz +oRg +tdA +jOD +tdA +oVL yks qul qul @@ -39542,7 +32803,7 @@ xCn oVt xCn xCn -oPQ +eoa xCn xCn xCn @@ -39553,31 +32814,31 @@ pea qul yks yks -uzN -sQn +ezR +kCR vSd -sQn -fdn +kCR +kqy yeR -sQn -jQM -sQn -bZg -oOF -izs -izs -kSF -clv -ltW -rWJ -ltW -ltW -ltW -ltW -ltW -ltW -sKL -gka +kCR +hdy +kCR +eRo +dyG +frS +frS +pAb +tTu +mng +tfn +mng +mng +mng +mng +mng +mng +tzv +uzC fay rpw vYW @@ -39585,10 +32846,10 @@ vYW vYW vYW ebr -alL -uQa -uQa -uQa +jkU +dSD +dSD +dSD vYW vYW neq @@ -39688,42 +32949,42 @@ pGs qfr nbB cNt -wLq -wLq -sNy -sNy -sNy -sNy -dsC -rNf -izl -wLq -sNy +sxF +sxF +dRe +dRe +dRe +dRe +xLL +nRK +bSS +sxF +dRe lyP lyP -sNy -uTj -sHJ -rNf -izl +dRe +ooC +fsO +nRK +bSS lyP -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -efw -mbu +xen +ecz +ecz +ecz +ecz +tdA +tdA +jOD +tdA +oVL yks qul uHY xCn xCn xCn -oPQ +eoa xCn xCn qul @@ -39735,31 +32996,31 @@ bdH qul qul yks -kDh -efw -efw -efw -jGA -efw -efw -qMY -efw +hNR +tdA +tdA +tdA +mbo +tdA +tdA +jOD +tdA tqh -tGl -xAK -xAK -xAK -loW -xAK -xAK -nQH -mVc -nYx -xAK -ltW -ltW -fWn -vVy +jnJ +vPW +vPW +vPW +ged +vPW +vPW +oiN +hNT +iGb +vPW +mng +mng +gpS +gsn fay rpw neq @@ -39767,10 +33028,10 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa +dSD +dSD +dSD +dSD vYW vYW vYW @@ -39871,33 +33132,33 @@ nbB qfr dpW oIc -wLq -wLq -tER -sNy -sNy -dsC -rNf -izl -wLq -sNy +sxF +sxF +kpJ +dRe +dRe +xLL +nRK +bSS +sxF +dRe lyP -sNy -sNy -sNy -sHJ -rNf -izl -wLq -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY -awu +dRe +dRe +dRe +fsO +nRK +bSS +sxF +xen +ecz +ecz +ecz +ecz +tdA +tdA +jOD +xxf yks yks qul @@ -39917,31 +33178,31 @@ xCn qul qul yks -alG -xVe +mpI +bLk kXQ kXQ qOS -efw -efw -qMY -knP +tdA +tdA +jOD +phE fay -dMm -bcg -bmt +sla +lwT +pjX fay -xxE +tSO fay -dkr +iNH fay fay fay -dQl -hDA -hDA -icn -qPd +feZ +qJh +qJh +htj +evL fay ebr vYW @@ -39949,10 +33210,10 @@ hto vYW neq vYW -uQa -uQa -uQa -uQa +dSD +dSD +dSD +dSD vYW vYW vYW @@ -40054,31 +33315,31 @@ rcu fQK dpW pRV -wLq -wLq -wLq -wLq -dsC -plF -izl -wLq -uTj -sNy -sNy -sNy -sNy -sHJ -rNf -iVD +sxF +sxF +sxF +sxF +xLL +pWM +bSS +sxF +ooC +dRe +dRe +dRe +dRe +fsO +nRK +tir lyP -hlG -ifB -ifB -ifB -ifB -efw -efw -qMY +xen +ecz +ecz +ecz +ecz +tdA +tdA +jOD yks yks qul @@ -40088,7 +33349,7 @@ xCn xCn qHc xCn -oPQ +eoa xCn xCn xCn @@ -40105,25 +33366,25 @@ vSN vSN yks yks -qDh -vBF -qlj +wux +ehE +aVE fay -uuN -rQV -rQV -rQV -nuQ -lKS -sCK -lLe -nLw +fxZ +cwg +cwg +cwg +oAO +ecx +pmh +bIq +rqT fay -rex -hDA -hDA -icn -hEN +qpy +qJh +qJh +htj +eEc fay ebr ebr @@ -40131,8 +33392,8 @@ vYW ckM vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -40237,30 +33498,30 @@ nbB qfr dpW oIc -wLq -wLq -dhV -mwm -rNf -iZj -vqR -wLq -wLq -wLq -llj -dhV -qCY -rNf -iZj -dkC -hlG -xCM -lCK -ifB -lCK -qDh -qlj -lWB +sxF +sxF +tWl +qMn +nRK +mjg +sQt +sxF +sxF +sxF +jOA +tWl +wQk +nRK +mjg +kpz +xen +urj +ovu +ecz +ovu +wux +aVE +eCx yks qul qul @@ -40270,7 +33531,7 @@ qHc xCn xCn xCn -oPQ +eoa qHc xCn xCn @@ -40287,24 +33548,24 @@ qul qul qul yks -efw -qMY -kYN +tdA +jOD +fBM fay -pfD -ltW -ltW -ltW -qQF -ltW -ltW -ltW -jHI +wJS +mng +mng +mng +vLY +mng +mng +mng +rJE fay -lBw -ltW -tnN -cPR +qes +mng +jpW +dDp fay fay ebr @@ -40313,8 +33574,8 @@ ebr vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -40421,28 +33682,28 @@ ykM dpW iIY oIc -dsC -ifB -ifB -ifB +xLL +ecz +ecz +ecz kVL iIY iIY pRV -uTj -dsC -ifB -ifB -ifB -iVD -hlG -kvS -laN -rGE -rGE -efw -efw -ybj +ooC +xLL +ecz +ecz +ecz +tir +xen +vgP +iRC +kQt +kQt +tdA +tdA +daD yks qul qul @@ -40451,8 +33712,8 @@ qHc mJe xCn xCn -oPQ -oPQ +eoa +eoa xCn tuR xCn @@ -40469,24 +33730,24 @@ cYV qul qul yks -efw -xnr -sQn -bZg -oOF -izs -izs -izs -vSY -izs -dmS -ltW -sAf +tdA +wnN +kCR +eRo +dyG +frS +frS +frS +pEG +frS +bkB +mng +xZA fay -rex -hDA -hDA -bjf +qpy +qJh +qJh +rOc fay ebr ebr @@ -40495,8 +33756,8 @@ hto vYW vYW vYW -uQa -uQa +dSD +dSD vYW hto vYW @@ -40594,9 +33855,9 @@ pGs pGs huF haP -rQe -vFs -iqv +hFb +ifp +pHb haP uQi nbB @@ -40604,27 +33865,27 @@ fQK nbB dpW red -ifB -lFI -ifB +ecz +bzQ +ecz nhX gor qoj avX ehT kQy -ifB -lFI -ifB -sZW -hnR -ptp -ptp -ptp -kRU -efw -efw -qMY +ecz +bzQ +ecz +nTl +gey +upD +upD +upD +bjy +tdA +tdA +jOD yks qul qul @@ -40633,7 +33894,7 @@ xCn xCn fHk xCn -oPQ +eoa xCn xCn xCn @@ -40645,30 +33906,30 @@ xCn qHc qHc xCn -heu +sdI vQe xCn uHY qul yks -qDh -vvh -qlj +wux +pOO +aVE tqh -bjd -mhm -aJW -gun -aWA -dWu -iMc -xAK -ckz +hAr +moT +udi +uGR +kjC +tbo +nvp +vPW +gIv fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay ebr ebr @@ -40677,8 +33938,8 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD jAI vYW ebr @@ -40775,38 +34036,38 @@ pGs pGs huF huF -eWp -lMB -lMB -lMB -jPh +jdV +bxR +bxR +bxR +glp uQi uQi uQi uQi uQi ykc -ifB -huf -ifB +ecz +rlS +ecz ykc -cog +cOF ykc -cog +cOF ykc ykc -gkw -huf -ifB +jLn +rlS +ecz ykc uQi uQi uQi uQi uQi -efw -efw -qMY +tdA +tdA +jOD yks qul qul @@ -40815,7 +34076,7 @@ xCn jCs xCn xCn -oPQ +eoa xCn qHc xCn @@ -40833,24 +34094,24 @@ xCn xCn qul yks -efw -qMY -kYN +tdA +jOD +fBM fay fay fay fay fay -dkr -dkr +iNH +iNH fay fay fay fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay ebr ebr @@ -40859,8 +34120,8 @@ ebr vYW neq vYW -uQa -uQa +dSD +dSD vYW vYW hto @@ -40957,38 +34218,38 @@ pGs pGs huF huF -oTX -tQT -tQT -fQW -jSP +vKg +tyN +tyN +uHI +jJB ykc ykc ykc ykc ykc ykc -cog +cOF ykc -uZY +twT ykc -cAw -cAw -qNC -rSx +ufk +ufk +vWD +aXd ykc -cog +cOF ykc -rnP +vki ykc ykc ykc ykc ykc ykc -lSg -lSg -vLt +onT +onT +vdW adw qul uHY @@ -40996,8 +34257,8 @@ xCn xCn xCn qul -ljt -oPQ +evY +eoa xCn xCn xCn @@ -41014,10 +34275,10 @@ mJe xCn xCn xCn -efw -efw -qMY -efw +tdA +tdA +jOD +tdA nSi bMx qul @@ -41029,10 +34290,10 @@ qul qul qul fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay ebr ebr @@ -41040,9 +34301,9 @@ ebr vYW vYW vYW -uQa -uQa -uQa +dSD +dSD +dSD neq vYW vYW @@ -41139,38 +34400,38 @@ pGs pGs huF huF -cne -tQT -tQT -rMM -wjB +xzu +tyN +tyN +ryn +vxg ykc -pFS -eBL -vjA -pfR -pfR -bRo +dEu +nCr +vlF +psU +psU +iTG ykc -kVp -tjS -tjS -tjS -tjS -tjS -iUx -gXh +mAU +lNj +lNj +lNj +lNj +lNj +vHT +wAx uXZ -kVp -aDF -tjS -tjS -tjS -aDF +mAU +kKk +lNj +lNj +lNj +kKk uXZ -pYt -vsa -fcK +qSO +uDB +nrF uSx xCn xCn @@ -41178,9 +34439,9 @@ xCn tuR xCn qul -ljt -oPQ -oPQ +evY +eoa +eoa xCn xCn xCn @@ -41189,7 +34450,7 @@ qul xCn xCn qYg -ljt +evY hhM hhM xCn @@ -41198,7 +34459,7 @@ qHc xCn kXQ kXQ -qMY +jOD kXQ kXQ xCn @@ -41211,23 +34472,23 @@ uHY qul qul fay -tYT -iCy -iCy -jnq +nEo +hSu +hSu +sPR fay ebr hto vYW vYW vYW -uQa -alL -uQa -uQa +dSD +jkU +dSD +dSD vYW -alL -alL +jkU +jkU ebr ebr ebr @@ -41321,38 +34582,38 @@ huF huF huF huF -oTX -tQT -tQT -ssh -pPl +vKg +tyN +tyN +fKu +uGp ykc -dro -eBL -eBL -eBL -aBp -pfR +xok +nCr +nCr +nCr +rlM +psU ykc -hic -oJB -plN -sGY -sGY -sGY -sGY -uQK +vwe +frN +fDo +cCQ +cCQ +cCQ +cCQ +tBU oLM -mIL -xOx -iir -oke -jFh -wGl +ghX +npy +wPM +jtC +bDT +kIo ykc -pkG -lSg -ehH +dRd +onT +eir uSx xCn xCn @@ -41361,55 +34622,55 @@ qHc qHc uHY cYV -dNt -oPQ -oPQ -oPQ -ljt -ljt +eUE +eoa +eoa +eoa +evY +evY xCn -oPQ -oPQ +eoa +eoa xCn xCn -oPQ -oPQ -oPQ -oPQ +eoa +eoa +eoa +eoa qHc -oPQ -efw +eoa +tdA kXQ bRS -efw +tdA kXQ -oPQ -oPQ -oPQ -oPQ -oPQ +eoa +eoa +eoa +eoa +eoa xCn xCn xCn -oPQ +eoa fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay -tDo -vYW -vYW -uQa -uQa -uQa -cUZ -tDR -uQa -uQa -uQa -uQa +jlC +vYW +vYW +dSD +dSD +dSD +itr +jso +dSD +dSD +dSD +dSD ebr ebr ebr @@ -41503,38 +34764,38 @@ huF huF huF huF -fOG -lMB -lMB -vMq -wjB -olP -eBL -eBL -eBL -eBL -mzT -fcg +bjX +bxR +bxR +emd +vxg +whm +nCr +nCr +nCr +nCr +xCv +hwM uXZ -foF -oJB -sba -bWq -hHK -oke -wGl -dpZ -sou -myo -sGY -sGY -sGY -sGY -sGY +dcd +frN +ulB +nGx +tjw +jtC +kIo +jwV +cgl +xKH +cCQ +cCQ +cCQ +cCQ +cCQ oLM -lSg -lSg -vLt +onT +onT +vdW bnm qul xCn @@ -41543,55 +34804,55 @@ xCn xCn qHc xCn -oPQ -oPQ -oPQ -oPQ -oPQ +eoa +eoa +eoa +eoa +eoa xCn xCn qHc xCn -oPQ -oPQ +eoa +eoa xCn xCn qHc -oPQ -oPQ -xbc -efw -efw +eoa +eoa +cHz +tdA +tdA bRS -efw +tdA kXQ -oPQ -oPQ -oPQ -oPQ +eoa +eoa +eoa +eoa xCn oVt yfT -oPQ -oPQ -doW -sDM -iCy -iCy -dlv -doW -tDo -uQa -vYW -uQa -uQa -uQa -esM -pdc -ivO -uQa -uQa -uQa +eoa +eoa +nGf +rBO +hSu +hSu +epU +nGf +jlC +dSD +vYW +dSD +dSD +dSD +sab +qic +qSL +dSD +dSD +dSD ebr ebr ebr @@ -41670,54 +34931,54 @@ pGs pGs pGs pGs -knN -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -cWu -leG -cWu -cWu -cUF -oVp -wqc -jts -arC -wjB +ifv +efR +efR +efR +efR +efR +efR +efR +efR +efR +efR +acm +efR +efR +icT +prj +bBY +chW +gtO +vxg uXZ -cHS -wVT -wVT -eBL -mzT -xIA +hTt +lnc +lnc +nCr +xCv +keO ykc -iZx -oJB -sfs -sGY -sGY -sGY -sGY -pxg -syl -nYL -ncd -oRx -hsF -rLW -oke -keN -lSg -lSg -vLt -lSg +xVv +frN +ayU +cCQ +cCQ +cCQ +cCQ +kXJ +qhh +lbx +xhV +nMb +czc +ftV +jtC +prE +onT +onT +vdW +onT qul qul xCn @@ -41741,40 +35002,40 @@ xCn xCn xCn xCn -oPQ -efw +eoa +tdA kXQ -qMY +jOD kXQ -efw -oPQ -oPQ -oPQ +tdA +eoa +eoa +eoa xCn xCn xCn -oPQ -oPQ -oPQ -ltW -sDM -iCy -iCy -dlv -ltW -tDo -uQa -uQa -vYW -vYW -uQa -uQa -uQa -uQa -uQa -uQa -uQa -alL +eoa +eoa +eoa +mng +rBO +hSu +hSu +epU +mng +jlC +dSD +dSD +vYW +vYW +dSD +dSD +dSD +dSD +dSD +dSD +dSD +jkU hto vYW vYW @@ -41852,7 +35113,7 @@ pGs pGs pGs pGs -lPj +tSb huF huF huF @@ -41863,44 +35124,44 @@ huF huF huF huF -luz +lxf huF huF huF -cne -dQK -wBY -lMB -wjB +xzu +rwK +hcC +bxR +vxg ykc ykc uXZ ykc oLM -vDI +qkz ykc ykc -suC -oJB -cPI -bMG -fXX -tJN -nPK -xuN -wJu -uGf -sGY -sGY -sGY -sGY -sGY +sfY +frN +rhA +vCK +avz +wfG +vUD +bFk +gZR +qYG +cCQ +cCQ +cCQ +cCQ +cCQ uXZ -lSg -lSg -vLt -nfX -tng +onT +onT +vdW +ioU +ova qul qul uHY @@ -41918,17 +35179,17 @@ mJe xCn xCn xCn -ljt +evY hhM hhM -ljt -oPQ +evY +eoa hhM kXQ kXQ -qMY +jOD kXQ -efw +tdA uHY uHY xCn @@ -41939,10 +35200,10 @@ xCn qYg xCn fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay oAE vYW @@ -41950,13 +35211,13 @@ vYW vYW vYW vYW -uQa -uQa -uQa -uQa -uQa -uQa -alL +dSD +dSD +dSD +dSD +dSD +dSD +jkU vYW cmr vYW @@ -42034,56 +35295,56 @@ pGs pGs huF huF -lPj +tSb huF huF huF huF huF huF -ebJ -ebJ -ebJ -ebJ -uOk +imE +imE +imE +imE +oLA huF rpu huF -oTX -lMB -vUZ -lMB -wjB -eVn -isK -nma -vxM -cdO -pSK -sfM -odZ -mYW -oJB -sfs -sGY -sGY -sGY -sGY -uQK +vKg +bxR +iFT +bxR +vxg +gCy +jvk +lpz +kxX +uII +yjR +pFb +ooU +sVF +frN +ayU +cCQ +cCQ +cCQ +cCQ +tBU ykc -iZx -xVC -wGl -oke -xyU -wGl +xVv +jds +kIo +jtC +iBi +kIo ykc -fuF -lSg -vLt -rdq -lSg -bAj +fLS +onT +vdW +lxt +onT +hXn qul qul qul @@ -42109,7 +35370,7 @@ qul mCZ kXQ bRS -efw +tdA yks qul qul @@ -42121,10 +35382,10 @@ oVt uHY qul fay -rjZ -iCy -iCy -dlv +nhQ +hSu +hSu +epU fay ebr luZ @@ -42132,28 +35393,28 @@ vYW neq vYW vYW -uQa +dSD vYW vYW -uQa -uQa -uQa +dSD +dSD +dSD vYW -uQa -uQa -uQa +dSD +dSD +dSD vYW vYW vYW -lMb -uQa +rzE +dSD vYW -uQa +dSD vYW vYW vYW vYW -alL +jkU vYW vYW vYW @@ -42216,7 +35477,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -42231,41 +35492,41 @@ huF huF rpu huF -oTX -lMB -wBY -lMB -wjB -lDN -saC -saC -lDN -oJB -dFd -oJB -oJB -oJB -oJB -xiV -nRk -wGl -hHK -oke -uQK +vKg +bxR +hcC +bxR +vxg +sKa +wid +wid +sKa +frN +hwr +frN +frN +frN +frN +hHY +bfx +kIo +tjw +jtC +tBU ykc -sCV -sDZ -saC -saC -saC -sDZ +rSK +fpS +wid +wid +wid +fpS ykc -lSg -gKw -vLt -miU -vBC -gKw +onT +tuP +vdW +cwf +kao +tuP qul qul qul @@ -42289,24 +35550,24 @@ qul qul qul yks -qDh -vvh -qlj +wux +pOO +aVE yks qul -kli -bTg -aYg +irR +ltX +pkQ qul qul qul qul qul fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay ebr ebr @@ -42314,19 +35575,19 @@ hto vYW rZr vYW -uQa -uQa -uQa +dSD +dSD +dSD vYW -uQa -uQa +dSD +dSD vYW -uQa -uQa -uQa -uQa -uQa -uQa +dSD +dSD +dSD +dSD +dSD +dSD vYW vYW vYW @@ -42398,7 +35659,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -42413,27 +35674,27 @@ huF huF huF huF -nPx -arC -lxr -lMB -wjB -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -sfs -sGY -sGY -sGY -sGY -uQK +ukx +gtO +hdz +bxR +vxg +cCQ +plY +plY +cCQ +frN +hwr +frN +frN +frN +frN +ayU +cCQ +cCQ +cCQ +cCQ +tBU ykc ykc ykc @@ -42442,12 +35703,12 @@ uXZ uXZ ykc ykc -lSg -bFV -vLt -lSg -lSg -gKw +onT +cHF +vdW +onT +onT +tuP qul qul qul @@ -42471,24 +35732,24 @@ qul qul qul yks -vwT -qMY -kYN +myU +jOD +fBM yks qul -gMV -eLZ -rIF -bTg -bTg -rLK -aYg +fuP +gyQ +lBp +ltX +ltX +wyU +pkQ qul fay -sDM -iCy -iCy -dlv +rBO +hSu +hSu +epU fay ebr ebr @@ -42496,12 +35757,12 @@ ebr ebr ebr fRl -hMC -uQa -csr -uQa -uQa -uQa +jwy +dSD +pny +dSD +dSD +dSD vYW vYW vYW @@ -42560,8 +35821,8 @@ wUU "} (40,1,1) = {" wUU -nvv -mPk +qrg +tXB pGs pGs pGs @@ -42580,53 +35841,53 @@ pGs pGs huF huF -rbp -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -ebJ -mSS -jGT -wqc -jRu -lMB -qRe -sGY -enU -enU -sGY -oJB -dFd -oJB -oJB -oJB -oJB -dFd -oJB -oJB -oJB -oJB -uQK +cGb +imE +imE +imE +imE +imE +imE +imE +imE +imE +imE +imE +imE +imE +rcY +gOW +bBY +raJ +bxR +piy +cCQ +plY +plY +cCQ +frN +hwr +frN +frN +frN +frN +hwr +frN +frN +frN +frN +tBU uXZ -gcK -xYM -gAl -swf -qiv +sHF +eGv +fXQ +exM +hQC ykc xRF -rSu +cfb pGJ -dRX +jpC wVI pGJ lsU @@ -42653,37 +35914,37 @@ sdz sdz qul yks -efw -qMY -kNN +tdA +jOD +sfp yks qul -edD -cym -cym -cym -cym -cym -nFp +dSF +vzR +vzR +vzR +vzR +vzR +jVR qul fay -rex -hDA -hDA -bjf +qpy +qJh +qJh +rOc fay ebr ebr ebr ebr ebr -xEl -rDz -uMQ -uQa -uQa -uQa -uQa +pcv +nKx +mKs +dSD +dSD +dSD +dSD vYW vYW vYW @@ -42699,8 +35960,8 @@ ebr vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -42742,9 +36003,9 @@ wUU "} (41,1,1) = {" wUU -nvv -mPk -mPk +qrg +tXB +tXB pGs pGs pGs @@ -42762,7 +36023,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -42777,67 +36038,67 @@ huF huF huF huF -oTX -iah -wBY -lMB -wjB -lDN -tjS -qGE -dss -bMk -xTd -bMk -bMk -bMk -bMk -gwB -bMk -bMk -bMk -bMk -cKZ -msx -xCU -tVo -tVo -nni -dZT +vKg +fWa +hcC +bxR +vxg +sKa +lNj +jum +gHp +rza +igd +rza +rza +rza +rza +oeQ +rza +rza +rza +rza +lMS +vPO +kfn +szJ +szJ +rGV +kep oLM -fYA -fYA -fYA -cYc -mGb -lgP -lzu -mGb -qHu -mGb -lzu -lgP -uOC -arg +jUk +jUk +jUk +bRs +mrv +aQu +fAz +mrv +egz +mrv +fAz +aQu +abG +llM pGJ pGJ pGJ pGJ pGJ -vWG -oRB -tzp -wtB -nXY -pSD -roy -umO +qMI +oEI +lpO +qFy +eQY +qBJ +rHU +gEo sdz sdz sdz -iRR -wmL -iRR +dYg +wxK +dYg sdz sdz kGM @@ -42850,8 +36111,8 @@ kGM sdz sdz kGM -aRr -nBH +pwe +caT miy sdz sdz @@ -42859,14 +36120,14 @@ sdz sdz sdz ebr -tSR -lhB +vGY +eFo vYW vYW vYW vYW jAI -uQa +dSD vYW hto ebr @@ -42880,8 +36141,8 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW @@ -42924,9 +36185,9 @@ wUU "} (42,1,1) = {" wUU -nvv -mPk -mPk +qrg +tXB +tXB pGs pGs pGs @@ -42944,7 +36205,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -42959,96 +36220,96 @@ huF huF huF huF -cne -lMB -wBY -lMB -wjB -mIL -oke -mAX -uQK -oke -sCJ -oke -oJB -oJB -oJB -xml -fDB -saC -saC -saC -saC -saC -wBN -sGY -sGY -sfs -xaK +xzu +bxR +hcC +bxR +vxg +ghX +jtC +mTK +tBU +jtC +mzD +jtC +frN +frN +frN +aHC +wcs +wid +wid +wid +wid +wid +lZg +cCQ +cCQ +ayU +nxE uXZ -qKb -oMs -uww -tPz -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -hvO -lzu -mGb -mGb -mGb -mGb -lgP -kwB -icM -kwB -kwB -kwB -vEJ -kPX -bPl -uVV -kwB -kwB -kwB -nWg -kwB -sIn -fWr -wfr -vbr -wfr -fWr -wfr -wfr -vbr -wfr -fWr -rlJ -aRr -aRr -cGR -fWr -nyJ -bwz -kZg +tPt +alP +eic +hJg +pgN +pgN +pgN +pgN +pgN +pgN +pgN +pgN +pgN +fAz +mrv +mrv +mrv +mrv +aQu +eZn +oyh +eZn +eZn +eZn +dkp +oWP +bXw +gxM +eZn +eZn +eZn +cxv +eZn +oHQ +cqT +cWN +gZJ +cWN +cqT +cWN +cWN +gZJ +cWN +cqT +lln +pwe +pwe +rDI +cqT +hvM +bEk +uEC kGM -kSD -mMX -lhB -uQa +mPF +mNx +eFo +dSD hto vYW vYW vYW -uQa +dSD hto ebr ebr @@ -43106,10 +36367,10 @@ wUU "} (43,1,1) = {" wUU -nvv -mPk -mPk -mPk +qrg +tXB +tXB +tXB pGs pGs pGs @@ -43126,7 +36387,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -43142,93 +36403,93 @@ huF huF huF xpP -bJv -otL -nzS -lVa -wSX -oke -oke -uQK -cnv -sCJ -oke -oJB -nfZ -ePb -kMi +uRd +wEe +qtE +eUi +hwe +jtC +jtC +tBU +uiV +mzD +jtC +frN +xkX +rrs +aHQ ykc uXZ uXZ uXZ uXZ oLM -bzn -ePb -oJB -sfs -oke -nnt -oMs -jVl -uww -tPz -hvO -bpI -hvO -hvO -hvO -hvO -hvO -uDw -erE -vUE -hvO -hvO -hvO -hvO -hvO -kuX -kuX -kuX -kuX -kuX -kuX -cVG -cVG -dbV -kuX -kuX -kuX -ddY -kuX -kuX -kuX -kuX -eRO -scO -kuX -kuX -kuX -eRO -kuX -kuX -kuX -kuX -kuX -ddY -kuX -kuX -kuX -uOL +orU +rrs +frN +ayU +jtC +xQy +alP +nvc +eic +hJg +pgN +xXY +pgN +pgN +pgN +pgN +pgN +soS +jCy +qsg +pgN +pgN +pgN +pgN +pgN +iit +iit +iit +iit +iit +iit +cWC +cWC +nQt +iit +iit +iit +tgT +iit +iit +iit +iit +euf +uAh +iit +iit +iit +euf +iit +iit +iit +iit +iit +tgT +iit +iit +iit +xNn kGM -hbD -jtx -lhB +hTQ +aaC +eFo vYW -uQa +dSD vYW -uQa +dSD vYW vYW ebr @@ -43250,7 +36511,7 @@ vYW vYW vYW vYW -uQa +dSD vYW vYW jQa @@ -43288,10 +36549,10 @@ wUU "} (44,1,1) = {" wUU -nvv -mPk -mPk -mPk +qrg +tXB +tXB +tXB pGs pGs pGs @@ -43308,7 +36569,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -43325,18 +36586,18 @@ huF huF huF huF -mHM +wJY huF huF uQi -uyd -rwP -uQK -qfb -sCJ -oke -oJB -eZk +fRw +mKG +tBU +mxQ +mzD +jtC +frN +gTU nQo fjM jeO @@ -43346,69 +36607,69 @@ vrw vrw jeO nQo -eBG -kXP -ezd -ukz -ukz -nOO -vFu -imd -jsh -kzJ -kzJ -oZw -oZw -oZw -oZw -oZw -sCk -xuB -bEj -oZw -kzJ -oZw -kzJ -oZw -lVP -lVP -lVP -lVP -lVP -fpf -lVP -lVP -lVP -lVP -lVP -ehD -qCI -lVP -pDD -lVP -lVP -tTo -lVP -lVP -lVP -lVP -tTo -ehD -lVP -lVP -lVP -lVP -hCZ -lVP -fHs -kuX -uOL +mtW +aDR +aPy +kff +kff +gcA +uXP +cOr +jva +aLu +aLu +kPc +kPc +kPc +kPc +kPc +adB +mPp +uAn +kPc +aLu +kPc +aLu +kPc +tGg +tGg +tGg +tGg +tGg +uJQ +tGg +tGg +tGg +tGg +tGg +wRG +jNf +tGg +mpK +tGg +tGg +bEz +tGg +tGg +tGg +tGg +bEz +wRG +tGg +tGg +tGg +tGg +xrG +tGg +uzS +iit +xNn kGM -hbD -dTS -qyH +hTQ +oKg +fJx vYW -uQa +dSD vYW vYW vYW @@ -43421,7 +36682,7 @@ vYW vYW neq neq -uQa +dSD vYW vYW vYW @@ -43431,8 +36692,8 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW jQa @@ -43441,8 +36702,8 @@ jQa jQa jQa jQa -rgz -rgz +iBC +iBC jQa jQa jQa @@ -43470,11 +36731,11 @@ wUU "} (45,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB pGs pGs pGs @@ -43490,7 +36751,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -43507,93 +36768,93 @@ huF huF huF huF -kGB +srG huF huF ykc -tPI -itZ -uQK -wGl -sCJ -oke -oJB -wDG -wDG -afR +eos +eJq +tBU +kIo +mzD +jtC +frN +rFi +rFi +jjp oLM -uDQ -uDQ -uDQ -qZH +nOy +nOy +nOy +xor hUU -rrA -aTS -oJB -wIm -xqP +dEp +tlF +frN +xvh +qhT uXZ -qKb -oMs -uww -hvO -tPz -ost -hvO -hvO -hvO -hvO -hvO -hvO -bih -hvO -hvO -ost -hvO -tPz -hvO -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -kuX -pCp -kuX -kuX -ddY -kuX -kuX -xeV -ybY -ltI -iIW -fao -xeV -pCp -kuX -kuX -kuX -kuX -kuX -kuX -sDj -kuX -uOL +tPt +alP +eic +pgN +hJg +kco +pgN +pgN +pgN +pgN +pgN +pgN +byB +pgN +pgN +kco +pgN +hJg +pgN +iit +iit +iit +iit +iit +iit +iit +iit +iit +iit +iit +sRI +iit +iit +tgT +iit +iit +dpi +wNZ +iGk +vcZ +eze +dpi +sRI +iit +iit +iit +iit +iit +iit +fjc +iit +xNn kGM -wkp -tqa +mvC +wLW ebr vYW vYW vYW vYW -uQa +dSD vYW ebr ebr @@ -43613,14 +36874,14 @@ ebr ebr hto vYW -uQa -uQa +dSD +dSD vYW vYW jQa -rgz -rgz -rgz +iBC +iBC +iBC jQa jQa jQa @@ -43652,12 +36913,12 @@ wUU "} (46,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -43672,7 +36933,7 @@ pGs pGs huF huF -lPj +tSb huF huF huF @@ -43689,84 +36950,84 @@ huF huF huF huF -lPj +tSb huF huF ykc -aDu -oke -uQK -oke -uBX -oke -oJB -oJB -oJB -oPe -roJ -yab -sNl -wty -vzN -mZC -kXn -aFu -jqJ -xqY -muE +rdz +jtC +tBU +jtC +isW +jtC +frN +frN +frN +hkl +cus +psc +mkw +wcY +adM +urY +uGy +imn +rbT +xWz +ibd oLM -fYA -fYA -fYA -dQe -lWo -oMs -dQe -yeH -yeH -bUK -lzu -hvO -bih -lzu -yeH -yeH -dxn -lWo -oMs -auE -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -rgb -wfT -vDm -vDm -fPU -cnW -foU -ujp -vDm -mVF -vDm -vDm -deX -vDm -vDm -vDm -tOp -sDj -kuX -rlJ +jUk +jUk +jUk +nVw +toO +alP +nVw +mci +mci +pZB +fAz +pgN +byB +fAz +mci +mci +pEt +toO +alP +iev +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +wuh +cQn +wVK +wVK +tCQ +scI +qyQ +wTT +wVK +epm +wVK +wVK +dBw +wVK +wVK +wVK +wxN +fjc +iit +lln sdz ebr ebr @@ -43774,8 +37035,8 @@ ebr ebr vYW vYW -uQa -uQa +dSD +dSD vYW vYW hto @@ -43787,7 +37048,7 @@ vYW vYW vYW vYW -uQa +dSD vYW gEP ebr @@ -43795,13 +37056,13 @@ ebr ebr vYW vYW -uQa -uQa +dSD +dSD vYW vYW jQa -rgz -rgz +iBC +iBC jQa jQa jQa @@ -43834,12 +37095,12 @@ wUU "} (47,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -43854,7 +37115,7 @@ pGs pGs huF huF -wRR +yaQ huF huF huF @@ -43871,35 +37132,35 @@ pGs bZv iUZ huF -wgU +oqn huF huF ykc -nPR -saC -lDN -saC -saC -lDN -saC -mAm -iAx -lMP +npI +wid +sKa +wid +wid +sKa +wid +irX +hIA +jlf ykc -ubT -xwk -lDN -lzP +aFx +xIO +sKa +hVo ykc -rxe -saC -uVe +dDg +wid +hga ykc uXZ ykc -vYr +gnK vnm -rIU +wmm vnm brX vUT @@ -43907,15 +37168,15 @@ uJO bLB bLB vnm -xWY -hvO -bih -rHv +rFa +pgN +byB +rap cZR nxW nxW -rsM -rtr +glw +uBf nxW nxW mKb @@ -43929,9 +37190,9 @@ qcN qcN qcN lGp -hYp -uqx -hYp +rCH +rdf +rCH bIt bIt pQp @@ -43946,8 +37207,8 @@ ykw bIt bIt kGM -sDj -wir +fjc +bao kGM sdz ebr @@ -43978,7 +37239,7 @@ ggX vYW vYW vYW -uQa +dSD vYW vYW jQa @@ -44016,13 +37277,13 @@ wUU "} (48,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -44036,7 +37297,7 @@ pGs pGs huF huF -wRR +yaQ huF huF huF @@ -44053,16 +37314,16 @@ lYr qjU gvo rlw -eWZ +scd huF huF ykc ykc oDS -lDN -sGY -sGY -lDN +sKa +cCQ +cCQ +sKa ykc ykc uXZ @@ -44070,18 +37331,18 @@ uXZ ykc ykc uXZ -oqh +pKD uXZ ykc uXZ jpm uXZ ykc -hyr -npi -hyr +nYI +bkk +nYI vnm -bPG +mhT vQz hMG oXf @@ -44089,48 +37350,48 @@ vQz iDM vPY bLB -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -wlQ -saq -rsM -maN -faq -cvI -dNW -wCx -lxT -mOO +wvx +fBT +glw +uos +wbY +vwG +bOx +ajb +kMV +ykr qcN -tJT -xLN +lnB +kPM qcN -rsh -nMT +qZw +qor qcN -lUe -aQc -fZd +bNZ +ncQ +xoE ykw -ani -irw -pTs -hJO -syM +lfo +mSP +nlt +wlh +xrR ykw -nPG -egJ -teu -teu -uMB +blG +cxG +kUS +kUS +aXc bIt -wox -sJZ -tEJ -iNh +uNx +iga +gGg +wwv nTG ebr ebr @@ -44160,9 +37421,9 @@ vYW vYW vYW vYW -uQa -uQa -uQa +dSD +dSD +dSD jQa jQa jQa @@ -44198,14 +37459,14 @@ wUU "} (49,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -44218,7 +37479,7 @@ pGs pGs huF huF -wRR +yaQ huF huF huF @@ -44229,90 +37490,90 @@ huF pGs pGs iUZ -vJg +rXL lYr lYr fwo lYr sQR -eWZ +scd huF huF huF huF ykc -lDN -tjS -tjS -lDN +sKa +lNj +lNj +sKa uXZ -rtP -aqk -okf -wwq -ukX -wxf -hyr -cTV -vyI -jEZ -hyr -cTV -aAY -vyI -wPE -hyr +cOP +gKD +dlA +rpp +uVD +hzG +nYI +swM +hKU +vyx +nYI +swM +lDY +hKU +bwp +nYI vnm -oiB +pGE rVi brX oXf oXf -hfR +sHw bio bLB -xWY -hvO -bih -lzu +rFa +pgN +byB +fAz nxW -fZI -maN -rsM -maN -maN -maN -maN -maN -maN -aTh +emN +uos +glw +uos +uos +uos +uos +uos +uos +xzB qcN -vhb -kFT +rLM +cTa qcN -nwV -aLl +amt +pJD qcN -qqA -aQc -hwa +cLS +ncQ +rit bIt -ecb -haT -cQr -qiP -mwH +uFZ +dKi +vZP +xnW +oIR bIt -uCc +kVB vgA pOC qWC -dbg +tbN ykw -pRX -sJZ -tEJ -cNu +ibk +iga +gGg +bHu nTG jpD ebr @@ -44336,15 +37597,15 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW -uQa -uQa -uQa -uQa +dSD +dSD +dSD +dSD jQa jQa jQa @@ -44380,17 +37641,17 @@ wUU "} (50,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB pGs pGs pGs @@ -44400,7 +37661,7 @@ pGs pGs huF huF -wRR +yaQ huF huF huF @@ -44414,88 +37675,88 @@ fwo lYr lYr qyT -sJm +sgL lYr tia -ten +ssQ huF huF huF huF ykc -stV -sAR -enU -uQK -oBs -hyr -hyr -hyr -aXt -hyr -hyr -hyr -omj -weG -hyr -hyr -hyr -hyr -aXt -hyr -hyr +gFy +vsK +plY +tBU +nGP +nYI +nYI +nYI +vQR +nYI +nYI +nYI +qxS +ciU +nYI +nYI +nYI +nYI +vQR +nYI +nYI aGx -hfR +sHw gqE mUy uUl ria -mDl +eZH cSq vnm -ePB -hvO -mrd -ciH -kyh -lAk -nMe -ckF -nMe -nMe -aaA -wsZ -wsZ -csb -nMe -ejZ -wVa -wpr +xXh +pgN +ofs +aZF +cha +iXg +hyR +sCN +hyR +hyR +pua +tBq +tBq +pvb +hyR +iSv +vvi +ufC nxW -qir -haC +xTe +fpV nxW -qqA -aQc -qqA +cLS +ncQ +cLS bIt -tsX -wkC +lrs +jDI fAO -haT -slj +dKi +xBE bIt -gze +wGg qWC eOv rJq -dbg +tbN ykw -pRX -sJZ -tEJ -cNu -kyL +ibk +iga +gGg +bHu +mvD jpD oAE oAE @@ -44518,13 +37779,13 @@ neq vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW -uQa -lMb +dSD +rzE vYW vYW gxQ @@ -44562,18 +37823,18 @@ wUU "} (51,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB sNx pGs pGs @@ -44582,7 +37843,7 @@ huF huF huF huF -wRR +yaQ huF pGs pGs @@ -44605,85 +37866,85 @@ huF huF huF ykc -wcl -enU -enU -uQK +bmp +plY +plY +tBU uXZ -hyr -omj -hyr -weG -leU -pIe -hyr -hyr -weG -hyr -omj -hyr -pIe -weG -fzx -hyr +nYI +qxS +nYI +ciU +rfe +rmz +nYI +nYI +ciU +nYI +qxS +nYI +rmz +ciU +qUv +nYI bLB -mDl +eZH oXf dbu xxI xxI -iXX +kXS cSq bLB -xWY -hvO -anu -lnG -cAX -vsP -cAX -kDF -nZd -maN -maN -maN -maN -maN -maN +rFa +pgN +jLQ +nbU +iIx +iTY +iIx +wBI +cEE +uos +uos +uos +uos +uos +uos qcN -seY -gjw +vyg +qQl nxW -ygT -wRu +nLE +cFG nxW -qqA -aQc -qqA +cLS +ncQ +cLS ykw -dmq -sDo -cXQ -haT -wLR +ocu +mgF +xRO +dKi +iek ykw -avF +tcI qDR iRw pjH -nqN +vfI ykw -pRP -sJZ -tEJ -cNu -upO +rvy +iga +gGg +bHu +rbL gUP -clG -mMX +vYk +mNx oAE -uQa -uQa +dSD +dSD vYW vYW vdQ @@ -44700,13 +37961,13 @@ neq vYW vYW vYW -uQa -uQa +dSD +dSD cmr vYW vYW -uQa -uQa +dSD +dSD vYW vYW pGs @@ -44744,19 +38005,19 @@ wUU "} (52,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB sNx sNx huF @@ -44764,7 +38025,7 @@ huF huF huF huF -vEU +bqe huF pGs pGs @@ -44776,10 +38037,10 @@ kFV vmw eaC fwo -oCR +kYA hAg lYr -bVS +wKy lYr fwo huF @@ -44787,84 +38048,84 @@ huF huF huF ykc -hic -enU -enU -sDf +vwe +plY +plY +wdE oLM -omj -jMq +qxS +ohQ lEV -ygn +rMS alD aSU ghI lEV -ygn +rMS alD aSU ghI lEV -ygn +rMS alD -hyr +nYI bLB -mDl +eZH gqE mUy cOs ria -lmu +jwd cSq bLB -xWY -hvO -bih -lzu +rFa +pgN +byB +fAz nxW -nnF -maN -wFX -maN -xkj -dLP -sdS -sdS -gBi -xkj +sop +uos +aXF +uos +cqb +nwZ +sve +sve +ioW +cqb nxW -spd -wwk +vhx +iYx qcN -wNV -wRu +voa +cFG qcN -vMU -aQc -qqA +bBp +ncQ +cLS ykw -hJx -haT -hwN -haT -xBX +siN +dKi +dDf +dKi +qIl pQp -lXc +dKN vgA bRg fXa -pYv -epY -rMN -sJZ -tEJ -cNu -qNP +cvs +wao +lHP +iga +gGg +bHu +diS gUP -bPe -dTS +gQs +oKg oAE -nHC +lbI vYW vYW vYW @@ -44882,13 +38143,13 @@ vYW vYW vYW vYW -uQa -uQa +dSD +dSD vYW vYW vYW vYW -uQa +dSD vYW vYW pGs @@ -44926,27 +38187,27 @@ wUU "} (53,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq kkF huF huF pGs bJI ahb -wdy +smA vQK pGs pGs @@ -44955,7 +38216,7 @@ huF huF huF fwo -sJm +sgL lYr lYr wKW @@ -44969,83 +38230,83 @@ huF huF huF ykc -mIL -enU -nOj -uQK +ghX +plY +hEw +tBU uXZ -lhn -pNa -liM -ygn -uWW -weG -fys -liM -ygn -uWW -bQa -fys -liM -ygn -uWW -vyy +dxQ +hKJ +jmf +rMS +gOr +ciU +vts +jmf +rMS +gOr +erf +vts +jmf +rMS +gOr +gdL bLB -joN +wxL oXf mfa oXf krM -uEE +izz xWU bLB -xWY -tam -lss -rHv +rFa +nCc +bwE +rap nxW -qDv -maN -wFX -xkj -cMQ -fnF -paB -bkG -dYZ -gfr +isR +uos +aXF +cqb +fRx +eVp +cTC +wny +afw +nuZ nxW -tGr -cBW -dOk -mau -dnW -kTG -qqA -aQc -qqA +xbq +lGh +wAy +wnE +jfB +dgi +cLS +ncQ +cLS ykw -wcG -woj -uyK -lkI -vZS -iiX -vZS +bKU +pVA +lLr +avO +mxX +wqs +mxX jqu qVL jqu -cZN +hZV ykw -uEI -jPC -jjg -cNu -rMN +fNl +ayr +cqx +bHu +lHP gUP -hbD -dTS -tDo +hTQ +oKg +jlC ebr vYW ckM @@ -45108,38 +38369,38 @@ wUU "} (54,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq kkF -tOx +emA huF pGs dfs fwo -eVW +bBB lYr arF pGs huF huF huF -xKS -qFC -qFC -qFC -kIJ +lQc +ljn +ljn +ljn +jqM cRx lYr pdn @@ -45151,82 +38412,82 @@ huF huF huF ykc -lDN -saC -saC -lDN +sKa +wid +wid +sKa ykc -ldr -jMq +rYl +ohQ lGT -ygn +rMS uEF aSU ghI lGT -ygn +rMS uEF aSU ghI lGT -ygn +rMS uEF -hyr +nYI vnm -hfR +sHw oXf oXf ceJ oXf -uEE +izz cSq vnm -xWY -hvO -bih -rHv +rFa +pgN +byB +rap mKb -ffk -ydP -lKV -sdS -gjy -jgQ -jgQ -wnK -jgQ -wnK +qcn +ejy +tMM +sve +xgF +iLw +iLw +hpT +iLw +hpT nxW -nRW -fYQ +vHo +lWs nSP -fJR -wRu +caj +cFG qcN -emC -aQc -qqA +vuU +ncQ +cLS bIt -uMx -haT -teu -haT -coc +tFE +dKi +kUS +dKi +eJr bIt -nRP +ptm kvG thn thn -vCE -jCA -iMM -oIq -tvv -cNu -rMN +fzI +sAJ +fvb +tfK +qmq +bHu +lHP gUP -wkp -tqa +mvC +wLW ebr ebr oAE @@ -45252,10 +38513,10 @@ ebr ggX vYW vYW -uQa +dSD vYW vYW -uQa +dSD pGs pGs pGs @@ -45290,41 +38551,41 @@ wUU "} (55,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq kkF -tOx +emA huF pGs ipZ lYr -iSz +wwO fwo rIG pGs huF huF dEJ -wMw -wMw -aHy -wMw -mrC +gBT +gBT +kpm +gBT +tBF lYr -rjo -gPG +cGS +rey lYr gLV oYE @@ -45333,78 +38594,78 @@ huF huF huF wFP -lFl -lFl -lFl -lFl +gqJ +gqJ +gqJ +gqJ uQi -hyr -hyr -hyr -weG -hyr -hyr -pIe -hyr -weG -omj -hyr -hyr -hyr -weG -omj -hyr +nYI +nYI +nYI +ciU +nYI +nYI +rmz +nYI +ciU +qxS +nYI +nYI +nYI +ciU +qxS +nYI aGx -hfR +sHw fyP cwQ kzE fyP -uEE +izz gNb bLB -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -qDv -maN -wFX -gBi -mKD -iWf -rzU -hLE -qUQ -aEi +isR +uos +aXF +ioW +oUf +gLa +hpb +bHK +krR +grn nxW -spd -lBf +vhx +puO nxW -nkd -wRu +xIs +cFG nxW -qqA -aQc -qqA +cLS +ncQ +cLS ykw -ibP -haT -teu -haT -dZZ +naR +dKi +kUS +dKi +fub ykw -cIB +kSR waB nTS qWC -lLq +lPX ykw -pRP -uXw -sIU -cNu +rvy +eRC +hTv +bHu kyG kyG gTC @@ -45472,38 +38733,38 @@ wUU "} (56,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq kkF -tOx +emA huF huF tlE lYr -iSz +wwO lYr lYr hCw -pbp -loQ -nEp -wMw -wMw -qNE -wMw -mrC +iyF +wDB +lwy +gBT +gBT +neA +gBT +tBF rCf nDk lYr @@ -45515,84 +38776,84 @@ huF huF huF uQi -uaY -uaY -uaY -uaY +cYf +cYf +cYf +cYf uQi -aqw -hyr -pIe -weG -xAs -omj -hyr -pJp -weG -fzx -hyr -hyr -pIe -weG -klY -xEc +aLx +nYI +rmz +ciU +qxo +qxS +nYI +abT +ciU +qUv +nYI +nYI +rmz +ciU +vHk +xzC vnm uCe lEY ksf -qBR +wPC oXf ugR gNb bLB -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -qDv -maN -wFX -sdS -ocQ -wnK -qUQ -woI -qUQ -hMh +isR +uos +aXF +sve +qOU +hpT +krR +jqF +krR +knb nxW -hyd -gjw +veO +qQl nxW -exH -wRu +iGT +cFG nxW -hQo -aQc -qqA +dCa +ncQ +cLS bIt -aVF -haT -teu -haT -jIo +aky +dKi +kUS +dKi +hjm bIt -cgb +fBK rRm wph qWC -pcK +umk ykw -pRX -uXw -sIU -cNu +ibk +eRC +hTv +bHu gTC -tIT -fUZ -fhM -sTA -ukw +dXs +tKV +hEn +jGX +eUf rTT fuS oAE @@ -45654,127 +38915,127 @@ wUU "} (57,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lUG -rqG +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +lTK +hpW kkF -sUj -vJk -lXT -oDX -wcq -mLB -aTg -ixq -dNh -pbp -wMw -wMw -wMw -wMw -wMw -dob -wMw -fhu -lIE -qFC -qFC -qFC -qFC -kME -paq -gSY -xBS +maT +iZS +liT +sPv +mbG +uch +pNe +bVT +xyI +iyF +gBT +gBT +gBT +gBT +gBT +qGf +gBT +pdE +esa +ljn +ljn +ljn +ljn +oUe +apM +biv +gNG qqJ -waP -waP -waP -waP +pRY +pRY +pRY +pRY aMC -hyr -cNb -fkF -weG -qkF -leU -leU -xKo -weG -pJp -iJa -leU -hyr -weG -hyr -omj +nYI +ryt +oqH +ciU +fNw +rfe +rfe +ckh +ciU +abT +elo +rfe +nYI +ciU +nYI +qxS epQ sKC epQ epQ epQ sKC -uvw +bUu epQ epQ -ntw -hvO -bih -rHv +esg +pgN +byB +rap qcN -uUW -maN -wFX -dLN -mlR -rLC -aoo -woI -qUQ -xFZ +nQT +uos +aXF +jJR +grM +hIt +fdm +jqF +krR +qSz shb -eSg -fMq +hLi +iLh iop -lDS -yfh -vgu -kIK -rLU -qqA +eul +dBy +oUQ +sew +gvg +cLS ykw -xXe -oVn -jYX -iFK -wsa +igk +pPg +aDS +bwr +aAT bIt -eeg -pQF -jcz -jcz -mkn +hrv +hLs +aJe +aJe +nlD ykw -pRX -uXw -sIU -cNu +ibk +eRC +hTv +bHu gTC -tIT -rqx +dXs +usn aae -qHF -wOL +mve +nQJ wTJ fuS oAE @@ -45836,19 +39097,19 @@ wUU "} (58,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq xfo xfo ydy @@ -45860,29 +39121,29 @@ itT lYr hkQ bVQ -pbp -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vMe -wMw -vLV -wMw -wMw -wMw -xJb -wMw -wMw -wMw -mcr +iyF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +tvm +gBT +wGw +gBT +gBT +gBT +ehw +gBT +gBT +gBT +dyM ccp qpK qAp @@ -45892,71 +39153,71 @@ qAp qAp bgE bgE -erK +kIm qAp bgE -hyr -rKy -weG -gnm -hyr +nYI +vBI +ciU +rWK +nYI sKC -dUh -dUh -vnN -dUh -oUp -cTg -iSO +lsv +lsv +jJx +lsv +oci +iZY +cdj sKC -xWY -hvO -bih -euM +rFa +pgN +byB +trq qcN qcN -maN -sTW +uos +rXB qcN nxW nxW nxW -tRs +tMm nxW nSP qcN -cTr -tjF +gRc +wJy qcN -jNS -mJw +gwv +fQh qcN -lUe -aQc -qqA +bNZ +ncQ +cLS bIt ykw -cHl +eYT bIt ykw ykw bIt ykw bIt -cHl +eYT ykw bIt bIt -sjD -uXw -sIU -cNu +lYT +eRC +hTv +bHu kyG -qym -rJI +gQr +lOE bRi -mBG -pRl +ncj +gaK tuV kyG ebr @@ -45972,9 +39233,9 @@ ebr ebr ksX ksX -wff -dEo -rqa +xip +gXX +vNA ksX ebr ebr @@ -46018,128 +39279,128 @@ wUU "} (59,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq aQq -eCj +ubD pxa uKr ahg -wIg -asx -asx -nKd +jCx +pwy +pwy +aOJ nDL -new -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kME -wMw -mpH -hcz -wMw -ojm -huy +mmR +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +oUe +gBT +swK +eXD +gBT +gEm +lEp qAp -qVO -cOj -cfs +vIv +vav +ipA qAp -hyr -hyr -weG -hyr -hyr -sAY -eYG -eYG -eYG -eYG -eYG -cTg -vfH +nYI +nYI +ciU +nYI +nYI +qbj +bEN +bEN +bEN +bEN +bEN +iZY +jSv epQ -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -xKC -wnK -pVh -uTV -uTV -uTV -uTV -nRT -sWp -kMU -tjF -woI -qUQ +nKV +hpT +qyZ +gAa +gAa +gAa +gAa +dsL +hoX +laC +wJy +jqF +krR qcN nxW nxW qcN -qqA -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -mPl -qqA -qqA -qqA -qqA -gSC +cLS +ncQ +cLS +cLS +cLS +cLS +cLS +cLS +cLS +iQw +cLS +cLS +cLS +cLS +oHm jcT -bMV -uXw -sIU -pRP +bXr +eRC +hTv +rvy kyG -wTM -dgP +ajZ +kCd bRi -mBG -lvV -nVn +ncj +jLw +reS kyG ebr ebr @@ -46152,12 +39413,12 @@ ebr ebr ebr ksX -rmr -cto -cto +dLy +kQk +kQk uKZ xxk -ghs +hXa ksX ebr ebr @@ -46200,128 +39461,128 @@ wUU "} (60,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq aQq -boI +qRn qaE miR nqQ tlE -asx -asx -jjZ +pwy +pwy +vIE nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sIQ -wMw -wMw -mpH -wMw -wMw -wMw +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +tll +gBT +gBT +swK +gBT +gBT +gBT qzi -jTL -jTL -uGs +qyz +qyz +goF bgE -omj -cTV -weG -jEZ -hyr +qxS +swM +ciU +vyx +nYI sKC -hPF -uOo -pqO -pqO -xnV -wEL -ewS +fZM +bvg +amI +amI +mTa +gcb +aBo sKC -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -qUQ -hGz -eAG -rtx -yiA -mau -mau -gNe -dTC -yaf -wVD -myj -qUQ +krR +qOp +odC +vhZ +mRM +wnE +wnE +lEg +sVJ +nmW +wgb +agk +krR nxW -cbe -stv -hwa -hwa -aQc -qqA -qqA -qqA -qqA -qqA -qqA -qqA -qqA -kmu -mtU -qqA -qqA -qqA +vJc +atU +rit +rit +ncQ +cLS +cLS +cLS +cLS +cLS +cLS +cLS +cLS +qlN +cmo +cLS +cLS +cLS hoP -pRX -lbK -sOj -cug -sGb -xlv +ibk +ikq +qaf +cnT +lsM +lUo xZD iJD -gfp -ffY -gvR +uUw +ehy +nrY kyG ksX ksX @@ -46334,12 +39595,12 @@ ebr ebr ebr ksX -cto -cto -gLo -cto -cLX -cto +kQk +kQk +eXL +kQk +jyE +kQk ksX ebr ebr @@ -46382,146 +39643,146 @@ wUU "} (61,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq aQq -vLw +gKU qaE qdL ahg tlE -asx -asx -cQu +pwy +pwy +uqt lqF -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -nFB -wMw -sIQ -wMw -wMw -wMw -wMw -oJm -hyr -hyr -hyr -uAt -lhn -weG -weG -hyr -hyr +gBT +gBT +gBT +gBT +gBT +gBT +gBT +uFr +gBT +gBT +gBT +gBT +gBT +uFr +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +dbI +gBT +tll +gBT +gBT +gBT +gBT +edH +nYI +nYI +nYI +uLa +dxQ +ciU +ciU +nYI +nYI epQ -upY -mRL -iQl -fyZ -dgq -cTg -tQn +qjQ +wwA +hPM +nKO +bXD +iZY +hZG epQ -gnx -hvO -bih -rHv +bxS +pgN +byB +rap nxW -sbX -eIV -sDQ -eIV -pVh -vsJ -eIV -pqY -sIf -lWh -vSh -aMp -igU +vWL +lKT +bqa +lKT +qyZ +ijW +lKT +kyX +rjB +hAt +uRi +dUr +aup nxW -vMU -qqA -qqA -eBf -bfq -kIK -gPA -kIK -kIK -jxi -pti -kIK -fqs -kIK -kIK -kIK -kIK -kIK -kqe -uEI -obm -tEJ -pRP +bBp +cLS +cLS +uBh +mIe +sew +hpj +sew +sew +bJC +rSw +sew +tzA +sew +sew +sew +sew +sew +fZg +fNl +tcm +gGg +rvy kyG -nBl +odb wKi bRi -mBG -ffY -xZN +ncj +ehy +fss kyG -ghs -cto -cto -tVX -swv +hXa +kQk +kQk +dqY +pOL ksX ksX ksX ksX ksX ksX -kcE -cto +lyn +kQk ksX -cDc -cto -cto +bRA +kQk +kQk ksX cty cty @@ -46564,89 +39825,89 @@ wUU "} (62,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vlm -fjv -wBp -gpJ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +qAP +alU +uuY +kUo xfo bGC qzq ahg nQA tlE -eRM -tCG -aEf +qmw +sQC +aqf nDL -wMw -wMw -wMw -aHy -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw +gBT +gBT +gBT +kpm +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT qAp -hyr -eaQ -hyr +nYI +trv +nYI qAp -hyr -okf -weG -loh -hyr +nYI +dlA +ciU +wqA +nYI sKC -xMs -vqt -rXf -lPq -oUp -cTg -nVy +bWB +mmC +uzi +uaj +oci +iZY +fcS sKC -xWY -hvO -bih -rHv +rFa +pgN +byB +rap lGp qcN nxW qcN nSP -pvk +uiC qcN nxW rcq @@ -46656,14 +39917,14 @@ qcN nxW nxW qcN -vMU -qqA -qqA -aQc -qqA -qqA -aQc -qqA +bBp +cLS +cLS +ncQ +cLS +cLS +ncQ +cLS xgG qvo xgG @@ -46675,35 +39936,35 @@ xgG qvo xgG xgG -rGl -sJZ -tEJ -cNu +lEd +iga +gGg +bHu kyG -uzb +opa wKi bRi -mBG -ffY -fYH +ncj +ehy +eLF gTC -fhh -cto -qMr -cto -cto -cto -lOc -cto -lOc -cto -lOc -cto -cto -cto -cto -cto -cto +nJE +kQk +ccs +kQk +kQk +kQk +azv +kQk +azv +kQk +azv +kQk +kQk +kQk +kQk +kQk +kQk ksX cty cty @@ -46746,146 +40007,146 @@ wUU "} (63,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -imk -mPk -mPk -wBp -fjv -qwQ -uYJ -bah -uZK -kME -wMw -kME -tzP +qrg +tXB +tXB +tXB +tXB +gtR +tXB +tXB +uuY +alU +eLH +rlF +voX +hbV +oUe +gBT +oUe +qLu psd -asx -asx -nKd +pwy +pwy +aOJ nDL -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -xcE -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sTT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +uFr +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +uFr +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +bQh bgE -jTL -jTL -lpJ +qyz +qyz +dRi bgE -ldr -hyr -weG -hyr -hyr +rYl +nYI +ciU +nYI +nYI sKC -iTd -iTd -dCz -gZq -eYG -uuj -sFJ -bkC -lbr -urA -lss -rHv +wLf +wLf +cwV +lIh +bEN +nBr +uoq +sBD +neG +xQu +bwE +rap qcN -rsj -dQT -uUF -hvh -tqr -mrP -sWp -kDH -bzq -aZq +eox +fEc +wTw +pyJ +uDz +qob +hoX +tqT +uYN +rYD qcN -qBn -qqA -eBf -kIK -kIK -kIK -ueP -gSC +nmm +cLS +uBh +sew +sew +sew +vLX +oHm clX -nsc -qqA +asg +cLS xgG -azK -xPj -ctw +lWz +qCW +jzd qvo -gvF -pLV -bLI -lrp -pBK +tYn +nyB +xao +rRS +elO qvo -vUM -sJZ -tEJ -cNu +gDp +iga +gGg +bHu gTC -qPG -mCx -aLc -mBG -iSi -tTN +giO +qUB +pMZ +ncj +qxy +mFH gTC -kQb -mUP -mUP -mUP -mUP -mUP -gja -mUP -gja -mUP -gja -mUP -mUP -mUP -mUP -mUP -qWw +xEz +ekD +ekD +ekD +ekD +ekD +aUI +ekD +aUI +ekD +aUI +ekD +ekD +ekD +ekD +ekD +fHj ksX cty hoC @@ -46928,146 +40189,146 @@ wUU "} (64,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -uYJ -lTR -kap -wMw -wMw -wMw -mrC +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +uuY +eLH +rlF +dgH +oKH +gBT +gBT +gBT +tBF hzK eat -asx -asx -jjZ +pwy +pwy +vIE lqF -wMw -iyd -qFC -qFC -qFC -qFC -qFC -qFC -leP -qFC -qFC -qFC -vfG -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -qFC -kIJ -wMw -wMw -wMw -wMw -wMw +gBT +onV +ljn +ljn +ljn +ljn +ljn +ljn +lso +ljn +ljn +ljn +lwp +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +jqM +gBT +gBT +gBT +gBT +gBT qAp -nwi -igQ -kCb +bfo +sbq +lVz qAp -pJp -omj -weG -hyr -hyr +abT +qxS +ciU +nYI +nYI epQ -cpA -cpA -tpB -eYG -aQG -sSZ -ncg +nuI +nuI +mgG +bEN +sgg +sJo +nPv epQ -ePB -hvO -bih -rHv +xXh +pgN +byB +rap nxW -bFj -dQT -eJI -hZo -nJc -wQd -sWp -gEz -maN -bzq +mwc +fEc +sNJ +cSw +uKg +tRv +hoX +bWi +uos +uYN nxW -kmu -qqA -aQc -qqA -qqA -qqA -qqA -qqA +qlN +cLS +ncQ +cLS +cLS +cLS +cLS +cLS clX -vtP -fqs -vcd -rRz -oJv -ugW +tKN +tzA +qKj +nkR +gUd +fKs olU -maQ -vCf -vCf -oXZ -lhm +kJa +qmZ +qmZ +hmz +gnp xgG -gfs -sJZ -tEJ -cNu +dpJ +iga +gGg +bHu kyG -wHu -uIe -wdx -ses -nFg -nFg -aBO -vAI -cto -fuj -cto -ghs -cto -nuv -cto -nuv -cto -nuv -aCH -ghs -swk -cto -cto -etv +gOJ +fem +ruj +sGj +wfH +wfH +oGe +bnz +kQk +cIq +kQk +hXa +kQk +efk +kQk +efk +kQk +efk +oex +hXa +jXX +kQk +kQk +iBZ tdN hoC aOg @@ -47110,98 +40371,98 @@ wUU "} (65,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -rYC -fjv -uYJ -qwQ -pAX -lTR -kap -wMw -wMw -wMw -mrC +qrg +tXB +tXB +tXB +tXB +tXB +diF +alU +rlF +eLH +ovX +dgH +oKH +gBT +gBT +gBT +tBF qhQ -jhM -asx -asx -cQu +poc +pwy +pwy +uqt nDL -wMw -pbp -wCc -ygZ -ygZ -efU -bNN -cYr -ygZ -efU -onr -ahK -ssv -efU -cgA -ahK -ygZ -efU -onr -ahK -uFE -efU -onr -ahK -wCc -mrC -wMw -wMw -wMw -wMw -wMw +gBT +iyF +oAb +iSs +iSs +wFh +eLm +aDM +iSs +wFh +lim +laO +cRU +wFh +jhO +laO +iSs +wFh +lim +laO +rMi +wFh +lim +laO +oAb +tBF +gBT +gBT +gBT +gBT +gBT weJ qAp coz qAp bgE -hyr -hyr -weG -hyr -leU +nYI +nYI +ciU +nYI +rfe sKC -vqt -cOK -dgq -eYG -fAq -eYG -biz +mmC +wMz +bXD +bEN +wOX +bEN +bAK sKC -xWY -hvO -bih -rHv +rFa +pgN +byB +rap nxW -swS -sdS -tYg -sdS -xTH -wQd -sWp -dBB -maN -aiY +ooQ +sve +lzp +sve +pSt +tRv +hoX +hWV +uos +npF qcN oHo -qqA -aQc +cLS +ncQ xgG xgG qvo @@ -47211,33 +40472,33 @@ xgG qvo xgG xgG -xUq -bNC -ugW +jZA +vRr +fKs qvo -hxa -kLd -kLd -gPZ -jlt +xbH +wna +wna +sNn +pmo qvo -hTZ -sJZ -tEJ -cNu +eQe +iga +gGg +bHu kyG -rYO -jBl -uzr -pOz -qpZ -qpZ +dzi +tXW +nvw +aic +ofZ +ofZ kyG -rjH -cto -cto -wXC -ghs +ueA +kQk +kQk +rKK +hXa ksX ksX ksX @@ -47248,8 +40509,8 @@ ksX ksX ksX mSu -iaM -hbi +gwX +gcu ksX mCF aOg @@ -47292,32 +40553,32 @@ wUU "} (66,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -qwQ -qwQ -qwQ -lTR -qwQ -kap -wMw -wMw -wMw -wMw -tzP +qrg +tXB +tXB +tXB +tXB +uuY +uuY +eLH +eLH +eLH +dgH +eLH +oKH +gBT +gBT +gBT +gBT +qLu jhu fFH lNL fFH wPv -wMw -pbp -sHV +gBT +iyF +osp bZU bZU bZU @@ -47339,63 +40600,63 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -paq -rkA -wMw -mcr +rBv +tBF +gBT +gBT +gBT +gBT +gBT +apM +rFT +gBT +dyM aMC -aCY -hyr -weG -hyr -qkF +adp +nYI +ciU +nYI +fNw epQ -lRy -dfJ -vDl -qSJ -vcj -leF -ded +uwz +jry +nXX +xCV +eBO +bAe +fFy epQ -lzu -oMs -hca -lzu +fAz +alP +gOf +fAz qcN -hDX -kfj -krl -vrh -abf -uNJ -oYB -ubF -ckx -bzq +mAM +crx +hNO +qkG +foI +tFR +cVe +llP +rsJ +uYN nxW -qqA -qqA -aQc +cLS +cLS +ncQ xgG -qzd -eQz -vYF -ixd -xgW -pSy -sMS +jag +bBr +cCP +tgZ +wYQ +cvU +ioD qvo -pWm -bNC -ugW +rXx +vRr +fKs xgG qvo qvo @@ -47403,10 +40664,10 @@ cNA tpp qvo xgG -oyx -sJZ -tEJ -cNu +mwC +iga +gGg +bHu kyG kyG kyG @@ -47415,11 +40676,11 @@ gTC kyG kyG kyG -etv -cto -cto -cto -qEG +iBZ +kQk +kQk +kQk +fan ksX cty cty @@ -47429,9 +40690,9 @@ cty cty cty iFb -kuE -cto -etv +ljL +kQk +iBZ ksX mCF aOg @@ -47474,32 +40735,32 @@ wUU "} (67,1,1) = {" wUU -nvv -mPk -mPk -mPk -imk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -kap -sSz -miT -wMw -wMw -wMw -new -new -new -new -new -wMw -pbp -irk +qrg +tXB +tXB +tXB +gtR +uuY +eLH +rlF +eLH +eLH +eLH +eLH +oKH +lPK +tXX +gBT +gBT +gBT +mmR +mmR +mmR +mmR +mmR +gBT +iyF +onf bZU bZU bZU @@ -47521,23 +40782,23 @@ qOh rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -wMw +ifE +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +wGw +gBT aMC coz -qzb -erK -qzb -qzb +fly +kIm +fly +fly epQ sKC epQ @@ -47548,59 +40809,59 @@ epQ sKC epQ lsU -oMs -pCf +alP +gBo lsU nSP qcN -uTZ -bVu -sdS -rcA -sdS -sWp -alM -rsM -nZi +fzF +bVK +sve +kPm +sve +hoX +wOH +glw +ulP nxW -qqA -qqA -aQc +cLS +cLS +ncQ qvo -xUq -jMr -kfJ -fFI -rzM -rQY -wiL +jZA +hAw +rGK +eCr +gqg +rbG +avM qvo -xUq -bNC -ugW +jZA +vRr +fKs xgG -vaV -yfQ -xZO -pAa -jbh +fYo +bCm +jVA +vyS +mex xgG -vUM -sJZ -tEJ -cNu +gDp +iga +gGg +bHu wSx -wjf -oBR -oBR -oBR -oBR -oBR +faY +tow +tow +tow +tow +tow sBX -etv -cto -oxa -vDr +iBZ +kQk +kLk +qyO ksX ksX cty @@ -47612,8 +40873,8 @@ cty cty iFb xxk -cto -etv +kQk +iBZ xxk meS xSl @@ -47656,32 +40917,32 @@ wUU "} (68,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -fjv -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -kap -cmU -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pbp -cYZ +qrg +tXB +tXB +tXB +tXB +alU +eLH +eLH +ovX +eLH +eLH +eLH +oKH +iOv +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +iyF +ceL bZU bZU bZU @@ -47703,85 +40964,85 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -obN -aVs -lzX -sdy -sdy -sdy -sdy -mGb -mGb -mGb -mGb -lgP -mGb -mGb -mGb -mGb -lzu -oMs -hca -lzu -fzy +mOP +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +fMG +rct +gna +gBA +gBA +gBA +gBA +mrv +mrv +mrv +mrv +aQu +mrv +mrv +mrv +mrv +fAz +alP +gOf +fAz +sQl qcN -tDh -ald -iby -acO -fFs -tZE -iZH -kGo -hMV +oyS +kUL +fZh +kEy +kwc +hPT +vSn +uDc +cKC qcN -qqA -qqA -aQc +cLS +cLS +ncQ xgG -tbQ -jMr -muY -rzM -rzM -oiM -fPo +eyC +hAw +qsm +gqg +gqg +eXI +cBU qvo -xUq -bNC -ugW +jZA +vRr +fKs qvo -aPU -rQY -dWE -mRZ -wbB +xzo +rbG +sae +fpa +eQD xgG -gCi -sJZ -tEJ -cNu +uem +iga +gGg +bHu sBX -uNq -uNq -uNq -uNq -uNq -uNq +vNs +vNs +vNs +vNs +vNs +vNs sBX -etv -cto -cto +iBZ +kQk +kQk ksX ksX cty @@ -47795,7 +41056,7 @@ cty iFb swV xxk -etv +iBZ xxk mCF mCF @@ -47838,32 +41099,32 @@ wUU "} (69,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -kap -rgZ -olD -olD -cmk -ufE -iQs -kSz -kSz -kSz -wMw -wMw -pbp -fXH +qrg +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +dgH +oKH +rOu +ldD +ldD +dtK +fVd +jFo +hyI +hyI +hyI +gBT +gBT +iyF +lbh bZU bZU bZU @@ -47885,37 +41146,37 @@ bZU bZU bZU bZU -evX -mrC -wMw -wMw -wMw -nFB -wMw -wMw -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -ckI -hvO -bih -rHv -fzy +msh +tBF +gBT +gBT +gBT +dbI +gBT +gBT +gBT +gBT +wZB +rct +mKP +eBw +dVz +eBw +dVz +pgN +kqc +pgN +kqc +pgN +kqc +pgN +kqc +pgN +kqc +pgN +byB +rap +sQl qcN qcN nxW @@ -47923,47 +41184,47 @@ qcN nxW qcN qcN -sgy -peA -sFa +qXN +vwB +iJA qcN yil -qqA -aQc +cLS +ncQ qvo -xUq -jMr -rQY -avy -rzg -rQY -rzM -sSU -rzM -bNC -ugW +jZA +hAw +rbG +whN +hav +rbG +gqg +waq +gqg +vRr +fKs qvo -rzO -rQY -oiM -qOn -vBW +oug +rbG +eXI +rQs +dQh qvo -mVS -iKa -tvv -pRP +bYx +agY +qmq +rvy sBX -cCO -nfv -nfv -aFh -uNq -pPf +cVv +kFF +kFF +trk +vNs +qSI sBX -etv -cto -cto +iBZ +kQk +kQk iFb cty cty @@ -47976,13 +41237,13 @@ cty cty iFb wNz -cto -etv +kQk +iBZ xxk xxk ksX ksX -cba +olx ksX xxk xxk @@ -48020,32 +41281,32 @@ wUU "} (70,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -lTR -pAX -qwQ -qwQ -lTR -lTR -eDY -tpV -asx -cfq -qAI -bJV +qrg +tXB +tXB +tXB +tXB +diF +dgH +ovX +eLH +eLH +dgH +dgH +jTE +qTw +pwy +qUA +iSe +boA ohC euS vWn fWE -ezx -inj -pbp -sHV +gTE +nzL +iyF +osp bZU bZU bZU @@ -48067,85 +41328,85 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -cHY -wMw -wMw -pAp -aVs -bgh -fUn -jjS -fUn -jjS -hvO -ckI -hvO -ckI -hvO -ckI -hvO -jty -hvO -ckI -hvO -bih -rHv -uiq +rBv +tBF +gBT +gBT +gBT +gBT +gBT +duM +gBT +gBT +wZB +rct +mKP +eBw +dVz +eBw +dVz +pgN +kqc +pgN +kqc +pgN +kqc +pgN +mUq +pgN +kqc +pgN +byB +rap +vfm nxW -sbX -wMx -jqK -sjR -sbX +vWL +qSb +jjq +cvD +vWL nxW -tex -gJs -niF +nJz +igm +hVm nxW yil -qqA -dYn -vcd -lFS -bRQ -lFS -lFS -lFS -lFS -fAs +cLS +tAD +qKj +mFE +sQp +mFE +mFE +mFE +mFE +kDm krL -rRz -eZc -lFS -xqN -lFS -lFS -lFS -bQH -qnf -sBF -cug -gia -avl -cug -xBv -vLk -ptw -ptw -qjd -uNq -mey +nkR +lPx +mFE +qjA +mFE +mFE +mFE +aKH +bSb +moU +cnT +moc +qng +cnT +lcW +rMy +ibe +ibe +eWO +vNs +axm wSx -cMw -cto -cto +pGl +kQk +kQk iFb cty cty @@ -48158,25 +41419,25 @@ cty iFb owM xxk -cto -etv -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto +kQk +iBZ +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk xxk -cto -pOa +kQk +evM xxk mCF mCF @@ -48202,32 +41463,32 @@ wUU "} (71,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -lTR -qwQ -qwQ -qwQ -lTR -qwQ -eDY -lZR -asx -lZR -caD -lTR -aTY +qrg +tXB +tXB +tXB +tXB +uuY +dgH +eLH +eLH +eLH +dgH +eLH +jTE +lje +pwy +lje +esr +dgH +rtk eGX haR -kap -wMw -tZr -pbp -irk +oKH +gBT +vMj +iyF +onf bZU bZU bZU @@ -48249,85 +41510,85 @@ bZU bZU bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -pAp -cFK -kdV -gvM -gvM -gvM -gvM -yeH -yeH -yeH -yeH -lNX -bUK -yeH -yeH -yeH -lzu -hrG -mos -rHv -nnw +ifE +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +wZB +rct +xIU +iHh +iHh +iHh +iHh +mci +mci +mci +mci +sjF +pZB +mci +mci +mci +fAz +xRT +jGn +rap +swn nSP -tQz -gjw -gjw -jZO -qUQ +cao +qQl +qQl +bWr +krR nSP -tyT -peA -ubH +huQ +vwB +kfV nxW -qqA -qqA +cLS +cLS bYT xgG -xUq -tkT -rzg -rzg -rQY -jMr -rzM -sSU -rzM -bNC -rzM -rzM -rzM -rzM -rzM -qFO -iWK -rzM -rMN -kyK -epO -pRP +jZA +apx +hav +hav +rbG +hAw +gqg +waq +gqg +vRr +gqg +gqg +gqg +gqg +gqg +rqm +azX +gqg +lHP +vbR +nYG +rvy wSx -tXg -cic -cic -ceo -cic -hmm +qRR +iwv +iwv +oGo +iwv +gUv wSx -pQw -cto -cto +old +kQk +kQk iFb cty cty @@ -48339,25 +41600,25 @@ cty cty mCF wOR -cto -cto -etv +kQk +kQk +iBZ xxk -cto -cto -cto -cto +kQk +kQk +kQk +kQk xxk -cto -cto -cto -cto -cto +kQk +kQk +kQk +kQk +kQk xxk -cto -cto -cto -cto +kQk +kQk +kQk +kQk xxk ksX mCF @@ -48384,32 +41645,32 @@ wUU "} (72,1,1) = {" wUU -nvv -mPk -mPk -imk -mPk -xVw +qrg +tXB +tXB +gtR +tXB +xAC dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -gnC -mYR -asx -caD -lTR +eLH +eLH +eLH +eLH +tWG +agj +tkc +pwy +esr +dgH dXg -lTR -lTR -kap -wMw -ygY -pbp -cYZ +dgH +dgH +oKH +gBT +jDv +iyF +ceL bZU bZU bZU @@ -48431,23 +41692,23 @@ bZU qOh bZU bZU -miF -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -vLV -mcr +mOP +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +wGw +dyM aMC bgE -qzb -erK -qzb -qzb +fly +kIm +fly +fly pGJ pGJ pGJ @@ -48455,63 +41716,63 @@ pGJ pGJ pGJ xxV -pXL -oMs -xWY -hvO -bih -rHv -nnw -jCE -qUQ -gjw -eOh -tGr -jnA -jKz -prh -wVa -rEO +qTI +alP +rFa +pgN +byB +rap +swn +lED +krR +qQl +bgZ +xbq +dye +lMw +gZz +vvi +vXI qcN -qqA -qqA -aQc +cLS +cLS +ncQ xgG -xJx -oiM -rzM -rzM -kaY -jDO -uEz +soW +eXI +gqg +gqg +dtv +eoq +aVu itb -bjA -fWz -jhL +toE +nTs +fIO itb -rft -brM -kTo -map -vBW +cCW +mDK +smi +vUu +dQh qvo -mVS -sJZ -tEJ -cNu +bYx +iga +gGg +bHu sBX -pIz -lpv -wxu -lpv -xFw -lpv -nTj -etv -cto -cto +gaz +pEJ +wuK +pEJ +kgO +pEJ +kTp +iBZ +kQk +kQk nNe -dNZ +iWz eCu eov mCF @@ -48521,26 +41782,26 @@ cty hoC mCF wOR -cto -cto -etv -cto -cto -cto -cto -cto -cto -cto +kQk +kQk +iBZ +kQk +kQk +kQk +kQk +kQk +kQk +kQk xxk -cto -cto -cto -cto -cto -cto -cto -cto -cto +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk ksX mCF aOg @@ -48566,32 +41827,32 @@ wUU "} (73,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ +qrg +tXB +tXB +tXB +tXB +uuY +eLH dXg dXg -qwQ -lTR -qwQ -fHf -wPl -xOX -lId -jLS -lTR +eLH +dgH +eLH +uKb +dhh +wlj +qTM +mWg +dgH dXg dXg -aTY -kap -oLa -vUQ -pbp -fXH +rtk +oKH +uWS +iuR +iyF +lbh bZU bZU bZU @@ -48613,23 +41874,23 @@ bZU bZU bZU bZU -kMy -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -kdf -hyr -hyr -hyr -hyr -leU +fqo +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gVv +nYI +nYI +nYI +nYI +rfe pGJ iaO uRU @@ -48637,61 +41898,61 @@ uRU uRU reG pGJ -neU -oMs -xWY -hrG -mos -rHv -nnw +vaR +alP +rFa +xRT +jGn +rap +swn nxW -aXC -gjw -wdh -spd -rNo +fHy +qQl +noc +vhx +kbH qcN -maN -rsM -ekp +uos +glw +nbN qcN yil -qqA -aQc +cLS +ncQ qvo -smO -rQY -rzM -vPe -jTi -jMr -wbB +gHa +rbG +gqg +gah +yhj +hAw +eQD qvo -xUq -tkT -ugW +jZA +apx +fKs xgG -klu -rQY -oiM -jYl -lEw +bWR +rbG +eXI +lWg +nVj xgG -iMp -sJZ -tEJ -cNu +nTF +iga +gGg +bHu sBX -kNe -ptM -lpv -lpv -lpv -uuv +aGq +tlf +pEJ +pEJ +pEJ +wAF wSx -rjH -wOC -gMm +ueA +fYr +rjW iFb kxe awJ @@ -48703,9 +41964,9 @@ mCF jdm mCF wOR -cto -cto -etv +kQk +kQk +iBZ xxk ksX ksX @@ -48720,9 +41981,9 @@ ksX ksX ksX ksX -azw -cto -cto +hoJ +kQk +kQk xxk mCF xGV @@ -48748,32 +42009,32 @@ wUU "} (74,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ +qrg +tXB +tXB +tXB +tXB +uuY +rlF dXg dXg -qwQ -qwQ -qwQ -qwQ -xLB -xOX -bCM -rlI -rlI -rlI -rlI -rlI -cEm -fZB -wMw -pbp -sHV +eLH +eLH +eLH +eLH +tWG +wlj +dzh +xud +xud +xud +xud +xud +aEb +kQB +gBT +iyF +osp bZU bZU bZU @@ -48795,23 +42056,23 @@ bZU bZU bZU bZU -xsH -mrC -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -sid -hyr -hyr -hyr -hyr -hyr +rBv +tBF +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +jZm +nYI +nYI +nYI +nYI +nYI pGJ nio bte @@ -48819,61 +42080,61 @@ mxv qHJ afg pGJ -bOO -lnG -rKf -erE -ivD -rHv -nnw +bNm +nbU +cye +jCy +wBW +rap +swn qcN -dUA -qUQ -bVq -woI -xVA +ijG +krR +cGJ +jqF +gFw nxW -mVN -doa -gWu +bFt +jXI +bTG qcN dmR yil -aQc +ncQ xgG -lMq -jOR -wIH -gkL -xkb -fFu -xxZ +wgR +iuz +qQS +iUR +hxO +kUE +uKf qvo -gFW -mXs -qwB +irF +xMr +ePo xgG -lnw -mbt -jBp -ilQ -rzM +aNJ +dyn +wPX +cbY +gqg qvo -vUM -fPn -jjg -cNu +gDp +wwE +cqx +bHu sBX -uNh -sNa +iex +bJt ffe lSG ffe kSd wSx -etv -cto -cto +iBZ +kQk +kQk iFb kmW mCF @@ -48886,9 +42147,9 @@ mCF mCF wOR noj -cto -etv -cto +kQk +iBZ +kQk ksX cty cty @@ -48902,9 +42163,9 @@ cty cty cty ksX -cto -cto -cto +kQk +kQk +kQk xxk mCF mCF @@ -48930,32 +42191,32 @@ wUU "} (75,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +uuY +eLH +eLH dXg dXg dXg -qwQ -qwQ -eDY -xOX -tkV -asx -asx -asx -cDm -asx -asx -paq -wMw -pbp -irk +eLH +eLH +jTE +wlj +mXg +pwy +pwy +pwy +iZO +pwy +pwy +apM +gBT +iyF +onf bZU bZU bZU @@ -48977,51 +42238,51 @@ bZU rtm bZU bZU -bwP -mrC -wMw -wMw -wMw -wMw -wMw -wMw -euH -pLp -wMw -kdf -hyr -hyr +ifE +tBF +gBT +gBT +gBT +gBT +gBT +gBT +fPX +ios +gBT +gVv +nYI +nYI giN -hyr -bmV -afz +nYI +lJs +jDy xyO eDQ eDQ eDQ xyO -fZe -tfj -mGb -lzu -hrG -mos -rHv -shG +qzG +pak +mrv +fAz +xRT +jGn +rap +lgm qcN qcN nxW nSP -hli +oHM nxW qcN nSP -jGk +mme nxW qcN -pco -qqA -aQc +lfk +cLS +ncQ xgG xgG qvo @@ -49038,23 +42299,23 @@ xgG xgG xgG qvo -mjA -wQi +uRK +pyA xgG -vUM -sJZ -tEJ -cNu +gDp +iga +gGg +bHu wSx -rOL -sNa +hPy +bJt dnh osX oBJ osX wSx -etv -cto +iBZ +kQk xxk eov mCF @@ -49069,8 +42330,8 @@ mCF wOR xxk mxB -eJS -cto +rDY +kQk ksX cty cty @@ -49084,9 +42345,9 @@ cty cty cty ksX -cto -cto -cto +kQk +kQk +kQk xxk aOg aOg @@ -49112,32 +42373,32 @@ wUU "} (76,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +xAC +eLH +eLH +eLH dXg dXg dXg dXg -eDY -asx -asx -kzo -izB -fZx -asx -hOp -asx -wMw -wMw -pbp -cYZ +jTE +pwy +pwy +iLs +dNC +fuA +pwy +cZs +pwy +gBT +gBT +iyF +ceL bZU bZU bZU @@ -49159,74 +42420,74 @@ bZU bZU bZU bZU -miF -mrC -wMw -wMw -wMw -wMw +mOP +tBF +gBT +gBT +gBT +gBT xVQ kyz kqA fOO aMC aMC -aqw +aLx giN -cTV -hyr -bmV -qxu +swM +nYI +lJs +ofl eDQ svD oNy teT eDQ -lzu -gqX -hvO -ckI -tam -lss -rHv -oMs -kiE -xNY -qqA -qqA -aQc -qqA -kWZ -rVZ -aQc -qqA -nfk -qqA -qqA -aQc -kWZ -rVZ -qqA -qqA -qqA -qqA -qqA -xNY -qqA +fAz +mYr +pgN +kqc +nCc +bwE +rap +alP +ahR +aXj +cLS +cLS +ncQ +cLS +nrS +xIV +ncQ +cLS +tca +cLS +cLS +ncQ +nrS +xIV +cLS +cLS +cLS +cLS +cLS +aXj +cLS sah jxe eRE iPw pbf xgG -wwd -mjA -rzM +nvQ +uRK +gqg qvo -eea -sJZ -tEJ -cNu +wRV +iga +gGg +bHu wSx wSx wSx @@ -49235,7 +42496,7 @@ wSx wSx wSx wSx -etv +iBZ xxk xxk mCF @@ -49249,10 +42510,10 @@ mCF mCF mCF mnL -cto -cto -etv -cto +kQk +kQk +iBZ +kQk ksX cty cty @@ -49266,9 +42527,9 @@ cty cty cty ksX -cto -cto -cto +kQk +kQk +kQk ksX aOg aOg @@ -49294,59 +42555,59 @@ wUU "} (77,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -pAX -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +diF +eLH +dgH +ovX +eLH +eLH +eLH dXg xFS -vZR -eha -dKy -qVD -fXu -asx -asx -asx -wMw -wMw -pbp -wCc -uaV -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -uaV -nXR -kvQ -jyq -uaV -nXR -fUF -jyq -uaV -nXR -fUF -jyq -wCc -mrC -wMw -olD -olD -olD +fCF +shs +fWj +edP +lGM +pwy +pwy +pwy +gBT +gBT +iyF +oAb +ncf +ncf +aAV +iEl +bqK +ncf +aAV +iEl +bqK +ncf +aAV +ayE +bqK +ncf +aAV +iEl +bqK +ncf +aAV +iEl +bqK +oAb +tBF +gBT +ldD +ldD +ldD teH oaO ixw @@ -49356,69 +42617,69 @@ kqA giN giN giN -hyr -bmV -qxu +nYI +lJs +ofl eDQ eDQ oNy eDQ eDQ -lzu -gqX -hvO -ckI -hvO -mrd -ogq -qgy -mlT -kIK -kIK -kIK -bfq -kIK -jAx -kIK -bfq -akf +fAz +mYr +pgN +kqc +pgN +ofs +iOp +lfC +hqv +sew +sew +sew +mIe +sew +vKQ +sew +mIe +oOG snE -kIK -kIK +sew +sew pLF -jAx -kIK -kIK -kIK -kIK -kIK -kIK -fAQ -qqA +vKQ +sew +sew +sew +sew +sew +sew +bsF +cLS qvo tXE rKB jHJ tXE qvo -mqt -qhN -kXZ +kqi +kXr +lTr qvo -ueg -sJZ -tEJ -cNu +cEU +iga +gGg +bHu lNb -apY -vzt -ezt -ezt -ezt -ezt -ezt +wrP +fPN +sxj +sxj +sxj +sxj +sxj toU -cto +kQk xxk mCF aOg @@ -49431,9 +42692,9 @@ mCF mCF hoC owM -qEG -cto -etv +fan +kQk +iBZ xxk xxk mCF @@ -49448,9 +42709,9 @@ cty cty cty ksX -cto -cto -cto +kQk +kQk +kQk ksX hoC mCF @@ -49476,59 +42737,59 @@ wUU "} (78,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ +qrg +tXB +tXB +tXB +tXB +xAC +eLH +aBZ +eLH gVO jaF qgm -lTR +dgH dXg dXg xFS eqg -bJV -bJV -bJV +boA +boA +boA qTs -asx -asx -xOI -qoE -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -olD -jgL -mrC -asx -asx -asx +pwy +pwy +kOA +rRG +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +ldD +jYS +tBF +pwy +pwy +pwy kqA aSe rFv @@ -49537,70 +42798,70 @@ iFm kqA lGD giN -hyr -hyr +nYI +nYI qOV -qxu +ofl eDQ mlN eDQ mxv eDQ -lzu -vfg -yeH -lzu -hrG -mos -rHv -oMs -kiE -qqA -qqA -qqA -qqA +fAz +uwS +mci +fAz +xRT +jGn +rap +alP +ahR +cLS +cLS +cLS +cLS yil -qqA +cLS gxi -qqA -qqA +cLS +cLS sKN -qqA -qqA -vMU -qqA -gjs -qqA -qqA -qqA -qqA -qqA -aQc -qqA +cLS +cLS +bBp +cLS +fge +cLS +cLS +cLS +cLS +cLS +ncQ +cLS qvo slB iAX bur vRI oxi -qnf -ayo -wbB +bSb +aLj +eQD qvo -ueg -fPn -aBB -ozz -lmd -hys -hys -hys -hys -hys -hys -hys +cEU +wwE +aId +dcq +fMD +guG +guG +guG +guG +guG +guG +guG pGP -cto +kQk xxk mCF aOg @@ -49613,9 +42874,9 @@ mCF mCF hoC owM -ghs -cto -etv +hXa +kQk +iBZ xxk xxk mCF @@ -49630,9 +42891,9 @@ mCF cty cty ksX -cto -cto -cto +kQk +kQk +kQk ksX hoC mCF @@ -49658,70 +42919,70 @@ wUU "} (79,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +uuY +eLH +eLH +dgH scL vLo lnO -qwQ -qwQ -qwQ +eLH +eLH +eLH dXg -qwQ -qwQ -qwQ -pAX +eLH +eLH +eLH +ovX rMl -asx -fZB -asx -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -fZB -asx +pwy +kQB +pwy +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +tBF +pwy +kQB +pwy kqA kEB sSp hlw vhJ bgE -kpN +gDt giN -hyr -hyr -hyr +nYI +nYI +nYI pGJ nio lkH @@ -49729,26 +42990,26 @@ xXp lYF srW pGJ -mFY -oMs -xWY -hvO -bih -rHv -qMl +sbc +alP +rFa +pgN +byB +rap +sEK xRF srY -hFE -egp +spL +wvs xRF yil qio yil jcT -qqA -aQc -qqA -vMU +cLS +ncQ +cLS +bBp clX clX qio @@ -49756,32 +43017,32 @@ qio qio qio qio -qqA -aQc -qqA +cLS +ncQ +cLS xgG duw aKA mcN aAg xgG -sLU -qOn -wbB +tKc +rQs +eQD qvo -ueg -sJZ -tEJ -ouV +cEU +iga +gGg +cyu lNb -ezt -ezt -ezt -ezt +sxj +sxj +sxj +sxj ixr ixr ixr -etv +iBZ xxk xxk mCF @@ -49795,9 +43056,9 @@ mCF mCF cty owM -cto -cto -etv +kQk +kQk +iBZ xxk xxk mCF @@ -49812,9 +43073,9 @@ aOg cty cty ksX -cto -cto -cto +kQk +kQk +kQk ksX cty mCF @@ -49840,59 +43101,59 @@ wUU "} (80,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +xAC +eLH +eLH +eLH eGX hKK fLY -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH btU -asx -asx -wCR +pwy +pwy +dwy gsQ icb -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -wMw -mrC -asx -dlr -asx +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +gBT +tBF +pwy +wSV +pwy bgE pTg ycY @@ -49903,7 +43164,7 @@ giN giN giN giN -rfn +uot pGJ dXd tGV @@ -49911,26 +43172,26 @@ tGV tGV itP pGJ -vNY -oMs -xWY -hrG -mos -rHv -oMs +lnU +alP +rFa +xRT +jGn +rap +alP snl -kTD -lLZ -dKc +gLd +eZT +mfO snl yil yil tiF yil -qqA -aQc -qqA -qqA +cLS +ncQ +cLS +cLS clX qio qio @@ -49938,34 +43199,34 @@ pGj vpQ qio qio -edu -aXz -dkl +oZh +nKK +bkj xgG xgG qvo xgG xgG xgG -rgy -mRZ -wDN +jNz +fpa +biL xgG -rGl -sJZ -fnq -cNu +lEd +iga +vNF +bHu bkM ngg bkM ixr -ezt +sxj dad ixr ixr toU -cto -cto +kQk +kQk iFb mCF mCF @@ -49977,10 +43238,10 @@ mCF cty cty owM -diu -cto -etv -cto +smX +kQk +iBZ +kQk ksX mCF aOg @@ -49994,9 +43255,9 @@ aOg cty cty ksX -cto -cto -cto +kQk +kQk +kQk ksX cty mCF @@ -50022,29 +43283,29 @@ wUU "} (81,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -ebN -eha -tNy +qrg +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +mXe +shs +lLK gXf unH kKX @@ -50053,9 +43314,9 @@ wfK wfK ebm bJI -asx -asx -asx +pwy +pwy +pwy bJI bJI oJb @@ -50063,9 +43324,9 @@ wfK wfK ebm bJI -asx -asx -asx +pwy +pwy +pwy bJI bJI oJb @@ -50081,10 +43342,10 @@ egV egV cKK duN -hyr -nRH -nRH -nRH +nYI +vJd +vJd +vJd giN pGJ pGJ @@ -50093,61 +43354,61 @@ pGJ bhF pGJ pGJ -oBj -oMs -xWY -hvO -mrd -ogq -ciH +yhh +alP +rFa +pgN +ofs +iOp +aZF tIV -hKe -fWU -mXO +rQh +erB +wbE xRF ira yil yil -qqA -qqA -aQc +cLS +cLS +ncQ yil -qqA +cLS qio qio pGj iIc -wSL -wSL -axv -lDh -jQe -mHa +cfy +cfy +wWu +bOp +oPI +qXq sah jxe orH uIl odw qvo -feV -qOn -wbB +cEi +rQs +eQD xgG -xff -sJZ -tEJ -cNu +bcJ +iga +gGg +bHu bkM bkM ngg -ipl +kfR ixr exj ixr -gxX -etv -cto -cto +tvM +iBZ +kQk +kQk iFb mCF jdm @@ -50160,7 +43421,7 @@ cty cty owM rXS -cto +kQk toU xxk ksX @@ -50176,9 +43437,9 @@ aOg aOg ksX ksX -cto -cto -cto +kQk +kQk +kQk ksX ksX hoC @@ -50204,29 +43465,29 @@ wUU "} (82,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy +qrg +tXB +tXB +tXB +tXB +uuY +rlF +dgH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +jTE +lLK gPL hKK srU @@ -50235,28 +43496,28 @@ lYr pdn cRx bJI -asx -fZB -asx +pwy +kQB +pwy pUi rIG lYr -awr +nTM lYr -aHu +daz tEc -asx -viY -asx +pwy +diP +pwy gfc -sFN +dlB lYr lYr lYr kRH bJI -rgf -asx +cNy +pwy aMC dSo kUj @@ -50264,71 +43525,71 @@ rmV rmV kqA giN -hyr +nYI giN iSW giN iSW -hyr -hyr +nYI +nYI giN -kIV -hyr +fbN +nYI thS -oMs -oMs -xWY -hrG -mos -rHv -oMs +alP +alP +rFa +xRT +jGn +rap +alP snl -qgR -dvw -qWt +lMH +vKP +imQ snl yil yil yil gkF -pZD -aQc +teM +ncQ yil -qqA +cLS qio qio vDf -wSL -sLO -lum -axv -edu -jQe -xvj +cfy +vno +skJ +wWu +oZh +oPI +xAw xgG -oWr +idS iAX iAX tXE xgG -suN -qOn -wbB +dJx +rQs +eQD qvo -fkE -sJZ -tEJ -cNu -qnm +coF +iga +gGg +bHu +tzB bkM ngg -tsz +cgY chs ixr ixr -gxX -etv -cto +tvM +iBZ +kQk xxk iFb mCF @@ -50342,9 +43603,9 @@ hoC cty owM xxk -cto -etv -tcX +kQk +iBZ +hFp ksX vOo aOg @@ -50357,11 +43618,11 @@ mCF aOg aOg ksX -kgC -wtU -cto -cto -jps +lSl +hYm +kQk +kQk +aNn ksX ksX mCF @@ -50386,50 +43647,50 @@ wUU "} (83,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -qwQ -aTY +qrg +tXB +tXB +tXB +tXB +uuY +eLH +rtk dXg -aTY -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -sUK +rtk +eLH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +jTE +lLK +wax +fSX eGX wXc -sJm -bVS +sgL +wKy kRH eOa -asx -dlr -asx +pwy +wSV +pwy itQ qKZ qyJ -vAZ +xlp vmw kRH eOa -svG -dlr -asx +mOl +wSV +pwy itQ qKZ qyJ @@ -50438,7 +43699,7 @@ lYr hZE bVX eOa -asx +pwy aMC dSo rmo @@ -50446,28 +43707,28 @@ qfC xbm kqA giN -hyr +nYI giN -hyr +nYI iSW giN giN -hyr -hyr -oZA -hyr +nYI +nYI +kYs +nYI jrq -oMs -oMs -lzu -oMs -hca -lzu -oMs -yjp -lDk -oKN -nTX +alP +alP +fAz +alP +gOf +fAz +alP +igg +hFr +tIy +dVf xRF yil yil @@ -50475,42 +43736,42 @@ yil qio sMJ sKN -qqA -qqA +cLS +cLS qio qio oRD -wSL -wSL -wSL -axv -lDh -boV -dkl +cfy +cfy +cfy +wWu +bOp +ezy +bkj qvo opW nOz hLI vRI oxi -rVI -hQb -lEw +edq +gAJ +nVj xgG -hUs -sJZ -tEJ -cNu -qnm +dag +iga +gGg +bHu +tzB bkM ngg -qLq +vMA chs ixr ixr nTG -etv -cto +iBZ +kQk xxk mCF mCF @@ -50523,11 +43784,11 @@ mCF mCF cty vVJ -cto -cto -etv -cto -wFx +kQk +kQk +iBZ +kQk +jcU mCF aOg aOg @@ -50539,12 +43800,12 @@ mCF aOg aOg ksX -kgC -lun -cto -cto -drK -cto +lSl +rIg +kQk +kQk +iBA +kQk ksX mCF mCF @@ -50568,59 +43829,59 @@ wUU "} (84,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -wBp -wBp -rYC +qrg +tXB +tXB +tXB +tXB +uuY +uuY +diF dXg -qwQ -lTR +eLH +dgH gVO jaF jaF jaF qgm -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH +dgH scL -dOS +nlx rfV lnO -fHf -eha -tNy -eXg -jLS -lTR +uKb +shs +lLK +jzo +mWg +dgH scL oGv lsN lnO -fHf -eha -tNy -eXg -jLS -lTR +uKb +shs +lLK +jzo +mWg +dgH scL oGv -rKM +gNy lnO -lTR -fHf -wPl +dgH +uKb +dhh aMC kqA kqA @@ -50628,22 +43889,22 @@ bgE bgE bgE aMC -ldr -hyr +rYl +nYI iSW giN giN giN -cZZ -hyr -ooe -pjk +gyU +nYI +jVN +vgI wHk -evV +qUb aVQ lsU -oMs -pCf +alP +gBo lsU fkR fkR @@ -50656,33 +43917,33 @@ pVN pVN fkR fkR -gSn -qqA -tDF +jZI +cLS +jfG qio qio qio -wSL -wSL -wyE -axv -edu -boV -nLI +cfy +cfy +eRy +wWu +oZh +ezy +kzD qvo tgk bLp dWN sRM xgG -qCk -gsq -atz +nBf +beP +qcy xgG -vUM -sJZ -tEJ -ciu +gDp +iga +gGg +xIn bkM bkM chs @@ -50691,7 +43952,7 @@ chs ixr poz nTG -etv +iBZ xxk xxk mCF @@ -50705,9 +43966,9 @@ mCF mCF mCF wOR -cto -cto -etv +kQk +kQk +iBZ xxk xxk mCF @@ -50721,10 +43982,10 @@ ksX ksX ksX loP -cto -cto -cto -wgv +kQk +kQk +kQk +fTY xxk xxk xxk @@ -50750,59 +44011,59 @@ wUU "} (85,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +aBZ dXg -aTY +rtk scL lsN gcF oGv lnO -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH +dgH scL gDI jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +dgH +jTE +lLK +wax +dgH +dgH scL kvC jSX fLY -lTR -eDY -tNy -oLZ -lTR -lTR +dgH +jTE +lLK +wax +dgH +dgH scL oGv oGv lnO -lTR +dgH dXg -fHf +uKb jEG hET hET @@ -50810,7 +44071,7 @@ koZ hET wft aMC -sNT +qPU giN vFl sXb @@ -50823,34 +44084,34 @@ mRq sXb mRq xzj -oxA -oMs -hca -wRB +lPC +alP +gOf +sKx fkR -qps -bVI -pqG -bVI -gan -bVI -bVI -bVI -gKn -nDC -aQc -tDF -tDF -tDF +sJz +ndR +cCL +ndR +vOs +ndR +ndR +ndR +cbF +usw +ncQ +jfG +jfG +jfG qio qio -rja -wSL -wSL -axv -lDh -boV -dkl +nxC +cfy +cfy +wWu +bOp +ezy +bkj xgG xgG qvo @@ -50861,10 +44122,10 @@ xgG qvo xgG xgG -vUM -sJZ -tEJ -muF +gDp +iga +gGg +cgJ pKs chs chs @@ -50874,12 +44135,12 @@ ixr ixr ixr toU -cto +kQk xxk meS eOK -gPE -gPE +bSI +bSI cty cty mCF @@ -50887,9 +44148,9 @@ mCF mCF mCF wOR -cto -cto -etv +kQk +kQk +iBZ swV xxk mCF @@ -50900,13 +44161,13 @@ cty mCF mCF xxk -wTE -cto -cto -cto -cto +hiS +kQk +kQk +kQk +kQk xxk -cto +kQk xxk xxk xxk @@ -50932,59 +44193,59 @@ wUU "} (86,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +rlF +dgH scL vom hJq hXe lnO -qwQ -pAX -qwQ -qwQ -uYJ -eDY -tNy -oLZ -qwQ -qwQ +eLH +ovX +eLH +eLH +rlF +jTE +lLK +wax +eLH +eLH eGX hKK fLY -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR +dgH +eLH +jTE +lLK +wax +dgH +dgH eGX hKK fLY -lTR -lTR -eDY -jzL -oLZ -lTR -lTR +dgH +dgH +jTE +jsc +wax +dgH +dgH scL oGv oGv lnO dXg -lTR -lTR +dgH +dgH qTZ hKK bbG @@ -50992,61 +44253,61 @@ hKK hKK gdJ vKv -bZA +dEv giN giN sXb -egH -pJQ -aVt -tzw -dSA -cGc -aVt -iet +iLp +umd +omx +wTF +uOw +eRm +omx +mPJ sXb -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN vDe vio dHY wrg jfn -hPD -ugi +noO +rGs pVN -aQc -tDF -bzf +ncQ +jfG +aef gyz clX -azr -wSL -wSL -wSL -axv -edu -boV -nLI -dkl -bak -cmf -ezc -ezc -bak -uOF -bak -tQy -fEm -vUM -sJZ -tEJ -cNu +wLl +cfy +cfy +cfy +wWu +oZh +ezy +kzD +bkj +cbO +jFU +arL +arL +cbO +dvU +cbO +uSB +hNn +gDp +iga +gGg +bHu pKs chs chs @@ -51055,13 +44316,13 @@ ixr ixr ixr exj -etv +iBZ xxk xxk aOg eOK -gPE -nYi +bSI +sns cty aOg aOg @@ -51071,7 +44332,7 @@ mCF wOR xxk xxk -gAK +kJB xxk mrY mCF @@ -51082,15 +44343,15 @@ eoV mCF mCF xxk -cto -cto -cto -cto +kQk +kQk +kQk +kQk xxk mxB -cto -cto -cto +kQk +kQk +kQk xxk xGV aOg @@ -51114,126 +44375,126 @@ wUU "} (87,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -aTY -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +rtk +dgH eGX hKK vDw aag lnO -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY +eLH +dgH +eLH +eLH +dgH +jTE +lLK +wax +eLH +eLH +dgH +eLH +eLH +eLH +dgH +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +dgH +jTE iAP -sgn +odM dXg dXg scL oGv hXR lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR -aTY +dgH +dgH +dgH +dgH +dgH +dgH +dgH +rtk qsb vKv -hsl +teY iSW giN mRq -oyb +ctZ jzZ mCY pjn mCY jzZ mCY -wjd +jzZ mRq -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN xtZ cbK ara wrC eTP -hPD -uQH +noO +mQd pVN -aQc -dkl -dkl -mOx -iZT -roT -wSL -wSL -wSL -axv -suE -dkV -sff -sff -hLF -nVk -nVk -hLF -nVk -nVk -nVk -mlT -nbA -nbA -lQA -ptY -uzg +ncQ +bkj +bkj +nkV +pCJ +qBl +cfy +cfy +cfy +wWu +srO +raF +psu +psu +wpj +llR +llR +wpj +llR +llR +llR +hqv +oSA +oSA +gJo +jBe +xXa bkM chs chs chs -rCs +frC ixr ixr ixr @@ -51242,7 +44503,7 @@ xxk xxk eOK mCF -gPE +bSI cty cty aOg @@ -51252,9 +44513,9 @@ mCF mCF owM mxB -cto -etv -cto +kQk +iBZ +kQk ksX cty mCF @@ -51265,14 +44526,14 @@ mCF mCF xxk xxk -cto -cto -cto -cto -wgv -cto -cto -cto +kQk +kQk +kQk +kQk +fTY +kQk +kQk +kQk ksX aBK aOg @@ -51296,71 +44557,71 @@ wUU "} (88,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -aTY -qwQ -aTY +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +eLH +rtk +eLH +rtk dFt hKK fLY -lTR -qwQ -lTR -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -aqh -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -aTY -lTR -lTR -lTR -eDY -cpF -cpF +dgH +eLH +dgH +eLH +eLH +jTE +lLK +wax +eLH +eLH +eLH +kCv +eLH +dgH +eLH +jTE +lLK +wax +dgH +dgH +dgH +rtk +dgH +dgH +dgH +jTE +wZU +wZU dXg -lTR +dgH scL oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -aTY -lTR -lTR +dgH +dgH +dgH +dgH +dgH +rtk +dgH +dgH vEe vKv -hsl +teY giN -hyr +nYI mRq -nih +sEn jzZ lZa gyw @@ -51369,48 +44630,48 @@ jzZ mCY jzZ mRq -xWY -hvO -bih -rHv -mXx -tpL -khb +rFa +pgN +byB +rap +lsF +fwQ +fXN urd lQg ara xHt nZk -hPD -mZi -mXx -aQc -qXO -tso -bbW -qQk -per -mVY -lMl -lMl -pRR -edu -aXz -oXm -oXm -xne -xne -xne -xne -xne -cWs -xne -tQy -oDz -lMD -sJZ -tEJ -bZI +noO +syN +lsF +ncQ +vWK +ktK +bnV +fAv +eAn +hyg +bgR +bgR +siW +oZh +nKK +lvY +lvY +eAd +eAd +eAd +eAd +eAd +rqb +eAd +uSB +cvJ +nFu +iga +gGg +kHN bkM ngg dtH @@ -51419,7 +44680,7 @@ chs ixr ixr ixr -mMZ +hfG xxk xxk mCF @@ -51434,9 +44695,9 @@ mCF mCF owM xxk -cto -etv -cto +kQk +iBZ +kQk ksX cty mCF @@ -51449,12 +44710,12 @@ ksX ksX ksX ksX -cDc +bRA xxk -cto -cto -esw -cto +kQk +kQk +xzq +kQk ksX aOg mCF @@ -51478,71 +44739,71 @@ wUU "} (89,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -qHl -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -pAX -lTR -lTR -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +dgH +eLH +eLH +eLH +qdi +eLH +dgH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH +ovX +dgH +dgH +eLH dXg -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR -lTR -lTR -fHf -cpF -lTR -lTR +eLH +jTE +lLK +wax +dgH +dgH +rtk +dgH +dgH +dgH +dgH +uKb +wZU +dgH +dgH gVO uTu oGv oGv lnO -lTR -lTR -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH +dgH +dgH gVO bEY aMC -hyr +nYI giN mpL sXb -nih +sEn jzZ mCY gyw @@ -51551,34 +44812,34 @@ pKg mCY jzZ mRq -xWY -hvO -bih -rHv -hPD -tpL -khb +rFa +pgN +byB +rap +noO +fwQ +fXN urd hla lVW lZh nZk -hPD -mZi -hPD -aQc -qXO -tso -dkl -eUh -izP -khB -nTH -pNT -izP -eUh -aXz -nYy +noO +syN +noO +ncQ +vWK +ktK +bkj +aZg +rvk +ikv +sOB +cVA +rvk +aZg +nKK +qaH xNR ydx xNR @@ -51589,10 +44850,10 @@ xNR ydx xNR xNR -rMN -mzv -pGS -rMN +lHP +tzY +iGi +lHP bkM bkM bkM @@ -51600,9 +44861,9 @@ bkM pKs pKs bkM -cNC -etv -cto +tES +iBZ +kQk xxk mCF mCF @@ -51615,10 +44876,10 @@ aOg mCF mCF owM -cto -cto -etv -cto +kQk +kQk +iBZ +kQk ksX mCF mCF @@ -51631,12 +44892,12 @@ mCF hoC cty ksX -kgC -cto -cto -cto -cto -cto +lSl +kQk +kQk +kQk +kQk +kQk ksX aOg mCF @@ -51660,51 +44921,51 @@ wUU "} (90,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -msj -daS -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +siG +aBZ +ovX +eLH +eLH +eLH +eLH +eLH +ovX +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH dXg -qwQ -qwQ +eLH +eLH dXg -qwQ -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +eLH +eLH +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +aBZ +dgH +dgH +dgH +dgH +dgH scL hXR oGv @@ -51712,19 +44973,19 @@ oGv lnO dXg dXg -daS -lTR -lTR +aBZ +dgH +dgH gVO jaF aqq cwE cwE -ngC -hyr +pqy +nYI iSW sXb -djh +qkL jzZ jzZ gyw @@ -51733,58 +44994,58 @@ jzZ jzZ sia sXb -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN urd ara ara hAh nZk -hPD -uQH +noO +mQd pVN -aQc +ncQ bum -azh -oXm -nLI -nLI -ovp -mIQ -fnX -oXm -dkl -boV -dkl +xEi +lvY +kzD +kzD +vmF +bNq +jZh +lvY +bkj +ezy +bkj xNR iLd iTP jZG wmX vYQ -lgb -fEI -wfy +jhS +uHm +wps xNR gFx aFg umT gFx eDF -vrj -mkt -aUP -jeo -kbp -cTw +lAH +wzK +lxA +twk +mVv +lLm xxk -etv -cto +iBZ +kQk xxk mCF mCF @@ -51797,11 +45058,11 @@ mCF mCF aOg wOR -cto -cto +kQk +kQk toU -cto -cba +kQk +olx mCF mCF jdm @@ -51813,11 +45074,11 @@ aOg aOg cty ksX -kgC -cto -cto +lSl +kQk +kQk xxk -cto +kQk ksX ksX mCF @@ -51842,71 +45103,71 @@ wUU "} (91,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -aTY -qwQ -qwQ -qwQ -aTY -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +dgH +rtk +eLH +eLH +eLH +rtk +dgH +eLH +eLH +eLH +eLH +dgH +eLH +jTE +lLK +wax +eLH dXg dXg -qwQ +eLH dXg -qwQ -aqh -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -eDY -cpF -lTR -lTR +eLH +kCv +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +dgH +jTE +wZU +dgH +dgH scL oGv -tmC +rjL hXR lnO dXg -daS -lTR -lTR -lTR +aBZ +dgH +dgH +dgH scL oGv cwE cwE -qqM -hsl -hyr +ijU +teY +nYI giN -dVq -tzw +bqR +wTF jzZ jzZ rdx @@ -51914,59 +45175,59 @@ pol pol pol pol -dVq -lbr -urA -lss -rHv +bqR +neG +xQu +bwE +rap pVN -daA -khb +pQI +fXN urd ara ara ara nZk -hPD -uQH +noO +mQd pVN -dYn -rmB -rmB -dxt -rxa -rxa -wEU -sNp -rmB -rmB -tcq -jyw -xya +tAD +tAQ +tAQ +eai +rEn +rEn +xni +oIv +tAQ +tAQ +jWw +tGJ +pPi ydx sdq wpX qQt jNT qeu -thY -mPI -bTm -snP +bzM +esk +lgM +dgN qhF ffx umT gFx eDF -fvw -tEJ -rMN -qIi -tEJ -cTw +nts +gGg +lHP +xuV +gGg +lLm xxk toU -cto +kQk xxk mCF mCF @@ -51980,8 +45241,8 @@ aOg xGV wOR xxk -cto -etv +kQk +iBZ xxk ksX aOg @@ -51996,9 +45257,9 @@ aOg cty ksX ksX -cto -cto -cto +kQk +kQk +kQk ksX ksX mCF @@ -52024,51 +45285,51 @@ wUU "} (92,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -pAX -lTR -lTR -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -nFD -lTR -lTR -lTR -lTR -lTR -lTR -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +dgH +eLH +ovX +dgH +dgH +dgH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH +dgH +dgH +eLH +eLH +eLH +eLH +jTE +lLK +wax +nhy +dgH +dgH +dgH +dgH +dgH +dgH +dgH stl -caD -lTR +esr +dgH scL oGv hXR @@ -52076,19 +45337,19 @@ oGv pfd qgm dXg -lTR -lTR -lTR +dgH +dgH +dgH scL oGv cwE cwE -hsl -hsl -hyr -hyr +teY +teY +nYI +nYI sXb -esO +hjZ dYp wZF fjH @@ -52097,58 +45358,58 @@ wZF jzZ dYX sXb -ePB -hvO -mrd -ogq +xXh +pgN +ofs +iOp riJ -spP -fdw +wXH +mJR xtZ qRy eMi qRy moK -hPD -uQH +noO +mQd riJ -aQc -qqA -qqA +ncQ +cLS +cLS pbt iLD pbt pbt -cLY +pOp iLD iLD pbt pbt iLD xNR -wjh +hCj vNu vNu oWs qFZ -syL -syL -clD +oFO +oFO +lSN ydx gFx aFg umT gFx eDF -wLF -tEJ -sgq -mAB -tEJ -cTw -cto +nwP +gGg +vAp +dTY +gGg +lLm +kQk toU -cto +kQk xxk mCF jdm @@ -52162,9 +45423,9 @@ aOg aOg iHE xxk -cto -etv -cto +kQk +iBZ +kQk xxk mCF mCF @@ -52178,9 +45439,9 @@ aOg aOg cty cqZ -cto -cto -cto +kQk +kQk +kQk ksX mCF mCF @@ -52206,71 +45467,71 @@ wUU "} (93,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -pAX -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -oLZ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -aTY -lTR -lTR -lTR -lTR -uoh -lTR -lTR -lTR -cpF -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +dgH +eLH +eLH +ovX +eLH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +wax +eLH +eLH +eLH +eLH +eLH +eLH +dgH +jTE +lLK +wax +rtk +dgH +dgH +dgH +dgH +goQ +dgH +dgH +dgH +wZU +dgH scL rMb oGv oGv oGv lnO -lTR -lTR -lTR +dgH +dgH +dgH dXg scL hXR cwE cwE -hsl -hsl +teY +teY giN -hyr +nYI sXb -tzw +wTF aJP svH kBo @@ -52279,54 +45540,54 @@ ybm lWf jzZ mRq -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN urd ara ara ara nZk -hPD -uQH +noO +mQd pVN -aQc -qqA -pZD +ncQ +cLS +teM iLD -lQO -cvW -pYV -iJk -foz -juL -iBz -tPS -lUT +mkZ +tZJ +nHF +ixB +bja +ecj +dQZ +sao +jDz xNR trC yhy sJq oEc tMY -dKm -xxo -uLP +lzb +wqx +ijs xNR nIF qeh otO qhF tjO -cwe -wpm -vDC -tEJ -tEJ +gHT +vgb +qgc +gGg +gGg pKs xxk toU @@ -52344,9 +45605,9 @@ hoC hoC owM xxk -cto -etv -cto +kQk +iBZ +kQk xxk meS aOg @@ -52360,9 +45621,9 @@ aOg aOg cty cqZ -cto -cto -cto +kQk +kQk +kQk ksX mCF mCF @@ -52388,51 +45649,51 @@ wUU "} (94,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +dgH +rlF +eLH +eLH +eLH +eLH +eLH +dgH +eLH +eLH dXg -qwQ -qwQ -eDY -tNy -oLZ -qwQ -aqh -lTR -qwQ -qwQ -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -aTY -lTR -lTR +eLH +eLH +jTE +lLK +wax +eLH +kCv +dgH +eLH +eLH +dgH +eLH +jTE +lLK +wax +dgH +dgH +rtk +dgH +dgH dXg -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH scL oGv oGv @@ -52440,19 +45701,19 @@ hXR oGv pfd qgm -lTR -lTR -lTR +dgH +dgH +dgH scL oGv cwE bgE yeJ giN -hyr +nYI iSW mRq -tzw +wTF aJP ogj akk @@ -52461,34 +45722,34 @@ akJ lWf jzZ mRq -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN urd hAh ara ara nZk -hPD -uQH +noO +mQd pVN -aQc -qqA -qqA +ncQ +cLS +cLS iLD -wno -jCr -iNE -xbA -jCr -jCr -iNE -jCr -bLy +xLp +qUJ +sCM +vEh +qUJ +qUJ +sCM +qUJ +ilN xNR xNR xNR @@ -52504,14 +45765,14 @@ eUH kIb gFx eDF -fFm -eIT -xdz -yeG -rMN +sCI +udN +leo +gSm +lHP bkM rXS -etv +iBZ xxk xxk mCF @@ -52526,9 +45787,9 @@ cty cty owM ksX -cto -etv -cto +kQk +iBZ +kQk xxk mCF aOg @@ -52542,9 +45803,9 @@ mCF aOg hoC cqZ -cto +kQk mxB -cto +kQk ksX mCF mCF @@ -52570,61 +45831,61 @@ wUU "} (95,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +dgH +eLH +eLH +eLH +eLH +dgH +dgH +dgH +dgH dXg -qwQ -qwQ -eDY -tNy -oLZ -pAX -qwQ -qwQ -qwQ -uoh -lTR -qwQ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF +eLH +eLH +jTE +lLK +wax +ovX +eLH +eLH +eLH +goQ +dgH +eLH +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH +wZU gVO jaF uTu -tmC +rjL oGv -dOS +nlx hXR oGv lnO -lTR -lTR -lTR +dgH +dgH +dgH scL oGv cwE @@ -52634,7 +45895,7 @@ iks giN iSW mRq -tzw +wTF jzZ oos fGM @@ -52643,43 +45904,43 @@ oos jzZ jzZ mRq -xWY -tam -lss -rHv -mXx -tpL -khb +rFa +nCc +bwE +rap +lsF +fwQ +fXN urd hOv wYa god nZk -hPD -mZi -mXx -aQc -qqA -qqA +noO +syN +lsF +ncQ +cLS +cLS iLD -nRy -qlW -gPY -uYF -hen -sJx -kZn -qvQ -bLy +mKL +cqr +wHY +lcR +gFi +oWy +oMB +rsF +ilN ydx bAE kIg nmC cio agi -hDk -aZb -rAy +src +eMx +plu xNR fvd aFg @@ -52693,9 +45954,9 @@ eDF gFx bkM aFt -etv -cto -cto +iBZ +kQk +kQk xxk ksX ksX @@ -52708,9 +45969,9 @@ ksX ksX eEd eEd -iaM -hbi -iaM +gwX +gcu +gwX eEd mCF mCF @@ -52724,8 +45985,8 @@ mCF mCF mCF cqZ -cto -cto +kQk +kQk xxk xxk jdm @@ -52752,49 +46013,49 @@ wUU "} (96,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +eLH +eLH +dgH +eLH +eLH +eLH +eLH dXg dXg -lTR -qwQ -pAX -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy -oLZ -lTR -lTR -lTR +dgH +eLH +ovX +jTE +lLK +wWr +xud +xud +xud +xud +xud +xud +xud +vWZ +lLK +wax +dgH +dgH +dgH dXg dXg dXg -lTR -lTR -lTR +dgH +dgH +dgH scL hXR oGv @@ -52804,65 +46065,65 @@ oGv oGv oGv lnO -lTR -lTR +dgH +dgH gVO lzD upH cwE bgE -fuh -kWR +jZp +qxq iSW iSW sXb -ibo -tzw -ejK -keE -fpe -tzw -tzw -tzw +dtF +wTF +jqZ +xpI +dwk +wTF +wTF +wTF sXb -ntw -hvO -bih -rHv -hPD -tpL -khb +esg +pgN +byB +rap +noO +fwQ +fXN urd pku ara xHt nZk -hPD -mZi -hPD -aQc -qqA -qqA +noO +syN +noO +ncQ +cLS +cLS iLD -nRy -vPj -cHR -uYF -hen -hWA -nBD -qvQ -uXX +mKL +nIT +cnb +lcR +gFi +swF +ezk +rsF +oiu xNR rau vNu vNu iAc qFZ -hPd -hPd -hPd -lvG +aZV +aZV +aZV +tRh gFx aFg umT @@ -52873,24 +46134,24 @@ gFx sgz qhF qhF -qnN -mUP +ouu +ekD nDl -mUP +ekD qMW qMW -mUP -mUP -mUP +ekD +ekD +ekD qMW -mUP -mUP +ekD +ekD qMW -mUP -mUP -mUP -mUP -mUP +ekD +ekD +ekD +ekD +ekD pGP xxk eEd @@ -52906,9 +46167,9 @@ mCF mCF mCF ksX -cto -cto -cto +kQk +kQk +kQk xxk mCF mCF @@ -52934,49 +46195,49 @@ wUU "} (97,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -uYJ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +rlF +eLH +eLH +eLH +eLH +eLH +dgH dXg dXg -qwQ -qwQ -lTR -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy -oLZ -lTR -lTR -lTR +eLH +eLH +dgH +jTE +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lLK +wax +dgH +dgH +dgH dXg dXg -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH scL oGv oGv @@ -52986,15 +46247,15 @@ oGv oGv hXR lnO -lTR -lTR +dgH +dgH scL oGv hXR cwE -lat -hyr -xYC +ryy +nYI +cKl dPR giN sXb @@ -53007,44 +46268,44 @@ sXb mRq mRq xzj -xWY -hvO -bih -rHv +rFa +pgN +byB +rap pVN -cMf -khb +xBW +fXN xtZ vcc ara gfA eTP -hPD -uQH +noO +mQd pVN -aQc -qqA -hwa +ncQ +cLS +rit iLD -wno +xLp pbt pbt -uYF -hen +lcR +gFi pbt pbt -qvQ -bLy +rsF +ilN ydx kxW pbd mnm vNu wkM -mrR -mPI -bTm -snP +tvf +esk +lgM +dgN qhF ffx umT @@ -53055,25 +46316,25 @@ aZv vZm gFx gFx -cTw -cto -cto +lLm +kQk +kQk mxB -cto -cto +kQk +kQk xxk -cto -cto -cto -cto -kul -cto +kQk +kQk +kQk +kQk +xSd +kQk xxk -cto -cto -cto -cto -etv +kQk +kQk +kQk +kQk +iBZ mxB ksX cty @@ -53088,9 +46349,9 @@ mCF mCF mCF ksX -cto -cto -cto +kQk +kQk +kQk ksX mCF mCF @@ -53116,116 +46377,116 @@ wUU "} (98,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +dgH dXg -qwQ -qwQ -lTR -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy -oLZ -daS -lTR -lTR -lTR +eLH +eLH +dgH +jTE +lLK +tlB +boA +boA +boA +boA +boA +boA +boA +shs +lLK +wax +aBZ +dgH +dgH +dgH dXg -lTR -aTY -lTR -lTR +dgH +rtk +dgH +dgH scL oGv hXR oGv -tgE +mxa hXR gJy oGv lnO -lTR -lTR +dgH +dgH scL vcz hXR cwE -leU -hyr -hyr -nRH -nRH -nRH -nRH -nRH -nRH -vqZ -hyr -aXm -hyr -hyr +rfe +nYI +nYI +vJd +vJd +vJd +vJd +vJd +vJd +vRj +nYI +mfu +nYI +nYI qAp -xWY -xuW -bih -rHv +rFa +oCH +byB +rap pVN -cMf -khb +xBW +fXN xKv gWd vfj qBy fbQ -hPD -uQH +noO +mQd pVN -aQc -qqA -bft +ncQ +cLS +jQW pbt -kPj -xFO -stU -uYF -hen -jCr -jCr -qvQ -cGd +qdr +rnH +uPg +lcR +gFi +qUJ +qUJ +rsF +yiX xNR ybL vNu pRs vNu vzH -bNt -syL -syL +dSP +oFO +oFO ydx gFx aFg @@ -53238,25 +46499,25 @@ bpT vZs lWJ bkM -dIK -cto -cto -cto -cto -cto -cto -cto -cto -eBT -bnc -fhV -lYi -oeO -cto +iKK +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +vLA +muL +hjb +tDZ +gPa +kQk ubJ -cto -eJS -owk +kQk +rDY +syF ksX cty cty @@ -53271,9 +46532,9 @@ aOg mCF xxk xxk -cto -cto -cba +kQk +kQk +olx vOo mCF mCF @@ -53298,49 +46559,49 @@ wUU "} (99,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -vEg -qwQ -qwQ -eDY -tNy -nhY -rlI -rlI -rlI -rlI -bvF -rlI -hAI +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +rlF +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +dgH +rgQ +eLH +eLH +jTE +lLK +vWC +xud +xud +xud +xud +abk +xud +naa qDr -tNy -oLZ -lTR -lTR -lTR +lLK +wax +dgH +dgH +dgH gVO jaF qgm -lTR -lTR -lTR +dgH +dgH +dgH eGX hKK sRs @@ -53350,64 +46611,64 @@ oGv jSX hKK fLY -lTR -lTR +dgH +dgH scL hXR oGv cwE -cTV -hyr -sZe -hyr +swM +nYI +gTY +nYI iSW giN iSW iSW giN -vAz +roL giN giN -rbd -hyr +qxj +nYI jrq -xWY -hvO -bih -euM +rFa +pgN +byB +trq fkR -oBG -ufV -ufV -ufV -rIN -ufV -ufV -ufV -lTb +snR +nzy +nzy +nzy +cui +nzy +nzy +nzy +sbG fkR -pvs -qqA -gYg +uOj +cLS +ink pbt -qXn -hiD -hiD -fQE -oFq -hiD -hiD -oFq -nzr +ceP +rYe +rYe +oMm +nVc +rYe +rYe +nVc +nSl xNR pYx sQs rSX aIu owY -klP -ryG -cIP +fEU +jOT +nTT xNR nWS aFg @@ -53420,13 +46681,13 @@ oKo laa gFx pKs -ghs -cto -cto -gLo -oEX -ghs -cto +hXa +kQk +kQk +eXL +paS +hXa +kQk bkM bkM pKs @@ -53436,9 +46697,9 @@ pKs pKs bkM aFt -cto -etv -cto +kQk +iBZ +kQk ksX cty cty @@ -53453,9 +46714,9 @@ aOg mCF xxk xxk -cto -cto -cba +kQk +kQk +olx mCF mCF mCF @@ -53480,105 +46741,105 @@ wUU "} (100,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +lWa gYh gYh tSK eQm gYh rHE -uKY -eDY -tNy -oLZ -lTR -aTY -lTR +vvZ +jTE +lLK +wax +dgH +rtk +dgH scL vGn lnO -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH scL hXR oGv oGv lnO -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH eGX sRs oGv cwE bgE -rAj -bGe -hyr +rCv +arc +nYI iSW -cZZ -iJa +gyU +elo nKy pth uBV -jjN +rRo giN -hyr -hyr +nYI +nYI qAp -xWY -hvO -bih -rHv +rFa +pgN +byB +rap fkR fkR pVN pVN pVN -xDy +nPq pVN pVN pVN fkR fkR -ojJ -kEV -iRZ +eCt +fcC +rQG pbt iLD -jCr -fiv +qUJ +bTI uWA iLD -jCr -fiv +qUJ +bTI iLD iLD xNR @@ -53591,7 +46852,7 @@ xNR ydx xNR xNR -ldJ +nox aFg umT scD @@ -53610,17 +46871,17 @@ bkM pKs bkM bkM -gIB -uLY -oFd -cLD -oFd -mcs -kus +gJq +sTE +ayi +aoK +ayi +gYq +mrr aFt -wOC -etv -cto +fYr +iBZ +kQk ksX cty cty @@ -53634,9 +46895,9 @@ phA aOg mCF ksX -cto -cto -bng +kQk +kQk +qlQ ksX mCF mCF @@ -53662,69 +46923,69 @@ wUU "} (101,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +dgH +eLH dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -lTR -eDY -tNy -ctE +eLH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +eLH +dgH +jTE +lLK +lWa gYh aDv opd iEe -diK +oVI rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR +wax +jTE +lLK +wax +dgH +dgH +dgH eGX hKK fLY -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH scL oGv hXR oGv lnO -lTR -lTR -lTR -nFD -aTY +dgH +dgH +dgH +nhy +rtk scL oGv cwE bgE -jEZ -cjf -jqr -vEM +vyx +jNk +nsM +upF bgE pGs pGs @@ -53735,42 +46996,42 @@ iSW uXR pGs pGJ -gnx -hvO -bih -mux -pot -kmb -mvI -mvI -mvI -wVE -mvI -mvI -pot -fJb -mvI -wVE -mvI -mvI -mvI -uLY -pGS -pGS -ihn -uLY -pGS -pGS -uLY -mvI -mvI -mvI -mvI -mvI -wmC -aED -pie -guE +bxS +pgN +byB +hJJ +bor +dPn +csj +csj +csj +hTq +csj +csj +bor +hHe +csj +hTq +csj +csj +csj +sTE +iGi +iGi +tlK +sTE +iGi +iGi +sTE +csj +csj +csj +csj +csj +vtj +lVK +deb +jPu qus dUS gFx @@ -53783,25 +47044,25 @@ gFx vZm gFx gFx -rMN -lMv -rMN -mvI -mvI -wmC -mvI -uLY +lHP +pyu +lHP +csj +csj +vtj +csj +sTE pKs -iTF -tEJ -tEJ -tEJ -tEJ -tEJ -gbG +dWn +gGg +gGg +gGg +gGg +gGg +vRn upL -cto -etv +kQk +iBZ xxk ksX cty @@ -53816,9 +47077,9 @@ aOg aOg mCF cqZ -cto -cto -cto +kQk +kQk +kQk xxk mCF aOg @@ -53844,61 +47105,61 @@ wUU "} (102,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +aBZ +eLH dXg -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +eLH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +jTE +lLK +lWa gYh dlh gLw sKF sKF rHE -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -cpF -lTR -lTR +wax +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH +wZU +dgH +dgH scL oGv -xzc +riF oGv lnO -daS -lTR -lTR -lTR -lTR +aBZ +dgH +dgH +dgH +dgH scL oGv foQ @@ -53917,42 +47178,42 @@ pGs pGs pGs pGJ -xWY -hvO -bih -hvO -tEJ -rtV -tEJ -tEJ -tEJ -uXw -tEJ -tEJ -tEJ -rwV -tEJ -uXw -tEJ -tEJ -hgB -tEJ -aLn -tEJ -uXw -tEJ -tEJ -tEJ -tEJ -qDt -xAO -tvv -tEJ -tEJ -tEJ -oMl -oKx -bGy +rFa +pgN +byB +pgN +gGg +jAK +gGg +gGg +gGg +eRC +gGg +gGg +gGg +fvU +gGg +eRC +gGg +gGg +rkO +gGg +gdI +gGg +eRC +gGg +gGg +gGg +gGg +xgB +nVZ +qmq +gGg +gGg +gGg +rOP +cvy +sPN tak pJs umT @@ -53965,26 +47226,26 @@ umT kTs umT umT -oMl -tEJ -bGy -aLn -tEJ -tEJ -tEJ -rMN -etf -rMN -tEJ -tEJ -tEJ -hgB -tEJ -gbG +rOP +gGg +sPN +gdI +gGg +gGg +gGg +lHP +mIZ +lHP +gGg +gGg +gGg +rkO +gGg +vRn upL -fky -etv -cto +aSE +iBZ +kQk ksX cty cty @@ -53998,9 +47259,9 @@ aOg mCF hoC cqZ -cto -cto -cto +kQk +kQk +kQk xxk aOg aOg @@ -54026,70 +47287,70 @@ wUU "} (103,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +eLH +eLH dXg -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -ctE +eLH +eLH +eLH +dgH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +lWa rHE rjM gLw anA jUB ipi -oLZ -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -uoh -lTR +wax +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +goQ +dgH stl -cpF +wZU gVO uTu -rKM +gNy oGv oGv lnO -aTY -lTR -lTR -lTR -lTR +rtk +dgH +dgH +dgH +dgH scL oGv rMb oGv oGv -vss -vss +lfN +lfN gJy -dOS +nlx pGs pGs pGs @@ -54099,42 +47360,42 @@ pGs pGs pGs pGJ -fQr -hvO -pXp -oZw -oGc -ngm -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -lEc -cit -eAJ -oGc -oGc -eAJ -oGc -oGc -oGc -eAJ -oGc -oGc -oGc -oGc -kyr -eVU -sOj -oGc -oGc -oGc -bNi -lEc -tSg +wRt +pgN +ktq +kPc +stz +ckp +stz +stz +stz +rPk +stz +stz +stz +qbm +eam +rPk +stz +stz +rPk +stz +stz +stz +rPk +stz +stz +stz +stz +xGD +vIp +qaf +stz +stz +stz +stf +qbm +mpz hNb fjC hNb @@ -54147,26 +47408,26 @@ hNb rBa hNb hNb -jfD -oGc -tSg -oGc -oGc -oGc -oGc -cug -cug -cug -oGc -oGc -oGc -ezW -tEJ -gbG +nxS +stz +mpz +stz +stz +stz +stz +cnT +cnT +cnT +stz +stz +stz +cfM +gGg +vRn upL -cto -etv -cto +kQk +iBZ +kQk ksX ksX ksX @@ -54180,9 +47441,9 @@ mCF mCF mCF cqZ -cto -cto -cto +kQk +kQk +kQk xxk aOg aOg @@ -54208,50 +47469,50 @@ wUU "} (104,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -bLl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +jTE +lLK +pVB rHE ijO gLw hso ijO rHE -wJl -mEy -tNy -oLZ -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +wWr +vWZ +lLK +wax +dgH +goQ +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH scL oGv oGv @@ -54260,16 +47521,16 @@ oGv pfd jaF oAC -lTR -lTR -lTR +dgH +dgH +dgH eGX hKK sRs oGv -kin -vss -vss +pSE +lfN +lfN oGv hXR pGs @@ -54281,42 +47542,42 @@ pGs pGs pGs pGJ -arg -oMs -qPs -lzu -rBP -afx -rBP -rBP -rBP -rBP -rBP -gvE -rBP -qQN -fjU -rBP -rBP -rBP -gvE -uLY -rBP -rBP -rBP -rBP -rBP -dYy -rMN -pGi -poU -dYy -hUx -hUx -hUx -cNF -oBQ -rMN +llM +alP +jAE +fAz +eMq +cTz +eMq +eMq +eMq +eMq +eMq +vqA +eMq +ufL +wkJ +eMq +eMq +eMq +vqA +sTE +eMq +eMq +eMq +eMq +eMq +wta +lHP +uCH +dEA +wta +aWz +aWz +aWz +wjG +epE +lHP gFx vZm lEM @@ -54329,30 +47590,30 @@ lFA wba mTD gFx -mXV -qZR -oDz -gFt -rBP -gvE -rBP -uLY +kcW +ksQ +cvJ +sYA +eMq +vqA +eMq +sTE pKs -uLY -uLY -uLY -uLY -iKa -xAO -gmT +sTE +sTE +sTE +sTE +agY +nVZ +cBS upL -cto -etv +kQk +iBZ xxk ksX -cFe -cFe -cFe +fLK +fLK +fLK ksX iFb iFb @@ -54361,10 +47622,10 @@ mCF mCF mCF mCF -cba -cto -cto -cto +olx +kQk +kQk +kQk ksX aOg aBK @@ -54390,68 +47651,68 @@ wUU "} (105,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -lTR -eDY -vss -vss +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +dgH +jTE +lfN +lfN gLw sKF gLw gLw gLw gLw -vss -vss -tNy -oLZ -lTR -lTR -lTR -lTR -daS -lTR -lTR -lTR -lTR -lTR +lfN +lfN +lLK +wax +dgH +dgH +dgH +dgH +aBZ +dgH +dgH +dgH +dgH +dgH scL oGv hXR oGv -tmC +rjL oGv oGv lnO -lTR -lTR -daS -lTR -lTR +dgH +dgH +aBZ +dgH +dgH scL hXR oGv -vss -gMi +lfN +ene oGv oGv pGs @@ -54463,22 +47724,22 @@ pGs pGs pGs juW -wUj -bLN -viP -wUj +oLg +bKZ +bcv +oLg juW nTG nTG nTG lNb -vqd +xrD lNb nTG nTG nTG pNf -vqd +xrD lNb nTG nTG @@ -54489,15 +47750,15 @@ wVf sPs wVf wVf -qUf -uIH -jQg +bDR +gEe +ecu wVf -qhZ +uvP wVf -qhZ +uvP wVf -qhZ +uvP wVf wjV abE @@ -54523,30 +47784,30 @@ pYn kgw kgw pYn -uLY -pEE -tEJ -buH +sTE +qkx +gGg +qUR aFt -cto +kQk toU -cto -cto -qYE -cto -cto -cto -ghs +kQk +kQk +oUK +kQk +kQk +kQk +hXa iFb cty cty mCF jdm mCF -cba +olx xxk xxk -cto +kQk ksX mCF aOg @@ -54572,70 +47833,70 @@ wUU "} (106,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +aBZ +eLH +dgH +eLH +eLH +eLH +eLH +eLH +dgH dXg dXg -qwQ -eDY -vss -vss +eLH +jTE +lfN +lfN gLw gLw mhf sKF gLw gLw -vss -vss -tNy -wJl -rlI -rlI -rlI -rlI -lTR -rlI -lTR -lTR -lTR -lTR +lfN +lfN +lLK +wWr +xud +xud +xud +xud +dgH +xud +dgH +dgH +dgH +dgH scL oGv oGv ibs -lQW +uMu gux -kGD +bzi kgm -mQG -lTR -lTR -aTY -lTR +fBh +dgH +dgH +rtk +dgH scL oGv nee -vss -gMi +lfN +ene oGv -qFe +vdK oGv pGs pGs @@ -54645,23 +47906,23 @@ pGs pGs pGs juW -faP -ftF -bEX -pnL +awQ +qVM +uJD +lhr juW -gDh -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -gDh -uEc -viK -xJZ -xJZ +uSh +qiF +qiF +qiF +qiF +qiF +qiF +uSh +klD +eGG +qiF +qiF wqb kBZ hPj @@ -54671,54 +47932,54 @@ qyk jBw hlK wVf -gwG -pJn -krP +oMf +uIw +eqs wVf -kof -cHf -tGA -cHf -gwO +kNj +wFK +waY +wFK +nLq wVf -pBS -viK -xJZ -yeF +cMg +eGG +qiF +fCm cdb cdb wjV cdb cdb -bbK +mii cdb -rRq -usB +fyY +dAW pYn -qTz -nWs -nWs -sre -nWs +iTo +tJb +tJb +wXJ +tJb pYn iIt xFE cBq pYn -tVl -fPn -aBB -tuL +scX +wwE +aId +hCS mzt -mUP -chE -mUP -mUP -mUP -uVy -mUP -qWw -cto +ekD +ebw +ekD +ekD +ekD +dkT +ekD +fHj +kQk iFb cty cty @@ -54726,9 +47987,9 @@ hoC mCF jdm ksX -cto -cto -cto +kQk +kQk +kQk xxk mCF aOg @@ -54754,68 +48015,68 @@ wUU "} (107,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH dXg -lTR +dgH dXg -qwQ -eDY -tNy -aJD +eLH +jTE +lLK +fPK eQm jFt qCE abu gLw eQm -qLf -eha -vss -vss -vss -vss -vss -vss +tlB +shs +lfN +lfN +lfN +lfN +lfN +lfN stl -lTR -lTR -lTR -lTR -cpF +dgH +dgH +dgH +dgH +wZU eGX sRs lsN hXR ibs eFB -kGD +bzi mnz -lTR -lTR -lTR +dgH +dgH +dgH gVO jaF uTu oGv oGv -vss -vss +lfN +lfN oGv oGv oGv @@ -54827,23 +48088,23 @@ juW juW juW juW -xzr -eFJ -trh -qdk -wUj -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -viK -xJZ -xJZ +iuF +ebx +jcw +seJ +oLg +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +eGG +qiF +qiF wqb kBZ hPj @@ -54853,54 +48114,54 @@ ioc vqY idw sPs -gwG -pJn -krP -qhZ -gwG -xOo -xOo -xOo -nHA -qhZ -uqw -viK -xJZ -xJZ -xJZ -ccU -sCA -aKk -xJZ -xJZ +oMf +uIw +eqs +uvP +oMf +kFw +kFw +kFw +luv +uvP +tDj +eGG +qiF +qiF +qiF +vpj +gQi +dqF +qiF +qiF cdb -wMn -viK +cAz +eGG lhJ -wot -jvh -jvh -jvh -wot +oWc +hlf +hlf +hlf +oWc pYn wkq wCE sMn rrp -uLY -sJZ -tEJ -uLY +sTE +iga +gGg +sTE aFt -xZv -mPT -cto -cto -cto -cto -cto +tZz +gXH +kQk +kQk +kQk +kQk +kQk toU -cto +kQk cty cty cty @@ -54909,8 +48170,8 @@ mCF mCF xxk xxk -cto -cto +kQk +kQk rgg mCF mCF @@ -54936,96 +48197,96 @@ wUU "} (108,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -daS -lTR -qwQ -qwQ -qwQ -lTR -qwQ -lTR -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +aBZ +dgH +eLH +eLH +eLH +dgH +eLH +dgH +eLH +dgH dXg -lTR -qwQ -eDY -tNy -ctE +dgH +eLH +jTE +lLK +lWa eQm gLw saQ gLw mhf eQm -oLZ -eDY -tNy -qLf -bJV -bJV -bJV -lTR -bJV -lTR -lTR -lTR -cpF -lTR -lTR +wax +jTE +lLK +tlB +boA +boA +boA +dgH +boA +dgH +dgH +dgH +wZU +dgH +dgH scL oGv -vss +lfN oGv hwL -pun +jym oTE -lTR -lTR -lTR +dgH +dgH +dgH scL lsN oGv -dOS +nlx nee -vss -gMi +lfN +ene oGv hXR oGv hXR pGs juW -wGs -oVm -fLZ -esB +oXG +sOp +ybR +kGH juW -xzr -hus -wuR -rVS -kSN -lVc -lVc -lVc -lVc -lVc -uTq -lVc -lVc -lVc -qRP -xJZ -xJZ +iuF +sMX +kxH +gDV +gSO +dCb +dCb +dCb +dCb +dCb +qNi +dCb +dCb +dCb +uOe +qiF +qiF wqb kBZ wVf @@ -55035,44 +48296,44 @@ jQB psb idw sPs -gwG -pJn -krP +oMf +uIw +eqs wVf -vyX -pEv -xOo -iIL -qDs +bQY +qZN +kFw +xvo +jDq wVf -qvO -viK -xJZ -xJZ -xJZ -xJZ -jew -iXR -xJZ -xJZ -cYB -gDh -viK +xaE +eGG +qiF +qiF +qiF +qiF +aTd +eIF +qiF +qiF +gSQ +uSh +eGG kgw -nXB -jvh -mPf -qdd -dhp +joY +hlf +wvv +dAf +avK pYn wic pqj ydI jff -uLY -pEE -tEJ -uLY +sTE +qkx +gGg +sTE bkM pKs bkM @@ -55080,8 +48341,8 @@ bkM bkM pKs bkM -cto -etv +kQk +iBZ xxk cty cty @@ -55090,9 +48351,9 @@ cty mCF mCF xxk -cto -cto -cto +kQk +kQk +kQk ksX hoC mCF @@ -55118,96 +48379,96 @@ wUU "} (109,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -qwQ -qwQ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +dgH +eLH +eLH +eLH +dgH dXg -lTR -lTR -qwQ -lTR -lTR -qwQ -eDY -tNy -ctE +dgH +dgH +eLH +dgH +dgH +eLH +jTE +lLK +lWa gYh xuJ fgW sKF trB gYh -eBm -eDY -tNy -oLZ -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR -lTR +eUe +jTE +lLK +wax +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH +dgH scL oGv -vss -vss +lfN +lfN oGv oGv lnO -lTR -lTR -lTR +dgH +dgH +dgH scL oGv oGv oGv hXR -vss -gMi +lfN +ene oGv oGv oGv eCg ltB szp -qdk -eFJ -cgj -iPH +seJ +ebx +koW +emh szp -xzr -eFJ -trh -qdk -wUj -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -mvA -xJZ -xJZ +iuF +ebx +jcw +seJ +oLg +dOh +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +cMl +qiF +qiF wqb kBZ wVf @@ -55217,54 +48478,54 @@ idw eRD gyX eTb -mnc -xMq -krP +meW +dbw +eqs wVf wVf xvF -aiR -qhZ +vHm +uvP wVf wVf -okI -lab -lVc -lVc -lVc -jfw -okJ -gjz -lVc -iFZ -xJZ -xJZ -viK +qdU +gPN +dCb +dCb +dCb +rBk +ftq +lHL +dCb +gPI +qiF +qiF +eGG pYn -diQ -hhW -tKI -doO -bBo +pBD +fRV +iuW +shN +wVG bMf rPD bTA iOQ qOF -orT -iKa -tvv -uLY +eqJ +agY +qmq +sTE pKs -hrI -pXG +hoE +eUn bkM -vAR -dQV +wUK +gzG bkM -cto -etv -cto +kQk +iBZ +kQk cty cty cty @@ -55272,9 +48533,9 @@ cty cty mCF xxk -cto -cto -qEG +kQk +kQk +fan ksX cty hoC @@ -55300,96 +48561,96 @@ wUU "} (110,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +rlF +dgH +eLH +eLH +eLH +eLH +dgH +eLH +eLH +eLH +eLH dXg -qwQ -eDY -tNy -ctE +eLH +jTE +lLK +lWa eQm gyE xQJ uVR saQ eQm -oLZ -eDY -tNy -oLZ +wax +jTE +lLK +wax dXg dXg -lTR -uoh -lTR -lTR -lTR -lTR -lTR -lTR -lTR +dgH +goQ +dgH +dgH +dgH +dgH +dgH +dgH +dgH scL oGv -vss -vss +lfN +lfN jSX hKK fLY -lTR -lTR -daS +dgH +dgH +aBZ scL oGv -rKM +gNy hXR oGv -vss -vss +lfN +lfN hmR oGv oGv oGv oDU szp -caV -noC -ktN -qSj -nGE -qSj -ktN -che -qdk +lpp +cfl +fHR +vHb +rKd +vHb +fHR +oJd +seJ juW wqb -crC -xJZ +kYf +qiF ryD -xJZ +qiF ryD joV wqb wqb -viK -xJZ -tBm +eGG +qiF +tcY wqb kBZ wVf @@ -55399,29 +48660,29 @@ idw idw idw wVf -tCM -xMq -fqY +eQJ +dbw +bLn wVf -qPk -uFJ -xOo -uFJ -eMD +oeA +fsn +kFw +fsn +pxi wVf wVf wVf -qhZ +uvP wVf -qhZ +uvP wVf -vOr -qhZ +hng +uvP wVf -viK -xJZ -xJZ -viK +eGG +qiF +qiF +eGG pYn pYn kgw @@ -55433,20 +48694,20 @@ nto pqj ydI pYn -jDW -uVY -sIU -uLY +loj +cGX +hTv +sTE vke -iad -fkj +ppB +mtg pKs -tXF -uhD +pfh +xFN bkM -rmr -etv -cto +dLy +iBZ +kQk iFb cty cty @@ -55454,9 +48715,9 @@ cty cty cty cqZ -ghs +hXa xxk -cto +kQk ksX cty cty @@ -55482,96 +48743,96 @@ wUU "} (111,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -eDY -tNy -ctE +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +dgH +eLH +dgH +eLH +dgH +eLH +eLH +eLH +eLH +eLH +dgH +eLH +jTE +lLK +lWa gYh eQm gYh gYh eQm gYh -uKY -eDY -tNy -oLZ +vvZ +jTE +lLK +wax dXg -lTR -nFD -lTR -lTR -lTR +dgH +nhy +dgH +dgH +dgH dXg -eDY -vss -caD -lTR +jTE +lfN +esr +dgH scL oGv -dOS +nlx oGv pfd qgm -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH scL hXR oGv -vss -inN -abK -abK -inN -inN -inN -inN -inN -tmm -qdk -eFJ -eFJ -xzr +lfN +jJI +gIp +gIp +jJI +jJI +jJI +jJI +jJI +hDT +seJ +ebx +ebx +iuF szp -xzr -eFJ -trh -qdk +iuF +ebx +jcw +seJ juW kBZ kBZ joV keY -xJZ +qiF ryD ryD ryD ryD -viK -xJZ -wXu +eGG +qiF +iQi wqb kBZ wVf @@ -55581,54 +48842,54 @@ vPi pBo wVf wVf -hXv -pJn -krP -qhZ -gwG -xOo -cvX -xOo -nHA +rWD +uIw +eqs +uvP +oMf +kFw +khQ +kFw +luv kMf -fjx -xhs -abl +abP +tXU +tBQ wVf -sUm -jZw -xMq -vnU -qhZ -viK -xJZ -mdj -viK -bnf -xJZ -xJZ -uEc -xJZ -iGM +phY +qBk +dbw +wqP +uvP +eGG +qiF +ncT +eGG +qYf +qiF +qiF +klD +qiF +uBr pYn -jjl +ruO nkF xGJ ddz -tuL -xNb -mzf -hfo +hCS +uYH +jWt +kPo veW -oam -nCE +dVA +tAM wWx -vqw -hNc +bGF +hul bkM -cto -etv -cto +kQk +iBZ +kQk iFb cty cty @@ -55636,9 +48897,9 @@ cty cty cty ksX -cto -bdc -cto +kQk +uoK +kQk ksX cty cty @@ -55664,54 +48925,54 @@ wUU "} (112,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -lTR -lTR -qwQ -lTR -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +dgH +dgH +eLH +dgH +dgH dXg -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy -lmS -bJV -bJV -bJV -qmF -bJV -bJV -nHH -eDY -tNy -oLZ -lTR -lTR -lTR -lTR +eLH +eLH +eLH +eLH +eLH +eLH +eLH +jTE +lLK +ioJ +boA +boA +boA +dAH +boA +boA +hBN +jTE +lLK +wax +dgH +dgH +dgH +dgH dXg -lTR +dgH dXg -lTR -tNy -caD +dgH +lLK +esr gVO uTu rfV -vss +lfN oGv oGv pfd @@ -55722,36 +48983,36 @@ jaF uTu oGv nee -vss +lfN oGv rMb oGv oGv -rKM +gNy oGv oGv rkH szp -caV -eFJ -eFJ -xzr +lpp +ebx +ebx +iuF szp -xzr -eFJ -trh -qdk +iuF +ebx +jcw +seJ juW kBZ kBZ kBZ -xJZ -quP +qiF +dFa ryD ryD ryD ryD -viK +eGG sHO ryD wqb @@ -55763,53 +49024,53 @@ wVf wVf wVf wVf -hJl -pJn -krP -qhZ -gwG -kXA -wrv -cNh -eOu +fPt +uIw +eqs +uvP +oMf +uWY +fpQ +eJl +wzJ kMf -apI -uoO -mnc -jJX -mnc -mnc -xMq -agJ -qhZ -lab -lVc -lVc -pfr -pbw -lVc -lVc -qjg -lVc -iFZ -pIj +rXl +vmt +meW +eoi +meW +meW +dbw +mtG +uvP +gPN +dCb +dCb +jPw +hmW +dCb +dCb +xFx +dCb +gPI +dCg pYn pYn pYn pYn -kus -gHH -uLY -uLY +mrr +sqX +sTE +sTE pKs -prY -fkj +aax +mtg pKs -tXF -rBi +pfh +vcp pKs -cto -etv +kQk +iBZ xxk owM iFb @@ -55818,8 +49079,8 @@ iFb iFb iFb ksX -cto -cto +kQk +kQk xxk ksX ksX @@ -55846,39 +49107,39 @@ wUU "} (113,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +dgH +eLH +eLH dXg dXg -lTR -lTR -qwQ -lTR -lTR -lTR -qwQ -eDY -tNy -wJl -rlI -rlI -rlI -rlI -rlI -rlI -rlI -mEy -tNy +dgH +dgH +eLH +dgH +dgH +dgH +eLH +jTE +lLK +wWr +xud +xud +xud +xud +xud +xud +xud +vWZ +lLK dyo jaF jaF @@ -55887,9 +49148,9 @@ jaF qgm dXg dXg -lTR +dgH stl -cpF +wZU scL oGv oGv @@ -55900,12 +49161,12 @@ oGv oGv oGv oGv -tmC +rjL oGv oGv -fxK -vss -vss +mRV +lfN +lfN dXg eCg iZP @@ -55914,27 +49175,27 @@ tXv tXv oGv szp -sYi -gXO -aZX -dCE +mcx +cHx +mBp +aul juW -sic -ftF -bEX -pnL +qxV +qVM +uJD +lhr juW kBZ kBZ kBZ -xJZ -xJZ +qiF +qiF ryD ryD ryD ryD -viK -xJZ +eGG +qiF ryD ryD kBZ @@ -55945,36 +49206,36 @@ vco pja dSs wVf -jhe -pJn -krP -qhZ -gwG -xOo -eqB -xOo -nHA +lcw +uIw +eqs +uvP +oMf +kFw +eqi +kFw +luv kMf -eOZ -hzm -uiy +jKj +oDs +dyy wVf -qhZ +uvP wVf -bdJ +aOI wVf wVf -gfj -fEA -xJZ -xJZ -bnf -xJZ -xJZ -xJZ -xJZ -viK -wXu +wyz +oEW +qiF +qiF +qYf +qiF +qiF +qiF +qiF +eGG +iQi vHs vHs vHs @@ -55984,32 +49245,32 @@ vHs vHs bkM bkM -cEu -fkj +uQl +mtg bkM ncX bkM bkM -wXC -etv -cto -iaM -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -cto -wXC -cto -cto -cto +rKK +iBZ +kQk +gwX +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +kQk +rKK +kQk +kQk +kQk xxk xxk mCF @@ -56028,55 +49289,55 @@ wUU "} (114,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -daS -qwQ -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +aBZ +eLH +eLH +dgH +dgH +eLH +eLH +dgH +eLH +dgH dXg -qwQ -eDY -vss -vss -vss -vss -vss -vss -vss -vss -vss -vss -tNy +eLH +jTE +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lfN +lLK hNq oGv oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH pgg oGv oGv rMb -vss +lfN oGv hXR oGv @@ -56085,9 +49346,9 @@ oGv nwq iaH kAN -nRU -nRU -nRU +kjL +kjL +kjL rQU ihY cCk @@ -56099,12 +49360,12 @@ wOO wOO wOO wOO -wkt +uOT wOO -nUf -cbq -hHE -nUf +tKT +vec +ecS +tKT wOO wOO wOO @@ -56115,48 +49376,48 @@ ryD ryD ryD ryD -lDm -xJZ +wtZ +qiF joV ryD kBZ hPj wVf dtu -rTu +nzU hkZ xRx sPs -xsi -pJn -krP +iRH +uIw +eqs wVf -gwt -hzm -xOo -hzm -vEa +cqQ +oDs +kFw +oDs +mKh wVf wVf wVf -qhZ +uvP wVf -ezZ -lyp -pJn -pBb +nbn +qeQ +uIw +mYp wVf -qhZ +uvP wVf -qhZ +uvP wVf wVf wVf wVf wVf -xJZ -viK -xJZ +qiF +eGG +qiF vHs eBs xcf @@ -56164,34 +49425,34 @@ xcf xcf cGV vHs -gaw -rBP -sJF -aWP -rBP -rBP -lZb +aAy +eMq +wdU +jmO +eMq +eMq +mFQ wMj -cto -etv -cto -iaM +kQk +iBZ +kQk +gwX mxB -cto -cto +kQk +kQk xxk wNz xxk -cto -cto -cto -cto -cto +kQk +kQk +kQk +kQk +kQk xxk xxk xxk -cto -cto +kQk +kQk xxk xxk mCF @@ -56210,66 +49471,66 @@ wUU "} (115,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -qwQ -qwQ -lTR -qwQ -qwQ -lTR -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +dgH +eLH +eLH +dgH +eLH +eLH +dgH +eLH dXg dXg -lTR -qwQ -eDY -tNy -qLf -bJV -bJV -bJV -bJV -bJV -bJV -bJV -eha -tNy +dgH +eLH +jTE +lLK +tlB +boA +boA +boA +boA +boA +boA +boA +shs +lLK hNq hXR oGv oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH scL oGv -tmC -vss +rjL +lfN oGv oGv oGv -rKM +gNy oGv hXR ihY oDB cFw -dwN -jks -jks +kLe +aFv +aFv epN cFw cFw @@ -56280,16 +49541,16 @@ pGs pGs pGs wOO -gXN -sPY -sPY -qId -iVt -pZl -qId -cud -kOS -wAE +rhq +oRs +oRs +ijT +xOk +cOe +ijT +aUE +kAT +ixJ wOO kBZ kBZ @@ -56297,8 +49558,8 @@ kBZ ryD kBZ wqb -smE -xJZ +uQq +qiF ryD jeW joV @@ -56309,36 +49570,36 @@ idw idw idw wVf -ivX -pJn -krP +lCt +uIw +eqs wVf wVf -qhZ -qto -qhZ +uvP +nEL +uvP wVf wVf -xdJ -aGX -eHB +wLU +gdg +emz wVf -unh -ydQ -eKw -mnc -ilZ -mnc -bCA -fVt +rRP +xUC +oic +meW +euF +meW +kXC +nMU wVf -ixh -xKL -baH +qit +wZK +tFH wVf -xJZ -viK -xJZ +qiF +eGG +qiF vHs imz mwD @@ -56346,35 +49607,35 @@ ezb wWd ggk vHs -xlb -xAO -uVY -tEJ -tEJ -tEJ -twm +rye +nVZ +cGX +gGg +gGg +gGg +dpC lNb -cto -etv -cto -iaM -cto -wXC -cto -cto +kQk +iBZ +kQk +gwX +kQk +rKK +kQk +kQk xxk xxk -cto -cto -gLo +kQk +kQk +eXL xxk -cto -cto -cto -cto -cto -cto -cto +kQk +kQk +kQk +kQk +kQk +kQk +kQk ksX hoC mCF @@ -56392,54 +49653,54 @@ wUU "} (116,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -lTR -lTR -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -eDY -tNy -oLZ -lTR -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +dgH +dgH +eLH +dgH +eLH +eLH +eLH +eLH +dgH +eLH +eLH +eLH +jTE +lLK +wax +dgH +eLH dXg -qwQ -qwQ -lTR +eLH +eLH +dgH dXg -eDY -tNy +jTE +lLK hNq oGv oGv hXR lsN lnO -lTR -daS -lTR -lTR -lTR +dgH +aBZ +dgH +dgH +dgH scL oGv oGv -vss +lfN gJy hXR oGv @@ -56450,9 +49711,9 @@ ihY cFw cel fSa -jks -coX -mUz +aFv +wrR +teI cFw cFw qtv @@ -56462,16 +49723,16 @@ pGs pGs pGs wOO -faX -kCA -kCA -cbq -kCA -mZI -adR -vmc -wYF -rsB +duj +vWw +vWw +vec +vWw +qTj +jPD +aHT +daL +xow wOO kBZ kBZ @@ -56479,8 +49740,8 @@ kBZ kBZ kBZ wqb -viK -xJZ +eGG +qiF ryD ryD ryD @@ -56491,53 +49752,53 @@ vqY eRD gyX ylX -mnc -xMq -oVr -uFJ -uFJ -uFJ -xOo -uFJ -rsL -uFJ -kMN -ppw -irj -rsL -diW -pJn -xOo -rwh +meW +dbw +mNp +fsn +fsn +fsn +kFw +fsn +mBh +fsn +hSn +gIo +qdQ +mBh +xrE +uIw +kFw +vqo wVf -vLU -pJn -xOo -wku -xOo -xOo -jcC +tiB +uIw +kFw +aLU +kFw +kFw +iZM wVf -xJZ -viK -oef -fEz +qiF +eGG +wgi +cxR fpY eQC kWB kWB fpY -gOe -rQk -tEJ -uXw -tEJ -tEJ -tEJ -lHH +keQ +dwK +gGg +eRC +gGg +gGg +gGg +bVw bkM mdN -bnB +wil mdN eEd ksX @@ -56556,7 +49817,7 @@ xxk xxk xxk xxk -cto +kQk ksX hoC mCF @@ -56574,66 +49835,66 @@ wUU "} (117,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy -oLZ -qwQ -lTR +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +dgH +dgH +eLH +eLH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +jTE +lLK +wax +eLH +dgH dXg dXg -qwQ -qwQ +eLH +eLH dXg -eDY -tNy +jTE +lLK hNq oGv upH oGv oGv lnO -lTR -lTR -lTR -lTR -lTR +dgH +dgH +dgH +dgH +dgH scL upH oGv hXR -vss +lfN oGv oGv jju ihY ihY -hQl +iLj vyp cFw -jks -jks -jks +aFv +aFv +aFv cFw cFw cFw @@ -56644,25 +49905,25 @@ pGs pGs pGs wOO -dwP -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -rsB -poE -tlT -nHk +neu +vWw +oTn +vec +oTn +qhy +vec +oTn +vWw +xow +eqq +oTn +sno kBZ kBZ kBZ wqb -viK -xJZ +eGG +qiF ryD ryD ryD @@ -56673,54 +49934,54 @@ lZU vqY aSt sPs -oXp -jVK -uUS -yeY -yeY -fER -yeY -yeY -haX -yeY -haX -cdy -jjE -haX -vvS -xMq -xOo -hoG -qhZ -vLU -pJn -xOo -wku -xOo -xOo -iqW +bDM +lYE +hpv +tjY +tjY +fzH +tjY +tjY +mxq +tjY +mxq +plZ +jYh +mxq +nEQ +dbw +kFw +dck +uvP +tiB +uIw +kFw +aLU +kFw +kFw +qSW wVf -xJZ -viK -oef -jgY +qiF +eGG +wgi +jpa kWB kWB nAq kWB kWB -ltA -jpM -tEJ -mQC -aBB -jjg -tEJ -rtu +nEe +tDS +gGg +nsZ +aId +cqx +gGg +fDU bkM -iaM -hbi -iaM +gwX +gcu +gwX eEd cty cty @@ -56738,7 +49999,7 @@ mCF xxk xxk xxk -ghs +hXa ksX cty mCF @@ -56756,56 +50017,56 @@ wUU "} (118,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qwQ -lTR -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -eDY -tNy +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +rlF +eLH +dgH +eLH +eLH +dgH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +jTE +lLK mIU jaF jaF jaF jaF qgm -vEg -qwQ -eDY -tNy +rgQ +eLH +jTE +lLK jdu hXR oGv oGv hXR lnO -lTR -lTR -lTR +dgH +dgH +dgH stl -lTR +dgH scL oGv oGv -jks -gkG -nRU +aFv +liX +kjL jjj vuQ ihY @@ -56815,9 +50076,9 @@ iaT cFw rSl utZ -coX +wrR cFw -dvT +vSm cFw pkj wUF @@ -56826,25 +50087,25 @@ pGs pGs pGs wOO -mNm -kCA -tlT -cbq -dNU -kDd -cbq -tlT -kCA -rsB -poE -tlT -nex +dCn +vWw +oTn +vec +isr +byx +vec +oTn +vWw +xow +eqq +oTn +caB kBZ kBZ ryD hcI wXs -xJZ +qiF ryD ryD ryD @@ -56855,9 +50116,9 @@ idw izy hJw wVf -hek -hUp -gfg +vXi +lbu +mBs wVf wVf wVf @@ -56869,40 +50130,40 @@ oyT xvF wVf wVf -mLt -pJn -xOo -oCN -qhZ -vLU -nmQ -nHA +bHm +uIw +kFw +qwr +uvP +tiB +hSh +luv wVf -gwG -xOo -mAP +oMf +kFw +ckQ wVf -xJZ -viK -oef -jgY +qiF +eGG +wgi +jpa kWB wmt nAq eQC kWB -ltA -jpM -tEJ -uXw -tEJ -tEJ -tEJ -twm +nEe +tDS +gGg +eRC +gGg +gGg +gGg +dpC lNb -iaM -gAK -cto +gwX +kJB +kQk ksX cty cty @@ -56919,8 +50180,8 @@ mCF mCF ksX mxB -cto -bng +kQk +qlQ ksX cty mCF @@ -56938,43 +50199,43 @@ wUU "} (119,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -lTR -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -lTR -eDY -tNy +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +dgH +dgH +eLH +eLH +eLH +eLH +eLH +eLH +dgH +jTE +lLK igB oGv oGv oGv oGv lnO -lTR -lTR -eDY -tNy +dgH +dgH +jTE +lLK igB oGv oGv -tmC +rjL oGv pfd jaF @@ -56987,7 +50248,7 @@ oGv hXR ihY cFw -kmo +xdb cFw epN qkq @@ -56997,10 +50258,10 @@ nwq cFw cFw fWW -jks -jks +aFv +aFv cFw -tkh +cTD cFw nwq cFw @@ -57008,25 +50269,25 @@ pGs pGs pGs wOO -pNJ -kCA -tlT -mYd -oSe -ssg -rKL -tlT -kCA -aIq -cuc -tlT -mrT +xaB +vWw +oTn +ccH +tvN +laR +nrt +oTn +vWw +gaT +dlS +oTn +hIK kBZ ryD ryD ryD wXs -xJZ +qiF ryD ryD ryD @@ -57037,54 +50298,54 @@ gkb wVf wVf wVf -qhZ -jsf -qhZ +uvP +fCE +uvP wVf eyt eyt eyt eyt wVf -ohi -wpi -uFJ -eHB +ebU +inX +fsn +emz wVf -dQr -pJn -xOo -tUd +aQx +uIw +kFw +jHW wVf -rmL -qsh -ycE +esC +bLM +cji wVf -cur -syb -gEO +jYA +rBS +jno wVf -rDD -viK -oef -jgY +lKl +eGG +wgi +jpa kWB cAx aXA kWB kWB -xyJ -aFX -tEJ -uXw -tEJ -tEJ -tEJ -twm +qNU +awb +gGg +eRC +gGg +gGg +gGg +dpC lNb -iaM -etv -cto +gwX +iBZ +kQk ksX ksX iFb @@ -57099,10 +50360,10 @@ cty mCF mCF mCF -cba +olx xxk -cto -cto +kQk +kQk ksX xxk xxk @@ -57120,39 +50381,39 @@ wUU "} (120,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -lTR -qwQ -qwQ -qwQ -qwQ -lTR -lTR -lTR -lTR -qwQ -qwQ -lTR -eDY -tNy +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +rlF +dgH +eLH +eLH +eLH +eLH +dgH +dgH +dgH +dgH +eLH +eLH +dgH +jTE +lLK igB oGv lsN -tmC +rjL hXR pfd jaF jaF tGw -tNy +lLK igB oGv hXR @@ -57170,7 +50431,7 @@ gfk ihY xnS vyp -jks +aFv cFw cFw cFw @@ -57179,8 +50440,8 @@ cFw cFw gJN wop -jks -rUI +aFv +nRQ nwq cFw cFw @@ -57190,25 +50451,25 @@ nwq cFw pGs qnW -bgl -kCA -tlT -mYd -iht -iIC -rKL -tlT -kCA -aIq -tlT -eGL -mrT +fNF +vWw +oTn +ccH +pHV +rMY +nrt +oTn +vWw +gaT +oTn +fZG +hIK kBZ tkF ryD ryD wXs -xJZ +qiF ryD ryD eyt @@ -57219,24 +50480,24 @@ wVf wVf eyt wqb -wXu -viK -xJZ +iQi +eGG +qiF wqb eyt eyt eyt eyt wVf -jtI -xOo -uoO -mnc -kCT -mnc -xMq -xOo -gBV +vnV +kFw +vmt +meW +vnh +meW +dbw +kFw +gcC wVf xvF wVf @@ -57246,9 +50507,9 @@ wVf wVf wVf wVf -xJZ -viK -xJZ +qiF +eGG +qiF vHs imz wDv @@ -57256,18 +50517,18 @@ bSu wdI szh vHs -iad -lIo -xNb -aBB -aBB -wXD -pdr +ppB +bhQ +uYH +aId +aId +eLK +gBa bkM -kRp -mNO -qWw -cto +cuQ +skb +fHj +kQk xxk iFb hoC @@ -57283,9 +50544,9 @@ aOg mCF ksX xxk -cto -cto -cto +kQk +kQk +kQk xxk xxk ksX @@ -57302,29 +50563,29 @@ wUU "} (121,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH dXg -qwQ -qwQ +eLH +eLH btU -tNy +lLK igB hXR rMb @@ -57334,63 +50595,63 @@ oGv oGv oGv eoj -tNy +lLK igB oGv oGv oGv -rKM +gNy fkd oGv hXR svt -vss +lfN mmO -dOS +nlx oGv dXg ihY xnS -fPq -jks -upb -upb -jks -jks -upb -upb -jks -jks -qTE +bXF +aFv +bpq +bpq +aFv +aFv +bpq +bpq +aFv +aFv +lCN cFw cFw cFw jsG -jks +aFv cFw cFw nwq nwq oSX -mvO -kCA -tlT -mYd -hbP -ghb -rKL -tlT -kCA -aIq -wae -sdZ -hwZ +reQ +vWw +oTn +ccH +rls +oea +nrt +oTn +vWw +gaT +oSr +eWv +skV kBZ kBZ ryD ryD apj -xJZ +qiF ryD ryD kbQ @@ -57401,36 +50662,36 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb eyt eyt eyt eyt wVf -mca -hzm -lDr -swa +bzF +oDs +ekq +rVR wVf -xWj -pJn -xOo -tKr +uoE +uIw +kFw +sfy wVf -eij -wGV -eij +wsm +vkH +wsm wVf -ieu -qAr -mIG +nTP +anP +mld wVf -eFW -viK -xJZ +eyj +eGG +qiF vHs dmN iYi @@ -57438,18 +50699,18 @@ iYi iYi rjn vHs -bPm -wVE -ioA -jsO -ciR -wVE -fiA +rNA +hTq +aLa +pWO +wem +hTq +dQj bkM -eQr -iaM -hbi -gMm +kgu +gwX +gcu +rjW xxk iFb mCF @@ -57465,11 +50726,11 @@ aOg mCF xxk xxk -cto -cto -cto -cto -cto +kQk +kQk +kQk +kQk +kQk ksX aOg mCF @@ -57484,39 +50745,39 @@ wUU "} (122,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -lTR -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ -qwQ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +dgH +eLH +eLH +eLH +eLH +eLH +eLH +eLH +eLH dXg dXg -qwQ -tqV -mEy -tNy +eLH +qhY +vWZ +lLK jKW hej -dOS +nlx oGv oGv -rKM +gNy oGv fZX nOM -tNy +lLK jKW hej rMb @@ -57526,16 +50787,16 @@ oGv oGv oGv svt -tNy +lLK mmO oGv oGv oGv cFw ngY -jks -qVb -jks +aFv +wUl +aFv kPZ cFw cFw @@ -57547,23 +50808,23 @@ jJC pFd vuQ cel -jks -jks +aFv +aFv nwq cFw cFw fsC wOO -fFx -kCA -tlT -mYd -jNb -jPe -rKL -tlT -kCA -rpH +hYA +vWw +oTn +ccH +kBf +glO +nrt +oTn +vWw +oVH wOO wOO wOO @@ -57572,8 +50833,8 @@ wOO oSX wOO jPM -xJZ -xJZ +qiF +qiF ryD kbQ kbQ @@ -57583,9 +50844,9 @@ eyt jqw eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb wqb wqb @@ -57597,22 +50858,22 @@ xvF wVf xvF wVf -umA -pJn -xOo -hoG -qhZ -xOo -ppw -xOo +jpp +uIw +kFw +dck +uvP +kFw +gIo +kFw wVf -wpM -vpV -uGi +sHp +aGm +lBm wVf -xJZ -viK -xJZ +qiF +eGG +qiF vHs vHs vHs @@ -57630,10 +50891,10 @@ eHl uXS uXS uXS -hbi -cto +gcu +kQk xxk -vhI +wOV mCF mCF aOg @@ -57648,11 +50909,11 @@ mCF xxk xxk xxk -cto +kQk xxk -wws -poC -cba +qOZ +pto +olx aOg aOg aOg @@ -57666,96 +50927,96 @@ wUU "} (123,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +hCb +hCb +hCb +hCb kgp -pdK -pdK -gVP -aQN -jzB -aQN +hCb +hCb +fte +rsY +wLz +rsY geK -qNu +cIF wlB wlB wlB -ghW +mhq mnU -aQN -jzB -aQN +rsY +wLz +rsY geK wlB wlB lTg -ghW +mhq wlB mnU -suY -aQN -hMg +guR +rsY +sGB lTg wlB wlB -res -res -kZe -lrR -jks +ljJ +ljJ +rYV +hTA +aFv qKM -mUz +teI cFw cFw ihY cFw -ewv -jks +bcP +aFv nwq gwD cFw -jks -jks +aFv +aFv cFw cFw cFw nwq oSX -vQL -kCA -tlT -mYd -wRi -leO -rKL -tlT -kCA -rsB +mcH +vWw +oTn +ccH +xgA +jVP +nrt +oTn +vWw +xow wOO -ubK -ubK -sLi -pkT -pAZ +wdK +wdK +lCC +vfA +qfw wOO -rWY -xJZ -xJZ +veS +qiF +qiF ryD kbQ kbQ @@ -57765,57 +51026,57 @@ jqw kbQ eyt wqb -rDD -wng -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -gRS -enH -eKw -bCA -oCN +lKl +mqu +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +eEx +dby +oic +kXC +qwr wVf wVf -aFM +lPi wVf wVf -pRy -vpV -mIG -obS -xJZ -viK +jsC +aGm +mld +fOa +qiF +eGG ryD -xJZ +qiF kfG eyt eyt uXS -vZv +erZ kNa -sGo -eQZ -xwY +hbf +heb +bsl uXS -xOz -eQZ -sGo +dpS +heb +hbf kNa -oAm +sKG uXS -hbi -cto +gcu +kQk xxk -vhI +wOV mCF aOg aOg @@ -57829,12 +51090,12 @@ mCF mCF xxk xxk -cto -cto -cto -eGq -aTC -cba +kQk +kQk +kQk +hlQ +ibT +olx aOg aOg aOg @@ -57848,30 +51109,30 @@ wUU "} (124,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -rYC -qwQ -lTR -lTR -qwQ -qwQ -urD -urD -urD +qrg +tXB +tXB +tXB +tXB +tXB +tXB +diF +eLH +dgH +dgH +eLH +eLH +wJn +wJn +wJn kgp -pdK -pdK +hCb +hCb fpq kVq -aQN -hQV -aQN +rsY +bwc +rsY geK wlB lTg @@ -57879,9 +51140,9 @@ wlB wlB wlB mnU -aQN -ocz -aQN +rsY +lCF +rsY geK wlB wlB @@ -57890,16 +51151,16 @@ wlB wlB mnU wlB -aHw -aQN -vMo -qNu +wwX +rsY +sbt +cIF wlB wlB -iUH +nhN cel -jks -jks +aFv +aFv cFw ihY cFw @@ -57907,97 +51168,97 @@ cFw vYy deE nwq -aBz +eVO xfz ihY cel -jks -jks -jks -jks +aFv +aFv +aFv +aFv cFw nwq oSX -uwQ -kCA -tlT -cbq -oga -kca -cbq -tlT -kCA -rsB +uEH +vWw +oTn +vec +kzA +dwp +vec +oTn +vWw +xow oSX -fEu -fEu -fEu -fEu -pCO +tpu +tpu +tpu +tpu +bqy oSX -viK -xJZ -xJZ +eGG +qiF +qiF wqb -tVj +afM kbQ kbQ kbQ kbQ kbQ kbQ -bPk -xJZ -viK -xJZ -sxY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -qhZ -rqn -kGF -pJn -tUd -qhZ -hyp -iNr -vZl -qhZ -tdy -vpV -dNY -obS +lGO +qiF +eGG +qiF +dWI +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +uvP +bIc +sfc +uIw +jHW +uvP +vTo +eCp +jZE +uvP +pqo +aGm +boF +fOa ryD -viK -xJZ -xJZ +eGG +qiF +qiF kfG eyt eyt uXS uXS uXS -tlG -eQZ -rWx +bnn +heb +xnw uXS -sGo -eQZ -iAa +hbf +heb +yje uXS uXS uXS -hbi -cto -cto -vhI +gcu +kQk +kQk +wOV mCF aOg mCF @@ -58012,10 +51273,10 @@ mCF ksX dzH xxk -cto -cto -cto -bst +kQk +kQk +kQk +daK ksX lVQ xGV @@ -58030,30 +51291,30 @@ wUU "} (125,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -xVw -qwQ -daS -qwQ -qwQ -qwQ -pdK -pdK -pdK -urD -pdK -pdK +qrg +tXB +tXB +tXB +tXB +tXB +tXB +xAC +eLH +aBZ +eLH +eLH +eLH +hCb +hCb +hCb +wJn +hCb +hCb nsN mnU -aQN -aQN -aQN +rsY +rsY +rsY geK vLh hDw @@ -58061,9 +51322,9 @@ qZV qZV oyl mnU -aQN -aQN -aQN +rsY +rsY +rsY geK vLh hDw @@ -58071,114 +51332,114 @@ qZV qZV oyl fmu -xVX +vIW wlB lTg -aQN +rsY wlB lTg wlB cFw cel -jks -jks +aFv +aFv cFw cFw -jks +aFv ebi xmL otH iWX -jks +aFv kDk -xWL +tPJ cFw -jks +aFv uAM cFw cFw cFw tlq oSX -oUO -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -rsB +sAl +vWw +oTn +vec +oTn +qhy +vec +oTn +vWw +xow oSX -lur -lur -lur -fEu -ubK +lux +lux +lux +tpu +wdK oSX -viK -xJZ +eGG +qiF ryD ryD -tVj +afM kbQ jqw kbQ kbQ kbQ ofC -xJZ -xJZ -viK -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xxs -iXR -xJZ -xJZ -gDh -qhZ -beE -orb -pJn -xOo -dpz -xOo -kiG -lxy -qhZ -bUg -vpV -uDg -obS +qiF +qiF +eGG +qiF +qiF +dOh +qiF +qiF +qiF +iBR +eIF +qiF +qiF +uSh +uvP +oOB +bPK +uIw +kFw +vzu +kFw +djF +ljd +uvP +uYm +aGm +mou +fOa ryD wXs -xJZ +qiF ryD kfG xAx eyt uXS -vZv +erZ kNa -sGo -eQZ -sGo +hbf +heb +hbf uXS -vzY -eQZ -sGo +aZy +heb +hbf kNa -oAm +sKG uXS -hbi -cto -cto +gcu +kQk +kQk iFb mCF aOg @@ -58212,68 +51473,68 @@ wUU "} (126,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -qwQ -qwQ -qwQ -qwQ -urD -urD -pdK -pdK -pdK -urD +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +eLH +eLH +eLH +eLH +wJn +wJn +hCb +hCb +hCb +wJn nsN bys kkt -hsa +dvH ksu njC riM -aQN -aQN -aQN -hsa +rsY +rsY +rsY +dvH xDd rUc -hsa +dvH ksu bVe yhZ -aQN -aQN -aQN -hsa -wlB -aQN -aQN -kYF +rsY +rsY +rsY +dvH +wlB +rsY +rsY +ncO kgp kgp wlB -ghW +mhq cFw cFw cFw osE cFw cFw -eSo -dvT +eue +vSm cFw tPK -jks -jks -upb -jks +aFv +aFv +bpq +aFv qSR wop cFw @@ -58282,38 +51543,38 @@ cFw pGs pGs wOO -pCV -kCA -tlT -cbq -tlT -qqs -adR -gkS -vmc -oDN +aCx +vWw +oTn +vec +oTn +iGr +jPD +txQ +aHT +hSA agM -aDZ -aDZ -rTv -fEu -ubK +tUh +tUh +wQG +tpu +wdK oSX -mZk -xJZ -xJZ -imu -tVj -tVj -tVj -tVj -tVj -tVj -tVj -xJZ -xJZ -viK -xJZ +qti +qiF +qiF +bZc +afM +afM +afM +afM +afM +afM +afM +qiF +qiF +eGG +qiF wqb eyt eyt @@ -58325,43 +51586,43 @@ wVf xvF wVf wVf -xOo -xOo -jVK -mnc -mnc -mnc -xMq -kYn +kFw +kFw +lYE +meW +meW +meW +dbw +mHD wVf -fHx -vpV -qVS +tmo +aGm +qgr wVf -rWY -viK -xJZ -xJZ +veS +eGG +qiF +qiF vph qIF sgk uXS uXS uXS -jGz -eQZ -rWx +ohG +heb +xnw uXS -sGo -eQZ -sGo +hbf +heb +hbf uXS uXS uXS wGQ xxk -cto -kmI +kQk +rRY mCF jdm mCF @@ -58394,47 +51655,47 @@ wUU "} (127,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -uYJ -qqR -qwQ -qwQ -lTR -pdK -pdK -pdK -pdK -pdK -urD +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +rlF +upX +eLH +eLH +dgH +hCb +hCb +hCb +hCb +hCb +wJn nBc gsC lTg -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY lTg wlB kgp @@ -58452,98 +51713,98 @@ jjj jjj ihY ihY -teg -jks -jks +bCU +aFv +aFv cFw cFw gDr -dvT +vSm nwq cFw cFw pGs wOO -fCB -kCA -tlT -cbq -tlT -ljx -cbq -tlT -kCA -xPV +sQN +vWw +oTn +vec +oTn +qhy +vec +oTn +vWw +qrl hst -rKl -lur -cbg -fEu -xjp +cXh +lux +bjL +tpu +ceu wOO -viK -xJZ -xJZ +eGG +qiF +qiF wqb -tVj -tVj +afM +afM qIF kbQ qIF tTU kbQ -xJZ -xJZ -viK -gDh +qiF +qiF +eGG +uSh wqb eyt eyt eyt eyt wVf -sBN -xOo -xOo -xOo -aRL -xOo -xOo -vrO -vAg +mXq +kFw +kFw +kFw +yhO +kFw +kFw +fyN +gdE wVf -gwG -jVK -iPI -fLn -jhv -jzq -ocr +oMf +lYE +fSw +kSb +bUN +fPG +hDr wVf -ybt -viK -xJZ -xJZ +aJB +eGG +qiF +qiF qIF kbQ kbQ uXS -dGR +tqp kNa -chr -eQZ -sGo +xgL +heb +hbf uXS -vzY -eQZ -eqn +aZy +heb +dkh kNa -oAm +sKG uXS -hbi -cto -cto -kmI +gcu +kQk +kQk +rRY mCF mCF mCF @@ -58576,47 +51837,47 @@ wUU "} (128,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -wBp -uYJ -qwQ -qwQ -qwQ -qwQ -pdK -pdK -pdK -pdK -pdK -pdK -urD +qrg +tXB +tXB +tXB +qpn +tXB +tXB +uuY +rlF +eLH +eLH +eLH +eLH +hCb +hCb +hCb +hCb +hCb +hCb +wJn nsN usQ -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -aQN -wlB -aQN -aQN +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +rsY +wlB +rsY +rsY wlB kgp kgp @@ -58634,11 +51895,11 @@ cFw epN cFw ihY -hQl -jks -jks +iLj +aFv +aFv fSa -jks +aFv cFw cFw cFw @@ -58646,27 +51907,27 @@ cFw cFw fsC oSX -bgl -mSD -gkS -adR -gkS -xRt -yjK -lsT -kCA -hUY +fNF +oTr +txQ +jPD +txQ +njm +pEA +xqO +vWw +wOg oSX -lur -rtR -osr -aDZ -aDZ -nOg -pfr -lVc -lVc -iFZ +lux +qXQ +knV +tUh +tUh +arV +jPw +dCb +dCb +gPI kbQ kbQ kbQ @@ -58675,9 +51936,9 @@ kbQ sgk eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb eyt eyt @@ -58689,23 +51950,23 @@ wVf xvF wVf wVf -hay -hZD -byl -gmK +gDJ +tqW +iIE +kEo wVf -vap -jVK -eUv +uNE +lYE +jyB wVf -twh -aqb -ptP +scv +dWm +iDa wVf -mNT -viK -xJZ -xJZ +kzy +eGG +qiF +qiF kfG nMJ uqW @@ -58713,18 +51974,18 @@ uXS uXS uXS uXS -bHc -rWx +duE +xnw uXS -sGo -qQe +hbf +bIa uXS uXS uXS uXS -hbi -cto -cto +gcu +kQk +kQk iFb hoC mCF @@ -58758,33 +52019,33 @@ wUU "} (129,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -qwQ -lTR -daS -uYJ -qwQ -pdK -pdK -pdK -pdK -pdK +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +eLH +dgH +aBZ +rlF +eLH +hCb +hCb +hCb +hCb +hCb fpq cVq mtT lTg -nCl -nCl -nCl -aQN -aQN +cgm +cgm +cgm +rsY +rsY kgp kgp kgp @@ -58793,62 +52054,62 @@ kgp kgp kgp kgp -nCl -nCl -nCl -aQN +cgm +cgm +cgm +rsY dOm -aQN -nCl -nCl -nCl -nCl -nCl -aQN +rsY +cgm +cgm +cgm +cgm +cgm +rsY wlB gDr ihY ihY cFw -res -res -res -res -eoB -kjp -res -jks -jks -lch -lch -lch -lch -lch -lch -lch -lch -tZm -bgl -kCA -kCA -cbq -kCA -kCA -pkX -nsl -kCA -hUY +ljJ +ljJ +ljJ +ljJ +iVh +fhp +ljJ +aFv +aFv +foo +foo +foo +foo +foo +foo +foo +foo +aHF +fNF +vWw +vWw +vec +vWw +vWw +oiL +gai +vWw +wOg oSX -eYM -lur -rpI -rrr -rrr +qnk +lux +bkQ +lvd +lvd wOO -fga -uwJ -xJZ -viK +rWm +xMe +qiF +eGG kbQ kbQ qIF @@ -58857,9 +52118,9 @@ qIF uet eyt wqb -rpd -viK -xJZ +fam +eGG +qiF wqb eyt eyt @@ -58872,41 +52133,41 @@ xAx kjN wVf xvF -nNv +jlU wVf wVf wVf wVf -vXW +eSP wVf wVf wVf wVf wVf wVf -rDD -viK -xJZ -xJZ +lKl +eGG +qiF +qiF kbQ kbQ eyt uXS -vzY -qZr +aZy +bFS kNa -tKw -nFf +cci +uyE uXS -vzY -eQZ +aZy +heb kNa -sGo -rWx +hbf +xnw uXS -hbi -cto -wXC +gcu +kQk +rKK iFb cty mCF @@ -58940,24 +52201,24 @@ wUU "} (130,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -wBp -rYC -wLB -mPW -wBp -lze -pdK -urD -pdK -urD -urD +qrg +tXB +tXB +tXB +tXB +tXB +tXB +uuY +diF +sXA +hQx +uuY +uao +hCb +wJn +hCb +wJn +wJn nsN wlB kAH @@ -58965,7 +52226,7 @@ kgp kgp wsn wlB -aQN +rsY kgp kgp wlB @@ -58980,27 +52241,27 @@ kgp vll wlB bSQ -iQr -iQr -iQr -iQr -iQr -iQr -iQr -iQr -sIK -foE -nnb -nnb -nnb -nnb -nnb -wDH -nLH -wDH -nnb -nnb -nnb +art +art +art +art +art +art +art +art +bGP +hts +fzs +fzs +fzs +fzs +fzs +lIq +tpQ +lIq +fzs +fzs +fzs cFw cFw nwq @@ -59010,27 +52271,27 @@ gDr cFw mcB oSX -oIC -jtU -jtU -qId -jtU -oBP -kLA -vnH -jtU -dID +azL +tNb +tNb +ijT +tNb +sQZ +fDb +pdh +tNb +gdN wOO -gar -dgF -uZa -mEB -mEB +npg +lyw +yin +vhg +vhg oSX -xJZ -xJZ -xJZ -viK +qiF +qiF +qiF +eGG ryD ouy ofC @@ -59039,9 +52300,9 @@ uet cFz eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb eyt eyt @@ -59054,40 +52315,40 @@ qIF kbQ qIF kbQ -tVj +afM kbQ eyt wVf -oWO -nzd -xqG +qtN +fpo +joz wVf eyt eyt eyt wqb -xJZ -viK -xJZ -xJZ +qiF +eGG +qiF +qiF kbQ kbQ kbQ uXS -vZv -sGo +erZ +hbf uXS -jCN -rWx +hil +xnw uXS -tcS -dnU +iwG +cMS uXS -sGo -oAm +hbf +sKG uXS -hbi -cto +gcu +kQk mxB aOg aOg @@ -59122,67 +52383,67 @@ wUU "} (131,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +qrg +qpn +tXB +qpn +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +diF fpq mwI cVq cVq pZT nsN -mdg +nYo lTg kgp nit wlB -aQN -slw +rsY +wFj kgp eia lTg -hVL +nAY wlB qAy -hmh +uBe wlB -ebF +txY ggr kgp kyP wlB wlB -iQr -iQr -aCX -iQr -iQr -iQr -iQr -iQr -eJN -vuA -vuA -bcD -nnb -nnb -nnb -nnb -sIK -nnb -nnb -nnb -nnb +art +art +uKX +art +art +art +art +art +aqc +eTX +eTX +lhx +fzs +fzs +fzs +fzs +bGP +fzs +fzs +fzs +fzs nwq ebi cFw @@ -59193,14 +52454,14 @@ cFw kuO slE cqC -sPh -qId -qxa +tsL +ijT +xXS wOO wOO -nUf -kIz -nUf +tKT +jom +tKT wOO wOO wOO @@ -59210,10 +52471,10 @@ wOO wOO wOO wqb -xJZ -xJZ -viK -xJZ +qiF +qiF +eGG +qiF tCA kbQ kbQ @@ -59221,9 +52482,9 @@ vcR eyt eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb eyt eyt @@ -59236,22 +52497,22 @@ kbQ qIF sgk kbQ -tVj +afM kbQ eyt wVf -jUM -dnV -kTI +uuL +pcV +gyB wVf eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ +qiF +eGG +qiF +qiF kfG ofC kbQ @@ -59268,8 +52529,8 @@ uXS uXS uXS uXS -hbi -cto +gcu +kQk xxk aOg aOg @@ -59304,19 +52565,19 @@ wUU "} (132,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -cJL -mPk -xVw +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +qpn +tXB +utI +tXB +xAC nsN xNA xNA @@ -59331,7 +52592,7 @@ wlB bYO lTg wlB -nKf +ttY wlB wlB wlB @@ -59339,36 +52600,36 @@ wlB wlB tgK wlB -aQN +rsY wlB wlB wlB wlB -iQr -iQr +art +art bSQ -qNu +cIF wlB wlB -aQN +rsY wlB aKJ cFw cFw cFw -dYW -jks +aDr +aFv cFw cFw xmL fMI eHv cFw -jks +aFv cFw cFw cFw -mUz +teI nwq cFw cFw @@ -59380,10 +52641,10 @@ oSX oSX slE xAg -axh -enu -iQS -cRZ +fuQ +fDn +xqQ +nEj vVH kBZ kBZ @@ -59392,10 +52653,10 @@ kBZ kBZ kBZ wqb -gDh -xJZ -viK -xJZ +uSh +qiF +eGG +qiF tCA kbQ kbQ @@ -59403,9 +52664,9 @@ eyt eyt eyt wqb -xJZ -viK -wXu +qiF +eGG +iQi wqb eyt eyt @@ -59417,40 +52678,40 @@ qIF kbQ kbQ kbQ -tVj -tVj -tVj +afM +afM +afM eyt wVf -gqN -nrd -gnZ +jXj +rtG +rKb wVf eyt eyt wqb -oJW -xJZ -eQa -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -pfr -lVc -feR -lVc -pfr -vJp -lVc -mUP -fnj -baa +uHH +qiF +kla +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +jPw +dCb +tND +dCb +jPw +wTS +dCb +ekD +iYP +bMs xxk xxk aOg @@ -59486,22 +52747,22 @@ wUU "} (133,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -mPk +qrg +tXB +tXB +tXB +qpn +tXB +tXB +tXB +tXB +tXB +qpn +tXB wcb wlH tMZ -ghW +mhq wlB beK mtT @@ -59509,33 +52770,33 @@ kgp kgp wlB wlB -hmh +uBe wlB jwX -aQN -aQN +rsY +rsY sKz wlB tez tmZ rXk wlB -aQN -hmh +rsY +uBe wlB wlB -mdg +nYo dWV -iQr -jKs +art +hwW wlB wlB kgp wlB -nCl +cgm wlB xmL -iUH +nhN icm cFw nwq @@ -59546,11 +52807,11 @@ cFw pll jNn eNA -jks +aFv cFw -jks -jks -jks +aFv +aFv +aFv cFw cFw nwq @@ -59562,10 +52823,10 @@ xSZ qEt biS vVH -hrc -enu -iQS -pGU +rCF +fDn +xqQ +ewi vVH kBZ kBZ @@ -59574,10 +52835,10 @@ kBZ kBZ kBZ wqb -rDD -xJZ -viK -stw +lKl +qiF +eGG +hFP ouy kbQ kbQ @@ -59585,9 +52846,9 @@ kbQ eyt eyt wqb -rDD -viK -gha +lKl +eGG +mxA wqb eyt eyt @@ -59599,7 +52860,7 @@ kbQ kbQ ofC tTU -tVj +afM sgk jqw eyt @@ -59611,28 +52872,28 @@ wVf eyt eyt wqb -qQd -xJZ -viK -xJZ -xJZ -xJZ -xJZ +hzN +qiF +eGG +qiF +qiF +qiF +qiF ryD -xJZ -xJZ -xJZ -xJZ -xJZ +qiF +qiF +qiF +qiF +qiF ryD -xJZ -xJZ -xJZ -xJZ -xJZ -cto -tuZ -cto +qiF +qiF +qiF +qiF +qiF +kQk +bAF +kQk wNz xxk aOg @@ -59668,24 +52929,24 @@ wUU "} (134,1,1) = {" wUU -nvv -cUN -mPk -cUN -mPk -mPk -mPk -mPk -mPk -cUN -cUN -cUN +qrg +qpn +tXB +qpn +tXB +tXB +tXB +tXB +tXB +qpn +qpn +qpn pCa tMZ wlB eia wlB -ghW +mhq lTg wlB wlB @@ -59699,22 +52960,22 @@ wlB wlB qNX ehY -urD +wJn nsN lTg -aQN -aQN +rsY +rsY gjC wlB wlB dWV -iQr -jKs +art +hwW wlB kgp kgp kgp -nCl +cgm wlB cFw tPK @@ -59723,16 +52984,16 @@ nwq cFw cFw cel -jks +aFv cFw tPK qkq xpe -jks -jks -jks -mtp -coX +aFv +aFv +aFv +hjH +wrR cFw cFw cFw @@ -59744,10 +53005,10 @@ nwq nwq oep vVH -won -vSu -iQS -pGU +cjv +vxH +xqQ +ewi vVH kBZ kBZ @@ -59756,20 +53017,20 @@ kBZ kBZ kBZ wqb -bFD -xJZ -viK -xJZ -lFE +dLR +qiF +eGG +qiF +dgw kbQ kbQ kbQ eyt eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb eyt eyt @@ -59781,7 +53042,7 @@ kbQ kbQ kbQ kbQ -tVj +afM kbQ kbQ kbQ @@ -59794,28 +53055,28 @@ eyt eyt wqb wqb -xJZ -viK -xJZ -xJZ -pOg -xJZ -xJZ -wXu +qiF +eGG +qiF +qiF +mxi +qiF +qiF +iQi ryD ryD -xJZ -xJZ -xJZ -gDh -xJZ +qiF +qiF +qiF +uSh +qiF ryD -xJZ -xJZ -cto -iaM -cto -cto +qiF +qiF +kQk +gwX +kQk +kQk xxk mCF mCF @@ -59850,18 +53111,18 @@ wUU "} (135,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB wfR dYd wlB @@ -59877,26 +53138,26 @@ wlB lTg wlB wlB -mdg +nYo wlB beK cVq cVq mtT wlB -aQN -aQN +rsY +rsY wlB -oyv +jah lTg wlB -iQr -iQr +art +art lTg wlB gjC kgp -nCl +cgm wlB cFw ihY @@ -59905,20 +53166,20 @@ ihY cSc jrr jrr -vUx +xep jrr cSc cCk cFw cFw -jks -jks -jks -coX +aFv +aFv +aFv +wrR nwq cFw cFw -tkh +cTD cFw nwq wUF @@ -59926,10 +53187,10 @@ cFw cFw uFO vVH -iQS -aQY -iQS -iQS +xqQ +gRf +xqQ +xqQ vVH kBZ kBZ @@ -59939,9 +53200,9 @@ kBZ kBZ wqb wqb -xJZ -viK -xJZ +qiF +eGG +qiF ouy kbQ kbQ @@ -59949,10 +53210,10 @@ kbQ eyt eyt wqb -rWY -viK -xJZ -bPk +veS +eGG +qiF +lGO jqw kbQ kbQ @@ -59963,7 +53224,7 @@ kbQ kbQ kbQ sgk -tVj +afM kbQ kbQ kbQ @@ -59976,19 +53237,19 @@ eyt eyt eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF ouy ouy ouy ouy ouy ouy -tVj -tVj -tVj -tVj +afM +afM +afM +afM ouy ouy ouy @@ -60032,18 +53293,18 @@ wUU "} (136,1,1) = {" wUU -nvv -mPk -cUN -mPk -mPk -mPk -mPk -cUN -mPk -mPk -rUa -cUN +qrg +tXB +qpn +tXB +tXB +tXB +tXB +qpn +tXB +tXB +uUQ +qpn xDE wlB wlB @@ -60052,31 +53313,31 @@ lTg wlB wlB wlB -mdg +nYo wlB wlB wlB -ghW +mhq wlB lTg wlB -ghW +mhq wlB wlB lTg wlB wlB -mdg +nYo wlB -qNu +cIF wlB wlB wlB -iQr -jKs +art +hwW wlB -aQN -aQN +rsY +rsY wlB lTg wlB @@ -60088,30 +53349,30 @@ nwq cFw nwq nwq -qTE +lCN ihY ihY cFw ykU -jks +aFv nwq cFw fSa cFw -jks -jks -jks -jks +aFv +aFv +aFv +aFv cFw cFw cFw dgY kuO vVH -iQS -fnl -iQS -iQS +xqQ +atk +xqQ +xqQ vVH kBZ kBZ @@ -60121,9 +53382,9 @@ kBZ kBZ kBZ wqb -xJZ -viK -gDh +qiF +eGG +uSh ouy sgk kbQ @@ -60131,9 +53392,9 @@ qIF eyt eyt wqb -oJW -viK -xJZ +uHH +eGG +qiF wqb kbQ sgk @@ -60142,10 +53403,10 @@ kbQ kbQ kbQ kbQ -tVj -tVj -ykx -tVj +afM +afM +alI +afM kbQ kbQ sgk @@ -60158,9 +53419,9 @@ jqw eyt eyt eyt -rDD -viK -xJZ +lKl +eGG +qiF ouy eyt eyt @@ -60214,21 +53475,21 @@ wUU "} (137,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cUN -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +qpn +tXB +tXB iWj wlB -mdg +nYo lTg wlB wlB @@ -60253,11 +53514,11 @@ wlB lTg wlB wlB -tfc -iQr -iQr +vbi +art +art wlB -ghW +mhq wlB wlB rBq @@ -60266,7 +53527,7 @@ xmL deE cFw cFw -jks +aFv cFw cFw cFw @@ -60275,7 +53536,7 @@ cFw deq cFw cFw -jks +aFv cFw mEs ihY @@ -60283,17 +53544,17 @@ wop cFw cFw cFw -jks +aFv cFw cFw -dvT +vSm cFw kuO vVH -iQS -enu -apH -iQS +xqQ +fDn +wiZ +xqQ vVH kBZ wqb @@ -60303,19 +53564,19 @@ wqb kBZ kBZ wqb -xJZ -viK -gDh -lFE +qiF +eGG +uSh +dgw sgk kbQ jqw eyt eyt wqb -xJZ -viK -xJZ +qiF +eGG +qiF wqb iyv tTU @@ -60324,10 +53585,10 @@ kbQ jqw kbQ kbQ -tVj -tVj -tVj -tVj +afM +afM +afM +afM eyt eyt kbQ @@ -60340,9 +53601,9 @@ kbQ eyt eyt eyt -xJZ +qiF wXs -xJZ +qiF ouy eyt kbQ @@ -60396,18 +53657,18 @@ wUU "} (138,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +utI iWj hPq wlB @@ -60428,27 +53689,27 @@ wlB chX lTg lTg -jtH +hAc lTg lTg -jtH -jtH -jtH +hAc +hAc +hAc lTg lTg -iQr -iQr +art +art wlB wlB wlB wlB -nCl +cgm wlB xmL cFw cFw cFw -jks +aFv cFw cFw cFw @@ -60457,47 +53718,47 @@ cFw tEM hzx cFw -jks +aFv nwq nwq ihY ihY cFw mDm -dvT +vSm nwq -jks +aFv cFw cFw cFw kuO vVH -nxl -enu -iQS -hza +hkE +fDn +xqQ +rCY aoC vVH rql -qcD -kAl +xCD +mcA vVH wqb kBZ wqb -xJZ -viK -xJZ +qiF +eGG +qiF ouy kbQ sgk kbQ eyt wqb -xxs -xJZ -viK -xJZ +iBR +qiF +eGG +qiF wqb wqb tLu @@ -60506,7 +53767,7 @@ wqb wqb ryD ryD -xJZ +qiF ryD wqb wqb @@ -60514,17 +53775,17 @@ wqb wqb tLu tLu -xJZ -xJZ -xJZ +qiF +qiF +qiF wqb tLu wqb wqb wqb -xJZ -viK -xJZ +qiF +eGG +qiF ouy eyt qIF @@ -60578,18 +53839,18 @@ wUU "} (139,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB rJv rXk lTg @@ -60619,18 +53880,18 @@ jqd lTg lTg lTg -kFn +pQB wlB -iQr +art wlB lTg -nCl +cgm wlB -iig -jks +tnO +aFv cFw cFw -jks +aFv cFw cFw nwq @@ -60638,8 +53899,8 @@ ihY ihY fxX iaH -mio -nRU +jUd +kjL jjj hjn ihY @@ -60648,65 +53909,65 @@ cFw cFw cFw cFw -jks -jks +aFv +aFv cFw cFw kuO uti -kxU -enu -iQS -iQS -iQS -iQS -jXn -iQS -iQS -tkr -imu -xJZ -xJZ -xJZ -viK -xJZ +bTC +fDn +xqQ +xqQ +xqQ +xqQ +hHJ +xqQ +xqQ +mxO +bZc +qiF +qiF +qiF +eGG +qiF ouy tCA kbQ tCA wqb wqb -xJZ -xJZ -viK -xJZ -xJZ -xJZ -xJZ -xJZ -wXu -xJZ +qiF +qiF +eGG +qiF +qiF +qiF +qiF +qiF +iQi +qiF ryD ryD -xJZ +qiF keY -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF wXs -xJZ +qiF kbQ kbQ kbQ @@ -60760,21 +54021,21 @@ wUU "} (140,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -vhB +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fwM nsN -ghW +mhq wlB lTg wlB @@ -60806,10 +54067,10 @@ wlB lTg wlB hPq -aQN +rsY wlB xmL -qTE +lCN cFw cFw cFw @@ -60817,11 +54078,11 @@ ebi cFw ihY ihY -gFA +qCc nwq -upb -jks -jks +bpq +aFv +aFv cFw epN cFw @@ -60830,65 +54091,65 @@ vbS cFw cFw cFw -jks -jks +aFv +aFv cFw nwq ezU uti -sPD -hdV -pDW -pDW -pDW -eVH -pDW -pDW -pDW -pDW -lVc -lVc -lVc -lVc -pfr -lVc -lVc -lVc -lVc -lVc -lVc -pbw -lVc -lVc -pfr -nch -lVc -lVc -lVc -lVc -xpk -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc +vhG +npB +pWd +pWd +pWd +hqW +pWd +pWd +pWd +pWd +dCb +dCb +dCb +dCb +jPw +dCb +dCb +dCb +dCb +dCb +dCb +hmW +dCb +dCb +jPw +knk +dCb +dCb +dCb +dCb +xQZ +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb xza -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -lVc -cpC -xJZ +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +dCb +kvX +qiF kbQ ofC kbQ @@ -60942,19 +54203,19 @@ wUU "} (141,1,1) = {" wUU -nvv -mPk -mPk -mPk -cUN -mPk -mPk -mPk -mPk -mPk -pRa -cJL -rYC +qrg +tXB +tXB +tXB +qpn +tXB +tXB +tXB +tXB +tXB +fbD +utI +diF nsN wlB wlB @@ -60985,10 +54246,10 @@ lTg wlB lTg lTg -iQr +art kgp kgp -nCl +cgm wlB cFw tPK @@ -61001,75 +54262,75 @@ cFw ihY fvV cFw -coX +wrR cFw cFw -dvT +vSm nwq cFw cFw cFw nwq cFw -jks -jks +aFv +aFv cFw cFw nwq kuO uti -fmy -iQS -iQS -iQS -iQS -iQS -iQS -axs -iQS -iQS -xJZ -xJZ -xJZ -xJZ -xJZ +mMR +xqQ +xqQ +xqQ +xqQ +xqQ +xqQ +fFP +xqQ +xqQ +qiF +qiF +qiF +qiF +qiF ryD ryD oPV -xJZ -xJZ -eKF -bPk -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJt -xJZ -xJZ -sny -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ -xJZ +qiF +qiF +grP +lGO +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +dOh +qiF +qiF +qiF +qiF +qiF +ltC +qiF +qiF +dOh +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF +qiF ryD kbQ kbQ @@ -61124,19 +54385,19 @@ wUU "} (142,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +uuY nsN wlB wlB @@ -61170,20 +54431,20 @@ lTg wlB kgp kgp -nCl +cgm wlB cFw cFw ihY ihY -qTE +lCN cFw cFw nwq cFw -hQl +iLj cFw -coX +wrR cFw nwq cFw @@ -61193,39 +54454,39 @@ cFw cFw ihY wop -gkG -nRU +liX +kjL jjj jjj -mcp +mWy tdt xAg xAg -bSD -kAl -kAl +bxB +mcA +mcA vVH vVH vVH vVH vVH vVH -gfu -xJZ -xJZ -gfu -sny +ktd +qiF +qiF +ktd +dOh sVr ryD ryD -xJZ -iLc -sny -jcY -sny -xJZ -xJZ -mHh +qiF +jQd +dOh +lGO +dOh +qiF +qiF +bCz wqb wqb tLu @@ -61234,21 +54495,21 @@ wqb wqb wqb wqb -bPk +lGO tLu wqb wqb wqb wqb wqb -bPk +lGO wqb -bPk +lGO wqb wqb tLu -bPk -bPk +lGO +lGO wqb kbQ kbQ @@ -61306,18 +54567,18 @@ wUU "} (143,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +utI ovT mtT wlB @@ -61348,11 +54609,11 @@ wlB wlB wlB lTg -tfc -iQr +vbi +art eia kgp -nCl +cgm wlB cFw nwq @@ -61365,18 +54626,18 @@ cFw cFw cFw cFw -jks +aFv cFw ihY ihY cFw -jks +aFv cFw ihY ihY xfz cFw -jks +aFv cFw eHs cFw @@ -61393,20 +54654,20 @@ bzz fNm vVH oET -slA -gfG +vWE +nQy oET oET kbQ kbQ kbQ -lFE +dgw tCA ouy ouy ouy tCA -lFE +dgw ouy ouy kbQ @@ -61419,7 +54680,7 @@ kbQ kbQ kbQ kbQ -tVj +afM kbQ kbQ liq @@ -61488,18 +54749,18 @@ wUU "} (144,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD iWj wlB gjC @@ -61531,11 +54792,11 @@ lTg uHD lTg lTg -fIk +nIL wlB kgp -nCl -ghW +cgm +mhq nwq cFw cFw @@ -61543,22 +54804,22 @@ nwq cFw cFw cFw -upb +bpq cFw cFw cFw -jks +aFv cFw uAM ihY cFw -agn +vrk cFw ejk nwq -nak +aLe cFw -jks +aFv nwq cFw cFw @@ -61670,18 +54931,18 @@ wUU "} (145,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD iWj wlB wlB @@ -61712,8 +54973,8 @@ wlB lTg lTg lTg -kFH -iQr +oFc +art wlB kgp kgp @@ -61723,19 +54984,19 @@ cFw cFw xfz cel -jks -jks -jks -gtv -jks -jks -coX +aFv +aFv +aFv +tLg +aFv +aFv +wrR cFw cFw cFw cFw cFw -jks +aFv pll cFw cFw @@ -61852,23 +55113,23 @@ wUU "} (146,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +fbD xDE wlB lTg wlB -mdg +nYo wlB lTg lTg @@ -61895,8 +55156,8 @@ lTg pXT lTg lTg -bDs -aQN +xRz +rsY kgp kgp wlB @@ -61923,7 +55184,7 @@ eHs cFw nwq bGU -pmM +hSD bGU bGU rvD @@ -61933,7 +55194,7 @@ rvD bGU rvD rvD -elP +sCQ bGU bGU rvD @@ -62034,18 +55295,18 @@ wUU "} (147,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uUQ rJv rXk wlB @@ -62085,11 +55346,11 @@ lTg cFw cFw xmL -jks -jks +aFv +aFv cFw cFw -ykA +jNj cFw cFw cFw @@ -62099,14 +55360,14 @@ nwq nwq cFw cFw -agn +vrk tPK udp cFw bGU bGU -pmM -cYw +hSD +aWq bGU bGU trI @@ -62216,19 +55477,19 @@ wUU "} (148,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hQx nsN wlB lTg @@ -62259,22 +55520,22 @@ uHD wlB lTg dOl -iQr +art wlB kgp kgp wlB cFw -iUH -wfh -jks +nhN +qcg +aFv nwq wop gDr cFw cFw -jks -jks +aFv +aFv udp cFw nwq @@ -62283,7 +55544,7 @@ nwq nwq cFw nwq -tkh +cTD nwq bGU bGU @@ -62295,7 +55556,7 @@ rvD bGU bGU bGU -pYK +lLl bGU rvD bLV @@ -62319,13 +55580,13 @@ eyt eyt qIF uqW -gaJ -tVj +cDu +afM qfu -eQI -tVj -tVj -tVj +bZP +afM +afM +afM eyt eyt eyt @@ -62398,19 +55659,19 @@ wUU "} (149,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPW +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +hQx nsN wlB wlB @@ -62441,7 +55702,7 @@ lTg wlB lTg wlB -iQr +art kgp kgp kgp @@ -62455,7 +55716,7 @@ cFw cFw cFw cFw -jks +aFv cFw fSa fSa @@ -62474,7 +55735,7 @@ trI bGU bLV bGU -elP +sCQ bGU rvD bGU @@ -62483,13 +55744,13 @@ bGU bGU bGU rvD -pYK +lLl bGU bGU bGU bGU bGU -elP +sCQ rvD bGU bGU @@ -62503,9 +55764,9 @@ tXu tXu ouy ouy -uon -kvz -peu +opk +pnt +dYQ ouy ouy tXu @@ -62516,8 +55777,8 @@ tXu tXu tXu tXu -vqG -tVj +hqZ +afM kbQ qIF qfu @@ -62580,19 +55841,19 @@ wUU "} (150,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -wLB +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +sXA nsN hPq wlB @@ -62623,10 +55884,10 @@ uHD uHD lTg lTg -iQr -aQN +art +rsY kgp -nCl +cgm lTg cFw nwq @@ -62661,7 +55922,7 @@ bGU lzT bGU rvD -uFq +hqe bGU bGU bGU @@ -62683,11 +55944,11 @@ eyt eyt eyt eyt -qTh +oVN ouy -qaX -rTi -rTi +gZs +jep +jep ouy nhI vjO @@ -62698,8 +55959,8 @@ oAJ liz vDP ouy -cwk -sCp +cTb +lrM kkc vqK kbQ @@ -62762,26 +56023,26 @@ wUU "} (151,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -wBp +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +uuY nsN wlB -qNu +cIF lTg wlB lTg -mdg +nYo lTg lTg lTg @@ -62804,11 +56065,11 @@ lTg lTg lTg lTg -iQr -iQr -aQN +art +art +rsY wlB -nCl +cgm wlB cFw ykU @@ -62827,7 +56088,7 @@ pgn kgA nwq kyp -oWf +tcV kyp kyp kyp @@ -62879,12 +56140,12 @@ fPJ bGU oBq kjr -kVE -ibi -dRI -jrv -fZP -vqG +eQp +sjd +lSU +jUw +rmx +hqZ pGs pGs pGs @@ -62944,18 +56205,18 @@ wUU "} (152,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI wHt mtT wlB @@ -62974,12 +56235,12 @@ lTg lTg wlB gjC -mdg +nYo lTg lTg lTg lTg -ghW +mhq wlB lTg wlB @@ -62987,19 +56248,19 @@ wlB lTg wlB wlB -iQr -aQN +art +rsY wlB -nCl +cgm wlB cFw cFw -wfh -agn +qcg +vrk nwq cFw cFw -qTE +lCN nNB cFw cFw @@ -63014,8 +56275,8 @@ cFh kyp elI fWd -dRs -dRs +jiI +jiI pjD dTG cFh @@ -63061,11 +56322,11 @@ huE lzT bGU rKS -vEi -dir -xHz -tVj -xcz +llS +dNT +tGh +afM +jDm pGs pGs pGs @@ -63126,18 +56387,18 @@ wUU "} (153,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD iWj wlB lTg @@ -63147,7 +56408,7 @@ wlB wlB lTg wlB -ghW +mhq wlB wlB wlB @@ -63170,14 +56431,14 @@ wlB lTg wlB wlB -aQN -aQN -nCl +rsY +rsY +cgm wlB cFw nwq ihY -vlL +cHX gcB jNE cFw @@ -63195,10 +56456,10 @@ dTG kyp kyp hds -exX -xFb -ulb -dRs +qXM +jvH +qli +jiI qvS hWv bGU @@ -63207,7 +56468,7 @@ rvD lzT bGU vNB -elP +sCQ bGU bGU bGU @@ -63216,7 +56477,7 @@ bGU bGU rvD bGU -uFq +hqe bGU rvD bGU @@ -63228,7 +56489,7 @@ bGU bGU bGU kyD -uFq +hqe qZJ bGU kyD @@ -63243,9 +56504,9 @@ huE lzT lzT gzm -rTi -sCp -inV +jep +lrM +tDM ouy ouy huF @@ -63308,25 +56569,25 @@ wUU "} (154,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD rJv rXk wlB wlB wlB wlB -ghW +mhq wlB wlB wlB @@ -63345,7 +56606,7 @@ phk wlB wlB bnH -mdg +nYo wlB wlB lTg @@ -63354,7 +56615,7 @@ wlB lTg hPq kgp -nCl +cgm wlB nwq cFw @@ -63365,22 +56626,22 @@ ihY nwq nwq wUF -oWf +tcV lci kyp kyp nCF kGJ plq -dRs +jiI qvS kyp -hEv +bLm hds -ulb -dRs -dRs -dRs +qli +jiI +jiI +jiI qvS kyp bGU @@ -63420,7 +56681,7 @@ kyD bGU bGU kyD -pYK +lLl fFw pYI huE @@ -63490,19 +56751,19 @@ wUU "} (155,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +uuY nsN tLS wlB @@ -63517,7 +56778,7 @@ wlB wlB wlB lTg -mdg +nYo wlB xCZ wlB @@ -63536,7 +56797,7 @@ wlB lTg kgp kgp -aQN +rsY wlB kyp kyp @@ -63554,17 +56815,17 @@ kyp kyp cFh hds -dRs +jiI qvS kyp kyp hds -dRs -xFb -xFb -xFb +jiI +jvH +jvH +jvH qvS -uWo +wVp bGU rvD bGU @@ -63576,7 +56837,7 @@ bGU lzT lzT bGU -pYK +lLl bLV bGU bGU @@ -63672,19 +56933,19 @@ wUU "} (156,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY nsN wlB wlB @@ -63695,32 +56956,32 @@ wlB lTg lTg wlB -qNu +cIF wlB wlB wlB wlB wlB pDl -dyl +ftQ lTg aCW wlB wlB -qNu +cIF lTg wlB lTg wlB lTg -aQN -ayx +rsY +mJl kgp kgp kyP -aQN +rsY lTg -iHN +tOD kyp kyp kyp @@ -63736,15 +56997,15 @@ cFh kyp kyp hds -dRs +jiI qvS cFh kyp hds -ulb -dRs -xFb -xFb +qli +jiI +jvH +jvH pjD dTG bGU @@ -63854,19 +57115,19 @@ wUU "} (157,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -rUa -wBp +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +uUQ +uuY nsN eNk wlB @@ -63884,9 +57145,9 @@ lTg wlB cFZ nti -ola +gvv ayF -ueB +wai lTg wlB lTg @@ -63895,12 +57156,12 @@ wlB wlB wlB wlB -aQN -aQN +rsY +rsY tMZ pvQ lTg -aQN +rsY wlB kyp cFh @@ -63918,20 +57179,20 @@ elI jek jek fWd -xFb +jvH qvS cFh kyp hds -dRs -xFb -tHc -xFb -dRs +jiI +jvH +aUp +jvH +jiI pjD gPi xfQ -bUP +xPY veV jTR bGU @@ -63953,9 +57214,9 @@ bGU rvD lzT bGU -elP +sCQ bLV -pYK +lLl bGU bGU bGU @@ -63969,7 +57230,7 @@ bGU kyD bGU huE -uFq +hqe bGU huE bGU @@ -64036,21 +57297,21 @@ wUU "} (158,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +diF nsN -iFc +uNL qAy lTg lTg @@ -64058,7 +57319,7 @@ wlB wlB wlB wlB -ghW +mhq lTg wlB gjC @@ -64066,7 +57327,7 @@ wlB lTg yjH mUv -hgc +gIZ sZd wlB gOp @@ -64074,10 +57335,10 @@ wlB qNX rXk wlB -ghW +mhq kAH wlB -aQN +rsY tMZ lTg tmZ @@ -64089,32 +57350,32 @@ kyp jTj elI fWd -xFb -xFb -dRs +jvH +jvH +jiI qvS kyp kyp kyp hds -exX -dRs -xFb -dRs +qXM +jiI +jvH +jiI qvS cFh cFh hds -dRs -xFb -xFb -xFb -dRs -dRs -dRs -bUP -bUP -bUP +jiI +jvH +jvH +jvH +jiI +jiI +jiI +xPY +xPY +xPY ghN rvD bGU @@ -64122,7 +57383,7 @@ qoI gPi gPi jTR -elP +sCQ bGU lzT lzT @@ -64188,16 +57449,16 @@ bsf bsf bsf avD -mqe -mqe +cOX +cOX avD -hRs +tpx cHV wsG -hRs +tpx avD -mqe -mqe +cOX +cOX avD bsf bsf @@ -64218,19 +57479,19 @@ wUU "} (159,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +xAC nBc tmZ rXk @@ -64249,7 +57510,7 @@ tmZ rXk wlB wlB -aQN +rsY lTg kAH wlB @@ -64259,50 +57520,50 @@ wlB lTg wlB wlB -aQN -aQN +rsY +rsY tMZ -pTI -rnL -pdK +wmc +eOd +hCb pjD jek jek jek fWd -xFb -xFb -xFb -xFb +jvH +jvH +jvH +jvH pjD jek jek jek fWd -xFb -xFb -dRs -xFb +jvH +jvH +jiI +jvH qvS kyp kyp hds -dRs -dRs -dRs -xFb -dRs -dRs -xFb -xFb -xFb -bUP +jiI +jiI +jiI +jvH +jiI +jiI +jvH +jvH +jvH +xPY ghN bGU bGU ejM -bUP -bUP +xPY +xPY veV jTR bGU @@ -64340,7 +57601,7 @@ pYI lzT lzT bGU -pYK +lLl pYI qZJ kyD @@ -64370,16 +57631,16 @@ bsf bsf avD avD -uvd -lFT +wjC +qAD avD -kjI -snS -snS -kjI +agC +gLS +gLS +agC avD -qcC -uvd +wZL +wjC avD avD bsf @@ -64400,21 +57661,21 @@ wUU "} (160,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -pdK -pdK +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +hCb +hCb jJn wlB wlB @@ -64425,9 +57686,9 @@ nBc tmZ tmZ sXc -pdK -pdK -pdK +hCb +hCb +hCb nsN wlB tLS @@ -64444,48 +57705,48 @@ wlB lTg tMZ fbw -pdK -pdK -pdK -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb +hCb +hCb +hCb +jvH +jvH +jvH +jvH +jiI +jvH +jvH +jiI +jvH +jvH +jiI +jvH +jiI +jvH +jiI +jiI +jvH +jvH pjD jek jek fWd -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -bUP +jiI +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +xPY ghN bGU ylB ejM -bUP -xFb -bUP +xPY +jvH +xPY veV jTR bGU @@ -64494,7 +57755,7 @@ bGU lzT bGU bGU -pYK +lLl bGU bGU bGU @@ -64510,10 +57771,10 @@ bGU rqg gPi xeU -dRs -spv -spv -aXn +jiI +uJi +uJi +eIq kyj gPi bko @@ -64551,18 +57812,18 @@ bsf bsf bsf avD -fFK -uvd -smx -aCl -kjI -kjI -kjI -kjI -aCl -nzb -uvd -uvd +csB +wjC +igP +xlW +agC +agC +agC +agC +xlW +oYj +wjC +wjC avD bsf bsf @@ -64582,34 +57843,34 @@ wUU "} (161,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -wBp -rnL -pdK +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +uuY +eOd +hCb nBc tmZ tmZ tmZ tmZ sXc -rnL -pdK -pdK -pdK -urD -rnL -pdK +eOd +hCb +hCb +hCb +wJn +eOd +hCb nBc tmZ tmZ @@ -64626,49 +57887,49 @@ wlB wlB pvQ tMZ -pdK -pdK -pdK -dRs -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -dRs -dRs -byC -xFb -dRs -xFb -xFb -xFb -exX -xFb -bUP +hCb +hCb +hCb +jiI +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jiI +kgG +jvH +jvH +jvH +jvH +jvH +jvH +kgG +jvH +jiI +jiI +jiI +jiI +jiI +kgG +jvH +jiI +jvH +jvH +jvH +qXM +jvH +xPY veV gPi gPi xfQ -bUP -xFb -bUP -bUP +xPY +jvH +xPY +xPY veV jTR bGU @@ -64689,26 +57950,26 @@ bko gPi bko gPi -wts -dRs -spv -dRs -spv -spv -spv -dRs -dRs -spv +jFO +jiI +uJi +jiI +uJi +uJi +uJi +jiI +jiI +uJi ghN pZS kyD bGU bGU pZS -vXG +sIw bGU bGU -uFq +hqe rvD bGU rvD @@ -64733,18 +57994,18 @@ bsf bsf bsf avD -pBf -fFK -bye +ilO +csB +mil avD -fJI -kjI -kjI -vnb +cvt +agC +agC +voM avD -gBM -uvd -uvd +cYh +wjC +wjC avD bsf bsf @@ -64764,42 +58025,42 @@ wUU "} (162,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -lze -wBp -xVw -mPW -bBV -mPW -xVw -wBp -wBp -wBp -bBV -mPW -mPW -wLB -wBp -mPW -wBp -xVw -rYC -xVw -wBp -mPW -wBp -bBV +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uao +uuY +xAC +hQx +yaK +hQx +xAC +uuY +uuY +uuY +yaK +hQx +hQx +sXA +uuY +hQx +uuY +xAC +diF +xAC +uuY +hQx +uuY +yaK rJv tWT uxM @@ -64808,50 +58069,50 @@ tWT uxM loO ifO -wBp -xVw -rYC -xVw -wBp -wBp -xVw -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -wBp -xVw -rYC -wBp -mPW -wLB -wBp -mPW -wLB -bBV -wLB -mPW -wBp -xFb -xFb -bUP -bUP -bUP -bUP -hwE -xFb -xFb -nKR -bUP +uuY +xAC +diF +xAC +uuY +uuY +xAC +uuY +uuY +diF +xAC +uuY +uuY +uuY +uuY +diF +xAC +uuY +uuY +uuY +uuY +xAC +diF +uuY +hQx +sXA +uuY +hQx +sXA +yaK +sXA +hQx +uuY +jvH +jvH +xPY +xPY +xPY +xPY +pAH +jvH +jvH +ooB +xPY veV gPi gPi @@ -64867,20 +58128,20 @@ bGU qoI gPi xfQ -spv -dRs -esA -dRs -esA -dRs -spv -dRs -dRs -spv -spv -dRs -spv -spv +uJi +jiI +eFQ +jiI +eFQ +jiI +uJi +jiI +jiI +uJi +uJi +jiI +uJi +uJi ghN gRj bGU @@ -64890,7 +58151,7 @@ pZS kyD qhO kyD -cYw +aWq bGU bGU rvD @@ -64920,8 +58181,8 @@ avD avD avD avD -lms -lms +xlJ +xlJ avD avD avD @@ -64946,97 +58207,97 @@ wUU "} (163,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -cJL -mPk -mPk -mPk -pRa -mPk -rUa -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -pRa -rUa -pRa -pRa -mPk -pRa -pRa -rUa -pRa -pRa -uhi +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +tXB +utI +tXB +tXB +tXB +fbD +tXB +uUQ +tXB +tXB +tXB +tXB +utI +tXB +tXB +tXB +tXB +fbD +uUQ +fbD +fbD +tXB +fbD +fbD +uUQ +fbD +fbD +iZu kkF -mPk -mPk -mPk -mPk -cJL -mPk -mPk -cJL -mPk -cJL -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -pRa -mPk -mPk -mPk -rUa -pRa -wLB -dRs -xFb -xFb -bUP -xFb -bUP -xFb -xFb -xFb -xFb -bUP -bUP -bUP -bUP +tXB +tXB +tXB +tXB +utI +tXB +tXB +utI +tXB +utI +tXB +tXB +tXB +tXB +utI +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +tXB +tXB +fbD +tXB +tXB +tXB +uUQ +fbD +sXA +jiI +jvH +jvH +xPY +jvH +xPY +jvH +jvH +jvH +jvH +xPY +xPY +xPY +xPY veV gPi gPi @@ -65047,22 +58308,22 @@ gPi gPi gPi xfQ -bUP -bUP -spv -dRs -spv -ulb -spv -dRs -dRs -esA -spv -spv -dRs -dRs -spv -dRs +xPY +xPY +uJi +jiI +uJi +qli +uJi +jiI +jiI +eFQ +uJi +uJi +jiI +jiI +uJi +jiI veV bko gPi @@ -65097,18 +58358,18 @@ bsf bsf bsf avD -qxb -aEg -snS -qxb +xnv +xuG +gLS +xnv brT -nEE -kjI +ckt +agC brT -qxb -aEg -snS -qxb +xnv +xuG +gLS +xnv avD bsf bsf @@ -65128,130 +58389,130 @@ wUU "} (164,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -cJL -mPk -mPk -mPk -mPk -rUa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +fbD +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +utI +tXB +tXB +tXB +tXB +uUQ kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPW -exX -xFb -xFb -xFb -xFb -xFb -xFb -xFb -ulb -dRs -xFb -dRs -xFb -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -bUP -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -dRs -spv -dRs -dRs -spv -hwE +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hQx +qXM +jvH +jvH +jvH +jvH +jvH +jvH +jvH +qli +jiI +jvH +jiI +jvH +xPY +xPY +xPY +xPY +xPY +xPY +xPY +xPY +xPY +xPY +jiI +jiI +uJi +jiI +jiI +uJi +jiI +jiI +uJi +jiI +jiI +jiI +jiI +jiI +jiI +uJi +jiI +jiI +uJi +pAH ghN pZS -lYD -fTh +pfJ +dIL kyD bGU bGU @@ -65279,18 +58540,18 @@ mMz bsf bsf avD -oWU -kjI -jub -kjI -szZ -kjI -kjI -szZ -kjI -kjI -jub -kjI +qWr +agC +pyN +agC +uTC +agC +agC +uTC +agC +agC +pyN +agC avD bsf bsf @@ -65310,131 +58571,131 @@ wUU "} (165,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -dRs -dRs -spv -dRs -dRs -spv -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -spv -dRs -dRs +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +xAC +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +eFQ +jiI +jiI +uJi +jiI +jiI +uJi +jiI +jiI +jiI +jiI +jiI +uJi +uJi +jiI +uJi +jiI +jiI aaG dkS -qlw -tjn -pmM +tJF +clo +hSD bGU qZJ pGs @@ -65457,22 +58718,22 @@ bsf mMz sOw sOw -iwV +pgt avD bsf avD -qxb -snS -pcH -qxb +xnv +gLS +okc +xnv brT -kjI -kjI +agC +agC brT -qxb -snS -snS -qxb +xnv +gLS +gLS +xnv avD bsf sOw @@ -65492,133 +58753,133 @@ wUU "} (166,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -xFb -xFb -dRs -dRs -ulb -dRs -dRs -dRs -dRs -dRs -dRs -spv -esA -dRs -dRs -spv -dRs -dRs -dRs -spv -spv -dRs -dRs -fPy -spv -dRs -spv -dRs -dRs -esA -ihC +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +diF +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jiI +jvH +jvH +jvH +jvH +jiI +jiI +qli +jiI +jiI +jiI +jiI +jiI +jiI +uJi +eFQ +jiI +jiI +uJi +jiI +jiI +jiI +uJi +uJi +jiI +jiI +aPg +uJi +jiI +uJi +jiI +jiI +eFQ +gHd ghN -pmM -hTX -evW -pYK -elP +hSD +wuF +mQn +lLl +sCQ rvD pGs pGs @@ -65638,9 +58899,9 @@ gNE gNE avD ulv -uvd -uvd -aEQ +wjC +wjC +uuI avD avD brT @@ -65648,8 +58909,8 @@ brT brT brT brT -rco -rco +wEl +wEl brT brT brT @@ -65658,8 +58919,8 @@ brT avD avD ofJ -kEK -uvd +aZU +wjC crq gFH mMz @@ -65674,127 +58935,127 @@ wUU "} (167,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -xFb -dRs -xFb -xFb -dRs -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -spv -spv -dRs -dRs -dRs -spv -esA -spv -spv -dRs -dRs -esA -dRs -esA -dRs -bUP +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +xAC +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jvH +jiI +jvH +jvH +jiI +jvH +jvH +jiI +jiI +jiI +jiI +jiI +jiI +jiI +eFQ +uJi +jiI +jiI +uJi +uJi +jiI +jiI +jiI +uJi +eFQ +uJi +uJi +jiI +jiI +eFQ +jiI +eFQ +jiI +xPY ghN bGU trI @@ -65821,27 +59082,27 @@ bsf sOw mol mol -fof +fqv avD -vNT -vNT -xka -vNT -vNT +kaK +kaK +oSn +kaK +kaK brT -snS -kjI -kjI -snS +gLS +agC +agC +gLS brT -rmS -rmS -xka -fbW -rnj +nYP +nYP +oSn +tRk +nPY oJX -pqf -uvd +vIP +wjC ulv gFH bsf @@ -65856,127 +59117,127 @@ wUU "} (168,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -xFb -xFb -byC -xFb -dRs -dRs -dRs -exX -dRs -exX -dRs -esA -dRs -lxs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -dRs -dRs -bUP +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +kgG +jvH +jvH +jvH +jvH +jvH +jvH +kgG +jvH +jvH +jvH +kgG +jvH +jvH +jvH +kgG +jvH +jiI +jiI +jiI +qXM +jiI +qXM +jiI +eFQ +jiI +fkO +jiI +jiI +eFQ +uJi +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +uJi +uJi +jiI +jiI +xPY veV jTR bGU @@ -66001,29 +59262,29 @@ bsf bsf mMz sOw -kEK -uvd -uvd +aZU +wjC +wjC brT -kjI -snS -xka -snS -kjI -rco -sUG -kjI -kjI -qpD -lvS -kjI -snS -xka -nFy -ojF +agC +gLS +oSn +gLS +agC +wEl +xEN +agC +agC +cYX +xaT +agC +gLS +oSn +sZi +gpl brT -uvd -uvd +wjC +wjC crq gFH bsf @@ -66038,128 +59299,128 @@ wUU "} (169,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -wBp -wLB -mPW -wLB -bBV -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -xVw -wBp -wBp -wBp -rYC -xVw -wBp -wBp -wBp -bBV -wBp -xBH -dRs -dRs -dRs -dRs -dRs -dRs -esA -spv -dRs -dRs -dRs -dRs -spv -esA -esA -dRs -dRs -dRs -bUP -bUP +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +uuY +sXA +hQx +sXA +yaK +xAC +uuY +uuY +uuY +xAC +uuY +diF +uuY +xAC +uuY +uuY +uuY +diF +xAC +uuY +uuY +uuY +yaK +uuY +lRQ +jiI +jiI +jiI +jiI +jiI +jiI +eFQ +uJi +jiI +jiI +jiI +jiI +uJi +eFQ +eFQ +jiI +jiI +jiI +xPY +xPY ghN bGU bGU @@ -66183,30 +59444,30 @@ bsf bsf bsf sOw -uvd +wjC crq -uvd +wjC brT -bPx -snS -xka -snS -cRn +njr +gLS +oSn +gLS +jRc brT -czG -kjI -kjI -snS +srw +agC +agC +gLS brT -kjI -snS -xka -ndp -kjI +agC +gLS +oSn +sgw +agC brT -uvd -kEK -uvd +wjC +aZU +wjC gFH bsf bsf @@ -66220,128 +59481,128 @@ wUU "} (170,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -mPk -mPk -cJL -mPk -tTq -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -spv -spv -spv -spv -spv -spv -dRs -dRs -dRs -dRs -bUP -ucL +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +utI +tXB +tXB +tXB +tXB +tXB +utI +tXB +vDt +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +uJi +uJi +uJi +uJi +uJi +uJi +jiI +jiI +jiI +jiI +xPY +rwg ghN bGU bGU @@ -66366,30 +59627,30 @@ bsf bsf sOw ulv -uvd -uvd +wjC +wjC brT -kjI -snS -xka -snS -kjI -mRs -snS -kjI -kjI -snS -mRs -kjI -snS -xka -eBS -kjI +agC +gLS +oSn +gLS +agC +srz +gLS +agC +agC +gLS +srz +agC +gLS +oSn +rRc +agC brT -uvd -uvd -uvd -lRz +wjC +wjC +wjC +jfC bsf gRU bsf @@ -66402,128 +59663,128 @@ wUU "} (171,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -rYC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +tXB +tXB +tXB +diF +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +xPY ghN bGU bGU @@ -66547,30 +59808,30 @@ bsf gRU bsf brT -kEK -uvd -uvd +aZU +wjC +wjC brT -kjI -kjI -rco -kjI -gms -mRs -snS -kjI -kjI -snS -mRs -gms -kjI -lvS -nkq -kjI +agC +agC +wEl +agC +iJp +srz +gLS +agC +agC +gLS +srz +iJp +agC +xaT +uLF +agC brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -66584,132 +59845,132 @@ wUU "} (172,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rUa -mPW -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -ulb -bUP +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uUQ +hQx +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +qli +xPY veV jTR bGU -akg +fLq bGU rvD rvD @@ -66729,30 +59990,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +wjC +wjC +wjC brT -kjI -snS -xka -snS -snS -mRs -snS -kjI -kjI -snS -mRs -snS -snS -xka -dBA -kjI +agC +gLS +oSn +gLS +gLS +srz +gLS +agC +agC +gLS +srz +gLS +gLS +oSn +eQt +agC brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -66766,129 +60027,129 @@ wUU "} (173,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -xVw -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +xAC +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +xPY ghN bGU bGU @@ -66911,30 +60172,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +wjC +wjC +wjC brT -cRn -vNT +jRc +kaK brT -snS -snS +gLS +gLS brT -snS -kjI -kjI -snS +gLS +agC +agC +gLS brT -snS -snS +gLS +gLS brT -qwU -kjI +mDW +agC brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -66948,129 +60209,129 @@ wUU "} (174,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -bUP +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +xPY veV jTR bGU @@ -67093,30 +60354,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +wjC +wjC +wjC brT -kjI -vNT +agC +kaK brT -reA +jWU brT brT -snS -kjI -kjI -snS +gLS +agC +agC +gLS brT brT -rmS +nYP brT -qwU -nnk +mDW +rpK brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -67130,130 +60391,130 @@ wUU "} (175,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -wBp -byC -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -bUP -bUP +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +uuY +kgG +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jvH +jvH +xPY +xPY ghN bGU vNB @@ -67275,30 +60536,30 @@ bsf bsf bsf gFH -uvd -uvd -uvd +wjC +wjC +wjC brT -kjI -vNT +agC +kaK brT brT brT -oKy -snS -kjI -kjI -snS -oKy +sLP +gLS +agC +agC +gLS +sLP brT brT brT -iqU -kjI +wHp +agC brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -67312,130 +60573,130 @@ wUU "} (176,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -rYC -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -xFb -dRs -dRs -tHc -jFL +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +diF +jvH +jvH +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jvH +jvH +jiI +jiI +aUp +vns ghN bGU bGU @@ -67457,30 +60718,30 @@ bsf bsf bsf brT -uvd -uvd -uvd +wjC +wjC +wjC brT -kqQ +jgs avD brT -cNJ -cNJ -snS -czG -kjI -kjI -snS -snS -cNJ -cNJ +agf +agf +gLS +srw +agC +agC +gLS +gLS +agf +agf brT avD -cFu +pnH brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -67494,130 +60755,130 @@ wUU "} (177,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pkl +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +hOF kkF -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -byC -xFb -xFb -xFb -dRs -dRs -dRs -dRs -dRs -dRs -dRs -xFb -dRs -dRs -xFb -dRs -xFb -dRs -dRs -xFb -xFb -jFL +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +kgG +jvH +jvH +jvH +jiI +jiI +jiI +jiI +jiI +jiI +jiI +jvH +jiI +jiI +jvH +jiI +jvH +jiI +jiI +jvH +jvH +vns ghN vNB rvD @@ -67639,30 +60900,30 @@ bsf bsf bsf brT -uvd -uvd -dHD +wjC +wjC +mYz avD avD avD -snS -snS -snS -snS -kjI -kjI -kjI -kjI -snS -snS -snS -snS +gLS +gLS +gLS +gLS +agC +agC +agC +agC +gLS +gLS +gLS +gLS avD avD avD -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -67676,130 +60937,130 @@ wUU "} (178,1,1) = {" wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB kkF -pkl -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xFb -xFb -dRs -xFb -byC -dRs -xFb -dRs -byC -xFb -xFb -dRs -byC -dRs -xFb -byC -xFb -xFb -xFb -byC -xFb -exX +hOF +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +jvH +jvH +jiI +jvH +kgG +jiI +jvH +jiI +kgG +jvH +jvH +jiI +kgG +jiI +jvH +kgG +jvH +jvH +jvH +kgG +jvH +qXM kyj jTR dlD @@ -67821,31 +61082,31 @@ bsf bsf bsf brT -uvd -uvd -uvd -wNI -xqS -rco -kjI -kjI -kjI -kjI -kjI -oKy -cUE -kjI -kjI -kjI -kjI -atM -pTc -lvt -lFr -uvd -uvd -uvd -iwV +wjC +wjC +wjC +faT +dYs +wEl +agC +agC +agC +agC +agC +sLP +isJ +agC +agC +agC +agC +pNg +oxV +oPu +bhq +wjC +wjC +wjC +pgt bsf bsf bsf @@ -67858,131 +61119,131 @@ wUU "} (179,1,1) = {" wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg hJB -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -wBp -xVw -rYC -xVw -wBp -wBp -wBp -xVw -wBp -rYC -wBp -wBp -xVw -wBp -wBp -rYC -wBp -xVw -wBp -rYC -xVw -wBp -xVw -rYC +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +uuY +xAC +diF +xAC +uuY +uuY +uuY +xAC +uuY +diF +uuY +uuY +xAC +uuY +uuY +diF +uuY +xAC +uuY +diF +xAC +uuY +xAC +diF enZ iAE pGs @@ -68003,30 +61264,30 @@ bsf bsf bsf brT -uvd -uvd -uvd -uvd -smx -rco -kjI -kjI -kjI -kjI -kjI -oKy -oKy -kjI -kjI -kjI -kjI -kjI -pTc -nzb -uvd -uvd -uvd -kEK +wjC +wjC +wjC +wjC +igP +wEl +agC +agC +agC +agC +agC +sLP +sLP +agC +agC +agC +agC +agC +oxV +oYj +wjC +wjC +wjC +aZU sOw bsf bsf @@ -68129,43 +61390,43 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -cJL -mPk -mPk -mPk -cJL -pRa -mPk -mPk -mPk -rUa -imk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +utI +tXB +tXB +tXB +utI +fbD +tXB +tXB +tXB +uUQ +gtR rJv iAE pGs @@ -68185,29 +61446,29 @@ bsf bsf bsf brT -uvd -uvd -uvd -eIr -uxi -rco -kjI -snS -kjI -snS -kjI -kjI -kjI -kjI -snS -kjI -snS -snS -rco -vPh -nau -uvd -uvd +wjC +wjC +wjC +nfG +dsI +wEl +agC +gLS +agC +gLS +agC +agC +agC +agC +gLS +agC +gLS +gLS +wEl +gBs +lQy +wjC +wjC ulv sOw bsf @@ -68311,44 +61572,44 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -imk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +fbD +fbD +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +fbD +gtR rJv pGs pGs @@ -68367,31 +61628,31 @@ bsf bsf bsf gFH -uvd -uvd -uvd +wjC +wjC +wjC brT avD avD avD brT -mvv -snS -snS -kjI -kjI -snS -czG -pjm +rtt +gLS +gLS +agC +agC +gLS +srw +cwu brT avD avD avD brT -uvd -uvd +wjC +wjC ulv -iwV +pgt bsf bsf bsf @@ -68493,47 +61754,47 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -xTA -pRa -wBp -fjv -mPW +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tdc +fbD +uuY +alU +hQx mZH kdq tWT @@ -68548,30 +61809,30 @@ hre bsf bsf bsf -lRz -uvd -uvd -uvd +jfC +wjC +wjC +wjC sOw bsf bsf -xXr -bPF -kjI -jUY -pwc -kjI -kjI -oKy -asf -ahD -idn +tHj +gzr +agC +izM +xmd +agC +agC +sLP +uGw +xCy +nZh avD bsf bsf brT -uvd -uvd +wjC +wjC ulv brT bsf @@ -68675,54 +61936,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -xTA -pRa -imk -cJL -xTA -pRa -pRa -pRa -mPk -rUa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +tdc +fbD +gtR +utI +tdc +fbD +fbD +fbD +tXB +uUQ +fbD iWj hre bsf @@ -68731,30 +61992,30 @@ hre bsf bsf gFH -kEK -uvd -uvd +aZU +wjC +wjC brT bsf bsf avD -jQG -kjI -jUY -oKy -kjI -kjI -pfL -asf -aIm -cwp +owf +agC +izM +sLP +agC +agC +uQQ +uGw +vei +sWq avD bsf bsf brT -uvd -uvd -uvd +wjC +wjC +wjC brT bsf bsf @@ -68857,54 +62118,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +tXB +fbD +fbD +tXB +fbD +fbD +fbD +fbD xDE kkv dsi @@ -68912,32 +62173,32 @@ dsi bsf bsf bsf -lRz +jfC eiK -uvd -uvd +wjC +wjC sOw bsf mMz -xXr -ydZ -kjI -jUY -rAf -kjI -kjI -oKy -asf -qLH -jYs -xXr +tHj +tdS +agC +izM +pob +agC +agC +sLP +uGw +duR +pyf +tHj bsf mMz -iwV -uvd -uvd -kEK -iwV +pgt +wjC +wjC +aZU +pgt bsf bsf bsf @@ -69039,54 +62300,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -mPk -imk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -mPk -rUa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +tXB +gtR +tXB +tXB +fbD +tXB +fbD +fbD +tXB +fbD +tXB +uUQ iWj tOV dsi @@ -69095,29 +62356,29 @@ hre gRU bsf gFH -dHD -kEK -uvd +mYz +aZU +wjC sOw mMz bsf -xXr -iSC -kjI -jUY -oKy -kjI -kjI -pfL -asf -vmY -mke -xXr +tHj +nRD +agC +izM +sLP +agC +agC +uQQ +uGw +kxQ +dCD +tHj bsf bsf brT -uvd -uvd +wjC +wjC ulv sOw bsf @@ -69221,54 +62482,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -imk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -mPk -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +gtR +tXB +fbD +fbD +fbD +fbD +tXB +fbD +fbD +fbD +tXB +fbD iWj tRN dsi @@ -69277,29 +62538,29 @@ hre bsf bsf brT -uvd -uvd -uvd -lRz +wjC +wjC +wjC +jfC kTu mMz avD brT -mvv -snS -snS -kjI -kjI -snS -snS -pjm +rtt +gLS +gLS +agC +agC +gLS +gLS +cwu brT -xXr +tHj mMz bsf brT -uvd -uvd +wjC +wjC ulv brT bsf @@ -69403,54 +62664,54 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -mPk -pRa -pRa -mPk -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +fbD +fbD +tXB +fbD +fbD +tXB +fbD +fbD +fbD rJv iAE hre @@ -69459,9 +62720,9 @@ hre bsf bsf sOw -uvd -uvd -uvd +wjC +wjC +wjC brT gRU mLJ @@ -69469,21 +62730,21 @@ avD brT brT brT -snS -jbR -kjI -snS +gLS +uTI +agC +gLS brT brT brT avD bhU bsf -iwV -uvd -uvd -uvd -iwV +pgt +wjC +wjC +wjC +pgt mMz bsf bsf @@ -69585,55 +62846,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -hfZ -mPk -mPk -pRa -mPk -mPk -pRa -pRa -mPk -jhK -mPk -mPk -cJL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +kfD +tXB +tXB +fbD +tXB +tXB +fbD +fbD +tXB +xxT +tXB +tXB +utI xDE aOG tRN @@ -69643,27 +62904,27 @@ bsf lqa sOw crq -uvd +wjC brT vdV tPE qza -kjI -rco -kjI -snS -aJp -kjI -snS -kjI -rco -kjI +agC +wEl +agC +gLS +tCS +agC +gLS +agC +wEl +agC vus xfD mMz sOw -uvd -uvd +wjC +wjC brT brT bsf @@ -69767,41 +63028,41 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq xce byF xce @@ -69817,36 +63078,36 @@ xce xce xce gBP -hXq -hXq -hXq -hXq -hXq +dpD +dpD +dpD +dpD +dpD qbX -iwV -uvd -uvd +pgt +wjC +wjC sOw bsf -jeT +mbx lbX -kjI -rco -kjI -dTe -kjI -kjI -kjI -kjI -qAd -kjI -xuX -tfC +agC +wEl +agC +vSl +agC +agC +agC +agC +cWw +agC +eMU +bYm bsf brT -uvd -uvd -iwV +wjC +wjC +pgt bsf bsf bsf @@ -69949,55 +63210,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl iWj bsf vxi @@ -70006,28 +63267,28 @@ hre vxi esK vBZ -lRz +jfC eiK sOw bsf jwf ehM -kjI -rco -eRQ -kjI -snS -snS -kjI -kjI -qAd -kjI +agC +wEl +noz +agC +gLS +gLS +agC +agC +cWw +agC cXa rYi bsf brT -uvd -kEK +wjC +aZU sOw bsf bsf @@ -70131,55 +63392,55 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl rJv sXn hre @@ -70196,21 +63457,21 @@ jXp avD avD brT -yaC -yaC +qqq +qqq brT brT -yaC -yaC +qqq +qqq brT avD avD xfD bsf sOw -uvd +wjC sOw -iwV +pgt bsf bsf bsf @@ -70313,56 +63574,56 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD rJv apG vxi @@ -70371,27 +63632,27 @@ dsi bsf pTO psk -iwV +pgt brT bsf bsf avD -vOa -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +snf +agC +agC +agC +gLS +gLS +agC +agC +agC +hXE avD bsf bsf sOw -kEK -iwV +aZU +pgt mMz bsf bsf @@ -70495,57 +63756,57 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD rJv iAE bsf @@ -70558,16 +63819,16 @@ sOw gNE gNE avD -bTN -asf -kjI -kjI -snS -snS -kjI -kjI -jUY -bTN +idb +uGw +agC +agC +gLS +gLS +agC +agC +izM +idb avD bsf bsf @@ -70701,34 +63962,34 @@ wUU wUU wUU wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD iWj bsf dsi @@ -70740,16 +64001,16 @@ gFY lqM lqM sOw -kEK -kjI -kjI -kjI -snS -snS -kjI -kjI -kjI -ueQ +aZU +agC +agC +agC +gLS +gLS +agC +agC +agC +hXE sOw bsf bsf @@ -70883,34 +64144,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD rJv iAE hre @@ -70922,15 +64183,15 @@ bsf bsf vxi sOw -uvd -uvd -kjI -kjI -snS -snS -kjI -kjI -kEK +wjC +wjC +agC +agC +gLS +gLS +agC +agC +aZU avD sOw bsf @@ -71065,35 +64326,35 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -rUa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +uUQ iWj bsf hre @@ -71105,14 +64366,14 @@ bsf bsf nEY avD -uvd -kjI -qEn +wjC +agC +enP avD avD -kjI +agC eiK -uvd +wjC sOw bsf bsf @@ -71247,34 +64508,34 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa -pRa -pRa -eXw -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD +fbD +fbD +gKl +fbD +fbD +fbD ovT uNz vxi @@ -71287,13 +64548,13 @@ bsf bsf lVf iyk -kkw +eIH eiK -hoU -fxR -fxR -kjI -kjI +gva +fkV +fkV +agC +agC fcF sOw bsf @@ -71429,17 +64690,17 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -itL +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +ehq lwm tjs lwm @@ -71457,11 +64718,11 @@ tjs lwm lwm hjK -stK -hXq -hXq -hXq -hXq +qnK +dpD +dpD +dpD +dpD qCT qCT qCT @@ -71470,13 +64731,13 @@ bsf bsf fVw sOw -kjI -kjI -kjI -bPx -kjI +agC +agC +agC +njr +agC ulv -uvd +wjC sOw uaU bsf @@ -71611,33 +64872,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -jhK -mPk -pRa -mPk -mPk -pRa -pRa -mPk -vjZ -aAr -fGN -wFJ -xrl -pRa -hfZ +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +xxT +tXB +fbD +tXB +tXB +fbD +fbD +tXB +pqL +pVb +spx +fFT +iRr +fbD +kfD iWj tRN hre @@ -71651,13 +64912,13 @@ qCT gRU bsf luu -iwV +pgt crq -kjI -hoU -kjI +agC +gva +agC ulv -kEK +aZU sOw nmH hmg @@ -71793,33 +65054,33 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -mPk -mPk -pRa -pRa -pRa -pRa -itL -kif -fGN -fGN -xrl -pRa -mPk +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +tXB +tXB +fbD +fbD +fbD +fbD +ehq +dPu +spx +spx +iRr +fbD +tXB xDE hre gOj @@ -71835,10 +65096,10 @@ bsf bsf hte ulv -kZl +uIQ ulv -hoU -kZl +gva +uIQ ulv avD doP @@ -71975,32 +65236,32 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -kWf -cKB -mdM -mdM -hjf -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +tXB +fbD +oUt +lZS +gKy +gKy +kzj +fbD fDH ymb hre @@ -72017,10 +65278,10 @@ bsf bBt bsf avD -gRN +wGp crq -uli -kEK +gzH +aZU sOw lqM vRW @@ -72157,31 +65418,31 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -pRa -pRa -mPk -pRa -pRa -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +fbD +fbD +tXB +fbD +fbD +fbD +fbD +fbD ovT ymb hre @@ -72201,7 +65462,7 @@ bsf hte sOw gFH -iwV +pgt sOw hte bsf @@ -72339,30 +65600,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -mPk -pRa -pRa -pRa -pRa -pRa -pRa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +tXB +fbD +fbD +fbD +fbD +fbD +fbD ovT dTu gOj @@ -72521,30 +65782,30 @@ cLP cLP cLP wUU -nvv -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -mPk -pRa -pRa -mPk -pRa -pRa -pRa -pRa -rUa +qrg +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +tXB +fbD +fbD +tXB +fbD +fbD +fbD +fbD +uUQ xDE hre tRN @@ -72703,29 +65964,29 @@ cLP cLP cLP wUU -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv -nvv +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg +qrg oTs vgH pGs @@ -72885,29 +66146,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk iax pGs pGs @@ -73067,29 +66328,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk iax pGs pGs @@ -73249,29 +66510,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk iax pGs pGs @@ -73431,29 +66692,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk iax pGs pGs @@ -73613,29 +66874,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -73795,29 +67056,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -73977,29 +67238,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -74159,29 +67420,29 @@ cLP cLP cLP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -74341,29 +67602,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -74523,29 +67784,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -74705,29 +67966,29 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -74887,21 +68148,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -75069,21 +68330,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs @@ -75251,21 +68512,21 @@ gsP gsP gsP wUU -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs -gKs +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk +mUk pGs pGs pGs diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index 5afdcb4095..2e0b8f0ad0 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -14,13 +14,6 @@ "aad" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior) -"aaf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aag" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/snow/brown_base/layer0, @@ -62,14 +55,6 @@ /obj/structure/bed/nest, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aap" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaq" = ( /obj/effect/decal/remains/xeno, /turf/open/auto_turf/snow/brown_base/layer0, @@ -81,16 +66,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aat" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead) "aau" = ( /obj/structure/platform/strata{ dir = 1 @@ -124,15 +99,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aaz" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/spray/cleaner, @@ -220,6 +186,14 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) +"aaN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "aaO" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -242,14 +216,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"aaR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaS" = ( /obj/structure/bedsheetbin, /obj/structure/machinery/light/small, @@ -264,10 +230,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aaV" = ( -/obj/item/fuelCell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "aaW" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -364,14 +326,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"abt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "abv" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -381,15 +335,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aby" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "abz" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -400,94 +345,9 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"abB" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "abC" = ( /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ug/interior/jungle/deep/minehead) -"abD" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"abE" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abG" = ( -/obj/item/fuelCell, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"abH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abI" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cdeathalarm_kit, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abJ" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/item/storage/box/attachments, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abL" = ( -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/surface/rack, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"abM" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "abN" = ( /obj/item/stack/rods, /obj/structure/bed/chair{ @@ -508,22 +368,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abP" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/exterior/paths/cabin_area) -"abQ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/exterior/paths/cabin_area) "abR" = ( /obj/structure/platform/strata{ dir = 1 @@ -534,121 +378,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"abS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"abT" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abV" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abW" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abX" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"abZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aca" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acb" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "acc" = ( /obj/structure/platform/strata, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acd" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "ace" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"acf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuelCell, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) "acg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -676,87 +416,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acj" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"ack" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acl" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acm" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acn" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aco" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acq" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acr" = ( -/obj/item/stack/rods, -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acs" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "act" = ( /obj/structure/inflatable/door, /turf/open/auto_turf/ice/layer1, @@ -790,132 +449,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"acx" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acz" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acA" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acB" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acC" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/fuelCell, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) -"acE" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acF" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acG" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acH" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"acI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acJ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acL" = ( -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"acN" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "acO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -934,27 +467,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"acR" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"acS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "acU" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"acV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "acW" = ( /obj/structure/bed/nest, /obj/effect/decal/cleanable/blood/gibs/core, @@ -965,94 +480,10 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"acY" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"acZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ada" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"add" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ade" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "adh" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) -"adi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"adj" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "adk" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -1079,11 +510,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"ado" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/cabin_area) "adq" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -1093,114 +519,32 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"ads" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"adu" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/area/strata/ag/exterior/nearlz2) -"adt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/minehead) -"adw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/minehead) -"ady" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adz" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/red2, /area/strata/ug/interior/jungle/deep/structures/res) +"adB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "adC" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"adD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"adE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"adF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"adG" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"adH" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) "adI" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata, @@ -1221,366 +565,57 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"adM" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "adN" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"adO" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"adP" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "adQ" = ( /turf/closed/wall/wood, /area/strata/ug/interior) "adS" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"adT" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adU" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "adW" = ( /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"adX" = ( -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"aen" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/cabin_area) +"aev" = ( +/obj/effect/landmark/corpsespawner/upp, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/gen/bball/nest) +"aez" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"aeJ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 6 }, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"aeK" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"aeL" = ( +/obj/structure/bedsheetbin, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/cabin_area) +"aeU" = ( +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"aeW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"adY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"adZ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aea" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeb" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aec" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aed" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"aee" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"aef" = ( -/obj/structure/inflatable/door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"aeh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aei" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aej" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aek" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aen" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/cabin_area) -"aep" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aer" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aes" = ( -/obj/structure/bed/nest, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"aeu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"aev" = ( -/obj/effect/landmark/corpsespawner/upp, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aex" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"aez" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"aeB" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeD" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aeE" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"aeJ" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 6 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aeK" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aeL" = ( -/obj/structure/bedsheetbin, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/cabin_area) -"aeM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aeN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"aeR" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeT" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeU" = ( -/obj/structure/flora/grass/tallgrass/ice, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aeW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/strata/ug/interior/jungle/deep/structures/res) -"aeX" = ( -/obj/structure/filingcabinet{ - layer = 2.9 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aeY" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp27" +"aeY" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp27" }, /area/strata/ug/interior/jungle/deep/structures/res) "aeZ" = ( @@ -1588,125 +623,14 @@ icon_state = "upp25" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afa" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afe" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aff" = ( /obj/item/lightstick/planted, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) -"afg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"afh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"afi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"afj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) "afk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ag/interior/outpost/gen/bball/nest) -"afl" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"afm" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"afn" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "afo" = ( /obj/structure/inflatable/door, /turf/open/gm/dirt, @@ -1717,50 +641,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"afr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"afs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aft" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) -"afu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "afv" = ( /obj/structure/platform/strata{ dir = 1 @@ -1774,13 +654,6 @@ icon_state = "upp22" }, /area/strata/ug/interior/jungle/deep/structures/res) -"afx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "afy" = ( /turf/closed/shuttle/ert{ icon_state = "upp23" @@ -1792,84 +665,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"afA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/item/device/megaphone, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afB" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afC" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"afG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"afH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "afI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -1885,57 +680,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"afK" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"afL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"afM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"afN" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"afO" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/gen/bball) -"afP" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) "afQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -1945,28 +689,6 @@ "afS" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"afT" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afU" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "afV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -1974,43 +696,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"afW" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"afX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"afY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "afZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aga" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "agb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -2026,49 +717,10 @@ "age" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"agf" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"agg" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"agh" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) "agi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"agl" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agm" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "agn" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/plating, @@ -2078,87 +730,11 @@ icon_state = "upp4" }, /area/strata/ug/interior/jungle/deep/structures/res) -"agp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agq" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agr" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ags" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agt" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agu" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "agv" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" }, /area/strata/ug/interior/jungle/deep/structures/res) -"agw" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"agx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agy" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"agz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "agA" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -2170,113 +746,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"agB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agC" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agD" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agH" = ( -/obj/structure/barricade/snow{ +"agH" = ( +/obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"agI" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/item/weapon/gun/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"agJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"agK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"agL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"agM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) "agN" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost/reinforced, @@ -2284,19 +759,6 @@ "agO" = ( /turf/open/space/basic, /area/space) -"agP" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"agQ" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "agR" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) @@ -2324,59 +786,9 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"ahd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahg" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/paths/cabin_area/central) -"ahh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahj" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -2399,107 +811,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahm" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahn" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/interior/outpost/gen/bball/nest) -"aho" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ahp" = ( -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahr" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) -"ahs" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"aht" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"ahu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahv" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/largecrate/guns/russian, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahw" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahx" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahy" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "ahz" = ( /obj/structure/barricade/snow{ dir = 8 @@ -2533,12 +851,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahJ" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahK" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/tearlake) @@ -2549,12 +861,6 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahM" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ahN" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -2562,81 +868,11 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"ahP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"ahQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) -"ahR" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "ahS" = ( /obj/item/stack/rods, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"ahT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahW" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ahX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "ahY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -2657,47 +893,27 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"aif" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "aig" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aih" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aii" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aij" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aik" = ( -/obj/item/storage/firstaid/adv, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ail" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aim" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" @@ -2734,46 +950,11 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"air" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ais" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ug/interior/jungle/deep/structures/res) -"ait" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiu" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiv" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aiw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -2786,78 +967,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"aiy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"aiz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "aiA" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"aiB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"aiC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "aiD" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"aiE" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"aiF" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"aiG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "aiH" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/strata_outpost/reinforced, @@ -2869,19 +990,6 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"aiJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "aiK" = ( /obj/structure/barricade/snow{ dir = 4 @@ -2893,28 +1001,6 @@ /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball) -"aiM" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aiN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aiO" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aiP" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -2929,42 +1015,12 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"aiU" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiV" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aiW" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aiX" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aiY" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aiZ" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, @@ -2985,12 +1041,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aje" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ajf" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -3000,42 +1050,12 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"ajg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/flight_control) "ajh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"aji" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"ajj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"ajk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/item/weapon/gun/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "ajl" = ( /obj/effect/decal/cleanable/blood, /turf/closed/wall/resin/strata/on_tiles, @@ -3046,66 +1066,10 @@ /obj/item/storage/backpack/lightpack, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/hive) -"ajn" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ajp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/jellysandwich, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ajr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pspoon, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ajs" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ajt" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "aju" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"ajv" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/disposals) "ajw" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -3115,271 +1079,70 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ajx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/lightreplacer, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajD" = ( -/obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ +"ajA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 4; - icon_state = "floor3" + icon_state = "p_stair_full" }, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "ajF" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"ajG" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajH" = ( -/obj/structure/bookcase, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajI" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ajJ" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ajK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"ajM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"ajL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "ajN" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"ajO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ajP" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"ajW" = ( +/obj/item/stack/rods, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"aka" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/cabin_area) +"ake" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/jungle/deep/minehead) +"akh" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1"; + opacity = 0 }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/area/strata/ug/interior/jungle/deep/structures/res) +"aki" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp1" }, -/area/strata/ag/interior/dorms/hive) -"ajQ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/area/strata/ug/interior/jungle/deep/structures/res) +"akj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/strata/ag/interior/dorms/hive) -"ajR" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/turf/open/floor/strata, +/area/strata/ug/interior/jungle/deep/structures/res) +"akk" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp3" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"ajS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window{ - pixel_y = 31 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/structure/machinery/door/window{ - pixel_y = 10 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 10 - }, -/obj/structure/window, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"ajT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"ajU" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"ajV" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajW" = ( -/obj/item/stack/rods, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"ajX" = ( -/obj/structure/closet/wardrobe/suit, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajY" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/suit/imperium_monk, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ajZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/clothing/suit/storage/bomber, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aka" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/cabin_area) -"akb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/mass_spectrometer, -/obj/item/device/matter_decompiler, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ake" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/jungle/deep/minehead) -"akf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akg" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akh" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_1"; - opacity = 0 - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aki" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata, -/area/strata/ug/interior/jungle/deep/structures/res) -"akk" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akl" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 5 +/area/strata/ug/interior/jungle/deep/structures/res) +"akl" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 5 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) @@ -3389,30 +1152,6 @@ opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"akn" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ako" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"akq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "akr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -3435,64 +1174,12 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/nearlz1) -"akt" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"aku" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"akv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"akw" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"akx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"aky" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) "akz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"akA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "akB" = ( /obj/structure/barricade/snow{ dir = 1 @@ -3502,19 +1189,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"akC" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"akD" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "akE" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -3531,28 +1205,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"akK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"akN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "akO" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating, @@ -3565,16 +1217,6 @@ }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"akQ" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "akR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball) @@ -3589,96 +1231,10 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"akU" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) -"akV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) -"akW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"akX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"akY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cubancarp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"ala" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fishfingers, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"alb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"ald" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"ale" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"alf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) +"alh" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "ali" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -3692,79 +1248,6 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alk" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"all" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alm" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aln" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Chunkeez Diner door" - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"alq" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"alr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"als" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "alv" = ( /obj/structure/barricade/snow, /obj/effect/decal/cleanable/blood, @@ -3776,131 +1259,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "aly" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/structures/res) "alz" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/nearlz1) -"alA" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/nearlz1) -"alB" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/nearlz1) -"alC" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/nearlz1) -"alD" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/nearlz1) -"alE" = ( -/obj/structure/lz_sign/sorokyne_sign/interior, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"alF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"alG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"alH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"alI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"alJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"alK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"alL" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"alM" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "alN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, @@ -3908,13 +1272,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"alQ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "alR" = ( /obj/structure/barricade/snow{ dir = 1 @@ -3925,93 +1282,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"alT" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alV" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"alZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amd" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ame" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) -"amf" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"amg" = ( -/obj/structure/surface/rack, -/obj/item/spacecash/c500, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ami" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) @@ -4040,72 +1314,18 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"amp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "amq" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"amr" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"ams" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"amt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "amu" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"amv" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "amw" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"amz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "amA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -4127,36 +1347,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"amL" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amM" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"amO" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "amP" = ( /obj/structure/machinery/shower{ dir = 1 @@ -4175,34 +1365,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"amY" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"amZ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ana" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "anb" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -4217,12 +1379,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"and" = ( -/obj/item/stool, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "ane" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/structures/res) @@ -4230,213 +1386,37 @@ /obj/item/storage/firstaid/adv, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"ang" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"anh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"ani" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "anj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"ank" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"anl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"anm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"ann" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"ano" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"anp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"anq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"anr" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/slug, -/obj/item/ammo_magazine/handful/shotgun/heavy/slug, -/obj/item/weapon/gun/shotgun/type23/riot, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"ant" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"anu" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "anw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"anx" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"anA" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"anC" = ( -/obj/item/device/megaphone, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "anE" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"anF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "anG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/personal_storage) -"anI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) "anJ" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) -"anK" = ( -/obj/structure/machinery/washing_machine, -/obj/item/facepaint/skull, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "anN" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"anP" = ( -/obj/structure/bedsheetbin, -/obj/item/device/binoculars/range, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "anR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -4449,19 +1429,6 @@ /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) -"anV" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"anW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aoa" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -4472,99 +1439,16 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aod" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aoi" = ( /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"aoj" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aok" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/strata/ag/interior/landingzone_1) -"aol" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aom" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aon" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"aoo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aop" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/canteen) -"aoq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/canteen) -"aor" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/canteen) -"aos" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"aot" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/research_decks/security) -"aou" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "aov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -4573,28 +1457,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"aox" = ( -/obj/structure/bed/chair/office/light{ +"aoy" = ( +/obj/structure/toilet{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/research_decks/security) -"aoz" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "aoA" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -4603,89 +1475,6 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) -"aoC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aoE" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"aoF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aoH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aoI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aoJ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aoO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aoP" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -4702,61 +1491,21 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"aoR" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/minehead) "aoT" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"aoU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoV" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/holobadge, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aoY" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" +"aoZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "apc" = ( /obj/structure/machinery/floodlight/landing, /turf/open/asphalt/cement, @@ -4769,550 +1518,82 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"apf" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"aph" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"api" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"apj" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"apk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"apl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"apm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) -"app" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"apr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"aps" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"apt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"apv" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/exterior/landingzone_2) -"apw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"apx" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"apy" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"apz" = ( -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/cabin_area) -"apA" = ( -/obj/effect/particle_effect/steam, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"apC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/radiation, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"apD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"apE" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/suit/bluetag, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apF" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apI" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"apK" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"apL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"apM" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"apN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"apO" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"apP" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/structures/res) -"apS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"apT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, -/turf/open/floor/plating, -/area/strata/ag/interior/landingzone_1) -"apV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"apW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"apX" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"apY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"apZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aqa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aqb" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aqc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aqd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"aqe" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"aqf" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"aqg" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/dorms) -"aqh" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aqi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"aqj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/research_decks/security) -"aqk" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/research_decks/security) -"aql" = ( -/obj/structure/machinery/weather_siren, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/research_decks/security) -"aqm" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/research_decks/security) -"aqn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/research_decks/security) -"aqo" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/research_decks/security) -"aqp" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/research_decks/security) -"aqq" = ( -/obj/item/lightstick/planted, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/restricted/devroom) -"aqr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/greengrid, -/area/strata/ag/exterior/research_decks) -"aqs" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/research_decks/security) -"aqt" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/research_decks/security) -"aqv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/obj/item/storage/box/cups, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aqy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aqz" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aqA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"aqB" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aqC" = ( -/obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/security) -"aqD" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/security) -"aqG" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqI" = ( -/obj/structure/bed/chair{ +"apg" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqJ" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqK" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "floor3" +/obj/item/reagent_container/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" }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqL" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"apz" = ( +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/cabin_area) +"apA" = ( +/obj/effect/particle_effect/steam, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata/metal{ + dir = 8 }, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"apI" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"aqM" = ( -/obj/item/stool, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" +"apP" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/structures/res) +"apT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1, +/turf/open/floor/plating, +/area/strata/ag/interior/landingzone_1) +"aqg" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/dorms) +"aqj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata, +/area/strata/ag/interior/research_decks/security) +"aqk" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/research_decks/security) +"aql" = ( +/obj/structure/machinery/weather_siren, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/research_decks/security) +"aqm" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/research_decks/security) +"aqp" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/research_decks/security) +"aqq" = ( +/obj/item/lightstick/planted, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/restricted/devroom) +"aqr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/greengrid, +/area/strata/ag/exterior/research_decks) "aqN" = ( /obj/item/lightstick/planted, /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted/devroom) -"aqP" = ( -/obj/item/device/aicard, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"aqQ" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aqR" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -5325,101 +1606,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"aqT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"aqU" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqV" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqW" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqX" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aqZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"arb" = ( -/obj/item/storage/belt/security/MP/UPP, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"arc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"ard" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) "are" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"arg" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ag/interior/dorms) -"arh" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ag/interior/dorms) -"ari" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ag/interior/dorms) "arj" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -5443,11 +1633,6 @@ /obj/structure/surface/rack, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aro" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/paths/north_outpost) "arp" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, @@ -5465,132 +1650,16 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"ars" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"art" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/evidence, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aru" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"arw" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"ary" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"arz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"arA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) "arB" = ( /obj/structure/machinery/camera/autoname{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"arC" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"arE" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"arG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/security) -"arH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "arI" = ( /obj/structure/sign/prop3, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen) -"arJ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "arK" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/strata_grass/layer0_mud_alt, @@ -5611,84 +1680,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"arO" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"arP" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "arQ" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) -"arR" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) "arS" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"arT" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"arU" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"arV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"arW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"arX" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"arY" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) "arZ" = ( /obj/structure/platform/strata{ dir = 1 @@ -5700,38 +1699,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/dorms) -"asb" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"asc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"asd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"ase" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ag/interior/dorms) "asf" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -5748,15 +1715,6 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"asi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "asj" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -5775,16 +1733,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"asm" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ag/exterior/research_decks) -"asn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ag/exterior/research_decks) "aso" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/effect/decal/cleanable/blood/gibs/core, @@ -5793,40 +1741,6 @@ "asp" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"asq" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"asr" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"ass" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "ast" = ( /obj/item/storage/box/donkpockets, /obj/structure/machinery/light/small, @@ -5846,320 +1760,45 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"asw" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"asx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/engi) -"asy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"asz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"asA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"asD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ug/interior/jungle/deep/structures/res) -"asE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"asF" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/security) -"asG" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"asJ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asK" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asL" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asN" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asO" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asT" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asU" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"asV" = ( -/obj/structure/surface/table/woodentable, -/obj/item/device/defibrillator, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) -"asW" = ( -/obj/item/stool, -/obj/item/frame/firstaid_arm_assembly, -/turf/open/floor/interior/tatami, -/area/strata/ag/interior/outpost/canteen) -"asX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"asY" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"asZ" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"ata" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/outpost/canteen) -"atb" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"atc" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"atd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"ate" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"atf" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/deep/minehead) -"atg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c500, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ath" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ati" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"atj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"atk" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"atl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement9" +"asx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/engi) +"asD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ug/interior/jungle/deep/structures/res) -"atm" = ( +"asF" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/security) +"asV" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/defibrillator, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) +"asW" = ( +/obj/item/stool, +/obj/item/frame/firstaid_arm_assembly, +/turf/open/floor/interior/tatami, +/area/strata/ag/interior/outpost/canteen) +"ata" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/structures/res) -"atn" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/outpost/canteen) +"atf" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/deep/minehead) "ato" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata{ @@ -6170,38 +1809,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"atp" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) -"atq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"atr" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"ats" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "att" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -6228,25 +1835,6 @@ /obj/structure/surface/rack, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"atz" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"atA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "atB" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -6271,37 +1859,12 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"atG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) "atI" = ( /obj/structure/machinery/camera/autoname{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"atJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"atL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "atO" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/cameras{ @@ -6309,13 +1872,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"atP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/coatrack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "atQ" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -6339,176 +1895,22 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"atU" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"atV" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/device/encryptionkey/dutch, -/obj/item/dogtag, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"atW" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "atY" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/deep/minehead) -"atZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ug/interior/jungle/deep/minehead) "aua" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aub" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"auc" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aud" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aue" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"auf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aug" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"auh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "aui" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"auj" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) -"auk" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"aul" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"aum" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"aun" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"auo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"aup" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"auq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aur" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aus" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "auv" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -6522,86 +1924,9 @@ "auz" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ug/interior/jungle/deep/structures/res) -"auA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"auB" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) "auC" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/canteen) -"auD" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"auE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"auF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"auH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"auI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"auJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"auK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "auL" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -6622,68 +1947,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"auP" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "auQ" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auU" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auV" = ( -/obj/item/clothing/gloves/white, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auW" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auX" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"auY" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "auZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -6708,34 +1975,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"avc" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"avd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"ave" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"avf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ug/interior/jungle/deep/minehead) "avg" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/strata, @@ -6752,99 +1991,23 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"avk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"avl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "avm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"avn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "avr" = ( /obj/item/weapon/wirerod, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"avs" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"avt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "avu" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"avv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"avw" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"avx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"avz" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/coatrack, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"avA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "avB" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -6852,291 +2015,64 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) -"avC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) -"avD" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"avE" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/dorms_quad) -"avF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/dorms_quad) -"avG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/dorms_quad) -"avH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/paths/dorms_quad) -"avJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"avK" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"avL" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/engi) -"avN" = ( -/obj/structure/machinery/weather_siren{ - dir = 1; - pixel_y = 28 - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/engi) -"avP" = ( -/obj/structure/closet/fireaxecabinet, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/engi) -"avQ" = ( -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"avR" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"avT" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"avU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"avV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"avW" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"avX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"avY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awa" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awb" = ( -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/cabin_area) -"awc" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"awe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"awf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awh" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"awi" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awk" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"avC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"avE" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/dorms_quad) +"avF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/dorms_quad) +"avG" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/dorms_quad) +"avH" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awm" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/asphalt/cement, +/area/strata/ag/exterior/paths/dorms_quad) +"avL" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/engi) +"avN" = ( +/obj/structure/machinery/weather_siren{ + dir = 1; + pixel_y = 28 }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"awo" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/engi) +"avO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"awp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"avP" = ( +/obj/structure/closet/fireaxecabinet, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/engi) +"awb" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/cabin_area) "awq" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/restricted/devroom) @@ -7160,23 +2096,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"awv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aww" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "awx" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -7210,30 +2129,6 @@ "awC" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/structures/res) -"awD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"awE" = ( -/obj/structure/surface/rack, -/obj/item/toy/deck, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"awF" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "awG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, @@ -7260,31 +2155,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"awL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"awM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "awN" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -7302,20 +2172,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"awQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/paths/adminext) "awR" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -7326,41 +2182,10 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"awS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/toy/deck, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"awT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "awU" = ( /obj/structure/closet/secure_closet/personal, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball) -"awW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "awX" = ( /obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ @@ -7381,13 +2206,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"axa" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "axb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -7396,33 +2214,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"axc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"axd" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"axe" = ( -/obj/structure/bed/chair, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"axf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "axg" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -7430,24 +2221,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"axi" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"axj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "axk" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, @@ -7455,148 +2228,25 @@ "axm" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball) -"axn" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"axp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"axq" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"axr" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"axt" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"axu" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "axv" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball) +"axy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "axz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"axA" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"axC" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"axD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"axE" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "axH" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"axJ" = ( -/obj/item/device/t_scanner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"axK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "axL" = ( /obj/structure/surface/table/woodentable, /obj/item/toy/deck, @@ -7613,73 +2263,6 @@ }, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"axN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/interior/tatami, -/area/strata/ag/interior/outpost/canteen) -"axO" = ( -/obj/item/reagent_container/food/drinks/shaker, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axP" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axQ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"axR" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"axS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"axT" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "axU" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -7692,14 +2275,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"axW" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "axX" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -7720,56 +2295,6 @@ "ayc" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/structures/res) -"ayd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ayf" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"ayg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"ayh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/exterior/landingzone_2) -"ayj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"ayk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"ayl" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "aym" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -7829,54 +2354,12 @@ "ayw" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"ayx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "ayz" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayA" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/paths/adminext) -"ayC" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"ayD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"ayE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "ayF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -7893,77 +2376,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ayI" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"ayK" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"ayL" = ( -/obj/item/stack/rods, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"ayM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"ayN" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "ayO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ayP" = ( -/obj/item/fuelCell, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ +"ayV" = ( +/obj/structure/morgue{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ag/interior/outpost/engi) -"ayS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "ayW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -7978,77 +2402,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"ayY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aza" = ( -/obj/item/poster, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"azb" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"azd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) "aze" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"azi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azj" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -8056,52 +2419,21 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"azl" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) "azm" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"azo" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"azp" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"azq" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"azn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"azr" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) "azs" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/strata, @@ -8115,58 +2447,23 @@ dir = 4 }, /obj/item/stack/rods, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"azv" = ( -/obj/effect/spawner/random/tool, -/turf/open/auto_turf/strata_grass/layer0_mud_alt, -/area/strata/ug/interior/jungle/deep/minehead) -"azx" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/nearlz1) -"azy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"azz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"azA" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"azB" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"azC" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"azv" = ( +/obj/effect/spawner/random/tool, +/turf/open/auto_turf/strata_grass/layer0_mud_alt, +/area/strata/ug/interior/jungle/deep/minehead) +"azw" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"azx" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/nearlz1) "azD" = ( /obj/structure/bed/chair{ dir = 4 @@ -8185,61 +2482,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"azG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/obj/item/storage/surgical_tray, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"azH" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"azI" = ( -/obj/structure/machinery/bioprinter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"azL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"azM" = ( -/obj/structure/mirror{ - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "azO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -8277,13 +2519,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"azV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "azX" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -8304,77 +2539,21 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/north_outpost) -"aAd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/fence, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"aAe" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "aAf" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/platform/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"aAi" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "aAj" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aAm" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aAn" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aAo" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -8383,83 +2562,12 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aAp" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aAr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aAs" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aAt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aAu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aAv" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aAw" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/item/tool/crowbar, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aAx" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aAz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aAB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -8467,61 +2575,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aAD" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aAF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aAJ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aAK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aAH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "aAL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aAO" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aAP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) +"aAN" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "aAR" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) @@ -8569,22 +2634,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"aAY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aAZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aBa" = ( /obj/item/dogtag, /obj/effect/decal/cleanable/blood, @@ -8594,16 +2643,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aBc" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aBe" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, @@ -8615,29 +2654,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"aBi" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aBj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aBk" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) "aBl" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -8648,46 +2664,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aBm" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/holosign/surgery, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"aBn" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"aBo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/strata/ag/interior/dorms) -"aBp" = ( -/obj/structure/morgue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "aBq" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -8696,22 +2672,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aBs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"aBt" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aBu" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/reagent_dispensers/fueltank, @@ -8742,13 +2702,10 @@ "aBy" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ug/interior/jungle/deep/structures/res) -"aBI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +"aBE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "aBJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -8765,22 +2722,6 @@ /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aBR" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aBS" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood{ @@ -8788,155 +2729,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aBT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aBU" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aBW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aBX" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aBY" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aBZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aCa" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) "aCb" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aCc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aCd" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aCe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aCf" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) -"aCg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aCh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aCi" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aCj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aCl" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms) @@ -8946,45 +2750,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"aCo" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aCq" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aCr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aCs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aCt" = ( /obj/item/stack/rods, /obj/item/stack/sheet/metal/medium_stack, @@ -9002,12 +2767,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aCw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "aCy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 @@ -9026,55 +2785,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aCC" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aCD" = ( /obj/structure/closet, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aCE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aCG" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aCH" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"aCI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor{ - icon_state = "bcircuit" - }, -/area/strata/ag/interior/dorms) -"aCK" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) "aCL" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/asphalt/cement, @@ -9118,43 +2838,6 @@ /obj/structure/machinery/light/small, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) -"aCT" = ( -/obj/structure/prop/dam/truck/cargo, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aCU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aCV" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aCW" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aCY" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aDa" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer2, @@ -9162,105 +2845,16 @@ "aDd" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/adminext) -"aDe" = ( -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aDf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aDg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aDh" = ( -/obj/item/stack/snow, -/obj/structure/barricade/handrail/strata, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ug/interior/jungle/deep/structures/res) -"aDi" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aDk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aDp" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"aDq" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" + dir = 1; + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/adminext) +"aDh" = ( +/obj/item/stack/snow, +/obj/structure/barricade/handrail/strata, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ug/interior/jungle/deep/structures/res) "aDr" = ( /obj/structure/machinery/chem_dispenser/soda/beer, /turf/open/floor/interior/plastic, @@ -9278,16 +2872,6 @@ "aDu" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aDw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/coatrack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aDx" = ( /obj/effect/decal/cleanable/blood{ layer = 3 @@ -9303,12 +2887,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"aDC" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) @@ -9316,60 +2894,6 @@ /obj/structure/sign/double/maltesefalcon/left, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aDG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aDH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aDI" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"aDJ" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"aDK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/paths/dorms_quad) -"aDL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/paths/dorms_quad) "aDM" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -9401,248 +2925,15 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"aDU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aDV" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aDW" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aDX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"aDY" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "aDZ" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aEa" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aEb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aEc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) "aEe" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen) -"aEf" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"aEg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aEl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aEm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aEn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aEo" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aEq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/obj/structure/largecrate/random, -/obj/item/seeds/walkingmushroommycelium, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aEr" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/clothing/suit/xenos, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aEs" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aEt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEu" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEv" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aEw" = ( /obj/structure/bed/chair{ dir = 4 @@ -9655,15 +2946,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEy" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aEC" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, @@ -9672,45 +2954,11 @@ /obj/effect/landmark/xeno_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) -"aEF" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aEG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) -"aEH" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aEI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"aEJ" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"aEK" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aEL" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, @@ -9773,414 +3021,65 @@ /area/strata/ag/exterior/research_decks) "aEX" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"aEY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aFb" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aFc" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aFd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aFf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aFg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aFi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aFj" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/north_carp) -"aFk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"aFl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFn" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFp" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFq" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aFs" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFt" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/m56d_hmg/mg_turret{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFv" = ( -/obj/structure/machinery/light/small, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/north_outpost) -"aFw" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aFz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aFA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aFB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"aFC" = ( -/obj/structure/tunnel{ - id = "hole3" - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/north_outpost) -"aFD" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aFE" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aFG" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFH" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFI" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aFL" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aFM" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aFN" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aFO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aFP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aFQ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/costume/butler, -/obj/effect/landmark/corpsespawner/chef, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"aEY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"aEZ" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"aFs" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/greengrid, -/area/strata/ag/interior/dorms) -"aFR" = ( -/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/item/weapon/gun/shotgun/type23/riot, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aFt" = ( +/obj/structure/barricade/deployable{ + dir = 8 }, -/area/strata/ag/interior/dorms) -"aFS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_tile" +/obj/structure/machinery/m56d_hmg/mg_turret{ + dir = 8 }, -/area/strata/ag/interior/dorms) -"aFT" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aFv" = ( +/obj/structure/machinery/light/small, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/north_outpost) +"aFx" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/obj/effect/decal/strata_decals/grime/grime4{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"aFD" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"aFQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/costume/butler, +/obj/effect/landmark/corpsespawner/chef, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, +/turf/open/floor/greengrid, /area/strata/ag/interior/dorms) "aFV" = ( /obj/structure/flora/grass/tallgrass/ice, @@ -10200,12 +3099,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/north_outpost) -"aGc" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "aGd" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -10237,44 +3130,23 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "aGi" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aGl" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"aGm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aGn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 +"aGj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "aGp" = ( /obj/structure/sign/safety/laser, /turf/closed/wall/strata_outpost/reinforced, @@ -10290,15 +3162,6 @@ "aGs" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/security) -"aGt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aGu" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -10311,59 +3174,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aGx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aGy" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aGz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aGA" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aGB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aGC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, @@ -10376,12 +3186,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"aGE" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aGF" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xtracks" @@ -10397,79 +3201,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGJ" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aGK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aGL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGM" = ( -/obj/item/stack/sandbags, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aGN" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "aGO" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -10479,31 +3216,6 @@ "aGP" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"aGQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aGR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"aGS" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aGU" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -10512,86 +3224,19 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) -"aGX" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) "aGY" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aGZ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"aHa" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aHb" = ( /obj/structure/sign/poster, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"aHc" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms) -"aHe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) -"aHf" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aHh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/north_outpost) -"aHi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "aHj" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -10606,67 +3251,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aHl" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"aHm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aHo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aHq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aHr" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aHs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aHt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aHu" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -10677,10 +3261,6 @@ "aHv" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"aHw" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "aHy" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal{ @@ -10714,34 +3294,6 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aHJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aHK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"aHL" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "aHM" = ( /obj/item/stool, /obj/structure/machinery/light/small{ @@ -10749,61 +3301,15 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aHN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aHO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) "aHP" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"aHR" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aHS" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"aHT" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHU" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aHW" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/east_dorms) "aHY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -10814,13 +3320,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"aIa" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aIb" = ( /obj/item/stack/sheet/wood, /obj/item/stack/rods, @@ -10831,99 +3330,18 @@ /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"aIf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"aIg" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"aIh" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aIi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"aIj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"aIk" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms) -"aIl" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms) -"aIm" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 8 - }, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms) -"aIn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aIo" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aIp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aIs" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"aIt" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "aIw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -10939,6 +3357,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"aIA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "aIC" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -10983,15 +3407,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aIS" = ( -/obj/structure/machinery/autolathe/full, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aIT" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -11001,203 +3416,58 @@ "aIU" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aIV" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aIW" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aIZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aJb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aJc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aJd" = ( /obj/structure/sign/safety/terminal, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"aJe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aJf" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aJk" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +"aJh" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "aJl" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aJm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "aJn" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"aJo" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/north_lz_caves) "aJp" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aJr" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/power/apc{ +"aJq" = ( +/obj/structure/machinery/light/small{ dir = 1; - pixel_y = 25 + pixel_y = 20 }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "aJs" = ( /obj/structure/sign/safety/bridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"aJu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aJv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aJA" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aJB" = ( -/obj/structure/sign/safety/galley, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/canteen/bar) -"aJC" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJD" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aJG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"aJH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aJI" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/sign/safety/galley, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/canteen/bar) +"aJC" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aJJ" = ( /obj/structure/barricade/wooden, /obj/item/stack/rods, @@ -11216,56 +3486,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"aJO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"aJP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"aJQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aJR" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"aJS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) -"aJT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "aJV" = ( /obj/item/stack/snow, /turf/open/auto_turf/snow/brown_base/layer1, @@ -11339,16 +3565,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"aKj" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "aKk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -11361,47 +3577,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aKm" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"aKn" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aKp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aKq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aKr" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aKs" = ( /obj/effect/decal/cleanable/generic, /obj/structure/platform/strata/metal{ @@ -11437,13 +3612,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aKw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aKx" = ( /obj/item/clothing/suit/storage/hazardvest, /obj/item/clothing/suit/storage/hazardvest, @@ -11473,61 +3641,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aKB" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aKC" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aKD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aKF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, +"aKE" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"aKG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 + dir = 1 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"aKJ" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "aKK" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -11546,78 +3671,10 @@ "aKM" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aKN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"aKQ" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aKR" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aKS" = ( -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aKT" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/meat, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aKU" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aKV" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aKW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aKX" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "aKY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -11632,17 +3689,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"aLb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aLc" = ( /obj/structure/window/reinforced/tinted, /obj/structure/window/reinforced/tinted{ @@ -11650,107 +3696,13 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"aLf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"aLg" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"aLh" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"aLi" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) -"aLj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) -"aLk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) "aLl" = ( /obj/structure/sign/poster, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"aLo" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/paths/dorms_quad) -"aLp" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) "aLq" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aLr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"aLs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) -"aLt" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) "aLu" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/ice/layer1, @@ -11774,15 +3726,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/dorms_quad) -"aLB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata, @@ -11792,15 +3735,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aLH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aLL" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -11814,12 +3748,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aLO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aLP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /turf/open/floor/strata, @@ -11832,229 +3760,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aLS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aLT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aLU" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aLW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aLZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aMb" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aMc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aMd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"aMf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aMg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue4" - }, -/area/strata/ag/interior/outpost/admin) -"aMh" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "blue4" - }, -/area/strata/ag/interior/outpost/admin) -"aMi" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMk" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMl" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMm" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMn" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aMo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aMp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aMq" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) -"aMr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aMs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"aMt" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aMu" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aMv" = ( -/obj/structure/bed, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aMw" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -12074,34 +3779,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"aMA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"aMB" = ( -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"aMC" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"aMD" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) "aME" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/deep/minehead/ruins) @@ -12153,36 +3830,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aMN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) "aMO" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"aMP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"aMQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aMS" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -12208,54 +3861,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aMW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aMX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aMY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aMZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aNa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aNb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aNc" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/stack/sheet/plasteel/medium_stack, @@ -12272,17 +3883,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "aNh" = ( /obj/structure/sign/safety/terminal, /turf/closed/wall/strata_outpost, @@ -12293,79 +3893,25 @@ /area/strata/ag/exterior/paths/dorms_quad) "aNl" = ( /turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/dorms_quad) -"aNm" = ( -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/dorms_quad) -"aNo" = ( -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/dorms_quad) -"aNp" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/paths/adminext) -"aNq" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/dorms_quad) -"aNs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, -/area/strata/ag/interior/outpost/admin) -"aNt" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "blue3" - }, -/area/strata/ag/interior/outpost/admin) -"aNu" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/outpost/engi) -"aNv" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aNw" = ( -/obj/item/stool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aNx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aNy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/exterior/paths/dorms_quad) +"aNm" = ( +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/dorms_quad) +"aNo" = ( +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/dorms_quad) +"aNp" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/paths/adminext) +"aNq" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/dorms_quad) +"aNu" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/outpost/engi) "aNz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ @@ -12388,32 +3934,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"aNC" = ( -/obj/structure/closet/crate, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aND" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aNE" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 3; - pixel_y = 14 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aNF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -12428,22 +3948,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aNI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"aNJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "aNL" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost, @@ -12473,17 +3977,6 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"aNO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) "aNP" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -12491,119 +3984,19 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aNQ" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/folder/red, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) -"aNR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) -"aNS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"aNT" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "aNU" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aNV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"aNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"aNZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "aOa" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aOc" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aOd" = ( /obj/structure/platform/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOe" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aOf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aOg" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -12617,29 +4010,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aOj" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aOk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aOl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -12649,15 +4025,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aOm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aOn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -12665,121 +4032,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aOo" = ( -/obj/structure/machinery/photocopier, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aOp" = ( -/obj/item/stack/catwalk, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"aOq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aOr" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/south_res) -"aOt" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aOu" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aOv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/toy/deck, -/obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aOw" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aOx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, -/area/strata/ag/interior/outpost/admin) -"aOy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOz" = ( /obj/item/lightstick/red/planted, /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"aOA" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aOB" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/dorms_quad) +"aOC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "aOD" = ( /obj/effect/decal/remains/xeno, /turf/open/auto_turf/ice/layer1, @@ -12793,60 +4059,12 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aOJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aOK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aOM" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/stool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aON" = ( -/obj/item/stack/sheet/wood, -/obj/structure/closet/crate/internals, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aOP" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) "aOR" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aOS" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aOT" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, @@ -12857,6 +4075,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) +"aOV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "aOW" = ( /obj/structure/barricade/snow{ dir = 4 @@ -12925,15 +4151,6 @@ /obj/item/tool/extinguisher, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/south) -"aPl" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) "aPm" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/admin) @@ -12944,12 +4161,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/dorms_quad) -"aPp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/south) "aPq" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -12971,104 +4182,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aPu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"aPx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"aPy" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aPz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - req_one_access = null - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aPB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aPC" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aPD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aPE" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aPF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aPG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aPH" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -13086,102 +4199,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aPK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aPL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPR" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aPS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "aPT" = ( /obj/effect/decal/cleanable/generic, /obj/structure/platform_decoration/strata/metal, /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aPW" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "aPX" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer4, @@ -13197,29 +4220,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) -"aQb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aQc" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aQd" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light/small{ @@ -13227,24 +4227,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQe" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aQg" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -13267,20 +4249,6 @@ /obj/structure/barricade/deployable, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aQj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) "aQk" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -13294,17 +4262,6 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQm" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "aQn" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /obj/structure/platform/strata/metal{ @@ -13312,33 +4269,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aQq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aQr" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aQs" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aQt" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -13353,80 +4287,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/nearlz1) -"aQw" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aQx" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) -"aQy" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aQz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aQA" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aQB" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aQD" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aQF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aQG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) "aQH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -13447,32 +4311,12 @@ dir = 1 }, /turf/open/floor/plating, -/area/strata/ag/exterior/research_decks) -"aQN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/flora/grass/tallgrass/ice, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/adminext) -"aQP" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aQQ" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aQR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) +/area/strata/ag/exterior/research_decks) +"aQN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/flora/grass/tallgrass/ice, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/paths/adminext) "aQS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -13486,63 +4330,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aQV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aQW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aQX" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aQY" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aQZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aRa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aRb" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "aRc" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/crowbar, @@ -13582,32 +4369,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aRk" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aRm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aRn" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aRo" = ( /obj/structure/largecrate/random, /obj/structure/machinery/light/small, @@ -13628,56 +4389,15 @@ /obj/structure/machinery/m56d_hmg, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aRr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aRs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aRv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/bar) -"aRx" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/interior/landingzone_1) "aRy" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aRz" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/interior/landingzone_1) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) "aRB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/flora/grass/tallgrass/ice/corner{ @@ -13685,85 +4405,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aRC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aRD" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aRF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aRG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aRI" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aRJ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms/south) -"aRK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms/south) -"aRL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"aRM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms/south) "aRO" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer2, @@ -13774,6 +4419,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) +"aRS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "aRV" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, @@ -13786,72 +4435,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"aRX" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aRZ" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aSb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aSc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aSd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"aSe" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"aSf" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aSj" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -13859,114 +4442,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aSk" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aSl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aSm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aSn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aSp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aSq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aSr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"aSs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aSt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aSu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aSv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/stack/medical/bruise_pack, -/obj/item/device/radio, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"aSw" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aSz" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, -/area/strata/ug/interior/jungle/deep/east_dorms) "aSA" = ( /obj/item/organ/eyes, /obj/effect/decal/cleanable/blood, @@ -13988,21 +4463,6 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"aSG" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ag/interior/landingzone_1) -"aSH" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) "aSJ" = ( /obj/item/lightstick/planted, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -14020,11 +4480,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aSN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ag/interior/landingzone_1) "aSP" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -14032,83 +4487,18 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/nearlz1) -"aSQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) "aSR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) -"aSS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) -"aST" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) -"aSU" = ( -/obj/structure/bookcase, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aSV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) "aSW" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"aSX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/exterior/landingzone_2) -"aSY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"aSZ" = ( -/obj/structure/surface/rack, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/weldingtool, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms/south) "aTb" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, @@ -14132,12 +4522,9 @@ "aTi" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aTk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) +"aTm" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) "aTn" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -14149,35 +4536,6 @@ /obj/structure/largecrate/random/case/small, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"aTs" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aTt" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aTu" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "aTv" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -14185,138 +4543,18 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aTy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aTz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aTA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi) -"aTB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aTC" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aTD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) "aTE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aTG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTH" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTK" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTL" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aTP" = ( -/obj/item/tool/mop, -/obj/structure/janitorialcart, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"aTQ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, -/area/strata/ag/interior/outpost/admin) "aTR" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -14324,162 +4562,44 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aTT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "blue3" - }, -/area/strata/ag/interior/outpost/admin) -"aTU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aTV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"aTW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aTX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/paths/adminext) -"aTY" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aTZ" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/paths/adminext) -"aUb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"aUc" = ( -/obj/structure/sign/safety/galley, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aUe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aUf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen) -"aUg" = ( -/turf/open/gm/river, -/area/strata/ug/interior/jungle/deep/north_carp) -"aUh" = ( -/turf/open/gm/coast/east, -/area/strata/ug/interior/jungle/deep/north_carp) -"aUn" = ( -/obj/structure/platform/strata/metal, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/adminext) -"aUo" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aUp" = ( -/turf/closed/wall/wood, -/area/strata/ag/interior/paths/cabin_area/central) -"aUq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aUr" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) -"aUs" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"aUt" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"aUu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"aUv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) +/area/strata/ag/exterior/paths/adminext) +"aTZ" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer3, +/area/strata/ag/exterior/paths/adminext) +"aUc" = ( +/obj/structure/sign/safety/galley, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"aUd" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"aUg" = ( +/turf/open/gm/river, +/area/strata/ug/interior/jungle/deep/north_carp) +"aUh" = ( +/turf/open/gm/coast/east, +/area/strata/ug/interior/jungle/deep/north_carp) +"aUn" = ( +/obj/structure/platform/strata/metal, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/adminext) +"aUp" = ( +/turf/closed/wall/wood, +/area/strata/ag/interior/paths/cabin_area/central) "aUx" = ( /obj/structure/platform/strata/metal, /obj/structure/stairs/perspective{ @@ -14510,165 +4630,28 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aUE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "aUF" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aUN" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aUR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"aUQ" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" + dir = 1 }, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "aUS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"aUT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aUU" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"aUV" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) "aUX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"aUZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aVa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aVc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aVd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aVe" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aVf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"aVg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "aVh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -14680,19 +4663,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"aVj" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "aVk" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -14717,48 +4687,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aVx" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aVy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aVz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aVA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aVB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aVD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -14768,43 +4696,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"aVE" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/barman_recipes, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aVF" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aVG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"aVH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aVJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aVK" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/north_carp) @@ -14837,28 +4731,11 @@ "aVT" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/hotsprings) -"aVW" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "aVX" = ( /obj/structure/platform_decoration/strata/metal, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"aVY" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) "aVZ" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/administration) @@ -14893,24 +4770,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/river) -"aWi" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/marsh/river) -"aWj" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/marsh/river) "aWk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -14963,44 +4822,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aWE" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aWF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aWG" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aWH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aWK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "aWL" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -15041,39 +4862,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"aWV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aWW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aXa" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aXb" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform_decoration/strata{ @@ -15082,111 +4870,12 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aXc" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXd" = ( -/obj/item/storage/pill_bottle/bicaridine, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXe" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXi" = ( -/obj/structure/machinery/reagentgrinder/industrial, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aXj" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_singularity_safety, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aXk" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXl" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/supermatter_engine, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXn" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aXo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aXp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin4) @@ -15197,53 +4886,12 @@ "aXr" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/north_carp) -"aXs" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/shed_five_caves) "aXt" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/hotsprings) "aXu" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/hotsprings) -"aXv" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aXw" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"aXx" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"aXy" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) "aXB" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -15317,16 +4965,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aXZ" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "aYa" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer2, @@ -15388,153 +5026,13 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"aYw" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYy" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/hotsprings) "aYz" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/deep/structures/res) -"aYA" = ( -/obj/structure/machinery/vending/security/upp, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"aYB" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYG" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"aYH" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aYI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"aYK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aYL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aYO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aYP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "aYQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"aYR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aYT" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"aYW" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aYX" = ( /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, @@ -15547,17 +5045,6 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) -"aZb" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aZc" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/north_lz_caves) @@ -15568,18 +5055,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aZh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "aZi" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -15604,105 +5079,25 @@ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/river) -"aZm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aZn" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"aZo" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/north_lz_caves) -"aZp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aZq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aZr" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aZs" = ( -/obj/structure/barricade/snow{ - dir = 1 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/paths/adminext) -"aZt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"aZu" = ( -/obj/item/storage/box/cups, -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/area/strata/ag/exterior/marsh/river) +"aZo" = ( +/obj/structure/platform_decoration/strata{ + dir = 1 }, -/obj/item/book/manual/surgery, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/north_lz_caves) +"aZs" = ( +/obj/structure/barricade/snow{ + dir = 1 }, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/paths/adminext) "aZv" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) "aZx" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"aZy" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "aZz" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -15728,57 +5123,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) -"aZD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"aZE" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/wo_supplies/storage/m56d, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"aZF" = ( -/obj/structure/toilet, -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"aZG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "aZH" = ( /obj/item/stack/rods, /turf/open/auto_turf/strata_grass/layer1, @@ -15830,32 +5174,9 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"aZX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) "aZY" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/disposals) -"aZZ" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"baa" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) "bab" = ( /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer1, @@ -15865,18 +5186,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/disposals) -"bad" = ( -/obj/structure/tunnel{ - id = "hole4" - }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/north_lz_caves) -"bae" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) "baf" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -15902,14 +5211,6 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/north_lz_caves) -"bal" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "bam" = ( /obj/item/tool/wrench, /obj/structure/pipes/standard/manifold/hidden/cyan{ @@ -15934,45 +5235,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bao" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bap" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"baq" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bar" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bas" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -15980,31 +5242,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"bat" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bau" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bav" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -16015,21 +5252,23 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"baA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"baz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "baC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) +"baD" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "baF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -16059,14 +5298,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"baL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "baM" = ( /obj/structure/bed/chair{ dir = 1 @@ -16074,37 +5305,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"baN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"baQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"baR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"baS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/foyer) "baT" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -16117,14 +5317,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"baV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/foyer) "baX" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -16146,34 +5338,12 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bbd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bbe" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) -"bbf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bbg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bbh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -16189,52 +5359,6 @@ "bbj" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"bbk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bbl" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bbm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bbn" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bbo" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bbp" = ( -/obj/structure/bed/stool, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "bbq" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/foyer) @@ -16248,41 +5372,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bbv" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"bbw" = ( -/obj/structure/kitchenspike, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"bbx" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "bby" = ( /obj/structure/sign/safety/fridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"bbz" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "bbA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -16290,80 +5383,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bbB" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"bbC" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"bbD" = ( -/obj/structure/machinery/processor, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"bbE" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_particle_accelerator, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"bbF" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"bbG" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/surgery, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"bbI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/east_dorms) -"bbJ" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/east_dorms) "bbK" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -16375,23 +5394,9 @@ /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bbN" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bbO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bbP" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "bbT" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -16408,17 +5413,13 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/hotsprings) -"bbX" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" +"bbY" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "bbZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, @@ -16469,14 +5470,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"bck" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) "bcm" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -16485,12 +5478,6 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"bco" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "bcp" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ @@ -16555,15 +5542,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"bcF" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) "bcG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -16620,23 +5598,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"bcR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/device/radio, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bcS" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bcT" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -16662,71 +5623,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"bcX" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "bcY" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"bda" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bdb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bdd" = ( -/obj/item/tool/crowbar, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bde" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bdg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/foyer) +"bdh" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/research_decks/security) "bdi" = ( /obj/structure/bed/chair{ dir = 1 @@ -16736,78 +5641,16 @@ "bdj" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin4) -"bdk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bdl" = ( /obj/structure/floodgate, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"bdm" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "bdn" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/adminext) -"bdp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bdq" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bds" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bdt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bdu" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bdv" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bdw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -16919,12 +5762,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/river) -"bdU" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) "bdV" = ( /obj/structure/platform/strata{ dir = 1 @@ -16986,28 +5823,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"beg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/admin) -"beh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/admin) "bei" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17037,30 +5852,16 @@ "ben" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) +"beo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "bep" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"beq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"ber" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "bes" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, @@ -17075,51 +5876,12 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) -"bex" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bey" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bez" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"beA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"beB" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "beD" = ( /obj/effect/spawner/random/toolbox{ pixel_y = 12 @@ -17132,25 +5894,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"beF" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/west_engi) "beG" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/east_carp) @@ -17180,6 +5923,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) +"beN" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "beO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -17199,55 +5946,12 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"beS" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"beT" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"beU" = ( -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"beV" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "beW" = ( /obj/structure/barricade/snow{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"beX" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) "beY" = ( /obj/structure/bed/chair, /obj/structure/barricade/snow{ @@ -17315,23 +6019,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bfm" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) -"bfn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) "bfo" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -17362,16 +6049,6 @@ /obj/effect/decal/cleanable/blood, /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"bfu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "bfv" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -17396,21 +6073,6 @@ "bfy" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bfz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bfD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bfE" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -17425,67 +6087,14 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bfM" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "bfN" = ( /obj/structure/sign/safety/radio_rad, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfO" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bfP" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bfQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "bfS" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bfV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "bfW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/admin) @@ -17493,82 +6102,6 @@ /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"bfZ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bga" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bgb" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bgc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bgd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bge" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bgf" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bgg" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "bgh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) @@ -17605,15 +6138,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"bgp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) "bgq" = ( /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer2, @@ -17668,24 +6192,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"bgz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"bgA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bgB" = ( /obj/structure/platform/strata, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -17728,15 +6234,6 @@ "bgK" = ( /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/gen/bball/nest) -"bgL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "bgM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 @@ -17784,32 +6281,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"bgV" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"bgW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"bgX" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole2" - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/exterior/jungle/deep/carplake_center) "bha" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer1, @@ -17836,30 +6307,16 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) +"bhi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/structures/res) "bhk" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bhp" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/nearlz1) -"bhq" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/nearlz1) "bhr" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -17916,27 +6373,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) -"bhy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) "bhz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/administration) -"bhA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) "bhB" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -17945,21 +6385,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"bhC" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bhD" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "bhE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -17970,39 +6395,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) -"bhF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bhG" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bhH" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bhI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "bhJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -18035,12 +6427,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"bhQ" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "bhR" = ( /obj/structure/closet, /turf/open/auto_turf/snow/brown_base/layer2, @@ -18052,13 +6438,6 @@ "bhT" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"bhU" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) "bhV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -18078,26 +6457,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/river) -"bhZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bia" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bib" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bic" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -18116,35 +6479,6 @@ /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bii" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bij" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bik" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bil" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bim" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, @@ -18153,6 +6487,11 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) +"bip" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "biq" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer1, @@ -18212,20 +6551,6 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"biC" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"biD" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "biE" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -18253,18 +6578,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"biK" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp{ - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) +"biJ" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "biN" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -18291,179 +6607,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) -"biT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"biU" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"biV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"biW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"biX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"biZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bja" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bjb" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bjc" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/admin) "bjd" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/vanyard) -"bje" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bjf" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bjg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"bjh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bji" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "bjj" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/river) -"bjk" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/east_carp) -"bjl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bjn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bjo" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"bjp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bjr" = ( /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -18584,11 +6736,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"bjT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/fuelCell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) "bjU" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -18641,6 +6788,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) +"bkj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "bkl" = ( /obj/structure/platform/strata{ dir = 8 @@ -18687,54 +6838,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bkt" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/administration) -"bku" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/administration) "bkv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) -"bkw" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bkx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "bky" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, @@ -18755,16 +6864,6 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bkB" = ( -/obj/structure/window/framed/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) "bkC" = ( /obj/structure/bed/chair{ dir = 4 @@ -18804,19 +6903,6 @@ "bkI" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/shed_five_caves) -"bkJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "bkL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -18827,12 +6913,6 @@ /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"bkP" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "bkT" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ug/interior/jungle/deep/minehead) @@ -18854,19 +6934,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"bkY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bkZ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bla" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, @@ -18878,13 +6945,6 @@ /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/foyer) -"bld" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "ble" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) @@ -18898,31 +6958,12 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/shed_five_caves) -"blh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bli" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "blk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bll" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) "blm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -19027,14 +7068,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"blI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/cabin_area) "blJ" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) @@ -19057,23 +7090,6 @@ /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"blN" = ( -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"blO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 - }, -/obj/item/paper_bin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "blP" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) @@ -19083,106 +7099,38 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"blR" = ( -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"blS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"blT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"blU" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"blV" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) "blW" = ( /turf/closed/shuttle/ert{ icon_state = "upp5" }, /area/strata/ag/exterior/marsh/crash) -"blX" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"blY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bma" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) -"bmb" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen) "bmc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/admin) +"bmd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bme" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bmf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bml" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) +"bmg" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "bmm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/shed_five_caves) -"bmo" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "bmp" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) @@ -19193,27 +7141,6 @@ /obj/structure/inflatable, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bms" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"bmt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "bmu" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/brown_base/layer3, @@ -19279,13 +7206,6 @@ /obj/structure/machinery/iv_drip, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bmP" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) "bmQ" = ( /obj/item/stool, /obj/effect/decal/cleanable/blood/gibs/core, @@ -19313,29 +7233,12 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"bmX" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bmY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bmZ" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/exterior/paths/cabin_area) -"bna" = ( -/obj/structure/barricade/snow, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/cabin_area) "bnb" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -19397,12 +7300,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bnv" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/north_lz_caves) "bnx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -19430,36 +7327,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bnE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "bnF" = ( /obj/structure/bed/roller, /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bnG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/administration) -"bnH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) +"bnI" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) "bnJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -19476,62 +7352,28 @@ /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/center) -"bnO" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh) -"bnP" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/shed_five_caves) -"bnQ" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/shed_five_caves) -"bnR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/shed_five_caves) -"bnS" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/administration) -"bnT" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" +"bnO" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 }, -/area/strata/ag/interior/administration) -"bnU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh) +"bnP" = ( +/obj/structure/platform/strata{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/shed_five_caves) +"bnQ" = ( +/obj/structure/platform/strata{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/shed_five_caves) +"bnR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/shed_five_caves) "bnW" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/gibs/down, @@ -19545,14 +7387,6 @@ /obj/structure/inflatable/door, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bnZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "boa" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, @@ -19606,17 +7440,6 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "bok" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, @@ -19645,29 +7468,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bos" = ( -/obj/item/paper_bin, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bot" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bou" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "bov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -19680,63 +7480,18 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"box" = ( -/obj/item/device/motiondetector, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"boy" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/item/weapon/harpoon, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"boz" = ( -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "boC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"boD" = ( -/obj/item/reagent_container/food/drinks/coffee, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "boE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"boF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "boG" = ( /obj/structure/platform/strata{ dir = 1 @@ -19759,26 +7514,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boJ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"boL" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "boM" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -19787,37 +7522,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"boN" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"boO" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"boP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"boR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "boS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -19830,48 +7540,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"boU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"boV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"boW" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "boX" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"boY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "boZ" = ( /obj/structure/platform/strata{ dir = 1 @@ -19897,21 +7571,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bpe" = ( -/obj/structure/closet/emcloset, -/obj/item/coin/marine/engineer, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bpf" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -19937,14 +7596,6 @@ /obj/item/tool/crowbar, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "bpm" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball/nest) @@ -19987,31 +7638,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "bpy" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bpz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bpA" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, @@ -20024,129 +7654,6 @@ /obj/structure/inflatable/popped/door, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bpF" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bpG" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bpH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bpI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"bpJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"bpK" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"bpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bpM" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bpN" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bpO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bpP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bpS" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) "bpT" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, @@ -20156,39 +7663,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bpV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bpX" = ( -/obj/structure/closet/bombcloset, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bpY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) "bpZ" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, @@ -20199,44 +7673,12 @@ /obj/effect/decal/cleanable/blood/gibs/down, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bqb" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) "bqc" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bqd" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/stack/medical/bruise_pack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bqe" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "bqf" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -20244,15 +7686,6 @@ /obj/item/stack/medical/splint, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bqh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -20365,14 +7798,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"bqY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "bqZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -20398,15 +7823,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"brd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) "bre" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -20420,17 +7836,17 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"brg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "brh" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"bri" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) "brj" = ( /turf/open/floor/strata, /area/strata/ag/interior/disposals) @@ -20445,11 +7861,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"brn" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/north_lz_caves) "bro" = ( /obj/item/storage/box/masks{ pixel_x = -5; @@ -20471,58 +7882,20 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) -"brt" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bru" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "brv" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"brx" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) "bry" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brB" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "brC" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/southresearch) -"brD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "brE" = ( /obj/structure/platform/strata{ dir = 4 @@ -20560,10 +7933,6 @@ /obj/item/trash/pistachios, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"brM" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/center) "brP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -20580,12 +7949,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"brS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) "brT" = ( /obj/structure/prop/power_transformer, /turf/open/auto_turf/snow/brown_base/layer0, @@ -20647,20 +8010,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"bsk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bsl" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "bsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -20674,153 +8023,20 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bso" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"bsp" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - layer = 2.1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bsq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "bsr" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bss" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"bst" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "bsu" = ( /obj/structure/platform_decoration/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsv" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bsw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bsx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/gen/foyer) -"bsy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) "bsz" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/foyer) -"bsA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/foyer) -"bsB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bsC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bsD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bsG" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bsI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bsJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/admin) -"bsK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bsM" = ( /obj/structure/platform/strata/metal, /obj/item/lightstick/red/planted, @@ -20830,16 +8046,6 @@ /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsO" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "bsP" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/auto_turf/snow/brown_base/layer1, @@ -20859,17 +8065,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"bsS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "bsT" = ( /obj/structure/platform/strata{ dir = 8 @@ -20899,14 +8094,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bsY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bsZ" = ( /obj/structure/platform_decoration/strata{ dir = 4 @@ -21018,70 +8205,28 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"btz" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "btA" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) "btB" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 - }, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/exterior/marsh/crash) -"btC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"btE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"btG" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) -"btH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"btI" = ( -/obj/item/storage/secure/briefcase, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) -"btJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/exterior/marsh/crash) +"btE" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"btH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) "btK" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer0_mud, @@ -21092,14 +8237,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"btM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "btN" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -21111,18 +8248,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"btT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"btU" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "btV" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -21166,22 +8291,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) -"buc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"bud" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "bue" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, @@ -21194,12 +8303,6 @@ /obj/structure/bed/chair, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"bui" = ( -/obj/structure/tunnel{ - id = "hole1" - }, -/turf/open/auto_turf/snow/brown_base/layer3, -/area/strata/ag/exterior/tcomms/tcomms_deck) "bul" = ( /obj/item/tool/shovel/snow, /turf/open/auto_turf/snow/brown_base/layer1, @@ -21252,19 +8355,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"buy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) "buz" = ( /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/auto_turf/snow/brown_base/layer2, @@ -21333,155 +8423,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"buP" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"buQ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"buR" = ( -/obj/structure/bookcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "buS" = ( /obj/effect/decal/cleanable/generic, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/crash) -"buT" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"buU" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"buV" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"buW" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"buX" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"buY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"buZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bvb" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; - pixel_y = 32 - }, -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bvc" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bvd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bve" = ( /obj/structure/displaycase, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bvf" = ( -/obj/structure/lamarr, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bvh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bvk" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bvl" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bvn" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) +"bvo" = ( +/obj/structure/fence, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "bvq" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/strata, @@ -21490,17 +8449,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bvt" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "bvu" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/snow/brown_base/layer2, @@ -21566,12 +8514,6 @@ "bvK" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi/drome) -"bvL" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) "bvM" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, @@ -21697,34 +8639,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bwn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bwo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bwp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/administration) -"bwq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bwr" = ( /obj/structure/platform/strata{ dir = 1 @@ -21758,15 +8675,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/nearlz2) -"bwy" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "bwA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -21791,17 +8699,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/platform/east/scrub) -"bwF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "bwH" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -21837,13 +8734,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) -"bwR" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball) "bwT" = ( /obj/structure/platform/strata{ dir = 8 @@ -21858,16 +8748,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bwV" = ( -/obj/structure/surface/rack, -/obj/item/storage/bible/booze, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) "bwW" = ( /obj/structure/platform/strata{ dir = 4 @@ -21939,58 +8819,15 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/nearlz2) -"bxl" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"bxm" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"bxn" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/structure/kitchenspike, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) "bxo" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bxr" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) "bxs" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"bxu" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "bxy" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh) @@ -22016,23 +8853,6 @@ /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bxE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bxF" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) "bxG" = ( /obj/structure/platform/strata{ dir = 4 @@ -22046,14 +8866,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) -"bxI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) "bxJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -22061,58 +8873,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bxL" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bxM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bxN" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bxO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bxP" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "bxQ" = ( /obj/structure/platform/strata{ dir = 4 @@ -22129,25 +8889,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh) -"bxT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bxV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "bxW" = ( /obj/structure/platform/strata{ dir = 1 @@ -22157,13 +8898,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bxX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "bxY" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -22202,15 +8936,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"bye" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "byf" = ( /obj/structure/platform/strata{ dir = 4 @@ -22237,14 +8962,6 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) -"byl" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bym" = ( /obj/structure/barricade/snow{ dir = 4 @@ -22264,6 +8981,11 @@ /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) +"byq" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "byr" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -22274,22 +8996,26 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) -"byv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" +"byw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/med) -"byF" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"byL" = ( +/obj/item/device/motiondetector, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"byM" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) "byN" = ( /obj/structure/platform_decoration/strata, @@ -22319,209 +9045,9 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"byY" = ( -/obj/item/tool/pen/blue, -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"byZ" = ( -/mob/living/simple_animal/cat/Runtime{ - desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; - name = "Bernard" - }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"bza" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"bzb" = ( -/obj/item/clipboard, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bzc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bzd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/admin) -"bzf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior) -"bzk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"bzl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzn" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzp" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzx" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) -"bzG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bzH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bzM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/stack/rods, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bzN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bzR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bzV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -22532,6 +9058,10 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"bAc" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "bAe" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -22539,28 +9069,20 @@ "bAf" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/river) -"bAi" = ( +"bAl" = ( +/obj/structure/machinery/washing_machine, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/cabin_area) -"bAp" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"bAm" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "bAq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) -"bAr" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bAt" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/canteen) @@ -22588,91 +9110,28 @@ /turf/open/floor/strata, /area/strata/ag/interior/disposals) "bAx" = ( -/obj/effect/landmark/crap_item, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/disposals) -"bAy" = ( -/obj/item/trash/pistachios, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/greengrid, -/area/strata/ag/interior/disposals) -"bAz" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) -"bAB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bAF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"bAG" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"bAH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bAI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"bAJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bAK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bAL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/effect/landmark/crap_item, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/disposals) +"bAy" = ( +/obj/item/trash/pistachios, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/greengrid, +/area/strata/ag/interior/disposals) +"bAz" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"bAA" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, /area/strata/ag/interior/administration) "bAM" = ( /obj/structure/machinery/alarm{ @@ -22694,51 +9153,36 @@ /obj/item/coin/uranium, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"bAR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "bAS" = ( /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bAT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"bBa" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/med) -"bAW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/med) -"bBg" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"bBj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/gen/bball) +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) "bBr" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"bBB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +"bBC" = ( +/turf/open/floor/strata/white_cyan3/southwest, /area/strata/ag/interior/outpost/med) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -22751,49 +9195,10 @@ icon_state = "upp20" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bBT" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bBU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bBV" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bBX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) +"bBS" = ( +/obj/structure/kitchenspike, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "bCd" = ( /obj/structure/platform/strata{ dir = 1 @@ -22801,153 +9206,16 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bCf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"bCh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"bCn" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bCo" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bCp" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bCq" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/med) -"bCt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bCv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/med) -"bCw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) -"bCx" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) -"bCy" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "bCz" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) -"bCA" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bCH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"bCB" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bCK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bCL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bCN" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "bCP" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -22956,14 +9224,6 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"bCY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -22975,67 +9235,6 @@ "bDm" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"bDn" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"bDo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bDq" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bDr" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bDv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"bDy" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bDz" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bDA" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) "bDB" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -23067,6 +9266,12 @@ "bDH" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/exterior/jungle/deep/carplake_center) +"bDL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) "bDO" = ( /obj/structure/cargo_container/grant/left{ health = 5000; @@ -23091,22 +9296,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bDT" = ( -/obj/structure/fence, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"bDU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) "bEh" = ( /obj/structure/platform/strata{ dir = 4 @@ -23115,18 +9304,18 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bEy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"bEu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/minehead) -"bEE" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"bEJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bER" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -23147,6 +9336,13 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"bEW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/marsh) "bEX" = ( /obj/structure/disposaloutlet, /obj/structure/machinery/light/small{ @@ -23164,21 +9360,6 @@ /obj/item/weapon/gun/shotgun/type23, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"bFf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/folder/red, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) -"bFg" = ( -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "bFi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -23190,79 +9371,35 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"bFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bFs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail/strata{ +"bFn" = ( +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bFv" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/vanyard) -"bFx" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"bFC" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/administration) -"bFF" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"bFw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "bFG" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/cabin_area) +"bFJ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "bFX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "sunnybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"bFZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) "bGa" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -23273,331 +9410,25 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bGc" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"bGd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bGe" = ( -/obj/structure/closet, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "bGg" = ( /obj/structure/platform/strata{ dir = 8 }, -/obj/structure/platform/strata, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"bGk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"bGo" = ( -/obj/structure/sign/safety/bulkhead_door, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/exterior/research_decks) -"bGq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/storage/briefcase, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bGr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bGs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bGD" = ( -/obj/structure/machinery/photocopier, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bGH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"bGJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bGO" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"bHj" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior/jungle/deep/minehead) -"bHo" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bHp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/med) -"bHq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bHr" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bHs" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bHt" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"bHy" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"bHA" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bHB" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bHD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) -"bHE" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) -"bHF" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bHH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bHN" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bHP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bHQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bHS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bHT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bHV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bHW" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bHY" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bIb" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bIp" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bIq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bIr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/platform/strata, +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"bGo" = ( +/obj/structure/sign/safety/bulkhead_door, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/exterior/research_decks) +"bHj" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior/jungle/deep/minehead) +"bIk" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "bIt" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -23614,14 +9445,6 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"bIv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "bIx" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/queen_spawn, @@ -23639,18 +9462,6 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"bIE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) "bIH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -23668,15 +9479,17 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) -"bIL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "bIM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/north_lz_caves) +"bIU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "bIV" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -23691,72 +9504,20 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"bIY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bJb" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bJc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bJg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bJx" = ( +"bIZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) -"bJy" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bJz" = ( -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bJC" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"bJa" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "bJG" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -23765,6 +9526,15 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) +"bJH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) "bJI" = ( /obj/structure/machinery/floodlight/landing, /turf/open/asphalt/cement, @@ -23774,144 +9544,36 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bJV" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bJX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bKa" = ( -/obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bKb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"bKc" = ( +"bKj" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bKn" = ( -/obj/structure/machinery/power/apc{ - pixel_y = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) -"bKp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball) -"bKC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bKD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"bKJ" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "bKK" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bKL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ag/interior/paths/cabin_area/central) -"bKO" = ( -/obj/item/storage/surgical_tray, +"bKQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_container/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/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bKP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/med) -"bKR" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/med) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "bKT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -23919,186 +9581,77 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"bKZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"bLa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) +"bKX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "bLb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/admin) -"bLi" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bLj" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"bLk" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLo" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLt" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bLA" = ( -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLC" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bLD" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bLH" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bLK" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"bLF" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bLR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"bMd" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +"bMa" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) +"bMg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/exterior/north_lz_caves) -"bMB" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"bMp" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/exterior/north_lz_caves) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"bMA" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "bME" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) -"bMF" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bMG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/exterior/north_lz_caves) -"bMP" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMR" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bMX" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bMZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballsoup, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"bMM" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"bNd" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/area/strata/ag/interior/dorms/canteen) -"bNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"bNe" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "bNh" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -24114,16 +9667,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"bNm" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "bNq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -24151,13 +9694,6 @@ "bNW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/mountain) -"bOh" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bOj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -24167,236 +9703,43 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bOp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bOq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"bOs" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"bOt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"bOv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"bOw" = ( -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"bOx" = ( -/obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"bOA" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bOC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"bOE" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bOF" = ( -/obj/item/book/manual/surgery, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"bOV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - icon_state = "floor3" +"bOn" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"bOB" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "bOZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"bPe" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "bPf" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) -"bPn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "bPo" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bPq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bPr" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "bPs" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"bPt" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bPu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"bPv" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) "bPy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"bPA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bPX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bPY" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bPZ" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQa" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +"bPI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) -"bQg" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"bPW" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "bQi" = ( /turf/closed/shuttle/ert{ @@ -24410,83 +9753,10 @@ opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) -"bQp" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bQq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bQs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"bQu" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; - icon = 'icons/obj/structures/props/misc.dmi'; - icon_state = "jukebox"; - name = "Rockin Robin 2300 Jukebox"; - pixel_x = -5; - pixel_y = 16 - }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"bQv" = ( -/obj/item/stack/sandbags, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) "bQA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"bQS" = ( -/obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQT" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bQU" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bRb" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -24494,11 +9764,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"bRe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/north_lz_caves) "bRf" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/north_lz_caves) @@ -24515,74 +9780,9 @@ icon_state = "upp2" }, /area/strata/ug/interior/jungle/deep/structures/res) -"bRl" = ( -/turf/open/floor/plating, -/area/strata/ug/interior/jungle/deep/structures/res) -"bRp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bRs" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"bRu" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"bRw" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"bRT" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bRU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bRY" = ( -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/dorms/maintenance) -"bRZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) +"bRl" = ( +/turf/open/floor/plating, +/area/strata/ug/interior/jungle/deep/structures/res) "bSa" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -24591,24 +9791,12 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"bSv" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"bSC" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "bSD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -24617,134 +9805,34 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bSE" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"bSF" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bSG" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bSI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"bSJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"bSN" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"bST" = ( -/obj/item/storage/briefcase, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" +"bSL" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/area/strata/ag/interior/outpost/med) -"bTa" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"bTB" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/area/strata/ag/interior/research_decks/security) -"bTb" = ( -/obj/structure/platform/strata/metal{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"bTk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/north_outpost) -"bTl" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/north_outpost) -"bTp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bTr" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_engi) "bTD" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"bTE" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bTF" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bTG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "bTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -24756,251 +9844,50 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"bUm" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUo" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bUp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bUq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"bUs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"bUt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"bUu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"bUv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bUx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ +"bUf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"bUF" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"bUI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bUJ" = ( -/obj/structure/sign/safety/maint, -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/med) -"bUK" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bUL" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"bUM" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"bUO" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/canteen) -"bUU" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"bUk" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"bUr" = ( /obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, /obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, /obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/slug, -/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /obj/item/weapon/gun/shotgun/type23/riot, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"bUV" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) +/obj/item/weapon/gun/shotgun/type23/riot, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"bUJ" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/med) "bUX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball/nest) -"bUY" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/reagent_container/spray/pepper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"bUZ" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/research_decks/security) -"bVa" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/research_decks/security) -"bVc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"bVd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"bVf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"bVk" = ( +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"bVm" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"bVn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"bVo" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"bVr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bVs" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "bVw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -25015,21 +9902,6 @@ "bVx" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water) -"bVF" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"bVL" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/condimentbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) "bVM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -25039,17 +9911,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"bVU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) +"bVT" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "bVV" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -25063,156 +9928,36 @@ "bWa" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) -"bWc" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bWd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bWe" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red2" - }, -/area/strata/ug/interior/jungle/deep/minehead) -"bWi" = ( -/obj/structure/largecrate/random, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"bWk" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "bWl" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"bWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"bWw" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bWx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bWy" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"bWB" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bWD" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/north_outpost) +"bWo" = ( +/obj/item/stack/rods, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) "bWH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"bWK" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"bWM" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"bWI" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/security) +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "bWN" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bWZ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bXa" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bXc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) "bXd" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -25234,49 +9979,33 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bXg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ +"bXl" = ( +/obj/structure/sink{ dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"bXi" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/research_decks) -"bXj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/research_decks) -"bXq" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi) -"bXv" = ( -/obj/structure/bed/chair{ - dir = 1 + pixel_x = -11 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"bXo" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"bXA" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 }, -/area/strata/ag/interior/outpost/security) -"bXw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "bXC" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -25290,25 +10019,15 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"bXQ" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) +"bXO" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "bXV" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"bXW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) "bXY" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost/reinforced, @@ -25318,38 +10037,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bYb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"bYg" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"bYk" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) "bYl" = ( /obj/item/reagent_container/food/drinks/cans/waterbottle, /obj/effect/decal/cleanable/blood, @@ -25359,50 +10046,19 @@ /obj/item/stool, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"bYu" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"bYA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"bYy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"bYD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) "bYE" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"bYG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) "bYJ" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -25416,100 +10072,53 @@ /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"bYN" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"bYP" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/east_carp) "bYS" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"bYU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) +"bYT" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "bYV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ name = "\improper Airlock" }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"bZf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bZh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "red1" - }, +"bZc" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) +"bZe" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "bZj" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/administration) -"bZq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"bZB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bZC" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"bZD" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"bZE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"bZG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bZH" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -25543,66 +10152,13 @@ "bZX" = ( /turf/open/gm/coast/east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"bZY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plump_pie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"cac" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"cad" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"caf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"cah" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cak" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cam" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"cae" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "cao" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/interior/plastic, @@ -25627,35 +10183,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"caE" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"caI" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/paths/adminext) -"caL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"caM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) +"caD" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"caS" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "caV" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood, @@ -25678,49 +10216,22 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"cbi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/obj/item/device/radio, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/north_lz_caves) "cbj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"cbp" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"cbr" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "cbu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, /obj/item/device/radio, /turf/open/asphalt/cement, /area/strata/ag/exterior/north_lz_caves) -"cbv" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"cbz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cbE" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -25730,6 +10241,10 @@ "cbF" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/minehead/ruins) +"cbK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "cbL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -25749,138 +10264,25 @@ "cbO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"cbR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"cbS" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"cbW" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"ccc" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "ccd" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) -"ccg" = ( -/obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/gen/bball) -"cci" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "ccj" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/north_outpost) -"cck" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"ccn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cco" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"ccp" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ccq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ccr" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "ccs" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/adminext) -"cct" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"ccu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ccy" = ( -/obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/paths/adminext) "ccz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) +"ccC" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "ccD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -25918,63 +10320,15 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"ccW" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"ccX" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"ccY" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/gen/bball) "cdb" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"cdc" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cdd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = -4; - pixel_y = 14 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) "cdh" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cdj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "cdl" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, @@ -25982,17 +10336,20 @@ "cdm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/canteen) -"cdn" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) "cdo" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) "cdp" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/minehead/ruins) +"cdq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "cdx" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) @@ -26003,14 +10360,6 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"cdF" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "cdG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -26019,23 +10368,19 @@ /obj/structure/sign/double/maltesefalcon/right, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"cdK" = ( -/obj/structure/xenoautopsy/tank/broken{ - desc = "A broken cryo tank, this must've been where it all began..." - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/dorms) -"cdR" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"cdL" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"cdS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ag/exterior/research_decks) +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cdT" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -26044,151 +10389,17 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/med) -"cdW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"cdX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) -"cdY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cdZ" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"cea" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) "ced" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/gen/bball/nest) -"cee" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ceg" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "cei" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"ceq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) -"cer" = ( -/obj/structure/machinery/smartfridge/drinks, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"cet" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"ceu" = ( +"ceE" = ( /obj/effect/decal/cleanable/blood, -/obj/item/tool/match, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) -"cew" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"ceG" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"ceI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"ceK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"ceL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"ceM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"ceN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "ceQ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/north_carp) @@ -26196,15 +10407,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"ceV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/strata/ag/interior/dorms) +"ceU" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/structures/res) "ceW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/vending/cola, @@ -26218,51 +10424,6 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"ceY" = ( -/obj/structure/machinery/holosign/surgery, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"cfg" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cfi" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"cfl" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"cfp" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "cfr" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/maintenance) @@ -26270,16 +10431,6 @@ /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) -"cfv" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/security) "cfx" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) @@ -26303,32 +10454,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"cfC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cfD" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) -"cfE" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "cfF" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, @@ -26339,12 +10464,14 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"cfJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"cfN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "cfR" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) @@ -26353,13 +10480,6 @@ /obj/item/storage/belt/marine/upp/sapper, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"cfY" = ( -/obj/structure/fence, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "cfZ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -26370,82 +10490,22 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cgd" = ( -/obj/structure/fence, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cge" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"cgg" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"cgm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgp" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) "cgq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cgu" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"cgv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "cgE" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_res) -"cgN" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/strata/ag/interior/outpost/engi/drome) "cgO" = ( /turf/closed/shuttle/ert{ icon_state = "upp20" @@ -26461,61 +10521,17 @@ icon_state = "upp25" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cgR" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cgS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) "cgT" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"cgW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cgX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"cgY" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) -"cgZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) -"chd" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"cha" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) "che" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/med) @@ -26523,6 +10539,12 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) +"chh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "chi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 1; @@ -26534,67 +10556,9 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"chp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"chq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"chr" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) -"cht" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"chw" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"chx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"chy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/engi/drome) "chB" = ( /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"chC" = ( -/obj/effect/spawner/random/attachment, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) "chN" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) @@ -26602,74 +10566,20 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"chS" = ( +"chZ" = ( /obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"chX" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"cie" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) "cif" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cij" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) "cik" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"cim" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"cin" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) -"cio" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen) "cis" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer1, @@ -26697,23 +10607,37 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/landingzone_checkpoint) -"ciH" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"ciG" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/area/strata/ag/interior/landingzone_checkpoint) -"ciW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"ciN" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"ciO" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ciY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "cjb" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) +"cjc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cjg" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -26722,56 +10646,13 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"cji" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cjj" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cjk" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cjl" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cjn" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen) -"cjq" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "cjr" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"cjv" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "cjw" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) @@ -26788,15 +10669,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"cjz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) "cjA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -26812,253 +10684,28 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"cjG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"cjH" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"cjI" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"cjN" = ( -/obj/structure/window/framed/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"cjO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"cjP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"cjQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"cjR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjW" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cjZ" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cka" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"ckb" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"ckd" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cke" = ( -/obj/item/stool, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) "ckf" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ckx" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"ckA" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/obj/structure/machinery/light/small{ +"ckv" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ckz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ckB" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ckC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ckE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "ckF" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"ckG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ckH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ckI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) "ckK" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) @@ -27066,104 +10713,27 @@ /obj/structure/machinery/light_switch, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"ckM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ckN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"ckU" = ( +/obj/effect/glowshroom, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen) -"ckR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) -"ckS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"ckX" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"ckY" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "ckZ" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) -"cla" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cle" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "clg" = ( /turf/closed/shuttle/ert{ icon_state = "upp22" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clo" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) "cls" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/shuttle/ert{ icon_state = "upp23" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"clv" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "clw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/camera/autoname{ @@ -27182,25 +10752,6 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"clz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"clG" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/bar) "clI" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light/small, @@ -27213,25 +10764,9 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"clL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen) -"clW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms/south) +"clO" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) "cmf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -27242,12 +10777,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"cmn" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) "cmo" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) @@ -27258,72 +10787,27 @@ "cmq" = ( /turf/open/floor/greengrid, /area/strata/ag/interior/landingzone_checkpoint) -"cmt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/canteen/bar) "cmu" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/north_carp) -"cmA" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/interior/landingzone_1) -"cmB" = ( -/obj/structure/bed/nest, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "cmC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"cmD" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"cmE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) -"cmF" = ( -/obj/structure/surface/rack, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms/south) +"cmM" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cmO" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cmU" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) "cmX" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/research_decks) -"cmZ" = ( -/obj/structure/fence, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "cna" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, @@ -27338,244 +10822,30 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"cnc" = ( -/obj/item/storage/box/rxglasses, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"cnd" = ( -/obj/item/storage/pill_bottle/russianRed, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline, -/obj/item/storage/box/gloves, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"cne" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, -/area/strata/ag/interior/outpost/med) -"cnf" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cng" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cnh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cni" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cnj" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"cnk" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "cnm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"cnp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cnr" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "cnu" = ( -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/hotsprings) -"cnv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"cnw" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/tank/anesthetic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cnx" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/storage/belt/utility/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cny" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"cnA" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"cnB" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/dorms/south) -"cnC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"cnK" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/hotsprings) +"cnB" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/dorms/south) "cnO" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/dorms/hive) -"cnQ" = ( -/obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "cnS" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"cnV" = ( -/obj/item/stack/catwalk, -/obj/item/tool/wrench, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"cnZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"coc" = ( -/obj/item/fuelCell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "cof" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) -"cog" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"coh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"coi" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) -"cok" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "col" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -27600,14 +10870,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"cov" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/south) "coy" = ( /obj/structure/bed/chair/office/light, /obj/effect/decal/strata_decals/catwalk/prison, @@ -27634,106 +10896,23 @@ icon_state = "upp5" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"coO" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) "coP" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"coS" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) -"coU" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"coV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"coX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"coY" = ( -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"coZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) "cpd" = ( /obj/structure/sign/safety/fire_haz, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/bar) -"cpe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/canteen/bar) "cpg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"cpi" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cpo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"cpq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms/flight_control) -"cpR" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" +"cpm" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "cpU" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint/canteen_e_1) @@ -27743,14 +10922,6 @@ "cpW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/hotsprings) -"cpY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/engi/drome) "cqf" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 @@ -27766,14 +10937,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"cqu" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/nearlz1) "cqE" = ( /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) @@ -27790,15 +10953,6 @@ "cqH" = ( /turf/open/floor/strata, /area/strata/ag/interior/administration) -"cqI" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/extinguisher, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/north_lz_caves) "cqM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -27806,260 +10960,40 @@ "cqQ" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"crb" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/interior/landingzone_1) -"crd" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"crf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"crk" = ( -/obj/effect/glowshroom/single, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/north_lz_caves) -"crp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"crq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/administration) -"crt" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ag/interior/landingzone_1) -"cru" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms) -"cry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"crz" = ( -/obj/structure/bed/nest, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) +"cri" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "crA" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/hive) "crE" = ( /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"crF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"crG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) "crI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"crM" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"crR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"crT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"crU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"crV" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"crW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/interior/landingzone_1) "crY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"csc" = ( -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csi" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"csj" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"csk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) "csm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"cso" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/nearlz1) -"cst" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"csu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"csA" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/administration) -"csB" = ( -/obj/structure/coatrack, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) -"csE" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csG" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) +"csx" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "csH" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -28071,43 +11005,15 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"csM" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csQ" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csR" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"csV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) -"csW" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen) +"csL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/monkeyburger, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"csX" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "csY" = ( /obj/structure/bed/chair{ dir = 4 @@ -28151,51 +11057,10 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/dorms) -"ctn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"cto" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"ctp" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ctx" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/exterior/marsh/river) -"cty" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/marsh/river) -"ctz" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/administration) +"cts" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) "ctA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -28203,36 +11068,9 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"ctB" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) "ctC" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"ctD" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/dorms) -"ctE" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/book/manual/engineering_particle_accelerator, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) -"ctF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/dorms) "ctH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -28240,26 +11078,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"ctI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) -"ctK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/dorms) -"ctS" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/administration) "ctZ" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -28280,13 +11098,22 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cuj" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"cup" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"cux" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "cuy" = ( /obj/structure/platform/strata{ dir = 1 @@ -28301,34 +11128,16 @@ /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"cuB" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"cuH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) "cuM" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/exterior/jungle/deep/carplake_center) "cuP" = ( /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"cuU" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "cuX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -28341,93 +11150,9 @@ /obj/item/clipboard, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"cva" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"cvb" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"cvc" = ( -/obj/item/cell/high, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/med) -"cvd" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/cell/high, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"cve" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"cvf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"cvg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"cvl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "cvn" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) -"cvC" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) "cvG" = ( /turf/open/gm/coast/west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -28438,15 +11163,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"cwd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"cvZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "cwe" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -28454,13 +11176,10 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"cwn" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) +"cwf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "cwq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -28474,47 +11193,18 @@ "cwD" = ( /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cwF" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"cwQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/interior/landingzone_1) "cwS" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "cwT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"cxf" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"cxg" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"cxn" = ( +"cwV" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/asphalt/cement{ - icon_state = "cement14" + dir = 1 }, -/area/strata/ag/exterior/marsh) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -28530,39 +11220,42 @@ "cxK" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"cxS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"cxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "cxW" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"cyi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"cyc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"cyr" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "cyG" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/dorms/flight_control) -"cyH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "cyQ" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, @@ -28575,14 +11268,15 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"czw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/item/clothing/glasses/thermal/syndi, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"czg" = ( +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"cAa" = ( +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -28598,14 +11292,63 @@ /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"cAF" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "cAK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"cAT" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"cBe" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"cBm" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"cBu" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "cBv" = ( /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"cBA" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"cBI" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cBJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "cCE" = ( /obj/structure/cargo_container/wy/left{ health = 5000; @@ -28613,86 +11356,163 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"cDI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "cDL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"cEu" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) +"cDY" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"cEj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"cEJ" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"cFb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"cFf" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "cFg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"cFj" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "cFp" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) +"cFy" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "cFK" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"cGc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "cGg" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"cHm" = ( -/obj/item/weapon/gun/pistol/t73, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"cGK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"cHj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"cHB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"cId" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cIM" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"cIm" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"cIQ" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"cIF" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "cJf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"cKc" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "floor2" +"cJu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"cJI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"cKM" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cKS" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; + pixel_y = 32 }, -/area/strata/ag/interior/outpost/med) -"cLE" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/bookcase{ + icon_state = "book-5" }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"cKY" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"cLW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"cMm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"cMT" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) "cNg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -28704,158 +11524,236 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"cNk" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"cND" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "cOc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"cOB" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"cOi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/res) -"cOI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/exterior/landingzone_2) -"cOR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"cOp" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"cOE" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"cON" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) -"cPq" = ( -/obj/structure/prop/ice_colony/surveying_device, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"cOP" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"cRw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cQg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"cRe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sink{ dir = 4; - icon_state = "floor3" + pixel_x = 9 }, -/area/strata/ag/exterior/research_decks) -"cRB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"cRi" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"cSr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 + icon_state = "p_stair_full" }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"cRX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) -"cSP" = ( -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"cSh" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"cSt" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"cSY" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"cTb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"cTu" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"cTX" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "cUi" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cUr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/catwalk, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"cUt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"cUu" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/obj/item/bedsheet/medical, -/obj/item/storage/large_holster/machete/full, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"cUL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) -"cUT" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"cVt" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cVW" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"cWt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/exterior/marsh/crash) -"cYx" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"cXX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 }, -/area/strata/ag/interior/outpost/engi/drome) -"cYI" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"cYN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/area/strata/ag/interior/dorms/flight_control) -"cZa" = ( -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"cZl" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"cZm" = ( +/obj/structure/largecrate/random, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"cZw" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/dorms/hive) -"cZH" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"cZP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ag/interior/landingzone_1) -"dah" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"dad" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 4; - icon_state = "cyan1" + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/med) +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"daI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) "dbg" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dbm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -28865,98 +11763,166 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"dcd" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"dcE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dcO" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/hive) -"ddI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ +"ddq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"ddP" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"ddZ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"ddU" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"deA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"dfw" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"deW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"dfy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/area/strata/ag/interior/outpost/security) -"dgB" = ( -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"dii" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/coatrack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"dfE" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"diD" = ( -/obj/item/storage/surgical_tray, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"dfR" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dge" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"dgB" = ( +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"dik" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"diV" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "diZ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"dja" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/holobadge, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"djm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "djr" = ( /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"djR" = ( -/obj/structure/bed/chair{ +"djL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "djW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"dks" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"dkt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"dkw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) +"dkR" = ( +/obj/structure/machinery/washing_machine, +/obj/item/facepaint/skull, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dlm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"dlw" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"dlB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) +"dlT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "dmd" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -28966,44 +11932,40 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"dnz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"dnR" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"dmO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/barricade/deployable{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"dnq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"dnW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"dnS" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"doj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"dou" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/strata/ag/interior/landingzone_1) -"doA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "doO" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -29011,69 +11973,126 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"dpd" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"doQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"doZ" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"dpi" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"dpj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"dpo" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/strata/ag/interior/outpost/admin) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"dpJ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"dqa" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) "dqo" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) +"dqr" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"dqx" = ( +/obj/item/stack/rods, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"dqC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) "dqH" = ( /obj/item/stack/catwalk, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"drI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +"drD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "drQ" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/tearlake) -"drS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"dsx" = ( -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"dtt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +"drT" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"dsg" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dte" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dtk" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"dtK" = ( +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"dtU" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"dtY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"dub" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"duQ" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/strata{ - icon_state = "floor2" +"dus" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"duO" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "dvf" = ( /obj/structure/platform/strata{ dir = 1 @@ -29087,48 +12106,100 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dvR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"dvv" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"dvM" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"dwB" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"dwQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) -"dvX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) -"dwO" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"dxu" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dxC" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dxN" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dxS" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"dzL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dzU" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"dyZ" = ( -/obj/structure/holostool, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"dAg" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"dzo" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"dAz" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"dAR" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/radiation, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dBd" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "dBe" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"dBE" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "dBG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -29140,19 +12211,55 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"dBV" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"dBK" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"dBP" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"dCg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dCh" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"dCj" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dCt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "dCu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dDl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"dDK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "dDW" = ( /obj/structure/platform/strata{ dir = 8 @@ -29162,95 +12269,160 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dEa" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/gen/bball) +"dEB" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"dEX" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/camera/autoname{ +"dEP" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"dFU" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) -"dGv" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"dFd" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"dGO" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dFp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/flight_control) +"dFM" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) +"dGr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"dGJ" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"dHh" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"dId" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "dIh" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/tearlake) -"dIE" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dJU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/storage/pill_bottle/antitox/skillless, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"dJV" = ( +"dIo" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"dIp" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"dIB" = ( /obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"dJR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"dJY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "dKj" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/tearlake) +"dKp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"dKx" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/folder/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"dLw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"dLL" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"dLO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dLX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dMd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "dMw" = ( /obj/structure/cargo_container/ferret/left, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"dMy" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"dMF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"dMG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dMT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "dNq" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_dorms) +"dNt" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "dND" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -29261,10 +12433,21 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"dNN" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "dOc" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) +"dOz" = ( +/obj/structure/closet/bombcloset, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "dOG" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /turf/closed/wall/strata_outpost/reinforced, @@ -29284,17 +12467,39 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dQi" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) +"dPg" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dPA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "dQq" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"dQC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dQQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"dRw" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dRU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "dSA" = ( /obj/structure/bed{ icon_state = "abed" @@ -29311,44 +12516,76 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"dSI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"dSN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "dSU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"dSV" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/strata/ag/exterior/research_decks) "dTq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dTN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - icon_state = "floor2" +"dTC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/area/strata/ag/interior/restricted/devroom) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dTY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/russianRed, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"dUd" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "dUl" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"dUP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"dUV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"dUZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dVl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"dVr" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dWa" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "dWc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -29359,50 +12596,78 @@ "dWm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball) -"dWu" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" +"dWw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "dXc" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) +"dXs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dXt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"dXC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "dXQ" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"dXV" = ( -/obj/item/stack/snow, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"dYb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/strata/ag/exterior/paths/north_outpost) -"dYK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dYm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dYn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"dYU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "dZl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) -"dZm" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"dZZ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/center) "eai" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -29413,47 +12678,104 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"eaq" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"eek" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, -/turf/open/floor/strata{ - icon_state = "blue1" +"eaW" = ( +/obj/structure/bed, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ebb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"eeG" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ebq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"eca" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ecf" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ecl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"ecG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"edb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"edI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"edJ" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"eeh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eeH" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"efR" = ( -/obj/structure/cryofeed, -/turf/open/gm/river, -/area/strata/ag/interior/tcomms) -"efS" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - icon_state = "p_stair_full" + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"eff" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"efr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"efL" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"efR" = ( +/obj/structure/cryofeed, +/turf/open/gm/river, +/area/strata/ag/interior/tcomms) "efT" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -29464,6 +12786,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"egJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/condimentbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "egV" = ( /obj/structure/cargo_container/arious/right{ health = 5000; @@ -29471,93 +12799,175 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"ehj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"ehA" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"ehG" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) "ehH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"ehP" = ( +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eih" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"eiv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"eiz" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"eiE" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"eiL" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "eiM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"eiV" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +"eiO" = ( +/obj/structure/closet/lawcloset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "ejw" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"ejR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"eka" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) "ekc" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) -"ekh" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"eky" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) "ekJ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_engi) -"ekZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ekN" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"ekR" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"ekT" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"elo" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) "elr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"elE" = ( -/obj/structure/machinery/power/geothermal, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"elD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"elF" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/exterior/shed_five_caves) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"elZ" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "emg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"emq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"ems" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pspoon, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "emv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"enU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"eoe" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"eol" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "eoK" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -29574,38 +12984,29 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"epA" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"eqf" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"eqA" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "eqO" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"eqS" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"eqV" = ( -/turf/closed/wall/wood, -/area/strata/ag/interior/mountain) -"eqY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"era" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"erf" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"erl" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "erq" = ( /turf/open/gm/river, /area/strata/ag/interior/tcomms) @@ -29616,141 +13017,267 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/north_lz_caves) -"esJ" = ( -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/interior/mountain) +"erM" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"erP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"erW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"ese" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"eua" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/binoculars, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "euc" = ( /obj/structure/platform_decoration/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"euN" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, +"euT" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "euZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"evb" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/holosign/surgery, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"evo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/deep/structures/res) +"evD" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/south_engi) +"evM" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "ewk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"exO" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"ewv" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ewM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/interior/dorms/hive) -"ezl" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"exo" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"eBo" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"exp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eyj" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ag/exterior/landingzone_2) -"eBr" = ( -/obj/structure/prop/dam/van, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"eyO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/exterior/vanyard) -"eDc" = ( -/obj/structure/bed, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"eyV" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/landingzone_2) +"ezD" = ( +/obj/item/device/megaphone, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eDt" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ezL" = ( +/obj/structure/bed/chair, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eAq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"eAC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"eEA" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"eBg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/interior/dorms/flight_control) -"eEO" = ( -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eFa" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"eBL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/strata/ag/exterior/landingzone_2) -"eFA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"eFF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"eBS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"eBU" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"eCd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"eCs" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"eCB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"eCN" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"eCQ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eDa" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"eFG" = ( +"eDD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"eDG" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eDS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"eEC" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"eEQ" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"eFj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"eFn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"eFA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"eGl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) -"eFO" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "eGq" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"eGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) "eGF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -29763,12 +13290,25 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"eHW" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"eHJ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"eHQ" = ( +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eIi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -29776,21 +13316,36 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"eIR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"eIM" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"eIS" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "eIT" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) +"eIU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eIW" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "eJc" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -29799,6 +13354,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"eJm" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "eJs" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -29806,31 +13368,97 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"eJI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"eJS" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"eKE" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eKY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"eLk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"eLn" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "eLC" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"eLF" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"eLL" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/strata/ag/interior/landingzone_checkpoint) -"eLQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"eLR" = ( +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"eMn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"eMp" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "eMz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"eMO" = ( +/obj/structure/machinery/holosign/surgery, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"eMU" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "eMZ" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -29839,21 +13467,6 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"eNz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"eNL" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "eNW" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -29866,20 +13479,27 @@ /obj/structure/filingcabinet, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"eOc" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/item/bedsheet/medical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) +"eOn" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "eOz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/oil, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_res) +"eOA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"eOF" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "eOI" = ( /obj/structure/platform/strata{ dir = 8 @@ -29887,18 +13507,31 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"eOK" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"ePf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"eOZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ePn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ePD" = ( +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"eQa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"eQj" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"eQK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "eRk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -29907,244 +13540,506 @@ /obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"eRJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"eRG" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"eRV" = ( +/obj/structure/surface/table, +/obj/item/handset, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms/south) +"eSx" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/med) +"eTq" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"eTG" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"eTP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"eTU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) +"eUb" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"eUw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"eUI" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"eUS" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"eVc" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer0, +/area/strata/ug/interior/jungle/deep/south_dorms) +"eVe" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"eVI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eWC" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"eWL" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"eWT" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"eXh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c500, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"eXj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"eXx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"eXS" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"eXV" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"eYa" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"eYi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"eYs" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"eYz" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"eYC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"eZo" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/area/strata/ag/interior/landingzone_checkpoint) -"eRV" = ( -/obj/structure/surface/table, -/obj/item/handset, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms/south) -"eSs" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eZR" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"eSx" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/med) -"eSK" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"faG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/landingzone_checkpoint) -"eSR" = ( -/obj/structure/machinery/computer/emails, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"faK" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ag/interior/landingzone_checkpoint) -"eTd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/landingzone_checkpoint) -"eUe" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"faV" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fcb" = ( +/obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp{ + pixel_y = 11 }, -/area/strata/ag/exterior/vanyard) -"eUW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fch" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/engi/drome) +"fcz" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eVc" = ( -/obj/structure/platform/strata/metal{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/deep/south_dorms) -"eVA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/random/toolbox, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/north_carp) +"fcL" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fcU" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"fdn" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"fdX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"fem" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 }, -/area/strata/ag/interior/landingzone_checkpoint) -"eVI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"eXK" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"feX" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/strata/ag/interior/outpost/gen/bball) -"eZw" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ffd" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ffr" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"ffG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) -"fch" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/snow/brown_base/layer0, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) -"fcB" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"fgo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi) -"fgb" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"fgs" = ( /obj/structure/surface/rack, /obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"fhl" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/item/tank/emergency_oxygen/engi, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"fhW" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fgR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"fhj" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "fil" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"fiD" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement4" - }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"fjs" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) +"fiv" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"fjv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"fkw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/snow{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "fkD" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"fkE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "fkG" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"fkK" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ +"fkT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"fkU" = ( +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) +"flb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"flf" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "fli" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"flm" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "fln" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) +"flw" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"flB" = ( +/obj/item/tool/pen/blue, +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "flK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"fmB" = ( +"flP" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"fmq" = ( /obj/effect/decal/cleanable/blood{ layer = 3 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/toilet{ + dir = 4 }, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) -"fno" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"fnf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"fnO" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/folder/red, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"fnP" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"foi" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "fow" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"foN" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"foH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"foT" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"fpp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fpB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fpF" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/suit/imperium_monk, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fpG" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/wo_supplies/storage/mines, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"fqa" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"fqg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"fqk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -30159,47 +14054,27 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"frf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"frL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"fso" = ( -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"fst" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +"frW" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"fsb" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"fsD" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/south_engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -30211,73 +14086,101 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"fuA" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +"ftu" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ftz" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/emcloset, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) +"ftA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"ftN" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"fuz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fuF" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "fuX" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"fuZ" = ( -/obj/effect/spawner/random/supply_kit, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "fvt" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"fvJ" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "fwc" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fwM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fwR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"fxM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"fxO" = ( +"fxt" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fxA" = ( /obj/structure/machinery/door/airlock/prison{ + dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"fyv" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) -"fzn" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) "fzz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -30294,22 +14197,45 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"fzJ" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" +"fzB" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"fzF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) "fzN" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"fzO" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "fAb" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"fAp" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "fAS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -30318,26 +14244,15 @@ /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"fBk" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fBu" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"fBz" = ( +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/surface/rack{ + layer = 2.5 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fBC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -30345,22 +14260,36 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"fBY" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) +"fBH" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "fCo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"fCp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"fCy" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "fCz" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/tearlake) +"fCC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "fCE" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -30374,28 +14303,107 @@ "fCI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) +"fCJ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"fCM" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fDG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) +"fEn" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/weapon/gun/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fEL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) "fFy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"fHp" = ( +"fFD" = ( +/obj/structure/closet/emcloset, +/obj/item/coin/marine/engineer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"fFO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fGy" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"fGS" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"fHO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"fHS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"fIs" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/marsh/crash) +"fIu" = ( +/obj/structure/mirror{ + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "fIF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -30410,13 +14418,34 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fIW" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"fIN" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"fJe" = ( +/obj/structure/dropship_equipment/sentry_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"fJs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"fJP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "fJV" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -30427,16 +14456,22 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"fKt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"fKR" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "fKT" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/south_engi) +"fLf" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fLl" = ( /obj/structure/bed/chair{ dir = 4 @@ -30446,12 +14481,38 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"fLm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"fLT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "fMr" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) +"fMs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "fMv" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/strata, @@ -30466,14 +14527,20 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"fMS" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"fMY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"fNi" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/obj/item/stack/medical/bruise_pack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "fNs" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -30490,135 +14557,222 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fOX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"fOv" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"fOG" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fPK" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/surgery, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "fPO" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"fQG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"fRa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/administration) +"fPQ" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"fQr" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "fRi" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"fRv" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" +"fRQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/exterior/marsh/crash) +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"fRT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"fRX" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fSp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) "fSr" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/shed_five_caves) -"fSF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) +"fSN" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "fSR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"fTN" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" +"fST" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"fUF" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"fUR" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ug/interior/jungle/deep/structures/res) -"fUp" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/security) -"fUB" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"fVg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"fVt" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ dir = 1; - pixel_y = 25 + pixel_y = 20 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"fVy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"fVR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"fVB" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"fVD" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"fVL" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"fWg" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"fWm" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "fWs" = ( /turf/closed/wall/mineral/gold, /area/strata/ag/interior/outpost/med) -"fWV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "orange_tile" +"fWB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fXh" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/dorms) -"fXV" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"fXk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/bed/chair{ +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"fXF" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"fYE" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"fYs" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fYM" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"fYT" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) "fZe" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"fZf" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"fZR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "gab" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"gag" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"gah" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) "gaq" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -30633,149 +14787,177 @@ "gaV" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/crash) -"gbS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 +"gbb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gbt" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"gbU" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"gbu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"gbX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "gcj" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/tearlake) -"gdY" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 8 +"gcO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/outpost/canteen/bar) -"gdZ" = ( -/obj/structure/machinery/smartfridge, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"gcR" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gfd" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" + dir = 2 }, -/area/strata/ag/interior/tcomms) -"gfC" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"gde" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/adminext) +"geg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"gfg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"gfn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "gfI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"ggH" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"gfO" = ( +/obj/item/tool/mop, +/obj/structure/janitorialcart, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"gga" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"ggc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/med) -"gha" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ggD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"ggK" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ghg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "ghi" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/southresearch) -"ghr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/item/storage/photo_album, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"ghM" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"ghn" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"ghB" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"ghG" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/med1) "ghV" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"gif" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) "gih" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"giq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"gil" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/vents/pump{ +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "gjk" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"gjl" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"gjz" = ( +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"gjD" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) "gjK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -30792,13 +14974,18 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gjP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"gkg" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"gkm" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) @@ -30808,13 +14995,21 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"glG" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"glu" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"glB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "glL" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/mountain) @@ -30826,10 +15021,29 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) +"glW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gnx" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/tank/anesthetic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "gnG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"gnP" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "gol" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -30840,84 +15054,132 @@ /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"gov" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"gow" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "goG" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) +"gpc" = ( +/obj/item/storage/pill_bottle/russianRed, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline, +/obj/item/storage/box/gloves, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "gpp" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"gpO" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"gqa" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"gqF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +"gpv" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"gpA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"gpC" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gqz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"gqV" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"grd" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"grh" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"grj" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "grs" = ( /turf/closed/shuttle/ert{ icon_state = "upp16" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"grG" = ( +"grU" = ( +/obj/item/toy/deck, /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gsi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/platform/strata/metal{ - dir = 4 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gsp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"gss" = ( +/obj/structure/coatrack, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"gsC" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"grP" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"gta" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"gtB" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"gtM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "gtZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -30928,6 +15190,15 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"guj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"guq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/med) "guz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -30939,69 +15210,104 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"guF" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"guC" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"gvG" = ( -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"gvb" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"gvg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"gvT" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_carp) +"gwg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/deep/minehead) +"gwp" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"gwu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) -"gvR" = ( -/obj/structure/bookcase, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"gwH" = ( +/obj/item/book/manual/surgery, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"gxl" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gxe" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/obj/item/bedsheet/medical, +/obj/item/storage/large_holster/machete/full, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"gxA" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"gxZ" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"gyr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"gyx" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) -"gzT" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ag/interior/outpost/admin) -"gAm" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/security) "gAv" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -31015,6 +15321,10 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"gAF" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "gBj" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, @@ -31022,24 +15332,89 @@ "gBr" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/south_engi) +"gBI" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"gBJ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"gBM" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"gBT" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "gCa" = ( /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) -"gCZ" = ( +"gCh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"gCz" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"gCL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gCN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"gCY" = ( +/obj/item/stack/sheet/wood, +/obj/structure/closet/crate/internals, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) +"gDp" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"gDq" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"gDs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"gDN" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "gEo" = ( /obj/structure/platform/strata{ dir = 1 @@ -31049,36 +15424,41 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) -"gFf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +"gEM" = ( +/obj/item/stack/snow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"gFl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "gFH" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"gFT" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"gGX" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"gGk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gGC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"gHM" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "gHQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"gHY" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "gIo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31086,19 +15466,30 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gIL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"gIt" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"gIB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"gIQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"gIX" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "gIY" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -31106,14 +15497,82 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"gJv" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"gKj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"gKp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gKv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gKE" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "gKP" = ( /obj/structure/closet/secure_closet/medical2, /obj/item/clothing/gloves/latex, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) +"gKV" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"gLm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"gLB" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) +"gLO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gLU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"gMb" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "gMF" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ @@ -31122,71 +15581,93 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"gMR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"gOb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "gOo" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"gOu" = ( -/obj/structure/machinery/light/small{ +"gOx" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red3" - }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"gPG" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"gOR" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"gPq" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"gPt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gPz" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "gPL" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gPQ" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ +"gQz" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gQA" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"gQR" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"gRK" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"gRp" = ( +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "gRO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) -"gSz" = ( -/obj/structure/machinery/power/apc{ +"gSA" = ( +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/center) +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"gSN" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "gSR" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/south_engi) @@ -31196,13 +15677,21 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"gTk" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"gTh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gTr" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "gTx" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -31214,48 +15703,65 @@ /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"gTC" = ( +/obj/item/clipboard, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "gTE" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"gTM" = ( -/obj/structure/machinery/camera/autoname{ +"gTK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"gUj" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"gTS" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) +"gUg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "gUp" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"gUr" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gUx" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"gUz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "gUP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"gUV" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31268,105 +15774,130 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gWE" = ( -/obj/structure/machinery/bioprinter, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "purp2" +"gVT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gXX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"gWc" = ( +/obj/structure/lz_sign/sorokyne_sign/interior, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"gWp" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"gXz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/strata/ag/interior/outpost/engi/drome) -"gYs" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/strata/ag/exterior/north_lz_caves) -"gZp" = ( -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/strata/ag/exterior/marsh/crash) -"gZP" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"gXU" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"gYv" = ( +/obj/structure/closet/crate/science, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gYN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/exterior/research_decks) -"haN" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi) -"haU" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = -28; - start_charge = 0 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"gYO" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/crash) -"haZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/platform/strata/metal{ +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"gZA" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"gZB" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"haO" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"haR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"hbh" = ( -/obj/structure/filingcabinet, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"haS" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"hbt" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"hcg" = ( +"hbA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"hbN" = ( /obj/item/tool/pen/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "hcO" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"hdc" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +"hdf" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"hdw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"hdP" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"hel" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"hdX" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "heI" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, @@ -31375,6 +15906,12 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) +"heX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "hfq" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -31382,23 +15919,98 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"hfC" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +"hfr" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"hft" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"hfI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"hfN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hfP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"hfQ" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"hgq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"hgw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"hgy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"hgA" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"hhc" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"hhi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" }, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) -"hgI" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"hhQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"hhS" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "hhW" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -31428,6 +16040,13 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"hjN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "hkn" = ( /obj/structure/platform/strata/metal, /obj/structure/barricade/handrail/wire{ @@ -31435,6 +16054,12 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"hku" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) "hkA" = ( /obj/structure/platform/strata{ dir = 8 @@ -31442,14 +16067,37 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hmf" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"hkH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hlv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"hly" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"hlD" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hlE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"hlU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "hms" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -31460,28 +16108,85 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"hni" = ( +"hmE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"hmZ" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hnT" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"hnZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"hoh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"hok" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"hol" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"hov" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"hoC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"hoT" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "hpe" = ( /obj/structure/largecrate/hunter_games_ammo/good, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"hpD" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +"hpN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"hpY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "hqw" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31493,14 +16198,37 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"hsg" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" +"hqV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"hrb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"hrE" = ( +/obj/item/storage/briefcase, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"hsf" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "hsV" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -31509,6 +16237,13 @@ /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"htm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "hto" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31521,27 +16256,53 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"htq" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "htD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"hue" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"htU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ag/exterior/landingzone_2) -"hvj" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"htY" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"huG" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hvp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"hwc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) +"hwq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hwt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "hwD" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -31552,36 +16313,127 @@ "hwI" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"hyh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"hwL" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"hxh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"hxn" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/shed_five_caves) +"hxr" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hxy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"hzb" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +"hyx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"hyz" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/exterior/landingzone_2) -"hCp" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hyI" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"hyO" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"hzJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hzW" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hAc" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"hAs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/dorms/canteen) +"hAF" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"hBr" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"hBB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"hCa" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"hCG" = ( +/obj/structure/surface/rack, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/weldingtool, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"hDu" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"hDx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"hDV" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "hDX" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31595,33 +16447,47 @@ /obj/item/tool/mop, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"hEC" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"hEF" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"hEJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) +"hFa" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "hFm" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"hGd" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"hFF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + pixel_y = 31 }, -/turf/open/floor/strata{ - icon_state = "red3" +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/door/window{ + pixel_y = 10 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/window, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"hGj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "hGm" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31633,6 +16499,15 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"hGC" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"hGG" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "hGH" = ( /obj/structure/bed/chair{ dir = 4 @@ -31644,113 +16519,298 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hHm" = ( -/obj/item/stack/rods, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"hHq" = ( +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"hHE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "hHK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"hIb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/exterior/marsh/crash) -"hIt" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"hJC" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) +"hIa" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"hIe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "hJE" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_dorms) -"hJT" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +"hJS" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/exterior/paths/north_outpost) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"hKb" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"hKf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"hKg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"hKt" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"hLu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"hLG" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hLU" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"hMe" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hMh" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "hMs" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"hOa" = ( -/turf/open/gm/river, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"hOw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"hMz" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"hMB" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"hMD" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"hMO" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"hOD" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"hNd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"hNy" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/ship_memorial{ + desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; + name = "slab of triumph"; + pixel_y = 2 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"hNJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"hNT" = ( +/obj/structure/closet, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"hOa" = ( +/turf/open/gm/river, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"hOq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "hPr" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) +"hPA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "hPK" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"hPZ" = ( -/obj/structure/machinery/space_heater, -/obj/structure/machinery/light/small, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"hQb" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hQf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"hQC" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hQL" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "hQP" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"hTU" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"hQR" = ( +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"hQX" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/tcomms) -"hTX" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"hRh" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"hRq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"hRE" = ( /obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"hRG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"hSx" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hSM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"hSR" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hTz" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"hTI" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/largecrate/guns/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"hTP" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hTZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -31758,21 +16818,69 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"hVk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "hVm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/jung/dorms/med1) -"hVT" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) +"hVt" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hVB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"hVF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) +"hWu" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"hWS" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hXc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"hXh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"hXn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"hXF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"hXW" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) "hYc" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) @@ -31787,150 +16895,321 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"hYO" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"hYV" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hZh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"hZr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hZx" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"hZD" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"hZN" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "iau" = ( /obj/structure/curtain/open/medical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"ibh" = ( -/obj/item/lightstick/red/planted, -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/nearlz2) -"ibE" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -23; - start_charge = 0 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/vanyard) -"ibH" = ( -/obj/item/trash/pistachios, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ag/interior/tcomms) -"ich" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"iaY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ibc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ibh" = ( +/obj/item/lightstick/red/planted, +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/nearlz2) +"ibH" = ( +/obj/item/trash/pistachios, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) +"ibL" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ibR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"ibS" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) -"icG" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"icg" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"icB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"icJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/tearlake) -"idq" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"idc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"idI" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"idL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"idx" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"iet" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"ieE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ieV" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"ifb" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ifp" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"ifs" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"ifA" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/interior/landingzone_1) +"ifR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ifU" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) -"igm" = ( -/obj/structure/bed/chair{ - dir = 4 +"ign" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"igZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/dorms) -"ihd" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ihE" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ihJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"ihM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/tcomms) -"ihy" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"ihO" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"ihW" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"iiw" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "ijo" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) +"ijD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"ikg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"ikm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "ikG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"ilj" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"ikL" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/closet/emcloset, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"ikR" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ilB" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/administration) +/obj/item/book/manual/detective, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"ilH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "ilL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"imV" = ( +"imr" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"imx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"imP" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) "imZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -31940,33 +17219,81 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"ioi" = ( -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"ind" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ioz" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"inf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/area/strata/ag/interior/dorms/hive) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"inh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"inz" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"ior" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"ioF" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"ioG" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "ioM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ipd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"iph" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/static_comms/net_two, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"ipq" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"ipu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"ipw" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"ipA" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) "iqe" = ( /obj/item/lightstick, /turf/open/floor/strata, @@ -31977,6 +17304,15 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/southresearch) +"iqR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "iqV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31991,6 +17327,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"irk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "irq" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -32003,15 +17343,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"iry" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"irF" = ( +/obj/item/trash/pistachios, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "isa" = ( /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) @@ -32021,62 +17359,51 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"isj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"isu" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/landingzone_checkpoint) "isY" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"itw" = ( -/obj/structure/machinery/weather_siren{ - dir = 8; - pixel_x = -18; - pixel_y = 10 - }, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/med) -"itG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) -"iuf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata{ - icon_state = "purp2" +"itb" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"iti" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"iuh" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"itr" = ( +/obj/structure/toilet, /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"itu" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"itw" = ( +/obj/structure/machinery/weather_siren{ dir = 8; - icon_state = "white_cyan2" + pixel_x = -18; + pixel_y = 10 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/med) +"itO" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"iuo" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "iuB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -32085,6 +17412,21 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) +"iuQ" = ( +/obj/item/device/aicard, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iuY" = ( +/obj/structure/closet/coffin, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ivj" = ( +/obj/structure/machinery/photocopier, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "ivF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin3) @@ -32092,14 +17434,14 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"iwp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"iwm" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "iws" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, @@ -32107,25 +17449,13 @@ "iwH" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"ixb" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"ixo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ixn" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32138,73 +17468,41 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"ixD" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ixQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" +"ixL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"ixS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"iym" = ( -/obj/structure/barricade/handrail/strata{ +"ixW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"iyb" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ag/exterior/marsh) -"izc" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"iAA" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/strata, -/area/strata/ag/interior/tcomms) -"iAP" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"iBw" = ( -/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"iyg" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"izz" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"izZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"iBf" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -32220,12 +17518,17 @@ "iBT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/tearlake) -"iBV" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "plate" +"iCc" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/paths/dorms_quad) +"iCg" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) "iCt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -32234,41 +17537,170 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"iCC" = ( -/obj/structure/toilet{ - dir = 1 +"iCH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iCJ" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"iCL" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iDn" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/interior/landingzone_1) "iDq" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"iDC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"iDR" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"iEf" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"iEg" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "iEo" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/exterior/marsh/crash) +"iEy" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"iED" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"iEG" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"iEO" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med1) -"iGN" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - icon_state = "purp2" +"iEX" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"iEY" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"iFF" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ug/interior/jungle/deep/east_dorms) +"iFN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"iGR" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iFV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"iGh" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iGl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"iGq" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"iGz" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iGF" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"iGH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"iHb" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"iHy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"iHA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"iHH" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "iHX" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -32277,6 +17709,23 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"iIe" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"iIn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"iIv" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "iIz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32286,17 +17735,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iIF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "iJh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) +"iJk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "iJp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/latex, @@ -32314,74 +17762,84 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"iKa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "iKI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"iKW" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +"iKL" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "iLr" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"iLJ" = ( -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"iLt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"iLv" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "iMn" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iMP" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +"iMQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"iMZ" = ( +/obj/structure/bedsheetbin, +/obj/item/device/binoculars/range, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iNb" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) "iNe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"iNf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"iOi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"iNv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"iNE" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"iOg" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"iPd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"iPa" = ( +/obj/effect/decal/cleanable/blood{ dir = 4; - icon_state = "floor3" + icon_state = "gib6" }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) "iPw" = ( /mob/living/simple_animal/hostile/retaliate/clown{ health = 10000; @@ -32391,15 +17849,21 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"iQi" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"iPG" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"iQu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/strata/ag/exterior/vanyard) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"iQK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -32408,10 +17872,32 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"iQT" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"iQU" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "iRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"iRq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"iRB" = ( +/obj/effect/spawner/random/attachment, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"iRN" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "iRY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/rods, @@ -32420,10 +17906,61 @@ "iSe" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/south_engi) +"iSn" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"iST" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iTl" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iTB" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"iTC" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"iTV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"iUq" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "iUw" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"iUz" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"iUE" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "iUJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -32434,44 +17971,35 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"iVZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"iWi" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/bed/chair{ +"iUN" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"iVd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/obj/item/storage/pill_bottle/antitox/skillless, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "iWG" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) +"iWP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "iWZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"iXi" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "iXj" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/tool/wrench, @@ -32486,22 +18014,93 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iZr" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +"iXp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"iXD" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"iXI" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"iYX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"iZk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "iZI" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"jam" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +"iZK" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"iZM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"iZV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"iZY" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"iZZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"jad" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jav" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/disposals) "jaZ" = ( /obj/structure/cargo_container/wy/mid{ health = 5000; @@ -32509,12 +18108,35 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"jbb" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) "jbq" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"jby" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"jbA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"jbB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "jbI" = ( /obj/structure/platform/strata{ dir = 1 @@ -32525,37 +18147,82 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"jcV" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/wo_supplies/storage/mines, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"jci" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jcq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"jcK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jdc" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"jdl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "jdC" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"jeF" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - icon_state = "red1" +"jdR" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jem" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jgX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"jeM" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jfm" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"jfD" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/exterior/marsh/river) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jgd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jgm" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "jhl" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -32564,81 +18231,137 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"jit" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" - }, -/area/strata/ag/exterior/landingzone_2) -"jiQ" = ( +"jif" = ( +/obj/item/fuel_cell, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jjw" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"jjJ" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ag/exterior/research_decks) -"jkc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/med) -"jkp" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"jiE" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"jiT" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ag/interior/outpost/med) -"jmy" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"jje" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1 }, -/area/strata/ag/exterior/vanyard) -"jmH" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/restricted/devroom) +"jjf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"jmP" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"jjJ" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/exterior/research_decks) +"jjY" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"jkZ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/closet/bodybag/tarp, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"jlh" = ( +/obj/item/reagent_container/food/drinks/shaker, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"jlA" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"jnG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/area/strata/ag/interior/outpost/engi) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "jnH" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"jrs" = ( +"jnM" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"jnR" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"jnS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"joh" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"joE" = ( /obj/structure/machinery/door/airlock/prison{ + dir = 1; name = "Reinforced Airlock" }, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jpg" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"jqF" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"jqO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jqU" = ( +/obj/structure/sink{ dir = 8; - icon_state = "multi_tiles" + pixel_x = -11 }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"jrd" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "jrw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -32649,29 +18372,38 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/cabin_area) -"jrU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"jrB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/med) -"jsd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"jrI" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/area/strata/ag/interior/outpost/med) -"jso" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "jsw" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"jsA" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"jsC" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "jsP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32683,115 +18415,225 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jsW" = ( -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/surface/rack{ - layer = 2.5 +"jtA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"jtK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/tcomms) -"jtB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"jtL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"jtO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jtW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"juj" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"juJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"juW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "juY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/restricted/devroom) +"jvo" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"jvN" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"jvS" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jwm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "jww" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"jwx" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) "jxc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"jxi" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "red1" +"jxj" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jyq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"jxr" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"jxF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jxP" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "multi_tiles" + icon_state = "pipe-c" }, -/area/strata/ag/interior/dorms/south) -"jyE" = ( +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"jyg" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"jyB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"jyO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"jzX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"jAo" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform_decoration/strata{ + dir = 1 + }, +/turf/open/gm/river, +/area/strata/ag/exterior/nearlz2) +"jAD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 9 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"jAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"jBn" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"jBY" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/mountain) +"jCa" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"jCe" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"jyO" = ( +"jCp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jCy" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"jzD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jAo" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform_decoration/strata{ - dir = 1 + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/gm/river, -/area/strata/ag/exterior/nearlz2) -"jAE" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"jCz" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jCA" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) -"jBO" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "jCE" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"jCU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"jDq" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "jDr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -32799,20 +18641,13 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"jDO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +"jDt" = ( +/obj/structure/sink{ dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" + pixel_x = 11 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -32825,20 +18660,54 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) -"jEW" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +"jFj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "jFO" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) +"jFZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jGj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"jGO" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"jGV" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"jHF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jHJ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "jIz" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -32847,33 +18716,50 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"jJv" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"jIW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jJk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "jJy" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"jKf" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"jJK" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"jKi" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"jJW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"jKj" = ( +/obj/item/storage/firstaid/adv, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jKM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "jLb" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) @@ -32881,15 +18767,33 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"jLY" = ( +"jLw" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"jLJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"jLW" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"jMs" = ( +/obj/item/reagent_container/food/drinks/coffee, /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "jMD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32902,28 +18806,35 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jMV" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) -"jNe" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 +"jNd" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jNE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jNW" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/paths/north_outpost) +"jNX" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/strata/ag/interior/administration) -"jNJ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "jOa" = ( /obj/structure/filingcabinet, /turf/open/floor/strata, @@ -32934,57 +18845,97 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"jOI" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "jOV" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"jPc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +"jOW" = ( +/obj/structure/barricade/snow, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"jOZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/bed{ + icon_state = "abed" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jPx" = ( -/obj/structure/window/reinforced/tinted{ +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"jPQ" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"jPp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/area/strata/ag/exterior/landingzone_2) +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"jUo" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"jRe" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"jRn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/bed/chair/office/light{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"jRU" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jRW" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jSc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"jTu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"jTH" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"jUa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/device/radio, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"jUi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) @@ -32997,112 +18948,163 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"jVc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "purp1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/camera/autoname, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"jVy" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"jVS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"jWa" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"jWb" = ( +/obj/structure/barricade/wooden{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"jWj" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"jWs" = ( +/turf/open/floor/plating, +/area/strata/ag/exterior/landingzone_2) +"jWz" = ( +/turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"jVD" = ( +"jWE" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) -"jVU" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jXG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/interior/tcomms) -"jWi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"jXN" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"jXQ" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 9 + }, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/crash) +"jXR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jXT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"jYd" = ( +/obj/effect/spawner/random/supply_kit, +/obj/structure/surface/rack{ + layer = 2.5 }, -/area/strata/ag/interior/research_decks/security) -"jWk" = ( -/obj/structure/machinery/light/small{ +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jYg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"jYj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jYS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/engi/drome) -"jWs" = ( -/turf/open/floor/plating, -/area/strata/ag/exterior/landingzone_2) -"jWz" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"jXD" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"jYU" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/obj/item/weapon/gun/revolver/upp, -/obj/item/ammo_magazine/revolver/upp, -/obj/item/ammo_magazine/revolver/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jZH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/area/strata/ag/interior/tcomms) -"jXQ" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 9 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jZI" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"kap" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/crash) -"jXV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "kaw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"kaP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/hive) -"kbS" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"kaD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"kaL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"kaW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"kby" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kbI" = ( +/obj/structure/morgue, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "kbU" = ( /obj/effect/decal/cleanable/blood, @@ -33111,88 +19113,103 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"kbW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kcj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) "kcw" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"kcy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"kdm" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kdK" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"keg" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" +"kcV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"kes" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"kds" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kej" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"keN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"keR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) -"kfm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata{ - icon_state = "purp2" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"keV" = ( +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"kfB" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"kfP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kfQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kfY" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kfN" = ( -/obj/structure/machinery/light/small{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"kgC" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/west_engi) +"kfZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kgE" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"kgL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "kgQ" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment{ @@ -33202,6 +19219,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"kgU" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "khh" = ( /obj/structure/machinery/power/smes/buildable{ capacity = 1e+006; @@ -33209,6 +19230,16 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) +"khL" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) "khR" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/strata_decals/catwalk/prison, @@ -33217,122 +19248,246 @@ "khT" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) +"kib" = ( +/obj/item/stool, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kim" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) +"kiM" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) "kjc" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"kjr" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"kjA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kjC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"kkk" = ( +/obj/item/storage/pill_bottle/bicaridine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"kkw" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "kkL" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/nearlz2) -"klE" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +"kmj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"kmK" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/dorms/flight_control) -"kmt" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/research_decks) +"kmT" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"knb" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"kne" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"knJ" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"knM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"knX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "koj" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/shed_five_caves) +"koB" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) +"koC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "koG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kqt" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"krg" = ( +"koH" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"koS" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kpG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"kpS" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"kqd" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; + icon = 'icons/obj/structures/props/misc.dmi'; + icon_state = "jukebox"; + name = "Rockin Robin 2300 Jukebox"; + pixel_x = -5; + pixel_y = 16 }, -/area/strata/ag/interior/tcomms) -"krm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"kqI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"kqU" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"krD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"krG" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"ksn" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) "ksA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kuB" = ( -/obj/structure/bed/chair/office/light{ +"kuy" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"kuT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kvF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"kvG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/research_decks/security) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"kvI" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kvR" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "kvY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kwu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/static_comms/net_two, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"kwR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"kwU" = ( -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"kxa" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 24; - start_charge = 0 +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 }, -/turf/open/floor/plating, -/area/strata/ag/exterior/paths/dorms_quad) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "kxF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -33353,6 +19508,18 @@ "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) +"kyC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kyG" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "kyT" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 @@ -33363,56 +19530,152 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"kzc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +"kzf" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) "kzk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"kzD" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kzw" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"kzZ" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"kAo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/tcomms) -"kAn" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kAs" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) +"kAS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"kAU" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"kBB" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"kCf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) "kCk" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/center) -"kDb" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kCq" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"kCV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"kEa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"kEj" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"kEF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"kEV" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"kEZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"kFR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"kGz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"kGF" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"kGH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"kGJ" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"kGP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "kGV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) +"kHw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "kHV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -33424,6 +19687,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"kIp" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "kIu" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -33433,18 +19701,24 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"kIK" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"kIL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"kIR" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"kIT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "kIW" = ( /obj/structure/bed/chair{ dir = 8 @@ -33454,20 +19728,60 @@ "kJd" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) +"kJj" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/storage/briefcase, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"kJn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"kJS" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/item/weapon/gun/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kKi" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"kKj" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Chunkeez Diner door" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"kKG" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kKI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"kKJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"kKL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"kLy" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -33477,15 +19791,36 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"kMQ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"kNp" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "kNJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"kNZ" = ( -/obj/structure/inflatable, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"kNS" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"kOb" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"kOn" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -8 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kOo" = ( +/obj/structure/surface/rack, +/obj/item/storage/bible/booze, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) "kOr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -33493,76 +19828,83 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"kPl" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kOP" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"kOZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "kPC" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kPL" = ( +"kPN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"kPM" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kQu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kRb" = ( -/obj/structure/bed/nest, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 +"kQB" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"kQR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kQS" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"kRe" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) +"kRi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"kRj" = ( +/obj/item/tool/wrench, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kRO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp1" +"kSc" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kRY" = ( -/obj/structure/morgue, -/obj/structure/machinery/light/small{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) "kSs" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -33572,6 +19914,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) +"kST" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "kSU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/flight_control) @@ -33579,19 +19927,41 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"kTh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "kTB" = ( /turf/open/gm/coast/north, /area/strata/ug/exterior/jungle/deep/carplake_center) +"kTD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kTF" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"kTL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "kUb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"kUi" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "kUs" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -33602,17 +19972,56 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"kVc" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"kVq" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kVD" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"kVS" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"kWv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kWG" = ( +/obj/structure/kitchenspike, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "kWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"kXi" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"kWZ" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"kXe" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"kXg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "kXx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -33620,13 +20029,18 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kXR" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kXP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"kXU" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kYd" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -33639,11 +20053,19 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kYx" = ( -/turf/open/asphalt/cement{ - icon_state = "cement15" +"kYB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"kZr" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kZL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -33657,14 +20079,15 @@ /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh) -"lax" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"lak" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"laA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "laF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, @@ -33678,9 +20101,44 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"lbf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "lbh" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"lbj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"lbk" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/tearlake) +"lbO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"lcp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lcq" = ( /obj/item/clothing/suit/storage/militia, /obj/item/clothing/suit/storage/snow_suit/doctor, @@ -33689,6 +20147,13 @@ "lcs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh) +"ldd" = ( +/obj/item/stack/sandbags, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "ldp" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata/metal{ @@ -33700,6 +20165,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"ldx" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ldy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "ldO" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_carp) @@ -33707,12 +20182,61 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"len" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"leP" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "lfj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"lfz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"lfL" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"lfP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"lga" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"lgc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"lgu" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "lgv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -33725,6 +20249,10 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"lgA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "lhH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -33732,101 +20260,129 @@ "lhI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/deep/structures/engi) -"lhR" = ( -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"lhQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) -"lij" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lih" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"liu" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"liE" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "liK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"liP" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"liS" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"ljX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"ljg" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/closet/bodybag/tarp, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"ljY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"lka" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"lkk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"lks" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"llC" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +"lkR" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"llz" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"llT" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"lmc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/device/encryptionkey/dutch, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) +"lmS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "lmV" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/southresearch) -"lnd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) -"loP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"lok" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/closet/jcloset, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"lpa" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "lpk" = ( /obj/structure/bed{ icon_state = "abed" @@ -33843,55 +20399,162 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"lpr" = ( -/obj/structure/machinery/shower{ - dir = 1 +"lpu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/window/reinforced/tinted{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"lpF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"lpG" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lpI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"lpR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"lpT" = ( +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"lqF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"lqP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"lqZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "lrd" = ( /obj/structure/machinery/power/terminal{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) +"lru" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lrz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "lrO" = ( /obj/structure/cargo_container/ferret/mid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"lsj" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"lsl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lss" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"lsu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"lsv" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "lsz" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"lsZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"lti" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) "ltp" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"ltN" = ( +"ltB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/obj/structure/machinery/computer/communications{ + dir = 4 }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"ltD" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"ltE" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) "ltZ" = ( /obj/structure/bed/roller, @@ -33900,6 +20563,31 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"lue" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/landingzone_2) +"lun" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"lur" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"luv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"luy" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "luA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -33917,48 +20605,68 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lvE" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) "lvF" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/tearlake) -"lws" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"lvZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/tcomms) -"lwI" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lwe" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"lwo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lxp" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"lwS" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"lxH" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/structures/res) +"lxJ" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"lxM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"lxR" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "lyv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) +"lyy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"lyE" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "lyX" = ( /obj/structure/bed{ icon_state = "abed" @@ -33974,30 +20682,94 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"lzj" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"lzq" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lzt" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"lzT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +"lzE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pouch/flare/full, +/obj/item/weapon/gun/pistol/t73, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"lzR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "lAc" = ( /turf/closed/wall/wood, /area/strata/ag/interior/restricted) +"lAo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lAv" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "lAx" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"lAP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"lAR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"lAY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lBD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"lCu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"lDp" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "lDz" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, @@ -34006,54 +20778,81 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"lEo" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"lDR" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/strata/ag/exterior/landingzone_2) -"lFy" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"lEn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"lEp" = ( +/obj/structure/largecrate/random, +/obj/item/toy/deck, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/center) +"lEy" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"lFf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lFG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"lGv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) +"lGw" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"lHH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"lHE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"lHI" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "lHO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"lIG" = ( -/obj/structure/machinery/power/apc{ - dir = 4; - pixel_x = 28; - start_charge = 0 +"lIh" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lIk" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/russian, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/turf/open/floor/strata, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"lIQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "lIR" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -34062,6 +20861,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"lJf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "lJz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, @@ -34074,53 +20877,83 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"lKs" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"lJJ" = ( +/obj/structure/machinery/photocopier, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"lKb" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "lKv" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"lKx" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "lKM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/water) +"lLe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "lLw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"lMB" = ( -/obj/structure/bed/chair/comfy{ +"lLB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lLC" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"lMe" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lNc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"lNr" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/obj/item/weapon/gun/shotgun/type23/riot, -/obj/item/weapon/gun/shotgun/type23/riot, -/obj/item/weapon/gun/shotgun/type23/riot, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"lNk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"lOy" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"lOD" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "lOT" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -34133,37 +20966,45 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lPz" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"lOU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lPg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"lPK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) -"lQy" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"lQC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "lQT" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -34172,13 +21013,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"lRa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"lRE" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/crash) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -34186,6 +21024,16 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"lSa" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"lTn" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "lTG" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, @@ -34193,114 +21041,158 @@ "lTW" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/south_engi) -"lTX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"lUw" = ( +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) +"lVj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"lUg" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"lVo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"lVz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"lUm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"lUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"lVB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/area/strata/ag/interior/outpost/gen/bball) -"lUw" = ( -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "lVF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ dir = 1 }, -/obj/structure/platform/strata{ +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/gm/river, +/area/strata/ag/exterior/nearlz2) +"lVP" = ( +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lWn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"lWo" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lWr" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_carp) +"lWs" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"lWv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"lXt" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"lXv" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/gm/river, -/area/strata/ag/exterior/nearlz2) -"lVJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"lYd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lYl" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"lYL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) -"lXd" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"lYS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/exterior/marsh) +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "lZc" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"lZd" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "lZf" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/river) -"mam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"lZj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/dorms/hive) -"maP" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"maI" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"mbp" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" + dir = 1 }, -/area/strata/ag/interior/outpost/med) -"mce" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"mbE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/gen/bball) -"mcD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"mca" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"mcM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mcO" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "mcX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -34308,15 +21200,6 @@ /obj/item/device/flashlight, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) -"mcY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) "mde" = ( /obj/structure/platform_decoration/strata{ dir = 1 @@ -34324,82 +21207,65 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"mdB" = ( +"mdu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) -"mem" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"meu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"meS" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"mdA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mdY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"mef" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"meL" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "mfp" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/landingzone_checkpoint) -"mfv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) -"mfW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms/flight_control) +"mgK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"mgW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"mic" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"mhC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mhU" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "mip" = ( /obj/structure/platform/strata{ dir = 1 @@ -34411,33 +21277,34 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"mir" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mit" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"miv" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "miy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"miL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ +"mje" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"miR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "mjp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -34451,139 +21318,192 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mjt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "mjJ" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"mjR" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mlq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mjP" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mku" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"mky" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"mkI" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"mli" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"mlp" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mlz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"mlJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/light/small, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/strata/red3/north, /area/strata/ag/interior/outpost/med) -"mms" = ( -/obj/effect/glowshroom, -/obj/structure/barricade/handrail/strata{ +"mlQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mlT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"mlY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "mmF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"mnq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"mmG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"mmQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"mnY" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"mne" = ( +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"mng" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/interior/outpost/canteen) -"mow" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"mny" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"mnF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mnK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/item/weapon/harpoon, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"moa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"mog" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) +"moT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"moW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"moX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "mpk" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" }, /area/strata/ag/exterior/marsh/crash) -"mpm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "mpr" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mqs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"mqQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"mrp" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"mrz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"mrG" = ( -/obj/item/clothing/shoes/snow, +"mpx" = ( /obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mqS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/area/strata/ag/exterior/paths/north_outpost) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"mqU" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mqZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "mrT" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -34605,85 +21525,140 @@ "mtD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/canteen/bar) +"mtL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/snow{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mtO" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"muG" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"muH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"mvc" = ( +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "mvh" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"mvi" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "mvE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"mwq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"mvK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "mwt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"mxa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mwH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"mwX" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/med) -"mxu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"mxb" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"mxd" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"mxJ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"mxQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"mxU" = ( +/obj/structure/machinery/vending/security/upp, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"mxZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/outpost/med) "myk" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"myA" = ( +"myR" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"mzf" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"mAt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"mzp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) -"mBb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"mAz" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "mBl" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/barricade/handrail/strata{ @@ -34691,26 +21666,54 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"mCx" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"mCK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mBm" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"mBu" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"mBC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mBR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"mCu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"mDa" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"mDh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "mDF" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) +"mDT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "mEk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -34719,29 +21722,125 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mEL" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"mEu" = ( +/obj/structure/computerframe, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) -"mFh" = ( -/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"mEI" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"mEW" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/exterior/marsh/center) +"mFc" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"mFd" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"mFf" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"mFn" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"mFq" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mFD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mFE" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"mFI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"mFT" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"mFY" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"mGf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mGk" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "mGv" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) -"mGA" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"mGx" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) +"mGR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"mHi" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/clothing/suit/xenos, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mHl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "mHo" = ( /obj/structure/largecrate/random, /obj/effect/decal/strata_decals/catwalk/prison, @@ -34770,89 +21869,83 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"mKv" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"mIY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"mJX" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"mKA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"mKe" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"mKX" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/exterior/marsh/crash) -"mLe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"mKG" = ( +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"mLm" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" - }, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "mLn" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_engi) -"mLN" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ +"mLu" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mMo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"mLW" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "mMp" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/tearlake) +"mME" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mMG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "mMR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"mNG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"mNq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, @@ -34870,188 +21963,456 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"mPH" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/landingzone_checkpoint) "mQe" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQg" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQE" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"mQu" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "mQR" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"mRN" = ( +"mRe" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/minehead) +"mRM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"mSp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"mSx" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"mSB" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"mSD" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/minehead) +"mSP" = ( +/obj/structure/bookcase, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"mSQ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mTg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mSK" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mTv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"mTF" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"mTV" = ( +/obj/structure/prop/dam/van, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"mUg" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "mUD" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mUO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "mUU" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"mVc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mVn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mWd" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/storage/pill_bottle/alkysine, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "mWF" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"mWT" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"mWI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/strata{ - icon_state = "purp2" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"mWL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"mXv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"mXx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/toy/deck, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mXN" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "mYs" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"mYF" = ( -/obj/structure/barricade/handrail/strata{ +"mZc" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"mZd" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/gen/foyer) +"mZo" = ( +/obj/item/weapon/gun/pistol/t73, +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mZs" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"mZH" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) -"mYN" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mZR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/exterior/marsh) -"mYX" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"nak" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nal" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"nau" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/photo_album, /obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"naR" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"naU" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"nbm" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"nbp" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"nbz" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/kitchenspike, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"ncn" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ncq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ndY" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"mZd" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/interior/outpost/gen/foyer) -"nai" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) -"ncp" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"neg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/area/strata/ag/interior/tcomms) -"ncT" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"nep" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ag/interior/dorms/south) -"ndC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"nes" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"neN" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ag/interior/outpost/engi/drome) -"ndS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"neu" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"neV" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"neW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"nfb" = ( +/obj/structure/machinery/reagentgrinder, /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"nfn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/structures/res) -"neL" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"nft" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "nfK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) +"nfV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"nfY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"ngl" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"ngq" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ngO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/marsh) +"nhf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "nhv" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"njA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"nic" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/dorms/hive) +"nie" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"niB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"niU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"niX" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"njg" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"njq" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"njC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"njS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/omelette, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer1, @@ -35065,6 +22426,17 @@ /obj/structure/floodgate, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) +"nks" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"nkF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "nla" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -35074,14 +22446,62 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"nlg" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"nlk" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"nmm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"nmz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"nmJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "nmS" = ( /obj/structure/machinery/message_server, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"nni" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "nnq" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"nnK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "nnY" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -35090,25 +22510,60 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nnZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "noq" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"npS" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" +"noA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/structures/res) +"noB" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"noJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/exterior/marsh) -"npW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"noY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"npc" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nps" = ( /obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red3" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"npB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) +"npT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "npX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -35117,20 +22572,43 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"nqm" = ( +"nqd" = ( /obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/folder/red, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/item/device/lightreplacer, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/extinguisher, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"nqt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"nqE" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"nqG" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"nqS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "nqX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"nqY" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "nrc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/sheet/wood, @@ -35138,18 +22616,8 @@ /area/strata/ag/exterior/paths/southresearch) "nrp" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/marsh/river) -"nrP" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/marsh/river) "nrQ" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light/small, @@ -35158,26 +22626,21 @@ "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_carp) -"nsB" = ( -/obj/structure/closet/coffin, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"ntu" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ntT" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +"nsI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"nsW" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"ntz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -35189,39 +22652,115 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"nuu" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nwy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"nwI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "nxh" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"nxn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"nxt" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"nxv" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "nxF" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/exterior/marsh/crash) -"nyB" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" +"nxL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"nxQ" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"nzI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"nyf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nyg" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nyE" = ( +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"nyH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"nyW" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"nzu" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"nzK" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_carp) +"nAr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"nAw" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"nAG" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "nAM" = ( /obj/structure/platform/strata{ dir = 1 @@ -35231,15 +22770,72 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"nAU" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "nAV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"nAY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "nAZ" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_carp) +"nBb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"nBd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) +"nBk" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"nBl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nBs" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nBx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"nCk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "nCD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -35249,13 +22845,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"nCJ" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) +"nCR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "nDj" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -35265,13 +22858,75 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nFN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" +"nDB" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"nDG" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) +"nEa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, +/turf/open/floor/strata/white_cyan4/north, /area/strata/ag/interior/outpost/med) +"nET" = ( +/obj/structure/machinery/centrifuge, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nFf" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"nFJ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"nFK" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nFS" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"nFU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nGf" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "nGi" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/ice/layer0, @@ -35282,33 +22937,75 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"nIf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ +"nGB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 4; - icon_state = "floor3" + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/interior/tcomms) -"nIS" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/structure/platform/strata/metal{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) +"nGR" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"nHz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nHE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"nHT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"nJa" = ( -/obj/structure/closet/secure_closet/personal, +"nIr" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nIA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"nIL" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"nIQ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"nJB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "nJK" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh) @@ -35316,58 +23013,190 @@ /obj/structure/machinery/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"nKk" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +"nJS" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nKf" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"nKp" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"nKA" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"nKG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"nKI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "nLG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"nLJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"nLK" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"nLR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"nLS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"nMw" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"nMz" = ( +/obj/structure/closet/lawcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"nNx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"nNy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"nOU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "nPb" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_carp) +"nPd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) "nPh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"nPq" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nPu" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"nPF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) +"nPI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "nPJ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"nPW" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"nQa" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/exterior/marsh/crash) -"nQk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"nQb" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"nQr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) +"nQD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "nQE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"nQX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/lightreplacer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nRM" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "nRN" = ( /obj/structure/cargo_container/arious/rightmid{ health = 5000; @@ -35375,56 +23204,80 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"nSb" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) +"nRQ" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "nSJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"nSN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "nSQ" = ( /obj/structure/cargo_container/ferret/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"nST" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"nTf" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +"nSV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"nTa" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"nTq" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/strata/ag/exterior/landingzone_2) -"nTD" = ( -/obj/structure/toilet{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"nTM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nTQ" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "nTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) +"nUb" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"nUj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "nUM" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -35432,35 +23285,95 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"nUX" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"nVp" = ( +/obj/structure/surface/rack, +/obj/item/spacecash/c500, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"nVV" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nVX" = ( +/obj/structure/machinery/disposal, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"nWq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"nVt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms) -"nWv" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "nWX" = ( /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"nXf" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nXr" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nXK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"nXO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"nYb" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/center) +"nYe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nYA" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) +"oac" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"oak" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"oaT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) "oaV" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -35468,13 +23381,29 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"obG" = ( -/obj/structure/filingcabinet/chestdrawer, +"obb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"obo" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/outpost/med) +"obv" = ( +/obj/item/device/radio, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ock" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -35487,58 +23416,25 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"ocE" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ocH" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"oda" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"odr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) -"odB" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/landingzone_2) "odJ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi/drome) -"oeA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/strata/ag/exterior/marsh/crash) "oeH" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"oeI" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "oeK" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -35548,34 +23444,89 @@ "oeO" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_carp) -"oeQ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/engi/drome) -"oeT" = ( +"ofd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata, +/area/strata/ag/interior/landingzone_checkpoint) +"ofx" = ( +/obj/item/poster, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ofU" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"ogc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ogk" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ogs" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ogM" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"ogQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"ohh" = ( +/obj/structure/bed/nest, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ohm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/blue, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"ohE" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"ohJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/strata/ag/exterior/vanyard) -"ofd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata, -/area/strata/ag/interior/landingzone_checkpoint) -"oiF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"oil" = ( +/obj/structure/window/framed/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"oir" = ( +/obj/item/stool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"oiJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "oiV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -35586,6 +23537,24 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"oja" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"ojn" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ojv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"ojJ" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "okE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) @@ -35597,24 +23566,63 @@ icon_state = "upp20" }, /area/strata/ag/exterior/marsh/crash) -"olh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"okT" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"olv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"olZ" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"omJ" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"olH" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, /obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/door/window/eastright{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"omZ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"ong" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"onl" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, @@ -35622,18 +23630,35 @@ "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"ooj" = ( +"onu" = ( /obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"onZ" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"oom" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"ooE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"ope" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "opg" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -35641,131 +23666,305 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) +"opT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) "oqc" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"oqA" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"oqe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "oqJ" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"oqO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "oqQ" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) +"oqY" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cdeathalarm_kit, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "orc" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ors" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"orp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"orr" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"orv" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "orL" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi/drome) -"orQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) "orW" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"osd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"osE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"osU" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"otg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "otl" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"otw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"otG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"otJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"ouj" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"oul" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ouA" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "ouB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ouJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"ouV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"ouX" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ovh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/area/strata/ag/exterior/landingzone_2) -"ovS" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"ovn" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"ovT" = ( +/obj/item/reagent_container/food/snacks/microwavable/donkpocket, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"owb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ows" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) +"owS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"oxp" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"oxr" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"oyu" = ( -/obj/structure/machinery/shower{ - dir = 8 +"oxI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"oyg" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"oym" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "oyy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) +"ozk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"ozq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ozH" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ozX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"oAt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "oAQ" = ( /obj/structure/machinery/light/small, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"oBn" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"oBb" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"oBv" = ( -/obj/item/stack/rods, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"oBk" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oBL" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"oCr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"oCv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"oCJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"oDC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "oDL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 @@ -35773,56 +23972,113 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"oFG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"oDW" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/exterior/landingzone_2) -"oGA" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"oEa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"oGW" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oEo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ag/exterior/nearlz2) -"oHN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oEI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"oEM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oER" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"oFe" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"oFf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"oGe" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) -"oIx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - icon_state = "blue1" +"oHk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"oHs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"oHK" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"oHW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"oJD" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"oIW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"oIX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"oJi" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"oJQ" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -35830,14 +24086,17 @@ "oKo" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"oKV" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"oKz" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"oKD" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "oLv" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -35845,45 +24104,77 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"oLz" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"oLS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oLV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/stack/catwalk, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"oMI" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oNx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"oNN" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"oNP" = ( +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"oOf" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"oOi" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"oMa" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"oOn" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"oOo" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"oOB" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"oOv" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/area/strata/ag/exterior/research_decks) -"oOX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"oOE" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/item/storage/box/attachments, /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 1; + pixel_y = 20 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oOV" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "oPz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -35892,44 +24183,60 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oPN" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) +"oPH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "oPQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"oQe" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"oQm" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"oQo" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oQs" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "oQv" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/crash) -"oRm" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"oQC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"oRd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) -"oSN" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"oRf" = ( /obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"oSH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/obj/item/device/radio, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) "oSP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -35937,17 +24244,44 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"oSR" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) "oSV" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"oUS" = ( -/turf/open/floor/strata{ - icon_state = "red1" +"oTc" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"oTU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oUk" = ( +/obj/structure/dispenser, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"oUv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"oUJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/reagent_container/spray/pepper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -35956,36 +24290,22 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oWt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"oWD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"oWO" = ( -/obj/structure/window/reinforced/tinted{ +"oWe" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"oWo" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"oWA" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "oWQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -35996,35 +24316,78 @@ "oWU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"oZt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata{ - icon_state = "floor2" +"oWV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"oYC" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) "oZD" = ( /obj/item/lightstick, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"pad" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + req_one_access = null + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"pae" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"paw" = ( +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "pax" = ( /obj/structure/largecrate/hunter_games_medical, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"paB" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"paV" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "paY" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pbC" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) +"pbm" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"pbw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "pbF" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -36032,16 +24395,48 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pbP" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"pcu" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"pcv" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"pcE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"pcP" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "pdv" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"pdC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pdE" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"pdU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "pex" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -36049,36 +24444,80 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) +"peH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"peK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"peV" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"pfb" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"pfu" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/south_engi) -"pfQ" = ( -/obj/structure/platform/strata/metal{ +"pfD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"pga" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"pgc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pgW" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) +"phF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"phT" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, /obj/effect/landmark/crap_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"piF" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/adminext) "piO" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -36104,114 +24543,112 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pkc" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"pkG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"pjg" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"pjB" = ( +/obj/structure/machinery/cryobag_recycler, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pjN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/strata/ag/interior/outpost/med) -"pkO" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/disposals) -"plC" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"pjQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"pka" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) -"pmC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pmT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +"pkb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pnP" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"pkd" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"pkk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pkm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"pkO" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/disposals) +"pmf" = ( +/obj/structure/sink{ dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"poc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"ppe" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" + pixel_x = -11 }, -/area/strata/ag/exterior/landingzone_2) -"ppA" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/mirror{ + pixel_x = -29 }, -/area/strata/ag/interior/outpost/engi/drome) -"ppC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"pmi" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"pmy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) -"ppX" = ( +"pnj" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"pnB" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/item/paper_bin, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"pop" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"ppn" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ppL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ppU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -36220,6 +24657,12 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"pqB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "pqE" = ( /obj/structure/cargo_container/wy/right{ health = 5000; @@ -36241,28 +24684,33 @@ /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"pro" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"prn" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"prw" = ( +/obj/item/stack/snow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) +"prZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/stack/medical/bruise_pack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"psa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/engi/drome) -"prA" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -36271,44 +24719,28 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"psE" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"psQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"psn" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"psz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"psR" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/east_carp) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "psV" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -36318,82 +24750,126 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"ptr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"pto" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"pts" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "multi_tiles" + id_tag = "mining_outpost_pump" }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ptA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"ptC" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"ptI" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"ptP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "ptT" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/hive) -"ptW" = ( +"ptZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"puc" = ( +/obj/effect/landmark/good_item, +/obj/item/stack/rods, /obj/effect/decal/cleanable/blood{ icon_state = "xgib6" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"pur" = ( +/obj/structure/xenoautopsy/tank/broken{ + desc = "A broken cryo tank, this must've been where it all began..." }, -/area/strata/ug/interior/jungle/deep/structures/res) -"puV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"puO" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pvr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"puX" = ( -/obj/structure/closet/lawcloset, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"pvw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"pvY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi/drome) -"pwn" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"pwz" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"pvD" = ( +/obj/item/tool/kitchen/rollingpin, +/obj/item/stack/sandbags, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"pvV" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pwj" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"pyt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "pzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -36401,65 +24877,112 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"pzt" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"pzC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pzK" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"pzR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pzZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "pAc" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior) -"pAM" = ( -/obj/structure/surface/table/reinforced/prison, +"pAp" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"pAK" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"pAN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pAR" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"pBv" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pBF" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"pCA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"pCB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pCG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pCH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) -"pDb" = ( -/obj/structure/dropship_equipment/sentry_holder, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"pDa" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) "pDz" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/canteen) -"pDQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "platebot" +"pDG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -36476,62 +24999,49 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"pEo" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +"pEv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pEH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"pEF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"pEJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "pEM" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"pER" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"pEY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"pFi" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating{ - icon_state = "platebot" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"pGf" = ( -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -23; - start_charge = 0 +"pFO" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pFP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"pGh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"pGj" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"pGk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "pGt" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -36546,34 +25056,60 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pGC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"pHl" = ( +/mob/living/simple_animal/hostile/carp{ + desc = "You think this might be Glubs's son." }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/gm/dirt, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"pHy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "pHR" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) "pIa" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) +"pIf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"pIh" = ( +/obj/structure/machinery/light/small, +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "pIy" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"pJu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; +"pIT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"pIU" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"pIY" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"pJf" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pJw" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) "pJz" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -36583,6 +25119,12 @@ "pJA" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_dorms) +"pJF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pKq" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -36590,24 +25132,59 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"pKy" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pKI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pKQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"pKY" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"pLp" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "pLA" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) -"pLE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"pLX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/area/strata/ag/interior/tcomms) -"pMU" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/obj/structure/tunnel{ - id = "hole1" +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"pMO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"pNu" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "pNL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -36619,46 +25196,79 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"pNY" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"pOH" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"pOW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"pPj" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "pPk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"pPm" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"pPX" = ( +/obj/structure/bed/nest, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"pQd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/obj/item/storage/surgical_tray, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"pQm" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"pQs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pQv" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"pQC" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "pQH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) +"pQO" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/item/tool/crowbar, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pQP" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "pRj" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) @@ -36666,18 +25276,23 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"pRQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/security) -"pSc" = ( -/obj/structure/closet/coffin, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" +"pRJ" = ( +/obj/structure/tunnel/maint_tunnel, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pRN" = ( +/obj/structure/toilet{ + dir = 1 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"pRT" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"pSk" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) "pSm" = ( /obj/structure/surface/rack{ @@ -36688,9 +25303,57 @@ /obj/structure/closet/bodybag/tarp, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"pSv" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "pSw" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_carp) +"pSV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pTN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"pUg" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pUl" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pUs" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "pUB" = ( /obj/structure/bed{ icon_state = "abed" @@ -36705,23 +25368,45 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pVn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 +"pVm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"pVK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp1" +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"pVU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pWc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"pWe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pVq" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"pWl" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "pWp" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -36732,86 +25417,162 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"pWP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"pWQ" = ( +/obj/structure/bed, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pXd" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"pXB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pXD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"pXM" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"pYc" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pYr" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pYt" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/strata/ag/interior/tcomms) -"pYI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"pYA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"pYF" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "pYM" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"pYZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "pZe" = ( /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"pZv" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"pZB" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"pZP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pZS" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"qbk" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +"qai" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qaB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"qaT" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"qba" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 }, -/area/strata/ag/exterior/landingzone_2) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) "qbA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"qbC" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qbK" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) "qbR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qbU" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/landingzone_2) -"qcl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) +"qcm" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"qcH" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "qcO" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -36824,32 +25585,55 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) +"qda" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"qdn" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) "qdI" = ( /obj/item/ammo_magazine/revolver/upp, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qer" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"qdP" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 14 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"qeh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"qeu" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "qeH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"qeI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +"qfa" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "qfi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -36858,160 +25642,229 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/crash) +"qfA" = ( +/obj/structure/closet/crate, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "qfC" = ( /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"qfM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) "qfN" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qgc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +"qgJ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qgQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"qgR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qgZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "qhp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"qin" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/restricted/devroom) -"qjD" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/marsh) -"qjR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/strata{ - icon_state = "red1" +"qhQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/dorms/flight_control) -"qks" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"qit" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qkS" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qiQ" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qjx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/exterior/marsh) -"qkU" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"qjT" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/strata/ag/exterior/marsh) -"qlq" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qjX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"qka" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"qlw" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qku" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"qky" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"qkE" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"qkV" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"qlm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"qlR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/strata/ag/interior/dorms/south) +/obj/item/device/megaphone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/minehead) "qmw" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"qns" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"qmG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"qni" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/folder/red, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"qnk" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"qoD" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"qoF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"qoM" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qpg" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"qqa" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/east_engi) -"qqB" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"qqE" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qqN" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "white_cyan2" + id_tag = "mining_outpost_pump" }, -/area/strata/ag/interior/outpost/admin) -"qrz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qqS" = ( +/obj/structure/holostool, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qra" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"qrZ" = ( +/obj/structure/machinery/smartfridge/drinks, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"qso" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/platform/east/scrub) -"qsZ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"qsF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/exterior/paths/adminext) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"qsM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) +"qsX" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qsY" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "qtn" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -37024,43 +25877,99 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"quT" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +"qtN" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) +"qus" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"quv" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"quC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"quJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"qvJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +"qvO" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qvW" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qwh" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/match, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"qwk" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/tcomms) -"qwx" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qwq" = ( +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qwr" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qws" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "qwM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) +"qxg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "qxi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /mob/living/simple_animal/hostile/carp{ @@ -37070,16 +25979,21 @@ }, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) +"qxj" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"qxo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "qxr" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/tearlake) -"qxt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/strata/ag/interior/outpost/med) "qxD" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -37088,72 +26002,212 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"qye" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"qxG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qyF" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"qzL" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"qyV" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qzb" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"qzd" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qzr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball) -"qAr" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qzM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"qzX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qAp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qAs" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qAE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"qBa" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "qBd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"qBg" = ( +"qBr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"qCv" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qBY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"qCi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"qCl" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qCm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"qCx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qCF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "qDg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"qFH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor2" +"qDi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/interior/restricted/devroom) -"qFY" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 2 +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qDy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"qEf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"qEn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qEt" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"qEz" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qGK" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"qEF" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qGa" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qGD" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"qHh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"qHm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "qHo" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -37161,47 +26215,123 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"qIt" = ( -/obj/structure/barricade/handrail/strata{ +"qHs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"qHE" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qJi" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"qIa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"qIp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"qIJ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) +"qIQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qIS" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "qJC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"qJD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"qJG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"qJY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"qKm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "qKx" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"qKU" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"qKP" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/device/encryptionkey/dutch, +/obj/item/dogtag, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"qLy" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qLP" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qLU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) -"qLp" = ( -/obj/structure/machinery/light/small, +"qMv" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"qMw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qMF" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, @@ -37212,100 +26342,125 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qMQ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"qNi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/admin) -"qNI" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"qNO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/med) -"qNS" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qNW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) +"qNX" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"qOj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/landingzone_2) -"qOm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "qOt" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qOF" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +"qOP" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qON" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"qOZ" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qPl" = ( +"qPA" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qPG" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qPM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qPV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"qPX" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) "qQq" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qQu" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement{ - icon_state = "cement15" +"qQs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qQw" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qQU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"qQX" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"qQZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"qRF" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/exterior/marsh/crash) +"qSv" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"qSL" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"qSO" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) "qTk" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -37337,14 +26492,18 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"qTV" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"qTH" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qUa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/area/strata/ag/exterior/vanyard) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "qUB" = ( /obj/structure/bed/chair{ dir = 1 @@ -37355,24 +26514,72 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"qUW" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +"qVo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/interior/dorms/canteen) -"qWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"qVE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/toy/deck, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qVK" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/strata/ag/interior/restricted/devroom) +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"qVU" = ( +/obj/item/storage/box/rxglasses, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"qWi" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "qWD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/restricted) +"qWJ" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"qWT" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qWX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"qXx" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qXy" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "qXN" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -37380,70 +26587,174 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"qXY" = ( -/obj/structure/computerframe, -/obj/structure/barricade/handrail/strata{ +"qYb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "qYm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"qYs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "qYF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ dir = 4 }, -/turf/open/gm/river, -/area/strata/ag/exterior/nearlz2) -"qYZ" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) +/turf/open/gm/river, +/area/strata/ag/exterior/nearlz2) +"qYM" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qYQ" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qYZ" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"qZp" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"qZA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"qZL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rae" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"rah" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/personal_storage) "ras" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"raA" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"raD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"raF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/jellysandwich, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"raX" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"rbz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "rbO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"rcb" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"rbV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"rbX" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"rcp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"rcG" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"rcT" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rdo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"rdn" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"rdF" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"rdR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "reb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -37462,33 +26773,59 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"reS" = ( +"rer" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"reZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"rfb" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"rfc" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) -"rgt" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"rfC" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"rgg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/minehead) -"rgz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"rgw" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "rgH" = ( /obj/structure/barricade/snow{ dir = 8 @@ -37496,56 +26833,47 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"rhg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/dorms/maintenance) -"rhk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/interior/landingzone_1) -"rhJ" = ( +"rgR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rhR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"rgT" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"rgW" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"rhe" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/red3, /area/strata/ag/interior/outpost/med) -"riy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"rhj" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"ric" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -37560,16 +26888,6 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"riS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) "riY" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -37583,58 +26901,60 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"rjp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"rkb" = ( -/obj/item/clothing/glasses/thermal/syndi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/landingzone_checkpoint) -"rkq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/strata/ag/interior/outpost/med) -"rkI" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +"rkD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rmQ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"rkM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/tool/stamp, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"rkT" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"rlZ" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"rmy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"rmN" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/outpost/gen/foyer) -"rno" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"rmT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"rng" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"rnv" = ( +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "rok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -37646,43 +26966,87 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"rpA" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"rpe" = ( +/obj/structure/machinery/power/apc/no_power/east, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) -"rpX" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"rpO" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"rpU" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"rqc" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "rqL" = ( /obj/item/tool/wrench, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"rra" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) "rrj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"rrB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"rrM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "rrV" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"rsc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "rsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"rte" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"rtB" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "rtW" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) @@ -37694,46 +27058,68 @@ "ruM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/south_engi) +"ruN" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"rvj" = ( +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rvt" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rvB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"rvQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" +"rvK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/med) -"rvY" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"rvL" = ( +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"rwl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/pill_bottle/alkysine, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"rwA" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"rwD" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"rwG" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "rxp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"rxr" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rxL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -37746,21 +27132,16 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) -"rye" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"rxY" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/toilet{ + dir = 8 }, -/area/strata/ag/interior/outpost/security) +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) "ryf" = ( /obj/structure/platform_decoration/strata/metal, /obj/effect/decal/strata_decals/catwalk/prison, @@ -37769,62 +27150,126 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"ryt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"ryw" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "ryA" = ( /obj/structure/inflatable, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ryK" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"ryO" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) -"rzx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"rzm" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"rzo" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) -"rzG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"rzr" = ( +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rAf" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rAk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"rAm" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) "rAv" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"rDl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"rAB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"rBZ" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"rDG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"rDJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rDX" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) "rEr" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"rEv" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/storage/pill_bottle/imidazoline, +/obj/item/storage/pill_bottle/imidazoline, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"rEI" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) "rFn" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"rFS" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "rFZ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -37835,80 +27280,155 @@ "rGp" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"rHs" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"rGA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/tcomms) +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rGN" = ( +/obj/item/storage/secure/briefcase, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"rHx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"rHH" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"rHR" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"rHW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"rIg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/medevac_stretcher, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"rIl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"rIn" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"rIq" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/south_res) +"rIx" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "rIM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/north_carp) -"rJf" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"rIS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rJz" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"rIU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi) -"rKG" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/outpost/gen/bball/nest) -"rLg" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"rJg" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"rJH" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"rKs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan4" +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"rKG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/interior/outpost/gen/bball/nest) +"rLs" = ( +/obj/structure/window/framed/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"rLn" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating{ - icon_state = "warnplate" +"rLV" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"rLZ" = ( -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"rMo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/plating{ - icon_state = "warnplate" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "rMv" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"rMy" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"rMO" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) @@ -37917,155 +27437,375 @@ /obj/structure/barricade/handrail/strata, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) +"rOg" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "rOB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/vanyard) +"rOE" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/cell/high, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "rPA" = ( /obj/structure/platform/strata/metal, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"rQV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"rQc" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) +"rQj" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"rQm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/item/device/megaphone, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rQM" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"rQN" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "rQX" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) +"rRc" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "rRl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"rRz" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"rRS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"rSE" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"rSK" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rSQ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"rST" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"rTH" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 3; + pixel_y = 14 }, -/area/strata/ag/interior/research_decks/security) -"rTC" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rTM" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"rUd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/area/strata/ag/interior/outpost/engi/drome) -"rUn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"rUk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"rUM" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rUU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/marsh) +"rUX" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) -"rUQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rUY" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 + icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"rVs" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"rVy" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rVK" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"rWc" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ag/interior/landingzone_checkpoint) -"rWk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/mirror{ - pixel_x = -29 +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rWy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"rWT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"rYE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"rYJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"rYT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rZL" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "sah" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"sau" = ( -/obj/structure/machinery/power/terminal{ +"saJ" = ( +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"saR" = ( +/obj/item/storage/belt/security/MP/UPP, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"saT" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 }, -/area/strata/ag/exterior/shed_five_caves) +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "saY" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/tearlake) +"sbp" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"sbD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sbL" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "sbW" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"scb" = ( -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/surface/rack, +"sbY" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"scF" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"scJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"scT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"scY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sdv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"sdB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/adminext) +"sdM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"sdN" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"sen" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata{ - icon_state = "floor3" +"sey" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"seE" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"seR" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"sfv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"sfI" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sgh" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/canteen) +"sgj" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -38079,12 +27819,6 @@ "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"sgS" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, @@ -38093,74 +27827,104 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"shr" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"shP" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"sip" = ( -/obj/structure/inflatable, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/area/strata/ag/interior/outpost/med) -"siW" = ( -/obj/structure/machinery/blackbox_recorder, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"shY" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sid" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/admin) -"sjp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"sis" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"six" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"siS" = ( +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"siU" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"sjq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"sjE" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"sjP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"skb" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "ski" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical, /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"skl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +"skn" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"skV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"sli" = ( +/obj/item/device/t_scanner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"slv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi/drome) -"skJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"slw" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "sly" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -38168,26 +27932,88 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"slL" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" - }, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"slD" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"slY" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/tearlake) "smd" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"sms" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"smu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) "smG" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"smH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"smQ" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"smT" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"smZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"snq" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/evidence, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"snw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"sny" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"snL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "snV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -38198,60 +28024,139 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sot" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) +"soo" = ( +/obj/item/stack/rods, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"soB" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "soI" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) +"soS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sph" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"spq" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"spA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"spM" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"sqg" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"sqp" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"sqy" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "sqT" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/crash) +"sre" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "srk" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) -"srQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"srs" = ( +/obj/item/clipboard, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"srO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"srZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/tcomms) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "ssd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_dorms) -"sse" = ( -/obj/structure/bed{ - icon_state = "abed" +"ssB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"ssK" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"ssM" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"ssE" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"ssN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/exterior/vanyard) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_carp) @@ -38261,23 +28166,65 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"svg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname{ +"stN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"stT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"svP" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement9" +"sum" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"suq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"suE" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"svo" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"svG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"swl" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"swL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "sxr" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -38285,6 +28232,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"sxP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sxR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) "sxS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -38299,12 +28257,31 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"sya" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata{ - icon_state = "purp2" +"syd" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"syg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"syn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -38317,72 +28294,85 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"szX" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +"szR" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"sAr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"sAt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "sAv" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/med1) -"sBa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"sAF" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball) -"sBf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sBj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"sBK" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"sBP" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"sBR" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"sBY" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"sCk" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sCu" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sCI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/res) -"sBg" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"sCT" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/exterior/landingzone_2) -"sCa" = ( -/obj/structure/machinery/computer/secure_data, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"sDv" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"sDz" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sDs" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/power/apc{ - dir = 8; - pixel_x = -24; - start_charge = 0 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/research_decks/security) -"sDE" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sEs" = ( +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) "sEG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -38397,14 +28387,55 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"sFB" = ( -/obj/structure/machinery/landinglight/ds2{ +"sFa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"sFl" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"sFy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sFI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"sGk" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/item/bedsheet/medical, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"sGx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"sGE" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/exterior/landingzone_2) +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "sGJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -38412,100 +28443,200 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"sGR" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +"sGN" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sHf" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"sHk" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"sIx" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"sIX" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sJa" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "sJd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"sJn" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"sJM" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"sJQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sJU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "sKg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_carp) +"sKj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"sKw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) "sKX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"sKZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"sLI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sMd" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) "sMj" = ( /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"sMX" = ( -/obj/structure/bed/chair/dropship/passenger{ +"sMo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"sMY" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"sNb" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"sNr" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"sNy" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"sNZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"sOi" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/area/strata/ag/exterior/marsh/crash) -"sOB" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/platform/strata/metal{ + dir = 8 }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"sOj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "sPc" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/tcomms) -"sPD" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"sPe" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/platform/east/scrub) -"sQs" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ag/exterior/landingzone_2) -"sQA" = ( -/obj/effect/landmark/good_item, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"sQK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"sPM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"sPY" = ( +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"sQk" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"sQH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sRz" = ( -/obj/structure/inflatable, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"sQY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"sRv" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "sRR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -38513,41 +28644,91 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"sRX" = ( -/turf/open/floor/strata{ +"sSg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sSl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 4; - icon_state = "floor3" + icon_state = "p_stair_full" }, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"sSv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) +"sSn" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"sTu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sTZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/exterior/marsh) -"sSZ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"sUE" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"sVa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ag/interior/dorms) -"sWO" = ( +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement{ - icon_state = "cement15" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sVk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ag/exterior/marsh) -"sXl" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sVA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"sVH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) +"sWr" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"sWD" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) "sXt" = ( /obj/structure/bed/chair{ dir = 8 @@ -38557,16 +28738,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"sXu" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/shed_five_caves) "sXF" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -38588,208 +28759,363 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"sYj" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"sXZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/area/strata/ag/interior/tcomms) -"sZP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"sYA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"sZn" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"sZo" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/area/strata/ag/interior/tcomms) -"taL" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"sZu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sZX" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"tan" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata{ +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"tax" = ( +/obj/structure/sink{ dir = 4; - icon_state = "floor3" + pixel_x = 11 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"taW" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"taB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"taN" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"taP" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"tbb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"tbf" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"tbY" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tdn" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"tdr" = ( -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"tce" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"tdB" = ( -/obj/item/explosive/grenade/high_explosive/upp, /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"tcn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/maintenance) +"tcA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"tcR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/structure/machinery/power/apc/power/north, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/tatami, +/area/strata/ag/interior/outpost/canteen) +"tdP" = ( +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"teq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"ter" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "teI" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tfg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"tfu" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"tgr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"tfZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tgf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "tgC" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"tgR" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"tgT" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "thc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"thd" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"thg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "thz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/item/weapon/gun/pistol/t73, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"tio" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"thY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/dorms) -"tiE" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) +"tib" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/engi/drome) -"tiU" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"tiO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"tiW" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"tjk" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "tjo" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"tjE" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ug/interior/jungle/platform/east/scrub) +"tjH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tjJ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "tjM" = ( /obj/structure/closet/secure_closet/chemical{ req_access = null }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) +"tjY" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"tko" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "tkq" = ( /obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/auto_turf/strata_grass/layer0, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tlc" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) -"tlo" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement{ - icon_state = "cement12" + dir = 1 }, +/turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"tlJ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"tkN" = ( +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tla" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plump_pie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"tli" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tlz" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "tmi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"tmw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/ship_memorial{ - desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; - name = "slab of triumph"; - pixel_y = 2 +"tmj" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"tmF" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/restricted/devroom) -"tmB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata{ +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"toa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"toj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"tnM" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" + icon_state = "p_stair_full" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"tol" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"toq" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/tearlake) +"tpp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"tqt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"tqx" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"tqy" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "tqG" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) @@ -38797,18 +29123,24 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"trr" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ +"trd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) +"tri" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"trn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "tru" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -38831,35 +29163,65 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"trR" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor3" +"trU" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/area/strata/ag/interior/outpost/security) -"tsz" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "orange_edge" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"trW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"trZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"tsc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"tsk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"tsJ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"tsT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) "tsX" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ttz" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ttG" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) @@ -38873,6 +29235,10 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"tuz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) "tvk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -38880,39 +29246,66 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"twa" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"txm" = ( -/obj/structure/toilet{ +"tvC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"tvE" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"tvX" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"twa" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"twU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"txh" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"txk" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) +"txl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "txs" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"tyh" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"tyj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/canteen) +"txt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"txR" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"tys" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"tyB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "tyD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -38922,102 +29315,185 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"tyT" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tzh" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tzS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"tAN" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "tBn" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tBw" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) +"tBL" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"tBO" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"tCd" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tCe" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "tCi" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/center) -"tCI" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"tCo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ag/interior/outpost/admin) +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tCw" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "tCM" = ( /obj/structure/bed/roller, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tCP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "tCR" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"tDn" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "tDo" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"tEf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"tDw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"tDU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"tEr" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "tEC" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) +"tER" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/catwalk, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "tEY" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"tGZ" = ( +"tFg" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"tFj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tFB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"tGA" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tGM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"tGQ" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/bball) +"tGW" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"tHc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) +"tHe" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"tHl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "tHv" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"tHE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed, -/turf/open/floor/strata{ - icon_state = "orange_tile" - }, -/area/strata/ag/interior/dorms) "tIl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) -"tIv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"tII" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/research_decks) +"tIU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "tJp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -39028,6 +29504,10 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"tJq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "tJJ" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -39046,18 +29526,28 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"tKC" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"tKO" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "tKS" = ( /turf/closed/shuttle/ert{ icon_state = "upp25" }, /area/strata/ag/exterior/marsh/crash) +"tKW" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "tLs" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -39065,15 +29555,38 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tLI" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" +"tLA" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"tLF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "tLO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"tLU" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"tMN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "tMP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -39083,78 +29596,43 @@ "tNr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) +"tNv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "tNK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"tNQ" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement{ - icon_state = "cement14" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tOA" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) -"tPi" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"tPx" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"tOl" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"tPF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"tOn" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"tPr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) +"tPY" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/landingzone_2) "tQg" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"tQS" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement{ - icon_state = "cement9" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tRf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) -"tRC" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +"tRO" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "tSb" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, @@ -39170,6 +29648,13 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"tSk" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "tSl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -39195,30 +29680,25 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"tTi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"tSP" = ( +/obj/effect/glowshroom/single, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"tSY" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "tTk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"tTP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) +"tTV" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) "tUu" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -39227,47 +29707,27 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tUO" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) -"tUW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "fake_wood" - }, -/area/strata/ag/interior/outpost/gen/bball) "tUZ" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tVN" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/outpost/engi/drome) -"tVP" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ +"tVc" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"tVl" = ( +/obj/item/clothing/gloves/white, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "tWf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, @@ -39278,80 +29738,122 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) +"tWQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"tWR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"tWS" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"tWV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tWY" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tXW" = ( -/obj/structure/barricade/handrail/strata{ +"tXh" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"tXv" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"tXF" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi) -"tYB" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"tXP" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"tYu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "tYF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"tZF" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"tZV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) -"uad" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"uaC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"tYS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"tZY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"uas" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"uat" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"uaD" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/landingzone_2) "uaH" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ubo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +"uaN" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uaT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "ubx" = ( /obj/structure/largecrate/random, /obj/item/paper_bin, @@ -39361,22 +29863,68 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"ubC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "ubN" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) -"ucl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "red1" +"ucr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ucu" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "ucD" = ( /obj/structure/inflatable/door, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"ucI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"uds" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/item/dogtag, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"udB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"udI" = ( +/obj/structure/closet, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "ueK" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -39392,40 +29940,64 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"ueR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "ueU" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/med) -"ufG" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/north_outpost) -"ufH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +"ufd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"uft" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"ufz" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/strata/ag/interior/outpost/engi) -"ufI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ufG" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/north_outpost) +"ugd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/interior/outpost/engi) -"ugH" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ugw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"ugx" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ugA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) "ugI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -39433,33 +30005,6 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uhd" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/item/dogtag, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/outpost/admin) -"uhe" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) "uhF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -39468,15 +30013,22 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uhM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/engi) +"uhL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"uiu" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"uiv" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"uiy" = ( +/obj/item/tool/crowbar, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "uiE" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) @@ -39487,27 +30039,49 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uko" = ( -/obj/item/stack/snow, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ujC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/area/strata/ag/exterior/paths/north_outpost) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"ujD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"ujX" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "ukx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ulv" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/obj/item/handcuffs, -/turf/open/floor/strata{ - icon_state = "red1" +"ukA" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ukR" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/research_decks/security) +/obj/structure/inflatable/popped, +/turf/open/floor/strata/cyan4/east, +/area/strata/ag/interior/outpost/med) +"ulh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "ulL" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -39515,57 +30089,133 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"umE" = ( -/obj/structure/toilet{ +"ulR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"umb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"umo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"unE" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/strata/ag/exterior/vanyard) -"uoP" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement{ - icon_state = "cement3" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"umt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/area/strata/ag/exterior/landingzone_2) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"umw" = ( +/obj/structure/lamarr, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"unb" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"unM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"unN" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"unZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"uob" = ( +/obj/structure/closet/wardrobe/suit, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uon" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"uoq" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"upa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "uph" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"upO" = ( -/turf/open/floor/strata{ - icon_state = "red1" +"upF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ag/interior/outpost/gen/bball) -"uqB" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"uqQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/gen/bball) -"uqY" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"urv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"urw" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"urE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/strata/ag/interior/tcomms) +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"urP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) "urQ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -39578,29 +30228,29 @@ /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"utn" = ( +"utt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"utQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "utV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"utX" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp/green, +"uug" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"uuh" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/restricted/devroom) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "uul" = ( /obj/structure/largecrate/guns/russian, /turf/open/asphalt/cement, @@ -39608,19 +30258,15 @@ "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) +"uvs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"uvz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "uvZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/blocker/invisible_wall, @@ -39630,60 +30276,94 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"uwT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"uwY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "uxf" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uxu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"uxv" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"uxI" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/coatrack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uyb" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/area/strata/ag/exterior/research_decks) -"uyQ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uye" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uyf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"uys" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"uyL" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"uyR" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement2" + dir = 4 }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, /area/strata/ug/interior/jungle/platform/east/scrub) +"uyZ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "uzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"uzd" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/engi/drome) -"uzj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/catwalk, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) +"uzo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"uzs" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) "uzv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -39694,43 +30374,103 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"uzL" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"uzH" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"uBz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"uzU" = ( +/obj/structure/machinery/smartfridge, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uzW" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"uAe" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uAo" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"uAx" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"uAG" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"uAP" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"uBd" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"uBs" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"uBL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "uCc" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uCI" = ( -/obj/structure/dispenser, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"uCf" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uCr" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"uCx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"uCC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"uCU" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"uDu" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"uDT" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"uDa" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/restricted/devroom) "uDU" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -39743,125 +30483,252 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uEj" = ( -/obj/structure/largecrate/random, -/obj/item/toy/deck, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"uFz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"uGd" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/area/strata/ag/exterior/marsh/center) -"uFT" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"uGH" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/restricted/devroom) -"uHa" = ( -/obj/structure/machinery/light/small{ +"uGg" = ( +/obj/structure/machinery/reagentgrinder/industrial, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"uGS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"uGU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"uHn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/effect/spawner/random/toolbox, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uHN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "uHX" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) +"uIs" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"uJh" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "uJn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uJY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "red1" +"uJy" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "uKj" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uKV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"uLc" = ( +/obj/structure/surface/rack, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"uLq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uLd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"uLI" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"uLK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/strata/ag/interior/tcomms) +"uLN" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"uLl" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - icon_state = "purp2" +"uLU" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uLJ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"uMw" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uMC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"uMM" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"uMN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uLK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/strata/ag/interior/tcomms) +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"uNd" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "uNi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"uNQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"uNB" = ( +/obj/structure/filingcabinet{ + layer = 2.9 }, -/area/strata/ag/exterior/research_decks) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"uNS" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"uOw" = ( +/mob/living/simple_animal/cat/Runtime{ + desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; + name = "Bernard" + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"uOP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"uOT" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"uPj" = ( +/obj/structure/reagent_dispensers, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"uPn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uPq" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"uPH" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/landingzone_checkpoint) +"uPF" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"uPP" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "uPR" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"uPS" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"uQp" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + layer = 2.1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"uQG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"uQV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"uRw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fishfingers, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "uRy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -39870,46 +30737,40 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uSg" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"uRE" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"uRQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"uSI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, /obj/effect/landmark/queen_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"uTm" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "uTt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"uTv" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"uTL" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ag/exterior/marsh/crash) "uTQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -39918,30 +30779,37 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uVv" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" - }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"uWa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"uUb" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"uUh" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"uVf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"uVs" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"uVu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"uWe" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) +"uVC" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "uWG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -39950,33 +30818,101 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"uWP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "orange_cover" +"uWK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uWO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) +"uXe" = ( +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_dorms) -"uXI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement{ - icon_state = "cement14" +"uXh" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"uXi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uXs" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uXF" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/hotsprings) "uXY" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"uZh" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"uYy" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uYF" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"uYX" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"uZO" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"uZY" = ( +/obj/structure/machinery/processor, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"vaa" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "vaW" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer1, @@ -39985,51 +30921,114 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) +"vbn" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "vbw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"vbI" = ( -/obj/structure/machinery/shower{ - dir = 1 +"vdi" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 10 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/north_outpost) +"vdk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vdB" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vdJ" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"vdK" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vdV" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ven" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"ves" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"vbN" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"vet" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"veM" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/engi) -"vdi" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 10 +"veR" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"veV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/north_outpost) -"veX" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vfh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"vfz" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/minehead) +"vfW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "vgb" = ( /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, @@ -40043,19 +31042,27 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"vgy" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"vgT" = ( +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "vgW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"vhl" = ( -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/exterior/research_decks) +"vhf" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) "vhv" = ( /obj/structure/surface/rack, /turf/open/floor/strata, @@ -40064,51 +31071,57 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"vhK" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vij" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "vit" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) "viA" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"vjc" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) -"vjD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/monkeyburger, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"vjZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"viD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"viE" = ( +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) "vkp" = ( /turf/closed/shuttle/ert{ icon_state = "upp9" }, /area/strata/ag/exterior/marsh/crash) +"vkq" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vky" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "vlm" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"vlG" = ( -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) "vlH" = ( /obj/structure/machinery/weather_siren{ pixel_x = 10; @@ -40116,52 +31129,13 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"vmm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "orange_cover" - }, -/area/strata/ag/interior/tcomms) -"vms" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" - }, -/area/strata/ag/interior/outpost/med) -"vmI" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"vnh" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/south) -"vnC" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"vnI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/curtain/open/medical, +"vlY" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vmB" = ( +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/med) "vnV" = ( /obj/structure/stairs/perspective{ @@ -40174,12 +31148,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"voe" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) +"vnY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vod" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "vox" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -40189,6 +31165,27 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"voy" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"voI" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"voL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) "vpi" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -40196,104 +31193,80 @@ /obj/structure/filingcabinet, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"vpG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/med2) +"vqn" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "vqx" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"vrH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"vqV" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"vrf" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/tcomms) -"vrR" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +"vrn" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi/drome) -"vsd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"vsp" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +"vrA" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/landingzone_2) -"vsy" = ( -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vsL" = ( -/obj/item/reagent_container/food/snacks/microwavable/donkpocket, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vrT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"vsf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vsk" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"vsZ" = ( -/obj/item/stack/medical/splint, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"vsK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"vth" = ( -/obj/structure/closet/lawcloset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 }, -/area/strata/ag/interior/tcomms) -"vtl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vsT" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/strata/ag/exterior/vanyard) -"vtp" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"vti" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) -"vtz" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"vtD" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/fence, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "vtM" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -40302,16 +31275,31 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) -"vuI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ +"vtR" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"vui" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/bed/chair{ dir = 4 }, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/strata{ - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"vuo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi) +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vux" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) @@ -40327,28 +31315,28 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"vvp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) -"vvR" = ( +"vvo" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"vvz" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "vvV" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) +"vwd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "vwC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -40370,40 +31358,84 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"vwX" = ( -/obj/structure/machinery/centrifuge, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) "vxd" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) +"vxT" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "vye" = ( /obj/structure/surface/rack{ layer = 2.5 }, -/turf/open/floor/strata, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) +"vyz" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"vzE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vzV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"vAu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vAz" = ( +/obj/structure/bed/nest, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vAC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) -"vyl" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) -"vyK" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata{ - icon_state = "purp2" +"vAP" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"vBc" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vBg" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "vBi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"vBr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "vBs" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -40412,19 +31444,22 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"vBV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +"vBB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"vBX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/largecrate/random, +/obj/item/seeds/walkingmushroommycelium, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"vCc" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "vCl" = ( /obj/structure/barricade/handrail/strata{ layer = 3.1 @@ -40436,6 +31471,10 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"vCz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) "vCD" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -40443,26 +31482,26 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"vCN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan2" - }, -/area/strata/ag/interior/outpost/med) -"vDm" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"vDl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"vDq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/strata/ug/interior/jungle/deep/east_dorms) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "vDr" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vDX" = ( +/obj/item/cell/high, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "vEp" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) @@ -40471,36 +31510,92 @@ icon_state = "upp1" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vFV" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"vEN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vFs" = ( +/obj/item/storage/box/cups, +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/item/book/manual/surgery, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"vFu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vGd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "vGx" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vGD" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vGG" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"vGT" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "vGW" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"vId" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"vGZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vHz" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"vHN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"vIp" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vIW" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "vJj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"vJw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "vJx" = ( /turf/closed/shuttle/ert{ icon_state = "upp3" @@ -40510,25 +31605,98 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"vKg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"vJD" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vJN" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"vJP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vJQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"vKn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"vLd" = ( +/obj/structure/machinery/light/small{ dir = 1; - pixel_y = 24; - start_charge = 0 + pixel_y = 20 + }, +/obj/effect/spawner/random/powercell, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"vLk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/prison{ - icon_state = "darkredfull2" +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"vLR" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"vMH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vMR" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"vMY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"vNm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/landingzone_checkpoint) -"vNG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - icon_state = "multi_tiles" +"vNo" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vNO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "vOf" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; @@ -40543,9 +31711,25 @@ "vOs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi/drome) +"vOK" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "vPi" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/research_decks/security) +"vPv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "vPQ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) @@ -40561,55 +31745,218 @@ icon_state = "upp_rightengine" }, /area/strata/ag/exterior/marsh/crash) -"vRP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +"vQJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"vSm" = ( +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"vSz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballsoup, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vSC" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"vTN" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 25 +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"vTk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vTH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/structures/res) +"vTO" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"vUp" = ( -/turf/open/asphalt/cement{ - icon_state = "cement2" +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"vTR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"vTS" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vUF" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"vVv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"vVw" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"vVA" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"vWU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vXb" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vXf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vXg" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vXi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "vXt" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"vXx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vXL" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vXQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"vXT" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/minehead) +"vXW" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vYa" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "vYf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"vYD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"vYj" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/canteen) +"vYz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vYO" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"vZk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"vZu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"vZS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "vZT" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/south_engi) @@ -40626,37 +31973,82 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"wbK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ +"wbe" = ( +/obj/structure/machinery/light/small{ dir = 1; - name = "\improper Airlock" + pixel_y = 20 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"wbq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wbz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "wbN" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"wdf" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"wbV" = ( +/obj/structure/machinery/autolathe/full, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wce" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "blue1" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"wco" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/inflatable/door, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"wcD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/admin) -"wdI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"wcH" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wcW" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"wdd" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"wdl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wdK" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "wdN" = ( /obj/structure/platform/strata{ dir = 4 @@ -40664,15 +32056,46 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"wez" = ( -/obj/structure/machinery/light/small{ +"wdP" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"wex" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"weQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata{ - icon_state = "orange_cover" +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/strata/ag/exterior/nearlz2) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wfh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"wfn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue4, +/area/strata/ag/interior/outpost/admin) +"wfo" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "wfv" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -40685,26 +32108,47 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"wfY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"wfI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wfX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "wgu" = ( /obj/item/weapon/gun/revolver/upp, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"wgv" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wgw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wgx" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wgA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/item/weapon/gun/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "wgB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -40714,6 +32158,23 @@ /obj/item/tank/anesthetic, /turf/open/floor/strata, /area/strata/ag/interior/mountain) +"whv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"whY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "wij" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -40722,44 +32183,111 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"wiu" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"wiN" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"wjs" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wju" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) "wjv" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"wjz" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) +"wjH" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"wkx" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mass_spectrometer, +/obj/item/prop/matter_decompiler, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wkE" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"wll" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wmq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"wmz" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wmT" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "wmZ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi) "wne" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"wni" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"woa" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"wol" = ( -/turf/open/floor/strata{ - icon_state = "fake_wood" +"woJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) "woP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -40768,6 +32296,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"woZ" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"wpr" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wpx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "wqm" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -40776,33 +32315,40 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"wqI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "red1" +"wqz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) +"wqH" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wrl" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/suit/bluetag, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) -"wrv" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"wrr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) "wrw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"wsd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "wsh" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -40810,33 +32356,25 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"wsi" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ag/interior/outpost/med) -"wsj" = ( -/obj/item/trash/pistachios, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" - }, -/area/strata/ag/interior/outpost/engi) -"wsm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ +"wsD" = ( +/obj/structure/sink{ dir = 4; - icon_state = "floor3" + pixel_x = 11 }, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"wtb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"wtf" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 2; @@ -40844,87 +32382,165 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) +"wtD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) +"wtG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"wul" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"wuD" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "wuI" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_carp) +"wuW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wvb" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"wvj" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) +"wvl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "wvt" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"wvF" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" - }, -/area/strata/ag/exterior/landingzone_2) -"wxU" = ( -/obj/structure/bed{ - icon_state = "abed" +"wvZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/structure/machinery/light/small, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wwi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"wwn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"wxF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"wxY" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) +"wyF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/area/strata/ag/exterior/research_decks) -"wzZ" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/mirror{ + pixel_x = -29 }, -/area/strata/ag/exterior/research_decks) -"wAb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"wzf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"wzk" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"wAj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/light/small, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +/obj/structure/platform/strata/metal{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) -"wAw" = ( -/obj/structure/toilet{ - dir = 8; - pixel_x = -4 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"wzY" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 2 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wAg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wAq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "wAG" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"wAK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wBs" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"wBu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wBw" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "wBI" = ( /obj/structure/bed{ icon_state = "abed" @@ -40934,12 +32550,53 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"wDq" = ( -/obj/structure/fence, -/turf/open/asphalt/cement{ - icon_state = "cement2" +"wCd" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"wCs" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"wCJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"wCY" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"wDa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wDx" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "wDF" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, @@ -40956,14 +32613,58 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"wED" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"wET" = ( +/obj/item/stack/catwalk, +/obj/item/tool/wrench, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "wEU" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) +"wFr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "wFG" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"wFI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"wFZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"wGh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wGj" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "wGm" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -40989,23 +32690,99 @@ /obj/item/pamphlet/skill/medical, /turf/open/floor/strata, /area/strata/ag/interior/administration) +"wHy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wHA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"wHJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/item/clothing/glasses/thermal/syndi, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "wHW" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"wLj" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"wHY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/asphalt/cement{ - icon_state = "cement1" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"wIu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"wIM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"wJN" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"wKm" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"wKA" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "wLv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"wLz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"wLI" = ( +/obj/structure/inflatable/door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"wLQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/interior/landingzone_1) "wMy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 @@ -41016,6 +32793,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) +"wOh" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"wOv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"wOD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "wPp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -41028,11 +32818,40 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"wPI" = ( -/turf/open/asphalt/cement{ - icon_state = "cement9" +"wPE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"wPG" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wQa" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"wQq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "wQx" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -41040,6 +32859,29 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"wQQ" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"wRk" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"wSy" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wSD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "wTn" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -41047,47 +32889,60 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"wUs" = ( +"wTE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/security) -"wVf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"wTS" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "fake_wood" +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"wTW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/landingzone_checkpoint) -"wVU" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"wUE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/area/strata/ag/exterior/shed_five_caves) -"wWK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) +"wUW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"wVe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cubancarp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"wVl" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"wVr" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wVu" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -41099,91 +32954,226 @@ "wXm" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"wXL" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor3" +"wXX" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/area/strata/ag/interior/dorms/south) +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "wYx" = ( /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) +"wYG" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) "wYL" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"wZk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "wZM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"wZW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) "wZZ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"xaR" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - icon_state = "floor3" +"xaj" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"xan" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/coatrack, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"xaD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"xbA" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"xbC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"xcj" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"xcq" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xcG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xdg" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xdk" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xdr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) "xdE" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"xdI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"xeo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/jcloset, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/tcomms) +"xdW" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"xep" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"xer" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "xes" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"xeu" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"xeI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) "xeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"xgR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"xeW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xfc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xfm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xfy" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"xfU" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xfZ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"xgz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"xgI" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"xgL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"xgT" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"xgW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "purp2" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"xgX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"xgY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/purp2, /area/strata/ug/interior/jungle/deep/structures/engi) +"xhu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xhI" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"xhK" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) "xhM" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -41192,53 +33182,84 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) +"xhV" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"xhX" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "xio" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xje" = ( -/turf/open/asphalt/cement{ - icon_state = "cement1" +"xiB" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xiN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"xjj" = ( +/obj/item/stack/sandbags, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "xjr" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"xjH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/outpost/med) "xkj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xlg" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +"xkH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/outpost/med) -"xlP" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "cyan3" +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"xkO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"xlc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"xlQ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xlh" = ( +/turf/open/floor/strata/blue4/north, +/area/strata/ag/interior/outpost/admin) +"xlm" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"xlV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "xlX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -41246,134 +33267,188 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"xmR" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"xmc" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) +"xmt" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xmx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xmM" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"xmU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xnh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "xnn" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +"xnD" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/interior/outpost/med) -"xnZ" = ( -/obj/structure/surface/rack, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xnG" = ( +/obj/item/clothing/glasses/thermal/syndi, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/mountain) -"xoE" = ( -/obj/structure/largecrate/random, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"xnQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"xoo" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"xoJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/area/strata/ag/interior/tcomms) -"xpC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata{ - icon_state = "blue1" +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/res) -"xpK" = ( -/obj/structure/machinery/colony_floodlight, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xpA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) -"xqv" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"xpL" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/area/strata/ag/exterior/research_decks) -"xqT" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xpS" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xqf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/strata/ag/exterior/research_decks) +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xqk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xqo" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"xqE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "xre" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/tcomms_deck) -"xrx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"xrk" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"xrJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/area/strata/ag/interior/tcomms) -"xst" = ( -/obj/structure/machinery/cryobag_recycler, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "purp2" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"xrR" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"xsc" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "xsH" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) +"xtl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"xts" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/med2) "xtw" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"xub" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/med) -"xuq" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, +"xtK" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"xud" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"xui" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "xuE" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -41384,49 +33459,121 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"xuO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xuY" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/south_engi) -"xvy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"xvd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"xvh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/interior/outpost/engi) -"xwn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"xvk" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"xvs" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"xvP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp1" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xwg" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"xwA" = ( +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) +"xxl" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"xxs" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "xxS" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) +"xxU" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"xxV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"xyf" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) "xyz" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"xyC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ag/interior/outpost/gen/bball) -"xzL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/outpost/gen/bball/nest) +"xzq" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"xzt" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"xzJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"xzO" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) @@ -41436,68 +33583,83 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"xAp" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) -"xAF" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"xAd" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"xAv" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"xAG" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xAK" = ( +/obj/structure/bed/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"xBd" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xBL" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/area/strata/ag/interior/outpost/med) -"xAS" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xBT" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"xBY" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/area/strata/ag/exterior/research_decks) -"xCm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/knife, -/turf/open/floor/strata{ - icon_state = "white_cyan1" +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"xCf" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xCC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xCP" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/area/strata/ag/interior/dorms/maintenance) -"xCN" = ( -/obj/structure/surface/table/reinforced/prison, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "xDu" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) +"xDv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"xDA" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "xDD" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"xDX" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, +"xEb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms/hive) "xEj" = ( /obj/item/reagent_container/food/drinks/bottle/sake{ @@ -41525,6 +33687,10 @@ /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"xFq" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "xFC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -41533,28 +33699,12 @@ /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/nearlz2) -"xFR" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/strata/ag/exterior/research_decks) "xFT" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"xGb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/exterior/research_decks) "xGi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -41562,16 +33712,19 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xGv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "xGA" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xGE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"xHa" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, +/turf/open/asphalt/cement/cement1, /area/strata/ag/exterior/landingzone_2) "xHw" = ( /obj/structure/flora/pottedplant{ @@ -41588,16 +33741,52 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) +"xHY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"xIc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) "xId" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"xIB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"xIK" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xJF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "xJH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -41606,23 +33795,22 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"xKr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ag/interior/tcomms) -"xKw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"xJS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"xKh" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xKl" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "xKy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -41633,51 +33821,83 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"xKC" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"xKA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata{ - icon_state = "floor3" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) "xKD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xKE" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"xKG" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"xKI" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xKN" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"xKT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/deep/structures/res) "xLB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"xLE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "xLH" = ( /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"xLJ" = ( +"xLR" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"xMa" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"xNb" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xMr" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xOa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"xNT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xOo" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -41704,6 +33924,13 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/dorms_quad) +"xOP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "xPv" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, @@ -41712,72 +33939,31 @@ /obj/item/reagent_container/food/drinks/cans/cola, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xRl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/strata/ag/exterior/marsh/crash) -"xRr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"xRR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"xQr" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"xQP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/strata/ag/interior/outpost/engi/drome) -"xSh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata{ - icon_state = "red1" +/obj/structure/bed/chair{ + dir = 8 }, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "xSB" = ( /obj/structure/filingcabinet, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"xSJ" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/strata/ag/interior/dorms/canteen) -"xTh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/strata/ag/interior/dorms/maintenance) -"xTw" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"xSI" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"xTO" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "xTU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) @@ -41791,27 +33977,83 @@ "xUg" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/south_engi) -"xUo" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xVQ" = ( -/obj/structure/bed/chair/dropship/passenger{ +"xUk" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"xUx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xUE" = ( +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"xUH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"xUN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"xVi" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"xVs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xVD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"xVF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xVN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"xWa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "xWN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xWU" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"xXf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "xXi" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, @@ -41821,109 +34063,252 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"xXK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "xYw" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xZk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"xYS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"xZb" = ( +/obj/structure/machinery/processor, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 }, -/area/strata/ag/interior/tcomms) -"yah" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xZt" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 8 }, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ybN" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) +"xZu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"xZL" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"yad" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/interior/landingzone_1) +"yau" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"yay" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, /area/strata/ag/interior/research_decks/security) -"yca" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata{ - icon_state = "fake_wood" +"yaJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/area/strata/ug/interior/jungle/deep/structures/engi) -"yde" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/machinery/door/window/eastright{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"yaU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/strata/ag/exterior/vanyard) -"ydp" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"ydz" = ( -/obj/item/toy/deck, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"yba" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ybr" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ybA" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/research_decks) +"ybH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ybO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"ybQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) +"ycu" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ycz" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ycJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"ycQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"ydF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ydO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "ydV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"yee" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +"ydX" = ( +/obj/structure/toilet, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"ydY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"yek" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/strata/ag/exterior/landingzone_2) -"yeF" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"yeI" = ( +/obj/item/stack/catwalk, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"yfI" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "red1" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"ygf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"yhJ" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"yhF" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/strata/ag/interior/tcomms) -"yis" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pouch/flare/full, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"yhH" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"yir" = ( +/obj/structure/surface/rack, /obj/item/weapon/gun/pistol/t73, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, -/turf/open/floor/strata{ - icon_state = "orange_tile" +/obj/item/restraint/handcuffs, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"yix" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"yjb" = ( +/obj/structure/bed/nest, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"yjl" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"yjw" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"yjF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -41937,36 +34322,28 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"ykU" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan3" - }, +"ykE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"ylg" = ( +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) -"yll" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/strata/ug/interior/jungle/deep/structures/res) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/south_engi) -"ylF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"ylM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"ylU" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) (1,1,1) = {" aaa @@ -42406,46 +34783,46 @@ wrp wrp wrp wrp -alA +yhH cqE -ang -aoj -aoj -ang -aoj -aoj -aoj -ang -aoj -aoj -aoj +fXF +qus +qus +fXF +qus +qus +qus +fXF +qus +qus +qus azx -aBi -aCC +dLL +lLC azx -aEF -aEF +uXh +uXh azx -aIf -aIf -aIf -aMA -aNI -aIf -aIf -aIf -aMA -aIf -aIf -aIf -aMA -aIf -aNI -aIf -aIf -aMA -aIf -aIf +uon +uon +uon +vzV +uBs +uon +uon +uon +vzV +uon +uon +uon +vzV +uon +uBs +uon +uon +vzV +uon +uon rtW bAe bAe @@ -42595,52 +34972,52 @@ aac aac aac kSU -yeF -qjR -coO -coO -ako -coS -cpR +fVt +gAF +woZ +woZ +tZY +nbp +oxp cqE -anh -aok -ctI -ctI -ctI -ctI -ctI -ctI -ctI -ctI -ayg -azy -ctI -ctI -azy -ctI -ctI -aGX -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aIg -aSG -aUo -aVW -aXv -aIf -bbX -aVW -aVW -aVW -aVW -aVW -aVW +kXg +wLQ +lgA +lgA +lgA +lgA +lgA +lgA +lgA +lgA +jVS +skV +lgA +lgA +skV +lgA +lgA +eMU +rFS +rFS +rFS +rFS +rFS +rFS +rFS +rFS +yad +flm +oKD +dAg +uon +wul +oKD +oKD +oKD +oKD +oKD +oKD rtW bAe bAe @@ -42790,42 +35167,42 @@ aac aac kSU kSU -cnZ +ddP cjb cjb coP -coV -coS -cpR +pCH +nbp +oxp cqE -cnv -crb +iti +lsv apc -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp -auj -rhk -arR -atp +dYn +ihO +hRh +vJN +dYn +ihO +hRh +vJN +dYn +ihO +hRh +vJN +dYn +ihO +hRh +vJN +dYn +ihO +hRh +vJN +dYn +ihO apc -cmA -cnv +eUI +iti cqE cot aZS @@ -42835,7 +35212,7 @@ cqE cqE cqE cqE -btT +lAv rtW bAf bAf @@ -42856,12 +35233,12 @@ crN bhJ bhY biG -ctx +tOn jnH xzR xzR jnH -fRv +imP bmW aac aac @@ -42984,18 +35361,18 @@ aac aac aac kSU -cYI -ahP +ouA +jJW aiw cof cjb -eEA -coS -cpR +foT +nbp +oxp cqE -cnv -crb -apj +iti +lsv +hKb crE crE arS @@ -43018,19 +35395,19 @@ crE arS crE crE -crW -cmA -cnv +vDq +eUI +iti cqE cqE cqE cqE beK -bhp -bhp +fXh +fXh bnb cqE -aoj +qus rtW alz aXG @@ -43052,10 +35429,10 @@ bgQ aZv aZv bia -nPW -fRv -fRv -fRv +rAm +imP +imP +imP bia bmY bnK @@ -43179,18 +35556,18 @@ aac aac aac kSU -cYI -coO +ouA +woZ aix cjb coP -akq -coS -cpR +mdY +nbp +oxp cqE -cnv -crb -apf +iti +lsv +hCa crE crE crE @@ -43213,24 +35590,24 @@ crE crE crE crE -fuA -cmA -cnv +ssM +eUI +iti cqE aQv aQv cqE -acY +hGC aQv aQv -bck +kjr cqE -aoj -aoj +qus +qus bAq -bDT -bDT -bDT +bvo +bvo +bvo aac aac aac @@ -43375,17 +35752,17 @@ aac aac kSU ahr -coO -aiy -coO -coO -coV -coS -cpR +woZ +sjP +woZ +woZ +pCH +nbp +oxp cqE -cnv -crb -aph +iti +lsv +gPz crE crE crE @@ -43408,21 +35785,21 @@ crE crE crE crE -dnS -cmA -cnv +fWg +eUI +iti cqE aQv aQv cqE -acY +hGC aQv aQv -bck +kjr beJ -aST +xhI cqE -aST +xhI aZj aZv aZv @@ -43570,17 +35947,17 @@ kSU kSU kSU wrp -ahQ -aiz -coS -coS +iTC +rMo +nbp +nbp wrp wrp -alB +hZD cqE -cnv -crb -api +iti +lsv +tYS crE crE crE @@ -43603,21 +35980,21 @@ crE crE crE crE -aRx -cmA -cnv +cBA +eUI +iti cqE cqE cqE cqE cot -aXw -aXw +llz +llz bce cqE -aST +xhI cqE -aST +xhI aZk aVq aVq @@ -43763,19 +36140,19 @@ aac aac kSU cyG -agz -lvE -coO -aiy -coO -coO -agz -lvE -alC +fUR +eTP +woZ +sjP +woZ +woZ +fUR +eTP +ekR cqE -cnv -crb -apj +iti +lsv +hKb crE crE crE @@ -43798,9 +36175,9 @@ crE crE crE crE -crW -cmA -cnv +vDq +eUI +iti cqE cqE cqE @@ -43810,9 +36187,9 @@ cqE cqE cqE cqE -aST +xhI cqE -aST +xhI aZl aZx aZx @@ -43958,19 +36335,19 @@ aac aac kSU cyG -klE -klE +rYE +rYE cjb aix cjb cjb -klE -klE -alC +rYE +rYE +ekR amq -ani -crb -apf +jRe +lsv +hCa crE crE crE @@ -43993,21 +36370,21 @@ crE crE crE crE -fuA -aSH -coX +ssM +pCA +kEZ aVX -pfQ -pfQ +fCy +fCy bcf cqM cqM cqM cqM bqV -aST +xhI cqE -aST +xhI aVq aZx aZx @@ -44153,19 +36530,19 @@ aac aac kSU cyG -rQV -mfW -coO -aiy -coO -coO -rQV -mfW -alC +wtG +nCk +woZ +sjP +woZ +woZ +wtG +nCk +ekR cqE -cnv -crb -aph +iti +lsv +gPz crE crE crE @@ -44188,21 +36565,21 @@ crE crE crE crE -dnS -cmA -cnv -acY +fWg +eUI +iti +hGC aQv aQv -bck +kjr cqE aQv aQv cqE bqW -aST +xhI cqE -aST +xhI aZj aVq aZx @@ -44350,17 +36727,17 @@ kSU kSU kSU wrp -ahQ -aiz -coS -coS +iTC +rMo +nbp +nbp wrp wrp -alA +yhH cqE -cnv -crb -apk +iti +lsv +moX crE crE crE @@ -44383,24 +36760,24 @@ crE crE crE crE -aRz -cmA -cnv -acY +gsp +eUI +iti +hGC aQv aQv -bck +kjr beJ aQv aQv cqE cqE -aoj -aoj +qus +qus bAq -bDT -bDT -bDT +bvo +bvo +bvo aZx aZx aVq @@ -44420,7 +36797,7 @@ bhO bhO okM qSo -ocH +fIs qSo nxF gTE @@ -44545,17 +36922,17 @@ aac aac kSU ahr -coO -aiy -coO -coU -cpq -coS -cpR +woZ +sjP +woZ +kNS +hpY +nbp +oxp cqE -cnv -crb -apj +iti +lsv +hKb crE crE crE @@ -44578,19 +36955,19 @@ crE crE crE crE -crW -cmA -cnv +vDq +eUI +iti cot -aXw -aXw +llz +llz bce cqE cqE cqE cqE cqE -aoj +qus rtW rtW bER @@ -44614,9 +36991,9 @@ bhO bgS bhO mpk -xVQ -oeA -sMX +idc +oNP +pKY iEo qSo nxF @@ -44739,18 +37116,18 @@ aac aac aac kSU -cYI -coO +ouA +woZ aix cjb cjb -coV -coS -cpR +pCH +nbp +oxp cqE -cnv -crb -apf +iti +lsv +hCa crE crE crE @@ -44773,19 +37150,19 @@ crE crE crE crE -fuA -cmA -cnv -aoj -aXx -aoj -bco -aoj -aoj -aoj -bYD -aoj -btU +ssM +eUI +iti +qus +cND +qus +kYd +qus +qus +qus +aKJ +qus +oja rtW azx bET @@ -44809,11 +37186,11 @@ bhO hQP bhO mpk -oeA -oeA -oeA -oeA -hIb +oNP +oNP +oNP +oNP +uYX cXU bhO bgS @@ -44934,18 +37311,18 @@ aac aac aac kSU -cYI -ahP +ouA +jJW aiA qwM ajK -obG -akU -alD +eJS +fhj +eWT cqM -ani -crb -aph +jRe +lsv +gPz apT crE arS @@ -44968,15 +37345,15 @@ crE arS crE crE -dnS -cmA -cnv -aoj +fWg +eUI +iti +qus alz -aUr -aUr +wvj +wvj beL -bhq +dkt azx alz alz @@ -45004,11 +37381,11 @@ bhO bhO bhO mpk -gZp -oeA -oeA -mKX -oeA +eLR +oNP +oNP +tvC +oNP cXU bhO bhO @@ -45130,49 +37507,49 @@ aac aac kSU kSU -coO +woZ cjb cjb coP -akq -coS -cpR +mdY +nbp +oxp cqE -cnv -crb +iti +lsv apc -cZH -auk -arT -atq -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ -arT -cZH -auk -cwQ +wzf +lXv +aAi +bNd +lXv +okT +aAi +wzf +lXv +okT +aAi +wzf +lXv +okT +aAi +wzf +lXv +okT +aAi +wzf +lXv +okT apc -cmA -cnv -aoj -aXy -aUs -aVY -aVY -aVY -aVY +eUI +iti +qus +gOR +dLw +hKg +hKg +hKg +hKg aac aac aac @@ -45199,9 +37576,9 @@ bgS bsU bhO mpk -uTL -oeA -xRl +hYO +oNP +tce vkp blW vQs @@ -45325,45 +37702,45 @@ aac aac aac kSU -yeF -qjR -coO -coO -coV -coS -cpR +fVt +gAF +woZ +woZ +pCH +nbp +oxp cqE -cnv -crt -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -aEG -apm -apm -apm -apm -apm -apm -apm -apm -apm -apm -aSN -cnv -aoj -aXy -aUt +iti +iDn +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +pKQ +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +gDN +ifA +iti +qus +gOR +tWQ cqG bbA bbA @@ -45395,7 +37772,7 @@ bgS bhO tKS blW -ocH +fIs blW vQs xsH @@ -45522,43 +37899,43 @@ aac kSU kSU kSU -ajg +dFp wrp wrp wrp -cqu +gMb cqE -coX -aol -aol -aol -aol -aol -aol -cso -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -aol -cso -aol -aUq -aoj -aXy -aUt +kEZ +vZk +vZk +vZk +vZk +vZk +vZk +qVo +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +vZk +qVo +vZk +tPr +qus +gOR +tWQ bhK ahA ahA @@ -45717,11 +38094,11 @@ aac aac aac crA -exO -acN +pkd +xEb akr -akV -alC +elo +ekR cqE anj cqE @@ -45748,12 +38125,12 @@ cqE cqE cqE cqE -cnv +iti aSP -aUr -aUr +wvj +wvj azx -aUt +tWQ bhK ahA ahA @@ -45839,8 +38216,8 @@ aac aac aac aac -esJ -eqV +byi +lAc mhc qxi wfE @@ -45912,11 +38289,11 @@ aac aac aac crA -cry -acN +lLe +xEb aks -akV -alC +elo +ekR cqE anj aom @@ -45943,12 +38320,12 @@ cqE aom cqE cqE -cnv +iti azx -aUs -aVY -aVY -cfi +dLw +hKg +hKg +dKp bhK ahB aiP @@ -45975,7 +38352,7 @@ aVq aVq bgS bgS -haU +lRE xzR bgS bhN @@ -46107,40 +38484,40 @@ crA crA crA crA -aji +qDy ddp ddp ddp crY -bAI -bCh +wbe +ugw ctC bYE -apV -apV +oOV +oOV crY -kIK -aul -avn +xxU +hKf +nsI cbj -bWy -bWy -bWy -bWy -aDC +hBr +hBr +hBr +hBr +aRS crY -aFL -aFL -aIh -aJO -aFL -aFL +erl +erl +sGx +knX +erl +erl crY -aoj +qus aQv -cnv -aSQ -aUt +iti +jJK +tWQ agA apA apA @@ -46149,7 +38526,7 @@ aZW crN bjB bnn -ajv +jav pkO pkO pkO @@ -46302,40 +38679,40 @@ cnO cnO cnO cnO -crz +vAz cnO cnO ddp -alE -bWy -bUq -aon +gWc +hBr +edb +lGw ctC -apW -arc -arU -arY -aum +muH +ggD +pzK +qZp +qCm cbj -bWy +hBr bPs -azz -aBj +dXC +ogQ aCD aCD ctC -aFM -aGZ -aMB -aJP -aMB -aMB +cSh +bXO +sPY +jTu +sPY +sPY ctC -aOP +xQr aQv -aRA +kvF azx -aUt +tWQ cou bnm ahB @@ -46346,7 +38723,7 @@ bjj aYa brf btV -bwV +kOo bAw bEX brf @@ -46493,42 +38870,42 @@ aac crA cnO bjY -xDX -qKU -cmB +eih +ope +yjb bjY -xDX -exO +eih +pkd cnO ddp -alF -bWy -bUq -cru +kMQ +hBr +edb +vJQ ctC -arY -ard -arV -arY -aum -bWy +qZp +mkI +gcR +qZp +qCm +hBr cbj -ctD -azA -azA +wCs +nbm +nbm crY crY crY crY -aGZ -aIj -bWy -bWy -aMC +bXO +jXN +hBr +hBr +cQg ctC -aOS +eIM aQv -cnv +iti azx aac cou @@ -46566,8 +38943,8 @@ cwS cwS cwS glN -eLF -eLF +jpg +jpg glN bsU bhN @@ -46687,43 +39064,43 @@ aac aac crA cnO -crz -agB -ahs -cmB -aiB -ajj -coY +vAz +vux +prn +yjb +tWV +jqF +rzr cnO ddp crY -bAI -bCh +wbe +ugw ctC ctC -apX +iOg ctC crY -ctn -aum +lkk +qCm cbj -bWy -ayj -ctK -aBk +hBr +vfh +fVg +oJQ crY -bGe -aEH +udI +jcK crY crY -chq -chp -aLf -aMB -cjv -aoj -aQw -ani +mxQ +ibR +lIQ +sPY +nPu +qus +wdP +jRe aac aac cou @@ -46761,9 +39138,9 @@ cwS fzN cwS cbO -uPH -iVZ -cxg +lun +hgq +rQc bsU bsU bhN @@ -46882,49 +39259,49 @@ aac aac crA cnO -aiE -agC -coZ -ahR -aiC -ajk -ajM -coZ -akW -bSJ -fHp -ank -bSJ -app -apY -aCE -arW -arW -aun -fHp +uPq +sCu +skn +qLU +sSg +wgA +nJB +skn +avO +nwI +ppU +gFl +nwI +bIU +dVl +ylM +cJu +cJu +mlT +ppU awG -ayk -arW -arW -aCE +bFw +cJu +cJu +ylM aEI aEI -aFN -aHa -aIk -chq -bWy -aMB -cjv -aoj +oOv +dcd +nyW +mxQ +hBr +sPY +nPu +qus aQv -aRC +xkH aSR -aUu -aWi -aWi -aWi -aUu +doj +xpA +xpA +xpA +doj crN aVq crN @@ -46956,9 +39333,9 @@ cwS pvA nGi cbO -gif -wVf -cxg +lAR +woJ +rQc aac aac aac @@ -47078,48 +39455,48 @@ aac crA cnO bjY -afE +fpp cnO cnO -kRb +pPX bjY -qKU +ope cnO ddp crY -bAI -bCh +wbe +ugw ctC ctC -apZ +dbm ctC -arX -atr -auo +ssK +paV +nBx cbj -aLh -ayj -ctK -aBk +sZX +vfh +fVg +oJQ crY crY crY -aFO +dCt ctC -aIl -aIn -aLf -aMB -aNJ -aOP +ifp +tko +lIQ +sPY +xAd +xQr aQv -aRA -aSS -ctx -cty -cty -cty -ctx +kvF +ugA +tOn +rRz +rRz +rRz +tOn bjj aVq crN @@ -47152,7 +39529,7 @@ pvA xFl cwT cbO -ixS +uzs cwT aac aac @@ -47271,50 +39648,50 @@ aac aac aac crA -afB -cEu -agD -aiE +jif +pbm +qRF +uPq cnO -xDX +eih bjY -kRb +pPX cnO ddp -bXW -bWy -bUq -bXW +uLq +hBr +edb +uLq ctC -aFO +dCt aCl -crM -arY -caE -bWy +gBT +qZp +mEI +hBr awI -caE -arY -arY +mEI +qZp +qZp ctC ctC crY -aFP +eiv aHb -aIk -chq -aLf -aMB -fno -aoj +nyW +mxQ +lIQ +sPY +uiu +qus aQv -cnv -aST -ctx -cty -cty -cty -ctx +iti +xhI +tOn +rRz +rRz +rRz +tOn crN crN aVq @@ -47466,50 +39843,50 @@ aac aac aac crA -afC -aiE -agE -aiE +lTn +uPq +eAC +uPq cnO -coc +gIX ajl -ajP +rUX cnO ddp -alG -amr -anm -bUL +gXU +gZB +qJG +kfB ctC -aqa +jXR ctC -arX -atr -auo +ssK +paV +nBx cbj -bWy -ayj -ctK -aBk +hBr +vfh +fVg +oJQ ctC aDF -aEJ +sPe aFQ -aHc -sSZ -chr -bWy -aMB -cjv -aoj -aQw -aRD +nep +kFR +mFY +hBr +sPY +nPu +qus +wdP +qAE aSR -aUv -aWj -aWj -aWj -aUv +xoo +vti +vti +vti +xoo crN bjN crN @@ -47562,8 +39939,8 @@ aac aac aac mIG -mYN -npS +sxR +uUb bjL bdL ben @@ -47663,7 +40040,7 @@ aac crA cnO cnO -afE +fpp cnO cnO ddp @@ -47671,34 +40048,34 @@ ddp ddp ddp ddp -bXW -bWy -bUq -bXW +uLq +hBr +edb +uLq ctC -aFO +dCt ctC -arY -cto -ctD -bWy +qZp +wce +wCs +hBr cbj -caE -azB -azB +mEI +nFJ +nFJ ctC cdH -aEK -aFR -ntT -aIm -fWV -aLg -aMB -cjv -aoj +jWj +uBd +bri +liu +qjX +xKl +sPY +nPu +qus aQv -cnv +iti aac aac aWk @@ -47709,7 +40086,7 @@ aWg crN bjN bcx -ajv +jav pkO pkO pkO @@ -47758,7 +40135,7 @@ aac aac lcs kZU -mYN +sxR bdL ben bea @@ -47858,42 +40235,42 @@ crA crA ddp ddp -agF +rYT ddp ddp ptT ajm -ajQ -ajQ +eOZ +eOZ ddp crY -bAI -bCh +wbe +ugw ctC ctC -apZ +dbm ctC ctC ctC -ctE +ilB avr -bWy +hBr bPs -azC -azC +psn +psn ctC ctC -cer -aFS -chq -aIn -aJQ -aLh -aMB -cjv -aOP +qrZ +cHB +mxQ +tko +mXv +sZX +sPY +nPu +xQr aQv -aRA +kvF rtW aac aWk @@ -47952,8 +40329,8 @@ bur aac aac mIG -npS -npS +uUb +uUb bjL ben hir @@ -48051,27 +40428,27 @@ crA crA crA cnO -afD -bIL -agG -bIL -bKZ -kaP -bIL -bIL -bIL -akW -bSJ -fHp -anm -bUM +laA +ykE +nOU +ykE +mSQ +mFD +ykE +ykE +ykE +avO +nwI +ppU +qJG +ioF ctC -aFO -ctB +dCt +qSL arZ -ctB -aup -bWy +qSL +xFq +hBr cbj bPs azD @@ -48079,21 +40456,21 @@ azD ctC ctC ctC -aFT -aHe -aHe -ceq -aLi -aMD +wLz +xeI +xeI +jSc +iPa +haS crY -aOS +eIM aQv -cnv +iti azx aac -bXc -jgX -aZX +tmF +rgR +oQm aVq crN aWp @@ -48142,7 +40519,7 @@ aac aac bur bug -uEj +lEp bus aac aac @@ -48246,48 +40623,48 @@ cnO cnO cnO cnO -afE +fpp ddp bjY bjY ddp ddp -bjg -vNG -akt +wCJ +cbK +quC ddp crY -bAI -bCh +wbe +ugw ctC ctC -aqb -ctB +jWE +qSL afv -ctB -auq +qSL +adB cbj -pgW -bWy +flP +hBr cbj -bWy -bWy -aDG -cet +hBr +hBr +irk +qQX bZV bPs aIo aJR bPs -cet -aDG -ckX -ckX -cov -aSU +qQX +irk +hZx +hZx +gIQ +mSP cnB -jyq -jyq +pQC +pQC cnB aac bcx @@ -48438,13 +40815,13 @@ aac aac crA cnO -aes -aiE +ohh +uPq cnO -afF +lpI ddp -aiE -aht +uPq +kRe cnO ddp ddp @@ -48452,38 +40829,38 @@ ddp ddp ddp crY -bWy -ann -aoo -aHa -aqc -ctB +hBr +mbp +ofU +dcd +vBr +qSL ctl -ctB -ctF -avs +qSL +luv +cLW emg kUN azE aBl aCG -aDH -ceu -ceV -igm -igm -aJS -aLj -aDH -aDH +ixW +qwh +ojv +eyO +eyO +dwQ +rae +ixW +ixW aPa aPa aRF -ckX -cnA +hZx +rVK aWl bXV -baa +qda bcx bcx bcx @@ -48632,53 +41009,53 @@ aac aac aac crA -bDv -brg -bIL -akW -cZa -akW -bIL -mam +cSt +wtb +ykE +avO +nic +avO +ykE +kAo cnO wGx wGx -bRs -bRs -bRs +pQm +pQm +pQm wGx -bOs -ano +oFe +eMn wGx crY -aFO +dCt ctC ctC ctC ctC -avt +nmm bZV ctC ctC -aBm -cbW +evb +bCB ctC ctC ceW -tHE -aIp -aJT -aLk +dTY +upa +ntz +uVf ctC ctC -ncT -ckX -cov -aSV +dRU +hZx +gIQ +izZ cnB bXd aXB -cnA +rVK bcx aWp bcx @@ -48828,52 +41205,52 @@ aac aac crA cnO -ioz -aiE +uAG +uPq cnO -afE +fpp ddp -agI -izc +kJS +xcj cnO wGx -bPu -qUW -qUW -qUW -alH -qUW -bUs +xzq +ptI +ptI +ptI +jBn +ptI +xDv wGx crY -aeD -aeM -aeM -aeM -aCE +gYO +beo +beo +beo +ylM avu sJd -cew -azG -aBn -aCH -aDI +hIa +pQd +mNq +vqV +rgW aEL crY -aHf -aHf -aHf +rmT +rmT +rmT aLl aMF ctC cjw cnB -cov +gIQ aLq -cnC +iXp aWm aXC -cnA +rVK bcx aac aac @@ -48885,7 +41262,7 @@ aXP aYd aac aac -bad +aYd aYd aXP aXP @@ -48914,7 +41291,7 @@ ftr aac aac aac -brM +mEW ble ble ble @@ -49026,44 +41403,44 @@ cnO cnO cnO cnO -afE +fpp ddp cnO cnO cnO wGx -ajn -hCp -xSJ -akX -akX -xSJ -bUs +jAD +veR +sbY +dQQ +dQQ +sbY +xDv wGx crY crY -afg +uMC crY crY ctC -bWy +hBr awK -cew -azH -aBo -aCI -aDJ -cew +hIa +lIk +kqI +dcO +rkT +hIa aLM aNe aNe aOX aPn aOX -cwd +dmO aPe aQx -aRG +jwm aSW cnB cjw @@ -49221,34 +41598,34 @@ crA crA crA crA -afF +lpI ddp wGx wGx wGx wGx wGx -bQs -aku -akY -alI -xSJ -bUs -bUO -afW -afW -afW -asb -ats +vXL +dNN +wVe +mdA +sbY +xDv +sgh +jZI +jZI +jZI +izz +mxd bYE cbj bZV -cew -azI -riy -aCK -cdK -cew +hIa +jxj +xtK +iQU +pur +hIa aMV aNj aNm @@ -49258,9 +41635,9 @@ aPT aNL aPh cjw -cov +gIQ aLq -cnA +rVK jOa aXD cjw @@ -49299,7 +41676,7 @@ aac aac rsm coC -coC +nYb coC wrw aac @@ -49416,35 +41793,35 @@ aac aac aac cfr -afH -bso -agJ -ahu -ahT -agJ -myA -pDJ -akv -alJ -alJ -ams -bUt +qPA +qIQ +tDw +gyr +oqO +tDw +pXD +utQ +nal +niB +niB +pFP +dSI bAt ctC ctC -afg +uMC ctC ctC ctC -avw -awL +rwG +peK ctC ctC -cbW -cbW -cbW +bCB +bCB +bCB ctC -kwU +iCc aNl aNo aNl @@ -49452,8 +41829,8 @@ aOY aPX cjw aPi -cwd -cov +dmO +gIQ cmC cnB bXd @@ -49463,8 +41840,8 @@ aac aac aac aac -bnv -brn +nAw +fPQ aYX aWp aWp @@ -49611,27 +41988,27 @@ aac aac aac cfr -bOq +oHs xdE wGx -ahv -ahU -xSJ -ajp -qUW -ahU -xSJ -akX -xSJ -bUs -aop -apr -aqe +hTI +hOq +sbY +raF +ptI +hOq +sbY +dQQ +sbY +xDv +vYj +trW +mxJ cbj -asc -bXW +qHE +uLq ctC -avx +xqE bZV aym ctC @@ -49648,9 +42025,9 @@ aPX cjx cjw cnB -aRI -cmD -cnC +ciG +miv +iXp aLq aXF cjw @@ -49658,8 +42035,8 @@ aac aac aac aac -bnv -crk +nAw +tSP aYY aYd bcx @@ -49714,32 +42091,32 @@ xTU bvE bvE bvD -jit -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -uoP -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -qOj -cOI +tPY +taN +taN +taN +taN +taN +taN +taN +taN +taN +taN +taN +taN +vCz +taN +taN +taN +taN +taN +taN +taN +taN +taN +taN +taN +eyV bwt xTU kkL @@ -49805,34 +42182,34 @@ aac aac bAu bGg -bHt +gjD afI xdE -agK -xSJ -ahU -dQi -vjD -qUW -aIi -ala -bMZ -xSJ -bUu -aoq -fHp -fHp -fHp -tio -fHp -aus +sfv +sbY +hOq +txR +csL +ptI +uMN +uRw +vSz +sbY +oym +fEL +ppU +ppU +ppU +eYC +ppU +lfP aEI kSW ayn -aNJ +xAd ciA ciA -aDK +kSc aLy aMH aNo @@ -49840,11 +42217,11 @@ aNo aNo aNl aQa -vnh +xLR aPk -ckX -aRJ -cmE +hZx +ebq +pPm cnB cjw cjw @@ -49853,8 +42230,8 @@ aac aac aac aac -cqI -crk +nqd +tSP aWp aYd tUu @@ -49909,32 +42286,32 @@ bvJ bvE bvD bvD -eFa +qra bJI -iwp -jPQ -apv -nTf -iwp -skJ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ -apv -nTf -iwp -jPQ +xfZ +cHj +fuF +xHa +xfZ +tSY +fuF +xHa +xfZ +cHj +fuF +xHa +xfZ +cHj +fuF +xHa +xfZ +cHj +fuF +xHa +xfZ +cHj bJI -wvF +tgT bvE bwt kkL @@ -50000,34 +42377,34 @@ aac bAu bwg hGO -bHt +gjD afJ xdE -agL -xSJ -ahV -aiF -vjD -qUW -xSJ -alb -alb -xSJ -bUs -aor -bWy -bWy -bWy -bWy -bWy -bWy +eDD +sbY +xlV +efL +csL +ptI +sbY +gOx +gOx +sbY +xDv +mGx +hBr +hBr +hBr +hBr +hBr +hBr cbj bZV bPs -fno +uiu ciA ciA -aDL +gcO aLz aMI aNo @@ -50035,12 +42412,12 @@ aNo aNo aNo aOB -vnh +xLR aPk -ckX -aRK -ckX -cnA +hZx +stN +hZx +rVK jOa eRV cjw @@ -50048,8 +42425,8 @@ aac aac aac aac -gYs -brn +pcv +fPQ aYZ aWp aYd @@ -50104,8 +42481,8 @@ bvE rNI xTU bvD -eFa -lEo +qra +hdf tCR jWs ewk @@ -50128,8 +42505,8 @@ jWs ewk jWs jWs -yee -wvF +cFy +tgT bxo bwt kkL @@ -50195,28 +42572,28 @@ bAu bwg acX hGO -bHt +gjD afI xdE -agM -xSJ -ahW -xSJ -ajr -qUW -xSJ -akX -xSJ -amt -bUs -aop -bXW -aqf +nfY +sbY +cAF +sbY +ems +ptI +sbY +dQQ +sbY +eBL +xDv +vYj +uLq +fsD cbj -aqf -bXW +fsD +uLq ctC -avx +xqE bZV aym ctC @@ -50232,9 +42609,9 @@ aPr aOB cnB cjw -aQy -aRK -aSV +slv +stN +izZ cnB coy aXB @@ -50243,8 +42620,8 @@ aac aac aac aac -gYs -brn +pcv +fPQ aYX aWp aYd @@ -50299,8 +42676,8 @@ xTU rNI xTU bvD -eFa -sBg +qra +yau jWs jWs jWs @@ -50323,8 +42700,8 @@ jWs jWs jWs jWs -qbk -wvF +cTX +tgT bvE bwt bwt @@ -50391,19 +42768,19 @@ acX acX hGO xdE -bOq +oHs xdE agN -ahw -bOs -aiG -bPv -qUW -xSJ -ltN -alK -xSJ -anp +uZY +oFe +smH +ltE +ptI +sbY +nNy +njS +sbY +hAs wGx crY crY @@ -50411,8 +42788,8 @@ crY crY crY crY -avw -awL +rwG +peK ctC aHb aBq @@ -50426,11 +42803,11 @@ aJX aMJ aNB cjy -cnA -aQz -aRK -ckX -cnC +rVK +vBg +stN +hZx +iXp aWn aXI cjw @@ -50462,8 +42839,8 @@ bdL bdL ben beQ -npS -npS +uUb +uUb lcs aac aac @@ -50494,8 +42871,8 @@ hPr rNI bvE bvD -eFa -eBo +qra +qIp jWs jWs jWs @@ -50518,8 +42895,8 @@ jWs jWs jWs jWs -ayh -wvF +frW +tgT bvE bwt byr @@ -50586,31 +42963,31 @@ acX acX hGO xdE -afK +pDG xdE wGx wGx -bNa +tXh aiH wGx -bQv -xSJ -alb -alb -xSJ -anq +xjj +sbY +gOx +gOx +sbY +tzS auC crY crY -arg -ase +qky +ieV att crY -bWy +hBr bZV ctC -azL -yis +jLw +lzE ctC aDN aER @@ -50618,13 +42995,13 @@ aMJ aNo aPX aJY -aLo +sms aMK cjy -cnA -ckY -aRK -wXL +rVK +uVC +stN +wwn cnB cjw cjw @@ -50646,8 +43023,8 @@ aac aac aac mfp -eLF -eLF +jpg +jpg cwT beW bea @@ -50657,7 +43034,7 @@ bdL bdL bxy ben -npS +uUb kZU lcs aac @@ -50689,8 +43066,8 @@ rNI rNI xTU bvD -eFa -odB +qra +lXt vqx jWs jWs @@ -50713,8 +43090,8 @@ jWs jWs jWs jWs -aSX -wvF +mQu +tgT kkL bvE bwt @@ -50781,31 +43158,31 @@ acX acX hGO xdE -afL -bso -agJ -ahx -bOs -bOs -ajs -ajR -akw -ald -alL -qUW -bUs +sKZ +qIQ +tDw +iqR +oFe +oFe +uxv +oWA +hTz +bVm +ilH +ptI +xDv wGx crY aqg -arh +lwe asf atu aLl cbj bZW ayo -azM -aBs +fIu +lHE ctC aDO aER @@ -50817,10 +43194,10 @@ ciA ciA ciA aQu -aQA -aRK -ckX -cnA +lyE +stN +hZx +rVK jOa aXJ cjw @@ -50835,15 +43212,15 @@ aXP aXP aXP aWp -bMd -bRe -cbi +aJo +qbK +oSH aac aac mfp -eNz +hIe ioM -cxg +rQc beY ben bea @@ -50852,8 +43229,8 @@ bdL bdL bdL bjL -npS -npS +uUb +uUb lcs aac ble @@ -50884,8 +43261,8 @@ bvE bvE bvE bvE -eFa -lEo +qra +hdf jWs jWs jWs @@ -50908,8 +43285,8 @@ jWs jWs jWs jWs -yee -wvF +cFy +tgT bvD bvD bvE @@ -50975,32 +43352,32 @@ jbI bDE acX hGO -bHt +gjD bID xdE -bOs -bOs -bOs -bOs +oFe +oFe +oFe +oFe xdE xdE -alp +kKj xdE -anl -apl -rhg +uiv +iRN +hRq xdE crY crY -ari +uoq bXe atv crY -avz +xan bZV -pEF -aMB -aBt +pIY +sPY +bOn ctC aDO aER @@ -51011,10 +43388,10 @@ cjy ciA ciA aNM -cnA -ckY -aRK -aSV +rVK +uVC +stN +izZ cnB aPh aXE @@ -51030,15 +43407,15 @@ aXP aXP aWp aWp -bMB +xyf bRf cbu aac aac mfp -pER -iry -cxg +teq +xVN +rQc beZ bfr bea @@ -51079,8 +43456,8 @@ bvE bvE bvE bvD -eFa -xGE +qra +fZR jWs jWs jWs @@ -51103,8 +43480,8 @@ jWs jWs jWs jWs -qbk -wvF +cTX +tgT bvD bvD bvE @@ -51170,29 +43547,29 @@ aac jbI bDE hGO -bHt +gjD bID xdE -agP -ahy -ahX -bOs +doZ +kWG +qpg +oFe xdE -bQu -bRY -aky -bRY -aky -aqd -aky +kqd +czg +rlZ +czg +rlZ +kgL +rlZ crY crY bXY -nVt +nqS bXY crY ctC -awM +vZu ctC azO ctC @@ -51206,11 +43583,11 @@ aJZ ciA ciA aNN -cnA -aQD -aRK -ckX -cnC +rVK +lJf +stN +hZx +iXp aLq aXK cjw @@ -51225,13 +43602,13 @@ aZP glL aac aZJ -bMB +xyf bRf cwT mfp mfp cuz -eOK +tBO isa cwT ocw @@ -51274,8 +43651,8 @@ bvE bvE bvD bvE -eFa -eBo +qra +qIp jWs jWs jWs @@ -51298,8 +43675,8 @@ jWs jWs jWs jWs -ayh -wvF +frW +tgT bvE bvE bwt @@ -51365,46 +43742,46 @@ aac aac jbI bEh -bHt +gjD bID xdE xdE xdE xdE -cyi +tcn xdE -boW -alq -and -alq -and -aqi -brS +vrT +rOg +sMd +rOg +sMd +jbA +vHN crY -bWi +cZm arj ash atw ctC emg sJd -pEF +pIY cbj aBu -ctB +qSL oLv aER aMT aNo aNB cnB -aLp -cjz +gga +doQ cjw cnB -aQF -cov -ckX +xvh +gIQ +hZx cnB cjw cjw @@ -51420,18 +43797,18 @@ aZP glL aac aac -bMG +pWc bRg cbO -cij -rkb +mxb +xnG cuA -eRJ -isu -lGv -cxf +spA +slD +iGF +kaD cbO -cxn +bEW bgq bea bdL @@ -51469,8 +43846,8 @@ bvD bvD bvD bvE -eFa -odB +qra +lXt jWs jWs jWs @@ -51493,8 +43870,8 @@ jWs jWs jWs jWs -sFB -oFG +xlm +twU bvE byr kBL @@ -51561,22 +43938,22 @@ aac aac aac cfr -bIE +srZ bIK bIK bIK -cpo -bOt +xvd +xrJ xdE -ajS -akx -ale -akx -apS -aqA -aky +hFF +nAr +qQU +nAr +cXX +cUt +rlZ crY -aqh +xDA arj ash atx @@ -51586,17 +43963,17 @@ awN ctC cbj aBv -ctB +qSL ciA aER aMU aNo aOz -vnh -ckX -ckX -aNO -aPl +xLR +hZx +hZx +eBg +rWT aPa aRF aLq @@ -51623,10 +44000,10 @@ cmq cbO cbO iuB -lHH +vNm ofd -qgc -sSv +koC +hoh bha bha bhe @@ -51664,8 +44041,8 @@ bvD bvE bvD bvE -eFa -lEo +qra +hdf jWs jWs jWs @@ -51688,8 +44065,8 @@ jWs jWs jWs jWs -yee -wvF +cFy +tgT bvD bvE bwt @@ -51761,40 +44138,40 @@ cfr cfr cfr cfr -bOv +hoC xdE -ajT -aky -bRY -aky -bRY -aqT -brS +aGj +rlZ +czg +rlZ +czg +uQG +vHN crY crY arj bXf bXZ -aCE +ylM avC bPs ctC azP aBw -ctB +qSL ciA aER aMS aNo aOB -vnh +xLR aLq aML aNP -ckX -ckX -cov -aSY +hZx +hZx +gIQ +iyg cjw aac aac @@ -51813,15 +44190,15 @@ aac aac aac mfp -ciH -cmn -cuB -eSK -isu -lIG -isu +vtR +oyg +gqz +hdX +slD +mPH +slD cbO -sWO +xOP bgq ben bdL @@ -51859,8 +44236,8 @@ bvE bvD bvE bvD -eFa -sBg +qra +yau jWs jWs jWs @@ -51883,8 +44260,8 @@ jWs jWs jWs jWs -qbk -wvF +cTX +tgT bvD bvE bwt @@ -51956,26 +44333,26 @@ aac aac aac cfr -bOv +hoC xdE -ajU -alx -alf -anF -xCm -asX -aky -avA +voI +xVD +uhL +fem +nnZ +cRe +rlZ +wOh ctC ctC -bXg +ijD ctC ctC -avD +gsC ctC ayp -aHf -aHf +rmT +rmT ctC oLv aER @@ -51983,12 +44360,12 @@ aMS aNo aPX aKa -aLr +ohm cjw cjw cjw cnB -aRL +lVB cjw cnB aac @@ -52012,7 +44389,7 @@ mfp mfp mfp cbO -ixS +uzs mfp cwT cbO @@ -52054,8 +44431,8 @@ bvD bvE bvE bvE -eFa -eBo +qra +qIp vJj jWs ewk @@ -52078,8 +44455,8 @@ jWs ewk jWs jWs -ayh -wvF +frW +tgT bvD bvE bwt @@ -52151,7 +44528,7 @@ aac aac aac cfr -bOv +hoC xdE xdE xdE @@ -52159,11 +44536,11 @@ xdE xdE xdE aui -avv +hxy xdE xdE xdE -asi +rKs xdE xdE avE @@ -52178,13 +44555,13 @@ aMV aNo aOB cjw -aLs -qlw -aNQ -nqm +pGj +bXA +qni +dKx cjw -clW -aSZ +cMm +hCG cjw aac bgh @@ -52206,11 +44583,11 @@ aac aac aac mfp -eSR -cwF -lNr +gKE +aTm +bUr cbO -qjD +tTV bgs bea ben @@ -52249,32 +44626,32 @@ bvE bvE bvE xTU -eFa +qra bJI -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue -hzb -qbU -vsp -hue +dpo +fqa +vsT +bUf +dpo +fqa +vsT +bUf +dpo +fqa +vsT +bUf +dpo +fqa +vsT +bUf +dpo +fqa +vsT +bUf +dpo +fqa bJI -wvF +tgT bvD bvE bwt @@ -52346,21 +44723,21 @@ aac aac aac cfr -aiJ -cpo -cpo -akA -cpo -cpo -cpo -akA -aos -aos -aos -cpo -akA -cpo -xTh +nSV +xvd +xvd +jGj +xvd +xvd +xvd +jGj +hXc +hXc +hXc +xvd +jGj +xvd +tHc avF avF ayq @@ -52373,13 +44750,13 @@ aMG aNo aOE cjw -aLt -aMN -aNR -aPp -aQG -aRM -cmF +fKR +vOK +sYA +wwi +ovh +fSp +uLc cjw aac aTV @@ -52400,12 +44777,12 @@ aZP aZK bgh bcz -cxg -eTd -cwF -eOK -cxg -qkS +rQc +hNd +aTm +tBO +rQc +jnM bgt ben bea @@ -52444,32 +44821,32 @@ bvD bvD bvD bvM -sQs -ppe -ppe -ppe -ppe -ppe -ppe -ouJ -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -ppe -kYx +uaD +kEV +kEV +kEV +kEV +kEV +kEV +dJR +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +kEV +lue bvD bvE bwt @@ -52542,12 +44919,12 @@ aac aac cfr cfr -ajt -ajt +vqn +vqn xdE xdE -ajt -ajt +vqn +vqn cfr cfr cfr @@ -52570,7 +44947,7 @@ aOF cnB cjw cjw -aNS +rYJ aPq cnB cjw @@ -52596,11 +44973,11 @@ aZK aZK bcz cbO -eVA -cwF -rVs +eUw +aTm +rBZ cbO -qjD +tTV bgs bea ben @@ -52752,7 +45129,7 @@ aac aac auv ciA -awQ +sdB aHB aZK bdx @@ -52776,14 +45153,14 @@ aQI aVi aQq aWy -bhy -bkt -bnG -idx +hxh +fGS +lpF +hNT cfR -bxr -bAB -bFf +bAA +vJw +fnO bIV aZP aZP @@ -52792,10 +45169,10 @@ bav bcA cwT cbO -eLF +jpg lQT cwT -qjD +tTV bgu bhb ben @@ -52812,7 +45189,7 @@ aac aac aac vlH -gSz +dZZ ble bme aac @@ -52972,13 +45349,13 @@ aQq aVv aac bwp -bkt -bkt -bkt +fGS +fGS +fGS cfR -ctz -ctS -oUS +bJa +dAz +uOT cfR bav aZP @@ -52987,10 +45364,10 @@ aZP aZK bcW bdO -iym -lXd -lXd -qkU +ngO +rUU +rUU +qNW bgu bea bdL @@ -53025,9 +45402,9 @@ bdL bdL bdL xFH -wez -ads -oGW +fIN +nsW +eRG xFH aac bwt @@ -53167,12 +45544,12 @@ aTg aVP aac bwp -bku -bnS +rxY +dqC coB coB cfR -bAF +dub cfR coB baw @@ -53220,9 +45597,9 @@ bdL bdL bvu wGm -ncp +leP npX -ncp +leP qfC aac bwu @@ -53365,10 +45742,10 @@ bwp coB cfR cfR -buy -brt -bAG -jNe +tjJ +bKJ +vMR +rIS bIW coB baK @@ -53415,9 +45792,9 @@ bdL bdL bvv wGm -tRC +pBF hUJ -tRC +pBF qfC aac aac @@ -53558,14 +45935,14 @@ aDQ bhz bhz bkv -bnT -hTX -bhC -bhD +gSA +uNS +fLm +ese cqH cqH bIX -chX +qxj bgh aZK aZP @@ -53610,9 +45987,9 @@ bhe bha bvx wAG -xKr +ikg oPz -xZk +eDa iNe aac aac @@ -53751,16 +46128,16 @@ bgh aac bwp bwp -fRa -bkw -csA -bru +htm +tXv +unN +eQa buO bxs ctA -bru -bIY -chX +eQa +qzX +qxj bgh bbj aZK @@ -53805,9 +46182,9 @@ ben bea aac vxd -kfN +xui hUJ -qLp +fLf vxd aac aac @@ -53945,18 +46322,18 @@ aTb aac aac bwp -beS -bhC -bkx +wFZ +fLm +lqZ cqH brv -bnZ -bhH +udB +onZ coB -bxF -bAL +jLW +ptA coB -bhU +dGJ coB bcd aZK @@ -54000,16 +46377,16 @@ bea aac aac wGm -gFf +lbO hUJ -vrH +oqe qfC aac aac aac mfp -eLF -eLF +jpg +jpg ocw kkL bwt @@ -54140,19 +46517,19 @@ bgh aac aac bwp -beT -bhD +knb +ese cwe -bnZ -tPF +udB +pdU coB cfR cfR -bFC -bkx -ilj -bRp -chX +wED +lqZ +sMY +qNO +qxj bcg aZK bdx @@ -54195,17 +46572,17 @@ aac aac aac wGm -gFf +lbO hUJ -vrH +oqe qfC aac aac aac mfp -ubo -mLe -cxg +hhS +thY +rQc kkL kkL bwt @@ -54335,19 +46712,19 @@ aac aac aac bwp -beU -bhF +gjz +aBE bky bZj cfR cfR -bxu -bAH -bhF -bJc -bFF -bru -cbR +iZK +nxL +aBE +ljY +iQK +eQa +tLF bch bcB bdy @@ -54390,17 +46767,17 @@ aac aac aac hYc -wrv +tli hUJ -qLp +fLf hYc aac aac aac mfp -vKg -wVf -cxg +hlU +woJ +rQc kkL kkL xTU @@ -54530,19 +46907,19 @@ aac aac aac bwp -beV -bhD +eIS +ese cwe -beS -chX -buP -ctS -bAJ -bFF -bJx -ctS -bhD -cbS +wFZ +qxj +hBB +dAz +jzX +iQK +lsu +dAz +ese +uAx aZK aZP aZP @@ -54585,16 +46962,16 @@ aac aac aac qfC -tRC +pBF hUJ -vrH +oqe rXy aac aac sgG mfp cbO -ixS +uzs mfp kkL xTU @@ -54674,9 +47051,9 @@ aac aac cmo cmp -utX -qFH -qWC +kkw +iRq +jAG cmo anb aoA @@ -54702,10 +47079,10 @@ ccd ccd bYJ ccd -bZY -ayx -azV -iLJ +tla +xAG +kfP +uzW aKk bbj bbj @@ -54725,19 +47102,19 @@ aac bwp bwp bwp -beX -bhG +suE +nfn csm -boj -chX -buQ -ctS -bAK -ctS -ctS -ctS -bRp -chX +kap +qxj +pwj +dAz +cRX +dAz +dAz +dAz +qNO +qxj bdQ bgh bbj @@ -54780,16 +47157,16 @@ aac aac aac qfC -tRC +pBF hUJ -mCK +rbV qfC aac aac sgG -cIQ +nxv ubN -tRC +pBF sgG nJK bxy @@ -54869,10 +47246,10 @@ aac aac cmo dOG -uDa +fyv juY -uGH -qin +oBL +jje anE amj amj @@ -54888,19 +47265,19 @@ aac aac aac adS -anr -bUU -anr +ddq +lKb +ddq vPi -bXi +bMa asj -foN +viE cuP uKj -awS +mXx kcw kcw -iLJ +uzW aKk bbj bbj @@ -54918,20 +47295,20 @@ aac aac aac bwp -bpS -bpV -oUS -bhH +liE +xhK +uOT +onZ cwe -csB -chX -buR -ctS -bAK -bFZ -bJy -bMX -bRu +gss +qxj +vYa +dAz +cRX +rHW +uLU +dIo +rZL bIV bgh bgh @@ -54945,13 +47322,13 @@ tIl aac bhS dOO -ssE -iQi -ssE -jmy +pRT +smu +pRT +rte dOO eMZ -unE +cEj dOO dOO boG @@ -54975,16 +47352,16 @@ aac aac aac nmS -mrp +pTN hUJ -vrH +oqe rXy aac aac sgG -psE +fCM lrd -pXB +guj sgG nJK bea @@ -55064,9 +47441,9 @@ aac aac cmo cmp -uGH +oBL juY -uGH +oBL cmo anN aoA @@ -55083,19 +47460,19 @@ aac aac aac adS -aot -aot -aot +kVc +kVc +kVc aqj -bXi +bMa jyO -iLJ +uzW cuP cuP -awT +lpG kcw kcw -iLJ +uzW aKk bdA bbj @@ -55113,16 +47490,16 @@ aac aac aac bwp -bae -bcF -bfm -bhI +pXM +eiL +dNt +nni csm -bos +kqU coB bwp -bxE -bkx +cdL +lqZ bwp bwp bwp @@ -55140,14 +47517,14 @@ tIl aac aac rOB -eBr -oeT -bFv -eBr +mTV +lbj +eiE +mTV dOO -qTV +tsk qKx -ibE +iNb sbW boG blJ @@ -55170,16 +47547,16 @@ btq jww tWY hYc -wrv +tli npX -qLp +fLf hYc sgG sPc xDu -nQk +lWn ubN -tRC +pBF sgG nJK nJK @@ -55259,9 +47636,9 @@ aac aac cmo gDg -uGH -uGH -dTN +oBL +oBL +ptP cmo anb amj @@ -55278,19 +47655,19 @@ aac aac aac adS -bRw -bUV -bRw +rHH +rcG +rHH vPi -bXi +bMa asl -atz +rdn cuP cuP -foN -iLJ -iLJ -iLJ +viE +uzW +uzW +uzW aKk bgh bbj @@ -55311,13 +47688,13 @@ bwp coB bcI coB -bhQ +kOZ cwe -bot +swL cfR cfR -bxF -bAL +jLW +ptA bwp aac aac @@ -55335,14 +47712,14 @@ tIl aac aac rOB -bFv -yde -bFv -bFv +eiE +uvs +eiE +eiE dOO -vtl +ogM opg -vtl +ogM dOO boH blJ @@ -55356,24 +47733,24 @@ aac aac aac aac -bui +btX btq btq btv btv btv btv -kNZ -tdn -xKr +eka +iiw +ikg oPz -nIf -sGR -pLE +sQY +nTa +umb sgG sgG vxd -hOw +ciN vxd sgG nJK @@ -55478,12 +47855,12 @@ pRj vPi aqk ark -asm -bTb +ybA +eMp cuP cuP -foN -iLJ +viE +uzW aIz aJp aKl @@ -55505,14 +47882,14 @@ aac aUn cqr cqQ -chX -bhQ +qxj +kOZ csm -bou +sVA coB bZj -bhD -bkx +ese +lqZ bwp bwp bwp @@ -55535,9 +47912,9 @@ aac aac aac rOB -eUe +fVB khh -vtl +ogM dOO boI bpw @@ -55558,7 +47935,7 @@ btv btv btv btv -ezl +ehG qot qot fIG @@ -55566,8 +47943,8 @@ vwC cAt cAt iBM -qvJ -tBw +sOj +ccC qfC vye sgG @@ -55650,7 +48027,7 @@ aac cmo cmo wYx -tmw +hNI uNi cmo anb @@ -55673,12 +48050,12 @@ pRj vPi aql ark -bXi -oLz +bMa +sAF cuP -foN -foN -iLJ +viE +viE +uzW baT bfa bbj @@ -55700,12 +48077,12 @@ bgh aUn cqr cqQ -chX -bhQ +qxj +kOZ cwe -box -brx -buT +byL +jnG +gUx cqH csm bGa @@ -55753,18 +48130,18 @@ aac aac btq btq -kNZ -tRC -tRC +eka +pBF +pBF hUJ -vrH -tRC -tRC +oqe +pBF +pBF hUJ -vrH -vlG -vlG -srQ +oqe +nBk +nBk +pIT eqO nJK bxy @@ -55845,7 +48222,7 @@ aac cmo tEC wYx -dTN +ptP wYx cmo anb @@ -55863,17 +48240,17 @@ aac aac aac adS -gxl -bUY -sDs +nPq +oUJ +tib aqm ark -bXi -bTb +bMa +eMp cuP -foN -awW -ayA +viE +nnK +exo baU aJV aZK @@ -55895,12 +48272,12 @@ bdA aUn cqr aVZ -chX -bhQ +qxj +kOZ bkz -boy -crq -bru +mnK +pGk +eQa ctA bAM bGb @@ -55950,17 +48327,17 @@ aac jww tWY kOr -gFf +lbO hUJ -vrH +oqe gRO -mQE +tyT hUJ -vrH -tRC -tRC -gFf -nWv +oqe +pBF +pBF +lbO +qbC bjL bdL bdL @@ -56058,15 +48435,15 @@ aac aac aac mIE -ant -bUZ -aps -aqn +rRc +njq +ycQ +pkb arm -bXj -bYb +trd +xVF auw -iPd +uRQ aHj bcB aIC @@ -56090,15 +48467,15 @@ tWf aUx cqr cqQ -crp -crU +nmJ +htq cwe -boz +vSm bwp bwp bwp cfR -bGc +skb bJG bwp aac @@ -56145,17 +48522,17 @@ aac aac aac ibH -gFf +lbO hUJ -vrH -vlG -tRC +oqe +nBk +pBF ava oVR qot qot qot -kUi +jOI bxc bxc bxc @@ -56253,15 +48630,15 @@ aac aac aac amu -anu -bVa -apt -aqo +pGh +yfI +haR +iXD arn -bXi -bTb +bMa +eMp ukx -foN +viE aHu aZP aZP @@ -56285,10 +48662,10 @@ aTe vgn aVl bcL -crq -crV +pGk +uft bkA -boD +jMs bwp aac aac @@ -56340,17 +48717,17 @@ sgG sgG aac oeH -dyZ +qqS tJp -krg -vlG -gFf -tRC -vrH -tRC -rHs -gFf -ayl +nPI +nBk +lbO +pBF +oqe +pBF +suq +lbO +uAP bxd bdL bdL @@ -56448,15 +48825,15 @@ aac aac aac adS -ppX -aou -xSh -aqo +vNO +mqS +hVB +iXD arn -bXi -oLz +bMa +sAF ukx -foN +viE aHu aZP aZK @@ -56481,8 +48858,8 @@ axb aVm bcM coB -bhU -bkB +dGJ +oil bwp bwp aac @@ -56523,28 +48900,28 @@ bsu aac aac aac -pGf +hVt btv btq xre aac sgG -vmm -aft -vlG +cfN +nQr +nBk vxd vxd vxd mpr -xKw +gDs vxd vxd -jso -vlG -olh -vlG -vlG -srQ +hbA +nBk +wTW +nBk +nBk +pIT lTG ben bdL @@ -56643,17 +49020,17 @@ ccd ccd ccd adS -bTa -bTa -bTa +bdh +bdh +bdh aqp -oKV -asn -bTb +kmK +tII +eMp bYK -foN -bYg -caI +viE +whv +pZv aWd aZP aZP @@ -56715,26 +49092,26 @@ blJ bqE bmp bsN -wDq -xTw -fOX +qPX +gDp +rDX btq btq btq btp aac sgG -jVU -eaq -vlG +wRk +fYs +nBk vxd -uSg -sYj -yhJ +ehA +jgm +eOn epm -hTU +vsk sgG -iAA +ftz qfC riY cGg @@ -56836,19 +49213,19 @@ aac aac aac bGo -alM -amv -bUx -bVc -bUx -amv -bUx -bVc -atA +ozH +vsK +sFy +cWt +sFy +vsK +sFy +cWt +sLI urM -foN -foN -iLJ +viE +viE +uzW aSL aJW aZK @@ -56910,24 +49287,24 @@ blJ bmp bmE bsN -fiD +fcU uul -asd +nXr btp btq btv btp aac sgG -hOw +ciN vxd vxd vxd -eZw -vlG -vlG +sdv +nBk +nBk hUJ -qBg +oER vxd bvq qfC @@ -57042,8 +49419,8 @@ ras cuP ukx cuP -foN -iLJ +viE +uzW aIG aVp aKs @@ -57105,28 +49482,28 @@ bpA bqF brh brU -mFh +pIU gAv rjG -lTX -kwu -lTX -uXI +qQZ +iph +qQZ +tuz aDQ wio -xZk -xKr -xKr -pWP -mdB -vlG -vlG +eDa +ikg +ikg +uqQ +tWR +nBk +nBk hUJ -wZW +eua vxd vxd -hOw -hOw +ciN +ciN vxd sgG sPc @@ -57232,15 +49609,15 @@ anw bJJ bJJ bJJ -foN +viE cuP cuP ukx cuP -axa -iLJ -aAd -aAd +ckv +uzW +vtD +vtD ccV jjJ ccd @@ -57251,9 +49628,9 @@ baw bbj aac aac -gZP -iLJ -iLJ +eff +uzW +uzW aSL aZP aZP @@ -57283,9 +49660,9 @@ aac bfg bgJ xdr -wVU +idI jVg -sXu +cMT okE aac aac @@ -57300,29 +49677,29 @@ bmp bmE bmp bsN -fiD +fcU tWJ lbh lbh lbh lbh -jKf +rUk aac sgG -ndS -vlG -tRC -vjc -tRC -tRC -tRC -kzD -lws +wSD +nBk +pBF +icg +pBF +pBF +pBF +uDT +rQN vxd -iMP -tRC -tRC -gvR +sjE +pBF +pBF +bZe sgG aac aac @@ -57421,21 +49798,21 @@ aac aac aac nkp -cRw -foN -anx -bVd -cRw -cRw +lYd +viE +tsJ +dLX +lYd +lYd cuP cuP cuP -fxM -foN -foN -foN -azV -aBI +utt +viE +viE +viE +kfP +vod jjJ jjJ jjJ @@ -57446,9 +49823,9 @@ baw aPs aac aac -oOB -foN -iLJ +hSR +viE +uzW aac aWy aZK @@ -57478,9 +49855,9 @@ aac bfg bgI xdr -wVU +idI soI -sau +pDa okE aac aac @@ -57495,29 +49872,29 @@ bmp vXt bmp bsN -fiD +fcU lbh lbh lbh lbh lbh -jKf +rUk aac sgG -vrH -vlG -fMS +oqe +nBk +elZ vxd -tEf -tEf +myR +myR uph -odr +uOP vxd vxd -tRC -vlG -vlG -vth +pBF +nBk +nBk +eiO sgG aac aac @@ -57622,28 +49999,28 @@ bJJ aov bJJ bJJ -foN +viE cuP cuP -fxM -foN -foN -foN -foN -ccc -ccW -aDU +utt +viE +viE +viE +viE +orv +nIL +iMQ jjJ -cfY -cfY +xTO +xTO jjJ -cht +tJq jjJ ccd ccd jjJ -foN -iLJ +viE +uzW aac aac aTi @@ -57667,13 +50044,13 @@ aac aac aac fil -iLJ -iLJ +uzW +uzW bfe bfc bgI xdr -elE +wju hPK hYl okE @@ -57690,29 +50067,29 @@ bmp bnu bmD bsN -fiD +fcU lbh lbh lbh twa hLf -uad +wjH aac sgG -vrH -vlG -tRC -uqY -aTP -bss -rno -tRC -lFy -ixb -tRC -vlG -vlG -jXD +oqe +nBk +pBF +quv +gfO +jHF +dsg +pBF +paB +mhU +pBF +nBk +nBk +fEn sgG aac aac @@ -57820,25 +50197,25 @@ kcw cuP cuP cuP -fxM -bZq -foN -bZq -foN -ccc -ccW -aDV +utt +rcp +viE +rcp +viE +orv +nIL +xzO aEW -foN -foN -aDX -foN -aLB -xqT -aNT +viE +viE +kST +viE +olZ +tjk +hTP jjJ aQK -iLJ +uzW aac aac bgh @@ -57859,17 +50236,17 @@ aZK axb ccs ccs -qsZ +gde cuP -fkw -iLJ -gIL +mtL +uzW +sOi bff bfc bgI xhM xnn -aXs +hxn xdr czb aac @@ -57885,29 +50262,29 @@ blJ bmp bmE bsN -svP -fhW +eCs +gta lbh lbh -fhW -fhW -fhl +gta +gta +hQb aac sgG -vrH +oqe fNH -iWi -vlG -vlG -vlG -vlG -vlG -tOA -vlG -vlG -vlG -vlG -jXD +vui +nBk +nBk +nBk +nBk +nBk +kIL +nBk +nBk +nBk +nBk +fEn sgG aac aac @@ -58006,34 +50383,34 @@ aac aac aac ccd -alQ -amz -iPd -aPx -iPd -amz -iPd +sGN +gxA +uRQ +uCC +uRQ +gxA +uRQ cuX cuX -bYN -foN -foN -foN -foN -ccc -aCT -aDW +tol +viE +viE +viE +viE +orv +kgU +oGe jjJ -aGh +hlv aHk arm aKi arm arm -aNV -aPu +thg +nqt fBC -iLJ +uzW aac aac aac @@ -58054,11 +50431,11 @@ aac aDd ccs ccs -qsZ +gde cuP -foN -iLJ -thd +viE +uzW +fkT bfd bfc bgI @@ -58081,28 +50458,28 @@ blJ tQg brW bsn -wni +qdn lbh -asd +nXr vxd vxd vxd sgG sgG -uzj +oLV sly uLK -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -vlG -jsW +nBk +nBk +nBk +nBk +nBk +nBk +nBk +nBk +nBk +nBk +fBz sgG aac aac @@ -58203,37 +50580,37 @@ ccd ccd ccd adS -bTa -bTa -bTa +bdh +bdh +bdh aqp -lUm +iyb cuP cuP -fxM -bZq -foN -bZq -foN -ccc -ccX -cdR +utt +rcp +viE +rcp +viE +orv +kcV +maI jjJ -cfl -fxM -foN -aKj -cie -ciW -cny +dxN +utt +viE +qfa +ozq +oOi +hzJ jjJ aQK -iLJ -aTk -aUE +uzW +xnQ +wdK aWr -iLJ -iLJ +uzW +uzW aSL aZK aZP @@ -58242,18 +50619,18 @@ aZP aZP aZP aUz -iLJ -iLJ +uzW +uzW aac aac aac -ccy -ccy +piF +piF cmX cuP -foN -iLJ -thd +viE +uzW +fkT bfg bfc bgJ @@ -58276,28 +50653,28 @@ blJ blJ tQg bsN -wni +qdn lbh -asd -pVq -eky -tVP -xOa -iOi -qCv -cUr -dkw -uWP -uWP -uWP -uWP -xKr -tTP -tTP -tTP -uWP -sZP -ihd +nXr +vrf +vAC +rIx +eEC +fzF +eqA +tER +uFz +eCd +eCd +eCd +eCd +ikg +imx +imx +imx +eCd +kKL +gag sgG aac aac @@ -58398,37 +50775,37 @@ aac aac aac adS -wfY -bVf -imV -aqo -foN +oak +djL +yay +iXD +viE cuP cuP -fxM -foN -foN -foN -foN +utt +viE +viE +viE +viE jjJ jjJ jjJ jjJ jjJ -aHm +lwo jjJ jjJ jjJ jjJ jjJ jjJ -foN -foN -cfY -cfY -cfY -foN -iLJ +viE +viE +xTO +xTO +xTO +viE +uzW aWe bed aZP @@ -58437,18 +50814,18 @@ aYi aRR aRR aZe -iLJ -bGk +uzW +jxr aac ccd cmX fBC -cva -cmZ +smT +xzt cuP -foN -iLJ -thd +viE +uzW +fkT bfd bfc bgJ @@ -58471,28 +50848,28 @@ blJ blJ blJ bsM -wPI +hXW lbh -asd +nXr vxd mpr vxd vxd vxd -eFF -vlG -tRC -puX -xoE -mms -fuZ -qXY -rUQ -xrx -wWK -mms -mms -pwn +jgd +nBk +pBF +nMz +iHH +ckU +jYd +mEu +uWO +hdw +ajA +ckU +ckU +qEF sgG aac aac @@ -58593,57 +50970,57 @@ aac aac aac mIE -anA -aox -apw -aqs -aPx +rdF +aJh +kGz +chZ +uCC cuX cuX -bYN -avJ -foN -ayC -foN -cbp -foN -aDX +tol +gov +viE +mWI +viE +ffr +viE +kST aEX aGi ukx cuP -iLJ -aNX -bZq -aNX -iLJ +uzW +icJ +rcp +icJ +uzW cuP cuP cuP aUF cuP -foN -iLJ +viE +uzW aSL aZP aZP bdw aYj -gZP -iLJ -bxI -iLJ -bGk +eff +uzW +vTk +uzW +jxr aXG -bNm -cva +nKA +smT fBC -cva -cmZ +smT +xzt cuP -foN -iLJ -miL +viE +uzW +hfN bfh bfc bgJ @@ -58668,15 +51045,15 @@ blJ brW tSi lbh -asd +nXr jIz -tRC -tdr -tRC -tRC -vrH -tOA -tRC +pBF +uVs +pBF +pBF +oqe +kIL +pBF myk pbF efR @@ -58788,57 +51165,57 @@ aac aac aac bUd -fso -aoz -apx -aqt -foN +tdP +rpe +qzM +oHk +viE cuP cuP -fxM -foN -foN -foN -foN -foN -foN -foN +utt +viE +viE +viE +viE +viE +viE +viE cuP cuP ukx cuP -aKm +vMH nZR jjJ nZR -lUm +iyb cuP cuP cuP ukx aWs -cRw -xAp -bcX -bfu -bfu -bkJ -boJ -iLJ -foN -fxM -foN -foN +lYd +ihE +eeH +toj +toj +rUY +bBj +uzW +viE +utt +viE +viE aac bYJ -bRZ +gQR bNS -eFG -eFG +cTb +cTb cuX -frf -iNf -iLJ +vAP +qzr +uzW bfi bgi bgN @@ -58863,23 +51240,23 @@ blJ blJ wfv lbh -asd -vjc -tRC -vlG -vlG -vlG -mBb -vlG -alu +nXr +icg +pBF +nBk +nBk +nBk +dlB +nBk +pHy vxd pJz erq erq hkn -vlG -vlG -gfd +nBk +nBk +cpm pJz erq pZe @@ -58987,7 +51364,7 @@ adS adS adS adS -lUm +iyb cuP cuP fzz @@ -59002,41 +51379,41 @@ cuX cuX cfZ cuX -aPx -aNZ -aMP -aNZ -aPx +uCC +icB +pvw +icB +uCC cuX cuX aTn urM sMj aYm -bal -foN -foN -foN -fxM -foN -foN -foN +aOC +viE +viE +viE +utt +viE +viE +viE ukx cuP cuP -cva +smT bNR bSa bNR bJJ bNR cuP -fxM -foN -iLJ -iLJ -iLJ -tUO +utt +viE +uzW +uzW +uzW +gkg bhk bfd bfc @@ -59058,15 +51435,15 @@ blJ blJ wfv lbh -asd -vjc -tRC -hOD -tRC -tRC -tRC -tRC -uCI +nXr +icg +pBF +lxR +pBF +pBF +pBF +pBF +oUk vxd ulL xLH @@ -59182,7 +51559,7 @@ aac aac djW djW -bWD +qIJ tqG cuP cuP @@ -59197,11 +51574,11 @@ cuP cuP cuP cuP -aKm +vMH nZR jjJ nZR -lUm +iyb cuP cuP cuP @@ -59219,19 +51596,19 @@ cuX cfZ cuX cuX -eFG +cTb bNS -bSd +rfc fBC -cva +smT cna cuP fzz -iPd -iPd -iPd -iPd -tYB +uRQ +uRQ +uRQ +uRQ +pIf bhr bkI bfd @@ -59253,23 +51630,23 @@ blJ bsu vnV lbh -asd +nXr doO vxd vxd -qfM +sNy vxd vxd -tEf -tEf +myR +myR sgG sgG sgG sgG sgG -dFU -bYG -dtt +wzk +byw +cRi sgG sgG sgG @@ -59377,26 +51754,26 @@ aac aac djW djW -aro +dEB gCa tqG cuP cuP cuP -ayD -ayD +hGG +hGG cuP cuP -ayD -ayD +hGG +hGG cuP cuP cuP -iLJ -aNX -bZq -aNX -iLJ +uzW +icJ +rcp +icJ +uzW cuP cuP cuP @@ -59425,8 +51802,8 @@ cuP cuP cuP cuP -foN -uaC +viE +hEJ bhs bgi biE @@ -59446,13 +51823,13 @@ blJ blJ blJ bsM -vUp +ghB lbh -asd -pVq -vsL -jMV -jMV +nXr +vrf +ovT +qEt +qEt vxd aac jrw @@ -59462,9 +51839,9 @@ lmV lmV lmV sgG -hOw -hOw -hOw +ciN +ciN +ciN ghi lmV lmV @@ -59572,25 +51949,25 @@ djW djW djW aAR -uko +prw tqG tqG tqG cuP cuP -ccc -ccc +orv +orv cuP cuP -ccc -ccc +orv +orv fAb cuP aIQ oKo -aKB -aKB -aKB +gpv +gpv +gpv oKo oKo ras @@ -59609,24 +51986,24 @@ cuP cna cuP cuP -cva +smT fBC -cva +smT fBC -cva +smT fBC cuP fAb cuP cuP cuP -foN -uaC -iLJ -iLJ -iLJ -tyh -tyh +viE +hEJ +uzW +uzW +uzW +luy +luy aac koj koj @@ -59641,13 +52018,13 @@ blJ blJ blJ bsN -wni +qdn lbh -asd -pVq -itG -xeo -nCJ +nXr +vrf +phT +lok +kgE vxd aac uiE @@ -59767,18 +52144,18 @@ djW djW aAR aAR -aro -uko -dXV -mrG -avK -foN -ccc -aAe +dEB +prw +gEM +qba +jNX +viE +orv +fYT tsX tsX -aDY -ccc +kvR +orv cuP lqD aIQ @@ -59786,7 +52163,7 @@ oKo aLF dgB dgB -aPy +ohE oKo aRV ras @@ -59804,7 +52181,7 @@ cuP bxJ cuP cuP -cva +smT bOj bSD ccH @@ -59815,13 +52192,13 @@ fAb iUw mjJ cuP -foN -fxM -xAp -foN -foN -jjw -foN +viE +utt +ihE +viE +viE +cuU +viE aac aac aac @@ -59836,13 +52213,13 @@ bmE blJ bmp bsN -wPI -xje -gRK +hXW +mTF +kzZ vxd vxd -tEf -tEf +myR +myR vxd aac pYM @@ -59959,7 +52336,7 @@ ayr ayr aCu aAb -aFC +ayw ayw aAR awJ @@ -59987,8 +52364,8 @@ blb blb bfv blb -aYw -bao +xfy +qZA blb bfv blb @@ -59997,13 +52374,13 @@ blb blb blb vlm -mGA -riS -mKv +kpS +neg +bIk itw -bSE -miR -cjG +eXS +nKG +cON fBC cuZ cuP @@ -60017,8 +52394,8 @@ cuP syU uKj btH -iLJ -uNQ +uzW +ylU aac aac bmr @@ -60145,7 +52522,7 @@ aac aac aac bLj -hJT +jNW ayv ayw aHh @@ -60171,34 +52548,34 @@ aDZ dgB dgB oKo -aIS -aKn -aLH -aIV -aIV -aPz -aQP +wbV +ndY +qCF +uat +uat +pad +aIt aRW aTp nrQ blb -aYx -baq +qaT +iZZ blb bfw bhV bkO -boL -brB +cNk +soB blb -bxL -bAR -rUn -bJV -vmI -oOB -nUX -cjG +kaL +kuy +pVm +hoT +fiv +hSR +xdW +cON fBC cuP fBh @@ -60212,8 +52589,8 @@ cuP syU uKj qMH -gTk -foN +qsY +viE aac aac bmu @@ -60325,7 +52702,7 @@ aac aac rKG rKG -buc +rHx rKG rKG aac @@ -60340,7 +52717,7 @@ aac aac aac bLj -hJT +jNW ayw azZ awJ @@ -60358,44 +52735,44 @@ djW djW wmZ dgB -jmP -aAg +uPF +jFj aPH aPH -aEa -jmP +lKx +uPF dgB oKo -aIV -aUV -aUV -aUV -aOb +uat +vdJ +vdJ +vdJ +sxP blb blb blb bfx bfx blb -aYB -bar +lak +dSN blb bfx bfx blb blb -brD +oCr blb -bxM -bAT -bCq -ixo -vmI -bSI -nUX -cjH +pmi +fgo +vmB +eIi +fiv +onu +xdW +pPj fBC -cva +smT fBC iZI cuP @@ -60407,8 +52784,8 @@ cuP rdm qTD nZR -pEY -foN +nLR +viE gEo aac bmy @@ -60519,9 +52896,9 @@ aac aac aac rKG -bsS -cjq -bvt +keR +kds +wjs rKG aac aac @@ -60535,7 +52912,7 @@ aac aac aac bLj -hJT +jNW awA ayw awJ @@ -60553,44 +52930,44 @@ aHh awJ avL dgB -jmP -jmP +uPF +uPF dgB dgB -jmP -jmP +uPF +uPF dgB -aHo -aIV -aUV -aUV -aUV -aOc -aPB -aQQ -aRX +xqo +uat +vdJ +vdJ +vdJ +vCc +hgy +hWu +inz bfy bfy -bda -aYB -bar -bda +rQj +lak +dSN +rQj bfy bfy -bda -boN -bsk +rQj +ikR +kXP vlm -bxN -bAT -bCq -bJX +cwf +fgo +vmB +dfE vlm -foN -nUX -cjI +viE +xdW +kQB cnb -cvb +jYU fCE cuP cuP @@ -60602,8 +52979,8 @@ cuP syU nZR nZR -eqS -foN +nWq +viE gEo blo bpw @@ -60714,9 +53091,9 @@ aac aac aac rKG -abt -bud -jcV +nXO +tgf +fpG rKG aac aac @@ -60748,45 +53125,45 @@ ufG ufG avL dgB -rJz -rJz +vXQ +vXQ orc dgB -rJz -rJz +vXQ +vXQ dgB -xvy -aIW -aKp -aJb -aMQ -aOc -aPC -aQR +iEY +hMe +unZ +fpB +rwl +vCc +dzL +qJY oKo blb bbq blb -aYw -bat +xfy +xIB blb blb blb blb -boO -bsl -buU -bxO -bAW -bCq -mCx -mqQ -foN -iLJ -oHN -oHN -oHN -mic +qai +baD +gbt +tvE +eXx +vmB +tCw +whY +viE +uzW +uTm +uTm +uTm +kAS cuP cuP cuP @@ -60795,10 +53172,10 @@ urM cuP cuP cuP -mEL -iLJ -iLJ -foN +lYl +uzW +uzW +viE gEo blo bmA @@ -60909,9 +53286,9 @@ aac aac rKG brG -chS -chS -chS +evM +evM +evM brG rKG rKG @@ -60949,39 +53326,39 @@ irx dgB dgB irx -aGl -xvy -vuI -aKq -aIV -aMW -aOc -aPC -aQV +jsC +iEY +llT +foH +uat +scY +vCc +dzL +qBY oKo -aTs -nzI -aWE -aYD -bau -bdb -bfz -aTz -bkP -boP -bsq -buV -bxP -bCq -bCq -bKa -bOE -foN -foN -foN -foN -iLJ -mjt +iUE +qkE +xXK +iTV +pae +lPg +ydY +rvK +guq +nDB +uug +lWs +xXf +vmB +vmB +jyg +hyO +viE +viE +viE +viE +uzW +fVy cuP cuP cuP @@ -60990,10 +53367,10 @@ ukx cuP cuP lqD -mEL -foN -foN -foN +lYl +viE +viE +viE gEo blo bmA @@ -61137,53 +53514,53 @@ aAR djW djW aNu -oBn +eIW aHv -oBn +eIW szb -jmP -jmP +uPF +uPF oKo aNu aHv aUS -aUV +vdJ dgB -aMW +scY aOd -aPC -aQW +dzL +ryt oKo -aTt -aUN -aUN -aUN -baV -aUN -aUN -aTy +bFJ +hMz +hMz +hMz +noJ +hMz +hMz +xiN ghV -ttz -vtz +qoM +pZB vlm -bxT -mCx -mCx -bKb +eCB +tCw +tCw +ggc vlm vlm vlm -cjN -cjN +rLs +rLs vlm vlm jhl -foN -oRm -qNS -utn -xBT -xqv +viE +rqc +gxZ +hZh +dMy +kzf pRj pRj vtM @@ -61331,59 +53708,59 @@ ayw aHh aHh aAR -xvy -axc -ayE -eHW +iEY +ifb +pzR +eQK aHv -aCU -aCU +lka +lka aHv aHv -aHq -aIZ -aIV +iaY +wBu +uat dgB -aMW +scY aOd -aPD -aQX +scT +kfZ oKo -aTu -aUN -aWF -aWH -baN -bdd -aUN -bhZ +gTr +hMz +ecl +unM +wUW +uiy +hMz +emq vlm vlm -bst +pSk vlm -bUv -bTF -bTF +lZj +lOD +lOD vlm vlm -bSN -rvY -cjO -cnc -cvc -jkp -aFk -iLJ -foN -cva -uvz -cva -cva -ybN -jWi -bdU -ulv -ybN +lVo +mWd +mog +qVU +vDX +dHh +dTC +uzW +viE +smT +nmz +smT +smT +iEG +niU +kVD +yir +iEG aGf aGL bmD @@ -61527,58 +53904,58 @@ awJ aAR aHh avN -axd +pYc qcO dgB roI dgB dgB roI -aGm -aHr -aUV +ves +dBd +vdJ dgB -aIV -aMX -aOe -aPE -aPE -aRZ -aUN -aUN -aWG -aYB -bar -bde -aUN -bib -cvl -bsv -bsv -buW -bxV -bBB -bGq +uat +wfI +ryO +kej +kej +tFg +hMz +hMz +wQQ +lak +dSN +gpA +hMz +fUF +kRi +kQS +kQS +rIU +hwc +tLA +kJj vlm che vlm cdD -cjP -cnd -cvd -lPz +wIM +gpc +rOE +nxQ jjJ -aGc -foN -cva -uvz -cva -cva -ybN -aot -kuB -uJY -ybN +pQP +viE +smT +nmz +smT +smT +iEG +kVc +umo +huG +iEG blp aGP bmE @@ -61689,9 +54066,9 @@ aac aac rKG heO -chS -chS -chS +evM +evM +evM heO cpV tNr @@ -61703,7 +54080,7 @@ gOL gOL gOL bim -hJT +jNW awA awJ awJ @@ -61721,59 +54098,59 @@ awJ aHh awJ aAR -xvy -haN +iEY +hFa ayF ouB aBM cAw ouB ouB -aGn -aHs -aJb +iLt +gbu +fpB ouB -aLO -aMY -aOf -aPF -aPF -aSb -bfD -bfD -aWH -aYE -baQ -aWH -bfD -bii -bkY -bsw -bsw -bsw -bxX -bBT -bGr -bKc -bOp -bKc +xfm +wDa +pQs +svG +svG +hjN +uCx +uCx +unM +lxM +ruN +unM +uCx +eLk +mSp +nCR +nCR +nCR +ows +ePD +uHN +rWc +hwL +rWc cdD -cjQ +rRS vlm vlm vlm jjJ jjJ -oRm -qNS -uxu -xFR -hEF +rqc +gxZ +sFa +mtO +ovn pRj pRj -rSE -ant -ybN +rfC +rRc +iEG bkU blq bmF @@ -61884,9 +54261,9 @@ rKG bUX rKG cpV -fgb -bap -baL +ncn +eeh +wgw cpV cpV cpV @@ -61898,7 +54275,7 @@ txs txs txs ccj -hJT +jNW awJ awJ awJ @@ -61917,58 +54294,58 @@ brT ayw brT aHv -axe -wsj -qJi +ezL +irF +xZu dgB dgB dgB aEY aGp -aHt -aJc -aIV +nhf +ucu +uat dgB -aMW +scY aOd -aPG -aQY +psa +qeu oKo -aTy -aUN -aWG -aWG -baR -bdg -aUN -bij +xiN +hMz +wQQ +wQQ +ujD +xUH +hMz +sny blb blb -bsx -buX -bye -bBU -bGs -bGs -bOw -bST -bGs -cjR -cne -cve -neL -cve -mnq -foN -foN -uBz -xGb -iPd -lzT -aqn -vvR -axu -ybN +qsM +cwV +tqt +nBd +pmy +pmy +gRp +hrE +pmy +fRT +rQM +rAk +hDx +rAk +nzu +viE +viE +pCG +ock +uRQ +soS +pkb +wrr +lgu +iEG bkU aGP iqH @@ -62071,21 +54448,21 @@ cdo aOD acQ aam -cjq +kds baH -bld -bmt -yah -csk -cjq -cjq -yah -aby -cjq -bmt -cjq -cjq -adi +vGT +sZn +drD +ffd +kds +kds +drD +ind +kds +sZn +kds +kds +jrB txs txs gOL @@ -62093,7 +54470,7 @@ gOL gOL txs ccj -hJT +jNW awA awJ ayw @@ -62116,50 +54493,50 @@ aHv oWQ aAj orc -bXq +kzw dgB aOa aJd aHv oKo -aUV +vdJ dgB aMZ aOd -aPC -aQR +dzL +qJY wmZ -aTy -aUN -aUN -aUN -baS -aUN -aUN -bik +xiN +hMz +hMz +hMz +xxl +hMz +hMz +xgX blc -boU -bsy -buY -byv -bBV -bBV -bBV -bBV -bBV -bBV -cjS -bBT -bTF +scJ +mky +gKv +opT +xZL +xZL +xZL +xZL +xZL +xZL +pka +ePD +lOD cdG -bTF -mnq -foN +lOD +nzu +viE qMF uJn xGi -foN -iKW +viE +pXd pRj pRj adS @@ -62266,20 +54643,20 @@ ced cdo aam seb -xzL +kjA cdo rKG rKG rKG bUX rKG -cjq +kds cpV cpV cpV cpV cpV -uZh +uCr dWm dWm dWm @@ -62307,54 +54684,54 @@ awJ aAR aAR aHv -axf +saT ayF -aAk +lYS aBO -bXq +kzw ajW -aUV +vdJ aGr -aHw +iNE oKo aKx dgB aMZ aOd -aPC -aQZ +dzL +wOD wmZ -aTz -aUR -aYw -aUN -baV -aYw -rmQ -bil +rvK +omZ +xfy +hMz +noJ +xfy +hnT +mCu blb -boV +ehj bsz -buZ +nqY cdD vlm cdT -bTF -bTF -bTF +lOD +lOD +lOD cdG -cjU -cnf -cvf +ipu +gZA +qZL fWs -cvf -mnq -foN +qZL +nzu +viE cuY ukx ras cuP -xpK +qNX xuE qTk aac @@ -62461,20 +54838,20 @@ ced ced cdo nfK -xzL +kjA cdo ced ced ced ced bUX -qPl +aJq fln ced ced ced cpV -uZh +uCr cdA cdA cdA @@ -62504,55 +54881,55 @@ brT aHv axg ayH -aMQ -bXq -bXq +rwl +kzw +kzw dgB -aUV +vdJ uWG -aHw +iNE oKo oKo aLP -aMX +wfI aOd -aPC -aRa +dzL +ekN wmZ wmZ aUS -aWK -aUN -baV -aYw +eGl +hMz +noJ +xfy blb blb blb -boV +ehj blb -bTF -byF -bBX -ryK -ryK -bOx -ryK -bTF -cjU -bBT -bTF +lOD +chh +ssB +siS +siS +srs +siS +lOD +ipu +ePD +lOD cdG -bTF +lOD vlm -oOB +hSR qOt uRy xJD cuP -hmf +uPP wsh iQS -xnZ +jBY oxE aac blv @@ -62656,28 +55033,28 @@ ced cdo cdo aHz -aQB +uZO cdo cdo cdo ced ced rKG -cjq +kds cpV cpV fln cpV cpV -bzH +qlm cdA cdA -bDU -rcb -rcb -rcb -afM -cck +lzj +cFf +cFf +cFf +vVw +nQb akR djW djW @@ -62698,58 +55075,58 @@ ayw ayw aHv axg -ayI -aAm -aBQ -aCV -bXq -aUV +uLI +kjC +lyy +dfR +kzw +vdJ vBs -aHw +iNE oKo oKo aLQ -aMX +wfI aOd -aPC -aQQ -aSc -aTA -aUT +dzL +hWu +lqF +lBD +mFE anc aWL bbc aWL aWL -bsy -blh -boY -bsA -bTF -byY -qcl -ryK -ryK -ryK -ryK -bTF -bye -cng -cvg -fXV -jkc +mky +fCL +hSM +qsF +lOD +flB +fRQ +siS +siS +siS +siS +lOD +tqt +xbC +iFV +xQP +shP ghV -oOB +hSR qQq uRy xKD cuP -wzZ +sRv wsh iQS -foN +viE tmi -sRz +wCd blx bmI bnC @@ -62858,21 +55235,21 @@ cdo rKG rKG rKG -yah -cjq -bFg -abL -glG +drD +kds +paw +eHQ +koS cpV -uZh +uCr cdA -qzL -ccg -ccg -ccg -ccg -dEa -dEa +sJM +fVL +fVL +fVL +fVL +ekT +ekT akR djW djW @@ -62889,62 +55266,62 @@ ayw awJ arr oKo -oBn -oBn +eIW +eIW avP oKo -aIV -aAn -aBR -aCW -aIV -aFb +rcT +kTD +jxF +rvj +uat +ifR oKo oKo oKo oKo oKo -aNa +cOi aOg -aPD -aRb -aSd -aTB +scT +fgR +hyz +tan oKo aoP -aYG -bbd +tHe +jRn bfy bfI mZd -bli -bpe +ven +fFD mZd -bvb -byZ +cKS +uOw vlm -rhR -bKC -dJU +yaJ +jcq +iVd vlm cdT -cjU -cnh +ipu +xJS bTD vlm vlm vlm -oOX +ldy wTn uTQ xOs cuP -wzZ +sRv wsh iQS -cRw +lYd cuP -sRz +wCd blz bmK bnB @@ -63046,28 +55423,28 @@ aam abr aam pIa -aaR +tpp aJn -cjq -cjq +kds +kds cdo -bld -cjq -cjq +vGT +kds +kds rKG rKG bUX rKG cpV -uZh +uCr cdA -qzL -dEa -dEa -dEa -dEa -dEa -dEa +sJM +ekT +ekT +ekT +ekT +ekT +ekT akR djW djW @@ -63083,63 +55460,63 @@ ayw ayw aFv oKo -fcB +flf bVM bVM -avQ +xUE oKo -ayK +lCu aAo aBS dgB -aIV -aUV +uat +vdJ aGr -aHw +iNE oKo aKy aLR -aMX +wfI aOh aPH aPH aPH aPH -aUU +jbb bfy -aYG -bbd +tHe +jRn bfy bfJ mZd mZd mZd mZd -bvc -bza -bCf -bCf -bKD -bCf -cyH -buY -cjV -cni -cvl -bTF -bTF -mqQ +qzb +qHm +iet +iet +oIX +iet +ooE +gKv +jtL +uYF +kRi +lOD +lOD +whY oqJ xJD ukx xTZ cuP -wzZ +sRv wsh iQS -jVD +rbz ras -vhl +lpT blB bmL bnF @@ -63254,15 +55631,15 @@ ced ced akR dWm -uZh +uCr cdA -qzL -dEa -dEa -kPL -sBa -bJb -agf +sJM +ekT +ekT +cyc +qkV +tKO +tCe akR djW djW @@ -63278,63 +55655,63 @@ ayw ayw ayw kyT -bXq +kzw dgB dgB -bXq -axi -ayL -aAp +kzw +hly +soo +iEX ajW dgB -aIV -aUV +uat +vdJ uWG -aHw +iNE oKo dgB dgB -aNb -aJb -aJb -aJb -aJb +ewM +fpB +fpB +fpB +fpB aTC -aUU +jbb biH -blN -bsK +oJi +bEJ bdi cik cik -bsG -blN -bsB -bvd -bzb -jsd -gUV -bKL -bOA +lWo +oJi +fCC +uLN +eUb +lAP +bAc +iYX +qWJ vlm -bTF -bye -cng -bkY -buY -buY -bkY +lOD +tqt +xbC +mSp +gKv +gKv +mSp hQq qYm urM cuP cuP -vId +lDp oiV vCl -qMQ -euN -iLJ +iEy +peV +uzW blL bmM bmM @@ -63449,11 +55826,11 @@ ced ced akR cdA -acI +xkO cdA cdA -uqB -uqB +qSv +qSv cdA cdA cdA @@ -63473,19 +55850,19 @@ ayw ayw awJ kyT -bXq +kzw dgB dgB -bXq -ufH -aIV +kzw +lWv +uat aMZ dgB dgB -aIV -aUV +uat +vdJ vBs -aHw +iNE oKo aKA dgB @@ -63493,42 +55870,42 @@ aNc aNc aPI aRc -aSe +qCl aMZ -aUU +jbb biH -blN -bsK +oJi +bEJ bdi -bfV -biD -bll -bll +xrR +fRX +wqH +wqH cik cik cik vlm -cjN -cjN +rLs +rLs vlm bTD cdT -cjU -cnh +ipu +xJS vlm -mKv -mKv +bIk +bIk vlm -oWD +lvZ cuP ukx xWN -foN -gha -tsz -gha -foN -foN +viE +pfb +hfI +pfb +viE +viE eRk blE blJ @@ -63644,15 +56021,15 @@ ced ced akR cdA -cci -xKC -cci -cci -cci -cci -xKC -cci -cci +pSv +sCI +pSv +pSv +pSv +pSv +sCI +pSv +pSv akR bDQ djW @@ -63668,62 +56045,62 @@ ayw awJ aFZ oKo -asq +ibS atE atE -avR +bFn oKo -ayM +nuu aMZ dgB dgB -aIV -aFb +uat +ifR aJd oKo aJd -aKB -aKB +gpv +gpv oKo oKo -aKB -aKB +gpv +gpv oKo -aTD +fHO oKo aWO -blN -bsK +oJi +bEJ bdi -bfM +upF biH -blN +oJi biH biH bve cik -hEC -bGD -nSb +dBK +lJJ +vXb msG -bTE -bTF -cjU -bBT +pYZ +lOD +ipu +ePD vlm -xub -xub +rEv +rEv ghV -pbC +nBs ras uhF xXi -rwD -xqv -cva -xqv -cva -cva +qoF +kzf +smT +kzf +smT +smT jyO blF blJ @@ -63826,7 +56203,7 @@ cdo aJn cdo bgn -aQB +uZO adW aam aam @@ -63839,17 +56216,17 @@ ced ced akR cdA -cci -upO -xyC -xyC -upO -xyC -xyC -upO -cci -ccY -eXK +pSv +fYM +kwR +kwR +fYM +kwR +kwR +fYM +pSv +aAN +nxn axk axk axk @@ -63863,62 +56240,62 @@ ayw awJ aAR arr -asr -uhM -auA -tXW -axj -aIV -aAr -aBT -aBT -aBT -aFc -aGt -aJb -aJe -aJb -aJb -aJb -aOi -aJb -aJb -aSf -aFg -aUV +cOP +lih +xqf +qEz +dYm +uat +moT +jJk +jJk +jJk +xgz +qPM +fpB +wAg +fpB +fpB +fpB +tri +fpB +fpB +lpu +exp +vdJ aWP -aYH -bbf +iQu +mGf biH bfN biI -blO -bpz -bll -bvf +fkE +nie +wqH +umw cik -bCn -bGH -bGO +qdP +rvB +mvc vlm -bTE -bTF -bye -cng -cyH -gbS -jkp +pYZ +lOD +tqt +xbC +ooE +byM +dHh mrT -foN +viE rbi vgW xYw -sOB -xqv -cva -hEF -cva -wxY +sWr +kzf +smT +ovn +smT +wcW jyO blJ bnD @@ -64008,20 +56385,20 @@ aab aac aac rKG -glG -yah -cjq +koS +drD +kds cdo -cjq -cjq -aKw +kds +kds +elD aLu -gjP -cjq -cjq -gGX +mny +kds +kds +eDG cdo -cjq +kds adW aam adC @@ -64034,17 +56411,17 @@ ced ced akR cdA -acJ -mce -adD -aed -ich -aed -eGD -bJg -cci -agQ -eXK +wfo +iCg +psz +vdk +cxP +vdk +tYu +jfm +pSv +nks +nxn axk axk axk @@ -64060,15 +56437,15 @@ oKo oKo oKo oKo -auB -avT -aIV -bXq -aAs -aBU -aCY -aCY -aFd +uuh +lfL +uat +kzw +spq +qwk +iCJ +iCJ +wdl aGu dgB dgB @@ -64082,38 +56459,38 @@ dgB aTE ouB bbs -aYI -bbg +gCL +wvZ biH -bfV -biK +xrR +fcb blQ biH -bsC -bll +kGP +pRJ cik -bCo -bGO -bGO -rpA -bTF -bTF -cjU -cnh +faK +mvc +mvc +lNc +lOD +lOD +ipu +xJS vlm vlm vlm msG -oRm -rdo -vjZ +rqc +edI +nVX ydV -foN -fYE -dSV -fYE -hcg -foN +viE +sNb +kCV +sNb +eWC +viE uDU blK bmS @@ -64204,7 +56581,7 @@ aac aac rKG rKG -aZm +gnP cpV cdo pIa @@ -64216,7 +56593,7 @@ aHz pIa acU cdo -cjq +kds gOo abv aJn @@ -64229,16 +56606,16 @@ ced ahS dWm cdA -bzN -mce -bCL -dUP -wol -wol -bHS -bJg -cci -bKp +fQr +iCg +gXz +wZk +iGz +iGz +yaU +jfm +pSv +uMM dWm dWm azT @@ -64250,20 +56627,20 @@ awJ ayw ayw oKo -bVL -aqv -ars -ass +egJ +azw +vLR +pVU oKo -bXq -bXq -axn -bXq -aAs -aKr +kzw +kzw +sCk +kzw +spq +eLn dgB dgB -aMX +wfI dgB biH biH @@ -64277,39 +56654,39 @@ biH biH biH biH -bsK -blN -bdk +bEJ +oJi +vGZ cik -blV -blV -blV -blV -blV +vet +vet +vet +vet +vet aPm vlm vlm vlm cdD -bTG -bTF -cjU -bBT -cFj -ggH -jmH -vmI -foN -fxM +fzO +lOD +ipu +ePD +dzU +pEH +sJa +fiv +viE +utt vlm -mKv -mKv +bIk +bIk vlm aGd aGe -foN -iLJ -iLJ +viE +uzW +uzW blL tQg bmp @@ -64399,8 +56776,8 @@ aac aac aac rKG -bFg -chS +paw +evM cdo aam aax @@ -64408,10 +56785,10 @@ aam cdo pIa aax -abG +cBe cdo cdo -cjq +kds abr aam aam @@ -64423,18 +56800,18 @@ ced ced hmw aiD -acr -acK -upO -meu -mzp -bFl -bGJ -bHT -bJg -cci -cci -eXK +bWo +oOo +fYM +pjN +veV +mUO +vXi +urE +jfm +pSv +pSv +nxn axk axk axk @@ -64444,67 +56821,67 @@ awJ ayw ayw ayw -xvy +iEY bVM bVM bVM ast oKo -auD -bXq -aIV -bXq -aAt -aBW +mku +kzw +uat +kzw +tHl +sIX dgB dgB -aFf +urv aGw biH -aJf -aKC -aLS -aJf -aOk -aLS -aJf -aKC -blN -blN -blN -bsK -blN -blN -bfO -bll -bll -bpE -bsD -bll -bzc -bCp -bHo -bCp -bOE -bUp -buY -cjV -bBT -bTF -bOE -mCx -mwq -iPd -reS -vmI -orQ -pEo -vmI +gHM +eVe +vky +gHM +rxr +vky +gHM +eVe +oJi +oJi +oJi +bEJ +oJi +oJi +rkD +wqH +wqH +wpr +eYs +wqH +vTO +taP +sTZ +taP +hyO +krD +gKv +jtL +ePD +lOD +hyO +tCw +nHT +uRQ +nTM +fiv +hrb +kGH +fiv uzv aNA -foN +viE cuP -kzc +vGd blM bmU sxS @@ -64594,8 +56971,8 @@ aac aac aac rKG -aaf -chS +eOF +evM aar aar aam @@ -64615,21 +56992,21 @@ cdo cdo aar aar -cjq -hHm -acd -acs -cci -upO -meu -wol -wol -wol -tUW -bJg -cci -cci -eXK +kds +dqx +nXK +wco +pSv +fYM +pjN +iGz +iGz +iGz +vEN +jfm +pSv +pSv +nxn axk axk axk @@ -64639,22 +57016,22 @@ awJ ayw ayw ayw -xvy +iEY qhp -tlc -art +oQs +snq asu -atG -auE -avU -aLO -avU -aAu -aBX +pAR +jdl +aAH +xfm +aAH +dDK +oBb ouB ouB -aFg -aGx +exp +ulh aHD aJl aJl @@ -64667,39 +57044,39 @@ aPJ aPJ aPJ aWQ -aYK -bll -blN -bfP -blX -blR -blX -blX -blX -blX -bCq -bHp -bCq -bOE -bUv -bTF -cjU -bBT -bTF -bOE -jrU +dLO +wqH +oJi +gvb +seR +hbN +seR +seR +seR +seR +vmB +bDL +vmB +hyO +lZj +lOD +ipu +ePD +lOD +hyO +ghg mwt -mGA -riS +kpS +neg vlm -jUo -tRf -vmI +gLU +hhi +fiv ldp riM -foN +viE ras -iLJ +uzW blL bmV bmE @@ -64801,7 +57178,7 @@ aam aam aam cdo -cjq +kds aam aam cdo @@ -64814,16 +57191,16 @@ eVI baM bmq act -cci -upO -meu -wol -wol -wol -tUW -bJg -cci -bKp +pSv +fYM +pjN +iGz +iGz +iGz +vEN +jfm +pSv +uMM dWm dWm azT @@ -64834,61 +57211,61 @@ ayw ayw ayw ayw -xvy +iEY bVN bWl bWl asv oKo -auD -avV -axp -bXq -bXq -ufI +mku +wFr +nBl +kzw +kzw +jCy orc dgB -aMX -aGy +wfI +cBm cik -dpd -aKD -aLT -dpd -aKD -aPK -dpd -aKD -aTG -gzT +mUg +otG +pZP +mUg +otG +uHn +mUg +otG +gbb +hVk aWR -aYL -bbk -frL -bfQ -bbk -blS -blS -blS -blS -bzd -bCt -bHq -bCt -bkY -bUI -bTF -cjU -bBT -bTF -bOE -ryK -mxa -ryK -ryK -vmI -vyl -fBY +jnS +qjx +wbz +pMO +qjx +vBB +vBB +vBB +vBB +mTg +lNk +wJN +lNk +mSp +hQf +lOD +ipu +ePD +lOD +hyO +siS +gTK +siS +siS +fiv +naU +eHJ vlm vlm itw @@ -64996,7 +57373,7 @@ aan aam acU baH -cjq +kds aam aam cfH @@ -65006,20 +57383,20 @@ aam cdo onq aar -csk +ffd dWm cdA -acJ -bBg -dUP -wol -wol -wol -bHV -bBg -cci -bLt -eXK +wfo +rpU +wZk +iGz +iGz +iGz +xYS +rpU +pSv +lsj +nxn axk axk axk @@ -65030,62 +57407,62 @@ ayw aHh aAR oKo -apy -bWm -aru -asw +wex +xeW +caD +mZs oKo -bXq -avW -axq -bXq -aAv -aKr +kzw +ghn +jGO +kzw +iUz +eLn dgB dgB -aFi -aGz +qYb +iGl cik -blN -blN -blN -blN -aOm -blN -blN -aOu -blN -ovS +oJi +oJi +oJi +oJi +wgv +oJi +oJi +diV +oJi +bLF aWR -bll +wqH oSV -bdp +taB cik -biT +vvo cik cik vlm -mKv -mKv +bIk +bIk vlm eSx eSx eSx bUJ vlm -cjW -bBT -cKc -bOE -ryK -mxu -pkG -rkq +onl +ePD +rSK +hyO +siS +ixL +qYs +mlY vlm -mow -jam -svg -cUu +wPE +dpJ +nAU +gxe vlm gAD efT @@ -65191,7 +57568,7 @@ aas cdo cfH cdo -cjq +kds aan aam ahn @@ -65204,17 +57581,17 @@ cdo ced akR cdA -acL -bBg -lUu -bGM -aeu -bGM -afh -bBg -cci -bLt -eXK +mne +rpU +lgc +osd +pLX +osd +vzE +rpU +pSv +lsj +nxn axk axk axk @@ -65230,57 +57607,57 @@ oKo oKo asx oKo -bXq -avX -axr -ayN -aAw -aBY -aEb -aEb -aMX -aGA +kzw +bKQ +pKy +wXX +pQO +tqx +bMg +bMg +wfI +hMO cik -bll -bll -aLU -bll -bll -bll -bll -bll -blN -aUZ +wqH +wqH +ric +wqH +wqH +wqH +wqH +wqH +oJi +wll aWR -bll +wqH oSV -bdq +tjH cik -biU -blT -bpF -mnq -bvh -bzf +efr +pAp +dtk +nzu +owb +ftA eSx -bHr -bKO -bOF -bUK -ceG -cjU -cnf -bTF -ghM -ryK -ryK -plC -ryK -vnC -tZV -fBY -voe -voe +sQk +apg +gwH +pNu +jXT +ipu +gZA +lOD +xgL +siS +siS +lVz +siS +iED +oRd +eHJ +csX +csX vlm ltZ wgI @@ -65386,7 +57763,7 @@ xSB aam aam baH -cjq +kds bgn aar aJn @@ -65399,15 +57776,15 @@ aar ced akR cdA -acJ -bBg -dUP -wol -wol -wol -bHV -bBg -cci +wfo +rpU +wZk +iGz +iGz +iGz +xYS +rpU +pSv dWm dWm djW @@ -65422,20 +57799,20 @@ djW djW djW ijo -dfw -asy +tSk +oFf ijo -auF +fMY ijo aHv -ayP -ayP -acf -acC +cZw +cZw +khL +jyB oKo -aMX +wfI dgB -bfM +upF biH jxc jxc @@ -65443,46 +57820,46 @@ jxc aOn jxc biH -bll -aTH -aVa +wqH +fcL +xoJ aWR -bll -bbl -bvl +wqH +yix +lLB cik -biV -blU -bpG -mnq -bTF -bTF -bCv -bHs -bKP -bKR -cvf -ceG -cjU -bBT -cLE +qxg +mca +hsf +nzu +lOD +lOD +mxZ +ciY +wUE +clO +qZL +jXT +ipu +ePD +stT ghV -jyE -mGA -ptr -mGA -vnC -tZV -vyl -vyl -eOc +bbY +kpS +sid +kpS +iED +oRd +naU +naU +sGk vlm vlm vlm vlm -vvp -dnz -sDE +sKj +qAp +xLE che che che @@ -65575,8 +57952,8 @@ aac aac rKG cpV -cjq -cjq +kds +kds cpV abN aam @@ -65594,15 +57971,15 @@ aar ced akR cdA -acM -mce -meu -wol -wol -wol -tUW -bJg -bKn +uwT +iCg +pjN +iGz +iGz +iGz +vEN +jfm +hft akR cdA cdA @@ -65617,72 +57994,72 @@ djW djW djW ijo -bZD -asz -ccn -cdZ -avY -axt -bXq -bXq -bXq -bXq -aEc -aMX -aUV +sbp +mdu +bNe +vxT +sGE +jtW +kzw +kzw +kzw +kzw +gCh +wfI +vdJ cik -aJm -aKG -aLW -aNf -aOo -aPL +xlc +nIA +gCz +rrB +ivj +ydF aRf -aYO -aTI -ovS +toa +pJF +bLF aWR -aYO -aYK -bds +toa +dLO +dUd bfS -biV -blU -bpF -mnq -qNI -dah +qxg +mca +dtk +nzu +itO +siU eSx -bHy -mxu -bOG -bOG -ceY -cjX -cng -oWt -giq -bTF -bTF -bUv -bTF +qXy +ixL +mqZ +mqZ +eMO +npB +xbC +mTv +vIW +lOD +lOD +lZj +lOD vlm -xAF -voe -voe +kvI +csX +csX vlm vlm -ixQ -vtp -vYD -vtp -ykU -ykU -vYD -vtp -sip -vtp -nFN +nes +keV +hqV +keV +cAT +cAT +hqV +keV +qtN +keV +epA che aac aac @@ -65769,14 +58146,14 @@ aac aac aac rKG -aXZ -yah -cjq +wVu +drD +kds cpV -aaz -csG +lkR +rJH aar -cjq +kds aan cdo cfH @@ -65789,15 +58166,15 @@ ced ced akR cdA -biC -mce -meu -wol -wol -wol -tUW -bJg -cci +six +iCg +pjN +iGz +iGz +iGz +vEN +jfm +pSv cdA cdA cdA @@ -65812,72 +58189,72 @@ aHh djW djW ijo -arw -asA -gAm -cdZ -fSF +hfr +qMw +xWU +vxT +uNd aHv -aGx +ulh oKo oKo oKo oKo -ceI -cdZ +xmU +vxT cik -siW -aOu -blN -aTU -blN -aeX +tzh +diV +oJi +xsc +oJi +uNB aRf -bll -bsK -aVc +wqH +bEJ +dXt aWR -bll +wqH oSV -bdt +hGj cik -biW -blV +otw +vet cik cik cik bzh eSx -bHA -bKR -bKR -cvf -ceG -ckx -cnj -cOR -bGs -bGs -bGs -ppC -bGs -vnI -kbS -vCN -vCN -mfv -cyH -mqs -maP -mqs -mqs -mqs -mqs -mqs -mpm -quT -vtz -vtz +faV +clO +clO +qZL +jXT +rnv +bBC +pgc +pmy +pmy +pmy +xmc +pmy +vhK +gLm +oHW +oHW +vKn +ooE +qHs +lfz +qHs +qHs +qHs +qHs +qHs +wsd +cyr +pZB +pZB che aac aac @@ -65965,12 +58342,12 @@ aac aac rKG cpV -cjq -aZn -cjq -cjq -cjq -cjq +kds +tGW +kds +kds +kds +kds aar aam bgn @@ -65984,15 +58361,15 @@ ced ced akR cdA -bdm -mce -meu -bfn -bFl -bhA -bHT -bJg -cci +rvL +iCg +pjN +vWU +mUO +rDG +urE +jfm +pSv cdA awU ajN @@ -66006,73 +58383,73 @@ awJ aAR aHh aHh -cea -pRQ -wUs -atJ -cdZ -awa +dDl +mli +qDi +tcA +vxT +gIt aHv -aGx +ulh oKo -aBZ -aDe +lqP +nyE oKo -ceI +xmU aGC cik -tCI -tCI -tCI +jiE +jiE +jiE aNh -blN -aPN +oJi +pdC aRg -bll -aTK -aVa +wqH +qLy +xoJ aWR -bll -bbm -frL -bfU -biX -frL -bpH -bsG +wqH +jby +wbz +htU +igZ +wbz +jFZ +lWo cik bzh eSx -bHB -hVT -nKk -bVF -ceG -rvQ -qxt -cnk -cnk -jAE -bBV -pOW -jAE -voe -vyl -vyl -vyl -tZV +wCY +gQz +uGd +cSY +jXT +nEa +wpx +nLJ +nLJ +lks +xZL +ulR +lks +csX +naU +naU +naU +oRd vlm -hvj -bGd -xlP -xlP -eLQ -xlP -xlP -bGd -rLg -vtz -vtz +aUQ +fLT +qnk +qnk +tsT +qnk +qnk +fLT +ukR +pZB +pZB che aac aac @@ -66159,12 +58536,12 @@ aac aac aac rKG -aXZ -aQB -aKw +wVu +uZO +elD aam -aQB -cjq +uZO +kds aas aam aam @@ -66179,15 +58556,15 @@ ced ced akR cdA -cci -mce -adE -dUP -wol -wol -afi -bJg -bKp +pSv +iCg +lpR +wZk +iGz +iGz +reZ +jfm +uMM cdA awX axm @@ -66201,40 +58578,40 @@ aAR aCQ aHh aHh -cea -bWK -ceI -cdZ -cdZ -awc +dDl +mBu +xmU +vxT +vxT +hdP aHv -bXq +kzw oKo -aCa -bXq +neW +kzw aUS -aFl +jKM cfA -bfU -blS -bbk -aLZ -bfV -blN -aPO +htU +vBB +qjx +mcM +xrR +oJi +umt aRf -bll -bsK -ovS +wqH +bEJ +bLF aWR -bll +wqH oSV -aLS -bfV -blN -blX -bpI -bOC +vky +xrR +oJi +seR +sPM +gsi cik bzh vlm @@ -66245,17 +58622,17 @@ eSx vlm bCz bCz -cRB +vrn bCz bCz -bzl -pro +iHb +wHY vlm vlm eSx eSx eSx -mlq +mje vlm vlm vlm @@ -66266,8 +58643,8 @@ vlm vlm vlm vlm -mGA -riS +kpS +neg vlm vlm vlm @@ -66355,13 +58732,13 @@ aac aac rKG cpV -aQB -aap +uZO +xSI abv -cjq -cjq +kds +kds adK -cjq +kds aam cdo seb @@ -66371,22 +58748,22 @@ cdo aam aam ced -hHm +dqx dWm cdA -bzM -mce -adF -eIR -bFs -eIR -afj -bJg -cci -bOV -cci -cci -bOV +ptC +iCg +gil +cgv +ozk +cgv +iFN +jfm +pSv +dnq +pSv +pSv +dnq ayw ayw ayw @@ -66399,72 +58776,72 @@ gLF ijo ijo jEB -bYk +dEP ijo ijo aHv -ayS +tIU oKo oKo -ayS +tIU oKo -ceI +xmU cfx aPm -aJr +eCN oSV -bll -bfV -blN -aPP +wqH +xrR +oJi +dMG aRf -bll -bsK -aVd +wqH +bEJ +qBr aWR -bll +wqH oSV -bdu -bfV -biZ -blX -bpI -bsI +gUr +xrR +dnW +seR +sPM +lAY cik bzh bzh bzh bzh bvK -bWk -pkc -ckA -cnw -cfg +hDu +kaW +koH +gnx +qcm bCz -jEW -bWZ -ckG +cha +rIn +uGS vlm -vsd -aBp -aBp -kRY -gfC +hRE +kbI +kbI +vXW +mZR vlm vlm vlm vlm vlm -xjH -nsB +aKE +iuY vlm -gbU -gOu -vtz -vtz -qeI -fkK +qGD +bJH +pZB +pZB +urP +obo vlm aad aad @@ -66549,15 +58926,15 @@ aac aac aac rKG -aXZ -aKw -cjq +wVu +elD +kds cpV pIa pIa cpV cpV -bjT +tbb aam cdo ahn @@ -66565,23 +58942,23 @@ cdo ced aam aar -cjq +kds hmw -bwR -uZh -cci -upO -ucl -ucl -upO -ucl -ucl -upO -cci -cci -cci -cci -cci +muG +uCr +pSv +fYM +rmN +rmN +fYM +rmN +rmN +fYM +pSv +pSv +pSv +pSv +pSv ayw ayw ayw @@ -66590,76 +58967,76 @@ aCR ijo ijo ijo -aAF -atJ -ary -bXv -gAm -auH +qku +tcA +uzH +bKj +xWU +pYA ijo -cdZ -cdZ -aAz -ccn -cdZ +vxT +vxT +uVu +bNe +vxT ijo -aFl +jKM cfy cik aJs aKK -bll -bfV -aOq -aPQ +wqH +xrR +mVn +dYb aRg -bll -aTL -aVa +wqH +eca +xoJ aWR -aYP -bbo -bdv +dYU +xIK +nVV cik -bja -blX -bpJ -blN -bvk +qvO +seR +bIZ +oJi +dxS aPm cik cgT cik aPm -bWk -cfg -ckB -cfg -cfg +hDu +qcm +woa +qcm +qcm bCz -loP -bzl -ckH +bPI +iHb +lFf vlm -vsZ -ryK -ryK -nST -qON -voe -rUn -wjz -xmR +fSN +siS +siS +hvp +dWa +csX +pVm +bMp +mSB vlm -mCx -nsB +tCw +iuY vlm -gbU -hGd -vtz -vtz -vms -fkK +qGD +rhe +pZB +pZB +lga +obo vlm aad aad @@ -66667,8 +59044,8 @@ aad aad iwH iwH -mrz -mrz +ybH +ybH iwH iwH iwH @@ -66745,14 +59122,14 @@ aac aac rKG rKG -aZn -glG +tGW +koS cpV aag pIa aao pIa -bjT +tbb aam cdo ahn @@ -66760,19 +59137,19 @@ cdo aHz seb wgB -csG -abM -bwR -uZh -bzN -adj -cci -cci -cci -cci -adj -cci -bKp +rJH +ogs +muG +uCr +fQr +gWp +pSv +pSv +pSv +pSv +gWp +pSv +uMM cdA awY axv @@ -66783,77 +59160,77 @@ aAR awJ aAR bVV -anC -bVn -gAm -atJ -atJ -bXv -gAm -bWM +ezD +heX +xWU +tcA +tcA +bKj +xWU +jiT ijo -isj -gAm -gAm -gAm -cdc -cdW -ceI -cfv -cge -bsG +yek +xWU +xWU +xWU +uys +eOA +xmU +ohJ +wdd +lWo oSV -bll -bfV -blN -aPR +wqH +xrR +oJi +foi aRf -bll -bsK -aVe +wqH +bEJ +uPn aWR oSV -bbp -bdv +xAK +nVV bfW -bjb -blY -bpI -blX -blN -bzk -bCw -bHD -bsG +fjv +qLP +sPM +seR +oJi +jYS +oom +hfP +lWo aPm -bWk -cfp -ckC -cnx -cnx +hDu +oHK +nBb +wGj +wGj odJ -jJv -bWZ -ckG +dqa +rIn +uGS vlm -vtz -xlg -xlg -xlg -gfC -voe -mCx -vyl -tCP +pZB +ayV +ayV +ayV +mZR +csX +tCw +naU +imr vlm -mCx -pSc +tCw +ugx vlm -oiF -hGd -vtz -vtz -xnP +ihW +rhe +pZB +pZB +fJs vlm vlm aad @@ -66861,11 +59238,11 @@ aad aad aad iwH -eek +iKL fZe wDF iwH -eDt +tqy iwH iwH aad @@ -66956,14 +59333,14 @@ aHz seb odi baH -csk +ffd dWm cdA cdA cdA cdA -uqB -uqB +qSv +qSv cdA cdA cdA @@ -66977,91 +59354,91 @@ ayw aAR awJ aCQ -cea -cdZ -aoC -gAm -atJ -atJ -bXv -gAm -bWM +dDl +vxT +mmG +xWU +tcA +tcA +bKj +xWU +jiT ijo -ceI -gAm -gAm -gAm -cdd -cdX -ceI -cfv -cgg -cgS +xmU +xWU +xWU +xWU +nFU +sFI +xmU +ohJ +iSn +duO oSV -aMb -bfV -blN -aPR +pzZ +xrR +oJi +foi aRf -bll -bsK -aVf +wqH +bEJ +gYN aWS oSV -bll +wqH bfW bfW cik -cgS -bpK -bsJ -biZ +duO +rmy +xIc +dnW aPm -bCx -bHE -bLa +wiN +mef +uye aPm bCz cft -ckE +geg bCz odJ odJ -jLY -bzm -pvY +qWX +mDh +ydO vlm -vtz -aBp -aBp -aBp -gfC -voe -diD -vyl -nIS -voe -mCx -nsB +pZB +kbI +kbI +kbI +mZR +csX +gtB +naU +ikm +csX +tCw +iuY vlm -gbU -hGd -vtz -vtz -wAj +qGD +rhe +pZB +pZB +mlJ vlm mWF -gFT +ngq aad aad aad iwH -mrz +ybH wXb hwI atI -pYI -rMy +bOB +ufz iwH aad aad @@ -67156,13 +59533,13 @@ akR akR akR cdA -adG -dEa -dEa -aeH -pDW -afN -agg +juj +ekT +ekT +jjf +wTE +eyj +wtf cdA cdA cdA @@ -67172,81 +59549,81 @@ ayw awJ awJ fwV -cea -cdZ -uWa -gAm -gAm -arz -bXw -gAm -auI +dDl +vxT +qCx +xWU +xWU +qmG +axy +xWU +rkM ijo -ceI -cak -cdZ -cdZ -cdc -cdW -ceI -cfv -cgg -aJu +xmU +sbD +vxT +vxT +uys +eOA +xmU +ohJ +iSn +jCp oSV -bll +wqH cik -aOt -aPR +raX +foi biH -bll -bsK -aVg +wqH +bEJ +kIT bWH oSV -bll +wqH bdE bfX cik -bsI -bpL -bsK -bvl +lAY +pts +bEJ +lLB aPm -bCy -bHF +tKW +vZS bLb aPm -bWw -cfJ +qqE +lzR bsW -cnK -cSr -csQ -jWk -bWZ -ckG -rpA -vtz -ryK -ryK -uFT -gfC +fgs +ttG +xmt +hxr +rIn +uGS +lNc +pZB +siS +siS +jCe +mZR vlm -uLd -dwO -bJV +ecf +bMM +hoT vlm -xjH -nsB +aKE +iuY vlm -gbU -hGd -vtz -vtz -eFO +qGD +rhe +pZB +pZB +qSO vlm bjr -tiU +dpi aad aad aad @@ -67255,7 +59632,7 @@ iwH iwH iwH nxh -jCU +oAt iwH iwH aad @@ -67338,7 +59715,7 @@ aac aac pIa pIa -aaV +ryw cdo aam adC @@ -67351,13 +59728,13 @@ aac aac akR cdA -adG -dEa -dEa -dEa -ccg -dEa -dEa +juj +ekT +ekT +ekT +fVL +ekT +ekT cdA dWm djW @@ -67368,64 +59745,64 @@ awJ aAR aCQ ijo -cak -bVo -aAF -aqy -arA -bXv -gAm -auJ +sbD +gjl +qku +nwy +cId +bKj +xWU +pnB ijo -cac +pWe ijo -cco -cco -cco +kXe +kXe +kXe ijo -ceK -cfv -cgg -aJv +tfZ +ohJ +iSn +kbW aKL -bbk -qNi -frL -aPS +qjx +sBj +wbz +viD bbs -blS -aTM -aVj +vBB +mjP +glu aWU -aYR -bll -bfV -xaR +pqB +wqH +xrR +beN cik cik cik -ckE +geg cft bzh bzh bzh bzh bvK -bWx +pUl cgc ckF bvB cUi -csQ -csQ -bzl -ckH +xmt +xmt +iHb +lFf ueU -hfC -xlg -xlg -wsi -gfC +rJg +ayV +ayV +rvt +mZR eSx eSx eSx @@ -67434,24 +59811,24 @@ eSx eSx eSx eSx -wdI -npW -vtz -vtz -vBV +ylg +fsb +pZB +pZB +sKw vlm bjr -tiU +dpi rEr wZZ htD aad aad iwH -ghr +nau wXb -pYI -rMy +bOB +ufz iwH aad aad @@ -67545,14 +59922,14 @@ aac aac iJh age -jXV -dEa -ccg -ccg -dEa -dEa -afO -ccg +tGQ +ekT +fVL +fVL +ekT +ekT +gJv +fVL cdA dWm ayb @@ -67561,45 +59938,45 @@ ayw ayw awJ aAR -bTk +eTU ijo ijo -aoE +jLJ ijo ijo ijo jEB -bYk +dEP ijo ijo -caf +azn ijo aAB aCb cfx cfx -ceI -cfv -cge -bsG +xmU +ohJ +wdd +lWo biH -aMc -bfP -blN -bll +uSI +gvb +oJi +wqH biH -bll -fVR -wdf +wqH +fuz +neN aWR -bll -bll -bfV -bll +wqH +wqH +xrR +wqH bjc bjc cik -bsO +eJm bCz bzh bzh @@ -67607,14 +59984,14 @@ bzh bzh bCz bCz -cgd -ckG -bWZ -cUT -gpO -csQ -bWZ -ckG +nRQ +uGS +rIn +gwu +wmz +xmt +rIn +uGS ueU ueU eSx @@ -67622,21 +59999,21 @@ flK eSx mwt hVm -dYK -umE +wyF +cOE iEU -olH -trr +kOP +fVD iEU iEU iEU vlm -mGA -riS +kpS +neg vlm vlm bjr -tiU +dpi rEr wZZ wZZ @@ -67740,14 +60117,14 @@ aac afZ iJh agR -jXV -adH -aee -bHY -bHY -bHY -afP -agh +tGQ +xVi +yhF +mFd +mFd +mFd +bAl +gBI cdA dWm tuu @@ -67756,88 +60133,88 @@ ufG ayw aAR aAR -bTl +nDG wto -cdZ -cdZ -isj -cdZ -cdZ -ceI -cdZ -cdZ -awd -cad +vxT +vxT +yek +vxT +vxT +xmU +vxT +vxT +xqk +tCd ayW -cdY -asE -cdY -cdY -ceL +hwq +wbq +hwq +hwq +dMT cfx cik cgT cik -aMd +kEa cik -aOt -aPW +raX +htY biH -bll -blN -aVf +wqH +oJi +gYN aWS -bll -bll +wqH +wqH cik -bll -bje +wqH +wgx bmc cik -ckE +geg cft bzh bCz bCz bCz -bPe -bWB +pFO +kZr bvz -ckH +lFf bvz -mYF -bzl -bzl -bzl -ckH -rzx +vTR +iHb +iHb +iHb +lFf +sum bvw bvw bvz gjk nPJ hVm -qns -hIt -keg +ipq +raA +nxt dXQ dXQ dXQ dXQ -kqt +ghG ace bjr bjr ace bjr bjr -tiU +dpi rEr wZZ bmv wZZ kKI -lxp +xbA nDj hwI hwI @@ -67951,68 +60328,68 @@ ufG ayw awJ aAR -bTl +nDG wto -cdZ -cdZ -cah -cdY -cdY -asE -atL -auK -awe -ceI +vxT +vxT +jbB +hwq +hwq +wbq +nHz +oda +ogc +xmU wto -cdZ -cdZ -cdZ -cdZ -ceI +vxT +vxT +vxT +vxT +xmU cfx cik -uhd -aKN -bsK +uds +wfX +bEJ cik -aOu -aPW +diV +htY biH -bll -blN -aVg +wqH +oJi +kIT bWH -bll -bll +wqH +wqH bdI -bfZ -bjf +uPS +mir bjc cik bsW bvw bvw -bCA -bHH -bLi +iUN +pyt +fFO bvz -bzl +iHb bvz -cla +dou bvz -csQ -bzl -bzl -bzl -pwz -bCH +xmt +iHb +iHb +iHb +vdK +yjF bvB eLC bvB bvB gaq hVm -mYX +cup iEU iEU dXQ @@ -68026,7 +60403,7 @@ bjr bjr bjr bjr -tiU +dpi rEr bmv xFc @@ -68146,7 +60523,7 @@ ufG ufG awJ awJ -bTk +eTU ijo cfx cfx @@ -68159,59 +60536,59 @@ auL cfx axz ijo -cco -cco -cco +kXe +kXe +kXe ijo -aFm +dfy cfy cik cgT cik -aMf +jad cik -aOv -bll -afr -aSk -aRk -dpd -aWV -aYT -apJ +qVE +wqH +eAq +xCP +xnD +mUg +mDT +mnF +raD cik cik cik -bmf +hlE cik bsW bvz -bzl -bzl -bzl -bzl -bzl -bzp -bzl -cla -bzl -cYx -bzl -kdK -bzl -bzl -rzG -bHP -ckH -bzl -lhR -bPr +iHb +iHb +iHb +iHb +iHb +kAs +iHb +dou +iHb +xKh +iHb +xKE +iHb +iHb +vfW +kmT +lFf +iHb +uXe +vwd hVm iEU sAv -bpY -qlq -xCN +hKt +jTH +nkF iEU iEU iEU @@ -68221,11 +60598,11 @@ bjr bjr bjr bjr -tiU +dpi rEr bmv wZZ -cIM +sUE aYQ aYQ vPY @@ -68343,70 +60720,70 @@ awJ aHh aAR bVV -gAm -aoF +xWU +eYi ijo ijo ijo ijo -bYk +dEP ijo ijo -caf +azn ijo -rye -aCc -dWu -cea -ceI +sVa +xUx +sTu +dDl +xmU cfx cik -qqB -aKN -bsK +itr +wfX +bEJ cik -aOw -blN -bdq -aSl -agw +swl +oJi +tjH +ppL +jCz cik -bll -bll -bll +wqH +wqH +wqH bdJ -bga -bjh -bCH -bpx -bsY +pcu +qWi +yjF +vPv +xdg bvB -bzm -bCH -bCH -bLk -btC -bLk -btC -cle -btC -ddI -gqF -kes -mKA -pAM -rDl -csQ -bCN -jBO +mDh +yjF +yjF +dtU +snw +dtU +snw +scF +snw +kWv +mKe +mHl +mAt +lru +wSy +xmt +qit +uaT bCz bCz snV srk iEU -jwx -qlq -brd +pcP +jTH +tmj iEU vQo wij @@ -68416,16 +60793,16 @@ bjr bjr utV bjr -tiU +dpi rEr bmv wZZ iwH -tmB -fzn +hLu +bYT iwH iwH -kPM +sey iwH iwH aad @@ -68538,64 +60915,64 @@ ayw awJ awJ jdC -gAm -atJ +xWU +tcA ijo -aqz -arC -aqz -bZD +wuD +hzW +wuD +sbp ijo -awf -ceI +lsZ +xmU aGs -aAD -aCd -aDf -cea -ceI +qGa +nFS +gfn +dDl +xmU cfz cik cgT cik -aMf +jad cik cik -tCI -tCI -tCI -tCI +jiE +jiE +jiE +jiE cik -aWW -blN -bll +uYy +oJi +wqH bdK -bga -csc -bCK -bpN -csQ +pcu +toq +uwY +oDC +xmt bvz -bzl -bCK -bHN -bzl -bzl -bzl -bzl -bzl -bzl -bHP -bzl -bzl -bzl -bzl -bHN -bzl -ckH -cSP -bzl -wsm +iHb +uwY +mRM +iHb +iHb +iHb +iHb +iHb +iHb +kmT +iHb +iHb +iHb +iHb +mRM +iHb +lFf +hQR +iHb +mIY snV srk iEU @@ -68611,7 +60988,7 @@ bjr bjr bjr bjr -lwI +uyR rEr bmv wZZ @@ -68619,8 +60996,8 @@ iwH iwH iwH iwH -xdI -qer +cZP +oOn iwH aad aad @@ -68733,64 +61110,64 @@ ayw aAR awJ jdC -gAm -atJ +xWU +tcA ijo -bZD -bZD -bZD -bZD +sbp +sbp +sbp +sbp ijo -bVU -cah -ayY -cdY -aCe -aDg +jtK +jbB +sZu +hwq +peH +nHE ijo -aFm +dfy cfA -cdY -blS -frL -aMg -aNs -aOx -aNs -aNs -aNs -aTQ -aNs -aNs -aNs +hwq +vBB +wbz +wfn +pkm +oaT +pkm +pkm +pkm +iDC +pkm +pkm +pkm bbs bdY -bgb -bji -lUg -bpN -csQ +iIn +sNZ +ljX +oDC +xmt bvz -bzl -bCK -bzl +iHb +uwY +iHb orL orL -bWZ +rIn orL orL orL -bWZ +rIn orL orL orL orL -bWZ +rIn bvz bsW bvz bvz -gvG +cAa snV srk srk @@ -68805,8 +61182,8 @@ bjr bjr bjr bjr -tnM -mNG +kTF +deA gTa bmv wZZ @@ -68814,8 +61191,8 @@ aad aad aad iwH -wAw -pnP +gDq +omJ iwH aad aad @@ -68928,67 +61305,67 @@ ayw ayw awJ ijo -anI -aoH +pnj +gGC ijo -aqB -arE -asG -asG +lHI +nFK +eKE +eKE ijo -trR -axA -gAm -gAm -gAm -aAD -cea -aFn +xMa +dus +xWU +xWU +xWU +qGa +dDl +feX cfx -cdZ -bsC -blN -aMh -aNt -aNt -aNt -aNt -aNt -aTT -aNt -aNt -aNt +vxT +kGP +oJi +xlh +mKG +mKG +mKG +mKG +mKG +gah +mKG +mKG +mKG biH -beg -crG -csc -csQ -bpN -csQ +wtD +ffG +toq +xmt +oDC +xmt cgc -bzl -bCK -bzl +iHb +uwY +iHb orL -bPq -bzl -bzl -bzl -cnQ -bzl -bzl -bzl -mLW -pDb -bzl -bzl -ckH -bzl +uRE +iHb +iHb +iHb +ksn +iHb +iHb +iHb +qIS +fJe +iHb +iHb +lFf +iHb bvz -gUj +lzq snV srk -pMU +wij wZZ htD wZZ @@ -69000,8 +61377,8 @@ vQo vQo bjr bjr -tnM -efS +kTF +tvX bmv bmv wZZ @@ -69131,58 +61508,58 @@ ijo ijo ijo ijo -awg -cdZ -gAm -aAF -aCf -dWu -cea -ceI +qKm +vxT +xWU +qku +sFl +sTu +dDl +xmU cfx -cdZ +vxT cik cik cik -aTU -blN -aQb -aRm -aSm -aTU -blN -blN -blN +xsc +oJi +syn +lMe +mVc +xsc +oJi +oJi +oJi biH -beh -bgc -csc -csQ -bpO -csQ +nGB +nUj +toq +xmt +vVv +xmt bvz -bzl -bCN -bzl -bLo -csE +iHb +qit +iHb +urw +vBc baX bbT bcp -bWZ -bWZ -grd +rIn +rIn +saJ bee bez bez bbT bgO bht -bzl -cfg -ppA +iHb +qcm +pIh snV -tnM +kTF srk wZZ wZZ @@ -69195,13 +61572,13 @@ vQo srk wQx bjr -tnM -efS +kTF +tvX bmv bmv wZZ -iZr -hJC +iEO +oWo pAc aad aad @@ -69321,51 +61698,51 @@ aES awJ aAR ijo -aqC -fUp +cmU +gBJ wto cfx auM -bZD -cak -aza -kKJ -aCg -aAD +sbp +sbD +ofx +kmj +fqk +qGa ijo -aFo +pSV aGD -aGB +xpL ckK -aKQ -aMi -cjZ -cjZ +ukA +rfb +ltD +ltD ckK ckK ckK ckK -cjZ -cjZ +ltD +ltD ckK bbu bem -bgd -csQ +flb +xmt bCz bCz bCz bvQ -bzn -bCK -bzl +dvv +uwY +iHb orL -csF +gQA baY -cgN +fkU cgO cnS -ddU +rTM grs cnS mPj @@ -69373,11 +61750,11 @@ pDz rFn vDr bhu -bzl -bLo +iHb +urw bCz -oqA -oMa +ftu +gow wZZ bmv bmv @@ -69390,13 +61767,13 @@ vQo vQo bjr bjr -tnM -jDO +kTF +xKA jOV wZZ wZZ -rpX -tnM +sDv +kTF aad aad aad @@ -69404,10 +61781,10 @@ aad aad aad sHP -sPD +bWI ltp ltp -wxU +eXV sHP aad aad @@ -69516,63 +61893,63 @@ ayw aAR awJ bVV -aqD -arG -cea +rLV +tax +dDl cfx cfx -bZD +sbp ijo -azb -azb -azb -aDi +vGG +vGG +vGG +gHY ijo -aFp +jrI aGD -aHJ +oWV ckK -aKR -aMj -grP -cka -ckI -ckI -ckI -aTW -aVx -aXa +ycz +wVl +yba +pzC +wOv +wOv +wOv +pcE +dMF +mJX mtD mtD mtD -bge -csQ -bjl -bpP +pEJ +xmt +hXF +kTh bCz bwc -bzo -bCK -bHP +fnf +uwY +kmT orL -csF +gQA baZ cgO clg -cnV -dks -guF -kgC +wET +slw +liS +wBs mQe cnS cnS vEw bhv -bzl +iHb qJC -cfg -mcY -tlo +qcm +uAe +euT bmv jCE jCE @@ -69581,17 +61958,17 @@ bmv bmv wZZ bZT -rkI +ppn bjr bjr bjr bjr -rhJ +xHY vQo wij wZZ -xAS -tiU +vnY +dpi hwD vPQ aad @@ -69599,10 +61976,10 @@ aad aad aad sHP -jPx +hQL lKv lJG -lij +nLS sHP sHP sHP @@ -69716,58 +62093,58 @@ ijo ijo bYS bYS -bZD -axC -bZD -cbv -bZD -cbv -bZD -aFq +sbp +mZc +sbp +nKp +sbp +nKp +sbp +eZo cfA -aHK -aJA -aKS -aMk -cjj -ckb +fWB +xBL +dtK +dwB +hAF +uyL ckK ckK ckK cnm -coh -aXc -aYW -bbv +pEv +noY +sZo +sBP mtD -crG -csQ -bLo -bqe +ffG +xmt +urw +rIl bvK -bzx -bzl -bCK -bzl +kiM +iHb +uwY +iHb orL -csF +gQA fch cgP -clo -cog +oCv +yjl dqH gIo kgQ -mQg -pDQ -rLn +mGk +jxP +alh vGx bhw -bzl -aOp -dGv -shr -oJD +iHb +yeI +ouV +uyb +xep qDg bmv bmv @@ -69776,17 +62153,17 @@ bmv bmv fli bZT -tQS -cxS -cxS -uVv -qGK -aHi +tWS +kQR +kQR +sBR +mgW +qMv vQo wZZ pri -rpX -tiU +sDv +dpi hwD vPQ aad @@ -69794,13 +62171,13 @@ aad aad aad sHP -pNY +jtO tjo rqL -oWO +tVc sHP -iuh -iCC +pmf +jNd sHP aad aad @@ -69911,58 +62288,58 @@ bWN ijo atO auO -awh -axD -cbv -bWK -cbv -bZD -aEf -ceI +xmM +qUa +nKp +mBu +nKp +sbp +fzB +xmU cfB -cdZ +vxT ckK -cji -aMl -cjk -cjk -aQc -clG -aSn +mSx +ceE +wKA +wKA +mwX +oxr +jPp aRv -coi -aXd -aZb -bbw +kIp +kkk +tLU +bBS mtD -crG -csQ -bLo -bLo -bmo +ffG +xmt +urw +urw +wIu bvz -bzl -bCK -bHQ +iHb +uwY +rer orL -csF +gQA gaA cgP -oGA +cdq coA coA gMF coA -mSK -pFi -rLZ +cDY +rgw +hHq vGx bhB -bzl +iHb iRY -cfg -rgz -tnM +qcm +eFn +kTF fvt bmv bmv @@ -69980,8 +62357,8 @@ vQo vQo wZZ wZZ -rpX -tiU +sDv +dpi hwD vPQ lPF @@ -69989,13 +62366,13 @@ aad aad aad sHP -dii +hRG oZD lKv -tlJ +wPG idW -vTN -llC +ipw +rzo sHP aad aad @@ -70099,65 +62476,65 @@ ayw ayw ayw ayw -aoI -apC -sgS +kuT +dAR +ggK bWN ijo ijo ijo ijo ijo -azd +eYa ijo -aCh -aCh +len +len ijo -aFr -aGE -aHL +cIm +pLp +jRW aJB -aKT -aMm -aNv -ckd +ybO +bSL +hfQ +oNN ckK -aRn -gdY +hZN +xZt ckK -aVy -aXe -aZh -bbx +vdV +eUS +gKV +ewv ckK -crG -csQ -bjl -bpX +ffG +xmt +hXF +dOz bCz bvz -bzp -bCK -bHW +kAs +uwY +qgQ orL -csF +gQA bba cgQ cls -iBV -dsx -gPG -gPG +nGR +kRj +tXF +tXF mUD coD coD vJx bhv -bzl -cfg -ana -cuj -oMa +iHb +qcm +sqp +rAf +gow bmv cBv wZZ @@ -70175,8 +62552,8 @@ wZZ wZZ wij wZZ -rpX -tiU +sDv +dpi hwD vPQ vPQ @@ -70186,11 +62563,11 @@ aad sHP sHP iqe -psQ +wHy sHP sHP -dJV -dJV +iIv +iIv sHP sHP aad @@ -70294,53 +62671,53 @@ ayw ayw ayw ayw -aoI -apD -asL +kuT +iEg +iuo bWN -asJ -atP -auP -awi -axE -asL -aAJ -asL -asL -aEg +niX +uxI +ibc +mqU +nXf +iuo +xdk +iuo +iuo +pCB aFs aGF cdh ckK -aKU -aMn -cke -cke +uCU +biJ +gBM +gBM ckL mtD mtD mtD ckK cpd -aZp +keN bby ckK -crG -csQ +ffG +xmt bCz bCz bCz bwd -bzp -bCK -bHW +kAs +uwY +qgQ orL -csF +gQA gkt -cgR +koB cgQ coD -ddU +rTM coD coD mUU @@ -70348,11 +62725,11 @@ pGt rMv vOf mHA -bzl -tKC -oBv +iHb +lEn +uJh srk -tnM +kTF wZZ wZZ wZZ @@ -70367,11 +62744,11 @@ wZZ wZZ wZZ wZZ -iZr -oPN -oPN +iEO +npc +npc bjr -tnM +kTF uXg uXg vPQ @@ -70381,12 +62758,12 @@ vPQ uXg sHP fwc -hel -kDb -dnR +pga +oEI +nps lJG -hel -eeG +pga +cVW sHP aad aad @@ -70489,11 +62866,11 @@ awJ ayw ayw ayw -bVr -ccp -ccp -bVr -asK +iCH +dte +dte +iCH +xiB cdh auQ cdh @@ -70514,38 +62891,38 @@ ckf aQd clI mtD -cnp -cnp -cpe -aZq -bbz +mit +mit +gqV +wfh +nlk ckK -bgf -csQ -bmo -oeQ +xgW +xmt +wIu +jHJ bCz bwf -bzp -bCK -bzl -bLo -csF +kAs +uwY +iHb +urw +gQA bbe bef bcq -bWZ -bWZ -gTM +rIn +rIn +nft bef beM beM bgj bef bhE -bzl -cfg -ppA +iHb +qcm +pjQ snV srk wZZ @@ -70561,12 +62938,12 @@ bmv wZZ wij wZZ -iZr +iEO bjr bjr -cxS -cxS -qQu +kQR +kQR +dFM srk uXg vPQ @@ -70577,11 +62954,11 @@ vPQ sHP fMv ltp -hel +pga gHQ fLl -hel -kXi +pga +dtY sHP aad aad @@ -70684,81 +63061,81 @@ awJ ayw aET ayw -bVs -ccp -ccp -bVs -asL +eCQ +dte +dte +eCQ +iuo atQ -auR -ccp -ccp -slL -ccp -ccp -aDk -slL -aFu -cjl -ccp -ccp -awm -ccp -aNw -ccp -auR +gGk +dte +dte +dJY +dte +dte +jfD +dJY +jYj +xCf +dte +dte +xNT +dte +erf +dte +gGk cdh -cmt -cnr -cok -aXf -aZr -aVB +sis +rSQ +xvk +txl +pvD +osU ckK -crG -csQ +ffG +xmt bCz -bqb +yjw bCz bwh -bzp -bCK -bIb +kAs +uwY +drT orL -bzl -bzl -chw -chw -chw -bzl -bzl -bzl -nai -bzl -bzl -bzl -ckH -cSP +iHb +iHb +dGr +dGr +dGr +iHb +iHb +iHb +iWP +iHb +iHb +iHb +lFf +hQR bvz -nai +iWP snV srk wij wZZ -uyQ -nyB -nyB -nyB -rhJ +fwR +vuo +vuo +vuo +xHY wZZ wZZ bmv wZZ wZZ wZZ -rpX +sDv bjr -kdm +rEI kZL eVc uXg @@ -70772,10 +63149,10 @@ hMs sHP sHP sHP -xRr +jOZ nnq -lax -iIF +dPA +deW sHP sHP aad @@ -70874,85 +63251,85 @@ aac aac anG anG -bMF -bMF -bMF +vhf +vhf +vhf anG anJ aDE -apD -asL +iEg +iuo aDE -asM +fOG cdh -ckM -awj -axF -azf -ccp -ccq -aDl -aEh -ckM -aGH -cgm -aJD -ccp -aMo -aNx -aOy -ckM +nak +oEo +uBL +ptZ +dte +mhC +jqO +vXx +nak +sVk +qEn +vXg +dte +fMs +xvP +nAY +nak clK -aSp -cnr -aVz -aXg -aZt -bbB -beq -bgg -csQ +hXh +rSQ +xUN +daI +kYB +aoZ +rWy +hmE +xmt bCz -bqd +fNi bCz bwi -bzp -bCK -bzl +kAs +uwY +iHb orL orL -bWZ +rIn orL orL orL -bWZ +rIn orL orL orL orL -bWZ +rIn bvz bsW bvz -cfg -wsm +qcm +mIY snV srk wZZ wZZ -rkI +ppn bjr bjr bjr -lwI +uyR wij wZZ bmv bmv wZZ wZZ -rpX -tnM +sDv +kTF reb fHW vPQ @@ -70966,11 +63343,11 @@ vPQ wXm vPQ vPQ -knJ +joE xLB lKv -ihy -ihy +nUb +nUb sHP aad aad @@ -71068,77 +63445,77 @@ aac aac aac anG -ajV -akC -alk -alT +cKM +puO +dxu +rah anG djW aDE bWN bWN bWN -asN +uMw ckf -ckM -awk -awk -awk -ccp -ccr -ccr -aEi -ckM -aGI -cgn -aJE -ccp -awk -ccr -aOA -ckM +nak +lhQ +lhQ +lhQ +dte +cmM +cmM +xNb +nak +jRU +hHE +vrA +dte +lhQ +cmM +ojn +nak cdh -aSq -cnr -aVA -aXh -cnr -bbC -ber -crF -bjn +npT +rSQ +tfg +hnZ +rSQ +nfb +tyB +ucI +ssN bCz bCz bCz bwj -bzp -bCK -bIp -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bzl -bIp -bzl -ckH -bzl -nai -bPr +kAs +uwY +bEu +iHb +iHb +iHb +iHb +iHb +iHb +iHb +iHb +iHb +iHb +iHb +bEu +iHb +lFf +iHb +iWP +vwd snV srk vQo wZZ -rkI +ppn bjr bjr -tnM +kTF wZZ wZZ wZZ @@ -71146,8 +63523,8 @@ bmv bmv xFc bmv -rpX -tnM +sDv +kTF pzb wXm vPQ @@ -71263,67 +63640,67 @@ aac aac anG anG -ajX -bQU -bQU -bQU +uob +tbf +tbf +tbf anG anG anG bPf bPf bPf -asO +dRw cdh -cHm -cgW -cgW -bZB -cbz -cgo -bZB -bZB -aFw -aGJ -cgo -cgW -cbz -bZB -bZB -bZB -aQe +mZo +vlY +vlY +lcp +oLS +cux +lcp +lcp +fCJ +jvS +cux +vlY +oLS +lcp +lcp +lcp +kKG cdh ckK -aTY -aVB -aXi -aZu -bbD -ber -crG -csQ -csQ -mem -csQ +wsD +osU +uGg +vFs +xZb +tyB +ffG +xmt +xmt +kKi +xmt bwk -bzp -bCY -bsY -bLA -btC -btC -btC -clv -btC -btC -clv -btC -btC -btC -rTC -btC -lUg -tVN +kAs +xVs +xdg +obv +snw +snw +snw +qAs +snw +snw +qAs +snw +snw +snw +ter +snw +ljX +pYr bCz bCz snV @@ -71333,7 +63710,7 @@ vQo srk bjr fow -tnM +kTF wZZ wZZ wZZ @@ -71341,8 +63718,8 @@ wZZ bmv bmv uwJ -rpX -tnM +sDv +kTF hGm bIu vPQ @@ -71458,75 +63835,75 @@ aac aac anG bPf -ajY -bQU -all -bTp +fpF +tbf +xKI +mFI bPf -anK -aoJ -apE +dkR +qBa +wrl bPf bPf -lnd +knM cdh -auU -ccr -ccr -caL -ccp -ccr -cfC -ccr -ckM -cfC -aEj -ccr -ccp -ccr -cfC -ccr -ckM +hmZ +cmM +cmM +dcE +dte +cmM +wuW +cmM +nak +wuW +jeM +cmM +dte +cmM +wuW +cmM +nak cdh ckK ckK -cjZ -cjZ -cjZ -cjZ +ltD +ltD +ltD +ltD bes -crF -btC -btC -bpM -btC -btC -bzq -bDo -bIq -bIq -bIq -bYA -tiE +ucI +snw +snw +lQC +snw +snw +qqa +vyz +bXo +bXo +bXo +ign +vLk bCz -cwn -cwn +xgI +xgI bCz -krm -ndC -bzm -sjp -bzl -bzl -bzl -ekZ +qgR +cGK +mDh +bYy +iHb +iHb +iHb +vGD vhv vOs bCz bCz bCz bCz -cRB +vrn bCz vQo vQo @@ -71536,9 +63913,9 @@ wZZ wZZ wZZ wZZ -rpX +sDv bjr -tNQ +hYV ajf uXY uXY @@ -71630,7 +64007,7 @@ aYp aYo aYp aYp -bmP +xaj ahg aeL agR @@ -71653,75 +64030,75 @@ aac aac anG bPf -bkZ -bkZ -bkZ -alU -bkZ -bkZ -bkZ -bkZ -aqG +bMA +bMA +bMA +lsl +bMA +bMA +bMA +bMA +nIr bPf -asL +iuo cdh -auV -bZE -ccr -ccr -aAK -ccr -kXR -aEj -ckM -ccr -ccr -ccr -aKW -ccr -ccr -awk -ckM +tVl +mLm +cmM +cmM +oPH +cmM +tkN +jeM +nak +cmM +cmM +cmM +qxG +cmM +cmM +lhQ +nak cdh cdh -crd +ieE col col col col -crd -crG -csc -csQ -sen -csQ -ctp -bzr -ctp -ctp -bLB -bPt -bPt -chy +ieE +ffG +toq +xmt +erP +xmt +xwg +pfD +xwg +xwg +gKj +eqf +eqf +dpj bCz -cpi -dvR -kCf +mFn +juJ +mFT kzk bsW -pGC -pGC -pGC -pGC +gMR +gMR +gMR +gMR bvz bvz bvz -bml -cfg -cfg -cfg -cfg -cfg +mbE +qcm +qcm +qcm +qcm +qcm bCz vQo vQo @@ -71731,12 +64108,12 @@ mMR wZZ wZZ wZZ -taW +pQv bjr bjr -nyB -nyB -rhJ +vuo +vuo +xHY hwD vPQ vPQ @@ -71847,62 +64224,62 @@ aac aac aac anG -bPX -bQS -bQS -bQS -bTr -amL -anL -aoK -anL -aqH -arH -asQ +hZr +tRO +tRO +tRO +fnP +noB +hkH +vYz +hkH +srO +nYe +qgZ atR -auW -awl -axG -azg -awm -aCj -aDn -aEk -ckM -aGK -aHN -aJF -ccp -aMp -aNy -doA -ckM +kfQ +oEa +wGh +cdS +xNT +olv +jUi +lmc +nak +tCo +vFu +sAt +dte +jIW +glW +iST +nak aRo cdh -crf +hlD pNL pNL pNL pNL -crf +hlD bsW bvz -csQ +xmt vOs -csR -csR -bzs +jsA +jsA +pVK vOs vOs -bLC -bLC -cvC -cvC +nSN +nSN +hbt +hbt bCz -cpY -dvX -kCf -kAn +nNx +eoe +mFT +cFb bsW bvz ski @@ -71912,11 +64289,11 @@ iDq bvz bvz bCz -uzd -vrR -afG -bWk -xRR +trU +gyx +uUh +hDu +gfg bCz vQo vQo @@ -71927,11 +64304,11 @@ wZZ wZZ bmv bmv -taW -uVv -uVv +pQv +sBR +sBR bjr -tnM +kTF uXg uXg uXg @@ -72042,60 +64419,60 @@ aac aac aac anG -ajx -bkZ -bkZ -bkZ -bJz -bkZ -bkZ -alU -bkZ -aqI -aiO -asL +gpC +bMA +bMA +bMA +moW +bMA +bMA +lsl +bMA +pAN +pJw +iuo cdh -auX -awm -ccp -azi -ccp -cjl -aDo -ccp -ckM -awm -awm -awm -ccp -awm -cjl -awm -aQf +bmd +xNT +dte +xuO +dte +xCf +nJS +dte +nak +xNT +xNT +xNT +dte +xNT +xCf +xNT +cjc aRq cdh -crf +hlD pNL pNL pNL pNL -crf +hlD bsW bvz -csQ +xmt vOs -bLi -bwn -bzt -bDr +fFO +rgg +xxV +txh vOs -cwn -cwn -cwn +xgI +xgI +xgI bCz bCz bCz -dzo +moa bCz bCz bsW @@ -72104,8 +64481,8 @@ vOs vOs vOs vOs -ePf -ePf +gTS +gTS vOs bCz bCz @@ -72125,8 +64502,8 @@ wZZ bmv wZZ wij -rpX -tnM +sDv +kTF uXg uXg uXg @@ -72238,17 +64615,17 @@ aac aac anG bPf -ajZ -akD -alm +sqy +obb +gKp anG -amM -bkZ -alU -apF +bUk +bMA +lsl +phF bPf bPf -asR +ncq cdh cdh cdh @@ -72268,32 +64645,32 @@ aNz azj aQi aAL -aSr -aUb +dXs +faG aVD aVD aVD aVD -aUb +faG nPJ bvz -csQ +xmt vOs -btG -bsp -bDz -liP +lwS +uQp +oCJ +qyF vOs -bAp -bPA -bLJ -bIr +mzf +dlT +qPV +fHS clw cqf dBe -gXX -kCf -bCK +aaN +mFT +uwY bvz vOs vQo @@ -72320,8 +64697,8 @@ wZZ wZZ wZZ wij -rpX -tnM +sDv +kTF uXg uXg ygq @@ -72432,63 +64809,63 @@ aac aac aac anG -ajy -bkZ -bkZ -bkZ -alV -bkZ -bkZ -alU -bkZ -aqJ +pkk +bMA +bMA +bMA +inh +bMA +bMA +lsl +bMA +uAo bPf -asS -ccp -ccp -ccp -ckM +njg +dte +dte +dte +nak cjn -cgu -cgu -cgu -cgu +iDR +iDR +iDR +iDR cjn -aGM -cgp -cgX -aKX -cim +ldd +ixn +iHA +nTq +ebb cjn -clL -aQj -ylF -ylF +gVT +pvr +iwm +iwm aUc cpU cpU cpU cpU cpU -bgp -bjo -bmb +cUL +kOb +jlA vOs -btI -bwo -bzt -hbh +rGN +aIA +xxV +iEf vOs -cuH -bQa -bZf +ikL +ihJ +kvG bCz clx -bCK -csQ -gCZ -kCf -bCK +uwY +xmt +qxo +mFT +uwY bvz vOs vQo @@ -72512,16 +64889,16 @@ wZZ vQo jWz jWz -veX +uas jWz jWz -rpX -tnM +sDv +kTF uXg uXg ygq -fBu -lKs +jqU +rpO ygq lAx vPQ @@ -72627,63 +65004,63 @@ aac aac aac anG -bPY -bQS -bQS -bQS -bQS -bQS -bkZ -alU -bkZ -aqK +oYC +tRO +tRO +tRO +tRO +tRO +bMA +lsl +bMA +ciO bPf -asT -ccr -ccr -ccr -cam -caM -chd -cdj -cdj -chd -caM -cgY -cgY -cgY -cgY -aMq -caM -chd -ckN -chd -chd +cOp +cmM +cmM +cmM +rDJ +tNv +nRM +wAq +wAq +nRM +tNv +jWa +jWa +jWa +jWa +edJ +tNv +nRM +oac +nRM +nRM cpU -aVE -aXj -uzL -bbE +cVt +mpx +syd +hok cpU crI aHP -bmb +jlA vOs -bvL -bHH -bzt -bWx +szR +pyt +xxV +pUl vOs -oeQ -baA -oeQ +jHJ +iHy +jHJ bCz cly -crR -cwn -cwn +xcG +xgI +xgI vOs -njA +weQ cUi vOs vQo @@ -72706,17 +65083,17 @@ wZZ vQo jWz okK -kcy +xts onr wBI jWz -rpX -qks +sDv +naR srk uXg oWU -fUB -vbI +nFf +tbY ygq ygq ygq @@ -72822,63 +65199,63 @@ aac aac aac anG -ajy -bkZ -bkZ -bJz -bkZ -bkZ -bkZ -alU -apG -aqL +pkk +bMA +bMA +moW +bMA +bMA +bMA +lsl +vsf +gtM bPf -asU -ccr -ccr -bZG -axI -ceM -aAO -ceN -ceN -aEl -ceM -cgZ -cgZ -cgZ -cgZ -cin -ceM -aOJ -ckR -cdn -chd -aUe +uCf +cmM +cmM +iJk +sJQ +gOb +cBu +fJP +fJP +xaD +gOb +sre +sre +sre +sre +tXP +gOb +xtl +oQC +kWZ +nRM +oul aVF aXk aVF -bbF +mFq aKM crI aHP -bmb +jlA vOs -qye -bzG -bzt -bDy +mgK +nyH +xxV +joh vOs -oeQ -baA -oeQ +jHJ +iHy +jHJ bCz bvz -crT -dBV -hgI -btC -lUg +oiJ +vgy +flw +snw +ljX bvz vOs wZZ @@ -72905,18 +65282,18 @@ qcV onr qTF jWz -rpX -tnM +sDv +kTF uXg ygq ygq -meS -pOH +fXk +dIB ygq pUB pGy ygq -hdc +fWm ygq pge pge @@ -73018,15 +65395,15 @@ ali ali bPf bPf -bmX -bmX +mAz +mAz bPf -alW -alW -alW -alU -bkZ -aqK +kBB +kBB +kBB +lsl +bMA +ciO cjn cjn chB @@ -73034,39 +65411,39 @@ chi bZH cjn cjn -aAP -cdn -cdn -aEm +inf +kWZ +kWZ +idL cjn -cfD -cgY -cgY -chC -cio +sqg +jWa +jWa +iRB +sJn cjn -chd -bpl -cdn -aSs +nRM +oxI +kWZ +vDl cpU aVF -aXl -aZy -bbG +bSC +kGJ +fPK cpU crI aHP -bmb +jlA vOs vOs vOs -bzs +pVK vOs vOs -oeQ -baA -oeQ +jHJ +iHy +jHJ bCz bvz bvz @@ -73096,17 +65473,17 @@ jWz jWz jWz kaw -grG +erW rel -hPZ +sWD jWz -rpX -tnM +sDv +kTF uXg ygq -oIx -sQA -drI +vbn +puc +tgR usI vJB kbU @@ -73188,9 +65565,9 @@ agR agR agR agR -blI +voL aba -blI +voL agR agR agR @@ -73211,57 +65588,57 @@ ahZ awb agR agR -aiM -bPZ -bPZ -bPZ -bSv -bPZ -bPZ -alW -alU -bkZ -aqJ +wYG +mFc +tlz +tlz +smZ +tlz +tlz +kBB +lsl +bMA +uAo cjn cau bYl -bYU +glB bZI cao cjn -chd -cdn -cdn -aEn +nRM +kWZ +kWZ +dge cjn -cfE -bnE -bnH -bnU -boF +uWK +itb +fdX +jem +qqN cjn -chd -bpl -aDp -aSt +nRM +oxI +eTq +ePn cpU -aRr +txt cpU cpU cpU cpU -bgz -csi -cst -bqh -bqh -bwq -bgz -csi +wcD +bmg +hTZ +eBS +eBS +qIa +wcD +bmg bCz -oeQ -baA -oeQ +jHJ +iHy +jHJ bCz bvz bvz @@ -73270,7 +65647,7 @@ bvz bvz bvz bvz -skl +oUv bmv bmv bmv @@ -73288,20 +65665,20 @@ bmv bmv bmv jWz -vpG -pbP -hpD -tPi -sRX -nJa +bXl +cTu +ior +tDU +cZl +pWl jWz -rpX -tnM +sDv +kTF uXg ygq -jtB -drI -tdB +eFj +tgR +tEr xPv xPv iHX @@ -73383,9 +65760,9 @@ age agR agR agR -ado -ado -ado +dvM +dvM +dvM agR agR ahZ @@ -73406,66 +65783,66 @@ agR ahZ amw ahZ -aiN -bPZ -bPZ -bPZ -aln -alX -alX -anM -aoL -apG -aqK +oIW +tlz +tlz +tlz +rAB +gUg +gUg +ucr +hwt +vsf +ciO cjn bXC bYm -auY +ojJ bZJ cao cjn -chd -chd -cdn -aEo +nRM +nRM +kWZ +qXx cjn -cgu -cgu -cgu -cgu -cgu +dCh +dCh +dCh +dCh +dCh cjn -aOK -bpl -cdn -chd -aUf -bjo -bjo -aVG -aVG -aUf -bgA -csV -csu -csV -csV -csV -bzR -bDA +sMo +oxI +kWZ +nRM +iZM +kOb +kOb +rng +rng +iZM +ygf +mBR +boR +mBR +mBR +mBR +owS +tDn bCz -bLH -bQp -bZC +jrd +ecG +qCi bCz -clz -csM -dEX -hni -cvC +bBa +fAp +nQa +kPN +hbt bvz bvz -bLo +urw bmv xFc bmv @@ -73483,25 +65860,25 @@ uwJ bmv bmv jWz -nTD -oyu +rra +kxa jWz -ooj -poc -jVy +cBJ +kEF +jjY jWz -rpX -tnM +sDv +kTF uXg ygq ygq -iBw -jtB +vSC +eFj ygq lyX wEo ygq -hdc +fWm ygq vPQ vPQ @@ -73601,65 +65978,65 @@ ahZ ahZ agR agR -aiO -bPZ -bQT -bPZ -bPZ -bPZ -amN +pJw +tlz +lbf +tlz +tlz +tlz +iGh bPf -aoM -apG -aqM +ubC +vsf +kib cjn asV atS -cdn +kWZ cjn cjn cjn cjn -chd -aDp -ckN -aFz -chd -chd -chd -chd -chd -aFz -chd -aQm -cdn -chd -aUf -bjo -bjo -hyh -hyh -aUf -csi -csi -bms -csi -csW -csi -bgA -csV -bIr -bLJ -bQq -oeQ +nRM +eTq +oac +vaa +nRM +nRM +nRM +nRM +nRM +vaa +nRM +cKY +kWZ +nRM +iZM +kOb +kOb +aOV +aOV +iZM +bmg +bmg +qJD +bmg +sdM +bmg +ygf +mBR +fHS +qPV +mng +jHJ vOs vOs vOs vOs vOs vOs -bWZ -pJu +rIn +cYN vOs bmv bmv @@ -73685,8 +66062,8 @@ jWz jWz jWz jWz -rpX -qks +sDv +naR srk uXg ygq @@ -73728,7 +66105,7 @@ jLb jLb sKX jLb -jLb +slY aad aad aad @@ -73796,57 +66173,57 @@ aiW akH agR agR -aiM -ajz -akb +wYG +nQX +wkx akE -alo -bPZ -alo -bmX -alU -apG -aqK +xBd +tlz +xBd +mAz +lsl +vsf +ciO arI asW atT -bYU -awo -bFx -azl +glB +wHA +cIF +wBw cjn -chd -cdn -jKi -ceN -ceN -ceN -ceN -ceN -ceN -ceN -tyj -mnY -cdn -aSu +nRM +kWZ +jtA +fJP +fJP +fJP +fJP +fJP +fJP +fJP +kTL +gCN +kWZ +ouX cpU -aVH -aVH +fqg +fqg cpU cdm cdm -csi -bjp +bmg +hyx cdm cdm cdm -csi -bjp +bmg +hyx cdm vOs -cwn -cwn -cwn +xgI +xgI +xgI vOs htD cth @@ -73880,8 +66257,8 @@ bmv lgy bmv bmv -rpX -tnM +sDv +kTF jPV oDL vPQ @@ -73995,46 +66372,46 @@ anG anG anG anG -alr -alo -amO -anP -alU -bkZ -aqK +hQC +xBd +kIR +iMZ +lsl +bMA +ciO cjn -cdn -atU -cdn +kWZ +pdE +kWZ cjn cjn cjn bZH -chd -cdn -boF -aFA -aGN -chd -chd -chd -aMr -chd -boF -aDq -chd -aSv +nRM +kWZ +qqN +eDS +sBY +nRM +nRM +nRM +ycu +nRM +qqN +ddZ +nRM +prZ cpU -aVJ -aND +pUg +eTG cpU -bbI -aHW -rpX -tnM +sQH +neV +sDv +kTF bmv bIt -btJ +sXZ btL wZZ wZZ @@ -74075,8 +66452,8 @@ bmv bmv bmv bmv -rpX -tnM +sDv +kTF jPV oDL vPQ @@ -74169,13 +66546,13 @@ ahZ ahZ ahZ amm -ado -ado +dvM +dvM abO acg acv -bAi -bna +iNv +jOW amm ahZ ahZ @@ -74191,42 +66568,42 @@ aac aac aXG nJO -alo +xBd amP bPf bVw apI apI cjn -asY -atV -cdn -cdn -axJ -cdn +vLd +qKP +kWZ +kWZ +sli +kWZ bYV -chd -cdn -aEq +nRM +kWZ +vBX cjn cjn -aHO -aHO +mMG +mMG cjn cjn cpU cpU cpU -aRr +txt cpU cpU -aVJ -aXn +pUg +hLU aZz -aHW -aHW -rpX -tnM +neV +neV +sDv +kTF wZZ wZZ wZZ @@ -74348,7 +66725,7 @@ aac aac aUp ahg -eqY +dlm aUp aaQ ahZ @@ -74364,13 +66741,13 @@ ahZ ahZ ahZ ahZ -ado -bmZ -abP -abP -abP -bmZ -bAi +dvM +sNr +qhQ +qhQ +qhQ +sNr +iNv agS ahZ ahZ @@ -74386,42 +66763,42 @@ aac aac aXG nJO -alo +xBd amP anR -alU -bkZ -bQU -bYU -cdn -atW -bYU -cdn -axK -cdn +lsl +bMA +tbf +glB +kWZ +mDa +glB +kWZ +rST +kWZ chB -chd -aDq -chd -aFB +nRM +ddZ +nRM +wxF aGO aHP aHP aKZ cjn -fKt -lQy +dik +gYv cpU -aHT -aSw +dPg +nLK cpU -aVJ -aXo +pUg +qPG cpU -bbI -aHW -rpX -tnM +sQH +neV +sDv +kTF wZZ bqf csY @@ -74430,22 +66807,22 @@ wZZ bqf bLD wZZ -iZr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -dGO +iEO +npc +npc +npc +npc +npc +npc +npc +npc +npc +npc +npc +npc +npc +npc +dqr wZZ vQo vQo @@ -74559,13 +66936,13 @@ agR ahZ agR ahZ -ado -bmZ -abQ -abQ -abQ -bmZ -ado +dvM +sNr +qEf +qEf +qEf +sNr +dvM ahZ ahZ ahZ @@ -74581,16 +66958,16 @@ aac aac aXG nJO -alY +bip amP anU -alU -bkZ -bQU -arJ -asZ -cdn -bYU +lsl +bMA +tbf +wFI +eYz +kWZ +glB cjn cjn cjn @@ -74600,47 +66977,47 @@ cjn cpU cjn aHP -cdn -cdn +kWZ +kWZ aHP -aMs -aHT -aHT -ckS -ckS -ckS -ckS -aHT -aHT -aZD -aHW -aHW -rpX -tnM +trZ +dPg +dPg +xfc +xfc +xfc +xfc +dPg +dPg +cvZ +neV +neV +sDv +kTF bmw bqs csZ bqf bqf wZZ -kPl +cmO wZZ -rpX +sDv bjr bjr bjr -cxS -cxS -uVv -uVv -szX -uVv -uVv -cxS -cxS -cxS +kQR +kQR +sBR +sBR +hNy +sBR +sBR +kQR +kQR +kQR bjr -tnM +kTF wZZ wZZ vQo @@ -74754,13 +67131,13 @@ ahZ agR ahZ amm -ado -ado +dvM +dvM abR ach byP -bAi -bna +iNv +jOW amn ahZ agR @@ -74776,13 +67153,13 @@ aac aac aXG nJO -alo +xBd amP anR -alU -bkZ -aqP -bYU +lsl +bMA +iuQ +glB ata vCD avb @@ -74799,31 +67176,31 @@ aHP aHP aLa cjn -aNC +qfA cpU -aND -aHT -aHT -aHT -aHT -aHT -aHT -bbJ -aHW -rpX -tnM +eTG +dPg +dPg +dPg +dPg +dPg +dPg +xKN +neV +sDv +kTF wZZ bwE -ioi +tjE sPF -ioi +tjE btL btE wZZ -rpX +sDv bjr bjr -tiU +dpi cti btN cpg @@ -74834,8 +67211,8 @@ wvt bBr wLv wLv -oSN -tnM +eKY +kTF wZZ wZZ srk @@ -74971,17 +67348,17 @@ aac aac aXG nJO -alo +xBd amP bPf -aoM -apG -bQU -cdn +ubC +vsf +tbf +kWZ bZI bZI bZI -awo +wHA axM bYm aAU @@ -74990,14 +67367,14 @@ aDs cpU cjn cjn -aHO -aJG +mMG +dUV cjn cjn -aND +eTG cpU cpU -aRr +txt cpU cpU cpU @@ -75005,20 +67382,20 @@ cpU cpU bbK xkj -rpX -tnM +sDv +kTF wZZ wZZ sPF -bwy +kOn sPF bDB wZZ wZZ -rpX +sDv bjr bjr -kdm +rEI cuc cwq xkj @@ -75029,22 +67406,22 @@ cwq xkj xkj wLv -oSN +eKY bjr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN -qrz -oPN -oPN -oPN -oPN -oPN +npc +npc +npc +npc +npc +npc +npc +npc +cts +npc +npc +npc +npc +npc cpg uXg uXg @@ -75165,19 +67542,19 @@ aac aac aac aXG -alr -alo -amO -anV -alU -bkZ -bQU -bYU +hQC +xBd +kIR +hSx +lsl +bMA +tbf +glB ata vCD avb aEe -axN +tcR bYm aAW aCn @@ -75185,14 +67562,14 @@ aDt cpU aFD cpU -aHR -aHT +xUk +dPg cpU cpU cpU cpU cpU -aHT +dPg cpU cpg aMw @@ -75200,19 +67577,19 @@ xkj xkj xkj xkj -rpX -tnM +sDv +kTF wZZ bqf -ioi +tjE sPF -ioi +tjE wZZ bqf wZZ -rpX +sDv bjr -tnM +kTF reb ctH xkj @@ -75224,22 +67601,22 @@ xkj xkj xjr lmv -sot -cxS -uVv -uVv -szX -uVv -uVv -szX -uVv -uVv -uVv -uVv -cxS -cxS -cxS -qIt +qso +kQR +sBR +sBR +hNy +sBR +sBR +hNy +sBR +sBR +sBR +sBR +kQR +kQR +kQR +unb wLv cpg uXg @@ -75360,17 +67737,17 @@ aac aac aac aXG -alo -aln -drS -anW -aoO -bWc -aqQ -bYU -cdn -cdn -cdn +xBd +rAB +gLB +tGM +cDI +aEZ +spM +glB +kWZ +kWZ +kWZ cjn cau bYm @@ -75380,14 +67757,14 @@ cdm aDu aDu aDu -aHT -aHT -aLb -ckS -ckS -ckS -aQp -aRs +dPg +dPg +voy +xfc +xfc +xfc +kyC +jWb cpU cpg xkj @@ -75395,8 +67772,8 @@ xkj aNF xkj xkj -rpX -tnM +sDv +kTF bmw brs bqf @@ -75405,9 +67782,9 @@ wZZ btK wZZ wZZ -rpX +sDv bjr -tnM +kTF pzb lmv xjr @@ -75460,7 +67837,7 @@ vPQ vPQ vPQ uXg -icG +lbk jLb jLb jLb @@ -75555,33 +67932,33 @@ bNW aac bNW bME -als -alZ -als -anV -bkZ -apK -aqQ -cdn -cdn -cdn -avc +xfU +iZV +xfU +hSx +bMA +hLG +spM +kWZ +kWZ +kWZ +ouj cjn cjn cjn cjn -cct +hov cdm -aEr -aFE +mHi +vkq aDu -aHR -aHR +xUk +xUk cpU -aMt -aMt -aMt -aMt +mXN +mXN +mXN +mXN aFD aFD xkj @@ -75590,8 +67967,8 @@ xkj xkj xkj xkj -rpX -tnM +sDv +kTF wZZ btE btL @@ -75600,9 +67977,9 @@ wZZ bDC wZZ wZZ -rpX +sDv bjr -tnM +kTF hGm ctZ xjr @@ -75754,29 +68131,29 @@ bME bME bME bPf -bPZ -bWd +tlz +rUd bPf cjn -atb -cdn -avd -awp -axO -azo -ccu -ccu +hgw +kWZ +jdc +oBk +jlh +qTH +gPt +gPt aDu -cee -aHR -aGQ -aHT -aHT +oOf +xUk +ajL +dPg +dPg iau -aMu -aHT -aOM -aQr +sdN +dPg +lss +vJD cpg cpg wLv @@ -75785,20 +68162,20 @@ wLv xId cpg aMw -bgL +rGA bjr -oPN -oPN -oPN -oPN -oPN -oPN -oPN -oPN +npc +npc +npc +npc +npc +npc +npc +npc bjr bjr bjr -tNQ +hYV cuc xkj xkj @@ -75812,8 +68189,8 @@ xkj cpg cpg cxW -rWk -qOF +lOy +pRN cxW iMn xkj @@ -75931,7 +68308,7 @@ acc age tSb agR -bmZ +sNr agR aac aac @@ -75948,30 +68325,30 @@ bNW bNW bNW bNW -bUF -aoR -rgt -aat +sEs +kcj +sSl +nPF cjn -atc -cdn -cdn -awp -axP -azp -aAY -aCo +hQX +kWZ +kWZ +oBk +xcq +fZf +grh +ybr aKM -aEs -aFE +kby +vkq aDu -aHU -aHT +tAN +dPg iau -aMv -aNE -aON -aQs +eaW +rTH +gCY +sSn cpg cpg xkj @@ -75980,20 +68357,20 @@ xkj aXp aXp aXp -taW -szX -uVv -uVv -btM -bwF -wLj -wLj -bIv -uVv -szX -uVv -uVv -kdm +pQv +hNy +sBR +sBR +sCT +lVj +dad +dad +mZH +sBR +hNy +sBR +sBR +rEI cuc cwq xkj @@ -76007,8 +68384,8 @@ xkj cpg cpg qbR -tZF -gPQ +dlw +aif cxW cxW cxW @@ -76127,7 +68504,7 @@ acw age adN bkT -aex +tys bDm bHj bHj @@ -76143,25 +68520,25 @@ bNW bNW bNW vVK -bUF -bUF -bUF -bUF +sEs +sEs +sEs +sEs cjn cjn -aJG +dUV cjn cpU -axQ -axQ -axQ +cBI +cBI +cBI cpU aDu aDu aDu aDu -aHV -aJH +bKX +eJI cpU aMw aMw @@ -76202,13 +68579,13 @@ xkj cpg cxW cxW -qAr -ydp +sJU +dBE cxW lpk aLc hjC -jrs +dBP cxW cpg xkj @@ -76321,8 +68698,8 @@ aUD aXb aac adq -adM -aef +krG +wLI lkB bHj bHj @@ -76343,9 +68720,9 @@ pPk pPk rok rPA -atd +qlR atY -ave +vfz tvk pPk pPk @@ -76355,8 +68732,8 @@ bHj bHj cpg cpg -vDm -vDm +bnI +bnI wLv wLv wLv @@ -76368,9 +68745,9 @@ xkj xkj aXp bdj -oeI -beA -bgV +sHf +kEj +rHR aXp aXp xkj @@ -76396,9 +68773,9 @@ kLM xkj xkj cxW -ugH -ekh -aHl +qOP +ioG +wvb wab viA hsX @@ -76442,7 +68819,7 @@ dKj dKj dKj dKj -icG +lbk jLb jLb jLb @@ -76516,14 +68893,14 @@ aUD aUD aac bDm -aex -bDn +tys +kGF bDm bHj bDm -bJC -bDn -aex +eQj +kGF +tys bon aic agT @@ -76538,9 +68915,9 @@ bon bon bon arK -ate -atZ -avf +vXT +gwg +mRe awr bon bon @@ -76562,11 +68939,11 @@ xkj xkj xkj aXp -aZE -bbN -beB -beB -bgV +wDx +caS +eXj +eXj +rHR aXp cwq xkj @@ -76591,9 +68968,9 @@ cFp cxK xkj cxW -ugH -ekh -ekh +qOP +ioG +ioG uzb viA viA @@ -76617,8 +68994,8 @@ wXm wXm wXm rxp -tTi -uhe +mWL +jvN rxp uXg uXg @@ -76711,15 +69088,15 @@ aUD aUD aac bDm -aex -aex +tys +tys bDm bHj bHj -bDn -aex -aex -aex +kGF +tys +tys +tys bon bon bon @@ -76757,11 +69134,11 @@ cwq xkj xkj aXp -aZF -bbN -bbN -bgW -csj +ydX +caS +caS +xnh +uIs aXp cpg cwq @@ -76787,13 +69164,13 @@ kLM xkj cxW cxW -eiV -ugH +nfV +qOP cxW dSA sgq cxW -jrs +dBP cxW xjr xkj @@ -76812,14 +69189,14 @@ cyQ cyQ cyQ ivF -uTv -lpr +tiW +pUs rxp dKj dKj dKj dKj -icG +lbk aiT dUl dUl @@ -76906,13 +69283,13 @@ aUD aUD aac bDm -bDn -bDn +kGF +kGF bDm bHj bDm -bDn -bDn +kGF +kGF bDm bHj bHj @@ -76952,7 +69329,7 @@ xkj aNF xkj aXq -aZG +snL bbO aXp aXp @@ -77000,15 +69377,15 @@ xkj xkj cpg rxp -oQe -qwx -gqa +wiu +wmT +guC gUp eaO eaO rxp -nrP -fzJ +trn +pYF rxp dKj dKj @@ -77101,13 +69478,13 @@ aac aac aac bDm -bDn -abS +kGF +sjq bDm bHj bDm -bDn -bDn +kGF +kGF bDm bHj bHj @@ -77148,7 +69525,7 @@ xkj xkj aXp aXp -bbP +jGV aXp wkv cpg @@ -77195,9 +69572,9 @@ xkj xkj cpg rxp -taL -tPx -vRP +tiO +gwp +ujC eaO eaO eaO @@ -77296,13 +69673,13 @@ bNW bNW bNW bDm -adP -bDn +iBf +kGF bDm bHj bDm -acl -bDn +wTS +kGF bDm bHj vVK @@ -77324,7 +69701,7 @@ vVK vVK vVK vVK -azr +tjY cbF cdp cdp @@ -77390,9 +69767,9 @@ xkj xkj cpg rxp -oQe -sse -haZ +wiu +qcH +ihM sXt xtw gTB @@ -77410,7 +69787,7 @@ jLb jLb jLb jLb -icG +lbk dKj dKj eMz @@ -77491,13 +69868,13 @@ bNW bNW bNW bDm -abS -bDn +sjq +kGF bDm bHj bDm -bDn -abS +kGF +sjq bDm bHj vVK @@ -77517,10 +69894,10 @@ bXG bZN vVK cbF -axR -azq -azr -axR +qVK +xKG +tjY +qVK cbF cbF cbF @@ -77533,7 +69910,7 @@ cjr aQt cpg cpg -aSz +iFF xkj xkj xkj @@ -77589,11 +69966,11 @@ rxp rxp rxp rxp -ljg -ljg +jkZ +jkZ rxp rxp -fxO +xhV rxp dKj dKj @@ -77686,13 +70063,13 @@ bnd bnd bnd bDm -bDn -bDn +kGF +kGF bDm bHj bDm -bDn -bDn +kGF +kGF bDm vVK vVK @@ -77712,13 +70089,13 @@ vVK vVK avg awt -axS -azr -aAZ -axS +hhQ +tjY +qaB +hhQ cbF -aEt -aFG +tMN +eBU cbF cdp aIU @@ -77731,7 +70108,7 @@ cjr aSB xkj cpg -aSz +iFF xkj xkj beE @@ -77876,18 +70253,18 @@ aad aad bnd bnd -abB +byq abC -acx +eiz bnd bDm -acy -bDn +mwH +kGF bDm bDm bDm -bDn -aex +kGF +tys agT bon bon @@ -77907,13 +70284,13 @@ vVK aoT vVK cbF -axT +eLL azs aBa -azr +tjY aME -aEu -aFH +bAm +wQa cbF cdp cdp @@ -78070,19 +70447,19 @@ aad aad aad bnd -abB -bDn -acj -abS -abD +byq +kGF +jci +sjq +vHz abC -bDn -bDn -abS -bqY -afl -bDn -aex +kGF +kGF +sjq +xmx +lIh +kGF +tys bon bon bon @@ -78107,11 +70484,11 @@ azt cbE cbF cbF -aEv -aEv +fST +fST cbF cbF -aJI +dxC aHZ cjr cjr @@ -78200,7 +70577,7 @@ dKj dKj dKj dKj -icG +lbk jLb dKj jLb @@ -78266,17 +70643,17 @@ aad aad bnd abC -bDn +kGF abC -acy +mwH abC bDm -adO -bDn -bDn -bDn -afm -aex +gUz +kGF +kGF +kGF +hgA +tys agi bon bon @@ -78300,12 +70677,12 @@ vVK axV caV aBb -aCq -aDw +nIQ +kHw aCt -aFI -aGR -aIa +hol +sDz +tBL aJJ aHZ cjr @@ -78320,7 +70697,7 @@ cpg cpg cpg cpg -bgX +kvY piY piY cwD @@ -78359,13 +70736,13 @@ tPN tPN tPN tPN -beF +kfY vit vit vit vit vit -beF +kfY tPN tPN tPN @@ -78460,14 +70837,14 @@ aad aad aad bnd -abD -abS -bDn -bDn -acR -bDn -bDn -bDn +vHz +sjq +kGF +kGF +mcO +kGF +kGF +kGF bDm bDm bDm @@ -78495,13 +70872,13 @@ bZN axU caW caW -aCr +dVr aDx aEw -azr -aGS +tjY +fvJ aIb -aJI +dxC aHZ cjr cjr @@ -78656,13 +71033,13 @@ aad aad bnd bnd -btz +kAU abC -iGR +rbX bnd bDm -abS -bDn +sjq +kGF bDm bHj bHj @@ -78690,10 +71067,10 @@ vVK cbF azu cbF -aCs +jvo aDy aEx -aFJ +tFB cbF cbF cdp @@ -78739,7 +71116,7 @@ cwD piY piY piY -beF +kfY tPN tPN tPN @@ -78856,8 +71233,8 @@ bnd bnd bnd bDm -bDn -acy +kGF +mwH bDm bHj bHj @@ -78884,11 +71261,11 @@ vVK aoT vVK vVK -aBc +fxA aCt caW -aEy -aEy +shY +shY cbF cdp cdp @@ -78917,7 +71294,7 @@ bDH cwD cuM cuM -caw +rIg cuM cuM cwD @@ -79051,8 +71428,8 @@ bDm bDm bDm bDm -bDn -bDn +kGF +kGF bDm bHj bHj @@ -79150,10 +71527,10 @@ vit vit tPN tPN -beF +kfY vit vit -beF +kfY vit vit vit @@ -79242,12 +71619,12 @@ aad aad aad bDm -bEy -ack -bDn +sph +erM +kGF bDm -adP -bDn +iBf +kGF bDm bHj bHj @@ -79333,7 +71710,7 @@ tPN tPN tPN tPN -beF +kfY vit vit vit @@ -79437,12 +71814,12 @@ aad aad aad bDm -ack -bDn -bDn -adt -bDn -abS +erM +kGF +kGF +uGU +kGF +sjq bDm bHj bHj @@ -79632,12 +72009,12 @@ aad aad aad bDm -bDn -acz -bDn -adw -acz -bDn +kGF +nAG +kGF +fCp +nAG +kGF bDm bHj bHj @@ -79827,12 +72204,12 @@ aad aad aad bDm -bxl -abS -bEy +sBK +sjq +sph bDm -bDn -bDn +kGF +kGF bDm bHj bHj @@ -79892,7 +72269,7 @@ cwD cwD cwD mmF -cwD +pHl cwD cwD cuM @@ -79914,18 +72291,18 @@ sRR vit vit uvw -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt iRk uvw uvw @@ -79954,14 +72331,14 @@ dKj dKj dKj dKj -icG +lbk jLb jLb eMz euZ eMz jLb -icG +lbk aad aad aad @@ -80023,11 +72400,11 @@ aad aad bDm bDm -bDn +kGF bDm bDm -abS -bDn +sjq +kGF bDm bHj bHj @@ -80060,7 +72437,7 @@ cdp cdp cdp ceQ -aFj +fcz aJK aCv jUA @@ -80109,7 +72486,7 @@ tPN tPN vit uvw -vsy +fxt gih gih gih @@ -80120,7 +72497,7 @@ gih gih pqG gih -vsy +fxt vit vit uvw @@ -80134,7 +72511,7 @@ vit vit vit sRR -beF +kfY ekJ ekJ dKj @@ -80217,12 +72594,12 @@ aad aad aad bDm -bxm -bDn -acS +hhc +kGF +vMY bDm -adP -bDn +iBf +kGF bDm bDm bDm @@ -80304,7 +72681,7 @@ tPN tPN vit vit -vsy +fxt gih khT khT @@ -80315,7 +72692,7 @@ khT khT khT gih -vsy +fxt vit vit uvw @@ -80412,15 +72789,15 @@ aad aad aad ake -bxn -bDn -bDn +nbz +kGF +kGF bDm -bDn -abS -bDn -aex -afn +kGF +sjq +kGF +tys +pfu bon bon bon @@ -80491,7 +72868,7 @@ bDH cwD cwD piY -mLN +mFf cuM cuM tPN @@ -80499,18 +72876,18 @@ tPN tPN vit vit -vsy +fxt xJH khT -czw -kRO -xwn -pVn -aKF -jVc +wHJ +vXf +orp +gLO +eIU +ong khT gih -vsy +fxt vit vit uvw @@ -80607,14 +72984,14 @@ aad aad aad bDm -acl -bDn -bDn +wTS +kGF +kGF bDm -bDn -bDn -aex -aeN +kGF +kGF +tys +xud afo bon bon @@ -80694,18 +73071,18 @@ vit vit vit sRR -mjR +gbX oAQ khT -sCa -vbN -vsy -vsy -lMB -pmC +txk +iTl +fxt +fxt +mvi +tsc khT gih -vsy +fxt vit iRk vit @@ -80802,12 +73179,12 @@ aad aad aad bDm -bEy -bDn -abS -bDn -bDn -bDn +sph +kGF +sjq +kGF +kGF +kGF bDm bDm bDm @@ -80889,18 +73266,18 @@ aKY vit vit vit -vsy +fxt gih -jzD -vsy -lZd +sVH +fxt +hDV khR -lZd +hDV gih -ajO +juW khT gih -vsy +fxt vit sRR vit @@ -80997,18 +73374,18 @@ aad aad aad bDm -ack -bDn -bDn -bDn -bDn -bEy +erM +kGF +kGF +kGF +kGF +sph bDm bHj bHj bHj bHj -bWe +mSD bon vVK bHj @@ -81032,7 +73409,7 @@ pNT pNT pNT pNT -aFj +fcz jUA jUA aSF @@ -81084,18 +73461,18 @@ vit vit vit vit -vsy +fxt gih -bLK -vsy +xwA +fxt gih -lZd +hDV gih -lZd -vsy +hDV +fxt khT gih -vsy +fxt vit vit vit @@ -81274,29 +73651,29 @@ cwD piY piY cwD -vsy -vsy -vsy -vsy -vsy -vsy +fxt +fxt +fxt +fxt +fxt +fxt gih khT -jNJ -iXi -xgR -uHa -vsy -vsy +cGc +qjT +uXi +ibL +fxt +fxt khT gih -vsy -jiQ -vsy -vsy -vsy -vsy -vsy +fxt +xgY +fxt +fxt +fxt +fxt +fxt uvw vit vit @@ -81312,7 +73689,7 @@ wFG wFG wFG wFG -fst +evD dKj dKj dKj @@ -81322,7 +73699,7 @@ eMz eMz eMz jLb -icG +lbk aad aad aad @@ -81403,7 +73780,7 @@ bon aig vVK aob -bWe +mSD bHj vVK bon @@ -81428,7 +73805,7 @@ jUA jUA jUA jUA -aFj +fcz ceQ ceQ ceQ @@ -81469,7 +73846,7 @@ cwD piY piY sEV -vsy +fxt gih gih gih @@ -81481,8 +73858,8 @@ eIT khT khT khT -rJf -wbK +oSR +jZH khT qXN qXN @@ -81491,7 +73868,7 @@ qXN qXN qXN fre -jiQ +xgY dqo wFG wFG @@ -81664,7 +74041,7 @@ cwD cwD piY piY -vsy +fxt gih khT khT @@ -81673,20 +74050,20 @@ khT khT khT lhI -era +wVr sGJ -lZd +hDV gih -lZd -vsy -sQK -sQK -sQK -sQK -sQK -ipd +hDV +fxt +fwM +fwM +fwM +fwM +fwM +elF hfq -vsy +fxt wFG oDw wFG @@ -81785,7 +74162,7 @@ aad bHj bDm vVK -bWe +mSD vVK vVK bon @@ -81822,7 +74199,7 @@ ceQ ceQ ceQ ceQ -aFj +fcz ceQ ceQ ceQ @@ -81859,29 +74236,29 @@ cwD cwD piY piY -vsy +fxt gih khT -kfm -kfm -scb -uLl -uLl +dUZ +dUZ +ehP +dId +dId khT -uWe -lZd +vTS +hDV gih -lZd +hDV gih -vsy -lVJ -ixD -ixD -ixD -aCw -ocE +fxt +pJf +xpS +xpS +xpS +xhu +bVT hfq -vsy +fxt wFG wFG ekJ @@ -82003,14 +74380,14 @@ aua jUA awu ceQ -aFj +fcz jUA jUA jUA jUA jUA cei -aFj +fcz ceQ ceQ ceQ @@ -82049,23 +74426,23 @@ sKg sKg sKg sKg -mLN +mFf piY cwD piY piY -vsy +fxt gih khT iCt -lRa +xCC khR -lZd +hDV gih khT khT -rJf -wbK +oSR +jZH khT khT khT @@ -82074,9 +74451,9 @@ khT khT khT khT -ocE +bVT hfq -vsy +fxt wFG ekJ ekJ @@ -82249,29 +74626,29 @@ daq daq aZO daq -vsy +fxt gih khT -lZd +hDV gih -mRN +lmS gih -lZd -jPc -ixD -vsy -vsy -mWT -vsy +hDV +ujX +xpS +fxt +fxt +njC +fxt khT -xst -gWE -vwX -qOZ -puV -ocE +pjB +wcH +nET +kXU +ogk +bVT hfq -vsy +fxt wFG ekJ ekJ @@ -82281,7 +74658,7 @@ ekJ ekJ ekJ ekJ -fst +evD wFG dqo dqo @@ -82380,7 +74757,7 @@ agT bon bon bon -bWe +mSD bDm bHj bHj @@ -82402,7 +74779,7 @@ cei cei ceQ ceQ -aFj +fcz jUA jUA jUA @@ -82444,29 +74821,29 @@ daq daq aZO daq -vsy +fxt gih khT -rJf -wbK +oSR +jZH khT khT khT khT -oZt -vsy +nYA +fxt gih -xMr -vsy -tGZ -vsy +sbL +fxt +nPd +fxt gih -lZd -sya -puV -ocE +hDV +qYQ +ogk +bVT hfq -vsy +fxt ekJ ekJ ekJ @@ -82639,29 +75016,29 @@ sKg daq aZO aZO -vsy +fxt gih -enU -ixD -ixD -enU +kyG +xpS +xpS +kyG khT khT khT khT -iuf -lZd +mBC +hDV gih -vsy -gdZ -vsy -lZd +fxt +uzU +fxt +hDV gih -sya -puV -hsg +qYQ +ogk +iCL hfq -vsy +fxt khT khT khT @@ -82763,7 +75140,7 @@ bon afq bon bon -bWe +mSD vVK bon vVK @@ -82782,7 +75159,7 @@ ceQ ceQ ceQ ceQ -aFj +fcz jUA jUA jUA @@ -82834,32 +75211,32 @@ sKg sKg aZO aZO -vsy +fxt gih -aCw -ixD -ixD -ixD +xhu +xpS +xpS +xpS khT -uLJ -uLJ -qFY -iGN +oQo +oQo +wzY +hVF gih -lRa -iGN +xCC +hVF khT -vsy +fxt pqG -lZd -vyK -puV -hsg +hDV +aUd +ogk +iCL hfq -vsy -pmT -ixD -eDc +fxt +gTh +xpS +pWQ khT ekJ ekJ @@ -82960,8 +75337,8 @@ bon bon vVK aYz -acE -acE +nqG +nqG aYz aYz aYz @@ -83029,29 +75406,29 @@ sKg sKg aZO aZO -vsy +fxt gih -ixD -ixD -ixD -ixD +xpS +xpS +xpS +xpS ifU -txm -uKV -fBk -vsy -vsy -vFV -idq -xlQ -vsy -vFV -vsy -vsy +veM +jDt +uXs +fxt +fxt +rrM +qgJ +orr +fxt +rrM +fxt +fxt khT khT fzA -vsy +fxt khT khT khT @@ -83154,15 +75531,15 @@ bon bon bon bon -adz -aih -aiU -aeC -abX -akK +meL +qvW +jDq +wQq +eEQ +jNE uux -fmB -bUm +uJy +fmq uux bHj bHj @@ -83189,7 +75566,7 @@ jUA jUA cei jUA -aFj +fcz jUA ceQ ceQ @@ -83224,32 +75601,32 @@ sKg sKg aZO aZO -vsy +fxt gih -ixD -eNL -aCw -ixD +xpS +ybQ +xhu +xpS khT khT khT khT -rJf -wbK +oSR +jZH khT khT khT khT khT -tLI -yca -jeF -sXl +lti +qQs +dCj +vVA gih -vsy -pmT -ixD -eDc +fxt +gTh +xpS +pWQ khT ekJ ekJ @@ -83349,15 +75726,15 @@ bon bon bon bon -adz -aii -aiV -ajC -aiV -abX -bRU -bEE -amY +meL +jdR +vUF +hAc +vUF +eEQ +mGR +nqE +iTB uux bHj bHj @@ -83419,29 +75796,29 @@ sKg sKg aZO aZO -vsy +fxt gih -ixD +xpS gih -ixD -ixD -ixD +xpS +xpS +xpS mBl rNO -enU -lZd -lZd -enU -ixD -djR -ixD -sXl -eUW -kmt -xUo -sXl +kyG +hDV +hDV +kyG +xpS +jCA +xpS +vVA +hku +lAo +qQw +vVA pqG -vsy +fxt khT khT khT @@ -83459,7 +75836,7 @@ dqo dqo dqo dqo -fst +evD aad aad aad @@ -83544,22 +75921,22 @@ bon agT bon bon -adz -aij -aeB -ajD -akf -akK +meL +hMh +tGA +gTC +xJF +jNE uux -amd -amZ +iGH +rtB uux bHj bHj uux -arO -atg -aub +xAv +eXh +ngl uux cgE cgE @@ -83614,32 +75991,32 @@ aZO sKg aZO aZO -vsy +fxt gih -ixD +xpS gih gih -ixD -ixD -ixD -ixD -ixD -lZd -lZd -aCw -ntu -ydz -xuq -sXl -wAb -chx -jxi -sXl +xpS +xpS +xpS +xpS +xpS +hDV +hDV +xhu +qyV +grU +uaN +vVA +lYL +oTU +qWT +vVA gih -vsy -pmT -aCw -eDc +fxt +gTh +xhu +pWQ khT ekJ ekJ @@ -83740,11 +76117,11 @@ bon bon cay aYz -acE +nqG aYz -ajE -aiV -akL +wqz +vUF +nzK aYz ame uux @@ -83752,9 +76129,9 @@ aYz uux uux uux -arP -bXQ -aub +iZk +iXI +ngl uux cgE cgE @@ -83765,7 +76142,7 @@ chN cdx cdx chN -aOr +rIq cgE cgE ceQ @@ -83809,29 +76186,29 @@ aZO aZO aZO daq -vsy +fxt gih -ixD -ixD -ixD -ixD -ixD -ixD -ixD -aCw -lZd -xMr -ixD -ixD -xLJ -ixD +xpS +xpS +xpS +xpS +xpS +xpS +xpS +xhu +hDV +sbL +xpS +xpS +vNo +xpS khT -sXl -sXl -sXl +vVA +vVA +vVA khT jDr -vsy +fxt khT khT khT @@ -83929,7 +76306,7 @@ aad aad bHj bHj -vVK +iPG bon bon bon @@ -83937,19 +76314,19 @@ ahc ahG ahG uux -bUo -aiV -bUo -ceg -bXQ -bUn -bXQ -bUn -bXQ -ceg -bXQ -bXQ -auc +xer +vUF +xer +qHh +iXI +rwA +iXI +rwA +iXI +qHh +iXI +iXI +iIe uux cgE cgE @@ -84004,7 +76381,7 @@ aZO lhH aZO daq -vsy +fxt duq gih pqG @@ -84012,13 +76389,13 @@ gih gih gih gih -ixD -ixD -lZd -lZd -ixD -ixD -ixD +xpS +xpS +hDV +hDV +xpS +xpS +xpS pqG sGJ gih @@ -84026,13 +76403,13 @@ gih gih sGJ gih -vsy +fxt ekJ ekJ ekJ ekJ ekJ -fst +evD wFG dqo wFG @@ -84126,15 +76503,15 @@ uux uux uux aYz -afT -agl +xgT +lxJ aYz aYz -acE +nqG aYz -ajE -aiV -ors +wqz +vUF +nlg aYz uux uux @@ -84143,8 +76520,8 @@ uux uux uux uux -bXQ -bYu +iXI +tOl uux aly aly @@ -84199,29 +76576,29 @@ daq daq aZO daq -vsy -vsy -vsy -vsy -vsy -vsy -vsy +fxt +fxt +fxt +fxt +fxt +fxt +fxt gih -ixD -lZd -tIv -lZd -lZd -lZd -ixD +xpS +hDV +otg +hDV +hDV +hDV +xpS gih -vsy -vsy -vsy -vsy -vsy -vsy -vsy +fxt +fxt +fxt +fxt +fxt +fxt +fxt ekJ ekJ ekJ @@ -84316,36 +76693,36 @@ aad aad aad uux -neu -aeh -mcD -adz -afs -ady -ady -ahd -adz -aik -aiX -abX -aiV -akK +mME +lrz +hWS +meL +ycJ +ejR +ejR +qws +meL +jKj +smQ +eEQ +vUF +jNE uux -amf -ptW +lEy +tfu uux -cdF -apL -cdF +ifs +nQD +ifs uux -ath +vQJ uux uux aly aly aly aly -aJk +adu chN cdx cdx @@ -84358,7 +76735,7 @@ cei cei cei jUA -aFj +fcz jUA jUA ceQ @@ -84390,7 +76767,7 @@ sKg sKg sKg sKg -psR +gvT daq daq daq @@ -84400,17 +76777,17 @@ mLn mLn mLn fFy -vsy +fxt gih -ixD -cPq -ixD -duQ -dIE -lZd -ixD +xpS +oMI +xpS +vIp +sHk +hDV +xpS gih -vsy +fxt wFG wFG wFG @@ -84511,30 +76888,30 @@ aad aad aad uux -adT -aei -aeB -adz -abX -ady -ady -abX -adz -ail -bPn -aiV -aiV -abX -bRU -bUo -bUo +kVq +fBH +tGA +meL +eEQ +ejR +ejR +eEQ +meL +mLu +gIB +vUF +vUF +eEQ +mGR +xer +xer uux -aoU -bAr -bUo -bXa -bAr -bAr +iQT +seE +xer +xBY +seE +seE uux uux uux @@ -84595,17 +76972,17 @@ tgC mLn mLn mLn -vsy +fxt gih -ixD -lZd -ixD -ixD -dZm -lZd -ixD +xpS +hDV +xpS +xpS +gkm +hDV +xpS gih -vsy +fxt dqo dqo dqo @@ -84706,33 +77083,33 @@ aad aad aad uux -adU -abX -aeC -adz -afu -ady -ady -ahe -adz -aij -aiY -aeC -abX -akK +rUM +eEQ +wQq +meL +syg +ejR +ejR +dMd +meL +hMh +nGf +wQq +eEQ +jNE uux -amg -fIW +nVp +qiQ uux -aoV -bAr -bUo +dja +seE +xer uux -ati -bAr +nTQ +seE uux -aub -axW +ngl +pAK uux aly ccz @@ -84790,17 +77167,17 @@ tgC tgC mLn mLn -vsy +fxt gih -aCw -lZd -ixD -ixD -eEO -pzt -ixD +xhu +hDV +xpS +xpS +sfI +nyg +xpS gih -jiQ +xgY dqo dqo dqo @@ -84902,33 +77279,33 @@ aYz aYz uux uux -aej +ckz uux uux aYz -afU -agm +mvK +xvs aYz aYz uux uux aYz -akg -akN +mBm +lur aYz apd uux aYz -aoW -bAr -bAr +xGv +seE +seE uux -bAr -bAr -bXa -bUo -bUo -adz +seE +seE +xBY +xer +xer +meL vEp vEp chN @@ -84985,17 +77362,17 @@ lzb tgC tgC mLn -vsy +fxt gih -ixD -tIv -lZd -tIv -lZd -lZd -ixD +xpS +otg +hDV +otg +hDV +hDV +xpS gih -vsy +fxt dqo dqo dqo @@ -85090,40 +77467,40 @@ aad aad aad uux -abE -abT -abE +pjg +quJ +pjg aYz -yll -fTN -iAP -bAr -bAr -bAr -bMR -bUo -bUo -bMR -bAr -acV -bAr -bAr -bAr -acp -bAr -aeR -akL -aod -bUo -acp -bAr +lDR +pbw +oTc +seE +seE +seE +xxs +xer +xer +xxs +seE +ldx +seE +seE +seE +bkj +seE +qYM +nzK +gPq +xer +bkj +seE uux uux uux uux -bUo -abU -adz +xer +wmq +meL axX vEp chN @@ -85180,17 +77557,17 @@ vuJ vuJ tgC tgC -vsy +fxt gih -ixD -ixD -ixD -ixD -ixD -ixD -aCw +xpS +xpS +xpS +xpS +xpS +xpS +xhu gih -vsy +fxt wFG wFG wFG @@ -85285,39 +77662,39 @@ aad aad aad uux -bUo -abU -bUo -bXa -bAr -bAr -bUo -bUo -abU -aeS -bMR -bUo -bUo -bMR -aeS -aeS -aeS -aeS -aeS -aeS -bUo -bUo -bUo -bAr -bAr -bAr -acV +xer +wmq +xer +xBY +seE +seE +xer +xer +wmq +oKz +xxs +xer +xer +xxs +oKz +oKz +oKz +oKz +oKz +oKz +xer +xer +xer +seE +seE +seE +ldx uux -abX -aud -abX -abX -adT +eEQ +grj +eEQ +eEQ +kVq uux aBf ccK @@ -85375,7 +77752,7 @@ vuJ pPi tgC tgC -vsy +fxt gih gih gih @@ -85385,9 +77762,9 @@ gih gih gih gih -vsy +fxt ekJ -fst +evD ekJ ekJ wFG @@ -85480,40 +77857,40 @@ aad aad aad uux -abF -abV -abF +vdB +iGq +vdB aYz -bAr -bUo -abX -aek -aek -aeT -bSG -aeT -aeT -bMR -bUo -bUo -aeT -aeT -aeT -aeT -aek -aek -abX -bUo -eSs -bAr -bAr -bXa -abX -aue -aiV -awv -mcD -adz +seE +xer +eEQ +dCg +dCg +kne +pop +kne +kne +xxs +xer +xer +kne +kne +kne +kne +dCg +dCg +eEQ +xer +oEM +seE +seE +xBY +eEQ +kpG +vUF +jCa +hWS +meL ccz vEp chN @@ -85524,7 +77901,7 @@ chN cgE cgE ceQ -aFj +fcz jUA jUA cei @@ -85557,30 +77934,30 @@ sKg sKg sKg daq -daq +lWr daq daq sKg sKg sKg sKg -qoD +bTB tgC tgC vuJ vuJ tgC -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy -vsy +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt +fxt ekJ ekJ ekJ @@ -85679,36 +78056,36 @@ aYz aYz aYz aYz -acV -abU -bDq +ldx +wmq +jnR aCP aBy azU auz asp aEC -bMR -bMR -bOh +xxs +xxs +hMD azU aBy aBy asp aCP aDa -abX -abU -bAr -bAr -aqU +eEQ +wmq +seE +seE +vTH uux -abX -aeC -wqI -aww -aeB -adz +eEQ +wQq +vJP +wAK +tGA +meL vEp vEp chN @@ -85870,39 +78247,39 @@ aad aad aad aYz -aur -abW -acm -acA -bAr -bUo -bDq +cJI +pvV +qsX +eWL +seE +xer +jnR auz bRl bRl bRl bRl agn -bMR -bMR -bOh +xxs +xxs +hMD bRl bRl bRl bRl bRl aDh -abX -bUo -bAr -bAr -aqV +eEQ +xer +seE +seE +sIx uux -acE -acE +nqG +nqG uux -acE -acE +nqG +nqG uux aBf vEp @@ -86065,21 +78442,21 @@ aad aad aad aYz -abH -abX -bUo -bAr -bAr -ady -bDq +kCq +eEQ +xer +seE +seE +ejR +jnR auz bRl bRl bRl bBO ago -bMQ -bMQ +lpa +lpa aim ajb ajF @@ -86087,15 +78464,15 @@ akh bRl bRl aEN -qOm -ady -bAr -bAr -aqW -adz -atj -auf -adz +wvl +ejR +seE +seE +ipA +meL +xKT +evo +meL awx axX vEp @@ -86104,7 +78481,7 @@ vEp cdx cdx chN -aOr +rIq cgE cgE cgE @@ -86121,7 +78498,7 @@ daq daq daq daq -bjk +bYP sKg sKg sKg @@ -86176,7 +78553,7 @@ wFG wFG ekJ ekJ -fst +evD oDw lTW fKT @@ -86260,21 +78637,21 @@ aad aad aad aYz -abI -abX -bUo -acp -bAr -ady -bDq +oqY +eEQ +xer +bkj +seE +ejR +jnR auz bRl aeW bRl aeY -agp -bMP -bMP +rdR +bVk +bVk ain aim ajb @@ -86282,14 +78659,14 @@ ajF akh aeW aEC -qOm -ady -bAr -bAr -aqX +wvl +ejR +seE +seE +kVS uux -atk -aug +lxH +ceU uux awy vEp @@ -86455,37 +78832,37 @@ aad aad aad aYz -abJ -abW -acn -acB -bAr -ady -bDq +oOE +pvV +uPj +nMw +seE +ejR +jnR azU bRl bRl bRl aeY -agq -ahh +wkE +nKf ahH -ahh +nKf ain ago aki akO bRl aDR -qOm -ady -bAr -bAr -bAr -bXa -aeS -aeS -avk +wvl +ejR +seE +seE +seE +xBY +oKz +oKz +jXG awz cdx cdx @@ -86653,34 +79030,34 @@ aYz aYz aYz aYz -acE -acE +nqG +nqG aYz -bex +hNJ auz bRl bRl bBO afw -agr -ags +oDW +rzm ahI aio -ahi -ajG +hPA +rMO bRj akO bRl aEN -abX -ady -byl -acp -aoY +eEQ +ejR +csx +bkj +xeu uux -aeS -aeS -sBf +oKz +oKz +dWw awz cdx cdx @@ -86846,36 +79223,36 @@ aad aad aad aYz -bcR -aco -bey -acZ -adz -bDq +jUa +iKa +ltB +ueR +meL +jnR aCP bRl bRl aeY -afx -afY -ahi -bMP -ahh -ahh -bQg +gvg +vvz +hPA +bVk +nKf +nKf +wKm bRj akP bRl aEN -abX -ady -bAr -bAr -bAr -bXa -aeS -aeS -tgr +eEQ +ejR +seE +seE +seE +xBY +oKz +oKz +mlz eOz axZ chN @@ -87041,35 +79418,35 @@ aad aad aad aYz -bcS -bAr -acF -ada -adz -adX +uyZ +seE +kLy +sAr +meL +uDu aBy bRl bBO afw -afX -afY +uQV +vvz ahj -ahJ -ahh -ahh -bMP +iUq +nKf +nKf +bVk akj -akQ -bSF -bSF -bUo -ady -bAr -bAr -aqY +rhj +mmQ +mmQ +xer +ejR +seE +seE +dQC uux -atk -aug +lxH +ceU uux awB aya @@ -87236,36 +79613,36 @@ aad aad aad aYz -aZZ -acp +lVP +bkj aYz -acE +nqG aYz -bex +hNJ asp bRl aeY -afx -afY +gvg +vvz bKK ahk -ahh -ahm -ahi -bMP +nKf +sgj +hPA +bVk akj -bMR -bMR -bMR -bUo -ady -bAr -bAr -aqZ -adz -atl -auh -adz +xxs +xxs +xxs +xer +ejR +seE +seE +cbr +meL +bhi +noA +meL awC ayc vEp @@ -87329,7 +79706,7 @@ vuJ tgC tgC tgC -qoD +bTB tgC tgC tgC @@ -87431,38 +79808,38 @@ aad aad aad aYz -abY -bAr +vij +seE aYz -adb -bBQ -bDq +qzd +pto +jnR aBy bRl aeY -afx -afY -ags +gvg +vvz +rzm ahj ahL aip -ahh -bMP +nKf +bVk akj -bMR -bMR -bMR +xxs +xxs +xxs ane -ady -bAr -acp -aqZ +ejR +seE +bkj +cbr uux -acE -acE +nqG +nqG uux -acE -acE +nqG +nqG uux cbN vEp @@ -87511,7 +79888,7 @@ mLn mLn mLn mLn -qoD +bTB rRl kyr tgC @@ -87626,39 +80003,39 @@ aad aad aad aYz -abZ -aZZ -bXa -bAr -bBQ -adX +pKI +lVP +xBY +seE +pto +uDu asp bRl aeZ afy -afX -afY -ahh -ahJ -ahh -ahh -bMP +uQV +vvz +nKf +iUq +nKf +nKf +bVk akj -bSG -bSG -bSG -bUo -ady -aoX -bAr -aqZ +pop +pop +pop +xer +ejR +eol +seE +cbr uux -atm -aeC -avl -awD -ayd -adz +baz +wQq +ufd +cae +vAu +meL axX vEp chN @@ -87676,7 +80053,7 @@ cgE cgE cpW cnu -aYy +uXF cnu aVQ aVQ @@ -87824,36 +80201,36 @@ aYz aYz aYz aYz -adc -bBQ -bDq +xWa +pto +jnR azU bRl bRl aeY -afx -afY -ahh -ahM -ahh -ahh -bQg +gvg +vvz +nKf +fOv +nKf +nKf +wKm bRj akS bRl aEC -abX -ady -bAr -bAr -bAr -bXa -abX -aiV -aei -aiV -fjs -adz +eEQ +ejR +seE +seE +seE +xBY +eEQ +vUF +fBH +vUF +qwr +meL vEp vEp chN @@ -87918,7 +80295,7 @@ vuJ tgC tgC tgC -qoD +bTB tgC tgC tgC @@ -88017,37 +80394,37 @@ aad aad aja aYz -aYA -acG -bAr -bBQ -adX +mxU +itu +seE +pto +uDu auz bRl bRl aeZ afy -agt +iZY ahl ahN aiq -ags -ahi +rzm +hPA bRj bRl akO aEC -abX -ady -bAr -apM -lPK +eEQ +ejR +seE +xzJ +hyI uux -abX -abX -bZh -abX -abX +eEQ +eEQ +mlQ +eEQ +eEQ uux aBf vEp @@ -88124,7 +80501,7 @@ mLn mLn mLn mLn -qoD +bTB tgC tgC tgC @@ -88212,45 +80589,45 @@ aad aad aad aYz -aYA -acH -acp -bBQ -bDq +mxU +qwq +bkj +pto +jnR asp bRl bRl bRl aeY -agq -ahm -ahm -air +wkE +sgj +sgj +kNp ais agv akk akT bRl aEN -abX -ady -aoY +eEQ +ejR +xeu uux uux arQ uux uux uux -ajE -abU -adz +wqz +wmq +meL awx ccK chN cdx cdx cdx -aOr +rIq cgE cgE cgE @@ -88300,7 +80677,7 @@ mLn mLn mLn mLn -qoD +bTB tgC tgC vuJ @@ -88407,19 +80784,19 @@ aad aad aad aYz -aYA -acH -bAr -bBQ -bDq +mxU +qwq +seE +pto +jnR aBy bRl bRl bRl aeY -agu -bMP -bMP +cEJ +bVk +bVk ais bPo bQi @@ -88427,18 +80804,18 @@ bQj akm bRl aEC -abX -ady -bAr -bXa -bAr -bAr -bAr -bAr -bXa -bUo -bUo -adz +eEQ +ejR +seE +xBY +seE +seE +seE +seE +xBY +xer +xer +meL vEp vEp chN @@ -88470,7 +80847,7 @@ aVQ cnu cnu cnu -aYy +uXF cpW cpW cpW @@ -88522,7 +80899,7 @@ vuJ vuJ tgC wFG -fst +evD aad aad aad @@ -88602,19 +80979,19 @@ aad aad aad aYz -aYA -acG -bAr -bBQ -bDq +mxU +itu +seE +pto +jnR aCP bRl aeW bRl aeZ agv -bMQ -bMQ +lpa +lpa bPo bQi bQj @@ -88622,17 +80999,17 @@ akm bRl bRl aEN -abX -ady -aoY +eEQ +ejR +xeu uux -bAr -acp -bAr -bAr +seE +bkj +seE +seE uux -aub -bXQ +ngl +iXI uux aly axX @@ -88684,7 +81061,7 @@ tgC kyr tgC tgC -qoD +bTB mLn mLn mLn @@ -88799,35 +81176,35 @@ aad aYz aYz aYz -add -bUo -bDq +djm +xer +jnR auz bRl bRl bRl bRl bRl -ahf -bMR -bOh +hXn +xxs +hMD bRl bRl bRl aeW bRl aEC -abX -abU -bAr +eEQ +wmq +seE uux -arb -arb -arb -arb +saR +saR +saR +saR uux uux -ayf +uyf uux aly aly @@ -88994,27 +81371,27 @@ uux uux uux uux -ade -adA -bDq +ugd +haO +jnR asp asp asp asp asD auz -ahf -bMR -bOh +hXn +xxs +hMD aBy aBy asp asp aBy aEN -abX -bUo -bAr +eEQ +xer +seE uux uux uux @@ -89022,7 +81399,7 @@ uux uux uux uux -bXQ +iXI uux aly aly @@ -89047,7 +81424,7 @@ aVQ aVQ aVT aXu -aYy +uXF aVQ aVS aXt @@ -89064,7 +81441,7 @@ aVQ aVQ aVQ aVR -aYy +uXF cnu cnu cnu @@ -89186,38 +81563,38 @@ aad aad aad uux -aca -bEE -bbn -bAr -bUo -bZh -aep -aep -afa -afa -afa -afa -bUo -bUo -bUo -afa -afa -afa -afa -aep -aep -abX -bUo -bAr -apN +ozX +nqE +bPW +seE +xer +mlQ +oRf +oRf +oWe +oWe +oWe +oWe +xer +xer +xer +oWe +oWe +oWe +oWe +oRf +oRf +eEQ +xer +seE +osE uux aad aad aad aad uux -bXQ +iXI uux uux uux @@ -89381,42 +81758,42 @@ aad aad aad uux -acb -acq +aoy +vYO uux -adf -bAr -bUo -bUo -abU -afb -aeS -aeS -aeS -aeS -bAr -ait -aeS -aeS -akn -aeS -bUo -abU -bUo -bAr -bAr -apO +rjp +seE +xer +xer +wmq +tFj +oKz +oKz +oKz +oKz +seE +jYg +oKz +oKz +hMB +oKz +xer +wmq +xer +seE +seE +pYt uux uux uux arQ uux uux -bXQ -bXQ -bXQ -bXQ -bRU +iXI +iXI +iXI +iXI +mGR chN cdx cdx @@ -89579,39 +81956,39 @@ uux uux uux uux -adg -bAr -adY -aeq -bAr -aeq -bAr -bAr -agx -aeq -bAr -aeq -bAr -agx -bAr -bRT -bAr -bAr -bAr -bAr -bAr -bAr -bRU -cOB -bXQ -bXQ -bXQ -fQG -bXQ -bXQ -bXQ -bXQ -bRU +uzo +seE +mlp +hJS +seE +hJS +seE +seE +dFd +hJS +seE +hJS +seE +dFd +seE +bZc +seE +seE +seE +seE +seE +seE +mGR +cri +iXI +iXI +iXI +otJ +iXI +iXI +iXI +iXI +mGR chN cdx cdx @@ -89777,31 +82154,31 @@ uux aYz aYz uux -aer -aeE -aer -bAr -bAr -bAr -aho -aer -aiu +lOU +xhX +lOU +seE +seE +seE +fGy +lOU +svo uux -acE -acE +nqG +nqG uux uux -amp -amp -amp +dIp +dIp +dIp uux uux uux uux -bXQ -fQG -bXQ -awE +iXI +otJ +iXI +rgT uux uux uux @@ -89971,19 +82348,19 @@ aad aad aad uux -adZ -bEE -bEE -afc -bEE -afd -agy -bEE -bEE -aiv +fdn +nqE +nqE +qeh +nqE +hpN +lSa +nqE +nqE +kJn uux -ajH -afe +gSN +qka uux uux uux @@ -89993,10 +82370,10 @@ uux aly aly uux -bXQ -cOB -bXQ -awF +iXI +cri +iXI +xrk uux aad aad @@ -90037,7 +82414,7 @@ cnu cnu cnu cnu -aYy +uXF aVQ aVQ aVQ @@ -90166,19 +82543,19 @@ aad aad aad uux -aea -bEE -aeF -afd -bEE -bEE -bEE -bEE -afd -bEE -xpC -ajI -ajI +rVy +nqE +nKI +hpN +nqE +nqE +nqE +nqE +hpN +nqE +nyf +oir +oir uux aly aly @@ -90188,7 +82565,7 @@ aly aly aly uux -atn +mMo uux uux uux @@ -90206,7 +82583,7 @@ cdx chN chN chN -aOr +rIq cgE cgE cpW @@ -90263,7 +82640,7 @@ rRl tgC tgC tgC -qoD +bTB tgC tgC aad @@ -90361,21 +82738,21 @@ aad aad aad uux -aeb -bEE -bEE -bEE -afA -aga -prA -bEE -bEE -bEE -bEE -bEE -aZZ -bRU -fQG +oNx +nqE +nqE +nqE +rQm +rsc +eZR +nqE +nqE +nqE +nqE +nqE +lVP +mGR +otJ vEp vEp apP @@ -90383,7 +82760,7 @@ vEp vEp vEp vEp -fQG +otJ aad aad aad @@ -90448,7 +82825,7 @@ tgC tgC tNK tgC -qoD +bTB aad aad aad @@ -90556,19 +82933,19 @@ aad aad aad uux -aec -aZZ -aZZ -afe +ftN +lVP +lVP +qka uux uux uux -ahp -ahp -aZZ -bEE -bEE -aZZ +vgT +vgT +lVP +nqE +nqE +lVP uux aad vEp @@ -90605,7 +82982,7 @@ cpW cpW cpW cpW -aYy +uXF aVQ aVQ aVR @@ -90761,9 +83138,9 @@ uux uux uux uux -aje -ajJ -aje +iLv +pBv +iLv uux aad aad @@ -90811,7 +83188,7 @@ cnu cnu beH cnu -aYy +uXF aad aad aad @@ -91379,7 +83756,7 @@ aad aad aad aad -aYy +uXF bAa cnu cnu diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index a949bcdcb2..7e1b55b8ed 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -15,51 +15,9 @@ }, /turf/open/space, /area/space) -"aac" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" - }, -/area/space) -"aad" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, -/area/space) -"aae" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, -/area/space) -"aaf" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, -/area/space) "aag" = ( /turf/open/floor/almayer_hull, /area/space) -"aah" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space) -"aai" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull) -"aaj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) "aak" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -73,331 +31,28 @@ }, /turf/open/space/basic, /area/space) -"aal" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"aam" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"aan" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aao" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aap" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"aaq" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"aar" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_s) -"aas" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/repair_bay) -"aau" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/pilotbunks) -"aav" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/repair_bay) -"aaw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aax" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"aay" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"aaz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) "aaC" = ( /obj/structure/lattice, /turf/open/space/basic, /area/space) -"aaD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"aaE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aaF" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"aaG" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"aaH" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/stair_clone/upper) -"aaI" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"aaJ" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"aaK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"aaL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aaO" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aaW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"aaN" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"aaQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) "aaY" = ( /obj/structure/lattice, /turf/open/space, /area/space) -"aba" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"abd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"abe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) "abf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"abg" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) "abh" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north2) @@ -409,105 +64,29 @@ /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"abl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"abp" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_s) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) -"abt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"abu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) "abw" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north1) -"abx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"abA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"abz" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) "abB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"abC" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) "abE" = ( /turf/closed/wall/almayer, /area/almayer/living/basketball) -"abF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"abG" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"abH" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) "abK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -518,84 +97,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"abM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"abR" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"abS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"abT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"abU" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"acc" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) +"abX" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"ace" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) -"acg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"ach" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aci" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/living/basketball) "acj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -630,12 +141,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"ack" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/charlie) "acl" = ( /turf/open/floor/wood/ship, /area/almayer/living/basketball) @@ -697,21 +202,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"aco" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/chapel) -"acp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/delta) "acq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -725,25 +215,6 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"acs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"act" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) "acu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -762,68 +233,9 @@ "acx" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north2) -"acz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"acA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"acC" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"acD" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"acE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/north2) -"acF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"acG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"acH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) +"acB" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) "acI" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -834,20 +246,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"acJ" = ( -/mob/living/silicon/decoy/ship_ai{ - layer = 2.98; - pixel_y = -16 - }, -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) "acK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -864,22921 +262,1760 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"acM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ +"acW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"acN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"adj" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/weapon_room) -"acO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"adq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north1) +"adu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"adv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"adz" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"adG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"adO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/starboard_atmos) +"adX" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"acP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"adZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"acT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"acU" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer{ - icon_state = "plate" +"aea" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aef" = ( +/turf/open/floor/almayer, /area/almayer/living/basketball) -"acV" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"acW" = ( +"aej" = ( +/turf/closed/wall/almayer, +/area/almayer/living/officer_study) +"ael" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cafeteria_officer) +"aep" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/airmix) +"aer" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"acX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" +/area/almayer/living/offices/flight) +"aet" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"aex" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 12 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"acY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +"aeA" = ( +/turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"acZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/effect/landmark/map_item, +"aeE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"aeH" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"adb" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"adc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"add" = ( -/turf/open/floor/almayer{ - icon_state = "mono" + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/lifeboat_pumps/north1) -"adf" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"aeJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hull/upper_hull/u_m_s) -"adg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"adi" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"adj" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, +/area/almayer/lifeboat_pumps/north1) +"aeX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"adk" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"afg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/platform{ +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"afj" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afk" = ( +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ado" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/starboard_garden) -"adp" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"adq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north1) -"adr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"adt" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"adu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"ady" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"afs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"adC" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 - }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"adD" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, /area/almayer/living/basketball) -"adE" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"afy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"afF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"afK" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hull/upper_hull/u_a_s) -"adF" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"afQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"agc" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"agj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"agr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"agu" = ( +/turf/open/floor/almayer, +/area/almayer/living/officer_study) +"agx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"agz" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"agA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/plating, /area/almayer/living/basketball) -"adG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_missiles) -"adH" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ +"agM" = ( +/obj/structure/pipes/unary/outlet_injector{ dir = 8; - icon_state = "green" + name = "Waste Air Injector" }, -/area/almayer/hallways/aft_hallway) -"adI" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 }, -/area/almayer/hull/upper_hull/u_m_p) -"adO" = ( -/turf/closed/wall/almayer, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"ahc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"ahh" = ( +/turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/starboard_atmos) -"adP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" +"aho" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ahw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"adQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + pixel_y = 2 }, -/area/almayer/lifeboat_pumps/north2) -"adR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ahy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"ahF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"ahJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"ahK" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/offices/flight) -"adT" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ahN" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"ahP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ahQ" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/area/almayer/hallways/aft_hallway) -"adZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"ahR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"aea" = ( -/obj/structure/machinery/light{ +/area/almayer/living/chapel) +"aiq" = ( +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"air" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aeb" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/starboard_hallway) -"aec" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/north1) -"aed" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"aee" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/north1) -"aef" = ( +/area/almayer/living/cafeteria_officer) +"aiw" = ( /turf/open/floor/almayer, -/area/almayer/living/basketball) -"aeh" = ( +/area/almayer/engineering/starboard_atmos) +"aiG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices/flight) -"aei" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aiM" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/area/almayer/lifeboat_pumps/north1) -"aej" = ( -/turf/closed/wall/almayer, -/area/almayer/living/officer_study) -"ael" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"aiX" = ( /turf/closed/wall/almayer, -/area/almayer/living/cafeteria_officer) -"aem" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/living/pilotbunks) +"aje" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajf" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajj" = ( /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aeo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/evidence_storage) -"aep" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/airmix) -"aeq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aer" = ( +/area/almayer/shipboard/brig/general_equipment) +"ajk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aet" = ( -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"aex" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"aey" = ( -/obj/structure/machinery/alarm/almayer{ +"ajl" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/upper_medical) +"aju" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aez" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"aeA" = ( -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"aeB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"ajv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"aeC" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +"ajD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/lifeboat_pumps/north2) -"aeD" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajE" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hull/upper_hull/u_f_p) -"aeE" = ( -/obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"aeG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/area/almayer/living/offices/flight) +"ajT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/living/basketball) -"aeH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"akg" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"akk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/living/basketball) -"aeI" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/area/almayer/hallways/lower/starboard_aft_hallway) +"ako" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"akr" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - name = "ship-grade camera" + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aks" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"akt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/almayer/living/basketball) -"aeJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"akz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/living/offices/flight) -"aeK" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +"akC" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/starboard_missiles) -"aeL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"aeM" = ( -/obj/structure/machinery/light{ +"alb" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"alg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"aeN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"alj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aeO" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"alk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/living/officer_study) -"aeP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"alm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4 }, -/area/almayer/living/officer_study) -"aeQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aly" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_missiles) +"alz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"alL" = ( +/turf/closed/wall/almayer, +/area/almayer/command/telecomms) +"alO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering) +"alU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"alX" = ( +/turf/open/floor/almayer, +/area/almayer/command/cic) +"amb" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/living/officer_study) -"aeR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/shower{ + dir = 1 }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"amc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/officer_study) -"aeT" = ( -/obj/structure/stairs{ +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"amg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"amx" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"amz" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"amF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"amG" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"amH" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"amV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"amY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"and" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/stair_clone/upper) -"aeU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/shower{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"aeW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"ane" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ank" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/lower/l_m_s) +"anM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"aeX" = ( +"anP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"anW" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aeY" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/hangar) +"anY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/waterhazard{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aoa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"aoe" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/morgue) +"aoi" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"aoy" = ( +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"aeZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"afa" = ( -/obj/structure/machinery/light{ +"aoC" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_missiles) -"afc" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"afd" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"afe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/area/almayer/lifeboat_pumps/north1) +"aoJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 }, +/area/almayer/medical/containment/cell) +"aoL" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"aff" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ +/area/almayer/living/offices/flight) +"aoP" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "p_stair_full" + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"afj" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afk" = ( -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afl" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"afm" = ( -/turf/open/floor/almayer_hull{ - dir = 6; - icon_state = "outerhull_dir" - }, -/area/space) -"afq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"afr" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/area/almayer/command/telecomms) +"apa" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/device/analyzer, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"api" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) -"afs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"apk" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/basketball) -"afu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/stair_clone/upper) +"apn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"apy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -5; + pixel_y = 16 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 3; + pixel_y = 16 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 11; + pixel_y = 16 }, -/obj/structure/platform{ - dir = 4 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/pipe{ + layer = 2.8; + pixel_x = 14 }, -/turf/open/floor/almayer{ +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"apU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "silver" + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/hallways/repair_bay) -"afv" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"afx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/repair_bay) -"afy" = ( -/obj/structure/machinery/light{ +/turf/closed/wall/almayer/research/containment/wall/purple{ dir = 8 }, +/area/almayer/medical/containment/cell) +"aqf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"afz" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/vehiclehangar) -"afB" = ( +/area/almayer/engineering/upper_engineering) +"aqn" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/living/gym) +"aqs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/living/starboard_garden) -"afC" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/vehiclehangar) -"afD" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aqu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"aqH" = ( +/obj/structure/bed/bedroll{ + desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; + name = "cat bed" }, -/area/almayer/hallways/aft_hallway) -"afE" = ( -/obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/firealarm{ + pixel_x = -1; pixel_y = 28 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"afF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"afG" = ( -/obj/structure/machinery/light{ +/mob/living/simple_animal/cat/Jones{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/officer_study) -"afH" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"afI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"afJ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cafeteria_officer) -"afK" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"afL" = ( -/obj/structure/bed/chair, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aqU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/airoom) +"aqY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"arb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"aru" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cafeteria_officer) -"afM" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"arx" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"arD" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/engineering/starboard_atmos) -"afN" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"arT" = ( +/obj/structure/target{ + name = "punching bag" }, -/area/almayer/engineering/starboard_atmos) -"afO" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/living/gym) +"arV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"asa" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/engineering/starboard_atmos) -"afP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"asi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"asn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"asr" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/engineering/starboard_atmos) -"afQ" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"asA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"afT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/area/almayer/lifeboat_pumps/north2) +"asM" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"asT" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"asY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/shipboard/starboard_missiles) -"afX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"afZ" = ( -/obj/structure/bed/chair/comfy/blue{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ata" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/ladder{ + height = 2; + id = "cicladder1" }, -/area/almayer/command/cichallway) -"aga" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atb" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder2" }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atg" = ( +/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"agb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"agc" = ( -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"age" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/upper_hull/u_f_s) -"agf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"agi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"agj" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/commandbunks) -"agl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, +/area/almayer/command/lifeboat) +"atm" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"agn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"ago" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"agq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, +/area/almayer/command/telecomms) +"atn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/basketball) -"agr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ags" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/officer_study) -"agu" = ( -/turf/open/floor/almayer, -/area/almayer/living/officer_study) -"agv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"agw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"agy" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"agA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/basketball) -"agB" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"agG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"atp" = ( /obj/structure/stairs/perspective{ - icon_state = "p_stair_full" + dir = 4; + icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"agH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"agI" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/officer_study) -"agJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"agK" = ( -/obj/structure/bed/chair{ +/area/almayer/lifeboat_pumps/north2) +"atq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"atr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"atT" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/living/officer_study) -"agM" = ( -/obj/structure/pipes/unary/outlet_injector{ +/obj/structure/window/reinforced{ dir = 8; - name = "Waste Air Injector" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"agN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" + health = 80 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"agO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/officer_study) -"agQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/living/pilotbunks) +"atW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/living/cafeteria_officer) -"agS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/living/starboard_garden) -"agT" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"auu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/cafeteria_officer) -"agU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auA" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"agV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cafeteria_officer) -"agX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"agY" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cafeteria_officer) -"ahb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_a_p) -"ahc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, /turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"ahd" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/area/almayer/engineering/upper_engineering) +"auJ" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"auK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/hull/lower_hull/l_f_s) -"ahe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"auQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"auW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_point_defense) +"avc" = ( +/obj/structure/stairs/perspective{ dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cafeteria_officer) -"ahf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/engineering/starboard_atmos) -"ahg" = ( -/obj/structure/machinery/light/small{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"ahh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/starboard_atmos) -"ahi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"ahj" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"ahk" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"ahl" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/starboard_garden) -"ahn" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"aho" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"avg" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"avo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/powered/agent) +"avs" = ( +/turf/closed/wall/biodome, +/area/almayer/powered/agent) +"avt" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"avw" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ahq" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"ahr" = ( +/area/almayer/shipboard/weapon_room) +"avx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aht" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"ahx" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"ahy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer, +/turf/open/floor/grass, /area/almayer/living/starboard_garden) -"ahz" = ( +"avE" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"avU" = ( +/obj/effect/landmark/start/crew_chief, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"avY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"avZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"ahB" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"ahE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_f_s) -"ahG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/starboard_atmos) -"ahH" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"ahJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"ahM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"ahN" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"ahR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ahS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"ahU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ahV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"aia" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/officer_study) -"aib" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/vehiclehangar) -"aic" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aid" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/officer_study) -"aie" = ( -/obj/effect/landmark/railgun_computer, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"aig" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"aih" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cafeteria_officer) -"aii" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"aij" = ( +"awc" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 1; name = "ship-grade camera" }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cafeteria_officer) -"aik" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"ail" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"aim" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"ain" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cafeteria_officer) -"aio" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"awd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/pilotbunks) +"awe" = ( +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"awy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"aip" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"aiq" = ( /turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"air" = ( -/obj/structure/bed/chair{ +/area/almayer/engineering/upper_engineering) +"awz" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cichallway) +"awC" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_missiles) +"awF" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/numbertwobunks) +"awW" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"axc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"ais" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"ait" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"aiv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aiw" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"aiy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aiz" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"aiA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"aiB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aiC" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"aiE" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aiH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"aiJ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"aiP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"aiR" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"aiS" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aiT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aiU" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aiV" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"aiX" = ( -/turf/closed/wall/almayer, -/area/almayer/living/pilotbunks) -"aiZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"ajd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"aje" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajj" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"ajk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajl" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/upper_medical) -"ajp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"ajr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"ajs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"ajt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"aju" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajz" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"ajB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; +/obj/item/tool/warning_cone{ + pixel_x = -20; pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajC" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"ajD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"ajG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"ajH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"ajJ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"ajL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"ajM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ajN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"ajO" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"ajP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"ajQ" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"ajR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"ajS" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"ajT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"ajX" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"ajY" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" - }, -/area/space) -"ajZ" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"aka" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"akb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"akc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"akd" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_a_s) -"ake" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"akr" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"akt" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"aku" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"akv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/device/camera{ - pixel_x = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"akw" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"akx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aky" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"akz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"akA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"akC" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/starboard_missiles) -"akE" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"akH" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"akI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"akJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"akK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"akL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"akO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"akQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"akS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"akT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"akU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"akV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"akW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"akY" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_garden) -"ald" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"ale" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"alf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"alg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"ali" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"alk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"all" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"alp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"alq" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"als" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"alw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"alx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/starboard_hallway) -"aly" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_missiles) -"alD" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"alE" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"alG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"alH" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/hull/upper_hull) -"alI" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/repair_bay) -"alJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"alK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"alL" = ( -/turf/closed/wall/almayer, -/area/almayer/command/telecomms) -"alO" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering) -"alP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"alQ" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"alR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"alT" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"alU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"alW" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"alX" = ( -/turf/open/floor/almayer, -/area/almayer/command/cic) -"alZ" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/cic) -"amb" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"amd" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"amg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"amh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"amj" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/repair_bay) -"amk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"amo" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"amp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"amw" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"amx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"amz" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"amA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"amC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"amD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"amF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"amH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"amI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"amJ" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"amK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"amL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"amN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"amO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"amP" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"amQ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"amR" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"amS" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"amT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"amU" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"amW" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"amX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"amY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"ana" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"anb" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"anc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"and" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"anf" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"anh" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"ani" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"anm" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"ano" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"ans" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"ant" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"anu" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_a_s) -"anw" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"anz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"anB" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"anC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"anD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"anG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"anH" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"anI" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"anJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"anK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"anL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"anM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"anO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"anP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"anR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"anS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"anT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/repair_bay) -"anU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices/flight) -"anV" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"anW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"anX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aoa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"aoc" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"aod" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aoe" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/morgue) -"aof" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoh" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"aoi" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"aol" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aom" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aop" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"aoq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"aor" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"aos" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aot" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"aou" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"aov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aow" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"aoy" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoA" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aoB" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aoC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"aoE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aoF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"aoG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aoH" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"aoI" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aoJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"aoK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"aoL" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aoM" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aoQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aoR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"aoS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aoT" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aoU" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"aoV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"aoW" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aoX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"apa" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/device/analyzer, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"apc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"apd" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"ape" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"apf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"apg" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"api" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"apj" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"apk" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"apl" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"apm" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"apo" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"app" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"apq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"apr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"aps" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"apt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"apu" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"apv" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"apz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"apA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"apB" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) -"apC" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"apE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"apI" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull) -"apJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"apK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"apL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"apM" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"apO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"apP" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"apR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"apS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 - }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"apT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"apU" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"apV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"apW" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"apX" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"apY" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"apZ" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aqa" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aqb" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aqc" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aqd" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aqe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aqf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aqg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aqh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aqj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"aqk" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"aqm" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"aqo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/offices) -"aqp" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aqq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"aqs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aqu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"aqw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"aqx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"aqy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"aqz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"aqD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aqF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aqG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/medical_science) -"aqI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"aqJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aqK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"aqM" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aqN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aqP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/containment/cell) -"aqS" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"aqT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aqU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/airoom) -"aqV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aqW" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aqY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"arb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"ard" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"are" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"arf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"arg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"arh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"ari" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"arj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"ark" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"arl" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/telecomms) -"arm" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"arn" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"arp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"arq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"arr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"ars" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"arw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"arz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"arA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"arC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"arE" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"arF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"arG" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"arH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"arJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"arK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"arO" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"arP" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"arR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cic) -"arT" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"arV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"arX" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"arZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"asc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"ase" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/pilotbunks) -"asf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/pilotbunks) -"asj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"ask" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"asl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"asm" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"asn" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"aso" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"asp" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"ast" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"asv" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"asw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"asx" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"asy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"asA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"asB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"asD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - pixel_y = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"asE" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engineering_workshop/hangar) -"asF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "\improper AI Reception"; - req_access = null; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"asG" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"asH" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"asI" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"asJ" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"asK" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"asL" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"asM" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"asN" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cic) -"asO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"asP" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"asQ" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"asR" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/command/cic) -"asS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_garden) -"asT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"asU" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"asW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"asX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"asY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"asZ" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, -/area/almayer/command/airoom) -"ata" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atb" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"atd" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"ate" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"atf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"atg" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ath" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = -24 - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"ati" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"atj" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"atk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"atl" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"atm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"atn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"ato" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"atp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"atq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"atr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ats" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"att" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"atu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"atv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"atw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aty" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"atz" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"atA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Spare Bomb Suit"; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"atC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"atD" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"atE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"atF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"atG" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"atI" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"atJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"atK" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"atL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"atM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"atN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"atO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"atP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"atS" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine/uscm/command/capt{ - name = "Commanding Officer's Fax Machine"; - pixel_y = 3; - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"atT" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"atU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"atV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"atY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/lifeboat) -"atZ" = ( -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aua" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aub" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"auc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"aud" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aue" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"auf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/closed/wall/almayer/white/hull, -/area/almayer/command/airoom) -"aug" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"auh" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aui" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"auj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"auk" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"aul" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"aum" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"aun" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"auo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aup" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aur" = ( -/obj/structure/reagent_dispensers/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aus" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aut" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"auu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"auw" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aux" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"auy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auB" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"auC" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"auD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"auE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"auF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"auG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"auH" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"auI" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"auK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"auL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"auM" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"auN" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"auO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"auP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"auQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"auS" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"auT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/command/cic) -"auU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"auV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"auW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_point_defense) -"auX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/port_point_defense) -"auY" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"auZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"ava" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"avb" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"avc" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"avd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ave" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"avi" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"avj" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"avk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"avl" = ( -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"avm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"avn" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"avo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/powered/agent) -"avr" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"avs" = ( -/turf/closed/wall/biodome, -/area/almayer/powered/agent) -"avu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"avv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"avw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"avx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"avz" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/general_equipment) -"avB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/navigation) -"avC" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered/agent) -"avD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"avF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"avG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"avH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"avJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"avK" = ( -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"avM" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"avN" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"avO" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"avP" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"avQ" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"avR" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"avS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/command/cic) -"avT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"avU" = ( -/obj/effect/landmark/start/crew_chief, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"avV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"avW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"avX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"avY" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"avZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"awa" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/powered/agent) -"awb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"awd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/pilotbunks) -"awe" = ( -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"awi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"awj" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"awk" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"awm" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/command/cic) -"awn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"awp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"awq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"awt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"awu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"awv" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aww" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"awx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/command/telecomms) -"awy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"awz" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cichallway) -"awA" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"awB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"awC" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_missiles) -"awD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"awE" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliason) -"awF" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/numbertwobunks) -"awG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"awH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"awJ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"awM" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"awQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"awR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"awS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/captain_mess) -"awW" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"awX" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/pilotbunks) -"awY" = ( -/obj/effect/landmark/start/pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"awZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/pilotbunks) -"axa" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"axc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"axe" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"axk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"axl" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"axm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"axn" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"axo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/telecomms) -"axp" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/command/cic) -"axs" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"axu" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"axw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"axx" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axD" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"axE" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"axI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"axV" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"axW" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"axX" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aya" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"ayb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"ayc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"ayd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"aye" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"ayh" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"ayi" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"ayj" = ( -/obj/effect/landmark/start/cargo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"ayl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ayn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"ayo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"ayq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"ayr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"ays" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"ayt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"ayu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cic) -"ayw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/navigation) -"ayz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/command/cic) -"ayD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"ayE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"ayG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"ayH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"ayI" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"ayK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"ayP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"ayQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"ayR" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"ayT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"ayU" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"ayV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"ayW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"ayX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"ayZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"azb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/aft_hallway) -"azc" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"azd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/command/telecomms) -"aze" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"azh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"azi" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"azk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"azn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"azo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"azq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"azr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"azs" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"azt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"azw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"azA" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"azB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"azC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"azD" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"azE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"azG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"azH" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_p) -"azI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"azJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - req_one_access_txt = "3;19;22" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"azS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"azT" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"azU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"azV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Normandy Remote Control Console"; - shuttleId = "dropship_normandy" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"azW" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"azX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Alamo Remote Control Console"; - shuttleId = "dropship_alamo" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"azY" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"azZ" = ( -/obj/structure/machinery/keycard_auth, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aAb" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"aAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aAf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aAj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"aAl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"aAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aAr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"aAv" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"aAy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"aAA" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, -/area/almayer/command/cic) -"aAB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/groundside_operations{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aAC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aAE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aAF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAG" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/morgue) -"aAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aAL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"aAP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cic_exterior"; - name = "CIC Door Control"; - normaldoorcontrol = 1; - pixel_y = -14; - req_one_access_txt = "19" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"aAW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"aAZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aBa" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"aBb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aBc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aBd" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"aBe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"aBf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"aBg" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aBh" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBi" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aBk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aBm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aBn" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBq" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"aBr" = ( -/obj/structure/ladder{ - height = 2; - id = "engineeringladder" - }, -/turf/open/floor/plating/almayer, -/area/almayer/engineering/upper_engineering) -"aBs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aBt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/device/radio/marine{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aBu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aBw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"aBx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBz" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"aBA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aBC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"aBD" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/basketball) -"aBE" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBG" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, -/area/almayer/command/lifeboat) -"aBH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aBI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aBP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/synthcloset) -"aBR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/item/device/whistle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aBS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"aBX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aBZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/obj/structure/machinery/computer/almayer_control{ - dir = 4; - layer = 2.99; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aCa" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aCb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aCd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"aCf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"aCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aCk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"aCl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"aCo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"aCp" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aCt" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"aCv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/corporateliason) -"aCw" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/morgue) -"aCC" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"aCD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"aCR" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"aCX" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"aCZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"aDa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aDb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/command/telecomms) -"aDc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aDe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"aDg" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aDh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"aDi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aDj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDk" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aDm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"aDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"aDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aDv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aDx" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aDz" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aDD" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"aDE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aDF" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aDH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aDK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aDO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aDQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/lifeboat) -"aDU" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aDX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"aDZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"aEe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"aEf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"aEg" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/lifeboat) -"aEi" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/morgue) -"aEj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"aEk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - pixel_y = 17 - }, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4 - }, -/obj/structure/machinery/computer/card{ - dir = 4; - pixel_y = -16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"aEm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"aEp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"aEq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aEA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"aEB" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"aEC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aED" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aEG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aEI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aEJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"aEK" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"aEM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aEN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/morgue) -"aEO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"aEQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"aES" = ( -/turf/closed/wall/almayer, -/area/almayer/living/bridgebunks) -"aET" = ( -/turf/closed/wall/almayer, -/area/almayer/living/captain_mess) -"aEV" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aEW" = ( -/turf/closed/wall/almayer, -/area/almayer/living/numbertwobunks) -"aEX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"aEZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"aFa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"aFf" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"aFg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aFh" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aFi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aFj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aFl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aFm" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFo" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aFp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aFq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aFr" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aFu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFv" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFz" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFA" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"aFB" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"aFD" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aFF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aFI" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aFJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aFN" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"aFV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"aFW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"aGb" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"aGc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"aGd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/aft_hallway) -"aGg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"aGi" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"aGj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"aGn" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"aGp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aGq" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/command/cic) -"aGr" = ( -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aGt" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"aGv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aGz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"aGC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"aGD" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"aGH" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aGN" = ( -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aGO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aGP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aGR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/basketball) -"aGV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aGW" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"aGX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"aGY" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aGZ" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/numbertwobunks) -"aHa" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"aHe" = ( -/turf/closed/wall/almayer, -/area/almayer/command/lifeboat) -"aHk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"aHl" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHn" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"aHo" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aHq" = ( -/turf/closed/wall/almayer, -/area/almayer/command/computerlab) -"aHr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aHu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aHv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aHw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aHB" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aHK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aHM" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"aHQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"aHR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"aHS" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHT" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/bedsheet/brown, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"aHU" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aHX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/numbertwobunks) -"aHY" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/starboard_missiles) -"aHZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"aIa" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"aIb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aIe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"aIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aIl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aIo" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"aIq" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aIr" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aIv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aIw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aIx" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aIB" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aID" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"aIP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"aIQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/numbertwobunks) -"aIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"aIT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"aIU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/tankerbunks) -"aIZ" = ( -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"aJa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/aft_hallway) -"aJc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/captain_mess) -"aJd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aJf" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aJg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"aJh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aJi" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aJj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aJk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aJl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aJn" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"aJp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"aJq" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"aJs" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aJw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aJz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"aJG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/command/cic) -"aJI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"aJJ" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aJL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"aJM" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"aJU" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"aKa" = ( -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKg" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aKi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES Railing"; - indestructible = 1; - name = "ARES Chamber Railings"; - needs_power = 0; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"aKu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"aKv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aKy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKz" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aKB" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aKC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aKE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aKF" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"aKG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/pilotbunks) -"aKH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/pilotbunks) -"aKI" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"aKJ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"aKN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aKO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"aKQ" = ( -/turf/closed/wall/almayer/outer, -/area/space) -"aKR" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_point_defense) -"aKS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"aKU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"aKV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"aKW" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_m_s) -"aLa" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"aLc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/phone_base{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aLd" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull) -"aLf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"aLk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aLl" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"aLp" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"aLt" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"aLB" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_hallway) -"aLC" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"aLE" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"aLF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"aLG" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aLJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aLL" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aLM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aLQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"aLS" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aLT" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aLW" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aLX" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"aLZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 - }, -/obj/item/clothing/accessory/stethoscope, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) -"aMd" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"aMg" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 - }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 - }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"aMh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull) -"aMi" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull) -"aMl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"aMm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aMo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aMr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aMs" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"aMt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aMw" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aMx" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"aMz" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"aMB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aMC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/toy/deck, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aME" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aMG" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"aMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aMI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/spec/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"aMM" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"aMO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"aMP" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"aMQ" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aMT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"aMU" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aMV" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"aMY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"aNc" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aNe" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/lifeboat) -"aNi" = ( -/turf/closed/wall/almayer, -/area/almayer/living/chapel) -"aNj" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aNm" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aNn" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aNr" = ( -/obj/effect/landmark/start/chef, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"aNs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"aNw" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aNx" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"aNG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/starboard_hallway) -"aNI" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"aNO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"aOd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"aOe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"aOg" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"aOi" = ( -/obj/effect/landmark/start/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"aOq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aOr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aOs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"aOt" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/telecomms) -"aOy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"aOz" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"aOB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aOC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aOD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aOE" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"aOF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aOG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aOH" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aOK" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aOM" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aON" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"aOP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"aOQ" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"aOR" = ( -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"aOS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"aOU" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"aOV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"aOW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"aOY" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"aPa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aPb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"aPf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aPi" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"aPj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aPl" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"aPm" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/aft_hallway) -"aPn" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"aPo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"aPr" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/living/cryo_cells) -"aPw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/lifeboat) -"aPx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"aPy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/starboard_umbilical) -"aPz" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"aPB" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/command/cic) -"aPD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aPE" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"aPH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"aPI" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/command/cic) -"aPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner2, -/area/almayer/medical/containment/cell) -"aPK" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aPX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"aPY" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"aPZ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"aQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"aQg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, -/area/almayer/command/cic) -"aQo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"aQp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"aQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"aQr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"aQs" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aQt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aQv" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"aQz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aQF" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices) -"aQG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"aQH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"aQI" = ( -/obj/effect/landmark/start/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"aQL" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aQM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_guide{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aQN" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aQT" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha) -"aQW" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"aQZ" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"aRd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/window/westright{ - dir = 4; - req_access_txt = "28" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) -"aRi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aRj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"aRo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aRp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"aRq" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aRr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aRt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, -/area/almayer/command/cic) -"aRu" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"aRv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aRx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aRy" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 - }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aRC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aRD" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/corporateliason) -"aRE" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aRF" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/morgue) -"aRG" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aRJ" = ( -/obj/structure/ladder{ - height = 2; - id = "med1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/refridgeration{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRK" = ( -/obj/structure/ladder{ - height = 2; - id = "med2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"aRS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) -"aRT" = ( -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aRU" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aRV" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aRX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aRZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"aSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"aSb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"aSh" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"aSl" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/medical_science) -"aSm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"aSn" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/hydroponics) -"aSo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"aSq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aSr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"aSt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aSv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"aSx" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aSy" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aSz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"aSA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aSB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aSC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aSE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSH" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"aSI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSJ" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aSM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom"; - dir = 2 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/commandbunks) -"aSO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_two) -"aSP" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"aSS" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"aSY" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aTa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTf" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aTg" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"aTj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aTk" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"aTn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/offices) -"aTq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"aTr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/offices) -"aTv" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"aTw" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"aTx" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aTy" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"aTz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aTA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aTB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aTE" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aTG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aTL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"aTQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aTR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aTS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"aTT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aTV" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"aTW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aTY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/offices) -"aTZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"aUa" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aUd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/port_atmos) -"aUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aUi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"aUj" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aUk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aUl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aUm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aUo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aUq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aUw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"aUx" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower_engineering) -"aUC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aUH" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/port_atmos) -"aUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"aUM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/living/offices) -"aUY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aUZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aVd" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aVf" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"aVg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) -"aVi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aVk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"aVl" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower_engineering) -"aVo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aVp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"aVr" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 - }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"aVt" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"aVC" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"aVF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/telecomms) -"aVG" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aVH" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"aVI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"aVL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aVR" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"aVU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aVV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aVW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aVX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) -"aVY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aWb" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/ce_room) -"aWc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"aWd" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"aWf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"aWk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aWl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"aWm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aWn" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aWo" = ( -/obj/structure/pipes/unary/outlet_injector, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWp" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "waste_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aWr" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower_engineering) -"aWs" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aWt" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"aWu" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"aWw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/gym) -"aWz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"aWA" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/captain_mess) -"aWD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/offices) -"aWE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"aWF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"aWH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"aWM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aWR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aWS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"aWT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"aWV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWZ" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aXb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aXc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aXe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"aXh" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aXj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aXx" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/port_atmos) -"aXA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"aXE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"aXQ" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"aXS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aXT" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"aYc" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"aYd" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"aYj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"aYm" = ( -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"aYn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"aYp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/corporateliason) -"aYq" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"aYr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aYs" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"aYt" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aYu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aYz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"aYC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"aYD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"aYE" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"aYI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aYO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aYQ" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"aYR" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"aYT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aYX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aYY" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aZe" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"aZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aZi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aZl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"aZm" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aZn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_s) -"aZr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZs" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aZz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"aZB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"aZC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"aZE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"aZF" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"aZH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"aZJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"aZK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"aZL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZM" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"aZO" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZP" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZQ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZV" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZW" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZX" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZY" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"aZZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"baa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bac" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bad" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"baf" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bag" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"bai" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bal" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"baq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bar" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bat" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"baw" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"bax" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"baB" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"baD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"baG" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"baI" = ( -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"baM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"baN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"baR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"baX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"baY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"baZ" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lower_medical_lobby) -"bbd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bbe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"bbf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bbg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bbh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bbi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bbj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bbk" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/starboard_hallway) -"bbl" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/starboard_hallway) -"bbm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/starboard_hallway) -"bbn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bbp" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"bbr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bbs" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"bbv" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bbx" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bby" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"bbz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"bbA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"bbB" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"bbC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bbL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"bbO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"bbR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"bbS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"bbV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bbX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"bbY" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bbZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bca" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bcb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcm" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bco" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bcp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bcz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bcA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bcC" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bcD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bcE" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bcK" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/chemistry) -"bcL" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bcP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"bcR" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bcS" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bcV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"bcZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bda" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"bdd" = ( -/turf/closed/wall/almayer, -/area/almayer/living/briefing) -"bdg" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bdi" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"bdj" = ( -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bdk" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"bdl" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bdm" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bdn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bdo" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bdr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bds" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdv" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdw" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"bdy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/starboard_point_defense) -"bdz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"bdA" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdD" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdH" = ( -/turf/open/space/basic, -/area/space) -"bdI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdJ" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bdK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bdM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bdO" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bdU" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bdV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdY" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"bea" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"beg" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bei" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bej" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"bek" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"ben" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"bep" = ( -/obj/structure/surface/table/almayer, -/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/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"ber" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bet" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bev" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"bew" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bez" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"beB" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"beE" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"beG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"beH" = ( -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"beI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"beP" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/almayer, -/area/almayer/squads/alpha_bravo_shared) -"beQ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"beR" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"beS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"beT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"beU" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"beV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"beW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"beZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"bfb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bfc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"bfe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"bfl" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bfm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bfn" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"bfo" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"bfs" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"bft" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"bfw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bfx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bfy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfz" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bfA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bfC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bfD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bfE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"bfJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfK" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_closed, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfL" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bfP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"bfV" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bfY" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bga" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/hallways/starboard_hallway) -"bgc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"bgj" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bgk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bgl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"bgm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"bgn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_two) -"bgr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"bgs" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"bgt" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_two) -"bgu" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"bgv" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/operating_room_one) -"bgw" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or2privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_two) -"bgy" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/operating_room_two) -"bgz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"bgA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"bgC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bgG" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"bgH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bgK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/chapel) -"bgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bgP" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bgR" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"bgU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bgW" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"bgY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bhf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"bhg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bhh" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bhn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bho" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"bhq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bht" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bhw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bhx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/chapel) -"bhB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engine_core) -"bhC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bhD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bhG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bhJ" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/bridgebunks) -"bhT" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bhU" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"biq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bit" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"biu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/chemistry) -"biy" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/cryo_tubes) -"biA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_three) -"biB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull) -"biF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/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/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"biL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"biT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"biV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"bja" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"bjb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bjd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"bje" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bjg" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"bjl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bjn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bjs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bju" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"bjy" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"bjA" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"bjI" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bjJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"bjL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"bjM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) -"bjN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"bjO" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bjR" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bjS" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bkd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bkg" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"bkh" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bks" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bkt" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bky" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/cryo_tubes) -"bkz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lockerroom) -"bkA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/chemistry) -"bkD" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/vehiclehangar) -"bkE" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or1privacyshutter"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_one) -"bkN" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"bkQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"bkR" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bkT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"bkU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/start/senior, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bkY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"bkZ" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop) -"blb" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"bld" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"blf" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"blj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"bll" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"blm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bln" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"blo" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"blp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"blq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"bls" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"blw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"blA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"blB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"blJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"blZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lockerroom) -"bmb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bmc" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/operating_room_three) -"bmd" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/operating_room_four) -"bmh" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bmi" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_three) -"bmj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"bmk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_four) -"bml" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"bmn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_lobby) -"bmr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bmu" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bmv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"bmw" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"bmx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"bmy" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"bmz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"bmB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"bmC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bmD" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"bmF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"bmM" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bmN" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"bmO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bmP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bmR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bmW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"bmX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/offices) -"bnc" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 9" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bne" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bng" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/offices) -"bni" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bnj" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"bno" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"bnr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bnt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bny" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"bnA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"bnD" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"bnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bnI" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_lobby) -"bnR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"bnS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"bnT" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"bnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bnZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"bob" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"bof" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"boh" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"bop" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/general_equipment) -"boq" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"bot" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bou" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"boy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"boz" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"boA" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"boB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"boC" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"boH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"boI" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"boL" = ( -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"boN" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_particle_accelerator, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"boU" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"boV" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/almayer/minigun_crate{ - pixel_x = 1; - pixel_y = 39 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"boX" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"boY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"boZ" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bpa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"bpd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/port_missiles) -"bpe" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"bph" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"bpj" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"bpo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"bpv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bpz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"bpC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bpG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"bpH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"bpJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"bpK" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"bpL" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bpQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bpR" = ( -/turf/open/floor/almayer/empty, -/area/supply/station) -"bpS" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bpT" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"bpU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bpV" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"bpW" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bpX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop) -"bpY" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bpZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bqa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bqe" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"bqf" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bqm" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"bqo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bqp" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"bqw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bqy" = ( -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bqF" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"bqG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bqH" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) -"bqL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"bqN" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"bqR" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bqT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"bqW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/cmcap{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"bqZ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"brb" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"brf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"bri" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"brj" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"brn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"brp" = ( -/obj/structure/supply_drop/bravo, -/turf/open/floor/plating, -/area/almayer/squads/req) -"brr" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"brs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"brt" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"brv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"brw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"brx" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bry" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"brA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"brC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"brH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"brI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"brJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"brO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"brP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) -"brQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"brS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"brW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"brX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"brY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bsc" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"bse" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bsj" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bsk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bst" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_one) -"bsw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/chapel) -"bsy" = ( -/obj/structure/closet/medical_wall{ - pixel_x = 30 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"bsz" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"bsD" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"bsF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bsG" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"bsJ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"bsK" = ( -/obj/effect/landmark/supply_elevator, -/turf/open/floor/almayer/empty, -/area/supply/station) -"bsL" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"bsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"bsO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"bsP" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"bsQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"bsR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"bsS" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bsT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bsU" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bsV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bsW" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bsX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"bsZ" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"btc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/squads/alpha) -"btk" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"btm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"btn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"btp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"btr" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"btv" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"btx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"btz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"btC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"btD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"btX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"btY" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/briefing) -"bua" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"buc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"bui" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"buj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"buk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"buq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bur" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_missiles) -"buu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"buv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"buz" = ( -/obj/structure/supply_drop/charlie, -/turf/open/floor/plating, -/area/almayer/squads/req) -"buB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/offices) -"buD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"buE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"buH" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"buI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"buJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"buK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"buM" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"buN" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"buO" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"buQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"buS" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"buU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"buW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"buX" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"bvb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bvc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bvd" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"bve" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bvf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bvl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"bvr" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bvx" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"bvz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"bvF" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bvI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bvK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bvL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bvO" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"bvQ" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bvS" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull) -"bvT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"bvU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) -"bvV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"bvY" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - pixel_y = 23; - req_access_txt = "200" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bwc" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"bwd" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"bwe" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"bwf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bwg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha) -"bwj" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bwl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bwm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bwn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bwF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"bwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"bwQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"bwR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lockerroom) -"bwT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bxd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bxf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"bxg" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bxh" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"bxi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"bxk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bxm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bxn" = ( -/obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/cryo_cells) -"bxo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bxr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"bxs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bxx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"bxB" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bxC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/port_emb) -"bxD" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bxE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"bxF" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"bxG" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bxH" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bxI" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bxX" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"byb" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_lobby) -"byc" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_three) -"byd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_four) -"bye" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"byg" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"byh" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"byk" = ( -/obj/structure/pipes/valve/digital/open{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"byl" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"bym" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"byn" = ( -/obj/effect/landmark/start/marine/leader/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"byp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"byq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"byr" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bys" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"byu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"byv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"byw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"byz" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"byA" = ( -/obj/structure/machinery/alarm/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"byC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"byD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"byF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"byI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"byJ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"byK" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"byL" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"byM" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"byN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"byO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"byQ" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"byR" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bzg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lockerroom) -"bzj" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bzo" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"bzs" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliason) -"bzy" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/vehiclehangar) -"bzz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bzA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bzD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"bzE" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"bzF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bzH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bzI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bzK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bzP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"bzQ" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bzR" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"bzS" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bzU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"bzV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bzW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"bzX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bzY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bAa" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"bAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"bAe" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, -/area/almayer/command/lifeboat) -"bAf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"bAg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bAh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAi" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bAs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room) -"bAu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/securestorage) -"bAF" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"bAH" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"bAJ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/living/briefing) -"bAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bAM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"bAN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bAO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bAP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bAQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bAS" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bAU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bAV" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"bAX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/starboard_hallway) -"bAY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bAZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"bBa" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/port_hallway) -"bBb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"bBc" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bBd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"bBe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"bBg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"bBh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"bBi" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/liaison_suit/formal, -/obj/item/clothing/under/liaison_suit, -/obj/item/clothing/under/liaison_suit/outing, -/obj/item/clothing/under/liaison_suit/suspenders, -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/outing/red, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bBm" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"bBp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bBq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bBu" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bBv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bBx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bBy" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bBz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bBA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/weapon_room) -"bBB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"bBC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bBN" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bBQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bBY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bCd" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_lobby) -"bCe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"bCg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bCh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bCi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"bCj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/port_hallway) -"bCl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"bCm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"bCn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"bCo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"bCu" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"bCx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"bCy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"bCz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bCA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bCB" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"bCD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bCE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bCF" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bCG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bCH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"bCI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bCJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"bCM" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"bCN" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"bCP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bCQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bCR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"bCS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bCW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"bCY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bCZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bDe" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bDs" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"bDv" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"bDx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/port_hallway) -"bDD" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"bDF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room/notunnel) -"bDH" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bDI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bDL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access = "19;27;22" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"bDO" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"bDP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"bDQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bDT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bDU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"bDV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bDW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bDX" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bDY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bDZ" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bEa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bEb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bEc" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bEd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"bEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bEh" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"bEi" = ( -/obj/structure/supply_drop/alpha, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bEl" = ( -/obj/structure/machinery/computer/supply_drop_console/limited, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bEm" = ( -/obj/structure/supply_drop/delta, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEn" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bEo" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"bEp" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/squads/req) -"bEr" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bEs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bEt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"bEv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/shipboard/brig/general_equipment) -"bEw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bEx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bEz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bEA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bED" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bEE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"bEG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bEH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"bEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bEN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bEO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bEP" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"bER" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"bES" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bET" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"bEU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bEV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bFa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bFb" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"bFc" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bFe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bFf" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bFg" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bFj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bFk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/living/cryo_cells) -"bFq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/living/cryo_cells) -"bFr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bFs" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"bFt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bFu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bFA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"bFC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"bFJ" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bFP" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bFR" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bGb" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/port_hallway) -"bGc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"bGe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bGg" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bGh" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/port_hallway) -"bGi" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/port_hallway) -"bGj" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/port_hallway) -"bGk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/port_hallway) -"bGl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/port_hallway) -"bGn" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"bGo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bGp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/hallways/port_umbilical) -"bGq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"bGu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bGw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bGy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"bGF" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGG" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGH" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGI" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGK" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGM" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGO" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGP" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bGT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"bGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bHa" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bHb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bHd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bHk" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell/cl) -"bHm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"bHp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bHq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/navigation) -"bHt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bHu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"bHv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bHy" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bHz" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bHB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bHD" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"bHG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"bHH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"bHI" = ( -/obj/structure/anti_air_cannon, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bHP" = ( -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bHV" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bHX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bHY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bIb" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bId" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bIe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bIi" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"bIl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"bIn" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bIo" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bIp" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Left"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"bIs" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bIw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bIx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bIy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"bIA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/auxiliary_officer_office) -"bII" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"bIJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"bIM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"bIN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"bIO" = ( -/turf/closed/wall/almayer/outer, -/area) -"bIR" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bIU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bIX" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bJb" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bJe" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"bJf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bJh" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/port_umbilical) -"bJi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"bJj" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bJk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bJl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/auxiliary_officer_office) -"bJo" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/repair_bay) -"bJt" = ( -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"bJw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bJz" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bJC" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bJD" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bJE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"bJF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bJH" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black{ - pixel_x = -4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bJI" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bJK" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/engineering/engine_core) -"bJM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bJN" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bJO" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"bJP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bJQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bJR" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bJS" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJT" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bJY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bJZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bKa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bKb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/weapon_room) -"bKc" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bKd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"bKf" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bKh" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bKj" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/vehiclehangar) -"bKm" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bKn" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bKp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bKq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bKs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bKt" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bKu" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bKz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bKA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bKC" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bKD" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"bKE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"bKM" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bKO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop) -"bKQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bKT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bKU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bKV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bKW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"bKX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bLb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"bLc" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bLd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"bLe" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bLf" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bLg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bLh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bLk" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bLl" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bLm" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bLo" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bLp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bLr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bLs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bLt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bLu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"bLv" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"bLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bLx" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "oxygen_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLy" = ( -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLz" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "nit_lower_out" - }, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLA" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLC" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "mixed_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLD" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bLH" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bLJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bLO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bLP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"bLS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"bLT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bLW" = ( -/obj/structure/phone_base/rotary{ - name = "CL Office Telephone"; - phone_category = "Almayer"; - phone_id = "CL Office" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"bLX" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bMa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/squads/req) -"bMq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"bMt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"bMu" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"bMx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bMy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bMA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bMB" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bMC" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bMD" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bMF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bMJ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bML" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMM" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"bMN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"bMO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bMP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bMQ" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bMR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bMS" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bMT" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bMU" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bMV" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bMW" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 13" - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bMX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bMY" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bNa" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bNf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/living/port_emb) -"bNi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNk" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bNm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bNn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNo" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bNp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bNq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bNt" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"bNA" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bNB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bNC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"bND" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"bNE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"bNF" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"bNG" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bNL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"bNM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bNN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"bNP" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bNQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"bNS" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bNT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bNW" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/vehiclehangar) -"bNX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"bNZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"bOc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bOe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"bOh" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 16" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bOi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bOk" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bOl" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 8" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bOm" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 14" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bOn" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bOo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"bOq" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"bOs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"bOv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, -/area/almayer/hallways/port_hallway) -"bOx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"bOC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"bOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bOJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"bOK" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bOM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bON" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bOO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bOQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bOR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"bOT" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/sea_office) -"bOX" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/hallways/port_hallway) -"bOZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"bPa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"bPd" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 3" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bPe" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bPg" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/shipboard/weapon_room) -"bPh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bPj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bPk" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_lobby) -"bPn" = ( -/obj/structure/machinery/computer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"bPo" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"bPq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bPr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bPs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"bPu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"bPz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"bPB" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"bPC" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/shipboard/weapon_room) -"bPD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bPF" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/medical/medical_science) -"bPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bPL" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bPM" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/living/cryo_cells) -"bPO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, -/area/almayer/living/briefing) -"bPR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"bPS" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bPT" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bPU" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bPV" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bPW" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bPZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bQa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"bQe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bQi" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/engine_core) -"bQk" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/engineering/engine_core) -"bQm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bQt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bQz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bQD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"bQE" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQG" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQM" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bQQ" = ( -/obj/structure/sign/ROsign{ - layer = 3 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bQU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"bQX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bQZ" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bRa" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/living/cryo_cells) -"bRc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"bRe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bRf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"bRg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bRi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bRj" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engineering_workshop) -"bRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bRm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"bRo" = ( -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/airoom) -"bRr" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bRs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"bRu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop) -"bRx" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bRz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"bRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"bRD" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"bRF" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"bRH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"bRK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"bRP" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bRQ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bRR" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"bRU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/vehiclehangar) -"bRV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bSa" = ( -/obj/structure/target, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"bSb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bSd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bSe" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bSf" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_point_defense) -"bSg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/port_umbilical) -"bSj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bSk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"bSl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bSm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"bSn" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bSt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bSv" = ( -/turf/closed/wall/almayer, -/area/almayer/living/tankerbunks) -"bSx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/engine_core) -"bSy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"bSD" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bSG" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/engineering/engine_core) -"bSJ" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"bSL" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"bSR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bST" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"bSY" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bSZ" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"bTa" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"bTb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/squads/bravo) -"bTg" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_port{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"bTi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bTl" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 4" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bTn" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/tankerbunks) -"bTp" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bTq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PL-3"; - req_access = null - }, -/turf/open/floor/plating, -/area/almayer/powered) -"bTt" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"bTu" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bTw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"bTx" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bTy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"bTz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"bTA" = ( -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bTC" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bTE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"bTG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"bTH" = ( -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"bTI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"bTJ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bTM" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bTN" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"bTO" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"bTQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bTR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"bTS" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"bTT" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"bTU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." - }, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"bTV" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/tankerbunks) -"bUa" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"bUb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"bUc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bUd" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/port_hallway) -"bUe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bUf" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"bUi" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/charlie_delta_shared) -"bUp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUq" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bUr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bUx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"bUy" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"bUz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bUE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"bUF" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/port_hallway) -"bUG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"bUJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bUL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bUM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"bUN" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUO" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"bUP" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"bUT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"bUU" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUW" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 5" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bUX" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 11" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bUY" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"bUZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"bVb" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bVd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"bVe" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"bVi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"bVn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bVo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bVq" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bVw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/living/briefing) -"bVy" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"bVB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) -"bVC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "cmp_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/armory) -"bVE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"bVF" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"bVL" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"bVM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bVR" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"bVT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"axd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"axg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"bVU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_point_defense) -"bWb" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"axo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/telecomms) +"axq" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"bWc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"axP" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"axR" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"bWd" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"axY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"ayj" = ( +/obj/effect/landmark/start/cargo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ayl" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ayu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/living/starboard_garden) -"bWe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"bWf" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ayB" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"ayK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/living/starboard_garden) -"bWh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayL" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/powered) -"bWn" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"azp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"azs" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods{ + amount = 40 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/device/lightreplacer, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"azw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"bWo" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + req_one_access_txt = "3;19;22" }, -/area/almayer/shipboard/port_point_defense) -"bWp" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"azO" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 }, -/area/almayer/shipboard/port_point_defense) -"bWq" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"azW" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"azZ" = ( +/obj/structure/machinery/keycard_auth, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/living/starboard_garden) -"bWr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAf" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/living/chapel) -"bWs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aAq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"bWw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aAF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" }, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"bWC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/area/almayer/command/cic) +"aAH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"aAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/aft_hallway) -"bWE" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aAM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/aft_hallway) -"bWJ" = ( -/obj/structure/machinery/shower{ - dir = 4 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"aAP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bWK" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"bWL" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"bWM" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"bWP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/door_control{ + id = "cic_exterior"; + name = "CIC Door Control"; + normaldoorcontrol = 1; + pixel_y = -14; + req_one_access_txt = "19" }, -/turf/open/floor/almayer{ +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"aAY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aBe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "red" + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/hallways/aft_hallway) -"bWS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"bWT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/medical/containment/cell) +"aBh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/loadout/co2_knife{ - pixel_x = 8; - pixel_y = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBn" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/almayer/living/grunt_rnr) -"bWV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"bWZ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBp" = ( +/obj/structure/disposalpipe/segment{ dir = 2; - name = "\improper Engineering Workshop" + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBr" = ( +/obj/structure/ladder{ + height = 2; + id = "engineeringladder" }, -/area/almayer/engineering/engineering_workshop) -"bXc" = ( +/turf/open/floor/plating/almayer, +/area/almayer/engineering/upper_engineering) +"aBt" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ +/obj/item/storage/firstaid/regular, +/obj/item/device/radio/marine{ pixel_x = 5; - pixel_y = 9 + pixel_y = 3 }, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = -7; - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aBx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = 5 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBE" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/briefing) -"bXe" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"bXf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/command/cichallway) +"aBI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/lifeboat) -"bXl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aBR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/device/whistle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aBV" = ( +/obj/structure/sign/poster{ + pixel_x = 32 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"aCe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/engineering/engine_core) -"bXm" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"aCi" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/engineering/engine_core) -"bXn" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aCj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aCr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/engine_core) -"bXo" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aCF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"aCL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"aCO" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"aCY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/navigation) -"bXr" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 6" +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"aDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aDG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"bXs" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bXt" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 12" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"aDL" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/hop{ + name = "Commanding Officer's rubber stamp"; + pixel_x = -5; + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/paper_bin/uscm{ + pixel_x = 7; + pixel_y = 6 }, -/area/almayer/engineering/engine_core) -"bXu" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 18" +/obj/item/tool/pen/red/clicky{ + pixel_x = -6; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/pen/blue/clicky{ + pixel_x = -6; + pixel_y = -3 }, -/area/almayer/engineering/engine_core) -"bXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bXw" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/area/almayer/living/commandbunks) +"aDQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"aDR" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"aEr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/operating_room_two) -"bXx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"aEE" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bXz" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/vending/security/riot, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"bXH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/shipboard/brig/armory) +"aEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aES" = ( +/turf/closed/wall/almayer, +/area/almayer/living/bridgebunks) +"aET" = ( +/turf/closed/wall/almayer, +/area/almayer/living/captain_mess) +"aEW" = ( +/turf/closed/wall/almayer, +/area/almayer/living/numbertwobunks) +"aFg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/briefcase, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aFi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aFs" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"aFx" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"aFC" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"aGa" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"aGf" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"aGr" = ( +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aGA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aGN" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aHe" = ( +/turf/closed/wall/almayer, +/area/almayer/command/lifeboat) +"aHg" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"aHl" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHn" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/area/almayer/squads/req) -"bXP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"aHq" = ( +/turf/closed/wall/almayer, +/area/almayer/command/computerlab) +"aHs" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aHH" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aHS" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" }, -/area/almayer/engineering/engine_core) -"bXQ" = ( +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHT" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/obj/item/toy/plush/farwa, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"aHZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"aIf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bXR" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aIx" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIO" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"aIR" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"aJb" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"aJy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aJA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"aJJ" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aJO" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/area/almayer/engineering/engine_core) -"bXS" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"aJY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"aKa" = ( +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aKg" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aKj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -23786,3130 +2023,3965 @@ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"bXU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/hallways/lower/port_midship_hallway) +"aKq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bXV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bXW" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bXX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bXY" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) -"bXZ" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bYc" = ( +/area/almayer/command/cichallway) +"aKv" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"bYe" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"bYg" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bYh" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"bYi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"bYj" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bYn" = ( +/area/almayer/command/cichallway) +"aKE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aKL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"aKQ" = ( /turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/port) -"bYq" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"bYu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"bYv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/space) +"aKR" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_point_defense) +"aKZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/squads/req) -"bYw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"aLj" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bYy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"bYz" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"bYD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/prop/tableflag/uscm{ - pixel_x = -5 - }, -/obj/item/prop/tableflag/uscm2{ - pixel_x = 5 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"bYE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/port_hallway) -"bYI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/area/almayer/shipboard/brig/armory) +"aLn" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/engineering/lower_engineering) -"bYK" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"aLu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aLE" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ + dwidth = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/space, +/area/space) +"aLJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/engineering/lower_engineering) -"bYM" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"bYO" = ( +/area/almayer/living/briefing) +"aLL" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLM" = ( /obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bYP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" + dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aLT" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aLW" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aMo" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"bYQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aMp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"bYS" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMt" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"bYU" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"bYV" = ( -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"bYW" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"aMu" = ( +/obj/structure/barricade/handrail{ dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" + pixel_y = 2 }, -/area/almayer/engineering/engine_core) -"bYY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aMz" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"aMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/toy/deck, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aME" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/command/cic) -"bZa" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMI" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"bZc" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = -16 - }, +/obj/effect/landmark/start/marine/spec/delta, +/obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"bZe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"bZg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/squads/delta) +"aMQ" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"bZi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/alpha) +"aMR" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"bZj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bZn" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"aMX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + dir = 2; + name = "\improper Brig Permanent Confinement" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"bZr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" }, -/area/almayer/squads/req) -"bZw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"bZz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"aMZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"aNb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"aNi" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"aNk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"aNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bZA" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" +/area/almayer/command/lifeboat) +"aNm" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aNr" = ( +/obj/effect/landmark/start/chef, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"aNE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"aNF" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"aNQ" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6 }, -/area/almayer/engineering/lower_engineering) -"bZD" = ( /obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNS" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/area/almayer/engineering/engine_core) -"bZE" = ( -/obj/structure/pipes/binary/pump/on{ +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"aNT" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aOj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"bZH" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"aOL" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - pixel_x = -24 + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/upper_hull/u_f_p) -"bZJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/landmark/map_item, -/obj/item/device/binoculars, +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"bZK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/area/almayer/squads/alpha) +"aOR" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"aPa" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bZL" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/command/lifeboat) +"aPc" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aPe" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aPf" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"bZN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/area/almayer/squads/alpha_bravo_shared) +"aPk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"aPw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/lifeboat) +"aPF" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"aPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/chief_mp_office) -"bZO" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/research/containment/corner2, +/area/almayer/medical/containment/cell) +"aPK" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aPN" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aPP" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"bZR" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"bZU" = ( +"aPS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"aPT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"cab" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"aQi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/briefing) -"cac" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aQl" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"cad" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/living/briefing) -"cae" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aQF" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices) +"aQL" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_guide{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -8 }, -/area/almayer/living/briefing) -"caf" = ( -/obj/structure/machinery/computer/cryopod{ +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aQN" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"cag" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"cah" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"cai" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"cal" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/squads/req) -"can" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"aRi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"cat" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/command/computerlab) +"aRm" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"cau" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"aRo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"cav" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aRu" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"aRy" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRJ" = ( +/obj/structure/ladder{ + height = 2; + id = "med1" }, -/area/almayer/hallways/port_hallway) -"cax" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/refridgeration{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/hallways/port_umbilical) -"cay" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRK" = ( +/obj/structure/ladder{ + height = 2; + id = "med2" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/lower_engineering) -"caz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aRT" = ( +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aSg" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/engineering/lower_engineering) -"caA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/engineering/lower_engineering) -"caB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"aSo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/engineering/lower_engineering) -"caC" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"aSu" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"aSE" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"caD" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/squads/bravo) +"aSF" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"aSI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/area/almayer/hallways/vehiclehangar) -"caE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aTa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/area/almayer/hull/lower_hull/l_f_p) -"caF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"aTg" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"aTh" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"aTk" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" + icon_state = "pipe-c" }, -/area/almayer/hallways/aft_hallway) -"caM" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"aTJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 }, -/area/almayer/hallways/hangar) -"caN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"aTM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"aTP" = ( +/obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aTT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 }, -/area/almayer/hallways/hangar) -"caO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2 }, -/area/almayer/living/briefing) -"caS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/open/floor/wood/ship, +/area/almayer/living/basketball) +"aTV" = ( +/obj/structure/toilet{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"aTW" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aUb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/medical/operating_room_three) -"caT" = ( -/obj/structure/sink{ +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"cbg" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "pipe-c" }, -/area/almayer/medical/medical_science) -"cbh" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUj" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + pixel_x = 32 }, -/area/almayer/living/cryo_cells) -"cbm" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aUr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"aUy" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/area/almayer/living/captain_mess) -"cbn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/computerlab) -"cbo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"aUG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull) -"cbr" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/aft_hallway) -"cbu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"aUH" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/port_atmos) +"aUI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"aVo" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aVN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"cbv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"aVT" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"aWh" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/area/almayer/hallways/port_hallway) -"cbw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"cbz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/hallways/port_hallway) -"cbA" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aWo" = ( +/obj/structure/pipes/unary/outlet_injector, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWp" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "waste_lower_out" }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWv" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_x = -12; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"aWA" = ( +/obj/structure/toilet{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 }, -/area/almayer/hull/upper_hull/u_a_s) -"cbD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 }, -/area/almayer/hallways/port_hallway) -"cbE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/captain_mess) +"aWD" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"cbG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"cbH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"cbM" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/welding, -/obj/item/circuitboard, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"cbN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating, +/area/almayer/living/offices) +"aWJ" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aWQ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aWV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"cbO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWZ" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aXa" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"aXb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aXc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 }, -/area/almayer/hallways/aft_hallway) -"cbQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"aXr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"aXu" = ( +/obj/structure/closet/secure_closet/warrant_officer, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"aXI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) +"aXM" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aYb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 }, -/area/almayer/hallways/port_hallway) -"cbR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/area/almayer/hallways/port_hallway) -"cbS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"aYf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"cbU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aYh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aYk" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"aYt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aYF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"cbV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"aYG" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"aZe" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"cbW" = ( +/area/almayer/shipboard/brig/lobby) +"aZk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"cbX" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"aZo" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"aZr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZy" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"bab" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"bak" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/hallways/port_hallway) -"cbZ" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ban" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ pixel_x = 8; pixel_y = 32 }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"bas" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 6"; + name = "Cell 6" }, -/area/almayer/hull/lower_hull/l_a_s) -"ccb" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/six{ + pixel_x = -17 }, -/area/almayer/living/cryo_cells) -"ccd" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"bau" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/area/almayer/living/cryo_cells) -"cce" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"baw" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"baG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baI" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"baJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"baR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baZ" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_lobby) +"bbe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"bbr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/lower_engineering) -"ccf" = ( +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bbs" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"bbI" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"bbM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"bbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"bbV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bbZ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"ccg" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bci" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"bcm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bcJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"cck" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"ccq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"bdd" = ( +/turf/closed/wall/almayer, +/area/almayer/living/briefing) +"bdg" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/port_hallway) -"ccr" = ( +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bdj" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bdl" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bdr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bdH" = ( +/turf/open/space/basic, +/area/space) +"bdI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"ccs" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"ccu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bdV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"ccv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ccx" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bec" = ( /obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ +/obj/item/storage/photo_album{ + pixel_x = -4; pixel_y = 5 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/folder/black{ + pixel_x = 7; + pixel_y = -3 }, -/area/almayer/engineering/lower_engineering) -"ccy" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/device/camera_film{ + pixel_x = -5 }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"bel" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" }, -/area/almayer/engineering/lower_engineering) -"ccz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"beq" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/engineering/lower_engineering) -"ccA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"beC" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 }, -/area/almayer/engineering/lower_engineering) -"ccB" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"beE" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" - }, -/obj/structure/pipes/standard/simple/hidden/universal{ +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"beH" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"beP" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer, +/area/almayer/squads/alpha_bravo_shared) +"beQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"beV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"beZ" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/engineering/lower_engineering) -"ccC" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"bfq" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" }, -/obj/structure/pipes/standard/simple/visible{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bft" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfI" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"bfJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"ccD" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/item/prop/almayer/handheld1, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfK" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bfS" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = -24 }, -/area/almayer/engineering/lower_engineering) -"ccE" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"bfY" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bgb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"ccF" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"bgd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"bgh" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/area/almayer/living/briefing) -"ccG" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = 4; + pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 13 }, -/area/almayer/hallways/hangar) -"ccJ" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/item/tool/surgery/bonegel/empty{ + layer = 3.01; + pixel_x = -5; + pixel_y = 19 }, -/area/almayer/hallways/repair_bay) -"ccN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 }, -/area/almayer/living/cryo_cells) -"ccO" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"bgw" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or2privacyshutter"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/port_hallway) -"ccQ" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_two) +"bgx" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"ccR" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/area/almayer/hallways/upper/fore_hallway) +"bgE" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/lower_engineering) -"ccS" = ( -/obj/structure/pipes/standard/simple/visible{ +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"ccT" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"ccU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bgS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/aicore_lockdown, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"bgV" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ccV" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/area/almayer/maint/hull/lower/l_a_s) +"bhb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bhe" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bhq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"ccW" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/engineering/lower_engineering) -"ccX" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bhr" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"bhv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 }, -/area/almayer/engineering/lower_engineering) -"ccY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bhO" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"bhT" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 }, -/area/almayer/hallways/aft_hallway) -"cdb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhU" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhV" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/port_umbilical) -"cdc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"bic" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"bio" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"biz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"biA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_three) +"biD" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/port_umbilical) -"cdd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"biI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"biJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"biN" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"biV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/hallways/port_umbilical) -"cdf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"bjq" = ( /obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cdk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"cdm" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"cdn" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/living/cryo_cells) -"cdo" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bjE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"bjP" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "silver" + icon_state = "p_stair_full" }, -/area/almayer/living/cryo_cells) -"cdp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bjR" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bjU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"cdr" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bjY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"bjZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/engineering/lower_engineering) -"cdu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"cdw" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"bki" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"cdx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"cdy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"cdz" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_fore_hallway) +"bkl" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bkn" = ( +/obj/structure/closet/secure_closet/fridge/groceries, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bkA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/chemistry) +"bkE" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or1privacyshutter"; + name = "\improper Privacy Shutters" }, -/area/almayer/hallways/port_umbilical) -"cdA" = ( -/obj/structure/window/framed/almayer, /turf/open/floor/plating, -/area/almayer/hallways/hangar) -"cdF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"cdI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/almayer/medical/operating_room_one) +"bkH" = ( +/obj/structure/platform{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"blk" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/midship_hallway) +"bls" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cdP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/area/almayer/living/basketball) +"blK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) -"cdT" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +"bmf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"bmo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/charlie) -"cdU" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bmp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"bmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bmF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/gym) +"bmH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/area/almayer/squads/charlie) -"cdV" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"bmK" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"bmL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/charlie) -"cdX" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"cdZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"bmQ" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"bnk" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"bno" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/hallways/port_hallway) -"cea" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"ceg" = ( +/area/almayer/squads/bravo) +"bnt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha) -"ceo" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"cer" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/warning_cone, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bnL" = ( +/obj/structure/machinery/light/containment{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"ces" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/port_umbilical) -"cet" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"bnM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"boz" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, -/area/almayer/hallways/port_umbilical) -"ceu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/squads/req) +"boO" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 }, -/area/almayer/living/starboard_garden) -"cev" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"boV" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/almayer/minigun_crate{ + pixel_x = 1; + pixel_y = 39 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"cew" = ( +/area/almayer/hallways/hangar) +"bpg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/port_umbilical) -"cex" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"ceC" = ( -/obj/structure/prop/almayer/ship_memorial, -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"ceD" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bpn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"bpC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bpD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"bpO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bpQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" }, -/area/almayer/powered) -"ceE" = ( -/turf/closed/wall/almayer, -/area/almayer/command/cichallway) -"ceK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bpS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" }, -/area/almayer/living/bridgebunks) -"ceQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bqt" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"bqT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hallways/repair_bay) -"ceR" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"bqW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cmcap{ + pixel_x = 8; + pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -6; + pixel_y = 7 }, -/area/almayer/hallways/repair_bay) -"ceU" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ + pixel_x = 5; + pixel_y = 7 }, -/area/almayer/hallways/repair_bay) -"ceZ" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bqY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"brb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"brp" = ( +/obj/structure/supply_drop/bravo, +/turf/open/floor/plating, +/area/almayer/squads/req) +"brv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/cic_hallway) -"cfk" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"brA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"cfo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfp" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"cfq" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/squads/charlie) -"cft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"cfy" = ( +/area/almayer/squads/bravo) +"brN" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"brY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bsl" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"bsp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"bst" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_one) +"bsu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/area/almayer/hallways/port_umbilical) -"cfz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/port_umbilical) -"cfA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) +"bsw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/living/chapel) +"bsy" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 }, -/area/almayer/hallways/port_umbilical) -"cfE" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"bsA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/starboard_missiles) -"cfM" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/processing) +"bsY" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"btg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"btv" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/repair_bay) -"cfN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"btD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"btF" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"btG" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/platform{ +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/scrubber{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"cfT" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"cgl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 +/area/almayer/shipboard/port_missiles) +"btN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie_delta_shared) -"cgo" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btO" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"cgq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"cgr" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"cgs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"cgt" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"btP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/area/almayer/squads/charlie) -"cgu" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"bub" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"cgv" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bun" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/area/almayer/squads/charlie) -"cgy" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"buo" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cgz" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_x = 27 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"buz" = ( +/obj/structure/supply_drop/charlie, +/turf/open/floor/plating, +/area/almayer/squads/req) +"buG" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/briefing) -"cgA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"bvb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bvf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bwf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"cgE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bwn" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"cgG" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"bww" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/port_umbilical) -"cgH" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"bwB" = ( /obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/crew/alt{ + dir = 4 }, -/area/almayer/hallways/port_umbilical) -"cgI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/phone_base/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Cells"; + pixel_x = 16 }, -/area/almayer/hallways/aft_hallway) -"cgJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"bwY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"cgO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/machinery/firealarm{ dir = 8; - pixel_y = 6 + pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"bxb" = ( +/obj/structure/safe/co_office, +/obj/item/weapon/pole/fancy_cane, +/obj/item/tool/lighter/zippo/gold{ + layer = 3.05; + pixel_y = 3 }, -/area/almayer/shipboard/brig/cic_hallway) -"cgT" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"bxg" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bxB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 10 }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"chf" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/area/almayer/squads/alpha) +"bxS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"byn" = ( +/obj/effect/landmark/start/marine/leader/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"byo" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"byv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/charlie_delta_shared) -"chk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"byx" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/almayer/squads/charlie) -"chl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"byE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/squads/charlie) -"chm" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"byT" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"byX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"chn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"bzc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bzl" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"bzr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"bzu" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/area/almayer/squads/charlie) -"chp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"chq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = 24; + req_one_access_txt = "91;92" }, -/area/almayer/squads/charlie) -"chu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"bzz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"chC" = ( -/obj/structure/platform_decoration, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bzJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"bzQ" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"chE" = ( +/area/almayer/hallways/hangar) +"bAh" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"chL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAi" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room) +"bAt" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bAz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution_storage) +"bAI" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = 25 }, -/area/almayer/squads/bravo) -"chM" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bAS" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bBl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bBA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/weapon_room) +"bBC" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bBN" = ( +/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chN" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/hangar) +"bBZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"bCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"bCd" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/squads/charlie) -"chO" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_lobby) +"bCf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"bCh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bCs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/area/almayer/squads/charlie) -"chP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"chQ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"bCv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/charlie) -"chR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"bCz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bCA" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/area/almayer/squads/req) +"bCG" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bCU" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/midship_hallway) +"bDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bDn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bDu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bDw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/charlie) -"chV" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"bDG" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bDI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bEi" = ( +/obj/structure/supply_drop/alpha, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEl" = ( +/obj/structure/machinery/computer/supply_drop_console/limited, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bEm" = ( +/obj/structure/supply_drop/delta, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/charlie) -"chW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bEx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bEy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bEC" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bEQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bFk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bFr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bFz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/charlie) -"cib" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"bFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) -"cic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bFI" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"bFJ" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"bFP" = ( +/obj/vehicle/powerloader{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bFQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, -/area/almayer/squads/alpha) -"cij" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"bFR" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/engineering/upper_engineering) -"cil" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"bGo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bGx" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"bGE" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, /area/almayer/lifeboat_pumps/south2) -"cim" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"bGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bGX" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"bGY" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"bHe" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"bHg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/area/almayer/hallways/port_umbilical) -"cin" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"cio" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 2"; + name = "\improper Courtyard Divider" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/port_umbilical) -"cir" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"bHB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"cit" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bHI" = ( +/obj/structure/anti_air_cannon, /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, +/obj/item/paper, /obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"ciu" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bHO" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, +/area/almayer/command/airoom) +"bHP" = ( +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bHS" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"bIe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bIk" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, -/area/almayer/lifeboat_pumps/north2) -"civ" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"bIq" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"ciw" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +"bIt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/north2) -"cix" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"bIu" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/powered) -"ciD" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"bIv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/lifeboat_pumps/north2) -"ciF" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bIy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"bID" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/almayer/shipboard/brig/main_office) -"ciN" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bIM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"ciQ" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"bJf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bJt" = ( +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"bJC" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bJD" = ( /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ciT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ciU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/squads/charlie) +"bJH" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -4 }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"bJS" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJT" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" }, -/area/almayer/hallways/port_hallway) -"cjc" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bJX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"cjd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "emerald" +/area/almayer/shipboard/navigation) +"bJY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/squads/charlie) -"cjf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bKl" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"bKo" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/area/almayer/squads/charlie) -"cjg" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bKs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "emerald" + dir = 5 }, -/area/almayer/squads/charlie) -"cjh" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bKu" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bKx" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bKC" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"cji" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"cjl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/area/almayer/squads/bravo) +"bKH" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"bKJ" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/area/almayer/hallways/port_umbilical) -"cjm" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"bKM" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bKQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bLh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_umbilical) -"cjo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/ladder{ + pixel_x = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLn" = ( +/obj/structure/sink{ dir = 8; - icon_state = "red" + pixel_x = -12; + pixel_y = 2 }, -/area/almayer/hallways/aft_hallway) -"cjw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bLs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bLx" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "oxygen_lower_out" }, -/area/almayer/hallways/port_hallway) -"cjA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLy" = ( +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLz" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "nit_lower_out" + }, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLA" = ( +/obj/structure/pipes/unary/outlet_injector{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLC" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "mixed_lower_out" }, -/area/almayer/squads/charlie) -"cjC" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bLM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/area/almayer/squads/charlie) -"cjE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bLN" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"bLO" = ( /obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bLP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"bLU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"bMb" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"bMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bMw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/squads/charlie) -"cjK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"bME" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"bMJ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMK" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bML" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMP" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bNf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/port_umbilical) -"cjS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/sign/safety/ladder{ + pixel_x = 32 }, -/area/almayer/hallways/port_hallway) -"cjT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bNo" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bNs" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/sign/safety/escapepod{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bNG" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"cjW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bOp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"ckd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +"bOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ pixel_y = 7 }, -/obj/item/reagent_container/food/drinks/coffeecup{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bOH" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; pixel_y = 7 }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"ckl" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bOW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + dir = 4 }, -/area/almayer/hallways/port_hallway) -"ckm" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"bPq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bPr" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"ckr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bPs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/delta) -"ckB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bPu" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"ckE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + name = "ship-grade camera" }, -/area/almayer/lifeboat_pumps/north1) -"ckI" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"bPw" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"bPF" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/medical/medical_science) +"bPL" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bQq" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ckK" = ( -/obj/structure/pipes/vents/pump{ +/area/almayer/maint/hull/upper/u_m_p) +"bQC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"ckP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"bQQ" = ( +/obj/structure/sign/ROsign{ + layer = 3 }, -/area/almayer/shipboard/brig/cic_hallway) -"ckQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bQU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/delta) -"ckR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/living/offices) +"bQX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bQZ" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bRc" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"bRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/squads/delta) -"ckS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bRn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"bRJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/security{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bSf" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_point_defense) +"bSr" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/almayer/shipboard/brig/main_office) -"ckX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"bSv" = ( +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"bSJ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"bSK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, +/obj/item/tool/wrench, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bSL" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, /area/almayer/squads/delta) -"cla" = ( -/obj/structure/disposalpipe/segment, +"bSM" = ( +/obj/effect/landmark/crap_item, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + dir = 6 }, -/area/almayer/hallways/port_hallway) -"clb" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"bSS" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bSW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"bTb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"bTg" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_port{ + dwidth = 8 }, -/area/almayer/hallways/port_hallway) -"cle" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/space, +/area/space) +"bTh" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) -"clg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"bTq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PL-3"; + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cli" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/powered) +"bTr" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bTt" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 21 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2; + pixel_y = -4 }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"bTx" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bTA" = ( +/turf/open/floor/almayer, /area/almayer/squads/delta) -"clj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"bTB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/item/folder/yellow, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 8 }, -/area/almayer/squads/delta) -"clk" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"bTH" = ( +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"bTO" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"bTT" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/weapon_room) +"bUg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"bUp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUq" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "bluecorner" + pixel_y = 3 }, -/area/almayer/squads/delta) -"cll" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bUB" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"bUN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 7 + }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"clm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"bUU" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bVe" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"bVg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/squads/delta) -"cln" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"bVh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"bVj" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bVm" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"bVr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"bVM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bVU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_point_defense) +"bVY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"bVZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/s_bow) +"bWu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ dir = 1; - pixel_y = -29 + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"bWx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/delta) -"clo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bWy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"bWB" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bWD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bWI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/squads/delta) -"clp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"bWJ" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bWR" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bXb" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"bXe" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"bXz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"bXC" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"bXL" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bXO" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"bYn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"bYp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bYs" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"bYw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bYD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/prop/tableflag/uscm{ + pixel_x = -5 }, -/area/almayer/squads/delta) -"clr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/prop/tableflag/uscm2{ + pixel_x = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"bYT" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"bYX" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"bZc" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 }, -/area/almayer/squads/delta) -"cls" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"clw" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/area/almayer/engineering/upper_engineering/notunnel) +"bZh" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Interior"; + dir = 1 }, +/turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"cly" = ( +"bZj" = ( /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bZp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bZt" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"bZw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"bZB" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bZJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/map_item, +/obj/item/device/binoculars, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bZM" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/hallways/port_hallway) -"clz" = ( +/obj/structure/closet/secure_closet/brig/prison_uni, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"caa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hallways/port_hallway) -"clC" = ( -/obj/structure/stairs, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"caI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"caL" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"caU" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/starboard_hallway) -"clE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"caW" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/squads/delta) -"clF" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/almayer/squads/delta) -"clG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"caY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/delta) -"clH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/delta) -"clI" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"cbj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/squads/delta) -"clJ" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/area/almayer/squads/delta) -"clK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cbl" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"cbt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/delta) -"clL" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" }, -/area/almayer/squads/delta) -"clM" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"cbB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"cbJ" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"cbM" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/welding, +/obj/item/circuitboard, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ccQ" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cda" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"clN" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +"cdf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/squads/delta) -"clO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cdg" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"cdi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/paper_bin/uscm{ + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/area/almayer/hull/lower_hull/l_f_p) -"clP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cdp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"cdt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"clR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"clS" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"clT" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"clV" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/req) -"clW" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"cdA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"cdI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/squads/delta) -"clX" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cdK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"ceb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cef" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/squads/delta) -"clY" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"cez" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/squads/delta) -"clZ" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/starboard_hallway) +"ceC" = ( +/obj/structure/prop/almayer/ship_memorial, +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"ceE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"ceG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/squads/delta) -"cmd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"ceL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"cmg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"ceS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ceV" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"cfj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/starboard_hallway) -"cmh" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"cfl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/port_hallway) -"cmk" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"cfo" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"cml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/area/almayer/squads/charlie) +"cft" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfu" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 }, -/area/almayer/shipboard/port_point_defense) -"cmm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"cfB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/area/almayer/shipboard/port_point_defense) -"cmn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cfD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"cfZ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cga" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, -/area/almayer/shipboard/port_point_defense) -"cmp" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"cmq" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"cmC" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"cgg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"cgh" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cgo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"cgw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cgx" = ( +/obj/structure/machinery/door_control{ + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/area/almayer/powered) -"cmE" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_s) -"cmF" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"cgy" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cgE" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"cha" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"chb" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"chp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/lifeboat_pumps/north2) -"cmH" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"chr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"chH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"chM" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/hallways/port_umbilical) -"cmI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"cia" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" + req_access_txt = "200"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cie" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/shipboard/navigation) -"cmJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"cip" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; - name = "\improper Astronavigational Deck"; + req_one_access = null; + req_one_access_txt = "37" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"ciI" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; req_access = null; - req_one_access_txt = "3;19" + req_one_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 }, -/area/almayer/shipboard/navigation) -"cmK" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"ciM" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/securestorage) -"cmX" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) -"cnd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"ciQ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ciV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" }, -/area/almayer/powered) -"cno" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"cjc" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"cjk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"cjy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/uscm/command/capt{ + name = "Commanding Officer's Fax Machine"; + pixel_x = -4; + pixel_y = 3 }, -/area/almayer/hallways/starboard_hallway) -"cnp" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"cnq" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"cnr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" + dir = 1 }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cjB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cjD" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cjJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"cjP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"cjY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"cnu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"cnv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"cnE" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"cnH" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" +/obj/structure/machinery/status_display{ + pixel_y = -29 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"cki" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"cko" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ckV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_s) +"ckY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/computerlab) -"cnM" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"clg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clh" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 + icon_state = "pipe-j2" }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cll" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clq" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cls" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"clQ" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) +"clU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/port_emb) -"cnR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"cmP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"cng" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"cni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"cnn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"cnx" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"cny" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"cnQ" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) "cnS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -26917,175 +5989,75 @@ }, /turf/open/floor/plating, /area/almayer/command/computerlab) -"cnT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, +"cof" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/computerlab) -"cnU" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"cnV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"cnW" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/morgue) -"cnX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"cnY" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"cnZ" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"coa" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/morgue) -"cod" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) -"cog" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"coj" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +"com" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) -"cos" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"coB" = ( -/obj/structure/bed/chair{ +"cor" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"coG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"coJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"coC" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/midship_hallway) +"coE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/almayer/medical/containment) -"coT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"coY" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"coZ" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"cpf" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"cpj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +"coF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"coM" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) +"coW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"cpc" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) "cpk" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27095,18 +6067,60 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) +"cpo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) "cpp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +"cpu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cpz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"cpC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = -24; + req_one_access_txt = "35" + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"cpE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"cpH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -27128,42 +6142,90 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"cqa" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +"cpN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/starboard_hallway) -"cqm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/white{ - pixel_y = 6 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"cpQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"cpW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"cpX" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"cqh" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 }, -/area/almayer/command/airoom) -"cqn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"cqi" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"cql" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"cqs" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"cqE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -27171,15 +6233,13 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"cqM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) +"cqK" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"cqP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "cqQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -27190,834 +6250,742 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"cqT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cqW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"crc" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"cre" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"crh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"crf" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"cro" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/south1) -"crD" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"crv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"crK" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"crP" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"crW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"csl" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"csz" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"csG" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/item/trash/popcorn, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"csI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + pixel_y = -1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"ctn" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/lobby) -"cts" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ctx" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"ctC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"cuk" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cryo) -"cus" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space/almayer/lifeboat_dock) -"cuy" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cuC" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/starboard) -"cuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"cvb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"cvj" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"crz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"crM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"cvZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"cwd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"crR" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"cwo" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"crV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"cwJ" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"cwQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"csn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"csv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"cwS" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 }, -/area/almayer/command/airoom) -"cwT" = ( -/obj/structure/closet/secure_closet/commander, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/device/radio, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cwX" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder1" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"csy" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"cxc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"csB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"csC" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"csK" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 }, -/area/almayer/command/airoom) -"cxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"csO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"cta" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"cxk" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"cts" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cxo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"cxA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"cyo" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +"ctH" = ( +/obj/structure/machinery/computer/demo_sim{ + dir = 4; + pixel_x = -17; + pixel_y = 8 }, -/area/almayer/squads/req) -"cyE" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cun" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) -"cyG" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"cuz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"cyU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 4"; + name = "\improper Courtyard Divider" }, -/area/almayer/medical/upper_medical) -"cyZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) -"czu" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_m_p) -"czB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"czG" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/airoom) -"czJ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, +"cuB" = ( +/obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"czM" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"cAm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"cAF" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"cuC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/starboard) +"cuF" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"cAH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"cBb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"cBd" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) -"cBi" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/lobby) +"cuJ" = ( +/obj/structure/machinery/power/apc/almayer/south, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"cBj" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/area/almayer/maint/upper/u_f_p) +"cuM" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"cuS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cuZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"cvd" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"cBl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"cBm" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"cvm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"cvA" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"cvF" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/command/airoom) -"cBs" = ( -/obj/structure/bed/chair, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"cvI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"cvL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/squads/alpha) -"cBA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"cvP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/hallways/starboard_hallway) -"cBB" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/area/almayer/hull/upper_hull/u_a_s) -"cBI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"cwc" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cwo" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"cBL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/commandbunks) -"cCa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /turf/open/floor/almayer, -/area/almayer/living/chapel) -"cCD" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 +/area/almayer/squads/req) +"cwK" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"cwO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"cwP" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"cwT" = ( +/obj/structure/closet/secure_closet/commander, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/device/radio, +/obj/item/clothing/shoes/laceup, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cwX" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder1" + }, +/turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"cCE" = ( +"cwY" = ( /obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cDe" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"cDj" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + pixel_x = 24 }, -/area/almayer/engineering/engine_core) -"cDn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cxj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cxk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cxu" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"cxD" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cxX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"cyb" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/shipboard/brig/cic_hallway) -"cDs" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cyg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"cyl" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"cyn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/area/almayer/squads/charlie) -"cDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cys" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"cyD" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"cyW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cyZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) -"cDW" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"cDZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"czo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/tankerbunks) -"cEg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"czz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"cEi" = ( -/obj/structure/sign/poster, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"cEl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"czK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"czQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/almayer/command/cic) -"cEx" = ( -/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"czV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cAc" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) -"cEC" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"cAd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"cAe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"cAp" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"cAt" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"cAx" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cAA" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cAN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/charlie) -"cEG" = ( -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -27 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"cAO" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"cEO" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" +"cAW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/almayer/hull/upper_hull/u_a_p) -"cES" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"cBb" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"cEY" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 +/area/almayer/lifeboat_pumps/south2) +"cBy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"cFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cBE" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"cBT" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"cCd" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" }, -/area/almayer/shipboard/weapon_room) -"cFn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"cCe" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/command/lifeboat) -"cFA" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"cCG" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/computer/tech_control{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_a_p) -"cFO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"cCI" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"cCN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"cFP" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 + id_tag = "or04"; + name = "Operating Theatre 4" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_medbay) -"cFX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"cCS" = ( +/obj/effect/landmark/start/pilot/dropship_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"cDa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"cGr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"cDi" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/fore_hallway) +"cDA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"cDB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"cDR" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"cGV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/area/almayer/squads/alpha_bravo_shared) -"cHa" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/mess) +"cEd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cHc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"cHl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cEi" = ( +/obj/structure/sign/poster, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"cEX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"cGo" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cGy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cGE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"cGN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"cGO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cGX" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/squads/bravo) -"cHq" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) +"cHa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) -"cHE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"cHJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"cHU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/command/cichallway) -"cHO" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cHZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "cIe" = ( /obj/structure/machinery/light{ dir = 4 @@ -28025,238 +6993,222 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cIi" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +"cIo" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cIG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"cII" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"cIK" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"cIU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"cIW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"cJu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"cJB" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"cJE" = ( -/obj/structure/sign/prop2, -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"cJM" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"cID" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"cIE" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"cIH" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 }, -/area/almayer/medical/containment) -"cJP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"cIN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cIT" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"cKt" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cJa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_f_p) -"cKL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"cJo" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 }, -/area/almayer/engineering/upper_engineering/port) -"cKX" = ( -/obj/structure/platform, -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"cJq" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"cKY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"cLl" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"cJz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/storage/fancy/cigar, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood/ship, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"cJA" = ( +/obj/structure/toilet{ + dir = 8; + layer = 2.9; + pixel_y = 8 + }, +/obj/structure/window{ + layer = 2.95; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"cJE" = ( +/obj/structure/sign/prop2, +/turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"cLo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"cJG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "cargo_arrow" +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"cJT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" }, -/area/almayer/command/airoom) -"cLp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"cKh" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/mp_bunks) +"cKi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/hallways/aft_hallway) -"cLA" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"cKz" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"cKM" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"cLe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cLl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) +/obj/item/storage/fancy/cigar, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) "cLC" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"cLN" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +"cLD" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"cLF" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"cLI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/bridgebunks) -"cLV" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"cMa" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"cMd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"cMk" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28266,15 +7218,100 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"cMN" = ( +"cMm" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"cMy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cMB" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"cME" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"cMI" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cMO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"cMQ" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "orange" + layer = 3.3; + pixel_y = 4 }, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/head/beret/royal_marine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"cMS" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "cMV" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -28293,60 +7330,63 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"cNc" = ( -/obj/structure/platform{ - dir = 1 +"cMY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cNj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hull/upper_hull/u_a_s) -"cNd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 20; - pixel_x = -7 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/item/ashtray/bronze{ - pixel_y = 19; - pixel_x = 4 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cNl" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/landmark/map_item{ - pixel_y = 3; - pixel_x = -1 +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cNx" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cNF" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"cNQ" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"cNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cNe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"cNf" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/living/briefing) -"cNH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"cNV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/containment/cell/cl) +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) "cNX" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28356,142 +7396,210 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cNY" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"cOi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"cOa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_a_p) -"cOK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cOc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cOe" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/fore_hallway) +"cOu" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"cOx" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"cOB" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cOJ" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"cOP" = ( +/obj/structure/sink{ dir = 4; - icon_state = "outerhull_dir" + pixel_x = 11 }, -/area/almayer/engineering/upper_engineering/starboard) -"cOM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"cPg" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"cOS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 }, -/area/almayer/command/cichallway) -"cQc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"cOT" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cOW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"cPo" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"cPx" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/living/briefing) -"cQg" = ( -/obj/structure/surface/rack, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cPE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cPG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"cPL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"cQo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cPN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"cPR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/containment) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"cPU" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Chief MP's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"cQb" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"cQe" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"cQf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cQq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cQr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "cQv" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) -"cQF" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"cQN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"cQx" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"cQA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/area/almayer/hull/lower_hull/l_f_p) -"cRb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"cQH" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"cQK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"cQT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cQV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) -"cRc" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"cRk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"cRg" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"cRH" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"cRi" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/port) -"cRv" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "cRK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -28501,13 +7609,40 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"cSk" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"cRM" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cRT" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"cRU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cRV" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -28515,233 +7650,268 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"cSx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cSC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"cSq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"cSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/starboard_missiles) -"cSK" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"cSB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/area/almayer/hull/lower_hull/l_m_s) -"cSN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"cSD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) -"cSQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 1"; + name = "\improper Courtyard Divider" }, -/area/almayer/squads/bravo) -"cST" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"cSI" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"cSU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"cSZ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/area/almayer/living/captain_mess) -"cTf" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cTp" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) -"cTC" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +"cTx" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cTA" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/green/east, /area/almayer/living/offices) -"cUb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"cTD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"cTE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"cTG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cTU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"cTZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/engineering/engineering_workshop/hangar) -"cUv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"cUg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"cVs" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"cUi" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/area/almayer/hull/upper_hull/u_a_p) -"cVw" = ( +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"cUo" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cUr" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"cVJ" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"cUC" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"cUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"cVK" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"cUT" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"cVa" = ( +/obj/structure/sign/safety/ladder{ pixel_x = 8; pixel_y = 32 }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"cWr" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"cVd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/structure/bed/chair{ - can_buckle = 0; +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cVe" = ( +/obj/structure/machinery/cryopod/right{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/offices) -"cWs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"cVf" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"cVB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"cVF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/main_office) -"cWt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"cVL" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"cVV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/lower_engineering) -"cWv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/starboard_garden) -"cWy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"cWa" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/bridgebunks) -"cWA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"cWI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cWb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"cWN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"cWi" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"cWk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"cWq" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"cWx" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) +"cWJ" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"cWR" = ( /obj/structure/machinery/light{ - dir = 8 + unacidable = 1; + unslashable = 1 }, -/obj/structure/filingcabinet/security{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"cXe" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -28757,95 +7927,63 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXq" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"cXC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"cXF" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, -/area/almayer/medical/containment/cell/cl) -"cXR" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" +"cXk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/squads/req) -"cXW" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"cXN" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cYi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/upper_medical) -"cXY" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" }, -/area/almayer/engineering/upper_engineering/starboard) -"cXZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"cYx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"cYB" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"cYu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"cYE" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_p) +"cYH" = ( +/obj/structure/machinery/light{ + alpha = 0; + dir = 8; + pixel_x = -32 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"cYO" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) "cYT" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"cZb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"cZg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, -/area/almayer/command/airoom) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -28855,97 +7993,96 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"cZm" = ( -/obj/structure/machinery/light{ - dir = 1 +"cZl" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"cZs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/chief_mp_office) -"cZJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cZr" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"cZu" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"cZD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cZH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cZK" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, /obj/item/tool/lighter, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"cZW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +"dag" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"daD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/engineering/upper_engineering/port) -"cZZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"daF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"dac" = ( +/area/almayer/hallways/lower/starboard_aft_hallway) +"daM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +/obj/structure/sign/safety/rewire{ + pixel_x = 12; + pixel_y = -24 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"daT" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"daZ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"daj" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"daz" = ( -/turf/closed/wall/almayer/white/hull, -/area/almayer/command/airoom) -"dbe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"dbi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "orange" + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -28962,530 +8099,469 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"dbq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, -/area/almayer/engineering/upper_engineering/port) -"dbv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 - }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"dbw" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; +"dbs" = ( +/obj/structure/machinery/atm{ pixel_y = 32 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"dbR" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/light/small{ +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"dbV" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"dca" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dci" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"dck" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"dcg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) "dcp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dcP" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) -"dcS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"ddj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"ddk" = ( +"dcv" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"ddz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"ddK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 }, -/area/almayer/engineering/engine_core) -"ddN" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dcw" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, +/turf/open/floor/almayer/green, /area/almayer/squads/req) -"deb" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"deg" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" +"dcx" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"dcz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/lifeboat_pumps/south2) -"deD" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_x = -5 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"deH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/chief_mp_office) +"dcG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"dcL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"dcY" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"deT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/upper/port) +"dcZ" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dde" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"ddi" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"ddn" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"dfa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"dfc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"ddy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/port_umbilical) -"dfg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_fore_hallway) +"ddz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"ddB" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"ddJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"ded" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"dej" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"deA" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"dfk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"dfp" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 +"deD" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = -5 }, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"dfC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/area/almayer/command/cic) +"deK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/grunt_rnr) -"dfO" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"deO" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 }, -/area/almayer/shipboard/brig/surgery) -"dfP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"deS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"dfa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dfS" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"dfT" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dfX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 }, -/area/almayer/hull/upper_hull/u_m_s) -"dgg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 10 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 9; + pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/ashtray/plastic{ + pixel_y = -4 }, -/area/almayer/command/computerlab) -"dgl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"dgh" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/almayer/living/gym) -"dgx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/mirror{ + pixel_x = 28 }, -/area/almayer/shipboard/brig/chief_mp_office) -"dgN" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"dgi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"dhQ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"dgo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"dgu" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dgz" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"dgB" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dgK" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/device/camera, /turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"dhR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/area/almayer/maint/hull/upper/u_f_s) +"dgQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"dgZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/briefing) -"dhU" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/port_hallway) -"dhZ" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"dhg" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"dhl" = ( /obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"diw" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"diz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"dhx" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) +"dhP" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dhY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/upper_engineering/port) -"diF" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dia" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; +/obj/structure/sign/safety/water{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"diJ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"diM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"djm" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"diq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + layer = 2.5 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"djp" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, +"dix" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"diP" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"diY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "NW-out"; + pixel_y = 2 }, -/area/almayer/engineering/engineering_workshop/hangar) -"djL" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"djb" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"djc" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"djM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/engineering/engineering_workshop/hangar) -"djN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"djf" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"djs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"dju" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"djv" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/engineering/upper_engineering/port) -"djQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"djZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dkb" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"dke" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/starboard_point_defense) -"dka" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/medical/operating_room_four) -"dkj" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"dkm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"dkq" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "red" + icon_state = "pipe-c" }, -/area/almayer/living/briefing) -"dkH" = ( -/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"dkp" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dkr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"dkO" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"dkv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"dkK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/stair_clone/upper) +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"dkP" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) "dkS" = ( /obj/structure/machinery/shower, /obj/structure/window/reinforced/tinted{ @@ -29497,69 +8573,81 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"dll" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orangefull" +"dkW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"dlu" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dlw" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/living/briefing) -"dlp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"dls" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"dlA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/area/almayer/shipboard/brig/surgery) -"dlN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dlB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"dlM" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/midship_hallway) +"dmk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/lifeboat_pumps/north1) -"dmg" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dmn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 }, -/area/almayer/command/cichallway) -"dmv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 }, -/area/almayer/command/cichallway) +/obj/structure/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) "dmA" = ( /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"dmE" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"dmQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"dmP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -29578,490 +8666,449 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dnk" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 +"dmY" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"dnd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"dnh" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 }, -/area/almayer/hull/upper_hull/u_a_p) -"dnC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dnn" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dnB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"dnI" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"dnW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"dog" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/medical/hydroponics) -"dnE" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"dnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/starboard) -"dnJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"dox" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"dnS" = ( -/obj/structure/safe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "S" }, -/area/almayer/command/securestorage) -"dnX" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dod" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"dof" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"doj" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) -"doJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"doy" = ( +/obj/structure/disposalpipe/junction{ dir = 1 }, -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) -"doP" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"dpo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"dpy" = ( -/obj/structure/disposalpipe/segment{ +"doB" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"doI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"doL" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"doM" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"doW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"dpb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"dpc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"dpk" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"dpn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hull/lower_hull/l_f_s) -"dpO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "200;91;92" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"dpr" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"dpx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"dpB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/delta) -"dpV" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"dpC" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"dpL" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) "dqb" = ( /obj/structure/sign/safety/security{ pixel_x = -16 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"dqd" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dqg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"dqj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/command/lifeboat) "dqw" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room/notunnel) -"dqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"dqE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"dqH" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"dqN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"dqV" = ( +"dqA" = ( /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"dra" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"dre" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_y = 24; - req_access_txt = "3" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"drx" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, /obj/structure/sign/safety/coffee{ - pixel_y = 32 + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/shipboard/brig/perma) -"drj" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"drz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"dsy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie_delta_shared) -"drk" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "silver" + name = "\improper Starboard Viewing Room" }, -/area/almayer/engineering/port_atmos) -"drt" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"dsz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"dsF" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/port_hallway) -"drT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"dsK" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"dsS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"dsk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"dsU" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/bed/sofa/south/grey/left, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hallways/stern_hallway) -"dsu" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"dtb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"dte" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_a_p) -"dsw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/shipboard/brig/cryo) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"dth" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) "dtv" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"dtx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"dtM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"dtK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"dtN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"dtR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"dtW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) "dtZ" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dum" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"dua" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"dub" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"duo" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"dut" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"dul" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) "duv" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"duw" = ( +"duD" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"duG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"dvc" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/area/almayer/living/briefing) -"dux" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/starboard_garden) -"duF" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"dvh" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/area/almayer/engineering/upper_engineering/port) -"duT" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"dvn" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/shipboard/brig/cells) -"duV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dvz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/alpha) -"dvg" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"dvB" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"dvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"dvI" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dvK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/chemistry) -"dvl" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dvP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"dvV" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"dvs" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"dvF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dvW" = ( +/obj/structure/machinery/fuelpump, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"dvT" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/general_equipment) +/area/almayer/lifeboat_pumps/north1) +"dwc" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dwn" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -30070,239 +9117,242 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"dwA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"dwt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/medical/upper_medical) -"dwI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dwu" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/area/almayer/engineering/upper_engineering/starboard) -"dxm" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"dxu" = ( -/obj/structure/sink{ +/obj/structure/stairs{ dir = 1; - pixel_y = -10 + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + req_one_access_txt = "90;91;92" }, -/area/almayer/medical/operating_room_four) -"dxv" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dwz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ dir = 8; - icon_state = "silvercorner" + pixel_x = 17; + pixel_y = 8 }, -/area/almayer/command/computerlab) -"dxC" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = -6 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dwJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 }, -/area/almayer/hull/upper_hull/u_a_s) -"dxF" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/stair_clone/upper) -"dxK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dwL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"dwS" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) +"dxf" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"dxk" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/lifeboat) -"dxL" = ( -/obj/structure/sign/safety/fire_haz{ +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"dxq" = ( +/obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dxA" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dxS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/engineering/engineering_workshop/hangar) -"dxT" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"dyk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"dyb" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"dyd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"dyp" = ( -/obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"dyx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/req) -"dyF" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"dyn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"dyK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"dyC" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/ce_room) -"dzF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"dAb" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"dyV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"dAi" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dyY" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dzc" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"dzy" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 }, -/area/almayer/lifeboat_pumps/north1) -"dAq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dzC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dzV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" }, -/area/almayer/squads/bravo) -"dAO" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"dAh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dAX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAj" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"dAn" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dAx" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Comms" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"dAG" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAN" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/cic) -"dBj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"dAR" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, -/area/almayer/medical/hydroponics) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "dBp" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -30310,63 +9360,38 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"dBs" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - icon_state = "cargo" +"dBx" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" }, -/area/almayer/command/cic) -"dBG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/sign/safety/ladder{ + pixel_x = -17 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) "dBH" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"dBO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"dBL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/medical/operating_room_one) -"dCe" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" }, -/obj/structure/sign/safety/coffee{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dBM" = ( +/obj/structure/sign/safety/restrictedarea{ pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/cells) -"dCh" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 7 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -30374,76 +9399,68 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"dCt" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"dCx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"dCz" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"dCC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) -"dCD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"dCE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"dCF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "dCK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"dCP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"dCS" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"dCU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"dDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"dCY" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dDc" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"dDf" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"dDr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/command/airoom) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) "dDt" = ( /obj/structure/toilet{ dir = 1 @@ -30458,203 +9475,162 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDC" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"dDu" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_f_s) -"dDL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"dDx" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"dDy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + name = "\improper Brig Cells" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"dDz" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"dDQ" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"dDV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"dEm" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/aicore/no_build/ai_arrow, +/area/almayer/command/airoom) +"dEd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dEg" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "sterile_green_corner" + name = "ship-grade camera" }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "dEn" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"dEt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" +"dEo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/engineering/upper_engineering/port) -"dEC" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"dED" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"dEK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"dEQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dEL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/living/briefing) -"dEV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"dFk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/command/lifeboat) -"dFC" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/shipboard/brig/lobby) +"dFd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) +/turf/open/floor/plating, +/area/almayer/living/gym) +"dFE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFR" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"dFV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"dGc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"dGl" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"dGr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"dGw" = ( +"dFH" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + icon_state = "NW-out" }, -/area/almayer/hallways/aft_hallway) -"dGz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"dFJ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"dFM" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"dGC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/s_bow) +"dFP" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dGa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"dGh" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = 32 }, -/area/almayer/lifeboat_pumps/south1) -"dGD" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Spare Restraints"; - req_one_access_txt = "3" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"dGt" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) "dHd" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -30665,32 +9641,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dHe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"dHk" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"dHr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +"dHq" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"dHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "dHu" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -30703,31 +9665,36 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dHv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +"dHx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/surgery) -"dHV" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/pipes/unary/freezer{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"dHE" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dHS" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/area/almayer/medical/medical_science) +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"dHU" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) "dHZ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -30737,195 +9704,259 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"dIi" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk{ - allow_construction = 0 +"dIm" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/command/airoom) -"dIl" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"dIw" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"dIA" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"dIN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"dIn" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"dIV" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/command/airoom) -"dIE" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"dIZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/obj/structure/phone_base{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"dJf" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"dJE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/area/almayer/engineering/ce_room) -"dII" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"dJF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"dJN" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"dJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) -"dIR" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"dJH" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/phone_base{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"dJP" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/grunt_rnr) -"dJX" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 }, -/area/almayer/command/computerlab) -"dKm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"dJQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"dJZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dKf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"dKj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"dKn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"dKA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dKL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/airmix) +"dLb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"dLk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"dKp" = ( -/turf/open/floor/almayer/research/containment/corner{ +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/area/almayer/medical/containment/cell/cl) -"dKL" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/airmix) -"dLc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dLx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) -"dLt" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +"dLy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"dLB" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"dLN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"dLR" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 }, -/area/almayer/shipboard/sea_office) -"dLz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"dMd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"dLE" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"dMw" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dMA" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null }, -/area/almayer/hallways/aft_hallway) -"dMB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"dMD" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dMI" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) "dMK" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell) -"dNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"dNd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"dNq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"dNn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"dNs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) "dNt" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -30935,128 +9966,202 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"dNx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"dNB" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"dNM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"dNZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"dNF" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dNQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/command/cic) -"dOl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"dNT" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"dNY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"dOo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/living/captain_mess) -"dOL" = ( -/obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"dPm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/lower/port_midship_hallway) +"dOw" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"dOD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/command/lifeboat) -"dPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"dOE" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"dPU" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +/obj/structure/sign/poster{ + pixel_x = -32 }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"dON" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"dOP" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dPY" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/maint/hull/upper/p_bow) +"dOV" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = -24; + req_one_access_txt = "91;92" }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dOX" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/area/almayer/hull/upper_hull/u_f_s) -"dQl" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dOY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"dOZ" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"dPe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"dPq" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"dPt" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"dPu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/stairs{ +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"dPx" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/command/airoom) -"dQs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"dPy" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"dQv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"dPD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/surgery) -"dQE" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"dPF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"dPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/hull/upper_hull/u_m_p) -"dQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/area/almayer/hallways/upper/starboard) +"dPM" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dPN" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"dPO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dQn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"dQP" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"dQV" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"dQW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31067,109 +10172,88 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"dRw" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"dRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" +"dRm" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"dRt" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices/flight) -"dRG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dRJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"dRN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) "dRT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dRV" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"dSc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"dSn" = ( +"dRZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"dSd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"dSe" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"dSf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) -"dSp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"dSj" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"dSs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"dSr" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hull/lower_hull/l_a_s) -"dSA" = ( -/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"dSv" = ( +/obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) +/area/almayer/maint/hull/upper/p_stern) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -31178,118 +10262,135 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"dSX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"dSZ" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"dTc" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, +"dSQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/area/almayer/command/corporateliason) -"dTt" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dTq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dTu" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "dTI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dTZ" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"dUE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"dTK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"dTU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"dTV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"dUF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dUb" = ( +/obj/effect/landmark/start/reporter, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dUI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"dUS" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"dUZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"dVd" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 +/area/almayer/maint/upper/u_m_p) +"dUc" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"dUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"dUr" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dUt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"dVe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"dUu" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dUN" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"dVm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"dVa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"dVj" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"dVr" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) "dVs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -31300,118 +10401,94 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"dVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +"dVA" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/area/almayer/medical/medical_science) -"dVO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"dVU" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/offices) -"dVZ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dVV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_y = 32; - req_one_access_txt = "24;31" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_y = 24; - req_access_txt = "3" - }, -/obj/structure/machinery/faxmachine/uscm/brig/chief, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"dWm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"dWw" = ( -/turf/open/floor/almayer{ +"dWn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"dWr" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/basketball) -"dWz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 11; - pixel_y = 37; - req_access_txt = "200" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"dWX" = ( -/obj/structure/machinery/light{ - dir = 8 + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"dWM" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dWO" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/engineering/upper_engineering/starboard) -"dXd" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"dWP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dWU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/area/almayer/engineering/laundry) -"dXr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dXg" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"dXy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"dXG" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dXt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"dXv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dXI" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -31422,43 +10499,70 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dXY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"dYh" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"dXZ" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dYb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"dYg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"dYl" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"dYr" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dYK" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 +"dYw" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"dYE" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dYH" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"dYJ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"dYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -31466,52 +10570,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dYX" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"dZv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/briefing) -"dZd" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/area/almayer/hallways/stern_hallway) -"dZr" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"dZy" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"dZO" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"eaf" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"dZR" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ - dir = 8 +/mob/living/silicon/decoy/ship_ai{ + layer = 2.98; + pixel_y = -16 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dZT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"dZU" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eah" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"eam" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "ean" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -31526,429 +10650,385 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"eas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"eax" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +"eap" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"eaz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/port_point_defense) -"eaX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"eaD" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"eaL" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"eaO" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cic_hallway) +"eaQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices) +"ebc" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ebn" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"ebt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ebf" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" }, -/obj/structure/closet/secure_closet/guncabinet/blue/riot_control, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"ebz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell/cl) +"ebh" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"ebq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet/blue/riot_control, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"ebD" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ebJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"ebN" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/command/airoom) -"ebO" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"ebY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"eco" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"ecq" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 + icon_state = "W" }, /obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 6 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"ecr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/captain_mess) -"ect" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" + pixel_x = -32 }, -/area/almayer/engineering/engineering_workshop) -"ecM" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"eby" = ( /obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ecQ" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" + dir = 8 }, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"ebC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ebE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ebK" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"ebM" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"ecR" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"ebP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"ebR" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"ecT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/coatrack{ - pixel_y = 1; - pixel_x = -5 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ecZ" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 27 }, -/area/almayer/shipboard/navigation) -"edv" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 27 }, -/area/almayer/medical/medical_science) -"edx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console" }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"ebS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"eca" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"edM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/vehiclehangar) -"eed" = ( -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "S" }, -/area/almayer/command/computerlab) -"eei" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eck" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; pixel_y = 8 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"eem" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/phone_base/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ecr" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/living/captain_mess) -"eep" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"ecA" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ecJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"ecN" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"edm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"edp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"edD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"eet" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"edL" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"edS" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 }, -/area/almayer/engineering/upper_engineering/starboard) -"eeu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"edX" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eea" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"eee" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/grunt_rnr) -"eeN" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eej" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/brig/processing) -"efh" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"eek" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"een" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" +/obj/structure/machinery/computer/working_joe{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -8; - pixel_y = 2; - req_access_txt = "3" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eeA" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"eeG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -8; - pixel_y = 10; - req_access_txt = "3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"eeY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 2; - pixel_y = 10; - req_access_txt = "3" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"efg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/machinery/recharger{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"efm" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"efu" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/shipboard/brig/main_office) -"efK" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"efA" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"efF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"efN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"efU" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 8; + pixel_y = 9 }, -/area/almayer/hull/lower_hull/l_m_s) -"egc" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ega" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"egh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"egj" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"egl" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"egm" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"egq" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"egt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" +"egE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"egO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/chapel) -"egB" = ( -/obj/structure/platform{ - dir = 1 + dir = 4 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/hull/upper_hull/u_a_s) -"egR" = ( /obj/structure/bed/chair{ dir = 8; pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"egS" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"egV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"ehe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "ehi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -31963,83 +11043,88 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ehu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "ehx" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"ehH" = ( +"ehE" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"ehF" = ( +/obj/item/stool, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"ehR" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 + icon_state = "W" }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"ehM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"eif" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"eih" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"eii" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/area/almayer/living/port_emb) -"eim" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"eip" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) "eiq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/magazine/dirty, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"eiw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"eiE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) +"eiy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) +"eiC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "eiH" = ( /obj/structure/machinery/light{ dir = 8 @@ -32049,190 +11134,218 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eiK" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"eiT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 }, -/area/almayer/shipboard/brig/cic_hallway) -"eiN" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ejb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig/chief, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"ejd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/living/port_emb) -"eiO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"ejk" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"ejn" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/area/almayer/shipboard/brig/main_office) -"eiP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/area/almayer/living/gym) -"ejo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/squads/charlie) -"ejp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"ejt" = ( -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"ejs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/area/almayer/command/lifeboat) -"ejw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"ejK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"ejA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"ejY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"ekg" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"eko" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eky" = ( -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ekO" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"ejE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"ejG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/hull/upper_hull/u_m_p) -"ekY" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"ejH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Returns"; + pixel_x = 25; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ejN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/starboard_garden) -"elf" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ejO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "orange" + icon_state = "pipe-c" }, -/area/almayer/engineering/upper_engineering) -"elq" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ejZ" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Synth Bay" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eke" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/shipboard/brig/perma) -"elA" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ekp" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ekt" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/stern_hallway) -"elE" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"ekw" = ( +/obj/structure/machinery/ares/processor/interface, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"eky" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ekD" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"ekK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 2; - icon_state = "pipe-c" + name = "\improper Officer's Study" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"ekS" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"ekX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/operating_room_one) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eln" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"elr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"elw" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "elR" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell) -"eme" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"emn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) +"emk" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "emp" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/processing) @@ -32241,78 +11354,78 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emx" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"emG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"emK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"emO" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) -"ene" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/securestorage) -"enf" = ( -/obj/structure/bed/chair{ +"emu" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"emw" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"emD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/lower_hull/l_m_s) -"eni" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"emR" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/magazine/book/spacebeast, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/evidence_storage) -"enx" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -7; + pixel_y = 10 }, -/area/almayer/hallways/starboard_hallway) -"enz" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"emY" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"eno" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/vending/snack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"enF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"enU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"eoa" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"eod" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_s) +"eoh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "eon" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32322,6 +11435,34 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"eoo" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"eos" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eox" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eoy" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"eoC" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -32329,88 +11470,71 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 +"eoY" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"epg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"eph" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eoP" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 +/area/almayer/maint/hull/upper/p_bow) +"ept" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"epv" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"epy" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/perma) -"eoT" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"epP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"epq" = ( /obj/structure/stairs/perspective{ dir = 1; icon_state = "p_stair_full" }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 27; - serial_number = 12 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"epu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) -"epA" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"epK" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 - }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"epQ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) +"epW" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -32437,110 +11561,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqk" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"eqB" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"eqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +"eqr" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"eqC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/medical/containment/cell) -"eqI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eqF" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eqM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/port_missiles) +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "eqN" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"eqP" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 +"eqO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/skills{ + dir = 4; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, -/area/almayer/squads/req) -"erd" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4; + pixel_y = -18 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eqW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/area/almayer/medical/containment/cell/cl) -"erh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 3"; + name = "\improper Courtyard Divider" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"erx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"erc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"erf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"erw" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 }, -/area/almayer/shipboard/brig/cryo) -"erz" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/item/device/camera_film, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) "erG" = ( /obj/structure/disposalpipe/junction{ dir = 2; @@ -32550,48 +11656,81 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ +"erV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + dir = 1; + name = "\improper Brig Prison Yard And Offices" }, -/area/almayer/command/airoom) -"erS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"esi" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/west{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"esb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"esc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 32; + pixel_y = -22 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"ese" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"esh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"est" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"esv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"esF" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"esE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) "esK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -32606,160 +11745,219 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"esT" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +"esO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/lifeboat) -"etf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"etc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/command/lifeboat) -"ets" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"eti" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"etm" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"etq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"etr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"etE" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/space) -"etF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"etK" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"etR" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"etU" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"etW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/shipboard/starboard_point_defense) -"eua" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/living/bridgebunks) -"eup" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"etX" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/living/officer_study) -"euN" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"eue" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "200;91;92" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"euu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"euK" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"euP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/area/almayer/command/airoom) -"euO" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/area/almayer/lifeboat_pumps/north1) -"euV" = ( -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"evd" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "logo_c" + name = "ship-grade camera" }, -/area/almayer/command/cic) -"euY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"evf" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"evq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/port) -"eva" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/machinery/recharge_station{ + layer = 2.9 }, -/area/almayer/living/basketball) -"evg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"evk" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"evs" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"evO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"evQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"evR" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"evT" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/starboard) -"evl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "evX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ewo" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) +"ewb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"ewm" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -32770,218 +11968,229 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"ewO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"ewF" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ewH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/squads/delta) -"ewS" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ewJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" }, -/area/almayer/command/cichallway) -"ewT" = ( +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = 16; + pixel_y = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"ewL" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"ewU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"exa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"exc" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"exr" = ( +"exj" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"exl" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"exq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"ext" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"exy" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" + dir = 6 }, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"exv" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 }, -/area/almayer/engineering/upper_engineering/starboard) -"eyd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"eyg" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"exA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/cryo) -"eyv" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/lifeboat_pumps/south1) -"eyG" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"exW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/almayer/lifeboat_pumps/south2) -"eyQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eyh" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eyy" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) +"eyO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"eyR" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"eyV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"eyT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/cells) -"ezG" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"eze" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"ezj" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ezy" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lockerroom) -"ezQ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"ezU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"ezX" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"eAg" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"ezH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/squads/alpha) -"eAC" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"ezS" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 1 }, -/area/almayer/command/lifeboat) -"eAL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ezX" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"ezZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 }, -/area/almayer/command/lifeboat) -"eAU" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"eAb" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"eAe" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - health = 80 + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/living/basketball) -"eBd" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"eAs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/poster{ - icon_state = "poster14"; +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eAE" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"eAW" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "eBe" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -32990,151 +12199,163 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eBj" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"eBC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"eBO" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"eBV" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"eBW" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +"eBi" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 }, -/area/almayer/shipboard/brig/evidence_storage) -"eBZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eBq" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"eBr" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; pixel_y = 6 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"eCo" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"eBE" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"eBR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eCf" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"eCi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/lifeboat_pumps/south2) -"eCS" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/item/trash/popcorn, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"eCj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/briefing) -"eDo" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"eCl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"eCG" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"eCH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/upper_medical) +/obj/structure/closet/secure_closet/fridge/organic, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"eCQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "eDu" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"eDz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"eDL" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"eDO" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"eDG" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"eEb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"eEh" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"eEc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 }, -/area/almayer/hallways/hangar) -"eEk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "eEo" = ( /obj/structure/filingcabinet, /turf/open/floor/almayer, @@ -33145,77 +12366,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eFj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"eEy" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eEU" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eEX" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"eEY" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"eFg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/emerald, /area/almayer/squads/charlie) -"eFp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"eFH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"eFK" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +"eFu" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"eFz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/item/bedsheet/hop, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eFC" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/area/almayer/engineering/upper_engineering/port) -"eFM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"eFP" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SecVault"; + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "eFT" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -33223,503 +12437,774 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"eGb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +"eFV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north2) -"eGg" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"eFY" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"eGm" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"eGo" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"eGh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel{ - pixel_x = -1; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"eGu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/stack/cable_coil, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"eGx" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eGB" = ( +/obj/structure/platform_decoration, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"eGl" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 +/area/almayer/living/briefing) +"eGJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eGL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"eGQ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"eGr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eGZ" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eHm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"eHo" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"eHt" = ( +/obj/effect/landmark/late_join/working_joe, +/obj/effect/landmark/start/working_joe, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"eHE" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"eHG" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/shipboard/brig/surgery) -"eGs" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) -"eGz" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"eGB" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eGF" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"eGH" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"eHM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"eGZ" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eHZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"eHa" = ( +/area/almayer/hallways/lower/port_fore_hallway) +"eIu" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"eIz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"eIO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"eJf" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"eJp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eJs" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eJy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) +"eJJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"eJK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/squads/req) -"eHf" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eJV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + layer = 3.04; + pixel_x = -2; + pixel_y = 2 }, -/area/almayer/hull/lower_hull/l_m_p) -"eHj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -11; + pixel_y = 16 }, -/area/almayer/command/corporateliason) -"eHx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -2; + pixel_y = 16 }, -/area/almayer/command/cichallway) -"eHY" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eJX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"eJZ" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"eKe" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"eKo" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/command/computerlab) -"eIA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eKs" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eJd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"eKz" = ( +/obj/item/tool/screwdriver, /obj/structure/platform_decoration{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eKE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hull/upper_hull/u_a_s) -"eJg" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_m_s) -"eJh" = ( /obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"eKH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"eKN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eKX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"eLa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_f_p) -"eJQ" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "outerhull_dir" + pixel_x = 12; + pixel_y = 13 }, -/area/almayer/command/lifeboat) -"eJX" = ( /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"eLq" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/ce_room) -"eKg" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" +"eLs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"eKD" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"eLu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"eKH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"eKI" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"eLE" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; name = "ship-grade camera" }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"eLF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/shipboard/brig/medical) +"eLS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/req) -"eKJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"eLU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/command/airoom) -"eKK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/obj/structure/mirror{ - pixel_x = 28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"eMa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"eMe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/area/almayer/command/corporateliason) -"eKM" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"eMl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"eMr" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 }, -/area/almayer/hull/upper_hull/u_f_s) -"eKO" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"eMt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"eMx" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"eMR" = ( +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, /obj/structure/bed/chair{ - dir = 1 + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"eKT" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/almayer/living/offices) -"eLz" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"eMX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hallways/repair_bay) -"eMh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eNe" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eNi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/ce_room) +"eNo" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/laundry) -"eMP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"eNr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"eNC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"eNM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/command/cichallway) -"eNi" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/ce_room) -"eNv" = ( -/obj/structure/largecrate/random, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"eNx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/lower/starboard_aft_hallway) +"eNX" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 }, -/area/almayer/hull/lower_hull/l_f_s) -"eNI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/medical/containment) -"eNL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"eOh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"eOe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/evidence_storage) -"eOk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"eOm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 10 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"eOt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/brig/lobby) -"eOr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eOv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"eOL" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"eON" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"eOS" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"eOV" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ePh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/lower_hull/l_f_p) -"eOM" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"ePp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/powered) -"eOR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ePt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"eOW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ePk" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"ePs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"ePA" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"ePy" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"ePB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" + dir = 4 }, -/area/almayer/shipboard/brig/general_equipment) -"ePY" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"ePJ" = ( /obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"eQi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"ePK" = ( +/obj/structure/sign/safety/restrictedarea{ pixel_x = 8; pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ePR" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "ares_vault_out"; + name = "aicore" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"ePU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"eQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"eRe" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"eQe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eQl" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"eQv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/upper_hull/u_a_p) -"eRt" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eQH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"eRu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"eQJ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"eRh" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eRn" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"eRF" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/command/cic) -"eRy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"eSc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" }, -/area/almayer/medical/lower_medical_medbay) -"eRL" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"eRR" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"eSd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"eSk" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"eSv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"eSw" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"eSE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/starboard_garden) -"eSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/medical/medical_science) -"eSU" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eSF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"eSI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/space) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -33730,212 +13215,258 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - icon_state = "redfull" +"eTf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/medical/upper_medical) -"eTo" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"eTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"eTt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = 25 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"eTx" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"eTE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"eTO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"eUh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"eUn" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"eUz" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"eUA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eTG" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/area/almayer/squads/alpha) -"eUR" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"eTK" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eTN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"eUg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"eUq" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"eUt" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"eUF" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"eUJ" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"eUU" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Spare Prison Uniforms" - }, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"eUM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"eUN" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"eUQ" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/shipboard/brig/processing) -"eVj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eVd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"eVh" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/marine{ + pixel_x = 3 }, -/area/almayer/command/cic) -"eVm" = ( -/obj/structure/sign/safety/bulkhead_door{ +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"eVo" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/firealarm{ pixel_x = 8; - pixel_y = 32 + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" }, -/area/almayer/hallways/hangar) -"eVv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"eVx" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 }, -/area/almayer/living/briefing) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"eVK" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"eVT" = ( -/obj/structure/disposalpipe/trunk{ +"eVU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"eVX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"eWg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"eWj" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"eWl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/area/almayer/medical/medical_science) -"eWp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"eWo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/briefing) -"eWF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"eWq" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"eWr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"eWw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/living/basketball) -"eWY" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"eWR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"eXh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"eXj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"eXm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"eXo" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/upper/mess) "eXq" = ( /turf/closed/wall/almayer, /area/almayer/living/offices/flight) @@ -33943,63 +13474,49 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eXU" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"eYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"eYu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 - }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 +"eXM" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"eXN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"eXV" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/briefing) -"eYz" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"eYb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"eYd" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"eYH" = ( -/obj/structure/platform{ - dir = 4 +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"eYs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/combat_correspondent) "eYM" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -34012,6 +13529,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"eYP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -34019,373 +13542,434 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"eYR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ +"eZc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"eZt" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering/port) -"eYW" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"eZi" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/port_hallway) -"eZj" = ( -/obj/structure/closet/secure_closet/guncabinet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"eZu" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) -"eZz" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"eZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"eZG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"eZR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hull/upper_hull/u_a_p) -"fad" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/almayer/hallways/aft_hallway) -"fau" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"fal" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"fay" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"faK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "faO" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"faX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"faW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"faY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"fbd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fbh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fbE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"fbF" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"fbH" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"fbJ" = ( +/obj/structure/sink{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + pixel_x = 11 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"fbK" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"fbM" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 }, -/area/almayer/command/cichallway) -"fbb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"fbQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; - pixel_x = -1; pixel_y = 1 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"fbo" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"fbv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"fbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"fcf" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fci" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"fbx" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"fbB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"fbY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Execution Shutters"; - name = "\improper Privacy Shutters" +/area/almayer/maint/hull/lower/l_m_p) +"fck" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fcn" = ( +/obj/structure/morgue{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"fcu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/obj/structure/machinery/power/apc/almayer/west, +/obj/item/storage/briefcase{ + pixel_y = 15 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"fcv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/execution) -"fcf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fcy" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fcw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"fcJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/area/almayer/medical/hydroponics) -"fcB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 }, -/area/almayer/squads/charlie) -"fcE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/item/device/camera{ + pixel_x = 7 }, -/area/almayer/living/basketball) -"fcF" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fcO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"fcG" = ( +/area/almayer/hallways/upper/midship_hallway) +"fcZ" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"fdi" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fcI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"fdo" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"fdr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fdv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"fcM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"fdw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) +"fdS" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fec" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 }, -/area/almayer/engineering/ce_room) -"fcP" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"fcX" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fed" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fee" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fel" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"fet" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/command/airoom) -"fdj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) -"fdA" = ( -/obj/structure/sign/safety/storage{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"fdE" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"feu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"few" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/starboard_hallway) +"feC" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"feI" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"ffb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"fdX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/area/almayer/command/lifeboat) -"fdZ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"fff" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"ffi" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/medical/lockerroom) -"feq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"fga" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/living/grunt_rnr) -"feD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"fgb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/cichallway) -"feI" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"feS" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"fgc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"feY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"fgd" = ( +/obj/structure/platform{ dir = 8; - icon_state = "sterile_green_side" + layer = 2.7 }, -/area/almayer/medical/operating_room_two) -"ffE" = ( -/turf/open/floor/almayer/no_build{ - icon_state = "plating" +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 }, -/area/almayer/command/airoom) -"fgh" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"fgj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"fgp" = ( /obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"fgs" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/powered/agent) +"fgy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/shipboard/starboard_point_defense) -"fgl" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) -"fgm" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ dir = 1; - icon_state = "green" + name = "\improper Combat Information Center" }, -/area/almayer/squads/req) -"fgo" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"fgx" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fgC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -34407,13 +13991,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fgF" = ( +"fgI" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fgJ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/item/prop{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"fgK" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -34440,224 +14083,353 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"fgV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"fhA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"fho" = ( +/obj/item/trash/plate{ + pixel_x = 9; + pixel_y = 11 }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 }, -/area/almayer/hull/lower_hull/l_a_s) -"fhH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"fhq" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"fhI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/upper_engineering/starboard) -"fhQ" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/pizzabox/mushroom{ + pixel_y = 11 }, -/area/almayer/living/grunt_rnr) -"fiq" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_p) -"fir" = ( +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"fhJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fik" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"fiy" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"fiC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/fore_hallway) +"fiD" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"fiE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"fiH" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/area/almayer/engineering/engine_core) -"fix" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"fiN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ + pixel_y = 6 }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"fiR" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fjB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"fjK" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"fkf" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"fkh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"fkk" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"fkl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/area/almayer/command/securestorage) -"fjO" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fkn" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"fkv" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/area/almayer/shipboard/brig/main_office) -"fkO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/paper, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 4 }, -/area/almayer/hallways/port_hallway) -"fkW" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"fkA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/toy/deck/uno, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"fkB" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/area/almayer/hull/lower_hull/l_f_s) +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"fkH" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"flE" = ( -/obj/structure/platform{ +"flk" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"flz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"flP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"flB" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"flO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"fmk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"fml" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_f_p) -"flW" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ - dir = 4; - invisibility = 101 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"fmo" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/living/briefing) -"fmv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fmt" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, -/area/almayer/command/airoom) -"fmB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"fmy" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"fmS" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"fmF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"fnl" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"fmL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"fmO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 }, -/turf/open/floor/almayer{ +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "redcorner" + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/execution) -"fnx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fnf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/landmark/map_item, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"fno" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fnB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/living/briefing) -"fnA" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"fnC" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"fnG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/shipboard/brig/main_office) -"fnI" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fnL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) "fnQ" = ( /obj/structure/toilet{ dir = 1 @@ -34670,27 +14442,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fnZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ +"fnR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fnT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"foL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/machinery/light{ +/obj/item/tool/pen{ + pixel_y = -2 + }, +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"foi" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"fos" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"foI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) "foN" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -34713,382 +14529,366 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"fpd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fps" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"fpO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"fpR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/starboard_atmos) -"fpT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"fpW" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"fqc" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"fqe" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; +"foT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"fqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"fpb" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"fqu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"fqx" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"fpi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" + icon_state = "SW-out" }, -/area/almayer/hull/upper_hull/u_m_p) -"fqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"fqZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fpk" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"fpl" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"fpm" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"frl" = ( -/turf/open/floor/almayer{ +"fpt" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"frz" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "pipe-c" }, -/area/almayer/shipboard/starboard_point_defense) -"frF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"fpB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fpE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/starboard_missiles) -"frM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"fpN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" }, -/area/almayer/command/airoom) -"fsd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"fqg" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"fso" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Cryogenics Bay"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"fqk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/area/almayer/shipboard/brig/cryo) -"fsp" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"fql" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"fqv" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fqz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/gym) -"fsz" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"fqA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/armory) -"fsH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"fqO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"fqQ" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"fsT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"fqX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"fqY" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"fra" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"frh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"frn" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"frp" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"fry" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/area/almayer/shipboard/brig/armory) -"fsU" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"frC" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"frJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"frQ" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"frT" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"frW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/area/almayer/lifeboat_pumps/north1) -"fsV" = ( -/obj/structure/target, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"fti" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"frX" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"fsb" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 }, -/area/almayer/hallways/vehiclehangar) -"ftl" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fse" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"fsK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_p) -"fut" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"fuz" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"fsN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/mono, /area/almayer/living/pilotbunks) -"fuB" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"fuS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"fsX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ftk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"fto" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"ftv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"fuT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"ftx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"ftC" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/almayer/engineering/laundry) -"fuX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 8; - id = "Perma 2L"; - name = "\improper cell shutter" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ftG" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"fuY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ftU" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"fui" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"fuj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_p) -"fvd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/upper_medical) -"fvf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"fuk" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"fvu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"fvv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +"fuo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"fuG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hull/upper_hull/u_f_p) -"fvB" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/upper/u_m_p) +"fuK" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) +"fuW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/command/cic) -"fvJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"fvw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lockerroom) -"fvK" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"fvx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"fvM" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "fvN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35099,129 +14899,233 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fwD" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 +"fvP" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/containment{ + dir = 1 }, -/area/almayer/living/starboard_garden) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"fvR" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"fvV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"fwj" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"fwp" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"fwt" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"fwP" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/midship_hallway) +"fwV" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"fxu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 +"fxg" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower_engineering) -"fxz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fxi" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"fxI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"fxn" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"fxH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"fxL" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"fxN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"fxP" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" }, -/area/almayer/engineering/upper_engineering) -"fxO" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fxR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/upper_hull/u_f_p) -"fxW" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"fxT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/engineering/engine_core) -"fxZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"fyb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fyw" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"fyD" = ( +/obj/structure/machinery/light, +/obj/structure/ladder{ + height = 1; + id = "cicladder2" }, -/area/almayer/medical/lower_medical_medbay) -"fya" = ( +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"fyM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"fyN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fyT" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fyW" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"fyY" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/starboard_hallway) +"fzk" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/shipboard/weapon_room) -"fyg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/maint{ + pixel_y = -26 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"fzv" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/item/storage/briefcase{ - pixel_y = 15 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"fzB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fyD" = ( -/obj/structure/machinery/light, -/obj/structure/ladder{ - height = 1; - id = "cicladder2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"fza" = ( -/turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_m_s) -"fzq" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"fzF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution_storage) +"fzM" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -35238,465 +15142,334 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"fzZ" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"fAb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"fAd" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"fAi" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/area/almayer/living/offices/flight) -"fAo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"fAt" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fAS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"fBf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"fBD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"fBL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fAu" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"fAx" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/midship_hallway) +"fAQ" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"fBm" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"fBu" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"fBO" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_f_p) +"fBJ" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fBV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"fCE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/commandbunks) +"fCq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fDh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"fDj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"fDn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fDG" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/upper_engineering) -"fDJ" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"fDS" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"fDU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"fDV" = ( +"fCT" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 }, -/area/almayer/living/pilotbunks) -"fEg" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 15" +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fDg" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"fEk" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"fEC" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"fEN" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"fER" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"fEV" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"fDi" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"fDk" = ( +/obj/structure/curtain/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fFe" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/area/almayer/maint/hull/lower/l_a_s) +"fDw" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"fDz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"fFh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"fDB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/morgue) -"fFq" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"fDD" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"fDF" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"fEa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 3 }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"fFD" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fEb" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"fEc" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"fFL" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"fEo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"fEr" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/upper/u_a_p) +"fEt" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"fEQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/lower_medical_medbay) -"fFO" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/computer/cameras/almayer/ares{ dir = 4 }, -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"fFN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fGu" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"fGN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"fGY" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"fHc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 +"fGj" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fGp" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fGs" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/midship_hallway) +"fGy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fGz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"fHz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = -32 }, -/area/almayer/living/gym) -"fHC" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; layer = 2.5 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "SE-out" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"fGD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"fHF" = ( -/turf/open/floor/almayer{ - icon_state = "greenfull" +/area/almayer/hallways/lower/starboard_fore_hallway) +"fGK" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fGW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) -"fHO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +"fHE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fIe" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" }, -/area/almayer/hull/upper_hull/u_f_s) -"fHS" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"fIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_x = 6; - pixel_y = -24; - req_access_txt = "3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"fIi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"fIf" = ( -/obj/structure/sign/safety/bulkhead_door{ +/area/almayer/engineering/lower/workshop/hangar) +"fIm" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"fIq" = ( +/obj/structure/sign/safety/waterhazard{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fIx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"fIs" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"fIH" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"fIX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access = "19;21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"fIZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"fJm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"fIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"fJa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"fJt" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/command/cichallway) +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -35715,196 +15488,176 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"fJT" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"fJX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fJY" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +"fJP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/no_build{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/command/airoom) -"fKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/area/almayer/command/airoom) -"fKg" = ( -/obj/structure/closet/firecloset, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"fJS" = ( +/obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"fKl" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 +/area/almayer/maint/upper/u_f_s) +"fKd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fKj" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_a_p) -"fKt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fKm" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" }, -/obj/structure/barricade/handrail{ +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"fKz" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"fKT" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) -"fKV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"fLg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"fKF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fKL" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"fKN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"fKR" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fKU" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/living/grunt_rnr) -"fLn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"fKW" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"fLb" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"fLk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/shipboard/brig/general_equipment) -"fLX" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fLt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"fLu" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fLH" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"fMl" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/area/almayer/hallways/lower/vehiclehangar) +"fLU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/airoom) -"fMt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fLW" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fLZ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"fMf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fMD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"fME" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/laser{ - pixel_x = 32; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"fMP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fMX" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fMY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/airoom) -"fMA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) -"fNg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"fMZ" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35920,22 +15673,69 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNA" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 +"fNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/shipboard/brig/general_equipment) -"fNC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"fNz" = ( /obj/structure/disposalpipe/junction{ - dir = 8 + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fNI" = ( /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"fNK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fNL" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"fNX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fNZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fOe" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "fOh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; @@ -35949,271 +15749,527 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fOz" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"fOA" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/sea_office) -"fOJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"fON" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"fOL" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"fOR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"fPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"fOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/hangar) -"fPp" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"fOY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fPa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"fPj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fPr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"fPt" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"fPx" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"fPN" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"fPO" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"fPT" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"fPW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"fPX" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 }, -/area/almayer/living/port_emb) -"fPu" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"fQh" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"fQq" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"fPB" = ( -/obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"fQG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/command/airoom) -"fQk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"fQu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"fQR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fRa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/window/framed/almayer/white, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"fRi" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"fQF" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"fRo" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_p) -"fRr" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/hull/lower/stern) +"fRp" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) "fRC" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fRN" = ( -/obj/structure/sign/safety/restrictedarea{ +"fRD" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) +"fRF" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"fRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"fRT" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"fRX" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fSh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bathunisex{ pixel_x = 8; - pixel_y = 32 + pixel_y = 25 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"fSl" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/area/almayer/shipboard/brig/cells) +"fSu" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fSB" = ( +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 }, -/area/almayer/squads/req) -"fSm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"fSC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fSH" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"fSM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) -"fSK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"fTi" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"fSS" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/starboard_hallway) +"fSX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"fTl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "fTm" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"fTu" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/lower_hull/l_f_p) -"fTx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fTp" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"fTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Records"; + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fTy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"fTC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fTG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/hull/lower_hull/l_a_p) -"fTF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"fTP" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fTQ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"fUt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"fUx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, -/area/almayer/engineering/laundry) -"fTR" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"fUA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"fUE" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_a_s) -"fTU" = ( +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/item/toy/plush/barricade, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"fUL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"fUP" = ( +/obj/structure/machinery/computer/working_joe{ dir = 4; - icon_state = "green" + pixel_x = -17 }, -/area/almayer/hallways/starboard_hallway) -"fUn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"fVh" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/structure/sign/poster/io{ - pixel_y = 32; - name = "propaganda poster" +/obj/structure/platform{ + dir = 4 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"fUA" = ( -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fVi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, /area/almayer/living/briefing) -"fVz" = ( +"fVl" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"fVn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"fVA" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"fVD" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"fVF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fVM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) -"fVG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) +"fVR" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"fVS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fVW" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"fWi" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"fWk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"fWl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/chemistry) -"fWT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"fWm" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"fWo" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"fWt" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"fWC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/area/almayer/engineering/engineering_workshop) -"fXd" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"fWQ" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fWY" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fXb" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -36221,36 +16277,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"fXt" = ( +"fXl" = ( /obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/squads/req) -"fXx" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"fXz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"fXq" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fXw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/shipboard/starboard_point_defense) -"fXB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fXK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/upper/mess) "fXM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -36262,24 +16310,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"fYb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"fYc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) "fYf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -36287,40 +16317,70 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"fYG" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +"fYA" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/engineering/engine_core) -"fYX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"fYH" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"fYY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"fZa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fZc" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"fZm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"fZn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"fZo" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) "fZq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -36329,291 +16389,315 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fZx" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"fZy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"fZC" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"fZK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"fZN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"fZF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"fZS" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"fZV" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/hull/upper_hull/u_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) "fZZ" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"gac" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"gai" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"gaJ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cryo) -"gaO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"gaQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"gab" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 }, -/area/almayer/command/cichallway) -"gbg" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 14; +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gak" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"gau" = ( +/obj/structure/sink{ pixel_y = 24 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"gax" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"gaG" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"gaH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gaI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/airoom) -"gbs" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"gaJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cryo) +"gaK" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gaV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"gbQ" = ( -/obj/structure/toilet{ +/obj/structure/machinery/body_scanconsole{ dir = 8 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"gbh" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliason) -"gbX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/hallways/lower/starboard_fore_hallway) +"gbk" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"gbo" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"gcc" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"gcK" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"gbp" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"gbu" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"gby" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"gbG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"gce" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"gcN" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gcl" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/shipboard/sea_office) -"gcT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"gcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/main_office) -"gdd" = ( -/obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gco" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_p) -"gde" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"gcp" = ( +/obj/structure/bed/chair{ dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"gdi" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"gdo" = ( -/obj/structure/machinery/light{ - dir = 1 + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"gcv" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"gcI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/general_equipment) -"gdp" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"gcO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"gcQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"gcX" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"gdf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"gdF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"gds" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"gdU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/hallways/repair_bay) -"gdS" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/laundry) -"geg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"gdZ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gee" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - name = "Normandy Remote Control Console"; - pixel_y = -12; - shuttleId = "dropship_normandy" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "pipe-c" }, -/area/almayer/living/offices/flight) -"gek" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"ger" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"geH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"gem" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"geX" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, /obj/structure/sign/safety/hazard{ - pixel_y = 32 + pixel_x = 14; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"geq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"gev" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"geT" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/shipboard/brig/general_equipment) -"gfk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"geW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"gfb" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -36621,87 +16705,182 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"gfu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gfA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gfC" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"gfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gfN" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"gfT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "W" }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/command/airoom) -"gfE" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"gfS" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"gfV" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) "gfW" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lockerroom) +"ggc" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) "ggh" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"ggl" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 +"ggo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"ggu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/fore_hallway) +"ggB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ggD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ggI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ggQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"ggR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ggU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"ggX" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 + }, +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"ghf" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"ghi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ghk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ghH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/medical/medical_science) -"ggt" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/cic_hallway) -"ggz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"ghM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/area/almayer/medical/operating_room_four) -"ggJ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ghQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"ggQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"ghD" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"ghT" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"ghW" = ( -/obj/effect/landmark/start/liaison, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "ghX" = ( /obj/structure/machinery/shower{ dir = 8 @@ -36710,537 +16889,782 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"gio" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 +"gie" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"gig" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/command/cichallway) -"gip" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gii" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"git" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"giK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/bravo) -"gir" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engineering_workshop) -"giB" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gjp" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"gjs" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "blue" + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"gjC" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"gjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"giZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"gjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/landmark/start/warden, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"gjU" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 }, -/area/almayer/shipboard/brig/cryo) -"gjm" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"gka" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gkd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"gkn" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 }, -/area/almayer/hallways/hangar) -"gjn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"gkx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"gjq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"gjt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/area/almayer/maint/lower/cryo_cells) +"glb" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"glm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"glv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"glA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/navigation) -"gjv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"glF" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"glI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"gjw" = ( -/obj/structure/machinery/faxmachine/uscm/command{ - density = 0; - department = "AI Core"; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"glQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17; - pixel_y = -6 +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, +/area/almayer/command/airoom) +"gmg" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/item/storage/box/ids{ +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"gmk" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"gmp" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ pixel_x = -4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/area/almayer/command/airoom) -"gjB" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/area/almayer/command/computerlab) -"gjK" = ( -/obj/structure/bed/chair/wheelchair{ +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gmK" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"gmL" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"gmM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"gmU" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/lower_medical_medbay) -"gjN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gnp" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"gks" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"gkJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"gnq" = ( +/obj/structure/disposalpipe/segment{ dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"gnu" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"gkK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 +/area/almayer/squads/charlie) +"gnS" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"gnW" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"goc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/command/cic) -"gll" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"goe" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"goq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"glr" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"gou" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"gls" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gov" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 }, -/area/almayer/medical/lower_medical_medbay) -"glB" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"goz" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"goC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"goF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"goX" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) +"gpg" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"gpk" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"gpp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gpr" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"glM" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"gpx" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) +"gpD" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"gpF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/area/almayer/hull/lower_hull/l_m_p) -"gmb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"gpG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gpL" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/area/almayer/squads/req) -"gmj" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/starboard_point_defense) -"gms" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"gmy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 16 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"gpM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; - pixel_x = 3; - pixel_y = 16 +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 11; - pixel_y = 16 +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -1; - pixel_y = 2 +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"gnu" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"gnv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 }, -/area/almayer/lifeboat_pumps/south1) -"gnz" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; pixel_y = 7 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"goj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gpN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"gpP" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gpV" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"gpY" = ( +/turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"gol" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" +"gpZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"gqe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/weapon_room) -"goy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"gqs" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 14 }, -/area/almayer/living/port_emb) -"goD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gqD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gqG" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) +"gqN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gqY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"grg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"grh" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"grp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/shipboard/brig/processing) -"goL" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"grF" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"grQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"gpc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"grU" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"gsb" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gsc" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"gsj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + name = "Commanding Officer's Office"; + phone_category = "Offices"; + phone_id = "Commanding Officer's Office"; + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"gsm" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"gsq" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gsr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/almayer/engineering/upper_engineering/starboard) -"gpe" = ( -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gpi" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gsv" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/hallways/hangar) -"gpI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"gsA" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/grunt_rnr) -"gpY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/lifeboat_pumps/north1) -"gqq" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"gsE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ dir = 8; - name = "ship-grade camera" + req_access_txt = "8" }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/area/almayer/hull/upper_hull/u_f_s) -"gqF" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"gsP" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 }, -/area/almayer/command/combat_correspondent) -"gqK" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"gsR" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"gqP" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gsT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) -"gqW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"gsX" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"grl" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"gsZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -21 }, -/area/almayer/shipboard/brig/main_office) -"grG" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"gta" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 }, -/area/almayer/shipboard/navigation) -"grR" = ( -/turf/open/floor/almayer{ +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gtb" = ( +/obj/structure/sink{ dir = 4; - icon_state = "orangecorner" + pixel_x = 11 }, -/area/almayer/living/briefing) -"grX" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"gtC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"gtN" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"gsg" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"gtT" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"gua" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"guj" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"gum" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gup" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"guw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 }, -/area/almayer/living/port_emb) -"gsm" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"gsH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"gsL" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"guy" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"guD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"guQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"guR" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_p) -"gsZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -21 +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2; - pixel_y = 4 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"gtp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "pipe-j2" + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"guc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"guC" = ( -/obj/item/paper_bin/wy, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/clicky, -/obj/structure/machinery/status_display{ - pixel_x = -32 + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"guS" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 }, -/area/almayer/shipboard/starboard_point_defense) +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) "guW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/sign/prop3{ @@ -37261,217 +17685,130 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"gvq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"gvC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ +"gvg" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"gvU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"gwm" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"gwn" = ( -/obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/airoom) -"gwo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"gvx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, +/turf/open/floor/almayer/blue/southwest, /area/almayer/living/basketball) -"gwu" = ( -/obj/structure/machinery/light, +"gvP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gvQ" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"gwa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/command/lifeboat) -"gww" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"gwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/living/gym) -"gwD" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) +"gwq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/north2) +"gwy" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"gwF" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"gwM" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 }, -/obj/structure/machinery/door_control{ - id = "Delta_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"gwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "gwR" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"gwW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"gwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"gxh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"gxk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"gwZ" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"gxg" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gxr" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"gxm" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"gxv" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/area/almayer/hull/lower_hull/l_m_s) -"gxO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"gxD" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"gxT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/gym) -"gxP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer/research/containment/floor2{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration{ dir = 8 }, -/area/almayer/medical/containment/cell) -"gxU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gxW" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "gyk" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -37484,101 +17821,62 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gyt" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"gyq" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gyu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "gyv" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gyy" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"gyC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"gyN" = ( -/obj/structure/machinery/prop{ - desc = "It's a server box..."; - icon_state = "comm_server"; - name = "server box" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"gyO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/ce_room) -"gzn" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/platform_decoration, -/obj/structure/bed/chair{ - can_buckle = 0; +"gyJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gyM" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"gzr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"gyQ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"gyZ" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gze" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gzk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"gzq" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"gzv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) "gzw" = ( /obj/structure/closet/hydrant{ pixel_x = 30 @@ -37586,327 +17884,426 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"gzI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk1"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"gzK" = ( +"gzy" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"gzF" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"gzV" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"gAd" = ( -/obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gAe" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "Working Joe Cryogenics Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "91;92" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"gzI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk1"; + name = "\improper Privacy Shutters" }, -/area/almayer/command/airoom) -"gAj" = ( -/obj/structure/bed/chair/comfy/charlie{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"gzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/living/briefing) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"gzL" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"gzS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"gzZ" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gAh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "gAl" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gAt" = ( -/obj/structure/platform_decoration{ +"gAm" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"gAz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"gAS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"gBc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gAB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/bravo) -"gBi" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"gAU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"gAV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gBa" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"gBm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBW" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"gBu" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" }, -/area/almayer/lifeboat_pumps/south1) -"gCd" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"gBy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"gBN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"gCf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"gCl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"gBS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"gBY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"gCb" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/almayer/hallways/vehiclehangar) -"gCw" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 10 +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"gCI" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"gCe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" }, -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"gCi" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/clipboard{ + pixel_x = 12 }, -/area/almayer/shipboard/brig/cryo) -"gCP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"gCp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/bridgebunks) -"gDq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 9 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"gCt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"gCw" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 10 }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"gCX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"gDw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"gDy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "gEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"gEo" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +"gEh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"gEp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"gEr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"gEv" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bridge{ + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/port) -"gEI" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "cl_shutters"; - name = "Privacy Shutters"; - pixel_x = -5; - pixel_y = 8; - req_access_txt = "200" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"gEw" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "RoomDivider"; - name = "Room Divider"; - pixel_x = -5; - pixel_y = -4; - req_access_txt = "200" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gEB" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control{ - id = "cl_evac"; - name = "Evac Pod Door Control"; - normaldoorcontrol = 1; - pixel_x = -5; - pixel_y = 2; - req_access_txt = "200" +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"gEK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"gEL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"gEZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"gFd" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 +"gFe" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/space) +"gFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south1) -"gFs" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"gFp" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"gFy" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_m_s) -"gFG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_m_p) -"gGf" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"gFA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"gFD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"gFI" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 }, -/area/almayer/squads/delta) -"gGl" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/area/almayer/command/combat_correspondent) -"gGo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = -8 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_x = 7; - pixel_y = -1; - throwforce = 15 +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/area/almayer/living/briefing) -"gGr" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gFJ" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"gFK" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gFM" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"gFT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gFZ" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"gGn" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "gGs" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -37929,184 +18326,251 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gGx" = ( -/obj/structure/filingcabinet/chestdrawer{ +"gGu" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gGw" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"gGD" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"gHa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"gHe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"gHp" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"gHr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gHB" = ( +/obj/structure/machinery/cm_vending/gear/tl{ density = 0; - pixel_x = -16 + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"gHD" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 }, -/area/almayer/medical/medical_science) -"gGI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"gHF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gHK" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"gHN" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" }, -/area/almayer/living/grunt_rnr) -"gGJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"gHU" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gHV" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"gHW" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"gIi" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"gIj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) +"gIp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) -"gHg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"gIt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"gHo" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"gIx" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/almayer/squads/delta) -"gHZ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"gIA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"gIG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"gIh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/ce_room) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"gIJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"gIN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"gJd" = ( -/obj/structure/disposalpipe/segment{ +"gIR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"gJq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"gJL" = ( +/obj/item/newspaper{ + name = "character sheet" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = 5; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"gJs" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/squads/req) -"gJP" = ( -/obj/structure/machinery/light, +/obj/item/toy/dice, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/living/offices) -"gKB" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Privacy Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"gJZ" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/cryo_cells) +"gKa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/grunt_rnr) -"gKF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gKf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/delta{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"gKH" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"gKJ" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +"gKg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"gKt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_f_p) -"gKR" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gKX" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 }, -/area/almayer/medical/upper_medical) -"gKS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 }, -/area/almayer/hull/upper_hull/u_m_p) -"gKZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) "gLc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -38121,262 +18585,239 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"gLz" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"gLE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +"gLm" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"gLB" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"gLN" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"gLP" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"gMi" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"gMy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) -"gLZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"gMa" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; +"gMF" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/upper/u_a_s) +"gMM" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"gNf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"gNo" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gNT" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"gMf" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"gMx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"gMA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_p) -"gMN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"gNV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gOr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gOv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/airoom) -"gMU" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gOx" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"gOy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"gNd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +"gOz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/engineering/engine_core) -"gNi" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 }, -/area/almayer/living/briefing) -"gNp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/port_fore_hallway) +"gOP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/medical_science) -"gNq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gPg" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"gPx" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/squads/charlie_delta_shared) -"gNx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"gOs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gPA" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"gPE" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/almayer/no_build{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"gPc" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/engineering/upper_engineering/starboard) -"gPr" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/stairs{ - dir = 1 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"gPJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" }, -/area/almayer/command/airoom) -"gPF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"gPN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hallways/stern_hallway) -"gQl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"gPV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"gQg" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; pixel_y = 8 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"gQz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"gQA" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"gQD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"gQE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"gQy" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - pixel_y = 3; - pixel_x = -1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -38385,14 +18826,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"gQO" = ( +"gQM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gQX" = ( +/obj/structure/machinery/computer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"gRa" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"gRb" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -38401,139 +18857,223 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRn" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"gRP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"gSi" = ( +"gRk" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/item/storage/box/tapes{ - pixel_x = -16 +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"gSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, -/area/almayer/engineering/port_atmos) -"gSk" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gRT" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"gRU" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"gRZ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"gSa" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" }, -/area/almayer/living/grunt_rnr) -"gSs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"gSv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"gSV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"gSx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"gSz" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"gSB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) +"gSI" = ( +/obj/structure/window{ + dir = 8 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"gSQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"gSU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"gTb" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"gTd" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"gTl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/almayer/maint/hull/upper/u_f_s) +"gTf" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gTk" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/area/almayer/shipboard/brig/cryo) -"gTx" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/area/almayer/shipboard/brig/main_office) -"gTH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/skills{ +/obj/structure/window/reinforced{ dir = 4; - pixel_y = 18 + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4; - pixel_y = -18 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/command/airoom) -"gUf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"gTw" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"gTJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"gTN" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"gUr" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"gTS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"gTW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gTY" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"gUb" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"gUi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"gUm" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"gUu" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" }, -/area/almayer/hull/lower_hull/l_f_s) -"gUv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_f_p) -"gUy" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"gUI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"gUw" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gUK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -38550,34 +19090,27 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"gUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/almayer/command/airoom) -"gUV" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/command/lifeboat) +"gUW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "gUX" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"gVq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gVa" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"gVs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) "gVA" = ( /obj/structure/disposalpipe/down/almayer{ dir = 8; @@ -38591,6 +19124,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) +"gVJ" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"gVN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"gVY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"gWe" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gWf" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"gWg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"gWn" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"gWp" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"gWx" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "gWE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/spec/alpha, @@ -38604,650 +19199,524 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"gWR" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"gXh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"gXl" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"gXq" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gWI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/engineering/engineering_workshop) -"gXs" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"gWU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gXD" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - id = "ARES Operations Right"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"gXv" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"gXY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"gYe" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/sea_office) -"gYl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "pipe-j2" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"gXL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"gYt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"gYB" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gYb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"gYh" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" }, -/area/almayer/hull/lower_hull/l_f_s) -"gYS" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"gYm" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"gYo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"gYy" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_y = 13 + id = "Firing_Range_2"; + name = "range shutters" }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"gYz" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"gYI" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"gYQ" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"gYV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 4; - pixel_x = 12; - pixel_y = 13 + icon_state = "pipe-j2" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gZa" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"gZl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"gZo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"gZr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera/siliconcam{ - pixel_x = -6; - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) +/area/almayer/hallways/lower/port_aft_hallway) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gZG" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"gZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"gZH" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"gZP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +"gZV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hae" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"hav" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"haw" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hay" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/command/lifeboat) -"had" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"haz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"haA" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"haC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/command/lifeboat) -"hal" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"haS" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"haX" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/command/lifeboat) -"ham" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"hbg" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" }, -/area/almayer/medical/lower_medical_lobby) -"haq" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_a_p) -"har" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_m_p) -"haB" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"haM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) +"hbp" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/south2) -"haQ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hbH" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hbM" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) -"haT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"hbu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"hbZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"hcf" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 +"hbP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"hbQ" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hbU" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"hbW" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"hbX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"hcp" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; pixel_y = 13 }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"hcu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" + pixel_y = 1 }, -/area/almayer/engineering/port_atmos) -"hcs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hcD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"hcJ" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"hcS" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"hdj" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"hcw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"hcC" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"hcI" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/delta) -"hcZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"hdd" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"hdg" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"hdh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"hdq" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"hdu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"hds" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"hdE" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/squads/req) -"hdR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"heb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"hec" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"hee" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"heg" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"hey" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"heK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"heQ" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 21; - pixel_y = 27 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"heV" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"hfa" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"hdD" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, /obj/structure/sign/safety/ammunition{ - pixel_x = 15; pixel_y = 32 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; pixel_y = 32 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"hfk" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"hfm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster/io{ - pixel_y = 32; - name = "propaganda poster" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"hfw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"hdU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"hea" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"heh" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"her" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "red" + icon_state = "W" }, -/area/almayer/command/lifeboat) -"hfy" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"heC" = ( +/obj/item/paper/almayer_storage, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"hfO" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"hfQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"hgg" = ( +/area/almayer/maint/upper/u_a_p) +"heD" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" + pixel_x = 6; + pixel_y = 4 }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"hgm" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ +"heE" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"heL" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"heN" = ( +/obj/structure/window/reinforced{ dir = 4; - name = "ship-grade camera" + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"hgt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"heZ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"hgF" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"hfl" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"hfo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"hgH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hfA" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"hgL" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"hfC" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"hfI" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"hfL" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"hgh" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 }, -/area/almayer/living/grunt_rnr) -"hgZ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hgo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/medical/operating_room_three) -"hhe" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hgG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"hgN" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"hgY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hhi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, -/area/almayer/hallways/starboard_umbilical) -"hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"hhj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/living/offices) -"hhw" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "hhA" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"hif" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer{ - icon_state = "plate" +"hhO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"hit" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"hhR" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"hig" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"hil" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"hiB" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"hin" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"his" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"hiD" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"hiJ" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "hiM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -39262,77 +19731,59 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"hiQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"hji" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"hjk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hjh" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 }, -/area/almayer/living/briefing) -"hjs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"hjN" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hkc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hku" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/delta) -"hjA" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"hjB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + layer = 3.3; + pixel_y = 4 }, -/area/almayer/living/grunt_rnr) -"hki" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/lifeboat_pumps/south2) -"hkm" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/platform{ - dir = 8 +/obj/item/bedsheet/red{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/area/almayer/hull/upper_hull/u_a_p) -"hkx" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"hkA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -39340,62 +19791,101 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"hkE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"hkD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"hkN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"hkG" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"hkQ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hkX" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/hvac_old{ pixel_x = 15; - pixel_y = -32 + pixel_y = 32 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"hla" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"hlc" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"hld" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/area/almayer/command/cic) -"hlw" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"hlo" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"hlz" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"hlI" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"hlU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hlr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hls" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) +"hlA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hlF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"hlV" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -39406,135 +19896,177 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"hmc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +"hlY" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hma" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"hmb" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"hmd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/area/almayer/hallways/starboard_hallway) -"hme" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"hmf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"hmg" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"hmi" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"hmp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"hmq" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"hnc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/hydroponics) -"hmy" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hnh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/hangar) -"hmC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"hnx" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"hnF" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + layer = 4.1; + pixel_y = -29 }, -/area/almayer/squads/delta) -"hmF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"hnH" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"hnJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/poster{ - pixel_x = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hnX" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/alpha_bravo_shared) -"hmS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"hoy" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/cichallway) -"hng" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"hoB" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/medical/hydroponics) -"hnV" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"hon" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"hoG" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"hoJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"hoV" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/hallways/aft_hallway) -"hop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) +"hoY" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"hoX" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"hpf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"hpk" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/morgue{ + dir = 8 }, -/area/almayer/shipboard/weapon_room) -"hpN" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"hpl" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"hpm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hpo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"hpx" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -39554,6 +20086,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"hqf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"hqg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -39567,101 +20119,94 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/machinery/light, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"hqs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"hqW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +"hql" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"hqu" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/medical/lower_medical_lobby) -"hrm" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" }, -/area/almayer/command/cic) -"hrn" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hqC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"hqK" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"hqX" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"hrl" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"hrp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/medical_science) -"hrF" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"hry" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"hrA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/starboard_point_defense) -"hrJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hrQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null }, -/area/almayer/medical/lower_medical_medbay) -"hrX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"hrY" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -39672,156 +20217,262 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"hso" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"hsp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "hsr" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"hss" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hsu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"hsW" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hsD" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hsL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hsM" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"hsN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"hsT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/bravo) -"htb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"htn" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"htv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hty" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"htG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) "htI" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"htL" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"huK" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"huO" = ( -/obj/structure/machinery/light{ - dir = 4 +"htY" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" }, -/area/almayer/command/computerlab) -"huU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"huC" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"huW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hvg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"huX" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"hvp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hvo" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) "hvw" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvC" = ( -/obj/structure/machinery/light{ - dir = 4 +"hvy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/bedsheet/hop{ - pixel_y = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"hvB" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed{ - pixel_y = 0 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hvG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "hvH" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hvQ" = ( -/obj/effect/landmark/start/professor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"hwC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"hvW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hvY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hwa" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"hwP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hwg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/binoculars, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/starboard_missiles) -"hwQ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"hwl" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/execution) -"hwS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"hwq" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hwr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hwL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/hallways/lower/port_aft_hallway) +"hwO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"hwZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"hxh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "hxm" = ( /obj/item/paper_bin/uscm{ pixel_y = 4 @@ -39829,334 +20480,363 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"hxp" = ( +"hxq" = ( /obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"hxG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"hxZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"hyc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hyk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"hyt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" + pixel_x = 1 }, -/area/almayer/hallways/starboard_hallway) -"hyw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"hyz" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" }, -/area/almayer/shipboard/brig/processing) -"hyE" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"hxs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/command/airoom) -"hyQ" = ( -/turf/closed/wall/almayer, -/area/almayer/living/synthcloset) -"hzc" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/notunnel) -"hzg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"hzs" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"hxz" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" }, -/area/almayer/medical/lower_medical_medbay) -"hzu" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/squads/delta) -"hzx" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Chief MP's Office"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"hxB" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"hxG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"hxR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/chief_mp_office) -"hzJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hxW" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 1"; - name = "\improper Courtyard Divider" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cells) -"hzL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hye" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hyl" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/command/cic) -"hzM" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"hzV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"hAc" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/squads/req) -"hAz" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"hyG" = ( +/turf/open/floor/almayer/green/east, /area/almayer/living/grunt_rnr) -"hAG" = ( -/obj/structure/closet/crate/internals, -/obj/item/handcuffs/cable/blue, -/obj/item/handcuffs/cable/blue, -/obj/item/handcuffs/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) +"hyS" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" }, -/area/almayer/powered/agent) -"hAU" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"hyY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"hAZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"hzc" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/notunnel) +"hzg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"hzn" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hzF" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"hzQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"hAn" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"hAA" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/squads/delta) -"hBc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hAC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"hAQ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"hBa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"hBz" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/req) -"hBC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"hBE" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) "hBF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hBU" = ( -/obj/structure/largecrate/random/secure, +"hBG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"hBK" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hBN" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"hBR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/upper/midship_hallway) +"hBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hCa" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"hCo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hCc" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"hCt" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/obj/structure/extinguisher_cabinet{ + pixel_x = -14; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"hCm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hCx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/upper/mess) +"hCK" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"hCO" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/area/almayer/hallways/hangar) -"hCS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"hCP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hCZ" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"hDb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"hDc" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"hDe" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hDg" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/lower/l_m_s) +"hDs" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 }, -/area/almayer/medical/lower_medical_medbay) -"hDv" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "hDw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -40164,249 +20844,317 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hDL" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"hDU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"hDZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"hDR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"hEl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"hEp" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"hDX" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hEq" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"hEb" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"hEt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"hEv" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"hEy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"hEA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"hEG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/tankerbunks) +"hEL" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"hEM" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hFw" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer{ - icon_state = "orange" +"hEX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/upper_engineering/starboard) -"hFC" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"hFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_green_side" + icon_state = "pipe-c" }, -/area/almayer/medical/medical_science) -"hFF" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hFl" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hFv" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"hFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"hFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/morgue) -"hFW" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"hGa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"hFL" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"hGD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hFQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"hGN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "S"; + layer = 3.3 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"hGI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/req) -"hGO" = ( -/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"hGT" = ( /obj/structure/machinery/light{ - dir = 8; - invisibility = 101 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hGV" = ( +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = 24; + req_one_access_txt = "35" }, -/area/almayer/living/briefing) -"hGZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "hHl" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/pouch/general/large, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"hHr" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +"hHE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/lifeboat_pumps/south1) -"hHF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"hHI" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"hHK" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/shipboard/port_missiles) -"hHJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"hHT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/starboard_hallway) +"hIi" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/hallways/vehiclehangar) -"hHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hIl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/starboard_umbilical) -"hHU" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"hIw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/hull/upper_hull/u_a_p) -"hII" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_missiles) +"hIy" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hIG" = ( +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/delta) -"hIL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" +"hIH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hIP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hIQ" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"hIR" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/area/almayer/command/corporateliason) -"hJb" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_a_s) -"hJh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"hIV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"hIX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hJa" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "hJk" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -40417,129 +21165,132 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"hJu" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"hJz" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 +"hJE" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"hJJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"hKe" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"hKi" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"hKl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hJF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "S" }, -/area/almayer/medical/hydroponics) -"hKq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"hJR" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"hKf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/main_office) -"hKQ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hKJ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/almayer/engineering/engineering_workshop/hangar) -"hLC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"hLI" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hKK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/cryo_cells) -"hLO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"hLd" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"hLj" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hLS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1 +/area/almayer/living/offices) +"hLq" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hLE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"hLM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hLY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/clothing/accessory/stethoscope, +/obj/structure/closet/secure_closet/professor_dummy{ + pixel_x = -32 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"hMb" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) "hMi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hMs" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"hMz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"hMI" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"hMV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"hMN" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -40547,22 +21298,72 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"hND" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"hNz" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"hNC" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"hNE" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -5; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = -1 }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hNG" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"hNH" = ( /obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"hNL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -40572,216 +21373,259 @@ /obj/item/tool/shovel/etool/folded, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hOe" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"hOa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_a_p) -"hOR" = ( +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hOf" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"hPe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"hOg" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"hOi" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/medical/medical_science) -"hPg" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hOm" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hOp" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"hOt" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" }, -/area/almayer/hull/upper_hull/u_a_p) -"hPh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/auxiliary_officer_office) -"hPo" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"hPK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"hPN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hOC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/medical/hydroponics) -"hPT" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/hull/upper_hull/u_f_p) -"hQc" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"hOH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hOS" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/squads/charlie_delta_shared) -"hQU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hPk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"hQW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/alpha) -"hQY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"hPs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/medical/lower_medical_medbay) -"hRa" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hPv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -1 }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/tool/pen{ + pixel_x = 5 }, -/area/almayer/medical/medical_science) -"hRd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hPF" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/squads/alpha) -"hRi" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"hRy" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"hPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"hPU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hPV" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/port) +"hQe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/execution) -"hRW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"hQf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"hQl" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"hRh" = ( +/obj/effect/landmark/start/warrant, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/computer/crew/alt{ - dir = 4; - pixel_x = -17 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"hRl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/airoom) -"hSk" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"hSt" = ( +/area/almayer/maint/hull/upper/p_bow) +"hRv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"hRB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"hRI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/almayer/engineering/upper_engineering/port) -"hSu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +"hRX" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hRZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"hSf" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"hSk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"hSm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"hSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -40790,140 +21634,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"hSI" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; +"hSB" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"hSH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + name = "\improper Crew Chief's Room" }, -/area/almayer/medical/morgue) -"hSL" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"hSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"hTc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hSP" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 }, -/area/almayer/squads/delta) -"hTf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hSR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"hSV" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/fridge/groceries/stock, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"hTk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"hTa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hTj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"hTQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 }, -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_p) -"hTl" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - desc = "A powerful server tower housing various AI functions."; - name = "server tower"; - pixel_y = 16 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"hUa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 }, -/area/almayer/command/airoom) -"hTt" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/mp_bunks) +"hUu" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 }, -/area/almayer/shipboard/brig/processing) -"hTu" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"hTy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"hUM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"hUV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hTF" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"hTP" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" - }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"hTT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"hUc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = -1 }, -/area/almayer/hull/upper_hull/u_f_p) -"hUg" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "hUW" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -40934,38 +21730,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"hVf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"hUX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"hVz" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"hVc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"hVh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access_txt = "19;21" }, -/area/almayer/medical/upper_medical) -"hWa" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"hVi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"hVn" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hVw" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"hVx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room2"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hVD" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"hVF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"hVN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hVR" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -41004,48 +21854,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"hWB" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +"hWu" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"hWJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/largecrate/random/secure{ + pixel_x = -5 }, -/area/almayer/shipboard/weapon_room) -"hWO" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"hWE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"hWR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"hWS" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"hWU" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +"hWZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"hWX" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/area/almayer/hull/upper_hull/u_f_p) -"hXb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 }, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) "hXd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/ammo_box/magazine/misc/mre{ @@ -41077,312 +21935,455 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXD" = ( +"hXo" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"hXv" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hXx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"hXI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"hXK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"hXS" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"hXV" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"hXZ" = ( +/obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/door_control/brbutton{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown"; + pixel_x = -12; + pixel_y = 26 }, -/area/almayer/lifeboat_pumps/south1) -"hXY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/machinery/door_control/brbutton{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown Override"; + pixel_x = -2; + pixel_y = 26 }, -/area/almayer/squads/delta) -"hYc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 +/obj/structure/machinery/aicore_lockdown{ + icon_state = "big_red_button_wallv"; + pixel_x = 8; + pixel_y = 26 }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hYa" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_p) -"hYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"hYd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hYe" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"hYk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"hYB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"hYF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "hYG" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hZj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +"hYI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, +/turf/open/floor/almayer/aicore/no_build, /area/almayer/command/airoom) -"hZN" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +"hYR" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"iag" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" + dir = 9 }, -/area/almayer/medical/chemistry) -"iah" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hZi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"hZm" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/command/cichallway) -"iaj" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hZq" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"hZC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hZI" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"ial" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hZV" = ( /obj/structure/machinery/camera/autoname/almayer{ + dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"iaa" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"iab" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"iao" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 1; - icon_state = "red" + name = "\improper Officer's Bunks"; + req_access = null }, -/area/almayer/squads/alpha) -"iaq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) "iat" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"iaE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"iav" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iaU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"iaF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"iaZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"iaR" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"ibc" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" +/obj/structure/machinery/status_display{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"ibf" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"ibh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ibo" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"ibv" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/squads/req) -"icp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/area/almayer/hallways/hangar) -"icw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"ibK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"icX" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32; - pixel_y = -4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ibL" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"ibP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door_control{ - id = "Perma 2L"; - name = "Perma 2 Lockdown"; - pixel_x = -24; - pixel_y = 12; - req_access_txt = "3" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"ibQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/area/almayer/shipboard/brig/perma) -"idx" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"ibU" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"ibX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/area/almayer/living/grunt_rnr) -"idX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"icj" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/area/almayer/living/grunt_rnr) -"ieo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"icr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"icv" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"icz" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/midship_hallway) +"icN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/general_equipment) -"ieu" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"icT" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; - pixel_x = -2; - pixel_y = 4 + pixel_x = -17 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"icZ" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) +"idd" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/platform{ + dir = 8 }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ide" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"idf" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"idk" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"idl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/item/bedsheet/red{ +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"idq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"idw" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"idF" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"idN" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/port_emb) -"iey" = ( /obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"iec" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/medical/lower_medical_lobby) -"ieF" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"ied" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/command/airoom) -"ieH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"ieg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"iet" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ieQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) +"ieS" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -41397,306 +22398,376 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"iff" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 +"ifW" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ifX" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"igl" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room"; + name = "\improper Storage Shutters" }, -/area/almayer/lifeboat_pumps/north1) -"ift" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating, +/area/almayer/squads/req) +"igv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering) -"ifR" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"igE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"igF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"igG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"igf" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 +/area/almayer/hallways/lower/starboard_midship_hallway) +"igY" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/hull/upper_hull/u_a_s) -"igp" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"ihb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"ihB" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"ihK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ihQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ pixel_y = -2 }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"ihS" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"igr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"iik" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" + icon_state = "SW-out" }, -/area/almayer/command/airoom) -"igt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"iiq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"iir" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"iiA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"igX" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/command/computerlab) -"igZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"iiO" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" }, -/area/almayer/command/computerlab) -"ihn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ihw" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"iiQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"ihM" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"iiV" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"iiX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/squads/delta) -"ihX" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) -"ihY" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"iid" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" +"iiY" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"ijb" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ijd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hull/upper_hull/u_m_p) -"iii" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"ijq" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ijw" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ijx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ijE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"iit" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"ijL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SW-out" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"ijM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"iiz" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/machinery/vending/cigarette/free{ + pixel_y = 16 }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"ijS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ijV" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ikd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"ikl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ikn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"ikp" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + density = 1; + pixel_x = 3; + pixel_y = 11 }, -/area/almayer/command/corporateliason) -"iiC" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ikq" = ( /obj/structure/sign/safety/maint{ - pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"iiP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ikx" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"ikC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"iiZ" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"ije" = ( +/area/almayer/hallways/lower/vehiclehangar) +"ikG" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"ikX" = ( /obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"ijn" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/corporateliason) -"ijp" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"ijU" = ( -/obj/item/tool/wet_sign, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"ikM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/machinery/computer/secure_data{ - pixel_x = 17 +/area/almayer/maint/hull/upper/u_a_p) +"ikZ" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"ilj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/computer/card{ - pixel_x = -16 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ilk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/area/almayer/shipboard/brig/main_office) -"ils" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_f_p) -"ilv" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"ilp" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ilr" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) "ily" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"ilG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" +"ilz" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"ilH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) "ilJ" = ( /obj/structure/bed/chair, @@ -41705,62 +22776,167 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ilZ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +"imj" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_a_s) -"imo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"imr" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"ims" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"imp" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/medical/morgue) +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"imW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"ina" = ( +"imA" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"imB" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_m_s) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"imF" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/light{ dir = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"imH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"imM" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"imO" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"imQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/hallways/lower/starboard_umbilical) +"ine" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"inn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"inq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"int" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) "inw" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -41768,44 +22944,64 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"inC" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"inx" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"inB" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"inH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"inG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"inL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"inT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"inX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 }, -/area/almayer/medical/medical_science) -"inN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"iob" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) + }, +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"iod" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"ioj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) +/area/almayer/engineering/lower/workshop/hangar) "ioo" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -41814,26 +23010,77 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iow" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 +"iou" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"iov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"iox" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha_bravo_shared) +"ioy" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"ioG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"ioH" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"ioK" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"ioM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"ioT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"ioX" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) +"ioV" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) "ipa" = ( /obj/effect/decal/cleanable/generic, /obj/effect/decal/warning_stripes{ @@ -41841,6 +23088,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"ipb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "ipe" = ( /obj/item/toy/crayon{ name = "chewed crayon"; @@ -41849,126 +23100,156 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"ipD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"ipf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ipE" = ( +/area/almayer/hallways/lower/starboard_fore_hallway) +"ipo" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"ipp" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"ipC" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 }, -/area/almayer/squads/alpha_bravo_shared) -"ipK" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 }, -/area/almayer/living/starboard_garden) -"ipQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"ipH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ipJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/hydroponics) -"ipT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"iqo" = ( +"iqf" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/squads/req) -"iqp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"iqg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"iqj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"iqr" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"iqt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = 7 }, -/area/almayer/living/auxiliary_officer_office) -"iqx" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17; + pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"iqN" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_f_p) -"iqH" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iqT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "orange" + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" }, -/area/almayer/engineering/upper_engineering/port) -"irn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"irr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"iry" = ( -/obj/structure/platform{ - dir = 8 +/obj/effect/step_trigger/ares_alert/access_control, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "returns outlet"; + pixel_x = -7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"ird" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ dir = 8; - icon_state = "red" + pixel_y = 4 }, -/area/almayer/lifeboat_pumps/south2) -"irJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iri" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"irw" = ( +/obj/structure/window/framed/almayer/aicore/hull, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"irP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -41983,337 +23264,310 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"irU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"irY" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"isa" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"isn" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"isC" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iss" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/airoom) -"isH" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"ist" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"isy" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"isz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/shipboard/brig/general_equipment) -"isN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"isP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"isR" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"isY" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"itd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"ith" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"itt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/area/almayer/medical/morgue) -"isS" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 +/obj/item/paper_bin/uscm{ + pixel_y = -4 }, -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/item/tool/pen{ + pixel_y = -5 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"isW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"itf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"itu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - indestructible = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"itG" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"itN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"itQ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 }, -/area/almayer/command/airoom) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"itX" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"iub" = ( -/obj/structure/machinery/light{ - dir = 4 +"iuj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"iur" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +"iuK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iuN" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/area/almayer/command/cichallway) -"iuu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 +/obj/structure/catwalk{ + health = null }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"iuW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"iuw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"iuZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + name = "\improper Brig Prisoner Yard" }, -/area/almayer/engineering/upper_engineering/port) -"iuz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/shipboard/weapon_room) -"iuE" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"iuT" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/area/almayer/hull/upper_hull/u_f_s) -"ivf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"iva" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/bridgebunks) -"ivg" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"ive" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ivk" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"ivr" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/commandbunks) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivz" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"ivB" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"ivM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"iwh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"iwB" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"iwI" = ( +"ivu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"ivE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"ivI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/squads/req) -"iwJ" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"ivW" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"iwn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"iwx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"iwT" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) "iwW" = ( /obj/structure/bed/chair/comfy/beige, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"ixj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"ixv" = ( -/obj/structure/bed/chair/comfy/blue{ +"iwY" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"ixC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"iwZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ixl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"ixz" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"ixO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"ixD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"ixN" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"ixP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "ixQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -42321,124 +23575,87 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ixZ" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = 18; - req_access_txt = "31" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/cic) -"iyq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"iyH" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - desc = "A square metal surface resting on its fat metal bottom. You can't flip something that doesn't have legs. This one has a metal rail running above it, preventing something large passing over. Like you."; - indestructible = 1; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +"ixV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/command/airoom) -"iyQ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"ixY" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"iyf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_s) -"iyS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"iym" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iyt" = ( +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"izk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"izr" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/sign/poster/propaganda{ - pixel_x = -27 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iyv" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"iyw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"iyB" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) +"iyK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_aft_hallway) +"iyT" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 }, -/area/almayer/living/briefing) -"izx" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"izv" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"izG" = ( -/obj/structure/disposalpipe/segment, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"izD" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"izU" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"izY" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/area/almayer/hallways/lower/starboard_midship_hallway) +"izT" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iAn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -42450,311 +23667,402 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iAz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"iAx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"iAE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iAV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iBh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iBn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"iBA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iBD" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 }, -/area/almayer/medical/containment) -"iAB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 }, -/area/almayer/hallways/stern_hallway) -"iAT" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 }, -/area/almayer/hallways/port_hallway) -"iBt" = ( /turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"iBE" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"iBG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 +/area/almayer/maint/lower/constr) +"iBM" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sink{ + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_m_p) -"iBY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/structure/mirror{ + pixel_y = 21 }, -/area/almayer/command/cichallway) -"iCe" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"iBZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"iCu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"iCf" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"iCj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"iCE" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"iDi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"iDz" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/cichallway) -"iCz" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"iDB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_f_s) -"iCF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"iDD" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"iDG" = ( /obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/offices) -"iDd" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" + dir = 8 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"iDm" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/hallways/lower/repair_bay) +"iDM" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"iDN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"iDS" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"iEe" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"iDT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"iEb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/maint/hull/lower/p_bow) +"iEl" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"iEg" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) +/area/almayer/maint/hull/lower/stern) "iEr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"iEs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"iEw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"iEx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/hull/upper_hull/u_a_p) -"iFc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"iFm" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"iET" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Exterior"; + dir = 8; + pixel_y = 2 }, -/area/almayer/hull/lower_hull/l_m_p) -"iFn" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"iEU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"iFC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 }, -/area/almayer/engineering/ce_room) -"iFD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iEY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"iFb" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"iFl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) +"iFq" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"iFr" = ( /obj/structure/sign/safety/maint{ - pixel_x = -17 + pixel_x = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"iFF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) "iFH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"iFM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +"iFI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iFJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iGh" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 }, -/area/almayer/living/port_emb) -"iGg" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"iGj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"iGl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"iGn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"iGB" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"iGL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/operating_room_four) -"iGK" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"iGX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"iGQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/hallways/hangar) "iHc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"iHF" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 +"iHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"iHl" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_a_s) -"iHG" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"iHm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/cells) -"iIl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"iHo" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"iHr" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"iHx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"iHA" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iHS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"iIp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"iIA" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"iIJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"iIN" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) "iIP" = ( /obj/structure/toilet{ @@ -42781,65 +24089,90 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"iIY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"iIT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hull/lower_hull/l_m_s) -"iJf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"iJB" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"iIV" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/area/almayer/command/cichallway) -"iJS" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/area/almayer/squads/delta) -"iKb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/device/multitool{ + pixel_x = 8 }, -/area/almayer/hallways/hangar) -"iKc" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"iJb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"iJF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) +"iJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iJP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) "iKf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iKw" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +"iKl" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"iKu" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"iKx" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -42847,44 +24180,53 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"iKI" = ( -/turf/open/floor/almayer{ - icon_state = "red" +"iKP" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"iKR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/starboard_missiles) -"iKK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iKT" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, -/area/almayer/lifeboat_pumps/south1) -"iKM" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"iLa" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 }, -/area/almayer/engineering/port_atmos) -"iKX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/area/almayer/shipboard/brig/general_equipment) -"iKZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = -4 }, -/area/almayer/engineering/upper_engineering/starboard) +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "iLd" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -42895,284 +24237,384 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iLh" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) "iLq" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"iLs" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 +"iLC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"iLH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"iLM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "sterile_green_corner" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/medical/lower_medical_lobby) -"iLO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"iMa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/computerlab) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iMf" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) "iMm" = ( /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iMr" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +"iMA" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 }, -/area/almayer/squads/bravo) -"iMx" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 }, -/area/almayer/lifeboat_pumps/south2) -"iMI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iMK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_medbay) -"iNZ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iMP" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 16 +/obj/structure/machinery/power/apc/almayer/hardened/east, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"iMT" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"iNv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"iNR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"iNX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"iOf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"iOp" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/hull/lower_hull/l_f_s) -"iOh" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/status_display{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iPv" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 +"iOL" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"iOM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"iON" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"iPh" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"iPr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"iPs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"iPH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"iPT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iPX" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" }, -/area/almayer/lifeboat_pumps/south1) -"iPS" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/area/almayer/squads/alpha) -"iQg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"iQi" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"iPZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iQm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/squads/charlie) -"iQj" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"iQs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES JoeCryo"; + name = "\improper ARES Synth Bay Shutters"; + plane = -7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/command/cichallway) -"iQt" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"iQD" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/area/almayer/living/port_emb) -"iQx" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iQE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"iRr" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iQT" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"iRe" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iRf" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iRh" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hallways/port_hallway) -"iRx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"iRt" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, /area/almayer/living/gym) -"iRN" = ( -/obj/structure/machinery/light/containment{ - dir = 4 +"iRK" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"iRV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"iSh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "NE-out"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1{ +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"iSj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/area/almayer/medical/containment/cell) -"iRS" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"iSm" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"iSq" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"iSr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"iSs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/obj/item/prop{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 29 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"iSC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"iSE" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"iSK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"iST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43184,39 +24626,47 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"iTf" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - icon_state = "plate" +"iTm" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iTo" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hull/upper_hull/u_a_p) -"iTw" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"iTu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"iTx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/living/bridgebunks) -"iTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"iTB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iTC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" }, -/area/almayer/hull/lower_hull/l_m_p) +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) "iTD" = ( /obj/effect/landmark/start/auxiliary_officer, /turf/open/floor/plating/plating_catwalk, @@ -43227,125 +24677,143 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iTK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"iTN" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"iUk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1 +"iTO" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/catwalk{ + health = null }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/briefing) -"iUo" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"iTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"iTX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 }, -/obj/item/storage/box/beakers{ - pixel_x = -6; +/obj/item/storage/box/flashbangs{ + pixel_x = -8; pixel_y = 5 }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"iUg" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med_req" }, +/turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) -"iUC" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/almayer, +"iUj" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"iUt" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32; + pixel_y = -32 }, -/area/almayer/command/combat_correspondent) -"iUW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"iUH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"iUM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/engineering/upper_engineering/starboard) -"iUZ" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"iVj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iUO" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/squads/req) -"iVo" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/command/corporateliaison) +"iUS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_p) -"iVy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"iUT" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"iVd" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"iVf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iVt" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) "iVE" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iVO" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." +"iVF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iVK" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/area/almayer/hull/lower_hull/l_f_p) -"iWb" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"iVU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -43356,15 +24824,39 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"iWd" = ( +"iWg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"iWk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iWs" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iWv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) "iWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -43375,49 +24867,54 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 +"iWC" = ( +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"iWG" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"iWH" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"iWL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/area/almayer/hallways/lower/vehiclehangar) +"iWW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"iWZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"iWN" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"iWR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"iXw" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"iXG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering) -"iXb" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"iXM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" }, -/area/almayer/living/briefing) -"iXt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -43433,82 +24930,29 @@ /obj/item/book/manual/evaguide, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iXW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_lobby) -"iYe" = ( +"iYa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) -"iYf" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ +/obj/structure/machinery/vending/snack{ density = 0; pixel_y = 16 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/medical/hydroponics) -"iYi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"iYj" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"iYp" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"iYr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/starboard_garden) -"iYt" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iYu" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"iZf" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + dir = 4 }, -/area/almayer/squads/req) -"iYx" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/living/gym) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -43518,435 +24962,348 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iZw" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"iZG" = ( -/obj/structure/window/framed/almayer/hull, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"iZH" = ( +"iZi" = ( +/obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"iZk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/hallways/port_hallway) -"iZP" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"iZm" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) +"iZD" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) "iZU" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"iZX" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jac" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"jaj" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"jaH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, -/area/almayer/command/airoom) -"jaP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, +"iZY" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"jae" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"jal" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"jan" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/perma) -"jaR" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"jas" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"jaG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"jaM" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jba" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/squads/req) -"jbb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + name = "\improper Combat Information Center" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"jbm" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"jbn" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jbo" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/command/lifeboat) -"jbt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"jbB" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"jbH" = ( +"jbu" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"jby" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"jbG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" }, -/area/almayer/engineering/upper_engineering/port) -"jbK" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"jbS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" }, -/area/almayer/medical/containment) -"jbO" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jbW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) "jbX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"jcc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"jcd" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jcK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"jcP" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/almayer/engineering/upper_engineering/starboard) -"jcZ" = ( +"jcv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"jcz" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"jdk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"jdm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/squads/delta) -"jdy" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"jcA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jcH" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"jdG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"jdu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/operating_room_three) -"jdQ" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jdD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"jea" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jdE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jdH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"jdV" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/mp_bunks) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jel" = ( +"jep" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/phone_base{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"jeq" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"jew" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"jez" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"jeK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/shipboard/brig/general_equipment) -"jeO" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, -/area/almayer/squads/req) -"jeQ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jex" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"jeU" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jeN" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 }, -/area/almayer/hull/lower_hull/l_a_s) -"jfm" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jeS" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"jfD" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"jfK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"jfM" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"jfZ" = ( -/obj/structure/target{ - name = "punching bag" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"jfx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"jfC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"jfE" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) +"jfI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/gym) -"jge" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"jfQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/area/almayer/living/grunt_rnr) -"jgg" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) "jgk" = ( /obj/structure/machinery/shower{ dir = 1 @@ -43961,262 +25318,175 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"jgl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/auxiliary_officer_office) -"jgu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/captain_mess) +"jgo" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"jgC" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jgF" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"jgJ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"jgM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"jgU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"jhb" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"jhn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"jht" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"jhx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"jhy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/offices) -"jhA" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"jhB" = ( +"jgH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"jhD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"jhW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/bridgebunks) -"jhY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"jiw" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"jgL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"jiU" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"jhb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -6; + pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"jhx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"jhB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/living/port_emb) -"jiX" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"jhD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jii" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" }, -/area/almayer/hull/lower_hull/l_m_s) -"jjn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 }, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"jir" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/area/almayer/medical/lower_medical_medbay) -"jjs" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"jit" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jiB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"jjM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"jiN" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"jiT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"jjS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"jjz" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"jjH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"jjK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 }, -/area/almayer/medical/medical_science) -"jjT" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"jjZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jjW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null }, -/obj/vehicle/powerloader{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) +"jke" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/area/almayer/hallways/vehiclehangar) -"jkd" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/disposalpipe/up/almayer{ + dir = 2; + id = "ares_vault_in"; + name = "aicore" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"jkh" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/folder/red, +/obj/structure/phone_base/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig CMP's Office"; + pixel_x = 15 }, -/area/almayer/hallways/port_hallway) -"jkj" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jki" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/cargo/southwest, /area/almayer/engineering/starboard_atmos) -"jkl" = ( -/obj/structure/morgue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -44227,57 +25497,50 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"jkz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 +"jkx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"jkC" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jkX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"jla" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"jkL" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"jlj" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"jkS" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"jlv" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"jkV" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"jlA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -44291,6 +25554,14 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) +"jlH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "jlN" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -44302,10 +25573,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"jlO" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) "jlQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) +"jlR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) "jlT" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ @@ -44313,46 +25602,50 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"jlX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 +"jmj" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"jmn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/command/lifeboat) -"jmg" = ( -/obj/structure/largecrate/supply/ammo/shotgun, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"jmt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black{ - pixel_y = 8 - }, -/obj/item/folder/yellow, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 8; - pixel_x = -16 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"jmK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"jmP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/almayer/maint/hull/lower/l_a_p) +"jmu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"jmB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/captain_mess) +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"jmN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "jmQ" = ( /obj/effect/landmark/start/maint, /obj/structure/machinery/light{ @@ -44360,79 +25653,71 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"jmR" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"jmY" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"jnf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"jnk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jnw" = ( +"jmT" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/bridge{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jne" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"jnn" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hallways/aft_hallway) -"jnA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jnp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/area/almayer/shipboard/brig/armory) -"jnD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jnq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"jnT" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"jnu" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"jnv" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"jnL" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jnV" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jnX" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -44443,182 +25728,340 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"jog" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 5 +"joe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/folder/black{ - pixel_x = 7; - pixel_y = -3 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"jok" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/window/westright{ + dir = 4; + req_access_txt = "28" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/area/almayer/command/combat_correspondent) -"jox" = ( -/obj/structure/machinery/brig_cell/cell_3{ - pixel_x = -32 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"joG" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"jon" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"jor" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"jot" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/engineering/laundry) -"joT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"joJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_a_p) -"jpp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"joQ" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"jpj" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "jpt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpJ" = ( -/obj/structure/bed/chair{ +"jpC" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jpH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"jpN" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"jpO" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"jpR" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"jpQ" = ( -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"jpX" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/lobby) -"jqP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"jqe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"jqf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/airoom) -"jre" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"jqg" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"jqo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jqp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/squads/req) -"jrm" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"jqu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S"; + layer = 3.3 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"jqA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/living/pilotbunks) -"jrM" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"jqI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jqO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"jrj" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jro" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"jrp" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"jrq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"jru" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"jrx" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jrC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "sterile_green_side" + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/area/almayer/medical/medical_science) -"jrV" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"jrI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"jrN" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hull/upper_hull/u_m_s) -"jss" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"jrP" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"jsi" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/living/briefing) +"jst" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"jsw" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"jsH" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, -/area/almayer/living/captain_mess) -"jsx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jsI" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"jsN" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jsS" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/medical_science) -"jsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"jsT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jta" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"jtj" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"jtb" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"jtk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jto" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"jtq" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jtz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"jtL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"jtP" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 2; + id = "ares_vault_out"; + name = "wycomms" }, +/turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"jtJ" = ( +"jtS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"juc" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"jue" = ( /obj/structure/machinery/door_control{ id = "laddernorthwest"; name = "North West Ladders Shutters"; @@ -44626,25 +26069,29 @@ req_one_access_txt = "2;3;12;19"; throw_range = 15 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"juf" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"juk" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 }, -/area/almayer/lifeboat_pumps/north1) -"jup" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"juB" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -44652,134 +26099,167 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"juX" = ( -/obj/structure/platform_decoration{ - dir = 1 +"juH" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"jvi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north1) -"jva" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"jvq" = ( +/obj/structure/sign/safety/maint{ pixel_x = -17 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"jvu" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) -"jvc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/general_equipment) -"jvp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"jvz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"jvD" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jvG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"jvL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" }, -/area/almayer/squads/alpha) -"jvB" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/no_build{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"jvW" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"jvY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"jwa" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/airoom) -"jvI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"jwm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"jvJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jwo" = ( +/obj/structure/closet/secure_closet/brig/restraints, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"jwr" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_f_s) -"jvX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"jwy" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jwF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"jwI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + layer = 3.3 }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"jwS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, /obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + dir = 1; + pixel_y = -28 }, -/area/almayer/command/cic) -"jvY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"jwD" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"jwW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"jwY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/lower_hull/l_m_s) -"jwK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"jwZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/area/almayer/squads/alpha_bravo_shared) -"jxi" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"jxd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"jxn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) "jxx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"jxA" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "jxB" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -44789,117 +26269,157 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxK" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +"jxE" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"jyr" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 }, -/area/almayer/shipboard/brig/processing) -"jyi" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jyu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"jyv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jyC" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "jyE" = ( /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"jyR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"jzD" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi" +"jyK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jyO" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jzf" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jzt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" }, -/area/almayer/engineering/upper_engineering/notunnel) -"jzZ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" }, -/area/almayer/lifeboat_pumps/north1) -"jAi" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/vehiclehangar) -"jAz" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jzB" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"jzP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"jAu" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/lifeboat_pumps/north1) -"jAB" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"jAy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"jAM" = ( +/obj/structure/closet{ + name = "backpack storage" }, -/area/almayer/squads/req) -"jAG" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"jBe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jBh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/shipboard/brig/surgery) -"jAJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"jBs" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 }, -/area/almayer/engineering/upper_engineering/port) -"jBy" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jBu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"jBv" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/area/almayer/medical/morgue) -"jBB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"jBD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -44914,105 +26434,203 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"jBX" = ( +"jBQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"jCb" = ( +/obj/structure/machinery/door_control{ + id = "perma_lockdown_2"; + name = "Maint Lockdown Shutters"; + pixel_y = -20; + req_one_access_txt = "24;31" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 }, -/area/almayer/command/lifeboat) -"jBY" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"jCf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"jCn" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jCp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"jCH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"jCR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"jCY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ pixel_y = 9 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -3 +/obj/item/tool/kitchen/tray{ + pixel_y = 12 }, -/obj/structure/noticeboard{ - desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; - pixel_y = 29 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jDa" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jDj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hull/upper_hull/u_m_s) -"jCa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"jDx" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"jDy" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 }, -/area/almayer/shipboard/brig/main_office) -"jCK" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/almayer/medical/lower_medical_lobby) -"jDV" = ( +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"jDA" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"jDH" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"jEb" = ( +/obj/structure/stairs, /obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/obj/structure/platform{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jEc" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"jEi" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jEk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - req_one_access_txt = "90;91;92" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"jEo" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/command/airoom) -"jEs" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"jEC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/stack/cable_coil{ +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ pixel_x = 8; - pixel_y = -4 + pixel_y = 32 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"jEH" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"jEJ" = ( +/obj/structure/machinery/power/apc/almayer/east, /turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"jFe" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 +/area/almayer/maint/lower/constr) +"jEQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"jEY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jEZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/interrogation) "jFf" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -45027,106 +26645,94 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"jFg" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"jFh" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"jFE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"jFR" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"jFX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"jGn" = ( -/obj/structure/machinery/light{ - dir = 1 +"jFH" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"jGp" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"jGk" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"jGo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/phone_base{ - dir = 1; - name = "Brig Warden's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig Warden's Office"; - pixel_x = -16 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jGs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"jGI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/laundry) -"jGN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"jGt" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"jGR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jGu" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"jGw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"jGx" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/area/almayer/squads/delta) -"jHe" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jGC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jGO" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"jGQ" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"jGY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/almayer/shipboard/brig/lobby) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45136,30 +26742,58 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHC" = ( -/turf/open/floor/almayer{ +"jHk" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"jHt" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jHu" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "silvercorner" + name = "ship-grade camera" }, -/area/almayer/command/computerlab) -"jHG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"jHD" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"jHE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"jHL" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"jHJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jHM" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "jHQ" = ( /obj/structure/machinery/crema_switch{ pixel_x = -24; @@ -45167,88 +26801,111 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jIV" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"jJe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jHW" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"jIb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/hallways/port_hallway) -"jJk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jIg" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"jIh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/port_emb) -"jJq" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"jIo" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"jIL" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"jIZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"jJu" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"jJw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"jJC" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"jJF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/shipboard/brig/general_equipment) -"jJs" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"jKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"jJK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/effect/landmark/start/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"jKn" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"jJS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/port_missiles) -"jKz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jKe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 }, -/obj/structure/platform{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"jKu" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"jKA" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"jKy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "jKF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -45263,92 +26920,74 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"jKI" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/port_atmos) -"jKK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"jLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie) -"jLs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"jLv" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"jLK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +"jKL" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jKV" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/port_hallway) -"jMb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jLa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"jLp" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jLE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"jMi" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"jLF" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jLS" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"jLV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"jMm" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"jLW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"jMp" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "jMr" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -45364,34 +27003,46 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"jMt" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"jMu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jMA" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"jMC" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"jMG" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/engineering/upper_engineering/starboard) -"jMK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -24; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jMJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -45411,18 +27062,21 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"jNc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" - }, +"jMW" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"jNn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -45430,130 +27084,172 @@ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/containment/cell) -"jNq" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"jNt" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" }, -/area/almayer/hull/lower_hull/l_f_s) -"jOi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"jNw" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jNI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"jNX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"jNZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"jOd" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/area/almayer/squads/bravo) -"jOk" = ( +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) +"jOl" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; +/obj/item/paper{ pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 5 }, -/area/almayer/squads/req) +/obj/item/tool/pen, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jOn" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/upper/u_a_p) "jOo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"jOu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"jOq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jOr" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"jOL" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/shipboard/brig/processing) -"jOx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"jOM" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jOR" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 }, -/area/almayer/squads/bravo) -"jOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jOX" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"jPm" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"jPu" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"jPw" = ( +/obj/structure/sink{ dir = 4; - pixel_x = 24 + pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"jPF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/medical/upper_medical) -"jPf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"jPZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"jPq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"jQa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = -24; + req_one_access_txt = "91;92" }, -/area/almayer/engineering/upper_engineering/starboard) -"jQt" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jQi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"jQn" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "jQD" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/flora/pottedplant{ @@ -45562,6 +27258,40 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"jQE" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jQT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jRp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"jRx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -45575,68 +27305,48 @@ }, /turf/closed/wall/almayer/outer, /area/space) -"jRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"jRK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" +"jRJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"jRN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"jRS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"jRZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"jSo" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "NE-out"; + pixel_x = 1 }, -/area/almayer/hallways/hangar) -"jSp" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jSb" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"jSk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"jSw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"jSq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"jSv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) "jSy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -45646,193 +27356,160 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"jSU" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"jSY" = ( +"jSB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SW-out"; + pixel_x = -1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "NW-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"jTi" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"jTj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"jTu" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, +/area/almayer/hallways/upper/starboard) +"jSG" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"jTI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/area/almayer/hallways/lower/starboard_fore_hallway) +"jSL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/squads/charlie_delta_shared) -"jUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"jSN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jTo" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jTA" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"jTC" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"jTS" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"jTT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"jUn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"jUo" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/uscm/directional/east, /area/almayer/living/briefing) -"jUs" = ( +"jTU" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"jUx" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" }, -/area/almayer/powered) -"jUG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"jTW" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jUf" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"jUL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"jUM" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/area/almayer/engineering/lower/engine_core) +"jUk" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/medical/medical_science) -"jUW" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"jUm" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"jUw" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"jUy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"jUA" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"jUY" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"jUK" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 6"; + pixel_x = -24 }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) "jVa" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"jVr" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) +"jVf" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"jVk" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jVp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "jVt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -45842,154 +27519,204 @@ }, /turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) -"jVE" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"jVx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jVC" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"jVF" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"jVL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) +"jWj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"jWm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"jWo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "jWr" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"jWt" = ( -/obj/structure/disposalpipe/segment{ +"jWF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"jWu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"jWG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/living/offices) -"jWC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"jWJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"jWN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"jWH" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"jWU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"jXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" + name = "\improper Holding Cell" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_medbay) -"jXk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"jWX" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"jXb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"jXW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/lifeboat) -"jXY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"jYd" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"jXn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"jYR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jXs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 4 + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/command/airoom) -"jZd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"jXw" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"jXC" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"jXI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/medical/operating_room_four) -"jZm" = ( -/obj/structure/machinery/brig_cell/cell_4{ - pixel_x = -32; - pixel_y = -32 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jXK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"jYj" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jYs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jZs" = ( -/obj/structure/machinery/light/containment{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"jYw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jYB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jYT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"jYV" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"jZp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "jZu" = ( /obj/structure/machinery/door_control{ id = "CIC_Conference"; @@ -46004,175 +27731,113 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"jZv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"jZO" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"jZU" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) -"jZY" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"kaj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"kam" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 +"jZH" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" }, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"jZW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kat" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_m_s) -"kaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"kaB" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"kaF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"kaI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/squads/charlie_delta_shared) -"kaJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"kaN" = ( -/obj/structure/platform{ - dir = 1 - }, +"kaq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/interrogation) +"kar" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"kas" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"kaz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"kbc" = ( +/area/almayer/shipboard/brig/perma) +"kaC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kaV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"kbx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"kbH" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kbh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"kbv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/engine_core) +"kbw" = ( /obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/command/airoom) -"kbJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"kby" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kbK" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) +"kbL" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/fore_hallway) "kbV" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"kcc" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -46183,139 +27848,284 @@ "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) -"kcA" = ( -/obj/structure/machinery/light{ - dir = 1 +"kcy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) -"kcD" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kcB" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 }, -/area/almayer/command/cic) +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"kcE" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) -"kcN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/commandbunks) -"kdi" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 +"kcI" = ( +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = 25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kcK" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" }, -/area/almayer/engineering/laundry) -"kdt" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"kcM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/fore_hallway) +"kcO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"kdc" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"kde" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"kdD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kdH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_f_s) -"kdB" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"kdK" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"kdN" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/medical/lower_medical_lobby) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"kdU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"ked" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"kel" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"keo" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kez" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"keD" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"keL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"kff" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +"keY" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"keZ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"kfa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"kfv" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"kfm" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"kfE" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kfJ" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"kfM" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"kfU" = ( +/turf/open/floor/plating, +/area/almayer/powered/agent) +"kfV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"kfN" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/shipboard/brig/processing) -"kfP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"kgg" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"kfU" = ( /turf/open/floor/plating, -/area/almayer/powered/agent) -"kfX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/almayer/maint/lower/constr) +"kgi" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"kge" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"kgj" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/u_a_s) +"kgl" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"kgr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"kgm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/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/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"kgq" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) "kgs" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46328,161 +28138,347 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"khd" = ( -/obj/structure/bed/chair{ - dir = 4 +"kgA" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 }, -/area/almayer/squads/charlie_delta_shared) -"khD" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/area/almayer/living/offices/flight) -"khE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"kgI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"khJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"kgK" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"kgR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"kgX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"khf" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"khr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/command/airoom) -"khS" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"khw" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"khy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_s) -"kif" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"khG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/main_office) -"kij" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"khV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"kio" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"kic" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kiv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) +"kiH" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"kiN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"kiR" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"kja" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/stern_point_defense) +"kjh" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kjj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"kjk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/living/port_emb) -"kiF" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"kiM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/living/grunt_rnr) -"kiT" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"kjm" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 }, -/area/almayer/lifeboat_pumps/south1) -"kiU" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"kjy" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"kjF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"kjL" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"kjM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"kiV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"kjO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/squads/alpha) -"kjN" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"kkc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/surgery) -"kkt" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"kkm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"kko" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"kks" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/obj/item/pipe{ + dir = 9 }, -/area/almayer/living/offices) -"kkx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/area/almayer/lifeboat_pumps/south2) -"kkE" = ( +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"kkF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 + }, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"kkK" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"kkQ" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"kkO" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/area/almayer/command/corporateliaison) +"kkS" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kkT" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"kkY" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/obj/item/flag/plantable/ua, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"klh" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"kli" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"klH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"klW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"klZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46492,417 +28488,475 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kmp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +"kmo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"kmq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kmw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/offices) +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"kmy" = ( +/obj/structure/machinery/brig_cell/cell_4{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"kmK" = ( -/obj/structure/platform{ - dir = 1 +"kmW" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/obj/item/tool/mop, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"kmL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 +/area/almayer/hallways/lower/starboard_aft_hallway) +"kmX" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"kmY" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"knb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/corporateliason) -"kmM" = ( -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"knk" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"knq" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"knz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"kng" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Primary Processors"; + dir = 4 }, -/area/almayer/living/pilotbunks) -"knH" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"knB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_fore_hallway) +"knG" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) "knK" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood/gibs, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"knT" = ( -/obj/structure/safe/cl_office, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"koc" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"knS" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"knU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"knZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"koa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/area/almayer/hallways/port_hallway) -"koz" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"koe" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"koh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kok" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"koq" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) +/area/almayer/shipboard/brig/cic_hallway) +"kox" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"koC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"koL" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"koU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"koX" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"koY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"kpa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"kpe" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/bravo) -"koT" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"kpg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/hull/lower_hull/l_a_p) -"kpc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"kpl" = ( /obj/structure/machinery/door_control{ - id = "cl_shutters"; - name = "Privacy Shutters"; - pixel_y = -20; - req_access_txt = "200" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"kpo" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/area/almayer/lifeboat_pumps/south2) -"kpQ" = ( /obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"kpX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"kpY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 + id = "ARES Railing"; + indestructible = 1; + name = "ARES Chamber Railings"; + needs_power = 0; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kqc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) -"kqf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kpB" = ( +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"kpE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"kqt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"kpW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kpZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) "kqv" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kqy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"kqE" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/silver/west, /area/almayer/shipboard/brig/cic_hallway) -"kqK" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" +"kqP" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"kqQ" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"kqN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"kra" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"krg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"krr" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"krE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/living/basketball) -"kro" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"krK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/area/almayer/hallways/port_hallway) -"krp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"ksm" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/area/almayer/living/gym) -"krN" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"ksr" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/squads/req) -"krS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"ksI" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"ksR" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"ksU" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ktn" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"ktr" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"krZ" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ktt" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ktx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, /area/almayer/squads/req) -"ksp" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"ksv" = ( -/obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer{ - icon_state = "redfull" +"ktA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/command/cic) -"ksA" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"ktK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"ktS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) -"ksN" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/living/briefing) -"ksP" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"kub" = ( +/obj/structure/toilet{ pixel_y = 13 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kta" = ( -/turf/open/floor/almayer{ +/obj/structure/sink{ dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/evidence_storage) -"ktB" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "cargo" + pixel_x = 11 }, -/area/almayer/hull/lower_hull/l_m_s) -"ktO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/mp_bunks) +"kuc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"ktP" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"ktX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "kuk" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -46914,805 +28968,937 @@ /obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"kuw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kuK" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"kuM" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"kuO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kuP" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/interrogation) +"kuR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"kuT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"kuU" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"kva" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"kvi" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"kvl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/living/briefing) -"kvh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"kvo" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"kvA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"kvz" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"kvC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kvK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"kvM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"kvS" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "kvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"kwd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"kvV" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"kwf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kwh" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "kwo" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"kwq" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"kws" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"kwz" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"kwt" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"kwD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"kwQ" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 +/obj/item/tool/pen{ + pixel_x = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clipboard{ + pixel_x = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/folder/white{ + pixel_x = -8 }, -/area/almayer/hallways/hangar) -"kwS" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"kwK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"kxd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/port_emb) -"kxo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"kxb" = ( +/obj/structure/bed/chair/comfy/ares{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Core Chamber" }, -/area/almayer/engineering/laundry) -"kxL" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"kxc" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"kxl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"kxp" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/area/almayer/squads/req) -"kxM" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kxs" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kxB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"kxI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"kyI" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"kxY" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"kyN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/item/tool/weldpack{ + pixel_x = -2 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"kya" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "red" + id = "ARES Operations Left"; + name = "\improper ARES Operations Shutters" }, -/area/almayer/shipboard/navigation) -"kyP" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"kyp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool{ + desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; + icon_state = "multitool_big"; + name = "\improper Oversized Security Access Tuner"; + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/stack/sheet/cardboard/medium_stack{ + layer = 3.01; + pixel_x = -7; + pixel_y = -6 }, -/area/almayer/shipboard/brig/perma) -"kyX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"kyw" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"kyH" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"kyY" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"kyZ" = ( +/area/almayer/maint/hull/lower/l_f_s) +"kyX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) +/area/almayer/lifeboat_pumps/south1) "kzb" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzk" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"kzy" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"kzK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"kzj" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/obj/item/bedsheet/blue{ - layer = 3.2 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) +"kzw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"kzz" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"kzC" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"kzI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/area/almayer/living/port_emb) -"kzP" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"kzO" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/area/almayer/hallways/port_hallway) -"kzT" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"kzR" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/area/almayer/command/airoom) -"kAh" = ( -/obj/structure/sign/safety/restrictedarea{ +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kzX" = ( +/obj/structure/sign/safety/terminal{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"kAm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"kAs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"kAj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"kAl" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) +"kAo" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"kAU" = ( -/obj/structure/platform{ +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"kAw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"kBo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kAC" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"kAH" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"kAX" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/area/almayer/medical/medical_science) -"kBy" = ( -/obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/bed/chair/bolted, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/command/airoom) -"kBK" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"kBi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"kBP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/hallways/lower/port_umbilical) +"kBj" = ( +/obj/structure/sign/safety/four{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 4"; + name = "Cell 4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kBm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen{ + pixel_y = -17 + }, +/obj/item/paper_bin/uscm{ + pixel_y = -16 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"kBu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"kBG" = ( +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/medical_science) -"kBY" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +"kBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/living/tankerbunks) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kBL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"kCa" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) -"kCj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/hydroponics) -"kCm" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"kCx" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"kCK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"kCE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"kCX" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"kDo" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/area/almayer/medical/containment) -"kCS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"kCT" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kDb" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"kDi" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"kDr" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"kDu" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"kDI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"kDK" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null }, -/area/almayer/hull/upper_hull/u_a_p) -"kDj" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"kDS" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kDW" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_medbay) -"kDk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/containment) -"kDA" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"kDR" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +"kEc" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_lobby) -"kEb" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"kED" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"kEp" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"kFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"kFq" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +/area/almayer/hallways/lower/starboard_fore_hallway) +"kEI" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"kEK" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" }, -/obj/structure/sign/safety/terminal{ +/obj/structure/sign/safety/ladder{ pixel_x = 8; - pixel_y = -32 + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kEL" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"kEP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) -"kFs" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"kES" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"kFC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/briefing) -"kFv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"kFO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" }, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"kGd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"kGx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"kGJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"kGF" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) +"kGM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "emerald" + pixel_y = 2 }, -/area/almayer/squads/charlie) -"kGI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kGO" = ( +/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"kGL" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"kGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kHf" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/area/almayer/hallways/aft_hallway) -"kGQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"kHm" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"kHz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"kHG" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"kHM" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" + dir = 9 }, +/turf/open/floor/almayer/research/containment/floor2/north, /area/almayer/medical/containment/cell) -"kGX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"kHa" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/surgery) -"kHd" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"kHj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +"kHU" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"kHK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"kHS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"kHZ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) +"kIe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kIh" = ( +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering/port) -"kHT" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"kHY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kIm" = ( -/obj/structure/pipes/vents/pump{ +"kIl" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"kIP" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/charlie) -"kIV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/target{ + name = "punching bag" }, -/area/almayer/hull/upper_hull/u_f_p) -"kJi" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kIp" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/squads/alpha) -"kJC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kIu" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"kIO" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"kJG" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"kIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/upper_hull/u_a_p) -"kJK" = ( -/obj/structure/bed/chair/comfy/orange, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"kJL" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/area/almayer/hallways/lower/port_aft_hallway) +"kJf" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"kJr" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 }, -/area/almayer/lifeboat_pumps/north1) -"kJV" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/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" }, -/area/almayer/hallways/port_hallway) -"kKb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/reagent_container/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/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/reagent_container/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" }, -/area/almayer/hallways/stern_hallway) -"kKk" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"kJM" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) -"kKv" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 - }, -/obj/structure/platform{ - dir = 8 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kJR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"kKc" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"kKd" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/command/airoom) -"kKG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_s) -"kKL" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"kKj" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kKr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"kKu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kKN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"kKQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) "kKR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kKX" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"kLc" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" +"kLa" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"kLk" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"kLn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/bravo) -"kLp" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"kLq" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"kLw" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"kLC" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"kLP" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"kLD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"kLF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/req) -"kMq" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"kLJ" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"kMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"kMp" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"kMr" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/midship_hallway) +"kMu" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"kMA" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"kMB" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kMG" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -47723,31 +29909,79 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kMK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"kMP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 10 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console"; + pixel_y = -11 }, -/area/almayer/engineering/upper_engineering/port) -"kNi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"kMW" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"kMZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 8 + }, +/obj/item/paper{ + pixel_x = 8 + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"kNc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"kNg" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "redcorner" + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/processing) +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"kNj" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -47760,20 +29994,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNx" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 +"kNr" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"kNA" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" }, -/area/almayer/medical/medical_science) +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) "kNC" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -47784,6 +30027,10 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"kNG" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "kNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -47797,144 +30044,161 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"kNR" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kNU" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "kNY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"kOf" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"kOi" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"kOk" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"kOd" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kOv" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"kOo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"kOq" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"kOC" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/shipboard/port_missiles) -"kOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"kOQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"kOS" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"kOU" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"kOG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"kOW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"kOZ" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kPb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"kPj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"kPo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"kPn" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"kPx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/chemistry) -"kPB" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"kPr" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"kPv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"kPG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kPJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"kPF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/squads/delta) -"kPR" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"kPW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "kPZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -47945,51 +30209,119 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQz" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +"kQf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"kQj" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"kQD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/upper_hull/u_f_p) -"kQU" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"kQO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"kQQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kQT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 }, -/area/almayer/living/briefing) -"kRd" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"kRa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"kRE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/area/almayer/medical/operating_room_three) -"kRu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"kRH" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"kRL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"kRM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -47999,98 +30331,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kSd" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"kSh" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"kSK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"kSv" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"kSS" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"kTc" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"kTg" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kTh" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/area/almayer/hallways/hangar) -"kSy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = 24; - req_one_access_txt = "200;91;92" +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"kTl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/command/airoom) -"kSJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"kSN" = ( -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"kTp" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"kTr" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"kTq" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_m_p) -"kTv" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"kTI" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"kTx" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"kTM" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"kTN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/ce_room) +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"kTR" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) "kTY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -48101,77 +30415,109 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"kUb" = ( -/obj/structure/closet/secure_closet, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/storage/box/tapes, -/obj/item/clothing/head/fedora, -/obj/item/clothing/suit/storage/marine/light/reporter, -/obj/item/clothing/head/helmet/marine/reporter, -/obj/item/clothing/head/cmcap/reporter, -/obj/item/device/flashlight, -/obj/item/device/toner, -/obj/item/device/toner, -/turf/open/floor/almayer{ - icon_state = "plate" +"kTZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 }, -/area/almayer/command/combat_correspondent) -"kUt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"kUw" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash{ - pixel_x = 2; - pixel_y = 2 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/storage/bag/trash{ - pixel_x = -8; - pixel_y = 4 +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"kUo" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/fore_hallway) +"kUs" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/obj/item/storage/bag/trash{ - pixel_x = -3; - pixel_y = -2 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kUv" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 }, -/area/almayer/engineering/upper_engineering/port) -"kUQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating, +/area/almayer/command/airoom) +"kUA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"kUV" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"kUD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"kUL" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"kUO" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"kVX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"kUP" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"kVA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"kVM" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"kVQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"kVV" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) "kVZ" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 2"; @@ -48182,215 +30528,282 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"kWk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"kWj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"kWq" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"kWl" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"kWm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 }, -/area/almayer/command/cichallway) -"kWT" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/obj/item/tool/stamp/approved{ + pixel_x = -3; + pixel_y = -11 }, -/area/almayer/living/pilotbunks) -"kWY" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kWo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"kXa" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/bravo) -"kXf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"kWs" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"kWO" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"kWW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"kXd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/almayer/command/computerlab) -"kXj" = ( -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/command/airoom) -"kXu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/command/computerlab) -"kXw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"kXi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/medical_science) -"kXJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"kXK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"kXN" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kXl" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"kYa" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"kYv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kXr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/port_emb) -"kYP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kXy" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kXz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"kYU" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kXR" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"kYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_aft_hallway) +"kYh" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"kYi" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"kYz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/offices) -"kZA" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"kYC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "orange" + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, -/area/almayer/hallways/port_umbilical) -"kZN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kYH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"kYL" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/living/auxiliary_officer_office) -"kZV" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"kYO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"kYQ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kZt" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/medical/hydroponics) -"lah" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/gym) -"laj" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kZH" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"kZI" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kZR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"laf" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/engineering/engine_core) -"lau" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"lap" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"laq" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"laA" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"laD" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"laH" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"laL" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"laM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) "laO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48400,17 +30813,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"laQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) "laU" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -48434,64 +30836,140 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"lbb" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 +"laX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"laY" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"lbd" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lbi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"lbj" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"lbl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" }, -/area/almayer/hull/upper_hull/u_m_p) -"lbf" = ( -/obj/structure/machinery/cryopod{ +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"lbp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"lbt" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"lbE" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"lbG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"lbN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 0 }, -/area/almayer/squads/charlie) -"lbB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"lbQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"lbZ" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 }, -/area/almayer/engineering/upper_engineering/port) -"lbX" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"lcc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"lcp" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/almayer/squads/charlie) -"lcg" = ( -/obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lcw" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"lcx" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/command/airoom) -"lcy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lcz" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lcJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lcU" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -48507,60 +30985,85 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"ldj" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/platform, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ldl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"lcX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"ldb" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) -"ldt" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"ldq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/gym) -"ldu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"ldB" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/area/almayer/shipboard/brig/main_office) -"ldC" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"ldE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ldJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/living/captain_mess) -"ldD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"ldN" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"ldS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"ldT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"ldZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) "lea" = ( /obj/structure/sink{ dir = 4; @@ -48579,82 +31082,112 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"lef" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"leg" = ( -/obj/structure/bed/chair{ +"ler" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/hallways/hangar) -"leh" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "let" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"leu" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) "ley" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leY" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +"leA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"leE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"leG" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/almayer/medical/lower_medical_lobby) -"lfH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"lfn" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"lfr" = ( /obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lfu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/basketball) -"lfQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"lfy" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"lfE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/fore_hallway) +"lfR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/engineering/engine_core) -"lfW" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/sign/safety/maint{ - pixel_x = 14; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"lgc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/area/almayer/shipboard/brig/processing) +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "lgy" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -48666,62 +31199,55 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"lgK" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"lgX" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"lgY" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"lht" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +"lgD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 }, -/area/almayer/engineering/upper_engineering/starboard) -"lhu" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"lgG" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lgO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/firealarm{ + pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lhe" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lho" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hull/lower_hull/l_m_s) -"lhv" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"lhq" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"lhx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) "lhB" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48734,25 +31260,19 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"lhJ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"lhL" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +"lhQ" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"lhT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -48760,56 +31280,73 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lid" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 +"lic" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 }, -/area/almayer/medical/medical_science) -"lin" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"lie" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"liq" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/command/airoom) -"liJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lix" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"liy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"liY" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"liD" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"liJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer, +/area/almayer/command/computerlab) "liZ" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, @@ -48820,105 +31357,135 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"ljf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer{ - icon_state = "plate" +"ljp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/gym) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"ljv" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/book/manual/medical_cloning, +"ljA" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ljG" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 1 }, -/area/almayer/living/grunt_rnr) -"ljO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ljD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"lkd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen2"; - name = "\improper Kitchen Shutters" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ljN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"lkf" = ( +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"lkq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"lks" = ( /obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"lkv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 8; + layer = 2.99; + name = "brig cameras console"; + pixel_x = 17; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lky" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"lkI" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"lkN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"lkZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/offices/flight) -"lkM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"llk" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"llp" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"llq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"llr" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/squads/charlie) -"lkW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "llt" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -48929,28 +31496,56 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"llu" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"llA" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) "llD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) -"llM" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"llO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"llG" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/area/almayer/hallways/hangar) -"lmk" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"lmi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -48958,6 +31553,17 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"lmr" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -48969,131 +31575,81 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"lmz" = ( -/turf/closed/wall/almayer/white/hull, -/area/space) -"lmK" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/securestorage) -"lne" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"lnm" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/living/briefing) -"lnt" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/shipboard/brig/cic_hallway) -"lnG" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1); - pixel_y = 0 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/commandbunks) -"lnJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"lmQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"lnP" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"lnS" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/area/almayer/shipboard/brig/warden_office) +"lnc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lnd" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/command/airoom) -"loc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lni" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/command/computerlab) -"lok" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 }, -/area/almayer/squads/charlie) -"lol" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/effect/landmark/map_item{ + layer = 3.03; + pixel_x = -7; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lnl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"lou" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"lnC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"lnM" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 7; + pixel_y = -30 }, -/area/almayer/medical/medical_science) -"loK" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"lnY" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"loi" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/powered/agent) +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"loC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) "loN" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -49107,23 +31663,6 @@ "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) -"loS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) "loV" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -49138,151 +31677,78 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"loY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"lpt" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/charlie_delta_shared) -"lpy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered/agent) -"lpD" = ( +"lpj" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"lps" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"lpS" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"lpX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"lqF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"lqI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"lqJ" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"lqK" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"lpw" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"lpL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) -"lqN" = ( -/obj/item/device/assembly/mousetrap/armed, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"lqb" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lqt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"lqD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/port_emb) -"lra" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_p) -"lrb" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +"lrn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"lre" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"lrv" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -34 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lrH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lrV" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/sign/safety/three{ - pixel_x = 31 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"lrW" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) "lrX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -49293,261 +31759,238 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"lsb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"lsp" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +"lrY" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"lrZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) +"lse" = ( +/obj/structure/toilet{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"lsn" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"lsr" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"lst" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 }, -/area/almayer/command/cichallway) -"lsD" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lsy" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"lsC" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"lsJ" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"lsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/living/offices/flight) -"lsV" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lsT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/area/almayer/shipboard/weapon_room) -"ltb" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lsU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"ltl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"lto" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ltq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) "ltA" = ( /obj/item/tool/weldingtool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ltI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +"ltJ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/charlie) -"ltK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"ltX" = ( -/obj/structure/disposalpipe/segment, +"ltL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/main_office) -"luk" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"lut" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"luu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"luw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "Brig" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ltO" = ( +/obj/effect/landmark/start/intel, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 29; + serial_number = 12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"ltW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"luv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/red, /area/almayer/shipboard/brig/processing) -"luz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"luC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +"luA" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"luE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/brig/perma) -"luH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"luK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"luM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" }, -/area/almayer/shipboard/brig/processing) -"luS" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"luN" = ( /obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"luY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"luZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/command/cic) -"lvA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"luV" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"lvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/pilotbunks) -"lvZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 8; - id = "Perma 1L"; - name = "\improper cell shutter" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"lvw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"lwi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lvz" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"lvB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"lvK" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null }, -/area/almayer/hull/upper_hull/u_a_p) -"lwm" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"lvY" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/upper/u_a_p) +"lwn" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"lwB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"lwt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" }, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; +/obj/structure/surface/rack, +/obj/item/parachute{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 }, -/area/almayer/living/auxiliary_officer_office) +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -49561,90 +32004,141 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lwJ" = ( +"lwS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"lxc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"lxg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"lxr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/squads/charlie) -"lxo" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"lxx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" }, -/area/almayer/living/auxiliary_officer_office) -"lxJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"lxN" = ( /obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/gear/commanding_officer{ - pixel_y = 0 +/obj/structure/sign/safety/rewire{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lxO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/living/commandbunks) -"lxT" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lxS" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"lxU" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"lxX" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/lifeboat_pumps/south2) -"lxW" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/area/almayer/living/auxiliary_officer_office) -"lyi" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"lya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"lyk" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lyq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"lyu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +"lyL" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lyU" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"lyV" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/command/computerlab) -"lyX" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"lyY" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/boots/n160{ + layer = 2.8; + pixel_x = 4; + pixel_y = -8 }, -/area/almayer/living/auxiliary_officer_office) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"lyZ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) "lza" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey/top{ @@ -49652,24 +32146,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lzj" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"lzn" = ( +"lzc" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"lzd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "lzq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -49677,111 +32164,76 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"lzx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"lzA" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"lzs" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 }, -/area/almayer/medical/medical_science) -"lzH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lzv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lzw" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"lzW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"lzz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"lAj" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 + icon_state = "S" }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lzB" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"lzF" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lzI" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lAb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"lAd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"lAl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/squads/bravo) -"lAu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) +"lAe" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "lAy" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 @@ -49791,259 +32243,185 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lAA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_p) -"lAO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, +"lAF" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"lAP" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/upper/p_bow) +"lAK" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"lAY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"lBj" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lBr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"lBK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"lAQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/squads/charlie) -"lBg" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/engineering/laundry) -"lBi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lBL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lBO" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"lBv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"lBP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"lBS" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"lCm" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"lBz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"lCo" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"lBF" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"lCs" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"lCu" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"lBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"lBY" = ( -/obj/structure/closet{ - name = "backpack storage" - }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"lCn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"lCt" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"lCz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/hallways/aft_hallway) -"lCM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/computer/working_joe{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"lCx" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) -"lCS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"lCA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) -"lDg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/sink{ + pixel_y = 24 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"lCY" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"lDj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"lDJ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + layer = 1.9 }, -/area/almayer/hallways/starboard_hallway) -"lDK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/weapons/m39{ - pixel_x = 2 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"lDb" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null }, -/obj/structure/largecrate/supply/weapons/m41a{ - layer = 3.1; - pixel_x = 6; - pixel_y = 17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"lDc" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"lDd" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_m_s) -"lDL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"lDs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"lDu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"lDB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"lDN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lDT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/medical/hydroponics) -"lDV" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) +/area/almayer/shipboard/brig/execution) "lEf" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"lEj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"lEv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +"lEg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -50054,6 +32432,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"lEH" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"lEJ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -50061,16 +32459,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lEW" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"lFb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -50080,203 +32468,206 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lFh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/port_emb) -"lFm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"lFg" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/command/securestorage) -"lFn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"lFl" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 }, -/area/almayer/medical/morgue) -"lFs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"lFt" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"lFw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/starboard_atmos) -"lFA" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lFz" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"lFF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lFC" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) "lFK" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"lGh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"lFR" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"lGr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"lFS" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"lGu" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"lGG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"lGL" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"lFZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"lHc" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"lHu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"lGq" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 }, -/area/almayer/living/grunt_rnr) -"lHE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/hop{ - name = "Commanding Officer's rubber stamp"; - pixel_x = -5; - pixel_y = 9 +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/obj/item/paper_bin/uscm{ - pixel_y = 6; - pixel_x = 7 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lGA" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"lGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lGO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/tool/pen/blue/clicky{ - pixel_x = -6; - pixel_y = -3 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"lGR" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lHb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"lHG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"lHj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lHm" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"lHv" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"lHI" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." }, -/area/almayer/living/grunt_rnr) -"lIa" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"lHM" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"lIh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lHW" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"lId" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -50286,49 +32677,53 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lIw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lIq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hallways/stern_hallway) -"lII" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/engineering/port_atmos) -"lIU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 }, -/area/almayer/engineering/upper_engineering/port) -"lIV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"lIr" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"lJa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"lIY" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"lIZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"lJg" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lJh" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "lJo" = ( /obj/structure/machinery/light{ dir = 1 @@ -50337,395 +32732,463 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"lJu" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"lJv" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext"; - name = "\improper Research Window Shutter" +"lJs" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"lJG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"lJt" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"lJz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"lJK" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 }, -/area/almayer/living/offices) -"lJO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lJR" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"lJS" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"lJW" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" }, -/area/almayer/squads/alpha) +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) "lJY" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"lKa" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"lKb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 +"lKq" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"lKk" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/mirror{ + pixel_y = 32 }, -/area/almayer/hallways/stern_hallway) -"lLC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"lLN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"lKr" = ( +/obj/structure/platform{ + dir = 4 }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"lKD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cryo) +"lKI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/shipboard/brig/armory) -"lLS" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lKV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SEA Office Shutters"; + name = "SEA Office Shutters"; + pixel_y = 12 }, -/area/almayer/command/cichallway) -"lLV" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"lMc" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -4 }, -/area/almayer/shipboard/brig/processing) -"lMp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/phone_base/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Offices"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lMv" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"lKY" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"lMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"lLa" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/area/almayer/squads/req) -"lMM" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lLc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"lMY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south2) -"lNl" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"lNs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"lLe" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lLg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 9 }, -/obj/structure/machinery/door_control{ - id = "cmp_armory"; - name = "Armory Lockdown"; - pixel_x = 24; - pixel_y = -6; - req_access_txt = "4" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lLq" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"lLr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/area/almayer/shipboard/brig/main_office) -"lNw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lLx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"lLB" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"lLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"lLD" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, /area/almayer/squads/charlie) -"lNy" = ( +"lLG" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"lLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"lMa" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"lMf" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"lNF" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"lMo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/execution) -"lNS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"lMp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"lMC" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"lMH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"lMQ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"lMS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"lMZ" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lNc" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/command/cic) -"lOl" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"lNe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"lNo" = ( +/obj/structure/machinery/medical_pod/sleeper{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"lNq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + name = "\improper Warden's Office" }, -/area/almayer/command/corporateliason) -"lOr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"lOH" = ( -/obj/structure/sink{ - pixel_y = 32 + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/medical/operating_room_two) -"lON" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"lNZ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" }, -/area/almayer/medical/medical_science) -"lPB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"lOe" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lOq" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/obj/item/clothing/glasses/welding{ + pixel_y = 6 }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"lOB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) +"lPf" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lPu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) "lPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"lPO" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"lQj" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 +"lPG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" }, -/obj/item/ashtray/plastic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"lPJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"lPN" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"lPY" = ( +/obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"lQu" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_m_s) -"lQz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"lQm" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"lQv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lQA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "lQG" = ( /obj/structure/machinery/computer/tech_control, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"lQO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +"lQI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/medical/operating_room_three) -"lQQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"lQU" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"lRa" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hallways/port_hallway) -"lRs" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lRb" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"lRr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"lRA" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -50735,56 +33198,143 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lRG" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"lRK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"lRM" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lRO" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lRU" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"lRX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +"lSc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"lSd" = ( +/turf/open/floor/almayer/orange/west, /area/almayer/hallways/hangar) -"lRZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"lSe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"lSf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, +/turf/open/floor/almayer/silver/west, /area/almayer/living/briefing) -"lSD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"lSg" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 }, -/area/almayer/hull/upper_hull/u_m_p) -"lTt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/execution) +"lSm" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"lSz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"lSB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"lSU" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"lSY" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"lTa" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"lTc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"lTA" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"lTC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) "lTE" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -50793,28 +33343,109 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"lTK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"lTZ" = ( -/obj/structure/toilet{ - dir = 8; - pixel_y = 8; - layer = 2.9 +"lTG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, -/obj/structure/window{ - pixel_y = -2; - layer = 2.95 +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"lTJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"lUv" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"lTY" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"lUe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lUh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lUk" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"lUq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"lUt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lUD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lUP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"lUX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"lUY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"lVg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lVi" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, @@ -50823,250 +33454,348 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +"lVA" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"lVC" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"lVP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"lWe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lWi" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" + id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"lWj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/briefing) -"lWh" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"lWu" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"lWP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution) +"lWR" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/almayer/hull/upper_hull/u_a_s) -"lWr" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lWZ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Stairway Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"lXd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"lXk" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lXn" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ dir = 9; - icon_state = "red" + layer = 3.51 }, -/area/almayer/lifeboat_pumps/south1) -"lXg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"lXs" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lXH" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"lXF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"lXL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"lXY" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lYb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"lYj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull) -"lXO" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lYy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/offices) -"lYi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"lYk" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"lYz" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/engineering/upper_engineering/port) -"lYu" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"lYP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"lYR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"lZc" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/area/almayer/hull/lower_hull/l_m_s) -"lYA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_m_s) -"lYL" = ( +/obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"lYN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W" }, -/area/almayer/hallways/hangar) -"lYZ" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"lZh" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"lZs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"lZB" = ( -/obj/structure/sign/safety/restrictedarea{ +/obj/item/toy/deck{ pixel_x = 8; - pixel_y = 32 + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"lZl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"lZO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"lZv" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"lZZ" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lZS" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"maa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mab" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"mah" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/general_equipment) -"maq" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"mar" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"maw" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mas" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"may" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"maD" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"maH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"maI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"maL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/gym) -"maT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"maP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"maU" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/medical/upper_medical) -"mbn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"mce" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/almayer/hallways/aft_hallway) -"mcl" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"maX" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"mbl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"mcL" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"mbt" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/gym) -"mcV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mbx" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"mbK" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"mbW" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"mch" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"mck" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"mcB" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"mcE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mcI" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"mcS" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) "mcW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves, @@ -51075,157 +33804,167 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mdo" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"mdJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"mdS" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"mdb" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"mdl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"mdW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"mdA" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"mdC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"mdM" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"meC" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 }, -/area/almayer/command/airoom) -"meu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 }, -/obj/structure/sign/poster{ - pixel_y = -32 +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 }, -/area/almayer/squads/delta) -"meJ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 }, -/area/almayer/hallways/aft_hallway) -"meN" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"meD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/hull/lower_hull/l_f_p) -"meS" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"meK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"meR" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"mfI" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_a_p) -"mfM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 +"meZ" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"mfj" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"mfk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"mfo" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"mfq" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/area/almayer/living/briefing) -"mfQ" = ( -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"mfF" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"mfK" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"mgn" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, -/area/almayer/living/pilotbunks) -"mgj" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"mgp" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "mgy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"mgF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"mgE" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"mgH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" }, -/area/almayer/squads/charlie_delta_shared) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"mgY" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -51233,60 +33972,115 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"mhd" = ( -/obj/structure/machinery/light{ - dir = 1 +"mhc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"mhl" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"mhe" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mhr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"mhm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"mht" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mhw" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"mhz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mhC" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) "mhG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"mhI" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +"mhN" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mhX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 }, -/area/almayer/squads/alpha) +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"mih" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) "miE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -51297,12 +34091,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"miK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" +"miI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"miL" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"miO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"miS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "miV" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -51310,175 +34116,233 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"mji" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"mjR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"mjS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"mjl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"mkc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"mjn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"mjs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mjD" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_med_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"mkh" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mjS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"mkk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/squads/charlie) +"mjV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mjW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"mkx" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/area/almayer/command/corporateliason) -"mkG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/item/poster, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"mkm" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mkp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/engineering/port_atmos) -"mkH" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + name = "\improper Brig Lobby" }, -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"mkB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mkK" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"mkQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/fancy/candle_box{ +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mkR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ pixel_x = 6; - pixel_y = -2 + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 }, -/area/almayer/engineering/upper_engineering/starboard) -"mlb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"mkU" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/command/airoom) -"mlm" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mli" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mly" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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" }, -/area/almayer/living/cryo_cells) -"mlp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"mlB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"mlE" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_f_s) -"mlz" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"mlN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"mlH" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"mmC" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"mmj" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/area/almayer/shipboard/brig/execution) +"mml" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"mmu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mmG" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) "mmN" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -51491,82 +34355,108 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mnf" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"mmR" = ( +/obj/structure/platform{ dir = 4 }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"mmT" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Comms" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mmU" = ( /obj/structure/disposalpipe/segment{ - dir = 8 + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"mng" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"mni" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mmY" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mnc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"mnh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"mnm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"mnp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"mnu" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, +/area/almayer/command/airoom) "mnA" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnG" = ( +"mnH" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"mnI" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/living/briefing) -"mnW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 - }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"mnP" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mnR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"mnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/medical/containment) -"moh" = ( -/obj/structure/closet/firecloset, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"mom" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/area/almayer/hallways/upper/port) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -51577,301 +34467,594 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"mos" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) "mov" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) +"mox" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"moz" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) "moB" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cells) -"moE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) "moI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"moS" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"moW" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/squads/delta) -"moQ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"mpb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mpl" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"mpo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"moY" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"mqb" = ( -/obj/structure/surface/table/almayer, +"mpr" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"mpw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"mpD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"mpE" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mpH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/phone_base/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mpQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"mqt" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mqx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/medical_science) -"mqg" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mqy" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"mqz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"mqV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"mqW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"mqZ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mrf" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mro" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"msf" = ( +/obj/structure/stairs{ dir = 8; - icon_state = "silver" + icon_state = "ramptop" }, -/area/almayer/shipboard/brig/cic_hallway) -"mqo" = ( -/obj/structure/bed/chair/bolted{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/area/almayer/shipboard/brig/main_office) -"mqK" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"msj" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"msk" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"mso" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"msw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/squads/bravo) -"mqU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"msx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"msz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"msN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/medical/operating_room_two) -"mrc" = ( -/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"msR" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"mtk" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"mtl" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution) +"mto" = ( /obj/item/tool/mop{ pixel_x = -6; pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"mtt" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"mru" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"mrB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mtv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"mtx" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_f_p) -"mrD" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"mtH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"mtQ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"mtY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/hangar) -"mrL" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/morgue) -"mrM" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mug" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"mum" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/squads/req) -"msg" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"muq" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"muv" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/closed/wall/almayer{ + opacity = 0 + }, +/area/almayer/squads/req) +"muD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"muN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"muT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/lifeboat_pumps/south1) -"msi" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"mvb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mvg" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 5"; + name = "Cell 5" }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 +/obj/structure/sign/safety/five{ + pixel_x = -17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"mvh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"mvr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"mvA" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mvD" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/medical/containment) -"msm" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"mvE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 }, -/area/almayer/squads/bravo) -"msP" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 }, -/area/almayer/engineering/upper_engineering/starboard) -"msV" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mvL" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"mvN" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"mvW" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/upper/u_a_p) +"mvX" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"msZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/area/almayer/maint/hull/upper/s_bow) +"mvZ" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"mwh" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"mwu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mww" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 }, -/area/almayer/living/gym) -"mtl" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution) -"mto" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"mwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mtr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mwF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"mwI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = -29 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"mwL" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"mwR" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"mwU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/squads/bravo) -"mtD" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"mwW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"mxa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"mxq" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mxs" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/command/lifeboat) -"mtE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"mxJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/obj/structure/sign/safety/east{ +/obj/item/storage/bag/plants{ + pixel_x = 3 + }, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ pixel_x = 15; pixel_y = 32 }, -/obj/structure/sign/safety/coffee{ +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"mtH" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"mxK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"mtM" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"mxS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/area/almayer/command/cichallway) -"mub" = ( -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"mxZ" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"myc" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/area/almayer/living/gym) -"muq" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"myh" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"myk" = ( +/obj/effect/landmark/railgun_computer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"myp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mus" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"myq" = ( /obj/item/bedsheet/blue{ layer = 3.2 }, @@ -51909,410 +35092,511 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/almayer/living/port_emb) -"mux" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"myE" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 }, -/area/almayer/engineering/upper_engineering) -"muy" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"myM" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"myN" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"myO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/squads/alpha) -"mvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"myV" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = -5; + pixel_y = -3 }, -/area/almayer/squads/delta) -"mvH" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mze" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"mzh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mzi" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"mzv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"mzz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"mzF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"mzI" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"mzN" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/obj/structure/barricade/handrail/medical{ - dir = 4 +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"mzP" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"mAk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mAl" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." }, -/area/almayer/medical/lower_medical_lobby) -"mwA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mAo" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mwL" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"mwM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"mwQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mAp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mAq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"mAr" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"mAu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"mAz" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"mAG" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/hangar) -"mwR" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mAI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"mxL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/lower/starboard_fore_hallway) +"mAN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mAR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"mAY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/autoopenclose{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"mBv" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/sign/safety/water{ - pixel_x = 15; +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mBw" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mBz" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"myn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mBG" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) +"mBI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"mBJ" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"myo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/area/almayer/hallways/hangar) -"myC" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"mBM" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + pixel_y = 3 }, -/area/almayer/hull/upper_hull/u_a_p) -"myJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"mBW" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"mBZ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mCe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"mCo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/plating, /area/almayer/squads/req) -"myT" = ( -/obj/structure/closet/firecloset, +"mCA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + dir = 2; + name = "\improper Brig Lobby" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"mCB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"mzb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mCH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"mCL" = ( +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"mzg" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"mzk" = ( -/obj/structure/phone_base/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"mCN" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating, +/area/almayer/command/airoom) +"mCO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"mCP" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/area/almayer/squads/req) -"mzo" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mCS" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"mCV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/hydroponics) -"mzz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"mzF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"mzO" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"mCW" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/engine_core) -"mzR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"mzV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mDa" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/living/port_emb) -"mAp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mDi" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"mDn" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mAT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/shipboard/brig/armory) -"mAV" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/landmark/map_item, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"mBb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"mDo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 }, -/area/almayer/hull/lower_hull/l_f_s) -"mBc" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"mDt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null }, -/area/almayer/squads/charlie_delta_shared) -"mBe" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"mDE" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"mDG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" }, -/area/almayer/living/pilotbunks) -"mBk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"mDH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"mBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/upper/midship_hallway) +"mDJ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"mDL" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"mDM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mDP" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"mDR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/navigation) -"mBA" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"mDZ" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/obj/effect/landmark/map_item, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"mEk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"mEr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"mBJ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"mEu" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/platform{ +/obj/structure/window/reinforced{ dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"mCo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"mCL" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"mDj" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/squads/req) -"mDJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"mDT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/bedsheet/red{ + layer = 3.2 }, -/area/almayer/squads/charlie_delta_shared) -"mDW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/area/almayer/living/briefing) -"mEb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"mEz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"mEC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -52324,402 +35608,482 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"mFq" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"mFN" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Right"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 +"mEF" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"mEW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/item/storage/box/handcuffs, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mFb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/airoom) -"mFO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"mFc" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"mGe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"mGn" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"mGu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"mGL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"mHm" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"mHo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"mFk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/engineering/laundry) -"mHx" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mFr" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"mFs" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8; + pixel_y = 3 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"mFv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"mHD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"mFz" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"mHE" = ( -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mFA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" }, -/area/almayer/command/airoom) -"mHO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"mFE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/living/pilotbunks) -"mHR" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"mFQ" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"mIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mIz" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mGc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" }, -/area/almayer/hallways/hangar) -"mIA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" }, -/area/almayer/lifeboat_pumps/south2) -"mIB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/phone_base/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"mIW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/machinery/door/window/westright{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"mJa" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"mGe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mGq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"mJe" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"mGw" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mGA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/almayer/command/cichallway) -"mJi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"mGF" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"mJj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"mGH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/alpha) -"mJu" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/cic) -"mJx" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 }, -/area/almayer/engineering/upper_engineering/starboard) -"mJA" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"mGI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"mGN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/area/almayer/living/captain_mess) -"mJL" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"mJP" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +"mHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/squads/bravo) -"mKb" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"mHn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"mHs" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/alpha) -"mKf" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"mKh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"mHu" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"mHx" = ( +/obj/structure/bed/chair{ dir = 4 }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"mHy" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"mHz" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/brig/cryo) -"mKq" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/bridgebunks) -"mKw" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"mIb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"mId" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mIg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"mIh" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"mIn" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"mIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mIF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"mIL" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lower_medical_lobby) -"mKx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"mIM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"mKJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"mIZ" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"mJi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/port_emb) -"mKX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"mJj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/alpha) +"mJu" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/cic) +"mJv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"mKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"mLb" = ( /obj/structure/platform{ dir = 1 }, -/obj/item/toy/deck/uno{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"mLu" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mJw" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"mJy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mJG" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"mKd" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"mKq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/bridgebunks) +"mKu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mKB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"mLz" = ( +/area/almayer/hallways/lower/repair_bay) +"mKH" = ( /obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; + id = "pobunk2"; + name = "PO2 Privacy Shutters"; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"mLE" = ( -/turf/open/floor/plating, -/area/almayer/command/airoom) +"mKR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"mKW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"mLa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mLl" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"mLn" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"mLw" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mLA" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "mLF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52733,20 +36097,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"mLI" = ( -/obj/structure/machinery/light/small{ +"mLG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/perma) -"mLJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mLL" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52756,151 +36118,203 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"mLU" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +"mLZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/area/almayer/hallways/stern_hallway) -"mMP" = ( -/obj/effect/landmark/start/intel, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mMa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"mMe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"mMh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"mMl" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"mMV" = ( -/obj/structure/pipes/vents/scrubber, +/area/almayer/maint/hull/lower/l_f_p) +"mMs" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"mMQ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"mMT" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = -28 + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"mNf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"mMZ" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"mNd" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"mNh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) "mNm" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"mNI" = ( -/obj/structure/machinery/door/window/westleft{ +"mNp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"mNq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"mNu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/upper_medical) -"mNR" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"mNw" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"mNC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_s) -"mNW" = ( -/obj/structure/platform{ +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"mNX" = ( -/turf/open/floor/almayer_hull{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"mNE" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "outerhull_dir" - }, -/area/space/almayer/lifeboat_dock) -"mNZ" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_m_s) -"mOb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mNY" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/area/almayer/living/starboard_garden) -"mOg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "mOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) -"mOr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" +"mOl" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"mOp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/engineering_workshop) -"mOL" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"mOP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"mOS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/aft_hallway) +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) "mOT" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mOU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"mPf" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/almayer/command/lifeboat) -"mPh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) "mPj" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -52918,368 +36332,394 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"mPX" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +"mPv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"mQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"mPO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"mPQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"mPR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/command/cichallway) -"mQC" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"mQH" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/area/almayer/maint/hull/upper/u_a_p) +"mPU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" }, -/area/almayer/hallways/aft_hallway) -"mQV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"mPV" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"mQf" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"mQW" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"mRl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"mQh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"mRn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"mQr" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"mQu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"mQv" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"mQC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mQG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -18; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"mQN" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = -18; - pixel_y = 6 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"mQY" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/area/almayer/command/airoom) -"mRS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mRo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mRp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"mRr" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"mRw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"mRU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"mRx" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"mRW" = ( -/turf/open/floor/almayer/research/containment/corner1, -/area/almayer/medical/containment/cell/cl) -"mSi" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mRz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mSs" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mRT" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"mSz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mRW" = ( +/turf/open/floor/almayer/research/containment/corner1, +/area/almayer/medical/containment/cell/cl) +"mRX" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) -"mSK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/area/almayer/medical/hydroponics) -"mSP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"mSU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "blue" + pixel_x = -17 }, -/area/almayer/squads/charlie_delta_shared) -"mTb" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"mSi" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 }, -/area/almayer/hallways/aft_hallway) -"mTd" = ( -/obj/structure/machinery/smartfridge/chemistry{ - pixel_x = -3; - pixel_y = -1 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mSn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"mTi" = ( +/area/almayer/maint/hull/upper/u_a_s) +"mSr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mSE" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/almayer/living/offices) -"mTm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"mTn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/starboard_hallway) -"mTp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"mSY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/hydroponics) -"mUa" = ( /obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"mTd" = ( +/obj/structure/machinery/smartfridge/chemistry{ + pixel_x = -3; + pixel_y = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"mUn" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +/area/almayer/medical/medical_science) +"mTh" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mTq" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_p) -"mUq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"mTz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, /area/almayer/living/offices) -"mUx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"mUz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17 +"mTI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mTM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"mUb" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/command/airoom) -"mUC" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"mUe" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/command/airoom) -"mUQ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_s) -"mUZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"mUj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"mVi" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cryo) -"mVE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"mUm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"mUR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mUU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"mVe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mVr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"mVZ" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_x = -27 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"mWe" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"mVu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ dir = 8; - name = "ship-grade camera" - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "perma_lockdown_1"; + name = "\improper Perma Cells Lockdown"; + pixel_x = -8; + pixel_y = -4; + req_access_txt = "3" }, -/area/almayer/shipboard/brig/general_equipment) -"mWs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"mVP" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = -24 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"mVQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"mVX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"mWg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/medical_science) -"mWw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"mWy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"mWj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"mWm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) -"mWD" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"mWv" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/living/bridgebunks) -"mWQ" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mWx" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mWM" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"mWP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) "mWV" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -53287,42 +36727,66 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"mWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +"mWZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mXj" = ( +/turf/closed/wall/almayer, +/area/almayer/living/commandbunks) +"mXk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"mXP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/medical/containment/cell) -"mXa" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mXR" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mXT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_m_s) -"mXj" = ( -/turf/closed/wall/almayer, -/area/almayer/living/commandbunks) -"mXU" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mYe" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"mYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/aft_hallway) -"mYs" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"mYm" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ dir = 4; @@ -53331,103 +36795,99 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"mYw" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"mYX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" +"mYC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hull/upper_hull/u_m_s) -"mYY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"mYU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"mZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/cichallway) -"mZr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mYW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"mZd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/shipboard/port_point_defense) -"mZA" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"mZs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "cl_shutters 3"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mZu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"mZx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/area/almayer/command/corporateliason) -"mZF" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mZI" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"mZJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/upper_engineering/notunnel) -"mZM" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mZY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; - icon_state = "red" + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/area/almayer/shipboard/navigation) -"naf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"naa" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 }, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "nar" = ( /obj/structure/toilet{ dir = 4 @@ -53440,221 +36900,265 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"nav" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"naw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) "naB" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/perma) -"naQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"nby" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"nbF" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"nbP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"naR" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"nbY" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"ncc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/medical/medical_science) -"naV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"nch" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"ncl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/living/gym) -"nbr" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"ncK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ dir = 1 }, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ncO" = ( +/obj/item/toy/deck{ + pixel_y = 12 }, -/area/almayer/command/cic) -"nbB" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, -/area/almayer/living/grunt_rnr) -"ncp" = ( +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ncY" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"ncZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ncE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autodispenser{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"ndx" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"ndJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"ndM" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"nde" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ndq" = ( +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"ndt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ndz" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_m_p) -"ndQ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"ndB" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/port) +"ndL" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"ndV" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 }, -/area/almayer/hull/lower_hull/l_m_p) -"ndZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nef" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"nec" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"nel" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"new" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"nei" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"nex" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"ney" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "neE" = ( /obj/structure/platform_decoration{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"neO" = ( -/obj/structure/machinery/power/apc/almayer{ +"neG" = ( +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"neI" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) +"neL" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"neN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "neS" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"nff" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"nfa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"nfc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"nfo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nfu" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"nfw" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"nfF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"nfG" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nfP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"nfQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"nfp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"nfI" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"nfS" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"ngf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"ngc" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) "ngl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -53665,52 +37169,18 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"ngs" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"ngw" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"ngA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"ngy" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/bravo) -"ngI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53718,19 +37188,33 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"nhi" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer{ - icon_state = "silver" +"ngV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/briefing) -"nho" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"nhc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"nhr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_a_p) +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -53747,312 +37231,233 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nhG" = ( +"nhT" = ( /obj/structure/surface/table/almayer, -/obj/item/newspaper{ - name = "character sheet" - }, -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/toy/dice, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Privacy Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"nig" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"nik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"nim" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/ce_room) -"nis" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"niL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"niR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"niY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"nhY" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"nif" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"nii" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"nin" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/squads/charlie) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"niw" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"niC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"niD" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"niK" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"niP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) "nja" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"njd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"njy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"njD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/south1) -"njJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"njo" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"njq" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = -4; + pixel_y = 2 }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, /area/almayer/living/grunt_rnr) -"njL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"njT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"nka" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +"njW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nkf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nkm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nkx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"nkH" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/midship_hallway) +"nkP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"nkR" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"nld" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/area/almayer/shipboard/starboard_missiles) -"nlB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"nlg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/living/briefing) -"nlH" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"nlt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) -"nlW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/engineering/upper_engineering/starboard) -"nmb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"nlw" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"nmh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"nlz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"nlE" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "silver" + pixel_y = 3 }, -/area/almayer/command/cichallway) -"nmx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"nmD" = ( -/obj/structure/machinery/light{ dir = 1 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"nmK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"nmV" = ( -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"nna" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_f_s) -"nnc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-j2" }, -/area/almayer/hull/lower_hull/l_f_p) -"nne" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"nmi" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, /area/almayer/command/cichallway) -"nnr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"nmn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"nmu" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nmH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nmT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"nmU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"nnh" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"nnk" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -54060,72 +37465,65 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nnz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/firingrange{ - pixel_x = 32; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"nnD" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/stair_clone/upper) -"nnF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"noj" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 +"nnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"nnM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"nnQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/squads/req) -"noo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"nnT" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"nos" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"not" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"now" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"noF" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"noK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/hydroponics) -"noV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"noR" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) "nph" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -54133,294 +37531,263 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"npt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"npA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/medical/containment) -"npB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"npI" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"npS" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nqD" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nqG" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"nqU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"nqV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"nqZ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"nrt" = ( +"nqE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_fore_hallway) +"nqV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/hallways/vehiclehangar) -"nrw" = ( -/obj/structure/bed/chair{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nrk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" }, -/area/almayer/squads/charlie) -"nrz" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"nrH" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"nrJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"nrR" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_p) -"nrN" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nrV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"nrO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"nrW" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"nrX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "nsc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsu" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" +"nsg" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "ares_vault_in"; + name = "aicore" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"nsx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"nsY" = ( -/turf/closed/wall/almayer, -/area/almayer/living/port_emb) -"ntd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clipboard{ - pixel_x = 12 +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"nsC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_x = 12 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"nsG" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/obj/structure/sign/poster/propaganda{ - pixel_y = 34 +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nsW" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"nsY" = ( +/turf/closed/wall/almayer, +/area/almayer/living/port_emb) "ntj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/computerlab) -"ntm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "24;31" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"ntr" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"ntt" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"ntu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ntx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"ntA" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +"ntn" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"ntv" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"ntE" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) "ntI" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"nub" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +"ntP" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nua" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, -/area/almayer/living/starboard_garden) -"nun" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"nug" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "nuA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"nuI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"nuK" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) "nuN" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nuY" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" +"nuO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"nuR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"nuZ" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"nvi" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"nvl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nvm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, -/area/almayer/hull/upper_hull/u_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"nvB" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"nvF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"nvJ" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -54428,18 +37795,17 @@ }, /turf/open/floor/plating, /area/almayer/medical/chemistry) -"nvT" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"nvP" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"nvW" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_med1_req" }, -/area/almayer/squads/delta) +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -54449,211 +37815,254 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"nwu" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer{ - icon_state = "plate" +"nwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"nww" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"nwo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/command/cic) -"nwx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"nwp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/port_missiles) -"nwz" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"nwr" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"nwD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/command/cic) -"nwG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"nwv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"nwL" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"nwH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, -/area/almayer/living/pilotbunks) -"nwU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"nwJ" = ( +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering/port) +"nwO" = ( +/obj/structure/bed/chair/wood/normal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/engineering/upper_engineering/starboard) -"nwW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"nwP" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"nxc" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/shipboard/port_missiles) -"nwY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"nxd" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/squads/req) -"nxq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nxk" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"nxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nxs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"nxK" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"nxy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"nxD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"nxE" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"nxG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"nxI" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 }, -/area/almayer/hallways/aft_hallway) -"nyj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"nxJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nxO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/area/almayer/medical/lower_medical_lobby) -"nyw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ + pixel_y = 8 }, +/turf/open/floor/almayer/emeraldfull, /area/almayer/living/briefing) -"nyz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"nyt" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/area/almayer/hull/lower_hull/l_m_p) -"nyG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"nyO" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nza" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"nyV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/briefing) -"nzv" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"nyZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nzf" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"nzA" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) +"nzq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"nzE" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/area/almayer/hallways/aft_hallway) -"nzI" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"nzJ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"nzN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "nzO" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ @@ -54665,104 +38074,208 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"nBa" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +"nzS" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"nzX" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nzZ" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"nAs" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"nAw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"nBb" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"nAM" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"nAU" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null }, -/area/almayer/shipboard/brig/main_office) -"nBc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nAY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nBd" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"nBq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_f_s) -"nBo" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"nBK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"nBu" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nBL" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"nBO" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"nBT" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/shipboard/brig/perma) -"nBw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/living/briefing) -"nBE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"nCc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/area/almayer/living/pilotbunks) -"nBW" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"nCl" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"nCn" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nCM" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"nDh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"nDj" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Right"; + name = "\improper ARES Operations Shutters" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/squads/bravo) -"nCT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"nDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/command/lifeboat) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -54775,24 +38288,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"nDL" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"nEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nEl" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"nEn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -54801,29 +38328,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"nEs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"nEz" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"nEA" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) +"nEx" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "nEF" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_1"; @@ -54831,123 +38339,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"nEG" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nEH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +"nEP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"nFp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 }, -/obj/structure/machinery/computer/research{ - dir = 4; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"nEJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"nFm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"nFr" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/aft_hallway) -"nFs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"nFI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "nFK" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"nFV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"nFW" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer{ - pixel_y = 0 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/commandbunks) -"nFX" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"nGc" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) +"nFR" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) "nGh" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -54959,508 +38370,551 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"nGi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"nGp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"nGv" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/shipboard/port_point_defense) -"nHg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"nGw" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"nHF" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_s) -"nHJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"nHV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nHa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door_control{ dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"nIj" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/offices) -"nIt" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" }, -/area/almayer/shipboard/starboard_missiles) -"nID" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"nHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"nHu" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"nHC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"nHE" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/obj/item/tool/pen{ - pixel_y = 3 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"nHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/cichallway) -"nIE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nHX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nIe" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/area/almayer/shipboard/port_missiles) -"nIG" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"nIl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"nIp" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"nIs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nIQ" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"nIR" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/basketball) -"nIW" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +"nJc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"nJg" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/living/briefing) -"nJo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"nJs" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"nJm" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"nJq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) "nJu" = ( /obj/item/newspaper, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"nJy" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nJH" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" - }, -/area/almayer/command/airoom) -"nKq" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"nLa" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"nLb" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"nLg" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"nLk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +"nJx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red{ + pixel_x = -4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/item/folder/blue{ + pixel_x = 4 }, -/area/almayer/engineering/upper_engineering/port) -"nLt" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/req) -"nLI" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"nJz" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ pixel_x = 8; pixel_y = 32 }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"nLJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"nJK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"nLK" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"nLZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"nMc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"nJW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"nMe" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"nKd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"nKF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/medical/containment/cell) -"nMp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"nKS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"nKZ" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"nLm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/briefing) -"nMu" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/shipboard/brig/general_equipment) -"nMz" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nLx" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"nLH" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nLL" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_s) -"nMM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"nLM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"nLQ" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"nLS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"nMV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/engineering/upper_engineering) +"nLV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"nMa" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/medical/upper_medical) -"nNt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"nMq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) +"nMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/port_missiles) -"nNv" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"nMI" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"nMO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/cic_hallway) -"nNA" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"nMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) -"nNH" = ( -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "emeraldcorner" - }, -/area/almayer/living/briefing) -"nNQ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/main_office) -"nNV" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"nNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nNe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/area/almayer/squads/charlie_delta_shared) -"nNX" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nNf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/powered) -"nNY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"nNh" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"nNi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nNL" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering) -"nOe" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"nNO" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nNW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"nOG" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"nOi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"nPa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nOA" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"nOS" = ( +/obj/structure/closet/secure_closet/securecom, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"nOX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"nPs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"nPv" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"nPf" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nPJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"nPP" = ( +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "A broken fluorescent tube light."; dir = 8; - pixel_x = -4; - pixel_y = 6 + icon_state = "tube-broken"; + name = "broken light fixture" }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"nPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/medical/containment) -"nPs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"nPx" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"nQi" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"nQs" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"nQC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"nQS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 }, -/area/almayer/living/pilotbunks) -"nPB" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nQV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"nQW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"nQZ" = ( +/obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) +"nRh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/hallways/hangar) -"nPE" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"nRi" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nRo" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 +/obj/structure/machinery/microwave{ + pixel_y = 5 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"nPT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"nRp" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med1_req" }, +/turf/closed/wall/almayer, /area/almayer/squads/req) -"nQg" = ( -/obj/structure/sink{ - pixel_y = 24 +"nRt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"nQv" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/squads/req) -"nQx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"nRq" = ( -/obj/effect/decal/cleanable/blood/oil/streak, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"nRH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"nRB" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"nRD" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"nRG" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"nRL" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/shipboard/brig/cic_hallway) -"nRR" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/cryo{ + pixel_x = -17 }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"nRQ" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) "nRW" = ( /obj/structure/machinery/photocopier{ anchored = 0 @@ -55471,13 +38925,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nSj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +"nSu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/req) +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -55490,40 +38946,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"nSM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" +"nSI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"nSN" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"nSJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nSU" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"nTl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) +"nTq" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -55534,6 +38981,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"nTw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"nTF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -55541,39 +38997,18 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nTZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/living/gym) -"nUa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +"nTR" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 }, +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/east, /area/almayer/squads/req) -"nUd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) +"nUj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -55582,144 +39017,297 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"nUv" = ( +"nUr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nUw" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"nUH" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"nUL" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nUP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nUX" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"nVk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) -"nUy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"nVe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 +/obj/item/ashtray/glass{ + pixel_x = -6 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 }, -/area/almayer/hallways/aft_hallway) -"nVi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"nVu" = ( -/obj/structure/pipes/vents/pump{ +"nVl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"nVo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"nVp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"nVr" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"nVA" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVF" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +"nVT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/living/offices) -"nVS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/soap/syndie, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/lower_hull/l_f_s) -"nVX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"nWl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nWm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/upper_engineering/starboard) -"nWc" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"nWn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"nWt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"nWv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"nWC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"nWI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"nWL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nXm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +"nWP" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 2"; - name = "\improper Courtyard Divider" +/obj/structure/phone_base/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"nWQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) -"nXF" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"nXP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_f_s) -"nXU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"nXc" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - name = "\improper Requisitions Storage" + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"nXn" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"nXu" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/req) -"nYc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"nXD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"nXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nXN" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nYb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "nYd" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -55729,46 +39317,58 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"nYh" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nYv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +"nYi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"nYD" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/medical/operating_room_four) -"nYE" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"nYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/lifeboat) -"nYP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 3"; - name = "\improper Courtyard Divider" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"nYs" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"nYy" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"nYR" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"nZc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nZh" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"nZp" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -55777,190 +39377,258 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZF" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +"nZP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/area/almayer/hull/upper_hull/u_a_s) -"oap" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) -"oas" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 +"nZW" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"oaK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oaW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"oaa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/charlie) -"obo" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med_req" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"oac" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"oby" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oad" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"oai" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oal" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"oao" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oaC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"oaF" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oaI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"oaK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"obC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"oaU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/port_atmos) -"obE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"oaX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/alpha_bravo_shared) -"obG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"obc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"obg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"obD" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"obM" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) "obQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ocf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) -"ocm" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ +"obW" = ( +/obj/structure/surface/rack, +/obj/item/paper{ pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"ocB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 + pixel_y = 3 }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"obZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"ocd" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/obj/structure/machinery/computer/working_joe{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ocg" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"och" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oci" = ( +/obj/structure/phone_base{ dir = 8; - pixel_x = 17 + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"ocj" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"ocs" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"ocv" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/area/almayer/command/airoom) -"oda" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"ocS" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"ocY" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"odj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/area/almayer/hull/upper_hull/u_a_p) -"odb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"odu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"odB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"odD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"odp" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"odr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"ods" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"odA" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"odE" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -55971,219 +39639,303 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"odV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"oed" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"oee" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"odR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"odX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"oec" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/command/lifeboat) -"oef" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/squads/alpha_bravo_shared) -"oeo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"oeB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +"oex" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"oeH" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"oeQ" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/processing) -"oeL" = ( -/obj/structure/machinery/vending/coffee{ +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"oeX" = ( +/obj/structure/filingcabinet/filingcabinet{ density = 0; - pixel_y = 18 + layer = 2.9; + pixel_x = 7; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_a_p) -"oeM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/computerlab) -"ofs" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"off" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/area/almayer/hull/upper_hull/u_m_p) -"ofH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"ofm" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "orange" + pixel_x = -14; + pixel_y = 13 }, -/area/almayer/engineering/upper_engineering/port) -"ofK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ofq" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"ofB" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"ofF" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible"; + pixel_x = -3; + pixel_y = 9 }, -/area/almayer/engineering/upper_engineering/starboard) -"ofZ" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/helmetgarb/rosary{ + pixel_x = -4; + pixel_y = 5 }, -/area/almayer/hull/upper_hull/u_f_p) -"ohj" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 1 }, -/area/almayer/squads/charlie) -"ohl" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ofI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ofY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"ogt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"ogB" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/starboard_hallway) +"ogF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"ogG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"ogH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/req) -"ohA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ogL" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"ogO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"ogP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/area/almayer/shipboard/weapon_room) -"ohB" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"ohE" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"ogR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"ogS" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Corridor"; + dir = 8; + pixel_y = 2 }, -/area/almayer/hallways/hangar) -"ohH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"ohc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"ohw" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"ohx" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) "ohJ" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"ohK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) "ohL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"oih" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"ohM" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) -"oir" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ohP" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ dir = 8 }, -/obj/structure/machinery/power/apc/almayer/hardened{ - dir = 4 - }, /turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oit" = ( -/obj/effect/landmark/railgun_computer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" +/area/almayer/shipboard/brig/cells) +"ohW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"oij" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oiq" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oiu" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"oiz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/shipboard/port_missiles) -"oiL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"oiA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "oiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -56193,165 +39945,187 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"oiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +"oiT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/area/almayer/medical/medical_science) -"ojF" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, -/area/almayer/squads/charlie) -"ojR" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ojf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 + dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"ojk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/port_hallway) -"ojZ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"oka" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/charlie) -"okd" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ojo" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"ojr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"okg" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"oju" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"ojw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/lifeboat) -"oks" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 +/obj/structure/pipes/unary/freezer{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"okz" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ojE" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/engineering/engine_core) -"okB" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"ojI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"ojQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/living/briefing) -"okD" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"ojU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ojZ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"okl" = ( +/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"okn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"okp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"okG" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"okO" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/space) -"okM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"okP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"okR" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"ole" = ( +/obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/execution) -"olk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"olA" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"olD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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" }, -/area/almayer/engineering/upper_engineering/port) -"olv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"olG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"olI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"olL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -56371,65 +40145,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) +"olN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) "olO" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"olU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +"olP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/cichallway) -"omb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"olY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"omk" = ( +/obj/structure/machinery/prop/almayer/computer{ dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"omq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/command/cichallway) -"omo" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "omt" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"omy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"omJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"onb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"one" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Security Vault"; + pixel_x = -24; + pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -32; + pixel_y = 40; + req_one_access_txt = "90;91;92" }, -/area/almayer/shipboard/brig/cic_hallway) -"omP" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"onn" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/hallways/hangar) -"omW" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"onu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"onv" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -56441,27 +40248,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"onQ" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"onY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) +"onO" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"oof" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) "oog" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56475,91 +40269,126 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"oon" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) "oos" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"oou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 +"ooA" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"ooD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"ooR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"ooH" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - name = "\improper Perma Cells" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) +"ooL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"ooO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ooT" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"ooX" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/area/almayer/shipboard/brig/perma) -"opj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/squads/req) -"opC" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"opb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"opq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"opy" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"opB" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) "opD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"opJ" = ( -/obj/docking_port/stationary/emergency_response/external/port4, -/turf/open/space/basic, -/area/space) -"opN" = ( -/obj/structure/closet/secure_closet/brig, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"opE" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/storage/firstaid/fire{ + pixel_x = -6 }, -/area/almayer/shipboard/brig/processing) -"oqu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"opH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"opJ" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"opL" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"oqg" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) "oqv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -56569,32 +40398,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"oqw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"oqD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 +"oqE" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -56609,145 +40421,101 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"oqZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"ora" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"orm" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_p) -"orv" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"orH" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, -/area/almayer/command/lifeboat) -"osc" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +"oqY" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"osx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"org" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/hangar) -"osy" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"orr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/platform_decoration, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oru" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/area/almayer/command/airoom) -"osz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"orF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; + dir = 2; id = "CIC Lockdown"; + layer = 2.2; name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) -"osA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"orI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"orO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"orV" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/area/almayer/squads/bravo) -"osE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"osc" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_a_p) -"osJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"osi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oss" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"osC" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" }, -/obj/item/paper, -/obj/item/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"osF" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"osH" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -56756,513 +40524,609 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"otu" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_w, -/area/almayer/medical/containment/cell) -"otK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +"ote" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"otl" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/living/pilotbunks) -"otX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/shipboard/brig/medical) +"otq" = ( +/obj/structure/surface/rack{ + desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 }, -/area/almayer/hull/lower_hull/l_a_p) -"oug" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" }, -/area/almayer/command/cic) -"ouo" = ( -/obj/structure/sign/safety/storage{ +/obj/item/prop{ + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.78; + name = "circuit board"; pixel_x = 8; - pixel_y = 32 + pixel_y = 10 + }, +/obj/item/prop{ + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.79; + name = "circuit board"; + pixel_x = 8; + pixel_y = 7 }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"otu" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_w, +/area/almayer/medical/containment/cell) +"otx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"our" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/area/almayer/shipboard/brig/starboard_hallway) +"otH" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 }, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 9 }, -/area/almayer/command/airoom) -"ouB" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ouQ" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 }, -/area/almayer/lifeboat_pumps/south1) -"ouV" = ( -/obj/structure/sign/safety/cryo{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"otJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"otL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"otR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"oub" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 1; - pixel_y = 26 + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/shipboard/brig/main_office) -"ouW" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"ouk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ouy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/area/almayer/command/cichallway) -"ovi" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"ouB" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ouI" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ouP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"ovn" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"ouT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"ovc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"ovp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"ovd" = ( /obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ovg" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18"; - pixel_y = 7 + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"ovH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"ovF" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"ovI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"ovK" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"ovL" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"ovM" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ovZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_m_p) -"ovG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"owf" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"owq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"owA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/medical/containment/cell) -"ovP" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"owL" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"owT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"owg" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"oxe" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"owH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"oxh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"oxl" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower) +"oxq" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/area/almayer/hallways/starboard_hallway) -"owW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/sea_office) -"oxi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"oxn" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"oxp" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oxU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oyo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +"oxw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"oyw" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"oxy" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 5"; + pixel_x = -24 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"oyy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"oxG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oxL" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"oxT" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"oxU" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oyE" = ( -/obj/effect/landmark/start/intel, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 29; - serial_number = 12 +/area/almayer/command/lifeboat) +"oxX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"oyG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + dir = 1; + name = "\improper Warden's Office" }, -/area/almayer/hull/lower_hull/l_a_p) -"ozi" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"oyh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/engine_core) -"ozq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"oyD" = ( +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_y = 32; + req_one_access_txt = "24;31" }, -/area/almayer/squads/alpha) -"ozr" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_y = 24; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"oza" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"ozj" = ( +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"ozp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_a_p) -"ozz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/engineering/upper_engineering/starboard) -"ozN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"ozU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"oAh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"oAx" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/starboard) -"ozT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"oAC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oAF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; + icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"oAd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 }, -/area/almayer/engineering/lower_engineering) -"oAB" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"oAW" = ( /obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, -/area/almayer/living/briefing) -"oAO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) -"oBq" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oBd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/cells) -"oBA" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oBz" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"oBB" = ( +/obj/structure/stairs/perspective{ dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"oBJ" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) -"oCf" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/engineering/upper_engineering/port) -"oCi" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oBG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/navigation) -"oCL" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"oBH" = ( +/obj/structure/sign/safety/refridgeration{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_f_s) -"oCX" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oBI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"oCl" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/shipboard/brig/cryo) -"oDf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oCA" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"oDi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"oDv" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/living/gym) -"oDx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"oDE" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 +/area/almayer/hallways/lower/starboard_umbilical) +"oCV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) +"oCW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"oDm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"oDn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"oDo" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"oDL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"oDq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"oDt" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/medical_science) -"oDO" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"oDP" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/lifeboat_pumps/south2) -"oDR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/medical/medical_science) -"oDY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"oDW" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"oDZ" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/lower_medical_lobby) -"oEf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +"oEe" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"oEh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "oEo" = ( /obj/effect/landmark/start/marine/medic/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"oEv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) "oEw" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -57287,46 +41151,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"oER" = ( -/obj/structure/machinery/light{ +"oEH" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) +"oFj" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"oES" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"oEX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"oFr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oFu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; dir = 1; - icon_state = "red" + name = "\improper Brig" }, -/area/almayer/living/port_emb) -"oFG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"oFz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"oFE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null }, -/area/almayer/hull/lower_hull/l_f_p) -"oFM" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "oFV" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -57334,132 +41197,189 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"oGx" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 +"oGl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"oGq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"oGu" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/living/synthcloset) -"oGy" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; name = "ship-grade camera" }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/living/starboard_garden) +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) "oGC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oGP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"oGH" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"oGI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/living/port_emb) -"oHc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"oGL" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"oGV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oHg" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oHm" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oHp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) +"oHI" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" }, -/area/almayer/squads/charlie) -"oHl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"oHJ" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oHO" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"oHx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/laundry) -"oIc" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/shipboard/brig/perma) -"oIn" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_y = 3 + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oHP" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"oHS" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/hull/lower_hull/l_m_s) -"oIr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oHW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_x = 1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"oIi" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"oIk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"oIq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + closeOtherId = "brigmed"; + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"oIu" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"oIY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"oIR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"oJa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/airoom) +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"oJj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "oJp" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -57471,189 +41391,170 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"oJR" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"oKb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"oKv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"oKx" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"oLd" = ( -/obj/structure/platform{ +"oJO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"oJW" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"oLi" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"oLm" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 4; - pixel_y = -8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"oKd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"oKe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"oKf" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oKi" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/command/airoom) -"oLv" = ( -/obj/structure/sign/safety/medical{ +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ pixel_x = 8; - pixel_y = 32 + pixel_y = -2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oLw" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"oKw" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oKy" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"oKF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"oLF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"oKK" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oKS" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "Brig"; +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"oKZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oLa" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"oLf" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) -"oLT" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oLU" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"oLj" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "sterile_green_side" + icon_state = "pipe-c" }, -/area/almayer/medical/hydroponics) -"oMd" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"oMe" = ( -/obj/structure/machinery/light{ - dir = 8 +"oLu" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"oMi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oLS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"oMb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"oMo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"oMq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) -"oMs" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oMw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/powered/agent) -"oMH" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"oMz" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oML" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "oMQ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oNb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"oNi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/ce_room) +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) "oNj" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -57662,224 +41563,292 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"oNp" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"oNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/medical/hydroponics) -"oNJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oNn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"oON" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"oNv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, +/obj/structure/machinery/light, /turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"oOO" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"oPf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"oPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ +/area/almayer/command/corporateliaison) +"oNM" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "red" + pixel_y = 3 }, -/area/almayer/shipboard/brig/main_office) -"oPy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) -"oPD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"oNU" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"oPE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/command/cic) -"oPI" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_s) -"oQj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oOo" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"oOK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"oON" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"oOQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oOT" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"oOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/weapons/m39{ + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/largecrate/supply/weapons/m41a{ + layer = 3.1; + pixel_x = 6; + pixel_y = 17 }, -/area/almayer/hallways/starboard_hallway) -"oQo" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"oOZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"oQs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) +"oPc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"oPf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/command/cichallway) -"oQH" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oPn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/area/almayer/living/briefing) -"oQM" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"oPr" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"oPF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"oPO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"oPR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"oPW" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"oQb" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"oQg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/area/almayer/living/auxiliary_officer_office) -"oRj" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"oQq" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"oQu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"oQw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"oRe" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"oRs" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, /obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/stairs{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"oRk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oRt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oRw" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 }, -/area/almayer/shipboard/brig/processing) -"oRJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/barricade/handrail{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - pixel_y = 2 + name = "ship-grade camera" }, -/obj/structure/surface/table/almayer{ - layer = 3 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"oRI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/area/almayer/hallways/hangar) -"oRO" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oRS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/gym) -"oRV" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"oSa" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"oSd" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/command/airoom) -"oRZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oSh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"oSo" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"oSp" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) +/area/almayer/hallways/upper/midship_hallway) "oSq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -57888,240 +41857,472 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"oSw" = ( +"oSt" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"oSz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"oSH" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oSI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/area/almayer/command/cichallway) -"oSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" }, -/area/almayer/engineering/upper_engineering/port) -"oSL" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"oSJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oTc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"oTo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"oTs" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"oTv" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"oTy" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oTI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/alpha_bravo_shared) -"oTe" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"oTX" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"oUd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oUe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"oUo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/req) -"oTz" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"oUu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) -"oTA" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oUz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"oUE" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"oUJ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/squads/alpha) -"oUG" = ( -/obj/structure/machinery/light{ +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oUS" = ( +/obj/structure/bed/chair/bolted{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"oVe" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" }, -/area/almayer/command/cichallway) -"oVP" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"oVg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"oVj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"oVk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"oWf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 }, -/area/almayer/medical/lower_medical_lobby) -"oWg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oVI" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"oWb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oWo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"oWz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oWy" = ( +/obj/structure/sign/safety/three{ + pixel_x = -17 }, -/area/almayer/living/starboard_garden) -"oWI" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell 3" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"oWC" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"oWK" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oWW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/cryo) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) "oXb" = ( /obj/effect/landmark/start/marine/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"oXd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"oXk" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"oXJ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +"oXq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/upper_engineering/port) -"oXY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"oXz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"oXA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"oXL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"oYb" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oXN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"oXQ" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SynthBay"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oXR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oXS" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"oYi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"oYr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 }, -/area/almayer/hull/lower_hull/l_m_p) -"oYp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"oYG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_fore_hallway) +"oYN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oYO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/living/offices/flight) -"oZd" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"oYR" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oYX" = ( +/obj/item/clothing/mask/rebreather/scarf, /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oZm" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oZn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"oZr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oZv" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"oZC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"oZN" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"oZT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_s) -"oZp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"paK" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"paN" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"paR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"paV" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"paZ" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/living/offices/flight) -"oZV" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"pbn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"pbo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, /obj/item/roller, @@ -58133,645 +42334,769 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"paa" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"paq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"paI" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"pcc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 20 }, -/area/almayer/engineering/upper_engineering/starboard) -"paL" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 19 }, -/area/almayer/command/cic) -"pbb" = ( -/obj/effect/landmark/start/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pbh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/effect/landmark/map_item{ + pixel_x = -1; + pixel_y = 3 }, -/area/almayer/shipboard/brig/main_office) -"pbl" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa{ - pixel_x = 5 +/obj/item/reagent_container/spray/cleaner{ + layer = 3.04; + pixel_x = 5; + pixel_y = 22 }, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, /turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"pbp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"pbs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/living/commandbunks) +"pci" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" }, -/area/almayer/command/cic) -"pbC" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"pbV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"pct" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/cic) -"pbW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/cichallway) -"pch" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"pcN" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"pcj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"pcV" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"pcZ" = ( +/obj/structure/stairs{ dir = 1; - icon_state = "silvercorner" + icon_state = "ramptop" }, -/area/almayer/shipboard/brig/cic_hallway) -"pcl" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/area/almayer/hallways/hangar) -"pcv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pde" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"pdl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/upper_engineering/port) -"pcD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"pdm" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pdo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/upper/mess) +"pdN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_p) -"pcE" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"pdP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"pdR" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pdT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/living/gym) -"pcG" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pen" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"peL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/living/pilotbunks) -"pcO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"peN" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"peY" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"pcQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"pfa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"pfi" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"pfn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"pfq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 }, -/area/almayer/shipboard/brig/main_office) -"pda" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"pfC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hull/lower_hull/l_f_s) -"pdk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_f_p) -"pdt" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/starboard_hallway) +"pfJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"pfM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"pdG" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Chief MP's Bedroom" +/obj/structure/target{ + name = "punching bag" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"pfY" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pgc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 }, -/area/almayer/shipboard/brig/chief_mp_office) -"peb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SEA Office Shutters"; - name = "SEA Office Shutters"; - pixel_y = 12 +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"pge" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/phone_base/rotary{ - name = "Senior Enlisted Advisor Office Telephone"; - phone_category = "Almayer"; - phone_id = "Senior Enlisted Advisor's Office"; - pixel_x = -3 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"pef" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"pfa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"pgk" = ( +/turf/closed/wall/almayer/aicore/reinforced, +/area/almayer/command/airoom) +"pgo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"pgy" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"pfc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ +/area/almayer/command/corporateliaison) +"pgB" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"pgD" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south1) +"pgQ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"pfe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = 5 - }, -/obj/item/facepaint/black{ - pixel_x = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + name = "\improper Combat Information Center" }, -/area/almayer/living/briefing) -"pfh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"pgU" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"phc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/engineering/lower_engineering) -"pfp" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"phg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/stair_clone) -"pfA" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"phk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"phn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/upper_engineering/port) -"pfH" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"pfM" = ( -/obj/structure/machinery/light{ - dir = 4 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/target{ - name = "punching bag" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"pho" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"pfT" = ( -/obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_x = 17 }, +/turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"pgt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"pgD" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south1) -"pgH" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 - }, -/obj/structure/platform{ +"phu" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/engineering/upper_engineering) +"phB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/airoom) -"pgM" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"phJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"pha" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/living/briefing) -"piO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"piX" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"pjb" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/hallways/upper/port) +"phV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"pib" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"pio" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"pis" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"piF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"piH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"piW" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) +"pja" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "pje" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pji" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/stern_hallway) -"pjw" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"pjF" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"pjG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 +"pjg" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/squads/req) -"pjM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"pjj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pjy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"pjE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"pjO" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "green" + health = 80 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"pjS" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"pjT" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"pkY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pld" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"plg" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"pjP" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"plM" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"pky" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"plT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"plW" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"pma" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"pmd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pmm" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"pmG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 + }, +/obj/structure/machinery/computer/card{ + pixel_x = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pmM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/port_hallway) -"pkz" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pmN" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/alpha_bravo_shared) -"plj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pnk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pnB" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"pnP" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "silver" + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) -"plE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"pnV" = ( +/obj/structure/machinery/brig_cell/cell_5{ + pixel_x = 32; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"poj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/area/almayer/engineering/engine_core) -"plI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"pol" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext"; + name = "\improper Research Window Shutter" }, -/area/almayer/shipboard/brig/surgery) -"plZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"pow" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - dir = 2; - name = "Brig"; - req_access = null; - req_one_access_txt = "1;3" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"poN" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/shipboard/brig/main_office) -"pmk" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; +/obj/structure/sign/safety/hazard{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"poY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"pmq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"ppb" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/area/almayer/squads/delta) -"pmv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1 +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"ppe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"ppf" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) -"pmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"ppl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"pps" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 }, -/area/almayer/living/briefing) -"pmV" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - desc = "A powerful server tower housing various AI functions."; - name = "server tower"; - pixel_y = 16 +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ppv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/command/airoom) -"pno" = ( -/obj/structure/sign/safety/escapepod{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ppz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"pnC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"pop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"poq" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"poR" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"poZ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/area/almayer/hallways/upper/midship_hallway) +"ppD" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"ppF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"ppM" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/obj/structure/bed/chair/bolted{ - dir = 4 +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"ppN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"ppP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/perma) -"ppc" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"ppQ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_a_p) -"ppe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pqa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"pqc" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"pqi" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" + dir = 9 }, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) "pql" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"pqD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +"pqo" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pqt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_medbay) +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pqy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "pqF" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic, @@ -58781,42 +43106,79 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"pqK" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"pqQ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"pqG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"pqM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "pqX" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"prx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"pqY" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 }, -/area/almayer/medical/medical_science) -"prE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"prc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"prd" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"pre" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"prv" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"prA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "prW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -58832,98 +43194,94 @@ /obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"psa" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +"pse" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"psr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/bridgebunks) -"psm" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_a_s) -"psp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"psz" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 }, -/area/almayer/engineering/engine_core) -"psy" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/chief_mp_office) +"psE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + layer = 3.03; + pixel_x = 4; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.02; + pixel_x = -5; + pixel_y = 3 }, -/area/almayer/hull/lower_hull/l_f_s) -"psK" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ptb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"psO" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "ptd" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pth" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/effect/landmark/map_item, -/obj/structure/pipes/vents/scrubber{ +"ptf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"ptg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 }, -/area/almayer/medical/upper_medical) -"ptj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/squads/charlie_delta_shared) -"pts" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"ptm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ptu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -58931,272 +43289,552 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"ptE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"ptF" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"ptG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) +"ptN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ptQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ptX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pua" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"puc" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"pud" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"pue" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"puf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"pug" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"puh" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"pur" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 +"pus" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"puC" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"puI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"puO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"puV" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"puY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"pvd" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"pvh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"pvk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pvl" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pvs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pvu" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pvw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pvI" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"pvL" = ( +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/cryo_cells) -"put" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"pvV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"pvW" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/engineering/engineering_workshop) -"puI" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"pwf" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"puK" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"puO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"puR" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"pwj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"pvh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = -9 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"pvt" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" }, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"pwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ dir = 1; - name = "ship-grade camera" + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"pvJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pwn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pwq" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"pwu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/squads/charlie) -"pvP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pwL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/starboard_missiles) -"pwt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/plating, +/area/almayer/maint/upper/u_a_s) +"pwN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 }, -/area/almayer/shipboard/brig/processing) -"pwK" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/computer/almayer_control{ dir = 4; - icon_state = "pipe-c" + layer = 2.99; + pixel_y = 26 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"pxj" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pwV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"pwW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/command/combat_correspondent) -"pxo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"pxa" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/medical/medical_science) -"pxD" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"pxc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"pxd" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"pxk" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pxn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"pxs" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"pxz" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) "pxG" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"pxJ" = ( -/obj/structure/machinery/light{ - dir = 4 +"pxK" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"pxN" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"pxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/lifeboat_pumps/south2) -"pyc" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/living/port_emb) -"pyi" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"pxW" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/tool/pen, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"pyg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) "pyj" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"pyl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"pyk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"pyt" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"pyu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"pyG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) +"pyY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"pza" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"pzn" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pzt" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"pyy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"pyC" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 + icon_state = "pipe-c" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pzE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"pzK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hallways/hangar) -"pyL" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) -"pzc" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair{ - dir = 1 +"pzN" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pzW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"pzG" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/starboard_point_defense) -"pzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pAh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/lifeboat) -"pzO" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pAi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"pzQ" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 }, -/area/almayer/hull/upper_hull/u_m_p) -"pzV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 }, -/area/almayer/living/briefing) -"pzZ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pAk" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"pAs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"pAt" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "pAA" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -59204,470 +43842,521 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pAR" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"pAE" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"pAX" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/area/almayer/hallways/starboard_umbilical) -"pBn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"pAZ" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"pBb" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"pBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"pBW" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"pCi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_f_s) -"pCr" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pBj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/squads/req) -"pCD" = ( -/obj/structure/pipes/standard/cap/hidden{ +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"pBz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pBJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, -/area/almayer/hallways/stern_hallway) -"pDh" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"pBS" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pCd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pCh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"pCk" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"pCm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"pCz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/engineering/upper_engineering/starboard) -"pDm" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"pCF" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"pCO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"pCT" = ( +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ + dir = 4; + plane = -6 }, -/area/almayer/hull/upper_hull/u_m_s) -"pDo" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pDi" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"pDq" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, -/area/almayer/shipboard/starboard_point_defense) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"pDt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"pDB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +"pDF" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"pDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"pDS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"pEe" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"pEf" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/squads/charlie) -"pEl" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pEj" = ( /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 1; icon_state = "pipe-c" }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"pEn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pEz" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 }, -/area/almayer/living/grunt_rnr) -"pEy" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"pEJ" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"pEY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"pFa" = ( +"pEK" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"pFg" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 8; - id = "Perma 1"; - name = "\improper isolation shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"pFA" = ( -/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"pFM" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"pFP" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"pEM" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"pGG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door_control{ - id = "Execution Shutters"; - name = "Privacy Shutters"; - pixel_y = 12; - req_access_txt = "3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"pEO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"pGK" = ( +/area/almayer/maint/hull/lower/l_m_s) +"pEP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"pGM" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"pGN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 +/area/almayer/shipboard/brig/cells) +"pFs" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"pFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"pFz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pFS" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"pGx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pGL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"pGT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"pGU" = ( +/obj/structure/stairs{ + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"pGY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"pHd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"pGP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"pHe" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"pGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pHk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) +/area/almayer/hallways/upper/aft_hallway) +"pHn" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) +"pHy" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) "pHA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pHJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/structure/barricade/handrail/medical{ + dir = 4 }, -/area/almayer/living/basketball) -"pIf" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"pHY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"pIk" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; +/obj/structure/sign/safety/restrictedarea{ pixel_y = 32 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_a_s) -"pIH" = ( -/obj/structure/machinery/door_control{ - id = "perma_exit"; - name = "\improper Exit Shutters"; - pixel_y = -22; - req_access_txt = "3" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pId" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) +"pIq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pIy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/shipboard/brig/perma) -"pIU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"pIB" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"pIQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 }, -/area/almayer/medical/lockerroom) +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) "pIV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"pJc" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "pJg" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pJi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"pJn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 +"pJo" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"pJs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 }, -/area/almayer/hull/upper_hull/u_m_s) -"pJD" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"pKd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"pKE" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/item/tool/soap, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pKF" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/port_emb) -"pJE" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/u_a_s) +"pKJ" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"pKK" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"pKM" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"pJJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"pJR" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -97; - vector_y = 65 - }, -/obj/structure/stairs{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pKP" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer/no_build{ +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"pKU" = ( +/obj/structure/bed/chair{ dir = 4 }, -/area/almayer/command/airoom) -"pJW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"pLh" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/almayer/hull/lower_hull/l_f_s) -"pKZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"pLG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"pLM" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -59682,31 +44371,36 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"pLW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/pilotbunks) -"pLZ" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"pMj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"pLS" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"pMi" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pMt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, -/area/almayer/living/captain_mess) -"pMp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"pMw" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"pMH" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/area/almayer/medical/morgue) +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -59716,483 +44410,602 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"pML" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "blue" +"pMQ" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"pMS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/port_emb) -"pNa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"pMZ" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/cichallway) -"pNp" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pNo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hull/lower_hull/l_f_s) -"pNG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"pNq" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"pNK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pNC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"pND" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/living/auxiliary_officer_office) -"pNM" = ( -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pNL" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 }, -/area/almayer/lifeboat_pumps/south1) -"pNP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 }, -/obj/item/reagent_container/food/snacks/cheesewedge{ +/obj/item/spacecash/c500{ pixel_x = -10; - pixel_y = 7 + pixel_y = 8 }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"pNW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 }, -/area/almayer/medical/hydroponics) -"pNQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pNZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"pOf" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"pOB" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"pOD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"pOl" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"pOp" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "mono" + dir = 4 }, -/area/almayer/living/pilotbunks) -"pON" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/cic) -"pOY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"pOw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pOE" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/living/grunt_rnr) -"pPv" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 }, -/area/almayer/living/captain_mess) -"pPz" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pOF" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" }, -/area/almayer/hull/upper_hull/u_a_s) -"pPF" = ( -/obj/structure/machinery/power/apc/almayer/hardened, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pOG" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/lifeboat_pumps/south2) -"pPM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"pOH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/securestorage) -"pPN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 }, -/area/almayer/shipboard/port_missiles) -"pPV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"pOS" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"pPb" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"pPu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"pPw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door_control{ - id = "Alpha_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"pPA" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"pPB" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"pPK" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"pPP" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/port_emb) -"pQq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"pPQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"pQj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/engineering/engine_core) -"pQu" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"pQv" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"pQw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "pQy" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"pQF" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"pQJ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1 }, -/area/almayer/squads/charlie_delta_shared) -"pQG" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "pQN" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pQP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pRa" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"pRb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"pRi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"pRp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" }, -/area/almayer/medical/medical_science) -"pQV" = ( -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/living/pilotbunks) -"pQY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"pRs" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"pRG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"pRR" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/area/almayer/living/offices) -"pRn" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pRU" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/area/almayer/medical/medical_science) -"pRy" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pRY" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/area/almayer/medical/containment/cell/cl) -"pRL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/command/lifeboat) +"pSl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/aft_hallway) -"pRO" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"pSn" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/surface/rack{ + layer = 2.5 }, -/area/almayer/shipboard/brig/cic_hallway) -"pRT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"pSr" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - name = "\improper Tool Closet" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/port_emb) -"pRX" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/hydroponics) -"pSL" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"pSC" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"pSO" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"pSP" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pSV" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/hallways/aft_hallway) -"pSU" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/command/computerlab) -"pTc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"pTj" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pSX" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/upper/u_a_p) +"pTa" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"pTf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pTi" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/command/computerlab) -"pTt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES JoeCryo"; - name = "\improper ARES Core Shutters"; - plane = -7 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"pTl" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pTm" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" }, -/area/almayer/command/airoom) -"pTT" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) +"pTo" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 }, -/area/almayer/hull/upper_hull/u_a_p) -"pUd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pTu" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/command/computerlab) -"pUe" = ( -/obj/structure/machinery/power/apc/almayer/hardened, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"pTv" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"pTx" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"pTC" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/lifeboat_pumps/south1) -"pUf" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pTG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"pTP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pTX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/delta) -"pUi" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"pUl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"pUp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 - }, -/obj/structure/barricade/handrail{ - dir = 8 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/squads/req) -"pUA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"pTZ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" }, -/obj/structure/window/reinforced/ultra{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"pUs" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pUC" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"pUL" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"pUR" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"pUV" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/living/briefing) -"pUI" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" }, -/area/almayer/command/computerlab) -"pUJ" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"pUY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pUX" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"pVt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pVw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"pVu" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"pVx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"pVy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) "pVA" = ( /obj/item/trash/cigbutt/ucigbutt{ pixel_x = 2; @@ -60209,395 +45022,310 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"pVB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ +"pVE" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"pVU" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"pVW" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 }, -/area/almayer/living/briefing) -"pVZ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop) -"pWr" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"pWA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"pWG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"pWN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"pXj" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"pXl" = ( +"pWe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"pXn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"pXx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"pWm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pWP" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"pXe" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/area/almayer/living/pilotbunks) -"pXQ" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pXf" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"pXp" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_s) -"pXV" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pXt" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"pXA" = ( +/obj/structure/machinery/brig_cell/cell_3{ + pixel_x = 32; + pixel_y = -32 }, -/area/almayer/squads/req) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"pXB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"pXP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) "pXZ" = ( /obj/effect/landmark/start/marine/spec/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"pYi" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"pYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"pYu" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pYw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/uscm{ - pixel_y = 7; - pixel_x = -17 - }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = -1 - }, -/obj/item/tool/pen/clicky{ - pixel_y = 5; - pixel_x = -13 - }, -/obj/structure/machinery/door_control{ - id = "CO-Office"; - name = "Door Control"; - normaldoorcontrol = 1; - req_access_txt = "31"; - pixel_y = 7 - }, -/obj/item/ashtray/bronze{ - pixel_y = 1; - pixel_x = 12 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"pYF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"pYX" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/shipboard/brig/cic_hallway) -"pZo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"pZK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering/port) -"pZS" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/area/almayer/squads/charlie) +"pYq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/area/almayer/shipboard/brig/cic_hallway) -"pZV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"pYr" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"pYu" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/sign/safety/security{ + pixel_x = -16 }, -/area/almayer/shipboard/brig/perma) -"qam" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"pYE" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"pYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer{ +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"pYK" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 8; - icon_state = "sterile_green_side" + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/area/almayer/medical/medical_science) -"qau" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"pYV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pZr" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pZt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/landmark/start/warrant, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"pZA" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/brig/cryo) -"qaD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"pZD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"qaJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"qaV" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"qaW" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"pZI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pZN" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/living/briefing) -"qaZ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"qbd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"pZP" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"pZR" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"qac" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hull/lower_hull/l_f_s) -"qbh" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"qad" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qaq" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"qas" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/combat_correspondent) -"qbt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"qaP" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"qaR" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/shipboard/brig/surgery) -"qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"qby" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"qba" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"qbi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 }, -/area/almayer/living/briefing) -"qbO" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"qbp" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"qbZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qbv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"qbx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/engineering/upper_engineering/port) -"qce" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"qbL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"qbP" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"qbQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) "qck" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/cameras/wooden_tv/almayer{ @@ -60605,159 +45333,173 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qcl" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"qcy" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"qdk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +"qcp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qcq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"qcx" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qcz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qcG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"qdv" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qcM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"qcQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"qcU" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qdb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"qdu" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/clothing/head/beret/royal_marine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qdD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/port_emb) -"qdz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"qdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"qdA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"qdJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "qdQ" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qee" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"qej" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qdU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/laundry) -"qep" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qdX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/medical/lower_medical_medbay) -"qer" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"qef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"qet" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"qev" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"qex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/charlie) -"qeF" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"qez" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/lifeboat) -"qeK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"qeJ" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qeL" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qeP" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"qeR" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"qeX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -60771,95 +45513,73 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"qfh" = ( -/obj/structure/bed/chair{ - dir = 8 +"qfm" = ( +/obj/item/stack/tile/carpet{ + amount = 20 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qfu" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 }, -/area/almayer/squads/alpha_bravo_shared) -"qfy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"qfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"qfB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/medical_science) -"qfA" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" }, -/area/almayer/command/cichallway) -"qfR" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"qfH" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/almayer/shipboard/brig/main_office) -"qga" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qfO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"qfW" = ( +/obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/starboard_garden) -"qgw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"qgG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"qgH" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"qgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"qgz" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qgC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"qgE" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer, -/area/almayer/command/combat_correspondent) +/area/almayer/hallways/lower/starboard_midship_hallway) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -60872,209 +45592,367 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"qhb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +"qgP" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"qgS" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qhe" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 25 }, -/area/almayer/lifeboat_pumps/south1) -"qhc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 25 }, -/area/almayer/hallways/stern_hallway) -"qhx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"qhh" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qhi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qhp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qhw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"qhy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"qhz" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"qhJ" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"qhN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qhP" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qhV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"qhX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"qid" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"qif" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qik" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"qiy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"qiQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qiU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/upper_medical) -"qhB" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"qhN" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qiW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"qiX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"qhU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"qjk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) +"qjl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/bravo) -"qic" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"qjn" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) +"qjp" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"qju" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qjx" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/hull/lower_hull) -"qih" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qjG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/living/tankerbunks) -"qim" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"qin" = ( -/obj/structure/sign/poster/safety{ - pixel_x = 27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qit" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qjI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"qjJ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/command/airoom) -"qiy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"qjK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"qiI" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qjR" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qjT" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/area/almayer/hull/upper_hull/u_a_p) -"qjz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qjX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/bridgebunks) -"qjF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/command/computerlab) -"qjN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"qkh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"qkb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"qkj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"qkk" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"qkp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"qkI" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"qkJ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/area/almayer/command/lifeboat) -"qkn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"qkP" = ( -/obj/item/frame/light_fixture{ - anchored = 1; - desc = "A broken fluorescent tube light."; - dir = 8; - icon_state = "tube-broken"; - name = "broken light fixture" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"qkM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"qkV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"qlb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"qlc" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/area/almayer/living/port_emb) -"qld" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"qle" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"qli" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"qlm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"qlr" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"qly" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -61084,49 +45962,26 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"qmk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"qlA" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/facepaint/green, -/turf/open/floor/almayer{ dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"qmr" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_m_s) -"qmt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"qlD" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/aft_hallway) -"qmy" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) +"qlG" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ dir = 1; @@ -61156,73 +46011,65 @@ pixel_y = 4; req_access_txt = "28" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/medical_science) -"qmC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qlR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/main_office) -"qmD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qlZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) +"qmg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 19 }, -/area/almayer/medical/medical_science) -"qmE" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + layer = 2.99; + name = "brig cameras console"; + pixel_y = 5 }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_x = 24; - pixel_y = 6; - req_access_txt = "3" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qmw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"qmK" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "red" + health = 80 }, -/area/almayer/shipboard/brig/perma) -"qmL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"qmX" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) "qnd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -61238,37 +46085,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"qni" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"qnl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"qnC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"qnD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qnj" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"qnk" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) +"qnm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/living/pilotbunks) -"qnP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"qny" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, @@ -61276,62 +46108,129 @@ pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qnE" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qnG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/tapes{ + pixel_x = 7; + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_a_s) -"qof" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" +/obj/item/storage/box/tapes{ + pixel_x = -6; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"qom" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; +/obj/item/storage/box/tapes{ pixel_x = 1; - pixel_y = 14; - wrenchable = 0 + pixel_y = 1 }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"qnT" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = -24; + req_one_access_txt = "200;91;92" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qoa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"qon" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"qoh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/north2) -"qoJ" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qoo" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qoq" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"qow" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qox" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"qoy" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, /area/almayer/squads/bravo) -"qoY" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +"qoL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qoM" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"qoW" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) +"qpd" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"qpj" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"qpm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "qpq" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -61342,158 +46241,247 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"qpx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"qpw" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/medical/chemistry) -"qpQ" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"qpB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/medical/chemistry) -"qpU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"qpF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qpP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/lifeboat) -"qqn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qqu" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qpV" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"qqc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/lifeboat) -"qqK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qqg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"qqn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/area/almayer/medical/lower_medical_medbay) -"qqN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qqv" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"qqG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 }, -/area/almayer/shipboard/brig/main_office) -"qqQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Remote dropship navigation computer"; + pixel_y = -12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"qqJ" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qqL" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) -"qrc" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"qqR" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"qqT" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"qqY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qrw" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"qrO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"qre" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"qse" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"qsh" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"qrv" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"qsd" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" + health = 80 }, -/area/almayer/hull/upper_hull/u_m_s) -"qsC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"qso" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/area/almayer/squads/req) -"qsF" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"qsw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"qsx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"qtn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"qtd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"qtv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"qte" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/living/gym) -"qtR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/command/lifeboat) -"qtS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"qtk" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"qtq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"qts" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"qtP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"qtV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"qua" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"quj" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "quq" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -61504,95 +46492,140 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"quv" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/cryo_tubes) -"quI" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"quz" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"quD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"quE" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"quJ" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/hallways/port_hallway) -"quT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"quM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"quQ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"quR" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 }, -/area/almayer/medical/lower_medical_medbay) -"quV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qve" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_one_access_txt = "200;91;92" }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qvn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"qvf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"qvB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"qvH" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/area/almayer/shipboard/brig/cryo) -"qvC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/interrogation) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"qwo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"qvJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"qvR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"qvT" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qvY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qwf" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) "qwp" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -61601,67 +46634,104 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"qwt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"qwv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"qwC" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/living/offices) -"qwy" = ( -/obj/structure/phone_base{ - name = "Brig Offices Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Main Offices"; - pixel_y = 32 +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"qwE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qwH" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"qwJ" = ( /obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; + id = "civ_uniforms"; + name = "Uniform Vendor Lockdown"; pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" + pixel_y = -7; + req_access_txt = "31" }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/living/gym) +"qwQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/airoom) -"qwT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 +/obj/structure/platform_decoration{ + dir = 4 }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qwW" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"qwX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/phone_base/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qwZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"qxd" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"qxe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/area/almayer/hallways/repair_bay) +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"qxf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "qxm" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -61674,206 +46744,240 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) -"qxz" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"qxA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"qxC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qxw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/port_emb) -"qxE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/grunt_rnr) -"qxL" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qxD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"qyb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"qyc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"qyt" = ( +/turf/open/floor/almayer/sterile_green_corner, /area/almayer/medical/lower_medical_medbay) -"qxP" = ( +"qyH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"qyI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"qyQ" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/area/almayer/medical/containment/cell) -"qyd" = ( -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/item/clothing/head/ushanka{ + layer = 3.3 }, -/area/almayer/shipboard/brig/perma) -"qyi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/squads/delta) -"qyo" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"qyY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"qyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qzl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" }, -/area/almayer/command/cichallway) -"qys" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"qzM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 }, -/area/almayer/lifeboat_pumps/south1) -"qyz" = ( -/obj/structure/machinery/computer/cameras/containment/hidden{ +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; + layer = 3.3; pixel_x = -17 }, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"qAc" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"qAg" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"qyD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"qAl" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) -"qyF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"qAr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"qAD" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"qBb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qBf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"qBi" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"qBp" = ( +/obj/structure/machinery/power/apc/almayer/east, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + layer = 3.33; + pixel_x = 2 }, -/area/almayer/hallways/vehiclehangar) -"qyH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"qyJ" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/area/almayer/command/cic) -"qyW" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/squads/charlie_delta_shared) -"qzc" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"qBt" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) -"qAA" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Secondary Processors"; + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"qBx" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/engineering/ce_room) -"qAT" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qBB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"qBX" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 }, -/area/almayer/medical/medical_science) -"qBM" = ( -/obj/item/storage/fancy/crayons{ - layer = 3.1; - pixel_x = -6; - pixel_y = 5 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qCb" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/turf/open/floor/almayer{ +/obj/structure/prop/holidays/string_lights{ dir = 8; - icon_state = "green" + pixel_x = 29 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -61893,16 +46997,47 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"qCm" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "take-ins"; + pixel_x = 7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "qCo" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"qCs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "qCy" = ( /obj/effect/landmark/start/captain, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) +"qCC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) "qCG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61910,81 +47045,152 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qDq" = ( -/obj/effect/landmark/start/marine/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"qDt" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null +"qCH" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/command/lifeboat) -"qDv" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"qCQ" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qCU" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null }, -/area/almayer/hull/lower_hull/l_f_s) -"qDN" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qDa" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qDd" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"qDP" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "sterile_green_side" + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/medical/operating_room_four) -"qEk" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qDg" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"qDh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"qDi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" }, -/area/almayer/command/cic) -"qEn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"qDq" = ( +/obj/effect/landmark/start/marine/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"qDr" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"qDs" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qDu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"qDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qDF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"qDY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"qEi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"qEp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -61992,33 +47198,92 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"qEW" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 +"qEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"qFb" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"qEI" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qEL" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"qEO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qES" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/area/almayer/hallways/starboard_hallway) -"qFl" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qFf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) "qFm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"qFo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"qFp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qFs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"qFt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -62028,140 +47293,210 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"qFG" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"qFK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"qFJ" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qFN" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"qFR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4; + id = "civ_uniforms" }, -/area/almayer/squads/delta) -"qFQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/gym) +"qFT" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) +"qFV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"qGd" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"qGo" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"qFW" = ( -/obj/structure/sign/safety/storage{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"qGz" = ( +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"qGc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + pixel_y = -32 }, -/area/almayer/squads/alpha_bravo_shared) -"qGF" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"qGI" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"qGJ" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/operating_room_two) -"qHb" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"qGU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"qHa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"qHt" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qHz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"qHE" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" }, -/area/almayer/hull/lower_hull/l_f_s) -"qHg" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/sign/safety/ladder{ + pixel_x = -17 }, -/area/almayer/squads/alpha_bravo_shared) -"qHl" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) +"qHK" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Core Chamber"; + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qHL" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"qHq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"qHO" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/powered) -"qHF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qHQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/shipboard/brig/execution) -"qHM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qHR" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering) -"qIL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"qIb" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"qIg" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qIj" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"qIk" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/folder/white{ - pixel_x = 6 +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"qIl" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"qIn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"qIC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/tool/pen{ - pixel_y = 8 +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"qIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qIY" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"qJc" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "qJj" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -62172,75 +47507,68 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"qJx" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"qJy" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"qJF" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" +"qJl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"qJt" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qJu" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"qJN" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/vehiclehangar) -"qJS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"qJA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/grunt_rnr) -"qJY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"qJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"qJI" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"qJJ" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"qJK" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/living/port_emb) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qJM" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qJW" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "qJZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62250,104 +47578,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"qKi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"qKz" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"qKF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" +"qKd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"qKM" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"qKk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"qLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/containment) -"qLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"qLo" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qKu" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"qKD" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"qLf" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"qLp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/living/offices) +"qLm" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/almayer/command/corporateliaison) "qLs" = ( /obj/effect/landmark/start/maint, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"qLt" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 +"qLx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"qLD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/shipboard/brig/cells) +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) "qLH" = ( /obj/structure/bed/chair{ buckling_y = 6; @@ -62356,99 +47650,79 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"qLK" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"qLS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/no_build{ - dir = 4 - }, -/area/almayer/command/airoom) -"qMe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"qMf" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"qMu" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_a_p) -"qMP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"qLT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"qMb" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qMi" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qME" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/almayer/medical/medical_science) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "qMR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qNd" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +"qMS" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/almayer/squads/delta) -"qNv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"qNj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/lobby) -"qNy" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"qNr" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"qNA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_m_p) -"qNG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qNQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/area/almayer/hallways/lower/port_midship_hallway) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -62456,218 +47730,224 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"qOf" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) -"qOk" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space/almayer/lifeboat_dock) "qOp" = ( /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOU" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"qPg" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qPv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/phone_base/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 +"qOq" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"qOv" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/command/airoom) -"qPD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qPE" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"qOw" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/command/securestorage) -"qPO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/surgery) -"qPS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qOE" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/area/almayer/medical/lower_medical_lobby) -"qQc" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"qOK" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/medical/morgue) -"qQp" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/lifeboat_pumps/south1) -"qQL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qPc" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/area/almayer/engineering/upper_engineering/port) -"qQM" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qPl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"qPD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qPL" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"qQq" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/surgery) -"qQP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"qQs" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"qQx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"qQC" = ( +/obj/effect/landmark/start/warden, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"qQS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/area/almayer/shipboard/brig/cryo) +"qQK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qRg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"qRh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/command/airoom) -"qRj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"qRq" = ( +/turf/closed/wall/almayer/aicore/white/hull, +/area/space) +"qRu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"qRy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"qRz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/area/almayer/shipboard/brig/cic_hallway) -"qRo" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"qRE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/shipboard/brig/general_equipment) -"qRL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"qRI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/area/almayer/living/pilotbunks) -"qRT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"qRK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"qSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "W" }, -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"qSh" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) +"qSn" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "qSo" = ( /obj/structure/machinery/door/window/westright, /obj/structure/machinery/shower{ @@ -62681,12 +47961,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"qSE" = ( +"qSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qSw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/briefing) "qSK" = ( /obj/item/stack/sheet/metal{ @@ -62699,141 +47999,169 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"qSX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"qTY" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"qTZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"qUb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"qUh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"qSQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/hangar) -"qUj" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"qUp" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/powered/agent) -"qUq" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"qSU" = ( +/obj/structure/bed{ + icon_state = "abed" }, /obj/structure/window/reinforced{ dir = 4; - health = 80 + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/area/almayer/squads/charlie_delta_shared) -"qUH" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/area/almayer/hull/lower_hull/l_f_p) -"qUL" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"qTa" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"qTm" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qTu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"qTG" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/hangar) -"qVC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"qTU" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/captain_mess) -"qVF" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/shipboard/brig/execution) -"qVM" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_p) -"qVS" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"qTY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"qUd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"qUg" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"qUJ" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"qUZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"qVa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"qVd" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/command/cichallway) -"qVU" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qVs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qVB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"qWt" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qVJ" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qVY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qVZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qWg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"qWy" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) "qWI" = ( /obj/structure/machinery/status_display{ pixel_y = -30 @@ -62845,88 +48173,65 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"qWT" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"qWU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hull/upper_hull/u_a_s) -"qXo" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qXi" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"qXx" = ( -/obj/structure/platform, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"qXE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/area/almayer/engineering/engine_core) -"qXM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"qXO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced/ultra{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"qXZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"qXV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"qYr" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"qYt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"qYA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"qYu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/command/lifeboat) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "qYC" = ( /obj/structure/disposalpipe/down/almayer{ dir = 4; @@ -62934,56 +48239,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"qYG" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/command/lifeboat) -"qYH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/execution) -"qYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/offices/flight) -"qYQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"qYW" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) +"qYD" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"qYJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "qYZ" = ( /obj/structure/sign/safety/security{ pixel_y = -32 @@ -62994,186 +48256,156 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZg" = ( +"qZd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"qZH" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"qZX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/bravo) -"rag" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/area/almayer/shipboard/brig/main_office) -"rav" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"qZk" = ( /obj/structure/platform{ - dir = 4 + dir = 8 }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"qZz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Computer Lab"; + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_a_p) -"raK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"qZY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -5; + pixel_y = 7 }, -/area/almayer/squads/charlie) -"rbp" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"qZZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hull/lower_hull/l_a_p) -"rbv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"raw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) +"raz" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"rby" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"raE" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/airoom) -"rbB" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"raF" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"raP" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 3 }, -/area/almayer/command/computerlab) +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"raU" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"rba" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rbg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"rbE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"rbH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie) -"rbX" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"rbY" = ( -/obj/structure/window/framed/almayer, +"rbG" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"rcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"rcx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"rbL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"rbP" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"rco" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"rcy" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/medical/lower_medical_lobby) -"rcH" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"rcM" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"rcS" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"rcW" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) "rde" = ( /obj/structure/sign/prop1, /turf/closed/wall/almayer, @@ -63185,19 +48417,34 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rdr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 +"rdi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"rdj" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"rdl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"rdq" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -63207,639 +48454,552 @@ }, /turf/open/floor/almayer/research/containment/corner4, /area/almayer/medical/containment/cell) -"rdI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"rdK" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_a_s) -"rdS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"rdY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +"rdx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/almayer/hallways/port_hallway) -"ren" = ( -/obj/structure/machinery/light{ +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"rdy" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"rdO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"reL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"rfa" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"rfb" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rfg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"rfI" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"rfT" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/port_emb) -"rgy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"rgA" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"rgJ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -1; - pixel_y = 11 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"rgK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 - }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 - }, -/turf/open/floor/almayer{ +/area/almayer/hallways/upper/midship_hallway) +"rdU" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"rdX" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"rgW" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" + name = "ship-grade camera" }, -/area/almayer/living/briefing) -"rhD" = ( -/obj/structure/machinery/light/small{ +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"rem" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"rhO" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"rhQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"ril" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ret" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/hull/lower_hull/l_m_p) -"riA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"reu" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"riE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"rew" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"reD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"reH" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/area/almayer/medical/medical_science) -"riJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"rfb" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" }, -/area/almayer/engineering/upper_engineering/starboard) -"riM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/area/almayer/medical/containment/cell/cl) +"rfi" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"rfr" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"riO" = ( -/obj/item/trash/plate{ - pixel_x = 9; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"rfH" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_y = 11; - pixel_x = 8 +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rfV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"rfZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_y = 11; - pixel_x = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"riP" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"rgy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"rgz" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south2) -"riQ" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rgH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"rgL" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/area/almayer/engineering/engine_core) -"rjn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"rhd" = ( /obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"rjw" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rhv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"rjG" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"rjH" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/corporateliason) -"rjV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 +/area/almayer/hallways/lower/starboard_aft_hallway) +"rhz" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rhB" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rhE" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"rhF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"rhM" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rhQ" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rka" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ +"rhS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"rhU" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"rhX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"rin" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"riB" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering) -"rkh" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"riS" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"riT" = ( +/obj/structure/machinery/door/window/ultra{ dir = 8; - id = "Perma 1L"; - name = "\improper cell shutter" + req_access_txt = "3" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"riW" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/perma) -"rku" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"rjb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"rjm" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"rjz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hull/upper_hull/u_a_p) +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"rjL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"rjP" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"rkp" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) -"rkK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"rkL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"rlf" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"rlh" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"rll" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"rlz" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +"rkU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"rli" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"rlt" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"rlu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/area/almayer/hull/upper_hull/u_f_p) -"rlQ" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rlF" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "green" + pixel_y = -28 }, -/area/almayer/living/grunt_rnr) -"rlZ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"rlM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"rmc" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"rml" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"rmf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rmm" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/engineering/upper_engineering/starboard) -"rmv" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rmo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"rmp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rmq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/shipboard/brig/main_office) -"rmD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"rmJ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/south1) -"rmN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"rna" = ( -/turf/closed/wall/almayer/white, -/area/almayer/command/airoom) -"rne" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"rnH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_m_p) +"rmW" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"rnb" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" }, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_x = 17 +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rnm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rnr" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/command/airoom) -"rnM" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_f_p) -"rnN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"rnt" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"rnw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rnx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"rnL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"rnT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"rod" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"roh" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"ron" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"roE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"roU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_f_s) -"rou" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"roX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"rpf" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"rpg" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/squads/bravo) -"roG" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rpl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rpm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/shipboard/port_point_defense) -"roH" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Left"; - name = "\improper ARES Operations Shutters" +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/command/airoom) -"roU" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rpd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + layer = 3.3; + pixel_y = 4 }, -/area/almayer/hallways/port_hallway) -"rph" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"rpK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"rpW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"rpu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"rpE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"rqb" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rpF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"rqh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access_txt = "19;27;22" }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) "rqj" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -63847,66 +49007,48 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqw" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"rqE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"rra" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 8; - id = "Perma 2L"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" +"rqA" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"rqC" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rqZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/shipboard/brig/perma) -"rri" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"rrc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"rrq" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"rrh" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"rrB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"rrk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rrJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -63932,31 +49074,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"rsx" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"rrO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"rsD" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/hull/lower_hull/l_f_s) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rsI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"rsJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, @@ -63974,39 +49115,124 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rsW" = ( -/obj/structure/pipes/vents/pump, +"rsQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rsR" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"rsU" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"rsV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/port) -"rsY" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"rtb" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) +"rtf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +"rti" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"rtl" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"rtq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rtu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -64019,6 +49245,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"rtD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"rtQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "rtV" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -64027,6 +49262,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"rtW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) "rtY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/bronze, @@ -64042,24 +49281,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"rub" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"ruc" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +"ruh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) "rui" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -64069,62 +49297,170 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rux" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +"ruo" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ruu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ruy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ruN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"ruz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "cargo" +"ruY" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"rvo" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +"rva" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"rvl" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rvr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"rvx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"rvy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) "rvA" = ( /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"rvT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "emerald" +"rvG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" }, -/area/almayer/squads/charlie) -"rwb" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_a_s) -"rwv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"rvS" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/almayer/red/west, /area/almayer/living/briefing) -"rwS" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, +"rwr" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"rwT" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/area/almayer/maint/hull/upper/u_f_s) +"rws" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) +"rwu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"rwy" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/midship_hallway) +"rwz" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"rwH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"rwL" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"rwQ" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) "rwY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -64136,95 +49472,136 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rxk" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"rxd" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"rxi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_f_s) -"rxG" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"rxs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"rxz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"rxV" = ( -/obj/structure/barricade/handrail, -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"ryt" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"rxO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"rxR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"ryG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/area/almayer/lifeboat_pumps/north1) -"rzf" = ( -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/airoom) -"rzj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/area/almayer/hallways/lower/port_fore_hallway) +"ryo" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"ryy" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"ryE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"ryU" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"ryV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rzn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"rzA" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) }, -/area/almayer/shipboard/brig/main_office) -"rzN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"rzI" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/almayer/medical/containment) -"rzP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"rzQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"rzR" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rAg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"rAh" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) -"rAb" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rAp" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/briefing) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "rAv" = ( /obj/structure/machinery/shower{ dir = 8 @@ -64232,57 +49609,40 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"rAx" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"rAw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) "rAC" = ( /obj/docking_port/stationary/emergency_response/external/port5, /turf/open/space/basic, /area/space) -"rAD" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"rAN" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"rAP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"rAE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rAF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/starboard) -"rBa" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) +"rAK" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rAO" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"rAU" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) "rBb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -64297,173 +49657,170 @@ /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"rBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/port_umbilical) -"rBx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"rBH" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"rBm" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"rBn" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"rBC" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 }, -/area/almayer/lifeboat_pumps/south1) -"rBV" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rBE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/area/almayer/shipboard/brig/main_office) -"rCi" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - dir = 8 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"rBU" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/area/almayer/command/airoom) -"rCp" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/hull/upper_hull/u_a_p) -"rCw" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"rCj" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rCq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/u_a_s) +"rCr" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 }, -/obj/structure/stairs{ - dir = 1 +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/item/trash/crushed_cup{ + pixel_y = 12 }, -/area/almayer/command/airoom) -"rCD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"rCv" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/engineering/upper_engineering/port) -"rCK" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/area/almayer/squads/req) -"rCL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rCA" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"rCG" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "rCO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rCU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) "rDb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"rDe" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/kepler_crisps{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/squads/req) -"rDi" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, +"rDm" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"rDr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"rDt" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 +/area/almayer/hallways/lower/port_midship_hallway) +"rDx" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/living/grunt_rnr) -"rDv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rDy" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"rDN" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"rDS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -64480,245 +49837,230 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rEm" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/spacecash/c500{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/ashtray/bronze{ - pixel_x = -13; - pixel_y = -4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"rEn" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" +"rEB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null }, -/area/almayer/hull/upper_hull/u_f_p) -"rEr" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"rEP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"rER" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"rFe" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"rFf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/space) -"rEu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) +"rFk" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/area/almayer/hallways/vehiclehangar) -"rEv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"rFn" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" }, -/area/almayer/squads/delta) -"rEY" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"rFo" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"rFt" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "silver" + pixel_x = -24 }, -/area/almayer/shipboard/brig/cic_hallway) -"rFs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"rFw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/p_bow) +"rFz" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"rFA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/bridgebunks) -"rFu" = ( -/obj/structure/platform_decoration{ +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"rFy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering/starboard) -"rFB" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"rFC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"rFH" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"rFY" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"rGg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" + icon_state = "SW-out" }, -/area/almayer/hallways/port_hallway) -"rGj" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/alpha) -"rGl" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"rGE" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"rFD" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rGf" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rGm" = ( +/obj/structure/machinery/firealarm{ dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" + pixel_x = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"rGP" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"rGY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) -"rHf" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"rHo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +"rHg" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rHC" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"rHI" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 }, -/area/almayer/medical/lower_medical_medbay) -"rHs" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"rHw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"rHU" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"rIo" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"rIu" = ( +/obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"rHN" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rIj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rIB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 }, -/area/almayer/medical/lower_medical_lobby) -"rID" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64726,83 +50068,50 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"rII" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"rIO" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"rIW" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"rJb" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"rJg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"rIL" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/almayer/command/combat_correspondent) -"rJh" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"rIT" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"rIU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - pixel_y = -2 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rIX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"rJu" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"rJc" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"rJl" = ( +/obj/structure/machinery/door_control{ dir = 1; - icon_state = "orange" - }, -/area/almayer/living/briefing) -"rJx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 }, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rJn" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) "rJD" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -64810,322 +50119,519 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) +"rJH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/briefing) -"rKd" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, -/area/almayer/command/cic) -"rKn" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 +"rJR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/powered/agent) -"rKs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"rJW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"rKB" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"rKJ" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"rKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"rKy" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"rKA" = ( -/obj/structure/bed{ - can_buckle = 0 +/area/almayer/living/grunt_rnr) +"rLc" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"rLh" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"rLv" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/medical/containment/cell/cl) +"rLT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/living/auxiliary_officer_office) -"rKO" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"rMa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"rMb" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rMf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"rMk" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rMl" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rME" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"rMV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rNc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"rNd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"rNh" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"rNp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"rNr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rNw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"rKQ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/area/almayer/shipboard/brig/cic_hallway) -"rLk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rNH" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"rNK" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"rNT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"rLv" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"rNX" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rLU" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 + pixel_y = 13 }, -/area/almayer/medical/containment/cell/cl) -"rNF" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"rNZ" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"rOl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/airoom) -"rOc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/start/senior, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"rOO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rOP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"rOW" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"rOj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"rOs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"rOC" = ( -/obj/structure/machinery/light{ - dir = 1 +"rPd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"rPe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/cic) -"rOJ" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/gym) -"rOZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rPi" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hull/upper_hull/u_m_s) -"rPh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rPj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"rPr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"rPC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"rPE" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"rPF" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 }, -/area/almayer/squads/delta) -"rPO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rPI" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"rPW" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/area/almayer/squads/delta) -"rQj" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/arcturianstopsign{ + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_a_p) -"rQt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rQp" = ( +/obj/structure/platform{ dir = 1 }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"rQr" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"rQu" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) -"rQA" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +"rQP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/area/almayer/squads/delta) -"rQU" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"rQV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"rRj" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) +"rRk" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rRq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south2) +"rRv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"rRw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"rRy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/squads/charlie) -"rQW" = ( -/obj/item/tool/screwdriver, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"rRF" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"rQY" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rRI" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"rRN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/shipboard/brig/cells) -"rRq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south2) -"rRz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"rRO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"rRC" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible"; - pixel_x = -3; - pixel_y = 9 +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rRP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/prop/helmetgarb/rosary{ - pixel_y = 5; - pixel_x = -4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/item/device/flashlight/lamp{ - pixel_y = 1; - pixel_x = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"rRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rRW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"rRU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"rSb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 +/obj/item/storage/box/masks{ + pixel_x = 5 }, -/obj/item/ashtray/glass{ - pixel_x = -6 +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"rSc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"rSp" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/starboard) +"rSw" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"rSj" = ( -/obj/structure/bed/chair{ +"rSx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"rSy" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"rSD" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -65140,129 +50646,253 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSH" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +"rSU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"rTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/lobby) -"rSK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"rTb" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/fore_hallway) +"rTc" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"rTd" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"rTj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +"rTo" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 }, -/area/almayer/shipboard/brig/chief_mp_office) -"rTJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 }, -/area/almayer/engineering/upper_engineering/port) -"rTV" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"rTC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"rTZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"rTF" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"rTG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/engineering/upper_engineering/starboard) -"rUh" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"rUy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"rUn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" }, -/area/almayer/command/computerlab) -"rUB" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"rUF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"rUH" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"rUI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"rUK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rUQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"rUW" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rVk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"rVp" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"rVH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rVJ" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Records" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rVL" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"rVM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rVO" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = 32 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"rVP" = ( +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; + pixel_y = 10 }, -/area/almayer/shipboard/brig/cells) -"rUU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 9 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" +/obj/item/weapon/broken_bottle{ + layer = 4.51; + pixel_x = 9; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rVQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"rVo" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"rVU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"rVZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" }, -/area/almayer/hull/lower_hull/l_a_s) -"rVN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"rWa" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"rWe" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"rWq" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) +"rWr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/shipboard/port_missiles) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) "rWs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -65270,20 +50900,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"rWv" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"rWC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"rWI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/command/lifeboat) -"rWL" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null }, -/area/almayer/living/cryo_cells) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"rWP" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -65291,12 +50933,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"rXd" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" +"rXe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/shipboard/brig/general_equipment) +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rXf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"rXg" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -65306,195 +50962,258 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"rXk" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 +"rXm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/living/cryo_cells) -"rXv" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/living/gym) -"rXC" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"rXS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"rXs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/squads/delta) -"rYi" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/area/almayer/living/gym) -"rYj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"rYp" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"rYv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/lower/l_f_p) +"rXy" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/structure/machinery/computer/station_alert{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"rYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"rYZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rXJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"rZz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rXO" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"rYb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"rYe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"rYm" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rYx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"rYH" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/area/almayer/hallways/starboard_hallway) -"rZB" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rYL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rYN" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"rYP" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"rZF" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"rZr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"rZt" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"rZw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"rZx" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"rZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"rZX" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"saf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"sam" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/port_hallway) -"rZP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sau" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"saE" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" }, -/area/almayer/shipboard/starboard_point_defense) -"rZR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"saG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"saM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 9; + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) }, -/area/almayer/shipboard/brig/general_equipment) -"sah" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"saO" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"saB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"saX" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"saW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"sbq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/mp_bunks) +"saZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"sbk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/notunnel) -"sbJ" = ( -/turf/closed/wall/almayer/white/hull, -/area/almayer/powered/agent) -"sbM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"sbp" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"sbr" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"sbW" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"scb" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 }, -/area/almayer/squads/req) -"scg" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"scf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) "sco" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -65505,6 +51224,26 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"scq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"scr" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -65515,31 +51254,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"scy" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/delta) -"scz" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" - }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"scD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) "scH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -65547,576 +51261,608 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"scI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"scS" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"sdl" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"sdn" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, -/area/almayer/medical/upper_medical) -"sdq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - layer = 3.1; - pixel_x = -8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"sdu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"sdw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_p) -"sdC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"sdF" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"sdO" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"sed" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"seO" = ( -/obj/structure/sign/safety/terminal{ +"scN" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"sfU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"sgc" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"sgi" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/processing) -"sgj" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"sgw" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sda" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"sdp" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/machinery/door_control{ + id = "Alpha_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/area/almayer/hallways/repair_bay) -"sgy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"sgM" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "W" }, -/area/almayer/engineering/engine_core) -"sgR" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"sdD" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/area/almayer/squads/delta) -"sgU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sdY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"shb" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"shh" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"shp" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"sec" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - layer = 2.7 - }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"sef" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ dir = 8 }, -/area/almayer/living/briefing) -"shs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"sht" = ( -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"shw" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"sip" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sem" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sey" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/area/almayer/shipboard/brig/main_office) -"siz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"seR" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"seS" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"seV" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ dir = 8; - name = "Alamo Remote Control Console"; - pixel_y = 12; - shuttleId = "dropship_alamo" + invisibility = 101 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"seX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/offices/flight) -"siW" = ( -/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"sjc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"sjj" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sfb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"sfg" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/sign/safety/terminal{ +/obj/structure/sign/safety/restrictedarea{ pixel_x = 15; - pixel_y = 26 + pixel_y = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sfp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "orange" + name = "ship-grade camera" }, -/area/almayer/engineering/ce_room) -"sjr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"sfq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/lifeboat) -"skg" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sfI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"sgi" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/processing) +"sgv" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"sgz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering/starboard) -"skl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"sgJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/upper_medical) -"skn" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"sgN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"sgQ" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"sgT" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"sgU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/sea_office) -"skF" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"sgX" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"shc" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/squads/charlie_delta_shared) -"sld" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"shh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"sht" = ( +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"shF" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"shQ" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"shU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/medical/lower_medical_lobby) -"slP" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"shW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"sia" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sic" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sid" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"siK" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"siL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"smi" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"smn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, +/area/almayer/hallways/lower/port_aft_hallway) +"siN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"smr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/area/almayer/living/synthcloset) +"siQ" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 27; + serial_number = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"snb" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder3" +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/turf/open/floor/plating/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"sni" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/command/cic) -"snm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"sjo" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"sjq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"sjt" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"sjw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"sjx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sjH" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"sjP" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/area/almayer/hallways/aft_hallway) -"snw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"skf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"skk" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"skt" = ( +/obj/effect/landmark/start/intel, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"skw" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"skA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/req) -"snE" = ( -/obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"skH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"skK" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"skX" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"slq" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) -"snM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"sls" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"slu" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"slE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"slF" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"slJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"slR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"slT" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/margherita{ + pixel_y = 8 }, +/turf/open/floor/almayer/green/north, /area/almayer/squads/req) -"snR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "blue" +"slU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"smd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/squads/delta) -"soa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"smh" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/almayer/shipboard/brig/cells) -"soq" = ( -/obj/structure/machinery/computer/working_joe{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - pixel_x = -17 + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"smm" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 }, -/area/almayer/living/synthcloset) -"sos" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"smq" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"smx" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"smz" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"smB" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"snb" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder3" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"snh" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"snz" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 }, -/area/almayer/hallways/port_hallway) -"sou" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"snD" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"snX" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"soz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"sow" = ( -/obj/structure/machinery/light/small{ - dir = 8 + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "soA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"soD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"soK" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "soP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"soQ" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"soR" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 }, -/area/almayer/hull/upper_hull/u_a_s) -"soS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"soU" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) +"spb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"spf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"spm" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_f_s) -"soX" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"spn" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/command/cic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"spo" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"spp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"spt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"spC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/structure/machinery/vending/ingredients, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -66125,134 +51871,163 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"spK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"spM" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/interrogation) +"spR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"spW" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"spY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/area/almayer/engineering/upper_engineering/starboard) -"spS" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"sqf" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"sqt" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"sqC" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"spT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +"sqJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"sqa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sqY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"srs" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 }, -/area/almayer/hallways/hangar) -"sqf" = ( -/turf/closed/wall/almayer/white/reinforced, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"sry" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"srG" = ( +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/upper_medical) -"sqo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"srI" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 }, -/area/almayer/engineering/upper_engineering) -"sqW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/shipboard/brig/cells) -"srV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"srM" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ +/obj/structure/sign/safety/cryo{ pixel_x = 8; - pixel_y = 8 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -6; - pixel_y = 7 + pixel_y = -26 }, -/obj/item/tool/pen{ - pixel_x = -6 +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"srW" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"ssb" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Security Vault"; + req_access = null; + req_one_access_txt = "91;92" }, -/area/almayer/shipboard/brig/main_office) -"ssa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ + plane = -6 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"ssj" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = -4 }, -/area/almayer/hallways/repair_bay) -"ssD" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"ssl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"ssE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"ssC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ssJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"ssU" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"ssP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"ssS" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "ssX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -66269,243 +52044,197 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"sti" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"str" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"sty" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - pixel_y = 2; - layer = 3.04; - pixel_x = -2 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -11; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_y = 16; - pixel_x = -2 +"stm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 7; - pixel_y = 16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"stz" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"stY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"stJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"sua" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/starboard_hallway) -"suk" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"sun" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) "suy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"suT" = ( +"suA" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"suV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"svd" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"suJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) "svf" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"svl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"svx" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/command/lifeboat) -"svp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"svR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"swn" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) +"svW" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /turf/open/floor/plating, -/area/almayer/shipboard/brig/surgery) -"swo" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/living/cafeteria_officer) +"svZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"swe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/shipboard/brig/main_office) -"swt" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"swr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_stern) "sww" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"swA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"swE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"swH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +"swC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"swP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"swU" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"swV" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, -/area/almayer/command/cic) -"swM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sxg" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sxj" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/lifeboat_pumps/south2) -"swN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/engineering/upper_engineering) -"sxe" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"sxt" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sxx" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"sxu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"sxA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"sxD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"sxO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"syl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"syF" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "syH" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -66515,413 +52244,474 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"syM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"syP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"szm" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 10" +"syQ" = ( +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"syR" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"syS" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"szy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"szE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/living/offices) -"szM" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"syX" = ( +/obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"szp" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/squads/charlie) -"szO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"szJ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"szN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"szT" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) "szU" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) -"szX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/hull/upper_hull/u_a_s) -"sAc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"sAm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"sAA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"sAC" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/ce_room) -"sBH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"szW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"sBL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"sAd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" }, -/area/almayer/living/grunt_rnr) -"sCA" = ( -/obj/structure/bed/chair/comfy/delta{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"sAh" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"sCC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"sAj" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"sAt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hull/upper_hull/u_m_p) -"sCD" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"sAM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"sAQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) -"sCI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sBk" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sBu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/area/almayer/living/pilotbunks) -"sCQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/cic_hallway) -"sDu" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating, +/area/almayer/living/captain_mess) +"sBC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"sBF" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"sCf" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sCq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/laundry) -"sDy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"sCw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"sDC" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"sDD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"sDM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"sEa" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"sEd" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/maint/upper/u_a_s) +"sCz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"sDj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"sDn" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"sDp" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/squads/bravo) -"sEi" = ( -/obj/structure/bed/chair{ - can_buckle = 0; +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sDE" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sDO" = ( +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = 24 }, -/obj/structure/bed/chair{ - can_buckle = 0; +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"sDQ" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sDT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = 2; - pixel_y = 6 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"sDZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/area/almayer/living/grunt_rnr) -"sEp" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sEb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"sEh" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"sEl" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/command/cic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"sEn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "sEq" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"sEt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"sEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "tcomms" - }, -/area/almayer/command/airoom) -"sEM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"sFf" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +"sEr" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 }, -/area/almayer/shipboard/starboard_missiles) -"sFh" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"sEC" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"sEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"sFC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"sEJ" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"sEN" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"sEW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"sFF" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"sEX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"sEZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"sFR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"sFw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"sFZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/hallways/lower/port_umbilical) +"sFE" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"sFX" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door_control/brbutton{ + id = "engie_store"; + name = "Emergency Storage"; + pixel_x = -2; + pixel_y = 26; + req_one_access_txt = "6" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"sGe" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17; + pixel_y = -6 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"sFY" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGL" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +"sGi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"sGk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"sGl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sGo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"sGt" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"sGy" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"sGA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"sGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"sGJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, /area/almayer/living/gym) -"sGZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "silverfull" +"sHf" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa{ + pixel_x = 5 }, -/area/almayer/command/airoom) -"sHg" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sHh" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"sHm" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"sHn" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) "sHo" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -66941,20 +52731,18 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sHM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"sHY" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"sHH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) "sHZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -66965,123 +52753,220 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"sIf" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"sIk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"sIw" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" +"sIg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/evidence_storage) -"sIx" = ( -/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sIA" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +/area/almayer/hallways/lower/port_fore_hallway) +"sIm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"sIq" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"sIu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"sIN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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" }, -/area/almayer/engineering/port_atmos) -"sIT" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/lower_hull/l_f_s) -"sIU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/hangar) -"sIV" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"sIO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"sJs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"sIY" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = -32; - pixel_y = 4 +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 }, -/obj/structure/machinery/door_control{ - id = "Perma 1L"; - name = "Perma 1 Lockdown"; - pixel_x = -24; - pixel_y = -12; - req_access_txt = "3" +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sJu" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"sJG" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"sJL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"sJM" = ( +/obj/structure/safe/cl_office, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sJQ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"sKd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"sKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sKj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) -"sJC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"sKk" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sKp" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"sKs" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/briefing) -"sJY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sKC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/securestorage) +"sKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"sKI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sKW" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 }, -/area/almayer/living/port_emb) -"sKa" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sKX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/almayer/sterile_green_corner/west, /area/almayer/medical/morgue) -"sKY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +"sLd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"sLh" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4; + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, /area/almayer/command/airoom) +"sLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"sLl" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"sLm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -67092,52 +52977,167 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"sLp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"sMs" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sLt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"sLy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"sLF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"sLL" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sLV" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sMe" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sMh" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"sMm" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"sMJ" = ( +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"sNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"sMN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ dir = 4 }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"sMT" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sMY" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sNc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"sNg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"sNm" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"sNq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"sNs" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"sNy" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/squads/bravo) -"sNz" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"sNJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"sNK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/area/almayer/medical/containment/cell) -"sNI" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -67151,48 +53151,22 @@ "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) -"sOi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"sOm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"sOf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 }, -/area/almayer/hallways/starboard_hallway) -"sOt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"sOw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/basketball) -"sOx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) "sOy" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -67203,215 +53177,264 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sPc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, +"sPa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"sPA" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"sPJ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"sQF" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"sQL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 + icon_state = "NW-out" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"sQO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sPh" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/lifeboat) -"sQS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp{ - pixel_x = 3; +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"sPl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; pixel_y = 10 }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sPp" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"sQU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"sPy" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"sPX" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sRI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"sQg" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_p) -"sSa" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/squads/req) -"sSc" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sQs" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/shipboard/weapon_room) -"sSe" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"sQX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sRc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"sRg" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"sRj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"sRt" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"sRv" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"sSb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/lower_hull/l_m_s) -"sSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sSj" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null }, -/area/almayer/lifeboat_pumps/south2) -"sSm" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"sSo" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"sSC" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/area/almayer/hallways/lower/port_midship_hallway) +"sSE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/squads/delta) -"sSR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"sSH" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"sSN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sST" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" }, -/area/almayer/hallways/aft_hallway) -"sSY" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_umbilical) -"sTd" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/living/basketball) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"sSZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) "sTm" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"sTo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +"sTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "sTw" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"sTy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_m_s) -"sTV" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - cell_type = /obj/item/cell/hyper; - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"sUg" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"sTz" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"sTD" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/structure/sign/ROcreed{ + pixel_y = 30 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = -11; + pixel_x = 7 }, -/area/almayer/shipboard/brig/cic_hallway) -"sUj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"sTK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"sTL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"sTY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"sUc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/squads/delta) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -67422,670 +53445,798 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"sUE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "bluefull" +"sUx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/area/almayer/command/cichallway) -"sUF" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sUD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"sUO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"sUH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sUI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/squads/delta) -"sVc" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"sUK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/cells) -"sVf" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"sUM" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/hallways/port_hallway) -"sVi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sVy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"sWW" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"sUY" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 27 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"sVd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/containment/cell) -"sXd" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"sVn" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"sVw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"sVH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/containment) -"sXs" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"sVI" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_f_p) -"sXt" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"sVJ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"sVR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/squads/alpha) -"sXw" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"sXB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, +/area/almayer/hallways/upper/fore_hallway) +"sVS" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"sVZ" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/hangar) -"sXE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"sWe" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"sWo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/living/auxiliary_officer_office) -"sXK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"sWt" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"sWM" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"sWS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"sXQ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"sWT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/shipboard/brig/cells) -"sXV" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_fore_hallway) +"sWZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 }, -/area/almayer/engineering/lower_engineering) -"sYh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/medical/lower_medical_medbay) -"sYw" = ( -/obj/structure/platform{ - dir = 8 +/obj/item/device/toner{ + pixel_x = -2; + pixel_y = -11 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"sXg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"sXv" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/lifeboat_pumps/south2) -"sYC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/window/reinforced{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"sYD" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + health = 80 }, -/area/almayer/command/lifeboat) -"sYP" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"sXw" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"sXA" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/area/almayer/shipboard/port_point_defense) -"sYT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"sZq" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"sXG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/squads/charlie) -"sZy" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sXJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"sXT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"sXX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"sZF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sZH" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"sYd" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"sYE" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/living/port_emb) -"tab" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"sYL" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 }, -/obj/item/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"sYS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"sYX" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/living/briefing) -"tak" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"sZm" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 }, -/area/almayer/shipboard/brig/main_office) -"tal" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"sZp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"sZJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"tat" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"taA" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_f_p) +"sZM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"sZO" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"sZW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"taa" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/almayer/hallways/starboard_hallway) -"taH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"tam" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"tat" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"taz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"taI" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"taK" = ( +/obj/structure/sink{ + pixel_y = 24 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/research/containment/corner_var1/east, /area/almayer/medical/containment/cell) -"tbD" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_a_p) -"tbK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"tce" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"taM" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"tcP" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"taX" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"taY" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"tbf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Perma Cells" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tbj" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/area/almayer/shipboard/brig/perma) -"tda" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"tbm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"tbq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"tbB" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tbN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"tdc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"tbP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -29 }, -/area/almayer/hallways/hangar) -"tdv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"tbV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/main_office) -"tdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" + dir = 6 }, -/area/almayer/engineering/engine_core) -"tdE" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"tcv" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tcz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) -"tdI" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"tdK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tcL" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"tcN" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"tdm" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"tdu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "207;203" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/item/device/radio, +/obj/item/device/radio/listening_bug/radio_linked/wy, +/obj/item/device/radio/listening_bug/radio_linked/wy{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tdz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/port_umbilical) +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"tdH" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tdL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"teg" = ( -/obj/structure/bed/chair{ - dir = 8 +"tdW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/lifeboat_pumps/south1) -"tek" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"teb" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"ted" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"tep" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"tew" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" }, -/area/almayer/command/cichallway) -"teo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"tey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 }, -/area/almayer/lifeboat_pumps/north1) -"teu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump{ - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"teH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"teY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer{ - icon_state = "plate" +"teC" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/area/almayer/command/cic) -"tfb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"teM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"teP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"tfl" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tfw" = ( +/area/almayer/hallways/lower/port_aft_hallway) +"teV" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"tfq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/ladder{ + height = 2; + id = "cicladder3" }, -/area/almayer/hallways/port_hallway) -"tfH" = ( -/obj/structure/machinery/light/containment, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"tfv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"tfx" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/area/almayer/medical/containment/cell) -"tfO" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tfD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"tfN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"tfX" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"tgf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_aft_hallway) +"tgn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"tgq" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tgr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" }, -/area/almayer/shipboard/brig/armory) -"tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"tgS" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"tgV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tgu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"tgF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ dir = 8; - icon_state = "sterile_green_side" + pixel_x = 29 }, -/area/almayer/medical/lower_medical_medbay) -"thv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tgL" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"tha" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"thb" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"thA" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"thh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"thn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"thN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/hydroponics) -"thP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"thT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"thQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"thR" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_s) -"thV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) "tig" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -68094,543 +54245,520 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tim" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"tit" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"tiw" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +"til" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"tiq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"tiy" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tiP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"tiE" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"tiI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"tiS" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tiV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"tiX" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"tiK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"tjd" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"tjr" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"tiM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tjw" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_m_s) -"tiR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"tjD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tjM" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"tjV" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/area/almayer/shipboard/weapon_room) -"tiW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"tjj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/structure/stairs{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/port) -"tjl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tkb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/squads/req) -"tjn" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -19; + pixel_y = -6 }, -/area/almayer/medical/medical_science) -"tjw" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"tki" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"tkc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tkf" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"tkh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) "tkq" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"tkK" = ( -/obj/structure/bed/bedroll{ - name = "cat bed"; - desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; - pixel_y = 0 +"tkB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/mob/living/simple_animal/cat/Jones{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tkX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28; - pixel_x = -1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"tkN" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"tli" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"tlj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 }, -/area/almayer/squads/alpha_bravo_shared) -"tkV" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"tlt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/processing) -"tld" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"tlC" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/stern_point_defense) +"tlE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, /area/almayer/living/pilotbunks) -"tly" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"tlO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"tlA" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tlY" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"tmj" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"tmk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"tlI" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"tmg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"tmy" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"tmm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tmp" = ( /obj/structure/surface/table/almayer, -/obj/item/handcuffs{ - pixel_y = 12 - }, -/obj/item/handcuffs{ - pixel_y = 6 - }, -/obj/item/handcuffs, -/obj/item/weapon/baton{ - pixel_x = -12 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"tmA" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"tmq" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"tmt" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tmI" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +"tmS" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/area/almayer/lifeboat_pumps/south1) -"tmK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access = null; - req_one_access_txt = "91;92" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/area/almayer/command/airoom) -"tnb" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/area/almayer/shipboard/port_missiles) -"tng" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tmW" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"tmY" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"tnj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"tno" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tnD" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/area/almayer/hull/upper_hull/u_f_s) -"tni" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 }, -/area/almayer/medical/operating_room_three) -"tnl" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tnT" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"tnW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"toe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"tnm" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"too" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"tnY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"toq" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"tou" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tot" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "tov" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toE" = ( -/obj/structure/machinery/light/small{ +"tow" = ( +/obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"tpa" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/holidays/string_lights{ dir = 8; - health = 80 + pixel_x = 29 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tox" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/area/almayer/medical/hydroponics) +/obj/structure/sign/safety/rewire{ + pixel_x = -15; + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"toA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"toG" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"toL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"toM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"toO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"toR" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) "tpd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tpg" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"tpj" = ( -/obj/structure/safe/co_office, -/obj/item/weapon/pole/fancy_cane, -/obj/item/tool/lighter/zippo/gold{ - pixel_y = 3; - layer = 3.05 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) -"tps" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"tpt" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" +"tpu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north2) -"tpD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/bridgebunks) -"tpK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"tqe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"tpE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"tpI" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"tpM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"tpQ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"tpV" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/brig/surgery) -"tqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"tqa" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/hallways/repair_bay) -"tqk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"tqB" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"tqV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"tqs" = ( +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) -"trb" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, +/turf/open/floor/almayer/red/northeast, /area/almayer/lifeboat_pumps/south1) -"trB" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +"tqH" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"trD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"tqI" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"trF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 }, -/obj/item/storage/firstaid/adv{ +/obj/item/reagent_container/glass/beaker/large{ pixel_x = -6; - pixel_y = -2 + pixel_y = 8 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"tqS" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"trb" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"trd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/medical/medical_science) -"trW" = ( -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"trC" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"trP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"trT" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "tsa" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/chef/classic, @@ -68638,98 +54766,101 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tst" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"tsy" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 +"tsb" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/upper/u_a_s) +"tsw" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) +"tsz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/filingcabinet{ - pixel_x = -8 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tsB" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/command/cichallway) -"tsC" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"tsD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) -"tsH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tsX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/lobby) +"tte" = ( +/obj/structure/pipes/vents/pump/no_boom{ + welded = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/powered/agent) +"ttg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"tsM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"ttD" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"ttF" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "sterile_green_side" + name = "ship-grade camera" }, -/area/almayer/medical/medical_science) -"tsX" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/lobby) -"ttd" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ttH" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"tte" = ( -/obj/structure/pipes/vents/pump/no_boom{ - welded = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/powered/agent) -"ttM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ttK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ttN" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) "ttS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -68739,124 +54870,202 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"tuf" = ( -/obj/structure/platform_decoration{ +"tul" = ( +/obj/structure/platform, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, +/turf/open/floor/almayer/red/southeast, /area/almayer/lifeboat_pumps/south1) -"tuo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"tuq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"tuN" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +"tuE" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/hallways/hangar) -"tuZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tuS" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/weapon_room) -"tvw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"tuX" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"tuY" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"tvb" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"tvg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" }, -/area/almayer/lifeboat_pumps/south1) -"tvA" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"tvs" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" }, -/area/almayer/shipboard/brig/surgery) -"tvM" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"tvN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"tvu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S"; + layer = 3.3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/sign/safety/rewire{ + pixel_y = 38 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/laser{ + pixel_y = 24 }, -/area/almayer/squads/delta) -"tvQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = -17 }, -/area/almayer/lifeboat_pumps/south1) -"twq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"tvy" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"tvB" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"tvK" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"twa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, /obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"twk" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"twm" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/medical/lower_medical_medbay) -"twB" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"twn" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"twA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"twP" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/space) -"twT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"twQ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"twR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) "twW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -68871,40 +55080,42 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"txe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"txi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"txx" = ( /obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/port) +"txF" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"txO" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/area/almayer/maint/hull/lower/s_bow) +"txI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"txK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"txZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68914,439 +55125,362 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"tyz" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +"tyc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_a_p) -"tyD" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tyP" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/containment/cell) -"tyK" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"tze" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"tzE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/starboard_missiles) -"tzf" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"tzH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"tzJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"tzQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tzi" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"tzj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"tzx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"tzz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"tzL" = ( -/obj/structure/sign/safety/waterhazard{ +/area/almayer/hallways/upper/aft_hallway) +"tAj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/medical/hydroponics) -"tzP" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"tAh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" + pixel_y = -2 }, -/area/almayer/engineering/upper_engineering/port) -"tAi" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"tAl" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"tAq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"tAL" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"tAN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tAn" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"tAF" = ( +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "orange" + pixel_x = 24 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"tAS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) -"tAR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"tAU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"tBn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/medical/lower_medical_medbay) -"tAV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) "tBq" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"tBz" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"tBF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tBL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"tBP" = ( -/obj/structure/disposalpipe/segment, +"tBr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"tCb" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"tCN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"tCT" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"tBs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" }, -/area/almayer/command/cic) -"tDx" = ( -/obj/item/tool/wet_sign, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"tBu" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"tBw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"tDZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"tBy" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"tBE" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"tEi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"tEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"tEO" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"tFe" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/open{ - id = "ARES Emergency"; - name = "ARES Emergency Lockdown"; - open_layer = 1.9; - plane = -7 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" + dir = 4 }, -/area/almayer/command/airoom) -"tFv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"tCr" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"tCu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"tFS" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tCO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) +"tDa" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"tFW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tDb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"tDc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tDk" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/south1) -"tGd" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"tDt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"tDM" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"tEc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer/orangecorner/east, /area/almayer/engineering/upper_engineering/port) -"tGf" = ( +"tEF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"tGg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"tEI" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/gym) +"tEO" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/shipboard/brig/main_office) -"tGh" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"tEW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"tFA" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"tFG" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"tFJ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"tFY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "tGi" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"tGq" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"tGG" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +"tGn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"tGp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/briefing) -"tGO" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"tHh" = ( -/obj/structure/sign/safety/ladder{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tGr" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"tHr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 + pixel_y = 32 }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"tGB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null }, -/obj/item/poster, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"tGP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"tHu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 }, -/area/almayer/command/airoom) -"tHv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/obj/structure/barricade/deployable{ + dir = 4 }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"tHB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"tGT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"tHj" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"tHk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"tHx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tHM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "tHS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"tIp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" +"tHV" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tIe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"tIk" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"tIs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tIw" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"tIJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/living/port_emb) +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -69358,87 +55492,65 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"tIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"tIP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "tIS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tIU" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"tJu" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"tJz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"tJA" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/area/almayer/hull/upper_hull/u_a_s) -"tJi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/bridgebunks) -"tJo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"tJF" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"tJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 + icon_state = "W" }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/main_office) -"tJy" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"tJN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"tJz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tJR" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/sign/safety/medical{ @@ -69446,144 +55558,206 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tJV" = ( -/obj/structure/machinery/vending/hydronutrients, +"tJX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tKa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"tJW" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"tKk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/commandbunks) -"tKf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"tKn" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"tKs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 }, -/area/almayer/command/lifeboat) -"tKr" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"tKv" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"tKx" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"tKA" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"tKQ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/living/bridgebunks) -"tLc" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tKS" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/storage/bag/plants{ - pixel_x = 3 +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"tLe" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"tLf" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/storage/bag/plants{ - pixel_y = -3 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"tLg" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"tLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tLJ" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/pilotbunks) +"tLN" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/area/almayer/living/grunt_rnr) -"tLy" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tLO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"tLM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"tMf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/area/almayer/maint/hull/lower/l_f_p) +"tMc" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"tMe" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"tMW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"tMp" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"tMr" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"tMs" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tMK" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"tMP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/living/briefing) -"tNj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tNd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"tNy" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"tNB" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"tNC" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 1 }, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/area/almayer/shipboard/brig/perma) -"tNF" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"tNH" = ( /obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, /turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"tNP" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/command/computerlab) +"tNM" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) "tNR" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -69593,158 +55767,225 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tNT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"tOd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +"tOv" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"tOw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"tOD" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"tOr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tOJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 }, +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"tOK" = ( +/obj/structure/machinery/light/containment, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/hydroponics) -"tOC" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "S" }, -/area/almayer/engineering/laundry) -"tOW" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tOT" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/area/almayer/living/grunt_rnr) -"tPj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" +/obj/structure/stairs{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"tPg" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"tPo" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"tPv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "tPI" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"tQd" = ( +"tPR" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"tPS" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tQo" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"tPY" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"tQd" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"tQL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"tQV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"tRc" = ( /obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 + dir = 4 }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tQg" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null }, -/area/almayer/hull/lower_hull/l_m_s) -"tRA" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"tQh" = ( +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 }, -/area/almayer/shipboard/brig/processing) -"tRD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 }, -/area/almayer/living/basketball) -"tRV" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"tRX" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"tSc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tQj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"tQn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"tQp" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"tQu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"tQv" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"tQL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"tQR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"tQV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"tQX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"tQZ" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"tRe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"tRn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"tRp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tRy" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tRB" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -69755,78 +55996,77 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tSr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"tSw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/stern_hallway) -"tSB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/living/briefing) -"tSF" = ( +"tSt" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"tSH" = ( /obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = -1 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"tSL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tSQ" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/command/combat_correspondent) -"tTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"tSY" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + desc = "A powerful server tower housing various AI functions."; + name = "server tower"; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tTh" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"tTo" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/living/briefing) -"tTu" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/area/almayer/lifeboat_pumps/south1) -"tTD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"tTq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tTM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"tTO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/living/captain_mess) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"tUf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -69834,115 +56074,172 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"tUl" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "tUo" = ( /obj/item/clipboard, /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/command/cic) +"tUq" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) "tUx" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"tUI" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"tUS" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +"tUA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tUG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"tUP" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"tUQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tUX" = ( +/obj/structure/closet/secure_closet/quartermaster_uscm, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"tVa" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"tVg" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/obj/structure/closet, +/obj/item/clothing/head/bearpelt, +/turf/open/floor/almayer/plate, /area/almayer/living/port_emb) -"tVf" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"tVh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/bridgebunks) "tVo" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tVq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha) -"tVB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"tWg" = ( +"tVr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"tVs" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" }, -/area/almayer/shipboard/brig/general_equipment) +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"tVt" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"tVC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tWC" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"tWD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"tWI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"tWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"tWN" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 }, -/area/almayer/medical/upper_medical) -"tXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"tWR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"tXd" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"tXe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) "tXi" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_2"; @@ -69950,199 +56247,72 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"tXj" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"tXs" = ( +"tXL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/cryo) -"tXz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"tXT" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"tXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"tYi" = ( -/obj/structure/disposalpipe/segment{ +"tYe" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"tYv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_f_p) -"tYw" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"tYB" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"tYX" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) -"tZc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"tYg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"tYP" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"tZe" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"tYT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"tZi" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"tZm" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"tZF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"tZP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/engineering/upper_engineering/port) -"tZZ" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"tZk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/area/almayer/engineering/upper_engineering/port) -"uaa" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"tZt" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) "uac" = ( /obj/structure/machinery/light{ dir = 1 @@ -70151,49 +56321,58 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uah" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"ual" = ( -/obj/structure/sink{ - pixel_y = 24 +"uap" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4; + layer = 3.2; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 23 }, -/turf/open/floor/almayer/research/containment/corner_var1{ +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"uax" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/area/almayer/medical/containment/cell) -"uay" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"uaC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "sterile_green_corner" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/medical/lower_medical_medbay) -"uaI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"uaO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uaP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"uaT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/medical_science) +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 + }, +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -70210,159 +56389,174 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"uaZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" +"ubK" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_m_s) -"ubd" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"ubA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ubP" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ubX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ubY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/airoom) -"uck" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ubZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"ucj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "ucp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) +"ucq" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ucw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"udb" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"udi" = ( -/turf/open/floor/almayer{ - icon_state = "red" +"ucD" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" }, -/area/almayer/living/briefing) -"udr" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"ucI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ucS" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ucU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"udc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"udp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/lower_medical_lobby) -"udx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) -"udF" = ( +"udu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"udw" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"udG" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"udy" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"udK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/almayer/shipboard/brig/cic_hallway) -"udV" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"udI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"udL" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) +"udM" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"udT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "udZ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"ued" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/port_point_defense) -"ueh" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"ueo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/evidence_storage) +"uek" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"uem" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ueA" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ueE" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -70376,26 +56570,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"ueJ" = ( +"ueY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"ueZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/squads/alpha) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) "ufh" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -70403,246 +56584,290 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ufp" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"ufx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"ufJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +"ufC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ufG" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/almayer/squads/req) -"ufS" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"ufI" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 }, -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"ufM" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/command/combat_correspondent) -"ugs" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"ufT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"ufX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 +/obj/vehicle/powerloader{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"ugk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ugr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ugJ" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"ugx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"ugQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"ugT" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"uha" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/shipboard/brig/main_office) -"ugV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"uhe" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"uhl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"uhk" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"uhm" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uhu" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"uhJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uhL" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "uhM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"uhP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"uia" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"uig" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"uhS" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) "uik" = ( /obj/structure/bed/chair/comfy/blue, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"uim" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +"uis" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/area/almayer/hull/lower_hull/l_m_p) -"uiG" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/engineering/upper_engineering/starboard) -"uiR" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"uiy" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"uiC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/engineering/upper_engineering/starboard) -"uiT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/area/almayer/hallways/hangar) -"uiZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"uiN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/command/cichallway) -"ujz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"uiV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 8; - pixel_y = 3 + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"ujh" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"ujA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"ujo" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_p) -"ujV" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 }, -/area/almayer/living/grunt_rnr) -"ukh" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"uju" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ujv" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"ujB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"ujG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"ujM" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"uks" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/hallways/aft_hallway) -"ukt" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "Delta_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"uku" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop/hangar) -"ukA" = ( -/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"ukz" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ukB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ukS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"ukU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"ukO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ukQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) "ukV" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /obj/structure/machinery/light{ @@ -70650,417 +56875,441 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ula" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ukX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"ukZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_aft_hallway) "uli" = ( /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"uly" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +"ulp" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/squads/req) -"ulZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"ulw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"ulL" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"ulT" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/living/offices) -"umh" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"umc" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"umm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"ums" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/powered/agent) -"umv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"umt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"umw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 }, -/area/almayer/hull/lower_hull/l_m_s) -"umy" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"umx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"umP" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/almayer/engineering/upper_engineering/starboard) -"umC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/medical/upper_medical) -"umR" = ( -/obj/structure/machinery/power/apc/almayer/hardened{ - cell_type = /obj/item/cell/hyper; +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"umQ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"unb" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north2) -"umS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"unm" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"umT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"unu" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_f_p) -"umY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"unx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 5"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"unh" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"unz" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"unF" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"unH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/port_point_defense) -"uns" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"unO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"unS" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) -"unJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"unW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"unT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 }, -/obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"unU" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"uoa" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"uoh" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uon" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"uop" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 }, -/obj/item/toy/plush/barricade, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/area/almayer/living/port_emb) -"uoi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uoq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"uot" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"uow" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"uoH" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"uoS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"uoY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"upe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"upt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"upM" = ( -/obj/structure/machinery/light{ +"uoJ" = ( +/obj/structure/bed/chair/comfy/beige{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"upO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"upR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"upb" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"upx" = ( +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 }, -/turf/open/floor/almayer{ +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "orange" + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/port) -"uqa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"upy" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/hull/upper_hull/u_f_p) -"uqd" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"upB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"upE" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"upW" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"upZ" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uqe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "N" }, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"uqm" = ( +/obj/item/stack/tile/carpet{ + amount = 12 }, -/area/almayer/medical/containment) +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "uqo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"uqA" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"uqH" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) "uqI" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"urM" = ( +"uqY" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"urm" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"urn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"urt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"urE" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"urL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" }, -/area/almayer/engineering/upper_engineering) +/obj/effect/landmark/map_item, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "urN" = ( /obj/effect/landmark/start/marine/leader/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"ush" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 - }, -/obj/structure/machinery/light{ +"urW" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/chief_mp_office) -"usi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"usm" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"uso" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, -/area/almayer/hull/upper_hull/u_m_p) -"usr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"usx" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"usw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"usP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"usy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"usQ" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" + dir = 6 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "usX" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -71069,58 +57318,114 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"uto" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +"usZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room"; + name = "\improper Storage Shutters" }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/plating, +/area/almayer/squads/req) +"uta" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"utc" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ute" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uth" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"uti" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"utm" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"uty" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"utA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering) -"utK" = ( /obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"utH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"utO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"utQ" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) "utX" = ( /turf/closed/wall/almayer/research/containment/wall/connect_e2{ icon_state = "containment_wall_connect_e" }, /area/almayer/medical/containment/cell) -"utZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"uue" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cryo) "uuj" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -71132,17 +57437,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uuq" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) "uuu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -71166,15 +57460,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uux" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null +"uuw" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, -/area/almayer/powered) +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"uuF" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -14 + }, +/obj/structure/machinery/aicore_lockdown{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -71198,106 +57557,85 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uvk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"uvs" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"uvt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"uvu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"uvy" = ( +"uvc" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"uvg" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/brig/armory) -"uvG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"uvP" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"uvj" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uvm" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"uvq" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"uvr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer/research/containment/corner{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uwr" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/almayer/medical/containment/cell) -"uvY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) -"uws" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uwt" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) +"uwA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"uwC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"uwJ" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71307,32 +57645,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"uwX" = ( -/obj/structure/machinery/light/small{ +"uwV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ dir = 8 }, -/obj/item/prop/magazine/boots/n160{ - pixel_y = -8; - pixel_x = 4; - layer = 2.8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/commandbunks) -"uwZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) "uxa" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -71341,22 +57660,25 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"uxc" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"uxj" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uxu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -71386,21 +57708,89 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uxZ" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"uxP" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"uxT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/midship_hallway) +"uxW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"uxY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"uyd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"uye" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"uyn" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "uys" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/squads/req) +"uyt" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"uyy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) "uyC" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -71408,12 +57798,6 @@ "uyH" = ( /turf/closed/wall/almayer/research/containment/wall/divide, /area/almayer/medical/containment/cell) -"uyJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) "uyN" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -71439,56 +57823,40 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"uzb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Cells"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"uzg" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"uzm" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"uzx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"uzd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"uzf" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"uzp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"uzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/cryo) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"uzD" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) "uzE" = ( /obj/structure/bed/chair{ dir = 8 @@ -71498,96 +57866,112 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"uzU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 5; - pixel_y = 3 +"uzK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 10; - pixel_y = 15 +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"uzV" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"uzZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 9 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "firearm_storage_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) "uAb" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uAj" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"uAs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"uAC" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"uAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"uAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"uAr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uAu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/area/almayer/living/port_emb) -"uAW" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uAH" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"uAL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"uAQ" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) "uBi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -71597,27 +57981,53 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uBn" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"uBm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/vehiclehangar) -"uBw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"uBy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"uBz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"uBC" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"uBF" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"uBK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "uBN" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -71640,44 +58050,27 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uCh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"uCl" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"uCM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"uBV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"uCG" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"uCI" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/midship_hallway) +"uCK" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"uCT" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/midship_hallway) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -71685,333 +58078,369 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDn" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) -"uDp" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"uDA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"uDr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lockerroom) -"uDB" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"uDs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"uDx" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"uDy" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"uEj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 }, -/area/almayer/hull/lower_hull/l_m_s) -"uDW" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uEn" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"uEu" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uEy" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/area/almayer/squads/delta) -"uEc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uEB" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"uEv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"uEO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"uEQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"uFd" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) +"uEZ" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"uFg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"uFo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"uFm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lockerroom) -"uFp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/shipboard/brig/general_equipment) -"uFt" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"uFA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"uFL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"uFP" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"uGa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/south2) -"uGc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"uGo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"uFN" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"uFS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"uFV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"uFW" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"uGt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"uFY" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/midship_hallway) +"uGe" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) +"uGi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"uGw" = ( +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = -25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uGA" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"uGQ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"uId" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" + pixel_y = 7 }, -/area/almayer/hallways/aft_hallway) -"uIp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uGH" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"uIv" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"uGJ" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) +"uGO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"uII" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"uHc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"uHy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uIJ" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"uHz" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"uHB" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"uHS" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/squads/alpha) -"uIT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"uHT" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"uHW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/squads/alpha_bravo_shared) -"uJk" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/area/space) -"uJl" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/hull/lower_hull/l_m_s) -"uJo" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_m_s) -"uJs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"uHX" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"uIk" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"uIo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"uJB" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"uJU" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"uIr" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"uIB" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uIL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 }, -/area/almayer/squads/alpha) -"uKd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uIX" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"uIZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uJc" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/command/cichallway) -"uKe" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +/obj/structure/sign/safety/maint{ + pixel_x = -18 }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"uJw" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"uJz" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uJY" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"uKg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"uKn" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"uKq" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"uKw" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Left"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 }, -/area/almayer/living/gym) -"uKk" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"uKC" = ( /obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"uKJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"uKv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/multitool{ - desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; - icon_state = "multitool_big"; - name = "\improper Oversized Security Access Tuner"; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"uKA" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"uKM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -72023,56 +58452,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) +"uLe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "uLn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"uLu" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"uLp" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"uLt" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"uLv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uLy" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"uLz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"uLJ" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"uLF" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 }, -/area/almayer/shipboard/brig/execution) -"uLN" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"uLW" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"uLU" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"uLZ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_m_s) +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -72081,136 +58534,229 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"uMk" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 +"uMo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/briefing) -"uMl" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"uMs" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"uML" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"uMO" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"uMP" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"uMY" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"uNf" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/red/east, /area/almayer/squads/alpha) -"uMn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"uNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"uNy" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/port_emb) -"uMS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"uNJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/area/almayer/squads/delta) -"uNe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"uNR" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"uNS" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"uNV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"uNg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/bridgebunks) -"uNl" = ( +/area/almayer/command/lifeboat) +"uNX" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"uOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"uOm" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"uOp" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"uOy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, -/area/almayer/shipboard/brig/chief_mp_office) -"uNB" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/living/briefing) -"uNF" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"uOE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uOG" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/upper_hull/u_f_p) -"uNL" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"uNM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"uOU" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"uOV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"uPh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/living/briefing) -"uNN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"uPm" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/living/basketball) -"uNV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uNW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"uPz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"uPD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/hull/lower_hull/l_m_p) -"uOc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uPJ" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/vehiclehangar) -"uOi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south2) -"uOJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"uPO" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/pilotbunks) -"uPr" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"uPS" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"uPT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" }, -/area/almayer/living/basketball) -"uPI" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -72219,19 +58765,47 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) +"uPX" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"uQd" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"uQe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"uQg" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"uQl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "uQm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"uQn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) "uQo" = ( /obj/structure/machinery/disposal, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -72244,22 +58818,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"uQU" = ( -/obj/structure/stairs{ - dir = 1 +"uQx" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"uQA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"uQC" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uQE" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uQJ" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"uRa" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"uRd" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"uRj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"uRk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"uRl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72267,27 +58899,48 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"uRr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer{ - icon_state = "plate" +"uRp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"uRs" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/area/almayer/engineering/engineering_workshop/hangar) -"uRt" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"uRu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"uRL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ dir = 8; - icon_state = "sterile_green_side" + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/area/almayer/medical/upper_medical) +/obj/structure/phone_base/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -72315,42 +58968,115 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRQ" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"uRP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"uSb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"uSo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"uSG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"uSH" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"uSI" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"uSM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"uSq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"uSW" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/area/almayer/hull/lower_hull/l_f_p) -"uSL" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + layer = 2.5 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uSY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"uSS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"uTb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lockerroom) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"uTg" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"uTk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uTn" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 + }, +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"uTu" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72359,93 +59085,72 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"uTU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"uTy" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"uTz" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/cic) -"uTY" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/window{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"uTZ" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"uTC" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"uTH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 }, -/area/almayer/engineering/upper_engineering/port) -"uUe" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Remote dropship navigation computer"; + pixel_y = 12; + shuttleId = "dropship_alamo" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"uTJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uTT" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/faxmachine/uscm/command{ + density = 0; + department = "AI Core"; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"uUo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"uUs" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/perma) -"uUt" = ( +"uUu" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) "uUz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -72456,20 +59161,30 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"uUO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" +"uUI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"uUM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"uUP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"uUT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) "uUV" = ( /obj/structure/machinery/shower, /obj/structure/window/reinforced/tinted{ @@ -72480,351 +59195,414 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"uVb" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +"uUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"uVd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uVm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"uVh" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"uVp" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"uVC" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/area/almayer/living/grunt_rnr) -"uVv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"uVG" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"uVJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = 24; + req_one_access_txt = "200;91;92" }, +/turf/open/floor/almayer/aicore/glowing/no_build, /area/almayer/command/airoom) -"uVA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"uVS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uVY" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"uWe" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/almayer/shipboard/brig/cic_hallway) -"uVD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"uWg" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 8; - icon_state = "plating_striped" + vent_tag = "Access Hall" }, -/area/almayer/living/cryo_cells) -"uVF" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"uWh" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"uWi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/perma) -"uVR" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"uVX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"uWc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"uWC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"uWI" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/req) -"uWV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"uWj" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"uWY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/engineering/lower) +"uWq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"uXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"uWs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"uWu" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"uWF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uWV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"uXj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"uXd" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"uXv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12 }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uXz" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/medical/containment/cell) -"uXu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"uXC" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"uXG" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"uXL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"uXJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 12; + pixel_y = 6 }, -/area/almayer/engineering/upper_engineering/starboard) -"uYa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uXM" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"uXS" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"uXU" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "uYg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uZo" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ +"uYh" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"uZH" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"uYF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"uZQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/repair_bay) -"uZZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"uYP" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"uYX" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, -/area/almayer/living/basketball) -"vak" = ( -/obj/structure/sign/safety/security{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"uZd" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"uZz" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"uZD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"uZP" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"uZT" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"vad" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"van" = ( +/obj/structure/sign/safety/bridge{ pixel_x = 15; pixel_y = 32 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"vba" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/fore_hallway) +"vau" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"vay" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/port) -"vbf" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"vaK" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"vbb" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"vbk" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/hangar) -"vbB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vbM" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"vbp" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/sign/poster/art{ + pixel_y = 32 }, -/area/almayer/squads/bravo) -"vbS" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vbu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"vbB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vbD" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"vbJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/medical/morgue) -"vbV" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 1 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vbK" = ( +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"vci" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"vck" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"vce" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"vcq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + name = "\improper Tool Closet" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"vco" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vcu" = ( /obj/effect/landmark/start/engineering, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vcE" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"vcG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"vcK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"vdJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 +"vcI" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"vcO" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vcV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/repair_bay) -"vdL" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"vdh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"vdn" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) "vdM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -72835,244 +59613,187 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vdO" = ( -/obj/structure/pipes/standard/cap/hidden{ +"vdV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"vdW" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"ven" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"veu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"vez" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"vfa" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/lower/starboard_aft_hallway) +"vdX" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ved" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"vej" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"vfo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/powered) -"vfv" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"vek" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"ver" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ves" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"vfx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"vev" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"veC" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/squads/bravo) -"vfB" = ( -/turf/open/floor/almayer/no_build{ +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"veJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/almayer/command/airoom) -"vfJ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hull/lower_hull/l_m_p) -"vfP" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/medical/containment/cell) -"vgk" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"veP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"vgx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/hydroponics) -"vgB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 + pixel_y = 3 }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"vfd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_stern) +"vff" = ( +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" + pixel_y = -32 }, -/area/almayer/medical/medical_science) -"vgC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vfp" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"vfF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/hallways/starboard_hallway) -"vgD" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"vfW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"vfY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vgs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/area/almayer/command/lifeboat) -"vgF" = ( -/obj/structure/stairs{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vgE" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vgH" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"vgI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"vgJ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) -"vgQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"vhe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"vhq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"vgY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"vht" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_aft_hallway) +"vhf" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) +"vhg" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) "vhw" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -73080,22 +59801,30 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vhI" = ( -/obj/structure/closet/firecloset, +"vhA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"vhH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"vhR" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) +/area/almayer/maint/hull/lower/l_a_p) +"vhM" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"vhS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "vhX" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -73103,476 +59832,496 @@ }, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"vhY" = ( -/obj/structure/sign/goldenplaque, -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"vif" = ( -/obj/structure/bed/chair/wood/normal{ +"vip" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"viu" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/living/chapel) -"vih" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"viw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"viy" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"viC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/morgue) -"vil" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"viG" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"viY" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"vjm" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"vjq" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vjw" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vjI" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"vjK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vka" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"vkk" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"vkq" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vkr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/squads/bravo) -"vim" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"vks" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"vkJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"vit" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/almayer/hallways/lower/port_aft_hallway) +"vkO" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/medical/operating_room_four) -"viu" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) +"vld" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vlg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"vlj" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vll" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vlz" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, /obj/structure/window/reinforced{ dir = 4; - health = 80 + pixel_y = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"viB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/plating/plating_catwalk{ - allow_construction = 0 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/command/airoom) -"viJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"vlI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/gym) -"viN" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"vmo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/securestorage) -"viO" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"vmB" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 }, -/area/almayer/living/briefing) -"viS" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"vmE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/squads/bravo) -"vjb" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vmI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"vjg" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"vmJ" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"vmV" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"vne" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/port_missiles) -"vjx" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vnn" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"vjC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"vnu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"vnL" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vnM" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/fore_hallway) +"vnP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"vjD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vnU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"vnW" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"voa" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"voi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hull/lower_hull/l_m_p) -"vjK" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vka" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"vkb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 +/area/almayer/maint/hull/upper/u_f_p) +"von" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/captain_mess) -"vkp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"vov" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"vkD" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"voB" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_y = 13 }, /obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = -16; + pixel_x = -12; pixel_y = 13 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"voH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"vkM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/area/almayer/hallways/lower/port_fore_hallway) +"voL" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"voV" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"vpf" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/general_equipment) -"vkR" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"vpk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" }, -/area/almayer/shipboard/brig/cic_hallway) -"vlc" = ( -/obj/structure/phone_base{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"vps" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"vpu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/squads/req) -"vli" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"vpv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/power/apc/almayer/hardened{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"vpM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"vpX" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vqb" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/shipboard/brig/processing) -"vln" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"vqi" = ( +/obj/effect/landmark/railgun_computer{ + dir = 1 }, -/area/almayer/medical/lower_medical_lobby) -"vly" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) -"vlR" = ( -/obj/structure/machinery/light{ +"vqk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"vlX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"vme" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"vml" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"vmK" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, /obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"vmN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"vmW" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"vnD" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"vnV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"vnY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"vot" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + pixel_y = 32 }, -/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"vox" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"voA" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"voQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +/area/almayer/maint/hull/lower/l_a_p) +"vqq" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"vqw" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 }, -/area/almayer/hull/lower_hull/l_m_p) -"vpn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south1) -"vpt" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/stack/folding_barricade, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/briefing) -"vpI" = ( -/obj/effect/landmark/start/police, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"vpV" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"vqA" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 }, -/area/almayer/command/cic) -"vpW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vqD" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"vqK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"vqL" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"vqH" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/engineering/laundry) -"vqO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"vqW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"vqI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"vqV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "vqZ" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -73600,6 +60349,38 @@ "vra" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) +"vrd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vrs" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"vrw" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -73607,203 +60388,214 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vrB" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"vrI" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"vrM" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/evidence_storage) -"vrQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "perma_exit"; - name = "\improper Exit Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +"vrz" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"vrG" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"vrX" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/perma) -"vrW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vsa" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/area/almayer/living/briefing) -"vse" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vsc" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"vsg" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"vsF" = ( +"vsv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vsw" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"vsD" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"vsI" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"vsK" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"vsL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"vsN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"vsW" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"vte" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/midship_hallway) +"vtj" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"vsJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Power Control Room"; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;6" +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"vto" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"vtw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" }, -/area/almayer/shipboard/brig/processing) -"vsV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"vtE" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"vtF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"vtQ" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"vta" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ +/area/almayer/maint/hull/upper/p_bow) +"vtR" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"vti" = ( -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "pipe-c" }, -/area/almayer/medical/medical_science) -"vtm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"vtV" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 8 }, -/area/almayer/medical/medical_science) -"vtr" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/powered/agent) -"vtx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vub" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"vuf" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/medical/upper_medical) -"vtB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"vug" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"vut" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"vuu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"vuy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/port_hallway) -"vub" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"vug" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"vuv" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_a_p) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"vuF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) "vuG" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -73814,30 +60606,55 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vuL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vuP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, -/area/almayer/squads/delta) -"vuR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"vuZ" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vuT" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/cryo_cell{ + dir = 1 }, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vuY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"vva" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"vvc" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"vvk" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -73849,60 +60666,51 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"vvy" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"vvY" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +"vvt" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"vvE" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"vvK" = ( /obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 - }, -/obj/item/tool/soap/syndie, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/port_emb) -"vwF" = ( -/obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"vwb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"vwe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"vwj" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"vwu" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/medical/lower_medical_lobby) +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "vwI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/microwave{ @@ -73910,66 +60718,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"vwN" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +"vwS" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"vxb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vxf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"vxq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vxu" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/area/almayer/hull/lower_hull/l_f_p) -"vwO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"vwP" = ( +/area/almayer/engineering/lower) +"vxx" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ +/obj/item/clothing/head/hardhat/orange{ pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 + pixel_y = 16 }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 }, -/area/almayer/hallways/repair_bay) -"vwV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4 +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 }, -/area/almayer/command/cic) -"vxb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vxC" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vxJ" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "vxM" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cryo) @@ -73993,13 +60794,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vyg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer{ - icon_state = "plate" +"vyc" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vyd" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -74012,249 +60828,304 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"vyp" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"vyu" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"vyE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) +"vyt" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vyU" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/structure/machinery/light{ +"vyS" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"vzl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"vza" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"vzh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"vzo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) "vzp" = ( /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell/cl) -"vzq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"vzu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"vzs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"vzt" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"vzz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" - }, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/area/almayer/maint/upper/u_m_s) +"vzy" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "vzK" = ( /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"vzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"vAq" = ( -/obj/structure/bed/chair{ - dir = 1 +"vzW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"vAk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vAl" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hallways/hangar) -"vAE" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"vAw" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"vAB" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"vAC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) "vAG" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"vAQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 +"vAH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"vAI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"vAM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"vAP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"vBh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"vAU" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/vents/scrubber/no_boom{ +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer/no_build{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/airoom) -"vBm" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/main_office) -"vBp" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vBi" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"vBr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vBw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced/ultra{ - dir = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"vBy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" }, -/area/almayer/living/briefing) -"vBJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"vBQ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vBR" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/area/almayer/shipboard/brig/chief_mp_office) -"vBU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"vBV" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/squads/req) -"vCg" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"vCb" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"vCl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vCn" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vCA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"vCO" = ( +/obj/effect/landmark/start/bridge, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"vCQ" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"vCR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 }, -/area/almayer/hallways/hangar) -"vCk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"vCY" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"vDf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/hydroponics) -"vCx" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"vDh" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"vCy" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/cells) -"vCz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"vDj" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) -"vCG" = ( -/obj/structure/toilet{ - dir = 8 +"vDs" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 }, -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"vDL" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"vDN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"vDP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsLower"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/area/almayer/shipboard/brig/chief_mp_office) -"vCO" = ( -/obj/effect/landmark/start/bridge, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"vDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/step_trigger/ares_alert/public{ + alert_id = "AresStairs"; + alert_message = "Caution: Movement detected in ARES Core."; + cooldown_duration = 1200 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"vDT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"vEc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/area/almayer/medical/hydroponics) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) "vEj" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -74262,107 +61133,145 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) -"vEn" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 +"vEw" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"vEF" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"vEH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/stack/sheet/mineral/uranium{ - layer = 2.99 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"vEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"vFc" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"vFl" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"vFx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"vFM" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"vFO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/item/folder/white{ + pixel_x = 6 }, -/area/almayer/living/briefing) -"vEr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/item/tool/pen{ + pixel_y = 8 }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"vEx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null +"vFZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vGd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/area/almayer/medical/upper_medical) -"vEH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"vFb" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"vGs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"vFv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/midship_hallway) +"vGt" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/starboard) -"vFw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vGx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + dir = 9 }, -/area/almayer/lifeboat_pumps/north1) -"vGk" = ( +/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"vGr" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"vGy" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"vGA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"vGG" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"vGI" = ( +/area/almayer/maint/hull/upper/u_f_s) +"vGC" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vGD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"vGK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 }, -/area/almayer/living/numbertwobunks) +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) "vHh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -74373,209 +61282,172 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"vHl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"vHq" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"vHk" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +/obj/item/device/cotablet, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"vHR" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"vHY" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/living/port_emb) -"vHs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"vIb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"vId" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = 10 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"vHO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/item/stack/cable_coil{ + pixel_x = 8; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, -/area/almayer/medical/containment/cell) -"vHW" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"vIf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"vIm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01; + pixel_x = -3; + pixel_y = 2 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vIe" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "vIu" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"vIA" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"vIN" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"vIP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 +"vID" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/machinery/door/window/westright{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vII" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) +"vIK" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"vIO" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/command/cic) -"vJg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 }, -/area/almayer/command/securestorage) -"vJo" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"vIY" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"vJc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"vJy" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"vJr" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null }, -/area/almayer/hull/upper_hull/u_a_p) -"vJM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"vJv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"vJw" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"vJx" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"vJB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vJF" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vJN" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"vJV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vJR" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"vJU" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/bravo) +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) "vJZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -74585,107 +61457,156 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"vKb" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 +"vKn" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"vKq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/medical/containment) -"vKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/living/briefing) -"vKf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"vKr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"vKF" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"vKv" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vKw" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"vKx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 }, -/area/almayer/hallways/aft_hallway) -"vLh" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_f_s) -"vLj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vKz" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"vKA" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"vKP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vKX" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vLa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"vLv" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"vLd" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"vLA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"vLp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"vLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"vLR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vLU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vLV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"vMn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vMa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vMc" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -74693,53 +61614,64 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"vMC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"vMD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"vMP" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"vNb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room"; + req_access = list(); + req_one_access = list(19,7) }, -/area/almayer/command/combat_correspondent) -"vME" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"vNg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"vNh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"vMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"vNk" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"vMI" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"vNp" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"vNs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vNt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vNx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "vND" = ( /obj/structure/bed/chair{ dir = 8; @@ -74747,85 +61679,134 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"vNF" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"vNI" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + layer = 3.3 + }, +/obj/item/desk_bell/ares{ + anchored = 1; + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vNJ" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vNK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vNL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"vNO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"vNW" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vNS" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/area/almayer/command/cic) -"vOd" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vNU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"vNZ" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 }, -/area/almayer/shipboard/brig/surgery) +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"vOq" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"vOw" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"vOx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"vOP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"vPj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/structure/pipes/vents/pump{ +"vOC" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"vOJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"vOL" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"vOS" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"vOV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) "vPm" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"vPr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"vPv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) +"vPs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "vPw" = ( /obj/structure/machinery/light{ dir = 1 @@ -74836,406 +61817,336 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"vPK" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"vPC" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/delta) -"vPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vPS" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"vQd" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/obj/structure/sign/safety/restrictedarea{ +/obj/structure/sign/safety/manualopenclose{ pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"vQe" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"vQf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" + pixel_y = -32 }, -/area/almayer/command/securestorage) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"vQN" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 4"; - name = "\improper Courtyard Divider" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cells) -"vRa" = ( +"vQz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" - }, -/turf/open/floor/strata{ - desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, -/area/almayer/shipboard/sea_office) -"vRb" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, -/area/almayer/command/cic) -"vRu" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"vRz" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_f_p) -"vRX" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vRm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/almayer/plating/northeast, /area/almayer/medical/upper_medical) -"vSg" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vRt" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 }, -/area/almayer/hull/upper_hull/u_a_p) -"vSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/shipboard/brig/medical) +"vRy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"vRA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/command/cic) -"vSn" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" }, -/area/almayer/medical/lower_medical_lobby) -"vSp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/area/almayer/living/grunt_rnr) -"vSE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"vSG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"vRI" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"vRM" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, -/area/almayer/medical/chemistry) -"vSH" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"vRP" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vRR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"vSK" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"vRU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) +"vSa" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"vSu" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/briefing) -"vSN" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/shipboard/brig/cic_hallway) -"vSW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vSC" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/squads/delta) -"vTt" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vSI" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"vST" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"vTb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"vTu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/silvercorner/east, /area/almayer/command/cic) -"vTv" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 +"vTi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"vTk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering) -"vTK" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vTl" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"vTp" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"vTF" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "vTS" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"vUb" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" +"vTZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/squads/alpha) -"vUe" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"vUd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vUg" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item{ + pixel_x = 5 }, +/obj/item/facepaint/black{ + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) "vUh" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"vUI" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; +"vUm" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vUN" = ( +/obj/structure/sign/safety/escapepod{ pixel_y = 32 }, -/obj/structure/sign/safety/restrictedarea{ +/obj/structure/sign/safety/north{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"vUL" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vUO" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"vUT" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"vUU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/port_hallway) -"vVb" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"vUX" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/green, +/area/almayer/living/offices) "vVd" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"vVh" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ +"vVp" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"vVs" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"vVw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"vVr" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/engineering/upper_engineering/port) -"vVW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"vVC" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"vVJ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) -"vWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"vWd" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"vWj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"vWq" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vWu" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"vWz" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/intercom/normandy{ layer = 3.5 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/almayer/living/offices/flight) -"vWo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/evidence_storage) -"vWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"vWx" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) "vWA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -75273,48 +62184,111 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"vWJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +"vWO" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vWS" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vWW" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/stern_point_defense) +"vXc" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 }, -/area/almayer/hallways/hangar) -"vWK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 }, -/area/almayer/engineering/lower_engineering) -"vXd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"vXe" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/upper/u_a_p) +"vXl" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vXm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vXr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"vXz" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vXC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" + }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vXD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"vXh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 }, -/area/almayer/command/airoom) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vXH" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) "vXM" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -75334,84 +62308,34 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"vXQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"vXX" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"vXY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vXS" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vXU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_m_s) -"vYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"vYb" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/gym) -"vYt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"vYz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 - }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) +"vYx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "vYC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -75421,23 +62345,46 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"vYM" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"vZb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"vYD" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"vYL" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vYU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop) +"vYV" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"vZa" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/alpha) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vZc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"vZk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"vZo" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) "vZv" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, @@ -75445,121 +62392,111 @@ "vZw" = ( /turf/open/floor/almayer/research/containment/floor2, /area/almayer/medical/containment/cell/cl) -"vZA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"vZJ" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"wan" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"waD" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"wba" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +"vZB" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"vZR" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"vZW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"wbe" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = 7; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = -8; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vZY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = -8; - pixel_y = -3 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/living/briefing) -"wbh" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"waj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"wau" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"waw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 }, -/area/almayer/hallways/starboard_hallway) -"wbj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"wax" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "E" }, -/area/almayer/hallways/aft_hallway) -"wbu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"waz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"wbx" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"waB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"waF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"wbC" = ( -/obj/structure/machinery/atm{ +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"waL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"waN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"waS" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"wbH" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) "wbJ" = ( /obj/structure/machinery/door_control/airlock{ id = "n_engi"; @@ -75569,169 +62506,156 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"wbN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" +"wbU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -2; + pixel_y = 1 }, +/turf/open/floor/almayer/orangefull, /area/almayer/living/briefing) -"wbO" = ( +"wbV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/pilotbunks) -"wbP" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/operating_room_four) -"wbX" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"wbW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/device/cotablet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/command/cic) -"wcn" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"wcN" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"wcc" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/shipboard/port_point_defense) -"wcR" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"wcq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/command/lifeboat) -"wdb" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wcV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"wcW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) "wdf" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"wdo" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +"wdm" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"wdq" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) -"wdr" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"wdt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"wdu" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/area/almayer/shipboard/brig/main_office) -"wdv" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = 18; + req_access_txt = "31" }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) "wdz" = ( /obj/effect/landmark/start/marine/engineer/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"wdF" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/processing) -"wdH" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"wdI" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"wdJ" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"wei" = ( +"wdU" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"wee" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"weg" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/area/almayer/medical/hydroponics) -"wex" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wej" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"weo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/living/pilotbunks) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"wet" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "weC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75749,38 +62673,58 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"weR" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"weU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"weT" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"wff" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"wfw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"wft" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wfC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) -"wfL" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +"wfG" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"wfT" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 }, -/area/almayer/shipboard/brig/execution) +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -75791,126 +62735,115 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"wga" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 +"wgp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"wgA" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" }, -/area/almayer/living/briefing) -"wgd" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/aft_hallway) -"wgi" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"wgk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"wgE" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/living/briefing) +"wgV" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/command/cichallway) -"wgo" = ( -/obj/structure/machinery/light/small{ +/obj/structure/stairs{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"wgR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"whn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 }, -/area/almayer/shipboard/port_point_defense) -"wgU" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"who" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"whr" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"whc" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"whx" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) -"whB" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"whG" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"whI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/command/cichallway) -"whZ" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"wie" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"whX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"wid" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"wir" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"wiz" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "wiG" = ( /obj/structure/sign/poster{ pixel_x = -30; @@ -75926,197 +62859,137 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"wiN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"wiW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"wiO" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red/north, +/area/almayer/living/port_emb) +"wiX" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"wji" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wjk" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"wjo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"wjp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) "wjq" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"wjv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/upper_engineering) -"wjz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"wjB" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"wjC" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"wka" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"wkc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"wky" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) -"wkH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"wkM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsLower"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/public{ - alert_id = "AresStairs"; - alert_message = "Caution: Movement detected in ARES Core."; - cooldown_duration = 1200 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/white/open{ - closed_layer = 3.2; - id = "ARES Emergency"; - layer = 3.2; - name = "ARES Emergency Lockdown"; - needs_power = 0; - open_layer = 1.9; - plane = -7 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "test_floor4" - }, -/area/almayer/command/airoom) -"wkX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "SW-out"; + pixel_y = -1 }, -/area/almayer/engineering/upper_engineering/starboard) -"wlb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"wlj" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"wjR" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"wjX" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"wkj" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"wkF" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"wkL" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/area/almayer/engineering/engine_core) -"wlp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"wkQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_p) -"wly" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wla" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wlm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wlu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"wlv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wlz" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 }, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -76133,6 +63006,19 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"wlG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"wlH" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "wlK" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -76143,83 +63029,92 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wlL" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"wmg" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"wlM" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"wlV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"wlZ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"wmb" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"wmt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"wna" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; - icon_state = "red" + name = "\improper Briefing Room" }, -/area/almayer/shipboard/starboard_missiles) -"wmz" = ( -/obj/structure/bed/chair/comfy/bravo{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"wnf" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"wnv" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/area/almayer/living/briefing) -"wmE" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 4"; - name = "Cell 4" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/obj/structure/sign/safety/four{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"wmK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wnC" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/area/almayer/command/computerlab) -"wmQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wnP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 }, -/area/almayer/medical/lower_medical_medbay) -"wmT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/living/bridgebunks) -"wnh" = ( -/obj/structure/window/framed/almayer/white/hull, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"wnL" = ( -/obj/item/stack/tile/carpet{ - amount = 12 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "wnY" = ( /obj/item/tool/crowbar/red, /obj/structure/disposalpipe/segment{ @@ -76233,232 +63128,336 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"wos" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"woy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +"woL" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"woQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"woG" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"woM" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_a_p) -"wpg" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"woZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/powered/agent) -"wpj" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"wpa" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"wpc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"wpw" = ( -/obj/structure/bed/chair/comfy/ares{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - desc = "Has a valve and pump attached to it, connected to multiple gas tanks."; - name = "Security Vent" +/area/almayer/maint/hull/upper/u_f_p) +"wph" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"wpi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wpk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"wps" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 }, -/area/almayer/command/airoom) -"wpz" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +/obj/structure/sign/safety/cryo{ + pixel_x = 12; pixel_y = 28 }, -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"wpC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, -/area/almayer/living/port_emb) -"wpI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"wpG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"wpU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"wpW" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"wqa" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 }, -/area/almayer/living/grunt_rnr) -"wqc" = ( /obj/structure/sign/poster{ - pixel_y = 32 + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"wqk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"wqh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/area/almayer/hallways/hangar) -"wqq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"wqC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/phone_base/rotary{ + name = "Brig Wardens's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Warden's Office"; + pixel_x = 15 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"wqD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wqH" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"wqM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"wqN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"wqP" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wrb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"wqu" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/lobby) -"wqA" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"wrs" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wrt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"wrx" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"wqE" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"wqW" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/maint/hull/lower/stern) +"wrB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/upper_medical) +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) "wrC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"wrQ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +"wrD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wsm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"wss" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"wrT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/almayer/shipboard/brig/cic_hallway) +"wsF" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/hangar) -"wse" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"wsG" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"wsO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/medical/containment) -"wst" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) +"wta" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) -"wsD" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"wte" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"wti" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"wsP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -10; - pixel_y = 1 +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wtv" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 4; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"wtH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/item/weapon/broken_bottle{ - pixel_x = 11; - pixel_y = -2 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"wtI" = ( +/turf/open/floor/almayer/redcorner, /area/almayer/living/briefing) -"wsR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"wtd" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 +"wtK" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"wty" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -76466,526 +63465,533 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"wuc" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/surgery) -"wul" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"wun" = ( -/obj/structure/machinery/light{ +"wtO" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"wtP" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"wtT" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wuf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wuk" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, /area/almayer/squads/req) -"wuq" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"wuH" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +"wuv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wux" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"wvb" = ( +/area/almayer/maint/hull/lower/s_bow) +"wuC" = ( +/obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"wvj" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + dir = 9 }, -/area/almayer/lifeboat_pumps/south1) -"wvI" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"wuO" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"wuQ" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"wva" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 }, -/area/almayer/shipboard/brig/perma) -"wvT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wvi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/shipboard/brig/processing) -"wvU" = ( -/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wvB" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"wvF" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"wvQ" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"wwk" = ( -/obj/structure/bed/chair/comfy/bravo{ dir = 1 }, -/obj/item/stack/folding_barricade, -/obj/item/stack/sheet/mineral/uranium{ - layer = 2.99 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"wwr" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"wwb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Reception" }, -/area/almayer/squads/charlie) -"wwu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"wwm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wwy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wwP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"wwV" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wxa" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wxA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"wwD" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/lower/port_aft_hallway) +"wxL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"wwJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"wyq" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"wwW" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/almayer/medical/containment/cell/cl) -"wxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"wyz" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) +"wyC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"wxj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"wxq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_medbay) -"wxU" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wyI" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"wyK" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"wya" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"wyS" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"wyt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wzw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"wzA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 }, -/area/almayer/command/cichallway) -"wyv" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "Working Joe Cryogenics Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "91;92" +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 14 }, -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/airoom) -"wyO" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wyQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "ARES Emergency"; - indestructible = 1; - name = "ARES Emergency Lockdown"; - req_one_access_txt = "91;92" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wzJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution_storage) +"wzY" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" }, -/turf/open/floor/almayer/no_build{ - icon_state = "plating" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"wAf" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/airoom) -"wzg" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"wAB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_s) -"wzx" = ( +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"wAP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"wzZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"wAS" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"wBd" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"wBf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_medbay) -"wAd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) +"wBl" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"wBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"wAR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"wBn" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "green" + id = "Firing_Range_1"; + name = "range shutters" }, -/area/almayer/hallways/port_hallway) -"wAU" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/structure/sign/poster/music{ - pixel_x = -27 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"wBA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/light, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" }, -/area/almayer/living/briefing) -"wBY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"wCh" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"wBB" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hull/upper_hull/u_a_s) -"wCs" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"wBD" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"wCI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"wCM" = ( +"wBH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door_control{ dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"wCT" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 97; - vector_y = -65 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 }, -/area/almayer/command/airoom) -"wDm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"wBO" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"wBP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/area/almayer/hull/lower_hull/l_a_s) -"wDs" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"wBW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"wBX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/area/almayer/shipboard/brig/cells) -"wDy" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"wCc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, /obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"wCf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wCq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"wCE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"wDH" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wCN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" }, -/area/almayer/medical/morgue) -"wDJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/area/almayer/squads/charlie_delta_shared) -"wDK" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"wCW" = ( +/obj/item/tool/warning_cone{ pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"wDR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"wEd" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wCY" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"wEg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"wDd" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wDh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/powered/agent) -"wEI" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/clipboard{ - pixel_x = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wDk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"wDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"wEO" = ( -/obj/structure/platform_decoration{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"wDz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; - icon_state = "red" + name = "\improper Brig Equipment" }, -/area/almayer/lifeboat_pumps/south2) -"wFb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"wFm" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"wDG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Chief MP's Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"wDN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"wFn" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/area/almayer/shipboard/brig/general_equipment) +"wEa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"wEi" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 }, -/area/almayer/command/cic) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"wEG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"wEH" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"wEN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wFx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) "wFz" = ( /obj/item/prop{ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; @@ -76998,46 +64004,75 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wFI" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/upper/u_m_p) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) +"wFT" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wGa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"wGd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"wGi" = ( -/obj/structure/disposalpipe/segment{ +"wGl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"wGA" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wGz" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/almayer/shipboard/brig/cells) +"wGD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"wGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wGN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) "wGX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -77045,30 +64080,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"wHj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"wHo" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/living/briefing) "wHp" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -77076,111 +64087,146 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"wIr" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" +"wHr" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"wHD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"wHG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/req) -"wIC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wHQ" = ( /turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/chief_mp_office) -"wIG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/maint/hull/lower/s_bow) +"wIk" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/obj/item/trash/plate{ - pixel_x = 1; +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wIs" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty{ + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 4; pixel_y = 6 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"wIv" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wIC" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/chief_mp_office) +"wID" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 }, -/area/almayer/living/grunt_rnr) -"wIQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"wIJ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"wJa" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/upper/u_m_p) "wJb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"wJo" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"wJw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"wJt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wJu" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hallways/vehiclehangar) -"wJD" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"wJB" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wJH" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell/cl) +"wJK" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"wKj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/squads/charlie) -"wJH" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell/cl) -"wKn" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"wKl" = ( /obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"wKF" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"wKH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"wKO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) "wKP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -77196,15 +64242,20 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) -"wKS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"wLb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"wLf" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -77214,24 +64265,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"wLk" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 +"wLj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wLn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 2; + pixel_y = 5 }, -/area/almayer/hull/upper_hull/u_m_p) -"wLm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"wLo" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" }, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"wLp" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -77242,312 +64302,345 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"wLy" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ +"wLB" = ( +/obj/structure/platform{ dir = 1 }, -/area/almayer/medical/containment/cell) -"wLG" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"wLD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"wLL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"wLU" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"wMe" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wMi" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"wMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/port_emb) -"wLK" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"wMA" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"wLN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"wMI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/containment) -"wLV" = ( -/obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"wMM" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"wMP" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"wMm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"wMV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"wMW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"wNa" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"wMG" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"wNb" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"wNh" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/squads/alpha) -"wMO" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"wNu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"wNz" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/medical/medical_science) -"wNl" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"wNG" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"wNL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wNT" = ( +/obj/structure/platform, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"wNV" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"wNW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; +/obj/structure/sign/safety/terminal{ pixel_x = 1; - pixel_y = 13 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/living/port_emb) -"wNm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 }, -/area/almayer/hull/lower_hull) -"wNq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"wOa" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = -7; - layer = 2.8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"wOb" = ( +/obj/structure/reagent_dispensers/watertank, /obj/item/reagent_container/spray/cleaner{ - pixel_x = -4; - pixel_y = 7; - layer = 3.04 - }, -/obj/structure/machinery/door_control/brbutton{ - pixel_y = 26; - pixel_x = -12; - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown" - }, -/obj/structure/machinery/door_control/brbutton{ - pixel_y = 26; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown Override"; - pixel_x = -2 - }, -/obj/structure/machinery/door_control/brbutton{ - pixel_y = 26; - pixel_x = 8; - name = "ARES Emergency Lockdown Override"; - id = "ARES Emergency" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wNT" = ( -/obj/structure/platform, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"wNU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + layer = 3.2; + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 }, -/area/almayer/hull/upper_hull/u_f_p) -"wOh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"wOg" = ( +/obj/structure/target{ + name = "punching bag" }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOK" = ( +"wOz" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"wOI" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"wOL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"wOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"wPf" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 }, -/area/almayer/lifeboat_pumps/south1) -"wPk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 }, -/area/almayer/shipboard/brig/execution) -"wPz" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 }, -/area/almayer/medical/hydroponics) -"wPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"wPt" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/upper/u_m_p) +"wPD" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"wPS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/squads/charlie) -"wPF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"wPT" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"wQe" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"wQs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/command/cichallway) -"wQa" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 15; +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"wQu" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wQH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"wQP" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wQS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/area/almayer/medical/upper_medical) -"wQg" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/area/almayer/hallways/aft_hallway) -"wQk" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 6"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"wQW" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"wQX" = ( /obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ pixel_y = -32 }, -/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wRf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"wQv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"wQx" = ( -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" }, -/area/almayer/hull/upper_hull/u_a_s) -"wRm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"wRi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"wRN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wRj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"wRl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wRr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"wRH" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, /area/almayer/shipboard/brig/cells) "wRO" = ( /obj/structure/disposalpipe/segment{ @@ -77568,24 +64661,33 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"wRT" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"wRW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 }, -/area/almayer/living/briefing) -"wSk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"wSh" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -77595,91 +64697,173 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"wSn" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"wSD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/laundry) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wSG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"wSH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wSL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wSM" = ( +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"wSO" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"wSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wTc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = 25 }, -/area/almayer/living/grunt_rnr) -"wTd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wTn" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/obj/item/trash/USCMtray{ + pixel_y = 6 }, -/area/almayer/command/securestorage) -"wTg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/trash/USCMtray{ + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/trash/USCMtray{ + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wTs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/hangar) -"wTm" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wTx" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"wTz" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ dir = 4; - icon_state = "red" + layer = 3.3; + pixel_y = 6 }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"wTB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"wTC" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"wTw" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 +"wTD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/almayer/squads/charlie_delta_shared) -"wTy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"wTJ" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"wTI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) -"wTN" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"wTO" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"wTR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/living/auxiliary_officer_office) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"wTY" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wUb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -77689,268 +64873,240 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUz" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"wUN" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "plate" +"wUh" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/upper_hull/u_a_p) -"wUO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"wUn" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"wUr" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"wUx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"wUP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"wUR" = ( -/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"wUS" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"wUX" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"wVb" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_s) -"wVy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"wUA" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"wVz" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"wUE" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"wVB" = ( +/area/almayer/maint/upper/mess) +"wUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/bridgebunks) -"wVD" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wUP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hull/lower_hull/l_f_s) -"wVP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"wVV" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/cryo) -"wVW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cic) -"wVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/lifeboat_pumps/south1) +"wVo" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"wWf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"wVI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"wVK" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"wVO" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wVW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) "wWg" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/chapel) -"wWk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"wWm" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +"wWt" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"wWy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/area/almayer/medical/containment/cell) -"wWq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "wWz" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) -"wWC" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"wWJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"wWM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/port_emb) -"wWL" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"wWN" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"wWX" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wWY" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/almayer/hull/upper_hull/u_a_p) -"wWP" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 }, -/area/almayer/squads/req) -"wWQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"wXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"wWR" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wXi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"wXj" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cic) +"wXk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/almayer/medical/medical_science) -"wWT" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"wXz" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/area/almayer/hull/upper_hull/u_f_p) -"wWX" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wXh" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating, +/area/almayer/command/airoom) +"wXE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "wXH" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"wXI" = ( -/turf/open/floor/almayer{ +"wXJ" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ dir = 1; - icon_state = "greencorner" + layer = 3; + pixel_y = 18 }, -/area/almayer/living/grunt_rnr) -"wXT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"wXZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"wYe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"wYj" = ( +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"wYt" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 @@ -77958,34 +65114,37 @@ /obj/structure/bed/sofa/south/white/left{ pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/upper/u_m_p) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYK" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"wYG" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 }, -/area/almayer/medical/lower_medical_lobby) -"wYS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wYJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"wYQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -77997,106 +65156,74 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wYZ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"wZa" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/general_equipment) -"wZv" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +"wZe" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) -"wZy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"wZo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"wZE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wZC" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"wZO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"wZR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/operating_room_four) -"wZH" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"wZX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"xaa" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_s) -"wZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xab" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"wZT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_p) -"wZX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"xag" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"xad" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"xae" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) +/area/almayer/maint/upper/u_a_p) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -78110,22 +65237,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xaF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) "xaM" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -78148,258 +65259,271 @@ /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xaN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 +"xbg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"xbt" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xbx" = ( +/obj/structure/machinery/cm_vending/gear/executive_officer{ + density = 0; + pixel_y = 30 + }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"xbC" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"xbG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen2"; + name = "\improper Kitchen Shutters" }, +/turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"xaS" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +"xbP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/command/lifeboat) -"xba" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/cryo_cells) -"xbd" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xbY" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"xcd" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"xci" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xcj" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"xcw" = ( +/obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/living/briefing) -"xbk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"xcD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/living/gym) -"xbN" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/plating, -/area/almayer/command/airoom) -"xcp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/area/almayer/maint/lower/constr) +"xcP" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xcY" = ( +/obj/structure/platform, /obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"xct" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"xdx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"xdi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/mp_bunks) +"xdk" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"xds" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) "xdy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"xeG" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_p) -"xfc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"xfh" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"xfi" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ +"xdF" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xdK" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/perma) +"xdT" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"xdY" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xee" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/engineering/engine_core) -"xfm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"xfw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/packageWrap, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/cargo, /area/almayer/squads/req) -"xfO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"xeh" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"xen" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"xeO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null }, -/area/almayer/living/bridgebunks) -"xfT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"xfl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"xfr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xft" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - pixel_x = -24 + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"xfx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/medical/operating_room_one) -"xgh" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"xfF" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/fore_hallway) +"xfH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lower_medical_lobby) -"xgm" = ( -/obj/structure/reagent_dispensers/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"xgn" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"xgr" = ( -/obj/structure/machinery/alarm/almayer{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"xgx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"xgE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"xgJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"xfY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"xga" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"xgL" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"xgS" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xgj" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"xgk" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"xgz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_aft_hallway) +"xhc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"xhf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/port_emb) -"xhn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"xhs" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"xhv" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -78407,135 +65531,127 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"xhE" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"xhM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"xhA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"xhD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"xhQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"xhJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/bravo) -"xhU" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"xhT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "xhZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"xiz" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"xiC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"xia" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"xjb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xiu" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xiG" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xiJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"xjw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"xiQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/upper_engineering/port) -"xjz" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/almayer/command/lifeboat) -"xjC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"xjD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"xiU" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"xjx" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/lifeboat_pumps/north1) -"xjG" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xjL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"xjN" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/area/almayer/shipboard/brig/main_office) -"xjK" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 1 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xjP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"xjR" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) "xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -78550,276 +65666,310 @@ "xkd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cells) -"xkC" = ( -/obj/structure/machinery/light{ - dir = 8 +"xkf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"xko" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"xks" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"xkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"xlh" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"xlC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/ce_room) -"xlD" = ( -/obj/structure/machinery/light/small{ +"xlt" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"xlX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"xlY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xlG" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"xlM" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/midship_hallway) +"xlS" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"xmc" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xmh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/storage/toolbox/electrical{ +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"xmg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xmr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"xmv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"xmu" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"xmC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"xmH" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_s) -"xmJ" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"xmL" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/area/almayer/living/port_emb) -"xmT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"xmN" = ( +/obj/structure/platform{ + dir = 1 }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"xnk" = ( +/obj/structure/largecrate/random/barrel/red, /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/medical/lower_medical_medbay) -"xne" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 1 }, -/area/almayer/command/corporateliason) -"xnl" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xnr" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) +"xnB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"xnR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Engineering Storage" +"xnJ" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xnK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xnS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"xnY" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"xoe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"xoh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"xot" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/folder/red, -/obj/structure/phone_base/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig CMP's Office"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"xoJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/lower/port_midship_hallway) +"xnX" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xor" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/area/almayer/shipboard/port_point_defense) -"xoO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"xoy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"xpd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"xoA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_f_s) -"xpf" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"xoI" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xoM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"xpk" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_p) -"xpo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"xpp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"xpu" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/shipboard/brig/cic_hallway) -"xps" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"xpB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"xpF" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xpG" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/shipboard/brig/lobby) -"xpt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"xpI" = ( -/obj/structure/stairs{ +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"xpU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"xpT" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"xpX" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"xpY" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/hallways/hangar) -"xqp" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8; - layer = 3.1 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"xqi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"xqu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/medical_science) -"xqv" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Lobby"; + req_access = null }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"xqw" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) "xqy" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -78837,163 +65987,189 @@ }, /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"xqM" = ( -/obj/structure/platform, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"xqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"xro" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"xqF" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/almayer/shipboard/brig/perma) -"xrr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"xqL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"xrN" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xqN" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"xqX" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Shutters"; + plane = -7 }, -/area/almayer/hull/upper_hull/u_a_p) -"xrP" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xqY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"xrp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"xrv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"xrC" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"xrE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/evidence_storage) -"xsl" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xrH" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"xsd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"xse" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 }, -/area/almayer/engineering/upper_engineering) -"xsw" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 }, -/area/almayer/medical/lower_medical_medbay) -"xsz" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xsk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "W" }, -/area/almayer/medical/upper_medical) -"xsW" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"xsv" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"xsx" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 }, -/area/almayer/hallways/vehiclehangar) -"xtg" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/area/almayer/command/cic) -"xtD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xsH" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"xsJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"xtM" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xth" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lower_medical_lobby) -"xub" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + pixel_y = 1 }, -/area/almayer/shipboard/brig/armory) -"xuc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xtn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/chief_mp_office) +"xtr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"xtu" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"xtS" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/cic_hallway) -"xuB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) +"xtT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"xtX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xuh" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xuE" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xuj" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/containment/cell) -"xuI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"xup" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xuy" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "xuQ" = ( /obj/structure/bed/chair{ dir = 4 @@ -79002,16 +66178,21 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"xuU" = ( -/obj/structure/machinery/light{ - dir = 8 +"xuS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"xuW" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "xuY" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -79019,119 +66200,170 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"xuZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"xvf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"xvh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"xvr" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"xvw" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xvj" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"xvk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"xvm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xvx" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"xvI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) -"xvE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"xvT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/squads/charlie) -"xvM" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xvU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"xvZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/no_build{ - dir = 4; - icon_state = "silver" +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 }, -/area/almayer/command/airoom) -"xvX" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"xwe" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/bravo) -"xwl" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xwn" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/area/almayer/squads/alpha_bravo_shared) -"xwp" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ dir = 8; - icon_state = "pipe-c" + pixel_x = 17 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"xws" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"xwt" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"xwu" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"xwP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xwV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"xwq" = ( -/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"xwW" = ( +/obj/structure/window/framed/almayer, /turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xwG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/squads/req) +"xwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"xxd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"xxe" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/area/almayer/hull/lower_hull/l_m_s) +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) "xxi" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -79179,221 +66411,131 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxI" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 - }, -/obj/structure/bed/chair{ +"xxs" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; - pixel_y = 42 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"xxJ" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"xxT" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"xxZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null }, -/area/almayer/lifeboat_pumps/south2) -"xyk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xys" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/main_office) -"xyt" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"xxF" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; +/obj/item/reagent_container/glass/bucket/mopbucket{ pixel_x = -8 }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 }, -/area/almayer/medical/hydroponics) -"xyw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 }, -/area/almayer/hallways/hangar) -"xyz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xxS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"xyE" = ( -/obj/structure/toilet{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"xyY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "green" + icon_state = "pipe-c" }, -/area/almayer/squads/req) -"xzf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"xyh" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/living/basketball) -"xzo" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"xyk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xyB" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_a_p) -"xzp" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"xzu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"xyK" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xAa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/phone_base{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 +/area/almayer/hallways/lower/vehiclehangar) +"xyQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"xyX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"xzz" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/almayer/medical/lockerroom) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "xAe" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell) -"xAj" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"xAt" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +"xAf" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"xAr" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"xAs" = ( +/turf/open/floor/almayer/emeraldcorner/north, /area/almayer/living/briefing) -"xAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/squads/req) "xAC" = ( /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"xAI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"xAQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"xAV" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) "xAY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -79403,108 +66545,176 @@ "xBe" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/upper_engineering) -"xBn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 +"xBg" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xBh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/box/cups{ + pixel_x = 3 }, -/area/almayer/engineering/upper_engineering/port) -"xBQ" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/storage/box/donkpockets{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xBm" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/barricade/handrail{ dir = 4; - icon_state = "pipe-c" + layer = 3.3; + pixel_y = 3 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xBV" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 }, -/area/almayer/squads/req) -"xBY" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/laundry) -"xCa" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"xBo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"xCd" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/surface/table/almayer{ + layer = 3 }, -/area/almayer/shipboard/brig/processing) -"xCj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xCm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"xCN" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xBq" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"xBu" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xBx" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 }, -/area/almayer/hull/lower_hull/l_m_s) -"xCR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"xCT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"xBy" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"xBI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 }, -/area/almayer/command/securestorage) -"xCX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"xBN" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xBS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xBX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xBY" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/laundry) +"xCr" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xCK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"xDb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"xDe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"xDn" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"xDh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; dir = 1; - icon_state = "silver" + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92" }, -/area/almayer/shipboard/brig/cic_hallway) -"xDp" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs1"; + name = "\improper ARES Reception Shutters" }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xDj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "xDr" = ( /obj/structure/machinery/light, /obj/structure/flora/pottedplant{ @@ -79513,304 +66723,354 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xDC" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"xDQ" = ( -/obj/structure/platform, -/obj/item/trash/USCMtray{ - pixel_y = 4 +"xDw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/item/trash/USCMtray{ - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xDA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/trash/USCMtray{ - pixel_y = 8 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"xDI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/trash/USCMtray{ - pixel_y = 10 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"xDR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"xEc" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xDS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xDT" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"xDU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"xEh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"xEe" = ( -/obj/structure/bed, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"xEl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/shipboard/brig/perma) -"xEz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xEt" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xEu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = -1 }, -/area/almayer/medical/operating_room_two) -"xEF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_f_p) -"xEO" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = 5 }, -/area/almayer/engineering/upper_engineering) -"xEX" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_y = 7; + req_access_txt = "31" }, -/area/almayer/living/offices) -"xFs" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/ashtray/bronze{ + pixel_x = 12; + pixel_y = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xEw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/flash{ - pixel_y = -8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"xEI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"xEJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"xEV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"xFw" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"xFb" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"xFc" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"xFz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"xFD" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"xFH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"xFJ" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 }, -/obj/structure/sign/safety/ladder{ +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"xFP" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xFK" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/area/almayer/shipboard/starboard_missiles) -"xFZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"xGh" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"xGk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"xFV" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"xGo" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4 }, -/area/almayer/squads/req) -"xGE" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xGe" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xGl" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xGr" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Right"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"xGv" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"xGw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/white{ + pixel_y = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xGA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/bravo) -"xGJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"xGF" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xGV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"xGX" = ( +/turf/open/floor/almayer/blue/north, /area/almayer/living/briefing) -"xHe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" +"xHk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xHm" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/area/almayer/shipboard/brig/main_office) -"xHp" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"xHt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xHz" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/squads/alpha_bravo_shared) -"xHG" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"xHD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/area/almayer/hull/upper_hull/u_m_p) -"xHM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"xIp" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"xHW" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_f_p) -"xIb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"xId" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"xIi" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xIj" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"xIr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/almayer/hull/lower_hull/l_f_p) -"xIk" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/item/tool/soap, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/lower_medical_medbay) -"xIw" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"xIu" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"xIz" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) -"xJe" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/shipboard/brig/cells) -"xJh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"xJi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"xJn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"xIU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xIX" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"xJC" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"xJl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"xJw" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"xJx" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"xJz" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/area/almayer/command/corporateliason) -"xJH" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/squads/charlie_delta_shared) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -79821,211 +67081,199 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"xKw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_x = 8 - }, -/obj/structure/phone_base/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"xKM" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +"xKb" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/mp_bunks) +"xKp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xKv" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xKx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"xKT" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"xKW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"xKL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xLb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_x = -14; - pixel_y = 13 + name = "ship-grade camera" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xLd" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xMf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"xLg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"xMh" = ( -/obj/structure/prop/invuln/lattice_prop{ +/area/almayer/maint/hull/upper/u_f_s) +"xLm" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xLN" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xLV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 + name = "ship-grade camera" }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_p) -"xMj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"xMk" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) -"xMA" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"xMB" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/almayer/command/cic) -"xML" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"xMI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"xMQ" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) "xMR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"xNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"xNj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" +"xMX" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"xNg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"xNl" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"xND" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"xNF" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"xNG" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/area/almayer/hallways/hangar) -"xNu" = ( -/obj/structure/toilet{ +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"xNI" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, -/area/almayer/medical/upper_medical) -"xNv" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"xNN" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xNS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"xNZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"xNz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/auxiliary_officer_office) -"xNB" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"xOi" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xOF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -80034,178 +67282,205 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"xOY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"xPE" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"xPR" = ( -/obj/structure/platform{ +"xON" = ( +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"xPZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"xOR" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 }, -/area/almayer/engineering/upper_engineering/port) -"xQa" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xPg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xPo" = ( +/turf/open/floor/almayer/red, /area/almayer/command/cic) -"xQg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/pilotbunks) -"xQm" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"xQD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"xQV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +"xPI" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/area/almayer/command/airoom) -"xRc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"xPL" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xRh" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xPS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"xQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/command/cic) +"xQc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"xQd" = ( +/obj/structure/machinery/brig_cell/cell_6{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"xQe" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/effect/landmark/map_item, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer/sterile_green_side/east, /area/almayer/medical/upper_medical) -"xRj" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"xQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xQp" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "pipe-c" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/plating, +/area/almayer/command/cic) +"xQq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"xQs" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/charlie) -"xRw" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"xQw" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xQI" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + pixel_x = 1; + pixel_y = 17; + req_access = null }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"xQT" = ( +/turf/open/floor/almayer/orange, /area/almayer/living/briefing) -"xRE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"xQW" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_p) +"xQZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_a_p) -"xRH" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"xRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"xRQ" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"xRW" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"xRZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/command/telecomms) -"xRJ" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/sign/prop3{ + pixel_x = -32 }, -/area/almayer/living/briefing) -"xRU" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"xSa" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"xSl" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"xSr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"xSb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -80216,49 +67491,29 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) -"xSz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"xSA" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xSy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/shipboard/brig/lobby) -"xSI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"xSK" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 }, -/area/almayer/hallways/repair_bay) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "xSM" = ( /obj/structure/machinery/light{ dir = 8 @@ -80270,49 +67525,27 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xSW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"xSY" = ( -/obj/structure/machinery/light{ +"xTk" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"xTv" = ( +/obj/structure/platform_decoration{ dir = 1 }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"xTw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"xTF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"xTp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"xTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "S" }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"xTP" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -80322,113 +67555,91 @@ }, /turf/open/floor/plating, /area/almayer/command/cichallway) -"xTW" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +"xUa" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xUm" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"xUr" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"xUJ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"xUQ" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"xUS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/bedsheet/yellow{ - layer = 3.2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xUZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/alarm/almayer{ dir = 1; - icon_state = "orange" + pixel_y = -29 }, -/area/almayer/living/port_emb) -"xUA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"xVk" = ( +/turf/open/space, +/area/space/almayer/lifeboat_dock) +"xVm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"xVu" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." }, -/area/almayer/engineering/upper_engineering/starboard) -"xUB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xVB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/groundside_operations{ + dir = 4; + pixel_y = 8 }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"xUI" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"xVc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" - }, -/area/almayer/command/airoom) -"xVj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xVk" = ( -/turf/open/space, -/area/space/almayer/lifeboat_dock) +"xVD" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) "xVF" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"xVI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"xVO" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +"xVM" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/area/almayer/engineering/engineering_workshop/hangar) +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) "xVS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -80445,46 +67656,76 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"xWd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/alpha_bravo_shared) -"xWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +"xVW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"xWe" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"xWl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"xWr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) "xWv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"xWF" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"xWx" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"xWO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xWz" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"xWM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/tool/screwdriver, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -3; + pixel_y = 7 }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) "xWT" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -80499,45 +67740,104 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"xXa" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +"xWU" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/area/almayer/engineering/upper_engineering/port) +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"xWX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"xWY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"xXc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "xXh" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell) -"xXr" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "mono" +"xXi" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/area/almayer/medical/medical_science) -"xYf" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"xXn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/shipboard/sea_office) -"xYj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"xXo" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 14 +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"xXs" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xXz" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"xXM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xXP" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"xYb" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xYv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -80545,164 +67845,158 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"xYN" = ( +"xYK" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"xYQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"xYZ" = ( +"xYT" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"xZf" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"xZI" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"xZK" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"xZU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/charlie) -"yac" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"yal" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"yaz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "pipe-c" }, -/area/almayer/living/officer_study) -"yaG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"yaQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xYW" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Staircase"; + dir = 4; + pixel_y = -8 }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) -"yaZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +"xZi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xZl" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"xZx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/command/airoom) -"ybb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 14 +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/obj/item/device/flash{ - pixel_y = -8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xZJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"xZR" = ( +/obj/structure/machinery/cm_vending/clothing/marine/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/gym) +"xZV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/main_office) -"ybf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/phone_base/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 }, -/area/almayer/hallways/aft_hallway) -"ybr" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"yaj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_a_p) -"ybO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"yan" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"yao" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"yaJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ybc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"ybS" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"ybe" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ybk" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ybl" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"ybn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) +/area/almayer/maint/hull/upper/u_f_s) +"ybQ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"ycc" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -80710,162 +68004,147 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"ycj" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ycp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"ycr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ycV" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ycZ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +"ycw" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ycD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ycW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/squads/delta) -"ydh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ydk" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ydo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 }, -/area/almayer/engineering/upper_engineering/port) -"ydr" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"ydx" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"ydq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ydC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_a_p) -"ydz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ydG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ydK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"ydP" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 }, -/area/almayer/lifeboat_pumps/north2) -"ydE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"ydZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/mirror{ + pixel_x = 29 }, -/area/almayer/medical/hydroponics) -"ydI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/captain_mess) +"yed" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"yek" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"yep" = ( +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, /area/almayer/command/airoom) -"ydM" = ( -/obj/structure/window{ +"yes" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"ydU" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 8; - id = "Perma 2"; - name = "\improper isolation shutter" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"yex" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/disposalpipe/segment{ dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"ydY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"yeE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "yeH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"yeN" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"yeP" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) +"yeJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/perma) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -80874,57 +68153,106 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"yeX" = ( +"yeU" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"yeY" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/structure/closet/secure_closet/guncabinet/blue/riot_control, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"yfm" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"yfg" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"yfk" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/squads/delta) -"yfv" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"yfp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"yfs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"yfw" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"yfx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/starboard_hallway) -"yfy" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"yfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"yfG" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"yfH" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_m_s) +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -80932,145 +68260,136 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"yge" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ +"yfU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ygf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"ygi" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"ygj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/lifeboat) -"ygs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/living/captain_mess) -"ygy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"yha" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"yhi" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"ygK" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ygM" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"yhB" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -10; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown"; - pixel_y = -24; - req_one_access_txt = "91;92" +/area/almayer/maint/hull/upper/s_bow) +"yhA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" }, -/obj/structure/surface/table/reinforced/almayer_B{ - climbable = 0; - indestructible = 1; - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"yhG" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"yhP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/phone_base/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"yhR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/mp_bunks) +"yhT" = ( /obj/structure/machinery/door_control{ - id = "ARES Emergency"; - name = "ARES Emergency Lockdown"; - pixel_x = 10; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, /area/almayer/command/airoom) -"yhI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"yig" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"yir" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"yhQ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_m_p) -"yiq" = ( -/obj/structure/sign/safety/north{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"yiu" = ( +/obj/structure/sign/safety/hazard{ pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"yit" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 1 - }, -/turf/open/floor/almayer/no_build{ - icon_state = "ai_floors" +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/command/airoom) -"yiC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"yiD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_f_p) -"yiE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"yiW" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"yiR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) "yiX" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -81082,169 +68401,149 @@ }, /turf/open/floor/almayer, /area/almayer/living/synthcloset) -"yjb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"yji" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"yjq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/notunnel) -"yjM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"yjP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"ykj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" +"yjd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"yjw" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"yjA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"yjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"yky" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"ykD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"yjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/lifeboat) -"ykF" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"yjU" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ykP" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/main_office) -"ylc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"yki" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"yks" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"ykQ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"ykT" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"ykY" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/medical/containment) -"yle" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"yla" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/squads/delta) -"ylg" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ylb" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"yly" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 }, -/area/almayer/command/airoom) -"ylJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ylz" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ylM" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/stern_hallway) -"ylY" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"ylU" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ylZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ymi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"yme" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ymg" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"ymh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) (1,1,1) = {" aaa @@ -81956,389 +69255,7 @@ aaa aaa aaa aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,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 -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,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 +aKQ aaa aaa aaa @@ -82362,7 +69279,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -82440,6 +69356,8 @@ aaa aaa aaa aaa +"} +(5,1,1) = {" aaa aaa aaa @@ -82463,8 +69381,6 @@ aaa aaa aaa aaa -"} -(7,1,1) = {" aaa aaa aaa @@ -82542,6 +69458,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -82565,7 +69482,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -82643,6 +69559,8 @@ aaa aaa aaa aaa +"} +(6,1,1) = {" aaa aaa aaa @@ -82666,8 +69584,6 @@ aaa aaa aaa aaa -"} -(8,1,1) = {" aaa aaa aaa @@ -82745,6 +69661,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -82768,7 +69685,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -82846,6 +69762,8 @@ aaa aaa aaa aaa +"} +(7,1,1) = {" aaa aaa aaa @@ -82869,8 +69787,6 @@ aaa aaa aaa aaa -"} -(9,1,1) = {" aaa aaa aaa @@ -82948,6 +69864,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -82971,7 +69888,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -83049,6 +69965,8 @@ aaa aaa aaa aaa +"} +(8,1,1) = {" aaa aaa aaa @@ -83072,8 +69990,6 @@ aaa aaa aaa aaa -"} -(10,1,1) = {" aaa aaa aaa @@ -83151,6 +70067,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -83174,7 +70091,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -83252,6 +70168,8 @@ aaa aaa aaa aaa +"} +(9,1,1) = {" aaa aaa aaa @@ -83275,8 +70193,6 @@ aaa aaa aaa aaa -"} -(11,1,1) = {" aaa aaa aaa @@ -83354,6 +70270,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -83377,7 +70294,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -83455,6 +70371,8 @@ aaa aaa aaa aaa +"} +(10,1,1) = {" aaa aaa aaa @@ -83478,8 +70396,6 @@ aaa aaa aaa aaa -"} -(12,1,1) = {" aaa aaa aaa @@ -83557,6 +70473,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -83580,7 +70497,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -83658,6 +70574,8 @@ aaa aaa aaa aaa +"} +(11,1,1) = {" aaa aaa aaa @@ -83681,8 +70599,6 @@ aaa aaa aaa aaa -"} -(13,1,1) = {" aaa aaa aaa @@ -83760,6 +70676,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -83783,7 +70700,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -83861,6 +70777,8 @@ aaa aaa aaa aaa +"} +(12,1,1) = {" aaa aaa aaa @@ -83884,8 +70802,6 @@ aaa aaa aaa aaa -"} -(14,1,1) = {" aaa aaa aaa @@ -83963,6 +70879,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -83986,7 +70903,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -84064,6 +70980,8 @@ aaa aaa aaa aaa +"} +(13,1,1) = {" aaa aaa aaa @@ -84087,8 +71005,6 @@ aaa aaa aaa aaa -"} -(15,1,1) = {" aaa aaa aaa @@ -84166,6 +71082,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -84189,7 +71106,6 @@ aaa aaa aaa aaa -aKQ aaa aaa aaa @@ -84267,6 +71183,8 @@ aaa aaa aaa aaa +"} +(14,1,1) = {" aaa aaa aaa @@ -84290,214 +71208,16 @@ aaa aaa aaa aaa -"} -(16,1,1) = {" aaa aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab aaa aaa -aKQ aaa aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab aaa aaa -"} -(17,1,1) = {" aaa aaa -aab aaa aaa aaa @@ -84565,6 +71285,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -84592,24 +71313,6 @@ aaa aaa aaa aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aaa aaa aaa @@ -84683,6 +71386,8 @@ aaa aaa aaa aaa +"} +(15,1,1) = {" aaa aaa aaa @@ -84693,14 +71398,10 @@ aaa aaa aaa aaa -aab aaa aaa -"} -(18,1,1) = {" aaa aaa -aab aaa aaa aaa @@ -84787,6 +71488,7 @@ aaa aaa aaa aaa +aKQ aaa aaa aaa @@ -84795,13 +71497,10 @@ aaa aaa aaa aaa -aab aaa aaa -aKQ aaa aaa -aab aaa aaa aaa @@ -84890,17 +71589,211 @@ aaa aaa aaa aaa +"} +(16,1,1) = {" aaa aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab aaa aaa +aKQ aaa aaa aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab aaa aaa "} -(19,1,1) = {" +(17,1,1) = {" aaa aaa aab @@ -85103,7 +71996,7 @@ aab aaa aaa "} -(20,1,1) = {" +(18,1,1) = {" aaa aaa aab @@ -85306,7 +72199,7 @@ aab aaa aaa "} -(21,1,1) = {" +(19,1,1) = {" aaa aaa aab @@ -85509,7 +72402,7 @@ aab aaa aaa "} -(22,1,1) = {" +(20,1,1) = {" aaa aaa aab @@ -85557,10 +72450,213 @@ aaa aaa aaa aaa -bdH -bdH -bdH -bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -85712,7 +72808,7 @@ aab aaa aaa "} -(23,1,1) = {" +(22,1,1) = {" aaa aaa aab @@ -85915,7 +73011,7 @@ aab aaa aaa "} -(24,1,1) = {" +(23,1,1) = {" aaa aaa aab @@ -86118,7 +73214,7 @@ aab aaa aaa "} -(25,1,1) = {" +(24,1,1) = {" aaa aaa aab @@ -86321,7 +73417,7 @@ aab aaa aaa "} -(26,1,1) = {" +(25,1,1) = {" aaa aaa aab @@ -86524,7 +73620,7 @@ aab aaa aaa "} -(27,1,1) = {" +(26,1,1) = {" aaa aaa aab @@ -86727,7 +73823,7 @@ aab aaa aaa "} -(28,1,1) = {" +(27,1,1) = {" aaa aaa aab @@ -86930,7 +74026,7 @@ aab aaa aaa "} -(29,1,1) = {" +(28,1,1) = {" aaa aaa aab @@ -86978,10 +74074,10 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa +bdH +bdH +bdH +bdH aaa aaa aaa @@ -87133,7 +74229,7 @@ aab aaa aaa "} -(30,1,1) = {" +(29,1,1) = {" aaa aaa aab @@ -87194,15 +74290,15 @@ aaa aaa aaa aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87336,7 +74432,7 @@ aab aaa aaa "} -(31,1,1) = {" +(30,1,1) = {" aaa aaa aab @@ -87539,7 +74635,7 @@ aab aaa aaa "} -(32,1,1) = {" +(31,1,1) = {" aaa aaa aab @@ -87742,7 +74838,7 @@ aab aaa aaa "} -(33,1,1) = {" +(32,1,1) = {" aaa aaa aab @@ -87944,15 +75040,214 @@ aaa aab aaa aaa -"} -(34,1,1) = {" +"} +(33,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aab aaa aaa +"} +(34,1,1) = {" aaa aaa +aab aaa aaa aaa @@ -87989,17 +75284,21 @@ aaa aaa aaa aaa +bdH +bdH +bdH +bdH aaa aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY +eQJ +oVj +oVj +oVj +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -88184,6 +75483,7 @@ aaa aaa aaa aaa +bdH aaa aaa aaa @@ -88193,16 +75493,15 @@ aaa aaa aaa aaa -aaa -aad -cZs -cZs -iZG -iZG -iZG -cZs -cZs -ajZ +bHS +lWP +lWP +lWP +lWP +lWP +lWP +lWP +woL aaa aaa aaa @@ -88387,30 +75686,30 @@ aaa aaa aaa aaa +bdH aaa aaa aaa aaa -aaa -aac -aaf -aaf -aaf -aaf +eQJ +oVj +oVj +oVj +oVj aag -cZs -cWN -dgx -dgx -dgx -sdq -cZs +lWP +icj +oog +vkk +nwO +wWN +lWP aag -aaf -aaf -aaf -aaf -ajY +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -88590,30 +75889,30 @@ aaa aaa aaa aaa +bdH aaa aaa aaa aaa -aaa -aad -cZs -cZs -cZs -cZs -cZs -cZs -dfp -sEa -vBJ -uNl -oxn -cZs -xEF -xEF -xEF -xEF -xEF -ajZ +bHS +yeJ +yeJ +yeJ +yeJ +yeJ +lWP +lIr +oog +mmj +uNX +lDT +lWP +wzJ +wzJ +wzJ +wzJ +wzJ +woL aaa aaa aaa @@ -88796,29 +76095,29 @@ aaa aaa aaa aaa -aac -aaf +eQJ +oVj aag -cZs -yeR -aTg -kyI -aTg -pdG -vAG -dOL -xot -hwS -wly -wIC -dtN -syM -irr -dAb -xEF +yeJ +naB +naB +naB +naB +mtl +kAX +ked +wjp +diq +iST +jas +xAV +lJW +git +uhk +wzJ aag -aaf -ajY +oVj +fPT aaa aaa aaa @@ -88999,29 +76298,29 @@ aaa aaa aaa aaa -aad -pCi -pCi -cZs -osJ -aTg -xvr -bZN -wIC -dWk -fYX -ush -rTt -vAG -wIC -fGN -kIV -kIV -shw -xEF -xEF -xEF -ajZ +bHS +eiy +eiy +yeJ +sMJ +qAc +dkb +naB +mtl +lSg +fDw +sSH +jcd +rnr +cUL +fzF +bAz +bAz +gby +wzJ +nhY +nhY +woL aaa aaa aaa @@ -89194,45 +76493,45 @@ aaa aaa aaa aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -pCi -pCi -myT -wIC -lcW -pbC -xvr -vCG -wIC -tNF -tNF -wIC -hzx -wIC -wIC -vBm -vBm -bIi -mnm -kPo -cFX -xEF -xEF -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY +eQJ +oVj +oVj +oVj +oVj +oVj +oVj +oVj +eiy +eiy +oWC +naB +sDO +pHp +pld +tQj +jDA +riT +mtl +mtl +mtl +mtl +kLa +xAV +cny +mkR +wtv +xAV +iWk +nhY +nhY +oVj +oVj +oVj +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -89397,45 +76696,45 @@ aaa aaa aaa aaa -aad -pCi -pCi -pCi -pCi -pCi -pCi -pCi -pCi -cpf -cos -wIC -wIC -wIC -wIC -wIC -wIC -cNY -tak -sip -mLJ -ntm -hND -kif -hND -mnm -wVz -kIV -dDQ -sGe -xEF -xEF -xEF -xEF -xEF -xEF -xEF -xEF -ajZ +bHS +eiy +eiy +eiy +eiy +eiy +eiy +eiy +eiy +dBx +rIL +naB +sMJ +eqM +gpV +twA +nAM +qPD +sbp +bZM +jwo +kjm +jCb +xAV +xAV +xAV +xAV +xAV +qex +qHE +nhY +nhY +nhY +nhY +nhY +nhY +nhY +nhY +woL aaa aaa aaa @@ -89600,45 +76899,45 @@ aaa aaa aaa aaa -aad -pCi -mUQ -rPC -wcn -wcn -xhM -wcn -tng -hGD -wzx -vBm -paq -uoY -vUL -vez -xys -swo -eRL -eRL -mLJ -bua -vBm -xkd -xkd -xkd -xkd -kIV -iYi -gSs -eyd -kIV -kQz -mnm -kIV -kIV -flP -xEF -ajZ +bHS +eiy +lWe +jGw +lAY +lhQ +oFu +lAY +ghH +dlB +fyb +naB +naB +naB +naB +naB +laY +qPD +qPD +qPD +qPD +qDy +lrv +htY +tvb +pwj +xOi +doW +dKj +hRt +mzh +doW +fxT +nbF +doW +doW +jQi +nhY +woL bdH bdH aaa @@ -89801,49 +77100,49 @@ aaa aaa aaa bdH -aac -aaf +eQJ +oVj aag -pCi -rPC -wcn -rPC -vWx -age -dPY -rTV -wcn -tYB -vBm -qfR -tak -tak -bvx -xys -ldu -eRL -eRL -mLJ -eiO -xFs +eiy +jGw +lAY +jGw +eii +cWx +hLd +dLR +lAY +bmf +naB +sMJ +bIt +gpV +dzV +nAM +qPD +oGq +kaz +kaz +aNb +tFJ xkd -eiH -aTV xkd xkd xkd -mnm -mnm -iqx -qFl -vUI -mnm -mnm -kIV -xEF +xkd +xkd +elr +bci +mbt +gBa +eph +vPs +vPs +doW +nhY aag -aaf -ajY +oVj +fPT bdH aaa aaa @@ -89913,27 +77212,27 @@ aaa aaa aaa aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY +eQJ +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -90004,49 +77303,49 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -pCi -rPC -wcn -vBm -vBm -vBm -vBm -vBm -qmC -vBm -vBm -ouV -bTw -sjc -dci -rzj -tGg -sjc -sjc -iqn -eRL -tmy +eiy +eiy +jGw +lAY +kaq +kaq +kaq +kaq +kaq +rJH +fSS +naB +fSB +pHp +pld +kNA +dGh +qPD +xcd +qPD +qPD +uQm +sfp xkd -rUB -dSn -soa -xzu +eiH +aTV xkd +fSh xkd xkd xkd xkd xkd xkd -kIV -mnm -xEF -xEF +xkd +doW +vPs +nhY +nhY aag -ajZ +woL bdH bdH aaa @@ -90116,7 +77415,7 @@ aaa aaa aaa aaa -aad +bHS aag aag aag @@ -90136,7 +77435,7 @@ aag aag aag aag -ajZ +woL aaa bdH bdH @@ -90204,52 +77503,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -pCi -ext -rPC -mUQ -vBm -rBV -oPk -mqo -vBm -eRL -rag -qqN -lzx -mLJ -bua -gcT -dSc -qre -eRL -eOR -aJz -dXy -nHg -xkd -ghX -rAv +eiy +qSQ +jGw +lWe +kaq +spM +khr +obM +kaq +jXC +rJR +naB +sMJ +jPw +byx +naB +naB +hoV +esc +mVu +qPD +gee +lnC xkd -eTo -iHG -dCe +lKq +mZu +mHj +bbM +dYJ +drx moB -uns -vCy -eyV +erf +nzf +sHH xkd -dAb -mnm -kIV -xEF +goC +vPs +doW +nhY aag -ajZ +woL bdH bdH aaa @@ -90319,7 +77618,7 @@ aaa aaa aaa aaa -aad +bHS aag aag aag @@ -90339,7 +77638,7 @@ aag aag aag aag -ajZ +woL aaa bdH bdH @@ -90406,53 +77705,53 @@ aaa aaa aaa aaa -aaa -aaa bdH bdH -aad +bdH +bdH +bHS aag -pCi -oCL -wcn -fuB -vBm -ldu -wgi -wgi -ckS -eRL -bua -gcT -gcT -tJy -fnC -tpn -tpn -tpn -ula -tpn -wvT -luw -sgi -xkd -xkd +eiy +mQG +lAY +dFM +kaq +dDx +jzP +jzP +lRK +jXC +dGt +naB +naB +naB +naB +naB +naB +xdK +xdK +xdK +drz +aMX +xdK xkd +ghX +rAv xkd kmd tUx ebd tHS -xGh +qDg jVa -wDs +ujo xkd -ukt -mnm -kIV -xEF +fvV +vPs +doW +nhY aag -ajZ +woL bdH bdH aaa @@ -90516,16 +77815,16 @@ aaa aaa aaa bdH -aac -aaf -aaf -aaf -aaf -aaf +eQJ +oVj +oVj +oVj +oVj +oVj aag dqw -bDF -bDF +qjk +qjk dqw aag aag @@ -90537,18 +77836,18 @@ aag aag aag dqw -bDF -bDF +qjk +qjk dqw aag aag aag -aaf -aaf -aaf -aaf -aaf -ajY +oVj +oVj +oVj +oVj +oVj +fPT bdH aaa aaa @@ -90610,52 +77909,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -pCi -wcn -rPC -vBm -vBm -sFC -sFC -sFC -vBm -pcQ -xHe -gqW -gqW -lCM -ugT -tpn -vrM -kta -vWo -xrP -xTp -pyj -pwt +eiy +lAY +jGw +kaq +kaq +jEZ +jEZ +jEZ +kaq +twR +pfC +reD +erw +pxW +cqE +not +vOL +iNR +uap +ilk +loC +gXD +dBM +xkd xkd -uvY -oBq xkd -rPh +xkd +ijM iOD iOD tHS -sqW +wRH tUx -wRN +phc xkd xkd -kIV -mnm -xEF +doW +vPs +nhY aag -ajZ +woL bdH bdH aaa @@ -90719,12 +78018,12 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -nXP -nXP -nXP +eIO +eIO +eIO +eIO aag dqw uwv @@ -90746,12 +78045,12 @@ dqw aag aag aag -vRz -vRz -vRz -vRz +kiv +kiv +kiv +kiv aag -ajZ +woL bdH aaa aaa @@ -90813,52 +78112,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -ahE -wcn -rPC -vBm -ykP -xAj -xhE -xhE -vBm -hKq -cdk -soD -tdv -szy -wdr -tpn -aeo -sIw -eni -xrP -xTp -pyj -hTt -kMH -tUx -iTI -hzJ -cyZ +tsw +lAY +jGw +kaq +qvH +oSt +xgj +xgj +kaq +gPN +kGd +qjl +otx +otx +nvP +fyY +cYi +kAC +kAC +kAC +kAC +cMl +sjH +xkd +hDc +cnx +xkd +vej jVa jVa tHS -sVc +ukX tUx -xJe -qLt +oEe +ppb xkd -kIV -mnm -ils +doW +vPs +uGe aag -etE +uJw bdH bdH aaa @@ -90922,16 +78221,16 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -xFD -ntA +eIO +xtS +huC bAs bAs bAs -bDF -bDF +qjk +qjk bAs bTT bTT @@ -90943,18 +78242,18 @@ aag aag bAs bAs -bDF -bDF +qjk +qjk bAs bTT bTT bTT bAs -vIA -xgn -vRz +cXe +pTm +kiv aag -ajZ +woL bdH aaa aaa @@ -91016,52 +78315,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -ahE -rPC -wcn -vBm -ykP -xjG -ssD -gcT -rmv -eRL -mLJ -bua -nNQ -gcT -ciF -tpn -vrM -eBW -eOh -xrP -xTp -pyj -kfN -xkd -qFu -xkd -xkd -qJZ +tsw +jGw +lAY +kaq +qvH +kuP +opL +wLf +njo +jXC +jXC +hyY +meZ +meZ +fyY +meZ +aEr +fbK +fbK +fbK +lsC +cMl +cBE +kMH +tUx +iTI +cSD +eZH jVa jVa tHS -xGh +qDg ycm qCo -pWr +yeU xkd -uqa -mnm -ils +gcQ +vPs +uGe aag -ajZ +woL bdH bdH aaa @@ -91125,17 +78424,17 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -xYN -jup +eIO +nHl +aPT bBA -bAK -bCY -bDO -bDO -bDO +nhT +com +pRs +pRs +pRs bHI bJS bAs @@ -91146,18 +78445,18 @@ aag aag bAs bHP -sSc -sSc -bDO +fVR +fVR +pRs acr -bPG -acN +jvi +kQf bBA -qXM -gUv -vRz +rAw +gvP +kiv aag -ajZ +woL bdH aaa aaa @@ -91219,52 +78518,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -ahE -nBc -wcn -vBm -vBm -vBm -vBm -vBm -vBm -qwy -mLJ -fkn -gaJ -gaJ -gaJ -gaJ +tsw +dTK +lAY +lrq +lrq +lrq +lrq +lrq +lrq +lrq +nby +gBm tpn tpn -ueo +dNn tpn -wCM -pyj -opN +tpn +ebR +qoa +bwB +pOf +cMl +ehE +xkd +qFu xkd -uvY -duT xkd vdM jVa wtM moB -sXQ +urE cyZ jVa -fJT +gHD xkd -ipT -kIV -ils +pyk +doW +uGe aag -eSU +ucD bdH bdH aaa @@ -91328,17 +78627,17 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -ewT -sIT +eIO +bVZ +wHQ bBA -hWJ -bCY -bDO -bDO -bDO +nfP +com +pRs +pRs +pRs bHP bJT bAs @@ -91349,18 +78648,18 @@ bAs bAs bAs bNl -sSc -sSc -bDO +fVR +fVR +pRs bHP -bPG -hpk +jvi +jpX bBA -fTu -umT -vRz +rGY +rFw +kiv aag -ajZ +woL bdH aaa aaa @@ -91422,52 +78721,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -pCi -mUQ -aou -vBm -tJp -ybb -tHB -aEk -nSM -ldu -mLJ -pYF -gaJ -wVV -wVV -wVV -gaJ -aOY -wdF -sdF -kNi -pyj -xIw -kVZ -tUx -iTI -nXm +eiy +lWe +ogL +lrq +jIg +aLj +xHz +hIQ +hAn +lrq +yha +qNA +tpn +bIu +hYk +sGt +tpn +mvb +oUS +deS +pOf +wSm +sPX +xkd +hDc +rNh +xkd eZH jVa jVa moB moB -dfk -vzz +pza +tew moB xkd -lmk -kIV -xEF +xhT +doW +nhY aag -ajZ +woL bdH bdH aaa @@ -91531,39 +78830,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -thT -mGL -gol -akb -bCY -bDO -bDO -bDO -abU +eIO +oTI +vNg +hld +hfC +com +pRs +pRs +pRs +vST bHP avw -bKn -bLk -bLw -bKn -bLk +qTU +xpG +nlz +qTU +xpG avw bHP -sSc -sSc -bDO -bPn -bPG -ald -gol -nqU -pch -vRz +fVR +fVR +pRs +gQX +jvi +uLy +hld +rbg +nBO +kiv aag -ajZ +woL bdH aaa aaa @@ -91625,52 +78924,52 @@ aaa aaa aaa aaa -aaa bdH bdH -aad +bdH +bHS aag -pCi -hKi -rPC -vBm -sQS -xEc -grl -egR -tak -lzx -mLJ -ugT -fso -vpI -vpI -vpI -cuk -tkV -jFR -oRk -kxM -jSw -vBm -vBm -qof -vBm -vBm -wRm +eiy +seR +jGw +lrq +tox +xBI +xBI +xBI +xBI +uzZ +jXC +pEK +tpn +nJx +hYk +sGt +tpn +bsA +pOf +kAC +kAC +wSm +iUt +kVZ tUx -vrx +iTI +bHg +eZH tUx -gSV +vrx +wGz +hBE eZH tUx cXi xkd -irr -kIV -xEF +dOP +doW +nhY aag -twB +eAb bdH bdH aaa @@ -91734,39 +79033,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -mGL -fEV +eIO +vNg +nNL bBA -bAN -bCY -bDO -bDO -bOq -bPo +ezS +com +pRs +pRs +pOS +gnS bHP avw -akb -axk -bLH -vuZ -ald +hfC +bzJ +aZo +fDz +uLy avw bHP -sSc -sSc -bOq -bPo -bPG -acs +fVR +fVR +pOS +gnS +jvi +xpp bBA -lZB -nqU -vRz +gmU +rbg +kiv aag -ajZ +woL bdH aaa aaa @@ -91831,36 +79130,36 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -nnF -rPC -vBm -ikM -pzc -jjM -eRL -eRL -eRL -mLJ -ugT -qvf -vpI -vpI -vpI -qvf -wdF -lMc -ycr -kge -kDA -rkL -eZj -efh -mGn -jkS -cyZ +tsw +mbx +jGw +lrq +aEE +uqo +nVr +iTX +uqo +lrq +hdD +iaZ +tpn +qnG +rsR +sGt +tpn +dbs +uwJ +ewJ +hVD +oUu +ktA +xkd +qFu +xkd +xkd +iYa thL thL thL @@ -91869,11 +79168,11 @@ nYd thL jVa fgR -hPT -mnm -ils +qxD +vPs +uGe aag -ajZ +woL bdH bdH aaa @@ -91937,39 +79236,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -tRV -hJp +eIO +txF +wKH bBA -bAO -bCZ -bDW -fya -ohA -ohA -ohA -bKb -akf +inB +iik +bmo +hxh +qeX +qeX +qeX +dbi +ugr jbX kNY jbX -tuZ -bKb -ohA -ohA -ohA -cFh -bDW -bPJ -iuz +rUQ +dbi +qeX +qeX +qeX +pzK +bmo +fMD +qle bBA -vhq -orv -vRz +gpp +klh +kiv aag -ajZ +woL bdH aaa aaa @@ -92034,36 +79333,36 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -hUg -wcn -vBm -gqW -buX -mLJ -eRL -eRL -eRL -mLJ -pWG -gaJ -eyg -gCI -eyg -gaJ -heQ -lMc -eOW +tsw +kvS +lAY +lrq +ojE +xBI +xBI +xBI +xBI +vRA +jXC +jcz +tpn +tpn +tpn +tpn +tpn +hCc +kOQ +rPd +pOf cMl -lMc -nxq -ldu -kJK -bja -jkS -eZH +wEH +xkd +hDc +mVP +xkd +qJZ ohJ thL thL @@ -92072,11 +79371,11 @@ liZ rUk jVa fgR -evl -uNF -ils +mSr +jtS +uGe aag -rEr +rnb bdH bdH aaa @@ -92140,39 +79439,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -hJp -mGL +eIO +txF +vNg bBA -bAP +gpk aqu aqu -bEF -bNm -bNm -bNm +vLK +kdK +kdK +kdK avw -bKp -bLl -bLJ -bMS -bNe +upW +nnh +lsJ +mvL +mOS avw -bNm -bNm -bNm -bOs +kdK +kdK +kdK +ovH aqu aqu -bQz +ozU bBA -nqU -cEY -vRz +rbg +gFM +kiv aag -ajZ +woL bdH aaa aaa @@ -92237,36 +79536,36 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -rPC -wcn -vBm -jCa -cFO -lNs -srV -uzU -nJo -inN -wQk -gaJ -gaJ -gaJ -gaJ -gaJ -tRA -lMc -uzb +tsw +jGw +lAY +lrq +wvQ +oTv +oTv +dpx +ozj +lrq +juB +qqc +fLZ +kJf +vRt +otl +kJf +sUY +iWg +iWg +dDf cMl -oeB -rkL -ldu -eRL -jGp -vBm -qJZ +pXA +oWy +tUx +iTI +eqW +eZH ohJ thL thL @@ -92275,11 +79574,11 @@ uaU rUk xaM fgR -fQk -kIV -ils +eUM +doW +uGe aag -ajZ +woL bdH bdH aaa @@ -92343,16 +79642,16 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -fNg -hJp +eIO +wux +txF bBA -bBu +ycw amg amg -bFa +tBw alU alU alU @@ -92366,16 +79665,16 @@ alU alU alU alU -bOM +pjy amg amg -rAD +hma bBA -nqU -vhq -vRz +rbg +gpp +kiv aag -ajZ +woL bdH aaa aaa @@ -92440,49 +79739,49 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -wcn -wcn -lrq +eiy +lAY +lAY lrq -bVC +xQZ +xQZ +xQZ +xQZ lrq lrq -lut -eRL -eRL -enz -swn -vOd -uCl -dls -eGr -gbX -rCL -xHM -jxK -hyz -ltX -pbh -rRQ -rRQ -iyq -inG +fWt +qqc +nUH +kJf +uPX +nTw +gfC +kAC +kAC +kAC +kAC +ghQ +oGL +xkd +qFu +xkd +xkd +ejO omt omt omt omt uxa iZU -nhG +gJL xkd -mnm -hgH -xEF +vPs +fos +nhY aag -uJk +ixz bdH bdH aaa @@ -92546,39 +79845,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -gjv -mGL +eIO +wAS +vNg bBA -bBu +ycw amg amg -bFj +pGx alU -bId -bJU -bKd +idN +pdN +pVy alU -bLm -bTG -bMT +vNZ +gco +dJP alU -bNi -bNn -bNq +sZM +oxe +roX alU -bON +rlM amg amg -rAD +hma bBA -rpW -kAs -vRz +qwv +keo +kiv aag -ajZ +woL bdH aaa aaa @@ -92643,36 +79942,36 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -rPC -rwS -lrq -fFq -uqo -rhD -cqn -gTx -eRL -eRL -igt -swn -daj -qbt -exr -kHa -luH -lMc -ycr -bju -goD -vBm -vBm -qof -vBm -vBm -sSm +eiy +jGw +uVY +cQv +oTs +jaG +tKs +qvB +cQv +cQv +ezZ +yjR +kJf +kJf +wLD +tsB +kJf +qso +qso +sgi +pOf +wSm +wEH +xkd +hDc +bfS +xkd +vtV thL thL thL @@ -92681,11 +79980,11 @@ tov thL sUs xkd -mnm -kIV -xEF +xhT +doW +nhY aag -ajZ +woL bdH bdH aaa @@ -92749,39 +80048,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -oZd -mGL +eIO +gHe +vNg bBA -bBv +tFA aqu tkq -bFa +tBw alU -neO +eHE aoi -avB -bKq -ayw +vWd +fbH +abX aoi -avB -bKq -ayw +vWd +fbH +abX aoi -azA +ndL alU -bOO +kMW tkq aqu -bQG +fVl bBA -vht -vhq -vRz +iEe +gpp +kiv aag -ajZ +woL bdH aaa aaa @@ -92846,36 +80145,36 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -rPC -nfI -lrq -eTx -uqo -hGa -cqn -ldu -eRL -eRL -cWs -swn -dcP -tvA -dQv -swn -xTp -lMc -gSi -bju +tsw +jGw +yhi +cQv +egh +otL +otL +ajj +xLd +cQv +svx +vpM +wBf +nQZ +eLF +ole +wBf +uOp +iWg +cPR +pOf wSm -jox -lrV -tUx -ntu -nYP +kmy +kBj tUx +iTI +cuz +hOf thL oXp thL @@ -92884,11 +80183,11 @@ tov thL xhx fgR -mnm -kIV -ils +vPs +doW +uGe aag -scz +whr bdH bdH aaa @@ -92952,39 +80251,39 @@ aaa aaa aaa bdH -aad +bHS aag -nXP -lAP -mGL +eIO +rdl +vNg bBA -bBx +rhS amg bEw bFk -bHq +ozp let bJX bJX bKs -bLo -bMO -bMU +mtv +fPr +sNg bNf bJX bJX let -bHq +ozp bFk bPq amg -rAD +hma bBA -nqU -rSK -vRz +rbg +uTC +kiv aag -ajZ +woL bdH aaa aaa @@ -93049,49 +80348,49 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -rPC -heV -lrq -lCn -uqo -xub -cqn -nBb -mdS -eRL -uJs -swn -dfO -doj -dQv -swn -fYn -qZg -iXt -gBi -wSm -opN +tsw +jGw +nJc +cQv +syS +jzB +eSI +nHu +hnx +cqJ +fAQ +vpM +wBf +teC +qRu +lNo +wBf +fwV +fiE +jWN +wau +xiQ +ehE +xkd +qFu xkd -nlH -rQY xkd -xMQ +deA ezX pqF rUk thL -iFc +lxg thL tUx fgR -inC -fQk -ils +doW +eUM +uGe aag -ajZ +woL bdH bdH aaa @@ -93154,41 +80453,41 @@ aaa aaa aaa aaa -aac +eQJ aag aag -nXP -tpg -vmK +eIO +nWv +dia bBA -bBy +grQ amg aoa -ald +uLy alU -bIn +vVp bJY aoi bLh -bLp +eSv bMP -bNa +frT bLh aoi bNo -bNt +kli alU -akb +hfC aoa amg -bQE +rCA bBA -bVL -nqU -vRz +tMr +rbg +kiv aag aag -ajY +fPT aaa aaa aaa @@ -93252,36 +80551,36 @@ aaa aaa bdH bdH -aad +bHS aag -ahE -wcn -nBc -lrq -ebt -uqo -lLN -lrq -mAT -lrq -cxA -plZ -kHa -qPO -qPO -wuc -qPO -oRZ -wdF -xCd -bqp -wSm -kfN -xkd -qFu +tsw +lAY +dTK +cQv +syS +jzB +wDN +pGT +pGT +wDz +aaQ +piH +kJf +wte +oIq +wte +wte +dNd +fbK +cPR +pOf +cMl +sPX xkd +hDc +oxy xkd -jVa +lLH ezX prY rUk @@ -93290,11 +80589,11 @@ thL thL tUx fgR -kIV -mKf -ils +doW +lAF +uGe aag -okD +xwu bdH bdH aaa @@ -93357,41 +80656,41 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -nXP -mGL -mGL +eIO +eIO +vNg +gpN bBA -bBz +ijS aqu bEx -bQt +xyQ alU -bIw +cJG bJY sta rxK -amX +ekD bLh -azA +ndL pfa iLq bNo -bNS +omk alU -bPg +pgB bEx aqu -bQI +nfa bBA -ueh -nqU -vRz -vRz +tvy +rbg +kiv +kiv aag -ajZ +woL aaa aaa aaa @@ -93455,49 +80754,49 @@ aaa bdH bdH bdH -aad +bHS aag -pCi -wcn -wcn -lrq -yeX -uqo -fsT -jnA -fDn -lrq -tqV -nBo -maa -swn -plI -tqe -qPO -wvT -luw +eiy +lAY +lAY +cQv +syS +jzB +qsx +ajj +hnx +cqJ +fAQ +vpM +wBf +mqz +qRu +cOJ +wte emp -uUO -wSm -jZm -wmE -tUx -ntu -vQN -jVa -rjw +emp +emp +aaN +cMl +pnV +mvg tUx -lnJ -rjw +iTI +unx +qdG +thL +thL +thL +thL +thL +thL tUx -jVa -oEE xkd -kIV -hFW -xEF +doW +vtQ +nhY aag -ajZ +woL bdH bdH aaa @@ -93560,41 +80859,41 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -tRV -hJp -mmC +eIO +txF +txF +kHf bBA -lsV +lyV amg ddz -ald +uLy alU -bIx -bJZ -kyN +rjz +vAI +qFf bLi -bLq -bMR -bNb +sGI +lsU +gzS bNg -mTm -gjt -vJo +bXL +eze +pAX alU -bPh -bPC +fJt +lHv amg -pyL +xWz bBA -jNq -nqU -rSK -vRz +xWx +rbg +uTC +kiv aag -ajZ +woL bdH bdH bdH @@ -93658,49 +80957,49 @@ aaa bdH bdH bdH -aad +bHS aag -pCi -oCL -wcn -lrq -ebz -uqo -uqo -uqo -iOh -lrq -gdo -nBo -jJq -swn -dHv -qQM -qPO -xTp -lMc -jcf -qUb -wSm -jSw +eiy +mQG +lAY +cQv +syS +jzB +uAm +tGT +hnx +cQv +mvA +vpM +wBf +wGa +qRu +oKi +wte +oxh +iWg +dDy +tyc +tsz +oGL xkd -nlH -uuq +qFu xkd -naB -naB -pFg -naB -naB -naB -ydU -naB -naB -kIV -mnm -xEF +xkd +pEP +thL +thL +thL +thL +thL +thL +tUx +xkd +doW +vPs +nhY aag -ajZ +woL bdH bdH aaa @@ -93759,19 +81058,19 @@ aaa aaa aaa aaa -aac -aaf -aaf -aaf +eQJ +oVj +oVj +oVj aag -nXP -nXP -hJp -mGL -fmS +eIO +eIO +txF +vNg +fto bBA bBA -tiR +mTM bBA bBA alU @@ -93779,29 +81078,29 @@ bIy alU alU alU -cmI +mlN alU -cmJ +fZV alU alU alU -jAi -jAi -jAi -jAi -aib -jAi -jAi -nrz -vhq -nqU -vRz -vRz +xrv +xrv +xrv +xrv +gEL +xrv +xrv +bHe +gpp +rbg +kiv +kiv aag -aaf -aaf -aaf -ajY +oVj +oVj +oVj +fPT aaa aaa aaa @@ -93861,49 +81160,49 @@ aaa bdH bdH bdH -aad +bHS aag -pCi -rPC -aou -lrq -yeX -uqo -uvy -tfO -fsz -lrq -irJ -nBo -pJi -swn -jAG -tqe -qPO -xTp -lMc -jcf -eUU -wSm -cqM -xkd +eiy +jGw +ogL +cQv +djc +jzB +otL +ajj +pjS +cQv +jwY +vpM +wBf +gxD +qRu +luN +wte +fpt +xsd +qbL +wJB +uHX +wEH xkd +hDc +jUK xkd +qdG +tUx +tUx +tUx +tUx +tUx +ohP +oEE xkd -naB -eoP -fgl -xEe -naB -xEe -fgl -deb -naB -lmk -kIV -xEF +xhT +doW +nhY aag -ajZ +woL bdH bdH aaa @@ -93962,49 +81261,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -nXP -nXP -nXP -hJp -hJp -uNL -uNL -uNL -tVf -mGL -oxp +eIO +eIO +eIO +eIO +txF +txF +mfj +mfj +mfj +eXM +gxm +fdi kcp bWJ nar alU -bXo -oCi +tVs +uOU bLs -mZM +tiP aoi -grG -bXY +tKn +tNM alU -xsW -uBn -wJw -bEz -bzA -dRw -bzy -bzy -bzy -vhq -nqU -vRz -vRz -vRz -vRz +gzq +pUL +kUl +nLV +pjE +iUT +xZl +xZl +xZl +gpp +rbg +kiv +kiv +kiv +kiv aag -ajZ +woL aaa aaa aaa @@ -94064,49 +81363,49 @@ aaa aaa bdH bdH -aad -pCi -pCi -wcn -tYB -lrq -noo -noo -noo -lrq -lrq -lrq -fNA -nBo +bHS +eiy +eiy +lAY +bmf +cQv +myE +otL +oru cQv -qPO -qPO -wuc -qPO -wvT -luw +lCY +cQv +nby +jHE +wte +wte +oIq +wte +wte +gzF +mCA emp -dGD +hhj wSm -lfW -emp -vli -rSH -xYj -naB -aSS -pHp -poZ -naB -jkV -pHp -kOi -naB -xCj -kIV -xEF -xEF -ajZ +xQd +bas +tUx +iTI +wQS +qdG +tdz +lnM +gLP +mUe +mUe +gLP +lNq +gLP +xHk +doW +nhY +nhY +woL bdH bdH aaa @@ -94165,49 +81464,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -jpN -hJp -mGL -hJp -iBE -uNL -hJp -mGL -poR -mGL -pNp +eIO +lTG +txF +vNg +txF +hCZ +mfj +bqt +gxm +luA +gxm +lkq kcp -pNK -bIA +scf +inq alU -uDn -bKf +bfq +vZR bLs -bLj +kkc aoi -bNk -ecZ +xRQ +uBC alU -bNW -uBn -fut -pqQ -pqQ -pqQ -bzA -rEu -bzy -vhq -nEz -vhq -ioj -mjR -vRz +rtl +pUL +iva +yhG +yhG +yhG +pjE +vqV +xZl +gpp +ybl +gpp +crf +gaK +kiv aag -ajZ +woL aaa aaa aaa @@ -94267,49 +81566,49 @@ aaa aaa bdH bdH -aad -pCi -msV -rPC -naf +bHS +eiy +mvX +jGw +efF cQv -vcG -lYZ -olv -dxm -nMu -uFp -ePB -nBo -tsX -xSA -ugs -wVY -lEv -iQg -jpQ -tsX -jOu +fEb +eAW +nxc +cqJ +hHT +wdU +few +bmL +fSS +dsU +jGY +rTo +yaj +cuF +bKJ +emp +pOf wSm -pyj -vsJ -kjN -rvo -oIc -naB -xro -fgl -wvI -naB -wvI -fgl -qmX -naB -lTK -mnm -kIV -xEF -ajZ +ktA +emp +emp +emp +emp +iuZ +emp +emp +gLP +wqC +kMP +lbN +kzO +gLP +tmm +vPs +doW +nhY +woL bdH bdH aaa @@ -94368,49 +81667,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -bwF -hJp -mGL -hJp -oPI -uNL -hJp +eIO +mNp +txF +vNg +txF +oex +mfj +bqt kcp kcp -iqp +cip kcp kcp -jgl +lBP kcp alU alU alU -mBp +kfV alU -cmJ +bFZ alU alU alU -bOe -nrt -qyF -ecR -uOc -uOc -uOc -bPj -bzy -piO -vhq -nqU -nqU -rSK -vRz +hsT +qVZ +qlR +pND +aMZ +aMZ +aMZ +pis +xZl +gLm +gpp +rbg +rbg +uTC +kiv aag -ajZ +woL aaa aaa aaa @@ -94470,49 +81769,49 @@ aaa aaa bdH bdH -aad -pCi -dSA -rPC -cQv -cQv -geX -tFv -pGT -vkM -jvc -ajj -ajj -nBo -xps -jpQ -jpQ -wVY -eOk -pFa -ctn -wqu -eeN +bHS +eiy +sNs +jGw +vxM +vxM +vxM +vxM +vxM +vxM +wps +jXC +jXC +bmL +fSS +gbp +jGY +rBm +rBm +qkh +uTu +jcf +pOf cMl -fHS -naB -naB -naB -naB -naB -naB -rkh -lvZ -naB -fuX -rra -naB -naB -naB -mnm -kIV -xEF -ajZ +tmj +emp +pTx +iWg +ivk +oNm +iWg +sgT +gLP +mqW +kPr +ujv +cWR +gLP +gLP +vPs +doW +nhY +woL bdH bdH aaa @@ -94571,49 +81870,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -mGL -hJp -mGL -dqd -uNL -hJp +eIO +vNg +vNg +txF +vNg +mCO +mfj +bqt kcp -lwB -bTS -bTS -lxo -qcy +kmw +gbG +gbG +yiu +wAf kcp -edM -edM -mcl -bLt -bXX -bKh -egq -bKh -bNp -fsd -bKj -jjs -jjs -jjs -jjs -jjs -jYd +cjJ +cjJ +xPI +inH +xyK +ocS +whx +ocS +cyn +dJZ +eFu +ese +ese +ese +ese +ese +bZt bSv bSv bSv bSv bSv -nqU -vRz +rbg +kiv aag -ajZ +woL aaa aaa aaa @@ -94668,54 +81967,54 @@ aaa aaa aaa aaa -aaa +bdH aaa aaa bdH bdH -aad -pCi -wcn -rPC -cQv -eaf -bEv -tWg -rZR -cqJ -isH -vwO -scD -rXC -vyE -nwz -nwz -mkk -wir -jnT -qNv -wqu -eeN +bHS +eiy +lAY +jGw +vxM +seV +sxj +bKH +idw +lKD +fAQ +jXC +jXC +bmL +mkp +gGD +jGY +rBm +aZj +dEL +uTu +jcf +pOf cMW qEy -ooR -xvw -nBu -tcP -lFs -sIY -qyd -uDp -tNj -uDp -qyd -icX -xQD -naB -kIV -lre -xEF -ajZ +erV +mSY +wRi +wRi +dqA +jwm +luv +oxX +eZA +eZA +wNu +qvR +upx +gLP +doW +ygf +nhY +woL bdH bdH aaa @@ -94774,49 +82073,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -hJp -hJp -mGL -pzZ -ijp -uNL -mGL +eIO +txF +txF +tYe +vEw +gYm +mfj +gxm kcp -bTR -iEg -oQM -aqI -aqI +lPf +qjn +uZD +uLp +uLp kcp -pUl -tXz -rYZ -bLu -bBB -bBB -bBB -bBB -bNp -mYY -nka -afz -afz -afz -afz -afz -iDd -qih +sEn +ikC +xpB +aXm +fLH +fLH +fLH +fLH +cyn +mEz +ooH +wSM +wSM +wSM +wSM +wSM +auJ +hEG bTH foN -cDZ +dNY bSv -pch -vRz +nBO +kiv aag -ajZ +woL aaa aaa aaa @@ -94875,51 +82174,51 @@ aaa aaa aaa bdH -aac +eQJ aag -pCi -mNR -wcn -cQv -eaf -bEv -fLn -rXd -dvT -qSl -ajj -ukS -wZa -tsX -ezU -dxT -jpQ -iQg -bRm -ecq -tsX -tkV -pyj +eiy +hVR +lAY +vxM +hRh +qez +qez +qQC +lKD +vEQ +aaQ +nnB +fPx +jnq +hmd +nSI +opb +jNI +mjW +vkO +emp +gUb +fbK +lDu +emp +mWm +pZR +twP +lsC pyj -luC -elq -qmE -luC -uVF -uQm -qPD -qPD -qPD -qPD -qPD -bND -jaP -naB -kIV -rQU -xEF +ubX +gLP +ciI +lap +xHm +bMb +lmQ +gLP +doW +tbq +nhY aag -ajY +fPT bdH aaa aaa @@ -94977,49 +82276,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -thT -hJp -uNL -uNL -uNL -uNL -mGL +eIO +oTI +txF +mfj +mfj +mfj +mfj +gxm kcp -lxW -hPh +aNF +okR wGX bFr ppe kcp -bzA -bKh -bKh -hcs -kCS -kCS -kCS -kCS -hHJ -iWL -bkD -afz -afz -afz -afz -afz -iDd +pjE +ocS +ocS +kXi +xJl +xJl +xJl +xJl +pYq +dWP +qpj +wSM +wSM +wSM +wSM +wSM +auJ bSv tjw bTH -bTV +eKe bSv -nqU -vRz +rbg +kiv aag -ajZ +woL aaa aaa aaa @@ -95078,51 +82377,51 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -tCb -aou -cQv -eaf -bEv -fLn -avz -dvT -nHV -ajj -iKX -cQv -tsX -tsX +eiy +kxp +ogL +vxM +vIb +kKQ +kKQ +kKQ +xkf +dLb +dde +cez +fSS +fSS tsX -epu -oLF tsX +iLM +xqu tsX tsX +emp vyi vyi vyi -naB -naB -naB -naB -dqV -mdJ -vXQ -vXQ -uNe -uUs -nqZ -ekg -usr -naB -inC -mKf -xEF +emp +emp +emp +emp +emp +wIC +wDG +wIC +tIJ +tIJ +gLP +gLP +fOe +gLP +cUr +lAF +nhY aag -ajZ +woL bdH bdH aaa @@ -95180,49 +82479,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -hJp -uNL -qDv -aLk -uNL -xCR +eIO +vNg +txF +mfj +fEt +vAP +mfj +obg kcp -wTN -kZN -rgK -hbu -iYe -bJl -bKa -bKa -bKa -gCl -bzA -bzA -bzA -bzA -bNp -pqQ -nka -afz -afz -afC -afz -afz -bRx +jZp +ksm +cOS +cdK +xDI +cJT +niC +niC +niC +luK +pjE +pjE +pjE +pjE +cyn +yhG +ooH +wSM +wSM +ohx +wSM +wSM +tMc bSv ifb bTH bSv xVT -kAs -vRz +keo +kiv aag -ajZ +woL aaa aaa aaa @@ -95281,51 +82580,51 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -oCL -wcn -cQv -eaf -bEv -qRo -rXd -dvT -bAM -wZa -cQv -cQv -tHr -mqg -eiK +eiy +mQG +lAY +vxM +rxd +rxd +rxd +rxd +lKD +lMo +bLU +fSS +fSS +fhI +uRj +tkb vka uwN -fbv -xuZ -mSs -xuZ -xuZ -xuZ -rCU -rEY -gxU -naB -kyP -qPD -qPD -qPD -uQm -pIH -naB -nOe -nOe -naB -bIi -fQk -xEF +kpB +vut +kqE +vut +vut +vut +vut +wrb +cUT +eTG +eaO +wIC +ncZ +ovg +qIn +mos +wIC +jHW +jvG +gLP +wVK +eUM +nhY aag -ajZ +woL bdH bdH aaa @@ -95383,49 +82682,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -tRV -mGL -uNL -kmM -eqk -uNL -hJp +eIO +txF +vNg +mfj +jEo +swU +mfj +bqt kcp -oMi -bAZ -bTS -bTS -niR +tpV +ftx +gbG +gbG +wLb kcp -bzA -bKh -bKh -bLt -bzA -bKh -bKh -bKh -bNp -pqQ -fti -afz -afz -afz -afz -afz -iDd +pjE +ocS +ocS +inH +pjE +ocS +ocS +ocS +cyn +yhG +oxq +wSM +wSM +wSM +wSM +wSM +auJ bSv -aIX -aIX +vNU +vNU bSv -oES -eXo -vRz +jxn +orO +kiv aag -ajZ +woL aaa aaa aaa @@ -95484,22 +82783,22 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -wcn -rPC -cQv -bop -jeK -mWe -rXd -dvT -ieo -vxC -ldD -ceZ -jnD +eiy +lAY +jGw +vxM +qhe +sYX +jTA +gFy +lKD +lMo +ioK +ogB +knk +nAs hUW hiM rWs @@ -95510,25 +82809,25 @@ hiM hiM rWs rWs -rQt -cgT -xuc -naB -pZV -gMf -ekg -ekg -uQm -nnz -vrQ -mLI -qyd -vrQ -mnm -sIk -xEF +kAj +koq +uRk +eby +jbW +wIC +gwa +dul +dul +daM +wIC +rIo +hbU +gLP +vPs +qJl +nhY aag -ajZ +woL bdH bdH aaa @@ -95586,49 +82885,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -hJp -mGL -hKe -hJp -hJp -uNL -hJp +eIO +txF +vNg +tcL +bqt +bqt +mfj +bqt kcp kcp kcp -sXE +nWt kcp kcp kcp -bzA -bBB -bBB -bLt -bzA -bKh -bBB -bBB -bNp -xgx -nka -afz -afz -afz -afz -afz -iDd +pjE +fLH +fLH +inH +pjE +ocS +fLH +fLH +cyn +tQn +ooH +wSM +wSM +wSM +wSM +wSM +auJ bSv cop cop bSv -vhq -nqU -vRz +rME +rbg +kiv aag -ajZ +woL aaa aaa aaa @@ -95687,51 +82986,51 @@ aaa aaa bdH bdH -aad +bHS aag -pCi -wcn -rPC -cQv -cQv -cQv -cQv -cQv -dvT -ieo -vxC -ldD -vGA +eiy +lAY +jGw +vxM +vxM +vxM +vxM +vxM +gaJ +wRf +dcx +xdi +doL hUW dHd vka -lnt -uVA -uVA -uVA -uVA -uVA -gde -uVA -wIQ +emu +vpu +tSt +tSt +tSt +tSt +wUA +tSt +kbK xWv -aQb -naB -naB -mtl -hwQ -hwQ -okM -mtl -mtl -naB -naB -naB -mnm -hPT -xEF +rXJ +vka +fbF +wIC +qdD +pHd +vAG +dMd +wIC +gLP +gLP +gLP +vPs +qxD +nhY aag -ajZ +woL bdH bdH aaa @@ -95789,49 +83088,49 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -hJp -mGL -uNL -aSY -hJp -uNL -hJp -dqd +eIO +txF +vNg +mfj +rcM +bqt +mfj +bqt +obZ kcp -bTU +xVu gZK -bTS -lyX +gbG +vsI kcp -bAr -bKh -bBB -bLt -bzA -bKh -bBB -bKh -bNp -fsd -bKj -eGg -eGg -eGg -eGg -eGg -jYd +fKN +ocS +fLH +inH +pjE +ocS +fLH +ocS +cyn +dJZ +eFu +vWq +vWq +vWq +vWq +vWq +bZt bSv -kBY -bTn +xlh +srM bSv -vhq -vhq -vRz +gpp +gpp +kiv aag -ajZ +woL aaa aaa aaa @@ -95886,29 +83185,29 @@ aaa aaa aaa aaa -aac -aaf -aaf -aaf +eQJ +oVj +oVj +oVj aag aag -pCi -hKi -wcn -aFN -wcn -cXZ -jIV -vxM -gaJ -uzx -uue -vxM -iuE +eiy +seR +lAY +kxl +lAY +vxq +xdi +kub +dcg +lkN +hUa +xdi +chH uwN vka -pRO -kqy +lNc +nCc awz awz cZh @@ -95916,29 +83215,29 @@ cZh cZh awz awz -jfK -wIQ +bak +kbK mPj -omy -xpo -mtl -pGG -qRT -djm -hgF -mtl -kIV -hUc -wNU -mnm -sIk -xEF +daD +tzJ +wIC +tNC +qmg +jkh +uLU +wIC +guj +nex +pQj +vPs +doW +nhY aag aag -aaf -aaf -aaf -ajY +oVj +oVj +oVj +fPT aaa aaa aaa @@ -95990,53 +83289,53 @@ aaa aaa aaa aaa -nXP -nXP -nXP -nXP -nXP -lgY -uNL -uNL -uNL -lgY -uNL -mGL -hJp +eIO +eIO +eIO +eIO +eIO +vNg +txF +mfj +mfj +ecJ +mfj +gxm +vIe kcp -onY +cgg wdf -bTS +gbG kcp kcp -bzy -bKh -bBB -bLt -bzA -bKh -bBB -bKh -bzy -tBz -fBD -ntt -jXk -hdh -hdh -hdh -bRD +xZl +ocS +fLH +inH +pjE +ocS +fLH +ocS +xZl +obD +lps +ehF +nYr +nuR +nuR +nuR +eee bSv bSv bSv bSv -mzo -qOU -vRz -vRz -vRz -vRz -vRz +rbg +gpp +kiv +kiv +kiv +kiv +kiv aaa aaa aaa @@ -96089,59 +83388,59 @@ aaa aaa aaa aaa -aad +bHS adG adG adG adG adG adG -gqq -iCz -aFN -rPC -rPC -kDb -vxM -wVV -qau -mVi -vxM -udK +pwu +rGP +kxl +jGw +jGw +xdi +xdi +xdi +uIo +gwy +xdi +sJL mwA -lnt -cgO +emu +uiV awz awz -nID -wPF -eHx -uKd -oER +jEC +alm +ucU +wGl +nmi awz awz -mgj -wIQ +dJf +kbK jHh -jUY -fbY -qVF -oog -qaJ -czB -mtl -mnm -kIV -wNU -kIV -mrB +fbF +wIC +oyD +gTN +sdY +ouP +wIC +vPs +doW +pQj +doW +niP tuA tuA tuA tuA tuA tuA -ajZ +woL aaa aaa aaa @@ -96193,53 +83492,53 @@ aaa aaa aaa aaa -nXP -hJp -dPU -hJp -mGL -mGL -khS -hJp -crc -hJp -qee -mGL -hzM +eIO +txF +rgL +msz +vNg +vNg +vNg +txF +bXb +msz +spn +gxm +xfl kcp -xNz -utK -rKA +xBh +sEZ +caW kcp kcp -bzy -bXs -bBB -bLt -bzA -bKh -bBB -bXZ -bzy -bAg -bBB -qJN -jjZ -bzH -bBB -bzA -cBl -bRU -vhq -eJh -nqU -rcH -vhq -vhq -nqU -jTu -nqU -vRz +xZl +usx +fLH +inH +pjE +ocS +fLH +iWH +xZl +vBr +fLH +owL +ufX +udT +fLH +pjE +ifW +kez +gpp +hqX +rbg +gpp +gpp +gpp +rbg +spW +rbg +kiv aaa aaa aaa @@ -96292,59 +83591,59 @@ aaa aaa aaa aaa -aad +bHS adG -aeK -aeK -bur -hdd +gUm +gUm +fYH +mEF akC akC akC akC -cVJ -rPC -jvJ -vxM -sVy -mKh -mVi -vxM -bmz +hxB +jGw +xdi +saX +xKb +lkN +iZY +xdi +lgD wSR -mMV +rMk awz awz -aJp -jgJ -jgJ -jgJ -jgJ -jgJ -mZb +wsO +rTc +rTc +rTc +rTc +rTc +rFf awz awz -woy +ppN laO -nRH -fbY -qVF -oog -kHK -wfL -mtl -mnm -dGc +wGN +wIC +psz +vAG +xtn +dcz +wIC +vPs +cni kCi kCi kCi kCi -hjA -nIE -jKn -pyi +fmL +qef +vFl +hcJ tuA -ajZ +woL aaa aaa aaa @@ -96396,16 +83695,16 @@ aaa aaa aaa aaa -aPy -aPY -aQv -aQv -aQv -aQv -aQv -aQv -aQv -aQv +qnk +sZW +fkf +fkf +fkf +fkf +fkf +fkf +fkf +fkf bcm bcm kcp @@ -96415,34 +83714,34 @@ kcp kcp kcp kcp -bzy -bZL -cat -caC -caD -bZL -cat -bZL -bzy -bzy -bzy -bzy -bzy -bzy -bzy -bzy -bzy -bzy -bJh -bJh -cmH -bJh -bJh -bJh -bJh -bJh -ces -bSg +xZl +rqZ +lBO +xWY +iTo +rqZ +lBO +rqZ +xZl +xZl +xZl +xZl +xZl +xZl +xZl +xZl +xZl +xZl +msj +msj +uML +msj +msj +msj +msj +msj +oxG +lDs aaa aaa aaa @@ -96495,59 +83794,59 @@ aaa aaa aaa aaa -aad +bHS adG -afa -aeK -bur -wdI -sFf +wnf +gUm +fYH +xsv +heL bbV bzz akC -cRc -rPC -wcn -vxM -eyg -giZ -gTl -vxM -pZS +ssl +jGw +xdi +reH +hVw +xfx +qUZ +xdi +xoI pEB -jUY +fbF qwp -aVI -jmY +xVm +xfY rHc xhZ xhZ xhZ rHc -qyo -udx +oqg +izT qwp -pZS +xoI jHh -jUY -fbY -uLJ -oog -sBH -vfv -mtl -mnm -dGc +fbF +wIC +wIC +cPU +wIC +wIC +wIC +vPs +jZW kCi -sDD -kOv -cRv -sQF -nIE -jKn -vjg +fse +luE +xXP +pio +qef +vFl +xor tuA -ajZ +woL aaa aaa aaa @@ -96599,53 +83898,53 @@ aaa aaa aaa aaa -aPy -dhZ -aQv -bbn -bmu -bot -bpU -rFB -bmu -aQv -lYN -byr -aXh -bAQ -aXj -bDH -xyw -bIo -bKt -bLD +qnk +dPx +fkf +uOG +lxU +iFF +xwZ +pxK +uyd +fkf +eox +fLW +gyM +eOt +uEu +rOW +vNt +edS +iTm +nmH aYt btO btN -xyw +vNt aYt btO aYt -mIz -xyw -bYq -bZi -bZO -caM -aXj -qUh -xyw -ccG -bJh -cax -cet -cfx -cgG -cex -dfc -bJh -bJO -bSg +dnh +vNt +frn +dFE +vnP +fBJ +uEu +wMe +vNt +ktt +msj +ojr +fDB +xhJ +fcw +pjT +uHS +msj +lDd +lDs aaa aaa aaa @@ -96698,60 +83997,59 @@ aaa aaa aaa aaa -aad +bHS adG -aeK -aeK -bur -xFP -nIt +gUm +gUm +fYH +xeh +dJN adu aHZ akC -oCL -rPC -wcn -vxM -vxM -tXs -oCX -vxM -vkR +mQG +jGw +xdi +gPE +cKh +rtD +oiz +xdi +cLe wsD -jUY +fbF qwp -eei -jmY +hTQ +xfY iwW sTm oSq sTm tdT -qyo -itX +oqg +hWS qwp -vGA +doL uwN -uVd -mtl -mtl -qYH -mtl -mtl -mtl -kIV -kIV +cPN +wIC +aXu +aTg +jNZ +mLn +wIC +doW +doW kCi -uAj +egm qfa btD -vmW -nIE -jKn -pyi +uGJ +qef +vFl +hcJ tuA -ajZ -aaa +woL aaa aaa aaa @@ -96762,6 +84060,7 @@ aaa aaa aaa aaa +bdH aaa aaa aaa @@ -96802,16 +84101,16 @@ aaa aaa aaa aaa -bhh -aPZ -bhh -bjL -bmw -kIm -bmw -brO -bmx -bvT +dHE +fRF +dHE +owq +lsy +rrh +lsy +vRU +oCA +aUr btO aYt bzQ @@ -96823,11 +84122,11 @@ bhT bKu btO aYt -wqh -bym -brW -brW -bve +lGD +nHR +uVS +uVS +coF bwn bVM bVM @@ -96839,16 +84138,16 @@ bVM bVM bwn bVM -cdb -cdw -bGp -cfy -rBk -cfy -cim -cjl -bRz -cjm +sfb +wTB +dPD +dQn +fuo +dQn +mCS +euu +kkm +nYy aaa aaa aaa @@ -96901,51 +84200,51 @@ aaa aaa aaa aaa -aad +bHS adG adG amz amz aly -nkx +sYS bbZ btv akC -dDC -rPC -wcn -vxM -wVV -erx -dsw -vxM -kfE +fDi +jGw +xdi +xdi +iPs +rtD +uIX +xdi +vNJ wsD -jUY +fbF qwp -rBx -jmY +ovd +xfY iwW sTm gwR sTm tdT -qyo -pbW +oqg +khw qwp -cDn +kgq uwN -jUY -mtl -lNF -rkK -cIK -mtl -tzj -kIV -bbR +fbF +wIC +lcW +aTg +wIC +wIC +wIC +doW +wCq kCi -eqI +wlV ssZ btD awC @@ -96953,8 +84252,7 @@ uMj uMj tuA tuA -ajZ -aaa +woL aaa aaa aaa @@ -96965,6 +84263,7 @@ aaa aaa aaa aaa +bdH aaa aaa aaa @@ -97005,16 +84304,16 @@ aaa aaa aaa aaa -bhh -aPZ -bhh -bjM -bmx -eBC -aZB -qld -kyZ -bvT +dHE +fRF +dHE +gkd +oCA +imQ +fIQ +cvI +xRg +aUr btO aYt aYt @@ -97026,11 +84325,11 @@ bhU bjR aYt aYt -wqh +lGD bHB -xyw +vNt btO -bcc +eca aYt aYt aYt @@ -97042,16 +84341,16 @@ aYt aYt aYt btO -cdc -jdk -mLu -erS -pZo -cdx -cin -cjm -bRA -cjm +qFs +mYC +ycW +uKg +lbi +xjL +kBi +nYy +hQe +nYy aaa aaa aaa @@ -97104,59 +84403,59 @@ aaa aaa aaa aaa -aad +bHS aeE -hwP -ayq -cfE -cfE -pvP +gBS +leA +paN +paN +qgP adu aHZ akC -eKM -ake -rPC -vxM -dFC -bRH -bRH -vxM -xDn +eqr +wRj +nKS +xdi +dSj +qAr +vAl +xdi +tuX pEB -jUY +fbF awz -wkH -hmS +vKr +fSX mWV jZu sco fqO lIp -hWO -fqc +mug +tPo awz -gGr +uMY jHh -sCQ -mtl -pJE -wPk -hRy -mtl -tzj -kIV -bVT +tzJ +wIC +iZD +aTg +ejb +wIC +lAF +doW +doW kCi -nwW +jEc btD btD -rVN -rVN -vly -hHF +hnH +hnH +bxS +kZR pun -ajZ +woL aaa aaa aaa @@ -97208,53 +84507,53 @@ aaa aaa aaa aaa -bhh -aPZ -bhh -bjM -bmx -bmx -bmx -brP -qTZ -bvT +dHE +fRF +dHE +gkd +oCA +oCA +oCA +eue +oIR +aUr btO -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -bwm +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM +dCF bHB -xyw +vNt btO -bSR -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu +ney +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM +mDM btO -cdc -nEs -cev -cdx -cdx -cdx -cin -cjm -bRA -cjm +qFs +sFw +vov +xjL +xjL +xjL +kBi +nYy +hQe +nYy aaa aaa aaa @@ -97307,59 +84606,59 @@ aaa aaa aaa aaa -aad +bHS aeE -aie -aTy +myk +uTg adu adu adu adu aHZ akC -akC -tRX -uzm -vxM -eyg -eyg -oWI -vxM -nNv +vhf +djv +vhf +xdi +vSI +jdV +yhR +xdi +tBy pEB -jUY +fbF qwp -wyt -jmY +qcp +xfY iwW dCr gwR sTm tdT -qyo -tsy +oqg +tPY qwp -ora +xjx laO -rKQ -mtl -qHF -fnl -mtl -mtl -utZ -pUJ -pUJ +cdg +wIC +yeR +aTg +hQl +wIC +raw +jyu +raw kCi -nRR +onv btD btD btD btD -tnb -oit +fAb +vqi pun -ajZ +woL aaa aaa aaa @@ -97411,16 +84710,16 @@ aaa aaa aaa aaa -bhh -aPZ -bhh -bjN -bmy -pAR -hHR -brQ -btp -bvV +dHE +fRF +dHE +cVB +who +vAC +rgH +wpG +tTO +rbG bvf bdL bvf @@ -97434,7 +84733,7 @@ bvf bvf bvf bIe -baN +tFY bvf bvf bvf @@ -97448,16 +84747,16 @@ bvf bvf bdL bvf -cdd -cdy -cew -cfz -sSY -kZA -cio -cjm -bRA -cjm +gpZ +eSF +qUd +mpw +mIg +taI +iSr +nYy +hQe +nYy aaa aaa aaa @@ -97510,59 +84809,59 @@ aaa aaa aaa aaa -aad +bHS aeE -aig -brf -cSC -cSC -nIt +hkN +jpH +sgX +sgX +dJN adu hxG akC -fvu -qkn -wcn -vxM -vxM -vxM -vxM -vxM -xSz +pfq +rBE +lbd +xdi +xdi +xdi +xdi +xdi +mKW pEB -jUY +fbF qwp -sUE -jmY +iBA +xfY iwW dCr oSq sTm tdT -qyo -tsy +oqg +tPY qwp -pZS +xoI jHh -vCx -mtl -mtl -mtl -mtl -qFl -mnm -xyz -gpe +gie +wIC +wIC +wIC +wIC +wIC +rqC +jqo +hqg kCi -nNt +mwI vqC btD -pPN -pPN -gKF -ndZ +suJ +suJ +mEk +iJP pun -ajZ +woL aaa aaa aaa @@ -97614,53 +84913,53 @@ aaa aaa aaa aaa -aPy -hhe -aQv -bjO -bmu -bou -bpW -rFB -bmu -aQv -vCg +qnk +evT +fkf +nxd +lxU +kiH +cnn +pxK +lxU +fkf +mZJ bHB -xyw -xyw -xyw -bdM -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xpT -xyw -xyw -xyw +vNt +vNt +vNt +kCK +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +qqY +vNt +vNt +vNt bHB -osx -bJh -cdz -aTq -cfA -cgH -cex -dfc -bJh -tdK -bSg +hVN +msj +rrO +kzw +vKw +goF +pjT +uHS +msj +ejd +lDs aaa aaa aaa @@ -97713,50 +85012,50 @@ aaa aaa aaa aaa -aad +bHS adG adG amz amz aly -wmg +sLl adu cqQ -afT -agU -dIl -xpd -mlp +hIw +ybn +xXM +sRc +cMd hiM hiM -qRj -xuZ -jnD +sGk +vut +nAs wsD -jUY +fbF qwp -iiZ -jmY +gHK +xfY rHc lAy wjq wjq rHc -qyo -tsy +oqg +tPY qwp -vGA +doL uwN -pYX -xuZ -pcj +dra +vut +abz hXm fZq -dVm -qkb -vnY -vnY -bpd +vpk +kKu +rRw +rRw +fSM bqT vZv vjK @@ -97765,7 +85064,7 @@ uMj uMj tuA tuA -ajZ +woL aaa aaa aaa @@ -97817,19 +85116,19 @@ aaa aaa aaa aaa -aPy -aPY -aQv -aQv -aQv -aQv -aQv -aQv -vak -ovP -xyw +qnk +sZW +fkf +fkf +fkf +fkf +fkf +fkf +eAE +mvN +vNt bHB -xyw +vNt aYt aYt aYt @@ -97851,19 +85150,19 @@ btO dTI btO aYt -xyw +vNt bHB -xyw +vNt bcm -mzo -mzo -mzo -mzo -mzo -mzo -mzo -cjK -bSg +hHI +hHI +hHI +hHI +hHI +hHI +hHI +hhR +lDs aaa aaa aaa @@ -97916,59 +85215,59 @@ aaa aaa aaa aaa -aad +bHS adG -aeK -aeK -bur -hdd -pvP +gUm +gUm +fYH +mEF +qgP adu -frF +gIx akC -fRN -avl -lFb -ail +ePK +lbd +wUL +cQx vka vka mPj mIy eEw rTk -nRH +wGN awz awz -fRr -dmv -cHE -dmv -dmv -dmv -olU +kGJ +wvF +gIt +wvF +wvF +wvF +fZy awz awz -vSN +eif mPj rWs -inh +cyg ewr lPC mgy -wWT -xuB -vcK -czJ +toO +tJN +spR +tJX kCi -nRR +onv btM vjK -dUZ -nIE -jKn -pyi +rZr +qef +vFl +hcJ tuA -ajZ +woL aaa aaa aaa @@ -98020,21 +85319,21 @@ aaa aaa aaa aaa -nXP -ndx -uNL -eRt -soS -sgy -nsu -iyQ -rod -psy -xyw +nQW +cMI +vRI +nlw +cME +mGq +wkL +dvB +qBi +uXM +vNt bHB -gjm -aYu -ilG +vZW +mDM +dWU aYt bfJ btO @@ -98052,21 +85351,21 @@ btO aYt bBN bcm -caN -aYu -bcb +ilj +mDM +rPe bHB btO bcm -tlI -jEs -kCT -lsb -fcG -ufp -mzo -qQP -vRz +vUm +xcD +fLu +nYb +bpn +uQC +hHI +oZT +kHZ aaa aaa aaa @@ -98119,59 +85418,59 @@ aaa aaa aaa aaa -aad +bHS adG -afa -aeK -bur -wdI -aHY -tyK -iKI +wnf +gUm +fYH +xsv +rQr +sVZ +bmK akC akC -ail -lGG -age -age -kzy -wIQ +cQx +dsy +hqK +hqK +tTh +kbK jHh vka -lnt -ciN -sUg +emu +fhq +fWC qwp -vYM -fJm +pwV +udp aAq -iah +hYF mGe -dCx -rpK +ppv +goq qwp -xmg -ggt -wIQ +eWl +fwt +kbK vka jHh -lnt -ckP -qFl -qFl -lIV -gsH -qFl +emu +oUz +ybQ +ybQ +kUD +jvL +ybQ kCi -cfk -uws -cRv -nwx -nIE -jKn -vjg +tAF +ujh +xXP +rOP +qef +vFl +xor tuA -ajZ +woL aaa aaa aaa @@ -98223,21 +85522,21 @@ aaa aaa aaa aaa -nXP -hJp -uNL -lUv -bwQ -gUr -uNL -aNw -kXJ -kVX -xyw +nQW +kyH +vRI +nvi +ahQ +dOw +uNS +jlO +gAU +cga +vNt bHB -wqh -xyw -bcc +lGD +vNt +eca aYt bfK aYt @@ -98255,21 +85554,21 @@ aYt aYt btO sEq -wqh -xyw -bcc +lGD +vNt +eca bHB aYt bcm -dqH -kCT -kCT -kCT -kCT -kCT -bLb -dQH -vRz +hJa +fLu +fLu +fLu +fLu +fLu +fxH +bjE +kHZ aaa aaa aaa @@ -98322,59 +85621,59 @@ aaa aaa aaa aaa -aad +bHS adG -aeK -aeK -bur -xFP +gUm +gUm +fYH +xeh akC akC akC akC -fcF -avl -lFb -fvu -age -age -vSN +riB +lbd +wUL +xtX +hqK +hqK +eif jHh -lnt -dUE +emu +hXI awz awz awz jKF awz -rGE +rwL awz -lsp +kUP awz jKF awz awz awz -sTo -wIQ +fEc +kbK jHh -jUY -qFl -qFl -gpe -xuB -vcK -mBA +fbF +ybQ +ybQ +rqC +tJN +spR +xLb kCi kCi kCi kCi -vmW -nIE -jKn -pyi +uGJ +qef +vFl +hcJ tuA -ajZ +woL aaa aaa aaa @@ -98426,53 +85725,53 @@ aaa aaa aaa aaa -nXP -hJp -sIT -sIT -sIT -sIT -sIT -aNj -xmv -kVX -xyw +nQW +huW +lOB +tZt +tZt +tZt +tZt +ukQ +pCh +cga +vNt bHB -sXB -baH -bcd -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bEA -baH -fVz +iMK +edX +dox +xuh +cOB +edX +qpF +xuh +cOB +edX +qpF +xuh +cOB +edX +qpF +xuh +cOB +edX +qpF +xuh +dPO +edX +tXL bHB bBN bcm -vVh -kCT -kCT -kCT -kCT -wgU -mzo -kWY -vRz +iIA +fLu +fLu +fLu +fLu +tcv +hHI +wDh +kHZ aaa aaa aaa @@ -98525,59 +85824,59 @@ aaa aaa aaa aaa -aad +bHS adG adG adG adG adG adG -puK -avl -dUI -avl -avl -lFb -fvu -xDp -age -xDn +gze +lbd +orV +lbd +lbd +wUL +xtX +obW +hqK +tuX uwN -wiN +dte awz awz awz awz -aGb -qVS -aUe +hyS +iMT +keL gAl -aVG -aGj -aVR +iHo +fNK +cJq awz awz awz awz -oWg +uPm uwN -jUY -qFl -rnM -gpe -sDy -ukU -bfP -fvv -vcK -wAd +fbF +ybQ +sjt +rqC +oBG +rrJ +uLe +ouy +spR +xsJ tuA tuA tuA tuA tuA tuA -ajZ +woL aaa aaa aaa @@ -98629,19 +85928,19 @@ aaa aaa aaa aaa -nXP -tRV -sIT -jNt -iNZ -lQj -sIT -obG -kdt -kVX -xyw +nQW +huW +lOB +wXZ +jVL +kgK +tZt +uwV +iiV +cga +vNt bHB -aZO +sem baI baI baI @@ -98663,19 +85962,19 @@ baI baI baI baI -bGF +dej bHB aYt bcm -iQx -kCT -iuu -fHc -kpY -hTu -mzo -bRF -vRz +lUe +fLu +vxx +lLr +vXD +isy +hHI +vHR +kHZ aaa aaa aaa @@ -98728,59 +86027,59 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag -pCi -avl -nMc -ayP -iJf -iJf -sFZ -avl -tCb -age -pNa -iCu +wEG +lbd +sUH +kxB +biN +biN +sKI +lbd +izv +hqK +hNH +fgy awz awz -agb -azC +jwF +feu awz -nne -aGj -oSw +opB +fNK +qJC vIu -aVH -aGj -iQj +pMQ +fNK +pci awz -oQs -nFm +pCm +xtr awz ceE -eMP -faX -qFl -rEn -mnm -mYs -mnm -sDy -cUv -cNe -pLZ -xEF +gvg +cvP +ybQ +hkc +jqo +lZS +jqo +oBG +xmC +dmk +quz +teb aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -98832,19 +86131,19 @@ aaa aaa aaa aaa -nXP -hJp -sIT -vLh -mGL -qHb -sIT -hdR -hdR -hJz -hmy +nQW +huW +lOB +rKJ +upB +rDN +tZt +dca +dca +aJO +ruY bHB -aZP +gyZ baI baI baI @@ -98866,19 +86165,19 @@ baI baI baI baI -bGG +mLA bHB btO bcm -lyi -kCT -kCT -kCT -kCT -kCT -mzo -dQH -vRz +imM +fLu +fLu +fLu +fLu +fLu +hHI +bjE +kHZ aaa aaa aaa @@ -98931,15 +86230,15 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag -pCi -dRV -bZg +wEG +bSM +vGx kcH kcH kcH @@ -98947,27 +86246,27 @@ kcH kcH kcH kcH -kWq +csK qnh -aVG +iHo awz -afZ -afZ +lCx +lCx awz xTR awz -cRb +ljD awz -opC +uXz awz xTR awz -afZ -afZ +lCx +lCx awz -dFR +aIO qnh -ouW +kHU mKq dHZ dHZ @@ -98975,15 +86274,15 @@ aES aES aES aES -sDy -cNe -xEF +oBG +dmk +teb aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -99035,19 +86334,19 @@ aaa aaa aaa aaa -nXP -mfe -sIT -eNx -mGL -mGL -vKf -mGL -mGL -rII -xyw +nQW +cNj +lOB +lHm +upB +upB +fqk +upB +upB +mnh +vNt bHB -aZQ +oYR baI baI baI @@ -99069,19 +86368,19 @@ baI baI baI baI -bGH +eGQ bHB btO bcm -ksP -gdi -piX -kCT -kCT -kCT -mzo -dQH -vRz +iBD +glb +rWP +fLu +fLu +fLu +hHI +bjE +kHZ aaa aaa aaa @@ -99134,59 +86433,59 @@ aaa aaa aaa aaa -aad +bHS aag aag -pCi -pCi -pCi -pCi -lFb -avl +wEG +wEG +wEG +wEG +wUL +lbd kcH kcH kcH kcH -xKT +siN eqN -aBP +pyY aKa qnh -ewS -oBA -aom -aom -oUG -aom -bzR +xrC +qwC +pCk +pCk +miI +pCk +snz qnh -oUG +miI aKa -bzR -aom -oUG -aom -aom -mJe -iVy +snz +pCk +miI +pCk +pCk +ykT +mdb qnh aKa -rrB +iiq aGr eDu -tKr -uNg -cLN +mkU +kko +hcp aES -gpe -xuB -xEF -xEF -xEF -xEF +rqC +tJN +teb +teb +teb +teb aag aag -ajZ +woL aaa aaa aaa @@ -99238,19 +86537,19 @@ aaa aaa aaa aaa -nXP -hJp -sIT -mIB -mGL -fGY -wUO -gYB -pXQ -kYa -xyw +nQW +huW +lOB +mjn +upB +tep +xQq +hXo +ilz +bmH +vNt bHB -aZR +fXb baI baI baI @@ -99272,19 +86571,19 @@ baI baI baI baI -bGI +ver bHB -xyw +vNt bcm -fAt -kCT -kCT -kCT -kCT -iRS -mzo -oFG -bIO +csy +fLu +fLu +fLu +fLu +pSO +hHI +nWQ +kHZ aaa aaa aaa @@ -99337,59 +86636,59 @@ bdH bdH aaa aaa -aad +bHS aag aag -pCi -fqu -kTM -puK -lFb -avl +wEG +qSn +kxY +gze +wUL +lbd kcH -rlf -soq +kSS +fUP eYQ eqN dmA hyQ -iur -lTt -haB -dvl +dED +rvy +rNw +wPS miE dCK -esF -mQc -mQc -wgk -gaQ -aIl -aGv -aGv -dvl +dub +tIP +tIP +gWx +quM +xSr +vev +vev +wPS fYf uCW -omb -haB -gtp -qfA -tYX -tpD -xfO +lUX +rNw +ezH +sTz +ryo +eaz +qhw iTD vCO vCO jxB -gpe -xuB -gpe -gpe -gpe -xEF +rqC +tJN +rqC +rqC +rqC +teb aag aag -ajZ +woL aaa aaa aaa @@ -99441,19 +86740,19 @@ aaa aaa aaa aaa -nXP -mGL -sIT -sIT -rUU -sIT -sIT -uNL -uNL -uNL -xyw +nQW +cyW +lOB +lOB +qCs +lOB +lOB +vRI +vRI +vRI +vNt bHB -aZO +sem baI baI baI @@ -99475,19 +86774,19 @@ baI baI baI baI -bGF +dej bHB -eEc -mzo -mzo -kCT -xVj -vox -kCT -hTu -mzo -oFG -vRz +iRe +hHI +hHI +fLu +fsX +uIL +fLu +isy +hHI +nWQ +kHZ aaa aaa aaa @@ -99540,29 +86839,29 @@ bdH bdH aaa aaa -aad +bHS aag aag -pCi -huX -unJ -iJf -mBk -nUy +wEG +eWg +vQz +biN +lLg +vTF kcH -rBa +tKS nPs vEj nPs rJD hyQ -fEk -hlU +nQi +dCC wVW -feD +ncl azL -aJw -iBY +mGI +tiV wVW wVW wVW @@ -99570,13 +86869,13 @@ wVW wVW wVW wVW -dmg -vMI +epy +jMJ gII -oPy +ydK wVW -fDU -uiZ +iWZ +uty mKq qCy rpp @@ -99584,15 +86883,15 @@ vCO vCO vCO jxB -wpj -gDq -tJo -bGr -hnV -xEF +wpc +cVd +vJc +kGU +wpa +teb aag aag -ajZ +woL aaa aaa aaa @@ -99644,19 +86943,19 @@ aaa aaa aaa aaa -nXP -rxk -uNL -aqc -hJp -qbd -cQF -hqs -jFh -uNL -wlb +nQW +vXm +vRI +oHI +huW +lKI +iDD +eoC +hTj +vRI +dwt bHB -aZP +gyZ baI baI baI @@ -99678,19 +86977,19 @@ baI baI baI baI -bGG +mLA bHB -bGK -meN -xRc -qPg -oas -mni -kCT -fIf -mzo -oFG -vRz +lXs +pma +jBD +qMb +kgg +gta +fLu +jnV +hHI +nWQ +kHZ aaa aaa aaa @@ -99743,59 +87042,59 @@ bdH bdH aaa aaa -aad +bHS aag aag -pCi -nMc -tGf -avl -avl -qtS +wEG +sUH +nSJ +lbd +lbd +cjB kcH -rIW -oGx -wvU +ivW +iKT +eUJ yiX -lIa +stz hyQ -aic -aov +gvQ +rjb wVW wVW -sEp +pow wVW wVW wVW -swH -hqi +jmB +wBA wVW -swA -sEM +nWn +qzM wVW wVW wVW -osz +lSe wVW wVW -aKn -aKz +mjl +xuy pQy -jhW -mWD -wmT -jhW -mWD +ilr +cWJ +uFS +ilr +cWJ jxB -hWX -tYv -mRU -xuB -gpe -xEF +mIF +eXN +rIU +tJN +rqC +teb aag aag -ajZ +woL aaa aaa aaa @@ -99847,19 +87146,19 @@ aaa aaa aaa aaa -nXP -mGL -qee -hJp -mGL -qaZ -mGL -hJp -mGL -mBb -wqh +nQW +cyW +pZt +huW +cyW +ivI +cyW +huW +cyW +vbk +lGD bHB -aZQ +oYR baI baI baI @@ -99881,19 +87180,19 @@ baI baI baI baI -bGH +eGQ bHB -cuy -meN -dNe -pzO -kCT -kCT -kCT -eKg -pcD -lZO -vRz +mqZ +pma +kQQ +wCW +fLu +fLu +fLu +nUL +lxx +ieQ +kHZ aaa aaa aaa @@ -99946,43 +87245,43 @@ aaa aaa aaa aaa -aad -aai -aai -pCi -nMM -avl -avl +bHS +wEG +wEG +wEG +ahw +lbd +lbd agj agj agj agj agj agj -kcN -kcN +ivr +ivr agj -akL -aov +eGu +rjb wVW -apo -fHh +hjN +lsP wVW -lZs -lNS -sni -ayz -dAX -aQg -vpV -aEq -aGp +mRX +uRL +tIk +eek +kjF +gpF +hlV +uxY +eKN wVW -aDv -aHK +hrA +ggR wVW -aKn -aKy +mjl +ggU mKq aES aES @@ -99992,13 +87291,13 @@ aES aES aES aES -lDj -uEv -gpe -xEF -xEF -xEF -ajZ +diY +bCa +rqC +teb +teb +teb +woL aaa aaa aaa @@ -100047,22 +87346,22 @@ aaa aaa aaa aaa -aac -aaf -aaf -nXP -hJp -uNL -afd -hJp -slP -rsx -jFh -cQF -uNL -pyC +eQJ +oVj +oVj +nQW +huW +vRI +mlE +huW +uiC +ksr +hTj +iDD +vRI +xnk bHB -aZR +fXb baI baI baI @@ -100084,22 +87383,22 @@ baI baI baI baI -bGI +ver bHB -kwQ -meN -dNe -pzO -wtd -kCT -nLa -wgU -mzo -dQH -vRz -aaf -aaf -ajY +kkS +pma +kQQ +wCW +naa +fLu +hzn +tcv +hHI +bjE +kHZ +oVj +oVj +fPT aaa aaa aaa @@ -100149,59 +87448,59 @@ aaa aaa aaa aaa -aad -ahE -iuT -nna -svp -avl +bHS +hZq +iSE +tnj +cPL +lbd agj agj -wNq +hXZ ioo -cNd -fyg -nFW -kcN -ixZ -yjP -aic -aov +pcc +fcu +mIZ +ivr +wdu +nkP +gvQ +rjb wVW -arF +skX alX auQ -awm -avS -nwD -asR -pbs -pbV -aPB -aJG -aGq +hzF +qlZ +vgH +hFv +gsr +nRQ +jpO +rNd +qFT auQ aIf -aEA +wpU wVW -aKn -iJB +mjl +pKJ mKq -aVU -aRq -bHG -ceK -sxD -bhJ -bHG +vFM +sYE +yki +ptQ +sAd +nkR +yki aES aES -mtE -gpe -cEg -hgm -ils -ajZ +eLU +rqC +hBT +fmO +gbk +woL aaa aaa aaa @@ -100250,22 +87549,22 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -nXP -tRV -uNL -uNL -agi -uNL -uNL -uNL -uNL -uNL -cCE +nQW +nQW +huW +vRI +vRI +agx +vRI +vRI +vRI +vRI +vRI +wqk bHB -aZO +sem baI baI baI @@ -100287,22 +87586,22 @@ baI baI baI baI -bGF +dej bHB iAw -mzo -mzo -kCT -kCT -kCT -dlp -hTu -mzo -vot -vRz -aKQ +hHI +hHI +fLu +fLu +fLu +dAR +isy +hHI +sZJ +kHZ +kHZ aag -ajZ +woL aaa aaa aaa @@ -100352,59 +87651,59 @@ aaa aaa aaa aaa -aad -ahE -afc -npB -umY -avl +bHS +hZq +dgK +xLg +pCd +lbd agj -tpj +bxb agc mtH agc qFm -lxJ -kcN -cod -yjP -aic -aov +kMp +ivr +dCY +nkP +gvQ +rjb wVW -arG +nrW alX lQG -oPE -alZ -auT +krr +xPo +gzy aBR -awD +gqN bZJ -aRt -axp -aPI +cki +nei +wXj lQG aIf -aEB +dsK wVW -aKi +vNO amY -aVg -aVV +uYX +fql aWV aZy -ceK +ptQ aES -bpe -brS -rOs +shc +kAH +hAC aES -kwz -gpe -gpe -gAd -ils -ajZ +cMS +rqC +rqC +tOD +gbk +woL aaa aaa aaa @@ -100453,22 +87752,22 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -hJp -uNL -aas -alI -agw -anB -ajp -vdJ -bJo -amo +nQW +cyW +huW +vRI +xJz +srW +rRy +bsY +dvc +kks +dIw +raE bHB -aZP +gyZ baI baI baI @@ -100490,22 +87789,22 @@ baI baI baI baI -bGG +mLA bHB btO xjW -gks -kCT -kCT -kCT -mQW -kCT -mzo -gJd -mjR -aKQ +qYJ +fLu +fLu +fLu +dyY +fLu +hHI +tLO +keD +kHZ aag -ajZ +woL aaa aaa aaa @@ -100555,59 +87854,59 @@ aaa aaa aaa aaa -aad -ahE -aiV -wBY -hJJ -iGj +bHS +hZq +xmu +jtk +eON +jYw agj -tkK -riO +aqH +fho agc agc qFm -lnG -kcN -kcD -yjP -aic +rzA +ivr +kqQ +nkP +gvQ aKq -luZ +lPu alX alX avY alX alX alX -vNW -pON -vRb +tRB +dkP +aks alX alX alX avY aIf alX -eRu +hOC aKq -aKz +xuy mKq -aUk +dPu aWW aGr -uvt +hsp aES aES aES aES aES -gxk -hiQ -wVP -sed -ils -ajZ +xEl +tjD +pTf +aCL +gbk +woL aaa aaa aaa @@ -100656,22 +87955,22 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -hJp -uNL -aga -alQ -amR -adg -cdF -sgw -bJo -gRP +nQW +cyW +huW +vRI +lRA +aRm +mFE +cVf +iDG +uMO +dIw +xIz bHB -aZQ +oYR baI baI baI @@ -100693,22 +87992,22 @@ baI baI baI baI -bGH +eGQ bHB btO bcm -hit -kCT -kCT -fjO -kCT -vGy -mzo -dQH -nnc -vRz +uTJ +fLu +fLu +oIu +fLu +wla +hHI +bjE +okp +kHZ aag -ajZ +woL aaa aaa aaa @@ -100758,59 +88057,59 @@ aaa aaa aaa aaa -aad -pCi -kwS -avl -avl -rcs +bHS +wEG +eGo +lbd +lbd +lkZ agj -gmy +apy mOT cHa pJg sHZ mXj -kcN -kcN +ivr +ivr agj -aic +gvQ aKq -uTU +orF alX alX -aqN +fHE avY alX alX -paL -euV +fui +mfK mJu alX alX avY -aqN +fHE aIf alX -uTU +orF aKq -aKz +xuy mKq -ceK -lcy -iTw -ceK -sxD -bhJ -bHG -nis +ptQ +tmk +nsC +ptQ +sAd +nkR +yki +wlZ aES -nSU -xuB -lrb -hnV -xEF -ajZ +fiR +tJN +hrY +wpa +teb +woL aaa aaa aaa @@ -100859,59 +88158,59 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -nun -mzb -uNL -aav -amj -agG -anD -adg -ajB -bJo -xjK -rgy -bvf -anS -aog -bdU -bfV -baM -bkd -bdU -bfV -baM -bkd -bdU -bfV -baM -vbf -vbf -vbf -yeN -gzn -iGQ -bED -baM -bcb +nQW +nLm +fet +vRI +paZ +xsH +mKB +jbn +cVf +kQT +dIw +sfg +bHB +btO +vzy +bRJ +vzy +sMT +ukz +gdZ +vzy +sMT +ukz +gdZ +vzy +sMT +ukz +hJE +hJE +hJE +qDd +oNU +hKJ +cfB +ukz +rPe bHB aYt bcm -uKk -kCT -kCT -kCT -kCT -xwq -mzo -dQH -gMx -vRz +qPc +fLu +fLu +fLu +fLu +doM +hHI +bjE +eah +kHZ aag -ajZ +woL aaa aaa aaa @@ -100961,59 +88260,59 @@ aaa bdH aaa aaa -aad -ahE -avr -avl -hCo -lIh +bHS +hZq +cxD +lbd +lQv +iOs agj -sty +eJV hvH rua hvH hvH -aSM -uwX -fCE +hVF +lyY +imH agj -bFA -aov +qsw +rjb wVW -arR -atO -atO -atO -awt -aqN -rKd -aAA -xMB -aqN -ays -atO -atO -cvZ -asN +upE +qTa +qTa +qTa +pYE +fHE +tMp +pxN +lkI +fHE +vEF +qTa +qTa +kSK +evR wVW -aTj -aKz +fLk +xuy mKq -bFC +gce vWA cqY -ceK +ptQ aES -bpe -brS -cpj +shc +kAH +jIb aES -fxO -xuB -cKt -mnm -ils -ajZ +pDq +tJN +xUJ +jqo +gbk +woL aaa aaa aaa @@ -101062,59 +88361,59 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -pGP -uNL -aay -adg -amU -anK -ccJ -ajL -bJo -bwl +nQW +cyW +pNW +vRI +uwC +cVf +oXz +wLB +gGw +maP +dIw +ruN bHB -xyw +vNt puI -aol +aYt aYt aYt puI aYt -pcl -gHZ -pcl -gHZ -bHD +nOA +cOu +nOA +cOu +mcI api aYt -sIU -gdp +cQr +ipp lcV lcV hWq -hif -jKz -xyw -bcc +ouI +csv +vNt +eca bHB -xyw +vNt bcm -oqD -kCT -kCT -ePk -kCT -hTu -mzo -oFG -vhq -vRz +rNa +fLu +fLu +aFx +fLu +isy +hHI +nWQ +jYB +kHZ aag -ajZ +woL aaa aaa aaa @@ -101164,59 +88463,59 @@ aaa bdH aaa aaa -aad -ahE -aOg -avl -hMI -lFb +bHS +hZq +gTd +lbd +uKC +wUL agj cwT qhN rua -hvC -rRC +eFz +ofF mXj -lTZ +cJA qSo agj -aic -aoA +gvQ +nef wVW -teY -eVj -aqN +wXE +vID +fHE alX -asc +pAE abk -azV -aAB -aBZ +idq +xVB +pwN avY -awk +viY alX alX mPn -xMA +wji wVW -aKo -aKz +nWL +xuy mKq -ceK +ptQ gUL hHl -uvt +hsp aES aES aES aES aES -gKJ -uEv -ofZ -mnm -ils -ajZ +fMX +bCa +mhe +jqo +gbk +woL aaa aaa aaa @@ -101265,33 +88564,33 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -mGL -lqI -uNL -aaD -ahB -ahB -anL -ajz -aBC -cfM -wqh +nQW +cyW +fGp +vRI +tiX +tDM +tDM +pDF +lJR +hmf +gaG +lGD bHB -vpW +wrs eXq -rri +aho aho aho eXq kqv -pcl -bpj -pcl -gHZ -pcl +nOA +qkk +nOA +cOu +nOA fgE btO btO @@ -101300,24 +88599,24 @@ btO btO neE mNm -bEE -rOc -fVz +vBh +pus +tXL bHB -vpW +wrs bcm -hEt -kCT -xIi -kCT -kCT -eNL -mzo -oFG -nqU -vRz +xxF +fLu +azO +fLu +fLu +kel +hHI +nWQ +rmp +kHZ aag -ajZ +woL aaa aaa aaa @@ -101365,61 +88664,61 @@ bdH aaa aaa bdH -bdH aaa -aad -ahE -bEo -avl -iDT -tDx +aaa +bHS +hZq +wSh +lbd +pXe +rwr agj mXj mXj -cBL +wjR mXj mXj mXj mXj mXj agj -aic -aov +gvQ +rjb wVW -awA -ayr -awH -aPD -asc +pOF +dwz +lkv +uot +pAE azW -aqN -aAC -aCa +fHE +hPs +imj bPs -xUB -gkK -oug -vSl -aGH +sXJ +kPj +mMa +tCu +mgY wVW -aKn -aKz +mjl +xuy mKq -ceK -wVB -psa -ceK -sxD -bhJ -bHG -brS +ptQ +ssJ +wkQ +ptQ +sAd +nkR +yki +kAH aES -rlz -xuB -iVo -mnm -ils -ajZ +lcx +tJN +xMX +jqo +gbk +woL aaa aaa aaa @@ -101468,59 +88767,59 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -hJp -hJp -uNL -aaK -cfN -afe -adg -ajz -aBC -cfM -wqh +nQW +huW +yed +vRI +evq +wKj +pwm +cVf +lJR +hmf +gaG +lGD bHB -xyw +vNt aho -vWc -geg -aEj +vWz +qqG +ikx aho aYt -pcl -gHZ -pcl -gHZ -pcl +nOA +cOu +nOA +cOu +nOA fNi aYt -xyw -vAq +vNt +xXn hYG aYt gGs aYt aYt aYt -jSo +xXs bHB -xyw +vNt bcm -rdr -kCT -poq -kCT -kCT -gks -mzo -oFG -nqU -vRz +oiT +fLu +dkp +fLu +fLu +qYJ +hHI +nWQ +rmp +kHZ aag -ajZ +woL aaa aaa aaa @@ -101568,61 +88867,61 @@ bdH bdH bdH aaa -bdH aaa -aad -pCi -bVF -dTt -jgM -lFb +aaa +bHS +wEG +ljA +vWu +wMA +wUL agj mXj qpq oON tVo tVo -ecT +aQl vXM mXj agj -amI -aov +nWI +rjb wVW wVW wVW wVW wVW -rOC -soX -azX -vIP -aCb -aDv -aEC +gTW +nwP +udc +mGc +ird +hrA +uZd wVW wVW wVW wVW wVW -aKn -aKz +mjl +xuy mKq -ceK -lcy -iTw -ceK +ptQ +tmk +nsC +ptQ aES -tJi -ivf -bpe +wjo +rnT +shc aES -lGu -xuB -yiC -sXs -xEF -ajZ +gcl +tJN +rlu +pYJ +teb +woL aaa aaa aaa @@ -101671,59 +88970,59 @@ aaa aaa aaa aaa -aad +bHS aag -nXP -fpd -mGL -uNL -ceQ -ceU -aff -adg -ajz -aBC -cfM -wqh +nQW +viy +cyW +vRI +lRr +qox +lLx +cVf +lJR +hmf +gaG +lGD bHB -ezQ +vGt eXq -fAa -oYp -oZp +pgc +oSh +wID eXq vvp -aYd -aMY -bqF -gHZ -pcl -oRJ +fSH +qet +xGF +cOu +nOA +xBo fTm -fPu -vAq +gig +xXn hYG hYG aYt aYt gCw boV -xyw +vNt bHB aYt bcm -sti -kCT -iTN -kCT -kOk -fIf -mzo -oFG -pch -vRz +dvI +fLu +fKj +jEJ +fXw +jnV +hHI +nWQ +ted +kHZ aag -ajZ +woL aaa aaa aaa @@ -101773,12 +89072,12 @@ bdH aaa bdH aaa -aad -ahE -fHO -avl -jpJ -lzH +bHS +hZq +raF +lbd +vJN +sDZ agj lJo akr @@ -101787,45 +89086,45 @@ jQD agc eon mOT -gQy +raP agj -aic -buE +gvQ +tbP wVW -asQ -awG -ayI +kkY +cNl +lOq wVW -wbX +vHk avY avY -aAE +etU avY wlE -gvq +gBy wVW -lrW -qDN -vHW +uzV +pTa +nPJ wVW -ccg -aKz +maH +xuy mKq -ceK -rFs -gek -uvt +ptQ +stJ +kJR +hsp aES aES aES aES aES -xpt -xuB -xHW -qJF -ils -ajZ +voi +tJN +wGD +vsK +gbk +woL aaa aaa bdH @@ -101872,46 +89171,46 @@ aaa aaa aaa bdH -aac -aaf +eQJ +oVj aag aag -nXP -dUF -mGL -uNL -ceR -ceU -aff -agy -ajx -tqg -bJo -mVE -bHB -xyw -anU -aeJ +nQW +fPj +cyW +vRI +vKn +qox +lLx +uvm +nWm +lwt +dIw +prc +rgy +tFY +cQH +gEg imy gEg -dRD +oQg bdV bvf tQL bDn bGu bvf -fKt -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xxI -xyw +uEj +vNt +vNt +vNt +vNt +vNt +vNt +vNt +vNt +eEh +vNt bHB btO bcm @@ -101919,16 +89218,16 @@ bcm bcm bcm bcm -mzo -sYC -mzo -gJd -eXo -vRz +hHI +sDT +hHI +tLO +mMl +kHZ aag aag -aaf -ajY +oVj +fPT bdH aaa aaa @@ -101976,59 +89275,59 @@ bdH bdH bdH aaa -aad -ahE -cjh -avl -llM -lGL +bHS +hZq +dON +lbd +exj +fsb agj nRW hvH agc -pYw +xEu pxG fgT agc agc agj -aic -tek +gvQ +fkA wVW -nww -atN -cEl -sOi -aqN -aqN -ixv -ixv -ixv -aDv -aqN -atP -aHR -aJI -wFn +hvW +gFg +ldq +tpM +fHE +fHE +iRf +iRf +iRf +hrA +fHE +ret +nyV +pdl +hAA wVW -aKn -aKz +mjl +xuy mKq -bFC -jUb -qjz -ceK -sxD -bhJ -bHG -gCP +gce +iuW +kGx +ptQ +sAd +nkR +yki +bYp aES -izx -mQV -hRi -gpe -ils -ajZ +rTd +vco +aKZ +rqC +gbk +woL aaa aaa bdH @@ -102075,63 +89374,63 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -fQF -mGL -uNL -abd -adk -afu -anT -eLz -uFL -ssa -sqa +nQW +qGI +cyW +vRI +gqe +jlR +epP +xdT +mRw +xWX +qXV +mJy hBF -hCt +ppQ eXq -qYN -lsD -lkf +uhe +fZN +qAg eXq ooh -pcl -gHZ -pcl -aMY -pcl -xNb +nOA +cOu +nOA +qet +nOA +kGM aYt -fPu -leg +gig +uXG hYG hYG aYt aYt wFz bAi -xyw +vNt bnH btO cdA -lRX -rux -sEt +pDR +oiu +glm bcm -wbx -vhq -vhq -oFG -vhq -vRz +jrp +jYB +jYB +nWQ +jYB +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -102179,59 +89478,59 @@ bdH bdH bdH bdH -aad -ahE -cJB -avl -avl -mrc +bHS +hZq +uTy +lbd +lbd +mCP agj gyk hvH uik -coY +gsj agc loN xyk xyk -tJW +rVZ xdy -pts +dJF wVW -qyJ -qEk -ksv +ooO +gjO +nOS wVW -arP +pxs alX azZ aAF azZ aIf -hkG +kYL wVW -fvB -qEk -aGi +hsD +gjO +nnk wVW -aKn -aKz +mjl +xuy mKq -oKx -tVh -psa -ceK +dZU +vNk +wkQ +ptQ aES -mhm -brS -bpe +nHC +kAH +shc aES -mnm -uEv -nLK -nLK -ils -ajZ +jqo +bCa +eaL +eaL +gbk +woL aaa aaa aaa @@ -102278,63 +89577,63 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -wVD -mGL -uNL -uZQ -uZQ -bJo -aoH -aoF -aBC -cfM -wqh +nQW +fgK +cyW +vRI +fXl +fXl +dIw +iBn +afp +hmf +gaG +lGD bHB -xyw +vNt aho -dkj -siz -gYt +wgp +uTH +pfJ aho aYt -pcl -gHZ -pcl -gHZ -pcl +nOA +cOu +nOA +cOu +nOA uuu fTm -xyw -lqK +vNt +rdj hYG hYG hYG aYt aYt bFP -xyw +vNt bHB btO cdA -myo +aJY dtH -eyR +qEp bcm -wgo -nqU -vhq -dQH -xpf -vRz +cwK +rmp +jYB +bjE +jTo +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -102382,14 +89681,14 @@ bdH bdH bdH bdH -aad -pCi -pCi -pCi -jTi -nRq +bHS +wEG +wEG +wEG +lWR +bab agj -lHE +aDL hvH agc bYD @@ -102398,43 +89697,43 @@ sww agc agc agj -plj -aov +cvm +rjb wVW -qyJ -qEk -ato +ooO +gjO +jrx wVW -aKF +iDi alX hxm deD tUo aIf -aEB +dsK wVW -fvB -qEk -aGi +hsD +gjO +nnk wVW -aKn -aKz +mjl +xuy mKq -aWk +oMz aWW aGr -uvt +hsp aES aES aES aES aES -dYh -uEv -xEF -xEF -xEF -ajZ +pfY +bCa +teb +teb +teb +woL aaa aaa aaa @@ -102481,35 +89780,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -mNf -hJp -uNL -qwT -xSI -uZQ -aoH -aoF -aBC -cfM -wqh +nQW +bpD +kyH +vRI +dmn +cAd +fXl +iBn +afp +hmf +gaG +lGD bHB -vpW +wrs eXq -rri +aho aho aho eXq kqv -pcl -gHZ -pcl -gpi -pcl +nOA +cOu +nOA +iKu +nOA oJp bvf kRP @@ -102518,26 +89817,26 @@ bvf bvf egp ptv -qXZ -vsF -bGJ +gxT +frJ +giK hBF vxb bcm -mhd +ldb aYt -tuN -fPn -nqU -nqU -vhq -dQH -hYc -vRz +oBI +lTJ +rmp +rmp +jYB +bjE +gRk +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -102585,59 +89884,59 @@ aaa bdH bdH aaa -aad +bHS aag aag -pCi -avl -myn +wEG +lbd +mkQ agj -atS +cjy hvH qck -jmt +bTB agc jhB pJg xDr agj -aic -aov +gvQ +rjb wVW -nbr -qEk -hrm +hOm +gjO +jyO wVW -rOC -aqN -tCT -tCT -tCT -aDv -aEC +gTW +fHE +cXN +cXN +cXN +hrA +uZd wVW -dNZ -qEk -xZf +sXg +gjO +jaM wVW -aKn -aKz +mjl +xuy mKq -aWq +oYN aXb aGr -ceK -sxD -bhJ -bHG -cWy +ptQ +sAd +nkR +yki +jHt aES -gpe -xuB -xEF +rqC +tJN +teb aag aag -ajZ +woL aaa aaa aaa @@ -102684,63 +89983,63 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -bvO -hJp -ahd -adg -amp -uZQ -aoH -gds -aky -bJo -vPM +nQW +urm +huW +btP +cVf +fDD +fXl +iBn +lxc +jcH +dIw +oWb bHB -xyw +vNt anW -aol +aYt aYt aYt anW aYt -pcl -gHZ -pcl -gHZ -pcl +nOA +cOu +nOA +cOu +nOA brY aYt -cSx -nPB +aHH +mvD hYG ggh gRd -hif -jRS -xyw -bGK +ouI +mJv +vNt +lXs bHB btO cdA -omP +kDu aYt -bOC +dPF bcm -vhq -nqU -vhq -dQH -jhA -vRz +jYB +rmp +jYB +bjE +cCe +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -102788,12 +90087,12 @@ bdH bdH bdH aaa -aad +bHS aag aag -pCi -cnX -lIh +wEG +wJt +iOs agj mXj qhN @@ -102801,46 +90100,46 @@ hvH hvH pAA hvH -ljv +kTZ mXj agj -aic -aoA +gvQ +nef wVW -qyJ -jvX -ato +ooO +pTX +jrx wVW -vTu +fFN alX alX avY alX aIf -aED +ogt wVW -xtg -jvX -aGi +dMw +pTX +nnk wVW -aKn -aKy +mjl +ggU mKq -aWt -ceK -ceK -eua +rVH +ptQ +ptQ +tQp aES -eBd -brS -cpj +qjx +kAH +jIb aES -fgx -dEV -xEF +aMR +gdF +teb aag aag -ajZ +woL aaa aaa aaa @@ -102887,63 +90186,63 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -dNB -hJp -uNL -hSL -agn -afx -agX -ajy -vwP -bJo -kCm -rgy -bvf -aof -aoN -bea -bfZ -baS -bkh -bea -bfZ -baS -bkh -bea -bfZ -baS -bkh -ohE -vWJ -qUL -txO -mwQ -bEK -baS -bGL +nQW +kdD +huW +vRI +okP +ojf +fpN +hpo +eYP +qOE +dIw +sMY +bHB +btO +ggB +ufG +ggB +hwa +ocd +fXq +ggB +hwa +ocd +fXq +ggB +hwa +ocd +fXq +eKo +kXd +oML +ucq +ilH +qwQ +ocd +eTE bHB aYt cdA -ivg -llO -kSv +onO +soU +kEL bcm -mzo -puR -aKI -dQH -nqU -vRz +mKd +jzf +umP +bjE +rmp +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -102991,12 +90290,12 @@ bdH aaa aaa aaa -aad +bHS aag aag -pCi -anI -lIh +wEG +pTl +iOs agj agj agj @@ -103007,43 +90306,43 @@ agj agj agj agj -fEk -hlU +nQi +dCC wVW wVW wVW wVW wVW -aCf -ayt -aCf +xQp +jba +xQp wVW -aCf -hzL -aCf +xQp +pgQ +xQp wVW wVW wVW wVW wVW -fDU -uiZ +iWZ +uty mKq mKq -kqt -aVX +nlt +usP aES aES aES aES aES aES -gaO -vnV -xEF +gDw +omq +teb aag aag -ajZ +woL aaa aaa aaa @@ -103090,24 +90389,24 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -mGL -iBE -uNL +nQW +cyW +sGi +vRI eXq -adR +lMH eXq aho aho aho eXq -hmy +ruY bHB -aZV +uxj baI baI baI @@ -103129,24 +90428,24 @@ baI baI baI baI -bGM +unm bHB aqs bcm bcm -wXT +mPU cdA bcm bcm -mzo -mzo -wWf -nqU -vRz +mKd +mKd +ucj +rmp +kHZ aag aag aag -ajZ +woL aaa aaa aaa @@ -103194,12 +90493,12 @@ aaa aaa aaa aaa -aad +bHS aag aag -pCi -ifR -jMt +wEG +rvl +uWe gpY uBi wYA @@ -103207,33 +90506,33 @@ awW awW awW awW -aSJ -goj -kAh -aic -aBW -aom -nmh -eco -vdL +cWq +gSQ +dFJ +gvQ +uWi +pCk +isa +aPc +iSq laV -aqF +uFA alX alX xQa alX aIf -aBS +kvl laV -whB -gio -nmh -aKf -aKu -aKz -vjb -cZb -aXe +laA +aCi +isa +pXt +xhc +xuy +wBW +csB +cSI baw oxu baw @@ -103241,12 +90540,12 @@ baw oaK nUn pgD -xuB -gpe -xEF +tJN +rqC +teb aag aag -ajZ +woL aaa aaa aaa @@ -103293,24 +90592,24 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -mGL -mGL -uNL -abG -aeh +nQW +cyW +cyW +vRI +tqH +ejs afy xWp -aAL +syX aBt ajM -aXh +gyM bHB -aZW +xdF baI baI baI @@ -103332,24 +90631,24 @@ baI baI baI baI -bGN +gIG bHB xAY -gHZ +cOu wlK aYt aYt aYt lrX bcm -kGt -oFG -pch -vRz +gcm +nWQ +ted +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -103397,29 +90696,29 @@ bdH bdH bdH bdH -aad +bHS aag aag -pCi -avl -lIh +wEG +lbd +iOs gpY uac -vFw +peL ajf ajf ajf ajf -oAO -oEf -aVW -vta +jWm +cXk +hUM +pse aBH aKv aKv aKv aKv -bYY +cof aCj ayK aAd @@ -103427,16 +90726,16 @@ aAP uyN ayu aCj -bYY +cof aKv aKv aKv aTa aTk -mtM -rmD -aWz -aZC +hls +dua +gZA +ltL aZz aZz aZz @@ -103444,12 +90743,12 @@ aZz wUP lrF pgD -uEv -gpe -xEF +bCa +rqC +teb aag aag -ajZ +woL aaa aaa aaa @@ -103496,24 +90795,24 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -nXP -rbv -hJp -uNL -abH +nQW +cyW +kyH +vRI +qik aer -agf -ais +xhs +goX aoL akz ajM -caM +fBJ bHB -aZX +ane baI baI baI @@ -103535,24 +90834,24 @@ baI baI baI baI -bGO +eGx bHB xAY -gHZ +cOu qCG btO btO btO uII -fPn -cQN -oFG -eXo -vRz +lTJ +sEW +nWQ +mMl +kHZ aag aag aag -ajZ +woL bdH aaa aaa @@ -103603,9 +90902,9 @@ abs abs abs abs -pCi -ail -gwY +wEG +cQx +kxI gpY mto acW @@ -103613,33 +90912,33 @@ awW awW oGC oGC -aSJ -goj -iff -bYz -aBX -rqb -aJw -aBX -aBX +cWq +gSQ +vBV +wJu +moS +lBL +mGI +moS +moS laV -asc +pAE ayL aAf aLM wlE alX -awk +viY laV -aBX +moS aKa -aJw -lLS +mGI +lRM aKq -cPg -wPf -cZb -aXe +jbm +nGv +csB +cSI iVE baw baw @@ -103647,9 +90946,9 @@ baw sgU baw pgD -lIV -gsH -xEF +kUD +jvL +teb tQV tQV tQV @@ -103696,27 +90995,27 @@ aaa aaa bdH aaa -aac -aaf -aaf +eQJ +oVj +oVj aag aag aag aag -nXP -mGL -pwK -pJW +nQW +cyW +gfD +plT acq aeJ -azl -ahV -khD -rYJ +ith +xFz +vks +vZk ajM -xyw +vNt bHB -aZY +ecA baI baI baI @@ -103738,27 +91037,27 @@ baI baI baI baI -bGP +xfr bHB xAY -gHZ +cOu xJR aYt aYt puI iWx bcm -uSq -dQH -vhq -vRz +rMV +bjE +jYB +kHZ aag aag aag aag -aaf -aaf -ajY +oVj +oVj +fPT aaa bdH aaa @@ -103804,17 +91103,17 @@ aeW ajD anM oGC -add -aSA +lSz +lQI bvb -afr -ajI +gZa +dvK pYu awW acW -add -ryG -ohB +lSz +hmp +nmu aiX awd awd @@ -103826,35 +91125,35 @@ awd awd awd wVW -ayv -ayM -aAj +oGI +vKq +vTb aBI -aCk -aDK -aEG +eVU +pVx +fWl wVW awF -aIQ +fEo awF ecr -aJc +tvs ecr ecr ecr -ygs +wTD aET -nUv -aJU -aJU +lAe +cWi +cWi sgU baw dqb -tiW -goL +cko +sNm mor -iKK -aJU +hZV +cWi baw mAp mAp @@ -103899,27 +91198,27 @@ aaa aaa bdH aaa -aad +bHS aag aag aag aag aag aag -nXP -mGL -fJX -uNL +nQW +cyW +ixO +vRI acu -aeh +ejs afF xWp azJ bLP eXq -eVm +iHA bHB -aZV +uxj baI baI baI @@ -103941,27 +91240,27 @@ baI baI baI baI -bGM +unm bHB tIS bcm bcm -wXT +mPU cdA bcm bcm bcm -mzo -mxL -kAs -vRz +mKd +rXs +jyv +kHZ aag aag aag aag aag aag -ajZ +woL aaa bdH aaa @@ -104007,11 +91306,11 @@ aea ajE awW awW -add -aSJ +lSz +cWq awW -bZe -ajI +hbW +dvK awW awW acW @@ -104019,33 +91318,33 @@ qdQ eFT hhA weD -unT -kng -fDV +kRL +qdu +mEC aiX aiX -tAL -awX -tAL -awX +ebh +plg +ebh +plg wVW wVW wVW -aAl +ygj jnX -dum +vBy wVW wVW wVW -lgK -aGZ +xQI +kfJ awF -cST -aTz -aUl +leG +bJL +aUb aET aWA -jgu +ydZ aET mSi wHp @@ -104053,11 +91352,11 @@ gZw sgU baw baw -tiW -nig +cko +qOq baw -aXe -aJU +cSI +cWi baw baw baw @@ -104102,27 +91401,27 @@ aaa aaa bdH aaa -aad +bHS aag aag aag aag aag aag -nXP -tpg -vJM -uNL -acM +nQW +jnn +aYF +vRI +liy aer -agf -ais +xhs +goX xWp -aBw +mDZ ajM -xyw +vNt bHB -aZW +xdF baI baI baI @@ -104144,27 +91443,27 @@ baI baI baI baI -bGN +gIG bHB btO cdA -apE -icp -fER +fff +lSd +nii bcm -mzo -xSb -vhq -dQH -mjR -vRz +mKd +uxP +jYB +bjE +keD +kHZ aag aag aag aag aag aag -ajZ +woL aaa bdH aaa @@ -104210,57 +91509,57 @@ aoy awW awW awW -add -aoI +lSz +lMa awW -aeZ -ajI +hmi +dvK awW uzy abB -add -add -add +lSz +lSz +lSz weD -nwL -amh -nwL +vTp +gKg +vTp aiX -wbO +dZv avU avU -awY -awY -kOB -awZ +iKP +cCS +hDZ +rRv aiX -jnw -aBq -pRL +gEr +uRa +eTg awF aEM -aGV +xWl rvA aKE awF -mJA -aUw -aUm +lSU +mab +ubY aET aET aET aET -nUv -aJU -aJU +lAe +cWi +cWi pIV baw baw -tiW -tTu +cko +oGH baw -gnv -aJU +hSB +cWi baw baw baw @@ -104305,27 +91604,27 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -hJp -dpy -uNL -acZ +nQW +huW +iZf +vRI +mDn aeN -azl -ahS -ajA +ith +ddB +whG akz ajM -xyw +vNt bHB -aZX +ane baI baI baI @@ -104347,27 +91646,27 @@ baI baI baI baI -bGO +eGx bHB aYt cdA -uiT +jto aYt -jyR +hWE bcm -ioj -nqU -vhq -dQH -fIH -vRz +tpI +rmp +jYB +bjE +hpx +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -104408,67 +91707,67 @@ bdH bdH aaC abw -adr +wiX awW ajH ajf abf -aEQ +sKi ajf ajf ajf -teo +ceS abf ajf evX -aeZ -aka -aoI +hmi +mkK +lMa weD -fdE -amh -amh +oYX +gKg +gKg aiX -cJu -pXx -pXx -pXx -pXx -jrm -evg +fpi +ojU +ojU +ojU +ojU +tlE +aTM aiX -asj -aAW -aCl +qxe +kva +gCp awF aFg -aGY +gev rvA -aKN +gAh awF -cbm -aUw -aUm -aUw -aRv -pPv +lfR +mab +ubY +mab +fGy +evs aET -nPa -yhI -tTu +fgj +pPB +oGH gVF aZz cts -tvw +eoh aZz aZz aZz -ejY +hIH cts aZz kyX baw -gCf +prA trb aaC bdH @@ -104508,27 +91807,27 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -hJp -fkW -uNL +nQW +huW +lYj +vRI vhw -khD +vks azw xWp aAK -aBz +lzc ajM -aXj +uEu bHB -aZY +ecA baI baI baI @@ -104550,27 +91849,27 @@ baI baI baI baI -bGP +xfr bHB vxb bcm -apL +xoM aYt -iKb +tdm bcm -ygy -nqU -vhq -oFG -qUj -vRz +pKP +rmp +jYB +nWQ +lgG +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -104611,67 +91910,67 @@ bdH bdH aaC abw -adP +smB awW acW awW -add -add -add -juf -add -add -add +lSz +lSz +lSz +vDj +lSz +lSz +lSz oMQ evX -afr -akc -buc +gZa +jDx +tOw weD -jMm -pcG -iFn -qnD -amh -kWT -wUR -wUR -wWC -auZ +mVe +rjm +fwj +hSH +gKg +nLQ +oOZ +oOZ +vII +qjR aiX aiX -asl -amO -aGO +fiC +eNC +ggu awF -aFj -aGY +gTb +gev rvA -aKO +mDo awF -aRx -aRx -aUo -aVi -pbp -pMj -awS -lWr -csI -goL +jot +jot +qJA +aYf +kOo +tMe +sBu +kxc +llp +sNm sgU baw -aJU -aJU -aJU -hey -aJU -aJU -aJU +cWi +cWi +cWi +kwt +cWi +cWi +cWi hEV eBe baw -xYQ +gWU trb aaC bdH @@ -104711,17 +92010,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -fpd -nVS -uNL +nQW +viy +ipH +vRI eXq eXq eXq @@ -104729,9 +92028,9 @@ eXq eXq eXq eXq -mrD +bWx bHB -aZV +uxj baI baI baI @@ -104753,27 +92052,27 @@ baI baI baI baI -bGM +unm bHB btO cdA -uiT +jto aYt -xNj +qzl bcm -mjR -nqU -vhq -dQH -gWR -vRz +keD +rmp +jYB +bjE +hvB +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -104815,65 +92114,65 @@ bdH aaC abs adq -dpo -ajI -add -add -aFJ -aTf -aTf -aTf -iZP -add -add -ajI -add -add -gqP +unW +dvK +lSz +lSz +hiD +qZk +qZk +qZk +kDo +lSz +lSz +dvK +lSz +lSz +jHu aiX aiX aiX aiX aiX -oqw -lvA +vvE +ppD osT cZV -pQV -apq -ana +ulL +csn +kOU aiX -asp -amO -avj +knG +eNC +sPy awF -aFo -aGY +xbx +tPv rvA -aqm +rDy awF -dOl -aTA -aUp -qVC -aUw -jmP -awS -xhn -aJU -aJU -tiW -aJU -qQp -xAI -kiT -kiT -kiT -gjq -aJU -aJU -tiW -msg +dnB +fCT +mEr +shW +mab +iqf +sBu +taz +cWi +cWi +cko +cWi +wjk +mQf +lRG +lRG +lRG +mQN +cWi +cWi +cko +hYa pgD tQV aaC @@ -104914,17 +92213,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -hJp -dnX -uNL +nQW +huW +ptb +vRI aRu aRu aRu @@ -104932,9 +92231,9 @@ aRu aRu aRu bcm -aXj +uEu bHB -aZW +xdF baI baI baI @@ -104956,27 +92255,27 @@ baI baI baI baI -bGN +gIG bHB btO cdA -fpW -llO -vml +ktK +soU +ybc bcm -mzo -jhA -jhA -dQH -wlL -vRz +mKd +cCe +cCe +bjE +lhe +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -105018,65 +92317,65 @@ bdH aaC abs adq -jWH -ajI -add -fsU -aHU +fIm +dvK +lSz +flB +xmN aTm -awW +dvW aTm -jgF -fsU -add -ajI -add -add -add +kkK +flB +lSz +dvK +lSz +lSz +lSz gzI -fdE -mLz -iFn -alw -amh -dGr +oYX +sEr +fwj +tQR +gKg +lJt rtY fJy -xQg -wWC -szO +vAH +vII +fLU aiX -atU -amO -qLj +gsA +eNC +rNp awF awF aEW -aHX +eZR aEW awF -aRB -qVC -wvb -eem -aUw -aUw -awS -nJs -aJU -aJU -tiW -aJU -gBW -ouQ +hMV +shW +wti +qHa +mab +mab +sBu +xLm +cWi +cWi +cko +cWi +vYD +qse iun -baw +aVT vPm -qys -gBW -aJU -tiW -pUe +fSu +vYD +cWi +cko +uMP pgD tQV aaC @@ -105117,17 +92416,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -mGL -dnX -uNL +nQW +cyW +ptb +vRI aRu aRu aRu @@ -105135,9 +92434,9 @@ aRu aRu aRu bcm -xyw +vNt bHB -aZX +ane baI baI baI @@ -105159,27 +92458,27 @@ baI baI baI baI -bGO +eGx bHB uAb bcm -mzo -sYC -mzo -mzo -mzo -mzo -mzo -gJd -vhq -vRz +mKd +hsM +mKd +mKd +mKd +mKd +mKd +tLO +jYB +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -105220,67 +92519,67 @@ bdH bdH aaC abw -aee +fra avd acW awW auK -aIr +tYP aTm -bvd +xnJ aTm -juX +xTv scu awW acW -aeZ -aka -aoI +hmi +mkK +lMa gzI -nwL -mfQ -nPx +vTp +iZm +sVn aiX -amd -dXY -fmB -umS -yjM -qbO -aqw -qRL -bYe -amO -wZM -aPm +dxk +jUy +gSB +hEv +ijE +sYd +fsN +mAY +idf +eNC +uAf +knZ awF -aHk -vGI -aLp +iBM +kfa +qte awF -jss -aTB -aUq -aVk -ldC -vkb +odA +tKx +uFN +kXg +fbd +qbi aET -eFM -yhI -tTu +mCV +pPB +oGH sgU baw lRE -tuf +ktr vbB -rBH +voL vbB -mlz +szp sOy baw sgU xVF -njD +pXB trb aaC bdH @@ -105320,17 +92619,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -mGL -fJX -uNL +nQW +cyW +ixO +vRI aRu aRu aRu @@ -105338,51 +92637,51 @@ aRu aRu aRu bcm -hmy +ruY bHB -aZL -baX -bcw -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bEN -baX -bcp +skA +nNO +qdU +rhB +aPP +nNO +hYd +rhB +aPP +nNO +hYd +rhB +aPP +nNO +hYd +rhB +aPP +nNO +hYd +rhB +hNL +nNO +xBS bHB xAY -aYz -mzo -vhq -eJh -eFp -qUH -mzo -qUj -dQH -vhq -vRz +kVA +mKd +jYB +ydC +wyS +qgS +mKd +lgG +bjE +jYB +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -105423,67 +92722,67 @@ bdH aaa aaY abw -aec +jvz avd acW awW avc -aIv +vlg aTm -kJL +xnJ cbM -jzZ +tmW sLo awW acW -afr -akc -xVI +gZa +jDx +wQW gzI -aku -eGH -qnl +mGN +pNq +thn aiX -apt -sCI -pWN -uTN -aqy -nBE -pOD -bZa -ahM -aEf -wZM -ejp +kcO +jgH +obc +dAS +xMI +odr +saf +eeY +jCH +oHS +uAf +haz awF aHn szU -aLt +qas awF -aRC -aUw -aUw -aUw -aUw -jmP +lcU +mab +mab +mab +mab +iqf aET -dSp -csI -goL +rLT +llp +sNm sgU baw hJk -yac +vAB vbB -kUQ +voL vbB -fDS +fqv iLd baw sgU xVF -dLz +kPb trb aaC bdH @@ -105523,17 +92822,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -tRV -dnX -uNL +nQW +huW +ptb +vRI aRu aRu aRu @@ -105541,11 +92840,11 @@ aRu aRu aRu bcm -xyw +vNt bHB -wqh -xyw -bcc +lGD +vNt +eca aYt aYt aYt @@ -105563,29 +92862,29 @@ aYt aYt aYt aYt -wqh -xyw -bcc +lGD +vNt +eca bHB xAY -aYz -mzo -xIj -nqU -nqU -vhq -gsL -nqU -oFG -eXo -vRz +kVA +mKd +xYb +rmp +rmp +jYB +iHS +rmp +nWQ +mMl +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -105627,65 +92926,65 @@ aaa aaY abs adq -ckE -ajI -add -fsU -aHU +fRS +dvK +lSz +flB +xmN aTm -awW +qEI aTm -jgF -fsU -add -ajI -add -add -vmN +kkK +flB +lSz +dvK +lSz +lSz +qGJ aiX aiX aiX aiX aiX -awq -lvA -pQV -mHO +oXL +ppD +ulL +fbE aiX aiX aiX aiX -atV -amO -oXd -qFl -qFl -qFl -qFl -qFl -qFl -aRE -qVC -qVC -prE -aUw -aUw -awS -nJs -aJU -aJU -tiW -aJU -gBW -ouQ +iRV +eNC +jBh +xqw +xqw +xqw +xqw +xqw +xqw +ruy +shW +shW +oKe +mab +mab +sBu +xLm +cWi +cWi +cko +cWi +vYD +qse vbB -baw +voL tBq -qys -gBW -aJU -tiW -hXD +fSu +vYD +cWi +cko +tHx pgD tQV aaY @@ -105726,17 +93025,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -nun -vJM -uNL +nQW +nLm +aYF +vRI aRu aRu aRu @@ -105744,11 +93043,11 @@ aRu aRu aRu bcm -bGQ +jOq bHB -tdc -rOc -bcx +tGp +pus +hlo bPr bPr bPr @@ -105766,29 +93065,29 @@ bPr bPr bPr byv -bEO -rOc -fVz +utc +pus +tXL bHB uII -ruz -mzo -gwm -pEy -nqU -sRI -mzo -fdA -oFG -nqU -vRz +iNX +mKd +sZm +oHm +rmp +uRp +mKd +skK +nWQ +rmp +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH aaa @@ -105830,65 +93129,65 @@ aaa aaY abs adq -aeY -ajI -add -add -aIw -aUa -aUa -aUa -jAz -add -add -ajI -add -add -add +uNy +dvK +lSz +lSz +lXn +etX +etX +etX +xcY +lSz +lSz +dvK +lSz +lSz +lSz rwY -fdE -feS -iFn -alw -kFe -mJL -qbO -wbu +oYX +mKH +fwj +tQR +msw +vsc +sYd +sWo aiX -aKG +fkh amb aiX -ayT -amO -avj -qFl -aFp -aHo -bZH -aQs -qFl -aSq -aTE -aTE -aTE -aTE -jLs -awS -nJs -aJU -aJU -tiW -aJU -aJU -gLE -pNM -pNM -pNM -hHr -aJU -aJU -tiW -usm +wuQ +eNC +sPy +xqw +eXm +mWM +xJw +hCx +xqw +vwe +tBu +tBu +tBu +tBu +llk +sBu +xLm +cWi +cWi +cko +cWi +cWi +kDr +axR +axR +axR +tul +cWi +cWi +cko +xuW pgD tQV aaY @@ -105929,17 +93228,17 @@ aaa aaa bdH aaY -aad +bHS aag aag aag aag aag aag -nXP -hJp -qNG -uNL +nQW +huW +sfq +vRI aRu aRu aRu @@ -105947,9 +93246,9 @@ aRu aRu aRu bcm -bGR +xPL bHB -xyw +vNt bkA bkA bkA @@ -105958,11 +93257,11 @@ bkA bkA bkA baZ -qOf -rIj +pIy +aNS baZ -qOf -bqH +pIy +gQA baZ gfW gfW @@ -105971,27 +93270,27 @@ gfW gfW gfW gfW -xyw +vNt bHB uII -wrT -mzo -pVu -eOr -dFV -iVO -mzo -nqU -oFG -pch -vRz +sJu +mKd +kgA +koh +qIg +mAl +mKd +ijq +nWQ +ted +kHZ aag aag aag aag aag aag -ajZ +woL aaY bdH bdH @@ -106032,67 +93331,67 @@ aaa aaa aaY abw -adP +smB awW ajT aoC -add -add -add -juf -add -add -add +lSz +lSz +lSz +vDj +lSz +lSz +lSz awW acW -aeZ -aka -aoI +hmi +mkK +lMa rwY -nwL -amh -nPx +vTp +gKg +sVn aiX aiX -uOJ -pqc -pqc -aqz -aKH +pYV +pFz +pFz +krK +oUo and aiX -lzj -amO -bYe -aTR -gpe -gpe -aIa -ayh -qFl -aSt -aTE -aTE -aTE -aTE -qdA -awS -tvQ -yhI -tTu +wQH +eNC +idf +lXd +lLB +lLB +gpD +cDR +xqw +rtf +tBu +tBu +tBu +tBu +jjH +sBu +tGn +pPB +oGH sgU baw -aJU -aJU -aJU -eyv -aJU -aJU -aJU +cWi +cWi +cWi +wlM +cWi +cWi +cWi baw sgU baw -xYQ +gWU trb aaY bdH @@ -106132,17 +93431,17 @@ aaa aaa bdH aaY -aad -nXP -nXP -nXP -nXP -nXP -nXP -nXP -mGL -kKG -uNL +bHS +nQW +nQW +nQW +nQW +nQW +nQW +nQW +cyW +urn +vRI aRu aRu aRu @@ -106150,51 +93449,51 @@ aRu aRu aRu bcm -xyw +vNt bHB -xyw +vNt bkA -bnj -kPx -bgk -biq -dvg -bgG -bnI -qjN -qjN -rdS -qjN -qjN -tGh +lTA +vwb +qRz +xbC +fVD +nvM +ppM +hRX +hRX +bTh +hRX +hRX +qEL gfW -sgj -bDv -bDv -bDv -bEP +shQ +szT +szT +szT +eVh gfW -bGQ +jOq bHB qnd -cmp -cmp -cmp -cmp -cmp -cmp -cmp -vwN -oFG -nqU -vRz -vRz -vRz -vRz -vRz -vRz -vRz -ajZ +qCQ +qCQ +qCQ +qCQ +qCQ +qCQ +qCQ +qif +nWQ +rmp +kHZ +kHZ +kHZ +kHZ +kHZ +kHZ +kHZ +woL aaY bdH bdH @@ -106235,67 +93534,67 @@ aaa aaa aaY abw -adr +wiX awW ajV ajf abf -aEQ +sKi ajf ajf ajf -aEQ +sKi abf ajf evX -afr -akc -buc +gZa +jDx +tOw rwY -akv -eGH -qnl +fcJ +pNq +thn aiX -fuz -pLW +wph +cGN sht -wex +pTo aiX aiX aiX aiX -ukh -amO -nxK -qFl -aFq -aHB -aIb -aRr -qFl -aSx -aTE -aTG -aVr -aUC -tTD +jne +eNC +qoM +xqw +pdo +cxX +dZy +fXK +xqw +onn +tBu +gtb +pEz +mAr +dkK aET -ngf -bAH -goL +utH +cQb +sNm gVF aZz cts -ejY +hIH aZz aZz aZz -ejY +hIH cts aZz nsc ltA -gCf +prA trb aaY bdH @@ -106335,17 +93634,17 @@ aaa aaa bdH aaY -aad -nXP -sAm -mGL -aLl -hJp -hJp -mGL -mGL -eKO -uNL +bHS +nQW +whX +cyW +huW +huW +huW +cyW +cyW +ibK +vRI aRu aRu aRu @@ -106353,51 +93652,51 @@ aRu aRu aRu bcm -aYu -wTg -bGq +mDM +sGl +her bkA -bcz -bej -bej -bej -bzS +cUC +ueA +ueA +ueA +rLh nvM -vyu -qjN -qjN -qjN -qjN -qjN -bei +uAQ +hRX +hRX +hRX +hRX +hRX +jsI gfW -bkN -ezG -fdZ -bzg -pqi +sQg +aAH +xcj +smd +fjK gfW -rHw -wTg -aYu -cmp -bTz -apV -are -apV -djM -cmp -mjR -oFG -nqU -vhq -vhq -rcH -vhq -wqE -kwq -vRz -ajZ +mXP +sGl +mDM +qCQ +mXk +bWy +ctH +bWy +tlj +qCQ +keD +nWQ +rmp +jYB +jYB +wSL +jYB +fBu +kuO +kHZ +woL aaY bdH bdH @@ -106443,57 +93742,57 @@ aoy awW awW awW -add -apg +lSz +niK awW -afr -add +gZa +lSz awW awW abB -add -xWO +lSz +wBX aiX aiX -aau -aau -aau -aau -uVX -ase +tLJ +tLJ +tLJ +tLJ +uIZ +hmg sht -uOJ -aqz -mBe +pYV +krK +cfj atT aiX -ayU -amO -avm -qFl -qFl -aeD -qFl -qFl -qFl -pUJ -mSP -pUJ -pUJ -pUJ -pUJ -pUJ +unO +eNC +ltW +xqw +xqw +dJE +xqw +xqw +xqw +oEH +jrC +oEH +oEH +oEH +oEH +oEH pgD -nUv -aJU +lAe +cWi pIV baw baw -aJU -goL +cWi +sNm baw -vpn -aJU +idk +cWi baw baw baw @@ -106538,69 +93837,69 @@ aaa aaa bdH aaY -aad -nXP -hJp -hJp -mGL -mGL -pwK -cmk -xJi -cIi -uNL -aRu -aRu -aRu -aRu +bHS +nQW +huW +huW +cyW +cyW +gfD +jMu +ron +cRU +tEI +tEI +tEI +tEI +tEI aRu aRu bcm -aZZ -aYC -aZZ +uaC +iGX +uaC bkA -bcA -bgm -bgm -bgl -bpz -biu -kdB -kdB -udr -bqL -bqL -bqL -bqL -bkz -uSS -pIU -uSS -uDA -bER +aKL +phV +phV +koY +jqO +jjW +nzN +nzN +fKz +tdL +tdL +tdL +tdL +rWI +bqY +lrn +bqY +aJA +meC gfW -aZZ -aYC -aZZ -cmp -apM -eGs -bWM -bWM -bWS -cmp -mjR -bVR -oeo -oeo -gdd -oeo -oeo -bgc -qUj -vRz -ajZ +uaC +iGX +uaC +qCQ +nRB +rjL +vBQ +vBQ +cWb +qCQ +keD +axq +koX +koX +kJM +koX +koX +sxO +lgG +kHZ +woL aaY bdH bdH @@ -106646,11 +93945,11 @@ aeX awW awW awW -add -aSJ +lSz +cWq awW -bZe -add +hbW +lSz awW awW acW @@ -106658,45 +93957,45 @@ qdQ muq aiX aiX -aau -dBs -dBs -aau -fuz -tld -uOJ -mHO +tLJ +wUr +wUr +tLJ +wph +srs +pYV +fbE aiX -asf +fbJ atT aiX -mQH -amT -ioX -pUJ -inC -anX -aht -gvC -pTc -bsO -bsO -aal -xKW -aht -aht -gcc +wuQ +sVd +sPy +oEH +lcw +ruh +vkr +sUc +viw +cTE +cTE +wUE +eLa +bBZ +bBZ +oad pgD lza gZw gVF kuk baw -aJU -nig +cWi +qOq baw -aXe -aJU +cSI +cWi baw baw baw @@ -106741,69 +94040,69 @@ aaa aaa bdH aaa -aad -nXP -xYN -xYN -uNL -bdi -kKG -hJp -pda -lpS -wfE -wfE -wfE -wfE -wfE -wfE +bHS +nQW +cyW +cyW +vRI +rva +urn +nRi +nyO +ive +tEI +xZR +xZR +xZR +tEI +sGU wfE wfE -bsk -sxu -cBI +aRQ +aCr +fcv bkA -nuI -bej -arX -vSG -iag +qvJ +ueA +mfo +bzc +tmp nvM -bek -qjN -gGJ -ham -qjN -qjN -oWf +ldS +hRX +fmF +vrG +hRX +hRX +mwF gfW -xgJ -fdZ -bnS -fdZ -tzx +gaI +xcj +gSx +xcj +kAo gfW -bLT -cbQ -ccq -cmp -apO -bWM -bWM -bWM -gQl -asE -asE -asE -asE -asE -asE -asE -asE -clO -gUv -vRz -ajZ +jLE +wyC +sua +qCQ +uQx +vBQ +vBQ +vBQ +tWN +pId +pId +pId +pId +pId +pId +pId +pId +nWQ +jYB +kHZ +woL aaa bdH bdH @@ -106849,57 +94148,57 @@ awW awW awW oGC -ryG -aVL +hmp +wRr bBl -aeZ -ryG +hmi +hmp oGC awW acW -add -bny +lSz +sic aiX aiX aiX -vwV -vwV +oHp +oHp aiX aiX aiX -sHM -otK +htG +lPG aiX aiX aiX aiX -nVe -akV -bRs -pUJ -pUJ -abA -pUJ -pUJ -pUJ -pUJ -pUJ -pUJ -pUJ -pUJ -pUJ -ymi +van +kcM +kbL +oEH +oEH +fNL +oEH +oEH +oEH +oEH +oEH +oEH +oEH +oEH +oEH +lFZ pgD -nUv -aJU +lAe +cWi sgU baw baw -aJU -bnZ +cWi +fqX cIe -jez -aJU +jpR +cWi baw baw baw @@ -106944,69 +94243,69 @@ aaa aaa bdH aaa -aad -nXP -aMr -aMr +bHS +nQW +cyW +cyW wfE wfE -rXv +bio wfE wfE wfE wfE -sGU -vhY +qFR +qFR +qFR wfE -bqm -bsD -btr +fgI +pAt wfE -owH -stY -owH +kYC +jep +kYC bkA -bcC -bej -uyJ -fVG -qpQ +mMQ +ueA +kWW +ejN +gYI nvM -bek -qjN -sld -ham -ham -qjN -oDY -omo -fvJ -fdZ -ixj -fdZ -bET +ldS +hRX +ahF +vrG +vrG +hRX +jfC +fVW +gak +xcj +epg +xcj +ebS gfW -bGT -bHH -bGT -cmp -apP -hKQ -bWM -bWM -fps -asE -asB -atA -bWM -aur -auI -auY -asE -caE -pdk -vRz -ajZ +pRb +nrX +pRb +qCQ +wvB +vZB +vBQ +vBQ +hEL +pId +gsv +tUQ +vBQ +dDu +mgE +gnp +pId +nWQ +jYB +kHZ +woL aaa bdH bdH @@ -107048,65 +94347,65 @@ aaa aaa abs adq -aei -aka -aWn -aar -aar -aar -aar -aar -aar +jiT +mkK +nmT +eod +eod +eod +eod +eod +eod oGC awW acW awW awW awW -fSm -vCz -apl -bbL -bbL -kij -bbL -bYe -bYe -yfv -bbL -aWl -bbL -bbL -bax -bbL -bbL -aWl -afv -yfv -bbL -bbL -bbL -bbL -kij -bbL -xRU -pEY -jsP +xws +hKK +cOe +mpr +mpr +gpP +mpr +idf +idf +llq +mpr +qKd +mpr +mpr +tWR +mpr +mpr +qKd +hMz +llq +mpr +mpr +mpr +mpr +gpP +mpr +lfE +jCf +fON baw fGg baw sgU baw baw -qVM -qVM -qVM -qVM -qVM -qVM -hXV -yhI -rRz +cYE +cYE +cYE +cYE +cYE +cYE +hSB +pPB +oGH pgD tQV aaa @@ -107147,69 +94446,69 @@ aaa aaa bdH aaa -aad -aKW -bdn -bdn +bHS +nQW +cyW +cyW wfE -mcL +ihS jOo wrC mHx pqX -pqX -xbk +qwH +fpB wFR -bmF wFR +bmF wFR -xbk -aWw -bys -bxd -vgC +fpB +dFd +hxR +kpv +oBd bkA -eUn -bcD -qpx -bet -bgu +neL +jTC +wyq +wuC +xhv nvM -bek -qjN -gGJ -ham -qjN -qjN -qyD -omo -blZ -bqN -xAa -bqN -bwR +ldS +hRX +fmF +vrG +hRX +hRX +unF +fVW +pdP +lie +sLp +lie +txK gfW -bUe -cbR -ccr -hcC -lEW -aqd -bWM -bWM -ask -asE -asE -asE -atJ -aus -aus -ava -asE -clP -ovF -yhQ -ajZ +xKx +wfw +qju +cGo +lMQ +iEU +vBQ +vBQ +mnc +pId +pId +pId +vUd +qiU +qiU +utA +pId +nWQ +jYB +kHZ +woL aaa bdH bdH @@ -107251,65 +94550,65 @@ aaa aaa abs adq -apr -apr -aoV -aar -aIZ -aIZ -aIZ -bWK -aar +gZa +jDx +niK +eod +jOr +jOr +jOr +oKy +eod aea oGC -xjD +nQC ajf ajf ajf -oAO -dlN -aod -qgG -amC -amC -amC -fXB -amC -amC -hyc -all -all -amC -bYh -amC -fXB -fXB -fBL -bYc -bYc -suV -bYc -bYc -bYc -qgG -dqN -tFW -dGC +jWm +hFH +lrH +sVR +onb +onb +onb +gIA +onb +onb +gdf +hgG +hgG +onb +adX +onb +gIA +gIA +qkp +qkM +qkM +sGJ +qkM +qkM +qkM +sVR +mAu +rpF +vnU aZz aZz aZz nsc baw cxk -qVM -iBt -iBt -iBt -vce -qVM -wTy -wTy -wTy +cYE +rZx +rZx +rZx +agz +cYE +nwv +llp +qFo pgD tQV aaa @@ -107350,69 +94649,69 @@ aaa aaa bdH aaa -aad -aKW -uJo -aLf +bHS +nQW +vnL +huW wfE -dgl +sPh jOo -xbk -mub -mub -mub -xbk +fpB +ftC +ftC +ftC +fpB rkz esM esM uUi -xbk -aWw -aNO -sLE -qLo +fpB +dFd +vNK +mLG +jYj bkA -nvM -bgG -bcK -bgG -nvM +jTS +jTS +fyw +jTS +jTS bkA -vwF -nEJ -ben -qjN -qjN -qjN -hpN +oaa +jeS +gIp +hRX +hRX +hRX +mJG gfW -omo -wkc +vsD +ciV gfW -uFo -omo +bun +vsD gfW -iRx -iEb -bHa -apm -jUn -avT -bWM -bWM -aso -asv -xVO -asE -bWM -auw -auM -avb -asE -scI -oed -yhQ -ajZ +nxy +jSk +vYx +cqh +rAE +yfp +vBQ +vBQ +wJK +biD +gpx +pId +vBQ +vqA +taM +gGn +pId +bjE +jYB +kHZ +woL aaa bdH bdH @@ -107454,65 +94753,65 @@ aaa aaa abs adq -aub -akc -euO -aar -aIZ -aIZ -aIZ -aIZ -aar +qoL +akt +awW +eod +jOr +jOr +jOr +jOr +eod oGC sHp oGC awW awW awW -aSJ -dAi -dtM -aii -mce -avn -mTb -avn -avn -gyy -avn -avn -avn -avn -mRl -avn -gyy -avn -avn -avn -avn -avn -mTb -avn -nFr -aii -ajC -dCD -aXe +cWq +bau +dAj +knU +vnM +qhz +his +qhz +qhz +dWO +qhz +qhz +qhz +qhz +muT +qhz +dWO +qhz +qhz +qhz +qhz +qhz +his +qhz +cDi +knU +jae +qQq +cSI baw baw baw mnA baw baw -qVM -iBt -iBt -iBt -iBt -qVM -crh -csI -nqG +cYE +rZx +rZx +rZx +rZx +cYE +baw +sMM +faY pgD tQV aaa @@ -107553,69 +94852,69 @@ aaa aaa bdH aaa -aad -aKW -ebD -aLf +bHS +nQW +kdD +huW wfE -krp +nwo jOo -aGn -oDv +pJc +rJn wFR -gxO -vnD +ibL +uPD wFR wFR wFR soA -xbk +fpB wfE -kEb -sLE -aLG +vjq +mLG +qhh bCd -iey -baf -kws -vSn -vSn -mvI -lqF -qjN -gGJ -qjN -qjN -qjN -pjw -qdz -bmb -bsj -bPk -bsj -byb +jMW +lMC +tjr +kUO +kUO +pHJ +amG +hRX +fmF +hRX +hRX +hRX +kAl +rdX +tIw +wBO +rSy +wBO +oDZ bCd -buH -iEb -buH -app -uku -aqD -bWM -arE -ast -pjP -atd -uku -bWM -aux -aus -ava -asE -suT -ftl -yhQ -ajZ +fNI +jSk +fNI +ioH +iVt +nrk +vBQ +exc +czV +fIi +ebM +iVt +vBQ +dLk +qiU +utA +pId +tLO +vAk +kHZ +woL aaa bdH bdH @@ -107656,27 +94955,27 @@ aaa aaa aaa abs -aec +jvz avd akt awW -qHq -aIZ -aIZ -aIZ -aIZ -aar -rKs -aar -aar -aar -aar -aar -aar -aar -dtM -aii -ajC +lvB +jOr +jOr +jOr +jOr +eod +qyb +eod +eod +eod +eod +eod +eod +eod +dAj +knU +jae aoe aoe aoe @@ -107696,27 +94995,27 @@ aoe aoe aoe aoe -aEI -aii -aik -qVM -qVM -qVM -qVM -qVM -qVM -xeG -qVM -qVM -iBt -iBt -iBt -iBt -eOM +pCz +knU +sau +cYE +cYE +cYE +cYE +cYE +cYE +qCC +cYE +cYE +rZx +rZx +rZx +rZx +lDb baw sMM xVF -dLz +kPb tQV aaa aaa @@ -107756,69 +95055,69 @@ aaa aaa bdH aaa -aad -aKW -bPW -aLf +bHS +nQW +ebC +huW wfE -eiP +guD qOp -rOJ +twn vYm vYm vYm -fsp -qtv -qtv -qtv -xFZ -btx -naV -bxk -aYI -aLG +aMu +fdr +fdr +fdr +wCY +jdu +hrp +czo +mAI +qhh bCd -tmg -qjN -qjN -qjN -qjN -qjN -qjN -qjN -gGJ -qjN -qjN -qjN -qjN -tzP -tzP -qjN -qjN -tzP -wYK +pxn +hRX +hRX +hRX +hRX +hRX +hRX +hRX +fmF +hRX +hRX +hRX +hRX +tHV +tHV +hRX +hRX +tHV +rJc bCd -buH -iEb -buH -app -uku -aqT -bWM -gwW -dvF -bWM -ate -uku -bWM -auC -auN -dxL -asE -tqk -iBG -yhQ -ajZ +fNI +jSk +fNI +ioH +iVt +opE +vBQ +bOW +dcv +vBQ +nYR +iVt +vBQ +wEi +sMh +vff +pId +vZY +bLM +kHZ +woL aaa bdH bdH @@ -107860,65 +95159,65 @@ aaa aaa abs adq -aGP -aka -aWu -aar -aIZ -aIZ -aIZ -aIZ -aar -uLW -tZe -oQo -dCh -adt -xUI -aOD -aar -mOL -aii -ajC +ied +mkK +hnX +eod +jOr +jOr +jOr +jOr +eod +qjT +cfu +lzF +qOK +dIV +paV +oVI +eod +iSC +knU +jae aoe -aoh +aPN jHQ -jkl -jkl -jkl -wDH +wQP +wQP +wQP +pHy dSJ -hQU -pjF +sSE +vKP mcW -vih +hlF aoe -imp -fYb -cnV -isN -cnZ +myN +dPN +uaP +vGd +sKX aoe -dtM -aii -ajC -qVM -gKS -gKS -csz -xCX -csz -vGk -vGk -qVM -iBt -iBt -iBt -iBt -qVM -hWB -yhI -qSX +dAj +knU +jae +cYE +tgL +tgL +lYP +rws +lYP +ivE +cuJ +cYE +rZx +rZx +rZx +rZx +cYE +tLf +pPB +pyg pgD tQV aaa @@ -107959,69 +95258,69 @@ aaa aaa bdH aaa -aad -aKW -bPT -aLf +bHS +nQW +kYQ +huW wfE -fHz +ute opD -aGn -nTZ +pJc +qrw wFR -lah -vnD +wyz +uPD iRy esM esM jpt -xbk -aWw -aLG -aZi -cOM +fpB +dFd +qhh +kAw +kED baZ -bep -qjN -qjN -qjN -cle -qjN -qjN -qjN -gGJ -qjN -qjN -qjN -qjN -qjN -cle -qjN -qjN -qjN -imo +rXm +hRX +hRX +hRX +qpd +hRX +hRX +hRX +fmF +hRX +hRX +hRX +hRX +hRX +qpd +hRX +hRX +hRX +rbE baZ -oLv -iEb -buH -app -uku -aqW -bWM -arZ -mkh -bWM -ath -asE -atZ -auE -auP -wZy -asE -iTz -vfJ -yhQ -ajZ +jUA +jSk +fNI +ioH +iVt +gMM +vBQ +eBR +mDR +vBQ +cpC +pId +hGV +soz +tTq +lYy +pId +dsF +kZI +kHZ +woL aaa bdH bdH @@ -108063,65 +95362,65 @@ aaa aaa abs adq -aGQ -akc -apg -aar -aIZ -aIZ -aIZ -aIZ -aar -aao -aap -ijU -vkD -ijU -aap -aao -sMs -bYe -akU -ajC +coW +jDx +niK +eod +jOr +jOr +jOr +jOr +eod +waj +dcG +fJS +iec +fJS +dcG +waj +eyO +idf +oMq +jae aoe -vbS +fWm arb -aoq -aoq -aoq -aoq +qhy +qhy +qhy +qhy arb -ccs -aoq -aoq -aoq -aor -aEi -aEi -cnW -aEi -coa +vNs +qhy +qhy +qhy +lPN +xXz +xXz +pUR +xXz +xSa aoe -ahr -akU -bYe -xCX -csz -vGk -vGk -qVM -bDe -csz -csz -qVM -iBt -iBt -iBt -iBt -qVM -wvj -csI -iPH +mCH +oMq +idf +rws +lYP +ivE +ivE +cYE +rVL +lYP +lYP +cYE +rZx +rZx +rZx +rZx +cYE +msR +llp +gVs pgD tQV aaa @@ -108162,69 +95461,69 @@ aaa aaa bdH aaa -aad -aKW -aLf -aSm -wfE -iYx +bHS +nQW +huW +cyW +sGU +pMi opD -xbk -msZ -msZ -msZ -xbk +fpB +syF +syF +syF +fpB wFR -ldt +smz nEF tXi -pcE -aWw -aLG -aZi -aLG -hqW -qjN -qjN -hDX -bei -xgh -mlH -cAF -eEk -kDR -maI -ujz -ljO -kdB -bmO -xgh -mlH -hDX -qjN -qjN -jpp -buH -iEb -buH -eDG -cmp -ard -bWM -gwW -saB -bWM -ati -atE -aua -gwW -xqS -yiE -avk -wlp -vXX -yhQ -ajZ +pzN +dFd +qhh +kAw +qhh +rQP +hRX +hRX +kxs +jsI +uax +xbY +iov +ewF +fwp +bZp +jWG +veP +nzN +ovZ +uax +xbY +kxs +hRX +hRX +hlA +fNI +jSk +fNI +dlw +qCQ +rhE +vBQ +bOW +iod +vBQ +xkM +wpC +vne +bOW +wcq +ryV +wEa +nWQ +bjY +kHZ +woL aaa bdH bdH @@ -108265,29 +95564,29 @@ aaa aaa aaa abs -aee +fra avd akt qWI -aar -aar -aar -aar -aar -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -ahr -akU -ajC +eod +eod +eod +eod +eod +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +mCH +oMq +jae aoe -qQc +xFK fXg dfa dfa @@ -108298,34 +95597,34 @@ gzK arb arb arb -aor -sKa -sKa -jBy -aEi -fFh +lPN +kHm +kHm +ePt +xXz +kKN aoe -dtM -akU -ajC -czu -czu -czu -czu -czu -czu -czu -czu -czu -qVM -qVM -qVM -qVM -qVM +dAj +oMq +jae +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +cYE +cYE +cYE +cYE +cYE ehj irS ilJ -njD +pXB tQV aaa aaa @@ -108365,69 +95664,69 @@ aaa aaa bdH aaa -aad -aKW -aLf -aSm +bHS +nQW +huW +cyW wfE -gww +aTP opD wFR wFR aqn arT -xbk -jfZ -kqK -ljf -maL -uKe -aWw -aLG -avX -tzf -vcq -qPS -qPS -qim -qPS -vln -mKw -rcx +fpB +wOg +tJA +wet +rMl +cZu +dFd +qhh +vZa +ekp +hnc +yhP +yhP +ayO +yhP +jiB +uAH +uLz kan ojZ -jjn +gsE ojZ kan -leY -tYi -uYa -bqL -iaF -bqL -bqL -ocf -bFu -mKY -hvp -mWw -apT -apA -arC -aLc -cSN -asy -atw -atF -aud -auF -ati -cUb -asE -luu -gNx -yhQ -ajZ +sgQ +lTc +ryE +tdL +bDu +tdL +tdL +aVN +gZV +yjU +rMf +poY +tKk +nNe +ugQ +iBZ +aUI +wzw +gup +nvm +iMa +nyZ +xkM +qnm +pId +iHm +gfN +kHZ +woL aaa bdH aaa @@ -108469,65 +95768,65 @@ aaa aaa abs adq -aWm -aka -kyY -aar -cit -ina -nuY -nuY -lYA -aax -aax -aax -dkO -aps -aps -aps -lYA -vIm -aii -ajC +cDa +akt +awW +eod +nua +jWF +gYQ +gYQ +aXI +plW +plW +plW +iuN +ldB +ldB +ldB +aXI +oKF +knU +jae aoe -vbS +fWm koB -asU -asU -asU -asU +fcn +fcn +fcn +fcn arb -fEC +gsc aoe aoe -aCw +qqR aoe aoe aoe aoe -hFF +lEJ aoe aoe -dtM -aii -ajC -czu -aiJ -aiJ -aiJ -qYr -atj -atj -atj -czu -foR -usi -vGk -foR -qVM -rQW -yhI -tmI +dAj +knU +jae +aXI +wIJ +wIJ +wIJ +iTO +vDL +vDL +vDL +aXI +ovK +bRn +ivE +ovK +cYE +baw +sMM +hUV pgD tQV aaa @@ -108568,69 +95867,69 @@ aaa aaa bdH aaa -aad -aKW -rJb -aSm +bHS +nQW +viy +cyW wfE -rYi +xiu opD wFR wFR -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aLG -aZi -cOM +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +qhh +kAw +kED baZ -eyQ -qjN -qjN -qjN -qjN -gGJ -bqR +gsT +hRX +hRX +hRX +hRX +fmF +wZC vhX -gls -cAm -bwH +jVC +ksR +uRu vhX -xqv -gGJ -qjN -qjN -qjN -qjN -xtM +yfg +fmF +hRX +hRX +hRX +hRX +wFx baZ -oLv -hop -vMx -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -auh -gwW -ati -lBY -asE -wlp -oDf -yhQ -ajZ +jUA +wRX +eHZ +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +ekX +bOW +xkM +jAM +pId +nWQ +rmp +kHZ +woL aaa bdH aaa @@ -108672,65 +95971,65 @@ aaa aaa abs adq -apr -apr -apr -aar -aJL -aYr -aao -aao -lYA -aax -aax -aax -vQe -aps -aps -aps -lYA -ahq -akU -ajC +fbQ +mkK +vMP +eod +sTY +uCK +waj +waj +aXI +plW +plW +plW +bhO +ldB +ldB +ldB +aXI +qaP +oMq +jae aoe -aop +wnC koB -jkl -jkl -jkl -jkl +wQP +wQP +wQP +wQP arb -ayW +ttF aoe -lFn -imp -kEp +uEQ +myN +lSm aoe -tsC -uRt -aQz +imA +xpY +uBm aRJ ajl -dtM -akU -ajC -czu -aiJ -aiJ -aiJ -str -atj -atj -atj -czu -usi -vGk -vGk -vLv -qVM -wTy -wTy -wTy +dAj +oMq +jae +aXI +wIJ +wIJ +wIJ +rpf +vDL +vDL +vDL +aXI +bRn +ivE +ivE +vad +cYE +tqs +pPB +gMy pgD tQV aaa @@ -108771,69 +96070,69 @@ aaa aaa bdH aaa -aad -aKW -aLf -aSm +bHS +nQW +huW +cyW wfE -cVK +rAh opD -oRO -ren -aKW -aeL -aeL -aeL -aqM -arO -arO -arO -aKW -beB -byI -beB +tnW +kIl +oCV +nyt +nyt +nyt +peN +pRU +pRU +pRU +oCV +ukO +xwi +pdm bCd -mlH -bqR -cle -tYw -tlA -nyj -vVW +xbY +wZC +qpd +itQ +gyQ +ogP +gxv vhX -unU -rlZ -twq +xAQ +qow +cdi vhX -jCK -nyj -tlA -bwT -cle -bCe -sdO +hSm +ogP +gyQ +ftG +qpd +wdm +tvB bCd -bJz -rrV -bJz -yhQ -aue -aue -aue -txi -azy -azy -azy -yhQ -aup -gwW -kiF -ave -asE -scI -oDf -yhQ -ajZ +hYB +czz +pCF +oCV +nzZ +nzZ +nzZ +rxR +rCG +rCG +rCG +oCV +eAs +bOW +qeL +uSW +pId +bjE +rmp +kHZ +woL aaa bdH aaa @@ -108873,67 +96172,67 @@ bdH bdH bdH bdH -acf -aet -afB -akW -apu -aar -aar -aao -aap -pDm -lYA -acV -acV -acV -vQe -aps -aps -aps -lYA -dtM -nmx -cpw -hSI -pMp +abs +adq +gZa +jDx +niK +eod +eod +rxO +dcG +jLS +aXI +nIe +nIe +nIe +bhO +ldB +ldB +ldB +aXI +dAj +hqf +kDI +sEl +mAk gzK -aoq -aoq -aoq -aoq -aoq -aoq -aAG -aBd -aEi -aGW -aRF -akx -akw -aQz +qhy +qhy +qhy +qhy +qhy +qhy +jBQ +dIA +xXz +fDF +tQg +srG +qkI +uBm aRK ajl -aDk -akU -ajC -czu -aiJ -aiJ -aiJ -str -atl -atl -atl -czu -dQE -vGk -csz -qVM -qVM -crh -csI -qhb +bDw +oMq +jae +aXI +wIJ +wIJ +wIJ +rpf +fZo +fZo +fZo +aXI +kZH +ivE +lYP +cYE +cYE +idk +llp +sNm pgD tQV bdH @@ -108974,69 +96273,69 @@ aaa aaa bdH aaa -aad -aKW -aLf -aMs +bHS +nQW +huW +qTG wfE wfE -viJ +aAX wfE wfE -aKW -aeL -aeL -aeL -kHj -arO -arO -arO -aKW -aLG -aZi -aLG +oCV +nyt +nyt +nyt +gbh +pRU +pRU +pRU +oCV +qhh +kAw +qhh bCd -bmn -knH +teM +rLc kan kan -oKv -rHo +cQA +tEF kan kan kan -jXf +vRM kan kan kan -cbu -quT +hIV +tBs kan kan -iXW -iLs +wtP +jii bCd -buH -hop -buH -yhQ -aue -aue -aue -tGO -azy -azy -azy -yhQ -uRr -bWw -bWM -avi -asE -suT -oed -yhQ -ajZ +fNI +wRX +fNI +oCV +nzZ +nzZ +nzZ +dYw +rCG +rCG +rCG +oCV +xNg +vSC +vBQ +pUX +pId +tLO +jYB +kHZ +woL aaa bdH aaa @@ -109062,98 +96361,98 @@ aaa aaa aab bdH -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -acv -aez -boL -akY -boL -aiH -aiv -aap -uoS -pDm -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -dtM -ajt -pvt +eQJ +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +abw +nCM +awW +akt +awW +waB +maD +dcG +ioM +jLS +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +sVd +oRw aoe -pjF +vKP wUd -asU -asU -asU -fFO -mrL -mrL +fcn +fcn +fcn +hoY +mWZ +mWZ aoe -yjb -aEN -aGX +rmq +evO +pPu aoe -aLS -akw -fOL -aRS +jgL +qkI +puf +woZ ajl -ahq -aii -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -usi -foR -csz -xCX -aJU +qaP +knU +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +bRn +ovK +lYP +rws +cWi baw sMM baw -gFd +hgh trb -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +oVj +fPT aaa aab aaa @@ -109179,65 +96478,65 @@ aKR aKR aKR aKR -aSm -aLf -vXY -aLf -aLf -jiX -cmq -aKW -aeL -aeL -aeL -kHj -nLg -nLg -nLg -aKW -aLG -aZi -bad +cyW +huW +dyV +huW +huW +jnL +xGl +oCV +nyt +nyt +nyt +gbh +ijw +ijw +ijw +oCV +qhh +kAw +gfA kan kan kan kan -xdx -rlZ -egc -thP -beW -bTu -rlZ -fqZ -beW -bgP -psK -rlZ -cFP +mhw +qow +lMf +dHU +kYz +tmY +qow +meK +kYz +eoy +wBH +qow +csC kan kan kan kan -bGe -bHL -buH -yhQ -auk -auk -auk -tGO -azy -azy -azy -yhQ -pGN -bWM -bWM -avi -asE -scI -oed +hIy +xyB +fNI +oCV +llG +llG +llG +dYw +rCG +rCG +rCG +oCV +uop +vBQ +vBQ +pUX +pId +bjE +jYB bVU bVU bVU @@ -109265,7 +96564,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -109279,28 +96578,28 @@ aag aag aag aag -acv -aez -boL -akY -wrQ -aar -aar -aar -aar -aar -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -dtM -akU -wgd +abw +nCM +awW +akt +iHl +eod +eod +eod +eod +eod +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +oMq +juc sqf sqf sqf @@ -109311,36 +96610,36 @@ sqf ajl ajl ajl -aCo -aEO -aHa +twa +iSs +gIj aoe -cXW -upM -akw -alD -vEx -bYe -akU -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -qVM -qVM -qVM -qVM -qVM +cpN +dtK +qkI +pxd +mDt +idf +oMq +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +cYE +cYE +cYE +cYE +cYE nTH sMM baw -teg +vuu trb aag aag @@ -109356,7 +96655,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -109367,96 +96666,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKU -aKS -aKS -aKS -aKS -aKS -aKS -aKU -aKS +uEn +uEn +uEn +uEn +uEn +dhl +uEn +uEn +uEn +uEn +uEn +uEn +dhl +uEn aLL -iIY -bCQ -hhw -gxr -bPW -bbx -bPU -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -aLG -aZi -aLG +lnc +jdE +vRI +nrR +ebC +whX +wLL +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +qhh +kAw +qhh kan -bFb -bFb +bgh +waw +yfG +ikp +qow +xEw +qow +qow +qow +qow +qow +qow +qow +xEw +qow +jVf kan -aYm -rlZ -buu -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -buu -rlZ -dTZ +pXf +axP kan -psO -gjK -kan -buH -bHL -buH -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ -djp -bWM -bWM -avi -asE -nyz -tVB +fNI +xyB +fNI +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV +jDy +vBQ +vBQ +pUX +pId +hSN +saG bSf -bWe -bWn -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWn -bWe -bWe -bWe -bWn -bWe +tWI +iKl +tWI +tWI +tWI +tWI +tWI +tWI +tWI +iKl +tWI +tWI +tWI +iKl +tWI bVU aaa aab @@ -109468,7 +96767,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -109482,37 +96781,37 @@ aag aag aag aag -acf -aet -agS -aiP -aYq -aar -aIZ -aIZ -aIZ -bWK -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -dtM -akU -ajC +abs +adq +hmi +mkK +lMa +eod +jOr +jOr +jOr +oKy +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +oMq +jae sqf -wQa -wjz -fnA -jZY -jZY +yfH +kmo +oqY +eQl +eQl sqf -vPj -aot +whn +fxL ajl ajl ajl @@ -109520,29 +96819,29 @@ ajl ajl ajl ajl -onQ -alD +bww +pxd ajl -hon -akU -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -iBt -iBt -iBt -vce -qVM -gnv -yhI -tTu +xpk +oMq +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +rZx +rZx +rZx +agz +cYE +hSB +pPB +oGH pgD tQV aag @@ -109559,7 +96858,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -109570,96 +96869,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -pzG -bby +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +jUw +hXx aLL aLL -frz +rtu aLL aLL aLL aLL aLL -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -aLG -aZi -aLG +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +qhh +kAw +qhh kan -bFb -bFb +otq +kJr kan -aZM -soK -gDW -rlZ -rlZ -pqD -pqD -pqD -rlZ -rlZ -gYl -frl -wFb -wzZ -tdI -vbV +jUk +rsU +sxA +qow +qow +kKr +kKr +kKr +qow +qow +wMj +euK +dfS +xxs +qyt +uFW kan -buH -hop -buH -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ +fNI +wRX +fNI +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV bSf bSf auW bSf bSf -ued +wVI bSf bSf -cml -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWo -bWe +bDh +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +odE +tWI bVU aaa aab @@ -109671,7 +96970,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -109685,67 +96984,67 @@ aag aag aag aag -acf -aet -agB -akW -aYs -aar -aIZ -aIZ -aIZ -aIZ -lYA -vKF -adb -adb -lYA -asm -asm -asm -lYA -dtM -aii -ajC +abs +adq +gZa +jDx +niK +eod +jOr +jOr +jOr +jOr +aXI +msf +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +knU +jae sqf -udb -oNJ -eDo -eDo -eDo +scb +uqe +eLs +eLs +eLs sqf -jUG -awM -gXl +kcB +cKM +sxg ajl -wqW -awj -dDL -aLZ +hfI +pOG +fPa +hLY ajl -aCp -alD +gcv +pxd ajl -wqA -aii -ajC -czu -alW -alW -alW -czu -atI -atI -xMk -czu -iBt -iBt -iBt -iBt -qVM -vpn -csI -goL +hEX +knU +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +qlr +aXI +rZx +rZx +rZx +rZx +cYE +idk +llp +sNm pgD tQV aag @@ -109762,7 +97061,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -109773,96 +97072,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +cpz aLL -etF +hil bbS aLL -coT -fgh -rZP -gmj -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -bxD -byI -beB +gHr +jsw +aLu +vgJ +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +jKV +xwi +pdm bst bst bst bst bst bst -oou -rlZ -rlZ -tiI -hDR -oZV -rlZ -rlZ -xMj +tcz +qow +qow +lbG +eiT +kBu +qow +qow +opH biA biA biA biA biA biA -bJz -bHT -koc -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ -wcN -nGi -bVd -bUO +hYB +fZK +grU +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV +jDj +nvF +hav +xBu bSf weC -tZc +fZC bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +ppP +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -109874,7 +97173,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -109888,68 +97187,68 @@ aag aag aag aag -acv -aez -boL -akY -boL -avJ -aIZ -aIZ -aIZ -aIZ -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -dtM -ajt -aik +abw +nCM +awW +akt +awW +wNG +jOr +jOr +jOr +jOr +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +sVd +sau sqf -eTh -awn -xsz -jTj -jTj +uzK +vRm +mbl +wXk +wXk sqf -xRh -umC -dwA -wJo -cyU -eme -skl -nzv -fQu -akx -alD +xVD +ijd +kgD +cLF +mOp +lYb +klW +eDL +fYY +srG +pxd gWG -dtM -aii -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -iBt -iBt -iBt -iBt -qxz +dAj +knU +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +rZx +rZx +rZx +rZx +oFE baw sMM baw -wiz +fxi trb aag aag @@ -109965,7 +97264,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -109976,96 +97275,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +cpz aLL -fXz +nch bbS aLL -uUt +kiN aLW aLW -guS -aKW -aiR -aiR -aiR -aKW -xpI -xpI -vgF -aKW -jgU -aZi -aLG +jEH +oCV +nHE +nHE +nHE +oCV +urW +urW +kzR +oCV +lVg +kAw +qhh bst -bui -bvz -bgC -xfT +mly +iZk +wqM +qdX bkE -bJw -rlZ -hBc -hzs -hzs -kDj -aZK -rlZ -hYn +wUx +qow +skf +uSI +kDW +uSI +xEV +qow +xvf cpJ -lQO -bsQ -bmj -caS +ega +mxS +ggo +olD biA -buH -bHL -wWQ -yhQ -aun -aul -aul -yhQ -azD -azD -azD -yhQ -wgR +fNI +xyB +jor +oCV +pGU +fIs +fIs +oCV +gHp +gHp +gHp +oCV +fnL bTO bTO -sYP +kas bSf cpk -bVd +hav bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +ppP +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -110077,7 +97376,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -110091,68 +97390,68 @@ aag aag aag aag -acv -aez -boL -akY -aqk -aar -aIZ -aIZ -aIZ -aIZ -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -dtM -aii -ajC +abw +nCM +awW +akt +vPS +eod +jOr +jOr +jOr +jOr +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +dAj +knU +jae sqf -vZJ -awn -tEi -iWb -ygM +oeQ +vRm +nHa +sMm +vJw sqf ajl -vtx +svZ ajl ajl -jel -fbB -cyU -bho -fQu -akx -alD +vCR +wPD +mOp +hpl +fYY +srG +pxd gWG -dtM -aii -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -iBt -iBt -iBt -iBt -qVM +dAj +knU +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +rZx +rZx +rZx +rZx +cYE xuY sMM baw -oby +xqL trb aag aag @@ -110168,7 +97467,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -110179,96 +97478,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz -bdy +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +cpz +eeG bbS bbS -bdy +eeG bbS xka uLn uoA -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -aLG -aZi -aLG +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +qhh +kAw +qhh bst -bcR -bev -bgA -eas +dwc +nnM +vXr +vIK bkE -bLr -qni -hQY -qni -qni -qni -hQY -qni -lJG +kwK +dYb +oiA +dYb +dYb +dYb +oiA +dYb +rRW cpJ -kRd -bCl -bsz -caT +mYW +vOw +dbV +qoq biA -buH -bHL -buH -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ +fNI +xyB +fNI +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV hkB bTO qSm cls -xoJ +hoJ weC cls -bWc -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +hwl +ppP +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -110280,7 +97579,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -110294,67 +97593,67 @@ aag aag aag aag -acf -aet -agS -aiP -aYq -aar -aIZ -aIZ -aIZ -aIZ -lYA -adb -adb -adb -lYA -asm -asm -asm -lYA -aEI -aii -ajC +abs +adq +hmi +mkK +lMa +eod +jOr +jOr +jOr +jOr +aXI +hNz +hNz +hNz +aXI +unb +unb +unb +aXI +pCz +knU +jae sqf sqf -awp +eyT sqf sqf sqf sqf -mNI -sdn -xNu +ggX +cOP +lse ajl -vRX -pth -axm -lhv +ulp +xQe +kLD +pTv ajl -hVz -alD +nwp +pxd ajl -ahr -aii -ajC -czu -alW -alW -alW -czu -atI -atI -atI -czu -iBt -iBt -iBt -iBt -qVM -gnv -yhI -tTu +mCH +knU +jae +aXI +xmL +xmL +xmL +aXI +fvR +fvR +fvR +aXI +rZx +rZx +rZx +rZx +cYE +hSB +pPB +oGH pgD tQV aag @@ -110371,7 +97670,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -110382,96 +97681,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -pDo +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uFm aLL -aON +oAx xYB aLL -rlh +ylb aLW aLW -gxh -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -aLG -aZi -mzR +tZi +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +qhh +kAw +eEU bst -bcS -bag -bgz -elE -bgv -bPz -dTZ -qxL -sYh -rlZ -dTZ -qxL -sYh -fFL -bmc -jdG -bCm -bsP -hgZ +aTh +cmP +lSc +ejA +hbg +ovM +jVf +oZN +glF +qow +jVf +oZN +glF +rXy +ngc +ikd +wHD +ibf +lCo biA -buH -bHL -buH -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ -wjC +fNI +xyB +fNI +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV +kQj bTO xMf -unh +jwS bSf weC -rfI +lEH bSf -qzc -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +hRZ +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -110483,7 +97782,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -110497,67 +97796,67 @@ aag aag aag aag -acf -aet -afB -akW -biT -aar -aar -aar -aar -aar -lYA -adc -adc -adc -lYA -lYA -lYA -lYA -lYA -kYU -akU -rxG +abs +adq +jqf +jDx +pfn +eod +eod +eod +eod +eod +aXI +oss +oss +oss +aXI +aXI +aXI +aXI +aXI +fPO +oMq +tVC ajl -qhx -akw -axl -gKR -fvd +iEx +qkI +saE +qJJ +tzH ajl ajl ajl ajl ajl -sYT -sYT -tWY -sYT +ooL +ooL +oSI +ooL ajl -nMV -vIf +pPQ +hRv ajl -aEI -akU -gMa -czu -czu -czu -czu -czu -adc -adc -adc -czu -qVM -qVM -qVM -qVM -qVM -crh -csI -qhb +pCz +oMq +lJS +aXI +aXI +aXI +aXI +aXI +oss +oss +oss +aXI +cYE +cYE +cYE +cYE +cYE +nwv +llp +qFo pgD tQV aag @@ -110574,7 +97873,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -110585,96 +97884,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +cpz aLL -etF +hil bbS aLL -djQ -nFs +etc +gEw aLW gFa -aKW -aiR -aiR -aiR -aKW -xpI -xpI -xpI -aKW -aLG -aZi -aLG +oCV +nHE +nHE +nHE +oCV +urW +urW +urW +oCV +qhh +kAw +qhh bst -buj -bev -dBO -waD +nOX +nnM +ejG +lVC bkE -bQM -rlZ -izY -rlZ -rlZ -rlZ -izY -rlZ -hZN +kgl +qow +qUJ +qow +qow +qow +qUJ +qow +wbH cpJ -tni -bCn -bsz -hMN +aXa +dWr +dbV +sDn biA -buH -bHL -buH -yhQ -aul -aul -aul -yhQ -azD -azD -azD -yhQ -xad -roG -mZr -eax +fNI +xyB +fNI +oCV +fIs +fIs +fIs +oCV +gHp +gHp +gHp +oCV +dtx +kde +jcc +sGo bSf fvN -tZc +fZC bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +ppP +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -110686,7 +97985,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -110700,65 +97999,65 @@ aag aag aag aag -acv -aez -boL -boL -boL -ahl -cWv -cWv -cWv -cWv -kaj -uId -adH -adH -fMA -atC -bbL -aWl -bbL -wQg -akU -bYe -bVE -aos -akw -akw -akw -alE -ans -ans -asw -ans -ans -ans -ans -axm -ans -ans -aos -alE -bVE -bYe -akU -aGd -aWl -hJu -bbL -atC -aAa -aww -aww -wst -axs -bbL -bbL -bYe -bbL -bit -baw +abw +nCM +awW +awW +awW +rTj +mpr +mpr +mpr +mpr +cAp +mUU +uLZ +uLZ +qXE +mpr +mpr +qKd +mpr +rTb +oMq +idf +nZP +mLl +qkI +qkI +qkI +eUF +quE +quE +hRB +quE +quE +quE +quE +kLD +quE +quE +mLl +eUF +nZP +idf +oMq +kUo +mpr +pBb +mpr +mpr +spm +mUU +mUU +mUU +dFH +mpr +mpr +mpr +mpr +rTj +mjD baw qYC kwo @@ -110777,7 +98076,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -110788,96 +98087,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbA +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +uEn +gyu aLL aLL -frz +rtu aLL aLL aLL aLL -hrF -aKW -aKW -aKW -aKW -aKW -kaF -jWU -jWU -aKW -pGM -aZi -aLG +edD +oCV +oCV +oCV +oCV +oCV +nJz +iFJ +iFJ +oCV +hGT +kAw +qhh bst -aYQ -bbd -bcL -bez +jfE +jbu +oSa +cZK bkE -bRP -rlZ -rlZ -xsw -bZn -kFv -rlZ -rlZ -siW +fpm +qow +qow +vjI +alz +trC +qow +qow +dRt cpJ -bmi -bnT -btX -byc +tLg +cgx +kOq +mWP biA -buH -bHL -bIR -yhQ -cyG -cyG -sos -yhQ -yhQ -yhQ -yhQ -yhQ +fNI +xyB +sjw +oCV +vqq +vqq +jdH +oCV +oCV +oCV +oCV +oCV bSf bSf -auX +sEE bSf bSf -ued +wVI bSf bSf -cmn -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe +xyX +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI +tWI bVU aaa aab @@ -110889,7 +98188,7 @@ aaa aaa aab bdH -aad +bHS aag aag aag @@ -110903,65 +98202,65 @@ aag aag aag aag -acv -aez -boL -asS -boL -ceu -boL -boL -boL -boL -kGL -uTY -azY -azY -azY -atC -abx -abx -abx -abx -tal -ait -aEe -akA -akA -akA -akA -jOG -akA -akA -akA -akA -rnN -akA -akA -maT -akA -akA -oap -aSb -aEe -ait -bjJ -abx -abx -abx -abx -atC -azY -azY -azY -fad -kGL -abg -abg -abg -abg -ajC -baw +abw +nCM +awW +aTm +awW +rTj +aSu +aSu +aSu +aSu +tjd +tjd +eGm +eGm +eGm +aSu +bgx +bgx +bgx +bgx +sfI +xND +kpa +qdb +qdb +qdb +qdb +jtz +qdb +qdb +qdb +qdb +gEh +qdb +qdb +sWS +qdb +qdb +guQ +kIO +kpa +xND +eno +bgx +bgx +bgx +bgx +aSu +eGm +eGm +eGm +tjd +tjd +aSu +aSu +aSu +aSu +rTj +ley vbB ley kwo @@ -110980,7 +98279,7 @@ aag aag aag aag -ajZ +woL aaa aab aaa @@ -110991,96 +98290,96 @@ aaa aab aaa aKR -aKS -aKS -aKS -aKS -aKS -aKV -aKS -aKS -aKS -aKS -aKS -aKS -aKV -aKS +uEn +uEn +uEn +uEn +uEn +wsF +uEn +uEn +uEn +uEn +uEn +uEn +wsF +uEn aLL -iIY -bCQ -hhw -bPU -bPS -cDe -ipD -rmN -buq -lGh -aQt -lDg -lpD -wGA -lpD -hmc -tBF -jWt -aLG +bFN +ikl +qfO +ntP +cAA +mDa +eQe +fKF +fRa +ipf +mht +qKk +nqE +fGD +nqE +lsT +cOc +lHj +qhh bst bst bst bst bst bst -cjW -rlZ -rlZ -hrJ +pTG +qow +qow +gNT kan -biy -boX -rlZ -vMG +oju +tze +qow +xlt biA biA biA biA biA biA -ghD -vdW -hvp -ayE -azE -ajd -azS -chE -azI -ciT -cjw -cjS -ckl -ckI -cla -cly -voQ -bVi -tVB +dYH +ruo +rMf +vRy +qRK +poj +oYG +sLy +qlb +voH +spf +bki +fmk +eMr +sWT +xIp +nXD +pzt +cGO bSf -bWe -bWp -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWp -bWe -bWe -bWe -bWp -bWe +tWI +rYP +tWI +tWI +tWI +tWI +tWI +tWI +tWI +rYP +tWI +tWI +tWI +rYP +tWI bVU aaa aab @@ -111092,42 +98391,42 @@ aaa aaa aab bdH -aae -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -acf -acf -boL -ale -bDD -nub -dux -iYr -dux -ado -atC -kHT -avn -avn -mTb -atC -avn -avn -avn -nFr -ajt -ajC +fpk +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +abs +abs +awW +xbg +ajE +rTj +idf +his +idf +muT +qhz +qhz +qhz +qhz +his +qhz +qhz +qhz +qhz +cDi +sVd +jae vOy vOy vOy @@ -111144,46 +98443,46 @@ vOy vOy vOy vOy -wMO -wky +ocs +gQE sqf -hon -ajt -mce -avn -avn -avn -atC -mTb -avn -avn -aim -atC -avn -bYe -cre -avn -aim -baw +xpk +sVd +vnM +qhz +his +qhz +qhz +qhz +qhz +qhz +qhz +his +qhz +idf +fZm +qhz +rTj +nvW dBp gVA tQV tQV -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -afm +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +rNc aaa aab aaa @@ -111209,65 +98508,65 @@ aKR aKR aKR aKR -aSm -aLf -tps -aLf -aLf -xlD -nMz -aSm -hhw -aNn -aNO -asO -apC -apC -apC -aqx -aLG -aYO -aLG +jcA +cPE +ohc +cPE +cPE +jEi +djf +jcA +qfO +cqW +vNK +qjK +jSG +jSG +jSG +tZk +qhh +xQf +qhh kan -ihw -beW -lkW -biF +qli +kYz +xEJ +kgm vhX -akQ -rlZ -rlZ -pnC +cMp +qow +qow +ruu dBH -bky -ryt -rlZ -wYS +nZp +ace +qow +pct vhX -jva -tAU -xmT -tAU +ylM +ndz +xvT +ndz kan -buH -bHL -buH -azB -azT -azT -azT -azG -bHa -ccU -kzP -cjT -ckm -bHa -clb -clz -fiq -gqK -oed +fNI +xyB +fNI +vEc +rEP +rEP +rEP +vEc +vYx +efg +tHj +gOz +iXG +vYx +ddy +iSh +sXT +fci +osi bVU bVU bVU @@ -111310,14 +98609,14 @@ aaa aaa aaa aaa -lYA -aet -aet +acf biV +aet biV -ekY aet -ekY +iiO +aet +iiO aet abE abE @@ -111328,49 +98627,49 @@ abE abE abE abE -jKK -pjM -aim +oaU +pOp +xfF vOy -nos -fcy -drT -ipQ -lZZ +wXJ +oai +xoA +wUh +oKK vOy -oDL -nEH -vAQ -qIL -ncE -vWt -kNx +teV +lJz +qQK +vFO +mDE +nsG +uTn vOy -ayX -kXw -pxo +cun +fQh +mhz sqf -kHT -pjM -aim -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -gMA -qVM -qVM -qVM -qVM -qVM -qVM -czu +eIu +pOp +xfF +tpE +tpE +tpE +tpE +tpE +tpE +tpE +tpE +tpE +tpE +pMt +gcO +gcO +gcO +gcO +gcO +gcO +nMq aaa aaa aaa @@ -111410,69 +98709,69 @@ aaa aaa aaa bdH -aad -aKW -aSm -aLf -hhw +bHS +lyZ +jcA +cPE +qfO aQF aQF aQF aQF -szE +lSB aQF -bBb -jtJ -asO -asP -uKA -asP -aqx -aLG -aZi -aLG +knB +jue +qjK +rPi +fRX +rPi +tZk +qhh +kAw +qhh kan -iMI -rlZ -rlZ -rlZ -qep -cnr -qqK -qqK -ayD +qlm +qow +qow +qow +wDd +waz +xvU +xvU +ouk dBH -bky -ryt -rlZ -buu -uXf -wxq +nZp +ace +qow +xEw +hrQ +jvu wJb wJb bPu kan -buH -bHL -buH -azB -qKM -rYj -ssE -azG -uxZ -vgk -fiq -fiq -fiq +fNI +xyB +fNI +vEc +dNT +sIg +dRJ +vEc +rli +rHU +sXT +sXT +sXT bTq -fiq -fiq -fiq -oDf -oed -yhQ -ajZ +sXT +sXT +sXT +xKL +osi +oJO +woL bdH aaa aaa @@ -111513,67 +98812,67 @@ aaa aaa aaa aaa -ahx -aiH -alf -arp -arp -aiH -aiH -aiH +acv +jcv +fDg +peY +peY +jcv +jcv +jcv aet -kPB -aci -aci -aci -aci -gwo -aed -aeG +jJF +pjO +pjO +pjO +pjO +cwP +lbZ +gvx abE -atL -akV -atL +tEW +nhc +tEW vOy -oNp -aSn -lYL -pNP -kCj +heE +vsg +jan +uaT +iyw vOy -nLI +pMZ rDV dwr rDV mTd gQF -xXr +gyq vOy -niL -kXw -pxo +mNh +fQh +mhz sqf -atL -bkQ -atL -qVM -iBt -iBt -iBt -iBt -iUZ -awE -pQu -kmL -qVM -csz -qVM -nLb -pUi -wLk -bIN -lbb -czu +tEW +vnu +tEW +tpE +syQ +syQ +syQ +syQ +cMa +tpE +epv +oYr +tpE +xNF +gcO +fyT +ilp +gEB +bPw +unu +nMq aaa aaa aaa @@ -111613,16 +98912,16 @@ aaa aaa aaa bdH -aad -aKW -uDB -aLf -hhw -weR -aPE -weR -vrI -izk +bHS +lyZ +iFI +cPE +qfO +cbl +nUw +cbl +uJc +gDy aQF aQF aQF @@ -111631,33 +98930,33 @@ aQF aQF aQF aQF -esi -byI -beB +wtK +xwi +pdm kan -avW -bZn -dXr -uay +rSb +alz +tWD +ikG vhX -gDW -rlZ -rlZ -pnC +sxA +qow +qow +nEx dBH -bky -ryt -rlZ -gYl +nZp +ace +qow +wMj vhX -hCS -xIk -cLA -xIk +kkF +mfk +cYB +mfk kan -bJz -bHT -quI +hYB +fZK +kKd bJt bJt bJt @@ -111665,17 +98964,17 @@ bJt bJt bJt bJt -fiq -uaa -uaa -uaa -uaa -cmX -fiq -oDf -oDf -yhQ -ajZ +sXT +brN +brN +brN +brN +jGQ +sXT +xKL +xKL +oJO +woL bdH aaa aaa @@ -111716,67 +99015,67 @@ aaa aaa aaa aaa -ahx -aiH +acv +jcv alg bBC bBC aIx aIB -aiH +jcv aet kPZ acI acj vJZ wfZ -adF +bsu aef -dWw +bUB agA -ago -snm -cwJ +qeP +sLj +dlM vOy -anz -vgx -hme -mzq -qJy +qcQ +gWI +gwl +exq +exv vOy -vti -vti -fBO -vti -gGx -vti -lid -lJv -aCC -kXw -pxo +dlu +dlu +rHg +dlu +gpr +dlu +jWX +pol +owf +fQh +mhz asn -ago -asW -cwJ -qVM -iBt -iBt -iBt -iBt -iBt -awE -jZU -rjH -qVM -vGk -qVM -fdj -qYW -oTz -vGk -xae -czu +qeP +wZR +dlM +tpE +syQ +syQ +syQ +syQ +syQ +tpE +xrp +aCO +tpE +bmp +gcO +fMP +mnP +umt +bmp +omJ +nMq aaa aaa aaa @@ -111816,69 +99115,69 @@ aaa aaa aaa bdH -aad -aKW -aSm -aVt -hhw -aNr -aOi -pbb -pbb -izk -aWD -cWr -jSU -lXO -eKT -wan -cTC +bHS +lyZ +jcA +xUa +qfO +hLj +hLj +qLf +qLf +gDy +eaQ +guR +smh +lFC +cpc +cPo +xlS aQF -pno -aYO -bad +cro +xQf +gfA xMs xMs xMs xMs xMs xMs -cjW -rlZ -rlZ -jbO +pTG +qow +qow +lqt kan -quv -rZB -rlZ -wxc +fbM +gXL +qow +rSD vMo vMo vMo vMo vMo vMo -bGe -bHL -smn +hIy +xyB +sxx bJt xOL -gGI -eeu -nbB -ksA -gAz -fiq -uaa -uaa -uaa -uaa -uaa -fiq -oed -bxX -yhQ -ajZ +uOV +mhX +bkn +eCH +idF +sXT +brN +brN +brN +brN +brN +sXT +osi +yfx +oJO +woL bdH aaa aaa @@ -111919,67 +99218,67 @@ aaa aaa aaa aaa -lYA +acf aet avx ahN uli uli uli -bWf +vpf aet lwC aTT acl xxi qJj -adF +bsu aef aef -uZZ -bYe -amO -avj +rvG +tpQ +rdO +vTl vOy -awQ -oLU -thN -vDa +iIV +jgo +ubZ +oxw vOy vOy -qfy -inL -oiY -ueJ -ueJ -oDi -trF -lJv -edv -kXw -pxo +oAF +pEe +mGH +dNQ +dNQ +atW +wOW +pol +kTR +fQh +mhz asn -ayT -akU -avj -qVM -iBt -iBt -iBt -iBt -iBt -awE -cvj -iiz -qVM -oLw -qVM -qVM -qVM -xeG -qVM -qVM -czu +dpr +mjs +vTl +tpE +syQ +syQ +syQ +syQ +syQ +tpE +cOx +imO +tpE +tGr +gcO +gcO +gcO +uek +gcO +gcO +nMq aaa aaa aaa @@ -112019,69 +99318,69 @@ aaa aaa aaa bdH -aad -aKW -bhC -bPT -hhw -jKh -pbb -rDv -bmW -jWu -aWD -aqo +bHS +lyZ +jcA +cNx +qfO +eYd +qLf +tlt +nHX +sUI +eaQ +sHh aRy aRy aRy aRy -nIj +mNd aQF -aWM -aZi -aLG +cZH +kAw +qhh xMs -aSO -feY -xEz -bgn +sIN +ixV +uNJ +ojQ bgw -eXb -rlZ -rlZ -thP -beW -bgP -rlZ -rlZ -hAU +bOp +qow +qow +dHU +kYz +eoy +qow +qow +sqJ xqy -bmk -wZE -iGn -byd +bwY +koa +owA +ehM vMo -buH -bHL -buH +fNI +xyB +fNI lhB -pOY -bDs -jge -bDs -bDs -hLC -fiq -uaa -uaa -uaa -uaa -uaa -fiq -oed -oDf -yhQ -ajZ +fZa +gGu +ims +gGu +gGu +jpj +sXT +brN +brN +brN +brN +brN +sXT +osi +xKL +oJO +woL bdH aaa aaa @@ -112122,73 +99421,73 @@ aaa aaa aaa aaa -lYA +acf aet -avV +cyD uli uli uli mov -bWq +eVd aet lhX aXc acl jlN qqn -adF +bsu bls aeH -agq -ahM -kSJ -avj +lWj +dgo +qoo +vTl vOy -hng -dnC -hPN -vCk -qEn -qam -riE -gAS -lMv -dVu -eSo -qmD -mqb -lJv -aCt -kXw -pxo +ler +cEX +nKd +uVm +qfB +eMt +uyy +xhA +dWn +djs +nVp +qjG +xZV +pol +iCE +fQh +mhz asn -ayT -aii -avm -qVM -iBt -iBt -iBt -iBt -iBt -awE -aGt -ijn -qVM -vGk -vGk -gYS -weU -csz -eGz -csz -czu +dpr +utO +rfV +tpE +syQ +syQ +syQ +syQ +syQ +tpE +xUQ +nMa +tpE +bmp +bmp +uRl +bWB +xNF +xDw +xNF +nMq aaa -aac -aaf -aaf -aaf -ajY +eQJ +oVj +oVj +oVj +fPT aaa aaa aaa @@ -112222,69 +99521,69 @@ aaa aaa aaa bdH -aad -aKW -aSm -xCm -hhw -mTi -lJK -kYV -hhn -aQp -aQG -ulZ +bHS +lyZ +jcA +ibh +qfO +mSE +nuZ +fGW +dnW +nfo +ibQ +jIZ aRA aRA bQU bQU -bjD -dqE -aem -mUa -uLv +kNc +sgz +iAV +jsT +qoh xMs -lOH -dUS -bcP -dSX +mIn +snD +dSf +wsm bgw -fbw -rlZ -rlZ -pqD -pqD -pqD -rlZ -rlZ -rFH +lnl +qow +qow +kKr +kKr +kKr +qow +qow +shF xqy -aGg -bof -vit -dxu +iTu +oJW +pSC +kuU vMo -buH -bHL -buH +fNI +xyB +fNI lhB -nbB -bDs -bIJ -bDs -bDs -qJS -fiq -uaa -uaa -uaa -uaa -uaa -fiq -oed -oed -yhQ -ajZ +xnX +gGu +lic +gGu +gGu +jeN +sXT +brN +brN +brN +brN +brN +sXT +osi +osi +oJO +woL aaa avo avo @@ -112325,75 +99624,75 @@ aaa aaa aaa aaa -ahx -aez +acv +ezj uli aIx uli uli mov -bWq +eVd aet lhX eYM uuR dHu qqn -adF +bsu aef -kqN +uBV agA -ayT -ajt -avm +dpr +qVJ +rfV vOy -xyt -wiW -tOr -dBj -wei -kBP -kBP -jsx -tjn -aCC -kXw -pQP -qAT +pAi +iVf +fLt +dYL +rPj +qba +qba +gtC +kKj +owf +fQh +xpU +lIq vOy vOy -mFq -vqW +oxL +nYi sqf -ybf -aii -avj -qVM -awE -awE -awE -nec -awE -awE -xJC -awE -qVM -qVM -qVM -qVM -qVM -qVM -vGk -csz -czu +pNo +utO +vTl +tpE +tpE +tpE +tpE +cia +tpE +tpE +qVY +tpE +tpE +gcO +gcO +gcO +gcO +gcO +bmp +xNF +nMq aaa -aad +bHS aag aag aag aag -aaf -ajY +oVj +fPT aaa aaa aaa @@ -112425,58 +99724,58 @@ aaa aaa aaa bdH -aad -aKW -aSm -xnY -hhw +bHS +lyZ +jcA +cQf +qfO aQF aQF -aPH +imF xIQ -hvQ -aWD +vYV +eaQ rrK aRy feI brb cpp -buv -aWF -aLG -aZi -aLG +pug +uti +qhh +kAw +qhh xMs -akE -qGF -bcV -bgr -bgy -fxZ -rlZ -aZK -vYt -fDj -eBZ -hBc -rlZ -pKZ -bmd -bnR -ggz -dka -bye +vrs +oOK +lGO +kdH +cCd +uzs +qow +xEV +pbo +xOF +xia +skf +qow +cWa +cCN +qhX +fBV +wmt +bKo vMo -buH -bHL -buH +fNI +xyB +fNI lhB -aQW -bDs -bNw -wIG -wLK -hAz +qoW +gGu +mNC +qSv +jCY +oYO bJt bJt bJt @@ -112484,10 +99783,10 @@ bJt bJt bJt bJt -oed -eHf -yhQ -ajZ +osi +hiJ +oJO +woL avo avo avs @@ -112528,14 +99827,14 @@ aaa aaa aaa aaa -ahx -aez +acv +ezj uli uli uli uli uli -aiH +jcv aet lhX acl @@ -112544,59 +99843,59 @@ acl qqn aef aef -tRD +vmo abE -aTL -ajt -avj +iHx +qVJ +vTl vOy -iYf +igY bIM -wPz -iUo -vOy -xqp -lzA -vkp -tjn -aCC -kXw -vtm -emK -fGu -hPe -sdu -btC -vLj -ahM -kSJ -avj -cGr -awE -fUn -wQv -rne -guC -ecQ -whZ -awE +tkf +wfT +qlA +oVk +cJo +lvo +kKj +owf +fQh +xen +rWC +qlc +kRE +bsl +pZI +oUe +dgo +qoo +vTl +leE +tpE +oRI +jQT +xpX +mhN +sUM +oBH +tpE lEf gel gel gel fkX -qVM -vGk -ofs -czu -aaf +gcO +bmp +qdJ +nMq +oVj aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -112628,74 +99927,74 @@ bdH bdH bdH bdH -aad -aKW -uDB -aLf -hhw -weR -aPE -izk +bHS +lyZ +iFI +cPE +qfO +cbl +nUw +gDy xIQ -vse +dog aQF -blp +mAR aRy -aTn -aTY -iCF -gJP +mhr +mQh +chZ +vUX aQF -qcl -aZi -aLG +xSK +kAw +qhh xMs -aYR -dUS -mqU -bgs +irP +snD +jPF +rNK bgw -icw -qni -klH -tgV -tgV -tgV -klH -qni -uah +gua +dYb +cEd +rvr +rvr +rvr +cEd +dYb +dIN xqy -jhn -jZd -vit -bzo +rbP +fuW +pSC +qbP vMo -buH -bHL -buH +fNI +xyB +fNI lhB -pxD -bDs -gSk -bDs -bDs -bDs -xjb -fbo -duo -iIl -bDs -ujV +kfm +gGu +rsQ +gGu +gGu +gGu +ebE +eBi +cBT +bLn +gGu +uHT bJt -oed -oed -yhQ -ajZ +osi +osi +oJO +woL avo avs avs -hAG -vtr +jOX +sEh avs avs avo @@ -112731,67 +100030,67 @@ aaa aaa aaa aaa -lYA +acf ahy avZ -ipK -ipK -ipK +rFe +rFe +rFe uli -bWf +vpf aet lhX acl acl acl qqn -adF +bsu aef afs agA -ayT -akU -avj +dpr +mjs +vTl vOy -mTp -wiW -wPz -jeq -rQy -wWR -ycj -vkp -cfT -hec -gNp -hVf -dVu -rmc -lON -dVu -oDR -vOP -bYe -bnD -aWH -aYn -bVB -bXv -bXv -bph -rEm -rne -bYj -xne +xpu +iVf +tkf +mId +iUg +eej +dlu +lvo +gmk +kBG +mIh +rkU +djs +oPO +sey +djs +lwS +pRG +tpQ +aSF +lKY +qts +sEb +dRZ +dRZ +kNr +pNL +xpX +mkm +fKm rfb -cXF -rLU -dKp +cta +rIT +mDP cHu -qVM -vGk -csz -czu +gcO +bmp +xNF +nMq aag aag aag @@ -112799,7 +100098,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -112831,75 +100130,75 @@ bdH bdH bdH bdH -aad -aKW -aSm -gfS -hhw -lHc -pbb -izk -hds +bHS +lyZ +jcA +jDa +qfO +dwn +qLf +gDy +dag aQF aQF -haQ +iRh aRy -boY -qZH -bsN -buB +lks +cQK +oNi +kuT aWD -aLG -aZi -aLG +qhh +kAw +qhh xMs -bXw -eiw -bda -bgt +vJx +uBy +iON +xvx bgw -jxi -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -nrN +mJw +qow +qow +qow +qow +qow +qow +qow +kuK xqy -nYD -boh -qDP -wbP +eBq +gLB +naw +vcI vMo -buH -bHL -vMx +fNI +xyB +eHZ bJt -qom -bDs -rAx -jFE -fuS -jFE -jFE -jFE -jFE -idx -hAz -fhQ +sLd +gGu +ttH +esh +cBy +esh +esh +esh +esh +oLj +oYO +hSV bJt -vhI -oed +uQl +osi avo avo avo avs -rKn -awa -awa -umm +quR +goz +goz +mbK avs avo aaa @@ -112934,67 +100233,67 @@ aaa aaa aaa aaa -lYA +acf aet aIx -ipK +rFe ceC -eRR +lfn uli -bWq +eVd aet loV acK acm acK esK -adD -sOw +kTh +uFV afs agA -ayT -akU -avj +dpr +mjs +vTl vOy -axn +tqI dRh -ydE -bST +mLa +isn rQy vOy -vdO -vkp -aoM -kBo -kBP -naR +vuT +lvo +eeA +iVU +gbb +sAM vOy -hrn +iPX vOy -aRd -aIo +jok +pYK vOy -qLK -akU -avj -kpl -awE -xgr -bYj -btz -bsc -iaj -bYj -xne +jwr +mjs +vTl +hUu +tpE +bAI +mkm +iAn +mrf +vvc +mkm +fKm rLv -bHk +mzI vZw -bHk +mzI cHu -qVM -csz -qVM -czu +gcO +xNF +gcO +nMq aag aag aag @@ -113002,7 +100301,7 @@ aag aag aag aag -ajZ +woL bdH bdH aaa @@ -113034,75 +100333,75 @@ bdH bdH bdH bdH -aad -aKW -aLf -aSm -tps -aNs -aNs -hyw +bHS +lyZ +cPE +jcA +ohc +kXz +kXz +kaV mzz aQF aQF -blj +hbM aRy -bpa -fHF -bml -buB +nxG +uIk +mTz +kuT aWD -beB -byI -beB +pdm +xwi +pdm xMs xMs xMs xMs xMs xMs -jGn -rlZ -ggJ -oXY -bZn -kFv -dut -rlZ -sPJ +kUA +qow +vYb +bhV +alz +trC +rJl +qow +cwY vMo vMo vMo vMo vMo vMo -bJz -bHT -uFP +hYB +fZK +rtW bJt bJt -nFI -qdk -vzP +lgc +uTb +mlB bJt -hjB +ogO bJt -dJH -bDs -gSk -bDs -pdt +spC +gGu +rsQ +gGu +iIN bJt -kTq -oed -lpy -avC -avC -wEg -axa -axa -dSZ -oMs +xwe +osi +qLT +nZh +nZh +aTJ +aGf +aGf +dTu +efm avs avo bdH @@ -113137,67 +100436,67 @@ aaa aaa aaa aaa -lYA +acf aet uli -ipK +rFe awe -fwD +hla uli -oGy +ucS aet lhX acl acl acl qqn -adF +bsu aef afs agA -ayT -akU -avj +dpr +mjs +vTl vOy -aAr -pGK -tpa -tpa -tpa +cql +cpQ +lbj +lbj +lbj vOy -dHV -vkp -jUM -lou -eBO -pRn +ojw +lvo +qqL +mCB +xdY +gNo vOy -ayZ -aCD -hFC -qmy +oSz +fPX +grF +qlG vOy -ayT -akU -avj -awE -awE -bqy -bYj -eUR -gEI -bLW -bYj -xne -cNH +dpr +mjs +vTl +tpE +tpE +aru +mkm +kLq +myV +oVe +mkm +fKm +ebf vzp vZw -erd +heZ cHu -qVM -hoX -qVM -czu +gcO +dsz +gcO +nMq aag aag aag @@ -113205,7 +100504,7 @@ aag aag aag aag -ajZ +woL bdH bdH aaa @@ -113237,75 +100536,75 @@ bdH bdH bdH bdH -aad -aKW -eWY -aSm -hhw +bHS +lyZ +vld +ikl +qfO vMr vMr -izk -uhl +gDy +pgo aQF aQF -blf +vgI aRy -kkt -htL -aUL -buB +bSS +xtu +itu +kuT aWD -aLG -aZi -aLG -nyw +qhh +kAw +qhh +piF iXU hDw kzb -pha +bOH kan kan -mwM -wmQ +jSN +tli kan kan kan -mwM -eRy +jSN +vtw kan kan -rIO +soR vEH uFH tQd -nyw -buH -bHL -buH +piF +fNI +xyB +fNI yfS -sEi -dck -quV -doJ -loY -tOW -lkd +eMR +dUr +eQH +fQq +uKq +paK +xbG dYR -bDs -gSk -reL +gGu +rsQ +iVK wiI bJt -nnr -eep +sKs +fWY avo avo avo avs -awa -awa -awa -qUp +goz +goz +goz +rba avs avo bdH @@ -113340,14 +100639,14 @@ aaa aaa aaa aaa -lYA +acf aet avx -ipK -ipK -ipK +rFe +rFe +rFe uli -bWq +eVd aet lhX acl @@ -113356,59 +100655,59 @@ acl qqn aef aef -pHG +sNq abE -aTL -aii -avj +iHx +utO +vTl vOy -aID +rUF gLc -mKx -iit -kZV +mmu +rsV +gtN vOy vOy -oIr +lmi vOy -wdo +hOt vOy vOy vOy -qqQ -aoM -aoM -vgB +ptg +eeA +eeA +xvZ kgs -ayT -aii -avj -aYp -aWS -bYj -bYj -btz -rne -rne -bYj -xne +dpr +utO +vTl +lQU +sPl +mkm +mkm +iAn +xpX +xpX +mkm +fKm rfb -bHk +mzI vZw -bHk +mzI cHu -qVM -csz -qVM -czu -aah +gcO +xNF +gcO +nMq +hWR aag aag aag aag aag aag -ajZ +woL bdH bdH aaa @@ -113440,74 +100739,74 @@ bdH bdH bdH bdH -aad -aKW -wyO -lpX -hhw -mTi -lJK -izk +bHS +lyZ +cyb +udI +qfO +mSE +nuZ +gDy xIQ -vyp +iJb aQF -blw +nNa aRy -aTr -aTZ -aUM -gJP +dNs +cpE +iiA +vUX aQF -lRU -aYO -aLG -nyw +mBz +xQf +qhh +piF beH dcd beH -bqZ +bdW beH neS beH beH tJR -rRU +nVk oEw beH beH neS beH -bqZ +bdW beH beH beH -nyw -buH -bHL -buH +piF +fNI +xyB +fNI yfS -hgL -swt -wSX -wpI -ktX -smi -lkd +uXS +neI +nfQ +hyG +pAZ +hbQ +xbG tsa -bDs -gSk -bDs +gGu +rsQ +gGu vwI bJt -koz -oDf -yhQ -ajZ +waF +xKL +oJO +woL avo avs avs -loK -wpg +pyt +hfl avs avs avo @@ -113543,75 +100842,75 @@ aaa bdH aaa aaa -ahx -aez +acv +ezj uli uli uli uli uli -oWz +hlc aet lhX gsZ uxO bTt qqn -adF +bsu aef -aGS +qrO agA -ayT -aii -avj +dpr +utO +vTl vOy -aMd -pGK -pRX -mHD -pRX +eJf +cpQ +emY +eLS +emY vOy jFf -vkp -jrM -mWs +lvo +vDs +fOX lmw vOy -dyb -tsM -prx -fpT -eVT +lRa +caa +jxE +vza +nRh kgs -ayT -aii -avj -aYp -aZJ -baD -baD -tsH -bqw -bqw -hiB -xne +dpr +utO +vTl +lQU +jmT +cQq +cQq +hgo +wNL +wNL +jEY +fKm rLv -pRy -wwW +mqy +eLE mRW cHu -qVM -vGk -csz -czu +gcO +bmp +xNF +nMq aaa -aad +bHS aag aag aag aag -aah -afm +hWR +rNc bdH bdH aaa @@ -113643,69 +100942,69 @@ bdH bdH bdH bdH -aad -aKW -aVt -eZz -hhw +bHS +lyZ +xUa +pua +qfO aQF aQF -sPc +xKp xIQ -pbb -aWD +qLf +eaQ olM aRy aRy eXr iFH -buv -aWE -aLG -avX -aem -aum +pug +joJ +qhh +vZa +iAV +qSw emr emr emr -uNB +nvl quq duv beH beH beH -bqZ +bdW beH beH beH fcf beH -pmH +xnK rCO rCO rCO -eVv -bFu -lAO -buH -ykj -rlQ -ven -agH -wxU -tvM -smi -lkd +txZ +gZV +oJj +fNI +uwA +bYs +rNZ +mhc +xjN +wPT +hbQ +xbG rBj -bDs -gSk -bDs -oMd +gGu +rsQ +gGu +trT bJt -oDf -uqH -yhQ -ajZ +xKL +fKL +oJO +woL avo avo avs @@ -113746,73 +101045,73 @@ aaa bdH bdH aaa -ahx -aez +acv +ezj aIB aKg uli uli mov -bWq +eVd aet lhX kNO acl jlN qqn -adF +bsu aef nIS -uZZ -bYe -aii -avj +rvG +tpQ +utO +vTl vOy -aMg +mFQ aSo -pRX -mHD -tzL +emY +eLS +fIq vOy vqZ -vkp -rDr -usy +lvo +qgC +kIe nDo vOy -glB -vkp -ger -aoM -aFf +pps +lvo +kwD +eeA +lsn mmN -ayT -aii -avj -aYp -sQL -dpV -bXW -bqo -bse -bvc -djL -awE +dpr +utO +vTl +lQU +toq +ums +kcI +too +laH +uLt +eke +tpE qWR wJH wJH wJH sNR -qVM -vGk -csz -czu +gcO +bmp +xNF +nMq aaa -aae -aah -aah -aah -afm +fpk +hWR +hWR +hWR +rNc aaa aaa bdH @@ -113846,69 +101145,69 @@ bdH bdH bdH bdH -aad -aKW -cmq -aSm -hhw -weR -aPE -izk -uhP -aQq -aQH -upO +bHS +lyZ +rAK +jcA +qfO +cbl +nUw +gDy +iIT +von +hHE +jLa pOi pOi pOi pOi -nVF -aWF -aLG -aYO -aLG -nyw +hry +uti +qhh +xQf +qhh +piF eGZ ieX pfM -bqZ +bdW rEf rWT emr emr usX -vKe +mkB rCO rCO rCO vVd eBg -wRT +jMp bhq dcd eTd -nyw -buH -vdW -qLp -kKk -rDt -gpI -xwp -fLg -tvM -dfC +piF +fNI +ruo +aTe +eHm +doy +flO +nzX +qFp +wPT +lMS cEi bJt -oKb -gSk -bDs -pdt +hrl +rsQ +gGu +aFC bJt -sIx -bxX -yhQ -ajZ +vMc +yfx +oJO +woL aaa avo avo @@ -113949,67 +101248,67 @@ aaa bdH aaa aaa -lYA +acf aet aJJ aIB uli uli mov -bWq +eVd aet lwC tIK acl sNO qJj -adF +bsu aef nIS -eWF -bYe -aii -avj +mck +tpQ +utO +vTl vOy -aQZ -bkT -pRX -mHD -pRX +beC +aMp +emY +eLS +emY vOy foP -sZy -vEr -irU +ooD +kpE +uFg bVe vOy -ggl -jjS -qMP -kBP -aSl +oZm +tpu +lxr +qba +pPw vOy -aTL -aii -avm -awE -awE -awE -awE -mZA -awE -awE -awE -awE -awE -qVM -qVM -qVM -qVM -qVM -vGk -ofs -czu +iHx +utO +rfV +tpE +tpE +tpE +tpE +wsG +tpE +tpE +tpE +tpE +tpE +gcO +gcO +gcO +gcO +gcO +bmp +qdJ +nMq bdH bdH bdH @@ -114049,27 +101348,27 @@ bdH bdH bdH bdH -aad -aKW -xxe -aLf -hhw -aQI -aQI -uFd -mUq -qwt -aWD -bng -bmX -bmX -tou -tou -jhy +bHS +lyZ +slJ +cPE +qfO +okG +okG +pzE +ePp +jRN +eaQ +rHC +skk +skk +cTA +cTA +hVi aQF -beB -aYT -jfD +pdm +fgC +jGx bdd bdd bdd @@ -114080,7 +101379,7 @@ fUA beH spF uBN -bqZ +bdW jMr eGZ beH @@ -114091,27 +101390,27 @@ bdd bdd bdd bdd -fZx -bHT -bJz +crR +fZK +hYB yfS -ape -ven -njJ -kiM -tvM -smi -lkd +nbP +rNZ +nQS +xvm +wPT +hbQ +xbG kvU -idX -cnu -bDs +dKA +vbu +gGu knK bJt -oed -vgQ -yhQ -ajZ +osi +jit +oJO +woL bdH bdH bdH @@ -114152,67 +101451,67 @@ aaa bdH aaa aaa -lYA +acf aet avx ahN aIB aKg uli -bWf +vpf aet abK acL acn cRK dXV -adF +bsu aef -kqN +uBV agA -ayT -akU -avj +dpr +mjs +vTl vOy -dVd +vNp lea -hKl -lDN -kZV +llu +ktS +gtN vOy vOy -eNI -eNI -eNI +gPJ +gPJ +gPJ vOy vOy -hRa -vti -vti -vti -aEZ +hDs +dlu +dlu +dlu +guw vOy -ayT -akU -avj -aCv -baa -fqe -bXx -bqo -awE -tnm -dhQ -qyz -awE -vGk -vGk -gYS -vzl -csz -vGk -csz -czu +dpr +mjs +vTl +kEc +hOa +wnP +uGi +too +tpE +qLm +ssj +icT +tpE +bmp +bmp +uRl +rYx +xNF +bmp +xNF +nMq bdH bdH bdH @@ -114252,69 +101551,69 @@ bdH bdH bdH bdH -aad -aKW -dgN -aLf -hhw -aQI -aQI -aQI -hcZ -pQY -aWD -bll -bll -bpo -dVO -bsR -aQr +bHS +lyZ +hbH +cPE +qfO +okG +okG +qLf +aNr +cUg +eaQ +vfW +vfW +ptm +hpm +arD +sLt aQF -aLG -aYO -aLG -tda -ngI -dkq -lRZ -acc +qhh +xQf +qhh +hOH +sHn +rvS +iwn +ocj beH beH dwl bdd bdd -gac +pKE bdd bdd aMt beH beH -acc -qby -btY -bAJ -huU -buH -bHL -buH +ocj +iuj +jFH +kzX +ttD +fNI +xyB +fNI yfS -ape -ven -bWT -fKV -tvM -smi -lkd +nbP +rNZ +efN +sOf +wPT +hbQ +xbG qTY -bDs -gSk -ljG +gGu +rsQ +ybk tSp bJt -oed -sHg -yhQ -ajZ +osi +ulT +oJO +woL bdH bdH bdH @@ -114355,67 +101654,67 @@ aaa bdH aaa aaa -ahx -aiH +acv +jcv uli bLO bLO bLO bLO -aiH -qga -eAU -eAU -eAU -eAU -eAU -fcE +jcv +mIb +dke +dke +dke +dke +dke +tmq aef -uNN +dvE abE -giB -akU -avj +wtO +mjs +vTl vOy vOy vOy -mSK -mSK -mSK +exa +exa +exa vOy vOy -ylc +qDi wKP -ylc +fnB vOy vOy -rhO -pgM -nPE -oqZ -uaI +xOR +gov +gKt +nRo +tbm vOy -atV -akU -avj -aCv -bac -dWz -bYj -bqo -aRD -aGt -byp -aGt -awE -vGk -qVM -qVM -qVM -qVM -csz -qVM -czu +vzh +mjs +vTl +kEc +mmY +rem +mkm +too +vSa +xUQ +wQs +xUQ +tpE +bmp +gcO +gcO +gcO +gcO +xNF +gcO +nMq bdH bdH bdH @@ -114455,69 +101754,69 @@ bdH bdH bdH bdH -aad -aKW -bhC -aLf -hhw -mTi -lJK -mTi -lJK -kmp +bHS +lyZ +jcA +cPE +qfO +mSE +nuZ +mSE +nuZ +uSM aQF -bln -xEX +ufI +mQr aQF aQF aQF aQF aQF -ePA -akO -bwd +gsR +pBc +hkQ bdg -vyg -bni +lUt +lzz cwX vuA -nVi -nVi -nVi +vaK +vaK +vaK vuA -tab -udi -wCs +nug +eUq +ydk vuA -nVi -nVi -nVi +vaK +vaK +vaK vuA snb -xbd -bAU +lya +ncK bdg -bCi -bCo -ivB +ncY +qpm +orI bJt -wbC -lHu -oiL -qBM -wXI -nUd -lkd -oMd -bDs -gSk -oDE +hZI +bzl +jAy +sWt +jbo +wOb +xbG +mBW +gGu +rsQ +mzN bJt bJt -oed -oDf -yhQ -ajZ +osi +xKL +oJO +woL bdH bdH bdH @@ -114558,38 +101857,38 @@ aaa aaa aaa aaa -ahx -aiH -aiH -bWd -awi -bWd -mOb -aiH +acv +jcv +jcv +rFA +pQw +rFA +bjq +jcv aet -aBD -acU -uPr -sTd -lfH -aeI -eva -xzf +eBE +tLe +rlt +inx +gRT +hnh +kNj +pBj abE -aTL -aii -ali -amD -cwJ +iHx +utO +coC +uRd +dlM vOy vOy vOy vOy vOy vOy -eNI -eNI -eNI +gPJ +gPJ +gPJ vOy vOy vOy @@ -114598,27 +101897,27 @@ vOy vOy vOy vOy -vIN -aii -avj -aCv -ilv -rne -rne -gEK -eHj -bvl -byq -maq -awE -vGk -qVM -riM -rGl -qVM -hoX -qVM -czu +vtj +utO +vTl +kEc +pcN +xpX +xpX +jRe +tRe +kkQ +iUO +dZO +tpE +bmp +gcO +mUR +oiq +gcO +dsz +gcO +nMq bdH bdH bdH @@ -114658,11 +101957,11 @@ bdH bdH bdH bdH -aad -aKW -efU -aLf -hhw +bHS +lyZ +cjD +cPE +qfO aQF aQF aQF @@ -114672,55 +101971,55 @@ aQF aQF aQF aQF -ktB -gCd -eJg -hhw -aeb -alx -aeb +rBn +rrk +kvV +qfO +ghM +mmU +ghM bdg -apz -dyd +uBK +dVU fyD bdd -dhR -dhR -dhR +fry +fry +fry vuA -eYu -qaW -wbN +pmG +eQa +oZr vuA -lVS -lVS -lVS +sDj +sDj +sDj bdd vPw -bvr -bBQ +rIu +njW bdg -bCj -bDx -bCj +etq +iWv +etq rde -vjC +xmh iMm mJi iMm iMm -mkc +gpM bJt -xaN -bDs -gSk -luS +bhv +gGu +rsQ +rdq bJt -iGg -oed -oDf -yhQ -ajZ +hEA +osi +xKL +oJO +woL bdH bdH bdH @@ -114761,14 +102060,14 @@ aaa aaa aaa aaa -lYA -aar -tiM -aar -aar +avt +frX +xDU +frX +frX aNi aNi -bWr +klZ aNi aNi aNi @@ -114779,20 +102078,20 @@ aNi aNi aNi aNi -atV -aii -abx -abx -avj +vzh +utO +uow +uow +vTl vOy elR xXh xXh xXh dMK -aCR -aAT -aNY +hxz +eTt +ttg elR xXh xXh @@ -114801,27 +102100,27 @@ dMK vOy vOy vOy -ayT -aii -avj -awE -ceo -rne -rne -wft -awE -awE -awE -awE -awE -vGk -xCX -vGk -hoX -qVM -sCC -qVM -czu +dpr +utO +vTl +tpE +hqu +xpX +xpX +bub +tpE +tpE +tpE +tpE +tpE +bmp +iPh +bmp +dsz +gcO +fQR +gcO +nMq aaa aaa aaa @@ -114861,69 +102160,69 @@ bdH bdH aaa bdH -aad -aKW -aSm -aSm -hhw -beG -dIR -yky -bfb -baY -hhw -aLF -bPV -yaG -bPU -aSm -bPS -hhw -bwd -auv -bwd +bHS +lyZ +jcA +jcA +qfO +tMP +gqY +pre +oWo +eiC +qfO +lOe +vsW +oTy +ntP +jcA +cAA +qfO +pzn +mqx +pzn bdg -auj -bbf -ber +tkc +oac +djZ vuA -nVi -nVi -nVi +vaK +vaK +vaK vuA -jkz -ngI -xGJ +mEW +sHn +oza vuA -nVi -nVi -nVi +vaK +vaK +vaK vuA -bpv -tMW -bBY +pvs +rpl +nkm bCh -bCi -bCo -bCi -ejw -xML +xTw +mYm +xTw +yfS +njq iMm jSy wGb iMm -rjn +nLx bJt -wUX -bDs -gSk -vSp -lHG -qgH -oDf -oDf -yhQ -ajZ +tPS +gGu +rsQ +fOY +mNq +uvj +xKL +xKL +oJO +woL bdH bdH bdH @@ -114956,83 +102255,83 @@ aaa aaa bdH bdH -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -lYA -aiS -aao -aao -acD +eQJ +oVj +oVj +oVj +oVj +oVj +oVj +oVj +avt +ocY +qua +qua +vFZ aNi cYT aNm cYT lEF beZ -vif -bhx +qJu +etm aOR -bhx -vif +etm +qJu aOR bsw -ayT -xGk -all -amK -avj +dpr +cVF +odR +qYA +vTl vOy wWz -vHO -ruc -uvP +hIl +kMG +tJF wTM -dNq -vVs -aFa +lCA +rAO +wrt wWz -liY -ruc -xOY +lZc +kMG +cvL wTM vOy -nzA -amD -ajr -aii -avm -awE -hfm -rne -rne -fAo -awE -knT -wQv -bBi -awE -ieH -qVM -tUI -mcV -qVM -vGk -csz -czu -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY +jsS +uRd +fAx +utO +rfV +tpE +vbp +xpX +xpX +oNv +tpE +sJM +jQT +mum +tpE +nNh +gcO +fiy +tbB +gcO +bmp +xNF +nMq +oVj +oVj +oVj +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -115057,83 +102356,83 @@ bdH bdH bdH bdH -aac -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aSm -aLf -hhw -beI -bTQ -tBP -jfm -lYu -maw -fAS -jfm -lzn -eDz -jfm -jfm -bUP -aLG -aYO -aLG -tda -mng -wTm -wCI -acc +eQJ +lyZ +lyZ +lyZ +lyZ +lyZ +lyZ +lyZ +lyZ +jcA +iUj +qfO +haC +kaC +xDR +gBN +wVO +qvY +mpb +gBN +qZd +grp +gBN +gBN +qEO +ewU +rsD +dAG +hOH +wtI +vci +wuk +ocj beH beH beH -acc -mng -wTm -wCI -acc +ocj +wtI +vci +wuk +ocj beH beH beH -acc -mng -wTm -wCI -tda -buH -bHL -buH +ocj +wtI +vci +wuk +hOH +vCY +aKj +vCY bJt -swE -wpI -ocm -wpI -wnL -kHd +hVc +hyG +sVI +hyG +uqm +rHI bJt hSw -qxE +kPW rui -vSp +fOY bJt -wuH -oed -uqH -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -ajY +cUo +osi +fKL +oJO +oJO +oJO +oJO +oJO +oJO +oJO +oJO +fPT aaa aaa aaa @@ -115159,7 +102458,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -115167,67 +102466,67 @@ aag aag aag aag -lYA -aiT -aap -aao -aap +avt +vJB +lAb +qua +lAb aNi aZe aNm aNm lRP beE -bhx -bhx +etm +etm hMi -aco -aco +jHD +jHD dYu bsw -mQH -hee -aEX -aii -avm +fGs +gTY +tVa +utO +rfV vOy wWz -anw -wLy +kPn +uwt jlG -aqP -kCE -wLN -npt -xuE +pSr +oWW +vfY +qRh +wgA hqh -wLy -eiE +uwt +dpC wTM vOy -ayT -akT -amC -bKe -avj -aCv -eYW -rne -rne -wft -emO -bYj -bYj -bYj -awE -csz -qVM -qVM -qVM -qVM -oLw -csz -czu +dpr +nNf +hea +esE +vTl +kEc +rdU +xpX +xpX +bub +gPg +mkm +mkm +mkm +tpE +xNF +gcO +gcO +gcO +gcO +tGr +xNF +nMq aag aag aag @@ -115235,7 +102534,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -115260,22 +102559,22 @@ bdH bdH bdH bdH -aKW -aKW -bPU -lLV -aLf -aLf -aLf -jiX -aSm -aSm -aLf -ahU -aLf -fza -kat -uJB +lyZ +lyZ +ntP +sKk +cPE +cPE +cPE +jcA +jcA +jcA +cPE +iEY +cPE +vvk +pEO +hDg bdd bdd bdd @@ -115285,9 +102584,9 @@ bdd bdd bdd bdd -teH -mUa -xNB +ikq +cIN +xQw bdd vuA vuA @@ -115298,7 +102597,7 @@ fUA qYZ bdd vuA -fnx +urL vuA bdd qCc @@ -115309,9 +102608,9 @@ vuA vuA vuA bdd -bSj -bHL -bIR +pHY +aKj +ucI bdd bdd bdd @@ -115322,21 +102621,21 @@ bdd bdd bdd bJt -cDC -vuF +ldZ +yhA bJt bJt -oed -oDf -oDf -oDf -qNy -cLV -oDf -oDf -oDf -yhQ -yhQ +osi +xKL +xKL +xKL +xDS +hFl +xKL +xKL +xKL +oJO +oJO aaa aaa aaa @@ -115362,7 +102661,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -115370,67 +102669,67 @@ aag aag aag aag -lYA -aiU -aap -aap -aap +avt +vWO +lAb +lAb +lAb aNi aZr aNm aNm lTE beE -bhx -bhx +etm +etm aOR -bhx -bhx +etm +etm cCa aNi aNi aNi -ybf -ajt -avj +pNo +qVJ +vTl vOy wWz -ovG -gxP +wta +uWq aPJ wTM -apS -wse -aFa +yiD +mFc +wrt wWz -ual -gxP -aOe +taK +uWq +kWj wTM vOy -atU -akU -abg -abg -avj -aCv -aSP -rne -rne -wft -awE -hpf -pbl -igp -awE -hoX -qVM -oks -wdH -qVM -vGk -ofs -czu +ufT +mjs +mYe +mYe +vTl +kEc +rnt +xpX +xpX +bub +tpE +tdu +sHf +mvE +tpE +dsz +gcO +fxn +myM +gcO +bmp +qdJ +nMq aag aag aag @@ -115438,7 +102737,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -115463,83 +102762,83 @@ bdH bdH bdH bdH -aKW -bPV -aLf -xlD -aSm -aSm -aSm -aLf -aLf -aLf -aMs -hhw -pgt -ykF -bgH -uVb +lyZ +vsW +cPE +jcA +jEi +jcA +jcA +cPE +cPE +cPE +uyn +qfO +uRP +nRG +qhJ +ank bdd -pfe -wsP -izr -aSh -ccF -tGG -tGG +vUg +rVP +lGq +jjK +lfr +vlj +pvw bdg -aLG -awb -aLG +dAG +uwr +dAG bdg -bqZ -bqZ -bqZ -bCg +bdW +bdW +bdW +wBD beH fUA beH -bCg -bqZ +wBD +bdW beH -bqZ -bCg +bdW +wBD beH fUA beH -bCg -bqZ -bqZ -bqZ +wBD +bdW +bdW +bdW bdg -buH -hOR -buH +vCY +tLB +vCY bdg -sNI -wAU -diw -csG -sNI -wNT -wbe +ksU +iLa +cMY +vuP +ksU +khy +hPv bdd -qXo -feq -loY -aDU +hJR +dzC +uKq +ihQ bJt -oed -oDf -oed -oDf -mOU -oDf -oDf -oed -oed -oDf -yhQ +kwf +xKL +osi +xKL +mBZ +xKL +xKL +osi +osi +xKL +oJO aaa aaa aaa @@ -115565,7 +102864,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -115573,67 +102872,67 @@ aag aag aag aag -lYA -aiZ -aap -aao -aap +avt +olI +lAb +qua +lAb aNi -aZs +jCR aNm aNm mwL beE -bhx -bhx +etm +etm aOR -bhx -bhx +etm +etm qiy ahR ahR -egt -ait -ani -avj +jro +mze +gEZ +vTl vOy woh vgO aoJ alk xAe -avH -wse -cXC +hBa +mFc +sbk woh pLO qxm vgO xAe vOy -aOP -aii -aow -hee -ioX -aCv -aLQ -bYj -bYj -wft -awE -awE -awE -awE -awE -csz -iid -csz -hoX -qVM -noV -csz -czu +gcI +utO +uCI +gTY +uCT +kEc +bJW +mkm +mkm +bub +tpE +tpE +tpE +tpE +tpE +xNF +bel +xNF +dsz +gcO +rpu +xNF +nMq aag aag aag @@ -115641,7 +102940,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -115666,36 +102965,36 @@ bdH bdH bdH bdH -aKW -aSm -aLf +lyZ +jcA +cPE nsY nsY -pRT +vck nsY nsY nsY nsY nsY nsY -hhw -hhw -umv -hhw +qfO +qfO +jwW +qfO bdd -bqZ -kbV -tGG -tGG -tGG -tGG -tGG +wTC +lFz +mQY +ydq +mQY +fVi +pvw bdg -aLG -aYO -aLG +dAG +cIN +dAG bdg -bqZ +bdW beH beH beH @@ -115713,36 +103012,36 @@ beH beH beH beH -bqZ +bdW bdg -buH -bHL -buH +vCY +aKj +vCY bdg -sNI -sNI -sNI -sNI -dkH -cKX -bqZ +ksU +wLn +cuB +sdD +dkr +uoa +jsN bdd -tLc +mxJ rsM iMm -hTT +hLM nsY nsY -nik +ptf nsY nsY nsY nsY nsY nsY -upt -oDf -yhQ +oCl +xKL +oJO aaa aaa aaa @@ -115768,7 +103067,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -115776,67 +103075,67 @@ aag aag aag aag -lYA -adf -aao -aao -aao +avt +hCa +qua +qua +qua aNi jWr aNm jWr mBJ dtZ -bhx -bhx +etm +etm wWg -aco -aco +jHD +jHD hpY aOR aOR -bgK -bYe -ajt -avj +vXU +tpQ +qVJ +vTl vOy vOy vOy -uqd -amk -pYo -avF -coJ -iAz -cQo -aIP -aoK +hxq +rWr +mYg +cPG +hCO +uUM +qtq +gfT +jTU vOy vOy vOy -asp -aii -avj -qVM -qVM -awE -ntr -bYj -bYj -wft -bvU -dTc -lOl -mkx -awE -ieH -qVM -dYK -csz -iid -csz -qVM -czu +jYV +utO +vTl +gcO +gcO +tpE +nin +mkm +mkm +bub +mDG +eMe +fME +onu +tpE +nNh +gcO +mww +xNF +bel +xNF +gcO +nMq aag aag aag @@ -115844,7 +103143,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -115869,36 +103168,36 @@ aaa aaa aaa aaa -aKW -aLf -aSm +lyZ +cPE +jcA nsY xWT -kxd +dIZ jgk nsY rSG -wWJ +vuy oqS nsY -lhu -btk -aSm -eoM +qDs +iQD +jcA +nwH bdd -vTt -kbV -tGG -tGG -tGG -tGG -tGG +inT +bEC +bEC +jGk +mQY +tSH +pvw bdg -aLG -aYO -aLG +dAG +cIN +dAG bdg -bqZ +bdW beH aLJ bmr @@ -115916,36 +103215,36 @@ beH rJK gBo beH -bqZ +bdW bdg -buH -bHL -buH +vCY +aKj +vCY bdg -sNI -csG -sNI -sNI -gNi -wNT -cab +ksU +fkv +gii +wIs +jqI +oij +lQA bdd -hxZ +gmp rsM iMm -gzV +xqF nsY xWT -kxd +dIZ viu nsY rSG -qkP +nPP oqS nsY -oDf -oDf -yhQ +xKL +xKL +oJO aaa aaa aaa @@ -115971,7 +103270,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -115979,11 +103278,11 @@ aag aag aag aag -lYA -fZF -aWs -aar -tiM +avt +fee +rZX +frX +xDU aNi aNi aNi @@ -115999,47 +103298,47 @@ aOR aOR agr aNi -ayT -amO -avj +dpr +rdO +vTl vOy vOy vOy vOy -vKb -rzN -avG -jbK -aOd -sXd -aJn +dAN +haA +mwh +slE +vXH +xqi +vKA vOy vOy vOy vOy -meJ -amO -avj -qVM -csz -awE -qMe -bYj -bYj -dyF -awE -bzs -gbQ -eKK -awE -oLw -qVM -jmR -vGk -qVM -hoX -qVM -czu +icN +rdO +vTl +gcO +xNF +tpE +qkJ +eTK +mkm +wTc +tpE +pgy +gVN +dgh +tpE +tGr +gcO +kEK +bmp +gcO +dsz +gcO +nMq aag aag aag @@ -116047,7 +103346,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -116072,83 +103371,83 @@ aaa aaa aaa aaa -aKW -aLf -aSm +lyZ +cPE +jcA nsY xWT -kxd +dIZ viu nsY iIP -kxd +dIZ dDt nsY -xiz -aSm -aSm -kOf +lzv +jcA +jcA +hAQ bdd -bDQ -kbV -tGG -okB -tGG -crK -tGG -bdg -beB -aYT -beB -bCx -bqZ +gAm +ide +bEC +mRx +bEC +fWo +cIT +bdd +opq +wSD +opq +cbt +bdW beH bgO -boq -boq -boq -boq +gWn +gWn +gWn +gWn wNT -pVB +jOd hsg -iPv +dwS kbV -uMk -uMk -uMk -uMk +hSP +hSP +hSP +hSP bgO beH -bqZ -bCx -buH -bHL -buH -bdg -sNI -sNI -sNI -sNI -eCS -xqM -udV +bdW +cbt +vCY +aKj +vCY +bdd +qJc +jOl +oij +oij +doI +rNT +uAu bdd -hTf +sSN rsM oos -sBL +twk nsY xWT -rfT +nzS viu nsY dmR -kxd +dIZ dDt nsY -oDf -oed -yhQ +xKL +osi +oJO aaa aaa aaa @@ -116174,7 +103473,7 @@ aaa aaa bdH bdH -aad +bHS aag aag aag @@ -116182,15 +103481,15 @@ aag aag aag aag -lYA -aar -aar -aar -awJ -bzE -fZF -fZF -fZF +avt +frX +frX +frX +wNb +gTS +fee +fee +fee aNi aNi aNi @@ -116202,47 +103501,47 @@ aNi aNi aNi aNi -asp -amO -avj +jYV +rdO +vTl bPF -aqG +glA ata vOy -apR -aqS -mnW -nPf -vYz -awR -uoi +gCt +pFt +kMZ +rFn +fnT +wlm +sgJ vOy -aMh -biB -alH -aTL -akU -avj -qVM -csz -awE -awE -awE -hIL -awE -awE -awE -awE -awE -awE -vGk -qVM -qVM -qVM -qVM -csz -qVM -czu +tfq +nrV +bPF +iHx +mjs +vTl +gcO +xNF +tpE +tpE +tpE +jmj +tpE +tpE +tpE +tpE +tpE +tpE +bmp +gcO +gcO +gcO +gcO +xNF +gcO +nMq aag aag aag @@ -116250,7 +103549,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -116275,83 +103574,83 @@ aaa aaa aaa aaa -aKW -aLa -aSm +lyZ +cPE +jcA nsY -gsg -vHq -vvY +mNY +wjB +nVT nsY -pPV -bxC -jiU +sdp +iou +yeY nsY -glr -mhl -aSm -ylY +nxI +twQ +jcA +pvl bdd -bqZ -qgw -beH -qMR -vlR -dRT -qin -pmv -tBF -fSK -aLG -nyw -bqZ +dXg +dXg +dXg +iHh +udL +jRx +kOZ +fuj +cxb +pvk +dAG +piF +bdW beH bgO -boq -boq -boq -boq +gWn +gWn +gWn +gWn wNT -vBp +gCb kNl -nhi +dUc kbV -uMk -uMk -uMk -uMk +hSP +hSP +hSP +hSP tmB eBg -vKe -eVv -bFu -omW -bFu -hLS -eBg -eBg -eBg -eBg -fOk -epq -bqZ +mkB +txZ +aNE +sSo +aNE +mdl +mkB +mkB +uXJ +gKf +eQv +siQ +ybe bdd -hTf +sSN rKO wGb -gUf +vwS nsY -gwM -bxC -pJD +uks +iou +xIr nsY -iSm -bxC -jiU +fgJ +iou +yeY nsY -oDf -oed -yhQ +xKL +osi +oJO aaa aaa aaa @@ -116375,87 +103674,87 @@ aaa aaa aaa aaa -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -aao -aap -aap -aao -aap -aap -ahg -aao -aap -aap -aap -aap -aao -acD -aao -aap -aap -rfg -bYe -amO -bYe -cbg -aqG +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +qua +lAb +lAb +qua +lAb +lAb +jrj +qua +lAb +lAb +lAb +lAb +qua +vFZ +qua +lAb +lAb +wYJ +tpQ +rdO +tpQ +kcK +glA atb vOy -xSY -rzN -lCt -lto -paa -sXd -gVq +fMY +haA +ojo +aWQ +sbr +xqi +jSq vOy -aMi -biB -apI -bYe -akU -bYe -xCX -vGk -vGk -csz -vzl -bvY -vGk -vGk -csz -vzl -csz -vGk -vGk -vGk -gYS -weU -vGk -csz -czu -czu -czu -czu -czu -czu -czu -czu -czu -czu -czu -czu +gSa +nrV +kcK +tpQ +mjs +tpQ +iPh +bmp +bmp +xNF +rYx +wFT +bmp +bmp +xNF +rYx +xNF +bmp +bmp +bmp +uRl +bWB +bmp +xNF +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI aaa aaa aaa @@ -116475,25 +103774,25 @@ aaa aaa aaa aaa -aac -aaf -aaf -aKW -aLf -aSm +eQJ +oVj +oVj +lyZ +cPE +jcA nsY nsY -qxC +jqe nsY nsY nsY -ntx +txI nsY nsY -jFe -sxe -xZI -mNZ +qad +ykY +mXR +iOp bdd bdd bdd @@ -116503,33 +103802,33 @@ bdd bdd bdd bdd -aLG -awb -aLG +dAG +uwr +dAG bdg -bqZ +bdW beH bgO -boq -boq -boq -boq +gWn +gWn +gWn +gWn wNT -vBp +gCb hWs -nhi +dUc kbV -uMk -uMk -uMk -uMk +hSP +hSP +hSP +hSP bgO beH -bqZ +bdW bdg -buH -hOR -buH +vCY +tLB +vCY bdd bdd bdd @@ -116539,25 +103838,25 @@ bdd bdd bdd bdd -tuo +dKf rsM oos -gUf +vwS nsY nsY -iFM +nWC nsY nsY nsY -gLZ +lqD nsY nsY -oDf -uqH -yhQ -aaf -aaf -ajY +xKL +fKL +oJO +oVj +oVj +fPT aaa aaa aaa @@ -116578,87 +103877,87 @@ aaa aaa aaa aaa -lYA -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -lYA -qsd -aap -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar -aar +aXI +xBx +xBx +rhU +wSO +wSO +wSO +wSO +wSO +wSO +wSO +aXI +dTU +lAb +fuK +fuK +fuK +fuK +fuK +fuK +fuK +fuK +fuK +fuK +fuK +aej aej aej aej aej -iiC -amO -tHh +oPc +rdO +ogR vOy vOy vOy vOy -msi -kDk -kbJ -cJM -jlA -qLi -dEm +oeX +tqa +coE +kRH +wbV +hUX +vJU vOy vOy vOy vOy -apv -akU -jHG -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -qVM -vGk -csz -czu -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -czu +cVa +mjs +qGz +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +mih +bmp +xNF +aXI +cRT +cRT +cRT +cRT +cRT +cRT +cRT +eaD +kIu +kIu +aXI aaa aaa aaa @@ -116678,89 +103977,89 @@ aaa aaa aaa aaa -aad -aKW -aKW -aKW -aSm -aLf +bHS +lyZ +lyZ +lyZ +jcA +iUj nsY -tUS -bNh -wNl +oXk +iSj +gKX nGh -fPp -lqN -uoh +hyl +uyt +fUE nsY -xCN -pOB -hfk -aLf +tnD +uLF +dDc +cPE bdd -bqZ -kKL -aLJ -eBg -dAO -cEG -eBg -dYX -tBF -lBz -aLG +rPW +cSZ +cbj +lDB +dUN +iet +mkB +tkX +cxb +sAQ +dAG bdg -bqZ +bdW beH bgO -boq -boq -boq -boq +gWn +gWn +gWn +gWn wNT -pUA -wga -mfM +uKM +qXO +qbv kbV -uMk -uMk -uMk -uMk +hSP +hSP +hSP +hSP bgO beH -bqZ +bdW bdg -buH -uXu -bFu -iUk -eBg -gkJ -eBg -eBg -mVZ -kTx -bqZ +vCY +tbf +aNE +pQJ +amV +jGo +mkB +uhJ +xsx +jXn +fzM bdd -hTf +sSN wRO iMm -gUf +vwS nsY -aaq -wHj -qdv +rtb +hhO +cMQ uQo -iQt -uZo -xmJ +wqa +fal +mZI nsY -oed -oDf -yhQ -yhQ -yhQ -ajZ +osi +xKL +oJO +oJO +oJO +woL aaa aaa aaa @@ -116781,87 +104080,87 @@ aaa aaa aaa aaa -lYA -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -lYA -abe -aap -aar -aIZ -aIZ -aIZ -aIZ -ajQ -aIZ -aIZ -aIZ -aIZ -ajQ +aXI +xBx +xBx +rhU +wSO +wSO +wSO +wSO +wSO +wSO +wSO +aXI +yfU +lAb +fuK +fTp +fTp +fTp +fTp +gFp +fTp +fTp +fTp +fTp +gFp aej -aeO -afG -ags +nhr +eXh +ulw aej -ayT -amO -avj +dpr +rdO +vTl vOy elR xXh xXh apU -taH +gUu aBe otu jBO -jNc +lFS ean xXh xXh dMK vOy -ayT -akU -avj -qVM -nNA -ekO -nNA -qVM -iBt -iBt -iBt -iBt -aJM -iBt -iBt -iBt -iBt -aJM -qVM -vGk -xIb -czu -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -czu +dpr +mjs +vTl +mih +tPg +nRL +tPg +mih +vIY +vIY +vIY +vIY +kjL +vIY +vIY +vIY +vIY +kjL +mih +bmp +hcD +aXI +cRT +cRT +cRT +cRT +cRT +cRT +cRT +eaD +kIu +kIu +aXI aaa aaa aaa @@ -116881,89 +104180,89 @@ aaa aaa aaa aaa -aKW -aKW -bPT -jiX -aSm -aLf +lyZ +lyZ +cNx +jcA +jcA +cPE nsY -kio -sJY -qJY +tgq +vOJ +pIQ qLH -xTW -oGP -cnM +pge +amc +fkB nsY -nEA -lQu -lQu -aSm +mAo +vdX +vdX +jcA bdd -bDQ -iWE -jUo -wmz -wmz -wwk -wmz -bdg -aLG -awb -aLG +fNZ +tGP +ipb +xBg +xBg +snh +fdS +bdd +dAG +uwr +dAG bdg -bqZ -bqZ +bdW +bdW bgO beH beH duv beH htI -cCD -shp -oAB +yao +fgd +jBv gyv beH duv beH beH bgO -bqZ -bqZ +bdW +bdW bdg -buH -hOR -buH -bdg -wLV -nza -wLV -wLV -wLV -ukA -bqZ +vCY +tLB +vCY +bdd +kUs +pwf +eoY +eoY +eoY +gOy +fzM bdd -gKB +pPP rsM oos -gUf +vwS nsY -mKJ -deT -uAC +rpm +kdU +ejn rhQ -pyc -uMn -ivz +vGD +qPl +sgv nsY -oed -oDf -oed -oed -yhQ -yhQ +osi +xKL +osi +osi +oJO +oJO aaa aaa aaa @@ -116984,87 +104283,87 @@ aaa aaa aaa aaa -lYA -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -lYA -ahk -aap -aar -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ +aXI +xBx +xBx +rhU +wSO +wSO +wSO +wSO +wSO +wSO +wSO +aXI +sjo +lAb +fuK +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp aej -aeP -agI -aia -yaz -bYe -ajt -avj +dPe +eSw +fRT +pNZ +tpQ +qVJ +vTl vOy wWz -vHO -uXj -uXj -iwJ +hIl +odX +odX +lAd jVt uyH -vHO -iwJ -uXj -uXj +hIl +lAd +odX +odX rdt wTM vOy -ayT -aii -avj -ltK -vGk -hDv -ghW -qVM -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -qVM -vGk -lSD -czu -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -czu +dpr +utO +vTl +fTy +thQ +dUb +dOZ +mih +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +mih +bmp +wuf +aXI +cRT +cRT +cRT +cRT +cRT +cRT +cRT +eaD +kIu +kIu +aXI aaa aaa aaa @@ -117084,89 +104383,89 @@ aaa aaa aaa aaa -aKW -ygK -aLf -aLf -aLf -aLf -heK -kam +lyZ +xGe +cPE +cPE +cPE +cPE +sAj +boO axc juD twW vHh pvh -rgJ +oUE nsY -hhw -yfy -ugV -vUi +qfO +iMA +yly +iUj bdd -vTt -kbV -xzp -vEn -wmz -wmz -wmz +hwr +xBg +dmP +ydP +qfW +wbU +smm bdg -aLG -aYO -bad +dAG +cIN +mAN bdd bdd -bDQ +mRT bgO -vGG -vGG +dPM +dPM bgO -xRJ -xRJ -xRw -bPO +uhL +uhL +kLJ +iGL whA -xAt -xAt +cID +cID bgO -gAj -gAj +cys +cys bgO -cab +aPe bdd bdd -bGe -bHL -buH +kpe +aKj +vCY bdg -wLV -wLV -wLV -wLV -gKH -ldj -cab +ieS +emR +cys +wTn +mpE +oQu +lQA bdd -sOt +cvF cNX cdI -sBL +twk nsY -eiN +jta dVs tat kNC xuQ uPW -kYv -oDx -tbK -tbK -tbK -lNy -oed -yhQ +xWR +eZG +aPk +aPk +aPk +xYT +osi +oJO aaa aaa aaa @@ -117187,87 +104486,87 @@ aaa aaa aaa aaa -lYA +aXI adj apk apk -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -abp -ach -aar -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +xks +ppF +fuK +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp aej -aeQ -agK +dLB +gZH agu -eup -bYe -ajt -avj +mNu +tpQ +qVJ +vTl vOy wWz -uwZ -wWm -jQt -nwi -sNz +deK +iXw +hNG +rRI +yjT uyH -uwZ -kGQ -jQt -coZ -sNz +deK +ezy +hNG +wUn +yjT wTM vOy -ayT -aii -avj -ltK -wYj -jhY -fqx -qVM -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -qVM -azH -fQK -czu -czu -czu -czu -czu -czu -czu -czu +dpr +utO +vTl +fTy +wYt +fuG +wPt +mih +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +mih +gUK +cqP +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI asM asM mwR -czu +aXI aaa aaa aaa @@ -117287,89 +104586,89 @@ aaa aaa aaa aaa -aKW -jwD -aLf -uig -hhw -hhw +lyZ +lzs +cPE +mZs +qfO +qfO nsY -wpz -oEX +tVg +wiO irT tyb xxm qSK -ieu +mEu nsY -sSe -aLf -qce -aSm +sKW +cPE +qhP +jcA bdd -bqZ -xPR -nIW -wmz -wmz -wmz -wmz +syR +mGA +nxs +xWM +qfW +qtd +smm bdg -beB -aYT -beB -beB +opq +wSD +opq +ocg bdd -bqZ +bdW bgO -vGG -vGG +dPM +dPM bgO -xRJ -xRJ -viO -gMU -ksN -xAt -xAt +uhL +uhL +wpW +jTT +wgE +cID +cID bgO -gAj -gAj +cys +cys bgO -bqZ +bdW bdd -bJz -bJz -bHT -bJz +keZ +xHt +xFV +xHt bdg -wLV -wLV -wLV -wLV -wLV -wNT -udV +ieS +nxO +kcE +qZY +cys +uvr +weg bdd -pEl +wCN roU oos -uVh +xAr nsY -kzK -lFh -mus +uHW +iwY +myq pVA -mzV -pML -ivz +wmb +iLH +sgv nsY -jZO -oDf -oed -wlp -ndQ -yhQ +mtk +xKL +osi +iVF +dNF +oJO aaa aaa aaa @@ -117390,87 +104689,87 @@ aaa aaa aaa aaa -lYA -aaG -aaG -aaI -abC -abC -abC -abC -abC -abC -abC -jUW -tgS -ady -aar -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ -aIZ +aXI +gpg +gpg +rSp +wkj +wkj +wkj +wkj +wkj +wkj +wkj +oaC +iyv +pDi +fuK +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp +fTp aej -aeR -agK +jIh +gZH agu aej -pSL -amT -mIW +wtO +qVJ +rfV vOy wWz -pEJ -xQm -wLy -eqD -sNz +fvP +pOl +uwt +kHM +yjT uyH -sWW -mWW -wLy -xQm -tfH +vdn +tot +uwt +pOl +tOK wTM vOy -aEK -aSv -ioX -ltK -nXF -vGk -bqG -qVM -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -iBt -qVM -aCX -tgS -uSL -asx -asx -asx -asx -asx -asx -asx -aLX -bbp -bbp -czu +ufT +utO +vTl +fTy +wFI +thQ +wJa +mih +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +vIY +mih +cvd +qwf +lcc +dvh +dvh +dvh +dvh +dvh +dvh +dvh +ndB +txx +txx +aXI aaa aaa aaa @@ -117490,89 +104789,89 @@ aaa aaa aaa aaa -aKW -cSK -aSm -aSm -bUc -nSN +lyZ +qHO +jcA +jcA +hSR +btF nsY -xgS +gHN dbn -qvC +mDL tyb uRM ipe -ehR +hku nsY -aLf -aLf -tRc -qEW +och +cPE +oUJ +rfH bdd -gGo -mLb -wmz -vpt -kQU -wmz -wmz +wzA +pqY +qCb +tgF +tow +tmS +tow bdg -aLG -aYO -aLG -aLG +dAG +cIN +dAG +dAG bdg -bqZ +bdW qMR -rwv -rwv +gWg +gWg dRT -dqD -dqD -bUb +uWs +uWs +uDr dRT -eWp -eWp -eWp +mLZ +mLZ +mLZ dRT -tXb -tXb +mpo +mpo fOk -bqZ +bdW bdg -buH -buH -bHL -buH +vCY +vCY +aKj +vCY bdg -gKH -cgz -vyU -wLV -wLV -xDQ -bXc +keY +tQh +fnR +euP +rSw +lni +vLR bdd -pcO -tJV -qoY -uCh +avf +rwz +frQ +mHy nsY -tXT -jJk -wLG +gTk +nfu +qyQ tyb -sZH -rjV -ivz +lFl +rIB +sgv nsY -fuY -sZF -vjD -lFF -ndM -yhQ +rXe +ugk +iBh +bWu +qWU +oJO aaa aaa aaa @@ -117593,87 +104892,87 @@ aaa aaa aaa aaa -lYA -aaG -aaG -aaI -abC -abC -abC -abC -abC -abC -abC -acg -bAF -ady -aar -aar -aar -ahi -aar -aar -aar -aar -uux -aar -aar +aXI +gpg +gpg +rSp +wkj +wkj +wkj +wkj +wkj +wkj +wkj +cpH +qwW +pDi +fuK +fuK +fuK +nAU +fuK +fuK +fuK +fuK +oLf +fuK +fuK aej aej -agO -aid +may +ekK aej -atL -akV -atL +fGs +hXK +uCT vOy wWz -uwZ -tyD -jQt -vfP -sNz +deK +etR +hNG +cVL +yjT uyH -uwZ -tyD -jQt -vfP -sNz +deK +etR +hNG +cVL +yjT wTM vOy -atL -akV -atL -qVM -qVM -nWc -qVM -qVM -qVM -qVM -nNX -qVM -qVM -qVM -qVM -ayo -qVM -qVM -qVM -aEJ -bAF -aKB -asx -asx -asx -asx -asx -asx -asx -aLX -bbp -bbp -czu +fGs +hXK +uCT +mih +mih +iTC +mih +mih +mih +mih +lvK +mih +mih +mih +mih +rEB +mih +mih +mih +cvd +iVd +mah +dvh +dvh +dvh +dvh +dvh +dvh +dvh +ndB +txx +txx +aXI aaa aaa aaa @@ -117693,25 +104992,25 @@ aaa aaa aaa aaa -aKW -aLf -aLf -xlD -bUc -vrB +lyZ +cPE +cPE +jEi +hSR +eJs nsY nsY nsY nsY -tIp +gAB nsY nsY nsY nsY -hhw -hhw -hhw -hhw +qfO +qfO +qfO +qfO bdd bdd bdd @@ -117721,33 +105020,33 @@ bdd bdd bdd bdd -hDL -aYO -aNO -aLG +tsD +cIN +wuv +dAG bdg -bqZ +bdW beH -vGG -vGG +dPM +dPM beH -xRJ -xRJ -xRJ +uhL +uhL +uhL beH -xAt -xAt -xAt +cID +cID +cID beH -gAj -gAj +cys +cys beH -bqZ +bdW bdg -buH -bHa -bHL -bIR +vCY +rDm +aKj +ucI bdd bdd bdd @@ -117765,17 +105064,17 @@ nsY nsY nsY nsY -goy +xab nsY nsY nsY nsY -gZG -xMh -ril -kRu -hXS -yhQ +hbp +cwc +lXk +qDF +rmJ +oJO aaa aaa aaa @@ -117796,87 +105095,87 @@ aaa aaa aaa aaa -lYA -aaG -aaG -aaI -abC -abC -abC -aaJ -abC -abC -abC -act -ajS -afq -lzW -buk -fgF -bYP -lBi -acH -cwd -bYy -tOd -adT -kqf -aeU -bUE -bYe -bYe -aaO -alp -aio -baB +aXI +gpg +gpg +rSp +wkj +wkj +wkj +lxX +wkj +wkj +wkj +cMB +dVr +shU +hdu +xsk +jLW +esO +duG +mtx +ebq +qDu +jSB +hso +xsk +jXI +knq +gTw +gTw +oCW +rwy +etr +bCU vOy wWz -qxP -gxP -gxP -jgg -jZs +pWe +uWq +uWq +eVx +mIL uyH -iRN -jgg -gxP -gxP -nMe +bnL +eVx +uWq +uWq +nWR wTM vOy -alp -aio -baB -aEV -bUE -bYe -nBW -bWP -tSc -spT -fHC -dHr -bYQ -cwd -lBi -qmt -ayG -saW -tMf -ajq -ajS -dGw -asx -asx -asx -aKJ -asx -asx -asx -aLX -bbp -bbp -czu +rwy +etr +bCU +oCW +cKz +hPV +pvW +hdU +iTx +uMo +nKF +rvx +rwH +rPr +oJa +isz +tfv +rwH +iSK +oGl +dOY +ekt +dvh +dvh +dvh +gVJ +dvh +dvh +dvh +ndB +txx +txx +aXI aaa aaa aaa @@ -117896,40 +105195,40 @@ aaa aaa aaa aaa -aKW -aLf -aSm -hhw -hhw -hhw -hhw -hhw -aLB -acF -heb -cqa -bBh -aMV -dRG -aMV -yiq -kLp -aMV -bBh -tCN -lDJ -tCN -tCN -yfw -tCN -bBh -aLG -aLG -aYO -aNO -aLG +lyZ +cPE +jcA +qfO +qfO +qfO +qfO +qfO +qfO +nTF +eHM +uJz +opq +hXv +vPC +hXv +jOM +rMb +hXv +opq +dgu +tuE +dgu +dgu +oaF +dgu +opq +dAG +dAG +cIN +wuv +dAG bdg -bqZ +bdW beH beH beH @@ -117945,40 +105244,40 @@ beH beH beH beH -bqZ +bdW bdg -buH -bHa -bHL -buH -buH -cbD -iZH -xkC -njL -njL -njL -njL -cbD -bUM -bUM -mYw -iAT -rdY -bUM -cbD -rGg -qtn -kJV -fiq -fiq -fiq -fiq -fiq -fiq -wlp -oDf -yhQ +vCY +rDm +aKj +vCY +vCY +xHt +hOi +aCY +mfF +mfF +mfF +mfF +xHt +jPm +jPm +wNz +iyT +pib +jPm +xHt +lho +uUY +eTN +sXT +sXT +sXT +sXT +sXT +sXT +iVF +xKL +oJO aaa aaa aaa @@ -117999,39 +105298,39 @@ aaa aaa aaa aaa -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -lYA -aey -azY -azY -adi -atC -abx -acC -abx -abx -abx -adi -abx -acC -atC -abg -abg -abg -abg -acC -iWN -amO -dLE +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +riW +qyY +qyY +eUt +fZS +kvM +mzi +kvM +kvM +kvM +eUt +kvM +mzi +fZS +fZS +fZS +fZS +uha +lcX +qDh +qLx +xds vOy woh vgO @@ -118047,39 +105346,39 @@ vgO vgO xAe vOy -aIS -alq -wWk -chu -aZE -aZE -aZE -aZE -xwG -chu -aZE -cgI -abt -aZE -aZE -chu -aZE -xwG -cgI -agl -agN -ahH -czu -czu -czu -czu -czu -czu -czu -czu -czu -czu -czu +vEO +mCW +kgX +lpL +mom +mom +mom +mom +mom +sgN +mom +sVw +fjB +mom +mom +sgN +mom +dcY +sVw +kYH +jMA +lmr +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI +aXI aaa aaa aaa @@ -118099,40 +105398,40 @@ aaa aaa aaa aaa -aKW -aLa -aSm -hhw -nHF -nHF -nHF -cmE -aLB -nyG -iDN -tit -nFV -tBL -tBL -tBL -tBL -tBL -tBL -mRS -tBL -tBL -tBL -tBL -tBL -tBL -luz -tzf -tBL -fau -aNO -aLG +lyZ +cPE +jcA +qfO +kHG +kHG +kHG +gjp +qfO +cTx +eMX +oOQ +qyZ +izD +izD +izD +izD +izD +izD +qyZ +izD +izD +izD +izD +izD +izD +qyZ +wlv +izD +gYV +wuv +dAG bdg -bqZ +bdW beH beH beH @@ -118148,40 +105447,40 @@ beH beH beH beH -bqZ +bdW bdg -buH -bHa -wwu -buI -bFu -cbE -buI -buI -buI -buI -buI -buI -rpd -buI -buI -buI -buI -buI -buI -rpd -fkO -bHY -kro -bGb -uaa -uaa -uaa -oFM -fiq -fYc -uqH -yhQ +vCY +rDm +xnS +mjV +aNE +wCf +mjV +mjV +mjV +mjV +mjV +mjV +wCf +mjV +mjV +mjV +mjV +mjV +mjV +wCf +oKZ +sKj +qJW +sXT +brN +brN +brN +lAK +sXT +gyJ +fKL +oJO aaa aaa aaa @@ -118202,39 +105501,39 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -lYA -bRK -aao -aiv -aaW -pjb -abM -iCe -cLp -cZZ -ccY -aJs -cdu -aaw -abl -jUs -abu -xaF -aaL -aJs -bYe -bYe -aaE -afD -kaA -anh +avt +hxW +qua +bQC +hoB +khG +vCQ +vRR +wAP +ebP +oIa +fKW +eNr +wAP +hPJ +uxW +vtF +wAP +hxs +fKW +gTw +qvn +oCW +dMI +uLP +blk vOy vOy vOy @@ -118250,39 +105549,39 @@ vOy vOy vOy vOy -xFw -iTK -anh -aFF -cjo -bYe -kSN -aTQ -uGo -abl -wba -abu -aaw -wbj -aJs -cdu -ayH -uGo -eoT -aGR -pjb -aKC -xCX -vGk -hoX -czu +aXr +eJK +blk +oCW +tUq +hPV +sls +wtH +lLc +oKd +kTr +bCv +dpB +mUm +oVg +dvz +stm +dpB +jYT +nif +iss +owT +iPh +bmp +dsz +nMq aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -118302,89 +105601,89 @@ aaa aaa aaa aaa -aKW -aLf -aSm -hhw -nHF -nHF -nHF -nHF -aLB -csl -gjn -jJs -bBh -aMM -aMM -aNG -bga -taA -aSr -bBh -gyC -wbh -bsX -bAa -bKE -eBj -bBh -aLG -aNO -aYT -aNO -bad +lyZ +cPE +jcA +qfO +kHG +kHG +kHG +kHG +qfO +lzI +bhb +jVk +opq +dnn +dnn +nfG +fGK +ijx +goc +opq +qHQ +rRF +lMZ +jKL +xmc +geT +opq +dAG +wuv +wSD +wuv +mAN bdd -bDQ -mng -bCu -bCu -bCu -bCu -wCI -moQ -flW -fvf -rgW -vUe -vUe -vUe -vUe -kuw -cab +mRT +wtI +lst +lst +lst +lst +wuk +cqK +pyu +qpV +eyy +gRb +gRb +gRb +gRb +riS +aPe bdd -bGe -bHa -bHT -bHa -buH -cbD -bMt -bMt -bOv -bOX -jLK -vUU -cbD -ciU -rOj -bUd -bUF -clR -clR -cbD -dQs -sFh -guc -bGb -uaa -uaa -uaa -uaa -fiq -wlp -vfJ -yhQ +kpe +rDm +xFV +rDm +vCY +xHt +ixY +ixY +vXz +nxE +xwV +srI +xHt +vKx +tBE +leu +ptF +sLL +sLL +xHt +evQ +xuS +ryU +sXT +brN +brN +brN +brN +sXT +iVF +flk +oJO aaa aaa aaa @@ -118405,87 +105704,87 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -lYA -bTI -aap -aar -aar -aar -aar -aar -aar -aar -acG -abg -caF -aar -aar -wYZ -aar -aar +avt +wZO +lAb +frX +fuK +fuK +fuK +fuK +fuK +fuK +wpk +fZS +wMI +fuK +fuK +xeO +fuK +fuK ael ael -agQ -aih +hZi +tvg ael -tnl -amO -anc -atC -apJ -apJ -aMl -apJ -apJ -apJ -apJ -apJ -apJ -apJ -aMl -apJ -apJ -atC -cnv -amO -lqJ -qVM -qVM -xeG -qVM -qVM -qVM -xeG -qVM -qVM -qVM -acG -abg -caF -qVM -qVM -qVM -qVM -qVM -qVM -qVM -csz -ofs -czu +vUN +rdO +vte +wfG +wfG +wfG +dgi +wfG +wfG +wfG +wfG +wfG +fay +wfG +dgi +wfG +wfG +wfG +fwP +rdO +qvT +mih +mih +gBY +mih +mih +mih +gBY +mih +mih +mih +uvg +aJb +cpo +mih +mih +mih +mih +mih +mih +gcO +xNF +qdJ +nMq aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -118505,89 +105804,89 @@ aaa aaa aaa aaa -aKW -aLf -aSm -hhw -nHF -nHF -nHF -nHF -jUx -aLG -qmL -rZz +lyZ +cPE +jcA +qfO +kHG +kHG +kHG +kHG +qCU +dAG +uAr +dhY jeb jeb jeb -uIT -lKb +rYe +nJW jeb jeb jeb jeb jeb -uIT -mWy +rYe +oLS jeb jeb jeb -aLG -aNO -aYT -aNO -aLG +dAG +wuv +wSD +wuv +dAG bdg -bqZ -udi -ddk -dEQ -hgg -ddk -cQc -nlB +bdW +eUq +jlj +gCX +fpb +jlj +jjz +mPV ugu -oQH -wHo -uWc -wka -tTp -veu -mDW -bqZ +fTQ +toR +cjk +alj +uGA +uEy +xqN +bdW bdg -buH -bHa -bHT -bHa -buH +vCY +rDm +xFV +rDm +vCY vra vra vra -mDT -cgl +mWj +jKe vra vra vra vra vra -mDT -rJx +mWj +wlG vra vra vra -jJe -bHY -buH -vfo -uaa -uaa -uaa -uaa -fiq -scI -gFG -yhQ +ioT +sKj +vCY +kDK +brN +brN +brN +brN +sXT +kXr +bLF +oJO aaa aaa aaa @@ -118603,11 +105902,11 @@ aaa aaa aab aaa -aac -aaf -aaf -aaf -aaf +eQJ +oVj +oVj +oVj +oVj aag aag aag @@ -118615,85 +105914,85 @@ aag aag aag aag -lYA -qsd -aao -aao -aar -aIZ -aIZ -aIZ -aLC -aar -bWs -abg -caF -aar -rcW -sTB -jrV -qmr +avt +dTU +qua +qua +fuK +fTp +fTp +fTp +jGO +fuK +rfZ +fZS +ckY +fuK +rKB +tDb +dHS +puc ael -afE -agT -agT +ipo +kUL +cLI ael -cZm -akU -abg -atC -abg -abx -abx -abx -abg -abx -abx -abx -abg -abx -abx -abx -avD -atC -abg -amO -nQx -qVM -usi -csz -usi -qVM -xfh -vGk -vGk -adI -qVM -acG -abg -caF -qVM -iBt -iBt -iBt -fgo -qVM -aPX -vGk -vGk -czu -aag -aag -aag -aag -aag -aag -aag -aaf -aaf -aaf -aaf -ajY +oSp +mjs +mYe +mYe +mYe +uow +uow +uow +mYe +uow +uow +uow +mYe +uow +uow +uow +mYe +mYe +mYe +rdO +kHz +mih +vMa +olY +vMa +mih +cNQ +thQ +thQ +oDn +mih +kPv +aJb +cpo +mih +vIY +vIY +vIY +wLp +mih +nBd +bmp +bmp +nMq +aag +aag +aag +aag +aag +aag +aag +oVj +oVj +oVj +oVj +fPT aaa aaa aab @@ -118704,97 +106003,97 @@ aaa aaa aab aaa -aac -aaf -aaf -aaf -aKW -aSm -aLf -hhw -nHF -nHF -nHF -nHF -aLB -dEC -aNO -qHl +eQJ +oVj +oVj +oVj +lyZ +jcA +cPE +qfO +kHG +kHG +kHG +kHG +qfO +tDa +wuv +knb jeb -vlX -aNx -qGc +cyl +moW +bmQ jhD jeb osc cMV osc jeb -aIq -xHp -hmF -vlX +spp +jiN +dOE +cyl jeb -aNn -aNO -aYT -aNO -aLG +wSH +wuv +wSD +wuv +dAG bdg -bqZ -udi -ddk -hgg -ddk -dNM -cQc -nlB +bdW +eUq +jlj +fpb +jlj +dzy +jjz +mPV ugu -oQH -wHo -uWc -duw -uWc -fIZ -mDW -bqZ +fTQ +toR +cjk +spY +cjk +gMi +xqN +bdW bdg -buH -bHa -bHT -bHa -deH +vCY +rDm +xFV +rDm +vfF vra -asX -chf -wDJ +iDS +wNh +uIr tJz vra ukV oNj ukV vra -gll -lpt -mgF -asX +exl +niw +qsh +iDS vra -tfw -bHY -sVf -bGb -uaa -uaa -uaa -uaa -fiq -scI -scg -yhQ -aaf -aaf -aaf -ajY +qaR +sKj +rwQ +sXT +brN +brN +brN +brN +sXT +kXr +sxt +oJO +oVj +oVj +oVj +fPT bdH aaa aab @@ -118806,7 +106105,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -118818,73 +106117,73 @@ aag aag aag aag -lYA -lYA -aap -aap -aar -aIZ -aIZ -aIZ -aIZ -aar -acO -aJs -cbN -aar -lDK -aap -eXU -vFb +avt +avt +lAb +lAb +fuK +fTp +fTp +fTp +fTp +fuK +jLV +fKW +mKR +fuK +oOU +vzt +mFs +pOQ ael -afH -agV -ain +wMW +wdt +xvk ael -eGl -aii -anf -atC -apK -anf -apK -arf -auG -azb -azb -azb -auG -aDp -apK -cbr -apK -atC -cbr -amO -uGt -qVM -qVM -vGk -har -qVM -xHG -csz -vGk -xHG -qVM -aJd -aJs -cbN -qVM -iBt -iBt -iBt -iBt -qVM -pzQ -csz -czu -czu +mDH +utO +wMi +laL +laL +wMi +laL +sNJ +ibP +hBR +hBR +hBR +iET +ppl +laL +ktn +laL +laL +ktn +rdO +jqp +mih +mih +thQ +rPI +mih +uQE +olY +thQ +uQE +mih +vLp +oVg +mxa +mih +vIY +vIY +vIY +vIY +mih +wtT +xNF +nMq +nMq aag aag aag @@ -118896,7 +106195,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -118907,97 +106206,97 @@ aaa aaa aab aaa -aad +bHS aag aag aag -aKW -vPr -iiP -hhw -nHF -nHF -nHF -nHF -aLB -udF -aNO -nLZ +lyZ +qny +xUS +qfO +kHG +kHG +kHG +kHG +qfO +fed +wuv +hye jeb -obE -tdE -qGc +fOA +nJg +bmQ rth rth -oef -oef -oef +iyB +iyB +iyB nny rth -xHp -xwl -rHf +jiN +qmK +xUm jeb -jgU -aNO -aYT -aNO -aLG +bfR +wuv +wSD +wuv +dAG bdg -bqZ -ngI -bDP -bDP -bDP -bDP -nBw -moQ -hGO -fvf -uNM -xAt -xAt -xAt -xAt -nNH -bqZ +bdW +sHn +ide +ide +ide +ide +mcS +cqK +lSf +qpV +mFr +cID +cID +cID +cID +xAs +bdW bdg -buH -bHa -bHT -bHa -bKc +vCY +rDm +xFV +rDm +jwZ vra -bMq -qUq -wDJ +tMK +hEM +uIr nyQ nyQ -xJH -xJH -xJH +qIl +qIl +qIl miV nyQ -lpt -qYQ -ptj +niw +vVr +bTr vra -mEb -bHY -haT -bGb -uaa -uaa -uaa -uaa -fiq -wlp -oDf -yhQ +vbJ +sKj +vto +sXT +brN +brN +brN +brN +sXT +iVF +xKL +oJO aag aag aag -ajZ +woL aaa aaa aab @@ -119009,7 +106308,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -119022,71 +106321,71 @@ aag aag aag aag -lYA -aao -aao -aar -aIZ -aIZ -aIZ -aIZ -aba -pNQ -abx -hTy -aar -pJn -aao -aao -erz +avt +qua +qua +fuK +fTp +fTp +fTp +fTp +vps +dHx +kvM +dPK +fuK +hWw +wpi +wpi +vhM ael -afI -agY -oxi -xfm -als -ani -anc -mOi +qGd +sTK +aiq +svW +mYe +qVJ +vte mOi mOi mOi mOi mOi -auc -auc -hyE +jtP +iqT +oKS +wTI aqU aHq aHq aHq aHq aHq -iWN -ajt -kGI -aPm -qVM -vGk -csz -xCX -vGk -vGk -vGk -csz -qVM -jSY -abx -hLO -ceD -iBt -iBt -iBt -iBt -qVM -buD -csz -czu +ggc +qVJ +uHy +mwW +mih +thQ +olY +qpB +thQ +thQ +thQ +olY +mih +phJ +wKO +qZZ +lix +vIY +vIY +vIY +vIY +mih +xdk +xNF +nMq aag aag aag @@ -119099,7 +106398,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -119110,44 +106409,44 @@ aaa aaa aab aaa -aad +bHS aag aag aag -aKW -aSm -eIA -hhw -hhw -hhw -hhw -hhw -aLB -dzF -dzF -dac +lyZ +jcA +dxq +qfO +qfO +qfO +qfO +qfO +qfO +mZY +mZY +psr jeb -vlX -thA +cyl +nBT gAA gAA -bfn -oMH -coB -rSj -bfn +mox +tqS +iox +puY +mox gAA gAA -fFD -vlX +aSg +cyl jeb -kEb -aNO -aYT -aNO -aLG +gFT +wuv +wSD +wuv +dAG bdg -bqZ +bdW beH beH beH @@ -119163,44 +106462,44 @@ beH beH beH beH -bqZ +bdW bdg -buH -bHa -bHT -bHa -rKy +vCY +rDm +xFV +rDm +hOS vra -asX -drj +iDS +pTi cgo cgo -hyk -qyW -khd -kaI -hyk +iWW +doB +udw +uYh +iWW cgo cgo -hQc -asX +heN +iDS vra -cwQ -vtB -tQo -bGb -fiq -fiq -fiq -fiq -fiq -wlp -bxX -yhQ +fJP +pqy +ufM +sXT +sXT +sXT +sXT +sXT +sXT +iVF +yfx +oJO aag aag aag -ajZ +woL aaa aaa aab @@ -119212,7 +106511,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -119225,71 +106524,71 @@ aag aag aag aag -lYA -aao -aap -aar -aIZ -aIZ -aIZ -aIZ -aar -acP -bUE -qFQ -aar -jBY -aap -aao -mYX +avt +qua +lAb +fuK +fTp +fTp +fTp +fTp +fuK +kvK +knq +wcW +fuK +otH +vzt +wpi +fiN ael -afJ -agY +bLN +sTK aiq -ajJ -aEX -ajt -aow +svW +mYe +qVJ +mYe mOi -rCw -rCw -lin -oJR -tFe -asD -xQV -avK +wgV +wgV +aWh +jMC +jke +one +avg +pBS aqU -aCZ -dgg -dJX -egV +sda +szW +dyC +nKZ aHq -sDC -ajt -kGI -ejp -qVM -vGk -hoX -qVM -xHG -csz -vGk -csz -qVM -sah -bUE -cbO -qVM -iBt -iBt -iBt -iBt -qVM -oLw -vGk -czu +qFN +qVJ +uHy +vCA +mih +thQ +miO +mih +uQE +olY +thQ +jby +mih +phn +dpb +uon +mih +vIY +vIY +vIY +vIY +mih +tGr +bmp +nMq aag aag aag @@ -119302,7 +106601,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -119313,26 +106612,26 @@ aaa aaa aab aaa -aad +bHS aag aag aag -aKW -uDB -aLf -hhw -nHF -nHF -nHF -cmE -aLB -enx -aQt -oQj +lyZ +iFI +cPE +qfO +kHG +kHG +kHG +gjp +qfO +bhe +iaU +fnG jeb -vlX -tdE -qGc +cyl +nJg +bmQ rth rth hNM @@ -119340,43 +106639,43 @@ vxX uBO rth rth -xHp -xwl -vlX +jiN +qmK +cyl jeb -pGM -aNO -aYT -aNO -bad +bEy +wuv +wSD +wuv +mAN bdd -bDQ -lnm -iLh -iLh -iLh -iLh -grR -moQ -ovp -fvf -rAb -sCA -sCA -sCA -sCA -bVw -cab +mRT +jsi +dFP +dFP +dFP +dFP +aYG +cqK +sYL +qpV +ejk +cAO +cAO +cAO +cAO +hOp +aPe bdd -bGe -bHa -bHT -bHa -bIR +kpe +rDm +xFV +rDm +ucI vra -asX -qUq -wDJ +iDS +hEM +uIr nyQ lrT bqW @@ -119384,26 +106683,26 @@ xaC qeY nyQ nyQ -lpt -qYQ -asX +niw +vVr +iDS vra -ojR -tki -lQQ -bGb -uaa -uaa -uaa -oFM -fiq -wlp -oDf -yhQ +cSt +eJJ +axg +sXT +brN +brN +brN +lAK +sXT +iVF +xKL +oJO aag aag aag -ajZ +woL aaa aaa aab @@ -119415,7 +106714,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -119428,71 +106727,71 @@ aag aag aag aag -lYA -aap -cWA -aar -aIZ -aIZ -aIZ -aIZ -aar -acG -abx -caF -aar -ydr -aap -aao -mYX +avt +lAb +qnj +fuK +fTp +fTp +fTp +fTp +fuK +wpk +kvM +ckY +fuK +qqT +vzt +wpi +fiN ael afK ahc air ael -isW -ajt -ali +mnp +qVJ +mYe mOi -wCT -sIf -isC -isC -tFe -xQV -xQV -rNF +sXA +tOT +kYh +wHr +wIv +avg +wwb +bZh aqU -qjF +tAn oqv iqd -rUy +dOD cnS -iWN -ajt -nYv -qVM -qVM -vGk -pzQ -qVM -usi -vzl -vGk -csz -qVM -acG -abx -caF -qVM -iBt -iBt -iBt -iBt -qVM -vGk -csz -czu +ggc +qVJ +rUI +mih +mih +thQ +vGC +mih +vMa +sid +thQ +olY +mih +fxN +wKO +cpo +mih +vIY +vIY +vIY +vIY +mih +bmp +xNF +nMq aag aag aag @@ -119505,7 +106804,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -119516,26 +106815,26 @@ aaa aaa aab aaa -aad +bHS aag aag aag -aKW -aSm -aLf -hhw -nHF -nHF -nHF -nHF -aLB -ewo -aNO -jLv +lyZ +jcA +cPE +qfO +kHG +kHG +kHG +kHG +qfO +scN +wuv +jvD jeb -obE -thA -qGc +fOA +nBT +bmQ rth rth rth @@ -119543,43 +106842,43 @@ aTW aTW rth rth -xHp -diJ -rHf +jiN +xyh +xUm jeb -aLG -aNO -aYT -aNO -aLG -bCx -bqZ -cNf -dll -dll -lRs -dll -rJu -nlB +dAG +wuv +wSD +wuv +dAG +cbt +bdW +xQT +fiD +fiD +iwx +fiD +uCG +mPV ugu -oQH -mnI -sJC -vSK -qnC -nuK -dVe -bqZ -bCx -buH -bHa -rrV -bHa -buH +fTQ +gbu +oGV +heD +ibo +rBT +xGX +bdW +cbt +vCY +rDm +glI +rDm +vCY vra -bMq -drj -wDJ +tMK +pTi +uIr nyQ nyQ nyQ @@ -119587,26 +106886,26 @@ obQ obQ nyQ nyQ -lpt -eBV -ptj +niw +sXv +bTr vra -fsH -bHY -pBn -bGb -uaa -uaa -uaa -uaa -fiq -scI -oed -yhQ +xRW +sKj +iDz +sXT +brN +brN +brN +brN +sXT +kXr +osi +oJO aag aag aag -ajZ +woL aaa aaa aab @@ -119618,7 +106917,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -119631,71 +106930,71 @@ aag aag aag aag -lYA -aap -amN -aar -aar -aar -aar -aar -aar -oPD -abx -lCz -aar -tAV -sTB -uck -wKn +avt +lAb +ydG +fuK +fuK +fuK +fuK +fuK +fuK +ofY +kvM +mFb +fuK +ewb +tDb +gqs +cAt ael -afL -ahe -aij +sRv +dUt +dbR ael -abg -akU -abg +mYe +mjs +mYe mOi -kbH -kbH -pgH -jDV -tFe -xVc -xQV -eYz +tjV +tjV +fVh +dwu +wIv +xup +avg +vNI aqU -gjB +qIk wDy aGN -dxv +dmY cnS -cnv -ajt -bYe -xCX -csz -csz -dWm -qVM -qVM -qVM -xeG -qVM -qVM -oPD -abx -lCz -qVM -qVM -qVM -qVM -qVM -qVM -csz -csz -czu +fwP +qVJ +tpQ +qpB +olY +olY +xPS +mih +mih +mih +gBY +mih +mih +mHz +wKO +meD +mih +mih +mih +mih +mih +mih +xNF +xNF +nMq aag aag aag @@ -119708,7 +107007,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -119718,27 +107017,27 @@ aKQ aaa aaa aab -aKW -aKW -aKW -aKW -aKW -aKW -aSm -aSm -hhw -nHF -nHF -nHF -nHF -cmC -aLG -aNO -uBw +lyZ +lyZ +lyZ +lyZ +lyZ +lyZ +jcA +ikl +qfO +kHG +kHG +kHG +kHG +sSj +dAG +wuv +tMs jeb -vlX -tdE -qGc +cyl +nJg +bmQ rth rth tPI @@ -119746,43 +107045,43 @@ tPI iXT rth rth -xHp -xwl -vlX +jiN +qmK +cyl jeb -aLG -aNO -aYV -bai -bbg -bCy -bDS -cNf -dll -qSE -nff -dll -rJu -nlB +dAG +wuv +lyu +hin +igG +ppf +irY +xQT +fiD +bbI +lLa +fiD +uCG +mPV ugu -oQH -mnI -nMp -qnC -qnC -qnC -dVe -cac -bCy -bzK -bHb -bHV -bHa -rbX +fTQ +gbu +hPU +ibo +ibo +ibo +xGX +mNE +ppf +fTC +dvV +eZt +rDm +mLw vra -asX -qUq -wDJ +iDS +hEM +uIr nyQ nyQ pHA @@ -119790,27 +107089,27 @@ pHA nyQ nyQ nyQ -lpt -qYQ -asX +niw +vVr +iDS vra -pJJ -bHY -buH -cnd -uaa -uaa -uaa -uaa -fiq -suT -oed -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ +wwV +sKj +vCY +dMA +brN +brN +brN +brN +sXT +wXg +osi +oJO +oJO +oJO +oJO +oJO +oJO aaa aab aaa @@ -119821,7 +107120,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -119834,71 +107133,71 @@ aag aag aag aag -lYA -wFm -abe -aar -aIZ -aIZ -aIZ -aLC -aar -acG -abx -caF -aar -wYZ -aar -aar -aar +avt +wxL +yfU +fuK +fTp +fTp +fTp +jGO +fuK +wpk +kvM +ckY +fuK +xeO +fuK +fuK +fuK adO adO adO adO adO -lwm -akU -nQx +ppz +mjs +kHz mOi mOi mOi mOi mOi mOi -asF -asG -iyH +pCT +pCT +pCT aqU -jVE +mHu nTs pje pje -cnT -xvh -fNC -cKY -qVM -qVM -qVM -qVM -qVM -xfh -xWF -vGk -yji -qVM -acG -abx -caF -qVM -iBt -iBt -iBt -fgo -qVM -lJg -csz -czu +qZz +ssP +gZl +sqY +mih +mih +mih +mih +mih +cNQ +juH +thQ +gPV +mih +fxN +wKO +cpo +mih +vIY +vIY +vIY +wLp +mih +viG +xNF +nMq aag aag aag @@ -119911,7 +107210,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -119921,99 +107220,99 @@ aKQ aaa aaa aab -aKW -qxA -aSm -aSm -aSm -jiX -aSm -bPV -hhw -nHF -nHF -nHF -nHF -aLB -fTU -bbO -cmg +lyZ +slu +jcA +jcA +jcA +jcA +jcA +vsW +qfO +kHG +kHG +kHG +kHG +qfO +iri +fSC +ltl jeb jeb -hfa -jwK +vDh +wUb wnY cLC -eGh +vId rtA -uKv +kyp nFK lEO -xWd -oSL +ogF +xLV jeb jeb -aLG -aNO -aYW -sLE -bbh +dAG +wuv +pVt +nxo +pOH bdd -bDT -tHv -xRJ -xRJ -xRJ -xRJ -tSB -moQ -caO -fvf -vrW -iXb -iXb -iXb -iXb -pzV -cad +vjw +rWq +uhL +uhL +uhL +uhL +pPb +cqK +nrJ +qpV +qxd +voa +voa +voa +voa +rYN +fuk bdd -oLT -iEb -bHW -bHa -buH +rTC +oMo +orr +rDm +vCY vra vra -eUh -jTI +oGu +oaI lzq nyQ nhx eiq -teu +saM wXH xBQ -mSU -wVy +pDS +ine vra vra -cmd -cmh -wAR -aLB -uaa -uaa -uaa -uaa -fiq -scI -oed -sow -oDf -leh -vhI -tVB -yhQ +eCj +lbl +til +sXT +brN +brN +brN +brN +sXT +kXr +osi +hZm +xKL +xIU +uQl +cGO +oJO aaa aab aaa @@ -120024,7 +107323,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -120037,71 +107336,71 @@ aag aag aag aag -lYA -aao -ahk -aar -aIZ -aIZ -aIZ -aIZ -aar -acO -aJs -arJ -aar -aao -aao -rOZ -dfP +avt +qua +sjo +fuK +fTp +fTp +fTp +fTp +fuK +jLV +fKW +chr +fuK +wpi +wpi +pDG +ibX adO -afM -fpR -ahf +kWl +vzs +xCK adO -wUz -aii -abg +jwa +utO +mYe +mOi +kUv +kUv +pOE +jQa aqU -sdl -mLE -bUx -mLE -tmK -avK -aug -yhB +bzu +wTz +hNE aqU -lyE +csO rsO aGN -rbB +xwt cnS -cbr -ajt -anc +ktn +qVJ +vte aUH -aXx -jKI -aXx -qVM -usi -csz -vGk -csz -qVM -acO -aJs -arJ -qVM -iBt -iBt -iBt -iBt -qVM -hkx -vGk -czu +ouT +kgi +ouT +mih +vMa +olY +thQ +olY +mih +fnf +oVg +qTu +mih +vIY +vIY +vIY +vIY +mih +bQq +bmp +nMq aag aag aag @@ -120114,7 +107413,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -120124,99 +107423,99 @@ aKQ aaa aaa aab -aKW -xxe -aLf -aLf -aLf -aLf -xPE -bPT -hhw -nHF -nHF -nHF -nHF -aLB -ahj -ahj -ahj +lyZ +slJ +cPE +cPE +cPE +cPE +vld +cNx +qfO +kHG +kHG +kHG +kHG +qfO +qJM +qJM +qJM jeb -tkN -qHg +opy +kLw gAA beP -bfn -pkz -qfh -ipE -bfn +mox +vCb +hsN +haX +mox moI gAA -cGV -tkN +ujM +opy jeb -aWM -aNO -aYX -gjn -bbi +qgE +wuv +fKd +bhb +oUd bdd -bDU -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -cae +trd +bdW +bdW +bdW +wMP +bdW +bdW +bdW +wMP +bdW +bdW +bdW +wMP +bdW +bdW +bdW +oXR bdd -bGg -bHd -bHX -bHa -buH +pKM +kLF +fgc +rDm +vCY vra -gNq -hXb +gfV +fcZ cgo fwY -hyk -nNV -hyk -mBc -hyk +iWW +mBM +iWW +pVE +iWW fwY cgo -skF -gNq +sqt +gfV vra -ajX -ajX -ajX -aLB -uaa -uaa -uaa -uaa -fiq -wUS -tbK -sVi -tbK -tbK -bfc -oed -yhQ +iQT +iQT +iQT +sXT +brN +brN +brN +brN +sXT +ewH +aPk +cqT +aPk +aPk +nXN +osi +oJO aaa aab aaa @@ -120227,7 +107526,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -120240,71 +107539,71 @@ aag aag aag aag -lYA -aap -eGF -aar -aIZ -aIZ -aIZ -aIZ -bWh -jSY -abx -hTy -aar -lAj -aao -aao -xgE +avt +lAb +sLm +fuK +fTp +fTp +fTp +fTp +seS +eFV +kvM +dPK +fuK +uuw +wpi +wpi +inn adO -afN +rXf ahh aiw -ahG -bYe -ajt -abg -aqU -xbN -gfE -gfE -kpc -aqU -gjw -cnp -avM +fVM +tpQ +qVJ +mYe +mOi +kUv +kUv +wXz +avg +xDh +pBS +lUq +nWP aqU -wmK +ept liJ -pTj -cnq +eZu +uVC cnS -iWN -aii -abg +ggc +utO +mYe aUH -oyE -mMP -mMP -qVM -vGk -csz -vGk -csz -qVM -jSY -abx -hLO -cix -iBt -iBt -iBt -iBt -qVM -lSD -vGk -czu +ltO +skt +skt +mih +thQ +olY +thQ +olY +mih +phJ +wKO +qZZ +tGB +vIY +vIY +vIY +vIY +mih +wuf +bmp +nMq aag aag aag @@ -120317,7 +107616,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -120327,27 +107626,27 @@ aKQ aaa aaa aab -aKW -aSm -aLf -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -wdb -ahj -ahj +lyZ +jcA +cPE +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +jyK +qJM +qJM jeb -aMx -qHg -qGc +off +kLw +bmQ hxe aPf rth @@ -120355,15 +107654,15 @@ rth rth rth hxe -xHp -cGV -nBa +jiN +ujM +tlY jeb -beB -beB -aYW -bzV -cBA +opq +opq +pVt +nkf +eSE bdd beQ beQ @@ -120371,11 +107670,11 @@ beQ beQ bdd bdd -hjk -bOJ +bWD +wna bdd -hjk -bOJ +bWD +wna bdd bdd beQ @@ -120383,15 +107682,15 @@ beQ beQ beQ bdd -bRQ -cbS -bHW -bJz -bJz +spo +bgb +orr +xHt +xHt vra -bMu -hXb -wDJ +jlv +fcZ +uIr ivs nyQ nyQ @@ -120399,27 +107698,27 @@ pHA nyQ nyQ ivs -lpt -skF -pQF +niw +sqt +bZB vra -ajX -ajX -hBC -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -scI -oDf -yhQ +iQT +iQT +ote +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +kXr +xKL +oJO aaa aab aaa @@ -120430,7 +107729,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -120443,71 +107742,71 @@ aag aag aag aag -lYA -cIU -aao -aar -aIZ -aIZ -aIZ -aIZ -aar -acP -bUE -qFQ -aar -jkL -iaE -aao -mXa +avt +mBv +qua +fuK +fTp +fTp +fTp +fTp +fuK +kvK +knq +wcW +fuK +vNx +qGo +wpi +ocv adO -afO +fmy ahh aiw adO -aEp -xTt -aEp -lmK -lmK -lmK -lmK -lmK -ntj -ntj -ntj -ntj -ntj +mYe +qVJ +mYe +sKC +sKC +sKC +sKC +sKC +mOi +uTT +pBS +uuF +aqU aHq -cnH -kzk -cnR +jbG +tNH +iob aHq -aEp -xTt -aEp +mYe +qVJ +mYe aUH -sIA -gSj -aXA -qVM -vGk -csz -vGk -xHG -qVM -sah -bUE -cbO -qVM -iBt -iBt -iBt -iBt -qVM -toE -ofs -czu +uis +nmU +qlD +mih +thQ +olY +thQ +uQE +mih +phn +dpb +uon +mih +vIY +vIY +vIY +vIY +mih +nGw +qdJ +nMq aag aag aag @@ -120520,7 +107819,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -120530,27 +107829,27 @@ aKQ aaa aaa aab -aKW -bhC -aSm -aKW -bbB -bbB -arn -ajO -ajO -ajO -clC -ajO -ajO -cno -ahj -ahj -ahj +lyZ +jcA +ikl +oCV +lHM +lHM +yfk +jEb +jEb +jEb +sef +jEb +jEb +eUQ +qJM +qJM +qJM jeb -iow -aMO -qGc +pAk +tXe +bmQ hxe rth hXd @@ -120558,71 +107857,71 @@ guW aQM rth hxe -xHp -aUi -iow +jiN +pue +pAk jeb -aLG -aNO -aYY -bal -bbj +dAG +wuv +oSH +dAh +anY bCz -bDV -bGw -bGw -bGw -bGw -bNA -bKA +xee +pmm +pmm +pmm +pmm +dre +nIl bdj -oMe +rnL bdj -bKA -bNA -bGw -bDV -bGw -bGw -bGw +nIl +dre +pmm +xee +pmm +pmm +pmm bCz -buH -iEb -bHW -bHa -vMx +vCY +oMo +orr +rDm +rAg vra -wTw -bNE -wDJ +wYG +wqN +uIr ivs nyQ -gZr +psE vWB bSK nyQ ivs -bUi -bUT -wTw +aBV +cAW +wYG vra -ajX -ajX -ajX -amS -aoc -aoc -uQU -aoc -aoc -aoc -aAv -eZi -eZi -yhQ -wlp -ftl -yhQ +iQT +iQT +iQT +gxg +lYz +lYz +kbw +lYz +lYz +lYz +oSd +wff +wff +oCV +iVF +bpO +oJO aaa aab aaa @@ -120633,7 +107932,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -120646,71 +107945,71 @@ aag aag aag aag -lYA -aap -aap -aar -aIZ -aIZ -aIZ -aIZ -aar -aJa -abg -ccf -aar -cRg -uaZ -aap -epK +avt +lAb +lAb +fuK +fTp +fTp +fTp +fTp +fuK +dUl +fZS +oXA +fuK +wva +lDc +vzt +qWy adO -jkj +pnB ahh aiw adO -uLu -anC -aiC +efA +rdO +mYe ioU -fix -qPE +eVo +lPY xqD -oBJ -igX -pUI -igX -igX -aHq -cnE +ioU +ntj +ntj +ntj +ntj +ntj +xvj liJ -loc -cbn +rWa +oFj aHq -uLu -aQo -aTS -aUd -ckK -iKM -aHM -qVM -vGk -csz -yji -uso -qVM -aJa -abg -ccf -qVM -iBt -iBt -iBt -iBt -qVM -gKS -csz -czu +efA +nDn +mze +iao +xZJ +lyU +weT +mih +thQ +olY +gPV +snX +mih +jBu +aJb +wDk +mih +vIY +vIY +vIY +vIY +mih +dhP +xNF +nMq aag aag aag @@ -120723,7 +108022,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -120733,43 +108032,43 @@ aKQ aaa aaa aab -aKW -aLf -aLF -aKW -bbB -bbB -arn -ajO -ajO -ajO -ajO -ajO -ajO -cno -ahj -ahj -ahj +lyZ +cPE +lOe +oCV +lHM +lHM +yfk +jEb +jEb +jEb +jEb +jEb +jEb +eUQ +qJM +qJM +qJM aLT aLT aLT aLT -ozq -ueZ +uta +fUx aPK aLT aQN -wsR -dAq +ugx +qQx aQL aQL aQL aQL -pGM -aNO -aYW -sLE -aLG +bEy +wuv +pVt +nxo +dAG bCA bCA bdj @@ -120789,43 +108088,43 @@ bCA bdj bCA bCA -buH -iEb -bHW -bHa -bIR +vCY +oMo +orr +rDm +ucI bJC bJC bJC bJC -cib -xvE +blK +vzo bQZ bJC bSL -moM -rXS +oTc +aDG bSJ bSJ bSJ bSJ -ajX -ajX -ajX -amS -aoc -aoc -aoc -aoc -aoc -aoc -aAv -eZi -eZi -yhQ -scI -oDf -yhQ +iQT +iQT +iQT +gxg +lYz +lYz +lYz +lYz +lYz +lYz +oSd +wff +wff +oCV +kXr +xKL +oJO aaa aab aaa @@ -120836,7 +108135,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -120849,71 +108148,71 @@ aag aag aag aag -lYA -aao -aao -aar -aar -aar -aar -aar -aar -eQi -atL -kOG -aar -aar -aar -tiM -aar -aar -lFt +avt +qua +qua +fuK +fuK +fuK +fuK +fuK +fuK +wbW +rJW +foI +fuK +fuK +fuK +cOW +fuK +fuK +jki ahh aiw adO -aSz -anG -aiC +oSp +mjs +mYe ioU -xCT -wTd -cmK -lFm -kXu -kXu -kXu -kXu -kXu -jHC +cNV +jSv +dth +vnW +voV +cYH +voV +voV +voV +rNH liJ qmP -uoH +rlF aHq -aiC -anC -aiC +mYe +rdO +mYe aUH -dbv -lII -aWc -qVM -xeG -qVM -qVM -qVM -qVM -eQi -atL -pef -qVM -qVM -qVM -qVM -qVM -qVM -vGk -vGk -czu +wNW +uiN +ptu +mih +gBY +mih +mih +mih +mih +jfI +ivu +fGz +mih +mih +mih +mih +mih +mih +bmp +bmp +nMq aag aag aag @@ -120926,7 +108225,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -120936,99 +108235,99 @@ aKQ aaa aaa aab -aKW -cmq -bPS -aKW -bbB -bbB -arn -ajO -ajO -ajO -ajO -ajO -ajO -cno -ahj -ahj -ahj +lyZ +rAK +cAA +oCV +lHM +lHM +yfk +jEb +jEb +jEb +jEb +jEb +jEb +eUQ +qJM +qJM +qJM aLT -kaB -vVb +uhu +gHB aLT -aOy -aOz -mKb +jYs +nRD +gHV aLT -vbM -aRP -aSH +cGX +qJI +rVO aQL -mJP -bSn +hPF +gFZ aQL -vHs -ehH -aYZ -sLE -bAV -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bri +qiQ +ndt +mRo +nxo +jpC +eSk +eSk +eSk +eSk +eSk +eSk +eSk +eSk +nIR bdj -bri -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bCB -cbv -iEb -bHY -mru -syP +nIR +eSk +eSk +eSk +eSk +eSk +eSk +eSk +eSk +lBS +oMo +sKj +tlO +wLj bJC -jSp -lAQ +fYA +ghf bJC -bOZ -bPa -vhR +unS +hfL +lhq bJC -mWQ -bTy -bUf +pJo +bfI +gjC bSJ -hII -iJS +nXu +mxs bSJ -ajX -ajX -ajX -amS -aoc -aoc -aoc -aoc -aoc -aoc -aAv -eZi -eZi -yhQ -oYb -fxz -yhQ +iQT +iQT +iQT +gxg +lYz +lYz +lYz +lYz +lYz +lYz +oSd +wff +wff +oCV +nBK +gOr +oJO aaa aab aaa @@ -121039,7 +108338,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -121052,36 +108351,36 @@ aag aag aag aag -lYA -aao -aap -gXh -aao -aap -aap -ahg -aiv -lMM -abg -lCS -aiv -ahg -aap -aap -aao -rfg +avt +qua +lAb +pZA +qua +lAb +lAb +jrj +bQC +gNV +aeA +oNn +ptG +hEq +vzt +vzt +wpi +xNZ aiw ahh aiw nph -aiC -ajF -aiC +mYe +utO +mYe ioU -mSz -nIG -cSk -ene +jfx +jqg +tVt +niD aGN aGN suy @@ -121090,33 +108389,33 @@ uaV nSS iKf aGN -qrv +oZv aHq -cgJ -ajG -aiC -aGz -ckd +fcO +qVJ +mYe +rmo +qqg mQC -aHM -xCX -vGk -vGk -aip -vzl -xCX -bWC -abg -sSR -xCX -weU -csz -gYS -vGk -vGk -csz -csz -czu +weT +qpB +thQ +thQ +kjk +sid +qpB +tDt +lJY +oTo +iPh +bWB +xNF +uRl +bmp +bmp +xNF +xNF +nMq aag aag aag @@ -121129,7 +108428,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -121139,99 +108438,99 @@ aKQ aaa aaa aab -aKW -rJb -yaG -aKW -bbC -aan -aan -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -hhw +lyZ +eqF +oTy +oCV +nWl +tiS +tiS +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV aLT -sXt +aLT +aLT +gsP aMQ -aNI +kjj bfy aMz -sHY +kEI aLT -msm +tfX aRT xMR -aTw +iRK aUj -kLk +pVW aQL -mTn -aiy -aYZ -sLE -bbk -bdk -bdk -bgR -bwc -eqP -pUp -bdk -bdk -brj +pmd +pEn +mRo +nxo +lIZ +lbE +lbE +uPJ +nfc +deO +olL +lbE +lbE +jir bQQ -fSl -bdk -bdk -pUp -eqP -myJ -eKI -bdk -bdk -bGh -iEb -bHY -njy -hkE +mAz +lbE +lbE +olL +deO +jAu +eAe +lbE +lbE +qXi +oMo +sKj +gQD +vyt bJC -ojF +jOR bNG -bOx +gzk chR bJD -mzg +rAU bJC -ycZ +uzf bTA cIr -gHo +hCm bUU -uDW +dRm bSJ bSJ -fiq -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -tGq -tGq -jjT -yhQ -trD -oDf -yhQ +msx +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +fmo +fmo +cuM +oCV +sGA +xKL +oJO aaa aab aaa @@ -121242,7 +108541,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -121256,69 +108555,69 @@ aag aag aag abh -aar -aar -tiM -aar -aar -aar -aar -aar -bWE -aJs -mXU -aar -aar -aar -aar -aap -aar -afP +frX +frX +xDU +frX +frX +frX +frX +frX +qQs +pxz +vAw +fuK +fuK +fuK +fuK +vzt +fuK +fxR ahh aiw nph -aiC -anG -aiC +mYe +mjs +mYe ioU ioU ioU ioU -nmV -oeM -oeM -pUd -oeM -eed +uVG +wKl +wKl +gVY +wKl +gQz udZ aGN aGN -pSU +quQ aHq -czM -ajG -aiC -aGz -drk +vWS +qVJ +mYe +rmo +rWe mQC -mkG -qVM -oLw -qVM -qVM -qVM -qVM -bWE -aJs -mXU -qVM -qVM -qVM -qVM -qVM -xeG -qVM -qVM +azp +mih +meR +mih +mih +mih +mih +pRa +eoa +sWM +gcO +gcO +gcO +gcO +gcO +uek +gcO +gcO uOi aag aag @@ -121332,7 +108631,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -121342,43 +108641,43 @@ aKQ aaa aaa aab -aKW -aLf -aaz -aKW -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -aKW -hhw +lyZ +cPE +jmN +oCV +edL +edL +edL +mgp +mgp +mgp +mgp +mgp +mgp +mgp +oCV +aLT aLT aLT aLT aLT aLT tNR -aMP -eAg +nIQ +oSo aLT -qoJ -aRZ +rFk +eFY aSI aQL aQL aQL aQL aQL -uQn -aYZ -sLE -bbl +fEa +mRo +nxo +yla bdl bdl bdl @@ -121387,9 +108686,9 @@ bdl bdl bGo bGo -bPB -pCr -bRR +qid +muv +uBF cpK cpK bdl @@ -121398,43 +108697,43 @@ bdl bdl bdl bdl -bGi -iEb -bHY -oyy +qKD +oMo +sKj +dOo bJC bJC bJC bJC bJC mjS -bNF -szM +hNC +gQg bJC -qrc -bTE +jru +vbb syH bSJ bSJ bSJ bSJ bSJ -fiq -yhQ -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -yhQ -scI -oed -yhQ +msx +oCV +xIu +xIu +xIu +xIu +xIu +xIu +xIu +szJ +szJ +szJ +oCV +kXr +osi +oJO aaa aab aaa @@ -121445,7 +108744,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -121461,62 +108760,62 @@ aag abh acx vuG -aeC +lIY aeA aeA -axw +fJa aeA bbe aeA -aeC +lIY aeA bbe aeA aeA -aar -aap -aar +fuK +vzt +fuK afQ aiw aiw nph -aiC -anG -aiC +mYe +mjs +mYe ioU -lPO -vJg +tTM +xVW ioU -vQf -oeM -oeM -eed -oeM -eed +cYO +wKl +wKl +gQz +wKl +gQz vQq eEo aGN -rub +fVn aHq -cES -ajG -aiC -aGz -eqB -obC -hcf -qVM -lau -qVM +mnp +qVJ +mYe +rmo +vBR +eEY +xBm +mih +cvA +mih lJY lJY lFK lJY -vcE +fno lJY lFK lJY -lMY +cha lJY qvI lJY @@ -121535,7 +108834,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -121545,99 +108844,99 @@ aKQ aaa aaa aab -aKW -aSm -aLf -aKW -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -aKW -hhw +lyZ +nUr +nUr +oCV +edL +edL +edL +mgp +mgp +mgp +mgp +mgp +mgp +mgp +oCV +aLT aLT -bbY +eyh bdr -bdz +xDT bdr bft -bgU -bhG +tHk +cpu aLT -bjs -blA +rNr +tAS bno bpC -brn +nuO aRT -buM +akg aQL -aLG -aYZ -sLE -bbl +dAG +mRo +nxo +yla bdl -bEr -bEs -bIs -bdm -rbY -gwD -bOK -bPD -nSj -bPD -jOk -bNB -mCo -xGo -bYu -nmK -caf +rTF +rsJ +hEp +khf +igl +kBm +oXS +toA +sRj +toA +itt +spt +xwW +haw +uSo +tfN +wlz bdl -bGj -iEb -bHY -buH +sNy +oMo +sKj +vCY bJC -cdT +fKR cfo -cgq +slU cfo chM -cjd -cjA +vMD +xEh bJC -ckr -ckQ +cda +eMl clh clg -clI +xUr clg -clW +tiy bSJ -fiq -yhQ -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -yhQ -wlp -oed -yhQ +msx +oCV +xIu +xIu +xIu +xIu +xIu +xIu +xIu +szJ +szJ +szJ +oCV +seX +yan +oJO aaa aab aaa @@ -121648,7 +108947,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -121662,69 +108961,69 @@ aag aag aag abi -acz +lJh aeA aje amF asA -ayb +uHc amF amF amF -ayb +uHc asA amF kmE aeA -aar -awJ -aar +fuK +kiR +fuK ahJ ahJ ahJ adO -aiC -ajF -aiC +mYe +utO +mYe ioU -dnS -viN -bAu +vmJ +iqr +gRZ nVB -eHY -oeM -eed -oeM -eed +lLq +wKl +gQz +wKl +gQz ptd aRi aGN -qrv +oZv aHq -aOS -ajG -aiC +hKf +qVJ +mYe aUH -aGz -aGz -aGz -qVM -hoX -qVM +oPn +oPn +oPn +mih +miO +mih lJY qbx dcp yeH -sSl +baJ dcp dcp dcp -sSl +baJ yeH dcp nja lJY -xxZ +oMb uyC aag aag @@ -121738,7 +109037,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -121748,99 +109047,99 @@ aKQ aaa aaa aab -aKW -bhC -aSm -aKW -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -aKW -hhw +chb +daZ +daZ +oCV +edL +edL +edL +mgp +mgp +mgp +mgp +mgp +mgp +mgp +oCV +aLT aLT -bca -aMC +gou +uNf aLT -avv -bfu -rGj -aQT +eKs +qfw +fkk +hnF aLT -aTv -blB -bnp -aTx +xWr +maX +mpD +now aQL -aUY -buN +scq +tSQ aQL -aLG -aYZ -sLE -bbl +dAG +mRo +nxo +yla bdl -bDX +arx bCA bCA bdj -rbY -bEc -bKA +igl +isY +nIl bCA -gJs +qbQ bCA -bKA -bEc -mCo -tjl +nIl +isY +xwW +ylz rIH tUh -cag +laD bdl -bGk -iEb -bHY -buH +uzd +oMo +sKj +vCY bJC -cdU -bMy +liq +ohK bJC -cog -chN -mzg -cdP +itd +kjM +rAU +iab bJC -dpO -ckX -cli -coj +uXC +jPu +laM +uth bSJ -bVo -clX +tKa +wZe bSJ -fiq -yhQ -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -yhQ -scI -uqH -yhQ +msx +oCV +xIu +xIu +xIu +xIu +xIu +xIu +xIu +szJ +szJ +szJ +oCV +vpv +dGa +taY aaa aab aaa @@ -121851,7 +109150,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -121865,69 +109164,69 @@ aag aag aag abi -acA +hvY aeA ajk aeA -aeC -aeC -aeC -tpt -aeC -aeC -aeC +lIY +lIY +lIY +vYL +lIY +lIY +lIY vOh gUX ily -aar -tiM -aar -aWd -aWd -aWd -pji -aiC -ajF -aiC +fuK +cOW +fuK +lIY +lIY +lIY +nkH +mYe +utO +mYe ioU -pPM -qKz +fzZ +skH ioU -mGu -fXx -fXx -kXf -huO -iLO -igZ -xNv -iLO -bUa +vwj +lbt +lbt +cef +dVj +qIb +pud +toe +qIb +pQv aHq -aSz -anC -aiC -pji -aWd -aWd -aWd -qVM -xeG -qVM +oSp +rdO +mYe +nkH +fno +fno +fno +mih +gBY +mih cBb xVS lJY -vcE -vcE -vcE -oDO -vcE -vcE -vcE +fno +fno +fno +dWM +fno +fno +fno eKH lVo lJY -kAm +ptX uyC aag aag @@ -121941,7 +109240,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -121951,99 +109250,99 @@ aKQ aaa aaa aab -aKW -aSm -aLf -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -hhw +chb +tno +tno +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +aLT aLT aLT aLT aLT aLT -bfx -rGj -aQT +gax +fkk +hnF aLT -aTv -blB -kiU +xWr +maX +jKy aQL aQL aQL aQL aQL -pGM -aYZ -sLE -bbm +bEy +mRo +nxo +vcO bdl -bDY +fec bCA bCA -nLt -gmb -bNQ -bNQ -bNQ -bNQ -bNQ -bNQ -bNQ -nXU -bKA -jac +mcB +pGL +vOC +vOC +vOC +vOC +vOC +vOC +vOC +jzt +nIl +iTU bCA -cah +yaJ bdl -bGl -iEb -bHY -bIR +svR +oMo +sKj +ucI bJC bJC bJC bJC bJC -chO -mzg -cdP +wid +rAU +iab bJC -dpO -ckX -clj +uXC +jPu +mVQ bSJ bSJ bSJ bSJ bSJ -fiq -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -wlp -oDf -yhQ +msx +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +oCV +dTV +wZo +taY aaa aab aaa @@ -122054,7 +109353,7 @@ aaa aaa aab aaa -aad +bHS aag aag aag @@ -122069,29 +109368,29 @@ aag aag abh acx -ahz -ajs -aeC -aeC -ayc -aOE -aOE -aOE -ciu -aeC -aeC -ajs -aeC -aGD -aWd -eTO -anR -anR -lNl -aFW -aSy -anH -aoB +ban +gQM +lIY +lIY +ffi +mas +mas +mas +tTo +lIY +lIY +gQM +lIY +vAw +lIY +rcy +cng +cng +gSz +uQe +kMr +vGs +icz alL alL alL @@ -122107,29 +109406,29 @@ jvY alL alL alL -aSy -aoS -dZd -aFW -aIe -anR -anR -uWC -aHQ -apj -vcE -kUV -vcE -vcE -eCo -iry -iry -iry -sYw -vcE -vcE -kUV -cil +kMr +vGs +icz +uQe +mNw +evf +evf +jvq +eoa +pRa +fno +jHJ +fno +fno +vay +wNa +wNa +wNa +uQd +fno +fno +jHJ +iaa rRq uOi aag @@ -122144,7 +109443,7 @@ aag aag aag aag -ajZ +woL aaa aaa aab @@ -122154,99 +109453,99 @@ aKQ aaa aaa aab -aKW -aSm -aLf -aLf -ycV -aLf -aSm -bbx -izU -gFs -yaG -bPV -aaz -bPT -eko -bPV +chb +rUK +saZ +rAp +fDk +saZ +rUK +uaO +gYb +jwy +qFt +vDN +kTg +tdH +pqG +vDN aLT -bco -aMB -bdA +rhz +lFg +lXY aLT -ial -rGj -aPl +iJN +fkk +hlY aLT -aPn -aRU -bnr +hwq +osH +nMR aQL -brr -aUZ -buO +lBj +gtT +qMi aQL -aLG -aYZ -sLE -jJs +dAG +mRo +nxo +jVk bdl -bDZ +xBN bdj -bri -bLX +nIR +eMx bdl -mzk -bNP -bmD -bNP -bmD -bNP -bmD +oqE +cMm +elw +cMm +elw +cMm +elw mYv -doP -jac -isS -cai +eRF +iTU +nTR +pMw bdl -bII -iEb -bHY -buH +jGu +oMo +sKj +vCY bJC -cdV -bMx -cgr +nsW +krg +rFz bJC -raK -mzg -bgW +nSu +rAU +kuM bJC -ckR -ckX -iyS +sam +jPu +cRk bSJ -clJ -bVn -clY +lVi +jrI +xJx bSJ -fiq -iFm -anb -anb -anb -kKX -uvs -ixP -fiq -kUt -hGZ -tbK -tbK -sQU -ebY -yhQ +msx +pPK +vFc +vFc +vFc +vhg +pMH +lyL +msx +jmn +uDs +jVp +jVp +iUS +vLU +taY aaa aab aaa @@ -122257,11 +109556,11 @@ aaa aaa aab aaa -aae -aah -aah -aah -aah +fpk +hWR +hWR +hWR +hWR aag aag aag @@ -122272,67 +109571,67 @@ aag aag abh acx -adQ -ajs -aeC -wXh -ayn +umx +gQM +lIY +xXi +uju atr -aeA +puV aex -ciw -wXh -aeC -ydz -ayb -aGC -tSw -agJ -aXE -aXE -agJ -aFV -hPK -aXE -akH +hdq +xXi +lIY +htv +uHc +nwr +gwq +cTD +asA +asA +cTD +fRi +bnM +qLx +mPO jvY jvY jvY jvY -apW -aqV -asH -aui -avN -aqV -axV +cbJ +xcP +lGA +iir +nJm +xcP +ved jvY jvY jvY jvY -aSB -iWd -elA -aFV -aGC -aXE -aXE -aGC -rph -agJ -sSl -kkx -vcE -kpo -iMx +skw +hCP +xqY +fRi +gYo +yeH +yeH +gYo +bFz +rYb +baJ +jGC +fno +dMD +kox tGi -lJY +iMf bXe -eyG -kpo -vcE -kUV -mvH +bGE +dMD +fno +jHJ +vmE rRq uOi aag @@ -122343,11 +109642,11 @@ aag aag aag aag -aah -aah -aah -aah -afm +hWR +hWR +hWR +hWR +rNc aaa aaa aab @@ -122357,99 +109656,99 @@ aKQ aaa aaa aab -aKW -aLF -bbx -bPS -ktP -aSm -aLf -aSm -ecM -enf -ecM -aSm -aLf -bbx -eko -lLV +chb +uWF +uaO +jLF +bDG +rUK +saZ +rUK +bgV +jGt +bgV +rUK +saZ +uaO +pqG +qnE aLT -bco +rhz bdr -bdA +lXY aLT -bfw -rGj -aQT +oRS +fkk +hnF aLT -aTv -blB -vJV +xWr +maX +lgO aQL -brr +lBj aRT -buO +qMi aQL -aLG -aYZ -sLE -bkY +dAG +mRo +nxo +eqC bdl -lOr -lOr -iwI -lOr +usZ +usZ +sUx bdl -bEt -bNP -bmD -bNP -bmD -bNP -byu -obo -tiE -bYv -tiE -tiE bdl -rqw -iEb -bHY -buH +koL +cMm +elw +cMm +elw +cMm +sLF +nRp +xwW +sXG +xwW +xwW +bdl +rbL +oMo +sKj +vCY bJC -cdV +nsW cfo -cgr +rFz bJC -chQ -mzg -cdP +qEi +rAU +iab bJC -dpO -ckX -clk +uXC +jPu +kzI bSJ -clJ +lVi clg -clY +xJx bSJ -fiq -wUS -tbK -tbK -bfc -ant -glM -mUn -fiq -suT -oed -oed -oed -uim -qNy -yhQ +msx +suA +jVp +jVp +pnP +kZt +tKQ +bIk +msx +qpP +hWu +hWu +hWu +vpX +mBw +taY aaa aab aaa @@ -122465,87 +109764,87 @@ aaa aaa bdH aaa -aae -aah -aah -aah -aah -aah -aah -aah +fpk +hWR +hWR +hWR +hWR +hWR +hWR +hWR abi -acE +fPW adZ ajk aeA asY -ayQ +osF atr -bbX +jnu atr -ciD +vnn ngl aeA ajk aeA -aIe -aWd -kYP -aHQ -aHQ -apj -aFW -rFY -aVY -akI +eRn +lIY +oZC +pxz +pxz +qQs +uQe +ceV +uxT +uFY jvY -arg -atf +eOv +oFz jvY -apX -aqb -asI -aqb -avO -aqb -axW +prd +wjX +dXZ +wjX +sRt +wjX +pWP jvY -aMm -aOq +oal +tHM jvY -aDx -dsk -mLU -aFW -aGD -aHQ -aHQ -lKk -kKb -lNl +jKu +uxT +uFY +uQe +sWM +eoa +eoa +iKx +ceL +sEJ lJY xVS lJY ttS -wEO +fzv faO -haM +isR bXe -deg +fZc wLu lJY xVS fqg -uGa +qyI uyC -aah -aah -aah -aah -aah -aah -aah -afm +hWR +hWR +hWR +hWR +hWR +hWR +hWR +rNc aaa aaa aaa @@ -122560,99 +109859,99 @@ aKQ aaa aaa aab -aKW -aKW -aKW -aKW -aKW -uDB -aLf -aSm -uGw -uJl -ihn -aSm -aLf -aSm -aSm -eko +chb +chb +chb +chb +chb +muN +saZ +rUK +qBX +msk +ahP +rUK +saZ +rUK +rUK +pqG aLT -bcZ +iym bdr -bdC -beR +cgw +hEl bfy -rGj -aQT +fkk +hnF aLT -aTv -blB +xWr +maX bnt -bpG -brs +oPr +aAY aRT -bew +hqC aQL -beB -aYW -bzV -beB +opq +pVt +nkf +opq mCo -xfw -lBF -bKA -sbM -pWA -pXV -bNP -bmD -bNP -bmD -bNP -bmD -lyk -bOR -eHa -opj -xAB +wfC +fvx +nIl +igF +xFb +pEj +cMm +elw +cMm +elw +cMm +elw +gmg +kBL +qjI +hoG +qtV mCo -bJz -cbS -bHW -bJz +xHt +bgb +orr +xHt bJC -bKX +uNn cfo -cgs -chk +mvh +eVX chR -mzg -cdP +rAU +iab bJC -dpO -ckX +uXC +jPu cll -clE -clK +mDi +iwZ clg -bVy +syl bSJ -fiq -fiq -fiq -fiq -lra -ujA -fiq -fiq -fiq -jbb -uNW -yhQ -yhQ -yhQ -yhQ -yhQ +msx +msx +msx +msx +frW +kMk +msx +msx +msx +vqk +hwZ +taY +taY +taY +taY +taY aaa aab aaa @@ -122677,69 +109976,69 @@ bdH bdH bdH abi -acT +kpZ adZ ajk aeA atp -ayR +jUm atr -eGb +jnu atr -cji +ntE nqV aeA ajk ily -psm -jFX -psm -blb -aWd -aXT -pji -aEp -aEp -akJ +ckV +xYv +ckV +pxa +lIY +gab +nkH +adz +qVJ +xlM jvY -arh +cGE atm jvY -apY -aqb -asJ -aqb -avP -aqb -axX +lrY +wjX +eUN +wjX +dUu +wjX +bgE jvY nSG -aOs +oXN jvY -aEp -ixC -aEp -pji -jFg -aWd -pCD -vuv -orm -vuv +adz +utO +xlM +nkH +hkX +fno +pvu +xQW +tBr +xQW cBb xVS lJY hlX -umh +bME bXe -lxT +isR tGi -pfH +hCK wlF lJY xVS fqg -mIA +xFH uyC bdH aaa @@ -122767,91 +110066,91 @@ aaa aaa aaa aaa -aKW -uAs -aLf -aSm -kOf -oIn -kOf -aSm -aLf -bzF -aSm -aLf +chb +tfx +saZ +rUK +aCF +rpg +aCF +rUK +saZ +dnd +rUK +saZ aLT -bco +rhz bdr -bdA +lXY aLT -bfD -aPj -aPl +qEA +pTu +hlY aLT -aPn -blB -sNb +hwq +maX +mWg aQL -brr +lBj aRT -buO +qMi aQL -aXS -aYZ -kfP -tBF -bmv -bEg +nLH +mRo +rml +cxb +mar +sIO bGU bGU -bKz -snw -qsC -bNL -bNL -bNL -bNL -bNL -bNL -bWL -bXH +rrc +oec +dgQ +rZw +rZw +rZw +rZw +rZw +rZw +pxc +jJS bYw nDM -bWL -sSa -qLp -lYi -bIb -mHm +pxc +ogH +lzd +rtq +qNQ +vQd bJC -cdV +nsW cfo -cgr +rFz bJC -foL -mzg -bgW +eGL +rAU +kuM bJC -ckR -ckX -loS +sam +jPu +xxd bSJ -clJ +lVi clg -clY +xJx bSJ -iGK -tbK -tbK -tbK -sQU -wUS -hGZ -tbK -tbK -sQU -oDf -yhQ +qIF +jVp +jVp +jVp +iUS +suA +uDs +jVp +jVp +iUS +dXv +taY aaa aaa aaa @@ -122881,67 +110180,67 @@ aaa bdH abh acx -umR -ajs -aeC -wXh -ayn +qVd +gQM +lIY +xXi +uju atr -aeA +oLa bXz -ciw -wXh -aeC -ajs -qon -psm -tNT +hdq +xXi +lIY +gQM +gHF +ckV +raz aep ggQ ggQ aME aep -aiB -ajN -akK +adz +rdO +xlM jvY -ari +eWr aoP jvY -apZ -aqb -asK -aqb -avQ -aqb -aqa +iDM +wjX +uHz +wjX +kDS +wjX +bKx axo atm -aOr +ghk jvY -aiB -aWf -aiB +adz +utO +xlM aep aME ggQ aME aep -vSg -vuv -dHe -kUV -vcE -kpo -iMx +sPp +xQW +xxS +jHJ +fno +dMD +kox bXe -lJY +vmV mzF -eyG -kpo -vcE -kUV -pPF +bGE +dMD +fno +jHJ +kIp rRq uOi bdH @@ -122970,91 +110269,91 @@ aaa aaa aaa aaa -aKW -bPU -bPS -bbx -moh -iIY -bPW -xlD -aLf -aSm -aSm -aLf +chb +uTk +jLF +uaO +vvt +xDb +rOO +neN +saZ +rUK +rUK +saZ aLT -bco -aMC -bdA +rhz +uNf +lXY aLT -bfx -bgY -aQT +gax +ihb +hnF aLT -aTv -blB -nCp +xWr +maX +vmI aQL -brr -aUY -buO +lBj +scq +qMi aQL -aLG -aYZ -sLE -jJs +dAG +mRo +nxo +jVk mCo -bEh -bNQ -bNQ -bNQ -pjG -boy +cLD +vOC +vOC +vOC +gnq +udy bpQ bpQ -bsJ +lWi bpQ bpQ -bxf -bZr -bKA -bKA -cXR -cal +czQ +hcS +nIl +nIl +wOz +hgN mCo -pJJ -iEb -bHY -buH +wwV +oMo +sKj +vCY bJC -cdV -bMy -cgr +nsW +ohK +rFz bJC -chP -mzg -cdP +trP +rAU +iab bJC -dpO -ckX -cln +uXC +jPu +xUZ bSJ -clJ -bVo -clY +lVi +tKa +xJx bSJ -pNG -oed -oed -oed -oed -oDf -mOU -oDf -oed -oed -uFt -yhQ +lhT +hWu +hWu +hWu +hWu +dXv +sDE +dXv +hWu +hWu +glv +taY aaa aaa aaa @@ -123084,67 +110383,67 @@ aaa bdH abh acx -aeB -ajs -aeC -aeC -azk -aOU -biL -biL -cmF -aeC -aeC -ajs -aeC -psm -xlX +esb +gQM +lIY +lIY +puh +mmR +mGF +mGF +wyI +lIY +lIY +gQM +lIY +ckV +crz aep afj afk agM aep -alG -aYj -aoD +adz +mjs +xlM jvY -arj +jRp atm jvY -xRH -aqb -aqb -aqb -aqb -aqb -aqb -bzD +beq +wjX +wjX +wjX +wjX +wjX +wjX +ikn atm -aOs +oXN jvY -alG -anG -apd +adz +mjs +xlM aep aHS afk sHo aep -sFR -vuv -vcE -kUV -vcE -vcE -shs -kAU -kAU -kAU -aYE -vcE -vcE -kUV -riP +xag +xQW +fno +jHJ +fno +fno +sMN +sAh +sAh +sAh +ffb +fno +fno +jHJ +lxN rRq uOi bdH @@ -123173,91 +110472,91 @@ aaa aaa aaa aaa -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -aKW -ycV -ktP +chb +chb +chb +chb +chb +chb +chb +chb +chb +chb +fDk +bDG aLT aLT aLT aLT aLT -hQW -bgY -aQT +cor +ihb +hnF aLT -aTv -blB -qhU +xWr +maX +kuc aQL aQL aQL aQL aQL -aLG -aYZ -sLE -qFb +dAG +mRo +nxo +jsH bdl bEi -bZr -bmD -ngw -pjG +hcS +elw +kYi +gnq boz -bpR -bpR -bpR -bpR -bpR +ndq +ndq +ndq +ndq +ndq bxg -bZr -bKA -bKA -cir +hcS +nIl +nIl +jNX bdl bdl -lgX -iEb -bHY -buH +fiH +oMo +sKj +vCY bJC bJC bJC bJC bJC -uUo -mzg -cdP +cdt +rAU +iab bJC -dpO -ckX -sUO +uXC +jPu +jGs bSJ bSJ bSJ bSJ bSJ -scI -oed -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ -yhQ +ufC +hWu +taY +taY +taY +taY +taY +taY +taY +taY +taY +taY aaa aaa aaa @@ -123286,69 +110585,69 @@ aaa aaa bdH abi -acX +lYR aeA aju amH -aeC -aeC -aeC -tpt -aeC -aeC -aeC +lIY +lIY +lIY +vYL +lIY +lIY +lIY aeA ajk aeA -psm -xlX +ckV +crz aep afk afk afk aep -alG -aYj -aoD +adz +utO +xlM jvY -ark +cxu atm jvY -bhf -aqb -asL -aqb -avR -aqb -kTv +qHL +wjX +kMB +wjX +vmB +wjX +uGH axo atm -thv +rxi jvY -alG -anG -apd +adz +mjs +xlM aep afk aHl afk aep -kMq -vuv +sKp +xQW lJY itR kKR -vcE -vcE -vcE -oDO -vcE -vcE -vcE +fno +fno +fno +dWM +fno +fno +fno lJY xVS lJY -hki +oQw uyC bdH aaa @@ -123385,73 +110684,73 @@ aaa aaa aaa aaa -wVb -eFH -hlz +chb +saZ +rUK aLT -bcE -aMB -bdD +jkC +lFg +xiU aLT -bfz -bgY -aPl +iyt +ihb +hlY aLT -aPn -blB -bnu +hwq +maX +hQf aQL -brt -aUZ -buS +sEN +gtT +qcU aQL -aLG -aYZ -sLE -jJs +dAG +mRo +nxo +jVk bdl brp -bZr -bmD -xId -pjG +hcS +elw +lvz +gnq boz -bpR -bpR -bpR -bpR -bpR +ndq +ndq +ndq +ndq +ndq bxg -bZr -bNQ -bNQ -bNQ -ohl -hMs -cbw -iEb -bHY -buH +hcS +vOC +vOC +vOC +oQq +lxS +roh +oMo +sKj +vCY bJC -cdX -bMx -cgt +vKz +krg +vau bJC -chS -bQA -bgW +kMu +uye +kuM bJC -ckR -ckX -meu +sam +jPu +vLV bSJ -clL -bVn -clZ +qDa +jrI +fck bSJ -dGz -cAH -vTK +lhT +hWu +taY aaa aaa aaa @@ -123489,33 +110788,33 @@ aaa aaa bdH abi -acY +paR aeA ajv amF asA -ayb +uHc amF amF amF -ayb +uHc asA amF ohL aeA -psm -dmQ +ckV +nJq aep aep aep aep aep -alJ -aYj -aoD +bVY +jWo +bVY jvY alL -atk +lNZ jvY jvY axo @@ -123525,33 +110824,33 @@ axo axo jvY jvY -aAy +gHW alL jvY -alG -anG -apd +bVY +hFK +bVY aep aep aep aep aep -cBi -vuv +vDf +xQW lJY ucw dcp yeH -sSl +baJ dcp dcp dcp -sSl +baJ yeH dcp lMp lJY -jbt +gNf uyC bdH aaa @@ -123577,6 +110876,8 @@ aaa aab aaa aaa +bdH +bdH aaa aaa aaa @@ -123586,85 +110887,83 @@ aaa aaa aaa aaa -aaa -aaa -wVb -iDm -hlz +chb +rxs +rUK aLT -bcE +jkC bdr -bdD +xiU aLT -rrq -bgY -aQT +cfl +ihb +hnF aLT -aTv -blB -mtr +xWr +maX +enU aQL -brt +sEN bpC -buS +qcU aQL -aNn -aYZ -sLE -jJs +wSH +mRo +nxo +jVk bdl bEl wup -bmD -hBz -pjG -boA -bpR -bpR -bsK -bpR -bpR -bxh -bZr -krN -krN -krN +elw +bGY +gnq +mgn +ndq +ndq +hmq +ndq +ndq +jVF +hcS +mfq +mfq +mfq llt -can -buH -iEb -bHY -buH +dOX +vCY +oMo +sKj +vCY bJC -cdX +vKz cfo -cgt +vau bJC -chQ -cjf -cdP +qEi +eFg +iab bJC -dpO -ckX -xoe +uXC +jPu +cjY bSJ -clL +qDa clg -clZ +fck bSJ -xRE -ebO -vTK -aaa -aaa -aaa -aaa -aaa +hsu +xBX +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -123697,59 +110996,59 @@ aeA aeA aeA aeA -aeC +lIY aeA aeA aeA -aeC +lIY ntI aeA -aeC +lIY puO -psm -xlX -egS +ckV +crz +uPS aep aep aep aep -alG -aYj -aoD +xTk +cHZ +ttN jvY -arl +vsL atm alL -awv -axu -azc -aAZ -aDa -aFh -aHr +fPt +kfM +yjw +rIX +vuY +tQu +edm alL aMo -aOt +fTG jvY -alG -anG -apf +xTk +dHs +rhX oIB -tSF -xKw -jog +faK +sWZ +bec oIB -sFR -vuv +xag +xQW lJY uxC lJY lJY -fFe +nzJ lJY lJY lJY -vcE +fno lJY lJY lJY @@ -123780,6 +111079,8 @@ aaa aab aaa aaa +bdH +bdH aaa aaa aaa @@ -123789,85 +111090,83 @@ aaa aaa aaa aaa -aaa -aaa -wVb -eFH -hlz +chb +saZ +rUK aLT -abS +cYx bdr -bdC -beS +cgw +aXM bfy -bgY -aQT +ihb +hnF aLT -aTv -blB +xWr +maX bnt -bpH -brs +nzq +aAY bpC -abT +tYg aQL -beB -aYW -bzV -beB +opq +pVt +nkf +opq bdl buz -bZr -bmD -dmE -pjG +hcS +elw +wTO +gnq boz -bpR -bpR -bpR -bpR -bpR +ndq +ndq +ndq +ndq +ndq bxg -bZr -ibc -uly -bNN -fXt -pky -cbv -cbS -bHW -bJz +hcS +gYh +xBy +jHk +tgu +icr +lBS +bgb +orr +xHt bJC -ack +rSU cfo -cgs -chl +mvh +cfZ chR -cjf -cdP +eFg +iab bJC -dpO -ckX +uXC +jPu cll -clF -clK +qcq +iwZ clg -acp +uUI bSJ -vMn -vuR -vTK -aaa -aaa -aaa -aaa -aaa +xPg +dXv +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -123898,63 +111197,63 @@ abh abh abh abh -aeC +lIY atr -aeC +lIY atr -aeC -psm -psm -psm -psm -jFX -psm -psm -xlX -aeq -psm -psm -psm -psm -alG -aYj -aoD +lIY +ckV +ckV +ckV +ckV +wBd +ckV +ckV +crz +oRt +ckV +ckV +ckV +ckV +xTk +cHZ +ttN jvY -abF +eoo atm -auH +jZH atm atm atm -aBb +fNu aFi aFi aHs -aIT +wzY atm -aVF +rmW jvY -alG -aYD -uPI +xTk +qwX +ePJ oIB -hJh -vMC -iUC +sNK +cTG +nxk oIB -sFR -vuv -vuv -vuv -vuv -sdw -vuv -vuv -vcE +xag +xQW +xQW +xlG +xlG +cTU +xlG +xlG +fno bXe -vcE +fno bXe -vcE +fno uOi uOi uOi @@ -123983,6 +111282,8 @@ aaa aab aaa aaa +bdH +bdH aaa aaa aaa @@ -123992,85 +111293,83 @@ aaa aaa aaa aaa -aaa -aaa -wVb -hlz -eFH +chb +rUK +saZ aLT -bcE -aMC -bdD +jkC +uNf +xiU aLT -bfC -bgY -aPl +xuj +ihb +hlY aLT -aPn -aRX -cSQ +hwq +vvK +wVo aQL -brt -aUY -buS +sEN +scq +qcU aQL -aLG -aYZ -sLE -uBw +dAG +mRo +nxo +tMs bdl bEm -bZr -bmD -hAc -pjG +hcS +elw +fWQ +gnq boz -bpR -bpR -bpR -bpR -bpR +ndq +ndq +ndq +ndq +ndq bxg -bZr -xBV +hcS +ieg uys uys uys uys -iRr -iEb -bHY -buH +ehe +oMo +sKj +vCY bJC -cdX -bMy -cgt +vKz +ohK +vau bJC -chV -cjf -bgW +vLd +eFg +kuM bJC -ckR -bTC -mvl +sam +cIo +mnU bSJ -clL -bVo -clZ +qDa +tKa +fck bSJ -bob -emG -vTK -aaa -aaa -aaa -aaa -aaa +aCe +cQT +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -124097,71 +111396,71 @@ aaa aaa aaa aaa -aad +bHS aag aag abh -aeC +lIY atr -aeC +lIY atr -aeC -psm -cnU -nGc -psm -cWI -psm -whc -xlX -dmQ -psm -dmQ -dmQ -psm -alK -ajP -aoD +lIY +ckV +cCI +xLN +ckV +sEX +ckV +tQZ +crz +nJq +ckV +nJq +nJq +ckV +mdC +nOi +ttN jvY jvY jvY jvY -awx -awx -azd -aBc -aDb -awx -awx +mBG +mBG +oDm +ttK +eOe +mBG +mBG jvY jvY jvY jvY -sUF -anG -apd +uSH +dHs +ttN oIB -ufS +tOJ bZw -kaJ +dPy oIB -sFR -hPo -vuv -dnk -rCp -fbx -cEO -vuv -vcE +xag +eCG +xQW +ndV +sDp +bSW +ako +xlG +fno bXe -vcE +fno bXe -vcE +fno uOi aag aag -ajZ +woL aaa aaa aaa @@ -124197,83 +111496,83 @@ aaa aaa aaa aaa -wVb -qnP -jPf +chb +rRP +dwL aLT aLT aLT aLT aLT -bfx -bgY -aQT +gax +ihb +hnF aLT -aTv -blB -sNb +xWr +maX +mWg aQL aQL aQL aQL aQL -bxx -byF -bzW -bxx +xwP +gAV +pBz +xwP bdl -bpT -bNN -bNN -bNN -bmB -boB +qPL +jHk +jHk +jHk +gdU +nPS bpS bpS -bsL +wLo bpS bpS -bxi -bZr -bKA -dyx -eYr -iii +cTZ +hcS +nIl +cKi +wSG +poN uys -cbz -cbU -ccu -cbz +eZc +yek +phk +eZc bJC bJC bJC bJC bJC -chW -rvT -cdP +bAt +qDY +iab bJC -dpO -ckX -hAZ +uXC +jPu +ylZ bSJ bSJ bSJ bSJ bSJ -cJP -vuR -vTK -aaa -aaa -aaa -aaa -aaa +lcz +dXv +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -124300,71 +111599,71 @@ aaa aaa aaa aaa -aad +bHS aag aag abh -aeC -atu -azU -aeC -ldl -psm -xlX -nYh -psm -xuI -psm -miK -tXW -gfk -fBf -tXW -tXW -fBf -aTS -ajP -aoD +lIY +oAh +xft +lIY +iPT +ckV +crz +nbY +ckV +mSn +ckV +pFs +hzQ +erc +cie +hzQ +hzQ +cie +mch +nOi +ttN alL -urM -dBG +kES +smq jvY jvY jvY jvY -aBf +sST jvY jvY jvY jvY -wjv -fDG +pde +uPO alL -alG -aYD -aTS -qgK -tEB +xTk +qwX +mch +eYs +cZD llD -gGl +ioG oIB -lBR -nVu -vuv -jvI -cxo -fbx -jnk -vuv -vcE -pxJ -swM -vcE -fFe +rzn +mzv +xQW +qhi +qwE +bSW +pjj +xlG +fno +qFV +cOa +fno +nzJ uOi aag aag -ajZ +woL aaa aaa aaa @@ -124400,83 +111699,83 @@ aaa aaa aaa aaa -wVb -hlz -moE +chb +rUK +kNU aLT -bdJ -bds +fvM +vKX aLT -bpL -bfE -njd -aQT +wcc +uPh +vhA +hnF aLT -aTv -blB -uvu -aUZ +xWr +maX +lUY +gtT aQL -bsS -mqK +qJt +fKU aQL -aLG -aYZ -sLE -jJs +mcE +mKu +rhv +lqb bdl -bEp -bCA +oDt bCA -cvb -bmC -nwG -lDL -nwG -lMw -jeO -nQv -ltb -bmD -bKA -dyx -hGN -ddN +tbV +pKd +dBL +ktx +hDb +ktx +kuR +mvr +pZP +kKc +elw +nIl +cKi +ydo +nMI uys -ttM -iEb -ccv -bIS +asr +kRa +btg +xZi bJC -cfp -cgu +gFJ +est bJC -bMx -chQ -cjf -cdP +krg +qEi +eFg +iab bJC -dpO -ckX -clo -bVn +uXC +jPu +cJz +jrI bSJ -clM -clS +uQJ +asa bSJ -nOG -vuR -vTK -aaa -aaa -aaa -aaa -aaa +ufC +dXv +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -124503,71 +111802,71 @@ aaa aaa aaa aaa -aad +bHS aag aag -pVZ -psm -psm -psm -jFX -psm -psm -sAA -nYh -psm -ano -psm -qhB -xlX -wCh -psm -dmQ -dmQ -psm -uBz -aYj -aoE -aqe -amw -anO -arq -arq -arq -aze -xYZ -aDe -arq -arq -arq -anO -qaV -kwd -aSB -anG -mPX +mRr +sJQ +sJQ +sJQ +wBd +sJQ +ckV +eSd +nbY +ckV +qME +ckV +xKv +crz +mml +ckV +nJq +nJq +ckV +pXP +dHs +dxf +ovc +pcV +grh +hfA +hfA +hfA +unH +yfs +vlI +hfA +hfA +hfA +grh +lpj +ovc +dxf +dHs +ttN oIB -wKF +nYs fOh -diM +sIq oIB -fbx -cFA -vuv -joT -cxo -fbx -hlI -vuv -vuv -vuv -vuv -sdw -vuv -qMu +vJv +frC +xQW +hkA +qwE +bSW +oWK +xlG +xlG +xlG +xlG +cTU +xlG +eJy aag aag -afm +rNc aaa aaa aaa @@ -124603,83 +111902,83 @@ aaa aaa aaa aaa -wVb -hlz -eFH +chb +rUK +saZ aLT -beT +qSh bdr -bkg +tam aMz bfy -bgY -aPl +ihb +hlY aLT -aPn -blB +hwq +maX bnt aRT -ihY +pLG bpC -dnE +vxf aQL -kgr -aYW -bzV -beB +thb +fyN +sSZ +vDT bdl -ycp -ycp -tPj -mnf -ycp +xwW +xwW +nRt +xwW +xwW bdl bdl -rtj -agv +caI +tgr bdl bdl bdl -kFO -kFO +hVx +hVx uys uys uys uys -bJz -cbS -bJz -bHW +cSU +rZA +cSU +mLL bJC -bMA +uKn cfo -chm +eUg bJD chR -cjf -bgW +eFg +kuM bJC -ckR -ckX +sam +jPu cll bTA -clG +sBC clg -bVq +vKv bSJ -njT -ydx -vTK -aaa -aaa -aaa -aaa -aaa +qpP +ohM +taY aaa aaa aaa aaa aaa +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -124707,69 +112006,69 @@ aaa aaa aaa aaa -aad +bHS aag -pVZ -amJ -jXY -psm -ano -bjI -psm -cnY -nYh -psm -cWI -psm -adp -xlX -aeq -psm -dmQ -aeq -psm -jMK -ajR -aoG -aqg -arr -atn +mRr +rkp +oao +sJQ +qME +rFD +ckV +dPt +nbY +ckV +sEX +ckV +exW +crz +oRt +ckV +nJq +oRt +ckV +cHJ +dVa +tzQ +dXt +ePU atn atn atn +wlu anP aBh anP +anP +vWj +qRI atn -atn -atn -atn -aOB -aRj -aSC -aZH -iAB +bzr +nNW +tzQ +jlH +pen oIB -gqF -imW -qbh +pLS +nMO +qIC oIB -fbx -cxo -iEs -fbx -fbx -fbx -cxo -cxo -iwh -cxo -cxo -fbx -cxo -qMu +wMM +gzv +rnx +bSW +bSW +bSW +qwE +qwE +cRM +qwE +qwE +bSW +qwE +eJy aag -ajZ +woL aaa aaa aaa @@ -124806,73 +112105,73 @@ aaa aaa aaa aaa -wVb -tAi -eFH +chb +muN +saZ aLT aLT aLT aLT brv nuA -bgY -aQT +ihb +hnF aLT -aTv -blB +xWr +maX oiQ lml aQL aQL aQL aQL -pGM -aYZ -sLE -jJs +iAx +mKu +rhv +lqb +bdl +tuS +qtk +wTR +lXL +xko bdl -fKT -bGy -bKA -snM -iqo -moY -clV -crD -kLP -gvU -cyo +oeH +xjR +cAe +byE +fel bdl -hTP -tXj -sgc -xCa -bUy +vXc +kkT +cIH +jtq +vyd bdl -qYt -iEb -bHa -bIT +qGU +kRa +olG +hwL bJC bJC bJC bJC cdf jxx -cjf -cdP +eFg +iab bJC -dpO -ckX +uXC +jPu rXj gfo bSJ bSJ bSJ bSJ -nOG -cAH -vTK +ufC +hWu +taY aaa aaa aaa @@ -124910,69 +112209,69 @@ aaa aaa aaa aaa -aad +bHS aag -pVZ -amL -atz -psm -ouo -bjI -psm -jFX -psm -psm -xuI -psm -dmQ -xlX -dmQ -psm -cBB -irn -psm -rFY -ctC -aoQ -kwd -amA -atq -atq +mRr +lcp +lLe +sJQ +iiY +rFD +ckV +xYv +ckV +ckV +mSn +ckV +nJq +crz +nJq +ckV +fgp +roE +ckV +xTk +dHs +dxf +ovc +kEP amx amx amx -atq +awy amx amx amx -atq -atq -aoT -kwd -rFY -ctC -gPF +amx +amx +nsx +amx +kMA +ovc +dxf +uSb +rhX oIB -kUb -rJg -pxj +okl +otR +hBN oIB -fbx -gHg -vuv -iTf -cxo -suk -chC -pTT -oLd -oLd -oLd -oyw -cxo -qMu +vJv +qRy +xQW +vXC +qwE +ikX +uWh +bkH +lKr +lKr +lKr +fqQ +qwE +eJy aag -ajZ +woL aaa aaa aaa @@ -125009,73 +112308,73 @@ aaa aaa aaa aaa -wVb -hlz -eFH +chb +rUK +saZ aLT -beT +qSh bdr -bpK +uVp aMz bfy -bgY -aQT +ihb +hnF aLT -aTv -blB +xWr +maX bnt aRT -mUx +tcN bpC -dnE +vxf aQL -aLG -aYZ -sLE -jJs +mcE +mKu +rhv +lqb bdl -fgm -bdj -rHN +nXn +vyS +moz kuu -mDj +sHm bdl -jre -dXG +eEX +npA nqx hzg -vBU -fIX -fnI +pNC +hVh +caI ipa fYZ vYC -noj +wLU hpS -pJJ -iEb -bHa -bIT +ddi +kRa +olG +hwL bJC -bMA +uKn cfo -chn +ltJ bJD chR -cjf -cdP +eFg +iab bJC -dpO -ckX +uXC +jPu cll bTA -clH +mBI oFV -bVq +vKv bSJ -fTx -lGr -vTK +veJ +hwZ +taY aaa aaa aaa @@ -125113,69 +112412,69 @@ aaa aaa aaa aaa -aad +bHS aag -pVZ -jXY -coG -hSu -xlX -dmQ -aDg -dmQ -tLM -xlX -xlX -hSu -xlX -xlX -dmQ -psm -psm -psm -psm -aEp -lIw -aoR +mRr +oao +cMy +iGl +bsp +iuK +dAn +iuK +bMw +bsp +bsp +wwP +crz +crz +nJq +ckV +ckV +ckV +ckV +xTk +cHZ +ttN alO -ars +qNj amx amx aqf +qhV amx amx -atq -amx amx amx amx +nsx amx -aOC +mOP alO -aEp -lIw -aEp +xTk +uSb +ttN loP loP loP loP loP -qej +jXK loP loP -vuv -hlI -fbx -xxJ -ybO -yal -tpK -qKF -kaN -gHg -qMu +xlG +oWK +bSW +nBL +eJp +tSL +pwn +wwy +rQp +bEQ +eJy aag -ajZ +woL aaa aaa aaa @@ -125212,73 +112511,73 @@ aaa aaa aaa aaa -wVb -eFH -hlz +chb +saZ +rUK aLT -beU -bdv +iHr +feC aLT -bry -bfu -bgY -jVr +vuf +qfw +ihb +tLN aLT -kXa -blB -chL -lAl +iqN +maX +eWR +mQv aQL -bsW -xvX +uHB +rCj aQL -aLG -txe -baq -jJs +mcE +dEd +pmM +lqb bdl -ntd -iVj +sTD +kWm eqb mLR -hdE +dcw bdl -krZ +sFY ixQ -kWk -xyY -nwY -bKA -fnI +wcV +dsS +dgZ +nIl +caI cwo scH nzO -kxL +eBr hpS -pJJ -vzu -vYi -bIT +ddi +eOm +iQm +hwL bJC -cfq -cgv +miL +hig bJC -wqc -chN -cjf -lok +qjJ +kjM +eFg +eFC bJC -ihM -ckX -clm -hXY +eRh +jPu +rhF +dYr bSJ -clN -clT +nde +sJG bSJ -cJP -vuR -vTK +lcz +dXv +taY aaa aaa aaa @@ -125316,69 +112615,69 @@ aaa aaa aaa aaa -aad +bHS aag -pVZ -amP -atD -psm -xlX -aDz -aRV -cyE -xlX -dmQ -uRQ -psm -dmQ -xlX -dmQ -psm -ahn -aiz -psm -ndJ -anJ -aoS +mRr +iav +xpF +sJQ +miS +pZr +gPx +fNX +bsp +iuK +oKf +ckV +nJq +crz +nJq +ckV +xIX +fTP +ckV +oXq +cHZ +ttN inw -amA +kEP amx amx -awy amx amx amx amx amx amx -atq amx -aoT +aBo +amx +kMA inw -aiB -anJ -mnG +xTk +uSb +mnH loP -iwB -tOC -mHo -vqL +xBq +nnQ +ibv +ebc xBY -qwo +quJ loP -xgL -nho -fbx -xxJ -hlI -eRe -eRe -eRe -kaN -cxo -qMu +xFJ +sry +bSW +nBL +oWK +vsa +vsa +vsa +rQp +qwE +eJy aag -ajZ +woL aaa aaa aaa @@ -125415,73 +112714,73 @@ aaa aaa aaa aaa -wVb -iDm -hlz +chb +rxs +rUK aLT aLT aLT aLT -bwe -cuY -aPo +duD +iIJ +xfH aLT aLT aQL -aSa -bnA -xhQ +wGI +mUj +cOT aQL aQL aQL aQL -aLG -aYO -kBK -hyt +mcE +hnJ +gaV +ukZ bdl -tFS +gPA bdj bNs nwb -mrM +tUX bdl -uWI +slT pMJ xnI ayj dWg bdl -oTe -ixN -jaR -mJa -wWP +xwn +fWi +rCr +uDy +oOo rsK -aGc -kkE -iEb -bIT +xgz +vFx +kRa +hwL bJC bJC bJC bJC -qFG -pvJ -bQD +fbh +toM +wqw bJC bJC bSJ -hss -clp -hfQ +hIG +bcJ +byT bSJ bSJ bSJ bSJ -wGi -woG -vTK +gcX +mAq +taY aaa aaa aaa @@ -125514,79 +112813,79 @@ aaa aaa aaa aaa -aac -aaf -aaf -aaf -aaf +eQJ +oVj +oVj +oVj +oVj aag aag -pVZ -psm -psm -psm -ano -aDF -bYg -cNc -xlX -dmQ -gyt -psm -rsY -xlX -dmQ -psm -dmQ -dmQ -psm -alG -aDZ -aoU -aqj -arw -anP -fOJ -aqh -sqo -sqo -aDh -aDh -mux -ayd -atq -atq -wwJ +mRr +sJQ +sJQ +sJQ +qME +uvc +jyr +dvn +bsp +iuK +hBK +ckV +myh +crz +nJq +ckV +nJq +nJq +ckV +xTk +cHZ +ttN +inw +kEP +amx +llA +dxS +vVJ +vVJ +gxW +gxW +nBq +fMZ +aBo +amx +gEp inw -alG -aYj -apd +xTk +rtQ +ttN loP -joG -sDu -kxo -wSn +vgE +ymg +dIm +vRP xBY -lKa +vyc loP -ejK -cxo -fbx -xxJ -vuv -oeL -cxo -hkm -hlw -pmk -qMu +dwJ +qwE +bSW +nBL +xlG +swV +qwE +tUl +buo +fhJ +eJy aag aag -aaf -aaf -aaf -aaf -ajY +oVj +oVj +oVj +oVj +fPT aaa aaa aaa @@ -125614,81 +112913,81 @@ aaa aaa aaa aaa -wVb -wVb -wVb -wVb -wVb -eFH -eFH +chb +chb +chb +chb +chb +saZ +saZ aLT -vZb -tnY -rAN -tIQ -cic -ceg -mdo +thR +uxc +liD +sjq +ftv +fdv +cAx mJj -tDZ -nYc -bnB -aVd -aUZ -uqA -bES +qoy +xoy +kOW +diP +gtT +rFt +hLq kcl -aLG -aYO -sou -bAX +mcE +hnJ +akk +iyK bdl -wIr -vlc -jAB -iYt -bMa +fxP +oci +cTp +vTZ +qRg bdl -rDe -nUa -ufJ -rCK -cTf +dfX +foi +dgB +lVA +jJK bdl bdl -nPT -nPT +jbS +jbS bdl bdl bdl -dhU -vzq -iEb -bIT +tgf +ovI +kRa +hwL hNw -wos -bMC -fcB -rUh -jLj -wPC -xZU +hoy +nvB +sun +vVC +rpE +bFH +eNo hNw -hmC -rQA -hjs -ivM -hcI -hcI -vPK +uRs +wTx +xGA +vNh +qJK +qJK +fzk bSJ -nOG -vuR -vTK -vTK -vTK -vTK -vTK +ufC +dXv +taY +taY +taY +taY +taY aaa aaa aaa @@ -125717,79 +113016,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -amQ -dmQ -hSu -xlX -aDF -jXY -dxC -xlX -aDz -mNW -psm -adp -xlX -wCh -psm -dmQ -dmQ -psm -ylJ -aDZ -aoD +mRr +mFk +iuK +iGl +bsp +uvc +oao +toL +bsp +pZr +loi +ckV +exW +crz +mml +ckV +nJq +nJq +ckV +pXP +cHZ +ttN inw -qHM -emn -rdI +thh +xhD +hbP alO -aqY -aqY -aBi -aDi +dQP +dQP +tJu +iPZ alO -aye -amx +qBB +aBo amx -aBs +eOL inw -alG -aYj -apd +xTk +rtQ +ttN loP -kxo -wSn -kxo -kdi +dIm +vRP +dIm +vqH xBY -kxo +dIm loP -sFF -cxo -fbx -xxJ -vuv -gUy -nho -oRj -hHU -cxo -qMu +vsv +qwE +bSW +nBL +xlG +vNS +sry +fAi +jBs +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -125817,33 +113116,33 @@ aaa aaa aaa aaa -wVb -fTR -qaD -jeU -dHk -hlz -eFH -aWT +chb +uTk +uaO +rOO +tdH +rUK +saZ +pEM aMH beV gWE -udG -aOK -dRv -mdo +hFL +tYT +rti +cAx mJj ljs -hsW -mFO -bJE +rxz +fzB +nlg aSE -aVf -bES +jal +hLq kcl -aLG -aZg -bar +mcE +hvg +kcy bdl bdl bdl @@ -125853,45 +113152,45 @@ bdl bdl bdl bdl -xWo +tRp bdl bdl bdl bdl -cbo -gRn -cbo -cbo -gRn +eXj +itN +eXj +nvJ +itN bdl bdl -cbV -fpO -bIT +eKE +uzp +hwL hNw -sZq -jZv +gVa +daT cgy -nrw -spS -lBv +rMa +fWk +hJF pXZ hNw -bNC -sDM -clr -nvT +pHn +fAd +woQ +fNz aMI wGE erG -ewO -bWb -cAH -luk -rQj -ngs -gai -vTK +pSl +iUS +hWu +eXV +kby +mBw +lyL +taY aaa aaa aaa @@ -125920,79 +113219,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -amQ -atG -psm -seO -aDF -amP -egB -xlX -aDF -igf -psm -atD -xlX -xlX -hSu -xlX -xlX -hSu -aWd -aDZ -nfp +mRr +mFk +uoJ +sJQ +uYP +uvc +iav +cPx +bsp +uvc +mTh +ckV +vZc +crz +crz +wwP +crz +crz +uSY +ioV +dHs +rhX alO alO alO alO alO -axx -amw -anO -aDj -inw -aye -atq -atq -aBs +qjp +pcV +grh +lTa +dQP +qBB +nsx +amx +eOL alO -alG -aDZ -aWd -fTF +xTk +uSb +ioV +iXM xBY xBY xBY xBY xBY -jGI +nmn loP -vuv -hlI -cHq -xxJ -vuv -vuv -vuv -vuv -kmK -cxo -qMu +xlG +oWK +cZr +nBL +xlG +xlG +xlG +xlG +mWx +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -126020,81 +113319,81 @@ aaa aaa aaa aaa -wVb -vjx -eFH -eFH -eFH -eFH -eFH +chb +vDN +saZ +saZ +saZ +saZ +saZ aLT -aZf -duV -duV -eUA -bfx -bgY -mdo +ejE +lvw +lvw +hcu +gax +ihb +cAx mJj byn -gip +foT bnt bJH iIR -aVf -bES +jal +hLq kcl -aLG -aYO -bZK -qic -xfc -bCH -vZA -bCH -bCH -uIp -bHm -bHm -bHm -wNm -bCH -bCH -bHm -bLS -bCH -lXF -bHm -bCH -bCH -qic -cbW -iEb -bIT +mcE +hnJ +kmq +eTf +vzW +gkx +inX +gkx +gkx +axY +oof +oof +oof +aQX +gkx +gkx +oof +nLM +gkx +dcL +oof +gkx +gkx +eTf +kIQ +kRa +hwL hNw -sZq -jZv +gVa +daT gnu bOQ chR -cjg +kLn urN hNw -bNC -ckX -vuL -fDh -jGR -jGR -oqu +pHn +jPu +yex +hFd +vcV +vcV +dyn bSJ -vuR -vuR -vuR -vuR -vuR -cAH -vTK +dXv +dXv +dXv +dXv +dXv +hWu +taY aaa aaa aaa @@ -126123,79 +113422,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -amW -auo -psm -xlX -bkR -bYi -eJd -xlX -aDF -jXY -psm -jXY -xlX -dmQ -psm -dmQ -dmQ -akd -alG -aDZ -xrr +mRr +dxA +mjH +sJQ +bsp +kic +pHe +mAG +bsp +uvc +oao +ckV +hkD +crz +nJq +ckV +nJq +nJq +pwL +xTk +dHs +ttN alO -gKZ -vTv -auL +dkv +gum +rYH alO -axy -amA -atq -aoT -inw -aye -atq -atq -aBs +waL +pLM +aBk +kMA +dQP +qBB +nsx +amx +eOL alO -alJ -aYj -apd -gdS -wSn -kXN -fuT -odD +nIs +rtQ +ttN +olN +vRP +rqA +fgV +evd xBY -mOg -oHx -fbx -oVP -fbx -gAt -tly -flE -flE -flE -xzo -cxo -qMu +lxO +mwU +bSW +mPR +bSW +xON +saO +uiy +uiy +uiy +kTI +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -126223,81 +113522,81 @@ aaa aaa aaa aaa -wVb -ilZ -eFH +chb +jwy +saZ aLT aLT aLT aLT aLT aLT -mhI -bjA -xSW -bAd -bCS +wnv +vOq +kTp +bMl +geW aLT aLT -ksp -gip -brH +pEf +foT +ukB chp chp -aVf +jal aQL aQL -beB -aYT -bzY -aLd -aLd -bvS -aLd -aLd -aLd -aLd +vDT +cNR +rhd +tjM +tjM +rVk +tjM +tjM +tjM +tjM vub vub vub -owW +mMh vub vub vub -aLd -aLd -aLd -bvS -aLd -aLd -aLd -cbX -cbS -ccO +tjM +tjM +tjM +rVk +tjM +tjM +tjM +fik +rZA +pvI bJC bJC -bMD +jxA vND vND chR -cjg -kIP +kLn +cQe bJC bSJ -bTJ -pUf -hji -rPO -ixD +lzB +ngy +wdq +jrP +rmm bSJ bSJ bSJ bSJ bSJ bSJ -vuR -ydx -vTK +dXv +ohM +taY aaa aaa aaa @@ -126326,79 +113625,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -psm -psm -psm -ano -dmQ -dmQ -adE -xlX -wya -aiE -psm -jXY -xlX -aeq -psm -gIN -aiA -akd -alG -aDZ -xrr +mRr +sJQ +sJQ +sJQ +qME +iuK +iuK +lnd +bsp +kNR +tUA +ckV +hkD +crz +oRt +ckV +mdM +uUu +pwL +xTk +cHZ +ttN alO -arz +jtL atq -aoT +kMA alO -aOG -azh -aBk -aoT -laQ -dZr -auB -atc -aOF +ujG +jnv +nLS +bzr +mgH +faW +wCc +fkH +qaq alO -alG -aYj -apd -gdS -lBg -dXd +xTk +rtQ +ttN +olN +ist +umc loP loP -eMh +vNb loP loP -vuv -kJG -fbx -okd -eYH -rav -eYH -eYH -wWL -cxo -qMu +xlG +ncO +bSW +tvK +dcZ +llr +dcZ +dcZ +eKz +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -126426,81 +113725,81 @@ aaa aaa aaa aaa -wVb -hlz -eFH +chb +rUK +saZ aLT -bBg -vPv -oTA -vPv -rAN -tIQ -vme +jyC +ofB +qAD +ofB +liD +sjq +wej aNQ aOL -uIJ -hRd +viC +eGJ aLT aQL -bmh -bnX +nzE +org aRo brA -aVf -lQz +jal +uXU aQL -aLG -aZi -aLG +mcE +vdV +mcE bbs -cbh +wqH xYP bbs gsm -bCM +gnW rbF cJE -bOT -dLt +eHG +jOL bRe -iFD -vRa +uKJ +xRZ vub bPL -bCM +gnW xSM -tez +cgE gsm -bCM +gnW bbr -buH -iEb -bIT +bXC +kRa +hwL bJC -jht -jZv +ecN +daT cgy cgy -lbX -uxp +sqC +dyk bJC bJC -bSZ -ckX +myc +jPu bUp bUN -bVb -ivM -mAV -hzu -qNd -hzu -hcI +ihB +vNh +uZP +oBz +kCX +oBz +qJK bSJ -cAH -cAH -vTK +hWu +hWu +taY aaa aaa aaa @@ -126529,79 +113828,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -dmQ -meS -aAe -xlX -dmQ -psm -psm -jFX -psm -psm -psm -igf -xlX -dmQ -psm -psm -psm -psm -alG -aDZ -xrr +mRr +iuK +udM +cHU +bsp +iuK +ckV +ckV +xYv +ckV +ckV +ckV +mvZ +crz +nJq +ckV +ckV +ckV +ckV +xTk +cHZ +ttN alO -arz +jtL atq -aoT +kMA alO -axA -amA -aBl -aOB -aFl -aHt -aIU -aMq -aOG +oHO +jnv +vLa +kMA +cjP +imr +gIR +qxf +ujG alO -alG -aDZ -apd +xTk +uSb +ttN loP loP loP loP -tGd +rUn vyI -lPB -oHl +etW +qKu jWh -vuv -sdw -vuv -vuv -vuv -vuv -vuv -ldN -gHg -qMu +xQW +vva +xQW +xQW +xlG +xlG +xlG +xbt +bEQ +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -126629,81 +113928,81 @@ aaa aaa aaa aaa -wVb -hlz -hlz +chb +rUK +rUK aLT nuN nuN -rfa +quj ehx ehx -tVq -vme +gFD +wej mLF tig -uIJ -aPi +viC +tha aLT -tDZ -gip +qoy +foT uTv bKC bOG -aVf -iaq +jal +dLN aQL -aLG -aZi -aLG +mcE +vdV +mcE bbs -bKD +uTz vTS bbs ccQ -bCN +pUC rbF qlz -xYf -skn +cMk +fyW bQX -peb +lKV cLl qlz tez -bCN +pUC ccQ -tez +cgE ccQ -bCN +pUC bbr -buH -iEb -bIT +bXC +kRa +hwL bJC -cjC -jZv +gfb +daT lLC nEo nZy -cjg -lbf +kLn +aLn bJC -bTa -ckX +laf +jPu iWc cqz -bVb -wty +ihB +hbX pWb pWb -rYp +rYm oEo oEo bSJ -cAH -cea -vTK +hWu +fpl +taY aaa aaa aaa @@ -126732,79 +114031,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -xlX -xlX -aBa -xlX -dmQ -psm -eKD -nZF -wMm -psm -adp -dmQ -xlX -dmQ -qWT -lWh -aiE -psm -alG -aDZ -xrr +mRr +bsp +bsp +rNX +bsp +iuK +ckV +kra +kgj +rVQ +ckV +exW +nJq +crz +nJq +mzP +rew +pVU +ckV +xTk +cHZ +ttN alO -arz +jtL atq -aoT +kMA alO alO -alR -aBm -alR +mTI +yfE +mTI alO xBe xBe xBe xBe xBe -alG -aDZ -apd +xTk +uSb +ttN jWh -eFK -wGd -cZW -pZK +mhC +iGB +taa +wNV hSk hSk -uIv +kIh jWh -dCt -xhU -dsu -vuv -ozr -hWa -dCP -ldN -cxo -qMu +vXe +mvW +pSX +xQW +ooX +qBb +umw +xbt +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -126832,81 +114131,81 @@ aaa aaa aaa aaa -wVb -rVo -hlz +chb +xNI +rUK aLT vug vug -muy +vCn vug vug -tVq -vme -lJO +gFD +wej +nMF uRo -uIJ +viC aLT aLT hWr -gip +foT xlk uuj -bRg -aVf +fqz +jal aQL aQL -fvK -aZi -aLG +dfT +vdV +mcE bbs -ydM +gSI xYP bbs ccQ -cdn +wQe rbF qlz -gYe -skn +ryy +fyW bTx bKQ tXM qlz tez -bpV +ueE ccQ -tez +cgE ccQ -cdn +wQe bbr -buH -iEb -bIT +bXC +kRa +hwL bJC bJC -kGF -chq -bRf +dVA +ijV +jVx onN -cjg +kLn qki bJC bSJ -bTM +vrz bUq -rPE -bVb -wty +eEy +ihB +hbX wWX wWX -yle +uMs wWX wWX bSJ -cAH -bpJ -vTK +hWu +vhH +taY aaa aaa aaa @@ -126935,79 +114234,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -ano -dmQ -aBg -dmQ -boZ -psm -eKD -oyo -wQx -psm -lhL -dmQ -xlX -dmQ -dmQ -dmQ -soQ -psm -alJ -aDZ -xrr -xnR -arm -ats -auO -awB -axB -ayV +mRr +qME +iuK +fVS +iuK +pdR +ckV +kra +gMF +pKF +ckV +guy +nJq +crz +nJq +nJq +nJq +eos +ckV +nIs +cHZ +ioV +whI +imr +xGv +tWL +oPW +nJK +xjP auu -aoT -aFm +kMA +oHg xBe -cij -jRZ -arH +nfw +ngV +oEv xBe -alG -aDZ -apd -vXd -duF +xTk +uSb +ttN +iOf +cfD hSk hSk vyI hSk hSk -uIv +kIh jWh -xrN -fbx -ije -vuv -cxo -wwD -oda -ldN -cOi -qMu +nav +vJv +lCs +xQW +qwE +uhm +ggD +xbt +uIB +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -127035,81 +114334,81 @@ aaa aaa aaa aaa -wVb -qnP -uia +chb +rRP +wBB aLT -iPS -vAE -iKw -vAE -wMG -tIQ -nTl -efK +jJC +kWs +eih +kWs +oIk +sjq +jIL +phg aMz -rGj -mdo +fkk +cAx mJj -bHp -bIU -tAN -tAN -jOi -aVf -bES +tuq +mPv +bjZ +bjZ +egO +jal +hLq kcl -aLG -aZi -aLG +mcE +vdV +mcE bbs -dvs +xAf xYP bbs -cdm -bCM +oTX +gnW rbF qlz -fOz -skn +sGy +fyW bTx bTx dFF qlz tez -bCM +gnW ccQ -tez +cgE ccQ -bCM +gnW bbr -buH -iEb -bIT +bXC +kRa +hwL hNw -sZq -lef -xRj -wJD -cjE -ozT -pDB +gVa +aAM +oNM +umQ +nlE +fgb +kPF hNw -bNC -ckX +pHn +jPu qgN -bTN -sdC -ivM -gEo -scy -vSW -scy -kPJ +waN +igE +vNh +xWe +aDR +vJF +aDR +tuY bSJ -cAH -ubd -vTK +hWu +qTm +taY aaa aaa aaa @@ -127138,79 +114437,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -xlX -psm -psm -rzP -psm -psm -fnZ -xlX -xoh -ckB -afl -jUL -afl -afl -afl -afl -afl -wDR -alP -ajW -apc +mRr +bsp +ckV +ckV +nAw +ckV +ckV +hSf +crz +sCw +mCe +dix +iZi +dix +dix +dix +dix +dix +myO +lyq +dkm +ttN alO -arA -att -auS +pvV +emw +jvW alO -lXg -amA +mZx +jnv aBn -aDm -aFn +iIp +crM xBe -azo -aJg -abR +mpQ +xQc +bXO xBe -alG -aDZ -apf +xTk +uSb +rhX jWh -oih -khE -ctx +vlz +jWj +qSU vyI vyI -kpQ -vSE +gjU +ujB jWh -ppc -iYp -iZX -vuv -cxo -wwD -rku -ldN -cxo -qMu +icv +heC +rjP +xQW +qwE +uhm +wRW +xbt +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -127238,81 +114537,81 @@ aaa aaa aaa aaa -wVb -tAi -moE +chb +muN +kNU aLT aLT aLT aLT aLT aLT -fbb -nTl +oub +jIL bwf -aMP -bEG -mdo +nIQ +dhg +cAx mJj fIM fIM sXw sXw -vfx -aVf -bES +aiG +jal +hLq kcl -beB -byI -beB +vDT +yme +vDT kFY -jmK -bDL +geq +rqh bbs ccQ -bCN +pUC rbF vub odN odN -gcN +mxZ odN odN vub tez -bCN +pUC ccQ -tez +cgE ccQ -bCN +pUC jhb -jiw -cbS -bHW +mHs +rZA +mLL hNw -sZq -ltI -vfa +gVa +aZk +rTa wdz wdz nCf nCf hNw -bNC -uMS -qmk +pHn +wOI +xvI rtV -sgR -tvN +lZh +nXc bSJ bSJ bSJ bSJ bSJ bSJ -pUY -emG -vTK +tdW +cQT +taY aaa aaa aaa @@ -127341,79 +114640,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -xlX -psm -nQg -szX -xyE -psm -eKD -pBW -xtD -psm -psm -psm -jFX -psm -psm -psm -psm -psm -ylJ -aDZ -apd -alO -alO -alO -alO -alO -axD -amA +mRr +bsp +ckV +gau +hwO +eVK +ckV +kra +tsb +rCq +ckV +ckV +ckV +xYv +ckV +ckV +ckV +ckV +ckV +pXP +rtQ +ttN +phu +phu +phu +phu +phu +emD +jnv aBo -axe -anO -nFX -atv -auV -ift +tNy +grh +bSr +adv +xTF +uEZ xBe -alG -aDZ -apd +xTk +uSb +ttN jWh jWh uUz jWh -gIJ -qbZ +etK +luM jWh jWh jWh -cDW -fbx -cXq -vuv -vJy -cxo -hkm -hlw -pmk -qMu +ofq +vJv +tFG +xQW +jLp +qwE +tUl +buo +fhJ +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -127441,81 +114740,81 @@ aaa aaa aaa aaa -wVb -wzg -eFH +chb +jGt +saZ aLT -bBg -vPv -oTA -vPv -rAN -tIQ -aNc +jyC +ofB +qAD +ofB +liD +sjq +pKU aNT -rGj -bdC -mdo +fkk +cgw +cAx mJj -sEd -wDK -iMr -wuq -bRV -bSe -bES +qeR +haS +nQs +vqb +fpE +clQ +hLq kcl -aLG -aZi -aLG -bBd -aPr -bfl -bSb -byw -bkU -bAY -pur -bxm -bPM -jmK -bRa -bxm -pur -byw -bzI -bAY -bSb -bEa -bFp -bBd -buH -iEb -bIT +mcE +vdV +mcE +eSc +lRb +ods +iNv +plM +rOx +uUT +sRg +ntn +kTc +geq +ovL +ntn +sRg +plM +afg +uUT +iNv +eCl +kgR +eSc +bXC +kRa +hwL hNw -sZq -lwJ -cgA -oaW -yiW -oaW -yiW +gVa +fvw +pzW +ohW +hty +ohW +hty hNw -bNC -clK -jdm +pHn +iwZ +wAB pQN -snR -ivM -qNd -hzu -mAV -hzu -hcI +vCl +vNh +kCX +oBz +uZP +oBz +qJK bSJ -jea -cAH -vTK +nZW +hWu +taY aaa aaa aaa @@ -127544,79 +114843,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -yeP -psm -jdQ -bMY -hfy -psm -eKD -nZF -xxT -psm -uiG -rTZ -tfb -tfb -tfb -tfb -tfb +mRr +dCE +ckV +nIp +kdc +fGj +ckV +kra +kgj +bhr +ckV +bGx +ykQ +iFb +iFb +iFb +iFb +iFb ptK -alG -aYj -apd -alO -aOM -aoW -aty -alO -axE -amA +xTk +rtQ +ttN +phu +cNF +rQu +uSG +phu +npI +jnv aBp -aDn -atc -nFX -atv -auV -ift +vtR +fkH +bSr +adv +xTF +uEZ xBe -alG -aYj -apd +xTk +rtQ +ttN jWh -xXa -xXa -xXa -pZK -cKL -jbH -rJh +pfi +pfi +pfi +wNV +rER +msN +vIO jWh -tyz -eZQ -fTi -vuv -tzi -cxo -oRj -cVs -cxo -qMu +fEr +lvY +jOn +xQW +kXl +qwE +fAi +kCa +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -127644,81 +114943,81 @@ aaa aaa aaa aaa -wVb -jMi -eFH +chb +lFR +saZ aLT cjc cjc -vUb +gTf nuN nuN -cBs -kiV +eip +pbn iSZ -uIJ -kJi +viC +ehu aLT aLT aQL aQL aQL aQL -csZ -odB +ljp +sVS aQL aQL -aLG -aZg -tBF -bBe -bFq -bfm -bhg -bvF -cdo -bvF -bvF -bvF -bRa +mcE +hvg +hIP +taX +hSv +muD +rDS +rXO +kLC +rXO +rXO +rXO +ovL bRc -bPM -bvF -bvF -bvF -cdo -bvF -bCD -bEb -bFq -bBe -bFu -fpO -bIT +kTc +rXO +rXO +rXO +kLC +rXO +dVV +laX +hSv +taX +siL +uzp +hwL bJC bJC -rbH -cEC +phB +dJO bJC bJC bJC bJC bJC bSJ -hTc -bUr +kXy +gbo ycd -sAc -wty +gcp +hbX oEo oEo -yfm +qHt fXN fXN bSJ -vuR -cAH -vTK +dXv +hWu +taY aaa aaa aaa @@ -127747,79 +115046,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -xlX -psm -psm -psm -psm -psm -psm -jFX -psm -psm -bNM -wkX +mRr +bsp +ckV +ckV +ckV +ckV +ckV +ckV +xYv +ckV +ckV +qNr +nXG jhx jhx jhx jhx -dnH -gpc -aWd -aYj -apd -alO -uto -aoX -auU -aHu -aFt -lEj +lNe +nEf +mch +enF +ttN +phu +maU +mVr +iqj +kFC +ldE +uPz nRX -aDo -aFr +aYh +rRk xBe -nNY -qKi -abR +wax +sNc +bXO xBe -alJ -ajR -aTS -dEt +nIs +jon +mch +hhi soP pDr soP pDr soP eoG -uIv +kIh jWh -vuv -sdw -vuv -vuv -vuv -hlI -qiI -ldN -gHg -qMu +xQW +vva +xQW +xQW +xlG +oWK +pqo +xbt +bEQ +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -127847,81 +115146,81 @@ aaa aaa aaa aaa -wVb -pQG -eFH +chb +aCF +saZ aLT cjc cjc -vUb +gTf cjc cjc -cBs -bsU -bwg -bCP -bdC +eip +fkl +qZe +kvA +cgw aLT -bBg -uAW -pqK -uAW -tDZ -vil +kzz +caU +kzz +caU +qoy +vTk bpC -qZX +pXp aQL -kEb -aZi -bad +sSb +vdV +iqg bbs -cdp -cdp -cdp -cdp +mFA +mFA +mFA +mFA bbs bJf bJf bJf bJf -xba +gJZ dNt dNt dNt dNt bbs -fJO -fJO -fJO -fJO +osC +osC +osC +osC bbs -nmD -iEb -twT +dSr +kRa +hlr bJC -lbf +aLn cft -rQV -ohj -wwr -cDs -wwr -lbf +wrD +lLD +eCf +dDz +eCf +aLn bSJ -gGf -qyi -hXY -sSC -wty +iPr +hwg +dYr +mmG +hbX fXN fXN -yfm +qHt fXN fXN bSJ -cAH -ydx -vTK +hWu +ohM +taY aaa aaa aaa @@ -127950,79 +115249,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -ano -meS -cbA -aRG -bsF -psm +mRr +qME +udM +pdT +vxJ +hVn +sJQ mDJ -owg -xUA -ozz -vFv +jtb +wRl +rsI +rAF rob -owg -owg -nwU -owg -owg +jtb +jtb +iLC +jtb +jtb ptK -wOh -ajP -apd -alO -aOQ -fxI -nLJ -aHv -aya +xTk +uSb +ttN +phu +ycc +nxJ +egE +jNn +fMZ amx atq -aDr -aFu +fIh +eCQ xBe -rwT -wdv -anV +uXd +iRt +uoq xBe -alG -aYj -apd +xTk +rtQ +ttN jWh -iqH -khE -khE -khE -ovi +gWf +jWj +jWj +jWj +rfi iat -eim +alb jWh -vuv -qFW -vuv -vuv -kDi -vSH -tly -hlw -cxo -qMu +xlG +kwh +xlG +xlG +vrX +rzR +saO +buo +qwE +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -128050,81 +115349,81 @@ aaa aaa aaa aaa -wVb -fhA -eFH +chb +sJs +saZ aLT -iPS -vAE -iKw -vAE -wMG -tIQ -btc -bwh -uMl -bdC -dII -oLi +jJC +kWs +eih +kWs +oIk +sjq +htn +xSy +bCf +cgw +cVV fZZ -viS +fZZ +gzL sXw sXw -vil +vTk bpC qDq -kbc -aLG -aYO -aLG +tey +mcE +hnJ +mcE bbs -bdw -bfo -rWL -wLm -nHJ -wLm -wLm -wLm -bSa -xba -bSa -wLm -wLm -wLm -nHJ -wLm -lJu -bEd -bFs +ntv +pvL +kNG +bYX +xiJ +bYX +bYX +bYX +gYz +gJZ +gYz +bYX +bYX +bYX +xiJ +bYX +uEB +gmK +fqY bbs -buH -iEb -bIT -fzq +bXC +kRa +hwL +sKG oXb cft -rQV +wrD wdz wdz -fDJ +lCm bKM bKM -bZU -clK -qFK -pmq -sUj -ivM -vSW -scy -gEo -scy -kPJ +wss +iwZ +hPk +wXi +ltq +vNh +vJF +aDR +xWe +aDR +tuY bSJ -vuR -ebO -vTK +dXv +xBX +taY aaa aaa aaa @@ -128153,79 +115452,79 @@ aaa aaa aaa aaa -aad +bHS aag aag aag aag aag aag -pVZ -xlX -xlX -ePs -xlX -xlX -hSu -owg -owg +mRr +bsp +bsp +dpc +bsp +bsp +iGl +jtb +jtb uKV mDJ -bNM +qNr iEr -owg +jtb eNi eNi eNi eNi eNi -alG -aDZ -apf -alO -aOH -aJf -aMw -alO -xsl -aya +xTk +uSb +rhX +phu +oHJ +egj +rXg +phu +uWu +fMZ atq -aDr -aFv +fIh +pRi xBe xBe xBe xBe xBe -alG -aYj -wSk +xTk +rtQ +xDA jWh jWh jlQ jlQ jWh -thV +oOT uWV -uIv -oSx -vuv -gHg -vuv -vuv -hlI -qiI -nho -cxo -trW -qMu +kIh +sFE +xlG +bEQ +xlG +xlG +oWK +pqo +sry +qwE +qfm +eJy aag aag aag aag aag aag -ajZ +woL aaa aaa aaa @@ -128253,81 +115552,81 @@ aaa aaa aaa aaa -wVb -vjx -eFH +chb +vDN +saZ aLT aLT aLT aLT aLT aLT -sCD -pXl +gpG +xhf bxB -uWY -wEd -jvp -izG -gBc -gBc -gBc -gBc -ngA -koC -koC -xGE -aem -mUa -aLG +hfo +sUK +vqw +vrd +vrd +vrd +vrd +vrd +lBK +gwL +gwL +crv +mso +kmW +mcE lgy -ccb +lQm xYP -bGn -mlm -mlm -mlm -bxn -mlm -mlm -xba -mlm -mlm -bxn -mlm -mlm -mlm -rXk +clq +tXd +tXd +tXd +pKK +tXd +tXd +gJZ +tXd +tXd +pKK +tXd +tXd +tXd +gsX xYP -jew +nFR laU -buH -jGN -bJb -uCM -lNw -eFj -iQi -lNw -lNw -lNw -lNw -lNw -erh -rqE -qWt +bXC +xyc +frh +hGI +aUG +wvi +pSV +aUG +aUG +aUG +aUG +aUG +jXs +iFq +hYR fXN -rEv -rll +mtY +jQn bSJ bSJ bSJ bSJ bSJ bSJ -vuR -tAR -vTK +dXv +bic +taY aaa aaa aaa @@ -128356,79 +115655,79 @@ aaa aaa aaa aaa -aae -aah -aah -aah +fpk +hWR +hWR +hWR aag aag aag -pVZ -alT -iHF -voA -aRV -aRV -psm +mRr +gFK +juk +ofm +gPx +gPx +sJQ ptK -afX +tRn ptK ptK -bNM +qNr rtd -owg +jtb eNi olO wiG nWN eNi -alG -aYj -apd -alO -alO -alO -alO -alO -axI -amA +xTk +uSb +ttN +phu +phu +phu +phu +phu +iQE +jnv amx -aDr -aFw +fIh +rnw inw -aJh -arq -ufx -alR -alG -aYj -apf +gRa +hfA +tBn +mTI +xTk +rtQ +rhX jWh hSk hSk -cRi +rco jWh -upR +clU fCL -uIv -vVw -lwi -cxo -iEs -cxo -fbx -fbx -fbx -kfX -qVU -qMu +kIh +tUf +xHD +qwE +iCf +qwE +bSW +bSW +bSW +sIu +ghT +eJy aag aag aag -aah -aah -aah -afm +hWR +hWR +hWR +rNc aaa aaa aaa @@ -128456,81 +115755,81 @@ aaa aaa aaa aaa -wVb -fTR -hlz -hlz -hlz -hlz -fTR -hlz +chb +uTk +rUK +rUK +rUK +rUK +uTk +rUK aLT cjc cjc -uJU +nUX cjc cjc aLT -lDV +vfp fZZ -hEb +jHM qDq qDq -jOx +xth bpC qDq aQL -jKA -aYT -beB +iWG +cNR +vDT lgy -bsG +ygi xYP -rWL -dMB -dMB -dMB -dMB -dMB -fsV -xba -fsV -dMB -dMB -dMB -dMB -dMB -lJu +kNG +ifX +ifX +ifX +ifX +ifX +xNl +gJZ +xNl +ifX +ifX +ifX +ifX +ifX +uEB xYP -hLI +cuZ laU -drt -rZF -bJz +cSU +fqA +cSU bJC oXb cfo -lkM +sXX oXb oXb -oka +jCn bKM tEO bSJ fXN fXN -kPJ +tuY fXN fXN bSJ -rHs -ngs -vuR -cAH -cAH -cAH -fKl -vTK +jNw +mBw +dXv +hWu +hWu +hWu +bVm +taY aaa aaa aaa @@ -128563,71 +115862,71 @@ aaa aaa aaa aaa -aad +bHS aag aag -pVZ -anu -auD -tIU -nEG -jXY -psm -bKm +mRr +fIe +noK +mtt +iWs +oao +sJQ +lUk hsr mDJ ptK -bNM +qNr iEr -fhH +oxT eNi ueG rPt jyE eNi -alG -aYj -apd -hwC -rcS +xTk +rtQ +ttN +lUh +eJZ amx -swN +oPF alO -axL -amA +gsb +jnv amx -aDr -aFy +fIh +mWv inw -aJi +uem azs atq -alR -alG -aYj -apd -jlQ -tst -uUe +mTI +xTk +rtQ +ttN +vOV +oDW +pjg hSk -bSN -pZK +gCe +wNV fCL -uIv -lFA -vuv -cxo -vuv -vuv -cxo -cxo -vqO -sXK -tbD -qMu +kIh +ssC +xlG +qwE +xlG +xlG +qwE +qwE +lnY +urt +mMZ +eJy aag aag -ajZ +woL aaa aaa aaa @@ -128659,81 +115958,81 @@ aaa aaa aaa aaa -wVb -wVb -wVb -wVb -wVb -hlz -eFH -hlz +chb +chb +chb +chb +chb +rUK +saZ +rUK aLT -iPS -vAE +jJC +kWs meY -iPS -vAE +jJC +kWs aLT -iPS -wDK -iMr -wDK -rou -jOx +nQs +haS +nQs +haS +efu +xth bpC -ksp +pEf aQL -aLG -bSY -aWR -cau +mcE +sia +lcJ +ewL bCG cgE -bJe -jmK +xNG +geq xYP xYP xYP xYP -jmK -xba -jmK +geq +gJZ +geq xYP xYP xYP xYP -jmK -hcw +geq +jkX cgE -hLI -blq -bIT -jHe -bIS +bVg +weo +dkW +quD +bXC bJC -kIP +cQe cfo -lkM -oaW -yiW -oaW -yiW -kIP +sXX +ohW +hty +ohW +hty +cQe bSJ -vSW -scy +vJF +aDR oer -vSW -scy +vJF +aDR bSJ -tSr -pUY -lGr -vTK -vTK -vTK -vTK -vTK +iUM +tdW +hwZ +taY +taY +taY +taY +taY aaa aaa aaa @@ -128766,71 +116065,71 @@ aaa aaa aaa aaa -aad +bHS aag aag -pVZ -pVZ -pVZ -pVZ -pVZ -pVZ -pVZ -qJx +mRr +mRr +mRr +mRr +mRr +mRr +mRr +lLG hsr mDJ ptK -bNM +qNr iEr -owg +jtb eNi iKD rPt rPt eNi -alG -aYj -apd -alR -amA +xTk +rtQ +ttN +mTI +jnv atq -swN +oPF alO alO -cHc -azn -aDs +pYr +atq +wrB alO alO -aJj +reu aMD atq -alR -alG -aYj -apd -jlQ -tZZ -gLz +mTI +xTk +rtQ +ttN +vOV +qIY +mFv hSk -gIJ -ovi +etK +rfi fCL -lYk +bnk bYn -qMu -qMu -qMu -qMu -qMu -qMu -qMu -qMu -qMu -qMu +eJy +eJy +eJy +eJy +eJy +eJy +eJy +eJy +eJy +eJy aag aag -ajZ +woL aaa aaa aaa @@ -128866,10 +116165,10 @@ aaa aaa aaa aaa -wVb -rVo -eFH -hlz +chb +xNI +saZ +rUK aLT meY meY @@ -128877,46 +116176,46 @@ meY meY meY meY -aLT aQL aQL aQL aQL -pyl -pDt aQL +rFC +caY aQL -aLG -aYO -aLG +aQL +mcE +hnJ +mcE lgy -ccN +ayB xYP -rWL -wLm -wLm -wLm -wLm -wLm -bSa -xba -bSa -wLm -wLm -wLm -wLm -wLm -lJu +kNG +bYX +bYX +bYX +bYX +bYX +gYz +gJZ +gYz +bYX +bYX +bYX +bYX +bYX +uEB xYP -hLI +qkV laU -eUz -iEb -bIT +bXC +gZo +bXC bJC bJC -vLA -oHc +czK +rCv bJC bJC bJC @@ -128929,10 +116228,10 @@ oer oer oer oer -ybr -vuR -ebO -vTK +eOV +dXv +xBX +taY aaa aaa aaa @@ -128969,7 +116268,7 @@ aaa aaa aaa aaa -aad +bHS aag aag aag @@ -128979,47 +116278,47 @@ aag aag aag cuC -wdJ +kjh hsr hsr ptK -krS +mXT rtd -owg +jtb eNi eNi eNi -gIh +vOx eNi -geH -aDZ -apd -alR -amA +lhx +uSb +ttN +mTI +jnv atq -sOx +xnB alO -axM -amA +lGR +jnv atq -aDr -aFz +fIh +oAC inw -amA +jnv ayl amx -alR -alG -aYj -apd +mTI +xTk +rtQ +ttN jWh jmQ vcu -lIU +hLE jWh -thV +oOT uWV -tiK +vsw bYn aag aag @@ -129033,7 +116332,7 @@ aag aag aag aag -ajZ +woL aaa aaa aaa @@ -129069,73 +116368,73 @@ aaa aaa aaa aaa -wVb -cbZ -eFH -eFH -eFH -eFH -eFH -eFH -eFH -hlz -eFH -hlz +chb +hsL +saZ +saZ +saZ +saZ +saZ +saZ +saZ +rUK +saZ +rUK aQL -qZX -qZX -tDZ -jOx +pXp +pXp +qoy +xth bpC -qZX +pXp aQL -aLG -aYO -aLG +mcE +hnJ +mcE lgy -ccb +lQm xYP -bGn -mlm -mlm -mlm -bxn -mlm -mlm -xba -mlm -mlm -bxn -mlm -mlm -mlm -rXk +clq +tXd +tXd +tXd +pKK +tXd +tXd +gJZ +tXd +tXd +pKK +tXd +tXd +tXd +gsX xYP -jew +nFR laU -buH -iEb -bIT +bXC +gZo +bXC bJC -lbf +aLn cfo -lkM -lbf -lbf -lbf +sXX +aLn +aLn +aLn bJC -vuR -oyG -vuR -cAH -rDi -pXn -cAH -vuR -vuR -vuR -vuR -vTK +dXv +vpX +dXv +hWu +vbD +voB +hWu +dXv +dXv +dXv +dXv +taY aaa aaa aaa @@ -129172,71 +116471,71 @@ aaa aaa aaa aaa -aae -aah -aah -aah -aah -aah -aah -aah +fpk +hWR +hWR +hWR +hWR +hWR +hWR +hWR aag cuC -evk +fRp hsr mDJ ptK -bNM +qNr iEr -owg +jtb eNi -aWb -dyK +sFX +lTC vzK wYY -alG -aDZ -apd -alR -amA +xTk +uSb +ttN +mTI +jnv atq -sOx +xnB alO -axN -azq +ojI +lbQ auy -aDB -aFA +kWo +ksI inw -aJl +jJw amx atq -alR -alG -aYj -apd -jlQ -snE -sGL +mTI +xTk +rtQ +ttN +vOV +xcw +qOv hSk -bSN -pZK +gCe +wNV fCL -dbe +qpw bYn aag aag aag aag aag -aah -aah -aah -aah -aah -aah -aah -afm +hWR +hWR +hWR +hWR +hWR +hWR +hWR +rNc aaa aaa aaa @@ -129272,73 +116571,73 @@ aaa aaa aaa aaa -wVb -bbv -hJb -hlz -hlz -hlz -hlz -wZH -hlz -hlz -hlz -hlz +chb +hZC +ioy +rUK +rUK +rUK +rUK +neN +rUK +rUK +rUK +rUK aQL qDq qDq qDq -jOx +xth bpC qDq bTb -aLG -aYO -aLG +mcE +hnJ +mcE bbs -ccd -ccN -rWL -dMB -uVD -dMB -dMB -dMB -fsV -xba -fsV -dMB -dMB -dMB -uVD -dMB -lJu -huK -jeQ +lfy +ayB +kNG +ifX +olP +ifX +ifX +ifX +xNl +gJZ +xNl +ifX +ifX +ifX +olP +ifX +uEB +ooT +sbW bbs -buH -iEb -bIT +bXC +gZo +bXC xSw oXb cfo -lkM +sXX oXb oXb oXb bJC -vuR -cAH -vuR -cAH -vuR -dcS -cAH -vuR -cAH -cAH -xZK -vTK +dXv +hWu +dXv +hWu +dXv +vSu +hWu +dXv +hWu +hWu +mxq +taY aaa aaa aaa @@ -129383,55 +116682,55 @@ bdH bdH bdH bdH -aad +bHS cuC -apB -cBd -jRK +ipC +cnQ +cDB ptK -bNM +qNr iEr -owg +jtb eNi -dIE +eLq eJX -sAC +jDH wYY -alG -aDZ -apd -alR -amA +xTk +uSb +ttN +mTI +jnv amx apa alO -axO -azr +szN +vqI aBr -aDC -aFB +oyh +lHW alO -aJk +bIq amx atq -alR -alG -aYj -apd -jlQ -tZZ -cBj +mTI +xTk +rtQ +ttN +vOV +qIY +kdN hSk -gIJ -ovi +etK +rfi fCL -tiK +vsw bYn aag aag aag aag -ajZ +woL opJ bdH bdH @@ -129475,73 +116774,73 @@ aaa aaa aaa aaa -wVb -wVb -wVb -wVb -wVb -wVb -wVb -wVb -wVb -wVb -eFH -rdK +chb +chb +chb +chb +chb +chb +chb +chb +chb +chb +saZ +rUK aQL qDq qDq qDq -osA -cHl -cHl +ijL +sUD +sUD bTb -beB -aYT -beB +vDT +cNR +vDT bbs cdp cdp jks cdp bbs -bJf -bJf -bJf -bJf -xba -dNt -dNt -dNt -dNt +gYy +gYy +gYy +gYy +gJZ +wBn +wBn +wBn +wBn bbs fJO fJO fJO fJO bbs -bJz -cbS -bHW +cSU +fqA +cSU xSw -ejo -ejo -niY +ghi +ghi +kgI oXb oXb oXb bJC -cAH -vuR -vuR -vTK -vTK -hTk -vTK -vTK -vTK -vTK -vTK -vTK +hWu +dXv +dXv +taY +taY +rdx +taY +taY +taY +taY +taY +taY aaa aaa aaa @@ -129586,55 +116885,55 @@ bdH bdH bdH bdH -aad +bHS cuC ptK ptK ptK ptK -bNM +qNr iEr -owg +jtb eNi -sjj +tbj fzP -sAC +jDH wYY -alG -aYj -apd -alR -amA +xTk +rtQ +ttN +mTI +jnv atq fhf alO -axQ -azt +oFr +ihK auA -aDD -aFD +jrN +rSx inw -xEO -xEO -lnP -alR -alG -aYj -apf +qYD +qYD +rFo +mTI +xTk +rtQ +rhX jWh qLs qLs -cRi +rco jWh -upR +clU uWV -uIv +kIh bYn bYn bYn aag aag -ajZ +woL bdH bdH bdH @@ -129687,56 +116986,56 @@ aaa aaa aaa aaa -wVb -iDm -fTR +chb +rxs +uTk aQL -ksp -ksp -rou +pEf +pEf +efu qDq qDq qDq bTb -aLG -aYO -aLG -bBh -aLG -aLG -aLG -aLG -byC -aLG -beB -aLG -aLG -bsT -buH -buH -bJz -buH -bSd -buH -buH -buH -buH -cbD -buH -iEb -bIT +mcE +hnJ +mcE +mcE +mcE +mcE +mcE +mcE +dEg +mcE +xga +mcE +mcE +gKa +bXC +bXC +jPZ +bXC +aWv +bXC +bXC +bXC +bXC +bXC +bXC +gZo +bXC xSw oXb oXb oXb -kIP -qer -kIP +cQe +fml +cQe bJC -cAH -pFP -ebO -vTK +hWu +ylU +xBX +taY aaa aaa aaa @@ -129793,47 +117092,47 @@ hzc hzc hzc cuC -dbw -uGQ -bNM +tAl +iJF +qNr rtd -owg +jtb eNi -fcM +eEb uzE qsL -nim -qhc -ajP -apd -alR -amA +pRp +jxd +pHk +ttN +mTI +jnv atq cSm alO -elf -amA +lHb +jnv atq aDE asT -aHw -iWR -iWR -kbx -alR -alG -aYj -apd +uPT +sIm +sIm +jXb +mTI +xTk +rtQ +ttN jWh jWh jlQ jlQ jWh -lhJ +pJs fCL -uIv -oXJ -kPR +kIh +eap +ncc bYn hzc hzc @@ -129890,56 +117189,56 @@ aaa aaa aaa aaa -wVb -eFH -hlz +chb +saZ +rUK aQL aQL aQL aQL -ksp -rou -rou +pEf +efu +pEf aQL -aLG -aZl -tBF -sOm -tBF -aQt -bhn -aQt -aQt -aQt -crW -aQt -aQt -mji -buI -buI -bUz -buI -buI -buI -bCE -buI -bFu -cbE -bFu -bIl -bIX +mcE +dTq +rYL +rYL +rYL +daF +wHG +daF +daF +daF +cxj +daF +daF +pnk +wxA +wxA +sZp +wxA +wxA +wxA +vkJ +wxA +wwm +wwm +wwm +gUi +cWk bJC -kIP -qer -kIP +cQe +fml +cQe bJC bJC bJC bJC -vuR -vuR -vuR -vTK +dXv +dXv +dXv +taY aaa aaa aaa @@ -129992,55 +117291,55 @@ bdH bdH bdH bdH -yjq +gBu bZc iHc -sbq -rLk +pTZ +slR hsr -bNM +qNr iEr -owg +jtb eNi -xlC -gyO -kTN +dtb +jCp +dRN eNi -alJ -aYj -apd -alR -amA +nIs +rtQ +ttN +mTI +jnv atq -civ -dof +uZT +vNL atq -arm -atc -atc -atc +imr +fkH +fkH +fkH inw -xEO -xEO -aOV -alR -alG -aYj -apd +qYD +qYD +rVU +mTI +xTk +rtQ +ttN jWh -kUw -dod -eNv -rxV -thV +slq +nwJ +vyI +jfQ +oOT fCL -uIv +kIh hSk -vVw -jzD +tUf +cpX iHc bZc -mZF +hYe bdH bdH bdH @@ -130093,56 +117392,56 @@ aaa aaa aaa aaa -wVb -eFH -hlz -hlz -gjN -hlz -rdK -rdK -rdK -rdK -rdK -tfl -aZm -aWR -buU -aWR -bjb -bal -bjb -bjb -aWR -bNX -aWR -aWR -bsV -buJ -buJ -bUG -buJ -bzK -bzK -bCF -bzK -buJ -cdZ -buJ -buJ -jMb +chb +saZ +rUK +rUK +dnd +rUK +jRJ +jRJ +jRJ +jRJ +jRJ +eNM +mcE +mcE +mcE +mcE +pkY +rhv +pkY +pkY +mcE +qFJ +mcE +mcE +gKa +bXC +bXC +nVA +bXC +olG +olG +gZo +olG +bXC +bXC +bXC +bXC +iFr bJC bJC bJC bJC bJC -cAH -cAH -cAH -vuR -cAH -wZT -vTK +hWu +hWu +hWu +dXv +hWu +nDh +taY aaa aaa aaa @@ -130195,55 +117494,55 @@ bdH bdH bdH bdH -yjq +gBu jgw wbJ -sbq -rLk +pTZ +slR hsr -bNM +qNr iEr -fhH +oxT eNi -oNb -iFC -qAA +lUP +eYb +wWY eNi -alG -aDZ -apd -alR -arK -atc -civ -kwd +xTk +uSb +ttN +mTI +uQA +fkH +uZT +ovc atq atq -amA -aDH -aFI +jnv +bWR +mwu alO -aJq -aMG -aOW -alR -alG -aYj -apd +hjh +ebK +hBG +mTI +xTk +rtQ +ttN jWh -tZP -hSk -hSk +lZv +nwJ +vyI +vyI vyI -thV fCL -uIv +kIh hSk -vVw -jzD +tUf +cpX wLi jgw -mZF +hYe bdH bdH bdH @@ -130296,56 +117595,56 @@ aaa aaa aaa aaa -wVb -jmg -hlz -eFH -eFH -hlz -hlz -gwF -eFH -eFH -rdK -rdK -aZn -rdK -rdK -bCW -bEH -bHt -bJi -bKE -bKE -bkZ -bpX -bpX -bpX -bpX -bpX -bkZ -bWV -jkd -bYE -bZz -cav -bBa -haq -haq -lAA -haq -haq -cAH -cAH -cAH -cAH -cAH -cAH -cAH -cAH -cAH -ngs -vTK +chb +hOg +rUK +saZ +saZ +rUK +rUK +sQX +saZ +saZ +jRJ +jRJ +pGY +jRJ +jRJ +fMf +fVF +rVM +lFw +wQu +wQu +ikZ +lPJ +lPJ +ikZ +lPJ +lPJ +ikZ +dju +fQG +vgY +teP +kXR +bYT +msx +msx +ftk +msx +msx +hWu +hWu +hWu +hWu +hWu +hWu +hWu +hWu +hWu +mBw +taY aaa aaa aaa @@ -130402,47 +117701,47 @@ hzc hzc hzc cuC -vvy -uGQ -bNM +fmt +iJF +qNr rtd -owg +jtb eNi eNi eNi eNi eNi -aEp -lIw -aEp +xTk +uSb +ttN alO alO alO alO alO -azi -azi -ets -kvh -rka +gzZ +gzZ +rBU +yes +iUH alO alO alO alO alO -aEp -lIw -aEp +xTk +rtQ +ttN jWh -nDL -vyI +slq +nwJ vyI -wTJ -thV +kOC +oOT uWV -uIv -oXJ -uGc +kIh +eap +kzC bYn hzc hzc @@ -130499,56 +117798,56 @@ aaa aaa aaa aaa -wVb -epA -wDm -hlz -hlz -hlz -hlz -gwF -hlz -hlz -rdK -aYc -hlz -hlz -rdK -rdK -aVl -bHu -aVl -bkZ -bkZ -bkZ -bpY -brw -bqf -buK -bvI -bkZ -bkZ -bkZ -aVl -bZA -aVl -haq -haq -cAH -vuR -cAH -cAH -vuR -vuR -vuR -cAH -cAH -cAH -cAH -vuR -sIV -hBU -vTK +chb +sBk +bpg +rUK +rUK +rUK +rUK +sQX +rUK +rUK +upZ +rUK +rUK +rUK +jRJ +jRJ +kmY +cMO +kmY +ikZ +ikZ +ikZ +gsq +nAY +vXS +nZc +asi +ikZ +ikZ +ikZ +kmY +wBP +kmY +msx +msx +hWu +dXv +hWu +hWu +dXv +dXv +dXv +hWu +hWu +hWu +hWu +dXv +eWw +dYE +taY aaa aaa aaa @@ -130601,24 +117900,24 @@ bdH bdH bdH bdH -aad +bHS aag aag cuC cuC cuC -bNM +qNr iEr -owg -owg -dWX -owg -owg +jtb +jtb +sCq +jtb +jtb ptK -aGD -aPb -apj -aqq +uDx +joe +sTL +tIe aPa eky eky @@ -130632,24 +117931,24 @@ alO eky eky aPa -aqq -aGD -aPb -kff +tIe +uDx +joe +uEO jWh -xXa -xXa -xXa -xXa -pZK +pfi +pfi +pfi +pfi +wNV fCL -uTZ +otJ bYn bYn bYn aag aag -ajZ +woL bdH bdH bdH @@ -130702,56 +118001,56 @@ aaa aaa aaa aaa -wVb -pIk -bNT -wul -eFH -eFH -eFH -ybS -wul -hlz -hlz -hlz -hlz -eFH -eFH -rdK -bEU -bjl -bJj -bkZ -bmM -cEx -bpZ -brx -boH -jnf -hfO -bxo -byz -bkZ -bEV -bCI -ccW -haq -pFM -hzV -vuR -vuR -vuR -cAH -fXd -cAH -vuR -cAH -vuR -vuR -rgA -brX -mfI -vTK +chb +utm +myp +qbp +saZ +saZ +saZ +iyf +qbp +rUK +rUK +rUK +rUK +saZ +saZ +jRJ +tCr +oZn +dSd +ikZ +cqi +lzw +qgz +slF +ijb +rRj +apn +wqD +kSh +ikZ +tQX +kVQ +xgk +msx +qVs +prv +dXv +dXv +dXv +hWu +pUs +hWu +dXv +hWu +dXv +dXv +sDE +pMS +uZz +taY aaa aaa aaa @@ -130804,55 +118103,55 @@ bdH bdH bdH bdH -aae -aah -aah -aah +fpk +hWR +hWR +hWR aag uMc -vFv +rAF wOt odl jhx keR jhx keR -dwI -aTS -wqq -agJ -hal +uOy +mch +uxu +sCz +tgn uYg nau uYg uYg -bXf -aDO -aDO -aDO -gQO +nQV +ooA +ooA +ooA +lBr uYg uYg nau uYg -hal -aGC -wqq -aTS -mPh +tgn +oon +uxu +mch +hql soP tWi soP pDr tWi tpd -eim +alb pql aag -aah -aah -aah -afm +hWR +hWR +hWR +rNc bdH bdH bdH @@ -130905,56 +118204,56 @@ aaa aaa aaa aaa -wVb -wVb -wVb -wVb -wVb -wVb -wVb -aUx -aVl -aVl -aVl -bxE -aVl -rdK -iDm -rdK -bEU -bjl -bJj -bkZ -bmN -boI -boI -brx -boH -jnf -shb -boI -byA -bkZ -bBc -bCI -ccW -haq -vuR -haq -aVl -bxE +chb +chb +chb +chb +chb +chb +chb +oxl +kmY +kmY +kmY +tUG +kmY +jRJ +rxs +jRJ +tCr +oZn +dSd +ikZ +wWt +dQV +dQV +slF +ijb +rRj +laq +dQV +oHP +ikZ +nCn +kVQ +xgk +msx +dXv +msx +kmY +tUG aep aep aep dKL -vTK -vTK -vTK -vTK -vTK -vTK -vTK -vTK +taY +taY +taY +taY +taY +taY +taY +taY aaa aaa aaa @@ -131011,47 +118310,47 @@ aaa aaa aaa aaa -aad +bHS uMc -bNM -rmf -uZH -bFt -kPG -kPG -cVw +qNr +xGV +kYO +aIR +lWu +lWu +lEg ptK -aIe -anR -lNl -aqq +jJu +dgz +kvi +tIe eky aNl eky eky -nCT +lVP vsh vsh vsh -ydY +aGA eky eky aNl eky -aqq -aIe -iYj -lNl +tIe +jJu +rGm +kvi jWh -tim +nCl uWV -ttd -nLk -rCD -eYR -uIv +rUW +qiW +mMe +tEc +kIh pql -ajZ +woL aaa aaa aaa @@ -131112,47 +118411,47 @@ aaa aaa aaa aaa -aad +bHS aag aag -aUx -pXj -btm -aVl -bxF -byJ -aVl -vsV -rdK -bEU -bjl -ccW -bKO -bvL -bvL -bvL -bPR -bRi -bSk -bvL -bvL -bvL -bKO -bEU -bCI -uVR -haq -mHR -aVl -ccx -bBm +oxl +vOS +cSq +kmY +wxa +pPA +kmY +qxw +jRJ +vjm +oZn +xgk +tyP +wBl +wBl +wBl +qcM +eam +crV +wBl +wBl +wBl +tyP +tCr +kVQ +tNB +msx +qhp +kmY +wIk +xnr ggQ afk afk dKL aag aag -ajZ +woL aaa aaa aaa @@ -131213,49 +118512,49 @@ aaa bdH bdH bdH -aac +eQJ aag cuC -htb -pfc +smx +pZD ptK ptK ucp -cIW +vdh ptK ptK -psm -dKm -psm +dhx +qBp +dhx aHe jlT exi eky eky -eAC -aBu -aBu -aBu -eAC +qcG +kVV +kVV +kVV +qcG eky eky ins wRP aHe -vuv -vuv -vuv +iFl +iFl +iFl jWh jWh -olk +ldT jWh jWh jWh -jAJ -lAu +hvG +nVo bYn aag -ajY +fPT aaa aaa aaa @@ -131315,47 +118614,47 @@ aaa aaa aaa aaa -aad +bHS aag aag -aUx -pXj -btm -aVl -bxG -byK -aVl -hlz -rdK -wun -bht -pfh -pWf -bmP -pop -lJa -bPZ -bRj -bSl -smr -nel -bQu -bRu -bYI -pIf -bJk -haq -cAH -aVl -byQ -ccR +oxl +vOS +cSq +kmY +oEh +vxu +kmY +rUK +jRJ +caL +cAN +wYd +cSB +tkB +wOL +sKd +bjU +ohw +ipJ +fUt +mxK +xXc +gpL +xtT +jSL +oHW +msx +hWu +kmY +uvq +xVM aWZ bLx bMJ dKL aag aag -ajZ +woL aaa aaa aaa @@ -131419,17 +118718,17 @@ bdH cuC cuC cuC -bNM -ofK +qNr +byX ptK -uXL -gPc -trB -exy +swC +rzI +oRe +qMS ptK -psm -psm -psm +coM +coM +coM eky eky aNl @@ -131445,17 +118744,17 @@ eky aNl eky rqj -vuv -nfS -emx +iFl +ewm +rwu jWh qCg -xjw -pfA +vsN +wOa xAC jWh -lbB -uIv +yiR +kIh bYn bYn bYn @@ -131518,47 +118817,47 @@ aaa aaa aaa aaa -aae -aah -aah -aUx -uLN -btm -btm -bxH -byL -aVl -bxE -aVl -vWK -bjl -ccW -bKO -bqa -bqa -aaj -bQa -bRk -bSm -bvK -bUI -bqa -bKO -bEU -bCI -ccW -aVl -bxE -aVl -ccy -diF +fpk +hWR +hWR +oxl +dYl +cSq +cSq +xzz +uWj +kmY +tUG +kmY +ftU +oZn +xgk +tyP +mOl +mOl +bUg +fyM +flz +mZd +nEn +oYi +mOl +tyP +tCr +kVQ +xgk +kmY +tUG +kmY +epW +gem aep aep aep dKL -aah -aah -afm +hWR +hWR +rNc aaa aaa aaa @@ -131620,47 +118919,47 @@ bdH bdH bdH cuC -uiG -tfb -rFy -ofK +bGx +iFb +xTP +byX ptK -uXL -eet -fcP -pDh +swC +lwn +cRV +hIR ptK -xlX -xlX -hSu -aMT -aMT -dPm -qeF +pyG +pyG +vfd +wEN +wEN +oPR +rfr aHe aHe -aDX -yge -aEm +fEQ +wCE +een aHe aHe -okg -dPm -aMT -aMT -iEs -cxo -cxo +lSY +oPR +wEN +wEN +swr +eIz +eIz jWh uUV -rsW -djN +xYK +mIM fnQ jWh -lbB -cKL -xXa -xoO +yiR +rER +pfi +jIo bYn aaa aaa @@ -131724,37 +119023,37 @@ aaa aaa aaa aaa -aUx -btn -btm -btm -bxI -byM -aVl -nmb -aVl -brI -bjl -sPA -bkZ -bmR -boI -bqe -brx -tzz -jnf -ePY -bxr -byD -bkZ -bYK -bCI -oAd -aVl -fLX -aVl -byQ -ccS +oxl +khV +cSq +cSq +xaa +wTY +kmY +eWo +kmY +rin +oZn +pmN +ikZ +wTs +dQV +kyw +slF +gaH +rRj +sec +xmr +nNi +ikZ +ubK +kVQ +kNg +kmY +nwm +kmY +uvq +bGX ggQ bLy bLy @@ -131823,47 +119122,47 @@ bdH bdH bdH cuC -bNM -rmf -luY -ncp +qNr +xGV +axd +pqa ptK -cQg -wxj -lht -rYv +kGO +nnT +vek +vUT ptK -dmQ -jBB -psm +nGp +noF +coM svf arV wZX eky aDQ -ayi +qOw eky aBx eky -jlX +udu aDQ eky wZX arV vUh -vuv -xct -cxo +iFl +tmt +eIz jWh dkS -vba -naQ +frp +ddn fnQ jWh -xPZ -pcv -eYR -uIv +ymh +qBf +tEc +kIh bYn aaa aaa @@ -131927,37 +119226,37 @@ aaa aaa aaa aaa -aUx -sXV -cWt -cWt -pFA -byN -bAf -bBq -bAf -bje -bhw -ccW -bkZ -bkZ -wie -boI -brx -bNZ -jnf -boI -gXq -bkZ -bkZ -hdg -bCJ -bEj -cce -cbH -cce -ccz -ccT +oxl +vUO +kar +kar +lXH +hIX +kjO +igv +kjO +aQi +yjd +xgk +ikZ +ikZ +nxD +dQV +slF +nBM +rRj +dQV +eCi +ikZ +ikZ +sQs +ayx +dLy +wuO +xDj +wuO +xrE +sWe aWZ bLz bMK @@ -132026,47 +119325,47 @@ bdH bdH bdH cuC -aeM -ofK +nPv +byX ptK ptK ptK ptK ptK -afX +tRn ptK ptK -dmQ -psm -psm +nGp +coM +coM qyH arV wZX eky aDQ -pyy +fCq eky eky eky -dLc +mli aDQ eky wZX arV dtv -vuv -vuv -cxo +iFl +iFl +eIz jWh jWh -kLc +uUP jWh jWh jWh jWh jWh -lbB -oCf +yiR +mMs bYn aaa aaa @@ -132100,21 +119399,21 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH aaa bdH aaa @@ -132134,33 +119433,33 @@ dKL aep aep aep -bkt -btm -fxu -bBp -fxu -bFc -bjl -bjd -gXY -bkZ -xlY -boI -brx -bNZ -jnf -boI -kqc -bkZ -tmA -bfs -bCI -cay -fxu -cbG -fxu -ccA -bZE +imB +cSq +tOv +jEQ +tOv +lId +oZn +dpk +tPR +ikZ +oaX +dQV +slF +nBM +rRj +dQV +koU +ikZ +qac +fAu +kVQ +gkn +tOv +ueY +tOv +yeE +gjs aep aep aep @@ -132229,19 +119528,19 @@ bdH bdH bdH uMc -bNM -ofK -psm -kSd -dmQ -tZm -dmQ -xlX -hWU -dmQ -aeq -psm -aNe +qNr +byX +coM +rUH +nGp +lHI +nGp +pyG +gRU +nGp +nEP +coM +iwT hiN arV wZX @@ -132257,19 +119556,19 @@ eky wZX arV fXM -aNe -vuv -ahb -cxo -nJy -boC -cxo -iwh -kfv -vGr -vuv -lbB -uIv +iwT +iFl +qqv +eIz +qfu +dSv +eIz +tfD +iGh +jTW +iFl +yiR +kIh pql bdH bdH @@ -132303,21 +119602,21 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -132337,33 +119636,33 @@ dKL afk aWo aWZ -byg -byO -aVl -bxE -aVl -bFe -bjl -bjg -ccW -bKO -boI -boI -brx -tzz -jnf -boI -boI -bKO -bEU -bYM -cxe -caz -aVl -bxE -aVl -ccB -ccV +wlH +biz +kmY +tUG +kmY +pIq +oZn +nTq +xgk +tyP +dQV +dQV +slF +gaH +rRj +dQV +dQV +tyP +tCr +aPS +sTt +tAj +kmY +tUG +kmY +fxg +cUi aWZ bLA afk @@ -132432,47 +119731,47 @@ bdH bdH bdH uMc -bNM -ofK -psm -kSd -dmQ -nwu -dmQ -xlX -rwb -dmQ -jXY -psm -atY -qkj -aMT -svl -pzJ -qDt +qNr +byX +coM +rUH +nGp +kcc +nGp +pyG +isP +nGp +hDU +coM +bFI +cuS +wEN +hdj +vTi +vJr uYg vsh oPf vsh uYg -qDt -pzJ -sQO -aMT -rWF -atY -vuv -woM -nqD -cxo -boC -cxo -qMf -wUN -jgC -vuv -lbB -uIv +vJr +vTi +uOE +wEN +aJy +bFI +iFl +tQv +xEt +eIz +dSv +eIz +biJ +yks +kWO +iFl +yiR +kIh pql bdH bdH @@ -132506,21 +119805,21 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -132540,33 +119839,33 @@ dKL aVo aWp aWZ -byh -byQ -aVl -hlz -rdK -bFf -aVp -ddj -sfU -fWT -bKT -bKT -ect -lrs -put -bKT -bKT -bWZ -kJC -mbn -mUZ -caA -haq -cAH -aVl -ccC -ccW +pOw +uvq +kmY +kok +mro +gTJ +qev +lbp +eMa +wWy +xNS +xNS +ddJ +dCU +oDq +xNS +xNS +odj +cQV +bVr +wBm +vhS +mro +kok +kmY +cAc +xgk ggQ afk bML @@ -132635,47 +119934,47 @@ bdH bdH bdH uMc -bNM +qNr rtd -hSu -xlX -xlX -xlX -xlX -xlX -aiE -dmQ -atD -psm -psm -vHl -aRp -jBX -akS +vfd +pyG +pyG +pyG +pyG +pyG +xEI +nGp +qIj +coM +coM +xDe +eky +wZX +vUh aHe oxU bsy -oir +iMP gzw shh aHe -tKf -jBX -aRp -edx -vuv -vuv -myC -crP -cxo -fbx -fbx -fbx -fbx -fbx -iEs +svf +wZX +eky +rOl +iFl +iFl +uhS +eHo +eIz +gUW +gUW +gUW +gUW +gUW +swr uWV -uIv +kIh pql bdH bdH @@ -132709,21 +120008,21 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -132743,33 +120042,33 @@ dKL afk afk ggQ -aAb -byR -aVl -eFH -rdK -bFg -bHv -bjg -bld -bkZ -boN -gUI -brC -bsZ -buQ -mOr -kFq -bkZ -bzP -bjg -gJq -caB -haq -vuR -aVl -ccD -ccX +mFz +gwZ +kmY +iEl +mro +kCx +sTy +nTq +tbN +ikZ +eNX +edp +pqM +bID +tIs +ofI +oDP +ikZ +gjG +nTq +ePh +lrZ +mro +iEl +kmY +buG +eDO aWZ bLC afk @@ -132838,23 +120137,23 @@ bdH bdH bdH cuC -htb -pfc -psm -psm -psm -psm -pPz -xlX -xlX -xlX -xlX -xlX -hSu -qYG -atM -bGc -atK +smx +pZD +coM +coM +coM +coM +kqP +pyG +pyG +pyG +pyG +pyG +vfd +dpL +dnI +vBw +qUg aHe aHe aHe @@ -132862,23 +120161,23 @@ aHe aHe aHe aHe -atM -bGc -atK -qYG -iEs -fbx -fbx -jaj -fbx -boC -hPg -vuv -vuv -vuv -vuv -jAJ -lAu +dnI +vBw +qUg +dpL +swr +gUW +gUW +kvo +gUW +dSv +ded +iFl +iFl +iFl +iFl +hvG +nVo bYn bdH bdH @@ -132912,21 +120211,21 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH aaa aaa aaa @@ -132946,33 +120245,33 @@ dKL dKL aep aep -byk -byQ -aVl -eFH -rdK -bhB -bhB -uEc -bKU -bhB -gir -bpX -bpX -bpX -bpX -bpX -gir -bhB -bXP -bjn -bhB -bhB -haq -mHR -aVl -ccE -bjd +oDo +uvq +kmY +iEl +mro +kbv +kbv +pCO +bVh +kbv +vYU +lPJ +lPJ +lPJ +lPJ +lPJ +vYU +kbv +hgY +mnR +kbv +kbv +mro +xQs +kmY +rSc +dpk aep aep dKL @@ -133040,148 +120339,49 @@ aaa aaa aaa bdH -cuC -bNM -tgK -tfb -skg -eaX -pVZ -pVZ -pVZ -pVZ -pVZ -pVZ -pVZ -pVZ -aPw -avu -mhG -cFn -cYu -aHe -fdX -wcR -xJh -aHe -qYu -dxK -dPC -aMU -aPw -qMu -qMu -qMu -qMu -qMu -qMu -qMu -qMu -euY -iuw -jHL -wOK -uIv -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aUx -bvQ -bwj -byl -bzj -aVl -eFH -eFH -bhB -bfA -bLe -bKV -bhB -fEg -bOl -bOm -bRr -bXt -bUX -szm -bhB -bXQ -bLe -psp -bhB -cAH -vuR -aVl -bzj -cHO -cdr -cer -aUx -aaa -aaa -aaa +cuC +qNr +lZl +iFb +vJR +cDA +epQ +epQ +epQ +epQ +epQ +epQ +epQ +epQ +aPw +eWj +mhG +rRN +ceb +aHe +iEw +rzQ +ptN +aHe +yig +qiX +dPC +oIi +aPw +tCO +tCO +tCO +tCO +tCO +tCO +tCO +tCO +fTl +pVw +pFS +dtW +kIh +bYn bdH bdH bdH @@ -133208,93 +120408,13 @@ bdH aaa aaa aaa -aaa -aaa aab aaa aaa -"} -(257,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aKQ aaa aaa -bdH -bdH -bdH -bdH -cuC -riJ -kHY -uhM -uvk -xJn -cuC -aag -aag -aag -aag -aag -aag -aag -aPw -aqJ -aBu -odu -aMT -aEg -aDO -aDO -aDO -aEg -aMT -odV -aBu -aqp -aPw -aag -aag -aag -aag -aag -aag -aag -bYn -tAh -bfe -rDb -qjV -rID -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH +aak bdH bdH bdH @@ -133312,30 +120432,6 @@ bdH aaa aaa aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aaa aaa aaa @@ -133349,39 +120445,39 @@ aaa aaa aaa bdH -aUx -aWr -aUx -aUx -aUx -aUx -hlz -hlz -bhB -bHy -bLe -bKV -bMB -bOc -plE -plE -plE -plE -plE -bxs -bMB -bXQ -bLe -bHy -bhB -kpX -lGr -aUx -aUx -aUx -aUx -aWr -aUx +oxl +puC +lRO +esv +xNN +kmY +iEl +iEl +kbv +cRH +iTB +uYF +kbv +aNk +ssS +ssS +pja +ssS +ssS +aNk +kbv +ves +iTB +qtP +kbv +kok +iEl +kmY +xNN +eln +dXI +hTa +oxl aaa aaa aaa @@ -133417,7 +120513,7 @@ aab aaa aaa "} -(258,1,1) = {" +(257,1,1) = {" aaa aaa aab @@ -133447,47 +120543,47 @@ bdH bdH bdH cuC +waS +mRz +uhM +dZT +ogG cuC -umy -iKZ -tiw -cuC -cuC -mNX -mNX -mNX -mNX -mNX -mNX -cus -aPw -aPw -atM -bGc -atK -avu -aMT -arV -aMT -aMU -atM -bGc -atK +aag +aag +aag +aag +aag +aag +aag aPw +mtQ +kVV +jla +wEN +mdA +ooA +ooA +ooA +mdA +wEN +iCj +kVV +ekS aPw -mNX -mNX -mNX -mNX -mNX -mNX -qOk -bYn -bYn -qQL -kHS -rID +aag +aag +aag +aag +aag +aag +aag bYn +okn +qWg +rDb +cwO +tUP bYn bdH bdH @@ -133521,13 +120617,7 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH +aak bdH bdH bdH @@ -133551,40 +120641,46 @@ aaa aaa aaa aaa +aaa +aaa +aaa +aaa +aaa +aaa bdH -aae -aah -aag -aag -aag -wVb -iDm -eFH -bhB -ozi -bJF -bKW -bXR -bUJ -bTi -aut -aut -aut -xjC -fxW -bXl -bzU -bYO -bZD -bhB -vim -woG -vTK -aag -aag -aag -aah -afm +oxl +uzD +oxl +oxl +oxl +oxl +kok +kok +kbv +mRp +iTB +uYF +dzc +oAW +dtR +dtR +dtR +dtR +dtR +gOv +dzc +ves +iTB +mRp +kbv +rTG +sjx +oxl +oxl +oxl +oxl +uzD +oxl aaa aaa aaa @@ -133620,7 +120716,7 @@ aab aaa aaa "} -(259,1,1) = {" +(258,1,1) = {" aaa aaa aab @@ -133649,49 +120745,49 @@ bdH bdH bdH bdH -aad cuC -mkH -rtd -fcP cuC -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad +qmw +wMV +xWU +cuC +cuC +fdo +fdo +fdo +fdo +fdo +fdo +gWp aPw -vgD -mhG -had -eAL -pzJ -oPf -pzJ -had -eAL -dPC -ihX aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad +dnI +vBw +qUg +eWj +wEN +arV +wEN +oIi +dnI +vBw +qUg +aPw +aPw +fdo +fdo +fdo +fdo +fdo +fdo +tWC +bYn +bYn +krE +hRI +tUP bYn -kcA -uWV -uIv bYn -ajZ bdH bdH bdH @@ -133724,10 +120820,10 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa +aak +bdH +bdH +bdH bdH bdH bdH @@ -133745,8 +120841,6 @@ bdH bdH bdH bdH -aaa -aaa aaa aaa aaa @@ -133757,37 +120851,39 @@ aaa aaa aaa bdH -aad +fpk +hWR aag aag -wVb -hlz -hlz -bhB -bJQ -bLe -usw -bMF -blo -ktO -bUW -bMQ -bXr -lfQ -blo -bXm -bXS -bLe -bJR -bhB -cAH -cAH -vTK aag +fdw +pgU +iEl +kbv +twm +xSl +mVX +spb +yir +qVB +pAh +pAh +pAh +rRT +rgz +xbP +jUf +mbW +kBI +kbv +wrx +fRo +fdw aag -ajZ -aaa -aaa +aag +aag +hWR +rNc aaa aaa aaa @@ -133823,7 +120919,7 @@ aab aaa aaa "} -(260,1,1) = {" +(259,1,1) = {" aaa aaa aab @@ -133852,13 +120948,13 @@ bdH bdH bdH bdH -aad +bHS cuC -vRu -ngU -ssU +pSn +rtd +cRV cuC -ajZ +woL xVk xVk xVk @@ -133866,21 +120962,21 @@ xVk xVk xVk xVk -aad +bHS aPw -aqJ -aBA -aqp -avu -eky -dPm -eky -aMU -aqJ -aBA -aqp +sAt +mhG +ggI +dLx +vTi +oPf +vTi +ggI +dLx +dPC +upy aPw -ajZ +woL xVk xVk xVk @@ -133888,13 +120984,13 @@ xVk xVk xVk xVk -aad +bHS bYn -thV +mTq uWV -uIv +kIh bYn -ajZ +woL bdH bdH bdH @@ -133927,10 +121023,10 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa +aak +bdH +bdH +bdH bdH bdH bdH @@ -133960,35 +121056,35 @@ aaa aaa aaa bdH -aad +bHS aag aag -wVb -eFH -eFH -bhB -bHz -bJI -bKW -bEn -rFu -pQq -bQe -bTl -bSt -buW -bUL -bXn -bzU -bYS -bJR -bhB -cAH -cAH -vTK +fdw +kok +kok +kbv +gHU +iTB +aOj +hIi +qcx +rnm +ssS +ssS +ssS +mpH +qcx +cgh +lfu +iTB +eNe +kbv +kok +kok +fdw aag aag -ajZ +woL aaa aaa aaa @@ -134026,7 +121122,7 @@ aab aaa aaa "} -(261,1,1) = {" +(260,1,1) = {" aaa aaa aab @@ -134055,13 +121151,13 @@ bdH bdH bdH bdH -aad -uMc -gbs -iEr -hFw -uMc -ajZ +bHS +cuC +vkq +ngU +qDr +cuC +woL xVk xVk xVk @@ -134069,21 +121165,21 @@ xVk xVk xVk xVk -aad +bHS aPw -aHe -aHe -aHe -mtD +mtQ +ePy +ekS +eWj eky -wZX +oPR eky -nKq -aHe -aHe -aHe +oIi +mtQ +ePy +ekS aPw -ajZ +woL xVk xVk xVk @@ -134091,13 +121187,13 @@ xVk xVk xVk xVk -aad -pql -thV -fCL -uIv -pql -ajZ +bHS +bYn +oOT +uWV +kIh +bYn +woL bdH bdH bdH @@ -134130,10 +121226,10 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa +aak +bdH +bdH +bdH bdH bdH bdH @@ -134163,35 +121259,35 @@ aaa aaa aaa bdH -aad +bHS aag aag -wVb -hlz -eFH -bhB -bhB -hxp -bKV -bLe -laj -xjC -ktO -bPd -lfQ -ddK -qXx -bLe -bXQ -bJR -bhB -bhB -vuR -mHR -vTK +fdw +iEl +iEl +kbv +koe +gIi +mVX +xZx +rGf +bIv +exA +ssS +iKR +kvC +xCr +oBB +jUf +bWI +eNe +kbv +kok +kok +fdw aag aag -ajZ +woL aaa aaa aaa @@ -134229,7 +121325,7 @@ aab aaa aaa "} -(262,1,1) = {" +(261,1,1) = {" aaa aaa aab @@ -134258,13 +121354,13 @@ bdH bdH bdH bdH -aad +bHS uMc -nrO +wyK iEr -fcP +rdy uMc -ajZ +woL xVk xVk xVk @@ -134272,21 +121368,21 @@ xVk xVk xVk xVk -aad +bHS aPw aHe aHe aHe -avu +utQ eky wZX eky -aMU +aGa aHe aHe aHe aPw -ajZ +woL xVk xVk xVk @@ -134294,13 +121390,13 @@ xVk xVk xVk xVk -aad +bHS pql -thV +oOT fCL -uIv +kIh pql -ajZ +woL bdH bdH bdH @@ -134333,10 +121429,10 @@ aaa aKQ aaa aaa -aab -aaa -aaa -aaa +aak +bdH +bdH +bdH bdH bdH bdH @@ -134366,35 +121462,35 @@ aaa aaa aaa bdH -aad +bHS aag aag -wVb -hlz -hlz -hlz -bhB -bYV -bKV -bhB -bOh -lfQ -ktO -bOk -lfQ -ktO -bnc -bhB -bXU -bYV -bhB -jcK -cAH -cAH -vTK +fdw +kok +iEl +kbv +kbv +oSJ +uYF +iTB +oLu +rRT +rnm +ssS +mpH +pqt +pxk +iTB +ves +eNe +kbv +kbv +iEl +xQs +fdw aag aag -ajZ +woL aaa aaa aaa @@ -134432,7 +121528,7 @@ aab aaa aaa "} -(263,1,1) = {" +(262,1,1) = {" aaa aaa aab @@ -134461,13 +121557,13 @@ bdH bdH bdH bdH -aad +bHS uMc -aVC +djb iEr -fcP +cRV uMc -ajZ +woL xVk xVk xVk @@ -134475,21 +121571,21 @@ xVk xVk xVk xVk -aad -jbq -jXW -jcZ -aDO -qqu +bHS +aPw +aHe +aHe +aHe +eWj eky -aNl +wZX eky -dFk -aDO -nzI -jXW -jbq -ajZ +oIi +aHe +aHe +aHe +aPw +woL xVk xVk xVk @@ -134497,13 +121593,13 @@ xVk xVk xVk xVk -aad +bHS pql -thV +oOT fCL -uIv +kIh pql -ajZ +woL bdH bdH bdH @@ -134536,14 +121632,217 @@ aaa aKQ aaa aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bHS +aag +aag +fdw +kok +kok +kok +kbv +emk +uYF +kbv +vwu +mpH +rnm +ssS +mpH +rnm +ssS +kbv +mMT +emk +kbv +gFA +kok +kok +fdw +aag +aag +woL +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa aab aaa aaa +"} +(263,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bdH bdH bdH bdH +bHS +uMc +hmb +iEr +cRV +uMc +woL +xVk +xVk +xVk +xVk +xVk +xVk +xVk +bHS +jbq +dQW +fsK +ooA +cIE +eky +aNl +eky +sBF +ooA +kQD +dQW +jbq +woL +xVk +xVk +xVk +xVk +xVk +xVk +xVk +bHS +pql +oOT +fCL +kIh +pql +woL +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH bdH bdH bdH @@ -134569,35 +121868,35 @@ aaa aaa aaa bdH -aad +bHS aag aag -wVb -eFH -eFH -eFH -bhB -bJK -bLc -bhB -bUY -lfQ -brJ -plE -buW -ktO -bMW -bhB -bXV -bJK -bhB -rbp -vuR -rbp -vTK +fdw +iEl +iEl +iEl +kbv +hEy +gmL +kbv +ciM +mpH +ycD +dtR +kvC +rnm +tDk +kbv +iAE +hEy +kbv +ixl +iEl +ixl +fdw aag aag -ajZ +woL aaa aaa aaa @@ -134664,13 +121963,13 @@ bdH bdH bdH bdH -aad +bHS cuC -mJx +avE rtd -odb +xFc cuC -ajZ +woL xVk xVk xVk @@ -134678,10 +121977,10 @@ xVk xVk xVk xVk -aad +bHS jbq -qtR -jWC +kQO +iiQ eky eky nJu @@ -134689,10 +121988,10 @@ aNl eky eky eky -aDc -qtR +nVl +kQO jbq -ajZ +woL xVk xVk xVk @@ -134700,13 +121999,13 @@ xVk xVk xVk xVk -aad +bHS bYn -thV +oOT uWV -oCf +mMs bYn -ajZ +woL bdH bdH bdH @@ -134772,35 +122071,35 @@ aaa aaa aaa bdH -aad +bHS aag aag -wVb -wVb -rVo -hlz -bhB -bJK -bKV -bhB -bXu -boU -rFu -blo -riQ -okz -bMV -bhB -bXQ -bJK -bhB -kpX -emG -vTK -vTK +fdw +fdw +mUb +kok +kbv +hEy +uYF +kbv +ssS +okO +rGf +qcx +wqP +ahK +ssS +kbv +ves +hEy +kbv +rTG +hvy +fdw +fdw aag aag -ajZ +woL aaa aaa aaa @@ -134869,11 +122168,11 @@ bdH bdH cuC cuC -dqg +pwq rtd -fcP +cRV cuC -cOK +kzj xVk xVk xVk @@ -134881,10 +122180,10 @@ xVk xVk xVk xVk -eJQ +pRY aPw aHe -dnJ +iiX eky eky eky @@ -134892,10 +122191,10 @@ aNl eky eky eky -hfw +hRl aHe aPw -eJQ +pRY xVk xVk xVk @@ -134903,11 +122202,11 @@ xVk xVk xVk xVk -wZv +nld bYn -thV +oOT uWV -uIv +kIh bYn bYn bdH @@ -134941,9 +122240,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -134975,35 +122274,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -qnP -uia -bhB -bhB -blm -bhB -bhB -bOi -xcp -kkO -gzr -kXK -bhB -bhB -bzX -bhB -bhB -ybr -vuR -vTK +fdw +rTG +sjx +kbv +kbv +kpW +kbv +kbv +qHz +vgs +qfH +bjP +vAM +kbv +kbv +bCs +kbv +kbv +lJs +iEl +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -135071,12 +122370,12 @@ bdH aaa aaa uMc -iKc -uiG -cMN -trB -nVX -jcP +jQE +bGx +sVH +oRe +pBJ +olA xVk xVk xVk @@ -135084,21 +122383,21 @@ xVk xVk xVk xVk -etf -ohH -atM -aDO -atK +kmX +dYg +dnI +ooA +qUg eky eky aNl eky eky -atM -aDO -atK -sjr -xjz +dnI +ooA +qUg +bFQ +rVp xVk xVk xVk @@ -135106,12 +122405,12 @@ xVk xVk xVk xVk -dbq -xBn -vME -hSt -xoO -rjG +siK +cbB +fBm +dvP +jIo +qeJ pql bdH bdH @@ -135144,9 +122443,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -135178,35 +122477,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -moE -bhB -bJM -bLd -fir -jfM -bQi -bMM -bSy -bMM -bSx -hbZ -ebJ -xiC -fYG -bhB -vuR -woG -vTK +fdw +kok +nLL +kbv +vHY +tVr +uAL +sjP +odp +dHq +eKX +dHq +gOx +lCu +tNd +jEk +tKA +kbv +iEl +fRo +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -135274,12 +122573,12 @@ bdH aaa aaa uMc -cIG -vqD +heh +fVA iEr -fcP -blJ -jcP +cRV +smx +olA xVk xVk xVk @@ -135287,21 +122586,21 @@ xVk xVk xVk xVk -etf -aPz -avu +kmX +byo +eWj arV -aMU +oIi ssX vsh iPD vsh fCp -avu +eWj arV -aMU -aPz -xjz +oIi +byo +rVp xVk xVk xVk @@ -135309,12 +122608,12 @@ xVk xVk xVk xVk -dbq -gIJ -thV +siK +etK +oOT fCL -lne -wEI +sEC +gCi pql bdH bdH @@ -135347,9 +122646,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -135381,35 +122680,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -eFH -eFH -bhB -bJN -bLd -bMM -bMM -bMM -bMM -bSy -bMM -bMM -bMM -bMM -bLd -bYU -bhB -jdy -cAH -vTK +fdw +iEl +iEl +kbv +bKl +tVr +dHq +dHq +dHq +dHq +eKX +dHq +dHq +dHq +dHq +tVr +eWq +kbv +mpl +kok +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -135477,12 +122776,12 @@ bdH aaa aaa uMc -dfg -rAP -vqK -lht -blJ -jcP +jnp +kRM +nUj +vek +smx +olA xVk xVk xVk @@ -135490,21 +122789,21 @@ xVk xVk xVk xVk -etf -aPz -aqJ -aBu -aqp +kmX +byo +mtQ +kVV +ekS nkn lyw iZg lyw nkn -aqJ -aBu -aqp -aPz -xjz +mtQ +kVV +ekS +byo +rVp xVk xVk xVk @@ -135512,12 +122811,12 @@ xVk xVk xVk xVk -dbq -gIJ -tjj -ofH -gms -ydh +siK +etK +aFs +eLu +mHn +gSv pql bdH bdH @@ -135550,9 +122849,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -135584,35 +122883,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -hlz -bhB -bJP -mzO -bMN -bMN -fcI -bSy -bSy -bSy -dNx -bMN -bMN -tdx -bYW -bhB -vuR -ydx -vTK +fdw +kok +kok +kbv +cJa +jqA +jmu +jmu +joQ +eKX +eKX +eKX +mPQ +jmu +jmu +nfF +awc +kbv +iEl +qHR +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -135681,11 +122980,11 @@ aaa aaa cuC ptK -bSD +aUy iEr -xKM +vip cuC -uiR +hMb xVk xVk xVk @@ -135693,21 +122992,21 @@ xVk xVk xVk xVk -oee +vrw aPw -sYD -aMT -aMT +vtE +wEN +wEN uqI aHe aHe aHe rdh -aMT -aMT -bZR +wEN +wEN +sLV aPw -oee +vrw xVk xVk xVk @@ -135715,11 +123014,11 @@ xVk xVk xVk xVk -kMK +fRD bYn -gEv +eti fCL -lol +wQX jWh bYn aaa @@ -135753,9 +123052,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -135787,35 +123086,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -eFH -eFH -bhB -hrX -fIx -bMM -bMM -hgt -bMM -bMM -bMM -bMM -bMM -bMM -bYU -gNd -bhB -cAH -cAH -vTK +fdw +iEl +iEl +kbv +gWe +kOS +dHq +dHq +knS +dHq +dHq +dHq +dHq +dHq +dHq +eWq +lky +kbv +kok +kok +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -135884,11 +123183,11 @@ aaa aaa cuC ptK -new +toG iEr -paI +hHK cuC -cOK +kzj xVk xVk xVk @@ -135896,21 +123195,21 @@ xVk xVk xVk xVk -eJQ +pRY aPw -ebn -aMT -aMT +bkl +wEN +wEN eky aHe aHe aHe eky -aMT -aMT -oOO +wEN +wEN +xmH aPw -eJQ +pRY xVk xVk xVk @@ -135918,11 +123217,11 @@ xVk xVk xVk xVk -wZv +nld bYn -vVw +tUf fCL -tNP +hay jWh bYn aaa @@ -135956,9 +123255,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -135990,35 +123289,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -hlz -bhB -sgM -fIx -bMM -bMM -bhB -kvz -kvz -kvz -bhB -kGX -bMM -bYU -upe -bhB -vuR -vuR -vTK +fdw +kok +kok +kbv +gka +kOS +dHq +dHq +kbv +cqs +cqs +cqs +kbv +dDr +dHq +eWq +biI +kbv +iEl +iEl +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -136086,12 +123385,12 @@ bdH aaa aaa uMc -jMG -uiG -iUW -trB -ozN -jcP +tRy +bGx +mQu +oRe +mqV +olA xVk xVk xVk @@ -136099,21 +123398,21 @@ xVk xVk xVk xVk -etf -gZP -atM -aDO -atK +kmX +dJQ +dnI +ooA +qUg eky fRC lFe fRC eky -atM -aDO -atK -aPx -xjz +dnI +ooA +qUg +kbh +rVp xVk xVk xVk @@ -136121,12 +123420,12 @@ xVk xVk xVk xVk -dbq -diz -vME -hSt -xoO -adC +siK +jWJ +fBm +dvP +jIo +rhM pql bdH bdH @@ -136159,9 +123458,9 @@ aaa aaa aKQ aaa -aaa -aab -aaa +bdH +aak +bdH bdH bdH bdH @@ -136193,35 +123492,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -eFH -eFH -bhB -svd -bLf -dCS -bMM -bhB -bQk -xfi -bSG -bhB -bMM -dCS -tLy -svd -bhB -cAH -cAH -vTK +fdw +iEl +iEl +kbv +iOL +lpw +uOm +dHq +kbv +qCH +aHg +iYu +kbv +dHq +uOm +luV +iOL +kbv +kok +kok +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -136289,12 +123588,12 @@ bdH aaa aaa uMc -msP -ugJ +gmM +wkF kNk -cXY -blJ -jcP +xrH +smx +olA xVk xVk xVk @@ -136302,21 +123601,21 @@ xVk xVk xVk xVk -etf -aPz -avu +kmX +byo +eWj arV -aMU +oIi arV arV arV arV arV -avu +eWj arV -aMU -aPz -xjz +oIi +byo +rVp xVk xVk xVk @@ -136324,12 +123623,12 @@ xVk xVk xVk xVk -dbq -gIJ -thV +siK +etK +oOT fCL -lne -wWq +sEC +lUD pql bdH bdH @@ -136361,10 +123660,10 @@ aab aaa aaa aKQ -aaa -aaa -aab -aab +bdH +bdH +aak +aak aak aak aak @@ -136396,35 +123695,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -eFH -bhB -bhB -bhB -bhB -cZJ -bhB -bhB -bhB -bhB -bhB -cZJ -bhB -bhB -bhB -bhB -vuR -vuR -vTK +fdw +kok +iEl +kbv +kbv +kbv +kbv +wYQ +kbv +kbv +kbv +kbv +kbv +wYQ +kbv +kbv +kbv +kbv +iEl +iEl +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -136492,12 +123791,12 @@ bdH aaa aaa uMc -spK -nlW -uZH -lht -blJ -jcP +rRO +cpW +kYO +vek +smx +olA xVk xVk xVk @@ -136505,21 +123804,21 @@ xVk xVk xVk xVk -etf -aPz -aqJ -aBu -aqp +kmX +byo +mtQ +kVV +ekS eky eky eky eky eky -aqJ -aBu -aqp -aPz -xjz +mtQ +kVV +ekS +byo +rVp xVk xVk xVk @@ -136527,12 +123826,12 @@ xVk xVk xVk xVk -dbq -gIJ -tjj -jRC -gms -qeK +siK +etK +aFs +tzE +mHn +rPF pql bdH bdH @@ -136599,35 +123898,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -eFH -fKg -tce -bhB -heg -lfQ -blo -vNF -xuU -vNF -blo -ktO -heg -bhB -osE -gai -cAH -cAH -vTK +fdw +kok +iEl +jkx +qVa +kbv +npS +mpH +qcx +pTP +gOP +pTP +qcx +rnm +npS +kbv +qVa +eea +kok +kok +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -136696,11 +123995,11 @@ aaa aaa cuC cuC -jPq -xgm -aqK +bVj +fPN +qcz cuC -uiR +hMb xVk xVk xVk @@ -136708,10 +124007,10 @@ xVk xVk xVk xVk -oee +vrw aPw aHe -tqB +dEK eky eky atg @@ -136719,10 +124018,10 @@ aBE ouB eky eky -gwu +hDe aHe aPw -oee +vrw xVk xVk xVk @@ -136730,11 +124029,11 @@ xVk xVk xVk xVk -kMK +fRD bYn -hTF -rTJ -tAq +tDc +pIB +nEl bYn bYn bdH @@ -136802,35 +124101,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -hlz -hlz -hlz -hlz -bhB -heg -mKX -aut -aut -aut -aut -aut -riA -heg -bhB -pFP -cAH -cAH -cAH -vTK +fdw +kok +kok +kok +kok +kbv +npS +mYU +pAh +pAh +pAh +pAh +pAh +ojk +npS +kbv +sCf +kok +kok +kok +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -136911,21 +124210,21 @@ xVk xVk xVk xVk -aad +bHS jbq -aNe -jWC +iwT +iiQ eky eky -esT -nYE -orH +acB +goe +uJY eky eky -aDc -aNe +nVl +iwT jbq -ajZ +woL xVk xVk xVk @@ -136963,27 +124262,27 @@ bdH bdH bdH bdH -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq +qRq bdH bdH bdH @@ -137005,35 +124304,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag -wVb -wVb -gcK -jPf -jPf -bhB -dVZ -jyi -bPe -bQm -wlj -bQm -bTp -jyi -cDj -bhB -vuR -vuR -woG -vTK -vTK +fdw +fdw +ldJ +hvy +hvy +kbv +gUw +oKw +jXw +swP +pLh +swP +vBi +oKw +ubP +kbv +tnT +iEl +fRo +fdw +fdw aag aag aag -ajZ +woL aaa aaa aaa @@ -137114,21 +124413,21 @@ xVk xVk xVk xVk -aad +bHS jbq -atY -jWC +bFI +iiQ eky eky -bAe -aBG +dCz +piW sGh eky eky -aDc -atY +nVl +bFI jbq -ajZ +woL xVk xVk xVk @@ -137166,27 +124465,27 @@ bdH bdH bdH bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH @@ -137208,35 +124507,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag aag -wVb -hlz -eFH -uzg -bhB -bhB -bhB -bhB -bhB -bhB -bhB -bhB -bhB -bhB -bhB -cAH -cAH -cAH -vTK +fdw +kok +iEl +pvd +kbv +kbv +kbv +kbv +kbv +kbv +kbv +kbv +kbv +kbv +kbv +kok +kok +kok +fdw aag aag aag aag -ajZ +woL aaa aaa aaa @@ -137317,21 +124616,21 @@ xVk xVk xVk xVk -aad +bHS aPw -qpU -ykD -dqj +uXv +fOR +icZ eky -xaS -ejt -mPf +upb +raU +fLb eky -gUV -wKS -qpU +gqG +tkh +uXv aPw -ajZ +woL xVk xVk xVk @@ -137362,34 +124661,34 @@ aaa aab aaa aaa -aaa bdH bdH bdH bdH bdH bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +bdH +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH @@ -137411,35 +124710,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag aag -wVb -hlz -eFH -hlz -eFH -wul -hlz -gnz -eFH -eFH -vuR -hOe -cAH -fXd -vuR -vuR -vuR -cAH -vTK +fdw +kok +iEl +kok +iEl +sZO +kok +pZN +iEl +iEl +iEl +pZN +kok +uGO +iEl +iEl +iEl +kok +fdw aag aag aag aag -ajZ +woL aaa aaa aaa @@ -137520,21 +124819,21 @@ xVk xVk xVk xVk -aad +bHS aPw jbq aPw -vgD +sAt eky atg aBE ouB eky -ihX +upy aPw jbq aPw -ajZ +woL xVk xVk xVk @@ -137566,33 +124865,33 @@ aab aaa aaa bdH -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +gFe +gFe +gFe bdH bdH bdH @@ -137614,35 +124913,35 @@ aaa aaa aaa bdH -aad +bHS aag aag aag aag -wVb -wVb -rdK -rdK -rdK -rdK -bOn -rdK -rdK -rdK -haq -haq -xnl -haq -haq -haq -haq -vTK -vTK +kja +kja +tlC +tlC +tlC +tlC +vWW +tlC +tlC +tlC +tlC +tlC +vWW +tlC +tlC +tlC +tlC +kja +kja aag aag aag aag -ajZ +woL aaa aaa aaa @@ -137723,21 +125022,21 @@ xVk xVk xVk xVk -aae -aah +fpk +hWR aag jbq -iaR -aBu -aBu -aBu -aBu -aBu -iub +qly +kVV +kVV +kVV +kVV +kVV +gHa jbq aag -aah -afm +hWR +rNc xVk xVk xVk @@ -137769,33 +125068,33 @@ aab aaa aaa bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +kjy +rDx +pBS +xGw +eqO +iOM +pgk +pBS +rZt +ekw +knz +aPF +kjy +gFe +gFe +gFe bdH bdH bdH @@ -137817,35 +125116,35 @@ aaa aaa aaa bdH -aae -aah -aah -aah -aah -wVb -wVb -bdo -bdo -bLg -bMX -bOo -uvG -dSs -bOo -otX -cII -koT -tZF -bUZ -ovn -ovn -vTK -vTK -aah -aah -aah -aah -afm +fpk +hWR +hWR +hWR +hWR +kja +kja +uNR +uNR +wee +qAl +oMw +kTl +qjX +jrq +wYe +pxP +oMw +qAl +sPa +uNR +uNR +kja +kja +hWR +hWR +hWR +hWR +rNc aaa aaa aaa @@ -137928,7 +125227,7 @@ xVk xVk aaa aaa -aad +bHS aPw aPw jbq @@ -137938,7 +125237,7 @@ jbq jbq aPw aPw -ajZ +woL aaa aaa xVk @@ -137972,33 +125271,33 @@ aab aaa aaa bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -vhe -fEN -cqm -gTH -qit -rna -qQS -gwn -pfT -jYR -dyp -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +gFe +gFe +gFe +fgs +fgs +fgs +kjy +veC +pSP +pBS +hYI +pBS +uKw +fga +jwI +tiq +pwW +nrH +kjy +gFe +gFe +gFe bdH bdH bdH @@ -138026,23 +125325,23 @@ aaa aaa aaa aaa -wVb -qsF -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -bjy -aXQ -vTK +kja +tKv +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +sDQ +vXl +kja aaa aaa aaa @@ -138131,17 +125430,17 @@ xVk xVk aaa aaa -aae -aah -aah -aah -aah -aah -aah -aah -aah -aah -afm +fpk +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +hWR +rNc aaa aaa xVk @@ -138174,34 +125473,34 @@ aaa aab aaa aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -sbJ -sbJ -sbJ -daz -jtj -avK -avK -sKY -avK -bIp -fKe -dDp -dDp -frM -lcg -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +kjy +kjy +kjy +kjy +kjy +tte +hvw +gLN +cCG +fTt +unz +jdD +qve +uKw +dpn +int +pAs +qRE +nrH +kjy +gFe +gFe +gFe bdH bdH bdH @@ -138229,23 +125528,23 @@ aaa aaa aaa aaa -wVb -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -ovn -vTK +kja +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +kja aaa aaa aaa @@ -138377,34 +125676,34 @@ aaa aab aaa bdH -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -pmV -xDC -xDC -dIn -rby -bIp -euN -sEK -sEK -mlb -lcg -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +kjy +kjy +tvu +kVM +qwZ +kjy +kjy +kfU +kjy +pgk +pgk +qES +jex +rVJ +pgk +jqu +xiG +xiG +fUL +rWv +kjy +gFe +gFe +gFe bdH bdH bdH @@ -138432,23 +125731,23 @@ aaa aaa aaa aaa -wVb -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -ovn -vTK +kja +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +kja aaa aaa aaa @@ -138580,35 +125879,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -lmz -daz -daz -hRW -asZ -vXh -daz -daz -kfU -daz -rna -rna -lnS -uVv -yit -rna -cxc -kBy -kBy -gfu -fPB -daz -lmz -lmz -lmz -bdH +gFe +gFe +gFe +kjy +kjy +pTC +cGy +hvo +jBe +pSP +kjy +kjy +kjy +dKn +pgk +pgk +kya +pgk +kjy +kjy +kjy +irw +irw +kjy +kjy +kjy +gFe +gFe +gFe bdH bdH aak @@ -138635,23 +125934,23 @@ aaa aaa aaa aaa -wVb -bhD -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -bCR -vTK +kja +itG +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +rdi +kja aaa aaa aaa @@ -138783,35 +126082,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -daz -daz -scS -yaZ -ffE -hZj -clw -daz -daz -daz -sGZ -rna -rna -roH -ebN -ebN -ebN -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +dZR +vll +hFQ +bgS +wWM +vll +dSQ +xse +vGK +oQb +yep +jSb +mnu +uQg +vDP +xYW +kOd +idd +idd +oRs +oRs +kjy +gFe +gFe +gFe bdH bdH aak @@ -138838,23 +126137,23 @@ aaa aaa aaa aaa -wVb -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -ovn -vTK +kja +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +kja aaa aaa aaa @@ -138986,35 +126285,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -daz -acJ -ubA -cck -wyQ -fmv -ubA -gMN -mRn -itf -mHE -vAU -qwJ -fJY -kzT -wkM -oLm -fcX -kKv -kKv -dGl -dGl -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +lsr +iWC +grg +kxb +iWC +iWC +iWC +xci +dDV +pSP +ljN +aYk +pWm +vbK +vDP +eOS +nUP +pRR +pRR +xXo +uqY +kjy +gFe +gFe +gFe bdH bdH aak @@ -139041,23 +126340,23 @@ aaa aaa aaa aaa -wVb -bdo -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -ovn -vTK +kja +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +kja aaa aaa aaa @@ -139189,35 +126488,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -daz -cwS -ffE -cZg -wpw -ffE -ffE -ffE -jqP -cLo -vfB -viB -dIi -qLS -vfB -wkM -jvB -jvB -ieF -ieF -pJR -gPr -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +mGw +fZn +qLD +hae +dEo +fZn +kpg +iDB +hWZ +dSe +uWg +aiM +glQ +ogS +vDP +yhT +qyc +qqJ +qqJ +mqt +scr +kjy +gFe +gFe +gFe bdH bdH aak @@ -139244,23 +126543,23 @@ aaa aaa aaa aaa -wVb -qsF -bdo -bdo -bdo -bdo -bdo -bdo -bdo -ovn -ovn -ovn -ovn -ovn -ovn -aXQ -vTK +kja +tKv +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +uNR +vXl +kja aaa aaa aaa @@ -139392,35 +126691,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -daz -oRV -ydI -mdW -jaH -awu -ydI -aKs -fMt -gOs -kXj -pYi -fMl -gUN -bLv -wkM -xvM -osy -cBm -cBm -iZw -dQl -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +kjy +pTC +cGy +hvo +jBe +qHK +kjy +kjy +kjy +sVJ +pgk +pgk +nDj +pgk +kjy +kjy +kjy +irw +irw +kjy +kjy +kjy +gFe +gFe +gFe bdH bdH aak @@ -139447,23 +126746,23 @@ aaa aaa aaa aaa -wVb -bdo -jbB -bdo -bne -bdo -jbB -bdo -bne -ovn -gXv -ovn -grX -ovn -gXv -ovn -vTK +kja +uNR +sMe +uNR +noR +uNR +sMe +uNR +noR +uNR +sMe +uNR +noR +uNR +sMe +uNR +kja aaa aaa aaa @@ -139595,35 +126894,35 @@ aaa aab aaa bdH -lmz -lmz -lmz -daz -daz -eKJ -yaZ -ffE -hZj -mUC -daz -daz -daz -tHu -rna -rna -gXs -ebN -ebN -ebN -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +kjy +kjy +aYb +egl +pho +kjy +kjy +mCN +kjy +pgk +pgk +gFI +jex +dAx +pgk +pBS +xiG +xiG +ceG +xiG +kjy +gFe +gFe +gFe +bdH bdH bdH aak @@ -139650,23 +126949,23 @@ aaa aaa aaa aaa -wVb -wVb -wVb -wVb -wVb -wVb -wVb -wVb -wVb -vTK -vTK -vTK -vTK -vTK -vTK -vTK -vTK +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja +kja aaa aaa aaa @@ -139798,34 +127097,34 @@ aaa aab aaa bdH -lmz -lmz -lmz -lmz -daz -daz -ocB -nJH -rnH -daz -daz -sTV -daz -rna -rna -gbg -uVv -erN -rna -qQS -kBy -kBy -gfu -kBy -daz -lmz -lmz -lmz +gFe +gFe +gFe +gFe +gFe +kjy +kjy +kjy +kjy +kjy +tte +hvw +gLN +tSY +nFp +unz +rBC +qnT +xGr +uVJ +tiq +jwI +swe +nrH +kjy +gFe +gFe +gFe bdH bdH bdH @@ -140001,34 +127300,34 @@ aaa aab aaa bdH -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -hTl -xDC -xDC -yaQ -bat -mFN -kSy -dDp -dDp -frM -lcg -daz -lmz -lmz -lmz +bdH +gFe +gFe +gFe +kjy +kjy +kjy +kjy +kjy +fgs +fgs +fgs +kjy +veC +qBx +pBS +yjA +pBS +xGr +gSU +pAs +int +idl +nrH +kjy +gFe +gFe +gFe bdH bdH bdH @@ -140205,33 +127504,33 @@ aab aaa bdH bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -sbJ -sbJ -sbJ -daz -jtj -avK -avK -aCd -avK -mFN -igr -sEK -sEK -mlb -lcg -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +aWJ +aWJ +aWJ +pgk +kjy +cVe +sLh +kjy +mmT +cZl +eck +iqt +dlA +pgk +bgd +xiG +xiG +qBt +dPq +kjy +gFe +gFe +gFe bdH bdH bdH @@ -140408,33 +127707,33 @@ aab aaa aaa bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -rzf -bRo -wyv -pTt -gAe -rCi -qPv -mUz -our -rna -cxc -kBy -kBy -khJ -gyN -daz -lmz -lmz -lmz +gFe +gFe +gFe +kjy +aWJ +bHO +aWJ +pgk +vZo +eHt +eHt +kjy +pgk +iQs +pgk +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +gFe +gFe +gFe bdH bdH bdH @@ -140611,33 +127910,33 @@ aab aaa aaa bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -czG -ylg -oIY -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz +bdH +bdH +bdH +ePR +aWJ +pBS +aWJ +pgk +vZo +bHO +pBS +pgk +dOV +cZl +pBS +kjy +kjy +kjy +kjy +kjy +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH @@ -140813,34 +128112,34 @@ aaa aab aaa aaa +aaa bdH bdH bdH -bdH -bdH -bdH -bdH -lmz -daz -daz -daz -daz -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +ibU +ejH +bHO +aWJ +pgk +vZo +pBS +usQ +jst +unz +rBC +nUP +xqX +pcZ +pcZ +neG +kjy +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH @@ -141020,30 +128319,30 @@ aaa bdH bdH bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +ptE +qCm +eFP +pBS +ssb +pBS +pBS +ejZ +oXQ +pBS +pBS +gqD +lWZ +pUV +lTY +neG +kjy +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH @@ -141219,34 +128518,34 @@ aab aab aab aab -aaa -bdH -bdH bdH bdH bdH bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz +nsg +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +kjy +gFe +gFe +gFe +gFe +gFe +gFe +gFe bdH bdH bdH diff --git a/maps/map_files/USS_Runtime/USS_Runtime.dmm b/maps/map_files/USS_Runtime/USS_Runtime.dmm index aec89c5882..6dae65b016 100644 --- a/maps/map_files/USS_Runtime/USS_Runtime.dmm +++ b/maps/map_files/USS_Runtime/USS_Runtime.dmm @@ -3,195 +3,135 @@ /turf/closed/wall/r_wall/bunker, /area/event) "b" = ( -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "c" = ( /obj/effect/landmark/start/engineering, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "d" = ( /obj/effect/landmark/start/working_joe, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "e" = ( /obj/effect/landmark/start/requisition, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "h" = ( /obj/effect/landmark/start/police, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "k" = ( /obj/effect/landmark/start/liaison, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "l" = ( /obj/effect/landmark/start/marine/medic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "n" = ( /obj/effect/landmark/start/professor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "q" = ( /obj/effect/landmark/start/warden, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "r" = ( /obj/effect/landmark/start/maint, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "s" = ( /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "t" = ( /obj/effect/landmark/start/marine/engineer, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "u" = ( /obj/effect/landmark/start/otech, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "v" = ( /obj/effect/landmark/start/marine, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "x" = ( /obj/effect/landmark/start/captain, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "z" = ( -/obj/effect/landmark/start/pilot, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/obj/effect/landmark/start/pilot/dropship_pilot, +/turf/open/floor/almayer/plating, /area/event) "A" = ( /obj/effect/landmark/start/cargo, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "C" = ( /obj/effect/landmark/start/bridge, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "D" = ( /obj/effect/landmark/start/warrant, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "F" = ( /obj/effect/landmark/start/marine/tl, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "G" = ( /obj/effect/landmark/start/marine/spec, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "I" = ( /obj/effect/landmark/start/synthetic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "J" = ( /obj/effect/landmark/start/executive, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "L" = ( /obj/effect/landmark/start/researcher, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, +/area/event) +"M" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/almayer/plating, /area/event) "N" = ( /obj/effect/landmark/start/nurse, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "P" = ( /obj/effect/landmark/start/doctor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "Q" = ( /obj/effect/landmark/start/senior, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "R" = ( /obj/effect/landmark/start/marine/smartgunner, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "T" = ( /obj/effect/landmark/start/marine/leader, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "U" = ( /obj/effect/landmark/start/intel, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "V" = ( /obj/effect/landmark/start/crew_chief, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "W" = ( /obj/effect/landmark/start/chef, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) (1,1,1) = {" @@ -289,7 +229,7 @@ a A l L -b +M b b b diff --git a/maps/map_files/USS_Runtime_multiz/USS_Runtime_multiz.dmm b/maps/map_files/USS_Runtime_multiz/USS_Runtime_multiz.dmm index e19f398910..9fcc1bb7db 100644 --- a/maps/map_files/USS_Runtime_multiz/USS_Runtime_multiz.dmm +++ b/maps/map_files/USS_Runtime_multiz/USS_Runtime_multiz.dmm @@ -1,74 +1,52 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "c" = ( /obj/effect/landmark/start/marine/tl, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "d" = ( /obj/structure/ladder{ height = 2; id = "run1" }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "e" = ( /obj/effect/landmark/start/researcher, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "g" = ( /obj/effect/landmark/start/intel, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "h" = ( /obj/effect/landmark/start/pilot, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "j" = ( /obj/effect/landmark/start/liaison, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "k" = ( /obj/effect/landmark/start/captain, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "m" = ( /obj/effect/projector{ name = "runtime_down"; vector_z = -1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "n" = ( /obj/effect/landmark/start/executive, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "o" = ( /obj/effect/landmark/start/marine/engineer, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "p" = ( /obj/structure/stairs{ @@ -79,129 +57,80 @@ name = "runtime_up"; vector_z = 1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "q" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "r" = ( /obj/effect/landmark/start/crew_chief, -/turf/open/floor/almayer{ - icon_state = "plating" - }, -/area/event) -"s" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "runtime_down"; - vector_z = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "u" = ( /obj/effect/landmark/start/requisition, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "v" = ( /obj/effect/landmark/start/police, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "w" = ( /obj/effect/landmark/start/cargo, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "x" = ( /obj/effect/landmark/start/maint, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "y" = ( /obj/effect/landmark/start/working_joe, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "z" = ( /obj/effect/landmark/start/marine/spec, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "A" = ( /obj/effect/projector{ name = "runtime_up"; vector_z = 1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "B" = ( /obj/structure/ladder{ height = 2; id = "run2" }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "C" = ( /obj/effect/landmark/start/doctor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "D" = ( /obj/effect/landmark/start/marine/smartgunner, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "E" = ( /obj/effect/landmark/start/professor, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "F" = ( /turf/closed/wall/r_wall/bunker, /area/event) "G" = ( /obj/effect/landmark/start/marine/leader, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "H" = ( /obj/effect/landmark/start/marine, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "I" = ( /obj/effect/landmark/start/synthetic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "J" = ( /obj/structure/stairs{ @@ -212,48 +141,34 @@ name = "runtime_down"; vector_z = -1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "L" = ( /obj/structure/ladder{ height = 1; id = "run2" }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "M" = ( /obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "N" = ( /obj/effect/landmark/start/senior, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "O" = ( /obj/effect/landmark/start/marine/medic, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "P" = ( /obj/effect/landmark/start/engineering, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "Q" = ( /obj/effect/landmark/start/nurse, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "R" = ( /obj/structure/stairs{ @@ -263,9 +178,7 @@ name = "runtime_down"; vector_z = -1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "S" = ( /obj/structure/stairs{ @@ -275,48 +188,34 @@ name = "runtime_up"; vector_z = 1 }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "T" = ( /obj/effect/landmark/start/warrant, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "V" = ( /obj/structure/ladder{ height = 1; id = "run1" }, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "W" = ( /obj/effect/landmark/start/bridge, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "X" = ( /obj/effect/landmark/start/chef, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "Y" = ( /obj/effect/landmark/start/warden, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) "Z" = ( /obj/effect/landmark/start/otech, -/turf/open/floor/almayer{ - icon_state = "plating" - }, +/turf/open/floor/almayer/plating, /area/event) (1,1,1) = {" @@ -728,8 +627,8 @@ a a F R -s -s +R +R m m F diff --git a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm index e5461db06c..8f851c2d35 100644 --- a/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm +++ b/maps/map_files/Whiskey_Outpost_v2/Whiskey_Outpost_v2.dmm @@ -4,10 +4,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south) "ab" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "ac" = ( /turf/closed/wall/strata_ice/jungle, @@ -20,10 +17,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "ae" = ( /obj/structure/machinery/light{ @@ -75,22 +69,16 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "an" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "ao" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "ap" = ( /obj/structure/surface/table/reinforced/prison, @@ -101,17 +89,13 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = -30 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "aq" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "as" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -125,19 +109,13 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "at" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "au" = ( /obj/structure/closet/secure_closet/commander, @@ -146,9 +124,7 @@ "av" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "ax" = ( /obj/structure/surface/table/woodentable/fancy, @@ -167,9 +143,7 @@ /turf/open/floor/wood, /area/whiskey_outpost/inside/cic) "aC" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "aE" = ( /obj/structure/bed, @@ -183,10 +157,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) "aG" = ( /obj/structure/curtain/black, @@ -195,15 +166,11 @@ /area/whiskey_outpost/inside/caves/caverns) "aH" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "aI" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "aJ" = ( /obj/structure/window/reinforced{ @@ -219,9 +186,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "aK" = ( /turf/open/gm/dirtgrassborder/west, @@ -253,10 +218,7 @@ pixel_x = -6; pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "aQ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -264,50 +226,31 @@ req_access_txt = "19"; req_one_access = null }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "aS" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "aV" = ( -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "aW" = ( /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "aZ" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "ba" = ( /obj/structure/machinery/vending/cigarette, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bb" = ( -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "bc" = ( /obj/structure/disposalpipe/segment, @@ -329,25 +272,17 @@ pixel_x = 30; req_access = null }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "be" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "bf" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "bh" = ( /obj/structure/sign/poster, @@ -355,17 +290,11 @@ /area/whiskey_outpost/outside/south/far) "bi" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "bj" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) "bl" = ( /turf/open/jungle, @@ -375,17 +304,13 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "bo" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/whiskey_outpost/outside/lane/two_south) "bp" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "bs" = ( /turf/open/floor/carpet, @@ -396,48 +321,33 @@ /obj/item/storage/backpack/marine, /obj/item/storage/backpack/industrial, /obj/item/storage/backpack/industrial, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "bu" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bw" = ( /obj/structure/machinery/cryopod, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "bx" = ( /obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "bz" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "bA" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "bB" = ( /obj/structure/disposalpipe/segment{ @@ -448,10 +358,7 @@ /area/whiskey_outpost/inside/bunker) "bC" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "bD" = ( /obj/structure/disposalpipe/segment, @@ -462,10 +369,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_north) "bG" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "bK" = ( /obj/structure/cargo_container/watatsumi/leftmid, @@ -482,18 +386,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "bP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "bQ" = ( /obj/structure/curtain, @@ -549,9 +448,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "ca" = ( /obj/structure/surface/table/reinforced/prison, @@ -571,19 +468,14 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cb" = ( /obj/structure/machinery/shower{ dir = 8; layer = 3.3 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "ce" = ( /turf/open/gm/dirt, @@ -602,10 +494,7 @@ /obj/structure/barricade/metal/wired{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "cm" = ( /obj/structure/machinery/light/small{ @@ -617,10 +506,7 @@ "cn" = ( /obj/effect/landmark/start/whiskey/leader, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "co" = ( /obj/structure/disposalpipe/segment{ @@ -629,10 +515,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "cp" = ( /obj/structure/surface/table/woodentable/fancy, @@ -656,16 +539,11 @@ /area/whiskey_outpost/inside/living) "ct" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "cu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "cw" = ( /obj/structure/barricade/metal/wired, @@ -675,20 +553,14 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "cy" = ( /obj/structure/largecrate/supply/supplies/mre, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/living) "cz" = ( /turf/open/floor/wood, @@ -700,6 +572,10 @@ /obj/item/stool, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_south) +"cB" = ( +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "cC" = ( /obj/structure/sign/poster, /turf/closed/wall/r_wall, @@ -709,9 +585,7 @@ name = "Success Cabinet"; req_access_txt = "1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "cE" = ( /obj/structure/window/reinforced/tinted/frosted, @@ -721,17 +595,13 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "cF" = ( /obj/structure/mirror{ pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "cG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -754,9 +624,7 @@ /obj/structure/machinery/computer/card{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "cL" = ( /obj/structure/surface/table/woodentable/fancy, @@ -772,9 +640,7 @@ /area/whiskey_outpost/inside/cic) "cO" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "cP" = ( /obj/structure/bed/chair{ @@ -787,9 +653,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cR" = ( /turf/open/gm/dirtgrassborder/west, @@ -802,18 +666,14 @@ /area/whiskey_outpost/inside/living) "cT" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital) "cX" = ( /obj/structure/machinery/optable, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "cY" = ( /obj/structure/machinery/colony_floodlight, @@ -826,15 +686,11 @@ /area/whiskey_outpost/outside/lane/two_south) "da" = ( /obj/structure/machinery/optable, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "dc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/living) "dd" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, @@ -894,9 +750,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "ds" = ( /obj/structure/machinery/door/window/westright{ @@ -905,15 +759,10 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "du" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker/bunker/front) "dv" = ( /obj/structure/flora/jungle/plantbot1, @@ -927,9 +776,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/whiskey_outpost/inside/cic) "dA" = ( /obj/structure/surface/table, @@ -960,9 +807,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "dF" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -979,9 +824,7 @@ /area/whiskey_outpost/outside/lane/three_south) "dJ" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/whiskey_outpost/inside/bunker/bunker/front) "dM" = ( /turf/closed/shuttle/dropship{ @@ -990,18 +833,14 @@ /area/whiskey_outpost/outside/lane/four_north) "dN" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "dO" = ( /obj/structure/safe, /obj/item/moneybag, /obj/item/clothing/glasses/monocle, /obj/item/weapon/telebaton, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "dP" = ( /obj/structure/surface/table/reinforced/prison, @@ -1014,10 +853,7 @@ /obj/item/storage/box/gloves, /obj/item/tool/hand_labeler, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "dQ" = ( /obj/structure/surface/table/reinforced/prison, @@ -1037,10 +873,7 @@ /obj/item/device/defibrillator, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "dS" = ( /obj/structure/window/framed/colony/reinforced, @@ -1061,10 +894,7 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "dU" = ( /obj/structure/machinery/light{ @@ -1074,9 +904,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "dW" = ( -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "dY" = ( /obj/structure/surface/table/reinforced/prison, @@ -1099,18 +927,13 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "ea" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "eb" = ( /obj/structure/machinery/light/small{ @@ -1119,16 +942,10 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) "ed" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "ee" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/whiskey_outpost/inside/cic) "eg" = ( /obj/structure/sign/safety/medical{ @@ -1145,20 +962,14 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "ej" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/four_south) "ek" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "eo" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -1167,9 +978,7 @@ /turf/open/gm/grass/gbcorner/north_west, /area/whiskey_outpost/outside/lane/one_south) "eq" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1192,9 +1001,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "ev" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "ex" = ( @@ -1216,14 +1023,10 @@ /area/whiskey_outpost/inside/bunker) "eD" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "eF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) "eG" = ( @@ -1233,19 +1036,14 @@ /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/m56d, /obj/effect/landmark/wo_supplies/storage/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "eJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "eK" = ( /turf/open/gm/river, @@ -1254,24 +1052,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "eN" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "eO" = ( /obj/structure/bed/stool, /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "eP" = ( /obj/structure/bed/chair{ @@ -1288,10 +1079,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) "eS" = ( -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "eT" = ( /obj/structure/window/reinforced{ @@ -1307,17 +1095,12 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "eU" = ( /obj/structure/closet/crate, /obj/item/storage/toolbox/emergency, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "eW" = ( /obj/structure/surface/rack, @@ -1325,9 +1108,7 @@ dir = 1 }, /obj/structure/largecrate/supply/ammo/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "eX" = ( /obj/structure/machinery/light{ @@ -1342,20 +1123,14 @@ "eZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/curtain, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fb" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/lane/three_north) "fc" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fd" = ( /obj/effect/landmark/start/whiskey/leader, @@ -1373,9 +1148,7 @@ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "fh" = ( /obj/structure/surface/table/reinforced/prison, @@ -1386,9 +1159,7 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fi" = ( /obj/structure/sign/safety/chem_lab, @@ -1397,79 +1168,10 @@ "fj" = ( /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) -"fk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/rad, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "fl" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/sentry, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "fo" = ( /obj/structure/curtain, @@ -1481,10 +1183,7 @@ /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, /obj/effect/landmark/wo_supplies/storage/belts/medical, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "fq" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -1495,10 +1194,7 @@ icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fr" = ( /obj/effect/landmark/start/whiskey/marine, @@ -1509,10 +1205,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/cic) "fu" = ( -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/whiskey_outpost/outside/north/northeast) "fv" = ( /obj/structure/barricade/handrail/wire{ @@ -1524,9 +1217,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "fx" = ( /turf/open/floor/prison, @@ -1536,16 +1227,12 @@ /area/whiskey_outpost/outside/north/beach) "fA" = ( /obj/effect/landmark/start/whiskey/executive, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fB" = ( /obj/structure/bed/chair/comfy, /obj/effect/landmark/start/whiskey/commander, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fC" = ( /obj/structure/barricade/handrail{ @@ -1559,32 +1246,22 @@ dir = 8 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fF" = ( /obj/effect/landmark/start/whiskey/warrant, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "fG" = ( /obj/effect/landmark/start/whiskey/engineering, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "fH" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "Hypersleep Room"; req_one_access_txt = "2;8;19" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fI" = ( /obj/structure/platform{ @@ -1605,10 +1282,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "fQ" = ( /obj/structure/flora/jungle/planttop1, @@ -1632,31 +1306,21 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "fU" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "fV" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "fW" = ( /obj/structure/machinery/smartfridge/chemistry, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "fX" = ( /obj/structure/barricade/sandbags/wired, @@ -1669,16 +1333,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "fZ" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "ga" = ( /obj/structure/disposalpipe/junction{ @@ -1695,10 +1354,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gh" = ( /obj/effect/decal/medical_decals{ @@ -1706,10 +1362,7 @@ icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gi" = ( /obj/effect/decal/medical_decals{ @@ -1719,19 +1372,14 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "gj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_north) "gl" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "gn" = ( /obj/item/stack/cable_coil/cut, @@ -1739,9 +1387,7 @@ /area/whiskey_outpost/outside/lane/two_south) "go" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "gp" = ( /obj/structure/sign/prop1, @@ -1765,10 +1411,7 @@ pixel_x = 30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "gu" = ( /turf/open/gm/dirtgrassborder/south, @@ -1794,18 +1437,14 @@ /obj/structure/machinery/computer/card{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gC" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/map_item, /obj/item/folder/black_random, /obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gE" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1813,9 +1452,7 @@ dir = 1; layer = 2.99 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gF" = ( /obj/structure/sign/poster{ @@ -1829,10 +1466,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "gH" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/lane/one_north) "gI" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -1840,18 +1474,14 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "gJ" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "gL" = ( /obj/structure/disposalpipe/segment, @@ -1865,10 +1495,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) "gN" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/whiskey_outpost/inside/hospital) "gO" = ( /obj/structure/machinery/conveyor_switch{ @@ -1877,9 +1504,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2, /area/whiskey_outpost/inside/supply) "gP" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -1887,10 +1512,7 @@ name = "Operating Theatre"; req_one_access_txt = "2;8;19" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/hospital) "gS" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -1899,16 +1521,12 @@ req_one_access_txt = "2;8;19" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "gT" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "gU" = ( /turf/open/gm/river, @@ -1922,32 +1540,16 @@ /obj/structure/prop/almayer/computers/sensor_computer1{ name = "radar computer" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) -"gX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, -/area/whiskey_outpost/inside/hospital) "gZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "hb" = ( /obj/effect/landmark/start/whiskey/researcher, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "hd" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -1978,9 +1580,7 @@ dir = 8 }, /obj/item/clipboard, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "hk" = ( /obj/structure/bed/chair/office/dark{ @@ -1995,10 +1595,7 @@ dir = 1; icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hm" = ( /obj/structure/machinery/light/small{ @@ -2008,10 +1605,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "hn" = ( /obj/structure/window/framed/colony/reinforced, @@ -2044,10 +1638,7 @@ /turf/open/gm/coast/beachcorner2/south_west, /area/whiskey_outpost/outside/lane/four_north) "ht" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "hu" = ( /obj/structure/surface/table/reinforced/prison, @@ -2083,10 +1674,7 @@ pixel_y = 28 }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "hy" = ( /obj/item/lightstick/red/planted, @@ -2100,10 +1688,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hA" = ( /obj/structure/disposalpipe/segment{ @@ -2126,10 +1711,7 @@ dir = 4; sortType = "Chemistry" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hC" = ( /obj/structure/sign/prop1, @@ -2137,18 +1719,10 @@ /area/whiskey_outpost/inside/caves/tunnel) "hD" = ( /obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/iv_drip, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "hE" = ( /obj/effect/decal/medical_decals{ @@ -2159,10 +1733,7 @@ dir = 4; sortType = "Hospital" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "hF" = ( /obj/effect/decal/medical_decals{ @@ -2172,11 +1743,12 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) +"hH" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "hI" = ( /turf/open/gm/grass/gbcorner/south_west, /area/whiskey_outpost/outside/lane/one_north) @@ -2206,27 +1778,17 @@ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "hO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) -"hP" = ( -/turf/open/space/basic, -/area/whiskey_outpost/inside/caves) "hQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) "hR" = ( /obj/structure/platform_decoration{ @@ -2235,10 +1797,7 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south) "hS" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/lane/one_north) "hT" = ( /obj/structure/pipes/standard/tank/oxygen, @@ -2246,19 +1805,14 @@ pixel_x = -6; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "hV" = ( /obj/structure/bed/chair/comfy/beige{ dir = 8 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "hW" = ( /obj/structure/machinery/light{ @@ -2270,9 +1824,7 @@ /obj/structure/machinery/sleep_console{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "hY" = ( /obj/structure/window/reinforced{ @@ -2288,9 +1840,7 @@ /obj/structure/bed{ can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "hZ" = ( /obj/structure/machinery/vending/cola, @@ -2309,9 +1859,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "ih" = ( /obj/structure/machinery/light{ @@ -2325,9 +1873,7 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "ij" = ( /obj/effect/decal/cleanable/blood/oil, @@ -2338,9 +1884,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "il" = ( /obj/structure/machinery/vending/coffee, @@ -2350,22 +1894,14 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "im" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "in" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "io" = ( /obj/structure/flora/jungle/plantbot1, @@ -2379,10 +1915,7 @@ /area/whiskey_outpost/outside/lane/four_north) "iq" = ( /obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/living) "is" = ( /obj/structure/disposalpipe/trunk, @@ -2397,10 +1930,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "iu" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital/triage) "iv" = ( /obj/structure/platform{ @@ -2412,22 +1942,14 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "iw" = ( -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/northeast) "iy" = ( /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "iz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -2438,9 +1960,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iA" = ( /obj/structure/barricade/plasteel/wired, @@ -2450,9 +1970,7 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iC" = ( /obj/structure/disposalpipe/segment{ @@ -2472,17 +1990,12 @@ /area/whiskey_outpost/outside/lane/two_south) "iI" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "iJ" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/obj/structure/medical_supply_link/green, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "iK" = ( /obj/structure/machinery/door/poddoor{ @@ -2512,16 +2025,12 @@ /area/whiskey_outpost/outside/mortar_pit) "iN" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/obj/structure/medical_supply_link/green, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "iO" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "iP" = ( /obj/structure/disposalpipe/segment{ @@ -2529,24 +2038,16 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "iQ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "iR" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "iS" = ( /obj/effect/landmark/start/whiskey/police, @@ -2569,9 +2070,7 @@ /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "iY" = ( /obj/structure/surface/table/reinforced/prison, @@ -2584,9 +2083,7 @@ }, /obj/item/tool/pen, /obj/item/paper_bin, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "iZ" = ( /obj/structure/machinery/autodoc_console, @@ -2594,10 +2091,7 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "jb" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -2605,20 +2099,14 @@ icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "je" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger{ pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "jf" = ( /obj/effect/spawner/gibspawner/human, @@ -2641,10 +2129,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital) "jj" = ( /obj/structure/machinery/medical_pod/bodyscanner{ @@ -2654,9 +2139,7 @@ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "jk" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, @@ -2664,9 +2147,7 @@ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "jl" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -2676,9 +2157,7 @@ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "jm" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, @@ -2687,9 +2166,7 @@ "jn" = ( /obj/structure/machinery/prop/almayer/CICmap, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "jo" = ( /obj/structure/bed/chair/office/dark{ @@ -2727,20 +2204,14 @@ pixel_x = -30; req_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "jt" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/whiskey_outpost/inside/cic) "ju" = ( /obj/item/toy/beach_ball/holoball, @@ -2748,42 +2219,30 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "jv" = ( /obj/structure/surface/rack, /obj/structure/largecrate/supply/ammo/sentry, /obj/structure/largecrate/supply/ammo/m56d, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "jA" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalleft" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "jB" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/bunker/bunker/front) "jD" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "jE" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "jF" = ( /obj/structure/surface/table/reinforced/prison, @@ -2799,58 +2258,38 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "jG" = ( /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "jH" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "jI" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "jJ" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/whiskey_outpost/inside/hospital) "jL" = ( /obj/structure/platform_decoration, /turf/open/jungle, /area/whiskey_outpost/outside/lane/two_south) "jM" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/living) "jN" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/whiskey_outpost/inside/cic) "jP" = ( /turf/closed/shuttle/dropship{ @@ -2911,15 +2350,11 @@ layer = 3.2; pixel_y = 20 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "jZ" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "ka" = ( /obj/structure/sign/poster{ @@ -2931,9 +2366,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "ke" = ( /obj/item/lightstick/red/planted, @@ -2945,26 +2378,17 @@ icon_state = "warning_s" }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "kh" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kk" = ( /obj/structure/machinery/disposal, @@ -2996,45 +2420,32 @@ dir = 4 }, /obj/item/device/whistle, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "kq" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "ks" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/bunker/front) "kt" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "kv" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kw" = ( /obj/effect/decal/medical_decals{ dir = 4; icon_state = "triagedecaldir" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kx" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "ky" = ( /obj/structure/disposalpipe/segment{ @@ -3044,18 +2455,12 @@ /area/whiskey_outpost/outside/lane/two_north) "kz" = ( /obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "kA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/box/bodybags, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "kB" = ( /obj/structure/flora/jungle/plantbot1, @@ -3072,15 +2477,11 @@ id = "WOlineshutters2"; name = "\improper Supply Depo Line 2" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "kE" = ( /obj/structure/machinery/computer/cryopod, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "kG" = ( /obj/structure/bed/chair{ @@ -3090,28 +2491,21 @@ /area/whiskey_outpost/inside/living) "kI" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "kJ" = ( /obj/structure/machinery/medical_pod/sleeper, /obj/effect/decal/medical_decals{ icon_state = "docstriping" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kK" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/whiskey_outpost/inside/cic) "kM" = ( /obj/structure/machinery/sleep_console, @@ -3119,23 +2513,16 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "kN" = ( /obj/structure/machinery/iv_drip, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kO" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "kP" = ( /obj/structure/machinery/sleep_console{ @@ -3146,10 +2533,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital) "kQ" = ( /obj/structure/platform{ @@ -3161,10 +2545,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) "kV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "kX" = ( /obj/structure/machinery/medical_pod/sleeper{ @@ -3174,34 +2555,23 @@ dir = 8; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kY" = ( /obj/effect/landmark/start/whiskey/cmo, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "kZ" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "la" = ( -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "lc" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/north/northeast) "ld" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "le" = ( /obj/structure/surface/table, @@ -3220,9 +2590,7 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lj" = ( /obj/structure/disposalpipe/segment{ @@ -3235,29 +2603,21 @@ /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/south) "lm" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lo" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; pixel_y = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lp" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirt, /area/whiskey_outpost/outside/south/very_far) "lq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker) "lr" = ( /obj/structure/disposalpipe/segment, @@ -3274,9 +2634,7 @@ "lt" = ( /obj/structure/bed/roller, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "lu" = ( /obj/structure/surface/table, @@ -3290,18 +2648,14 @@ /obj/item/device/flashlight/lamp, /obj/item/tool/extinguisher, /obj/item/device/binoculars, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "lw" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/supply) "lx" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "lA" = ( /turf/closed/wall/rock/brown, @@ -3309,10 +2663,7 @@ "lB" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/facepaint/green, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lC" = ( /obj/structure/disposalpipe/segment{ @@ -3352,10 +2703,7 @@ pixel_x = -30; req_access = null }, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "lH" = ( /obj/structure/disposalpipe/segment{ @@ -3390,10 +2738,7 @@ /obj/effect/decal/medical_decals{ icon_state = "triagedecaldir" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "lP" = ( /obj/structure/surface/table, @@ -3402,10 +2747,7 @@ /area/whiskey_outpost/inside/living) "lS" = ( /obj/structure/largecrate/supply/medicine/iv, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "lU" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -3426,9 +2768,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "lX" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -3445,12 +2785,6 @@ /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/whiskey_outpost/outside/lane/four_south) -"mb" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "mc" = ( /obj/structure/machinery/vending/snack, /obj/structure/machinery/light/small{ @@ -3459,9 +2793,7 @@ /turf/open/floor/prison, /area/whiskey_outpost) "md" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "mf" = ( /turf/open/jungle, @@ -3470,9 +2802,7 @@ /turf/open/floor/prison, /area/whiskey_outpost) "mi" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "mj" = ( /obj/effect/spawner/gibspawner/human, @@ -3480,25 +2810,17 @@ /area/whiskey_outpost/outside/lane/one_south) "ml" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "mn" = ( /obj/structure/surface/rack, /obj/item/storage/large_holster/machete/full, /obj/item/storage/large_holster/machete/full, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "mo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "mp" = ( /obj/structure/barricade/sandbags/wired{ @@ -3526,9 +2848,7 @@ dir = 1; icon_state = "docstripingdir" }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "mw" = ( /turf/open/gm/dirtgrassborder/west, @@ -3538,9 +2858,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/cic) "my" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -3556,22 +2874,15 @@ }, /obj/item/weapon/gun/rifle/lmg, /obj/item/weapon/gun/rifle/lmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "mC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/prison, /area/whiskey_outpost) "mD" = ( /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "mE" = ( /obj/structure/machinery/autodoc_console{ @@ -3582,10 +2893,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "mF" = ( /obj/structure/surface/table, @@ -3614,10 +2922,7 @@ /obj/item/device/whistle{ pixel_y = 14 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "mI" = ( /obj/structure/sign/poster, @@ -3629,31 +2934,23 @@ }, /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "mL" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mM" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; name = "\improper Combat Information Center" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mN" = ( /obj/structure/window/framed/colony/reinforced, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "mQ" = ( /obj/structure/disposalpipe/segment, @@ -3675,10 +2972,7 @@ }, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "mT" = ( /turf/closed/wall/rock/brown, @@ -3688,9 +2982,7 @@ dir = 8; id = "crate" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "mV" = ( /obj/structure/sign/poster{ @@ -3720,9 +3012,7 @@ pixel_x = 20 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "nb" = ( /obj/structure/machinery/autodoc_console, @@ -3730,10 +3020,7 @@ icon_state = "triagedecalleft" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "nc" = ( /obj/structure/disposalpipe/trunk, @@ -3741,35 +3028,17 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nd" = ( -/turf/open/floor{ - dir = 1; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/north, /area/whiskey_outpost/inside/hospital/triage) -"ne" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/whiskey_outpost) "nf" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft" }, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "ng" = ( /turf/open/gm/coast/beachcorner/north_east, @@ -3779,16 +3048,11 @@ /area/whiskey_outpost/outside/south/very_far) "ni" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/obj/structure/medical_supply_link, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nj" = ( /turf/open/gm/grass/gbcorner/south_west, @@ -3805,29 +3069,20 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "nn" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "no" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottom" }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "np" = ( /obj/structure/sign/safety/medical{ @@ -3848,10 +3103,7 @@ icon_state = "triagedecaldir" }, /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "nt" = ( /obj/structure/barricade/sandbags/wired{ @@ -3859,47 +3111,30 @@ icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "nv" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost) "nw" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost) "ny" = ( /obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nz" = ( /obj/structure/bed/chair, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "nA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ name = "\improper Hospital"; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "nB" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -3966,10 +3201,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nO" = ( /obj/structure/sign/safety/medical, @@ -3977,13 +3209,8 @@ /area/whiskey_outpost) "nR" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/effect/decal/medical_decals{ - icon_state = "docstripingdir" - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/obj/structure/medical_supply_link, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "nS" = ( /obj/structure/disposalpipe/segment{ @@ -3996,17 +3223,11 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Mortar Pit" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "nW" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "nY" = ( /obj/structure/machinery/light/small{ @@ -4014,15 +3235,10 @@ }, /obj/item/storage/belt/medical/lifesaver/full, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "oa" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "ob" = ( /obj/structure/barricade/plasteel/wired, @@ -4030,9 +3246,7 @@ /area/whiskey_outpost/outside/lane/two_north) "od" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white, /area/whiskey_outpost/inside/living) "oe" = ( /obj/structure/sign/safety/medical{ @@ -4041,10 +3255,7 @@ /turf/closed/wall/r_wall, /area/whiskey_outpost) "of" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "oi" = ( /obj/structure/sign/poster, @@ -4052,10 +3263,7 @@ /area/whiskey_outpost/inside/hospital/triage) "om" = ( /obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "oo" = ( /obj/structure/machinery/light/small{ @@ -4065,16 +3273,11 @@ /area/whiskey_outpost/inside/living) "oq" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "or" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/living) "os" = ( /obj/structure/shuttle/engine/propulsion{ @@ -4090,35 +3293,22 @@ /obj/structure/machinery/light, /obj/structure/surface/rack, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "ow" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "ox" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "oy" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "oz" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -4137,18 +3327,12 @@ /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "oD" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "oE" = ( /obj/structure/largecrate/supply/explosives/mortar_he, @@ -4156,60 +3340,42 @@ /area/whiskey_outpost/inside/caves/caverns) "oF" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen/southwest, /area/whiskey_outpost/inside/living) "oG" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; sortType = "CIC" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oH" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_access_txt = "11" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oK" = ( /obj/structure/disposalpipe/junction{ dir = 4; icon_state = "pipe-j2" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oO" = ( /obj/structure/largecrate/supply/explosives/mortar_incend, @@ -4220,15 +3386,10 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oQ" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital) "oS" = ( /obj/structure/curtain/black, @@ -4240,19 +3401,13 @@ /area/whiskey_outpost/inside/hospital) "oW" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "oX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "oY" = ( /obj/structure/disposalpipe/segment{ @@ -4264,18 +3419,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "pc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "pe" = ( /obj/effect/landmark/start/whiskey/pilot, @@ -4289,6 +3439,10 @@ /obj/effect/landmark/start/whiskey/engineer, /turf/open/gm/dirtgrassborder/north, /area/whiskey_outpost/outside/lane/two_south) +"pk" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "pm" = ( /obj/effect/decal/cleanable/blood/writing, /obj/item/weapon/gun/pistol/m4a3, @@ -4300,10 +3454,7 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "pq" = ( /turf/closed/wall/r_wall, @@ -4326,19 +3477,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "px" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "py" = ( /obj/structure/barricade/sandbags/wired{ @@ -4352,18 +3497,14 @@ dir = 1; name = "\improper Mortar Pit" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "pA" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "pD" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -4373,10 +3514,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "pF" = ( /obj/structure/machinery/light/small{ @@ -4402,26 +3540,17 @@ dir = 1; sortType = "Engineering" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "pJ" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "pK" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "pL" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -4451,10 +3580,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "pR" = ( /obj/structure/surface/rack, @@ -4517,16 +3643,11 @@ pixel_x = -30 }, /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "qf" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/living) "qg" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -4557,20 +3678,14 @@ dir = 8; name = "\improper Storage" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "ql" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "qn" = ( /obj/structure/extinguisher_cabinet, @@ -4581,41 +3696,29 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "qp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital) "qq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "qs" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "qt" = ( /turf/open/gm/coast/west, /area/whiskey_outpost/outside/lane/four_south) "qu" = ( /obj/structure/machinery/power/smes/buildable, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qv" = ( /turf/open/gm/coast/beachcorner/south_east, @@ -4635,67 +3738,42 @@ }, /obj/item/roller/surgical, /obj/item/roller/surgical, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "qx" = ( /obj/structure/machinery/light/small{ dir = 1 }, /obj/structure/machinery/recharge_station, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qz" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/hospital) "qB" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "qC" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "qE" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qF" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "qG" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qH" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "qI" = ( /obj/structure/barricade/metal/wired, @@ -4703,10 +3781,7 @@ icon_state = "cartridge_2_1"; layer = 2 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "qJ" = ( /obj/structure/disposalpipe/segment{ @@ -4719,17 +3794,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "qK" = ( /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "qL" = ( /obj/structure/disposalpipe/segment{ @@ -4737,29 +3806,21 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "qM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "qN" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "qO" = ( /obj/structure/barricade/sandbags/wired{ @@ -4773,19 +3834,13 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "qP" = ( /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/northwest, /area/whiskey_outpost) "qR" = ( /obj/structure/disposalpipe/segment{ @@ -4799,21 +3854,13 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "qU" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/mortar_pit) "qW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, +/obj/structure/machinery/power/apc/almayer/east, /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "qX" = ( @@ -4821,18 +3868,13 @@ dir = 1; id = "WOline2" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "qY" = ( /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/lane/one_south) "ra" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, +/obj/structure/machinery/power/apc/almayer/east, /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker) "rb" = ( @@ -4857,17 +3899,11 @@ /area/whiskey_outpost/inside/engineering) "rf" = ( /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "ri" = ( /obj/item/storage/toolbox/mechanical, @@ -4877,22 +3913,15 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "rk" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap/hidden, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "rl" = ( -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/whiskey_outpost/outside/north/northeast) "rm" = ( /obj/structure/window/framed/colony/reinforced, @@ -4901,16 +3930,17 @@ "rp" = ( /turf/open/jungle, /area/whiskey_outpost/outside/north/northwest) +"rq" = ( +/obj/effect/landmark/start/whiskey/engineering, +/turf/open/floor/plating/plating_catwalk/prison, +/area/whiskey_outpost/inside/engineering) "rs" = ( /obj/item/storage/toolbox/emergency, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/engineering) "rt" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/lane/one_north) "ru" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -4918,17 +3948,11 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rw" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -4941,19 +3965,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "rA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "rB" = ( /obj/structure/disposalpipe/segment{ @@ -4962,9 +3980,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) "rC" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "rD" = ( /obj/structure/window/reinforced{ @@ -4983,9 +3999,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "rE" = ( /obj/structure/machinery/light/small, @@ -4996,32 +4010,20 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "rG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "rI" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "rJ" = ( /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "rL" = ( /obj/structure/disposalpipe/segment, @@ -5036,9 +4038,7 @@ not_weldable = 1 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "rN" = ( /obj/structure/mortar/wo, @@ -5061,47 +4061,28 @@ }, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) -"rR" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "rS" = ( /obj/structure/filingcabinet, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "rT" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_south) "rV" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "rW" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "rX" = ( /obj/structure/machinery/body_scanconsole{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "rY" = ( /obj/structure/disposalpipe/segment{ @@ -5116,10 +4097,7 @@ "sa" = ( /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "sb" = ( /obj/structure/disposalpipe/segment{ @@ -5136,19 +4114,13 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "se" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Generator Hatch" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sg" = ( /obj/item/storage/box/lightstick, @@ -5177,9 +4149,7 @@ /area/whiskey_outpost/inside/engineering) "sh" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "si" = ( /obj/effect/spawner/gibspawner/human, @@ -5187,26 +4157,18 @@ /area/whiskey_outpost/outside/lane/four_south) "sk" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "sl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sm" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sn" = ( /turf/closed/wall/r_wall, @@ -5220,10 +4182,7 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sq" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -5233,10 +4192,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "ss" = ( /obj/structure/platform_decoration{ @@ -5254,19 +4210,14 @@ /area/whiskey_outpost/inside/supply) "sx" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "sA" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/lane/two_south) "sC" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "sD" = ( /obj/structure/barricade/handrail{ @@ -5275,9 +4226,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker) "sI" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/living) "sJ" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/wo, @@ -5287,9 +4236,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "sL" = ( /obj/structure/disposalpipe/segment, @@ -5323,19 +4270,13 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "sR" = ( /obj/structure/machinery/colony_floodlight_switch{ pixel_x = -32 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "sU" = ( /turf/closed/wall/r_wall/unmeltable, @@ -5349,27 +4290,18 @@ }, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "sX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost) "sY" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) "tc" = ( /obj/structure/disposalpipe/segment{ @@ -5395,19 +4327,13 @@ /area/whiskey_outpost/outside/south) "tj" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "tk" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker) "tl" = ( /obj/structure/sign/nosmoking_1, @@ -5418,10 +4344,7 @@ /turf/open/floor/plating, /area/whiskey_outpost/inside/hospital/triage) "to" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "tp" = ( /obj/structure/surface/table/almayer, @@ -5449,27 +4372,15 @@ /obj/item/tool/pen, /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) -"tt" = ( -/obj/structure/machinery/power/geothermal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "tu" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "tv" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/engineering) "tw" = ( /obj/structure/window/reinforced{ @@ -5483,24 +4394,10 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) -"ty" = ( -/obj/structure/machinery/power/geothermal, -/obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, -/area/whiskey_outpost/inside/engineering) "tz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) "tA" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -5537,27 +4434,19 @@ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "tG" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "tH" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "crate0" }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "tI" = ( /obj/structure/extinguisher_cabinet, @@ -5578,10 +4467,7 @@ /area/whiskey_outpost/outside/north) "tL" = ( /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "tN" = ( /obj/structure/sign/prop3, @@ -5613,30 +4499,21 @@ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "tV" = ( /obj/structure/holohoop{ density = 0; pixel_y = 24 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "tY" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northeast, /area/whiskey_outpost/inside/cic) "ua" = ( /obj/effect/landmark/start/whiskey/engineer, @@ -5659,9 +4536,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "ue" = ( /obj/structure/window/reinforced{ @@ -5680,15 +4555,11 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "uf" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "ug" = ( /obj/structure/surface/table/almayer, @@ -5705,9 +4576,7 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uh" = ( /obj/structure/bed/chair/office/dark{ @@ -5733,24 +4602,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "um" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/north) "uo" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "uq" = ( -/turf/open/gm/dirt{ - icon_state = "desert0" - }, +/turf/open/gm/dirt/desert0, /area/whiskey_outpost/inside/caves/caverns/west) "ur" = ( /obj/structure/machinery/conveyor{ @@ -5764,10 +4626,7 @@ /obj/structure/machinery/recycler/whiskey{ recycle_dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "us" = ( /obj/structure/machinery/door/window/northright, @@ -5776,10 +4635,7 @@ icon_state = "pipe-c" }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "ut" = ( /obj/structure/machinery/light{ @@ -5799,9 +4655,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/mortar_pit) "uw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "ux" = ( /obj/structure/surface/table/woodentable/poor, @@ -5824,10 +4678,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/inside/caves/tunnel) "uB" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "uC" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -5838,19 +4689,13 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "uD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "uE" = ( /turf/open/gm/dirt, @@ -5901,6 +4746,10 @@ }, /turf/open/floor/prison, /area/whiskey_outpost/inside/supply) +"uM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "uN" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 @@ -5914,35 +4763,24 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uR" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; icon_state = "towergun" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "uT" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "uU" = ( /obj/effect/landmark/start/whiskey/liaison, @@ -5960,22 +4798,14 @@ /area/whiskey_outpost/outside/north) "uZ" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "vb" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker) "vc" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "ve" = ( /turf/closed/wall, @@ -5985,9 +4815,7 @@ /area/whiskey_outpost/outside/north/beach) "vi" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "vk" = ( /obj/structure/bed/chair/dropship/passenger{ @@ -5995,9 +4823,7 @@ icon_state = "shuttle_chair" }, /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_south) "vl" = ( /obj/structure/closet/secure_closet/engineering_personal, @@ -6009,10 +4835,7 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vm" = ( /obj/structure/machinery/conveyor{ @@ -6024,10 +4847,7 @@ "vn" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "vp" = ( /obj/structure/disposalpipe/segment, @@ -6035,9 +4855,7 @@ /area/whiskey_outpost/inside/bunker) "vq" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "vr" = ( /obj/structure/sign/poster{ @@ -6048,19 +4866,13 @@ "vv" = ( /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/engineering) "vw" = ( /obj/structure/machinery/conveyor_switch/oneway{ id = "trash" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -6068,10 +4880,7 @@ not_weldable = 1; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/supply) "vy" = ( /obj/structure/disposalpipe/segment, @@ -6080,28 +4889,21 @@ /area/whiskey_outpost/inside/bunker/pillbox/three) "vA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "vB" = ( /turf/closed/shuttle/dropship, /area/whiskey_outpost/outside/lane/four_south) "vC" = ( /obj/vehicle/powerloader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "vE" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; name = "\improper Storage" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "vF" = ( /obj/item/lightstick/red/planted, @@ -6116,19 +4918,14 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "vK" = ( /obj/structure/barricade/metal/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) "vL" = ( -/turf/open/floor/prison{ - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2, /area/whiskey_outpost/inside/supply) "vN" = ( /obj/structure/machinery/light{ @@ -6154,26 +4951,17 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vS" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "Engineering Dorms"; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "vV" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/east, /area/whiskey_outpost/inside/supply) "vW" = ( /obj/structure/bed/chair/office/dark{ @@ -6181,9 +4969,7 @@ layer = 3.25 }, /obj/effect/landmark/start/whiskey/cargo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "vX" = ( /obj/structure/machinery/door/window/southleft{ @@ -6194,22 +4980,15 @@ /obj/structure/machinery/door/window/northleft{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "vY" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north) "vZ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker) "wb" = ( /obj/structure/flora/jungle/alienplant1, @@ -6217,21 +4996,14 @@ /area/whiskey_outpost/outside/river/east) "wc" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "we" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin13" - }, +/turf/open/shuttle/dropship/light_grey_middle, /area/whiskey_outpost/outside/lane/four_north) "wf" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/supply) "wh" = ( /obj/structure/window/reinforced{ @@ -6245,10 +5017,7 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wi" = ( /obj/structure/window/reinforced{ @@ -6263,10 +5032,7 @@ /obj/item/bedsheet/hos, /obj/structure/machinery/light/small, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wj" = ( /obj/structure/disposalpipe/segment{ @@ -6288,10 +5054,7 @@ /obj/structure/bed, /obj/item/bedsheet/hos, /obj/effect/landmark/start/whiskey/maint, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/engineering) "wl" = ( /obj/structure/disposaloutlet{ @@ -6304,10 +5067,7 @@ dir = 4 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wn" = ( /obj/item/storage/box/m94, @@ -6315,15 +5075,11 @@ /area/whiskey_outpost/outside/lane/four_north) "wp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wq" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "ws" = ( /turf/open/gm/river, @@ -6333,24 +5089,16 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wv" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_south) "ww" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "wx" = ( /obj/structure/platform_decoration{ @@ -6367,10 +5115,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wA" = ( /obj/structure/machinery/conveyor{ @@ -6384,15 +5129,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "wC" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wF" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -6401,10 +5141,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "wI" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6416,18 +5153,13 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital/triage) "wJ" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "wK" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -6445,16 +5177,11 @@ dir = 1; id = "WOline1" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost) "wN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "wO" = ( /obj/structure/disposalpipe/segment, @@ -6465,29 +5192,20 @@ /area/whiskey_outpost/inside/bunker) "wP" = ( /obj/structure/curtain/black, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "wQ" = ( -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "wR" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "wS" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wT" = ( /turf/open/jungle, @@ -6498,10 +5216,7 @@ pixel_x = -30; req_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "wV" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -6510,9 +5225,7 @@ no_panel = 1; not_weldable = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "wW" = ( /obj/effect/landmark/start/whiskey/marine, @@ -6530,19 +5243,14 @@ /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine, /obj/item/ammo_box/magazine/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "wZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "xa" = ( /obj/structure/machinery/light/small{ @@ -6550,24 +5258,22 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/belts/grenade, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xb" = ( /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/outside/north/beach) +"xc" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "xg" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "xj" = ( /obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "xk" = ( /obj/structure/surface/rack, @@ -6591,9 +5297,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "xm" = ( /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xp" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, @@ -6609,38 +5313,25 @@ /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39, /obj/item/ammo_box/magazine/m39/ext, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xt" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Entrance Pillbox" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xx" = ( /turf/closed/shuttle/dropship{ icon_state = "rasputin9" }, /area/whiskey_outpost/outside/lane/four_north) -"xy" = ( -/obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "xB" = ( /obj/structure/surface/rack, /obj/item/ammo_box/magazine/m4ra, /obj/item/ammo_box/magazine/m4ra, /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xC" = ( /turf/open/gm/dirt, @@ -6650,9 +5341,7 @@ /obj/item/ammo_box/magazine/shotgun/buckshot, /obj/item/ammo_box/magazine/shotgun/flechette, /obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xE" = ( /obj/structure/machinery/light/small{ @@ -6660,19 +5349,14 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "xF" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "xG" = ( /obj/structure/cargo_container/grant/left, @@ -6690,9 +5374,7 @@ /obj/item/ammo_box/magazine/m4a3, /obj/item/ammo_box/magazine/m44, /obj/item/ammo_box/magazine/vp70, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "xK" = ( /obj/item/lightstick/red/planted, @@ -6702,9 +5384,7 @@ /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, +/turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) "xM" = ( /obj/structure/barricade/metal/wired{ @@ -6716,10 +5396,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "xO" = ( /turf/open/jungle, @@ -6736,10 +5413,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "xR" = ( /obj/structure/platform{ @@ -6755,19 +5429,14 @@ /area/whiskey_outpost/outside/north/beach) "xT" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "xV" = ( /obj/effect/landmark/start/whiskey/spec, /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "xX" = ( /obj/structure/window/reinforced{ @@ -6783,19 +5452,14 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "xZ" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, /area/whiskey_outpost/outside/lane/two_south) "ya" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "yd" = ( /obj/structure/barricade/sandbags/wired{ @@ -6810,10 +5474,7 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "yf" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/southwest, /area/whiskey_outpost/inside/supply) "yg" = ( /obj/structure/barricade/sandbags/wired, @@ -6826,26 +5487,18 @@ "yh" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "yj" = ( /obj/effect/landmark/start/whiskey/cargo, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellowcorners2" - }, +/turf/open/floor/prison/darkyellowcorners2/west, /area/whiskey_outpost/inside/supply) "yk" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yl" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -6856,10 +5509,7 @@ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "yo" = ( /obj/structure/barricade/sandbags/wired{ @@ -6872,10 +5522,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yr" = ( /obj/structure/machinery/m56d_hmg/mg_turret, @@ -6890,16 +5537,12 @@ /turf/closed/wall/r_wall/unmeltable, /area/whiskey_outpost/inside/supply) "yw" = ( -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker) "yx" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/thunderdome/observer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yy" = ( /obj/structure/machinery/light/small{ @@ -6912,19 +5555,13 @@ dir = 4; health = 80 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yA" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "yB" = ( /obj/structure/machinery/light{ @@ -6933,27 +5570,19 @@ }, /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yC" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) "yD" = ( /obj/item/storage/box/m94, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "yF" = ( /obj/structure/closet/secure_closet/cargotech, /obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "yG" = ( /obj/structure/closet/secure_closet/req_officer, @@ -6970,10 +5599,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "darkyellow2" - }, +/turf/open/floor/prison/darkyellow2/west, /area/whiskey_outpost/inside/supply) "yH" = ( /turf/closed/wall/r_wall, @@ -6985,26 +5611,20 @@ req_access = null }, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yL" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Bunker" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yN" = ( /turf/closed/shuttle/dropship{ @@ -7017,9 +5637,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yP" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -7028,28 +5646,20 @@ req_access = null }, /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "yQ" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled{ dir = 1 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital/triage) "yR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "yS" = ( /obj/structure/platform{ @@ -7072,24 +5682,18 @@ /area/whiskey_outpost/outside/river/east) "yV" = ( /obj/structure/machinery/light/small, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "yW" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "yX" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "yY" = ( /obj/structure/sign/poster/hero/voteno{ @@ -7101,23 +5705,15 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/living) "zc" = ( -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "zd" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "zf" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zg" = ( /obj/structure/platform{ @@ -7129,10 +5725,7 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zh" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -7141,10 +5734,7 @@ /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Eastern Entrance Pillbox" }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker) "zj" = ( /obj/structure/disposalpipe/segment{ @@ -7153,24 +5743,16 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/north) "zl" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "zm" = ( /obj/item/storage/box/explosive_mines, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "zo" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "zq" = ( /turf/open/gm/river, @@ -7188,17 +5770,11 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) "zt" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "zu" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "zw" = ( /turf/open/gm/coast/west, @@ -7212,25 +5788,17 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "zB" = ( /obj/structure/disposalpipe/trunk, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "zC" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "zD" = ( /obj/structure/disposalpipe/segment{ @@ -7247,10 +5815,7 @@ /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/black, /obj/item/clothing/under/shorts/blue, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "zG" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ @@ -7281,10 +5846,7 @@ "zM" = ( /obj/effect/landmark/start/whiskey/smartgunner, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "zP" = ( /obj/structure/stairs/perspective{ @@ -7307,9 +5869,7 @@ layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "zR" = ( /obj/structure/barricade/sandbags/wired{ @@ -7323,10 +5883,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "zU" = ( /turf/open/gm/dirtgrassborder/west, @@ -7343,9 +5900,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "zX" = ( /turf/open/gm/coast/south, @@ -7361,10 +5916,7 @@ /area/whiskey_outpost/outside/lane/three_north) "Ab" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "Ac" = ( /obj/structure/platform{ @@ -7374,10 +5926,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Ad" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Ae" = ( /turf/closed/wall/rock/brown, @@ -7392,10 +5941,7 @@ "Am" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "An" = ( /turf/closed/wall/r_wall, @@ -7408,10 +5954,7 @@ /obj/effect/decal/cleanable/blood/writing{ dir = 1 }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_south) "Ar" = ( /obj/structure/barricade/plasteel/wired{ @@ -7425,9 +5968,7 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "Au" = ( /obj/structure/barricade/metal/wired{ @@ -7441,6 +5982,10 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/whiskey_outpost/inside/bunker) +"Ay" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/whitegreen/east, +/area/whiskey_outpost/inside/hospital) "AA" = ( /turf/open/jungle, /area/whiskey_outpost/outside/south/far) @@ -7449,17 +5994,11 @@ dir = 8; icon_state = "towergun" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "AC" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "AD" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -7475,10 +6014,7 @@ "AF" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "AH" = ( /obj/structure/barricade/sandbags/wired{ @@ -7495,10 +6031,7 @@ /area/whiskey_outpost/outside/south/very_far) "AJ" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "AK" = ( /turf/open/gm/dirtgrassborder/north, @@ -7524,10 +6057,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "AS" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, @@ -7541,10 +6071,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "AV" = ( /turf/open/gm/coast/north, @@ -7566,10 +6093,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Bb" = ( /obj/structure/platform_decoration{ @@ -7579,10 +6103,7 @@ /area/whiskey_outpost/outside/south) "Bc" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bd" = ( /obj/structure/sign/poster, @@ -7593,10 +6114,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Bf" = ( /obj/structure/disposalpipe/segment, @@ -7610,10 +6128,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Bh" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -7628,36 +6143,25 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Bm" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Bn" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bo" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Bq" = ( /obj/structure/barricade/sandbags/wired{ @@ -7668,28 +6172,20 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northeast, /area/whiskey_outpost/outside/north/platform) "Br" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Bs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Bt" = ( /obj/structure/barricade/plasteel/wired{ @@ -7703,9 +6199,7 @@ "Bu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Bv" = ( /obj/effect/decal/cleanable/blood/writing, @@ -7736,10 +6230,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "BC" = ( /obj/structure/barricade/sandbags/wired, @@ -7747,10 +6238,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "BF" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -7761,20 +6249,14 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BJ" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/north/beach) "BK" = ( /turf/open/jungle/clear, @@ -7787,27 +6269,18 @@ /area/whiskey_outpost/outside/north/beach) "BM" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "BN" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BP" = ( /obj/structure/machinery/shower{ @@ -7815,26 +6288,17 @@ layer = 3.3 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "BQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) "BS" = ( /obj/item/storage/box/m94, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "BT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "BU" = ( /obj/structure/barricade/sandbags/wired, @@ -7842,10 +6306,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BV" = ( /obj/structure/stairs/perspective{ @@ -7855,10 +6316,7 @@ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "BW" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -7869,18 +6327,13 @@ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "BY" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ca" = ( /obj/structure/stairs/perspective{ @@ -7890,19 +6343,13 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cc" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Cd" = ( /obj/structure/disposalpipe/segment{ @@ -7918,19 +6365,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Cg" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 4; icon_state = "towergun" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Ch" = ( /turf/closed/wall/wood, @@ -7960,48 +6402,33 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) "Cq" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/north, /area/whiskey_outpost/outside/north/northeast) "Cr" = ( /obj/structure/barricade/plasteel/wired{ dir = 8 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cs" = ( /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital) "Ct" = ( /obj/structure/platform_decoration{ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cu" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Cv" = ( /obj/structure/surface/table/reinforced/prison, @@ -8015,23 +6442,14 @@ /obj/item/reagent_container/glass/beaker, /obj/item/reagent_container/glass/beaker/large, /obj/item/reagent_container/glass/beaker/large, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "Cw" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "Cx" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Cy" = ( /obj/structure/barricade/metal/wired, @@ -8046,30 +6464,21 @@ /area/whiskey_outpost/outside/north/northeast) "CB" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "CC" = ( /obj/structure/machinery/chem_dispenser, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "CD" = ( /turf/open/gm/river, /area/whiskey_outpost/outside/lane/one_north) "CE" = ( /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "CG" = ( /turf/open/gm/dirt, @@ -8090,10 +6499,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "CN" = ( /obj/structure/barricade/metal/wired, @@ -8107,10 +6513,7 @@ /area/whiskey_outpost/inside/caves/caverns) "CQ" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "CR" = ( /turf/closed/wall/rock/brown, @@ -8123,10 +6526,7 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northeast, /area/whiskey_outpost/outside/north/platform) "CY" = ( /obj/structure/platform, @@ -8182,65 +6582,42 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dn" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/platform) "Do" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Dp" = ( -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "Dq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "Dr" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "Ds" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/north/northeast) "Dt" = ( /obj/structure/barricade/sandbags/wired{ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/beach) "Du" = ( /obj/structure/disposalpipe/segment, @@ -8248,20 +6625,14 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dv" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Dw" = ( /obj/structure/surface/table/woodentable/poor, @@ -8277,10 +6648,7 @@ "Dz" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DA" = ( /obj/structure/platform, @@ -8296,25 +6664,16 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DC" = ( /obj/structure/barricade/plasteel/wired{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DD" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "DE" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -8339,20 +6698,14 @@ /area/whiskey_outpost/outside/north/beach) "DJ" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "DK" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/floor/plating, /area/whiskey_outpost/outside/north/northeast) "DL" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/northeast) "DM" = ( /obj/structure/machinery/floodlight{ @@ -8372,18 +6725,12 @@ /obj/structure/machinery/defenses/sentry/premade{ dir = 8 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "DO" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "DP" = ( /obj/structure/platform{ @@ -8396,10 +6743,7 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "DU" = ( /obj/item/lightstick/red/planted, @@ -8414,10 +6758,7 @@ /area/whiskey_outpost/inside/bunker) "DW" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/engineering) "DX" = ( /obj/structure/blocker/invisible_wall, @@ -8432,33 +6773,22 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "DZ" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ea" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/outside/south) "Eb" = ( /obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor{ - dir = 5; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northeast, /area/whiskey_outpost/inside/hospital/triage) "Ec" = ( -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/northeast) "Ed" = ( /obj/structure/bed/chair{ @@ -8474,29 +6804,21 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/northwest, /area/whiskey_outpost/outside/north/platform) "Eg" = ( /turf/open/gm/coast/beachcorner/north_west, /area/whiskey_outpost/outside/river/west) "Eh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Ei" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/inside/living) "Ek" = ( /obj/structure/filtration/machine_96x96/indestructible{ @@ -8514,10 +6836,7 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Er" = ( /obj/structure/platform{ @@ -8533,18 +6852,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/northwest) "Ew" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/beach) "Ex" = ( /obj/structure/disposalpipe/segment{ @@ -8552,27 +6867,18 @@ icon_state = "pipe-c" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ey" = ( /obj/structure/disposalpipe/sortjunction{ sortType = "Western Platform" }, /obj/effect/landmark/start/whiskey/smartgunner, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Ez" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/whiskey_outpost/inside/cic) "EA" = ( /obj/structure/disposalpipe/segment, @@ -8594,9 +6900,7 @@ icon_state = "pipe-c" }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "EF" = ( /turf/open/jungle, @@ -8610,29 +6914,21 @@ icon_state = "sandbag_0" }, /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "EI" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "EJ" = ( /obj/structure/barricade/sandbags/wired, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northeast) "EK" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north/northwest) "EL" = ( /obj/structure/machinery/cm_vending/gear/synth, @@ -8640,10 +6936,7 @@ /area/whiskey_outpost/inside/cic) "EN" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "EO" = ( /turf/open/gm/grass/grass1, @@ -8655,10 +6948,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/platform) "ER" = ( /turf/open/gm/coast/north, @@ -8667,10 +6957,7 @@ /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/one) "EV" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "EX" = ( /obj/structure/platform{ @@ -8687,10 +6974,7 @@ dir = 1 }, /obj/effect/landmark/start/whiskey/bridge, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northeast, /area/whiskey_outpost/inside/cic) "Fa" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -8700,20 +6984,14 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Fd" = ( /obj/structure/barricade/sandbags/wired, /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "Eastern Platform" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Fg" = ( /obj/structure/disposalpipe/segment{ @@ -8721,20 +6999,14 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/machinery/colony_floodlight, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Fh" = ( /obj/structure/machinery/shower{ dir = 4 }, /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Fi" = ( /obj/structure/platform{ @@ -8758,10 +7030,7 @@ dir = 1 }, /obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fn" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -8774,10 +7043,7 @@ /area/whiskey_outpost/outside/river/west) "Fr" = ( /obj/structure/machinery/light/small, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fs" = ( /obj/structure/platform{ @@ -8796,10 +7062,7 @@ /obj/item/storage/beer_pack, /obj/item/storage/beer_pack, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Fw" = ( /obj/structure/platform, @@ -8837,10 +7100,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "FF" = ( /obj/structure/platform{ @@ -8863,55 +7123,39 @@ /turf/open/jungle, /area/whiskey_outpost/outside/south/very_far) "FL" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "FM" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "FO" = ( /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FP" = ( /obj/structure/disposalpipe/sortjunction/flipped{ sortType = "South-Eastern Platform" }, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, /obj/structure/sign/prop3{ pixel_x = 28 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "FU" = ( /obj/structure/disposalpipe/segment{ @@ -8919,10 +7163,7 @@ }, /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/whiskey/spec, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "FV" = ( /obj/structure/barricade/metal/wired{ @@ -8969,10 +7210,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/northeast) "Ge" = ( /obj/structure/window/framed/colony/reinforced, @@ -8989,10 +7227,7 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Gi" = ( /turf/open/gm/grass/grassbeach/east, @@ -9026,10 +7261,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Gu" = ( /obj/structure/sign/poster, @@ -9040,9 +7272,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Gx" = ( /obj/structure/machinery/light{ @@ -9053,9 +7283,7 @@ /area/whiskey_outpost/inside/cic) "Gy" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/inside/living) "Gz" = ( /turf/open/floor/plating, @@ -9071,10 +7299,7 @@ /area/whiskey_outpost/outside/north/beach) "GD" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/whiskey_outpost/outside/north/northeast) "GE" = ( /obj/structure/barricade/sandbags/wired, @@ -9082,9 +7307,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "GF" = ( /obj/structure/platform{ @@ -9094,10 +7317,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "GG" = ( /obj/structure/machinery/colony_floodlight, @@ -9111,10 +7331,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "GJ" = ( /turf/open/jungle, @@ -9128,9 +7345,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "GM" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9142,18 +7357,14 @@ /area/whiskey_outpost/outside/lane/four_south) "GO" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "GQ" = ( /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_south) "GR" = ( /obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) "GS" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -9164,10 +7375,7 @@ /area/whiskey_outpost/outside/river/east) "GT" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/northeast) "GU" = ( /obj/structure/cargo_container/grant/left, @@ -9193,10 +7401,7 @@ pixel_x = 4; pixel_y = 12 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hc" = ( /obj/structure/cargo_container/grant/right, @@ -9204,28 +7409,20 @@ /area/whiskey_outpost/outside/north/northeast) "Hf" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hg" = ( /obj/structure/machinery/colony_floodlight, /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/northwest) "Hh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/whiskey_outpost/outside/lane/four_north) "Hi" = ( /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Hj" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -9242,10 +7439,7 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Hn" = ( /obj/structure/barricade/sandbags/wired, @@ -9253,17 +7447,11 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Ho" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Hp" = ( /obj/structure/machinery/colony_floodlight, @@ -9271,9 +7459,7 @@ /area/whiskey_outpost/outside/lane/one_north) "Hq" = ( /obj/structure/pipes/standard/manifold/visible, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Hr" = ( /turf/open/gm/dirtgrassborder/south, @@ -9301,9 +7487,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/north/beach) "Hw" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/whiskey_outpost/outside/lane/four_north) "Hx" = ( /obj/structure/disposalpipe/segment{ @@ -9314,10 +7498,7 @@ /area/whiskey_outpost/outside/north/beach) "Hy" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "HA" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -9345,19 +7526,14 @@ /obj/structure/machinery/door/airlock/almayer/marine/autoname{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "HM" = ( /obj/structure/flora/jungle/planttop1, /turf/open/jungle, /area/whiskey_outpost/outside/lane/one_south) "HN" = ( -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "HP" = ( /obj/structure/machinery/light/small{ @@ -9380,10 +7556,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "HT" = ( /obj/structure/disposalpipe/segment{ @@ -9398,10 +7571,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "HV" = ( /obj/structure/machinery/door/airlock/almayer/marine/autoname, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "HW" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -9417,18 +7587,12 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/north, /area/whiskey_outpost/outside/north/northwest) "HZ" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Ia" = ( /obj/structure/barricade/sandbags/wired, @@ -9440,10 +7604,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Ic" = ( /obj/structure/barricade/sandbags/wired, @@ -9452,10 +7613,7 @@ icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor{ - dir = 6; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/southeast, /area/whiskey_outpost/outside/north/platform) "If" = ( /obj/structure/barricade/sandbags/wired, @@ -9468,27 +7626,18 @@ icon_state = "sandbag_0" }, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Ih" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/beach) "Ii" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/northeast) "Ik" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Il" = ( /obj/structure/bed/chair{ @@ -9518,10 +7667,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Iq" = ( /obj/structure/barricade/sandbags/wired, @@ -9553,27 +7699,18 @@ /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/two_north) "Ix" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northwest) "Iy" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital/triage) "IA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ starting_attachment_types = list(/obj/item/attachable/stock/shotgun) }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "IB" = ( /obj/structure/disposalpipe/segment, @@ -9586,9 +7723,7 @@ "IF" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning, /area/whiskey_outpost/outside/north/platform) "IG" = ( /obj/structure/machinery/colony_floodlight, @@ -9622,9 +7757,7 @@ "IP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "IQ" = ( /obj/structure/platform{ @@ -9640,9 +7773,7 @@ /area/whiskey_outpost/outside/river/east) "IU" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe, /area/whiskey_outpost/inside/bunker/bunker/front) "IV" = ( /obj/item/tool/weldpack{ @@ -9681,16 +7812,11 @@ "Jd" = ( /obj/structure/machinery/light/small, /obj/effect/landmark/whiskey_outpost/supplydrops, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "Je" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/inside/living) "Jf" = ( /obj/structure/disposalpipe/segment{ @@ -9706,16 +7832,10 @@ "Jh" = ( /obj/item/tool/crowbar, /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Ji" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/inside/caves/caverns/west) "Jk" = ( /obj/structure/disposalpipe/segment{ @@ -9732,10 +7852,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/platform) "Jn" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9782,6 +7899,11 @@ /obj/item/tool/crowbar, /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) +"JA" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "JB" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; @@ -9797,25 +7919,18 @@ /area/whiskey_outpost/outside/south) "JE" = ( /obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital) "JF" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "JG" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/shuttle/dropship{ - icon_state = "rasputin10" - }, +/turf/open/shuttle/dropship/light_grey_top, /area/whiskey_outpost/outside/lane/four_north) "JH" = ( /obj/structure/platform_decoration{ @@ -9823,6 +7938,10 @@ }, /turf/open/gm/grass/grassbeach/west, /area/whiskey_outpost/outside/south) +"JJ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen/west, +/area/whiskey_outpost/inside/hospital) "JL" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -9835,33 +7954,21 @@ dir = 1 }, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "JN" = ( /obj/effect/landmark/whiskey_outpost/supplydrops, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "JO" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "JP" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital/triage) "JR" = ( /obj/structure/surface/table/reinforced/prison, @@ -9869,16 +7976,10 @@ pixel_x = -3; pixel_y = 5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "JT" = ( -/turf/open/floor{ - dir = 8; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/west, /area/whiskey_outpost/inside/hospital) "JU" = ( /turf/open/gm/coast/south, @@ -9920,19 +8021,14 @@ dir = 8; icon_state = "shuttle_chair" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_south) "Kn" = ( /turf/open/gm/grass/grassbeach/south, /area/whiskey_outpost/outside/lane/one_north) "Ko" = ( /obj/structure/curtain, -/turf/open/floor{ - dir = 8; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/west, /area/whiskey_outpost/inside/hospital) "Kq" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -9949,10 +8045,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "darkyellowfull2" - }, +/turf/open/floor/prison/darkyellowfull2/east, /area/whiskey_outpost/inside/supply) "Kt" = ( /obj/structure/fence, @@ -9968,9 +8061,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_north) "Kx" = ( -/turf/open/floor{ - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner, /area/whiskey_outpost/inside/hospital/triage) "Ky" = ( /turf/open/gm/dirtgrassborder/south, @@ -9981,19 +8072,14 @@ /area/whiskey_outpost/outside/north/northwest) "KF" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/northeast) "KG" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/three_north) "KJ" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "KK" = ( /obj/structure/disposalpipe/sortjunction{ @@ -10011,10 +8097,7 @@ /area/whiskey_outpost/outside/north/northwest) "KN" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "KP" = ( /obj/structure/barricade/sandbags/wired{ @@ -10043,9 +8126,7 @@ /area/whiskey_outpost/outside/north/northwest) "KZ" = ( /obj/structure/largecrate/guns, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "Lb" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10073,9 +8154,7 @@ /obj/item/weapon/gun/pill{ pixel_y = 6 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Lg" = ( /turf/open/jungle, @@ -10087,26 +8166,18 @@ /obj/structure/machinery/chem_master{ tether_range = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital) "Lj" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Ln" = ( /obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Lp" = ( /obj/item/lightstick/red/planted, @@ -10142,40 +8213,27 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Ly" = ( /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/lane/three_north) "Lz" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "LB" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/northeast) "LD" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/whiskey_outpost/outside/lane/four_north) "LG" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "LI" = ( /obj/structure/barricade/sandbags/wired{ @@ -10186,10 +8244,7 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 9; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northwest, /area/whiskey_outpost/outside/north/beach) "LJ" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -10211,10 +8266,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/beach) "LM" = ( /obj/structure/sign/prop1, @@ -10237,9 +8289,7 @@ /area/whiskey_outpost/outside/lane/one_north) "LU" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/lane/one_north) "LX" = ( /turf/open/gm/coast/beachcorner/north_west, @@ -10250,9 +8300,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "Ma" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +/turf/open/floor/plating/platebot, /area/whiskey_outpost/outside/lane/one_north) "Mb" = ( /turf/open/gm/dirtgrassborder/east, @@ -10286,10 +8334,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Mh" = ( /obj/structure/machinery/conveyor{ @@ -10297,15 +8342,10 @@ id = "crate" }, /obj/structure/plasticflaps, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "Mi" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/northeast) "Mj" = ( /obj/structure/platform{ @@ -10323,9 +8363,7 @@ /area/whiskey_outpost/inside/caves) "Ml" = ( /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "Mn" = ( /turf/closed/shuttle/dropship{ @@ -10335,47 +8373,30 @@ /area/whiskey_outpost/outside/lane/four_south) "Mo" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "Mp" = ( /obj/structure/machinery/m56d_hmg/mg_turret{ dir = 8; - icon_state = "towergun" - }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" + icon_state = "towergun" }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/beach) "Mq" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Ms" = ( -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/lane/four_north) "Mt" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/platform) "Mw" = ( /obj/structure/fence, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "Mx" = ( /turf/open/jungle, @@ -10426,10 +8447,7 @@ pixel_x = -8; pixel_y = 7 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "MI" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -10437,18 +8455,13 @@ /area/whiskey_outpost/outside/north/beach) "ML" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "MO" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "MP" = ( /turf/open/gm/dirt, @@ -10471,17 +8484,11 @@ /area/whiskey_outpost/outside/north/beach) "MW" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "MX" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_north) "MY" = ( /obj/effect/spawner/gibspawner/human, @@ -10495,10 +8502,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Nc" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Nd" = ( /obj/structure/sign/poster{ @@ -10512,9 +8516,7 @@ /area/whiskey_outpost/outside/lane/three_north) "Nf" = ( /obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Nh" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10546,10 +8548,7 @@ dir = 1; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 5; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/northeast, /area/whiskey_outpost/outside/north/beach) "Nn" = ( /obj/structure/barricade/sandbags/wired, @@ -10557,16 +8556,11 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southwest, /area/whiskey_outpost/outside/north/beach) "Nq" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor/plating{ - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate, /area/whiskey_outpost/outside/north/beach) "Nr" = ( /obj/structure/closet/fireaxecabinet{ @@ -10580,10 +8574,7 @@ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 6; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/southeast, /area/whiskey_outpost/outside/north/beach) "Nu" = ( /obj/effect/decal/cleanable/blood/writing, @@ -10598,26 +8589,17 @@ dir = 8; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 8; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/west, /area/whiskey_outpost/outside/north/beach) "Nz" = ( /obj/structure/barricade/sandbags/wired{ dir = 4; icon_state = "sandbag_0" }, -/turf/open/floor/plating{ - dir = 4; - icon_state = "warnplate" - }, +/turf/open/floor/plating/warnplate/east, /area/whiskey_outpost/outside/north/beach) "NA" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/east, /area/whiskey_outpost/inside/hospital/triage) "NB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10629,17 +8611,11 @@ dir = 1; pixel_y = 28 }, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital/triage) "ND" = ( /obj/effect/decal/cleanable/blood, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "NE" = ( /obj/item/stool, @@ -10679,19 +8655,13 @@ /obj/effect/decal/warning_stripes/asteroid{ icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "NT" = ( /obj/structure/machinery/autodoc_console{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "NV" = ( /turf/open/gm/dirt, @@ -10714,10 +8684,7 @@ /obj/structure/sign/banners/maximumeffort{ pixel_y = 30 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Ob" = ( /obj/structure/flora/jungle/alienplant1, @@ -10746,10 +8713,7 @@ /area/whiskey_outpost/outside/lane/four_north) "Oj" = ( /obj/structure/barricade/sandbags/wired, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Ok" = ( /turf/open/gm/coast/beachcorner2/north_east, @@ -10765,9 +8729,7 @@ id = "WOlineshutters1"; name = "\improper Supply Depo Line 1" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "On" = ( /obj/structure/surface/table/reinforced/prison, @@ -10786,26 +8748,18 @@ /turf/open/floor/prison, /area/whiskey_outpost/inside/bunker/bunker/front) "Oo" = ( -/turf/open/floor{ - dir = 4; - icon_state = "whitegreencorner" - }, +/turf/open/floor/whitegreencorner/east, /area/whiskey_outpost/inside/hospital/triage) "Op" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker) "Oq" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/outside/lane/two_north) "Ot" = ( /obj/structure/disposalpipe/segment, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_south) "Ou" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -10816,17 +8770,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Ow" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "OA" = ( /obj/structure/flora/jungle/alienplant1, @@ -10849,9 +8797,7 @@ pixel_x = 20; pixel_y = 32 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "OI" = ( /obj/structure/disposalpipe/segment{ @@ -10862,10 +8808,7 @@ unacidable = 1; unslashable = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "OK" = ( /turf/closed/wall/strata_ice/jungle, @@ -10886,16 +8829,11 @@ /area/whiskey_outpost/inside/caves/caverns/west) "OQ" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/four_north) "OS" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/cic) "OT" = ( /obj/effect/landmark/start/whiskey/marine, @@ -10915,10 +8853,7 @@ dir = 4 }, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost) "OY" = ( /obj/structure/platform{ @@ -10927,10 +8862,7 @@ /turf/open/gm/coast/north, /area/whiskey_outpost/outside/river) "OZ" = ( -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/lane/three_south) "Pc" = ( /obj/structure/disposalpipe/segment, @@ -10945,22 +8877,14 @@ /area/whiskey_outpost/outside/lane/two_south) "Pe" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/north/beach) "Pg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north/beach) "Ph" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/whiskey_outpost/outside/lane/four_north) "Pi" = ( /obj/structure/barricade/sandbags/wired, @@ -10977,10 +8901,7 @@ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Pm" = ( /turf/closed/wall/r_wall, @@ -10989,10 +8910,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Pq" = ( /obj/structure/barricade/sandbags/wired, @@ -11015,24 +8933,16 @@ /area/whiskey_outpost/outside/river) "Pu" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Pw" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/whiskey_outpost/outside/lane/two_south) "Px" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "Pz" = ( /turf/closed/shuttle/dropship{ @@ -11047,9 +8957,7 @@ /area/whiskey_outpost/outside/lane/three_north) "PB" = ( /obj/effect/landmark/start/whiskey/synthetic, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/whiskey_outpost/inside/cic) "PC" = ( /obj/structure/flora/bush/ausbushes/var3/leafybush, @@ -11097,27 +9005,27 @@ }, /turf/open/gm/river, /area/whiskey_outpost/outside/river/west) +"PR" = ( +/obj/structure/surface/rack, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/engineering) "PT" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor{ - dir = 10; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southwest, /area/whiskey_outpost/inside/hospital/triage) "PU" = ( /obj/structure/largecrate/supply/explosives/mines, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "PV" = ( /obj/structure/machinery/door/airlock/hatch{ name = "Dropship Hatch" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "PW" = ( /obj/structure/disposalpipe/segment{ @@ -11163,26 +9071,17 @@ /area/whiskey_outpost/outside/south) "Ql" = ( /obj/item/lightstick/red/planted, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north/beach) "Qm" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 1 }, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital/triage) "Qn" = ( /obj/effect/spawner/gibspawner/human, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Qo" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -11202,10 +9101,7 @@ /obj/structure/barricade/handrail{ dir = 1 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/west, /area/whiskey_outpost/inside/bunker) "Qt" = ( /obj/structure/machinery/colony_floodlight, @@ -11213,28 +9109,21 @@ /area/whiskey_outpost/outside/south/far) "Qv" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Qw" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/outside/lane/two_north) "Qy" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/outside/lane/three_north) "QA" = ( /obj/structure/machinery/m56d_hmg/mg_turret, @@ -11253,19 +9142,14 @@ pixel_x = 1; pixel_y = 18 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "QG" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/whiskey_outpost/inside/living) "QH" = ( /obj/structure/cargo_container/grant/right, @@ -11283,19 +9167,8 @@ "QO" = ( /turf/closed/wall/r_wall, /area/whiskey_outpost/inside/bunker/pillbox/two) -"QP" = ( -/obj/effect/decal/cleanable/blood/writing{ - dir = 4 - }, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, -/area/whiskey_outpost/outside/south/very_far) "QR" = ( -/turf/open/gm/dirt{ - icon_state = "desert3" - }, +/turf/open/gm/dirt/desert3, /area/whiskey_outpost/inside/caves/caverns/west) "QS" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -11354,9 +9227,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/outside/lane/three_north) "Rf" = ( /obj/structure/machinery/shower{ @@ -11366,19 +9237,13 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Rg" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Rh" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -11413,20 +9278,14 @@ "Rx" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Rz" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) "RA" = ( /obj/effect/landmark/start/whiskey/leader, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "RB" = ( /obj/structure/platform{ @@ -11439,10 +9298,7 @@ dir = 8; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "RD" = ( /obj/structure/cargo_container/grant/rightmid, @@ -11479,10 +9335,7 @@ /area/whiskey_outpost/outside/south) "RR" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "RS" = ( /obj/structure/flora/bush/ausbushes/var3/stalkybush, @@ -11490,26 +9343,18 @@ /area/whiskey_outpost/outside/lane/one_north) "RU" = ( /obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area) "RV" = ( /obj/item/storage/box/m94, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/whiskey_outpost/outside/lane/four_north) "RW" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/river) "RX" = ( /obj/structure/largecrate/random/case, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Sa" = ( /obj/structure/platform{ @@ -11536,9 +9381,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "Sf" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Sh" = ( /obj/structure/disposalpipe/segment, @@ -11548,10 +9391,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Si" = ( /turf/open/gm/dirtgrassborder/south, @@ -11566,18 +9406,14 @@ /area/whiskey_outpost/outside/lane/two_south) "Sl" = ( /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "Sm" = ( /obj/structure/machinery/cm_vending/clothing/marine/charlie{ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/whiskey_outpost/outside/lane/two_north) "Sn" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -11585,18 +9421,14 @@ req_access = null; req_one_access = null }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "So" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/outside/lane/two_north) "Sp" = ( /obj/structure/filingcabinet{ @@ -11639,9 +9471,7 @@ /area/whiskey_outpost/inside/bunker/pillbox/four) "SC" = ( /obj/structure/closet, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital) "SE" = ( /turf/open/gm/dirtgrassborder/north, @@ -11651,22 +9481,14 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, /area/whiskey_outpost/outside/lane/two_south) "SG" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SH" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SI" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_west, @@ -11682,10 +9504,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SL" = ( /obj/structure/platform_decoration{ @@ -11702,9 +9521,7 @@ density = 0; pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/whiskey_outpost/outside/lane/three_north) "SP" = ( /obj/structure/machinery/light/small{ @@ -11714,10 +9531,7 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "SQ" = ( /obj/structure/platform{ @@ -11732,19 +9546,13 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "ST" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "SU" = ( /turf/open/gm/grass/grassbeach/west, @@ -11753,10 +9561,7 @@ /obj/structure/machinery/shower{ dir = 4 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "SX" = ( /turf/open/gm/river, @@ -11791,18 +9596,12 @@ /obj/structure/mirror{ pixel_x = -32 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Te" = ( /obj/structure/barricade/metal/wired, /obj/structure/machinery/m56d_hmg/mg_turret, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Th" = ( /obj/item/lightstick/red/planted, @@ -11818,10 +9617,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/four_north) "Tk" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Tl" = ( /obj/effect/landmark/start/whiskey/leader, @@ -11830,10 +9626,7 @@ "Tm" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Tn" = ( /obj/structure/platform{ @@ -11854,10 +9647,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Tr" = ( /obj/item/stool, @@ -11865,10 +9655,7 @@ /area/whiskey_outpost/outside/lane/two_south) "Ts" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south/far) "Tt" = ( /obj/structure/sign/safety/one, @@ -11882,10 +9669,7 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/two_south) "Tw" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Tz" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -11898,24 +9682,16 @@ /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/hypospray, /obj/item/reagent_container/hypospray, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "TC" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/southeast, /area/whiskey_outpost/inside/hospital/triage) "TD" = ( /obj/item/weapon/sword/machete, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "TE" = ( /obj/structure/disposalpipe/segment, @@ -11934,10 +9710,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "TL" = ( /turf/open/gm/dirtgrassborder/south, @@ -11957,9 +9730,7 @@ pixel_y = -2; req_one_access_txt = "2;21" }, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/supply) "TQ" = ( /obj/structure/largecrate/random/mini/med{ @@ -11993,10 +9764,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "TX" = ( /obj/structure/fence, @@ -12012,10 +9780,7 @@ /area/whiskey_outpost/inside/living) "TZ" = ( /obj/structure/closet/crate, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "Ua" = ( /obj/structure/flora/jungle/plantbot1, @@ -12032,9 +9797,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/outside/lane/three_north) "Uf" = ( /turf/open/gm/grass/grassbeach/east, @@ -12051,18 +9814,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "Ui" = ( /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Uk" = ( /obj/structure/disposalpipe/sortjunction{ @@ -12080,10 +9838,7 @@ /area/whiskey_outpost/outside/north) "Uo" = ( /obj/item/storage/box/explosive_mines, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_north) "Up" = ( /obj/structure/machinery/light/small{ @@ -12091,10 +9846,7 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uq" = ( /obj/structure/disposalpipe/segment, @@ -12112,20 +9864,14 @@ /area/whiskey_outpost/outside/lane/three_north) "Ut" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uu" = ( /obj/structure/machinery/light/small{ dir = 4 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Uw" = ( /obj/structure/disposalpipe/segment, @@ -12144,19 +9890,13 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UF" = ( /turf/open/gm/coast/beachcorner2/south_east, @@ -12168,37 +9908,25 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UJ" = ( /obj/structure/machinery/m56d_hmg/mg_turret, /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "UK" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UL" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UN" = ( /obj/structure/platform{ @@ -12212,16 +9940,11 @@ /area/whiskey_outpost/outside/north/northwest) "UP" = ( /obj/item/lightstick/red/planted, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/south) "UR" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/wo, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "US" = ( /obj/structure/flora/jungle/plantbot1, @@ -12232,13 +9955,8 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) "UX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "UY" = ( /turf/open/gm/dirtgrassborder/south, @@ -12248,9 +9966,7 @@ density = 0; pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/bluefull, /area/whiskey_outpost/outside/lane/two_north) "Va" = ( /obj/structure/barricade/sandbags/wired, @@ -12273,15 +9989,10 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/whiskey_outpost/inside/caves/caverns/east) "Vh" = ( -/turf/open/jungle/impenetrable{ - icon_state = "grass_clear" - }, +/turf/open/jungle/impenetrable/grass_clear, /area/whiskey_outpost/outside/south/very_far) "Vi" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/north) "Vj" = ( /obj/structure/disposalpipe/segment{ @@ -12298,29 +10009,18 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/three_south) "Vm" = ( -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/caves/tunnel) "Vo" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/one_south) "Vp" = ( /obj/item/cell/high, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/whiskey_outpost/outside/lane/four_north) "Vq" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/whiskey_outpost/inside/cic) "Vr" = ( /obj/structure/machinery/light{ @@ -12366,9 +10066,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "Vy" = ( /obj/structure/machinery/cm_vending/clothing/synth, @@ -12383,10 +10081,7 @@ /area/whiskey_outpost/outside/lane/one_south) "VD" = ( /obj/effect/decal/cleanable/blood/writing, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/four_south) "VE" = ( /obj/effect/decal/cleanable/blood/writing{ @@ -12409,18 +10104,12 @@ /area/whiskey_outpost/outside/lane/two_south) "VI" = ( /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "VJ" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "VK" = ( /obj/structure/disposalpipe/segment, @@ -12428,10 +10117,7 @@ /area/whiskey_outpost/outside/lane/three_south) "VL" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor{ - dir = 1; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/north, /area/whiskey_outpost/inside/hospital/triage) "VM" = ( /turf/closed/wall/r_wall, @@ -12439,24 +10125,15 @@ "VN" = ( /obj/effect/landmark/start/whiskey/marine, /obj/structure/machinery/defenses/sentry/premade, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "VO" = ( /obj/structure/machinery/colony_floodlight, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/three_north) "VP" = ( /obj/item/toy/beach_ball/holoball, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "VQ" = ( /obj/structure/platform{ @@ -12479,10 +10156,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison{ - dir = 1; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/north, /area/whiskey_outpost/inside/bunker/bunker/front) "VT" = ( /obj/structure/disposalpipe/segment{ @@ -12491,9 +10165,7 @@ /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_west, /area/whiskey_outpost/outside/north) "VU" = ( -/turf/open/gm/dirt{ - icon_state = "desert1" - }, +/turf/open/gm/dirt/desert1, /area/whiskey_outpost/inside/caves/caverns/west) "VV" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, @@ -12511,51 +10183,106 @@ dir = 8; icon_state = "sandbag_0" }, -/obj/structure/barricade/sandbags/wired, -/turf/open/gm/dirt, -/area/whiskey_outpost/outside/north) -"Wc" = ( -/obj/effect/landmark/start/whiskey/doctor, -/turf/open/floor{ - dir = 6; - icon_state = "whitegreen" +/obj/structure/barricade/sandbags/wired, +/turf/open/gm/dirt, +/area/whiskey_outpost/outside/north) +"Wc" = ( +/obj/effect/landmark/start/whiskey/doctor, +/turf/open/floor/whitegreen/southeast, +/area/whiskey_outpost/inside/hospital) +"Wd" = ( +/obj/item/weapon/gun/rifle/m41a, +/turf/open/gm/river, +/area/whiskey_outpost/outside/lane/one_south) +"We" = ( +/turf/closed/wall, +/area/whiskey_outpost/outside/south/far) +"Wf" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/wo_supplies/guns/common/m41a, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/four) +"Wg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + name = "Emergency NanoMed"; + pixel_x = -30; + req_access = null + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/prison/floor_plate/southwest, +/area/whiskey_outpost/inside/bunker/pillbox/one) +"Wj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/rad, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 }, -/area/whiskey_outpost/inside/hospital) -"Wd" = ( -/obj/item/weapon/gun/rifle/m41a, -/turf/open/gm/river, -/area/whiskey_outpost/outside/lane/one_south) -"We" = ( -/turf/closed/wall, -/area/whiskey_outpost/outside/south/far) -"Wf" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/area/whiskey_outpost/inside/bunker/pillbox/four) -"Wg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - name = "Emergency NanoMed"; - pixel_x = -30; - req_access = null +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/area/whiskey_outpost/inside/bunker/pillbox/one) +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/obj/effect/landmark/wo_supplies/storage/belts/lifesaver, +/turf/open/floor/whitegreen/northeast, +/area/whiskey_outpost/inside/hospital) "Wk" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Wl" = ( /turf/closed/shuttle/dropship{ @@ -12564,10 +10291,7 @@ /area/whiskey_outpost/outside/lane/four_south) "Wm" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Wn" = ( /obj/structure/reagent_dispensers/fueltank, @@ -12576,10 +10300,7 @@ "Wo" = ( /obj/item/stack/cable_coil, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "Wp" = ( /obj/structure/sign/safety/two, @@ -12594,10 +10315,7 @@ /area/whiskey_outpost/outside/south/very_far) "Ws" = ( /obj/effect/landmark/start/whiskey/marine, -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_south) "Wu" = ( /obj/structure/disposalpipe/segment, @@ -12607,10 +10325,7 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Wv" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, @@ -12620,16 +10335,11 @@ /turf/open/gm/dirt, /area/whiskey_outpost/outside/lane/one_north) "Wz" = ( -/turf/open/gm/dirt{ - icon_state = "desert2" - }, +/turf/open/gm/dirt/desert2, /area/whiskey_outpost/inside/caves/caverns/west) "WA" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor{ - dir = 9; - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen/northwest, /area/whiskey_outpost/inside/hospital) "WC" = ( /obj/structure/disposalpipe/segment{ @@ -12652,16 +10362,11 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor{ - icon_state = "white" - }, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital/triage) "WJ" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor{ - dir = 4; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/east, /area/whiskey_outpost/outside/north) "WK" = ( /obj/structure/machinery/cm_vending/own_points/experimental_tools, @@ -12694,9 +10399,7 @@ "WR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/landmark/start/whiskey/medic, -/turf/open/floor/prison{ - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate, /area/whiskey_outpost/inside/bunker/bunker/front) "WS" = ( /obj/structure/disposalpipe/segment{ @@ -12726,10 +10429,7 @@ /area/whiskey_outpost/inside/bunker/bunker/front) "WY" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "WZ" = ( /obj/structure/disposalpipe/sortjunction{ @@ -12744,10 +10444,7 @@ /area/whiskey_outpost/outside/lane/two_south) "Xe" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Xg" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12757,20 +10454,14 @@ /obj/structure/machinery/floodlight{ light_on = 1 }, -/turf/open/floor/plating{ - dir = 10; - icon_state = "asteroidwarning" - }, +/turf/open/floor/plating/asteroidwarning/southwest, /area/whiskey_outpost/outside/north/platform) "Xj" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xk" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12778,16 +10469,10 @@ /area/whiskey_outpost/outside/lane/two_south) "Xl" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xm" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Xn" = ( /obj/structure/machinery/defenses/sentry/premade, @@ -12799,16 +10484,10 @@ }, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "Xq" = ( -/turf/open/jungle{ - bushes_spawn = 0; - icon_state = "grass_impenetrable" - }, +/turf/open/jungle/impenetrable, /area/whiskey_outpost/outside/lane/two_north) "Xr" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12833,9 +10512,7 @@ }, /obj/structure/machinery/light/small, /obj/structure/machinery/disposal, -/turf/open/floor{ - icon_state = "whitegreen" - }, +/turf/open/floor/whitegreen, /area/whiskey_outpost/inside/hospital/triage) "XB" = ( /turf/closed/shuttle/dropship{ @@ -12851,37 +10528,26 @@ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XG" = ( /obj/structure/largecrate/random/mini/ammo{ pixel_y = -5 }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/inside/bunker/bunker/front) "XH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/bed/roller, -/turf/open/floor{ - icon_state = "whitegreenfull" - }, +/turf/open/floor/whitegreenfull, /area/whiskey_outpost/inside/hospital/triage) "XK" = ( /obj/structure/disposalpipe/segment{ @@ -12890,17 +10556,11 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XM" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "XN" = ( /obj/structure/surface/table/reinforced/prison, @@ -12909,10 +10569,7 @@ /area/whiskey_outpost/outside/lane/two_south) "XO" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/supply) "XP" = ( /obj/structure/disposalpipe/segment{ @@ -12925,10 +10582,7 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XR" = ( /obj/effect/landmark/start/whiskey/marine, @@ -12940,13 +10594,8 @@ /turf/open/jungle, /area/whiskey_outpost/outside/lane/three_south) "XV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "XW" = ( /turf/closed/shuttle/dropship{ @@ -12984,28 +10633,17 @@ dir = 4; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "Yj" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Yk" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Yl" = ( /obj/structure/barricade/metal/wired, @@ -13017,10 +10655,7 @@ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Yo" = ( /turf/open/gm/coast/north, @@ -13032,10 +10667,7 @@ /turf/open/gm/coast/north, /area/whiskey_outpost/outside/lane/four_north) "Yq" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_marked" - }, +/turf/open/floor/prison/floor_marked/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Yr" = ( /obj/structure/flora/jungle/planttop1, @@ -13096,10 +10728,7 @@ dir = 1; icon_state = "warning_s" }, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "YE" = ( /obj/structure/bed/chair, @@ -13109,10 +10738,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/ammo/box/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "YH" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, @@ -13120,25 +10746,17 @@ "YI" = ( /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/guns/common/m41a, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "YK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/tool, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "YL" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/whiskey_outpost/outside/lane/four_north) "YM" = ( /obj/effect/landmark/start/whiskey/marine, @@ -13151,16 +10769,10 @@ "YP" = ( /obj/structure/surface/rack, /obj/item/tool/crowbar, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "YR" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "YT" = ( /obj/effect/landmark/start/whiskey/marine, @@ -13182,10 +10794,7 @@ req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "Zb" = ( /obj/structure/prop/dam/truck/mining, @@ -13218,10 +10827,7 @@ req_access = null }, /obj/structure/machinery/cryopod, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/three) "Zf" = ( /turf/closed/wall/strata_ice/jungle, @@ -13230,10 +10836,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 4; - icon_state = "cell_stripe" - }, +/turf/open/floor/prison/cell_stripe/east, /area/whiskey_outpost/inside/bunker/bunker/front) "Zh" = ( /obj/structure/platform{ @@ -13265,9 +10868,8 @@ /area/whiskey_outpost/outside/south) "Zm" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor{ - icon_state = "white" - }, +/obj/structure/medical_supply_link, +/turf/open/floor/white, /area/whiskey_outpost/inside/hospital) "Zn" = ( /obj/structure/flora/bush/ausbushes/reedbush, @@ -13289,17 +10891,11 @@ req_access = null; req_one_access = null }, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/four) "Zr" = ( /obj/item/storage/box/m56d_hmg, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Zs" = ( /turf/open/gm/grass/grassbeach/south, @@ -13323,10 +10919,7 @@ "Zy" = ( /obj/effect/spawner/random/tool, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/bunker/front) "Zz" = ( /obj/structure/sign/safety/north, @@ -13349,16 +10942,11 @@ density = 0; icon_state = "brokengrille" }, -/turf/open/shuttle{ - icon_state = "floor7" - }, +/turf/open/shuttle/black, /area/whiskey_outpost/outside/lane/four_north) "ZE" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "ZF" = ( /turf/open/gm/dirtgrassborder/west, @@ -13376,36 +10964,24 @@ /area/whiskey_outpost/inside/supply) "ZI" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/one) "ZJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /obj/structure/surface/rack, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZK" = ( -/turf/open/floor{ - dir = 8; - icon_state = "asteroidwarning" - }, +/turf/open/floor/asteroidwarning/west, /area/whiskey_outpost/outside/lane/four_north) "ZL" = ( /turf/open/gm/coast/beachcorner/south_west, /area/whiskey_outpost/outside/lane/four_south) "ZN" = ( /obj/effect/landmark/start/whiskey/engineer, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZP" = ( /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, @@ -13417,20 +10993,14 @@ /obj/structure/disposalpipe/segment, /obj/structure/surface/rack, /obj/effect/landmark/wo_supplies/storage/machete, -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZT" = ( /obj/item/lightstick/red/planted, /turf/open/gm/dirtgrassborder/west, /area/whiskey_outpost/outside/south/far) "ZU" = ( -/turf/open/floor/prison{ - dir = 10; - icon_state = "floor_plate" - }, +/turf/open/floor/prison/floor_plate/southwest, /area/whiskey_outpost/inside/bunker/pillbox/two) "ZV" = ( /obj/effect/decal/warning_stripes/asteroid{ @@ -13445,10 +11015,7 @@ icon_state = "warning_s" }, /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor{ - dir = 1; - icon_state = "asteroidfloor" - }, +/turf/open/floor/asteroidfloor/north, /area/whiskey_outpost/outside/north) "ZW" = ( /turf/closed/shuttle/dropship{ @@ -19568,13 +17135,13 @@ WK ak ak ak -ak -mT -mT -mT -mT -mT -mT +nK +nK +nK +nK +nK +nK +nK mT mT mT @@ -19770,13 +17337,13 @@ aC qe ih Nr -ak -mT -mT -mT -mT -mT -mT +nK +uM +rq +fG +rq +PR +nK mT mT mT @@ -19973,11 +17540,11 @@ PB PM Ed nK -nK -nK -nK -nK -nK +pk +sP +rV +sP +cB nK nK nK @@ -20177,9 +17744,9 @@ PM nK qu re -rR +rV sP -tt +hH nK vl vR @@ -20379,9 +17946,9 @@ uI nK qx ri -rf +rV sP -ty +JA nK vl rV @@ -20581,9 +18148,9 @@ mh nK qu re -rf +rV sP -tt +hH nK vl rV @@ -20783,9 +18350,9 @@ nI Kr qC rs -fG +rV sP -ty +xc nK vl rV @@ -20906,7 +18473,7 @@ uJ uJ uJ HI -mb +EP EP EP BK @@ -21310,7 +18877,7 @@ mT mT mf mf -mb +EP mf EP EP @@ -21511,10 +19078,10 @@ mT Zf Zf mf -mb +EP mf mf -mb +EP EP BK BK @@ -21712,10 +19279,10 @@ Zf Zf mf mf -mb +EP mf mf -mb +EP mf EP EP @@ -21910,13 +19477,13 @@ AA zt zt zt -mb +EP mf -mb +EP mf mf -mb -mb +EP +EP mf mf mf @@ -22114,14 +19681,14 @@ AA AA mf mf -mb +EP mf mf -mb -mb +EP +EP mf mf -mb +EP EP EP BK @@ -22315,11 +19882,11 @@ AA zt AA zt -mb -mb +EP +EP mf mf -mb +EP mf mf mf @@ -22517,14 +20084,14 @@ AA AA AA AA -mb +EP mf -mb +EP mf -mb +EP mf mf -mb +EP mf mf mf @@ -22725,14 +20292,14 @@ mf mf mf mf -mb +EP mf mf -mb +EP mf mf -mb -mb +EP +EP Zf Zf Zf @@ -22778,7 +20345,7 @@ mT mT mT mT -hP +mT mT mT dl @@ -22922,18 +20489,18 @@ AA zt AA AA -mb +EP mf -mb +EP mf -mb -mb +EP +EP mf mf -mb +EP mf mf -mb +EP mf EP BK @@ -23127,16 +20694,16 @@ AA AA mf mf -mb +EP mf mf mf mf mf mf -mb +EP mf -mb +EP EP BK BK @@ -23177,12 +20744,12 @@ mT mT mT mT -hP mT mT mT mT -hP +mT +mT mT mT qz @@ -23328,15 +20895,15 @@ AA zt AA mf -mb +EP mf mf mf mf mf mf -mb -mb +EP +EP mf EP EP @@ -23539,7 +21106,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -23607,7 +21174,7 @@ lG iV qz qz -ne +kh kj oW OX @@ -23733,7 +21300,7 @@ AA zt AA mf -mb +EP mf mf mf @@ -23935,13 +21502,13 @@ AA zt zt AA -mb +EP mf mf mf mf mf -mb +EP mf EP BK @@ -24137,12 +21704,12 @@ AA AA AA AA -mb -mb -mb +EP +EP +EP mf mf -mb +EP mf mf EP @@ -24346,7 +21913,7 @@ Yr FI mf mf -mb +EP EP BK BK @@ -24548,7 +22115,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -24750,7 +22317,7 @@ mf mf mf mf -mb +EP EP BK BK @@ -24947,7 +22514,7 @@ zt AA zt Zf -mb +EP mf mf mf @@ -25154,7 +22721,7 @@ mf mf mf AI -mb +EP EP BK BK @@ -25352,11 +22919,11 @@ Zf Zf AA zt -mb +EP mf -mb -QP -mb +EP +Tz +EP EP BK BK @@ -25616,7 +23183,7 @@ qz qz dQ fp -ht +JJ aV qz qz @@ -25757,8 +23324,8 @@ AA AA AA AA -mb -mb +EP +EP AI mf Zf @@ -25960,7 +23527,7 @@ AA zt AA zt -mb +EP AI mf Zf @@ -26162,8 +23729,8 @@ Zf AA AA zt -mb -QP +EP +Tz mf mf Zf @@ -26220,8 +23787,8 @@ bG cb pq qz -fk -gX +Wj +Ay hD im iO @@ -26366,8 +23933,8 @@ Zf Zf AA AI -mb -mb +EP +EP mf mf Zf @@ -26568,7 +24135,7 @@ Zf Zf AA AI -mb +EP mf mf mf @@ -26770,10 +24337,10 @@ Zf Zf Zf es -mb +EP mf -mb -mb +EP +EP mf Zf Zf @@ -26972,12 +24539,12 @@ Zf AA zt es -mb -mb +EP +EP mf -mb +EP mf -mb +EP mf Zf Zf @@ -27175,11 +24742,11 @@ AA AA es AA -mb +EP mf mf -mb -mb +EP +EP mf Zf Zf @@ -29596,7 +27163,7 @@ zt fQ dv zt -mb +EP mf mf mf @@ -30000,7 +27567,7 @@ nE Ts nE Bv -xy +Nu Bv Bv Bv @@ -30201,7 +27768,7 @@ zt AA zt zt -mb +EP mf mf mf @@ -30604,8 +28171,8 @@ AA zt zt AA -mb -mb +EP +EP mf mf mf @@ -30808,7 +28375,7 @@ zt mf mf mf -mb +EP mf mf EP @@ -31008,8 +28575,8 @@ AA AA AA mf -mb -mb +EP +EP mf mf EP @@ -31209,10 +28776,10 @@ AA zt AA mf -mb +EP mf mf -mb +EP mf EP BK @@ -31612,11 +29179,11 @@ AA zt AA mf -mb +EP mf -mb -mb -mb +EP +EP +EP EP EP BK @@ -31817,7 +29384,7 @@ mf mf mf mf -mb +EP mf EP BK @@ -32015,9 +29582,9 @@ AA zt AA mf -mb +EP mf -mb +EP mf mf mf @@ -32418,9 +29985,9 @@ mT Zf mT mf -mb +EP mf -mb +EP mf mf mf diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 61f68cb840..8b30336d1f 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -1,183 +1,92 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"ab" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/item/toy/plush/therapy/green{ - desc = "He seems lonely..."; - layer = 3.6; - name = "Polkovnik Obnimashkin"; - pixel_x = 1; - pixel_y = 26 - }, -/obj/item/clothing/head/uppcap/ushanka{ - layer = 3.6; - pixel_x = 1; - pixel_y = 30 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"ae" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"af" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"ag" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"ai" = ( -/obj/structure/ladder{ - height = 1; - id = "eng1" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"an" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +"ao" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer/underextinguisher, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"au" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"aB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"as" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"aL" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"az" = ( -/obj/structure/machinery/cryopod{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"aE" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"aF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "chapaev_engi" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"aS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 2" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"bc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"aN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"aO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"aQ" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"aR" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) -"bg" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"bb" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"bi" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/largecrate, -/obj/item/storage/fancy/cigar{ - pixel_y = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"bm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/golden_arrow/supply) -"bt" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"bB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/strata{ - icon_state = "floor2" + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) +"bD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"bE" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"bF" = ( +/obj/effect/landmark/start/marine/leader/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "bH" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -185,80 +94,67 @@ }, /turf/open/space/basic, /area/golden_arrow/hangar) -"bJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"bK" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) +"bM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) "bN" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"bR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"bU" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"cc" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"ce" = ( +"bO" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"bQ" = ( +/obj/structure/bed/chair/comfy/alpha{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"cg" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"cv" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"bS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Cleaning Supplies"; + req_one_access = null }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"bW" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" }, -/turf/open/floor/strata{ +/obj/item/clothing/shoes/marine/upp, +/obj/item/device/radio/headset/distress/UPP, +/obj/item/clothing/under/marine/veteran/UPP/medic, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"bX" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"bZ" = ( +/obj/structure/sink{ dir = 4; - icon_state = "floor3" + pixel_x = 11 }, -/area/golden_arrow/briefing) +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"cc" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) "cJ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/synthcloset) @@ -272,143 +168,81 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"cQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"cM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/briefing) +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"cO" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) "cR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) +"cS" = ( +/obj/structure/ladder{ + height = 1; + id = "eng1" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "cT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/canteen) -"cU" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"cX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"cW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"di" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - opacity = 0; - pixel_x = 17 - }, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"dn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Requisitions"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/supply) -"dx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"dA" = ( +"da" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"dh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"dl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" }, -/area/golden_arrow/briefing) -"dB" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"dq" = ( +/obj/structure/machinery/door_control{ + id = "chapaev_engi"; + pixel_y = -23 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"dF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/clothing/accessory/patch/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"dw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"dP" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;237" }, -/area/golden_arrow/platoon_sergeant) -"dH" = ( +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"dQ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"dI" = ( -/obj/effect/landmark/start/marine/medic/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"dM" = ( -/obj/structure/machinery/cryopod{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"dS" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/paper/crumpled/bloody{ + pixel_y = 6 }, -/area/golden_arrow/dorms) +/obj/item/attachable/bayonet/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "dT" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -426,152 +260,68 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"dU" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"dV" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"ef" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8; + pixel_x = 15; + pixel_y = 2 }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/synthcloset) -"ea" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) "ei" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/squad_one) -"ej" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"eo" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"es" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"ew" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/largecrate/random/barrel/red{ - layer = 4; - pixel_y = 22 +"ep" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; + name = "\improper UPP Synthetic Conformity Unit" }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"ev" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"eB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"ex" = ( +/obj/structure/machinery/cryopod{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"eD" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"eH" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +"ey" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small, +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 11; + pixel_y = 6 }, -/area/golden_arrow/cryo_cells) -"eL" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"eJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ + current_rounds = 1; + pixel_x = 7; + pixel_y = 6 }, -/area/golden_arrow/squad_one) -"eM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/ammo_magazine/handful/shotgun/heavy{ + current_rounds = 1; + pixel_y = 5 }, -/area/golden_arrow/hangar) -"eP" = ( -/obj/structure/machinery/conveyor, -/obj/structure/plasticflaps, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ + current_rounds = 1; + pixel_x = -8; + pixel_y = 5 }, -/area/golden_arrow/supply) +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "fc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -579,15 +329,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/platoon_sergeant) -"ff" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) "fh" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/briefing) +"fk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "fq" = ( /obj/effect/landmark/observer_start, /obj/effect/decal/strata_decals/catwalk/prison, @@ -596,6 +346,24 @@ }, /turf/open/floor/plating, /area/golden_arrow/briefing) +"fv" = ( +/obj/structure/machinery/conveyor{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"fx" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") + }, +/obj/structure/machinery/cm_vending/clothing/medic/upp, +/obj/item/clothing/head/uppcap{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) "fA" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -604,34 +372,31 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"fE" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - icon_state = "floor2" +"fF" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/squad_two) -"fJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"fK" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/dorms) -"fQ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"fV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) +/obj/structure/gun_rack/type71/unloaded, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "ga" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -645,147 +410,183 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"gm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"gb" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"gq" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "241" +"gd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + faction = "UPP" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"gf" = ( +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"go" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"gp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"gs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"gx" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"gU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Cleaning Supplies"; - req_one_access = null +"gB" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/squad_one) +"gG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/area/golden_arrow/briefing) -"gX" = ( -/obj/item/prop/colony/used_flare, -/obj/item/prop/colony/used_flare{ - pixel_x = 9; - pixel_y = 10 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"gH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"gQ" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -9 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -11; + pixel_y = 20 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"ha" = ( +"gW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"gY" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; name = "ship-grade camera"; network = list("Chapaev") }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/golden_arrow/platoon_sergeant) -"he" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "chapaevcargo" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"hc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"hf" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, -/area/golden_arrow/supply) -"hh" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"hi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"hp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"hw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/armband/med, +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -1; + pixel_y = 4 }, +/turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"hq" = ( -/obj/structure/bed/chair{ +"hC" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"hx" = ( -/obj/effect/landmark/start/marine/leader/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/bed/chair{ + dir = 4 }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) "hE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_sergeant) -"hH" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"hK" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"hL" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"hM" = ( +/obj/item/ammo_box/rounds/pkp{ + pixel_y = 9 }, +/obj/item/ammo_box/magazine/type71/empty, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"hS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"hV" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +"id" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"if" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book{ + name = "UPP Party Doctrine Booklet" }, -/area/golden_arrow/squad_two) -"ic" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"ih" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"ik" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Locker Room"; + req_one_access = null }, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"im" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"io" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "ip" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -793,267 +594,208 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) -"iv" = ( +"iy" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"iw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"iJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"iO" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/cryo_cells) +"iP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_y = 12 }, -/obj/effect/landmark/start/marine/smartgunner/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/toy/deck{ + pixel_x = 9; + pixel_y = -6 }, -/area/golden_arrow/cryo_cells) -"iz" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/tool/wrench{ + pixel_y = 25 }, -/area/golden_arrow/hangar) -"iB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Locker Room"; - req_one_access = null +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"iR" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"iT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"iV" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"ja" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/golden_arrow/cryo_cells) -"iD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"jd" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/engineering) -"iF" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"je" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 5 }, -/area/golden_arrow/briefing) -"iK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -2; pixel_y = 1 }, -/obj/structure/machinery/cryopod, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"jB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"iO" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/cryo_cells) -"iW" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"jG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/engineering) +"jL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 5 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"jQ" = ( +/obj/structure/machinery/light{ dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"iZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"jg" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"jp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" + invisibility = 101; + unacidable = 1; + unslashable = 1 }, +/obj/structure/bed/chair, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"jr" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dorms"; - req_one_access = null - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"jG" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/engineering) -"jI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/minigun{ - desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; - name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"jU" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"jR" = ( -/obj/structure/largecrate{ - pixel_x = 6 - }, -/obj/structure/largecrate{ - layer = 3.1; - pixel_x = 15; - pixel_y = 18 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"jS" = ( -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"jX" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 +"jW" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"jY" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"jZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"kh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - icon_state = "floor2" +"ke" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"kj" = ( -/obj/item/clothing/shoes/slippers_worn{ - pixel_y = 16 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"kl" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/prep_hallway) -"kn" = ( +"kp" = ( /obj/structure/prop{ desc = "A sturdy metal ladder that leads to lower deck of Chapaev which houses CIC and Brig. The hatch is closed, for now."; icon_state = "ladder11"; name = "ladder" }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"kr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"ky" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"kz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Maintenance Tunnels" }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"ku" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" - }, -/obj/structure/machinery/door_control{ - id = "chapaevcargo"; - pixel_x = 32 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"kA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"kK" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"kN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"kS" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"kw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kU" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"lb" = ( +/obj/structure/platform/strata/metal{ + dir = 1; + pixel_y = 10 }, -/area/golden_arrow/cryo_cells) -"kW" = ( -/obj/item/stool, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"le" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"ll" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + opacity = 0; + pixel_x = 17 }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "lo" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -1061,6 +803,17 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) +"lq" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;238" + }, +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "lr" = ( /obj/structure/bed/bedroll{ pixel_x = -33; @@ -1078,267 +831,156 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"lu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 +"lw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/briefing) -"lE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" }, -/area/golden_arrow/platoon_sergeant) -"lN" = ( -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"lB" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"lC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"lP" = ( +"lH" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ - current_rounds = 1; - pixel_x = 7; - pixel_y = 6 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Akademia Nauk Remote Control Console"; + shuttleId = "dropship_upp" }, -/obj/item/ammo_magazine/handful/shotgun/heavy{ - current_rounds = 1; - pixel_y = 5 +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"lJ" = ( +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"lL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 }, -/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ - current_rounds = 1; - pixel_x = -8; - pixel_y = 5 +/obj/item/clothing/head/uppcap/beret{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/clothing/accessory/armband{ + pixel_x = 6 }, -/area/golden_arrow/squad_two) -"me" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/tool/screwdriver{ + pixel_x = -9; + pixel_y = 8 }, -/area/golden_arrow/squad_one) -"mh" = ( -/obj/item/newspaper{ - desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; - pixel_x = -15; - pixel_y = 34 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"lO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; + name = "\improper MinZdrav Blood Dispenser"; + req_access = list(); + vendor_theme = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"ma" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 2" }, -/area/golden_arrow/platoon_commander_rooms) -"mj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"mn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join/upp, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"mm" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"mt" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"mM" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Canteen"; + req_one_access = null }, -/area/golden_arrow/prep_hallway) -"mu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"my" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/ushanka/civi{ - pixel_y = 6 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"mB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"mO" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/prep_hallway) -"mN" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 - }, -/obj/structure/largecrate{ - fill_from_loc = 0; - layer = 3.1; - pixel_x = -1; - pixel_y = 38 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 2.9; - name = "Commando Huggs"; - pixel_y = 8; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 3.0; - pixel_x = -1; - pixel_y = 15 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"mT" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" + name = "\improper Other Sections" }, -/area/golden_arrow/squad_one) +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) "mV" = ( /turf/open/space/basic, /area/space) -"mY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"nb" = ( -/obj/structure/machinery/conveyor, -/obj/structure/pipes/standard/cap/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"nc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"mW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_y = -4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 13 }, -/area/golden_arrow/briefing) -"nl" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"na" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Infirmary"; - req_one_access = null + name = "\improper Squad Two Armoury"; + req_one_access = null; + req_one_access_txt = "231;240;238" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"nm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"np" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"nq" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"ns" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/dorms) -"nv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 8 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"nk" = ( +/turf/open/floor/strata/floor3/east, /area/golden_arrow/medical) -"nD" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"nE" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"nt" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"nx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/golden_arrow/engineering) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) "nF" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light{ @@ -1358,104 +1000,131 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"nH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/reagent_container/pill/cyanide{ - icon_state = "pill5"; - name = "cyanide pill"; - pixel_x = -8; - pixel_y = 1 +"nG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Sergeants Room"; + req_one_access = null; + req_one_access_txt = "240;244" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/platoon_commander_rooms) -"nI" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"nL" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"nO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -10; + pixel_y = -7 }, -/area/golden_arrow/canteen) -"nS" = ( -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -1; + pixel_y = 2 }, -/obj/item/storage/toolbox/mechanical/green{ +/obj/item/reagent_container/food/snacks/upp{ pixel_x = -7; - pixel_y = -1 + pixel_y = -2 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"nM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/engineering) -"nY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Engineering"; - req_one_access = null +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"nP" = ( +/obj/structure/largecrate{ + fill_from_loc = 0 }, -/area/golden_arrow/engineering) -"ob" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine{ - name = "\improper UPP Military Fax Machine"; - network = "UPP Encrypted Network"; - target_department = "UPP High Command" +/obj/item/storage/backpack/marine/ammo_rack{ + desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; + name = "\improper makeshift ammo rack"; + pixel_y = 12 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"oc" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "od" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/squad_two) -"oi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"oe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/golden_arrow/dorms) -"or" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/squad_two) +"on" = ( +/obj/structure/largecrate{ + fill_from_loc = 0 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/obj/structure/largecrate{ + fill_from_loc = 0; + layer = 3.1; + pixel_x = -1; + pixel_y = 38 }, -/area/golden_arrow/medical) +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 2.9; + name = "Commando Huggs"; + pixel_y = 8; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 3.0; + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"oo" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "os" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/platoon_commander_rooms) +"ox" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "oB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"oH" = ( -/turf/open/floor/strata{ - icon_state = "floor2" +"oG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 }, -/area/golden_arrow/dorms) +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/trash/semki, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"oL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"oV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "oX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -1464,148 +1133,159 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"oZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"oY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"pa" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Private Briefing Room"; - req_one_access = null; - req_one_access_txt = "240;244;241" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"pd" = ( +/obj/structure/closet/secure_closet{ + name = "platoon sergeant locker"; + req_one_access = list(240) }, -/area/golden_arrow/briefing) +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "ph" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/canteen) -"pi" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"pk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"pl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"pm" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"ps" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"pz" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/golden_arrow/cryo_cells) -"pt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"pw" = ( +"pJ" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"pL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/area/golden_arrow/squad_two) -"pH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 12 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"pM" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/dorms) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"pN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) "pQ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/space) -"pR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +"pU" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"qo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dorms"; + req_one_access = null }, -/obj/item/clothing/head/uppcap/beret{ - pixel_x = -6; - pixel_y = 8 +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"qq" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" }, -/obj/item/clothing/accessory/armband{ - pixel_x = 6 +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"qy" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/item/tool/screwdriver{ - pixel_x = -9; - pixel_y = 8 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"qA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/filingcabinet{ + pixel_x = -8 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"pS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/canteen) -"pX" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"qa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qG" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"qH" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) -"qc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = 11; - pixel_y = 12 - }, -/obj/item/prop/magazine/book/theartofwar, -/turf/open/floor/strata{ - icon_state = "floor2" +"qS" = ( +/obj/structure/largecrate{ + pixel_x = -7 }, -/area/golden_arrow/platoon_commander_rooms) -"qf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/largecrate{ + pixel_x = -18; + pixel_y = 18 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"rd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "floor3" + id = "chapaevcargo" }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"qm" = ( +"ri" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ dir = 1; name = "\improper Platoon Commander's Office"; @@ -1613,1213 +1293,1216 @@ req_one_access_txt = "240;241" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) -"qn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"ro" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Engineering"; + req_one_access = null }, -/area/golden_arrow/medical) -"qF" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"rt" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"qK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"rw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/area/golden_arrow/canteen) -"qO" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"rB" = ( +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 }, -/area/golden_arrow/medical) -"qP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/megaphone, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 }, -/area/golden_arrow/briefing) -"qU" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"rF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/golden_arrow/hangar) -"qZ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"rH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"rM" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"rU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/gun_rack/type71/unloaded, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"si" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/supply) -"rl" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"sl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"sp" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"sF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"sH" = ( +/obj/effect/landmark/start/bridge/upp, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_commander_rooms) -"rp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/strata{ +"sL" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"ta" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"tf" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "floor3" + pixel_x = -2; + pixel_y = 4 }, -/area/golden_arrow/cryo_cells) -"rq" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/bed{ + can_buckle = 0 }, -/area/golden_arrow/hangar) -"ru" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/area/golden_arrow/cryo_cells) -"rv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; - pixel_y = 8 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"th" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"ti" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "chapaev_engi" }, -/area/golden_arrow/squad_one) -"rE" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"tp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"tE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/smartgunner/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"tL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"tM" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"tQ" = ( +/obj/item/tool/mop{ + pixel_x = 17; + pixel_y = -2 + }, +/obj/item/paper{ + icon_state = "paper_words"; + info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; + name = "scribbled note"; + pixel_y = 22 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"tW" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"tZ" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/platoon_commander_rooms) +"ub" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/largecrate/random/barrel/red{ + layer = 4; + pixel_y = 22 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"uo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"us" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Maintenance Access"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"rL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"ut" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"uD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/briefing) -"rQ" = ( -/obj/structure/machinery/computer/overwatch/almayer{ - density = 1; - faction = "UPP" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 7; - pixel_y = 17 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/platoon_commander_rooms) -"rV" = ( /obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Corpsman" + has_cryo_gear = 0 }, /obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, -/obj/item/clothing/under/marine/veteran/UPP/medic, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"so" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"uH" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; + dir = 4; icon_state = "p_stair_sn_full_cap"; layer = 2.5 }, /obj/structure/platform/strata/metal{ - dir = 4 + dir = 8 }, /obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"sp" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating, +"uS" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"uT" = ( +/obj/effect/landmark/start/marine/medic/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"su" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/canteen) -"sy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/flask/canteen, -/obj/item/reagent_container/food/drinks/flask/canteen{ - pixel_x = -6 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"sz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"uY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/line_nexter{ + dir = 2; + icon_state = "turnstile_strata"; + layer = 4.1 }, -/area/golden_arrow/supply) -"sJ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) +"vb" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/engineering) +"vc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"vi" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"vj" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata{ +/obj/structure/reagent_dispensers/fueltank/gas/methane, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"vw" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; - icon_state = "multi_tiles" + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/prep_hallway) -"sM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ +"vB" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"vK" = ( +/obj/item/tool/soap, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; - icon_state = "floor3" + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/briefing) -"sX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_y = -4 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"vL" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 13 +/obj/item/tool/wirecutters{ + pixel_y = -6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/device/multitool{ + pixel_x = -10 }, -/area/golden_arrow/platoon_sergeant) -"tb" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"vN" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/supply) +"vR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"vT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 }, +/obj/item/clothing/accessory/patch/upp, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"tj" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - opacity = 0; - pixel_x = 17 +"vZ" = ( +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"wf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"wk" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/space) +"wl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"wm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"wn" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"wp" = ( +/obj/structure/largecrate{ + pixel_x = -7 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"wq" = ( +/turf/open/floor/plating, /area/golden_arrow/hangar) -"tk" = ( +"ww" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/squad_one) +"wy" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"wE" = ( +/obj/structure/machinery/floodlight/landing/floor, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; + dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"wI" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"wP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/golden_arrow/briefing) -"tn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/armband/med, -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -1; - pixel_y = 4 +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"wV" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/synthcloset) +"wW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"xa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/medical) -"tq" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"xe" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/late_join/alpha, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"xf" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"xu" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"xw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/pistol/np92, +/obj/item/ammo_magazine/pistol/np92{ + pixel_x = 4 + }, +/obj/item/weapon/gun/pistol/np92, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"xy" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 11; + pixel_y = 16 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"xB" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ desc = "USCM Food Vendor, containing standard military Prepared Meals. It was gifted to Chapaev by Marines of 1st Platoon, Sun Riders as a sign of good will. They did not complain receiving a crate of vodka in return." }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"ts" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"xC" = ( +/obj/structure/machinery/computer/overwatch/almayer{ + density = 1; + faction = "UPP" }, -/area/golden_arrow/briefing) -"tx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/clothing/glasses/hud/health{ + pixel_x = 7; + pixel_y = 17 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"xF" = ( +/obj/structure/machinery/light{ dir = 4; - icon_state = "floor3" + invisibility = 101 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"tF" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 +"xH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"xM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 }, -/area/golden_arrow/medical) -"tG" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/platform/strata/metal{ + dir = 4 }, -/area/golden_arrow/platoon_sergeant) -"tH" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"xQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"xR" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"xZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/squad_one) +"ya" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -8; + pixel_y = -1 }, -/area/golden_arrow/dorms) -"tP" = ( -/obj/structure/largecrate/random/barrel/blue{ - pixel_x = -9 +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 2 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"yc" = ( /obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -11; + pixel_x = -23; pixel_y = 20 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -31; + pixel_y = 10 }, +/turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"tR" = ( -/obj/structure/barricade/handrail/strata{ +"yj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/reagent_dispensers/fueltank/gas/methane, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"tT" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/golden_arrow/platoon_commander_rooms) -"tV" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/filingcabinet{ - pixel_x = -8 +/obj/effect/landmark/start/marine/tl/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"yr" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"yx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"yE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/golden_arrow/platoon_sergeant) -"tX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"yH" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/hangar) +"yI" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"yJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"tY" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"yM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/canteen) -"tZ" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/platoon_commander_rooms) -"ua" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;237" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"yN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"yR" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"yZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/golden_arrow/squad_one) -"uf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; + pixel_y = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"zk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"ug" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"zu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/beetsoup, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = 8; + pixel_y = 7 }, -/area/golden_arrow/engineering) -"un" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"zw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 11 }, -/area/golden_arrow/platoon_commander_rooms) -"uq" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"zD" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; + pixel_y = 8 }, -/area/golden_arrow/supply) -"ur" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"zG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/golden_arrow/supply) -"us" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"zJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Maintenance Access"; + name = "\improper Requisitions"; req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"uA" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/supply) +"zS" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 }, -/area/golden_arrow/platoon_commander_rooms) -"uE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"uQ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"uV" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"zX" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/cryo_cells) +"Ac" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" + pixel_y = 13 }, +/obj/structure/prop/invuln/pipe_water, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, /area/golden_arrow/engineering) -"vb" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/engineering) -"vf" = ( -/obj/structure/bed/chair, +"Ao" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"vh" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"vk" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"vo" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"vq" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/supply) -"vL" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/obj/item/tool/wirecutters{ - pixel_y = -6 - }, -/obj/item/device/multitool{ - pixel_x = -10 + dir = 5 }, /obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, -/area/golden_arrow/engineering) -"vN" = ( -/turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/supply) -"vQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"Ap" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"AD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/golden_arrow/platoon_sergeant) -"vS" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"AO" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; + dir = 1; name = "ship-grade camera"; network = list("Chapaev") }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"vW" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"wc" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"wq" = ( -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"ww" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/squad_one) -"wx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/medical) -"wy" = ( -/obj/structure/machinery/power/terminal{ +"AQ" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) +"AR" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"AS" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"wA" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 +/obj/structure/machinery/shower{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"Bi" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"wB" = ( -/obj/structure/machinery/light{ - dir = 8 +"Bl" = ( +/obj/structure/toilet{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/golden_arrow/canteen) -"wH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"Bm" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"BA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/item/reagent_container/pill/cyanide{ + icon_state = "pill5"; + name = "cyanide pill"; + pixel_x = -8; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"wM" = ( -/obj/item/ammo_box/rounds/pkp{ - pixel_y = 9 - }, -/obj/item/ammo_box/magazine/type71/empty, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"wO" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"BD" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/plating, /area/golden_arrow/engineering) -"wQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"BS" = ( +/obj/structure/bed{ + can_buckle = 0 }, +/obj/item/bedsheet/brown, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"BU" = ( +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/head/bearpelt, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"wV" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/synthcloset) -"xe" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/late_join/alpha, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"xh" = ( +"BW" = ( /obj/structure/platform/strata/metal{ dir = 1; pixel_y = 10 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"xi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"xv" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 - }, -/obj/item/storage/backpack/marine/ammo_rack{ - desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; - name = "\improper makeshift ammo rack"; - pixel_y = 12 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"xz" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"xA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"Ca" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 5" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Cb" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"xD" = ( -/obj/structure/bed/chair/comfy/alpha{ +"Cc" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Cm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"xK" = ( -/obj/structure/foamed_metal, -/obj/structure/foamed_metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/space) -"xU" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Sergeants Room"; - req_one_access = null; - req_one_access_txt = "240;244" +"Cr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Cw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"xX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"CH" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"xZ" = ( +"CJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/squad_one) -"yc" = ( -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -23; - pixel_y = 20 +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -31; - pixel_y = 10 +/turf/open/floor/plating, +/area/golden_arrow/cryo_cells) +"CK" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/medical) +"CL" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Maintenance Tunnels" }, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/hangar) -"ye" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"yj" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"yq" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"CM" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/dorms) +"CN" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Db" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/large_shrapnel/at_rocket_dud{ + drop_sensitivity = 0; + impact_sensitivity = 1; + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/machinery/line_nexter{ - dir = 2; - icon_state = "turnstile_strata"; - layer = 4.1 +/obj/item/attachable/bayonet/upp{ + pixel_x = -9; + pixel_y = -1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 13 }, -/area/golden_arrow/canteen) -"yu" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Df" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Dk" = ( /obj/structure/surface/rack, /obj/item/device/motiondetector/hacked, /obj/item/ammo_magazine/sentry/upp, /obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"yz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; - name = "\improper MinZdrav Blood Dispenser"; - req_access = list(); - vendor_theme = 3 +"Dl" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/golden_arrow/medical) -"yH" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/hangar) -"yS" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - layer = 3.1; - pixel_x = 11; - pixel_y = 16 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"Dm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Ds" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Dv" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"yY" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/weapon/gun/flamer/underextinguisher, -/obj/item/ammo_magazine/flamer_tank, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"zb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/golden_arrow/platoon_sergeant) -"zq" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Dz" = ( +/obj/item/clothing/suit/storage/snow_suit/soviet, +/obj/item/clothing/suit/gimmick/jason, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_off = "cabinetdetective_broken"; + icon_opened = "cabinetdetective_open"; + icon_state = "cabinetdetective_locked"; + job = "Platoon Commander" }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/clothing/under/marine/veteran/UPP/boiler, +/obj/item/clothing/under/marine/veteran/UPP/officer, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"DF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/golden_arrow/hangar) -"zA" = ( +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"zR" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"DW" = ( +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_commander_rooms) +"Ea" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/strata{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Ec" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Ee" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/conveyor{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"Eo" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Eq" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" + pixel_y = 13 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"zT" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ +"Es" = ( +/obj/structure/prop/invuln/lattice_prop{ dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - icon_state = "floor2" + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 }, -/area/golden_arrow/dorms) -"zU" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -19; + pixel_y = 10 }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Et" = ( +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"Ez" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/landmark/late_join/alpha, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"zX" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, +/turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"Ac" = ( +"EA" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/invuln/pipe_water, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, -/area/golden_arrow/engineering) -"Ag" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"Aj" = ( +/area/golden_arrow/canteen) +"EG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"EK" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, /obj/item/tool/pen{ pixel_x = 12 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 12 }, -/area/golden_arrow/prep_hallway) -"Ao" = ( +/obj/item/prop/magazine/book/theartofwar, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"EX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Fd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"Ar" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"Ax" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"AC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"AE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Fg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Fj" = ( +/obj/structure/ladder{ + height = 2; + id = "eng1" }, -/area/golden_arrow/hangar) -"AS" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Fm" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/shower{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"AU" = ( -/obj/structure/surface/rack, +/area/golden_arrow/prep_hallway) +"Fq" = ( /obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"AW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Bj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Fu" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/golden_arrow/platoon_commander_rooms) -"Bw" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Fx" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Sergeant's Bunk"; + name = "\improper Squad One Armoury"; req_one_access = null; - req_one_access_txt = "240" + req_one_access_txt = "231;240;237" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"Bx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"FT" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"FY" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/area/golden_arrow/platoon_commander_rooms) -"BD" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"BK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"BM" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Gc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/prep_hallway) -"Ce" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Gf" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Gp" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + opacity = 0; + pixel_x = 17 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Cf" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Gr" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/large_shrapnel/at_rocket_dud{ - drop_sensitivity = 0; - impact_sensitivity = 1; - pixel_x = -6; - pixel_y = 13 +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + faction = "UPP"; + icon_state = "shuttle"; + layer = 2.97; + minimap_type = 8; + name = "Tactical Map Display"; + pixel_x = 7 }, -/obj/item/attachable/bayonet/upp{ - pixel_x = -9; - pixel_y = -1 +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + network = list("Chapaev","Vehicle"); + pixel_x = -12 }, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 13 +/obj/structure/phone_base/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch"; + pixel_y = 30 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"GJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(241) }, -/area/golden_arrow/dorms) -"Cg" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/squad_two) -"Ck" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"GK" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; - icon_state = "floor3" + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/supply) -"Cq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"GO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -2837,1067 +2520,939 @@ }, /obj/structure/closet/secure_closet/marine_personal{ has_cryo_gear = 0; - job = "Squad Sergeant" + job = "Smartgunner" }, /obj/item/clothing/shoes/marine/upp, /obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, /obj/structure/machinery/light{ - dir = 8; + dir = 4; invisibility = 101; unacidable = 1; unslashable = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Cs" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"GP" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" }, -/area/golden_arrow/cryo_cells) -"Cx" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/door_control{ + id = "chapaevcargo"; + pixel_x = 32 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/supply) -"Cy" = ( -/obj/structure/largecrate{ - pixel_x = -7 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"GR" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"CC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = 18 +"GX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 5; - pixel_y = 18 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"Ha" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Hd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 5 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Hq" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 13 +/obj/item/stack/cable_coil{ + pixel_x = 7 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, -/area/golden_arrow/briefing) -"CF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bearmeat, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"HF" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"HM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"HQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/canteen) -"CI" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"CJ" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Id" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"CK" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/medical) -"CM" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/dorms) -"CO" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/prep_hallway) -"CU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"CW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/head/uppcap/ushanka/civi{ +/area/golden_arrow/briefing) +"Ie" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Ig" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 6; + pixel_y = 4 }, -/area/golden_arrow/engineering) -"CZ" = ( -/obj/structure/toilet{ - dir = 4 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; + pixel_y = 8 }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Im" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Io" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_commander_rooms) -"Dh" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/space) -"Dq" = ( -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Ip" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Ix" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine{ + name = "\improper UPP Military Fax Machine"; + network = "UPP Encrypted Network"; + target_department = "UPP High Command" }, -/area/golden_arrow/engineering) -"Dw" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"ID" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; - icon_state = "Gray"; - pixel_x = -14; - pixel_y = -14 +/obj/item/stack/sheet/glass{ + amount = 50 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 }, -/area/golden_arrow/platoon_commander_rooms) -"DC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = 5 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -2; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"IE" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, +/turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"DE" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 +"IF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed/chair, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"IH" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"DG" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"II" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Canteen"; + req_one_access = null }, -/area/golden_arrow/medical) -"DH" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"IP" = ( +/obj/item/stool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/golden_arrow/medical) -"DK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"IS" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/dorms) +"IW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Canteen"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"DX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"IX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"IZ" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + name = "\improper UnTech Synthetic Auxiliary Gear Rack"; + pixel_y = 32 }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/start/marine/tl, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"Jd" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 13; + pixel_y = 10 }, -/area/golden_arrow/cryo_cells) -"Ef" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Jl" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 1 }, -/area/golden_arrow/squad_one) -"Ez" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Jn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Jt" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/late_join/alpha, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 8 }, /turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"EA" = ( +/area/golden_arrow/squad_two) +"Ju" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"JA" = ( /obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/prop/invuln/overhead_pipe, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating, -/area/golden_arrow/canteen) -"ED" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"EM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - faction = "UPP" +/area/golden_arrow/engineering) +"JD" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"JE" = ( +/obj/structure/pipes/standard/cap/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/space/basic, +/area/space) +"JF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/golden_arrow/platoon_sergeant) -"EO" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer/underextinguisher, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"JH" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 }, -/area/golden_arrow/squad_one) -"EP" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) }, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"JQ" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; - icon_state = "multi_tiles" + name = "ship-grade camera" }, -/area/golden_arrow/prep_hallway) -"EQ" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/strata{ +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"JR" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) +"Kc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"Ke" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" + pixel_y = 13 }, -/area/golden_arrow/briefing) -"EW" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Kj" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/tool/hand_labeler{ + pixel_x = 3; + pixel_y = 3 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Fb" = ( +"Kl" = ( /obj/structure/machinery/light{ dir = 8; - invisibility = 101 + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"Fl" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate, +/obj/item/storage/fancy/cigar{ + pixel_y = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Km" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"Fm" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating, -/area/golden_arrow/prep_hallway) -"Fp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Ft" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"Fv" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -9; - pixel_y = 2 +"Kn" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1; + pixel_y = 6 }, -/obj/item/trash/semki, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Kq" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, -/area/golden_arrow/platoon_sergeant) -"Fz" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Kz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"KC" = ( /obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;237" - }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata{ - icon_state = "floor2" + name = "machinegunner locker"; + req_access_txt = "243;237" }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"FB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join/upp, +"KI" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"KN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"FC" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() + dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/plating, +/area/golden_arrow/briefing) +"KV" = ( +/obj/item/newspaper{ + desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; + pixel_x = -15; + pixel_y = 34 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"KY" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"FF" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"FV" = ( +"Lb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 13; + pixel_y = 10 }, -/area/golden_arrow/platoon_sergeant) -"FY" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Lg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Ls" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"Lt" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/strata_decals/catwalk/prison{ + pixel_x = 20; + pixel_y = -1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"FZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"LB" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"LE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Gj" = ( -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"Gl" = ( +"LH" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"LR" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"LS" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"LU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"LV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"LW" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/golden_arrow/hangar) -"Gn" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"LZ" = ( /obj/structure/machinery/cm_vending/clothing/synth{ density = 0; name = "\improper UnTech Synthetic Equipment Rack"; pixel_y = 32 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/synthcloset) -"Gw" = ( -/obj/structure/machinery/power/apc/almayer, +"Mb" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/briefing) +"Mf" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"GB" = ( -/obj/structure/closet/secure_closet{ - name = "platoon sergeant locker"; - req_one_access = list(240) - }, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"GF" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"ME" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"MF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"GS" = ( -/obj/structure/machinery/light{ +"MH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"GT" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/plating, +/area/golden_arrow/squad_one) +"ML" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, /area/golden_arrow/squad_two) -"GU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"MM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/golden_arrow/engineering) -"He" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"MO" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, +/area/golden_arrow/prep_hallway) +"MQ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + opacity = 0; + pixel_x = 17 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Hf" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"MT" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/platoon_sergeant) -"Hj" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Na" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/area/golden_arrow/engineering) -"Hp" = ( -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Nc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/squad_two) -"Hq" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/stack/cable_coil{ - pixel_x = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Nj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Nl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Ht" = ( -/obj/structure/machinery/light{ +"No" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"NA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating, +/area/golden_arrow/prep_hallway) +"NB" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/obj/structure/bed/chair{ +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"NN" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; + icon_state = "Gray"; + pixel_x = -14; + pixel_y = -14 }, -/area/golden_arrow/briefing) -"HA" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"NQ" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/medical) +"NU" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/golden_arrow/squad_two) +"NV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/golden_arrow/briefing) -"HI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/cryopod{ + dir = 1 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/golden_arrow/briefing) -"HN" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"NZ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 15 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 1; + pixel_y = 6 }, -/area/golden_arrow/briefing) -"Id" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Of" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/space) +"Oi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Om" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"Ii" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +"On" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Ox" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_commander_rooms) +"Oy" = ( +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"IB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Other Sections" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"OC" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"IG" = ( -/obj/structure/ladder{ - height = 2; - id = "eng1" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"OD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/engineering) -"IS" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Jc" = ( -/obj/effect/landmark/start/bridge/upp, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"Je" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Jf" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"OG" = ( +/obj/item/prop/colony/used_flare, +/obj/item/prop/colony/used_flare{ + pixel_x = 9; + pixel_y = 10 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"Jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"OJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, /area/golden_arrow/supply) -"Jq" = ( +"OM" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"ON" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"OR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/area/golden_arrow/medical) -"Jr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"OS" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Pb" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/engineering) -"Jt" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"Pc" = ( +/obj/structure/machinery/power/apc/almayer/south, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 5 }, -/turf/open/floor/plating, -/area/golden_arrow/squad_two) -"JA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Pe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Pj" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 4; + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 }, -/turf/open/floor/plating, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Pm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"JB" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - opacity = 0; - pixel_x = 17 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"Pz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"JE" = ( -/obj/structure/pipes/standard/cap/hidden/supply{ - dir = 4 +"PA" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/space/basic, -/area/space) -"JG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/area/golden_arrow/hangar) +"PB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"PF" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/weapon/gun/flamer/underextinguisher, +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"PI" = ( +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"JN" = ( -/obj/structure/machinery/conveyor{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"PM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"JP" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"JW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Canteen"; - req_one_access = null +"PN" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"PP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"PR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera"; + network = list("Chapaev") }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"JX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 5 }, -/area/golden_arrow/prep_hallway) -"Kc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, -/area/golden_arrow/engineering) -"Ki" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"Ku" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/dorms) -"KB" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"KD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"KF" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, /area/golden_arrow/cryo_cells) -"KH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"PT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/canteen) -"KK" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"KN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/golden_arrow/briefing) -"Lf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"Li" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"Ll" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"Ln" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_y = 12 - }, -/obj/item/toy/deck{ - pixel_x = 9; - pixel_y = -6 - }, -/obj/item/tool/wrench{ - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"Lt" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/strata_decals/catwalk/prison{ - pixel_x = 20; - pixel_y = -1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"Lw" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;238" - }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"LI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"Qg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/supply) -"LJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/landmark/start/marine/smartgunner/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"LL" = ( +"Ql" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/sniper/svd/pve, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"LO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"Ma" = ( +"Qo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" }, -/area/golden_arrow/prep_hallway) -"Mb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"QB" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "241" + }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Mm" = ( +"QD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"Ms" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 10 }, -/area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/foamed_metal, -/obj/structure/foamed_metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"QN" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"QP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Infirmary"; + req_one_access = null }, -/area/golden_arrow/platoon_commander_rooms) -"MH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating, -/area/golden_arrow/squad_one) -"ML" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"QR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, -/area/golden_arrow/squad_two) -"MN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/golden_arrow/canteen) +"QT" = ( +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, -/area/golden_arrow/hangar) -"MO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Rd" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Re" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating, -/area/golden_arrow/prep_hallway) -"MR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +/area/golden_arrow/engineering) +"Rf" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 }, +/turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"MV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/machinery/cryopod{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Rt" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"MX" = ( +"RC" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"RK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -3915,159 +3470,166 @@ }, /obj/structure/closet/secure_closet/marine_personal{ has_cryo_gear = 0; - job = "Smartgunner" + job = "Squad Sergeant" }, /obj/item/clothing/shoes/marine/upp, /obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"MZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"RM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/platoon_sergeant) -"Nd" = ( -/obj/item/tool/soap, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/landmark/start/marine/smartgunner/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"RS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Sa" = ( +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/space) +"Sk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Nz" = ( -/obj/structure/machinery/light{ - dir = 8 +"Sp" = ( +/obj/item/clothing/head/helmet/marine/veteran/bear{ + anchored = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/platoon_sergeant) +"St" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/dorms) -"NA" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Sx" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"NE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"NF" = ( -/obj/item/tool/mop{ - pixel_x = 17; - pixel_y = -2 - }, -/obj/item/paper{ - icon_state = "paper_words"; - info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; - name = "scribbled note"; - pixel_y = 22 +"SE" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"SM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + id = "Delta_1"; + name = "\improper Bathroom" }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"SP" = ( +/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ + roundstart_template = /datum/map_template/shuttle/upp }, -/area/golden_arrow/briefing) -"NI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null +/turf/open/floor/plating, +/area/golden_arrow/hangar) +"SV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -6; + pixel_y = 11 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = 2; + pixel_y = 11 }, -/area/golden_arrow/canteen) -"NL" = ( -/obj/structure/closet, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -3; + pixel_y = 24 }, -/area/golden_arrow/dorms) -"NQ" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/medical) -"NU" = ( -/turf/closed/wall/strata_outpost/reinforced, +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) -"Of" = ( +"Te" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Tf" = ( /turf/closed/wall/strata_outpost/reinforced, -/area/space) -"Og" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad One Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;237" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/area/golden_arrow/platoon_sergeant) +"Tj" = ( +/turf/open/floor/strata/floor2, /area/golden_arrow/squad_one) -"Oo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" +"Tl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 7; + pixel_y = 11 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -7; + pixel_y = 18 }, -/area/golden_arrow/medical) -"Os" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters"; - req_access = list(241) +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 5; + pixel_y = 18 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -6; + pixel_y = 10 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 5 }, -/area/golden_arrow/platoon_commander_rooms) -"Ov" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - name = "\improper UnTech Synthetic Auxiliary Gear Rack"; - pixel_y = 32 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 13 }, -/obj/item/stool, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 }, -/area/golden_arrow/synthcloset) -"OB" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Tn" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; - icon_state = "floor3" + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/platoon_sergeant) -"OE" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Tr" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/supply) +"TC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"TE" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; name = "ship-grade camera"; @@ -4076,1210 +3638,412 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"OJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"OP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"OX" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) -"Ph" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad Two Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;238" - }, +"TI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" + dir = 4 }, -/area/golden_arrow/squad_two) -"Pl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"TR" = ( +/obj/structure/sink{ dir = 4; - icon_state = "floor3" + pixel_x = 11 }, -/area/golden_arrow/engineering) -"PA" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/space/basic, -/area/golden_arrow/hangar) -"PE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"TW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 15 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"PJ" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Ub" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/minigun{ + desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; + name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; + pixel_x = 6; + pixel_y = 8 }, -/area/golden_arrow/briefing) -"PL" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 +/obj/item/reagent_container/food/drinks/dry_ramen, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Uf" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"Um" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = 2; + pixel_y = 18 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/book/codebook/upp, +/obj/item/prop/magazine/book{ + desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; + name = "Communist Manifesto"; + pixel_y = 35 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"PQ" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/hangar) -"PR" = ( +"UP" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/bed/chair/office/light, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"Vb" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Vc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating, -/area/golden_arrow/cryo_cells) -"Qd" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 10 }, -/area/golden_arrow/dorms) -"Qj" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"Qr" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"Qv" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/briefing) -"Qx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Vh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"QF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"QJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/dorms) -"QK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper/crumpled/bloody{ - pixel_y = 6 - }, -/obj/item/attachable/bayonet/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_one) -"QR" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/canteen) -"QX" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; - name = "\improper UPP Synthetic Conformity Unit" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"Re" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating, +"Vr" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Vx" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"Rm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"Vy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"Rs" = ( -/obj/structure/toilet{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"VF" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/light/small, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 11; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/dorms) -"Ru" = ( +"VJ" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/pistol/np92, -/obj/item/ammo_magazine/pistol/np92{ - pixel_x = 4 - }, -/obj/item/weapon/gun/pistol/np92, +/obj/item/device/megaphone, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"VK" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"Rv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"Rz" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"RA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/medical) -"RI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book{ - name = "UPP Party Doctrine Booklet" - }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"RJ" = ( -/obj/item/clothing/suit/storage/snow_suit/soviet, -/obj/item/clothing/suit/gimmick/jason, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_off = "cabinetdetective_broken"; - icon_opened = "cabinetdetective_open"; - icon_state = "cabinetdetective_locked"; - job = "Platoon Commander" - }, -/obj/item/clothing/under/marine/veteran/UPP/boiler, -/obj/item/clothing/under/marine/veteran/UPP/officer, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"RN" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/supply) -"RP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"RU" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -19; - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"Sc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"Sj" = ( -/obj/structure/machinery/door_control{ - id = "chapaev_engi"; - pixel_y = -23 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/engineering) -"Sp" = ( -/obj/item/clothing/head/helmet/marine/veteran/bear{ - anchored = 1 - }, -/turf/closed/wall/strata_outpost/reinforced/hull, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"Sv" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"Sx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/golden_arrow/prep_hallway) -"Sz" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/golden_arrow/medical) -"SB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 13; - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"SF" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 8; - pixel_x = 15; - pixel_y = 2 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"SI" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"VR" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/golden_arrow/synthcloset) -"SO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/item/toy/plush/therapy/green{ + desc = "He seems lonely..."; + layer = 3.6; + name = "Polkovnik Obnimashkin"; + pixel_x = 1; + pixel_y = 26 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/item/clothing/head/uppcap/ushanka{ + layer = 3.6; + pixel_x = 1; + pixel_y = 30 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"SP" = ( -/obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ - roundstart_template = /datum/map_template/shuttle/upp - }, -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"SQ" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/briefing) -"SU" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_x = 2; - pixel_y = 18 - }, -/obj/item/book/codebook/upp, -/obj/item/prop/magazine/book{ - desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; - name = "Communist Manifesto"; - pixel_y = 35 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"Tb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Tf" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"Tr" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/supply) -"Tw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -6; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -3; - pixel_y = 24 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"TB" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_commander_rooms) -"TH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"TJ" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/synthcloset) -"TQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/dorms) -"Ug" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/engineering) -"Ul" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Un" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"Up" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Uu" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/conveyor{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"Uv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"Ux" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"Uy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"UM" = ( -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"UO" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"UP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/bed/chair/office/light, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"UV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Akademia Nauk Remote Control Console"; - shuttleId = "dropship_upp" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"UY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"UZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"Vq" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"VE" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"VH" = ( -/obj/structure/platform/strata/metal{ - dir = 1; - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"VL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"VZ" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Wf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/briefing) -"Wk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/prep_hallway) -"Wp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/beetsoup, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/canteen) -"Wt" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"Wv" = ( -/obj/item/stool, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"WI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/invuln/overhead_pipe, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"WP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Sergeant" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"WR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - faction = "UPP"; - icon_state = "shuttle"; - layer = 2.97; - minimap_type = 8; - name = "Tactical Map Display"; - pixel_x = 7 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - network = list("Chapaev","Vehicle"); - pixel_x = -12 - }, -/obj/structure/phone_base/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch"; - pixel_y = 30 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/platoon_commander_rooms) -"WU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/golden_arrow/platoon_sergeant) -"WV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/platoon_sergeant) -"WW" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/machinery/cm_vending/clothing/medic/upp, -/obj/item/clothing/head/uppcap{ - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/medical) -"WY" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/squad_two) -"WZ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"Xb" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/supply) -"Xe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/cryo_cells) -"Xf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"Xh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/prep_hallway) -"Xl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/briefing) -"Xp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -10; - pixel_y = -7 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = -2 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"Xq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/medical) -"Xt" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/dorms) -"XL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/squad_two) -"XO" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") +"VT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Private Briefing Room"; + req_one_access = null; + req_one_access_txt = "240;244;241" }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"XY" = ( +"Wb" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; + dir = 1; name = "ship-grade camera"; network = list("Chapaev") }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Wf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating, /area/golden_arrow/briefing) -"Yh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bathroom" +"Wg" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Ww" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"Wy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/platoon_commander_rooms) -"Yk" = ( -/obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;238" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"WI" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/invuln/overhead_pipe, +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"WX" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"WZ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"Xv" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/golden_arrow/squad_two) -"Yo" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; - pixel_y = 8 +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"XC" = ( +/obj/item/clothing/shoes/slippers_worn{ + pixel_y = 16 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Yq" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/golden_arrow/cryo_cells) -"YA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"XE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"XJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"XM" = ( +/obj/structure/largecrate{ + pixel_x = 6 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 15; + pixel_y = 18 }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"YL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"XR" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") }, -/area/golden_arrow/medical) -"YM" = ( -/obj/item/trash/plate, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"XU" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Yg" = ( /obj/item/trash/ceramic_plate{ - pixel_x = 6; + pixel_x = -6; pixel_y = 19 }, /obj/item/trash/ceramic_plate{ - pixel_x = 6; + pixel_x = -6; pixel_y = 21 }, /obj/item/trash/ceramic_plate{ - pixel_x = 5; + pixel_x = -5; pixel_y = 23 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -8; + pixel_y = -1 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"YW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/golden_arrow/briefing) -"YZ" = ( -/obj/structure/largecrate{ - pixel_x = -7 - }, -/obj/structure/largecrate{ - pixel_x = -18; - pixel_y = 18 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/golden_arrow/hangar) -"Zb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; +"Yr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -6; pixel_y = 13 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/reagent_container/food/drinks/flask/canteen, +/obj/item/reagent_container/food/drinks/flask/canteen{ + pixel_x = -6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"Ys" = ( +/obj/structure/closet/secure_closet{ + name = "machinegunner locker"; + req_access_txt = "243;238" }, -/area/golden_arrow/cryo_cells) -"Zm" = ( +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Yw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/engineering) -"Zp" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/effect/landmark/start/marine/tl/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/start/marine/tl, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"YB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"YE" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 }, -/area/golden_arrow/platoon_sergeant) -"Zv" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"YQ" = ( +/obj/structure/machinery/conveyor, +/obj/structure/pipes/standard/cap/hidden/supply{ dir = 8 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"YV" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/area/golden_arrow/canteen) -"ZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 9 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Za" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"ZM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 3; - pixel_y = 3 +"Zn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/dorms) -"ZN" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 5" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/engineering) -"ZT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access = null; - req_one_access_txt = "240" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Sergeant" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Zr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"ZD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bearmeat, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"ZR" = ( +/obj/structure/machinery/cryopod{ + dir = 1 }, -/area/golden_arrow/platoon_sergeant) -"ZU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"ZY" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) (1,1,1) = {" mV @@ -11596,8 +10360,8 @@ mV mV hE Tf -tb -GB +nt +pd hE hE hE @@ -11747,11 +10511,11 @@ hE hE Sp hE -SU -tG +Um +th WZ -tG -sX +th +mW hE mV mV @@ -11896,14 +10660,14 @@ mV mV hE hE -UZ -FV -ZT -FV +jW +Oi +Qo +Oi fc -lE +Cr UP -JG +Df hE mV mV @@ -12047,15 +10811,15 @@ mV mV mV hE -Fv -tG -dF +oG +th +vT Tf -OB -WV -pR -ha -tV +rM +aB +lL +Rd +qA hE mV mV @@ -12200,11 +10964,11 @@ ei ei ei ww -jX +Xv Tf Tf Tf -Bw +fK Tf NU NU @@ -12348,21 +11112,21 @@ mV mV ei ei -eL -me -eL +hL +jU +hL ww ww Tf -vW -vW -Rm -vW +PI +PI +GX +PI NU NU -xz -Cg -xz +Eo +aR +Eo od od mV @@ -12499,23 +11263,23 @@ tZ tZ tZ ei -QK -dU -dU -dU -rv +dQ +Tj +Tj +Tj +zd ww -vW -vW -PL -Rm -Zp +PI +PI +tM +GX +AO NU -Tw -Hp -Hp -Hp -bR +SV +Im +Im +Im +tL IS IS IS @@ -12636,9 +11400,9 @@ oB oB oB oB -UO -Fb -He +ta +ox +FT oB oB tZ @@ -12648,32 +11412,32 @@ tZ tZ tZ tZ -nH -Qj +BA +Io ww -jI -dU +Ub +Tj xZ -dU -EO +Tj +ao ww -MZ -WU -EM -Ru -eD +LR +pL +gd +xw +ZY NU -lP -Hp +eJ +Im ML -Hp -yY +Im +PF CM -ab -zT -bt -Nz -Yo +VR +bB +tf +OD +zD IS mV mV @@ -12780,52 +11544,52 @@ mV mV oB oB -KB -KB -Gl -KB -KB -KB +aQ +aQ +xH +aQ +aQ +aQ yH -Wt -KB -Uv -KB -eM +qq +aQ +dw +aQ +EG yH -Ms -MC +DW +Ox os -CZ -mh +wI +KV os -RJ -ic -Jc +Dz +AD +sH ww -CU -dU -Ef -dU -AU +fV +Tj +gB +Tj +Zr ww -QF -hq -hq -vf -vW +gH +bb +bb +VK +PI NU -pw -Hp -XL -Hp -VE +rU +Im +oe +Im +iV CM -Cf -Qr -bt -oH -bt +Db +Fu +tf +Bm +tf IS mV mV @@ -12931,53 +11695,53 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -YA -KB -KB -KB -vk +OR +aQ +aQ +aQ +Fq yH -Ms -MC +DW +Ox os -Bx -uQ -Yh -TB -Dw -TB +xR +Jn +Ha +xf +NN +xf ww -ua -dU +KC +Tj MH -dU -yu +Tj +Dk ww -LL -vW -es -Rm -vW +Ql +PI +zG +GX +PI NU -Lw -Hp +Ys +Im Jt -Hp -GT +Im +uS CM -Ln -Qr -oH -Ku -dS +iP +Fu +Bm +VF +SE IS IS IS @@ -13083,57 +11847,57 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -tR -KB -KB -KB -KB +vj +aQ +aQ +aQ +aQ yH -Ms -MC +DW +Ox os -tT -Bj +NB +TR os -uA -zU -Ar +Dl +qG +BS ww -Fz -mT -Mm -vo -eo +dP +ih +cM +PB +Ds ww -Hf -vW -zb -vQ -sy +bE +PI +nx +jZ +Yr NU -Yk -fE -bc -hV -WY +lq +oc +HQ +LV +QN CM -Ag -ZM -bt -pH -bt +Ig +Kj +tf +xa +tf CM -Xt +Bl CM -Rs +ey IS mV mV @@ -13235,57 +11999,57 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -Wt -KB -KB -KB -eM +qq +aQ +aQ +aQ +EG yH -Ms -MC +DW +Ox os os os os -Os +GJ os os ww ww ww -Og +Fx ww ww ww Tf Tf -xU +nG Tf Tf NU NU NU -Ph +na NU NU CM CM -TQ -bt -pH -bt +Cc +tf +xa +tf CM -fJ +dl CM -fJ +dl IS mV mV @@ -13396,48 +12160,48 @@ yH yH yH yH -an -an -an +Vy +Vy +Vy yH yH yH -Ms +DW os -UV -OX -iv -Ux -OE +lH +au +vR +aL +TE os -Aj -mt +Dm +ky Fm Sx MO -Ma -Ma -Ma +XE +XE +XE MO NA MO -Ma -Ma -Wk +XE +XE +GK nF Sx MO -dx -LO -jr -OP -OP -SO -OP -QJ -oi -tH -Qd +ps +kg +qo +Pe +Pe +da +Pe +SM +oY +ja +HF IS mV mV @@ -13534,62 +12298,62 @@ mV mV oB oB -iz -Jf -Jf -Jf -Jf -iz -gX -tx -cW -cW -cW -rq -cW -cW -cW -cW -cW -np -zA +Ap +kU +kU +kU +kU +Ap +OG +Ju +iJ +iJ +iJ +wE +iJ +iJ +iJ +iJ +iJ +OM +Vh yH -Ms +DW os -WR -un -qc -RP -rl -qm -Ma -Ma -Ki -vS -bK -EP -bK -bK -sJ -bJ -bK -bK -bK -bK -Sv -bK -bK -bK -kl +Gr +Uf +EK +bm +gp +ri +XE +XE +Wy +vw +yI +WX +yI +yI +yM +kA +yI +yI +yI +yI +Pj +yI +yI +yI +XU CM -oH -bt -kj -bt +Bm +tf +XC +tf CM -ns -ns -ns +bZ +bZ +bZ IS mV JE @@ -13685,7 +12449,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -13704,18 +12468,18 @@ wq wq wq wq -MN +jB yH -Ms +DW os -rQ -OX -ob -KK -OX +xC +au +Ix +lB +au os -FF -Rv +Vr +go cT cT cT @@ -13723,28 +12487,28 @@ cT cT cT cT -JW +IW cT cT -Xh -Xh -BM -JX -mB -mB -CO +sl +sl +Jd +Wg +RS +RS +AR CM -NL -bt -EW -my +pm +tf +PN +Kq iO iO iO iO zX zX -nE +CL jG mV mV @@ -13837,7 +12601,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -13856,12 +12620,12 @@ wq wq wq wq -PQ +No fh fh fh fh -gq +QB fh fh fh @@ -13869,14 +12633,14 @@ fh fh cT cT -aE -wB -DK -Up -UM -nO -Tb -af +gG +pJ +LU +NZ +Yg +Za +Fd +ME cT iO iO @@ -13891,12 +12655,12 @@ iO iO iO iO -KF -zR -KF +io +fF +io iO iO -Fl +Cb jG mV mV @@ -13989,7 +12753,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14008,45 +12772,45 @@ wq wq wq wq -MN +jB fh -PJ -PJ -so -PJ -xD -xD -cv -PJ -gh +LH +LH +xM +LH +gb +gb +Na +LH +IH cT -tq -Zv -af -DK -Wp -Je -nO +xB +AQ +ME +LU +zu +ya +Za EA -Ul +Wb cT -BK -BK -Cq -BK -WP +uD +uD +RK +uD +Zn iO -pk +kK AS AS AS -Nd +vK iO -Yq -jS -hx -jS -KF +Tn +vZ +bF +vZ +io iO JA jG @@ -14141,7 +12905,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14160,50 +12924,50 @@ wq wq wq wq -AE -NE +yZ +jL Mb -PJ -qP -VH -xD -xD -xD -PJ -PJ +LH +VJ +lb +gb +gb +gb +LH +LH cT -tq -pS -af -af +xB +JR +ME +ME ip -ej -af +pa +ME EA -af -NI -Wv -Wv -rE -Wv -Wv -iB -Cs +ME +II +Et +Et +tW +Et +Et +ik +oo CJ CJ CJ -Cs -uf -DX -FB -MV -rp -iw +oo +Eq +Yw +mn +NV +DF +RM iO -Ug +fk jG jG -Hj +kz jG jG jG @@ -14214,9 +12978,9 @@ jG jG jG jG -wc -ea -dB +pz +ID +Vx jG jG jG @@ -14293,7 +13057,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14312,68 +13076,68 @@ wq wq wq wq -tx -EQ +Ju +LS Id -PJ -nI -xh +LH +LE +BW fq bN bN -Xl -Gw +EX +Pc cT -tq -pS -af +xB +JR +ME QR -su +PT ph -qK -Fp -jg +PP +dh +Mf cT ga cR -eB +ut cR PR iO -AC +LW iO iO iO -ce -Zb +nM +Ke xe Ez -rE +tW sp cR us Re -Pl +Pm Ac -iD +Jl yj -IG +Fj jG mV mV jG -xA -qF +On +vB vb -gx -ug -ug -pi +KY +sL +sL +JD vb -ZN -ae -kr -ae +Ca +qH +si +qH jG mV mV @@ -14445,7 +13209,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14464,47 +13228,47 @@ wq wq wq wq -KD -PE +wW +yE KN -PJ -HN -VH -bg -xD -xD -PJ -Ll +LH +TW +lb +Cw +gb +gb +LH +Ea cT -tq -pS -af -af +xB +JR +ME +ME lo -KH -af +sF +ME EA -ZH -Vq -Ft -Rz -kW -Wv -iW -iB -mj +Vc +mM +Ls +vi +IP +Et +QD +ik +Sk oX oX oX -Xf -ru -Xe -kw -iK -kw -LJ +wm +Dv +yn +zk +hp +zk +tE iO -Ug +fk vb vb Kc @@ -14514,15 +13278,15 @@ jG mV mV jG -Zm -nm +rF +wP vb -Jr -GU -iZ -ug +MF +oL +bM +sL vb -wO +CN FY Lt wy @@ -14597,7 +13361,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14616,68 +13380,68 @@ wq wq wq wq -MN +jB fh -tk -Xl -lu -dA -cU -xD -vh -PJ -Ll +gY +EX +uH +aN +YV +gb +rw +LH +Ea cT -tq -yq -af -DK -uE -CF -nO +xB +uY +ME +LU +gW +ZD +Za EA -af +ME cT -BK -BK -wH -VL -MX +uD +uD +GO +lw +Nc iO -eH +Rt CJ CJ CJ -Cs +oo iO -az -jS -dI -jS -az +ex +vZ +uT +vZ +ex iO BD vb -Dq -wO +BU +CN jG mV mV mV mV jG -ai +cS Kc -nY -ug +ro +sL Kc -nS -ug -aF -wO -wO -wO -uV +QT +sL +ti +CN +CN +CN +im jG mV mV @@ -14749,7 +13513,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14768,27 +13532,27 @@ wq wq wq wq -MN +jB fh fh fh fh -oZ +VT fh fh fh -ts -YW +yr +xQ cT cT -tY -mY -DK -AW -YM -nO -Tb -af +Ip +iy +LU +Te +rB +Za +Fd +ME cT iO iO @@ -14803,12 +13567,12 @@ iO iO iO iO -az -dM -az +ex +ZR +ex iO iO -Ug +fk vb vb WI @@ -14818,15 +13582,15 @@ mV mV mV jG -qa -wQ +IF +hc vb -Jr -ug -CW -Sj +MF +sL +yx +dq vb -wO +CN fA dT vL @@ -14901,7 +13665,7 @@ mV mV mV PA -Jf +kU wq wq wq @@ -14920,18 +13684,18 @@ wq wq wq wq -MN +jB yH -Dh +Sa fh -PJ -Ll -PJ -PJ +LH +Ea +LH +LH fh -ts -rL -ts +yr +lC +yr cT cT cT @@ -14939,49 +13703,49 @@ cT cT cT cT -JW +IW cT cT -lN -DE -CC -jp -Xp -Ht -Un +Oy +jQ +Tl +zw +nL +hC +vc vN -vq -bi -qZ -LI +zS +Kl +bX +Fg iO zX zX zX zX zX -nE +CL jG vb -wO +CN Kc jG mV mV mV jG -fQ -nD +Hd +TC vb -FC -ug -ug -ug +Km +sL +sL +sL vb -aS -ae -VZ -ae +ma +qH +JQ +qH jG mV mV @@ -15054,69 +13818,69 @@ mV mV oB oB -GS -Jf -ED -Jf -Jf -qU -Jf -tx -cW -cW +ON +kU +Pz +kU +kU +Pb +kU +Ju +iJ +iJ Hq -np -cW -cW -cW -cW -cW -np -xX +OM +iJ +iJ +iJ +iJ +iJ +OM +ev yH -Dh +Sa fh -XO -sM -PJ -PJ +pM +le +LH +LH fh -UY -mu -ts -CI -ts -ts -RU -ts -ts -CI -ye -ts -ts -ts -ts -ts -cQ -ts -HI -FZ -dn -ur -ur +hS +Cm +yr +bO +yr +yr +Es +yr +yr +bO +Gc +yr +yr +yr +yr +yr +ke +yr +yN +Kz +zJ +Qg +Qg Ao -Cx -qf -eP -Xb -Xb -Xb -Xb -nb -JN +OS +PM +kS +iR +iR +iR +iR +YQ +fv jG jG -Hj +kz jG mV mV @@ -15126,9 +13890,9 @@ jG jG jG jG -GF -Lf -pt +LB +St +id jG jG jG @@ -15220,52 +13984,52 @@ yH yH yH yH -Qx -Qx -Qx +YB +YB +YB yH yH yH -Dh +Sa fh -hK -hK -hK -iF +bQ +bQ +bQ +XJ fh -PJ -nc +LH +Om bN bN cL -FZ -SB -FZ -FZ +Kz +Lb +Kz +Kz bN Wf bN -FZ -XY +Kz +MT bN bN bN -FZ -Uy -sM +Kz +hi +le vN -RN +XR OJ -sz +Ec OJ -Li +KI Tr vN vN vN vN vN -uq +qy Tr mV mV @@ -15363,61 +14127,61 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -jR -KB -KB -KB -KB +XM +aQ +aQ +aQ +aQ yH -Dh -xK +Sa +wk fh -dH -nI -RI -PJ +tp +LE +if +LH fh -kn +kp wV wV -pX +JH wV wV CK CK CK CK -nl +QP CK CK CK CK -RA +aO CK CK -gU +bS fh vN -ku -Cx +GP +OS OJ -Cx -qf -eP -Xb -Xb -Xb -Xb -Xb -Uu +OS +PM +kS +iR +iR +iR +iR +iR +Ee Tr mV mV @@ -15515,53 +14279,53 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -mN -KB -ag -KB -KB +on +aQ +kN +aQ +aQ yH -Dh -xK +Sa +wk fh -PJ -gm -PJ -PJ +LH +Lg +LH +LH fh fh wV -SI -Ax -TJ +YE +cO +wn wV -nv -DC -tX -Jq -ZU -yz -ff +pl +je +Nj +IX +TI +lO +oV CK -DH -DH -nq +nk +nk +gf CK -Qv -kh +xu +gs vN vN -he -he -he +rd +rd +rd vN Tr Tr @@ -15569,7 +14333,7 @@ Tr Tr Tr Tr -uq +qy Tr mV mV @@ -15667,61 +14431,61 @@ mV mV mV oB -KB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -YZ -hH -cg -KB -ew +qS +CH +yR +aQ +ub yH -Dh -xK +Sa +wk fh fh fh fh fh fh -Dh +Sa wV -Ov -Ax -mm +IZ +cO +pU wV -hh -DG -DG -TH -as -Sc -Sc -Oo -wx -Xq -YL +jd +rH +rH +wl +yJ +uo +uo +bD +pN +MM +iT CK -NF -HA +tQ +cX vN -xv -Jj -Jj -Jj -Li +nP +JF +JF +JF +KI Tr mV mV mV mV Tr -uq +qy Tr mV mV @@ -15820,60 +14584,60 @@ mV mV oB oB -KB -KB -KB -KB -KB -KB +aQ +aQ +aQ +aQ +aQ +aQ yH -xi -JB -di -tj -tP +Nl +ll +Gp +MQ +gQ yH -Dh -xK +Sa +wk Of -Dh -Dh -Dh -Dh -Dh -Dh +Sa +Sa +Sa +Sa +Sa +Sa wV -Gn -Ax -dV +LZ +cO +RC wV -or -DG -Sz -DG -aa -DG -aa +Ie +rH +Kn +rH +Rf +rH +Rf CK -WW -DH -tn +fx +nk +hw CK -Ii -SQ +Ww +OC vN -yS -Li -Li -Li -Li +xy +KI +KI +KI +KI Tr mV mV mV mV Tr -uq +qy Tr mV mV @@ -15980,52 +14744,52 @@ oB oB oB oB -KB -zq -KB +aQ +xF +aQ oB oB pQ pQ pQ -Dh -Dh -Dh -Dh -Dh -xK +Sa +Sa +Sa +Sa +Sa +wk wV -SF -Gj -QX +ef +lJ +ep wV -tF -DG -JP -qn -wA -qO -wA +Vb +rH +IE +Bi +hf +Gf +hf CK -bU -MR -rV +jY +wf +bW CK -IB -IB +mO +mO vN -Cy -Ck -Tk -wM -Li +wp +HM +GR +hM +KI Tr mV mV mV mV Tr -uq +qy Tr mV mV @@ -18584,11 +17348,11 @@ mV mV mV mV -Ce -Ce -Ce -Ce -Ce +rt +rt +rt +rt +rt mV mV mV @@ -18736,11 +17500,11 @@ mV mV mV mV -Ce +rt cc -Ce -Ce -Ce +rt +rt +rt mV mV mV @@ -18888,11 +17652,11 @@ mV mV mV mV -Ce -Ce -Ce -Ce -Ce +rt +rt +rt +rt +rt mV mV mV diff --git a/maps/map_files/derelict_almayer/derelict_almayer.dmm b/maps/map_files/derelict_almayer/derelict_almayer.dmm index e410029362..9f8d05280d 100644 --- a/maps/map_files/derelict_almayer/derelict_almayer.dmm +++ b/maps/map_files/derelict_almayer/derelict_almayer.dmm @@ -1,22 +1,19 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"aaj" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"aac" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aaw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) "aaD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -29,120 +26,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"aaJ" = ( -/obj/structure/bed/chair{ - dir = 8 +"abc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"abt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) -"aaN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"abu" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"abD" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/filingcabinet{ - density = 0; +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aaO" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"aaY" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"aba" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"abk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"abw" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; pixel_y = 6 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"abx" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"abH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, /turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"abL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) +/area/almayer/command/corporateliaison) "abP" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -160,615 +76,449 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) +"abR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "abS" = ( /turf/open/floor/almayer, /area/almayer/living/port_emb) -"acd" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"acm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"acr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/device/camera{ - pixel_x = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"abY" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ach" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/pilotbunks) -"acy" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"acT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"acW" = ( +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"acs" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"adc" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"acA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"acD" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_umbilical) -"adg" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"acN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/offices/flight) -"adi" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"ads" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"acQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/hallways/port_hallway) -"adH" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/north2) -"adL" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"acU" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ada" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"ade" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/vehiclehangar) -"adO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"adk" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/bed/chair/comfy{ +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"ado" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"adA" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/bridgebunks) -"aef" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/lower/l_m_s) +"adG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"adU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/area/almayer/engineering/upper_engineering/starboard) -"aeg" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"aeb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"aej" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"aed" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ + dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"aen" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aei" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/shipboard/brig/evidence_storage) -"aex" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aep" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/engineering/lower_engineering) -"aeA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/hull/upper/u_m_p) +"aes" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "orangecorner" + icon_state = "pipe-c" }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "aeD" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"aeQ" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 +"aeE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"aeG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/shipboard/brig/cells) -"afi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"aeJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/armory) -"afl" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) +"aeP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/area/almayer/living/auxiliary_officer_office) -"afo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"aeT" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"afa" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"aft" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"afq" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/area/almayer/maint/hull/upper/u_a_p) +"afA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"afD" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"afL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"afQ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"afx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"afV" = ( /obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"afW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"afF" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"afZ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/living/briefing) -"afI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"agb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"agw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"agx" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/chief_mp_office) -"afO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"agZ" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"aha" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"ahk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"afT" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ahs" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"agg" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"ahw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"ahC" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ahE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ahN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"ail" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/living/pilotbunks) -"agk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"ais" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"aiz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/medical/medical_science) -"agl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"aiN" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north1) +"ajc" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"ajd" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"ajk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hallways/aft_hallway) -"ago" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"aju" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"ajE" = ( +/obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 + pixel_y = 28 }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"akl" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"akn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ako" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/aft_hallway) +"aks" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/armory) -"agu" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"aku" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/hallways/starboard_hallway) -"agL" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"agY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/squads/req) -"ahd" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"ahr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/pilotbunks) -"ahE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ahG" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"ahJ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"ahR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"ahX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"aia" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"aid" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"aik" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"aip" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"aiC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"aiF" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"aiH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"aiN" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north1) -"aiY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"ajc" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"ajg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/south1) -"ajj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"ajn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"ajz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"ajB" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"ajK" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ajL" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"ajO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"ajS" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) -"ajX" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aki" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"akn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) +"akE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) "akF" = ( /obj/structure/pipes/unary/outlet_injector{ dir = 8; @@ -780,326 +530,209 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"akI" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 13"; - buildstate = 1 - }, -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"akK" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +"akJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) "akM" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"akN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" +"akR" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"akX" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ala" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/hull/lower_hull/l_f_p) -"akU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Chief MP's Office"; - req_access = null; - req_one_access_txt = "1;3" +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"alb" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"alm" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"als" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"aly" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/chief_mp_office) -"alc" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"alD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/medical/upper_medical) -"alj" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"alH" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"alq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"alF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/area/almayer/medical/lower_medical_medbay) -"alJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"alO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"amt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"amH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"amT" = ( +/obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"alQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 2"; - name = "\improper Courtyard Divider" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cells) -"alZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ane" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/starboard_hallway) -"amm" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"anp" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ans" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" }, -/area/almayer/hull/upper_hull/u_a_p) -"amp" = ( -/obj/structure/machinery/light, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"anF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"anJ" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"amv" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"amy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"amF" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"amI" = ( -/obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/chemistry) -"amK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"amQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"anQ" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"aob" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"aoc" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"amR" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/command/cichallway) -"amT" = ( -/obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"amZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"anc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Brig" }, -/area/almayer/hallways/repair_bay) -"anf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"aoh" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"aoi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ pixel_y = 7 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"anh" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"ano" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/living/port_emb) -"anr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"anv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"any" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"anF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"anL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/stair_clone/upper) +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) "aoj" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"aor" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"aot" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"aoG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +"aoo" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/repair_bay) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) "aoK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1107,6 +740,12 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"aoL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) "aoN" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -1119,15 +758,17 @@ /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) -"aoP" = ( -/obj/structure/machinery/light{ - dir = 4 +"aoS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/squads/delta) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) "aoU" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -1138,6 +779,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"aoV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aoX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"apb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "aph" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, @@ -1150,25 +806,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) +"apk" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "apo" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"apr" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"apv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"apu" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 }, -/area/almayer/engineering/engineering_workshop/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "apx" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -1176,97 +829,93 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"apJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull) -"apS" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"apL" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/medical/hydroponics) -"apV" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"aqc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/medical/medical_science) -"aqf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"aqd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"aqK" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"aqS" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"aqV" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"aqX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"arl" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/command/cic) -"aro" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"aru" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"arx" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/containment) -"arB" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/area/almayer/engineering/engine_core) -"arI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"arS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/lower/port_midship_hallway) +"arn" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) +"arC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"arJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"arU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"arZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "ase" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -1274,54 +923,40 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) -"asF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"asQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"asf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"ate" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 7"; - buildstate = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"asm" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"asv" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" }, -/area/almayer/engineering/engine_core) -"atf" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"asz" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"asA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"atl" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"asK" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 @@ -1330,365 +965,310 @@ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"atp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"atB" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"atZ" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"aua" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) -"aut" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"auJ" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"auM" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/telecomms) -"avf" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/living/briefing) -"avo" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/area/almayer/maint/hull/upper/u_a_p) +"asS" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"avq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"avr" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"asU" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"atb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"avt" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"avu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"atg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/port_atmos) -"avz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"ath" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"awc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"atk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_m_s) -"awk" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"atq" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"atP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"awH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/command/lifeboat) -"axg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"atV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/area/almayer/hallways/hangar) -"axi" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"auY" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"avd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/computer/station_alert{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"avr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/starboard) -"axk" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"avA" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"avF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"awx" = ( +/obj/structure/bed/chair/office/dark{ dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + layer = 3.25 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"awF" = ( +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "blue" + pixel_y = -28 }, -/area/almayer/squads/delta) -"axn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"awV" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/commandbunks) -"axB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) +"axc" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/area/almayer/living/gym) -"axH" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"axe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/almayer/medical/medical_science) -"axT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"axW" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"axt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"axX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"axv" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) +"axx" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/engineering/engine_core) -"ayI" = ( -/obj/structure/target{ - name = "punching bag" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"axS" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/living/gym) -"ayJ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_m_p) +"axZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"aza" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"azh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ayK" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"ayS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"azo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"azs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"azw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/port_hallway) -"azj" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"azx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" }, -/area/almayer/hallways/hangar) -"azt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"azC" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"azF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "azI" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"aAe" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"azS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"azT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aAc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"aAh" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "aAi" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"aAo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"aAp" = ( +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "aAt" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"aAB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie_delta_shared) -"aAK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"aAM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"aAT" = ( -/obj/structure/machinery/iv_drip, +"aAC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" + icon_state = "W" }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"aAJ" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "aAV" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -1696,126 +1276,74 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"aAX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"aAY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"aBa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"aBe" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "aBf" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"aBg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"aBj" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/port_umbilical) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "aBl" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"aBw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "aBB" = ( /turf/closed/wall/almayer/outer, /area/almayer/command/lifeboat) -"aBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"aBV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"aCa" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"aCc" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) "aCi" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"aCj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aCz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"aCw" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 5 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"aCI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"aCL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"aCO" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/basketball) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "aCS" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 4"; @@ -1826,761 +1354,565 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"aCU" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) "aCW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"aDc" = ( +"aCZ" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/machinery/computer/station_alert{ + dir = 1 }, -/area/almayer/living/briefing) -"aDk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha_bravo_shared) -"aDs" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"aDu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"aDp" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) -"aDw" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"aDz" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = -7 +"aDM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/almayer/shipboard/brig/execution) -"aDB" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aDP" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"aDR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"aDF" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/starboard_emb) +"aDT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/medical/containment/cell) -"aEy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"aEB" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/hallways/upper/aft_hallway) +"aED" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aEO" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aET" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/area/almayer/medical/lower_medical_medbay) -"aEJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"aEW" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/living/starboard_emb) -"aEK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"aEN" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"aES" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"aEX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"aEZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "aFb" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/notunnel) -"aFc" = ( -/obj/structure/bed/chair{ +"aFd" = ( +/obj/structure/machinery/prop/almayer/computer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aFe" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"aFi" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) "aFt" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"aFQ" = ( -/obj/structure/bed/chair{ - dir = 8 +"aFA" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"aFX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"aGa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"aGk" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"aGi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"aGA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"aGE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/phone_base{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"aGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"aGL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"aGQ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aGT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"aGY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/operating_room_two) -"aHw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"aGZ" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"aHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) +/area/almayer/maint/hull/upper/u_m_s) +"aHc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"aHC" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"aHE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "aHH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) +"aHI" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"aHN" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) "aHO" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"aHY" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) +"aHQ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) "aIa" = ( /turf/open/floor/almayer/research/containment/floor2, /area/almayer/medical/containment/cell/cl) -"aIb" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) "aIc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"aIy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"aIA" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"aIF" = ( -/obj/structure/machinery/door/poddoor/almayer{ +"aIq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"aIB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"aIJ" = ( +/obj/structure/machinery/door_display/research_cell{ dir = 4; - unacidable = 1 + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/shipboard/weapon_room/notunnel) -"aII" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) "aIO" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) -"aIU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/navigation) -"aJa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" +"aIQ" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32 }, -/area/almayer/hallways/aft_hallway) -"aJt" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"aJd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/telecomms) -"aJy" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"aJM" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"aJf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 6 +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"aJO" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"aKd" = ( +"aJl" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"aKe" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/hull/upper/u_a_p) +"aJn" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/port_emb) -"aKk" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"aJu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aJF" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aJN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/starboard_point_defense) -"aKl" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aKg" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; - name = "ship-grade camera" + pixel_x = -17 }, +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"aKo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/area/almayer/command/corporateliaison) +"aKx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"aKu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/shipboard/brig/cells) -"aKw" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"aKB" = ( +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"aKH" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/briefing) -"aKD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"aKI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "aKN" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/captain_mess) -"aKO" = ( +"aKU" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"aKY" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"aLe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"aLh" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/delta) -"aKP" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aLD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aLE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) -"aLg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +"aMy" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"aMz" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) +"aML" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/almayer/squads/charlie) -"aLi" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"aLj" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aMR" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"aMY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"aNm" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aNp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"aLo" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"aLu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"aLy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"aNq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"aLR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"aNt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aNz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aNE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, +/turf/open/floor/almayer, /area/almayer/squads/charlie) -"aMe" = ( +"aNI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SE-out" }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"aNW" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/area/almayer/medical/containment) -"aMg" = ( +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"aOw" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"aOS" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"aOV" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"aPm" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" }, -/area/almayer/living/offices) -"aMm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aPo" = ( +/obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"aPp" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/area/almayer/living/offices/flight) -"aMr" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"aPz" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"aMs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"aMC" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"aMK" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"aNk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"aNq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"aNE" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"aNM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"aNQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"aNR" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aNW" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"aOd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"aOm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"aOp" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/briefing) -"aOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"aOC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/living/briefing) -"aOF" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"aOO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"aOQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"aOT" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"aOU" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/lifeboat) -"aOW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"aPa" = ( -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"aPb" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/evidence_storage) -"aPh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_midship_hallway) +"aPA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aPE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_f_p) -"aPL" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 8"; - buildstate = 1 +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aPK" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 }, -/area/almayer/engineering/engine_core) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) "aPN" = ( /obj/structure/toilet{ pixel_y = 16 @@ -2595,385 +1927,254 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"aPP" = ( +"aPO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/living/starboard_emb) "aPQ" = ( /obj/structure/mirror, /turf/closed/wall/almayer, /area/almayer/living/gym) -"aPX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"aQa" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"aQk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"aQr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +"aQd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/squads/alpha) -"aQs" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/unary/freezer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aQw" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"aQA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/medical_science) -"aQt" = ( -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aQF" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/research{ - dir = 4; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"aQJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/medical/medical_science) -"aQx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"aQM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"aQO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/containment) -"aQy" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aQU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"aQP" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"aQS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 3"; - buildstate = 1 + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"aQX" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "aQY" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"aRb" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"aRx" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"aRD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"aRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"aRT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/morgue{ +"aRi" = ( +/obj/structure/closet/secure_closet/guncabinet, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"aRu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/aft_hallway) +"aRN" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"aRU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/medical/morgue) +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) "aRY" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) -"aSH" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"aST" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"aSV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"aSl" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"aSp" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"aSJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/shipboard/port_missiles) -"aTd" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/general_equipment) +"aTh" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"aTi" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"aTj" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/sea_office) -"aTe" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"aTs" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aTg" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 5 }, -/area/almayer/squads/bravo) -"aTv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"aTt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) "aTw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"aTz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull) -"aTB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/ce_room) +"aTF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) "aTI" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"aTX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"aUc" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ +"aTM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"aTQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"aUh" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering/port) -"aUj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"aUM" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"aTV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"aUm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"aUn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/engineering/starboard_atmos) -"aUT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"aUA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"aUO" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/lobby) +"aUV" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/aft_hallway) +"aUZ" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "aVk" = ( /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"aVt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 +"aVl" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"aVz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"aVL" = ( -/obj/structure/phone_base/rotary{ - name = "CL Office Telephone"; - phone_category = "Almayer"; - phone_id = "CL Office" + name = "\improper Engineering North Hall" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) "aVM" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -2981,25 +2182,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"aVR" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +"aVO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"aVP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/command/lifeboat) -"aWb" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aVX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"aWf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"aWj" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) "aWk" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -3010,62 +2228,56 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"aWq" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/perma) -"aWu" = ( +"aWy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"aWA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"aWE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/squads/bravo) -"aWC" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, -/area/almayer/living/offices) -"aWI" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + name = "\improper Perma Cells" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"aWM" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"aWN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"aWR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"aXe" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) "aXg" = ( /turf/closed/shuttle/dropship2{ icon_state = "30" @@ -3075,19 +2287,9 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"aXl" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) +"aXm" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/hull/upper/u_a_p) "aXu" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -3098,36 +2300,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"aXx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"aXC" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"aXy" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 }, -/area/almayer/living/briefing) -"aXD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 }, +/turf/open/floor/almayer/mono, /area/almayer/medical/hydroponics) "aXJ" = ( /obj/effect/decal/warning_stripes{ @@ -3136,86 +2324,66 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"aYe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 +"aYa" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"aYb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/medical_science) -"aYh" = ( -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"aYk" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/engineering/engine_core) -"aYl" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"aYo" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"aYq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "aYw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"aYB" = ( +"aYH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"aYM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"aYR" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"aYY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"aZa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "aZc" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -3226,41 +2394,71 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"aZo" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 4 +"aZe" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"aZg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = -4 +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = -4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"aZI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/command/corporateliason) -"aZE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"aZM" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"aZN" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"aZQ" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"aZS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "aZU" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -3284,6 +2482,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"bac" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"bak" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 + }, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) "bat" = ( /obj/item/tool/mop{ pixel_x = -6; @@ -3291,71 +2505,72 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bax" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/port_umbilical) -"baD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"baN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; +"baz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"baS" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"bbf" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"bbg" = ( /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"baT" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"bbd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" - }, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/area/almayer/engineering/lower/workshop) +"bbi" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/area/almayer/shipboard/brig/cells) -"bbA" = ( -/obj/structure/platform_decoration{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"bbu" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" }, -/area/almayer/hull/upper_hull/u_a_s) -"bbH" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/obj/structure/machinery/door_control{ dir = 1; - name = "ship-grade camera" + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"bbJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"bbL" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"bbN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) "bcd" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -3363,75 +2578,48 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"bcg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 +"bce" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null }, -/obj/structure/mirror{ - pixel_y = 21 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"bci" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bcG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"bcH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"bcj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"bcn" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"bct" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"bcA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"bcI" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 }, +/turf/open/floor/almayer/bluefull, /area/almayer/living/briefing) -"bcB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"bcL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/starboard_hallway) -"bcD" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"bcG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) "bcN" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3448,22 +2636,32 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bdg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +"bdd" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bdm" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"bdj" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"bdn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/numbertwobunks) +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) "bdr" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -3474,111 +2672,74 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"bdt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"bdG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"bed" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"bee" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop/hangar) -"bel" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"bdD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/hull/upper_hull/u_a_p) -"bem" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"bdF" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"beo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"bdL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" }, -/area/almayer/medical/medical_science) -"beu" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"bdU" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"bdY" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/aft_hallway) +"bdZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bec" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"beF" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/processing) -"beN" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"beR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"bfc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"ber" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"beH" = ( +/obj/structure/bed, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"beU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "bfh" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -3590,122 +2751,162 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_four) -"bfj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"bfl" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"bfm" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +"bfk" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) "bfs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices) -"bfu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ +"bfv" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "emerald" + icon_state = "pipe-c" }, -/area/almayer/squads/charlie_delta_shared) -"bfH" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/red/northeast, /area/almayer/shipboard/navigation) -"bgk" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +"bfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_lobby) -"bgm" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"bfG" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/command/lifeboat) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bfH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bfJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/squads/charlie_delta_shared) -"bgF" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bgr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/area/almayer/squads/alpha) -"bhg" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"bgy" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/surgery) -"bho" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"bgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/lifeboat) -"bhr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"bgL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/squads/req) -"bhx" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/orange/west, +/area/almayer/shipboard/brig/processing) +"bgS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Brig Equipment" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"bgW" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bhe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"bhi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"bhn" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) +"bhx" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) +"bhC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/chief_mp_office) "bhH" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -3719,18 +2920,81 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"bhO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +"bhJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/medical_science) -"bij" = ( -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/trash/USCMtray, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bhQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"biy" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8; + id = "starboard_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"biz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"biB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"biC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"biO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "orange" + pixel_x = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"biR" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"biT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"biV" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"biX" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/almayer/hallways/hangar) "bjg" = ( /obj/structure/disposalpipe/trunk{ @@ -3739,80 +3003,63 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) -"bjk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) "bjp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/almayer, /area/almayer/engineering/upper_engineering/starboard) -"bju" = ( -/obj/structure/bed/chair/comfy/orange, +"bjs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"bjv" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"bjW" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"bkb" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +"bjx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"bjB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) -"bkc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/surgery) -"bkh" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bjP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"bjU" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/area/almayer/engineering/engineering_workshop/hangar) +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "bkk" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -3828,48 +3075,53 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"bks" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"bko" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"bkp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"bkr" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"bkz" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"bkW" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"bkB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"bkC" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) "ble" = ( /obj/structure/machinery/gibber, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"blg" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/securestorage) "blh" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"blp" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"blk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/chief_mp_office) "blw" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -3878,80 +3130,20 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bly" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"blQ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) -"blV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"blX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"bmq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"blH" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/blue/north, /area/almayer/squads/delta) +"bmg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "bmr" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey/top{ @@ -3979,103 +3171,52 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"bmw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"bmx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"bmD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/basketball) -"bmE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"bmu" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"bmA" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/squads/alpha) -"bmF" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"bmL" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"bmU" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"bmZ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/area/almayer/shipboard/navigation) -"bmI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bmW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"bnK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"bnN" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bni" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bno" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bnp" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"bnI" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/medical/operating_room_two) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) "bnO" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) @@ -4085,42 +3226,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"boi" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/command/cic) -"bos" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"bov" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 +"bom" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/command/cic) -"boF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/perma) +"boz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "S" }, -/area/almayer/medical/hydroponics) -"boI" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/evidence_storage) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "boK" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -4129,288 +3251,185 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/basketball) -"bpb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"bpD" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_hallway) -"bpI" = ( +"boT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"bpL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"boV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"boW" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bpk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/engineering/ce_room) -"bpY" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"bpq" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bpJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"bpM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/living/pilotbunks) -"bqd" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"bpN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices/flight) -"bqi" = ( -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"bqp" = ( +/area/almayer/hallways/upper/aft_hallway) +"bpQ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"bqg" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"bqr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"bqo" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"bqq" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"bqw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"bqH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"bqU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"brf" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"brg" = ( +/obj/structure/window/reinforced/tinted{ + pixel_y = -8 }, -/area/almayer/command/telecomms) -"bqt" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"bqz" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" +/obj/structure/machinery/door/window/tinted{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" +/obj/item/toy/inflatable_duck, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"brw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"brV" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bsb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/containment/cell) -"bqP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"bqQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"bqS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"bqW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"brj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"brl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"brn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"brs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"bry" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"brD" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"brX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"brY" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"bsh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"bsi" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 }, -/area/almayer/hallways/port_hallway) -"bsE" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bsk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"bsu" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"bsI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"bsv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bsy" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) "bsJ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -4420,86 +3439,72 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"bta" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"btv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"btb" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 }, -/area/almayer/hull/lower_hull/l_m_p) -"bty" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"btf" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"bto" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"btw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"btF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) "btG" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"btH" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_a_s) -"btW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"btZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"buc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"btX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"bue" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bun" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "bup" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -4510,30 +3515,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"buD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" +"bus" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"buy" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 }, -/area/almayer/medical/lower_medical_medbay) -"buL" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"buA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"buK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering/starboard) "buM" = ( /obj/structure/toilet{ @@ -4549,51 +3556,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"buO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" +"buY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 }, -/area/almayer/living/pilotbunks) -"buR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"bvd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; pixel_y = 16 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"buS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/phone_base/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" }, -/area/almayer/engineering/starboard_atmos) -"bvf" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"bvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"bvv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) "bvw" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -4604,382 +3602,439 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"bvE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +"bvA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"bvL" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"bvM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"bvO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) -"bvR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bvS" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"bvY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"bvX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "bwd" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bwm" = ( -/obj/structure/bed/chair{ - dir = 8 +"bwj" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/hull/upper/u_a_s) +"bwo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bwz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_a_p) +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) "bwB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bwC" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"bxk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +"bwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"bwI" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/area/almayer/hallways/aft_hallway) -"bxA" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"bwM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) -"bym" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bwP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/morgue) -"byx" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"bwT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"bwX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"bxa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/basketball) -"byz" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"bxh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/squads/req) -"byD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"bxp" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"bxq" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"bxE" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"bxZ" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_f_s) -"byH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"byg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"byh" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"byo" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"byA" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/area/almayer/command/lifeboat) +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "byJ" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/weapon_room/notunnel) -"byP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"byX" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 +"byM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"byU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"bzb" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - health = 80 + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"bzg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; - icon_state = "cargo_arrow" + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" }, -/area/almayer/medical/hydroponics) -"bzq" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell/cl) +"bzu" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bzy" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bzJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"bzS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/lifeboat) -"bzH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"bzW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bzI" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"bzY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/general_equipment) +"bAp" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"bAv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/weapon_room) +"bAw" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/starboard_garden) +"bAy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/offices) -"bzK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"bAJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_f_p) -"bzX" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"bAK" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/area/almayer/squads/req) -"bAl" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"bBe" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"bBj" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/living/briefing) -"bAm" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"bBk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/pilotbunks) -"bAv" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"bBr" = ( /turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/weapon_room) -"bAA" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/cic) -"bAB" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/area/almayer/command/computerlab) +"bBv" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"bBK" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/area/almayer/medical/lower_medical_medbay) -"bBb" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"bBp" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/general_equipment) -"bBr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/computerlab) -"bBv" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"bBI" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"bBJ" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"bBN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) "bBY" = ( /obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bCe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"bCk" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"bCr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"bCa" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"bCd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/medical/hydroponics) -"bCu" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bCo" = ( +/obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/area/almayer/shipboard/port_point_defense) -"bCD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/window/westright{ - dir = 4; - req_access_txt = "28" +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bCx" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"bCA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bCB" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"bCH" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bCQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/medical/medical_science) -"bCI" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"bCR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"bCP" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"bCX" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/area/almayer/command/cichallway) -"bDc" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; +/obj/structure/sign/safety/north{ + pixel_x = 15; pixel_y = 32 }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"bCZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/living/gym) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bDe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"bDg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "bDm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -4990,20 +4045,31 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"bDr" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"bDB" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/area/almayer/lifeboat_pumps/north2) -"bDt" = ( -/obj/structure/bed/sofa/south/grey/right{ +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; pixel_y = 12 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bDI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) "bDK" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -5013,57 +4079,91 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bDN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +"bEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"bEf" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"bEI" = ( -/obj/structure/sign/safety/ladder{ +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bEn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bEu" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"bEx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "bEJ" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) -"bEL" = ( +"bEO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/command/cichallway) -"bEM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"bET" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"bEU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "bEW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/securestorage) -"bFm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +"bEX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"bFf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"bFj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"bFs" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/engineering_workshop/hangar) +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) "bFx" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -5075,153 +4175,153 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"bFK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bFO" = ( +"bFC" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"bFE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"bFL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" + dir = 1 }, -/area/almayer/living/grunt_rnr) +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) "bFT" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"bGa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "blue" +"bGj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"bGr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"bGo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bGw" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "bGE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"bGT" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"bGV" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +"bGF" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"bGH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"bGJ" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/squads/bravo) -"bGZ" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"bGQ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"bHq" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"bHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"bHv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"bHG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"bHt" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"bHI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "bHJ" = ( /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"bHN" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +"bHL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/charlie) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "bHO" = ( /obj/effect/attach_point/weapon/dropship2/left_wing, /obj/structure/shuttle/part/dropship2/transparent/lower_left_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bHU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"bHW" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) +"bIc" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"bIo" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/shipboard/port_point_defense) -"bIg" = ( -/obj/structure/sink{ +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"bIq" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliason) -"bIl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + icon_state = "pipe-c" }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "bIr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"bIt" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) "bIv" = ( /obj/item/frame/light_fixture{ anchored = 1; @@ -5232,42 +4332,75 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"bIK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +"bIw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/lifeboat) -"bIW" = ( +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 + }, +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"bIB" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bII" = ( +/obj/structure/machinery/power/apc/power/north, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"bIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bIP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" }, -/area/almayer/living/gym) -"bJa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"bJp" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"bIY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bJl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"bJn" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) "bJs" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -5276,221 +4409,177 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"bJu" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"bJw" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/item/toy/deck{ + pixel_x = -9 }, -/area/almayer/shipboard/brig/lobby) +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "bJH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bJJ" = ( -/turf/open/floor/almayer{ - icon_state = "red" +"bJI" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) +"bJM" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) +"bKc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"bJO" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"bKd" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/area/almayer/squads/alpha) -"bJT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"bKl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ dir = 8; - icon_state = "orange" + pixel_y = 3 }, -/area/almayer/hallways/hangar) -"bJV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"bKA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"bKE" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, /area/almayer/command/cic) -"bJZ" = ( -/obj/structure/machinery/light{ - dir = 8 +"bKL" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"bKP" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"bLb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) -"bKo" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"bLg" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"bLi" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 }, -/area/almayer/squads/charlie_delta_shared) -"bKp" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"bKt" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"bKD" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"bLj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"bLz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"bLK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"bLL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"bKE" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"bKK" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"bKR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"bKW" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"bLm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bLs" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"bLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 }, -/area/almayer/squads/req) -"bLJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"bLY" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"bMe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) -"bLP" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"bMd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bMl" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"bMf" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) "bMr" = ( /turf/closed/shuttle/dropship2{ icon_state = "31" }, /area/almayer/hallways/hangar) -"bMt" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"bMu" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/vehiclehangar) -"bME" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +"bMv" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"bMA" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/south1) +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"bMG" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) "bMO" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -5513,117 +4602,88 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"bMY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"bNa" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/living/briefing) -"bNk" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"bNl" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"bNx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +"bNc" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"bNg" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"bNn" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"bNA" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, /area/almayer/medical/lower_medical_lobby) -"bNz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"bNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"bNK" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bNP" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"bNQ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) "bNR" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bNT" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"bOp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"bNV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"bOa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "bOx" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"bOC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"bOD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "bOE" = ( /obj/structure/bed/chair{ dir = 8; @@ -5631,298 +4691,235 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"bOG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"bOI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"bPc" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 +"bOV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"bOX" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) "bPe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"bPj" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"bPl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"bPm" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"bPp" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"bPx" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +"bPo" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/hallways/port_hallway) -"bPB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"bPz" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"bPG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"bPK" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"bPN" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"bQs" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"bPO" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bPU" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"bPY" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/basketball) -"bQe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"bQf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"bQn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/living/offices/flight) -"bQo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +"bQF" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"bQU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 + dir = 4 }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"bQG" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"bQX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"bRk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"bQZ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"bRq" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"bRz" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"bRU" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"bRV" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/light/containment{ + dir = 1 }, -/area/almayer/squads/alpha) -"bRs" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"bSh" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/area/almayer/living/starboard_garden) -"bRu" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"bSl" = ( /obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"bRw" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_s) -"bRE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 }, -/area/almayer/command/cic) -"bRN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"bSm" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"bSA" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/squads/delta) -"bSo" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"bSB" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_m_p) -"bSw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"bSD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"bSE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silvercorner" + dir = 9 }, -/area/almayer/command/cichallway) -"bSy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bSP" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/area/almayer/command/lifeboat) -"bSG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bST" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/aft_hallway) +"bTd" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) +"bTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices/flight) -"bTc" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/stair_clone) -"bTj" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"bTC" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"bTF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"bTt" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) +/area/almayer/engineering/lower) "bTJ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/command/lifeboat) +"bTM" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) "bUe" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lower_medical_medbay) -"bUu" = ( -/obj/structure/machinery/light/small{ +"bUn" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"bUH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "bUI" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -5933,47 +4930,81 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bUU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"bUK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"bUP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/almayer/engineering/upper_engineering) -"bUX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"bUZ" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 11"; - buildstate = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bUR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bVf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"bVh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bVi" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "bVq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"bVr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"bVt" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "bVw" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"bVx" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"bVy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bVC" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "bVJ" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox{ @@ -5982,195 +5013,119 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"bVR" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"bVS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 }, -/area/almayer/lifeboat_pumps/south1) -"bVZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bVU" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"bVV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/starboard_missiles) -"bWb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"bWt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +"bWy" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"bWO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/living/cafeteria_officer) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"bWC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"bWG" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/warden_office) "bWR" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bWV" = ( -/obj/structure/machinery/power/apc{ +"bWU" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"bXo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bWY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/surgery) -"bWZ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_a_s) -"bXf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"bXp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"bXA" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"bXO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bXF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"bXH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bXK" = ( +/obj/structure/stairs{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"bXP" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bXT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) "bXV" = ( /obj/structure/shuttle/part/dropship2/nose_front_right, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bYk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) - }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/computerlab) -"bYr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" - }, -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 +"bYa" = ( +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"bYc" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) "bYw" = ( /turf/closed/wall/almayer, /area/almayer/engineering/port_atmos) -"bYG" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"bYV" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) "bZb" = ( /obj/structure/machinery/light, /turf/open/floor/plating/almayer, @@ -6181,30 +5136,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"bZi" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"bZo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"bZp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) "bZw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -6214,45 +5145,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"bZF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"bZB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"bZO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"bZG" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZR" = ( +/obj/structure/pipes/standard/simple/visible{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"bZW" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "perma_exit"; + name = "\improper Exit Shutters" }, -/area/almayer/hallways/stern_hallway) -"bZQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, -/area/almayer/living/grunt_rnr) -"caf" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"caj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 }, -/area/almayer/lifeboat_pumps/north2) +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "cao" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -6263,228 +5217,232 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"car" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"cbt" = ( -/obj/structure/machinery/light{ - dir = 1 +"caC" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"cbC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"cbO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_f_p) +"caX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"cbe" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/medical/lower_medical_lobby) -"cbR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"cbn" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"cbE" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"cbV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cbM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"cbP" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 16"; + buildstate = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"ccb" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"cbS" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_f_p) -"ccc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"cbW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" }, -/area/almayer/shipboard/starboard_point_defense) -"cce" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"cci" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"cbZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"cca" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/south1) -"ccm" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"ccq" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ccf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"cch" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"ccn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"ccp" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) "ccs" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"ccu" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"ccL" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"cde" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"ccP" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/west{ + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"cdO" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"cdT" = ( -/turf/closed/wall/almayer, -/area/almayer/living/auxiliary_officer_office) -"cdV" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ccQ" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 }, -/area/almayer/engineering/upper_engineering) -"cdX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ccR" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"ccY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) +"cdk" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"cej" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"ceu" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"cew" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/upper/aft_hallway) +"cdm" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/squads/bravo) -"cex" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"cdG" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, /area/almayer/squads/alpha) -"ceC" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +"cdT" = ( +/turf/closed/wall/almayer, +/area/almayer/living/auxiliary_officer_office) +"cef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"ceH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_p) +"cei" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/tool/pen{ + pixel_y = -2 }, -/area/almayer/squads/alpha) -"ceN" = ( -/obj/structure/pipes/standard/tank/oxygen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 }, -/area/almayer/medical/cryo_tubes) -"ceZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ceo" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cev" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) +"cez" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) "cfd" = ( /obj/structure/sign/safety/security{ pixel_y = -32 @@ -6499,261 +5457,124 @@ /obj/structure/supply_drop/charlie, /turf/open/floor/plating, /area/almayer/squads/req) -"cfg" = ( -/turf/open/floor/almayer{ - icon_state = "green" +"cfj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cfr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" }, -/area/almayer/hallways/port_hallway) -"cft" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"cfV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Chief MP's Office"; + req_access = null; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/lifeboat_pumps/south1) -"cfu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"cgq" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"cgx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"cgM" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/squads/alpha) -"cfz" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"cgU" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"cfD" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/hull/lower_hull/l_f_s) -"cfH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"chj" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"chk" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"cho" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"chp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/lower_engineering) -"cfN" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/area/almayer/hull/upper_hull/u_a_s) -"cfU" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" - }, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"cga" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"cge" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"cgs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"cgA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"chA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"chC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"chI" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"cgE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"cgF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"cgP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"cgQ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"cgT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"cgZ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"cha" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliason) -"chl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"cho" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) "chO" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"chT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"chU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"chY" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"cia" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"cid" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_missiles) -"cig" = ( +"chP" = ( /obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"ciq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/command/cic) -"cix" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"cie" = ( +/obj/item/storage/fancy/cigarettes/kpack, /obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) "ciA" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell) @@ -6761,108 +5582,45 @@ /obj/structure/shuttle/part/dropship2/bottom_left_wall, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"cjc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"cjf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"cji" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"cjm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"cjz" = ( -/obj/structure/machinery/light/small{ +"cjL" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"cjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + name = "\improper Brig" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/hallways/aft_hallway) -"cjF" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"cjN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"cjQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"cjM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"cjO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/perma) -"ckd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ckg" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_m_p) -"ckf" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"ckk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/processing) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "cko" = ( /obj/item/prop{ desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; @@ -6875,146 +5633,77 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"ckq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"ckt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"ckw" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"ckx" = ( -/obj/structure/closet/secure_closet/brig, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"ckB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"ckM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"ckW" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lower_medical_medbay) -"clc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/shipboard/port_missiles) -"clg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"clh" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"clq" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"clu" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"ckv" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/computerlab) -"clF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) +"ckC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"ckE" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, -/area/almayer/medical/lower_medical_medbay) -"clG" = ( -/obj/structure/sign/safety/galley{ +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"ckY" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"clo" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cls" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/cichallway) -"clO" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"clI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"clQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"clW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/squads/charlie) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) "clZ" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -7025,25 +5714,32 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"cms" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 +"cmq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"cmw" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"cmD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "cmH" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -7056,53 +5752,12 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"cmO" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cmP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"cmR" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"cmX" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) +"cmK" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"cnl" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) "cnn" = ( /turf/closed/shuttle/dropship2{ icon_state = "94" @@ -7114,217 +5769,151 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"cnv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) "cnw" = ( /turf/closed/shuttle/dropship2{ icon_state = "64" }, /area/almayer/hallways/hangar) -"cnM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/stern_hallway) -"cnU" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/living/starboard_emb) -"cof" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"cnz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/shipboard/brig/cells) -"cox" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cnO" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cnV" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cnX" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"coo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cos" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"coy" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"coE" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"coF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) "coG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"coI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) "coX" = ( /obj/structure/target{ name = "punching bag" }, /turf/open/floor/almayer, /area/almayer/living/gym) -"cpf" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"coY" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) "cpm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"cpp" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +"cpn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"cps" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"cpu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/commline_connection{ + pixel_y = 32 }, -/area/almayer/living/officer_study) -"cpD" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"cpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/area/almayer/living/captain_mess) -"cpK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cpF" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"cpQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" }, -/area/almayer/medical/morgue) -"cpO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/basketball) -"cpR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"cpY" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_emb) +"cqe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"cqi" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"cqr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"cqv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cqm" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"cqt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"cqA" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cqB" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) "cqD" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -7332,65 +5921,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cqH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"cqX" = ( +"cqJ" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) +"cqN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"cqP" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "cra" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/shipboard/port_missiles) -"crf" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +"crg" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/bravo) -"crv" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"crj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"cro" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"crq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"crH" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"crN" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/machinery/disposal/broken, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.1; + pixel_x = -7; + pixel_y = 16 }, -/area/almayer/command/lifeboat) -"crP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"crt" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + dir = 8 }, -/area/almayer/command/lifeboat) +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"crx" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"crW" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "cse" = ( /obj/structure/machinery/door/window/westright{ dir = 4 @@ -7401,138 +6005,121 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"csi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha) -"csk" = ( +"csf" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"css" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/shipboard/brig/cic_hallway) -"cst" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/securestorage) -"csx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"csp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"csu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "csy" = ( /turf/closed/wall/almayer/outer, /area/space) -"csF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"csO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +"csD" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/briefing) -"csR" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"csK" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "csS" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/numbertwobunks) -"cts" = ( +"csT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"csU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"csV" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"cta" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"cth" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"cti" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) +"ctk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"ctu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) "ctx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"ctB" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"ctD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +"ctz" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "Perma 1L"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" }, -/area/almayer/hallways/port_hallway) -"ctF" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"ctO" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/aft_hallway) +"ctT" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/living/gym) -"ctH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/living/bridgebunks) -"ctI" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) "ctV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7543,58 +6130,61 @@ }, /turf/open/floor/almayer/research/containment/corner2, /area/almayer/medical/containment/cell) -"cuf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ctZ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/starboard_hallway) -"cuz" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/pilotbunks) -"cuC" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext"; - name = "\improper Umbillical Airlock" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"cuc" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/notunnel) -"cuE" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"cuk" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"cuI" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cum" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"cuP" = ( -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cut" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "silver" + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cuz" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/pilotbunks) +"cuN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) "cuY" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -7605,225 +6195,230 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"cvh" = ( -/obj/structure/machinery/camera/autoname/almayer{ +"cvw" = ( +/obj/structure/window/reinforced{ dir = 4; - name = "ship-grade camera"; - pixel_y = 6 + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/medical/lower_medical_medbay) -"cvj" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/command/telecomms) -"cvv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/red{ + layer = 3.2 }, -/area/almayer/living/pilotbunks) -"cvC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/area/almayer/squads/bravo) -"cvD" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"cvF" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "cvH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"cvI" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 +"cvP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/medical_science) -"cvK" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"cwA" = ( /obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"cvT" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cwI" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"cvV" = ( -/obj/structure/machinery/door_control{ - id = "dropship_normandy"; - name = "Dropship Lockdown"; - normaldoorcontrol = 3; - pixel_y = -19; - req_one_access_txt = "3;22"; - throw_range = 15 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cwL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/shuttle/dropship{ - icon_state = "floor8" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"cwM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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" }, -/area/almayer/hallways/hangar) -"cwf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_m_p) -"cwh" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"cwN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/shipboard/brig/processing) -"cwl" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"cwS" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"cwF" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"cwT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) "cwU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"cxg" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"cwV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"cxk" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ dir = 8; - pixel_y = 3 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/shipboard/brig/lobby) -"cxi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/area/almayer/medical/lower_medical_medbay) -"cxj" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer/orange/north, +/area/almayer/living/starboard_emb) +"cxn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/shipboard/brig/execution) -"cxl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/prop3{ + pixel_x = -32 }, -/area/almayer/medical/containment) -"cxB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" }, -/area/almayer/hull/upper_hull/u_f_s) -"cxC" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"cxG" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"cxo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cxt" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"cxw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cxM" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) "cxN" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -7839,21 +6434,21 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"cya" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"cyd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"cxQ" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"cxY" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) "cye" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -7865,14 +6460,19 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"cyq" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 +"cyk" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"cyl" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) "cyr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -7888,21 +6488,76 @@ /obj/item/tool/soap, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"cyM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"cyx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"cyy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"cyL" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"cyO" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) "cyR" = ( /obj/structure/surface/table/almayer, /obj/item/folder/yellow, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"cyU" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cze" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"czn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"czq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"czr" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/hull/upper/u_a_p) "czu" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -7910,12 +6565,44 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"cAb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" +"czV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/engineering/upper_engineering/port) +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"czZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"cAe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer{ + layer = 3 + }, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "cAh" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/juicer{ @@ -7923,49 +6610,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"cAx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"cAD" = ( -/obj/structure/machinery/light, +"cAl" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"cAw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cAF" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/main_office) -"cAJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "cAL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/offices) +"cBa" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) "cBd" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -7978,29 +6653,30 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"cBf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"cBG" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" +"cBh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/alpha) -"cBJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"cBm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, /area/almayer/command/cichallway) +"cBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) "cBN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -8014,100 +6690,64 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"cBO" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"cBP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"cCa" = ( +"cBV" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"cCc" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"cCd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"cCf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) "cCl" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/engineering/starboard_atmos) -"cCm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"cCp" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"cCu" = ( +/obj/structure/sink{ + pixel_y = 24 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"cCI" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"cCO" = ( +/area/almayer/maint/hull/lower/l_f_s) +"cCA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"cDb" = ( -/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"cCM" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"cCN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" + icon_state = "W" }, -/area/almayer/squads/alpha) -"cDv" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"cDp" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) "cDy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -8131,74 +6771,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"cDA" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/starboard_hallway) "cDD" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "26" }, /area/almayer/hallways/hangar) -"cDK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"cDO" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"cDR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"cDT" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cDV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/living/starboard_emb) -"cDQ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cDW" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"cEg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"cEc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/area/almayer/squads/charlie) -"cEo" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"cEF" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"cEs" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"cEt" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"cEO" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) "cES" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -8209,142 +6858,233 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"cFg" = ( -/obj/structure/disposalpipe/segment{ +"cET" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"cEX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"cFp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"cFN" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"cFx" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"cFy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/area/almayer/command/lifeboat) -"cFT" = ( +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cFz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cFH" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cFI" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"cFM" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 2 + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"cFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) "cGb" = ( /obj/structure/sign/goldenplaque, /turf/closed/wall/almayer, /area/almayer/living/gym) -"cGc" = ( -/obj/structure/machinery/light{ - dir = 8 +"cGk" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"cGl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/hangar) -"cGM" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"cGr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/main_office) -"cHa" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Cryogenics Bay"; + req_access = null; + req_one_access_txt = "1;3" }, -/area/almayer/living/synthcloset) -"cHb" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"cGu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/engineering/upper_engineering) -"cHd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cGw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cGO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/command/cic) -"cHn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"cGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"cHD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cGT" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"cHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/alpha) -"cHF" = ( -/obj/structure/machinery/prop/almayer/computer{ +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" }, -/area/almayer/shipboard/weapon_room) -"cHW" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"cHi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 }, -/area/almayer/hallways/aft_hallway) -"cIr" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"cHt" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"cIw" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"cId" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) +"cIt" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"cIE" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "cIO" = ( /obj/structure/platform{ dir = 4; @@ -8356,37 +7096,52 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"cIZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 +"cIU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cJg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cJi" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"cJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/medical/lower_medical_medbay) -"cJs" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/briefing) -"cJQ" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cJE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"cJF" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cJS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) "cJX" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8401,60 +7156,28 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/medical_science) -"cKB" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"cKI" = ( +"cKG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"cKL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cKP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"cKQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cKO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) -"cKW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"cLp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +"cLo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/squads/bravo) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "cLs" = ( /obj/structure/ladder{ height = 2; @@ -8462,125 +7185,97 @@ }, /turf/open/floor/plating/almayer, /area/almayer/engineering/upper_engineering) -"cLy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"cLT" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 +"cLu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"cLB" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"cLG" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"cLI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cLX" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/machinery/door/window/tinted{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"cMb" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cMi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/living/starboard_emb) -"cLW" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"cMn" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"cMz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"cMr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"cMw" = ( -/obj/structure/reagent_dispensers/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"cMA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/engineering/upper_engineering/starboard) -"cMP" = ( -/obj/structure/machinery/light/small{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"cMT" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "cMV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"cMW" = ( -/obj/structure/window/reinforced/tinted{ - pixel_y = -8 - }, -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 8 - }, -/obj/item/toy/inflatable_duck, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/cells) -"cNp" = ( +"cNn" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"cNr" = ( /obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/item/restraint/handcuffs{ + pixel_y = 12 }, -/area/almayer/engineering/upper_engineering/port) -"cNy" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/item/restraint/handcuffs{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/restraint/handcuffs, +/obj/item/weapon/baton{ + pixel_x = -12 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) "cNz" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 32 @@ -8596,311 +7291,263 @@ /obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"cNH" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"cNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer{ +"cNG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"cNO" = ( +/obj/structure/disposalpipe/junction{ dir = 4; - icon_state = "silver" + icon_state = "pipe-j2" }, -/area/almayer/living/cryo_cells) -"cNS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cNW" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/lifeboat) -"cNT" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"cNX" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/starboard) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"cOc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) "cOe" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"cOf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -8; - pixel_y = 2; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -8; - pixel_y = 10; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 2; - pixel_y = 10; - req_access_txt = "3" - }, -/obj/structure/machinery/recharger{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"cOi" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"cOo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/command/cic) -"cOy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"cOz" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; +"cOk" = ( +/obj/structure/sign/safety/escapepod{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"cOH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cOp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/engineering/upper_engineering/notunnel) -"cOZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"cOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"cOU" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "cPg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"cPq" = ( -/obj/structure/machinery/light{ - dir = 4 +"cPj" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cPm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"cPy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/engineering/upper_engineering) -"cPv" = ( -/obj/item/tool/warning_cone{ +/obj/item/device/radio{ pixel_x = 4; - pixel_y = 14 + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"cPQ" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"cPF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cPN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"cPX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"cQa" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/hangar) -"cPZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/living/gym) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"cQe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) +"cQh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) "cQi" = ( /turf/closed/wall/almayer, /area/almayer/living/starboard_garden) -"cQs" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +"cQQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/aft_hallway) -"cQu" = ( -/obj/vehicle/powerloader, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"cQY" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cQZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"cRh" = ( /obj/structure/platform{ - dir = 4 + dir = 1 }, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/repair_bay) -"cQA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/area/almayer/engineering/engine_core) -"cQE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"cRs" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"cRu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"cQL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"cRL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/hull/upper_hull/u_f_s) -"cQM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cRS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/area/almayer/hull/upper_hull/u_f_s) -"cRb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"cRi" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"cRW" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"cRB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"cSb" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"cSn" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"cSp" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"cSk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/obj/structure/machinery/status_display{ + pixel_y = -32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/vending/coffee, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hallways/starboard_hallway) -"cSs" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"cSu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) "cSy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) +"cSH" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"cSI" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) "cSP" = ( /obj/structure/barricade/handrail, /obj/structure/largecrate/supply/generator, @@ -8923,15 +7570,6 @@ "cSV" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) -"cTf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/hydroponics) "cTg" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -8939,245 +7577,201 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cTi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" +"cTm" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cTp" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 }, -/area/almayer/command/cic) -"cTj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"cTu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"cTV" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"cTY" = ( +/area/almayer/maint/hull/lower/l_m_s) +"cTq" = ( +/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"cUx" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cTB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower) +"cTD" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"cTQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/morgue) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cTS" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "cUy" = ( /obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"cUM" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"cUC" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"cUF" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 }, -/area/almayer/engineering/lower_engineering) -"cUP" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cUG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"cUN" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cUS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/bluefull, /area/almayer/squads/delta) +"cUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"cVj" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) "cVm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"cVw" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"cVD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/item/ammo_magazine/rifle/m4ra, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"cVn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/armory) -"cVN" = ( -/obj/structure/stairs{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cVs" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cVC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/stair_clone/upper) -"cVT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"cVX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"cWm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"cWv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/area/almayer/maint/hull/upper/u_f_s) +"cVM" = ( +/obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"cWC" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/alpha) -"cWP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"cWQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" +"cWc" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"cWk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"cWo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/briefing) -"cXd" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"cWy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"cWA" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"cXo" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"cXp" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/area/almayer/maint/hull/lower/l_f_p) +"cWI" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cWL" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"cWM" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/almayer/engineering/upper_engineering/starboard) -"cXx" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"cWV" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"cXz" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"cXm" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cXq" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"cXr" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/almayer/hallways/vehiclehangar) +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) "cXA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) @@ -9185,91 +7779,130 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"cXK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"cXH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) "cXN" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/cryo) -"cXW" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +"cXX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/cells) -"cYd" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"cYa" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) -"cYA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"cYf" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"cYg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"cYB" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_m_p) +"cYw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/squads/charlie) -"cYF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"cYE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cYI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_f_p) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) "cYJ" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cYU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"cYL" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) -"cZi" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"cYM" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cYS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"cYZ" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cZc" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "cZk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network, @@ -9278,10 +7911,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"cZv" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) "cZB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -9293,267 +7922,222 @@ "cZE" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cZS" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"cZH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"cZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"cZQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"cZR" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"dae" = ( -/obj/structure/safe, -/obj/item/coin/platinum, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/clothing/accessory/storage/holster, -/obj/item/weapon/gun/pistol/es4, -/obj/item/ammo_magazine/pistol/es4, -/obj/item/ammo_magazine/pistol/es4, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"dap" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/structure/machinery/cryo_cell{ + dir = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dab" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) "dat" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"daJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, +"dau" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"daM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"daQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/faxmachine, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"daA" = ( +/obj/structure/catwalk{ + health = null }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"daC" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) "daT" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) +"daX" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "daY" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"dbh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"dbk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) +"daZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "dbo" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"dbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"dby" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"dbB" = ( -/obj/structure/pipes/standard/cap/hidden{ +"dbr" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"dbu" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dbE" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"dbH" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dbJ" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/medical_science) -"dbI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"dcj" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"dcu" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dcv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"dcB" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dcP" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"dbK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + name = "ship-grade camera" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"dbL" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"dcY" = ( +/obj/structure/orbital_cannon{ + density = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"dda" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/stern_hallway) -"dbS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"ddf" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ddi" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"ddq" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ddw" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ddy" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/medical/upper_medical) -"dbW" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"ddH" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"dcn" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/port_hallway) -"dcS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ddN" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" + icon_state = "pipe-c" }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ddV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ddW" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" }, -/area/almayer/command/cic) -"dcY" = ( -/obj/structure/orbital_cannon{ - density = 0 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"ddg" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/port_umbilical) -"ddu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) "ddZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -9562,225 +8146,130 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"deo" = ( +"ded" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"def" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dep" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"deQ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/chief_mp_office) -"dey" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"dez" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"deC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"deJ" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"deT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"deY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"dfk" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"deU" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"dfm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "dfw" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"dfC" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"dfF" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/offices) -"dfO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"dfP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"dfR" = ( +"dfD" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"dfU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"dfY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 }, -/area/almayer/hallways/hangar) -"dfX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 }, -/area/almayer/hallways/port_umbilical) -"dgq" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"dgt" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 }, -/area/almayer/shipboard/brig/execution) +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"dgG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"dgM" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"dgS" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) "dhe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dhj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) "dhr" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "32" }, /area/almayer/hallways/hangar) -"dhE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +"dhu" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dhC" = ( +/obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"dhF" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"dhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "dhH" = ( /obj/structure/cargo_container/arious/mid, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dhI" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"dhL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"dhP" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) "dhT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/briefcase, @@ -9792,170 +8281,117 @@ }, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) -"dhU" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"dia" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 +"dhZ" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"dib" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"did" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"dim" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"dih" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered/agent) -"dii" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"dik" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 +/obj/item/book/manual/atmospipes{ + pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"din" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"diq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"dis" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"dit" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hallways/port_hallway) -"diw" = ( -/obj/structure/bed/chair{ +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"diu" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"diE" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"diY" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/aft_hallway) +"diC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"diD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"djc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"diI" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/port_umbilical) -"djn" = ( +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"diJ" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/vehiclehangar) -"djp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"djK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"diK" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"djP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"djQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" + name = "ship-grade camera"; + pixel_y = 6 }, -/area/almayer/squads/charlie) -"djS" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"diR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"djx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"djF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"djU" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"djX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"djZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/engine_core) -"dka" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"dkg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) "dko" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -9966,178 +8402,168 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dks" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"dkL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"dkp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer/research/containment/corner_var1{ +/obj/structure/machinery/light{ dir = 4 }, -/area/almayer/medical/containment/cell) -"dkY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"dlf" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"dlh" = ( -/obj/structure/phone_base{ - name = "Brig Offices Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Main Offices"; - pixel_y = 32 +/area/almayer/maint/hull/upper/u_f_s) +"dkG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dkX" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) "dli" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"dlz" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) "dlG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"dlI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"dlM" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"dlN" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/offices) +"dlQ" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"dlS" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) "dlV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"dme" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dmm" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +"dmb" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, -/area/almayer/command/computerlab) -"dmr" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"dmc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"dmo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hallways/starboard_hallway) -"dmw" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"dmt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"dmx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north1) -"dmG" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"dmI" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"dmA" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"dmB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/turf/open/floor/almayer/plate, /area/almayer/shipboard/weapon_room) -"dmL" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"dmD" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"dmO" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 }, -/area/almayer/engineering/laundry) -"dmM" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = -17 +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"dmR" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"dmY" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/surgery) -"dmT" = ( -/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"dnh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"dnn" = ( /obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 + pixel_x = 7; + pixel_y = -25 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 }, -/area/almayer/command/cic) +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "dno" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -10145,6 +8571,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"dnr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) "dnE" = ( /obj/structure/platform_decoration{ dir = 8 @@ -10157,218 +8589,248 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"dok" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ +"dnO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"dnR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dob" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"dog" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dov" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) -"doo" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"dop" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"doH" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 }, -/area/almayer/shipboard/brig/processing) -"doq" = ( /obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"dos" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"doI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"dou" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"doB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/laundry) -"doK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"doK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"doM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +"doN" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) +"doS" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/almayer/living/briefing) -"doP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"doT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"doX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"dpo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"dpa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 }, -/area/almayer/hallways/starboard_hallway) -"dpA" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dpd" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"dpp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"dpC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"dpK" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"dpS" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/almayer/medical/lower_medical_medbay) -"dpU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/starboard) -"dpY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"dpZ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"dqb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/engineering/engine_core) -"dqe" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"dqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/shipboard/brig/main_office) -"dqh" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"dqj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"dqr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"dqo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"dqB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/tankerbunks) +"dqF" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"dqN" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/hull/lower_hull/l_m_s) -"dqs" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"dqO" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/command/computerlab) -"drj" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/pizzabox/mushroom{ + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"dqP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/charlie) -"drt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"dqQ" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"dqR" = ( +/obj/structure/machinery/power/terminal, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) +/area/almayer/maint/hull/upper/u_f_p) +"dqY" = ( +/obj/structure/bed, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"drc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "dru" = ( /turf/open/floor/almayer, /area/almayer/living/gym) @@ -10377,81 +8839,79 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"drw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "drD" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"drH" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +"drM" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" }, -/area/almayer/hull/lower_hull/l_f_p) -"drL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"drN" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) "drO" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"dsi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"drV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/cryo_cells) -"dsm" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"drX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lower_medical_medbay) -"dsp" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"dse" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dsj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/squads/req) -"dsv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"dsl" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"dst" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"dsw" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/area/almayer/command/cic) +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) "dsz" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 8; @@ -10459,27 +8919,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"dsE" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"dsH" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"dsT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"dsU" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"dsW" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) "dsX" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/nitrogen, @@ -10492,31 +8940,51 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"dtd" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"dth" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dtl" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"dtn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"dtv" = ( -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) +"dtp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"dtu" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"dtx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "dtz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -10524,21 +8992,24 @@ "dtJ" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha) -"dua" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"duk" = ( -/obj/structure/sign/poster{ +"dtK" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"dtX" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"dtY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) "dup" = ( /obj/structure/bed/chair/office/dark, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10546,37 +9017,26 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"dur" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"dut" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/tankerbunks) -"duF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"duy" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"duA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"duI" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) "duK" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -10588,148 +9048,106 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"duP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"duV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"dvd" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"dvj" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 }, -/area/almayer/squads/charlie) -"dvg" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"dvk" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 9"; + buildstate = 1 }, -/area/almayer/living/cryo_cells) -"dvm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"dvE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"dvx" = ( -/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"dvJ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"dvM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, /obj/structure/machinery/light{ - dir = 4; - invisibility = 101 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"dvU" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/almayer/living/briefing) -"dvB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"dvH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dvY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"dvK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"dvL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"dvR" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"dwb" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/almayer/command/cichallway) -"dwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +"dwg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/processing) +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "dwp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"dwE" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" +"dwB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/bravo) +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"dwM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "dwN" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) +"dwT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "dwV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -10741,12 +9159,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"dxa" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "dxe" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, @@ -10755,60 +9167,22 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"dxr" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"dxE" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"dxB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, -/area/almayer/medical/morgue) -"dxZ" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"dxH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"dyc" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"dxI" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"dyi" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "dyk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -10816,21 +9190,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"dyr" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 +"dym" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"dyC" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"dyB" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "dyF" = ( /obj/structure/machinery/shower{ dir = 1 @@ -10845,15 +9221,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"dyZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"dyM" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dyV" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dyX" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) "dze" = ( /obj/structure/bed/chair{ dir = 1 @@ -10863,201 +9245,119 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dzo" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"dzs" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"dzt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"dzx" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"dzE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"dzH" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_p) -"dzI" = ( -/obj/structure/machinery/light{ - dir = 1 +"dzz" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/area/almayer/command/cic) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "dzK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dzZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"dAe" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"dAp" = ( /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"dAi" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 8; - pixel_x = 16 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"dAB" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hull/lower_hull/l_f_s) -"dAE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"dAP" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"dAV" = ( -/turf/open/floor/almayer{ +/area/almayer/hallways/upper/aft_hallway) +"dAv" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/basketball) -"dAW" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"dBp" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" + id = "gym_2"; + name = "treadmill" }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/execution) -"dBs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dAw" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"dAy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"dAG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dAO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "NW-out"; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/squads/charlie) -"dBt" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"dBa" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/shuttle/dropship/light_grey_top_right, +/area/almayer/hallways/hangar) +"dBu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" }, -/area/almayer/command/cic) -"dBx" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/command/cichallway) -"dBA" = ( -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"dBD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ dir = 4; - pixel_x = 24 + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"dBI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null }, -/area/almayer/shipboard/brig/perma) -"dBC" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) "dBK" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -11066,148 +9366,115 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices) -"dBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"dCg" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) "dCm" = ( /turf/open/floor/almayer, /area/almayer/engineering/laundry) -"dCo" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +"dCC" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/stern_hallway) -"dCz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"dCD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"dCG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"dCH" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 + icon_state = "N" }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"dCE" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"dCI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 }, -/area/almayer/command/securestorage) -"dCK" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"dCM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"dCV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dCQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/command/cichallway) -"dDr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"dCZ" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dDb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"dDl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"dDn" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dDt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"dDA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) "dDB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"dDC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"dDJ" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"dDG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) "dDK" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -11216,37 +9483,33 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dEc" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ +"dDR" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_a_p) -"dEf" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"dDY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"dDZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "dEm" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"dEA" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) "dEC" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "23" @@ -11264,56 +9527,114 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"dFp" = ( +"dEZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"dFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"dFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"dFj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/delta) -"dFv" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_a_s) -"dFx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dFK" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dFO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"dFP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"dFS" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"dGd" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"dFC" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/area/almayer/maint/hull/upper/u_a_s) +"dGl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/shipboard/weapon_room) -"dGq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/living/bridgebunks) -"dGw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"dGm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dGs" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"dGu" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) "dGA" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -11328,122 +9649,199 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"dGM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" +"dGF" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, /area/almayer/squads/alpha) +"dGQ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) "dGT" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dHc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) "dHn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/starboard) -"dHH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/vehiclehangar) -"dHV" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"dIc" = ( -/obj/structure/bed/chair{ - dir = 1 +"dHp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/squads/alpha) -"dIA" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "waste_lower_out" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"dHt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"dHE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"dIF" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"dHI" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"dIR" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"dHS" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"dIf" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"dIm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 }, -/area/almayer/living/starboard_garden) -"dIU" = ( -/obj/structure/bed/chair/comfy/orange, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Dropship Remote Control Console"; + pixel_y = 12; + shuttleId = "dropship_alamo"; + disabled = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"dIo" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dIr" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"dIA" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "waste_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"dIF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"dII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"dIX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"dJf" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"dJc" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"dJh" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/hull/upper/u_a_p) +"dJw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "dJy" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dJF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) -"dJM" = ( -/obj/structure/machinery/light{ - dir = 4 +"dJD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"dJN" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/clothing/under/liaison_suit, +/obj/item/clothing/under/liaison_suit/outing, +/obj/item/clothing/under/liaison_suit/suspenders, +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" }, -/area/almayer/living/captain_mess) -"dJS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/outing/red, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "dJW" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -11457,103 +9855,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"dJZ" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"dKc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"dKd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/delta) -"dKe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"dKg" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) "dKk" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"dKn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"dKo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" - }, -/turf/open/floor/strata{ - desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, -/area/almayer/shipboard/sea_office) "dKp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"dKq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) "dKB" = ( /obj/structure/machinery/light{ dir = 1 @@ -11561,35 +9871,39 @@ /obj/structure/machinery/cm_vending/clothing/commanding_officer, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"dKL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +"dKD" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"dKJ" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 }, -/area/almayer/shipboard/brig/cells) -"dLg" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"dLe" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"dLm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" - }, -/area/almayer/medical/containment/cell) -"dLo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"dLr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "dLt" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -11597,285 +9911,238 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"dLG" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight{ - disabled = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"dLM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"dMo" = ( -/obj/structure/disposalpipe/segment{ +"dLu" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"dLE" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/perma) +"dLL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"dMp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dLP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"dLQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"dLU" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/area/almayer/command/telecomms) +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dMC" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "dME" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"dMP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"dMV" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"dMY" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"dNq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"dMZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"dNa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 10 }, -/area/almayer/hull/upper_hull/u_f_s) -"dNb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dNw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"dND" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"dNL" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"dNe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"dNp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "W" }, -/area/almayer/medical/medical_science) -"dNr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dNW" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"dOh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"dOl" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"dOt" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"dOF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"dOM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/delta) -"dNN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"dNX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"dOd" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"dOf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" }, -/area/almayer/hallways/aft_hallway) -"dOk" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 2"; - buildstate = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"dPj" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 }, -/area/almayer/engineering/engine_core) -"dOs" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dPp" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"dOH" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" + dir = 8 }, -/area/almayer/medical/medical_science) -"dOO" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_a_s) -"dOQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/ladder{ + height = 2; + id = "cicladder3" }, -/area/almayer/hallways/port_hallway) -"dOY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper) +"dPv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/squads/charlie) -"dPh" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" }, -/area/almayer/shipboard/weapon_room) -"dPj" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dPY" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"dPA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/area/almayer/squads/charlie) -"dQd" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"dPR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" }, -/area/almayer/living/briefing) +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"dQg" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"dQn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) "dQp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) -"dQr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"dQx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ +"dQv" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "red" + name = "ship-grade camera" }, -/area/almayer/shipboard/navigation) -"dRd" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"dQC" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"dQD" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dQT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/bridgebunks) -"dRf" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 }, -/area/almayer/command/lifeboat) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"dQX" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dRb" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dRe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) "dRh" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -11898,467 +10165,339 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"dRj" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"dRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"dRr" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/starboard_garden) -"dRw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"dRy" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 }, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) "dRz" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"dRA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) "dRC" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/processing) -"dRK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"dRW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +"dRH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"dRU" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"dSe" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"dSm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dSp" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "dSx" = ( /obj/structure/disposalpipe/segment, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"dSS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"dSW" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 +"dSC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"dSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/operating_room_four) -"dTc" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/almayer/orange/north, +/area/almayer/living/starboard_emb) +"dSI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"dSJ" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"dTd" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"dTe" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "dTo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/basketball) -"dTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"dTt" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"dTz" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"dTG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/shipboard/brig/cells) -"dTO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 +"dTJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/ce_room) -"dTT" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"dTL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ dir = 4; - name = "ship-grade camera" + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"dUf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/lower/starboard_midship_hallway) +"dTP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"dTQ" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "blue" + health = 80 }, -/area/almayer/hallways/aft_hallway) -"dUh" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"dTY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/shipboard/starboard_point_defense) -"dUk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dUd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"dUg" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"dUp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"dUi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"dUn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"dUr" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "dUv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dUx" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"dUA" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"dUD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"dUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"dUw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dUF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/sea_office) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) "dUN" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) -"dUO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "cargo" +"dUU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 }, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) "dUX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/ce_room) +"dUY" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) "dVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"dVd" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"dVj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"dVm" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) "dVr" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"dVs" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) "dVu" = ( /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"dVM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"dVR" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"dVw" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) -"dVU" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dVy" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_f_s) -"dWc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"dVz" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"dVP" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"dVS" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"dVW" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"dWe" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/barricade/handrail/medical{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"dWh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"dWk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/almayer/squads/charlie) -"dWd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"dWu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dWv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"dWf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"dWn" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, -/area/almayer/living/gym) -"dWw" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/hangar) -"dWy" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"dWD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/obj/item/storage/belt/utility, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"dWK" = ( -/turf/open/floor/almayer{ +/area/almayer/hallways/lower/repair_bay) +"dWF" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"dWH" = ( +/obj/structure/machinery/light/small{ dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"dWL" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + pixel_y = 20 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "dWM" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -12369,19 +10508,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"dXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"dWT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"dWV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"dXd" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "dXl" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -12390,60 +10539,45 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dXt" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"dXu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"dXA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"dXE" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +"dXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering/starboard) -"dXQ" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"dXY" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"dYa" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"dXp" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dXr" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"dXv" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) +"dXw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" }, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"dXV" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"dXZ" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) "dYe" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12451,19 +10585,16 @@ /obj/item/tool/warning_cone, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"dYr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) "dYs" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/general_equipment) +"dYu" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) "dYy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -12475,16 +10606,32 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/grunt_rnr) -"dYF" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 +"dYz" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"dYA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"dYE" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"dYH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "dYI" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -12496,6 +10643,46 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"dYJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dYM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"dYN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"dYU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dYY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "dZd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -12526,244 +10713,197 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"dZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"dZk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"dZt" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "dZy" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) -"dZD" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +"dZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"dZI" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dZH" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/machinery/autodispenser{ + dir = 4 }, -/area/almayer/engineering/starboard_atmos) -"dZR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dZW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/living/cafeteria_officer) -"eaa" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/living/basketball) -"eab" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"eab" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"eag" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"eal" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"ean" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/perma) -"eav" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha_bravo_shared) -"eaP" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"eaQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/gym) -"eba" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"ebc" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"ebe" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 }, -/area/almayer/living/cryo_cells) -"ebg" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"eau" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "sterile_green_side" + icon_state = "pipe-c" }, -/area/almayer/medical/lower_medical_lobby) -"ebs" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/aft_hallway) +"eaA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/weapon_room) -"ebt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"eaN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"eaO" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 }, -/area/almayer/command/cic) -"ebB" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ebk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ebD" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/medical/medical_science) -"ebG" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"ebJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"ecd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/hangar) -"ebN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"ecg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/squads/charlie) -"ecb" = ( -/obj/structure/bed/chair{ +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ech" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"eco" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/living/officer_study) -"ecf" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"ect" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"ecz" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"ecA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"ecC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/repair_bay) -"ecH" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ecw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ecI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) "ecR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"ecS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) "ecW" = ( /obj/structure/machinery/light{ dir = 1; @@ -12771,91 +10911,106 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"ecZ" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/almayer/shipboard/sea_office) -"edb" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"ecY" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"edc" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"edh" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"edi" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"edp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"edl" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"edo" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/command/lifeboat) -"edF" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"edr" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/living/briefing) -"edG" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"eds" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"edx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"edI" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"edE" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"edN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"edP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "edS" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"edT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"edU" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) "edW" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/weapon_room) +"edX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"edY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) "eea" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -12868,299 +11023,144 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"eee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"eej" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"eeq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"eex" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"eeM" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"eeP" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"eeU" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"eeX" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"eeY" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"efc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"efd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"efe" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; +"een" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"eff" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 }, -/area/almayer/hallways/repair_bay) -"efl" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"eeu" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hallways/port_hallway) -"eft" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"eez" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eeC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_missiles) +"eeE" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" }, -/area/almayer/living/gym) -"efu" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"efz" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eeO" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, /obj/item/stack/sheet/glass{ amount = 50; pixel_x = 3; pixel_y = 3 }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"efA" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"efL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"efQ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"efX" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/aft_hallway) -"ege" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"eeQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"eeZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"egk" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"efr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/command/cic) -"egy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"efs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hallways/aft_hallway) -"egA" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"efu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"efv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"egC" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/alpha) -"egG" = ( -/obj/structure/bed/chair{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"efx" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"eho" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"ehv" = ( -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/lower/port_midship_hallway) +"efU" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"egl" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/hull/lower_hull/l_m_s) -"ehx" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) }, -/area/almayer/medical/operating_room_two) -"ehC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"egx" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"egG" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"ehS" = ( +/area/almayer/squads/alpha_bravo_shared) +"egT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"egZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ pixel_y = 7 @@ -13175,122 +11175,144 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/medical/lower_medical_medbay) -"ehT" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" +"eha" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ehl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"ehC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/upper_hull) -"ehW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ehE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ehG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/computerlab) -"ehX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"ehZ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"eia" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/structure/platform{ - dir = 4 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 }, -/area/almayer/engineering/engine_core) -"eiq" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"eir" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"eib" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eid" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/starboard) -"eit" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"eip" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"eiA" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"eiB" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"eiC" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"eiE" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"eiF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/hallways/aft_hallway) -"ejh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eiH" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"eiL" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"eiM" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_f_p) -"ejA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ejf" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_f_p) -"ejL" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ejP" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"ejT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" + unacidable = 1; + unslashable = 1 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) "ejU" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13311,79 +11333,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"ekl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"ekm" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"eko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) "ekq" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ekr" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"ekt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"ekD" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"ekG" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"ekJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null +"ekB" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"ekS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) "ekT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -13391,196 +11356,151 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"elr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"els" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/starboard) -"elu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"elP" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"elS" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ele" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 }, -/area/almayer/shipboard/starboard_point_defense) -"elZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"elw" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"elB" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"elG" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"emg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"emh" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"emi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/port_umbilical) -"emF" = ( -/obj/structure/machinery/light{ - dir = 4 + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/bravo) -"emH" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"elH" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"elJ" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"elN" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"elQ" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"elR" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"emq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"emw" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/engineering/upper_engineering/port) -"emJ" = ( -/obj/structure/machinery/prop/almayer/computer{ +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"emy" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"emA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "emK" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"emW" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"ena" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"emL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"emO" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"emR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"emV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"enb" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"emX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/engineering/lower_engineering) -"eni" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"enc" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "enl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cargo_container/wy/mid, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"enC" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +"enw" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"enz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_a_s) -"enJ" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/medical/morgue) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "enM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -13596,33 +11516,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"enR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"enO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/command/securestorage) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "enS" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"enY" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"eoe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"enX" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"eoc" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) "eoi" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -13637,53 +11551,22 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"eoj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"eoq" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"eor" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"eou" = ( -/turf/open/floor/almayer{ +"eoF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"eoC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/medical/containment/cell) -"eoG" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"eoO" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) "eoS" = ( /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, /turf/open/floor/plating, @@ -13691,114 +11574,92 @@ "epe" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"epn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ +"eph" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "orange" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/engineering/upper_engineering) -"eps" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/pilotbunks) -"epz" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/starboard_atmos) -"epC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"epL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"epj" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/engineering/engine_core) -"eqf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eqm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"eqo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/area/almayer/maint/hull/lower/l_m_s) +"epu" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/almayer/command/cichallway) -"eqv" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"epM" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"epR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) -"eqz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eql" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"erk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"eqs" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"eqN" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"eqR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"eqY" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"erw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) "erA" = ( /obj/structure/machinery/shower{ dir = 4 @@ -13807,169 +11668,100 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"erG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"erD" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Main Offices"; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_p) -"erS" = ( -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"erF" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"erM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/almayer/plate, /area/almayer/living/bridgebunks) -"erT" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer{ - icon_state = "tcomms" +"erO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null }, -/area/almayer/command/telecomms) -"ese" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"erU" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"esi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"esy" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/auxiliary_officer_office) -"esA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"esD" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"esF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"erX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"esc" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "esJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"esL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"esU" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"etk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"etn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"eto" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"esZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/phone_base/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" }, -/area/almayer/shipboard/brig/processing) -"etr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"etb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/living/briefing) -"ets" = ( -/obj/structure/machinery/light{ +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ete" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"etf" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) "etw" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -13977,88 +11769,54 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"etB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +"etH" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"etN" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/area/almayer/living/captain_mess) -"etF" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" +/obj/item/device/multitool{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/hydroponics) -"etI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, +"etY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"etQ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"eui" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"eul" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"eut" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/hallways/lower/starboard_umbilical) +"euc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"eur" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) "euu" = ( /obj/structure/platform, /obj/structure/target{ @@ -14073,20 +11831,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"euA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"euL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"euI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"euT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) "euX" = ( /obj/structure/supply_drop/delta, /obj/structure/machinery/light{ @@ -14094,18 +11854,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"evr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) "evv" = ( /obj/structure/disposalpipe/trunk{ dir = 8 @@ -14117,65 +11865,34 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"evF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +"evz" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"evI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/cichallway) -"evN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"evX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ewb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"ewc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"ewj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"ewn" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"evP" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ pixel_x = 7; - pixel_y = 4 + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ewq" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "ewt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14191,72 +11908,96 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"ewG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"exd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +"ewE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/living/briefing) -"exe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"ewH" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 }, -/area/almayer/lifeboat_pumps/north2) -"exi" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ewT" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ewU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"exa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"exj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/command/cichallway) -"exr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"exo" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/almayer/squads/req) -"exu" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"exq" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"exE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/squads/alpha) -"exS" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"exL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"exP" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) "exT" = ( /obj/effect/attach_point/weapon/dropship2/left_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"eye" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "eyk" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -14273,98 +12014,123 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"eyA" = ( +"eyq" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"eyB" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"eyK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"ezq" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"eyM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"eyN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"eyQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"eyW" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eyX" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 }, -/area/almayer/hallways/port_hallway) -"ezA" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"ezk" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 12"; + buildstate = 1 }, -/area/almayer/hallways/starboard_hallway) -"ezE" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"ezt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ezw" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/morgue) -"ezK" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ezx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"ezQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/phone_base{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"ezC" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/medical/lockerroom) -"ezR" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 }, -/area/almayer/living/briefing) -"ezZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/storage/box/flashbangs{ + pixel_x = -8; + pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/engineering/lower_engineering) -"eAa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"ezM" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"eAd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ezW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) "eAf" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14374,105 +12140,65 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"eAn" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 +"eAq" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eAs" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"eAA" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"eAC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/area/almayer/shipboard/brig/cells) -"eAo" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_s) -"eAz" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"eAF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "eAG" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"eAI" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) "eAJ" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) -"eAK" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"eAQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"eAR" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 - }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/hydroponics) "eAS" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -14480,130 +12206,91 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"eBc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"eBl" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/alpha_bravo_shared) -"eBq" = ( -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"eBr" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" +"eAW" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/living/gym) -"eBs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eBa" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie) -"eBT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"eCa" = ( -/obj/structure/machinery/door/window/westleft{ - dir = 2 - }, -/obj/structure/machinery/shower, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "sterile" - }, -/area/almayer/medical/upper_medical) -"eCe" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "pipe-c" }, -/area/almayer/command/cic) -"eCf" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"eCm" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"eCr" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/area/almayer/hallways/lower/starboard_midship_hallway) +"eBg" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"eBj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"eBD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eBQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"eCc" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 }, -/area/almayer/living/port_emb) -"eCs" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/obj/structure/machinery/door_control{ + id = "cl_shutters"; + name = "Privacy Shutters"; + pixel_x = -5; + pixel_y = 6; + req_access_txt = "200" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "RoomDivider"; + name = "Room Divider"; + pixel_x = -5; + pixel_y = -3; + req_access_txt = "200" }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"eCd" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"eCf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, /area/almayer/hallways/hangar) -"eCt" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) +"eCk" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"eCq" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"eCu" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) "eCw" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -14635,139 +12322,101 @@ /obj/item/toy/beach_ball/holoball, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eCF" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"eCN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"eCQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"eCY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eCT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"eCZ" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"eDd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"eDl" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"eDm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + req_one_access = null; + req_one_access_txt = "2;7" }, -/obj/structure/machinery/status_display{ - pixel_y = -29 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"eDh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 }, -/area/almayer/squads/delta) -"eDs" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eDi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"eDu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"eDz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) "eDK" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"eDM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"eDY" = ( +"eDR" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"eDZ" = ( -/obj/structure/closet{ - name = "backpack storage" +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eDX" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) "eEh" = ( /turf/closed/wall/almayer, /area/almayer/command/lifeboat) -"eEq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"eEi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, -/area/almayer/squads/alpha) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "eEr" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; @@ -14775,146 +12424,78 @@ }, /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"eEv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"eEC" = ( +"eEz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"eEG" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) -"eEI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"eEA" = ( +/obj/structure/stairs{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"eEN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"eEV" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/medical/containment/cell) -"eFc" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 4"; - buildstate = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"eEP" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"eET" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) "eFe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"eFx" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"eFD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 +"eFF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/shipboard/navigation) +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) "eFG" = ( /turf/closed/shuttle/dropship2{ icon_state = "73" }, /area/almayer/hallways/hangar) -"eFI" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"eFL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"eFO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) "eFP" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) -"eFW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) +"eGe" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "eGf" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -14924,52 +12505,120 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"eGm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer{ - icon_state = "plate" +"eGu" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/almayer/command/cichallway) -"eGn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eGz" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"eGA" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"eGC" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"eGD" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eGH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"eGB" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" }, -/area/almayer/hull/lower_hull) +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) "eGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"eGZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"eGP" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"eGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hallways/hangar) +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"eGU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"eGW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"eHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) "eHm" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -14980,124 +12629,132 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"eHq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eHG" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"eHI" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"eHL" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"eHN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/shipboard/brig/lobby) -"eHz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"eHU" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ dir = 4; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"eHC" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 + name = "ship-grade camera" }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"eHQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"eIe" = ( +/obj/structure/closet/secure_closet/engineering_welding, /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"eIa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"eIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - layer = 3 - }, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "eIl" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/almayer/command/securestorage) -"eIw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"eIE" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"eIK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/stern_hallway) -"eIF" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"eII" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"eIP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) "eIS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"eIU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"eIT" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"eIV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"eJb" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"eJe" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 4; + pixel_x = -16 }, -/area/almayer/living/bridgebunks) +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"eJj" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/closet/secure_closet/guncabinet/red, +/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/lower/l_f_s) "eJs" = ( /obj/structure/bed/sofa/vert/grey, /obj/structure/bed/sofa/vert/grey{ @@ -15105,6 +12762,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"eJw" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) "eJx" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -15112,51 +12776,45 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"eJF" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"eJG" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"eJW" = ( +"eJD" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"eJJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hallways/port_hallway) -"eKd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"eJQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"eKi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hallways/starboard_umbilical) +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) "eKj" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -15164,35 +12822,6 @@ }, /turf/open/floor/plating, /area/almayer/living/offices) -"eKl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/living/basketball) -"eKp" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) -"eKq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) "eKs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15202,87 +12831,105 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"eKC" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"eKE" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"eKH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/area/almayer/living/officer_study) -"eKG" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"eKI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"eKO" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 7"; + buildstate = 1 }, -/area/almayer/hallways/hangar) -"eKK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"eKT" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 10"; + buildstate = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"eKW" = ( -/obj/structure/stairs{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"eKZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"eLb" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"eLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"eLd" = ( -/obj/structure/closet/firecloset, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"eLK" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"eLu" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"eLD" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) "eLN" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"eLU" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" +"eLO" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 }, -/area/almayer/hallways/port_hallway) -"eMa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"eLV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"eLX" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) "eMb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -15290,15 +12937,20 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eMo" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"eMq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"eMw" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) "eMD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15316,149 +12968,108 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"eME" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"eMQ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"eMR" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +"eMG" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"eMS" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/area/almayer/living/briefing) -"eMU" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"eMK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_a_s) -"eMW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/port_midship_hallway) +"eMN" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"eMP" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/area/almayer/shipboard/brig/main_office) -"eNd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"eMV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"eNp" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"eNe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eNf" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/living/starboard_emb) -"eNB" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/aft_hallway) +"eNj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"eNv" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "eND" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"eNR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/evidence_storage) -"eOb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +"eNN" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"eNU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"eOc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"eOq" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/almayer/engineering/upper_engineering/port) +"eOe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"eOo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "eOu" = ( /turf/closed/wall/almayer, /area/almayer/living/synthcloset) @@ -15466,20 +13077,17 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"eOD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) "eOJ" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering) -"eOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) "eON" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -15499,190 +13107,146 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"eOV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"eOY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"eOP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/command/cic) -"ePg" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"ePo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/bed/chair/bolted{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"ePC" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/area/almayer/shipboard/brig/perma) -"ePq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/area/almayer/medical/lockerroom) -"ePs" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"ePw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/living/basketball) -"ePz" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/shipboard/port_missiles) -"ePF" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"ePH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lower_medical_lobby) -"ePI" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"ePJ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"ePM" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/living/grunt_rnr) -"ePK" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) "ePX" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/pilotbunks) -"eQg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"eQp" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"eQq" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ +"eQa" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"eQx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"eQi" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"eQl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" }, -/area/almayer/hull/upper_hull/u_a_s) -"eQG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"eQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eQz" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/squads/req) -"eQJ" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 4; - pixel_x = -16 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"eQA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"eQC" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"eQI" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"eQP" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/hallways/hangar) -"eQR" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/catwalk{ + health = null }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "eQS" = ( /turf/closed/shuttle/dropship2{ icon_state = "81" }, /area/almayer/hallways/hangar) -"eQY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"eQZ" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"eRl" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"eRq" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 +"eRf" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) +"eRq" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 }, /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal7"; @@ -15690,198 +13254,233 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"eRy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"eRz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"eRC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eRS" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/shipboard/navigation) -"eRK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) "eRT" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"eSa" = ( -/obj/structure/machinery/light{ - dir = 4 +"eRU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"eRW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"eSb" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 }, -/area/almayer/medical/morgue) -"eSH" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"eSg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/command/cic) -"eSI" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"eSp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ dir = 1; - icon_state = "red" + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 }, -/area/almayer/shipboard/brig/general_equipment) -"eSM" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"eSq" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/starboard) -"eTh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"eSO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"eSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/surgery) -"eTo" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"eTy" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/perma) -"eTA" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"eSZ" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"eTa" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"eTs" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eTt" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "eTE" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eTQ" = ( -/obj/structure/machinery/light{ +"eTK" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"eTS" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eTU" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 }, -/area/almayer/hallways/hangar) -"eUd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 }, -/area/almayer/command/lifeboat) -"eUk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 }, -/area/almayer/hallways/aft_hallway) -"eUv" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"eUw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eUC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/bridgebunks) -"eUV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"eUF" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"eUT" = ( +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_f_s) -"eVe" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eVr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"eVg" = ( +/area/almayer/maint/hull/lower/l_f_s) +"eVu" = ( /obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 }, -/area/almayer/engineering/engineering_workshop) -"eVm" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/hull/upper_hull/u_m_p) -"eVs" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eVw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" }, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"eVy" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) "eVz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -15908,48 +13507,44 @@ "eVR" = ( /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"eVX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"eVZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"eWf" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"eWj" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"eWp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"eVV" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eWc" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"eWd" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eWh" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"eWw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"eWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"eWz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "eWH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -15960,40 +13555,51 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"eWU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" +"eWM" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"eWN" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) -"eXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"eWO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"eWR" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eXh" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ pixel_x = 8; - pixel_y = -26 + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"eXr" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"eXk" = ( -/obj/structure/sink{ +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"eXu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "sterile" + id = "crate_room2"; + name = "\improper Storage Shutters" }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) "eXy" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) @@ -16003,229 +13609,127 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"eXS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"eXM" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eXO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"eXR" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"eYa" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"eYb" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/cryo) "eYc" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"eYp" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"eYr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"eYs" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"eYz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"eYD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"eYK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"eYL" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"eYM" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"eYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/req) -"eYQ" = ( -/obj/structure/toilet{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"eYZ" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"eZj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie_delta_shared) -"eZC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 +/area/almayer/engineering/lower) +"eYu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced/ultra{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"eZI" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"eZm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"eZq" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/lower/l_f_s) +"eZP" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/aft_hallway) +"fal" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fas" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, -/area/almayer/engineering/upper_engineering/port) -"eZN" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"faz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/command/lifeboat) -"eZU" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"faE" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"faj" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"fak" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) -"fat" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"fau" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/navigation) -"fav" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"faH" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"faW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"fbc" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"fbd" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/medical/lower_medical_medbay) -"fbe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/device/camera{ + pixel_x = -9; + pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/photo_album{ + pixel_x = -6; + pixel_y = -17 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"faG" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"faK" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"faS" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"fbf" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/area/almayer/command/cic) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) "fbj" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer{ @@ -16235,44 +13739,21 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"fbn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"fbp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) +"fbq" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fbr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) "fbv" = ( /obj/structure/machinery/door/window/westright{ dir = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"fbx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) "fbF" = ( /obj/structure/bed/chair/comfy/blue, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16280,96 +13761,135 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fbM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"fbI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/engineering/laundry) -"fbT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"fbO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"fbP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/medical/upper_medical) -"fbZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"fci" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"fcl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fce" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fcm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"fcA" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + pixel_y = 23; + req_access_txt = "200" }, -/area/almayer/squads/bravo) -"fcq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fcD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) "fcE" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) -"fcH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fcF" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fcG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fdb" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/aft_hallway) +"fdd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"fcN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"fcO" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fdj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"fdr" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"fdu" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) "fdw" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_top_right, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"fdz" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"fdG" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "fdJ" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -16380,40 +13900,56 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"fdV" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +"fdO" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"fdP" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/area/almayer/medical/lower_medical_lobby) -"fek" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fdZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"fed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"fer" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) -"feC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/almayer/shipboard/brig/lobby) -"feD" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fee" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/powered/agent) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"fel" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"fen" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "feO" = ( /obj/structure/sink{ dir = 1; @@ -16428,23 +13964,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"feV" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/sea_office) "feZ" = ( /obj/structure/machinery/flasher_button{ id = "briefing_flash"; @@ -16458,100 +13977,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"ffg" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, -/area/almayer/living/briefing) -"ffr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"ffb" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ffj" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"ffl" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"ffn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hull/lower_hull/l_a_p) -"ffv" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/commandbunks) -"ffG" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ffH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"ffL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ffq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"fgd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"ffM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, /area/almayer/engineering/upper_engineering/port) +"ffS" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "fgf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"fgr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"fgh" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/living/starboard_garden) +"fgH" = ( +/obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"fgD" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) +/obj/item/facepaint/green, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) "fgM" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -16572,67 +14061,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"fgR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"fha" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"fhb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ +"fgV" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"fhj" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"fht" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"fhz" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"fhA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"fhB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"fhk" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"fho" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fhr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fhF" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -16643,57 +14094,95 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) -"fhG" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 +"fhI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) "fhM" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"fhT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) "fia" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) +"fid" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"fij" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fio" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fir" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fis" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"fiE" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"fiI" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"fiL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/area/almayer/hull/lower_hull/l_m_p) -"fiN" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) +"fiM" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) "fiP" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -16703,25 +14192,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fiU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"fjd" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"fje" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fjf" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/powered) +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fju" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) "fjv" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -16731,21 +14210,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"fjz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fjw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fjy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) +"fjB" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_midship_hallway) "fjD" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -16753,139 +14241,107 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/general_equipment) -"fjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"fjH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/machinery/computer/secure_data{ - pixel_x = 17 - }, -/obj/structure/machinery/computer/card{ - pixel_x = -16 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"fjP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"fjR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ +"fjN" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console"; - shuttleId = "dropship_normandy"; - disabled = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"fjW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/command/cic) -"fjT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_p) -"fjU" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fke" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) "fkp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_garden) +"fkq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"fku" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) "fkM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fkQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"fkU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +"fkW" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hallways/port_umbilical) -"fkY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"flv" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/south1) -"fle" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"flB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) -"flz" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"flJ" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"flK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) -"flF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +"flM" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/area/almayer/hallways/hangar) -"flG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"flW" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "flY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -16902,64 +14358,120 @@ "fmh" = ( /turf/open/floor/almayer, /area/almayer/squads/bravo) -"fmp" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"fmq" = ( +/turf/open/floor/almayer/bluefull, /area/almayer/living/pilotbunks) -"fmt" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"fmu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fms" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"fmA" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"fmw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/laundry) -"fng" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"fmD" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hallways/starboard_hallway) -"fnl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"fmE" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"fnb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"fnj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"fnn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "fnr" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"fns" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) "fnt" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -16971,43 +14483,47 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_one) -"fnw" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +"fnA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 }, -/area/almayer/lifeboat_pumps/south2) +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) "fnD" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/chemistry) -"fnJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"fnL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"fnF" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_midship_hallway) +"fnI" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_s) -"fnU" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"fnP" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "fob" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -17023,123 +14539,140 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fom" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"fop" = ( +"fos" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"foB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"foE" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"foR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"foC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"fpg" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"fpk" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 8; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_a_s) -"foU" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 + id = "vehicle_elevator_railing_aux" }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"fpr" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/head/beret/centcom/captain{ + color = "#4b5320"; + desc = "Dusty beret bearing the logo of the royal marines. How did this get here?"; + name = "dusty beret"; + pixel_y = -6 }, -/area/almayer/hallways/starboard_hallway) -"fpl" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/cameras/dropship/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/hallways/hangar) -"fpo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/squads/alpha) -"fps" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"fpu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"fpD" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/aft_hallway) +"fpv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fpF" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) "fpM" = ( /turf/open/floor/engine, /area/almayer/engineering/airmix) -"fqj" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"fqh" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8; + layer = 3.1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"fqi" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fql" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"fqx" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) "fqy" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "96" }, /area/almayer/hallways/hangar) +"fqA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) "fqB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -17149,91 +14682,82 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/squads/req) -"fqE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"fqN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fqF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"fqW" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"fqJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "sterile_green_side" + name = "ship-grade camera" }, -/area/almayer/medical/operating_room_one) -"fqZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"frf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/living/grunt_rnr) -"frm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_f_p) -"fro" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"frg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"frl" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/squads/req) +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "frq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) -"frz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "perma_exit"; - name = "\improper Exit Shutters" +"frr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"fru" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"frS" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/perma) -"frK" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_s) -"frO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engineering_workshop/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "frW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -17241,210 +14765,125 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fsl" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash{ - pixel_x = 2; - pixel_y = 2 +"fsc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/item/storage/bag/trash{ - pixel_x = -8; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"fsf" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 8; + pixel_x = 16 }, -/obj/item/storage/bag/trash{ - pixel_x = -3; - pixel_y = -2 +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, -/area/almayer/engineering/upper_engineering/port) -"fsw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"fsg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, -/area/almayer/squads/alpha) -"fsx" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) "fsB" = ( /obj/structure/machinery/light{ pixel_x = 16 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fsF" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"fsH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "mono" +"fsQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"fsK" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"fsU" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" }, -/area/almayer/squads/charlie) -"fsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"fsP" = ( -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/briefing) -"fsS" = ( /obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"fte" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 - }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"ftg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"ftb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ftl" = ( /turf/closed/shuttle/dropship2{ icon_state = "51" }, /area/almayer/hallways/hangar) -"ftt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"ftu" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"ftE" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"fuc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"fuj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"fup" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +"ftn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"ftp" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"fts" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/port_emb) -"fut" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"ftH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"ftJ" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) +"ftL" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"ftV" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"fuw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) "fuC" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer{ @@ -17454,19 +14893,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"fuD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) "fuF" = ( /obj/structure/bed/chair{ buckling_y = 5; @@ -17478,64 +14904,53 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/starboard_emb) -"fuU" = ( +"fuM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"fvp" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"fuQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"fuT" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/medical/lower_medical_medbay) -"fvt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"fvv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"fuW" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"fvu" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"fvA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"fvy" = ( +/obj/structure/machinery/cryopod{ layer = 3.1; - pixel_x = -8 - }, -/obj/structure/machinery/power/apc{ - dir = 8 + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"fvD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/shipboard/brig/chief_mp_office) +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) "fvE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -17545,75 +14960,41 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"fvF" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) "fvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"fvM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"fvN" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"fvQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, +"fvL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" }, -/area/almayer/hallways/aft_hallway) -"fvR" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"fwd" = ( +/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"fvT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"fwg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"fwh" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) "fwj" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -17621,30 +15002,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"fww" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"fwx" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"fwo" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"fwt" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fwB" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"fwE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cic) +/area/almayer/maint/hull/upper/u_a_p) "fwG" = ( /obj/structure/bed{ can_buckle = 0 @@ -17682,72 +15053,134 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"fwL" = ( -/obj/structure/machinery/light{ +"fwN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"fwS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fwW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/machinery/light, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fxe" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"fxi" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/area/almayer/hallways/aft_hallway) -"fwT" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/space) -"fwU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fxj" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"fxk" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fxq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"fxs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" }, -/area/almayer/squads/delta) -"fxf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ +/obj/structure/machinery/computer/med_data/laptop{ dir = 1; - icon_state = "red" + pixel_x = 6; + pixel_y = -4 }, -/area/almayer/shipboard/weapon_room) -"fxw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"fxK" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"fxO" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"fxS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) "fxT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"fxU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) "fxV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -17755,491 +15188,358 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"fyi" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"fxX" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/aft_hallway) +"fyv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"fyB" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"fyI" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"fyy" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"fyA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/red/north, /area/almayer/command/lifeboat) -"fzd" = ( +"fyC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"fze" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"fyM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fyZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"fzl" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"fzy" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"fzz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/starboard_garden) -"fzk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"fzA" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) -"fzm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fzC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"fzs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"fzP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 }, -/area/almayer/shipboard/navigation) -"fzt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"fzv" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/phone_base/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" }, -/area/almayer/shipboard/brig/cryo) -"fzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fzX" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 }, -/area/almayer/medical/medical_science) -"fAl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"fAm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) "fAn" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/almayer, /area/almayer/squads/req) +"fAp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) "fAw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/command/capt, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"fAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"fAZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +"fAz" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"fAD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fAO" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fAU" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"fAX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"fBc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) +"fBh" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/living/briefing) +"fBm" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 }, -/area/almayer/living/port_emb) -"fBj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"fBo" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 }, -/area/almayer/hallways/aft_hallway) -"fBk" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"fBr" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Almayer"; + phone_id = "CL Office" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"fBt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_a_s) -"fBl" = ( -/obj/structure/sign/safety/bulkhead_door{ +/obj/structure/sign/safety/terminal{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/hangar) -"fBm" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fBv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"fBw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"fBz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"fBy" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"fBB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" }, -/area/almayer/squads/alpha) -"fBH" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fBF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "fBJ" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"fBS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 +"fBL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fBO" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"fCl" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"fCs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fCt" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fCE" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"fDC" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"fDK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/area/almayer/engineering/engineering_workshop) -"fBY" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"fEk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"fEy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; - name = "ship-grade camera" + name = "\improper Engineering Lounge" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/brig/processing) -"fCa" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"fEA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/delta) -"fCd" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"fEI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lower_medical_lobby) -"fCh" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"fCj" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/surgery) -"fCA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"fCY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) -"fCZ" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/upper_engineering) -"fDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"fDe" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" - }, -/area/space) -"fDj" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"fDk" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"fDS" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"fDU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/south1) -"fDV" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"fDW" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) -"fEc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"fEh" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"fEk" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"fEm" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"fEA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"fEM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"fEY" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/area/almayer/hallways/lower/starboard_umbilical) +"fEP" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/hull/upper/u_m_p) +"fFg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) "fFn" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fFL" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"fFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"fFP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"fFV" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fFZ" = ( +"fFv" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ pixel_x = 15; @@ -18252,50 +15552,86 @@ pixel_x = -17 }, /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering/port) -"fGf" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 +"fFD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"fFF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/area/almayer/hull/upper_hull/u_m_s) -"fGh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/wy, -/obj/structure/machinery/computer/cameras/containment{ +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - layer = 2.981; - name = "Research Cameras"; - pixel_y = 16 + pixel_x = -17 }, -/obj/item/clothing/accessory/stethoscope, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"fGo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" }, -/area/almayer/medical/upper_medical) -"fHd" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"fGz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"fGR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"fGT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fHe" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18311,57 +15647,68 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"fHv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"fHx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fHj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/living/offices/flight) -"fHK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fHr" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fHs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/area/almayer/hallways/starboard_hallway) -"fHL" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"fHt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"fHv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fHy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"fHF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"fHX" = ( -/obj/structure/safe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 }, -/area/almayer/command/securestorage) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"fHW" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) "fHZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical{ @@ -18373,15 +15720,49 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"fId" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"fIb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 10; + pixel_y = 15 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) +"fIl" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_left, +/area/almayer/hallways/hangar) +"fIo" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"fIq" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) "fIs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -18390,336 +15771,285 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fIu" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cichallway) "fIC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fIZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"fIL" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"fIT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"fIU" = ( +/obj/structure/phone_base{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"fIX" = ( +/obj/item/tool/warning_cone{ pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"fJb" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"fJr" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/starboard_missiles) -"fJw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"fJE" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/delta) -"fJP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sink{ - pixel_y = 24 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fJn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"fJq" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"fJs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/containment) -"fKc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"fJz" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/area/almayer/hull/upper_hull/u_a_p) -"fKk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"fKo" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"fJJ" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"fJK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fJN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"fJO" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/area/almayer/hallways/hangar) -"fKB" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"fKg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fKp" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"fKq" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) "fKE" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/port_point_defense) -"fKF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"fKK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"fKM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fKP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) "fKQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"fLc" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer{ - icon_state = "plate" +"fKT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/gym) -"fLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fLi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access = "19;27;22" }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"fLj" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"fLK" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/maint/hull/lower/l_f_p) +"fLl" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"fLo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/squads/charlie) -"fMl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"fLs" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"fLB" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"fLW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" +/obj/item/paper_bin/uscm{ + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/area/almayer/living/commandbunks) -"fMw" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"fMa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/hallways/aft_hallway) -"fMz" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"fMB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"fMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"fMX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"fMf" = ( /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/status_display{ - pixel_y = -32 + dir = 4 }, -/obj/structure/machinery/vending/coffee, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"fNb" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/living/briefing) -"fNm" = ( -/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"fNz" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"fMg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"fMo" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/chemistry) -"fNC" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"fMr" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"fMR" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 }, -/area/almayer/squads/bravo) -"fND" = ( -/turf/closed/wall/almayer, -/area/almayer/command/computerlab) -"fNF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"fMU" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"fNe" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"fNn" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"fNI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"fNM" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 1"; - buildstate = 1 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"fNq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 }, -/area/almayer/engineering/engine_core) -"fNN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"fNA" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = -32; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door_control{ + id = "Perma 1L"; + name = "Perma 1 Lockdown"; + pixel_x = -24; + pixel_y = -12; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/perma) +"fND" = ( +/turf/closed/wall/almayer, +/area/almayer/command/computerlab) "fNQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fNT" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) "fNU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -18730,46 +16060,46 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"fNV" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"fNW" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower_engineering) -"fNX" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"fOc" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"fOk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/starboard_garden) -"fOq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"fOv" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"fPb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"fOJ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"fPe" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"fPi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"fPf" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fPj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fPo" = ( /obj/structure/anti_air_cannon, /obj/structure/surface/table/almayer, @@ -18783,145 +16113,110 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"fPr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +"fPy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"fPK" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"fPS" = ( +/obj/item/stack/tile/carpet{ + amount = 20 }, -/area/almayer/command/lifeboat) -"fPE" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"fQh" = ( -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fQa" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) "fQl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"fQn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "fQp" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"fQs" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/briefing) -"fQy" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"fQz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) +"fQu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "fQA" = ( /obj/structure/shuttle/part/dropship2/left_outer_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) -"fQN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/morgue) -"fQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +"fQP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/hull/lower_hull) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) "fQV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"fQW" = ( +"fRh" = ( +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"fRk" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"fRF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"fRm" = ( +/obj/structure/machinery/computer/working_joe{ dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"fRO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = -17 }, -/area/almayer/living/captain_mess) -"fRQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"fRv" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"fRU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "fRW" = ( /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"fRX" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) "fRY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -18941,156 +16236,154 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"fSf" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"fSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"fSq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"fSr" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"fSs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fSb" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, -/area/almayer/command/cic) -"fSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"fSd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"fSC" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 4; name = "ship-grade camera" }, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"fSp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fSz" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/area/almayer/living/starboard_garden) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fSE" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "fSK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/basketball) -"fTk" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/delta) -"fTm" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"fTM" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"fTN" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"fSL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"fSM" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"fSW" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"fSY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/port_hallway) -"fTR" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"fTa" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"fTl" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"fTZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"fUo" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"fTn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/command/lifeboat) -"fUy" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"fTo" = ( +/obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/hydroponics) -"fUE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fTD" = ( +/obj/structure/machinery/power/apc/power/south, /obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"fTG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"fTR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"fTT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fUf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"fUk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) "fUF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -19101,36 +16394,25 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"fUP" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"fUR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/lower_medical_medbay) -"fUT" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/command/cic) -"fUX" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 +"fUJ" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fUM" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"fUN" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/living/pilotbunks) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) "fUZ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/phone_base/rotary{ @@ -19141,59 +16423,9 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"fVd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"fVt" = ( +/turf/open/floor/almayer/green/west, /area/almayer/squads/req) -"fVl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"fVp" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"fVv" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"fVy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/command/cic) "fVA" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper{ @@ -19221,15 +16453,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"fVL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fVE" = ( +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"fVF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/offices) +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"fVN" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "fVO" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -19240,22 +16477,33 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) +"fWb" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"fWl" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"fWm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"fWs" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"fWt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "fWv" = ( /turf/closed/wall/almayer, /area/almayer/living/offices/flight) -"fWz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) +"fWy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) "fWB" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -19266,225 +16514,229 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"fWC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 2L"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/perma) -"fWF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"fWM" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "fWO" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"fWQ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = -27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"fWS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"fXe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"fXn" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 +"fWV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"fXm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/starboard_garden) -"fXy" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fXv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; pixel_y = 13 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"fXx" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"fXB" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" }, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper) "fXH" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fXW" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fXI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"fYc" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"fYl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/hangar) -"fXX" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"fYq" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "fYA" = ( /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"fYF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/almayer{ +"fYC" = ( +/obj/structure/bed/chair{ dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"fYS" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"fYV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"fYD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fYI" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 }, -/area/almayer/squads/charlie) -"fZg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fYP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fYW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) +"fZd" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/charlie) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"fZe" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) "fZj" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) -"fZw" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; +"fZo" = ( +/obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/navigation) -"gad" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fZr" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"fZt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/command/lifeboat) -"gai" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"fZu" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"fZz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"fZB" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"fZH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fZN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/req) -"gaq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/obj/structure/mirror{ - pixel_x = 29 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"fZP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"gat" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile" +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) "gay" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/upper_medical) -"gaR" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"gaA" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"gaJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 }, -/area/almayer/engineering/upper_engineering/starboard) +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "gaY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -19495,218 +16747,224 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) -"gbw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"gby" = ( -/obj/structure/target, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"gbD" = ( -/obj/structure/machinery/light{ +"gbi" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"gbB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"gbJ" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"gbK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" + dir = 4 }, -/area/almayer/command/cichallway) -"gbR" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"gbP" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/navigation) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) "gcb" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"gcJ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - icon_state = "redfull" +"gcs" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" }, -/area/almayer/engineering/upper_engineering) -"gcL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"gcz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"gcF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"gcR" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/cichallway) -"gcS" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"gcX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"gdk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) "gdl" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"gds" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"gdv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +"gdu" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"gdw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/living/briefing) -"gdx" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) +"gdA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + layer = 2.5 }, -/area/almayer/engineering/port_atmos) -"gdy" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"gdG" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_s) -"gdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gdH" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/medical_science) -"gdI" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"gdJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 }, -/area/almayer/hull/upper_hull/u_a_p) -"gej" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 }, -/area/space) -"gey" = ( -/obj/structure/ladder{ - height = 2; - id = "med2" +/obj/item/tool/pen{ + pixel_y = 3 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"geE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"gdK" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"gdO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"gdR" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/medical/lower_medical_medbay) -"geH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"gdT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"gdX" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"geN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"gdY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"geS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"gfa" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull) -"gfe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ged" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, -/area/almayer/medical/morgue) -"gfi" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"gfk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"gew" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"gex" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"gey" = ( +/obj/structure/ladder{ + height = 2; + id = "med2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"gfl" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" }, -/area/almayer/hallways/port_umbilical) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) "gfA" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -19714,51 +16972,74 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"gfN" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer{ - icon_state = "cargo" +"gfD" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/squads/req) -"gfS" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"gfG" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/operating_room_one) -"gfV" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"ggd" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"gge" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"ggj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 }, -/area/almayer/medical/lower_medical_medbay) -"gga" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"ggc" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"ggq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"ggt" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 }, -/area/almayer/medical/medical_science) -"ggi" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/almayer/hallways/hangar) +"ggx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ggD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) "ggF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19768,143 +17049,76 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"ggH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"ggJ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"ggN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/kepler_crisps{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 1 +"ggK" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"ggQ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ggS" = ( /turf/closed/shuttle/dropship2{ icon_state = "76" }, /area/almayer/hallways/hangar) -"ggU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"ghk" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ghm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering/starboard) -"ghd" = ( +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"ghq" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ghx" = ( /obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ghf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ghz" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/filingcabinet/security{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"ght" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) -"ghv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"ghD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/port_atmos) -"ghE" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"ghF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ghA" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/area/almayer/engineering/engine_core) -"ghG" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/powered/agent) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "ghO" = ( /obj/structure/toilet{ dir = 1 @@ -19919,59 +17133,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"ghT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"ghV" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"ghX" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"ghY" = ( +"gia" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"gik" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"gim" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/ce_room) -"gio" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"giq" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) "gir" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -19980,301 +17155,172 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"giw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"giv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"giA" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"giL" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"giM" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"giE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"giP" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"giS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"giT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/spacecash/c500{ + pixel_x = 4; + pixel_y = 8 }, -/area/almayer/living/briefing) -"giQ" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/item/ashtray/bronze{ + pixel_x = -13; + pixel_y = -4 }, -/area/almayer/medical/lower_medical_lobby) -"gjc" = ( -/turf/open/floor/almayer_hull{ - dir = 6; - icon_state = "outerhull_dir" +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"giU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/space) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "gje" = ( /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"gjh" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"gjj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lockerroom) -"gjp" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"gjU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha_bravo_shared) -"gjX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"gkd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"gke" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 +"gjn" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"gjo" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 }, -/area/almayer/hallways/hangar) -"gkn" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"gjw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"gky" = ( -/obj/structure/sign/safety/maint{ +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"gkA" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"gkE" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"gkF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 + pixel_y = -26 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"gjC" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"gkb" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"gkM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 8; - icon_state = "red" + id = "cmp_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/shipboard/brig/main_office) -"gkH" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"gkO" = ( +/obj/structure/barricade/metal{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"gkN" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"gkP" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"gkQ" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"gkX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gld" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "glg" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/starboard_missiles) -"glh" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"glr" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) -"glz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"glJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +"glw" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"glx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"glF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"glV" = ( +/turf/open/floor/almayer/silver, /area/almayer/shipboard/brig/cic_hallway) -"glM" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"glT" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"glX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"gmb" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"gmo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"gmq" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) +"gme" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gmf" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) "gmr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/grunt_rnr) -"gmF" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) "gmG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20284,10 +17330,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"gmK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) +"gmR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "gmU" = ( /turf/closed/wall/almayer, /area/almayer/living/officer_study) @@ -20309,126 +17357,102 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"gnC" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"gnE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +"gny" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" }, -/area/almayer/hallways/starboard_hallway) -"gnM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"gnG" = ( +/obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gnK" = ( +/obj/structure/machinery/power/apc/power/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"gnQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"gou" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"gox" = ( -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"goy" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/offices) -"goE" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gnS" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"gop" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/briefing) -"goH" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"goz" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"goB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"goM" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"goO" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) +"goV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"goW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp{ + pixel_x = 3; + pixel_y = 10 }, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"gpa" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) -"gpd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +"gpe" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "gpg" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -20437,160 +17461,62 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"gpj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/computerlab) "gpo" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gpx" = ( +"gpu" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"gpE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"gpz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"gpB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"gpH" = ( -/obj/structure/bed/chair{ - dir = 4 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) "gqh" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"gqi" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"gqm" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"gqE" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/hallways/repair_bay) -"gqr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"grh" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"gqI" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"gqK" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"gqM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"gra" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"grp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"grk" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"gro" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hull/lower_hull/l_a_s) -"gry" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"grA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"grK" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"gru" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "grN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -20605,171 +17531,132 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"grW" = ( -/obj/structure/pipes/unary/freezer, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/cryo_tubes) -"gsh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"gsn" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"grO" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"grP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/squads/charlie_delta_shared) -"gsw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/power/apc{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"grT" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"gsx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"grV" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"grX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"gsE" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"gsq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"gst" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 }, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"gsN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"gsz" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/evidence_storage) +"gsB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/upper/u_a_s) +"gsL" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "gsO" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/general_equipment) -"gsT" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/almayer/hallways/hangar) -"gtm" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/living/starboard_emb) -"gtv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"gtd" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"gtz" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"gto" = ( /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"gts" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"gtC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"gtA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) "gtI" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gtL" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"gtQ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"gtR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) +"gtS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"gtT" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) "gtU" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -20788,186 +17675,137 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"gua" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"gub" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_p) -"gug" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"guz" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +"gtV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"guE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gtX" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"gud" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"guj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/shipboard/brig/chief_mp_office) -"guG" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"guk" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"guo" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"guH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"guI" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"guy" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/lifeboat_pumps/north2) +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/aft_hallway) +"guD" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) "guJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"guO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/auxiliary_officer_office) -"guP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"guQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) "guW" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"gvf" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orangefull" +"gvc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/area/almayer/living/briefing) -"gvq" = ( -/obj/structure/barricade/handrail{ +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"gvd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"gvm" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"gvp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) "gvz" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) -"gvF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"gvQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"gvX" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" +"gvG" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/living/bridgebunks) +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"gvS" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) "gwb" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"gwf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"gwm" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"gwy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"gwj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"gwK" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"gwp" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"gwS" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "gwX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -20978,83 +17816,16 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gwZ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) "gxc" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"gxe" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"gxm" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) +"gxf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "gxs" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -21062,63 +17833,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"gxz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 +"gxu" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/briefing) -"gxI" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"gxO" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"gxA" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"gxE" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"gxT" = ( -/obj/structure/platform{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gxY" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 }, -/area/almayer/engineering/engine_core) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "gyg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"gyq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) "gys" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21129,78 +17878,57 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gyv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"gyy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"gyG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"gzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gyt" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"gyz" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gyM" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"gyV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/living/numbertwobunks) +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"gzf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) "gzl" = ( /obj/effect/attach_point/fuel/dropship2, /turf/closed/shuttle/dropship2/transparent{ icon_state = "28" }, /area/almayer/hallways/hangar) -"gzC" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/briefing) -"gzM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"gzS" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/obj/structure/machinery/light{ +"gzo" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gzQ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/gym) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "gzT" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 1; @@ -21208,48 +17936,79 @@ }, /turf/open/floor/engine/nitrogen, /area/almayer/engineering/airmix) +"gzX" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "gAb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) -"gAl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cichallway) +"gAh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"gAq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "gAv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"gAL" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 +"gAK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/surface/rack{ - layer = 2.5 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"gAM" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gAQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"gAX" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"gAR" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gBb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/operating_room_one) +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) "gBf" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -21258,33 +18017,57 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"gBg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) "gBl" = ( /obj/docking_port/stationary/marine_dropship/lz1, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gBm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"gBn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"gBv" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 }, -/area/almayer/shipboard/port_point_defense) -"gBx" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"gBB" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"gBM" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"gBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) "gBU" = ( /obj/structure/machinery/light, /obj/structure/surface/table/woodentable/fancy, @@ -21295,46 +18078,30 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"gBY" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "gBZ" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"gCf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"gCk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"gCl" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +"gCm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"gCo" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) "gCq" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -21342,176 +18109,120 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/execution) -"gCt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"gCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"gCz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/area/almayer/engineering/lower/workshop/hangar) +"gCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/engineering/engine_core) -"gCB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ dir = 4; - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"gCF" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"gCK" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/weapon/gun/rifle/m41aMK1/ap, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"gCP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 + icon_state = "pipe-c" }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"gCX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/area/almayer/hull/lower_hull/l_m_s) +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"gDa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) "gDc" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"gDd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"gDl" = ( +"gDi" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"gDu" = ( +/obj/structure/surface/table/almayer, /obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"gDv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 + dir = 4 }, -/obj/structure/sign/safety/coffee{ +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"gDD" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gDH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"gDI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "gDM" = ( /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"gDO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +"gEb" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, /obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"gDY" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "gEm" = ( /obj/structure/bookcase/manuals/engineering, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gEp" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gEv" = ( +/obj/structure/pipes/standard/tank/oxygen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 }, -/area/almayer/living/cafeteria_officer) -"gEM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"gEz" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gEB" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"gEF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"gER" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) "gES" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -21529,23 +18240,13 @@ /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"gEW" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"gEZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"gFk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 4 +"gFc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) "gFp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -21555,77 +18256,87 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"gFO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"gFr" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/area/almayer/engineering/upper_engineering) -"gGh" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gGt" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ +/obj/structure/sign/safety/ladder{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"gGv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, -/area/almayer/living/briefing) -"gGA" = ( +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"gFF" = ( /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"gGL" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"gFI" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"gFK" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"gFR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/hallways/aft_hallway) -"gGV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"gFX" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gGp" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"gGz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"gGJ" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"gGO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gGZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gHa" = ( +/obj/item/storage/firstaid, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"gHi" = ( +/area/almayer/maint/hull/lower/l_a_p) +"gHr" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"gHs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"gHw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"gHq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"gHr" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) "gHF" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -21638,51 +18349,97 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"gHJ" = ( -/obj/structure/disposalpipe/junction, +"gHL" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"gHO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"gHV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"gIn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W" }, -/area/almayer/squads/charlie) -"gIm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) "gIt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/emails, /turf/open/floor/almayer, /area/almayer/living/numbertwobunks) +"gIx" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gIz" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) "gIA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"gID" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"gIQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gIT" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"gIV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "gJa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -21692,6 +18449,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"gJc" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) "gJg" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun, @@ -21708,36 +18468,10 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"gJm" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"gJw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console"; - pixel_y = -12; - shuttleId = "dropship_normandy"; - disabled = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) +"gJn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) "gJA" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/paper_bin/uscm, @@ -21746,61 +18480,15 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"gJC" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) -"gJH" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"gJL" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, -/area/almayer/engineering/upper_engineering/port) -"gKs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"gJT" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/living/offices) -"gKt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gKl" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) "gKu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -21808,98 +18496,60 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/auxiliary_officer_office) -"gKD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 +"gKv" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gKw" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"gKE" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"gKF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"gKM" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south2) -"gKI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/processing) -"gKJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"gKU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"gLd" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"gLg" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"gLi" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"gLl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"gLm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"gLo" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"gLb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) -"gLu" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gLe" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"gLF" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "gLG" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -21909,42 +18559,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"gLL" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"gLU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"gLP" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"gMg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"gLR" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"gMo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/repair_bay) -"gMy" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"gMs" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "gMA" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -21952,253 +18593,141 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"gMJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"gML" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"gMT" = ( +"gMH" = ( +/obj/structure/stairs, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"gMW" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"gNA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"gNJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_s) -"gNM" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"gNP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"gNX" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"gNZ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"gOc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"gOf" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gMI" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) -"gOi" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" +"gMX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"gOj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/power/apc, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"gNa" = ( +/obj/structure/largecrate/supply/ammo/shotgun, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"gOm" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"gOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/maint/hull/lower/l_a_s) +"gNb" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) -"gOx" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"gNi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 }, -/area/almayer/living/bridgebunks) -"gOB" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/general_equipment) +"gNB" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/aft_hallway) +"gOt" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"gOE" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"gOL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"gOM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" }, -/area/almayer/living/cryo_cells) -"gOC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"gOJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) -"gOP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"gOR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"gPe" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"gOO" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"gPi" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"gPa" = ( +/obj/structure/machinery/prop/almayer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"gPc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"gPn" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"gPs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gPv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/repair_bay) -"gPq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gPG" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"gPu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "gPK" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -22208,267 +18737,155 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"gPL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) "gPN" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"gPU" = ( +"gPP" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"gPS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"gPV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"gQb" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"gQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/living/chapel) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gQe" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/upper_engineering) -"gQg" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"gQm" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, -/area/almayer/living/briefing) -"gQn" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"gQw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/starboard_hallway) +"gQj" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) "gQz" = ( /turf/closed/shuttle/dropship2{ icon_state = "25" }, /area/almayer/hallways/hangar) -"gQH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"gQK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"gRa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/repair_bay) -"gRf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"gQN" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"gRt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"gRw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/medical_science) -"gRP" = ( -/obj/structure/bed/chair/comfy/bravo{ +"gQO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gRr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"gRv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/briefing) -"gRQ" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gRG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/area/almayer/living/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"gRW" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "gSa" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gSg" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"gSv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/bed/chair{ +"gSb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"gSB" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"gSm" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"gSK" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gSN" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) "gSO" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"gSZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"gSU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/orange/west, /area/almayer/engineering/upper_engineering) -"gTb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"gTg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ +"gTi" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"gTj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"gTk" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"gTm" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) "gTp" = ( /turf/closed/shuttle/dropship2{ icon_state = "47" @@ -22480,208 +18897,176 @@ /obj/item/device/binoculars, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"gTz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"gUe" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"gTy" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gTA" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/medical/lower_medical_lobby) -"gUp" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"gTE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"gUd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gUi" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"gUn" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) "gUu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"gUA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"gUB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; +"gUw" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_x = -4; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"gUI" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gUH" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"gUI" = ( /turf/closed/shuttle/dropship2{ icon_state = "62" }, /area/almayer/hallways/hangar) -"gUN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"gUP" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 +"gUJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 +/obj/structure/machinery/door_control{ + id = "cmp_armory"; + name = "Armory Lockdown"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "4" }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"gUR" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gVc" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 }, -/area/almayer/shipboard/brig/cells) -"gVf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"gVh" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"gVv" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 }, -/area/almayer/living/offices) -"gVx" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"gWf" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/starboard_emb) +"gVd" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"gVs" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gVC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/living/briefing) -"gWn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gWj" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"gWt" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/charlie) -"gWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"gWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) "gWC" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, /obj/item/toy/deck, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"gWG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"gWW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"gXd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +"gWE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"gXe" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"gWK" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"gWM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) "gXg" = ( /obj/structure/sign/prop1{ pixel_x = -32; @@ -22690,33 +19075,57 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"gXB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"gXj" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"gXG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/almayer/hallways/aft_hallway) -"gXQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"gXm" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"gXw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_f_s) -"gXS" = ( -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"gXx" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 }, -/area/almayer/shipboard/brig/processing) -"gXZ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"gYd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"gYe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "gYi" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -22727,60 +19136,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"gYv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"gYP" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"gYU" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"gYV" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"gZi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"gZj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"gZl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +"gYB" = ( +/turf/open/floor/almayer/plate, /area/almayer/shipboard/brig/perma) +"gZa" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "gZn" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 3"; @@ -22791,391 +19153,327 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"gZt" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +"gZp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"gZP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/area/almayer/stair_clone/upper) -"gZN" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 +/obj/item/tool/pen, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/perma) +"hak" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/living/offices) +"haq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"har" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"haC" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"haG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; - pixel_x = -1; - pixel_y = 3 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"haJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"haK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"haS" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"haV" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/engineering/port_atmos) -"gZQ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"haY" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hbm" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"hbn" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"hbx" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hbK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hbV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"hbX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/lower_medical_lobby) -"gZZ" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +"hcf" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"hcq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"hcw" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hcy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/area/almayer/engineering/port_atmos) -"haf" = ( -/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"hcF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"hcI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/area/almayer/engineering/upper_engineering/port) -"hak" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"hcL" = ( +/turf/closed/wall/almayer, +/area/almayer/living/captain_mess) +"hdj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"has" = ( -/obj/structure/sign/safety/terminal{ +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"haA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"haE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/area/almayer/maint/hull/lower/l_a_p) +"hdn" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"hdt" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "14" + }, +/area/almayer/hallways/hangar) +"hdv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"haI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +"hdB" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"hdE" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/squads/alpha_bravo_shared) -"haJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hdF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"hdH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"haL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"hdJ" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/almayer/living/pilotbunks) -"haP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 + icon_state = "N"; + pixel_y = 1 }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hdK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hdS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/squads/req) -"haQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"hdU" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"heh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"hek" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"hes" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"haT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"hbc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/shipboard/navigation) +"heD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"heH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"heV" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" }, -/area/almayer/hallways/starboard_hallway) -"hby" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"heY" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 }, -/area/almayer/medical/lower_medical_lobby) -"hbD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hfe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hfN" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/living/captain_mess) -"hbO" = ( -/obj/structure/closet/crate/internals, -/obj/item/handcuffs/cable/blue, -/obj/item/handcuffs/cable/blue, -/obj/item/handcuffs/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"hce" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/navigation) -"hcf" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"hcz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"hcA" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"hcG" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"hcL" = ( -/turf/closed/wall/almayer, -/area/almayer/living/captain_mess) -"hcM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"hcN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"hda" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"hdt" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "14" - }, -/area/almayer/hallways/hangar) -"hdF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"hdT" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"hdV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"heh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"hek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"her" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"hes" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"hfU" = ( +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"heZ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/main_office) -"hfo" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"hfy" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"hfH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"hfP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/area/almayer/living/cryo_cells) "hfW" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -23183,97 +19481,103 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"hfY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"hfZ" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) "hgb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hgc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/aft_hallway) -"hgu" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +"hgd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_s) -"hgw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"hgJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hgn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/squads/req) -"hgL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"hgq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/navigation) -"hgN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north2) -"hgQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/engineering/engineering_workshop/hangar) +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"hgw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"hgK" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"hgP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "hgR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"hhc" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"hhp" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" +"hgU" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"hhr" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"hgV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 }, -/area/almayer/command/cic) -"hhs" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"hhe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"hhu" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 }, -/area/almayer/medical/hydroponics) +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) "hhw" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/engineering_guide{ @@ -23285,13 +19589,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"hhC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) "hhH" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -23303,66 +19600,41 @@ }, /turf/open/floor/plating, /area/almayer/medical/operating_room_two) -"hib" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"hhI" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"hhQ" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"hhX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"hii" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"hiy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"hiF" = ( +/obj/structure/machinery/light/small, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"hip" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"hiC" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"hiO" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"hiY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_m_s) -"hja" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"hjb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hiW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) "hjf" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -23371,123 +19643,56 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/offices) -"hjr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"hju" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"hjA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"hjC" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "green" +"hjm" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/area/almayer/squads/req) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"hjq" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) "hjI" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"hjJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"hkg" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/area/almayer/shipboard/starboard_point_defense) -"hka" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hkA" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 - }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"hkb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"hke" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"hkB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/turf/open/floor/almayer{ +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"hkD" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"hkf" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/device/flash{ - pixel_y = -8 - }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"hkK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/squads/charlie_delta_shared) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"hkJ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) "hkM" = ( /obj/structure/ladder{ height = 1; @@ -23495,12 +19700,25 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"hkV" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"hkN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"hkY" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) "hla" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment{ @@ -23508,131 +19726,51 @@ }, /turf/open/floor/plating/almayer, /area/almayer/squads/alpha_bravo_shared) -"hlb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"hld" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"hli" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/morgue) -"hlj" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) "hlk" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"hlx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"hlE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"hlT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"hlX" = ( +"hlt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"hlY" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"hmc" = ( -/turf/open/floor/almayer/uscm/directional{ +/obj/structure/machinery/light{ dir = 4 }, -/area/almayer/command/lifeboat) -"hme" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/shipboard/brig/chief_mp_office) -"hmk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"hlF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hmd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"hmt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/squads/bravo) -"hmq" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, -/area/almayer/shipboard/brig/cic_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) "hmy" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"hmB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hmC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) "hmD" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -23642,142 +19780,103 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) -"hmE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"hmM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"hmO" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"hmV" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/shipboard/brig/general_equipment) -"hnd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"hnb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/engineering_workshop) -"hnq" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"hni" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/shipboard/navigation) -"hnr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_midship_hallway) +"hns" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"hnE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/sign/safety/east{ - pixel_x = 32; +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"hnH" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"hny" = ( -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"hnI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"hnJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hnK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) "hnN" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"hnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +"hnW" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 }, -/area/almayer/hull/upper_hull/u_a_s) -"hoa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/area/almayer/medical/operating_room_three) -"hod" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/weldpack{ + pixel_x = -2 }, -/obj/structure/sign/safety/storage{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hon" = ( +/obj/structure/sign/safety/restrictedarea{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"hok" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"hoo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"hoq" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" + pixel_y = -32 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "hor" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -23785,87 +19884,104 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hot" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 +"hoy" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hoA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hoG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hallways/hangar) -"hov" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = -24 }, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"hoH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"hoI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"hoJ" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) "hoL" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hoQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +"hoO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"hoY" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" }, -/area/almayer/hallways/aft_hallway) +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"hpg" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/engine_core) "hpm" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"hpo" = ( -/obj/structure/machinery/alarm/almayer{ +"hpu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"hpp" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"hps" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"hpt" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"hpx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/living/offices) +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) "hpA" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"hpC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/lobby) "hpE" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -23876,185 +19992,136 @@ "hpK" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) -"hpL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"hpM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, +"hpQ" = ( +/obj/structure/machinery/power/apc/power/south, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"hpP" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/cryo_cells) -"hqk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) +"hpR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/captain_mess) -"hqA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"hpZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/lifeboat) -"hqE" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/structure/machinery/status_display{ + pixel_y = -29 }, -/area/almayer/hallways/aft_hallway) -"hqK" = ( -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"hqb" = ( /obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) -"hqV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" +/obj/item/storage/box/masks, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"hqz" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"hqR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/almayer/shipboard/navigation) -"hrB" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hqU" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"hrD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hrm" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/squads/delta) -"hrE" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_a_s) -"hsd" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 + icon_state = "S" }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hrr" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_a_s) -"hsq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"hrt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/area/almayer/command/lifeboat) -"hst" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"hrH" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"hrO" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"hsg" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_s) -"hsJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_m_s) -"hsO" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hsB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hsP" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"hsV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"hsS" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"hta" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "htb" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, @@ -24063,24 +20130,6 @@ "hti" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"htk" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"htz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) "htD" = ( /obj/structure/machinery/status_display{ pixel_x = -32 @@ -24088,46 +20137,28 @@ /obj/effect/landmark/ert_spawns/distress_cryo, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"htE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"htG" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"htI" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/alarm/almayer{ +"htW" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"htQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/powered/agent) -"hud" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"htY" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Spare Prison Uniforms" }, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"huc" = ( +/turf/open/floor/almayer/orange/northwest, /area/almayer/command/cic) "hul" = ( /obj/structure/disposalpipe/segment{ @@ -24135,41 +20166,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"huq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"huw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"huC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"huI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_three) "huJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -24180,208 +20176,115 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"huX" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"hva" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/starboard_hallway) -"hvf" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"hvh" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"hvo" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +"hve" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/starboard_atmos) -"hvr" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hvj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/lifeboat) -"hvL" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"hvt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"hvS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"hvw" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"hvB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"hvT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"hwc" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"hwr" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"hvI" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/aft_hallway) +"hvP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"hws" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "S" }, -/area/almayer/engineering/upper_engineering) -"hwu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"hwa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hwd" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/area/almayer/hull/lower_hull/l_a_s) -"hwz" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"hwB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) "hwF" = ( /obj/structure/shuttle/part/dropship2/transparent/middle_right_wing, /turf/open/floor/plating, /area/almayer/hallways/hangar) +"hwM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) "hwO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cic) -"hwS" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"hwT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) "hwZ" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) -"hxn" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"hxA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"hxB" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 - }, +"hxf" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"hxh" = ( +/obj/structure/closet/secure_closet/CMO, /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"hxx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/bridgebunks) -"hxH" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) "hxK" = ( /obj/structure/pipes/standard/simple/visible{ dir = 4 @@ -24389,119 +20292,78 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"hxN" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +"hxV" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"hxW" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"hyi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"hyc" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/pilotbunks) -"hyr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hyh" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/living/briefing) -"hyw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"hyx" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"hyy" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/area/almayer/engineering/ce_room) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) "hyz" = ( /obj/structure/shuttle/part/dropship2/right_outer_wing_connector, /turf/open/space/basic, /area/almayer/hallways/hangar) -"hyM" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) +"hyD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"hyH" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"hyK" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "hyN" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/north2) -"hyV" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/starboard_hallway) -"hyY" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"hzf" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"hzl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"hzo" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"hzq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hyP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 }, -/area/almayer/hallways/port_umbilical) +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"hzj" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"hzk" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "hzx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -24509,52 +20371,57 @@ /obj/structure/disposalpipe/junction, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hzE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"hzG" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hzI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hzK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hzL" = ( /obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"hAk" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orangecorner, +/area/almayer/shipboard/brig/evidence_storage) +"hAn" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/almayer/living/offices) -"hzT" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/medical/lower_medical_medbay) -"hAm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) "hAq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -24562,12 +20429,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"hAz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) "hAC" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -24593,65 +20454,73 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"hAH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"hAK" = ( -/obj/structure/machinery/light{ +"hAD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hAJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"hAL" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"hBb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"hAM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"hBe" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"hAP" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/phone_base{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"hBC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"hAZ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"hBf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"hBr" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/aft_hallway) +"hBy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hBz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower) +"hBA" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"hBB" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"hBE" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) "hBF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) @@ -24661,39 +20530,16 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"hBO" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" - }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"hBP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +"hBZ" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/squads/charlie) -"hBQ" = ( -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) "hCg" = ( /obj/structure/machinery/conveyor_switch{ id = "gym_2"; @@ -24710,26 +20556,9 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"hCk" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"hCt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) +"hCo" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/aft_hallway) "hCJ" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -24743,15 +20572,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"hCM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) "hCO" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -24759,50 +20579,82 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/bravo) -"hCW" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) "hCY" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"hDj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"hDk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"hDl" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "hDn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"hDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"hDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hDx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/area/almayer/shipboard/brig/cic_hallway) -"hEg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"hDy" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/aft_hallway) +"hDA" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"hDR" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"hDU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "hEh" = ( /obj/structure/sink{ dir = 1; @@ -24817,121 +20669,35 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_emb) -"hEj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"hEy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"hEB" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"hEJ" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/starboard) -"hEN" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"hEQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"hES" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." +"hEm" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"hEn" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"hET" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"hEs" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"hEZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"hFg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hFh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"hFi" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + dir = 10 }, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "hFj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -24939,28 +20705,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"hFl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"hFp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"hFv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) +"hFu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) "hFw" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -24971,31 +20719,15 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"hFz" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"hFB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" +"hFI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/offices) -"hFF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) "hFK" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "CMO Shutters"; @@ -25007,350 +20739,338 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"hFX" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +"hFN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"hFO" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/almayer/stair_clone) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hGa" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"hGg" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"hGl" = ( +"hGf" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"hGp" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/medical_science) +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) "hGq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"hGt" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"hGA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_p) -"hGT" = ( -/obj/structure/filingcabinet{ - density = 0; +"hGx" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"hGD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = 16 + pixel_y = -32 }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/living/offices) -"hHv" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"hGQ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"hHx" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"hHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hallways/port_hallway) -"hHQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"hGW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hGY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) -"hHV" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"hHd" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 }, -/area/almayer/living/briefing) -"hIh" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hull/lower_hull/l_f_s) -"hIq" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"hHm" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"hHG" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"hHH" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." }, -/area/almayer/hull/upper_hull/u_a_s) -"hIu" = ( -/obj/structure/machinery/light/small{ +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hHN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"hIw" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hull/upper_hull/u_f_p) -"hID" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"hHR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"hHZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" }, -/area/almayer/engineering/starboard_atmos) -"hIG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"hIi" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"hIs" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"hIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hallways/stern_hallway) -"hIO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/warden_office) +"hII" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/medical_science) -"hIP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hIJ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"hIY" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 }, -/area/almayer/hull/lower_hull/l_f_s) -"hJl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"hJa" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 }, -/area/almayer/living/pilotbunks) -"hJt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"hJp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/shipboard/brig/processing) -"hJy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hJz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/starboard) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) "hJA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"hJN" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"hJQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"hJW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"hKb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"hKq" = ( +"hJR" = ( /obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 }, -/area/almayer/engineering/engine_core) -"hKy" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"hKd" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"hKf" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"hKB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"hKz" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"hKL" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/hallways/aft_hallway) -"hKI" = ( -/obj/effect/attach_point/crew_weapon/dropship2, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"hKV" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"hKZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"hKQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hLa" = ( +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/engineering/lower_engineering) -"hKU" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hLd" = ( /obj/structure/surface/table/almayer, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 8 +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hLr" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/main_office) -"hKX" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"hLA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_s) -"hLx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"hLF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"hLG" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/almayer/medical/chemistry) -"hLX" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hLR" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "hLY" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -25358,102 +21078,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"hMa" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, +"hMb" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"hMk" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"hMd" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"hMh" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/living/cryo_cells) -"hMp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autodispenser{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"hMr" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) "hMy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"hMz" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"hMA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +"hMB" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/area/almayer/hallways/aft_hallway) -"hMC" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/morgue) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) "hMG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25463,20 +21121,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"hMV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"hMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"hMR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/port_hallway) -"hNo" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"hMS" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"hNc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"hNj" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 }, -/area/almayer/engineering/lower_engineering) +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) "hNv" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -25484,145 +21166,47 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/general_equipment) -"hNz" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) +"hNA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) "hNB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"hNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"hNL" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"hNM" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"hNN" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - pixel_x = 8; - pixel_y = -16 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"hNJ" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Chief MP's Bedroom" }, -/area/almayer/hallways/hangar) -"hNQ" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"hNK" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"hOb" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"hOc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, -/area/almayer/living/briefing) -"hOl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"hOo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"hOp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"hOx" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/general_equipment) -"hOB" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/securestorage) -"hOE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "pipe-c" }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"hOk" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"hOs" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"hOC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "hOQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -25637,166 +21221,83 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"hOT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"hPd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"hPe" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) +"hPb" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) "hPk" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"hPr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hPB" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 }, -/area/almayer/squads/delta) -"hPK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hPN" = ( +/obj/item/toy/deck{ + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"hPO" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, -/area/almayer/hallways/port_hallway) -"hPU" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hPT" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"hQo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hQu" = ( +/obj/structure/platform{ dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hQE" = ( /obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 + dir = 8 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hQO" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"hQU" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/hallways/hangar) -"hQd" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"hQj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"hQt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/hydroponics) -"hQC" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"hQK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"hQX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"hQY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"hRd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"hRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"hRg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/securestorage) "hRo" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -25810,102 +21311,38 @@ }, /turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"hRs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +"hRq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"hRz" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"hRK" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"hRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/engineering/lower) +"hRW" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hSk" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/navigation) -"hRP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"hSm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/hull/upper_hull/u_a_s) -"hRT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"hSb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"hSi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"hSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hSB" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 }, -/area/almayer/medical/lower_medical_lobby) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) "hSH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -25920,74 +21357,53 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"hTe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"hTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"hTo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"hTs" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"hSJ" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + id = "port_door" }, -/area/almayer/squads/req) -"hTD" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"hSM" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - name = "\improper Evacuation Airlock PL-1"; + name = "\improper Evacuation Airlock SU-3"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/almayer/powered) -"hTG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_m_p) -"hTP" = ( +"hSX" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"hTv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"hTQ" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"hTz" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"hTA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south1) -"hTT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"hTJ" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"hTS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) "hTV" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -25999,32 +21415,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"hTX" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"hUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) "hUf" = ( /obj/structure/pipes/vents/pump/siphon/on{ dir = 1; @@ -26032,35 +21422,40 @@ }, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"hUg" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"hUt" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"hUo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/hangar) -"hUz" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hUB" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_f_p) +"hUG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" }, -/area/almayer/shipboard/brig/cic_hallway) -"hUA" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"hUN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "hUS" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -26075,159 +21470,132 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"hVf" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ +"hUX" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"hUZ" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"hVg" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hVc" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, -/area/almayer/engineering/upper_engineering) -"hVn" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"hVr" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"hVs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/area/almayer/living/grunt_rnr) -"hVP" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"hVR" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hVB" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hVE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"hVO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"hVS" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"hWd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; - name = "Brig"; - req_access = null; - req_one_access_txt = "1;3" + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"hWe" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) -"hVV" = ( -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"hWc" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"hWg" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) "hWi" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"hWm" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/officer_study) -"hWD" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"hWH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"hWN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"hWT" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) "hWW" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"hWX" = ( +"hXd" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1 }, -/area/almayer/living/synthcloset) -"hXm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"hXf" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"hXr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"hXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"hXl" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hXq" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) "hXw" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -26236,33 +21604,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"hXx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"hXA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Engineering Storage" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"hXO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hXX" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"hYj" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"hYc" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"hYh" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 }, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) "hYk" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -26271,18 +21635,12 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"hYq" = ( +"hYr" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/perma) "hYu" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -26300,421 +21658,448 @@ /obj/item/tool/lighter, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"hYA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"hYE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "hYK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"hYN" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"hYO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"hZl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"hYS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Power Control Room"; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;6" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hZo" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) +"hZD" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"hZF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/shipboard/brig/processing) -"hYT" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/catwalk{ + health = null }, -/area/almayer/powered/agent) -"hYX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"hZZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"ian" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) -"hZb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"hZj" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iap" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"iaw" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"iaE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_f_s) -"hZn" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/charlie) -"hZo" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cic) -"hZz" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"iaN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_point_defense) +"iaS" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"hZA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 + name = "\improper Containment Airlock" }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/phone_base{ - dir = 1; - name = "Brig Warden's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig Warden's Office"; - pixel_x = -16 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"hZB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"iaU" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/command/cic) -"hZC" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"ibe" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"ibf" = ( +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"ibg" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"ibk" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/area/almayer/hallways/aft_hallway) -"hZQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"ibv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"ibz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/briefing) -"iai" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ibH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"ibK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/area/almayer/hull/lower_hull/l_m_p) -"iak" = ( -/obj/structure/barricade/handrail/medical{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"ial" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30; - pixel_y = -6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"ibN" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"ibT" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ibX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 }, -/area/almayer/shipboard/brig/perma) -"ias" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_m_p) -"iaN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_point_defense) -"iaQ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"icc" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ich" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"icn" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/area/almayer/medical/lower_medical_lobby) -"ibf" = ( -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"ibl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"icp" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"icw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"icA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"icJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"icK" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"icV" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"idk" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "Perma 2L"; + name = "Perma 2 Lockdown"; + pixel_x = -24; + pixel_y = 12; + req_access_txt = "3" }, -/area/almayer/squads/charlie) -"ibn" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"idr" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"idt" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"idE" = ( +/turf/closed/wall/almayer, /area/almayer/living/pilotbunks) -"ibv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"ibz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"idN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"icq" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"idY" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"iea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/medical_science) -"ics" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"ict" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 +"iec" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"iei" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ieo" = ( +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"ieq" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/area/almayer/lifeboat_pumps/south1) -"icy" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/area/almayer/hallways/hangar) -"icD" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, /obj/structure/window/reinforced{ dir = 4; + pixel_x = -2; pixel_y = 4 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, /obj/structure/window/reinforced{ dir = 8; layer = 3.3; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"icV" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ida" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/repair_bay) -"idb" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"idd" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"idf" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/shipboard/starboard_missiles) -"idi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"iez" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ pixel_x = 8; pixel_y = -2 }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -7 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"ieI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/corporateliason) -"idn" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) -"ids" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/shipboard/weapon_room) -"idA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_m_p) -"idE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/pilotbunks) -"idR" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, -/area/almayer/shipboard/navigation) -"iei" = ( /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ieH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/port_midship_hallway) "ieL" = ( /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"ieN" = ( -/obj/structure/machinery/landinglight/ds2{ +"ieO" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"ieW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/hangar) -"ieS" = ( -/obj/structure/stairs, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ifa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"ifd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"iff" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"ifl" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"ifn" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ifD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" }, -/area/almayer/hallways/starboard_hallway) +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) "ifE" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -26729,243 +22114,126 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"ifG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"ifI" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"ifV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"igj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Warden Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"igv" = ( +"ifH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"igx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"igH" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "86" - }, -/area/almayer/hallways/hangar) -"igP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"ihb" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ihg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"ifK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"ihj" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ifQ" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ifU" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"iga" = ( +/obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"ihn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"igk" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 4 }, -/area/almayer/medical/operating_room_four) -"ihs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"ihw" = ( -/obj/structure/machinery/light/small{ - dir = 8 + dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"ihI" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"ihK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"igl" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"igH" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "86" }, -/area/almayer/living/chapel) -"ihO" = ( -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/hallways/hangar) +"igM" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"igX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"iid" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"ihr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"ihS" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"iiu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"iim" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" }, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"iin" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) "iiy" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iiG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"iiY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"iiz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iiO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"iiS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/general_equipment) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"iiV" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) "ijb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"ijf" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"ijg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"ijh" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"ijw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) "ijz" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -26992,133 +22260,95 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ijN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" +"ijA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"ijC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"ijV" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"ijZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ike" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/starboard_garden) +"ikz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"ikU" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/cic) -"iko" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ikV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; dir = 1; - name = "\improper Spare Bomb Suit"; req_one_access = null; - req_one_access_txt = "35" + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"iku" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/aft_hallway) -"ikK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"ila" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"iln" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/upper_medical) -"ikP" = ( +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"ilq" = ( +/obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"ikR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"ilx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"ikY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"ill" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ilA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"ilr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"ils" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ilK" = ( /obj/structure/machinery/light{ dir = 8 @@ -27131,179 +22361,165 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"ilV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"ilW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"ilX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/area/almayer/engineering/upper_engineering) -"imr" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ +/obj/structure/filingcabinet{ + density = 0; pixel_x = 8; - pixel_y = -32 + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"img" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"imx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"imw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/combat_correspondent) -"imJ" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"imA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_a_p) -"imS" = ( -/obj/structure/machinery/cm_vending/gear/tl{ +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"imN" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"imP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"imR" = ( +/obj/structure/machinery/vending/coffee{ density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + pixel_y = 16 }, -/area/almayer/squads/alpha) -"ina" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"imX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/command/computerlab) +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ink" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) "inu" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"inD" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cells) +"inH" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) +"inJ" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) "inK" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"inP" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"inY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"ioa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +"inV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, -/area/almayer/medical/upper_medical) -"ios" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"iob" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ioj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"ioy" = ( +/turf/open/floor/almayer/blue/southwest, /area/almayer/command/cic) -"iou" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ioz" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/living/gym) -"ioA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; +/obj/structure/sign/safety/intercom{ + pixel_x = 32; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"ioB" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 }, -/area/almayer/squads/delta) -"ioH" = ( -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17 +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album, -/obj/item/device/camera_film, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"ioQ" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 }, -/area/almayer/living/briefing) -"iph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, +/turf/open/floor/almayer/orange, +/area/almayer/living/starboard_emb) +"ioM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ioN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"ioP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"ioV" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"ipd" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) "ipi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27316,6 +22532,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"ipr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) "ipu" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -27323,67 +22545,54 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"ipv" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"ipy" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"ipD" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/tankerbunks) -"ipE" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) "ipN" = ( /turf/closed/shuttle/dropship2{ icon_state = "77" }, /area/almayer/hallways/hangar) +"ipT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) "ipY" = ( /turf/closed/shuttle/dropship2{ icon_state = "18" }, /area/almayer/hallways/hangar) -"iqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"iqa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"iqn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iqc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"iqv" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"iqg" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"iqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/chief_mp_office) +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) "iqx" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -27394,41 +22603,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"iqB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"iqD" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Spare Prison Uniforms" - }, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/shoes/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/orange, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) "iqI" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) -"irw" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" +"iqS" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"iqU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"ira" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"irc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"irv" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" + }, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) "irx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -27441,124 +22651,79 @@ damage_cap = 15000 }, /area/almayer/squads/alpha) -"irz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"irK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ +"irH" = ( +/obj/structure/window/reinforced{ dir = 1; - icon_state = "red" + layer = 3 }, -/area/almayer/command/lifeboat) +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) "irM" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, /area/almayer/living/offices) -"ism" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/officer_study) -"iso" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"irY" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"isi" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"isp" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"isw" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/machinery/door/window/tinted{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"isr" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"isA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"isE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"isx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/squads/req) -"isK" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"isz" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/command/telecomms) -"isP" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/lifeboat_pumps/south1) -"isS" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/area/almayer/hallways/stern_hallway) +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/starboard_emb) "isW" = ( /obj/structure/sign/safety/maint{ pixel_x = 32; @@ -27570,52 +22735,60 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) -"iti" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"itr" = ( +"itp" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/command/telecomms) -"itG" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/north1) -"itU" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"itI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"iui" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"itL" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"itM" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" }, -/obj/structure/bed/chair/bolted{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"itP" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"itQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"itY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"itZ" = ( +/obj/structure/closet/secure_closet/securecom, +/obj/item/storage/box/kit/honorguard, +/obj/item/storage/box/kit/honorguard, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"iue" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"iuk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) "iuq" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/sign/safety/medical{ @@ -27623,64 +22796,83 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iuE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"ius" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/aft_hallway) +"iut" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"iuu" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/bag/plants{ + pixel_x = 3 }, -/area/almayer/squads/bravo) -"iuZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/storage/bag/plants{ + pixel_y = -3 }, -/area/almayer/engineering/laundry) -"ivh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"iuv" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"iux" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"iuG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/living/captain_mess) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"iuL" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "ivl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"ivp" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) +"ivz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"ivE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "ivH" = ( /turf/open/floor/almayer, /area/almayer/living/basketball) -"ivK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ivM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"ivO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) "ivS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -27694,12 +22886,14 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"ivT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"ivW" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) "iwe" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -27707,27 +22901,24 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iwj" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"iwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"iwk" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"iwt" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "iwy" = ( /obj/structure/machinery/smartfridge/chemistry{ pixel_x = -3; @@ -27735,94 +22926,72 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"iwL" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +"iwJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"iwX" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/hallways/hangar) -"ixc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"iwY" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/area/almayer/squads/req) +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) "ixd" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 4 }, /area/almayer/medical/containment/cell) -"ixj" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"ixn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"ixv" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, +"ixe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"ixp" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"ixw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/squads/delta) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "ixG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"ixH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) "ixK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -27838,105 +23007,131 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"ixM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +"ixP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"iyf" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"ixS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"iyq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, -/area/almayer/shipboard/navigation) -"ixV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) +"iyw" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iyC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/medical/upper_medical) -"iyr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"iyH" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"iyJ" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"iyK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 }, -/area/almayer/medical/operating_room_three) -"iyx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"iyQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iyU" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"iyO" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"iza" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"izb" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/area/almayer/squads/req) -"izi" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"izq" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "Perma 2L"; + name = "\improper cell shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" }, -/area/almayer/hull/upper_hull/u_m_s) -"izk" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"izu" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"izw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) "izA" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"izO" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_a_p) -"iAa" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"iAe" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +"izC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"izM" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"izS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"iAc" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) "iAf" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -27944,36 +23139,62 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"iAo" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"iAv" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"iAw" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"iAD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) "iAF" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"iAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"iAT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"iBc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/area/almayer/hallways/upper/aft_hallway) +"iAK" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"iBd" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) "iBk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -27981,43 +23202,37 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cic) -"iBo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"iBt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" +"iBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/starboard_umbilical) -"iBC" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"iBz" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "iBJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"iBK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"iCd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) "iCp" = ( /obj/structure/closet/secure_closet/guncabinet/red, /obj/item/ammo_magazine/shotgun, @@ -28050,39 +23265,68 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"iCX" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" +"iCs" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"iCu" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"iDr" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"iDt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"iDw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_f_s) -"iDu" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/shipboard/brig/chief_mp_office) -"iDC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"iDA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"iDP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"iDK" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"iDW" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"iDY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 }, -/area/almayer/hallways/port_hallway) +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) "iEe" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -28101,135 +23345,76 @@ /obj/effect/spawner/random/tool, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"iEi" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" +"iEg" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/area/almayer/engineering/upper_engineering) +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) "iEm" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/navigation) -"iEs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"iEK" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"iES" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"iEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" +"iEu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/starboard) -"iFe" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"iEy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/aft_hallway) +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"iEN" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) "iFg" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -28 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iFn" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +"iFi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"iFl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iFr" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "iFs" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"iFD" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 18"; - buildstate = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"iFL" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"iFY" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"iGh" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"iGq" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/command/cic) +"iFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"iGg" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) "iGv" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -28242,51 +23427,31 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"iGx" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +"iGD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"iGC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"iGD" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"iGK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"iGP" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "97" +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"iGG" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"iGP" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "97" }, /area/almayer/hallways/hangar) +"iGQ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) "iGT" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -28299,50 +23464,96 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"iHa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"iGX" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"iHp" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iHt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"iHw" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"iHK" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"iHL" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iHW" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"iHg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"iHX" = ( /obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 + pixel_y = 32 }, /obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"iHY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"iHZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/sea_office) -"iHy" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"iIl" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"iIs" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/area/almayer/hallways/aft_hallway) -"iHN" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 17 }, -/area/almayer/living/pilotbunks) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"iIz" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) "iIA" = ( /obj/structure/machinery/light{ dir = 4 @@ -28352,85 +23563,32 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"iIB" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) "iIL" = ( /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iIQ" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"iIS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_emb) -"iIX" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"iJb" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_y = -32 }, -/area/almayer/medical/operating_room_three) +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) "iJc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"iJg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"iJk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) -"iJl" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) "iJm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -28441,1255 +23599,869 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"iJt" = ( +"iJp" = ( /obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"iJv" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/living/bridgebunks) -"iJE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"iJq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"iKh" = ( -/obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"iKH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"iKR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iJJ" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"iJP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_f_p) -"iLm" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"iJX" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"iLF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/maint{ + pixel_x = -18 }, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"iJZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iKk" = ( +/obj/structure/toilet{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"iLK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"iLL" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"iLU" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"iKE" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"iKM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"iLV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"iLX" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"iKQ" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"iKZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/area/almayer/squads/alpha) -"iMj" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"iLd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"iMm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"iMr" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"iLh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 17 }, -/area/almayer/hallways/hangar) -"iMs" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"iMJ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +/obj/structure/machinery/computer/card{ + dir = 4; + pixel_y = -16 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/navigation) -"iMN" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"iLl" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"iLv" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iLW" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"iMk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"iMC" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iMD" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"iMG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/armory) -"iMO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) "iMT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"iMY" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) "iNc" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"iNl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"iOb" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iOd" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"iOA" = ( +/obj/item/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iOC" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 }, -/obj/item/tool/pen/blue{ - pixel_x = -6 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"iOS" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"iPi" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) +"iPo" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"iPs" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"iNR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"iPQ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"iQf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"iQh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"iQo" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"iQu" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"iQU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"iQV" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 }, -/area/almayer/hallways/port_hallway) -"iNU" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"iQY" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lockerroom) +"iRj" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"iRm" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"iRo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"iRt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/intercom{ + pixel_x = -17 }, +/turf/open/floor/almayer/plate, /area/almayer/medical/morgue) -"iOi" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +"iRu" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cryo) +"iRx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"iOs" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iRB" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"iRC" = ( +/obj/structure/stairs{ dir = 8; - icon_state = "orange" + icon_state = "ramptop" }, -/area/almayer/engineering/upper_engineering/starboard) -"iOw" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"iSk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"iSr" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" }, -/area/almayer/hallways/aft_hallway) -"iOG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"iSB" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "92" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/hangar) +"iSL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"iSQ" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"iTc" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"iOH" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"iTj" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iTl" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/squads/charlie) -"iOU" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iTz" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"iTD" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"iTQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/medical/hydroponics) -"iPh" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) -"iPl" = ( -/obj/structure/sink{ +/obj/structure/sign/safety/airlock{ + pixel_x = 15; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"iPr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"iTS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Cells"; + pixel_x = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"iUl" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hallways/vehiclehangar) -"iPE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"iUs" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/squads/alpha_bravo_shared) -"iPJ" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"iUt" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"iUv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"iUz" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"iPP" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/laundry) -"iPQ" = ( -/obj/structure/platform_decoration, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"iPW" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/area/almayer/shipboard/starboard_missiles) +"iUY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/brig/cells) -"iPX" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"iQd" = ( +/obj/structure/bed/stool, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/offices) -"iQo" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"iVd" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"iVf" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"iVo" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"iVr" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"iVs" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iVw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"iVA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"iQq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"iVM" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/command/cichallway) -"iQs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iVS" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/port) +"iVU" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"iWi" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"iWk" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/area/almayer/living/cryo_cells) -"iQx" = ( +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"iWl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"iWo" = ( +/turf/open/floor/almayer, +/area/almayer/command/cic) +"iXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_lobby) -"iQC" = ( -/obj/structure/closet/emcloset, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"iXi" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"iQR" = ( -/obj/structure/stairs{ +/area/almayer/maint/hull/upper/u_a_s) +"iXn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"iXq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hallways/port_hallway) -"iQW" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hallways/port_hallway) -"iQY" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lockerroom) -"iRf" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"iXr" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"iXw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"iXx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "Brig" }, -/area/almayer/engineering/engine_core) -"iRg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"iXH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"iXK" = ( +/obj/structure/bed, +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iXP" = ( +/obj/structure/bed, +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/engineering/engineering_workshop) -"iRj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"iXX" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 8; + id = "Perma 1"; + name = "\improper isolation shutter" + }, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, /turf/open/floor/plating, /area/almayer/shipboard/brig/perma) -"iRu" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cryo) -"iRw" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"iRB" = ( -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"iRN" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iYe" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/starboard_atmos) +"iYt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"iYu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"iRX" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"iSi" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 + icon_state = "S" }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"iYv" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"iSj" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"iSn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"iSp" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" + id_tag = "or03"; + name = "Operating Theatre 3" }, -/area/almayer/engineering/upper_engineering/port) -"iSA" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Cryogenics Bay"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cryo) -"iSB" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "92" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"iYx" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"iSL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"iYD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"iSM" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/area/almayer/shipboard/weapon_room) +"iYL" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 }, -/area/almayer/hallways/hangar) -"iSS" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"iYZ" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/squads/charlie) -"iSY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/area/almayer/hull/upper_hull/u_a_p) -"iTf" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"iZT" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/squads/charlie) -"iTg" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iZW" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, -/area/almayer/medical/containment) -"iTi" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/hangar) -"iTm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"jag" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/general_equipment) +"jaq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"iTo" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) +"jaF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"jaJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"jaV" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jbf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"iTL" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/engineering/lower/workshop) +"jbi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) -"iTS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "Almayer"; - phone_id = "Brig Cells"; - pixel_x = 15 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/redcorner, /area/almayer/shipboard/brig/processing) -"iUh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +"jbk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/command/cichallway) -"iUz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"jbl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"iUR" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_p) -"iUX" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/area/almayer/squads/charlie) +"jbt" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"iVa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/hull/upper/u_a_s) +"jcd" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/lifeboat) -"iVe" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/upper_hull/u_f_s) -"iVB" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jcj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/squads/req) -"iVH" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"jct" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"iVJ" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell/cl) -"iVS" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/port) -"iVW" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"jcw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/offices) -"iWm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"jcD" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"iWo" = ( /turf/open/floor/almayer, -/area/almayer/command/cic) -"iWt" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"iWu" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/area/almayer/living/gym) +"jcL" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = -10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/closed/shuttle/dropship2{ + icon_state = "52" }, -/area/almayer/squads/delta) -"iWW" = ( -/obj/structure/bed/chair{ +/area/almayer/hallways/hangar) +"jcO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"iXa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/engineering/upper_engineering) -"iXj" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/ammo_magazine/rifle/m41aMK1/ap, -/obj/item/weapon/gun/rifle/m41aMK1/ap, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cic) -"iXp" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"iXA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"iXS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"iXT" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"iXU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/officer_study) -"iXX" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 1"; - name = "\improper isolation shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"iYa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices) -"iYd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/offices/flight) -"iYe" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/starboard_atmos) -"iYk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"iYm" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"iYn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_f_s) -"iYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/offices) -"iYy" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"iYD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"iYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"iYO" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/vehiclehangar) -"iYP" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"iYU" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"iYV" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engineering_workshop) -"iYY" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"iZd" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"iZv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"iZK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"iZP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"iZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"jak" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"jau" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jaz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"jaC" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/hydroponics) -"jaM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"jaS" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"jaZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"jbb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"jbl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"jbs" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"jbE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"jbJ" = ( -/obj/structure/machinery/computer/arcade, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) -"jbP" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/starboard_atmos) -"jbR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) -"jcc" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"jcr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"jcw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"jcx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"jcD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"jcL" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = -10 - }, -/turf/closed/shuttle/dropship2{ - icon_state = "52" - }, -/area/almayer/hallways/hangar) -"jcT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"jcU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"jdc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "red" +"jcX" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, -/area/almayer/shipboard/weapon_room) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "jde" = ( /obj/structure/machinery/light{ dir = 1 @@ -29726,62 +24498,37 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jdm" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jdq" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"jdy" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jdv" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 }, -/area/almayer/squads/req) -"jdB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 +/obj/item/device/radio/marine{ + pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"jdC" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 }, -/area/almayer/command/cichallway) +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) "jdF" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"jdH" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"jdJ" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) "jdV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29791,137 +24538,87 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"jdZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"jdW" = ( +/obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"jei" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"jel" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/living/cryo_cells) -"jer" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"jeu" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"jeF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = -15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"jeK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"jet" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, /area/almayer/engineering/upper_engineering) -"jeO" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"jeU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"jeC" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"jeT" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"jeW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"jeX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"jfe" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"jff" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"jfh" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/delta) -"jeW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/west, /area/almayer/command/computerlab) -"jeY" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; +"jfi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"jfs" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"jft" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/squads/delta) -"jfk" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"jfz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) "jfB" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) -"jfH" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +"jfJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_f_s) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "jfO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -29932,69 +24629,114 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"jfP" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "silver" +"jga" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"jgb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 }, -/area/almayer/command/cic) -"jfR" = ( -/obj/structure/catwalk{ - health = null +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 }, -/area/almayer/stair_clone/upper) +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "jgd" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "22" }, /area/almayer/hallways/hangar) -"jgt" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jge" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, -/area/almayer/squads/charlie) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) "jgy" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"jgC" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" +"jgz" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"jgM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/area/almayer/living/grunt_rnr) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"jgC" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"jgI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"jgN" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"jgO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jgS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) "jgX" = ( /obj/item/stack/tile/plasteel{ pixel_x = 4; @@ -30002,17 +24744,15 @@ }, /turf/open/floor/plating, /area/almayer/living/starboard_emb) -"jgZ" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) +"jhd" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/almayer/hallways/hangar) +"jhg" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"jhh" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/cells) "jho" = ( /obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing, /turf/open/floor/plating, @@ -30026,157 +24766,98 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) -"jhw" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"jhz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +"jhq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"jhH" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/aft_hallway) +"jhL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hallways/hangar) -"jig" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"jim" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/evidence_storage) -"jin" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"jio" = ( -/obj/item/stack/tile/carpet{ - amount = 12 - }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "pipe-c" }, -/area/almayer/living/grunt_rnr) -"jiq" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jid" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"jir" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"jis" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "green" + icon_state = "NW-out" }, -/area/almayer/hallways/starboard_hallway) -"jiv" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; - pixel_y = -1 + layer = 2.5 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"jie" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"jii" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/entrance{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"jiA" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"jiE" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"jiI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"jiR" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"jiS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"jiX" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/medical/morgue) -"jjf" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"jim" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/evidence_storage) +"jiy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jiD" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"jiN" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"jjb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/squads/charlie) -"jjh" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"jjc" = ( +/obj/structure/safe, +/obj/item/coin/platinum, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/clothing/accessory/storage/holster, +/obj/item/weapon/gun/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jjn" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) "jjr" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -30187,13 +24868,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"jju" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 +"jjD" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) "jjK" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -30203,134 +24898,113 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"jjM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"jki" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"jkn" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"jkq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"jkr" = ( +"jkb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/port_umbilical) -"jky" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/living/gym) -"jkO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower_engineering) -"jkW" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" - }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"jkY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"jkz" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"jkK" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/squads/alpha) -"jlc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"jkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"jlf" = ( -/obj/structure/closet/secure_closet/securecom, -/obj/item/storage/box/kit/honorguard, -/obj/item/storage/box/kit/honorguard, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/cic) -"jlj" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jle" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"jli" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/containment/cell) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "jlr" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"jlv" = ( +"jls" = ( /obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"jlt" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"jlu" = ( +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"jlB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/lifeboat_pumps/south1) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) "jlC" = ( /turf/closed/wall/almayer, /area/almayer/engineering/airmix) -"jmc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ +"jlG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"jlI" = ( +/obj/structure/machinery/computer/working_joe{ dir = 4; - icon_state = "red" + pixel_x = -17 }, -/area/almayer/shipboard/port_missiles) -"jmm" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/upper/u_f_p) +"jlM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jlR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"jmf" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"jmk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_m_p) +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) "jms" = ( /obj/structure/sign/poster{ pixel_x = -32; @@ -30338,361 +25012,240 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"jmy" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_four) -"jmB" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/pilotbunks) -"jmH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangefull" +"jmz" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/engineering_workshop) -"jmS" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"jmE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"jmG" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/area/almayer/squads/alpha) -"jnk" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"jmN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"jmV" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"jnr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"jmZ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"jnh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"jnv" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jnB" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"jnC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) "jnN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"jnO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"jnY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"jok" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"jnW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/stern_hallway) -"jol" = ( -/turf/closed/wall/almayer, -/area/almayer/command/cichallway) -"jot" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jod" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"jov" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"jof" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"jol" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"jos" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) "joE" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = -32 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"joH" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"joI" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"joU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"jpd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"jpo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull) -"jpq" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +"jpr" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/command/lifeboat) -"jpx" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"jpJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/stair_clone/upper) -"jpD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"jpM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/green/northeast, /area/almayer/squads/req) -"jpL" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"jpQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jqf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jpX" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"jqc" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/engineering/engineering_workshop) -"jqg" = ( -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jql" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) "jqq" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/numbertwobunks) -"jqs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"jqv" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 }, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"jqx" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) +"jqC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) "jqD" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"jqL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "blue" +"jra" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/squads/delta) -"jqV" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"jrb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"jrg" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"jrn" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/structure/bed/chair{ - can_buckle = 0; +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jre" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/offices) -"jrp" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jrm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"jrq" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"jro" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "jrA" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"jrB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"jrG" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "cl_shutters 3"; - name = "\improper Privacy Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jrH" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jrI" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/command/corporateliason) +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) "jrR" = ( /obj/structure/machinery/light{ dir = 1 @@ -30700,220 +25253,99 @@ /obj/structure/machinery/portable_atmospherics/canister/empty, /turf/open/floor/engine, /area/almayer/engineering/airmix) -"jrS" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/containment/cell) -"jrU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"jsb" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"jsf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"jsn" = ( -/obj/structure/machinery/light{ - dir = 8 +"jrT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jrX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"jsc" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/lifeboat) -"jsI" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jsk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"jsK" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"jsr" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"jss" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"jsD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/medical/containment/cell) +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) "jsN" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/starboard_missiles) -"jsQ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - icon_state = "redfull" +"jsZ" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/hull/lower_hull/l_f_s) +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) "jti" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"jto" = ( -/obj/structure/surface/table/almayer, -/obj/item/handcuffs{ - pixel_y = 12 - }, -/obj/item/handcuffs{ - pixel_y = 6 - }, -/obj/item/handcuffs, -/obj/item/weapon/baton{ - pixel_x = -12 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"jtC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"jtv" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"jtD" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"jtN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"jtV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"juo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"jux" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"juy" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"jtL" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/alpha_bravo_shared) -"juB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"jua" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 2"; + buildstate = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"jui" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/almayer/squads/delta) -"juM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"juP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliason) -"juS" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"juz" = ( /obj/vehicle/powerloader, /obj/structure/platform{ dir = 4 @@ -30922,18025 +25354,2535 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"juH" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/area/almayer/hallways/repair_bay) -"juW" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"juJ" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"juU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"juX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"juZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hallways/repair_bay) -"jvh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jvn" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"jvq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/shipboard/brig/general_equipment) -"jvt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_umbilical) -"jvK" = ( -/obj/structure/sign/safety/escapepod{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jvA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jvQ" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"jvW" = ( +/obj/item/clothing/head/helmet/marine/reporter, +/obj/item/clothing/suit/storage/marine/light/reporter, +/obj/item/clothing/head/cmcap/reporter, +/obj/item/clothing/head/fedora, +/obj/structure/closet/secure_closet, +/obj/item/storage/box/tapes, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"jwc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"jxc" = ( +/obj/structure/sign/safety/conference_room{ pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"jwa" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/area/almayer/hallways/lower/starboard_midship_hallway) +"jxk" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"jwk" = ( -/obj/structure/toilet{ +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"jxp" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"jxB" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Waste Air Injector" }, -/area/almayer/shipboard/brig/chief_mp_office) -"jwm" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 }, -/obj/structure/platform{ +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"jxU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jyc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"jyw" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"jyA" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 }, -/area/almayer/lifeboat_pumps/north2) -"jwp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jyD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"jyE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jyU" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jzj" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/area/almayer/hallways/aft_hallway) -"jwr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"jAb" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"jAh" = ( +/obj/structure/pipes/unary/outlet_injector{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"jws" = ( +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"jAz" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"jwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"jAC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jAD" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"jAL" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/lower_hull/l_f_s) -"jwE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"jAN" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/obj/item/device/radio, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jAQ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/area/almayer/hallways/hangar) -"jwF" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/engineering/engine_core) -"jwH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"jAU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"jAW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" + icon_state = "S" }, -/area/almayer/medical/hydroponics) -"jwJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"jAX" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/bridgebunks) -"jwO" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"jBc" = ( +/obj/item/tool/kitchen/tray{ + layer = 2.9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3 }, -/area/almayer/squads/alpha) -"jxa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3 }, -/turf/open/floor/almayer{ +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jBQ" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_green_side" + icon_state = "pipe-c" }, -/area/almayer/medical/operating_room_one) -"jxh" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"jCg" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"jCt" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"jCu" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"jCC" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 15"; + buildstate = 1 }, -/area/almayer/hallways/hangar) -"jxm" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/engine_core) -"jxy" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"jCI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"jCN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/hallways/vehiclehangar) -"jxz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/hull/upper/u_m_p) +"jCQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 3"; - name = "\improper Courtyard Divider" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jCU" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, -/area/almayer/shipboard/brig/cells) -"jxB" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Waste Air Injector" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"jDu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"jDy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"jDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jDY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"jxC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 }, -/area/almayer/engineering/upper_engineering) -"jxD" = ( -/obj/structure/machinery/smartfridge/chemistry{ +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jDZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jEd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/medical/containment) -"jxF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jEf" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jEl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"jEm" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"jEo" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 }, -/area/almayer/living/grunt_rnr) -"jxG" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"jEq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"jEr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 }, -/area/almayer/squads/req) -"jxH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"jEv" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"jEE" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"jEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hull/lower_hull/l_m_s) -"jyb" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jEJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"jyj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"jEY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/area/almayer/command/cichallway) -"jyl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"jFe" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "48" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/hangar) +"jFh" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 }, -/area/almayer/shipboard/weapon_room) -"jyn" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jFj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/pen{ + pixel_x = 7; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm{ + pixel_x = -5; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"jyt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jFo" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"jFv" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"jFY" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/upper_medical) +"jGc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"jGe" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jGf" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"jGg" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"jGp" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"jGq" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"jGz" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"jGA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/containment) -"jyx" = ( -/obj/structure/sign/safety/restrictedarea{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jGC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) +"jGQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"jyI" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"jyO" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"jHi" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"jHl" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/obj/item/clipboard{ + base_pixel_x = 20; + pixel_x = 5 }, -/area/almayer/shipboard/brig/main_office) -"jyV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/paper{ + pixel_x = 5 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/item/tool/pen{ + pixel_x = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"jyW" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/obj/structure/surface/table/reinforced/black, +/obj/structure/phone_base/rotary{ + name = "CIC Reception Telephone"; + phone_category = "Command"; + phone_id = "CIC Reception"; + pixel_x = -7; + pixel_y = 4 }, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"jyZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/command/cic) +"jHq" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/area/almayer/hull/lower_hull) -"jza" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jHr" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"jHK" = ( +/obj/structure/closet{ + name = "backpack storage" + }, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"jHR" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, /area/almayer/shipboard/weapon_room) -"jzf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +"jIi" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"jIv" = ( +/turf/closed/wall/almayer, +/area/almayer/living/commandbunks) +"jIw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/obj/structure/machinery/door_control{ - id = "cmp_armory"; - name = "Armory Lockdown"; - pixel_x = 24; - pixel_y = -6; - req_access_txt = "4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"jIL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"jIM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"jIR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"jIS" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"jzs" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_f_p) +"jIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/medical/upper_medical) -"jzz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jIU" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"jJi" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/general_equipment) +"jJl" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"jzE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"jJn" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"jJH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" }, -/area/almayer/medical/lower_medical_medbay) -"jzK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"jJN" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"jJO" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/item/bedsheet/purple{ + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/squads/delta) -"jAc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/command/computerlab) -"jAh" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"jAn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 +/mob/living/simple_animal/mouse/brown{ + name = "rat" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/area/almayer/squads/req) -"jAw" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"jJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/sign/safety/commline_connection{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"jJY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/req) -"jAN" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/obj/item/device/radio, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jBc" = ( -/obj/item/tool/kitchen/tray{ - layer = 2.9 +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"jKc" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jKN" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3 +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"jLd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jBk" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"jLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hallways/starboard_hallway) -"jBv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"jBz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"jLn" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jLw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jLx" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "orange" + pixel_y = 3 }, -/area/almayer/hallways/starboard_hallway) -"jBE" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jLE" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jLN" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"jBL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/living/offices/flight) -"jBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"jBY" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"jLR" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"jCj" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "SE-out" }, -/area/almayer/shipboard/weapon_room) -"jCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jLS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/window/westright{ + dir = 4; + req_access_txt = "28" }, -/area/almayer/powered/agent) -"jCp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/area/almayer/engineering/engineering_workshop) -"jCt" = ( -/obj/docking_port/stationary/emergency_response/external/port4, -/turf/open/space/basic, -/area/space) -"jCy" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"jCE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"jMq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"jMH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jMJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"jML" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/cic) -"jCK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jMR" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"jMS" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ pixel_y = 28 }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"jMU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"jMV" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"jNb" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"jNl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"jCP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"jCV" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"jCW" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"jDb" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"jNy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"jNC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"jNF" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 }, -/area/almayer/living/pilotbunks) -"jDu" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"jNG" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"jNN" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jOa" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"jOg" = ( +/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"jDw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/area/almayer/living/gym) +"jOh" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"jOk" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"jDx" = ( +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"jDC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/hallways/stern_hallway) -"jDG" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"jOl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jOt" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jOC" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"jOF" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"jOO" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_three) +"jOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/hallways/aft_hallway) -"jDT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"jPn" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 7 }, -/area/almayer/living/basketball) -"jDV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"jPw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"jPA" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"jPF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door_control{ + id = "Execution Shutters"; + name = "Privacy Shutters"; + pixel_y = 12; + req_access_txt = "3" }, -/area/almayer/engineering/engineering_workshop) -"jEa" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"jPH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jPJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jQe" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"jQq" = ( +/obj/structure/machinery/door_display/research_cell{ dir = 8; - name = "\improper Containment Airlock" + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) -"jEg" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" +"jQz" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/hull/upper_hull/u_f_s) -"jEj" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"jQF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/port_missiles) -"jEl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"jEo" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 +/area/almayer/lifeboat_pumps/north1) +"jQJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"jEq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"jQQ" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"jEx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"jEy" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_lobby) -"jEB" = ( -/obj/structure/sign/safety/cryo{ +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 1; - pixel_y = 26 + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"jQZ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"jEE" = ( -/obj/structure/platform{ - dir = 1 +/obj/vehicle/powerloader{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"jFe" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "48" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"jRj" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jRC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jRD" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"jRL" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"jFj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/pen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -5; - pixel_y = 8 +"jRM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha_bravo_shared) -"jFm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jRN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/offices/flight) -"jFr" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jRO" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"jFz" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"jSE" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters"; + name = "Privacy Shutters"; + pixel_y = -20; + req_access_txt = "200" }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"jSG" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"jSR" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/command/cichallway) -"jFA" = ( /obj/structure/platform{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/area/almayer/lifeboat_pumps/north2) -"jFF" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"jSW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"jFJ" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"jSX" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"jFY" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/upper_medical) -"jGj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jTh" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"jGk" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"jTk" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"jTu" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/area/almayer/squads/alpha) -"jGJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"jTv" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 }, -/area/almayer/command/cichallway) -"jGL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/basketball) -"jGS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"jTy" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/stern_hallway) -"jGW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"jTI" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"jTK" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jTW" = ( +/obj/structure/closet/hydrant{ + pixel_x = 30 }, -/obj/structure/platform{ - dir = 8 +/obj/item/reagent_container/hypospray/autoinjector/skillless, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jTZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/window/reinforced/ultra{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) +"jUc" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"jUf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/repair_bay) -"jHa" = ( -/obj/structure/bed/chair/comfy/blue{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"jUs" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"jUt" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) -"jHj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"jUG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 }, -/area/almayer/engineering/upper_engineering) -"jHl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/clipboard{ - base_pixel_x = 20; - pixel_x = 5 - }, -/obj/item/paper{ - pixel_x = 5 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/phone_base/rotary{ - name = "CIC Reception Telephone"; - phone_category = "Command"; - phone_id = "CIC Reception"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"jHp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"jHw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"jHA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"jHE" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/cells) -"jHF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) -"jHN" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"jHR" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"jIb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"jIk" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"jIl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"jIp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"jIu" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"jIv" = ( -/turf/closed/wall/almayer, -/area/almayer/living/commandbunks) -"jIy" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/numbertwobunks) -"jIz" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/living/starboard_garden) -"jIG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"jIH" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"jIL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"jJw" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"jJI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"jJR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"jJW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"jKd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/lower_hull/l_f_p) -"jKk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"jKJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"jKK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"jKT" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"jLg" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"jLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"jLz" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"jLC" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8; - layer = 3.1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"jLQ" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"jMm" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"jMu" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"jMw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"jMT" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliason) -"jNa" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"jNh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access = "19;27;22" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cryo_cells) -"jNJ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"jOc" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"jOg" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"jOh" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"jOk" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"jOO" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_three) -"jPa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"jPg" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"jPk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"jPn" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"jPA" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"jPF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/door_control{ - id = "Execution Shutters"; - name = "Privacy Shutters"; - pixel_y = 12; - req_access_txt = "3" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"jPK" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"jPN" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"jPY" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/port_hallway) -"jQh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/structure/sign/poster/propaganda{ - pixel_y = 34 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"jQx" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"jQz" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"jQF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"jQV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"jRw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"jRJ" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"jRO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"jRR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"jRT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"jSe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"jSf" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/almayer/command/lifeboat) -"jSk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) -"jSw" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"jSZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"jTo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"jTx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"jTy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"jTz" = ( -/obj/item/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"jTA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"jTB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/brig/armory) -"jTC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"jTK" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jTP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"jTT" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/cells) -"jTW" = ( -/obj/structure/closet/hydrant{ - pixel_x = 30 - }, -/obj/item/reagent_container/hypospray/autoinjector/skillless, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jUc" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"jUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"jUk" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"jUr" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"jUv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"jUx" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"jUE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/briefing) -"jUO" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"jUX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"jVj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"jVt" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"jVv" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"jVA" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"jVC" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"jWb" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"jWf" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south2) -"jWx" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/port_atmos) -"jWR" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"jWZ" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"jXc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"jXi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"jXq" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"jXr" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"jXI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"jXK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"jXO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"jYd" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"jYm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"jYn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"jYD" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"jYE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/squads/req) -"jYJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"jYN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"jYV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/briefing) -"jZb" = ( -/obj/structure/machinery/keycard_auth, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"jZl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/hydroponics) -"jZv" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jZy" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/port) -"jZE" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"jZG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_four) -"jZQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"jZU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"kam" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/medical/hydroponics) -"kat" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"kav" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/engineering_workshop) -"kay" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"kaA" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_f_p) -"kaC" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/almayer/hallways/hangar) -"kaG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black, -/obj/item/storage/bible/booze, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door_control{ - id = "CO-Office"; - name = "Door Control"; - normaldoorcontrol = 1; - pixel_x = 18; - req_access_txt = "31" - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"kaS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"kbm" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"kbn" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"kbu" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"kbV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"kcb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - name = "\improper Perma Cells" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/perma) -"kci" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"kcm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"kcs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"kcA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "24;31" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"kcC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"kcH" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"kcJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"kdd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_missiles) -"kdj" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"kdp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"kdv" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"kdK" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"kdX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"keq" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"key" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"keM" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"keQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"kfb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"kfl" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha) -"kfn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"kfC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"kfE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"kfH" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"kge" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"kgi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"kgm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"kgr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"kgu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kgv" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"kgF" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, -/area/space) -"kgS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"khE" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"khY" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"kid" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kii" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"kik" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"kim" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"kio" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"kip" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"kiw" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kiB" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"kiM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"kiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"kje" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"kjg" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"kjp" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"kju" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"kjE" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kkw" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"kkT" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "72" - }, -/area/almayer/hallways/hangar) -"kkV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"klu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"klw" = ( -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"klD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/squads/req) -"klE" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"klL" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"kma" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"kmn" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"kmt" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"kmu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/bridgebunks) -"kmE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering/port) -"kmG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"kmV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"kna" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"kni" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"knl" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"knB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"knH" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"knV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"knZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"koa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, -/area/almayer/command/lifeboat) -"kon" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"koq" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"kot" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"kox" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"koG" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, -/area/almayer/command/cic) -"koI" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"kpn" = ( -/obj/effect/glowshroom, -/obj/effect/glowshroom{ - pixel_y = 16 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"kpr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"kps" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"kpt" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"kpG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"kpK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kqj" = ( -/obj/structure/closet/l3closet/virology, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"kqp" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"kqq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"kqr" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"kqX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"kqZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"kra" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"krc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"krw" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"krx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"krD" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"krR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"krZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lockerroom) -"ksb" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/medical_science) -"ksh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"ksr" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"ksE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"ksK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"ktr" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"kts" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"ktB" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"ktE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ktI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/cmcap{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ktR" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"ktT" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"ktZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"kum" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"kuq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"kuE" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"kuR" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"kuU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"kuZ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"kva" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"kvc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/hallways/hangar) -"kvk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"kvs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"kvv" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"kvw" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kvF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"kvP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"kwb" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/lifeboat) -"kwe" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"kwg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"kwp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"kww" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"kwB" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/squads/req) -"kwN" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"kwT" = ( -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Telecommunications Entrance"; - pixel_y = 25 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"kwU" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"kxe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"kxj" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"kxA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"kxD" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"kyt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"kyI" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"kyJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"kyT" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"kzb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/repair_bay) -"kzj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"kzm" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"kzB" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"kzW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/living/briefing) -"kzX" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"kzY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"kAc" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"kAf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"kAh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"kAi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/command/cic) -"kAl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"kAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"kAp" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"kAr" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/grunt_rnr) -"kAE" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"kAF" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"kAN" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/ce_room) -"kBa" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"kBe" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"kBi" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"kBl" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"kBs" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 12"; - buildstate = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"kBx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"kBy" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"kBz" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"kBA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"kCb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"kCm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"kCn" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"kCp" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"kCy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/stair_clone/upper) -"kCC" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_m_s) -"kCP" = ( -/obj/effect/attach_point/electronics/dropship2{ - dir = 1 - }, -/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"kCV" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"kCY" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"kDc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"kDe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"kDx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"kDz" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"kDC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"kDQ" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"kEd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"kEe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"kEl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kEp" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"kEt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"kEB" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"kEH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"kEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"kEL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"kEM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"kER" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"kET" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kEV" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"kFf" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"kFh" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"kFt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"kFu" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"kFz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"kFG" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/command/cic) -"kFH" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"kFI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"kFJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"kFV" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"kGh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"kGi" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/port_hallway) -"kGq" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 10"; - buildstate = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"kGy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"kGC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) -"kGJ" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"kGQ" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"kHd" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"kHe" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"kHf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"kHl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"kHp" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/alpha_bravo_shared) -"kHT" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"kIn" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"kIr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"kIA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"kIE" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space/basic, -/area/space) -"kIL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"kIQ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/port_atmos) -"kJk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"kJG" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"kKa" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"kKd" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"kKv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"kKw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"kKB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"kKE" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"kKO" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"kLT" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"kLX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"kMd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"kMe" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "27" - }, -/area/almayer/hallways/hangar) -"kMg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/starboard_point_defense) -"kMi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"kMo" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"kMt" = ( -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"kMv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"kME" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"kMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"kMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"kMX" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"kNi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"kNo" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower_engineering) -"kND" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kNJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lockerroom) -"kNN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kNO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"kOc" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"kOd" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"kOj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"kOl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"kOn" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kOo" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"kOq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"kOw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"kOA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"kOG" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"kOO" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"kPm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"kPs" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"kPy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/basketball) -"kPB" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, -/area/almayer/command/lifeboat) -"kPE" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - indestructible = 1; - unacidable = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"kPO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"kPP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/main_office) -"kPR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/medical_science) -"kQb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kQk" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"kQx" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"kQH" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"kQM" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"kQX" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"kQZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"kRh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/north1) -"kRk" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"kRq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/starboard_point_defense) -"kRt" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"kRC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kRJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"kRO" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kRW" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"kSa" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"kSn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"kSS" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"kTf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/telecomms) -"kTm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"kTn" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/gym) -"kTK" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"kTQ" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"kTY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"kTZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"kUb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kUe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"kUk" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"kUo" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"kUA" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"kUC" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/briefing) -"kUG" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"kUW" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"kVd" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"kVl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"kVK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"kVT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"kVZ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"kWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering) -"kWf" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"kWo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"kWB" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"kWI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"kWK" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_point_defense) -"kXr" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/vehiclehangar) -"kXC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"kXF" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"kXG" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"kXI" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"kXJ" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"kXN" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"kXW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/engineering/upper_engineering/starboard) -"kXY" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"kYb" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kYr" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"kYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"kYQ" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"kYX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"kZh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/squads/req) -"kZj" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"kZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"lap" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"lar" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"lax" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"laP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"laT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"laW" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"laZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"lbc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"lbf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"lbl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"lbt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"lbx" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"lby" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"lbB" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"lbC" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/living/gym) -"lbM" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"lbU" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"lca" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) -"lcc" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"lci" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"lck" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"lco" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"lcy" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"lcA" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"lcV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"ldc" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/pilotbunks) -"ldg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"ldm" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"ldu" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"ldv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/multitool{ - desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; - icon_state = "multitool_big"; - name = "\improper Oversized Security Access Tuner"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"ldA" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"ldC" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/cryo_cells) -"ldT" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lee" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"lej" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"len" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"leA" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) -"leR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/ce_room) -"leX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"lfc" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"lfg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"lfD" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"lfL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"lfP" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"lfQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"lfX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"lgc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"lge" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"lgk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"lgn" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 - }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"lgu" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"lgB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"lgC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"lgJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"lgK" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"lgT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"lgZ" = ( -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"lha" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"lhm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"lhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"lhW" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" - }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"liv" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue Processing"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/morgue) -"liL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"liP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"liU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"liX" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"lje" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"ljm" = ( -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"ljn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"lju" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"ljD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"ljG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/starboard_hallway) -"lkc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"lkl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"lkm" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_w, -/area/almayer/medical/containment/cell) -"lks" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"lkB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"lkC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"lkI" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"lkK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"lkL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"lkT" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"lkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"lkY" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"llf" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/cells) -"lli" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell) -"llt" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"llu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/living/briefing) -"lmc" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"lmf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_s) -"lmj" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/almayer/hallways/hangar) -"lmr" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"lmu" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"lmK" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"lmN" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"lmR" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"lna" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"lnL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"lnM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"lnW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"loa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"lol" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"lot" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"loy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"loB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"loF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"loS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"lpk" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"lpn" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"lpr" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/vehiclehangar) -"lpv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"lpz" = ( -/obj/structure/sign/ROsign{ - layer = 3 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"lpC" = ( -/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"lqu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"lqv" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lqF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/living/port_emb) -"lqM" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"lqP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"lqX" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"lrb" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"lrq" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"lrx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"lrI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"lrK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"lrY" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"lsq" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"lsv" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/command/cic) -"lsL" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"lsP" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"lth" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/morgue) -"ltj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"luc" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"lum" = ( -/obj/structure/machinery/photocopier, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"lup" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"luI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_m_s) -"luL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"luT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/numbertwobunks) -"lve" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"lvD" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"lvI" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/commandbunks) -"lvV" = ( -/obj/structure/shuttle/part/dropship2/bottom_right_wall, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"lwl" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/hallways/starboard_hallway) -"lwp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"lws" = ( -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"lww" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/officer_study) -"lwx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"lwG" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/basketball) -"lwQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - req_one_access_txt = "3;19;22" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"lwR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"lwT" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"lxf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"lxp" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"lxt" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"lxz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/starboard_missiles) -"lxJ" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"lxM" = ( -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; - pixel_x = 1; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 16 - }, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"lyd" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"lym" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"lyu" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"lyC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"lyP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/aft_hallway) -"lyS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"lyV" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"lyZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"lze" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"lzf" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"lzs" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"lzX" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"lAN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"lAR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"lAV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"lBn" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"lBq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"lBs" = ( -/obj/structure/morgue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"lBv" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lower_medical_medbay) -"lBG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"lBK" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"lCy" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"lCE" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"lCH" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"lCI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"lCN" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"lCO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"lCU" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"lDe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"lDf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"lDl" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"lDn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"lDK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"lDY" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"lEb" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"lEg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"lEl" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"lEm" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"lEn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/starboard_missiles) -"lEt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"lEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"lEA" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/aft_hallway) -"lEI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/weapon_room) -"lEJ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"lEP" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"lES" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/almayer/living/briefing) -"lEU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/medical/lower_medical_medbay) -"lEV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"lFg" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"lFk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"lFq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"lFv" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"lFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"lFJ" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"lFP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"lGb" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"lGi" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"lGn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"lGu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"lGY" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"lHb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"lHp" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering/port) -"lHB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"lHI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"lHJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"lHL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"lHO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"lHQ" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"lHU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"lHV" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"lIj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"lIs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"lIu" = ( -/obj/structure/machinery/light/containment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"lID" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"lIN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"lJz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"lJE" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"lJH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"lJU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"lJX" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"lKa" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"lKh" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"lKl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"lKn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"lKq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/bridgebunks) -"lKA" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/command/computerlab) -"lKL" = ( -/obj/structure/target, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"lKQ" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/ce_room) -"lLu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"lLD" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"lLJ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"lLT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/brig/armory) -"lLX" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"lMf" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"lME" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/welding, -/obj/item/circuitboard, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"lMP" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"lNb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"lNe" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"lNk" = ( -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"lNr" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie) -"lNv" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"lNN" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"lNS" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"lOa" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"lOi" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 1"; - name = "\improper Courtyard Divider" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cells) -"lOp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"lOq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"lOv" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "35" - }, -/area/almayer/hallways/hangar) -"lOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"lOG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"lOL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/lifeboat_pumps/south1) -"lOP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"lOV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"lPg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"lPt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"lPB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"lPR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"lPV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"lQe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"lQf" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"lQl" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"lQv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"lQz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"lQG" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"lQK" = ( -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"lRa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"lRd" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/chief_mp_office) -"lRj" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"lRl" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"lRo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"lRt" = ( -/obj/item/newspaper, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lRx" = ( -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_x = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"lRJ" = ( -/obj/structure/phone_base{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"lRU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"lRX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"lSg" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"lSp" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"lSD" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"lSK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"lSX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/pilotbunks) -"lTe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"lTq" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"lTA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"lTF" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/living/briefing) -"lTP" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"lTU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"lUB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"lUG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/living/offices/flight) -"lUI" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"lUQ" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"lVk" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_p) -"lVn" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"lVz" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"lVC" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"lVK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/upper_engineering/starboard) -"lVP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"lVU" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"lWh" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"lWC" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_one) -"lWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"lWO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"lXa" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black{ - pixel_x = -4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"lXp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"lXO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"lXV" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"lXX" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"lXZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"lYi" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"lYk" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 - }, -/area/almayer/command/lifeboat) -"lYG" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/command/computerlab) -"lYM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"lZc" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"lZi" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "courtyard window"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"lZt" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"lZz" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"lZC" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"lZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"lZU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"mad" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"maf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"mal" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hull/upper_hull/u_a_s) -"mas" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north1) -"mav" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"maA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"maT" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"mbh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"mbi" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/tankerbunks) -"mbl" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"mbS" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space/almayer/lifeboat_dock) -"mbV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"mbW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"mbX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"mcm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"mcs" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"mcw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"mcI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"mcS" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/vehiclehangar) -"mdk" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"mdp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/engine_core) -"mdr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"mdK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"mdM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mdX" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"mdY" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"mee" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"mem" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"mep" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" - }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" - }, -/area/space) -"meu" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"mfh" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"mfi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"mfn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"mfo" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"mfp" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"mfK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"mfM" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "50" - }, -/area/almayer/hallways/hangar) -"mfN" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"mfV" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mgd" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"mge" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"mgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"mgV" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"mgY" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"mhf" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/engine_core) -"mho" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"mhr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"mhA" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"mhG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"mhQ" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"mhZ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"miw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"miC" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"miR" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"miY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mjj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"mjl" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"mjL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/chemistry) -"mjY" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"mkd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"mki" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"mkn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/containment) -"mku" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"mkG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"mkP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"mlg" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"mlp" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mlt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"mlG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"mlL" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"mlP" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"mmw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"mmz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"mmB" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/starboard_garden) -"mmF" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"mmO" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"mmZ" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"mna" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"mnf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"mnq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Dropship Remote Control Console"; - shuttleId = "dropship_alamo"; - disabled = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"mnr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"mnz" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"mnI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/powered/agent) -"mnQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, -/area/almayer/living/briefing) -"mob" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"moi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"moo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"mox" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/shipboard/brig/surgery) -"moO" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"mpl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"mpv" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/squads/req) -"mpy" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"mqa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"mqh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"mqk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"mql" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"mqm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"mqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"mqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"mqr" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"mqu" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_m_s) -"mqv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"mqw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"mqz" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"mqC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mqD" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"mqG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"mqI" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"mqR" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"mqV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"mra" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"mrb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"mro" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"mrr" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"mrt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"mrv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"mry" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"mrA" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"mrB" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"mrC" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/morgue) -"mrD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"mrG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"mrN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"mrS" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"msk" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"msl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"msC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"msJ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"mte" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"mth" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_s) -"mtG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"mtK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"mtR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mua" = ( -/turf/closed/wall/almayer, -/area/almayer/living/port_emb) -"mub" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/living/starboard_emb) -"mux" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering/port) -"muK" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"muL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"muU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/phone_base/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"mvg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"mvi" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/shipboard/starboard_missiles) -"mvk" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"mvC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"mvY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"mwb" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"mwm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"mwK" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"mwQ" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"mwS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"mxm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"mxq" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"mxC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"mxL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"mye" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"myC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"myE" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 29; - serial_number = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"myK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"myQ" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "36" - }, -/area/almayer/hallways/hangar) -"mzh" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mzk" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32; - pixel_y = -4 - }, -/obj/structure/machinery/door_control{ - id = "Perma 2L"; - name = "Perma 2 Lockdown"; - pixel_x = -24; - pixel_y = 12; - req_access_txt = "3" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"mzq" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"mzQ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"mAc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"mAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"mAp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/squads/alpha) -"mAH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"mAM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"mAN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"mAS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"mBy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"mBA" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"mBB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"mBL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"mBT" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/general_equipment) -"mCl" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"mCw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"mCx" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"mCB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"mCC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"mCF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"mDf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/captain_mess) -"mDx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"mDI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"mDK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"mDY" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"mEa" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"mEh" = ( -/turf/open/floor/almayer, -/area/almayer/command/securestorage) -"mEi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"mEy" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"mEz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/hangar) -"mEF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"mEH" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"mEI" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"mEL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"mEV" = ( -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell/cl) -"mEW" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"mEX" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_emb) -"mFf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"mFk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) -"mFo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"mFy" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"mFD" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/vehiclehangar) -"mFF" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"mFO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) -"mFW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"mGe" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mGi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cic) -"mGp" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/living/pilotbunks) -"mGy" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"mGG" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/closet/secure_closet/guncabinet/red, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hull/lower_hull/l_f_s) -"mGH" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"mGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull) -"mGZ" = ( -/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"mHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mHl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"mHu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"mHC" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"mHM" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"mIr" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"mIt" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"mIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"mIK" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mIN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"mIT" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_e2{ - icon_state = "containment_wall_connect_e" - }, -/area/almayer/medical/containment/cell) -"mIV" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"mIX" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"mJc" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"mJd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"mJv" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/starboard) -"mJD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/execution) -"mJE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"mJH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"mJJ" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"mJK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"mJM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"mJW" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"mKa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"mKk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"mKp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_y = 6 - }, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"mKJ" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"mKK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"mKM" = ( -/obj/structure/sign/poster{ - pixel_x = -30; - pixel_y = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"mKY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"mLh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"mLk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"mLp" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"mLF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"mLG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"mLS" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/charlie_delta_shared) -"mMq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"mMy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"mMM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/living/offices) -"mMN" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"mMR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/starboard_missiles) -"mNc" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"mNr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mND" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"mNH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"mOo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"mOt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"mOv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mOw" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "38" - }, -/area/almayer/hallways/hangar) -"mOH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"mOJ" = ( -/turf/open/space/basic, -/area/space) -"mOL" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"mOM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"mOQ" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/upper_medical) -"mOU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/general_equipment) -"mOZ" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"mPf" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"mPX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/living/pilotbunks) -"mQd" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"mQg" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"mQi" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"mQj" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"mQq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/cryo) -"mQE" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"mQF" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/surgery) -"mQI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"mQT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"mQY" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"mRf" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"mRi" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/shipboard/brig/cryo) -"mRq" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"mRv" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"mRw" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north2) -"mRL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"mRV" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"mRX" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"mSa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"mSB" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"mTj" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"mTo" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "24" - }, -/area/almayer/hallways/hangar) -"mTw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"mTB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/command/computerlab) -"mTL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/command/lifeboat) -"mTP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"mTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"mTY" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"mUa" = ( -/obj/effect/attach_point/weapon/dropship2/right_wing, -/obj/structure/shuttle/part/dropship2/transparent/lower_right_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"mUj" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"mUp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_two) -"mUr" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"mUz" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"mUD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"mUZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"mVb" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"mVg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"mVm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"mVp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"mVD" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space/almayer/lifeboat_dock) -"mVF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cryo) -"mVK" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/almayer/command/lifeboat) -"mVL" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"mVQ" = ( -/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"mVS" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/squads/alpha_bravo_shared) -"mWy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engineering_workshop) -"mWK" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"mWL" = ( -/mob/living/simple_animal/cat/Jones{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"mWM" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"mWU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/meal5{ - desc = "How long has this been sitting here?"; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"mXe" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"mXv" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"mXE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"mXK" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"mXN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"mXO" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell/cl) -"mYm" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"mYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"mYs" = ( -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone/upper) -"mYv" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"mYM" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cells) -"mYT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/grunt_rnr) -"mYZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/machinery/cm_vending/own_points/experimental_tools, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"mZm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"mZC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/starboard_umbilical) -"mZH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mZN" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/auxiliary_officer_office) -"mZR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"mZU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"mZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"mZY" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_umbilical) -"naH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"naR" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"naV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_s) -"nba" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"nbr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"nbG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"nbK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/port_point_defense) -"nbS" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"nbU" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_garden) -"nbV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"nbY" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"nbZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"ncf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"ncj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"ncn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"ncI" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 16"; - buildstate = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"ncJ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"ncU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"ncV" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/living/briefing) -"ncW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"ncX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"ncZ" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"ndb" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"nde" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"ndk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"ndl" = ( -/turf/open/floor/almayer_hull, -/area/space) -"ndp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"nds" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"ndz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"ndM" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"ndN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"ndT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"ndX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"nek" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"nem" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"neq" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"ner" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"neD" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"neH" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"neI" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"neR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"nfh" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 2"; - name = "\improper isolation shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"nfo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"nfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"ngj" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"ngC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/upper_medical) -"ngF" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_three) -"ngG" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"ngL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"ngR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cic) -"ngS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/general_equipment) -"ngX" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"nhi" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"nhm" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"nhy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"nhC" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"nhH" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, -/area/almayer/living/briefing) -"nhW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"nhY" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/almayer/hallways/hangar) -"nhZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"nia" = ( -/obj/item/paper_bin/wy, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/clicky, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"nic" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/bridgebunks) -"nig" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nii" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"niq" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"nis" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"niA" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"niK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access = "19;21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"niV" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"njc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"njn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"njp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"nkg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/port_umbilical) -"nkh" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"nkC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_umbilical) -"nkL" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) -"nkS" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"nlh" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"nlj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"nll" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nlo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 - }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"nlz" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"nlC" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nlD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"nlE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"nlK" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"nlM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cryo_cells) -"nlO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"nlQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"nlS" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north1) -"nlT" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"nmd" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"nmf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"nmn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/phone_base/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"nmo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/general_equipment) -"nmq" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"nmB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nmL" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"nmY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"nnb" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/lower_medical_medbay) -"nnm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"nns" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nnN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"nnS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nnX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/execution) -"nof" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/hallways/vehiclehangar) -"noC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"noH" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/main_office) -"noR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"npl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"nps" = ( -/turf/open/floor/almayer/empty, -/area/supply/station) -"npv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"npy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"npz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"npL" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"npX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"npY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"nqc" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"nqm" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"nqq" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"nqs" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) -"nqN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"nqO" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"nqX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"nqZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"nrq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nrr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"nrs" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_s) -"nrA" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"nrK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"nrX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"nsh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"nsu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"nsw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"nsy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"nsZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"nte" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"nth" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/basketball) -"ntw" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"ntE" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"ntG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"ntK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"nuc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"nus" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"nut" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/port_hallway) -"nuv" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/hydroponics) -"nuC" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/charlie_delta_shared) -"nuF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/starboard_garden) -"nuI" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"nuL" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"nuX" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/cafeteria_officer) -"nvj" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"nvr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"nvF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"nvH" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"nvL" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = -32; - pixel_y = 4 - }, -/obj/structure/machinery/door_control{ - id = "Perma 1L"; - name = "Perma 1 Lockdown"; - pixel_x = -24; - pixel_y = -12; - req_access_txt = "3" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/perma) -"nwb" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nwq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"nwx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nwA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/command/cic) -"nwD" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"nwH" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"nwJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"nwY" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/squads/req) -"nxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"nxj" = ( -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/shipboard/brig/perma) -"nxk" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"nxo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"nxx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"nxz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"nxW" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_a_p) -"nyb" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"nyh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nys" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"nyu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"nyw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nyz" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"nyC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"nyH" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"nzk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"nzm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"nzw" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"nzA" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"nzT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"nAn" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"nAu" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nAy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nAC" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"nAK" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_m_p) -"nAO" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"nAS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"nBb" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/cic) -"nBm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"nBw" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"nBH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha_bravo_shared) -"nBK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) -"nBO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"nBQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nBZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"nCb" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"nCf" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" - }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"nCg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) -"nCu" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"nCv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"nCD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"nCW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"nCY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"nDr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"nDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nDH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"nDQ" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"nDW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/candle_box, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"nEb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cafeteria_officer) -"nEf" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"nEl" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"nEp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"nEE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"nEK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nEX" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"nEY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nFf" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"nFu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"nFX" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"nGm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"nGp" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_f_p) -"nGr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"nGu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"nGx" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"nGz" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"nGC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/containment{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"nGE" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"nGL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"nGZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"nHj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"nHE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nHN" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"nHX" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell/cl) -"nHZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"nIg" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"nIv" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/ce_room) -"nIA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"nIG" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nIH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/facepaint/green, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"nIK" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nIP" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"nIQ" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"nIW" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_missiles) -"nJb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"nJc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"nJd" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nJl" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"nJo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"nJu" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"nJH" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"nKm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"nKp" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"nLc" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nLe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"nLf" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/squads/req) -"nLz" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"nLF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"nLP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"nLS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"nMb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"nMf" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"nMs" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"nMP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"nMR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "cl_shutters 2"; - name = "\improper Privacy Shutters" - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/corporateliason) -"nNa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"nNb" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"nNc" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"nNg" = ( -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nNj" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"nNk" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/req) -"nNm" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"nNw" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/stern_hallway) -"nNy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"nNB" = ( -/obj/structure/shuttle/part/dropship2/lower_right_wall, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"nNL" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"nNM" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/squads/charlie_delta_shared) -"nNR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"nNW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"nOl" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"nOt" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"nOE" = ( -/obj/structure/machinery/computer/supply_drop_console/limited, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"nOI" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"nOJ" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"nOO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"nPb" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"nPw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nPK" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/engineering/starboard_atmos) -"nPO" = ( -/obj/structure/bed, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"nPR" = ( -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"nPU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/squads/alpha_bravo_shared) -"nPV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"nPW" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"nPY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"nQc" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"nQd" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"nQg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"nQj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"nQv" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/auxiliary_officer_office) -"nQB" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering/port) -"nQE" = ( -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"nQS" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"nRh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"nRn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"nRo" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"nRt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"nRw" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 15"; - buildstate = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"nRy" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south2) -"nRD" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"nRI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"nRP" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"nRY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nSc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"nSd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"nSs" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"nSJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/living/starboard_emb) -"nSK" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"nSP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"nSV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"nTe" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/aft_hallway) -"nTj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"nTl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"nTA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"nTX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"nUe" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hull/upper_hull/u_a_s) -"nUf" = ( -/obj/structure/machinery/power/apc, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"nUk" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/port_umbilical) -"nUx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"nUG" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nUY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"nVh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"nVk" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"nVm" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"nVv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/captain_mess) -"nVA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"nVG" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nVH" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"nVI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/ce_room) -"nVV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"nVY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"nWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"nWu" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"nWA" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nWC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 - }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"nWT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_a_p) -"nWX" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"nXf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/binoculars, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"nXm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"nXp" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"nXs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"nXE" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c200{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/reagent_container/pill/happy, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/almayer/living/starboard_emb) -"nXG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"nXO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"nXT" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"nYn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"nYN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"nZb" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"nZf" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"nZh" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"nZp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_p) -"nZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"nZG" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"oaa" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cells) -"oae" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"oaj" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oav" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"oay" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"oaz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"oaM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"obc" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"obl" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"obn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/cryo) -"obo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/shipboard/brig/cic_hallway) -"obs" = ( -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"obt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = -25; - req_access_txt = "200" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"obB" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) -"obF" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"obZ" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/living/numbertwobunks) -"ocf" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"ocl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"ocs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"ocu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"ocv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/officer_study) -"ocC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"ocQ" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"ocU" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"ocX" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"odf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"odj" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"odr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"odT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"odZ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"oec" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/squads/charlie) -"oeg" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/sign/safety/biolab{ - pixel_x = -9; - pixel_y = 32 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 25; - pixel_y = 32 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"oeh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"oen" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"oeG" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"oeH" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"oeX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oeZ" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"ofl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie_delta_shared) -"ofr" = ( -/obj/effect/attach_point/weapon/dropship2/right_fore, -/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"ofJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering) -"ofN" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/port_umbilical) -"ofS" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"oga" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"ogb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"ogk" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/starboard_hallway) -"ogu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"ogy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ogD" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"ogH" = ( -/obj/structure/bed, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"ogO" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"ogZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"ohr" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"ohz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"ohB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"ohI" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ohM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"ohW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"oic" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"oih" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"oiv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"oiy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"oiD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/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/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"oiH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"oiL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oiY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"oja" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"ojh" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"ojr" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lockerroom) -"ojs" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"ojK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"ojO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - pixel_x = 27; - req_one_access_txt = "4;28" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/medical/upper_medical) -"ojQ" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) -"oki" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"okp" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"okE" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/aft_hallway) -"okP" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cryo) -"ola" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"oly" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"olA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"olC" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/living/offices) -"olK" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"olS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/trash/USCMtray, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"olY" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"omc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"omw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"omZ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"ond" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/laundry) -"onh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"onl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"ono" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"ons" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"onx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"onS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_two) -"onX" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -1; - pixel_y = 11 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_emb) -"ood" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_four) -"ooe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oon" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"ooB" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"ooJ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/command/telecomms) -"ooX" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"opf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_f_s) -"opo" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"opr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"opu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"opG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"opM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"opP" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"opT" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"opY" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/living/starboard_garden) -"oqa" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, -/area/almayer/engineering/upper_engineering/port) -"oqo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/grunt_rnr) -"oqt" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"oqu" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering) -"oqv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"oqy" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/general_equipment) -"oqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"oqH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/port_hallway) -"orb" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"orn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"oru" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"orA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"orC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"orM" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"orQ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_point_defense) -"orW" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"osi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"osn" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/living/grunt_rnr) -"osM" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"osP" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"osV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner4, -/area/almayer/medical/containment/cell) -"osW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"otg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"otl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"otp" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"otB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/port_missiles) -"otC" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"otK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/starboard_atmos) -"otL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"otS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"otU" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"otX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"ouf" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 6 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/shipboard/brig/lobby) -"oug" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"oul" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south2) -"oum" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oup" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"ouv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/lower_hull/l_f_s) -"ouD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/port_emb) -"ouN" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ouQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"ovi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"ovl" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"ovu" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/lifeboat_pumps/north1) -"ovv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"ovJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"ovO" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"ovZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"owb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"owi" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/pilotbunks) -"owl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/pilotbunks) -"own" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"owr" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"oww" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/synthcloset) -"owz" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_four) -"owC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"owH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/hydroponics) -"owN" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"owV" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"oxg" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_one) -"oxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"oxB" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/hangar) -"oxQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"oxR" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/living/briefing) -"oxW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"oxX" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"oyb" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"oyi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"oyy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"oyC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/living/offices) -"oyL" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/cells) -"oyO" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"oyP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/squads/req) -"oyW" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"ozb" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"oze" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"ozm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ozs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"ozw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/hula_girl{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"ozC" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"ozH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"ozK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ozN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"ozU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"ozY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"oAd" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"oAk" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"oAl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"oAG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"oAQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"oAY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"oBi" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"oBo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"oBu" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/delta) -"oBx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"oCf" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oCh" = ( -/obj/structure/shuttle/part/dropship2/left_inner_wing_connector, -/turf/open/space/basic, -/area/almayer/hallways/hangar) -"oCj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"oCn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"oCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/briefing) -"oCw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"oCy" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"oCC" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"oCE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"oCH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oCK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/pilotbunks) -"oCM" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"oCP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"oCU" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = 11; - pixel_y = 37; - req_access_txt = "200" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"oDC" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/starboard_point_defense) -"oDL" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"oDN" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"oDO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"oDS" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"oDZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"oEg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/bridgebunks) -"oEh" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"oEk" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/engineering/engine_core) -"oEn" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"oEt" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"oEy" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"oED" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/commandbunks) -"oEJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/upper_hull/u_f_s) -"oEM" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/aft_hallway) -"oFd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"oFx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"oFz" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south2) -"oFP" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_particle_accelerator, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"oFS" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/stern_hallway) -"oGc" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" - }, -/area/almayer/living/briefing) -"oGh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"oGt" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/flash, -/obj/item/device/binoculars, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"oGH" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_f_s) -"oGL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"oGN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"oGT" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"oHe" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"oHm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"oHo" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"oHB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"oHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"oHT" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"oHX" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"oIf" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"oIg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oIn" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/morgue) -"oIo" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"oIp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_f_s) -"oIA" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"oIO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"oJa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"oJe" = ( -/obj/structure/machinery/processor, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"oJm" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/evidence_storage) -"oJo" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"oJt" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"oJC" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_closed, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"oJE" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"oJO" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"oJX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"oKn" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"oKo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"oKr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oKw" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = -6 - }, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/toy/dice/d20, -/obj/item/toy/crayon/blue{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"oKy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"oKO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"oKT" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"oLb" = ( +"jUH" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jUK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oLf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/weapon_room) -"oLg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +/area/almayer/engineering/lower/workshop/hangar) +"jUO" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"oLl" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"oLo" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"oLx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/boonie{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/trash/popcorn, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oLB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, +/area/almayer/lifeboat_pumps/south1) +"jUR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/hydroponics) -"oMe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/basketball) -"oMj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_s) -"oMp" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"oMF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"oMK" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "80" - }, -/area/almayer/hallways/hangar) -"oNk" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"oNu" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"oNB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/starboard_emb) -"oND" = ( -/obj/structure/machinery/vending/cola/research{ +/obj/item/stack/sheet/cardboard{ + amount = 50; pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"oNE" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"oNK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"oOb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"oOl" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie_delta_shared) -"oOn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/port_hallway) -"oOq" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, /turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"oOz" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"oOI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/poster{ - desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; - icon_state = "poster14"; - name = "propaganda poster"; - pixel_y = 32 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"oOU" = ( -/obj/structure/bed, -/obj/structure/machinery/power/apc{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"oPg" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"oPF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oPI" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/area/almayer/maint/hull/lower/l_f_p) +"jVp" = ( +/turf/open/floor/almayer/uscm/directional/northwest, /area/almayer/command/lifeboat) -"oPM" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"oPR" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_umbilical) -"oPT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oPU" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jVz" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"jVA" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" }, -/area/almayer/living/gym) -"oQf" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/area/almayer/medical/containment/cell/cl) +"jVH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"jVX" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"jWf" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south2) +"jWi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"oQv" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "37" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"oQx" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"jWm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"jWq" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jWv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"jWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/execution) -"oQE" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jWE" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"oQL" = ( -/obj/structure/stairs{ - dir = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"jWJ" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"jWM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"jXa" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"jXc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"oQS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 + icon_state = "S" }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"jXi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"jXs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 + icon_state = "SW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"oQX" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"jXA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"jXB" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/area/almayer/engineering/upper_engineering) -"oRt" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"jXE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"oRw" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"jXG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jXJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; unacidable = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"jXO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"jXQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"jYm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"jYn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" + id = "engidorm"; + name = "\improper Privacy Shutters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"jYF" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"jYJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"jYP" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"jYS" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"jZb" = ( +/obj/structure/machinery/keycard_auth, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"jZe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/medical/containment/cell) -"oRA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = -15 }, -/area/almayer/medical/medical_science) -"oRB" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jZh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/almayer/squads/req) -"oRE" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"jZi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"jZj" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 }, -/area/almayer/hallways/hangar) -"oRG" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 }, -/area/almayer/living/offices) -"oSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jZq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"jZv" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jZz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jZA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/medical/medical_science) -"oSm" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"oSq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"jZE" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"kad" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) -"oSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"oSB" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 2"; - name = "Cell 2" +"kag" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/two{ - pixel_x = -17 +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"kah" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"oSI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/almayer/maint/hull/upper/u_m_s) +"kan" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"kat" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"oSJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"kaB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"oSS" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"kaD" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"kaG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black, +/obj/item/storage/bible/booze, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door_control{ + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_x = 18; + req_access_txt = "31" }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"kaH" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; pixel_y = 6 }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"kbc" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kbg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/medical/lockerroom) -"oTd" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"kbo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"oTf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"oTr" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"oTz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kbA" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"kbB" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kbI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"kbJ" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kbP" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 }, -/area/almayer/hallways/port_hallway) -"oTA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; +/obj/structure/sign/safety/cryo{ + pixel_x = -19; pixel_y = 5 }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"oTI" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 }, -/area/almayer/hull/lower_hull/l_a_p) -"oTM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"kbT" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"kcc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kcg" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"oTT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 }, -/area/almayer/living/officer_study) -"oTV" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/device/flash{ + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/warden_office) +"kcn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" }, -/area/almayer/shipboard/starboard_missiles) -"oUq" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"oUy" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kcr" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"kcu" = ( +/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"oUC" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/area/almayer/maint/hull/upper/u_a_s) +"kcx" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/area/almayer/engineering/lower_engineering) -"oUE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"oUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"oUW" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"oVc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 }, -/area/almayer/hallways/hangar) -"oVl" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"kcN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"kcO" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/shipboard/brig/processing) -"oVD" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"kcU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + req_access_txt = "8" }, -/area/almayer/lifeboat_pumps/south1) -"oVF" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"kcV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 }, -/area/almayer/squads/charlie_delta_shared) -"oVL" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_two) -"oVY" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kdg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"oVZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"kdp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"kdG" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/general_equipment) +"kdV" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/aft_hallway) +"keH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"keO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"keV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/living/offices/flight) -"oWe" = ( -/obj/effect/landmark/start/doctor, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"oWh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"kfc" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kfd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kfA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"kfL" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"oWr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"kfN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_hallway) -"oWw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"kfQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"kfT" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"kfX" = ( +/obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kga" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"kgf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"kgl" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/squads/alpha) -"oWx" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 10; - vector_y = -96 +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"kgw" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"kgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"kha" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"khx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"khA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/hallways/aft_hallway) -"oWy" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"khF" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" }, -/area/almayer/hallways/vehiclehangar) -"oWP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kic" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/squads/alpha_bravo_shared) -"oWR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"kie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"oWY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"oXh" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"oXq" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"kih" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"kii" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"kim" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 }, /turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"oXt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/squads/charlie) +"kiw" = ( +/obj/vehicle/powerloader{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"oXv" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"kiy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"oXT" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_m_p) -"oYm" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"kiW" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/maint/hull/upper) +"kiZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/squads/alpha) -"oYB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"oYL" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"kjq" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kjD" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" }, -/area/almayer/hallways/aft_hallway) -"oZa" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"kjG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/hallways/hangar) -"oZg" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"kjI" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"kjK" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) +"kjY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"kki" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kkq" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kkt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"kkw" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"oZh" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 +/area/almayer/command/lifeboat) +"kkx" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"kkT" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "72" }, -/area/almayer/engineering/engineering_workshop/hangar) -"oZm" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"kkU" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_f_p) -"oZr" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"kkV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"kkY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/machinery/computer/secure_data{ + pixel_x = 17 }, -/area/almayer/living/tankerbunks) -"oZL" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - negdir = 4; - posdir = 1 +/obj/structure/machinery/computer/card{ + pixel_x = -16 }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"oZN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"pak" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/starboard_missiles) -"pao" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"kll" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"klr" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"klu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"klv" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"pap" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 }, -/area/almayer/squads/req) -"pav" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"klC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"klE" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/alpha) -"paE" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"kma" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Firing_Range_1"; + name = "range shutters" }, -/area/almayer/engineering/engine_core) -"paL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"kmj" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"kmr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kmQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"kmW" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"knr" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"knM" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"knO" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"paX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"knQ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/medical/upper_medical) -"pbf" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/hallways/hangar) -"pbn" = ( -/obj/structure/sign/safety/fire_haz{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"knS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ pixel_x = 8; - pixel_y = -32 + pixel_y = -1 }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"knW" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"kom" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"koo" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"koq" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"kou" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"pbs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"koJ" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/phone_base/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 }, -/area/almayer/hull/lower_hull/l_f_p) -"pbX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"pcb" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"koN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"pcc" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"pcf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"kpn" = ( +/obj/effect/glowshroom, +/obj/effect/glowshroom{ + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" +/obj/structure/toilet{ + pixel_y = 16 }, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/window/reinforced{ dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/command/cic) -"pch" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pco" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"kpD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kpM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"pcJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"kpT" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kpV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"pcM" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/item/toy/dice/d20, -/obj/item/toy/deck/uno, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"kql" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"kqr" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"kqu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"kqL" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"kqP" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pcU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"krb" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/squads/bravo) -"pcV" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"krq" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/execution) -"pcW" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"krv" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -48953,11974 +27895,15156 @@ pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"pde" = ( -/obj/structure/machinery/light{ +/area/almayer/maint/hull/lower/l_f_s) +"krw" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ dir = 4 }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"krD" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"pdr" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/area/almayer/command/telecomms) +"krL" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"krO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"pds" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"krR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"pdu" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"krS" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext"; + name = "\improper Umbillical Airlock" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"krV" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 }, -/area/almayer/living/gym) -"pdE" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/status_display{ - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ksf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ksk" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"ksl" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"ksN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"pdT" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_m_s) +"kta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/auxiliary_officer_office) -"pee" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"pep" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ktb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"kte" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ktl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/port_hallway) -"pev" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ktI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cmcap{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ + pixel_x = 5; + pixel_y = 7 }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ktP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kud" = ( /obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 + pixel_x = -17 }, -/obj/structure/phone_base/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -17; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = -4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/command/combat_correspondent) -"pey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"kuh" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"kul" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"kuF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"kuI" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/brig/general_equipment) -"peC" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kuP" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) +"kuW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kuZ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"peJ" = ( -/obj/structure/machinery/light, /turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"peL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"peO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/living/offices) -"peP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/chapel) +"kvd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, -/area/almayer/shipboard/brig/cryo) -"peS" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"kvh" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SW-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - dir = 8; - name = "\improper Containment Airlock" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"kvj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"kvt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kvC" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship2, +/obj/structure/phone_base/rotary{ + name = "Normandy Telephone"; + phone_category = "Dropship"; + phone_id = "Normandy"; + pixel_x = 11; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"kvE" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"kvM" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" }, -/area/almayer/medical/medical_science) -"peU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"peW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"pff" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"pfD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"pfJ" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kvR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"kwb" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/lifeboat) +"kwd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kwf" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"kwl" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"pfM" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kwT" = ( +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = 25 }, -/area/almayer/squads/charlie) -"pfY" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"pga" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie_delta_shared) -"pgb" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/area/almayer/command/telecomms) +"kwX" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"kxb" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"kxd" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"kxs" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/shipboard/brig/cic_hallway) -"pgd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"pgA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"pgG" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"kxG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"kxL" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kxO" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"pgL" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"kyk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"kyw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"phv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kyB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"phD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"phS" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kyF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kyJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, +/turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"phV" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +"kyN" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"kzl" = ( +/obj/structure/machinery/door_control{ + id = "perma_exit"; + name = "\improper Exit Shutters"; + pixel_y = -22; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/perma) +"kzo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/command/cichallway) -"phY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"kzu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"kzx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/cic) -"pid" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"kzV" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 }, -/area/almayer/living/starboard_garden) -"pie" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" }, -/area/almayer/engineering/upper_engineering/starboard) -"pih" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/cic) -"pil" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/living/captain_mess) -"piu" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/structure/phone_base/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "Offices"; - phone_id = "Brig CMP's Office"; - pixel_x = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"kAe" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"piJ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kAf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/stair_clone/upper) -"piL" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"kAg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/shipboard/starboard_point_defense) -"piP" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"kAh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/delta) -"piY" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"kAk" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"kAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"kAr" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/grunt_rnr) +"kAs" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"kAt" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kAv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/upper_hull/u_a_p) -"pje" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"kAI" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pjo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"kAJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/execution) -"pjr" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kAP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"pjV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" +"kAT" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kAX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/grunt_rnr) -"pki" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"kAZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/command/lifeboat) -"pkw" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"kBf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/lobby) -"pky" = ( -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"pkE" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/poster{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"kBn" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/shipboard/brig/processing) -"pkK" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"kBB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_p) -"pkN" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"kBG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/shipboard/brig/medical) +"kBH" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"kBI" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ - dir = 8 + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"kBQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 }, -/area/almayer/squads/charlie_delta_shared) -"pkT" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"kBY" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"kCa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"kCu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/processing) -"pkZ" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"plg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"kCK" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"kCP" = ( +/obj/effect/attach_point/electronics/dropship2{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"kDg" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"kDm" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"kDQ" = ( +/turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"pln" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" +"kEi" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/cryo_cells) -"plo" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"kEo" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"plp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"kEv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kEx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) -"plq" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 +"kEC" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"kEK" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cl_shutters 3"; + name = "\improper Privacy Shutters" }, -/area/almayer/medical/medical_science) -"plt" = ( -/obj/structure/disposalpipe/junction{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"kEU" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"kEW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"plz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"plU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kFd" = ( +/obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"pml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"pmq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"pmJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/starboard) -"pmL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"kFw" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"kFL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"pmS" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"kFZ" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/operating_room_three) -"pna" = ( -/obj/docking_port/stationary/emergency_response/external/port5, -/turf/open/space/basic, -/area/space) -"pnp" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"kGg" = ( +/obj/structure/toilet{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 }, -/area/almayer/engineering/lower_engineering) -"pnu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 }, -/area/almayer/hull/lower_hull/l_a_p) -"pnv" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"kGp" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"kGu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"kGw" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" }, -/area/almayer/hull/upper_hull/u_a_s) -"pnz" = ( -/obj/structure/machinery/door_control{ - id = "perma_exit"; - name = "\improper Exit Shutters"; - pixel_y = -22; - req_access_txt = "3" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"kGB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/brig/perma) -"pnB" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kGD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"pnG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"pnT" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; +/area/almayer/hallways/upper/aft_hallway) +"kGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"pnZ" = ( -/obj/structure/machinery/alarm/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"pog" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/lower/port_umbilical) +"kGS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/hallways/port_hallway) -"pos" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"kHg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"kHu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"kHy" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/command/lifeboat) +"kHR" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kIa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"kIb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"kIi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"kIy" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"kIz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"kIA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"kID" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/almayer/hallways/repair_bay) -"poG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"kIE" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/space/basic, +/area/space) +"kIL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/port) -"poH" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kIO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kIT" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kIU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_a_s) -"poN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"kJa" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"kJe" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"kJf" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"poP" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - dir = 8; - id = "starboard_door" +/obj/item/clipboard{ + pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/paper{ + pixel_x = 8 }, -/area/almayer/hallways/hangar) -"ppa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_m_p) -"ppn" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"kJn" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"ppp" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kJx" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"kJy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"kJI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"kJJ" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/machinery/shower{ - dir = 1 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"ppv" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 6"; - buildstate = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 }, -/area/almayer/engineering/engine_core) -"ppT" = ( /obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 + pixel_x = 32 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"kJP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/toy/deck/uno, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"kKc" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/almayer/hallways/hangar) -"ppU" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"kKj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"kKv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"ppV" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"kKz" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" }, -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"kKR" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/area/almayer/hallways/aft_hallway) -"ppX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kKZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"kLd" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/evidence_storage) +"kLl" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kLq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/squads/delta) -"ppZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kLr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"pqa" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kLx" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"kLR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/almayer/powered/agent) -"pqb" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"pqg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/medical_science) -"pqk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"pqu" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kLX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"kMe" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "27" }, +/area/almayer/hallways/hangar) +"kMt" = ( /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"pqx" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32; - pixel_y = -8 +/area/almayer/living/tankerbunks) +"kMz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kMF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kNe" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"kNf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_x = -8 }, -/obj/structure/sign/safety/food_storage{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) +"kNg" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"kNq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"kNx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"pqE" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"kOj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hull/upper_hull/u_a_s) -"pqH" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"kOr" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kOC" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kOD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/starboard) -"pqL" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"kOE" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"kON" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"kOU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"kPp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/area/almayer/squads/charlie) -"pqW" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "43" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kPt" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kPw" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/hangar) -"prf" = ( -/turf/closed/wall/almayer, -/area/almayer/living/bridgebunks) -"prr" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"kPF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"prx" = ( -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"kPJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 }, -/area/almayer/living/pilotbunks) -"prL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/tool/shovel/spade{ + pixel_x = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/area/almayer/squads/delta) -"prN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"prV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"kPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 }, -/area/almayer/shipboard/port_missiles) -"prZ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"kPO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"kPU" = ( +/obj/structure/machinery/light/small{ dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"kQb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/cichallway) -"pso" = ( -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kQs" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"kQt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kQB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/north1) -"psy" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"kQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/living/bridgebunks) -"psE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"kQW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kQY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"kRb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"kRi" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/squads/alpha) -"psF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/area/almayer/lifeboat_pumps/north2) -"psI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kRl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/cic) -"psM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"kRx" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/hallways/stern_hallway) -"psR" = ( -/obj/structure/sign/safety/fire_haz{ +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"kRB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/medical{ pixel_x = 8; pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"kRL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kRO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"psY" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room) -"ptc" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"kRW" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"ptd" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"kSw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 + pixel_y = -25 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"ptg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"kSA" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"kTh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"ptp" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"kTn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/gym) +"kTs" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 }, -/obj/item/stack/cable_coil{ - pixel_x = 7 +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kTw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"kTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"ptt" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kTA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/delta) -"ptO" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"kTG" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kUb" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/squads/delta) -"puc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"pur" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"puu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/lifeboat_pumps/south2) +"kUl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"puw" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"kUt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/engineering/lower_engineering) -"puz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 }, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"kUx" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/auxiliary_officer_office) -"puU" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/area/almayer/living/briefing) -"pvg" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kUD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"kUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/req) -"pvs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"kUS" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"kUT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"pvy" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"pvE" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"kVe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/almayer/medical/operating_room_three) -"pvZ" = ( -/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"pwa" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/hallways/lower/starboard_midship_hallway) +"kVh" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/water{ +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ pixel_x = 8; - pixel_y = -32 + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"pwj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kVp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kVr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/containment/cell) -"pwl" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kVx" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kWr" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"kWC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"kWI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"kWK" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_point_defense) +"kWZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/squads/charlie) -"pwn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kXg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"pwo" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kXj" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"kXq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/squads/charlie) -"pwq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hallways/repair_bay) -"pwr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"kXB" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hallways/hangar) -"pwt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"pwv" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"kXH" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/area/almayer/stair_clone) -"pwA" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kXM" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null }, -/area/almayer/hallways/port_hallway) -"pwB" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"kXO" = ( +/obj/structure/machinery/firealarm{ dir = 4; - icon_state = "green" + pixel_x = 24 }, -/area/almayer/hallways/aft_hallway) -"pwG" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"kYb" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 +/obj/item/prop/almayer/handheld1, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kYj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"kYl" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"kYp" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"kYy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"kYA" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"kYE" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/area/almayer/shipboard/brig/general_equipment) -"pwR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"pxg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) +"kYM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/platform{ - dir = 1 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"kYQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"pxp" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 +"kZl" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"kZQ" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"lag" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"laq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"lar" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"lax" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/living/briefing) -"pxs" = ( -/obj/structure/morgue, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"pxw" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"pxy" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"laJ" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"pxI" = ( -/obj/structure/sink{ - pixel_y = 24 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"laW" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"lbg" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"lbk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lbm" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lbB" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/shipboard/brig/perma) -"pxN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/hull/lower_hull/l_m_s) -"pyc" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"pyg" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"pys" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/area/almayer/living/starboard_emb) +"lbI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/shipboard/brig/main_office) -"pyL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"lbP" = ( /obj/effect/projector{ name = "Almayer_Up4"; vector_x = -10; vector_y = 102 }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"pyO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"lbV" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hallways/aft_hallway) -"pzc" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"lco" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pzj" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"pzq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/area/almayer/squads/bravo) +"lcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/surgery) -"pzu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"lct" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/aft_hallway) +"lcy" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"lcA" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"lcI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/living/cafeteria_officer) -"pzB" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"lcM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/shipboard/brig/general_equipment) -"pzS" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"lcV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/almayer/command/cic) -"pAn" = ( /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 + icon_state = "road_edge_decal6"; + pixel_x = 2 }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"pAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"pAE" = ( -/obj/structure/machinery/cryopod/right, +"ldi" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"ldn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ldv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool{ + desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; + icon_state = "multitool_big"; + name = "\improper Oversized Security Access Tuner"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"ldB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"ldL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/engineering/upper_engineering/port) -"pAH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"ldT" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ldY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ dir = 4 }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/medical_science) -"pAL" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/navigation) -"pAQ" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "56" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"lee" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/hangar) -"pBg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"leq" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"leu" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"leG" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"leK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"pBo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"leQ" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_s) -"pBw" = ( -/obj/structure/bed/chair/wood/normal{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/light{ +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"leU" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"leX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"lfi" = ( +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 }, -/area/almayer/living/chapel) -"pBE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"lfH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"lfK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"lga" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"lgd" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"lgl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"lgm" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"lgL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/hangar) -"pBL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"lgZ" = ( /turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"pBN" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"pBQ" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/area/almayer/living/grunt_rnr) +"lhA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"pBU" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"lhC" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/area/almayer/living/briefing) -"pBW" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"lhD" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/area/almayer/command/cichallway) -"pBX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"lhK" = ( +/obj/structure/closet{ + name = "boxing attire" }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"lid" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"liz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/delta) -"pBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"pCl" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"liB" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/aft_hallway) +"liP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"liR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"liT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"liX" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"liZ" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"ljb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 }, -/area/almayer/shipboard/starboard_point_defense) -"pCs" = ( -/obj/item/tool/crowbar/red, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"pCt" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"ljh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera" + id = "Secretroom"; + indestructible = 1; + unacidable = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"pCu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"ljl" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"ljs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"ljw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_lobby) -"pCx" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"pCD" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"ljy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_f_s) -"pCO" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/main_office) -"pDg" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"ljE" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"ljL" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"ljT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/hangar) -"pDh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ljY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lkm" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_w, +/area/almayer/medical/containment/cell) +"lkp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"pDi" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lkt" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/shipboard/starboard_point_defense) -"pDj" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"lkw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"lkA" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hull/lower_hull/l_f_s) -"pDl" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"lkG" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"lkL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/command/telecomms) -"pDA" = ( -/obj/structure/platform, -/obj/structure/platform{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"lkW" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"lkY" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lli" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell) +"lln" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"llA" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"llN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/north2) -"pDB" = ( -/obj/structure/reagent_dispensers/oxygentank{ - anchored = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"llO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"pDE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"pDR" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -15; - req_access_txt = "200" - }, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"pDU" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"llU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/hallways/stern_hallway) -"pEg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/hydroponics) -"pEm" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"lmc" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, +/turf/open/floor/plating, /area/almayer/living/bridgebunks) -"pEt" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" +"lmi" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"lmA" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lmN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"lmO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/stair_clone) -"pEw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"pED" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"lnl" = ( +/obj/structure/disposalpipe/junction{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lnm" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"lnF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"lnR" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"lnU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"lnX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/engineering/upper_engineering) -"pEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"lnY" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"loj" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"pEG" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"lok" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"lol" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"lop" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 }, -/obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"lou" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/charlie_delta_shared) -"pEW" = ( -/obj/structure/target{ - name = "punching bag" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"lox" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"loD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/shipboard/sea_office) -"pFn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"loU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"lpc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/aft_hallway) -"pFD" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"lpi" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"pFP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"lpz" = ( +/obj/structure/sign/ROsign{ + layer = 3 }, -/area/almayer/shipboard/port_point_defense) -"pFY" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"lpC" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"lpG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_m_s) -"pGr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/cichallway) -"pGs" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lpJ" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"lpP" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lqh" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"lqq" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"lqv" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/area/almayer/squads/req) -"pGt" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lqz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/alpha) -"pGy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/commandbunks) -"pGz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/hull/upper/u_a_s) +"lqH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/stern_hallway) -"pGK" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"pGS" = ( -/obj/structure/sign/safety/maint{ +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"pGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lqM" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"lri" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"lrq" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"lrx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"lrC" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"lrN" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"lrT" = ( +/obj/structure/window{ + dir = 8 }, -/area/almayer/medical/containment) -"pHn" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"lrY" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"lsg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/shipboard/brig/evidence_storage) -"pHo" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"lsB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lsG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"pHq" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/area/almayer/maint/hull/lower/l_f_p) +"lte" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/hallways/stern_hallway) -"pHs" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ltw" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/engineering/lower_engineering) -"pHC" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ltN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"ltR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/hallways/hangar) -"pHF" = ( -/obj/structure/machinery/cryopod{ +/obj/item/trash/plate{ + pixel_x = 1; pixel_y = 6 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 }, -/area/almayer/living/offices) -"pHL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"pHM" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ltS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/area/almayer/hallways/repair_bay) -"pHZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ltT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"ltY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"ltZ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"luf" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lur" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/shipboard/brig/cryo) -"pIf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"luB" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"luX" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lva" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/area/almayer/lifeboat_pumps/south1) -"pIl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"lve" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"pIv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"pIB" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"pIF" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/medical/medical_science) -"pII" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" +/area/almayer/living/briefing) +"lvi" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lvs" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/area/almayer/living/offices) -"pIK" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"lvv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) -"pJE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"pJK" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "98" +"lvy" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lvV" = ( +/obj/structure/shuttle/part/dropship2/bottom_right_wall, +/turf/open/floor/plating, /area/almayer/hallways/hangar) -"pJQ" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +"lvZ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lwa" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"lwg" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"lwh" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hallways/aft_hallway) -"pJS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"pKW" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"pLc" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"lwi" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/telecomms) -"pLq" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"lwy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) -"pLC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"lwL" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"pLG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"pMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"lwQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + req_one_access_txt = "3;19;22" }, /turf/open/floor/almayer, -/area/almayer/hallways/port_umbilical) -"pMq" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "82" +/area/almayer/living/offices/flight) +"lwZ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"lxh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper) +"lxL" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"lxM" = ( +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 1; + pixel_y = 16 }, -/area/almayer/hallways/hangar) -"pMu" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 16 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"pMx" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 5 }, -/area/almayer/engineering/lower_engineering) -"pMK" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"lxQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"lxS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"pML" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"lyh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"lyj" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/hull/upper/u_a_s) +"lyn" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lyq" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/almayer/engineering/upper_engineering/port) -"pMP" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lyE" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"pMS" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"lyG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 5; - pixel_y = 5 +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"lyR" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lyX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"lzc" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/command/corporateliason) -"pMU" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lzn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lzy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_emb) +"lzO" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"lAh" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/evidence_storage) +"lAr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/living/pilotbunks) -"pMV" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"lAs" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"lAD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"lAF" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"lAM" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 }, -/obj/item/toy/deck/uno, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"lBc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower) +"lBn" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_f_s) -"pNb" = ( -/obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" }, -/turf/open/floor/almayer, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"lBo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"pNr" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +"lBx" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/almayer/medical/cryo_tubes) -"pNz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"lBy" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"pND" = ( -/turf/closed/wall/almayer, -/area/almayer/living/basketball) -"pNE" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/lifeboat_pumps/north1) -"pNH" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"pNP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"lBD" = ( /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"pOb" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lBF" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"pOd" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"lBI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lBQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 }, -/area/almayer/squads/alpha) -"pOg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lBV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"pOt" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 5 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"lBW" = ( +/obj/structure/stairs{ + dir = 1 }, -/obj/item/paper, -/obj/item/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"pOv" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pOw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"lCd" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"lCe" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"lCj" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"lCn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, /area/almayer/squads/alpha) -"pOx" = ( -/obj/structure/platform{ +"lCE" = ( +/obj/structure/bed/chair/wood/normal{ dir = 1 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"lCH" = ( +/obj/structure/machinery/light{ + pixel_x = 16 }, -/area/almayer/hull/upper_hull/u_a_s) -"pOI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"lCL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/main_office) -"pOQ" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lCO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"lCQ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/auxiliary_officer_office) -"pPd" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "83" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"lDk" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) +"lDv" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"lDB" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"lDC" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"lDD" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"pPl" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ +"lDM" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/warden_office) +"lDO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"lDZ" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"pPn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"pPF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) +"lEf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/port) -"pPH" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"lEg" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"pPK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"pPO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"lEo" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/area/almayer/living/pilotbunks) -"pPR" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ +/obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"pPW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lEp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/charlie) -"pQg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"lEt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"lEz" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." }, -/area/almayer/medical/containment) -"pQh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lED" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"pQk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"pQs" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"lEZ" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/area/almayer/hallways/hangar) -"pQy" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"lFb" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/living/cryo_cells) -"pQz" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"lFc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"lFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"pQC" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"pQH" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door_control{ dir = 1; - icon_state = "pipe-c" + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"lFg" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"lFm" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"lFo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 }, -/area/almayer/engineering/upper_engineering) -"pQL" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 }, -/area/almayer/medical/hydroponics) -"pQQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"pQR" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lFB" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; name = "ship-grade camera" }, -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"lFK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/squads/req) -"pRc" = ( -/turf/closed/wall/almayer, -/area/almayer/living/starboard_emb) -"pRd" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"pRe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"lFQ" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"lGf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"pRi" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"lGh" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"lGB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/hull/lower_hull/l_f_s) -"pRl" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"lGO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"lGP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"pRt" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/area/almayer/hull/lower_hull/l_f_s) -"pRI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lHe" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"lHn" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"pRP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"pRY" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"pSc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"lHz" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 }, -/area/almayer/living/briefing) -"pSf" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 }, -/area/almayer/command/securestorage) -"pSh" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 6; - pixel_y = 12 +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"lHO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"pSk" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ - dir = 8; - name = "ship-grade camera" +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/closed/wall/almayer/research/containment/wall/purple{ dir = 8 }, -/area/almayer/medical/containment/cell/cl) -"pSm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/medical/containment/cell) +"lIf" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"pSD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"pSE" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"lIj" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "orangecorner" + icon_state = "pipe-c" }, -/area/almayer/engineering/ce_room) -"pSF" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/medical/operating_room_two) -"pSI" = ( -/obj/effect/attach_point/electronics/dropship2{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/command/cic) +"lIl" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lIm" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"lIt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/shuttle/part/dropship2/transparent/inner_left_weapons, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"pSL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; - dir = 1; + dir = 2; + name = "\improper Security Checkpoint"; req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"pSW" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + req_one_access_txt = "3;19" }, -/area/almayer/lifeboat_pumps/south1) -"pTC" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"lIT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/plasticflaps, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"lIX" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"pTK" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/living/briefing) -"pTP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"lIY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lJe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" }, -/area/almayer/shipboard/brig/cic_hallway) -"pUb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"lJf" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"lJi" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/almayer/hallways/aft_hallway) -"pUc" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lJM" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lJQ" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/hallways/hangar) -"pUi" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"lJS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"lKy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/medical/chemistry) -"pUm" = ( -/obj/structure/sign/prop1{ - pixel_x = -32; - pixel_y = 2 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lKC" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"lKY" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"pUq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"lLk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"pUs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/command/cichallway) -"pUD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"lLs" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"lLv" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lLz" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lLA" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"lLL" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/vehiclehangar) -"pUZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"lLV" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"lMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_m_s) -"pVs" = ( -/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lME" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/welding, +/obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"pVH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ +/area/almayer/lifeboat_pumps/north1) +"lMG" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/structure/platform_decoration, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/living/briefing) -"pVI" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"pVL" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lMJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"pVM" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "63" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lMK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/hallways/hangar) -"pVP" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"lMQ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lMX" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"pVQ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +"lNd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/squads/delta) -"pVR" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"lNk" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"lNq" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/aft_hallway) +"lNw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lNG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"lNO" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"pVS" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"lNP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 }, +/turf/open/floor/almayer/plate, /area/almayer/living/grunt_rnr) -"pVU" = ( -/obj/structure/bed/chair, +"lNQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/shipboard/brig/cells) +"lNX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"pWd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"lOd" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"lOl" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 }, -/area/almayer/lifeboat_pumps/north1) -"pWi" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lOp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" }, -/area/almayer/hull/upper_hull/u_a_s) -"pWk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"lOv" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "35" }, -/area/almayer/shipboard/brig/evidence_storage) -"pWl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"lOx" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) +"lOz" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_m_s) -"pWJ" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"pWM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"lOH" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/medical) +"lOP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"lOS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"lOW" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/living/offices) -"pWO" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"lOX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"lPj" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/hallways/port_hallway) -"pWW" = ( -/obj/structure/machinery/cryopod/right{ +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"lPk" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"lPD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/squads/delta) -"pXp" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"lPT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"lQk" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 }, -/area/almayer/medical/lower_medical_medbay) -"pXr" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"lQm" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"lQt" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/area/almayer/engineering/engine_core) -"pXs" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"lQv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"lQz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/obj/structure/sign/safety/maint{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"lQA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/port_atmos) -"pXB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"lQK" = ( +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"lQL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"lRo" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hull/upper_hull) -"pXI" = ( /turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"pXP" = ( +/area/almayer/hallways/hangar) +"lRt" = ( +/obj/item/newspaper, /turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"pXU" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/area/almayer/command/lifeboat) +"lRN" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/area/almayer/lifeboat_pumps/south2) -"pXY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"lRT" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"lRZ" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"lSb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/medical/operating_room_three) -"pYl" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lSe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/starboard) -"pYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lSp" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"pYv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"lSy" = ( +/turf/open/floor/almayer/red, /area/almayer/shipboard/starboard_missiles) -"pYy" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"lSG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/charlie) -"pYA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"pYM" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"lSP" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - access_modified = 1; - name = "\improper Brig"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/lobby) -"pYY" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"lSR" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lTh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"lTG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 }, -/area/almayer/shipboard/starboard_missiles) -"pZf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/command/cic) -"pZl" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"lTK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"pZn" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lUw" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 }, -/area/almayer/shipboard/port_missiles) -"pZB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 }, -/area/almayer/living/bridgebunks) -"pZC" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"lUB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/medical/containment) -"pZF" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"lUH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"lUJ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lUX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/lifeboat_pumps/south1) -"pZG" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"lVv" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lVH" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"lVL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"pZH" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/almayer/orange/northeast, /area/almayer/engineering/upper_engineering) -"pZN" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"lWc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lWf" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 }, -/area/almayer/medical/containment) -"qaf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"lWo" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"lWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/repair_bay) -"qal" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"lWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"lWw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/command/cic) -"qar" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"qat" = ( -/turf/closed/wall/almayer, -/area/almayer/living/chapel) -"qau" = ( -/obj/structure/machinery/shower{ - dir = 8 +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lWM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliason) -"qav" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/containment/cell/cl) -"qaF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lWR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"lWV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"lXa" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -4 }, -/area/almayer/squads/alpha_bravo_shared) -"qaJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"lXl" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"qaY" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lXo" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/living/briefing) -"qba" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"lXw" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lXD" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/target{ - name = "punching bag" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"lXS" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"lYb" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"lYf" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/area/almayer/living/gym) -"qby" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lYi" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/squads/charlie) -"qbF" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"lYj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"lYx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lYz" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"lYB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qbQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lYD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"lYH" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 }, -/area/almayer/squads/bravo) -"qbY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/medical/upper_medical) -"qcj" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"lYO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"qcn" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 5"; - buildstate = 1 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"lYS" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"lZb" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"lZi" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/area/almayer/engineering/engine_core) -"qcJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "courtyard window"; + name = "\improper Privacy Shutters" }, -/area/almayer/squads/alpha_bravo_shared) -"qcM" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"lZr" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull) -"qcQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lZA" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"lZB" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lZK" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 }, -/area/almayer/squads/req) -"qdr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"maa" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mah" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"mao" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"mas" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north1) +"mav" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/command/cichallway) -"qdE" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"mbc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"qdG" = ( -/obj/structure/ladder{ - height = 2; - id = "med1" +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 +/obj/item/ashtray/glass{ + pixel_x = -6 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 }, -/obj/structure/sign/safety/refridgeration{ - pixel_x = -17; +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; pixel_y = 7 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"qdL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mbf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/port_umbilical) -"qdO" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mbk" = ( +/obj/structure/platform{ dir = 8 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mbr" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"mbs" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"mbw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/living/officer_study) -"qdP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) -"qdS" = ( -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"qei" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"mbz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"mbE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mbV" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "red" + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/general_equipment) -"qen" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mcI" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"mdc" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/command/computerlab) -"qes" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"mdg" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"mdk" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 }, -/area/almayer/squads/charlie) -"qeP" = ( +/area/almayer/medical/containment/cell) +"mdB" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"qeR" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"mdH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"qeX" = ( -/turf/open/space, -/area/space) -"qeZ" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering) -"qfe" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mdJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"mdL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mdP" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/area/almayer/engineering/lower_engineering) -"qfm" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mdS" = ( +/obj/structure/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"qfq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"qfv" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"mdV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"mdY" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/bravo) -"qfw" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"mec" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"mei" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/tankerbunks) -"qfC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"meu" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"mey" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 }, -/area/almayer/engineering/engineering_workshop) -"qfD" = ( -/obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"meY" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/living/cryo_cells) -"qfE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"mfd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mfB" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"mfC" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"mfJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"mfM" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "50" }, -/area/almayer/hull/upper_hull/u_a_p) -"qfG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" +/area/almayer/hallways/hangar) +"mfY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/aft_hallway) -"qfU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/vehiclehangar) -"qgg" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"mgl" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"mgo" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/aft_hallway) +"mgA" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"mgF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"mgG" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/aft_hallway) +"mgI" = ( +/obj/structure/catwalk{ + health = null }, -/obj/structure/platform{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"qgy" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/area/almayer/hull/lower_hull/l_f_s) -"qgJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"mgV" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mgW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"qgK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mgX" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/aft_hallway) +"mgY" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"mhb" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"qgN" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/area/almayer/maint/hull/lower/l_f_s) +"mhe" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"mhk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"mhs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"mhw" = ( +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 14 }, -/area/almayer/powered/agent) -"qgP" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/shipboard/brig/cells) +"mhB" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/area/almayer/living/starboard_emb) -"qhh" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"mhJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"mhL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"mij" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop) +"min" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"miu" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/engineering/engine_core) -"qhz" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"miz" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qhN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/aft_hallway) -"qhQ" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"miA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/hull/upper_hull/u_a_p) -"qhW" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"qhX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qhY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"miH" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/hull/lower/l_m_s) +"mjc" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/living/briefing) -"qii" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"mjn" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"mjx" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"qip" = ( -/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"qiA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/area/almayer/hallways/lower/starboard_midship_hallway) +"mjC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"mjJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"qiK" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"mjU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"qiN" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/almayer/medical/containment/cell) -"qjr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/folder/black, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/machinery/door_control{ - id = "CE Office Shutters"; - name = "CE Office Shutters"; - pixel_x = -6; - pixel_y = 18; - req_access_txt = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"qjs" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"mjX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" }, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" }, -/area/almayer/living/offices) -"qjy" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"mka" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ id = "crate_room3"; - name = "\improper Storage Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" + name = "storage shutters"; + pixel_x = -26 }, -/turf/open/floor/almayer, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) -"qjz" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qjA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower_engineering) -"qjD" = ( +"mkk" = ( /obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; + dir = 4; id = "CIC Lockdown"; name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"mkI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" }, -/area/almayer/lifeboat_pumps/north1) -"qjJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"mlj" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"mln" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/squads/charlie) -"qjK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"mlo" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) +"mlv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"mlI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mlQ" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"mlT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"mlW" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mmb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; + dir = 1; name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mmm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/hull/upper/u_a_p) +"mmq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"mmu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"qjN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/facepaint/black, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"mmw" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"qjO" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" - }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/area/almayer/living/offices) +"mmI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"mmS" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mna" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"mnc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/space) -"qjX" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"mng" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"mnh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"mnG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"qkb" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"qke" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"mnI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/powered/agent) +"mnU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/engineering/engine_core) -"qkq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"moa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"moo" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"mos" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/area/almayer/shipboard/brig/perma) -"qks" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"moC" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"moF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"moL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, /area/almayer/hallways/hangar) -"qkI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"qkS" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"moP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/squads/charlie_delta_shared) -"qkZ" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"moU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" }, -/area/almayer/living/pilotbunks) -"qli" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"mpj" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"mpm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"mpo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mps" = ( +/obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/area/almayer/command/cichallway) -"qln" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"mpw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/shipboard/weapon_room) -"qlw" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"mpG" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"mpI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mpW" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 }, -/area/almayer/hull/upper_hull/u_a_s) -"qlJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"qlQ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 }, -/area/almayer/squads/req) -"qlV" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"mqe" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/squads/bravo) -"qlY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mqn" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/pilotbunks) -"qmd" = ( +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mqp" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"mqt" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"mra" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/command/telecomms) -"qme" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"qml" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/area/almayer/engineering/upper_engineering) +"mrl" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/area/almayer/shipboard/brig/cic_hallway) -"qmq" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"qmr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mrp" = ( +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"qmt" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_s) -"qmI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"mrt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"qmY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"mry" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"mrA" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"mrG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"qna" = ( +/area/almayer/shipboard/port_missiles) +"mrL" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"msc" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) +"mse" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/starboard_hallway) -"qnf" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/cryo_cells) -"qno" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/warden_office) +"msu" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 14 }, -/area/almayer/engineering/engineering_workshop) -"qnB" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/device/flash{ + pixel_y = -8 + }, +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"msC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"msS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"mtd" = ( +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "green" + pixel_y = 2 }, -/area/almayer/living/grunt_rnr) -"qnK" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mtg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"qnN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/medical/medical_science) -"qnY" = ( -/obj/structure/window{ +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"mtk" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"mtz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"qnZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"mtE" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"qoa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"qod" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/prop/magazine/dirty/torn, -/obj/item/prop/magazine/dirty/torn/alt{ - pixel_x = 7; - pixel_y = 11 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"mtF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qoj" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) +"mtI" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/sign/safety/ladder{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mtL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"qol" = ( -/obj/item/tool/warning_cone, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mtW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, -/area/almayer/hallways/hangar) -"qop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"mua" = ( +/turf/closed/wall/almayer, +/area/almayer/living/port_emb) +"muI" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"muL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"muO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/area/almayer/shipboard/weapon_room) -"qow" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"muR" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mvd" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"qoy" = ( +/area/almayer/maint/hull/lower/l_m_p) +"mvf" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mvj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"mvm" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mvt" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mvw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"qoB" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"mvC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/living/briefing) -"qoH" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"qoK" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"qoL" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/hallways/port_hallway) -"qpu" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/area/almayer/living/port_emb) +"mvE" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop) -"qpA" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"mvH" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"qpF" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/evidence_storage) -"qpJ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"qpL" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"mvZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/area/almayer/command/telecomms) -"qpS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) +"mwa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"mwe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"mwn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) +"mwp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"mwD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"mwE" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"mxt" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"mxA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 }, -/area/almayer/medical/hydroponics) -"qpW" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console"; + pixel_y = -12; + shuttleId = "dropship_normandy"; + disabled = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"mxH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/command/cichallway) -"qqg" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"mxU" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/item/bedsheet/orange{ - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"myh" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"myk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"myn" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"myq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"mys" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"myC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"myD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/port) -"qql" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"myE" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 29; + serial_number = 12 }, -/area/almayer/lifeboat_pumps/south1) -"qqv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"myI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_umbilical) -"qqJ" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"qqM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"myO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"qqV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"qqZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"myQ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "36" }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/area/almayer/hallways/hangar) +"myT" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/living/captain_mess) -"qrc" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"mzx" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"mzO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) -"qrn" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +"mzW" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"mzZ" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"mAa" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) -"qrq" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"mAq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"mAE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"mAL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"mAV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"mAY" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"mBc" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/area/almayer/hallways/aft_hallway) -"qrs" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"mBd" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"mBh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"mBl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mBA" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"mBE" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mBH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mBJ" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"mCc" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" }, -/area/almayer/shipboard/brig/cells) -"qrL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"mCj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mCk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mCp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/area/almayer/hallways/aft_hallway) -"qsg" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mCs" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/hangar) -"qsp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"mCw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/obj/structure/platform_decoration{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"mCR" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"mCU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"mCY" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"mDa" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 }, -/area/almayer/hallways/hangar) -"qss" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mDd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 6 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"qsz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/chief_mp_office) +"mDl" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mDq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/alpha) -"qsB" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/command/cic) -"qsE" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"mDw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"mDx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/machinery/vending/snack, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" + dir = 9 }, -/area/almayer/shipboard/brig/main_office) -"qsF" = ( -/obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"mDA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mDK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"qsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"mDM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 }, -/area/almayer/lifeboat_pumps/south1) -"qsQ" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mDQ" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 1; pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"qsT" = ( -/obj/structure/sign/prop1, -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/commandbunks) -"qsU" = ( -/obj/structure/disposalpipe/segment{ +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"mEa" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"mEh" = ( +/turf/open/floor/almayer, +/area/almayer/command/securestorage) +"mEl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"qsZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/paper{ - pixel_x = 8 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"mEs" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"mEI" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"mEL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"mEV" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell/cl) +"mFo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"mFz" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mFI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"mFS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"mFV" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/area/almayer/medical/containment) -"qtc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"mGn" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"mGo" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mGr" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"qtf" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ +/area/almayer/maint/hull/upper/u_f_p) +"mGs" = ( +/obj/structure/stairs{ dir = 1 }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"mGH" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/living/offices) -"qtl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/device/radio/marine{ - pixel_x = 5; - pixel_y = 3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"mGJ" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"qtm" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"mGS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mGZ" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"mHc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"mHj" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/aft_hallway) +"mHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"mHm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 }, -/area/almayer/engineering/upper_engineering/port) -"qtD" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cafeteria_officer) -"qtN" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"qtQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/flash, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"mHt" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/squads/req) -"quk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"mHv" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/alpha) -"quM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/upper/u_f_p) +"mHy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"mHA" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"mHT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/almayer/living/basketball) -"quP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"mIa" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"mId" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"quY" = ( -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"qva" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 +/obj/structure/machinery/computer/card{ + pixel_x = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"qvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mIx" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/squads/charlie_delta_shared) -"qvw" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"mIz" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"mIA" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qvA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mIC" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"mII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) -"qvF" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 }, -/area/almayer/engineering/upper_engineering) -"qvK" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "10" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"mIO" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"mIT" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_e2{ + icon_state = "containment_wall_connect_e" }, -/area/almayer/hallways/hangar) -"qvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/medical/containment/cell) +"mIX" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"mJf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/starboard) -"qwc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mJg" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mJi" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/morgue) +"mJA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"mJG" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 }, -/area/almayer/shipboard/brig/cryo) -"qwk" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"mJJ" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/hull/upper_hull/u_a_s) -"qwv" = ( -/obj/structure/machinery/light{ +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"mKa" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/living/port_emb) -"qwB" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/charlie_delta_shared) +"mKp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_y = 6 }, -/area/almayer/living/bridgebunks) -"qwE" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"mKD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"mKG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"qwN" = ( -/turf/open/floor/almayer{ +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "orange" + pixel_y = 2 }, -/area/almayer/engineering/upper_engineering) -"qxd" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mKH" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"mKJ" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"mKL" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"mKM" = ( +/obj/structure/sign/poster{ + pixel_x = -30; + pixel_y = 4 }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"mKQ" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, -/area/almayer/shipboard/brig/lobby) -"qxy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mKR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/stair_clone/upper) -"qxH" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"mKT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"mKY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" }, -/area/almayer/medical/upper_medical) -"qxP" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"mLa" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"mLg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"qyb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mLi" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/almayer/living/briefing) -"qyu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/sink{ + pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"mLr" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" }, -/area/almayer/engineering/engine_core) -"qyv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"mLK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mLW" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"qyO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mMi" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 }, -/area/almayer/shipboard/navigation) -"qyP" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"qzh" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_lobby) -"qzn" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"mMl" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) -"qzt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"mMq" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/general_equipment) -"qzw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, /turf/open/floor/almayer, -/area/almayer/living/gym) -"qzA" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/hangar) +"mMx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/charlie) -"qzF" = ( /obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"qAp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + pixel_x = -17 }, -/area/almayer/engineering/upper_engineering) -"qAs" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 }, -/area/almayer/living/briefing) -"qAu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 }, -/area/almayer/lifeboat_pumps/north1) -"qAA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"mMy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"mMA" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"qAD" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"mMV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"qAF" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"mMZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"mNb" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/operating_room_two) -"qAO" = ( -/obj/structure/machinery/power/apc, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mNd" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "sterile_green_corner" + name = "ship-grade camera" }, -/area/almayer/medical/containment/cell) -"qAU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"mNj" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"mNk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"mNq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"qBf" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"mNt" = ( +/obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qBn" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"mNN" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 +/obj/item/clothing/glasses/welding{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mNQ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"mNX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"mOn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/hull/upper_hull/u_f_p) -"qBu" = ( /obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"qBC" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"qBI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mOo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"mOw" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "38" }, -/area/almayer/hull/lower_hull/l_a_s) -"qBQ" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/area/almayer/hallways/hangar) +"mOy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"mOJ" = ( +/turf/open/space/basic, +/area/space) +"mOT" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mOW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"mOY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"qBV" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mPl" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"mPQ" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"mQo" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"mQt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/almayer/medical/containment/cell) -"qBX" = ( +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"mQM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mQO" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"mQS" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"mQV" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"mRc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"mRh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"mRl" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mRr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/warden_office) +"mRv" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 }, -/area/almayer/engineering/engineering_workshop/hangar) -"qCh" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/area/almayer/hull/upper_hull/u_m_p) -"qCi" = ( -/obj/structure/machinery/light{ +/obj/structure/barricade/handrail/wire{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_garden) -"qCn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qCo" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"mRy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) +"mRz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/corporateliason) -"qCq" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 }, -/area/almayer/living/grunt_rnr) -"qCI" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"mRG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"qCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/briefing) -"qDs" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"qDw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"mRN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/starboard_hallway) -"qDx" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"mRQ" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/officer_study) -"qEa" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mSf" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"mSs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"mSB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"qEc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"qEe" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"mSJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) }, -/area/almayer/squads/charlie) -"qEj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"mSK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"mSL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/living/offices/flight) -"qEo" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mSP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/living/offices) -"qEp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"mSW" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"mTa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mTf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"mTn" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"mTo" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "24" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/area/almayer/hallways/hangar) +"mTt" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/stern_hallway) -"qEq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"qEK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"mTv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"qEO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mTD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "S" }, -/area/almayer/hallways/hangar) -"qEP" = ( -/obj/docking_port/stationary/escape_pod/south, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"mUa" = ( +/obj/effect/attach_point/weapon/dropship2/right_wing, +/obj/structure/shuttle/part/dropship2/transparent/lower_right_wing, /turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"qER" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +/area/almayer/hallways/hangar) +"mUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"qET" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"mUg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"mUi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"mUA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering) -"qEX" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/squads/bravo) -"qFd" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"mUE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"mUN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"mUR" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"mVu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"mVJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/upper/u_a_s) +"mVQ" = ( +/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"mVU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"mVW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"mWp" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 8"; + buildstate = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"mWq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/silver/north, /area/almayer/command/cichallway) -"qFk" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/cryo_cells) -"qFv" = ( -/obj/structure/curtain/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/medical/morgue) -"qFx" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +"mWv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"qFF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"qFH" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"qFK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"qFQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"qGa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"mWE" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"qGt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"mWL" = ( +/mob/living/simple_animal/cat/Jones{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"qGv" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"mWT" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"mWU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"qGC" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/reagent_container/food/snacks/mre_pack/meal5{ + desc = "How long has this been sitting here?"; + pixel_x = 7; + pixel_y = 7 }, -/area/almayer/engineering/engine_core) -"qGD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mXr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"mXs" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"mXC" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 }, -/area/almayer/medical/containment) -"qGJ" = ( -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mXD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mXI" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"mXJ" = ( +/obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"mXO" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"qHb" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qHi" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 +/area/almayer/medical/containment/cell/cl) +"mXS" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"mXT" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"mYE" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"mYG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"mYM" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cells) +"mYR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/squads/req) -"qHo" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mYT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hallways/starboard_hallway) -"qIs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/wood/ship, +/area/almayer/living/grunt_rnr) +"mYW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, /area/almayer/living/offices) -"qIx" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"mYZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/living/auxiliary_officer_office) -"qIE" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/cm_vending/own_points/experimental_tools, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"mZj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mZp" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 }, -/obj/item/book/manual/evaguide, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qIK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mZr" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/area/almayer/hull/upper_hull/u_f_p) -"qIL" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/box/cups{ + pixel_x = 3 }, -/area/almayer/squads/req) -"qIM" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/item/storage/box/donkpockets{ + pixel_y = 19 }, -/area/almayer/squads/bravo) -"qIS" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"mZH" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"qIV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nac" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nae" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"nat" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/port_atmos) -"qIX" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"naC" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"naK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"naM" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/area/almayer/living/bridgebunks) -"qJn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"naO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"naY" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hallways/stern_hallway) -"qJN" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"nbj" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/area/almayer/hull/upper_hull/u_a_s) -"qJS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"qJU" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north1) -"qKC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"nbp" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"qKK" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"qKV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nbq" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nbt" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 }, -/area/almayer/hallways/hangar) -"qLa" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"nbE" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/starboard_garden) +"nbG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"nbN" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"nbY" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"nch" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/engineering/lower_engineering) -"qLe" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"nck" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"ncs" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/sign/safety/maint{ + pixel_y = -26 }, -/area/almayer/hallways/aft_hallway) -"qLr" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"ncA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"ncL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"ncQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/starboard_garden) -"qLD" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ncR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_m_s) -"qLT" = ( +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qMp" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 +/area/almayer/maint/hull/lower/l_f_s) +"nde" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"ndg" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_a_s) +"ndl" = ( +/turf/open/floor/almayer_hull, +/area/space) +"ndv" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"neH" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"qMt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + health = 80 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"neI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"neK" = ( +/turf/open/floor/almayer/orangecorner/north, /area/almayer/engineering/upper_engineering/port) -"qMu" = ( -/obj/structure/shuttle/part/dropship2/transparent/nose_center, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"qMw" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 +"neT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"qML" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"nfg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"nfh" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer{ dir = 8; - icon_state = "orange" + id = "Perma 2"; + name = "\improper isolation shutter" }, -/area/almayer/squads/bravo) -"qMQ" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer{ +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"nfj" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"nfr" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"nfs" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "green" + icon_state = "pipe-c" }, -/area/almayer/hallways/port_hallway) -"qNa" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 19; - req_one_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"nft" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"qNc" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nfu" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"nfz" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nfA" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"qNl" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"qNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"qNK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"nfU" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"ngh" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_f_s) -"qNS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"ngx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ngD" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, -/area/almayer/medical/lower_medical_medbay) -"qOc" = ( /turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ngH" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"ngU" = ( +/turf/open/floor/almayer/orangecorner/west, /area/almayer/living/briefing) -"qOd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform{ - dir = 8 +"ngV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"qOe" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"nhh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"nho" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"qOj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"nht" = ( +/obj/structure/machinery/door_control{ dir = 1; - name = "\improper Combat Information Center" + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"nhx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/cichallway) -"qOt" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"nhK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"qOu" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"nhO" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"nhV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) +"nis" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"niY" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"niZ" = ( +/obj/structure/machinery/firealarm{ dir = 4; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" + pixel_x = 24 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nja" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"njc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"njs" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"qOF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"nju" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"njy" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"njz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"njC" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"njJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"qOL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"njM" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"njW" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"njX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nkh" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"qPf" = ( -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/cautery, -/obj/item/tool/surgery/retractor, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/medical/morgue) -"qPs" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_emb) +"nkk" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nkG" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"qPw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nkQ" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"nkS" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/engineering/engine_core) -"qPD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"qPU" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/lobby) -"qQp" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) -"qQC" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"qQW" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"nlh" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"nlk" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 }, -/area/almayer/engineering/upper_engineering/port) -"qQX" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"nlw" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"qQY" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"nlH" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"nlJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"nlK" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/engineering/upper_engineering) -"qRf" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"nlX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_a_p) -"qRs" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"nme" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"nmg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"nmm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/squads/bravo) -"qRD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"nmr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"nmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"qRO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/item/device/whistle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"qRU" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"nmS" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"nnd" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"qRW" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"qSx" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"qSH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"qSJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"qTA" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "53" - }, -/area/almayer/hallways/hangar) -"qTL" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/lobby) -"qTM" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 - }, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"qTX" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/engineering/lower_engineering) -"qTZ" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/port) -"qUf" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"nnj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/computerlab) -"qUx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/command/cic) -"qUE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"nnl" = ( +/obj/structure/disposalpipe/junction{ dir = 8 }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"nnn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"qUU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/hull/upper_hull/u_f_p) -"qUX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"nns" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"qVf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/living/chapel) -"qVy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/gym) +"nnP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/aft_hallway) +"nnS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/status_display{ - pixel_y = -29 +/turf/open/floor/almayer, +/area/almayer/living/gym) +"noi" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"nol" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"non" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/pipes/unary/freezer{ + dir = 8 }, -/area/almayer/squads/bravo) -"qVE" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "39" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nou" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"qVH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engine_core) -"qVP" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +"noz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"noB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"noG" = ( +/obj/structure/stairs{ dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 + icon_state = "ramptop" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/obj/item/bedsheet/red{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"noJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"noK" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"noT" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/starboard_emb) -"qVQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/hallways/aft_hallway) -"qVS" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"noY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"qVY" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"npb" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"qWf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"qWj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"npl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"qWG" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "59" +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"qWV" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"nps" = ( +/turf/open/floor/almayer/empty, +/area/supply/station) +"npI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/squads/bravo) -"qXe" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"nqn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/command/cic) -"qXh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"qXz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nqq" = ( /obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"qXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) +"nqx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"nqz" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"qXZ" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"nqJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"nqR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"qYd" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"nqW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"nqZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"nrd" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"nrv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nrZ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nsn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"nsv" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"nsD" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"nsG" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nsQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) -"qYf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"qYl" = ( +/area/almayer/engineering/lower/workshop) +"nsV" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, /obj/structure/sign/safety/ladder{ pixel_x = 8; - pixel_y = 32 + pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nsZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"qYA" = ( -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"qYW" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/alpha) +"ntg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/hull/upper_hull/u_a_p) -"qYY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"ntj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"ntr" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"ntx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ntz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ntA" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"ntD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/living/bridgebunks) -"qYZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"qZe" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"ntL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ntM" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ntN" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"nuh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"nuq" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/hallways/starboard_hallway) -"qZo" = ( -/turf/closed/wall/almayer/outer, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"nuM" = ( +/turf/open/floor/almayer/red/west, /area/almayer/shipboard/starboard_missiles) -"qZt" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"nvc" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nvl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 }, -/area/almayer/engineering/engine_core) -"qZu" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 }, -/area/almayer/hallways/hangar) -"qZx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nvo" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Perma Cells" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"nvU" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/shipboard/brig/perma) -"qZz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/almayer/redfull, +/area/almayer/maint/hull/lower/l_f_s) +"nvX" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"nwe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"nwp" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"nwx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/engineering/engineering_workshop/hangar) -"qZA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nwJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"qZE" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"nwO" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nwT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_s) -"qZM" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"nxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"nxo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"qZR" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"nxr" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"nxz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nxE" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"nxH" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, /area/almayer/living/gym) -"qZX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +"nxQ" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/starboard_missiles) -"rab" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"nxR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"nxZ" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"nye" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/living/auxiliary_officer_office) -"raj" = ( /obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"nyu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"nyz" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"nyE" = ( +/obj/structure/machinery/light{ dir = 4; - icon_state = "pipe-c" + invisibility = 101 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = -7 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"nyG" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"ran" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"nyV" = ( +/obj/item/stack/tile/carpet{ + amount = 12 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"nyZ" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"nzd" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"nzg" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull) -"rax" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"nzq" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_m_p) -"raz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"nzt" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"nzC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/operating_room_one) -"raE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"raL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"nzL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"raS" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +"nzW" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 }, -/area/almayer/living/commandbunks) -"raU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nzZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"raV" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"nAh" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"nAm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"nAw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"rbb" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ +/area/almayer/hallways/upper/aft_hallway) +"nAA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nAB" = ( +/obj/structure/pipes/binary/pump/high_power/on{ dir = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices/flight) -"rbf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"rbg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nAF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/stern_hallway) -"rbp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nAW" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"nBd" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/aft_hallway) +"nBf" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 }, /turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"rbz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/area/almayer/maint/hull/lower/l_f_p) +"nBg" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/evidence_storage) +"nBk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"nBm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/main_office) -"rbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"rbE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/command/cic) +"nBw" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/almayer/squads/delta) -"rbH" = ( -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "red" + health = 80 }, -/area/almayer/hallways/starboard_hallway) -"rbJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/engineering/engineering_workshop) -"rbV" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_emb) +"nBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"nBH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"nBL" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"nBU" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 }, /turf/open/floor/almayer, -/area/almayer/command/cic) -"rbW" = ( +/area/almayer/maint/hull/upper/u_f_s) +"nCz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nCA" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"nCG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"nCH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"nCM" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"nCN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/squads/alpha) -"rbX" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"nCP" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"nCV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nDm" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nDp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 }, -/area/almayer/medical/morgue) -"rcD" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nDr" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, -/area/almayer/engineering/laundry) -"rcQ" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 +/area/almayer/engineering/starboard_atmos) +"nDs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"nDz" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/engineering/upper_engineering/port) -"rde" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nDB" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nDD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/living/offices/flight) -"rdg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nDJ" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nDO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"nDQ" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"rdo" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"rdq" = ( -/obj/structure/bed/chair/wheelchair{ +/area/almayer/shipboard/port_missiles) +"nEo" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"nEs" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"nEy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/medical/lower_medical_medbay) -"rdr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 }, -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"nEB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_y = 24; - req_access_txt = "3" + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"nEU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"nEW" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"nFh" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; - icon_state = "red" + name = "\improper Engineering Storage" }, -/area/almayer/shipboard/brig/perma) -"rdv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"rdA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"nFr" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"nFx" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nFJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"rdL" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"nFL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"rdQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/lifeboat) -"rdS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"rdT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"rdU" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nFN" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"rea" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"nGe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"nGs" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"nGv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nGD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"reb" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"nGI" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"rec" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "67" +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 }, -/area/almayer/hallways/hangar) -"reh" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"nGK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hallways/hangar) -"ret" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nGU" = ( /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"nHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"rew" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"rey" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/aft_hallway) +"nHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"nHl" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"nHp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/medical/upper_medical) -"reB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"nHq" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"nHs" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/delta) -"reI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"nHu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 }, -/area/almayer/lifeboat_pumps/north1) -"reU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nHv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access = "19;21" }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"nHw" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"nHP" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"nIm" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nIE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" }, -/area/almayer/medical/hydroponics) -"rfd" = ( -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"nIK" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nIN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"rfu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"rfC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nIR" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"nIT" = ( /obj/structure/bed/chair{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/shipboard/brig/cic_hallway) -"rfE" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = 24 +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"nIW" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_missiles) +"nJl" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"nJs" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"nJu" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"nJB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nJG" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"nJH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/area/almayer/shipboard/brig/cells) -"rfF" = ( -/obj/structure/closet/emcloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"rfI" = ( +/area/almayer/stair_clone/upper) +"nJL" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"rfN" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"nKa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_m_s) -"rfO" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rfP" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/hallways/upper/aft_hallway) +"nKd" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"rfV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"rfW" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/command/cichallway) -"rgh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"rgt" = ( -/obj/structure/platform_decoration{ - dir = 4 +/area/almayer/maint/hull/upper/u_f_p) +"nKg" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/bedsheetbin{ + pixel_y = 6 }, -/area/almayer/lifeboat_pumps/south2) -"rgE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"nKt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nKw" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nKY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/engineering/engineering_workshop) -"rgF" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/briefing) -"rhf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nLf" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/squads/req) +"nLh" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rhg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nLi" = ( /obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/engineering/upper_engineering) -"rhh" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) -"rhn" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"nLl" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"nLv" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nLC" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 }, -/obj/structure/machinery/door/window/tinted{ - dir = 1 +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"nLE" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"nLI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/port) -"rhp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/engineering/engineering_workshop/hangar) -"rhu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"nLL" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"nLO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 }, +/obj/item/storage/box/handcuffs, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nLQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nLW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/req) -"rhw" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"nMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"nMm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"nMp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"nMq" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nME" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"nMW" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"nNb" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/port_emb) -"rhy" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" + health = 80 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"rhH" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -21 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"nNc" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2; - pixel_y = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"rhO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"nNg" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nNn" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ +/obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + layer = 3.3; + pixel_x = -17 }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, /area/almayer/command/cic) -"rhR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"nNu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"nNA" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nNB" = ( +/obj/structure/shuttle/part/dropship2/lower_right_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"nND" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/command/cichallway) -"rhV" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"nNG" = ( /obj/structure/machinery/light{ unacidable = 1; unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"nNJ" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"nNQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) +"nNR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"nNS" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) -"rit" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nNV" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"riv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"nNZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"nOl" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"nOq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nOx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/medical_science) -"riA" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1) - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"riD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"nOE" = ( +/obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_point_defense) -"riE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 +/area/almayer/squads/req) +"nOF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nOV" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"nOX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/engineering_workshop/hangar) -"riI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"nPf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, /obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 + pixel_x = 32; + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/area/almayer/hull/lower_hull/l_a_s) -"riO" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"nPi" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + pixel_y = 3 }, -/area/almayer/living/starboard_garden) -"riP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nPq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"nPr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_p) +"nPI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nPW" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"nQg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"nQn" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"nQr" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"riV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/command/cic) -"riZ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_f_p) +"nQt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"nQA" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"nQE" = ( /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"rja" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ +/area/almayer/living/bridgebunks) +"nQL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"rjc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" }, -/area/almayer/hull/upper_hull/u_m_p) -"rjj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower_engineering) -"rjs" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nQM" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/command/cichallway) -"rjB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"nRm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"nRq" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/area/almayer/engineering/upper_engineering) -"rjR" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hull/upper_hull/u_f_p) -"rjS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"nRr" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nRy" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south2) +"nRN" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"nRV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nRY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = 4; + pixel_y = 15 }, -/area/almayer/shipboard/weapon_room) -"rkk" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 }, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"rkp" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -8; pixel_y = 7 }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"rkr" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -7; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nSs" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"nSD" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"nSW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/corporateliason) -"rkx" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sink{ - pixel_y = 24 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"nTx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/prop{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 29 +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"nTA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/port_emb) -"rkO" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/command/computerlab) +"nTN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/medical/hydroponics) -"rla" = ( -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"nTP" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nUm" = ( +/turf/open/floor/almayer/silver/north, /area/almayer/command/securestorage) -"rli" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +"nUq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"nUy" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/delta) -"rlC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"rlJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +"nUG" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"nUI" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 }, +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer/sterile, +/area/almayer/medical/upper_medical) +"nUO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_side, /area/almayer/medical/lower_medical_medbay) -"rmb" = ( -/obj/structure/bed/chair{ +"nUS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"nUX" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"nVm" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"nVA" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"nVE" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"rmg" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) +"nVG" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nVI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/ce_room) +"nVK" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"nVM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nVR" = ( +/obj/structure/machinery/power/apc/power/west, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/orange/west, +/area/almayer/shipboard/brig/lobby) +"nVY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"rmh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 +/area/almayer/hallways/hangar) +"nWn" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"nWD" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"nWQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"nXf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/binoculars, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"nXg" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"rml" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nXh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nXp" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/sign/safety/ladder{ +/obj/structure/sign/safety/fire_haz{ pixel_x = 8; - pixel_y = 24 + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nXt" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"nXv" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/grunt_rnr) -"rmm" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"rmo" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"nXw" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"rnf" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/hull/lower_hull/l_a_p) -"rng" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"nXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c200{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 }, -/area/almayer/squads/req) -"rnh" = ( +/obj/item/reagent_container/pill/happy, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/almayer/living/starboard_emb) +"nXP" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nXQ" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"rnm" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"nYf" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/area/almayer/medical/lower_medical_medbay) -"rno" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/almayer/hull/upper_hull/u_f_p) -"rnz" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"nYt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nYJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"nYM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"nYV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"rnC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"nZc" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"rnD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"nZh" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" }, -/area/almayer/engineering/engineering_workshop) -"roj" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"nZj" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nZk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/operating_room_two) -"roA" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hallways/starboard_hallway) -"roS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nZm" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"nZq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"nZA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/area/almayer/medical/lower_medical_medbay) -"rpa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"nZH" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"nZL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 }, -/area/almayer/command/computerlab) -"rpi" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"nZR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nZX" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 }, -/area/almayer/living/briefing) -"rpP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_lobby) -"rpQ" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"oaa" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cells) +"oaw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"oaK" = ( +/obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/almayer/medical/lower_medical_medbay) -"rpY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +"oaW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/squads/alpha) -"rqj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"rqs" = ( -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"rqB" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"obh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/offices) -"rqH" = ( +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"obs" = ( +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"obx" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/aft_hallway) +"obF" = ( +/obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"rqJ" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = -8; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 +/area/almayer/squads/alpha) +"obR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hallways/aft_hallway) -"rqL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"ocb" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"ocd" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"ocg" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ocs" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"rqQ" = ( +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"ocu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"rrd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"rrh" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 + dir = 4 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"rrr" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"ocF" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"ocN" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/hallways/starboard_hallway) -"rry" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ocP" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"rrz" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/orange{ + pixel_y = 12 }, -/area/almayer/command/combat_correspondent) -"rrE" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/obj/item/bedsheet/orange{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/area/almayer/shipboard/weapon_room) -"rrM" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"ocU" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"ocX" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 21 }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2; + pixel_y = -4 }, -/area/almayer/hull/lower_hull/l_m_s) -"rrU" = ( -/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"odi" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 + dir = 1 }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"odq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/engineering_workshop/hangar) -"rrW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"odF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/grunt_rnr) -"rse" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"odM" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/aft_hallway) +"odO" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"rsi" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"odU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"odV" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 }, -/area/almayer/living/cafeteria_officer) -"rsr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/silver/north, /area/almayer/shipboard/brig/cic_hallway) -"rsy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"rsG" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"rsH" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"rsV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"oeg" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/almayer/hallways/vehiclehangar) -"rsX" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; +/obj/structure/sign/safety/biolab{ + pixel_x = -9; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"rtq" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/sign/safety/biohazard{ + pixel_x = 25; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/starboard) -"rtx" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/laundry) -"rtM" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" + health = 80; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"rtN" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 +/area/almayer/medical/medical_science) +"oer" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"oeu" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 }, -/area/almayer/engineering/upper_engineering/starboard) -"rtO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"rui" = ( -/obj/structure/sign/safety/storage{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oeA" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"oeC" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"oeN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"oeX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/command/cichallway) -"ruo" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oeZ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"ofm" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/lower_hull/l_f_s) -"rur" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"ofn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"ofq" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ofr" = ( +/obj/effect/attach_point/weapon/dropship2/right_fore, +/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"ofI" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"ofL" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"rux" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) +"ofT" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ofV" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/shipboard/brig/cells) -"rvc" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ofX" = ( +/obj/structure/sink{ dir = 4; - health = 80 + pixel_x = 11 }, -/obj/structure/window/reinforced{ +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"ogr" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"ogy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/squads/alpha_bravo_shared) -"rvi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ogG" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"ogL" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash{ + pixel_x = 2; + pixel_y = 2 }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 +/obj/item/storage/bag/trash{ + pixel_x = -8; + pixel_y = 4 }, -/area/almayer/medical/containment/cell) -"rvj" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/storage/bag/trash{ + pixel_x = -3; + pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"ogN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ogO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 }, -/area/almayer/hull/lower_hull/l_f_p) -"rvq" = ( -/obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"rvs" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/area/almayer/medical/morgue) +"ohc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"ohe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/medical/hydroponics) -"rvz" = ( -/turf/open/floor/almayer/research/containment/corner_var1{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"ohq" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"ohF" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"ohI" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ohN" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"ohO" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"ohP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/area/almayer/medical/containment/cell/cl) -"rvF" = ( -/obj/structure/sign/safety/maint{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"ohQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ohS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"oib" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"oin" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 }, -/area/almayer/hallways/stern_hallway) -"rwg" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"oiv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_p) -"rwo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"oiG" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ojd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/squads/bravo) -"rwJ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Perma Cells" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"ojg" = ( /obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"ojk" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"ojs" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"ojv" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"rwN" = ( -/obj/structure/machinery/door_control{ - id = "CIC_Conference"; - name = "Conference Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" +/area/almayer/maint/hull/upper/u_f_s) +"ojw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/general_equipment) +"ojx" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) -"rwP" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"rwQ" = ( +"ojC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"ojH" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 }, -/area/almayer/living/grunt_rnr) -"rwU" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Spare Restraints"; - req_one_access_txt = "3" +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ojR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 1; - icon_state = "red" + name = "\improper Computer Lab"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/processing) -"rxg" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"ojU" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 }, -/area/almayer/engineering/lower_engineering) -"rxh" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ojW" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 }, -/area/almayer/command/lifeboat) -"rxx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 }, -/area/almayer/engineering/upper_engineering/port) -"rxF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"rxS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 }, -/area/almayer/living/grunt_rnr) -"ryk" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 }, -/area/almayer/engineering/upper_engineering) -"ryl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ojZ" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"ryx" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"okf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"okh" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"okB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"okM" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"okQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"ryy" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ola" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"oli" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"oln" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/living/basketball) -"ryz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"olD" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"olQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/command/cic) +"olT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/cargo_arrow, /area/almayer/squads/charlie) -"ryA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"rzQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - name = "Autopsy"; - req_access_txt = "25"; - req_one_access = null +"olU" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"omh" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"omo" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 }, -/area/almayer/medical/morgue) -"rzR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"omB" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"omE" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"omR" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ona" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"ons" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"rzS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/lower_engineering) -"rzZ" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/shipboard/brig/surgery) -"rAe" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"onu" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"onF" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"onL" = ( +/turf/open/floor/almayer/red/southeast, /area/almayer/shipboard/port_missiles) -"rAf" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"onU" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"rAw" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"ooe" = ( /obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"oof" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/prop/magazine/book/starshiptroopers{ +/obj/structure/sign/safety/suit_storage{ pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" + pixel_y = -32 }, -/area/almayer/living/starboard_emb) -"rAD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "officers_mess"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ooy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ooM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"ooQ" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"ooX" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/turf/open/floor/plating, -/area/almayer/living/captain_mess) -"rAE" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/hallways/aft_hallway) -"rAI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_emb) +"opn" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"opo" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"opu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/starboard_hallway) -"rAQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"opz" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"opG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"opM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"oqb" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oqf" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"oqA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/area/almayer/hull/lower_hull/l_m_p) -"rAR" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oqC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"oqE" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/navigation) -"rBb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"oqN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"oqO" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"oqU" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"rBk" = ( -/obj/structure/window/reinforced{ - dir = 8 +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"orh" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"oru" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"orC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"orD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"orN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; pixel_y = 32 }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"orQ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_point_defense) +"orU" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"orW" = ( +/turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"rBx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"rBM" = ( +"osq" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"osw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/alpha) -"rBZ" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/lifeboat) -"rCa" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"osG" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"osV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/operating_room_three) -"rCg" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/research/containment/corner4, +/area/almayer/medical/containment/cell) +"osZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ote" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"rCx" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"oth" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"otu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" }, -/obj/structure/platform_decoration, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"otz" = ( /obj/structure/bed/chair{ - can_buckle = 0; dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"otN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"otP" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/aft_hallway) +"ouh" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oum" = ( /obj/structure/bed/chair{ - can_buckle = 0; + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oun" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"our" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"ouB" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 2; - pixel_y = 6 + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/hallways/hangar) -"rCG" = ( -/obj/structure/sign/safety/ammunition{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"ouI" = ( +/obj/structure/sign/safety/restrictedarea{ pixel_x = 32; - pixel_y = 7 + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"ouN" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 }, -/area/almayer/shipboard/brig/main_office) -"rCI" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ouU" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, /obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"ovh" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = -24 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"ovj" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"ovt" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ovv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/living/offices) -"rCJ" = ( -/obj/structure/platform{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"rDf" = ( -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"rDj" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"rDE" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"rDW" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_p) -"rDZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"ovQ" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ovV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 }, -/area/almayer/shipboard/weapon_room) -"rEe" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"owv" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 }, -/area/almayer/hallways/starboard_hallway) -"rEi" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"owy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/cryo_cells) -"rEm" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"owI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_m_p) -"rEt" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"owN" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_a_s) -"rEC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"rEK" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/grass, /area/almayer/living/starboard_garden) -"rFd" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"rFf" = ( -/obj/structure/disposalpipe/segment{ +"owR" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"owU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"oxs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/cichallway) -"rFG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"rFS" = ( -/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) -"rFU" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/phone_base/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"oxv" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"oxw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) }, -/area/almayer/hallways/repair_bay) -"rGg" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"oxx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/engineering/engine_core) -"rGq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"oxJ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"oxN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"oxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hallways/port_hallway) -"rGr" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"oxR" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/living/briefing) +"oxS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "W" }, -/area/almayer/medical/hydroponics) -"rGs" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oyc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engine_core) -"rGG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha_bravo_shared) -"rGI" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"rGN" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"oyi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/lifeboat_pumps/north2) -"rGV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"oyk" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"oyr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/command/cichallway) -"rGW" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"oyA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/squads/charlie_delta_shared) -"rHJ" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"rHL" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/area/almayer/maint/hull/lower/l_m_s) +"oyO" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 4 }, -/area/almayer/lifeboat_pumps/south2) -"rHM" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ozg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"ozm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/squads/charlie) -"rHO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ozp" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"ozw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 10; + pixel_y = -4 }, -/area/almayer/hallways/stern_hallway) -"rHT" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"ozy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/operating_room_two) -"rHV" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"ozD" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"ozK" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"rId" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ozP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"ozS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"ozU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"rIu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"ozW" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oAd" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/sink{ + pixel_y = 24 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"oAj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oAk" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/area/almayer/hallways/aft_hallway) -"rIx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 }, -/area/almayer/living/grunt_rnr) -"rIF" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"oAl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + dir = 5 }, -/area/almayer/hallways/vehiclehangar) -"rIH" = ( -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 1; - layer = 3 + icon_state = "pipe-c" }, /obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/living/basketball) -"rIK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"rIR" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"oAs" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/engineering/lower_engineering) -"rIV" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"oAu" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "green" + pixel_x = -24 }, -/area/almayer/squads/req) -"rJb" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"oAL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_f_s) -"rJe" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"oAQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/shipboard/brig/execution) -"rJl" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"oAU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"oAZ" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/aft_hallway) +"oBk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"rJx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oBv" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"rJC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"oBz" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"oBQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rJL" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/east, +/area/almayer/living/starboard_garden) +"oCb" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"oCe" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"oCf" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/almayer/command/telecomms) -"rJP" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oCg" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oCh" = ( +/obj/structure/shuttle/part/dropship2/left_inner_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"oCA" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 +/obj/structure/platform{ + dir = 8 }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"oCB" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/cic_hallway) -"rJV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oCH" = ( +/obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"rJY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oCI" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"oCL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/vending/snack, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"rKb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"oCM" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/command/cichallway) -"rKu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"rKE" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"rKM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"rKN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/living/starboard_emb) +"oCT" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"oDe" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oDh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"rKQ" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oDi" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rLc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - pixel_y = 17 +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/obj/structure/machinery/computer/cameras/almayer_network{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"oDj" = ( +/obj/structure/pipes/standard/cap/hidden{ dir = 4 }, -/obj/structure/machinery/computer/card{ +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"oDq" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - pixel_y = -16 + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"oDQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/main_office) -"rLj" = ( -/obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"rLk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/area/almayer/hallways/lower/starboard_midship_hallway) +"oDU" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"oDY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/lifeboat_pumps/south1) -"rLr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"rLy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"oEt" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"rLB" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"oEz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"oED" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"oEG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"oEH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/lobby) +"oEK" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oEV" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"oEW" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 14"; + buildstate = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"oFd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"rLC" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, +"oFh" = ( /obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "sterile_green" + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_x = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/medical/containment) -"rLK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFp" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rLQ" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"oFq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oFs" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/area/almayer/engineering/lower_engineering) -"rLV" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"oFC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_hallway) -"rLX" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oFD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/hallways/stern_hallway) -"rMF" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"oFG" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/lower_engineering) -"rMG" = ( -/obj/item/tool/wet_sign, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"rMH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"rMM" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rMO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"rMQ" = ( -/obj/structure/bed/chair/wheelchair{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"rMS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"oGb" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"oGl" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"oGs" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"oGt" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/flash, +/obj/item/device/binoculars, /turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"rNa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 +/area/almayer/engineering/ce_room) +"oGL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"oGX" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Cell 4"; - name = "\improper Courtyard Divider" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"oHg" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"oHh" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"oHm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"oHq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"oHB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) -"rNd" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"rNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oHN" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"oIb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"oIg" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"oIn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"oIo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"oIs" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"oIJ" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"rNk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"rNl" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" + icon_state = "NW-out"; + layer = 2.5 }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"oIO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"oIR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/operating_room_four) -"rNm" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"oJb" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oJe" = ( +/obj/structure/machinery/processor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"oJm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/delta) -"rNs" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating, +/area/almayer/shipboard/brig/evidence_storage) +"oJr" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oJB" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 }, -/area/almayer/hull/lower_hull/l_f_s) -"rNt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"oJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"rNF" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/area/almayer/hallways/hangar) +"oJF" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"oJG" = ( +/obj/structure/machinery/computer/demo_sim{ + dir = 4; + pixel_x = -17; + pixel_y = 8 }, -/area/almayer/lifeboat_pumps/south1) -"rNK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = -8 }, /turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"rNR" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/starboard_atmos) -"rNW" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" +/area/almayer/engineering/lower/workshop/hangar) +"oJH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"oJI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oKb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"oKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"rNZ" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) +"oKn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" }, -/area/almayer/medical/lower_medical_lobby) -"rOf" = ( -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"rOi" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"oKr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oKu" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"oKw" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = -6 }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = 4; + pixel_y = 8 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 +/obj/item/toy/dice/d20, +/obj/item/toy/crayon/blue{ + pixel_x = -7; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/area/almayer/lifeboat_pumps/north1) -"rOs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"oKV" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"rOu" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_s) -"rOD" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"oKZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"rOF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"rOQ" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"rOU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"oLb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"rPb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - layer = 3.1; - pixel_y = 4 +"oLd" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"oLg" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"rPg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"rPl" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/engineering/ce_room) +"oLx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/boonie{ + pixel_x = 2; + pixel_y = 7 }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 +/obj/item/trash/popcorn, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oLE" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"oLK" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) -"rPo" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"oMl" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"oMx" = ( +/obj/structure/window/reinforced{ dir = 4; - icon_state = "orangecorner" + health = 80 }, -/area/almayer/engineering/lower_engineering) -"rPq" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"oMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oMC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"oMI" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/operating_room_four) -"rPD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"oMK" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "80" }, -/area/almayer/hallways/port_hallway) -"rPK" = ( -/obj/structure/bed/chair/comfy/delta{ +/area/almayer/hallways/hangar) +"oMN" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"oMR" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"rQd" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"oMZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/command/securestorage) -"rQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_f_s) -"rQh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/area/almayer/engineering/lower_engineering) -"rQk" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"oNg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oNo" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" }, -/area/almayer/living/captain_mess) -"rQt" = ( -/obj/structure/toilet{ - pixel_y = 16 +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"oNp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/window/reinforced{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"oNu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"oNv" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - health = 80 + name = "ship-grade camera" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"rQy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oNC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"rQC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" - }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"oNL" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "sterile_green_corner" + id_tag = "mining_outpost_pump" }, -/area/almayer/medical/medical_science) -"rQI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"rQQ" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"rQR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ +/area/almayer/engineering/lower/workshop/hangar) +"oNQ" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"oNX" = ( +/obj/structure/machinery/firealarm{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"oOr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_s) -"rQS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"oOy" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"rQW" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"rRa" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oOF" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_s) -"rRv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"oOO" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"oPh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ dir = 4 }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Dropship Remote Control Console"; + shuttleId = "dropship_alamo"; + disabled = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"oPk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"rRE" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"oPF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 }, -/area/almayer/command/cic) -"rRQ" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +/obj/structure/sign/safety/medical{ + pixel_x = -17 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"rRX" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/almayer/living/briefing) +"oPG" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/living/cryo_cells) -"rSc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/cryo_cells) -"rSd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"rSo" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/book/spacebeast, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ dir = 1; - icon_state = "red" + name = "\improper Combat Information Center" }, -/area/almayer/shipboard/brig/evidence_storage) -"rSr" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"oPJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, -/area/almayer/engineering/upper_engineering) -"rSx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"rSL" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen2"; - name = "\improper Kitchen Shutters" +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"rSN" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"oPN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 + icon_state = "SW-out"; + layer = 2.5 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"oPT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/brig/cryo) -"rSP" = ( -/obj/structure/machinery/conveyor_switch{ - id = "gym_1"; - name = "treadmill switch" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer, -/area/almayer/living/gym) -"rSR" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/command/computerlab) +"oPV" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"rSZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/north1) -"rTc" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"rTi" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"oQe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"oQv" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "37" }, -/area/almayer/living/gym) -"rTB" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 +/area/almayer/hallways/hangar) +"oQI" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"oQS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/engineering/engineering_workshop) -"rTK" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/area/almayer/shipboard/port_point_defense) -"rTN" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"oRh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oRn" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/sign/safety/security{ - pixel_x = -16 +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"oRo" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"oRC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"rTU" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"oRP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"oRT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"rTY" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"oRU" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_umbilical) -"rUe" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hull/lower_hull/l_f_s) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"oSb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/delta) -"rUn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"oSg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"oSm" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"oSo" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/execution) +"oSs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/auxiliary_officer_office) -"rUp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oSw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"oSx" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/weapon_room) -"rUv" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 2"; - name = "Quarters Shutters"; - pixel_x = -25; - pixel_y = 23; - req_access_txt = "200" +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"oSB" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 2"; + name = "Cell 2" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/two{ + pixel_x = -17 }, -/area/almayer/hull/upper_hull/u_m_p) -"rUA" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rUI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/shipboard/brig/cells) +"oSE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"oSH" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/area/almayer/hallways/aft_hallway) -"rUR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"oSJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/plating, +/area/almayer/squads/req) +"oSL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"oTh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"oTt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oTA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"oTJ" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 }, -/area/almayer/command/cichallway) -"rUX" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"oTM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"rVy" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, +/area/almayer/medical/hydroponics) +"oTS" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oTY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oUb" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"rVH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"oUg" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"rVN" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"oUk" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/debark_lounge{ +/obj/structure/sign/safety/high_voltage{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oUp" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/command/lifeboat) -"rVV" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) -"rVW" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"oUy" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"oUF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"oUG" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oUW" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"oUZ" = ( +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"rWh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/engineering/lower/workshop) +"oVn" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"oVy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"rWl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"oVA" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/briefing) +"oVG" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, /area/almayer/shipboard/weapon_room) -"rWq" = ( -/obj/structure/disposalpipe/segment{ +"oVK" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oVL" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_two) +"oWa" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"oWd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oWe" = ( +/obj/effect/landmark/start/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"oWs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oWB" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"oWC" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"oWY" = ( /turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"rWH" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/shipboard/brig/cic_hallway) +"oXc" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"oXf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"oXu" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"rWK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"oXz" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"oXK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"oYu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/command/cic) -"rWV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"oYI" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"oYK" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"oZg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"oZn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"oZA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"rXr" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"oZD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/alpha) -"rXA" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"oZL" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + negdir = 4; + posdir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"rXG" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"oZN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oZT" = ( +/obj/structure/largecrate/supply, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"rXN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/vehiclehangar) -"rXS" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/area/almayer/maint/hull/upper/u_f_s) +"oZV" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/medical/lower_medical_lobby) -"rXT" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/upper_hull/u_m_p) -"rYh" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hull/upper_hull/u_a_p) -"rYi" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pal" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"pau" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/almayer/engineering/upper_engineering/port) -"rYj" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"paD" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"paY" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/bed/chair{ +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pba" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"pbe" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" }, -/area/almayer/hallways/hangar) -"rYk" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"pbl" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"pbX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"rYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"rYH" = ( -/obj/structure/pipes/vents/pump, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/living/basketball) -"rYK" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/area/almayer/command/cichallway) +"pcc" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"pch" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pcq" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"pcs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"pcL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "plating_striped" + name = "ship-grade camera" }, -/area/almayer/squads/req) -"rYR" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"pcM" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/item/toy/dice/d20, +/obj/item/toy/deck/uno, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_medbay) -"rZj" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pcZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/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/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; +/obj/item/folded_tent/med{ + pixel_x = -8; pixel_y = 14 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"pde" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"rZM" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; +"pdf" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"pdn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"pdw" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"pdA" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pdC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"pdE" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/status_display{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"pdF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/lifeboat) -"rZR" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/area/almayer/hallways/hangar) -"rZY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"pdV" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"sag" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +"pdW" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pee" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"pel" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" }, -/area/almayer/hull/upper_hull/u_f_p) -"saj" = ( +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"peC" = ( +/obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"peJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"peR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/aft_hallway) +"peZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/medical/upper_medical) -"sal" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"pfc" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 }, -/area/almayer/engineering/upper_engineering) -"saF" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/cryo{ + pixel_x = 21; + pixel_y = 27 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"pff" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"saX" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"sba" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/area/almayer/command/lifeboat) +"pfr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/living/offices) -"sbe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower) +"pfx" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"pfz" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"pfD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"pfR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/medical/lower_medical_lobby) -"sbg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"pfX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"pga" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie_delta_shared) +"pgd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"sbi" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution) -"sbp" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"sby" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/area/almayer/command/cichallway) +"pgf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"sbz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/atm{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pgm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"pgt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"pgv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/processing) -"sbN" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"pgS" = ( /obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/squads/bravo) -"sbR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/pilotbunks) -"sbS" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"pgT" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pha" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 + icon_state = "S" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"scb" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering) -"sci" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"sco" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"scG" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"phd" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"phh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"phm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"php" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/almayer/medical/lower_medical_lobby) -"scR" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"phB" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/medical/lockerroom) -"scV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"phI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pis" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"piu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/structure/phone_base/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig CMP's Office"; + pixel_x = 15 }, -/area/almayer/shipboard/brig/general_equipment) -"sdf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"piU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"pje" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"pjj" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"pjk" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 }, -/area/almayer/hallways/vehiclehangar) -"sdr" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"pjl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/living/gym) -"sdt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pjn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/hangar) -"sdu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"pjA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/area/almayer/engineering/upper_engineering) -"sdA" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pjE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"sdD" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"pjU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"sdM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/living/bridgebunks) -"ses" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"pjW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"pjX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/port_missiles) -"sev" = ( -/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"pky" = ( /turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"sew" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/living/cryo_cells) -"seC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"pkG" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/hull/upper_hull/u_a_p) -"seL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/obj/item/bedsheet/brown{ + layer = 3.1 }, -/obj/item/tool/wrench, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"seZ" = ( -/turf/open/floor/almayer/research/containment/corner{ +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"pkM" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ dir = 4 }, -/area/almayer/medical/containment/cell) -"sfc" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"pkO" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/medical/lockerroom) -"sfm" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"pkR" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"pkU" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"pkY" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"plj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"plp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"plz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"plQ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pmw" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"pmC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"pmN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/hull/upper_hull/u_f_p) -"sfx" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/platform{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"pmV" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"pmY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"sfF" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pna" = ( +/obj/docking_port/stationary/emergency_response/external/port5, +/turf/open/space/basic, +/area/space) +"pnm" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"sfH" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 14"; - buildstate = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/engineering/engine_core) -"sfQ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pnR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/shipboard/starboard_missiles) -"sfZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"pnV" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"pnW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"sgk" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"pom" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"pon" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/grunt_rnr) -"sgo" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"sgC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"sgG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/squads/alpha) -"sgL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 +"poM" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"sgQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 2; - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/processing) -"sgZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"shi" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/area/almayer/squads/delta) -"shv" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"poS" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"poT" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"ppp" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/engineering/upper_engineering) -"shE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/magazine/dirty, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"shH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/hull/upper_hull/u_m_p) -"shL" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices) -"shX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/machinery/shower{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"sio" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"ppO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ppW" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"pql" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/engine_core) -"siz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pqu" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/area/almayer/living/captain_mess) -"siY" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"pqx" = ( /obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 + pixel_x = 32; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/sign/safety/food_storage{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"pqW" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "43" }, -/area/almayer/engineering/engineering_workshop/hangar) -"sjC" = ( -/obj/structure/shuttle/part/dropship2/nose_front_left, -/turf/open/floor/plating, /area/almayer/hallways/hangar) -"sjH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +"pqX" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/command/cichallway) -"skx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"pra" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"skA" = ( +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"prc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/lifeboat_pumps/south2) -"skL" = ( -/turf/open/floor/almayer, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/charlie) -"slI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/briefing) -"slM" = ( +"prf" = ( +/turf/closed/wall/almayer, +/area/almayer/living/bridgebunks) +"pri" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"prB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"prJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/living/grunt_rnr) -"slP" = ( -/obj/structure/prop/invuln/overhead_pipe{ +/obj/structure/machinery/firealarm{ dir = 4; - pixel_x = -14; - pixel_y = 13 + pixel_x = 24 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"slR" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"prU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/req) -"smg" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"prY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"psn" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/engineering/laundry) -"smh" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/morgue) -"smz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"smB" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"pso" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"psv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"psz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/area/almayer/hallways/hangar) -"smC" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"psN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/operating_room_one) -"smJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"smM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"psQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/shipboard/brig/surgery) -"smS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"psR" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"psS" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"psX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"psY" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room) +"pto" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/area/almayer/hallways/aft_hallway) -"smV" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/device/camera{ + pixel_x = 7 }, -/area/almayer/engineering/upper_engineering) -"snl" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 23 +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ptp" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 2; - pixel_y = -4 +/obj/item/stack/cable_coil{ + pixel_x = 7 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"snw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" }, +/turf/open/floor/plating, /area/almayer/hallways/hangar) -"snI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"ptu" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"ptx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/shipboard/brig/main_office) -"snX" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"ptz" = ( +/obj/structure/sink{ + pixel_y = 32 }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"ptA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ptF" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 }, -/area/almayer/hull/lower_hull/l_f_p) -"soa" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/minihoe{ + pixel_x = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"som" = ( -/obj/structure/sign/safety/security{ - pixel_x = -16 +/obj/item/tool/minihoe{ + pixel_y = -4 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sop" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"sox" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"ptU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/living/basketball) -"soN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"soT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"ptY" = ( +/obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"soX" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"spe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"spq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, -/area/almayer/squads/charlie) -"spt" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"spy" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"spT" = ( +/area/almayer/maint/hull/upper/u_m_s) +"pul" = ( /obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"pur" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"pus" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"sqd" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/almayer/engineering/upper_engineering/starboard) -"sqf" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 }, /obj/structure/sign/safety/fire_haz{ - pixel_y = -32 + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"sqv" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"puy" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/shipboard/sea_office) -"sqB" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"puE" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"puS" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"puX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"pvd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/squads/bravo) -"sqC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"sqL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pvn" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + pixel_x = 8; + pixel_y = -16 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/hallways/hangar) -"sqM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ +"pvo" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"pvt" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 }, -/area/almayer/squads/charlie) -"sqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"pvG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"pvL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"pvP" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 }, -/area/almayer/medical/medical_science) -"srd" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"pvZ" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"srh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"srz" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/area/almayer/command/lifeboat) +"pwc" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"pwt" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"pww" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"pwJ" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/gym) -"srS" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"pwP" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"pxz" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pxB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pxQ" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/processing) +"pxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pya" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/hangar) -"srT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pyc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"srY" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, /area/almayer/hallways/hangar) -"ssv" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"pyR" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/medical/operating_room_three) -"ssV" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_s) -"stb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"pzc" = ( +/obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"sty" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/lifeboat_pumps/north1) +"pzh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ dir = 4 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"pzk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"pzn" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pzv" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"pzy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pzD" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"pzX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pAi" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/stern_hallway) -"stD" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"pAj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"pAn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"pAz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"pAC" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/hydroponics) -"stH" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"pAI" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"pAQ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "56" }, -/area/almayer/hallways/port_hallway) -"stN" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/almayer/hallways/hangar) +"pBp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"stQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pBB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"sub" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"pBG" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"pBM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"suh" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"pBR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pBV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 }, -/area/almayer/living/grunt_rnr) -"suk" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"pBY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"pBZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hull/upper_hull/u_f_s) -"sul" = ( -/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/squads/bravo) -"sum" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/shipboard/brig/cells) +"pCa" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/gym) -"sun" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"pCq" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/living/grunt_rnr) -"suo" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/hangar) -"suE" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"suJ" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/cic) -"suP" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"pCs" = ( +/obj/item/tool/crowbar/red, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"pCv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pCC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/telecomms) -"sva" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_p) -"svg" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"svi" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"svj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"pCE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"pCR" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 }, -/area/almayer/hallways/aft_hallway) -"svA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" + name = "Telecommunications"; + req_access_txt = "6" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/main_office) -"svC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"pCV" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"svK" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"pCY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"pDb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"pDk" = ( +/obj/structure/sign/poster{ pixel_x = 32 }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"pDD" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pDF" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_s) -"svR" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"pDQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/medical/upper_medical) -"svU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"pEn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/shipboard/brig/main_office) -"svY" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "69" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pEr" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/hallways/hangar) -"swi" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"pEL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/photocopier{ - anchored = 0 +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"pFb" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"pFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/poster{ - desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; - icon_state = "poster14"; - name = "propaganda poster"; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"pFk" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"swj" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pFE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" }, -/area/almayer/squads/bravo) -"swC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pFF" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"swD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"pFJ" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"swJ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile" +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"pFM" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"pFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"pFS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/area/almayer/medical/upper_medical) -"swR" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/item/clipboard{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/item/tool/pen{ + pixel_x = 12 }, -/area/almayer/medical/operating_room_two) -"sxb" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster/propaganda{ + pixel_y = 34 }, -/area/almayer/hull/upper_hull/u_a_p) -"sxc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"sxr" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"pGk" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"pGp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/bravo) -"sxx" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"sxB" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/squads/bravo) -"sxS" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"pGw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"sxW" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pGy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/commandbunks) +"pGJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"pGK" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"pGV" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"syy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pHi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/upper_hull/u_f_p) -"syY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"pHx" = ( +/obj/structure/machinery/door_control{ + id = "dropship_normandy"; + name = "Dropship Lockdown"; + normaldoorcontrol = 3; + pixel_y = -19; + req_one_access_txt = "3;22"; + throw_range = 15 }, -/obj/structure/machinery/computer/emails{ +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/almayer/hallways/hangar) +"pHy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/living/offices) -"szl" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"pHL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" }, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"pHP" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/area/almayer/command/cic) -"szu" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"pHS" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"pIh" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pIl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"pIt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/area/almayer/hallways/hangar) -"szQ" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"pIu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/almayer/hull/upper_hull/u_a_p) -"sAa" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sAf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/squads/req) -"sAs" = ( -/obj/structure/barricade/metal{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"pIv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"pIz" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"sAw" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"sAy" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 +/area/almayer/hallways/lower/vehiclehangar) +"pIB" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"pIF" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/medical/medical_science) +"pIG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"pIS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/phone_base{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"pIW" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/engineering/ce_room) -"sAz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"pJg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"pJk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/command/telecomms) -"sAL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"sAT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"sBa" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"pJr" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 }, -/area/almayer/living/bridgebunks) -"sBc" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/obj/structure/bedsheetbin{ - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"pJy" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/book/spacebeast, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/evidence_storage) +"pJD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pJH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"pJK" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "98" }, -/area/almayer/living/port_emb) -"sBd" = ( +/area/almayer/hallways/hangar) +"pJS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/engineering/engineering_workshop) -"sBl" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"pJV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/device/mass_spectrometer{ + pixel_x = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"sBp" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pKc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"pKk" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 }, -/area/almayer/squads/req) -"sBt" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"pKJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"pKR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"sBG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pLg" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"pLi" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"pLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/gym) -"sBM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/shipboard/brig/main_office) -"sBQ" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/engineering/engine_core) -"sBV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pLB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/loadout/co2_knife{ - pixel_x = 8; - pixel_y = 9 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"pLH" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"pLV" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"pLY" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/grunt_rnr) -"sBX" = ( -/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"sCg" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"sCj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_m_p) +"pMi" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/port_umbilical) -"sCl" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"pMq" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "82" }, -/obj/structure/platform{ - dir = 8 +/area/almayer/hallways/hangar) +"pMu" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"sCv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/req) +"pMz" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/living/briefing) -"sCC" = ( -/obj/structure/platform{ +/obj/structure/window/reinforced{ dir = 8; - layer = 2.7 + layer = 3.3; + pixel_y = 4 }, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 8 +/obj/item/bedsheet/yellow{ + layer = 3.2 }, -/area/almayer/living/briefing) -"sCZ" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" +/obj/item/bedsheet/yellow{ + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"pMB" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pMC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/aft_hallway) +"pME" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/area/almayer/hallways/stern_hallway) -"sDd" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"pMO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/stack/sheet/metal{ - amount = 50 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pMY" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pNb" = ( +/obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ - dir = 8; name = "ship-grade camera" }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"pNv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/bridge{ + pixel_y = 32 }, -/area/almayer/engineering/engine_core) -"sDh" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"sDj" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"pNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"pNC" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"pND" = ( +/turf/closed/wall/almayer, +/area/almayer/living/basketball) +"pNE" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/lifeboat_pumps/north1) +"pNJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/hull/lower_hull/l_f_p) -"sDq" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"pNQ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"pNU" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"pNZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"pOc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/brig/armory) -"sDY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"pOf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"pOg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"pOq" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/squads/req) -"sDZ" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"pOv" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pOA" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"pPd" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "83" }, -/area/almayer/squads/req) -"sEc" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 +/area/almayer/hallways/hangar) +"pPf" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/general_equipment) +"pPC" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/command/cic) -"sEg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"pPE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pPH" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/shipboard/navigation) -"sEj" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"pQi" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pQr" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) -"sEr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pQA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"pQC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pQF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + dir = 2; + name = "Brig"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"pQK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"pQX" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_medbay) -"sEB" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi"; - name = "\improper Umbillical Airlock" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) +"pRc" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_emb) +"pRd" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"pRe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/engineering/upper_engineering/notunnel) -"sEE" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"sEF" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_f_s) -"sEJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/almayer/living/grunt_rnr) +"pRf" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pRw" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"pRA" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/hull/lower_hull/l_m_s) -"sEP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"pSb" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/starboard_garden) +"pSh" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"pSj" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"pSD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"pSH" = ( +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "cargo_arrow" + icon_state = "pipe-c" }, -/area/almayer/squads/charlie) -"sEY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"sFf" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"pSI" = ( +/obj/effect/attach_point/electronics/dropship2{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/shuttle/part/dropship2/transparent/inner_left_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"pSP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/squads/charlie) -"sFr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pSQ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"sFs" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 + dir = 1 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"pTh" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"pTC" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"sFP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/plasticflaps, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hallways/hangar) -"sGj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer, +/area/almayer/squads/req) +"pTG" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"pTI" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper) +"pTY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"pUm" = ( +/obj/structure/sign/prop1{ + pixel_x = -32; + pixel_y = 2 }, -/obj/structure/sign/safety/fire_haz{ +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"pUn" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ pixel_x = 15; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"pUw" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pVu" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/repair_bay) -"sGt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pVy" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"pVC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) +"pVD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/area/almayer/medical/containment) -"sGD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/living/port_emb) -"sHc" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"pVF" = ( /obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 + pixel_x = -17 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"pVL" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/area/almayer/hallways/port_hallway) -"sHn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pVM" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "63" }, -/area/almayer/shipboard/starboard_missiles) -"sHp" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/hangar) +"pWm" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"pWv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/alpha) -"sHz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pWA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"pWH" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/starboard_garden) +"pXf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"pXg" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 }, -/area/almayer/hull/lower_hull/l_f_s) -"sHD" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"pXl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"pXm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/engineering/engineering_workshop) -"sHN" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"pXD" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/squads/alpha) -"sHS" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"pXI" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"pXS" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"pXW" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"pYc" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"pYi" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"pYm" = ( +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"pYn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"pYB" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/command/cichallway) -"sHY" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/aft_hallway) +"pYE" = ( +/obj/structure/toilet{ + dir = 1 }, -/obj/item/clipboard{ - pixel_x = 12 +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/window/tinted{ + dir = 1 }, +/turf/open/floor/prison/kitchen, /area/almayer/engineering/upper_engineering/port) -"sIs" = ( +"pYK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"pYR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"pYS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "blue" +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/area/almayer/squads/charlie_delta_shared) -"sIx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"pYZ" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"pZj" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"pZk" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"pZG" = ( /obj/structure/machinery/firealarm{ - dir = 1; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"sIy" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"pZZ" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 }, -/area/almayer/living/pilotbunks) -"sIH" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2 +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"sJb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"qam" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/starboard_garden) +"qaq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qat" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"qav" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" }, -/turf/open/floor/almayer{ +/area/almayer/medical/containment/cell/cl) +"qax" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ dir = 1; - icon_state = "sterile_green_side" + name = "\improper Brig" }, -/area/almayer/medical/containment) -"sJh" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"qaG" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qaT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"qaZ" = ( +/obj/structure/bed/chair/office/dark{ dir = 8; - icon_state = "red" + layer = 3.25 }, -/area/almayer/shipboard/brig/lobby) -"sJl" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"qbj" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"sJo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/living/briefing) -"sJp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"sJq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qbu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"sJv" = ( -/obj/structure/sign/poster, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"sJA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"sJF" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"sKc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"sKh" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" + icon_state = "W" }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qbB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, +/turf/open/floor/almayer/mono, /area/almayer/squads/req) -"sKk" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer{ - icon_state = "cargo" +"qbE" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/area/almayer/living/cryo_cells) -"sKp" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"qco" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/area/almayer/medical/operating_room_four) -"sKA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"sKS" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"sKX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"sLa" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south2) -"sLc" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"sLy" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/aft_hallway) -"sLA" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"sLB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + id_tag = "tc01"; + name = "\improper Treatment Center" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"qcs" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"qcO" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"qcZ" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 }, -/area/almayer/engineering/engineering_workshop) -"sLQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/frame/light_fixture/small{ + pixel_y = 17 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"sLT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"qdg" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/gym) -"sMc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/aft_hallway) +"qdm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qdv" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_f_s) -"sMh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qdy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qdE" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"qdG" = ( +/obj/structure/ladder{ + height = 2; + id = "med1" }, -/area/almayer/medical/lockerroom) -"sMi" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/area/almayer/hallways/hangar) -"sMk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/squads/alpha) -"sMv" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; +/obj/structure/sign/safety/refridgeration{ + pixel_x = -17; pixel_y = 7 }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"qdS" = ( +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"qeo" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qeC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/living/grunt_rnr) -"sMM" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"qeF" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"qeM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qeT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"sMN" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qeW" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"qeX" = ( +/turf/open/space, +/area/space) +"qfb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qfX" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qgg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_p) -"sMQ" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"qgm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 +/obj/item/tool/pen/blue{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"qgt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/medical/containment) -"sMT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"qgz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"qgH" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qgK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/squads/req) -"sNl" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room"; - name = "\improper Storage Shutters" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"qgL" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"sNm" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"qgR" = ( +/obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"sNs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qgV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qha" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qhb" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"sND" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"sNJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"sNP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"sNT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/command/securestorage) -"sNX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"qhe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"qhm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"qhI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, /area/almayer/living/captain_mess) -"sOl" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/beret/centcom/captain{ - color = "#4b5320"; - desc = "Dusty beret bearing the logo of the royal marines. How did this get here?"; - name = "dusty beret"; - pixel_y = -6 - }, +"qhM" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"qhX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qia" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -60934,6735 +43058,8221 @@ /obj/structure/bed{ can_buckle = 0 }, +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 + }, /obj/structure/bed{ buckling_y = 13; layer = 3.5; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"sOJ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"sOT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sPa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/item/bedsheet/red{ + layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/bedsheet/red{ + pixel_y = 13 }, -/area/almayer/command/cic) -"sPe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"qic" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"sPm" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"sPo" = ( -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"sPs" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/command/cic) -"sPC" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/living/briefing) -"sPJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/auxiliary_officer_office) -"sPO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_umbilical) -"sPS" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/containment) -"sPX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"qig" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"qii" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" }, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"sQx" = ( +/area/almayer/squads/req) +"qil" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/combat_correspondent) -"sQE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"qim" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"qiu" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"qiv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_lobby) -"sQL" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/squads/req) -"sQM" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"sQU" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"qiG" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"qiK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/cichallway) -"sRc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"qiN" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell) +"qiO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"qiT" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 }, -/area/almayer/squads/charlie) -"sRv" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/squads/delta) -"sRw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"qjc" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qje" = ( +/obj/structure/platform, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"qjg" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"qjm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"qjr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "greenfull" +/obj/item/folder/black, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/machinery/door_control{ + id = "CE Office Shutters"; + name = "CE Office Shutters"; + pixel_x = -6; + pixel_y = 18; + req_access_txt = list(); + req_one_access_txt = "1;6" }, -/area/almayer/living/offices) -"sRA" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"sSf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/area/almayer/engineering/ce_room) +"qjy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room3"; + name = "\improper Storage Shutters" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/operating_room_four) -"sSg" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"qjz" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qjC" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"qjF" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qjG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"qjK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/living/captain_mess) -"sSk" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -10; - vector_y = 96 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"qjN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"sSl" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/area/almayer/squads/charlie) +"qjU" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"qjX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/chemistry) -"sSp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 }, +/turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"sSt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/aft_hallway) -"sSB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Brig" +"qkd" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"qkj" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qkn" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"sSF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"qko" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hallways/vehiclehangar) -"sSP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"qkz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = -24 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"qkE" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"qkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"qkJ" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"qlc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/area/almayer/engineering/engineering_workshop/hangar) -"sTd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"qlk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 }, +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering/port) -"sTh" = ( -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_x = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"sTt" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +"qlC" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 }, -/area/almayer/command/cichallway) -"sTC" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"qlT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"qlX" = ( +/obj/structure/platform_decoration{ + dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"qme" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"sTQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"qmg" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/brig/main_office) -"sTX" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qmp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"qmq" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 }, -/area/almayer/shipboard/weapon_room) -"sUC" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"qms" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"qmx" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"qmN" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi"; + name = "\improper Umbillical Airlock" }, -/area/almayer/shipboard/brig/lobby) -"sUH" = ( -/turf/closed/wall/almayer, -/area/almayer/living/numbertwobunks) -"sUI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"qmW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"sUS" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"qnf" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/cryo_cells) +"qnh" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"qni" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"qnm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/shipboard/weapon_room) -"sVc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qnr" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" + dir = 1 }, -/area/almayer/shipboard/brig/general_equipment) -"sVo" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"qnA" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"qnK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"qod" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/prop/magazine/dirty/torn, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = 7; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qot" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qoO" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"qoS" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"qoY" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/medical/containment) -"sWb" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"qoZ" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"qpk" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 }, -/area/almayer/hull/upper_hull/u_a_s) -"sWm" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"qpA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"qpC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"sWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"qpH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 }, -/obj/structure/machinery/landinglight/ds2{ +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"qpO" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"qqK" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qqM" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"qqS" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/cic) +"qrc" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 }, +/turf/open/floor/almayer, /area/almayer/hallways/hangar) -"sWB" = ( +"qrB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"qrJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"qrN" = ( /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"sWC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/area/almayer/engineering/lower) +"qrQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/poster, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qrV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qrX" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/silvercorner, /area/almayer/shipboard/brig/cic_hallway) -"sWM" = ( -/obj/item/bedsheet/orange, -/obj/structure/bed{ - icon_state = "psychbed" +"qsc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30; - req_access = list(); - req_access_txt = "6" +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/aft_hallway) +"qss" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"sXe" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_port{ - dwidth = 8 +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"qsv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/space, -/area/space) -"sXt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"qsQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"sXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/area/almayer/lifeboat_pumps/north1) +"qsS" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) +"qsT" = ( +/obj/structure/sign/prop1, +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"qtc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"sXA" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sXF" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"sXI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/shipboard/port_point_defense) +"qtl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/device/radio/marine{ + pixel_x = 5; + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"qtt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie) -"sXJ" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +"qtu" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 }, -/area/almayer/hull/upper_hull/u_a_s) -"sXL" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"qtD" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cafeteria_officer) +"qtF" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"qtG" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) +"qtH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qtJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"qtN" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/floor/grass, /area/almayer/living/starboard_garden) -"sXN" = ( +"qtR" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"sXP" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"sYm" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/almayer/maint/hull/lower) +"qug" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"quk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/alpha) +"qux" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 }, -/area/almayer/squads/alpha_bravo_shared) -"sYn" = ( /obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"quM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/basketball) +"quV" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"quY" = ( /turf/open/floor/almayer, -/area/almayer/living/briefing) -"sYs" = ( +/area/almayer/squads/delta) +"qva" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"qvf" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"qvg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/processing) -"sYw" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"qvp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"sYA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"qvt" = ( +/turf/open/floor/almayer/emeraldcorner, /area/almayer/living/briefing) -"sYB" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"sYN" = ( -/obj/structure/closet/secure_closet/engineering_welding, +"qvv" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = -28 + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/area/almayer/command/telecomms) -"sYU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"sZb" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"qvC" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qvK" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "10" }, /area/almayer/hallways/hangar) -"sZi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"sZm" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"qvP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"sZw" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"qwe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"sZO" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"qwv" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"sZQ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"qwF" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"sZZ" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"qwW" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"qxe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"qxh" = ( +/turf/open/floor/almayer/orangecorner/west, /area/almayer/engineering/upper_engineering) -"taa" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 +"qxt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"qxE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"tag" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qxL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/space) -"tao" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/living/pilotbunks) -"tax" = ( -/obj/structure/platform_decoration{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"qxQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/lifeboat_pumps/north1) -"taI" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qyf" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"taR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qyk" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; pixel_y = 8 }, -/obj/item/paper_bin/uscm{ +/obj/item/trash/cigbutt/ucigbutt{ pixel_x = -6; - pixel_y = 7 + pixel_y = 9 }, -/obj/item/tool/pen{ - pixel_x = -6 +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"qyn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"qyD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/shipboard/brig/main_office) -"taT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"qyF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"qyK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"tbl" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"tbF" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"qyL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"tbN" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"qyP" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"qyV" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/upper_hull/u_a_p) -"tcb" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qzf" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"qzw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"tck" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 +/turf/open/floor/almayer, +/area/almayer/living/gym) +"qzF" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 26 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"qzL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/folder/white{ + pixel_x = 6 }, -/area/almayer/hull/lower_hull/l_m_p) -"tcm" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/tool/pen{ + pixel_y = 8 }, -/area/almayer/shipboard/brig/chief_mp_office) -"tcn" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/telecomms) -"tcs" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qzN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"qzP" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qAb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"qAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/lifeboat_pumps/north1) -"tcu" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"qAA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"tcJ" = ( -/obj/structure/supply_drop/bravo, -/turf/open/floor/plating, -/area/almayer/squads/req) -"tcP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"qAB" = ( +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"qBf" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/shipboard/brig/cic_hallway) -"tcY" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qBy" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ pixel_x = -17 }, -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"qBE" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/sign/safety/stairs{ + pixel_x = -17 }, -/area/almayer/command/computerlab) -"tdd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"qBG" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qBZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"qCb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qCd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/area/almayer/hallways/port_umbilical) -"tde" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qCg" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qCi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/shipboard/brig/cells) -"tdo" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) -"tdr" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"qCv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qCx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qCy" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/area/almayer/command/computerlab) -"tdu" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"tdw" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"qCP" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"qDp" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"qDs" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"qDF" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"qDJ" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/upper/u_a_s) +"qDM" = ( +/obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"qEx" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"tdI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"qEy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"tdK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_s) -"tdO" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"qEG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"tdP" = ( -/obj/structure/bed/chair/comfy/beige{ +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"qEH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qEU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"qFh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"tdR" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"qFA" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"qFK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"qFQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, /area/almayer/command/cichallway) -"tdW" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null +"qGb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"qGj" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/area/almayer/powered) -"ten" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qGk" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower) +"qGr" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"qGx" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"qGz" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - layer = 3.25 + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"qGA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/command/cic) -"teo" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"tet" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"qGB" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"qGG" = ( /obj/structure/machinery/door_control{ - id = "OTStore"; - name = "Shutters"; - pixel_y = 24 + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"qGI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"teV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hull/lower_hull/l_m_p) -"teY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qGL" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"qHj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qHq" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/port_hallway) -"tfc" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qHA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ dir = 8 }, -/obj/structure/ladder{ - height = 2; - id = "cicladder1" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qHC" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"qHF" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"qHL" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"tfp" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"qHV" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"qHX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"qIf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/telecomms) -"tfu" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qIi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"qIl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/general_equipment) +"qIE" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/starboard) -"tfD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/item/book/manual/evaguide, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qIP" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"qIS" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"qIW" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qIY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 }, -/area/almayer/medical/lower_medical_medbay) -"tfF" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/bedsheet/brown{ - layer = 3.1 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"qJt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"qJK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"qJM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/living/auxiliary_officer_office) -"tfJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"tfX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"qJR" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"qKj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qKn" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/aft_hallway) -"tfZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qKu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"qKC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"qLk" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/living/offices) -"tgi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"qLy" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/hallways/hangar) -"tgj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qLA" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qLC" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/req) -"tgu" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qLT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qLW" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) +"qMq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"tgy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"qMu" = ( +/obj/structure/shuttle/part/dropship2/transparent/nose_center, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"qMx" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tgD" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"qMC" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"tgE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qMH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/almayer/command/computerlab) -"tgF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/lower_hull/l_f_s) -"tgG" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qMI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"qMJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/area/almayer/medical/hydroponics) -"tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"tgO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"qNa" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 19; + req_one_access = null }, -/area/almayer/squads/req) -"tgX" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/bedsheet/brown, /turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"thf" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"thk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/shipboard/brig/chief_mp_office) +"qNp" = ( +/obj/structure/target{ + name = "punching bag" }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"qNH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"thp" = ( +/area/almayer/hallways/upper/aft_hallway) +"qNJ" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"qOb" = ( /obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"thq" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"tht" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/vehiclehangar) -"thQ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"qOc" = ( /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"tim" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/stern_hallway) -"tiy" = ( -/obj/structure/pipes/vents/scrubber{ +/area/almayer/living/briefing) +"qOe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"tiE" = ( -/obj/item/stack/catwalk, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"tiO" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/shipboard/brig/cells) -"tiU" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/shipboard/starboard_missiles) +"qOn" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/processing) +"qOy" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"tiZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; +/obj/item/stack/sheet/copper{ + amount = 20; pixel_y = 4 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; +/obj/item/stack/sheet/mineral/gold{ + amount = 3; pixel_y = 4 }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/starboard_emb) -"tjm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"tjn" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"qOz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"qOC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/hull/upper_hull/u_m_s) -"tjt" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/morgue) +"qOF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/engine_core) -"tjw" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/item/fuelCell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"tjx" = ( -/obj/structure/platform{ - dir = 4 - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"tjA" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +/area/almayer/hallways/hangar) +"qOH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" }, -/area/almayer/squads/delta) -"tjU" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"qOW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"qPd" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"qPg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 11; + pixel_y = 37; + req_access_txt = "200" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"qPi" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"qPn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/living/briefing) -"tjY" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"qPv" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"tko" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/area/almayer/hull/upper_hull/u_f_s) -"tks" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" }, /obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"qPy" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"tkA" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/squads/req) -"tkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"qPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"tkZ" = ( -/obj/structure/toilet{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliason) -"tle" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"qQn" = ( +/obj/structure/machinery/power/apc/power/west, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qQu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" }, -/area/almayer/shipboard/brig/processing) -"tlf" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"qQz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 }, -/area/almayer/command/lifeboat) -"tlp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"qQI" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"qQQ" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qRm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/port_hallway) -"tlt" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"qRC" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/medical/lower_medical_lobby) -"tlw" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"qRE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tlB" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/delta) -"tlF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"qRH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"qRM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/area/almayer/living/offices/flight) -"tlK" = ( -/obj/structure/bed/chair/office/dark, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"qRO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/device/whistle, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"tlL" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, /area/almayer/command/cic) -"tmh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 +"qSi" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"qSv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"qSx" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"qSJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/area/almayer/squads/delta) -"tmn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"qST" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/lifeboat_pumps/north1) -"tmo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"qSU" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"qTf" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"qTp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"tmq" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"qTA" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "53" }, -/area/almayer/hull/upper_hull/u_a_p) -"tmu" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 +/area/almayer/hallways/hangar) +"qTB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"qTD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/engineering/lower_engineering) -"tmD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qTI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/barricade/handrail/medical{ +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qTJ" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 }, -/area/almayer/medical/lower_medical_lobby) -"tmE" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qTR" = ( +/obj/structure/sink{ + pixel_y = 24 }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"qTT" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/squads/charlie) -"tmF" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qUb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/area/almayer/hull/upper_hull/u_f_p) -"tmM" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"tmO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qUe" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"qUn" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null }, -/area/almayer/medical/lower_medical_medbay) -"tmY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"qUv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop) -"tnb" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"qUw" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17"; + buildstate = 1 + }, +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"qUJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/stern_hallway) -"tnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"qUP" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/hull/upper/u_m_p) +"qUT" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"qUV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_f_s) -"tnd" = ( -/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"tnq" = ( /obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" + dir = 4 }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"qUX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"qVb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"qVf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"qVo" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/area/almayer/hallways/port_hallway) -"tnz" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/obj/structure/window/reinforced{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - health = 80 + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"qVD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"qVE" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "39" }, -/area/almayer/shipboard/brig/general_equipment) -"tnF" = ( +/area/almayer/hallways/hangar) +"qVM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qVY" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"qWf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"qWv" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"qWF" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/medical/hydroponics) -"tnN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"qWG" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "59" }, -/area/almayer/shipboard/starboard_missiles) -"tnP" = ( +/area/almayer/hallways/hangar) +"qWM" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"qWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qXh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"qXk" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/hull/lower_hull/l_f_p) -"tot" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/sign/safety/cryo{ + pixel_x = -17 }, -/area/almayer/shipboard/weapon_room) -"tow" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - id = "port_door" +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_m_p) +"qXA" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/area/almayer/hallways/hangar) -"toC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_lobby) -"toJ" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"qXJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"toK" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/greenfull, +/area/almayer/shipboard/brig/cells) +"qXN" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"toO" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qYC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"toX" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"qYK" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"qYO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"tpy" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"tpD" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qYR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/starboard_garden) -"tpQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"qZf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/medical/medical_science) -"tpW" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"qZo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"qZq" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"qZF" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"qZK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"qZR" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"tqd" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"tqw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"tqx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" +/area/almayer/living/gym) +"raj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/living/pilotbunks) -"tqK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 6 }, +/obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"tqN" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/squads/alpha) +"raA" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"raE" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"raL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"rbi" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"rbp" = ( /obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" }, /turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"tqO" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/area/almayer/engineering/upper_engineering/port) +"rbr" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"rbD" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rbI" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rbL" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/upper_hull/u_a_s) -"tqP" = ( -/obj/structure/sign/safety/restrictedarea{ +/obj/structure/sign/safety/terminal{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"tqQ" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"rbV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"rch" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"rck" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/command/cichallway) -"trd" = ( /obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rcm" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"rcn" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"rcu" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/execution) +"rcD" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) +"rcE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"trl" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/general_equipment) +"rcX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"tro" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_a_p) -"trG" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) +"rcY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rdg" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rdo" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"rdu" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/hull/upper_hull/u_a_p) -"trI" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"rdH" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"rdP" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rdT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rea" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"reb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/almayer/hull/lower_hull/l_a_s) -"trN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"rec" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "67" }, -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/hangar) +"ref" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"rex" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"rez" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/upper/u_f_p) +"reT" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rfc" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"trO" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"rfj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"rfm" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/living/gym) -"trZ" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"rfo" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"rfp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/almayer/medical/operating_room_two) -"tsg" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"tsu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"rfA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/lifeboat_pumps/north1) -"tsz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/platform{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rfG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rfL" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"rfO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hallways/starboard_hallway) -"tsA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rfP" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"tsP" = ( -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"rfU" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "red" - }, -/area/almayer/living/briefing) -"tsW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"tta" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_f_s) -"tto" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"rfY" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_midship_hallway) +"rgo" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"rgv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/area/almayer/medical/containment/cell/cl) -"ttz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rgB" = ( +/obj/structure/sink{ + pixel_y = 24 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"rgL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"ttI" = ( -/obj/structure/stairs{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"rgN" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Spare Restraints"; + req_one_access_txt = "3" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"rgY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/stair_clone/upper) -"ttR" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_x = 8; +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"rha" = ( +/obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"tud" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) -"tus" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"tuB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"rhf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/living/offices/flight) -"tuE" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rhh" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"rhq" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rhC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"rhH" = ( /obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 + pixel_x = 2; + pixel_y = -21 }, /obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 + icon_state = "road_edge_decal5"; + pixel_x = -2; + pixel_y = 4 }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"tuH" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ +"rhK" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ dir = 1 }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rhP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/tool/soap/syndie, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"tuT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"tuW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"tuX" = ( +/area/almayer/maint/hull/lower/l_f_p) +"rhT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rii" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/squads/delta) -"tve" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"rik" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"rip" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"riq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/bridgebunks) -"tvl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 2 + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"riz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"riA" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) }, -/area/almayer/living/offices) -"tvs" = ( -/obj/structure/machinery/cm_vending/gear/commanding_officer, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tvD" = ( -/obj/structure/machinery/computer/dropship_weapons/dropship2, -/obj/structure/phone_base/rotary{ - name = "Normandy Telephone"; - phone_category = "Dropship"; - phone_id = "Normandy"; - pixel_x = 11; - pixel_y = 16 +"riD" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_point_defense) +"riP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"riR" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rjq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 }, -/area/almayer/hallways/hangar) -"tvI" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"rjQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"tvP" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"rkk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/engineering/upper_engineering/port) -"tvQ" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/living/briefing) +"rkx" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/engineering/engine_core) -"twb" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 29 }, -/area/almayer/hull/upper_hull/u_a_p) -"twi" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 }, -/area/almayer/squads/req) -"twj" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"twp" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"rkK" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/cafeteria_officer) -"twt" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"rkL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" }, -/area/almayer/living/bridgebunks) -"twx" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 }, -/area/almayer/squads/charlie) -"twz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/phone_base{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"rkN" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null }, -/obj/item/device/binoculars, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"rkU" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"rkY" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 }, -/area/almayer/shipboard/starboard_missiles) -"twK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rlb" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"twO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"rlp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -8; + pixel_y = 2; + req_access_txt = "3" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -8; + pixel_y = 10; + req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 2; + pixel_y = 10; + req_access_txt = "3" }, -/area/almayer/hallways/hangar) -"twP" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" +/obj/structure/machinery/recharger{ + pixel_x = 6; + pixel_y = -2 }, -/area/almayer/squads/delta) -"twR" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"rlr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"rlD" = ( +/obj/structure/window/reinforced{ dir = 8; - icon_state = "green" + health = 80 }, -/area/almayer/squads/req) -"twV" = ( -/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"txf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "orange" + health = 80 }, -/area/almayer/hallways/starboard_umbilical) -"txL" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"rmc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"rmd" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, /area/almayer/living/cryo_cells) -"txM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"rmg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/surgery) -"txN" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rmh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"rmp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"txX" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"rmL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer, -/area/almayer/squads/req) -"tyu" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ +/area/almayer/hallways/upper/aft_hallway) +"rmN" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"rna" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"rnc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/briefing) -"tyG" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"rnd" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"rne" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rnk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, -/area/almayer/command/corporateliason) -"tyM" = ( -/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"tyP" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"rnn" = ( /obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"rny" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"tyY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"rnF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"tzg" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"rnJ" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/repair_bay) -"tzk" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"rnM" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"rnT" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/stair_clone/upper) -"tzs" = ( -/obj/structure/machinery/vending/cigarette{ +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"rnY" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/area/almayer/squads/delta) -"tzD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rnZ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"rom" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, -/area/almayer/medical/hydroponics) -"tzW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ros" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rot" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/squads/alpha) -"tAb" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"row" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" }, -/obj/item/bedsheet/blue{ - pixel_y = 13 +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"rpA" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"rpI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/window/reinforced{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rpT" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rqa" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/aft_hallway) +"rqd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"rqn" = ( +/obj/structure/sink{ dir = 8; - layer = 3.3; - pixel_y = 4 + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rqs" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"rqt" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/almayer/living/port_emb) -"tAf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, -/area/almayer/living/cryo_cells) -"tAm" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"tAp" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"tAw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, +/area/almayer/maint/hull/upper/u_m_p) +"rqA" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"tAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"rqG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"rqM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"rrb" = ( +/obj/structure/toilet{ + dir = 8 }, -/area/almayer/squads/charlie) -"tAO" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"rrf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"tAR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/engineering_workshop) -"tAY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console"; + shuttleId = "dropship_normandy"; + disabled = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rrh" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/area/almayer/living/offices) -"tBo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"rrk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"rrp" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rrv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, -/area/almayer/living/briefing) -"tBq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"rry" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"rrT" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"rsf" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/area/almayer/shipboard/brig/execution) -"tBJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"tCh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"rsr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"tCn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "cmp_armory"; - name = "\improper Armory Shutters" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rst" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"rsw" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, -/area/almayer/shipboard/brig/armory) -"tCs" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/lifeboat_pumps/south1) -"tCD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rsF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 }, -/area/almayer/hallways/hangar) -"tCK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"rsU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"rtn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"rtx" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/laundry) +"rtD" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"rtJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/containment) -"tCU" = ( -/obj/structure/machinery/camera/autoname/almayer{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"rtM" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - name = "ship-grade camera" + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"tDg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hull/upper_hull/u_f_s) -"tDr" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"rtO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/space/almayer/lifeboat_dock) -"tDB" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/command/corporateliason) -"tDT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"rtP" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"tEA" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"rtQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = 1 }, -/area/almayer/shipboard/brig/cryo) -"tEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"tEF" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rtV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/space) -"tEO" = ( -/obj/structure/sign/safety/fire_haz{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rug" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) -"tEZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"tFm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/north2) -"tFx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"tFG" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"tFL" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"tFU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"tFX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"tFZ" = ( +"ruB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 8 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"ruG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"tGf" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"ruM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/req) -"tGj" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ruZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 }, -/area/almayer/medical/containment/cell/cl) -"tGk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"rvi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/hull/upper_hull/u_m_s) -"tGl" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/closed/wall/almayer/research/containment/wall/purple{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tGs" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"tGB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/engineering/upper_engineering/starboard) -"tGC" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/area/almayer/medical/containment/cell) +"rvk" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"rvq" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"rvu" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/area/almayer/hallways/port_umbilical) -"tGF" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"rvB" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"tGK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"rvG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"tGM" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/hull/upper_hull) -"tGP" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"rvM" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"rvO" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" }, -/area/almayer/medical/operating_room_one) -"tGU" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"tHb" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"rvR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"rwa" = ( +/obj/structure/closet/secure_closet/brig, /obj/structure/machinery/light{ - dir = 8 + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"rwd" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/area/almayer/medical/chemistry) -"tHD" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"rwI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/aft_hallway) +"rwJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"rwN" = ( +/obj/structure/machinery/door_control{ + id = "CIC_Conference"; + name = "Conference Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/obj/structure/platform{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"rwP" = ( /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"tHF" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/area/almayer/lifeboat_pumps/south2) +"rwR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/area/almayer/shipboard/starboard_missiles) -"tHG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"rwV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rxf" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"rxu" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 }, -/area/almayer/living/pilotbunks) -"tHH" = ( -/obj/structure/bed/chair{ +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering) -"tHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 }, -/area/almayer/command/cic) -"tIp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"rxF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"rxJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"rxM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/medical/medical_science) -"tIv" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"rxR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"rye" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ryi" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) +"ryq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"ryz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"ryW" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"ryX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"tIM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"rze" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rzy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/lower_hull/l_m_s) -"tJp" = ( -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"rzJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"rzL" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"tJr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rzT" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/lifeboat) -"tJw" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/navigation) -"tJC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"tJD" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"rzV" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"rzX" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 }, -/area/almayer/hull/lower_hull/l_m_s) -"tJN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rAf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"rAk" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) -"tJW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"tKk" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"rAp" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 }, -/area/almayer/shipboard/brig/processing) -"tKq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/squads/alpha) -"tKG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"rAu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rAx" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"rAy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"rAB" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"rAD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "officers_mess"; + name = "\improper Privacy Shutters" }, -/area/almayer/squads/bravo) -"tKJ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/chief_mp_office) -"tKS" = ( -/obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north2) -"tLm" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +/area/almayer/living/captain_mess) +"rAJ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/lower_medical_lobby) -"tLp" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rAT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rAY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/living/bridgebunks) -"tLr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"rAZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/living/cafeteria_officer) -"tLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"rBb" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"rBg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/shipboard/brig/chief_mp_office) -"tLz" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"rBh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rBi" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"rBl" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"rBo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rBq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"rBr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/starboard_garden) -"tLA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rBL" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"rBQ" = ( +/turf/open/floor/almayer/bluecorner/east, /area/almayer/living/briefing) -"tLL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rBR" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rCh" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"rCk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/living/grunt_rnr) -"tLN" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"rCC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/closed/wall/almayer, -/area/almayer/command/securestorage) -"tLZ" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"rDd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"tMb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"rDn" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/living/grunt_rnr) -"tMe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/warden_office) +"rDD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"rDR" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"rEh" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"rEl" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/squads/alpha) -"tMf" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/execution) +"rEC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"rEK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/area/almayer/squads/req) -"tMA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_garden) +"rEM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"rEN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"tMG" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext"; - name = "\improper Umbillical Airlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"rEQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" }, -/area/almayer/engineering/upper_engineering/notunnel) -"tMI" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"rEV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"rFd" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"rFe" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/starboard_garden) +"rFv" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/medical/upper_medical) -"tNi" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/medical/hydroponics) -"tNn" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"tNv" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - indestructible = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/powered/agent) -"tNz" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"rFA" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/aft_hallway) +"rFC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"rFD" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"tNG" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"tNH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"rFG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 1 + dir = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"rFI" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 }, +/turf/open/floor/almayer/sterile_green_side/north, /area/almayer/medical/lower_medical_medbay) -"tNI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +"rFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"tOh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"rGo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"rGp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 }, -/area/almayer/medical/medical_science) -"tOq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rGu" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rGA" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = 8; + vector_y = 98 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rGH" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"tOw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." }, -/area/almayer/shipboard/brig/perma) -"tOB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"tOD" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"tON" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rGI" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"rGQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rGT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/hangar) -"tOS" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"tPa" = ( /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; pixel_y = 28 }, /turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"tPw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 +/area/almayer/hallways/lower/port_midship_hallway) +"rHc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rHg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"rHk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; pixel_y = 1 }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"tPx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"rHs" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"rHy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ dir = 4; - pixel_x = 12; - pixel_y = 13 + pixel_x = 24 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"tPA" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ pixel_x = 8; - pixel_y = 32 + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 }, -/area/almayer/hull/lower_hull/l_m_s) -"tPZ" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 +/obj/item/tool/pen{ + pixel_x = -6 }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"rHC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hull/lower_hull/l_f_s) -"tQg" = ( -/obj/structure/machinery/brig_cell/cell_4{ - pixel_x = -32; +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rHG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"tQp" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"rHK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/cic_hallway) -"tQF" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"tQK" = ( -/obj/structure/machinery/power/apc{ - dir = 4 +/area/almayer/hallways/lower/port_midship_hallway) +"rHU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 }, -/area/almayer/engineering/upper_engineering/starboard) -"tQY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/hull/upper_hull/u_m_p) -"tRb" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"rHW" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rIh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/cic) -"tRc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/engineering/upper_engineering) -"tRh" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"rIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/atm{ + pixel_y = 32 }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"rIW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/medical/containment/cell) -"tRu" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"rJl" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 }, -/area/almayer/powered) -"tRC" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"rJq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"rJs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"rJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/engineering/lower_engineering) -"tRG" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rJV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"rJZ" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rKp" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/shipboard/port_missiles) -"tRK" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"rKu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "SE-out" }, -/area/almayer/hallways/aft_hallway) -"tRR" = ( -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"rKx" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair{ dir = 1 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"rKC" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, /area/almayer/command/cic) -"tRS" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" +"rKM" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"rKP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/starboard_garden) +"rKQ" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"tRY" = ( -/obj/item/trash/uscm_mre, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"tSh" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell/cl) -"tSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/living/briefing) +"rLd" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"rLf" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/medical/containment) -"tSp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, /obj/structure/disposalpipe/segment{ - dir = 2; + dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"tSw" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/stair_clone) -"tSD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/living/bridgebunks) -"tSI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"rLg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 }, -/area/almayer/engineering/engineering_workshop/hangar) -"tSO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"rLj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rLn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"rLA" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"rLK" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/engine_core) -"tSX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/area/almayer/living/grunt_rnr) +"rLM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/computer/secure_data{ - dir = 8 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"rLY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rMs" = ( /obj/structure/machinery/door_control{ - id = "cic_exterior"; - name = "CIC Door Control"; + dir = 1; + id = "tc03"; + name = "Door Release"; normaldoorcontrol = 1; - pixel_y = -14; - req_one_access_txt = "19" + pixel_x = 28; + pixel_y = -23 }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rMw" = ( +/turf/open/floor/almayer/blue, /area/almayer/command/cic) -"tTd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ +"rMB" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"tTe" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"tTm" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_a_p) -"tTn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"tTp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engine_core) -"tTq" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"tTB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" + pixel_y = 32 }, -/area/almayer/command/securestorage) -"tTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"tTO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2{ +/area/almayer/maint/hull/upper/u_m_p) +"rMC" = ( +/obj/structure/bed/chair{ dir = 8 }, -/area/almayer/medical/containment/cell) -"tTP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"tTT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rMM" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rMN" = ( +/obj/structure/sign/safety/storage{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"tTW" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rMS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/hull/lower_hull/l_m_s) -"tUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"rNh" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"tUo" = ( -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_f_p) -"tUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"tUx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" + health = 80 }, -/area/almayer/hallways/stern_hallway) -"tUC" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"rNt" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"tUH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"tUP" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/alpha) -"tUU" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/command/cichallway) -"tVf" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"tVt" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/lifeboat_pumps/south1) +"rNy" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/area/almayer/hull/lower_hull/l_a_p) -"tVB" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"rNK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/squads/alpha) -"tVC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/living/offices/flight) -"tVG" = ( +"rNN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/engineering/engineering_workshop) -"tVP" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/bravo) -"tVW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"rNR" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/starboard_atmos) +"rOA" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/medical/lower_medical_lobby) -"tWf" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"tWr" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"rOF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"rPb" = ( /obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/machinery/centrifuge{ + layer = 3.1; + pixel_y = 4 }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 10; - pixel_y = 15 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"rPs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 3 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 6 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rPu" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 9 +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"rPP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rPZ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"rQb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/shipboard/brig/main_office) -"tWv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/sign/safety/west{ + pixel_y = 32 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"rQn" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"rQt" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/medical/operating_room_one) -"tWw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"rQy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/medical/upper_medical) -"tWB" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"rQN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"tWC" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"tWI" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"tWO" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"rQO" = ( /obj/structure/machinery/status_display{ pixel_y = 30 }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/command/cic) -"tWR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/living/offices) -"tWV" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rQW" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"rRk" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) +"rRB" = ( /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" }, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rRG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"rRJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"rRZ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/engineering/engine_core) -"tXg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"tXC" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"rSd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"rSn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rSz" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rSL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; - icon_state = "pipe-j2" + id = "kitchen2"; + name = "\improper Kitchen Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"rSO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"tXH" = ( -/obj/structure/stairs{ - dir = 4 +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = 8; - vector_y = 98 +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rSP" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_1"; + name = "treadmill switch" }, -/area/almayer/hallways/starboard_hallway) -"tXS" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rST" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/squads/req) -"tXV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rSV" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rSX" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"rTm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"rTN" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/obj/structure/sign/safety/security{ + pixel_x = -16 }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"rTS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"rTU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/area/almayer/medical/containment/cell) -"tXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; +/obj/structure/desertdam/decals/road_edge{ pixel_x = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"tYg" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"rUc" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30; + pixel_y = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"rUo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rUA" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rUD" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -1; + pixel_y = 11 }, -/area/almayer/hallways/hangar) -"tYq" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"rUE" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/area/almayer/squads/alpha) -"tYK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "emerald" +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"rUF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/squads/charlie) -"tYL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"rUH" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"rUT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"rUX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/cryo) -"tZn" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"tZq" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -8; - pixel_y = 22 + pixel_y = 7 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"tZu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"rVg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"rVx" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/starboard_garden) -"tZD" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"rVA" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/pilotbunks) -"tZJ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"rVI" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"tZR" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rWh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 }, -/area/almayer/living/offices/flight) -"uac" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"rWl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"rWM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"rWO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ual" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rWU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"rWV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"rXa" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"rXh" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/area/almayer/shipboard/brig/surgery) -"uaC" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"rXn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/briefing) -"uaJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"rXE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"rXG" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/area/almayer/engineering/engine_core) -"ubi" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"ubm" = ( -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"ubw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/area/almayer/lifeboat_pumps/north1) +"rXH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/squads/delta) -"ubx" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rXL" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cells) +"rXO" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rXU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"rYg" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"rYE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"rYH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"rYO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rYS" = ( +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"ubD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"rZk" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"rZu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engineering_workshop) -"ubG" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"ubM" = ( /obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/USCMtray{ + pixel_y = 7 }, -/area/almayer/engineering/upper_engineering) -"ucm" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"rZy" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"ucp" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"rZT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/command/computerlab) -"uct" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rZZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/offices) -"ucG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/squads/req) -"ucP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"saa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"sad" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 }, -/area/almayer/shipboard/brig/cryo) -"udc" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"sae" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/aft_hallway) -"udj" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"sai" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"san" = ( +/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "N" + icon_state = "W"; + pixel_x = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/hull/upper/u_m_p) +"saq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"say" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"saz" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/medical/upper_medical) -"udn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"saE" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"udr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/morgue) -"uds" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"saJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/medical/upper_medical) -"udG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"saK" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 }, -/area/almayer/living/offices) -"udP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"saM" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, -/area/almayer/shipboard/brig/main_office) -"udQ" = ( -/obj/item/stack/tile/carpet{ - amount = 20 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"saR" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 }, -/area/almayer/hull/upper_hull/u_a_p) -"uem" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"saV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"saY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"sbb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"sbd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"sbh" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/charlie_delta_shared) -"ueq" = ( -/obj/structure/machinery/light/small{ +"sbi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution) +"sbl" = ( +/obj/structure/machinery/light{ dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hull/lower_hull/l_a_s) -"uet" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"uey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"sbp" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"sbt" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 }, -/area/almayer/hallways/repair_bay) -"ueD" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 }, -/area/almayer/shipboard/brig/main_office) -"ueE" = ( -/obj/structure/machinery/prop/almayer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/aft_hallway) +"sby" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"ueF" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"sbT" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"sca" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"sci" = ( +/obj/item/bedsheet/red, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"sco" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"scz" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"scO" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"sda" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"ueH" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"ueM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"sde" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"sdj" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"sdv" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"sdy" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/aft_hallway) +"sdY" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"seb" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"sej" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"sel" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 }, -/area/almayer/hallways/aft_hallway) -"ueP" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 2; - pixel_y = 18 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"ser" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/obj/item/tool/warning_cone{ - pixel_x = -12 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"seG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"seL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"ueQ" = ( +/obj/item/tool/wrench, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"seM" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"seQ" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"sfi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/almayer/engineering/upper_engineering/port) -"ueX" = ( -/obj/structure/bed/chair{ - can_buckle = 0; dir = 4 }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"sft" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 }, -/obj/structure/bed/chair{ - can_buckle = 0; +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"sfv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"sfw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sfx" = ( +/obj/structure/stairs/perspective{ dir = 4; - pixel_x = 2; - pixel_y = 6 + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"ufc" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/platform{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sfz" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 }, -/area/almayer/shipboard/brig/cic_hallway) -"ufd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"ufe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"ufj" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"sfC" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"sfF" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"ufl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/gym) +"sfI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/hallways/starboard_umbilical) -"ufo" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sfO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/area/almayer/hull/lower_hull/l_f_s) -"ufr" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"sfW" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"ufI" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_m_p) +"sfZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/briefing) -"ufT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"sgd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"ufY" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"sgm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/space) -"ugd" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sgo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/medical{ + pixel_x = 32 }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"sgr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"ugf" = ( -/turf/open/floor/almayer{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sgs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ dir = 8; - icon_state = "orange" + pixel_y = 3 }, -/area/almayer/hallways/stern_hallway) -"ugm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"sgC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"ugs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"sgR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"ugt" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"sgT" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"sho" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"shE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/magazine/dirty, /turf/open/floor/almayer, -/area/almayer/living/port_emb) -"ugA" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 +/area/almayer/squads/charlie_delta_shared) +"shI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"shL" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices) +"sif" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 +/obj/structure/mirror{ + pixel_x = -28 }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"sik" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 }, -/area/almayer/living/port_emb) -"ugE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"siv" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"siy" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 }, /turf/open/floor/almayer, -/area/almayer/squads/charlie) -"uhu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/hallways/lower/vehiclehangar) +"siA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ dir = 8 }, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"siI" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"siJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"uhL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"uhN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/area/almayer/hallways/upper/aft_hallway) +"siV" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"uhQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"sjx" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"sjC" = ( +/obj/structure/shuttle/part/dropship2/nose_front_left, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"sjD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"sjK" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"sjL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/sign/safety/intercom{ - pixel_x = -17 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"ski" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"sku" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"skx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer, +/area/almayer/command/cic) +"skB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/lobby) -"uhZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"skC" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/starboard_emb) +"skL" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"skR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" }, -/area/almayer/living/bridgebunks) -"uiA" = ( -/obj/structure/platform{ - layer = 3.1 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"slf" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"slt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 }, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"slV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/largecrate/random/case, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"uiC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"smh" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/morgue) +"smj" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"smn" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"smz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"smG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 }, -/area/almayer/shipboard/brig/surgery) -"uiG" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"smJ" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" + icon_state = "pipe-j2" }, -/area/almayer/hallways/stern_hallway) -"uiU" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"smL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/area/almayer/command/telecomms) -"uji" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"smU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"smY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"snl" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 23 }, -/area/almayer/medical/lockerroom) -"ujs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2; pixel_y = -4 }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, /turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"ujD" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/living/basketball) +"sno" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ujM" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -17; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"snz" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"soh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"soi" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 }, -/area/almayer/hull/lower_hull/l_m_p) -"ujR" = ( -/turf/closed/wall/biodome, -/area/almayer/powered/agent) -"ujV" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_p) -"ukj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"som" = ( +/obj/structure/sign/safety/security{ + pixel_x = -16 }, -/area/almayer/hallways/aft_hallway) -"ukr" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sop" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/medical/containment/cell) -"ukC" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"soF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"soG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"soK" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"soW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"spo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"spp" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"spy" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"spA" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 }, -/area/almayer/engineering/lower_engineering) -"uli" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"spL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/aft_hallway) -"ull" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cichallway) -"ult" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"sqc" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"sqi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/command/cichallway) -"ulv" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"sqm" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/engineering/lower_engineering) -"ulJ" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"ulP" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_OT1_req" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"sqx" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"sqC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"sqF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"srd" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sro" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" }, /turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"umk" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 +/area/almayer/hallways/lower/vehiclehangar) +"srq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"sry" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"srA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"srD" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"srJ" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 13"; + buildstate = 1 }, -/area/almayer/shipboard/brig/surgery) -"umm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"srN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/aft_hallway) +"srR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"umo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"srT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"srW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sse" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/starboard_garden) +"ssf" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_p) -"umq" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"ssh" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"ssj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -9; - pixel_y = 16 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"sso" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/obj/item/storage/photo_album{ - pixel_x = -6; - pixel_y = -17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ssp" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"ssC" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/command/combat_correspondent) -"umH" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"ssE" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"stt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/offices) -"umQ" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "29" - }, -/area/almayer/hallways/hangar) -"umW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"stO" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"umY" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"stP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/almayer/command/lifeboat) -"unj" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"unk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) -"unq" = ( +"stV" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"sub" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"sul" = ( +/obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"unv" = ( -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"unC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/squads/bravo) +"sup" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 + }, +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"suE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"suH" = ( +/obj/structure/machinery/door/poddoor/railing{ dir = 4; - icon_state = "green" + id = "supply_elevator_railing" }, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/req) -"unE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"unT" = ( -/obj/structure/machinery/line_nexter/med{ +"suQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/area/almayer/medical/lower_medical_lobby) -"uog" = ( -/obj/structure/sign/safety/restrictedarea{ +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"svg" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"svl" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"svF" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 }, -/area/almayer/hull/lower_hull/l_f_p) -"uoi" = ( -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"uor" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"uoB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/area/almayer/command/corporateliaison) +"svH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"svQ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"svT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"svY" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "69" }, /area/almayer/hallways/hangar) -"uoJ" = ( -/obj/structure/safe, -/obj/item/moneybag, -/obj/item/clothing/glasses/monocle, -/obj/item/weapon/telebaton, -/obj/item/book/codebook, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" +"swh" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"swu" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"uoO" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"swx" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"swA" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/hallways/aft_hallway) -"uoP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"swM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." }, -/area/almayer/shipboard/brig/processing) -"uoT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"swX" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sxa" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/upper_hull/u_m_p) -"uoV" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"sxg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"sxk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 1; - name = "\improper Combat Correspondent Room" + name = "\improper Officer's Bunks"; + req_access = null }, -/turf/open/floor/almayer, -/area/almayer/command/combat_correspondent) -"upf" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/lobby) -"upi" = ( -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"sxl" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"sxt" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"sxv" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/hull/upper/u_f_p) +"sxU" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"upH" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"syj" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/lifeboat_pumps/south1) -"upO" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"syk" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/command/telecomms) -"upQ" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"syl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"syu" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"upX" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"syM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"syZ" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"szd" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"szr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"szt" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/hull/lower_hull/l_m_s) -"uqc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"szv" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/engineering/upper_engineering/port) -"uqg" = ( -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"szB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"szH" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"uqi" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/starboard_emb) +"szO" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi"; + name = "\improper Umbillical Airlock" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"sAa" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sAA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/hangar) -"uqj" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"uqn" = ( -/obj/structure/bed/chair/office/dark{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/living/offices/flight) -"uqB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"sAB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"sAQ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"sBK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/basketball) -"uqD" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"sBU" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"sBY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"uqG" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"sCh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"uqR" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"sCi" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sCl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/medical/medical_science) -"uqW" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uqZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"sCs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"sCH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"sCI" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/blue/east, /area/almayer/living/basketball) -"ure" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" +"sDa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Armory" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"sDk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"sDq" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/weapon/gun/shotgun/combat, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/plating/almayer, /area/almayer/shipboard/brig/armory) -"urh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer{ - icon_state = "plate" +"sDw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/living/captain_mess) -"urk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"sDC" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"urp" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sDJ" = ( +/obj/structure/sign/safety/life_support{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sDO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"ury" = ( -/turf/closed/wall/almayer, -/area/almayer/command/telecomms) -"urF" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sEh" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sEs" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"urN" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sEv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"sEy" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"sEW" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hull/lower_hull/l_f_s) -"urV" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sEZ" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) +"sFj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ dir = 4; - icon_state = "red" - }, -/area/almayer/squads/alpha) -"urY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 + invisibility = 101 }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"sFl" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/evidence_storage) +"sFm" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"sFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 2; - pixel_y = 8 + pixel_y = 3 }, -/obj/item/tool/lighter/random{ - pixel_x = -8; - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"sFs" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/obj/structure/sign/prop3{ - pixel_x = 28 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/obj/structure/machinery/light{ +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"sFw" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"sFB" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sFF" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"sFG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"usM" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"usW" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"usZ" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"utl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"uts" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sGq" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"sGv" = ( +/obj/structure/sign/safety/maint{ pixel_x = -17 }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"sGz" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"sGQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, /obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 + dir = 8; + pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"sGR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/command/cic) -"utF" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" }, -/obj/structure/machinery/door_control{ - id = "cl_shutters"; - name = "Privacy Shutters"; - pixel_x = -5; - pixel_y = 6; - req_access_txt = "200" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"sGS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, -/obj/structure/machinery/door_control{ - id = "RoomDivider"; - name = "Room Divider"; - pixel_x = -5; - pixel_y = -3; - req_access_txt = "200" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"utJ" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"sHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"sHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_m_s) -"utM" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 }, -/area/almayer/living/briefing) -"uuf" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "78" +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sHB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"uuj" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/containment) -"uuo" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"sHI" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"sIc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/area/almayer/engineering/engine_core) -"uut" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sIh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/lifeboat_pumps/south1) -"uuw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sIm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/hull/upper_hull/u_f_p) -"uuy" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"sIv" = ( /obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uuH" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/charlie) -"uuT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sIw" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sIH" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/almayer/squads/bravo) -"uvg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"sIM" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"sIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"sJc" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" }, -/area/almayer/hallways/hangar) -"uvk" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"sJv" = ( +/obj/structure/sign/poster, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"sJF" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"sJT" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 }, -/area/almayer/command/telecomms) -"uvv" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/surface/rack{ + layer = 2.5 }, -/area/almayer/command/cic) -"uvw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 }, -/area/almayer/hallways/repair_bay) -"uvP" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"sKg" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"sKj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"uvT" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ - dwidth = 8 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"sKw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/space, -/area/space) -"uwd" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sKF" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"sKL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices) -"uwU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"uxe" = ( -/turf/closed/wall/almayer, -/area/almayer/living/briefing) -"uxw" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/port_hallway) -"uxV" = ( -/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "emerald" +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sKP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"sKX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"sKZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/squads/charlie) -"uye" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"sLa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"sLd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"sLf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/cichallway) -"uyk" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"sLg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/lifeboat) -"uyr" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 1"; - name = "Cell 1" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/sign/safety/one{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"sLk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"uyu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sLn" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" }, -/turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"uyC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"uyD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/shipboard/port_missiles) -"uyJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"sLo" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"sLE" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sMj" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 }, -/area/almayer/living/numbertwobunks) -"uyK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"sMn" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/engineering/upper_engineering) -"uyN" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"uyU" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"sMw" = ( /obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"sMP" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"uzC" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"uzE" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/chemistry) -"uzN" = ( -/obj/structure/stairs{ - icon_state = "ramptop" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"sMY" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 10; - vector_y = -102 +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"sNf" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"sNl" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"uzX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room"; + name = "\improper Storage Shutters" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/plating, +/area/almayer/squads/req) +"sNn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/area/almayer/medical/upper_medical) -"uzZ" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sNs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/living/captain_mess) -"uAg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"sNv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"sNw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"sNy" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, /area/almayer/squads/bravo) -"uAk" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"uAt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +"sNH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"sNU" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sOr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"uAB" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"sOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"uAG" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"sOQ" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/warden_office) +"sOT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"sOX" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/medical/morgue) -"uAR" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"sOY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"sPd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"sPe" = ( /obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"uAT" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/perma) -"uBf" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"uBv" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/area/almayer/shipboard/brig/cells) +"sPo" = ( +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"sPA" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 11"; + buildstate = 1 }, -/area/almayer/medical/containment) -"uBQ" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"sPD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"sPW" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"sPX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/hull/lower_hull/l_m_p) -"uBX" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/command/cic) -"uCd" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"sPZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"sQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"sQr" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sQz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sQA" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"sQG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"uCf" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"sQM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"uCu" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"uCx" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/lifeboat_pumps/south2) +"sQO" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"sRg" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/almayer/orange/northwest, /area/almayer/engineering/upper_engineering) -"uCz" = ( +"sRq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sRC" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"sRE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"sRW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"uCF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"sSc" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"sSS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"uCY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"sSU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"sTs" = ( /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uDg" = ( -/obj/structure/bed/chair{ +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"sTw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"sTN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/hangar) -"uDx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"uDP" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = 10 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"sTP" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/turf/closed/shuttle/dropship2{ - icon_state = "54" +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 }, -/area/almayer/hallways/hangar) -"uDV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"sUe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" }, -/area/almayer/command/cic) -"uEd" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"sUg" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"sUk" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/living/briefing) +"sUD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"sUF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/starboard_hallway) -"uEs" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"uEt" = ( -/obj/structure/sign/safety/hvac_old, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"sUH" = ( /turf/closed/wall/almayer, -/area/almayer/squads/req) -"uEG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/living/numbertwobunks) +"sUJ" = ( +/obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"uEK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sUN" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"sUY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_p) -"uEO" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sVb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/area/almayer/medical/lower_medical_medbay) -"uER" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"sVi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"sVl" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"sVs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"uEW" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/vents/pump/no_boom{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"uEY" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"sVt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/obj/structure/platform_decoration{ - dir = 5; - layer = 3.51 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/lifeboat_pumps/north1) -"uFd" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"uFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"sVD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"uFm" = ( -/obj/structure/machinery/computer/tech_control, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"uFp" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"sVH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 }, -/area/almayer/hallways/port_hallway) -"uFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"sVO" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"sVP" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"sVQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"sVU" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"sVV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"sWm" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 }, -/area/almayer/engineering/engine_core) -"uFF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"sWu" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sWx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"sWM" = ( +/obj/item/bedsheet/orange, +/obj/structure/bed{ + icon_state = "psychbed" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"uFH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30; + req_access = list(); + req_access_txt = "6" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"sXa" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"sXd" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"sXe" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_port{ + dwidth = 8 }, -/area/almayer/squads/bravo) -"uFM" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north1) -"uFQ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/turf/open/space, +/area/space) +"sXf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"sXm" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/starboard_garden) +"sXq" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 }, -/area/almayer/shipboard/brig/evidence_storage) -"uFX" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"uGd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/crushed_cup{ + pixel_y = 12 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sXw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/medical/medical_science) -"uGl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"uGr" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/repair_bay) -"uHd" = ( -/obj/structure/sink{ - pixel_y = 24 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"sXE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 2"; + name = "\improper Courtyard Divider" }, +/turf/open/floor/almayer/test_floor4, /area/almayer/shipboard/brig/cells) -"uHg" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, -/area/almayer/living/briefing) -"uHr" = ( +"sXF" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"sXP" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"sXR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/aft_hallway) +"sYn" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"sYw" = ( /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"sYC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/lower_hull/l_f_s) -"uHS" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sYM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ dir = 8; - icon_state = "sterile_green_side" + icon_state = "pipe-c" }, -/area/almayer/medical/morgue) -"uHW" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"uIs" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"sYY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/squads/req) -"uIy" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"sZg" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"sZi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"taq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/living/cafeteria_officer) -"uIF" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"taG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_f_s) -"uII" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"taK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"taM" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tbi" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/area/almayer/hallways/port_hallway) -"uIQ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/sign/safety/maint{ + pixel_x = 14; + pixel_y = -32 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"uJb" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"tbw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"tbC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/shipboard/starboard_point_defense) -"uJn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"tbW" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"tbX" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tcb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"tci" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/living/pilotbunks) -"uJs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/east, +/area/almayer/living/starboard_garden) +"tcn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/telecomms) +"tco" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tcr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"tcx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 }, /turf/open/floor/almayer, -/area/almayer/squads/delta) -"uJZ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/chief_mp_office) -"uKq" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 +/area/almayer/hallways/upper/aft_hallway) +"tcy" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"tcF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/area/almayer/shipboard/weapon_room) -"uKv" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) +"tcG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/area/almayer/hull/lower_hull/l_f_p) -"uKG" = ( -/obj/structure/bed/chair{ - buckling_y = 6; +/obj/structure/bed/chair/vehicle{ dir = 1; - pixel_y = 6 + pixel_x = -8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/starboard_emb) -"uKL" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"tcH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"uKN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_y = 24; + req_access_txt = "3" }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"uKQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" +/obj/structure/sign/safety/coffee{ + pixel_y = 32 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"tcJ" = ( +/obj/structure/supply_drop/bravo, +/turf/open/floor/plating, +/area/almayer/squads/req) +"tcT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"tcV" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"tcX" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 }, -/area/almayer/command/cic) -"uKV" = ( -/obj/structure/toilet{ +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"tdi" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"uKX" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/starboard_umbilical) -"uKY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/area/almayer/maint/hull/upper/u_m_p) +"tdp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"tdE" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tdI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" }, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"uLd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/command/cic) +"tdP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/shipboard/starboard_missiles) -"uLh" = ( -/obj/structure/shuttle/part/dropship2/transparent/middle_left_wing, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"uLi" = ( +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"tdQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tdX" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"uLo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/processing) -"uLp" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/hull/upper_hull/u_m_p) -"uLs" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tdZ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/engineering/laundry) -"uLt" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"tek" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"teo" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"uLI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"tev" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/area/almayer/hallways/aft_hallway) -"uLT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 +/obj/structure/phone_base{ + dir = 1; + name = "Brig Warden's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig Warden's Office"; + pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"tex" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"teG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/port_atmos) -"uMc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/area/almayer/engineering/engine_core) -"uMg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"teZ" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tfc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 +/obj/structure/ladder{ + height = 2; + id = "cicladder1" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 }, -/area/almayer/living/captain_mess) -"uMj" = ( +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"tft" = ( /obj/structure/stairs/perspective{ + dir = 8; icon_state = "p_stair_sn_full_cap" }, /obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"uMm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north2) -"uMq" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"uMA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4 }, -/area/almayer/shipboard/weapon_room) -"uMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tfJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"tfO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"tfV" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/aft_hallway) -"uNa" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_p) -"uNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"tgb" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"tgg" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"tgy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/living/grunt_rnr) -"uNk" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tgR" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tgX" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"thg" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"thq" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -6; + pixel_y = -6 }, -/area/almayer/hallways/starboard_umbilical) -"uNl" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"uNs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"uNF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"thD" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"thQ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/medical/lockerroom) -"uNH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uNZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"thR" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/almayer/medical/lower_medical_medbay) -"uOn" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison{ - icon_state = "kitchen" +"thS" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 }, -/area/almayer/living/captain_mess) -"uOq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"tiu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"tiv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/hallways/repair_bay) -"uOu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/vehiclehangar) -"uOz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_s) +"tiE" = ( +/obj/item/stack/catwalk, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"tiH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/turf/open/floor/almayer/sterile, /area/almayer/living/captain_mess) -"uOB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"tiW" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"tiY" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tjg" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"uOC" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"tjh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null }, -/area/almayer/shipboard/port_missiles) -"uOJ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"tjv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"uOX" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"tjy" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"uPb" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tjz" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_a_s) -"uPd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/photocopier{ + anchored = 0 }, -/area/almayer/living/bridgebunks) -"uPg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/poster{ + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; + pixel_y = 32 }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tjC" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"uPv" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/lower/l_f_s) +"tjL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"tkb" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 }, -/area/almayer/hull/lower_hull/l_f_p) -"uPI" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/area/almayer/squads/alpha) -"uPJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tkt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_m_s) -"uPL" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"tkv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"uPN" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_p) +"tkz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"tkC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/port_hallway) -"uPQ" = ( -/obj/structure/sign/safety/storage{ +/obj/structure/sign/safety/life_support{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"uQo" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - icon_state = "red" +/area/almayer/engineering/lower) +"tkI" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 5"; + buildstate = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"uQq" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uQv" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = 21; - pixel_y = 43 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"tkY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tlc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, -/area/almayer/hallways/hangar) -"uQJ" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tlg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"uQR" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"tlh" = ( +/obj/structure/disposalpipe/junction{ dir = 8; - name = "\improper Containment Airlock" + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"tlm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"tlr" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"tlz" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"tlD" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tlJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"tlL" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/turf/open/floor/plating, +/area/almayer/command/cic) +"tlW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tmo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/medical/medical_science) -"uRe" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"uRB" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 }, -/area/almayer/medical/lower_medical_medbay) -"uRQ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"tmw" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null }, -/area/almayer/hallways/hangar) -"uRZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"tmA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"tmQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"tmS" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"tmU" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"uSy" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"uSA" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 8; - id = "Perma 1L"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/maint/hull/lower/l_a_s) +"tnd" = ( +/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"tne" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/perma) -"uSF" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tni" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"uSL" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/aft_hallway) +"tnr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"tnw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_a_s) +"tnI" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"tnQ" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 17 +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"toa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"tov" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"toF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"uST" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/hallways/lower/starboard_midship_hallway) +"toH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"toK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"uSV" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uTl" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/squads/charlie) +"toL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"uTu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"toP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"uTG" = ( +/area/almayer/hallways/upper/aft_hallway) +"tpq" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"tpr" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/squads/req) -"uTK" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"uTT" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/computer/research/main_terminal{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"uTV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/engineering/engine_core) -"uTW" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/cafeteria_officer) -"uUk" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/living/briefing) -"uUq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/alpha) -"uUs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/engineering/laundry) -"uUy" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"uUE" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"uUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"uUZ" = ( -/obj/structure/machinery/photocopier, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) -"uVj" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uVm" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) -"uVo" = ( +"tpt" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"tpE" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 }, -/area/almayer/command/cichallway) -"uVZ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"tqc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/optable, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 + icon_state = "SE-out"; + pixel_x = 2 }, -/area/almayer/medical/containment/cell) -"uWh" = ( -/obj/structure/platform{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"tqd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"uWo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"tqo" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/area/almayer/hull/upper_hull/u_a_p) -"uWw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"tqF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 }, -/obj/structure/machinery/light, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"tqN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"tqP" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"tre" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/area/almayer/command/cic) -"uWz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"trk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"trt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"trC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"trS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"uWC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"trY" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 }, -/area/almayer/hallways/aft_hallway) -"uWG" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"uWJ" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"tsg" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uWY" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"tsm" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/hangar) -"uXb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 10; + vector_y = -102 }, -/area/almayer/hallways/starboard_hallway) -"uXk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"tsp" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"ttd" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"tti" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ttj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"uXq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ttB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"uXv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/power/south, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"uXz" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/u_f_s) +"ttM" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"ttQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hull/lower_hull/l_a_s) -"uXB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"tue" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -67670,3825 +51280,4759 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"uXJ" = ( -/obj/structure/supply_drop/echo, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"uXN" = ( -/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tug" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tup" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"tuD" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"tuE" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, -/area/almayer/hallways/aft_hallway) -"uXY" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"uXZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"tuH" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, -/area/almayer/living/offices/flight) -"uYn" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/vents/scrubber{ dir = 1 }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 + }, +/obj/item/tool/soap/syndie, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"uYp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/living/starboard_emb) +"tuN" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"tuR" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"tuY" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"tvb" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"tvd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/charlie) -"uYs" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"tvs" = ( +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"tvz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"tvR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "sterile_green_corner" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/medical/lower_medical_lobby) -"uYw" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/medical/lockerroom) -"uYz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"tvT" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"twa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"twj" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"twF" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"twK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"uYF" = ( +/area/almayer/living/chapel) +"twV" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"txq" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"uYI" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/aft_hallway) +"txB" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"txN" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 }, -/area/almayer/hallways/repair_bay) -"uYP" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "68" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/hangar) -"uYR" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"txV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"txX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/squads/req) +"tya" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tyb" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"tyf" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"tyk" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"tyC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"uYU" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"uYX" = ( -/turf/open/floor/almayer, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"tyI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"tyM" = ( +/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, +/turf/open/floor/plating, /area/almayer/hallways/hangar) -"uZh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"tyT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"tyV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tyX" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/area/almayer/squads/alpha) -"uZs" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tze" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/living/starboard_garden) -"uZZ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"tzh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"vaq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/captain_mess) -"vat" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"tzm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"vav" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"vaE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 }, -/area/almayer/living/grunt_rnr) -"vaO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"tzu" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"vaR" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tzT" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"tzZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/engineering/engine_core) -"vbz" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"vbI" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"tAo" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 }, -/obj/structure/platform{ +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"vbS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hull/upper_hull/u_a_s) -"vbV" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"vcd" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/port_hallway) -"vcm" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"tAD" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_s) -"vcr" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"vcy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) -"vcS" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"vcV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"tAO" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_m_p) -"vdc" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray, -/obj/item/tool/kitchen/utensil/pknife, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/wood/ship, +/turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"vdf" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder3" +"tAT" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/plating/almayer, +/turf/open/floor/almayer/redcorner/north, /area/almayer/living/briefing) -"vdh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"vdi" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"vdj" = ( -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"vdk" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/shipboard/brig/processing) -"vdr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/port_hallway) -"vdD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"tBe" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 }, +/turf/open/floor/almayer/green, /area/almayer/living/grunt_rnr) -"vdZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 - }, -/turf/open/floor/almayer{ +"tBh" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 8; - icon_state = "orange" - }, -/area/almayer/shipboard/brig/processing) -"ved" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + name = "ship-grade camera" }, -/area/almayer/engineering/lower_engineering) -"vee" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"tBJ" = ( /turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"veq" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/command/cic) -"veu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_p) -"vez" = ( +/area/almayer/engineering/starboard_atmos) +"tBT" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) +"tBU" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"tBZ" = ( /obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"veL" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = -17; + pixel_y = 7 }, -/area/almayer/engineering/upper_engineering) -"veX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/command/cic) -"vfg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"tCb" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" }, -/obj/structure/bed/chair/office/dark, -/obj/item/clothing/head/cmcap{ - pixel_x = -2; - pixel_y = 9 +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"tCm" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = -8; + vector_y = -100 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"vfh" = ( -/obj/structure/window/framed/almayer, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"tCt" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"tCy" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"tCJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "cl_shutters"; - name = "\improper Privacy Shutters" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" }, -/turf/open/floor/plating, -/area/almayer/command/corporateliason) -"vfk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"tCY" = ( +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/captain_mess) -"vfs" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"tDG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"tDI" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/status_display{ - pixel_x = 32 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"tDL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/aft_hallway) -"vfv" = ( -/obj/structure/pipes/vents/scrubber{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tDO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/shipboard/weapon_room) -"vfy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"vfH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "green" +/area/almayer/engineering/lower/engine_core) +"tDW" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 }, -/area/almayer/living/grunt_rnr) -"vfV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tEn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"tEw" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"tEz" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop) -"vfW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"vfY" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"tED" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/living/starboard_emb) -"vge" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"vgi" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/command/cic) -"vgm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"vgx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"vgC" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/area/almayer/hallways/lower/vehiclehangar) +"tEI" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/aft_hallway) +"tEO" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"vgD" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/lifeboat_pumps/south1) +"tES" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"tET" = ( +/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"vgE" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/numbertwobunks) -"vgJ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"vgK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"vgO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"vgR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/corporateliason) -"vgS" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"tEZ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck{ - desc = "A simple deck of playing cards. You could play Caravan with these!"; - pixel_y = 12 - }, -/obj/item/toy/deck/uno{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -2; - pixel_y = -2 - }, +/obj/item/toy/beach_ball/holoball, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"vhb" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hull/upper_hull/u_a_p) -"vhn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"tFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/lower_engineering) -"vhq" = ( /obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"tFo" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"tFs" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"tFz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/command/cic) -"vhs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tFA" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_y = 13 }, /obj/structure/prop/invuln/overhead_pipe{ dir = 4; - pixel_x = 12; pixel_y = 13 }, /obj/structure/prop/invuln/overhead_pipe{ dir = 4; + pixel_x = 12; pixel_y = 13 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tFX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"vhu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"tGa" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/squads/bravo) -"vhy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"tGc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"tGm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tGv" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tGD" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tGY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"tHh" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"via" = ( -/obj/structure/machinery/light{ +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tHk" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"tHm" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"tHq" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"tHx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tHD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/area/almayer/hallways/port_hallway) -"vib" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"vif" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"tIi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"tIk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tJf" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"tJB" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"viu" = ( +/area/almayer/maint/hull/lower/l_f_p) +"tJJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/hallways/stern_hallway) -"viz" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"tJR" = ( +/obj/structure/machinery/chem_storage/medbay{ dir = 1 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/chem_storage/research{ dir = 1; - icon_state = "sterile_green_side" + layer = 3; + pixel_y = 18 }, -/area/almayer/medical/operating_room_one) -"viK" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"tJW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"tKv" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/almayer/squads/delta) -"viM" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/obj/structure/window/reinforced/ultra{ + dir = 1 }, -/area/almayer/squads/req) -"viR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"tKJ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/chief_mp_office) +"tKP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tKS" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north2) +"tLe" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"tLj" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"vjg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"tLs" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"tLC" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"vjh" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"tLD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/charlie) -"vji" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/morgue) +"tLE" = ( /obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"tLJ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "24;31" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"tLN" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_a_s) -"vjq" = ( -/obj/structure/machinery/light{ +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"tLX" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"tLZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"vjx" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_s) -"vjG" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"tMd" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" }, -/area/almayer/hallways/vehiclehangar) -"vjI" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"tMv" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"tMO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/shipboard/brig/surgery) -"vjT" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"tMQ" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tMX" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"tNa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tNh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null }, -/area/almayer/engineering/upper_engineering/starboard) -"vjZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"tNj" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"tND" = ( /obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/surgery) -"vkd" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"vke" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Chief MP's Bedroom" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tNG" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"tNK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tNQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 }, -/area/almayer/shipboard/brig/chief_mp_office) -"vko" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"tOa" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 1; + pixel_y = 26 }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"tOc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"vkw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"tOl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"tOn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tOp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tOu" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"vlc" = ( -/obj/structure/pipes/unary/outlet_injector, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"vlf" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"tOv" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" }, -/area/almayer/engineering/laundry) -"vll" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; +/obj/structure/sign/arcturianstopsign{ pixel_y = 32 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"tOL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"vln" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +"tOO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"tOR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_umbilical) -"vlp" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" + icon_state = "W" }, -/area/almayer/squads/charlie) -"vlr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) -"vls" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/medical/medical_science) -"vlu" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"tOT" = ( +/obj/structure/platform{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"vlB" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"tOV" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/captain_mess) -"vlG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"tPt" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/area/almayer/hull/lower_hull/l_f_s) -"vmd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"tQd" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tQe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_f_p) -"vmi" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/machinery/computer/working_joe{ + dir = 4 }, -/area/almayer/command/lifeboat) -"vmm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"tQg" = ( +/obj/structure/machinery/brig_cell/cell_4{ + pixel_x = -32; + pixel_y = -32 }, -/area/almayer/hallways/aft_hallway) -"vmn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"vmr" = ( -/obj/structure/platform_decoration{ +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tQl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"tQs" = ( +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"vmK" = ( -/obj/structure/supply_drop/alpha, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"tQw" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"vmN" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"tQy" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"tQF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"tRo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 }, -/area/almayer/command/lifeboat) -"vmX" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 }, -/area/almayer/engineering/upper_engineering/starboard) -"vnb" = ( +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"tRw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"vng" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"vnk" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"tRD" = ( +/obj/structure/disposalpipe/junction{ dir = 1; - icon_state = "green" - }, -/area/almayer/squads/req) -"vnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"vno" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer{ - icon_state = "bluefull" + icon_state = "pipe-j2" }, -/area/almayer/command/cichallway) -"vnu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/uscm/directional{ - dir = 4 +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"tRH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/briefing) -"vnE" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tRM" = ( +/obj/structure/barricade/handrail{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"vnL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"tRQ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/area/almayer/hull/lower_hull/l_f_s) -"vnM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"tRS" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"tRY" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"tSh" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell/cl) +"tSi" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 }, -/area/almayer/living/offices) -"vnR" = ( -/obj/structure/sign/safety/water{ +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"tSo" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"vnU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tSK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, -/area/almayer/hallways/starboard_hallway) -"vnX" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/command/computerlab) -"vnY" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"tSS" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"tSV" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" }, -/area/almayer/living/chapel) -"voc" = ( -/obj/structure/disposalpipe/junction{ +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"tSX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/computer/secure_data{ + dir = 8 }, -/area/almayer/medical/lower_medical_medbay) -"voq" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/door_control{ + id = "cic_exterior"; + name = "CIC Door Control"; + normaldoorcontrol = 1; + pixel_y = -14; + req_one_access_txt = "19" }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"tTj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/aft_hallway) -"vor" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"voC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tTr" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"tTt" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; + dir = 2; + name = "\improper Evacuation Airlock PU-4"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/port_atmos) -"voZ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"vpo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"tTV" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"tUm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/commandbunks) -"vpp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 }, -/area/almayer/hull/upper_hull/u_m_s) -"vpy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"tUy" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/shipboard/brig/surgery) -"vpL" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tUD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/living/offices/flight) -"vpM" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"tUH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tUM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_p) -"vpX" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"tUT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tUZ" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/aft_hallway) +"tVc" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"tVj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/almayer/hallways/hangar) -"vqb" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + pixel_x = 2 }, -/area/almayer/command/cic) -"vqh" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"tVw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering) -"vqu" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tVC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"tVH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"tVJ" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 }, -/area/almayer/hull/upper_hull/u_m_s) -"vrp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"tVM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"tVO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tVU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"tWh" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"tWl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" }, -/area/almayer/engineering/engineering_workshop/hangar) -"vrx" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"tWx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/medical/lower_medical_medbay) -"vry" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/main_office) -"vrA" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, -/area/almayer/command/combat_correspondent) -"vrO" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"tWH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/hull/upper_hull/u_f_s) -"vrP" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"tWY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tXb" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"tXg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/starboard_emb) -"vrQ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +/obj/effect/decal/cleanable/blood, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"vrW" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/area/almayer/shipboard/brig/execution) +"tXI" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"tXL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/starboard) -"vsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/tankerbunks) -"vsF" = ( -/turf/open/floor/almayer{ +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"tXQ" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"tXR" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"tXV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - icon_state = "silver" + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"vsT" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_m_s) -"vsU" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_OT_req" +/area/almayer/medical/containment/cell) +"tXW" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"vsX" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"vta" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 - }, -/obj/structure/catwalk{ - health = null +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tYl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"tYp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 1; + name = "\improper Cryogenics Bay" }, -/area/almayer/stair_clone/upper) -"vtg" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"tYs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/hallways/hangar) -"vtm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tYx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/offices/flight) -"vto" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tYA" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"vtJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"tYS" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"tYT" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/shipboard/brig/cryo) -"vtS" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/sign/poster{ + pixel_x = -32 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"vuh" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"tYX" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tYZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"tZb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room" }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vus" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"tZc" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/command/computerlab) -"vuw" = ( -/obj/structure/catwalk{ - health = null +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tZp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = -8; - vector_y = -98 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/stair_clone/upper) -"vuE" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tZq" = ( /obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/device/whistle, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"vuL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -8; + pixel_y = 22 }, -/turf/open/floor/plating, +/turf/open/floor/almayer, /area/almayer/squads/bravo) -"vuU" = ( -/turf/open/floor/almayer{ - icon_state = "greenfull" +"tZF" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/offices) -"vvb" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"tZS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"tZU" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"tZX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/living/basketball) -"vvm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"vvv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"vvz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"vvS" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"tZY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"uac" = ( +/obj/structure/stairs{ + icon_state = "ramptop" }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"vvT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/obj/structure/machinery/disposal, /turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"vvU" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" +/area/almayer/living/chapel) +"uah" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"uam" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"uat" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"uav" = ( /obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"uaS" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"uaV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ubd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/machinery/door/window/westright{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ubi" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"ubq" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"ubB" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ubF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"vvV" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 8; + pixel_y = 9 }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ubN" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"ubP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 }, -/area/almayer/command/cichallway) -"vvY" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ubZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"uce" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"ucq" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"ucv" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"vwf" = ( -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "orangecorner" + name = "ship-grade camera" }, -/area/almayer/engineering/upper_engineering/port) -"vwm" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"ucw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"vwr" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"ucz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/squads/bravo) -"vwv" = ( -/obj/structure/pipes/standard/simple/visible{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ucJ" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ucZ" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"uda" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 }, -/obj/structure/sign/safety/hazard{ +/obj/structure/sign/safety/intercom{ pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"vwy" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 32 }, -/area/almayer/squads/delta) -"vwJ" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"udf" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"udg" = ( +/obj/item/tool/screwdriver, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vwU" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"vwY" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space, -/area/space) -"vxd" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"udC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"udF" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/command/telecomms) -"vxj" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/hangar) -"vxH" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" + name = "ship-grade camera" }, -/area/almayer/living/briefing) -"vxL" = ( -/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"udI" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"vxP" = ( -/obj/effect/landmark/supply_elevator, -/turf/open/floor/almayer/empty, -/area/supply/station) -"vxX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/lower/l_f_p) +"udN" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"udV" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"udY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"ueo" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 }, -/area/almayer/medical/medical_science) -"vyh" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/area/almayer/living/chapel) -"vyl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ueB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/living/briefing) -"vyn" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"ueC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"ueH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/port_point_defense) -"vyx" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"ueL" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"vyJ" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"vyQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" +/obj/structure/morgue{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ueP" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 2; + pixel_y = 18 }, -/area/almayer/squads/req) -"vyU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" +/obj/item/tool/warning_cone{ + pixel_x = -12 }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/starboard_emb) -"vyY" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_p) -"vyZ" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"vza" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"ueT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ueX" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"vzm" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/almayer/squads/delta) -"vzK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"ufd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"ufr" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"vzU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible" +/area/almayer/engineering/upper_engineering/port) +"ugi" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ugk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"vzV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"ugm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"ugs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 }, -/area/almayer/medical/upper_medical) -"vAk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"ugt" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"ugz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/almayer/living/basketball) -"vAo" = ( -/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"ugB" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ugE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/medical/lower_medical_lobby) -"vAz" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"vAB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"vAL" = ( +/area/almayer/squads/charlie) +"ugJ" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"ugM" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/hydroponics) -"vAV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"ugO" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"ugS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"vBb" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods{ - amount = 40 +/area/almayer/maint/hull/lower/l_m_p) +"uhe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"vBf" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"uhk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"uhn" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"uhu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/squads/charlie) -"vBi" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"vBm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 }, -/turf/open/floor/almayer{ +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"vBr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "silver" + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/cic_hallway) -"vBF" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"uhB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) }, -/area/almayer/hallways/hangar) -"vBQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/living/offices) -"vBR" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uhU" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"uij" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"uit" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south1) -"vCc" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"vCd" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uiw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/vehiclehangar) -"vCg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uiA" = ( /obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"vCi" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 + layer = 3.1 }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"vCl" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PL-3"; - req_access = null +/obj/structure/largecrate/random/case, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 7 }, -/turf/open/floor/plating, -/area/almayer/powered) -"vCp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"uiB" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer{ +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"uiL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/hallways/starboard_hallway) -"vCy" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "Brig"; + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"uiT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/starboard_hallway) -"vCU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out"; + layer = 2.5 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"ujj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ujn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/aft_hallway) -"vCW" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_f_p) -"vCX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"ujp" = ( +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/platform{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"ujC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"vDa" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/area/almayer/maint/hull/upper/u_m_p) +"ujD" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/cryo_cells) -"vDt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Research Armory"; - name = "\improper Armory Shutters" +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ujP" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ujR" = ( +/turf/closed/wall/biodome, +/area/almayer/powered/agent) +"ujT" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ujU" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/medical/upper_medical) -"vDu" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ukr" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 }, -/turf/open/floor/almayer/research/containment/corner3, /area/almayer/medical/containment/cell) -"vEa" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +"ukv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"vEf" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"vEg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"ukE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 }, -/area/almayer/lifeboat_pumps/south1) -"vEo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"ukH" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 }, -/area/almayer/hallways/port_hallway) -"vEF" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"ukX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"vEG" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"ulf" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" }, -/area/almayer/living/port_emb) -"vEH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"ulh" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"ulk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; - name = "\improper Engineering Workshop" + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"ull" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cichallway) +"uln" = ( /obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ulw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"uly" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/area/almayer/engineering/engineering_workshop) -"vEJ" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/aft_hallway) +"ulA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ulE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"ulP" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_OT1_req" }, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"vEM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/area/almayer/lifeboat_pumps/south1) +"ulY" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"ume" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"umx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 }, -/area/almayer/hallways/aft_hallway) -"vEP" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"umE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"umF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/living/pilotbunks) -"vES" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"umJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"umP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"umQ" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "29" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/hangar) +"umW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_lobby) -"vEY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"unq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"unv" = ( +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"uny" = ( /obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer{ +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ dir = 1; - icon_state = "sterile_green_corner" + pixel_y = -28 }, -/area/almayer/medical/chemistry) -"vFp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/port) -"vFx" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"unE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"unI" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"unP" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"unQ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"unR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"unV" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uoi" = ( +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"uos" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"uox" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"uoG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, /turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"vFy" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" +/area/almayer/hallways/lower/starboard_midship_hallway) +"uoH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/lifeboat_pumps/south2) -"vFF" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"uoI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/command/cichallway) -"vFO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"vFT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/lifeboat_pumps/north1) -"vFW" = ( -/obj/structure/machinery/power/apc{ - dir = 8 +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/aft_hallway) +"uoJ" = ( +/obj/structure/safe, +/obj/item/moneybag, +/obj/item/clothing/glasses/monocle, +/obj/item/weapon/telebaton, +/obj/item/book/codebook, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"vGn" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"uoS" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/area/almayer/engineering/upper_engineering/port) -"vGQ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"vGS" = ( -/turf/open/floor/almayer{ +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ dir = 8; - icon_state = "red" + layer = 3.3; + pixel_y = 4 }, -/area/almayer/shipboard/weapon_room) -"vHa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"uoV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null +/turf/open/floor/almayer, +/area/almayer/command/combat_correspondent) +"upf" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/lobby) +"upm" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"upr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 }, -/area/almayer/medical/lower_medical_lobby) -"vHd" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"upt" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/almayer/hull/lower_hull/l_f_s) -"vHh" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"upG" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "orange" + health = 80 }, -/area/almayer/engineering/ce_room) -"vHi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"upL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"upT" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"upW" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uqA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/squads/alpha) -"vHn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"uqJ" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uqS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"uqW" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"urf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"url" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/port_hallway) -"vHo" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ury" = ( +/turf/closed/wall/almayer, +/area/almayer/command/telecomms) +"urB" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"urX" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/offices) -"vHw" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"urY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 }, -/area/almayer/hallways/repair_bay) -"vHF" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"vIo" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/tool/lighter/random{ + pixel_x = -8; + pixel_y = 7 }, -/area/almayer/shipboard/brig/processing) -"vIq" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/sign/prop3{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hallways/hangar) -"vIC" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"usc" = ( /obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"vJa" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ust" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"usw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"vJg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"usx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/upper/u_f_p) +"usC" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"usE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; + pixel_y = 16 }, -/area/almayer/living/briefing) -"vJv" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/spacecash/c500{ - pixel_x = 4; - pixel_y = 8 +/obj/structure/window{ + dir = 4 }, -/obj/item/ashtray/bronze{ - pixel_x = -13; - pixel_y = -4 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"usG" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"usH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliason) -"vJy" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"utk" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 }, -/turf/open/floor/plating, -/area/almayer/living/chapel) -"vJz" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"utC" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/area/almayer/command/cichallway) -"vJP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"utK" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"vKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"utW" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"utX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"utZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uuf" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "78" }, -/area/almayer/hull/upper_hull/u_f_p) -"vKm" = ( -/obj/structure/window/framed/almayer, +/area/almayer/hallways/hangar) +"uuh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/surgery) -"vKv" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "19" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"uuy" = ( +/obj/structure/platform{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"vKD" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - icon_state = "plate" +"uuC" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, -/area/almayer/hull/upper_hull/u_a_s) -"vKG" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uuU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/living/bridgebunks) -"vKK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"vKM" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"uva" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"uvi" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/area/almayer/command/telecomms) -"vKR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 }, -/area/almayer/hull/lower_hull/l_f_s) -"vKY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"uvq" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"uvD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/hallways/stern_hallway) -"vLc" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"uvH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"uvT" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"uvU" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"uvV" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"uwg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"uwh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uwA" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/no_build, /area/almayer/shipboard/brig/lobby) -"vLl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"uwE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 }, -/area/almayer/hallways/stern_hallway) -"vLp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SE-out"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"uwJ" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"uwO" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"uwP" = ( +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_x = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"uxe" = ( +/turf/closed/wall/almayer, +/area/almayer/living/briefing) +"uxB" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; pixel_y = 6 }, /obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 + pixel_x = 3; + pixel_y = 3 }, +/obj/item/storage/firstaid/o2, /obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 + pixel_x = 6; + pixel_y = 6 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"uxU" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/mono, /area/almayer/medical/medical_science) -"vLw" = ( -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vLA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"uxW" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 }, -/area/almayer/medical/morgue) -"vLD" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"vLG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"vLH" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uyf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer/research/containment/floor2{ +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"uyi" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) +"uyj" = ( +/obj/structure/barricade/plasteel/metal{ dir = 1 }, -/area/almayer/medical/containment/cell) -"vLI" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"uyr" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 1"; + name = "Cell 1" }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"vLS" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 +/obj/structure/sign/safety/one{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"uyN" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"uyU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"vLU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"uzb" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 }, -/area/almayer/living/numbertwobunks) -"vLX" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"uzR" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"uzT" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_a_s) -"vMc" = ( -/obj/structure/shuttle/part/dropship2/lower_left_wall, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"uAk" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/window/framed/almayer, /turf/open/floor/plating, -/area/almayer/hallways/hangar) -"vNb" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/engineering/airmix) +"uAq" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) +"uAs" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 }, -/area/almayer/hull/upper_hull/u_a_p) -"vNg" = ( /obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"vNE" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"uAE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"uAT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/perma) +"uBe" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uBf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"uBh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_p) -"vNF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uBr" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uBw" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"uBy" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/area/almayer/squads/delta) -"vNK" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/aft_hallway) +"uBI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"vNW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/prop3{ - pixel_x = 28 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"uBK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/aft_hallway) +"uBU" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/clothing/mask/gas{ - pixel_y = 7 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/item/clothing/mask/gas{ - pixel_y = 3 +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"uCb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uCf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"vOd" = ( +/area/almayer/living/briefing) +"uCu" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"uCv" = ( /obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"vOp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"uCK" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/lobby) +"uCM" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"uCY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"vOr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uDs" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"uDt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/vending/cigarette, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 7; - pixel_y = 11 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"uDv" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 19 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"uDw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"vOs" = ( -/obj/structure/machinery/light/small{ +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"uDF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/hull/lower_hull/l_m_s) -"vOG" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/command/telecomms) -"vOO" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uDM" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/almayer/cargo_arrow/north, /area/almayer/squads/delta) -"vOQ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +"uDP" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 10 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/closed/shuttle/dropship2{ + icon_state = "54" }, -/area/almayer/shipboard/starboard_missiles) -"vPc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"uEe" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"uEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"vPj" = ( -/obj/structure/machinery/crema_switch{ - pixel_x = -24; - req_access_txt = "25" +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"uEn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"uEt" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"uEG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"vPl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/briefing) +"uEH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/obj/structure/disposalpipe/junction{ - dir = 8 +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"uEM" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 }, -/area/almayer/hallways/port_hallway) -"vPJ" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"uEN" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"uER" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/area/almayer/shipboard/brig/cic_hallway) -"vPL" = ( +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"uEU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"uEV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"uEW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, /turf/open/floor/almayer, -/area/almayer/hallways/stern_hallway) -"vPR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/squads/alpha_bravo_shared) +"uFb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uFd" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"uFh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"uFm" = ( +/obj/structure/machinery/computer/tech_control, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"uFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 }, -/area/almayer/living/grunt_rnr) -"vPX" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uFx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"uFF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"uFJ" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"uFM" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north1) +"uFN" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_p) -"vQf" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"uFO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"uFR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"uFZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/almayer/engineering/upper_engineering/port) -"vQq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uGq" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"vQu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_a_p) +"uGF" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"vQJ" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"uGJ" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"uGM" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/almayer/living/briefing) -"vQP" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"uHe" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/living/synthcloset) -"vQQ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"uHq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"uHK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"uHP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"uHU" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"uHW" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"uIe" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"uIi" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"uIn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/squads/bravo) -"vQR" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/maint{ pixel_x = 8; pixel_y = -32 }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uIo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"uIp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"vQU" = ( -/obj/structure/platform{ +/area/almayer/maint/hull/upper/u_f_s) +"uIQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"uJa" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"uJo" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"uJp" = ( +/obj/structure/catwalk{ + health = null }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south1) -"vQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"uJs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"vQX" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"uJz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/hallways/hangar) -"vQY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uJA" = ( +/obj/structure/machinery/power/apc/power/east, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/shipboard/brig/perma) +"uJG" = ( +/obj/structure/machinery/light/containment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/upper_engineering/port) -"vQZ" = ( -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/research/containment/corner/north, /area/almayer/medical/containment/cell) -"vRi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" +"uJO" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uJZ" = ( +/turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/chief_mp_office) -"vRk" = ( -/turf/open/floor/almayer{ +"uKt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"uKx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uKG" = ( +/obj/structure/bed/chair{ + buckling_y = 6; dir = 1; - icon_state = "silver" - }, -/area/almayer/command/cic) -"vRH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_emb) +"uKV" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/shipboard/port_missiles) -"vRX" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"vSt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + health = 80 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"uKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/bulkhead_door{ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"uLe" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"uLh" = ( +/obj/structure/shuttle/part/dropship2/transparent/middle_left_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"uLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/area/almayer/squads/bravo) -"vSy" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"uLl" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uLv" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"uLw" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"vSF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"uLx" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"uLL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"uMb" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext"; + name = "\improper Umbillical Airlock" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown"; - name = "\improper Perma Lockdown Shutter" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"uMe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"uMj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/area/almayer/shipboard/brig/perma) -"vSJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/shipboard/weapon_room) -"vSP" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_one) -"vSR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"uMm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north2) +"uMo" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 }, -/area/almayer/hallways/starboard_hallway) -"vTe" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"uMt" = ( +/obj/structure/pipes/trinary/mixer{ dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/grunt_rnr) -"vTi" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 + name = "Gas mixer N2/O2" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"uMv" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"uME" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uMG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uMK" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) +"uNl" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"uNs" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"uNt" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, /area/almayer/hallways/hangar) -"vTz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"uNy" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"uNC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"uNH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uNN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"uNQ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"uNU" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 }, -/area/almayer/hull/lower_hull/l_a_p) -"vTA" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 }, -/area/almayer/medical/upper_medical) -"vTH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"uOg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"uOk" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"uOr" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/command/corporateliason) -"vTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"uOs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uOB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"uOH" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"uOI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/morgue) +"uOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/squads/req) -"vTS" = ( -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"vTW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/upper_hull/u_m_p) -"vUe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/maint/hull/upper/u_f_s) +"uOQ" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/living/officer_study) -"vUr" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uOX" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 }, -/area/almayer/living/pilotbunks) -"vUy" = ( -/obj/structure/platform{ - dir = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"uPj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"uPy" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"uPH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/almayer/lifeboat_pumps/south1) -"vUB" = ( -/obj/structure/pipes/valve/digital/open{ +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"uPL" = ( +/obj/structure/toilet{ dir = 4 }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"uPV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/engineering/lower_engineering) -"vUJ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uPZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/weapon_room) -"vUK" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"uQg" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"uQi" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"uQq" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uQF" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/lifeboat_pumps/north1) -"vUM" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"uQH" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"uQP" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_f_p) -"vVb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"uQV" = ( +/obj/structure/machinery/landinglight/ds2{ dir = 8 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uQY" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"vVh" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/corporateliason) -"vVm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"uRe" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"uRf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"uRn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) +"uRv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 }, -/area/almayer/hull/upper_hull/u_f_p) -"vVy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"uRY" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 }, -/area/almayer/living/numbertwobunks) -"vVU" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"uSb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/squads/charlie) -"vVX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/obj/structure/pipes/vents/pump{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"uSh" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"uSq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/living/grunt_rnr) -"vWa" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"uSs" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 3"; + buildstate = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_m_p) -"vWe" = ( -/obj/structure/sign/safety/hvac_old{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"uSC" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"vWg" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"uSF" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/weapon_room) -"vWi" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"uSR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"uSV" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uTa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/window/reinforced{ +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - health = 80 + pixel_x = -14; + pixel_y = 13 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"vWj" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/bravo) -"vWr" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/u_f_p) +"uTc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"vWx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/engineering/engineering_workshop) -"vWB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/sign/safety/west{ + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"vWF" = ( -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_m_s) -"vWG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"vWK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"vWL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"vWX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tool/lighter/zippo/gold, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"vXe" = ( -/obj/structure/shuttle/part/dropship2/transparent/nose_top_left, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"vXl" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_f_p) +"uTt" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"uTu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"vXG" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/engineering/upper_engineering) -"vXH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"vXK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 + dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"vXR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/shipboard/navigation) +"uTx" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"uTA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"uTC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/lifeboat_pumps/south1) -"vXU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uTM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"vXW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/starboard_garden) +"uTS" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"uTT" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"uTU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"uTY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/squads/bravo) -"vYb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"vYc" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/lobby) +"uUm" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"uUn" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 }, -/area/almayer/living/numbertwobunks) -"vYl" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"uUI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"vYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/hallways/lower/port_midship_hallway) +"uUP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"uUR" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"uUY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/almayer/hallways/hangar) -"vYB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +"uVh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/squads/req) -"vYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 4"; + name = "\improper Courtyard Divider" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"uVj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/area/almayer/command/telecomms) -"vZg" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uVy" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; - icon_state = "sterile_green_side" + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" }, -/area/almayer/medical/chemistry) -"vZi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"uVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"vZj" = ( -/obj/structure/platform{ - dir = 8 +/area/almayer/hallways/lower/starboard_midship_hallway) +"uVH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"uVI" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/north2) -"vZs" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"uVS" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, -/area/almayer/squads/charlie) -"vZw" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"vZQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/area/almayer/command/telecomms) -"vZV" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"vZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 }, -/area/almayer/living/briefing) -"vZX" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uVU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"vZY" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"uVY" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"uWa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"wal" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, +/area/almayer/engineering/lower) +"uWJ" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, /turf/open/floor/almayer, -/area/almayer/command/corporateliason) -"wam" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/lifeboat_pumps/north1) +"uWO" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"wat" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/hull/upper_hull/u_m_s) -"waE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 }, -/area/almayer/hallways/aft_hallway) -"waF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + pixel_y = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"uWP" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"uWR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"uWZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"uXc" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/hull/lower/l_m_s) +"uXe" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; - name = "Brig"; + name = "\improper Evacuation Airlock SL-2"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uXf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/lobby) -"waL" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"uXh" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/pilotbunks) -"waO" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uXk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"uXm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"uXJ" = ( +/obj/structure/supply_drop/echo, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"uXO" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null }, -/area/almayer/squads/bravo) -"waV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uXQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_a_p) -"wbm" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"wbB" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"wbM" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"uXY" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, -/area/almayer/command/cichallway) -"wbN" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/area/almayer/living/offices/flight) +"uYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"uYz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/almayer, -/area/almayer/squads/bravo) -"wbQ" = ( +/area/almayer/living/auxiliary_officer_office) +"uYO" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"uYP" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "68" + }, +/area/almayer/hallways/hangar) +"uYT" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"uYU" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"uYV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"uYX" = ( +/turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wbV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"uYY" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 }, -/area/almayer/hallways/port_hallway) -"wbZ" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"uZc" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"uZm" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"wcn" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"uZA" = ( /obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 }, -/area/almayer/engineering/engineering_workshop) -"wco" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 }, -/area/almayer/hull/lower_hull/l_a_p) -"wcq" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"uZS" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"uZT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/almayer/engineering/engineering_workshop) -"wcC" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"uZZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"vai" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"vas" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/delta) -"wcE" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"vau" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/area/almayer/command/lifeboat) -"wcM" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vaJ" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, -/obj/structure/sign/safety/ammunition{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"vaQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"vaT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/hull/upper/u_f_p) +"vaX" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ pixel_x = 15; - pixel_y = 32 + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/sign/safety/west{ + pixel_y = -32 }, -/area/almayer/command/cic) -"wcQ" = ( -/obj/structure/sign/prop1, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"wda" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vbf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vbj" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vbo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"vby" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"vbN" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"vbR" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"vbW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/living/grunt_rnr) -"wdl" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17"; - buildstate = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"vbX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/obj/structure/sign/safety/rad_haz{ +/obj/structure/sign/safety/storage{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vca" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"wdo" = ( /obj/structure/machinery/door_control{ - id = "cl_shutters"; + id = "officers_mess"; name = "Privacy Shutters"; - pixel_y = -20; - req_access_txt = "200" + pixel_y = -19 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"vcj" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 }, -/area/almayer/hallways/aft_hallway) -"wdF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"wdR" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vcr" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"vcz" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" }, -/area/almayer/hull/upper_hull/u_f_s) -"wdT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"vcI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"wdU" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/area/almayer/command/cic) -"wek" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vcR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"vdc" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray, +/obj/item/tool/kitchen/utensil/pknife, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"vdf" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder3" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"vdh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"vdj" = ( +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"vdn" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/almayer/lifeboat_pumps/south2) -"wem" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"vdw" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vdz" = ( +/obj/structure/surface/rack, /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; icon = 'icons/obj/janitor.dmi'; @@ -71502,3597 +56046,4341 @@ icon = 'icons/obj/janitor.dmi'; icon_state = "trashbag3"; name = "trash bag"; - pixel_x = 5; + pixel_x = 3; pixel_y = -2 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vdG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/engineering/upper_engineering/port) -"wer" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"weE" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vdL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vdQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vdU" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"vdY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vee" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"vek" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"veo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/general_equipment) +"vet" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"veB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"veI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"veN" = ( +/obj/structure/machinery/light/containment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"veO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"vfc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"vfg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/bed/chair/office/dark, +/obj/item/clothing/head/cmcap{ + pixel_x = -2; + pixel_y = 9 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) -"weJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/hallways/hangar) +"vfr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 }, -/area/almayer/hallways/stern_hallway) -"weK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"vft" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vfw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"vfG" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 }, -/area/almayer/command/lifeboat) -"weS" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"vfN" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 }, -/area/almayer/shipboard/sea_office) -"weU" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"vfP" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"vgc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"vgn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/general_equipment) +"vgB" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"vgH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vgO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "orangecorner" + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" }, -/area/almayer/squads/bravo) -"weY" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"vgS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck{ + desc = "A simple deck of playing cards. You could play Caravan with these!"; + pixel_y = 12 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower_engineering) -"wfm" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 4 }, -/area/almayer/hull/lower_hull/l_f_p) -"wfJ" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/item/clothing/mask/cigarette{ + pixel_x = -2; + pixel_y = -2 }, -/area/almayer/hallways/stern_hallway) -"wfP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"vgW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/living/port_emb) -"wfS" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"vgZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vhh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/laundry) -"wfZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"vib" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"vil" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/living/briefing) -"wgb" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = -16 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wge" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"wgf" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"vio" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"viE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"viL" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/space) -"wgy" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"viS" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"wgI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/vehiclehangar) -"wgJ" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, -/area/space) -"wgN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"viV" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"vjg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 +/turf/open/floor/almayer, +/area/almayer/living/offices) +"vjl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"vjr" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/living/briefing) -"wgS" = ( -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vjs" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/chief_mp_office) +"vju" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) -"wgU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"vjw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vjS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/command/telecomms) -"whf" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"vjW" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; pixel_y = 7 }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vkd" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"vkj" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vkm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" }, -/area/almayer/hull/lower_hull/l_f_p) -"whj" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/medical/operating_room_two) -"whp" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"vkq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"vkv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vkw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"vkC" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"whw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/chemistry) -"whz" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"vkL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/medical/lower_medical_medbay) -"whH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"vkX" = ( +/obj/structure/bed/chair{ dir = 4 }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"vlb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"vlc" = ( +/obj/structure/pipes/unary/outlet_injector, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"vlh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"vll" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"whL" = ( -/obj/structure/machinery/power/apc, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/area/almayer/living/briefing) +"vlo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/squads/delta) -"whY" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + dir = 8; + name = "\improper Containment Airlock" }, -/area/almayer/hull/upper_hull/u_m_s) -"wik" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) -"wjn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"wjM" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"vlz" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"wjN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"vlO" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"wjW" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/repair_bay) -"wka" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"vlQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 }, -/area/almayer/medical/lockerroom) -"wkb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/pen{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/obj/item/clipboard{ + pixel_x = -8 }, -/area/almayer/living/basketball) -"wkc" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "34" +/obj/item/folder/white{ + pixel_x = -8 }, -/area/almayer/hallways/hangar) -"wke" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wkj" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"wkk" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"vlV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/lower_medical_medbay) -"wky" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"vma" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/area/almayer/living/cryo_cells) -"wkR" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vmc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"wkT" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/almayer/test_floor4, /area/almayer/command/cichallway) -"wkY" = ( -/obj/structure/machinery/light{ - dir = 1 +"vme" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vmh" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"vmj" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"vmn" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"vmo" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"vmp" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/warden_office) +"vmq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/shipboard/brig/cic_hallway) -"wlg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"vmz" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"wlx" = ( -/obj/structure/pipes/vents/scrubber, /obj/structure/sign/safety/ammunition{ pixel_x = 15; pixel_y = 32 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vmA" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"vmJ" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 }, -/area/almayer/shipboard/brig/general_equipment) -"wlz" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 }, -/area/almayer/medical/lower_medical_medbay) -"wlT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"vmK" = ( +/obj/structure/supply_drop/alpha, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/starboard_hallway) -"wmc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 +/turf/open/floor/plating, +/area/almayer/squads/req) +"vmL" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"vmR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"vna" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/shipboard/brig/main_office) -"wmg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"vnb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"wmn" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/living/cryo_cells) -"wmo" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/area/almayer/shipboard/starboard_point_defense) +"vnn" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vnp" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 }, -/area/almayer/living/port_emb) -"wmq" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vnv" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vnE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/squads/delta) -"wmw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"vnH" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 }, -/area/almayer/engineering/engine_core) -"wmx" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 }, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vov" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" }, -/area/almayer/engineering/upper_engineering/port) -"wmM" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"vow" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"voB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/main_office) -"wmP" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"voK" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"vpa" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"wmY" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"vpe" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"vph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/engineering/lower_engineering) -"wnh" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"vpi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) -"wnn" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vpn" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/living/gym) -"wnC" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; +/obj/structure/sign/safety/ammunition{ pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"wnF" = ( -/turf/open/floor/almayer{ - icon_state = "emerald" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"vpx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"vpC" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"vpQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/briefing) -"wnP" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"vpR" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 }, -/area/almayer/engineering/lower_engineering) -"wnU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"vpV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/hallways/aft_hallway) -"wnW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vqf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vqo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"vqX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"vra" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/almayer/command/cic) -"woc" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/port_missiles) -"woe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"vrb" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"vrh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" }, -/area/almayer/command/lifeboat) -"woj" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"vrl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"vrs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"vru" = ( /obj/structure/ladder{ - height = 2; + height = 1; id = "ForePortMaint" }, /obj/structure/sign/safety/ladder{ - pixel_x = -17 + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"woA" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/almayer/maint/hull/lower/l_f_p) +"vrD" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vrL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vrR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"vrY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"vrZ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) +"vsj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"vsl" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"vsD" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"vsJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"vsU" = ( +/obj/structure/disposalpipe/down/almayer{ dir = 4; - icon_state = "orange" + id = "almayerlink_OT_req" }, -/area/almayer/hallways/starboard_hallway) -"woH" = ( -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"vtb" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"vtd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vte" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_p) +"vth" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/cryo) +"vtj" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"vtn" = ( +/turf/open/floor/almayer/sterile_green_side/west, /area/almayer/medical/upper_medical) -"woV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"vto" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vtp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_f_p) -"wph" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"vtK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper) +"vtR" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vtT" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vue" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"vuh" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vuy" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"wpp" = ( -/obj/effect/decal/cleanable/cobweb, +/area/almayer/maint/hull/upper/u_m_p) +"vuB" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"vuE" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"wpq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 +/obj/item/paper, +/obj/item/device/whistle, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -17 }, -/obj/item/storage/bible, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"vuL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/pilotbunks) -"wpw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/area/almayer/hallways/stern_hallway) -"wpz" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"vuX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 }, -/area/almayer/hallways/starboard_umbilical) -"wpF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"vvf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/engine_core) -"wpI" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"vvk" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"vvv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"vvx" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"vvz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"vvE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/charlie) -"wpK" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/port) -"wpT" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "42" - }, -/area/almayer/hallways/hangar) -"wqb" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"wql" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vvT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"vvY" = ( /obj/structure/disposalpipe/segment{ - dir = 1; + dir = 2; icon_state = "pipe-c" }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"wqE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +/area/almayer/engineering/upper_engineering) +"vwm" = ( +/obj/structure/machinery/shower{ + dir = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"wqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "orange" + health = 80 }, -/area/almayer/hallways/stern_hallway) -"wqQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"vwx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/area/almayer/command/cichallway) -"wqT" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc{ - dir = 1 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"vwB" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vwH" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"vwJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/port_point_defense) -"wqW" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wrf" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vwU" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"vwY" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 }, -/area/almayer/powered/agent) -"wri" = ( -/obj/structure/platform{ - dir = 8 +/turf/open/space, +/area/space) +"vxz" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sink{ + pixel_y = 24 }, -/area/almayer/lifeboat_pumps/north1) -"wrq" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wrr" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering/port) +"vxA" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/sink{ + pixel_y = 16 }, -/area/almayer/engineering/ce_room) -"wrt" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 +/obj/structure/mirror{ + pixel_y = 21 }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"vxB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/shipboard/brig/cic_hallway) -"wry" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, +/turf/open/floor/almayer/cargo_arrow/west, /area/almayer/squads/bravo) -"wrz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +"vxE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/engineering/engine_core) -"wrO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"vxP" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty, +/area/supply/station) +"vxR" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/area/almayer/shipboard/navigation) -"wrU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"vym" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"vyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 }, -/area/almayer/squads/charlie_delta_shared) -"wrV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"wsk" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" +/obj/item/tool/kitchen/tray{ + pixel_y = 12 }, +/turf/open/floor/prison/kitchen, /area/almayer/living/grunt_rnr) -"wsw" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"wsU" = ( -/obj/structure/pipes/vents/pump{ +"vze" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vzf" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 }, -/area/almayer/living/cryo_cells) -"wsY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"vzi" = ( +/obj/structure/target{ + name = "punching bag" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"wtc" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"vzq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vzz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vzM" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 }, -/area/almayer/hull/lower_hull/l_a_p) -"wtk" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"vzP" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 }, -/area/almayer/medical/lower_medical_medbay) -"wto" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vzU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"vAm" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"vAn" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"vAz" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vAM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 + }, /obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/plate, /area/almayer/hallways/hangar) -"wtx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"wtB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +"vAO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/redfull, /area/almayer/shipboard/port_missiles) -"wtU" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_m_p) -"wui" = ( +"vBb" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc{ - dir = 8 - }, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/chemistry) -"wul" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/item/stack/rods{ + amount = 40 }, -/area/almayer/hallways/aft_hallway) -"wun" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/obj/item/device/lightreplacer, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"vBe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"wuv" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer{ - icon_state = "plate" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/squads/delta) -"wuK" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"vBi" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"vBv" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/hull/lower_hull/l_f_s) -"wuQ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"vBC" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/starboard_point_defense) -"wuX" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"vBL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"vBS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/hangar) -"wuY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"vCb" = ( /obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/item/pipe{ + dir = 9 }, -/area/almayer/lifeboat_pumps/south1) -"wve" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/item/tool/crowbar/red{ + pixel_x = 17 }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"vCg" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/almayer/medical/containment) -"wvf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" }, +/turf/open/floor/almayer, /area/almayer/living/briefing) -"wvi" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 +"vCl" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PL-3"; + req_access = null }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/plating, +/area/almayer/powered) +"vCt" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 }, -/area/almayer/shipboard/brig/cic_hallway) -"wvF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "greencorner" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"vCB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/port_hallway) -"wvR" = ( -/obj/structure/machinery/power/apc{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vCI" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"vCJ" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 }, -/area/almayer/shipboard/brig/evidence_storage) -"wvV" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vCN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"vCR" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 }, -/area/almayer/command/cic) -"wwg" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"vCX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/obj/structure/platform{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"wwj" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hull/upper_hull/u_m_p) -"wwm" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"wwu" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"wwy" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"wwD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/medical/lower_medical_medbay) -"wwH" = ( -/obj/structure/machinery/light{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"vDh" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/aft_hallway) -"wwR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vDm" = ( +/obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"wwY" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wxg" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +/area/almayer/maint/hull/lower/l_f_s) +"vDu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/engineering_workshop/hangar) -"wxC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 + icon_state = "S" }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/research/containment/corner3, +/area/almayer/medical/containment/cell) +"vDW" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"vDY" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vEa" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"wxV" = ( -/obj/structure/closet/medical_wall{ - pixel_x = 30 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"vEd" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"wyf" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = -32 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"vEe" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_x = 6; - pixel_y = -24; - req_access_txt = "3" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vEf" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"wys" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/area/almayer/living/tankerbunks) +"vEz" = ( +/obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vEV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/command/lifeboat) -"wyx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"vFp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"vFu" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/almayer/shipboard/starboard_missiles) -"wyz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = 8; + vector_y = 100 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"vFB" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) +"vFC" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"vFK" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"vGs" = ( +/obj/structure/toilet{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"wyI" = ( -/obj/structure/machinery/light/small{ +/area/almayer/maint/hull/upper/u_a_s) +"vGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_s) -"wza" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +/area/almayer/hallways/upper/aft_hallway) +"vGx" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"vGA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"vGC" = ( +/obj/effect/attach_point/crew_weapon/dropship2, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"vGE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/shipboard/brig/perma) -"wzh" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/port) -"wzj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"vGQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"vHg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"vHp" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 }, -/area/almayer/medical/containment/cell/cl) -"wzn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vHx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) -"wzx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"vHF" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 }, -/area/almayer/hull/upper_hull/u_m_s) -"wzy" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"wzB" = ( -/obj/effect/landmark/crap_item, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"wzD" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "89" - }, -/area/almayer/hallways/hangar) -"wzQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/area/almayer/shipboard/brig/chief_mp_office) +"vHG" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vHM" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" }, -/turf/closed/wall/almayer/outer, -/area/almayer/hull/lower_hull/l_a_p) -"wzY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"vHN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"wAl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"wAr" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/stairs{ + pixel_x = -15 }, -/area/almayer/shipboard/port_missiles) -"wBb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"vHX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 }, -/area/almayer/hallways/stern_hallway) -"wBd" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"vIh" = ( /obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/weapon_room) -"wBg" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"vIk" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"vJb" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vJc" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"vJi" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"vJu" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"vJy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/medical/operating_room_two) -"wBo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wBz" = ( +/turf/open/floor/plating, +/area/almayer/living/chapel) +"vJL" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"wBJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/engineering/engineering_workshop) -"wBK" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc{ +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"vJP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"vJR" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null }, -/area/almayer/hull/upper_hull/u_a_p) -"wBY" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/squads/charlie_delta_shared) -"wBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"vKl" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"vKv" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "19" + }, +/area/almayer/hallways/hangar) +"vKI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hallways/starboard_hallway) -"wCa" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vKJ" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"wCc" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"vKK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"vKP" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/area/almayer/living/grunt_rnr) -"wCq" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vLg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vLi" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"vLw" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vLz" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"vLB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/obj/item/storage/firstaid/adv, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vLD" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" + dir = 8 }, -/area/almayer/medical/lower_medical_lobby) -"wCu" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"vLG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" }, +/obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"vLJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"vLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/hallways/port_hallway) -"wCy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 }, -/area/almayer/living/grunt_rnr) -"wCE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"vLO" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vLY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"vLZ" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"vMc" = ( +/obj/structure/shuttle/part/dropship2/lower_left_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"vMp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/charlie) -"wCH" = ( -/obj/structure/toilet{ - pixel_y = 13 +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"vMv" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vMB" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"vMC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"vMU" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vMX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, -/area/almayer/shipboard/brig/perma) -"wCP" = ( -/obj/structure/phone_base/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"vNc" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 }, -/area/almayer/squads/req) -"wCS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"vNg" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"vNs" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"vNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/living/bridgebunks) -"wDe" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/medical/lower_medical_medbay) -"wDB" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/surface/rack, +/obj/item/parachute{ + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 }, -/area/almayer/hull/lower_hull/l_a_p) -"wDG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "blue" +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) +"vNW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/prop3{ + pixel_x = 28 }, -/area/almayer/hallways/aft_hallway) -"wDJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/item/clothing/mask/gas{ + pixel_y = 7 }, -/area/almayer/living/cryo_cells) -"wDU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/clothing/mask/gas{ + pixel_y = 3 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 }, -/area/almayer/medical/medical_science) -"wDV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vOg" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vOl" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/hull/lower_hull/l_m_p) -"wEc" = ( -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vOn" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"vOr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_f_s) -"wEd" = ( -/obj/structure/closet/secure_closet/guncabinet, -/turf/open/floor/almayer{ +/obj/structure/barricade/handrail{ dir = 1; - icon_state = "red" + pixel_y = 2 }, -/area/almayer/shipboard/brig/main_office) -"wEe" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/vending/cigarette, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 7; + pixel_y = 11 }, -/area/almayer/hull/upper_hull/u_a_s) -"wEf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 19 }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"vOu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 }, -/area/almayer/squads/delta) -"wEi" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vOJ" = ( +/obj/structure/toilet{ + dir = 8 }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/door/window/tinted{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"vPj" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = -24; + req_access_txt = "25" }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"vPn" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"wEx" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vPq" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/engineering/engine_core) -"wEB" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"vPD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/shipboard/navigation) -"wEF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"vPF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"wEK" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 +/area/almayer/hallways/lower/port_umbilical) +"vPM" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vPN" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/hull/upper/u_a_p) +"vPS" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"vPY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" }, -/area/almayer/hull/lower_hull/l_m_s) -"wEM" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/hangar) -"wEN" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"vPZ" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vQk" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/operating_room_two) -"wFb" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"vQq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wFj" = ( -/obj/structure/disposalpipe/segment, +/area/almayer/squads/bravo) +"vQs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 + dir = 6 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"vRl" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"vRI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"vRJ" = ( +/obj/structure/machinery/light{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vSB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/area/almayer/squads/bravo) -"wFm" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"vSI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/living/grunt_rnr) -"wFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"vSP" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_one) +"vSX" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"vTc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"vTj" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vTx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/medical/lower_medical_medbay) -"wFO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/area/almayer/living/grunt_rnr) -"wFV" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"vTE" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" }, -/area/almayer/hallways/aft_hallway) -"wGl" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"vUi" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/starboard_hallway) -"wGt" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"vUl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"wGz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"vUP" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"vUQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"wGI" = ( +/area/almayer/maint/hull/lower/l_f_p) +"vVp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/lifeboat_pumps/south1) -"wGQ" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"vVH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/aft_hallway) +"vWb" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"vWi" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/almayer/hallways/starboard_hallway) -"wGT" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/area/almayer/hallways/stern_hallway) -"wHi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"vWn" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"wHp" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"vWt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/command/telecomms) -"wHs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"vWB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"wHQ" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/liaison_suit/formal, -/obj/item/clothing/under/liaison_suit, -/obj/item/clothing/under/liaison_suit/outing, -/obj/item/clothing/under/liaison_suit/suspenders, -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" +/area/almayer/lifeboat_pumps/north2) +"vWG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"vWI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vWQ" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/outing/red, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"vWX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"wHR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/obj/item/tool/lighter/zippo/gold, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"vWY" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vXe" = ( +/obj/structure/shuttle/part/dropship2/transparent/nose_top_left, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"vXi" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/starboard_garden) +"vXx" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"vXJ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/cells) -"wId" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 }, -/area/almayer/living/pilotbunks) -"wIf" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vXK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/repair_bay) -"wIm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"vXL" = ( /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"wIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vXN" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"vXT" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/shipboard/brig/medical) +"vYb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/aft_hallway) -"wIx" = ( -/obj/structure/machinery/light, +/obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, -/area/almayer/living/offices) -"wIy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"vYk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/command/computerlab) -"wIA" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vYH" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"wIC" = ( -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 }, -/area/almayer/engineering/upper_engineering) -"wIG" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"vYL" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"vZi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/squads/delta) -"wIJ" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vZr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"vZw" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"vZL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/almayer/shipboard/brig/cic_hallway) -"wIX" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/port_hallway) -"wJa" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cichallway) -"wJh" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_s) -"wJp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vZY" = ( /obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "greenfull" - }, -/area/almayer/living/offices) -"wJt" = ( +/obj/item/storage/box/gloves, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"wJv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"wab" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"wJw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/port_hallway) -"wJC" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wac" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"wbl" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hull/lower_hull/l_m_s) -"wJF" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/port) -"wJJ" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"wbB" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"wbJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"wbM" = ( +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"wbN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"wbO" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/engineering/upper_engineering/port) -"wJL" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wci" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"wcu" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; pixel_x = -16; pixel_y = -16 }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wcA" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"wKi" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/stern_hallway) -"wKO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"wcQ" = ( +/obj/structure/sign/prop1, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"wcV" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/almayer{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) -"wKR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 + health = 80 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"wcX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wdc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"wdd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"wLp" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_s) -"wLy" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"wLz" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"wLH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/engineering/port_atmos) -"wMf" = ( -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/living/grunt_rnr) -"wMq" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"wMU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wde" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wdh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, /area/almayer/squads/req) -"wNf" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/north1) -"wNh" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"wNm" = ( -/obj/structure/machinery/vending/walkman, +"wdB" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"wdF" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"wNG" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +/area/almayer/living/numbertwobunks) +"wdK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"wdT" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hull/upper_hull/u_a_s) -"wNJ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"weg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_umbilical) -"wNW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"weD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/shipboard/weapon_room) -"wNX" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/cic) -"wOa" = ( -/obj/structure/bed/chair, -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"weF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/cryo{ - pixel_x = 21; - pixel_y = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"weI" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/processing) -"wOm" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"wOn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 + name = "ship-grade camera" }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"weO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"weP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"weR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"weT" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/shipboard/brig/cic_hallway) -"wOt" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wfd" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/starboard_garden) +"wfp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/cryo_cells) -"wOz" = ( -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/machinery/status_display{ + pixel_y = -29 }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"wfr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W" }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"wfu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/turf/open/floor/almayer/research/containment/corner_var1{ - dir = 4 +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"wfw" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"wfD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/medical/containment/cell) -"wOH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/area/almayer/hallways/port_hallway) -"wOT" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"wfL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight{ + disabled = 1 }, -/area/almayer/hull/upper_hull/u_a_p) -"wOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"wgb" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"wPf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/area/almayer/engineering/upper_engineering/notunnel) +"wgc" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"wge" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"wgj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" }, -/turf/open/floor/almayer{ - allow_construction = 0 +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"wgr" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/shipboard/brig/lobby) -"wPn" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"wgw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"wPp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"wgB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wgK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hull/lower_hull/l_f_p) -"wPq" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "dccbunk"; - name = "\improper Privacy Shutters" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"wgY" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -10; + vector_y = 102 }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"whc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 + dir = 2 }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"wPv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"whv" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"whG" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"whI" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"whO" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"wia" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"wii" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, -/area/almayer/engineering/upper_engineering/port) -"wPy" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wil" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"wim" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"wiW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wjg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/almayer/engineering/upper_engineering) -"wPJ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"wjk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wjy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/shipboard/brig/perma) -"wQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"wjB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"wjV" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, /area/almayer/squads/alpha) -"wQi" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wkc" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "34" }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/area/almayer/hallways/hangar) +"wkj" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"wQA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/almayer/engineering/port_atmos) +"wkF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"wkT" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "silver" + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/area/almayer/hallways/repair_bay) -"wQK" = ( +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"wkZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"wld" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"wlg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, -/area/almayer/living/port_emb) -"wQR" = ( -/obj/structure/bed{ - icon_state = "abed" + dir = 6 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"wli" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"wlk" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"wlv" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wlG" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wlQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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/bedsheet/orange{ - pixel_y = 12 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/bedsheet/orange{ - layer = 3.2 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/window/reinforced{ +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"wmg" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" + icon_state = "pipe-c" }, -/area/almayer/engineering/upper_engineering/port) -"wQT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wRd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/area/almayer/medical/morgue) +"wmD" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"wna" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" }, -/area/almayer/engineering/lower_engineering) -"wRj" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"wnb" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wnj" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"wnr" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wnu" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"wnB" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/area/almayer/hull/lower_hull/l_m_s) -"wRn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wnM" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"woc" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/port_missiles) +"wof" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 1"; + buildstate = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"wog" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"woh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"woi" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 }, -/area/almayer/hallways/port_hallway) -"wRo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/squads/delta) -"wRD" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"wop" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 }, -/obj/item/storage/bag/plants{ - pixel_x = 3 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/storage/bag/plants{ - pixel_y = -3 +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"woK" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"woP" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"woR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"woU" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 10; + vector_y = -96 }, -/area/almayer/living/grunt_rnr) -"wRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"wph" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"wpj" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"wpk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"wRT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wpr" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Dropship Remote Control Console"; - pixel_y = 12; - shuttleId = "dropship_alamo"; - disabled = 1 +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"wpD" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wpQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"wpT" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "42" }, -/area/almayer/living/offices/flight) -"wSd" = ( -/obj/structure/bed/chair{ - dir = 4 +/area/almayer/hallways/hangar) +"wqc" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wqC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/blue/southwest, /area/almayer/squads/delta) -"wSw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room/notunnel) -"wSE" = ( -/obj/structure/machinery/light{ - dir = 1 +"wqS" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqV" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"wqY" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"wrn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/area/almayer/command/computerlab) -"wSF" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"wrq" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"wry" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"wrE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_lobby) -"wSJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"wrF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"wrG" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"wrW" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"wsh" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 }, -/area/almayer/medical/lower_medical_lobby) -"wSK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wsm" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"wST" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"wst" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/shipboard/weapon_room) -"wTd" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/command/computerlab) -"wTQ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"wTS" = ( -/obj/structure/machinery/door_control{ - id = "cl_shutters 3"; - name = "Quarters Shutters"; - pixel_x = 25; - req_access_txt = "200" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"wUf" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"wsF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wUm" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, -/area/almayer/command/cic) -"wUr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wsG" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"wUB" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wsH" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"wsM" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/living/offices) -"wUE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"wsP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wsS" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"wtf" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wtm" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/two, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"wtn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wto" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/living/offices/flight) -"wUT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/emails{ +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade/handrail{ dir = 1; pixel_y = 2 }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"wVe" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/tankerbunks) -"wVi" = ( +/area/almayer/hallways/hangar) +"wtC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/main_office) -"wVj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"wVk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"wtE" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, +/turf/open/floor/almayer/orange, /area/almayer/engineering/upper_engineering) -"wVu" = ( +"wtI" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"wVA" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 }, -/obj/structure/platform{ - dir = 4 +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"wVB" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wtM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"wtP" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 }, -/area/almayer/hull/upper_hull/u_m_p) -"wVM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"wtS" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 }, -/area/almayer/engineering/upper_engineering/starboard) -"wVR" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wVS" = ( +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wtY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"wtZ" = ( /obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" }, -/area/almayer/hallways/starboard_umbilical) -"wWd" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wud" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) +"wuh" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wus" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"wuy" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wuS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"wvj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wvt" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) +"wvv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/telecomms) -"wWj" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"wvJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/squads/charlie) -"wWJ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/processing) -"wWS" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"wwg" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"wwo" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hull/upper_hull/u_f_p) -"wWU" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"wwt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/engineering/upper_engineering) -"wXh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) -"wXi" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/hull/lower_hull/l_a_p) -"wXt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" }, -/area/almayer/medical/lockerroom) -"wXC" = ( -/obj/structure/sign/safety/nonpress_0g{ +/obj/structure/sign/safety/bulkhead_door{ pixel_y = 32 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_umbilical) -"wXJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wwu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/shipboard/brig/perma) -"wXU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"wwN" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"wxb" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"wXX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wxi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"wYj" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "orange" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"wxk" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"wxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/port) -"wYs" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"wxA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/stern_hallway) -"wYz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/starboard_emb) -"wYC" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"wYE" = ( -/obj/structure/disposalpipe/trunk{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ dir = 1 }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"wYF" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/command/computerlab) -"wYN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/port_hallway) -"wYP" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wxJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"wZb" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"wxQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/sign/safety/storage{ + pixel_y = 32 }, -/area/almayer/squads/charlie_delta_shared) -"wZf" = ( -/obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "NW-out"; + pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wxV" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 }, -/area/almayer/hallways/port_umbilical) -"wZx" = ( -/turf/open/floor/almayer/research/containment/floor2{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wxY" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"wye" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"wyf" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = -32 }, -/area/almayer/medical/containment/cell/cl) -"wZE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_access_txt = "3" }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wyg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"wZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"wyN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) -"wZJ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_missiles) -"wZS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/area/almayer/engineering/lower/workshop/hangar) +"wyQ" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 }, -/area/almayer/command/cichallway) -"wZY" = ( /obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"wzi" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"wzy" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"wzD" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "89" }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +/area/almayer/hallways/hangar) +"wzM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/living/briefing) -"xak" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha_bravo_shared) -"xas" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"wzR" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"wzS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"wAv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1 }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"wAw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wAV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"wBa" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"wBc" = ( +/obj/structure/platform_decoration{ + dir = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wBk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/bedsheet/red{ - layer = 3.2 +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/bedsheet/red{ - pixel_y = 13 +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_a_s) +"wBo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wBp" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 }, -/area/almayer/living/starboard_emb) -"xat" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wBu" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/synthcloset) -"xay" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wBx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/area/almayer/engineering/upper_engineering/starboard) -"xaz" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wBy" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wBG" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 }, -/area/almayer/engineering/upper_engineering) -"xaL" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"wBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, +/turf/open/floor/almayer/silver/east, /area/almayer/command/cic) -"xaP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" +"wCr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/almayer/hallways/starboard_hallway) -"xaR" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"xbh" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"wCv" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"wCw" = ( /obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"wCz" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" }, -/area/almayer/hull/upper_hull/u_m_s) -"xbC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/port_point_defense) -"xbP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_a_p) -"xbQ" = ( -/obj/structure/sink{ - pixel_y = 24 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"xcj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"wCK" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wCV" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/aft_hallway) +"wDj" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"wDI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/area/almayer/medical/operating_room_one) -"xcm" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wDM" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"wEa" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/almayer/hull/upper_hull/u_a_s) -"xcF" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"wEh" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xcM" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"wEy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wEI" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wFu" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"wFC" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/almayer/hallways/hangar) +"wFJ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" }, -/area/almayer/squads/alpha) -"xcO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"xcQ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"wFX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/hallways/hangar) -"xcS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"wGp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"wGz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"xcV" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"wGE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"xcY" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_missiles) -"xda" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"wGU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Power Control Room"; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;6" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"wGV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/upper_engineering/port) -"xdc" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/aft_hallway) +"wHg" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" }, -/obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer/research/containment/corner_var1{ - icon_state = "containment_corner_variant_2" +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"wHi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/area/almayer/medical/containment/cell) -"xdo" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/aft_hallway) -"xdq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/port_point_defense) -"xdv" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" +/area/almayer/shipboard/brig/chief_mp_office) +"wHm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/shipboard/brig/processing) -"xdw" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 }, -/area/almayer/medical/operating_room_four) -"xdJ" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"wHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"xdS" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, /area/almayer/command/lifeboat) -"xdY" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/command/telecomms) -"xeb" = ( +"wHx" = ( /obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"wHK" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 }, -/area/almayer/shipboard/weapon_room) -"xeD" = ( -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_a_p) -"xeQ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wHM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/engineering/upper_engineering/starboard) -"xeW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wIj" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"wIr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/area/almayer/medical/medical_science) -"xfb" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"wIt" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/hangar) -"xfc" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"xfg" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"wIx" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/lifeboat_pumps/south1) -"xfo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/powered) -"xfq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"xfr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer, +/area/almayer/living/offices) +"wIA" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/shipboard/brig/main_office) -"xft" = ( -/obj/structure/pipes/vents/scrubber, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"wIQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/shipboard/brig/cic_hallway) -"xfD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wJt" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"wJB" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"wJL" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 }, -/area/almayer/medical/upper_medical) -"xfN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 }, -/area/almayer/lifeboat_pumps/south1) -"xgc" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 }, -/area/almayer/engineering/lower_engineering) -"xgx" = ( -/obj/structure/toilet{ - dir = 1 +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"wKo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"wKr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) -"xgz" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wKG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wKM" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wKP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wLe" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"wLj" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"wLr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"wLs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"xgI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/general_equipment) +"wLv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"xgV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -6 +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wLF" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 9 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"xgX" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"wLI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ - dir = 4; + dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"xhi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"wLJ" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"wLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"xhx" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"wLY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"wMe" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"wMg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"wMo" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/shipboard/brig/cryo) -"xhB" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wMp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "green" +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/living/offices) -"xhD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"wMr" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"xhQ" = ( -/obj/structure/disposalpipe/trunk{ +/obj/structure/platform_decoration{ dir = 1 }, -/obj/structure/machinery/disposal/broken, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.1; - pixel_x = -7; - pixel_y = 16 +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wMx" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/port_emb) -"xhY" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xic" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"wMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; pixel_y = 16 }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; +/obj/item/clothing/head/hardhat{ + pixel_x = 10; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; +/obj/item/clothing/suit/storage/hazardvest{ pixel_x = 1 }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/containment) -"xid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"xig" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"xil" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"xin" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"wME" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"xiD" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown"; - name = "\improper Perma Cells Lockdown"; - pixel_x = 24; - pixel_y = 6; - req_access_txt = "3" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/brig/perma) -"xiH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"xiK" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"xiQ" = ( -/turf/closed/wall/almayer, +/turf/open/floor/almayer/red/north, /area/almayer/squads/alpha) -"xiZ" = ( +"wMK" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"wMW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/area/almayer/engineering/lower_engineering) -"xjd" = ( -/turf/open/floor/almayer{ +/obj/structure/bed/chair/vehicle{ dir = 1; - icon_state = "blue" - }, -/area/almayer/command/cichallway) -"xjg" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, -/area/almayer/powered) -"xjl" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/hallways/hangar) +"wNa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"wNk" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"wNm" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"wNn" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/area/almayer/hull/upper_hull/u_f_p) -"xjm" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"wNC" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"wNF" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"xjn" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"wOb" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wOc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"wOk" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, -/turf/open/floor/almayer{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"wOp" = ( +/obj/structure/sink{ dir = 1; - icon_state = "cargo_arrow" + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"wOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/squads/delta) -"xjK" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"xjS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orange" +/area/almayer/lifeboat_pumps/north2) +"wPc" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, -/area/almayer/engineering/upper_engineering) -"xjT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/turf/closed/wall/almayer, -/area/almayer/hull/lower_hull/l_m_p) -"xjX" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"wPi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wPl" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"wPq" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk2"; + id = "dccbunk"; name = "\improper Privacy Shutters" }, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -75100,338 +60388,324 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"xjZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"xkj" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"xku" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"xle" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"wPu" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/grunt_rnr) -"xlf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"wPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 }, -/area/almayer/living/gym) -"xlm" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"wPQ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/lockerroom) -"xlY" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 +"wQb" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 }, -/area/almayer/hallways/vehiclehangar) -"xmc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"wQf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" + dir = 1 }, -/area/almayer/command/cichallway) -"xmr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"wQj" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"wQt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"wQu" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/command/lifeboat) -"xmN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/squads/alpha_bravo_shared) -"xmT" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"wQC" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wQJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"wQM" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"wQT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"wRa" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"wRk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"wRr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/almayer/squads/delta) -"xmX" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/medical/operating_room_two) -"xmY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) +"wRE" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 4"; + buildstate = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"wRL" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/command/cic) -"xne" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"wRY" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wSd" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"xng" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/shipboard/navigation) -"xnz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"xnE" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"xnH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"wSk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/alpha) -"xnS" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"wSu" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"wSw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room/notunnel) +"wSC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/area/almayer/shipboard/weapon_room) -"xos" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"wSF" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"xox" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_lobby) +"wSR" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wSU" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" }, -/area/almayer/medical/upper_medical) -"xoY" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"wTf" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"wTt" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"xpb" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_p) -"xpf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/aft_hallway) -"xph" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/hallways/lower/port_midship_hallway) +"wTA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wTG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"wTL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"wTO" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"wTX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/aft_hallway) -"xpn" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/engineering/upper_engineering/port) -"xps" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"xpv" = ( -/obj/structure/shuttle/part/dropship2/right_inner_wing_connector, -/turf/open/space/basic, -/area/almayer/hallways/hangar) -"xpK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wUd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"xpR" = ( -/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wUf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"xpV" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wUn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"wUo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/area/almayer/squads/req) -"xpZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"wUr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"wUG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/almayer/plate, /area/almayer/living/briefing) -"xqc" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"xqe" = ( +"wUJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"wUQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 }, -/area/almayer/engineering/upper_engineering) -"xqm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"xqu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) +"wUS" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"wUT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"wUV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/living/pilotbunks) -"xqx" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"wVc" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"wVe" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/tankerbunks) +"wVA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/obj/structure/platform{ + dir = 4 }, -/area/almayer/engineering/upper_engineering) -"xqz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"wVH" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/blue{ + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_f_s) -"xqT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xqV" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/item/clothing/head/ushanka{ + layer = 3.3 }, /obj/structure/window/reinforced{ dir = 4; @@ -75443,180 +60717,219 @@ layer = 3.3; pixel_y = 4 }, +/obj/structure/bed, /obj/structure/bed{ buckling_y = 13; layer = 3.5; pixel_y = 13 }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/medical{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/living/starboard_emb) -"xqX" = ( -/obj/structure/platform{ +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"wVI" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/repair_bay) -"xqY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"xrc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) -"xrA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xrG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"wVR" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wWc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_a_s) -"xrK" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 }, -/area/almayer/shipboard/brig/main_office) -"xrV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wWw" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"wWB" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wWJ" = ( /turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"xsi" = ( +/area/almayer/shipboard/brig/processing) +"wWP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"xso" = ( -/obj/effect/attach_point/fuel/dropship2{ - pixel_x = -32 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "33" +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wWW" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/area/almayer/hallways/hangar) -"xsp" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4 }, -/turf/open/floor/almayer{ +/obj/structure/bed/chair{ + can_buckle = 0; dir = 4; - icon_state = "red" + pixel_x = 1; + pixel_y = 3 }, -/area/almayer/hallways/starboard_hallway) -"xsA" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 }, -/area/almayer/shipboard/port_missiles) -"xsE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wXa" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"wXo" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"wXq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/squads/charlie_delta_shared) -"xsJ" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"wXO" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"wXT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/almayer/command/telecomms) -"xsM" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"wXX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xsN" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/area/almayer/shipboard/navigation) +"wYf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"wYk" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"wYz" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"xsT" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/almayer, +/area/almayer/living/starboard_emb) +"wYR" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"xsY" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"wZh" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wZp" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"wZq" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"wZv" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"wZE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"wZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/hallways/port_hallway) -"xtn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) -"xtr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/main_office) -"xts" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/stern_hallway) -"xtx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +/area/almayer/living/briefing) +"wZJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_missiles) +"wZN" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"xaa" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/firealarm{ +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"xai" = ( +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + name = "ship-grade camera" }, -/area/almayer/command/cichallway) -"xty" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"xaj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/area/almayer/hull/lower_hull/l_f_p) -"xtF" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/medical/upper_medical) +"xak" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha_bravo_shared) +"xaE" = ( /obj/structure/machinery/telecomms/server/presets/squads, /obj/structure/sign/safety/commline_connection{ pixel_y = -32 @@ -75625,1364 +60938,1725 @@ pixel_x = 8; pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) -"xtM" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/bravo) -"xtR" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"xub" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"xuj" = ( +"xaR" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"xaY" = ( +/obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/hydroponics) -"xuw" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices) -"xuy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/overwatch_console{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"xbm" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"xbr" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xbt" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 6"; + buildstate = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"xbA" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"xbF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/command/cic) -"xuL" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"xbN" = ( /obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ dir = 1; - icon_state = "sterile_green_side" + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"xbO" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, /area/almayer/medical/containment) -"xuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"xvm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/almayer/hallways/hangar) -"xvq" = ( -/obj/item/clothing/head/helmet/marine/reporter, -/obj/item/clothing/suit/storage/marine/light/reporter, -/obj/item/clothing/head/cmcap/reporter, -/obj/item/clothing/head/fedora, -/obj/structure/closet/secure_closet, -/obj/item/storage/box/tapes, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/obj/item/device/camera_film, +"xbU" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/combat_correspondent) -"xvw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"xco" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xvy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"xcr" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) +"xcY" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_missiles) +"xdj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xdC" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"xdF" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xdR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xdT" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"xdW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/powered) -"xvE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xeE" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/port_hallway) -"xvI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_a_p) -"xwn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"xeH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"xeL" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xeO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/living/pilotbunks) -"xws" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/aft_hallway) +"xeX" = ( /obj/structure/surface/table/almayer, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/main_office) -"xww" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_f_p) -"xwP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 }, -/area/almayer/shipboard/brig/cryo) -"xxd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"xfc" = ( +/obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hull/upper_hull/u_f_s) -"xxf" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +/area/almayer/living/chapel) +"xfh" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/hull/upper/u_a_p) +"xfq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"xxk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/hallways/hangar) +"xfx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"xfz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"xfG" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xfI" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"xfZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/engine_core) -"xxm" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"xxr" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xgl" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/filingcabinet/security{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/area/almayer/medical/hydroponics) -"xxt" = ( -/obj/structure/machinery/line_nexter/med{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/chief_mp_office) +"xgD" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/lower_medical_lobby) -"xxu" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) -"xxF" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xgH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"xyi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/port_hallway) -"xyn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/lower/l_f_s) +"xgI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"xgK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"xgV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 9 }, -/area/almayer/command/telecomms) -"xyt" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cell Privacy Shutters"; - name = "\improper Cell Privacy Shutters" +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"xgW" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"xyA" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xyE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = list(2,34,30) +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_m_p) +"xhf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +/obj/item/storage/firstaid/fire{ + pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xhi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"xyF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"xhJ" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"xhS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xhV" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"xid" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"xis" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliason) -"xyW" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xix" = ( /obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_s) -"xze" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/medical/upper_medical) -"xzk" = ( -/obj/structure/machinery/power/apc{ - dir = 1 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"xiB" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) -"xzl" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" +"xiK" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, -/area/almayer/engineering/upper_engineering) -"xzu" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/lobby) -"xzG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"xiQ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"xjb" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"xjD" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"xjI" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 }, -/area/almayer/engineering/upper_engineering/starboard) -"xzU" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xjK" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"xAq" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/almayer/living/briefing) -"xAE" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/area/almayer/living/gym) +"xjX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk2"; + name = "\improper Privacy Shutters" }, -/area/almayer/engineering/laundry) -"xAW" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/squads/req) -"xBq" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"xkf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"xkj" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"xkn" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/command/cichallway) -"xBs" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hull/upper_hull/u_f_p) -"xBw" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 9"; - buildstate = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xkE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/engineering/engine_core) -"xBA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) -"xBB" = ( -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xkI" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"xlt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/squads/delta) -"xBH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"xBN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/pouch/general/large, -/turf/open/floor/almayer, +/turf/open/floor/almayer/bluefull, /area/almayer/living/bridgebunks) -"xBV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"xly" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xlz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 }, -/area/almayer/living/briefing) -"xCa" = ( -/obj/structure/stairs{ +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) +"xlJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"xlV" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"xlX" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) +"xmj" = ( +/obj/structure/machinery/conveyor{ dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = 8; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + id = "gym_2"; + name = "treadmill" }, -/area/almayer/stair_clone) -"xCp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xmK" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"xnb" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"xnf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/engineering/upper_engineering) -"xCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"xCz" = ( -/turf/open/floor/almayer/uscm/directional{ +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xnh" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xnj" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/area/almayer/command/cic) -"xCF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xnu" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, -/area/almayer/living/briefing) -"xCP" = ( -/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xnE" = ( +/obj/structure/largecrate/random, /turf/open/floor/almayer, -/area/almayer/command/computerlab) -"xCV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/starboard_hallway) -"xCX" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/engineering/upper_engineering/port) +"xnJ" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" }, -/area/almayer/living/captain_mess) -"xDj" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xnT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"xnW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"xDq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xob" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hull/lower_hull/l_f_p) -"xDv" = ( -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/item/weapon/gun/smg/m39, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/intercom{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xod" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"xoh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"xoj" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"xou" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"xDy" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/delta) -"xDJ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or3privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_three) -"xEo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xoz" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xEt" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"xoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/squads/delta) -"xEB" = ( -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"xpe" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) +"xpg" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/almayer/command/securestorage) -"xEH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xpj" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"xpk" = ( +/obj/structure/bed/chair{ dir = 8; - icon_state = "green" + pixel_y = 3 }, -/area/almayer/living/grunt_rnr) -"xEP" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/toy/deck{ - pixel_x = -9 +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"xpq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hull/lower_hull/l_f_s) -"xES" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xps" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/area/almayer/command/lifeboat) -"xEV" = ( -/obj/structure/machinery/light/containment{ +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"xpv" = ( +/obj/structure/shuttle/part/dropship2/right_inner_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"xpD" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"xpE" = ( +/obj/structure/machinery/light{ dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xpF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"xEW" = ( -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - pixel_y = -20; - req_access_txt = "5" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/medical/upper_medical) -"xFa" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"xpI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"xpK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"xpM" = ( +/obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" +/turf/open/floor/almayer/red/north, +/area/almayer/living/starboard_emb) +"xpN" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"xpO" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 }, -/area/almayer/engineering/lower_engineering) -"xFp" = ( -/obj/structure/machinery/power/apc{ - dir = 1 +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"xFs" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"xpW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"xqa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/sign/safety/cryo{ + pixel_x = 32 }, -/area/almayer/medical/medical_science) -"xFB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"xqf" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/aft_hallway) +"xqj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/item/device/camera/siliconcam{ - pixel_x = -6; - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"xqm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xFF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/area/almayer/command/computerlab) +"xqp" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/squads/alpha) -"xFP" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/area/almayer/hull/upper_hull/u_a_p) -"xFU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"xqw" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" + req_one_access = null; + req_one_access_txt = "7;19" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"xqy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"xqL" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xqP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, -/area/almayer/living/auxiliary_officer_office) -"xFX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"xqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"xqV" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/hallways/aft_hallway) -"xGg" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/window/reinforced{ dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_m_p) -"xGl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/almayer/hull/upper_hull/u_a_p) -"xGn" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/almayer/engineering/upper_engineering) -"xGt" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/item/bedsheet/red{ + layer = 3.2 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 +/obj/item/bedsheet/medical{ + pixel_y = 12 }, -/obj/item/device/flash{ - pixel_y = -8 +/turf/open/floor/plating, +/area/almayer/living/starboard_emb) +"xqW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 }, -/area/almayer/shipboard/brig/main_office) -"xGz" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"xqY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"xGG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/lifeboat_pumps/north2) +"xrq" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"xrt" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"xrw" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = 8; + pixel_y = 4 }, -/area/almayer/hull/upper_hull/u_a_s) -"xGK" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xGQ" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"xrF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 }, -/area/almayer/medical/operating_room_two) -"xGV" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xrO" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 }, -/area/almayer/squads/req) -"xGZ" = ( +/obj/item/clipboard{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"xrV" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"xsi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"xso" = ( +/obj/effect/attach_point/fuel/dropship2{ + pixel_x = -32 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33" + }, +/area/almayer/hallways/hangar) +"xsv" = ( /obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/squads/delta) -"xHe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"xsK" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"xsS" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"xsW" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/maint/hull/lower/l_f_s) +"xth" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, -/area/almayer/engineering/upper_engineering/starboard) -"xHH" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xtq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xtu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_emb) +"xtC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/almayer/medical/medical_science) -"xHO" = ( -/obj/structure/platform_decoration{ +"xtQ" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"xuc" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"xug" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"xuk" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/north1) -"xHW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/bed/chair{ + dir = 16 }, -/turf/open/floor/almayer/research/containment/floor2{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xuw" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices) +"xuH" = ( +/obj/structure/platform{ dir = 8 }, -/area/almayer/medical/containment/cell) -"xId" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"xuJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/briefing) -"xIe" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xvn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 }, -/area/almayer/living/briefing) -"xIi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xvA" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"xvC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"xvH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"xvU" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/hallways/port_hallway) -"xIj" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"xvV" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"xwd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"xwo" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"xwy" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xwT" = ( +/obj/structure/pipes/vents/pump{ dir = 8; - icon_state = "red" + id_tag = "mining_outpost_pump" }, -/area/almayer/shipboard/brig/general_equipment) -"xIm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"xwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"xwX" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"xwY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/squads/bravo) -"xID" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/aft_hallway) +"xxf" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/area/almayer/squads/alpha) -"xIQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"xxD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xxG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xxU" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera" + id = "kitchen"; + name = "\improper Kitchen Shutters" }, -/obj/item/folder/white{ - pixel_x = 6 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xye" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xyp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/obj/item/tool/pen{ - pixel_y = 8 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xyr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xyt" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cell Privacy Shutters"; + name = "\improper Cell Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"xyR" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/hull/upper/u_a_p) +"xzc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xzm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/medical/medical_science) -"xJp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"xzu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/lobby) +"xzB" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"xzI" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"xzJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"xzO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/hangar) -"xJr" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"xJG" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"xzU" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, -/area/almayer/squads/charlie) -"xJO" = ( -/obj/structure/barricade/handrail{ +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"xAk" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/cryo) +"xAn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/squads/req) -"xJW" = ( -/obj/structure/machinery/light{ +/obj/structure/disposalpipe/segment{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"xAr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/command/lifeboat) -"xKd" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"xAF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"xAG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"xBi" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"xBD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 }, -/area/almayer/hull/lower_hull/l_f_s) -"xKg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 }, -/area/almayer/engineering/engine_core) -"xKn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"xBN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/pouch/general/large, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"xBX" = ( +/obj/structure/largecrate/random/case/double, /obj/structure/machinery/camera/autoname/almayer{ - dir = 4; + dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"xCl" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 }, -/area/almayer/lifeboat_pumps/north2) -"xKx" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"xCr" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"xCv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_p) -"xKL" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" +/area/almayer/living/synthcloset) +"xCH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xCI" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"xCJ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"xCP" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"xDb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"xDc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xDd" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"xDj" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"xDJ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or3privacyshutter"; + name = "\improper Privacy Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/area/almayer/living/starboard_emb) -"xKR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/plating, +/area/almayer/medical/operating_room_three) +"xEj" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"xEo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 }, /turf/open/floor/almayer, -/area/almayer/hallways/repair_bay) -"xKS" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/hallways/hangar) +"xEw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 }, -/area/almayer/living/gym) -"xKT" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"xED" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/terminal{ +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"xEZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xFh" = ( +/obj/item/stool{ pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + pixel_y = 6 }, -/area/almayer/engineering/ce_room) -"xKU" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_f_p) +"xFI" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xFM" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xFR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"xGc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hull/upper_hull/u_m_p) -"xLj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/vehiclehangar) -"xLk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 }, -/area/almayer/medical/containment) -"xLo" = ( /obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_m_p) -"xLt" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"xGf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"xGD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 }, -/area/almayer/hull/lower_hull/l_a_s) -"xLz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 }, -/area/almayer/squads/charlie) -"xLV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xGH" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"xGK" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering) -"xLX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xGO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xGX" = ( /obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/stern_hallway) -"xMc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, -/area/almayer/squads/charlie) -"xMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"xGY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xHa" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xHB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 }, -/area/almayer/living/auxiliary_officer_office) -"xMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) + }, +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 }, -/area/almayer/command/telecomms) -"xMr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"xHI" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"xHJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" }, -/area/almayer/living/pilotbunks) -"xMt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"xMx" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"xHP" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 18"; + buildstate = 1 }, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"xMI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"xHV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"xHY" = ( /obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + pixel_y = 30 }, -/area/almayer/hallways/aft_hallway) -"xMY" = ( -/obj/structure/machinery/power/apc{ +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xHZ" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xIl" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"xIq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"xIO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"xJe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 }, -/area/almayer/hallways/starboard_umbilical) -"xNg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xJf" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "orangecorner" + icon_state = "pipe-c" }, -/area/almayer/hallways/stern_hallway) -"xNv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xJi" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"xJA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"xJB" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null }, -/area/almayer/hallways/vehiclehangar) -"xNx" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"xJJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"xJP" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"xKf" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/aft_hallway) +"xKi" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/medical/operating_room_one) -"xNK" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"xKp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"xKB" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"xKG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 }, -/area/almayer/squads/alpha) -"xNV" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"xKJ" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"xLi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"xOd" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xLs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 }, -/area/almayer/hallways/aft_hallway) -"xOj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xLy" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xLH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"xLI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "blue" + pixel_x = -2; + pixel_y = 4 }, -/area/almayer/hallways/aft_hallway) -"xOp" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed{ + can_buckle = 0 }, -/area/almayer/engineering/upper_engineering) -"xOr" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xLR" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xMt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"xMD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"xMR" = ( +/obj/structure/platform{ + dir = 8 }, -/area/almayer/command/cichallway) -"xOt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"xNb" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xNi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"xNj" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"xOJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xNo" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xNw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"xND" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xOn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"xOL" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 }, -/area/almayer/shipboard/brig/armory) +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) "xON" = ( /obj/structure/closet/secure_closet/commander, /turf/open/floor/wood/ship, @@ -76994,77 +62668,50 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xOS" = ( +"xOT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/squads/charlie) -"xOV" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_lobby) -"xOY" = ( -/turf/open/floor/almayer{ - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/shipboard/brig/main_office) -"xPc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"xPf" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 }, -/area/almayer/shipboard/port_missiles) -"xPk" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"xOX" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xOZ" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 }, -/area/almayer/lifeboat_pumps/north1) -"xPt" = ( -/obj/structure/bed/chair{ +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xPd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/squads/req) -"xPv" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/chemistry) -"xPz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/machinery/firealarm{ + pixel_y = -29 }, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"xPn" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) "xPA" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -77075,12 +62722,27 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"xPQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"xPB" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_p) +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xQb" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"xQd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower) "xQf" = ( /obj/structure/sign/safety/escapepod{ pixel_x = 8; @@ -77088,114 +62750,120 @@ }, /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"xQs" = ( -/obj/structure/machinery/light, +"xQi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"xQm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/hallways/stern_hallway) -"xQA" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"xQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"xQB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/area/almayer/medical/lower_medical_medbay) -"xQF" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"xQu" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xQI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/engineering/engine_core) -"xQJ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/synthcloset) -"xQN" = ( -/obj/structure/surface/rack, /obj/item/device/radio/intercom{ freerange = 1; name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/telecomms) -"xQU" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/living/gym) -"xRb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" + pixel_y = -29 }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"xQJ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/synthcloset) +"xQQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"xQY" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"xRa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/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" }, -/area/almayer/living/chapel) -"xRd" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"xRc" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 }, -/area/almayer/shipboard/brig/general_equipment) -"xRh" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"xRj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower_engineering) +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"xRe" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) "xRs" = ( /obj/effect/landmark/start/researcher, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"xRv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" +"xRx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/cells) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "xRB" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -77203,66 +62871,40 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"xRD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ +"xRL" = ( +/obj/structure/machinery/firealarm{ dir = 8; - icon_state = "red" + pixel_x = -24 }, -/area/almayer/shipboard/brig/perma) -"xRJ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"xRO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/area/almayer/hull/upper_hull/u_a_s) -"xRN" = ( /obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/command/lifeboat) -"xRU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"xSd" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_s) -"xSh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xRP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"xRW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"xSg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/area/almayer/squads/bravo) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) "xSl" = ( /obj/structure/bed/chair{ dir = 4 @@ -77271,44 +62913,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"xSo" = ( -/obj/structure/machinery/power/apc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/operating_room_three) +"xSr" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) "xSv" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, /area/almayer/living/starboard_garden) -"xSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"xSI" = ( +/turf/open/floor/almayer/orange/north, /area/almayer/engineering/upper_engineering) -"xSF" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -10; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/port_hallway) -"xSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "xSN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -77323,132 +62937,111 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"xTo" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/hull/upper_hull/u_f_p) -"xTu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "mono" +"xTb" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 }, -/area/almayer/lifeboat_pumps/north1) +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"xTc" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"xTy" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) "xTz" = ( /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) -"xTB" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/hull/lower_hull/l_m_p) -"xTL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_m_s) -"xTM" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/almayer/shipboard/weapon_room) -"xTQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hull/lower_hull/l_f_s) "xUi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"xUA" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/shipboard/weapon_room) +"xUq" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) "xUB" = ( /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xUE" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/starboard_hallway) -"xUF" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"xUS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/medical_science) -"xUZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 +"xUD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "silvercorner" +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, -/area/almayer/command/computerlab) -"xVw" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"xUI" = ( /obj/structure/machinery/camera/autoname/almayer{ - dir = 1; + dir = 4; name = "ship-grade camera" }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"xUL" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xVg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xVm" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xVo" = ( +/obj/structure/window/reinforced{ + dir = 8 }, -/area/almayer/living/starboard_garden) -"xVG" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/living/grunt_rnr) -"xVQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"xVp" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"xVq" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "xVS" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -77483,22 +63076,26 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"xWe" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 +"xWd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"xWf" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/structure/platform_decoration{ - dir = 9; - layer = 3.51 +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"xWi" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/lifeboat_pumps/south2) +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) "xWj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -77507,117 +63104,90 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"xWx" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"xWz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/medical/medical_science) +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/perma) "xWF" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"xWX" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/living/briefing) -"xXe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) -"xXA" = ( +"xWU" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 2; id = "vehicle_elevator_railing" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/vehiclehangar) -"xXD" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"xWW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, -/area/almayer/medical/lower_medical_lobby) -"xXH" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"xXS" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"xXX" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 }, -/area/almayer/living/bridgebunks) -"xXM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"xYb" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xYi" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"xYn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/bravo) -"xXO" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/engineering/lower_engineering) -"xXR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" + icon_state = "E"; + pixel_x = 2 }, -/area/almayer/living/briefing) -"xYc" = ( -/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xYo" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"xYv" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"xYB" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, -/area/almayer/medical/lower_medical_lobby) -"xYA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"xYF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 }, -/area/almayer/command/cic) -"xYK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"xYH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/living/grunt_rnr) +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) "xYV" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -77628,53 +63198,9 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"xZa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/phone_base{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - pixel_y = 29 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/upper_medical) -"xZd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/squads/delta) -"xZC" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_p) -"xZF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/corporateliason) +"xZx" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) "xZJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77687,56 +63213,38 @@ /obj/item/prop/magazine/book/theartofwar, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"xZU" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"xZN" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/status_display{ + pixel_x = 32 }, -/area/almayer/living/starboard_emb) +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) "yaa" = ( /turf/closed/wall/almayer/research/containment/wall/divide, /area/almayer/medical/containment/cell) -"yae" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/living/starboard_garden) -"yaq" = ( +"yaf" = ( /obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"yar" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/bed/chair/bolted{ + dir = 4 }, -/area/almayer/medical/containment) +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) "yax" = ( /obj/structure/machinery/light{ dir = 4 @@ -77754,271 +63262,206 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"yaN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/engineering/upper_engineering/starboard) +"yaK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "yaY" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/offices/flight) -"ybc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ybD" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"ybK" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"ybP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Cell 1"; + name = "\improper Courtyard Divider" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"ybR" = ( +/turf/open/floor/almayer, +/area/almayer/living/officer_study) +"ybT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"ybY" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/upper_engineering) -"ybd" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"yca" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) -"ybz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"ybG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; dir = 1; - name = "\improper Engineering Bunks" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" }, -/area/almayer/engineering/upper_engineering/port) -"ybK" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"ycc" = ( /obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"ybM" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/warden_office) +"ycj" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ycr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) -"ybR" = ( /turf/open/floor/almayer, -/area/almayer/living/officer_study) -"yck" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 +/area/almayer/engineering/lower/workshop/hangar) +"ycy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, -/area/almayer/living/gym) -"ycn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "bluecorner" +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"ycA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/almayer/living/basketball) -"ycq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/armory) +"ycH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 }, -/area/almayer/medical/medical_science) -"ycw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"ycN" = ( +/obj/structure/stairs, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/area/almayer/shipboard/brig/cic_hallway) -"ycQ" = ( +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ycV" = ( /obj/structure/machinery/light{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +/obj/structure/target{ + name = "punching bag" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ycZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"ydf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/shipboard/brig/lobby) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ydi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/computerlab) +"ydk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) "ydm" = ( /turf/closed/wall/almayer, /area/almayer/hallways/hangar) -"ydn" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"ydo" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/shipboard/brig/evidence_storage) -"yds" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/medical/upper_medical) -"ydu" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/brig/perma) -"ydw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"ydx" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/upper_hull/u_f_s) -"ydF" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/stern_hallway) -"ydH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/command/securestorage) -"ydI" = ( -/obj/structure/closet/secure_closet/freezer/fridge, +"ydp" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/medical_science) -"ydK" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/hangar) -"ydT" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/containment) -"ydV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/starboard_hallway) -"yeb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/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/effect/projector{ + name = "Almayer_Up1"; + vector_x = -10; + vector_y = 96 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ydD" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"ydY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/operating_room_two) -"yec" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"yed" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 }, -/area/almayer/shipboard/starboard_point_defense) +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) "yei" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -78029,6 +63472,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"yel" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"yeo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/starboard_emb) "yes" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -78036,35 +63489,17 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"yet" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/hull/lower_hull/l_f_p) -"yev" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/upper_hull/u_a_s) -"yeI" = ( -/obj/structure/machinery/power/apc{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hull/lower_hull/l_a_s) -"yff" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"yeP" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hull/lower_hull/l_f_p) +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"yeR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) "yfl" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -78075,230 +63510,319 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"yfq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"yfm" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"yfw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/engineering/engineering_workshop/hangar) -"yfu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"yfF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"yfK" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"yfN" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"yfS" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"yga" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ygn" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygr" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 }, -/area/almayer/medical/hydroponics) -"yfO" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"ygt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "red" + health = 80 }, -/area/almayer/lifeboat_pumps/north1) -"yfZ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"ygD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" }, -/area/almayer/command/cic) -"ygc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"ygY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/area/almayer/squads/delta) -"ygg" = ( +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"yha" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"yhi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"yhk" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"yhp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/living/offices) -"ygu" = ( -/obj/structure/disposalpipe/segment{ +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"yhu" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"yhA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"yhF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"yhX" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"yim" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/aft_hallway) -"ygy" = ( -/obj/structure/platform_decoration, -/turf/open/floor/almayer{ - icon_state = "red" +/area/almayer/maint/hull/lower) +"yiv" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 }, -/area/almayer/lifeboat_pumps/south2) -"ygE" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"yiy" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 }, -/area/almayer/engineering/upper_engineering) -"ygP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"yiB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 }, -/area/almayer/hallways/stern_hallway) -"ygW" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"yiC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/almayer/squads/req) -"ygX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"yiF" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"yiU" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" }, -/turf/open/floor/almayer/research/containment/floor2{ - dir = 1 +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" }, -/area/almayer/medical/containment/cell) -"yhf" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"yiV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 }, -/area/almayer/lifeboat_pumps/south1) -"yhh" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"yiY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 }, -/area/almayer/engineering/lower_engineering) -"yhi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/storage/box/masks{ + pixel_x = 5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"yhA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"yhI" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 }, -/area/almayer/living/pilotbunks) -"yhL" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"yja" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"yjd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 }, -/area/almayer/hull/upper_hull/u_m_s) -"yhT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "silverfull" +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"yje" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/living/cryo_cells) -"yip" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"yjg" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/shipboard/port_point_defense) -"yiF" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"yjb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"yjm" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/almayer/hallways/stern_hallway) -"yjs" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "red" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/almayer/command/lifeboat) -"yjG" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"yjn" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/almayer/hallways/aft_hallway) -"yjN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"yju" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/aft_hallway) +"yjB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"yjL" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/living/officer_study) +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) "yjO" = ( /obj/structure/window/framed/almayer/hull, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/chief_mp_office) -"yjW" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"ykl" = ( +/obj/structure/stairs{ + dir = 4 }, -/area/almayer/squads/alpha) -"yks" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = -8; + vector_y = -98 }, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) "ykw" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -78307,32 +63831,30 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ykV" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" +"yla" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/engineering/engineering_workshop/hangar) -"ylb" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"ylm" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"ylw" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/lifeboat_pumps/south1) -"ylj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/squads/alpha_bravo_shared) +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) "ylx" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/woodentable/fancy, @@ -78348,61 +63870,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ylC" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, -/area/almayer/command/lifeboat) -"ylG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, -/area/almayer/squads/charlie) -"ylI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) -"ylL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/port_hallway) -"ylU" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +"ylF" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/upper/u_f_p) +"ylQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, -/area/almayer/squads/alpha_bravo_shared) -"ymf" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"ymi" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 }, -/area/almayer/shipboard/brig/main_office) +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/aft_hallway) +"ymj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) (1,1,1) = {" qeX @@ -79057,15 +64556,15 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -79150,27 +64649,27 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -79259,7 +64758,7 @@ qeX qeX qeX qeX -tag +ihr uJZ uJZ yjO @@ -79267,7 +64766,7 @@ yjO yjO uJZ uJZ -tEF +wDM qeX qeX qeX @@ -79352,7 +64851,7 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl @@ -79372,7 +64871,7 @@ ndl ndl ndl ndl -tEF +wDM qeX mOJ mOJ @@ -79456,25 +64955,25 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY ndl uJZ -ghf -iDu -iDu -iDu -fvA +xgl +lPk +lPk +lPk +kNf uJZ ndl -wgJ -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -79554,7 +65053,7 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl @@ -79574,7 +65073,7 @@ ndl ndl ndl ndl -tEF +wDM qeX mOJ mOJ @@ -79658,7 +65157,7 @@ qeX qeX qeX qeX -tag +ihr uJZ uJZ uJZ @@ -79666,17 +65165,17 @@ uJZ uJZ uJZ vHF -iqv -guE -afI -lRd +vjs +ggD +mDd +rlr uJZ -frm -frm -frm -frm -frm -tEF +ahN +ahN +ahN +ahN +ahN +wDM qeX qeX qeX @@ -79750,16 +65249,16 @@ qeX qeX qeX mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY +wtY ndl byJ -aIF -aIF +hSB +hSB byJ ndl ndl @@ -79771,18 +65270,18 @@ ndl ndl ndl byJ -aIF -aIF +hSB +hSB byJ ndl ndl ndl -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +wtY +wtY +bhQ mOJ qeX qeX @@ -79858,29 +65357,29 @@ qeX qeX qeX qeX -fDe -wgJ +wAV +wtY ndl uJZ qNa bBv lol bBv -vke +hNJ hcf mBA piu wHi -tcm +bnI tKJ -vCW -lqu -oiY -tmF -frm +mCj +bPN +qEU +bGH +ahN ndl -wgJ -wgf +wtY +bhQ qeX qeX qeX @@ -79952,12 +65451,12 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -oGH -oGH -oGH +eZm +eZm +eZm +eZm ndl byJ wSw @@ -79979,12 +65478,12 @@ byJ ndl ndl ndl -ewq -ewq -ewq -ewq +jGC +jGC +jGC +jGC ndl -tEF +wDM mOJ qeX qeX @@ -80060,29 +65559,29 @@ qeX qeX qeX qeX -tag -oEJ -oEJ +ihr +kbI +kbI uJZ -pOt +cxt bBv lcA -hme +pfX tKJ gES -vRi -tLw -deo +bhC +wop +blk hcf tKJ -veu -oZm -oZm -joI -frm -frm -frm -tEF +mDA +nju +nju +lZB +ahN +ahN +ahN +wDM qeX qeX qeX @@ -80154,16 +65653,16 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -ruo -fFV +eZm +gFr +hiF psY psY psY -aIF -aIF +hSB +hSB psY jHR jHR @@ -80175,18 +65674,18 @@ ndl ndl psY psY -aIF -aIF +hSB +hSB psY jHR jHR jHR psY -erG -nGp -ewq +ujU +vru +jGC ndl -tEF +wDM mOJ qeX qeX @@ -80254,45 +65753,45 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -oEJ -oEJ -eLd +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +kbI +kbI +dhC tKJ rFd sci lcA -jwk +mLi tKJ nqq nqq tKJ -akU +cfV tKJ tKJ -pCO -pCO -vVm -xrA -dTT -dos -frm -frm -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +vtb +vtb +csD +hEZ +weI +cef +ahN +ahN +wtY +wtY +wtY +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -80356,17 +65855,17 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -dZq -qZA +eZm +sHe +pPE bAv -lbc -lEI -xTM -xTM -xTM +kKZ +bwo +qeW +qeW +qeW fPo laW psY @@ -80377,18 +65876,18 @@ ndl ndl psY dZy -aEN -aEN -xTM +gge +gge +qeW dcY -dCz -rDZ +ifH +eET bAv -gOc -hjr -ewq +gVC +rhT +jGC ndl -tEF +wDM mOJ qeX qeX @@ -80456,45 +65955,45 @@ qeX qeX qeX qeX -tag -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -oEJ -jfH -lgK +ihr +kbI +kbI +kbI +kbI +kbI +kbI +kbI +kbI +mtI +aSp tKJ tKJ tKJ tKJ tKJ tKJ -rKE -aia -cGM -nJc -kcA -snI -dhU -snI -xrA -hIu -oZm -jtV -woj -frm -frm -frm -frm -frm -frm -frm -frm -tEF +mSW +kqL +aPp +jPw +tLJ +lGB +iHY +lGB +hEZ +xix +nju +ieW +iDW +ahN +ahN +ahN +ahN +ahN +ahN +ahN +ahN +wDM qeX qeX qeX @@ -80558,17 +66057,17 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -vcy -ouv +eZm +izb +goO bAv -vSJ -lEI -xTM -xTM -xTM +oHg +bwo +qeW +qeW +qeW dZy bZb psY @@ -80579,18 +66078,18 @@ psY psY psY ocs -aEN -aEN -xTM +gge +gge +qeW dZy -dCz -rrE +ifH +jmZ bAv -jKd -xDq -ewq +nPr +kvR +jGC ndl -tEF +wDM mOJ qeX qeX @@ -80658,45 +66157,45 @@ qeX qeX qeX qeX -tag -oEJ -kBy -tdK -pYA -pYA -orA -pYA -cQL -gWW -mLF -pCO -udP -nGL -xws -nuc -heZ -jFF -gfi -gfi -nJc -ueD -pCO +ihr +kbI +eQA +uFR +mRl +mRl +kGw +mRl +fqJ +wAw +taq +vtb +ycc +aoi +qms +pGJ +lDM +pCa +hYc +hYc +jPw +bWG +vtb oaa oaa oaa oaa -oZm -tGK -eag -vKe -oZm -iKR -xrA -oZm -oZm -ejh -frm -tEF +nju +sDw +vBS +tOn +nju +cjL +hEZ +nju +nju +azw +ahN +wDM mOJ mOJ qeX @@ -80760,39 +66259,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -oeG -jJI -uMA -lgJ -lEI -xTM -xTM -xTM -jdH +eZm +dYU +qgV +xqw +tEw +bwo +qeW +qeW +qeW +aHC dZy edW -cHF -uKq -rjS -cHF -uKq +oVG +oUp +gSb +oVG +oUp edW dZy -aEN -aEN -xTM -ueE -dCz -ids -uMA -sXN -aza -ewq +gge +gge +qeW +gPa +ifH +fLl +xqw +nQr +uwh +jGC ndl -tEF +wDM mOJ qeX qeX @@ -80858,49 +66357,49 @@ qeX qeX qeX mOJ -fDe -wgJ +wAV +wtY ndl -oEJ -tdK -pYA -tdK -dbW -iVe -wEc -vor -pYA -tDg -pCO -egA -aia -aia -xrK -heZ -tCh -gfi -gfi -nJc -ubG -xGt +kbI +uFR +mRl +uFR +edh +jff +oIs +sMj +mRl +nYJ +vtb +arU +kqL +kqL +vmp +lDM +fKp +hYc +hYc +jPw +hBE +kcg oaa -uHd -llf +qTR +gLP oaa oaa oaa -xrA -xrA -jyn -rjR -wmP -xrA -xrA -oZm -frm +hEZ +hEZ +xwd +rHs +iAo +hEZ +hEZ +nju +ahN ndl -wgJ -wgf +wtY +bhQ mOJ qeX qeX @@ -80962,39 +66461,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -jJI -aDw +eZm +qgV +jsc bAv -eTQ -lEI -xTM -xTM -jza -dPh +fhk +bwo +qeW +qeW +jJN +ozD dZy edW -lgJ -eOV -vGS -vfv -ids +tEw +lkW +iSQ +vjl +fLl edW dZy -aEN -aEN -jza -dPh -dCz -jTC +gge +gge +jJN +ozD +ifH +gHs bAv -uog -sXN -ewq +qHq +nQr +jGC ndl -tEF +wDM mOJ qeX qeX @@ -81060,35 +66559,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -oEJ -tdK -pYA -pCO -pCO -pCO -pCO -pCO -sSB -pCO -pCO -jEB -kIr -xtr -bHh -ktZ -pys -xtr -xtr -jPa -gfi -jto +kbI +kbI +uFR +mRl +vtb +vtb +vtb +vtb +vtb +aoc +vtb +vtb +tOa +lWV +rfj +itQ +eDu +mRr +rfj +rfj +cjN +hYc +cNr oaa -jHE -aKu -wHR +oFs +xbU +nwe pBZ oaa oaa @@ -81097,12 +66596,12 @@ oaa oaa oaa oaa -oZm -xrA -frm -frm +nju +hEZ +ahN +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -81164,39 +66663,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -hrB -xiH +eZm +iHL +dOF bAv -ocl -flG -bqS -wNW -cnv -cnv -cnv -oLf -mdr +dnh +dmB +vpQ +lpc +cch +cch +cch +tCJ +gKF vXK qpA vXK -gTg -oLf -cnv -cnv -cnv -qop -bqS -vUJ -xUA +xOn +tCJ +cch +cch +cch +lyX +vpQ +qYC +mng bAv -nys -xJr -ewq +sxg +jEm +jGC ndl -tEF +wDM mOJ qeX qeX @@ -81262,49 +66761,49 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -pKW -tdK -kBy -pCO -ymf -oyy -eCm -pCO -gfi -ydn -gkF -wmM -nJc -ueD -sTQ -eMW -ipv -gfi -pZl -xfr -phD -vcS +kbI +xai +uFR +eQA +vtb +hfZ +vkm +qUT +vtb +hYc +vmq +lok +hBB +jPw +bWG +kbJ +lxS +szt +hYc +oRP +hIF +nGU +srR oaa -cMW -jTT +brg +vOJ oaa rQy -cXW -qrs +hqz +iwk mYM -tde -rux -nMP +oSx +iyq +ukE oaa -tmF -xrA -oZm -frm +bGH +hEZ +nju +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -81366,39 +66865,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -xiH -jJI +eZm +dOF +qgV bAv -dmI +orh pXI pXI -wST -lxp -lxp -lxp +dDY +chk +chk +chk edW -xnS -dFC -wBd -kwN -xrc +wDj +tFo +adk +kvE +sSU edW -lxp -lxp -lxp -qln +chk +chk +chk +wxJ pXI pXI -jdc +pCv bAv -sXN -eRl -ewq +nQr +mZp +jGC ndl -tEF +wDM mOJ qeX qeX @@ -81464,30 +66963,30 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -iDr -pYA -tOD -pCO -tCh -vry -vry -aNM -gfi -ueD -sTQ -sTQ -aBR -rhV +kbI +nFN +mRl +lln +vtb +fKp +aTM +aTM +dPv +hYc +bWG +kbJ +kbJ +fBc +hwT jim jim jim -aPb +dBu jim -gKI -sgQ +vZL +iXx dRC oaa oaa @@ -81497,16 +66996,16 @@ jXc hgw aCW oNu -omZ +uLL aQY -gUP +eTU oaa -xsT -xrA -oZm -frm +mtL +hEZ +nju +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -81568,16 +67067,16 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -xSd -xiH +eZm +tjC +dOF bAv -mRX +nEs hWW hWW -sTX +sgd ibv ibv ibv @@ -81591,16 +67090,16 @@ ibv ibv ibv ibv -sUS +cuc hWW hWW -tot +iOS bAv -sXN -nys -ewq +nQr +sxg +jGC ndl -tEF +wDM mOJ qeX qeX @@ -81666,49 +67165,49 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -pYA -tdK -pCO -pCO -gzM -gzM -gzM -pCO -kvP -ilV -rqQ -rqQ -jiI -xOY +kbI +mRl +uFR +vtb +vtb +ygD +ygD +ygD +vtb +hKf +ntA +hkN +hkN +fJs +eJD jim -pHn -qpF -ydo +pwP +nBg +sFl oJm -dop +jct jTK -oCw +iKZ oaa -fPf -oyL +udY +qpk oaa cBN jnN jnN oNu -chU +xCJ hgw -dKL +ssp oaa oaa -oZm -xrA -frm +nju +hEZ +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -81770,39 +67269,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -pRt -jJI +eZm +weR +qgV bAv -mRX +nEs hWW hWW -bGr +pzX ibv -cSb -dQx -cgE +lbV +nOX +qkF ibv -emJ -nXs -eFD +nXv +mlT +rxu ibv -sEg -jIG -aiC +qOb +rxM +pmC ibv -eRy +rLA hWW hWW -tot +iOS bAv -nSV -uEK -ewq +gwp +vpi +jGC ndl -tEF +wDM mOJ qeX qeX @@ -81868,49 +67367,49 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -pYA -tdK -pCO -neq -jkn -jfk -jfk -pCO -rqL -jyO -pOI -fnU -eqz -fsF +iVo +mRl +uFR +vtb +uYT +eSb +cDp +cDp +vtb +cGO +lSG +ltN +vkq +kic +sOQ jim -eNR -boI -rSo +uwO +lAh +pJy oJm -dop +jct jTK -vdk +ofI uyr hgw dME -lOi +ybP ecR aQY aQY oNu -cof +aqS hgw -xRv -iPW +bKP +eyX oaa -oZm -xrA -xTo +nju +hEZ +wim ndl -baT +qYK mOJ mOJ qeX @@ -81972,39 +67471,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -dRW -jJI +eZm +vTj +qgV bAv -iiu +evP pXI qVY -sTX +sgd ibv -rAR +cEO fYA -eoG -idR -hce +efU +bIB +wnu fYA -eoG -idR -hce +efU +bIB +wnu fYA -hnq +mKL ibv -dMP +ujj qVY pXI -cga +fnI bAv -ajO -nys -ewq +pwc +sxg +jGC ndl -tEF +wDM mOJ qeX qeX @@ -82070,31 +67569,31 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -tdK -pYA -pCO -neq -lKh -lks -sTQ -jPK -gfi -nJc -ueD -dqe -sTQ -kpt +iVo +uFR +mRl +vtb +uYT +cEs +sOX +kbJ +kKz +hYc +jPw +bWG +xJJ +kbJ +rDn jim -pHn -uFQ -pWk +pwP +gsz +kLd oJm -dop +jct jTK -vIo +xbA oaa xyt oaa @@ -82103,16 +67602,16 @@ rtO aQY aQY oNu -omZ +uLL yhi aIc -eAn +dmO oaa -hhC -xrA -xTo +rSn +hEZ +wim ndl -tEF +wDM mOJ mOJ qeX @@ -82174,39 +67673,39 @@ qeX qeX qeX mOJ -tag +ihr ndl -oGH -rNs -jJI +eZm +anp +qgV bAv -fxf +ewU hWW rWl cVm -hqV +yca cSy xWj xWj uTu -xng -kxe -miR +qVD +lOX +kOU riP xWj xWj cSy -hqV +yca cVm hnN hWW -tot +iOS bAv -sXN -uAt -ewq +nQr +tFs +jGC ndl -tEF +wDM mOJ qeX qeX @@ -82272,49 +67771,49 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -jEg -pYA -pCO -pCO -pCO -pCO -pCO -pCO -dlh -nJc -mlP +iVo +xgK +mRl +vtb +vtb +vtb +vtb +vtb +vtb +erD +jPw +hKz cXN cXN cXN cXN jim jim -aen +vTE jim -fgr +dWv jTK -ckx +rwa oaa -fPf -aeQ +udY +gTm oaa srT aQY yes mYM -tiO +kag ecR aQY -ovO +wEh oaa -haT -oZm -xTo +vfP +nju +wim ndl -qjO +rBR mOJ mOJ qeX @@ -82375,41 +67874,41 @@ qeX qeX qeX qeX -fDe +wAV ndl ndl -oGH -iJl -cXK +eZm +jnW +yfF bAv -jCj +xEj hWW iYD -ids +fLl ibv -fZw +dDR aTI fYA hes -mfn +jWv bfH -wEB +sPW hes fYA xMt -hMd +woK ibv -lgJ +tEw iYD hWW -lha +cCM bAv -opP -sXN -ewq +xNb +nQr +jGC ndl ndl -wgf +bhQ qeX qeX qeX @@ -82474,49 +67973,49 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -kBy -ndN -pCO -wmc -hkf -hKU -rLc -eWf -tCh -nJc -kZj +kbI +eQA +lDO +vtb +fNq +msu +rsF +iLh +qig +fKp +jPw +pPC cXN -pHZ -pHZ -pHZ +emw +emw +emw cXN -pPR -gXS -aII -dwh +jmz +lVH +xRL +rHg jTK -beF +aIQ oSB hgw dME -alQ +sXE qAA aQY aQY mYM mYM -dTG -bbd +qXJ +lNQ mYM oaa -rSR -oZm -frm +qTf +nju +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -82577,41 +68076,41 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -oGH -jJI -jJI +eZm +eZm +qgV +qgV bAv -bQf +qjg pXI sby -eTo +cGT ibv -ifV +pri aTI klu iEm -lkl +nbN hes -hnq +mKL fEA xgI xMt -lvD +aFd ibv -vWg +qRC sby pXI -xeb +xeX bAv -eho -sXN -ewq -ewq +vEe +nQr +jGC +jGC ndl -tEF +wDM qeX qeX qeX @@ -82676,35 +68175,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -wdR -tdK -pCO -ffH -sBM -adi -jVt -aia -wmM -nJc -xOY -iSA +kbI +cFx +uFR +vtb +goW +bMv +lkG +lcM +kqL +hBB +jPw +eJD +cGr hBF hBF hBF -xwP -eYZ -ckf -uLo -knB -fBY -pCO -pCO -oOq -pCO -pCO +veB +goz +pxQ +nzd +pTY +hfY +vtb +vtb +qjG +vtb +vtb rWh hgw gfA @@ -82714,11 +68213,11 @@ qAA hgw enM oaa -oiY -oZm -frm +qEU +nju +ahN ndl -lhW +uFJ mOJ mOJ qeX @@ -82779,41 +68278,41 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -hrB -xiH -jiA +eZm +iHL +dOF +pMY bAv -tpy +ivW hWW daY -ids +fLl ibv -eRz -fzs -qyO +dCQ +eRU +icA dZj -qEa -wrO -ixS +bfv +pBB +fCL wXX -hgL -lTP -pAL +aUm +wQt +bsy ibv -rUp -ebs +frl +ckE hWW -uet +mQO bAv -snX -sXN -uAt -ewq +aQJ +nQr +tFs +jGC ndl -tEF +wDM mOJ mOJ mOJ @@ -82878,35 +68377,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -odZ -tdK -pCO -fjH -lJH -cTY -gfi -gfi -gfi -nJc -xOY -mVF +iVo +lLs +uFR +vtb +kkY +rKx +nmH +hYc +hYc +hYc +jPw +eJD +liT hBF hBF hBF -mVF -gXS -sPm +liT +lVH +eIE eND gmG -gYU -svA -wEd -cOf -uLt -ekD +kkq +jCg +aRi +rlp +xoj +tTr ecR uqW uqW @@ -82916,11 +68415,11 @@ gno uqW aQY lZi -rWH -xrA -xTo +mHA +hEZ +wim ndl -tEF +wDM mOJ mOJ qeX @@ -82977,19 +68476,19 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY ndl -oGH -oGH -xiH -jJI -tgF +eZm +eZm +dOF +qgV +whO bAv bAv -jyl +vfc bAv bAv ibv @@ -82997,29 +68496,29 @@ eVE ibv ibv ibv -hRN +npb ibv -aIU +aqX ibv ibv ibv -rXN -rXN -rXN -rXN -qWj -rXN -rXN -sxx -nys -sXN -ewq -ewq +saY +saY +saY +saY +xHJ +saY +saY +vtR +sxg +nQr +jGC +jGC ndl -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -83080,35 +68579,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -pYA -pYA -pCO -rqQ -cAF -nJc -gfi -gfi -gfi -nJc -hLX +iVo +mRl +mRl +vtb +hkN +sdj +jPw +hYc +hYc +hYc +jPw +rii cXN -mRi -mQq -mRi +miu +tnQ +miu cXN -wOa -sPm +pfc +eIE sOT qiK -sPm -igj -tCh -kVd -kFt -ekD +eIE +sIm +fKp +udV +xKG +tTr qAA aFt uqW @@ -83118,11 +68617,11 @@ pcM lCE aQY lZi -iMs -oZm -xTo +vio +nju +wim ndl -mep +ila mOJ mOJ qeX @@ -83179,49 +68678,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -oGH -oGH -oGH -xiH -xiH -lXX -lXX -lXX -jtD -jJI -kgv +eZm +eZm +eZm +eZm +dOF +dOF +xnT +xnT +xnT +vdw +qgV +jvA cdT erA uPL ibv -aCc -jaZ +mLr +cpF vnE -gOP +rBl fYA -iMJ -aua +jyw +rPu ibv -mcS -vjG -sdf -kOl -ipE -xlY -mFD -mFD -mFD -nys -sXN -ewq -ewq -ewq -ewq +iaw +pNQ +aeE +mYR +usG +cSH +sRC +sRC +sRC +sxg +nQr +jGC +jGC +jGC +jGC ndl -tEF +wDM qeX qeX qeX @@ -83282,35 +68781,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -tdK -pYA -pCO -svU -rbz -jzf -taR -tWr -jPk -tsA -fMX +iVo +uFR +mRl +vtb +ybD +cKG +gUJ +rHy +fIb +hSX +mjJ +cSk cXN cXN cXN cXN cXN -pkE -sPm +oAs +eIE iTS qiK -uoP -svA -tCh -gfi -hZA -pCO +exP +jCg +fKp +hYc +tev +vtb rtO aFt uqW @@ -83320,11 +68819,11 @@ eea lCE oKw lZi -nwD -oZm -xTo +gru +nju +wim ndl -tEF +wDM mOJ mOJ qeX @@ -83381,49 +68880,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -xqz -xiH -jJI -xiH -jJI -lXX -xiH -jJI -dQr -jJI -bmW +eZm +oEV +dOF +qgV +dOF +qgV +xnT +dOF +qgV +mXS +qgV +rip cdT -mOH -gTb +ubZ +qvP ibv -tJw -bmF +gfl +ltZ vnE -gbR +xYH fYA -mEW -eKp +jOC +wSU ibv -djn -vjG -qfU -nxk -nxk -nxk -ipE -qEK -mFD -nys -sXN -nys -nVk -lfc -ewq +pFJ +pNQ +fAX +jWq +jWq +jWq +usG +wXO +sRC +sxg +nQr +sxg +kki +oAj +jGC ndl -tEF +wDM qeX qeX qeX @@ -83484,35 +68983,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -pYA -pYA +kbI +mRl +mRl hPk hPk -tCn +gkM hPk hPk -fcO -gfi -gfi -qsE -vKm -dmM -rzZ -pzq -mQF +uBw +hYc +hYc +oCL +nhV +qBy +vXT +cRS +qax eWH -dSS +kMz vdh -iFY -cwh -wVi -nnN -kVK -kVK -abL +biV +jLN +tnr +wtC +bsk +bsk +goV sPe cye cye @@ -83522,11 +69021,11 @@ lrY pOv fVA oaa -xrA -bbH -frm +hEZ +rfU +ahN ndl -ufY +mjn mOJ mOJ qeX @@ -83583,49 +69082,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -urN -xiH -jJI -xiH -xcV -lXX -xiH +eZm +fUN +dOF +qgV +dOF +crW +xnT +dOF cdT cdT -mZN +cfr cdT cdT -esy +hns cdT ibv ibv ibv -fau +rIh ibv -aIU +aqX ibv ibv ibv -dRk -pUD -iPr -gqr -aWb -aWb -aWb -xNv -mFD -tOS -nys -sXN -sXN -uAt -ewq +cCN +bCR +jkM +uVH +vdY +vdY +vdY +euL +sRC +aTh +sxg +nQr +nQr +tFs +jGC ndl -tEF +wDM qeX qeX qeX @@ -83686,35 +69185,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -tdK -dBC +kbI +uFR +tvT hPk sDq cZE jOk uER -lzX -gfi -gfi -jrp -vKm -kik -txM -vjZ -fCj -sbz -sPm +eqY +hYc +hYc +hdH +nhV +mgl +kBG +pmN +eHL +rIr +eIE eND -lOq -eto -pCO -pCO -oOq -pCO -pCO +hTJ +jbi +vtb +vtb +qjG +vtb +vtb cqD uqW uqW @@ -83724,11 +69223,11 @@ fgf uqW ylz oaa -xrA -oZm -frm +hEZ +nju +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -83785,49 +69284,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -jJI -xiH -jJI -kio -lXX -xiH +eZm +qgV +qgV +dOF +qgV +mhb +xnT +dOF cdT -muU -mOH -mOH -pOQ -pdT +mMx +ubZ +ubZ +hnH +dVz cdT -rsV -rQI -pvy -mge -sLc -csR -pvy -csR -kje -jxy -iYO -dWy -dWy -dWy -dWy -dWy -cXz +pal +fwN +siy +iKM +cWo +fWb +siy +fWb +bCB +hZl +ggK +sro +sro +sro +sro +sro +ioV aVk aVk aVk aVk aVk -sXN -ewq +nQr +jGC ndl -tEF +wDM qeX qeX qeX @@ -83888,35 +69387,35 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -tdK -sYB +iVo +uFR +xMD hPk gJg cZE jQz uER -tCh -gfi -gfi -noI -vKm -ual -umk -smM -vKm -dop -sPm +fKp +hYc +hYc +mse +nhV +uzb +nVE +weg +nhV +jct +eIE cZk -lOq +hTJ fHh joE gZn hgw cYJ -jxz +vlb hgw uqW pch @@ -83926,11 +69425,11 @@ fgf uqW uXk lZi -xrA -oZm -xTo +hEZ +nju +wim ndl -fwT +stO mOJ mOJ qeX @@ -83987,49 +69486,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -xiH -xiH -jJI -qgy -rJb -lXX -jJI +eZm +dOF +dOF +qgV +dFK +wnj +xnT +qgV cdT -qzn -bpb -hWT -jKk -jKk +rzT +uyi +lUw +cSI +cSI cdT -ipE -pDE -pDE -qnZ -pDE -pDE -pDE -pDE -kje -hcM -rIF -lpr -lpr -lpr -lpr -lpr -cdO -oZr +usG +aju +aju +tED +aju +aju +aju +aju +bCB +jXs +awV +arn +arn +arn +arn +arn +mBE +dqB kMt eDK -vsd +qcs aVk -aza -ewq +uwh +jGC ndl -tEF +wDM qeX qeX qeX @@ -84090,34 +69589,34 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -tdK -gYP +iVo +uFR +mXs hPk iCp cZE -afi +czV uER -nIP -rCG -gfi -nNa -vKm -vjI -mox -smM -vKm -mOt -hJt -fqE -tle +fDC +kLl +hYc +rgL +nhV +vfN +fiE +weg +nhV +sKj +srq +cOK +eMN fHh -ckx +rwa oaa -jbR -cMT +jhh +inD oaa tAO uSV @@ -84128,11 +69627,11 @@ fTR uqW hgw lZi -mLh -nwD -xTo +sUN +gru +wim ndl -tEF +wDM mOJ mOJ qeX @@ -84189,49 +69688,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -oeG -xiH -lXX -lXX -lXX -lXX -jJI +eZm +dYU +dOF +xnT +xnT +xnT +xnT +qgV cdT -mwQ -dhI +cIt +nCA gKu fqB uYz cdT -ipE -csR -csR -nRI -xLj -xLj -xLj -xLj -hdV -tht -kXr -lpr -lpr -lpr -lpr -lpr -cdO +usG +fWb +fWb +hbK +wTG +wTG +wTG +wTG +itI +tIi +xWU +arn +arn +arn +arn +arn +mBE aVk vEf kMt -mbi +hAn aVk -sXN -ewq +nQr +jGC ndl -tEF +wDM qeX qeX qeX @@ -84292,31 +69791,31 @@ qeX qeX mOJ mOJ -tag +ihr ndl -sEF -pYA -jEg +iVo +mRl +xgK hPk lBn cZE -cVD +ycA hPk -ure +iim hPk -kPP -hVR -fCj -bWY -bWY -uiC -bWY +saV +pQF +eHL +emy +emy +ans +emy oHB -gXS -oVl -nlE +lVH +qOn +jjn fHh -vIo +xbA oaa xyt oaa @@ -84330,11 +69829,11 @@ uqW uqW hgw lZi -oZm -xBA -xTo +nju +hbm +wim ndl -jkW +cyk mOJ mOJ qeX @@ -84391,49 +69890,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -xiH -lXX -xKd -gWn -lXX -wrV +eZm +qgV +dOF +xnT +rGu +jyU +xnT +qHX cdT -mVb -rUn -qvA -nQv -xMk -xFU -bEM -bEM -bEM -vCd -ipE -ipE -ipE -ipE -kje -nxk -rIF -lpr -lpr -bMu -lpr -lpr -jdq +eJb +jEr +pBV +rlb +iiS +cXH +ptA +ptA +ptA +qZc +usG +usG +usG +usG +bCB +jWq +awV +arn +arn +cev +arn +arn +bjU aVk aNW kMt aVk fUF -uEK -ewq +vpi +jGC ndl -tEF +wDM qeX qeX qeX @@ -84494,35 +69993,35 @@ qeX mOJ mOJ mOJ -tag +ihr ndl -oEJ -pYA -pYA +kbI +mRl +mRl hPk mrA cZE -xOJ -lLT +jpJ +vgc uVj hPk -iiY +dUd eKs -ncf -vKm -jki -bkc -bWY -gKI -sgQ +bzY +nhV +hsB +vym +emy +vZL +iXx wWJ -sYs +kpD fHh tQg aCS hgw cYJ -rNa +uVh aQY pde hgw @@ -84532,11 +70031,11 @@ hgw aQY pPH oaa -oZm -mKK -frm +nju +wTL +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -84593,49 +70092,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -hrB -jJI -lXX -dme -eAo -lXX -xiH +eZm +iHL +qgV +xnT +cCu +pkY +xnT +dOF cdT -nqO -rab -mOH -mOH -sPJ +fZe +lSe +ubZ +ubZ +fbP cdT -ipE -csR -csR -mge -ipE -csR -csR -csR -kje -nxk -xXA -lpr -lpr -lpr -lpr -lpr -cdO +usG +fWb +fWb +iKM +usG +fWb +fWb +fWb +bCB +jWq +oKV +arn +arn +arn +arn +arn +mBE aVk -qfw -qfw +bcH +bcH aVk -cgQ -qip -ewq +muR +kIO +jGC ndl -tEF +wDM qeX qeX qeX @@ -84696,11 +70195,11 @@ qeX mOJ mOJ mOJ -tag +ihr ndl -oEJ -iDr -pYA +kbI +nFN +mRl hPk hRo cZE @@ -84708,22 +70207,22 @@ cZE cZE pdE hPk -axT +qUJ eKs -aKd -vKm -vpy -eTh -bWY -dop -sPm +fAm +nhV +uTU +aiz +emy +jct +eIE kii -tKk +kQt fHh -fBY +hfY oaa -jbR -rfE +jhh +rXL oaa uAT uAT @@ -84734,11 +70233,11 @@ uAT nfh uAT uAT -oZm -xrA -frm +nju +hEZ +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -84795,49 +70294,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -xiH -jJI -hiC -xiH -xiH -lXX -xiH +eZm +dOF +qgV +eqs +dOF +dOF +xnT +dOF cdT cdT cdT -guO +lJe cdT cdT cdT -ipE -pDE -pDE -mge -ipE -csR -pDE -pDE -kje -jBY -rIF -lpr -lpr -lpr -lpr -lpr -cdO +usG +aju +aju +iKM +usG +fWb +aju +aju +bCB +owI +awV +arn +arn +arn +arn +arn +mBE aVk wVe wVe aVk -nys -sXN -ewq +sxg +nQr +jGC ndl -tEF +wDM qeX qeX qeX @@ -84898,49 +70397,49 @@ qeX mOJ mOJ mOJ -tag +ihr ndl -oEJ -tdK -ndN +kbI +uFR +lDO hPk mrA cZE -jTB -iMN -ago +miA +aaj +ezC hPk -mql +fOk eKs -lrK -vKm -gQg -bkc -bWY -dop -sPm +vgn +nhV +whI +vym +emy +jct +eIE kii -iqD +htY fHh -xdv +nNG oaa oaa oaa oaa uAT -ydu -wXJ -nPO +tSi +gYB +iXP uAT -nPO -wXJ -bfl +iXP +gYB +ovh uAT -rSR -oZm -frm +qTf +nju +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -84997,49 +70496,49 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -xiH -jJI -lXX -pcJ -xiH -lXX -xiH -kio +eZm +dOF +qgV +xnT +doH +dOF +xnT +dOF +mhb cdT -puz +swM sPo -mOH -qIx +ubZ +fdr cdT -wgI -csR -pDE -mge -ipE -csR -pDE -csR -kje -jxy -iYO -aMK -aMK -aMK -aMK -aMK -cXz +fWy +fWb +aju +iKM +usG +fWb +aju +fWb +bCB +hZl +ggK +fpk +fpk +fpk +fpk +fpk +ioV aVk -ipD -dut +qkJ +nQM aVk -nys -nys -ewq +sxg +sxg +jGC ndl -tEF +wDM qeX qeX qeX @@ -85100,11 +70599,11 @@ qeX qeX mOJ mOJ -tag -oEJ -oEJ -pYA -tDg +ihr +kbI +kbI +mRl +nYJ hPk muL muL @@ -85112,37 +70611,37 @@ muL hPk hPk hPk -eSI +brf eKs dYs -bWY -bWY -uiC -bWY -gKI -sgQ +emy +emy +ans +emy +vZL +iXx wWJ -rwU +rgN fHh -emW +tbi wWJ -vdZ -qxd -rZj +bgL +nVR +mhw uAT -pxI +kfT sKX -iui +yar uAT -ePg +cUG sKX -eTy +wOp uAT -rfF -oZm -frm -frm -tEF +kPt +nju +ahN +ahN +wDM mOJ mOJ qeX @@ -85197,53 +70696,53 @@ qeX qeX qeX qeX -oGH -oGH -oGH -oGH -oGH -vHd -lXX -lXX -lXX -vHd -lXX -jJI -xiH +eZm +eZm +eZm +eZm +eZm +din +xnT +xnT +xnT +din +xnT +qgV +dOF cdT -hvT +hJR aRY -mOH +ubZ cdT cdT -mFD -csR -pDE -mge -ipE -csR -pDE -csR -mFD -jiq -kCb -adL -iHa -sSF -sSF -sSF -nZb +sRC +fWb +aju +iKM +usG +fWb +aju +fWb +sRC +tHk +qGI +vOl +iDw +dkG +dkG +dkG +cuk aVk aVk aVk aVk -ccm -vUM -ewq -ewq -ewq -ewq -ewq +gzX +dtY +jGC +jGC +jGC +jGC +jGC qeX qeX qeX @@ -85302,49 +70801,49 @@ qeX qeX mOJ mOJ -tag -oEJ -ydx -tdK -cxB +ihr +kbI +wPi +uFR +qdy dYs -jvh -xIj -pwG +aSJ +gNi +veo rSd -any -hkb -scV +jJi +pPf +jag eKs upf -uhQ -kCV -pkw -sJh -eHq -klw +eKi +ucv +pjX +cWk +fyv +ksl upf -nsu +nGD fHh jTK -hYS -bhg -wvR -nxj +wGU +lOH +hAk +uJA uAT -wCH -wXJ -mhQ +jTu +gYB +byA uAT -mhQ -wXJ -xgx +byA +gYB +iBz uAT -mlL -xrA -oZm -frm -tEF +vsj +hEZ +nju +ahN +wDM mOJ mOJ qeX @@ -85399,53 +70898,53 @@ qeX qeX qeX qeX -oGH -xiH -wbZ -xiH -jJI -jJI -kcH -xiH -sZQ -xiH -fhB -jJI -cia +eZm +dOF +wUS +dOF +qgV +qgV +clI +dOF +vDm +dOF +ipr +qgV +jZz cdT -fvt -afl -tfF +mZr +tNj +pkG cdT cdT -mFD -oXq -pDE -mge -ipE -csR -pDE -vFO -mFD -rsV -pDE -oWy -nof -nSP -pDE -ipE -qGJ -dHH -nys -woV -sXN -sDj -nys -nys -sXN -ybM -sXN -ewq +sRC +pIz +aju +iKM +usG +fWb +aju +vow +sRC +pal +aju +gXm +jQZ +usc +aju +usG +eiF +kAg +sxg +vpV +nQr +bHI +sxg +sxg +nQr +phd +nQr +jGC qeX qeX qeX @@ -85504,29 +71003,29 @@ qeX qeX mOJ mOJ -tag -oEJ -xPc -tdK +ihr +kbI +iFr +uFR dYs dYs -wlx +eGP jti hjf -qYd -ngS +bgS +ojw epe epe eKs -pYM -klw -klw -pkw -wPf -dYa -qTL +qQu +ksl +ksl +pjX +ptU +uTY +uCK xzu -pkT +vtj qiK wyf uAT @@ -85535,18 +71034,18 @@ uAT uAT uAT uAT -uSA +ctz fbj uAT fuC -fWC +izq uAT uAT uAT -xrA -oZm -frm -tEF +hEZ +nju +ahN +wDM mOJ mOJ qeX @@ -85601,16 +71100,16 @@ qeX qeX qeX qeX -uKX -blV -aot -aot -aot -aot -aot -aot -aot -aot +coI +nzt +jYP +jYP +jYP +jYP +jYP +jYP +jYP +jYP ydm ydm cdT @@ -85620,34 +71119,34 @@ cdT cdT cdT cdT -mFD -wjM -uOu -kGh -gua -wjM -uOu -wjM -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -mFD -nUk -nUk -lCI -nUk -nUk -nUk -nUk -nUk -dfX -ofN +sRC +tfV +eHN +psN +xDb +tfV +eHN +tfV +sRC +sRC +sRC +sRC +sRC +sRC +sRC +sRC +sRC +sRC +wfw +wfw +lkA +wfw +wfw +wfw +wfw +wfw +mOy +tlm qeX qeX qeX @@ -85706,49 +71205,49 @@ qeX qeX mOJ mOJ -tag -oEJ -pYA -tdK +ihr +kbI +mRl +uFR dYs -tnz -sEj -mOU -nmo +cQa +lqh +wLs +kdG fjD -xRd +eGz nHj mrt hNv -jHF -feC -feC -vLc -bJu -qPU -sUC +rGo +kCa +kCa +flB +rAY +uwA +nNZ xzu -pkT +vtj eab cJX -kcb -tOw -xRD -qZx +aWE +cBV +mNk +ojd hCJ -nvL -aWq -kmt -gZl -kmt -aWq -mzk -gKt +fNA +dLE +ifl +ldY +ifl +dLE +idk +gZP uAT -oZm -hxH -frm -tEF +nju +nKd +ahN +wDM mOJ mOJ qeX @@ -85803,53 +71302,53 @@ qeX qeX qeX qeX -uKX -kwU -aot -bmx -wpz -eKd -ufl -vln -wpz -aot -kra -qsg -smB -ebG -xcQ -reh -aba -dWw -nWA -nll +coI +wbl +jYP +iTQ +hKV +kRb +tLE +idr +hKV +jYP +qdm +fCt +wqc +ane +cTS +djU +gUd +ele +jRL +noi uYX qLT rry -aba +gUd uYX qLT uYX -iXT -aba -dXQ -tgi -cGc -ncJ -xcQ -vTi -aba -own -nUk -gfk -hmC -jvt -oPR -cgZ -tdd -nUk -lSD -ofN +fYI +gUd +ubB +oRh +oTS +min +cTS +aZg +gUd +enc +wfw +lFB +mRN +afV +mUi +tsp +meY +wfw +mMZ +tlm qeX qeX qeX @@ -85907,37 +71406,37 @@ qeX qeX qeX mOJ -fDe +wAV ndl -oEJ -neD -pYA +kbI +eCq +mRl dYs -tnz -sEj -bdG -bBp +cQa +lqh +qBZ +hMr gsO -gsw +csT epe cnt -oqy +bRz upf -cxg -ycQ -klw -eHq -dMZ -ouf +hpC +aUO +ksl +fyv +oEH +xZN upf -eYZ +goz jTK jTK -vSF -wPJ -xiD -vSF -ean +hmt +lYO +ouI +hmt +xWz eGK sbp sbp @@ -85945,13 +71444,13 @@ sbp sbp sbp opo -qkq +ser uAT -oZm -eQR -frm +nju +csu +ahN ndl -wgf +bhQ mOJ qeX qeX @@ -86005,16 +71504,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -gkd -gUN -mZY -gUN -jSe -jQV -nsh +voK +tbW +voK +lnF +abY +ich +abY +cky +ycZ +oIR qLT uYX qjz @@ -86026,11 +71525,11 @@ vuh dhH qLT uYX -qEO -vYx -amK -amK -xfb +nzL +cJC +xhS +xhS +hrm eCf qhX qhX @@ -86042,16 +71541,16 @@ qhX qhX eCf qhX -qdL -gvQ -wZf -nkg -ddg -nkg -jkr -osi -sPO -oDN +fGR +jDy +tET +wLr +tUM +wLr +tuD +nqR +nfs +ylQ qeX qeX qeX @@ -86109,26 +71608,26 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -eoq -ndN +kbI +fKq +lDO dYs -tnz -sEj -bdG -mBT +cQa +lqh +qBZ +kmj gsO -pey +rcE epe -qzt +dWV dYs upf upf upf -dJF -waF +vSB +uiL upf upf upf @@ -86139,21 +71638,21 @@ uAT uAT uAT uAT -rdr +tcH rFG kWI kWI aYw -iBc -ial -mLk -wza +hYr +rUc +snz +lOS uAT -mLh -xBA -frm +sUN +hbm +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -86207,16 +71706,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -cYU -jQV -eAa -nkC -rTY -fKk -nsh +voK +tbW +voK +uMe +ycZ +vrR +kIz +oAL +dIX +oIR qLT uYX uYX @@ -86228,11 +71727,11 @@ qrc icV uYX uYX -qEO +nzL eXD -aba +gUd qLT -uvg +hKZ uYX uYX uYX @@ -86244,16 +71743,16 @@ uYX uYX uYX qLT -mJH -vfy -pBL -dmG -clg -qYf -giw -oDN -qfm -oDN +nfg +vPF +kGI +oeN +jyD +czn +drX +ylQ +kTw +ylQ qeX qeX qeX @@ -86311,51 +71810,51 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -iDr -pYA +kbI +nFN +mRl dYs -tnz -sEj -fzk -bBp +cQa +lqh +qIl +hMr gsO -dka -oqy +cEX +bRz dYs dYs -sWC -brX -rmb +dqO +aYk +rtP oWY rsr -wOn -uhL -vjq -uhL -uhL -uhL -azt -blp -mRL +bNQ +bLY +kpV +bLY +bLY +bLY +unI +bHq +iJp uAT -nii +oRT sbp sbp sbp eGK -pnz +kzl uAT iRj iRj uAT -vVm -nwD -frm +csD +gru +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -86409,53 +71908,53 @@ qeX qeX qeX qeX -uNk -uMq -uNk -cYU -jQV -jQV -jQV -mFk -hTk -nsh +voK +tbW +voK +uMe +ycZ +ycZ +ycZ +fEI +etY +oIR qLT -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -snw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +ilA eXD -aba +gUd qLT -nDG -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH +aVP +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw +sKw qLT -mJH -wNJ -pMa -qYf -qYf -qYf -giw -oDN -qfm -oDN +nfg +aZa +jli +czn +czn +czn +drX +ylQ +kTw +ylQ qeX qeX qeX @@ -86513,22 +72012,22 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -pYA -tdK +kbI +mRl +uFR dYs -hOx -sVc -hmE -bBp +yhk +uoH +kUt +hMr gsO -qei -pzB +jod +knM ufd -kBi -pTP +edl +dqF rtM pYm jcw @@ -86541,23 +72040,23 @@ jcw jcw hzx qgK -ogZ +rHC uAT -mdK -dBA -mLk -mLk +wRr +kXO +snz +snz eGK isW -frz -cjO -aWq -frz -xrA -oIA -frm +bZW +bom +dLE +bZW +hEZ +mCk +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -86611,16 +72110,16 @@ qeX qeX qeX qeX -uNk -uMq -uNk -gVf -lkT -kwe -txf -qqv -deY -lju +voK +tbW +voK +uSq +bmL +jXA +wKo +sDa +ixw +ucw sgC eIS sgC @@ -86634,7 +72133,7 @@ sgC sgC sgC pOg -vnm +woR sgC sgC sgC @@ -86648,16 +72147,16 @@ sgC sgC eIS sgC -aBg -qgJ -fkU -bax -emi -djc -adc -oDN -qfm -oDN +sDk +axt +unR +jCI +jgI +pdw +afA +ylQ +kTw +ylQ qeX qeX qeX @@ -86715,51 +72214,51 @@ qeX qeX mOJ mOJ -tag +ihr ndl -oEJ -pYA -tdK +kbI +mRl +uFR dYs dYs dYs dYs dYs gsO -qei -pzB +jod +knM ufd -tdu +uOH rtM dWM oWY -css -vsF -vsF -vsF -vsF -vsF -dUD -vsF -wqE +kll +upT +upT +upT +upT +upT +rEM +upT +vFB fxT -ufc +tvd uAT uAT sbi gCq gCq -tBq +hHZ sbi sbi uAT uAT uAT -xrA -rWH -frm +hEZ +mHA +ahN ndl -tEF +wDM mOJ mOJ qeX @@ -86813,53 +72312,53 @@ qeX qeX qeX qeX -uKX -wXC -aot -xMY -wpz -iBt -wVS -vln -wpz -aot -nmB +coI +gat +jYP +psn +hKV +nOq +dog +idr +hKV +jYP +orN eXD -aba -aba -aba -eWp -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -aba -mDI -aba -aba -aba +gUd +gUd +gUd +cUN +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +hqR +gUd +gUd +gUd eXD -haQ -nUk -tGC -sCj -nGr -fgR -cgZ -tdd -nUk -oaz -ofN +oof +wfw +ixp +gAX +uij +oun +tsp +meY +wfw +acQ +tlm qeX qeX qeX @@ -86913,29 +72412,29 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY ndl ndl -oEJ -wdR -pYA -suk -pYA -mtG -qqJ +kbI +cFx +mRl +egl +mRl +ydf +tuY iRu cXN -vtJ -obn +bEO +tYp iRu -wvi +nme rsr oWY -rfC -pgb +qrX +yiB ull ull vgO @@ -86943,29 +72442,29 @@ vgO vgO ull ull -tcP -wqE +kGS +vFB xYV -wIJ -ppn +mKR +nmr sbi jPF dyk fRZ ixK sbi -oZm -lna -xyE -xrA -oIA -frm +nju +rVI +oxw +hEZ +mCk +ahN ndl ndl -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -87015,19 +72514,19 @@ qeX qeX qeX qeX -uKX -blV -aot -aot -aot -aot -aot -aot -ktr -mZC -aba +coI +nzt +jYP +jYP +jYP +jYP +jYP +jYP +bMA +fuT +gUd eXD -aba +gUd uYX uYX uYX @@ -87049,19 +72548,19 @@ qLT pyc qLT uYX -aba +gUd eXD -aba +gUd ydm -ccm -ccm -ccm -ccm -ccm -ccm -ccm -hzq -ofN +gzX +gzX +gzX +gzX +gzX +gzX +gzX +eqN +tlm qeX qeX qeX @@ -87115,59 +72614,59 @@ qeX qeX qeX qeX -tag +ihr qZo qZo qZo qZo qZo qZo -cDQ -cwl -suk -tdK -tdK -enY +dwT +pVu +egl +uFR +uFR +ojv iRu -pHZ -peP -fzv +emw +tRw +eYb iRu -jaM +bqw fWB -css -otg +kll +wsG ull ull -knZ -mXN -vno -jdB -kEe +gdJ +asf +svH +hii +dZk ull ull -kWB -wqE +jGp +vFB xhi -kME +glV dZd -rJe +vbR hek qWf -oQx +gAh sbi -xrA -oZm -xyE -oZm -eVX +hEZ +nju +oxw +nju +fSY xcY xcY xcY xcY xcY xcY -tEF +wDM qeX qeX qeX @@ -87217,21 +72716,21 @@ qeX qeX qeX qeX -oGH -tPZ -lXX -dAB -hjA -brj -pRi -wuK -gTk -rNW -aba +eZm +aZN +xnT +nvU +hVE +hTA +pHP +xsW +kXj +hjm +gUd eXD -dfR -qSH -fbx +jnh +sKw +cpv uYX kYb qLT @@ -87249,21 +72748,21 @@ qLT uYX uQq ydm -mpl -qSH -kEI +tZp +sKw +uTC eXD qLT ydm -wpp -qhz -bGT -mhA -qHb -xcF -ccm -dXh -ewq +lPT +mHT +oyk +pKJ +udI +uQP +gzX +uTc +jGC qeX qeX qeX @@ -87317,59 +72816,59 @@ qeX qeX qeX qeX -tag +ihr qZo -pak -pak -oTV -lEn +pFM +pFM +ecY +sLo glg glg glg glg -hgu -tdK -ect +tiW +uFR +uat iRu -xzk -peP -fzv +xiB +tRw +eYb iRu -qyv +tqF lEt -xft +tze ull ull -gCk -sjH -sjH -sjH -sjH -sjH -rhR +xlz +oGl +oGl +oGl +oGl +oGl +aoS ull ull -swC +diJ gJa -cLy +dLP dZd -rJe +vbR hek tXg -pcV +qkn sbi -xrA -nvF +hEZ +bsv rhh rhh rhh rhh -uOC -gEM -kdd -cid +jGf +iec +iap +lhD xcY -tEF +wDM qeX qeX qeX @@ -87419,21 +72918,21 @@ qeX qeX qeX qeX -oGH -xiH -lXX -jsQ -hst -mGG -lXX -sBl -lFq -qXz -aba +eZm +dOF +xnT +eZq +cze +eJj +xnT +hmO +sso +ddq +gUd eXD -qEO -aba -uvg +nzL +gUd +hKZ uYX oJC uYX @@ -87451,21 +72950,21 @@ uYX uYX qLT aaE -qEO -aba -uvg +nzL +gUd +hKZ eXD uYX ydm -rfI -bGT -bGT -bGT -bGT -bGT -cYF -qxP -ewq +pXD +oyk +oyk +oyk +oyk +oyk +nqJ +fLj +jGC qeX qeX qeX @@ -87519,59 +73018,59 @@ qeX qeX qeX qeX -tag +ihr qZo -idf -pak -oTV -wyx -fJr +qyL +pFM +ecY +bQG +ozp tFX bjg glg -dNa -tdK -pYA +bVt +uFR +mRl iRu -mRi -tYL -qwc +miu +dSI +xAk iRu -cSs +iTD oiv -kME +glV qSJ -uVo -nqc +qpH +mbr ibf oEt oEt oEt ibf -xjd -vFF +xXS +xCr qSJ -cSs +iTD xhi -kME +glV dZd -aDz +nyE hek uFF -hYq +qeF sbi -xrA -nvF +hEZ +bsv rhh -uyD -pZn -prV -jEj -gEM -kdd -tRG +vMC +qUe +wci +oGb +iec +iap +sxU xcY -tEF +wDM qeX qeX qeX @@ -87621,53 +73120,53 @@ qeX qeX qeX qeX -oGH -xiH -ouv -ouv -ouv -ouv -ouv -opf -vnL -qXz -aba +eZm +dOF +goO +goO +goO +goO +goO +rbL +ovV +ddq +gUd eXD -lnW -wuX -jhz -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -rIK -wuX -pUc -kxj -dbk -wuX -gnM +pon +oVK +vjw +pGV +uBr +oVK +tre +pGV +uBr +oVK +tre +pGV +uBr +oVK +tre +pGV +uBr +oVK +tre +pGV +dQT +oVK +gLb eXD uQq ydm -bqt -bGT -bGT -bGT -bGT -qCn -ccm -geH -ewq +cWA +oyk +oyk +oyk +oyk +wsH +gzX +vUQ +jGC qeX qeX qeX @@ -87721,59 +73220,59 @@ qeX qeX qeX qeX -tag +ihr qZo -pak -pak -oTV -fww -qZX +pFM +pFM +ecY +bTM +qvf jPA uFh glg -iDr -tdK -pYA +nFN +uFR +mRl iRu iRu -ucP -okP +qyn +vth iRu -vPJ +gyM ipi -kME +glV qSJ -odr -nqc +xqW +mbr oru cOe hYk cOe xSR -xjd -rfW +xXS +jeT qSJ -tdu +uOH rsr -glJ +lyh sbi sbi -mJD +sMn sbi sbi sbi -oZm -oZm +nju +nju rhh -ePz +poS qva uyN -xPf -gEM -kdd -cid +onL +iec +iap +lhD xcY -tEF +wDM qeX qeX qeX @@ -87823,19 +73322,19 @@ qeX qeX qeX qeX -oGH -hrB -ouv -vIC -gMT -xEP -ouv -hWH -dxr -qXz -aba +eZm +iHL +goO +sdY +xuk +bJw +goO +siA +vrD +ddq +gUd eXD -vtg +swX pky pky pky @@ -87857,19 +73356,19 @@ twV pky pky pky -eCs +fHr eXD uYX ydm -eej -bGT -tPw -anf -qbF -vOd -ccm -lLX -ewq +vlh +oyk +wMD +mQV +lIf +pmw +gzX +cyU +jGC qeX qeX qeX @@ -87923,51 +73422,51 @@ qeX qeX qeX qeX -tag +ihr qZo qZo jsN jsN nIW -ixn +gro lcy mdY glg -cMP -tdK -pYA +lCj +uFR +mRl iRu -pHZ -rSN -tEA +emw +mSP +eBQ iRu -jKT +dqQ ipi -kME +glV qSJ -gcL -nqc +sVH +mbr oru cOe lqM cOe xSR -xjd -jGJ +xXS +vXN qSJ -wrt +odV rsr -kME +glV sbi -dBp -kBA -dgt +irv +rcu +oSo sbi -xqT -oZm -xBs +mGr +nju +kuW rhh -rAe +hNc dRz uyN wZJ @@ -87975,7 +73474,7 @@ woc woc xcY xcY -tEF +wDM qeX qeX qeX @@ -88025,19 +73524,19 @@ qeX qeX qeX qeX -oGH -xiH -ouv -cfD -jJI -dVU -ouv -pBo -pBo -nbS -vIq +eZm +dOF +goO +bHt +qgV +gBv +goO +ayS +ayS +gBM +dDZ eXD -djS +wBy pky pky pky @@ -88046,8 +73545,8 @@ eka kkT rec gUI -tow -tow +hSJ +hSJ jcL mfM vMc @@ -88059,19 +73558,19 @@ bWR pky pky jho -iSM +rhK eXD qLT ydm -aWM -bGT -bGT -bGT -bGT -bGT -ccm -qxP -ewq +hHm +oyk +oyk +oyk +oyk +oyk +gzX +fLj +jGC qeX qeX qeX @@ -88125,59 +73624,59 @@ qeX qeX qeX qeX -tag +ihr pur -twz -mMR -sfQ -sfQ -pYv +dBD +bVV +nuM +nuM +gQb jPA uFh glg -rRa -vrO -tdK +crx +bzu +uFR iRu eYc hBF hBF iRu -gga +cnV oiv -kME +glV ull -noC -jyj +vuX +rvR fbF rwN aZc qss tdP -evF -bPp +tyf +pcq ull -tQp +kgw xhi -jSZ +dgG sbi -cfU -nnX -hTX +sMY +azC +cbS sbi -xqT -oZm -bEf +mGr +nju +keO rhh -fXX +pNC uyN uyN -wAr -wAr -kFI -otB +wLJ +wLJ +gHV +hBf cra -tEF +wDM qeX qeX qeX @@ -88227,31 +73726,31 @@ qeX qeX qeX qeX -oGH -uTl -ouv -ajB -jJI -jJI -nlO -jJI -jJI -tta -aba +eZm +cDV +goO +hnJ +qgV +qgV +lvs +qgV +qgV +adU +gUd eXD -eTS +qeo pky pky pky pSI ggS -qVS -eQJ -qVS -uRQ -uRQ -qVS -aPa +jCU +eJe +jCU +fHW +fHW +jCU +ged gTp wpT myQ @@ -88261,19 +73760,19 @@ ipY ciG pky mVQ -uWY +xvn eXD qLT ydm -ojh -kjE -mwb -bGT -bGT -bGT -ccm -qxP -ewq +qyk +gbi +tlr +oyk +oyk +oyk +gzX +fLj +jGC qeX qeX qeX @@ -88327,10 +73826,10 @@ qeX qeX qeX qeX -tag +ihr pur -sHn -vOQ +mYG +aML jPA jPA jPA @@ -88338,48 +73837,48 @@ jPA uFh glg glg -rqH -rQR +oCg +emA iRu -mRi -mRi -xhx +miu +miu +wPc iRu -khE +gBB oiv -kME +glV qSJ -pqk -nqc +rjq +mbr oru aoK lqM cOe xSR -xjd -bkb +xXS +hNj qSJ -rJP +nLC gJa -kCn +vIk sbi -pjo -cxj +nyG +rEl sbi sbi -ndX -uFX -uFX +taK +sZg +sZg rhh -wtB +bRq uyN uyN uyN uyN -xsA -cya +xTc +izS cra -tEF +wDM qeX qeX qeX @@ -88429,53 +73928,53 @@ qeX qeX qeX qeX -oGH -xiH -ouv -hIP -jJI -hYN -vlG -rUe -hZj -cyM -aba +eZm +dOF +goO +jLw +qgV +nMq +lGO +dWu +pLV +vMX +gUd eXD -srY +xCH vXe sjC iSB igH ipN -nhY -sFP -sFP -sFP -sFP -sFP -iMr -qVS -jwE -qVS -aPa -qVS -aPa +fIl +oBz +oBz +oBz +oBz +oBz +jhd +jCU +wMW +jCU +ged +jCU +ged qvK oCh fQA -azj +xVg eXD -aba +gUd ydm -aWI -bGT -bGT -bGT -bGT -lCU -ccm -erk -ewq +drM +oyk +oyk +oyk +oyk +cDO +gzX +cCA +jGC qeX qeX qeX @@ -88529,59 +74028,59 @@ qeX qeX qeX qeX -tag +ihr pur -uLd -tnN -bVZ -bVZ -qZX +rtn +rna +fxO +fxO +qvf jPA iUz glg -vWL -ijg -pYA +dUi +vMv +mRl iRu iRu iRu iRu iRu -bOI +wUn oiv -kME +glV qSJ -mSa -nqc +iyQ +mbr oru aoK hYk cOe xSR -xjd -bkb +xXS +hNj qSJ -cSs +iTD xhi -vBr +xWf sbi sbi sbi sbi -rjR -xrA -xpb -jqg +rHs +hEZ +tVO +aAJ rhh -kQX +xFR mrG uyN -jmc -jmc -hEQ -vRH +wud +wud +mFI +vAO cra -tEF +wDM qeX qeX qeX @@ -88631,53 +74130,53 @@ qeX qeX qeX qeX -oGH -jJI -ouv -ouv -hIh -ouv -ouv -lXX -lXX -lXX -aba +eZm +qgV +goO +goO +bce +goO +goO +xnT +xnT +xnT +gUd eXD -vtg +swX qMu fqy -fpl -hNN +wtm +pvn uuf -lmj -qVS -aPa -qVS -aPa -qVS -lmj -sFP -sFP -sFP -sFP -sFP -sFP -tbl +biX +jCU +ged +jCU +ged +jCU +biX +oBz +oBz +oBz +oBz +oBz +oBz +uUY pky pky -eCs +fHr eXD -szu -ccm -ccm -bGT -xvw -dhG -bGT -vOd -ccm -erk -ewq +lBy +gzX +gzX +oyk +uEU +rJs +oyk +pmw +gzX +cCA +jGC qeX qeX qeX @@ -88731,50 +74230,50 @@ qeX qeX qeX qeX -tag +ihr qZo qZo jsN jsN nIW -pYY +qoZ jPA qOe -lxz -sbg -jsI -fhA -oIp +eeC +bwP +xuJ +qyf +fsg pYm pYm -hDZ -uhL -pTP +kXq +bLY +dqF ipi -kME +glV qSJ -ult -nqc +aNm +mbr ibf uSF xiK xiK ibf -xjd -bkb +xXS +hNj qSJ -tdu +uOH rsr -obo -uhL -acW +sde +bLY +qvg lax xSN -gpz -qGt -rse -rse -aSV +bMe +jyc +tNa +tNa +nCN bDm hdF hMy @@ -88783,7 +74282,7 @@ woc woc xcY xcY -tEF +wDM qeX qeX qeX @@ -88833,53 +74332,53 @@ qeX qeX qeX qeX -oGH -aLu -lXX -coy -xiH -sHz -fAl -iYn -vKR -lXX -hAm +eZm +elG +xnT +uav +dOF +nKY +nGe +tUD +tlJ +xnT +vbX eXD -djS +wBy qMu iGP -dLG -uQv -pHC -cvV +wfL +tSS +smn +pHx uYP pVM qWG pAQ qTA -kaC -sFP -hKI -sFP -hKI -sFP -hKI -uRQ +ggt +oBz +vGC +oBz +vGC +oBz +vGC +fHW pky pky -iSM +rhK eXD -qol -ovJ -hOE -qRW -qvw -dDC -bGT -gYV -ccm -erk -ewq +iga +bAK +wIt +nkQ +oJB +pXg +oyk +tJB +gzX +cCA +jGC qeX qeX qeX @@ -88933,59 +74432,59 @@ qeX qeX qeX qeX -tag +ihr qZo -pak -pak -oTV -lEn -pYv +pFM +pFM +ecY +sLo +gQb jPA -iGx +uBI glg -sZw -fQh -rsy -lge +xLy +kOE +cVC +vAn oWY oWY xYV dko bIr rhf -cLy +dLP ull ull -vJz -oNK -aDB -oNK -oNK -oNK -gLm +bTd +lCd +aeb +lCd +lCd +lCd +psX ull ull -hlj +tbC xYV jcw kKv iJm dzK fXH -vSy -cOy -kEd -riZ +oWa +tKP +jrX +vWY rhh -wtB +bRq nDQ hMy -ikY -gEM -kdd -cid +pQK +iec +iap +lhD xcY -tEF +wDM qeX qeX qeX @@ -89035,53 +74534,53 @@ qeX qeX qeX qeX -oGH -jJI -fhB -xiH -jJI -lap -jJI -xiH -jJI -bNl -qEO +eZm +qgV +ipr +dOF +qgV +hYA +qgV +dOF +qgV +vGE +nzL eXD -eTS +qeo qMu pJK -tvD -acd +kvC +fbf oMK -lmj -qVS -aPa -qVS -aPa -qVS -lmj -sFP -sFP -sFP -sFP -sFP -sFP -uRQ +biX +jCU +ged +jCU +ged +jCU +biX +oBz +oBz +oBz +oBz +oBz +oBz +fHW pky pky -uWY +xvn eXD -srS -ovJ -lHI -xMx -bGT -bGT -bGT -xhY -ikR -eaP -ewq +fIX +bAK +czZ +xhV +oyk +oyk +oyk +gWK +vPY +cNO +jGC qeX qeX qeX @@ -89135,59 +74634,59 @@ qeX qeX qeX qeX -tag +ihr qZo -idf -pak -oTV -wyx -tHF -mvi -glM +qyL +pFM +ecY +bQG +oNX +uvq +lSy glg glg -lge -tnc -iVe -iVe -hUz -wqE +vAn +gRG +jff +jff +eCk +vFB xhi oWY -css -jBE -ycw +kll +dgS +bgr qSJ -wJa -mZR +nYM +bpk aXu -qli +kCu sZi -xtx -ahd +prJ +lPD qSJ -qml -tWI -wqE +kPN +qoS +vFB oWY xhi -css -hmq -rjR -rjR -iLV -cqv -rjR +kll +sMw +rHs +rHs +ipT +eVw +rHs rhh -ipy -clc -prV -ses -gEM -kdd -tRG +tnI +lXD +wci +hFu +iec +iap +sxU xcY -tEF +wDM qeX qeX qeX @@ -89234,59 +74733,59 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -oGH -xiH -lXX -svK -xiH -qmY -efA -vKR -fAl -lXX -kmn +wAV +wtY +wtY +eZm +dOF +xnT +rzL +dOF +nPf +kgl +tlJ +nGe +xnT +ylw eXD -srY +xCH fdw bXV cnn wzD eQS -qks -sFP -sFP -sFP -sFP -sFP -gsT -qVS -xvm -dAi -aPa -qVS -aPa +dBa +oBz +oBz +oBz +oBz +oBz +wFC +jCU +tcG +fsf +ged +jCU +ged hdt xpv hyz -azj +xVg eXD -keq -ovJ -lHI -xMx -taa -bGT -tbF -qCn -ccm -qxP -ewq -wgJ -wgJ -wgf +rAJ +bAK +czZ +xhV +aVl +oyk +edo +wsH +gzX +fLj +jGC +wtY +wtY +bhQ qeX qeX qeX @@ -89337,59 +74836,59 @@ qeX qeX qeX qeX -tag +ihr qZo -pak -pak -oTV -fww +pFM +pFM +ecY +bTM glg glg glg glg -pCt -fQh -rsy -vWL -iVe -iVe -hlj +rpA +kOE +cVC +dUi +jff +jff +tbC xhi -css -eNd +kll +wcX ull ull ull lYi ull -hMa +fxi ull -owV +rLd ull lYi ull ull ull -wkY -wqE +mqt +vFB xhi -kME -rjR -rjR -jqg -cOy -kEd -jTo +glV +rHs +rHs +aAJ +tKP +jrX +qIY rhh rhh rhh rhh -xPf -gEM -kdd -cid +onL +iec +iap +lhD xcY -tEF +wDM qeX qeX qeX @@ -89436,34 +74935,34 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -oGH -hrB -lXX -lXX -iGC -lXX -lXX -lXX -lXX -lXX -hUt +eZm +eZm +iHL +xnT +xnT +vBe +xnT +xnT +xnT +xnT +xnT +wsP eXD -vtg +swX pky pky pky kCP pMq -qVS -aPa -qVS -uRQ -uRQ -qVS -aPa +jCU +ged +jCU +fHW +fHW +jCU +ged jFe pqW oQv @@ -89473,22 +74972,22 @@ vKv lvV pky bBY -eCs +fHr eXD dYI -ccm -ccm -bGT -bGT -bGT -jju -vOd -ccm -pnB -ewq -ewq +gzX +gzX +oyk +oyk +oyk +dmb +pmw +gzX +wab +jGC +jGC ndl -tEF +wDM qeX qeX qeX @@ -89539,59 +75038,59 @@ qeX qeX qeX qeX -tag +ihr qZo qZo qZo qZo qZo qZo -rTc -fQh -sMc -fQh -fQh -rsy -vWL -mqI -iVe -gga +oZT +kOE +dxB +kOE +kOE +cVC +dUi +kBn +jff +cnV rsr -dfP +hGQ ull ull ull ull -xBq -mIr -xmc +fQa +nEy +mjU wJt -amR -rKb -kGJ +oDU +ubd +rvO ull ull ull ull -hnr +iXq rsr -kME -rjR -aLo -jqg -pRP -nRh -hfP -iTm -kEd -hRs +glV +rHs +hta +aAJ +jEd +qVb +aCz +bus +jrX +jro xcY xcY xcY xcY xcY xcY -tEF +wDM qeX qeX qeX @@ -89638,22 +75137,22 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -xiH -lXX -juS -ida -vEJ -tzg -wxC -dVm -uGr -gGt +eZm +qgV +dOF +xnT +juz +pvt +rFD +gtX +ygY +vCb +sQA +rne eXD -djS +wBy pky pky pky @@ -89662,8 +75161,8 @@ pPd eFG svY cnw -poP -poP +biy +biy uDP ftl nNB @@ -89675,22 +75174,22 @@ twV pky pky eoS -iSM +rhK eXD qLT eEr -pwR -bGT -bGT -bGT -gra -bGT -ccm -yff -lfc -ewq +ibe +oyk +oyk +oyk +gmR +oyk +gzX +rhP +oAj +jGC ndl -tEF +wDM qeX qeX qeX @@ -89741,59 +75240,59 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl -oEJ -fQh -oJa -gXQ -dqh -dqh -xxd -fQh -eoq -iVe -aHY -sHS +kbI +kOE +mbf +fnP +pJD +pJD +dkp +kOE +fKq +jff +mdV +oPG ull ull -kaS -aUj +cBm +gOL ull -kOG -rKb -rFf +itM +ubd +diq mqn -dap -rKb -pBW +hPT +ubd +vcz ull -uye -eGm +umx +aEZ ull jol -aCw -qOj -rjR -gsN -xrA -fhT -xrA -pRP -fqN -fNI -cce -frm +pOA +eoF +rHs +uQi +hEZ +xpE +hEZ +jEd +irc +rtV +tQd +ahN ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -89840,22 +75339,22 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -xiH -lXX -gkE -xil -ojK -nLz -qGa -oPM -uGr -cXx +eZm +qgV +dOF +xnT +sup +ogG +dWD +ohc +qpO +hJa +sQA +glw eXD -eTS +qeo pky pky pky @@ -89877,22 +75376,22 @@ bWR pky pky pky -uWY +xvn eXD qLT ydm -gry -bGT -bGT -abx -bGT -cXo -ccm -qxP -uPv -ewq +gXx +oyk +oyk +mPl +oyk +uLx +gzX +fLj +rhq +jGC ndl -tEF +wDM qeX qeX qeX @@ -89943,15 +75442,15 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl -oEJ -vrQ -bBN +kbI +kcO +uOK xQJ xQJ xQJ @@ -89959,27 +75458,27 @@ xQJ xQJ xQJ xQJ -qpW +nHP gnj -amR +oDU ull -rjs -rjs +ukH +ukH ull wkT ull -prZ +aKx ull -xOr +tvb ull wkT ull -rjs -rjs +ukH +ukH ull -sQU +mQS gnj -rui +mDq aHH lmc lmc @@ -89987,15 +75486,15 @@ prf prf prf prf -pRP -fNI -frm +jEd +rtV +ahN ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -90042,59 +75541,59 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -efL -eUV -lXX -cQu -pHM -jXK -mjY -nLz -gMg -uGr -pBQ +eZm +kQW +trS +xnT +oln +kEU +qCy +xdC +ohc +cHi +sQA +tHh nVY sgC -cKI +sIc kYQ -oOz -ieN -lsL -oVc -oOz -ieN -lsL -oVc -oOz -ieN -lsL -rYj -rYj -rYj -hPU -rCx -hxA -sWw -lsL -kEI +eGu +uQV +hzI +ddw +eGu +uQV +hzI +ddw +eGu +uQV +hzI +bmZ +bmZ +bmZ +wWW +lMG +kAe +cGu +hzI +uTC eXD uYX ydm -fKB -bGT -bGT -bGT -bGT -xyA -ccm -qxP -rBx -ewq +vCt +oyk +oyk +oyk +oyk +fJq +gzX +fLj +gGp +jGC ndl -tEF +wDM qeX qeX qeX @@ -90145,59 +75644,59 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -oEJ -oEJ -oEJ -oEJ -rsy -fQh +kbI +kbI +kbI +kbI +cVC +kOE xQJ xQJ xQJ xQJ -faW +ftL vvv -hWX +mSJ wbM gnj -gio -qMp -oJE -oJE -cBJ -oJE -tqQ +nAW +aDp +jGz +jGz +wVI +jGz +xwX gnj -cBJ +wVI wbM -tqQ -oJE -cBJ -oJE -oJE -vvV -mVL +xwX +jGz +wVI +jGz +jGz +hfN +cbn gnj wbM -sSp +sUe nQE xUi -hxB -nic -qIX +gst +ski +ssC prf -jqg -cOy -frm -frm -frm -frm +aAJ +tKP +ahN +ahN +ahN +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -90244,59 +75743,59 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -qRD -lXX -ivT -nLz -eWj -mQi -wIf -beR -uGr -twO +eZm +qgV +nRr +xnT +ewE +ohc +tcr +oOy +qCP +atV +sQA +pus eXD -aba +gUd fPp unq uYX uYX fPp uYX -dXY -suo -dXY -suo -aFe +xQu +vsl +xQu +vsl +eWM iAF uYX -icy -cYd +qzP +otz xGK xGK uiA -pQs -gWx -aba -uvg +tGv +rfA +gUd +hKZ eXD -aba +gUd ydm -kBx -bGT -bGT -ijh -bGT -vOd -ccm -erk -nys -ewq +hMB +oyk +oyk +qPi +oyk +pmw +gzX +cCA +sxg +jGC ndl -tEF +wDM qeX qeX qeX @@ -90347,59 +75846,59 @@ mOJ mOJ qeX qeX -tag +ihr ndl ndl -oEJ -beN -lsq -rTc -rsy -fQh +kbI +aIq +hnW +oZT +cVC +kOE xQJ -cHa -gjp +hoJ +fRm qmq vvv vee eOu -iUh -mnf -cts -gbK +gFR +fsQ +rgv +cFp cES ilS -rGV -iQq -iQq -mND -mtR -rUR -bEL -bEL -gbK +qCb +wrE +wrE +giM +pcL +lqH +xAF +xAF +cFp ekT gMA -bSw -cts -ogb -sTt -iJv -tSD -kmu +qWW +rgv +ntg +guk +noJ +cOc +stt dQp dQp dQp rWV -jqg -cOy -jqg -jqg -jqg -frm +aAJ +tKP +aAJ +aAJ +aAJ +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -90446,33 +75945,33 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -jJI -ekt -lXX -xqX -wwy -wwy -eoj -vHw -qaf -aoG -qEO +eZm +qgV +ocN +xnT +xuH +fWM +fWM +hxW +lnm +jAW +moP +nzL eXD -lbt +njJ fWv oGL yaY yaY fWv euz -dXY -ydK -dXY -suo -dXY +xQu +qnA +xQu +vsl +xQu vOr qLT qLT @@ -90481,24 +75980,24 @@ qLT qLT nVA uuy -qsp -nPw -gnM +udC +eUw +gLb eXD -lbt +njJ ydm -jWb -bGT -pkZ -bGT -bGT -fSx -ccm -erk -sXN -ewq +knS +oyk +xFh +oyk +oyk +jUR +gzX +cCA +nQr +jGC ndl -tEF +wDM qeX qeX qeX @@ -90549,29 +76048,29 @@ mOJ mOJ qeX qeX -tag +ihr ndl ndl -oEJ -dJZ -jpd -dqh -phv -qBu +kbI +oNg +uIp +pJD +oFq +lXl xQJ -oww +olU xCv xCv xCv mYZ eOu -dBx -kJk +vbN +lcp hZo -gAl +vjS hul -mzh -iBC +ltY +pCY hZo hZo hZo @@ -90579,13 +76078,13 @@ hZo hZo hZo hZo -phV -tdR +baS +oUg qFQ -wZS +lxQ hZo -cqX -fwg +vmc +wgj aHH dQp dQp @@ -90593,15 +76092,15 @@ dQp dQp dQp rWV -jqg -ceZ -mrN -xPQ -iLL -frm +aAJ +fMk +lYB +fio +uwg +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -90648,59 +76147,59 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -xiH -xiH -lXX -jGW -poN -jJW -nLz -vHw -qaf -aoG -qEO +eZm +dOF +dOF +xnT +uDw +nmm +emX +ohc +lnm +jAW +moP +nzL eXD -aba +gUd yaY -dvH -gJw -vtm +jwc +mxA +fBT yaY uYX -dXY -suo -dXY -suo -dXY +xQu +vsl +xQu +vsl +xQu vfg uYX -aba -uDg +gUd +pqX aeD uYX ptp uYX uYX uYX -sMi +chI eXD -aba +gUd ydm -vvS -bGT -ldu -bGT -bGT -pwR -ccm -erk -sXN -ewq +kvd +oyk +nBf +oyk +oyk +ibe +gzX +cCA +nQr +jGC ndl -tEF +wDM qeX qeX qeX @@ -90751,59 +76250,59 @@ mOJ mOJ qeX qeX -tag +ihr ndl ndl -oEJ -oJa -qow -fQh -fQh -qoH +kbI +mbf +xob +kOE +kOE +hwa xQJ -dXt -xat -vQP +lAF +fMR +whv sPX -dhP +pYc eOu -cuP -dCV +opz +pjU hZo hZo -wnW +jcO hZo hZo hZo -cTi -uWw +gIV +fwW hZo -cmP -nUx +fzP +vOu hZo hZo hZo -hZB +tvR hZo hZo -dWd -fIu +wNa +ePJ cxN -sBa -tLp -pZB -sBa -tLp +mvt +wsM +chA +mvt +wsM rWV -veu -vCW -jqg -cOy -jqg -frm +mDA +mCj +aAJ +tKP +aAJ +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -90850,59 +76349,59 @@ qeX qeX qeX qeX -tag +ihr ndl -oGH -sUI -jJI -lXX -gPn -gqm -pSm -nLz -vHw -qaf -aoG -qEO +eZm +xou +qgV +xnT +rvB +hjq +xzm +ohc +lnm +jAW +moP +nzL eXD -eGZ +hon fWv -wUE -iYd -tlF +tUm +bsu +eKZ fWv hTV -lXV -avt -wEM -suo -dXY -eIf +gEB +rTm +uNt +vsl +xQu +cAe dxe -tYg -uDg +aQA +pqX aeD aeD uYX uYX bNR blw -aba +gUd eXD uYX ydm -yet -bGT -sxS -bGT -vif -gYV -ccm -erk -aza -ewq +bPG +oyk +lJf +oyk +cOp +tJB +gzX +cCA +uwh +jGC ndl -tEF +wDM qeX qeX qeX @@ -90953,13 +76452,13 @@ qeX qeX qeX qeX -tag -apJ -apJ -oEJ -rsy -fQh -fQh +ihr +lxh +lxh +kbI +cVC +kOE +kOE oED oED oED @@ -90969,27 +76468,27 @@ oED pGy pGy oED -ets -dCV +fij +pjU hZo -yfZ -vhq +nvX +taM hZo -uts -xuy -kFG -cOo -uDV -xYA -lsv -dcS -ebt +jAX +bvd +huc +qaZ +tne +awx +xcr +esZ +nNn hZo -hud -mJE +lsB +fKg hZo -dWd -pGr +wNa +ink aHH prf prf @@ -90999,13 +76498,13 @@ prf prf prf prf -jqg -wGt -jqg -frm -frm -frm -tEF +aAJ +xis +aAJ +ahN +ahN +ahN +wDM qeX qeX qeX @@ -91050,46 +76549,46 @@ qeX qeX qeX mOJ -fDe -wgJ +wAV +wtY ndl ndl -oGH -fbZ -jJI -lXX -uYI -gqm -pSm -usW -eff -pos -uGr -nBQ +eZm +ncR +qgV +xnT +mGJ +hjq +xzm +iQu +qAm +vNA +sQA +wwt eXD -aba -tZR +gUd +gER bOx oHm tVC -jFm +mkI qKC sgC dUv opM uCY sgC -pwr -aba -aba -aba -aba -aba -aba -aba -aba -sZb -aba +vAM +gUd +gUd +gUd +gUd +gUd +gUd +gUd +gUd +uVS +gUd eXD qLT ydm @@ -91097,16 +76596,16 @@ ydm ydm ydm ydm -ccm -bCk -ccm -yff -qip -ewq +gzX +wdK +gzX +rhP +kIO +jGC ndl ndl -wgJ -wgf +wtY +bhQ mOJ qeX qeX @@ -91155,12 +76654,12 @@ qeX qeX qeX qeX -tag -sEF -gkn -cxB -rsy -fQh +ihr +iVo +lNO +qdy +cVC +kOE oED oED yei @@ -91169,45 +76668,45 @@ bHJ bHJ bHJ pGy -sEc -ios -cuP -dCV +dCZ +olQ +opz +pjU hZo -dzI +eMV iWo bKE -bRE -iGq -wvV -boi -eOY -pzS -suJ -ten -bvf +vpC +mtF +pWm +mKT +kAP +doN +wRa +nZL +ioy bKE hwO -lDn +ugM hZo -dWd -clG +wNa +odO aHH -erS -twt -jcT -lIs -uhZ -pEm -jcT +dsj +oNv +vJc +azo +qCx +trY +vJc prf prf -oOb -jqg -mEF -rno -xTo -tEF +mRG +aAJ +smG +naO +wim +wDM qeX qeX qeX @@ -91252,63 +76751,63 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -fPE -jJI -lXX -sGj -amQ -nEp -anc -uOq -gRa -kzb -vpX +eZm +wTO +qgV +xnT +hgq +wfr +hlt +wPl +hpu +mTD +jQJ +gdY ctx -mzQ +puy fWv -bSG -uqn -bQn +aks +wRL +ozP fWv tqP -dXY -suo -dXY -avt -dXY -pNP +xQu +vsl +xQu +rTm +xQu +mKG uYX -tYg -kvc +aQA +oRC aeD aeD uYX uYX cko hoL -aba +gUd dYe qLT ocU -xPz -bJT -nlQ +jls +lQm +kCK ydm -iYU -nys -nys -erk -nys -ewq +idt +sxg +sxg +cCA +sxg +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -91357,12 +76856,12 @@ qeX qeX qeX qeX -tag -sEF -amv -fQh -rsy -fQh +ihr +iVo +hFO +kOE +cVC +kOE oED riA gje @@ -91371,45 +76870,45 @@ gje bHJ rGI pGy -sEc -ios -cuP -dCV +dCZ +olQ +opz +pjU hZo -qZM +xpD iWo uFm -gtL -bAA -ciq +dSJ +qqS +iux qRO -bJV +tug nXf -koG -pZf -vgi +oLd +qiG +rMw uFm hwO -bBb +qST hZo -aDu +qUV pbX -ybd -sdM +rzJ +mtg uOB fHi -lIs +azo prf -qwB -vKG -oEg +ohQ +mdg +oWs prf -lEJ -jqg -jqg -wkR -xTo -tEF +fZo +aAJ +aAJ +rMC +wim +wDM qeX qeX qeX @@ -91454,63 +76953,63 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -pCD -jJI -lXX -wjW -wjW -uGr -uvw -tTP -qaf -aoG -qEO +eZm +cEt +qgV +xnT +srD +srD +sQA +sjK +lGf +jAW +moP +nzL eXD -aba +gUd yaY -mqm -wRT -jBL +pjn +dIm +nJL yaY uYX -dXY -suo -dXY -suo -dXY +xQu +vsl +xQu +vsl +xQu cDy dxe -aba -tON +gUd +cyL aeD aeD aeD uYX uYX kiw -aba +gUd eXD qLT ocU -iTi +oFp mMq -fBl +bkr ydm -oNE -sXN -nys -qxP -rvj -ewq +vgZ +nQr +sxg +fLj +cyx +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -91559,12 +77058,12 @@ qeX qeX qeX qeX -tag -sEF -hGg -sEE -vQu -cCm +ihr +iVo +jnB +dOh +bvA +qeC oED tvs gje @@ -91575,43 +77074,43 @@ jIv pGy pGy oED -lVU +hIs fvE -jLz +tWx iWo iWo anF iWo iWo iWo -qXe -xCz -bov +cti +inH +pYZ iWo iWo iWo anF hwO iWo -aqf +uYV fvE -fIu +ePJ aHH -psy +lnX kAf nQE -jbE +otN prf prf prf prf prf -tUp -vzK -rbA -uOJ -xTo -tEF +cJg +wjg +mNb +fhr +wim +wDM qeX qeX qeX @@ -91656,35 +77155,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -esi -xiH -lXX -rFU -bWt -wjW -uvw -tTP -qaf -aoG -qEO +eZm +nGv +dOF +xnT +fGz +wtn +srD +sjK +lGf +jAW +moP +nzL eXD -lbt +njJ fWv oGL yaY yaY fWv euz -dXY -suo -dXY -brY -dXY +xQu +vsl +xQu +swx +xQu wto sgC qod @@ -91693,26 +77192,26 @@ sgC sgC xfq lOG -wbQ -cde -flF +kta +cYE +obh ctx dIF ydm -jxh +pAC uYX -eJG -bfj -sXN -sXN -nys -qxP -tnP -ewq +bEu +rqG +nQr +nQr +sxg +fLj +gIQ +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -91761,12 +77260,12 @@ qeX qeX qeX qeX -tag -oEJ -mqR -fQh -fQh -uKN +ihr +kbI +eco +kOE +kOE +cos oED dKB gje @@ -91775,45 +77274,45 @@ ajc wUT jIv cse -vpo +sif oED -cuP +opz fvE -fSs +dHp iWo iWo -psI +hyD anF iWo iWo -tRR -wdU +xHI +xYo eXy iWo iWo anF -psI +hyD hwO iWo -fSs +dHp fvE -fIu +ePJ aHH -lIs -adO -lKq -lIs -uhZ -pEm -jcT -ctH +azo +xlt +tCY +azo +qCx +trY +vJc +hiW prf -bKW -cOy -kaA -iLL -frm -tEF +owv +tKP +omh +uwg +ahN +wDM qeX qeX qeX @@ -91858,63 +77357,63 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -gMJ -xiH -pDj -nLz -gTz -wjW -uvw -uey -juW -uGr -axg +eZm +qot +dOF +wCw +ohc +pjl +srD +sjK +jsk +xGX +sQA +exj eXD -aba +gUd gSa unq uYX uYX gSa uYX -dXY -suo -dXY -suo -dXY +xQu +vsl +xQu +vsl +xQu mEL uYX -fKo -vxj +cwI +nxQ aeD lRo euu -pQs -pxg -aba -qol +tGv +cjQ +gUd +iga eXD qLT ocU -oih +rQn uYX -cTV +kfN ydm -nys -sXN -nys -qxP -wPp -ewq +sxg +nQr +sxg +fLj +rdP +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -91963,12 +77462,12 @@ qeX mOJ qeX qeX -tag -sEF -rVW -fQh -dKc -uKN +ihr +iVo +nBU +kOE +wMK +cos oED xON bHJ @@ -91976,46 +77475,46 @@ bHJ bHJ jdk jIv -ffv -lvI +rVA +rrb oED -emh -dCV +kGu +pjU hZo -tWO -lFP -lFP -lFP -veX -psI -hhr -wUm -pjr -psI -aIA -lFP -lFP -nwA -uBX +bFs +eNN +eNN +eNN +iHw +hyD +xhJ +rkU +nol +hyD +iAc +eNN +eNN +aMY +uQg hZo -mHh -fIu +mWq +ePJ aHH -lHJ +iBK xZJ aph -lIs +azo prf -qwB -vKG -jwJ +ohQ +mdg +etb prf -hIw -cOy -ekG -xrA -xTo -tEF +jge +tKP +hzk +hEZ +wim +wDM qeX qeX qeX @@ -92060,63 +77559,63 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -uIF -xiH -lXX -wTQ -xKR -ecC -pwq -wQA -iJt -uGr -ppT +eZm +rfG +dOF +xnT +eWz +gdO +gny +oxN +vHg +lHz +sQA +oUk nVY sgC -fxU +xyp nNc -cmO -cNy -uoB -eKG -cmO -cNy -uoB -eKG -cmO -cNy -uoB -eKG -cPQ -fXW -hot -iwL -lpn -nXO -uoB -bOC +lDD +fdd +esc +fSz +lDD +fdd +esc +fSz +lDD +fdd +esc +fSz +xgD +hLG +gpe +wMr +afZ +xfZ +esc +tue eXD uYX ocU -jqV -bij -vQX +moL +rRk +vJu ydm -ccm -drH -uKv -qxP -sXN -ewq +gzX +daZ +xth +fLj +nQr +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -92165,59 +77664,59 @@ qeX mOJ qeX qeX -tag -sEF -lID -fQh -npy -rsy +ihr +iVo +uDv +kOE +rom +cVC oED jIv jIv qsT -axn +fxq jIv jIv -raS +nqx jIv oED -miY -amp +vme +dwb hZo -eHQ -rRE -psI +dwg +dbu +hyD iWo -vRk +uEn uNl -fjR -aNk -rhO +rrf +qjU +eDh anF -nBb +ulY iWo iWo dup -dmT +saz hZo -qFd -fIu +efv +ePJ aHH -lIs +azo qjX xBN -jbE +otN prf prf prf prf prf -vLS -wGt -fNV -xrA -xTo -tEF +muI +xis +iwt +hEZ +wim +wDM qeX qeX qeX @@ -92262,24 +77761,24 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -jJI -jJI -lXX +eZm +qgV +qgV +xnT fWv -aMm +gMX fWv yaY yaY yaY fWv -vIq +dDZ eXD -sqL +sEh pky pky pky @@ -92301,24 +77800,24 @@ pky pky pky pky -qKK +dvU eXD pNz ydm ydm -kOq +uHP ocU ydm ydm -ccm -ccm -erk -sXN -ewq +gzX +gzX +cCA +nQr +jGC ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -92367,59 +77866,59 @@ qeX mOJ qeX qeX -tag -sEF -bDt -fQh -qNK -rMG +ihr +iVo +ngD +kOE +elN +fee oED jIv emK bHJ bHJ bHJ -vFW +qQn bHJ vuE oED -cuP -dCV +opz +pjU hZo -xaL -hUb -qUx -mXe -vRk +aPm +iRo +mwD +mwE +uEn fbv -psI -olA -dBt +hyD +hpx +aEO dat -tHR -tFx -nVV -nOO -lgu +yha +ubP +uUn +gtR +rSV hZo -dWd -fIu +wNa +ePJ aHH -lIs -eIU -tve -lIs -uhZ -pEm -jcT -vKG +azo +ifa +rAx +azo +qCx +trY +vJc +mdg prf -aaN -cOy -ejA -xrA -xTo -tEF +bfG +tKP +lyn +hEZ +wim +wDM qeX qeX qeX @@ -92464,24 +77963,24 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -jJI -jJI -lXX -rbb -fHx +eZm +qgV +qgV +xnT +ddy +kou izA gHr -ecA +hyP qtl wwu -smB +wqc eXD -qZu +sFB pky pky pky @@ -92503,24 +78002,24 @@ pky pky pky pky -nTl +mvm eXD raL -suo +vsl pJS uYX uYX uYX uKY ydm -pbs -erk -aza -ewq +exE +cCA +uwh +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -92569,12 +78068,12 @@ mOJ qeX qeX qeX -tag -oEJ -lHV -cQM -tko -rsy +ihr +kbI +dYz +crj +ifn +cVC oED pQC gje @@ -92585,43 +78084,43 @@ gje bHJ rJV oED -cuP -dCV +opz +pjU hZo hZo hZo hZo hZo -wNX -qsB -mnq -vvU -cHd -hud -vgJ +iqa +sQr +oPh +cFy +qjm +lsB +cWc hZo hZo hZo hZo hZo -dWd -fIu +wNa +ePJ aHH -lIs -adO -lKq -lIs +azo +xlt +tCY +azo prf -kqX -jHp -qwB +dfm +utZ +ohQ prf -xjl -cOy -qIK -asF -frm -tEF +vPq +tKP +lMJ +iWk +ahN +wDM qeX qeX qeX @@ -92666,24 +78165,24 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -oGH -wLp -xiH -lXX -laZ +eZm +tHm +dOF +xnT +txB smz -vpL -uXZ +iGG +qLW uXY aAV wwu -ncJ +min eXD -vBF +bZG pky pky pky @@ -92705,24 +78204,24 @@ pky pky pky pky -xin +ggQ eXD raL -suo +vsl qOF qLT qLT qLT hgb -bfj -mJd -erk -qip -ewq +rqG +csp +cCA +kIO +jGC ndl ndl ndl -tEF +wDM mOJ qeX qeX @@ -92771,12 +78270,12 @@ mOJ qeX mOJ qeX -tag -sEF -hWc -fQh -aFQ -eDz +ihr +iVo +vLJ +kOE +rAT +hve oED lxM gje @@ -92787,43 +78286,43 @@ gje ons gje oED -cuP -dCV +opz +pjU hZo -egk -fQW -mnz +jUt +wwo +mNN hZo -nIQ +cUC anF anF -vXH +upt anF gyg -phY +xWW hZo -sPs -mbW -eCe +jLE +oSE +pNU hZo -dvR -fIu +xwW +ePJ aHH -lIs -bdt -mbh -jbE +azo +vMp +chC +otN prf prf prf prf prf -lby -cOy -ftg -eIF -xTo -tEF +vcI +tKP +tEn +sVl +wim +wDM qeX qeX mOJ @@ -92865,27 +78364,27 @@ qeX qeX mOJ qeX -fDe -wgJ -wgJ +wAV +wtY +wtY ndl ndl ndl ndl -oGH -jJI -thk -pSL +eZm +qgV +eVr +lYj rNK bOx -lUG -bqd -drL -adg +gsq +lEf +vJi +ktb wwu -aba +gUd eXD -pbf +xyr pky pky pky @@ -92907,27 +78406,27 @@ pky pky pky pky -oRE +nou eXD raL -suo +vsl xEo uYX uYX fPp bUI ydm -ixM -qxP -nys -ewq +hDp +fLj +sxg +jGC ndl ndl ndl ndl -wgJ -wgJ -wgf +wtY +wtY +bhQ qeX mOJ qeX @@ -92973,12 +78472,12 @@ mOJ mOJ mOJ qeX -tag -sEF -ftu -fQh -lfP -nOI +ihr +iVo +xGY +kOE +sIw +xly oED bMO nJu @@ -92988,44 +78487,44 @@ opG opG jLh pwt -fMl +fTG pbX bJs hZo -tRb -qal -ajj -kEH -psI -psI -jHa -jHa -jHa -hud -psI -uKQ -ijZ -iYk -gOm +aHc +bsb +dtp +hWd +hyD +hyD +sUJ +sUJ +sUJ +lsB +hyD +cXX +uPZ +liz +vna hZo -dWd -fIu +wNa +ePJ aHH -lHJ -oAG -dGq -lIs -uhZ -pEm -jcT -uPd +iBK +nNV +cIU +azo +qCx +trY +vJc +gld prf -gZi -gLU -tiy -jqg -xTo -tEF +caC +fZt +xHZ +aAJ +wim +wDM qeX qeX mOJ @@ -93067,27 +78566,27 @@ qeX qeX mOJ qeX -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -jJI -mVg -lXX +eZm +qgV +wMp +xnT lQz -fHx +kou xWF gHr lwQ oIo fWv -jin +def eXD -sqL +sEh pky pky pky @@ -93109,27 +78608,27 @@ pky pky pky pky -qKK +dvU eXD cyj ydm ydm -kOq +uHP ocU ydm ydm ydm -ccm -xOt -uEK -ewq +gzX +lsG +vpi +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM qeX mOJ qeX @@ -93175,12 +78674,12 @@ mOJ mOJ mOJ mOJ -tag -sEF -dez -fQh -fQh -pVR +ihr +iVo +uPj +kOE +kOE +cZc oED pVL gje @@ -93191,43 +78690,43 @@ gje fgN gje oED -cuP -dCV +opz +pjU hZo -kvv -kAi -jlf +uDs +cGl +itZ hZo -wcM +iHX iWo jZb tdI jZb hwO -jfP +udF hZo -uvv -kAi -iXj +bxE +cGl +dMC hZo -dWd -fIu +wNa +ePJ aHH -dRd -qYY -tve -lIs +wSk +igM +rAx +azo prf -wCS -vKG -qwB +erM +mdg +ohQ prf -xrA -wGt -pyg -pyg -xTo -tEF +hEZ +xis +pUw +pUw +wim +wDM qeX qeX qeX @@ -93269,27 +78768,27 @@ qeX qeX mOJ qeX -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -iJl -mAd -lXX -qEj +eZm +jnW +aly +xnT +teG smz -vpL -uXZ +iGG +qLW gHr -oVZ +mIz wwu -aba +gUd eXD -qZu +sFB pky pky pky @@ -93311,27 +78810,27 @@ pky pky pky pky -nTl +mvm eXD qLT ocU -bCI -tCD -rZR +gUi +kbA +lnY ydm -ccm -fRX -nys -qxP -lfc -ewq +gzX +mpI +sxg +fLj +oAj +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM qeX mOJ qeX @@ -93377,12 +78876,12 @@ mOJ mOJ mOJ mOJ -tag -oEJ -oEJ -oEJ -rRQ -kci +ihr +kbI +kbI +kbI +psS +jRj oED gEm gje @@ -93393,43 +78892,43 @@ gje uZZ wrq oED -cuP -dCV +opz +pjU hZo -kvv -kAi -klL +uDs +cGl +rKC hZo -pih +loU iWo oyO hpE ola hwO -bBb +qST hZo -uvv -kAi -iXj +bxE +cGl +dMC hZo -dWd -fIu +wNa +ePJ aHH -gOx +lbg kAf nQE -jbE +otN prf prf prf prf prf -plo -wGt -frm -frm -frm -tEF +fWl +xis +ahN +ahN +ahN +wDM qeX qeX qeX @@ -93471,27 +78970,27 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -xiH -jwv -lXX -nAn +eZm +dOF +tzh +xnT +eal dVc -lUG -tuB -rde +gsq +kan +wye aAV wwu -aba +gUd eXD -vBF +bZG pky pky pky @@ -93513,27 +79012,27 @@ pky pky pky pky -xin +ggQ eXD uYX ocU -aRD +dcj uYX -bOp +dXw ydm -nVk -sXN -nys -qxP -osP -ewq +kki +nQr +sxg +fLj +jRC +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -93579,12 +79078,12 @@ qeX mOJ mOJ qeX -tag +ihr ndl ndl -oEJ -fQh -gOj +kbI +kOE +ttB oED jIv emK @@ -93595,43 +79094,43 @@ eTE hfW fAw oED -cuP -dCV +opz +pjU hZo -szl -kAi -avo +fRv +cGl +ttd hZo -wNX -psI -hQC -hQC -hQC -hud -vgJ +iqa +hyD +aQX +aQX +aQX +lsB +cWc hZo -oCE -kAi -gCK +eMw +cGl +wMx hZo -dWd -fIu +wNa +ePJ aHH -jrg +eds gqh nQE -lIs -uhZ -pEm -jcT -epC +azo +qCx +trY +vJc +cMb prf -jqg -cOy -frm +aAJ +tKP +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -93673,27 +79172,27 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -xiH -pMV -lXX +eZm +dOF +kJP +xnT vvT -drL +vJi iFs gHr bdr -nFf +nxm wwu -xcQ +cTS eXD -pbf +xyr pky pky pky @@ -93715,27 +79214,27 @@ pky pky pky pky -oRE +nou eXD dIF ydm -cgA +sCh uYX -oxB +brw ydm -wQi -sXN -nys -erk -aPh -ewq +rck +nQr +sxg +cCA +vLO +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -93781,12 +79280,12 @@ mOJ mOJ mOJ qeX -tag +ihr ndl ndl -oEJ -eVe -uKN +kbI +sXf +cos oED jIv uoJ @@ -93797,43 +79296,43 @@ xUB gTu jAN oED -cuP -amp +opz +dwb hZo -kvv -dvL -klL +uDs +biO +rKC hZo -dsv +sCs iWo iWo anF iWo hwO -veq +seG hZo -eSH -dvL -iXj +xsS +biO +dMC hZo -dWd -pGr +wNa +ink aHH -xXH -lIs -lIs -gvX +eiM +azo +azo +iUt prf -edI -vKG -jwJ +hQU +mdg +etb prf -msJ -afo -frm +tUy +cyy +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -93875,17 +79374,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -sUI -uHr -lXX +eZm +xou +jIT +xnT fWv fWv fWv @@ -93893,9 +79392,9 @@ fWv fWv fWv fWv -xos +okQ eXD -sqL +sEh pky pky pky @@ -93917,27 +79416,27 @@ pky pky pky pky -qKK +dvU eXD qLT ocU -aRD +dcj uYX -xJp +dPR ydm -lfc -sXN -nys -qxP -imr -ewq +oAj +nQr +sxg +fLj +oCB +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -93983,12 +79482,12 @@ mOJ qeX qeX qeX -tag +ihr ndl ndl -oEJ -hVP -uKN +kbI +rHc +cos oED oED oED @@ -93999,43 +79498,43 @@ oED oED oED oED -dBx -kJk +vbN +lcp hZo hZo hZo hZo hZo tlL -sPa +nHp tlL hZo tlL -fbe +eph tlL hZo hZo hZo hZo hZo -cqX -fwg +vmc +wgj aHH aHH -eUv -iJk +mkk +vlz prf prf prf prf prf prf -pQQ -oqD -frm +jEF +vPD +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -94077,17 +79576,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -xiH -bIW -lXX +eZm +dOF +xxG +xnT sXP sXP sXP @@ -94095,9 +79594,9 @@ sXP sXP sXP ydm -xcQ +cTS eXD -qZu +sFB pky pky pky @@ -94119,27 +79618,27 @@ pky pky pky pky -nTl +mvm eXD qLT ocU -fiN -bij -pBE +rsf +rRk +dYu ydm -ccm -wPp -wPp -qxP -xww -ewq +gzX +rdP +rdP +fLj +nrZ +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -94185,12 +79684,12 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -oEJ -qGv -sxW +kbI +ukX +jui pNE qsQ uWJ @@ -94198,33 +79697,33 @@ iei iei iei iei -bJJ -qjD -cEF -cuP -qdr -oJE -mqC -nNj -rkp +fWs +guj +iwY +opz +hvj +jGz +pfR +pom +tBZ iGT -riV +cYw iWo iWo akn iWo hwO -fVy +sfO iGT -jFz -tUU -mqC -nmf -pUs -fIu -jyx -dYr -bVr +ojx +bGJ +pfR +vtd +bAy +ePJ +xjD +bKL +siv iIL ldT iIL @@ -94232,12 +79731,12 @@ iIL sAa oCH hlk -cOy -jqg -frm +tKP +aAJ +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -94279,17 +79778,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -jJI -bIW -lXX +eZm +qgV +xxG +xnT sXP sXP sXP @@ -94297,9 +79796,9 @@ sXP sXP sXP ydm -aba +gUd eXD -vBF +bZG pky pky pky @@ -94321,27 +79820,27 @@ pky pky pky pky -xin +ggQ eXD rKu ydm -ccm -bCk -ccm -ccm -ccm -ccm -ccm -yff -nys -ewq +gzX +wdK +gzX +gzX +gzX +gzX +gzX +rhP +sxg +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -94387,29 +79886,29 @@ mOJ mOJ mOJ mOJ -tag +ihr ndl ndl -oEJ -fQh -uKN +kbI +kOE +cos pNE wUr -xTu +qmW hgR hgR hgR hgR -tsu -jbb -gpB -wqQ +gzf +bwG +bSD +ohS sNs pgd pgd pgd pgd -ngR +uSb unE cZB lIj @@ -94417,16 +79916,16 @@ tSX jHl iBk unE -ngR +uSb pgd pgd pgd fIs mSB -exi -bME -gOv -pQh +mRc +fyC +khA +ddV raE raE raE @@ -94434,12 +79933,12 @@ raE nwx drv hlk -wGt -jqg -frm +xis +aAJ +ahN ndl ndl -tEF +wDM qeX qeX qeX @@ -94481,17 +79980,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -jJI -mVg -lXX +eZm +qgV +wMp +xnT sXP sXP sXP @@ -94499,51 +79998,51 @@ sXP sXP sXP ydm -vIq +dDZ eXD -xXe -gke -ghY -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -pDg -gke -uqi -oZa -tdw -gke -mQI +qnm +lYx +xLi +gnQ +wqS +lYx +uFZ +gnQ +wqS +lYx +uFZ +gnQ +wqS +lYx +uFZ +gnQ +wqS +lYx +uFZ +gnQ +kAJ +lYx +xRx eXD raL -mEz -ccm -nys -woV -oDL -kEB -ccm -aPh -qxP -nys -ewq +tZS +gzX +sxg +vpV +nkk +ycj +gzX +vLO +fLj +sxg +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -94592,9 +80091,9 @@ uFM uFM uFM uFM -oEJ -lge -byD +kbI +vAn +ibK pNE bat dlV @@ -94602,33 +80101,33 @@ iei iei pso pso -bJJ -qjD -fhG -bCP -lLJ -eqo -mzh -lLJ -lLJ +fWs +guj +ckg +vmJ +pZk +kBH +ltY +pZk +pZk iGT -vRk +uEn rbV jjr skx gyg iWo -nBb +ulY iGT -lLJ +pZk wbM -mzh -mGe +ltY +rzX fvE -nvj -cft -dYr -bVr +eeu +xKB +bKL +siv cNz iIL iIL @@ -94636,9 +80135,9 @@ iIL haJ iIL hlk -iLV -cqv -frm +ipT +eVw +ahN xid xid xid @@ -94683,17 +80182,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -hrB -bIW -lXX +eZm +iHL +xxG +xnT sXP sXP sXP @@ -94701,11 +80200,11 @@ sXP sXP sXP ydm -aba +gUd eXD -qEO -aba -uvg +nzL +gUd +hKZ uYX uYX uYX @@ -94723,29 +80222,29 @@ uYX uYX uYX uYX -qEO -aba -uvg +nzL +gUd +hKZ eXD raL -mEz -ccm -iGh -sXN -sXN -nys -aTX -sXN -erk -qip -ewq +tZS +gzX +heY +nQr +nQr +sxg +eCT +nQr +cCA +kIO +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -94792,17 +80291,17 @@ fQl bcX iEf pso -nlS -ldg +cnO +aRU pzc -cOi -pWd +lqq +kQB rTN iei dlV -nlS -nbr -mVm +cnO +mdJ +xeL idE ePX ePX @@ -94814,35 +80313,35 @@ ePX ePX ePX hZo -mGi -vqb -ksK +wjy +jZA +sAA nBm -xmY -gSv -fwE +oxs +wBR +wQu hZo csS -vLU +kNx csS aKN -sSg +wCz aKN aKN aKN -nVv +coY hcL -isP -tdo -tdo +mah +dvJ +dvJ haJ iIL som -wGI -upH +cPN +tVc pqu -rLk -tdo +xUI +dvJ iIL uNs uNs @@ -94885,17 +80384,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -efL -mAd -lXX +eZm +kQW +aly +xnT sXP sXP sXP @@ -94903,11 +80402,11 @@ sXP sXP sXP ydm -tGF +xHY eXD -bvM -nPw -tJp +qYR +eUw +tND nqZ nqZ nqZ @@ -94925,29 +80424,29 @@ nqZ nqZ nqZ qjK -lhm -nPw -gnM +vRJ +eUw +gLb eXD hgb -sdt -ccm -upQ -tGs -sXN -akN -ccm -tGU -erk -sXN -ewq +mQo +gzX +vjW +rJZ +nQr +ntL +gzX +ibT +cCA +nQr +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ qeX @@ -94994,11 +80493,11 @@ tLZ oum iei iei -nlS -bJJ +cnO +fWs iei -pnG -pWd +kBY +kQB iei iei dlV @@ -95006,33 +80505,33 @@ dVr eJs ohI wPq -wpq -iHN -bXO +hkB +qmg +heH idE idE -ldc -pMK -ldc -pMK +etH +fvy +etH +fvy hZo hZo hZo -jCE +dOM gaY -pcf +qxL hZo hZo hZo sWm -jIy +hyH csS -dTc -ivh -otl +doS +rvG +jhL hcL -mCl -gaq +kGg +tiH hcL fFn ouN @@ -95040,11 +80539,11 @@ gdl haJ iIL iIL -wGI -hTQ +cPN +gFI iIL -bVr -tdo +siv +dvJ iIL iIL iIL @@ -95087,17 +80586,17 @@ qeX qeX mOJ vcr -tag +ihr ndl ndl ndl ndl ndl ndl -oGH -xiH -tTd -lXX +eZm +dOF +aKI +xnT sXP sXP sXP @@ -95105,9 +80604,9 @@ sXP sXP sXP ydm -qKV +mZj eXD -aba +gUd cXA cXA cXA @@ -95116,11 +80615,11 @@ cXA cXA cXA akM -vES -vHa +oDq +qPv akM -vES -scG +oDq +poM akM iQY iQY @@ -95129,27 +80628,27 @@ iQY iQY iQY iQY -aba +gUd eXD hgb -hda -ccm -whf -jTx -xty -clq -ccm -sXN -erk -aza -ewq +mzO +gzX +lpP +iyH +tVU +lEz +gzX +nQr +cCA +uwh +jGC ndl ndl ndl ndl ndl ndl -tEF +wDM vcr mOJ mOJ @@ -95196,57 +80695,57 @@ cSU iei iei iei -nlS -itG +cnO +fMr iei -fEm -pWd +pjj +kQB iei srd hBN -nlS -nlS -nlS +cnO +cnO +cnO wPq -yhI -tZD -yhI +elR +mXD +elR idE -oCK +oRU hti hti hti hti -iNl -owl +qgm +oEG idE -hka -udc -pLC +pNv +iXr +eyQ csS gIt -vVy +oKb uCu wdF csS -dTc -fRO -sNX +doS +nmg +fnn hcL hcL hcL hcL -isP -tdo -tdo +mah +dvJ +dvJ kQb iIL iIL -wGI -rXA +cPN +hHG iIL -nyH -tdo +rXa +dvJ iIL iIL iIL @@ -95289,17 +80788,17 @@ qeX qeX mOJ vcr -tag -oGH -oGH -oGH -oGH -oGH -oGH -oGH -jJI -rQf -lXX +ihr +eZm +eZm +eZm +eZm +eZm +eZm +eZm +qgV +ddf +xnT sXP sXP sXP @@ -95307,51 +80806,51 @@ sXP sXP sXP ydm -aba +gUd eXD -aba +gUd cXA -gNM -vEY -wui -tHb -kOo +dmD +rsU +pVD +owU +vzf fnD -tLm -rVV -rVV -mOv -rVV -rVV -qrn +gyt +wkZ +wkZ +kEi +wkZ +wkZ +aET iQY -sfc -scR -scR -scR -lQl +afD +vsD +vsD +vsD +jdv iQY -tGF +xHY eXD ugm -jLQ -jLQ -jLQ -jLQ -jLQ -jLQ -jLQ -eLK -erk -sXN -ewq -ewq -ewq -ewq -ewq -ewq -ewq -tEF +eib +eib +eib +eib +eib +eib +eib +mrl +cCA +nQr +jGC +jGC +jGC +jGC +jGC +jGC +jGC +wDM vcr mOJ mOJ @@ -95393,67 +80892,67 @@ mOJ mOJ ubi aiN -nlj +plj iei cPg hgR aXi -tmn +jIM hgR hgR hgR -mAN +sDO aXi hgR vWG -fEm -yfO -itG +pjj +gLR +fMr wPq -mCx -tZD -tZD +lJQ +mXD +mXD idE -tHG -gHi -gHi -gHi -gHi -ncX -hJl +sXw +rDd +rDd +rDd +rDd +dLm +vTc idE -vCU -uMZ -uWz +jgS +evI +gIn csS dhT -uyJ +aNz uCu -mqa +tpE csS -siz -fRO -sNX -fRO -hEy -fEh +fcm +nmg +fnn +nmg +pya +jNN hcL -kgm -pSW -rXA +kPF +uZc +hHG kAh raE dwV -vXR +gQO raE raE raE -qsN +ehE dwV raE aTw iIL -fkY +bbN qSx ubi mOJ @@ -95491,17 +80990,17 @@ qeX qeX mOJ vcr -tag -oGH -gdy -jJI -pVI -xiH -xiH -jJI -jJI -cCO -lXX +ihr +eZm +nAA +qgV +hII +dOF +dOF +qgV +qgV +xgH +xnT sXP sXP sXP @@ -95509,51 +81008,51 @@ sXP sXP sXP ydm -qSH -lEw -cAD +sKw +vYk +dNL cXA -whw -eEN -eEN -eEN -jPN +ekB +oJH +oJH +oJH +lXS peC -ebg -rVV -rVV -rVV -rVV -rVV -mlp +epM +wkZ +wkZ +wkZ +wkZ +wkZ +bni iQY -oSS -uji -ojr -sMh -wka +uxB +jXE +eur +oSw +qoO iQY -ihg -lEw -qSH -jLQ -wwR -hcz -eAI -hcz -hCM -jLQ -lfc -erk -sXN -nys -nys -sDj -nys -aMC -qJS -ewq -tEF +qMH +vYk +sKw +eib +hmd +sUY +oJG +sUY +oin +eib +oAj +cCA +nQr +sxg +sxg +bHI +sxg +uaV +mGS +jGC +wDM vcr mOJ mOJ @@ -95595,67 +81094,67 @@ mOJ mOJ ubi aiN -reI +usC iei dlV iei -nlS -nlS -nlS -nlS -nlS -nlS -nlS +cnO +cnO +cnO +cnO +cnO +cnO +cnO huN vWG -cOi -loy -oHT +lqq +kga +fuQ wPq -fmp -agg -owi -ibn -tZD -bAm -vEP -vEP -sDh -muK +aSl +bVC +fmq +jMU +mXD +oYK +kYE +kYE +eRf +ozW idE idE -kRC -ygu -ktB +bVf +cum +dHI csS -cNH -uyJ +xvU +aNz uCu -vYc +yiV csS -kzm -kzm -cjf -etB -xCX -jsb +vaQ +vaQ +kiZ +fPb +bOa +fvD rAD -mLp -hHQ -upH +dRH +uNy +tVc haJ iIL -tdo -tdo -tdo -hRz -tdo -tdo -tdo +dvJ +dvJ +dvJ +nfz +dvJ +dvJ +dvJ eRT enS iIL -uut +aFX qSx ubi mOJ @@ -95693,17 +81192,17 @@ qeX qeX mOJ vcr -tag -oGH -xiH -xiH -jJI -jJI -thk -vTS -ufo -pcW -lXX +ihr +eZm +dOF +dOF +qgV +qgV +eVr +bwX +pXf +krv +xnT sXP sXP sXP @@ -95711,51 +81210,51 @@ sXP sXP sXP ydm -bJa -lPt -bJa +iaU +ssf +iaU cXA -vZg -hFv -hFv -pUi -elr -fNz -xYc -xYc -cbO -hSF -hSF -hSF -hSF -gjj -krZ -kNJ -krZ -uNF -abw +pOf +sry +sry +hzL +bUR +wvt +pjW +pjW +oyr +eOe +eOe +eOe +eOe +dqP +xoh +tOc +xoh +nBE +ojW iQY -bJa -lPt -bJa -jLQ -ykV -jMu -wbm -wbm -bkh -jLQ -lfc -vmd -qNc -qNc -bzK -qNc -qNc -xGz -aPh -ewq -tEF +iaU +ssf +iaU +eib +viV +xQi +sNU +sNU +eYa +eib +oAj +lBI +vrs +vrs +buA +vrs +vrs +cut +vLO +jGC +wDM vcr mOJ mOJ @@ -95798,65 +81297,65 @@ mOJ ubi uFM mas -rOi -pWd -nlS -nlS -uEY -wri -wri -wri -dCG -nlS -nlS -pWd -nlS -nlS -dmw +vXJ +kQB +cnO +cnO +oCA +dsl +dsl +dsl +xMR +cnO +cnO +kQB +cnO +cnO +fns idE idE idE idE idE -tao -sIy +uPV +rDR ozw hYv -prx -cBP -bYV +jmf +wYf +mIA idE -pFn -ygu -fhj +xwY +cum +tuN csS -bdj -uyJ +wEa +aNz uCu -vgE +nMW csS -gds -hbD -vfk -esA -fRO -dyZ +vhh +eGW +dDt +afL +nmg +kte rAD -pIf -tdo -tdo -wGI -tdo -jcc -goH -oEh -oEh -oEh -vQU -tdo -tdo -wGI -ict +ivz +dvJ +dvJ +cPN +dvJ +oSg +jSR +tQs +tQs +tQs +xXX +dvJ +dvJ +cPN +wQb hlk xid ubi @@ -95895,16 +81394,16 @@ qeX qeX mOJ qeX -tag -oGH -dZq -dZq -lXX -edU -rQf -xiH -axW -dKg +ihr +eZm +sHe +sHe +xnT +nIm +ddf +dOF +vnv +xLR hpK hpK hpK @@ -95913,51 +81412,51 @@ hpK hpK hpK hpK -qDw -kzY -alj +gPv +dFj +eAF cXA -jKJ -eEN -xPv -mjL -lIN +nhx +oJH +alO +ppO +juX peC -kfb -rVV -iQx -dyB -rVV -rVV -spe +lAD +wkZ +mlv +fCE +wkZ +wkZ +bdZ iQY -ckt -ojr -ePq -ojr -lGu +vvf +eur +bXH +eur +qgt iQY -tks -iph -azh -jLQ -ckB -wbm -wbm -wbm -qBX -frO -frO -frO -frO -frO -frO -frO -frO -hjb -hjr -ewq -tEF +pJk +bUH +nat +eib +ais +sNU +sNU +sNU +uZA +dlS +dlS +dlS +dlS +dlS +dlS +dlS +dlS +gHw +rhT +jGC +wDM qeX mOJ mOJ @@ -96000,65 +81499,65 @@ mOJ ubi uFM mas -qJU -pWd -nlS -lKa -jiR +scz +kQB +cnO +pbe +dym bcG iei bcG -ctI -lKa -nlS -pWd -nlS -nlS -nlS +oKu +pbe +cnO +kQB +cnO +cnO +cnO yaH -mCx -kxD -owi -sbR -tZD -hfo +lJQ +aZQ +fmq +kIb +mXD +nAm nQg oTA -ahr -sDh -aAo +oEz +eRf +gWE idE -jcU -ygu -jDx +nch +cum +mAE csS csS sUH -luT +aDM sUH csS -uMg -esA -uOz -urh -fRO -fRO +wWc +afL +nzC +eye +nmg +nmg rAD -nZf -tdo -tdo -wGI -tdo -iFL -vUy +gpa +dvJ +dvJ +cPN +dvJ +xwy +uFN jUO iIL lar -ylb -iFL -tdo -wGI -hdT +hKd +xwy +dvJ +cPN +myn hlk xid ubi @@ -96097,13 +81596,13 @@ qeX qeX mOJ qeX -tag -oGH -xTQ -xTQ +ihr +eZm +gxf +gxf hpK hpK -oPU +nwT hpK hpK hpK @@ -96111,55 +81610,55 @@ hpK aPQ cGb hpK -ctB -fLc -opT +dQX +lhK +qwW hpK -ydV -vCp -ydV +okB +nQL +okB cXA -bvL -eEN -ggH -hLx -hzf +dCC +oJH +glx +pGp +sfC peC -kfb -rVV -gZQ -dyB -dyB -rVV -qeP +lAD +wkZ +bFj +fCE +fCE +wkZ +umE vZw -eYL -ojr -unk -ojr -uYw +daC +eur +wPQ +eur +dtu iQY -bsh -rGq -bsh -jLQ -ozb -wsw -wbm -wbm -ngG -frO -fNT -iko -wbm -pDB -xQA -oZh -frO -sva -wfm -ewq -tEF +mpm +eEi +mpm +eib +iMD +xSr +sNU +sNU +soK +dlS +eGD +moU +sNU +pFF +jHi +oqf +dlS +sSS +djx +jGC +wDM qeX mOJ mOJ @@ -96201,67 +81700,67 @@ mOJ mOJ ubi aiN -mkd +biB iei dlV iei lUB -xHO +cIE bcG -lZc +vkj bcG -tax +cgM cuY iei dlV -fEm -yfO -itG +pjj +gLR +fMr yaH -yhI -eBq -pMU +elR +dXv +nwO idE -noH -qlY -mGp -lPg -lKn -gqi -uJn -vhy -ulJ -ygu -bGa -agl +iBd +hAJ +lDZ +jLd +pdn +ugJ +aQO +uam +hxf +cum +nWQ +gNB csS -bcg -gzd -eCF +vxA +vas +qWF csS -lPB -qqZ -vaq -kGy -fDa -rQk +mGn +ixP +lFb +kdg +wgB +vca hcL -vEg -pSW -rXA +iQf +uZc +hHG haJ iIL eGf -fKK +qlX sqC -kzB +smL sqC -ijN +gTA tHD iIL haJ iIL -hEj +aWN qSx ubi mOJ @@ -96299,69 +81798,69 @@ qeX qeX mOJ qeX -tag -luI -pRI -pRI +ihr +mRy +ckk +ckk hpK -iou +yeP fKQ mgY qZR jcD jcD -wnn +uOs dru nns dru dru -wnn +uOs kTn -sAL -alZ -fHK +pKR +rZT +nZk cXA -keM -sSl -hfH -bry -uzE +puS +wus +wGp +drN +nAh peC -kfb -rVV -iQx -dyB -rVV -rVV -ndp +lAD +wkZ +mlv +fCE +wkZ +wkZ +nUq vZw -wXt -wKO -ezQ -wKO -xlm +tDG +jNy +toL +jNy +dCI iQY -vHn -eoe -tOq -hhp -ftE -upi -wbm -wbm -eWU -frO -frO -frO -vLI -iZX -iZX -bks -frO -ias -anr -idA -tEF +iXd +wdd +bzS +eeE +xUq +dpa +sNU +sNU +cbM +dlS +dlS +dlS +lGh +gtV +gtV +wyN +dlS +vCB +pmY +mmI +wDM qeX mOJ mOJ @@ -96403,67 +81902,67 @@ mOJ qeX vcr aiN -kKO +rRJ iei dlV iei sfx -oXh +qHF bcG -mpy +dDn lME -wNf +rSX wwg iei dlV -cOi -loy -mJW +lqq +kga +sqx yaH -hyi -cZS -cvv +vfr +hSk +imA idE -jDb -eXS -buO -xMr -mPX -lTU -wId -qmI -sSt -iLm -bGa -xnz +gcF +ggq +fbr +psv +wvJ +weP +npI +chP +nZq +jMV +nWQ +lct csS oUy jqq -obZ +fwd csS -uzZ -fRO -fRO -fRO -fRO -dyZ +cnX +nmg +nmg +nmg +nmg +kte hcL -bwC -hHQ -upH +kIU +uNy +tVc haJ iIL aoU -yhf +ofV sqC -cci +aob sqC -nzw +tBU yfl iIL haJ iIL -eQY +bIc qSx ubi mOJ @@ -96501,69 +82000,69 @@ qeX qeX mOJ qeX -tag -luI -tTW -eqf +ihr +mRy +ceo +osZ hpK -pdu +kVp fKQ -wnn -jdJ -jdJ -jdJ -wnn +uOs +oBv +oBv +oBv +uOs nUG tJW tJW nnS -wnn +uOs kTn -gEZ -bFK -qYA +qfb +jWD +bzy cXA peC fnD -amI +aZM fnD peC cXA -hzl -tVW -csx -rVV -rVV -rVV -gUe +fTl +hNA +kWZ +wkZ +wkZ +wkZ +qzf iQY vZw -jUv +fHs iQY -mob +tWl vZw iQY -cbt -uPg -uDx -okp -nqN -kTY -wbm -wbm -bFm -kQZ -siY -frO -wbm -lwT -aQa -kBe -frO -iSn -teV -idA -tEF +aQF +rAu +sai +mXC +skR +qgR +sNU +sNU +leU +eSq +iPi +dlS +sNU +ybY +lAM +jTv +dlS +bJl +sfw +mmI +wDM qeX mOJ mOJ @@ -96606,65 +82105,65 @@ qeX vcr uFM mas -nlS -pWd -nlS -lKa -jiR +cnO +kQB +cnO +pbe +dym bcG iei bcG -ctI -lKa -nlS -pWd -nlS -nlS -jUr +oKu +pbe +cnO +kQB +cnO +cnO +bxp idE idE idE idE idE -mfK -sIy -prx -bXf +qIf +rDR +jmf +pxR idE idE idE idE -edT -ygu -wDG -rjR -rjR -rjR -rjR -rjR -rjR -cpD -esA -esA -hEg -fRO -fRO +xpj +cum +txq +rHs +rHs +rHs +rHs +rHs +rHs +kHu +afL +afL +qhI +nmg +nmg rAD -nZf -tdo -tdo -wGI -tdo -iFL -vUy +gpa +dvJ +dvJ +cPN +dvJ +xwy +uFN sqC iIL aAi -ylb -iFL -tdo -wGI -tdo +hKd +xwy +dvJ +cPN +dvJ hlk xid vcr @@ -96703,69 +82202,69 @@ qeX qeX mOJ qeX -tag -luI -lfg -eqf +ihr +mRy +okM +osZ hpK -sJp +hWg fKQ -xKS -sdr +eIT +uQH dru -jky -xQU +uTx +hmV dru dru dru gUu -wnn +uOs hpK -vgC -bFK -crH +dSm +jWD +mvf wSF -jEy -xOV -xxt -iak -iak -tmD -toJ -rVV -iQx -rVV -rVV -rVV -qzh -bNx -nGm -unT -fCd -unT -rNZ +bNA +uhn +ydD +xOL +xOL +dWe +lwg +wkZ +mlv +wkZ +wkZ +wkZ +gSN +hbX +iVU +oGs +nUX +oGs +qGL wSF -tjm -uPg -tjm -ldA -bee -rhp -wbm -eFx -mUZ -aaa -qZz -bee -wbm -wzY -iZX -bks -frO -lkc -fOJ -idA -tEF +qiu +rAu +qiu +mtd +bJM +wna +sNU +gIx +nDB +qxE +uos +bJM +sNU +cAw +gtV +wyN +dlS +mdH +keH +mmI +wDM qeX mOJ mOJ @@ -96808,65 +82307,65 @@ qeX vcr uFM mas -aAM -pWd -nlS -nlS -vbI -lWO -lWO -lWO -kdv -nlS -nlS -pWd -nlS -nlS -nlS +xnf +kQB +cnO +cnO +uZS +eQI +eQI +eQI +hwd +cnO +cnO +kQB +cnO +cnO +cnO xjX -mCx -fUX -owi -sbR -eee -vUr -gqi -haL +lJQ +hDl +fmq +kIb +hrt +sxt +ugJ +aed idE -xwn +dTJ ppp idE -qdP -ygu -fhj -rjR -uuw -ccb -nXT -gxO -rjR -uOn -bPm -bPm -bPm -bPm -eFW +jNb +cum +tuN +rHs +sxv +jlI +mHv +vaT +rHs +orD +oXc +oXc +oXc +oXc +iJJ rAD -nZf -tdo -tdo -wGI -tdo -tdo -ntw -vBR -vBR -vBR -mAS -tdo -tdo -wGI -ppU +gpa +dvJ +dvJ +cPN +dvJ +dvJ +iYZ +rYS +rYS +rYS +nbt +dvJ +dvJ +cPN +rug hlk xid vcr @@ -96905,69 +82404,69 @@ qeX qeX mOJ qeX -tag -luI -uUy -eqf +ihr +mRy +byo +osZ hpK -xlf +nxH rvq -mvk +mgA rdT rdT rdT -srz -sBG -sBG -sBG -cPZ -sLT -eft -ydw -bNz -crH +eHG +wog +wog +wog +ilx +eRW +hUG +uVG +aZS +mvf wSF -gIm -rVV -rVV -rVV -rVV -rVV -rVV -rVV -iQx -rVV -rVV -rVV -rVV -dTz -dTz -rVV -rVV -dTz -mIK +bdU +wkZ +wkZ +wkZ +wkZ +wkZ +wkZ +wkZ +mlv +wkZ +wkZ +wkZ +wkZ +fNe +fNe +wkZ +wkZ +fNe +wKM wSF -tjm -uPg -tjm -ldA -bee -jZQ -wbm -cbR -faH -wbm -kSa -bee -wbm -wxg -oyW -pbn -frO -oBx -nRP -idA -tEF +qiu +rAu +qiu +mtd +bJM +xhf +sNU +tGm +fZz +sNU +mSs +bJM +sNU +nZX +eLD +rRZ +dlS +hHN +uEM +mmI +wDM qeX mOJ mOJ @@ -97009,67 +82508,67 @@ qeX qeX vcr aiN -reI +usC iei jQF bFT -nlS -nlS -nlS -nlS -nlS -nlS -nlS +cnO +cnO +cnO +cnO +cnO +cnO +cnO iei dlV -fEm -yfO -itG +pjj +gLR +fMr xjX -yhI -tZD -pMU +elR +mXD +nwO idE idE -rfu -ahG -ahG -lgc -eps +xAG +eKI +eKI +aeP +kAI hOQ idE -hNz -ygu -ulJ -hlx -jqg -jqg -gGh -qBn -rjR -mDf -bPm -bPm -bPm -bPm -fhz +aOw +cum +hxf +mUA +aAJ +aAJ +dqR +ylF +rHs +gBg +oXc +oXc +oXc +oXc +csK rAD -oJo -pSW -rXA +fSW +uZc +hHG haJ iIL -tdo -tdo -tdo -tdo -tdo -tdo -tdo +dvJ +dvJ +dvJ +dvJ +dvJ +dvJ +dvJ iIL haJ iIL -uut +aFX qSx vcr mOJ @@ -97107,69 +82606,69 @@ qeX qeX mOJ qeX -tag -luI -khY -eqf +ihr +mRy +sWu +osZ hpK -axB +aNt xjK -xKS -lbC +eIT +gdK dru -dWn -xQU +giq +hmV jOg tJW tJW qzw -wnn +uOs kTn -crH -rnz -bos +mvf +dGm +mvE akM -wCq -rVV -rVV -rVV -fdV -rVV -rVV -rVV -iQx -rVV -rVV -rVV -rVV -rVV -fdV -rVV -rVV -rVV -bHG +rAp +wkZ +wkZ +wkZ +nSD +wkZ +wkZ +wkZ +mlv +wkZ +wkZ +wkZ +wkZ +wkZ +nSD +wkZ +wkZ +wkZ +rAy akM -oLl -uPg -tjm -ldA -bee -usM -wbm -iKh -aFi -wbm -sSP -frO -tet -puu -eEC -oiH -frO -dJS -gkA -idA -tEF +qHL +rAu +qiu +mtd +bJM +hDR +sNU +klC +cPX +sNU +hoG +dlS +eUT +oxS +qbu +eWw +dlS +sQG +luB +mmI +wDM qeX mOJ mOJ @@ -97211,67 +82710,67 @@ qeX qeX vcr aiN -nlj +plj iei ozm hgR aXi -tmn +jIM hgR hgR hgR -tmn +jIM aXi hgR vWG -cOi -loy -oHT +lqq +kga +fuQ xjX -acr -cZS -cvv +pto +hSk +imA idE -pzj -tqx +pdW +bjx fZj -qkZ +qtu idE idE idE idE -pxy -ygu -nAC -rjR -wWS -tUo -qUU -knV -rjR -pil -bPm -hAH -vlB -dJM -hqk +gLe +cum +ngh +rHs +rez +hUB +jIS +usx +rHs +iUs +oXc +ofX +ljE +nQA +kzo hcL -nFu -tTq -upH +ajk +imN +tVc kAh raE dwV -qsN +ehE raE raE raE -qsN +ehE dwV raE xsi pIB -fkY +bbN qSx vcr mOJ @@ -97309,69 +82808,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +ihr +mRy +osZ +hbx hpK -eBr +uME xjK -wnn -oyb -oyb -oyb -wnn +uOs +vEz +vEz +vEz +uOs dru -sum +oli rSP hCg -rTi +xmj kTn -crH -rnz -crH -pCu -rVV -rVV -kSS -mlp -ePF -lDe -sbe -vAo -mWK -mNr -mdM -pmL -xYc -evN -ePF -lDe -kSS -rVV -rVV -wSJ -tjm -uPg -tjm -sqf -jLQ -jFJ -wbm -cbR -hsO -wbm -yfq -tSI -rVH -cbR -xhD -pqb -btZ -iZK -vaO -idA -tEF +mvf +dGm +mvf +vJR +wkZ +wkZ +vKl +bni +emV +qGx +bfy +wdc +tRD +kgf +nLi +sgs +pjW +hkD +emV +qGx +vKl +wkZ +wkZ +qEy +qiu +rAu +qiu +wTt +eib +cxQ +sNU +tGm +tYx +sNU +jUK +jXJ +nAF +tGm +ycr +mec +nIE +oTY +fZd +mmI +wDM qeX mOJ mOJ @@ -97418,57 +82917,57 @@ cSU iei iei iei -nlS -bxA +cnO +mXI iei -cOi -nlS +lqq +cnO iei iei hBN -nlS -rOU +cnO +vWI idE idE cuz cuz cuz cuz -waL -jmB +qbj +dlQ fZj -rfu -lgc -bpY +xAG +aeP +iYu buM idE -hKy -ygu -qhN -rjR -rjR -nZp -rjR -rjR -rjR -uFX -sag -uFX -uFX -uFX -uFX -uFX +xsK +cum +cJS +rHs +rHs +sGS +rHs +rHs +rHs +sZg +gvc +sZg +sZg +sZg +sZg +sZg hlk -isP -tdo +mah +dvJ kQb iIL iIL -tdo -upH +dvJ +tVc iIL -tCs -tdo +ded +dvJ iIL iIL iIL @@ -97511,69 +83010,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +ihr +mRy +osZ +hbx hpK -pVU +qjC xjK dru dru sfF coX -wnn -ayI -gzS -bIX -ctF -hEN +uOs +qNp +wwN +jDR +dbH +dAv kTn -crH -cjM -uor -ijw -lDK -lDK -ckM -lDK -lSK -gCF -xuY +mvf +ljY +fPj +djZ +jJS +jJS +eeZ +jJS +nhh +kHR +ddN hWi amT -ddu +kcU amT hWi -rXS -hoo -eEI -hSF -rpP -hSF -hSF -toC -qlJ -mIy -mte -pgA -riE -hpL -fRF -aGA -nrr -apv -deT -dSH -cqr -ewc -yfq -hgQ -frO -hod -pPK -idA -tEF +sKg +gts +edY +eOe +pba +eOe +eOe +nhK +aIB +eGS +jkb +uFt +lwy +pYS +pzh +fHF +ctk +soF +dUF +iQV +gCE +hlF +jUK +hJz +dlS +bvY +rBq +mmI +wDM qeX mOJ qeX @@ -97620,11 +83119,11 @@ pje iei iei iei -nlS -bJJ +cnO +fWs iei -pnG -nlS +kBY +cnO iei iei dlV @@ -97633,44 +83132,44 @@ fgO idE idE cuz -fUT -fUT +wxY +wxY cuz -pzj -aKD -rfu -bXf +pdW +lWo +xAG +pxR idE -lSX +lsg buM idE -jXr -hNH -jbs -uFX -mLh -eAQ -hKb -kgS -ret -ksh -ksh -bvR -fIZ -hKb -hKb -njn +aMz +uoI +ako +sZg +sUN +ijC +ivE +sVb +nRm +lIY +lIY +aVO +uTa +ivE +ivE +lMm hlk bmr gdl kAh rNt iIL -tdo -hTQ +dvJ +gFI iIL -bVr -tdo +siv +dvJ iIL iIL iIL @@ -97713,69 +83212,69 @@ qeX qeX mOJ qeX -tag -luI -tgD -euA +ihr +mRy +lOz +hbx hpK -trO +pgT xjK dru dru -luI -luI -luI -luI -luI -luI -luI -luI -luI -crH -rnz -bos +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mvf +dGm +mvE akM -aOW -rVV -rVV -rVV -rVV -iQx -rsH +bzW +wkZ +wkZ +wkZ +wkZ +mlv +dmR lSp -dsm -sEr -tmO +xlV +nqz +hvB lSp -dZD -iQx -rVV -rVV -rVV -rVV -sQE +enw +mlv +wkZ +wkZ +wkZ +wkZ +asS akM -oLl -rRv -lLu -idA -idA -idA -idA -idA -idA -idA -idA -idA -vrp -cbR -yfq -eDZ -frO -iZK -kJG -idA -tEF +qHL +sNv +fjw +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +vSI +tGm +jUK +jHK +dlS +oTY +dYH +mmI +wDM qeX mOJ qeX @@ -97822,57 +83321,57 @@ iei iei iei pso -nbr -hHv +mdJ +cDW tqd -fEm -nbr +pjj +mdJ pso iei dlV -nlS -elu +cnO +oXK idE idE idE -rWK -rWK +coF +coF idE idE idE -pPO -xqu +iiO +exL idE idE idE idE -dUk -uyC -tuW -uFX -uFX -sfm -uFX -uFX -uFX -uFX -uFX -uFX -uFX -uFX -uFX -syy +rQb +rQN +jjb +sZg +sZg +puX +sZg +sZg +sZg +sZg +sZg +sZg +sZg +sZg +sZg +qUb hlk -isP -tdo +mah +dvJ haJ iIL iIL -tdo -wuY +dvJ +nfU ozK -oVD -tdo +aJd +dvJ iIL iIL iIL @@ -97915,69 +83414,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -euA +ihr +mRy +osZ +hbx hpK -bDc +syZ xjK -yck -qba -luI -thf -thf -thf -mjj -ljG -ljG -ljG -luI -qHo -tJN -qHo +rMN +ycV +mRy +rwd +rwd +rwd +kUx +rGA +rGA +rGA +mRy +pxz +kyw +pxz wSF -lDe -rsH -fdV -mfV -cpf -iaQ -wLy +qGx +dmR +nSD +xRc +lBV +sLn +qwF lSp -hZb -gfV -dDr +ezw +ete +fLW lSp -gVh -iaQ -cpf -kXJ -fdV -tlt -hby +cRs +sLn +lBV +ewH +nSD +ljl +izM wSF -iEs -qPD -iEs -idA -dis -dis -dis -lyC -bTc -bTc -bTc -idA -kEt -cbR -dWL -rrU -frO -iSn -kJG -idA -tEF +izC +pQA +izC +mmI +ira +ira +ira +cgU +glF +glF +glF +mmI +boz +tGm +jVz +gdX +dlS +bJl +dYH +mmI +wDM qeX mOJ qeX @@ -98020,65 +83519,65 @@ qeX qeX uFM mas -lDf -yfO -xPk -mth -mth -mth -mth -mth -mth +qMx +gLR +wNn +noz +noz +noz +noz +noz +noz pso iei dlV iei iei iei -vWK -ovu -wPn -vmm -vmm -efQ -vmm -ulJ -ulJ -rQS -vmm -wwH -vmm -vmm -oWh -vmm -vmm -wwH -ghv -rQS -vmm -vmm -vmm -vmm -efQ -vmm -rnC -cIr -jnY +uEH +dDA +jhH +itL +itL +ymi +itL +hxf +hxf +ppW +itL +oCI +itL +itL +tSN +itL +itL +oCI +qwe +ppW +itL +itL +itL +itL +ymi +itL +qsc +gTE +mhJ iIL jOh iIL haJ iIL iIL -oXT -oXT -oXT -oXT -oXT -oXT -qql -pSW -fKF +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +cET +uZc +jlG hlk xid qeX @@ -98117,69 +83616,69 @@ qeX qeX mOJ qeX -tag -luI -eqf -lRj +ihr +mRy +osZ +sCi hpK hpK -eaQ +swh hpK hpK -luI -thf -thf -thf -doo -ljG -ljG -ljG -luI -crH -rnz -crH +mRy +rwd +rwd +rwd +mjx +rGA +rGA +rGA +mRy +mvf +dGm +mvf wSF -giQ -xXD +dXV +vzM hWi hWi -aYY -buD +jOl +qco hWi hWi hWi -kFH +gcs hWi hWi hWi -fHL -xQB +gCm +bUK hWi hWi -bgk -uYs +kAk +ebD wSF -tjm -rRv -tjm -idA -dis -dis -dis -kGQ -bTc -bTc -bTc -idA -eqv -nRD -wbm -mro -frO -lkc -teV -idA -tEF +qiu +sNv +qiu +mmI +ira +ira +ira +syj +glF +glF +glF +mmI +sQn +oNL +sNU +aeT +dlS +mdH +sfw +mmI +wDM qeX mOJ qeX @@ -98222,65 +83721,65 @@ qeX qeX uFM mas -vFT -vFT -rSZ -mth -hVV -hVV -hVV -cZv -mth +yja +yja +pcs +noz +nlH +nlH +nlH +ado +noz tLZ pso -ihs +kUD hgR hgR hgR -tsu -lgC -oWR -nSc -fSo -fSo -fSo -prN -fSo -fSo -cVT -guQ -guQ -fSo -jiE -fSo -prN -prN -hzE -mhr -mhr -sNP -mhr -mhr -mhr -nSc -fnl -fDU -kvk +gzf +toa +ncA +nKa +nAw +nAw +nAw +ewT +nAw +nAw +fZP +siJ +siJ +nAw +bwT +nAw +ewT +ewT +phm +fQu +fQu +fen +fQu +fQu +fQu +nKa +cta +qJt +tWH raE raE raE xsi iIL bVw -oXT -nPR -nPR -nPR -qEP -oXT -xfN -xfN -xfN +xzJ +klr +klr +klr +juJ +xzJ +oth +oth +oth hlk xid qeX @@ -98321,65 +83820,65 @@ iaN iaN iaN iaN -euA -eqf -aGk -eqf -eqf -vOs -eqf -luI -thf -thf -thf -doo -oxX -oxX -oxX -luI -crH -rnz -aac +hbx +osZ +rGQ +osZ +osZ +aYa +osZ +mRy +rwd +rwd +rwd +mjx +fdP +fdP +fdP +mRy +mvf +dGm +riR hWi hWi hWi hWi -hxn -gfV -wFo -dxa -jRR -rCg -gfV -cvh -jRR -jUk -dbw -gfV -vyZ +rFI +ete +eSp +nNJ +iDt +aha +ete +diK +iDt +fOc +mII +ete +ofT hWi hWi hWi hWi -dzt -qmr -tjm -idA -tAp -tAp -tAp -kGQ -bTc -bTc -bTc -idA -uYR -wbm -wbm -mro -frO -iSn -teV +ncQ +imw +qiu +mmI +gfD +gfD +gfD +syj +glF +glF +glF +mmI +qOy +sNU +sNU +aeT +dlS +bJl +sfw orQ orQ orQ @@ -98424,65 +83923,65 @@ qeX qeX uFM mas -owC -loy -oHo -mth -hVV -hVV -hVV -hVV -mth +lgL +kga +fkW +noz +nlH +nlH +nlH +nlH +noz pso leX pso iei iei iei -bJJ -ebc -uXq -nLe -efX -mQg -pwB -mQg -mQg -vEM -mQg -mQg -mQg -mQg -mEH -mQg -vEM -mQg -mQg -mQg -mQg -mQg -pwB -mQg -wFV -nLe -eYs -pZF -bVr +fWs +fJO +gnS +oOr +lNq +lox +saJ +lox +lox +nrd +lox +lox +lox +lox +dQv +lox +nrd +lox +lox +lox +lox +lox +saJ +lox +hBr +oOr +fdO +soi +siv iIL iIL iIL lkY iIL iIL -oXT -nPR -nPR -nPR -nPR -oXT -hRT -hHQ -bVR +xzJ +klr +klr +klr +klr +xzJ +htW +uNy +iKQ hlk xid qeX @@ -98508,96 +84007,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -oDC -pDi -pDi -pDi -pDi -pDi -pDi -oDC -pDi +xYi +xYi +xYi +xYi +xYi +wLe +xYi +xYi +xYi +xYi +xYi +xYi +wLe +xYi riD -hBb -ffG -rOu -kBl -uUy -pxN -pFY -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +hgP +exa +irY +kuI +byo +mTa +vCN +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +mvf +dGm +mvf hWi vBi vBi hWi -ihO -gfV -eOL -gfV -gfV -gfV -gfV -gfV -gfV -gfV -eOL -gfV -nPb +aAp +ete +iXn +ete +ete +ete +ete +ete +ete +ete +iXn +ete +dyM hWi -rdq -isr +ygr +iyf hWi -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -efz -wbm -wbm -mro -frO -gSB -vcV +qiu +imw +qiu +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI +dpS +sNU +sNU +aeT +dlS +nIN +fpv fKE -yip -vyn -yip -yip -yip -yip -yip -yip -yip -vyn -yip -yip -yip -vyn -yip +kYp +lwa +kYp +kYp +kYp +kYp +kYp +kYp +kYp +lwa +kYp +kYp +kYp +lwa +kYp orQ qeX vwY @@ -98625,27 +84124,27 @@ qeX qeX qeX uFM -kRh +tCt oLb reb iei -xvy -hVV -hVV -hVV -hVV -mth -aST -mth -mth -mth -mth -mth -mth -mth -uXq -nLe -eYs +uBh +nlH +nlH +nlH +nlH +noz +hTS +noz +noz +noz +noz +noz +noz +noz +gnS +oOr +fdO smh smh smh @@ -98665,27 +84164,27 @@ smh smh smh smh -wnU -nLe -rbf -oXT -oXT -oXT -oXT -oXT -oXT -vTW -oXT -oXT -nPR -nPR -nPR -nPR -atp +mBh +oOr +jnC +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +kih +xzJ +xzJ +klr +klr +klr +klr +aQM iIL ccs avr -ajg +lgl xid qeX qeX @@ -98710,96 +84209,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -yec -npX +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +tgb +ivO riD riD -kRq +tjh riD riD riD riD riD -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +mvf +dGm +mvf hWi vBi vBi hWi -jEx -oMp -alF -gfV -gfV -oTr -oTr -oTr -gfV -gfV -uUW -bAB -wlz -lBv -dsE -rMQ +bqo +gMs +oPk +ete +ete +kDm +kDm +kDm +ete +ete +iWl +jVX +bGF +hLF +uLe +xCl hWi -tjm -rRv -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA +qiu +sNv +qiu +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI fKE fKE kWK fKE fKE -bCu +jIw fKE fKE -nCg -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -rTK -yip +ptx +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +ibN +kYp orQ qeX vwY @@ -98828,65 +84327,65 @@ qeX qeX uFM mas -nGu -yfO -trl -mth -hVV -hVV -hVV -hVV -mth -jak -mRq -jTz -cpY -vCi -qwE -vpp -mth -cHW -nLe -eYs +mKD +gLR +dtK +noz +nlH +nlH +nlH +nlH +noz +eQi +nzq +iOA +uGJ +pkO +vDh +fMg +noz +ckC +oOr +fdO smh -ezE +vPZ vPj -lBs -lBs -lBs -pxs +wlv +wlv +wlv +kDg ogO -kju -qkI +iRt +pBR vZY -nDW +pEn smh -uHS -eYD -tsW -gfe -enJ +inJ +eWc +wNF +sSc +nHw smh -uXq -nLe -eYs -oXT -bPO -bPO -lVz -fgD -lVz -lpk -lpk -oXT -nPR -nPR -nPR -nPR -oXT -rNF -pSW -ill +gnS +oOr +fdO +xzJ +rcn +rcn +hiy +hIi +hiy +cNG +cNG +xzJ +klr +klr +klr +klr +xzJ +mvj +uZc +pXl hlk xid qeX @@ -98912,96 +84411,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +nME riD -pCl +qGB mOo riD -mYm -uJb -ccc -piL -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -kmG -tJN -qHo +ach +jgN +ozg +vMB +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +nDD +kyw +pxz vSP vSP vSP vSP vSP vSP -tfD -gfV -gfV -nMb -cIZ -haE -gfV -gfV -lQe +fMf +ete +ete +uah +vHX +qxt +ete +ete +gWs jOO jOO jOO jOO jOO jOO -iEs -ubx -bLP -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -iMO -krc -aOm -xbC +izC +csU +fwo +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI +okh +uzT +ofn +agw fKE pSD -pFP +ccn fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +tGc +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -99030,65 +84529,65 @@ qeX qeX uFM mas -tcs -loy -bxA -mth -hVV -hVV -hVV -hVV -mth -uPJ -rdS -gVx -tPx -gVx -rdS -uPJ -oMj -ulJ -rKN -eYs +eXO +kga +mXI +noz +nlH +nlH +nlH +nlH +noz +lNw +dib +mHc +tiv +mHc +dib +lNw +veO +hxf +vGu +fdO smh -hMC +nRq inK -cKP -cKP -cKP -cKP +sNH +sNH +sNH +sNH inK -oHG -cKP -cKP -cKP -qFv -dxE -dxE -hli -dxE -qPf +wUo +sNH +sNH +sNH +uOk +cXq +cXq +ohO +cXq +eCZ smh -gGL -rKN -ulJ -fgD -lVz -lpk -lpk -oXT -wtU -lVz -lVz -oXT -nPR -nPR -nPR -nPR -oXT -oki -hHQ -pmq +bEU +vGu +hxf +hIi +hiy +cNG +cNG +xzJ +hVc +hiy +hiy +xzJ +klr +klr +klr +klr +xzJ +hDA +uNy +eSg hlk xid qeX @@ -99114,96 +84613,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +nME riD -mTY +woP mOo riD -wuQ +cbe eVR eVR -kMX -luI -fSr -fSr -fSr -luI -tXH -tXH -oQL -luI -oKO -rnz -crH +mIa +mRy +iRC +iRC +iRC +mRy +dVw +dVw +oqA +mRy +uoG +dGm +mvf vSP -tWv -raz -jxa -ffL +cwM +bGo +dSC +oAu fnt -pVP -gfV -vrx -wtk -wtk -uRB -rYR -gfV -geE +iJq +ete +jtv +oRo +oRo +dqY +hdv +ete +gbP xDJ -iyr -mBL -aEX -hoa +sGQ +uXQ +rfp +ohe jOO -tjm -qmr -nNW -idA -iQR -aSH -aSH -idA -xCa -xCa -xCa -idA -plg +qiu +imw +ulA +mmI +eEA +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI +oqC kDQ kDQ -lGb +lLA fKE qtc -aOm +ofn fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +tGc +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -99231,29 +84730,29 @@ qeX qeX qeX uFM -qAu +uNN oLb reb rXG -mth -mth -mth -mth -mth -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -gGL -rKN -eYs +noz +noz +noz +noz +noz +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +bEU +vGu +fdO smh -jWR +bdF wmg jXO jXO @@ -99264,34 +84763,34 @@ jBQ inK inK inK -qFv -hlT -hlT -eSa -dxE -vLA +uOk +tXQ +tXQ +hvt +cXq +uOI smh -uXq -rKN -eYs -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -oXT -oXT -oXT -oXT -oXT +gnS +vGu +fdO +msc +msc +msc +msc +msc +msc +msc +msc +msc +xzJ +xzJ +xzJ +xzJ +xzJ tiE vEa cTg -lOL +vue xid qeX qeX @@ -99316,96 +84815,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj -elS +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +nME +quV mOo mOo -elS +quV mOo cpm gIA vnb -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +mvf +dGm +mvf vSP -iwj -gfS -smC -kfn +ptz +mNQ +wCr +rnZ fnt -fps -gqM -wzn -gqM -gqM -gqM -wzn -gqM -cgP +sRE +hGW +wGE +hGW +hGW +hGW +wGE +hGW +kcN xDJ -mkG -huI -eeU -ssv +kmQ +mMV +xZx +gjn jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA +qiu +imw +qiu +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI wph kDQ doK aoj -bHU +pvG pSD aoj -ekJ -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +qUn +tGc +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -99434,35 +84933,35 @@ qeX qeX uFM mas -vUK -yfO -jOc -mth -nHZ -rJx -nSK -nSK -hsJ -pJQ -pJQ -pJQ -hny -qxy -qxy -qxy -hsJ -rAE -nLe -eYs +sUF +gLR +fIq +noz +kah +mgW +pLi +pLi +mpj +dqN +dqN +dqN +uJp +rfm +rfm +rfm +mpj +xGf +oOr +fdO smh -hMC +nRq ozU -fJb -fJb -fJb -fJb +mNt +mNt +mNt +mNt inK -jiX +sdv smh smh oIn @@ -99470,29 +84969,29 @@ smh smh smh smh -rzQ +tmw smh smh -uXq -nLe -eYs -hTG -piJ -piJ -piJ -mYs -rqJ -rqJ -rqJ -hTG -rXT -tQY -lpk -rXT -oXT -fEY -pSW -gjh +gnS +oOr +fdO +msc +tCm +tCm +tCm +mgI +bmA +bmA +bmA +msc +sgT +dQn +cNG +sgT +xzJ +udg +uZc +jpr hlk xid qeX @@ -99518,96 +85017,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -hjJ +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +slt riD -oay +nuq svg riD -bTt +xBi eVR eVR -vat -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -bPc +llU +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +mvf +dGm +upW vSP -hps -gAR -xcj -tGP -xNx -voc -nPb -ckW -lGY -gfV -nPb -ckW -lGY -fVv -iIX -fht -pXY -rCa -uVm +cxY +aQw +jmN +fhI +ddW +thR +dyM +our +bYc +ete +dyM +our +bYc +tlh +iYv +dhj +uKt +olD +nht jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -wqT +qiu +imw +qiu +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI +hTz kDQ fia -sIx +uny fKE pSD -gBm +pUn fKE -aKo -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +sad +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -99636,65 +85135,65 @@ qeX qeX uFM mas -vFT -vFT -vFT -mth -ktR -bMt -uPJ -uPJ -hsJ -pJQ -pJQ -pJQ -vuw -qxy -qxy -qxy -hsJ -myK -rKN -eYs +yja +yja +yja +noz +tLC +wSC +lNw +lNw +mpj +dqN +dqN +dqN +daA +rfm +rfm +rfm +mpj +gOO +vGu +fdO smh -rbX +fms ozU -lBs -lBs -lBs -lBs +wlv +wlv +wlv +wlv inK -bym +kRB smh -iqB -uHS -mrC +qOC +inJ +qIP smh -hqK -tMI -tyY +lQt +vra +rFC qdG jFY -uXq -rKN -eYs -hTG -piJ -piJ -piJ -jfR -rqJ -rqJ -rqJ -hTG -tQY -lpk -lpk -kFh -oXT -xfN -xfN -xfN +gnS +vGu +fdO +msc +tCm +tCm +tCm +bYa +bmA +bmA +bmA +msc +dQn +cNG +cNG +syk +xzJ +oth +oth +oth hlk xid qeX @@ -99720,96 +85219,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -dVj +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +nME riD -pCl +qGB mOo riD -swD -aKk +oaW +kPU eVR rxF -luI -fSr -fSr -fSr -luI -tXH -tXH -tXH -luI -crH -rnz -crH +mRy +iRC +iRC +iRC +mRy +dVw +dVw +dVw +mRy +mvf +dGm +mvf vSP -viz -gfS -iYY -oxg +jIi +mNQ +eoc +cth fnt -cDv -gfV -lNv -gfV -gfV -gfV -lNv -gfV -rpQ +flJ +ete +nxZ +ete +ete +ete +nxZ +ete +mtE xDJ -gNA -gOJ -eeU -xSo +uhU +dKD +xZx +wdB jOO -tjm -qmr -tjm -idA -aSH -aSH -aSH -idA -xCa -xCa -xCa -idA -hJQ -cCc -lHB -xdq +qiu +imw +qiu +mmI +vFu +vFu +vFu +mmI +tRQ +tRQ +tRQ +mmI +xRO +oqN +vUl +mmq fKE npl -pFP +ccn fKE -eKq -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +tGc +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -99838,65 +85337,65 @@ mOJ mOJ cSV cQi -dIR -nrK -uZs -mth -mth -uPJ -rdS -frK -hsJ -cQs -cQs -cQs -vta -qxy -qxy -qxy -hsJ -uXq -foB -ufe -fQN -uAG +uTM +fgh +bAw +noz +noz +lNw +dib +oiG +mpj +aHN +aHN +aHN +hZF +rfm +rfm +rfm +mpj +gnS +vbW +jNC +jJn +xlJ jBQ -cKP -cKP -cKP -cKP -cKP -cKP -iNU -udr -dxE -aCa -liv -bjk -kXY -tyY +sNH +sNH +sNH +sNH +sNH +sNH +wPu +mJi +cXq +jhg +aoo +sIM +xLH +rFC gey jFY -iOw -rKN -eYs -hTG -piJ -piJ -piJ -kEV -lEA -lEA -lEA -hTG -mrb -lpk -lVz -oXT -oXT -hRT -hHQ -xfg +mwp +vGu +fdO +msc +tCm +tCm +tCm +eQP +lXo +lXo +lXo +msc +rAB +cNG +hiy +xzJ +xzJ +htW +uNy +khx hlk xid mOJ @@ -99922,96 +85421,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -pDi -kpG +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +xYi +cZH riD riD -kRq +tjh riD riD riD riD -kMg -luI -luI -luI -luI -luI -rAI -toX -toX -luI -wBz -rnz -crH +noB +mRy +mRy +mRy +mRy +mRy +clo +aoV +aoV +mRy +wBu +dGm +mvf vSP -lWC -jMw -fqW -ihI +bIt +liR +cmw +cVj fnt -mrr -gfV -gfV -oRt -gZj -wDe -gfV -gfV -hoq +dRU +ete +ete +iLl +dHS +twF +ete +ete +ikU xDJ -pmS -bNk -pvE -ngF +kjI +qGG +fiI +vCR jOO -tjm -qmr -guH -idA -xvE -xvE -sHc -idA -idA -idA -idA -idA +qiu +imw +efx +mmI +ljL +ljL +hrr +mmI +mmI +mmI +mmI +mmI fKE fKE -nbK +vbo fKE fKE -bCu +jIw fKE fKE -jSk -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip -yip +eMq +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp +kYp orQ qeX vwY @@ -100024,97 +85523,97 @@ kIE mOJ mOJ mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY vkd -kjp +lDv lQK rEK lQK -nbU -izi -rdS -gFk -frK -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -lOD -gik +bCA +grX +dib +aHb +oiG +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +abt +pYB smh -qkI +pBR bsJ -fJb -fJb -fJb -aRT -lFv -lFv +mNt +mNt +mNt +ueL +uEN +uEN smh -bKR -lth -lRX +eOP +cwT +tVM smh -ksE -kXY -jnO -uds +jsD +xLH +erX +cBh jFY -myK -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -tQY -rXT -lVz -fgD -tdo +gOO +oOr +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +dQn +sgT +hiy +hIi +dvJ iIL ccs iIL -jlv +dim qSx -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY vwY qeX qeX @@ -100124,96 +85623,96 @@ qeX vwY qeX iaN -pDi -pDi -pDi -pDi -pDi -dUh -pDi -pDi -pDi -pDi -pDi -pDi -dUh -pDi +xYi +xYi +xYi +xYi +xYi +hmM +xYi +xYi +xYi +xYi +xYi +xYi +hmM +xYi riD -hBb -ffG -rOu -pFY -atf -wRj -mqv -uXv -hyw -avq -sEY -nLP -lgk -wam -lgk -fng -geS -qeR -crH +hgP +exa +irY +vCN +dbr +eWd +dNq +ksN +gvd +uln +eQt +sLk +cxw +vKI +cxw +vLB +imP +vvE +mvf vSP vSP vSP vSP vSP vSP -tNH -gfV -gfV -sLA +hLA +ete +ete +mJG hWi -grW -pXp -gfV -eXb +dKJ +wBa +ete +gjw jOO jOO jOO jOO jOO jOO -uqD -hCk -mte -mrv -eJW -sJq -nzk -dxZ -wJw -nXm -esF -oqH -mTU -fsS -ewj -oOn -wDV -gkN -vcV +ejf +wgw +jkb +qMJ +vqf +uyf +gdA +ssj +okf +uUI +fRh +eBD +ydY +pJr +aPz +cYS +pSQ +hMk +fpv fKE -yip -rFS -yip -yip -yip -yip -yip -yip -yip -rFS -yip -yip -yip -rFS -yip +kYp +qLk +kYp +kYp +kYp +kYp +kYp +kYp +kYp +qLk +kYp +kYp +kYp +qLk +kYp orQ qeX vwY @@ -100226,7 +85725,7 @@ kIE mOJ mOJ mOJ -tag +ihr ndl ndl ndl @@ -100241,27 +85740,27 @@ ndl ndl ndl vkd -kjp +lDv lQK rEK jDu -mth -mth -mth -mth -mth -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -rKN -kCp +noz +noz +noz +noz +noz +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +vGu +oVn gay gay gay @@ -100272,36 +85771,36 @@ gay jFY jFY jFY -cpK -eeq -cUx +tLD +fBv +ccY smh -daJ -eTA -kXY -knl -kOc -ulJ -rKN -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -oXT -oXT -oXT -oXT -oXT +hMR +tAD +xLH +qHC +kYy +hxf +vGu +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +xzJ +xzJ +xzJ +xzJ +xzJ etw ccs iIL -gQH +oWB qSx ndl ndl @@ -100341,65 +85840,65 @@ iaN iaN iaN iaN -euA -eqf -nHE -eqf -eqf -lZU -ncZ -euA -rOu -oXt -gEZ -tsz -tus -tus -tus -dzZ -crH -iAN -crH +hbx +osZ +qEH +osZ +osZ +eWR +cUF +hbx +irY +wYR +qfb +cYI +qQQ +qQQ +qQQ +uCb +mvf +kTz +mvf hWi -iFn -jRR -rlJ -oiD +mCY +iDt +fid +pcZ lSp -tWB -gfV -gfV -mxC +wYZ +ete +ete +nUO bUe -pNr -rnm -gfV -roS +gUH +qaG +ete +tZX lSp -nnb -lEU -fvp -lEU +spA +eXR +gqE +eXR hWi -tjm -qmr -tjm -mqw -efc -efc -efc -teY -uDx -msl -lwp -aRH -ctD -uDx -fuD -oWr -uNa -hwz -teV +qiu +imw +qiu +gCX +tyV +tyV +tyV +qRM +sai +xwT +oMl +eMK +lNd +sai +sqi +voB +cmK +eLu +sfw orQ orQ orQ @@ -100428,7 +85927,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -100444,35 +85943,35 @@ ndl ndl cSV cQi -cCd -tZu -gmb -mth -hVV -hVV -hVV -cZv -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -rKN -eYs +nbE +vXi +wfd +noz +nlH +nlH +nlH +ado +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +vGu +fdO gay -gox -udj -bsE -kqj -kqj +aKB +qTp +rbr +vUP +vUP gay -vzV -msk +mHm +qPn jFY jFY jFY @@ -100480,29 +85979,29 @@ jFY jFY jFY jFY -iZd -knl +qEx +qHC jFY -diY -rKN -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -qEP -oXT -nyH -pSW -rXA +fwh +vGu +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +klr +klr +klr +juJ +xzJ +rXa +uZc +hHG hlk xid ndl @@ -100541,69 +86040,69 @@ qeX qeX qeX mOJ -tag -luI -euA -eqf -rOu +ihr +mRy +hbx +osZ +irY shL shL shL shL -qEo +jMq shL -xaP -gmq -tsz -rrr -dOs -rrr -dzZ -crH -rnz -crH +bXo +jrI +cYI +aei +txV +aei +uCb +mvf +dGm +mvf hWi -wXh -gfV -gfV -gfV -dpC -hzT -aMr -aMr -rOf +fLo +ete +ete +ete +kXM +bET +xJA +xJA +cVs bUe -pNr -rnm -gfV -eOL -lpv -fUR +gUH +qaG +ete +iXn +iqc +eaA heh heh aVM hWi -tjm -qmr -tjm -mqw -dpA -wnh -wvF -teY -nhm -jgZ -uNa -uNa -uNa +qiu +imw +qiu +gCX +kUS +xbF +hni +qRM +fnF +wrW +cmK +cmK +cmK vCl -uNa -uNa -uNa -kJG -teV -idA -tEF +cmK +cmK +cmK +dYH +sfw +mmI +wDM mOJ qeX qeX @@ -100630,7 +86129,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -100646,65 +86145,65 @@ ndl ndl cSV cQi -dVs -nrK -yae -mth -hVV -hVV -hVV -hVV -hsJ -kBa -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -nLe -eYs +pSb +fgh +qam +noz +nlH +nlH +nlH +nlH +mpj +noG +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +oOr +fdO gay -woH -xfD -fFN -fFN -fFN +ieo +dCD +xaj +xaj +xaj gay -xub -mgd -svR +wWP +ocF +iSr jFY -mOQ -uUZ -ioa -fGh +hxh +lLV +tpr +bak jFY -qxH -knl +vCI +qHC jFY -kni -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -ppV -hTG -nPR -nPR -nPR -nPR -oXT -tCs -hHQ -upH +xKf +oOr +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +oDi +msc +klr +klr +klr +klr +xzJ +ded +uNy +tVc hlk xid ndl @@ -100743,16 +86242,16 @@ qeX qeX qeX mOJ -tag -luI -tPA -eqf -rOu -aMg -bzI -aMg -ahR -hTo +ihr +mRy +aGY +osZ +irY +lYz +jKN +lYz +iJX +azT shL shL shL @@ -100761,33 +86260,33 @@ shL shL shL shL -foU -tJN -qHo +ccP +kyw +pxz hWi -lot -gZj -lNN -gLd +yiY +dHS +jsZ +qSi lSp -alF -gfV -gfV -mxC +oPk +ete +ete +nUO bUe -pNr -rnm -gfV -uUW +gUH +qaG +ete +iWl lSp -ehS -fbd -aEB -fbd +egZ +phB +nZc +phB hWi -iEs -ubx -ugd +izC +csU +vaX hwZ hwZ hwZ @@ -100795,17 +86294,17 @@ hwZ hwZ hwZ hwZ -uNa -qQp -qQp -qQp -qQp -ujV -uNa -kJG -kJG -idA -tEF +cmK +hBA +hBA +hBA +hBA +llA +cmK +dYH +dYH +mmI +wDM mOJ qeX qeX @@ -100832,7 +86331,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -100847,67 +86346,67 @@ ndl ndl ndl vkd -kjp +lDv lQK rEK lQK -odj -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -lOD -rbf +rkN +nlH +nlH +nlH +nlH +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +abt +jnC gay -yds -ikK -kcJ -chl -chl +nCG +arJ +rAZ +ixe +ixe gay -vTA -paX -cWP -dfk -tWw -nyC -uQJ -xox +lQk +sDC +jfi +eAA +faz +qpC +jxp +sca hFK -bjk -knl +sIM +qHC xRB -uXq -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -otp +gnS +oOr +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +klr +klr +klr +klr +xVp iIL ccs iIL -nlD +rUF qSx ndl ndl @@ -100945,69 +86444,69 @@ qeX qeX qeX mOJ -tag -luI -euA -wke -rOu +ihr +mRy +hbx +mCR +irY mmw mmw mmw mmw -hTo +azT eKj -jrn -jYD -rCI -oeH -olC -ggi +kbP +qVo +iyK +fqx +yaf +nCP shL -jvK -iAN -aac +cOk +kTz +riR oVL oVL oVL oVL oVL oVL -tNH -gfV -gfV -wkk +hLA +ete +ete +cXm hWi -ceN -kDc -gfV -jIl +gEv +hkg +ete +sKL fVO fVO fVO fVO fVO fVO -dzt -qmr -fMz +ncQ +imw +wnB hwZ dXl -vVb -nWC -nvH -gLo -fcN -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -wer -idA -tEF +fJK +nEB +xEZ +jXa +kcV +cmK +hBA +hBA +hBA +hBA +hBA +cmK +sfw +cVn +mmI +wDM mOJ qeX qeX @@ -101034,7 +86533,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -101049,67 +86548,67 @@ ndl ndl ndl vkd -kjp +lDv lQK rEK xQf -mth -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -uXq -nLe -eYs +noz +nlH +nlH +nlH +nlH +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +gnS +oOr +fdO gay -xDv -ikK -ojO -wgS -jzs +qAB +arJ +lFd +kuh +rmN gay jFY -ixV +wpQ jFY jFY -xZa -xze -tWw -gMy +nMk +aDP +faz +kYA hFK -bjk -knl +sIM +qHC xRB -uXq -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -oXT +gnS +oOr +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +klr +klr +klr +klr +xzJ bkk ccs iIL -lQf +rxJ qSx ndl ndl @@ -101147,69 +86646,69 @@ qeX qeX qeX mOJ -tag -luI -jnk -khY -rOu +ihr +mRy +dxI +sWu +irY eAG mmw -pWM -tfZ -fVL +mYW +cJE +wOc eKj -hGT +gXj xuw xuw xuw xuw -oRG +vDW shL -sZm -rnz -crH +rQO +dGm +mvf oVL -yeb -aGL -ljD -wEN +xRa +sPd +jGQ +dGl hhH -jdZ -gfV -gfV -dxa -jRR -jUk -gfV -gfV -nQc +rnc +ete +ete +nNJ +iDt +fOc +ete +ete +sEs bfh -sSf -eYK -ood -jZG +vmR +lkw +bxh +fSd fVO -tjm -qmr -tjm +qiu +imw +qiu klE -ncn -lZt -vVX -lZt -lZt -wFO -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -kJG -idA -tEF +jUG +jaV +qTI +jaV +jaV +baz +cmK +hBA +hBA +hBA +hBA +hBA +cmK +sfw +dYH +mmI +wDM mOJ qeX qeX @@ -101236,7 +86735,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -101252,65 +86751,65 @@ ndl ndl cSV cQi -cCd -tZu -gmb -mth -hVV -hVV -hVV -hVV -hsJ -gnC -gnC -gnC -hsJ -ttI -ttI -ttI -hsJ -wnU -nLe -eYs +nbE +vXi +wfd +noz +nlH +nlH +nlH +nlH +mpj +tdZ +tdZ +tdZ +mpj +ykl +ykl +ykl +mpj +mBh +oOr +fdO gay gay -vDt +odF gay gay gay gay -eCa -eXk -swJ +nUI +kUl +iKk jFY -aXl -vRX -oBo -xEW +lOW +kKc +izw +asv jFY -nRt -knl +iLW +qHC jFY -gGL -nLe -eYs -hTG -eex -eex -eex -hTG -fom -fom -fom -hTG -nPR -nPR -nPR -nPR -oXT -nyH -pSW -rXA +bEU +oOr +fdO +msc +bXK +bXK +bXK +msc +qZq +qZq +qZq +msc +klr +klr +klr +klr +xzJ +rXa +uZc +hHG hlk xid ndl @@ -101349,69 +86848,69 @@ qeX qeX qeX mOJ -tag -luI -euA -iQC -rOu -dfF -aWC -ygg -mMM -tvl -pII -fzd +ihr +mRy +hbx +mFS +irY +sbT +pAi +wLP +tbw +xYn +lfK +mhk dBN dBN hak hak -gtv -iYa -sWB -iTo -mrS +jlB +rnk +aJu +vKP +vHp oVL -iPl -rHT -xGQ -mUp +faS +byM +bVy +ePH hhH -jRw -gfV -gfV -oTr -oTr -oTr -gfV -gfV -kHd +kUL +ete +ete +kDm +kDm +kDm +ete +ete +oaK bfh -nhy -llt -eQZ -rPq +fSL +gEF +ooM +jsr fVO -tjm -qmr -tjm +qiu +imw +qiu klE -nvH -lZt -fcH -lZt -lZt -kAl -uNa -qQp -qQp -qQp -qQp -qQp -uNa -teV -teV -idA -tEF +xEZ +jaV +aJf +jaV +jaV +jlM +cmK +hBA +hBA +hBA +hBA +hBA +cmK +sfw +sfw +mmI +wDM qeX mnI mnI @@ -101438,7 +86937,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -101454,32 +86953,32 @@ ndl ndl cSV cQi -dIR -nrK -fuj -mth -mth -mth -mth -mth -hsJ -gNX -gNX -gNX -hsJ -hsJ -hsJ -hsJ -hsJ -xgz -rKN -bPj +uTM +fgh +rKP +noz +noz +noz +noz +noz +mpj +bLj +bLj +bLj +mpj +mpj +mpj +mpj +mpj +jcj +vGu +acD jFY -mOM -kXY -fWQ -rey -qbY +rmc +xLH +tSV +yiv +iUv jFY jFY jFY @@ -101487,32 +86986,32 @@ jFY jFY vLG vLG -dbS +cHh vLG jFY -fbT -fWF +dmo +sjL jFY -wnU -rKN -lrb -hTG -hTG -hTG -hTG -hTG -gNX -gNX -gNX -hTG -oXT -oXT -oXT -oXT -oXT -hRT -hHQ -xfg +mBh +vGu +eAC +msc +msc +msc +msc +msc +bLj +bLj +bLj +msc +xzJ +xzJ +xzJ +xzJ +xzJ +htW +uNy +khx hlk xid ndl @@ -101551,14 +87050,14 @@ qeX qeX qeX mOJ -tag -luI -euA -niA -rOu +ihr +mRy +hbx +gZa +irY shL shL -spT +frS vjg mmw eKj @@ -101567,42 +87066,42 @@ xuw irM hjl bfs -uct -qIs -crH -rnz -crH +fWm +bLz +mvf +dGm +mvf oVL -bnN -pSF -onS -wBg -qAF -uNZ -gfV -rYR -cxi -iGK -qAU -vrx -gfV -aBV -rNl -ihn -onl -owz -dSW +jNF +qQI +hnE +nlX +nho +hoA +ete +hdv +mUg +ebk +ecg +jtv +ete +hUo +fsU +pSH +bFf +ngH +iGQ fVO -tjm -qmr -tjm +qiu +imw +qiu klE -ePI -lZt -vaE -jIp -slM -hUA +oTJ +jaV +dCM +ltR +vyz +nCH hwZ hwZ hwZ @@ -101610,10 +87109,10 @@ hwZ hwZ hwZ hwZ -teV -xLo -idA -tEF +sfw +ltw +mmI +wDM mnI mnI ujR @@ -101640,7 +87139,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -101655,63 +87154,63 @@ ndl ndl ndl vkd -kjp +lDv lQK lQK lQK -jIz -fNX -fNX -fNX -fNX -aOd -iFe -xpR -xpR -lFk -ivK -vmm -wwH -vmm -nTe -rKN -ulJ -ngC -pIK -kXY -kXY -kXY -alc -kTZ -kTZ -paL -kTZ -kTZ -kTZ -kTZ -oBo -kTZ -kTZ -pIK -alc -ngC -ulJ -rKN -sLy -wwH -pRY -vmm -ivK -voq -qFF -qFF -hlX -xph -vmm -vmm -ulJ -vmm -fMw +ike +sse +sse +sse +sse +uQF +nnP +jAL +jAL +pNJ +whc +itL +oCI +itL +tUZ +vGu +hxf +qlc +uJo +xLH +xLH +xLH +xKJ +vtn +vtn +dYN +vtn +vtn +vtn +vtn +izw +vtn +vtn +uJo +xKJ +qlc +hxf +vGu +rqa +oCI +oNQ +itL +whc +kvh +acA +acA +eWO +oIJ +itL +itL +hxf +itL +mzW iIL iIL vsU @@ -101753,74 +87252,74 @@ mOJ mOJ mOJ mOJ -tag -luI -tPA -eqf -rOu -aMg -bzI -hTo +ihr +mRy +aGY +osZ +irY +lYz +jKN +azT vjg -hpt +hKL shL -qtf +tNQ xuw -tWR -oyC -peO -xhB +cSu +vWn +qRE +mdS shL -qMw -rnz -crH +jxc +dGm +mvf oVL -trZ -rHT -aQk -xmX +nWD +byM +iFi +xzI hhH -hFF -gqM -qNS -nCD -nCD -nCD -qNS -gqM -lOV +aWf +hGW +cGw +vRl +vRl +vRl +cGw +hGW +bKA bfh -xdw -cjc -eQZ -nmd +wXo +fke +ooM +lYS fVO -tjm -qmr -tjm +qiu +imw +qiu klE -lJE -lZt -tLL -lZt -lZt -lZt -jgM -urF -lws -jxF -lZt -gwm +vnH +jaV +ahk +jaV +jaV +jaV +fZH +uQY +qjc +rqn +jaV +wZh hwZ -teV -teV -idA -tEF +sfw +sfw +mmI +wDM mnI ujR ujR -hbO -ghG +ajd +qIW ujR ujR mnI @@ -101842,7 +87341,7 @@ vwY qeX qeX mOJ -tag +ihr ndl ndl ndl @@ -101857,63 +87356,63 @@ ndl ndl ndl vkd -kjp +lDv lQK fkp lQK -opY +rFe lQK lQK lQK lQK -dAP -byP -xRh -xRh -xRh -ivK -hmB -hmB -hmB -hmB -nEE -kna -saj -sXv -sXv -sXv -sXv -kfC -sXv -sXv -sXv -sXv -nSd -sXv -sXv -kXC -sXv -sXv -liU -hXm -saj -kna -pUq -hmB -hmB -hmB -hmB -ivK -xRh -xRh -xRh -ucm -dAP -sOJ -sOJ -sOJ -sOJ -eYs +cHt +iqg +uox +uox +uox +whc +mJA +mJA +mJA +mJA +bpN +bFE +lou +fMo +fMo +fMo +fMo +fsc +fMo +fMo +fMo +fMo +fAp +fMo +fMo +lLk +fMo +fMo +gDa +oxx +lou +bFE +vBL +mJA +mJA +mJA +mJA +whc +uox +uox +uox +itY +cHt +kGp +kGp +kGp +kGp +fdO iIL sqC mZH @@ -101955,75 +87454,75 @@ mOJ mOJ mOJ mOJ -tag -luI -euA -wJh -rOu +ihr +mRy +hbx +kKR +irY qzF mmw -hTo -hQY +azT +kxG shL shL -iVW +jDY xuw -wJp -gVv -oiy -iYq +qWM +wPx +oyc +jeX eKj -crH -rnz -crH +mvf +dGm +mvf oVL -whj -swR -roj -ehx +kaD +jxk +thS +hvw hhH -rDj -gfV -gfV -gfV -gfV -gfV -gfV -gfV -whz +lMX +ete +ete +ete +ete +ete +ete +ete +wuh bfh -sKp -jYd -cRi -jmy +fLB +rNy +aJn +hAZ fVO -tjm -qmr -lLu +qiu +imw +fjw hwZ -gDv -lZt -rrW -sun -qiA -sun -sun -sun -sun -evr -hUA -exS +fnA +jaV +gxE +sqF +bUP +sqF +sqF +sqF +sqF +kQR +nCH +sVQ hwZ -iKH -teV +dst +sfw mnI mnI mnI ujR -tNv -qgN -qgN -jCk +aPK +gPP +gPP +pAj ujR mnI qeX @@ -102044,42 +87543,42 @@ vwY qeX qeX mOJ -kgF -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej +rdH +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV cSV cSV lQK qCi jrA -bRs -dRr -fze -dRr -mmB -ivK -lZC -mQg -mQg -pwB -ivK -mQg -mQg -mQg -wFV -lOD -eYs +pWH +sXm +oBQ +sXm +tci +whc +fxX +lox +lox +saJ +whc +lox +lox +lox +hBr +abt +fdO pGK pGK pGK @@ -102096,45 +87595,45 @@ pGK pGK pGK pGK -jrq -vxX +uUR +gPS gay -diY -lOD -efX -mQg -mQg -mQg -ivK -pwB -mQg -mQg -cfz -ivK -mQg -ulJ -gkH -mQg -cfz +fwh +abt +lNq +lox +lox +lox +whc +saJ +lox +lox +hvI +whc +lox +hxf +kJa +lox +hvI iIL xps ulP xid xid -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej -gej +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV vwY qeX qeX @@ -102157,75 +87656,75 @@ mOJ mOJ mOJ mOJ -tag -luI -eqf -euA -nHE -umH -umH -jtN +ihr +mRy +osZ +hbx +qEH +dFd +dFd +fDK wIx shL shL -mmF +fIT xuw -eYz -vuU -sRw -iYq +iSk +dbE +rFM +jeX eKj -qHo -tJN -qHo +pxz +kyw +pxz oVL oVL oVL oVL oVL oVL -wwD -gfV -oDS -jzE -gZj -wDe -uEO -gfV -mfh +aKU +ete +rMs +sPZ +dHS +twF +qjF +ete +iyU fVO fVO fVO fVO fVO fVO -iEs -ubx -vEo +izC +csU +xND hwZ hwZ -cox -vPR -vTe +bCo +yhF +xxU hwZ -pjV +eQl hwZ -hBe -lZt -tLL -lZt -ozC +axZ +jaV +ahk +jaV +oqO hwZ -fjU -teV -dih -hYT -hYT -kPE -hcA -hcA -wrf -kOd +gEz +sfw +ixH +cNn +cNn +ljb +bSm +bSm +eyq +nlw ujR mnI mOJ @@ -102261,14 +87760,14 @@ qeX qeX qeX qeX -hsJ +mpj cQi cQi dwW dwW -tpD +siV cQi -tpD +siV cQi pND pND @@ -102279,49 +87778,49 @@ pND pND pND pND -lVP -ueM -cfz +diu +sXR +hvI pGK -eAR -pQL -yfu -xxr -rkO +tJR +fVF +eHU +wtP +wld pGK -uqR -aQt -sqV -xIQ -hMp -hGl -qTM +qCv +ghz +nOF +qzL +dZH +sTP +dXp pGK -tpQ -ewG -jqs +iEu +cLG +cqN gay -lZC -ueM -cfz -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -xKU -oXT -oXT -oXT -oXT -oXT -oXT -hTG +fxX +sXR +hvI +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +bNV +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +msc qeX qeX qeX @@ -102359,75 +87858,75 @@ mOJ mOJ mOJ mOJ -tag -luI -bKp -euA -rOu +ihr +mRy +iPs +hbx +irY mmw mmw -hTo -udG +azT +ehl shL shL -vHo +hzG xuw -wqb -qjs -juM -iYq +xrt +sho +aAY +jeX eKj -crH -rnz -crH -etr +mvf +dGm +mvf +njX qIE lCO wNm -ufI +vHG hWi hWi -alJ -clF +oIb +cbW hWi hWi hWi -alJ -xBH +oIb +rEQ hWi hWi -kIn +krV rLj sYn rdg -etr -tjm -qmr -tjm +njX +qiu +imw +qiu eJx -iYP -ajX -wda -wCy -fTZ -lEb +lPj +icp +iUY +goM +nZH +biR rSL apj -lZt -tLL -rxS +jaV +ahk +eDR cAh hwZ -liL -esU +ojH +xWi mnI mnI mnI ujR -qgN -qgN -qgN -htQ +gPP +gPP +gPP +rSz ujR mnI mOJ @@ -102463,67 +87962,67 @@ qeX qeX qeX qeX -vjx -nbU -tLz -qLr -qLr -nbU -nbU -nbU +vmo +bCA +sMP +ovQ +ovQ +bCA +bCA +bCA cQi -uqZ -aCO -aCO -aCO -aCO -jGL -sox -vAk +pCV +dtX +dtX +dtX +dtX +fSM +mzZ +mvZ pND -gXG -uyC -gXG +pdC +rQN +pdC pGK -aXD -aYl -xuj -nlo -vAL +faG +kpT +ftn +bIw +dfU pGK -ohr +ddH fBJ rPb fBJ iwy hXw -hNL +lUJ pGK -cZi -ewG -jqs +lNX +cLG +cqN gay -gXG -bvm -gXG -oXT -nPR -nPR -nPR -nPR -vxL -cha -tmM -idi -oXT -lVz -oXT -cCI -aRb -eNB -tlK -oLo -hTG +pdC +aYH +pdC +xzJ +klr +klr +klr +klr +nGs +oCb +lmi +jgb +xzJ +hiy +xzJ +nDm +afQ +gxu +jGg +wtI +msc qeX qeX qeX @@ -102561,74 +88060,74 @@ mOJ mOJ mOJ mOJ -tag -luI -wFb -nEK -rOu -dfF -aWC -hTo +ihr +mRy +sEW +wKG +irY +sbT +pAi +azT vjg -pHF +lbI shL -rqB +dvM xuw -dlN -efd -gKs -xhB +cgx +vxE +aGi +mdS shL -lEl -iAN -crH -etr +xOZ +kTz +mvf +njX qOc oCf qOc -xIe +abR qOc iFg qOc qOc iuq -gDO +mbc oPF qOc qOc iFg qOc -xIe +abR qOc qOc qOc -etr -tjm -qmr -tjm +njX +qiu +imw +qiu eJx -cPv -wMf -moi -nqX -osn -kMo +oHh +kuP +cuN +apk +gkb +fAU rSL lmN -lZt -tLL -lZt +jaV +ahk +jaV lrx hwZ -xoY -kJG -idA -tEF +jCQ +dYH +mmI +wDM mnI ujR ujR -pqa -feD +mrL +vpe ujR ujR mnI @@ -102665,67 +88164,67 @@ qeX qeX qeX qeX -vjx -nbU +vmo +bCA nOl dEK dEK jqD qtN -nbU +bCA cQi lqv jEo xVS tRS tuE -rIH +tcF ivH -dAV +mNj quM -nEf -dUf -hqE +tEI +jaq +aUV pGK -bfc -oLB -hQt -reU -oen +yhp +vEV +pVC +uuU +vWQ pGK -mRV -mRV -kge -mRV -kTK -mRV -xHH +mxt +mxt +uCM +mxt +vzP +mxt +bVU cmH -icq -ewG -jqs +xbm +cLG +cqN bcN -nEf -qrq -hqE -oXT -nPR -nPR -nPR -nPR -nPR -cha -glr -vVh -oXT -lpk -oXT -ckd -oga -rwg -lpk -bcD -hTG +tEI +xeO +aUV +xzJ +klr +klr +klr +klr +klr +oCb +tQy +noK +xzJ +cNG +xzJ +vdQ +bqq +nFx +cNG +tYX +msc qeX qeX qeX @@ -102763,14 +88262,14 @@ mOJ mOJ mOJ mOJ -tag -luI -wke -rfN -rOu +ihr +mRy +mCR +flv +irY shL shL -wUB +nFL vjg oWe eKj @@ -102779,53 +88278,53 @@ xuw xuw bGE cAL -uct -tAY -crH -cjM -sWB -aOO +fWm +ttQ +mvf +ljY +aJu +prU lve lve lve -qyb +nKt mav mEa qOc qOc qOc -xIe +abR qOc qOc qOc btG qOc -noR +isx jXi jXi jXi -xBV -qlJ -iVH -tjm -kGC -aNR -vlu -aCj -pnT -aFc -kMo +dJw +aIB +uhe +qiu +sGR +gmf +yhu +eaO +bgW +oFY +fAU rSL oJe -lZt -tLL -lZt -lkI +jaV +ahk +jaV +qBG hwZ -kJG -tqw -idA -tEF +dYH +diR +mmI +wDM mnI mnI ujR @@ -102867,67 +88366,67 @@ qeX qeX qeX qeX -hsJ +mpj cQi lEg liX uoi uoi uoi -fXn +vlO cQi dJW hYu ieL sIH rTU -rIH +tcF ivH ivH -kPy -ulJ -ygu -fhj +iJP +hxf +cum +tuN pGK -ixj -jaC -nuv -tzD +etN +cyO +oeC +iQU pGK pGK -oSc -vbz -tIp -hCt -hCt -bNM -vLp +upr +sRW +gpE +vkL +vkL +xqj +dfY cmH -nmq -ewG -jqs +bAp +cLG +cqN bcN -qdP -rKN -fhj -oXT -nPR -nPR -nPR -nPR -nPR -cha -eDs -pMS -oXT -vWe -oXT -oXT -oXT -vTW -oXT -oXT -hTG +jNb +vGu +tuN +xzJ +klr +klr +klr +klr +klr +oCb +moF +caj +xzJ +rMB +xzJ +xzJ +xzJ +kih +xzJ +xzJ +msc qeX qeX qeX @@ -102965,69 +88464,69 @@ mOJ mOJ mOJ mOJ -tag -luI -vyJ -euA -rOu -aMg -bzI -hTo -emg -gDd -hzK -eBc +ihr +mRy +xdF +hbx +irY +lYz +jKN +azT +iLd +gXw +fMa +mTf gDc gDc gDc gDc -ajz -qIs -crH -iAN -crH -etr +yjg +bLz +mvf +kTz +mvf +njX ehC hor iIA -xIe +abR wZI gxs lve lve rmg -qCL +tOL jXi jXi jXi uEG frq -mFy +nDz oeX oCf oLx -etr -tjm -hCk -arI -uNg -cEo -mlt -kXN -dNX -aFc -tMb +njX +qiu +wgw +ntx +vsJ +iTc +vcR +kVh +kvt +oFY +dAy sJv hwZ -pVS -tLL -lZt -ozC +fKT +ahk +jaV +oqO hwZ -kJG -wer -idA -tEF +dYH +cVn +mmI +wDM qeX mnI mnI @@ -103069,73 +88568,73 @@ qeX qeX qeX qeX -hsJ +mpj cQi -oJO +bXP uoi uoi uoi owN -diw +tYA cQi tcb ivS ieL xgV pAn -rIH +tcF rYH boK -bmD -sSt -gUp -fhj +vWt +nZq +sbd +tuN pGK -tgG -tnF -jZl -cTf -boF -tEE -axH -aOv -fMF -kHl -gdC -pAH -nmn +xKi +hdS +hAM +azs +vdn +rny +axe +xYv +cZM +dxH +gHL +hMN +koJ cmH -xWx -ewG -jqs +kWr +cLG +cqN bcN -qdP -nLe -qhN -oXT -nPR -nPR -nPR -nPR -nPR -cha -kFV -aZo -oXT -lpk -lpk -vhs -bXA -lVz -xKx -lVz -hTG +jNb +oOr +cJS +xzJ +klr +klr +klr +klr +klr +oCb +bac +sik +xzJ +cNG +cNG +fnb +guo +hiy +sAB +hiy +msc qeX -fDe -wgJ -wgJ -wgJ -wgf +wAV +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -103167,27 +88666,27 @@ mOJ mOJ mOJ mOJ -tag -luI -ghd -eqf -rOu +ihr +mRy +gLF +osZ +irY xRs xRs -buc -sBt -qsU +iaE +nOx +suQ eKj -goy -vBQ -vBQ -sba -sba -iQd +tPt +jOF +jOF +nEo +nEo +pJg shL -qHo -jJR -kUW +pxz +nCz +lYf uxe uxe uxe @@ -103198,7 +88697,7 @@ uBf qOc dDK evv -xIe +abR fob ehC qOc @@ -103209,27 +88708,27 @@ uxe uxe uxe uxe -jWZ -ubx -iEs +hBZ +csU +izC eJx -qnB -vlu -fOq -bZQ -aFc -kMo +fSJ +yhu +iDA +phI +oFY +fAU rSL rLK -fer -nNy -lZt +qKj +wKs +jaV vib hwZ -teV -fQy -idA -tEF +sfw +dRb +mmI +wDM mOJ mOJ mOJ @@ -103271,75 +88770,75 @@ qeX qeX qeX qeX -vjx -kjp +vmo +lDv uoi jqD uoi uoi owN -diw +tYA cQi tcb cBd wJL snl pAn -rIH +tcF ivH -wkb +acs quM -qdP -lOD -qhN +jNb +abt +cJS pGK -bQU -cRB -jwH -owH -rGr -lrI -lrI -otX -lbx -icq -ewG -ycq -cvI +lFo +wpk +cls +fjy +diD +xHV +xHV +xtC +hbn +xbm +cLG +hXg +hHd pGK pGK -vge -eCY +xbN +ruG gay -oGN -nLe -fhj -oXT -cha -cha -cha -igx -cha -cha -tyG -cha -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lVz -hTG +aTt +oOr +tuN +xzJ +oCb +oCb +oCb +bpJ +oCb +oCb +bNc +oCb +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +cNG +hiy +msc qeX -tag +ihr ndl ndl ndl ndl -wgJ -wgf +wtY +bhQ qeX qeX qeX @@ -103369,69 +88868,69 @@ mOJ mOJ mOJ mOJ -tag -luI -wJC -eqf -rOu +ihr +mRy +uuC +osZ +irY xRs xRs xRs mmw -vnM +eLn eKj -eFL -eFL -nsy -odf -syY -uwd +hPb +hPb +gOt +nHu +gYe +bfJ shL -crH -iAN -crH -acT -ezR -fQs -pSc -jUx +mvf +kTz +mvf +lIt +fJJ +axx +mtW +hcw qOc qOc ekq uxe uxe -pco +vSX uxe uxe vAz qOc qOc -jUx -kzW -aXC -fNb -vQJ -tjm -qmr -tjm +hcw +dwB +lwh +tAT +oQI +qiu +imw +qiu eJx -qnB -vlu -sBV -vdD -aFc -kMo +fSJ +yhu +ubF +nvl +oFY +fAU rSL ble -lZt -tLL -hVr +jaV +ahk +hGx gYi hwZ -teV -mOL -idA -tEF +sfw +vdz +mmI +wDM mOJ mOJ mOJ @@ -103473,14 +88972,14 @@ qeX qeX qeX qeX -vjx -kjp +vmo +lDv uoi uoi uoi uoi uoi -nbU +bCA cQi tcb ieL @@ -103489,59 +88988,59 @@ ieL pAn ivH ivH -eKl +cBp pND -gbD -lOD -fhj +grh +abt +tuN pGK -byX +dTQ qXh -nlz -hMz +rfL +dnn pGK -jLC -plq -bMY -lbx -icq -ewG -fzJ -bhO -mfo -kPR -bZp -wDU -uzX -sSt -gUp -fhj -uLI -cha -oOI -plU -aLi -nia -pDR -ttR -cha +fqh +lvy +iea +hbn +xbm +cLG +oSb +pnV +bbu +cqt +rUT +kyF +vju +nZq +sbd +tuN +cpn +oCb +mOn +nDJ +eip +btf +aIJ +ezM +oCb aCi dKk dKk dKk eLN -oXT -lpk -pMP -hTG -wgJ +xzJ +cNG +oFC +msc +wtY ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -103571,69 +89070,69 @@ mOJ mOJ mOJ mOJ -tag -luI -jnk -eqf -rOu -dfF -aWC -dfF -aWC -qUE +ihr +mRy +dxI +osZ +irY +sbT +pAi +sbT +pAi +qMI shL -hFB -nMs +pSj +jrH shL shL shL shL shL -ybz -sKA -jBk +oFG +aJN +aPA rkk -sCv -ndk +tti +tkY hkM dwp -kUC -kUC -kUC +tHq +tHq +tHq dwp -pVH -rgF -afF +iwJ +vby +nZj dwp -kUC -kUC -kUC +tHq +tHq +tHq dwp vdf -anv -hOl +tVw +tIk rkk -voZ -tMA -kTm +xRe +vQk +fWt hwZ -aUc -rIx -xEH -fTZ -wsk -lVn +jmV +qhM +dZz +nZH +uAq +caX rSL -lkI -lZt -tLL -eAz +qBG +jaV +ahk +eLO hwZ hwZ -teV -kJG -idA -tEF +sfw +dYH +mmI +wDM mOJ mOJ mOJ @@ -103675,67 +89174,67 @@ qeX qeX qeX qeX -hsJ +mpj wdT wIA -cmX -cmX -cmX +lpJ +lpJ +lpJ uoi -fXn +vlO cQi tcb ieL ieL ieL pAn -rIH +tcF ivH dTo quM -qdP -rKN -fhj +jNb +vGu +tuN pGK -hhs -cRB -nlz -iOU +ruZ +wpk +rfL +tRo nbY -pPl -kdK -bMY -diE -gPi -qhW -qnN -kHl -tTn -xeW -kHl -hIO -nds -ulJ -plt -qfG -uWC -ght -hlb -hlb -dIU -vJv -aLi -cxC -rkr +nTP +jAD +iea +gaA +bRU +iIz +dUn +dxH +uBU +nEU +dxH +sVD +lvv +hxf +cdk +bDI +mwe +bZB +dLr +dLr +tyb +giT +eip +uLl +ffj qav -tGj -wZx -nHX +jYF +bUn +aFA tSh -oXT -lpk -lVz -hTG +xzJ +cNG +hiy +msc ndl ndl ndl @@ -103743,7 +89242,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -103773,11 +89272,11 @@ mOJ mOJ mOJ mOJ -tag -luI -vsX -eqf -rOu +ihr +mRy +bGQ +osZ +irY shL shL shL @@ -103787,55 +89286,55 @@ shL shL shL shL -sEJ -vYl -nlC -rOu -hva -qna -hva +nFr +rHW +kLx +irY +pjA +cxo +pjA rkk -naH -lfX +wtZ +gWM gir uxe -fVl -fVl -fVl +nDs +nDs +nDs dwp -tBo -xXR -giE +mId +aqd +fqi dwp -cWQ -cWQ -cWQ +uUP +uUP +uUP uxe jde -gLL -kcC +jQQ +kpM rkk -ezq -wRn -ezq +qEG +tOu +qEG wcQ -nnm +lfi lgZ eMD iGD lgZ -gwZ +uNU hwZ -nWt -lZt -tLL -ldm +nrv +jaV +ahk +nzW hwZ -cej -teV -kJG -idA -tEF +sfW +sfw +dYH +mmI +wDM mOJ mOJ mOJ @@ -103877,67 +89376,67 @@ qeX qeX qeX qeX -hsJ +mpj cQi jqD -cmX +lpJ xSv -kdj +buy uoi -diw +tYA cQi oAk dPj eCy dPj eyk -bPY -eaa +irH +haK dTo quM -qdP -rKN -fhj +jNb +vGu +tuN pGK -inP +aXy oTM -fcq -kYr +dAw +mFz nbY pGK -dbB -bMY -vls -nYN -lrI -aAT +cZR +iea +rTS +dqg +xHV +vuB pGK -gJC +gQN pGK -bCD +jLS nZh pGK -lmK -rKN -fhj -wdo -cha -iXS -cxC -raU -tdO -dks -cxC -rkr +qZF +vGu +tuN +jSE +oCb +xpg +uLl +fzz +hoY +lgd +uLl +ffj jVA -iVJ +dXr aIa -iVJ +dXr tSh -oXT -lVz -oXT -hTG +xzJ +hiy +xzJ +msc ndl ndl ndl @@ -103945,7 +89444,7 @@ ndl ndl ndl ndl -tEF +wDM mOJ mOJ qeX @@ -103975,69 +89474,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -euA -rOu -lWh -awc -tIM -hiY -uqG -rOu -niA -niA -euA -eqf -eqf -cMr -rOu -jBk -nem -jBk +ihr +mRy +hbx +hbx +irY +gRr +jqc +hUX +qni +mys +irY +gZa +gZa +hbx +osZ +osZ +ech +irY +aPA +fPi +aPA rkk -bbJ -hZQ -tjU +hDk +xkE +sNn dwp -kUC -kUC -kUC +tHq +tHq +tHq dwp -wgN -ezR -jUE +nLO +fJJ +qgz dwp -kUC -kUC -kUC +tHq +tHq +tHq dwp -kcs -maA -lRU +alH +doI +cwA irx -voZ -tMA -voZ +xRe +vQk +xRe hwZ -suh +kJI kAr gmr kAr kAr -xig +ouU rSL -sMv -lZt -tLL -car -leA -nRo -kJG -kJG -idA -tEF +lNP +jaV +ahk +rLn +ikV +ujP +dYH +dYH +mmI +wDM mOJ qeX qeX @@ -104079,67 +89578,67 @@ qeX qeX qeX qeX -hsJ +mpj cQi uoi -cmX +lpJ dVu -sXL +jQe uoi -xVw +aQd cQi tcb ieL ieL ieL pAn -rIH +tcF ivH dTo quM -qdP -rKN -fhj +jNb +vGu +tuN pGK -qpS -pEg -tNi -tNi -tNi +xJi +kfA +pME +pME +pME pGK -aQs -bMY -ebB -gmo -aaO -oOU +non +iea +dbJ +uHq +beH +yfm pGK -ggc -bMl -dOH -rQC +umF +ioj +aqV +fxs pGK -qdP -rKN -fhj -cha -cha -rfd -cxC -bju -utF -aVL -cxC -rkr -wzj +jNb +vGu +tuN +oCb +oCb +ocg +uLl +mMl +eCc +fBr +uLl +ffj +bzg mEV aIa -tto +ejP tSh -oXT -uSy -oXT -hTG +xzJ +oTt +xzJ +msc ndl ndl ndl @@ -104147,7 +89646,7 @@ ndl ndl ndl ndl -tEF +wDM mOJ mOJ qeX @@ -104177,69 +89676,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -eqf -rOu -mJM -kyt -lxt -kyt -tJD -rOu -euA -eqf -euA -euA -eqf -euA -rOu -crH -iAN -crH -acT -uHg -lTF -aOC -jUx +ihr +mRy +hbx +osZ +irY +nJB +uXc +adA +uXc +miH +irY +hbx +osZ +hbx +hbx +osZ +hbx +irY +mvf +kTz +mvf +lIt +ryi +uHU +kjK +hcw qOc qOc qOc -jUx -uHg -lTF -aOC -jUx +hcw +ryi +uHU +kjK +hcw qOc qOc qOc -jUx -uHg -lTF -aOC -acT -tjm -qmr -tjm +hcw +ryi +uHU +kjK +lIt +qiu +imw +qiu oUW -rwQ +fRU kAr gmr kAr kAr -vfH +uJa rSL neI -lej +eSO fjv -car +rLn hwZ -mdX -teV -fQy -idA -tEF +dOl +sfw +dRb +mmI +wDM mOJ qeX qeX @@ -104281,14 +89780,14 @@ qeX qeX qeX qeX -hsJ +mpj cQi lEg -cmX -cmX -cmX +lpJ +lpJ +lpJ uoi -diw +tYA cQi tcb ieL @@ -104297,59 +89796,59 @@ ieL pAn ivH ivH -ycn +pWA pND -gbD -nLe -fhj +grh +oOr +tuN pGK -ejL +fgV grN -ndz -ikP -rvs +koN +vil +dGQ pGK pGK -peS +dZW pGK -uQR +iaS pGK pGK pGK -tOh -vls -vls -fUE +nye +rTS +rTS +pJV oKn -qdP -nLe -fhj -vfh -sZO -cxC -cxC -raU -aLi -aLi -cxC -rkr +jNb +oOr +tuN +aPo +buY +uLl +uLl +fzz +eip +eip +uLl +ffj qav -iVJ +dXr aIa -iVJ +dXr tSh -oXT -lVz -oXT -hTG -gej +xzJ +hiy +xzJ +msc +hbV ndl ndl ndl ndl ndl ndl -tEF +wDM mOJ mOJ qeX @@ -104379,27 +89878,27 @@ mOJ mOJ qeX mOJ -tag -luI -tPA -eqf -jxH -tUh -jkq -dRK -tyP -orb -fnL -mkP -tyP -tyP -mkP -tyP -tyP -pUZ -eut -iTo -iRw +ihr +mRy +aGY +osZ +duA +giU +fJn +oyA +oJI +xnu +ezW +veI +oJI +oJI +veI +oJI +oJI +qeT +ifK +vKP +ghA uxe dwp dwp @@ -104410,7 +89909,7 @@ uBf cfd uxe dwp -afO +pFE dwp uxe vll @@ -104421,27 +89920,27 @@ dwp dwp dwp uxe -baN -qmr -guH +ieI +imw +efx oUW -lyu +gUw kAr mYT dYy kAr -nCb +tyk hwZ hwZ hwZ -fqZ -oqo +dFa +wRk hwZ hwZ -kJG -mOL -idA -tEF +dYH +vdz +mmI +wDM mOJ mOJ qeX @@ -104483,75 +89982,75 @@ qeX mOJ qeX qeX -vjx -kjp +vmo +lDv uoi uoi uoi uoi uoi -pid +pww cQi tcb rhH aZU ocX pAn -rIH +tcF ivH -cpO +cFU quM -qdP -nLe -fhj +jNb +oOr +tuN pGK -kox -pEg -apS -djp -apS +lOl +kfA +wqY +odq +wqY pGK hUS -bMY -kRk -agk +iea +leG +iqh nNb pGK -huX -deC -dOd -oRA -wYE +myT +bdn +eUF +qaq +kyB oKn -qdP -nLe -fhj -vfh -rhy -bCe -bCe -bzH -eRK -eRK -oIf -rkr +jNb +oOr +tuN +aPo +xJf +oWd +oWd +dDl +ooy +ooy +eTK +ffj jVA -rvz -pSk +aKY +vdU dUN tSh -oXT -lpk -lVz -hTG +xzJ +cNG +hiy +msc qeX -tag +ihr ndl ndl ndl ndl -gej -gjc +hbV +ona mOJ mOJ qeX @@ -104581,69 +90080,69 @@ mOJ mOJ qeX mOJ -tag -luI -euA -lRj -rOu -eFI -nEY -nEY -nEY -osW -rOu -upX -osW -agL -dtd -pFY -atf -rOu -crH -tGl -crH +ihr +mRy +hbx +sCi +irY +xdT +mNX +mNX +mNX +teZ +irY +uBe +teZ +uOr +qGj +vCN +dbr +irY +mvf +gkQ +mvf rkk -xIe -xIe -xIe -kNi +abR +abR +abR +beU qOc uBf qOc -kNi -xIe +beU +abR qOc -xIe -kNi +abR +beU qOc uBf qOc -kNi -xIe -xIe -xIe +beU +abR +abR +abR rkk -tjm -kuq -tjm +qiu +neT +qiu hwZ -hvS -nqX -aJM -nqX -jio -wFm +jhq +apk +iwX +apk +nyV +lWf hwZ hwZ -wCc -aTe -fTZ -eEG +kFd +dse +nZH +ptF hwZ -kJG -kay -idA -tEF +dYH +php +mmI +wDM mOJ qeX qeX @@ -104685,73 +90184,73 @@ qeX mOJ mOJ qeX -vjx -kjp +vmo +lDv qtN mKJ uoi uoi owN -diw +tYA cQi tcb bhH ieL xgV pAn -rIH +tcF ivH fSK -kPy -ulJ -nLe -fhj +iJP +hxf +oOr +tuN pGK -etF +fzX mHl -apS -djp -kam +wqY +odq +aKH pGK oeg -bMY -pqg -xUS +iea +vLY +xqy mJJ pGK -ooB -bMY -aYe -vls -aOT +jqv +iea +vlQ +rTS +pQi mKY -qdP -nLe -fhj -vfh -fEc -nWu -wTS -xyF -lNS -vko -vyx -cha +jNb +oOr +tuN +aPo +hJp +niZ +xnJ +rnF +pFb +jSX +qic +oCb mXO jgy jgy jgy eFP -oXT -lpk -lVz -hTG +xzJ +cNG +hiy +msc qeX -kgF -gej -gej -gej -gjc +rdH +hbV +hbV +hbV +ona qeX qeX mOJ @@ -104783,15 +90282,15 @@ mOJ mOJ qeX mOJ -tag -luI -jnk -euA -rOu -kCC -mqu -bkW -doq +ihr +mRy +dxI +hbx +irY +bXT +bDg +wTf +kom pRc pRc pRc @@ -104801,11 +90300,11 @@ pRc pRc pRc pRc -crH -iAN -crH +mvf +kTz +mvf rkk -xIe +abR qOc qOc qOc @@ -104823,11 +90322,11 @@ qOc qOc qOc qOc -xIe +abR rkk -tjm -qmr -tjm +qiu +imw +qiu mua mua mua @@ -104837,15 +90336,15 @@ mua mua mua mua -wRD +iuu hMG lgZ -vav +tkz hwZ -kJG -hyM -idA -tEF +dYH +aZe +mmI +wDM mOJ qeX qeX @@ -104887,67 +90386,67 @@ qeX mOJ qeX qeX -hsJ +mpj cQi koq qtN uoi uoi owN -diw +tYA cQi dJW eRq ieL lcV rTU -rIH +tcF ivH fSK -oMe -ulJ -nLe -fhj +uuh +hxf +oOr +tuN pGK -oCy -mAH -apS -djp -apS +fBo +oDY +wqY +odq +wqY pGK gtU -dRA -kER -uGd +osw +soG +kzx neH pGK -ydI -riv -dhE -lrI -ksb +uxU +sHB +mXr +xHV +pfz pGK -gbD -nLe -qhN -cha -cha -cha -cha -jrG -cha -cha -cha -cha -cha -oXT -oXT -oXT -oXT -oXT -lpk -pMP -hTG +grh +oOr +cJS +oCb +oCb +oCb +oCb +kEK +oCb +oCb +oCb +oCb +oCb +xzJ +xzJ +xzJ +xzJ +xzJ +cNG +oFC +msc mOJ mOJ mOJ @@ -104985,15 +90484,15 @@ qeX qeX qeX mOJ -tag -luI -eqf -euA -rOu -rOu -rOu -rOu -rOu +ihr +mRy +osZ +hbx +irY +irY +irY +irY +irY pRc ooX wYz @@ -105003,11 +90502,11 @@ aPN wYz nkh pRc -crH -iAN -crH +mvf +kTz +mvf rkk -xIe +abR qOc tgy bPe @@ -105025,11 +90524,11 @@ qOc oKr dhe qOc -xIe +abR rkk -tjm -qmr -tjm +qiu +imw +qiu mua vWi qwv @@ -105039,15 +90538,15 @@ rQt bIv uKV mua -ofS +kPJ hMG lgZ -ocf +tBe hwZ -kJG -teV -idA -tEF +dYH +sfw +mmI +wDM mOJ qeX qeX @@ -105089,67 +90588,67 @@ qeX mOJ qeX qeX -hsJ +mpj cQi lEg liX qtN mKJ uoi -fXn +vlO cQi sFs rJl mRv jjK rrh -rIH +tcF ivH -wkb +acs quM -qdP -rKN -fhj +jNb +vGu +tuN pGK -htG +tVJ vCX -fUy -bCr -rvs +pql +mSL +dGQ pGK pGK -sGt -sGt -sGt +vrh +vrh +vrh pGK pGK -lgn -mRV -mRV -mRV -dNp +hYh +mxt +mxt +mxt +xGD pGK -qdP -rKN -fhj -nMR -eII -wEi -obt -xyF -cha -wal -eMQ -ioH -cha -lpk -lpk -vhs -owb -lVz -lpk -lVz -hTG +jNb +vGu +tuN +row +sIh +eVu +uWR +rnF +oCb +svF +kud +aKg +oCb +cNG +cNG +fnb +wlG +hiy +cNG +hiy +msc mOJ mOJ mOJ @@ -105187,15 +90686,15 @@ qeX qeX qeX mOJ -tag -luI -eqf -euA -rOu -wEK -gCP -ecS -dyi +ihr +mRy +osZ +hbx +irY +lEo +xPB +saK +pKc pRc ooX vdj @@ -105205,33 +90704,33 @@ oCM vdj lbB pRc -qHo -jJR -qHo -ftt -xIe +pxz +nCz +pxz +eUC +abR qOc ewy -uaC -uaC -uaC -uaC +faK +faK +faK +faK xTz -uUk +jTZ clZ -tyu +bHW dGT -kWf -kWf -kWf -kWf +jdC +jdC +jdC +jdC ewy qOc -xIe -ftt -tjm -qmr -tjm +abR +eUC +qiu +imw +qiu mua vWi ugt @@ -105241,15 +90740,15 @@ kpn abS ghO mua -idd +ros hMG dJy -xYK +mVW hwZ -bZF -fbn -idA -tEF +gzQ +xNj +mmI +wDM mOJ qeX qeX @@ -105291,67 +90790,67 @@ qeX mOJ qeX qeX -vjx -nbU +vmo +bCA uoi jRO jRO jRO jRO -nbU -nuF -kmV -kmV -kmV -kmV -kmV -jDT +bCA +hXd +nIT +nIT +nIT +nIT +nIT +kQs ivH -vvb +mSK pND -hoQ -rKN -fhj +ikz +vGu +tuN pGK pGK pGK -stD -stD -stD +ygt +ygt +ygt pGK pGK -jEa +vlo eVz -jEa +vlo pGK pGK -oND -xFs -fYF -gRw -hSi +gxY +ojU +lpG +rSO +gPc pGK -edT -rKN -fhj -nMR -abH -oCU -cxC -xyF -tDB -kFV -ilr -kFV -cha -lpk -oXT -oXT -oXT -oXT -lVz -oXT -hTG +xpj +vGu +tuN +row +srW +qPg +uLl +rnF +xTy +bac +rXH +bac +oCb +cNG +xzJ +xzJ +xzJ +xzJ +hiy +xzJ +msc mOJ mOJ mOJ @@ -105389,15 +90888,15 @@ qeX qeX qeX mOJ -tag -luI -gqI -fDV -dqr -ePs -qQX -euA -knH +ihr +mRy +mFV +epj +uhB +cTp +cPF +hbx +onu pRc oAd eAS @@ -105407,33 +90906,33 @@ abP bnU hEh pRc -geS -mqG -crH -etr -xIe +imP +fXm +mvf +njX +abR qOc ewy -uaC -uaC -uaC -uaC +faK +faK +faK +faK xTz -sPC +tKv ijb -llu +tLs dGT -kWf -kWf -kWf -kWf +jdC +jdC +jdC +jdC vZi frq -qCL -xBV -qlJ -mqz -qlJ +tOL +dJw +aIB +bpQ +aIB mua dRh jIL @@ -105443,15 +90942,15 @@ rkx jIL feO mua -idd +ros orC rAf -sgk +njM hwZ -xjm -teV -idA -tEF +jGA +sfw +mmI +wDM mOJ qeX qeX @@ -105493,38 +90992,38 @@ qeX qeX qeX qeX -vjx -nbU -nbU -aki -riO -aki -fSC -nbU +vmo +bCA +bCA +erw +biz +erw +nnj +bCA cQi -lwG -nth -ePw -laT -byx -eHz -uqB -ryy +dNW +wZp +urB +jOa +sCI +bpM +bMf +kTh pND -gbD -nLe -xOd -mUz -hqE +grh +oOr +xqf +mlo +aUV pGK pGK pGK pGK pGK pGK -sGt -sGt -sGt +vrh +vrh +vrh pGK pGK pGK @@ -105533,27 +91032,27 @@ pGK pGK pGK pGK -jDG -nLe -fhj -nMR -nNm -aLi -aLi -jtC -vgR -tOB -ndT -chY -cha -lpk -oXT -soN -jmm -oXT -uSy -oXT -hTG +dCE +oOr +tuN +row +abD +eip +eip +cLo +goB +dmc +iHW +lYH +oCb +cNG +xzJ +naC +jIU +xzJ +oTt +xzJ +msc mOJ mOJ mOJ @@ -105581,89 +91080,89 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY ndl -luI -jqx -eqf -rOu -mOZ -fDV -vsT -eiB +mRy +wcu +osZ +irY +dLU +epj +wde +eAW pRc pRc -vyU +lzy pRc pRc pRc -vrP +aPO pRc pRc -crH -tGl -crH +mvf +gkQ +mvf rkk -xIe +abR qOc ewy -uaC -uaC -uaC -uaC +faK +faK +faK +faK xTz -sPC +tKv feZ -llu +tLs dGT -kWf -kWf -kWf -kWf +jdC +jdC +jdC +jdC ewy qOc -xIe +abR rkk -tjm -kuq -tjm +qiu +neT +qiu mua mua -kts +slV mua mua mua -ouD +pOc mua mua -nKp +oeA hMG dJy -sgk +njM hwZ -kJG -teV -idA +dYH +sfw +mmI ndl -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -105695,14 +91194,14 @@ qeX qeX qeX qeX -hsJ -mth -lcc -mth -mth +mpj +noz +pmV +noz +noz qat qat -vyh +eNU qat qat qat @@ -105713,20 +91212,20 @@ qat qat qat qat -edT -nLe -hmB -hmB -fhj +xpj +oOr +mJA +mJA +tuN pGK mdk ciA ciA ciA ukr -xuL -lym -tCK +wHg +jii +ePo mdk ciA ciA @@ -105735,27 +91234,27 @@ ukr pGK pGK pGK -qdP -nLe -fhj -cha -nCf -aLi -aLi -fBw -cha -cha -cha -cha -cha -lpk -fgD -lpk -uSy -oXT -bWV -oXT -hTG +jNb +oOr +tuN +oCb +pel +eip +eip +oDh +oCb +oCb +oCb +oCb +oCb +cNG +hIi +cNG +oTt +xzJ +sBU +xzJ +msc qeX qeX qeX @@ -105783,89 +91282,89 @@ qeX qeX qeX qeX -tag -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -euA -iPX -rOu -iRN -fXy -aRx -eqf +ihr +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +hbx +upm +irY +pDF +uYY +wSu +osZ pRc -qgP -aPP -rAw +sjx +aDR +gVc fuF -cnU -vfY -tiZ +isz +szH +pMz pRc -geS -tlw -crH -lkB -xIe +imP +mLg +mvf +rkk +abR qOc ewy -uaC -uaC -uaC -uaC +faK +faK +faK +faK xTz -vyl -oCp -wZY +dtn +eYu +pLB dGT -kWf -kWf -kWf -kWf +jdC +jdC +jdC +jdC ewy qOc -xIe +abR rkk -tjm -bqp -qlJ +qiu +uit +aIB mua -hEB -lFA -sOl -oVY -oja -glT -aKe +jJO +eGH +fpr +dhZ +kaH +anQ +tDW mua -idd +ros kAm lgZ -sgk +njM hwZ -sXA -lBK -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -tEF +mvd +nXh +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +wDM qeX qeX qeX @@ -105889,83 +91388,83 @@ qeX qeX mOJ mOJ -fDe -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -hsJ -yhL -uPJ -uPJ -vqu +wAV +wtY +wtY +wtY +wtY +wtY +wtY +wtY +mpj +unP +lNw +lNw +hyc qat hGa xaR hGa uac dnE -pBw -vnY +soW +aoL rqs -vnY -pBw +aoL +soW rqs vJy -qdP -uyu -guQ -wql -fhj +jNb +aCI +siJ +azF +tuN pGK iqI -dLg -nzA -kDx +fcD +crg +sxa lli -fJP -uuj -xLk +nnn +ugB +ljy iqI -xdc -nzA -jUX +tOV +crg +sVt lli pGK -tfX -mUz -cAJ -nLe -qhN -cha -swi -aLi -aLi -pEE -cha -dae -plU -wHQ -cha -uPQ -oXT -lck -shH -oXT -lpk -lVz -hTG -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgJ -wgf +eZP +mlo +mgG +oOr +cJS +oCb +tjz +eip +eip +jRN +oCb +jjc +nDJ +dJN +oCb +ujC +xzJ +fIo +tek +xzJ +cNG +hiy +msc +wtY +wtY +wtY +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -105985,89 +91484,89 @@ qeX qeX qeX qeX -luI -luI -osW -euA -euA -vOs -pFY -khY -tTW -euA -vOs -euA -euA -euA -rOu -nJd -oEn -oEn -euA +mRy +mRy +teZ +hbx +hbx +aYa +vCN +sWu +ceo +hbx +aYa +hbx +hbx +hbx +irY +wBp +mJg +mJg +hbx pRc -iIS -aEJ -cLT +dHE +dSF +ioB uKG -gtm -nSJ -eNp +cxk +yeo +oMZ pRc -crH -tGl -crH +mvf +gkQ +mvf rkk -xIe -xIe +abR +abR ewy qOc qOc mEa qOc rKQ -ffg -sCC -gQm +bwI +eVy +oxv nlh qOc mEa qOc qOc ewy -xIe -xIe +abR +abR rkk -tjm -kuq -tjm +qiu +neT +qiu mua -fAZ -wQK -fup +xLI +xQQ +ePC uTT -sGD -lXp -eeX +ocd +oMC +bWU mua -mQj +swu hMG dJy -sgk +njM hwZ -kJG -teV -teV -fBH -teV -kJG -kJG -kJG -geN -kJG -teV -teV -idA -idA +dYH +sfw +sfw +tco +sfw +dYH +dYH +dYH +pLY +dYH +sfw +sfw +mmI +mmI qeX qeX qeX @@ -106091,7 +91590,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -106099,67 +91598,67 @@ ndl ndl ndl ndl -hsJ -mmz -rdS -uPJ -rdS +mpj +rOA +dib +lNw +dib qat jUc xaR xaR htb jEE -vnY -vnY +aoL +aoL dtz -ihK -ihK +exo +exo fQV vJy -jXr -waE -qrL -nLe -qhN +aMz +bST +vvx +oOr +cJS pGK iqI -mrB -mDY +bPz +fSb oQS -tRh -aMe -cxl -mkn -jrS +uVy +pDQ +aLD +nDO +cvP umW -mDY -uVZ +fSb +mIC lli pGK -qdP -rPg -fSo -nxx -fhj -nMR -pCx -aLi -aLi -fBw -qCo -cxC -cxC -cxC -cha -lVz -oXT -oXT -oXT -oXT -vWe -lVz -hTG +jNb +wrF +nAw +sYM +tuN +row +eyW +eip +eip +oDh +eBg +uLl +uLl +uLl +oCb +hiy +xzJ +xzJ +xzJ +xzJ +rMB +hiy +msc ndl ndl ndl @@ -106167,7 +91666,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -106187,89 +91686,89 @@ qeX qeX qeX qeX -luI -upX -eqf -eqf -eqf -euA -eqf -eqf -eqf -eqf -eqf -euA -eqf -uUy -rOu -rOu -eDY -gkX -iPX +mRy +uBe +osZ +osZ +osZ +hbx +osZ +osZ +osZ +osZ +osZ +hbx +osZ +byo +irY +irY +jZj +vbf +upm pRc -mEX +tcX ugs qqM uhu bup jYm -onX +rUD pRc -crH -iAN -aac +mvf +kTz +riR uxe uxe -nAS +qeM ewy -qoB -qoB +pXS +pXS ewy -aYR -aYR -nhH -hOc +oYI +oYI +wQM +kiy oxR -pBU -pBU +ccp +ccp ewy -vxH -vxH +hEn +hEn ewy -mcm +pDD uxe uxe -dzt -qmr -tjm +ncQ +imw +qiu mua -sBc +nKg mvC hGq fNU bkl xSl -xhQ +crq mua -xVG +lnU pRe iJc -xYK +mVW hwZ -teV -kJG -lkU -bQe -mhG -bQe -ppa -bQe -ewb -ese -mhG -kip -teV -idA +sfw +dYH +aes +kwd +adG +kwd +tSK +kwd +kEW +uDF +adG +pvd +sfw +mmI qeX qeX qeX @@ -106293,7 +91792,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -106301,67 +91800,67 @@ ndl ndl ndl ndl -hsJ -soa -rdS -rdS -rdS +mpj +hoy +dib +dib +dib qat kuZ xaR xaR vzU jEE -vnY -vnY +aoL +aoL rqs -vnY -vnY +aoL +aoL njc qat qat qat -oGN -lOD -fhj +aTt +abt +tuN pGK iqI -pwj -xHW +cFM +fWV ctV lli -sMQ -sPS -xLk +klv +vze +ljy iqI -wOz -xHW -uXB +rgB +fWV +wlQ lli pGK -jcU -rKN -sOJ -sOJ -fhj -nMR -tWf -aLi -aLi -fBw -cha -xcS -ogH -glz -cha -uSy -oXT -aip -lpk -oXT -lpk -pMP -hTG +nch +vGu +kGp +kGp +tuN +row +maa +eip +eip +oDh +oCb +nVM +iXK +gaJ +oCb +oTt +xzJ +qnh +cNG +xzJ +cNG +oFC +msc ndl ndl ndl @@ -106369,7 +91868,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -106389,89 +91888,89 @@ qeX qeX qeX qeX -luI -euA -eqf -rOu -rOu -rOu -rOu -rOu -rOu -osW -upX -euA -ehv -rOu -rOu -nOJ -eqf -nig -euA +mRy +hbx +osZ +irY +irY +irY +irY +irY +irY +teZ +uBe +hbx +hLa +irY +irY +hPB +osZ +rYg +hbx pRc -xZU -cDK +xtu +xpM jgX bZw fwG bFx -xas +qia pRc -qHo -jJR -qHo -qHo +pxz +nCz +pxz +pxz uxe -xIe +abR ewy -qoB -qoB +pXS +pXS ewy -aYR -aYR -ioQ -vnu -lES -pBU -pBU +oYI +oYI +mWT +oKi +sUk +ccp +ccp ewy -vxH -vxH +hEn +hEn ewy -xIe +abR uxe -iEs -iEs -ubx -iEs +izC +izC +csU +izC mua -eCr -wmo -rhw +qvv +ubN +eia ueP -wfP -ano -eeX +iAK +dTP +bWU mua -rml +sHx rJC dJy -qCq +kNe hwZ -apV -jQx -iZK -apV -jQx -uNa -uNa -btv -uNa -uNa -uBQ -iZK -lBK -idA +unV +pRA +oTY +unV +pRA +cmK +cmK +ljh +cmK +cmK +giP +oTY +nXh +mmI qeX qeX qeX @@ -106495,7 +91994,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -106503,67 +92002,67 @@ ndl ndl ndl ndl -hsJ -mIN -rdS -uPJ -rdS +mpj +hQE +dib +lNw +dib qat -xFp +aTF xaR xaR tNG jEE -vnY -vnY +aoL +aoL rqs -vnY -vnY +aoL +aoL twK qVf qVf -xRb -kna -whH -fhj +ycy +bFE +lEp +tuN pGK ixd fcE eoi rmh qiN -sJb -sPS -aQx +rjQ +vze +oZD ixd ifE ovv fcE qiN pGK -hcG -nLe -xsN -waE -jbs -nMR -ecf -cxC -cxC -fBw -cha -cha -cha -cha -cha -lVz -qXZ -lVz -uSy -oXT -svi -lVz -hTG +dAY +oOr +nBd +bST +ako +row +cRL +uLl +uLl +oDh +oCb +oCb +oCb +oCb +oCb +hiy +fbO +hiy +oTt +xzJ +tdi +hiy +msc ndl ndl ndl @@ -106571,7 +92070,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -106591,89 +92090,89 @@ qeX qeX qeX qeX -luI -tPA -euA -rOu -nrs -nrs -nrs -nrs -bpD -bpD -bpD -dTt -bpD -bpD -eeY -eqf -eqf -rrM -dYF +mRy +aGY +hbx +irY +elJ +elJ +elJ +elJ +pIh +pIh +pIh +mdP +pIh +pIh +pBG +osZ +osZ +nPi +reT pRc -xKL +tOv nXE -mub +skC bZw xqV gHI -qVP +cvw pRc -crH -iAN -crH -crH +mvf +kTz +mvf +mvf rkk -xIe +abR bwB -amy -amy +kqu +kqu iBJ -xCF -xCF -csO +pIt +pIt +xrF iBJ -gxz -gxz -gxz +xLs +xLs +xLs iBJ -exd -exd +kWC +kWC fNQ -xIe +abR rkk -tjm -tjm -qmr -tjm +qiu +qiu +imw +qiu mua -oKT -vEG -tAb +ieq +jFv +wVH tfJ -ugA -lqF -eeX +oPJ +fnj +bWU mua -bFO -iIQ -bjv -xle +tlg +erF +aBe +cCp hwZ -vcd -vcd -qOu -vcd -vcd -uNa -umo -uSL -tck -xjT -kUe -cYA -bSo -idA +cWI +cWI +nzZ +cWI +cWI +cmK +pgf +iIs +rsw +dit +bDB +ltS +wHm +mmI qeX qeX qeX @@ -106697,7 +92196,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -106705,67 +92204,67 @@ ndl ndl ndl ndl -hsJ -sKS -uPJ -uPJ -uPJ +mpj +mRQ +lNw +lNw +lNw qat eym xaR eym eHm xfc -vnY -vnY +aoL +aoL uRe -ihK -ihK +exo +exo dli rqs rqs -gPV -ulJ -lOD -fhj +fUk +hxf +abt +tuN pGK pGK pGK -lLD -jyt -bWb -wAl -sVo -xVQ -ekl -qGD -yaq +miz +dFP +noY +cQh +thg +wbJ +chp +jOW +eIK pGK pGK pGK -pFn -nLe -fhj -oXT -oXT -cha -vZV -cxC -cxC -fBw -xZF -vTH -juP -jMT -cha -uPQ -oXT -qCh -lVz -qXZ -lVz -oXT -hTG +xwY +oOr +tuN +xzJ +xzJ +oCb +nXP +uLl +uLl +oDh +gBR +uHe +uDt +ptu +oCb +ujC +xzJ +kTs +hiy +fbO +hiy +xzJ +msc ndl ndl ndl @@ -106773,7 +92272,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -106793,66 +92292,66 @@ qeX qeX qeX qeX -luI -eqf -eqf -rOu -nrs -nrs -nrs -nrs -bpD -lNb -cuf -qHo -sTh -bpD -bpD -bpD -bpD -bpD -bpD +mRy +osZ +osZ +irY +elJ +elJ +elJ +elJ +pIh +rPP +lvi +pxz +oFh +pIh +pIh +pIh +pIh +pIh +pIh pRc pRc pRc pRc -oNB +cpQ pRc pRc pRc pRc -ryl -iAN -gEZ -crH +kVx +kTz +qfb +mvf rkk -xIe +abR qOc -qoB -qoB +pXS +pXS qOc -aYR -aYR -aYR +oYI +oYI +oYI qOc -pBU -pBU -pBU +ccp +ccp +ccp qOc -vxH -vxH +hEn +hEn qOc -xIe +abR rkk -tjm -uDx -qmr -guH +qiu +sai +imw +efx mua mua mua mua -cAx +bLb mua mua mua @@ -106862,20 +92361,20 @@ hwZ hwZ hwZ hwZ -vcd -lRx -oTz -xsY -ljn -uNa -jeF -kJG -ocQ -uNa -ljm -xxF -kJG -idA +cWI +uwP +fel +rex +bhi +cmK +jZe +dYH +khF +cmK +mrp +lGV +dYH +mmI qeX qeX qeX @@ -106899,7 +92398,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -106907,11 +92406,11 @@ ndl ndl ndl ndl -hsJ -whY -vcm -mth -lcc +mpj +bto +lVv +noz +pmV qat qat qat @@ -106927,47 +92426,47 @@ rqs rqs nSs qat -qdP -ygu -fhj +jNb +cum +tuN pGK pGK pGK pGK -jxD -arx -iTg -ekm -tNn -pZC -kRt +mMi +raA +kEC +rst +cxM +vfG +vet pGK pGK pGK pGK -ptg -ygu -fhj -oXT -lVz -cha -ujs -cxC -cxC -gOi -cha -qau -tkZ -bIg -cha -vWe -oXT -mQE -lpk -oXT -uSy -oXT -hTG +dmY +cum +tuN +xzJ +hiy +oCb +psQ +uLl +uLl +fBB +oCb +ieO +lBx +fQP +oCb +rMB +xzJ +nsV +cNG +xzJ +oTt +xzJ +msc ndl ndl ndl @@ -106975,7 +92474,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -106995,40 +92494,40 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -rOu -rOu -rOu -rOu -bpD -uEd -lnL -dmr -rur -rbH -gQw -rbH -amF -bKD -rbH -rur -xUE -jBz -xUE -xUE -lnM -xUE -rur -crH -crH -iAN -gEZ -crH +mRy +osZ +hbx +irY +irY +irY +irY +irY +pIh +lkp +lTK +kfc +tWY +tGD +xYb +tGD +iVM +bxZ +tGD +tWY +tex +alD +tex +tex +smY +tex +tWY +mvf +mvf +kTz +qfb +mvf rkk -xIe +abR qOc qOc qOc @@ -107044,40 +92543,40 @@ qOc qOc qOc qOc -xIe +abR rkk -tjm -uDx -qmr -tjm -tjm -cBf -uxw -gCf -tlp -tlp -tlp -tlp -cBf -rLV -rLV -ads -pWO -ylL -gyy -hPO -vdr -hPO -gou -uNa -uNa -uNa -uNa -uNa -uNa -iZK -kJG -idA +qiu +sai +imw +qiu +qiu +lQL +hdE +eXr +ccR +ccR +ccR +ccR +lQL +fju +fju +qLy +omo +aWj +wIr +seQ +aGE +seQ +ntj +cmK +cmK +cmK +cmK +cmK +cmK +oTY +dYH +mmI qeX qeX qeX @@ -107101,7 +92600,7 @@ qeX qeX mOJ mOJ -tag +ihr ndl ndl ndl @@ -107109,15 +92608,15 @@ ndl ndl ndl ndl -hsJ -mth -mth -mth -otU -uPJ -whY -whY -whY +mpj +noz +noz +noz +kJx +lNw +bto +bto +bto qat qat qat @@ -107129,47 +92628,47 @@ qat qat qat qat -pFn -ygu -fhj +xwY +cum +tuN pIF -beo +kOD tfc pGK -cjF -nus -qsZ -obc -fte -nCY -pQg +wTX +gxA +kJf +cdm +cei +yel +hvP pGK -ran -pXB -tGM -gbD -rKN -fhj -oXT -lVz -cha -cha -cha -mFO -cha -cha -cha -cha -cha -cha -lpk -oXT -oXT -oXT -oXT -lVz -oXT -hTG +dPp +vtK +kiW +grh +vGu +tuN +xzJ +hiy +oCb +oCb +oCb +cRu +oCb +oCb +oCb +oCb +oCb +oCb +cNG +xzJ +xzJ +xzJ +xzJ +hiy +xzJ +msc ndl ndl ndl @@ -107177,7 +92676,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -107197,40 +92696,40 @@ qeX qeX qeX qeX -luI -pfY -euA -rOu -vWF -vWF -vWF -ssV -bpD -gCo -fLx -nUY -fvv -tTN -tTN -tTN -tTN -tTN -tTN -lyS -tTN -tTN -tTN -tTN -tTN -tTN -lfL -uor -tTN -bLm -gEZ -crH +mRy +tdp +hbx +irY +uvU +uvU +uvU +wac +pIh +knr +enz +giS +eRC +btw +btw +btw +btw +btw +btw +cTQ +btw +btw +btw +btw +btw +btw +kVr +fPj +btw +dTL +qfb +mvf rkk -xIe +abR qOc qOc qOc @@ -107246,40 +92745,40 @@ qOc qOc qOc qOc -xIe +abR rkk -tjm -uDx -mad -tgK -qlJ -dXu -tgK -tgK -tgK -tgK -tgK -tgK -ifG -tgK -tgK -tgK -tgK -tgK -iNR -qlJ -uCz -uDx -cfg -vcd -qQp -qQp -qQp -idn -uNa -oCP -tqw -idA +qiu +sai +rpI +cLu +aIB +kTA +cLu +cLu +cLu +cLu +cLu +cLu +fHt +cLu +cLu +cLu +cLu +cLu +fZN +aIB +lQA +sai +lDC +cWI +hBA +hBA +hBA +jfs +cmK +qYO +diR +mmI qeX qeX qeX @@ -107301,87 +92800,87 @@ qeX qeX qeX qeX -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -uPJ -rdS -rdS -uPJ -rdS -rdS -mlg -uPJ -rdS -rdS -rdS -rdS -uPJ -vqu -uPJ -rdS -rdS -xbh -ulJ -ygu -ulJ -aqc -beo +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +lNw +dib +dib +lNw +dib +dib +ggx +lNw +dib +dib +dib +dib +lNw +hyc +lNw +dib +dib +fru +hxf +cum +hxf +rnM +kOD cKx pGK -gDl -arx -uBv -pZN -ydT -pZC -kqq +eQz +raA +iAw +xbO +iza +vfG +nHs pGK -qcM -pXB -ehT -ulJ -rKN -ulJ -fgD -lpk -lpk -lVz -owb -rUv -lpk -lpk -lVz -owb -lVz -lpk -lpk -lpk -vhs -bXA -lpk -lVz -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +pTI +vtK +fXB +hxf +vGu +hxf +hIi +cNG +cNG +hiy +wlG +fcA +cNG +cNG +hiy +wlG +hiy +cNG +cNG +cNG +fnb +guo +cNG +hiy +msc +msc +msc +msc +msc +msc +msc +msc +msc +msc +msc +msc qeX qeX qeX @@ -107399,89 +92898,89 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -vWF -vWF -vWF -vWF -bpD -roA -eVZ -wGl -rur -fak -fak -hyV -lwl -xsp -hbc -rur -dpo -woA -fYS -bBI -vSR -esD -rur -crH -gEZ -jJR -gEZ -aac +mRy +osZ +hbx +irY +uvU +uvU +uvU +uvU +pIh +eez +toF +wSR +tWY +asz +asz +gTy +iyw +xbr +juZ +tWY +oZV +fjf +iuL +luX +mOT +kAT +tWY +mvf +qfb +nCz +qfb +riR uxe -nAS -uHg -eMS -eMS -eMS -eMS -aOC -qaY -dvx -cJs -avf -lUI -lUI -lUI -lUI -oGc -mcm +qeM +ryi +eQC +eQC +eQC +eQC +kjK +ubq +sFj +ogr +qvt +iVf +iVf +iVf +iVf +pis +pDD uxe -dzt -uDx -ubx -uDx -tjm -cBf -mIV -mIV -uFp -qoL -kPm -mbX -cBf -oze -npv -wYN -eLU -qYZ -gyy -ijV -jCy -tgK -wbV -vcd -qQp -qQp -qQp -qQp -uNa -iZK -gkA -idA +ncQ +sai +csU +sai +qiu +lQL +wnM +wnM +ndv +lKC +vXL +rHU +lQL +nLI +xDd +ref +uva +nae +wIr +afa +bvv +cLu +rfo +cWI +hBA +hBA +hBA +hBA +cmK +oTY +luB +mmI qeX qeX qeX @@ -107503,87 +93002,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -gJH -rdS -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth -mth +mpj +bSh +bSh +woU +tMv +tMv +tMv +tMv +tMv +tMv +tMv +mpj +xNi +dib +noz +noz +noz +noz +noz +noz +noz +noz +noz +noz +noz +noz gmU gmU gmU gmU -fBj -ygu -akK +eyB +cum +lLL pGK pGK pGK pGK -xic -pGT -tSj -rLC -bqP -wve -qAO +eGC +vLN +atg +jQq +sOr +qPS +hpQ pGK pGK pGK pGK -qLe -rKN -eMo -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lVz -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +mzx +vGu +svQ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +cNG +hiy +msc +lBW +lBW +lBW +lBW +lBW +lBW +lBW +tqo +rUE +rUE +msc qeX qeX qeX @@ -107601,89 +93100,89 @@ qeX qeX qeX qeX -luI -eqf -euA -rOu -vWF -vWF -vWF -vWF -qEc -crH -uwU -krx +mRy +osZ +hbx +irY +uvU +uvU +uvU +uvU +uXe +mvf +iMG +ekS xak xak xak -aDk -eav +odU +jRM xak xak xak xak xak -aDk -gjU +odU +lNG xak xak xak -crH -gEZ -jJR -gEZ -crH +mvf +qfb +nCz +qfb +mvf rkk -xIe -rgF -qhY -sYA -bAl -qhY -tsP -bNa +abR +vby +wHx +wUJ +njW +wHx +ohq +eHI rMM -gzC -wnF -ncV -doM -hyr -kQH -edF -xIe +bVx +tBT +qaT +lZK +vqX +xGO +nLE +abR rkk -tjm -uDx -ubx -uDx -tjm +qiu +sai +csU +sai +qiu pga pga pga -eZj -hkK +aLe +dHc pga pga pga pga pga -eZj -qvm +aLe +ftH pga pga pga -aAK -htz -tjm -mQT -qQp -qQp -qQp -qQp -uNa -iSn -oXv -idA +sFG +rXU +qiu +gtQ +hBA +hBA +hBA +hBA +cmK +bJl +smU +mmI qeX qeX qeX @@ -107705,87 +93204,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -tGk -rdS -mth -hVV -hVV -hVV -hVV -sev -hVV -hVV -hVV -hVV -sev +mpj +bSh +bSh +woU +tMv +tMv +tMv +tMv +tMv +tMv +tMv +mpj +iMC +dib +noz +nlH +nlH +nlH +nlH +wJB +nlH +nlH +nlH +nlH +wJB gmU -yjN -qdO -cpu +lTh +sTs +ojg gmU -qdP -ygu -fhj +jNb +cum +tuN pGK mdk ciA ciA hSH -bqz +bIP rvi lkm lHO -oRw +kzV tXV ciA ciA ukr pGK -qdP -rKN -fhj -oXT -nAK -uoT -nAK -oXT -nPR -nPR -nPR -nPR -nQd -nPR -nPR -nPR -nPR -nQd -oXT -lpk -dNN -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +jNb +vGu +tuN +xzJ +axS +qXk +axS +xzJ +klr +klr +klr +klr +kxd +klr +klr +klr +klr +kxd +xzJ +cNG +fyM +msc +lBW +lBW +lBW +lBW +lBW +lBW +lBW +tqo +rUE +rUE +msc qeX qeX qeX @@ -107799,97 +93298,97 @@ qeX qeX vwY qeX -fDe -wgJ -wgJ -wgJ -luI -euA -eqf -rOu -vWF -vWF -vWF -vWF -bpD -ogk -gEZ -etI +wAV +wtY +wtY +wtY +mRy +hbx +osZ +irY +uvU +uvU +uvU +uvU +pIh +hUZ +qfb +lWw xak -juy -iEK -qcJ +tES +lur +qhe kyJ xak cho gXg cho xak -qFx -eBl -iMY -juy +kNg +yfK +tYT +tES xak -oXt -gEZ -jJR -gEZ -crH +wYR +qfb +nCz +qfb +mvf rkk -xIe -rgF -qhY -bAl -qhY -jYV -tsP -bNa +abR +vby +wHx +njW +wHx +cPm +ohq +eHI rMM -gzC -wnF -ncV -utM -ncV -gWf -edF -xIe +bVx +tBT +qaT +ume +qaT +pEr +nLE +abR rkk -tjm -uDx -ubx -uDx -tZJ +qiu +sai +csU +sai +xdW pga -fav -hzo -aAB +fci +gto +sFm pZG pga xOR pUm xOR pga -eit -ajS -nIg -fav +gIT +ohF +oMx +fci pga -gXe -htz -iQW -vcd -qQp -qQp -qQp -qQp -uNa -iSn -rEm -idA -wgJ -wgJ -wgJ -wgf +sgm +rXU +uVI +cWI +hBA +hBA +hBA +hBA +cmK +bJl +biT +mmI +wtY +wtY +wtY +bhQ mOJ qeX vwY @@ -107907,87 +93406,87 @@ qeX qeX qeX qeX -hsJ -jpx -jpx -anL -gZt -gZt -gZt -gZt -gZt -gZt -gZt -hsJ -pWl -rdS -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mpj +bSh +bSh +woU +tMv +tMv +tMv +tMv +tMv +tMv +tMv +mpj +ydk +dib +noz +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH gmU -qDx -hWm -eKE -lww -ulJ -lOD -fhj +dIf +lDB +egx +cQQ +hxf +abt +tuN pGK iqI -dLg -tTO -tTO -jiv +fcD +iMk +iMk +fiL vDu yaa -dLg -jiv -tTO -tTO +fcD +fiL +iMk +iMk osV lli pGK -qdP -nLe -fhj -vWa -lpk -lpk -lpk -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -lpk -jlc -hTG -cVN -cVN -cVN -cVN -cVN -cVN -cVN -kCy -tzk -tzk -hTG +jNb +oOr +tuN +tjg +cNG +cNG +cNG +xzJ +klr +klr +klr +klr +klr +klr +klr +klr +klr +klr +xzJ +cNG +sku +msc +lBW +lBW +lBW +lBW +lBW +lBW +lBW +tqo +rUE +rUE +msc qeX qeX qeX @@ -108001,97 +93500,97 @@ qeX qeX vwY qeX -tag +ihr ndl ndl ndl -luI -glX -hPK -rOu -vWF -vWF -vWF -vWF -bpD -qZe -gEZ -fjz +mRy +xSg +wXq +irY +uvU +uvU +uvU +uvU +pIh +jcd +qfb +dTY xak -phS -qoj -qcJ +rkK +wcV +qhe qDs qDs -kHp -kHp -kHp +axv +axv +axv kRW qDs -eBl -qaF -qpJ +yfK +bCQ +dLQ xak -oKO -gEZ -jJR -gEZ -crH +uoG +qfb +nCz +qfb +mvf rkk -xIe -ezR -pxp -pxp -pxp -pxp -gHq -qaY -gdv -cJs -mnQ -pBU -pBU -pBU -pBU -gGv -xIe +abR +fJJ +jXB +jXB +jXB +jXB +aqK +ubq +bQX +ogr +gKE +ccp +ccp +ccp +ccp +bJI +abR rkk -tjm -uDx -ubx -uDx -sgL +qiu +sai +csU +sai +rLg pga -lEP -ofl -aAB +oUb +upG +sFm orW orW -mLS -mLS -mLS +fAz +fAz +fAz dLt orW -ajS -wZb -eBT +ohF +rFv +mSf pga -pep -htz -nCW -vcd -qQp -qQp -qQp -qQp -uNa -iZK -kJG -idA +vau +rXU +pgS +cWI +hBA +hBA +hBA +hBA +cmK +oTY +dYH +mmI ndl ndl ndl -tEF +wDM qeX qeX vwY @@ -108109,87 +93608,87 @@ qeX qeX qeX qeX -hsJ +mpj nxo gpg gpg -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -bRw -wat -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +ebJ +gdT +noz +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH gmU -ocv -ecb +tiu +ofL ybR -vUe -ulJ -lOD -fhj +uRf +hxf +abt +tuN pGK iqI -eoC -jlj -hip -mXK -ygX +qOW +dob +sNf +owR +fmw yaa -eoC -jsK -hip -seZ -ygX +qOW +utK +sNf +ugO +fmw lli pGK -qdP -nLe -fhj -vWa -huC -rfV -wwj -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -uqj -lVk -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +jNb +oOr +tuN +tjg +aep +jCN +san +xzJ +klr +klr +klr +klr +klr +klr +klr +klr +klr +klr +xzJ +iVd +gDi +msc +msc +msc +msc +msc +msc +msc +msc nJH nJH iCq -hTG +msc qeX qeX qeX @@ -108203,44 +93702,44 @@ qeX qeX vwY qeX -tag +ihr ndl ndl ndl -luI -euA -dAE -rOu -rOu -rOu -rOu -rOu -bpD -bcB -bcB -lhQ +mRy +hbx +dcB +irY +irY +irY +irY +irY +pIh +wDI +wDI +xnW xak -juy -ylU +tES +dUY nBH nBH -nPV -crv -ktT -sYm -nPV +tOO +leK +eQa +jNG +tOO nBH nBH -rvc -juy +dkX +tES xak -vgC -gEZ -jJR -gEZ -crH +dSm +qfb +nCz +qfb +mvf rkk -xIe +abR qOc qOc qOc @@ -108256,44 +93755,44 @@ qOc qOc qOc qOc -xIe +abR rkk -tjm -uDx -ubx -uDx -utl +qiu +sai +csU +sai +pdA pga -fav -pkN +fci +ouB gAb gAb -qkS -nNM -fjP -uem -qkS +eNj +uZm +weT +jss +eNj gAb gAb -bKo -fav +bkz +fci pga -fvT -jot -wCu -vcd -uNa -uNa -uNa -uNa -uNa -iZK -wer -idA +xUD +hpR +dzz +cWI +cmK +cmK +cmK +cmK +cmK +oTY +cVn +mmI ndl ndl ndl -tEF +wDM qeX qeX vwY @@ -108311,87 +93810,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -oWx -oWx -oWx -oWx -vgD -cBO -wEF -mth -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV -hVV +mpj +njC +njC +uly +axc +axc +axc +axc +axc +axc +axc +pVF +hDU +hLr +noz +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH +nlH gmU -ism -ecb +prB +ofL ybR gmU -hZC -hNH -iku +etf +uoI +aRu pGK iqI -eEV -jCW -mDY -aDF -ygX +bRV +gGJ +fSb +ifd +fmw yaa -qBV -vLH -mDY -jCW -lIu +ibk +qbE +fSb +gGJ +tZc lli pGK -eFO -xOj -jbs -vWa -rax -lpk -mTj -oXT -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -nPR -oXT -apr -cBO -uXN -uzN -uzN -uzN -uzN -uzN -uzN -uzN -eiE -cIw -cIw -hTG +guy +fpu +ako +tjg +qUP +cNG +fEP +xzJ +klr +klr +klr +klr +klr +klr +klr +klr +klr +klr +xzJ +sGq +hDU +qBE +lhC +lhC +lhC +lhC +lhC +lhC +lhC +jHr +jmG +jmG +msc qeX qeX qeX @@ -108405,26 +93904,26 @@ qeX qeX vwY qeX -tag +ihr ndl ndl ndl -luI -tPA -eqf -rOu -vWF -vWF -vWF -ssV -bpD -hvf -sEY -rrd +mRy +aGY +osZ +irY +uvU +uvU +uvU +wac +pIh +lMQ +eQt +qxQ xak -juy -qoj -qcJ +tES +wcV +qhe qDs qDs mKp @@ -108432,43 +93931,43 @@ bmt fHZ qDs qDs -eBl -qaF -juy +yfK +bCQ +tES xak -wBz -gEZ -jJR -gEZ -aac +wBu +qfb +nCz +qfb +riR uxe -nAS -pTK -gRP -gRP -gRP -gRP -dQd -qaY -dik -cJs -hHV -rPK -rPK -rPK -rPK -puU -mcm +qeM +fBh +sxl +sxl +sxl +sxl +ssE +ubq +yjd +ogr +dVW +bcI +bcI +bcI +bcI +rBQ +pDD uxe -dzt -uDx -ubx -uDx -guH +ncQ +sai +csU +sai +efx pga -fav -ofl -aAB +fci +upG +sFm orW mgV ktI @@ -108476,26 +93975,26 @@ mWU tEZ orW orW -ajS -wZb -fav +ohF +rFv +fci pga -inY -uCF -mee -vcd -qQp -qQp -qQp -idn -uNa -iZK -kJG -idA +gvp +uWZ +qmx +cWI +hBA +hBA +hBA +jfs +cmK +oTY +dYH +mmI ndl ndl ndl -tEF +wDM qeX qeX vwY @@ -108513,87 +94012,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -oWx -oWx -oWx -oWx -hBC -kyT -wEF -mth -mth -mth -fje -mth -mth -mth -mth -nrA -mth -mth +mpj +njC +njC +uly +axc +axc +axc +axc +axc +axc +axc +ecI +vXx +hLr +noz +noz +noz +erO +noz +noz +noz +noz +myq +noz +noz gmU gmU -oTT -iXU +qiO +fGo gmU -gXG -uyC -gXG +pdC +rQN +pdC pGK iqI -eoC -kQk -hip -vQZ -ygX +qOW +kYl +sNf +qcO +fmw yaa -eoC -kQk -hip -vQZ -ygX +qOW +kYl +sNf +qcO +fmw lli pGK -gXG -uyC -gXG -oXT -oXT -vyY -oXT -oXT -oXT -oXT -kKE -oXT -oXT -oXT -oXT -tRu -oXT -oXT -oXT -iLF -kyT -dOf -uzN -uzN -uzN -uzN -uzN -uzN -uzN -eiE -cIw -cIw -hTG +pdC +rQN +pdC +xzJ +xzJ +rvk +xzJ +xzJ +xzJ +xzJ +dBI +xzJ +xzJ +xzJ +xzJ +jlR +xzJ +xzJ +xzJ +bdm +vXx +lFm +lhC +lhC +lhC +lhC +lhC +lhC +lhC +jHr +jmG +jmG +msc qeX qeX qeX @@ -108607,26 +94106,26 @@ qeX qeX vwY qeX -tag +ihr ndl ndl ndl -luI -euA -eqf -rOu -vWF -vWF -vWF -vWF -bpD -eGn -gEZ -wGQ +mRy +hbx +osZ +irY +uvU +uvU +uvU +uvU +pIh +sYC +qfb +aUZ xak -phS -ylU -qcJ +rkK +dUY +qhe qDs qDs qDs @@ -108634,43 +94133,43 @@ oZg oZg qDs qDs -eBl -nhC -qpJ +yfK +rlD +dLQ xak -crH -gEZ -jJR -gEZ -crH -ftt -xIe -xWX -gvf -gvf -bGZ -gvf -xId -bNa +mvf +qfb +nCz +qfb +mvf +eUC +abR +xrq +vbj +vbj +iDY +vbj +nZm +eHI rMM -gzC -fsP -aDc -xAq -ozY -btW -aOp -xIe -ftt -tjm -uDx -qPD -uDx -tjm +bVx +qJR +hLd +oUG +cDR +cro +oVA +abR +eUC +qiu +sai +pQA +sai +qiu pga -lEP -pkN -aAB +oUb +ouB +sFm orW orW orW @@ -108678,26 +94177,26 @@ mKa mKa orW orW -ajS -bgn -eBT +ohF +rNh +mSf pga -fTN -htz -bPx -vcd -qQp -qQp -qQp -qQp -uNa -iSn -teV -idA +sfI +rXU +pMi +cWI +hBA +hBA +hBA +hBA +cmK +bJl +sfw +mmI ndl ndl ndl -tEF +wDM qeX qeX vwY @@ -108715,87 +94214,87 @@ qeX qeX qeX qeX -hsJ -cJQ -cJQ -iHy -oWx -oWx -oWx -okE -oWx -oWx -oWx -oly -qaJ -afT -eul -sNJ -hWN -mvY -bxk -jGj -xMI -vQW -quP -gtC -fvQ -svj -aPX -ulJ -ulJ -kOn -joH -cjD -usZ +mpj +njC +njC +uly +axc +axc +axc +uBy +axc +axc +axc +lrC +fYc +yhX +muO +gMo +pnR +qRm +pdF +uFO +wfD +dWT +aDT +sbl +qiv +lWR +ueC +hxf +hxf +cAl +obx +wGV +oAZ pGK iqI -dkL -xHW -xHW -nGE -xEV +clW +fWV +fWV +rUH +uJG yaa -mku -nGE -xHW -xHW -etn +veN +rUH +fWV +fWV +riq lli pGK -joH -cjD -usZ -pEw -aPX -ulJ -vBm -pgG -kKw -tFZ -uRZ -jsf -egy -xMI -bxk -qNy -jyV -lgT -pyO -nGz -qaJ -kpK -uzN -uzN -uzN -mmO -uzN -uzN -uzN -eiE -cIw -cIw -hTG +obx +wGV +oAZ +uVY +ueC +hxf +haq +btF +uiT +lWs +iAI +ozy +kAv +wfD +pdF +rIW +rDD +jid +vHN +edi +fYc +hnb +lhC +lhC +lhC +tsm +lhC +lhC +lhC +jHr +jmG +jmG +msc qeX qeX qeX @@ -108808,27 +94307,27 @@ csy qeX qeX vwY -luI -luI -luI -luI -luI -luI -euA -euA -rOu -vWF -vWF -vWF -vWF -mFF -crH -gEZ -onh +mRy +mRy +mRy +mRy +mRy +mRy +hbx +hbx +irY +uvU +uvU +uvU +uvU +uXO +mvf +qfb +mLK xak -juy -qoj -qcJ +tES +wcV +qhe qDs qDs egG @@ -108836,43 +94335,43 @@ egG tRY qDs qDs -eBl -qaF -juy +yfK +bCQ +tES xak -crH -gEZ -aUT -vAV -kFT -wfZ -bcA -xWX -gvf -qAs -vZW -gvf -xId -bNa +mvf +qfb +hfe +oFI +lGP +kYM +wMo +xrq +vbj +xdR +fUM +vbj +nZm +eHI rMM -gzC -fsP -tLA -ozY -ozY -ozY -aOp -slI -wfZ -haA -fzt -tnq -uDx -niV +bVx +qJR +rEV +cDR +cDR +cDR +oVA +wUG +kYM +eOo +rWO +gAq +sai +arl pga -fav -ofl -aAB +fci +upG +sFm orW orW hpA @@ -108880,27 +94379,27 @@ hpA orW orW orW -ajS -wZb -fav +ohF +rFv +fci pga -dOQ -htz -tjm -hTD -qQp -qQp -qQp -qQp -uNa -lkc -teV -idA -idA -idA -idA -idA -idA +byh +rXU +qiu +oLE +hBA +hBA +hBA +hBA +cmK +mdH +sfw +mmI +mmI +mmI +mmI +mmI +mmI qeX vwY qeX @@ -108917,39 +94416,39 @@ qeX qeX qeX qeX -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -hsJ -mxq -xRh -xRh -odT -ivK -hmB -gcS -hmB -hmB -hmB -odT -hmB -gcS -ivK -sOJ -sOJ -sOJ -sOJ -gcS -kdX -ygu -jJw +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +mpj +jUs +uox +uox +fzl +whc +mJA +hhI +mJA +mJA +mJA +fzl +mJA +hhI +whc +kGp +kGp +kGp +kGp +hhI +ctO +cum +otP pGK ixd fcE @@ -108965,39 +94464,39 @@ fcE fcE qiN pGK -wul -hCW -shX -jig -sRA -sRA -sRA -sRA -ukj -jig -sRA -kgu -cig -sRA -sRA -jig -sRA -ukj -kgu -tAm -wsY -uli -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG -hTG +eNf +cTq +peR +gYd +ioP +ioP +ioP +ioP +nMp +gYd +ioP +nqW +oTh +ioP +ioP +gYd +ioP +nMp +nqW +dAp +hHR +gop +msc +msc +msc +msc +msc +msc +msc +msc +msc +msc +msc qeX qeX qeX @@ -109010,27 +94509,27 @@ csy qeX qeX vwY -luI -dkY -euA -euA -euA -vOs -euA -osW -rOu -vWF -vWF -vWF -vWF -bpD -aZE -gnE -iJE +mRy +dWh +hbx +hbx +hbx +aYa +hbx +teZ +irY +uvU +uvU +uvU +uvU +pIh +myD +rLY +qrV xak xak -rGG -oWP +xVo +iin pCs jlr cNE @@ -109038,43 +94537,43 @@ jFj ldv vto flY -iPE -kYX +eJQ +dov xak xak -crH -gEZ -sdA -bFK -eCQ +mvf +qfb +jfJ +jWD +bmg uxe -ner -sJo -aYR -aYR -aYR -aYR -pQk -qaY -vJg -cJs -xpZ -dEA -dEA -dEA -dEA -rpi -goE +gcR +ngU +oYI +oYI +oYI +oYI +nck +ubq +tjL +ogr +dsU +hWe +hWe +hWe +hWe +sGz +kJn uxe -saF -uPg -oTz -uDx -tjm +ffn +rAu +fel +sai +qiu pga pga -rBk -bfu +lHn +mUN mbV orW vgS @@ -109082,27 +94581,27 @@ shE hFj nis czu -sIs -pEG +vRI +aku pga pga -rPD -gpx -uYF -bpD -qQp -qQp -qQp -qQp -uNa -iSn -teV -fBH -kJG -iai -iKH -vcV -idA +rNN +fvL +rgY +pIh +hBA +hBA +hBA +hBA +cmK +bJl +sfw +tco +dYH +ckv +dst +fpv +mmI qeX vwY qeX @@ -109119,39 +94618,39 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -hsJ -ntG -uPJ -izi -gJm -iAe -kid -rJY -pvs -orn -lgB -yjG -hwr -ccq -jHw -pao -bOG -hib -oYL -yjG -ulJ -ulJ -fNm -vZX -jwp -bPU +mpj +pYR +lNw +grX +fNn +bgy +xaY +aVX +ljw +cnz +qko +vAm +qSv +uXf +vGA +fTn +czq +cwN +idN +vAm +hxf +hxf +rfc +sdy +rcX +kdV pGK pGK pGK @@ -109167,39 +94666,39 @@ pGK pGK pGK pGK -dbt -wIs -bPU -fwL -iBo -ulJ -oKy -vza -ttz -jHw -tIv -bOG -ccq -igv -yjG -hwr -fCA -ttz -xFX -vfs -iAe -rUI -fgD -lpk -uSy -hTG +qdg +eHh +kdV +hsP +lTG +hxf +seb +gTi +aZI +vGA +uYO +czq +uXf +weO +vAm +qSv +toP +aZI +ugk +mTt +bgy +lHe +hIi +cNG +oTt +msc ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -109212,99 +94711,99 @@ csy qeX qeX vwY -luI -ghd -eqf -eqf -eqf -eqf -bqi -khY -rOu -vWF -vWF -vWF -vWF -bpD -faj -faj -faj +mRy +gLF +osZ +osZ +osZ +osZ +gme +sWu +irY +uvU +uvU +uvU +uvU +pIh +tdE +tdE +tdE xak -ceu -bed +apu +jGq nBH hla -nPV -mVS -aaJ -nPU -nPV +tOO +hEs +hOC +njs +tOO eFe nBH -xmN -ceu +mbs +apu xak -sZm -gEZ -wRK -eVZ -opr +rQO +qfb +gzo +toF +qBp uxe -gsx -xIe -xIe -xIe -aKw -xIe -xIe -xIe -aKw -xIe -xIe -xIe -aKw -xIe -xIe -xIe -gwf +nqn +abR +abR +abR +lid +abR +abR +abR +lid +abR +abR +abR +lid +abR +abR +abR +oBk uxe -hpo -jcr -uII -uDx -tjm +pzy +oNp +dtl +sai +qiu pga -hwc -wBY +sbh +lZb gAb gxc -qkS -gsn -qkS -rGW -qkS +eNj +fYC +eNj +gyV +eNj gxc gAb -nqm -hwc +cMn +sbh pga -ngX -ngX -ngX -bpD -qQp -qQp -qQp -qQp -uNa -tFG -mhG -sYU -mhG -mhG -tjY -teV -idA +kAs +kAs +kAs +pIh +hBA +hBA +hBA +hBA +cmK +lSb +adG +cYg +adG +adG +kbB +sfw +mmI qeX vwY qeX @@ -109321,87 +94820,87 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -hsJ -rHJ -rdS -mth -mth -mth -mth -mth -mth -mth -aJa -sOJ -xpf -mth -mth -lcc -mth -mth +mpj +drw +dib +noz +noz +noz +noz +noz +noz +noz +wLY +kGp +wfu +noz +noz +pmV +noz +noz qtD qtD -dZR -nEb +jXQ +szr qtD -oQf -ygu -jrb -ivK -dLo -dLo -cKW -dLo -dLo -dLo -dLo -dLo -dLo -dLo -cKW -dLo -dLo -ivK -qVQ -ygu -uvP -oXT -oXT -vTW -oXT -oXT -oXT -vTW -oXT -oXT -oXT -aJa -sOJ -xpf -oXT -oXT -oXT -oXT -oXT -oXT -oXT -lVz -pMP -hTG +bCX +cum +liB +whc +fZu +fZu +hcF +fZu +fZu +fZu +fZu +fZu +fZu +fZu +hcF +fZu +fZu +whc +fdb +cum +xjI +xzJ +xzJ +kih +xzJ +xzJ +xzJ +kih +xzJ +xzJ +xzJ +wLY +kGp +wfu +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +hiy +oFC +msc ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -109414,27 +94913,27 @@ csy qeX qeX vwY -luI -euA -eqf -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -vnU -faj -faj +mRy +hbx +osZ +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +ghk +tdE +tdE xak -nlT -bed -qcJ +gKM +jGq +qhe uEW eOA qDs @@ -109442,15 +94941,15 @@ qDs qDs qDs uEW -eBl -xmN -ylj +yfK +mbs +bCx xak -qHo -qHo -sdA -wBZ -vCy +pxz +pxz +jfJ +ngx +gPG uxe gcb gcb @@ -109458,11 +94957,11 @@ gcb gcb uxe uxe -wvf -jer +xNw +dRe uxe -wvf -jer +xNw +dRe uxe uxe gcb @@ -109470,15 +94969,15 @@ gcb gcb gcb uxe -rdU -eKK -oTz -iEs -iEs +jJl +sBK +fel +izC +izC pga -aCU -wBY -aAB +bSP +lZb +sFm coG orW orW @@ -109486,27 +94985,27 @@ hpA orW orW coG -ajS -nqm -oVF +ohF +cMn +vrb pga -ngX -ngX -hnI -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -iSn -kJG -idA +kAs +kAs +ybT +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +bJl +dYH +mmI qeX vwY qeX @@ -109518,11 +95017,11 @@ vwY qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY ndl ndl ndl @@ -109530,85 +95029,85 @@ ndl ndl ndl ndl -hsJ -gJH -uPJ -uPJ -mth -hVV -hVV -hVV -kCY -mth -jwr -sOJ -xpf -mth -nSK -gyv -mIt -eZC +mpj +xNi +lNw +lNw +noz +nlH +nlH +nlH +aAh +noz +tjv +kGp +wfu +noz +pLi +ezt +yfN +sLd qtD -nuX -uIy -uIy +ajE +gtT +gtT qtD -uYn -rKN -sOJ -ivK -sOJ -hmB -hmB -hmB -sOJ -hmB -hmB -hmB -sOJ -hmB -hmB -hmB -wzB -ivK -sOJ -ygu -dlf -oXT -tQY -lVz -tQY -oXT -uLp -lpk -lpk -oAY -oXT -aJa -sOJ -xpf -oXT -nPR -nPR -nPR -fpD -oXT -sxc -lpk -lpk -hTG -ndl -ndl -ndl -ndl -ndl -ndl -ndl -wgJ -wgJ -wgJ -wgJ -wgf +sKZ +vGu +kGp +whc +kGp +mJA +mJA +mJA +kGp +mJA +mJA +mJA +kGp +mJA +mJA +mJA +fVN +whc +kGp +cum +fLs +xzJ +dQn +hiy +dQn +xzJ +wpD +cNG +cNG +bEn +xzJ +wLY +kGp +wfu +xzJ +klr +klr +klr +wLj +xzJ +yga +cNG +cNG +msc +ndl +ndl +ndl +ndl +ndl +ndl +ndl +wtY +wtY +wtY +wtY +bhQ vwY qeX qeX @@ -109616,27 +95115,27 @@ csy qeX qeX vwY -luI -jnk -euA -luI -ezA -ezA -lxJ -jLg -jLg -jLg -cSp -jLg -jLg -ieS -faj -faj -faj +mRy +dxI +hbx +mRy +kPp +kPp +tjy +flM +flM +flM +gMH +flM +flM +ycN +tdE +tdE +tdE xak -dVR -fmt -qcJ +yed +oQe +qhe uEW qDs nRY @@ -109644,71 +95143,71 @@ vNW hhw qDs uEW -eBl -haI -dVR +yfK +kID +yed xak -crH -gEZ -oJX -fuc -rqj +mvf +qfb +lnl +oSs +eBa fAn -xPt -xPt -xPt -xPt -xPt -kLT -oSq +vkX +vkX +vkX +vkX +vkX +dRy +qIi nNg -tGf +kjY nNg -oSq -kLT -xPt -xPt -xPt -xPt -xPt +qIi +dRy +vkX +vkX +vkX +vkX +vkX fAn -tjm -uPg -oTz -uDx -lLu +qiu +rAu +fel +sai +fjw pga -oOl -wrU -aAB +gdu +uPH +sFm coG orW -xFB +mDM urY seL orW coG -nuC -xsE -oOl +pDk +uZT +gdu pga -ngX -ngX -ngX -eKW -xSF -xSF -hfy -xSF -xSF -xSF -pyL -pwA -pwA -idA -iZK -fOJ -idA +kAs +kAs +kAs +mGs +hyx +hyx +eMG +hyx +hyx +hyx +lbP +omB +omB +mmI +oTY +keH +mmI qeX vwY qeX @@ -109720,7 +95219,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -109732,73 +95231,73 @@ ndl ndl ndl ndl -hsJ -hsJ -rdS -rdS -mth -hVV -hVV -hVV -hVV -mth -tRK -yjG -kET -mth -gyv -rdS -uPJ -fGf +mpj +mpj +dib +dib +noz +nlH +nlH +nlH +nlH +noz +gFc +vAm +aYb +noz +ezt +dib +lNw +lLz qtD -kAp -uTW -bWO +bmu +kzu +hwB qtD -oEM -nLe -iOi -ivK -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -kOO -ivK -mRf -ygu -dkg -oXT -oXT -lpk -fFL -oXT -rjc -lVz -lpk -rjc -oXT -fvR -yjG -kET -oXT -nPR -nPR -nPR -nPR -oXT -lDl -lVz -hTG -hTG +uda +oOr +mHj +whc +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +wCV +whc +hDy +cum +nac +xzJ +xzJ +cNG +ugi +xzJ +rBi +hiy +cNG +rBi +xzJ +sNw +vAm +aYb +xzJ +klr +klr +klr +klr +xzJ +omE +hiy +msc +msc ndl ndl ndl @@ -109810,7 +95309,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -109818,43 +95317,43 @@ csy qeX qeX vwY -luI -eqf -upX -luI -ezA -ezA -lxJ -jLg -jLg -jLg -jLg -jLg -jLg -ieS -faj -faj -faj +mRy +osZ +uBe +mRy +kPp +kPp +tjy +flM +flM +flM +flM +flM +flM +ycN +tdE +tdE +tdE xiQ xiQ xiQ xiQ -qsz -ngL +rmp +xEw obF xiQ yiF -mwm -cLp +xIO +qvp vwU vwU vwU vwU -wBz -gEZ -sdA -bFK -crH +wBu +qfb +jfJ +jWD +mvf sco sco nNg @@ -109874,43 +95373,43 @@ sco nNg sco sco -tjm -uPg -oTz -uDx -guH +qiu +rAu +fel +sai +efx oeZ oeZ oeZ oeZ -uYp -sqM +pjE +qQz kqr oeZ mIX -nGZ -jTA +vpx +ljT jZE jZE jZE jZE -ngX -ngX -ngX -eKW -xSF -xSF -xSF -xSF -xSF -xSF -pyL -pwA -pwA -idA -iSn -kJG -idA +kAs +kAs +kAs +mGs +hyx +hyx +hyx +hyx +hyx +hyx +lbP +omB +omB +mmI +bJl +dYH +mmI qeX vwY qeX @@ -109922,7 +95421,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -109935,31 +95434,31 @@ ndl ndl ndl ndl -hsJ -uPJ -uPJ -mth -hVV -hVV -hVV -hVV -aES -fop -hmB -kvF -mth -bcj -uPJ -uPJ -qsF +mpj +lNw +lNw +noz +nlH +nlH +nlH +nlH +hSM +xIq +mJA +tVj +noz +mBH +lNw +lNw +myh qtD -kvs -tLr +uIe +kvj kdp pAz -eUk -whH -jrb +vVH +lEp +liB bEW bEW bEW @@ -109975,31 +95474,31 @@ fND fND fND fND -kdX -lOD -sXt -agl -oXT -lpk -lVz -fgD -lpk -lpk -lpk -lVz -oXT -tNz -hmB -wyz -tdW -nPR -nPR -nPR -nPR -oXT -eVm -lVz -hTG +ctO +abt +vfw +gNB +xzJ +cNG +hiy +hIi +cNG +cNG +cNG +hiy +xzJ +mbw +mJA +oPN +xJB +klr +klr +klr +klr +xzJ +nsG +hiy +msc ndl ndl ndl @@ -110012,7 +95511,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -110020,99 +95519,99 @@ csy qeX qeX vwY -luI -eqf -atf -luI -ezA -ezA -lxJ -jLg -jLg -jLg -jLg -jLg -jLg -ieS -faj -faj -faj +mRy +osZ +dbr +mRy +kPp +kPp +tjy +flM +flM +flM +flM +flM +flM +ycN +tdE +tdE +tdE xiQ -dfC -imS +xkI +dGF xiQ -lci -mAp -pNH +ibg +guD +hQO xiQ -oon -aOF -sbN +mIx +nfr +uPy vwU -waO -qbQ +cNW +bIo vwU -tXX -oUE -kZV -bFK -rEe -agY -agY -agY -agY -agY -agY -agY -agY -mem +dnR +pBM +mTv +jWD +ygn +bNP +bNP +bNP +bNP +bNP +bNP +bNP +bNP +pZj nNg -mem -agY -agY -agY -agY -agY -agY -agY -agY -dcn -uPg -htz -iqd -jzz +pZj +bNP +bNP +bNP +bNP +bNP +bNP +bNP +bNP +qkE +rAu +rXU +gia +ldn oeZ -djQ -vlp +dMY +eDX oeZ -nwq -irw -vBf +oqU +wWw +vpa oeZ -uUE -sRv -tjA +iYL +xGH +rnT jZE -rNd -aik +iZW +ftp jZE -ngX -ngX -ngX -eKW -xSF -xSF -xSF -xSF -xSF -xSF -pyL -pwA -pwA -idA -dMo -fis -idA +kAs +kAs +kAs +mGs +hyx +hyx +hyx +hyx +hyx +hyx +lbP +omB +omB +mmI +nXw +mxH +mmI qeX vwY qeX @@ -110124,7 +95623,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -110137,31 +95636,31 @@ ndl ndl ndl ndl -hsJ -uPJ -rdS -mth -hVV -hVV -hVV -hVV -mth -kVl -aPX -pUb -mth -uPJ -rdS -uPJ -gyv +mpj +lNw +dib +noz +nlH +nlH +nlH +nlH +noz +ujn +ueC +bqH +noz +lNw +dib +lNw +ezt qtD -gEp -tLr +gsL +kvj unv sJF -qrL -lOD -xsN +vvx +abt +nBd bEW eIl eIl @@ -110172,36 +95671,36 @@ eIl eIl eIl bEW -rpa -dbI -cqi -loB +vgB +gdk +jfh +fPe fND -kDz -lOD -sXt -xnz -oXT -lpk -uSy -oXT -rjc -lVz -lpk -lVz -oXT -cTu -aPX -ohW -oXT -nPR -nPR -nPR -nPR -oXT -vWe -lpk -hTG +sbt +abt +vfw +lct +xzJ +cNG +oTt +xzJ +rBi +hiy +cNG +hiy +xzJ +xAr +ueC +xkf +xzJ +klr +klr +klr +klr +xzJ +rMB +cNG +msc ndl ndl ndl @@ -110214,7 +95713,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -110222,99 +95721,99 @@ csy qeX qeX vwY -luI -tgD -mcs -luI -sSk -cvT -cvT -luI -luI -luI -luI -luI -luI -luI -luI -luI -rOu +mRy +lOz +fxe +mRy +ydp +fSp +fSp +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +irY xiQ -tYq +uMo fBm -dhF +mOW nsZ dtJ -duk +rha xiQ -aKP +jkK fmh hYK -bPl +vrY uOX -tVP +lrN vwU -cpR -puc -kZV -bFK -cDA -xJO -xJO -lmr -sBp -gvq -rng -xJO -xJO -bzX +tdQ +fcG +mTv +jWD +mLW +fxK +fxK +qGz +oKZ +ioz +hgV +fxK +fxK +wnr lpz -gbJ -xJO -xJO -rng -gvq -dKq -pQR -xJO -xJO -pgL -uPg -htz -dbK -eIP +tJf +fxK +fxK +hgV +ioz +dUU +kBB +fxK +fxK +uce +rAu +rXU +pFg +bEX oeZ -gWt +qlC fwj -jgt +iOd toK skL -bBJ +qkd oeZ -oGT +kRx quY fvJ -ndM +nhO dno -jeY +pvP jZE jZE -uNa -idA -idA -idA -idA -idA -idA -idA -idA -dHV -dHV -jXq -idA -tkU -kJG -idA +cmK +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +vaJ +vaJ +aHI +mmI +qhb +dYH +mmI qeX vwY qeX @@ -110326,7 +95825,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -110339,31 +95838,31 @@ ndl ndl ndl ndl -hsJ -rdS -gXZ -mth -hVV -hVV -hVV -hVV -mth -aJa -hmB -xpf -mth -rdS -rdS -uPJ -gyv +mpj +dib +pgm +noz +nlH +nlH +nlH +nlH +noz +wLY +mJA +wfu +noz +dib +dib +lNw +ezt qtD bhx rOF jTy qtD -hKB -lOD -xOd +ius +abt +xqf bEW eIl eIl @@ -110374,36 +95873,36 @@ eIl eIl eIl bEW -wTd +tWh kOj chO -hJW +lFc xDj -kdX -lOD -iDC -oXT -oXT -lpk -lDl -oXT -tQY -owb -lpk -lVz -oXT -aJa -hmB -xpf -oXT -nPR -nPR -nPR -nPR -oXT -lpk -lVz -hTG +ctO +abt +iuG +xzJ +xzJ +cNG +omE +xzJ +dQn +wlG +cNG +hiy +xzJ +wLY +mJA +wfu +xzJ +klr +klr +klr +klr +xzJ +cNG +hiy +msc ndl ndl ndl @@ -110416,7 +95915,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -110424,43 +95923,43 @@ csy qeX qeX vwY -luI -eqf -wwY -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +mRy +osZ +lyR +mRy +eLX +eLX +eLX +icn +icn +icn +icn +icn +icn +icn +mRy +irY xiQ xiQ xiQ xiQ xiQ iQo -iti -exu +uMv +oXu xiQ -sxB -rMH +wBG +vmh nNR vwU vwU vwU vwU vwU -mHu -kZV -bFK -gwy +dAO +mTv +jWD +lBD mEI mEI mEI @@ -110469,9 +95968,9 @@ mEI mEI hFw hFw -sTC -mmZ -dsp +gAM +xod +yiU xPA xPA mEI @@ -110480,43 +95979,43 @@ mEI mEI mEI mEI -hkV -uPg -htz -nDH +tpq +rAu +rXU +bph oeZ oeZ oeZ oeZ oeZ ugE -oec -bHN +xuc +bKd oeZ -iWu -wRo +rgo +fzy txN jZE jZE jZE jZE jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iSn -teV -idA +cmK +mmI +wgY +wgY +wgY +wgY +wgY +wgY +wgY +qgL +qgL +qgL +mmI +bJl +sfw +mmI qeX vwY qeX @@ -110528,7 +96027,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -110541,31 +96040,31 @@ ndl ndl ndl ndl -hsJ -rdS -cge -mth -mth -mth -mth -mth -mth -smS -hmB -gpd -mth -bUX -gyv -bRu -tjn +mpj +dib +myk +noz +noz +noz +noz +noz +noz +xpF +mJA +sgR +noz +nBk +ezt +jPJ +ghx qtD -twp -rsi -pzu +cqB +gDu +skB qtD -sOJ -rKN -sOJ +kGp +vGu +kGp bEW eIl eIl @@ -110576,36 +96075,36 @@ eIl eIl eIl bEW -wSE +qnr nTA lNk -ehW +bNn xDj -qVQ -lOD -ulJ -fgD -lVz -lVz -hTT -oXT -oXT -oXT -vTW -oXT -oXT -smS -hmB -gpd -oXT -oXT -oXT -oXT -oXT -oXT -lVz -lVz -hTG +fdb +abt +hxf +hIi +hiy +hiy +mAV +xzJ +xzJ +xzJ +kih +xzJ +xzJ +xpF +mJA +sgR +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +hiy +hiy +msc ndl ndl ndl @@ -110618,7 +96117,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -110626,99 +96125,99 @@ csy qeX qeX vwY -luI -euA -eqf -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +mRy +hbx +osZ +mRy +eLX +eLX +eLX +icn +icn +icn +icn +icn +icn +icn +mRy +irY xiQ -bgF +nQn drD -iTL +fxS drD mGH -sgG -oWw +sKP +kuF xiQ -uuT -ohM +kZl +dDb jEq blh -htE +koo fmh -tWC +gud vwU -crH -kZV -bFK -gwy +mvf +mTv +jWD +lBD mEI -dUO -dAW -pcb -qoK +hXO +fIL +nsD +ccQ sNl -bLC -sKh -tMf -xGV -tMf -qtQ -kKB +pBY +tCb +bEx +iPo +bEx +wjB +mnh oSJ -soX -oKo -nek -eVs +nOV +jtL +kAZ +oGX mEI -jPY -uPg -htz -tjm +mCU +rAu +rXU +qiu oeZ -pfM +lSR pRd -fLK +oWC pRd teo -bta -ebN +wtM +wjk oeZ -fkQ -xZd +hdK +cbZ sop inu -rbE +hFg inu -viK +bCH jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iZK -teV -idA +cmK +mmI +wgY +wgY +wgY +wgY +wgY +wgY +wgY +qgL +qgL +qgL +mmI +oTY +sfw +mmI qeX vwY qeX @@ -110730,7 +96229,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -110743,31 +96242,31 @@ ndl ndl ndl ndl -hsJ -lbM -tGk -mth -hVV -hVV -hVV -kCY -mth -aJa -hmB -xpf -mth -lcc -mth -mth -mth +mpj +hrO +iMC +noz +nlH +nlH +nlH +aAh +noz +wLY +mJA +wfu +noz +pmV +noz +noz +noz rNR rNR rNR rNR rNR -xdo -rKN -dlf +rmL +vGu +fLs bEW eIl eIl @@ -110778,36 +96277,36 @@ eIl eIl eIl bEW -lKA +pRw oPT xqm xqm -tdr -fRQ -stb -amZ -oXT -oXT -oXT -oXT -oXT -uLp -fwx -lpk -cRb -oXT -aJa -hmB -xpf -oXT -nPR -nPR -nPR -fpD -oXT -jei -lVz -hTG +ojR +eyN +tcx +pMC +xzJ +xzJ +xzJ +xzJ +xzJ +wpD +xnj +cNG +wRY +xzJ +wLY +mJA +wfu +xzJ +klr +klr +klr +wLj +xzJ +aMR +hiy +msc ndl ndl ndl @@ -110820,7 +96319,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -110828,99 +96327,99 @@ csy qeX qeX vwY -luI -jnk -euA -luI -hFX -hFX -hFX -pEt -pEt -pEt -pEt -pEt -pEt -pEt -luI -rOu +mRy +dxI +hbx +mRy +eLX +eLX +eLX +icn +icn +icn +icn +icn +icn +icn +mRy +irY xiQ -lsP -iLK +gDD +oqE xiQ -urV -xnH -hFz -yjW +tTV +gcz +oOO +loj xiQ -vWj -swj -peU -nUf +cyl +tup +mMA +fTD vwU -emF -cew +ntN +vCJ vwU -crH -kZV -bFK -gwy +mvf +mTv +jWD +lBD mEI -qIL +iGX sco sco nNg sNl -uIs -oSq +bQs +qIi sco -qlQ +pLg sco -oSq -uIs +qIi +bQs oSJ -sAf +dpK rfO qUX -rDE +cQY mEI -via -uPg -htz -tjm +vJL +rAu +rXU +qiu oeZ -clO -jjf +dyC +iAD oeZ -eyK -eWu -bBJ -wWj +mhe +uNC +qkd +olT oeZ -oBu -lje -kpr -whL +uDM +nLl +ber +gnK jZE -aoP -kEp +hrH +mqe jZE -uNa -idA -tSw -tSw -tSw -tSw -tSw -tSw -tSw -pwv -pwv -pwv -idA -iSn -tqw -idA +cmK +mmI +wgY +wgY +wgY +wgY +wgY +wgY +wgY +qgL +qgL +qgL +mmI +bJl +diR +mmI qeX vwY qeX @@ -110932,7 +96431,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -110945,31 +96444,31 @@ ndl ndl ndl ndl -hsJ -uPJ -pWl -mth -hVV -hVV -hVV -hVV -mth -tRK -yjG -umm -mth -uPJ -uPJ -wzx -wzx +mpj +lNw +ydk +noz +nlH +nlH +nlH +nlH +noz +gFc +vAm +vph +noz +lNw +lNw +aAc +aAc rNR -jbP -otK -hID +xfx +iez +hGf rNR -prr -nLe -sOJ +cFI +oOr +kGp bEW eIl eIl @@ -110980,36 +96479,36 @@ eIl eIl eIl bEW -tgE +rhC jdF lNk -qUf +wVc xDj -mRf -lOD -jrb +hDy +abt +liB bYw -kIQ -uLT -kIQ -oXT -tQY -lVz -lpk -lVz -oXT -tRK -yjG -umm -oXT -nPR -nPR -nPR -nPR -oXT -kzX -lpk -hTG +grO +oib +grO +xzJ +dQn +hiy +cNG +hiy +xzJ +gFc +vAm +vph +xzJ +klr +klr +klr +klr +xzJ +vuy +cNG +msc ndl ndl ndl @@ -111022,7 +96521,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -111030,99 +96529,99 @@ csy qeX qeX vwY -luI -euA -eqf -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -rOu +mRy +hbx +osZ +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +irY xiQ xiQ xiQ xiQ xiQ -gvF -hFz -yjW +kXg +oOO +loj xiQ -vWj -swj -oxq +cyl +tup +uEl vwU vwU vwU vwU vwU -wBz -kZV -bFK -uXb +wBu +mTv +jWD +edc mEI -sDY +btb sco sco -tkA -vyQ -iSj -iSj -iSj -iSj -iSj -iSj -iSj -fVd -oSq -xSG +eCu +ifD +ayK +ayK +ayK +ayK +ayK +ayK +ayK +tXW +qIi +arZ sco -nEl +oZn mEI -gXd -uPg -htz -guH +gdw +rAu +rXU +efx oeZ oeZ oeZ oeZ oeZ -oHX -bBJ -wWj +haG +qkd +olT oeZ -oBu -lje -wcC +uDM +nLl +fuw jZE jZE jZE jZE jZE -uNa -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA -iZK -kJG -idA +cmK +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +oTY +dYH +mmI qeX vwY qeX @@ -111134,7 +96633,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -111147,31 +96646,31 @@ ndl ndl ndl ndl -hsJ -rdS -hHx -mth -hVV -hVV -hVV -hVV -xfo -tNz -hmB -kvF -mth -lbM -qLD -uPJ -gyv +mpj +dib +rPZ +noz +nlH +nlH +nlH +nlH +tNh +mbw +mJA +tVj +noz +hrO +mmS +lNw +ezt rNR -dZI +sqc iYe tBJ -epz -ulJ -lOD -sOJ +pQX +hxf +abt +kGp bEW eIl eIl @@ -111182,36 +96681,36 @@ eIl eIl eIl bEW -gpj +gGz mDK -xUZ -glh +fBy +oSH xDj -kdX -nLe -sOJ +ctO +oOr +kGp bYw myE wkj wkj -oXT -lpk -lVz -lpk -lVz -oXT -tNz -hmB -wyz -xjg -nPR -nPR -nPR -nPR -oXT -jlc -lpk -hTG +xzJ +cNG +hiy +cNG +hiy +xzJ +mbw +mJA +oPN +tTt +klr +klr +klr +klr +xzJ +sku +cNG +msc ndl ndl ndl @@ -111224,7 +96723,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -111232,99 +96731,99 @@ csy qeX qeX vwY -luI -euA -eqf -eqf -bfm -eqf -euA -pxN -wqW -hlY -mcs -osW -wwY -khY -gmK -osW +mRy +hbx +osZ +osZ +onF +osZ +hbx +mTa +lvZ +cYM +fxe +teZ +lyR +sWu +vDY +teZ xiQ -kFf -bJZ -cBG +fwt +gfG +oCe xiQ -jkY -hFz -mqD +efs +oOO +utC xiQ -qfv -fNC -xSh +oXz +sNy +mpw vwU -olK -loF -vwr +qFA +hGY +paD vwU -crH -kZV -bFK -wGl +mvf +mTv +jWD +wSR mEI -lmu +eWh nNg -mem -twi +pZj +wqV mEI -wCP -xAW -nkL -xAW -nkL -xAW -nkL +xQY +als +ifU +als +ifU +als +ifU oZL -gai -xSG -nwH -tgO +lop +arZ +uAs +bdd mEI -aIb -uPg -htz -tjm +ryX +rAu +rXU +qiu oeZ -ksr -pqL -cYB +haS +eGU +ghX oeZ -mgL -bBJ -kUG +cez +qkd +dSp oeZ -mTP -lje -kwp +ade +nLl +aYq jZE -piP -aKO -xDy +vmj +owy +xCI jZE -uNa -hQj -hOp -hOp -hOp -pkK -xTB -gLi -uNa -kYu -bQe -mhG -mhG -rmo -cwf -idA +cmK +hAP +eMP +eMP +eMP +bBK +xgW +lbk +cmK +ugS +kwd +adG +adG +bzb +jiy +mmI qeX vwY qeX @@ -111336,7 +96835,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -111349,31 +96848,31 @@ ndl ndl ndl ndl -hsJ -urp -uPJ -mth -hVV -hVV -hVV -hVV -mth -kVl -aPX -pUb -mth -rdS -rdS -uPJ -whY +mpj +fcF +lNw +noz +nlH +nlH +nlH +nlH +noz +ujn +ueC +bqH +noz +dib +dib +lNw +bto rNR -aUM +jkz iYe tBJ rNR -pGz -irz -pGz +pdC +jNl +pdC bEW bEW bEW @@ -111385,35 +96884,35 @@ bBr bBr bBr fND -wIy +heV ydi -bYk +xHB fND -pGz -irz -pGz +pdC +jNl +pdC bYw -gZZ -gdx -pXs -oXT -lpk -lVz -lpk -rjc -oXT -cTu -aPX -ohW -oXT -nPR -nPR -nPR -nPR -oXT -wVB -pMP -hTG +sda +jaJ +aeJ +xzJ +cNG +hiy +cNG +rBi +xzJ +xAr +ueC +xkf +xzJ +klr +klr +klr +klr +xzJ +fzA +oFC +msc ndl ndl ndl @@ -111426,7 +96925,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -111434,99 +96933,99 @@ csy qeX qeX vwY -luI -upX -pxN -atf -cji -euA -eqf -euA -dEf -pOb -dEf -euA -eqf -pxN -gmK -fsx +mRy +uBe +mTa +dbr +rbD +hbx +osZ +hbx +uTt +xpq +uTt +hbx +osZ +mTa +vDY +rpT xiQ -kFf +fwt drD -cBG +oCe xiQ -arS -hFz -yjW +frf +oOO +loj xiQ -vWj -swj -ncj +cyl +tup +xPd vwU -olK +qFA fmh -vwr +paD vwU -crH -kZV -bFK -jis +mvf +mTv +jWD +bCZ mEI iEe iEe -sMT +hcy iEe mEI -jAw -xAW -nkL -xAW -nkL -xAW -ucG +cps +als +ifU +als +ifU +als +jZq ase fqC -jAn +kjD fqC fqC mEI -uPN -uPg -htz -tjm +vEd +rAu +rXU +qiu oeZ -ksr +haS pRd -cYB +ghX oeZ -xMc -bBJ -wWj +cUW +qkd +olT oeZ -oBu -lje -ppX +uDM +nLl +xQI jZE -piP +vmj inu -xDy +xCI jZE -uNa -tFG -mhG -mhG -tjY -gtz -rAQ -ujM -uNa -lkc -teV -teV -teV -ccu -jir -idA +cmK +lSb +adG +adG +kbB +oqb +oJr +jcX +cmK +mdH +sfw +sfw +sfw +fal +mfC +mmI qeX vwY qeX @@ -111538,7 +97037,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -111551,71 +97050,71 @@ ndl ndl ndl ndl -hsJ -rdS -rdS -mth -hVV -hVV -hVV -hVV -mth -viR -sOJ -hgc -mth -utJ -uPJ -rdS -whY +mpj +dib +dib +noz +nlH +nlH +nlH +nlH +noz +gtS +kGp +qUv +noz +gjo +lNw +dib +bto rNR -nPK +saE iYe tBJ rNR -eiq -lRa -idb +qyD +cum +kGp jfB -dCH -hOB +fFF +eiA tLN -rla -lYG -dSe -lYG -lYG +fTa +fpF +fqF +fpF +fpF fND -tcY +vFK mDK -dmm -qen +tLe +nTN fND -eiq -keQ -yjb -voC -jIb -jWx -cVw -oXT -lpk -lVz -cRb -oJt -oXT -viR -sOJ -hgc -oXT -nPR -nPR -nPR -nPR -oXT -bPO -lVz -hTG +qyD +lWq +bFE +sxk +wzS +vek +xnb +xzJ +cNG +hiy +wRY +tbX +xzJ +gtS +kGp +qUv +xzJ +klr +klr +klr +klr +xzJ +rcn +hiy +msc ndl ndl ndl @@ -111628,7 +97127,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -111636,99 +97135,99 @@ csy qeX qeX vwY -luI -luI -luI -luI -luI -tPA -eqf -euA -ewn -cvK -kXI -euA -eqf -euA -euA -gmK +mRy +mRy +mRy +mRy +mRy +aGY +osZ +hbx +cFH +bLi +saM +hbx +osZ +hbx +hbx +vDY xiQ -sMk +mfJ drD -aAe -sHp +qzN +hoO nsZ -hFz -yjW +oOO +loj xiQ -vWj -swj +cyl +tup vQq -jrU -srh +foC +rVg fmh -ghT +hqb vwU -qHo -sdA -wBZ -qHo +pxz +jfJ +ngx +pxz oSJ -fCY -oic -oSq -dby -rIV -vTL -xAW -nkL -xAW -nkL -xAW -nkL -twR -wYP -fuU -wMU -uTG +sUg +amH +qIi +knO +lOd +cYf +als +ifU +als +ifU +als +ifU +oRn +sEv +yiC +sAQ +trt oSJ -iEs -eKK -oTz -iEs +izC +sBK +fel +izC oeZ -wCE +ntz pRd -qes -dPY +fAD +cFz toK -bBJ -wWj +qkd +olT oeZ -oBu -lje +uDM +nLl ewt -kbu -ygc +bko +izu inu -nQj +urf jZE -uNa -uNa -uNa -uNa -fut -vNE -uNa -uNa -uNa -mvg -fbn -idA -idA -idA -idA -idA +cmK +cmK +cmK +cmK +mjX +hNK +cmK +cmK +cmK +dYY +xNj +mmI +mmI +mmI +mmI +mmI qeX vwY qeX @@ -111740,7 +97239,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -111753,71 +97252,71 @@ ndl ndl ndl ndl -hsJ -uPJ -uPJ -mth -mth -mth -mth -mth -mth -rIu -gXG -hpM -mth -mth -mth -lcc -mth -mth -hvo +mpj +lNw +lNw +noz +noz +noz +noz +noz +noz +rZZ +pdC +tqc +noz +noz +noz +pmV +noz +noz +urX iYe tBJ rNR -iJg -rSx -idb +sKZ +vGu +kGp jfB -bLJ -fat -blg -mrD -eME -eME -eME -eME -eME -mTB +tvz +dDG +hhQ +rtD +bvS +bvS +bvS +bvS +bvS +sFw mDK ooe -vnX +awF fND -idb -lRa -idb +kGp +cum +kGp bYw -qIV -ghD -gky -oXT -vTW -oXT -oXT -oXT -oXT -rIu -gXG -csF -oXT -oXT -oXT -oXT -oXT -oXT -lpk -lpk -hTG +xBD +tVH +deQ +xzJ +kih +xzJ +xzJ +xzJ +xzJ +rZZ +pdC +hGD +xzJ +xzJ +xzJ +xzJ +xzJ +xzJ +cNG +cNG +msc ndl ndl ndl @@ -111830,7 +97329,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -111842,91 +97341,91 @@ qeX qeX qeX qeX -luI -xyW -eqf -euA -eui -nIG -eui -euA -eqf -euA -euA -eqf +mRy +hqU +osZ +hbx +bdD +jLx +bdD +hbx +osZ +hbx +hbx +osZ xiQ -kFf +fwt drD -cBG +oCe xiQ -tMe -dGM -mqD +qhm +yjn +utC xiQ -qfv -swj -bpI +oXz +tup +tXL vwU -olK +qFA fmh -vwr +paD vwU -lTA -kZV -loa -geS -kKd -oMF +eAq +mTv +pMO +imP +mlI +cEB wQT wQT -sND -tgu -hld -jpD -jpD -jpD -jpD -jpD -jpD -gbw -wik +phh +lMK +dqj +wdh +wdh +wdh +wdh +wdh +wdh +fYD +gwj bJH fir -gbw -nqs -arI -taI -mFW -cuE +fYD +ulk +ntx +naK +wOk +fBL oeZ -ksr +haS pRd -cYB +ghX oeZ -gCB -bBJ -kUG +euT +qkd +dSp oeZ -mTP -lje -hPr +ade +nLl +hDx jZE -piP +vmj inu -xDy +xCI jZE -xGg -mhG -mhG -mhG -rmo -tFG -bQe -mhG -mhG -rmo -kJG -idA +bIq +adG +adG +adG +bzb +lSb +kwd +adG +adG +bzb +dYH +mmI qeX qeX qeX @@ -111942,7 +97441,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -111955,36 +97454,36 @@ ndl ndl ndl ndl -hsJ -uPJ -rdS -xTL -uPJ -rdS -rdS -mlg -izi -hTe -sOJ -xNV -izi -mlg -rdS -rdS -uPJ -xbh +mpj +lNw +dib +ptY +lNw +dib +dib +ggx +grX +rHk +kGp +mnU +grX +ggx +dib +dib +lNw +fru tBJ iYe tBJ vGQ -idb -stQ -idb +kGp +oOr +kGp jfB -cOZ -rQd -pSf -cst +frg +bkC +scO +lRT lNk lNk wlg @@ -111993,33 +97492,33 @@ jeW dnG huJ lNk -kAE +ovj fND -tPa -lAV -idb +qRH +abt +kGp nwJ -aVt +ibX wkj -cVw -fgD -lpk -lpk -uCd -owb -fgD -hMA -sOJ -lyP -fgD -bXA -lVz -vhs -lpk -lpk -lVz -lVz -hTG +xnb +hIi +cNG +cNG +rqt +wlG +hIi +qAb +kGp +mUE +hIi +guo +hiy +fnb +cNG +cNG +hiy +hiy +msc ndl ndl ndl @@ -112032,7 +97531,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -112044,91 +97543,91 @@ qeX qeX qeX qeX -luI -pFY -atf -pxN -jHA -hBb -uUy -lZU -eqf -euA -euA -eqf +mRy +vCN +dbr +mTa +cJF +hgP +byo +eWR +osZ +hbx +hbx +osZ xiQ -kFf -iLK -cBG +fwt +oqE +oCe xiQ -gvF -wQc -yjW +kXg +rCk +loj xiQ -vWj -swj -aWu +cyl +tup +nSW vwU -olK -emF -vwr +qFA +ntN +paD vwU -crH -kZV -bFK -wGl +mvf +mTv +jWD +wSR oSJ -fDS -iSj -iSj -iSj -eni -etk +vmL +ayK +ayK +ayK +ntD +rwR txX txX -nuL +suH txX txX -dNb -fvM -oSq -oSq -mEy -viM +eKH +qHV +qIi +qIi +hsS +uLv oSJ -dOQ -uPg -htz -tjm +byh +rAu +rXU +qiu oeZ -ksr -jjf -cYB +haS +iAD +ghX oeZ -aLg -bBJ -wWj +ucJ +qkd +olT oeZ -oBu -lje -qoy +uDM +nLl +tzm jZE -piP -aoP -xDy +vmj +hrH +xCI jZE -gKU -teV -teV -teV -teV -kJG -ppZ -kJG -teV -teV -fjT -idA +jyE +sfw +sfw +sfw +sfw +dYH +eAs +dYH +sfw +sfw +fCl +mmI qeX qeX qeX @@ -112144,7 +97643,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -112158,69 +97657,69 @@ ndl ndl ndl uMm -mth -mth -lcc -mth -mth -mth -mth -mth -fVp -yjG -uoO -mth -mth -mth -mth -rdS -mth -buS +noz +noz +pmV +noz +noz +noz +noz +noz +jle +vAm +mlQ +noz +noz +noz +noz +dib +noz +fts iYe tBJ vGQ -idb -rSx -idb +kGp +vGu +kGp jfB jfB jfB jfB -sNT -ina -ina -jAc -ina -ucp +nUm +bxq +bxq +emR +bxq +vNs xCP lNk lNk -vus +iGg fND -vFx -lAV -idb +nXg +abt +kGp nwJ -sCg +jvQ wkj -avu -oXT -vWe -oXT -oXT -oXT -oXT -fVp -yjG -uoO -oXT -oXT -oXT -oXT -oXT -vTW -oXT -oXT +iqU +xzJ +rMB +xzJ +xzJ +xzJ +xzJ +jle +vAm +mlQ +xzJ +xzJ +xzJ +xzJ +xzJ +kih +xzJ +xzJ sLa ndl ndl @@ -112234,7 +97733,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -112246,45 +97745,45 @@ qeX qeX qeX qeX -luI -luI -luI -luI -luI -luI -luI -luI -luI -luI -bfm -cji +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +mRy +onF +rbD xiQ xiQ xiQ xiQ xiQ -ceH -wQc -yjW +iRx +rCk +loj xiQ -vWj -swj -vSt +cyl +tup +bEg vwU vwU vwU vwU vwU -crH -kZV -bFK -ezK +mvf +mTv +jWD +qkj mEI vmK -fvM -nkL -lbU -eni +qHV +ifU +wZv +ntD pMu nps nps @@ -112292,45 +97791,45 @@ nps nps nps qii -fvM -oSq -oSq -iyO +qHV +qIi +qIi +tyI mEI mEI -pfJ -uPg -htz -tjm +rZk +rAu +rXU +qiu oeZ oeZ oeZ oeZ oeZ -cEg -bBJ -wWj +nsn +qkd +olT oeZ -oBu -lje -elZ +uDM +nLl +bIY jZE jZE jZE jZE jZE -iSn -teV -idA -idA -idA -idA -idA -idA -idA -idA -idA -idA +bJl +sfw +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI +mmI qeX qeX qeX @@ -112346,7 +97845,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -112362,62 +97861,62 @@ ndl uMm hyN nXp -adH +hIJ daT daT -xKn +sYY daT dfw daT -adH +hIJ daT dfw daT daT -mth -rdS -mth +noz +dib +noz cCl tBJ tBJ vGQ -idb -rSx -idb +kGp +vGu +kGp jfB -gML -guP +bNg +dHt jfB -tTB -ina -ina -ucp -ina -ucp +bhn +bxq +bxq +vNs +bxq +vNs bVq rKM lNk -ohB +dtx fND -ptd -lAV -idb +btX +abt +kGp nwJ -lSg -wLH -gZN -oXT -qBC -oXT +vpR +pGk +kcx +xzJ +wbO +xzJ rwP rwP vLD rwP -oul +dcu rwP vLD rwP -eYr +xtq rwP hCY rwP @@ -112436,7 +97935,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -112457,36 +97956,36 @@ qeX qeX qeX qeX -lmf -dvB -kHf +nXt +bkB +kRL xiQ -sHN -bJZ -tUP +nfj +gfG +aJF xiQ -pGt -wQc -mqD +lwL +rCk +utC xiQ -qfv -swj -nCv +oXz +tup +tFh vwU -hiO -loF -dwE +aED +hGY +dTe vwU -crH -kZV -bFK -wGl +mvf +mTv +jWD +wSR mEI tcJ -fvM -nkL -trd -eni +qHV +ifU +vvk +ntD pMu nps nps @@ -112494,36 +97993,36 @@ nps nps nps qii -fvM -iSj -iSj -iSj -nBK -efl -fiU -uPg -htz -tjm +qHV +ayK +ayK +ayK +dJD +dTd +oJb +rAu +rXU +qiu oeZ -lmR -pqL -fbc +eTt +eGU +hOs oeZ -dyc -uxV -kUG +bII +agZ +dSp oeZ -mTP -lje -gPU +ade +nLl +kBf jZE -vwy -aKO -fvN +mYE +owy +pYi jZE -oDO -waV -dzH +qtH +xdj +sfv qeX qeX qeX @@ -112548,7 +98047,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -112562,69 +98061,69 @@ ndl ndl ndl tKS -psF +mwa daT esJ pIl mna -tFm +vkv pIl pIl pIl -tFm +vkv mna pIl wOZ daT -mth -otU -mth +noz +kJx +noz nDr nDr nDr rNR -idb -stQ -idb +kGp +oOr +kGp jfB -fHX -xEB -ydH +dXZ +ylm +vlV mEh -wYF -ina -ucp -ina -ucp +pzD +bxq +vNs +bxq +vNs oIg dEm lNk -kAE +ovj fND -iyx -lAV -idb +ftV +abt +kGp bYw nwJ nwJ nwJ -oXT -uSy -oXT +xzJ +oTt +xzJ rwP opu jEl tUH -wek +uYd jEl jEl jEl -wek +uYd tUH jEl hDn rwP -mBB +oHq jWf ndl ndl @@ -112638,7 +98137,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -112659,73 +98158,73 @@ qeX qeX qeX qeX -lmf -sNm -kHf +nXt +sej +kRL xiQ -sHN +nfj drD -tUP +aJF xiQ -bmE -wQc -yjW +kLq +rCk +loj xiQ -vWj -swj -qVy +cyl +tup +wfp vwU -hiO +aED blh -dwE +dTe vwU -oXt -kZV -bFK -wGl +wYR +mTv +jWD +wSR mEI nOE uXJ -nkL -oRB -eni -nNk +ifU +uTS +ntD +fas nps nps vxP nps nps -pap -fvM -guz -guz -guz +thD +qHV +coE +coE +coE pTC -eMR -tjm -uPg -htz -tjm +sJc +qiu +rAu +rXU +qiu oeZ -lmR +eTt pRd -fbc +hOs oeZ -xMc -omw -wWj +cUW +aTQ +olT oeZ -oBu -lje -eDm +uDM +nLl +hpZ jZE -vwy +mYE inu -fvN +pYi jZE -vpM -xbP -dzH +azS +jxU +sfv qeX qeX qeX @@ -112750,7 +98249,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -112764,69 +98263,69 @@ ndl ndl ndl tKS -jIk +nNu daT aNq daT -adH -adH -adH -adH -adH -adH -adH +hIJ +hIJ +hIJ +hIJ +hIJ +hIJ +hIJ ykw oIO dxn -mth -lcc -mth -pDU -pDU -pDU -nNw -idb -stQ -idb +noz +pmV +noz +hxf +hxf +hxf +gUn +kGp +oOr +kGp jfB -hRg -hOT +abu +rqd jfB -enR -rsG -rsG -gsh -hAK -lbl -dqs -lBG -lbl -clu +dgM +aOS +aOS +sLf +hGp +kul +mqp +jEY +kul +wsS fND -iJg -lRa -idb -nNw -pDU -pDU -pDU -oXT -vTW -oXT +sKZ +cum +kGp +gUn +hxf +hxf +hxf +xzJ +kih +xzJ kRO hNB rwP -oul -oul -oul -oul -oul -oul -oul +dcu +dcu +dcu +dcu +dcu +dcu +dcu cMV ykN rwP -cgF +tpt jWf ndl ndl @@ -112840,7 +98339,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -112861,36 +98360,36 @@ qeX qeX qeX qeX -lmf -dvB -kHf +nXt +bkB +kRL xiQ -bct +cJi drD -aAe -tTe +qzN +lCn nsZ -wQc -yjW +rCk +loj xiQ -vWj -swj +cyl +tup vQq -qEX -srh +juU +rVg blh -jCV +akE vwU -qHo -sdA -wBZ -qHo +pxz +jfJ +ngx +pxz mEI cff -fvM -nkL -gfN -eni +qHV +ifU +oJF +ntD pMu nps nps @@ -112898,36 +98397,36 @@ nps nps nps qii -fvM -obB -hok -sQL -vYB -kKa -dcn -eKK -oTz -iEs +qHV +wgc +kad +xmK +jpM +ccf +qkE +sBK +fel +izC oeZ -xLz +pCE pRd -qes -jNJ +fAD +kIa toK -omw -wWj +aTQ +olT oeZ -oBu -lje +uDM +nLl ewt -lCN -ygc +kyk +izu inu -rNm +pTh jZE -ffr -ehX -dzH +kcc +gGO +sfv qeX qeX qeX @@ -112952,7 +98451,7 @@ vwY qeX qeX qeX -tag +ihr ndl ndl ndl @@ -112967,29 +98466,29 @@ ndl ndl uMm hyN -rPl -aYB -adH -adH -jwm -mRw -mRw -mRw -vZj -adH -adH -aYB -adH -wfJ -pDU -rvF -vLl -vLl -nNL -vvm -pHq -ohz -wtx +wtf +ttj +hIJ +hIJ +xeE +mdc +mdc +mdc +nHq +hIJ +hIJ +ttj +hIJ +mlQ +hxf +pIG +ueC +ueC +cAl +lSP +odM +oOF +eau ury ury ury @@ -113005,29 +98504,29 @@ xrV ury ury ury -pHq -qJn -dCo -vvm -xts -vLl -vLl -weJ -spt -hxN -oul -skA -oul -oul -fDk -lfD -lfD -lfD -jeO -oul -oul -skA -pXU +odM +nTx +mgX +lSP +uVY +ueC +ueC +sGv +vAm +jle +dcu +ffq +dcu +dcu +cRh +gvG +gvG +gvG +vxR +dcu +dcu +ffq +lzc nRy sLa ndl @@ -113042,7 +98541,7 @@ ndl ndl ndl ndl -tEF +wDM vwY qeX qeX @@ -113063,36 +98562,36 @@ qeX qeX qeX qeX -lmf -kHf -dvB +nXt +kRL +bkB xiQ -sHN -iLK -tUP +nfj +oqE +aJF xiQ -xNK -wQc -mqD +wME +rCk +utC xiQ -qfv -lqP -brl +oXz +shI +ijA vwU -hiO -emF -dwE +aED +ntN +dTe vwU -crH -kZV -bFK -onh +mvf +mTv +jWD +mLK mEI euX -fvM -nkL -atZ -eni +qHV +ifU +vmA +ntD pMu nps nps @@ -113100,36 +98599,36 @@ nps nps nps qii -fvM -mtK +qHV +uCv nLf nLf nLf nLf -qMQ -uPg -htz -tjm +edE +rAu +rXU +qiu oeZ -lmR -jjf -fbc +eTt +iAD +hOs oeZ -lCy -omw -kUG +cBa +aTQ +dSp oeZ -mTP -iiG -lZI +ade +byg +oYu jZE -vwy -aoP -fvN +mYE +hrH +pYi jZE -sJA -rew -dzH +tTj +lKy +sfv qeX qeX qeX @@ -113154,11 +98653,11 @@ vwY qeX qeX qeX -kgF -gej -gej -gej -gej +rdH +hbV +hbV +hbV +hbV ndl ndl ndl @@ -113169,67 +98668,67 @@ ndl ndl uMm hyN -adH -aYB -adH -guI -dRw +hIJ +ttj +hIJ +fZr +lyE kPO daT pSh -xxu -guI -adH -oae -tFm -jDC -iid -rHO -pPn -pPn -rHO -viu -mLG -pPn -xQs +qje +fZr +hIJ +bhe +vkv +xpI +kNq +trk +fen +fen +trk +hUN +yju +fen +ojZ xrV xrV xrV xrV -kBz -gjX -vKM -aJO -fRk -gjX -hAL +kIT +soh +gRW +hMS +bno +soh +dth xrV xrV xrV xrV -xtR -vPL -psM -viu -jDC -pPn -pPn -jDC -cnM -rHO -wek -mZU -oul -npL -rHL +pLH +mUe +srN +hUN +xpI +fen +fen +xpI +uBK +trk +uYd +sPD +dcu +jHq +cGk uHW rwP pee -fnw -npL -oul -skA -oul +bPK +jHq +dcu +ffq +dcu nRy sLa ndl @@ -113240,11 +98739,11 @@ ndl ndl ndl ndl -gej -gej -gej -gej -gjc +hbV +hbV +hbV +hbV +ona vwY qeX qeX @@ -113265,73 +98764,73 @@ qeX qeX qeX qeX -lmf -aru -oDZ +nXt +kfd +qTD xiQ xiQ xiQ xiQ xiQ -gvF -wQc -yjW +kXg +rCk +loj xiQ -vWj -swj -bpI +cyl +tup +tXL vwU vwU vwU vwU vwU -hFp -nJb -oav -hFp +spo +pWv +jXG +spo mEI -vnk -sQL -sQL -sQL -exr -klD +oHN +xmK +xmK +xmK +xAn +mQt dsz dsz -qcQ +bCa dsz dsz -isE -fvM -oSq -rhu -haP -cms +qbB +qHV +qIi +myO +mRz +iJb nLf -iDP -mEi -wJv -iDP +nQt +sfi +bjP +nQt oeZ oeZ oeZ oeZ oeZ -nVh -tYK -wWj +nFJ +mbz +olT oeZ -oBu -lje -xEt +uDM +nLl +sgr jZE jZE jZE jZE jZE -wco -ehX -dzH +vzq +gGO +sfv qeX qeX qeX @@ -113361,87 +98860,87 @@ qeX qeX mOJ qeX -kgF -gej -gej -gej -gej -gej -gej -gej +rdH +hbV +hbV +hbV +hbV +hbV +hbV +hbV tKS -lTe +gJn daT aNq daT qgg -jcx +rnJ kPO -pLq +qVM kPO -djP +vWb sCl daT aNq daT -xts -pDU -iMm -spt -spt -hxN -vvm -qAD -wYC -sty +uVY +hxf +kjG +vAm +vAm +jle +lSP +mgo +hCo +jWi xrV -xMq -itr +sTN +sUD xrV -aJt -ecz -jyI -ecz -uTK -ecz -tfp +haY +fxj +kbc +fxj +uzR +fxj +fMU xrV -jYN -rJL +itp +njz xrV -koI -vXl -fyB -vvm -wfJ -spt -spt -pGS -cQE -nNL +bdY +nHi +gpu +lSP +mlQ +vAm +vAm +haV +oNC +cAl rwP hNB rwP uMj -rgt +dsW apo -gEW +eBj pee -fQz +kqP kUb rwP hNB rwP -nsw +kmr jWf -gej -gej -gej -gej -gej -gej -gej -gjc +hbV +hbV +hbV +hbV +hbV +hbV +hbV +ona qeX qeX qeX @@ -113467,73 +98966,73 @@ qeX qeX qeX qeX -lmf -kHf -wnC +nXt +kRL +vUi xiQ -jwO -mbl +vmz +dLu xiQ -kQx -gyG -mxL -yjW +kxs +qZf +xWd +loj xiQ -vWj -swj -qCI -loF +cyl +tup +xoA +hGY vwU -ntE -fHd +gkP +oPV vwU -crH -kZV -bFK -wGl +mvf +mTv +jWD +wSR mEI -pvg +uSC sco sco -tgj -mCC -bqQ -mZm -bqQ -aQy -eDM -rYK -jxG -nkL -oSq -rhu -bhr -kwB +gCS +vTx +tyT +avd +tyT +fUf +usH +tmS +mBc +ifU +qIi +myO +pzk +akR nLf -kcm -uPg -dua -vlr +naY +rAu +srA +lYD oeZ -dvd -hZn +xqp +wnb oeZ -pqL -xMc -omw -wWj +eGU +cUW +aTQ +olT oeZ -oBu -lje -dFp -aKO +uDM +nLl +akJ +owy jZE -vWr -cUP +akX +vpn jZE -xvI -ehX -dzH +kON +gGO +sfv qeX qeX qeX @@ -113572,69 +99071,69 @@ mOJ mOJ mOJ tKS -lTq +atq daT aNq daT cao -kum +hZD kPO -rGN +jzj kPO -hWD +exq wVA daT aNq dxn -ePK -ghE -ePK -tnb -pDU -oFS -nNw -pGz -pGz -bZO +hMb +eeQ +hMb +eJw +hxf +nGI +gUn +pdC +pdC +rQN xrV -qmd +asA bEJ xrV -erT -ecz -mMN -ecz -cvj -ecz -xtF +mBd +fxj +iyJ +fxj +dYE +fxj +xaE xrV kwT -vOG +jos xrV -pGz -wYs -pGz -nNw -htk -pDU -kps -tTm -gub -tTm +pdC +aYH +pdC +gUn +iOC +hxf +oDj +jWm +jEJ +jWm kRO hNB rwP aWk -oFz +unQ pee -vFy +vJb uHW -ygy +pTG jfO rwP hNB rwP -maT +sOY jWf mOJ qeX @@ -113669,73 +99168,73 @@ qeX qeX qeX qeX -lmf -kHf -dvB +nXt +kRL +bkB xiQ -xFF +fkq drD -eEv +tZY dtJ nsZ -wQc -mqD +rCk +utC xiQ -qfv -swj +oXz +tup vQq fmh -kOA +nyZ blh -vhu +uUm vwU -aej -sdA -wBZ -qHo +pxB +jfJ +ngx +pxz mEI -mTw -mTw -sDZ -grA -mTw +fqC +fqC +tzu +oFD +fqC mEI mEI -aBw -asQ +avF +bjs mEI mEI mEI -lbf -lbf +eXu +eXu nLf nLf nLf nLf -iEs -eKK -iEs -oTz +izC +sBK +izC +fel oeZ -drj +vBC pRd -iTf +laq skL toK -omw -kUG +aTQ +dSp oeZ -mTP -lje +ade +nLl ewt quY -ogD +jie inu -kPs +vrL jZE -pHo -fCh -dzH +hdj +nsv +sfv qeX qeX qeX @@ -113775,67 +99274,67 @@ qeX mOJ uMm hyN -nhi -aYB -adH -guI -dRw +vPS +ttj +hIJ +fZr +lyE kPO daT eAJ -xxu -guI -adH -aYB -hgN -ePK -nyw +qje +fZr +hIJ +ttj +qHj +hMb +nKw jlC dBK dBK hxK jlC -ugf -wqO -rbg +rFA +ozS +eIV xrV -xQN +iUl wGz xrV -qpL -ecz -lUQ -ecz -xdY -ecz -oHe +een +fxj +kmW +fxj +iiV +fxj +emO tcn bEJ -pLc +kJy xrV -ugf -gRt -ugf +rFA +pIS +rFA jlC hxK dBK hxK jlC -hQd -tTm -npz -skA -oul -npL -rHL +cvF +jWm +jra +ffq +dcu +jHq +cGk pee rwP dbo -fnw -npL -oul -skA -ndb +bPK +jHq +dcu +ffq +cTm nRy sLa mOJ @@ -113871,73 +99370,73 @@ qeX qeX qeX qeX -lmf -xLt -dvB +nXt +aTj +bkB xiQ xiQ xiQ xiQ gBZ dlG -wQc -yjW +rCk +loj xiQ -vWj -swj +cyl +tup gFp dtb vwU vwU vwU vwU -wBz -kZV -bFK -wGl +wBu +mTv +jWD +wSR mEI -lca -tXS -oSq -omc -kZh +xoz +fVt +qIi +aWy +qrB lFg -jbJ -cCa -mqV -lPR -nwY +lRZ +mwn +mnG +jWE +vOn mEI -hBO -jdy -ckw -byz -cuI +pZZ +wlk +vYH +dIr +mka mEI -bem -uPg -uDx -laP +xKp +rAu +sai +ftb oeZ oeZ oeZ oeZ ryz jbl -omw -wWj +aTQ +olT oeZ -oBu -lje +uDM +nLl uJs qFK jZE jZE jZE jZE -xvI -waV -dzH +kON +xdj +sfv qeX qeX qeX @@ -113977,67 +99476,67 @@ qeX mOJ uMm hyN -caf -aYB -adH -adH -ltj -kgr -jFA -jFA -pDA -adH -adH -aYB -adH -ePK -rdv +mAq +ttj +hIJ +hIJ +ujp +anJ +viS +viS +knW +hIJ +hIJ +ttj +hIJ +hMb +vzz jlC wzy fpM jxB jlC -tim -fMB -aeg +pkU +boT +img xrV -uvk +xfz bEJ xrV -wWd -ecz -ecz -ecz -ecz -ecz -ecz -clh +iAv +fxj +fxj +fxj +fxj +fxj +fxj +ulf bEJ -vOG +jos xrV -tim -rSx -kqp +pkU +vGu +gJc jlC cST fpM akF jlC -gRf -tTm -oul -skA -oul -oul -xWe -nPY -nPY -nPY -gKD -oul -oul -skA -gCl +hTv +jWm +dcu +ffq +dcu +dcu +mhB +tOT +tOT +tOT +fiM +dcu +dcu +ffq +rxf nRy sLa mOJ @@ -114073,73 +99572,73 @@ qeX qeX qeX qeX -lmf -kHf -dvB +nXt +kRL +bkB xiQ -xFF +fkq drD -uUq +dOt dtJ nsZ -wQc -yjW +rCk +loj xiQ -vWj -swj +cyl +tup vQq fmh -nyb +jaF blh -vhu +uUm vwU -crH -kZV -bFK -wGl +mvf +mTv +jWD +wSR mEI -qHi +cca nNg cXG dGA -pGs +qiT mEI -lGi -ieH +dVP +heD qme rUA -ixc -niK -fTM +hXX +nHv +gUR nVG fIC jdV -hTs +jFh qjy -dOQ -uPg -uDx -laP +byh +rAu +sai +ftb oeZ -drj +vBC pRd -qzA +rYE skL toK -omw -wWj +aTQ +olT oeZ -oBu -lje +uDM +nLl ewt quY -tlB +uFx jms -kPs +vrL jZE -oTI -rnf -dzH +pLj +bBk +sfv qeX qeX qeX @@ -114178,69 +99677,69 @@ qeX qeX mOJ tKS -lNe +aGQ daT xqY aBf -adH -adH -adH -adH -adH -adH -adH +hIJ +hIJ +hIJ +hIJ +hIJ +hIJ +hIJ daT aNq daT -ePK -rdv +hMb +vzz jlC fpM fpM fpM jlC -tim -fMB -aeg +pkU +boT +img xrV -wVu +mdB bEJ xrV -mqh -ecz -uiU -ecz -xsJ -ecz -isK +leq +fxj +kZQ +fxj +mey +fxj +agx tcn bEJ -ogu +rqA xrV -tim -rSx -kqp +pkU +vGu +gJc jlC fpM iNc fpM jlC -raV -tTm +fvu +jWm rwP aaD sQM -oul -oul -oul -oul -oul -oul -oul +dcu +dcu +dcu +dcu +dcu +dcu +dcu rwP hNB rwP -fXe +xFI jWf mOJ qeX @@ -114275,73 +99774,73 @@ qeX qeX qeX qeX -lmf -dvB -kHf +nXt +bkB +kRL xiQ -uPI -lDY +fBO +tMQ xiQ -oNk -xnH -wQc -pOd +yjL +gcz +rCk +tyX xiQ -buR -swj -kon -qIM +rnY +tup +mvw +bJn vwU -iIB -orM +whG +xfG vwU -crH -lPV -xtn -wGl +mvf +igk +icw +wSR mEI -jQh +pFS hAq ijz mCw -hjC +isp mEI -hVf +tSo frW -bPB -unC -eQG -oSq -fTM +vVp +wFX +mfY +qIi +gUR bvw aXJ lee -kuR +nzg qjy -dOQ -tqK -gYv -laP +byh +rHK +gQc +ftb oeZ -dii -twx +fSE +iob oeZ -wun -eWu -omw -aLR +dyX +uNC +aTQ +xqa oeZ -dzo -lje -jeU -rli +mKQ +nLl +qrJ +ttM jZE -fCa -wuv +icc +tya jZE -wco -ehX -dzH +vzq +gGO +sfv qeX qeX qeX @@ -114380,33 +99879,33 @@ qeX qeX mOJ tKS -dzx +csf daT vWB pIl mna -tFm +vkv pIl pIl pIl -tFm +vkv mna pIl pfD daT -ePK -hOb +hMb +xzc jlC jlC jlC jlC jlC -isS -fMB -aeg +xaa +boT +img xrV ury -dMp +azx xrV xrV tcn @@ -114416,33 +99915,33 @@ tcn tcn xrV xrV -jVv +gvm ury xrV -tim -rSx -kqp +pkU +vGu +gJc jlC jlC jlC jlC jlC -atl -tTm +asK +jWm rwP sub jEl tUH -wek +uYd jEl jEl jEl -wek +uYd tUH jEl cvH rwP -nIA +oSL jWf mOJ qeX @@ -114477,73 +99976,73 @@ qeX qeX qeX qeX -lmf -sNm -kHf +nXt +sej +kRL xiQ xiQ xiQ xiQ -gqK -gug -gOC +wQC +fyZ +url xiQ xiQ vwU -lwx -sxr -aut +fbI +wxA +xUL vwU vwU vwU vwU -crH -iAN -doP -cFT +mvf +kTz +mos +imX mEI -xpV +acU nNg xxf gPK -slR +fVE mEI -bjW +mDQ dze sco sco fRW mEI -mpv -iVB -dDJ -bZi -fro +qcZ +ntr +sXq +dQg +kyN uEt -hFl -cgT -uPg -laP +nxR +sFp +rAu +ftb oeZ oeZ oeZ oeZ -ghV -nBO -cdX +itP +dqo +weD oeZ oeZ jZE -mhZ -tmh -uzC +aHQ +xOT +iqS jZE jZE jZE jZE -cFg -sBX -dzH +bOV +jEf +sfv qeX qeX qeX @@ -114587,59 +100086,59 @@ daT daT daT daT -adH +hIJ daT daT daT -adH +hIJ yax daT -adH +hIJ thQ -ePK -rdv -xxm +hMb +vzz +nLv jlC jlC jlC jlC -tim -fMB -aeg +pkU +boT +img xrV -suP +wgr bEJ ury -wHp -pDl -upO -nzm -vZQ -osM -wgU +lAs +ovt +ghq +sVs +abc +qtJ +drc ury krD -sYN +ala xrV -tim -rSx -jGS +pkU +vGu +pvL aBl aBl aBl aBl aBl -gRf -tTm +hTv +jWm rwP uIQ rwP rwP -lyZ +rbi rwP rwP rwP -oul +dcu rwP rwP rwP @@ -114675,81 +100174,81 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -dvB -dvB +nXt +nXt +nXt +nXt +nXt +bkB +bkB xiQ -cVX -kfl -dsT -eEq -csi -aQr -tVB +dEZ +xYB +gKw +fcl +dvY +bxa +gMI quk -ggJ -rwo -uAg -qNl -loF -crf -cvC +dUg +aLE +jSW +lag +hGY +gex +hQo hCO -crH -iAN -xjZ -wlT +mvf +kTz +toH +cfj mEI -eYM -lRJ -cqH -nTr -jYE +oNo +fIU +nbp +nGK +aUA mEI -ggN -oyP -hgJ -jIu -qFH +xrw +cWV +aTi +kbT +cbE mEI mEI -jTP -jTP +qxe +qxe mEI mEI mEI -hMV -sbS -uPg -laP +qyF +tUT +rAu +ftb oAQ -fZg -vjh -hBP -iOH -eBs -sRc -tmE +deU +jlu +liZ +dab +bkp +prc +lCQ oAQ -oBi -dKd -dNr -bRN -fJE -fJE -pBX +ujT +lga +lED +gRv +tcV +tcV +ncs jZE -xvI -ehX -dzH -dzH -dzH -dzH -dzH +kON +gGO +sfv +sfv +sfv +sfv +sfv qeX qeX qeX @@ -114787,63 +100286,63 @@ uMm uMm uMm uMm -adH +hIJ kPO -adH +hIJ kPO -adH -ePK -ePK -ePK -ePK -ghE -ePK -ePK -rdv -cbV -ePK -ePK -ePK -ePK -tim -fMB -aeg +hIJ +hMb +hMb +hMb +hMb +eeQ +hMb +hMb +vzz +iiz +hMb +hMb +hMb +hMb +pkU +boT +img xrV -lFJ +mVU bEJ -vxd +pCR bEJ bEJ bEJ -vYZ +gFF rfP rfP fgM -kTf +wxi bEJ -auM +hzj xrV -tim -uST -bDN +pkU +bpN +edx aBl -dNe -umq -imx +rrv +faE +dau aBl -gRf -tTm -tTm -tTm -tTm -iUR -tTm -tTm -oul +hTv +jWm +jWm +jWm +jWm +tGY +jWm +jWm +dcu pee -oul +dcu pee -oul +dcu sLa sLa sLa @@ -114877,33 +100376,33 @@ qeX qeX qeX qeX -lmf -oUq -toO -hyY -uPb -kHf -dvB -nba +nXt +nwp +mVu +rYO +aTV +kRL +bkB +bvO hLY suE suE -pOw -cex -oYm -tVB +rBh +bbL +qmp +gMI quk blh -hmk -qML -qlV +iXH +cMz +kSA ixG -jaS -cvC +idY +hQo hCO -crH -pQz -xRU +mvf +tOp +uIn mEI mEI mEI @@ -114913,45 +100412,45 @@ mEI mEI mEI mEI -ygW +tmQ mEI mEI mEI mEI -eGB -jpo -eGB -eGB -jpo +xQd +qtR +xQd +xQd +qtR mEI mEI -qOL -peL -laP +wxQ +uAE +ftb oAQ -pYy -vZs +jDZ +jKc gPN -qby -aYM -kOw +pIW +kYj +bgD pRd oAQ -aLj -twP -tSp -ixv +rBo +nWn +wqC +qyV mMy mMy pcc -reB -whp -waV -aMs -ncW -fSq -bsI -dzH +cYa +pAI +xdj +mQM +mBl +wiW +hBy +sfv qeX qeX qeX @@ -114985,71 +100484,71 @@ qeX qeX qeX qeX -tag +ihr ndl ndl uMm -adH +hIJ kPO -adH +hIJ kPO -adH -ePK -wEe -jpL -ePK -kww -ePK -xcm -rdv -hOb -ePK -hOb -hOb -ePK -jok -dFx -aeg +hIJ +hMb +bmU +jOt +hMb +keV +hMb +daX +vzz +xzc +hMb +xzc +xzc +hMb +nRV +qNH +img xrV xrV xrV xrV -ooJ -ooJ -sAz -mlG -xyn -ooJ -ooJ +ftJ +ftJ +jlt +eql +lAr +ftJ +ftJ xrV xrV xrV xrV -xNg -rSx -kqp +rVx +vGu +gJc aBl -pev +sno kkV -qfq +jmk aBl -gRf -eAK -tTm -ptc -sMM -gxI -nwb -tTm -oul +hTv +lXw +jWm +xOX +vPM +aft +eXM +jWm +dcu pee -oul +dcu pee -oul +dcu sLa ndl ndl -tEF +wDM qeX qeX qeX @@ -115079,81 +100578,81 @@ qeX qeX qeX qeX -lmf -xqc -dvB -dvB -dvB -dvB -dvB +nXt +qLA +bkB +bkB +bkB +bkB +bkB xiQ -mFf -rBM -rBM -eba -gvF -wQc -tVB +vLg +iBr +iBr +wqB +kXg +rCk +gMI quk blh -rYo +xqQ vQq lXa duK -jaS -cvC +idY +hQo hCO -crH -iAN -oSz -aTz -dXA -acm -gLl -acm -acm -fQU -mGT -mGT -mGT -abk -acm -acm -mGT -jBv -acm -hQK -mGT -acm -acm -aTz -tcu -uPg -laP +mvf +kTz +fGT +pfr +yim +cTB +wUQ +cTB +cTB +iVA +qOz +qOz +qOz +bLK +cTB +cTB +qOz +sBY +cTB +lva +qOz +cTB +cTB +pfr +bSE +rAu +ftb oAQ -pYy -vZs +jDZ +jKc ybK kim toK -ylG +tyC pRd oAQ -aLj -lje -xgX -wEf -tuX -tuX -nVH +rBo +nLl +lUX +eJJ +wyg +wyg +aeG jZE -ehX -ehX -ehX -ehX -ehX -waV -dzH +gGO +gGO +gGO +gGO +gGO +xdj +sfv qeX qeX qeX @@ -115187,71 +100686,71 @@ qeX qeX qeX qeX -tag +ihr ndl ndl uMm -adH -oFx -exe -adH -bDr -ePK -rdv -xRJ -ePK -dUp -ePK -xGG -fsN -hnX -rEt -fsN -fsN -rEt -yjb -dFx -aeg +hIJ +syu +tBh +hIJ +ucz +hMb +vzz +lWc +hMb +kkU +hMb +sRq +jIR +rze +uqS +jIR +jIR +uqS +bFE +qNH +img ury -cwF -iLU +wia +rRG xrV xrV xrV xrV -bqr +tJJ xrV xrV xrV xrV -qcj -fCZ +mAY +mCs ury -tim -uST -yjb +pkU +bpN +bFE uoV -sQx +bXF mry -lum +cOU aBl -mKk -iAa -tTm -hAz -lRl -gxI -iWt -tTm -oul -aXx -rLy -oul -lyZ +peZ +aUn +jWm +lzn +xxD +aft +woh +jWm +dcu +nnd +fYP +dcu +rbi sLa ndl ndl -tEF +wDM qeX qeX qeX @@ -115281,81 +100780,81 @@ qeX qeX qeX qeX -lmf -hKX -dvB +nXt +ohN +bkB xiQ xiQ xiQ xiQ xiQ xiQ -xcM -kSn -bcn -tKq -eQg +uxW +qim +wMg +xQm +vgW xiQ xiQ -aTg -rYo -vXW +mHt +xqQ +gWz wbN wbN -jaS +idY vwU vwU -qHo -jJR -sdD -gfa -gfa -jyZ -gfa -gfa -gfa -gfa +pxz +nCz +jqC +hBz +hBz +lBc +hBz +hBz +hBz +hBz gwb gwb gwb -dUL +qOH gwb gwb gwb -gfa -gfa -gfa -jyZ -gfa -gfa -gfa -uqg -eKK -aiF +hBz +hBz +hBz +lBc +hBz +hBz +hBz +ncL +sBK +tLj oeZ oeZ -iSS +yiy aNE aNE toK -ylG -pwo +tyC +qdv oeZ jZE -tzs -xBB -mCF -vOO -aor +sae +kUT +kPw +qDF +jLR jZE jZE jZE jZE jZE jZE -ehX -fCh -dzH +gGO +nsv +sfv qeX qeX qeX @@ -115389,71 +100888,71 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -dFv -ePK -ePK -ePK -ghE -ePK -ePK -jnv -xRJ -ePK -xrG -ePK -qOt -rdv -eqm -ePK -hOb -hOb -ePK -wBb -fMB -gGA -iwv -hVg -wVk -gpH -gpH -gpH -cHb +lwZ +hMb +hMb +hMb +eeQ +hMb +hMb +afW +lWc +hMb +dWH +hMb +omR +vzz +plQ +hMb +xzc +xzc +hMb +nBL +boT +ahw +cMA +vLZ +ahC +ote +ote +ote +dcv fRY -eIa -gpH -gpH -gpH -wVk -bNT -xOp -xtR -rSx -ydF +xIl +ote +ote +ote +ahC +wCv +kGB +pLH +vGu +fyy aBl -rrz +wuy pIv -lVC +fPK aBl -gxI -kCm -tTm -rOD -lRl -gxI -aJy -tTm -tTm -tTm -tTm -iUR -tTm -izO +aft +xVm +jWm +gKv +xxD +aft +uEe +jWm +jWm +jWm +jWm +tGY +jWm +uRn ndl ndl -gjc +ona qeX qeX qeX @@ -115483,81 +100982,81 @@ qeX qeX qeX qeX -lmf -kHf -dvB +nXt +kRL +bkB xiQ -bJO -rXr -egC -rXr -dsT -eEq -xID +aOV +iHp +jAz +iHp +gKw +fcl +jeC raj mDx -cKQ -gOf +dvE +wjV xiQ vwU -vQQ -pcU +nbj +cGP lkL oAl -jaS -rNk +idY +lJM vwU -crH -rnz -crH +mvf +dGm +mvf rdo -hpP +sel hpm rdo nlK -kbm +tXI hpm hmy -feV -iHg +leQ +mWE hJA -aid -dKo +aoh +cxn gwb aoN -kbm +tXI rBb lrq htD -kbm +tXI ojs -tjm -uPg -laP +qiu +rAu +ftb oeZ -mUr -vZs +imR +jKc gPN gPN -wpI -hET +lWM +eSP oeZ oeZ -awk -lje +nUy +nLl ocu jPn -lyd -bRN -fTk -vzm -wIG -vzm -fJE +hdU +gRv +nxE +laJ +uvV +laJ +tcV jZE -waV -waV -dzH +xdj +xdj +sfv qeX qeX qeX @@ -115592,32 +101091,32 @@ qeX qeX qeX qeX -tag +ihr ndl -dFv -vLX -iWm -ePK -xrG -cfN -ePK -yev -xRJ -ePK -kww -ePK -pWi -rdv -cbV -ePK -hOb -cbV -ePK -ygP -jaz -qEp -nhZ -jHj +lwZ +leu +vtT +hMb +dWH +enX +hMb +vwB +lWc +hMb +keV +hMb +edP +vzz +iiz +hMb +xzc +iiz +hMb +uhk +hZZ +pHy +hoH +xpW qnK qnK qnK @@ -115629,32 +101128,32 @@ qnK qnK qnK qnK -iZP -rhg -rlC -jZU -vKY +igl +jAU +pDb +oaw +kSw aBl -xvq -vrA -hvh +jvW +kfQ +wvj aBl -gxI -lRl -xGl -gxI -gxI -gxI -lRl -lRl -eZU -lRl -lRl -gxI -lRl -izO +aft +xxD +xco +aft +aft +aft +xxD +xxD +aRN +xxD +xxD +aft +xxD +uRn ndl -tEF +wDM qeX qeX qeX @@ -115685,81 +101184,81 @@ qeX qeX qeX qeX -lmf -kHf -kHf +nXt +kRL +kRL xiQ drD drD -aAe +qzN drD drD -tzW -xID +did +jeC nZA gBf -cKQ -mHC +dvE +dMV xiQ -ggJ -rYo +dUg +xqQ lco wry rUX -jaS -brs +idY +pVy vwU -crH -rnz -crH +mvf +dGm +mvf rdo -rja +usE lCH rdo hpm -wmn +mTn hpm pHL -sqv -ecZ +xtQ +qGr plz eON ejU pHL lrq -wmn +mTn gtI lrq gtI -wmn +mTn ojs -tjm -uPg -laP +qiu +rAu +ftb oeZ -sFf -vZs +dZt +jKc myC ddZ qjN -ylG -dOY +tyC +jSG oeZ -xmT -lje +pyR +nLl uyU tsg -lyd -xjn +hdU +jVH inu inu -ygc +izu inu inu jZE -waV -nMf -dzH +xdj +kQY +sfv qeX qeX qeX @@ -115794,32 +101293,32 @@ qeX qeX qeX qeX -tag +ihr ndl -dFv -cjz -pnv -ePK -ahJ -cfN -ePK -ghE -ePK -ePK -dUp -ePK -hOb -rdv -hOb -ePK -tFL -uWG -ePK -qAD -eIw -hIG -xOp -qwN +lwZ +lmA +dIo +hMb +vjr +enX +hMb +eeQ +hMb +hMb +kkU +hMb +xzc +vzz +xzc +hMb +xqL +dGd +hMb +mgo +tni +jof +kGB +xSI fhM fhM fnr @@ -115831,32 +101330,32 @@ fnr fnr fhM fhM -iXp -xOp -qAD -eIw -jRT +tcT +kGB +mgo +tni +rwI aBl aBl aBl aBl aBl -gxI -nAy -tTm -tbN -lRl -gSg -fjd -wgy -tjx -tjx -tjx -vmr -lRl -izO +aft +pRf +jWm +xHa +xxD +hOk +ffl +njy +bBj +bBj +bBj +hdB +xxD +uRn ndl -tEF +wDM qeX qeX qeX @@ -115887,81 +101386,81 @@ qeX qeX qeX qeX -lmf -oQE -kHf +nXt +iZT +kRL xiQ drD drD -aAe +qzN drD drD -tzW -xID -oxW +did +jeC +cqe dGC -cKQ +dvE xiQ xiQ blh -rYo +xqQ sul tZq -dWf -jaS +jUf +idY vwU vwU -sAw -rnz -crH +aBj +dGm +mvf rdo -qnY +lrT hpm rdo hpm -mYv +lgm hpm pHL -weS -ecZ +osG +qGr fQp sYw mcI pHL lrq -sKk +rmd gtI lrq gtI -sKk +rmd ojs -tjm -uPg -laP +qiu +rAu +ftb oeZ oeZ -fWS -rHM -pPW +sft +rBL +jgO rwJ -ylG +tyC pRd oeZ jZE -pVQ +blH nkS -ijf -lyd -xjn +kxL +hdU +jVH inu inu -ygc +izu inu inu jZE -waV -kMi -dzH +xdj +dAG +sfv qeX qeX qeX @@ -115996,32 +101495,32 @@ qeX qeX qeX qeX -tag +ihr ndl -dFv -iWm -avz -oSI -rdv -hOb -atB -hOb -bnK -rdv -rdv -oSI -rdv -rdv -hOb -ePK -ePK -ePK -ePK -pGz -cgs -oCn +lwZ +vtT +apb +hcq +vzz +xzc +dyV +xzc +xvC +vzz +vzz +hcq +vzz +vzz +xzc +hMb +hMb +hMb +hMb +pdC +yfw +iMH eOJ -iSi +jfz fnr fnr ipn @@ -116033,32 +101532,32 @@ fnr fnr fnr fnr -gOR +wtE eOJ -pGz -cgs -pGz +pdC +yfw +pdC rtx rtx rtx rtx rtx -iuZ +gVd rtx rtx -tTm -aJy -gxI -kAc -jau -uWo -nyh -kbV -vPX -nAy -izO +jWm +uEe +aft +sLE +sQz +wKP +qha +bue +edr +pRf +uRn ndl -tEF +wDM qeX qeX qeX @@ -116089,81 +101588,81 @@ qeX qeX qeX qeX -lmf -aru -nfS +nXt +kfd +drV xiQ -jGk -bQZ -eeM -bQZ -pav -eEq -aNQ -uZh +cdG +elw +kkx +elw +xwo +fcl +vLz +uiw dtJ -hFz -tVB +oOO +gMI quk -iuE -cWv -iXA -iXA -weU -jaS -cvC +dVy +mlj +bKl +bKl +tzZ +idY +hQo hCO -crH -rnz -crH +mvf +dGm +mvf rdo -txL +duI hpm rdo -xsM -kbm +hfU +tXI hpm pHL -pEW -ecZ +vzi +qGr fQp fQp rMS pHL lrq -kbm +tXI gtI lrq gtI -kbm +tXI ojs -tjm -uPg -laP +qiu +rAu +ftb oAQ -pYy -neR -dWc -hRK -edb -sXI -fYV +jDZ +vQs +rLf +pCq +xpk +bwz +hkY oAQ -aLj -lje +rBo +nLl wSd -iWW -ozs -bRN -ptt -wmq -shi -wmq -pWW +rwV +xug +gRv +kFZ +orU +xjb +orU +rdu jZE -waV -oug -dzH +xdj +xVq +sfv qeX qeX qeX @@ -116198,32 +101697,32 @@ qeX qeX qeX qeX -tag +ihr ndl -dFv -ils -qwk -ePK -rdv -ajL -rCJ -iES -rdv -hOb -sWb -ePK -hOb -rdv -hOb -ePK -gNZ -bKt -ePK -dbL -lGn -qJn +lwZ +xFM +kOr +hMb +vzz +iJZ +gJT +cYL +vzz +xzc +fbq +hMb +xzc +vzz +xzc +hMb +lZr +iXi +hMb +hhX +iHt +nTx plp -qwN +xSI fnr fnr vvz @@ -116235,32 +101734,32 @@ fnr fnr fhM fnr -iXp +tcT plp -ugf -lGn -rLX +rFA +iHt +bPo rtx -dmL -fbM -aQP -uLs +saR +gdH +lyq +kha dCm -nuI +bSA rtx -hJN -vNb -gxI -kAc -aJy -cyq -cyq -cyq -vPX -lRl -izO +jyA +iLv +aft +sLE +uEe +uqJ +uqJ +uqJ +edr +xxD +uRn ndl -tEF +wDM qeX qeX qeX @@ -116291,81 +101790,81 @@ qeX qeX qeX qeX -lmf -xLt -wnC +nXt +aTj +vUi xiQ xiQ xiQ xiQ xiQ xiQ -psE -aNQ +uFb +vLz eAf -iti -oup -tVB +uMv +jMR +gMI quk blh blh blh blh -ntK -jaS -cvC +pCC +idY +hQo hCO -qHo -tJN -qHo +pxz +kyw +pxz uYU -rSc -jNh +ryq +fLi rdo hpm -wmn +mTn hpm gwb fhF fhF -aTd +dGs fhF fhF gwb lrq -wmn +mTn gtI lrq gtI -wmn +mTn thq -wIX -eKK -oTz +qGb +sBK +fel oAQ -pYy -jjM -tAM +jDZ +mjC +uVU pRd pRd pRd pRd oAQ -aLj -ubw -nIH +rBo +fuW +fgH bVJ -ptO -jzK +eXh +qrQ jZE jZE jZE jZE jZE jZE -joU -rew -dzH +grP +lKy +sfv qeX qeX qeX @@ -116395,79 +101894,79 @@ qeX qeX qeX qeX -fDe -wgJ -wgJ -wgJ -wgJ +wAV +wtY +wtY +wtY +wtY ndl ndl -dFv -ePK -ePK -ePK -xrG -fUP -eMU -uWh -rdv -hOb -pqE -ePK -mfp -rdv -hOb -ePK -hOb -hOb -ePK -tim -vgx -sCZ +lwZ +hMb +hMb +hMb +dWH +iVs +wHK +kfX +vzz +xzc +hVB +hMb +nbq +vzz +xzc +hMb +xzc +xzc +hMb +pkU +kFL +dWk tqN -wya +wAv cwU -kWc -epn -bQo -bQo -tDT -tDT -qAp -pQH +gAQ +cmq +iHZ +iHZ +prY +prY +hDj +dqb fhM fhM -ckq +vZr plp -tim -fMB -kqp +pkU +boT +gJc rtx -mNc -mQY -fmA -iPP +xvA +uSh +bGw +uNQ dCm -wfS +uIi rtx -lkC -lRl -gxI -kAc -tTm -cXd -lRl -twb -sxb -seC -izO +kbo +xxD +aft +sLE +jWm +mDl +xxD +kXH +qXN +rHG +uRn ndl ndl -wgJ -wgJ -wgJ -wgJ -wgf +wtY +wtY +wtY +wtY +bhQ qeX qeX qeX @@ -116493,81 +101992,81 @@ qeX qeX qeX qeX -lmf -mPf -dvB +nXt +tNK +bkB xiQ -bJO -rXr -egC -rXr -dsT -eEq -jVj +aOV +iHp +jAz +iHp +gKw +fcl +mNq vkw -hFz -aAe -tVB +oOO +qzN +gMI quk -jeu -gDY -qWV -sqB -jov -ifI -cvC +wxb +noT +rch +rot +jrm +lOx +hQo hCO -crH -rnz -crH -oaM -ecH -kbn -wsU -iqn -nlM -nbZ -lMf -bvX -hMh -rSc -ebe -bvX -lMf -iqn -cNR -nbZ -wsU -iQs -tAf -oaM -tjm -uPg -laP +mvf +dGm +mvf +taG +nEW +dWF +iue +nYV +ldL +tMO +wXa +rcm +lIm +ryq +elH +rcm +wXa +nYV +nCM +tMO +iue +obR +ivM +taG +qiu +rAu +ftb oAQ -pYy -spq -fjF -vVU -qEe -vVU -qEe +jDZ +aAX +wUd +xRW +lYb +xRW +lYb oAQ -aLj -ygc -olS +rBo +izu +bhJ edS -jqL -bRN -wIG -vzm -fTk -vzm -fJE +uSR +gRv +uvV +laJ +nxE +laJ +tcV jZE -gMW -waV -dzH +uGq +xdj +sfv qeX qeX qeX @@ -116597,79 +102096,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -dlI -hOb -oSI -rdv -fUP -iWm -pOx -rdv -ajL -hwS -ePK -pWi -rdv -eqm -ePK -hOb -hOb -ePK -eyA -vgx -aeg +lwZ +ilX +xzc +hcq +vzz +iVs +vtT +opn +vzz +iJZ +uiB +hMb +edP +vzz +plQ +hMb +xzc +xzc +hMb +fdZ +kFL +img plp -kRJ -kgi -aaw +fql +aBa +wzR eOJ efu efu -uKL -csk +kBI +pYn eOJ -trN +qlT fnr fnr -smV +gtd plp -tim -fMB -kqp +pkU +boT +gJc rtx -fmA -iPP -fmA -smg +bGw +uNQ +bGw +pjk dCm -fmA +bGw rtx -gdI -lRl -gxI -kAc -tTm -nZG -vNb -gBx -wVj -lRl -izO +naM +xxD +aft +sLE +jWm +qvC +iLv +vYL +bVS +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -116695,81 +102194,81 @@ qeX qeX qeX qeX -lmf -vji -dvB +nXt +tkb +bkB xiQ drD drD -aAe +qzN drD drD -cDb -nrX +cVM +akl jYJ -cKQ -cHD +dvE +cKO xiQ xiQ vwU vwU vwU vwU -tKG -ovi +xQt +qZK vwU vwU -crH -pQz -geS -gPL -yhT -jiS -wOt -bHv -gRQ -bHv -bHv -bHv -ebe +mvf +tOp +imP +ulw +mhs +kKb +rzy +bOX +aEW +bOX +bOX +bOX +elH krR -hMh -bHv -bHv -bHv -gRQ -bHv -wDJ -iAT -yhT -gPL -qlJ -peL -laP +lIm +bOX +bOX +bOX +aEW +bOX +aQU +wil +mhs +ulw +aIB +uAE +ftb oeZ oeZ -xOS -fsK +doT +jQW oeZ oeZ oeZ oeZ oeZ jZE -juB -axk +aNp +qJM bOE -hZz -xjn +qoY +jVH inu inu -ygc +izu inu inu jZE -ehX -waV -dzH +gGO +xdj +sfv qeX qeX qeX @@ -116799,79 +102298,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -dlI -kUA -ePK -has -fUP -ils -nrq -rdv -fUP -qJN -ePK -qwk -rdv -rdv -oSI -rdv -rdv -oSI -pDU -vgx -xLX +lwZ +ilX +dQC +hMb +vOg +iVs +xFM +fxk +vzz +iVs +vnp +hMb +kOr +vzz +vzz +hcq +vzz +vzz +hcq +hxf +kFL +saq eOJ eOJ eOJ eOJ eOJ -gLg -hVg -wVk -eOb +hXl +vLZ +ahC +cXr plp -trN +qlT fhM fhM -smV +gtd eOJ -tim -vgx -pDU -ond +pkU +kFL +hxf +jJH dCm dCm dCm dCm dCm -uUs +mpo rtx -tTm -aJy -pVs -kAc -tTm -tTm -tTm -tTm -dbh -lRl -izO +jWm +uEe +fwB +sLE +jWm +jWm +jWm +jWm +diI +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -116897,33 +102396,33 @@ qeX qeX qeX qeX -lmf -kXF -dvB +nXt +fdz +bkB xiQ drD drD -aAe +qzN drD drD -cDb -jmS -vHi -dIc -aAe +cVM +rvu +rZu +qtF +qzN xiQ -bJO -jSw -bGV -jSw -ggJ -bty +aOV +fXv +iut +fXv +dUg +vgH blh -xtM +lKY vwU -vgC -rnz -aac +dSm +dGm +riR rdo jgC jgC @@ -116945,33 +102444,33 @@ lOp lOp lOp rdo -tiU -uPg -oiL +rGT +rAu +wBx oeZ -dOY +jSG dKp -onx -xJG -uuH -eGA -uuH -dOY +atk +tMX +jft +qMC +jft +jSG jZE -sJl -vNF -rli -wwm -xjn +elB +mAL +ttM +cId +jVH inu inu -ygc +izu inu inu jZE -waV -fCh -dzH +xdj +nsv +sfv qeX qeX qeX @@ -117001,79 +102500,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -bJp -pBg -ePK -rdv -dCK -gNP -bbA -rdv -fUP -iWm -ePK -iWm -rdv -hOb -ePK -hOb -hOb -bWZ -tim -vgx -fmu +lwZ +gIz +fBt +hMb +vzz +pQr +sIv +mlW +vzz +iVs +vtT +hMb +vtT +vzz +xzc +hMb +xzc +xzc +vrZ +pkU +kFL +kGD eOJ -gQK -pRl -ubM +piU +rGH +eeO eOJ -vqh -qwN +utW +xSI fhM -iXp +tcT plp -trN +qlT fhM fhM -smV +gtd eOJ -isS -fMB -kqp +xaa +boT +gJc rcD -iPP -mye -iuk -iZv +uNQ +vcj +tfO +dcP dCm -kQM -vlf -gxI -nmY -gxI -hBQ -guG -bTj -bTj -bTj -nxW -lRl -izO +eiL +ueB +aft +bQF +aft +vnn +hQu +lkt +lkt +lkt +kxO +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -117099,81 +102598,81 @@ qeX qeX qeX qeX -lmf -trI -dvB +nXt +dAe +bkB xiQ -jGk -bQZ -eeM -bQZ -pav -eEq -iLX -rbW -fsw -aAe -fBz +cdG +elw +kkx +elw +xwo +fcl +nND +xqP +lIT +qzN +mmu drD blh -srh +rVg blh blh -bty +vgH blh blh -uFH -crH -iAN -crH +ycH +mvf +kTz +mvf rdo -rEi -dvg -pln -pQy -kDe -pQy -pQy -pQy -gby +dLe +dND +ddi +kFw +hhe +kFw +kFw +kFw +tCy qnf -gby -pQy -pQy -pQy -kDe -pQy -sAs -aCL -vDa +tCy +kFw +kFw +kFw +hhe +kFw +gkO +nLL +xJP rdo -tjm -uPg -laP -pLG +qiu +rAu +ftb +pha pRd dKp -onx +atk pRd pRd -qes +fAD pRd pRd -fwU -ygc -hrD -rUi -ioA -bRN -shi -wmq -ptt -wmq -pWW +pHi +izu +acN +mhL +cUS +gRv +xjb +orU +kFZ +orU +rdu jZE -ehX -xbP -dzH +gGO +jxU +sfv qeX qeX qeX @@ -117203,79 +102702,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -ePK -ePK -ePK -xrG -hOb -hOb -hIq -rdv -hsd -cvD -ePK -iWm -rdv -cbV -ePK -rnh -nAO -bWZ -tim -vgx -fmu +lwZ +hMb +hMb +hMb +dWH +xzc +xzc +qTT +vzz +mDa +iFl +hMb +vtT +vzz +iiz +hMb +viL +eiH +vrZ +pkU +kFL +kGD eOJ -jxC +tmA fhM -iXp +tcT eOJ -oYB -pZH +boV +tzT lOP -iXp -mnr -hPd -gxe -wLz -ayJ +tcT +qFh +cRW +jEv +gcX +mjc eOJ -tim -fMB -kqp +pkU +boT +gJc rcD -xAE -naR +ksk +cie rtx rtx -doB +tZb rtx rtx -tTm -afq -gxI -wBK -jpQ -qhQ -jpQ -jpQ -tmq -lRl -izO +jWm +hPN +aft +vMU +nkG +dGu +nkG +nkG +nNS +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -117301,81 +102800,81 @@ qeX qeX qeX qeX -lmf -xqc -dvB +nXt +qLA +bkB xiQ xiQ xiQ xiQ xiQ xiQ -rpY -fpo +epR +bcL iqx -fNF -gWG -iso -cfu -fce -fce -fce -fce -brn -qRs -qRs -wFj -sWB -iTo -crH +krO +nfA +uwE +rtQ +vdG +vdG +vdG +vdG +wst +llN +llN +ggj +aJu +vKP +mvf cxP -kjg +ucq hpm -jMm -qFk -qFk -qFk -qfD -qFk -qFk +sXa +dfD +dfD +dfD +mIO +dfD +dfD qnf -qFk -qFk -qfD -qFk -qFk -qFk -rRX +dfD +dfD +mIO +dfD +dfD +dfD +uyj hpm -vCc +pzv kma -tjm -gTj -rQQ -mfi -qjJ -ibl -gHJ -qjJ -qjJ -qjJ -qjJ -qjJ -bmq -xGZ -kMH +qiu +qGA +qDp +wXT +iEy +xsv +mxU +iEy +iEy +iEy +iEy +iEy +lhA +nLW +bjB inu -prL -ono +mbE +nvo jZE jZE jZE jZE jZE jZE -ehX -iYy -dzH +gGO +szd +sfv qeX qeX qeX @@ -117405,79 +102904,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -hOb -wNG -uhN -rdv -hOb -ePK -ePK -ghE -ePK -ePK -ePK -qJN -rdv -hOb -ePK -ePK -ePK -ePK -tim -vgx -fmu +lwZ +xzc +lbm +fHj +vzz +xzc +hMb +hMb +eeQ +hMb +hMb +hMb +vnp +vzz +xzc +hMb +hMb +hMb +hMb +pkU +kFL +kGD eOJ -jxC +tmA fhM -iXp +tcT eOJ -rVy -qwN +fdG +xSI oyi -iZP -sKc -bUU -cPq -xSx -oYB +igl +ecd +lVL +alm +vdL +boV eOJ -tim -vgx -kqp +pkU +kFL +gJc rtx rtx rtx rtx -pml +bdL nJl -cNp -fgd +cPy +eDi iVS -tTm -iUR -tTm -tTm -tTm -tTm -tTm -xZC -nAy -izO +jWm +tGY +jWm +jWm +jWm +jWm +jWm +iTl +pRf +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -117503,81 +103002,81 @@ qeX qeX qeX qeX -lmf -oUq -kHf -kHf -kHf -kHf -oUq -kHf +nXt +nwp +kRL +kRL +kRL +kRL +nwp +kRL xiQ drD drD -cWC +sqm drD drD xiQ xzU blh -srh +rVg blh blh -xXM +atb blh blh vwU -eQp -jJR -qHo +wii +nCz +pxz cxP -jel +vKJ hpm -pln -sew -sew -sew -sew -sew -lKL +ddi +rEh +rEh +rEh +rEh +rEh +iVr qnf -lKL -sew -sew -sew -sew -sew -sAs +iVr +rEh +rEh +rEh +rEh +rEh +gkO hpm -edG +wFu kma -hHI -vPl -iEs +xye +aZj +izC oeZ pRd pRd -rNe +qtt pRd pRd -qes +fAD pRd meu jZE inu inu -pWW +rdu inu inu jZE -kUo -fSq -ehX -waV -waV -waV -cKB -dzH +gHa +wiW +gGO +xdj +xdj +xdj +wtS +sfv qeX qeX qeX @@ -117607,79 +103106,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -rdv -rdv -qqV -rdv -hOb -ePK -nUe -btH -aLy -ePK -pWi -hOb -rdv -hOb -hOb -dJc -cvD -ePK -tim -vgx -fmu +lwZ +vzz +vzz +syl +vzz +xzc +hMb +tnw +qDJ +dLL +hMb +edP +xzc +vzz +xzc +xzc +ifQ +iFl +hMb +pkU +kFL +kGD eOJ -jxC +tmA fhM -iXp +tcT eOJ eOJ -cjm -kva -cjm +pYK +qkz +pYK eOJ gQe gQe gQe gQe gQe -tim -vgx -kqp +pkU +kFL +gJc iVS -wQR -eZI -bYG -kmE +uWO +wUV +ocP +neK ufr ufr -unj +bLg iVS -szQ -qRf -vEF -tTm -hov -vgK -lKl -xZC -lRl -izO +aJl +aXm +dJh +jWm +juH +xJe +lBQ +iTl +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -117705,81 +103204,81 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -kHf -dvB -kHf +nXt +nXt +nXt +nXt +nXt +kRL +bkB +kRL xiQ -jGk -bQZ +cdG +elw iry -jGk -bQZ +cdG +elw xiQ -jGk -gDY -qWV -gDY -nmL -xXM +cdG +noT +rch +noT +krq +atb blh -aTg +mHt vwU -crH -oTd -ubm -dsi +mvf +jre +coo +vtp oxQ iRB -wky -rSc +lZA +ryq hpm hpm hpm hpm -rSc +ryq qnf -rSc +ryq hpm hpm hpm hpm -rSc -jux +ryq +xTb iRB -edG -ojQ -laP -oUN -vlr +wFu +loD +ftb +wLI +lYD oeZ -pwo +qdv pRd -rNe -vVU -qEe -vVU -qEe -pwo +qtt +xRW +lYb +xRW +lYb +qdv jZE -shi -wmq +xjb +orU fWO -shi -wmq +xjb +orU jZE -fId -joU -rnf -dzH -dzH -dzH -dzH -dzH +pSP +grP +bBk +sfv +sfv +sfv +sfv +sfv qeX qeX qeX @@ -117809,79 +103308,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -xrG -hOb -tTT -hOb -sXJ -ePK -nUe -iPh -foR -ePK -efe -hOb -rdv -hOb -hOb -hOb -jIH -ePK -isS -vgx -fmu -hXA -nBZ -scb -dBW -sFr -ahX -otS +lwZ +dWH +xzc +tFA +xzc +luf +hMb +tnw +bwj +gsB +hMb +sDJ +xzc +vzz +xzc +xzc +xzc +chj +hMb +xaa +kFL +kGD +nFh +hgK +eLb +xRP +vHM +bec +gDI fxV -iXp -fDj +tcT +iff gQe -eJF -gxm -oPg +uaS +rKp +mXT gQe -tim -vgx -kqp +pkU +kFL +gJc rbp -rmm +xeH ufr ufr nJl ufr ufr -unj +bLg iVS -qar -gxI -vhb -tTm -lRl -mWM -rit -xZC -lRl -izO +xfh +aft +sEZ +jWm +xxD +elQ +rGp +iTl +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -117911,10 +103410,10 @@ qeX qeX qeX qeX -lmf -oQE -dvB -kHf +nXt +iZT +bkB +kRL xiQ iry iry @@ -117927,41 +103426,41 @@ vwU vwU vwU vwU -xIm -fWz +eFF +vxB vwU vwU -crH -iAN -crH +mvf +kTz +mvf cxP -eou +mLa hpm -pln -pQy -pQy -pQy -pQy -pQy -gby +ddi +kFw +kFw +kFw +kFw +kFw +tCy qnf -gby -pQy -pQy -pQy -pQy -pQy -sAs +tCy +kFw +kFw +kFw +kFw +kFw +gkO hpm -edG +wFu kma -oaj -uPg -laP +eTs +rAu +ftb oeZ oeZ -sEP -lNr +dII +apL oeZ oeZ oeZ @@ -117974,10 +103473,10 @@ fWO fWO fWO fWO -lHQ -ehX -xbP -dzH +sVO +gGO +jxU +sfv qeX qeX qeX @@ -118011,79 +103510,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -ePK -mAc -ePK -ePK -svC -rdv -lJX -hSb -huq -uAR -huq -huq -huq -huq -huq -daQ -lAR -bvE -uiG +lwZ +vzz +hMb +hMb +aNI +hMb +hMb +ndg +vzz +hkA +oAU +gDH +cMi +gDH +gDH +gDH +gDH +gDH +pXm +jNC +hVS +djF eOJ -len -kuE -veL +jet +gSK +gEb eOJ -rjB -qwN +tkt +xSI smJ -xjS -hYX +ian +qPy gQe -xcO -wXU -vXG +aAC +myI +wNC gQe -tim -vgx -jGS +pkU +kFL +pvL iVS -qqg -hOo -icD +jAQ +pMB +uoS nJl nJl -eHC -tvP +nJG +cgq iVS -dUA -oCC -uQo -tTm -lRl -mWM -lxf -xZC -lRl -izO +bqg +lzO +xyR +jWm +xxD +elQ +mdL +iTl +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -118113,73 +103612,73 @@ qeX qeX qeX qeX -lmf -mUD -dvB -dvB -dvB -dvB -dvB -dvB -dvB -kHf -dvB -kHf +nXt +gBb +bkB +bkB +bkB +bkB +bkB +bkB +bkB +kRL +bkB +kRL vwU -xtM -xtM -ggJ -xXM +lKY +lKY +dUg +atb blh -xtM +lKY vwU -crH -iAN -crH +mvf +kTz +mvf cxP -kjg +ucq hpm -jMm -qFk -qFk -qFk -qfD -qFk -qFk +sXa +dfD +dfD +dfD +mIO +dfD +dfD qnf -qFk -qFk -qfD -qFk -qFk -qFk -rRX +dfD +dfD +mIO +dfD +dfD +dfD +uyj hpm -vCc +pzv kma -tjm -uPg -laP +qiu +rAu +ftb oeZ -dOY +jSG pRd -rNe -dOY -dOY -dOY +qtt +jSG +jSG +jSG oeZ -ehX -gmF -ehX -waV -jjh -dKn -waV -ehX -ehX -ehX -ehX -dzH +gGO +vft +gGO +xdj +szv +knQ +xdj +gGO +gGO +gGO +gGO +sfv qeX qeX qeX @@ -118213,79 +103712,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -xbQ -hRP -eYQ -ePK -nUe -mal -vbS -ePK -ePK -ePK -ghE -ePK -ePK -ePK -ePK -ePK -eyA -vgx -kqp +lwZ +vzz +hMb +smj +lqz +vGs +hMb +tnw +lyj +mVJ +hMb +hMb +hMb +eeQ +hMb +hMb +hMb +hMb +hMb +fdZ +kFL +gJc eOJ eOJ eOJ eOJ eOJ -ofJ -qwN +jMS +xSI ggF -jeK -wVk -oqv -eko -kEM -gcJ +qxh +ahC +uIo +pau +wgK +ooQ gQe -tim -vgx -kqp +pkU +kFL +gJc iVS iVS jYn iVS -nQB -ybG +mtk +otu iVS iVS iVS -wOT -gxI -xFP -tTm -nCu -lRl -twb -sxb -seC -izO +kwf +aft +cqJ +jWm +rrp +xxD +kXH +qXN +rHG +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -118315,73 +103814,73 @@ qeX qeX qeX qeX -lmf -fTm -poH -kHf -kHf -kHf -kHf -nGx -kHf -kHf -kHf -kHf +nXt +bNK +ust +kRL +kRL +kRL +kRL +kAt +kRL +kRL +kRL +kRL vwU blh blh blh -xXM +atb blh blh vuL -crH -iAN -crH +mvf +kTz +mvf rdo -ldC -eou -pln -sew -gOB -sew -sew -sew -lKL +nJs +mLa +ddi +rEh +wvv +rEh +rEh +rEh +iVr qnf -lKL -sew -sew -sew -gOB -sew -sAs -cpp -aDs +iVr +rEh +rEh +rEh +wvv +rEh +gkO +spp +aMy rdo -tjm -uPg -laP +qiu +rAu +ftb wZE pRd pRd -rNe +qtt pRd pRd pRd oeZ -ehX -waV -ehX -waV -ehX -dtv -waV -ehX -waV -waV -eDl -dzH +gGO +xdj +gGO +xdj +gGO +vPn +xdj +gGO +xdj +xdj +iOb +sfv qeX qeX qeX @@ -118415,79 +103914,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -cTj -ePK -gwK -nLc -oTf -ePK -nUe -btH -vKD -ePK -wVM -iOs -bMd -bMd -bMd -bMd -bMd +lwZ +eLV +hMb +alb +jbt +kcu +hMb +tnw +qDJ +oMy +hMb +sFF +vBv +wNk +wNk +wNk +wNk +wNk qyP -tim -fMB -kqp +pkU +boT +gJc eOJ -qET -qeZ -rZY +wzi +mNd +kHg eOJ -mQd -qwN +cNX +xSI vvY -shv -wLz -oqv -eko -kEM -gcJ +aTs +gcX +uIo +pau +wgK +ooQ gQe -tim -fMB -kqp +pkU +boT +gJc iVS -anh -anh -anh -kmE -hVn -qtm -wem +lnR +lnR +lnR +neK +puE +nxr +uvi iVS -eYp -gwS -qEq -tTm -piY -lRl -gBx -trG -lRl -izO +vPN +czr +mmm +jWm +oeu +xxD +vYL +fAO +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -118517,29 +104016,29 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -dvB -dOO +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +bkB +wYk vwU blh blh blh -mBy -lJU -lJU +bHL +uOg +uOg vuL -qHo -jJR -qHo +pxz +nCz +pxz rdo jgC jgC @@ -118561,29 +104060,29 @@ lOp lOp lOp rdo -iEs -eKK -oTz +izC +sBK +fel wZE -dBs -dBs -gUB +mEl +mEl +fed pRd pRd pRd oeZ -waV -ehX -ehX -dzH -dzH -wzQ -dzH -dzH -dzH -dzH -dzH -dzH +xdj +gGO +gGO +sfv +sfv +eOD +sfv +sfv +sfv +sfv +sfv +sfv qeX qeX qeX @@ -118617,79 +104116,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -rdv -ePK -ePK -ePK -ePK -ePK -ePK -ghE -ePK -ePK -pYl -dpU +lwZ +vzz +hMb +hMb +hMb +hMb +hMb +hMb +eeQ +hMb +hMb +cTD +uvH oFd oFd oFd oFd -cCf -rOs -pDU -fMB -kqp +iFO +aVz +hxf +boT +gJc eOJ -hws -gSZ -sdu -ybc -hTP -xqe +qXA +llO +qil +fqA +gSU +nPq ijR -mqk -deJ +kEx +nja gQe -uyK -duF -vXG +jZh +pIu +wNC gQe -isS -jaz -yjb -gPu +xaa +hZZ +bFE +inV mFo fkM mFo fkM mFo eMb -unj +bLg iVS -tTm -iUR -tTm -tTm -tTm -aJy -jRJ -xZC -nAy -izO +jWm +tGY +jWm +jWm +jWm +uEe +kOC +iTl +pRf +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -118728,56 +104227,56 @@ qeX qeX qeX qeX -lmf -sNm -oUq +nXt +sej +nwp vwU -aTg -aTg -nmL +mHt +mHt +krq blh blh blh vuL -crH -iAN -crH -rur -crH -crH -crH -crH -aKl -crH -qHo -crH -crH -ylI -tjm -tjm -iEs -tjm -tCU -tjm -tjm -tjm -tjm -cBf -tjm -uPg -laP +mvf +kTz +mvf +tWY +mvf +mvf +mvf +mvf +jrT +mvf +pxz +mvf +mvf +rPs +qiu +qiu +izC +qiu +uJz +qiu +qiu +qiu +qiu +lQL +qiu +rAu +ftb wZE pRd pRd pRd -pwo -pwl -pwo +qdv +siI +qdv oeZ -waV -waV -xbP -dzH +xdj +xdj +jxU +sfv qeX qeX qeX @@ -118819,79 +104318,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -xrG -wNG -eQx -wNh -cHn -ePK +lwZ +dWH +lbm +kRi +wsh +utk +hMb gvz -hEJ -els -fsH -bZo +xzB +hhu +iYt +uEV xWl -hEJ -hEJ -pqH -hEJ -hEJ +xzB +xzB +oMR +xzB +xzB qyP -wpw -dFx -kqp +ojC +qNH +gJc eOJ -ygE -nxg -wWU -mVp -key +krL +fos +ruB +hcI +ipd fnr fhM -npY -gUA +qsv +sKF gQe -sZZ -wIC -xaz +gjC +qCg +tlz gQe -tim -fMB -kqp +pkU +boT +gJc iVS -nEX -hOo -hOo -hOo -vwf +pFk +pMB +pMB +pMB +nmS liP -mjl +uXh iVS -tTm -sMN -tTm -tTm -lQG -xUF -guG -sxb -lRl -izO +jWm +gdG +jWm +jWm +gWj +mbk +hQu +qXN +xxD +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -118930,56 +104429,56 @@ qeX qeX qeX qeX -lmf -dvB -kHf +nXt +bkB +kRL vwU vwU vwU vwU -aTg -nmL -nmL +mHt +krq +krq vwU -crH -euI -geS -rYk -geS -sEY -wSK -sEY -sEY -sEY -nKm -sEY -sEY -kzj -tgK -tgK -urk -tgK -tgK -tgK -soT -tgK -qlJ -dXu -qlJ -aEy -itU +mvf +mOY +imP +ruM +imP +eQt +nLh +eQt +eQt +eQt +eNe +eQt +eQt +hyK +cLu +cLu +kKj +cLu +cLu +cLu +qMq +cLu +aIB +kTA +aIB +cWy +dXd oeZ -pwo -pwl -pwo +qdv +siI +qdv oeZ oeZ oeZ oeZ -ehX -ehX -ehX -dzH +gGO +gGO +gGO +sfv qeX qeX qeX @@ -119021,79 +104520,79 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl ndl ndl ndl -dFv -rdv -rdv -slP -rdv -rdv -oSI -hEJ -hEJ +lwZ +vzz +vzz +tlc +vzz +vzz +hcq +xzB +xzB pqx gvz -pYl +cTD iSL -hEJ +xzB bnO bnO bnO bnO bnO -tim -vgx -jGS +pkU +kFL +pvL eOJ -xGn -uCx -xzl +bci +xPn +oEK eOJ -xqx -key +usw +ipd fhM -npY -tAw +qsv +mmb gQe gQe gQe gQe gQe -tim -fMB -tUx +pkU +boT +gAK iVS iVS twj twj iVS -nbV +aGZ gAv -unj -nTj -tTm -nAy -tTm -tTm -aJy -jRJ -vNb -lRl -udQ -izO +bLg +msS +jWm +pRf +jWm +jWm +uEe +kOC +iLv +xxD +fPS +uRn ndl ndl ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -119132,56 +104631,56 @@ qeX qeX qeX qeX -lmf -dvB -kHf -kHf -kHf -kHf -dOO -dOO -dOO -dOO -dOO -ena -peW -ubm -pFD -ubm -tJC -fuc -tJC -tJC -ubm -lXZ -ubm -ubm -vtS -mcw -mcw -pog -mcw -haA -haA -tXC -haA -mcw -xyi -mcw -mcw -jUe +nXt +bkB +kRL +kRL +kRL +kRL +wYk +wYk +wYk +wYk +wYk +pBp +efr +coo +rBr +coo +yaK +oSs +yaK +yaK +coo +xDc +coo +coo +kVe +ogN +ogN +iQh +ogN +eOo +eOo +bbi +eOo +ogN +oer +ogN +ogN +hgd oeZ oeZ oeZ oeZ oeZ -waV -waV -waV -ehX -waV -isA -dzH +xdj +xdj +xdj +gGO +xdj +edX +sfv qeX qeX qeX @@ -119223,79 +104722,79 @@ qeX qeX qeX qeX -kgF -gej -gej -gej +rdH +hbV +hbV +hbV ndl ndl ndl -dFv -huw -qlw -tqO -rCJ -rCJ -ePK +lwZ +gnG +eNv +lLv +gJT +gJT +hMb qyP -qvZ +tXb qyP qyP -pYl +cTD vJP -hEJ +xzB bnO dEW mKM vmn bnO -tim -fMB -kqp +pkU +boT +gJc eOJ eOJ eOJ eOJ eOJ -iEi -qwN +dwM +xSI fnr -npY -acy +qsv +rUo plp -qQY -gpH -tRc -cjm -tim -fMB -jGS +sRg +ote +ktl +pYK +pkU +boT +pvL iVS ufr ufr -jZy +wpj iVS -bIl +bLL xpK -unj -kUk -jdm -lRl -xGl -lRl -gxI -gxI -gxI -aHw -lup -izO +bLg +ioM +eDd +xxD +xco +xxD +aft +aft +aft +pnW +kjq +uRn ndl ndl ndl -gej -gej -gej -gjc +hbV +hbV +hbV +ona qeX qeX qeX @@ -119334,56 +104833,56 @@ qeX qeX qeX qeX -lmf -miC -kHf -dvB -dvB -kHf -kHf -qER -dvB -dvB -dOO -dOO -naV -dOO -dOO -agu -xCV -sLQ -nfo -vSR -vSR -kav -tAR -tAR -tAR -tAR -tAR -kav -kGi -stH -xIi -ozN -nut -wOH -xeD -xeD -hGA -xeD -xeD -waV -waV -waV -waV -waV -waV -waV -waV -waV -fSq -dzH +nXt +gNa +kRL +bkB +bkB +kRL +kRL +cwV +bkB +bkB +wYk +wYk +oXf +wYk +wYk +pzn +ueT +oDQ +kLR +mOT +mOT +tXR +mKH +mKH +mKH +mKH +mKH +tXR +lCe +mEs +kAX +atP +fjB +rfY +vrl +vrl +jfe +vrl +vrl +xdj +xdj +xdj +xdj +xdj +xdj +xdj +xdj +xdj +wiW +sfv qeX qeX qeX @@ -119429,71 +104928,71 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -dFv -hrE -oeh -fBk -qmt -iWm -ePK -hES +lwZ +bbf +xkn +lJi +hRW +vtT +hMb +pra uNH gvz qyP -pYl +cTD iSL -mJv +cmD bnO sWM obs peJ bnO -tim -fMB -kqp -ocC -nFX +pkU +boT +gJc +eOc +pKk fnr -qBQ +hnK eOJ -vXU -qwN +jpX +xSI fnr -npY -tHH +qsv +har plp -dhL +tYZ vBb fhM -cjm -tim -fMB -kqp +pYK +pkU +boT +gJc twj -pAE -wJJ +ilq +yjm ufr -sTd -kmE +dYA +neK xpK -unj -dTp -tTm -lRl -tTm -tTm -lRl -lRl -bUu -qfE -tro -izO +bLg +rye +jWm +xxD +jWm +jWm +xxD +xxD +brV +wEy +tgg +uRn ndl ndl -tEF +wDM qeX qeX qeX @@ -119536,56 +105035,56 @@ qeX qeX qeX qeX -lmf -nXG -doX -kHf -kHf -kHf -kHf -qER -kHf -kHf -dOO -yeI -kHf -kHf -dOO -dOO -fNW -jkO -fNW -kav -kav -kav -eVg -mXE -mki -rnD -jCp -kav -kav -kav -fNW -rIR -fNW -xeD -xeD -waV -ehX -waV -waV -ehX -ehX -ehX -waV -waV -waV -waV -ehX -pnu -hGt -dzH +nXt +fTo +hSm +kRL +kRL +kRL +kRL +cwV +kRL +kRL +wYk +iTj +kRL +kRL +wYk +wYk +asU +ngV +asU +tXR +tXR +tXR +qgH +fCs +mBJ +nLQ +kJe +tXR +tXR +tXR +asU +wFJ +asU +vrl +vrl +xdj +gGO +xdj +xdj +gGO +gGO +gGO +xdj +xdj +xdj +xdj +gGO +iTz +evz +sfv qeX qeX qeX @@ -119631,71 +105130,71 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -dFv -dFv -dFv -dFv -dFv -dFv -dFv -buL +lwZ +lwZ +lwZ +lwZ +lwZ +lwZ +lwZ +sVU uNH gvz qyP -pYl +cTD iSL -hEJ +xzB bnO oGt obs obs bnO -tim -fMB -kqp -cjm -qwN +pkU +boT +gJc +pYK +xSI fhM -qBQ +hnK eOJ eOJ -dLM -sal -pED +sWx +eaN +bTr eOJ eOJ -kqZ +bGj gWC fhM -cjm -tim -fMB -kqp +pYK +pkU +boT +gJc twj -haf -wKR +oMI +kfL ufr -nQB -vwf +mtk +nmS xpK -pML +wQj vFp -izO -izO -izO -izO -izO -izO -izO -izO -izO -izO +uRn +uRn +uRn +uRn +uRn +uRn +uRn +uRn +uRn +uRn ndl ndl -tEF +wDM qeX qeX qeX @@ -119738,56 +105237,56 @@ qeX qeX qeX qeX -lmf -enC -hwu -wyI -dvB -dvB -dvB -brD -wyI -kHf -kHf -kHf -kHf -dvB -dvB -dOO -dWK -vgm -wOm -kav -rTB -ekr -wcn -saX -kVZ -mJK -vdi -taT -ivp -kav -oUC -lWF -kAF -xeD -ihw -ceC -ehX -ehX -ehX -waV -wtc -waV -ehX -waV -ehX -ehX -nzT -lAN -dEc -dzH +nXt +dJf +wxn +cWL +bkB +bkB +bkB +tmU +cWL +kRL +kRL +kRL +kRL +bkB +bkB +wYk +jTI +kRl +rWM +tXR +xpO +gFX +giL +osq +bqU +xpe +tlW +tFz +dUr +tXR +sjD +fuM +jUH +vrl +aGT +rbI +gGO +gGO +gGO +xdj +bun +xdj +gGO +xdj +gGO +gGO +oCT +tkv +jTh +sfv qeX qeX qeX @@ -119833,7 +105332,7 @@ qeX qeX qeX qeX -tag +ihr ndl ndl ndl @@ -119843,47 +105342,47 @@ ndl ndl ndl dHn -cNT +icK uNH uNH qyP -gaR +enO vJP -hEJ +xzB bnO bnO bnO -aTB +uXm bnO -aeA -vgx -kqp -cjm -qwN +wrn +kFL +gJc +pYK +xSI fhM -ryk +iDK eOJ -oEy -qwN +gPs +xSI fhM -npY -kWo +qsv +hAD plp -qwN +xSI kat fnr -cjm -tim -fMB -kqp +pYK +pkU +boT +gJc iVS guW ufr -iSp +mfB iVS -nbV +aGZ gAv -wYj +bnp vFp ndl ndl @@ -119897,7 +105396,7 @@ ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -119940,56 +105439,56 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -qjA -fNW -fNW -fNW -hQX -fNW -dOO -sNm -dOO -dWK -vgm -wOm -kav -qpu -drt -drt -saX -kVZ -mJK -nLF -drt -pnZ -kav -ved -lWF -kAF -xeD -ehX -xeD -fNW -hQX +nXt +nXt +nXt +nXt +nXt +nXt +nXt +qGk +asU +asU +asU +ocb +asU +wYk +sej +wYk +jTI +kRl +rWM +tXR +oUZ +bbg +bbg +osq +bqU +xpe +qKu +bbg +ssh +tXR +bVi +fuM +jUH +vrl +gGO +vrl +asU +ocb jlC jlC jlC dwN -dzH -dzH -dzH -dzH -dzH -dzH -dzH -dzH +sfv +sfv +sfv +sfv +sfv +sfv +sfv +sfv qeX qeX qeX @@ -120035,71 +105534,71 @@ qeX qeX qeX qeX -kgF -gej -gej -gej -gej -gej -gej -gej +rdH +hbV +hbV +hbV +hbV +hbV +hbV +hbV ndl dHn -blQ +mpG uNH gvz qyP -pYl +cTD iSL -hEJ +xzB bnO -hyy -wrr +vwH +fYW gDM nVI -tim -vgx -kqp -cjm -qwN +pkU +kFL +gJc +pYK +xSI fhM -ryk +iDK eOJ -pJE -gFO +tQl +hFN nyu -dKe -cdV +mWv +ibH plp -jKK +kwX fnr fhM -cjm -tim -fMB -kqp +pYK +pkU +boT +gJc twj -emH -aiY +qDM +ctT ufr -sTd -kmE +dYA +neK xpK -iUX +xBX vFp ndl ndl ndl ndl ndl -gej -gej -gej -gej -gej -gej -gej -gjc +hbV +hbV +hbV +hbV +hbV +hbV +hbV +ona qeX qeX qeX @@ -120146,47 +105645,47 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -qjA -aex -qLa -fNW -ueF -eMa -fNW -pwa -dOO -dWK -vgm -kAF -tmY -fqj -fqj -fqj -sHD -sBd -tVG -fqj -fqj -fqj -tmY -dWK -lWF -vbV -xeD -vQR -fNW -rdA -iCX +qGk +fXx +amt +asU +niY +dYM +asU +jvq +wYk +jTI +kRl +jUH +ghm +sVP +sVP +sVP +kbg +vcN +ath +sVP +sVP +sVP +ghm +jTI +fuM +sEy +vrl +lCL +asU +qCd +bMG dBK fpM fpM dwN ndl ndl -tEF +wDM qeX qeX qeX @@ -120245,55 +105744,55 @@ mOJ mOJ mOJ mOJ -tag +ihr dHn -fDW -cix -pmJ +bSl +jiN +mRh qyP -pYl +cTD iSL -hEJ +xzB bnO -sAy +vNc uFd -nIv +qPd nVI -tim -vgx -kqp -cjm -qwN +pkU +kFL +gJc +pYK +xSI fnr iAf eOJ -tFU -iXa +yje +biC cLs -xLV -wPy +kie +gSm eOJ -wIm +pdV fnr fhM -cjm -tim -fMB -kqp +pYK +pkU +boT +gJc twj -haf -wPv +oMI +eiC ufr -nQB -vwf +mtk +nmS xpK -wYj +bnp vFp ndl ndl ndl ndl -tEF +wDM jCt mOJ mOJ @@ -120348,47 +105847,47 @@ qeX qeX qeX qeX -tag +ihr ndl ndl -qjA -aex -qLa -fNW -bLs -weY -fNW -kHf -dOO -udn -kxA -tRC -ubD -vfV -dVM -mWy -ihj -wcq -uEs -loS -mqo -lHU -jDV -rxg -lJz -wRd -xeD -waV -fNW -wmY -hYj +qGk +fXx +amt +asU +tYS +hRq +asU +kRL +wYk +tDI +szB +tEB +aWR +nYt +nsQ +jbf +wEI +mCc +mei +jZi +ugz +nPI +uvD +fmE +uLw +eCd +vrl +xdj +asU +stV +uRv uAk hUf drO dwN ndl ndl -tEF +wDM qeX qeX qeX @@ -120447,55 +105946,55 @@ mOJ mOJ mOJ mOJ -tag +ihr dHn qyP qyP qyP qyP -pYl +cTD iSL -hEJ +xzB bnO -xKT +qux qjr -nIv +qPd nVI -tim -fMB -kqp -cjm -qwN +pkU +boT +gJc +pYK +xSI fhM vNg eOJ -xCp -oGh +oMN +kaB sfZ -jnr -tUC +nnl +pul plp -gPe -gPe -oqu -cjm -tim -fMB -jGS +rzV +rzV +nIR +pYK +pkU +boT +pvL iVS ufr ufr -jZy +wpj iVS -bIl +bLL gAv -unj +bLg vFp vFp vFp ndl ndl -tEF +wDM mOJ mOJ mOJ @@ -120550,47 +106049,47 @@ qeX qeX qeX qeX -kgF -gej -gej -qjA -puw -qLa -qLa -ics -eQq -fNW -hQX -fNW -rQh -vgm -kAF -tmY -vWx -vWx -uGl -jmH -hXr -chT -wBJ -pWJ -vWx -tmY -dWK -lWF -kAF -fNW -hQX -fNW -cUM -vwv +rdH +hbV +hbV +qGk +kql +amt +amt +ihS +qSU +asU +ocb +asU +csV +kRl +jUH +ghm +jRD +jRD +sTw +lcI +sLg +dmx +mgF +rtJ +jRD +ghm +jTI +fuM +jUH +asU +ocb +asU +fTT +hsg jlC jlC jlC dwN -gej -gej -gjc +hbV +hbV +ona qeX qeX qeX @@ -120653,47 +106152,47 @@ aFb aFb aFb dHn -oCj -ajK -pYl +woi +tiY +cTD vJP -hEJ +xzB bnO -dTO +uqA oLg dUX -bpL -wKi -dFx -kqp -cjm -qwN +gOM +dNw +qNH +gJc +pYK +xSI fhM bcd eOJ -oQX -qwN +ehG +xSI fhM mra yhA -hcN -nte -nte -kEL -cjm -tim -fMB -kqp +fEy +rnn +rnn +bFL +pYK +pkU +boT +gJc iVS iVS twj twj iVS -lOa +qlk xpK -unj -vPc -fFZ +bLg +sQO +fFv vFp aFb aFb @@ -120755,37 +106254,37 @@ qeX qeX qeX qeX -qjA -hNQ -qLa -qLa -pMx -mUj -fNW -otL -fNW -bmw -vgm -bEI -kav -rgE -drt -hpp -saX -jqf -mJK -jyW -mZV -hNM -kav -qYl -lWF -kMd -fNW -vng -fNW -wmY -pxw +qGk +tQw +amt +amt +tcy +pkM +asU +tkC +asU +aPE +kRl +qug +tXR +fwS +bbg +isi +osq +lJS +xpe +ljs +fFg +bpq +tXR +jAb +fuM +lmO +asU +iyC +asU +stV +aYo dBK qdS qdS @@ -120851,55 +106350,55 @@ mOJ mOJ mOJ mOJ -tMG +krS wgb kIA -cOH -cWm +qmN +fJN uNH -pYl +cTD iSL -hEJ +xzB bnO -pSE -vHh -gim +eoO +tLX +nNQ bnO -isS -fMB -kqp -cjm -qwN +xaa +boT +gJc +pYK +xSI fhM -rSr -pDh +wZq +kcn fhM -nBZ -wLz -wLz -wLz +hgK +gcX +gcX +gcX plp -gPe -gPe -fFP -cjm -tim -fMB -kqp +rzV +rzV +viE +pYK +pkU +boT +gJc iVS -fsl +ogL oSm xnE cSP -nbV +aGZ xpK -unj +bLg ufr -kUk -sEB +ioM +szO kIA wgb -cuC +uMb mOJ mOJ mOJ @@ -120957,37 +106456,37 @@ qeX qeX qeX qeX -qjA -yhh -aiH -aiH -rPo -ouQ -hKQ -mYr -hKQ -cLW -sgZ -kAF -kav -kav -izk -drt -saX -fKM -mJK -drt -blX -kav -kav -ezZ -weE -hXx -fnJ -hsV -fnJ -eCN -ulv +qGk +dmA +xQb +xQb +bZR +tOl +wQf +hFI +wQf +kgD +uWa +jUH +tXR +tXR +gdR +bbg +osq +ioN +xpe +bbg +pGw +tXR +tXR +hxx +eYo +diC +mCp +mnc +mCp +fBF +uMt uAk gzT dsX @@ -121053,55 +106552,55 @@ mOJ mOJ mOJ mOJ -tMG +krS gSO jhp -cOH -cWm +qmN +fJN uNH -pYl +cTD iSL -mJv +cmD bnO -leR -kAN -lKQ +mps +qJK +uRY bnO -tim -vgx -kqp -cjm -ilW -wLz -rSr -xOp +pkU +kFL +gJc +pYK +fYl +gcX +wZq +kGB fhM fhM -qwN -qvF -dur +xSI +jYS +cQZ eOJ -aro -dia -ejT -cjm -tim -fMB -kqp +iHK +wyQ +nlk +pYK +pkU +boT +gJc iVS -lHb +umJ ufr ufr nJl -nbV +aGZ xpK -unj +bLg ufr -kUk -sEB +ioM +szO gLG gSO -cuC +uMb mOJ mOJ mOJ @@ -121163,33 +106662,33 @@ dwN jlC jlC jlC -hke -qLa -kNo -gGV -kNo -mGy -vgm -rMF -gLu -kav -fBS -drt -saX -fKM -mJK -drt -qno -kav -jws -qTX -lWF -enb -kNo -mCB -kNo -cfH -qfe +uOQ +amt +kcr +bTF +kcr +gBY +kRl +ldi +igX +tXR +bwM +bbg +osq +ioN +xpe +bbg +ofq +tXR +pOq +wIj +fuM +uGF +kcr +rXn +kcr +yla +jML jlC jlC jlC @@ -121259,47 +106758,47 @@ aFb aFb aFb dHn -rLB -ajK -pYl +uWP +tiY +cTD vJP -hEJ +xzB bnO bnO bnO bnO bnO -pGz -cgs -pGz +pdC +yfw +pdC eOJ eOJ eOJ eOJ eOJ -wMq -wMq -iPJ -bXp -beu +wmD +wmD +jgz +eqR +kIy eOJ eOJ eOJ eOJ eOJ -pGz -cgs -pGz +pdC +yfw +pdC iVS -gsE +tRM nJl nJl krw -nbV +aGZ gAv -unj -vPc -gyq +bLg +sQO +xGc vFp aFb aFb @@ -121365,33 +106864,33 @@ dwN fpM vlc uAk -xgc -lBq -fNW -hQX -fNW -vhn -vgm -pXP -kAF -tmY -drt -drt -saX -jqf -mJK -drt -drt -tmY -dWK -cSn -rOQ -miw -fNW -hQX -fNW -bYr -tmu +epu +uwJ +asU +ocb +asU +kIi +kRl +qrN +jUH +ghm +bbg +bbg +osq +lJS +xpe +bbg +bbg +ghm +jTI +trC +bKc +kBQ +asU +ocb +asU +rkL +wpr uAk jAh fpM @@ -121457,24 +106956,24 @@ mOJ mOJ mOJ mOJ -tag +ihr ndl ndl dHn dHn dHn -pYl +cTD iSL -hEJ -hEJ -tGB -hEJ -hEJ +xzB +xzB +dda +xzB +xzB qyP -wfJ -rLr -hxN -weK +mlQ +aGI +jle +wrG ilK vLw vLw @@ -121488,24 +106987,24 @@ eOJ vLw vLw ilK -weK -wfJ -rLr -wGT +wrG +mlQ +aGI +clQ iVS -anh -anh -anh -anh -kmE +lnR +lnR +lnR +lnR +neK xpK -uqc +twa vFp vFp vFp ndl ndl -tEF +wDM mOJ mOJ mOJ @@ -121567,33 +107066,33 @@ dwN jrR dIA uAk -xXO -wmY -fNW -kHf -dOO -cmR -nJo -tuT -gXB -sLB -hnd -hnd -rbJ -iRg -fle -hnd -hnd -vEH -iYI -xRj -aOQ -hNo -xeD -waV -fNW -ukC -kAF +vwx +stV +asU +kRL +wYk +lxL +xvH +iVw +rBg +cEc +fXI +fXI +mvH +syM +iXw +fXI +fXI +bSB +bAJ +tYl +rvM +bzJ +vrl +xdj +asU +gID +jUH dBK fpM sXF @@ -121659,55 +107158,55 @@ mOJ mOJ mOJ mOJ -kgF -gej -gej -gej +rdH +hbV +hbV +hbV ndl rQW -bZo +uEV guJ vKK oFd kMF oFd kMF -jXI -yjb -qoa -rHO -gad +wcA +bFE +gew +trk +svT hjI azI hjI hjI -woe -gKJ -gKJ -gKJ -baD +fzC +wMe +wMe +wMe +wKr hjI hjI azI hjI -gad -jDC -qoa -yjb -duV +svT +xpI +gew +bFE +pJH mFo aHO mFo fkM aHO rEC -mjl +uXh spy ndl -gej -gej -gej -gjc +hbV +hbV +hbV +ona mOJ mOJ mOJ @@ -121769,33 +107268,33 @@ dwN fpM fpM dBK -mXv -rzS -fNW -dvB -dOO -thp -bly -pXP -gCt -kav -oFP -ajn -qfC -kXG -esL -ncU -jNa -kav -rWq -pXP -rId -bqW -xeD -ehX -fNW -cOz -rLQ +iCu +eGe +asU +bkB +wYk +seM +jbk +qrN +nUS +tXR +jjD +arC +wsF +vma +fQn +ymj +kXB +tXR +udN +qrN +xvV +cQe +vrl +gGO +asU +oxJ +nAB uAk fVW fpM @@ -121865,47 +107364,47 @@ qeX qeX qeX qeX -tag +ihr rQW -pYl -wjN -ktE -tQK -vrW -vrW -ozH +cTD +pEL +xzO +vai +xfI +xfI +eEP qyP -xts -vLl -nNL -weK +uVY +ueC +cAl +wrG vLw nxz vLw vLw -dzE +tYs nbG nbG nbG -awH +tRH vLw vLw nxz vLw -weK -xts -pBN -nNL +wrG +uVY +ePM +cAl iVS -flz +hgU gAv -dCg -owr -qQW -qMt -unj +rXO +hxV +pnm +dep +bLg spy -tEF +wDM qeX qeX qeX @@ -121971,33 +107470,33 @@ dwN dwN jlC jlC -vUB -wmY -fNW -dvB -dOO -mhf -mhf -rgh -vOp -mhf -iYV -tAR -tAR -tAR -tAR -tAR -iYV -mhf -xxk -xKg -mhf -mhf -xeD -vQR -fNW -xiZ -rMF +qLC +stV +asU +bkB +wYk +hpg +hpg +saa +ukv +hpg +mij +mKH +mKH +mKH +mKH +mKH +mij +hpg +xED +kLr +hpg +hpg +vrl +lCL +asU +rXE +ldi jlC jlC dwN @@ -122066,49 +107565,49 @@ qeX mOJ mOJ mOJ -fDe +wAV ndl dHn -ufT -ggU +fPy +gbB qyP qyP nVm -xzG +dmt qyP qyP -ePK -tpW -ePK +hMb +nYf +hMb eEh pNb wBo vLw vLw -xne -her -her -her -xne +lBF +ada +ada +ada +lBF vLw vLw iMT moo eEh -tTm -tTm -tTm +jWm +jWm +jWm iVS iVS -xda +oZA iVS iVS iVS -gPq -fhb +nMm +dpp vFp ndl -wgf +bhQ qeX qeX qeX @@ -122170,39 +107669,39 @@ qeX qeX qeX mOJ -qjA -dsH -kiB -xFa -wnP -fNW -dvB -dvB -mhf -kfE -foE -wmw -mhf -nRw -aPL -sfH -ufj -kBs -bUZ -kGq -mhf -rGs -foE -cQA -mhf -waV -ehX -fNW -wnP -pnp -nYn -pHs -qjA +qGk +nHl +lRN +tAo +pHS +asU +bkB +bkB +hpg +mAa +sVi +gHO +hpg +jCC +mWp +oEW +gvS +ezk +sPA +eKT +hpg +cwS +sVi +qyK +hpg +xdj +gGO +asU +pHS +xNo +duy +ldB +qGk qeX qeX qeX @@ -122271,17 +107770,17 @@ mOJ dHn dHn dHn -pYl -iEV +cTD +rEN qyP -kXW -jVC -dlM -cXp +hwM +lpi +wZN +erU qyP -ePK -ePK -ePK +hMb +hMb +hMb vLw vLw nxz @@ -122297,17 +107796,17 @@ vLw nxz vLw iwe -tTm -bel -fKc +jWm +cPj +fho iVS -lHp -ueQ -rcQ -mux +vxz +rCC +grV +ulh iVS -fek -unj +jMJ +bLg vFp vFp vFp @@ -122372,39 +107871,39 @@ qeX qeX qeX mOJ -qjA -rjj -qjA -qjA -qjA -qjA -kHf -kHf -mhf -fAK -foE -wmw -wCa -gxT -igP -igP -igP -igP -igP -daM -wCa -rGs -foE -fAK -mhf -vfW -rnf -qjA -qjA -qjA -qjA -rjj -qjA +qGk +qsS +qGk +qGk +qGk +qGk +kRL +kRL +hpg +uHK +sVi +gHO +uGM +fYq +lUH +lUH +lUH +lUH +lUH +wLv +uGM +cwS +sVi +uHK +hpg +aHE +bBk +qGk +qGk +qGk +qGk +qsS +qGk qeX qeX qeX @@ -122471,47 +107970,47 @@ mOJ mOJ mOJ dHn -wVM -bMd -lVK -iEV +sFF +wNk +xlX +rEN qyP -kXW -eir -jwa -kND +hwM +lEZ +mao +krb qyP -rdv -rdv -oSI -eUd -eUd -hqA -rZM +vzz +vzz +hcq +rxR +rxR +hoI +mGo eEh eEh -nGC -kiM -eor +tDL +lBo +ksf eEh eEh -vez -hqA -eUd -eUd -xGl -lRl -lRl +uJO +hoI +rxR +rxR +xco +xxD +xxD iVS -aUh -vGn -vGn -rhn +isw +iEN +iEN +pYE iVS -fek -hVn -anh -ngj +jMJ +puE +lnR +grk vFp qeX qeX @@ -122574,39 +108073,39 @@ qeX qeX qeX mOJ -kgF -gej +rdH +hbV ndl ndl ndl -lmf -sNm -dvB -mhf -nWX -hhc -lHL -qOd -otC -qPw -qyu -qyu -qyu -iRX -eCt -nQS -pwn -paE -tjw -mhf -vnR -sBX -dzH +nXt +sej +bkB +hpg +hyh +hkJ +ulE +fjW +hXq +eEz +spL +spL +spL +tdX +wBc +qHA +tDO +lfH +swA +hpg +cqP +jEf +sfv ndl ndl ndl -gej -gjc +hbV +ona qeX qeX qeX @@ -122673,47 +108172,47 @@ mOJ mOJ mOJ dHn -pYl -wjN -djK -alq +cTD +pEL +pFO +qTB qyP -niq -qRU -rtq -axi +iln +bRk +tZU +aCZ qyP -hOb -vAB -ePK +xzc +ffb +hMb vwJ lQv msC vLw bTJ -vmN +aLh vLw wUf vLw -wcE +stP bTJ vLw msC lQv pvZ -tTm -eKC -lRl +jWm +cYZ +xxD iVS -dok -vGn -wmx -rhn +cLX +iEN +dnr +pYE iVS -pPF -kuU -qMt -unj +aWA +vHx +dep +bLg vFp qeX qeX @@ -122778,35 +108277,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -kHf -kHf -mhf -pXr -foE -eAd -dpY -uAB -uMc -qcn -fNM -ppv -ghF -uAB -wpF -tSO -foE -moO -mhf -waV -waV -dzH +nXt +kRL +kRL +hpg +cZQ +sVi +frr +bCd +jGe +uKx +tkI +wof +xbt +wHM +jGe +hLR +bWy +sVi +nNA +hpg +xdj +xdj +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -122875,47 +108374,47 @@ mOJ mOJ mOJ dHn -luL -iEV +rLM +rEN qyP qyP qyP qyP qyP -qvZ +tXb qyP qyP -hOb -ePK -ePK +xzc +hMb +hMb vLw lQv msC vLw bTJ -ovl +bVh vLw vLw vLw -njp +mfd bTJ vLw msC lQv vLw -tTm -tTm -lRl +jWm +jWm +xxD iVS iVS -lYM +tMd iVS iVS iVS iVS iVS -fek -wpK +jMJ +kxb vFp qeX qeX @@ -122980,35 +108479,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -dvB -dvB -mhf -htI -kot -lHL -mHM -aYh -kiY -iOG -eFc -fxw -tjt -mfN -ehZ -pwn -ryA -moO -mhf -waV -waV -dzH +nXt +bkB +bkB +hpg +kwl +hVO +ulE +cWM +lte +rcY +weF +wRE +lFK +aGa +gGZ +tft +tDO +lIX +nNA +hpg +xdj +xdj +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -123077,19 +108576,19 @@ mOJ mOJ mOJ rQW -pYl -iEV -ePK -gQn -hOb -ryx -hOb -rdv -qkb -hOb -cbV -ePK -xRN +cTD +rEN +hMb +lIl +xzc +flW +xzc +vzz +cqA +xzc +iiz +hMb +eVV vLw lQv msC @@ -123105,19 +108604,19 @@ vLw msC lQv vLw -xRN -tTm -amm -lRl -iYm -kHe -lRl -eZU -dyr -kTQ -tTm -fek -unj +eVV +jWm +asm +xxD +wCK +fHe +xxD +aRN +rkY +nvc +jWm +jMJ +bLg spy mOJ mOJ @@ -123182,35 +108681,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -kHf -dvB -mhf -mhf -afx -wmw -foE -qke -iRX -uMc -aQS -ghF -tvI -nOt -foE -rGs -moO -mhf -mhf -ehX -vQR -dzH +nXt +kRL +bkB +hpg +hpg +wIQ +gHO +sVi +oLK +tdX +uKx +uSs +wHM +lyG +kTG +sVi +cwS +nNA +hpg +hpg +gGO +lCL +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -123279,47 +108778,47 @@ mOJ mOJ mOJ rQW -pYl -iEV -ePK -gQn -hOb -jPg -hOb -rdv -jyb -hOb -iWm -ePK -umY -eUd -eUd -kwg -dfO -lzs +cTD +rEN +hMb +lIl +xzc +hHH +xzc +vzz +dhu +xzc +vtT +hMb +boW +rxR +rxR +uMG +cKL +tuR hjI nbG oZN nbG hjI -lzs -dfO -fPr -eUd -eUd -umY -tTm -qYW -rYh -lRl -kHe -lRl -tZn -jFr -iSY -tTm -fek -unj +tuR +cKL +wTA +rxR +rxR +boW +jWm +xnh +wOb +xxD +fHe +xxD +tgR +wWB +gyz +jWm +jMJ +bLg spy mOJ mOJ @@ -123384,35 +108883,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -kHf -kHf -kHf -mhf -rDf -wmw -mhf -ncI -ghF -uMc -dOk -ghF -uMc -xBw -mhf -jCK -rDf -mhf -tVt -waV -waV -dzH +nXt +kRL +kRL +kRL +hpg +haC +gHO +hpg +cbP +wHM +uKx +jua +wHM +uKx +dvk +hpg +bWC +haC +hpg +ecw +xdj +xdj +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -123481,47 +108980,47 @@ mOJ mOJ mOJ rQW -pYl +cTD vJP -oSI -rdv -rdv -rdv -rdv -rdv -cvD -hOb -qwk -ePK -ePK -aTv -aTv -cNS -lXO +hcq +vzz +vzz +vzz +vzz +vzz +iFl +xzc +kOr +hMb +hMb +dnO +dnO +uTA +rWU eEh iiy wxV -cbC +nCV jTW wVR eEh -tJr -cNS -aTv -hju -tTm -tTm -bwm -oqt -lRl -gxI -gxI -gxI -gxI -gxI -xGl +agb +uTA +dnO +wkF +jWm +jWm +qKn +jLn +xxD +aft +aft +aft +aft +aft +xco gAv -unj +bLg spy mOJ mOJ @@ -123586,35 +109085,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -dvB -dvB -dvB -mhf -oEk -jwF -mhf -wdl -ghF -qhh -igP -tjt -uMc -akI -mhf -kFz -oEk -mhf -kHT -ehX -kHT -dzH +nXt +bkB +bkB +bkB +hpg +nuh +jdW +hpg +qUw +wHM +cLI +lUH +aGa +uKx +srJ +hpg +vIh +nuh +hpg +ntM +gGO +ntM +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -123683,23 +109182,23 @@ mOJ mOJ mOJ dHn -ufT -ggU -ePK -ePK -ePK -ePK -kMv -rdv -rdv -rdv -rdv -rdv -oSI -cFN -bgm -mxm -jpq +fPy +gbB +hMb +hMb +hMb +hMb +cDT +vzz +vzz +vzz +vzz +vzz +hcq +iKE +jiD +rJq +fvF eEh eEh eEh @@ -123707,23 +109206,23 @@ eEh eEh eEh eEh -bgm -mxm -jpq -cFN -xGl -gxI -gxI -mho -gxI -kHe -nAu -tTm -tTm -tTm -tTm -gPq -fhb +jiD +rJq +fvF +iKE +xco +aft +aft +dvj +aft +fHe +ouh +jWm +jWm +jWm +jWm +nMm +dpp vFp mOJ mOJ @@ -123788,35 +109287,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl -lmf -lmf -oQE -kHf -mhf -oEk -wmw -mhf -iFD -bKK -aYh -uAB -qZt -grK -ate -mhf -rGs -oEk -mhf -vfW -rew -dzH -dzH +nXt +nXt +iZT +kRL +hpg +nuh +gHO +hpg +xHP +hdJ +lte +jGe +ryW +tlD +eKO +hpg +cwS +nuh +hpg +aHE +lKy +sfv +sfv ndl ndl -tEF +wDM qeX qeX qeX @@ -123885,47 +109384,47 @@ qeX qeX mOJ dHn -pYl -bmI -bMd -qPs -nHN -dFv -dFv -dFv -dFv -dFv -dFv -dFv -dFv +cTD +wuS +wNk +fjN +jMH +lwZ +lwZ +lwZ +lwZ +lwZ +lwZ +lwZ +lwZ aBB -bSy +pdf fme -wys -aaY +mtz +grT eEh -hsq -edp -fzm +dUw +hXf +auY eEh -nLS -irK +rrk +fyA wHs -eZN +wli aBB -izO -izO -izO -izO -izO -izO -izO -izO -rxx -wzh -lqX -qXW -unj +uRn +uRn +uRn +uRn +uRn +uRn +uRn +uRn +flK +vFC +wsm +edN +bLg vFp mOJ mOJ @@ -123990,35 +109489,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -aru -nfS -mhf -mhf -rzR -mhf -mhf -jCP -epL -fyi -tWV -nRn -mhf -mhf -maf -mhf -mhf -lHQ -ehX -dzH +nXt +kfd +drV +hpg +hpg +hVs +hpg +hpg +odi +bOD +rRB +gVs +rqM +hpg +hpg +kvM +hpg +hpg +sVO +gGO +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -124087,11 +109586,11 @@ mOJ mOJ mOJ dHn -lzf -xHe +pkR +hFh ivl -jwa -vJa +mao +oUF dHn ndl ndl @@ -124101,19 +109600,19 @@ ndl ndl ndl aBB -kFu -her -xmr -eUd -aOU -gKJ -gKJ -gKJ -aOU -eUd -hvr -her -fUo +svl +ada +gBn +rxR +wxk +wMe +wMe +wMe +wxk +rxR +iCd +ada +vGx aBB ndl ndl @@ -124123,11 +109622,11 @@ ndl ndl ndl vFp -rYi -nbV +sbb +aGZ nde -vQY -wJF +cwL +cqm vFp mOJ mOJ @@ -124192,35 +109691,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -wnC -mhf -rHV -fha -qVH -wEx -gCz -dgq -dvK -dgq -uaJ -hKq -fEM -giA -hvL -mhf -ehX -sBX -dzH +nXt +kRL +vUi +hpg +kEo +nlJ +mHy +wLF +rCh +cnl +mDw +cnl +yfS +tQe +eyM +vkC +mPQ +hpg +gGO +jEf +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -124290,45 +109789,45 @@ mOJ mOJ dHn dHn -rdL -vjT -ihb +lwi +sOs +fJz dHn dHn -mVD -mVD -mVD -mVD -mVD -mVD -tDr +sVV +sVV +sVV +sVV +sVV +sVV +dVS aBB aBB -bgm -mxm -jpq -bSy -eUd +jiD +rJq +fvF +pdf +rxR lQv -eUd -eZN -bgm -mxm -jpq +rxR +wli +jiD +rJq +fvF aBB aBB -mVD -mVD -mVD -mVD -mVD -mVD -mbS +sVV +sVV +sVV +sVV +sVV +sVV +rnd vFp vFp -mJc -hYO -wJF +xpN +fHy +cqm vFp vFp mOJ @@ -124394,35 +109893,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -dvB -dvB -mhf -sio -fha -dgq -dgq -dgq -dgq -dvK -dgq -dgq -dgq -dgq -fha -qGC -mhf -xdJ -waV -dzH +nXt +bkB +bkB +hpg +fFD +nlJ +cnl +cnl +cnl +cnl +mDw +cnl +cnl +cnl +cnl +nlJ +pbl +hpg +iYx +xdj +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -124490,13 +109989,13 @@ mOJ mOJ mOJ mOJ -tag +ihr dHn -gAL +sJT vJP -jwa +mao dHn -tEF +wDM aIO aIO aIO @@ -124504,21 +110003,21 @@ aIO aIO aIO aIO -tag +ihr aBB -oPI +utX fme -bIK -lkK -dfO +sIQ +kkt +cKL oZN -dfO -bIK -lkK +cKL +sIQ +kkt wHs -eeP +pXW aBB -tEF +wDM aIO aIO aIO @@ -124526,13 +110025,13 @@ aIO aIO aIO aIO -tag +ihr vFp -cxG +pvo gAv -unj +bLg vFp -tEF +wDM mOJ mOJ mOJ @@ -124596,35 +110095,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -kHf -mhf -nvr -uFA -sAT -sAT -dRj -dvK -dvK -dvK -mdp -sAT -sAT -uTV -dey -mhf -ehX -fCh -dzH +nXt +kRL +kRL +hpg +gOE +bDe +ltT +ltT +eWN +mDw +mDw +mDw +wQJ +ltT +ltT +byU +jWM +hpg +gGO +nsv +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -124692,13 +110191,13 @@ mOJ mOJ mOJ mOJ -tag +ihr dHn -dou +rXh vYb -lEm +fdu dHn -tEF +wDM aIO aIO aIO @@ -124706,21 +110205,21 @@ aIO aIO aIO aIO -tag +ihr aBB -kFu -mTL -fUo -bSy +svl +rik +vGx +pdf vLw -hqA +hoI vLw -eZN -kFu -mTL -fUo +wli +svl +rik +vGx aBB -tEF +wDM aIO aIO aIO @@ -124728,13 +110227,13 @@ aIO aIO aIO aIO -tag +ihr vFp -nbV +aGZ gAv -unj +bLg vFp -tEF +wDM mOJ mOJ mOJ @@ -124798,35 +110297,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -dvB -dvB -mhf -mAM -axX -dgq -dgq -lZz -dgq -dgq -dgq -dgq -dgq -dgq -qGC -wrz -mhf -waV -waV -dzH +nXt +bkB +bkB +hpg +eIe +fZB +cnl +cnl +iCs +cnl +cnl +cnl +cnl +cnl +cnl +pbl +nZR +hpg +xdj +xdj +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -124894,13 +110393,13 @@ mOJ mOJ mOJ mOJ -tag +ihr rQW -dVd +nft iSL -mqr +lFQ rQW -tEF +wDM aIO aIO aIO @@ -124908,21 +110407,21 @@ aIO aIO aIO aIO -tag +ihr aBB eEh eEh eEh -lze +hEm vLw msC vLw -yjs +emq eEh eEh eEh aBB -tEF +wDM aIO aIO aIO @@ -124930,13 +110429,13 @@ aIO aIO aIO aIO -tag +ihr spy -nbV +aGZ xpK -unj +bLg spy -tEF +wDM mOJ mOJ mOJ @@ -125000,35 +110499,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -kHf -mhf -stN -axX -dgq -dgq -mhf -rGg -rGg -rGg -mhf -lfQ -dgq -qGC -tTp -mhf -ehX -ehX -dzH +nXt +kRL +kRL +hpg +kEv +fZB +cnl +cnl +hpg +rrT +rrT +rrT +hpg +jFo +cnl +pbl +ktP +hpg +gGO +gGO +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -125096,13 +110595,13 @@ mOJ mOJ mOJ mOJ -tag +ihr rQW -kFJ +ffS iSL -jwa +mao rQW -tEF +wDM aIO aIO aIO @@ -125110,21 +110609,21 @@ aIO aIO aIO aIO -tag +ihr aBB eEh eEh eEh -bSy +pdf vLw msC vLw -eZN +wli eEh eEh eEh aBB -tEF +wDM aIO aIO aIO @@ -125132,13 +110631,13 @@ aIO aIO aIO aIO -tag +ihr spy -nbV +aGZ xpK -unj +bLg spy -tEF +wDM mOJ mOJ mOJ @@ -125202,35 +110701,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -dvB -dvB -mhf -kfH -uuo -xQF -dgq -mhf -vaR -tvQ -sBQ -mhf -dgq -xQF -arB -kfH -mhf -waV -waV -dzH +nXt +bkB +bkB +hpg +fUJ +fpg +qWv +cnl +hpg +fmD +onU +eTa +hpg +cnl +qWv +ggd +fUJ +hpg +xdj +xdj +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -125298,13 +110797,13 @@ mOJ mOJ mOJ mOJ -tag +ihr rQW -tud +ucZ iSL -jwa +mao rQW -tEF +wDM aIO aIO aIO @@ -125312,21 +110811,21 @@ aIO aIO aIO aIO -tag +ihr gHF -wjn -jsn -gKJ -vmi +tHx +rZy +wMe +jvn vLw nxz vLw -dRf -gKJ -xJW -wjn +lri +wMe +dpZ +tHx gHF -tEF +wDM aIO aIO aIO @@ -125334,13 +110833,13 @@ aIO aIO aIO aIO -tag +ihr spy -nbV +aGZ xpK -unj +bLg spy -tEF +wDM mOJ mOJ mOJ @@ -125404,35 +110903,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -dvB -mhf -mhf -mhf -mhf -bdg -mhf -mhf -mhf -mhf -mhf -bdg -mhf -mhf -mhf -mhf -ehX -ehX -dzH +nXt +kRL +bkB +hpg +hpg +hpg +hpg +jmE +hpg +hpg +hpg +hpg +hpg +jmE +hpg +hpg +hpg +hpg +gGO +gGO +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -125500,13 +110999,13 @@ mOJ mOJ mOJ mOJ -tag +ihr dHn -qQC +jql vJP -vmX +jga dHn -tEF +wDM aIO aIO aIO @@ -125514,10 +111013,10 @@ aIO aIO aIO aIO -tag +ihr gHF -xES -bSy +gZp +pdf vLw vLw lRt @@ -125525,10 +111024,10 @@ nxz vLw vLw vLw -eZN -xES +wli +gZp gHF -tEF +wDM aIO aIO aIO @@ -125536,13 +111035,13 @@ aIO aIO aIO aIO -tag +ihr vFp -nbV +aGZ gAv -wpK +kxb vFp -tEF +wDM mOJ mOJ mOJ @@ -125606,35 +111105,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -dvB -etQ -ovZ -mhf -hPe -ghF -uAB -olY -mNH -olY -uAB -uMc -hPe -mhf -rMO -bsI -waV -waV -dzH +nXt +kRL +bkB +fdj +egT +hpg +vLi +wHM +jGe +qqK +crt +qqK +jGe +uKx +vLi +hpg +yeR +hBy +xdj +xdj +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -125704,11 +111203,11 @@ mOJ mOJ dHn dHn -jhw +pfx vJP -jwa +mao dHn -sqd +qtG aIO aIO aIO @@ -125716,10 +111215,10 @@ aIO aIO aIO aIO -iVa +kHy aBB eEh -aXe +ail vLw vLw vLw @@ -125727,10 +111226,10 @@ nxz vLw vLw vLw -aEK +riz eEh aBB -iVa +kHy aIO aIO aIO @@ -125738,11 +111237,11 @@ aIO aIO aIO aIO -eOq +bBe vFp -nbV +aGZ gAv -unj +bLg vFp vFp mOJ @@ -125808,35 +111307,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -kHf -kHf -kHf -kHf -mhf -hPe -fNN -qyu -qyu -qyu -qyu -qyu -djX -hPe -mhf -waV -waV -waV -waV -dzH +nXt +kRL +kRL +kRL +kRL +hpg +vLi +jPH +spL +spL +spL +spL +spL +mJf +vLi +hpg +xdj +xdj +xdj +xdj +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -125905,12 +111404,12 @@ mOJ qeX qeX rQW -pie -wVM -pds -dlM -kNN -tfu +qfX +sFF +ohP +wZN +nDp +eSZ aIO aIO aIO @@ -125918,21 +111417,21 @@ aIO aIO aIO aIO -ylC -bho -bgm -gKJ -jpq +mUR +dPA +jiD +wMe +fvF vLw vLw nxz vLw vLw -bgm -gKJ -jpq -pki -mVK +jiD +wMe +fvF +iWi +nfu aIO aIO aIO @@ -125940,12 +111439,12 @@ aIO aIO aIO aIO -gJL -fbp -wzh -ege -ngj -vNK +iRm +gtA +vFC +ctu +grk +jWJ spy mOJ mOJ @@ -126010,35 +111509,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl -lmf -lmf -kDC -oDZ -oDZ -mhf -lMP -hUg -iRf -jxm -sDd -jxm -ccL -hUg -elP -mhf -ehX -ehX -sBX -dzH -dzH +nXt +nXt +hYE +qTD +qTD +hpg +sHI +oDe +jTk +umP +kJJ +umP +dQD +oDe +bTC +hpg +gGO +gGO +jEf +sfv +sfv ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -126107,12 +111606,12 @@ mOJ qeX qeX rQW -dXE -obl +udf +dFS iSL -jwa -xeQ -tfu +mao +dFO +eSZ aIO aIO aIO @@ -126120,21 +111619,21 @@ aIO aIO aIO aIO -ylC -uyk -bSy +mUR +eha +pdf lQv -eZN +wli ekd nbG kLX nbG dDB -bSy +pdf lQv -eZN -uyk -mVK +wli +eha +nfu aIO aIO aIO @@ -126142,12 +111641,12 @@ aIO aIO aIO aIO -gJL -nQB -nbV +iRm +mtk +aGZ xpK -fSf -sHY +gQj +xrO spy mOJ mOJ @@ -126212,35 +111711,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl ndl -lmf -kHf -dvB -uXz -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -mhf -waV -waV -waV -dzH +nXt +kRL +bkB +ctZ +hpg +hpg +hpg +hpg +hpg +hpg +hpg +hpg +hpg +hpg +hpg +xdj +xdj +xdj +sfv ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -126309,12 +111808,12 @@ mOJ qeX qeX rQW -aef -nhW -hJy -rtq -xeQ -tfu +ezx +emL +say +tZU +dFO +eSZ aIO aIO aIO @@ -126322,21 +111821,21 @@ aIO aIO aIO aIO -ylC -uyk -kFu -her -fUo +mUR +eha +svl +ada +vGx kkw bwd bDK bwd kkw -kFu -her -fUo -uyk -mVK +svl +ada +vGx +eha +nfu aIO aIO aIO @@ -126344,12 +111843,12 @@ aIO aIO aIO aIO -gJL -nQB -mJc -jDw -hlE -poG +iRm +mtk +xpN +wzM +ffM +vqo spy mOJ mOJ @@ -126414,35 +111913,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl ndl -lmf -kHf -dvB -kHf -dvB -wyI -kHf -luc -dvB -dvB -ehX -wXi -waV -wtc -ehX -ehX -ehX -waV -dzH +nXt +kRL +bkB +kRL +bkB +cWL +kRL +ofm +bkB +bkB +gGO +paY +xdj +bun +gGO +gGO +gGO +xdj +sfv ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -126512,11 +112011,11 @@ qeX qeX dHn qyP -kvw +sfz iSL -xku +ahs dHn -eSM +fku aIO aIO aIO @@ -126524,21 +112023,21 @@ aIO aIO aIO aIO -koa +vov aBB -rVN -eUd -eUd +bsi +rxR +rxR fsB eEh eEh eEh ecW -eUd -eUd -jHN +rxR +rxR +ueo aBB -koa +vov aIO aIO aIO @@ -126546,11 +112045,11 @@ aIO aIO aIO aIO -oqa +dsw vFp -mwS +iIl xpK -qTZ +mln iVS vFp qeX @@ -126616,35 +112115,35 @@ qeX qeX qeX mOJ -tag +ihr ndl ndl ndl ndl -lmf -lmf -dOO -dOO -dOO -dOO -gNJ -dOO -dOO -dOO -xeD -xeD -nWT -xeD -xeD -xeD -xeD -dzH -dzH +nXt +nXt +wYk +wYk +wYk +wYk +pgt +wYk +wYk +wYk +vrl +vrl +psz +vrl +vrl +vrl +vrl +sfv +sfv ndl ndl ndl ndl -tEF +wDM qeX qeX qeX @@ -126714,11 +112213,11 @@ qeX qeX dHn qyP -rtN +qTJ iSL -auJ +eRS dHn -sqd +qtG aIO aIO aIO @@ -126726,21 +112225,21 @@ aIO aIO aIO aIO -iVa +kHy aBB -aVR -eUd -eUd +tZF +rxR +rxR vLw eEh eEh eEh vLw -eUd -eUd -tVf +rxR +rxR +hdn aBB -iVa +kHy aIO aIO aIO @@ -126748,11 +112247,11 @@ aIO aIO aIO aIO -eOq +bBe vFp -kUk +ioM xpK -kyI +rST iVS vFp qeX @@ -126818,35 +112317,35 @@ qeX qeX qeX mOJ -kgF -gej -gej -gej -gej -lmf -lmf -mzq -mzq -iMj -ueq -jrB -qBI -riI -jrB -vTz -duP -kNO -wDB -nTX -rDW -rDW -dzH -dzH -gej -gej -gej -gej -gjc +rdH +hbV +hbV +hbV +hbV +nXt +nXt +gFK +gFK +aoX +gNb +pgv +wBk +jJY +pgv +oVy +tOR +vte +sXd +upL +slf +slf +sfv +sfv +hbV +hbV +hbV +hbV +ona qeX qeX qeX @@ -126915,12 +112414,12 @@ mOJ qeX qeX rQW -dzs -wVM -lEV -dlM -aIy -tfu +poT +sFF +dXm +wZN +fKP +eSZ aIO aIO aIO @@ -126928,21 +112427,21 @@ aIO aIO aIO aIO -ylC -rdQ -bgm -gKJ -jpq +mUR +yjB +jiD +wMe +fvF vLw bZe fiP bZe vLw -bgm -gKJ -jpq -byH -mVK +jiD +wMe +fvF +sCH +nfu aIO aIO aIO @@ -126950,12 +112449,12 @@ aIO aIO aIO aIO -gJL -juo -wzh -ege -ngj -vQf +iRm +xYF +vFC +ctu +grk +hIY spy mOJ mOJ @@ -127026,23 +112525,23 @@ qeX qeX qeX qeX -lmf -rsX -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -dUx -imJ -dzH +nXt +dpd +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +jCu +pwJ +sfv qeX qeX qeX @@ -127117,12 +112616,12 @@ mOJ qeX qeX rQW -dvm -xay +moa +ojk bjp -mwK -xeQ -tfu +iuv +dFO +eSZ aIO aIO aIO @@ -127130,21 +112629,21 @@ aIO aIO aIO aIO -ylC -uyk -bSy +mUR +eha +pdf lQv -eZN +wli lQv lQv lQv lQv lQv -bSy +pdf lQv -eZN -uyk -mVK +wli +eha +nfu aIO aIO aIO @@ -127152,12 +112651,12 @@ aIO aIO aIO aIO -gJL -nQB -nbV +iRm +mtk +aGZ xpK -fSf -yks +gQj +bfk spy mOJ mOJ @@ -127228,23 +112727,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +nXt +gFK +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +slf +sfv qeX qeX qeX @@ -127319,12 +112818,12 @@ mOJ qeX qeX rQW -kEl -yaN -ktE -rtq -xeQ -tfu +euc +buK +xzO +tZU +dFO +eSZ aIO aIO aIO @@ -127332,21 +112831,21 @@ aIO aIO aIO aIO -ylC -uyk -kFu -her -fUo +mUR +eha +svl +ada +vGx vLw vLw vLw vLw vLw -kFu -her -fUo -uyk -mVK +svl +ada +vGx +eha +nfu aIO aIO aIO @@ -127354,12 +112853,12 @@ aIO aIO aIO aIO -gJL -nQB -mJc -cyd -hlE -lyV +iRm +mtk +xpN +hgn +ffM +moC spy mOJ mOJ @@ -127430,23 +112929,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +nXt +gFK +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +slf +sfv qeX qeX qeX @@ -127522,11 +113021,11 @@ qeX qeX dHn dHn -tNI -cMw -evX +tov +tEz +eid dHn -eSM +fku aIO aIO aIO @@ -127534,10 +113033,10 @@ aIO aIO aIO aIO -koa +vov aBB eEh -kVT +dYJ vLw vLw cUy @@ -127545,10 +113044,10 @@ xkj jZv vLw vLw -fyI +pNZ eEh aBB -koa +vov aIO aIO aIO @@ -127556,11 +113055,11 @@ aIO aIO aIO aIO -oqa +dsw vFp -xpn -cAb -dGw +cLB +icJ +mpW vFp vFp mOJ @@ -127632,23 +113131,23 @@ qeX qeX qeX qeX -lmf -fJw -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -hFi -dzH +nXt +nXQ +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +jGc +sfv qeX qeX qeX @@ -127736,21 +113235,21 @@ aIO aIO aIO aIO -tag +ihr gHF -xRN -bSy +eVV +pdf vLw vLw -tlf -kPB -rBZ +jVp +bFC +ckY vLw vLw -eZN -xRN +wli +eVV gHF -tEF +wDM aIO aIO aIO @@ -127834,23 +113333,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +nXt +gFK +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +slf +sfv qeX qeX qeX @@ -127938,21 +113437,21 @@ aIO aIO aIO aIO -tag +ihr gHF -umY -bSy +boW +pdf vLw vLw -bzq -xdS +qNJ +gKl kwb vLw vLw -eZN -umY +wli +boW gHF -tEF +wDM aIO aIO aIO @@ -128036,23 +113535,23 @@ qeX qeX qeX qeX -lmf -mzq -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -rDW -dzH +nXt +gFK +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +slf +sfv qeX qeX qeX @@ -128140,21 +113639,21 @@ aIO aIO aIO aIO -tag +ihr aBB -hja -kFu -rxh +jAC +svl +uMK vLw -lYk -hmc -jSf +nRN +nVK +avA vLw -crN -fUo -hja +lDk +vGx +jAC aBB -tEF +wDM aIO aIO aIO @@ -128238,23 +113737,23 @@ qeX qeX qeX qeX -lmf -rsX -mzq -mzq -mzq -mzq -mzq -mzq -mzq -rDW -rDW -rDW -rDW -rDW -rDW -imJ -dzH +nXt +dpd +gFK +gFK +gFK +gFK +gFK +gFK +gFK +slf +slf +slf +slf +slf +slf +pwJ +sfv qeX qeX qeX @@ -128342,21 +113841,21 @@ aIO aIO aIO aIO -tag +ihr aBB gHF aBB -oPI +utX vLw cUy xkj jZv vLw -eeP +pXW aBB gHF aBB -tEF +wDM aIO aIO aIO @@ -128440,23 +113939,23 @@ qeX qeX qeX qeX -lmf -mzq -qZE -mzq -grp -mzq -qZE -mzq -grp -rDW -dlz -rDW -pdr -rDW -dlz -rDW -dzH +nXt +gFK +iEg +gFK +rAk +gFK +iEg +gFK +rAk +slf +mXJ +slf +tGa +slf +mXJ +slf +sfv qeX qeX qeX @@ -128544,21 +114043,21 @@ aIO aIO aIO aIO -kgF -gej +rdH +hbV ndl gHF -lwR -her -her -her -her -her -crP +giv +ada +ada +ada +ada +ada +fOv gHF ndl -gej -gjc +hbV +ona aIO aIO aIO @@ -128642,23 +114141,23 @@ qeX qeX qeX qeX -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -lmf -dzH -dzH -dzH -dzH -dzH -dzH -dzH -dzH +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +nXt +sfv +sfv +sfv +sfv +sfv +sfv +sfv +sfv qeX qeX qeX @@ -128748,7 +114247,7 @@ aIO aIO qeX qeX -tag +ihr aBB aBB gHF @@ -128758,7 +114257,7 @@ gHF gHF aBB aBB -tEF +wDM qeX qeX aIO @@ -128950,17 +114449,17 @@ aIO aIO qeX qeX -kgF -gej -gej -gej -gej -gej -gej -gej -gej -gej -gjc +rdH +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +hbV +ona qeX qeX aIO diff --git a/maps/map_files/generic/Admin_level.dmm b/maps/map_files/generic/Admin_level.dmm index 6a045d9c03..86f39d2e9f 100644 --- a/maps/map_files/generic/Admin_level.dmm +++ b/maps/map_files/generic/Admin_level.dmm @@ -15,30 +15,22 @@ /obj/docking_port/stationary/vehicle_elevator/adminlevel, /turf/open/space/basic, /area/space) -"aj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/spider/stickyweb, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, -/area/adminlevel/ert_station) +"af" = ( +/turf/open/floor/carpet/edge/southeast, +/area/centcom/living) "ak" = ( /turf/closed/wall/almayer/outer, /area/tdome/tdome1) +"am" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) "an" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"ao" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 27 - }, -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station) "as" = ( /turf/open/space/basic, /area/space) @@ -59,38 +51,62 @@ /obj/structure/closet/cabinet, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"bn" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "silver" +"aZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Hangar"; + no_panel = 1 }, -/area/adminlevel/ert_station) -"co" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "ERT Lock 2"; + unacidable = 1 }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) -"cD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = null +"bG" = ( +/turf/open/floor/tdome/w_y2/north, +/area/tdome) +"bI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/ert_station) +"cf" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 27 }, +/turf/open/floor/carpet, /area/adminlevel/ert_station) -"cK" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"cB" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"cE" = ( +/obj/structure/window/framed/colony/reinforced/hull, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station) +"cF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Hangar"; + no_panel = 1 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "floor" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "ERT Lock 1"; + unacidable = 1 }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) "cU" = ( /obj/effect/step_trigger/teleporter/random{ @@ -105,38 +121,44 @@ }, /turf/open/space/transit/east/shuttlespace_ew4, /area/space) -"dr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"cY" = ( +/obj/structure/machinery/telecomms/hub/preset_cent, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"dd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 28 }, -/area/adminlevel/ert_station/shuttle_dispatch) +/obj/structure/bed/sofa/south/grey/right, +/obj/item/trash/buritto, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"dq" = ( +/turf/open/floor/tdome/redfull, +/area/tdome/tdome2) "ds" = ( /turf/closed/wall/almayer/outer{ name = "reinforced hull" }, /area/centcom/living) -"dw" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"dt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/area/supply/dock) +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) "dy" = ( /turf/open/floor/wood, /area/centcom/living) "dG" = ( /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"dO" = ( -/obj/effect/landmark/thunderdome/two, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdome2) +"dQ" = ( +/obj/structure/machinery/cm_vending/sorted/walkman, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/southwest, +/area/adminlevel/ert_station/shuttle_dispatch) "dR" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -150,21 +172,36 @@ }, /turf/open/space/transit/east/shuttlespace_ew7, /area/space) -"dV" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" +"dW" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/area/tdome/tdomeobserve) +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"ea" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"eb" = ( +/obj/structure/machinery/telecomms/bus/preset_cent, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"ee" = ( +/turf/open/floor/almayer/w_y2/north, +/area/adminlevel/ert_station) +"ef" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/tdome/northeast, +/area/tdome/tdome2) "ej" = ( /turf/open/floor/plating/bare_catwalk, /area/supply/dock) -"ev" = ( -/turf/open/floor/carpet/edge{ - dir = 9 - }, -/area/centcom/living) "ew" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, @@ -192,42 +229,17 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) -"eE" = ( -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/centcom/living) -"eF" = ( -/turf/open/floor/carpet/edge{ - dir = 5 - }, -/area/centcom/living) -"eG" = ( -/obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +"eD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/spider/stickyweb, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station) -"eQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"eU" = ( -/turf/open/floor/carpet/edge{ - dir = 8 - }, -/area/centcom/living) -"eW" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/carpet/edge{ - dir = 8 +"eK" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, -/area/centcom/living) +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) "eX" = ( /obj/effect/landmark/sim_target, /turf/open/floor/engine, @@ -235,16 +247,20 @@ "eY" = ( /turf/open/floor/carpet, /area/centcom/living) -"eZ" = ( -/turf/open/floor/carpet/edge{ - dir = 4 - }, -/area/centcom/living) +"fc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) "fn" = ( /turf/closed/wall/almayer/outer{ name = "reinforced hull" }, /area/centcom/control) +"ft" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "fu" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/clothing/head/collectable/tophat{ @@ -269,49 +285,6 @@ /obj/structure/prop/almayer/ship_memorial/centcomm/admin, /turf/open/floor/carpet, /area/centcom/living) -"fz" = ( -/obj/structure/machinery/telecomms/receiver/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fA" = ( -/obj/structure/machinery/telecomms/bus/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fB" = ( -/obj/structure/machinery/telecomms/processor/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fC" = ( -/obj/structure/machinery/telecomms/server/presets/centcomm, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fL" = ( -/turf/open/floor/carpet/edge{ - dir = 10 - }, -/area/centcom/living) -"fM" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/carpet/edge{ - dir = 4 - }, -/area/centcom/living) -"fN" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/carpet/edge{ - dir = 1 - }, -/area/centcom/living) "fO" = ( /obj/effect/step_trigger/message/memorial, /turf/open/floor/carpet/edge, @@ -319,170 +292,107 @@ "fP" = ( /turf/open/floor/carpet/edge, /area/centcom/living) -"fQ" = ( -/obj/structure/machinery/telecomms/relay/preset/centcom, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fR" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"fW" = ( -/turf/open/floor/carpet/edge{ - dir = 6 - }, -/area/centcom/living) -"gb" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/adminlevel/ert_station) -"gd" = ( -/obj/structure/machinery/telecomms/allinone/interceptor, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"ge" = ( -/obj/structure/machinery/telecomms/broadcaster/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"gf" = ( -/obj/structure/machinery/telecomms/hub/preset_cent, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"gg" = ( -/obj/structure/machinery/computer/rdservercontrol{ - name = "Master R&D Server Controller" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"gh" = ( -/obj/structure/machinery/r_n_d/server/centcom, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) +"gk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station/shuttle_dispatch) "gu" = ( /turf/open/floor/plating, /area/admin/droppod/holding) -"gA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +"gF" = ( +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) -"gR" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +"gM" = ( +/obj/structure/sign/poster/hunk, +/obj/structure/window/framed/colony/reinforced/hull, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) -"gX" = ( -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "hp" = ( /turf/closed/wall/indestructible, /area/start) -"hu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdomeobserve) -"hH" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +"hv" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station) +"hG" = ( +/turf/open/floor/carpet/edge/east, +/area/centcom/living) "hP" = ( /obj/docking_port/stationary/emergency_response/idle_port1, /turf/open/floor/plating, /area/adminlevel/ert_station) +"hR" = ( +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"hS" = ( +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) +"hV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station) "hZ" = ( /obj/structure/sign/poster/art, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) -"il" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station) -"iz" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +"ic" = ( +/obj/effect/landmark/thunderdome/one, +/turf/open/floor/tdome/northeast, +/area/tdome/tdome1) +"ip" = ( +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) -"iA" = ( -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome) -"iL" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +"iD" = ( +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station) +"iK" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) "iR" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) +"iZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/tdome/northeast, +/area/tdome) "ja" = ( /turf/open/floor/plating, /area/admin/droppod/loading) +"jg" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/spawner/random/toy, +/turf/open/floor/almayer/silver/northeast, +/area/adminlevel/ert_station/shuttle_dispatch) +"jh" = ( +/turf/open/floor/almayer/mono, +/area/centcom/control) "ji" = ( /obj/effect/landmark/newplayer_start, /turf/open/floor, /area/start) -"jp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdomeobserve) -"ju" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "tdome_t1"; - name = "\improper Team 1 Shutters" - }, -/turf/open/floor/tdome{ - icon_state = "test_floor4" - }, -/area/tdome) -"jS" = ( -/turf/open/floor/tdome{ - icon_state = "tcomms" +"jk" = ( +/obj/structure/machinery/telecomms/processor/preset_cent, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"jT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ + pixel_y = 32 }, -/area/tdome) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) +"jY" = ( +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "kn" = ( /obj/docking_port/stationary/emergency_response/idle_port3, /turf/open/floor/plating, @@ -494,87 +404,105 @@ "kx" = ( /turf/closed/wall/indestructible/splashscreen, /area/start) -"kN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"kL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/soylentgreen, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 13 + }, +/turf/open/floor/almayer/red/southeast, +/area/adminlevel/ert_station) +"lJ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) +"lT" = ( +/obj/structure/machinery/vending/cigarette/free, +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) +"mi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - icon_state = "floor" +/turf/open/floor/carpet/edge/east, +/area/centcom/living) +"mk" = ( +/turf/open/floor/almayer/w_y1/north, +/area/adminlevel/ert_station) +"mm" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"mL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Restroom" }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"me" = ( +"mP" = ( +/turf/open/floor/carpet/edge/northwest, +/area/centcom/living) +"nf" = ( +/obj/structure/machinery/chem_storage/misc, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"nk" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"nl" = ( /obj/structure/disposalpipe/segment{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/ert_station) -"mB" = ( +"np" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "tdome_t1"; - name = "Team 1 Shutters (Left)"; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "tdome_t2"; - name = "Team 2 Shutters (Right)"; - pixel_y = 3 +/obj/item/device/binoculars{ + pixel_x = -4 }, -/obj/structure/machinery/door_control{ - id = "tdome_observer"; - name = "Observer Shutters"; - pixel_y = 9 +/obj/item/device/binoculars{ + pixel_x = 3 }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" +/obj/item/device/binoculars{ + pixel_y = 4 }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) -"no" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome) -"nP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"nU" = ( +"nB" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) -"oa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 +"nE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Hangar"; + no_panel = 1 }, -/turf/open/floor/almayer{ - icon_state = "floor" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "ERT Lock 4"; + unacidable = 1 }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station) -"ob" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer{ - icon_state = "silver" +"nF" = ( +/obj/structure/machinery/r_n_d/server/centcom, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"nN" = ( +/turf/open/floor/tdome/w_y0/north, +/area/tdome) +"nQ" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station) +"nT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/turf/open/floor/almayer/greencorner, /area/adminlevel/ert_station) "op" = ( /obj/structure/machinery/cryopod, @@ -583,33 +511,15 @@ }, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"ot" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/adminlevel/ert_station) -"oB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +"oI" = ( +/turf/open/floor/almayer/silvercorner, /area/adminlevel/ert_station/shuttle_dispatch) -"oD" = ( -/obj/structure/window/framed/almayer/hull, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "tdome_observer"; - name = "\improper Observer Shutters" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" +"oO" = ( +/obj/structure/sign/catclock{ + pixel_x = 32 }, -/area/tdome) +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station/shuttle_dispatch) "oQ" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -629,26 +539,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"oW" = ( -/turf/open/floor/almayer{ +"oV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "w-y0" - }, -/area/adminlevel/ert_station) -"oZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + name = "\improper Dormitories" }, -/area/adminlevel/ert_station) -"pc" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/obj/structure/disposalpipe/segment{ + dir = 1 }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "ph" = ( /obj/structure/disposalpipe/junction{ @@ -656,41 +555,55 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"pm" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +"pp" = ( +/obj/structure/machinery/telecomms/broadcaster/preset_cent, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"pv" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"pq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" +"pJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null }, -/area/adminlevel/ert_station/shuttle_dispatch) -"pP" = ( -/obj/item/newspaper, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station) +"pT" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/tdome/northeast, +/area/tdome/tdome1) +"pV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator/upgraded, +/obj/item/clothing/glasses/hud/health, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) -"pQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 32 +"qb" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"qd" = ( +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station) +"qh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "Secure Storage" }, -/area/adminlevel/ert_station/shuttle_dispatch) -"qi" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - icon_state = "floor" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 }, -/area/adminlevel/ert_station/shuttle_dispatch) +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) "ql" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -704,43 +617,38 @@ }, /turf/open/space/transit/east/shuttlespace_ew8, /area/space) -"rf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" +"rn" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 }, +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) -"rR" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" +"ro" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) -"rT" = ( -/obj/structure/machinery/vending/cigarette/free, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdomeobserve) -"sj" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "floor" +"rV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) -"sq" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y0" +"st" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/spray/cleaner, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/tdome) +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "sy" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -754,45 +662,43 @@ }, /turf/open/space/transit/east/shuttlespace_ew5, /area/space) +"sM" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station) "sN" = ( /obj/structure/disposalpipe/segment{ dir = 1 }, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"sW" = ( -/obj/effect/landmark/thunderdome/one, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdome1) -"tg" = ( -/turf/open/floor/tdome{ - icon_state = "bluefull" - }, -/area/tdome/tdome1) -"th" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"ta" = ( +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"tu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/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/monkeycubes, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) -"tn" = ( -/obj/structure/phone_base/hidden{ - dir = 8; - name = "Station Telephone"; - phone_id = "Unknown Signal"; - pixel_x = 14 - }, -/turf/open/floor/almayer{ - icon_state = "floor" +"tv" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) -"tx" = ( -/obj/structure/machinery/hologram/holopad, -/turf/open/floor/carpet, -/area/centcom/living) +"tA" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) "tP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -804,55 +710,39 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) -"tY" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"tS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station/shuttle_dispatch) +"tU" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"uf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories" - }, +"uo" = ( /obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station) -"ug" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"uk" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/prison{ - icon_state = "kitchen" + dir = 4 }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "ur" = ( /obj/docking_port/stationary/emergency_response/idle_port6, /turf/open/floor/plating, /area/adminlevel/ert_station) -"uI" = ( -/turf/open/floor/almayer{ - icon_state = "red" +"ux" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/carpet/edge/west, +/area/centcom/living) +"uz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station) +"uC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "uJ" = ( /obj/effect/step_trigger/teleporter/random{ @@ -867,66 +757,22 @@ }, /turf/open/space/transit/east/shuttlespace_ew13, /area/space) -"uK" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/adminlevel/ert_station) -"uN" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 27 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/ert_station) -"uY" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/spray/cleaner, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/tool/mop, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"va" = ( -/obj/structure/toilet, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"vB" = ( -/obj/structure/surface/table/reinforced/black, -/obj/effect/spawner/random/toy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"vD" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +"uW" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) -"vE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ - hacked = 1; - name = "\improper Response Team Automated Guns Rack"; - use_power = 0; - use_snowflake_points = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"vb" = ( +/turf/open/floor/tdome/bluefull, +/area/tdome/tdome1) +"vA" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_y = 30 }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) "vH" = ( /obj/effect/step_trigger/teleporter/random{ @@ -941,39 +787,17 @@ }, /turf/open/space/transit/east/shuttlespace_ew15, /area/space) -"vN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"wp" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"wr" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/adminlevel/ert_station) -"wu" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"vR" = ( +/obj/structure/target{ + name = "punching bag" }, +/turf/open/floor/almayer/silver, /area/adminlevel/ert_station) -"wA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "floor" +"vT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station) "wL" = ( /obj/structure/machinery/disposal/deliveryChute, @@ -982,6 +806,13 @@ }, /turf/open/floor/plating, /area/space) +"wR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "wW" = ( /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) @@ -989,13 +820,20 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2/autoname, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"xb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" +"xh" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Medbay"; + req_access = null; + req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "floor" +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"xm" = ( +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/ert_station) "xw" = ( /obj/effect/step_trigger/teleporter/random{ @@ -1010,6 +848,17 @@ }, /turf/open/space/transit/east/shuttlespace_ew3, /area/space) +"xD" = ( +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"xE" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "tdome_t1"; + name = "\improper Team 1 Shutters" + }, +/turf/open/floor/tdome/test_floor4, +/area/tdome) "xJ" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -1030,21 +879,25 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"xU" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y2" +"xP" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/carpet/edge/north, +/area/centcom/living) +"xR" = ( +/obj/structure/machinery/computer/rdservercontrol{ + name = "Master R&D Server Controller" }, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"yc" = ( +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/ert_station) -"yk" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"yl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/area/adminlevel/ert_station) +/turf/open/floor/almayer/silver/southeast, +/area/adminlevel/ert_station/shuttle_dispatch) "ym" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1062,128 +915,60 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"yC" = ( -/obj/structure/machinery/gibber{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station) -"yH" = ( -/obj/effect/landmark/thunderdome/two, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdome2) -"yQ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station) -"zg" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station) -"zk" = ( -/obj/structure/machinery/chem_dispenser/soda/beer{ - density = 0; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station) -"zn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/adminlevel/ert_station) -"zr" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"zt" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +"zx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, /area/adminlevel/ert_station) -"zB" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"zN" = ( +"zQ" = ( /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + dir = 2 }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) -"zO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator/upgraded, -/obj/item/clothing/glasses/hud/health, -/obj/item/roller, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +"zR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) -"AI" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +"zZ" = ( +/turf/open/floor/tdome/tcomms, +/area/tdome) +"Ay" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"AL" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"AE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/ert_station) +"AH" = ( +/obj/structure/noticeboard{ + desc = "It seems very, very empty."; + name = "departures board"; + pixel_y = 34 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) +"AN" = ( +/obj/structure/machinery/telecomms/allinone/interceptor, +/turf/open/floor/almayer/mono, +/area/centcom/control) "AS" = ( /turf/closed/wall/almayer/outer, /area/tdome/tdome2) -"Bv" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +"Bd" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) +"Bj" = ( +/turf/open/floor/carpet/edge/north, +/area/centcom/living) "Bw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -1192,10 +977,12 @@ /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) "Bz" = ( -/turf/open/floor/tdome{ - icon_state = "redfull" +/obj/structure/machinery/chem_master, +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/tdome/tdome2) +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "BO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -1203,56 +990,56 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"BV" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"BR" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/ert_station) -"Cc" = ( -/obj/effect/landmark/sim_camera, -/turf/open/floor/engine{ - color = "#AAAAAA" - }, -/area/adminlevel/simulation) -"Cf" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +"BX" = ( +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station/shuttle_dispatch) +"BZ" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Ch" = ( /obj/structure/sign/poster/ad, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) -"Cm" = ( -/obj/structure/machinery/cm_vending/sorted/walkman, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"CI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 6 +"Ck" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"Cu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"CK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "Detention Cell"; - req_access = null +"Cw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, -/obj/structure/disposalpipe/segment{ - dir = 2 +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"CM" = ( +/obj/structure/machinery/chem_dispenser/soda/beer{ + density = 0; + pixel_y = 10 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "CN" = ( /obj/structure/sign/safety/bathunisex{ @@ -1260,63 +1047,45 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"CU" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"CO" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station) +"CW" = ( +/turf/open/floor/almayer/greencorner/north, /area/adminlevel/ert_station) "Do" = ( /obj/structure/mirror, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) +"Dp" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station) "Dq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/closed/wall/almayer/outer, /area/tdome/tdomeobserve) -"Ds" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station) -"Dt" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Dv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Dw" = ( -/obj/structure/closet/secure_closet/brig, -/obj/item/book/manual/marine_law, -/obj/item/handcuffs, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/adminlevel/ert_station) "DD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"Ed" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y1" +"DF" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"DG" = ( +/turf/open/floor/tdome/w_y1/north, /area/tdome) +"DZ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) "Ef" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -1330,6 +1099,13 @@ }, /turf/open/space/transit/east/shuttlespace_ew9, /area/space) +"Eh" = ( +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station) +"Ej" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) "En" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/book/manual/chef_recipes, @@ -1344,12 +1120,24 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"Ez" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +"Er" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) +"Ev" = ( +/turf/open/floor/almayer/silver/southeast, +/area/adminlevel/ert_station) +"EB" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "tdome_observer"; + name = "\improper Observer Shutters" + }, +/turf/open/floor/tdome/northeast, +/area/tdome) "EG" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1368,76 +1156,32 @@ /obj/item/clothing/head/chefhat, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"ET" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Restroom" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"Ff" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station) -"EY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Fa" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - id = "tdome_t2"; - name = "\improper Team 2 Shutters" - }, -/turf/open/floor/tdome{ - icon_state = "test_floor4" - }, -/area/tdome) -"Fd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +"Fi" = ( +/turf/open/floor/almayer/plating_striped, /area/adminlevel/ert_station) +"Fj" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/adminlevel/ert_station/shuttle_dispatch) "Fo" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) +"Ft" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "FB" = ( /turf/open/floor/plating, /area/adminlevel/ert_station) -"FO" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Hangar"; - no_panel = 1 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ERT Lock 1"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/adminlevel/ert_station) -"FT" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "Ge" = ( /obj/structure/bed/chair{ dir = 4 @@ -1451,14 +1195,15 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"Gh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ - req_access = null - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" +"Gg" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"Gl" = ( +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station) "Gm" = ( /obj/effect/step_trigger/teleporter/random{ @@ -1473,24 +1218,20 @@ }, /turf/open/space/transit/east/shuttlespace_ew12, /area/space) -"Gq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"Gr" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" +"Gn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" }, -/area/adminlevel/ert_station) -"Gs" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) +"Gt" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + id = "tdome_t2"; + name = "\improper Team 2 Shutters" }, -/area/adminlevel/ert_station) +/turf/open/floor/tdome/test_floor4, +/area/tdome) "Gv" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/snacks/sandwich{ @@ -1507,11 +1248,8 @@ /obj/item/reagent_container/food/condiment/saltshaker, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"GB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +"Gz" = ( +/turf/open/floor/almayer/red, /area/adminlevel/ert_station) "GC" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1537,47 +1275,38 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto, /turf/closed/wall, /area/adminlevel/ert_station) -"GT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Restroom" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"GM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station/shuttle_dispatch) +"GP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"GU" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"GX" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/ert_station) -"Hv" = ( +"Hf" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/tdome{ - icon_state = "tcomms" - }, +/turf/open/floor/tdome/tcomms, /area/tdome/tdomeobserve) -"HA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdomeobserve) -"HL" = ( -/obj/structure/sign/catclock{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"HQ" = ( +"Hx" = ( /obj/structure/disposalpipe/segment{ - dir = 1 + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"HN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access = null }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/ert_station) "HW" = ( /obj/docking_port/stationary/emergency_response/idle_port4, @@ -1587,22 +1316,18 @@ /obj/structure/sign/safety/med_life_support, /turf/closed/wall, /area/adminlevel/ert_station) -"HY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" +"Ig" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station) -"Il" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"Ik" = ( +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"In" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Io" = ( /obj/structure/flora/pottedplant{ @@ -1614,20 +1339,26 @@ /obj/structure/bed/stool, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"Is" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/adminlevel/ert_station) -"ID" = ( +"Iv" = ( /obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/northwest, +/area/adminlevel/ert_station/shuttle_dispatch) +"Iw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) +"IA" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Restroom" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/disposalpipe/segment{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "IE" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1639,18 +1370,16 @@ }, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"IO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +"IG" = ( +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/ert_station) "IR" = ( /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/simulation) +"IU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station) "Jl" = ( /obj/docking_port/stationary/emergency_response/idle_port5{ dwidth = 8 @@ -1658,48 +1387,37 @@ /turf/open/floor/plating, /area/adminlevel/ert_station) "Js" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/almayer, -/area/adminlevel/ert_station) -"Jy" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/adminlevel/ert_station) -"JT" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"JS" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/ert_station) "JW" = ( /obj/structure/machinery/cm_vending/sorted/walkman, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) +"Ka" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "Kk" = ( /turf/closed/wall/mineral/gold, /area/adminlevel/ert_station) -"Kv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"KA" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/adminlevel/ert_station) +"Km" = ( +/obj/structure/machinery/telecomms/receiver/preset_cent, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"KG" = ( +/turf/open/floor/carpet/edge/northeast, +/area/centcom/living) +"KI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) "KM" = ( /obj/structure/bed/chair{ dir = 4 @@ -1716,32 +1434,11 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) -"Ld" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Lq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome) -"Lt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, +"Le" = ( +/turf/open/floor/almayer/silvercorner, +/area/adminlevel/ert_station) +"Lr" = ( +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "Ly" = ( /obj/effect/decal/warning_stripes{ @@ -1762,20 +1459,6 @@ /obj/item/coin/uranium, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"LD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/adminlevel/ert_station) -"LE" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/adminlevel/ert_station) "LF" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/r_wall/unmeltable, @@ -1784,65 +1467,43 @@ /obj/item/trash/barcardine, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"LR" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, -/area/adminlevel/ert_station) -"LU" = ( -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/adminlevel/ert_station) -"LZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "Secure Storage" - }, -/obj/structure/machinery/door/poddoor/almayer{ +"LQ" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - unacidable = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "pipe-c" }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Md" = ( +/obj/item/newspaper, +/turf/open/floor/carpet, /area/adminlevel/ert_station) "Mk" = ( /obj/structure/sign/safety, /turf/closed/wall, /area/adminlevel/ert_station) -"MB" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/adminlevel/ert_station) -"MG" = ( +"Mu" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"ML" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) +"Mz" = ( +/obj/effect/landmark/thunderdome/two, +/turf/open/floor/tdome/northeast, +/area/tdome/tdome2) +"MH" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) "MQ" = ( /obj/structure/disposalpipe/segment{ @@ -1851,6 +1512,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) +"MZ" = ( +/obj/structure/machinery/chem_storage, +/turf/open/floor/almayer/mono, +/area/centcom/control) "Nc" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -1858,20 +1523,9 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"Ni" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Hangar"; - no_panel = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ERT Lock 4"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +"Nh" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "Nk" = ( /obj/structure/flora/pottedplant{ @@ -1879,17 +1533,6 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"Nt" = ( -/obj/structure/noticeboard{ - desc = "It seems very, very empty."; - name = "departures board"; - pixel_y = 34 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "Nx" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -1897,45 +1540,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"NE" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station) "NH" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall, /area/adminlevel/ert_station) -"NZ" = ( +"NQ" = ( +/obj/item/prop/helmetgarb/rosary, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"Oa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Hangar"; - no_panel = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ERT Lock 3"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +"NZ" = ( +/turf/open/floor/carpet, /area/adminlevel/ert_station) "Oi" = ( /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station/shuttle_dispatch) -"Oj" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, -/area/adminlevel/ert_station) "On" = ( /obj/structure/disposaloutlet{ dir = 4 @@ -1945,13 +1563,34 @@ }, /turf/open/space, /area/space) -"OC" = ( -/obj/structure/sign/poster/hunk, -/obj/structure/window/framed/colony/reinforced/hull, -/turf/open/floor/almayer{ - icon_state = "redfull" +"Oo" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 10 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) +"Ov" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/ashtray/plastic{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/trash/cigbutt/ucigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"Ox" = ( +/obj/structure/machinery/telecomms/server/presets/centcomm, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"OA" = ( +/turf/open/floor/tdome/northeast, +/area/tdome) "OD" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/wood/ship, @@ -1960,15 +1599,28 @@ /obj/structure/sign/safety/maint, /turf/closed/wall, /area/adminlevel/ert_station) -"OI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +"OG" = ( +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) "OT" = ( /turf/closed/wall/almayer/outer, /area/tdome/tdomeobserve) +"OX" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Hangar"; + no_panel = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "ERT Lock 3"; + unacidable = 1 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station) +"Pb" = ( +/turf/open/floor/almayer/w_y0/north, +/area/adminlevel/ert_station) "Po" = ( /obj/structure/bed, /obj/item/bedsheet, @@ -1980,20 +1632,31 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"Pr" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"Ps" = ( +/obj/structure/machinery/newscaster{ + pixel_y = 32 }, -/area/adminlevel/ert_station) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) +"Px" = ( +/turf/open/floor/carpet/edge/southwest, +/area/centcom/living) +"PB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station/shuttle_dispatch) "PE" = ( /turf/open/floor/engine, /area/adminlevel/simulation) -"PS" = ( -/obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/almayer{ - icon_state = "floor" +"PO" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ + hacked = 1; + name = "\improper Response Team Automated Guns Rack"; + use_power = 0; + use_snowflake_points = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) "PT" = ( /obj/structure/sign/safety/debark_lounge{ @@ -2011,111 +1674,90 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"Qd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "floor" +"Qc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "tdome_t1"; + name = "Team 1 Shutters (Left)"; + pixel_y = -3 }, -/area/adminlevel/ert_station) -"Qh" = ( -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door_control{ + id = "tdome_t2"; + name = "Team 2 Shutters (Right)"; + pixel_y = 3 }, -/area/tdome/tdomeobserve) -"Qo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door_control{ + id = "tdome_observer"; + name = "Observer Shutters"; + pixel_y = 9 }, +/turf/open/floor/tdome/northeast, /area/tdome/tdomeobserve) -"Qq" = ( -/obj/structure/bed/sofa/vert/grey/top, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Qr" = ( -/turf/open/floor/almayer{ - icon_state = "floor" +"Qf" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"Qz" = ( -/obj/item/prop/helmetgarb/rosary, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +"QC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"QA" = ( -/obj/structure/machinery/chem_storage/misc, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) -"QJ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +"QH" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"QP" = ( +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station) -"Rg" = ( -/obj/effect/landmark/thunderdome/one, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdome1) -"Rj" = ( -/obj/structure/window/framed/colony, -/turf/open/floor/almayer{ - icon_state = "floor" +"Rh" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "Detention Cell"; + req_access = null }, -/area/adminlevel/ert_station) -"RF" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/disposalpipe/segment{ + dir = 2 }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station) -"RK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +"Rm" = ( +/obj/effect/landmark/sim_camera, +/turf/open/floor/engine/simulator_center, +/area/adminlevel/simulation) +"RH" = ( +/obj/structure/closet/secure_closet/brig, +/obj/item/book/manual/marine_law, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station) -"RL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/soylentgreen, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +"RI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/tdome/northeast, +/area/tdome) +"RO" = ( +/turf/open/floor/tdome/northeast, +/area/tdome/tdomeobserve) +"RW" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station) -"RV" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/turf/open/floor/almayer{ - icon_state = "silver" +"Se" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + pixel_y = 10 }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) -"RW" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, -/turf/open/floor/wood/ship, +"Sg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station) "Sk" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -2124,60 +1766,42 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) -"Sl" = ( -/obj/structure/machinery/cm_vending/clothing/antag{ - name = "\improper Response Team Automated Equipment Rack" +"Ss" = ( +/obj/structure/phone_base/hidden{ + dir = 8; + name = "Station Telephone"; + phone_id = "Unknown Signal"; + pixel_x = 14 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"Sv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Sw" = ( /obj/structure/machinery/newscaster/security_unit, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) -"SB" = ( -/turf/open/floor/tdome{ - dir = 1; - icon_state = "w-y2" - }, -/area/tdome) -"ST" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Medbay"; - req_access = null; - req_one_access = null - }, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"Tg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station) -"Ti" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "w-y1" +"SE" = ( +/obj/structure/machinery/gibber{ + pixel_y = 10 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station) -"TD" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +"SF" = ( +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station/shuttle_dispatch) +"Tl" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) +"Ts" = ( +/turf/open/floor/carpet/edge/west, +/area/centcom/living) "TH" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -2204,42 +1828,8 @@ }, /turf/open/space/basic, /area/space) -"TU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 28 - }, -/obj/structure/bed/sofa/south/grey/right, -/obj/item/trash/buritto, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"TX" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/ashtray/plastic{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/trash/cigbutt/ucigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Ua" = ( -/obj/structure/machinery/cm_vending/gear/antag{ - hacked = 1; - name = "\improper Response Team Automated Gear Rack"; - use_snowflake_points = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +"TY" = ( +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/ert_station) "Uf" = ( /obj/structure/sign/safety/medical, @@ -2248,49 +1838,12 @@ }, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) -"Uk" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Ur" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station/shuttle_dispatch) -"Ut" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/adminlevel/ert_station) -"Uw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = -4 - }, -/obj/item/device/binoculars{ - pixel_x = 3 - }, -/obj/item/device/binoculars{ - pixel_y = 4 - }, -/turf/open/floor/tdome{ - dir = 5; - icon_state = "plating" - }, -/area/tdome/tdomeobserve) -"UI" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, +"Uj" = ( +/obj/structure/machinery/telecomms/relay/preset/centcom, +/turf/open/floor/almayer/mono, +/area/centcom/control) +"Uv" = ( +/turf/open/floor/almayer/silver/east, /area/adminlevel/ert_station/shuttle_dispatch) "UQ" = ( /obj/effect/decal/warning_stripes{ @@ -2298,14 +1851,6 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) -"UT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "floor" - }, -/area/adminlevel/ert_station) "UW" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -2319,21 +1864,30 @@ }, /turf/open/space/transit/east/shuttlespace_ew14, /area/space) +"Va" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) "Vf" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station/shuttle_dispatch) +"Vk" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"Vx" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) "VC" = ( /obj/structure/sign/poster/clf, /turf/closed/wall, /area/adminlevel/ert_station) -"VI" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "VQ" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -2347,18 +1901,6 @@ }, /turf/open/space/transit/east/shuttlespace_ew6, /area/space) -"VS" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"Wn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "Wp" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -2370,6 +1912,13 @@ }, /turf/open/floor/plating/almayer, /area/adminlevel/ert_station) +"Wv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) "WA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -2383,32 +1932,22 @@ }, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"WH" = ( -/obj/structure/machinery/chem_storage, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/centcom/control) +"WI" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/adminlevel/ert_station) "WK" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"WP" = ( -/obj/structure/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/adminlevel/ert_station/shuttle_dispatch) "WQ" = ( /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/wood/ship, /area/adminlevel/ert_station) +"Xc" = ( +/turf/open/floor/almayer/test_floor5, +/area/supply/dock) "Xi" = ( /obj/structure/sign/poster/music, /turf/closed/wall, @@ -2432,66 +1971,52 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"XR" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" +"XG" = ( +/obj/structure/machinery/cm_vending/clothing/antag{ + name = "\improper Response Team Automated Equipment Rack" }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) -"Ya" = ( -/turf/open/floor/plating/almayer, -/area/adminlevel/ert_station) -"Yn" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"XZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) -"Ys" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +"Ya" = ( +/turf/open/floor/plating/almayer, /area/adminlevel/ert_station) -"Yu" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "floor" +"Ye" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck{ + pixel_x = -1; + pixel_y = 2 }, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station/shuttle_dispatch) -"Yy" = ( +"Yp" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) -"YE" = ( -/obj/structure/machinery/chem_master, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) -"YJ" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"Yt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station/shuttle_dispatch) +"Yz" = ( +/obj/structure/machinery/cm_vending/gear/antag{ + hacked = 1; + name = "\improper Response Team Automated Gear Rack"; + use_snowflake_points = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station) -"YO" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +"YH" = ( +/obj/structure/toilet, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station) "YU" = ( /turf/closed/wall, @@ -2502,18 +2027,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"Zh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/obj/item/reagent_container/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/monkeycubes, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +"Zg" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/almayer/floor, /area/adminlevel/ert_station) "Zp" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2521,62 +2037,14 @@ /obj/item/tool/pen, /turf/open/floor/carpet, /area/adminlevel/ert_station) -"Zr" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/ert_station) -"Zv" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/adminlevel/ert_station) "Zw" = ( /obj/structure/sign/safety/debark_lounge, /turf/closed/wall/r_wall/unmeltable, /area/adminlevel/ert_station) -"Zy" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/adminlevel/ert_station) -"ZD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Hangar"; - no_panel = 1 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "ERT Lock 2"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/adminlevel/ert_station) "ZI" = ( /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station) -"ZJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/adminlevel/ert_station) "ZU" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/carpet, @@ -2584,6 +2052,10 @@ "ZV" = ( /turf/open/floor/wood/ship, /area/adminlevel/ert_station) +"ZX" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station) (1,1,1) = {" aa @@ -2735,7 +2207,7 @@ hp hp hp hp -kx +hp "} (2,1,1) = {" aa @@ -3234,11 +2706,11 @@ aC aa AS AS -Bz -Bz -Bz -Bz -Bz +dq +dq +dq +dq +dq AS AS aa @@ -3385,13 +2857,13 @@ aa aC aa AS -Bz -dO -dO -dO -dO -dO -Bz +dq +Mz +Mz +Mz +Mz +Mz +dq AS aa aC @@ -3537,13 +3009,13 @@ aa aC aa AS -Bz -dO -dO -dO -dO -dO -Bz +dq +Mz +Mz +Mz +Mz +Mz +dq AS aa aC @@ -3689,13 +3161,13 @@ aa aC aa AS -Bz -dO -dO -dO -dO -dO -Bz +dq +Mz +Mz +Mz +Mz +Mz +dq AS aa aC @@ -3841,13 +3313,13 @@ aC aC aa AS -Bz -dO -dO -dO -dO -dO -Bz +dq +Mz +Mz +Mz +Mz +Mz +dq AS aa aC @@ -3993,13 +3465,13 @@ aC aa aa AS -Bz -yH -yH -yH -yH -yH -Bz +dq +ef +ef +ef +ef +ef +dq AS aa aa @@ -4094,7 +3566,7 @@ hp hp hp hp -hp +kx hp hp hp @@ -4146,11 +3618,11 @@ aa ab ab ab -ju -ju -ju -ju -ju +xE +xE +xE +xE +xE ab ab ab @@ -4296,15 +3768,15 @@ aC aa aa ab -iA -iA -Lq -Lq -Lq -Lq -Lq -iA -iA +OA +OA +RI +RI +RI +RI +RI +OA +OA ab aa aa @@ -4448,15 +3920,15 @@ aC aa ab ab -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab ab aa @@ -4599,17 +4071,17 @@ aa aC aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -4751,17 +4223,17 @@ aa aC aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -4903,17 +4375,17 @@ aC aC aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -4956,7 +4428,7 @@ wW wW PT wW -FO +cF wW wW wW @@ -4964,7 +4436,7 @@ Sw wW PT wW -ZD +aZ wW wW wW @@ -5055,17 +4527,17 @@ aa aa aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -5095,12 +4567,12 @@ FB FB Fo wW -va -ug -AL -JT -CI -tY +YH +QC +jY +Er +wR +In YU aK NZ @@ -5108,28 +4580,28 @@ NZ ZU Zp YU -zr -Gq -Zr -RK -MG -HY -Gq -Gq -Gq -Qr -Qr -AI -Qr -Qr -Qr -Qr -AI -Tg -Fd -CK -ot -IO +yc +Ik +DF +ea +tv +AE +Ik +Ik +Ik +gF +gF +BZ +gF +gF +gF +gF +BZ +dt +zQ +Rh +bI +Ig iR wL aC @@ -5207,17 +4679,17 @@ OT OT OT ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -5249,39 +4721,39 @@ Fo wW YU YU -AL -AL -AL -zN -ET +jY +jY +jY +LQ +IA sN sN sN sN sN -uf -HQ -UT -cK +oV +rV +qb +ro an oS an -Qr -Tg -Bv -Lt +gF +dt +eK +nT PY PY PY -KA -Bv +nl +eK XF XF MQ -uI -eG -Is -LD +Gz +cE +Gl +hV wW aa aC @@ -5353,23 +4825,23 @@ aa aC aa OT -hu -Qh -Qh -Uw -mB -oD -iA -iA -iA -iA -iA -jS -iA -iA -iA -iA -iA +Gn +RO +RO +np +Qc +EB +OA +OA +OA +OA +OA +zZ +OA +OA +OA +OA +OA ab aa aC @@ -5399,12 +4871,12 @@ FB FB Fo Sk -AL -AL -AL -AL -AL -ML +jY +jY +jY +jY +jY +Hx YU op Po @@ -5412,28 +4884,28 @@ Po Po Po VC -GB +xD an -Qd -me -iz -me -Bv +Ck +vT +ZX +vT +eK ph -Qr +gF ZI -Ys -oW -gA +Lr +Pb +Va Nx -Qr -MB -Ez -Dw -zt -OC -pc -RL +gF +Le +OG +RH +hv +gM +Ff +kL wW aa aC @@ -5505,23 +4977,23 @@ aa aC aa OT -dV -Qh -Qh -Qh -Hv -oD -iA -iA -iA -iA -jS -sq -jS -iA -iA -iA -iA +KI +RO +RO +RO +Hf +EB +OA +OA +OA +OA +zZ +nN +zZ +OA +OA +OA +OA ab aa aC @@ -5555,8 +5027,8 @@ YU YU YU YU -AL -uY +jY +st YU YU YU @@ -5564,22 +5036,22 @@ Xi YU YU YU -ao +Gg an -QJ -pP -vD -vD -GB +ip +Md +NZ +NZ +xD oS -Qr +gF ZI -gA -Ti -Ys +Va +mk +Lr Nx -Qr -RV +gF +Vk YU YU YU @@ -5657,23 +5129,23 @@ aa aC aa OT -rT -Qh -Qh -Qh -Hv -oD -iA -iA -iA -iA -jS -Ed -jS -iA -iA -iA -iA +lT +RO +RO +RO +Hf +EB +OA +OA +OA +OA +zZ +DG +zZ +OA +OA +OA +OA ab aa aC @@ -5703,12 +5175,12 @@ FB FB Fo wW -BV -Gr -rR +DZ +mm +Bd YU -AL -ID +jY +Cu YU Gf ZV @@ -5716,28 +5188,28 @@ ZV ZV KM YU -co +zx an -QJ -vD -vD -vD -GB +ip +NZ +NZ +NZ +xD oS -Qr +gF ZI -Ys -xU -Ys +Lr +ee +Lr Nx -Qr -bn +gF +cB YU -Gh -rf -AL -gR -LR +pJ +sM +jY +CO +GX wW aa aC @@ -5809,23 +5281,23 @@ aa aC aa OT -Qo -Qh -Qh -Qh -Hv -oD -iA -iA -iA -iA -jS -SB -jS -iA -iA -iA -iA +lJ +RO +RO +RO +Hf +EB +OA +OA +OA +OA +zZ +bG +zZ +OA +OA +OA +OA ab aa aC @@ -5855,11 +5327,11 @@ FB FB Fo wW -uk -CU -CU +MH +hR +hR YU -GT +mL YU GH Nk @@ -5868,28 +5340,28 @@ ZV ZV LA YU -TU -Qr -QJ -vD +dd +gF +ip +NZ Kk -uN -GB -kN -PS -TD +cf +xD +uo +Zg +TY YW YW YW -Ut -Qr -ob +CW +gF +vR HX -zn -pm -AL -Cf -Zh +HN +xm +jY +Dp +tu wW aa aC @@ -5961,23 +5433,23 @@ aa aC aa OT -HA -Qh -Qh -jp -mB -oD -iA -iA -iA -iA -iA -jS -iA -iA -iA -iA -iA +Mu +RO +RO +fc +Qc +EB +OA +OA +OA +OA +OA +zZ +OA +OA +OA +OA +OA ab aa aC @@ -6007,10 +5479,10 @@ FB FB Fo wW -yk -CU -CU -Ds +Wv +hR +hR +rn ZV CN ZV @@ -6019,29 +5491,29 @@ WG WG NZ ac -Rj -YO +Tl +am an -QJ -vD -vD -Qz -GB +ip +NZ +NZ +NQ +xD oS -MB -Pr -Pr -Pr -Pr -Pr -Pr -LE -ST -XR -hH -th -XR -zO +Le +Eh +Eh +Eh +Eh +Eh +Eh +Ev +xh +WI +BR +Vx +WI +pV wW aa aC @@ -6119,17 +5591,17 @@ OT OT OT ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -6159,9 +5631,9 @@ FB FB Fo wW -yC -CU -CU +SE +hR +hR En Iq ZV @@ -6171,29 +5643,29 @@ IE XA NZ ZV -Rj -GB +Tl +xD an -QJ -vD -vD -vD -GB +ip +NZ +NZ +NZ +xD oS -QJ +ip YU OF -xb +Sv NH wW -LZ +qh wW Uf -Yy -AL -wr -AL -VS +Yp +jY +nQ +jY +tU wW aa aC @@ -6271,17 +5743,17 @@ aa aa aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -6311,9 +5783,9 @@ FB FB Fo wW -yQ -CU -CU +Se +hR +hR EI Iq ZV @@ -6324,28 +5796,28 @@ WK NZ ZV xO -GB +xD an -Qr -Gq -Gq -Gq -Qr +gF +Ik +Ik +Ik +gF oS -QJ +ip YU -aj -uK -OI +eD +QP +zR wW -LU -Sl +vA +XG wW -YE -RF -RF -RF -Gs +Bz +qd +qd +qd +Ka wW aa aC @@ -6423,17 +5895,17 @@ aa aa aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -6463,9 +5935,9 @@ FB FB Fo wW -zg -CU -CU +Oo +hR +hR Gv Iq ZV @@ -6475,29 +5947,29 @@ ZV ZV ZV ZV -Rj -GB -Qr -Qr +Tl +xD +gF +gF Ge an Ge -Qr -kN -QJ +gF +uo +ip YU -Zy -Qr -ZJ +IU +gF +uC wW -iL -Ua +uz +Yz LF -YJ -AL -RF -wu -Il +Nh +jY +qd +ft +Qf wW aa aC @@ -6575,17 +6047,17 @@ aC aC aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -6615,9 +6087,9 @@ FB FB Fo wW -zk -CU -CU +CM +hR +hR GC Iq ZV @@ -6627,29 +6099,29 @@ WQ JW KQ RW -Rj -Kv -Qr -sj -wA -tn -oa -il -NE -LE +Tl +IG +gF +uW +XZ +Ss +Cw +nk +dW +Ev Mk -Yn -Jy -gb +Sg +iD +JS wW -Oj -vE +Fi +PO wW -Zv -AL -oZ -oZ -cD +pv +jY +Ay +Ay +Ft wW aa aC @@ -6727,17 +6199,17 @@ aa aC aa ab -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab aa aC @@ -6781,14 +6253,14 @@ wW wW wW Zw -Ni +nE Zw wW wW hZ wW Zw -Oa +OX Zw wW wW @@ -6880,15 +6352,15 @@ aC aa ab ab -iA -iA -iA -iA -iA -iA -iA -iA -iA +OA +OA +OA +OA +OA +OA +OA +OA +OA ab ab aa @@ -7032,15 +6504,15 @@ aC aa aa ab -iA -iA -no -no -no -no -no -iA -iA +OA +OA +iZ +iZ +iZ +iZ +iZ +OA +OA ab aa aa @@ -7186,11 +6658,11 @@ aa ab ab ab -Fa -Fa -Fa -Fa -Fa +Gt +Gt +Gt +Gt +Gt ab ab ab @@ -7337,13 +6809,13 @@ aC aa aa ak -tg -Rg -Rg -Rg -Rg -Rg -tg +vb +pT +pT +pT +pT +pT +vb ak aa aa @@ -7489,13 +6961,13 @@ aC aC aa ak -tg -sW -sW -sW -sW -sW -tg +vb +ic +ic +ic +ic +ic +vb ak aa aC @@ -7641,13 +7113,13 @@ aa aC aa ak -tg -sW -sW -sW -sW -sW -tg +vb +ic +ic +ic +ic +ic +vb ak aa aC @@ -7793,13 +7265,13 @@ aa aC aa ak -tg -sW -sW -sW -sW -sW -tg +vb +ic +ic +ic +ic +ic +vb ak aa aC @@ -7945,13 +7417,13 @@ aa aC aa ak -tg -sW -sW -sW -sW -sW -tg +vb +ic +ic +ic +ic +ic +vb ak aa aC @@ -8098,11 +7570,11 @@ aC aa ak ak -tg -tg -tg -tg -tg +vb +vb +vb +vb +vb ak ak aa @@ -9479,9 +8951,9 @@ aa ds dy dy -ev -eW -fL +mP +ux +Px dy ex dy @@ -9631,7 +9103,7 @@ aa ds fu ex -fN +xP fv fO dy @@ -9783,7 +9255,7 @@ aa ds fx ex -fN +xP eY fO dy @@ -9935,7 +9407,7 @@ aa ds dy dy -eE +Bj ey fP dy @@ -10085,19 +9557,19 @@ aa aC aa ds -ev -eU +mP +Ts eY eY eY -eU -eU -eU -eU -eU -eU -eU -fL +Ts +Ts +Ts +Ts +Ts +Ts +Ts +Px ds aa aC @@ -10237,10 +9709,10 @@ aa aC aa ds -eE +Bj +eY eY eY -tx eY eY eY @@ -10285,11 +9757,11 @@ aa aC as Oi -zB -EY -EY -wp -Cm +Iv +GM +GM +SF +dQ Oi dG dG @@ -10318,7 +9790,7 @@ eX PE PE PE -Cc +Rm PE eX PE @@ -10389,19 +9861,19 @@ aa aC aa ds -eF -eZ +KG +hG eY eY eY -eZ -eZ -eZ -eZ -eZ -eZ -eZ -fW +hG +hG +hG +hG +hG +hG +hG +af ds aa aC @@ -10437,11 +9909,11 @@ aa aC as Oi -oB -Qq -Yu -Ur -FT +PB +iK +QH +tA +BX Oi UQ Ep @@ -10543,7 +10015,7 @@ aa ds dy dy -eE +Bj ey fP dy @@ -10589,11 +10061,11 @@ aa aC as Oi -Ld -gX -Dv -Dv -FT +jT +ta +GP +GP +BX Oi Pq HW @@ -10695,7 +10167,7 @@ aa ds ew ex -fN +xP fy fO dy @@ -10741,11 +10213,11 @@ aa aC as Oi -oB -Dt -nU -Ur -FT +PB +Ej +nB +tA +BX Oi Pq dG @@ -10847,7 +10319,7 @@ aa ds ew ex -fN +xP eY fO dy @@ -10893,11 +10365,11 @@ aa aC as Oi -oB -gX -pq -gX -vN +PB +ta +Yt +ta +gk Oi Pq dG @@ -10999,9 +10471,9 @@ aa ds dy dy -eF -fM -fW +KG +mi +af dy ex dy @@ -11045,11 +10517,11 @@ aa aC as Oi -Nt -gX -TX -gX -nP +AH +ta +Ov +ta +Fj wY Pq dG @@ -11197,11 +10669,11 @@ aa aC as Oi -WP -qi -UI -gX -VI +Ps +GU +Ye +ta +oI dG Pq dG @@ -11349,11 +10821,11 @@ aa aC as Oi -oB -gX -gX -Dv -FT +PB +ta +ta +GP +BX Oi Pq dG @@ -11501,11 +10973,11 @@ aa aC as Oi -Wn -Qq -nU -Ur -FT +hS +iK +nB +tA +BX Oi Pq dG @@ -11653,11 +11125,11 @@ aa aC as Oi -pQ -gX -Dv -gX -FT +Iw +ta +GP +ta +BX Oi Pq dG @@ -11765,10 +11237,10 @@ ej fn aa fn -fz -fQ -fR -gd +Km +Uj +jh +AN ds aa aC @@ -11805,11 +11277,11 @@ aa aC as Oi -Wn -Dt -nU -Ur -vN +hS +Ej +nB +tA +gk Oi Pq dG @@ -11910,17 +11382,17 @@ aC aa fn ej -dw +Xc ej -dw +Xc ej fn aa fn -fA -fR -fR -ge +eb +jh +jh +pp ds aa aC @@ -11957,11 +11429,11 @@ as aC as Oi -vB -Uk -HL -eQ -dr +jg +Uv +oO +tS +yl Oi Nc yx @@ -12069,10 +11541,10 @@ ej fn aa fn -fB -fR -fR -gf +jk +jh +jh +cY ds aa aC @@ -12214,17 +11686,17 @@ aC aa fn ej -dw +Xc ej -dw +Xc ej fn aa fn -fC -fR -fR -gg +Ox +jh +jh +xR ds aa aC @@ -12373,10 +11845,10 @@ ej fn aa fn -fR -fR -fR -gh +jh +jh +jh +nF ds aa oQ @@ -12525,10 +11997,10 @@ fn fn aa fn -WH -fR -fR -QA +MZ +jh +jh +nf fn aa TH @@ -12677,10 +12149,10 @@ aa aa aa fn -fR -fR -fR -fR +jh +jh +jh +jh fn aa xw diff --git a/maps/map_files/golden_arrow/briefing/10.chairs.dmm b/maps/map_files/golden_arrow/briefing/10.chairs.dmm index 2e33125bd0..12780fbba0 100644 --- a/maps/map_files/golden_arrow/briefing/10.chairs.dmm +++ b/maps/map_files/golden_arrow/briefing/10.chairs.dmm @@ -37,9 +37,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "e" = ( /turf/closed/wall/almayer/outer, @@ -59,9 +57,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/briefing) "g" = ( /obj/effect/decal/warning_stripes{ @@ -73,9 +69,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "h" = ( /obj/structure/platform{ @@ -94,9 +88,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "j" = ( /obj/structure/cable{ @@ -138,9 +130,7 @@ pixel_y = 6; layer = 3.02 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "m" = ( /obj/structure/surface/table/almayer, @@ -179,9 +169,7 @@ pixel_y = 6; layer = 3.02 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "p" = ( /obj/structure/cable{ @@ -206,22 +194,16 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/north, /area/golden_arrow/briefing) "u" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "v" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "x" = ( /obj/structure/pipes/vents/scrubber{ @@ -234,9 +216,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "y" = ( /obj/effect/decal/warning_stripes{ @@ -250,14 +230,10 @@ pixel_x = -10; pixel_y = 4 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/briefing) "A" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ icon_state = "0-8"; layer = 2.36 @@ -283,9 +259,7 @@ pixel_y = 6; layer = 3.02 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "D" = ( /obj/item/reagent_container/glass/rag, @@ -315,9 +289,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/briefing) "I" = ( /obj/structure/platform{ @@ -354,9 +326,7 @@ /obj/structure/machinery/light_switch{ pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "Q" = ( /turf/closed/wall/almayer, @@ -369,9 +339,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "S" = ( /obj/effect/decal/warning_stripes{ @@ -396,9 +364,7 @@ pixel_y = 6; layer = 3.02 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/north, /area/golden_arrow/briefing) "T" = ( /obj/effect/decal/warning_stripes{ @@ -409,17 +375,13 @@ dir = 8; pixel_x = -16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "U" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "V" = ( /obj/structure/surface/table/almayer, @@ -448,9 +410,7 @@ "X" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/reagent_container/glass/rag, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "Y" = ( /obj/structure/platform_decoration{ diff --git a/maps/map_files/golden_arrow/briefing/10.lightsout.dmm b/maps/map_files/golden_arrow/briefing/10.lightsout.dmm index 26cb913348..0b46dd324c 100644 --- a/maps/map_files/golden_arrow/briefing/10.lightsout.dmm +++ b/maps/map_files/golden_arrow/briefing/10.lightsout.dmm @@ -10,9 +10,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "b" = ( /obj/structure/platform{ @@ -86,9 +84,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/briefing) "i" = ( /obj/structure/cable{ @@ -118,9 +114,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "k" = ( /turf/closed/wall/almayer/outer, @@ -146,18 +140,14 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "o" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "p" = ( /obj/structure/bed/chair{ @@ -167,17 +157,13 @@ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "q" = ( /turf/closed/wall/almayer, /area/golden_arrow/briefing) "r" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ icon_state = "0-8"; layer = 2.36 @@ -191,9 +177,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "t" = ( /obj/effect/decal/cleanable/dirt{ @@ -223,18 +207,14 @@ pixel_x = -24; on = 0 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "x" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "y" = ( /obj/structure/bed/chair{ @@ -243,9 +223,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "z" = ( /obj/structure/pipes/vents/scrubber{ @@ -258,9 +236,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "A" = ( /obj/effect/decal/warning_stripes{ @@ -271,9 +247,7 @@ dir = 8; pixel_x = -16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "B" = ( /obj/effect/decal/warning_stripes{ @@ -283,9 +257,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/briefing) "C" = ( /obj/structure/platform_decoration{ @@ -307,9 +279,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "F" = ( /obj/effect/decal/cleanable/dirt{ @@ -324,9 +294,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "G" = ( /obj/effect/decal/warning_stripes{ @@ -337,9 +305,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/briefing) "J" = ( /obj/effect/decal/cleanable/dirt{ @@ -365,9 +331,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/north, /area/golden_arrow/briefing) "M" = ( /obj/effect/decal/cleanable/dirt{ @@ -404,9 +368,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/north, /area/golden_arrow/briefing) "S" = ( /obj/structure/platform{ @@ -432,9 +394,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "Z" = ( /obj/structure/surface/table/almayer, diff --git a/maps/map_files/golden_arrow/dorms/10.party.dmm b/maps/map_files/golden_arrow/dorms/10.party.dmm index 51df6b1397..72d184339a 100644 --- a/maps/map_files/golden_arrow/dorms/10.party.dmm +++ b/maps/map_files/golden_arrow/dorms/10.party.dmm @@ -10,9 +10,7 @@ layer = 2.99; pixel_x = 3 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "bV" = ( /obj/effect/decal/cleanable/dirt{ @@ -62,9 +60,7 @@ /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "eP" = ( /turf/open/floor/almayer, @@ -76,9 +72,7 @@ /obj/structure/machinery/atm{ pixel_y = 26 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "gv" = ( /obj/structure/barricade/handrail{ @@ -125,9 +119,7 @@ /obj/item/clothing/mask/cigarette/weed{ pixel_y = -3 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "hx" = ( /obj/structure/bed{ @@ -144,9 +136,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "iA" = ( /obj/structure/barricade/handrail{ @@ -203,9 +193,7 @@ layer = 2.52 }, /obj/item/prop/magazine/dirty/torn/alt, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "lT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -230,9 +218,7 @@ pixel_y = 44 }, /obj/item/trash/barcardine, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "nw" = ( /obj/structure/bed{ @@ -250,9 +236,7 @@ pixel_y = 13 }, /obj/item/storage/beer_pack, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "nO" = ( /obj/effect/decal/cleanable/dirt{ @@ -306,9 +290,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "rL" = ( /obj/effect/decal/cleanable/dirt{ @@ -330,9 +312,7 @@ desc = "Beer's misunderstood cousin."; name = "\improper Weyland-Yutani IPA" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "sa" = ( /obj/structure/barricade/handrail{ @@ -355,9 +335,7 @@ pixel_x = 16; pixel_y = 16 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "so" = ( /obj/structure/bed{ @@ -377,9 +355,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "sP" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -430,9 +406,7 @@ /obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "wz" = ( /obj/structure/bed{ @@ -449,9 +423,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "xF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -480,9 +452,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "AM" = ( /obj/effect/decal/cleanable/dirt{ @@ -492,9 +462,7 @@ pixel_y = -10; pixel_x = 6 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "Bx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -506,9 +474,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "BN" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -529,9 +495,7 @@ pixel_y = -15 }, /obj/effect/decal/cleanable/vomit, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "CD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -573,9 +537,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "Hs" = ( /obj/effect/decal/cleanable/dirt{ @@ -586,16 +548,12 @@ name = "General Listening Channel"; pixel_y = -29 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, +/obj/structure/machinery/power/apc/almayer/west, /obj/structure/cable{ icon_state = "0-4"; layer = 2.36 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "Jx" = ( /obj/structure/surface/table/almayer, @@ -625,9 +583,7 @@ dir = 8 }, /obj/structure/closet/secure_closet, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Ma" = ( /obj/structure/surface/rack, @@ -635,9 +591,7 @@ layer = 2.52 }, /obj/item/clothing/under/marine/officer/boiler, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Mv" = ( /obj/structure/machinery/alarm/almayer{ @@ -664,18 +618,14 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Nu" = ( /obj/structure/barricade/handrail{ dir = 8 }, /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "Ok" = ( /obj/structure/bed/chair, @@ -728,9 +678,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "RH" = ( /obj/structure/bed/chair, @@ -759,9 +707,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "VL" = ( /obj/structure/bed/chair{ @@ -774,9 +720,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "Wm" = ( /obj/structure/surface/table/almayer, @@ -811,9 +755,7 @@ pixel_y = 14; pixel_x = 9 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Yb" = ( /obj/item/trash/popcorn, diff --git a/maps/map_files/golden_arrow/dorms/20.dorks.dmm b/maps/map_files/golden_arrow/dorms/20.dorks.dmm index ee5587305b..0e96278f54 100644 --- a/maps/map_files/golden_arrow/dorms/20.dorks.dmm +++ b/maps/map_files/golden_arrow/dorms/20.dorks.dmm @@ -126,9 +126,7 @@ name = "personal desktop"; pixel_y = 3 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "fG" = ( /obj/structure/barricade/handrail{ @@ -188,9 +186,7 @@ /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "jy" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -216,9 +212,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "mf" = ( /obj/structure/barricade/handrail{ @@ -231,9 +225,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "mj" = ( /obj/effect/decal/cleanable/dirt{ @@ -244,16 +236,12 @@ name = "General Listening Channel"; pixel_y = -29 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, +/obj/structure/machinery/power/apc/almayer/west, /obj/structure/cable{ icon_state = "0-4"; layer = 2.36 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "mm" = ( /obj/effect/decal/cleanable/dirt{ @@ -262,9 +250,7 @@ /obj/structure/machinery/atm{ pixel_y = 26 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "mu" = ( /obj/structure/bed/chair{ @@ -293,9 +279,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "nP" = ( /obj/structure/surface/table/almayer, @@ -312,9 +296,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "oc" = ( /obj/structure/bed/chair{ @@ -383,9 +365,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "rZ" = ( /obj/structure/bed{ @@ -402,9 +382,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "sO" = ( /obj/structure/barricade/handrail{ @@ -427,9 +405,7 @@ pixel_y = 12; pixel_x = 5 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "tq" = ( /obj/effect/decal/cleanable/dirt{ @@ -443,9 +419,7 @@ pixel_y = 14; pixel_x = 9 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "tz" = ( /obj/effect/decal/cleanable/dirt{ @@ -492,9 +466,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/dorms) "vF" = ( /turf/closed/wall/almayer, @@ -519,9 +491,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "xm" = ( /turf/open/floor/almayer, @@ -552,9 +522,7 @@ pixel_y = 44 }, /obj/item/trash/barcardine, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "zg" = ( /obj/effect/decal/cleanable/dirt{ @@ -591,9 +559,7 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "CR" = ( /obj/effect/decal/cleanable/dirt{ @@ -642,9 +608,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "Eb" = ( /obj/item/prop/magazine/book/starshiptroopers{ @@ -661,9 +625,7 @@ dir = 8 }, /obj/structure/closet/secure_closet, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Gi" = ( /obj/structure/bed{ @@ -680,9 +642,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "Hv" = ( /obj/effect/decal/cleanable/dirt{ @@ -692,9 +652,7 @@ pixel_y = -10; pixel_x = 6 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "IO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -717,9 +675,7 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "Nu" = ( /obj/structure/bed{ @@ -736,9 +692,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "NK" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -748,9 +702,7 @@ name = "\improper Dorms"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/dorms) "NN" = ( /obj/structure/surface/table/almayer, @@ -788,9 +740,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "Sh" = ( /obj/structure/barricade/handrail{ @@ -813,9 +763,7 @@ pixel_x = 16; pixel_y = 16 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "SL" = ( /obj/structure/machinery/alarm/almayer{ @@ -842,9 +790,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "SM" = ( /obj/structure/barricade/handrail{ @@ -855,9 +801,7 @@ dir = 4; pixel_y = 12 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "To" = ( /obj/structure/surface/rack, @@ -865,9 +809,7 @@ layer = 2.52 }, /obj/item/clothing/under/marine/officer/boiler, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "Wu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -879,9 +821,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "XT" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -896,9 +836,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "ZE" = ( /obj/structure/barricade/handrail{ diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index ea8d1a9e4a..9c000b842c 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -6,9 +6,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aac" = ( /obj/effect/decal/cleanable/dirt{ @@ -28,9 +26,7 @@ /area/golden_arrow/supply) "aae" = ( /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aag" = ( /obj/effect/decal/warning_stripes{ @@ -108,18 +104,14 @@ /obj/item/tool/kitchen/knife{ pixel_x = 9 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aas" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aat" = ( /obj/effect/decal/cleanable/dirt{ @@ -132,9 +124,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "aaw" = ( /obj/effect/decal/cleanable/dirt{ @@ -150,9 +140,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "aay" = ( /obj/effect/decal/cleanable/dirt{ @@ -161,17 +149,13 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "aaz" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aaA" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -179,9 +163,7 @@ }, /obj/item/trash/burger, /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aaI" = ( /turf/closed/wall/almayer/outer, @@ -204,18 +186,14 @@ /obj/structure/cargo_container/hd/mid{ opacity = 0 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aaM" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/motor_pool) "aaO" = ( /obj/structure/machinery/light/small/blue{ @@ -233,9 +211,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aaR" = ( /obj/effect/decal/warning_stripes{ @@ -265,14 +241,10 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aaV" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aaW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -286,9 +258,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "abb" = ( /obj/effect/decal/cleanable/blood/oil, @@ -299,9 +269,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "abh" = ( /obj/effect/decal/warning_stripes{ @@ -314,9 +282,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "abi" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -339,9 +305,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "abp" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -360,9 +324,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "abu" = ( /obj/effect/decal/cleanable/dirt{ @@ -401,9 +363,7 @@ dir = 2; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/upper) "abz" = ( /obj/structure/machinery/sleep_console{ @@ -413,9 +373,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "abA" = ( /obj/effect/decal/cleanable/dirt{ @@ -433,9 +391,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "abD" = ( /obj/structure/cable/heavyduty{ @@ -451,20 +407,13 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "abJ" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "abK" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "abL" = ( /obj/effect/decal/cleanable/dirt{ @@ -488,9 +437,7 @@ name = "\improper Vehicle Bay One Blast Door"; id = "vehiclebay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "abO" = ( /obj/effect/decal/cleanable/dirt{ @@ -506,15 +453,10 @@ /area/golden_arrow/motor_pool) "abQ" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "abR" = ( -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, +/turf/open/floor/almayer/no_build/plate, /area/golden_arrow/hangar) "abS" = ( /obj/structure/platform{ @@ -527,21 +469,14 @@ dir = 9 }, /obj/structure/machinery/light/small/blue, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "abT" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "abV" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/up_down/northwest, /area/golden_arrow/hangar) "abW" = ( /obj/effect/decal/warning_stripes{ @@ -552,9 +487,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "abX" = ( /obj/effect/decal/siding{ @@ -569,10 +502,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aca" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -583,9 +513,7 @@ name = "\improper Storage Bay One Blast Door"; id = "cargobay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "acb" = ( /obj/effect/decal/warning_stripes{ @@ -593,9 +521,7 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "ace" = ( /obj/structure/surface/table/almayer, @@ -643,9 +569,7 @@ /obj/structure/largecrate/random/case{ pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ack" = ( /obj/structure/bed{ @@ -662,22 +586,16 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "aco" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "acq" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "acr" = ( /obj/structure/pipes/vents/scrubber{ @@ -687,14 +605,10 @@ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "acs" = ( -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/prep_hallway) "act" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -713,9 +627,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "acx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -728,18 +640,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "acA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "acB" = ( /obj/effect/decal/warning_stripes{ @@ -785,9 +693,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "acQ" = ( /obj/structure/window/framed/almayer, @@ -809,25 +715,19 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "acT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "acV" = ( /obj/effect/landmark/start/bridge, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "acX" = ( /obj/structure/sign/safety/galley{ @@ -838,9 +738,7 @@ pixel_x = 15; pixel_y = 28 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/prep_hallway) "acZ" = ( /obj/effect/decal/warning_stripes{ @@ -848,18 +746,14 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ada" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/platoonarmory) "add" = ( /obj/effect/decal/warning_stripes{ @@ -869,9 +763,7 @@ /obj/structure/largecrate/supply/supplies/flares{ layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "adf" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -890,9 +782,7 @@ /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "adj" = ( /obj/structure/pipes/vents/scrubber{ @@ -910,18 +800,14 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/motor_pool) "adl" = ( -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/platoonarmory) "adn" = ( /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "ado" = ( /turf/closed/wall/almayer, @@ -945,9 +831,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "adr" = ( /obj/effect/decal/warning_stripes{ @@ -960,9 +844,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "adt" = ( /obj/structure/closet/wardrobe{ @@ -977,9 +859,7 @@ layer = 3.1; pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "adv" = ( /obj/structure/disposalpipe/segment, @@ -987,9 +867,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/motor_pool) "adx" = ( /obj/structure/platform{ @@ -1003,9 +881,7 @@ icon_state = "door_warning"; dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "ady" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1014,10 +890,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/two/upper) "adz" = ( /turf/closed/wall/almayer/outer, @@ -1027,9 +900,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) "adB" = ( /obj/structure/machinery/light/double/blue{ @@ -1052,18 +923,14 @@ req_one_access = list(); name = "squad two sergeant locker" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "adD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "adE" = ( /obj/effect/decal/cleanable/dirt{ @@ -1075,9 +942,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "adG" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1088,9 +953,7 @@ dir = 2; name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "adH" = ( /obj/structure/platform{ @@ -1112,9 +975,7 @@ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/cryo_cells) "adK" = ( /obj/effect/decal/cleanable/dirt{ @@ -1126,9 +987,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "adP" = ( /obj/effect/decal/warning_stripes{ @@ -1142,9 +1001,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "adQ" = ( /obj/structure/machinery/light/small{ @@ -1152,9 +1009,7 @@ color = "#C02526"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "adT" = ( /obj/effect/decal/cleanable/dirt{ @@ -1167,10 +1022,7 @@ dir = 4; id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/two/upper) "adU" = ( /obj/effect/decal/cleanable/dirt{ @@ -1190,14 +1042,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/briefing) "adW" = ( -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, /area/golden_arrow/cryo_cells) "aea" = ( /obj/effect/decal/warning_stripes{ @@ -1208,9 +1056,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aeb" = ( /obj/effect/decal/cleanable/dirt{ @@ -1235,9 +1081,7 @@ pixel_y = 44 }, /obj/item/trash/barcardine, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "aed" = ( /obj/structure/machinery/medical_pod/bodyscanner{ @@ -1246,9 +1090,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aef" = ( /obj/effect/decal/cleanable/dirt{ @@ -1258,17 +1100,13 @@ dir = 1; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aeg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aej" = ( /obj/item/trash/cigbutt{ @@ -1295,9 +1133,7 @@ pixel_y = 16; layer = 4.5 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "ael" = ( /obj/structure/pipes/vents/pump{ @@ -1307,9 +1143,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aen" = ( /obj/structure/cable/heavyduty{ @@ -1323,24 +1157,16 @@ /turf/open/floor/almayer, /area/golden_arrow/dorms) "aer" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/prep_hallway) "aev" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aey" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aez" = ( /obj/effect/decal/strata_decals/grime/grime2, @@ -1361,9 +1187,7 @@ icon_state = "1-2"; pixel_x = 2 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 6 - }, +/turf/open/floor/almayer/edge/smooth/southeast, /area/golden_arrow/platoon_commander_rooms) "aeE" = ( /obj/effect/decal/warning_stripes{ @@ -1372,9 +1196,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aeF" = ( /obj/structure/surface/table/almayer, @@ -1384,9 +1206,7 @@ /obj/item/storage/pill_bottle/paracetamol{ pixel_x = -5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aeG" = ( /obj/structure/surface/rack{ @@ -1410,9 +1230,7 @@ pixel_x = 10; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aeH" = ( /obj/structure/machinery/faxmachine/uscm/command/capt, @@ -1422,9 +1240,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 10 - }, +/turf/open/floor/almayer/edge/smooth/southwest, /area/golden_arrow/platoon_commander_rooms) "aeK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1440,9 +1256,7 @@ /obj/structure/machinery/atm{ pixel_y = 26 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "aeM" = ( /obj/structure/barricade/handrail{ @@ -1494,10 +1308,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aeT" = ( /obj/structure/disposalpipe/segment, @@ -1505,17 +1316,13 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aeU" = ( /obj/effect/decal/strata_decals/grime/grime1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aeV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1540,9 +1347,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aeZ" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/motor_pool) "afc" = ( /obj/structure/bed/chair/office/dark{ @@ -1558,17 +1363,13 @@ /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aff" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "afh" = ( /obj/effect/decal/warning_stripes{ @@ -1581,9 +1382,7 @@ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "afk" = ( /obj/structure/gun_rack/m41/unloaded, @@ -1598,9 +1397,7 @@ pixel_x = -7; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "afm" = ( /obj/structure/bed{ @@ -1617,9 +1414,7 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "afn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1655,9 +1450,7 @@ /obj/structure/machinery/light/small/blue{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "afr" = ( /obj/effect/decal/cleanable/dirt{ @@ -1668,9 +1461,7 @@ req_one_access = list(); name = "squad one sergeant locker" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "afs" = ( /obj/structure/largecrate/supply/medicine/medkits{ @@ -1690,9 +1481,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "afu" = ( /obj/effect/decal/warning_stripes{ @@ -1702,18 +1491,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "afv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/north, /area/golden_arrow/briefing) "afw" = ( /obj/structure/surface/table/almayer, @@ -1733,9 +1518,7 @@ /obj/effect/decal/strata_decals/grime/grime1{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "afy" = ( /obj/structure/machinery/light/double/blue{ @@ -1771,9 +1554,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "afC" = ( /obj/structure/cable{ @@ -1794,9 +1575,7 @@ /area/golden_arrow/briefing) "afD" = ( /obj/structure/machinery/light/double/blue, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/motor_pool) "afG" = ( /obj/structure/bed/chair{ @@ -1834,9 +1613,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "afL" = ( /obj/structure/bed{ @@ -1853,15 +1630,10 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "afN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "afO" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ @@ -1875,9 +1647,7 @@ pixel_y = 10 }, /obj/structure/ship_ammo/rocket/napalm, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "afQ" = ( /obj/structure/machinery/light/double/blue{ @@ -1910,9 +1680,7 @@ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/prep_hallway) "afU" = ( /obj/structure/cable/heavyduty{ @@ -1929,18 +1697,14 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "afX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "afZ" = ( /obj/effect/decal/warning_stripes{ @@ -1959,9 +1723,7 @@ pixel_y = 3 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonarmory) "agb" = ( /obj/structure/machinery/telecomms/relay/preset/tower, @@ -1996,9 +1758,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "age" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2018,9 +1778,7 @@ /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/dorms) "agh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -2041,9 +1799,7 @@ /turf/open/floor/almayer, /area/golden_arrow/motor_pool) "ago" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/supply) "agq" = ( /obj/effect/decal/warning_stripes{ @@ -2052,9 +1808,7 @@ /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "agv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2069,17 +1823,13 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "agB" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "agC" = ( /obj/effect/decal/warning_stripes{ @@ -2094,14 +1844,10 @@ light_color = "#dae2ff"; light_power = 0.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "agE" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "agG" = ( /obj/effect/decal/cleanable/dirt{ @@ -2113,18 +1859,14 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, /area/golden_arrow/cryo_cells) "agH" = ( /obj/structure/machinery/light/double/blue{ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "agI" = ( /obj/structure/barricade/handrail{ @@ -2147,17 +1889,13 @@ pixel_x = 16; pixel_y = 16 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "agM" = ( /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "agN" = ( /obj/effect/decal/cleanable/dirt{ @@ -2168,19 +1906,14 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "agO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "agP" = ( /obj/structure/cable/heavyduty{ @@ -2204,9 +1937,7 @@ id = "squadarmory"; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "agT" = ( /obj/effect/decal/warning_stripes{ @@ -2214,9 +1945,7 @@ layer = 3.3; pixel_x = -1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "agV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2232,9 +1961,7 @@ icon_state = "door_warning"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "agX" = ( /obj/structure/machinery/door_control/brbutton{ @@ -2245,18 +1972,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "agY" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aha" = ( /obj/structure/surface/table/almayer, @@ -2285,25 +2007,19 @@ pixel_x = -2 }, /obj/item/storage/box/pdt_kit/advanced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "ahb" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ahc" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ahg" = ( /obj/effect/decal/warning_stripes{ @@ -2311,9 +2027,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "ahh" = ( /obj/structure/surface/table/reinforced/prison, @@ -2328,9 +2042,7 @@ pixel_y = 3; pixel_x = -10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ahi" = ( /obj/effect/decal/warning_stripes{ @@ -2344,9 +2056,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "ahj" = ( /obj/structure/surface/table/almayer, @@ -2376,9 +2086,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "ahl" = ( /turf/closed/wall/almayer/outer, @@ -2400,9 +2108,7 @@ /obj/item/reagent_container/food/snacks/flour, /obj/item/reagent_container/food/snacks/flour, /obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aho" = ( /obj/effect/decal/cleanable/dirt{ @@ -2433,9 +2139,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/supply) "ahx" = ( /obj/structure/disposalpipe/segment, @@ -2446,9 +2150,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "ahA" = ( /obj/effect/decal/cleanable/dirt{ @@ -2481,18 +2183,13 @@ name = "\improper Storage Bay Three Blast Door"; id = "cargobay3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "ahF" = ( /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/upper) "ahH" = ( /obj/effect/decal/warning_stripes{ @@ -2519,9 +2216,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ahK" = ( /obj/structure/surface/table/almayer, @@ -2545,9 +2240,7 @@ /obj/structure/largecrate/random/case/double{ layer = 3.2 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "ahS" = ( /obj/structure/disposalpipe/segment{ @@ -2559,23 +2252,17 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, +/obj/structure/machinery/power/apc/almayer/east, /obj/structure/cable{ icon_state = "0-8"; layer = 2.36 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ahV" = ( /obj/structure/barricade/handrail, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/supply) "ahY" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -2617,9 +2304,7 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoonprep) "aib" = ( /obj/structure/surface/table/almayer, @@ -2655,9 +2340,7 @@ name = "\improper Weapons Bay One Blast Door"; id = "weaponsbay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aig" = ( /obj/structure/machinery/door_control{ @@ -2683,9 +2366,7 @@ pixel_x = 15; pixel_y = -26 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, /area/golden_arrow/cryo_cells) "aii" = ( /obj/effect/decal/cleanable/dirt{ @@ -2697,9 +2378,7 @@ /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoon_commander_rooms) "aij" = ( /obj/structure/machinery/washing_machine, @@ -2707,9 +2386,7 @@ layer = 3.5; pixel_y = 15 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "ail" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2718,9 +2395,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ name = "\improper Prep Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "aiq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -2730,17 +2405,13 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ name = "\improper Prep Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "air" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ais" = ( /obj/effect/decal/warning_stripes{ @@ -2751,18 +2422,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ait" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aiu" = ( /obj/effect/decal/cleanable/dirt{ @@ -2776,9 +2443,7 @@ /area/golden_arrow/hangar) "aiv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "aix" = ( /obj/effect/decal/cleanable/dirt{ @@ -2787,9 +2452,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aiy" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -2797,9 +2460,7 @@ name = "\improper Weapons Bay Two Blast Door"; id = "weaponsbay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aiz" = ( /obj/structure/cargo_container/kelland/left{ @@ -2810,9 +2471,7 @@ pixel_y = 22; opacity = 0 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aiB" = ( /obj/effect/decal/cleanable/dirt{ @@ -2826,9 +2485,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/platoonprep) "aiG" = ( /obj/effect/decal/warning_stripes{ @@ -2844,18 +2501,14 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/prep_hallway) "aiK" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aiL" = ( /obj/effect/decal/warning_stripes{ @@ -2870,9 +2523,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aiM" = ( /obj/structure/surface/table/reinforced/prison, @@ -2885,9 +2536,7 @@ pixel_x = 1; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aiN" = ( /obj/structure/machinery/door/airlock/maintenance/colony{ @@ -2895,17 +2544,13 @@ req_one_access = null; name = "\improper Power Substation" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "aiO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aiP" = ( /obj/structure/surface/table/almayer, @@ -2926,17 +2571,13 @@ /area/golden_arrow/hangar) "aiQ" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aiT" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/motor_pool) "aiU" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2946,9 +2587,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/prep_hallway) "aiV" = ( /obj/structure/sign/safety/rewire{ @@ -2962,9 +2601,7 @@ dir = 2; id = "garrow_elevator_upper" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/cargo_shuttle/upper) "aiW" = ( /obj/structure/window/framed/almayer, @@ -2988,9 +2625,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ajb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3008,9 +2643,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "ajd" = ( /obj/effect/decal/warning_stripes{ @@ -3021,17 +2654,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aje" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aji" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3048,18 +2677,14 @@ pixel_x = -11; pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ajm" = ( /obj/structure/machinery/firealarm{ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, /area/golden_arrow/cryo_cells) "ajq" = ( /obj/structure/closet/secure_closet{ @@ -3085,9 +2710,7 @@ /obj/item/reagent_container/food/drinks/bottle/orangejuice{ pixel_y = -9 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, /area/golden_arrow/cryo_cells) "ajr" = ( /obj/structure/bed/chair/office/light{ @@ -3098,9 +2721,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ajs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3121,9 +2742,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aju" = ( /obj/effect/decal/warning_stripes{ @@ -3134,10 +2753,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "ajv" = ( /obj/effect/decal/cleanable/dirt{ @@ -3185,9 +2801,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "ajF" = ( /obj/docking_port/stationary/trijent_elevator/shipmap_elevator/one{ @@ -3205,9 +2819,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ajH" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -3218,10 +2830,7 @@ pixel_y = 27 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "ajI" = ( /obj/effect/decal/warning_stripes{ @@ -3249,9 +2858,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "ajR" = ( /obj/effect/decal/cleanable/dirt{ @@ -3260,9 +2867,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "ajU" = ( /obj/effect/decal/warning_stripes{ @@ -3271,9 +2876,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "ajV" = ( /obj/structure/sign/safety/rewire{ @@ -3290,14 +2893,10 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "ajZ" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "akb" = ( /turf/closed/wall/almayer, @@ -3307,9 +2906,7 @@ /obj/item/prop/almayer/box{ pixel_y = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "akd" = ( /obj/effect/decal/warning_stripes{ @@ -3318,9 +2915,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "akg" = ( /obj/item/ashtray/plastic{ @@ -3346,18 +2941,14 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "ako" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; pixel_y = -13 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "akp" = ( /obj/structure/surface/table/almayer, @@ -3384,9 +2975,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aku" = ( /obj/effect/decal/warning_stripes{ @@ -3442,9 +3031,7 @@ /area/golden_arrow/cryo_cells) "akC" = ( /obj/vehicle/powerloader, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "akD" = ( /obj/effect/decal/warning_stripes{ @@ -3454,9 +3041,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/briefing) "akE" = ( /obj/structure/barricade/handrail{ @@ -3496,9 +3081,7 @@ dir = 1; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "akK" = ( /obj/effect/decal/cleanable/dirt{ @@ -3509,9 +3092,7 @@ dir = 4; pixel_y = 3 }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/dorms) "akL" = ( /obj/structure/machinery/cryopod{ @@ -3544,15 +3125,10 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/golden_arrow/engineering) "akO" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/cryo_cells) "akR" = ( /obj/effect/decal/cleanable/dirt{ @@ -3562,17 +3138,13 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/prep_hallway) "akT" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "akV" = ( /obj/effect/decal/cleanable/dirt{ @@ -3581,9 +3153,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "akY" = ( /obj/structure/cable/heavyduty{ @@ -3619,26 +3189,19 @@ /obj/structure/ship_ammo/heavygun{ layer = 3.01 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "ala" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/uscm{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/north, /area/golden_arrow/hangar) "alb" = ( /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "alc" = ( /obj/structure/closet/secure_closet/marine_personal{ @@ -3649,17 +3212,13 @@ pixel_x = 8; job = "Platoon Corpsman" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "alf" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "ali" = ( /obj/effect/decal/warning_stripes{ @@ -3668,9 +3227,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "all" = ( /turf/open/floor/almayer/edge/smooth/corner, @@ -3680,9 +3237,7 @@ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aln" = ( /obj/effect/decal/warning_stripes{ @@ -3696,10 +3251,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "alp" = ( /obj/effect/decal/cleanable/cobweb, @@ -3707,17 +3259,13 @@ pixel_y = 13 }, /obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "alr" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "als" = ( /obj/structure/surface/table/almayer, @@ -3733,9 +3281,7 @@ layer = 2.7; pixel_y = -9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "alt" = ( /obj/item/storage/toolbox/mechanical{ @@ -3745,9 +3291,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "alu" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "alw" = ( /obj/structure/disposalpipe/segment{ @@ -3756,28 +3300,20 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) "alx" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 5 - }, +/turf/open/floor/almayer/uscm/directional/up_down/northeast, /area/golden_arrow/hangar) "alz" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "alA" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/supply) "alC" = ( /obj/effect/decal/warning_stripes{ @@ -3791,9 +3327,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "alD" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "alE" = ( /obj/effect/decal/warning_stripes{ @@ -3829,9 +3363,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "alL" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -3841,18 +3373,13 @@ pixel_x = 14; pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "alN" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "alP" = ( /obj/effect/decal/cleanable/dirt{ @@ -3874,18 +3401,14 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "alS" = ( /obj/structure/machinery/light/double/blue{ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "alT" = ( /obj/structure/machinery/light/double/blue{ @@ -3907,9 +3430,7 @@ pixel_x = -18; pixel_y = 7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "alX" = ( /obj/structure/barricade/handrail{ @@ -3922,9 +3443,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/dorms) "alY" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3955,9 +3474,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "amd" = ( /obj/structure/disposalpipe/segment, @@ -3972,28 +3489,21 @@ layer = 2.52 }, /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "amf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "amh" = ( /obj/structure/machinery/light/double/blue{ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ami" = ( /obj/structure/surface/table/almayer, @@ -4015,9 +3525,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "amn" = ( /obj/structure/machinery/light/double/blue{ @@ -4085,9 +3593,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "amy" = ( /obj/effect/decal/warning_stripes{ @@ -4097,10 +3603,7 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 1 - }, +/turf/open/floor/almayer/blackcorner/north, /area/golden_arrow/vehicle_shuttle/two/upper) "amA" = ( /obj/effect/decal/warning_stripes{ @@ -4108,10 +3611,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "amB" = ( /obj/structure/bed/chair{ @@ -4120,9 +3620,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "amC" = ( /obj/effect/decal/cleanable/dirt{ @@ -4136,18 +3634,14 @@ pixel_y = 29; serial_number = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "amF" = ( /obj/item/tool/mop{ pixel_x = -1; pixel_y = 20 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "amG" = ( /obj/structure/pipes/vents/pump{ @@ -4156,10 +3650,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/two/upper) "amI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4187,9 +3678,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/briefing) "amL" = ( /obj/effect/decal/cleanable/dirt{ @@ -4223,9 +3712,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) "amQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ @@ -4235,9 +3722,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "amS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4246,9 +3731,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/cryo_cells) "amT" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -4292,9 +3775,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/filingcabinet/medical{ pixel_y = 17; pixel_x = -8; @@ -4306,9 +3787,7 @@ pixel_x = 8; density = 0 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "and" = ( /obj/structure/machinery/power/terminal{ @@ -4323,9 +3802,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "ani" = ( /obj/structure/blocker/invisible_wall, @@ -4393,9 +3870,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ant" = ( /obj/structure/sink{ @@ -4413,18 +3888,14 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "anv" = ( /obj/structure/surface/table/almayer, /obj/item/hardpoint/support/flare_launcher{ pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "anw" = ( /obj/structure/cable{ @@ -4477,9 +3948,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "anz" = ( /obj/effect/decal/cleanable/dirt{ @@ -4491,9 +3960,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/briefing) "anB" = ( /obj/structure/cable{ @@ -4514,18 +3981,14 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "anE" = ( /obj/structure/ship_ammo/rocket/widowmaker{ pixel_y = 13 }, /obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "anF" = ( /obj/effect/decal/cleanable/dirt{ @@ -4563,9 +4026,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "anM" = ( /obj/effect/decal/warning_stripes{ @@ -4575,9 +4036,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "anN" = ( /obj/effect/decal/cleanable/dirt{ @@ -4627,24 +4086,18 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "anW" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "anY" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aoa" = ( /obj/effect/decal/cleanable/dirt{ @@ -4654,9 +4107,7 @@ pixel_x = 32; pixel_y = 16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aob" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4673,9 +4124,7 @@ icon_state = "door_warning"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/prep_hallway) "aoc" = ( /obj/structure/fence, @@ -4690,9 +4139,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aog" = ( /turf/closed/wall/almayer, @@ -4707,27 +4154,19 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aom" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/up_down/north, /area/golden_arrow/hangar) "aon" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/supply) "aop" = ( /obj/structure/flora/pottedplant{ @@ -4763,9 +4202,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aos" = ( /obj/effect/decal/warning_stripes{ @@ -4809,9 +4246,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aow" = ( /obj/structure/surface/table/almayer, @@ -4825,18 +4260,14 @@ layer = 2.52 }, /obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aoz" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; name = "ship-grade camera" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 6 - }, +/turf/open/floor/almayer/edge/smooth/southeast, /area/golden_arrow/platoon_commander_rooms) "aoA" = ( /obj/structure/ship_ammo/minirocket, @@ -4847,10 +4278,7 @@ pixel_y = 9; layer = 3.1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "aoC" = ( /obj/effect/decal/cleanable/dirt{ @@ -4860,9 +4288,7 @@ icon_state = "cargo" }, /obj/structure/cargo_container/grant/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aoE" = ( /obj/structure/machinery/light/double/blue{ @@ -4912,9 +4338,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "aoN" = ( /obj/structure/cargo_container/seegson/left, @@ -4924,9 +4348,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aoO" = ( -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aoQ" = ( /obj/structure/bed/bedroll{ @@ -4939,10 +4361,7 @@ pixel_y = -3; desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aoR" = ( /obj/structure/pipes/vents/pump, @@ -4965,16 +4384,11 @@ /obj/structure/closet/secure_closet/marine_personal{ pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aoV" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aoX" = ( /obj/effect/decal/warning_stripes{ @@ -4985,17 +4399,13 @@ icon_state = "W" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aoZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "ape" = ( /obj/effect/decal/cleanable/dirt{ @@ -5018,9 +4428,7 @@ layer = 2.52 }, /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "apj" = ( /obj/effect/decal/cleanable/dirt{ @@ -5030,18 +4438,14 @@ icon_state = "cargo" }, /obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "apk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "apm" = ( /obj/structure/surface/table/almayer, @@ -5055,9 +4459,7 @@ pixel_x = -5; pixel_y = -9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "apn" = ( /obj/structure/disposalpipe/segment{ @@ -5069,9 +4471,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "app" = ( /obj/effect/decal/warning_stripes{ @@ -5096,9 +4496,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "lowercargolocks" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "apv" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5106,9 +4504,7 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "apw" = ( /obj/structure/machinery/power/terminal{ @@ -5137,23 +4533,17 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "apA" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/cryo_cells) "apC" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ pixel_y = 24; density = 0 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/medical) "apD" = ( /obj/effect/decal/warning_stripes{ @@ -5166,9 +4556,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "apG" = ( /obj/structure/bed/chair{ @@ -5201,17 +4589,13 @@ /obj/structure/cable/heavyduty{ icon_state = "2-4" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/platoonarmory) "apJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "apM" = ( /obj/structure/cable/heavyduty{ @@ -5230,9 +4614,7 @@ pixel_y = 22; pixel_x = -14 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "apP" = ( /obj/effect/decal/cleanable/dirt{ @@ -5241,9 +4623,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/prep_hallway) "apQ" = ( /obj/structure/platform_decoration{ @@ -5277,10 +4657,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/two/upper) "apZ" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -5319,14 +4696,10 @@ /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/platoonarmory) "aqd" = ( -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, /area/golden_arrow/cryo_cells) "aqe" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5339,9 +4712,7 @@ /obj/structure/sign/safety/storage{ pixel_x = -18 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "aqg" = ( /obj/effect/decal/cleanable/dirt{ @@ -5366,10 +4737,7 @@ dir = 4; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/upper) "aqk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5378,9 +4746,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/platoonarmory) "aql" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -5388,9 +4754,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "hangarlockdownsouth" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aqo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5422,18 +4786,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aqu" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aqy" = ( /obj/effect/decal/warning_stripes{ @@ -5447,9 +4807,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aqz" = ( /obj/structure/platform{ @@ -5477,9 +4835,7 @@ /obj/structure/cable/heavyduty{ icon_state = "2-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "aqC" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5487,9 +4843,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, /area/golden_arrow/platoonprep) "aqD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5501,9 +4855,7 @@ /area/golden_arrow/platoonprep) "aqF" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aqG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5520,9 +4872,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_commander_rooms) "aqI" = ( /obj/structure/surface/table/almayer, @@ -5550,9 +4900,7 @@ pixel_x = -4; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aqL" = ( /obj/effect/decal/cleanable/blood/oil, @@ -5568,9 +4916,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "aqO" = ( /obj/effect/decal/cleanable/dirt{ @@ -5597,9 +4943,7 @@ id = "garrow_vehicle_elevator_two"; dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/two/upper) "aqS" = ( /obj/effect/decal/warning_stripes{ @@ -5609,9 +4953,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aqT" = ( /obj/effect/decal/cleanable/dirt{ @@ -5620,9 +4962,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aqU" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -5635,10 +4975,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aqV" = ( /obj/effect/decal/cleanable/dirt{ @@ -5661,18 +4998,14 @@ pixel_y = 14; pixel_x = 9 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "aqY" = ( /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_two"; dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/two/upper) "arc" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -5683,9 +5016,7 @@ icon_state = "cargo_arrow"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/cargo_shuttle/upper) "ard" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5693,9 +5024,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "are" = ( /obj/effect/decal/cleanable/dirt{ @@ -5720,9 +5049,7 @@ pixel_y = 35; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "arj" = ( /obj/effect/decal/cleanable/dirt{ @@ -5754,9 +5081,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonarmory) "arn" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5764,10 +5089,7 @@ dir = 4; id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/two/upper) "arp" = ( /obj/structure/platform_decoration{ @@ -5794,25 +5116,19 @@ /area/golden_arrow/hangar) "arr" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "ars" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, /area/golden_arrow/cryo_cells) "art" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aru" = ( /obj/structure/machinery/power/terminal{ @@ -5829,9 +5145,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "arx" = ( /obj/structure/surface/table/almayer, @@ -5851,9 +5165,7 @@ layer = 2.52 }, /obj/item/clothing/under/marine/officer/boiler, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "arB" = ( /obj/effect/decal/warning_stripes{ @@ -5915,9 +5227,7 @@ desc = "An M540 Armored Recon carrier, a supposedly more nimble alternative to the M577A3 APC. Evidently not nimble enough to escape from a dropship crashing into it. At least it didn't get shot up." }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "arD" = ( /obj/effect/decal/warning_stripes{ @@ -5930,9 +5240,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "arE" = ( /obj/structure/cable/heavyduty{ @@ -5964,9 +5272,7 @@ /obj/structure/sign/safety/conference_room{ pixel_y = 29 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoonprep) "arL" = ( /obj/item/storage/toolbox/mechanical/green{ @@ -6000,16 +5306,11 @@ pixel_y = 9; layer = 3.1 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "arO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/edge/smooth{ - dir = 10 - }, +/turf/open/floor/almayer/edge/smooth/southwest, /area/golden_arrow/motor_pool) "arP" = ( /turf/closed/wall/almayer/outer, @@ -6018,9 +5319,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "arR" = ( /obj/effect/decal/warning_stripes{ @@ -6033,9 +5332,7 @@ pixel_y = 1 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "arW" = ( /obj/structure/machinery/door_control{ @@ -6078,9 +5375,7 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "ase" = ( /obj/structure/pipes/vents/scrubber{ @@ -6089,9 +5384,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "asf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6102,9 +5395,7 @@ name = "\improper Storage Bay Four Blast Door"; id = "cargobay4" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "asi" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -6130,9 +5421,7 @@ id = "squadarmory"; name = "gear lockers door-control" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoon_commander_rooms) "asj" = ( /obj/effect/decal/warning_stripes{ @@ -6146,9 +5435,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "asm" = ( /obj/effect/decal/cleanable/dirt{ @@ -6157,10 +5444,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aso" = ( /obj/structure/surface/table/almayer, @@ -6175,19 +5459,14 @@ /area/golden_arrow/briefing) "ass" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "ast" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "asw" = ( /obj/structure/surface/table/almayer, @@ -6214,9 +5493,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "asB" = ( /obj/effect/decal/warning_stripes{ @@ -6229,9 +5506,7 @@ /obj/structure/machinery/door/poddoor/railing{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "asC" = ( /obj/structure/platform{ @@ -6241,9 +5516,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "asD" = ( /obj/structure/largecrate/supply/motiondetectors, @@ -6281,9 +5554,7 @@ /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/cryo_cells) "asL" = ( /obj/effect/decal/cleanable/dirt{ @@ -6295,9 +5566,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "asP" = ( /obj/effect/decal/warning_stripes{ @@ -6322,9 +5591,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "asU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6333,9 +5600,7 @@ /obj/structure/cable/heavyduty{ icon_state = "2-8" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/prep_hallway) "asV" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ @@ -6377,9 +5642,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "atb" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "atc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6405,9 +5668,7 @@ pixel_y = 1; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "ati" = ( /turf/open/floor/almayer/edge/smooth/corner, @@ -6419,10 +5680,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/two/upper) "atk" = ( /obj/effect/decal/cleanable/dirt{ @@ -6431,15 +5689,10 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/upper) "atm" = ( -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/cryo_cells) "ato" = ( /obj/structure/surface/table/almayer, @@ -6461,9 +5714,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ name = "\improper Assembly Room" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/briefing) "atv" = ( /obj/effect/decal/cleanable/blood/oil, @@ -6474,18 +5725,14 @@ /obj/item/clothing/gloves/boxing/blue, /obj/item/clothing/gloves/boxing/green, /obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "atw" = ( /obj/structure/machinery/light/double/blue{ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aty" = ( /obj/structure/machinery/power/terminal{ @@ -6519,9 +5766,7 @@ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "atD" = ( /obj/effect/decal/warning_stripes{ @@ -6537,17 +5782,13 @@ layer = 2.52 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "atE" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "atF" = ( /obj/structure/machinery/light/small/blue{ @@ -6555,9 +5796,7 @@ light_color = "#dae2ff"; light_power = 0.5 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "atG" = ( /obj/structure/cable/heavyduty{ @@ -6573,17 +5812,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "atI" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/dorms) "atM" = ( /obj/effect/decal/cleanable/dirt{ @@ -6592,9 +5827,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "atN" = ( /obj/structure/machinery/computer/crew/alt{ @@ -6651,26 +5884,20 @@ /obj/structure/cable/heavyduty{ icon_state = "2-8" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "atZ" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "auc" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 10 - }, +/turf/open/floor/almayer/edge/smooth/southwest, /area/golden_arrow/supply) "aue" = ( /obj/structure/disposalpipe/segment{ @@ -6699,9 +5926,7 @@ /obj/structure/sign/safety/autodoc{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "auh" = ( /turf/closed/wall/almayer/outer, @@ -6719,17 +5944,13 @@ opacity = 0; layer = 2.9 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aun" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "aup" = ( /obj/effect/decal/warning_stripes{ @@ -6740,9 +5961,7 @@ dir = 8; pixel_x = -16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/briefing) "aur" = ( /obj/effect/decal/warning_stripes{ @@ -6750,9 +5969,7 @@ pixel_x = 1 }, /obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonarmory) "aus" = ( /obj/effect/decal/cleanable/dirt{ @@ -6770,9 +5987,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/supply) "auv" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -6780,9 +5995,7 @@ dir = 2; name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aux" = ( /obj/effect/decal/warning_stripes{ @@ -6793,9 +6006,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "auB" = ( /obj/effect/decal/warning_stripes{ @@ -6862,17 +6073,13 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "auL" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "auN" = ( /obj/structure/largecrate/supply/medicine/medkits{ @@ -6891,9 +6098,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "auO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6912,9 +6117,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "auQ" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -6922,9 +6125,7 @@ name = "\improper Storage Bay Three Blast Door"; id = "cargobay3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "auT" = ( /obj/effect/decal/cleanable/dirt{ @@ -6932,9 +6133,7 @@ }, /obj/effect/decal/cleanable/blood/oil, /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "auU" = ( /obj/structure/disposalpipe/segment, @@ -6951,17 +6150,13 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "avb" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/dorms) "avc" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "avd" = ( /obj/structure/cable/heavyduty{ @@ -6969,17 +6164,13 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "ave" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "avh" = ( /obj/structure/cable/heavyduty{ @@ -6995,17 +6186,13 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "avj" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "avl" = ( /obj/effect/decal/warning_stripes{ @@ -7014,9 +6201,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "avq" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -7045,20 +6230,14 @@ icon_state = "fridge1"; name = "beverage fridge" }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "avs" = ( -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/platoonarmory) "avw" = ( /obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/synthcloset) "avA" = ( /obj/effect/decal/warning_stripes{ @@ -7068,9 +6247,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "avB" = ( /obj/structure/machinery/light/double/blue{ @@ -7079,9 +6256,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "avC" = ( /obj/effect/decal/cleanable/dirt{ @@ -7107,18 +6282,14 @@ pixel_y = 34; pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "avI" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "avJ" = ( /obj/effect/decal/cleanable/dirt{ @@ -7140,9 +6311,7 @@ pixel_y = 13 }, /obj/item/storage/pill_bottle, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "avL" = ( /obj/structure/machinery/landinglight/ds1{ @@ -7152,18 +6321,13 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "avM" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "avO" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7175,9 +6339,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "hangarlockdownwest" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/prep_hallway) "avT" = ( /obj/effect/decal/cleanable/dirt{ @@ -7187,10 +6349,7 @@ dir = 8; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 8 - }, +/turf/open/floor/almayer/black/west, /area/golden_arrow/vehicle_shuttle/upper) "avU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -7198,9 +6357,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, /area/golden_arrow/platoonprep) "avV" = ( /obj/structure/blocker/invisible_wall, @@ -7214,9 +6371,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "avX" = ( /obj/structure/largecrate/supply/ammo{ @@ -7237,14 +6392,10 @@ pixel_x = -8; pixel_y = 18 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "awa" = ( -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "awb" = ( /obj/effect/decal/cleanable/dirt{ @@ -7263,9 +6414,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "awk" = ( /obj/effect/decal/cleanable/dirt{ @@ -7275,17 +6424,13 @@ icon_state = "door_warning"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "awl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "awn" = ( /obj/effect/decal/warning_stripes{ @@ -7304,22 +6449,16 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "awp" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "awq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aws" = ( /obj/effect/decal/warning_stripes{ @@ -7330,14 +6469,10 @@ layer = 2.52 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "awt" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 6 - }, +/turf/open/floor/almayer/edge/smooth/southeast, /area/golden_arrow/platoonprep) "awv" = ( /obj/structure/barricade/handrail, @@ -7361,9 +6496,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "awz" = ( /obj/effect/decal/cleanable/dirt{ @@ -7400,9 +6533,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) "awI" = ( /obj/effect/decal/warning_stripes{ @@ -7416,9 +6547,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "awK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7430,9 +6559,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-8" }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/shared_office) "awL" = ( /obj/structure/bed/chair{ @@ -7441,9 +6568,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "awM" = ( /obj/effect/decal/cleanable/dirt{ @@ -7453,19 +6578,13 @@ /obj/item/weapon/gun/rifle/m4ra/pve{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "awN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "awQ" = ( -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/platoonarmory) "awR" = ( /obj/structure/machinery/light/double/blue{ @@ -7479,19 +6598,14 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) "awS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "awT" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 6 - }, +/turf/open/floor/almayer/uscm/directional/up_down/southeast, /area/golden_arrow/hangar) "awW" = ( /obj/effect/decal/cleanable/dirt{ @@ -7512,9 +6626,7 @@ dir = 2; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "axb" = ( /obj/effect/decal/cleanable/dirt{ @@ -7523,18 +6635,14 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axd" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "axe" = ( /obj/effect/decal/warning_stripes{ @@ -7543,9 +6651,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axf" = ( /obj/effect/decal/cleanable/dirt{ @@ -7560,9 +6666,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "axg" = ( /obj/structure/machinery/prop{ @@ -7592,9 +6696,7 @@ pixel_y = 18; pixel_x = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "axj" = ( /obj/effect/decal/warning_stripes{ @@ -7616,9 +6718,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "axl" = ( /obj/effect/decal/warning_stripes{ @@ -7627,9 +6727,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "axm" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/golden_arrow/engineering) "axn" = ( /obj/effect/decal/warning_stripes{ @@ -7641,9 +6739,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axo" = ( /obj/effect/decal/cleanable/dirt{ @@ -7674,9 +6770,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "axr" = ( /obj/effect/decal/cleanable/dirt{ @@ -7685,14 +6779,10 @@ /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axs" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1" - }, +/turf/open/floor/almayer/uscm/directional/up_down, /area/golden_arrow/hangar) "axt" = ( /obj/effect/decal/strata_decals/grime/grime1{ @@ -7744,17 +6834,13 @@ needs_power = 0; pixel_y = 28 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 6 - }, +/turf/open/floor/almayer/edge/smooth/southeast, /area/golden_arrow/supply) "axw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7762,9 +6848,7 @@ icon_state = "E"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "axB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -7787,10 +6871,7 @@ dir = 4; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/upper) "axD" = ( /obj/effect/decal/cleanable/dirt{ @@ -7799,9 +6880,7 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "axE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7849,9 +6928,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "axH" = ( /obj/effect/decal/warning_stripes{ @@ -7872,9 +6949,7 @@ /obj/effect/landmark/start/marine/smartgunner/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "axM" = ( /obj/structure/machinery/light/double/blue{ @@ -7907,9 +6982,7 @@ pixel_x = -7; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "axQ" = ( /obj/effect/decal/warning_stripes{ @@ -7937,9 +7010,7 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner" - }, +/turf/open/floor/almayer/blackcorner, /area/golden_arrow/vehicle_shuttle/two/upper) "axU" = ( /obj/structure/cable/heavyduty{ @@ -8010,17 +7081,13 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "ayf" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ayi" = ( /obj/structure/closet/secure_closet/smartgunner{ @@ -8028,28 +7095,21 @@ req_one_access = list(); name = "squad two smartgunner locker" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "ayj" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "ayk" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 8; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 8 - }, +/turf/open/floor/almayer/black/west, /area/golden_arrow/vehicle_shuttle/upper) "ayl" = ( /obj/effect/decal/warning_stripes{ @@ -8099,9 +7159,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "ayr" = ( /obj/effect/decal/warning_stripes{ @@ -8111,9 +7169,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "ayu" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -8128,9 +7184,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "ayw" = ( /obj/effect/decal/cleanable/dirt{ @@ -8141,9 +7195,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "ayx" = ( /obj/effect/decal/warning_stripes{ @@ -8151,9 +7203,7 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ayy" = ( /obj/effect/decal/cleanable/dirt{ @@ -8167,9 +7217,7 @@ pixel_x = -18; pixel_y = 7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "ayz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8178,15 +7226,11 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "ayA" = ( /obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ayC" = ( /obj/vehicle/powerloader{ @@ -8209,9 +7253,7 @@ icon_state = "SE-out"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "ayE" = ( /obj/structure/surface/table/almayer, @@ -8246,9 +7288,7 @@ /turf/open/floor/almayer/edge/smooth/corner, /area/golden_arrow/motor_pool) "ayH" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 5 - }, +/turf/open/floor/almayer/edge/smooth/northeast, /area/golden_arrow/platoonprep) "ayI" = ( /obj/effect/decal/warning_stripes{ @@ -8283,9 +7323,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "ayN" = ( /obj/structure/ship_ammo/rocket/widowmaker{ @@ -8295,9 +7333,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "ayO" = ( /obj/structure/barricade/handrail{ @@ -8315,10 +7351,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "ayP" = ( /obj/effect/decal/warning_stripes{ @@ -8346,9 +7379,7 @@ name = "\improper Storage Bay Four Blast Door"; id = "cargobay4" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "ayX" = ( /turf/open/floor/plating, @@ -8419,9 +7450,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aze" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -8429,17 +7458,13 @@ id = "cargolockswest"; dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "azh" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/cryo_cells) "azi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8457,9 +7482,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "azn" = ( /obj/effect/decal/warning_stripes{ @@ -8482,9 +7505,7 @@ dir = 2; id = "garrow_elevator_lower" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/cargo_shuttle/lower) "azp" = ( /obj/effect/decal/cleanable/dirt{ @@ -8505,9 +7526,7 @@ pixel_x = -4; anchored = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/motor_pool) "azs" = ( /turf/closed/wall/almayer/outer, @@ -8522,9 +7541,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/platoonarmory) "azv" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -8533,9 +7550,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "azw" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8554,9 +7569,7 @@ /obj/item/prop/almayer/flight_recorder{ pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "azA" = ( /obj/structure/platform_decoration, @@ -8566,9 +7579,7 @@ /obj/structure/closet/hydrant{ pixel_y = 32 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/motor_pool) "azB" = ( /obj/structure/closet/crate/trashcart{ @@ -8585,9 +7596,7 @@ /obj/item/trash/candy, /obj/item/trash/burger, /obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "azD" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8608,9 +7617,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/briefing) "azF" = ( /obj/structure/cable/heavyduty{ @@ -8623,9 +7630,7 @@ pixel_x = 4; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "azJ" = ( /obj/effect/decal/warning_stripes{ @@ -8642,9 +7647,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "azK" = ( /obj/structure/pipes/vents/scrubber{ @@ -8654,15 +7657,11 @@ id = "garrow_vehicle_elevator_two"; dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/two/upper) "azL" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "azM" = ( /obj/structure/surface/table/reinforced/prison, @@ -8677,9 +7676,7 @@ pixel_x = -7; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "azN" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -8695,17 +7692,13 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "azQ" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "azR" = ( /obj/structure/surface/table/almayer, @@ -8720,17 +7713,13 @@ dir = 2; name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "azT" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/cryo_cells) "azU" = ( /obj/effect/decal/warning_stripes{ @@ -8749,9 +7738,7 @@ pixel_y = 22; pixel_x = 6 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "azV" = ( /obj/structure/bed{ @@ -8786,9 +7773,7 @@ throwforce = 15; pixel_x = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "azZ" = ( /obj/effect/decal/cleanable/dirt{ @@ -8811,10 +7796,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aAd" = ( /obj/effect/decal/warning_stripes{ @@ -8825,9 +7807,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "aAe" = ( /obj/effect/decal/cleanable/dirt{ @@ -8851,9 +7831,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "aAh" = ( /obj/effect/decal/strata_decals/grime/grime1{ @@ -8862,9 +7840,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aAi" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -8877,19 +7853,14 @@ /obj/structure/sign/safety/ammunition{ pixel_y = 26 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aAj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aAk" = ( /obj/structure/disposalpipe/segment{ @@ -8901,25 +7872,19 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aAl" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aAn" = ( /obj/effect/decal/warning_stripes{ @@ -8948,9 +7913,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aAr" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -8958,9 +7921,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, /area/golden_arrow/platoonprep) "aAs" = ( /obj/structure/pipes/vents/pump, @@ -8980,19 +7941,14 @@ pixel_y = 2; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aAu" = ( /obj/structure/largecrate/supply/ammo/m41amk1, /obj/structure/largecrate/supply/ammo/m41amk1{ pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aAv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9015,26 +7971,20 @@ dir = 2; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/upper) "aAA" = ( /obj/structure/platform{ dir = 8; layer = 2.7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "aAB" = ( /obj/vehicle/powerloader{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aAC" = ( /obj/effect/decal/warning_stripes{ @@ -9048,9 +7998,7 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/motor_pool) "aAG" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -9087,9 +8035,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "aAI" = ( /obj/structure/closet/secure_closet/marine_personal{ @@ -9100,17 +8046,13 @@ pixel_x = -7; job = "Squad Sergeant" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aAJ" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aAK" = ( /obj/structure/machinery/cryopod, @@ -9138,9 +8080,7 @@ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "aAQ" = ( /obj/structure/surface/table/almayer, @@ -9159,9 +8099,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "aAS" = ( /obj/structure/machinery/alarm/almayer{ @@ -9171,9 +8109,7 @@ layer = 2.52 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/edge/smooth{ - dir = 9 - }, +/turf/open/floor/almayer/edge/smooth/northwest, /area/golden_arrow/platoon_commander_rooms) "aAT" = ( /obj/effect/decal/warning_stripes{ @@ -9193,9 +8129,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aAW" = ( /obj/effect/decal/warning_stripes{ @@ -9208,9 +8142,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aAZ" = ( /obj/structure/surface/table/almayer, @@ -9258,15 +8190,10 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "aBe" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "aBg" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aBi" = ( /obj/structure/machinery/landinglight/ds1, @@ -9274,17 +8201,13 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aBj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aBk" = ( /turf/open/floor/almayer, @@ -9323,25 +8246,19 @@ /obj/item/stack/cable_coil{ pixel_x = 7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aBp" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoon_commander_rooms) "aBq" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/cryo_cells) "aBr" = ( /obj/structure/machinery/computer/station_alert{ @@ -9357,9 +8274,7 @@ /turf/open/floor/almayer, /area/golden_arrow/synthcloset) "aBt" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/supply) "aBu" = ( /obj/effect/decal/warning_stripes{ @@ -9369,17 +8284,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/hangar) "aBv" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/medical) "aBw" = ( /obj/effect/decal/cleanable/dirt{ @@ -9405,9 +8316,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ name = "\improper Hypersleep Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) "aBz" = ( /obj/effect/decal/warning_stripes{ @@ -9415,16 +8324,11 @@ layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aBB" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aBD" = ( /obj/structure/surface/table/almayer, @@ -9449,9 +8353,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "aBG" = ( /obj/effect/decal/warning_stripes{ @@ -9460,23 +8362,17 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aBI" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aBK" = ( -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "aBL" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -9488,9 +8384,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aBM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -9500,10 +8394,7 @@ dir = 4; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/upper) "aBN" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -9516,9 +8407,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aBP" = ( /obj/effect/decal/cleanable/dirt{ @@ -9535,9 +8424,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aBR" = ( /obj/structure/cable/heavyduty{ @@ -9556,9 +8443,7 @@ pixel_y = -10; pixel_x = 6 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "aBV" = ( /obj/effect/decal/warning_stripes{ @@ -9568,9 +8453,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/motor_pool) "aBW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -9603,9 +8486,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aCh" = ( /obj/effect/decal/siding{ @@ -9639,9 +8520,7 @@ pixel_y = 12; pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aCl" = ( /obj/effect/decal/warning_stripes{ @@ -9676,9 +8555,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aCs" = ( /obj/structure/machinery/gear{ @@ -9691,9 +8568,7 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "blackcorner" - }, +/turf/open/floor/almayer/blackcorner, /area/golden_arrow/vehicle_shuttle/upper) "aCt" = ( /obj/effect/decal/cleanable/dirt{ @@ -9702,9 +8577,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aCu" = ( /obj/structure/bed/chair{ @@ -9716,9 +8589,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "aCx" = ( /obj/structure/disposalpipe/segment, @@ -9729,18 +8600,14 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/motor_pool) "aCy" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/synthcloset) "aCz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/item/tool/warning_cone, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aCA" = ( /obj/effect/decal/cleanable/dirt{ @@ -9755,9 +8622,7 @@ shuttleId = "garrow_cargo_elevator"; dockId = "garrow_cargo_elevator_storage" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aCB" = ( /obj/structure/surface/table/almayer, @@ -9787,18 +8652,14 @@ name = "hangar blast door control"; req_one_access_txt = "19;12" }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/platoonarmory) "aCE" = ( /turf/closed/wall/almayer, /area/golden_arrow/medical) "aCH" = ( /obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable/heavyduty{ icon_state = "4-8" }, @@ -9811,9 +8672,7 @@ /obj/structure/cable/heavyduty{ icon_state = "node" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aCM" = ( /obj/structure/closet/firecloset, @@ -9829,9 +8688,7 @@ pixel_y = 22; pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) "aCO" = ( /obj/effect/decal/warning_stripes{ @@ -9870,9 +8727,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aCS" = ( /obj/effect/landmark/nightmare{ @@ -9887,18 +8742,14 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aCU" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/item/hardpoint/locomotion/apc_wheels, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aCV" = ( /obj/effect/decal/cleanable/dirt{ @@ -9908,9 +8759,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aCW" = ( /obj/structure/surface/table/almayer, @@ -9933,14 +8782,10 @@ pixel_x = -2; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "aCZ" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "aDd" = ( /obj/effect/decal/cleanable/dirt{ @@ -9982,18 +8827,13 @@ pixel_y = 16; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "aDg" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/platoonarmory) "aDh" = ( /turf/closed/wall/almayer/outer, @@ -10002,9 +8842,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "aDj" = ( /obj/structure/cable{ @@ -10023,18 +8861,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aDm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aDr" = ( /obj/effect/decal/warning_stripes{ @@ -10051,9 +8885,7 @@ dir = 8 }, /obj/structure/closet/secure_closet, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "aDt" = ( /obj/effect/decal/cleanable/dirt{ @@ -10089,9 +8921,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aDx" = ( /obj/effect/decal/cleanable/dirt{ @@ -10106,25 +8936,19 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "aDy" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aDz" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aDE" = ( /obj/effect/decal/warning_stripes{ @@ -10141,10 +8965,7 @@ /obj/item/storage/toolbox/mechanical/green{ pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aDH" = ( /obj/effect/decal/warning_stripes{ @@ -10161,14 +8982,10 @@ /obj/item/storage/toolbox/mechanical/green{ pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aDJ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) "aDL" = ( @@ -10177,9 +8994,7 @@ name = "General Listening Channel"; pixel_y = -29 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/platoonarmory) "aDM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10233,9 +9048,7 @@ name = "\improper Equipment Locker"; id = "squadarmory" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aDX" = ( /obj/effect/decal/cleanable/dirt{ @@ -10249,17 +9062,13 @@ dir = 2; id = "garrow_elevator_upper" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/cargo_shuttle/upper) "aDZ" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aEa" = ( /obj/effect/decal/warning_stripes{ @@ -10269,14 +9078,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aEb" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/motor_pool) "aEc" = ( /obj/effect/decal/warning_stripes{ @@ -10287,9 +9092,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aEd" = ( /obj/effect/decal/cleanable/dirt{ @@ -10322,14 +9125,10 @@ pixel_x = 8; job = "Squad Sergeant" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aEf" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aEg" = ( /obj/item/device/radio/intercom{ @@ -10337,10 +9136,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aEh" = ( /obj/structure/surface/table/reinforced/prison, @@ -10348,9 +9144,7 @@ pixel_x = -8; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aEi" = ( /obj/structure/sign/banners/united_americas_flag{ @@ -10365,9 +9159,7 @@ pixel_x = -3; pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aEl" = ( /obj/structure/cable/heavyduty{ @@ -10430,9 +9222,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/briefing) "aEs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10444,9 +9234,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aEt" = ( /obj/effect/decal/cleanable/dirt{ @@ -10464,9 +9252,7 @@ pixel_x = 11; pixel_y = 7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoon_commander_rooms) "aEu" = ( /obj/structure/cable/heavyduty{ @@ -10477,17 +9263,13 @@ /area/golden_arrow/hangar) "aEv" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/supply) "aEw" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aEx" = ( /obj/effect/decal/cleanable/dirt{ @@ -10512,10 +9294,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aEB" = ( /obj/effect/decal/cleanable/dirt{ @@ -10548,9 +9327,7 @@ dir = 2; name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aEG" = ( /turf/open/space/basic, @@ -10559,26 +9336,20 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aEI" = ( /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/cryo_cells) "aEK" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "cargolock"; name = "\improper Cargo Elevator Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/prep_hallway) "aEM" = ( /obj/effect/decal/warning_stripes{ @@ -10588,9 +9359,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aEN" = ( /obj/structure/barricade/handrail{ @@ -10599,9 +9368,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "aEO" = ( /obj/effect/decal/warning_stripes{ @@ -10637,18 +9404,13 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 8 - }, +/turf/open/floor/almayer/blackcorner/west, /area/golden_arrow/vehicle_shuttle/upper) "aEX" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aEY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10660,9 +9422,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aFa" = ( /obj/effect/decal/cleanable/dirt{ @@ -10671,9 +9431,7 @@ /obj/structure/machinery/photocopier{ pixel_y = 4 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ icon_state = "0-2" }, @@ -10690,16 +9448,11 @@ pixel_y = 1; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aFc" = ( /obj/item/hardpoint/locomotion/apc_wheels/arc, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aFd" = ( /obj/structure/cable/heavyduty{ @@ -10715,9 +9468,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aFh" = ( /obj/effect/decal/cleanable/dirt{ @@ -10742,9 +9493,7 @@ pixel_y = 1; pixel_x = -1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aFm" = ( /obj/effect/decal/cleanable/dirt{ @@ -10754,9 +9503,7 @@ pixel_y = 20; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aFo" = ( /obj/structure/closet/secure_closet/marine_personal{ @@ -10766,9 +9513,7 @@ /obj/item/clothing/suit/storage/jacket/marine/service, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, /obj/item/clothing/under/marine/officer/bridge, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aFr" = ( /obj/effect/decal/warning_stripes{ @@ -10778,9 +9523,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/motor_pool) "aFt" = ( /obj/effect/decal/cleanable/dirt{ @@ -10825,15 +9568,10 @@ /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/cryo_cells) "aFz" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/up_down/west, /area/golden_arrow/hangar) "aFA" = ( /obj/structure/surface/table/reinforced/prison, @@ -10841,9 +9579,7 @@ dir = 8; pixel_x = -3 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aFF" = ( /obj/effect/decal/warning_stripes{ @@ -10880,9 +9616,7 @@ layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aFI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10891,10 +9625,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aFK" = ( /obj/structure/machinery/light/double/blue{ @@ -10905,9 +9636,7 @@ pixel_x = 6; pixel_y = -2 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "aFL" = ( /obj/structure/machinery/door_control{ @@ -10942,17 +9671,13 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aFT" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "aFU" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -10962,19 +9687,14 @@ pixel_x = 14; pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aFW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aFX" = ( /obj/structure/machinery/light/double/blue{ @@ -10994,17 +9714,13 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/cryo_cells) "aFY" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "aGa" = ( /obj/structure/platform{ @@ -11018,34 +9734,26 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "aGb" = ( /obj/structure/reagent_dispensers/fueltank{ layer = 2.97 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aGc" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aGf" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "aGg" = ( /obj/effect/decal/warning_stripes{ @@ -11066,9 +9774,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aGi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11079,9 +9785,7 @@ name = "\improper Vehicle Bay One Blast Door"; id = "vehiclebay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aGl" = ( /obj/structure/surface/table/almayer, @@ -11128,14 +9832,10 @@ name = "\improper Weapons Bay Two Blast Door"; id = "weaponsbay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aGr" = ( -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/cryo_cells) "aGt" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -11148,10 +9848,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aGu" = ( /obj/structure/prop/almayer/computers/sensor_computer2{ @@ -11180,10 +9877,7 @@ /turf/open/floor/almayer, /area/golden_arrow/motor_pool) "aGv" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aGx" = ( /obj/effect/decal/cleanable/dirt{ @@ -11192,17 +9886,13 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/dorms) "aGB" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aGC" = ( /obj/effect/decal/warning_stripes{ @@ -11213,9 +9903,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aGD" = ( /obj/effect/decal/cleanable/dirt{ @@ -11232,17 +9920,13 @@ name = "\improper Storage Bay Two Blast Door"; id = "cargobay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aGF" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aGJ" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -11250,14 +9934,10 @@ name = "\improper Vehicle Bay Two Blast Door"; id = "vehiclebay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aGK" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/space) "aGN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11277,10 +9957,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aGR" = ( /obj/effect/decal/cleanable/dirt{ @@ -11299,9 +9976,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -11339,9 +10014,7 @@ name = "\improper Equipment Locker"; id = "squadarmory" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aGZ" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -11352,9 +10025,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "aHa" = ( /obj/effect/decal/warning_stripes{ @@ -11367,23 +10038,16 @@ /obj/structure/largecrate/supply/supplies/mre{ layer = 3.1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aHb" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 4 - }, +/turf/open/floor/almayer/uscm/directional/up_down/east, /area/golden_arrow/hangar) "aHc" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "aHd" = ( /obj/structure/toilet{ @@ -11422,9 +10086,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/north, /area/golden_arrow/briefing) "aHk" = ( /obj/structure/surface/table/almayer, @@ -11437,17 +10099,13 @@ dir = 2; id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black" - }, +/turf/open/floor/almayer/black, /area/golden_arrow/vehicle_shuttle/upper) "aHn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aHp" = ( /obj/structure/window/framed/almayer, @@ -11517,9 +10175,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "aHC" = ( /obj/effect/decal/cleanable/dirt{ @@ -11534,15 +10190,10 @@ foldabletype = null; desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aHF" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aHG" = ( /obj/structure/pipes/vents/pump, @@ -11552,9 +10203,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aHI" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aHJ" = ( /obj/effect/decal/cleanable/dirt{ @@ -11565,10 +10214,7 @@ dir = 4; id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 4 - }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/vehicle_shuttle/two/upper) "aHM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11577,9 +10223,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aHP" = ( /obj/effect/decal/warning_stripes{ @@ -11596,9 +10240,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/cryo_cells) "aHR" = ( /obj/effect/decal/warning_stripes{ @@ -11608,9 +10250,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aHU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11627,17 +10267,13 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoonprep) "aHX" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/golden_arrow/engineering) "aHZ" = ( /turf/closed/wall/almayer/outer, @@ -11656,9 +10292,7 @@ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/platoonarmory) "aIc" = ( /obj/effect/decal/cleanable/dirt{ @@ -11675,20 +10309,14 @@ name = "\improper Storage Bay One Blast Door"; id = "cargobay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aIg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aIh" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "aIk" = ( /obj/effect/decal/cleanable/dirt{ @@ -11697,9 +10325,7 @@ /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aIl" = ( /obj/effect/decal/warning_stripes{ @@ -11708,9 +10334,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aIm" = ( /obj/effect/decal/cleanable/dirt{ @@ -11726,9 +10350,7 @@ /turf/open/floor/almayer, /area/golden_arrow/motor_pool) "aIn" = ( -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/supply) "aIo" = ( /obj/effect/decal/warning_stripes{ @@ -11737,9 +10359,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aIp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11750,9 +10370,7 @@ name = "\improper Vehicle Bay Two Blast Door"; id = "vehiclebay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aIr" = ( /turf/closed/wall/almayer, @@ -11761,10 +10379,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/golden_arrow/engineering) "aIu" = ( /obj/structure/sign/safety/rewire{ @@ -11790,9 +10405,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aIx" = ( /obj/effect/decal/warning_stripes{ @@ -11800,9 +10413,7 @@ pixel_x = 1 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aIy" = ( /obj/effect/decal/cleanable/dirt{ @@ -11813,9 +10424,7 @@ pixel_x = -1; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aIz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11830,9 +10439,7 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) "aIB" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ icon_state = "0-8"; layer = 2.36 @@ -11856,10 +10463,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aIK" = ( /obj/structure/surface/table/almayer, @@ -11880,9 +10484,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aIP" = ( /obj/effect/decal/cleanable/dirt{ @@ -11895,10 +10497,7 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 1 - }, +/turf/open/floor/almayer/blackcorner/north, /area/golden_arrow/vehicle_shuttle/upper) "aIQ" = ( /obj/structure/machinery/light/double/blue{ @@ -11906,18 +10505,14 @@ light_color = "#dae2ff" }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aIR" = ( /obj/structure/sign/safety/medical{ pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/prep_hallway) "aIS" = ( /obj/effect/decal/cleanable/dirt{ @@ -11927,10 +10522,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/upper) "aIT" = ( /obj/effect/decal/warning_stripes{ @@ -11940,9 +10532,7 @@ pixel_x = -1 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aIU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -11979,9 +10569,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonarmory) "aIY" = ( /obj/structure/machinery/door_control{ @@ -12002,9 +10590,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aJa" = ( /obj/effect/decal/warning_stripes{ @@ -12031,9 +10617,7 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aJf" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -12051,19 +10635,14 @@ layer = 3.6; density = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aJg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/railing{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aJh" = ( /obj/effect/decal/warning_stripes{ @@ -12078,9 +10657,7 @@ pixel_y = 9; layer = 3.1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aJi" = ( /obj/effect/decal/warning_stripes{ @@ -12090,9 +10667,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aJj" = ( /obj/effect/decal/warning_stripes{ @@ -12101,14 +10676,10 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aJk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, +/obj/structure/machinery/power/apc/almayer/east, /obj/structure/cable{ icon_state = "0-2" }, @@ -12129,35 +10700,27 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aJn" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, /obj/structure/cargo_container/grant/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aJp" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aJq" = ( /obj/structure/machinery/light/double/blue{ dir = 1; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aJs" = ( /obj/structure/surface/table/reinforced/prison, @@ -12171,22 +10734,16 @@ pixel_y = 1; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aJu" = ( -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "aJv" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aJw" = ( /obj/effect/decal/cleanable/dirt{ @@ -12210,12 +10767,8 @@ pixel_x = 24; serial_number = 11 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "aJz" = ( /obj/structure/cargo_container/seegson/mid, @@ -12242,14 +10795,10 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) "aJD" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/motor_pool) "aJF" = ( /obj/structure/surface/table/almayer, @@ -12274,18 +10823,14 @@ color = "#dae2ff"; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aJP" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aJQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12313,35 +10858,26 @@ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoon_commander_rooms) "aJU" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "aJV" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "aJX" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/platoonarmory) "aJY" = ( /obj/item/reagent_container/food/drinks/coffeecup/wy{ @@ -12357,17 +10893,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aKa" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aKb" = ( /obj/effect/decal/warning_stripes{ @@ -12402,9 +10934,7 @@ dir = 8; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aKd" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -12425,9 +10955,7 @@ name = "\improper Weapons Bay One Blast Door"; id = "weaponsbay1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aKj" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -12435,9 +10963,7 @@ id = "squadarmory"; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aKk" = ( /obj/structure/bed/chair/comfy, @@ -12447,9 +10973,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aKn" = ( /turf/open/floor/plating/plating_catwalk, @@ -12478,9 +11002,7 @@ /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aKs" = ( /obj/structure/bed/chair{ @@ -12489,9 +11011,7 @@ /obj/structure/machinery/light_switch{ pixel_x = -24 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "aKt" = ( /obj/effect/decal/warning_stripes{ @@ -12508,9 +11028,7 @@ dir = 1; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aKv" = ( /obj/effect/decal/warning_stripes{ @@ -12533,9 +11051,7 @@ light_color = "#dae2ff"; light_power = 0.5 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/platoonarmory) "aKx" = ( /obj/structure/pipes/vents/pump, @@ -12546,9 +11062,7 @@ /area/golden_arrow/shared_office) "aKz" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aKD" = ( /obj/effect/decal/warning_stripes{ @@ -12570,19 +11084,14 @@ pixel_x = 14; pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aKG" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aKH" = ( /obj/effect/decal/warning_stripes{ @@ -12601,9 +11110,7 @@ dir = 8 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aKI" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -12611,14 +11118,10 @@ name = "\improper Hangar Lockdown Blast Door"; id = "hangarlockdownnorth" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aKL" = ( -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aKM" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -12631,18 +11134,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "aKQ" = ( /obj/structure/surface/table/almayer, /obj/structure/largecrate/random/secure{ pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aKS" = ( /obj/effect/decal/warning_stripes{ @@ -12654,18 +11153,14 @@ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aKV" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) "aKW" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aKX" = ( /turf/open/floor/almayer/edge/smooth/corner, @@ -12675,9 +11170,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/prep_hallway) "aKZ" = ( /obj/effect/decal/warning_stripes{ @@ -12695,22 +11188,16 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/cryo_cells) "aLd" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aLe" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aLi" = ( /obj/effect/decal/cleanable/dirt{ @@ -12722,9 +11209,7 @@ pixel_y = 35; name = "\improper vehicle elevator two control panel" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLj" = ( /obj/effect/decal/cleanable/blood/oil, @@ -12733,17 +11218,13 @@ pixel_y = 15; pixel_x = -2 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aLk" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/platoonarmory) "aLm" = ( /obj/effect/decal/siding{ @@ -12758,9 +11239,7 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/platoonarmory) "aLs" = ( /obj/structure/platform{ @@ -12778,9 +11257,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLv" = ( /obj/effect/decal/warning_stripes{ @@ -12793,9 +11270,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aLw" = ( /obj/structure/bed/chair/comfy{ @@ -12824,9 +11299,7 @@ dir = 4; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLB" = ( /obj/effect/decal/cleanable/dirt{ @@ -12841,9 +11314,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aLD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12853,10 +11324,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aLE" = ( /obj/effect/decal/cleanable/dirt{ @@ -12874,9 +11342,7 @@ /obj/structure/machinery/door/poddoor/railing{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aLG" = ( /obj/structure/machinery/door_control{ @@ -12893,26 +11359,20 @@ /turf/open/space/basic, /area/space) "aLK" = ( -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "aLL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLM" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aLN" = ( /obj/effect/decal/cleanable/dirt{ @@ -12922,9 +11382,7 @@ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aLP" = ( /obj/effect/decal/warning_stripes{ @@ -12948,9 +11406,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLR" = ( /obj/structure/machinery/door_control/brbutton{ @@ -12958,17 +11414,13 @@ id = "vehiclebay1"; name = "vehicle bay blast door control" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 9 - }, +/turf/open/floor/almayer/edge/smooth/northwest, /area/golden_arrow/supply) "aLT" = ( /obj/effect/decal/warning_stripes{ @@ -12996,9 +11448,7 @@ /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, /obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aLV" = ( /obj/structure/cable/heavyduty{ @@ -13023,17 +11473,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aLY" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/motor_pool) "aLZ" = ( /obj/structure/cable/heavyduty{ @@ -13052,10 +11498,7 @@ pixel_x = -6; pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/north, /area/golden_arrow/engineering) "aMe" = ( /obj/effect/decal/cleanable/dirt{ @@ -13064,9 +11507,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aMg" = ( /obj/effect/decal/cleanable/dirt{ @@ -13079,9 +11520,7 @@ /area/golden_arrow/dorms) "aMi" = ( /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aMl" = ( /obj/structure/pipes/standard/manifold/hidden/supply, @@ -13104,18 +11543,14 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aMp" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "aMq" = ( /obj/structure/sign/safety/airlock{ @@ -13135,9 +11570,7 @@ layer = 3.3 }, /obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aMx" = ( /obj/effect/decal/warning_stripes{ @@ -13167,15 +11600,10 @@ /obj/structure/largecrate/random/mini/small_case{ pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aMz" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aMA" = ( /obj/structure/prop/dam/crane, @@ -13215,9 +11643,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aMP" = ( /obj/structure/machinery/light/double/blue{ @@ -13258,9 +11684,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 9 - }, +/turf/open/floor/almayer/edge/smooth/northwest, /area/golden_arrow/platoonprep) "aMV" = ( /obj/effect/decal/warning_stripes{ @@ -13283,16 +11707,11 @@ id = "garrow_vehicle_elevator_two"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 8 - }, +/turf/open/floor/almayer/black/west, /area/golden_arrow/vehicle_shuttle/two/upper) "aMY" = ( /obj/structure/machinery/cm_vending/gear/medic_chemical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aNa" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -13300,9 +11719,7 @@ id = "lowervehiclebay1"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "aNc" = ( /obj/structure/machinery/door_control{ @@ -13316,9 +11733,7 @@ dir = 1; color = "#E10600" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/space) "aNd" = ( /obj/structure/machinery/gear{ @@ -13332,10 +11747,7 @@ pixel_y = 1; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 4 - }, +/turf/open/floor/almayer/blackcorner/east, /area/golden_arrow/vehicle_shuttle/two/upper) "aNf" = ( /obj/effect/decal/warning_stripes{ @@ -13350,17 +11762,13 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aNj" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aNk" = ( /obj/effect/decal/warning_stripes{ @@ -13383,9 +11791,7 @@ name = "\improper Hangar Lockdown Blast Door"; dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aNm" = ( /obj/structure/cargo_container/wy/right{ @@ -13405,17 +11811,13 @@ pixel_y = 19; pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aNn" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "aNp" = ( /obj/structure/pipes/vents/scrubber, @@ -13432,9 +11834,7 @@ dir = 4; name = "ship-grade camera" }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "aNw" = ( /obj/effect/decal/cleanable/dirt{ @@ -13464,9 +11864,7 @@ pixel_y = 22 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aNC" = ( /obj/structure/disposalpipe/segment{ @@ -13476,23 +11874,17 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aNE" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoon_commander_rooms) "aNI" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aNK" = ( /obj/effect/decal/warning_stripes{ @@ -13503,9 +11895,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aNL" = ( /obj/effect/decal/cleanable/dirt{ @@ -13515,9 +11905,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aNN" = ( /obj/effect/decal/cleanable/dirt{ @@ -13526,9 +11914,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aNO" = ( /obj/effect/decal/warning_stripes{ @@ -13544,9 +11930,7 @@ icon_state = "W" }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aNP" = ( /obj/structure/prop/dam/crane{ @@ -13555,9 +11939,7 @@ layer = 3.5; pixel_y = -23 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aNR" = ( /obj/structure/largecrate/supply/weapons/m56d{ @@ -13575,43 +11957,33 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/platoonarmory) "aNT" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 6 - }, +/turf/open/floor/almayer/edge/southeast, /area/golden_arrow/cryo_cells) "aNV" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aNY" = ( /obj/structure/machinery/medical_pod/sleeper{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aOd" = ( /obj/effect/decal/warning_stripes{ @@ -13630,9 +12002,7 @@ /obj/structure/cable/heavyduty{ icon_state = "0-4" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonprep) "aOi" = ( /obj/structure/machinery/power/terminal{ @@ -13664,9 +12034,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aOm" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "aOn" = ( /obj/effect/decal/cleanable/dirt{ @@ -13691,9 +12059,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aOr" = ( /obj/structure/machinery/door_control{ @@ -13719,9 +12085,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aOt" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -13734,9 +12098,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aOw" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -13744,9 +12106,7 @@ id = "lowervehiclebay2"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "aOx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -13765,9 +12125,7 @@ pixel_y = -2; layer = 3.6 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aOC" = ( /obj/effect/decal/cleanable/dirt{ @@ -13776,9 +12134,7 @@ /obj/structure/machinery/landinglight/ds1{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aOE" = ( /obj/effect/decal/warning_stripes{ @@ -13789,9 +12145,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aOG" = ( /obj/effect/decal/warning_stripes{ @@ -13809,9 +12163,7 @@ pixel_x = 7; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aOH" = ( /obj/structure/platform_decoration{ @@ -13830,9 +12182,7 @@ /turf/open/space/basic, /area/space) "aOM" = ( -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/cryo_cells) "aOO" = ( /obj/effect/decal/cleanable/dirt{ @@ -13842,9 +12192,7 @@ pixel_y = 25 }, /obj/structure/janitorialcart, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aOQ" = ( /obj/effect/decal/warning_stripes{ @@ -13863,11 +12211,9 @@ /area/golden_arrow/hangar) "aOS" = ( /obj/effect/decal/cleanable/dirt{ - layer = 2.52 - }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 + layer = 2.52 }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "aOT" = ( /obj/structure/closet/secure_closet, @@ -13891,9 +12237,7 @@ pixel_x = 16; pixel_y = -15 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/dorms) "aOW" = ( /obj/effect/decal/warning_stripes{ @@ -13903,17 +12247,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aOY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aPa" = ( /obj/effect/decal/warning_stripes{ @@ -13925,30 +12265,22 @@ dir = 1; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aPb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aPf" = ( -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/cryo_cells) "aPg" = ( /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aPh" = ( /turf/open/floor/almayer, @@ -13961,18 +12293,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aPl" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aPm" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood{ @@ -13983,9 +12310,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/medical) "aPn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14007,9 +12332,7 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "aPp" = ( /obj/structure/bed{ @@ -14026,18 +12349,14 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/dorms) "aPq" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aPs" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -14046,9 +12365,7 @@ /obj/structure/sign/safety/ammunition{ pixel_y = -26 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/platoonarmory) "aPt" = ( /obj/structure/machinery/autodoc_console{ @@ -14073,9 +12390,7 @@ name = "General Listening Channel"; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aPv" = ( /obj/structure/cable/heavyduty{ @@ -14086,15 +12401,11 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonprep) "aPw" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aPx" = ( /obj/effect/decal/warning_stripes{ @@ -14108,18 +12419,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/west, /area/golden_arrow/hangar) "aPy" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 8; name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "aPz" = ( /obj/effect/decal/warning_stripes{ @@ -14135,9 +12442,7 @@ /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aPB" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -14163,9 +12468,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aPD" = ( /obj/effect/decal/warning_stripes{ @@ -14182,9 +12485,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aPE" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/motor_pool) "aPG" = ( /obj/effect/decal/warning_stripes{ @@ -14218,9 +12519,7 @@ dir = 8; layer = 2.97 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aPL" = ( /obj/effect/decal/warning_stripes{ @@ -14233,9 +12532,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "door_warning" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aPM" = ( /obj/effect/decal/cleanable/dirt{ @@ -14243,19 +12540,14 @@ }, /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aPO" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aPQ" = ( /obj/structure/platform_decoration{ @@ -14278,9 +12570,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/motor_pool) "aQa" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ @@ -14300,9 +12590,7 @@ pixel_y = 16 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aQc" = ( /obj/effect/decal/warning_stripes{ @@ -14318,9 +12606,7 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "aQd" = ( -/turf/open/floor/almayer/edge/smooth/endcap_right{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_right/east, /area/golden_arrow/cryo_cells) "aQe" = ( /obj/structure/cable/heavyduty{ @@ -14337,9 +12623,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aQh" = ( /obj/structure/surface/table/almayer, @@ -14367,9 +12651,7 @@ /area/golden_arrow/shared_office) "aQk" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aQl" = ( /obj/effect/decal/cleanable/dirt{ @@ -14387,9 +12669,7 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "aQr" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "aQv" = ( /obj/effect/decal/warning_stripes{ @@ -14400,18 +12680,14 @@ dir = 4; pixel_x = 21 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aQw" = ( /obj/effect/decal/strata_decals/grime/grime4, /obj/effect/decal/strata_decals/grime/grime2{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "aQF" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ @@ -14433,9 +12709,7 @@ foldabletype = null; desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aQJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14458,17 +12732,13 @@ icon_state = "SW-out" }, /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aQQ" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aQR" = ( /obj/structure/bed/chair{ @@ -14521,9 +12791,7 @@ dir = 1; name = "\improper Prep Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "aQW" = ( /turf/open/floor/almayer, @@ -14546,9 +12814,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aRd" = ( /obj/structure/barricade/handrail{ @@ -14577,9 +12843,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aRg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aRk" = ( /obj/effect/decal/cleanable/dirt{ @@ -14589,9 +12853,7 @@ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aRl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14606,9 +12868,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aRo" = ( /obj/structure/surface/table/almayer, @@ -14638,10 +12898,7 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 4 - }, +/turf/open/floor/almayer/blackcorner/east, /area/golden_arrow/vehicle_shuttle/upper) "aRq" = ( /obj/effect/decal/warning_stripes{ @@ -14672,9 +12929,7 @@ layer = 2.52 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aRt" = ( /obj/structure/cable{ @@ -14684,17 +12939,13 @@ pixel_y = 28; desc = "A well worn flag of the USCM recovered from the original USS Golden Arrow. Nobody knows who recovered it, and whoever did has yet to step forth." }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoonprep) "aRv" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aRw" = ( /obj/effect/decal/cleanable/dirt{ @@ -14709,9 +12960,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aRy" = ( /obj/docking_port/stationary/trijent_elevator/shipmap_elevator/two{ @@ -14746,9 +12995,7 @@ can_buckle = 1; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aRC" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -14756,9 +13003,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/platoonprep) "aRD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14770,14 +13015,10 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "aRE" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/cryo_cells) "aRF" = ( /obj/structure/bed/chair{ @@ -14796,9 +13037,7 @@ dir = 1; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aRJ" = ( /turf/open/floor/almayer/empty/golden_arrow, @@ -14815,9 +13054,7 @@ pixel_y = 7; layer = 4.2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aRL" = ( /obj/docking_port/stationary/trijent_elevator/shipmap_elevator/two{ @@ -14873,9 +13110,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aRW" = ( /obj/structure/pipes/vents/scrubber{ @@ -14884,17 +13119,12 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/upper) "aRX" = ( /obj/structure/machinery/door/poddoor/railing, /obj/item/tool/warning_cone, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aSa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -14903,10 +13133,7 @@ /obj/structure/machinery/door/poddoor/railing{ id = "garrow_vehicle_elevator_one" }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 1 - }, +/turf/open/floor/almayer/black/north, /area/golden_arrow/vehicle_shuttle/upper) "aSd" = ( /turf/open/floor/corsat, @@ -14921,9 +13148,7 @@ pixel_x = 12; pixel_y = 22 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aSh" = ( /obj/effect/decal/warning_stripes{ @@ -14933,17 +13158,13 @@ layer = 2.52 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSj" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -14951,18 +13172,14 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aSm" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Cargo Elevator Blast Door"; id = "lowercargolocks" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "aSn" = ( /obj/item/device/radio/intercom{ @@ -14970,10 +13187,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "aSo" = ( /obj/effect/decal/warning_stripes{ @@ -14989,9 +13203,7 @@ layer = 2.52 }, /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSq" = ( /obj/effect/decal/siding{ @@ -15029,9 +13241,7 @@ pixel_y = 15; pixel_x = 3 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "aSv" = ( /obj/effect/decal/cleanable/dirt{ @@ -15042,9 +13252,7 @@ id = "squadarmory"; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aSw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15056,9 +13264,7 @@ /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aSB" = ( /obj/structure/cargo_container/kelland/right{ @@ -15075,9 +13281,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSC" = ( /obj/effect/decal/warning_stripes{ @@ -15096,18 +13300,14 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aSF" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/bed/chair, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aSI" = ( /obj/structure/largecrate/random/case/double{ @@ -15124,9 +13324,7 @@ layer = 3.1; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aSJ" = ( /obj/structure/surface/table/almayer, @@ -15141,9 +13339,7 @@ /obj/item/storage/fancy/cigar/matchbook/brown{ pixel_y = 2 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aSK" = ( /obj/effect/decal/warning_stripes{ @@ -15173,25 +13369,18 @@ /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "aST" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 3.3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aSV" = ( /obj/structure/bed/chair{ @@ -15202,9 +13391,7 @@ pixel_x = 21 }, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/briefing) "aTc" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -15212,9 +13399,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "hangarlockdownwest" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/prep_hallway) "aTe" = ( /obj/effect/decal/warning_stripes{ @@ -15240,9 +13425,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aTi" = ( /obj/structure/machinery/door_control{ @@ -15255,14 +13438,10 @@ icon_state = "cargo_arrow"; color = "#E10600" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/space) "aTj" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "aTl" = ( /obj/structure/machinery/door_control{ @@ -15282,9 +13461,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/cryo_cells) "aTo" = ( /obj/effect/decal/warning_stripes{ @@ -15294,30 +13471,22 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aTp" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aTr" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 10 - }, +/turf/open/floor/almayer/edge/smooth/southwest, /area/golden_arrow/platoonprep) "aTs" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "aTu" = ( /obj/effect/decal/warning_stripes{ @@ -15341,9 +13510,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aTx" = ( /obj/effect/decal/cleanable/dirt{ @@ -15359,14 +13526,10 @@ dir = 8 }, /obj/structure/machinery/door/poddoor/railing, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aTA" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/hangar) "aTC" = ( /obj/structure/pipes/vents/pump{ @@ -15389,9 +13552,7 @@ id = "squadarmory"; pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonarmory) "aTG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15406,18 +13567,14 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/dorms) "aTH" = ( /obj/structure/machinery/firealarm{ dir = 8; pixel_x = -24 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/prep_hallway) "aTM" = ( /obj/docking_port/stationary/trijent_elevator/shipmap_elevator/cargo{ @@ -15440,9 +13597,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aTO" = ( /obj/structure/platform{ @@ -15460,9 +13615,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/east, /area/golden_arrow/cryo_cells) "aTT" = ( /obj/structure/machinery/door/airlock/almayer/secure{ @@ -15479,18 +13632,14 @@ icon_state = "1-2"; pixel_x = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_commander_rooms) "aTV" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door"; dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aTX" = ( /obj/effect/decal/cleanable/dirt{ @@ -15505,10 +13654,7 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) "aUb" = ( -/turf/open/floor/almayer/uscm{ - icon_state = "logo_directional1"; - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional/up_down/southwest, /area/golden_arrow/hangar) "aUc" = ( /obj/structure/bed/chair/comfy{ @@ -15527,9 +13673,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aUe" = ( /obj/structure/bed{ @@ -15558,9 +13702,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/cryo_cells) "aUi" = ( /obj/effect/decal/cleanable/dirt{ @@ -15569,9 +13711,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth/endcap_left{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/endcap_left/west, /area/golden_arrow/cryo_cells) "aUl" = ( /obj/effect/decal/strata_decals/grime/grime1{ @@ -15580,17 +13720,13 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aUn" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "aUo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15599,10 +13735,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aUq" = ( /obj/effect/decal/cleanable/dirt{ @@ -15611,10 +13744,7 @@ /obj/vehicle/powerloader{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aUv" = ( /obj/effect/decal/cleanable/dirt{ @@ -15660,18 +13790,14 @@ dir = 4; layer = 2.97 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "aUB" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aUC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -15685,14 +13811,10 @@ name = "\improper Shared Office"; req_access = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/shared_office) "aUD" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aUE" = ( /turf/open/floor/plating, @@ -15701,9 +13823,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aUG" = ( /obj/structure/machinery/computer/shuttle/elevator_controller/elevator_call{ @@ -15712,12 +13832,10 @@ pixel_y = 35; name = "\improper vehicle elevator one control panel" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aUI" = ( -/obj/structure/machinery/power/fusion_engine{ +/obj/structure/machinery/power/reactor{ name = "\improper S-52 fusion reactor 17" }, /turf/open/floor/almayer, @@ -15768,9 +13886,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/supply) "aUP" = ( /obj/structure/platform, @@ -15789,27 +13905,21 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aUT" = ( /obj/structure/platform{ dir = 4; layer = 2.7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "aUV" = ( /obj/structure/largecrate/supply/floodlights, /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aUX" = ( /obj/structure/machinery/light/small/blue{ @@ -15827,9 +13937,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aVa" = ( /obj/structure/closet/emcloset, @@ -15839,9 +13947,7 @@ pixel_y = 22; pixel_x = -14 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) "aVb" = ( /obj/effect/decal/warning_stripes{ @@ -15850,9 +13956,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aVc" = ( /obj/effect/decal/cleanable/dirt{ @@ -15874,9 +13978,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aVg" = ( /obj/effect/decal/warning_stripes{ @@ -15891,17 +13993,13 @@ /area/golden_arrow/cryo_cells) "aVj" = ( /obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aVk" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/cryo_cells) "aVl" = ( /obj/effect/decal/cleanable/dirt{ @@ -15913,9 +14011,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aVm" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -15924,9 +14020,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "hangarlockdownsouth" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aVp" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ @@ -15956,9 +14050,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aVt" = ( /obj/effect/decal/cleanable/dirt{ @@ -15969,9 +14061,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aVx" = ( /obj/effect/decal/cleanable/dirt{ @@ -15984,18 +14074,13 @@ /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aVy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "aVA" = ( /obj/effect/decal/warning_stripes{ @@ -16005,9 +14090,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/motor_pool) "aVC" = ( /obj/effect/decal/cleanable/dirt{ @@ -16058,16 +14141,12 @@ name = "General Listening Channel"; pixel_y = -29 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, +/obj/structure/machinery/power/apc/almayer/west, /obj/structure/cable{ icon_state = "0-4"; layer = 2.36 }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/dorms) "aVL" = ( /obj/structure/barricade/handrail{ @@ -16082,19 +14161,14 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aVO" = ( /obj/structure/closet/secure_closet/platoon_sergeant, /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) "aVP" = ( /obj/effect/decal/cleanable/dirt{ @@ -16103,9 +14177,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aVQ" = ( /obj/structure/machinery/light/double/blue{ @@ -16131,10 +14203,7 @@ /obj/structure/machinery/gear{ id = "garrow_vehicle_elevator_two" }, -/turf/open/floor/almayer{ - icon_state = "blackcorner"; - dir = 8 - }, +/turf/open/floor/almayer/blackcorner/west, /area/golden_arrow/vehicle_shuttle/two/upper) "aVT" = ( /obj/effect/decal/warning_stripes{ @@ -16148,9 +14217,7 @@ dir = 8; light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aVU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -16188,9 +14255,7 @@ /area/golden_arrow/supply) "aVY" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aVZ" = ( /obj/structure/window/framed/almayer, @@ -16200,9 +14265,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "aWb" = ( -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/cryo_cells) "aWc" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -16228,9 +14291,7 @@ dir = 4; light_color = "#dae2ff" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aWl" = ( /obj/effect/decal/cleanable/dirt{ @@ -16242,9 +14303,7 @@ /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aWo" = ( /obj/effect/decal/warning_stripes{ @@ -16265,9 +14324,7 @@ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aWx" = ( /obj/structure/bed/chair{ @@ -16288,9 +14345,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "aWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -16360,9 +14415,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/hangar) "aWP" = ( /obj/effect/decal/warning_stripes{ @@ -16370,9 +14423,7 @@ layer = 3.3 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aWQ" = ( /obj/structure/platform{ @@ -16394,9 +14445,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "aWU" = ( /obj/effect/decal/warning_stripes{ @@ -16406,9 +14455,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aWV" = ( /obj/effect/decal/warning_stripes{ @@ -16419,9 +14466,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aWW" = ( /obj/effect/decal/warning_stripes{ @@ -16435,9 +14480,7 @@ /obj/structure/pipes/vents/scrubber{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aWX" = ( /turf/open/floor/almayer/empty/golden_arrow/vehicle_two, @@ -16449,9 +14492,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aXa" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -16459,9 +14500,7 @@ name = "\improper Storage Bay Two Blast Door"; id = "cargobay2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "aXc" = ( /obj/structure/barricade/handrail, @@ -16483,9 +14522,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aXg" = ( /obj/effect/decal/warning_stripes{ @@ -16494,9 +14531,7 @@ /obj/structure/machinery/light/double/blue{ light_color = "#dae2ff" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aXh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -16507,9 +14542,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aXj" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16525,9 +14558,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) "aXq" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16535,9 +14566,7 @@ pixel_x = -6; pixel_y = 16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aXr" = ( /obj/effect/decal/cleanable/dirt{ @@ -16549,9 +14578,7 @@ /obj/structure/largecrate/random/barrel/blue{ pixel_x = -10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aXs" = ( /obj/effect/decal/cleanable/dirt{ @@ -16564,9 +14591,7 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "aXt" = ( -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/platoonprep) "aXA" = ( /obj/effect/decal/cleanable/dirt{ @@ -16581,15 +14606,11 @@ icon_state = "1-2"; pixel_x = 2 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoon_commander_rooms) "aXB" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "aXD" = ( /obj/effect/decal/warning_stripes{ @@ -16600,9 +14621,7 @@ layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aXG" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -16612,9 +14631,7 @@ name = "\improper Dorms"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/dorms) "aXH" = ( /obj/structure/machinery/light/double/blue{ @@ -16651,9 +14668,7 @@ icon_state = "0-4"; layer = 2.36 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/platoonarmory) "aXL" = ( /obj/effect/decal/warning_stripes{ @@ -16661,9 +14676,7 @@ pixel_y = 1 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aXM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -16696,18 +14709,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aXR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aXS" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16733,9 +14742,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "aXW" = ( /obj/structure/surface/table/almayer, @@ -16747,7 +14754,7 @@ pixel_y = 12; pixel_x = 7 }, -/obj/item/tool/soap/nanotrasen{ +/obj/item/tool/soap/weyland_yutani{ pixel_y = 6; pixel_x = -7 }, @@ -16760,9 +14767,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/corner/north, /area/golden_arrow/cryo_cells) "aYb" = ( /obj/effect/decal/cleanable/dirt{ @@ -16775,9 +14780,7 @@ /turf/open/floor/almayer/edge/smooth, /area/golden_arrow/cryo_cells) "aYd" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, /area/golden_arrow/motor_pool) "aYf" = ( @@ -16792,9 +14795,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aYj" = ( /obj/structure/platform{ @@ -16806,13 +14807,10 @@ /area/golden_arrow/briefing) "aYk" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/prep_hallway) "aYl" = ( /obj/effect/decal/warning_stripes{ @@ -16820,9 +14818,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aYm" = ( /obj/effect/decal/cleanable/dirt{ @@ -16839,9 +14835,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "aYp" = ( /obj/structure/surface/table/almayer, @@ -16860,18 +14854,13 @@ pixel_y = -8 }, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "aYs" = ( /obj/structure/machinery/door/poddoor/railing{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "aYu" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16890,9 +14879,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/hangar) "aYA" = ( /obj/effect/decal/warning_stripes{ @@ -16908,9 +14895,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/corner/west, /area/golden_arrow/hangar) "aYC" = ( /obj/effect/decal/warning_stripes{ @@ -16925,9 +14910,7 @@ layer = 2.52 }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aYE" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -16942,9 +14925,7 @@ id = "squadarmory"; name = "\improper Gear Lockers" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoonprep) "aYH" = ( /obj/structure/machinery/shower{ @@ -16985,9 +14966,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aYO" = ( /obj/effect/decal/cleanable/dirt{ @@ -16996,9 +14975,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aYP" = ( /obj/effect/decal/warning_stripes{ @@ -17021,9 +14998,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aYR" = ( /obj/effect/decal/warning_stripes{ @@ -17041,9 +15016,7 @@ layer = 3.3; pixel_y = 1 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aYT" = ( /obj/effect/decal/warning_stripes{ @@ -17078,9 +15051,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aYX" = ( /obj/structure/pipes/vents/pump, @@ -17090,9 +15061,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/motor_pool) "aYY" = ( /turf/closed/wall/almayer, @@ -17122,17 +15091,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/hangar) "aZl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/cryo_cells) "aZm" = ( /obj/effect/decal/cleanable/dirt{ @@ -17172,9 +15137,7 @@ pixel_y = 5; pixel_x = 7 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 5 - }, +/turf/open/floor/almayer/edge/smooth/northeast, /area/golden_arrow/platoon_commander_rooms) "aZp" = ( /obj/effect/decal/warning_stripes{ @@ -17182,9 +15145,7 @@ layer = 3.3; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) "aZr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17209,9 +15170,7 @@ icon_state = "door_warning"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/prep_hallway) "aZy" = ( /obj/vehicle/powerloader{ @@ -17220,9 +15179,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "aZB" = ( /obj/effect/decal/warning_stripes{ @@ -17234,9 +15191,7 @@ pixel_y = 1; pixel_x = 1 }, -/turf/open/floor/almayer/edge/smooth/corner{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/corner/east, /area/golden_arrow/hangar) "aZC" = ( /obj/effect/decal/cleanable/dirt{ @@ -17259,10 +15214,7 @@ /obj/item/hardpoint/locomotion/treads{ pixel_y = 17 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/motor_pool) "aZG" = ( /obj/effect/decal/cleanable/dirt{ @@ -17295,17 +15247,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "aZL" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "aZM" = ( /obj/effect/decal/cleanable/dirt{ @@ -17346,23 +15294,17 @@ foldabletype = null; desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise." }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/hangar) "aZR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/prop/dam/crane{ pixel_y = -13 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "aZV" = ( /obj/effect/decal/cleanable/dirt{ @@ -17383,9 +15325,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/platoonprep) "aZY" = ( /obj/effect/decal/cleanable/dirt{ @@ -17401,10 +15341,7 @@ id = "garrow_vehicle_elevator_two"; dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "black"; - dir = 8 - }, +/turf/open/floor/almayer/black/west, /area/golden_arrow/vehicle_shuttle/two/upper) "baN" = ( /turf/open/floor/almayer/aicore, @@ -17416,18 +15353,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "bmu" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door"; id = "motorpoolnorth" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "bnm" = ( /obj/structure/machinery/disposal{ @@ -17445,10 +15378,7 @@ /obj/structure/machinery/telecomms/hub/preset{ pixel_x = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "brA" = ( /obj/structure/sign/safety/six{ @@ -17462,9 +15392,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "bug" = ( /obj/effect/decal/cleanable/dirt{ @@ -17500,9 +15428,7 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "byT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -17517,9 +15443,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "bEj" = ( /obj/structure/sign/safety/bulkhead_door{ @@ -17529,10 +15453,7 @@ pixel_x = 14; pixel_y = -29 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "bMl" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -17540,9 +15461,7 @@ name = "\improper Synthetic Storage Bay"; id = "synthbay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/synthcloset) "bPy" = ( /obj/structure/platform{ @@ -17567,9 +15486,7 @@ /obj/structure/sign/safety/bulkhead_door{ pixel_y = -26 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "bZF" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ @@ -17605,9 +15522,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "cgo" = ( /obj/effect/decal/cleanable/dirt{ @@ -17617,9 +15532,6 @@ dir = 8 }, /obj/structure/surface/rack, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 4 - }, /obj/item/tool/weldingtool/hugetank, /obj/item/tool/wirecutters, /obj/structure/machinery/light/small{ @@ -17633,17 +15545,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "cqk" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "crq" = ( /obj/effect/decal/cleanable/dirt{ @@ -17707,9 +15615,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "cXg" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -17720,14 +15626,10 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "dhC" = ( -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "dij" = ( /obj/structure/machinery/autolathe, @@ -17749,9 +15651,7 @@ icon_state = "door_warning"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "dzT" = ( /obj/item/ammo_box/magazine/m4a3{ @@ -17760,9 +15660,7 @@ /obj/item/ammo_box/magazine/vp70{ pixel_y = 3 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) @@ -17771,9 +15669,7 @@ layer = 2.52 }, /obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, /area/golden_arrow/engineering) "dLT" = ( @@ -17784,9 +15680,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/motor_pool) "dMj" = ( /obj/structure/cable/heavyduty{ @@ -17802,18 +15696,14 @@ req_one_access = null; name = "\improper Supply Launch Bay" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supplydrop) "dVU" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; dir = 1 }, -/turf/open/floor/almayer/edge{ - dir = 1 - }, +/turf/open/floor/almayer/edge/north, /area/golden_arrow/motor_pool) "ecj" = ( /obj/effect/decal/warning_stripes{ @@ -17831,9 +15721,7 @@ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "eqM" = ( /obj/structure/machinery/door_control{ @@ -17849,9 +15737,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "exb" = ( /obj/structure/surface/table/almayer, @@ -17868,9 +15754,7 @@ dir = 4; id = "lowerstorage2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "eEG" = ( /turf/open/floor/almayer/edge/smooth, @@ -17882,12 +15766,8 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, /area/golden_arrow/supplydrop) "eGR" = ( /turf/open/floor/plating/plating_catwalk, @@ -17900,9 +15780,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "eTc" = ( /obj/effect/decal/warning_stripes{ @@ -17911,10 +15789,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supplydrop) "eUL" = ( /obj/effect/decal/warning_stripes{ @@ -17927,9 +15802,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "eZR" = ( /obj/item/storage/box/guncase/flamer/fuel{ @@ -17942,9 +15815,7 @@ pixel_y = 10 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/platoonarmory) "fbw" = ( /turf/closed/wall/almayer/outer, @@ -17967,9 +15838,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "frR" = ( /obj/structure/cable/heavyduty{ @@ -17989,9 +15858,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "fKv" = ( /obj/effect/decal/cleanable/dirt{ @@ -18010,9 +15877,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "fWu" = ( /turf/closed/wall/almayer/outer{ @@ -18037,9 +15902,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "gjM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -18048,9 +15911,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 5 - }, +/turf/open/floor/almayer/edge/northeast, /area/golden_arrow/platoonarmory) "gkN" = ( /obj/structure/machinery/door_control{ @@ -18063,9 +15924,7 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "gqG" = ( /obj/structure/machinery/door_control{ @@ -18078,9 +15937,7 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "gwS" = ( /obj/structure/machinery/recharge_station, @@ -18095,10 +15952,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "gNW" = ( /obj/effect/decal/warning_stripes{ @@ -18110,9 +15964,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supplydrop) "gSr" = ( /obj/structure/machinery/light/double/blue{ @@ -18133,9 +15985,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "hcq" = ( /obj/effect/decal/cleanable/dirt{ @@ -18176,9 +16026,7 @@ /obj/structure/machinery/door/poddoor/railing{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "hwm" = ( /obj/structure/stairs/perspective, @@ -18199,9 +16047,7 @@ /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "hGr" = ( /obj/structure/disposalpipe/segment{ @@ -18248,9 +16094,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "icW" = ( /obj/effect/decal/cleanable/dirt{ @@ -18320,9 +16164,7 @@ /obj/structure/sign/safety/bulkhead_door{ pixel_y = 27 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "jqA" = ( /obj/effect/decal/warning_stripes{ @@ -18332,9 +16174,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "jqJ" = ( /obj/structure/cable/heavyduty{ @@ -18353,9 +16193,7 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/motor_pool) "jJX" = ( /obj/structure/cable/heavyduty{ @@ -18412,9 +16250,7 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "jZp" = ( /obj/effect/decal/warning_stripes{ @@ -18436,10 +16272,7 @@ layer = 2.52 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "kgw" = ( /obj/structure/pipes/vents/pump, @@ -18449,10 +16282,7 @@ /obj/structure/machinery/computer/supply_drop_console/limited/alternate{ density = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supplydrop) "kjn" = ( /obj/structure/machinery/recharge_station, @@ -18467,10 +16297,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "cargo" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "knD" = ( /obj/structure/machinery/light/small{ @@ -18500,9 +16327,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "kGg" = ( /obj/structure/platform{ @@ -18517,10 +16342,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "kKs" = ( /obj/structure/machinery/light/small{ @@ -18528,9 +16350,7 @@ color = "#C02526"; dir = 4 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/motor_pool) "kQO" = ( /turf/closed/wall/almayer/outer, @@ -18542,9 +16362,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "lve" = ( /obj/structure/machinery/door_control{ @@ -18560,17 +16378,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "lAv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "lDt" = ( /obj/structure/machinery/door_control{ @@ -18583,9 +16397,7 @@ /area/space) "lDX" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "lEX" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -18595,9 +16407,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "lGH" = ( /obj/effect/decal/warning_stripes{ @@ -18611,9 +16421,7 @@ dir = 4; id = "lowerstorage5" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "lJP" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -18624,9 +16432,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "lJW" = ( /obj/structure/sign/safety/storage{ @@ -18645,27 +16451,20 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "lPH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supplydrop) "lYO" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door"; id = null }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/motor_pool) "mhB" = ( /obj/structure/sign/safety/five{ @@ -18675,9 +16474,7 @@ icon_state = "cargo_arrow"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "miP" = ( /obj/structure/disposalpipe/segment, @@ -18705,10 +16502,7 @@ icon_state = "cargo_arrow2"; dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "moW" = ( /obj/structure/gun_rack/m41/unloaded, @@ -18740,10 +16534,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "mvk" = ( /obj/effect/decal/cleanable/dirt{ @@ -18772,9 +16563,7 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "mHX" = ( /obj/structure/cable/heavyduty{ @@ -18818,19 +16607,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "nja" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "lowerblastdoor" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "nrp" = ( /obj/structure/cable/heavyduty{ @@ -18853,9 +16637,7 @@ icon_state = "1-2" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "nxj" = ( /obj/structure/pipes/vents/pump{ @@ -18867,18 +16649,14 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "nAo" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "nBF" = ( /obj/effect/decal/cleanable/dirt{ @@ -18888,10 +16666,7 @@ /area/golden_arrow/supplydrop) "nBM" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supplydrop) "nEn" = ( /obj/structure/machinery/disposal{ @@ -18903,9 +16678,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 1 - }, +/turf/open/floor/almayer/edge/smooth/north, /area/golden_arrow/supply) "nEI" = ( /obj/structure/platform{ @@ -18919,10 +16692,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "nIL" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -18930,9 +16700,7 @@ dir = 4; id = "lowerstorage1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "nUJ" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -18940,9 +16708,7 @@ dir = 4; id = "lowerstorage3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "odN" = ( /obj/structure/machinery/door_control{ @@ -18973,9 +16739,7 @@ pixel_x = 14; pixel_y = 27 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "onj" = ( /turf/open/floor/almayer/aicore/glowing, @@ -18994,9 +16758,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "oxf" = ( /obj/structure/cable/heavyduty{ @@ -19012,9 +16774,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "ozf" = ( /obj/structure/machinery/light/small{ @@ -19034,9 +16794,7 @@ name = "General Listening Channel"; pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "oTo" = ( /obj/structure/supply_drop/echo{ @@ -19052,9 +16810,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "pas" = ( /obj/effect/decal/cleanable/dirt{ @@ -19077,9 +16833,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "pcD" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -19090,9 +16844,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "pFO" = ( /obj/effect/decal/warning_stripes{ @@ -19101,27 +16853,21 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "pGL" = ( /obj/structure/ladder{ id = "engisouth"; height = -1 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/engineering) "pIe" = ( /obj/structure/pipes/vents/pump{ dir = 8; pixel_x = -16 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 4 - }, +/turf/open/floor/almayer/edge/smooth/east, /area/golden_arrow/supply) "pLu" = ( /obj/effect/decal/cleanable/dirt{ @@ -19130,9 +16876,7 @@ /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/synthcloset) "pPo" = ( /obj/structure/barricade/handrail, @@ -19152,18 +16896,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "pRt" = ( /obj/effect/decal/warning_stripes{ icon_state = "cargo_arrow"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "pRD" = ( /obj/structure/machinery/door_control{ @@ -19179,9 +16919,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "pSQ" = ( /obj/structure/machinery/light/double/blue{ @@ -19206,9 +16944,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "pXl" = ( /obj/structure/machinery/door_control{ @@ -19241,9 +16977,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "qcH" = ( /obj/structure/machinery/door/poddoor/railing, @@ -19253,9 +16987,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "qds" = ( /obj/effect/decal/warning_stripes{ @@ -19296,9 +17028,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/supply) "qwH" = ( /obj/structure/sign/safety/three{ @@ -19308,9 +17038,7 @@ icon_state = "cargo_arrow"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "qEe" = ( /obj/effect/decal/cleanable/dirt{ @@ -19330,9 +17058,7 @@ /area/golden_arrow/engineering) "qGj" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "qRO" = ( /obj/structure/machinery/light/double/blue{ @@ -19373,18 +17099,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "rnt" = ( /obj/structure/pipes/vents/pump, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/motor_pool) "rqE" = ( /obj/structure/cable/heavyduty{ @@ -19402,9 +17124,7 @@ pixel_y = 27; id = "lowerblastdoor" }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/engineering) "rBy" = ( /obj/structure/sign/safety/one{ @@ -19414,9 +17134,7 @@ icon_state = "cargo_arrow"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "rMy" = ( /obj/structure/disposalpipe/segment{ @@ -19436,9 +17154,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/engineering) "rQj" = ( /obj/effect/decal/warning_stripes{ @@ -19467,9 +17183,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "rZR" = ( /obj/structure/gun_rack/mk221{ @@ -19493,27 +17207,21 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "shd" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "soC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "srv" = ( /turf/open/floor/almayer/empty/golden_arrow/vehicle_one, @@ -19530,14 +17238,10 @@ icon_state = "cargo_arrow"; dir = 4 }, -/turf/open/floor/almayer/edge{ - dir = 4 - }, +/turf/open/floor/almayer/edge/east, /area/golden_arrow/supply) "sse" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer/aicore/glowing, /area/golden_arrow/ai_interface) "svL" = ( @@ -19546,9 +17250,7 @@ dir = 4; id = "lowerstorage4" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "sCG" = ( /obj/structure/bed/chair{ @@ -19565,27 +17267,21 @@ height = -1; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/engineering) "sTP" = ( /obj/effect/decal/warning_stripes{ icon_state = "door_warning"; dir = 8 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/engineering) "tjT" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "tkm" = ( /obj/structure/disposalpipe/segment{ @@ -19611,9 +17307,7 @@ light_color = "#dae2ff"; light_power = 0.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "txJ" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -19621,9 +17315,7 @@ dir = 4; id = "lowerstorage6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "tBe" = ( /obj/structure/platform{ @@ -19633,10 +17325,7 @@ /obj/structure/machinery/telecomms/hub/preset{ pixel_x = -6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "tDA" = ( /obj/effect/decal/warning_stripes{ @@ -19714,9 +17403,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "cargobaylocks" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "uoJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19725,9 +17412,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 10 - }, +/turf/open/floor/almayer/edge/southwest, /area/golden_arrow/platoonarmory) "uEm" = ( /obj/effect/decal/warning_stripes{ @@ -19740,17 +17425,13 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "uPX" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/supply) "uVo" = ( /obj/structure/disposalpipe/segment{ @@ -19779,19 +17460,14 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/supply) "vCJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "vDs" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -19823,10 +17499,7 @@ light_color = "#dae2ff"; light_power = 0.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supplydrop) "vRh" = ( /obj/structure/ship_ammo/heavygun{ @@ -19835,23 +17508,16 @@ /obj/structure/ship_ammo/heavygun{ layer = 3.01 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "vYW" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/supply) "vZm" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "wdE" = ( /obj/effect/decal/cleanable/dirt{ @@ -19860,9 +17526,7 @@ /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "wnq" = ( /obj/structure/sign/safety/hazard{ @@ -19880,9 +17544,7 @@ name = "\improper Hangar Lockdown Blast Door"; id = "cargolocksnorth" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) "wAd" = ( /obj/structure/platform_decoration{ @@ -19901,9 +17563,7 @@ /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "wDL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -19912,9 +17572,7 @@ /obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/turf/open/floor/almayer/edge{ - dir = 9 - }, +/turf/open/floor/almayer/edge/northwest, /area/golden_arrow/platoonarmory) "wPI" = ( /obj/effect/decal/cleanable/dirt{ @@ -19926,16 +17584,11 @@ /obj/structure/ship_ammo/heavygun{ layer = 3.01 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "wRv" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/synthcloset) "wSf" = ( /turf/open/space/basic, @@ -19961,9 +17614,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "xzY" = ( /obj/effect/decal/cleanable/dirt{ @@ -19977,9 +17628,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "xHO" = ( /obj/structure/disposalpipe/segment{ @@ -20007,9 +17656,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer/edge{ - dir = 8 - }, +/turf/open/floor/almayer/edge/west, /area/golden_arrow/supply) "xKb" = ( /obj/structure/machinery/door/poddoor/railing{ @@ -20018,24 +17665,17 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "xOB" = ( /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/edge/smooth{ - dir = 8 - }, +/turf/open/floor/almayer/edge/smooth/west, /area/golden_arrow/supply) "xTf" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/supply) "xXq" = ( /obj/effect/decal/warning_stripes{ @@ -20044,9 +17684,7 @@ /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) "xXR" = ( /obj/effect/decal/warning_stripes{ @@ -20055,9 +17693,7 @@ /obj/effect/decal/cleanable/dirt{ layer = 2.52 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) "ydL" = ( /obj/effect/decal/warning_stripes{ @@ -20075,9 +17711,7 @@ id = "cargolocksnorth" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) (1,1,1) = {" diff --git a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm index 8b6ad0c427..241a0d4f04 100644 --- a/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm +++ b/maps/map_files/golden_arrow_classic/golden_arrow_classic.dmm @@ -1,89 +1,59 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/structure/machinery/light, -/obj/structure/target{ - name = "ready line Ronald" - }, -/obj/item/clothing/suit/storage/marine/heavy/smooth, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"af" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"ag" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -16; + pixel_y = 30 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"ah" = ( +"ae" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/warning_cone{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"al" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"am" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +"af" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"aj" = ( +/obj/structure/surface/rack, +/obj/item/tool/soap, +/obj/item/tool/soap{ + pixel_y = 4; + pixel_x = 6 }, -/area/golden_arrow/dorms) -"an" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/tool/soap{ + pixel_y = -5; + pixel_x = -5 }, -/area/golden_arrow/engineering) -"aq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/obj/item/tool/soap, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"au" = ( +/obj/structure/machinery/light{ + dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"ar" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"av" = ( +/obj/structure/target, +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) "aw" = ( /obj/structure/sign/safety/storage{ pixel_x = 9; @@ -91,25 +61,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ax" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ay" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 12; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "aA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/platform/stair_cut, @@ -119,37 +70,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"aB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"aG" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"aI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, +"aC" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"aF" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 12 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "aJ" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -162,30 +101,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"aN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"aK" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"aM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "aO" = ( /obj/item/prop/colony/game, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"aQ" = ( -/obj/structure/sign/safety/galley{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"aS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) "aT" = ( /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; @@ -203,15 +138,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"aX" = ( -/obj/structure/platform_decoration{ +"aY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"aZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/supply) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ba" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -220,195 +169,172 @@ /obj/item/stool, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"bf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"bg" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) "bh" = ( /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) +"bj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bk" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "bl" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/firingrange) -"bo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"bq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"bp" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bs" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/area/golden_arrow/hangar) -"br" = ( /obj/structure/closet/secure_closet/marine_personal{ pixel_x = 8 }, /obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_x = -8; + job = "Smartgunner" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"bu" = ( +"bt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"bC" = ( /obj/structure/machinery/camera/autoname/golden_arrow, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"bw" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"by" = ( +"bF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/hangar) -"bB" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"bJ" = ( +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/prop/helmetgarb/gunoil, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 }, -/area/golden_arrow/engineering) -"bD" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"bL" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman"; - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/knife, -/obj/item/device/radio/headset/almayer/marine, -/obj/item/clothing/under/marine/medic, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "bO" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"bQ" = ( +"bP" = ( /obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 8 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"bR" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"bU" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"bV" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sink{ + pixel_y = 16 }, -/area/golden_arrow/canteen) -"bS" = ( -/obj/structure/platform/stair_cut/alt, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/mirror{ + pixel_y = 21 }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/briefing) -"bZ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"bY" = ( +/obj/structure/machinery/conveyor{ + dir = 10 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/supply) "ca" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) -"ce" = ( +"cb" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"cf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"ch" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "cj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -422,156 +348,59 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"cl" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, +"cn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"co" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 }, -/area/golden_arrow/supply) -"cp" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"cu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cr" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"cs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W"; + pixel_x = -1 }, -/area/golden_arrow/squad_one) -"ct" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cw" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/engineering) -"cy" = ( -/obj/structure/machinery/power/apc/almayer{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"cv" = ( +/obj/structure/machinery/light{ dir = 1 }, -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, -/obj/item/ammo_magazine/rifle/m41aMK1/heap{ - desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; - current_rounds = 0; - pixel_y = 6; - pixel_x = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"cz" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;40"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "cB" = ( /obj/structure/machinery/camera/autoname/golden_arrow, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cD" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/storage/box/loadout/co2_knife{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"cG" = ( +"cF" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"cH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"cJ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/flare{ + pixel_x = 8; + pixel_y = -1 }, -/area/golden_arrow/medical) -"cL" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/flashlight/flare{ + pixel_x = 5; + pixel_y = 5 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "cR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -585,322 +414,256 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"cS" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Platoon Medic Office"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) "cT" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"dc" = ( +/obj/effect/decal/cleanable/cobweb{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"cV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/shotguncombat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"cZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 }, -/area/golden_arrow/medical) -"dd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"dh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) +"do" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dq" = ( +/obj/structure/platform/stair_cut/alt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/area/golden_arrow/medical) -"de" = ( -/obj/structure/machinery/light{ +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"ds" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/wirecutters{ + pixel_y = -6 }, -/area/golden_arrow/supply) -"dg" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/device/multitool{ + pixel_x = -10 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"di" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"dj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 30 +"dw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"dl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/coffee{ - pixel_x = -19 - }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"dn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"ds" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/obj/item/tool/wirecutters{ - pixel_y = -6 - }, -/obj/item/device/multitool{ - pixel_x = -10 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"dt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/area/golden_arrow/medical) -"dv" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"dx" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Private Briefing Room"; + req_access = list(); + req_one_access_txt = "12;19;32" }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/briefing) -"dA" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"dB" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"dE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"dG" = ( +"dy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"dH" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" +"dz" = ( +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander"; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_state = "cabinetdetective_locked"; + icon_opened = "cabinetdetective_open"; + icon_off = "cabinetdetective_broken"; + has_cryo_gear = 0 }, +/obj/item/clothing/under/marine/officer/boiler, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_commander_rooms) +"dI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "dJ" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"dO" = ( +"dK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dP" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"dQ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, -/area/golden_arrow/hangar) +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "dX" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"ea" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"eh" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = -5 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m41aMK1{ - current_rounds = 0; - pixel_x = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ee" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/firingrange) -"ek" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/golden_arrow/firingrange) -"eo" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/prep_hallway) -"eu" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"eg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; + icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ey" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) +"ei" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"el" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"ep" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 }, -/area/golden_arrow/synthcloset) -"eB" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"eq" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"ev" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/golden_arrow/supply) -"eH" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;39"; + req_one_access = list() }, -/area/golden_arrow/hangar) -"eJ" = ( -/obj/structure/machinery/power/apc/almayer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ez" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/area/golden_arrow/medical) -"eL" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"eE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"eK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"eR" = ( +"eM" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"eP" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares/empty{ + pixel_x = -1; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/device/flashlight/flare{ + pixel_x = 10 }, -/area/golden_arrow/cryo_cells) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "eT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -921,192 +684,157 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"eU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"eY" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) -"fe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, +"eV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ff" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"eW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"eX" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/terminal{ + pixel_x = -20 }, -/area/golden_arrow/hangar) -"fg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional{ - dir = 10 +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"fa" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"fh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = -10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"fl" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "fm" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/engineering) -"fo" = ( +"fu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"fA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"fB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fp" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"fq" = ( -/obj/structure/machinery/conveyor{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"ft" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"fv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"fx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"fy" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"fE" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 }, -/area/golden_arrow/briefing) -"fF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"fH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;39" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;39" }, -/area/golden_arrow/engineering) -"fJ" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"fN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;39"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"fT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"fL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/megaphone, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"fO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"fU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + req_access_txt = "32;40"; + req_one_access = list() }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"fV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "fW" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/machinery/alarm/almayer{ @@ -1114,78 +842,61 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"fX" = ( -/obj/effect/decal/cleanable/dirt, +"ge" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/cryo_cells) -"fY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() +/obj/item/clothing/ears/earmuffs{ + pixel_x = -8; + pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/medical) -"gd" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/walkman{ + pixel_x = 4; + pixel_y = -6 }, -/area/golden_arrow/squad_two) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "gf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"gg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"gi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"gk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = -7; + pixel_y = 9 }, -/area/golden_arrow/cryo_cells) -"gh" = ( -/obj/structure/machinery/landinglight/ds1{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"gl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"go" = ( +/obj/structure/bed/chair/comfy{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"gn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"gp" = ( -/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + pixel_y = 2 }, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "gq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1193,178 +904,87 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"gt" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +"gs" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) +"gw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"gB" = ( +/obj/structure/machinery/telecomms/relay/preset/tower, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"gx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() +"gE" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/supply) +"gJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/golden_arrow/engineering) -"gz" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"gX" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/golden_arrow/briefing) +"hb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"gA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gB" = ( -/obj/structure/machinery/telecomms/relay/preset/tower, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"gD" = ( +"he" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 6 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"gE" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/supply) -"gG" = ( +"hh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"hm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"hq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/medical) -"gH" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"hs" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"gI" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gL" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"gM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"gS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"gT" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"gW" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"ha" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"he" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"hk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ho" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"hq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) "hy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1372,14 +992,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"hA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) "hC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -1396,206 +1008,176 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"hD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"hE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/golden_arrow/firingrange) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "hF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"hG" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"hL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/sign/safety/electronics{ - pixel_x = 31; - pixel_y = 6 +"hH" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 31; +/obj/item/weapon/straight_razor{ + pixel_x = 4; pixel_y = -6 }, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hJ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "hM" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"hN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"hQ" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"hR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"hP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "hS" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"hU" = ( +"hT" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 12; + pixel_y = 29 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 - }, -/obj/item/device/flashlight{ - pixel_x = -4; - pixel_y = 7 + pixel_y = 1 }, -/obj/item/tool/warning_cone, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"hX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"hW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/prop/magazine/book/bladerunner, +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 2; + pixel_y = 18 }, -/area/golden_arrow/medical) -"ie" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"hY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"if" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"hZ" = ( +/obj/structure/machinery/cm_vending/clothing/medic, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"ia" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"ic" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 14; + pixel_y = -28 }, -/area/golden_arrow/canteen) -"il" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"id" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"ip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ig" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"iy" = ( -/obj/structure/pipes/vents/pump{ +"ii" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ij" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"im" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"io" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"iq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"ir" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"is" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/golden_arrow/medical) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"iv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"iw" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "iA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"iC" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -25 - }, -/obj/structure/sign/safety/west{ - pixel_x = 3; - pixel_y = -25 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) "iE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -1606,13 +1188,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"iG" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"iI" = ( +/obj/structure/machinery/autolathe, +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "iK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -1629,132 +1211,75 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"iN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"iQ" = ( -/obj/effect/decal/cleanable/dirt, +"iM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"iO" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"iR" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"iX" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"iU" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"iW" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/area/golden_arrow/hangar) -"jb" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"iY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/obj/structure/prop/almayer/hangar_stencil, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W" }, -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ja" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"jh" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"jm" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"ju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"jc" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/prep_hallway) -"je" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"jf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"jg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"jv" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + has_cryo_gear = 0 }, +/obj/item/clothing/shoes/marine/knife, +/obj/item/device/radio/headset/almayer/marine, +/obj/item/clothing/under/marine/medic, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) -"jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"jw" = ( +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/prep_hallway) -"jl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"js" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; +"jx" = ( +/obj/structure/largecrate/supply/explosives/grenades/less, +/obj/structure/largecrate/supply/motiondetectors{ pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"jt" = ( -/obj/structure/target, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) "jy" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/computer/station_alert{ @@ -1764,6 +1289,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) +"jA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"jB" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "jD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1773,188 +1309,167 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"jG" = ( +"jE" = ( +/obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; + icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"jL" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ + density = 0 }, -/area/golden_arrow/medical) -"jN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"jP" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"jO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"jR" = ( +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"jQ" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) "jS" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"jU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"jV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "\improper Medical Subsection"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jX" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/medical) -"kg" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"jY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"kc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional/southwest, /area/golden_arrow/briefing) -"kh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/turf/open/floor/almayer{ - icon_state = "plate" +"ke" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" }, -/area/golden_arrow/engineering) -"kk" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"ko" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m41aMK1{ + current_rounds = 0; + pixel_x = 5 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"ks" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"km" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"kq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"kr" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 +"kt" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, -/area/golden_arrow/cryo_cells) +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "kw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, +"kx" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"kF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"kH" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 1 - }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ky" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/book/manual/engineering_construction, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"kz" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"kA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Smartgunner" + }, +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Smartgunner" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) +"kG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "kI" = ( /obj/structure/machinery/light{ dir = 8 @@ -1964,6 +1479,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"kJ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"kN" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "kO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -1971,6 +1500,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) +"kQ" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"kR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) "kS" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) @@ -1981,77 +1527,74 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"kV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"kW" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"kX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"lc" = ( -/obj/structure/surface/rack, -/obj/item/tool/soap, -/obj/item/tool/soap{ - pixel_y = 4; - pixel_x = 6 - }, -/obj/item/tool/soap{ - pixel_y = -5; - pixel_x = -5 - }, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"ld" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"lg" = ( +"kY" = ( +/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +/obj/item/clothing/glasses/meson, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"lb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"le" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/synthcloset) +"lf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "lh" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"lk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "lo" = ( /obj/effect/decal/warning_stripes{ @@ -2061,6 +1604,41 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"lp" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"lr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/shotguncombat, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"lw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"lx" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "ly" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, @@ -2070,18 +1648,20 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/supply) -"lB" = ( +"lC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "W" }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"lD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) "lE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2089,46 +1669,91 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"lG" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"lK" = ( +"lH" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +/obj/structure/machinery/recharger{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/area/golden_arrow/engineering) -"lQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"lI" = ( +/obj/structure/closet/crate/supply, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"lL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 7; + pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/reagent_dispensers/ammoniatank, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"lN" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/golden_arrow/squad_two) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "lS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"lV" = ( +"lT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"lU" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;39" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"lW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ma" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "mb" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -2136,23 +1761,6 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) -"mc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"me" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Briefing Room"; - req_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) "mf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -2163,18 +1771,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"mk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"ml" = ( -/obj/structure/ship_ammo/minirocket, -/turf/open/floor/almayer{ - icon_state = "cargo" +"mg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) +"mj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "mm" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; @@ -2182,147 +1788,146 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"mo" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"mq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/golden_arrow/engineering) -"ms" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"mB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mt" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/golden_arrow/briefing) +"mu" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"my" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"mD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;39" +"mz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"mA" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"mC" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"mL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "mR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"mW" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"mY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"mS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"mT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"mZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"nb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad Two Armoury"; - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"nd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"mV" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Platoon Medic Office"; + req_one_access = list(); + req_one_access_txt = "8" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"mX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"na" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ng" = ( +"nc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/obj/structure/machinery/light, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"nm" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 }, -/area/golden_arrow/supply) -"ni" = ( +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"nn" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"np" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"ns" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"nt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/briefing) -"nj" = ( +/obj/structure/target, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Smartgunner" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"nv" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/dorms) -"nm" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"nw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"nx" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "ny" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -2334,209 +1939,157 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"nD" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 +"nz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"nC" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"nE" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"nF" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "nG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"nK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"nL" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"nM" = ( +"nO" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -16; - pixel_y = 30 +/obj/structure/sign/safety/synth_storage{ + pixel_x = -20 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"nP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = 12 }, -/area/golden_arrow/briefing) -"nN" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 }, -/area/golden_arrow/hangar) -"nR" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -7; + pixel_y = 14 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"nT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/cargo_container/wy/right, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"nU" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"nV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) "nY" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"oa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"oe" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"og" = ( +"nZ" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"oh" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/prep_hallway) -"ol" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"oo" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = list() +"of" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"oi" = ( +/obj/structure/pipes/vents/scrubber, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"op" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/prep_hallway) +"oq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"os" = ( +/obj/structure/sink{ + pixel_y = 24 }, -/area/golden_arrow/engineering) -"or" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/mirror{ + pixel_y = 32 }, -/area/golden_arrow/supply) -"ot" = ( -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 }, -/obj/item/ammo_magazine/sentry{ - layer = 3.01 +/obj/structure/pipes/vents/pump, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 }, -/obj/item/defenses/handheld/sentry, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/golden_arrow/squad_two) -"ou" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" +/obj/item/tool/soap, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ow" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ov" = ( -/obj/structure/machinery/light{ - dir = 1 +"ox" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_y = 30 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 }, -/area/golden_arrow/medical) +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Platoon Sergeant" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "oA" = ( /obj/structure/machinery/shower{ dir = 8 @@ -2545,64 +2098,31 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"oC" = ( -/obj/structure/plasticflaps, -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"oH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"oJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"oK" = ( -/obj/structure/machinery/door/poddoor/almayer/open, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"oL" = ( -/obj/structure/platform_decoration{ - dir = 8 +"oE" = ( +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 }, -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/item/ammo_magazine/sentry{ + layer = 3.01 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/defenses/handheld/sentry, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"oF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/area/golden_arrow/briefing) -"oM" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oG" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "oO" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -2610,62 +2130,105 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"oQ" = ( -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = 7; - pixel_y = 6 +"oP" = ( +/obj/structure/machinery/light, +/obj/structure/target{ + name = "ready line Ronald" }, -/obj/item/prop/helmetgarb/gunoil, +/obj/item/clothing/suit/storage/marine/heavy/smooth, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"oV" = ( /obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/ceramic_plate{ + pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/ceramic_plate{ + pixel_y = 21 }, -/area/golden_arrow/squad_one) -"oW" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/trash/ceramic_plate{ + pixel_y = 23 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"oY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/canteen) +"pa" = ( +/obj/structure/ladder{ + height = 1; + id = "req1" }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pc" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"oX" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" +"pe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Sergeants Room"; + req_one_access_txt = "12;32" }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) "pf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/heap/empty, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"pi" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "pl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"pt" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +"pp" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"pr" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"pu" = ( +/obj/item/ammo_magazine/sentry{ + layer = 3.01 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/defenses/handheld/sentry, +/obj/structure/largecrate/supply/ammo{ + name = "sentry crate"; + fill_from_loc = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"pv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, /area/golden_arrow/prep_hallway) "pw" = ( /obj/effect/decal/cleanable/dirt, @@ -2677,64 +2240,52 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"pB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"px" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/area/golden_arrow/squad_two) -"pD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"py" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"pC" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) "pF" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"pG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "pJ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) -"pO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +"pL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "pR" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"pS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) +"pT" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"pV" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "pW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -2742,18 +2293,9 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"pZ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +"pX" = ( +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/prep_hallway) -"qa" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_one) "qc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2761,97 +2303,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"qf" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +"qe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" }, -/area/golden_arrow/cryo_cells) -"qh" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"ql" = ( +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"qi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"qm" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"qu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"qt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/briefing) +/obj/structure/machinery/light, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "qv" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"qw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"qz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "qA" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_sergeant) -"qD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +"qB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/area/golden_arrow/squad_two) +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "qE" = ( /obj/structure/barricade/metal{ dir = 8 @@ -2862,332 +2363,297 @@ }, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"qI" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, +"qF" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"qH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"qQ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/platoon_sergeant) -"qR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"qT" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"qO" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "qU" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"qW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"rb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"rd" = ( -/obj/structure/closet/wardrobe{ - name = "PT uniform" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/head/headband/red, -/obj/item/clothing/under/shorts/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"rf" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"qY" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"rh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"rk" = ( +"qZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"ra" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"rj" = ( /obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"rl" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, -/area/golden_arrow/briefing) -"ro" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rq" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"rr" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +"rm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/golden_arrow/briefing) -"rt" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"rs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"rx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ru" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/area/golden_arrow/canteen) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ry" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"rA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/item/tool/mop{ - pixel_x = -1; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"rC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/golden_arrow/prep_hallway) -"rH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"rI" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 28; - pixel_y = 5; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - pixel_x = 32; - serial_number = 16 +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"rG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 6; - pixel_y = 16 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "rJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"rK" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "rM" = ( /obj/structure/cargo_container/wy/mid, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"rV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional, -/area/golden_arrow/briefing) -"rX" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Squad Sergeant" +"rN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/rad{ + pixel_x = -7; + pixel_y = 2 }, -/obj/structure/closet/secure_closet/marine_personal{ +/obj/item/storage/firstaid/toxin{ pixel_x = 8; - job = "Squad Sergeant" + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/area/golden_arrow/dorms) -"rZ" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"rQ" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/machinery/computer/supply_drop_console/limited/alternate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"rT" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"sa" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional, +/area/golden_arrow/briefing) +"rW" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) +"sb" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"sd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"sc" = ( /obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"se" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/hangar) -"sf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = -10 }, -/turf/open/floor/almayer, -/area/golden_arrow/squad_one) -"sg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" +/obj/item/storage/box/cups{ + pixel_x = 11; + pixel_y = -9 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 }, -/area/golden_arrow/dorms) -"sk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 }, -/obj/structure/bed/chair{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"sf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"sm" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/golden_arrow/briefing) -"so" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"sv" = ( +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"sh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/briefing) -"sy" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"si" = ( +/obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"sl" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = -10 }, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"sp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/hangar) -"sC" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/platoon_sergeant) -"sE" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/area/golden_arrow/engineering) -"sI" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/cryo_cells) -"sN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"sr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/prep_hallway) -"sO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"st" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"su" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"sw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) +"sz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/canteen) +"sA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"sC" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/platoon_sergeant) +"sH" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/briefing) +"sI" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/cryo_cells) +"sJ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "sR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ @@ -3195,99 +2661,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"sS" = ( +"sT" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"sU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) "sV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) -"sX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"sY" = ( -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Commander"; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_state = "cabinetdetective_locked"; - icon_opened = "cabinetdetective_open"; - icon_off = "cabinetdetective_broken"; - has_cryo_gear = 0 - }, -/obj/item/clothing/under/marine/officer/boiler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"tb" = ( -/obj/structure/sign/safety/firingrange{ - pixel_x = -24; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -24; - pixel_y = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/golden_arrow/prep_hallway) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"ti" = ( -/obj/effect/decal/cleanable/dirt, +"tj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "SW-out"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cryo_cells) +"tk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "to" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder{ layer = 2.1 @@ -3297,12 +2720,27 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"tp" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"tq" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) "tr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"tt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "tv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" @@ -3325,131 +2763,133 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"tz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"tB" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"tS" = ( +"tC" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ - req_access = list(); - req_one_access_txt = "8;12;40" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"tT" = ( +"tD" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"tV" = ( -/obj/structure/ship_ammo/rocket/keeper, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"tX" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"tE" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"tN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"ua" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"tP" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"ub" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +"tR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"ug" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" +"tU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 19 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/ceramic_plate{ + pixel_x = -6; + pixel_y = 21 }, -/area/golden_arrow/hangar) -"um" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/item/trash/ceramic_plate{ + pixel_x = -5; + pixel_y = 23 }, -/obj/structure/machinery/faxmachine/uscm/command/capt, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"uo" = ( -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"ue" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/supply) -"up" = ( -/obj/structure/bed/chair/comfy{ +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uh" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"uj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/canteen) -"ur" = ( -/obj/structure/window/reinforced{ +"uk" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; - layer = 3.3; - pixel_y = 4 + name = "ship-grade camera" }, -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"um" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/structure/machinery/faxmachine/uscm/command/capt, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"uq" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "us" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -3457,6 +2897,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"ut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "uu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3465,61 +2909,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"uw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"uA" = ( -/obj/structure/machinery/light, +"uv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"uE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"uB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"uF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" + dir = 10 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"uC" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "uG" = ( /obj/item/tool/warning_cone, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"uH" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 +"uI" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"uK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/area/golden_arrow/dorms) +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"uL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "uO" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -3536,19 +2973,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"uQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) +"uR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "uS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -3556,12 +2984,35 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"uX" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"uT" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"uU" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"va" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) "vb" = ( /obj/structure/surface/table/reinforced/almayer_B{ layer = 2.0; @@ -3569,15 +3020,17 @@ }, /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"vc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"vd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"ve" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_two) "vg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -3589,23 +3042,18 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"vk" = ( +"vl" = ( +/obj/structure/target, /obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"vn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/briefing) -"vo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) "vp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3618,41 +3066,51 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"vt" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vq" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"vr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/platoon_commander_rooms) -"vA" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"vw" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"vx" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access_txt = "12" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -4 }, -/area/golden_arrow/platoon_sergeant) -"vB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "S" }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"vC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 }, -/area/golden_arrow/briefing) -"vF" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) "vG" = ( /obj/structure/machinery/power/terminal{ @@ -3670,254 +3128,125 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"vJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"vI" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"vU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/dorms) +"wb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; pixel_x = -1; pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"vK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"wf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/obj/item/storage/toolbox/electrical, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) -"vL" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"vN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"vP" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"wh" = ( /obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"vS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"vU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/dorms) -"wa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"wc" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) -"wd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"wi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"wk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "wl" = ( /turf/open/floor/almayer, /area/golden_arrow/dorms) +"wm" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "wn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"wp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"wx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"ws" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 }, -/area/golden_arrow/hangar) -"wH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/item/device/walkman{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"wI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" +"wu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/engineering) -"wJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"wv" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/golden_arrow/briefing) +"ww" = ( +/obj/structure/barricade/plasteel{ dir = 8 }, -/obj/item/prop/magazine/book/bladerunner, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"wK" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"wA" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"wO" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"wR" = ( +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"wN" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) "wS" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"wV" = ( +"wU" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_sergeant) -"wX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) "xf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -3926,109 +3255,77 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xm" = ( +"xj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/prep_hallway) -"xo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/engineering{ + dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"xl" = ( +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) +"xs" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xu" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_sergeant) "xx" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"xz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"xy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) -"xB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 6 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"xJ" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"xK" = ( +"xA" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"xM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"xC" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"xQ" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"xD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/galley{ - pixel_x = -19 +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"xG" = ( +/obj/structure/ship_ammo/minirocket/incendiary, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"xH" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"xX" = ( +/obj/structure/machinery/power/apc/almayer/north, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/dorms) -"yc" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"xI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, @@ -4036,112 +3333,164 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"ye" = ( -/turf/closed/wall/almayer, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"yg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, +"xN" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -6; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) -"yj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"yo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"ys" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"xP" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"xS" = ( +/obj/structure/machinery/conveyor{ + dir = 9 }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"xT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/prep_hallway) -"yt" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"xU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"xV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/platoon_sergeant) -"yv" = ( +"xZ" = ( +/obj/structure/closet/secure_closet/platoon_sergeant, /obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/alpha{ dir = 4 }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"ye" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/engineering) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/galley{ + pixel_x = -19 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/golden_arrow/briefing) +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"yq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "yw" = ( /obj/item/toy/deck/uno, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"yx" = ( +"yB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 28; + pixel_y = 5; + serial_number = 12 }, -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + pixel_x = 32; + serial_number = 16 }, -/area/golden_arrow/dorms) -"yy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/storage/fancy/cigarettes/lucky_strikes{ + pixel_x = 6; + pixel_y = 16 }, -/area/golden_arrow/engineering) -"yA" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yD" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;39"; - req_one_access = list() +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"yE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yG" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/area/golden_arrow/squad_one) -"yF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"yH" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/cryo_cells) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "yJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4156,30 +3505,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"yL" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/obj/structure/gun_rack/m41, -/obj/item/ashtray/plastic{ - pixel_y = 14; - pixel_x = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"yM" = ( +"yK" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"yN" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -9; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) +/obj/item/storage/belt/utility/full, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "yO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -4187,18 +3522,45 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"yP" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 }, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"yS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) "yU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/supply) +"yV" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"yX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "yY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -4206,71 +3568,88 @@ /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"yZ" = ( -/obj/structure/machinery/light{ - dir = 1 +"zb" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"zd" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/loadout/co2_knife{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/golden_arrow/squad_one) +"ze" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/area/golden_arrow/hangar) -"za" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"zk" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); - req_one_access_txt = "8;12;39" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"zl" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"zn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"zf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"zi" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 }, -/area/golden_arrow/cryo_cells) -"zt" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"zj" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"zv" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"zm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -9; + pixel_y = -3 }, -/area/golden_arrow/firingrange) +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zs" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"zu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "zy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -4281,12 +3660,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"zD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +"zC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "zG" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -4316,174 +3696,172 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 7; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"zL" = ( -/obj/effect/decal/cleanable/dirt, +"zR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"zM" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"zP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"zV" = ( +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"zS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"zU" = ( +/obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/briefing) +"zX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "zY" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"zZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "Ad" = ( /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Ap" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, +"Ah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"As" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) }, -/area/golden_arrow/briefing) -"Aw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/synthcloset) +"Ai" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 }, -/area/golden_arrow/canteen) -"Ax" = ( -/obj/structure/machinery/shower{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ + req_access = list(); + req_one_access_txt = "8;12;40" }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Ay" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Al" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 }, -/area/golden_arrow/prep_hallway) -"AA" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"AC" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +/obj/item/storage/fancy/cigar{ + pixel_x = 6 }, -/obj/item/stack/catwalk{ - pixel_x = 12; - pixel_y = -9 +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Am" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/area/golden_arrow/engineering) -"AG" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"Ap" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ar" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"AH" = ( -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"AK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"Ax" = ( +/obj/structure/machinery/shower{ + dir = 4 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Az" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 3 }, -/area/golden_arrow/hangar) -"AL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/trash/ceramic_plate{ + pixel_x = 18; + pixel_y = 5 }, -/area/golden_arrow/hangar) -"AO" = ( -/obj/structure/machinery/autolathe, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"AB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"AH" = ( +/turf/open/floor/almayer, /area/golden_arrow/engineering) +"AI" = ( +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "AP" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ layer = 2.1 @@ -4502,30 +3880,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AY" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Bd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"AW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/engineering) -"Bf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Bb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/briefing) "Bg" = ( /obj/structure/bed/chair{ dir = 4 @@ -4533,78 +3901,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee/simple, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Bi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) "Bj" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, /area/golden_arrow/medical) +"Bl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "Bo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Bq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Br" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Bt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Bu" = ( -/obj/item/ammo_magazine/sentry{ - layer = 3.01 - }, -/obj/item/defenses/handheld/sentry, -/obj/structure/largecrate/supply/ammo{ - name = "sentry crate"; - fill_from_loc = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Bv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "Damage Control Locker"; - req_one_access = list() +"Bp" = ( +/obj/structure/machinery/power/terminal{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/stack/catwalk{ + pixel_x = 12; + pixel_y = -9 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "Bw" = ( /obj/effect/decal/cleanable/dirt, @@ -4616,90 +3944,57 @@ "Bz" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"BA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -3 +"BB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/item/storage/toolbox{ - pixel_y = -5 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"BC" = ( -/obj/structure/target, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"BD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"BK" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + pixel_y = 6 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_sergeant) -"BM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"BH" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"BO" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/cargo_container/wy/right, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"BJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"BL" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "BP" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"BW" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "BY" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -4711,7 +4006,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Cb" = ( +"Ca" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Cg" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Ci" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Cj" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze{ pixel_x = 7; @@ -4737,45 +4055,8 @@ pixel_x = -3; pixel_y = 14 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"Ce" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Cf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Cg" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Cl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) "Cn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -4785,160 +4066,53 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Co" = ( -/obj/structure/barricade/plasteel{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) "Cr" = ( /turf/open/space/basic, /area/space) -"Cs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Cu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Sergeants Room"; - req_one_access_txt = "12;32" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_sergeant) -"Cv" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Cw" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"Cy" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "CA" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"CC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 14; - pixel_x = -5 - }, -/obj/item/explosive/grenade/smokebomb{ - pixel_y = 11; - pixel_x = -9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"CE" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"CH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/squad_two) -"CF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"CQ" = ( +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/bedsheet/brown{ + layer = 3.4 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"CR" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"CJ" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - name = "Weyland-Yutani premium shampoo"; - desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"CK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"CN" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"CP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ +"CU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"CS" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/computer/supply_drop_console/limited/alternate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"CX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"CY" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/golden_arrow/briefing) "CZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ @@ -4957,73 +4131,70 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Df" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares/empty{ - pixel_x = -1; - pixel_y = 16 +"Dd" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/device/flashlight/flare{ - pixel_x = 10 +/obj/structure/bed{ + can_buckle = 0 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/golden_arrow/squad_two) -"Dg" = ( +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Dj" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/golden_arrow/hangar) +"Dm" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/dorms) +"Do" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Di" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/spent_slug{ - pixel_y = -9; - pixel_x = 8; - name = "spent snailshot"; - layer = 2.7 - }, -/obj/item/storage/box/guncase/shotguncombat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Dl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 22 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Dp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"Dw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"Dq" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Dx" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5044,59 +4215,80 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"DB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Dy" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/west{ + pixel_x = 3; + pixel_y = -25 }, -/area/golden_arrow/platoon_commander_rooms) +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "DC" = ( /turf/open/floor/almayer, /area/golden_arrow/supply) -"DE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"DF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"DJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"DN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/machinery/power/apc/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "DR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/golden_arrow/squad_two) +"DS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"DT" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"DW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "DX" = ( /obj/structure/toilet{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"DY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) "Ea" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) @@ -5104,30 +4296,53 @@ /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"Ei" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/flamer/special, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_y = 18 +"Ec" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/squad_one) -"Eo" = ( -/obj/structure/platform_decoration, -/obj/structure/platform_decoration{ - dir = 8 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Ee" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"El" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/aesthetic, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Em" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"En" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Ep" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -5141,12 +4356,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) +"Eq" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "Er" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Es" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "Eu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -5155,6 +4380,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"Ev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Ey" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5162,71 +4402,52 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"EA" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"EB" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"ED" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"EF" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"Ez" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"EE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/dorms) -"EI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"EH" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) -"EJ" = ( +"EL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"EK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/sign/safety/electronics{ + pixel_x = 31; + pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/structure/sign/safety/high_voltage{ + pixel_x = 31; + pixel_y = -6 }, -/area/golden_arrow/cryo_cells) +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "EN" = ( /obj/structure/barricade/metal{ dir = 8 @@ -5234,91 +4455,75 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"EO" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"EQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 +"EP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ER" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"EW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"EX" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"EZ" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"EY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Fa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"Fb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 7; + pixel_y = -2 }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" +/obj/item/storage/box/cups{ + pixel_x = -5; + pixel_y = -10 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"Fe" = ( -/obj/effect/decal/cleanable/dirt, +"Fc" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "Ff" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -5329,18 +4534,15 @@ "Fg" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Fi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"Fh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Fj" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5353,29 +4555,81 @@ /obj/item/facepaint/black, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"Fk" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 6; + pixel_y = -29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = -7; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Fl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"Fu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) -"Fw" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fn" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = -24; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -24; + pixel_y = -7 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Fq" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ - dir = 1 + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Fs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Ft" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Fu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"Fx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "Fy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -5385,42 +4639,44 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"FA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"FB" = ( +/obj/structure/machinery/door/poddoor/almayer/open, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"FD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "FE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) +"FG" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "FI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"FN" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, +"FO" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "FP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5428,61 +4684,40 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"FQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "FR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FS" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"FX" = ( +/obj/structure/ship_ammo/minirocket, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"FY" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/prep_hallway) -"FT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ga" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"FV" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"FW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Gf" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Gb" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/prop{ dir = 8; @@ -5512,52 +4747,52 @@ pixel_x = 10; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"Gg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Gi" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 14; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Gk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +"Gd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Ge" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Gj" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Briefing Room"; + req_access = list() }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "Gl" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/prep_hallway) -"Gq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +"Gn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee/simple, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Go" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) +"Gp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Gr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Gs" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -5585,83 +4820,54 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Gz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"GD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"GE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 22 }, -/area/golden_arrow/canteen) -"GA" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"GF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) "GG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"GK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/cryo_cells) -"GL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"GN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"GO" = ( +"GI" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"GJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/synth_storage{ - pixel_x = -20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = -1; + pixel_y = -10 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) +"GM" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) "GQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5670,187 +4876,135 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"GU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"GV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Hc" = ( +"GR" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - dir = 4; - name = "Lower Deck Waste Tank Control" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"Hd" = ( -/obj/structure/sign/banners/united_americas_flag{ - pixel_y = 30 +"GT" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"GX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8; - job = "Platoon Sergeant" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ha" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"Hi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() }, -/area/golden_arrow/dorms) -"Hh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) -"Hj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_y = 29 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Hk" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) "Hm" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Hu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"Hv" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"Hn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Ho" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/device/flashlight{ + pixel_x = -4; + pixel_y = 7 }, -/area/golden_arrow/cryo_cells) -"Hw" = ( +/obj/item/tool/warning_cone, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - req_one_access_txt = "8;12;40" + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Hr" = ( +/obj/structure/sign/poster{ + pixel_y = -8; + pixel_x = -25; + icon_state = "poster15"; + name = "pulse rifle pinup"; + desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"Hx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/aesthetic, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"Hs" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8; + job = "Squad Sergeant" }, -/area/golden_arrow/engineering) -"HG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8; + job = "Squad Sergeant" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Ht" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"HA" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"HK" = ( +/turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) -"HH" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"HM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HK" = ( -/turf/closed/wall/almayer, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"HQ" = ( -/obj/structure/machinery/light, +"HO" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/hangar) -"HS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "HT" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -5858,29 +5012,14 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"HV" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"HX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, +"HZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Ib" = ( /obj/structure/barricade/metal{ dir = 8 @@ -5893,59 +5032,90 @@ }, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"Ii" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" +"Ie" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"Is" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"It" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"Iw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Iy" = ( -/obj/structure/computer3frame, -/turf/open/floor/almayer{ - icon_state = "plate" +"If" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Il" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/engineering) -"IC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ID" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Im" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ip" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ir" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1, +/obj/item/ammo_magazine/rifle/m41aMK1/heap{ + desc = "A long rectangular box of rounds that is only compatible with the older M41A MK1. Holds up to 99 rounds. This one contained High-Explosive Armor-Piercing bullets. It also has some... notches on the side..?"; + current_rounds = 0; + pixel_y = 6; + pixel_x = 13 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Iw" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"Ix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"IA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/structure/closet/secure_closet/smartgunner{ + req_access_txt = "14;40"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) "IE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -5958,87 +5128,113 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_two) +"IF" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) "IH" = ( /obj/structure/barricade/metal{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/firingrange) -"IP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"IR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 +"II" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 7 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -4; + pixel_y = 32; + serial_number = 11 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"IJ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) -"IS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/camera/autoname/golden_arrow{ +"IK" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"IM" = ( +/obj/structure/window/reinforced{ dir = 4; - name = "ship-grade camera" + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/golden_arrow/engineering) -"IT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/bed{ + can_buckle = 0 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/golden_arrow/hangar) -"IU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 }, -/area/golden_arrow/prep_hallway) -"IW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"IX" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"IN" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"IO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/briefing) -"IZ" = ( +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"IP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"IW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W" }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) "Jc" = ( /obj/effect/decal/warning_stripes{ @@ -6047,33 +5243,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Jg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"Jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" +"Jf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 }, -/area/golden_arrow/firingrange) -"Jk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Jm" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Jn" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -6089,131 +5273,106 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Jp" = ( -/obj/structure/machinery/conveyor{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"Jo" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Jr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/largecrate, +/turf/open/floor/almayer, /area/golden_arrow/supply) -"Jq" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ +"Ju" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"Jx" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"JA" = ( +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Jv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"JB" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "JD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"JI" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"JJ" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) "JL" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"JP" = ( +"JM" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"JT" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 +"JP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer, /area/golden_arrow/hangar) -"JU" = ( -/obj/structure/machinery/cm_vending/clothing/medic, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"JQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/golden_arrow/medical) -"JZ" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"JV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Kb" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/firingrange) -"Kd" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JX" = ( +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/golden_arrow/briefing) +"JY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"Ki" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/golden_arrow/canteen) -"Ke" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Ki" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, /obj/structure/window/reinforced{ dir = 8; @@ -6221,197 +5380,140 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Kl" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Kp" = ( -/obj/structure/largecrate/supply/motiondetectors, -/obj/structure/largecrate/supply/explosives/grenades/less{ - pixel_y = 10; - pixel_x = 3 +"Kj" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Kn" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/squad_one) -"Ku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_one_access = list(); +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Ko" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad Two Armoury"; req_one_access_txt = "8;12;40" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/squad_two) +"Ks" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Kv" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"Kx" = ( +"Kw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"KC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"KF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"KD" = ( +"KG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = -7; + pixel_y = 6 }, -/area/golden_arrow/prep_hallway) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "KH" = ( /obj/vehicle/powerloader, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"KL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"KM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) +"KJ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"KN" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) "KO" = ( /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"KQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"KU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"KT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/conference_room{ + pixel_y = 29 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/prep_hallway) -"KY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"KW" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"KX" = ( +/obj/structure/machinery/light{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/briefing) -"KZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) "La" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Ld" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 - }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8; - job = "Smartgunner" +"Lb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "Lf" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, @@ -6421,31 +5523,17 @@ /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Lh" = ( -/obj/structure/sign/poster{ - pixel_y = -8; - pixel_x = -25; - icon_state = "poster15"; - name = "pulse rifle pinup"; - desc = "The Armat Battlefield Systems Model 41 Derivative 'A' Pulse Rifle Mark One. The only pinup you'll ever need." - }, +"Lj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Ll" = ( -/obj/structure/ship_ammo/minirocket/incendiary, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 }, -/area/golden_arrow/hangar) -"Ln" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "Lo" = ( /obj/structure/machinery/light{ dir = 4 @@ -6453,29 +5541,54 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ls" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ - density = 0 +"Lq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Lr" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/canteen) +"Lt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = -19 }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_sergeant) -"Lx" = ( -/obj/structure/machinery/landinglight/ds1{ +"Lu" = ( +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/area/golden_arrow/hangar) -"LC" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Lv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"LA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) +"LD" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) "LE" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -6483,78 +5596,65 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"LF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"LI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/squad_one) -"LH" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"LJ" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, -/area/golden_arrow/briefing) -"LK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "LL" = ( /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/start/marine/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"LQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"LM" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"LN" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/area/golden_arrow/cryo_cells) -"LS" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"LP" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"LW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;39" }, -/area/golden_arrow/canteen) -"LT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/status_display{ - pixel_x = -32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"LX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "LZ" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"Ma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "Mc" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -6571,168 +5671,128 @@ "Me" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_two) -"Mf" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"Mi" = ( +"Mq" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Mj" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "sterile_green" + dir = 1 }, -/area/golden_arrow/medical) -"Ml" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/rad{ - pixel_x = -7; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Mt" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Mw" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; pixel_y = 2 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Mn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"Mu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Mx" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/gun_rack/m41, +/obj/item/ashtray/plastic{ + pixel_y = 14; + pixel_x = 8 }, -/area/golden_arrow/engineering) -"Mz" = ( -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/firingrange) -"MB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "S" }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"MH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/area/golden_arrow/platoon_commander_rooms) -"MC" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "MI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"MJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) "MK" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"ML" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) "MN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"MW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"MO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"MQ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/golden_arrow/firingrange) +"MT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + dir = 1; + req_one_access = list() }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) -"MZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/dorms) -"Na" = ( -/obj/structure/machinery/light{ - dir = 1 +"MU" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"MV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"Ne" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +"MX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access_txt = "12" }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) "Nf" = ( /turf/closed/wall/almayer/white, /area/golden_arrow/medical) @@ -6742,12 +5802,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) +"Nh" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Nk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Nl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "No" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -6770,170 +5842,86 @@ /obj/effect/spawner/prop_gun/anti_tank, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Nx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Nv" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Ny" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/engineering) -"Nz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"NF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"NG" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/golden_arrow/briefing) +"NP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"NS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"NB" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -3 +"Of" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/firingrange) +"Oh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"ND" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29; - layer = 3 - }, -/obj/structure/gun_rack/m41, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_y = 22; - pixel_x = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"NE" = ( -/obj/structure/machinery/light{ +"Oi" = ( +/obj/structure/machinery/conveyor{ dir = 8 }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"NI" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"NO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"NT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"NU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - dir = 1; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"NV" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 6; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"NZ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"Ob" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Oc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"Od" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/briefing) -"Of" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/firingrange) -"Oj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "Ol" = ( /obj/item/reagent_container/spray/cleaner{ pixel_x = 5; @@ -6942,607 +5930,136 @@ /obj/structure/janitorialcart, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Op" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/prep_hallway) -"Os" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Oy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) -"Oz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"OA" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"OC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"OG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"OH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"OI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"OJ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ON" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"OU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_two) -"OX" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, -/area/golden_arrow/briefing) -"OY" = ( -/obj/structure/ladder{ - height = 2; - id = "req1" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"OZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"Pc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 16; - pixel_y = -10 - }, -/obj/item/storage/box/cups{ - pixel_x = 11; - pixel_y = -9 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"Pe" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Pf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/cryo_cells) -"Ph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Pl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Pm" = ( -/obj/structure/largecrate/supply/explosives/grenades/less, -/obj/structure/largecrate/supply/motiondetectors{ - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"Pp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Squad One Armoury"; - req_one_access_txt = "8;12;39" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"Pr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"Ps" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"Pt" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Px" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/squad_two) -"Py" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"PA" = ( -/obj/structure/closet/crate/supply, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"PF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"PG" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_two) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/firingrange) -"PL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"PQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/platoon_sergeant) -"PS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"PW" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Private Briefing Room"; - req_access = list(); - req_one_access_txt = "12;19;32" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/briefing) -"PY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"PZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Qc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch" - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Qe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_sergeant) -"Qi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/conference_room{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Qk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"Ql" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"Qt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_x = -6; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Qu" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_sergeant) -"Qw" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/squad_two) -"Qx" = ( -/obj/structure/sink{ +"Om" = ( +/obj/structure/window/reinforced{ dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Qz" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/engineering) -"QD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"QE" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"QI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/cigarettes/lucky_strikes{ - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"QJ" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"QL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"QM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + pixel_x = -2; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed{ + can_buckle = 0 }, -/area/golden_arrow/canteen) -"QN" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/golden_arrow/hangar) -"QO" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"QP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/area/golden_arrow/supply) -"QQ" = ( -/obj/structure/toilet{ - dir = 8 +/obj/item/bedsheet/brown{ + pixel_y = 13 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Op" = ( /turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoon_commander_rooms) -"QS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/area/golden_arrow/prep_hallway) +"Ox" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Oz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"OB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"OD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"OK" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) +"OM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_y = 18 }, -/area/golden_arrow/platoon_sergeant) -"QT" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"OP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/flamer/special, +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 14; + pixel_x = -5 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/explosive/grenade/smokebomb{ + pixel_y = 11; + pixel_x = -9 }, -/area/golden_arrow/cryo_cells) -"QW" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"OS" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ pixel_x = 6; - pixel_y = 8; - serial_number = 12 + pixel_y = 19 }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"OV" = ( /obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 7; + pixel_y = 29 }, -/area/golden_arrow/platoon_sergeant) -"Ra" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"OW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"OZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 6 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/cryo_cells) -"Rc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"Pa" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Pg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -7552,298 +6069,441 @@ dir = 1; name = "\improper Supply Office" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"Rd" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/supply) -"Rg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Rh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"Pj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Pq" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Pu" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 }, -/area/golden_arrow/platoon_sergeant) -"Ri" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/firingrange) -"Rl" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/squad_two) +"PB" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"PE" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + dir = 4; + name = "Lower Deck Waste Tank Control" }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 7; - pixel_y = -2 +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"PN" = ( +/obj/structure/platform_decoration, +/obj/structure/platform_decoration{ + dir = 8 }, /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"PO" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29; + layer = 3 }, -/area/golden_arrow/canteen) -"Rr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Rt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/gun_rack/m41, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_y = 22; + pixel_x = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"PU" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Rv" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/canteen) -"Rx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"PZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/golden_arrow/canteen) -"Ry" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; pixel_y = 7 }, -/obj/structure/machinery/camera/autoname/golden_arrow{ +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Qb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Qc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ dir = 8; - name = "ship-grade camera" + layer = 3.2; + pixel_x = -17; + pixel_y = 16 }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -4; - pixel_y = 32; - serial_number = 11 +/obj/structure/phone_base/rotary/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/hud/health{ + pixel_x = -8; + pixel_y = 12 }, -/area/golden_arrow/squad_one) -"RD" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"RK" = ( -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Qe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_sergeant) +"Qj" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Qk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"RM" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"Qm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"Qn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Qp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"RN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ +"Qs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/storage/box/cups{ pixel_x = -5; - pixel_y = 10 + pixel_y = -10 }, -/obj/item/stack/sheet/glass{ - amount = 50 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Qu" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_sergeant) +"Qw" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/squad_two) +"Qx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/mirror{ + pixel_x = 28 }, -/area/golden_arrow/engineering) -"RO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"Qy" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - req_access_txt = "32;40"; - req_one_access = list() +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"QB" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/squad_two) -"RP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"RT" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer{ - icon_state = "plate" +"QH" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"RW" = ( +"QK" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "SW-out"; + pixel_x = -1 }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"QO" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, -/area/golden_arrow/supply) -"RY" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/area/golden_arrow/platoon_commander_rooms) +"QQ" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoon_commander_rooms) +"QU" = ( +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/prep_hallway) -"Sc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"QW" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 }, -/area/golden_arrow/cryo_cells) -"Sd" = ( /obj/structure/sign/poster{ desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; icon_state = "poster16"; - layer = 3.3; name = "'Miss July' Pinup"; - pixel_y = 29; serial_number = 16 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rd" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"Re" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Rj" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = list() }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Ro" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 }, -/area/golden_arrow/dorms) -"Si" = ( -/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Rr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Rs" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + name = "Weyland-Yutani premium shampoo"; + desc = "Can also be used as body wash, shaving foam, deodorant, bug repellant, lighter fluid and gatorade." }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) -"Sj" = ( +"Rv" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) +"Rw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Sl" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" }, -/area/golden_arrow/canteen) -"Sn" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"RC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RD" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/cryo_cells) +"RF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"RH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 2; + name = "\improper Firing Range" }, -/area/golden_arrow/engineering) -"So" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/firingrange) +"RP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"RQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Sq" = ( +"RS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Su" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 7; - pixel_y = -3 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) +"RV" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"RW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/box/cups{ - pixel_x = -5; - pixel_y = -10 +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"RZ" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Sg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Sr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) +"Ss" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/briefing) "Sw" = ( /obj/structure/machinery/shower{ dir = 1 @@ -7858,16 +6518,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Sy" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) "SB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -7887,16 +6537,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_sergeant) -"SE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/target, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/golden_arrow/firingrange) +"SG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "SI" = ( /obj/structure/bed/chair{ dir = 4 @@ -7918,29 +6563,13 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"SR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"ST" = ( +"SS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/flare{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/device/flashlight/flare{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_one_access = list(); + req_one_access_txt = "8;12;40" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) "SV" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7954,13 +6583,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"SY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) "Tb" = ( /obj/item/toy/deck, /obj/structure/surface/table/almayer, @@ -7980,126 +6602,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Tg" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Tj" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"Tk" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"To" = ( +"Tf" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Th" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/cryo_cells) -"Tr" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Tu" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -19; - pixel_y = 6 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -31; - pixel_y = 6 + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ti" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Tq" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Tx" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Tt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "Ty" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) @@ -8138,28 +6670,17 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"TI" = ( +"TF" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/golden_arrow/briefing) +"TG" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"TK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) "TN" = ( /turf/closed/wall/almayer/reinforced, @@ -8168,129 +6689,158 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"TP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"TS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 9 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "TT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"TW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/synthcloset) -"TY" = ( -/obj/structure/barricade/handrail{ +"TU" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ dir = 1; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, -/area/golden_arrow/canteen) -"Ub" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"TX" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/terminal{ + pixel_x = -17 }, -/area/golden_arrow/canteen) -"Uf" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/engineering) +"Uc" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Ue" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; + icon_state = "NW-out"; pixel_x = -1; - pixel_y = 1 + pixel_y = 2 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ug" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Uh" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) "Ui" = ( /turf/closed/wall/almayer, /area/golden_arrow/canteen) -"Uj" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"Uk" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"Un" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Uo" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Up" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uq" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/area/golden_arrow/platoon_sergeant) -"Uk" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 7 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Us" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"Uw" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"Um" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Uz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"UA" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/area/golden_arrow/synthcloset) -"Uv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"UB" = ( +/obj/structure/ladder{ + height = 2; + id = "req1" }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "UI" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"UK" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 - }, +"UM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_sergeant) -"UN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "UO" = ( /obj/structure/bed/chair{ dir = 4 @@ -8300,26 +6850,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"UT" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"UP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "Damage Control Locker"; + req_one_access = list() }, -/area/golden_arrow/prep_hallway) -"UX" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"US" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"UY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "Va" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8327,172 +6878,173 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Vc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ve" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 +"Vg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Vh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Vi" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vk" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Vj" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Vp" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/dorms) -"Vq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/plating/northeast, /area/golden_arrow/engineering) -"Vr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/briefing) -"Vu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Supply Bay" +"Vl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/supply) -"Vv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"Vm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Vp" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) +"Vs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"Vz" = ( +"Vt" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"VG" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"Vw" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/area/golden_arrow/firingrange) -"VJ" = ( -/obj/structure/ladder{ - height = 1; - id = "req1" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Vx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Vy" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"VB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"VC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Squad One Armoury"; + req_one_access_txt = "8;12;39" }, -/area/golden_arrow/supply) -"VK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/smartgunner{ - req_access_txt = "14;39"; - req_one_access = list() +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) +"VM" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"VN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"VP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/supply) +"VU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/squad_one) -"VL" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, +"VV" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/platoon_sergeant) -"VQ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/platoon_sergeant) -"VT" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"VY" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -3 }, -/area/golden_arrow/supply) -"VX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/toolbox{ + pixel_y = -5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"Wd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Wf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -8501,29 +7053,14 @@ dir = 1; icon_state = "lattice-simple"; pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer, -/area/golden_arrow/dorms) -"Wg" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) -"Wj" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" + pixel_y = -15 }, +/turf/open/floor/almayer, /area/golden_arrow/dorms) +"Wi" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "Wl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -8539,26 +7076,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Wo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "Wp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -8569,68 +7086,83 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ws" = ( -/obj/item/tool/warning_cone, +"Wx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Wu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/firingrange) "Wy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"WA" = ( +"WC" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"WD" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"WF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"WH" = ( +/obj/structure/bed/chair/office/light{ dir = 1 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"WI" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"WJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/largecrate, -/turf/open/floor/almayer, -/area/golden_arrow/supply) -"WG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"WL" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, -/area/golden_arrow/supply) -"WK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -8 }, -/area/golden_arrow/squad_one) -"WP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"WM" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_x = 3; + pixel_y = 10 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"WT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"WW" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "WY" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8645,51 +7177,81 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Xa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"WZ" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 }, -/area/golden_arrow/cryo_cells) -"Xb" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/book/manual/engineering_construction, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/bed/chair{ + dir = 4 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Xc" = ( /obj/structure/machinery/shower{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Xd" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Xj" = ( -/obj/structure/pipes/vents/pump, +"Xe" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/machinery/status_display{ + pixel_x = -32 }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Xf" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Xh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/sign/safety/terminal{ - pixel_x = -20 +/obj/structure/machinery/door/airlock/almayer/generic{ + req_one_access_txt = "8;12;40" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_two) +"Xi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Xk" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Xn" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Xq" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/supply) "Xs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8697,58 +7259,47 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Xu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 2; - name = "\improper Firing Range" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/firingrange) -"Xv" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" +"Xx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/golden_arrow/platoon_commander_rooms) -"Xw" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Xz" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"XC" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"XD" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/canteen) -"Xy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"XG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/hangar) -"Xz" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "XI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -8758,95 +7309,68 @@ "XJ" = ( /turf/closed/wall/almayer, /area/golden_arrow/briefing) -"XL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"XT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 }, -/area/golden_arrow/cryo_cells) -"XN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/item/stack/sheet/glass{ + amount = 50 }, -/area/golden_arrow/engineering) -"XP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 7; - pixel_y = -28 +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 }, -/obj/structure/reagent_dispensers/ammoniatank, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) -"XQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"XR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/ceramic_plate{ - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 +"XU" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 23 +/obj/structure/barricade/handrail{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "XV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"Ya" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"XW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/area/golden_arrow/squad_two) -"Yc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_x = 3; - pixel_y = 10 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"XX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"XY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"XZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "Yd" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8855,20 +7379,6 @@ /obj/item/folder/black_random, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_sergeant) -"Ye" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) "Yh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8879,31 +7389,9 @@ "Yj" = ( /turf/closed/wall/almayer, /area/golden_arrow/hangar) -"Yk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/firingrange) -"Yl" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"Ym" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +"Yn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, /area/golden_arrow/hangar) "Yp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8911,25 +7399,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_two) -"Ys" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = 5; - pixel_y = 23 +"Yq" = ( +/obj/structure/sign/safety/galley{ + pixel_y = 29 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Yr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Yu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Yv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8940,121 +7425,93 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Yw" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"Yx" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"YA" = ( +"Yy" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Yz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoon_sergeant) "YB" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"YG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"YC" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -19; + pixel_y = 6 }, -/area/golden_arrow/cryo_cells) -"YK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - pixel_y = 28 +/obj/structure/sign/safety/ammunition{ + pixel_x = -19; + pixel_y = -6 }, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -31; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"YD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + pixel_y = 6 }, -/area/golden_arrow/canteen) -"YO" = ( -/obj/structure/closet/crate, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_sergeant) +"YJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/cryo_cells) "YP" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"YQ" = ( +"YR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"YV" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "YX" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Zb" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +"Za" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zc" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/squad_two) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Zd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -9063,43 +7520,77 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Zf" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Zk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/prep_hallway) -"Zl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"Zi" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/structure/largecrate/supply/explosives/grenades/less{ + pixel_y = 10; + pixel_x = 3 }, -/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Zm" = ( /obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/prop/helmetgarb/spent_slug{ + pixel_y = -9; + pixel_x = 8; + name = "spent snailshot"; + layer = 2.7 }, +/obj/item/storage/box/guncase/shotguncombat, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_two) -"Zw" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer{ - icon_state = "cargo" +"Zn" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"Zp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 }, -/area/golden_arrow/engineering) -"ZB" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zq" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"Zr" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/golden_arrow/firingrange) +"Zt" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Zv" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_two) +"ZA" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "ZC" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_one) @@ -9111,48 +7602,39 @@ "ZJ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) -"ZL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"ZK" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ZM" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/canteen) "ZQ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/firingrange) -"ZR" = ( +"ZS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "ZU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"ZV" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ZX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/engineering{ +"ZZ" = ( +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) (1,1,1) = {" Cr @@ -15944,10 +14426,10 @@ Cr Cr Cr Qw -ot -Lh -pB -Pm +oE +Hr +Bm +jx Qw Cr Cr @@ -16092,23 +14574,23 @@ sC sC sC sC -pt -pt -pt +hJ +hJ +hJ Qw -ND +PO Fg Px -CC +OP Qw Cr Cr bl -Oy -SE -zv -Hu -ek +Kw +nt +ja +MQ +qr bl Cr Cr @@ -16206,21 +14688,21 @@ Cr Cr Cr ca -Ln -wz -gz -wK -gz -Pt -tV +Jo +ut +eM +Ix +eM +na +xs ca -ml -wz -Ll -wK -Ll -wz -ml +FX +ut +xG +Ix +xG +ut +FX ca Cr Cr @@ -16232,35 +14714,35 @@ Xz Xz sC sC -VL +xZ sC sC -wJ -VQ +hX +KJ qA -zV -KQ +aH +el qA -dl -Bh +Lt +Gn qA -zK +OV pW -iC +Dy Me -Zl -DE +sJ +wA DR -Di +Zm Qw Cr Cr bl -VG -hD -zv -zP -VG +vI +yS +ja +RC +vI bl Cr Cr @@ -16358,21 +14840,21 @@ Cr Cr Cr ca -Xd -wz -Xd -wz -Xd -wz -Xd +WI +ut +WI +ut +WI +ut +WI ca -ml -wz -Ll -wz -Ll -wz -ml +FX +ut +xG +ut +xG +ut +FX ca Cr Cr @@ -16383,36 +14865,36 @@ sC sC sC sC -Ls -KQ +jL +el sC -QX -rH +Ju +hE dr -wV +wU dr tr kI Hm -DY +fA qA -FS +JQ XI -oh +WW Me Me Me -Hw +Xh Me Qw Qw Qw bl -VG -Ri -zv -Yk -VG +vI +RS +ja +lD +vI bl Cr Cr @@ -16510,21 +14992,21 @@ Cr Cr Cr ca -wz -jl -JZ -JZ -JZ -fe -wz +ut +Qb +hb +hb +hb +sZ +ut ca -Pt -jl -JZ -SR -SR -wx -Pt +na +Qb +hb +bt +bt +HZ +na ca Cr Cr @@ -16536,35 +15018,35 @@ SC Kv sC sC -Uj +xu sC -Tj +yG SI Kv -yt +dh Kv yY Yd Iw -BO +bp qA -og +xl XI -IU +FO Me -BA -xB +VY +lH Yp -gd -ST -Df +Tf +cM +eP Me Me -jt -Jj -BD -Is -BC +av +CH +Ug +gi +vl bl Cr Cr @@ -16658,25 +15140,25 @@ Cr Cr Cr ca -Yw -Yw -Yw +DT +DT +DT ca -Ln -So +Jo +Im KO KO Rr -Kx -tV +ue +xs ca -ml -So +FX +Im KO KO KO -Kx -ml +ue +FX ca Cr Cr @@ -16686,11 +15168,11 @@ Cr sC fW dr -vA +MX lS lS -ft -gQ +bU +ij Ap uO qA @@ -16698,25 +15180,25 @@ Qu pF Fj Jn -BO +bp qA -Oj +zu TC -wp +XZ Me -lQ +tC Fg Yp Fg Fg -gd -tS +Tf +Ak Me -VG -hD -zv -zP -VG +vI +yS +ja +RC +vI bl Cr Cr @@ -16810,25 +15292,25 @@ Cr Cr Cr ca -sc +oi MN -wz +ut ca -Xd -UX +WI +Ny Rr Ea KO -Kx -Xd +ue +WI ca -ml -UX +FX +Ny Rr Ea KO -kV -ml +Gr +FX ca Cr Cr @@ -16836,39 +15318,39 @@ Cr Cr Cr sC -gI -BK +hH +CQ sC -mc -KQ -bw -KQ -QS -gA +kG +el +Jx +el +rT +JC qA -Rh +fV Kv Qe Cg -qQ -Cu -ED +rW +pe +pX TC -eo -nb -vF +jw +Ko +ve Fg IE ty Fg Fg -Ku +SS Me -PS -ce -zv -FK -PS +RU +AB +ja +Wx +RU bl Cr Cr @@ -16962,23 +15444,23 @@ Cr Cr Cr ca -wz +ut Dc -wz +ut ca ca ca -Yw -Yw -Yw +DT +DT +DT ca ca ca ca ca -Yw -Yw -Yw +DT +DT +DT ca ca ca @@ -17002,23 +15484,23 @@ qA Ng fh Tz -PQ -ID -zM +Yz +xV +xT TO -KU -OU -Ya +uR +ia +sw mR hC mf Fy DR -tS +Ak Me Ib EN -Co +ww IH qE bl @@ -17114,53 +15596,53 @@ Cr Cr ca ca -wz +ut Dc -HQ +wh ca ca -Tu -wz -ZL -ZL -ZL -ZL -hk -ZL -BW -ZL -ZL -ZL -wz -wz -wz -wz -ZL -wz -wz +uq +ut +wR +wR +wR +wR +oF +wR +YC +wR +wR +wR +ut +ut +ut +ut +wR +ut +ut ca ca -ZL -CN -rk +wR +MU +rj ZJ -wN -Yl -Um -NI -gn +Zq +fE +Ma +kz +is ZJ -hN +YD Kv Kv Kv -Dg +np qA -Qi +KT TC -Gi +ic Me -Zb +Ro Fg Nr pf @@ -17170,7 +15652,7 @@ Db Me tf hM -zv +ja hM tf bl @@ -17266,66 +15748,66 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR ca ca -lB +KF IW IW -by -GN +lC +JN kU -GN -by +JN +lC JP JP IW -by -CK +lC +nc kU -AK -EX +WJ +dI JP IW -Kx +ue ca ca -ZL +wR mm -ax +ra ZJ -nF +Vl eT hq Ep No ZJ -Hj +Uz Kv Kv -DY -gM +fA +sd qA -rA +GJ XI -wp +XZ Me -PG -gd +Zv +Tf dX -pB +Bm Fg TT Me Of -hQ -wX +LX +vx ZQ -wX -KL -Kb +vx +FQ +CE bl Cr Cr @@ -17418,66 +15900,66 @@ Cr Cr ca ca -ZL +wR Dc -ZL -ug -wz -So +wR +kW +ut +Im KO Nk -nN -eU +qY +hh MN -qi -Xd +WD +WI hF Lo KO -Xd -qi +WI +WD he -eU -gD +hh +Wd Rr KO -pD -ug -wz -ZL +En +kW +ut +wR AQ xh ZJ -TW +le yJ ba jy -Mf +dc ZJ -ZB -KQ -UK -Kl +BE +el +Ca +lU qA qA -Fw +hm XI -jj +MO Me Me -js +WM Qw -qD -cA -RO +vC +IA +fU Me Of -uE -BD -Mz -nL -BD -eh +rC +Ug +oG +Zr +Ug +ko bl Cr Cr @@ -17568,9 +16050,9 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Qk pl pl @@ -17578,19 +16060,19 @@ Gs FP zy JD -Ym -qi +Vs +WD Dc -Wu -Xd -DM +Nh +WI +tP Yj KH -Xd -qi +WI +WD Dc -qi -hA +WD +Yu zy zy GQ @@ -17598,10 +16080,10 @@ pl pl pl yO -wz +ut ZJ ZJ -ey +Ah ZJ ZJ ZJ @@ -17611,11 +16093,11 @@ qA qA qA qA -jc +pv Jc -nH +sr GG -Zk +op Me Me Me @@ -17624,8 +16106,8 @@ Me Me Me Of -PI -Xu +su +RH Of Of bl @@ -17720,9 +16202,9 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO KO @@ -17730,19 +16212,19 @@ KO MI Rr Rr -Bf -ua +Qn +uU Dc -qi -Xd +WD +WI Bw Yj KH -Xd -qi +WI +WD Dc -qi -Xd +WD +WI KO KO Yh @@ -17750,37 +16232,37 @@ KO uG KO Dc -wz -oK -wp -gS -GO -iN -iN -iN -vL -AY -wp -wp -cU +ut +Es +XZ +mS +nO +RV +RV +RV +IK +UA +XZ +XZ +cF lo Eu XI Wl uu WY -iN -wp -iN -wp -iN -wp -tb -xo -RY -iN -oh -Ay +RV +XZ +RV +XZ +RV +XZ +Fn +io +QU +RV +WW +GD Cr Cr Cr @@ -17872,55 +16354,55 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO -Ke -al -TP +tz +Gp +iY Rr QW -Xd -qi +WI +WD Xs -eU -qw +hh +OB zy SL BP -qw -eU +OB +hh Td -qi -Xd +WD +WI TD KO -sy -Ph -IT +EY +ow +AW KO Qk -lm -iG +mX +FB SO Fu -SY +mg iK iK SO -zM +xT iK iK SO -SY +mg SO iK wn iK SO -so +Ha SO iK iK @@ -17932,7 +16414,7 @@ Wy Ad Op CA -Ay +GD Cr Cr Cr @@ -18026,65 +16508,65 @@ Cr Cr ca ca -ZL +wR Dc KO -pD -ZL -Rg +En +wR +hY KO rM -dP -qi +jB +WD Wr -qi -Xd +WD +WI KO Rr Rr -Xd -qi +WI +WD lh -km -Xd +ZS +WI KO KO -pD -wz -Ws -zD +En +ut +Zc +jR Dc -ZL -oK -ms -ms -iN -pZ -pZ -iN -wp -wp -iN -iN -sN +wR +Es +qH +qH +RV +xP +xP +RV +XZ +XZ +RV +RV +ev Va Wm XI gq Va iL -iN -wp -iN -iN -iN -wp -wp -pZ -ms -wp -iN -Ay +RV +XZ +RV +RV +RV +XZ +XZ +xP +qH +XZ +RV +GD Cr Cr Cr @@ -18178,52 +16660,52 @@ Cr Cr ca ca -yZ +do Dc KO -Vv -HV -cp -HV -nT -JI -Py -HV -fl -aB -EZ -HV -Wv -aB -EZ -HV -Wv -HS -EZ -cl -jO -aB -nd +EP +my +lw +my +BH +IN +Vi +my +zs +Up +pc +my +mq +Up +pc +my +mq +CU +pc +Dq +aY +Up +NS KO Dc -oe +Zp XJ -kg -qu +gs +vn XJ -kg -qu +gs +vn Vp Vp Vp Vp Vp Vp -Zk +op Jc TC GG -jc +pv ZC ZC ZC @@ -18232,8 +16714,8 @@ ZC ZC Ty Gl -pt -pt +hJ +hJ Gl Gl Gl @@ -18330,10 +16812,10 @@ Cr Cr ca ca -ZL +wR Dc -ZL -cL +wR +Zt dJ dJ dJ @@ -18355,33 +16837,33 @@ dJ dJ dJ dJ -bQ +RZ KO Dc -ad +oP XJ -YA -Od -Sy -mk -vk +au +vM +fa +pr +zU Vp -KZ -gL -sk -uH +IM +DN +Ci +WZ Vp Vp -wd -XQ -KD +mT +vr +QK ZC ZC -Yc +Lv Ty -cz -VK -yA +Vw +fN +ex Ty Cr Cr @@ -18480,12 +16962,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc nm -RT +nC dJ dJ dJ @@ -18507,29 +16989,29 @@ dJ dJ dJ dJ -dB -aN +yE +sb Dc -eY +uh XJ -As -As -Vr -Vr -As +eV +eV +cb +cb +eV Vp -am +zi JL Tb -KK +Ex JL Vp -OG +jY XI -iN +RV ZC -TI -cs +Jf +Qy af cT cT @@ -18632,12 +17114,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc AP -mW +LM dJ dJ dJ @@ -18659,30 +17141,30 @@ dJ dJ dJ dJ -dA -lg +XC +Qm Dc -eY -ag -As +uh +pi +eV Np Np rJ -As +eV Vp -EF +ez JL aO yw -Vz +lt Vp -xm +Vx XI -wp +XZ ZC -Fe +Lj cT -cD +zd aJ iE xx @@ -18784,12 +17266,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL -OJ +wR +bx dJ dJ dJ @@ -18811,34 +17293,34 @@ dJ dJ dJ dJ -AG -lg +PU +Qm Dc -eY -ag -As -qT -LJ -fg -Vr +uh +pi +eV +TF +wv +kc +cb Vp -Tk +Uo wl vU sR -MZ -sg -SY +qZ +qe +mg TO -yT -Pp -LF +eW +VC +VU nG PZ Dx UI cT -lV +fK Ty Cr Cr @@ -18938,10 +17420,10 @@ Cr Cr ca ca -ZL +wR Dc KO -cL +Zt dJ dJ dJ @@ -18963,34 +17445,34 @@ dJ dJ dJ dJ -gh -aN +ru +sb Dc -eY +uh XJ -Vr -rl -ol +cb +mt +JX rV -Vr +cb Vp -Hd +ox wl FE wl -xX -Wj -ED +Dm +OK +pX TC -eo -QJ -qa +jw +qF +LD cT cR Uk cT cT -zk +fH Ty Cr Cr @@ -19090,10 +17572,10 @@ Cr Cr ca ca -yZ +do Dc KO -RT +nC dJ dJ dJ @@ -19115,34 +17597,34 @@ dJ dJ dJ dJ -dB -zD +yE +jR Qk -MC +SG XJ -dv -rr -OX -sm -uA +VM +gX +CY +NG +vw Vp -rX +Hs wl FI Bo -ld +yD Vp -ys +rK XI -Gi +ic ZC -zZ +Tt cT sf cT cT -cs -lV +Qy +fK Ty Cr Cr @@ -19242,10 +17724,10 @@ Cr Cr ca ca -ZL +wR Dc KO -mW +LM dJ dJ dJ @@ -19267,33 +17749,33 @@ dJ dJ dJ dJ -LH -aN +Ar +sb Dc -eY +uh XJ -Vr +cb Np Np rJ -As +eV Vp -Ld +bs pw Wf pw -nj +kA Vp -kX +iw vp -Ql +kN ZC -Ry -LK +II +Gd sf -oQ -OI -rI +bJ +XD +yB Ty Ty Cr @@ -19392,12 +17874,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL -OJ +wR +bx dJ dJ dJ @@ -19419,30 +17901,30 @@ dJ dJ dJ dJ -AG -lg +PU +Qm Dc -eY -ag -FT -FT -FT -sv -vB +uh +pi +oc +oc +oc +Re +Ht Vp -EQ +Om Bg FE wl -EQ +Om Vp -Oj +zu XI -iN +RV ZC ZC ZC -mD +LW ZC Ty Ty @@ -19544,12 +18026,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc to -cL +Zt dJ dJ dJ @@ -19571,31 +18053,31 @@ dJ dJ dJ dJ -gh -lg +ru +Qm Dc -eY -ag -WP -WP -WP -WP -Jk +uh +pi +Ss +Ss +Ss +Ss +bF Vp -yx +yl Bo UO wl -yj +dQ Vp -FS -XQ -PF +JQ +vr +wk ZC -cy -ha +Ir +xA Wp -Ei +OM Ty Cr Cr @@ -19696,12 +18178,12 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc AP -RT +nC dJ dJ dJ @@ -19723,31 +18205,31 @@ dJ dJ dJ dJ -dB -lg +yE +Qm Dc -eY +uh XJ -WP -WP -WP -WP -KY +Ss +Ss +Ss +Ss +py Vp -Tg +dw wl FR wl -ur +Dd Vp -UT +Nv XI -wp +XZ ZC -yL +Mx xf cT -cV +lr Ty Cr Cr @@ -19850,10 +18332,10 @@ Cr Cr ca ca -ZL +wR Dc -ZL -mW +wR +LM dJ dJ dJ @@ -19875,31 +18357,31 @@ dJ dJ dJ dJ -dA -zD +XC +jR Dc -bf +fM XJ -aI -VX -VX -VX -vN +rG +lk +lk +lk +zf Vp -Sd -Cb -Gf -MJ -br +Ai +Cj +Gb +FY +WL Vp -aQ +Yq XI -wp +XZ ZC -Bu -WK -PA -Kp +pu +wO +lI +Zi Ty Cr Cr @@ -20002,41 +18484,41 @@ Cr Cr ca ca -yZ +do Dc KO -Ke -Tx -ct -qI -rf -ON -Jq -ar -Lx -Tx -JT -qI -Lx -Tx -Jq -ar -Lx -ON -JT -ar -vS -Tx -mB -aN +tz +mu +bj +Jm +JA +QH +Uq +nU +bP +mu +Uw +Jm +bP +mu +Uq +nU +bP +QH +Uw +nU +ER +mu +yq +sb Dc -eY +uh XJ -WP -WP -WP -WP -KY +Ss +Ss +Ss +Ss +py Ui Ui Ui @@ -20044,9 +18526,9 @@ Ui Ui Ui Ui -ZM -Fa -ZM +Lr +kR +Lr Ui HK HK @@ -20154,51 +18636,51 @@ Cr Cr ca ca -ZL +wR Qk zy -YQ -AL -IZ +eg +RQ +nw zy pl pl pl zy Oz -aN +sb KO KO KO Ea Ea KO -aN +sb KO KO KO -pD -ZL -So -aN +En +wR +Im +sb Dc -eY -ag -WP -WP -WP -WP -KY +uh +pi +Ss +Ss +Ss +Ss +py Ui Ui -YK -Jv -NO -QI -XR -Xw -NT -KM +mz +iO +Wi +gk +oV +go +tN +Vh Ui HK HK @@ -20206,14 +18688,14 @@ Ax Ax Ax HK -Pf -KP +eK +jh HK -Ii -nR -QT -nR -rb +tE +ep +Fq +ep +Eq sI Cr Cr @@ -20304,66 +18786,66 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO -Xy -fx -bq -JZ -JZ -SR -SR -pO -Rt -OH -SR -fx -SR -Cl -JZ -JZ -ff -SR -SR -je -Vv -SR -pG -lg +ln +LI +DS +hb +hb +bt +bt +ir +ju +OW +bt +LI +bt +ch +hb +hb +sh +bt +bt +ks +EP +bt +JV +Qm Dc -eY -ag -Eo -Ob -Ob -Ob -oL +uh +pi +PN +Kn +Kn +Kn +Lu Ui -nK -Cf -ik -bR -Rl -Kd -Cs -NT -UN -qR +lX +Ft +Vm +CR +Fb +GX +fB +tN +oY +pV HK Xc -YG -yF -yF -LQ -fX -ti -To +XG +DJ +DJ +lW +EE +dy +iq BY BY -cr +tp BY BY sI @@ -20456,25 +18938,25 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc KO hS hS vb -bo -bo +Zn +Zn hS hS -ay +hT Dc -Rg +hY Nf Nf Bj -cS +mV Bj Bj Nf @@ -20484,38 +18966,38 @@ Nf Bj Bj Nf -lg +Qm Dc -eY +uh XJ -fy -fL -sS -sS -bS +Un +sT +iM +iM +dq Ui -oM -CF -dO -Os -Rx -Ys -LS -NT -TY -qR +qB +BB +Ue +eE +sl +OS +lN +tN +aF +pV HK Xc -QD -ZV -Mi -ZV -rh -gg -To +yX +Kj +zX +Kj +BJ +Fm +iq bh RD -cr +tp LL LL sI @@ -20608,68 +19090,68 @@ Cr Cr Cr Cr -ou -eH -ZL +Dj +PB +wR Dc -ZL +wR hS CZ aT Qc Bz Mc -bo -eu +Zn +Zu Dc -ie +If Nf -JU -Cv -Cv -dd -bL +hZ +AI +AI +lp +jv Nf -fY -hW -Fi -jf -oJ +xD +xy +DW +YR +iW Nf zJ Dc -bf +fM XJ -Vr +cb Np -Uh +tq Np -As +eV Ui -Pc -FV -Zf -Zf -Zf -Zf -sO -QM -TY -qR +se +Az +BL +BL +BL +BL +Dp +MF +aF +pV HK Xc -QD -ZV +yX +Kj HK -Tr -Xa -NV +ma +NP +ig HK -kr -qm -eL -qm -qf +ZA +qO +Us +qO +EH sI Cr Cr @@ -20762,60 +19244,60 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR hS um QO SV Bz -GV -bD -HR +JY +TU +Yn pR -Rg +hY Nf -uF -OA -OA -dm -Mj +WF +pL +pL +Tq +lf Nf -gG -OA -OA -jg -Cw +yH +pL +pL +XX +yP Nf KO Ey -lg -me -GY +Qm +Gj +Bb Np Np rJ -As +eV Ui -yM -Dl -Zf -Zf -Zf -Zf -Zf -QM -TY -qR +zm +GE +BL +BL +BL +BL +BL +MF +aF +pV HK HK -za -Si +Xf +ZK HK -Na -dG -di +hs +UM +pT HK HK HK @@ -20914,9 +19396,9 @@ Cr Cr ca ca -ZL +wR Dc -ZL +wR hS BZ Bz @@ -20924,56 +19406,56 @@ iA Bz LZ hS -HH +Mw Dc -Rg +hY Nf -cH -cJ -OA -dt -ea -fO -Pr -PY -Pr -jG -xz -jV -lm +Ez +WH +pL +Xx +gl +Rw +Nl +lT +Nl +MH +Dr +uK +mX ly -ZL +wR XJ -yv -As -Ne -tT -IX +xH +eV +sH +kJ +ql Ui -Gz -Dw -Gk -Os -Sl -Yx -lG -QM -TY -qR +zC +fD +tR +eE +fb +tU +uI +MF +aF +pV HK Xc -kq -Vc +MV +uv HK -XL -fJ -NB +nP +vz +Fk HK -QT -nR -Ii -nR -rb +Fq +ep +tE +ep +Eq sI Cr Cr @@ -21066,9 +19548,9 @@ Cr Cr ca ca -ZL +wR Dc -bf +fM hS Bz Bz @@ -21076,54 +19558,54 @@ Bz LE tv hS -pD +En Dc -Rg +hY Nf -ov -OA -OA -OA -eJ +ZZ +pL +pL +pL +aK Nf -ho -iy -ho -jU -JJ +FG +fT +FG +EG +UY Nf cB lE -wz +ut XJ XJ XJ -PW +dx XJ XJ Ui -tX -Uv -GL -Pe -Su -rx -up -Bq -TY -qR +rm +FD +Sr +jE +Qs +Th +ei +VB +aF +pV HK Xc -kq -ZV -zt -ZV -xM -ti -To +MV +Kj +jX +Kj +lb +dy +iq BY BY -cr +tp BY BY sI @@ -21218,64 +19700,64 @@ Cr Cr Cr ca -ZL +wR Dc -ZL +wR hS hS -wc +mj hS hS hS hS -iX +px Er -Rg +hY Nf -ZR -QE -cZ -dE -Mj +Vt +Em +zS +IO +lf Nf -hG -jb -hG -jb -FN +Pa +Ed +Pa +Ed +GT Nf KO Dc -wz +ut XJ XJ -As -mk -uw -As +eV +pr +KX +eV Ui Ui -DF -oH -NO -Ub -XR -dn -QM -ub +uj +nv +Wi +Fc +oV +lx +MF +sz Ui HK Xc -QD -ZV -Mi -ZV -rh -Sq -To +yX +Kj +zX +Kj +BJ +aM +iq ZI ZI -cr +tp BY BY sI @@ -21370,19 +19852,19 @@ Cr Cr Cr ca -ZL +wR Xs -QN +nn MK MK -Xv -iR +Am +zb Bz qU hS -RK +nZ Er -vP +mA Nf Nf Nf @@ -21398,38 +19880,38 @@ Nf Nf KO Dc -bf +fM YP -ni +yd ry ry Np rJ -As +eV Rv Ui Ui Ui Ui Ui -ZM -Aw -ZM +Lr +Fs +Lr Ui HK HK -hR -Vc +Ks +uv HK -AA -Xa -NV +RF +NP +ig HK -eL -qm -kr -qm -qf +Us +qO +ZA +qO +EH sI Cr Cr @@ -21522,19 +20004,19 @@ Cr Cr Cr ca -Yw -Yw -Yw +DT +DT +DT MK MK BZ -iR +zb Bz -OC +NF hS -pD +En Er -Rg +hY gE gE gE @@ -21550,32 +20032,32 @@ gE gE aw Dc -ZL +wR YP -nM +ab Eb Eb nY Np -As +eV sI Ki -xK +VV Sw HK -FW -eR -bb -dG -xQ +yu +EW +OD +UM +yf HK -EO -QD -Si +zj +yX +ZK HK -nV -Xa -di +YV +NP +pT HK HK HK @@ -21679,32 +20161,32 @@ Cr Cr Cr MK -vt -iR +pp +zb Bz -Jg +GF hS -bu +bC Dc -Rg +hY gE gE -Xj -Qt +eX +xN gE -Hk +mL OZ yU yU ZU Fl lA -Vu +sA kw qc -Gq +ZP YP -oa +cn qv qv Np @@ -21712,28 +20194,28 @@ wS YP sI Ki -Hv +Pu Sw HK -gH -QD -bb -dG -Sc -BM -Br -QD -ZV +WT +yX +OD +UM +Yr +aC +Xn +yX +Kj HK -Vc -Xa -NV +uv +NP +ig HK -QT -nR -Ii -nR -rb +Fq +ep +tE +ep +Eq sI Cr Cr @@ -21831,59 +20313,59 @@ Cr Cr Cr MK -sY -iR +dz +zb Bz -dH +pC hS -pD +En Dc -Rg +hY gE -iQ +Vy Cn -VT +Al gE -ML +Xq ny SB -nx -de -sa -QP -bZ +Ge +LP +Aj +LA +ns Er Rr -Rt +ju YP -qh -Vr -Vr -Vr +jA +cb +cb +cb YP YP sI -Ve -HG -Pl -GK -Gg -sU -Ra -dG -Sc -Mn -Sc -QD -ZV -zt -ZV -xM -rZ -To +os +gJ +uL +tj +cu +HM +oq +UM +Yr +Go +Yr +yX +Kj +jX +Kj +lb +rs +iq Lf Lf -cr +tp BY BY sI @@ -21985,28 +20467,28 @@ Cr MK MK hS -MB +xU hS hS -oW +Za Dc -Rg +hY gE -sX +cf tA gE gE -ML +Xq ny uS -ng +qt TN -EB -EB +vq +vq ye -Qq +Hi TN -Qq +Hi YB YB YB @@ -22016,26 +20498,26 @@ YP YP sI HK -ip +va HK HK -EI -mY -zn -Bi -Sc -EK -Sc -fo -IC -IC -IC -IC -Bi -To +hP +Oh +ee +Ec +Yr +YJ +Yr +kx +KC +KC +KC +KC +Ec +iq BY YX -cr +tp BY BY sI @@ -22136,60 +20618,60 @@ Cr Cr Cr MK -NE -DB -Wg +bV +wu +Lb hS -pD +En Dc -Rg +hY gE -Wo +st iF -Rc +Pg Md kO vg RW -LC +of TN Fz AH AH Gv -LT +Xe Gv -Hc -lK -kF +PE +fu +TS YB Cr Cr Cr sI DX -HX +aZ Qx HK -Sc -Sc +Yr +Yr HK -Br -Br +Xn +Xn HK -lc -CJ -Br +aj +Rs +Xn HK -Br -Br -rd +Xn +Xn +ke HK -eL -qm -kr -qm -qf +Us +qO +ZA +qO +EH sI Cr Cr @@ -22290,30 +20772,30 @@ Cr MK oA QQ -gp +si hS -pD +En Dc -vP +mA gE -qz +Xi Zd gE -WA +Jr DC DC RW -mZ +Lc TN -CX +Mq IP gf -Bd -CP -PL +Vg +HO +uB hy AH -ZX +xk YB Cr Cr @@ -22444,28 +20926,28 @@ MK MK MK MK -wi +Qj Td -Rg +hY gE -co -OY +GI +UB gE gE -Cy -sa -nD +Oi +Aj +XU gE TN TN -gW -It +Mt +Bl TN TN -wI +Hn Gv IP -jN +Ox YB Cr Cr @@ -22596,17 +21078,17 @@ Cr Cr Cr MK -Yw -Yw -Yw +DT +DT +DT kS kS kS kS kS -oC +IF kS -oC +IF kS TN Ol @@ -22614,10 +21096,10 @@ zI jD bO TN -vo +Pj Gv IP -Iy +JM YB Cr Cr @@ -22756,20 +21238,20 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN -xJ +uT Oc zA -gx +vd TN -CX +Mq La us -gt +ii YB Cr Cr @@ -22908,9 +21390,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN zY @@ -22918,10 +21400,10 @@ zG Ff Gy TN -kH +yV kB RP -hL +EL YB Cr Cr @@ -23060,9 +21542,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN TN @@ -23071,8 +21553,8 @@ TN TN TN TN -Hh -NU +VN +MT YB YB YB @@ -23212,9 +21694,9 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN fm @@ -23223,13 +21705,13 @@ fm fm fm TN -yc -Sn -Vq +xI +tk +JB YB -RN -tB -RM +XT +FA +Ti YB YB Cr @@ -23364,9 +21846,9 @@ kS kS kS kS -gT +LN kS -gT +LN kS TN TN @@ -23375,14 +21857,14 @@ TN TN TN TN -Nz -rt -XP +sp +tt +lL YB -bB -EJ -zL -oo +TG +Vk +nE +Rj YB Cr Cr @@ -23513,28 +21995,28 @@ Cr Cr kS kS -VJ -co +pa +GI kS -gT +LN kS -gT +LN kS TN -kh -qW -GU -Ml -AO -EA -yc -aq -Uf -Bv -Vj -Xb -Bt -fp +yN +GR +wm +rN +iI +TX +xI +XW +Fh +UP +uC +ky +WC +Ee YB Cr Cr @@ -23664,29 +22146,29 @@ Cr Cr Cr kS -eB -uo -WG +QB +xj +VP kS -gT +LN kS -gT +LN kS TN -Ce -fv -Sj -TK -MW -QL -IR -cG -fF -gW -Vj -cw -Bt -Ps +wf +ae +Qp +Ev +Ie +zR +wb +Ga +id +Mt +uC +tD +WC +kt YB Cr Cr @@ -23816,29 +22298,29 @@ Cr Cr Cr kS -CS -vK +rQ +gw aA kS -gT +LN kS -gT +LN kS TN -vc -il -wa -sE -Nx -sE -Ye -Sn -uX +cv +dK +US +Uc +Fx +Uc +Do +tk +bk YB -dj -fF -uQ -pS +ws +id +QC +Sg YB Cr Cr @@ -23969,27 +22451,27 @@ Cr Cr kS kS -yg -aX +ps +xC kS -gT +LN kS -gT +LN kS TN -Qz -il -wa +Lq +dK +US oO -AC +Bp HT -ah -wa -yo +KG +US +iv YB -yy -mo -an +Ip +Pq +KW YB YB Cr @@ -24124,20 +22606,20 @@ kS mb kS kS -gT +LN kS -gT +LN kS TN -NZ -il -Sn +KN +dK +tk jS vG ds -hU -wa -Hx +Ho +US +El YB YB YB @@ -24276,20 +22758,20 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN -NZ -il -Sn -sE -zl -sE -wH -Sn -XN +KN +dK +tk +Uc +uk +Uc +ge +tk +IJ YB Cr Cr @@ -24428,18 +22910,18 @@ Rd Rd Rd kS -gT +LN kS -gT +LN kS TN TN TN -Mu +XY TN TN TN -Qq +Hi TN YB YB @@ -24580,19 +23062,19 @@ Rd kS kS kS -gT +LN kS -gT +LN kS kS YB -Vq +JB Yv -if -IS -YO +HA +nz +kY cj -Vq +JB YB Cr Cr @@ -24730,21 +23212,21 @@ Cr kS Rd kS -or -or -fq +eq +eq +bY kS -Jp -or -or +xS +eq +eq YB -bg -kk +Yy +ze Gu Gu Gu -vJ -oX +Il +yK YB Cr Cr @@ -24890,13 +23372,13 @@ kS kS kS YB -ro -rq -jQ -GA -dg -aG -Zw +iU +GM +jm +mC +kQ +Xk +im YB Cr Cr @@ -27166,11 +25648,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +jP +jP +jP +jP +jP Cr Cr Cr @@ -27318,11 +25800,11 @@ Cr Cr Cr Cr -aS +jP gB -aS -aS -aS +jP +jP +jP Cr Cr Cr @@ -27470,11 +25952,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +jP +jP +jP +jP +jP Cr Cr Cr diff --git a/maps/map_files/rover/rover.dmm b/maps/map_files/rover/rover.dmm index fcd21b1f3a..da709e5cfa 100644 --- a/maps/map_files/rover/rover.dmm +++ b/maps/map_files/rover/rover.dmm @@ -7,38 +7,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ad" = ( -/obj/structure/closet/secure_closet/squad_sergeant_forecon, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, +"ai" = ( +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_commander_rooms) -"ag" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"ap" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) -"ar" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" +"ak" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) "ax" = ( /obj/structure/machinery/prop{ @@ -53,16 +31,6 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"aA" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) "aB" = ( /obj/structure/foamed_metal, /turf/open/space/basic, @@ -74,6 +42,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) +"aG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"aI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) "aK" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -83,6 +66,12 @@ /obj/structure/platform, /turf/open/floor/almayer, /area/golden_arrow/supply) +"aL" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "aN" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -91,12 +80,31 @@ /obj/item/stool, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/synthcloset) -"aS" = ( -/obj/structure/machinery/power/fusion_engine{ - name = "\improper S-52 fusion reactor 17" +"aO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"aV" = ( +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 11 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "bb" = ( /obj/structure/largecrate/random/secure{ layer = 2.9 @@ -111,15 +119,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"be" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - density = 0; - pixel_x = -30 +"bc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/synthcloset) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "bf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/prop{ @@ -137,6 +149,48 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"bh" = ( +/obj/structure/ladder{ + id = "rover2" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"bl" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 30; + pixel_y = 7 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"bm" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"bx" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"by" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -10 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "bC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -151,47 +205,58 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"bN" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"bF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/hangar) -"bQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/hangar) -"bS" = ( -/obj/structure/sign/poster/music{ - pixel_y = 29 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"bJ" = ( +/obj/structure/machinery/conveyor{ + dir = 1 }, -/obj/structure/sign/poster/music{ - pixel_x = 8; - pixel_y = 34 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"bO" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"bP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/obj/structure/gun_rack/m41/recon/unloaded, -/obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = 15; - pixel_x = 8 +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"bW" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"bY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ce" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"ci" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/golden_arrow/squad_one) -"ca" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "W"; + layer = 3.3 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "cl" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/distribution_pipes{ @@ -218,61 +283,59 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"cp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"cs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) "ct" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/sniper, /obj/item/attachable/attached_gun/grenade/mk1, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"cJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"cz" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/item/trash/ceramic_plate{ + pixel_y = 1 }, -/area/golden_arrow/cryo_cells) -"cS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +/obj/item/trash/ceramic_plate{ + pixel_y = 2 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"cD" = ( +/obj/structure/largecrate/random/case, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"cI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Subsection"; + req_one_access = list(); + req_one_access_txt = "8" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"cL" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + pixel_y = 2 }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "cT" = ( /obj/structure/largecrate/random/secure{ layer = 5.2; @@ -280,17 +343,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/platoon_commander_rooms) "cV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber{ @@ -298,223 +350,87 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cX" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/supply) -"dd" = ( +"cW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + layer = 2.5 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "NW-out" }, -/area/golden_arrow/cryo_cells) -"dm" = ( -/obj/structure/machinery/photocopier, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1; + name = "\improper Assistant Squad Leader"; + req_one_access_txt = "12;32" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"do" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"dv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"dx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"dz" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dB" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - dir = 1; - name = "\improper Assistant Squad Leader"; - req_one_access_txt = "12;32" +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/squad_one) +"dG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/engineering) +"dH" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/squad_one) -"dE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"dL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/medic/forecon, -/obj/effect/landmark/late_join/forecon, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"dG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/engineering) -"dJ" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"dN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"dM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "dO" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ roundstart_template = /datum/map_template/shuttle/cyclone }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"dR" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "dV" = ( /turf/closed/wall/almayer, /area/golden_arrow/canteen) -"ea" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"ec" = ( +"ed" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"ef" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"eh" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1{ - pixel_x = -8 - }, -/obj/item/prop/almayer/handheld1{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/structure/machinery/floodlight/landing/floor{ - layer = 2.79 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"en" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/box/guncase/shotguncombat, -/obj/item/storage/box/guncase/shotguncombat{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"ex" = ( -/obj/structure/largecrate/random/barrel/blue{ - pixel_x = -10 +"ei" = ( +/obj/structure/anti_air_cannon{ + pixel_x = -13; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"es" = ( +/obj/structure/ladder{ + height = -1; + id = "rover2" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ez" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 16; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "eB" = ( /obj/structure/window/reinforced{ dir = 4; @@ -566,18 +482,6 @@ /obj/item/facepaint/skull, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"eJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"eL" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/canteen) "eO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -585,60 +489,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"eX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"ff" = ( -/obj/structure/largecrate, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/obj/item/clothing/mask/snorkel, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"fj" = ( -/obj/structure/ladder{ - id = "rover1" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"fk" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/line_nexter{ - dir = 2 +"eT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"eU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/food_storage{ - pixel_x = -20; - pixel_y = 35 - }, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/canteen) -"fm" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"fi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "fn" = ( /obj/structure/prop{ can_buckle = 1; @@ -653,14 +520,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"fo" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) "fq" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -669,61 +528,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"fs" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -27 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"fy" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/nade_box{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper; - dir = 1 - }, -/obj/item/storage/box/nade_box{ - pixel_x = -9; - pixel_y = -4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "fB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"fI" = ( +"fE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "fK" = ( /obj/structure/largecrate/random, @@ -733,47 +550,37 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"fM" = ( -/obj/structure/closet/secure_closet/platoon_sergeant_forecon, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"fO" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"fN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"fP" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -6 +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) }, -/obj/item/trash/plate{ - pixel_y = 3 +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/synthcloset) +"fR" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "fX" = ( /turf/closed/wall/almayer, /area/golden_arrow/cryo_cells) -"gc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"fZ" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "gd" = ( /obj/structure/machinery/light{ dir = 4; @@ -786,16 +593,39 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ge" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"gh" = ( +/obj/structure/cargo_container/arious/mid{ + opacity = 0 }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"gi" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"gm" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 1 }, -/area/golden_arrow/hangar) +/obj/structure/gun_rack/m41/recon/unloaded, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"gs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "gz" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -807,14 +637,6 @@ /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"gK" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "gL" = ( /obj/structure/barricade/handrail{ dir = 4; @@ -823,170 +645,151 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/supply) +"gR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/machete/full, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "gS" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"gT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"he" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"hf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gX" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/nade_box{ + pixel_x = 2; + pixel_y = -4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper }, -/area/golden_arrow/platoon_commander_rooms) -"hj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "bluefull" +/obj/item/storage/box/nade_box{ + pixel_x = -9; + pixel_y = -4 }, -/area/golden_arrow/hangar) -"hk" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"hm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"hC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ho" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ + req_access = list(); + req_one_access_txt = "8;12;13;39" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"hG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/tl/forecon, -/obj/effect/landmark/late_join/forecon, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"hI" = ( -/obj/structure/machinery/light/small{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"hv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"hy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"hB" = ( +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 10 }, -/area/golden_arrow/squad_one) -"hN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/conveyor{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"hD" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/largecrate/random/barrel/green{ + layer = 3.01; + pixel_x = 12; + pixel_y = 22 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"hM" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, +/obj/item/weapon/gun/rifle/m4ra/pve, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"hR" = ( +/obj/structure/machinery/cm_vending/clothing/medic/forecon, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) "hV" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"hW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"hX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "hZ" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating, /area/golden_arrow/hangar) -"io" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +"ia" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/prop_gun{ + custom_gun_desc = "Welp. Too delicate for jungles, it seems. Nothing beats MK1."; + custom_gun_name = "Broken M39 submachinegun"; + prop_gun_type = /obj/item/weapon/gun/smg/m39 }, -/area/golden_arrow/squad_one) -"ir" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -15 +/obj/item/tool/screwdriver/tactical{ + pixel_x = -9; + pixel_y = -3 }, -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"ic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"in" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"iq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"iu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ix" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 30 @@ -994,16 +797,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"iy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = -29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "iB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1011,21 +804,56 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"iC" = ( +/obj/structure/ladder{ + height = -1; + id = "rover3" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"iF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "iI" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) -"iQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_one) "iR" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/golden_arrow/supply) +"iT" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"iW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/start/marine/smartgunner/forecon, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "iX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -1040,133 +868,52 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"iZ" = ( -/obj/structure/largecrate/random/case, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +"jh" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"jb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"jn" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"jo" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"jr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"je" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"jj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"jp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"jt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"jv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"jy" = ( -/obj/structure/sign/safety/landingzone{ - pixel_x = -19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"jF" = ( -/turf/open/floor/almayer_hull{ - icon_state = "blackfull" - }, -/area/space) -"jG" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/largecrate/random/barrel/green{ - layer = 3.01; - pixel_x = 12; - pixel_y = 22 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"jO" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m4ra/pve, -/turf/open/floor/almayer{ - icon_state = "plate" +"jL" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 }, -/area/golden_arrow/squad_one) -"jQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"jY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"kd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"jT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"jW" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters" }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "ki" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -1176,63 +923,94 @@ "ko" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/cryo_cells) -"kq" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" +"kp" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"kx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/classcola, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"kA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/machinery/light{ + dir = 1; + unacidable = 1; + unslashable = 1 }, -/area/space) +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "kC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"kD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) "kF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"kG" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 +"kH" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 +/obj/item/storage/box/guncase/shotguncombat, +/obj/item/storage/box/guncase/shotguncombat{ + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"kJ" = ( +/obj/structure/sign/poster/music{ + pixel_y = 29 }, -/area/golden_arrow/prep_hallway) -"kU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/sign/poster/music{ + pixel_x = 8; + pixel_y = 34 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/gun_rack/m41/recon/unloaded, +/obj/item/attachable/attached_gun/grenade/mk1{ + pixel_y = 15; + pixel_x = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"kK" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) +"kP" = ( +/obj/structure/largecrate, +/obj/structure/machinery/light, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_y = 15 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) +"kS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"kY" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) "la" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/dorms) @@ -1247,20 +1025,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"lf" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/platoon_commander_rooms) "lg" = ( /obj/structure/machinery/shower{ dir = 1 @@ -1278,62 +1042,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"lm" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +"lk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/area/golden_arrow/supply) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ln" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"lp" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/attachable/attached_gun/grenade/mk1{ - pixel_y = -1; - pixel_x = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"lq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"lr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) +"lo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "ls" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) @@ -1350,34 +1081,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"lw" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "bluefull" - }, -/area/golden_arrow/platoon_commander_rooms) -"lA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"lB" = ( -/obj/structure/ladder{ - height = -1; - id = "rover2" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "lH" = ( /turf/closed/wall/almayer, /area/golden_arrow/supply) @@ -1386,15 +1089,14 @@ /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"lJ" = ( +"lM" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ammunition{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + pixel_x = -30 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "lN" = ( /obj/structure/machinery/power/smes/buildable, /obj/item/clothing/ears/earmuffs{ @@ -1404,61 +1106,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"lQ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/squad_one) -"lY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) "lZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"mf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "\improper Medical Subsection"; - req_one_access = list(); - req_one_access_txt = "8" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"mi" = ( -/obj/structure/largecrate/random/case{ - pixel_y = 11 +"mi" = ( +/obj/structure/largecrate/random/case{ + pixel_y = 11 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ml" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/plush/therapy/blue{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/toy/plush/therapy/orange{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/toy/plush/therapy/red{ - pixel_x = -7; - pixel_y = 2 +"mk" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/barricade/handrail{ + dir = 1; + layer = 3.01; + pixel_y = 13 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "ms" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /obj/structure/machinery/light{ @@ -1469,12 +1139,17 @@ "mv" = ( /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"my" = ( +"mB" = ( /obj/structure/cargo_container/wy/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"mE" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "mH" = ( /obj/structure/sink{ dir = 4; @@ -1489,16 +1164,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"mJ" = ( -/obj/structure/largecrate, -/obj/structure/machinery/light, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_y = 15 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"mL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/supply) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "mM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1509,93 +1181,150 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"mR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"mU" = ( +"mQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; layer = 2.5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"mW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"mS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"mX" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Sergeant" }, -/area/golden_arrow/engineering) +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"mZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "na" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"nx" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/m94/signal, -/obj/item/storage/box/m94/signal{ - pixel_x = 5; - pixel_y = 5 +"nd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/device/binoculars/range/designator, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/area/golden_arrow/squad_one) -"nz" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nj" = ( +/obj/structure/prop/invuln/overhead_pipe, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nl" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 +/obj/item/prop/almayer/handheld1{ + pixel_x = -8 }, -/obj/item/tool/pen{ - pixel_x = -9 +/obj/item/prop/almayer/handheld1{ + pixel_x = 9; + pixel_y = 12 }, -/obj/item/folder/black_random{ - pixel_x = 6; - pixel_y = 8 +/obj/structure/machinery/floodlight/landing/floor{ + layer = 2.79 }, -/obj/structure/phone_base/rotary/no_dnd{ - name = "Squad Leader Telephone"; - phone_category = "Command"; - phone_id = "Squad Leader"; - pixel_x = 6; - pixel_y = -7 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"nn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ladder{ + pixel_x = -16; + pixel_y = -27 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"ns" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() }, -/area/golden_arrow/squad_one) -"nH" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/sign/safety/chem_lab{ + pixel_x = -20 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"nv" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/safety{ + pixel_x = -27 }, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer{ + current_mag = null; + pixel_y = 4 + }, +/obj/item/attachable/attached_gun/extinguisher/pyro{ + layer = 3.01 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"nC" = ( +/obj/structure/prop/invuln/overhead_pipe, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 9 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"nE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/ammunition{ + pixel_x = -18 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"nG" = ( +/obj/structure/ship_ammo/rocket/keeper, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) +"nN" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/obj/item/device/motiondetector, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"nS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "nX" = ( /obj/structure/bed/chair{ dir = 1 @@ -1608,32 +1337,16 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"oc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"of" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"oo" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 +"oh" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "op" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1641,48 +1354,74 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"os" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ot" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"ou" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"ov" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"oJ" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"oz" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"oM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer{ - icon_state = "cargo" +"oI" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 }, -/area/golden_arrow/engineering) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "oQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"oR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"pa" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 }, -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"pd" = ( +/obj/structure/ladder{ + height = -1; + id = "rover1" }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"pe" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/attachable/attached_gun/grenade/mk1{ + pixel_y = -1; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"pf" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "ph" = ( /obj/structure/cargo_container/lockmart/right{ layer = 5.2; @@ -1690,28 +1429,57 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"pi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"pl" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.3; + pixel_x = -4; + pixel_y = 15 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 29 }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Commando Huggs"; + pixel_x = 9; + pixel_y = 3; + throwforce = 15 }, -/area/golden_arrow/cryo_cells) -"pu" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"pm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/plush/therapy/blue{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/toy/plush/therapy/orange{ + pixel_x = -2; + pixel_y = 6 }, +/obj/item/toy/plush/therapy/red{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"pp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "pw" = ( /obj/effect/decal/cleanable/dirt, @@ -1720,145 +1488,30 @@ "pB" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/prep_hallway) -"pF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) "pI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/supply) -"pM" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/safety{ - pixel_x = -27 - }, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer{ - current_mag = null; - pixel_y = 4 - }, -/obj/item/attachable/attached_gun/extinguisher/pyro{ - layer = 3.01 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"pS" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"pV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"pU" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"pW" = ( -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 - }, -/obj/structure/closet/crate/construction, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"pZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"qb" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +"pY" = ( +/obj/structure/largecrate, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/shoes/swimmingfins, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/obj/item/clothing/mask/snorkel, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/supply) -"qi" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"qm" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"qo" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"qs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/grown/lime, -/obj/item/reagent_container/food/snacks/grown/lime{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"qt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"qx" = ( -/obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"qy" = ( -/obj/structure/ladder{ - height = -1; - id = "rover3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +"qu" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) "qA" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/forecon{ req_one_access = list(); @@ -1870,46 +1523,27 @@ /obj/effect/landmark/observer_start, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) -"qC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"qE" = ( -/obj/structure/machinery/conveyor{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/supply) "qF" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qJ" = ( -/obj/structure/cargo_container/arious/right{ - opacity = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" +"qI" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" }, -/area/golden_arrow/hangar) +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/medic/standard, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "qN" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"qP" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) +"qR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "qU" = ( /obj/structure/machinery/door/airlock/almayer/generic, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1917,24 +1551,49 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"qV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"rc" = ( +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) +"ri" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "rl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"rm" = ( +/obj/structure/closet/crate/green, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/obj/item/rappel_harness/extract{ + shuttle_id = "dropship_cyclone" + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "ro" = ( /obj/structure/showcase{ desc = "Nobody knows how a mannequin got aboard, but last Halloween it got dressed up as Voorhees and scared the shit out of new guy. Heh, good times."; @@ -1967,63 +1626,17 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"rt" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"rv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"rz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, +"rx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + pixel_x = -1; + pixel_y = 1 }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) "rA" = ( /turf/closed/wall/almayer, /area/golden_arrow/hangar) -"rD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"rE" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "rH" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -2031,41 +1644,58 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"rQ" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/canteen) -"rS" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"rJ" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" }, -/area/golden_arrow/engineering) -"rT" = ( +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"rL" = ( +/obj/structure/machinery/power/apc/almayer/west, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"rQ" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/canteen) "rX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"sc" = ( -/obj/structure/computer3frame, -/turf/open/floor/almayer{ - icon_state = "plate" +"rY" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) +"se" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"si" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "sk" = ( /obj/structure/barricade/handrail{ dir = 4; @@ -2080,17 +1710,6 @@ /obj/item/tool/shovel/snow, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"sp" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) "sq" = ( /obj/structure/prop/tower{ desc = "Military-grade communications tower."; @@ -2099,22 +1718,20 @@ }, /turf/open/floor/almayer_hull, /area/space) -"sv" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = 24 +"st" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/area/golden_arrow/cryo_cells) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "sw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -2132,183 +1749,84 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"sK" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"sN" = ( -/obj/structure/anti_air_cannon{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" - }, -/area/space) -"sR" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) -"sT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"sG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"sX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"sO" = ( +/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/canteen) -"sY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +"sQ" = ( +/obj/structure/machinery/conveyor{ + dir = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/area/golden_arrow/squad_one) -"sZ" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"te" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"th" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/safety/autodoc{ + pixel_x = 13; + pixel_y = 27 }, -/area/golden_arrow/cryo_cells) -"td" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"tj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 }, -/area/golden_arrow/hangar) +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) "tn" = ( /turf/open/floor/almayer, /area/golden_arrow/engineering) -"to" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 33 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"tt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"tA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Supply Bay" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) "tD" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"tG" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 30; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"tI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) -"tJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/machete/full, -/turf/open/floor/almayer{ - icon_state = "plate" +"tE" = ( +/obj/structure/prop/invuln/overhead_pipe, +/obj/structure/sign/safety/water{ + pixel_x = 14; + pixel_y = -28 }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "tM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"tO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/leader/forecon, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"tQ" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/accessory/storage/droppouch, -/obj/item/clothing/accessory/storage/droppouch, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"tS" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"tR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/m41amk1/forecon, +/obj/structure/largecrate/supply/ammo/m41amk1/forecon{ + pixel_x = 3; + pixel_y = 10 }, -/area/golden_arrow/medical) -"tW" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"tX" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "ua" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/plating/plating_catwalk, @@ -2326,148 +1844,109 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"uo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"uC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/facepaint/black{ - pixel_x = -8 - }, -/obj/item/facepaint/brown, -/obj/item/facepaint/green{ - pixel_x = 9 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"uJ" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"uO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +"un" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"vd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"uv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/cryo_cells) -"vq" = ( -/obj/structure/prop/invuln/overhead_pipe, -/obj/structure/sign/safety/water{ - pixel_x = 14; - pixel_y = -28 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"uw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"vx" = ( +"uz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"vy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +"uA" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"vi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"vI" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 - }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"vM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 - }, +"vj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"vR" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/hangar) -"vS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"vt" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null }, -/area/golden_arrow/canteen) -"vT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/service/tanker, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"vD" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"vP" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"wc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/medical) -"vX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/medic/forecon, +/obj/effect/landmark/late_join/forecon, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"we" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/golden_arrow/hangar) -"wa" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/golden_arrow/cryo_cells) -"wd" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -5; - pixel_y = 3 +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"wf" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8 }, -/obj/item/reagent_container/food/drinks/cans/souto/lime{ - pixel_x = 9; - pixel_y = 3 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "wg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -2482,41 +1961,43 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"wl" = ( -/obj/structure/cargo_container/arious/mid{ - opacity = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"wm" = ( +"wi" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) +"wo" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; + dir = 1; name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"wq" = ( +/obj/structure/machinery/conveyor{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"wr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "wu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/blocker/invisible_wall, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"wx" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"wz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) +"ww" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/accessory/storage/droppouch, +/obj/item/clothing/accessory/storage/droppouch, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "wB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -2525,33 +2006,36 @@ "wD" = ( /turf/closed/wall/almayer/white, /area/golden_arrow/medical) -"wH" = ( +"wF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ + autoname = 0; + req_one_access = list() + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"wG" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "wN" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"wQ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"wV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) +"wU" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/synthcloset) "wX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2565,40 +2049,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"wZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "xe" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"xj" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/item/book/manual/robotics_cyborgs{ - pixel_y = 8 - }, -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/synthcloset) "xk" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"xq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "xw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2607,51 +2072,46 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"xx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"xz" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/structure/bed{ + can_buckle = 0 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/area/golden_arrow/medical) -"xJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8 +/obj/item/bedsheet/brown{ + layer = 3.4 }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/bedsheet/brown{ + pixel_y = 13 }, -/area/golden_arrow/supply) -"xL" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"xB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"xF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"xR" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"xM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "xW" = ( /obj/structure/toilet{ dir = 8 @@ -2678,21 +2138,57 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yc" = ( -/obj/structure/ship_ammo/rocket/banshee, -/turf/open/floor/almayer{ - icon_state = "cargo" +"yd" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ye" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/squad_one) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/area/golden_arrow/hangar) -"yj" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yh" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yl" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/manualopenclose, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"ym" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/hangar) +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_y = 29 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"yq" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "yt" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/computer/station_alert{ @@ -2706,197 +2202,143 @@ /obj/structure/foamed_metal, /turf/open/space/basic, /area/golden_arrow/squad_one) -"yB" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) "yC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yX" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8 - }, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"yG" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"yJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/area/golden_arrow/supply) -"zi" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/medical) -"zr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"zD" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/platoon_commander_rooms) -"zF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Sergeant" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 }, /obj/item/clothing/shoes/marine/jungle/knife, /obj/item/device/radio/headset/almayer/sof/survivor_forecon, /obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/dorms) -"zK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"zO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"yP" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 29 }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"zU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/platoon_commander_rooms) +"yU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/leader/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) -"zV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"zZ" = ( -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -8 +"yV" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"yY" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = -17; + unacidable = 1; + unslashable = 1 }, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = -7; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"ze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -15 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 }, -/area/golden_arrow/squad_one) -"Ag" = ( -/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"zf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"zr" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer, +/area/golden_arrow/engineering) +"zs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"Ap" = ( -/obj/structure/machinery/light{ +"zC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"As" = ( -/obj/structure/closet/crate/green, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/obj/item/rappel_harness/extract{ - shuttle_id = "dropship_cyclone" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"zO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Au" = ( -/obj/structure/machinery/conveyor{ - dir = 10 +"Ac" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/supply) -"AA" = ( +"Ae" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.3; - pixel_x = -4; - pixel_y = 15 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 29 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Commando Huggs"; - pixel_x = 9; - pixel_y = 3; - throwforce = 15 +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; +/obj/item/clipboard{ pixel_x = 8; - pixel_y = 11 + pixel_y = 3 }, -/obj/item/clothing/mask/cigarette{ +/obj/item/tool/stamp/denied{ pixel_x = 2; - pixel_y = -1 + pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/tool/pen{ + pixel_x = 12 }, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Ag" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Az" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "AC" = ( /obj/structure/sink{ dir = 4; @@ -2913,43 +2355,6 @@ /obj/item/attachable/attached_gun/grenade/mk1, /turf/open/floor/plating, /area/golden_arrow/hangar) -"AF" = ( -/obj/vehicle/powerloader, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"AG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Dorms" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"AH" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"AJ" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 10; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "AK" = ( /obj/structure/machinery/door/airlock/almayer/medical{ dir = 1; @@ -2959,16 +2364,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/medical) -"AP" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/engineering) +"AL" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"AO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "AQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -2979,26 +2382,32 @@ /obj/structure/closet/firecloset, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"AW" = ( -/obj/structure/machinery/camera/autoname/golden_arrow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"Bc" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +"AX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/area/space) -"Bh" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/device/motiondetector, -/obj/item/device/motiondetector, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/head/headset{ + pixel_x = -6; + pixel_y = 8 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) +"Ba" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Bg" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "Bj" = ( /obj/structure/machinery/shower{ dir = 4 @@ -3015,160 +2424,140 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Bw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/squad_one) -"Bz" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/service/tanker, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"BA" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoon_commander_rooms) -"BF" = ( +"BD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"BI" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/golden_arrow/hangar) -"Cd" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Cl" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"Cr" = ( -/turf/open/space/basic, -/area/space) -"CD" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/supply) -"CO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/m41amk1/forecon, -/obj/structure/largecrate/supply/ammo/m41amk1/forecon{ - pixel_x = 3; - pixel_y = 10 +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"BP" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"BQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"BR" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"BV" = ( +/obj/structure/closet/secure_closet/squad_sergeant_forecon, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"BY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/m94/signal, +/obj/item/storage/box/m94/signal{ + pixel_x = 5; + pixel_y = 5 }, +/obj/item/device/binoculars/range/designator, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"CR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"Cd" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Cn" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Cr" = ( +/turf/open/space/basic, +/area/space) +"CG" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"CI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "CV" = ( /obj/structure/machinery/computer/supply_drop_console/limited/alternate, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Dc" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) -"Dv" = ( +"CX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Dw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/cryo_cells) -"Dx" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"DB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, -/area/golden_arrow/medical) -"DC" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"CY" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"Db" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"Dd" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Dq" = ( +/obj/structure/ladder{ + id = "rover3" }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Dw" = ( +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"DH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"DM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/classcola, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) +"DN" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) "DP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"DV" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee/marine, -/obj/item/reagent_container/food/drinks/coffee/marine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"DW" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer{ - icon_state = "cargo" +"DQ" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "DY" = ( /obj/structure/cargo_container/wy/right, @@ -3178,21 +2567,31 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Eo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light, -/obj/item/device/cassette_tape/pop3{ - pixel_y = 3 +"DZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ec" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) +"Ej" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Eq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, -/area/golden_arrow/platoon_commander_rooms) -"Et" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Eu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ev" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -3210,42 +2609,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ew" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ey" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/prop_gun{ - custom_gun_desc = "Welp. Too delicate for jungles, it seems. Nothing beats MK1."; - custom_gun_name = "Broken M39 submachinegun"; - prop_gun_type = /obj/item/weapon/gun/smg/m39 - }, -/obj/item/tool/screwdriver/tactical{ - pixel_x = -9; - pixel_y = -3 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"EF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/m41/recon/unloaded, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) +"EA" = ( +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "EN" = ( /obj/structure/machinery/light{ dir = 8; @@ -3254,116 +2620,95 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"EO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"EQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"EP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/facepaint/black{ + pixel_x = -8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/item/facepaint/brown, +/obj/item/facepaint/green{ + pixel_x = 9 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ER" = ( +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"EW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"EY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +"ES" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) "Fg" = ( /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Fp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"Fh" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Fj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, -/area/golden_arrow/engineering) -"Fs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/dorms) -"Fv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/medical{ - pixel_y = 27 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Fm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/sign/safety/autodoc{ - pixel_x = 13; - pixel_y = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/tl/forecon, +/obj/effect/landmark/late_join/forecon, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Fz" = ( +/obj/structure/cargo_container/arious/right{ + opacity = 0 }, -/area/golden_arrow/prep_hallway) +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "FE" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"FH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"FF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/hangar) -"FL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/prep_hallway) -"FM" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"FI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"FP" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"FO" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/area/golden_arrow/platoon_commander_rooms) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "FT" = ( /obj/structure/window/reinforced{ dir = 8; @@ -3386,12 +2731,11 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"FW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +"Ga" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "Gr" = ( /obj/structure/supply_drop/echo, /obj/structure/platform{ @@ -3399,14 +2743,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/supply) -"Gs" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) "GI" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" @@ -3422,24 +2758,10 @@ "GQ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/squad_one) -"GS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ladder{ - pixel_x = -16; - pixel_y = -27 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/prep_hallway) -"GZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) +"GV" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "Hc" = ( /obj/structure/machinery/shower{ dir = 8 @@ -3448,54 +2770,16 @@ /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) -"Hk" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Hp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"HA" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) -"HJ" = ( -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/obj/item/notepad, -/obj/item/maintenance_jack, -/obj/structure/closet, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 4 +"Hw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/storage/photo_album, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "HL" = ( /turf/open/floor/almayer_hull, /area/space) @@ -3503,6 +2787,10 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"HO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) "HQ" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ dir = 1; @@ -3524,44 +2812,50 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"HV" = ( -/obj/structure/machinery/power/apc/almayer{ +"Id" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/area/golden_arrow/platoon_commander_rooms) -"Ib" = ( -/obj/structure/window/framed/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ij" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"Im" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -5; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_x = 9; + pixel_y = 3 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"If" = ( +"It" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "W"; + pixel_x = -1 }, -/area/golden_arrow/supply) -"In" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/area/golden_arrow/platoon_commander_rooms) -"Is" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/pipes/vents/scrubber{ + dir = 1 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Iu" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -3581,59 +2875,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"IA" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" - }, -/area/space) -"IF" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/prep_hallway) -"IM" = ( -/obj/structure/machinery/light{ - pixel_x = -17; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) +"IB" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "IS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"IW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/machinery/light{ - dir = 1; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"IX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/item/clothing/head/headset{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "Jb" = ( /obj/structure/surface/table/reinforced/almayer_B{ layer = 2.0; @@ -3641,189 +2892,134 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) -"Jc" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 +"Jf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Jn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Jp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Jt" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/mask/cigarette/weed, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 10; + pixel_y = -5 }, -/area/golden_arrow/dorms) -"JL" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Ju" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Jy" = ( +/obj/structure/computer3frame, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"JA" = ( +/obj/effect/decal/cleanable/cobweb{ + dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/item/notepad, +/obj/item/maintenance_jack, +/obj/structure/closet, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 4 }, -/area/golden_arrow/medical) -"JS" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/clothing/glasses/welding{ - pixel_x = -7; - pixel_y = 8 +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/storage/photo_album, +/turf/open/floor/almayer/plate, +/area/golden_arrow/synthcloset) +"JD" = ( +/obj/structure/sign/safety/landingzone{ + pixel_x = -19 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JE" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"JJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"JV" = ( +"JT" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Kc" = ( /obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 10 - }, -/obj/structure/machinery/conveyor{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Ka" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/synthcloset) -"Kd" = ( -/obj/structure/sign/prop3{ - pixel_x = -30 +/obj/structure/machinery/line_nexter{ + dir = 2 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" - }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/dorms) -"Ke" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ - autoname = 0; - req_one_access = list() +/obj/structure/sign/safety/food_storage{ + pixel_x = -20; + pixel_y = 35 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/canteen) +"Kf" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Kg" = ( /turf/closed/wall/almayer, /area/golden_arrow/squad_one) -"Kh" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Ki" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) "Kk" = ( /turf/closed/wall/almayer/white/hull, /area/golden_arrow/medical) -"Ko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"Kp" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ - req_access = list(); - req_one_access_txt = "8;12;13;39" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Ku" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Kw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"KD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"Kl" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"Kt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light, +/obj/item/device/cassette_tape/pop3{ + pixel_y = 3 }, -/area/golden_arrow/cryo_cells) -"KE" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoon_commander_rooms) +"Kz" = ( +/obj/structure/ladder{ + id = "rover1" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"KF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "KG" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"KH" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/medical) "KM" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8; @@ -3831,25 +3027,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"KO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"KN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"KX" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) -"KV" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) "Lf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3858,55 +3047,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Lg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ll" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Lm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"Ln" = ( -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 11 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 12; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/golden_arrow/hangar) -"Lx" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/golden_arrow/canteen) +"Lo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "Ly" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -3914,81 +3058,142 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"LC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_y = 4 +"LE" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/squad_one) -"LK" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +/turf/open/floor/almayer, +/area/golden_arrow/synthcloset) +"LI" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, -/area/golden_arrow/canteen) -"LL" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/closet/crate/construction, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/engineering) +"LR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"LW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/hangar) -"LN" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"LY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dorms" }, -/area/golden_arrow/squad_one) +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "LZ" = ( /obj/structure/machinery/door/airlock/maintenance/colony{ req_one_access = list() }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Mb" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" +"Ma" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + desc = "Its tongs molded together after someone tried a bite of that arcturian curry."; + name = "melted fork"; + pixel_x = -9; + pixel_y = 9 }, -/area/space) -"Mj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/resin_fruit{ + desc = "Never let Joes cook alien cuisine. Eugh."; + name = "arcturian curry"; + pixel_x = 6; + pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/golden_arrow/cryo_cells) -"Mo" = ( -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Ml" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Mm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/squad_one) +"Ms" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 6 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/storage{ + pixel_x = -32 }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) +"Mu" = ( +/obj/structure/sign/prop3{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Mw" = ( +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Radio Telephone Operator" + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) "My" = ( /obj/structure/machinery/door/airlock/almayer/generic{ id = "Delta_1"; @@ -4005,25 +3210,6 @@ "MG" = ( /turf/closed/wall/almayer, /area/golden_arrow/engineering) -"MI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/item/trash/ceramic_plate{ - pixel_y = 1 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 2 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) "MJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -4038,35 +3224,48 @@ /obj/structure/machinery/light/small, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"MN" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +"MT" = ( +/obj/structure/closet/secure_closet/platoon_sergeant_forecon, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MV" = ( +/turf/open/floor/almayer_hull/blackfull, +/area/space) +"MW" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/item/tool/pen{ + pixel_x = -9 }, -/area/golden_arrow/medical) -"MP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/item/folder/black_random{ + pixel_x = 6; + pixel_y = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/phone_base/rotary/no_dnd{ + name = "Squad Leader Telephone"; + phone_category = "Command"; + phone_id = "Squad Leader"; + pixel_x = 6; + pixel_y = -7 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"MY" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/area/golden_arrow/canteen) +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/supply) +"Nb" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) "Nc" = ( /turf/closed/wall/almayer, /area/golden_arrow/dorms) -"Nf" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) "Ni" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -4077,6 +3276,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Nk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Nl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Nr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4084,45 +3301,39 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Ns" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "Nu" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"Ny" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"NB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/golden_arrow/medical) -"Nz" = ( -/obj/structure/bed/chair/office/dark{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"NM" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 6 }, -/area/golden_arrow/squad_one) -"NI" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/machinery/light{ - dir = 1; - pixel_x = -17; - unacidable = 1; - unslashable = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/storage{ + pixel_x = -32 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"NO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Supply Bay" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "NQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4130,49 +3341,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/supply) -"Oc" = ( -/obj/structure/machinery/cm_vending/clothing/medic/forecon, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"Oe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, +/turf/open/floor/almayer/sterile_green, /area/golden_arrow/medical) -"Of" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"Oq" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8; + pixel_y = 6 }, -/area/golden_arrow/canteen) -"Om" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"Or" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + id = "Delta_1"; + name = "\improper Bathroom" }, -/area/golden_arrow/hangar) -"Ov" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/start/marine/forecon, -/obj/effect/landmark/late_join/forecon, /obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "W"; + layer = 2.5 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ow" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) "Oy" = ( /obj/effect/decal/warning_stripes{ @@ -4203,142 +3405,90 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"OC" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" - }, -/area/space) -"OJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/engineering) -"ON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/canteen) -"OO" = ( -/obj/structure/ladder{ - id = "rover3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/prep_hallway) -"OU" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" +"OK" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"OL" = ( +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 }, -/area/golden_arrow/dorms) -"Pf" = ( -/obj/structure/ladder{ - id = "rover2" +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"OP" = ( +/obj/structure/cargo_container/lockmart/left{ + pixel_y = 5 }, -/area/golden_arrow/prep_hallway) -"Pj" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"OV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /obj/effect/decal/warning_stripes{ icon_state = "E"; - pixel_x = 1 + layer = 3.33; + pixel_x = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"OX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"OY" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/sign/safety/manualopenclose, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Pc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/start/marine/smartgunner/forecon, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/cryo_cells) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Ps" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Pt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/golden_arrow/medical) -"Pw" = ( -/obj/structure/cargo_container/lockmart/left{ - pixel_y = 5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"PE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join/forecon, -/obj/effect/landmark/start/marine/smartgunner/forecon, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +"PH" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/cryo_cells) -"PI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/canteen) -"PM" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, -/area/space) -"PN" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Radio Telephone Operator" - }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/standard, -/turf/open/floor/almayer{ - icon_state = "plate" +"PJ" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 }, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/supply) "PY" = ( /obj/structure/machinery/light{ dir = 4; @@ -4352,42 +3502,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"PZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/golden_arrow/engineering) -"Qc" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Qa" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/clothing/glasses/welding{ + pixel_x = -7; + pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Qn" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -4397,59 +3519,78 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/squad_one) +"Qo" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Qp" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Qq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Canteen" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Qy" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Qr" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"QB" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 3.01; - pixel_y = 13 +"Qs" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/area/golden_arrow/hangar) -"QH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"QE" = ( +/obj/structure/machinery/photocopier, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "SE-out"; + pixel_y = -1 }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"QO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; - layer = 3.33; - pixel_x = 2 + pixel_x = 1 }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"QP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/start/marine/forecon, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"QV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "QW" = ( /obj/structure/bed/chair{ dir = 1 @@ -4460,71 +3601,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"QX" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/cryo_cells) -"Ra" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, -/area/space) -"Rc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Rm" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "Rr" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Rs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"Rv" = ( -/obj/structure/bed/chair/comfy{ +"Ru" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/obj/structure/platform, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"Ry" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"RK" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"RL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_y = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) "RO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"Sb" = ( +"RW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"RX" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Sf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Sg" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -4538,12 +3675,8 @@ /obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"Ss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Sr" = ( +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "St" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -4569,37 +3702,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"SM" = ( -/obj/structure/ship_ammo/rocket/keeper, -/turf/open/floor/almayer{ - icon_state = "cargo" +"SH" = ( +/obj/structure/machinery/camera/autoname/golden_arrow, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 16; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"SQ" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"SR" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Corpsman" +"SU" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"SV" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"Ta" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0 }, -/obj/item/clothing/shoes/marine/jungle/knife, -/obj/item/device/radio/headset/almayer/sof/survivor_forecon, -/obj/item/clothing/under/marine/medic/standard, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Tb" = ( +/obj/structure/barricade/handrail{ + dir = 4 }, -/area/golden_arrow/medical) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/canteen) "Tc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Td" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) "Tl" = ( /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; @@ -4617,193 +3759,164 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"To" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 6 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/hangar) -"Tp" = ( -/obj/structure/ladder{ - height = -1; - id = "rover1" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Tr" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/hangar) -"Ts" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/supply) -"Tt" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) "Tu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"Ty" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/golden_arrow/hangar) -"Tz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/gun/flaregun/full, -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) "TD" = ( /turf/closed/wall/almayer/outer, /area/space) +"TF" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) "TJ" = ( /obj/structure/cargo_container/lockmart/mid{ pixel_y = 5 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"TQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 +"TM" = ( +/obj/structure/machinery/sleep_console{ + dir = 8; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"TS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/golden_arrow/platoon_commander_rooms) +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/canteen) "TV" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Uc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/squad_one) -"Ux" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"Uy" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - name = "\improper Engineering Airlock"; - req_one_access = list() +"Uj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluefull, +/area/golden_arrow/hangar) +"Uk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Um" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/engineering) -"Uz" = ( -/turf/open/floor/almayer{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Up" = ( +/obj/structure/machinery/light{ dir = 8; - icon_state = "cargo_arrow" + invisibility = 101 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Uq" = ( +/obj/vehicle/powerloader, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) +"Uv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Ux" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) "UB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"UJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "UO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"Va" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"UV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/golden_arrow/platoon_commander_rooms) -"Vj" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Vo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) "Vp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"Vz" = ( -/turf/closed/wall/almayer/outer, -/area/golden_arrow/hangar) -"VK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) +"Vr" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Vu" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/plate, +/area/golden_arrow/supply) +"Vz" = ( +/turf/closed/wall/almayer/outer, +/area/golden_arrow/hangar) +"VB" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "VX" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Wf" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" +"Wc" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/area/golden_arrow/synthcloset) -"Wg" = ( -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) "Wk" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -4824,81 +3937,65 @@ layer = 2.1; name = "lattice" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating, -/area/golden_arrow/hangar) -"Wn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/hangar) -"Wv" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/golden_arrow/engineering) -"WI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/golden_arrow/hangar) -"WP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/golden_arrow/cryo_cells) -"WV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 6 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating, /area/golden_arrow/hangar) -"Xd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"Wn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/turf/open/floor/almayer, +/area/golden_arrow/hangar) +"Wu" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Wz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Canteen" }, -/obj/structure/machinery/power/apc/almayer{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"WC" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/golden_arrow/medical) +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"WM" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 33 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) +"WR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/gun/flaregun/full, +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"Xe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"Xh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Xi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + name = "\improper Engineering Airlock"; + req_one_access = list() + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Xj" = ( /obj/item/reagent_container/spray/cleaner{ pixel_x = 5; @@ -4913,30 +4010,53 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Xw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 +"Xx" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Xy" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/hangar) +"XN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) -"XF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"XP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Midway Remote Control Console"; + shuttleId = "dropship_midway" }, +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"XW" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "N"; + pixel_y = 2 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"XX" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera" }, +/turf/open/floor/almayer, /area/golden_arrow/engineering) -"XJ" = ( +"Yc" = ( /obj/structure/surface/table/almayer, /obj/item/smartgun_battery{ pixel_x = 4; @@ -4951,33 +4071,20 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/squad_one) -"XP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Midway Remote Control Console"; - shuttleId = "dropship_midway" +"Yf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/bluefull, /area/golden_arrow/platoon_commander_rooms) -"XX" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"Ya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Yg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee/marine, +/obj/item/reagent_container/food/drinks/coffee/marine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Yh" = ( /obj/structure/pipes/vents/pump{ @@ -4985,70 +4092,100 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"Yi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Yj" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, /area/golden_arrow/medical) -"Yk" = ( +"Yl" = ( +/obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Yw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() - }, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -20 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"Yo" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/area/golden_arrow/medical) -"YB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Yt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join/forecon, +/obj/effect/landmark/start/marine/smartgunner/forecon, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Yx" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -6 }, -/area/golden_arrow/platoon_commander_rooms) +/obj/item/trash/plate{ + pixel_y = 3 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Yz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) "YG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"YH" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - desc = "Its tongs molded together after someone tried a bite of that arcturian curry."; - name = "melted fork"; - pixel_x = -9; - pixel_y = 9 +"YK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/resin_fruit{ - desc = "Never let Joes cook alien cuisine. Eugh."; - name = "arcturian curry"; - pixel_x = 6; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/sterile_green, +/area/golden_arrow/medical) +"YO" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + density = 0; + pixel_x = -30 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"YV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/area/golden_arrow/canteen) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "YZ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -5058,12 +4195,69 @@ "Zb" = ( /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Zj" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +"Zf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/grown/lime, +/obj/item/reagent_container/food/snacks/grown/lime{ + pixel_x = -11; + pixel_y = 10 }, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/canteen) +"Zr" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -27 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 + }, +/obj/item/clothing/shoes/marine/jungle/knife, +/obj/item/device/radio/headset/almayer/sof/survivor_forecon, +/obj/item/clothing/under/marine/standard, +/turf/open/floor/almayer/plate, +/area/golden_arrow/dorms) +"Zx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) +"Zz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/squad_one) +"ZB" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/squad_one) "ZC" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/forecon{ req_access = list(); @@ -5074,12 +4268,32 @@ }, /turf/open/floor/almayer, /area/golden_arrow/squad_one) -"ZL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +"ZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 }, -/area/golden_arrow/medical) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"ZX" = ( +/obj/structure/machinery/light{ + pixel_x = -17; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/prep_hallway) (1,1,1) = {" Cr @@ -7134,22 +6348,22 @@ Cr Cr Cr Vz -yc -Et -DW -FH -DW -td -SM +jh +un +Ju +Dd +Ju +dM +nG Vz -Ty -Et -ou -wV -FH -wV -ou -wV +Az +un +Wu +EA +Dd +EA +Wu +EA Vz Cr Cr @@ -7286,22 +6500,22 @@ Cr Cr Cr Vz -wV -Et -wV -Et -wV -Et -wV +EA +un +EA +un +EA +un +EA Vz -As -Et -ou -wV -Et -wV -ou -wV +rm +un +Wu +EA +un +EA +Wu +EA Vz iI iI @@ -7438,29 +6652,29 @@ Cr Cr Cr Vz -Et -kd -WI -WI -WI -cp -Et +un +os +uv +uv +uv +Yi +un Vz -td -Et -kd -WI -Ya -Ya -wZ -td +dM +un +os +uv +mL +mL +fE +dM Vz iI -xj -Ka -eX -be -tI +jL +mE +lM +YO +tj iI Cr Cr @@ -7590,25 +6804,25 @@ Cr Cr Cr Vz -yc -fI +jh +dL Fg Fg kF -lA -SM +wr +nG Vz -wV -Et -fI +EA +un +dL Fg Fg Fg -lA -wV +wr +EA Vz iI -Qc +LE Oy um wX @@ -7742,29 +6956,29 @@ Cr Cr Cr Vz -wV -ge +EA +Yn kF Rr Fg -lA -wV +wr +EA Vz -wV -Et -ge +EA +un +Yn kF Rr Fg -BF -wV +jr +EA Vz iI -Wf +wU wg aN yt -HJ +JA iI Cr Cr @@ -7896,24 +7110,24 @@ Vz Vz Vz Vz -pS -pS -pS +Eq +Eq +Eq Vz Vz Vz Vz Vz Vz -pS -pS -pS +Eq +Eq +Eq Vz Vz Vz iI iI -VK +fN iI iI iI @@ -8048,29 +7262,29 @@ Ag Ag ax Bt -Uz -Uz -jj -WV -jG -Ln -Zj -Is -To -Sb -Uz -Uz +ce +ce +si +NM +hD +aV +pV +DN +Ms +UJ +ce +ce Fg KG AU rA -wm -ou -ou -ou -Pw -Om -oJ +JJ +Wu +Wu +Wu +OP +RX +DQ Cr Cr Cr @@ -8203,12 +7417,12 @@ wB wB Ni Nr -GZ -ex -ap -iZ -tW -Ki +hy +by +FI +cD +Xe +Jf xw Ni Ni @@ -8221,8 +7435,8 @@ qF bb Fg TJ -AH -oJ +VB +DQ Cr Cr Cr @@ -8355,12 +7569,12 @@ Fg Fg Fg DP -AF -lY -sT -Is -fm -FM +Uq +Db +zs +DN +Tr +Ej Lf kF kF @@ -8373,8 +7587,8 @@ kF ya Fg ph -my -oJ +mB +DQ Cr Cr Cr @@ -8500,33 +7714,33 @@ Cr Vz Fg Xk -Qy -ou -ou -ou -ou -ou -Xw -mU -mU -Yk -mU -mU -mU -Rs -ou -ou -ou -ou -ou -Qy +Xx +Wu +Wu +Wu +Wu +Wu +tc +cW +cW +mQ +cW +cW +cW +dA +Wu +Wu +Wu +Wu +Wu +Xx Fg kF lZ Cd Ev -AJ -oJ +Jt +DQ Cr Cr Cr @@ -8652,7 +7866,7 @@ TD Vz Fg Xk -Et +un ln ln ln @@ -8671,14 +7885,14 @@ ln ln ln ln -bN +SQ mi Fg lZ xk cT -qm -oJ +AL +DQ Cr Cr Cr @@ -8804,7 +8018,7 @@ TD Vz kF yC -Et +un ln ln ln @@ -8823,13 +8037,13 @@ ln ln ln ln -Mo +OL Fg Fg op fn Fg -wl +gh Vz Cr Cr @@ -8956,7 +8170,7 @@ TD Vz MF yC -Td +fZ ln ln ln @@ -8975,13 +8189,13 @@ ln ln ln ln -KE +bx Fg Fg lZ nX Fg -qJ +Fz Vz Vz Vz @@ -9104,11 +8318,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh Fg yC -yj +OY ln ln ln @@ -9127,16 +8341,16 @@ ln ln ln ln -ou +Wu kF kF QW Fg Fg -ou -jy -sK -Tp +Wu +JD +Sr +pd Vz Cr Cr @@ -9256,11 +8470,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh kF IS -LL +Eu ln ln ln @@ -9279,16 +8493,16 @@ ln ln ln ln -Qy -Et -Ss -vX -ou -ou -ou -ou -sK -lB +Xx +un +uz +qR +Wu +Wu +Wu +Wu +Sr +es Vz Cr Cr @@ -9408,11 +8622,11 @@ Cr Cr Cr Cr -Mb -wQ +te +Fh Fg yC -Td +fZ ln ln ln @@ -9431,16 +8645,16 @@ ln ln ln ln -ou +Wu Fg Fg yC Fg Fg -ou -ou -sK -qy +Wu +Wu +Sr +iC Vz Cr Cr @@ -9564,7 +8778,7 @@ TD Vz MF yC -yj +OY ln ln ln @@ -9583,13 +8797,13 @@ ln ln ln ln -ou +Wu Fg kF yC Fg Fg -bQ +Xh rA rA rA @@ -9716,7 +8930,7 @@ TD Vz Fg yC -ou +Wu ln ln ln @@ -9735,18 +8949,18 @@ ln ln ln ln -Ns +Qo Fg kF yC Fg Fg -rt +kp MG -Gs -of -vM -qP +aL +OH +rL +rY xe Cr Cr @@ -9868,7 +9082,7 @@ TD Vz Fg Sz -ou +Wu ln ln ln @@ -9887,18 +9101,18 @@ ln ln ln ln -DV +Yg Fg Fg yC Fg Fg -ou +Wu MG -fo +LR tn na -sc +Jy xe Cr Cr @@ -10020,37 +9234,37 @@ Cr Vz Fg Sz -Rm -ou -ou -ou -ou -ou -ou -ou -Et -Hk -ou -ou -ou -ou -ou -ou -ou -Et -ou -eh +JE +Wu +Wu +Wu +Wu +Wu +Wu +Wu +un +sG +Wu +Wu +Wu +Wu +Wu +Wu +Wu +un +Wu +nl Fg Fg IS sw qF -FW -Ke -FG +AO +wF +vj rl tn -Tt +yV xe Cr Cr @@ -10197,9 +9411,9 @@ Fg Xk Fg Fg -ou -rS -ec +Wu +ER +NB dG tD xe @@ -10344,14 +9558,14 @@ Ni Ni Ni iY -vR +ov qF -uO +XN kF Fg -ou -Wv -Fp +Wu +CY +ef Qp XX xe @@ -10480,32 +9694,32 @@ Fg Fg Fg PY -pu -lq -pu +bO +ri +bO gd Nj Fg -vx +pp Fg PY Fg -lq +ri Fg Fg KG AU rA -HA -JS -QB -Wg -ou -ou -Wv -qt +Xy +Qa +mk +Qr +Wu +Wu +CY +fi cl -rS +ER xe Cr Cr @@ -10628,22 +9842,22 @@ Cr ot ot Jb -In -In -In +GV +GV +GV ot -pS -nH -pS +Eq +Fj +Eq Vz rA rA LZ rA rA -Kw +oz Su -Kw +oz lH lH lH @@ -10655,9 +9869,9 @@ lH lH MG MG -Uy +nS MG -EO +Xi xe xe xe @@ -10784,33 +9998,33 @@ bC Ps Yh Nu -ou +Wu Sz -ou +Wu Vz ro ln ln Xj rA -ou +Wu Xk -ou -tA -Rc -jv -yX -Ts -lr -dm -If +Wu +NO +Qs +cM +wf +Um +Ae +QE +Vo lH -pW -xL -EQ -wH -wH -hk +LI +we +UV +Uk +Uk +eT hV xe Cr @@ -10934,35 +10148,35 @@ St Ux HT Ps -ae -FP -hj +Yf +dH +Uj Ly -Et +un Vz AD ln ln hZ rA -Et +un YG -FW -gT -gT +AO +mZ +mZ pI ki iR Oz oQ -tQ +ww lH -AP -dx +BR +hr ua xX rH -hC +Sf zr xe Cr @@ -11088,18 +10302,18 @@ RO Ps mP Nu -ou +Wu Rr -ou +Wu Vz Vz Vz Vz Vz Vz -Et +un lZ -ou +Wu lH ms pw @@ -11107,14 +10321,14 @@ GL NQ Oz oQ -mJ +kP lH -sR -dx +kY +hr qN qN Tc -hC +Sf YZ xe Cr @@ -11240,18 +10454,18 @@ Ps KM GI Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -Et +un lZ -ou +Wu lH CV Oz @@ -11259,14 +10473,14 @@ Oz gS Oz oQ -CD +PJ lH -pF -OJ +zf +bF ua lN gz -XF +Pc sm xe Cr @@ -11387,39 +10601,39 @@ Cr Cr ot Nu -Va +jW Nu Nu Nu Nu -ou +Wu Rr -bQ +Xh Vz Cr Cr Cr Cr Vz -xM +Vr lZ -Vj +wo lH -cX +CG aK sk Oz gL oQ -ff +pY lH -oM -mW -CR -PZ -zK -kD -mR +Kl +Hw +OX +It +YV +ic +pa xe Cr Cr @@ -11539,31 +10753,31 @@ Cr Cr ot ot -lw -pU +yP +ai Ps AQ Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -ou +Wu lZ -Et +un lH Gr -qb -JV -hX -gK -rE -pZ +Ru +hB +Ac +Cn +Vu +bP ls xe xe @@ -11692,28 +10906,28 @@ Cr ot ot wN -pU +ai Ps -Eo +Kt Nu -ou +Wu Rr -ou +Wu Vz Cr Cr Cr Cr Vz -ou +Wu lZ -Et +un ls ls ls -xJ +MY ls -xJ +MY ls ls ls @@ -11843,29 +11057,29 @@ Cr Cr Cr ot -HV -pU +jo +ai Ps -TQ +BQ Nu -ou +Wu Fg -ou +Wu Vz Cr Cr Cr Cr Vz -qC +KN cV -ou +Wu Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -11995,29 +11209,29 @@ Cr Cr Cr ot -Bz -pU +vt +ai Ps -zD +BA Nu -ou +Wu Fg -ou +Wu Vz Cr Cr Cr Cr Vz -dR +jn Fg -ou +Wu Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12149,27 +11363,27 @@ Cr ot ot Nu -cU +Zx Nu ot -pS -pS -pS +Eq +Eq +Eq Vz Cr Cr Cr Cr Vz -pS -pS -pS +Eq +Eq +Eq Vz Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12300,9 +11514,9 @@ Cr Cr Cr ot -hf -YB -lf +se +Jn +Ry ot Cr Cr @@ -12319,9 +11533,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12454,7 +11668,7 @@ Cr ot Hc xW -aA +yl ot Cr Cr @@ -12471,9 +11685,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12623,9 +11837,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12775,9 +11989,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -12927,9 +12141,9 @@ Cr Cr Cr ls -lm +wq ls -lm +wq ls Cr Cr @@ -13079,9 +12293,9 @@ ls ls ls ls -lm +wq ls -lm +wq ls Cr Cr @@ -13228,12 +12442,12 @@ Cr Cr Cr ls -qE -qE -qE -Au -qE -Au +bJ +bJ +bJ +sQ +bJ +sQ ls Cr Cr @@ -14898,17 +14112,17 @@ Cr Cr Cr Kk -wz -rv -Ll -Dx +hv +Yz +rc +pf Kk pB pB pB pB -Ra -kq +SV +ed Cr Cr Cr @@ -15050,18 +14264,18 @@ Cr Cr Cr Kk -SR -zi -wx -Pt +qI +Kf +RK +aO wD -fj -Pf -OO +Kz +bh +Dq pB HL HL -kq +ed Cr Cr Cr @@ -15202,19 +14416,19 @@ Cr Cr Cr Kk -Oc -hN -MN -ml +hR +Oe +iF +pm wD -Cl -Cl -GS +TF +TF +nn pB HL HL HL -kq +ed Cr Cr Cr @@ -15355,19 +14569,19 @@ Cr Cr Kk wD -mf +cI Yj wD wD -kG +gi lv -ir +ze pB HL -IA -IA +in +in HL -sN +ei Cr Cr Cr @@ -15506,20 +14720,20 @@ Cr Cr Cr Kk -Yw -EY -qV -tS +ns +KF +LW +fR wD -AW +vP mM -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -15658,20 +14872,20 @@ Cr Cr Cr Kk -ZL -EY -ca -oo +ES +KF +iq +kK Yj -KV +bW kC -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -15810,20 +15024,20 @@ Cr Cr Cr Kk -IW -Ny -DB -kU +kA +CI +BD +bc AK -FL +HO Tu -KV -IF -Bc -jF -jF -Mb -Bc +bW +vD +Nb +MV +MV +te +Nb Cr Cr Cr @@ -15962,20 +15176,20 @@ Cr Cr Cr Kk -KO -vT -oc -he +OV +yg +FF +TM Yj -KV +bW mM -KV +bW pB HL -Ra -Ra +SV +SV HL -Bc +Nb Cr Cr Cr @@ -16114,20 +15328,20 @@ Cr Cr Cr Kk -JL -xx -qi -Dc +bm +cL +oI +Oq wD -Fv +th kC -IM +ZX pB HL HL HL HL -Bc +Nb Cr Cr Cr @@ -16266,20 +15480,20 @@ Cr Cr Cr Kk -KH -Xd -KH +KX +YK +KX wD wD -EW +lo kC -KV +bW pB pB HL HL HL -Bc +Nb Cr Cr Cr @@ -16422,16 +15636,16 @@ wD wD wD wD -zV -KV +Ij +bW mM -to -rD +WM +jT pB HL HL HL -Bc +Nb Cr Cr Cr @@ -16583,7 +15797,7 @@ GQ GQ HL HL -Bc +Nb Cr Cr Cr @@ -16726,11 +15940,11 @@ yu yu Kg Kg -en -pM +kH +nv fB -Uc -jO +yh +hM Kg GQ GQ @@ -16877,17 +16091,17 @@ GQ yu yu Kg -fy -ag +gX +JT Vp fB mv -ag -Bh +JT +nN Kg -tJ -lp -ad +gR +pe +BV GQ Cr Cr @@ -17021,25 +16235,25 @@ Cr Cr Cr Cr -OC -Ra -Ra +SU +SV +SV TD GQ yu yu Kg -bS +kJ mv Vp lh UO UO -iQ +Mm dB -uo -hI -ag +tX +BO +JT GQ Cr Cr @@ -17172,7 +16386,7 @@ Cr Cr Cr Cr -OC +SU HL HL HL @@ -17181,13 +16395,13 @@ GQ Kg Kg Kg -EF +gm mv mv qA mv mv -sY +CX Kg Kg Kg @@ -17324,27 +16538,27 @@ Cr Cr Cr Cr -Mb +te HL HL HL HL -lQ -Tz -zZ +ZB +WR +Ml Kg -ez +SH mv mv ZC Vp mv -iy +bk Kg -wd -dv -nz -qx +Im +Ta +MW +yG GQ Cr Cr @@ -17476,27 +16690,27 @@ Cr Cr Cr Cr -Mb +te HL sq HL HL -lQ -LC -io +ZB +RL +yq HQ -Bw +ye UO UO HM UO UO -iQ +Mm Qn -uo -Nz -LN -Kp +tX +ZA +RW +ho GQ Cr Cr @@ -17628,27 +16842,27 @@ Cr Cr Cr Cr -Mb +te HL HL HL HL -lQ -nx -IX +ZB +BY +AX Kg -uC -CO +EP +tR mv iB mv aC -XJ +Yc Kg -fM -jQ -vy -Hp +MT +aG +yf +Ga GQ Cr Cr @@ -17780,7 +16994,7 @@ Cr Cr Cr Cr -PM +qu HL HL HL @@ -17791,9 +17005,9 @@ Kg Kg Kg Kg -Qq -Ib -Qq +vi +aI +vi Kg Kg Kg @@ -17933,7 +17147,7 @@ Cr Cr Cr Cr -PM +qu HL HL TD @@ -17942,20 +17156,20 @@ aB aB dV dV -sp -eJ -DH -eJ -lJ -eJ -AG +FO +yd +zC +yd +nE +yd +LY Zb -Jc -fs +xz +Zr eB -vI +yJ FT -Kd +Mu eF la Cr @@ -18086,21 +17300,21 @@ Cr Cr Cr Cr -Mb +te HL TD rQ aB aB dV -ar -fk -sX -Kh -Rv -dz -PI -Fs +IB +Kc +QV +wG +iT +st +Ec +Lo iX tM tM @@ -18238,20 +17452,20 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -ar -eL -dJ -YH -jY -fP -Of +IB +wi +Yl +Ma +sO +Yx +ci Nc ix lI @@ -18390,28 +17604,28 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -NI -eL -dJ -MI -DM -qs -oR +yY +wi +Yl +cz +kx +Zf +WC Nc -PN -Ap -Ey -OU +Mw +Yo +ia +rJ bf -AA -zF +pl +mX VX la Cr @@ -18542,20 +17756,20 @@ Cr Cr Cr Cr -Mb +te HL HL rQ aB aB dV -ar -Lx -ON -MP -vS -vS -LK +IB +Tb +BI +Wc +DZ +DZ +xq la la la @@ -18694,7 +17908,7 @@ Cr Cr Cr Cr -Mb +te HL HL rQ @@ -18702,12 +17916,12 @@ aB aB dV dV -dN -Ko -jp -yB -tG -Dv +TS +ak +mS +BP +bl +Nk rQ Cr Cr @@ -18846,7 +18060,7 @@ Cr Cr Cr Cr -Mb +te HL HL rQ @@ -18855,9 +18069,9 @@ dV dV dV dV -je -hW -je +Bg +Wz +Bg dV dV rQ @@ -18998,7 +18212,7 @@ Cr Cr Cr Cr -Mb +te HL HL HL @@ -19007,9 +18221,9 @@ OA Bj Bj fX -sv -sZ -vq +nj +nC +tE fX Bj Bj @@ -19156,15 +18370,15 @@ ko ko ko OA -dd -Mj -DC -hm -rT -Lg -qo -Mj -cs +Ba +rx +OK +bY +Nl +Jp +Up +rx +nd lg ko Cr @@ -19308,15 +18522,15 @@ fX Sn fX OA -Lm -fO -fO -vd +XW +kw +kw +kS fX -cJ -fO -fO -do +eU +kw +kw +hd lg ko Cr @@ -19460,15 +18674,15 @@ fX My fX fX -WP -fO -fO -ea +Id +kw +kw +oh fX -fO -fO -fO -wa +kw +kw +kw +gs fX ko Cr @@ -19607,21 +18821,21 @@ Cr Cr ko fq -cS -QH -gc -rz -zU -KD -tt -KD -Ew -Ku -fO -fO -jt -Lg -uJ +lk +ZU +Zz +Or +xF +xB +QO +xB +iu +QD +kw +kw +Uv +Jp +uA ko Cr Cr @@ -19763,17 +18977,17 @@ AC mH AC fX -Ov -dE +ym +wc Dw -Pj -jb +iW +QP Dw -tO -pi +yU +uw Dw -hG -PE +Fm +Yt ko Cr Cr @@ -19915,17 +19129,17 @@ ko ko ko ko -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH Dw -Nf -QX +Ow +PH ko Cr Cr @@ -23093,11 +22307,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +xR +xR +xR +xR +xR Cr Cr Cr @@ -23245,11 +22459,11 @@ Cr Cr Cr Cr -aS +xR gB -aS -aS -aS +xR +xR +xR Cr Cr Cr @@ -23397,11 +22611,11 @@ Cr Cr Cr Cr -aS -aS -aS -aS -aS +xR +xR +xR +xR +xR Cr Cr Cr diff --git a/maps/new_varadero.json b/maps/new_varadero.json index d695652d0c..ec90142c22 100644 --- a/maps/new_varadero.json +++ b/maps/new_varadero.json @@ -11,7 +11,7 @@ "/datum/equipment_preset/survivor/chaplain/nv", "/datum/equipment_preset/survivor/engineer/nv", "/datum/equipment_preset/survivor/trucker/nv", - "/datum/equipment_preset/survivor/interstellar_commerce_commission_liason/nv", + "/datum/equipment_preset/survivor/interstellar_commerce_commission_liaison/nv", "/datum/equipment_preset/survivor/security/nv", "/datum/equipment_preset/survivor/beachbum", "/datum/equipment_preset/survivor/miner", diff --git a/maps/predship/huntership.dmm b/maps/predship/huntership.dmm index 3605d8a120..54504f1196 100644 --- a/maps/predship/huntership.dmm +++ b/maps/predship/huntership.dmm @@ -2,16 +2,6 @@ "aa" = ( /turf/open/space, /area/space) -"ab" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/sheet/animalhide/xeno/kinghide, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "ac" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ color = "#aba9a9"; @@ -119,81 +109,12 @@ }, /turf/open/floor/sandstone/runed, /area/yautja) -"an" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"ao" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/shoes/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "y-boots2"; - pixel_y = 29 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_n"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_n"; - pixel_y = 29 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "ap" = ( /obj/structure/stairs/perspective{ color = "#b29082" }, /turf/open/shuttle/predship, /area/yautja) -"aq" = ( -/obj/item/clothing/yautja_cape/ceremonial{ - anchored = 1; - color = "#292b29"; - pixel_x = 2; - pixel_y = 32 - }, -/obj/item/clothing/shoes/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "y-boots2"; - pixel_y = 30 - }, -/obj/item/clothing/suit/armor/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "halfarmor_elder_joshuu"; - pixel_y = 30 - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - color = "#FFE55C"; - icon_state = "pred_mask_elder_joshuu"; - pixel_y = 30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "ar" = ( /obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; @@ -201,53 +122,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"as" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"at" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"au" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 80; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"av" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "aw" = ( /obj/structure/curtain/red, /turf/open/shuttle/predship, @@ -285,451 +159,123 @@ /obj/item/clothing/under/chainshirt/thrall, /turf/open/floor/sandstone/runed, /area/yautja) -"aB" = ( -/obj/structure/closet/crate/critter, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"aJ" = ( +/obj/structure/shuttle/window{ + color = "#6b675e" }, +/turf/open/floor/grey_dark2, /area/yautja) -"aC" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/obj/item/hunting_trap, -/turf/open/floor/corsat{ +"aP" = ( +/obj/structure/machinery/door/airlock/yautja{ dir = 1; - icon_state = "squareswood" + name = "\improper Trophy Room" }, +/turf/open/shuttle/predship, /area/yautja) -"aD" = ( -/obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"aT" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Operation Room" }, +/turf/open/shuttle/predship, /area/yautja) -"aE" = ( +"bd" = ( +/obj/effect/step_trigger/teleporter/yautja_ship, +/turf/open/floor/light, +/area/yautja) +"bh" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/tool/surgery/cautery/predatorcautery, -/obj/item/tool/surgery/circular_saw/predatorbonesaw, -/obj/item/tool/surgery/hemostat/predatorhemostat, -/obj/item/tool/surgery/retractor/predatorretractor, -/obj/item/tool/surgery/scalpel/predatorscalpel, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"aF" = ( -/obj/item/clothing/gloves/yautja/hunter{ - anchored = 1; - can_block_movement = 1; - charge = 1; - charge_max = 1; - color = "#a8a7a5"; - density = 1; - desc = "The ship's on-board self destruct system, let's hope you never have to use it."; - name = "Self Destruct System" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"aG" = ( -/obj/structure/machinery/power/smes/magical{ - capacity = 9e+008; - charge = 9e+008; +/obj/structure/window/reinforced{ dir = 4; - name = "plasma power generator" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"aI" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 + health = 80 }, -/obj/item/device/flashlight/slime, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ +/obj/structure/window/reinforced{ dir = 8; - icon_state = "phoronrwindow" + health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/reagent_container/glass/rag/polishing_rag, +/obj/item/reagent_container/glass/rag/polishing_rag{ + pixel_x = 9 + }, +/obj/item/reagent_container/glass/rag/polishing_rag{ + pixel_x = 4; + pixel_y = 3 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"aK" = ( -/obj/structure/shuttle/engine/heater{ +"bi" = ( +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/obj/item/device/flashlight/slime, -/obj/structure/window/phoronreinforced, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"bj" = ( +/turf/closed/wall/huntership, +/area/yautja) +"bl" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Starboard Wing" }, +/turf/open/shuttle/predship, /area/yautja) -"aL" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 +"bm" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Port Wing" }, -/turf/open/floor/corsat{ +/turf/open/shuttle/predship, +/area/yautja) +"bp" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; - icon_state = "squareswood" + name = "\improper Research Chamber" }, +/turf/open/shuttle/predship, /area/yautja) -"aN" = ( -/obj/structure/machinery/computer/cryopod/yautja, -/turf/open/floor/corsat{ +"br" = ( +/obj/item/stool, +/turf/open/shuttle/predship, +/area/yautja) +"bu" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; - icon_state = "squareswood" + name = "\improper Burial Room" }, +/turf/open/shuttle/predship, /area/yautja) -"aP" = ( +"bw" = ( +/obj/structure/pipes/standard/simple/hidden, +/turf/open/shuttle/predship, +/area/yautja) +"bx" = ( /obj/structure/machinery/door/airlock/yautja{ dir = 1; - name = "\improper Trophy Room" + name = "\improper Storage Chamber" }, /turf/open/shuttle/predship, /area/yautja) -"aQ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/surgery/FixOVein/predatorFixOVein, -/obj/item/tool/surgery/bonegel/predatorbonegel, -/obj/item/tool/surgery/bonesetter/predatorbonesetter, -/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, -/turf/open/floor/corsat{ +"bD" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; - icon_state = "squareswood" + name = "\improper Heavy Armory" }, +/obj/structure/machinery/door/poddoor/shutters/almayer/yautja, +/turf/open/shuttle/predship, /area/yautja) -"aT" = ( +"bG" = ( /obj/structure/machinery/door/airlock/yautja{ - name = "\improper Operation Room" + name = "\improper Cooler Room" }, /turf/open/shuttle/predship, /area/yautja) -"aV" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/yautja/knife, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"aW" = ( -/obj/structure/machinery/optable, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"aX" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/decal/remains/xeno{ - pixel_x = -31 - }, -/obj/structure/showcase{ - desc = "A console equipped with a radar used by the Hunters to detect gear and good hunting grounds."; - dir = 4; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "terminal"; - name = "Radar Console"; - pixel_x = -7 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"aY" = ( -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/pipes/portables_connector{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bb" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 - }, -/obj/structure/machinery/computer/crew/alt/yautja{ - pixel_y = 24 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bc" = ( -/obj/structure/machinery/cryopod{ - dir = 1 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"bd" = ( -/obj/effect/step_trigger/teleporter/yautja_ship, -/turf/open/floor/light, -/area/yautja) -"be" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Blooded Teleporter" - }, -/turf/open/floor/strata{ - icon_state = "multi_tiles" - }, -/area/yautja) -"bg" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/sheet/mineral/sandstone/large_stack, -/obj/item/stack/sheet/mineral/sandstone/large_stack, -/obj/item/stack/sheet/mineral/sandstone/large_stack, -/obj/item/stack/sheet/mineral/sandstone/large_stack, -/obj/item/stack/sheet/mineral/sandstone/large_stack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bj" = ( -/turf/closed/wall/huntership, -/area/yautja) -"bl" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Starboard Wing" - }, -/turf/open/shuttle/predship, -/area/yautja) -"bm" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Port Wing" - }, -/turf/open/shuttle/predship, -/area/yautja) -"bn" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/obj/item/weapon/harpoon/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bo" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bp" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - dir = 1; - name = "\improper Research Chamber" - }, -/turf/open/shuttle/predship, -/area/yautja) -"bq" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/gun/energy/yautja/plasma_caster{ - anchored = 1; - desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; - name = "damaged plasma caster" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"br" = ( -/obj/item/stool, -/turf/open/shuttle/predship, -/area/yautja) -"bs" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bu" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - dir = 1; - name = "\improper Burial Room" - }, -/turf/open/shuttle/predship, -/area/yautja) -"bv" = ( -/obj/structure/closet/coffin/predator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bw" = ( -/obj/structure/pipes/standard/simple/hidden, -/turf/open/shuttle/predship, -/area/yautja) -"bx" = ( -/obj/structure/machinery/door/airlock/yautja{ - dir = 1; - name = "\improper Storage Chamber" - }, -/turf/open/shuttle/predship, -/area/yautja) -"by" = ( -/obj/structure/showcase{ - desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; - icon_state = "yaut"; - name = "alien sarcophagus" - }, -/obj/item/clothing/mask/gas/yautja/hunter{ - anchored = 1; - pixel_y = 20 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bz" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bA" = ( -/obj/structure/machinery/chem_dispenser{ - req_skill_level = 2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bD" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - dir = 1; - name = "\improper Heavy Armory" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/yautja, -/turf/open/shuttle/predship, -/area/yautja) -"bE" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bG" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Cooler Room" - }, -/turf/open/shuttle/predship, -/area/yautja) -"bH" = ( -/obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bI" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bJ" = ( -/obj/structure/pipes/unary/freezer{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bK" = ( -/obj/structure/pipes/standard/simple/hidden{ - dir = 4 - }, -/turf/open/shuttle/predship, -/area/yautja) -"bL" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"bK" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, +/turf/open/shuttle/predship, /area/yautja) "bM" = ( /obj/structure/surface/table/reinforced/prison{ @@ -744,16 +290,7 @@ name = "runed hull" }, /area/yautja) -"bO" = ( -/obj/structure/bed/alien{ - color = "#aba9a9" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"bQ" = ( +"bP" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, @@ -762,10 +299,7 @@ desc = "Claws from a creature that defies nature, you dare not touch it."; force = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "bS" = ( /obj/structure/pipes/standard/simple/hidden{ @@ -773,6 +307,14 @@ }, /turf/open/shuttle/predship, /area/yautja) +"bT" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/tool/pickaxe/jackhammer, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) "bU" = ( /obj/structure/machinery/door_control{ id = "Cell Lockdown 1"; @@ -817,27 +359,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"bY" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/XenoItem/ChitinPlate, -/obj/item/XenoItem/ChitinPlate, -/obj/item/stack/sheet/xenochitin, -/obj/item/stack/sheet/xenochitin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"ca" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" - }, -/area/yautja) "cb" = ( /obj/structure/machinery/door_control{ id = "Cell Lockdown 2"; @@ -857,16 +378,6 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_west, /area/yautja) -"cd" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/spawner/random/toy, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "ce" = ( /obj/structure/machinery/door/airlock/yautja/secure{ name = "\improper Prisoner Cell 2"; @@ -911,22 +422,9 @@ }, /turf/closed/wall/huntership, /area/yautja) -"cj" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cl" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/alienjar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"ci" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/darkred2/southeast, /area/yautja) "cm" = ( /obj/structure/machinery/door/airlock/yautja/secure{ @@ -952,29 +450,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"co" = ( -/obj/structure/machinery/gravity_generator, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 8; - icon_state = "phoronrwindow" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cq" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "cr" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -989,37 +464,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"cu" = ( -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/stew{ - pixel_y = 3 - }, -/obj/structure/closet/secure_closet/freezer/fridge{ - locked = 0 - }, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" - }, -/area/yautja) "cv" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1051,50 +495,6 @@ /obj/item/clothing/mask/muzzle, /turf/open/shuttle/predship, /area/yautja) -"cx" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cy" = ( -/obj/structure/machinery/gravity_generator, -/obj/structure/window/phoronreinforced{ - icon_state = "phoronrwindow" - }, -/obj/structure/window/phoronreinforced{ - dir = 4; - icon_state = "phoronrwindow" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cz" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/sheet/animalhide/xeno{ - color = "#7899ab"; - desc = "A strange hide from an enigmatic creature."; - name = "deacon hide" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cA" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Elder Teleporter" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "cB" = ( /obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; @@ -1102,19 +502,9 @@ }, /turf/open/shuttle/predship, /area/yautja) -"cC" = ( -/obj/structure/machinery/autolathe/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cE" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"cD" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/darkred2/east, /area/yautja) "cF" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -1123,119 +513,6 @@ }, /turf/open/shuttle/predship, /area/yautja) -"cG" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"cH" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/encryptionkey/yautja{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/radio/headset/yautja{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cI" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/twohanded/sledgehammer{ - anchored = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "cJ" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1252,6 +529,47 @@ /obj/item/reagent_container/food/drinks/drinkingglass, /turf/open/shuttle/predship, /area/yautja) +"cK" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = 12 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = 8 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = 4 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = -4 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = -12 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + pixel_x = -8 + }, +/turf/open/shuttle/predship, +/area/yautja) "cL" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" @@ -1261,164 +579,13 @@ }, /turf/open/shuttle/predship, /area/yautja) -"cN" = ( -/obj/structure/cryofeed, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cO" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"cM" = ( +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "cP" = ( /turf/open/shuttle/predship, /area/yautja) -"cQ" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cR" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/effect/decal/remains/xeno{ - pixel_x = 33 - }, -/obj/structure/showcase{ - desc = "A console equipped with a radar used by the Hunters to detect gear and good hunting grounds."; - dir = 8; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "terminal"; - name = "Radar Console"; - pixel_x = 7 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"cS" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/clothing/shoes/combat, -/obj/item/clothing/under/chainshirt/hunter, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/head/helmet/gladiator, -/obj/item/clothing/suit/armor/gladiator, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cT" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/tool/pickaxe, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cU" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/tool/extinguisher, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cV" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/tool/weldingtool/hugetank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cW" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/stack/cable_coil, -/obj/item/tool/screwdriver{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cX" = ( -/obj/item/storage/backpack/yautja, -/obj/item/storage/backpack/yautja, -/obj/item/storage/backpack/yautja, -/obj/item/storage/backpack/yautja, -/obj/item/storage/backpack/yautja, -/obj/item/device/flashlight/lantern, -/obj/item/device/flashlight/lantern, -/obj/item/device/flashlight/lantern, -/obj/item/device/flashlight/lantern, -/obj/item/device/flashlight/lantern, -/obj/item/stack/yautja_rope, -/obj/item/clothing/under/chainshirt/hunter, -/obj/item/clothing/under/chainshirt/hunter, -/obj/item/clothing/under/chainshirt/hunter, -/obj/structure/closet/crate{ - color = "#6b675e" - }, -/obj/item/device/healthanalyzer/alien, -/obj/item/device/healthanalyzer/alien, -/obj/item/device/healthanalyzer/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"cY" = ( -/obj/item/tool/kitchen/tray{ - pixel_y = -3 - }, -/obj/item/reagent_container/food/snacks/meat/corgi, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"cZ" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" - }, -/area/yautja) -"da" = ( +"da" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, @@ -1427,49 +594,26 @@ }, /turf/open/shuttle/predship, /area/yautja) -"db" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/tool/pickaxe/jackhammer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"dc" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - dir = 1; - name = "\improper Research Containment" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"dm" = ( +/obj/structure/machinery/door_control{ + id = "Cell Lockdown 5"; + name = "Cell Lockdown 5"; + pixel_x = -7; + pixel_y = 9; + req_one_access_txt = "390;391;392" }, +/turf/closed/wall/huntership, /area/yautja) -"de" = ( -/obj/structure/kitchenspike, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/turf/open/floor{ - dir = 5; - icon_state = "darkred2" +"do" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 4 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"df" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +"dw" = ( +/turf/open/gm/dirtgrassborder/south, /area/yautja) -"di" = ( +"dD" = ( /obj/item/storage/fancy/egg_box, /obj/item/storage/fancy/egg_box, /obj/item/reagent_container/food/snacks/grown/tomato, @@ -1492,52 +636,13 @@ /obj/structure/closet/secure_closet/freezer/fridge{ locked = 0 }, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" - }, -/area/yautja) -"dj" = ( -/obj/effect/alien/egg/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"dk" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"dl" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" }, -/area/yautja) -"dm" = ( -/obj/structure/machinery/door_control{ - id = "Cell Lockdown 5"; - name = "Cell Lockdown 5"; - pixel_x = -7; - pixel_y = 9; - req_one_access_txt = "390;391;392" +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" }, -/turf/closed/wall/huntership, -/area/yautja) -"dw" = ( -/turf/open/gm/dirtgrassborder/south, +/turf/open/floor/darkred2/north, /area/yautja) "dI" = ( /turf/open/space/basic, @@ -1548,6 +653,12 @@ }, /turf/closed/wall/mineral/sandstone/runed/decor, /area/yautja) +"ec" = ( +/obj/structure/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "eg" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -1555,16 +666,31 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/yautja) -"er" = ( +"el" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/item/device/flashlight/slime, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"eu" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 9; + dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"eM" = ( +/obj/structure/window/framed/colony/reinforced/hull{ + color = "#aba9a9" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "eS" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -1574,80 +700,16 @@ }, /turf/open/shuttle/predship, /area/yautja) -"eT" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "eY" = ( /obj/structure/bed/chair/hunter{ dir = 4 }, /turf/open/shuttle/predship, /area/yautja) -"fb" = ( -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, -/area/yautja) -"fg" = ( -/obj/item/map/current_map, -/obj/item/device/flashlight/lantern, -/obj/structure/closet, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "fj" = ( /obj/structure/machinery/cryopod, /turf/open/shuttle/predship, /area/yautja) -"fo" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/item/storage/box/bracer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"fq" = ( -/obj/structure/window/framed/colony/reinforced/hull{ - color = "#aba9a9" - }, -/turf/open/floor/holofloor{ - icon_state = "cult" - }, -/area/yautja) -"fB" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/XenoItem/AntiAcid, -/obj/item/XenoItem/AntiAcid, -/obj/item/XenoItem/AntiAcid, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) "fF" = ( /obj/structure/surface/rack{ color = "#6b675e"; @@ -1679,321 +741,733 @@ }, /turf/open/shuttle/predship, /area/yautja) -"fS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +"fR" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/area/yautja) -"gb" = ( -/obj/structure/closet/crate{ - color = "#6b675e" +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = 6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = 6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = 6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = 6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/bruise_pack/predator{ - pixel_x = 6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = -6 - }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = -6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = -6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = -6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/stack/medical/advanced/ointment/predator{ - pixel_x = -6 +/obj/item/stack/sheet/metal{ + amount = 50 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"gc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/obj/item/xeno_egg/forsaken, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"gp" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"gf" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/chainshirt/hunter, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/suit/armor/gladiator, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"gr" = ( -/obj/structure/closet/crate/secure{ - req_one_access_txt = "392"; +"go" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"gI" = ( +/obj/structure/stairs/perspective{ color = "#6b675e"; - name = "Secure Yautja crate" + dir = 9; + icon_state = "p_stair_full" }, -/obj/item/explosive/grenade/spawnergrenade/hellhound, -/obj/item/explosive/grenade/spawnergrenade/hellhound, -/obj/item/explosive/grenade/spawnergrenade/hellhound, -/obj/item/explosive/grenade/spawnergrenade/hellhound, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"gN" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/storage/belt/utility/full/pred, +/obj/item/storage/belt/utility/full/pred, +/obj/item/storage/belt/utility/full/pred, +/obj/item/storage/belt/utility/full/pred, +/obj/item/storage/belt/utility/full/pred, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ha" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"ho" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/pipes/portables_connector{ + dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"ic" = ( +/obj/structure/window/framed/colony/reinforced/hull{ + color = "#aba9a9" }, +/turf/open/floor/strata/grey_multi_tiles/southwest, /area/yautja) -"hI" = ( -/obj/structure/shuttle/window{ +"if" = ( +/obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor{ - color = "#525151"; - icon_state = "dark2" - }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"hJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"in" = ( +/turf/open/floor/dark2, +/area/yautja) +"iu" = ( +/obj/structure/window/framed/colony/reinforced/hull{ + color = "#aba9a9" }, -/obj/structure/barricade/handrail/strata{ - dir = 4 +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"ix" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/obj/item/stack/sheet/mineral/sandstone/runed/large_stack, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"iC" = ( +/obj/structure/xenoautopsy/tank/alien, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"iX" = ( +/obj/structure/machinery/chem_dispenser{ + req_skill_level = 2 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"hY" = ( -/obj/structure/kitchenspike, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"jg" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"is" = ( -/obj/structure/kitchenspike, -/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, -/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +"jr" = ( +/obj/structure/bed/alien{ + color = "#aba9a9" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"iV" = ( +"ju" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/trash/tray, +/obj/item/tool/kitchen/tray, /obj/item/tool/kitchen/utensil/fork{ pixel_x = 10; pixel_y = 3 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"jL" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ dir = 1; - icon_state = "squareswood" + name = "\improper Research Containment" }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"jR" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"jP" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + name = "duelling claymore" + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + name = "duelling claymore"; + pixel_x = -5 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + name = "duelling claymore"; + pixel_x = 5 + }, +/obj/item/weapon/sword{ + attack_speed = 12; + force = 25; + name = "duelling claymore"; + pixel_x = 10 + }, +/turf/open/shuttle/predship, +/area/yautja) +"jY" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/encryptionkey/yautja{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/radio/headset/yautja{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"kc" = ( +/obj/structure/closet/crate/secure{ + req_one_access_txt = "392"; + color = "#6b675e"; + name = "Secure Yautja crate" }, +/obj/item/explosive/grenade/spawnergrenade/hellhound, +/obj/item/explosive/grenade/spawnergrenade/hellhound, +/obj/item/explosive/grenade/spawnergrenade/hellhound, +/obj/item/explosive/grenade/spawnergrenade/hellhound, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"jU" = ( +"kg" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/darkred2/west, +/area/yautja) +"kH" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/tool/crowbar, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"kJ" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"kK" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 6; + dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"kA" = ( +"kM" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/weapon/twohanded/dualsaber{ - force_wielded = 35 +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"lr" = ( -/obj/structure/lamarr, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"kS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/storage/medicomp/full, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"lw" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert1" +"kU" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 6; + icon_state = "p_stair_full" }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"nd" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert0" +"kX" = ( +/obj/structure/bed/chair/hunter{ + dir = 8 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"nh" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 +"ld" = ( +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 3; + pixel_y = 3 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_x = -2; + pixel_y = 3 }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_y = 3 + }, +/obj/structure/closet/secure_closet/freezer/fridge{ + locked = 0 + }, +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" + }, +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" + }, +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" + }, +/obj/item/reagent_container/food/snacks/xemeatpie{ + name = "Elite Hunter's Xenopie" + }, +/turf/open/floor/darkred2/southwest, /area/yautja) -"nv" = ( +"lp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"lz" = ( +/obj/item/stack/sheet/animalhide/xeno{ + anchored = 1; + name = "Prime Empress Hide"; + pixel_y = 30 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"lO" = ( +/obj/item/storage/backpack/yautja, +/obj/item/storage/backpack/yautja, +/obj/item/storage/backpack/yautja, +/obj/item/storage/backpack/yautja, +/obj/item/storage/backpack/yautja, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/device/flashlight/lantern, +/obj/item/stack/yautja_rope, +/obj/item/clothing/under/chainshirt/hunter, +/obj/item/clothing/under/chainshirt/hunter, +/obj/item/clothing/under/chainshirt/hunter, +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/obj/item/device/healthanalyzer/alien, +/obj/item/device/healthanalyzer/alien, +/obj/item/device/healthanalyzer/alien, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"lS" = ( +/obj/structure/xenoautopsy/tank/hugger, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"me" = ( /obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, -/obj/structure/machinery/power/apc/almayer{ +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/obj/item/hunting_trap, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"mg" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/item/device/flashlight/slime, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ dir = 4; - pixel_y = 25 + icon_state = "phoronrwindow" }, -/obj/item/weapon/twohanded/yautja/spear, -/obj/item/weapon/twohanded/yautja/spear, -/obj/item/weapon/twohanded/yautja/spear, -/obj/item/weapon/twohanded/yautja/spear, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"mh" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden{ + dir = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"nT" = ( +"ml" = ( +/obj/structure/kitchenspike, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat, +/turf/open/floor/darkred2/west, +/area/yautja) +"mD" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ + name = "\improper Hellhound Quarters" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"mF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 +/obj/item/alien_embryo, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"mM" = ( +/obj/structure/window/framed/colony/reinforced/hull{ + color = "#aba9a9" }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +/turf/open/floor/holofloor/cult, +/area/yautja) +"mS" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/machinery/door/window/southright, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/barricade/handrail/strata{ + dir = 4 }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"mY" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"na" = ( +/turf/open/floor/darkred2/east, +/area/yautja) +"nm" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja, +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja) +"nM" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ + name = "\improper Heavy Armory" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/yautja{ + dir = 4 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) "nW" = ( /obj/structure/pipes/standard/simple/hidden{ dir = 6 }, -/turf/open/shuttle/predship, +/turf/open/shuttle/predship, +/area/yautja) +"pf" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"pm" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/weapon/gun/energy/yautja/plasmapistol{ + pixel_y = -8 + }, +/obj/item/weapon/gun/energy/yautja/plasmapistol, +/obj/item/weapon/gun/energy/yautja/plasmapistol{ + pixel_y = 8 + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"pn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"pB" = ( +/obj/item/clothing/gloves/yautja/hunter{ + anchored = 1; + can_block_movement = 1; + charge = 1; + charge_max = 1; + color = "#a8a7a5"; + density = 1; + desc = "The ship's on-board self destruct system, let's hope you never have to use it."; + name = "Self Destruct System" + }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"ob" = ( +"pR" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/effect/decal/remains/human{ - pixel_y = -25 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/sheet/animalhide/xeno{ + color = "#7899ab"; + desc = "A strange hide from an enigmatic creature."; + name = "deacon hide" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ov" = ( +"qe" = ( /obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, -/obj/item/storage/belt/utility/full/pred, -/obj/item/storage/belt/utility/full/pred, -/obj/item/storage/belt/utility/full/pred, -/obj/item/storage/belt/utility/full/pred, -/obj/item/storage/belt/utility/full/pred, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/tool/pickaxe, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"oO" = ( -/obj/item/weapon/yautja/chain{ - anchored = 1; - name = "Houndmaster's Discipline Whip"; - pixel_x = -3; - pixel_y = 29 +"qm" = ( +/obj/structure/closet/crate{ + color = "#6b675e" + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = 6 + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = 6 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = 6 + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = 6 + }, +/obj/item/stack/medical/advanced/bruise_pack/predator{ + pixel_x = 6 + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = -6 + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = -6 + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = -6 + }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = -6 }, +/obj/item/stack/medical/advanced/ointment/predator{ + pixel_x = -6 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"qj" = ( -/obj/structure/surface/rack{ +"qp" = ( +/obj/structure/closet/crate/secure{ + req_one_access_txt = "392"; color = "#6b675e"; - layer = 2.79 + name = "Secure Yautja crate" }, -/obj/item/tool/crowbar, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/weapon/yautja/combistick, +/obj/item/weapon/yautja/combistick{ + pixel_x = -4; + pixel_y = 4 }, +/obj/item/weapon/twohanded/yautja/glaive/alt, +/obj/item/weapon/yautja/chain, +/obj/item/weapon/yautja/sword, +/obj/item/weapon/yautja/scythe, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"qS" = ( +"qv" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/reagent_container/food/snacks/xemeatpie{ - name = "Elite Hunter's Xenopie" - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"rt" = ( +"ro" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/storage/medicomp/full, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/tool/weldingtool/hugetank, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"rr" = ( +/obj/structure/closet/crate/critter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"rJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"rH" = ( -/obj/structure/shuttle/window{ +"rW" = ( +/obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/weapon/chainofcommand, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "rY" = ( /obj/structure/surface/rack{ @@ -2032,14 +1506,39 @@ }, /turf/open/shuttle/predship, /area/yautja) -"sx" = ( -/obj/structure/window/framed/colony/reinforced/hull{ - color = "#aba9a9" +"sb" = ( +/obj/structure/machinery/prop/yautja/bubbler, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"sc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"sf" = ( +/obj/structure/machinery/computer/crew/alt{ + dir = 1; + name = "human monitoring computer" + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"sl" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 6 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"st" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Blooded Teleporter" }, +/turf/open/floor/strata/multi_tiles, /area/yautja) "sV" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -2048,114 +1547,90 @@ }, /turf/open/shuttle/predship, /area/yautja) -"te" = ( -/obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"tj" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ti" = ( -/obj/structure/shuttle/window{ - color = "#6b675e" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +"tK" = ( +/turf/open/floor/strata/grey_multi_tiles/southwest, +/area/yautja) +"tT" = ( +/turf/open/gm/dirtgrassborder/desert, /area/yautja) -"tl" = ( +"tW" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/weapon/sword/machete/arnold{ - anchored = 1; - desc = "Won by an Elder during their youthful hunting days. None are allowed to touch it."; - name = "\improper Dutch's Machete" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/storage/large_holster/katana, +/obj/item/weapon/sword/katana, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"tn" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +"uf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/turf/open/gm/dirtgrassborder/west, +/area/yautja) +"uy" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Elder Teleporter" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"tD" = ( +"uH" = ( /obj/structure/surface/rack{ color = "#6b675e"; layer = 2.79 }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/obj/item/frame/table/wood/fancy, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"vy" = ( +/obj/structure/cryofeed, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"vJ" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 4; + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"tR" = ( +"vR" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/item/storage/box/bracer, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"uf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/effect/decal/remains/human{ + pixel_y = -25 }, -/turf/open/gm/dirtgrassborder/west, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"uO" = ( -/obj/structure/bed/chair/hunter{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"wf" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"vO" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/door/window/tinted, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +"wj" = ( +/turf/open/gm/dirtgrassborder/desert2, /area/yautja) "ww" = ( /obj/item/stack/sheet/animalhide/xeno{ @@ -2165,47 +1640,11 @@ }, /turf/open/shuttle/predship, /area/yautja) -"wH" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" - }, -/area/yautja) -"wQ" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"wy" = ( +/obj/structure/pipes/unary/freezer{ + dir = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "wW" = ( /obj/structure/barricade/handrail/strata{ @@ -2214,67 +1653,96 @@ /obj/structure/barricade/handrail/strata, /turf/open/gm/dirtgrassborder/grassdirt_corner/south_west, /area/yautja) -"xn" = ( +"wZ" = ( +/obj/structure/shuttle/window{ + color = "#6b675e" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"xf" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"xF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/xeno_egg/forsaken, -/obj/item/xeno_egg/forsaken, -/obj/item/xeno_egg/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/tool/kitchen/tray{ + color = "#FFE55C"; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/meatballsoup{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"xZ" = ( +/obj/structure/machinery/power/smes/magical{ + capacity = 9e+008; + charge = 9e+008; + dir = 4; + name = "plasma power generator" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"xO" = ( +"yw" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/item/stack/sheet/animalhide/xeno{ anchored = 1; - color = "#524e4e"; - desc = "An old hide from a fearsome creature."; - name = "hunter hide" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" + color = "green"; + desc = "The skin of a nightmare long thought lost to time."; + name = "corroder hide" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"xQ" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 10; - icon_state = "p_stair_full" +"yB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/showcase{ + desc = "A console used by the Hunters for navigation purposes."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "security_cam"; + name = "Radar Console" }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"yH" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - dir = 4; - icon_state = "darkred2" - }, +"yS" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"yO" = ( +"yX" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/tool/kitchen/tray{ - color = "#FFE55C"; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/meatballsoup{ - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/stack/sheet/xenochitin, +/obj/item/stack/sheet/xenochitin, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"zc" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "zg" = ( /obj/structure/barricade/handrail/strata{ @@ -2282,145 +1750,202 @@ }, /turf/open/gm/dirtgrassborder/east, /area/yautja) -"zA" = ( -/turf/open/floor{ - icon_state = "dark2" - }, -/area/yautja) -"zZ" = ( +"zp" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 80; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/reagent_container/food/snacks/stew, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Ad" = ( +/obj/structure/cryofeed/right, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"AP" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"AA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"AS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/reagent_container/glass/beaker/silver, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Be" = ( /obj/structure/machinery/cryopod/right, /turf/open/shuttle/predship, /area/yautja) -"Bf" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 +"Bp" = ( +/obj/structure/machinery/door_control{ + id = "Yautja Armory"; + name = "Armory Shutters"; + needs_power = 0; + pixel_x = 24; + req_one_access_txt = "392" }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = 12 +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"BC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = 8 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = 4 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = -4 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = -12 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - pixel_x = -8 +/obj/item/restraint/legcuffs{ + pixel_y = 5 }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, /turf/open/shuttle/predship, /area/yautja) -"Bg" = ( -/obj/structure/closet/crate/secure{ - req_one_access_txt = "392"; +"BH" = ( +/obj/structure/surface/rack{ color = "#6b675e"; - name = "Secure Yautja crate" + density = 0; + layer = 2.79; + pixel_y = 24 }, -/obj/item/weapon/yautja/combistick, -/obj/item/weapon/yautja/combistick{ - pixel_x = -4; - pixel_y = 4 +/obj/item/weapon/gun/energy/yautja/plasmarifle{ + pixel_y = -8 }, -/obj/item/weapon/twohanded/yautja/glaive/alt, -/obj/item/weapon/yautja/chain, -/obj/item/weapon/yautja/sword, -/obj/item/weapon/yautja/scythe, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/weapon/gun/energy/yautja/plasmarifle, +/obj/item/weapon/gun/energy/yautja/plasmarifle{ + pixel_y = 8 }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Br" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert2" +"BP" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/area/yautja) -"BK" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/item/stack/sheet/plasteel{ + amount = 30 }, -/obj/item/storage/medicomp/full, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/sheet/plasteel{ + amount = 30 }, -/area/yautja) -"BS" = ( -/obj/structure/machinery/prop/yautja/bubbler, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Cn" = ( +"BT" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/reagent_container/glass/beaker/silver, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/explosive/grenade/spawnergrenade/spesscarp{ + anchored = 1; + desc = "A strange device taken from a far-off land. It looks incredibly fragile, best not to touch it." }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Cz" = ( -/obj/item/stack/sheet/animalhide/xeno{ - anchored = 1; - name = "Prime Empress Hide"; - pixel_y = 30 +"Ck" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"CO" = ( +/obj/structure/shuttle/window{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"Db" = ( +/obj/structure/machinery/optable, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Dr" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ + indestructible = 1; + locked = 1; + name = "\improper External Airlock" }, +/obj/structure/blocker/invisible_wall, +/turf/open/space, +/area/yautja) +"DD" = ( +/obj/structure/prop/pred_flight, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"CK" = ( +"DI" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/obj/item/frame/table/gambling, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Ea" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, @@ -2433,185 +1958,148 @@ name = "Primordial Empress Steak"; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Dk" = ( +"Eb" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/device/flashlight/slime{ - anchored = 1 +/obj/item/weapon/sword/machete/arnold{ + anchored = 1; + desc = "Won by an Elder during their youthful hunting days. None are allowed to touch it."; + name = "\improper Dutch's Machete" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"EG" = ( +/turf/open/gm/dirtgrassborder/desert1, +/area/yautja) +"EM" = ( +/obj/structure/bed/chair/hunter, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"EU" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Fc" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/tool/extinguisher, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Dr" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - indestructible = 1; - locked = 1; - name = "\improper External Airlock" +"Ff" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/obj/structure/blocker/invisible_wall, -/turf/open/space, +/obj/effect/decal/remains/xeno{ + pixel_x = -31 + }, +/obj/structure/showcase{ + desc = "A console equipped with a radar used by the Hunters to detect gear and good hunting grounds."; + dir = 4; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "terminal"; + name = "Radar Console"; + pixel_x = -7 + }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"DF" = ( -/obj/item/reagent_container/food/snacks/xenomeatbreadslice, -/obj/item/reagent_container/food/snacks/xenomeatbreadslice, -/obj/item/reagent_container/food/snacks/xenomeatbreadslice, -/obj/item/reagent_container/food/snacks/xenomeatbreadslice, -/obj/item/reagent_container/food/snacks/xenomeatbreadslice, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/structure/closet/secure_closet/freezer/fridge{ - locked = 0 +"Fq" = ( +/obj/structure/pipes/standard/simple/hidden{ + dir = 4 }, -/turf/open/floor{ - dir = 9; - icon_state = "darkred2" +/obj/structure/machinery/computer/crew/alt/yautja{ + pixel_y = 24 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"DJ" = ( -/obj/structure/machinery/computer/crew/alt{ - dir = 1; - name = "human monitoring computer" - }, +"Ft" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/obj/item/storage/medicomp/full, +/turf/open/shuttle/predship, /area/yautja) -"Es" = ( -/obj/structure/bed/chair/hunter, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"FG" = ( +/obj/effect/landmark/clan_spawn, +/turf/open/shuttle/predship, /area/yautja) -"Et" = ( +"FR" = ( +/turf/open/floor/darkred2/west, +/area/yautja) +"FS" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/obj/effect/spawner/random/toy, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Gd" = ( +/obj/structure/machinery/door/airlock/yautja/secure, +/turf/open/shuttle/predship, /area/yautja) -"EZ" = ( +"Gg" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/storage/large_holster/katana, -/obj/item/weapon/sword/katana, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/storage/box/bracer, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Fh" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" +"Gu" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/weapon/yautja/knife, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/obj/item/reagent_container/hypospray/autoinjector/yautja, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Ft" = ( +"Gw" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/storage/medicomp/full, -/turf/open/shuttle/predship, +/obj/item/alienjar, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Fx" = ( +"Gy" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/structure/showcase{ desc = "A console used by the Hunters for navigation purposes."; - dir = 8; + dir = 4; icon = 'icons/obj/structures/machinery/computer.dmi'; icon_state = "security_cam"; name = "Radar Console" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"Fy" = ( -/obj/structure/window/framed/colony/reinforced/hull{ - color = "#aba9a9" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"FG" = ( -/obj/effect/landmark/clan_spawn, -/turf/open/shuttle/predship, -/area/yautja) -"Gd" = ( -/obj/structure/machinery/door/airlock/yautja/secure, -/turf/open/shuttle/predship, -/area/yautja) -"Gk" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/explosive/grenade/spawnergrenade/spesscarp{ - anchored = 1; - desc = "A strange device taken from a far-off land. It looks incredibly fragile, best not to touch it." - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Gr" = ( +"Gz" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/legcuffs{ - pixel_y = 5 - }, -/obj/item/legcuffs{ - pixel_y = 5 - }, -/obj/item/legcuffs{ - pixel_y = 5 - }, -/obj/item/legcuffs{ - pixel_y = 5 - }, -/obj/item/legcuffs{ - pixel_y = 5 - }, -/obj/item/legcuffs{ - pixel_y = 5 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/shuttle/predship, -/area/yautja) -"GM" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert_dug" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/obj/item/storage/box/bracer, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "GP" = ( /obj/structure/prop/brazier/torch{ @@ -2619,15 +2107,15 @@ }, /turf/closed/wall/mineral/sandstone/runed, /area/yautja) -"GY" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/weapon/chainofcommand, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"GU" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"GV" = ( +/obj/item/map/current_map, +/obj/item/device/flashlight/lantern, +/obj/structure/closet, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Ha" = ( /obj/structure/surface/rack{ @@ -2646,76 +2134,47 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Hp" = ( -/obj/structure/bed/chair/hunter{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"Hv" = ( -/obj/structure/bed{ - color = "#aba9a9" - }, -/obj/item/bedsheet/captain{ - color = "#aba9a9" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"HD" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - density = 0; - layer = 2.79; - pixel_y = 24 - }, -/obj/item/weapon/gun/energy/yautja/plasmarifle{ - pixel_y = -8 - }, -/obj/item/weapon/gun/energy/yautja/plasmarifle, -/obj/item/weapon/gun/energy/yautja/plasmarifle{ - pixel_y = 8 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +"Hw" = ( +/obj/structure/closet, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"HN" = ( +"HE" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/window/reinforced{ - dir = 1; - health = 80; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/storage/medicomp/full, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"If" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 +"HQ" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 }, -/obj/item/weapon/gun/energy/yautja/plasmapistol{ - pixel_y = -8 +/obj/item/clothing/shoes/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "y-boots2"; + pixel_y = 29 }, -/obj/item/weapon/gun/energy/yautja/plasmapistol, -/obj/item/weapon/gun/energy/yautja/plasmapistol{ - pixel_y = 8 +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_n"; + pixel_y = 30 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_n"; + pixel_y = 29 }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Ic" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/darkred2/southeast, /area/yautja) "Im" = ( /obj/structure/surface/rack{ @@ -2747,203 +2206,375 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Ip" = ( +"Iu" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/device/flashlight/slime{ + anchored = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"IC" = ( +/obj/structure/machinery/door/airlock/yautja/secure/elder{ + name = "\improper Elder Quarters" + }, +/turf/open/shuttle/predship, +/area/yautja) +"II" = ( +/obj/item/weapon/yautja/knife{ + color = "#FFE55C"; + name = "sacred ceremonial dagger"; + pixel_x = 25 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Jc" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Jm" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"JB" = ( /obj/structure/barricade/handrail/strata, /obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"JJ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/obj/item/stack/tile/carpet{ + amount = 50 + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Kf" = ( +/obj/structure/machinery/shower{ dir = 4 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/obj/structure/machinery/door/window/tinted, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"KE" = ( +/obj/structure/machinery/door/airlock/yautja{ + name = "\improper Blooded Teleporter" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"KK" = ( +/obj/effect/decal/remains/human{ + pixel_y = -25 }, +/turf/open/shuttle/predship, /area/yautja) -"Iw" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - name = "\improper Hellhound Quarters" +"KQ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"KY" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow" }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Li" = ( +/obj/structure/kitchenspike, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/obj/item/reagent_container/food/snacks/sliceable/xenomeatbread, +/turf/open/floor/darkred2/west, +/area/yautja) +"Lx" = ( +/obj/structure/closet/coffin/predator, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"LL" = ( +/turf/open/gm/dirtgrassborder/desert3, /area/yautja) -"IC" = ( -/obj/structure/machinery/door/airlock/yautja/secure/elder{ - name = "\improper Elder Quarters" - }, -/turf/open/shuttle/predship, +"LT" = ( +/obj/structure/machinery/prop/almayer/CICmap/yautja, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Je" = ( -/obj/structure/surface/rack{ +"LV" = ( +/obj/structure/stairs/perspective{ color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/turf/open/floor/corsat{ dir = 1; - icon_state = "squareswood" + icon_state = "p_stair_full" }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"JH" = ( -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"Me" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"JL" = ( -/obj/item/weapon/yautja/knife{ - color = "#FFE55C"; - name = "sacred ceremonial dagger"; - pixel_x = 25 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"Mg" = ( +/obj/structure/kitchenspike, +/obj/item/reagent_container/food/snacks/meat/corgi, +/obj/item/reagent_container/food/snacks/meat/corgi, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/turf/open/floor/darkred2/north, +/area/yautja) +"Mu" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Mx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/darkred2/southwest, /area/yautja) -"KD" = ( +"Mz" = ( +/obj/structure/machinery/autolathe/yautja, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"MF" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/structure/window/reinforced{ - dir = 4; - health = 80 + dir = 1; + health = 80; + pixel_y = 16 }, /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, -/obj/item/reagent_container/glass/rag/polishing_rag, -/obj/item/reagent_container/glass/rag/polishing_rag{ - pixel_x = 9 - }, -/obj/item/reagent_container/glass/rag/polishing_rag{ - pixel_x = 4; - pixel_y = 3 +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"MH" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"MX" = ( +/obj/item/storage/fancy/candle_box, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Na" = ( +/obj/effect/alien/weeds/node/forsaken, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"Nx" = ( +/obj/structure/machinery/computer/cryopod/yautja, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"NO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/weapon/twohanded/sledgehammer{ + anchored = 1 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"KI" = ( -/obj/item/tool/kitchen/tray{ - pixel_y = -5 +"Oj" = ( +/obj/structure/showcase{ + desc = "An ancient, dusty tomb with strange alien writing. It's best not to touch it."; + icon_state = "yaut"; + name = "alien sarcophagus" }, -/obj/item/reagent_container/food/snacks/bearmeat, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + pixel_y = 20 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"KK" = ( -/obj/effect/decal/remains/human{ - pixel_y = -25 +"Ou" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, +/obj/item/xeno_restraints, /turf/open/shuttle/predship, /area/yautja) -"KV" = ( +"Oz" = ( +/obj/structure/kitchenspike, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/obj/item/reagent_container/food/snacks/meat/xenomeat, +/turf/open/floor/darkred2/northeast, +/area/yautja) +"OC" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/trash/plate, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/stack/sheet/animalhide/xeno{ + anchored = 1; + color = "#524e4e"; + desc = "An old hide from a fearsome creature."; + name = "hunter hide" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"OF" = ( +/obj/item/tool/kitchen/tray{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/snacks/meat/corgi, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"OT" = ( +/obj/item/weapon/yautja/chain{ + anchored = 1; + name = "Houndmaster's Discipline Whip"; + pixel_x = -3; + pixel_y = 29 }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"KX" = ( +"Pd" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/weapon/sword/ceremonial, -/turf/open/floor/corsat{ +/obj/structure/window/reinforced{ dir = 1; - icon_state = "squareswood" + health = 80; + pixel_y = 16 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Lo" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"Pf" = ( +/obj/item/tool/kitchen/tray{ + pixel_y = -5 }, +/obj/item/reagent_container/food/snacks/bearmeat, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"LX" = ( -/obj/structure/prop/pred_flight, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"PC" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/area/yautja) -"Mb" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" +/obj/structure/machinery/power/apc/almayer/east{ + pixel_y = 25 }, +/obj/item/weapon/twohanded/yautja/spear, +/obj/item/weapon/twohanded/yautja/spear, +/obj/item/weapon/twohanded/yautja/spear, +/obj/item/weapon/twohanded/yautja/spear, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"PN" = ( /obj/item/stack/sheet/animalhide/xeno{ anchored = 1; - color = "green"; - desc = "The skin of a nightmare long thought lost to time."; - name = "corroder hide" + name = "Spitter Hide"; + pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/shuttle/predship, +/area/yautja) +"PS" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"Qa" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/obj/item/stack/sheet/mineral/sandstone/large_stack, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Qn" = ( +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ME" = ( +"QL" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; dir = 8; icon_state = "p_stair_full" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"MI" = ( -/obj/structure/machinery/door/airlock/yautja{ - name = "\improper Blooded Teleporter" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"QM" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/obj/item/weapon/harpoon/yautja, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"NA" = ( -/turf/open/floor{ - icon_state = "darkred2" - }, +"QP" = ( +/turf/open/gm/dirtgrassborder/desert_dug, /area/yautja) -"Ok" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert" +"QV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/area/yautja) -"OZ" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, +/obj/structure/machinery/door/window/southright, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Pm" = ( +"RF" = ( /obj/item/stack/sheet/glass{ amount = 50 }, @@ -2957,119 +2588,95 @@ color = "#6b675e"; layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"Pp" = ( -/obj/effect/alien/weeds/node/forsaken, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Pr" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - name = "\improper Research Containment" - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"RL" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/area/yautja) -"PN" = ( -/obj/item/stack/sheet/animalhide/xeno{ - anchored = 1; - name = "Spitter Hide"; - pixel_y = 30 +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/obj/item/frame/table/wood, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"RQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/shuttle/predship, -/area/yautja) -"Qi" = ( -/obj/structure/machinery/gibber, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/obj/effect/decal/remains/xeno{ + pixel_x = 33 }, -/area/yautja) -"Qj" = ( -/obj/structure/kitchenspike, -/obj/item/reagent_container/food/snacks/meat/corgi, -/obj/item/reagent_container/food/snacks/meat/corgi, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/obj/item/reagent_container/food/snacks/meat/xenomeat, -/turf/open/floor{ - dir = 1; - icon_state = "darkred2" +/obj/structure/showcase{ + desc = "A console equipped with a radar used by the Hunters to detect gear and good hunting grounds."; + dir = 8; + icon = 'icons/obj/structures/machinery/computer.dmi'; + icon_state = "terminal"; + name = "Radar Console"; + pixel_x = 7 }, +/turf/open/floor/strata/grey_multi_tiles, /area/yautja) -"Qs" = ( -/obj/structure/machinery/chem_master{ - req_skill_level = 2 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +"RS" = ( +/turf/open/gm/dirtgrassborder/north, /area/yautja) -"Qz" = ( -/obj/structure/machinery/door_control{ - id = "Yautja Armory"; - name = "Armory Shutters"; - needs_power = 0; - pixel_x = 24; - req_one_access_txt = "392" +"Sn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/trash/tray, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 3 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"QF" = ( -/obj/item/weapon/yautja/knife{ - color = "#FFE55C"; - name = "sacred ceremonial dagger"; - pixel_x = -25 +"SA" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/stack/sheet/wood{ + amount = 50 }, -/area/yautja) -"QK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/item/stack/sheet/wood{ + amount = 50 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/item/stack/sheet/wood{ + amount = 50 }, -/turf/open/gm/dirtgrassborder/weedable{ - icon_state = "grass1" +/obj/item/stack/sheet/wood{ + amount = 50 }, -/area/yautja) -"Rq" = ( -/obj/structure/machinery/prop/almayer/CICmap/yautja, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/stack/sheet/wood{ + amount = 50 }, -/area/yautja) -"RE" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor{ - dir = 6; - icon_state = "darkred2" +/obj/item/stack/sheet/wood{ + amount = 50 }, -/area/yautja) -"RS" = ( -/turf/open/gm/dirtgrassborder/north, -/area/yautja) -"Sx" = ( -/turf/open/floor{ - dir = 8; - icon_state = "darkred2" +/obj/item/stack/sheet/wood{ + amount = 50 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "SB" = ( /obj/structure/bed/chair/hunter{ @@ -3077,22 +2684,45 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Ut" = ( +"SC" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/tool/surgery/cautery/predatorcautery, +/obj/item/tool/surgery/circular_saw/predatorbonesaw, +/obj/item/tool/surgery/hemostat/predatorhemostat, +/obj/item/tool/surgery/retractor/predatorretractor, +/obj/item/tool/surgery/scalpel/predatorscalpel, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Tm" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, /obj/structure/window/reinforced{ - dir = 8; + dir = 4; health = 80 }, /obj/structure/window/reinforced{ - dir = 4; + dir = 8; health = 80 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"TJ" = ( +/obj/structure/bed{ + color = "#aba9a9" + }, +/obj/item/bedsheet/captain{ + color = "#aba9a9" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Uu" = ( +/obj/structure/bed/chair/hunter{ + dir = 4 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Uv" = ( /obj/effect/decal/remains/xeno{ @@ -3100,54 +2730,115 @@ }, /turf/open/shuttle/predship, /area/yautja) -"UR" = ( +"UL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/stack/sheet/animalhide/xeno/kinghide, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"US" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/gm/dirtgrassborder/weedable/grass1, +/area/yautja) +"UX" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; - dir = 5; + dir = 9; icon_state = "p_stair_full" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"UT" = ( +"Va" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/restraints, -/obj/item/restraints, -/obj/item/restraints, -/obj/item/restraints, -/obj/item/restraints, -/obj/item/restraints, -/turf/open/shuttle/predship, +/obj/item/trash/plate, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Vc" = ( +/obj/item/weapon/yautja/knife{ + color = "#FFE55C"; + name = "sacred ceremonial dagger"; + pixel_x = -25 + }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"VT" = ( +"Vh" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/structure/showcase{ - desc = "A console used by the Hunters for navigation purposes."; - dir = 4; - icon = 'icons/obj/structures/machinery/computer.dmi'; - icon_state = "security_cam"; - name = "Radar Console" +/obj/item/weapon/gun/energy/yautja/plasma_caster{ + anchored = 1; + desc = "A powerful, shoulder-mounted energy weapon. This one is damaged beyond use."; + name = "damaged plasma caster" + }, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"VB" = ( +/turf/open/gm/dirtgrassborder/desert0, +/area/yautja) +"VM" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +/obj/item/weapon/twohanded/dualsaber{ + force_wielded = 35 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"VY" = ( -/obj/structure/window/framed/colony/reinforced/hull{ - color = "#aba9a9" +"Wc" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - dir = 10; - icon_state = "multi_tiles" +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/flashlight/lantern{ + pixel_x = 1; + pixel_y = 9 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "We" = ( /obj/structure/surface/table/reinforced/prison{ @@ -3168,60 +2859,15 @@ }, /turf/open/shuttle/predship, /area/yautja) -"Wj" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - name = "duelling claymore" - }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - name = "duelling claymore"; - pixel_x = -5 - }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - name = "duelling claymore"; - pixel_x = 5 - }, -/obj/item/weapon/sword{ - attack_speed = 12; - force = 25; - name = "duelling claymore"; - pixel_x = 10 - }, -/turf/open/shuttle/predship, -/area/yautja) -"Ww" = ( -/obj/structure/surface/table/reinforced/prison{ - color = "#6b675e" - }, -/obj/item/reagent_container/food/snacks/stew, -/obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, -/area/yautja) -"Xg" = ( +"Wi" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/obj/item/tool/surgery/FixOVein/predatorFixOVein, +/obj/item/tool/surgery/bonegel/predatorbonegel, +/obj/item/tool/surgery/bonesetter/predatorbonesetter, +/obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "Xp" = ( /obj/structure/surface/rack{ @@ -3265,19 +2911,62 @@ }, /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/yautja) -"XP" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" +"XB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" }, +/obj/item/weapon/sword/ceremonial, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"Ys" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor{ - dir = 10; - icon_state = "darkred2" +"XG" = ( +/obj/item/reagent_container/food/snacks/xenomeatbreadslice, +/obj/item/reagent_container/food/snacks/xenomeatbreadslice, +/obj/item/reagent_container/food/snacks/xenomeatbreadslice, +/obj/item/reagent_container/food/snacks/xenomeatbreadslice, +/obj/item/reagent_container/food/snacks/xenomeatbreadslice, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/structure/closet/secure_closet/freezer/fridge{ + locked = 0 + }, +/turf/open/floor/darkred2/northwest, +/area/yautja) +"XJ" = ( +/obj/structure/surface/rack{ + color = "#6b675e"; + layer = 2.79 + }, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/obj/item/stack/yautja_rope, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"XT" = ( +/turf/open/floor/darkred2, +/area/yautja) +"Yk" = ( +/obj/structure/machinery/door/airlock/yautja/secure{ + name = "\improper Research Containment" }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"Yu" = ( +/obj/structure/lamarr, +/turf/open/floor/corsat/squareswood/north, +/area/yautja) +"Yz" = ( +/obj/structure/stairs/perspective{ + color = "#6b675e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) +"YI" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/squareswood/north, /area/yautja) "YL" = ( /obj/structure/machinery/door/airlock/yautja{ @@ -3289,71 +2978,65 @@ "YM" = ( /turf/closed/wall/mineral/sandstone/runed/decor, /area/yautja) +"Zf" = ( +/obj/effect/alien/egg/forsaken, +/turf/open/floor/strata/grey_multi_tiles, +/area/yautja) "Zi" = ( /obj/structure/sink{ pixel_y = 25 }, /turf/open/shuttle/predship, /area/yautja) -"Zs" = ( -/obj/structure/machinery/door/airlock/yautja/secure{ - name = "\improper Heavy Armory" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/yautja{ - dir = 4 - }, -/turf/open/floor/strata{ - color = "#5e5d5d"; - icon_state = "multi_tiles" - }, -/area/yautja) -"Zu" = ( +"Zj" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/obj/item/alien_embryo, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ZD" = ( -/obj/structure/stairs/perspective{ - color = "#6b675e"; - dir = 8; - icon_state = "p_stair_full" +"ZF" = ( +/obj/item/clothing/yautja_cape/ceremonial{ + anchored = 1; + color = "#292b29"; + pixel_x = 2; + pixel_y = 32 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/clothing/shoes/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "y-boots2"; + pixel_y = 30 }, -/area/yautja) -"ZI" = ( -/turf/open/gm/dirtgrassborder{ - icon_state = "desert3" +/obj/item/clothing/suit/armor/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "halfarmor_elder_joshuu"; + pixel_y = 30 + }, +/obj/item/clothing/mask/gas/yautja/hunter{ + anchored = 1; + color = "#FFE55C"; + icon_state = "pred_mask_elder_joshuu"; + pixel_y = 30 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ZM" = ( +"ZK" = ( /obj/structure/surface/table/reinforced/prison{ color = "#6b675e" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +/obj/item/stack/cable_coil, +/obj/item/tool/screwdriver{ + pixel_x = -6; + pixel_y = 6 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) -"ZR" = ( -/obj/structure/surface/rack{ - color = "#6b675e"; - layer = 2.79 - }, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/obj/item/stack/yautja_rope, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"ZY" = ( +/obj/structure/machinery/chem_master{ + req_skill_level = 2 }, +/turf/open/floor/corsat/squareswood/north, /area/yautja) (1,1,1) = {" @@ -4098,9 +3781,9 @@ aa aa aa bj -sx -sx -sx +iu +iu +iu bj aa aa @@ -4170,9 +3853,9 @@ aa aa bj bj -oO -JH -aB +OT +cM +rr bj bj aa @@ -4241,11 +3924,11 @@ aa aa bj bj -cY -JH -JH -JH -KI +OF +cM +cM +cM +Pf bj bj aa @@ -4312,13 +3995,13 @@ aa aa bj bj -aB -JH -JH -JH -JH -JH -aB +rr +cM +cM +cM +cM +cM +rr bj bj aa @@ -4388,7 +4071,7 @@ bj bj bj bj -Iw +mD bj bj bj @@ -4450,27 +4133,27 @@ aa ac bj bj -as -bJ -aY -ZM -cj -bL -an +sl +wy +ho +Zj +YI +Qn +do bj bj -cT -bL -db +qe +Qn +bT bj cP cP bj -bY -cl -lr -aD -te +yX +Gw +Yu +lS +iC bj bj bj @@ -4522,30 +4205,30 @@ aa ae bj bj -bb +Fq nW bS -bL -jR -bL -cx -rt +Qn +go +Qn +yS +kS bj -cU +Fc cP -qj +kH bj cP cP bj -fB -bL -bL -bL -bL -sx -dk -JH +Zj +Qn +Qn +Qn +Qn +iu +kK +cM bj bj bj @@ -4593,7 +4276,7 @@ aa aa ae af -at +mh bS bK cP @@ -4603,9 +4286,9 @@ cP cP Ft bj -cV +ro cP -AA +MH bj cP cP @@ -4615,11 +4298,11 @@ cP cP cP cP -dc -df -JH -xn -xn +jL +Yz +cM +gc +gc bj bj bj @@ -4665,7 +4348,7 @@ aa aa ae af -at +mh bw bS cP @@ -4675,24 +4358,24 @@ cP cP cP bj -bq +Vh br cP bx cP cP bj -Zu -cq -Qs -bL -bL -VY -dl -JH -JH -JH -Et +mF +Me +ZY +Qn +Qn +ic +kU +cM +cM +cM +PS bj bj aa @@ -4738,33 +4421,33 @@ aa ae bj bj -bL -bL -bL +Qn +Qn +Qn bj -bo +Jm cP cP cP bj -cW +ZK cP cP bx cP cP bj -Cn -Cn -bA -aD -te +AS +AS +iX +lS +iC bj -JH -JH -JH -JH -JH +cM +cM +cM +cM +cM bj bj bj @@ -4810,18 +4493,18 @@ aa ad bj bj -aE -aW -aQ +SC +Db +Wi bj -bs -bL +wf +Qn cP cP bj -bL +Qn cP -bL +Qn bj cP cP @@ -4834,9 +4517,9 @@ bj bj bj bj -sx -Pr -sx +iu +Yk +iu bj bj bj @@ -4891,9 +4574,9 @@ bj aT aT bj -bL +Qn cP -bL +Qn bj cP cP @@ -4906,9 +4589,9 @@ aa bj bj bj -dj -JH -dj +Zf +cM +Zf bj bj bj @@ -4963,9 +4646,9 @@ bj cP cP bj -cX -aN -cX +lO +Nx +lO bj cP cP @@ -4978,9 +4661,9 @@ aa aa bj bj -dj -Pp -dj +Zf +Na +Zf bj bj bj @@ -5103,7 +4786,7 @@ aa aa aa bj -wQ +Tm cP cP cP @@ -5113,7 +4796,7 @@ cP cP cP cP -fo +Gz bj bj aa @@ -5175,17 +4858,17 @@ bj bj bj bj -wQ +Tm cP cP -bz -HN -nh -ZM -au +qv +Pd +KQ +Zj +MF cP cP -fo +Gz bj bj bj @@ -5235,29 +4918,29 @@ aa ac bj bN -ZR -aV -bn +XJ +Gu +QM bj -av -ZM -bO +if +Zj +jr bj -av -ZM -bO +if +Zj +jr bj -wQ +Tm cP cP -wQ +Tm bj bj bj -wQ +Tm cP cP -fo +Gz bj bj bj @@ -5307,55 +4990,55 @@ aa ae bj bN -aC +me cP -bL +Qn bj -bL +Qn SB -bL +Qn bj -bL +Qn SB -bL +Qn bj -wQ +Tm cP -bL -wQ -rH +Qn +Tm +wZ bd -rH -wQ -bL +wZ +Tm +Qn cP -fo +Gz bj bj bj bj bj bj -hY -is -cu +ml +Li +ld bj cw -Gr +BC bj -bL -cS +Qn +gf bj -bL -cS +Qn +gf bj -bL -cS +Qn +gf bj bj bj -Fy -Fy +eM +eM bj bj bj @@ -5381,55 +5064,55 @@ bj ag GP cP -bL +Qn bj -bL +Qn cP -bL +Qn bj -bL +Qn cP -bL +Qn bj -KD -bL -JH -JH +bh +Qn +cM +cM bN -be +st bN -JH -JH -JH -bL -bL +cM +cM +cM +Qn +Gg bj bj bj bj -Qj -zA -zA -NA +Mg +in +in +XT bj -UT +Ou cP bj -bL -bL +Qn +Qn bj -bL -bL +Qn +Qn bj -bL -bL +Qn +Qn bj bj bj -GY -CK -QF -Hv +rW +Ea +Vc +TJ bj bj bj @@ -5453,7 +5136,7 @@ bj ay ap cP -bL +Qn bj eS cP @@ -5463,42 +5146,42 @@ eS cP Uv bj -BS -JH -JH -bL -bL +sb +cM +cM +Qn +Qn cP -bL -bL -bL -JH -JH -bL +Qn +Qn +Qn +cM +cM +Gg bj bM da bj -de -fb -fb -Qi +Oz +na +na +ci bj We cP bj bW -fq +mM bj ce -fq +mM bj cm -fq +mM bj bj bj -av +if SB cP cP @@ -5525,28 +5208,28 @@ bj aA ap cP -bL +Qn bj -nT +QV cP -bL +Qn bj -nT +QV cP -bL +Qn bj -JH -JH -bL -bL -bL +cM +cM +Qn +Qn +Qn cP -bL -bL -bL -bL -JH -bL +Qn +Qn +Qn +MX +cM +Gg bj cv cP @@ -5570,16 +5253,16 @@ cP cg Ha bj -Cz +lz cP cP KK bj -cA -cA +uy +uy bj -cN -cN +vy +vy bj bj bj @@ -5597,28 +5280,28 @@ bj YM ap cP -bL +Qn bj -fg +GV cP -bL +Qn bj -fg +GV cP -bL +Qn bj -JH -ab -cI -bL -bL +cM +UL +NO +Qn +Qn cP -bL -bL -EZ -xO -JH -bL +Qn +Qn +tW +OC +cM +Gg bj cP cP @@ -5631,18 +5314,18 @@ cP bj cP cP -bL -bL -bL -bL -bL -bL -bL -bL -bL -Wj +Qn +Qn +Qn +Qn +Qn +Qn +Qn +Qn +Qn +jP bj -aq +ZF cP cP cP @@ -5655,7 +5338,7 @@ cP cP cP bj -sx +iu bj aa aa @@ -5669,7 +5352,7 @@ bj ah ap cP -bL +Qn bj bj aw @@ -5679,8 +5362,8 @@ bj aw bj bj -JH -bQ +cM +bP cP cP cP @@ -5688,22 +5371,22 @@ cP cP cP cP -Dk -JH -bL +Iu +cM +Gg bj cP cP -bL -bL -bL -bL +Qn +Qn +Qn +Qn cP cP bj cP cP -bL +Qn cP cP cP @@ -5711,10 +5394,10 @@ cP cP cP cP -bL +Qn Xp bj -fg +GV cP cP fj @@ -5726,8 +5409,8 @@ cP cP cP cP -aX -ob +Ff +vR bj bj aa @@ -5741,41 +5424,41 @@ bj ai ap cP -bL -bL -ti +Qn +Qn +CO FG cP cP cP FG -ti -JH -JH -bL +CO +cM +cM +Qn cP -bL -bL -bL -bL -bL +Qn +Qn +Qn +Qn +Qn cP -bL -JH -JH +Qn +cM +cM bj cP -bL -gp -iV -Ww -OZ -bL +Qn +EU +Sn +zp +pn +Qn cP bj cP -bL -bL +Qn +Qn cP cc uf @@ -5783,8 +5466,8 @@ uf uf wW cP -bL -bL +Qn +Qn bj bj bj @@ -5792,16 +5475,16 @@ IC bj bj cP -bL +Qn bj -bL -bL -bL +Qn +Qn +Qn cP -Hp -VT -tn -sx +kX +Gy +lp +iu aa "} (35,1,1) = {" @@ -5817,64 +5500,64 @@ cP cP ar cP -Fh -Fh -Fh +tK +tK +tK cP aP cP cP cP cP -bL -er -ZD -xQ -bL +Qn +UX +eu +Jc +Qn cP cP cP cP sV cP -bL -gp -Ww -KV -OZ -bL +Qn +EU +zp +Va +pn +Qn cP Wg -bL -bL +Qn +Qn cP -QK +bi RS -ZI -Ok -Br +LL +tT +wj dw -ha +JB cP -bL -bL +Qn +Qn ct cP -JH +cM cP ct cP -bL -hI -LX -bL -bL -cP -bL -Hp -Et -sx -sx +Qn +aJ +DD +Qn +Qn +cP +Qn +kX +PS +iu +iu "} (36,1,1) = {" aa @@ -5885,68 +5568,68 @@ bj dS ap cP -bL -bL -ti -cP -Fh -cZ -Fh -cP -ti -bL -bL -bL -bL -bL -bI -tl -bE -bL -bL -bL -bL -bL -bj -Lo -bL -gp -qS -iV -OZ -bL -bL -bj -Bf -cP -cP -ca +Qn +Qn +CO +cP +tK +nm +tK +cP +CO +Qn +Qn +Qn +Qn +Qn +LV +Eb +rJ +Qn +Qn +Qn +Qn +Qn +bj +tj +Qn +EU +kM +Sn +pn +Qn +Qn +bj +cK +cP +cP +US RS -Ok -GM -Ok +tT +QP +tT dw -fS +xf cP cP cP -ti -JH -Rq -JH -ti +CO +cM +LT +cM +CO cP -bL +Qn bj -cE +GU cP cP cP cP cP -Es -DJ -sx +EM +sf +iu "} (37,1,1) = {" aa @@ -5961,64 +5644,64 @@ cP cP ar cP -Fh -Fh -Fh +tK +tK +tK cP aP cP cP cP cP -bL -UR -eT -jU -bL +Qn +sc +vJ +jg +Qn cP cP cP cP sV cP -bL -gp -KV -Ww -OZ -bL +Qn +EU +Va +zp +pn +Qn cP Wg -bL -bL +Qn +Qn cP -hJ +mS RS -lw -Ok -nd +EG +tT +VB dw -Ip +pf cP -bL -bL +Qn +Qn ct cP -JH +cM cP ct cP -bL -hI -LX -bL -bL -cP -bL -uO -Et -sx -sx +Qn +aJ +DD +Qn +Qn +cP +Qn +Uu +PS +iu +iu "} (38,1,1) = {" aa @@ -6029,41 +5712,41 @@ bj al ap cP -bL -bL -ti +Qn +Qn +CO FG cP cP cP FG -ti -JH -JH -bL +CO +cM +cM +Qn cP -bL -bL -bL -bL -bL +Qn +Qn +Qn +Qn +Qn cP -bL -JH -JH +Qn +cM +cM bj cP -bL -gp -Ww -Xg -OZ -bL +Qn +EU +zp +ju +pn +Qn cP bj cP -bL -bL +Qn +Qn cP Xs zg @@ -6071,8 +5754,8 @@ zg zg eg cP -bL -bL +Qn +Qn bj bj bj @@ -6080,16 +5763,16 @@ IC bj bj cP -bL +Qn bj -bL -bL -bL +Qn +Qn +Qn cP -uO -Fx -tn -sx +Uu +yB +lp +iu aa "} (39,1,1) = {" @@ -6101,7 +5784,7 @@ bj am ap cP -bL +Qn bj bj aw @@ -6111,8 +5794,8 @@ bj aw bj bj -JH -cd +cM +FS cP cP cP @@ -6120,22 +5803,22 @@ cP cP cP cP -Gk -JH -bL +BT +cM +Qn bj cP cP -bL -bL -bL -bL +Qn +Qn +Qn +Qn cP cP bj cP cP -bL +Qn cP cP cP @@ -6143,10 +5826,10 @@ cP cP cP cP -bL +Qn Im bj -fg +GV cP cP Be @@ -6158,8 +5841,8 @@ cP cP cP cP -cR -ob +RQ +vR bj bj aa @@ -6173,28 +5856,28 @@ bj YM ap cP -bL +Qn bj -fg +GV cP -bL +Qn bj -fg +GV cP -bL +Qn bj -JH -cz -kA -bL -bL +cM +pR +VM +Qn +Qn cP -bL -bL -KX -Mb -JH -bL +Qn +Qn +XB +yw +cM +Qn bj cP cP @@ -6207,18 +5890,18 @@ cP bj cP cP -bL -bL -bL -bL -bL -bL -bL -bL -bL +Qn +Qn +Qn +Qn +Qn +Qn +Qn +Qn +Qn fF bj -ao +HQ cP cP cP @@ -6231,7 +5914,7 @@ cP cP cP bj -VY +ic bj aa aa @@ -6245,28 +5928,28 @@ bj ay ap cP -bL +Qn bj -nT +QV cP -bL +Qn bj -nT +QV cP -bL +Qn bj -JH -JH -bL -bL -bL +cM +cM +Qn +Qn +Qn cP -bL -bL -bL -bL -JH -bL +Qn +Qn +Qn +Qn +cM +Qn bj cJ cP @@ -6290,16 +5973,16 @@ cP cP rY bj -Cz +lz cP cP Uv bj -cA -cA +uy +uy bj -cO -cO +Ad +Ad bj bj bj @@ -6317,7 +6000,7 @@ bj aA ap cP -bL +Qn bj ww cP @@ -6327,42 +6010,42 @@ PN cP KK bj -bL -JH -JH -bL -bL +Qn +cM +cM +Qn +Qn cP -bL -bL -bL -JH -JH -bL +Qn +Qn +Qn +cM +cM +Qn bj cL cr bj -DF -Sx -wH -Ys +XG +FR +kg +Mx bj -vO +Kf cP bj bX -fq +mM bV cf -fq +mM dm cn -fq +mM ch bj bj -av +if eY cP cP @@ -6389,55 +6072,55 @@ bj ag GP cP -bL +Qn bj -bL +Qn cP -bL +Qn bj -bL +Qn cP -bL +Qn bj -bL -bL -JH -JH +Qn +Qn +cM +cM bN -MI +KE bN -JH -JH -JH -bL -bL +cM +cM +cM +Qn +Qn bj bj bj bj -di -zA -zA -NA +dD +in +in +XT bj Zi cP bj -bL -bL +Qn +Qn bj -bL -bL +Qn +Qn bj -bL -bL +Qn +Qn bj bj bj -GY -yO -JL -Hv +rW +xF +II +TJ bj bj bj @@ -6459,55 +6142,55 @@ aa ae bj bN -aC +me cP -bL +Qn bj -bL +Qn eY -bL +Qn bj -bL +Qn eY -bL +Qn bj -cQ +ix cP -bL -cH -ti +Qn +jY +CO bd -ti -Ut -bL +CO +DI +Qn cP -tR +Ck bj bj bj bj bj bj -yH -yH -RE +cD +cD +Ic bj -bH -bH +Hw +Hw bj -bL -cS +Qn +gf bj -bL -cS +Qn +gf bj -bL -cS +Qn +gf bj bj bj -Fy -Fy +eM +eM bj bj bj @@ -6531,29 +6214,29 @@ aa ad bj bN -ZR -aV -bn +XJ +Gu +QM bj -av -ZM -bO +if +Zj +jr bj -av -ZM -bO +if +Zj +jr bj -tD +BP cP cP -bg +Qa bj bj bj -Ut +RL cP cP -tR +zc bj bj bj @@ -6615,17 +6298,17 @@ bj bj bj bj -Je +fR cP cP -Pm -ov -nh -ZM -zZ +RF +gN +SA +JJ +uH cP cP -tR +Wc bj bj bj @@ -6687,7 +6370,7 @@ aa aa aa bj -cC +Mz cP cP cP @@ -6697,7 +6380,7 @@ cP cP cP cP -tR +AP bj bj aa @@ -6833,11 +6516,11 @@ aa aa bj bj -bc -bc -bc -bc -bc +ec +ec +ec +ec +ec bj cP cP @@ -6850,9 +6533,9 @@ aa aa bj bj -HD -JH -If +BH +cM +pm bj bj bj @@ -6922,9 +6605,9 @@ aa bj bj bj -HD -JH -If +BH +cM +pm bj bj bj @@ -6970,17 +6653,17 @@ aa ac bj bj -aF -JH -JH -JH -bL -bL +pB +cM +cM +cM +Qn +Qn cF cP -bL -bL -bL +Qn +Qn +Qn cP bj cP @@ -6994,9 +6677,9 @@ bj bj bj bj -sx -Zs -sx +iu +nM +iu bj bj bj @@ -7042,33 +6725,33 @@ aa ae bj bj -aG -aL -bL -JH -bL -bL +xZ +Mu +Qn +cM +Qn +Qn bj cP -XP -XP -XP +mY +mY +mY cP bj cP cP bj -bv -bv -bv -bv -bv +Lx +Lx +Lx +Lx +Lx bj -gb -JH -JH -JH -Bg +qm +cM +cM +cM +qp bj bj bj @@ -7114,33 +6797,33 @@ aa ae bj az -aI -co -bL -JH -bL -bL +el +KY +Qn +cM +Qn +Qn bj cP -bc -bc -bc +ec +ec +ec cP bj cP cP bj -bL -bL -bL -bL -bL -Fy -dk -JH -JH -JH -gr +Qn +Qn +Qn +Qn +Qn +eM +kK +cM +cM +cM +kc bj bj aa @@ -7186,17 +6869,17 @@ aa ae bj az -aK -cy -bL -JH -bL -bL +mg +kJ +Qn +cM +Qn +Qn cF cP -bL -bL -bL +Qn +Qn +Qn cP bj cP @@ -7208,10 +6891,10 @@ cP cP cP bD -df -JH -BK -BK +Yz +cM +HE +HE bj bj bj @@ -7258,12 +6941,12 @@ aa ae bj bj -aG -aL -bL -JH -bL -bL +xZ +Mu +Qn +cM +Qn +Qn bj cP cP @@ -7274,14 +6957,14 @@ YL cP cP bj -bL -bL -bL -Qz -bL -Fy -dl -JH +Qn +Qn +Qn +Bp +Qn +eM +kU +cM bj bj bj @@ -7330,27 +7013,27 @@ aa ad bj bj -nv -JH -JH -JH -bL -bL +PC +cM +cM +cM +Qn +Qn bj -cG -ME -ME -ME -dk +gI +QL +QL +QL +kK bj cP cP bj -by +Oj bj -by +Oj bj -by +Oj bj bj bj @@ -7480,13 +7163,13 @@ aa aa bj bj -JH -JH -JH -JH -JH -JH -JH +cM +cM +cM +cM +cM +cM +cM bj bj aa @@ -7553,11 +7236,11 @@ aa aa bj bj -JH -JH -JH -JH -JH +cM +cM +cM +cM +cM bj bj aa @@ -7626,9 +7309,9 @@ aa aa bj bj -JH -JH -JH +cM +cM +cM bj bj aa @@ -7699,7 +7382,7 @@ aa aa bj Dr -sx +iu Dr bj aa diff --git a/maps/predship/regular.dmm b/maps/predship/regular.dmm index 895e8ae84c..5524370c08 100644 --- a/maps/predship/regular.dmm +++ b/maps/predship/regular.dmm @@ -6,122 +6,83 @@ /obj/structure/machinery/door/airlock/secure{ name = "Storage Chamber" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "af" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ah" = ( /obj/structure/surface/rack, /obj/item/weapon/twohanded/spear, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ai" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lantern, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ak" = ( /obj/structure/surface/rack, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "am" = ( /obj/structure/surface/rack, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ao" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ap" = ( /obj/structure/surface/table/reinforced{ layer = 2.69 }, /obj/item/weapon/yautja/knife, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ar" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/retractor/predatorretractor, /obj/item/tool/surgery/circular_saw/predatorbonesaw, /obj/item/tool/surgery/cautery/predatorcautery, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "az" = ( /obj/structure/machinery/optable, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aA" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/bonegel/predatorbonegel, /obj/item/tool/surgery/hemostat/predatorhemostat, /obj/item/tool/surgery/bonesetter/predatorbonesetter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aB" = ( /obj/structure/surface/table/reinforced, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aG" = ( /obj/structure/surface/rack, /obj/item/storage/box/lights/bulbs, /obj/item/storage/box/lights/bulbs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aK" = ( /obj/structure/bed/alien, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aN" = ( /obj/structure/surface/table/reinforced{ @@ -131,36 +92,24 @@ dir = 8 }, /obj/structure/machinery/door/window/southleft, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aO" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/surgery/surgicaldrill/predatorsurgicaldrill, /obj/item/tool/surgery/scalpel/predatorscalpel, /obj/item/tool/surgery/FixOVein/predatorFixOVein, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aP" = ( /obj/structure/curtain/red, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aQ" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Operation Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aT" = ( /obj/structure/surface/table/reinforced{ @@ -178,27 +127,18 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aU" = ( /obj/structure/surface/rack, /obj/item/storage/backpack/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aW" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Houndmaster's Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aX" = ( /obj/structure/surface/table/reinforced, @@ -232,10 +172,7 @@ /obj/item/stack/medical/splint{ name = "splints" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aY" = ( /obj/structure/surface/table/reinforced, @@ -254,10 +191,7 @@ /obj/item/stack/medical/advanced/bruise_pack/predator{ name = "mending herbs" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "aZ" = ( /obj/structure/surface/table/reinforced{ @@ -271,10 +205,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ba" = ( /obj/structure/surface/table/reinforced, @@ -293,26 +224,17 @@ /obj/item/stack/medical/advanced/ointment/predator{ name = "soothing herbs" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bg" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Medicine Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bh" = ( /obj/structure/machinery/autolathe/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bi" = ( /obj/structure/surface/rack{ @@ -336,19 +258,13 @@ /obj/item/stack/sheet/mineral/sandstone{ amount = 50 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bj" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Hellhound Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bp" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -364,10 +280,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bs" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -387,10 +300,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bu" = ( /obj/item/clothing/mask/gas/yautja/hunter, @@ -407,10 +317,7 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bx" = ( /obj/effect/step_trigger/teleporter/yautja_ship, @@ -418,9 +325,7 @@ /area/yautja) "bz" = ( /obj/structure/shuttle/window, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "bA" = ( /obj/structure/surface/table/reinforced, @@ -428,10 +333,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bM" = ( /obj/structure/surface/table/reinforced, @@ -444,10 +346,7 @@ dir = 4 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bN" = ( /obj/structure/surface/table/reinforced, @@ -460,10 +359,7 @@ health = 80 }, /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bO" = ( /obj/structure/surface/table/reinforced, @@ -479,10 +375,7 @@ desc = "A close-fitting mask that appears to only cover half of the face. One can only wonder who would make such a thing."; name = "strange half-mask" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bP" = ( /obj/structure/surface/table/reinforced, @@ -490,17 +383,11 @@ dir = 8; health = 80 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bQ" = ( /obj/structure/window/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bR" = ( /obj/structure/surface/table/reinforced{ @@ -517,19 +404,13 @@ }, /obj/item/clothing/suit/armor/yautja/hunter, /obj/item/clothing/shoes/yautja/hunter, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bS" = ( /obj/structure/machinery/door/airlock/centcom{ name = "Airlock Out" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bT" = ( /obj/item/hunting_trap, @@ -545,25 +426,16 @@ /obj/item/hunting_trap, /obj/item/hunting_trap, /obj/item/hunting_trap, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bU" = ( /obj/structure/xenoautopsy/tank, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bV" = ( /obj/structure/surface/rack, /obj/item/device/encryptionkey/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bW" = ( /obj/structure/surface/rack, @@ -572,17 +444,11 @@ pixel_x = -6; pixel_y = -5 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bX" = ( /obj/structure/xenoautopsy/tank/hugger, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bY" = ( /obj/structure/surface/rack{ @@ -592,17 +458,11 @@ /obj/item/explosive/grenade/spawnergrenade/smartdisc, /obj/item/explosive/grenade/spawnergrenade/smartdisc, /obj/item/explosive/grenade/spawnergrenade/smartdisc, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "bZ" = ( /obj/structure/xenoautopsy/tank/alien, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ca" = ( /obj/structure/surface/rack, @@ -611,10 +471,7 @@ dir = 4; icon_state = "bulb1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cb" = ( /obj/structure/surface/rack, @@ -622,45 +479,30 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cc" = ( /obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ce" = ( /obj/structure/surface/rack, /obj/item/weapon/yautja/knife, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cg" = ( /obj/structure/xenoautopsy/tank, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ch" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/snacks/meat, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ci" = ( /obj/structure/surface/rack, @@ -669,10 +511,7 @@ pixel_x = -2; pixel_y = -2 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cj" = ( /obj/structure/xenoautopsy/tank, @@ -680,10 +519,7 @@ dir = 4; icon_state = "bulb1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ck" = ( /obj/structure/surface/rack, @@ -703,10 +539,7 @@ pixel_x = -4; pixel_y = -3 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cl" = ( /obj/structure/surface/rack, @@ -721,27 +554,19 @@ /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, /obj/item/weapon/harpoon/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cm" = ( /obj/structure/machinery/door/airlock/secure{ name = "Central Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cn" = ( /obj/structure/machinery/door/airlock/secure{ name = "Storage Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "co" = ( /obj/structure/surface/table/reinforced, @@ -752,10 +577,7 @@ /obj/structure/machinery/door/window/southleft{ layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cp" = ( /obj/structure/surface/table/reinforced, @@ -766,44 +588,29 @@ /obj/structure/machinery/door/window/southleft{ layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cq" = ( /obj/structure/bed/chair/wood/wings, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cu" = ( /obj/structure/bed/chair/wood/wings{ dir = 4; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cv" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cw" = ( /obj/structure/bed/chair/wood/wings{ dir = 8; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cx" = ( /obj/structure/surface/table/reinforced, @@ -821,38 +628,26 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cy" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Meeting Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cz" = ( /obj/structure/machinery/door/airlock/secure{ name = "Trophy Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cA" = ( /obj/structure/bed/chair/wood/wings{ dir = 1; icon_state = "wooden_chair_wings" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cB" = ( /obj/structure/surface/table/reinforced, @@ -866,10 +661,7 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cC" = ( /obj/structure/surface/table/reinforced, @@ -882,35 +674,24 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cD" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/utensil/spoon, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cE" = ( /obj/item/reagent_container/food/snacks/stew, /obj/structure/surface/table/reinforced, /obj/item/reagent_container/food/snacks/stew, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cG" = ( /obj/structure/machinery/door/airlock/secure{ name = "Practice Chamber" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cH" = ( /obj/structure/surface/table/reinforced, @@ -918,10 +699,7 @@ /obj/item/clothing/under/chainshirt/hunter, /obj/item/clothing/gloves/combat, /obj/item/clothing/head/helmet/gladiator, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cI" = ( /obj/structure/surface/table/reinforced, @@ -929,10 +707,7 @@ /obj/item/device/assembly/voice, /obj/item/weapon/baton/cattleprod, /obj/item/weapon/baton/cattleprod, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cJ" = ( /obj/structure/surface/table/reinforced, @@ -941,29 +716,20 @@ /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, /obj/item/clothing/mask/muzzle, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cK" = ( /obj/structure/machinery/door/airlock/freezer{ name = "\improper Cooler Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cL" = ( /obj/structure/machinery/door/airlock/glass{ id = "Prisoner Cell 1"; name = "\improper Prisoner Cell 1" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cM" = ( /obj/structure/machinery/door_display/research_cell{ @@ -978,10 +744,7 @@ id = "Prisoner Cell 2"; name = "\improper Prisoner Cell 2" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cO" = ( /obj/structure/machinery/door_display/research_cell{ @@ -996,10 +759,7 @@ id = "Prisoner Cell 3"; name = "\improper Prisoner Cell 3" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cQ" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1011,45 +771,31 @@ /area/yautja) "cR" = ( /obj/structure/closet, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cS" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Feeder Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cW" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Feed Hall" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cX" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Containment Cells" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "cY" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Wargear Storage" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "cZ" = ( /obj/structure/surface/table/reinforced, @@ -1059,36 +805,24 @@ /obj/item/weapon/sword, /obj/item/weapon/sword, /obj/item/weapon/sword, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "da" = ( /obj/structure/machinery/door/airlock/glass{ name = "\improper Fighting Pit" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "db" = ( /obj/structure/kitchenspike, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dd" = ( /obj/structure/machinery/door/airlock/glass{ id = "Prisoner Cell 4"; name = "\improper Prisoner Cell 4" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "de" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1103,10 +837,7 @@ id = "Prisoner Cell 5"; name = "\improper Prisoner Cell 5" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dg" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1121,10 +852,7 @@ id = "Prisoner Cell 6"; name = "\improper Prisoner Cell 6" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "di" = ( /obj/structure/machinery/door_display/research_cell{ @@ -1136,78 +864,50 @@ /area/yautja) "dk" = ( /obj/structure/surface/table/reinforced, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dl" = ( /obj/structure/surface/table/reinforced, -/obj/item/legcuffs, -/obj/item/legcuffs, -/obj/item/legcuffs, -/obj/item/legcuffs, -/obj/item/legcuffs, -/obj/item/legcuffs, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/obj/item/restraint/legcuffs, +/obj/item/restraint/legcuffs, +/obj/item/restraint/legcuffs, +/obj/item/restraint/legcuffs, +/obj/item/restraint/legcuffs, +/obj/item/restraint/legcuffs, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dm" = ( /obj/structure/morgue/sarcophagus, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "do" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Fore Rooms" }, -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "dp" = ( /obj/structure/surface/table/reinforced, -/obj/item/XenoBio/Blood, -/obj/item/XenoBio/Blood, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, -/area/yautja) -"dq" = ( -/obj/structure/surface/table/reinforced, -/obj/item/XenoItem, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/obj/item/oldresearch/Blood, +/obj/item/oldresearch/Blood, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ds" = ( /obj/structure/surface/table/reinforced, /obj/item/alienjar, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dz" = ( /obj/structure/surface/table/reinforced, -/obj/item/XenoBio/Resin, -/obj/item/XenoBio/Resin, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/obj/item/oldresearch/Resin, +/obj/item/oldresearch/Resin, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dB" = ( /obj/structure/machinery/door/window/southleft{ @@ -1218,76 +918,49 @@ icon_state = "left"; layer = 2.8 }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dC" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Burial Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dD" = ( /obj/structure/machinery/door/airlock/secure{ name = "\improper Growth and Research Chamber" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dH" = ( /obj/structure/machinery/door/airlock/external{ name = "\improper Airlock" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dK" = ( /obj/structure/machinery/door/airlock/secure{ name = "Navigator's Room" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dL" = ( /obj/effect/alien/egg, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dP" = ( /obj/structure/bed/chair/wood/normal{ icon_state = "echair0" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dQ" = ( /obj/structure/surface/table/woodentable, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "dR" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "hd" = ( /obj/structure/shuttle/engine/heater{ @@ -1298,56 +971,38 @@ dir = 1; icon_state = "bulb1" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "hW" = ( /obj/structure/ore_box, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "hX" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lantern, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "ji" = ( /obj/structure/window/framed/colony/reinforced/hull{ color = "#686245" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "jH" = ( /obj/structure/machinery/door/airlock/secure{ name = "Blooded Chambers" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "kj" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/backpack/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "kl" = ( /obj/structure/surface/table/reinforced, /obj/item/device/flashlight/lantern, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ld" = ( /obj/structure/surface/table/reinforced, @@ -1356,27 +1011,19 @@ /obj/item/clothing/gloves/combat, /obj/item/clothing/head/helmet/gladiator, /obj/item/clothing/suit/armor/gladiator, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "pH" = ( /obj/structure/bed/alien, /obj/effect/landmark/clan_spawn, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ET" = ( /obj/structure/machinery/power/terminal{ dir = 1; icon_state = "term" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "HY" = ( /obj/structure/machinery/power/smes/magical{ @@ -1385,9 +1032,7 @@ dir = 4; name = "plasma power generator" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "Jy" = ( /obj/structure/surface/table/reinforced{ @@ -1395,19 +1040,13 @@ }, /obj/item/reagent_container/hypospray/autoinjector/yautja, /obj/item/reagent_container/hypospray/autoinjector/yautja, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "Oj" = ( /obj/structure/machinery/door/airlock/secure{ name = "Elder Quarters" }, -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "TU" = ( /turf/closed/shuttle{ @@ -1429,20 +1068,13 @@ /turf/open/space, /area/space) "Zr" = ( -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) "Zv" = ( -/turf/open/floor/holofloor{ - dir = 2; - icon_state = "cult" - }, +/turf/open/floor/holofloor/cult/south, /area/yautja) "ZB" = ( -/turf/open/shuttle{ - icon_state = "floor6" - }, +/turf/open/shuttle/red, /area/yautja) "ZI" = ( /turf/closed/wall/indestructible/other{ @@ -1454,9 +1086,7 @@ dir = 1; icon_state = "heater" }, -/turf/open/floor{ - icon_state = "floor4" - }, +/turf/open/floor/floor4, /area/yautja) (1,1,1) = {" @@ -3112,7 +2742,7 @@ dd Zv Zv ZI -dq +cv cu Zv Zv diff --git a/maps/prison_station_fop.json b/maps/prison_station_fop.json index 907129fedb..0111749202 100644 --- a/maps/prison_station_fop.json +++ b/maps/prison_station_fop.json @@ -3,14 +3,14 @@ "map_path": "map_files/FOP_v2_Cellblocks", "map_file": "Prison_Station_FOP.dmm", "survivor_types": [ - "/datum/equipment_preset/survivor/scientist/florina", - "/datum/equipment_preset/survivor/doctor/florina", + "/datum/equipment_preset/survivor/scientist/fiorina", + "/datum/equipment_preset/survivor/doctor/fiorina", "/datum/equipment_preset/survivor/interstellar_human_rights_observer", - "/datum/equipment_preset/survivor/security/florina", + "/datum/equipment_preset/survivor/security/fiorina", "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/prisoner", "/datum/equipment_preset/survivor/gangleader", - "/datum/equipment_preset/survivor/engineer/florina", + "/datum/equipment_preset/survivor/engineer/fiorina", "/datum/equipment_preset/survivor/clf", "/datum/equipment_preset/survivor/civilian" ], @@ -24,7 +24,10 @@ "survivor_message": "You are a survivor of the attack on Fiorina Orbital Penitentiary. You worked or lived on the prison station, and managed to avoid the alien attacks... until now.", "map_item_type": "/obj/item/map/FOP_map", "announce_text": "An automated distress signal has been received from maximum-security prison \"Fiorina Orbital Penitentiary\". A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", - "environment_traits": { "Lockdown": true }, + "environment_traits": { + "Lockdown": true, + "InSpace": true + }, "traits": [{ "Ground": true }], "nightmare_path": "maps/Nightmare/maps/FOP_v2_Cellblocks/", "xvx_hives": { diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm index 03abb88ee2..0e6d6d951f 100644 --- a/maps/shuttles/dropship_alamo.dmm +++ b/maps/shuttles/dropship_alamo.dmm @@ -1,17 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aj" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_one{ - dir = 4; - pixel_x = -16 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 +"at" = ( +/obj/effect/attach_point/fuel/dropship1{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/closed/shuttle/dropship1/transparent{ + icon_state = "28" }, /area/shuttle/drop1/sulaco) "ax" = ( @@ -26,10 +19,9 @@ /obj/structure/shuttle/part/dropship1/transparent/nose_top_right, /turf/template_noop, /area/shuttle/drop1/sulaco) -"cr" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_one{ - dir = 8; - pixel_x = 16 +"co" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 }, /obj/structure/bed/chair/vehicle{ dir = 1; @@ -39,76 +31,53 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) -"cv" = ( -/obj/effect/attach_point/crew_weapon/dropship1{ - attach_id = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "cC" = ( /obj/structure/shuttle/part/dropship1/nose_front_right, /turf/template_noop, /area/shuttle/drop1/sulaco) -"cR" = ( +"cN" = ( /obj/item/device/radio/intercom/alamo{ pixel_y = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop1/sulaco) "de" = ( /turf/closed/shuttle/dropship1{ icon_state = "42" }, /area/shuttle/drop1/sulaco) -"dU" = ( -/obj/structure/machinery/door_control{ - id = "dropship_alamo"; - name = "Dropship Lockdown"; - normaldoorcontrol = 3; - pixel_y = -19; - req_one_access_txt = "3;22"; - throw_range = 15 - }, -/turf/open/shuttle/dropship{ - icon_state = "floor8" +"dK" = ( +/obj/effect/attach_point/crew_weapon/dropship1/floor{ + attach_id = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "eD" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_right_cap, /turf/template_noop, /area/shuttle/drop1/sulaco) +"hB" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/dropship_one{ + pixel_x = -6; + pixel_y = -16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) "hG" = ( /turf/closed/shuttle/dropship1{ icon_state = "75" }, /area/shuttle/drop1/sulaco) -"if" = ( -/obj/structure/shuttle/part/dropship1/left_outer_wing_connector, -/turf/template_noop, -/area/shuttle/drop1/sulaco) "ig" = ( /turf/closed/shuttle/dropship1{ icon_state = "24" }, /area/shuttle/drop1/sulaco) -"il" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) -"in" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, -/area/shuttle/drop1/sulaco) "iv" = ( /turf/closed/shuttle/dropship1{ icon_state = "73" @@ -133,9 +102,25 @@ /obj/structure/shuttle/part/dropship1/transparent/middle_right_wing, /turf/template_noop, /area/shuttle/drop1/sulaco) +"ll" = ( +/obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust, +/turf/template_noop, +/area/shuttle/drop1/sulaco) "mb" = ( /turf/template_noop, /area/template_noop) +"mc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + id = "aft_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) +"mf" = ( +/obj/effect/attach_point/crew_weapon/dropship1/floor{ + attach_id = 9 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) "mW" = ( /obj/item/device/radio/intercom/alamo{ pixel_x = -10 @@ -162,20 +147,17 @@ icon_state = "94" }, /area/shuttle/drop1/sulaco) +"om" = ( +/obj/effect/attach_point/crew_weapon/dropship1/floor{ + attach_id = 7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) "oo" = ( /turf/closed/shuttle/dropship1{ icon_state = "76" }, /area/shuttle/drop1/sulaco) -"os" = ( -/obj/effect/attach_point/fuel/dropship1{ - pixel_x = -32; - attach_id = 11 - }, -/turf/closed/shuttle/dropship1/transparent{ - icon_state = "33" - }, -/area/shuttle/drop1/sulaco) "oW" = ( /obj/structure/shuttle/part/dropship1/transparent/middle_left_wing, /turf/template_noop, @@ -185,6 +167,12 @@ icon_state = "25" }, /area/shuttle/drop1/sulaco) +"pH" = ( +/obj/item/device/radio/intercom/alamo{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/drop1/sulaco) "qn" = ( /turf/closed/shuttle/dropship1{ icon_state = "50" @@ -200,25 +188,10 @@ icon_state = "27" }, /area/shuttle/drop1/sulaco) -"qF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) -"rl" = ( -/obj/structure/shuttle/part/dropship1/lower_right_wall, -/turf/template_noop, +"qG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "rr" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -229,43 +202,26 @@ /obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing, /turf/template_noop, /area/shuttle/drop1/sulaco) -"sA" = ( -/obj/structure/shuttle/part/dropship1/lower_left_wall, -/turf/template_noop, -/area/shuttle/drop1/sulaco) -"tR" = ( -/obj/item/device/radio/intercom/alamo{ - layer = 3.5; - pixel_x = 21; - pixel_y = 43 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"tm" = ( +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = -10; + pixel_y = 16 }, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/one, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) -"uR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ - dir = 1; - id = "starboard_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"ur" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/drop1/sulaco) -"wk" = ( -/obj/effect/attach_point/weapon/dropship1/right_wing, -/obj/structure/shuttle/part/dropship1/transparent/lower_right_wing, +"uu" = ( +/obj/structure/shuttle/part/dropship1/left_inner_wing_connector, /turf/template_noop, /area/shuttle/drop1/sulaco) -"wr" = ( -/obj/effect/attach_point/crew_weapon/dropship1{ - attach_id = 9 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"vi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/area/shuttle/drop1/sulaco) -"ws" = ( /obj/structure/bed/chair/vehicle{ dir = 1; pixel_x = 8 @@ -274,20 +230,22 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) -"wC" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"vI" = ( +/obj/structure/shuttle/part/dropship1/bottom_left_wall, +/turf/template_noop, /area/shuttle/drop1/sulaco) -"xM" = ( -/obj/structure/shuttle/part/dropship1/bottom_right_wall, +"wk" = ( +/obj/effect/attach_point/weapon/dropship1/right_wing, +/obj/structure/shuttle/part/dropship1/transparent/lower_right_wing, +/turf/template_noop, +/area/shuttle/drop1/sulaco) +"xu" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) +"yP" = ( +/obj/structure/shuttle/part/dropship1/lower_left_wall, /turf/template_noop, /area/shuttle/drop1/sulaco) "yQ" = ( @@ -295,14 +253,21 @@ icon_state = "89" }, /area/shuttle/drop1/sulaco) -"yU" = ( -/obj/structure/shuttle/part/dropship1/bottom_left_wall, +"yR" = ( +/obj/effect/attach_point/electronics/dropship1{ + dir = 1; + attach_id = 6 + }, +/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons, /turf/template_noop, /area/shuttle/drop1/sulaco) "zw" = ( /obj/structure/shuttle/part/dropship1/transparent/upper_left_wing, /turf/template_noop, /area/shuttle/drop1/sulaco) +"zL" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/shuttle/drop1/sulaco) "zN" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "98" @@ -323,47 +288,57 @@ icon_state = "38" }, /area/shuttle/drop1/sulaco) -"Bq" = ( -/obj/effect/attach_point/crew_weapon/dropship1{ - attach_id = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) "BB" = ( /turf/closed/shuttle/dropship1{ icon_state = "63" }, /area/shuttle/drop1/sulaco) +"BM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ + id = "port_door"; + dir = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) "BS" = ( /turf/closed/shuttle/dropship1{ icon_state = "48" }, /area/shuttle/drop1/sulaco) -"Ce" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" +"BY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) +"Cb" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Cg" = ( /turf/closed/shuttle/dropship1{ icon_state = "92" }, /area/shuttle/drop1/sulaco) -"Co" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/dropship_one{ - pixel_x = -6; - pixel_y = -16 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"CC" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship1, +/obj/structure/phone_base/rotary{ + name = "Alamo Telephone"; + phone_category = "Dropship"; + phone_id = "Alamo"; + pixel_x = 11; + pixel_y = 16 }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) +"CE" = ( +/obj/structure/shuttle/part/dropship1/right_outer_wing_connector, +/turf/template_noop, /area/shuttle/drop1/sulaco) -"Da" = ( +"DH" = ( /obj/effect/attach_point/electronics/dropship1{ dir = 1; attach_id = 5 @@ -371,12 +346,8 @@ /obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons, /turf/template_noop, /area/shuttle/drop1/sulaco) -"De" = ( -/obj/effect/attach_point/electronics/dropship1{ - dir = 1; - attach_id = 6 - }, -/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons, +"Ee" = ( +/obj/structure/shuttle/part/dropship1/lower_right_wall, /turf/template_noop, /area/shuttle/drop1/sulaco) "Et" = ( @@ -389,71 +360,85 @@ icon_state = "97" }, /area/shuttle/drop1/sulaco) -"EN" = ( -/obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust, -/turf/template_noop, +"Fx" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "FA" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_left_cap, /turf/template_noop, /area/shuttle/drop1/sulaco) +"FP" = ( +/obj/item/device/radio/intercom/alamo{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop1/sulaco) +"FW" = ( +/obj/structure/shuttle/part/dropship1/bottom_right_wall, +/turf/template_noop, +/area/shuttle/drop1/sulaco) +"Gg" = ( +/obj/structure/shuttle/part/dropship1/right_inner_wing_connector, +/turf/template_noop, +/area/shuttle/drop1/sulaco) "Gw" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "39" }, /area/shuttle/drop1/sulaco) -"Ho" = ( -/obj/structure/machinery/computer/dropship_weapons/dropship1, -/obj/structure/phone_base/rotary{ - name = "Alamo Telephone"; - phone_category = "Dropship"; - phone_id = "Alamo"; - pixel_x = 11; - pixel_y = 16 +"HD" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "HP" = ( /obj/effect/attach_point/weapon/dropship1/right_fore, /obj/structure/shuttle/part/dropship1/transparent/outer_right_weapons, /turf/template_noop, /area/shuttle/drop1/sulaco) -"HS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ - id = "aft_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) "Il" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "35" }, /area/shuttle/drop1/sulaco) +"IN" = ( +/obj/structure/shuttle/part/dropship1/left_outer_wing_connector, +/turf/template_noop, +/area/shuttle/drop1/sulaco) "Jb" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "80" }, /area/shuttle/drop1/sulaco) -"Jm" = ( -/obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust, -/turf/template_noop, -/area/shuttle/drop1/sulaco) "JP" = ( /turf/closed/shuttle/dropship1{ icon_state = "62" }, /area/shuttle/drop1/sulaco) -"KC" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"JS" = ( +/obj/effect/attach_point/fuel/dropship1{ + dir = 1; + pixel_x = -32 }, +/turf/closed/shuttle/dropship1/transparent{ + icon_state = "33" + }, +/area/shuttle/drop1/sulaco) +"KD" = ( +/obj/structure/shuttle/part/dropship1/transparent/engine_right_exhaust, +/turf/template_noop, /area/shuttle/drop1/sulaco) "KJ" = ( /turf/closed/shuttle/dropship1{ @@ -465,15 +450,14 @@ icon_state = "14" }, /area/shuttle/drop1/sulaco) -"Me" = ( -/obj/structure/shuttle/part/dropship1/left_inner_wing_connector, -/turf/template_noop, -/area/shuttle/drop1/sulaco) "MP" = ( /turf/closed/shuttle/dropship1{ icon_state = "64" }, /area/shuttle/drop1/sulaco) +"NL" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/drop1/sulaco) "NQ" = ( /obj/structure/shuttle/part/dropship1/transparent/left_inner_bottom_wing, /turf/template_noop, @@ -494,34 +478,32 @@ icon_state = "86" }, /area/shuttle/drop1/sulaco) -"OU" = ( -/obj/item/device/radio/intercom/alamo{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" +"Ph" = ( +/turf/closed/shuttle/dropship1{ + icon_state = "68" }, /area/shuttle/drop1/sulaco) -"Pf" = ( +"Pj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{ - dir = 2; - id = "port_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" + dir = 1; + id = "starboard_door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) -"Ph" = ( -/turf/closed/shuttle/dropship1{ - icon_state = "68" +"Pt" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_one{ + dir = 8; + pixel_x = 16 }, -/area/shuttle/drop1/sulaco) -"Py" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Qh" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -546,74 +528,42 @@ icon_state = "47" }, /area/shuttle/drop1/sulaco) -"Ta" = ( -/obj/structure/shuttle/part/dropship1/right_inner_wing_connector, -/turf/template_noop, +"ST" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Te" = ( /obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing, /turf/template_noop, /area/shuttle/drop1/sulaco) -"Tt" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/shuttle/drop1/sulaco) -"Tu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Tp" = ( +/obj/item/device/radio/intercom/alamo{ + pixel_y = 24 }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/drop1/sulaco) "TE" = ( /turf/closed/shuttle/dropship1/transparent{ icon_state = "26" }, /area/shuttle/drop1/sulaco) -"TK" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop1/sulaco) "TM" = ( /obj/effect/attach_point/weapon/dropship1/left_fore, /obj/structure/shuttle/part/dropship1/transparent/outer_left_weapons, /turf/template_noop, /area/shuttle/drop1/sulaco) -"Ua" = ( -/obj/effect/attach_point/fuel/dropship1{ - attach_id = 10 - }, -/turf/closed/shuttle/dropship1/transparent{ - icon_state = "28" - }, -/area/shuttle/drop1/sulaco) -"UG" = ( -/obj/structure/prop/ice_colony/hula_girl{ - pixel_x = -10; - pixel_y = 16 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/cameras/dropship/one, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Vi" = ( +/obj/structure/machinery/door_control{ + id = "dropship_alamo"; + name = "Dropship Lockdown"; + normaldoorcontrol = 3; + pixel_y = -19; + req_one_access_txt = "3;22"; + throw_range = 15 }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/drop1/sulaco) "Vm" = ( /turf/closed/shuttle/dropship1/transparent{ @@ -624,10 +574,6 @@ /obj/structure/shuttle/part/dropship1/transparent/nose_top_left, /turf/template_noop, /area/shuttle/drop1/sulaco) -"Wg" = ( -/obj/structure/shuttle/part/dropship1/right_outer_wing_connector, -/turf/template_noop, -/area/shuttle/drop1/sulaco) "WQ" = ( /turf/closed/shuttle/dropship1{ icon_state = "10" @@ -643,24 +589,24 @@ icon_state = "96" }, /area/shuttle/drop1/sulaco) -"XF" = ( -/obj/item/device/radio/intercom/alamo{ - pixel_y = 24 +"YI" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_one{ + dir = 4; + pixel_x = -16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop1/sulaco) "Za" = ( /turf/closed/shuttle/dropship1{ icon_state = "77" }, /area/shuttle/drop1/sulaco) -"Zo" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/drop1/sulaco) "Zv" = ( /turf/closed/shuttle/dropship1{ icon_state = "43" @@ -683,9 +629,9 @@ mb mb FA Oq -Ua +at iz -EN +ll mb mb mb @@ -699,16 +645,16 @@ hG Et iI JP -il -Pf +xu +BM mW qn -sA +yP eD Il iC rr -Jm +KD mb mb NQ @@ -717,22 +663,22 @@ NQ mb mb mb -Da +DH oo -TK -ws -TK -il -il -TK -ws +Cb +HD +Cb +xu +xu +Cb +HD SM de de Xf ig de -yU +vI mb rV "} @@ -742,89 +688,89 @@ QT Cg OL KJ -cR -Zo -Zo -Zo -Zo -Zo -Ce -TK -qF -aj -ws -TK -ws +Tp +BY +BY +BY +BY +BY +NL +Cb +vi +YI +HD +Cb +HD WQ -Me -if +uu +IN "} (5,1,1) = {" ax Xx -UG -wC +tm +ST Vm -in -TK -ws -TK -ws -TK -in -Zo -Zo -Zo -Zo -Zo -Zo -HS +zL +Cb +HD +Cb +HD +Cb +zL +BY +BY +BY +BY +BY +BY +mc mb mb "} (6,1,1) = {" ax EB -Py -tR -KC -dU +qG +FP +Fx +Vi Ph BB BB BB OK -OU -il -Bq -il -cv -il -wr -il +cN +xu +om +xu +dK +xu +mf +xu mb mb "} (7,1,1) = {" ax zN -Ho -Co +CC +hB Jb -in -TK -ws -TK -ws -TK -in -Zo -Zo -Zo -Zo -Zo -Zo -il +zL +Cb +HD +Cb +HD +Cb +zL +BY +BY +BY +BY +BY +BY +xu mb mb "} @@ -834,43 +780,43 @@ cC nO yQ Za -XF -Zo -Zo -Zo -Zo -Zo -Tt -TK -Tu -TK -ws -TK -ws +pH +BY +BY +BY +BY +BY +ur +Cb +co +Cb +HD +Cb +HD LP -Ta -Wg +Gg +CE "} (9,1,1) = {" mb mb mb -De +yR oo -TK -cr -TK -il -il -TK -ws +Cb +Pt +Cb +xu +xu +Cb +HD BS Zv Zv RI po Zv -xM +FW mb Te "} @@ -883,16 +829,16 @@ zS iv zV MP -il -uR +xu +Pj nC nE -rl +Ee FA Bn Qh TE -EN +ll mb mb QW @@ -913,9 +859,9 @@ mb mb eD Gw -os +JS qy -Jm +KD mb mb mb diff --git a/maps/shuttles/dropship_cyclone.dmm b/maps/shuttles/dropship_cyclone.dmm index 2976d18827..0a8607ad53 100644 --- a/maps/shuttles/dropship_cyclone.dmm +++ b/maps/shuttles/dropship_cyclone.dmm @@ -4,12 +4,36 @@ icon_state = "86b" }, /area/shuttle/cyclone) +"aD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "aP" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "3" }, /turf/template_noop, /area/shuttle/cyclone) +"aX" = ( +/obj/structure/shuttle/part/cyclone/transparent/nosecone{ + icon_state = "102" + }, +/turf/template_noop, +/area/shuttle/cyclone) +"ba" = ( +/obj/docking_port/mobile/marine_dropship/cyclone, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/cyclone) "bw" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "90" @@ -23,26 +47,26 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"cm" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"cR" = ( +/turf/closed/shuttle/cyclone/transparent{ + icon_state = "39" }, /area/shuttle/cyclone) -"cy" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ +"cW" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/machinery/light/double{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"cR" = ( +"dx" = ( +/obj/effect/attach_point/fuel/cyclone{ + dir = 1 + }, /turf/closed/shuttle/cyclone/transparent{ - icon_state = "39" + icon_state = "32" }, /area/shuttle/cyclone) "dN" = ( @@ -50,16 +74,17 @@ icon_state = "42" }, /area/shuttle/cyclone) -"eu" = ( +"ef" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) +"el" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) +"eQ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "eT" = ( /obj/structure/shuttle/part/cyclone/transparent, @@ -83,30 +108,15 @@ /obj/effect/attach_point/electronics/cyclone, /turf/template_noop, /area/shuttle/cyclone) -"fV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/cyclone) -"gn" = ( -/obj/docking_port/mobile/marine_dropship/cyclone, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +"fF" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/cyclone) -"ha" = ( -/obj/effect/attach_point/fuel/cyclone, -/turf/closed/shuttle/cyclone/transparent{ - icon_state = "32" +"gx" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ + dir = 4; + pixel_x = -23 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "hd" = ( /turf/closed/shuttle/cyclone/transparent{ @@ -131,56 +141,26 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"ia" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/machinery/computer/dropship_weapons/cyclone/small{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/cyclone) "iO" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "8" }, /turf/template_noop, /area/shuttle/cyclone) -"lc" = ( -/obj/structure/machinery/light/double{ +"lm" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/machinery/light/double{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "lV" = ( /turf/closed/shuttle/cyclone{ icon_state = "18" }, /area/shuttle/cyclone) -"ml" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/cyclone) "mI" = ( /turf/closed/shuttle/cyclone{ icon_state = "67" @@ -192,33 +172,47 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"nj" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +"nQ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ + dir = 8; + pixel_x = 23 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"nH" = ( +"ob" = ( /obj/structure/stairs/perspective, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "od" = ( /turf/closed/shuttle/cyclone/transparent{ icon_state = "23" }, /area/shuttle/cyclone) -"oX" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +"oP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 }, -/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ - dir = 8; - pixel_x = 23 +/obj/structure/machinery/computer/dropship_weapons/cyclone/small{ + pixel_y = 8; + pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) +"oZ" = ( +/obj/structure/shuttle/part/cyclone/transparent/nosecone{ + icon_state = "100" + }, +/turf/template_noop, /area/shuttle/cyclone) "pb" = ( /turf/closed/shuttle/cyclone{ @@ -234,18 +228,21 @@ }, /turf/template_noop, /area/shuttle/cyclone) +"py" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/cyclone) "pz" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "66" }, /turf/template_noop, /area/shuttle/cyclone) -"qj" = ( -/obj/structure/machinery/light/double{ - dir = 8 +"pJ" = ( +/obj/effect/attach_point/fuel/cyclone{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/closed/shuttle/cyclone/transparent{ + icon_state = "28" }, /area/shuttle/cyclone) "qs" = ( @@ -263,6 +260,9 @@ icon_state = "48" }, /area/shuttle/cyclone) +"rf" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/cyclone) "ro" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "99a" @@ -284,13 +284,15 @@ icon_state = "37" }, /area/shuttle/cyclone) -"sR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"ta" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) +"tu" = ( +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/cyclone) "tU" = ( /turf/closed/shuttle/cyclone{ @@ -326,6 +328,27 @@ icon_state = "35" }, /area/shuttle/cyclone) +"xD" = ( +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Cyclone telephone receiver"; + phone_id = "Cyclone" + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "xY" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "85" @@ -333,24 +356,28 @@ /obj/effect/attach_point/weapon/cyclone/left_fore, /turf/template_noop, /area/shuttle/cyclone) -"yA" = ( -/obj/structure/shuttle/part/cyclone/gunpod_prop, -/turf/template_noop, -/area/shuttle/cyclone) -"yP" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"yy" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + dir = 1 }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "zz" = ( /turf/closed/shuttle/cyclone/transparent{ icon_state = "80" }, /area/shuttle/cyclone) +"zC" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "zG" = ( /turf/closed/shuttle/cyclone{ icon_state = "31" @@ -361,29 +388,6 @@ icon_state = "38" }, /area/shuttle/cyclone) -"zL" = ( -/obj/structure/shuttle/part/cyclone/transparent/nosecone{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/cyclone) -"Ak" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Cyclone cargo door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/cyclone) "Ax" = ( /obj/structure/shuttle/part/dropship2/lower_right_wall{ name = "\improper Cyclone" @@ -403,21 +407,8 @@ icon_state = "89a" }, /area/shuttle/cyclone) -"BU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"BI" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/cyclone) "Cb" = ( /obj/structure/shuttle/part/cyclone/transparent{ @@ -443,42 +434,22 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"Dl" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ - dir = 4; - pixel_x = -23 +"Ea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/cyclone) "EP" = ( /turf/closed/shuttle/cyclone{ icon_state = "75" }, /area/shuttle/cyclone) -"Fz" = ( -/obj/effect/attach_point/fuel/cyclone, -/turf/closed/shuttle/cyclone/transparent{ - icon_state = "28" - }, -/area/shuttle/cyclone) -"FD" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/cyclone) -"FV" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/shuttle/cyclone) "GE" = ( /turf/closed/shuttle/cyclone{ icon_state = "43" @@ -494,12 +465,11 @@ icon_state = "69" }, /area/shuttle/cyclone) -"Iz" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"HS" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "IP" = ( /obj/structure/shuttle/part/cyclone/transparent{ @@ -519,20 +489,6 @@ icon_state = "81" }, /area/shuttle/cyclone) -"KQ" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/cyclone) -"KU" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/shuttle/cyclone) "MU" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "84" @@ -540,33 +496,27 @@ /obj/effect/attach_point/electronics/cyclone, /turf/template_noop, /area/shuttle/cyclone) -"Ob" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +"NS" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"Pg" = ( -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 - }, -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Cyclone telephone receiver"; - phone_id = "Cyclone" +"Oi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door"; + name = "\improper Cyclone cargo door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/cyclone) "QN" = ( /obj/structure/shuttle/part/cyclone/transparent{ @@ -575,36 +525,32 @@ /obj/effect/attach_point/weapon/cyclone/right_wing, /turf/template_noop, /area/shuttle/cyclone) -"RR" = ( -/obj/structure/shuttle/part/cyclone/transparent/nosecone{ - icon_state = "100" +"QS" = ( +/obj/structure/machinery/light/double{ + dir = 8 }, -/turf/template_noop, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"Sk" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"Rj" = ( +/obj/structure/shuttle/part/cyclone/gunpod_prop, +/turf/template_noop, /area/shuttle/cyclone) "Sl" = ( /turf/closed/shuttle/cyclone{ icon_state = "77" }, /area/shuttle/cyclone) -"Ty" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/cyclone) "Uo" = ( /turf/closed/shuttle/cyclone{ icon_state = "64" }, /area/shuttle/cyclone) -"Vu" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" +"VV" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "Wr" = ( /turf/closed/shuttle/cyclone/transparent{ @@ -621,6 +567,12 @@ icon_state = "22" }, /area/shuttle/cyclone) +"XH" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "XU" = ( /turf/closed/shuttle/cyclone/transparent{ icon_state = "97a" @@ -660,7 +612,7 @@ IP wk fo vH -Fz +pJ Wv Da wk @@ -690,10 +642,10 @@ wk wk xY Sl -BU -sR -eu -sR +aD +HS +lm +HS qs YL fr @@ -703,56 +655,56 @@ Cf aP "} (4,1,1) = {" -RR +oZ cj ag vt ZU -nj -Sk -Sk -Vu -cy -Sk -Dl -qj -Ak +py +eQ +eQ +BI +VV +eQ +gx +QS +Oi wk wk "} (5,1,1) = {" -yA +Rj XU -Pg -ia -Iz -FV -KQ -KQ -gn -nH -Ty -Ty -Ty -fV +xD +oP +yy +rf +ta +ta +ba +ob +el +el +el +Ea wk wk "} (6,1,1) = {" -zL +aX ro XY Bt zz -Ob -Sk -Sk -KU -yP -Sk -Sk -lc -fV +tu +eQ +eQ +fF +NS +eQ +eQ +XH +Ea wk wk "} @@ -762,10 +714,10 @@ wk wk bw Kv -ml -oX -FD -cm +zC +nQ +cW +ef qX sA zG @@ -786,7 +738,7 @@ Uo GE Ax zH -ha +dx Wr Da wk diff --git a/maps/shuttles/dropship_midway.dmm b/maps/shuttles/dropship_midway.dmm index 19582a7611..6b41a6f9c0 100644 --- a/maps/shuttles/dropship_midway.dmm +++ b/maps/shuttles/dropship_midway.dmm @@ -4,27 +4,31 @@ icon_state = "34" }, /area/shuttle/midway) +"aP" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) "bm" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "21" }, /turf/template_noop, /area/shuttle/midway) -"bs" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +"cK" = ( +/obj/effect/attach_point/crew_weapon/midway{ + attach_id = 7 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) -"dr" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"dd" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/midway) "dB" = ( /obj/structure/shuttle/part/midway/transparent{ @@ -48,11 +52,22 @@ }, /turf/template_noop, /area/shuttle/midway) -"go" = ( -/obj/structure/shuttle/part/midway/transparent/nosecone{ - icon_state = "102" +"eS" = ( +/obj/effect/attach_point/fuel/midway{ + pixel_x = -32; + attach_id = 11; + dir = 1 + }, +/turf/closed/shuttle/midway/transparent{ + icon_state = "33" }, -/turf/template_noop, +/area/shuttle/midway) +"fF" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "gw" = ( /obj/structure/shuttle/part/midway/transparent{ @@ -86,57 +101,15 @@ icon_state = "27" }, /area/shuttle/midway) -"im" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/shuttle/midway) -"iv" = ( +"kL" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/midway) -"je" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/midway{ - dir = 4; - pixel_x = -23 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) -"jy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/midway) -"jW" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) -"kC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" + pixel_x = -10 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "ls" = ( /turf/closed/shuttle/midway/transparent{ @@ -154,6 +127,12 @@ }, /turf/template_noop, /area/shuttle/midway) +"mA" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "mE" = ( /obj/structure/shuttle/part/midway/transparent, /turf/template_noop, @@ -164,30 +143,31 @@ }, /turf/template_noop, /area/shuttle/midway) -"mL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"od" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "89b" }, /area/shuttle/midway) -"mR" = ( +"oy" = ( /obj/structure/bed/chair/dropship/passenger/folded{ pixel_y = 8; buckling_y = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) -"od" = ( -/turf/closed/shuttle/midway/transparent{ - icon_state = "89b" +"oB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) +"oG" = ( +/obj/structure/shuttle/part/midway/gunpod_prop, +/turf/template_noop, /area/shuttle/midway) "ro" = ( /turf/closed/shuttle/midway/transparent{ @@ -214,11 +194,6 @@ icon_state = "31" }, /area/shuttle/midway) -"tf" = ( -/turf/closed/shuttle/midway/transparent{ - icon_state = "97a" - }, -/area/shuttle/midway) "ti" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "86b" @@ -230,21 +205,62 @@ }, /turf/template_noop, /area/shuttle/midway) +"tT" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "ul" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "40" }, /turf/template_noop, /area/shuttle/midway) +"us" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4{ + id = "aft_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/midway) +"ut" = ( +/obj/structure/shuttle/part/midway/transparent/nosecone{ + icon_state = "102" + }, +/turf/template_noop, +/area/shuttle/midway) "ux" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "89a" }, /area/shuttle/midway) -"vJ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" +"vD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 }, +/obj/structure/machinery/computer/dropship_weapons/midway/small{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "vN" = ( /turf/closed/shuttle/midway/transparent{ @@ -261,18 +277,6 @@ icon_state = "62" }, /area/shuttle/midway) -"xy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/midway) "ym" = ( /turf/closed/shuttle/midway{ icon_state = "69" @@ -283,6 +287,12 @@ icon_state = "54" }, /area/shuttle/midway) +"yH" = ( +/obj/structure/shuttle/part/midway/transparent/nosecone{ + icon_state = "100" + }, +/turf/template_noop, +/area/shuttle/midway) "yN" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "4" @@ -301,6 +311,17 @@ icon_state = "23" }, /area/shuttle/midway) +"zG" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) +"Aa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/four, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Aw" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "91" @@ -308,6 +329,9 @@ /obj/effect/attach_point/electronics/midway, /turf/template_noop, /area/shuttle/midway) +"Bk" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/midway) "Bn" = ( /turf/closed/shuttle/midway{ icon_state = "30" @@ -329,27 +353,19 @@ }, /turf/template_noop, /area/shuttle/midway) -"Cc" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Ci" = ( +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/midway) -"Cm" = ( -/obj/effect/attach_point/fuel/midway{ - attach_id = 10 - }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "28" +"CX" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/shuttle/midway) -"Cr" = ( -/obj/structure/shuttle/part/midway/transparent/nosecone{ - icon_state = "100" +/obj/structure/platform{ + dir = 8 }, -/turf/template_noop, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Db" = ( /turf/closed/shuttle/midway/transparent{ @@ -362,59 +378,23 @@ }, /turf/template_noop, /area/shuttle/midway) -"Ds" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ +"DO" = ( +/obj/structure/machinery/light{ dir = 4; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) -"DH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 + pixel_x = 14 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" +/obj/structure/machinery/light/double{ + dir = 4 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Ed" = ( /turf/closed/shuttle/midway{ icon_state = "25" }, /area/shuttle/midway) -"EN" = ( -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 - }, -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Midway telephone receiver"; - phone_id = "Midway" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Fd" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "Fu" = ( /obj/structure/shuttle/part/midway/transparent{ @@ -428,29 +408,19 @@ }, /turf/template_noop, /area/shuttle/midway) -"Gh" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/shuttle/midway) -"Go" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/machinery/computer/dropship_weapons/midway/small{ - pixel_y = 8; - pixel_x = 8 +"Gk" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "Hj" = ( /turf/closed/shuttle/midway{ @@ -463,35 +433,18 @@ }, /turf/template_noop, /area/shuttle/midway) -"HY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4{ - id = "aft_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/midway) -"Id" = ( -/obj/effect/attach_point/crew_weapon/midway{ - attach_id = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/midway) "Ji" = ( /turf/closed/shuttle/midway{ icon_state = "64" }, /area/shuttle/midway) +"Jn" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/midway{ + dir = 4; + pixel_x = -23 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) "Jq" = ( /turf/closed/shuttle/midway{ icon_state = "72" @@ -503,30 +456,21 @@ }, /turf/template_noop, /area/shuttle/midway) -"Kv" = ( -/obj/structure/machinery/light{ - dir = 4; - pixel_x = 14 - }, -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) "Kw" = ( /turf/template_noop, /area/template_noop) +"Ln" = ( +/obj/effect/attach_point/crew_weapon/midway{ + attach_id = 7 + }, +/obj/docking_port/mobile/marine_dropship/midway, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Lr" = ( /turf/closed/shuttle/midway{ icon_state = "48" }, /area/shuttle/midway) -"LY" = ( -/obj/structure/shuttle/part/midway/gunpod_prop, -/turf/template_noop, -/area/shuttle/midway) "LZ" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "84" @@ -541,36 +485,31 @@ /obj/effect/attach_point/weapon/midway/left_fore, /turf/template_noop, /area/shuttle/midway) -"Mz" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/platform{ +"NK" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) -"ME" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/platform_decoration{ + dir = 8 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Pc" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "78" }, /area/shuttle/midway) -"PP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit/four, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"PG" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "97a" }, /area/shuttle/midway) +"PW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Qk" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "15" @@ -580,41 +519,27 @@ }, /turf/template_noop, /area/shuttle/midway) -"QK" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/midway) -"Rm" = ( -/obj/effect/attach_point/crew_weapon/midway{ - attach_id = 7 - }, -/obj/docking_port/mobile/marine_dropship/midway, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/midway) "SZ" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "5" }, /turf/template_noop, /area/shuttle/midway) -"Tl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"Tf" = ( +/obj/effect/attach_point/fuel/midway{ + attach_id = 10; + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/closed/shuttle/midway/transparent{ + icon_state = "28" }, /area/shuttle/midway) +"TE" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/midway) +"Uj" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/midway) "UI" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "90" @@ -622,6 +547,27 @@ /obj/effect/attach_point/weapon/midway/right_fore, /turf/template_noop, /area/shuttle/midway) +"Vi" = ( +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Midway telephone receiver"; + phone_id = "Midway" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Vu" = ( /turf/closed/shuttle/midway{ icon_state = "67" @@ -632,19 +578,19 @@ icon_state = "73" }, /area/shuttle/midway) -"WN" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/shuttle/midway) -"XH" = ( -/obj/effect/attach_point/fuel/midway{ - pixel_x = -32; - attach_id = 11 +"WF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "33" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/midway) +"XS" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Yr" = ( /turf/closed/shuttle/midway{ @@ -680,7 +626,7 @@ yO Kw ul af -Cm +Tf dD BU Kw @@ -710,10 +656,10 @@ Kw Kw Mw Yr -jy -Cc -dr -Cc +Gk +mA +tT +mA BI dE Bn @@ -723,56 +669,56 @@ dB Hz "} (4,1,1) = {" -Cr +yH hL ti vN Pc -bs -jW -im -Ds -mL -jW -je -QK -HY +Ci +XS +TE +CX +NK +XS +Jn +zG +us Kw Kw "} (5,1,1) = {" -LY -tf -EN -Go -PP -WN -mR -WN -Rm -kC -ME -Id -ME -DH +oG +PG +Vi +vD +Aa +Bk +oy +Bk +Ln +fF +Fd +cK +Fd +WF Kw Kw "} (6,1,1) = {" -go +ut Gf od ux ro -Gh -jW -vJ -Mz -mL -jW -jW -Kv -DH +Uj +XS +dd +aP +NK +XS +XS +DO +WF Kw Kw "} @@ -782,10 +728,10 @@ Kw Kw UI rq -xy -iv -Tl -iv +kL +PW +oB +PW Lr yB sl @@ -824,7 +770,7 @@ hO Kw mG ZZ -XH +eS if bm Kw diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm index 755d6c6273..a0ed01f14c 100644 --- a/maps/shuttles/dropship_normandy.dmm +++ b/maps/shuttles/dropship_normandy.dmm @@ -8,12 +8,12 @@ /obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) -"aH" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/cameras/dropship/two, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"aj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + id = "starboard_door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "bc" = ( /obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing, @@ -24,40 +24,28 @@ icon_state = "68" }, /area/shuttle/drop2/sulaco) -"bN" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/shuttle/drop2/sulaco) "cj" = ( /obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) -"do" = ( -/obj/effect/attach_point/crew_weapon/dropship2{ - attach_id = 9 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/drop2/sulaco) -"es" = ( -/obj/effect/attach_point/fuel/dropship2{ - pixel_x = -32; - attach_id = 11 - }, -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "33" +"dw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + id = "port_door"; + dir = 2 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "eu" = ( /turf/closed/shuttle/dropship2{ icon_state = "75" }, /area/shuttle/drop2/sulaco) +"eT" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/drop2/sulaco) "fb" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "23" @@ -73,15 +61,17 @@ icon_state = "69" }, /area/shuttle/drop2/sulaco) +"fy" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/drop2/sulaco) "fI" = ( /turf/closed/shuttle/dropship2{ icon_state = "73" }, /area/shuttle/drop2/sulaco) -"fQ" = ( -/obj/structure/shuttle/part/dropship2/left_inner_wing_connector, -/turf/template_noop, -/area/shuttle/drop2/sulaco) "gD" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "38" @@ -96,29 +86,21 @@ icon_state = "54" }, /area/shuttle/drop2/sulaco) -"gP" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"iB" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 8; + pixel_x = 16 }, -/area/shuttle/drop2/sulaco) -"it" = ( /obj/structure/bed/chair/vehicle{ - dir = 1; pixel_x = 8 }, /obj/structure/bed/chair/vehicle{ - dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) -"iI" = ( -/obj/structure/shuttle/part/dropship2/right_inner_wing_connector, +"iD" = ( +/obj/structure/shuttle/part/dropship2/left_inner_wing_connector, /turf/template_noop, /area/shuttle/drop2/sulaco) "jc" = ( @@ -147,40 +129,48 @@ /obj/structure/shuttle/part/dropship2/bottom_left_wall, /turf/template_noop, /area/shuttle/drop2/sulaco) +"kW" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "lh" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "26" }, /area/shuttle/drop2/sulaco) +"lx" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "lz" = ( /obj/effect/attach_point/weapon/dropship2/right_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, /turf/template_noop, /area/shuttle/drop2/sulaco) -"lH" = ( -/obj/structure/machinery/computer/dropship_weapons/dropship2, -/obj/structure/phone_base/rotary{ - name = "Normandy Telephone"; - phone_category = "Dropship"; - phone_id = "Normandy"; - pixel_x = 11; - pixel_y = 16 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "lJ" = ( /turf/closed/shuttle/dropship2{ icon_state = "62" }, /area/shuttle/drop2/sulaco) -"mz" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 4; - pixel_x = -16 +"lP" = ( +/obj/structure/shuttle/part/dropship2/right_inner_wing_connector, +/turf/template_noop, +/area/shuttle/drop2/sulaco) +"mD" = ( +/obj/effect/attach_point/electronics/dropship2{ + dir = 1; + attach_id = 6 }, +/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, +/turf/template_noop, +/area/shuttle/drop2/sulaco) +"mW" = ( /obj/structure/bed/chair/vehicle{ dir = 1; pixel_x = 8 @@ -189,18 +179,18 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "nq" = ( /obj/effect/attach_point/weapon/dropship2/left_fore, /obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons, /turf/template_noop, /area/shuttle/drop2/sulaco) -"nS" = ( -/obj/structure/shuttle/part/dropship2/lower_left_wall, -/turf/template_noop, +"nH" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop2/sulaco) "oc" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_top_right, @@ -220,22 +210,24 @@ icon_state = "32" }, /area/shuttle/drop2/sulaco) -"pU" = ( -/turf/closed/shuttle/dropship2{ - icon_state = "50" +"po" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 4; + pixel_x = -16 }, -/area/shuttle/drop2/sulaco) -"qg" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 }, -/area/shuttle/drop2/sulaco) -"rc" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) +"pU" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "50" }, /area/shuttle/drop2/sulaco) "rw" = ( @@ -247,45 +239,58 @@ icon_state = "22" }, /area/shuttle/drop2/sulaco) +"sI" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/drop2/sulaco) +"tC" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "uk" = ( /obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) -"vd" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"uB" = ( +/obj/structure/shuttle/part/dropship2/left_outer_wing_connector, +/turf/template_noop, /area/shuttle/drop2/sulaco) -"vw" = ( +"vq" = ( /obj/effect/attach_point/fuel/dropship2{ + dir = 1; attach_id = 10 }, /turf/closed/shuttle/dropship2/transparent{ icon_state = "28" }, /area/shuttle/drop2/sulaco) +"vJ" = ( +/obj/effect/attach_point/fuel/dropship2{ + dir = 1; + pixel_x = -32; + attach_id = 11 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33" + }, +/area/shuttle/drop2/sulaco) "wX" = ( /turf/closed/shuttle/dropship2{ icon_state = "83" }, /area/shuttle/drop2/sulaco) -"xd" = ( -/obj/effect/attach_point/electronics/dropship2{ - dir = 1; - attach_id = 6 - }, -/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, -/turf/template_noop, -/area/shuttle/drop2/sulaco) "xe" = ( /turf/closed/shuttle/dropship2{ icon_state = "18" }, /area/shuttle/drop2/sulaco) -"xx" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" +"xh" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "xU" = ( /turf/closed/shuttle/dropship2{ @@ -296,6 +301,12 @@ /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap, /turf/template_noop, /area/shuttle/drop2/sulaco) +"yj" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 7 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "yl" = ( /turf/closed/shuttle/dropship2{ icon_state = "82" @@ -306,11 +317,29 @@ icon_state = "27" }, /area/shuttle/drop2/sulaco) +"zU" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship2, +/obj/structure/phone_base/rotary{ + name = "Normandy Telephone"; + phone_category = "Dropship"; + phone_id = "Normandy"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "AN" = ( /turf/closed/shuttle/dropship2{ icon_state = "48" }, /area/shuttle/drop2/sulaco) +"AZ" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "Bb" = ( /turf/closed/shuttle/dropship2{ icon_state = "56" @@ -335,16 +364,19 @@ /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap, /turf/template_noop, /area/shuttle/drop2/sulaco) +"BJ" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "Cl" = ( /turf/closed/shuttle/dropship2{ icon_state = "42" }, /area/shuttle/drop2/sulaco) -"Co" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/shuttle/drop2/sulaco) "Dy" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "35" @@ -355,42 +387,25 @@ /obj/structure/shuttle/part/dropship2/transparent/lower_right_wing, /turf/template_noop, /area/shuttle/drop2/sulaco) -"En" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 2; - id = "port_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "Eo" = ( /turf/closed/shuttle/dropship2{ icon_state = "47" }, /area/shuttle/drop2/sulaco) -"Fq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "GE" = ( /turf/closed/shuttle/dropship2{ icon_state = "67" }, /area/shuttle/drop2/sulaco) -"GN" = ( +"HB" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "78" + }, +/area/shuttle/drop2/sulaco) +"HH" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) +"Ig" = ( /obj/structure/machinery/door_control{ id = "dropship_normandy"; name = "Dropship Lockdown"; @@ -399,14 +414,7 @@ req_one_access_txt = "3;22"; throw_range = 15 }, -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/shuttle/drop2/sulaco) -"HB" = ( -/turf/closed/shuttle/dropship2/transparent{ - icon_state = "78" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/drop2/sulaco) "Iv" = ( /obj/docking_port/mobile/marine_dropship/normandy, @@ -414,14 +422,9 @@ icon_state = "53" }, /area/shuttle/drop2/sulaco) -"JN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 1; - id = "starboard_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Jf" = ( +/obj/structure/shuttle/part/dropship2/lower_right_wall, +/turf/template_noop, /area/shuttle/drop2/sulaco) "Kl" = ( /turf/closed/shuttle/dropship2{ @@ -440,14 +443,6 @@ icon_state = "98" }, /area/shuttle/drop2/sulaco) -"Lh" = ( -/obj/item/device/radio/intercom/normandy{ - pixel_y = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, -/area/shuttle/drop2/sulaco) "Lk" = ( /turf/closed/shuttle/dropship2{ icon_state = "30" @@ -458,29 +453,15 @@ icon_state = "19" }, /area/shuttle/drop2/sulaco) -"LJ" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - pixel_x = 8; - pixel_y = -16 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "LY" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_center, /turf/template_noop, /area/shuttle/drop2/sulaco) -"Mj" = ( -/obj/effect/attach_point/crew_weapon/dropship2{ - attach_id = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"Mf" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 8 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Mx" = ( /obj/structure/shuttle/part/dropship2/transparent/nose_top_left, @@ -496,13 +477,6 @@ icon_state = "77" }, /area/shuttle/drop2/sulaco) -"MQ" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "Nt" = ( /obj/effect/attach_point/weapon/dropship2/left_wing, /obj/structure/shuttle/part/dropship2/transparent/lower_left_wing, @@ -513,10 +487,6 @@ icon_state = "37" }, /area/shuttle/drop2/sulaco) -"NM" = ( -/obj/structure/shuttle/part/dropship2/left_outer_wing_connector, -/turf/template_noop, -/area/shuttle/drop2/sulaco) "Ov" = ( /obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, /turf/template_noop, @@ -526,47 +496,17 @@ icon_state = "72" }, /area/shuttle/drop2/sulaco) -"OJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - dir = 1; - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"OP" = ( +/obj/effect/attach_point/crew_weapon/dropship2/floor{ + attach_id = 9 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Px" = ( /turf/closed/shuttle/dropship2{ icon_state = "31" }, /area/shuttle/drop2/sulaco) -"PJ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) -"Qd" = ( -/obj/structure/machinery/camera/autoname/almayer/dropship_two{ - dir = 8; - pixel_x = 16 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "Qo" = ( /turf/closed/shuttle/dropship2{ icon_state = "76" @@ -577,30 +517,17 @@ icon_state = "14" }, /area/shuttle/drop2/sulaco) -"QK" = ( -/obj/structure/shuttle/part/dropship2/lower_right_wall, -/turf/template_noop, +"Rh" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "Rr" = ( /turf/template_noop, /area/template_noop) -"RE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "RG" = ( /turf/closed/shuttle/dropship2{ icon_state = "51" }, /area/shuttle/drop2/sulaco) -"RJ" = ( -/obj/structure/shuttle/part/dropship2/right_outer_wing_connector, -/turf/template_noop, -/area/shuttle/drop2/sulaco) "SB" = ( /obj/structure/shuttle/part/dropship2/nose_front_left, /turf/template_noop, @@ -615,17 +542,6 @@ icon_state = "34" }, /area/shuttle/drop2/sulaco) -"SY" = ( -/obj/structure/bed/chair/vehicle{ - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle{ - pixel_x = -8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) "Tp" = ( /turf/closed/shuttle/dropship2{ icon_state = "64" @@ -636,10 +552,19 @@ icon_state = "81" }, /area/shuttle/drop2/sulaco) +"Ut" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/two, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) "Uu" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust, /turf/template_noop, /area/shuttle/drop2/sulaco) +"UB" = ( +/obj/structure/shuttle/part/dropship2/right_outer_wing_connector, +/turf/template_noop, +/area/shuttle/drop2/sulaco) "UP" = ( /turf/closed/shuttle/dropship2/transparent{ icon_state = "39" @@ -664,34 +589,57 @@ icon_state = "25" }, /area/shuttle/drop2/sulaco) -"VW" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/drop2/sulaco) -"VZ" = ( -/obj/item/device/radio/intercom/normandy{ - layer = 3.5; - pixel_x = 21; - pixel_y = 43 +"Wa" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + pixel_x = 8; + pixel_y = -16 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) +"Xp" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/shuttle/drop2/sulaco) "Xr" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, /turf/template_noop, /area/shuttle/drop2/sulaco) -"Zn" = ( -/obj/effect/attach_point/crew_weapon/dropship2{ - attach_id = 8 +"XY" = ( +/obj/structure/shuttle/part/dropship2/lower_left_wall, +/turf/template_noop, +/area/shuttle/drop2/sulaco) +"Yr" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/drop2/sulaco) +"YA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop2/sulaco) +"YN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/drop2/sulaco) "ZK" = ( /turf/closed/shuttle/dropship2{ @@ -715,7 +663,7 @@ Rr Rr BG SQ -vw +vq sk Xr Rr @@ -731,11 +679,11 @@ eu OI GE lJ -PJ -En +HH +dw jc pU -nS +XY yh Dy fm @@ -751,13 +699,13 @@ Rr Rr Ld Qo -SY -mz -SY -PJ -PJ -SY -it +kW +po +kW +HH +HH +kW +mW Eo Cl SO @@ -774,89 +722,89 @@ SB jq oS ML -Lh -vd -vd -vd -vd -vd -Co -SY -Fq -SY -it -SY -it +eT +Rh +Rh +Rh +Rh +Rh +Yr +kW +YA +kW +mW +kW +mW Kl -fQ -NM +iD +uB "} (5,1,1) = {" LY ME -aH -LJ +Ut +Wa HB -xx -SY -it -SY -it -SY -xx -vd -vd -vd -vd -vd -vd -RE +Xp +kW +mW +kW +mW +kW +Xp +Rh +Rh +Rh +Rh +Rh +Rh +xh Rr Rr "} (6,1,1) = {" LY Bi -MQ -VZ -VW -GN +lx +BJ +tC +Ig bJ ZK Bs Bb Iv -rc -vd -Mj -vd -Zn -vd -do -PJ +nH +Rh +yj +Rh +Mf +Rh +OP +HH Rr Rr "} (7,1,1) = {" LY Le -lH -gP +zU +AZ ac -xx -SY -it -SY -it -SY -xx -vd -vd -vd -vd -vd -vd -PJ +Xp +kW +mW +kW +mW +kW +Xp +Rh +Rh +Rh +Rh +Rh +Rh +HH Rr Rr "} @@ -866,36 +814,36 @@ rw xU Vs TZ -bN -vd -vd -vd -vd -vd -qg -SY -OJ -Qd -it -SY -it +fy +Rh +Rh +Rh +Rh +Rh +sI +kW +YN +iB +mW +kW +mW QF -iI -RJ +lP +UB "} (9,1,1) = {" Rr Rr Rr -xd +mD yl -SY -it -SY -PJ -PJ -SY -it +kW +mW +kW +HH +HH +kW +mW AN BC Nw @@ -915,11 +863,11 @@ wX fI fx Tp -PJ -JN +HH +aj gG RG -QK +Jf BG gD oW @@ -945,7 +893,7 @@ Rr Rr yh UP -es +vJ zt Uu Rr diff --git a/maps/shuttles/dropship_resolute.dmm b/maps/shuttles/dropship_resolute.dmm new file mode 100644 index 0000000000..f8f390a5de --- /dev/null +++ b/maps/shuttles/dropship_resolute.dmm @@ -0,0 +1,902 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/drop3/sulaco) +"aC" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "89" + }, +/area/shuttle/drop3/sulaco) +"bc" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "37" + }, +/area/shuttle/drop3/sulaco) +"br" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "25" + }, +/area/shuttle/drop3/sulaco) +"cd" = ( +/obj/item/device/radio/intercom/saipan{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/shuttle/drop3/sulaco) +"cB" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"cQ" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "27" + }, +/area/shuttle/drop3/sulaco) +"cX" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "64" + }, +/area/shuttle/drop3/sulaco) +"dl" = ( +/obj/structure/shuttle/part/dropship3/transparent/upper_right_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"eh" = ( +/obj/item/device/radio/intercom/saipan{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/drop3/sulaco) +"ey" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "86" + }, +/area/shuttle/drop3/sulaco) +"fb" = ( +/obj/structure/shuttle/part/dropship3/right_inner_wing_connector, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"fh" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/drop3/sulaco) +"gt" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/three, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"gD" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "36" + }, +/area/shuttle/drop3/sulaco) +"gF" = ( +/obj/item/device/radio/intercom/saipan{ + layer = 3.5; + pixel_x = 10 + }, +/turf/closed/shuttle/dropship3{ + icon_state = "54" + }, +/area/shuttle/drop3/sulaco) +"gK" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "67" + }, +/area/shuttle/drop3/sulaco) +"hO" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "63" + }, +/area/shuttle/drop3/sulaco) +"hV" = ( +/obj/effect/attach_point/crew_weapon/dropship3/floor{ + attach_id = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"hX" = ( +/obj/effect/attach_point/weapon/dropship3/left_fore, +/obj/structure/shuttle/part/dropship3/transparent/outer_left_weapons, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"iP" = ( +/obj/structure/shuttle/part/dropship3/lower_right_wall, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"iX" = ( +/obj/effect/attach_point/crew_weapon/dropship3/floor{ + attach_id = 7 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"jf" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "75" + }, +/area/shuttle/drop3/sulaco) +"jk" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "22" + }, +/area/shuttle/drop3/sulaco) +"jI" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_exhaust, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"jP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"jZ" = ( +/obj/structure/shuttle/part/dropship3/transparent/middle_left_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"kP" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "43" + }, +/area/shuttle/drop3/sulaco) +"lr" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "47" + }, +/area/shuttle/drop3/sulaco) +"ls" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "32" + }, +/area/shuttle/drop3/sulaco) +"lH" = ( +/obj/effect/attach_point/weapon/dropship3/right_fore, +/obj/structure/shuttle/part/dropship3/transparent/outer_right_weapons, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"mg" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "39" + }, +/area/shuttle/drop3/sulaco) +"nq" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "81" + }, +/area/shuttle/drop3/sulaco) +"nB" = ( +/obj/item/device/radio/intercom/saipan{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/drop3/sulaco) +"nI" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "18" + }, +/area/shuttle/drop3/sulaco) +"og" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_three{ + dir = 4; + pixel_x = -16 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"pg" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "77" + }, +/area/shuttle/drop3/sulaco) +"qP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds3{ + dir = 1; + id = "starboard_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"qU" = ( +/obj/docking_port/mobile/marine_dropship/saipan, +/turf/closed/shuttle/dropship3{ + icon_state = "53" + }, +/area/shuttle/drop3/sulaco) +"rb" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "73" + }, +/area/shuttle/drop3/sulaco) +"rB" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_top_right, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"sJ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"tm" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "50" + }, +/area/shuttle/drop3/sulaco) +"tJ" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "76" + }, +/area/shuttle/drop3/sulaco) +"tP" = ( +/obj/structure/shuttle/part/dropship3/nose_front_left, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"ul" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "19" + }, +/area/shuttle/drop3/sulaco) +"uD" = ( +/obj/structure/shuttle/part/dropship3/transparent/right_outer_bottom_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"uH" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"vm" = ( +/obj/structure/shuttle/part/dropship3/transparent/upper_left_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"vo" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "23" + }, +/area/shuttle/drop3/sulaco) +"wl" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "34" + }, +/area/shuttle/drop3/sulaco) +"wr" = ( +/obj/structure/shuttle/part/dropship3/transparent/left_outer_inner_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"wt" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "48" + }, +/area/shuttle/drop3/sulaco) +"wW" = ( +/obj/structure/shuttle/part/dropship3/lower_left_wall, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"wY" = ( +/obj/structure/shuttle/part/dropship3/left_inner_wing_connector, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"xi" = ( +/obj/item/device/radio/intercom/saipan{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"xB" = ( +/obj/effect/attach_point/weapon/dropship3/left_wing, +/obj/structure/shuttle/part/dropship3/transparent/lower_left_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"yM" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "69" + }, +/area/shuttle/drop3/sulaco) +"yQ" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "35" + }, +/area/shuttle/drop3/sulaco) +"zW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds3{ + id = "port_door"; + dir = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"BR" = ( +/obj/structure/machinery/door_control{ + id = "dropship_saipan"; + name = "Dropship Lockdown"; + normaldoorcontrol = 3; + pixel_y = -19; + req_one_access_txt = "3;22"; + throw_range = 15 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/drop3/sulaco) +"Cz" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"Dx" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_top_left, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"El" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "59" + }, +/area/shuttle/drop3/sulaco) +"EG" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "98" + }, +/area/shuttle/drop3/sulaco) +"FG" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "68" + }, +/area/shuttle/drop3/sulaco) +"FV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"Gl" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"GH" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "26" + }, +/area/shuttle/drop3/sulaco) +"Hm" = ( +/obj/structure/shuttle/part/dropship3/nose_front_right, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Hu" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "72" + }, +/area/shuttle/drop3/sulaco) +"HF" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "97" + }, +/area/shuttle/drop3/sulaco) +"HW" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "24" + }, +/area/shuttle/drop3/sulaco) +"Iu" = ( +/obj/effect/attach_point/fuel/dropship3{ + dir = 1; + attach_id = 10 + }, +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "28" + }, +/area/shuttle/drop3/sulaco) +"IF" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "51" + }, +/area/shuttle/drop3/sulaco) +"Jc" = ( +/obj/effect/attach_point/weapon/dropship3/right_wing, +/obj/structure/shuttle/part/dropship3/transparent/lower_right_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Kc" = ( +/obj/structure/shuttle/part/dropship3/right_outer_wing_connector, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Kn" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "83" + }, +/area/shuttle/drop3/sulaco) +"KR" = ( +/turf/open/shuttle/dropship/light_grey_left_to_right, +/area/shuttle/drop3/sulaco) +"Mj" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "94" + }, +/area/shuttle/drop3/sulaco) +"Mu" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "38" + }, +/area/shuttle/drop3/sulaco) +"MM" = ( +/obj/structure/shuttle/part/dropship3/transparent/right_inner_bottom_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"MR" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "31" + }, +/area/shuttle/drop3/sulaco) +"Na" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "80" + }, +/area/shuttle/drop3/sulaco) +"Nf" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_exhaust, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Ns" = ( +/obj/structure/shuttle/part/dropship3/transparent/middle_right_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Nt" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "14" + }, +/area/shuttle/drop3/sulaco) +"NV" = ( +/obj/effect/attach_point/electronics/dropship3{ + dir = 1; + attach_id = 6 + }, +/obj/structure/shuttle/part/dropship3/transparent/inner_right_weapons, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Of" = ( +/obj/effect/attach_point/crew_weapon/dropship3/floor{ + attach_id = 9 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"OK" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/dropship_three{ + pixel_x = 8; + pixel_y = -16 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"OU" = ( +/obj/structure/shuttle/part/dropship3/bottom_right_wall, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"OZ" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "29" + }, +/area/shuttle/drop3/sulaco) +"Pb" = ( +/obj/structure/shuttle/part/dropship3/bottom_left_wall, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Pc" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"Pv" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "30" + }, +/area/shuttle/drop3/sulaco) +"PS" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "78" + }, +/area/shuttle/drop3/sulaco) +"PY" = ( +/obj/structure/shuttle/part/dropship3/left_outer_wing_connector, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Qy" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"QI" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship3, +/obj/structure/phone_base/rotary{ + name = "saipan Telephone"; + phone_category = "Dropship"; + phone_id = "saipan"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"Rj" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "92" + }, +/area/shuttle/drop3/sulaco) +"Rn" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "82" + }, +/area/shuttle/drop3/sulaco) +"Sj" = ( +/obj/structure/shuttle/part/dropship3/transparent/left_outer_bottom_wing, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Sx" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_left_cap, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"SD" = ( +/turf/template_noop, +/area/template_noop) +"SH" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_three{ + dir = 8; + pixel_x = 16 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"SM" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "10" + }, +/area/shuttle/drop3/sulaco) +"SP" = ( +/obj/effect/attach_point/electronics/dropship3{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship3/transparent/inner_left_weapons, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Tc" = ( +/obj/structure/shuttle/part/dropship3/transparent/nose_center, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Tq" = ( +/obj/structure/shuttle/part/dropship3/transparent/engine_right_cap, +/turf/template_noop, +/area/shuttle/drop3/sulaco) +"Tx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ + id = "aft_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/drop3/sulaco) +"TZ" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "42" + }, +/area/shuttle/drop3/sulaco) +"Vf" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "62" + }, +/area/shuttle/drop3/sulaco) +"Vl" = ( +/obj/item/device/radio/intercom/saipan{ + layer = 3.5; + pixel_x = -10 + }, +/turf/closed/shuttle/dropship3{ + icon_state = "52" + }, +/area/shuttle/drop3/sulaco) +"VM" = ( +/obj/effect/attach_point/fuel/dropship3{ + dir = 1; + pixel_x = -32; + attach_id = 11 + }, +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "33" + }, +/area/shuttle/drop3/sulaco) +"VQ" = ( +/turf/closed/shuttle/dropship3{ + icon_state = "56" + }, +/area/shuttle/drop3/sulaco) +"Zk" = ( +/turf/closed/shuttle/dropship3/transparent{ + icon_state = "96" + }, +/area/shuttle/drop3/sulaco) + +(1,1,1) = {" +SD +SD +SD +SD +SD +vm +jZ +xB +SD +SD +SD +SD +SD +Sx +wl +Iu +jk +Nf +SD +SD +SD +"} +(2,1,1) = {" +SD +SD +SD +hX +jf +Hu +gK +Vf +Cz +zW +Vl +tm +wW +Tq +yQ +OZ +vo +jI +SD +SD +Sj +"} +(3,1,1) = {" +SD +SD +SD +SP +tJ +Pc +og +Pc +Cz +Cz +Pc +cB +lr +TZ +gD +Pv +HW +nI +Pb +SD +wr +"} +(4,1,1) = {" +Dx +tP +Rj +ey +pg +eh +sJ +sJ +sJ +sJ +sJ +fh +Pc +Qy +Pc +cB +Pc +cB +SM +wY +PY +"} +(5,1,1) = {" +Tc +Zk +gt +OK +PS +KR +Pc +cB +Pc +cB +Pc +KR +sJ +sJ +sJ +sJ +sJ +sJ +Tx +SD +SD +"} +(6,1,1) = {" +Tc +HF +jP +xi +uH +BR +FG +hO +El +VQ +qU +cd +sJ +iX +sJ +hV +sJ +Of +Cz +SD +SD +"} +(7,1,1) = {" +Tc +EG +QI +Gl +Na +KR +Pc +cB +Pc +cB +Pc +KR +sJ +sJ +sJ +sJ +sJ +sJ +Cz +SD +SD +"} +(8,1,1) = {" +rB +Hm +Mj +aC +nq +nB +sJ +sJ +sJ +sJ +sJ +ai +Pc +FV +SH +cB +Pc +cB +Nt +fb +Kc +"} +(9,1,1) = {" +SD +SD +SD +NV +Rn +Pc +cB +Pc +Cz +Cz +Pc +cB +wt +kP +bc +MR +br +ul +OU +SD +MM +"} +(10,1,1) = {" +SD +SD +SD +lH +Kn +rb +yM +cX +Cz +qP +gF +IF +iP +Sx +Mu +ls +GH +Nf +SD +SD +uD +"} +(11,1,1) = {" +SD +SD +SD +SD +SD +dl +Ns +Jc +SD +SD +SD +SD +SD +Tq +mg +VM +cQ +jI +SD +SD +SD +"} diff --git a/maps/shuttles/dropship_tornado.dmm b/maps/shuttles/dropship_tornado.dmm index 4586189c82..e648ef4cfb 100644 --- a/maps/shuttles/dropship_tornado.dmm +++ b/maps/shuttles/dropship_tornado.dmm @@ -5,11 +5,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"av" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "75" - }, -/area/shuttle/tornado) "aw" = ( /obj/structure/shuttle/part/tornado{ icon_state = "5" @@ -22,28 +17,21 @@ }, /turf/template_noop, /area/shuttle/tornado) +"aO" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/tornado) "bf" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "3" }, /turf/template_noop, /area/shuttle/tornado) -"bm" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "64" - }, -/area/shuttle/tornado) -"bp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"bE" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "bL" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -51,13 +39,29 @@ }, /turf/template_noop, /area/shuttle/tornado) +"cg" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "30" + }, +/area/shuttle/tornado) "ck" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "35" }, /turf/template_noop, /area/shuttle/tornado) -"cX" = ( +"cx" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"cP" = ( +/obj/structure/shuttle/part/tornado/gunpod_prop, +/turf/template_noop, +/area/shuttle/tornado) +"cW" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full"; can_block_movement = 0 @@ -65,18 +69,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"db" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "dm" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -84,10 +77,36 @@ }, /turf/template_noop, /area/shuttle/tornado) -"dW" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "25" +"du" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Tornado telephone receiver"; + phone_id = "Tornado" + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"dR" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "28" + }, +/obj/effect/attach_point/fuel/tornado{ + layer = 3.1; + dir = 1 + }, +/turf/template_noop, /area/shuttle/tornado) "eg" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -113,40 +132,9 @@ }, /turf/template_noop, /area/shuttle/tornado) -"fj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Tornado cargo door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/tornado) -"fr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - layer = 5; - pixel_x = 8 - }, -/obj/structure/machinery/computer/dropship_weapons/tornado/small{ - pixel_y = 8; - pixel_x = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"gB" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "18" }, /area/shuttle/tornado) "gJ" = ( @@ -165,21 +153,22 @@ }, /turf/template_noop, /area/shuttle/tornado) -"hB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"iJ" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/tornado) +"jH" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89a"; + opacity = 0 }, /area/shuttle/tornado) -"hE" = ( -/obj/structure/shuttle/part/tornado/gunpod_prop, -/turf/template_noop, +"jK" = ( +/obj/effect/attach_point/crew_weapon/tornado, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"jP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +"kf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "48" }, /area/shuttle/tornado) "kI" = ( @@ -190,9 +179,15 @@ }, /turf/template_noop, /area/shuttle/tornado) -"lb" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "77" +"lA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"lE" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "73" }, /area/shuttle/tornado) "lM" = ( @@ -201,29 +196,29 @@ }, /turf/template_noop, /area/shuttle/tornado) -"mb" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"mp" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"mt" = ( -/obj/docking_port/mobile/marine_dropship/tornado, -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"mN" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86a"; + opacity = 0 }, /area/shuttle/tornado) -"ni" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "89a"; - opacity = 0 +"mU" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "32" + }, +/obj/effect/attach_point/fuel/tornado{ + layer = 3.1; + dir = 1 }, +/turf/template_noop, /area/shuttle/tornado) -"oB" = ( +"qq" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, @@ -235,14 +230,7 @@ pixel_y = 27; pixel_x = -2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"pv" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "qF" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -250,57 +238,60 @@ }, /turf/template_noop, /area/shuttle/tornado) -"rp" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "89b"; - opacity = 0 - }, -/area/shuttle/tornado) -"sx" = ( +"rA" = ( /obj/structure/shuttle/part/tornado/transparent/nosecone{ - icon_state = "100" + icon_state = "102" }, /turf/template_noop, /area/shuttle/tornado) -"sM" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "62" - }, -/area/shuttle/tornado) -"uk" = ( -/turf/closed/shuttle/dropship2/tornado{ +"tv" = ( +/turf/closed/shuttle/dropship3/tornado{ icon_state = "47" }, /area/shuttle/tornado) -"uG" = ( +"tD" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ + dir = 4; + pixel_x = -24 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"uL" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Tornado telephone receiver"; - phone_id = "Tornado" +"ui" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/tornado) +"uE" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"uI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89b"; + opacity = 0 + }, +/area/shuttle/tornado) +"vc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97a"; + opacity = 0 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/area/shuttle/tornado) +"vh" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "72" }, /area/shuttle/tornado) "vk" = ( @@ -309,12 +300,27 @@ }, /turf/template_noop, /area/shuttle/tornado) +"vm" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "64" + }, +/area/shuttle/tornado) "vz" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "95a" }, /turf/template_noop, /area/shuttle/tornado) +"vQ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "vU" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "16" @@ -327,48 +333,20 @@ }, /turf/template_noop, /area/shuttle/tornado) -"xj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/tornado) -"xr" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"xW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"xo" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "77" }, /area/shuttle/tornado) -"yQ" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "76" +"yF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ + pixel_y = 32 }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/tornado) -"yZ" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "72" +"zn" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "104" }, /area/shuttle/tornado) "zp" = ( @@ -377,10 +355,9 @@ }, /turf/template_noop, /area/shuttle/tornado) -"zQ" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"AL" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "75" }, /area/shuttle/tornado) "Bf" = ( @@ -389,11 +366,18 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Bx" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" +"BF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "76" }, /area/shuttle/tornado) +"BH" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "BK" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "41"; @@ -405,104 +389,102 @@ }, /turf/template_noop, /area/shuttle/tornado) -"DX" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "28" - }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1 +"FE" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/turf/template_noop, -/area/shuttle/tornado) -"EQ" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "103" +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Fv" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "48" +"FI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "25" }, /area/shuttle/tornado) -"FD" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "24" - }, +"FY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FW" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ - dir = 4; - pixel_x = -24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Hy" = ( +/obj/structure/shuttle/part/tornado/transparent/nosecone{ + icon_state = "100" }, +/turf/template_noop, /area/shuttle/tornado) -"Gl" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "31" +"Iy" = ( +/obj/docking_port/mobile/marine_dropship/tornado, +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"HH" = ( +"IU" = ( /obj/structure/stairs/perspective{ + dir = 1; icon_state = "p_stair_full"; - can_block_movement = 0 + pixel_y = 22 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + layer = 5; + pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/machinery/computer/dropship_weapons/tornado/small{ + pixel_y = 8; + pixel_x = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"HN" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Jt" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "9" }, +/turf/template_noop, /area/shuttle/tornado) -"IN" = ( +"JI" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"IZ" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "32" +"KY" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "24" }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1 +/area/shuttle/tornado) +"Lu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/turf/template_noop, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Jt" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "9" +"LA" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "62" }, -/turf/template_noop, /area/shuttle/tornado) -"KB" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"LI" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"LQ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "69" }, /area/shuttle/tornado) -"Mq" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "86b"; - opacity = 0 +"Nc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "67" }, /area/shuttle/tornado) "Nd" = ( @@ -513,15 +495,10 @@ }, /turf/template_noop, /area/shuttle/tornado) -"NY" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "69" - }, -/area/shuttle/tornado) "Om" = ( /turf/template_noop, /area/space) -"Pb" = ( +"OX" = ( /obj/structure/platform_decoration{ dir = 8 }, @@ -529,15 +506,15 @@ dir = 8; pixel_x = 24 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Pi" = ( -/obj/structure/shuttle/part/tornado/transparent/nosecone{ - icon_state = "102" +"Po" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/tornado) +"Pw" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "19" }, -/turf/template_noop, /area/shuttle/tornado) "Py" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -557,13 +534,8 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Qv" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ - pixel_y = 32 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +"Qi" = ( +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/tornado) "QR" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -582,32 +554,38 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Sa" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "86a"; - opacity = 0 +"Rm" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"RK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "103" }, /area/shuttle/tornado) -"SX" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Sd" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86b"; + opacity = 0 }, /area/shuttle/tornado) -"Tz" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "73" +"Sf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "83" }, /area/shuttle/tornado) -"TF" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"SM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 + }, +/obj/structure/platform{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"TM" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"Ti" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "31" }, /area/shuttle/tornado) "TN" = ( @@ -616,38 +594,9 @@ }, /turf/template_noop, /area/shuttle/tornado) -"UF" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "104" - }, -/area/shuttle/tornado) -"Vb" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"Vj" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/shuttle/tornado) -"Ws" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "97a"; - opacity = 0 - }, -/area/shuttle/tornado) -"Wt" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "18" - }, +"UT" = ( +/obj/effect/attach_point/crew_weapon/tornado, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) "Wv" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -661,25 +610,20 @@ }, /turf/template_noop, /area/shuttle/tornado) -"XL" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "83" - }, -/area/shuttle/tornado) -"Yg" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "30" +"Ys" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/area/shuttle/tornado) -"Ym" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "19" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/area/shuttle/tornado) -"Zi" = ( -/turf/closed/shuttle/dropship2/tornado{ - icon_state = "67" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ + id = "aft_door"; + name = "\improper Tornado cargo door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tornado) (1,1,1) = {" @@ -693,7 +637,7 @@ Om Om kI qF -DX +dR TN et Om @@ -727,14 +671,14 @@ Om Om Om kI -av -yZ -Zi -Zi -sM -Wt -Yg -FD +AL +vh +Nc +Nc +LA +gB +cg +KY Jt Nd Wv @@ -747,79 +691,79 @@ Om Om Om Nd -yQ -oB -xr -HN -FW -HN -xr -HN -uk -Wt -Yg -FD -EQ +BF +qq +FE +LI +tD +LI +FE +LI +tv +gB +cg +KY +RK bf "} (5,1,1) = {" -sx +Hy vz -Mq -Sa -lb -Qv -TM -TM -TM -TM -TM -pv -cX -hB -IN -TF -fj +Sd +mN +xo +yF +FY +FY +FY +FY +FY +Po +cW +lA +uE +Rm +Ys Om "} (6,1,1) = {" -hE -Ws -uL -fr -SX -Vj -mb -db -mt -db -mb -Vj -xW -TM -zQ -TM -xj +cP +vc +du +IU +BH +aO +jK +bE +Iy +bE +jK +aO +Lu +FY +UT +FY +ui Om "} (7,1,1) = {" -Pi +rA Rk -rp -ni -lb -jP -TM -TM -TM -TM -TM -Bx -HH -Pb -KB -TF -xj +uI +jH +xo +Qi +FY +FY +FY +FY +FY +iJ +SM +OX +cx +Rm +ui Om "} (8,1,1) = {" @@ -827,19 +771,19 @@ Om Om Om kI -yQ -bp -Vb -uG -uG -uG -Vb -uG -Fv -Ym -Gl -dW -UF +BF +vQ +JI +mp +mp +mp +JI +mp +kf +Pw +Ti +FI +zn eq "} (9,1,1) = {" @@ -847,14 +791,14 @@ Om Om Om Nd -XL -Tz -NY -NY -bm -Ym -Gl -dW +Sf +lE +LQ +LQ +vm +Pw +Ti +FI lM kI Qe @@ -873,7 +817,7 @@ Qf Qf QR dm -IZ +mU zp vU Nd diff --git a/maps/shuttles/dropship_tripoli.dmm b/maps/shuttles/dropship_tripoli.dmm index f068b75d85..a4811da57d 100644 --- a/maps/shuttles/dropship_tripoli.dmm +++ b/maps/shuttles/dropship_tripoli.dmm @@ -1,25 +1,17 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aP" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Tripoli telephone receiver"; - phone_id = "Tripoli" - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +"aB" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/tripoli) +"aH" = ( +/obj/effect/attach_point/crew_weapon/midway, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"bG" = ( +/obj/effect/attach_point/fuel/tripoli{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/closed/shuttle/tripoli{ + icon_state = "28" }, /area/shuttle/tripoli) "bN" = ( @@ -27,34 +19,48 @@ icon_state = "22" }, /area/shuttle/tripoli) -"ca" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" +"cb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "cD" = ( /turf/closed/shuttle/tripoli{ icon_state = "69" }, /area/shuttle/tripoli) -"cE" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/obj/structure/platform{ - dir = 8 +"dI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tripoli) "dN" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "97a" }, /area/shuttle/tripoli) +"dX" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "ed" = ( /turf/template_noop, /area/space) @@ -68,6 +74,17 @@ icon_state = "73" }, /area/shuttle/tripoli) +"eP" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "fk" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "61" @@ -103,36 +120,15 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"iU" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, -/area/shuttle/tripoli) -"jC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/tripoli) -"jR" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"iS" = ( +/obj/structure/shuttle/part/tripoli/gunpod_prop, +/turf/template_noop, /area/shuttle/tripoli) -"kS" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"jD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "lj" = ( /obj/structure/shuttle/part/tripoli{ @@ -177,29 +173,6 @@ icon_state = "75" }, /area/shuttle/tripoli) -"pj" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) -"pm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/tripoli) "pw" = ( /turf/closed/shuttle/tripoli{ icon_state = "34" @@ -211,6 +184,17 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"ql" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "qo" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "74" @@ -222,16 +206,11 @@ icon_state = "104" }, /area/shuttle/tripoli) -"qW" = ( -/obj/effect/attach_point/fuel/tripoli, -/turf/closed/shuttle/tripoli{ - icon_state = "28" - }, -/area/shuttle/tripoli) -"ri" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" +"qR" = ( +/obj/structure/machinery/light/double{ + dir = 8 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "sb" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ @@ -239,17 +218,6 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"sc" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "sD" = ( /turf/closed/shuttle/tripoli{ icon_state = "42" @@ -260,45 +228,6 @@ icon_state = "24" }, /area/shuttle/tripoli) -"vi" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) -"vl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ - name = "\improper Tripoli cargo door" - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/tripoli) -"vC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "vJ" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "84" @@ -306,12 +235,6 @@ /obj/effect/attach_point/electronics/tripoli, /turf/template_noop, /area/shuttle/tripoli) -"wi" = ( -/obj/effect/attach_point/crew_weapon/midway, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "wy" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "65" @@ -319,12 +242,6 @@ /obj/effect/attach_point/weapon/tripoli/right_wing, /turf/template_noop, /area/shuttle/tripoli) -"wL" = ( -/obj/structure/shuttle/part/tripoli/transparent/nosecone{ - icon_state = "100" - }, -/turf/template_noop, -/area/shuttle/tripoli) "wN" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "46" @@ -340,20 +257,31 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"ye" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/tripoli) "yB" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "4" }, /turf/template_noop, /area/shuttle/tripoli) -"yF" = ( -/obj/structure/shuttle/part/tripoli/gunpod_prop, -/turf/template_noop, +"yS" = ( +/obj/effect/attach_point/crew_weapon/tripoli, +/obj/docking_port/mobile/marine_dropship/tripoli, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"zl" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/tripoli) -"zt" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +"zu" = ( +/obj/structure/shuttle/part/tripoli/transparent/nosecone{ + icon_state = "102" }, +/turf/template_noop, +/area/shuttle/tripoli) +"zB" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/tripoli) "zC" = ( /turf/closed/shuttle/tripoli{ @@ -372,28 +300,37 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"zZ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "Ac" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "86b" }, /area/shuttle/tripoli) -"AC" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +"Bg" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Tripoli telephone receiver"; + phone_id = "Tripoli" }, -/obj/structure/platform{ - dir = 4 +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Bz" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tripoli{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "Cb" = ( /obj/structure/shuttle/part/tripoli{ @@ -407,11 +344,35 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"CR" = ( -/obj/effect/attach_point/fuel/tripoli, -/turf/closed/shuttle/tripoli{ - icon_state = "32" +"Cu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tripoli, +/obj/structure/extinguisher_cabinet/lifeboat, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"CD" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"CX" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Dy" = ( +/obj/structure/machinery/light/double{ + dir = 4 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "DG" = ( /turf/closed/shuttle/tripoli/transparent{ @@ -423,6 +384,9 @@ icon_state = "35" }, /area/shuttle/tripoli) +"Eq" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/tripoli) "Ev" = ( /turf/closed/shuttle/tripoli{ icon_state = "23" @@ -433,20 +397,6 @@ icon_state = "67" }, /area/shuttle/tripoli) -"EG" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tripoli, -/obj/structure/extinguisher_cabinet/lifeboat, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "EM" = ( /turf/closed/shuttle/tripoli{ icon_state = "103" @@ -458,12 +408,6 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"Fq" = ( -/obj/structure/shuttle/part/tripoli/transparent/nosecone{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/tripoli) "Go" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "2" @@ -475,48 +419,36 @@ icon_state = "80" }, /area/shuttle/tripoli) +"Jr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "JC" = ( /turf/closed/shuttle/tripoli{ icon_state = "31" }, /area/shuttle/tripoli) -"JO" = ( -/obj/structure/machinery/light/double{ +"JV" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/shuttle/tripoli) -"Kg" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) -"Kk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/machinery/computer/dropship_weapons/tripoli/small{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "KU" = ( /obj/structure/shuttle/part/tripoli{ @@ -524,26 +456,17 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"KZ" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tripoli) "Ly" = ( /turf/closed/shuttle/tripoli{ icon_state = "25" }, /area/shuttle/tripoli) -"MS" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tripoli{ - dir = 4 +"Mh" = ( +/obj/effect/attach_point/fuel/tripoli{ + dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/turf/closed/shuttle/tripoli{ + icon_state = "32" }, /area/shuttle/tripoli) "NV" = ( @@ -556,6 +479,13 @@ icon_state = "62" }, /area/shuttle/tripoli) +"Ot" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "OF" = ( /turf/closed/shuttle/tripoli{ icon_state = "39" @@ -577,32 +507,41 @@ /obj/effect/attach_point/weapon/tripoli/right_fore, /turf/template_noop, /area/shuttle/tripoli) -"QS" = ( -/obj/structure/platform_decoration{ - dir = 8 +"QE" = ( +/obj/structure/platform{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Rd" = ( +/obj/structure/shuttle/part/tripoli/transparent/nosecone{ + icon_state = "100" }, +/turf/template_noop, /area/shuttle/tripoli) "RD" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "89a" }, /area/shuttle/tripoli) -"RK" = ( -/obj/effect/attach_point/crew_weapon/tripoli, -/obj/docking_port/mobile/marine_dropship/tripoli, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Sl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + name = "\improper Tripoli cargo door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tripoli) "Sr" = ( /turf/closed/shuttle/tripoli{ @@ -626,10 +565,14 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"UI" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" +"VM" = ( +/obj/structure/machinery/light/double{ + dir = 8 }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "VP" = ( /turf/closed/shuttle/tripoli{ @@ -647,36 +590,41 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"Xr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 + }, +/obj/structure/machinery/computer/dropship_weapons/tripoli/small{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "XI" = ( /turf/closed/shuttle/tripoli{ icon_state = "27" }, /area/shuttle/tripoli) -"Ze" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"XT" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "Zf" = ( /turf/closed/shuttle/tripoli{ icon_state = "43" }, /area/shuttle/tripoli) -"ZT" = ( -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +"ZQ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "ZW" = ( /turf/closed/shuttle/tripoli{ @@ -696,7 +644,7 @@ fk ed sb pw -qW +bG bN zS ed @@ -726,10 +674,10 @@ ed ed lj ZW -vC -sc -pj -pj +cb +VM +jD +jD Sr sD eD @@ -739,56 +687,56 @@ oF Cf "} (4,1,1) = {" -wL +Rd ih Ac lv DG -zt -kS -ri -cE -QS -jR -MS -kS -vl +Eq +ZQ +zl +eP +Jr +qR +Bz +ZQ +Sl ed ed "} (5,1,1) = {" -yF +iS dN -aP -Kk -vi -UI -KZ -UI -RK -Ze -zZ -wi -zZ -jC +Bg +Xr +Ot +zB +dX +zB +yS +QE +CX +aH +CX +dI ed ed "} (6,1,1) = {" -Fq +zu WS hS RD Gt -ca -kS -iU -AC -pm -ZT -kS -kS -jC +ye +ZQ +aB +ql +JV +Dy +ZQ +ZQ +dI ed ed "} @@ -798,10 +746,10 @@ ed ed OM ZW -EG -JO -Kg -Kg +Cu +CD +XT +XT SW Zf JC @@ -822,7 +770,7 @@ VR Zf OI NV -CR +Mh mr KU ed diff --git a/maps/shuttles/dropship_typhoon.dmm b/maps/shuttles/dropship_typhoon.dmm index 9e184dd846..75d46db7b1 100644 --- a/maps/shuttles/dropship_typhoon.dmm +++ b/maps/shuttles/dropship_typhoon.dmm @@ -2,6 +2,23 @@ "aX" = ( /turf/template_noop, /area/space) +"bi" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/obj/structure/machinery/computer/dropship_weapons/typhoon/small{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "bs" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "26" @@ -14,11 +31,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"cH" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "dV" = ( /turf/closed/shuttle/typhoon{ icon_state = "75" @@ -36,6 +48,18 @@ }, /turf/template_noop, /area/shuttle/tornado) +"fZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"gn" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "gw" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "27" @@ -47,15 +71,6 @@ icon_state = "47" }, /area/shuttle/tornado) -"gJ" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - dir = 8; - pixel_x = 24 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "gN" = ( /turf/closed/shuttle/typhoon{ icon_state = "24" @@ -66,69 +81,25 @@ icon_state = "67" }, /area/shuttle/tornado) -"ix" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 25 - }, -/obj/structure/bed/chair/dropship/passenger/folded{ - dir = 4; - buckling_y = 3; - pixel_y = 3 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, -/area/shuttle/tornado) -"iz" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, -/area/shuttle/tornado) -"iH" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"ji" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"jt" = ( -/obj/structure/shuttle/part/typhoon/transparent/nosecone{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/tornado) -"kY" = ( +"hS" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"lm" = ( +"is" = ( /obj/structure/machinery/light/double{ - dir = 4; + dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"kC" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ + dir = 8; + pixel_x = 24 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "lA" = ( /turf/closed/shuttle/typhoon{ @@ -140,6 +111,9 @@ icon_state = "48" }, /area/shuttle/tornado) +"mE" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/tornado) "nM" = ( /turf/closed/shuttle/typhoon{ icon_state = "64" @@ -150,47 +124,47 @@ icon_state = "25" }, /area/shuttle/tornado) -"oo" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "oH" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "95a" }, /turf/template_noop, /area/shuttle/tornado) -"qa" = ( -/obj/structure/shuttle/part/typhoon/gunpod_prop, -/turf/template_noop, -/area/shuttle/tornado) -"rb" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "104" +"pQ" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Typhoon telephone receiver"; + phone_id = "Typhoon" + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"rN" = ( -/obj/structure/bed/portable_surgery{ - pixel_y = 5 +"qH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 25 }, -/obj/structure/machinery/iv_drip{ - pixel_y = 26; - layer = 2.9 +/obj/structure/bed/chair/dropship/passenger/folded{ + dir = 4; + buckling_y = 3; + pixel_y = 3 }, -/obj/structure/curtain/medical, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/tornado) +"rb" = ( +/turf/closed/shuttle/typhoon{ + icon_state = "104" }, /area/shuttle/tornado) "rO" = ( @@ -198,11 +172,18 @@ icon_state = "72" }, /area/shuttle/tornado) -"sC" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +"tf" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray/empty, +/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ + pixel_y = 9; + pixel_x = -3 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "uS" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -232,24 +213,28 @@ }, /turf/template_noop, /area/shuttle/tornado) -"wN" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" +"wO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/area/shuttle/tornado) -"wP" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" + dir = 4 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "xq" = ( /turf/closed/shuttle/typhoon{ icon_state = "69" }, /area/shuttle/tornado) +"xP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "yk" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "89a" @@ -263,6 +248,23 @@ }, /turf/template_noop, /area/shuttle/tornado) +"zj" = ( +/obj/structure/machinery/computer/overwatch/toc{ + pixel_y = 14 + }, +/obj/structure/surface/table/reinforced/toc/west{ + pixel_y = -7 + }, +/obj/structure/machinery/prop/almayer/CICmap/arc{ + pixel_y = 9; + pixel_x = -9 + }, +/obj/structure/machinery/computer/railgun/toc{ + pixel_y = 14; + pixel_x = 7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "zS" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "89b" @@ -274,17 +276,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Bf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "Bz" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "23" @@ -294,6 +285,10 @@ }, /turf/template_noop, /area/shuttle/tornado) +"BL" = ( +/obj/effect/attach_point/crew_weapon/typhoon, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) "BO" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "15" @@ -312,34 +307,32 @@ }, /turf/template_noop, /area/shuttle/tornado) +"CD" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "CE" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "86b" }, /area/shuttle/tornado) -"Dl" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "83" - }, -/area/shuttle/tornado) -"Dv" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" +"CI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/turf/template_noop, -/area/shuttle/tornado) -"Eh" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/platform{ + dir = 4 }, -/area/shuttle/tornado) -"Fm" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "86a" +/obj/structure/platform{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FC" = ( +"CW" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 @@ -347,42 +340,84 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Da" = ( +/obj/structure/bed/portable_surgery{ + pixel_y = 5 }, +/obj/structure/machinery/iv_drip{ + pixel_y = 26; + layer = 2.9 + }, +/obj/structure/curtain/medical, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FO" = ( -/obj/structure/shuttle/part/typhoon/transparent/nosecone{ - icon_state = "100" +"De" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ + pixel_y = 32 + }, +/obj/structure/surface/table/reinforced/toc/east{ + pixel_y = -7 + }, +/obj/structure/machinery/computer/railgun/gatling/toc{ + pixel_y = 13; + pixel_x = -7 + }, +/obj/structure/phone_base/toc{ + pixel_y = 13; + pixel_x = 11; + phone_id = "Typhoon Overwatch"; + phone_category = "Overwatch"; + name = "Typhoon overwatch telephone receiver" + }, +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/tornado) +"Dl" = ( +/turf/closed/shuttle/typhoon{ + icon_state = "83" + }, +/area/shuttle/tornado) +"Du" = ( +/obj/docking_port/mobile/marine_dropship/typhoon, +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Dv" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "32" }, /turf/template_noop, /area/shuttle/tornado) +"Fm" = ( +/turf/closed/shuttle/typhoon/transparent{ + icon_state = "86a" + }, +/area/shuttle/tornado) "Gv" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "70" }, /turf/template_noop, /area/shuttle/tornado) -"Ih" = ( -/obj/structure/platform{ - dir = 1 +"HJ" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "32" }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" +/obj/effect/attach_point/fuel/typhoon{ + layer = 3.1; + dir = 1 }, +/turf/template_noop, /area/shuttle/tornado) -"Iw" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"IR" = ( +/obj/structure/shuttle/part/typhoon/transparent/nosecone{ + icon_state = "100" }, +/turf/template_noop, /area/shuttle/tornado) "IT" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -392,70 +427,55 @@ }, /turf/template_noop, /area/shuttle/tornado) -"IU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "IX" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "26" }, /turf/template_noop, /area/shuttle/tornado) -"IZ" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, -/area/shuttle/tornado) "Jb" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "33" }, /turf/template_noop, /area/shuttle/tornado) +"Jm" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "JT" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "23" }, /turf/template_noop, /area/shuttle/tornado) -"Kp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Typhoon cargo door" +"KN" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/tornado) +"KW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" +/obj/structure/barricade/handrail{ + dir = 1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Kw" = ( +"KX" = ( /obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "28" - }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1 + icon_state = "22" }, /turf/template_noop, /area/shuttle/tornado) -"KX" = ( +"Lj" = ( /obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "22" + icon_state = "4" }, /turf/template_noop, /area/shuttle/tornado) -"KY" = ( +"LB" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 @@ -465,48 +485,52 @@ pixel_y = 19; pixel_x = 16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Lj" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "4" - }, +"Mj" = ( +/obj/effect/attach_point/crew_weapon/typhoon, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Mp" = ( +/obj/structure/shuttle/part/typhoon/gunpod_prop, /turf/template_noop, /area/shuttle/tornado) +"Ms" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "MB" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "97a" }, /area/shuttle/tornado) -"NB" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Nf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/area/shuttle/tornado) -"Oh" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "103" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tornado) -"Oq" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +"Oc" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "28" }, -/obj/structure/barricade/handrail{ +/obj/effect/attach_point/fuel/typhoon{ + layer = 3.1; dir = 1 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/turf/template_noop, +/area/shuttle/tornado) +"Oh" = ( +/turf/closed/shuttle/typhoon{ + icon_state = "103" }, /area/shuttle/tornado) "Or" = ( @@ -514,39 +538,11 @@ icon_state = "82" }, /area/shuttle/tornado) -"Ou" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/obj/structure/machinery/computer/dropship_weapons/typhoon/small{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"OQ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"OE" = ( +/obj/structure/shuttle/part/typhoon/transparent/nosecone{ + icon_state = "102" }, +/turf/template_noop, /area/shuttle/tornado) "OV" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -554,32 +550,12 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Pq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin14" - }, -/area/shuttle/tornado) "Qi" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "38" }, /turf/template_noop, /area/shuttle/tornado) -"Qs" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) "QF" = ( /turf/closed/shuttle/typhoon{ icon_state = "62" @@ -591,6 +567,22 @@ }, /turf/template_noop, /area/shuttle/tornado) +"Re" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Rg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "Rw" = ( /turf/closed/shuttle/typhoon{ icon_state = "31" @@ -614,6 +606,9 @@ }, /turf/template_noop, /area/shuttle/tornado) +"Sz" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) "Tc" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "29" @@ -644,27 +639,20 @@ /obj/structure/shuttle/part/typhoon/transparent, /turf/template_noop, /area/shuttle/tornado) -"Ut" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - pixel_y = 32 - }, -/obj/structure/surface/table/reinforced/toc/east{ - pixel_y = -7 - }, -/obj/structure/machinery/computer/railgun/gatling/toc{ - pixel_y = 13; - pixel_x = -7 +"UV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/phone_base/toc{ - pixel_y = 13; - pixel_x = 11; - phone_id = "Typhoon Overwatch"; - phone_category = "Overwatch"; - name = "Typhoon overwatch telephone receiver" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ + name = "\improper Typhoon cargo door"; + id = "aft_door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tornado) "VM" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -678,81 +666,34 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Wk" = ( -/obj/docking_port/mobile/marine_dropship/typhoon, -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, -/area/shuttle/tornado) -"Xv" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Typhoon telephone receiver"; - phone_id = "Typhoon" - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +"Wr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/area/shuttle/tornado) -"Xw" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" +/obj/structure/platform{ + dir = 8 }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1 +/obj/structure/platform{ + dir = 4 }, -/turf/template_noop, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"XO" = ( -/obj/structure/machinery/light/double{ +"XJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ dir = 4; - pixel_y = -5 + pixel_x = -24 }, -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ - pixel_y = 9; - pixel_x = -3 +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/barricade/handrail{ + dir = 1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Ym" = ( -/obj/structure/machinery/computer/overwatch/toc{ - pixel_y = 14 - }, -/obj/structure/surface/table/reinforced/toc/west{ - pixel_y = -7 - }, -/obj/structure/machinery/prop/almayer/CICmap/arc{ - pixel_y = 9; - pixel_x = -9 - }, -/obj/structure/machinery/computer/railgun/toc{ - pixel_y = 14; - pixel_x = 7 - }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +"Yk" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/tornado) "YW" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -765,11 +706,6 @@ icon_state = "30" }, /area/shuttle/tornado) -"ZD" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, -/area/shuttle/tornado) "ZR" = ( /turf/closed/shuttle/typhoon{ icon_state = "37" @@ -787,7 +723,7 @@ aX aX IT Qi -Kw +Oc KX wI aX @@ -842,13 +778,13 @@ aX aX yE et -Ym -KY -Oq -IU -Iw -IU -Eh +zj +LB +XJ +hS +wO +hS +Mj gx wd Zk @@ -857,63 +793,63 @@ Oh uS "} (5,1,1) = {" -FO +IR oH CE Fm Or -Ut -ZD -ZD -ZD -ZD -IZ -OQ -Bf -cH -NB -cH -Kp +De +Sz +Sz +Sz +Sz +mE +Wr +Rg +gn +is +gn +UV aX "} (6,1,1) = {" -qa +Mp MB -Xv -Ou -Qs -iz -cH -cH -Wk -iH -iz -cH -Ih -ZD -sC -ZD -Pq +pQ +bi +xP +KN +gn +gn +Du +CD +KN +gn +Re +Sz +BL +Sz +Nf aX "} (7,1,1) = {" -jt +OE fJ zS yk et -ix -ZD -ZD -ZD -ZD -wN -oo -ji -gJ -lm -cH -Pq +qH +Sz +Sz +Sz +Sz +Yk +CI +fZ +kC +Ms +gn +Nf aX "} (8,1,1) = {" @@ -922,13 +858,13 @@ aX aX IT et -rN -XO -kY -wP -FC -wP -Eh +Da +tf +KW +Jm +CW +Jm +Mj lM ZR Rw @@ -967,7 +903,7 @@ Gv Gv TF Qi -Xw +HJ IX wI yE diff --git a/maps/shuttles/dropship_upp.dmm b/maps/shuttles/dropship_upp.dmm index 536deb63c5..134ad0bcd4 100644 --- a/maps/shuttles/dropship_upp.dmm +++ b/maps/shuttles/dropship_upp.dmm @@ -3,9 +3,7 @@ /obj/structure/machinery/door/airlock/dropship_hatch/upp{ id = "port_door" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "di" = ( /turf/closed/shuttle/ert{ @@ -22,10 +20,7 @@ /obj/structure/machinery/camera/autoname/golden_arrow/midway{ network = list("Chapaev","Akademia Nauk") }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "ex" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -34,10 +29,7 @@ pixel_x = -23; network = list("Chapaev","Akademia Nauk") }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "fz" = ( /obj/effect/decal/warning_stripes{ @@ -45,10 +37,7 @@ pixel_x = 12; pixel_y = 29 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "fC" = ( /obj/structure/machinery/computer/cameras/dropship/midway{ @@ -62,29 +51,21 @@ phone_category = "Dropship"; phone_id = "Akademia Nauk" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "fX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "he" = ( /obj/structure/machinery/light{ dir = 1; pixel_y = 11 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "hg" = ( /turf/closed/shuttle/ert{ @@ -97,10 +78,7 @@ dir = 4; pixel_x = 14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "jh" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -108,10 +86,7 @@ dir = 8; pixel_x = -14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "ld" = ( /obj/effect/attach_point/weapon/midway/left_wing{ @@ -132,15 +107,10 @@ icon_state = "S"; pixel_y = -1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "nA" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "nS" = ( /obj/effect/decal/warning_stripes{ @@ -156,20 +126,14 @@ icon_state = "E"; pixel_x = -12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "of" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "pv" = ( /turf/closed/shuttle/ert{ @@ -187,10 +151,7 @@ dir = 4; pixel_x = 14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "rZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -202,19 +163,13 @@ pixel_x = -6; pixel_y = -16 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "sC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/upp{ id = "aft_door" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "sP" = ( /obj/structure/bed/chair/vehicle{ @@ -225,10 +180,7 @@ icon_state = "E"; pixel_x = -12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "tx" = ( /obj/structure/machinery/computer/shuttle/dropship/flight, @@ -239,16 +191,11 @@ name = "broken dashcam"; desc = "Welp, no more funny crash vids..." }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "us" = ( /obj/structure/machinery/door/airlock/hatch/cockpit/upp, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "wO" = ( /turf/closed/shuttle/ert{ @@ -260,9 +207,7 @@ dir = 8; id = "starboard_door" }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "xc" = ( /turf/closed/shuttle/ert{ @@ -279,10 +224,7 @@ attach_id = 7; ship_tag = "dropship_upp" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "yy" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -291,20 +233,14 @@ pixel_x = 23; network = list("Chapaev","Akademia Nauk") }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "zL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; pixel_x = 12 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "AK" = ( /turf/closed/shuttle/ert{ @@ -322,19 +258,13 @@ dir = 8; pixel_x = -14 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Dn" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "DG" = ( /turf/closed/shuttle/ert{ @@ -351,10 +281,7 @@ icon_state = "E"; pixel_x = -15 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Fz" = ( /turf/closed/shuttle/ert{ @@ -364,10 +291,7 @@ /area/shuttle/ds_upp) "GR" = ( /obj/structure/stairs, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "GY" = ( /obj/docking_port/mobile/marine_dropship/upp, @@ -394,10 +318,7 @@ /area/shuttle/ds_upp) "HV" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Jo" = ( /obj/effect/attach_point/weapon/midway/left_fore, @@ -414,10 +335,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "My" = ( /obj/structure/bed/chair/vehicle{ @@ -428,10 +346,7 @@ pixel_x = 8; pixel_y = 7 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "MF" = ( /turf/closed/shuttle/ert{ @@ -448,10 +363,7 @@ attach_id = 9; ship_tag = "dropship_upp" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "PQ" = ( /obj/effect/attach_point/weapon/midway/right_wing{ @@ -466,20 +378,14 @@ dir = 1 }, /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Sf" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 30 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Sg" = ( /obj/effect/decal/warning_stripes{ @@ -487,10 +393,7 @@ pixel_x = -13; pixel_y = 29 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Sx" = ( /turf/closed/shuttle/ert{ @@ -511,10 +414,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "TG" = ( /turf/closed/shuttle/ert{ @@ -529,15 +429,10 @@ req_one_access = list(235,240) }, /obj/structure/blocker/invisible_wall, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Uw" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, +/turf/open/floor/strata/floor2, /area/shuttle/ds_upp) "Xe" = ( /obj/effect/attach_point/weapon/midway/left_fore, @@ -556,10 +451,7 @@ attach_id = 8; ship_tag = "dropship_upp" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/shuttle/ds_upp) "Zm" = ( /turf/closed/shuttle/ert{ diff --git a/maps/shuttles/ert_pmc_shuttle.dmm b/maps/shuttles/ert_pmc_shuttle.dmm index 6f0ee78404..55c6abf741 100644 --- a/maps/shuttles/ert_pmc_shuttle.dmm +++ b/maps/shuttles/ert_pmc_shuttle.dmm @@ -16,9 +16,7 @@ }, /area/shuttle/ert) "d" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "e" = ( /turf/closed/shuttle/ert{ @@ -31,9 +29,7 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "g" = ( /obj/structure/surface/rack, @@ -42,14 +38,10 @@ pixel_x = 2; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "h" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "i" = ( /turf/template_noop, @@ -60,9 +52,7 @@ }, /area/shuttle/ert) "k" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -70,9 +60,7 @@ }, /area/shuttle/ert) "m" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "n" = ( /turf/closed/shuttle/ert{ @@ -95,9 +83,7 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "r" = ( /turf/closed/shuttle/ert{ @@ -105,24 +91,18 @@ }, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "t" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "u" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "v" = ( /turf/closed/shuttle/ert{ @@ -171,29 +151,21 @@ }, /area/shuttle/ert) "G" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "H" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "K" = ( /turf/closed/shuttle/ert{ @@ -205,9 +177,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_pmc, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "M" = ( /turf/closed/shuttle/ert{ @@ -230,9 +200,7 @@ /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress_pmc/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "R" = ( /turf/closed/shuttle/ert{ @@ -261,9 +229,7 @@ }, /area/shuttle/ert) "Y" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "Z" = ( /turf/closed/shuttle/ert{ diff --git a/maps/shuttles/ert_response_shuttle.dmm b/maps/shuttles/ert_response_shuttle.dmm index 5f4d2b23d8..cd032707de 100644 --- a/maps/shuttles/ert_response_shuttle.dmm +++ b/maps/shuttles/ert_response_shuttle.dmm @@ -6,9 +6,7 @@ }, /area/shuttle/ert) "b" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "c" = ( /obj/docking_port/mobile/emergency_response/ert1, @@ -21,14 +19,10 @@ /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "f" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "h" = ( /turf/closed/shuttle/ert{ @@ -43,9 +37,7 @@ "k" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -59,14 +51,10 @@ /area/shuttle/ert) "o" = ( /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "r" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "s" = ( /turf/closed/shuttle/ert{ @@ -84,9 +72,7 @@ }, /area/shuttle/ert) "v" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "x" = ( /turf/closed/shuttle/ert{ @@ -95,9 +81,7 @@ /area/shuttle/ert) "y" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "z" = ( /turf/closed/shuttle/ert{ @@ -130,22 +114,16 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "K" = ( /turf/closed/shuttle/ert{ @@ -155,9 +133,7 @@ "L" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "M" = ( /obj/structure/surface/rack, @@ -165,14 +141,10 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/full/with_defib_and_analyzer, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "N" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "O" = ( /obj/structure/surface/rack, @@ -181,9 +153,7 @@ pixel_x = 2; pixel_y = -5 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "P" = ( /turf/closed/shuttle/ert{ @@ -195,9 +165,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( /turf/closed/shuttle/ert{ @@ -221,9 +189,7 @@ /turf/template_noop, /area/template_noop) "Z" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/ert_shuttle_big.dmm b/maps/shuttles/ert_shuttle_big.dmm index dcb88ddd2d..50ffde0f74 100644 --- a/maps/shuttles/ert_shuttle_big.dmm +++ b/maps/shuttles/ert_shuttle_big.dmm @@ -1,14 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aN" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/storage/box/gloves{ - pixel_x = -5; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "bo" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -20,16 +10,23 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"cx" = ( +"bM" = ( /obj/structure/surface/table/almayer, -/obj/item/weapon/gun/pistol/vp70{ - pixel_y = 4 - }, -/obj/item/ammo_magazine/pistol/vp70, -/obj/item/ammo_magazine/pistol/vp70, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/computer/card, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"bP" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/carpet10_8/west, +/area/shuttle/ert) +"dk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"do" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "dx" = ( /obj/structure/surface/table/almayer, @@ -37,21 +34,45 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/almayer, /area/shuttle/ert) -"fq" = ( +"dA" = ( /obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 5 +/obj/structure/machinery/computer/cameras{ + network = list("Military","Almayer"); + dir = 4 }, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, -/obj/item/tool/pen, -/obj/item/tool/pen, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"dF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"dK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 8 }, +/turf/open/floor/carpet9_4/west, +/area/shuttle/ert) +"dT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/shuttle/ert/big, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"eW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"fh" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "fr" = ( /obj/effect/decal/warning_stripes{ @@ -67,25 +88,36 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"fP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/backpack/lightpack, +/obj/item/storage/box/bodybags{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "gN" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/wood, /area/shuttle/ert) -"hr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/handcuffs, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" +"hb" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = -5 }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "hv" = ( /obj/structure/bed/chair/office/light{ @@ -93,19 +125,12 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"hQ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/item/ammo_magazine/shotgun/beanbag{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/weapon/gun/shotgun/combat, -/obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "plate" +"hS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "hZ" = ( /obj/effect/decal/warning_stripes{ @@ -114,33 +139,17 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"ig" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/storage/backpack/marine/satchel/tech, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/cell/infinite, -/obj/item/cell/infinite, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"iu" = ( +"iJ" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"iN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "Operating Theatre"; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/folder, +/obj/item/tool/crowbar, +/obj/item/tool/crowbar, +/obj/item/tool/hand_labeler, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "iP" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -149,41 +158,17 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"ja" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"jP" = ( -/obj/structure/closet/secure_closet/securecom{ - desc = "You could probably get thrown out an airlock just by looking at this..."; - name = "captain's secure box" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"jV" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "jZ" = ( /obj/structure/bed, /obj/item/bedsheet/rd, /turf/open/floor/wood, /area/shuttle/ert) -"ke" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"la" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "lp" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -195,15 +180,11 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"ls" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"lM" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, +/turf/open/floor/carpet6_2/west, /area/shuttle/ert) "mH" = ( /obj/effect/decal/warning_stripes{ @@ -220,56 +201,35 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"nG" = ( -/obj/structure/machinery/iv_drip, -/obj/item/reagent_container/blood/OMinus, -/obj/item/reagent_container/blood/OMinus, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"oc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/folder, -/obj/item/tool/crowbar, -/obj/item/tool/crowbar, -/obj/item/tool/hand_labeler, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"px" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"pI" = ( +"mO" = ( /obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/storage/backpack/marine/engineerpack, /obj/item/storage/toolbox/mechanical, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"qk" = ( +"ph" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet9-4" +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 }, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/obj/item/tool/pen, +/obj/item/tool/pen, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"pq" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "qy" = ( /obj/effect/decal/warning_stripes{ @@ -284,18 +244,13 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"qD" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "rv" = ( /turf/open/floor/plating/almayer, /area/shuttle/ert) -"ry" = ( -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "rG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -303,12 +258,54 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"rN" = ( +"rS" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/belt/medical/lifesaver/full, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"sd" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/wood{ + amount = 50 + }, +/obj/item/stack/sheet/wood{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/sheet/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"sv" = ( +/obj/structure/machinery/iv_drip, +/obj/item/reagent_container/blood/OMinus, +/obj/item/reagent_container/blood/OMinus, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "sI" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -316,19 +313,6 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"sW" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"tf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/card, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "ts" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -354,17 +338,16 @@ "tG" = ( /turf/open/floor/wood, /area/shuttle/ert) +"tW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "ue" = ( /obj/structure/bed, /obj/item/bedsheet/brown, /turf/open/floor/almayer, /area/shuttle/ert) -"up" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "uO" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 1; @@ -372,55 +355,64 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"uQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/medkit, +/obj/item/storage/pouch/medkit, +/obj/item/storage/pouch/medical, +/obj/item/storage/pouch/medical, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/reagent_container/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/open/floor/almayer/plate, +/area/shuttle/ert) +"uU" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "Operating Theatre"; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "vj" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin, /obj/item/tool/pen, /turf/open/floor/wood, /area/shuttle/ert) -"vk" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/shuttle/ert) -"vl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "vA" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/plating/almayer, /area/shuttle/ert) +"vN" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) "wc" = ( /turf/open/floor/almayer, /area/shuttle/ert) -"wK" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "plate" +"xj" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/freezerfloor, /area/shuttle/ert) "xK" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/shuttle/ert) -"yG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"xO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"yf" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "yQ" = ( /obj/effect/decal/warning_stripes{ @@ -433,24 +425,44 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"zd" = ( +"yT" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/communications, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/folder/black{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/map/current_map{ + pixel_y = -5 }, +/turf/open/floor/carpet5_1/west, /area/shuttle/ert) -"zT" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/storage/backpack/marine/engineerpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" +"yU" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/pistol/vp70{ + pixel_y = 4 }, +/obj/item/ammo_magazine/pistol/vp70{ + pixel_x = 5 + }, +/obj/item/ammo_magazine/pistol/vp70{ + pixel_x = 5 + }, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"yX" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/open/floor/freezerfloor, +/area/shuttle/ert) +"zc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "zZ" = ( /obj/structure/window/framed/almayer/white/hull, @@ -461,12 +473,6 @@ /obj/structure/machinery/microwave, /turf/open/floor/almayer, /area/shuttle/ert) -"AE" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "AT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -482,14 +488,6 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"AZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor{ - dir = 8; - icon_state = "carpet10-8" - }, -/area/shuttle/ert) "Bq" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -507,9 +505,46 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"Cw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; +"Cd" = ( +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/obj/item/tool/soap, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Cw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + dir = 1 + }, +/turf/open/floor/plating/almayer, +/area/shuttle/ert) +"CQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"CZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Dq" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Ec" = ( +/turf/open/floor/almayer/tcomms, +/area/shuttle/ert) +"ER" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ dir = 1 }, /obj/effect/decal/warning_stripes{ @@ -518,7 +553,20 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"CX" = ( +"FR" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Gs" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Id" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/emergency{ pixel_x = 3; @@ -531,47 +579,19 @@ /obj/item/storage/box/m94, /obj/item/storage/box/m94, /obj/item/storage/box/zipcuffs, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"DC" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"DO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"ER" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - dir = 1 - }, -/turf/open/floor/plating/almayer, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"Gg" = ( +"IQ" = ( /obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; name = "Operating Theatre"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"Ik" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Jr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "JE" = ( /obj/effect/decal/warning_stripes{ @@ -590,13 +610,18 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"Ke" = ( +"JN" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"JS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4 }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Kg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -626,52 +651,27 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"KS" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"Lk" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"LB" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "Ml" = ( /turf/closed/wall/almayer/white, /area/shuttle/ert) -"Mx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"MN" = ( +/obj/structure/closet/secure_closet/securecom{ + desc = "You could probably get thrown out an airlock just by looking at this..."; + name = "captain's secure box" }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"MH" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Nc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"Nt" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/smg/m39, -/obj/item/ammo_magazine/smg/m39, -/obj/item/weapon/gun/smg/m39/elite, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Ne" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/item/tool/pen, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "NB" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -686,22 +686,10 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"Oj" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin, -/obj/item/tool/pen, -/obj/item/tool/pen, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"OF" = ( +"Od" = ( /obj/structure/surface/table/almayer, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Pf" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -716,10 +704,17 @@ /obj/docking_port/mobile/emergency_response/big, /turf/closed/wall/almayer/white/hull, /area/shuttle/ert) -"Qr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"Qp" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/beanbag{ + pixel_x = -3; + pixel_y = -5 }, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Qx" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -727,57 +722,8 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"QK" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/belt/medical/lifesaver/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"QM" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/wood{ - amount = 50 - }, -/obj/item/stack/sheet/wood{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"QQ" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"QH" = ( +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Ro" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -805,30 +751,19 @@ /obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor/wood, /area/shuttle/ert) -"So" = ( -/obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "plate" +"RV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"Sx" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"SQ" = ( +"SA" = ( /obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/item/storage/backpack/lightpack, -/obj/item/storage/backpack/lightpack, -/obj/item/storage/backpack/lightpack, -/obj/item/storage/box/bodybags{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "SZ" = ( /obj/effect/decal/warning_stripes{ @@ -841,47 +776,9 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"Tj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/shuttle/ert/big, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "Tp" = ( /turf/template_noop, /area/template_noop) -"Tq" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"Tv" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet6-2" - }, -/area/shuttle/ert) -"TF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/medkit, -/obj/item/storage/pouch/medkit, -/obj/item/storage/pouch/medical, -/obj/item/storage/pouch/medical, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/reagent_container/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/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) "TJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -905,64 +802,44 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"Uq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/shuttle/ert) -"Vw" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - icon_state = "plate" +"TQ" = ( +/obj/structure/machinery/power/apc/almayer/south{ + cell_type = /obj/item/cell/hyper }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) -"VW" = ( +"Uu" = ( /obj/structure/surface/table/almayer, -/obj/item/folder/black{ - pixel_x = 3; - pixel_y = 5 +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/obj/item/map/current_map{ +/turf/open/floor/almayer/plate, +/area/shuttle/ert) +"VK" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/storage/box/gloves{ + pixel_x = -5; pixel_y = -5 }, -/turf/open/floor{ - dir = 8; - icon_state = "carpet5-1" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"WR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras{ - network = list("Military","Almayer"); - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"VV" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"WW" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"Wz" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/storage/backpack/marine/satchel/tech, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/cell/infinite, +/obj/item/cell/infinite, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"XW" = ( -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 30 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"WY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "Yo" = ( /obj/effect/decal/warning_stripes{ @@ -976,27 +853,22 @@ }, /turf/open/floor/plating/almayer, /area/shuttle/ert) -"YN" = ( -/obj/structure/machinery/power/apc/almayer{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +"YK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"Zl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"Zw" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, /area/shuttle/ert) -"Zy" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +"ZX" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39/elite, +/turf/open/floor/almayer/plate, /area/shuttle/ert) (1,1,1) = {" @@ -1047,10 +919,10 @@ PE PE PE PE -up +qD hZ TO -So +Dq PE PE zZ @@ -1073,19 +945,19 @@ Tp Tp Tp PE -rN -aN -yG -QQ +CQ +VK +hS +jV Ml -AE +WY hZ TO -KS +FR Ml -DO -DC -DC +tW +dk +dk PE PE Tp @@ -1104,15 +976,15 @@ zZ zZ PE PE -MH +pq wc wc -Qr -iN -Qr +QH +IQ +QH hZ TO -ja +Jr Ml ue wc @@ -1132,13 +1004,13 @@ Tp zZ vj tG -Tv -VW +lM +yT Ml -TF -nG -Qr -Uq +uQ +sv +QH +dF Ml xK hZ @@ -1163,18 +1035,18 @@ PE PE jZ tG -AZ -qk +bP +dK Ml Ml Ml -Gg +uU Ml Ml -Tq +do hZ TO -Zl +JN Ml Ml Pf @@ -1188,40 +1060,40 @@ Tp (7,1,1) = {" PE PE -la -hr -WR +JS +fh +dA Ml RN tG gN Kt Ml -QK -px +rS +zc RG -px -px -KS +zc +zc +FR hZ TO -pI -px -px +YK +zc +zc RG -KS +FR Ml -vl -ig +Gs +Wz PE PE "} (8,1,1) = {" zZ -tf -vk +bM +Ec fJ -vk +Ec Ml Ml Qx @@ -1244,14 +1116,14 @@ Cw Ml rv rv -Zy +yf zZ "} (9,1,1) = {" zZ -Tj +dT hv -vk +Ec rv iP rv @@ -1260,30 +1132,30 @@ rv rv iP yQ -Zl +JN lp -Zl -Zl -Zl +JN +JN +JN hZ TO -Zl -Zl -Zl +JN +JN +JN hZ TO NB rv rv -YN +TQ Qb "} (10,1,1) = {" zZ -zd -vk +Od +Ec vA -vk +Ec Ml Ml NL @@ -1306,37 +1178,37 @@ bo Ml rv rv -QM +sd zZ "} (11,1,1) = {" PE PE -Oj -wK -Mx +Ne +Zw +Uu Ml -Nt +ZX rv -hQ -OF +Qp +vN Ml -QK -Ke +rS +Sx mH -Ke -Ke -KS +Sx +Sx +FR hZ TO -KS -Ke -Ke +FR +Sx +Sx mH -ls +hb Ml -Lk -zT +RV +mO PE PE "} @@ -1347,20 +1219,20 @@ PE zZ PE PE -jP +MN rv rv -cx +yU Ml Ml Ml Kg Ml Ml -Tq +do hZ TO -Zl +JN Ml Ml sI @@ -1378,25 +1250,25 @@ Tp Tp Tp zZ -Nt +ZX rv -hQ -OF +Qp +vN Ml -ry +Cd Ml rv -Ik +VV Ml xK hZ ER xK Ml -CX +Id rv rv -ke +eW PE Tp Tp @@ -1414,20 +1286,20 @@ zZ zZ PE PE -XW +yX rG rv -Ik +VV Ml -KS +FR hZ TO -LB +xO Ml -Vw +CZ rv rv -ke +eW zZ Tp Tp @@ -1445,19 +1317,19 @@ Tp Tp Tp PE -WW +xj Ml rv -Ik +VV Ml -iu +SA hZ TO -sW +Nc Ml -SQ -oc -fq +fP +iJ +ph PE PE Tp @@ -1481,10 +1353,10 @@ PE zZ PE PE -So +Dq hZ TO -KS +FR PE PE zZ diff --git a/maps/shuttles/ert_small_shuttle_north.dmm b/maps/shuttles/ert_small_shuttle_north.dmm index 0fa2e534db..fa093e3165 100644 --- a/maps/shuttles/ert_small_shuttle_north.dmm +++ b/maps/shuttles/ert_small_shuttle_north.dmm @@ -37,9 +37,7 @@ network = list("Military","Almayer"); dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "o" = ( /turf/closed/wall/r_wall/biodome/biodome_unmeltable, @@ -80,9 +78,7 @@ icon_state = "N"; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "v" = ( /obj/structure/closet/hydrant{ @@ -123,9 +119,7 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med/lifeboat{ pixel_x = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "C" = ( /obj/docking_port/mobile/emergency_response/small, @@ -135,16 +129,12 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/ert) "E" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/ert/small, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "F" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ @@ -168,9 +158,7 @@ pixel_x = -1; dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "I" = ( /obj/structure/machinery/door/airlock/almayer/generic/autoname{ @@ -189,9 +177,7 @@ "K" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "O" = ( /turf/open/floor/plating/almayer, @@ -201,9 +187,7 @@ /obj/structure/machinery/computer/station_alert{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/shuttle/ert) "W" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ diff --git a/maps/shuttles/ert_twe_shuttle.dmm b/maps/shuttles/ert_twe_shuttle.dmm index 7e518ae9af..120aa8e553 100644 --- a/maps/shuttles/ert_twe_shuttle.dmm +++ b/maps/shuttles/ert_twe_shuttle.dmm @@ -1,8 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "b" = ( /turf/closed/shuttle/ert{ @@ -11,27 +9,19 @@ /area/shuttle/ert) "e" = ( /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "f" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "g" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "h" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "i" = ( /turf/closed/shuttle/ert{ @@ -61,9 +51,7 @@ }, /area/shuttle/ert) "p" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "q" = ( /obj/docking_port/mobile/emergency_response/ert4, @@ -75,23 +63,17 @@ "r" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "t" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "v" = ( /turf/closed/shuttle/ert{ @@ -121,9 +103,7 @@ /area/shuttle/ert) "D" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "E" = ( /turf/closed/shuttle/ert{ @@ -145,9 +125,7 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "J" = ( /turf/closed/shuttle/ert{ @@ -155,22 +133,16 @@ }, /area/shuttle/ert) "K" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "L" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "M" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "N" = ( /turf/closed/shuttle/ert{ @@ -183,9 +155,7 @@ "P" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( /turf/closed/shuttle/ert{ @@ -209,9 +179,7 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_twe, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "X" = ( /turf/closed/shuttle/ert{ @@ -222,9 +190,7 @@ /obj/structure/surface/rack, /obj/item/storage/backpack/rmc/frame, /obj/item/ammo_box/magazine/misc/mre, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/ert_upp_shuttle.dmm b/maps/shuttles/ert_upp_shuttle.dmm index 57d93e21ff..30abbd1925 100644 --- a/maps/shuttles/ert_upp_shuttle.dmm +++ b/maps/shuttles/ert_upp_shuttle.dmm @@ -5,9 +5,7 @@ }, /area/shuttle/ert) "c" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/ert) "e" = ( /obj/docking_port/mobile/emergency_response/ert3, @@ -26,14 +24,10 @@ dir = 8 }, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "i" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/ert) "j" = ( /turf/closed/shuttle/ert{ @@ -41,9 +35,7 @@ }, /area/shuttle/ert) "k" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/ert) "l" = ( /turf/closed/shuttle/ert{ @@ -62,9 +54,7 @@ /obj/effect/landmark/ert_spawns/distress_upp/item, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "p" = ( /turf/closed/shuttle/ert{ @@ -83,9 +73,7 @@ }, /area/shuttle/ert) "s" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/ert) "u" = ( /turf/closed/shuttle/ert{ @@ -127,17 +115,13 @@ dir = 4 }, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "C" = ( /obj/structure/surface/rack, /obj/effect/landmark/ert_spawns/distress_upp/item, /obj/item/storage/toolbox/syndicate, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "E" = ( /turf/closed/shuttle/ert{ @@ -152,9 +136,7 @@ /area/shuttle/ert) "G" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "I" = ( /turf/closed/shuttle/ert{ @@ -168,22 +150,16 @@ pixel_y = -5 }, /obj/effect/landmark/ert_spawns/distress_upp/item, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "K" = ( /turf/template_noop, /area/template_noop) "N" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/ert) "O" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "P" = ( /turf/closed/shuttle/ert{ @@ -198,21 +174,15 @@ /area/shuttle/ert) "R" = ( /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/ert) "S" = ( /obj/structure/bed/chair/dropship/passenger, /obj/effect/landmark/ert_spawns/distress_upp, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "T" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "V" = ( /turf/closed/shuttle/ert{ @@ -223,17 +193,13 @@ "X" = ( /obj/structure/blocker/invisible_wall, /obj/structure/machinery/computer/shuttle/ert, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "Y" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) "Z" = ( /obj/structure/surface/rack, @@ -241,9 +207,7 @@ /obj/item/storage/firstaid/regular, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/device/healthanalyzer, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/ert) (1,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_e.dmm b/maps/shuttles/escape_shuttle_e.dmm index 0ba589df21..75810c8434 100644 --- a/maps/shuttles/escape_shuttle_e.dmm +++ b/maps/shuttles/escape_shuttle_e.dmm @@ -9,19 +9,14 @@ icon_state = "wall2" }, /area/shuttle/escape_pod) -"e" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/e, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, +"f" = ( +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "i" = ( /obj/structure/machinery/door/airlock/evacuation{ name = "\improper Evacuation Airlock SU-1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "k" = ( /turf/closed/shuttle/escapepod{ @@ -29,9 +24,7 @@ }, /area/shuttle/escape_pod) "o" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/shuttle/escape_pod) "q" = ( /turf/closed/shuttle/escapepod{ @@ -53,10 +46,6 @@ icon_state = "wall13" }, /area/shuttle/escape_pod) -"z" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) "E" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" @@ -67,25 +56,28 @@ icon_state = "wall11" }, /area/shuttle/escape_pod) -"L" = ( +"M" = ( /obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = -18 - }, -/turf/open/shuttle/escapepod, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) -"N" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor10" +"O" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/e, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" }, /area/shuttle/escape_pod) "Q" = ( /obj/structure/machinery/computer/shuttle/escape_pod_panel{ pixel_y = 30 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" +/turf/open/shuttle/escapepod/floor0, +/area/shuttle/escape_pod) +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = -18 }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "W" = ( /turf/closed/shuttle/escapepod{ @@ -98,20 +90,20 @@ w t I E -e +O "} (2,1,1) = {" k -z -L -z +M +T +M s "} (3,1,1) = {" d Q o -N +f s "} (4,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_e_cl.dmm b/maps/shuttles/escape_shuttle_e_cl.dmm index 490f0abdfa..86d557c88a 100644 --- a/maps/shuttles/escape_shuttle_e_cl.dmm +++ b/maps/shuttles/escape_shuttle_e_cl.dmm @@ -6,9 +6,7 @@ }, /area/shuttle/escape_pod) "b" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor1" - }, +/turf/open/shuttle/escapepod/floor1, /area/shuttle/escape_pod) "c" = ( /turf/closed/shuttle/escapepod{ @@ -25,38 +23,24 @@ icon_state = "wall13" }, /area/shuttle/escape_pod) -"i" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = -18 - }, -/turf/open/shuttle/escapepod, +"n" = ( +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "s" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall2" }, /area/shuttle/escape_pod) -"u" = ( +"z" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) -"v" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{ - pixel_y = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor0" - }, -/area/shuttle/escape_pod) -"y" = ( +"D" = ( /obj/structure/machinery/door/airlock/evacuation/liaison{ name = "\improper Evacuation Airlock CL-1"; id_tag = "cl_evac" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "E" = ( /turf/closed/shuttle/escapepod{ @@ -68,11 +52,6 @@ icon_state = "wall6" }, /area/shuttle/escape_pod) -"K" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor10" - }, -/area/shuttle/escape_pod) "O" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall4" @@ -88,11 +67,24 @@ icon_state = "wall12" }, /area/shuttle/escape_pod) +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = -18 + }, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) "X" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" }, /area/shuttle/escape_pod) +"Z" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{ + pixel_y = 30 + }, +/turf/open/shuttle/escapepod/floor0, +/area/shuttle/escape_pod) (1,1,1) = {" h @@ -103,22 +95,22 @@ a "} (2,1,1) = {" Q -u -i -u +z +T +z E "} (3,1,1) = {" s -v +Z b -K +n E "} (4,1,1) = {" g O O -y +D I "} diff --git a/maps/shuttles/escape_shuttle_n.dmm b/maps/shuttles/escape_shuttle_n.dmm index 71f8515dab..eb3b259a54 100644 --- a/maps/shuttles/escape_shuttle_n.dmm +++ b/maps/shuttles/escape_shuttle_n.dmm @@ -1,23 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/shuttle/escapepod{ - icon_state = "wall6" - }, -/area/shuttle/escape_pod) -"c" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/n, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) -"f" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_y = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor7" - }, -/area/shuttle/escape_pod) "g" = ( /turf/closed/shuttle/escapepod, /area/shuttle/escape_pod) @@ -26,33 +7,57 @@ icon_state = "wall1" }, /area/shuttle/escape_pod) -"j" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor9" - }, -/area/shuttle/escape_pod) "k" = ( /obj/structure/machinery/door/airlock/evacuation{ dir = 2; name = "\improper Evacuation Airlock PU-3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) "l" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall2" }, /area/shuttle/escape_pod) +"n" = ( +/turf/open/shuttle/escapepod/floor0, +/area/shuttle/escape_pod) +"p" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_y = 30 + }, +/turf/open/shuttle/escapepod/floor2, +/area/shuttle/escape_pod) +"v" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/n, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/shuttle/escape_pod) +"x" = ( +/obj/structure/machinery/cryopod/evacuation, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) +"z" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -28 + }, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) +"D" = ( +/turf/open/shuttle/escapepod/east, +/area/shuttle/escape_pod) "F" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall3" }, /area/shuttle/escape_pod) -"H" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, +"K" = ( +/turf/closed/shuttle/escapepod{ + icon_state = "wall6" + }, /area/shuttle/escape_pod) "L" = ( /turf/closed/shuttle/escapepod{ @@ -64,19 +69,6 @@ icon_state = "wall11" }, /area/shuttle/escape_pod) -"V" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -35 - }, -/turf/open/shuttle/escapepod, -/area/shuttle/escape_pod) -"W" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, -/area/shuttle/escape_pod) "Y" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall4" @@ -87,29 +79,29 @@ g Q Q -c +v "} (2,1,1) = {" i -f -H +p +x L "} (3,1,1) = {" k -W -V +D +z L "} (4,1,1) = {" l -j -H +n +x L "} (5,1,1) = {" F Y Y -a +K "} diff --git a/maps/shuttles/escape_shuttle_s.dmm b/maps/shuttles/escape_shuttle_s.dmm index 82391a5218..689a6e78c5 100644 --- a/maps/shuttles/escape_shuttle_s.dmm +++ b/maps/shuttles/escape_shuttle_s.dmm @@ -4,20 +4,24 @@ icon_state = "wall1" }, /area/shuttle/escape_pod) -"f" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, -/area/shuttle/escape_pod) -"g" = ( +"c" = ( /obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) "n" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall2" }, /area/shuttle/escape_pod) +"o" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/s, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/shuttle/escape_pod) +"q" = ( +/turf/open/shuttle/escapepod/floor0/north, +/area/shuttle/escape_pod) "v" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall15" @@ -33,11 +37,22 @@ icon_state = "wall6" }, /area/shuttle/escape_pod) +"B" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) "D" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" }, /area/shuttle/escape_pod) +"I" = ( +/turf/open/shuttle/escapepod/west, +/area/shuttle/escape_pod) "J" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall14" @@ -48,70 +63,47 @@ icon_state = "wall4" }, /area/shuttle/escape_pod) -"P" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor11" +"N" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_x = 30 }, +/turf/open/shuttle/escapepod/floor0/west, /area/shuttle/escape_pod) "Q" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall13" }, /area/shuttle/escape_pod) -"R" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_x = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor2" - }, -/area/shuttle/escape_pod) "T" = ( /obj/structure/machinery/door/airlock/evacuation{ dir = 2; name = "\improper Evacuation Airlock PU-6" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/shuttle/escape_pod) -"U" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/s, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) -"V" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/shuttle/escapepod, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) (1,1,1) = {" Q D D -U +o "} (2,1,1) = {" n -g -f +c +q v "} (3,1,1) = {" a -V -P +B +I T "} (4,1,1) = {" n -g -R +c +N J "} (5,1,1) = {" diff --git a/maps/shuttles/escape_shuttle_w.dmm b/maps/shuttles/escape_shuttle_w.dmm index 8f81c83b50..92d3572511 100644 --- a/maps/shuttles/escape_shuttle_w.dmm +++ b/maps/shuttles/escape_shuttle_w.dmm @@ -1,10 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/docking_port/mobile/crashable/escape_shuttle/w, -/turf/closed/shuttle/escapepod{ - icon_state = "wall9" - }, -/area/shuttle/escape_pod) "b" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall8" @@ -15,6 +9,12 @@ icon_state = "wall6" }, /area/shuttle/escape_pod) +"g" = ( +/obj/docking_port/mobile/crashable/escape_shuttle/w, +/turf/closed/shuttle/escapepod{ + icon_state = "wall9" + }, +/area/shuttle/escape_pod) "j" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall7" @@ -30,6 +30,13 @@ icon_state = "wall2" }, /area/shuttle/escape_pod) +"r" = ( +/obj/structure/machinery/cryopod/evacuation, +/turf/open/shuttle/escapepod/floor4, +/area/shuttle/escape_pod) +"A" = ( +/turf/open/shuttle/escapepod/floor0/north, +/area/shuttle/escape_pod) "B" = ( /turf/closed/shuttle/escapepod{ icon_state = "wall10" @@ -45,21 +52,14 @@ icon_state = "wall4" }, /area/shuttle/escape_pod) -"H" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor5" - }, -/area/shuttle/escape_pod) -"I" = ( -/obj/structure/machinery/cryopod/evacuation, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 +"N" = ( +/obj/structure/machinery/computer/shuttle/escape_pod_panel{ + pixel_y = 30 }, -/turf/open/shuttle/escapepod, +/turf/open/shuttle/escapepod/floor2, /area/shuttle/escape_pod) -"M" = ( -/obj/structure/machinery/cryopod/evacuation, -/turf/open/shuttle/escapepod, +"O" = ( +/turf/open/shuttle/escapepod/north, /area/shuttle/escape_pod) "P" = ( /turf/closed/shuttle/escapepod{ @@ -70,22 +70,14 @@ /obj/structure/machinery/door/airlock/evacuation{ name = "\improper Evacuation Airlock PL-3" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/shuttle/escape_pod) -"V" = ( -/obj/structure/machinery/computer/shuttle/escape_pod_panel{ - pixel_y = 30 - }, -/turf/open/shuttle/escapepod{ - icon_state = "floor4" - }, -/area/shuttle/escape_pod) -"W" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor12" +"T" = ( +/obj/structure/machinery/cryopod/evacuation, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, +/turf/open/shuttle/escapepod/floor4, /area/shuttle/escape_pod) (1,1,1) = {" @@ -93,20 +85,20 @@ P B S B -a +g "} (2,1,1) = {" F -V -H -W +N +O +A b "} (3,1,1) = {" p -M -I -M +r +T +r j "} (4,1,1) = {" diff --git a/maps/shuttles/garrow_cargo_elevator.dmm b/maps/shuttles/garrow_cargo_elevator.dmm index e4a8c4734c..9d4717c609 100644 --- a/maps/shuttles/garrow_cargo_elevator.dmm +++ b/maps/shuttles/garrow_cargo_elevator.dmm @@ -26,14 +26,10 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cargo_shuttle/elevator) "q" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cargo_shuttle/elevator) "s" = ( /obj/structure/machinery/light/small/blue{ @@ -45,9 +41,7 @@ pixel_y = 32; shuttleId = "garrow_cargo_elevator" }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cargo_shuttle/elevator) "t" = ( /obj/effect/decal/cleanable/dirt, @@ -70,9 +64,7 @@ unacidable = 1; id = "north" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/cargo_shuttle/elevator) "H" = ( /turf/open/shuttle/elevator/grating, @@ -86,9 +78,7 @@ light_color = "#dae2ff"; light_power = 0.25 }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, +/turf/open/floor/almayer/mono, /area/golden_arrow/cargo_shuttle/elevator) "T" = ( /turf/closed/shuttle/elevator/gears, diff --git a/maps/shuttles/garrow_vehicle_elevator_one.dmm b/maps/shuttles/garrow_vehicle_elevator_one.dmm index 981582de0c..7fb84b510a 100644 --- a/maps/shuttles/garrow_vehicle_elevator_one.dmm +++ b/maps/shuttles/garrow_vehicle_elevator_one.dmm @@ -9,14 +9,10 @@ /area/golden_arrow/vehicle_shuttle) "u" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/vehicle_shuttle) "A" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/vehicle_shuttle) "K" = ( /obj/effect/decal/cleanable/dirt, diff --git a/maps/shuttles/garrow_vehicle_elevator_two.dmm b/maps/shuttles/garrow_vehicle_elevator_two.dmm index 31c0842964..a16578916c 100644 --- a/maps/shuttles/garrow_vehicle_elevator_two.dmm +++ b/maps/shuttles/garrow_vehicle_elevator_two.dmm @@ -9,14 +9,10 @@ /area/golden_arrow/vehicle_shuttle/two) "u" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/vehicle_shuttle/two) "A" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/golden_arrow/vehicle_shuttle/two) "T" = ( /obj/effect/decal/cleanable/blood/oil, diff --git a/maps/shuttles/lifeboat-compact.dmm b/maps/shuttles/lifeboat-compact.dmm index c5f69f2269..c3acbb766c 100644 --- a/maps/shuttles/lifeboat-compact.dmm +++ b/maps/shuttles/lifeboat-compact.dmm @@ -25,9 +25,7 @@ }, /area/shuttle/lifeboat) "fc" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/lifeboat) "fh" = ( /turf/closed/shuttle/lifeboat{ @@ -67,18 +65,14 @@ }, /area/shuttle/lifeboat) "hF" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "hK" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat{ id = "Boat3-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "iA" = ( /obj/structure/bed/chair/dropship/passenger/shuttle_chair{ @@ -127,9 +121,7 @@ id = "Boat3-D2"; throw_dir = 2 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "pS" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -139,9 +131,7 @@ /turf/open/shuttle/lifeboat, /area/shuttle/lifeboat) "pV" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "qO" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -285,9 +275,7 @@ /turf/closed/shuttle/lifeboat/transparent, /area/shuttle/lifeboat) "Js" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "Kb" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -397,10 +385,7 @@ /turf/template_noop, /area/shuttle/lifeboat) "Yb" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "Yf" = ( /obj/structure/prop/invuln/dropship_parts/lifeboat{ diff --git a/maps/shuttles/lifeboat-port-archive.dmm b/maps/shuttles/lifeboat-port-archive.dmm index 7279e78237..12e5e35d3c 100644 --- a/maps/shuttles/lifeboat-port-archive.dmm +++ b/maps/shuttles/lifeboat-port-archive.dmm @@ -21,10 +21,7 @@ }, /area/shuttle/lifeboat) "dt" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "en" = ( /turf/closed/shuttle/lifeboat{ @@ -107,9 +104,7 @@ }, /area/shuttle/lifeboat) "nn" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "on" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -239,9 +234,7 @@ id = "Boat1-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "CI" = ( /turf/template_noop, @@ -300,9 +293,7 @@ /turf/closed/shuttle/lifeboat, /area/shuttle/lifeboat) "Jg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/lifeboat) "Jw" = ( /turf/closed/shuttle/lifeboat{ @@ -325,14 +316,10 @@ id = "Boat1-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Nm" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Ob" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-port.dmm b/maps/shuttles/lifeboat-port.dmm index 0117730f69..7f6ef22b60 100644 --- a/maps/shuttles/lifeboat-port.dmm +++ b/maps/shuttles/lifeboat-port.dmm @@ -21,10 +21,7 @@ }, /area/shuttle/lifeboat) "dt" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "en" = ( /turf/closed/shuttle/lifeboat{ @@ -107,9 +104,7 @@ }, /area/shuttle/lifeboat) "nn" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "on" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -117,9 +112,7 @@ }, /area/shuttle/lifeboat) "pH" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "qA" = ( /turf/closed/shuttle/lifeboat{ @@ -251,9 +244,7 @@ id = "Boat1-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "CI" = ( /turf/template_noop, @@ -319,9 +310,7 @@ /turf/closed/shuttle/lifeboat, /area/shuttle/lifeboat) "Jg" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor1/east, /area/shuttle/lifeboat) "Jw" = ( /turf/closed/shuttle/lifeboat{ @@ -344,14 +333,10 @@ id = "Boat1-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Nm" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Ob" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-starboard-archive.dmm b/maps/shuttles/lifeboat-starboard-archive.dmm index 5094315b7b..8d7d7a9f84 100644 --- a/maps/shuttles/lifeboat-starboard-archive.dmm +++ b/maps/shuttles/lifeboat-starboard-archive.dmm @@ -195,9 +195,7 @@ }, /area/shuttle/lifeboat) "AF" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "Bf" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -416,9 +414,7 @@ }, /area/shuttle/lifeboat) "VZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/lifeboat) "Xj" = ( /turf/closed/shuttle/lifeboat{ @@ -426,9 +422,7 @@ }, /area/shuttle/lifeboat) "XV" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "Zl" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/lifeboat-starboard.dmm b/maps/shuttles/lifeboat-starboard.dmm index 57e3029231..d14fc87714 100644 --- a/maps/shuttles/lifeboat-starboard.dmm +++ b/maps/shuttles/lifeboat-starboard.dmm @@ -164,9 +164,7 @@ id = "Boat2-D2"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "vG" = ( /obj/docking_port/mobile/crashable/lifeboat/starboard, @@ -188,9 +186,7 @@ id = "Boat2-D1"; throw_dir = 1 }, -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "zv" = ( /turf/closed/shuttle/lifeboat{ @@ -213,9 +209,7 @@ }, /area/shuttle/lifeboat) "AF" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped, /area/shuttle/lifeboat) "Bf" = ( /turf/closed/shuttle/lifeboat/transparent{ @@ -376,9 +370,7 @@ }, /area/shuttle/lifeboat) "Qj" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "test_floor4" - }, +/turf/open/shuttle/lifeboat/test_floor4, /area/shuttle/lifeboat) "Rk" = ( /turf/closed/shuttle/lifeboat{ @@ -397,10 +389,7 @@ }, /area/shuttle/lifeboat) "SA" = ( -/turf/open/shuttle/lifeboat{ - dir = 1; - icon_state = "plating_striped" - }, +/turf/open/shuttle/lifeboat/plating_striped/north, /area/shuttle/lifeboat) "Td" = ( /turf/closed/shuttle/lifeboat{ @@ -445,9 +434,7 @@ }, /area/shuttle/lifeboat) "VZ" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor1/east, /area/shuttle/lifeboat) "Xj" = ( /turf/closed/shuttle/lifeboat{ @@ -455,9 +442,7 @@ }, /area/shuttle/lifeboat) "XV" = ( -/turf/open/shuttle/lifeboat{ - icon_state = "plate" - }, +/turf/open/shuttle/lifeboat/plate, /area/shuttle/lifeboat) "Zl" = ( /turf/closed/shuttle/lifeboat{ diff --git a/maps/shuttles/trijentshuttle2.dmm b/maps/shuttles/trijentshuttle2.dmm index c99ce5d164..7947f6824e 100644 --- a/maps/shuttles/trijentshuttle2.dmm +++ b/maps/shuttles/trijentshuttle2.dmm @@ -3,14 +3,10 @@ /turf/open/shuttle/escapepod, /area/shuttle/trijent_shuttle/elevator) "b" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor8" - }, +/turf/open/shuttle/escapepod/floor8, /area/shuttle/trijent_shuttle/elevator) "c" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor9" - }, +/turf/open/shuttle/escapepod/floor9, /area/shuttle/trijent_shuttle/elevator) "d" = ( /turf/closed/shuttle/elevator{ @@ -28,9 +24,7 @@ dir = 4; id = "east" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/trijent_shuttle/elevator) "k" = ( /obj/structure/machinery/computer/shuttle/elevator_controller, @@ -44,11 +38,7 @@ /turf/open/shuttle/escapepod, /area/shuttle/trijent_shuttle/elevator) "n" = ( -/obj/structure/machinery/power/apc{ - dir = 1; - pixel_y = 26; - start_charge = 0 - }, +/obj/structure/machinery/power/apc/no_power/north, /obj/item/tool/wirecutters{ pixel_y = -7 }, @@ -105,9 +95,7 @@ pixel_x = 9; pixel_y = 8 }, -/turf/open/shuttle/escapepod{ - icon_state = "floor11" - }, +/turf/open/shuttle/escapepod/floor11, /area/shuttle/trijent_shuttle/elevator) "A" = ( /turf/closed/shuttle/elevator{ @@ -137,9 +125,7 @@ dir = 4; id = "west" }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/trijent_shuttle/elevator) "O" = ( /obj/item/limb/hand/r_hand, @@ -154,9 +140,7 @@ /turf/open/shuttle/escapepod, /area/shuttle/trijent_shuttle/elevator) "Q" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor11" - }, +/turf/open/shuttle/escapepod/floor11, /area/shuttle/trijent_shuttle/elevator) "R" = ( /obj/structure/bed/chair/dropship/passenger, @@ -185,14 +169,10 @@ }, /area/shuttle/trijent_shuttle/elevator) "W" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor12" - }, +/turf/open/shuttle/escapepod/floor12, /area/shuttle/trijent_shuttle/elevator) "Y" = ( -/turf/open/shuttle/escapepod{ - icon_state = "floor7" - }, +/turf/open/shuttle/escapepod/floor7, /area/shuttle/trijent_shuttle/elevator) (1,1,1) = {" diff --git a/maps/shuttles/vehicle_elevator.dmm b/maps/shuttles/vehicle_elevator.dmm index 51517693d6..c8cf184451 100644 --- a/maps/shuttles/vehicle_elevator.dmm +++ b/maps/shuttles/vehicle_elevator.dmm @@ -24,9 +24,7 @@ /turf/open/floor/plating/plating_catwalk, /area/shuttle/vehicle_elevator) "e" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/shuttle/vehicle_elevator) "f" = ( /obj/effect/decal/warning_stripes{ diff --git a/maps/sorokyne_strata.json b/maps/sorokyne_strata.json index 61c3a7fd3f..5a0f6d67c4 100644 --- a/maps/sorokyne_strata.json +++ b/maps/sorokyne_strata.json @@ -11,6 +11,7 @@ "/datum/equipment_preset/survivor/scientist/soro", "/datum/equipment_preset/survivor/doctor/soro", "/datum/equipment_preset/survivor/engineer/soro", + "/datum/equipment_preset/survivor/corporate/soro", "/datum/equipment_preset/survivor/security/soro", "/datum/equipment_preset/survivor/interstellar_human_rights_observer/soro" ], diff --git a/maps/templates/Chinook.dmm b/maps/templates/Chinook.dmm index 17be7bd9b9..de04fd7d5e 100644 --- a/maps/templates/Chinook.dmm +++ b/maps/templates/Chinook.dmm @@ -6,59 +6,55 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) -"af" = ( -/turf/open/floor/almayer_hull{ - icon_state = "outerhull_dir" +"ad" = ( +/obj/structure/sign/safety/east{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/sign/safety/medical{ + pixel_y = 25 }, +/obj/structure/sign/safety/security{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/chinook) +"af" = ( +/turf/open/floor/almayer_hull/outerhull_dir, /area/space) "ag" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "ah" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/training, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "ai" = ( -/turf/open/floor/almayer_hull{ - dir = 10; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southwest, /area/space) "aj" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "al" = ( /turf/open/floor/almayer_hull, /area/space) "am" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "ao" = ( /turf/open/floor/kutjevo, /area/adminlevel/chinook) "ap" = ( /obj/structure/closet/secure_closet/securecom{ - name = "general's secure box" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + name = "secure box" }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "aq" = ( /obj/structure/surface/table/almayer, @@ -69,79 +65,93 @@ /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 11; + pixel_y = 10 }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) -"au" = ( -/turf/open/floor/almayer_hull{ - dir = 4; - icon_state = "outerhull_dir" +"ar" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"au" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, /area/space) "av" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"aw" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/adminlevel/chinook/medical) "ax" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"ay" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "aA" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"aB" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = -17 + }, +/turf/open/floor/almayer/blue/west, +/area/adminlevel/chinook) "aC" = ( -/obj/structure/closet/secure_closet/military_police, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/closet/secure_closet/military_officer_spare{ + name = "provost uniform locker" }, +/obj/item/clothing/under/marine/mp/provost, +/obj/item/clothing/under/marine/mp/provost, +/obj/item/clothing/under/marine/mp/provost, +/obj/item/clothing/under/marine/mp/provost, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "aD" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/filingcabinet, -/turf/open/floor/almayer, +/obj/structure/displaycase, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "aE" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "aF" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "aG" = ( /obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = -4 - }, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = -4 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "aH" = ( /obj/structure/surface/table/almayer, @@ -162,10 +172,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "aJ" = ( /obj/structure/surface/table/reinforced/black, @@ -173,36 +180,25 @@ pixel_x = 5; pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "aK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "aM" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) "aP" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook/cargo) +/obj/structure/flora/pottedplant/random, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "aQ" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/medical) "aR" = ( /obj/structure/machinery/door_control{ @@ -212,9 +208,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "aT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -234,22 +228,33 @@ pixel_x = 4; pixel_y = 5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"aW" = ( +"aV" = ( +/obj/structure/surface/table/reinforced/black, /obj/structure/machinery/light{ - dir = 1 + dir = 8 }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/prop/tableflag/uscm{ + pixel_x = 9; + pixel_y = 3 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"aW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/biolab{ + pixel_x = 3; + pixel_y = -25 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "aX" = ( /obj/structure/machinery/door/airlock/almayer/security{ name = "\improper Security Armory" @@ -259,11 +264,18 @@ id = "chinookarmory2"; name = "Armory Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) +"aY" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "aZ" = ( /obj/structure/machinery/door/airlock/almayer/secure{ dir = 1; @@ -282,42 +294,36 @@ pixel_x = 3; pixel_y = 8 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "bb" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "bc" = ( /obj/structure/machinery/computer/card, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"bd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) "be" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "bf" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "bg" = ( /obj/structure/surface/table/reinforced/black, @@ -326,18 +332,24 @@ pixel_x = -11; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 10 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bh" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"bi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/east, +/area/adminlevel/chinook) "bj" = ( /obj/structure/surface/table/almayer, /obj/item/roller, @@ -345,115 +357,125 @@ /obj/item/roller, /obj/item/device/healthanalyzer, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "bk" = ( /obj/structure/sign/safety/synth_storage{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "bl" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/structure/noticeboard{ + pixel_y = 27 + }, +/obj/item/clothing/accessory/medal/gold/service{ + pixel_y = 21; + pixel_x = -6 + }, +/obj/item/clothing/accessory/medal/gold/service{ + pixel_y = 21; + pixel_x = -2 + }, +/obj/item/clothing/accessory/medal/gold/service{ + pixel_y = 21; + pixel_x = 2 + }, +/obj/item/clothing/accessory/medal/gold/service{ + pixel_y = 21; + pixel_x = 6 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/prop/tableflag{ + pixel_x = -9; + pixel_y = -2 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "bm" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/tool/pen/fountain{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = 8; + pixel_x = 6 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "bn" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 9; + pixel_x = -3 }, -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red{ + pixel_y = -5 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "bp" = ( /obj/structure/machinery/light, /obj/structure/closet, /turf/open/floor/almayer, /area/adminlevel/chinook/cryo) +"bq" = ( +/obj/structure/filingcabinet, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) "bu" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_y = 4 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bv" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/vest/pilot{ - pixel_x = -5 - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "bx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/weldingtool{ - pixel_x = -9; +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; pixel_y = 4 }, -/obj/item/stack/cable_coil{ - pixel_x = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/tool/weldingtool{ - pixel_x = -2; - pixel_y = 6 +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/wood, /area/adminlevel/chinook) "bz" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "bA" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "bB" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/toy/deck/uno{ - pixel_x = 3; - pixel_y = 8 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "bC" = ( /turf/closed/wall/almayer/outer, @@ -462,19 +484,36 @@ /obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"bE" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "bF" = ( /obj/item/paper_bin/uscm, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bG" = ( /obj/structure/surface/table/reinforced/black, @@ -483,16 +522,16 @@ pixel_x = 7; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bH" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/box/bodybags, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/turf/open/floor/almayer, +/obj/item/paper, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_y = -7 + }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "bI" = ( /obj/structure/surface/table/reinforced/black, @@ -501,10 +540,11 @@ pixel_y = 5 }, /obj/item/reagent_container/food/drinks/h_chocolate, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/item/prop/tableflag{ + pixel_x = -9; + pixel_y = 12 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "bJ" = ( /obj/structure/machinery/light{ @@ -515,32 +555,39 @@ "bK" = ( /obj/structure/machinery/chem_master, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "bL" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) +"bN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -6 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 9 + }, +/turf/open/floor/wood, /area/adminlevel/chinook) "bO" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) -"bP" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 6 - }, -/area/adminlevel/chinook/shuttle) "bQ" = ( /obj/item/book/manual/marine_law{ pixel_x = 1; @@ -551,59 +598,43 @@ /area/adminlevel/chinook/sec) "bR" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/storage/mateba_case/general{ - pixel_y = 4 - }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "bS" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "bV" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "bY" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/blue/north, +/area/adminlevel/chinook) +"bZ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/adminlevel/chinook/medical) +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) "ca" = ( /obj/structure/filingcabinet, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "ce" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/chinook/cargo) "cf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "cg" = ( /obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ci" = ( /obj/structure/machinery/constructable_frame{ @@ -613,11 +644,8 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "cj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/obj/structure/machinery/optable, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "ck" = ( /obj/structure/surface/table/reinforced/black, @@ -625,17 +653,10 @@ pixel_y = 3 }, /obj/item/folder/white, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "cl" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) "cm" = ( /obj/structure/platform{ @@ -644,28 +665,39 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "cp" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 }, -/area/adminlevel/chinook/offices) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/item/toy/beach_ball/holoball, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "cr" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/book/manual/robotics_cyborgs{ - pixel_x = -8; - pixel_y = 7 - }, /obj/item/storage/fancy/cigar, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "cs" = ( /obj/structure/machinery/light{ @@ -677,7 +709,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "cu" = ( /obj/structure/machinery/disposal, @@ -693,18 +725,18 @@ "cw" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"cx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/emerald/northeast, +/area/adminlevel/chinook/shuttle) "cy" = ( /obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/obj/item/tool/weldingtool/largetank, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "cz" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -714,12 +746,27 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) +"cA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/cell/super{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/cell/super{ + pixel_x = 3 + }, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "cB" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigarettes/arcturian_ace{ pixel_y = 6 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "cC" = ( /obj/structure/machinery/door/window/eastleft{ @@ -727,43 +774,27 @@ }, /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/surface/table/reinforced/almayer_blend, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "cE" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/ammo_magazine/revolver/mateba/highimpact{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/clothing/head/cmcap/co/formal/black{ - pixel_x = 4; - pixel_y = 5 +/obj/structure/noticeboard{ + pixel_y = 27 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/item/book/manual/marine_law{ + pixel_y = 10 }, -/area/adminlevel/chinook/offices) -"cG" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/tool/pen{ + pixel_y = 8 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "cL" = ( /obj/structure/bed/chair/comfy{ dir = 1; name = "defense chair" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "cM" = ( /obj/structure/machinery/power/terminal{ @@ -775,13 +806,15 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "cN" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/area/adminlevel/chinook/offices) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "cQ" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -792,59 +825,26 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook/offices) "cS" = ( -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/sec) "cT" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer, +/area/adminlevel/chinook) "cU" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/cans/souto/classic{ - pixel_x = -18; - pixel_y = 3 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/chinook/offices) -"cV" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer, +/area/adminlevel/chinook) "cW" = ( /obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "cX" = ( /obj/structure/surface/table/almayer, @@ -853,25 +853,28 @@ }, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"cY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Janitorial Closet"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) "cZ" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/offices) "db" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "dc" = ( /obj/structure/surface/table/reinforced/black, @@ -883,10 +886,7 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dd" = ( /obj/structure/sink{ @@ -907,59 +907,44 @@ /area/space) "dg" = ( /obj/structure/largecrate/supply/medicine/medkits, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "dh" = ( /obj/structure/surface/table/reinforced/black, /obj/item/paper, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/item/reagent_container/food/drinks/drinkingglass/cola{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = 7; + pixel_y = 5 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "di" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/lighter/zippo, /obj/item/paper/crumpled, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dj" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "dk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" +/obj/structure/machinery/cm_vending/sorted/medical{ + layer = 3.5 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer/silverfull, +/area/adminlevel/chinook) "dl" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/book/manual/marine_law{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/folder/black, -/turf/open/floor/almayer, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "dn" = ( /obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "dp" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -970,7 +955,7 @@ /obj/item/paper/crumpled{ pixel_y = 2 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "dq" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -994,19 +979,14 @@ pixel_y = 3 }, /obj/item/tool/pen, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "dt" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "du" = ( -/obj/structure/barricade/handrail/kutjevo{ - dir = 1 - }, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "dw" = ( @@ -1014,135 +994,131 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/offices) "dx" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/chinook/medical) "dy" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"dz" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) "dA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/multitool, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) +"dB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering"; + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "chinookengilock"; + name = "Engineering Sector Lockdown"; + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cryo) "dC" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "dD" = ( /obj/structure/machinery/light, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "dE" = ( /obj/structure/machinery/light, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "dF" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/offices) "dH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/obj/structure/sign/poster{ + pixel_y = -32 }, -/area/adminlevel/chinook/medical) +/turf/open/floor/almayer/red, +/area/adminlevel/chinook/sec) "dJ" = ( /obj/structure/bed/stool, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) -"dM" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/adminlevel/chinook/sec) +"dK" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook) +"dL" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "dN" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/offices) "dO" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/machinery/light{ + dir = 8 }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) +"dQ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + layer = 5; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) "dR" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "dS" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "dT" = ( /obj/structure/machinery/cm_vending/sorted/cargo_ammo, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "dU" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper 2BG Command Meeting Room" + name = "\improper Meeting Room" }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "dW" = ( /obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "dY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "dZ" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 1; - name = "\improper Colonel, Fifth Division" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/offices) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "ea" = ( /obj/structure/machinery/light{ dir = 8 @@ -1150,10 +1126,44 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "eb" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/chinook/offices) +"ee" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 }, -/area/space) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4; + id = "chinook"; + side = "left" + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "eh" = ( /obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer, @@ -1166,6 +1176,9 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"ek" = ( +/turf/open/floor/almayer/bluecorner, +/area/adminlevel/chinook) "em" = ( /obj/structure/surface/table/almayer, /obj/item/pizzabox/meat{ @@ -1174,13 +1187,13 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "en" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/obj/structure/surface/table/almayer, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/chinook/offices) +"eo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "ep" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -1189,9 +1202,21 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/offices) +"eq" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"er" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 25 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "es" = ( /obj/structure/machinery/light{ @@ -1199,47 +1224,39 @@ }, /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "et" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) +"eu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/adminlevel/chinook/offices) "ew" = ( /obj/structure/closet/secure_closet{ name = "secure evidence locker"; req_access_txt = "3" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "ex" = ( /obj/structure/sign/safety/conference_room{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ey" = ( -/obj/structure/bed/sofa/south/grey, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ez" = ( -/obj/structure/bed/sofa/south/grey, /obj/structure/sign/safety/coffee{ pixel_x = 12; pixel_y = 25 @@ -1247,69 +1264,54 @@ /obj/structure/sign/safety/south{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eA" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/machinery/light{ dir = 8 }, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "eB" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eC" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "eD" = ( /obj/structure/machinery/cm_vending/sorted/attachments, -/turf/closed/wall/almayer, +/turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/cargo) "eE" = ( /obj/item/stack/sheet/wood/medium_stack{ pixel_y = 5 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "eF" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "eG" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "eH" = ( /obj/structure/machinery/light{ @@ -1318,20 +1320,14 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "eJ" = ( -/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "eK" = ( /obj/structure/sign/safety/medical{ @@ -1341,127 +1337,131 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) -"eL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ +"eM" = ( +/obj/structure/sink{ dir = 1; - icon_state = "blue" + pixel_y = -10 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer, +/area/adminlevel/chinook/event) "eN" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) +"eO" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "eP" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "eQ" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook/shuttle) "eR" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner/west, /area/adminlevel/chinook/offices) "eS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "eT" = ( /obj/structure/machinery/vending/security, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "eU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "eV" = ( -/obj/structure/bed/chair, +/obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) +"eW" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) +"fb" = ( +/obj/structure/machinery/door_control{ + id = "chinookengilock"; + name = "Engineering Lockdown"; + pixel_x = 22; + pixel_y = -3; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/orange/northeast, +/area/adminlevel/chinook/engineering) "fd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"fe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/bottle/cognac{ + pixel_y = 13; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = -3; + pixel_x = -3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 6 + }, +/turf/open/floor/almayer/ai_floors, +/area/adminlevel/chinook/offices) "fg" = ( /obj/structure/sign/safety/storage{ pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) +"fh" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/adminlevel/chinook/shuttle) "fi" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "fk" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/offices) "fm" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "fn" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "fp" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/chinook/offices) "fq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1478,27 +1478,25 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/offices) "fs" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/plating/plating_catwalk, -/area/adminlevel/chinook/sec) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/chinook/medical) "fu" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook) "fv" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "fw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "fx" = ( /obj/structure/machinery/light{ @@ -1521,55 +1519,38 @@ /area/adminlevel/chinook/offices) "fz" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/tool/lighter/zippo{ - pixel_x = 8; - pixel_y = 7 +/obj/item/clothing/suit/storage/bomber{ + name = "custom bomber jacket" }, -/obj/item/storage/fancy/cigar, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = 7; + pixel_y = 11 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fA" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 - }, -/obj/structure/surface/table/reinforced/black, -/obj/item/paper/photograph, -/obj/item/storage/box/evidence{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, -/area/adminlevel/chinook/offices) +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook) "fB" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 23 }, -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2; + pixel_y = -4 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/wood, +/area/adminlevel/chinook) "fC" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen/fountain{ + pixel_y = -3 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fD" = ( /turf/closed/shuttle/ert{ @@ -1577,98 +1558,68 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "fE" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/paper/crumpled{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/paper/crumpled{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/tool/lighter, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fF" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/sec) "fG" = ( /obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "fH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "fI" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/commander{ - name = "colonel's locker" - }, -/obj/item/clothing/head/beret/marine/commander/council, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/barricade/metal{ + dir = 4 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) "fJ" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "fK" = ( -/obj/structure/closet/secure_closet/securecom{ - name = "colonel's secure box" - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/card{ + dir = 4 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"fL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/north, +/area/adminlevel/chinook) "fM" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "fO" = ( /obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/card, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/tool/pen/fountain{ + pixel_x = -8; + pixel_y = 5 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fP" = ( /turf/closed/shuttle/ert{ @@ -1679,45 +1630,19 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "fR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/securecom{ - name = "colonel's secure box" - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/obj/structure/machinery/photocopier, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fS" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/mask/cigarette/bcigarette{ - pixel_y = 3 - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "fU" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "fV" = ( /obj/structure/sign/safety/maint{ @@ -1727,52 +1652,34 @@ /obj/structure/sign/safety/south{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "fW" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/offices) "fX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/offices) "fY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/yellow{ + pixel_y = 7 }, +/turf/open/floor/almayer, /area/adminlevel/chinook) "fZ" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "ga" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/obj/structure/bed/chair, +/turf/open/floor/almayer, /area/adminlevel/chinook) "gb" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/obj/structure/machinery/cm_vending/clothing/synth, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "gc" = ( /turf/closed/wall/almayer, @@ -1788,71 +1695,47 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "ge" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook) -"gh" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"gg" = ( +/turf/closed/shuttle/elevator{ + dir = 4 }, -/area/adminlevel/chinook) +/area/adminlevel/chinook/cargo) +"gh" = ( +/turf/closed/wall/almayer/reinforced, +/area/adminlevel/chinook/cryo) "gi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/chinook/offices) +"gj" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/almayer/blue/west, +/area/adminlevel/chinook) +"gl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) -"gj" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/glass{ - pixel_y = 4 - }, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/chinook/offices) -"gk" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 27 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook) -"gl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook) -"gm" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/adminlevel/chinook/engineering) -"go" = ( -/obj/structure/machinery/shower{ - dir = 4 +"gm" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/engineering) +"go" = ( +/obj/structure/machinery/shower{ + dir = 4 }, /obj/structure/machinery/door/window/westright{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/offices) +"gp" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "gq" = ( /obj/item/storage/box/drinkingglasses, /obj/structure/surface/table/reinforced/black, @@ -1868,25 +1751,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "gv" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "gw" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/carpet, +/area/adminlevel/chinook) "gy" = ( /turf/closed/shuttle/ert{ icon_state = "stan20" @@ -1900,22 +1777,17 @@ /obj/item/reagent_container/food/snacks/fishandchips, /obj/item/reagent_container/food/snacks/grilledcheese, /obj/item/reagent_container/food/snacks/grilledcheese, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/light{ + dir = 8 }, -/area/space) +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "gA" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/offices) "gB" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/offices) "gC" = ( /obj/structure/bed/chair{ @@ -1923,6 +1795,25 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook) +"gD" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) +"gF" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Provost Offices" + }, +/turf/open/floor/almayer/red, +/area/adminlevel/chinook/sec) +"gG" = ( +/obj/structure/sign/safety/security{ + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/adminlevel/chinook) "gH" = ( /obj/structure/sign/safety/press_area_ag{ pixel_y = 24 @@ -1941,62 +1832,53 @@ req_access_txt = "6" }, /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "gK" = ( -/obj/structure/kitchenspike, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/space) +/turf/open/floor/almayer/blue/east, +/area/adminlevel/chinook) "gL" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/chinook) +"gM" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "gN" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) -"gP" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"gO" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "chinookengilock"; + name = "Engineering Sector Lockdown"; + dir = 4 }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cryo) +"gP" = ( +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook) "gQ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "gS" = ( /obj/effect/decal/cleanable/cobweb2, /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "gT" = ( -/obj/structure/machinery/telecomms/relay/preset/centcom, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/relay, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/chinook/engineering) +"gU" = ( +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating, /area/adminlevel/chinook/engineering) "gV" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/offices) "gW" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -2015,9 +1897,11 @@ pixel_y = 8 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/item/stack/cable_coil{ + pixel_x = 20; + pixel_y = 5 }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/offices) "gZ" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2025,26 +1909,54 @@ pixel_y = 7 }, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/offices) -"hc" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" +"ha" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_x = 1; + pixel_y = 10 }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) +"hc" = ( +/turf/open/shuttle/dropship/light_grey_top_left, /area/adminlevel/chinook/shuttle/unpowered) "hd" = ( /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/obj/item/circuitboard/airlock, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "he" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer, +/obj/structure/displaycase, +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/offices) +"hf" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/folder/yellow{ + pixel_y = 9; + pixel_x = -3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/tableflag/uscm2{ + pixel_y = 6; + pixel_x = 10 + }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"hg" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "hh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/kutjevo/tan/plate, @@ -2053,74 +1965,69 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "hk" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer, -/area/adminlevel/chinook) -"hl" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) -"hm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -3; - pixel_y = 6 +"hl" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" }, -/turf/open/floor/almayer, -/area/adminlevel/chinook) +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) +"hm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook/event) "ho" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 }, +/turf/open/floor/wood, /area/adminlevel/chinook) "hp" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hq" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hr" = ( /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) +"ht" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, +/turf/open/floor/wood, /area/adminlevel/chinook) +"hv" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/kutjevo/tan, +/area/adminlevel/chinook/event) "hw" = ( /obj/structure/machinery/door_control{ id = "provostinterrog"; @@ -2128,9 +2035,7 @@ pixel_x = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "hA" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2142,41 +2047,33 @@ pixel_x = 3; pixel_y = 5 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "hB" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hC" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hD" = ( /obj/item/storage/box/drinkingglasses, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hE" = ( /obj/structure/sign/prop1{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) +"hF" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) "hG" = ( /obj/structure/machinery/light{ dir = 1 @@ -2185,27 +2082,20 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hI" = ( -/obj/structure/machinery/microwave, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/microwave{ + pixel_y = 6 }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "hJ" = ( /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/offices) "hK" = ( /obj/structure/surface/table/reinforced/black, @@ -2216,55 +2106,33 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"hL" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +"hM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "chinookairlock1"; + name = "\improper Chinook Shuttle Airlock" }, -/area/adminlevel/chinook/offices) +/turf/open/floor/plating, +/area/adminlevel/chinook/shuttle) "hN" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/lighter/zippo{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/barricade/metal{ + dir = 8 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) "hP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/adminlevel/chinook) "hQ" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "hS" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "hT" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -2280,15 +2148,10 @@ /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/offices) "hW" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southeast, /area/adminlevel/chinook) "hX" = ( /obj/structure/machinery/light{ @@ -2306,10 +2169,7 @@ /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, /obj/item/device/healthanalyzer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "hZ" = ( /obj/structure/sign/prop1{ @@ -2323,50 +2183,36 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "ib" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 2; name = "\improper Millitary Police Armory" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "ic" = ( /obj/structure/machinery/cm_vending/sorted/attachments, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) -"ie" = ( -/obj/structure/machinery/light{ - dir = 8 +"id" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = -18 }, -/turf/open/floor/almayer, -/area/adminlevel/chinook) +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "ih" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "ik" = ( /obj/structure/machinery/floodlight/landing{ name = "Floodlight" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "il" = ( /obj/structure/platform{ @@ -2380,19 +2226,14 @@ icon_state = "p_stair_ew_full_cap"; layer = 2.1 }, -/obj/structure/platform{ - dir = 1; - layer = 2 - }, +/obj/structure/platform/stair_cut/alt, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "ip" = ( /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/adminlevel/chinook/event) "iq" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/adminlevel/chinook/event) "ir" = ( /obj/structure/toilet{ @@ -2401,15 +2242,19 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "is" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/cups{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/cups{ + pixel_x = 3; + pixel_y = 3 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "iu" = ( /obj/structure/stairs/perspective{ @@ -2417,12 +2262,21 @@ icon_state = "p_stair_ew_full_cap"; layer = 2.1 }, -/obj/structure/platform{ - dir = 1; - layer = 2 - }, +/obj/structure/platform/stair_cut, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"iw" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "ix" = ( /obj/structure/machinery/door_control{ id = "chinookarmory1"; @@ -2433,31 +2287,38 @@ /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "iy" = ( /obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) -"iC" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 }, +/turf/open/floor/wood, /area/adminlevel/chinook) +"iC" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "iD" = ( /obj/structure/platform_decoration, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) -"iG" = ( -/obj/structure/platform, +"iF" = ( +/obj/structure/sign/prop2{ + pixel_y = 30 + }, +/turf/open/floor/strata/faux_wood, +/area/adminlevel/chinook/offices) +"iG" = ( +/obj/structure/platform, /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_full" @@ -2465,10 +2326,15 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "iH" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/adminlevel/chinook/event) +"iK" = ( +/obj/structure/largecrate/machine/autodoc, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "iL" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -2484,24 +2350,18 @@ /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "iO" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/item/trash/USCMtray{ pixel_x = 6; pixel_y = 4 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "iP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/engineering) "iS" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -2513,10 +2373,7 @@ id = "chinook_solitary2"; name = "Solitary Cell 2 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "iT" = ( /turf/closed/wall/almayer, @@ -2525,12 +2382,8 @@ /obj/item/pizzabox/meat{ pixel_y = 8 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "iW" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -2541,31 +2394,27 @@ /area/adminlevel/chinook/offices) "iY" = ( /obj/structure/sign/safety/medical{ - pixel_y = 25 + pixel_x = 32 }, -/obj/structure/sign/safety/east{ - pixel_x = 12; - pixel_y = 25 +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = 12 }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "iZ" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner, /area/adminlevel/chinook/engineering) "ja" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "jb" = ( /obj/structure/platform{ @@ -2574,23 +2423,15 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "jc" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper Colonel, Third Division" + name = "Office of LtCol. Misti Rockwell" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) -"jd" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 4 - }, -/area/adminlevel/chinook/shuttle) "je" = ( /obj/item/clothing/head/welding, /turf/open/floor/almayer, @@ -2604,9 +2445,9 @@ "jg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper Colonel, First Division" + name = "Office of LtCol. Karl Walz" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "ji" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -2617,18 +2458,12 @@ id = "chinookarmory1"; name = "Armory Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jj" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "jk" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -2643,50 +2478,39 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jm" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jo" = ( /obj/structure/surface/table/almayer, /obj/item/roller, /obj/item/roller, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "jp" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "jq" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook/shuttle/unpowered) "jr" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/adminlevel/chinook/medical) +/obj/structure/cargo_container/arious/right, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) +"js" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "ju" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Gym" @@ -2695,24 +2519,25 @@ /area/adminlevel/chinook) "jv" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jw" = ( /obj/structure/machinery/gibber, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/space) +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "jy" = ( /obj/structure/sign/safety/fridge{ pixel_x = 7; pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/microwave{ + pixel_y = -4 + }, +/obj/structure/machinery/microwave{ + layer = 2.83; + pixel_y = 10 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jz" = ( /obj/structure/machinery/microwave{ @@ -2722,25 +2547,39 @@ layer = 2.83; pixel_y = 10 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) +"jA" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "jC" = ( /obj/structure/machinery/space_heater{ pixel_x = -1; pixel_y = 9 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) -"jE" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer{ - icon_state = "plate" +"jD" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 }, +/turf/open/floor/wood, +/area/adminlevel/chinook) +"jE" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/event) "jF" = ( /turf/closed/wall/almayer, @@ -2748,34 +2587,20 @@ "jG" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jI" = ( -/obj/structure/machinery/computer/card{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/chinook/offices) +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/plating, +/area/adminlevel/chinook/engineering) "jJ" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "jK" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/multitool, -/obj/item/fuelCell{ - pixel_x = 5; - pixel_y = 7 - }, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "jN" = ( @@ -2795,13 +2620,7 @@ pixel_x = 12; pixel_y = 25 }, -/obj/structure/sign/safety/west{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "jR" = ( /turf/closed/shuttle/ert{ @@ -2809,18 +2628,11 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "jS" = ( -/obj/structure/sign/safety/coffee{ - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/sign/safety/west{ +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/adminlevel/chinook/offices) +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/engineering) "jT" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -2830,77 +2642,52 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "jU" = ( /obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jV" = ( /obj/structure/closet/secure_closet/medical3, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "jW" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "jY" = ( -/turf/open/floor/almayer{ - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner, /area/adminlevel/chinook) "jZ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook) "ka" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "kd" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kf" = ( -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/kutjevo/tan, -/area/adminlevel/chinook/event) +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "kg" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "ki" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper Colonel, Second Division" + name = "Office of LtCol. Hunter Stanford" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "kj" = ( /obj/structure/machinery/shower{ @@ -2910,46 +2697,29 @@ dir = 4 }, /obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/offices) "kk" = ( /obj/structure/machinery/cm_vending/sorted/attachments, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) -"kl" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/adminlevel/chinook/offices) "km" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "kn" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "ko" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kp" = ( /obj/item/storage/firstaid/adv{ @@ -2962,45 +2732,27 @@ }, /obj/item/storage/firstaid/adv, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kq" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "kr" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "ks" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "ku" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/offices) "kv" = ( -/obj/structure/machinery/light, /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "kw" = ( /obj/structure/sink{ @@ -3008,9 +2760,7 @@ pixel_x = -12; pixel_y = 2 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kx" = ( /obj/structure/flora/pottedplant{ @@ -3027,10 +2777,7 @@ "kB" = ( /obj/item/device/flashlight/lamp/green, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kC" = ( /obj/structure/surface/table/reinforced/black, @@ -3038,10 +2785,7 @@ name = "Courtroom Procedures"; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kD" = ( /obj/item/reagent_container/food/drinks/coffee{ @@ -3049,10 +2793,7 @@ pixel_y = 7 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "kF" = ( /obj/structure/sign/nosmoking_2{ @@ -3061,10 +2802,7 @@ /obj/structure/morgue{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "kG" = ( /obj/item/paper_bin/uscm{ @@ -3072,22 +2810,26 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) +"kI" = ( +/obj/structure/machinery/light{ + dir = 4 }, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "kJ" = ( -/obj/item/tool/lighter/zippo, /obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/drinkingglass/cola{ +/obj/structure/machinery/computer/communications{ + dir = 8; pixel_x = -3; - pixel_y = 6 + pixel_y = 13 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/item/prop/tableflag/uscm{ + pixel_x = -9; + pixel_y = -11 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "kK" = ( /obj/structure/machinery/floodlight, @@ -3095,31 +2837,21 @@ /area/adminlevel/chinook/engineering) "kL" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "kM" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "kN" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "kP" = ( /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southwest, /area/adminlevel/chinook/offices) "kQ" = ( /obj/structure/surface/table/almayer, @@ -3127,9 +2859,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "kR" = ( /obj/structure/machinery/light{ @@ -3139,73 +2869,56 @@ pixel_y = 3 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kS" = ( /obj/structure/machinery/disposal, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kT" = ( /obj/item/tool/kitchen/knife, /obj/item/tool/kitchen/rollingpin, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "kU" = ( -/obj/structure/closet/secure_closet/commander{ - name = "colonel's locker" - }, -/obj/item/clothing/head/beret/marine/commander/council, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/accessory/patch{ + pixel_x = -3; + pixel_y = 6 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "kW" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_box/magazine/m4ra, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) +"kX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northeast, +/area/adminlevel/chinook) "kY" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "kZ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook/cargo) "la" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "lb" = ( /obj/structure/stairs/perspective{ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ld" = ( /obj/structure/platform_decoration{ @@ -3220,6 +2933,10 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"lg" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "lh" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) @@ -3235,22 +2952,26 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ll" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/roller{ + pixel_y = 6 }, +/obj/item/roller{ + pixel_y = 6 + }, +/obj/item/roller{ + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "lm" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "ln" = ( /obj/structure/surface/table/almayer, @@ -3264,26 +2985,18 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "lu" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "lv" = ( /obj/structure/machinery/light, /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "lw" = ( /obj/structure/surface/table/almayer, @@ -3295,11 +3008,25 @@ pixel_x = -4; pixel_y = 10 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) +"ly" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) +"lz" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = 2; + pixel_y = 25 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/chinook) "lC" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/event) @@ -3312,16 +3039,12 @@ pixel_x = -2; pixel_y = 14 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "lE" = ( /obj/effect/decal/cleanable/flour, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "lG" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -3329,19 +3052,24 @@ name = "\improper Cargo Bay"; req_one_access_txt = "1;26" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" +/obj/structure/machinery/door/poddoor/almayer{ + id = "chinookreq"; + name = "Requisitions Lockdown" }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) +"lH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/engineering) "lK" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/processor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "lM" = ( /obj/structure/machinery/light{ @@ -3357,9 +3085,7 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "lO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "lP" = ( /obj/item/paper_bin/uscm{ @@ -3371,10 +3097,7 @@ /area/adminlevel/chinook/event) "lQ" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "lR" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -3384,19 +3107,20 @@ req_access_txt = "20"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) +"lS" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "lV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "lW" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -3404,38 +3128,40 @@ }, /turf/open/floor/kutjevo/multi_tiles, /area/adminlevel/chinook/event) +"lZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "ma" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) +"mc" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/mushroom, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) +"md" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) "me" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, /obj/effect/spawner/random/attachment, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "mg" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/bible{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "mh" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "mi" = ( /obj/structure/surface/table/reinforced/black, @@ -3443,85 +3169,63 @@ pixel_x = 5; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "mj" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "mm" = ( /obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped, /area/adminlevel/chinook/sec) "mn" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "mo" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "mp" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "mr" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Awards Stage" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "ms" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "mt" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/area/adminlevel/chinook/medical) +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) "mu" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "mv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) +"mw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) "mz" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -3532,18 +3236,25 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/engineering) "mB" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) +"mC" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"mD" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/platform/strata/metal, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "mF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/pizzabox/meat{ @@ -3580,27 +3291,17 @@ pixel_x = -6; pixel_y = 2 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "mK" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook) "mN" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green{ pixel_y = 7 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "mO" = ( /obj/structure/extinguisher_cabinet{ @@ -3616,35 +3317,28 @@ /area/adminlevel/chinook/cargo) "mQ" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "mU" = ( /obj/structure/filingcabinet, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"mV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "mW" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/cans/waterbottle{ pixel_x = 2; pixel_y = 7 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "mX" = ( -/turf/open/shuttle/dropship{ - icon_state = "floor8" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/adminlevel/chinook/shuttle/unpowered) "mY" = ( /obj/structure/surface/table/reinforced/black, @@ -3655,54 +3349,54 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"mZ" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Female Locker Room" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "na" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) +"nb" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/machinery/scoreboard{ + id = "chinook"; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "nd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "ne" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/shuttle) "ng" = ( /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "ni" = ( /obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nj" = ( /obj/structure/stairs/perspective{ @@ -3710,11 +3404,12 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"nk" = ( +/obj/structure/platform/strata/metal, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "nl" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/sign/prop1{ @@ -3727,21 +3422,14 @@ /obj/item/tool/pen{ pixel_y = 3 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "nm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/offices) "nn" = ( /obj/structure/bed/chair/comfy/black, @@ -3751,34 +3439,21 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "np" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/offices) "nr" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "ns" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "nt" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -3800,39 +3475,21 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "nv" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"nx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/adminlevel/chinook/shuttle) "ny" = ( /obj/structure/surface/table/reinforced/black, /obj/item/ashtray/glass{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "nB" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -3848,18 +3505,14 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "nC" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nD" = ( /obj/structure/machinery/computer/emails{ @@ -3867,9 +3520,10 @@ pixel_y = 7 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/poster/propaganda{ + pixel_y = 30 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "nE" = ( /obj/structure/bookcase{ @@ -3881,15 +3535,22 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "nF" = ( -/obj/item/storage/fancy/cigar, /obj/structure/surface/table/reinforced/black, /obj/structure/sign/prop2{ pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/faxmachine/uscm/command/highcom{ + name = "Chinook Fax Machine"; + department = "Chinook 91 GSO Station"; + pixel_y = 5 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) +"nG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) "nH" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, @@ -3898,12 +3559,14 @@ /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Captain Offices" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) +"nL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/chinook/medical) "nN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -3912,9 +3575,7 @@ pixel_x = -8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "nO" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -3922,20 +3583,14 @@ name = "Kitchen"; req_access_txt = "30" }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "nP" = ( /obj/item/paper_bin/uscm{ pixel_y = 6 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "nS" = ( /obj/structure/closet/secure_closet/guncabinet/red, @@ -3946,9 +3601,7 @@ dir = 2; req_access_txt = "1" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/offices) "nU" = ( /turf/open/floor/plating, @@ -3958,21 +3611,8 @@ /obj/item/storage/fancy/cigarettes/emeraldgreen{ pixel_y = 6 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) -"nW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/adminlevel/chinook) "nX" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/coffee{ @@ -3983,11 +3623,7 @@ name = "Courtroom Procedures"; pixel_y = 10 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "nY" = ( /obj/item/paper_bin/uscm{ @@ -3995,37 +3631,24 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "nZ" = ( /obj/structure/target, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "oa" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) "od" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "oe" = ( /obj/structure/surface/table/reinforced/black, @@ -4037,10 +3660,7 @@ pixel_x = 11; pixel_y = 13 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "of" = ( /obj/structure/machinery/computer/emails{ @@ -4048,11 +3668,7 @@ pixel_x = -2 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "og" = ( /obj/structure/stairs/perspective{ @@ -4085,98 +3701,78 @@ pixel_x = 5; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "om" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/glass{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "on" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "op" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "oq" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "or" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_access = null; + req_one_access = null }, -/area/adminlevel/chinook/event) +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "os" = ( /obj/item/tool/wirecutters{ pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "ot" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ou" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 9 - }, +/turf/open/floor/almayer/uscm/directional/north, /area/adminlevel/chinook/shuttle) "ov" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 1 - }, +/turf/open/floor/almayer/uscm/directional/northeast, /area/adminlevel/chinook/shuttle) "ow" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 6 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Pool" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"ox" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/cargo) +"oy" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 7 }, -/area/adminlevel/chinook/event) +/obj/item/toy/crayon/blue, +/obj/item/stack/cable_coil{ + pixel_x = -8 + }, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "oz" = ( /obj/structure/platform{ dir = 8 @@ -4188,10 +3784,7 @@ /area/adminlevel/chinook/event) "oA" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "oB" = ( /obj/structure/machinery/computer/secure_data{ @@ -4200,10 +3793,7 @@ pixel_y = 7 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "oC" = ( /obj/structure/machinery/door_control{ @@ -4213,9 +3803,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "oD" = ( /turf/closed/shuttle/ert{ @@ -4234,11 +3822,20 @@ pixel_y = 11; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) +"oF" = ( +/obj/structure/surface/rack, +/obj/item/toy/beach_ball/holoball, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) +"oG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/adminlevel/chinook) "oH" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -4246,12 +3843,14 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) +"oI" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/cargo) "oJ" = ( /obj/item/storage/surgical_tray, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "oM" = ( /obj/structure/surface/table/reinforced/black, @@ -4262,10 +3861,7 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "oN" = ( /obj/structure/machinery/light{ @@ -4275,26 +3871,18 @@ /area/adminlevel/chinook/event) "oO" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "oQ" = ( /obj/structure/closet, /turf/open/floor/almayer, /area/adminlevel/chinook/cryo) "oU" = ( -/obj/structure/machinery/medical_pod/autodoc, /obj/structure/sign/safety/autodoc{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/offices) "oV" = ( /obj/structure/surface/table/almayer, @@ -4307,15 +3895,31 @@ /obj/item/clothing/glasses/hud/health{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "oW" = ( /obj/structure/bed/stool, /turf/open/floor/kutjevo/tan/alt_edge, /area/adminlevel/chinook/event) +"oY" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 8 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 8; + pixel_x = -1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 8; + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) "oZ" = ( /obj/structure/machinery/vending/dinnerware, /turf/open/floor/kutjevo/plate, @@ -4333,27 +3937,18 @@ name = "Security Armory Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "pe" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "pf" = ( /obj/structure/bed/chair/comfy{ dir = 1; name = "prosecution chair" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "pg" = ( /obj/structure/stairs/perspective{ @@ -4361,15 +3956,10 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ph" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "pi" = ( /turf/closed/shuttle/ert{ @@ -4382,9 +3972,7 @@ /area/adminlevel/chinook/engineering) "pk" = ( /obj/structure/target, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "pl" = ( /obj/structure/platform{ @@ -4394,10 +3982,7 @@ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "pm" = ( /obj/structure/largecrate/random/case/double, @@ -4408,10 +3993,7 @@ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "pp" = ( /obj/structure/machinery/constructable_frame{ @@ -4420,12 +4002,10 @@ /turf/open/floor/plating, /area/adminlevel/chinook/engineering) "pq" = ( -/obj/structure/sign/safety/med_cryo{ - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "pr" = ( /obj/item/storage/donut_box, @@ -4442,19 +4022,20 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/sec) -"pw" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"pv" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"pw" = ( +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "px" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "py" = ( /obj/structure/surface/table/reinforced/black, @@ -4463,22 +4044,18 @@ pixel_x = 8; pixel_y = 7 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"pz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/cargo) "pA" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/folder/blue{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "Office of LtCol. Booker Peralta" }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "pB" = ( /obj/structure/surface/table/reinforced/black, @@ -4486,15 +4063,16 @@ pixel_y = 4 }, /obj/structure/machinery/light, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "pC" = ( -/obj/structure/flora/pottedplant/random, /obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_x = 1; + pixel_y = 10 + }, /turf/open/floor/almayer, /area/adminlevel/chinook) "pD" = ( @@ -4502,14 +4080,10 @@ /obj/item/storage/fancy/cigar{ pixel_y = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "pE" = ( -/turf/open/floor/almayer/uscm/directional, +/turf/open/floor/almayer/uscm/directional/southeast, /area/adminlevel/chinook/shuttle) "pF" = ( /obj/structure/surface/table/reinforced/black, @@ -4517,71 +4091,67 @@ pixel_x = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "pG" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "pH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Command Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) +"pI" = ( +/obj/structure/sign/safety/bridge{ + desc = "A sign signifying the Courtroom"; + name = "\improper Courtroom"; + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/sign/safety/north{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/adminlevel/chinook/sec) "pJ" = ( /obj/structure/machinery/computer/secure_data{ dir = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pK" = ( /obj/structure/bed/chair/comfy{ desc = "A chair with leather padding and adjustable headrest. You could probably sit in one of these for ages. This one looks fit for a secretary to sit in."; name = "secretary's comfy chair" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pM" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "pN" = ( /obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "pP" = ( /obj/structure/platform{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) +"pQ" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/adminlevel/chinook/cargo) "pR" = ( /obj/structure/machinery/disposal, /turf/open/floor/kutjevo, @@ -4593,17 +4163,14 @@ /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "pT" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/machinery/light{ dir = 4 }, /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "pU" = ( /obj/structure/platform{ @@ -4623,74 +4190,57 @@ /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) "pW" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "pX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, -/area/adminlevel/chinook/medical) +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "pY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "pZ" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "qa" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/book/manual/marine_law{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_y = 3 +/obj/structure/filingcabinet{ + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "qb" = ( /obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "qc" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 + }, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"qd" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/adminlevel/chinook/offices) "qe" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; @@ -4702,89 +4252,86 @@ /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "qj" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qk" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"qn" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +"ql" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/cargo) +"qm" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/sec) +"qn" = ( +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) "qo" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_x = 1; + pixel_y = 6 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "qp" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"qq" = ( +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) "qr" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/coffee{ pixel_x = -3; pixel_y = 18 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/yellow{ - pixel_y = 7 +/obj/item/toy/inflatable_duck, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"qv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/almayer, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/gm/river/pool, /area/adminlevel/chinook) "qw" = ( /obj/item/storage/box/m56d/m2c, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "qy" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/sec) "qz" = ( /obj/structure/bed/chair/comfy{ desc = "A chair with leather padding and adjustable headrest. You could probably sit in one of these for ages. This one looks fit for a secretary to sit in."; name = "secretary's comfy chair" }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "qA" = ( /obj/structure/surface/table/almayer, @@ -4797,20 +4344,33 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) +"qB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/weldingtool/largetank{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/tool/weldingtool/largetank{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook) "qC" = ( /obj/item/ashtray/glass{ pixel_y = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qD" = ( /obj/item/paper_bin/uscm{ @@ -4818,10 +4378,7 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qF" = ( /obj/structure/surface/table/reinforced/black, @@ -4832,10 +4389,7 @@ pixel_y = 8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "qG" = ( /obj/structure/mirror{ @@ -4849,39 +4403,31 @@ /area/adminlevel/chinook/sec) "qH" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) +"qI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) -"qJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/kutjevo, -/area/adminlevel/chinook/event) "qK" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) -"qL" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/adminlevel/chinook/engineering) "qM" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/adminlevel/chinook/event) "qN" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) +"qO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "qP" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4892,10 +4438,7 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "qT" = ( /obj/item/clothing/glasses/sunglasses, @@ -4905,21 +4448,14 @@ "qU" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "qV" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "qX" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/adminlevel/chinook/sec) "qY" = ( /obj/structure/machinery/light{ @@ -4934,6 +4470,12 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) +"rb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook) "rc" = ( /obj/structure/closet/crate, /obj/item/storage/briefcase/inflatable, @@ -4941,16 +4483,11 @@ /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "rd" = ( /obj/structure/closet/secure_closet/medical3, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "rf" = ( /obj/structure/sign/safety/synth_storage{ @@ -4961,16 +4498,11 @@ pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "rh" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "ri" = ( /turf/closed/shuttle/ert{ @@ -4994,33 +4526,29 @@ pixel_x = -3; pixel_y = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "rl" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "rm" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/adminlevel/chinook/event) "rn" = ( /turf/open/floor/kutjevo/tan/multi_tiles, /area/adminlevel/chinook/event) "ro" = ( /obj/structure/machinery/door/window/northleft, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) +"rp" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/adminlevel/chinook/offices) "rq" = ( /obj/structure/machinery/light{ dir = 1 @@ -5032,73 +4560,57 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "ru" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/obj/item/roller{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "rw" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "rx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) +"ry" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/chinook/cargo) "rA" = ( /obj/item/stack/sheet/wood/medium_stack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"rD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +"rC" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/almayer/silvercorner, +/area/adminlevel/chinook) +"rD" = ( +/turf/open/floor/almayer/bluecorner/east, /area/adminlevel/chinook/offices) "rE" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) -"rG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" +"rF" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = -17 }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"rG" = ( +/turf/open/floor/almayer/bluecorner/north, /area/adminlevel/chinook/offices) "rH" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "rI" = ( /obj/structure/machinery/chem_dispenser/soda{ @@ -5118,16 +4630,24 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) -"rN" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" +"rK" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"rM" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 1 }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) +"rN" = ( +/turf/open/floor/almayer/silvercorner/north, /area/adminlevel/chinook) "rO" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Workshop" +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering" }, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) @@ -5138,12 +4658,13 @@ /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) "rU" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/chinook/offices) "rV" = ( +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 5; + pixel_y = 8 + }, /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) @@ -5155,16 +4676,13 @@ "rX" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper Colonel, Fourth Division" + name = "Office of LtCol. Braden Stephenson" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "rY" = ( /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sa" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -5177,76 +4695,55 @@ }, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"se" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -18 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "sg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/drinkingglass, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "sh" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "si" = ( /obj/structure/machinery/computer/secure_data{ dir = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "sk" = ( /obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "sl" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) "sm" = ( -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/disposal, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "sn" = ( -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/sec) "so" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "sp" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook) "sr" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ss" = ( /obj/structure/surface/table/reinforced/black, @@ -5254,27 +4751,25 @@ pixel_x = 1; pixel_y = 6 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "st" = ( /obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"sw" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/offices) "sx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "sz" = ( /obj/structure/target, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook) "sA" = ( /obj/structure/machinery/light{ @@ -5286,21 +4781,35 @@ /obj/structure/sign/safety/conference_room{ pixel_y = -24 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) -"sE" = ( -/obj/structure/machinery/door_control{ - id = "chinookofficelock"; - name = "Command Office Lockdown"; - pixel_x = 24; - req_one_access_txt = "2;3;12;19" +"sD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/kitchen/tray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" +/turf/open/floor/kutjevo/tan/plate, +/area/adminlevel/chinook/event) +"sE" = ( +/obj/structure/machinery/door_control{ + id = "chinookofficelock"; + name = "Command Office Lockdown"; + pixel_x = 24; + req_one_access_txt = "2;3;12;19" }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/chinook/offices) "sF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5308,9 +4817,7 @@ id = "chinookcargo"; name = "\improper Cargo Bay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/shuttle) "sG" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -5320,37 +4827,25 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "sH" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook/cargo) "sJ" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sK" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "sL" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "sM" = ( /obj/effect/decal/warning_stripes{ @@ -5358,21 +4853,50 @@ }, /obj/structure/surface/rack, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) +"sP" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/holohoop{ + dir = 8; + id = "chinook"; + side = "right" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "sQ" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/coffee{ pixel_x = 12; pixel_y = 7 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "sR" = ( /obj/structure/machinery/light, @@ -5385,25 +4909,16 @@ pixel_x = -14; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "sS" = ( /obj/structure/filingcabinet, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "sT" = ( /obj/structure/largecrate/random, /obj/item/tool/weldpack, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "sU" = ( /obj/structure/platform{ @@ -5412,57 +4927,40 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) "sV" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green{ pixel_y = 6 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "sW" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/stair_cut, /obj/structure/stairs/perspective{ dir = 8; icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "sX" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "sY" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southeast, /area/adminlevel/chinook/medical) "sZ" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) +"ta" = ( +/turf/open/floor/almayer/orange/west, +/area/adminlevel/chinook/cryo) "tb" = ( /obj/item/device/lightreplacer, /obj/structure/surface/table/reinforced/black, @@ -5481,17 +4979,12 @@ dir = 8 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "te" = ( /obj/structure/closet/crate, /obj/item/storage/fancy/cigarettes/lucky_strikes, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "tf" = ( /turf/closed/shuttle/ert{ @@ -5510,27 +5003,31 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "tn" = ( -/obj/item/ashtray/glass, /obj/structure/surface/table/reinforced/black, +/obj/item/trash/plate, +/obj/item/ashtray/glass{ + pixel_y = 4 + }, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) -"tp" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/book/manual/barman_recipes{ - pixel_y = 6 +"to" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/structure/platform/strata/metal, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"tp" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook) "tq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "tr" = ( /obj/structure/surface/table/reinforced/black, @@ -5539,55 +5036,38 @@ /area/adminlevel/chinook/event) "tt" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "tu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/trash/boonie, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/obj/structure/morgue, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "tv" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "tw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/reagent_container/food/drinks/tea{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/plumphelmetbiscuit, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/closet/secure_closet/personal, +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/poster{ + pixel_y = 32 }, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) "tx" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) +"ty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "tz" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -5598,19 +5078,13 @@ /obj/item/storage/fancy/cigar/tarbacks{ pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "tB" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/adminlevel/chinook/shuttle) "tC" = ( /turf/closed/wall/almayer/outer, @@ -5623,61 +5097,36 @@ /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "tG" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "tH" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "tJ" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook) +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) "tK" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/drinkingglasses, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "tL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/cell/super{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/cell/super{ - pixel_x = 3 - }, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook) +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/offices) "tM" = ( /obj/structure/barricade/handrail{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "tN" = ( /turf/closed/shuttle/ert{ @@ -5686,14 +5135,10 @@ /area/adminlevel/chinook/shuttle/unpowered) "tO" = ( /obj/structure/target/syndicate, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "tP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "tQ" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -5708,16 +5153,13 @@ }, /obj/effect/decal/cleanable/blood/oil/streak, /obj/item/tool/wrench, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) +"tT" = ( +/turf/closed/wall/almayer/reinforced, +/area/adminlevel/chinook/shuttle) "tU" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/west, /area/adminlevel/chinook) "tV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -5746,85 +5188,60 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) -"tY" = ( +"tZ" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +/obj/structure/machinery/scoreboard_button{ + pixel_y = 24; + id = "chinook"; + name = "scoreboard reset button" }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) -"tZ" = ( -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -5 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/kutjevo/tan, -/area/adminlevel/chinook/event) "ud" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ dir = 2; name = "\improper Bar" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "ue" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 6 - }, +/obj/structure/machinery/chem_dispenser/soda, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "uf" = ( /obj/structure/machinery/light, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/adminlevel/chinook/shuttle) "ug" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) +/obj/structure/sign/safety/bathwomens{ + pixel_x = 15; + pixel_y = -25 + }, +/turf/open/floor/almayer/blue, +/area/adminlevel/chinook/offices) "uh" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "ui" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uj" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/adminlevel/chinook/cargo) -"uk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "uo" = ( /obj/structure/sign/safety/opens_up{ @@ -5837,100 +5254,64 @@ /turf/open/space, /area/space) "up" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, -/area/adminlevel/chinook/event) +/obj/structure/flora/pottedplant/random, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "uq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "ur" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "us" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "ut" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; name = "\improper Courtroom" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"uu" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "uv" = ( /obj/structure/surface/table/reinforced/black, /obj/item/paper{ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uw" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "ux" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "uy" = ( -/obj/structure/closet/secure_closet/guncabinet/blue{ - name = "sidearm storage" - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 }, -/area/adminlevel/chinook/sec) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "uz" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) "uB" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -5944,10 +5325,7 @@ /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "uD" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -5960,15 +5338,10 @@ id = "chinookarmorytr"; name = "Firing Range Equipment Lockdown" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "uF" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "uG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -5984,10 +5357,7 @@ /obj/item/device/binoculars, /obj/item/device/binoculars, /obj/item/device/binoculars, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "uJ" = ( /obj/structure/machinery/door_control{ @@ -5995,37 +5365,22 @@ name = "Security Sector Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "uK" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/chinook/offices) "uM" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) -"uN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/adminlevel/chinook/offices) "uO" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -6044,48 +5399,34 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/offices) "uR" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/plating, /area/adminlevel/chinook/shuttle/unpowered) "uS" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/cargo) -"uT" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -21 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2; + pixel_y = 4 }, +/turf/open/floor/wood, +/area/adminlevel/chinook) +"uT" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "uU" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) -"uV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "emerald" - }, -/area/adminlevel/chinook/shuttle) "uW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/lightreplacer, @@ -6094,12 +5435,9 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "uX" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook/cargo) +/obj/structure/machinery/disposal, +/turf/closed/wall/almayer, +/area/adminlevel/chinook/sec) "uY" = ( /obj/structure/surface/table/reinforced/black, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -6117,15 +5455,10 @@ dir = 1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "vb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northwest, /area/adminlevel/chinook) "vc" = ( /obj/structure/sign/ROsign{ @@ -6143,15 +5476,11 @@ pixel_x = 12; pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "ve" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "vf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -6167,16 +5496,10 @@ pixel_x = 32; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "vi" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/chinook/medical) "vk" = ( /obj/structure/machinery/light, @@ -6192,10 +5515,7 @@ pixel_x = 9; pixel_y = -21 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "vo" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey{ @@ -6207,58 +5527,50 @@ /area/adminlevel/chinook/event) "vp" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "vq" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/obj/item/circuitboard/airlock, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "vs" = ( -/obj/structure/closet/secure_closet/commander{ - name = "colonel's locker" - }, -/obj/item/clothing/head/beret/marine/commander/council, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/closet/secure_closet/commander, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"vt" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/toy/deck, +/turf/open/floor/carpet, +/area/adminlevel/chinook) "vu" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8 - }, +/turf/open/floor/almayer/uscm/directional/logo_c/west, /area/adminlevel/chinook/shuttle) "vv" = ( /obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) -"vx" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +"vw" = ( +/obj/structure/sign/safety/bathmens{ + pixel_x = 15; + pixel_y = 25 }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/chinook) +"vx" = ( +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "vz" = ( /obj/structure/closet/secure_closet/military_police, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "vA" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "vB" = ( /obj/structure/sign/safety/airlock{ @@ -6268,21 +5580,11 @@ pixel_x = 15; pixel_y = -28 }, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/adminlevel/chinook/shuttle) "vC" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/adminlevel/chinook/shuttle/unpowered) -"vD" = ( -/turf/closed/wall/almayer/outer{ - desc = "A heavily reinforced metal wall. Nothing gets through here."; - name = "ultra-reinforced hull" - }, -/area/adminlevel/chinook) "vE" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -6292,18 +5594,12 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "vG" = ( /obj/structure/filingcabinet, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "vH" = ( /obj/structure/sign/safety/airlock{ @@ -6319,10 +5615,7 @@ /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "vJ" = ( /obj/structure/machinery/light{ @@ -6331,11 +5624,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook) "vK" = ( /obj/item/storage/fancy/cigar, @@ -6360,20 +5649,14 @@ layer = 3.1 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "vQ" = ( /obj/structure/largecrate/supply, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "vR" = ( /obj/structure/bed/chair{ @@ -6381,6 +5664,16 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook) +"vS" = ( +/obj/structure/sign/safety/med_cryo{ + pixel_y = -25 + }, +/obj/structure/sign/safety/south{ + pixel_x = 12; + pixel_y = -25 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/chinook/medical) "vT" = ( /obj/item/trash/barcardine, /turf/open/floor/almayer, @@ -6390,52 +5683,33 @@ dir = 1 }, /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "vW" = ( -/obj/structure/machinery/telecomms/processor/preset_cent{ - autolinkers = list("chinook"); - freq_listening = list(1353,1357,1359,1355,1469,1471,1354,1342,1344,1235,1340,1214,1358,1356,1236,1240,1449,1451,1453,1455); - listening_level = 9 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/processor, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "vX" = ( /obj/structure/machinery/cm_vending/sorted/medical, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "vZ" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/cargo_container/seegson/mid, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "wc" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/taperecorder, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "wd" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "we" = ( /obj/structure/surface/table/reinforced/black, @@ -6443,10 +5717,7 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "wj" = ( /obj/structure/bed/chair/comfy{ @@ -6463,45 +5734,48 @@ /area/adminlevel/chinook/event) "wl" = ( /obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/almayer{ - icon_state = "redfull" +/turf/open/floor/almayer/redfull, +/area/adminlevel/chinook) +"wm" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood, /area/adminlevel/chinook) "wo" = ( -/obj/structure/bed/sofa/south/grey, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "wp" = ( /obj/structure/sign/safety/hazard{ pixel_x = 32; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = -6 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "wq" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) +"wr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/chinook) "wt" = ( /obj/structure/sign/safety/synth_storage{ pixel_x = 31; @@ -6511,18 +5785,13 @@ pixel_x = 31; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "wu" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_edge/west, /area/adminlevel/chinook/event) "wx" = ( /obj/item/storage/box/drinkingglasses, @@ -6533,25 +5802,20 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "wz" = ( -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook) "wA" = ( -/obj/item/tool/kitchen/tray, +/obj/structure/surface/table/reinforced/black, +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = -1 + }, /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 6 }, -/obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) "wB" = ( @@ -6560,10 +5824,7 @@ pixel_x = -2; pixel_y = 9 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "wD" = ( /obj/structure/surface/table/reinforced/prison, @@ -6571,23 +5832,16 @@ pixel_x = -3; pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/space) +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "wE" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "wF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "wG" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -6596,30 +5850,15 @@ "wH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "wI" = ( /obj/structure/machinery/door/window/southright, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/chinook/event) -"wK" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "wL" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "wN" = ( /obj/effect/decal/warning_stripes{ @@ -6629,49 +5868,50 @@ /area/adminlevel/chinook/engineering) "wP" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "wQ" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"wS" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/adminlevel/chinook/cargo) "wT" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "wU" = ( /obj/structure/closet/crate/freezer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "wV" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook) "wW" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) +"wX" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "wY" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/light{ + dir = 1 }, -/area/space) +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) +"xa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/adminlevel/chinook/offices) "xd" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -6682,51 +5922,79 @@ id = "chinook_solitary3"; name = "Solitary Cell 3 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "xe" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigar{ pixel_y = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) +"xf" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"xg" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/door/window/brigdoor/southleft, +/turf/open/floor/almayer/redfull, +/area/adminlevel/chinook/offices) "xh" = ( /obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "xi" = ( -/turf/closed/wall/almayer/outer{ - desc = "A heavily reinforced metal wall. Nothing gets through here."; - name = "ultra-reinforced hull" - }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "xj" = ( /obj/item/book/manual/chef_recipes, /obj/item/clothing/head/chefhat, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) +"xk" = ( +/obj/structure/sign/safety/bathmens{ + pixel_y = -25 + }, +/obj/structure/sign/safety/bathwomens{ + pixel_x = 12; + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/adminlevel/chinook) +"xm" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/event) "xn" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) +"xq" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "xr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 2; @@ -6744,11 +6012,14 @@ /area/adminlevel/chinook) "xu" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"xv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "xw" = ( /obj/structure/bed/sofa/south/grey, /turf/open/floor/kutjevo/tan, @@ -6759,27 +6030,26 @@ /area/adminlevel/chinook/event) "xz" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) +"xA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/chinook/engineering) "xC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/black, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "xE" = ( /obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "xF" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer, +/obj/structure/surface/rack, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "xG" = ( /obj/structure/flora/pottedplant{ @@ -6790,10 +6060,16 @@ "xH" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper SCO Offices" + name = "\improper Offices" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) +"xI" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_y = -25 + }, +/turf/open/floor/almayer/red, +/area/adminlevel/chinook/sec) "xK" = ( /turf/closed/shuttle/ert{ icon_state = "stan23" @@ -6803,10 +6079,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "xN" = ( /obj/structure/surface/table/almayer, @@ -6822,77 +6095,76 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/offices) "xR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) +"xU" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "xV" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "xW" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/adminlevel/chinook/shuttle/unpowered) "xY" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "xZ" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/glass{ + pixel_y = 4; + pixel_x = -13 }, -/area/adminlevel/chinook/medical) +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "ya" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 1; - name = "\improper General, 3rd Fleet 2nd Battlegroup" + name = "Office of Col. Samantha Maverick" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "yb" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "yf" = ( /obj/structure/largecrate/random, /obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "yg" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "yh" = ( /turf/closed/shuttle/ert{ icon_state = "stan27" }, /area/adminlevel/chinook/shuttle/unpowered) +"yi" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + pixel_x = -16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "yj" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/kutjevo/plate, @@ -6901,32 +6173,34 @@ /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/event) +"yn" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Morgue" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "yo" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) +"yp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/adminlevel/chinook/event) "yr" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "yu" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/secure_data{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "yv" = ( /obj/structure/machinery/light, @@ -6937,9 +6211,7 @@ /obj/item/storage/box/flashbangs, /obj/item/storage/box/flashbangs, /obj/item/storage/box/flashbangs, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "yx" = ( /obj/structure/sign/poster{ @@ -6947,44 +6219,57 @@ }, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) +"yy" = ( +/obj/structure/closet/secure_closet/guncabinet/red{ + name = "provost armor rack" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/sec) "yz" = ( /obj/structure/surface/table/almayer, /obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "yA" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "yC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "yF" = ( /obj/item/trash/cigbutt, /turf/open/floor/kutjevo/multi_tiles, /area/adminlevel/chinook/event) +"yJ" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) "yK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) -"yN" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" +"yL" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) +"yM" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 1 }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/chinook/medical) +"yN" = ( +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "yO" = ( /obj/structure/platform, @@ -6993,32 +6278,46 @@ icon_state = "p_stair_full" }, /obj/structure/barricade/handrail/strata{ - layer = 3.5 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + layer = 4.5 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "yP" = ( /obj/structure/machinery/photocopier, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) +"yQ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) +"yR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "yS" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/sec) +"yT" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/snacks/plumphelmetbiscuit{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "yV" = ( /obj/structure/machinery/door_control{ id = "chinookrange"; @@ -7032,70 +6331,65 @@ /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "yY" = ( /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/telecomms/broadcaster/preset_cent{ - autolinkers = list("chinook"); - freq_listening = list(1353,1357,1359,1355,1469,1471,1354,1342,1344,1235,1340,1214,1358,1356,1236,1240,1449,1451,1453,1455); - listening_level = 9 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/broadcaster, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "yZ" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook/cargo) "zb" = ( /obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "zc" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = 30 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "zd" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/structure/sign/safety/med_cryo{ + pixel_x = 31 }, -/area/adminlevel/chinook) +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/chinook/medical) "zf" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) -"zj" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +"zg" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 11 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) +"zi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) +"zj" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) +"zl" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/chinook/offices) "zm" = ( /obj/structure/machinery/door_control{ id = "chinook_solitary3"; @@ -7104,9 +6398,7 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "zp" = ( /obj/structure/surface/table/reinforced/black, @@ -7116,19 +6408,17 @@ /obj/item/tool/pen{ pixel_y = -6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 8 }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zq" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "zt" = ( /obj/structure/surface/table/reinforced/black, @@ -7138,26 +6428,17 @@ /obj/item/paper{ pixel_x = -5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zw" = ( -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/event) "zC" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "zD" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "zE" = ( /obj/structure/surface/table/reinforced/black, @@ -7165,10 +6446,7 @@ pixel_x = -1; pixel_y = -3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "zG" = ( /obj/item/tool/lighter/zippo{ @@ -7180,16 +6458,10 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "zH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "zI" = ( /obj/structure/prop/almayer/name_stencil{ @@ -7199,9 +6471,7 @@ /turf/open/floor/almayer_hull, /area/space) "zJ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "zL" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ @@ -7209,11 +6479,19 @@ name = "\improper Cargo Bay"; req_one_access_txt = "1;26" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/machinery/door/poddoor/almayer{ + id = "chinookreq"; + name = "Requisitions Lockdown" }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) +"zM" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -5 + }, +/turf/open/floor/kutjevo/tan, +/area/adminlevel/chinook/event) "zO" = ( /obj/structure/machinery/door_control{ id = "chinook_tcomms"; @@ -7221,40 +6499,25 @@ pixel_y = 25; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "zP" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "zR" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "zS" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "zT" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "zU" = ( /obj/structure/platform, @@ -7263,32 +6526,23 @@ icon_state = "p_stair_full" }, /obj/structure/barricade/handrail/strata{ - layer = 3.5 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + layer = 4.5 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "zW" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/engineering) "zX" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "zY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/offices) "Ac" = ( /obj/structure/surface/table/almayer, @@ -7297,9 +6551,7 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "Ad" = ( /turf/closed/shuttle/ert{ @@ -7308,9 +6560,7 @@ /area/adminlevel/chinook/shuttle/unpowered) "Ae" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/offices) "Af" = ( /obj/structure/machinery/light{ @@ -7319,26 +6569,18 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/chinook/medical) "Ag" = ( /obj/structure/machinery/optable, /obj/item/tank/anesthetic, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "Ah" = ( /obj/structure/machinery/computer/card, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ai" = ( /turf/closed/shuttle/ert{ @@ -7347,16 +6589,11 @@ /area/adminlevel/chinook/shuttle/unpowered) "Aj" = ( /obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "Al" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/offices) "Am" = ( /obj/structure/window/reinforced/tinted/frosted, @@ -7372,46 +6609,36 @@ /area/adminlevel/chinook/offices) "Ao" = ( /obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ap" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "As" = ( /turf/closed/wall/almayer, /area/adminlevel/chinook/cargo) "Au" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Aw" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 1; name = "\improper Tool Storage" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ax" = ( -/obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/cups{ pixel_x = 3; pixel_y = 3 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Ay" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -7438,35 +6665,30 @@ /area/adminlevel/chinook/engineering) "AB" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) +"AC" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) +"AD" = ( +/turf/closed/shuttle/elevator, +/area/adminlevel/chinook/offices) "AE" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "AF" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Dining Hall" }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/event) "AG" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "AH" = ( /obj/structure/machinery/vending/coffee, @@ -7483,14 +6705,11 @@ /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "AJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "AK" = ( /obj/item/trash/cigbutt/cigarbutt, @@ -7503,16 +6722,11 @@ /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northeast, /area/adminlevel/chinook/medical) "AM" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "AP" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep/training, @@ -7521,15 +6735,18 @@ name = "\improper Range Safety Guidelines"; pixel_x = -32 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook) -"AS" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - icon_state = "plate" +"AR" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 1; + name = "\improper Courtroom" }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/event) +"AS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "AU" = ( /turf/closed/shuttle/ert{ @@ -7537,22 +6754,24 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "AV" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "AX" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) +"AY" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook) "AZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -7569,14 +6788,20 @@ pixel_x = 3; pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Bc" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook/sec) +"Bd" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "Be" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -7588,54 +6813,55 @@ /obj/item/device/flashlight/lamp/green{ pixel_y = 7 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/obj/item/toy/deck, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Bg" = ( /obj/structure/machinery/computer/secure_data{ dir = 4 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Bh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/commander{ - name = "colonel's locker" +/obj/structure/surface/table/reinforced/black, +/obj/item/folder/black{ + pixel_y = 6; + pixel_x = -6 }, -/obj/item/clothing/head/beret/marine/commander/council, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/obj/item/folder/white{ + pixel_x = 2; + pixel_y = 2 }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"Bi" = ( +/turf/closed/wall/almayer/white/hull{ + desc = "A reinforced white hull. Nothing gets through here."; + name = "ultra-reinforced hull" + }, +/area/adminlevel/chinook/medical) "Bj" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigarettes/kpack{ pixel_x = -11; pixel_y = 7 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) +"Bk" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) "Bn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "Bp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -7645,48 +6871,29 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "Br" = ( -/turf/closed/wall/almayer/outer{ - desc = "A heavily reinforced metal wall. Nothing gets through here."; - name = "ultra-reinforced hull" - }, +/turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook/sec) "Bt" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Bu" = ( -/obj/structure/sign/safety/coffee{ - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/sign/safety/west{ - pixel_y = 25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/adminlevel/chinook/sec) +/turf/open/floor/almayer/uscm/directional/southwest, +/area/adminlevel/chinook/shuttle) "Bx" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/emails{ dir = 4; pixel_x = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "By" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "Bz" = ( /obj/structure/surface/table/almayer, @@ -7695,10 +6902,7 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "BA" = ( /obj/structure/machinery/light{ @@ -7707,44 +6911,24 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "BB" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "BC" = ( /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) -"BE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/kutjevo/plate, -/area/adminlevel/chinook/event) "BF" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "BG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "BH" = ( /obj/structure/bed/chair/office/dark{ @@ -7758,32 +6942,24 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"BJ" = ( +/obj/item/toy/beach_ball, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) "BK" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/chinook/engineering) "BN" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "BO" = ( /obj/structure/machinery/autolathe, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/chinook/cargo) "BP" = ( /obj/structure/platform{ @@ -7791,6 +6967,10 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) +"BR" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/chinook/medical) "BS" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/shuttle) @@ -7801,10 +6981,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "BV" = ( /obj/structure/platform_decoration{ @@ -7816,15 +6993,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "BX" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook/event) "BY" = ( /obj/structure/machinery/door_control{ @@ -7834,21 +7007,20 @@ pixel_y = 8; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "BZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 21 }, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2; + pixel_y = -4 }, -/area/adminlevel/chinook/engineering) +/turf/open/floor/wood, +/area/adminlevel/chinook) "Cb" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; @@ -7864,16 +7036,18 @@ pixel_x = 4; pixel_y = 7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Cf" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/obj/structure/sign/safety/firingrange{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -6 }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Cg" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -7881,43 +7055,50 @@ }, /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) +"Ch" = ( +/turf/closed/shuttle/elevator, +/area/adminlevel/chinook/cargo) +"Ci" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) "Cj" = ( /obj/structure/sign/safety/cryo{ pixel_x = -18 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "Ck" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "Cm" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Cn" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Co" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) +"Cp" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"Cq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/event) "Cr" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/plate, @@ -7928,28 +7109,34 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 23 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "Ct" = ( /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) -"Cw" = ( -/obj/structure/machinery/light{ - dir = 4 +"Cu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/motiondetector{ + pixel_y = 9 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) +"Cw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/goldenplaque{ + pixel_x = 32; + desc = "The plaque reads, 'This plaque is awarded to: KARL WALZ, For superior and unrivaled strategic prowess during the 2173 War Games, scoring a decisive and triumphant victory for their side.'"; + name = "2173 Commanding Excellence Award" }, +/turf/open/floor/almayer/ai_floors, /area/adminlevel/chinook/offices) "Cx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/uscm/directional/northwest, /area/adminlevel/chinook/shuttle) "Cz" = ( /obj/structure/bed/sofa/south/grey, @@ -7960,22 +7147,25 @@ /area/adminlevel/chinook) "CA" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "CC" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "CE" = ( -/obj/structure/machinery/light, /obj/structure/bed/chair/comfy{ dir = 1 }, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) +"CF" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/almayer/blue, +/area/adminlevel/chinook) "CH" = ( /obj/structure/machinery/light, /turf/open/floor/kutjevo/plate, @@ -7984,44 +7174,33 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "CK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook/cryo) "CM" = ( /obj/structure/machinery/light, -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) -"CN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/adminlevel/chinook) "CP" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/adminlevel/chinook/shuttle/unpowered) "CQ" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"CS" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/chinook/medical) +"CT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "CU" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/plate, @@ -8034,10 +7213,7 @@ pixel_x = -16; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "CX" = ( /obj/structure/bed/chair/comfy{ @@ -8046,24 +7222,21 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Da" = ( /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/event) "Db" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/machinery/light{ + dir = 8 }, -/area/adminlevel/chinook/medical) +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering" + }, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/chinook/engineering) "Dc" = ( /obj/structure/toilet{ dir = 4 @@ -8071,21 +7244,28 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "De" = ( -/obj/structure/machinery/computer/secure_data{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer, +/obj/item/storage/bag/plants{ + pixel_x = 3 + }, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/event) "Df" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/bed/chair/comfy/black{ + dir = 1 }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "Dg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer, +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) "Dh" = ( /obj/structure/machinery/light, @@ -8123,9 +7303,7 @@ /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, /obj/item/weapon/gun/shotgun/combat, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Dp" = ( /obj/structure/machinery/vending/cigarette/colony, @@ -8134,6 +7312,13 @@ }, /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) +"Dq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "Dr" = ( /obj/structure/closet/secure_closet{ name = "\improper Lethal Injection Locker" @@ -8143,17 +7328,12 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Ds" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Dt" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -8168,31 +7348,58 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"Dv" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/adminlevel/chinook/cargo) "Dw" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/emails{ dir = 8; pixel_x = -2 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"Dx" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "Dy" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2" }, /area/adminlevel/chinook/shuttle/unpowered) +"Dz" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "DC" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "DD" = ( /obj/structure/machinery/door_control{ @@ -8207,10 +7414,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "DH" = ( /obj/structure/bed/chair/comfy{ @@ -8219,10 +7423,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "DJ" = ( /turf/closed/shuttle/ert, @@ -8233,16 +7434,19 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/turf/open/floor/almayer/orange/west, +/area/adminlevel/chinook/engineering) +"DN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "DO" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "DP" = ( /obj/structure/prop/almayer/name_stencil{ @@ -8254,58 +7458,48 @@ "DR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) +"DS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/offices) "DT" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "DV" = ( /obj/structure/surface/rack, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "DY" = ( /obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer{ - icon_state = "emeraldfull" - }, +/turf/open/floor/almayer/emeraldfull, /area/adminlevel/chinook/shuttle) "DZ" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) +"Ea" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "Ed" = ( /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Eg" = ( /obj/structure/closet/coffin, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Eh" = ( /obj/structure/bed/chair/comfy{ @@ -8314,16 +7508,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "Ei" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ej" = ( /obj/structure/sign/safety/coffee{ @@ -8333,26 +7522,38 @@ pixel_x = -16; pixel_y = -12 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) +"Ek" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "El" = ( /obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) +"Em" = ( +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/offices) "En" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Eo" = ( /obj/structure/bed/chair/comfy{ @@ -8361,47 +7562,51 @@ /turf/open/floor/kutjevo/tan/alt_inner_edge, /area/adminlevel/chinook) "Ep" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"Eq" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/event) +"Es" = ( +/obj/structure/sign/poster{ + pixel_y = -32 }, +/turf/open/floor/almayer, /area/adminlevel/chinook) "Et" = ( -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/strata/faux_wood, /area/adminlevel/chinook/offices) "Ev" = ( /obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ew" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) +"Ex" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Ey" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/north, /area/adminlevel/chinook) "EA" = ( /obj/structure/sign/safety/reception{ pixel_x = -15 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "EB" = ( /obj/structure/surface/table/reinforced/black, @@ -8409,10 +7614,7 @@ dir = 8; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "ED" = ( /obj/structure/bed/sofa/south/grey/right, @@ -8422,10 +7624,18 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) "EE" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/almayer/emerald/east, /area/adminlevel/chinook/shuttle) +"EG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Men's Bathroom" + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) "EJ" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan/plate, @@ -8440,10 +7650,7 @@ /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/adminlevel/chinook/shuttle) "EQ" = ( /obj/item/reagent_container/food/snacks/meat{ @@ -8459,19 +7666,14 @@ pixel_y = 6 }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/space) +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "ET" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "EU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ @@ -8479,13 +7681,21 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/event) +"EV" = ( +/turf/open/floor/almayer/red/north, +/area/adminlevel/chinook) "EZ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) +"Fa" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/door/window/brigdoor/southright, +/turf/open/floor/almayer/redfull, +/area/adminlevel/chinook/offices) "Fb" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -8502,20 +7712,25 @@ /obj/structure/sign/safety/ammunition{ pixel_x = -16 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Ff" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fg" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, +/area/adminlevel/chinook) +"Fi" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "Fk" = ( /obj/structure/sign/ROsign{ @@ -8523,97 +7738,86 @@ name = "\improper Range Safety Guidelines"; pixel_y = -29 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) "Fl" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "Fm" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook) +"Fn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/offices) "Fq" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + pixel_y = 12 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "Fr" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"Ft" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "Fu" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Fv" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"Fx" = ( +/turf/closed/shuttle/elevator/gears, +/area/adminlevel/chinook/offices) "Fy" = ( /obj/structure/surface/table/almayer, /obj/item/tool/extinguisher, /obj/item/tool/extinguisher, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "Fz" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) -"FB" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/cargo) "FD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) "FE" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 }, -/area/adminlevel/chinook/sec) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "FF" = ( /obj/structure/sign/prop3{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "FG" = ( /obj/structure/surface/table/almayer, @@ -8624,17 +7828,19 @@ /area/adminlevel/chinook/sec) "FH" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"FK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "FL" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "FM" = ( /obj/structure/bed/stool, @@ -8647,9 +7853,7 @@ pixel_y = 5 }, /obj/item/storage/box/ids, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "FP" = ( /obj/structure/machinery/light, @@ -8657,10 +7861,8 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "FQ" = ( -/obj/structure/machinery/telecomms/hub/preset_cent, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/hub, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "FR" = ( /obj/structure/surface/table/almayer, @@ -8675,23 +7877,27 @@ /obj/item/folder/yellow{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "FU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/sliceable/pumpkinpie{ pixel_y = 6 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "FV" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 8 +/turf/open/floor/kutjevo/tan/alt_edge/west, +/area/adminlevel/chinook) +"FW" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2 + }, +/turf/open/floor/wood, /area/adminlevel/chinook) "FX" = ( /obj/structure/machinery/light{ @@ -8700,15 +7906,10 @@ /obj/structure/platform{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "FY" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_edge/east, /area/adminlevel/chinook) "FZ" = ( /obj/structure/sign/safety/medical{ @@ -8718,10 +7919,7 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ga" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -8730,30 +7928,25 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Gb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/west, /area/adminlevel/chinook/sec) +"Gc" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/adminlevel/chinook/cargo) "Gf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/drinkingglasses, /obj/item/reagent_container/food/snacks/sandwich{ pixel_y = 22 }, -/obj/item/ashtray/glass, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) "Gg" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gi" = ( /obj/structure/platform{ @@ -8762,10 +7955,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Gk" = ( /obj/structure/sign/safety/medical{ @@ -8779,10 +7969,11 @@ pixel_x = 24; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" +/obj/structure/sign/safety/security{ + pixel_x = -12; + pixel_y = 25 }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Go" = ( /turf/open/floor/plating/plating_catwalk, @@ -8791,27 +7982,24 @@ /obj/structure/sign/prop3{ pixel_y = 28 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gt" = ( /obj/structure/sign/safety/galley{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Gu" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" }, -/area/adminlevel/chinook/cargo) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "Gv" = ( /obj/structure/surface/rack, /obj/item/device/binoculars, @@ -8829,40 +8017,26 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook) "Gx" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Gz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/area/adminlevel/chinook/cargo) +/turf/open/floor/strata/faux_wood, +/area/adminlevel/chinook/offices) "GA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "GB" = ( /obj/structure/sign/safety/storage{ pixel_y = -28 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "GC" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -8872,29 +8046,25 @@ /area/adminlevel/chinook/sec) "GD" = ( /obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) +"GE" = ( +/obj/structure/largecrate/supply/medicine/blood, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "GF" = ( /obj/structure/sign/safety/conference_room{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "GG" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/kutjevo/tan/alt_edge, /area/adminlevel/chinook) "GH" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "Firing Range" }, /turf/open/floor/almayer, /area/adminlevel/chinook) @@ -8903,15 +8073,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "GJ" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "GK" = ( /obj/structure/surface/table/reinforced/black, @@ -8919,25 +8085,17 @@ /obj/item/paper{ pixel_x = -5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "GL" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "GM" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "GN" = ( /obj/structure/machinery/light{ @@ -8946,33 +8104,21 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "GP" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) "GQ" = ( /obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "GR" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "GS" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "GT" = ( /obj/structure/surface/table/almayer, @@ -8989,62 +8135,44 @@ pixel_y = 5 }, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "GV" = ( /obj/structure/sign/safety/coffee{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "GW" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "GX" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"GY" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/adminlevel/chinook) "Ha" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/adminlevel/chinook/engineering) "Hb" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/chinook/engineering) +"Hd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant/random, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "Hf" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Hg" = ( /obj/structure/sign/safety/airlock{ @@ -9054,10 +8182,6 @@ pixel_x = 12; pixel_y = -28 }, -/obj/structure/sign/safety/west{ - pixel_x = -12; - pixel_y = -28 - }, /obj/effect/decal/warning_stripes{ icon_state = "W" }, @@ -9067,38 +8191,26 @@ /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /obj/item/device/lightreplacer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Hj" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Hl" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/chinook/engineering) "Hm" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Hn" = ( -/obj/structure/machinery/power/fusion_engine, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ho" = ( /obj/effect/decal/warning_stripes{ @@ -9114,18 +8226,13 @@ /area/adminlevel/chinook) "Hr" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook/cargo) "Hs" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 4 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/east, /area/adminlevel/chinook) "Hu" = ( /obj/structure/bed/chair/comfy{ @@ -9148,21 +8255,33 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/item/tool/weldingtool{ +/obj/item/tool/weldingtool/largetank{ pixel_x = 14; pixel_y = -14 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "Hz" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" +/turf/open/floor/carpet, +/area/adminlevel/chinook/event) +"HA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"HC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "Freezer"; + req_access_txt = "30" + }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "HE" = ( /obj/structure/bed/chair/comfy{ @@ -9172,16 +8291,14 @@ /area/adminlevel/chinook) "HF" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "HG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) +/turf/open/floor/kutjevo, +/area/adminlevel/chinook/offices) "HH" = ( /obj/item/stack/sheet/metal/large_stack, /turf/open/floor/almayer, @@ -9197,12 +8314,34 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/sec) +"HK" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook/event) +"HL" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "HM" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "HN" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -9220,16 +8359,11 @@ pixel_x = 32; pixel_y = -8 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook) "HP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "HQ" = ( /obj/structure/largecrate/supply, @@ -9240,18 +8374,20 @@ /obj/structure/sign/safety/coffee{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "HR" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) +"HT" = ( +/turf/closed/shuttle/elevator{ + dir = 4 + }, +/area/adminlevel/chinook/offices) "HU" = ( /obj/structure/surface/table/almayer, /obj/item/roller{ @@ -9260,18 +8396,17 @@ /obj/item/roller{ pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "HV" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/engineering) +"HW" = ( +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "HX" = ( /obj/structure/machinery/light{ @@ -9293,31 +8428,33 @@ /turf/closed/wall/almayer/white, /area/adminlevel/chinook/medical) "Ib" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) -"Ie" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"Ic" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "chinookengilock"; + name = "Engineering Sector Lockdown" }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/engineering) +"Id" = ( +/turf/closed/wall/almayer/reinforced, +/area/adminlevel/chinook/cargo) +"Ie" = ( +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) +"If" = ( +/obj/structure/sign/safety/bathmens{ + pixel_y = -25 + }, +/turf/open/floor/almayer/blue, +/area/adminlevel/chinook/offices) "Ig" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/engineering) "Ih" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 10 - }, +/turf/open/floor/almayer/uscm/directional, /area/adminlevel/chinook/shuttle) -"Ii" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/chinook/cargo) "Ij" = ( /obj/structure/bed/chair{ dir = 4 @@ -9347,10 +8484,7 @@ name = "Execution Armory Lockdown"; pixel_y = 22 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Ip" = ( /obj/item/paper_bin/uscm{ @@ -9358,16 +8492,11 @@ }, /obj/item/tool/pen, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Iq" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Ir" = ( /obj/effect/decal/warning_stripes{ @@ -9377,20 +8506,14 @@ /area/adminlevel/chinook) "It" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "Iu" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer{ - icon_state = "plate" + name = "\improper Men's Bathroom" }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Iv" = ( /turf/closed/wall/almayer/white, @@ -9399,9 +8522,7 @@ /obj/structure/sink{ pixel_y = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ix" = ( /obj/structure/window/framed/almayer, @@ -9422,82 +8543,60 @@ /area/adminlevel/chinook/event) "IC" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/adminlevel/chinook/event) -"IE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "IF" = ( /obj/structure/bed/chair, /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "IJ" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "IK" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1" }, /area/adminlevel/chinook/shuttle/unpowered) +"IL" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook/event) "IM" = ( /obj/structure/bed/chair/comfy{ dir = 1; name = "witness chair" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "IP" = ( /obj/structure/closet/crate, /obj/item/storage/briefcase/inflatable, /obj/item/storage/briefcase/inflatable, +/obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "IQ" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "IR" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "IS" = ( /obj/structure/closet/firecloset, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "IT" = ( /obj/structure/bed/chair/comfy{ @@ -9506,28 +8605,38 @@ /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) "IW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "emerald" +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "chinookinnerairlock"; + name = "Chinook Interior Airlock" }, +/turf/open/floor/plating/almayer, /area/adminlevel/chinook/shuttle) "IX" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) -"Jc" = ( -/turf/open/floor/almayer_hull{ - dir = 9; - icon_state = "outerhull_dir" +"IY" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) +"IZ" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 5; + pixel_y = 4 }, +/turf/open/floor/kutjevo/tan/plate, +/area/adminlevel/chinook/event) +"Jc" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, /area/space) "Jd" = ( /obj/structure/machinery/light, @@ -9545,10 +8654,7 @@ pixel_x = -32; serial_number = 16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "Jg" = ( /obj/structure/bed/stool, @@ -9558,18 +8664,8 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook) -"Jl" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/cargo) "Jm" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/kutjevo/tan, @@ -9579,10 +8675,25 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" +/turf/open/floor/almayer/red/north, +/area/adminlevel/chinook) +"Jo" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "chinookofficelock"; + name = "Command Office Lockdown"; + dir = 4 }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) +"Jp" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) +"Jq" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Jr" = ( /obj/structure/machinery/door_control{ @@ -9596,67 +8707,72 @@ /area/adminlevel/chinook/sec) "Js" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "Ju" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/adminlevel/chinook/offices) +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "Jx" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Jy" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/obj/item/tool/weldingtool/largetank, +/obj/item/tool/weldingtool/largetank, +/obj/item/tool/weldingtool/largetank, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/chinook/medical) "Jz" = ( -/obj/structure/sign/safety/coffee{ - pixel_x = 12; - pixel_y = 25 - }, -/obj/structure/sign/safety/west{ - pixel_y = 25 - }, -/obj/structure/sign/safety/conference_room{ - pixel_x = 24; - pixel_y = 25 +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/chinook/medical) +"JA" = ( +/obj/structure/target{ + name = "punching bag" }, -/area/adminlevel/chinook/offices) +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "JB" = ( /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) +"JC" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/event) +"JD" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) +"JE" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "JG" = ( /obj/structure/surface/table/reinforced/black, /obj/item/storage/fancy/cigarettes/emeraldgreen, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"JH" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/chinook/medical) "JI" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -9667,14 +8783,31 @@ /area/adminlevel/chinook/cargo) "JJ" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "JK" = ( /turf/open/floor/kutjevo/tan, /area/adminlevel/chinook/event) +"JM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/offices) +"JN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Women's Bathroom" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "JO" = ( /obj/structure/surface/rack, /obj/item/device/lightreplacer, @@ -9682,45 +8815,50 @@ pixel_x = -9; pixel_y = 19 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "JR" = ( /turf/open/floor/kutjevo/tan/alt_edge, /area/adminlevel/chinook/event) +"JS" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "JU" = ( /obj/structure/platform_decoration, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "JV" = ( /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "JW" = ( /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "JX" = ( -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/adminlevel/chinook/event) -"Kb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" +"JY" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/area/adminlevel/chinook) +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Kd" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -9728,32 +8866,42 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ke" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook/cargo) +"Kf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "Ki" = ( /obj/structure/barricade/handrail/strata, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) +"Kj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Kl" = ( /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Km" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "Kn" = ( /obj/structure/machinery/light{ @@ -9771,15 +8919,10 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Kq" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Ks" = ( /obj/structure/sign/safety/north{ @@ -9793,31 +8936,31 @@ pixel_x = 32; pixel_y = -12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "Ku" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm{ + pixel_x = -4; pixel_y = 6 }, -/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_x = -5 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 8; + pixel_y = 10 + }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "Kv" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Kw" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Kx" = ( /obj/structure/surface/table/reinforced/black, @@ -9825,10 +8968,7 @@ dir = 1; pixel_y = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Ky" = ( /obj/structure/sign/safety/radio_rad{ @@ -9841,38 +8981,46 @@ pixel_x = -15; pixel_y = 5 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Kz" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "KD" = ( /obj/item/trash/cigbutt/cigarbutt, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"KE" = ( +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "KG" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/chinook/medical) +"KH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) +"KI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Misc Storage" }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "KJ" = ( -/obj/structure/closet/emcloset, +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) "KK" = ( /obj/structure/closet/crate, @@ -9883,61 +9031,73 @@ /obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "KM" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KN" = ( -/obj/structure/machinery/medical_pod/bodyscanner, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "KO" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KP" = ( -/obj/structure/bed/chair, /obj/structure/machinery/light{ dir = 1 }, +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "KT" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) -"KW" = ( -/turf/open/floor/almayer{ +"KV" = ( +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - icon_state = "green" + id = "chinookreq"; + name = "Requisitions Lockdown" }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) +"KW" = ( +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook/cargo) +"KX" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook/event) "KY" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "KZ" = ( /obj/structure/surface/table/reinforced/black, @@ -9948,10 +9108,7 @@ /obj/item/clothing/mask/cigarette{ pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "La" = ( /obj/structure/machinery/door/airlock/almayer/maint{ @@ -9959,14 +9116,10 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Lc" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Ld" = ( /obj/structure/surface/table/almayer, @@ -9977,18 +9130,13 @@ pixel_x = 7; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Le" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Lf" = ( /obj/structure/surface/rack, @@ -9997,35 +9145,36 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"Lg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/chinook/medical) "Li" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/shuttle) "Lj" = ( /obj/structure/machinery/cm_vending/sorted/medical, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "Lk" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Ll" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/spacecash/c200, /obj/structure/machinery/light{ dir = 4 }, +/obj/structure/machinery/door_control{ + id = "chinookreq"; + name = "Requisitions Lockdown"; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "Lm" = ( @@ -10042,15 +9191,22 @@ /area/adminlevel/chinook) "Lo" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"Lp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/golden_cup{ + name = "No. 1 Baller Award"; + desc = "A trophy given to the winner of the annual Baller competition. Such a competition has, in fact, nothing to do with basketball and is so elusive, nobody knows what it actually is or what winning it symbolizes. But at least it has a nice trophy." + }, +/turf/open/floor/almayer/ai_floors, +/area/adminlevel/chinook/offices) "Ls" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "Lu" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10073,6 +9229,14 @@ }, /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook) +"Lx" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/prop/tableflag/uscm{ + pixel_x = -9; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "Ly" = ( /obj/structure/machinery/light{ dir = 1 @@ -10103,11 +9267,15 @@ /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) +"LC" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "LD" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/kutjevo/plate, @@ -10131,10 +9299,7 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "LG" = ( /obj/structure/surface/table/almayer, @@ -10147,35 +9312,27 @@ /area/adminlevel/chinook/sec) "LH" = ( /obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "LI" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "LK" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "LN" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "LP" = ( /obj/structure/bed/chair/comfy{ @@ -10184,17 +9341,13 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "LQ" = ( /obj/structure/closet/crate, /obj/item/storage/backpack/marine, /obj/item/storage/backpack/marine, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "LR" = ( /obj/structure/surface/table/reinforced/black, @@ -10204,32 +9357,41 @@ /obj/item/device/flashlight/lamp/green{ pixel_y = 12 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"LS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "LT" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/event) "LU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/sign/safety/bathwomens{ + pixel_x = 32 }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "LV" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/event) +"LW" = ( +/turf/open/floor/almayer/blue, +/area/adminlevel/chinook) +"LX" = ( +/obj/structure/target{ + name = "punching bag" + }, +/obj/structure/sign/goldenplaque{ + pixel_y = 27 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "Mb" = ( /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) @@ -10242,35 +9404,23 @@ dir = 1 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Mg" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Mh" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Mi" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Mj" = ( /obj/structure/machinery/light{ @@ -10279,10 +9429,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Ml" = ( /obj/effect/decal/warning_stripes{ @@ -10291,11 +9438,18 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Mm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) +"Mn" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_y = 25 + }, +/obj/structure/sign/safety/biohazard{ + pixel_y = 25; + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "Mp" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "chinook4"; @@ -10305,23 +9459,8 @@ /area/space) "Mq" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) -"Mr" = ( -/obj/structure/machinery/door_control{ - id = "chinookcargo"; - name = "Shuttlebay Cargo Access"; - pixel_y = 25; - req_one_access_txt = "1;21" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/adminlevel/chinook/shuttle) "Ms" = ( /turf/closed/shuttle/ert{ icon_state = "stan5" @@ -10333,24 +9472,19 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Mv" = ( -/obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /obj/item/clothing/gloves/marine/insulated, +/obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "Mw" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Mx" = ( /obj/structure/machinery/door/airlock/almayer/secure{ @@ -10363,25 +9497,17 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) "Mz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/chinook/sec) "MA" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "MB" = ( /obj/effect/decal/cleanable/blood/oil, @@ -10394,39 +9520,48 @@ /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) +"MD" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) +"ME" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/book/manual/marine_law{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/folder/black, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) +"MF" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/adminlevel/chinook/offices) "MG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "MH" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "MI" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "MK" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "ML" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -10435,9 +9570,8 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "MN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Reception" +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Engineering" }, /obj/structure/machinery/door/poddoor/almayer/open{ id = "chinookengilock"; @@ -10445,32 +9579,28 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) +"MO" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) "MQ" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "MR" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "MS" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "MT" = ( -/turf/open/floor/kutjevo/tan/alt_edge{ - dir = 1 - }, +/turf/open/floor/kutjevo/tan/alt_edge/north, /area/adminlevel/chinook) "MU" = ( /obj/structure/window/framed/almayer, @@ -10478,38 +9608,30 @@ /area/adminlevel/chinook/event) "MV" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "MX" = ( /obj/structure/machinery/vending/cola, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"Nb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Nc" = ( /obj/structure/largecrate/supply/medicine/blood, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ne" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "Nf" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Ng" = ( /obj/structure/machinery/light, @@ -10524,10 +9646,7 @@ "Nk" = ( /obj/structure/machinery/light, /obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Nl" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -10537,46 +9656,30 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/shuttle) "Nm" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/chinook/cargo) "Nn" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 27 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "No" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Np" = ( -/obj/structure/cargo_container/arious/right{ - indestructible = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/cargo_container/seegson/right, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Nq" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Nr" = ( /obj/structure/bed/chair{ @@ -10588,31 +9691,21 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "Nt" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/large_stack, /obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cargo) "Nu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Nv" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/chinook/engineering) "Nw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10626,46 +9719,29 @@ pixel_y = 5 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Ny" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "Nz" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook/cryo) "NA" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "NC" = ( /obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "ND" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/sleep_console{ + dir = 8 }, -/area/space) +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/chinook/offices) "NE" = ( /obj/structure/machinery/door/airlock/almayer/security{ dir = 1; @@ -10681,9 +9757,7 @@ pixel_x = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "NJ" = ( /obj/structure/machinery/light{ @@ -10699,10 +9773,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "NN" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "NP" = ( /obj/structure/prop/almayer/name_stencil{ @@ -10712,9 +9783,7 @@ /turf/open/floor/almayer_hull, /area/space) "NQ" = ( -/turf/open/floor/kutjevo/colors/blue/edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/colors/blue/edge/west, /area/adminlevel/chinook) "NS" = ( /obj/structure/machinery/door/airlock/almayer/command{ @@ -10727,21 +9796,47 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) -"NW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network{ +"NU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/event) +"NV" = ( +/obj/structure/sink{ dir = 4; - network = list("almayer","vehicle") + pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) +"NW" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/light{ + dir = 8 }, -/area/adminlevel/chinook/sec) +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7; + pixel_x = -5 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) +"NX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) +"NZ" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/adminlevel/chinook/offices) "Ob" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Event Corridor" @@ -10751,76 +9846,41 @@ "Oc" = ( /obj/structure/closet/coffin, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Od" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) -"Oe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook) "Of" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; name = "\improper Lethal Injection Equipment" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Og" = ( /obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Oi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Oj" = ( /obj/structure/platform{ dir = 1 }, /obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "On" = ( /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Oq" = ( /obj/structure/bed/chair{ @@ -10828,6 +9888,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) +"Or" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "Os" = ( /obj/structure/surface/table/almayer, /obj/item/tool/crowbar{ @@ -10837,32 +9901,17 @@ pixel_x = 6; pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Ot" = ( /obj/structure/closet/secure_closet/medical_doctor, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) -"Ou" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook) "Ow" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Oy" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10870,17 +9919,12 @@ name = "Freezer"; req_access_txt = "30" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/event) "Oz" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "OA" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -10890,11 +9934,14 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "OB" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) +"OC" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_y = -25 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/chinook/engineering) "OD" = ( /obj/structure/sign/poster{ desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; @@ -10904,44 +9951,35 @@ pixel_y = 3; serial_number = 11 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "OE" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "OF" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/chinook) "OG" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OH" = ( /obj/structure/largecrate/random/case/double, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) +"OK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "OL" = ( /obj/structure/reagent_dispensers/watertank, @@ -10949,56 +9987,48 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OM" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "ON" = ( /obj/item/trash/burger{ pixel_x = -20 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/obj/structure/machinery/seed_extractor, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "OP" = ( /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "OR" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "OS" = ( -/obj/structure/machinery/computer/shuttle/ert/broken, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" +/obj/structure/prop/pred_flight{ + icon_state = "syndishuttle"; + name = "shuttle control console" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) +"OT" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/chinook) "OU" = ( -/obj/structure/sign/safety/reception{ +/obj/structure/sign/safety/debark_lounge{ pixel_x = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "OV" = ( /obj/structure/machinery/light{ @@ -11025,35 +10055,32 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "OY" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "OZ" = ( /obj/structure/platform, /obj/structure/barricade/handrail/strata{ - layer = 3.5 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + layer = 4.5 }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Pa" = ( /obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/emeraldgreen{ + pixel_y = 10 + }, +/obj/item/tool/lighter/zippo{ + pixel_x = 4; + pixel_y = 7 + }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/sec) "Pb" = ( /obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Pc" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -11064,30 +10091,29 @@ /area/adminlevel/chinook/cargo) "Pd" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) -"Pf" = ( -/turf/open/floor/kutjevo/colors/blue/edge{ +"Pe" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, +/turf/open/gm/river/pool, +/area/adminlevel/chinook) +"Pf" = ( +/turf/open/floor/kutjevo/colors/blue/edge/east, /area/adminlevel/chinook) +"Pg" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "Ph" = ( /obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook) "Pi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant/random, +/turf/open/floor/almayer, /area/adminlevel/chinook/offices) "Pj" = ( /obj/effect/decal/warning_stripes{ @@ -11096,16 +10122,12 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Pk" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" - }, +/turf/open/floor/solarpanel, /area/space) "Pl" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; - name = "\improper Bathroom" + name = "\improper Women's Bathroom" }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) @@ -11116,21 +10138,23 @@ pixel_y = 2 }, /obj/item/trash/uscm_mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"Po" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Pp" = ( /obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Pq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/west, /area/adminlevel/chinook/engineering) "Pr" = ( /obj/structure/surface/table/reinforced/black, @@ -11138,39 +10162,48 @@ pixel_x = -2; pixel_y = 3 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"Ps" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "Pt" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Pu" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "Pv" = ( /obj/item/storage/donut_box, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Pw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 +/obj/structure/machinery/door/airlock/multi_tile/elevator/access{ + desc = "An elevator hatch to take you to different levels of the station. This elevator seems to be disabled."; + name = "\improper Elevator Hatch" }, -/turf/open/floor/almayer, +/turf/open/floor/corsat/squares, /area/adminlevel/chinook/offices) +"Px" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/cargo) "Pz" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -11186,15 +10219,18 @@ dir = 8 }, /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "PB" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ name = "\improper Cargo Bay"; req_one_access_txt = "1;26" }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "chinookreq"; + name = "Requisitions Lockdown" + }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "PC" = ( @@ -11205,9 +10241,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "PE" = ( /obj/structure/machinery/light{ @@ -11218,31 +10252,23 @@ pixel_x = -3; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PG" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PI" = ( /obj/structure/machinery/sleep_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "PK" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /obj/item/reagent_container/glass/bucket/mopbucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "PL" = ( /obj/structure/machinery/door/poddoor/almayer{ @@ -11250,35 +10276,21 @@ id = "chinookairlock1"; name = "\improper Chinook Shuttle Airlock" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/shuttle/unpowered) "PM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/chinook) -"PO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/adminlevel/chinook/engineering) "PP" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/chinook) "PR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/toolbox/mechanical, /obj/item/circuitboard/apc, +/obj/item/stack/cable_coil{ + pixel_x = -8 + }, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "PT" = ( @@ -11286,18 +10298,8 @@ dir = 4; pixel_x = 11 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/chinook) -"PU" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat{ - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "PV" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -11308,6 +10310,12 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"PX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "PY" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ @@ -11317,9 +10325,7 @@ /obj/item/tool/soap{ pixel_x = -6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "PZ" = ( /obj/structure/surface/table/almayer, @@ -11327,9 +10333,7 @@ pixel_y = 10 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qa" = ( /obj/structure/surface/table/almayer, @@ -11342,23 +10346,16 @@ pixel_x = 3; pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qc" = ( /obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Qd" = ( /obj/structure/closet/crate/trashcart, /obj/item/storage/bag/trash, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qe" = ( /obj/structure/surface/table/almayer, @@ -11366,25 +10363,21 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "Qf" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) +"Qg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "Qh" = ( /obj/structure/largecrate/random, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/chinook/engineering) "Qi" = ( /obj/structure/closet, @@ -11394,9 +10387,7 @@ /obj/item/tool/soap, /obj/item/tool/soap, /obj/item/tool/soap, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Qk" = ( /turf/closed/shuttle/ert{ @@ -11404,16 +10395,11 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "Qm" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook/offices) "Qn" = ( /obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qp" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -11430,35 +10416,35 @@ "Qq" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qr" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qs" = ( -/obj/item/tool/pen, +/obj/item/tool/pen/fountain{ + pixel_x = 3; + pixel_y = -1 + }, /obj/item/paper_bin/uscm, /obj/structure/sign/prop1{ pixel_x = -32; pixel_y = 2 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, +/obj/item/tool/pen/fountain{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "Qt" = ( /obj/structure/sign/prop1{ pixel_y = 32 }, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "Qv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -11471,10 +10457,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "Qx" = ( /turf/closed/wall/almayer/outer, @@ -11482,33 +10465,47 @@ "Qy" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Qz" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) +"QA" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "QB" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/light{ + dir = 8 }, -/area/adminlevel/chinook/cargo) +/obj/item/paper_bin/uscm{ + pixel_y = 8; + pixel_x = 12 + }, +/obj/item/prop/tableflag/uscm{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/prop/tableflag/uscm2{ + pixel_y = 1; + pixel_x = 1 + }, +/obj/item/tool/pen/fountain{ + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "QD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "QE" = ( /obj/structure/bed/chair/comfy/black{ @@ -11518,18 +10515,13 @@ /area/adminlevel/chinook/sec) "QF" = ( /obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "QG" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -30 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "QH" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -11544,18 +10536,19 @@ pixel_y = 6 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"QJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/cargo) "QL" = ( /obj/structure/bed/chair/comfy/black{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "QO" = ( /obj/structure/closet/secure_closet{ @@ -11564,18 +10557,14 @@ }, /obj/effect/decal/cleanable/blood/oil/streak, /obj/item/weapon/gun/rifle/mar40, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "QP" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "QQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -11587,10 +10576,22 @@ "QR" = ( /obj/item/reagent_container/spray/cleaner, /obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) +"QS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "chinookofficelock"; + name = "Command Office Lockdown"; + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook/offices) "QT" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/plating/plating_catwalk, @@ -11599,11 +10600,27 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" +/turf/open/floor/almayer/green/east, +/area/adminlevel/chinook) +"QV" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) +"QW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) +"Rc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/event) "Rd" = ( /obj/structure/surface/table/reinforced/black, /obj/structure/machinery/computer/emails{ @@ -11611,24 +10628,20 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) -"Rf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "Ri" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuelCell, -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -22 }, -/area/adminlevel/chinook/engineering) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "Rj" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -11641,10 +10654,7 @@ pixel_x = 7; pixel_y = 10 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Rl" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -11659,30 +10669,34 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/kutjevo/tan/alt_inner_edge{ - dir = 8 - }, +/turf/open/floor/kutjevo/tan/alt_inner_edge/west, /area/adminlevel/chinook) +"Ro" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "Rp" = ( /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/cargo) "Rq" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) +"Rs" = ( +/obj/structure/sign/safety/bathwomens{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/chinook) "Rt" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/platform{ dir = 8 }, @@ -11694,55 +10708,54 @@ pixel_x = -15; pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Rw" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) "Rx" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) +"Ry" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/almayer/blue/west, +/area/adminlevel/chinook) "RA" = ( -/turf/closed/wall/almayer/outer{ - desc = "A heavily reinforced metal wall. Nothing gets through here."; - name = "ultra-reinforced hull" +/obj/structure/noticeboard{ + pixel_y = 27 }, -/area/adminlevel/chinook/engineering) +/obj/item/weapon/gun/rifle/sniper/XM43E1{ + pixel_y = 27 + }, +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) "RB" = ( /obj/structure/sign/safety/storage{ pixel_x = 13; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/chinook/sec) "RD" = ( -/obj/structure/machinery/power/fusion_engine, /obj/structure/machinery/light, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" +/obj/structure/prop/invuln/fusion_reactor, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/engineering) +"RE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) +"RF" = ( +/turf/open/floor/corsat/plate, +/area/adminlevel/chinook/cargo) "RH" = ( /obj/structure/toilet{ dir = 8 @@ -11750,15 +10763,10 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "RI" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/sec) "RJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "RK" = ( /obj/structure/surface/table/almayer, @@ -11767,10 +10775,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "RL" = ( /obj/structure/surface/table/reinforced/black, @@ -11779,16 +10784,10 @@ pixel_x = 1; pixel_y = -4 }, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) "RM" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "RN" = ( /obj/structure/window/framed/almayer, @@ -11798,32 +10797,31 @@ /obj/structure/machinery/photocopier, /turf/open/floor/kutjevo/tan/plate, /area/adminlevel/chinook/event) +"RP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook/medical) +"RQ" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/item/reagent_container/glass/bucket/mopbucket, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "RR" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "RS" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/offices) "RT" = ( /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "RU" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "RX" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -11832,97 +10830,65 @@ pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "RZ" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Sa" = ( /obj/structure/toilet{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Sc" = ( /obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Se" = ( -/obj/structure/closet/secure_closet/guncabinet/blue{ - name = "sidearm storage" - }, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/ammo_magazine/pistol, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, -/obj/item/weapon/gun/pistol/m4a3, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/closet/secure_closet/guncabinet/red{ + name = "provost armor rack" }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Sg" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) +"Sh" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook) "Si" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/offices) "Sj" = ( /obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Sk" = ( /obj/structure/bookcase{ icon_state = "book-5" }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Sl" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Sn" = ( /obj/structure/bed/chair{ @@ -11932,36 +10898,24 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "So" = ( -/obj/structure/machinery/telecomms/bus/preset_cent{ - autolinkers = list("chinook"); - freq_listening = list(1353,1357,1359,1355,1469,1471,1354,1342,1344,1235,1340,1214,1358,1356,1236,1240,1449,1451,1453,1455) - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/bus, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "Sr" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 28 }, /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ss" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Su" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Sv" = ( /obj/structure/machinery/light{ @@ -11973,24 +10927,18 @@ "Sw" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Sx" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Sy" = ( /obj/structure/surface/table/almayer, /obj/item/storage/fancy/cigarettes/lucky_strikes, /obj/item/tool/lighter, /obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Sz" = ( /turf/open/floor/kutjevo/plate, @@ -11999,10 +10947,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "SC" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -12012,43 +10957,30 @@ /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook) "SD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/chinook) "SE" = ( /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "SF" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/turf/open/floor/almayer/green/north, /area/adminlevel/chinook) "SH" = ( -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/offices) "SI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ pixel_y = 3 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/chinook) "SK" = ( /obj/structure/window/framed/almayer, @@ -12062,29 +10994,48 @@ "SL" = ( /turf/open/floor/kutjevo, /area/adminlevel/chinook/event) +"SM" = ( +/obj/structure/sign/ROsign, +/turf/closed/wall/almayer/reinforced, +/area/adminlevel/chinook) +"SN" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 32 + }, +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -12 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "SP" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook) "SQ" = ( -/obj/structure/machinery/telecomms/server/presets/centcomm, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/server, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "SR" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook/event) +"SS" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/chinook/event) "ST" = ( /obj/structure/largecrate/supply/supplies/water, /obj/item/reagent_container/spray/cleaner{ pixel_x = 10; pixel_y = -16 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "SU" = ( /obj/structure/surface/rack, @@ -12097,44 +11048,36 @@ /obj/item/storage/bag/plants{ pixel_y = -3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "SV" = ( -/obj/structure/platform{ - dir = 1 - }, +/obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "SX" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/chinook/engineering) +"SY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Ta" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Tb" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Td" = ( /obj/structure/window/framed/almayer, @@ -12143,24 +11086,24 @@ "Tf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) +"Tg" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/chinook/cargo) "Th" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Ti" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) +"Tj" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/adminlevel/chinook) "Tl" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -12171,20 +11114,14 @@ "To" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/medical) "Tp" = ( -/obj/structure/machinery/medical_pod/autodoc, /obj/structure/sign/safety/autodoc{ pixel_x = -16 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/chinook/sec) "Tq" = ( /obj/structure/machinery/light{ @@ -12192,80 +11129,77 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) +"Tr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/chinook) "Ts" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Tt" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Tu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Tx" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "TA" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "TC" = ( /obj/structure/closet/crate, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "TD" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "TE" = ( /obj/structure/machinery/door/airlock/almayer/secure{ name = "Telecommunications"; req_access_txt = "6" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "TG" = ( /obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper General, 3rd Fleet 2nd Battlegroup" + name = "Office of Col. Samantha Maverick" }, -/turf/open/floor/almayer, +/turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/offices) "TH" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plating_striped" +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/chinook/sec) +"TJ" = ( +/turf/open/floor/corsat/squares, +/area/adminlevel/chinook/offices) +"TK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = 32 }, +/turf/open/floor/wood, /area/adminlevel/chinook/sec) "TL" = ( /obj/structure/closet/crate, @@ -12273,15 +11207,13 @@ dir = 1 }, /obj/item/stack/sheet/mineral/uranium, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "TM" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "emerald" +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/turf/open/floor/almayer/emerald/southeast, /area/adminlevel/chinook/shuttle) "TO" = ( /obj/structure/machinery/light, @@ -12295,21 +11227,34 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "TP" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" +/obj/structure/machinery/light{ + dir = 4 }, -/area/space) +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/chinook/offices) "TQ" = ( /turf/open/floor/kutjevo/plate, /area/adminlevel/chinook/event) +"TT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Provost Offices" + }, +/turf/open/floor/almayer/red/north, +/area/adminlevel/chinook/sec) +"TU" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/snacks/monkeysdelight{ + pixel_y = 9; + desc = "Morbidly pickled and preserved as a conversation piece. Somehow, doesn't smell like anything." + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "TV" = ( /obj/structure/sign/safety/conference_room{ pixel_y = -24 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "TY" = ( /obj/structure/sink{ @@ -12319,17 +11264,11 @@ /obj/structure/mirror{ pixel_x = 28 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook) "TZ" = ( /obj/structure/flora/pottedplant/random, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "Ua" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -12355,9 +11294,7 @@ /obj/item/stack/sheet/metal{ amount = 50 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Ud" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -12365,43 +11302,27 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ue" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/chinook/medical) "Uf" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/obj/item/storage/surgical_tray, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "Ug" = ( /obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Uh" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Uj" = ( /obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, /obj/structure/machinery/door_control{ id = "chinookcargo"; name = "Shuttlebay Cargo Access"; @@ -12410,6 +11331,15 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) +"Uk" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "Ul" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ @@ -12422,26 +11352,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Up" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) -"Us" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/adminlevel/chinook) "Ut" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -12463,37 +11382,34 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Uu" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Uw" = ( /obj/structure/machinery/chem_master, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "Ux" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cryo) +"Uy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/silvercorner/west, +/area/adminlevel/chinook) "Uz" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UA" = ( /turf/closed/wall/almayer, @@ -12505,10 +11421,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/east, /area/adminlevel/chinook) "UD" = ( /obj/effect/decal/warning_stripes{ @@ -12517,16 +11430,10 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "UE" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "UF" = ( /obj/structure/machinery/light{ @@ -12535,25 +11442,17 @@ /obj/structure/surface/rack, /obj/item/device/flashlight, /obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "UH" = ( /obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "UI" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "UK" = ( /turf/closed/wall/almayer, @@ -12570,24 +11469,19 @@ /area/adminlevel/chinook) "UO" = ( /obj/structure/filingcabinet, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UQ" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/structure/machinery/light{ + dir = 1 }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/offices) "UR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/sentencing, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "UU" = ( /obj/structure/surface/rack, @@ -12603,9 +11497,7 @@ /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "UV" = ( /turf/closed/shuttle/ert{ @@ -12613,22 +11505,20 @@ }, /area/adminlevel/chinook/shuttle/unpowered) "UW" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" +/obj/structure/surface/table/reinforced/black, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 9; + pixel_x = -11 }, -/obj/item/ammo_magazine/rifle/l42a/abr40, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/item/device/flashlight/lamp{ + pixel_y = 12; + pixel_x = 3 }, -/area/adminlevel/chinook/sec) +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "UX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/chinook/medical) "UY" = ( /obj/vehicle/powerloader, @@ -12638,57 +11528,47 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "UZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Va" = ( /obj/structure/surface/rack, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "Vb" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "Vc" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/chinook/medical) +"Vd" = ( +/obj/structure/closet/crate{ + name = "prosthetics printer materials crate" }, +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/medical) "Ve" = ( /obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/chinook/offices) "Vg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/ash, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/west, /area/adminlevel/chinook/engineering) "Vh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -12716,14 +11596,16 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/offices) +"Vo" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/adminlevel/chinook/cargo) "Vq" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/cargo) "Vr" = ( -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "Vs" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -12736,104 +11618,95 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook/sec) +"Vt" = ( +/turf/open/floor/kutjevo/plate, +/area/adminlevel/chinook/offices) "Vu" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Vv" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Vw" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) +"Vx" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "Vz" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/west, /area/adminlevel/chinook) "VA" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/adminlevel/chinook/sec) "VB" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "VE" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "VH" = ( /obj/structure/target, -/turf/open/floor/strata{ - desc = "Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means."; - icon = 'icons/turf/floors/floors.dmi'; - icon_state = "wood" - }, +/turf/open/floor/wood, /area/adminlevel/chinook/offices) +"VI" = ( +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/chinook/sec) "VJ" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/chinook/sec) "VK" = ( -/obj/structure/machinery/telecomms/receiver/preset_cent{ - autolinkers = list("chinook"); - freq_listening = list(1353,1357,1359,1355,1469,1471,1354,1342,1344,1235,1340,1214,1358,1356,1236,1240,1449,1451,1453,1455); - listening_level = 9 - }, /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/receiver, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "VN" = ( /obj/item/smallDelivery{ pixel_x = -13; pixel_y = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) +"VO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/tableflag{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/prop/tableflag/uscm{ + pixel_y = 4 + }, +/obj/item/prop/tableflag/uscm2{ + pixel_y = 4; + pixel_x = 9 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) +"VP" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "VQ" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald, /area/adminlevel/chinook/shuttle) "VR" = ( /obj/structure/toilet{ @@ -12843,10 +11716,7 @@ pixel_x = -10; pixel_y = 13 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/chinook) "VS" = ( /obj/structure/sign/poster{ @@ -12858,28 +11728,34 @@ }, /turf/open/floor/almayer, /area/adminlevel/chinook) +"VT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/chinook) "VU" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; name = "\improper Post-Execution Equipment" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "VW" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/chinook/medical) "VY" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/offices) "Wb" = ( /obj/structure/surface/table/almayer, @@ -12889,19 +11765,29 @@ /obj/item/tool/pen{ pixel_y = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) -"Wd" = ( +"Wc" = ( /obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" + dir = 1 }, +/obj/structure/surface/table/reinforced/black, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, /turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) +/area/adminlevel/chinook) +"Wd" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/chinook) "Wf" = ( /turf/open/space, /area/space) @@ -12909,19 +11795,13 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Wi" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/chinook/shuttle) "Wl" = ( /obj/structure/closet/crate, @@ -12933,10 +11813,7 @@ dir = 4 }, /obj/structure/machinery/power/smes, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Wo" = ( /obj/structure/bed/chair/comfy/black{ @@ -12949,10 +11826,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook) "Wq" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Wr" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -12960,10 +11834,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Ws" = ( /obj/effect/decal/cleanable/cobweb{ @@ -12975,56 +11846,52 @@ /obj/structure/window/reinforced/ultra, /obj/structure/machinery/door/window/ultra{ dir = 8; - name = "M4RA execution rifles"; + name = "L42A execution rifles"; req_access_txt = "2;3;12;19" }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) -"Ww" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 +"Wt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/chinook/engineering) +"Wu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/chinook) +"Ww" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook) "Wx" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook) "Wy" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/chinook) "Wz" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/chinook) "WB" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/cryo) "WD" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "WE" = ( /obj/structure/surface/rack, @@ -13044,9 +11911,7 @@ pixel_y = -2 }, /obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "WF" = ( /turf/closed/wall/almayer, @@ -13056,17 +11921,13 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "WI" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv, /obj/item/storage/firstaid/adv, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "WJ" = ( /obj/structure/surface/table/almayer, @@ -13075,52 +11936,47 @@ pixel_y = 5 }, /obj/item/storage/box/masks, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/sec) "WK" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WL" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/adminlevel/chinook/engineering) +"WM" = ( +/obj/structure/closet, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/tool/soap, +/obj/item/tool/soap, +/obj/item/tool/soap, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/offices) "WN" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "WO" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WP" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WQ" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "WS" = ( /obj/structure/machinery/floodlight, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "WT" = ( /obj/structure/surface/table/almayer, @@ -13129,22 +11985,15 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/device/healthanalyzer, /obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/chinook/medical) "WU" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/binoculars, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/event) "WV" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/chinook/cargo) "WW" = ( /obj/structure/surface/table/almayer, @@ -13158,16 +12007,10 @@ /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "WY" = ( -/turf/open/floor/almayer_hull{ - dir = 6; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, /area/space) "Xa" = ( /obj/structure/surface/table/reinforced/black, @@ -13175,16 +12018,11 @@ pixel_x = 6; pixel_y = 12 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Xc" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/engineering) "Xd" = ( /obj/structure/sign/safety/high_voltage{ @@ -13195,17 +12033,15 @@ pixel_x = -15; pixel_y = -7 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/chinook/engineering) "Xe" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/closet/secure_closet/personal, +/obj/structure/sign/poster{ + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/adminlevel/chinook/engineering) +/area/adminlevel/chinook) "Xf" = ( /obj/structure/machinery/door/poddoor/almayer{ id = "chinook_tcomms"; @@ -13220,10 +12056,7 @@ /area/adminlevel/chinook/engineering) "Xg" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/north, /area/adminlevel/chinook) "Xh" = ( /obj/structure/machinery/computer/card{ @@ -13231,35 +12064,23 @@ }, /obj/structure/machinery/light, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Xi" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/north, /area/adminlevel/chinook/shuttle) "Xj" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Xk" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/northeast, /area/adminlevel/chinook) "Xl" = ( /turf/open/floor/plating, @@ -13290,26 +12111,19 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Xq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "Xs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, /obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/chinook/sec) "Xu" = ( /obj/structure/toilet{ @@ -13318,72 +12132,42 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "Xv" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "Xw" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, +/turf/open/floor/almayer/silvercorner/east, /area/adminlevel/chinook) "Xx" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/chinook/offices) "Xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) -"XB" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "XC" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/cargo) "XE" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "XH" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/chinook/engineering) "XI" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, +/turf/open/floor/almayer/bluecorner, /area/adminlevel/chinook/offices) "XJ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Reactor Bay" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/adminlevel/chinook/engineering) +/obj/structure/largecrate/supply/medicine/optable, +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook/medical) "XK" = ( /obj/vehicle/powerloader, /obj/structure/platform{ @@ -13393,28 +12177,15 @@ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/chinook/cargo) "XL" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) -"XM" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/backpack/marine{ - pixel_y = 8 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer, -/area/adminlevel/chinook/cargo) "XN" = ( /obj/structure/surface/table/reinforced/black, /obj/item/paper{ @@ -13425,10 +12196,7 @@ pixel_x = -4; pixel_y = 6 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "XO" = ( /obj/structure/sign/poster{ @@ -13438,25 +12206,16 @@ pixel_x = 27; serial_number = 11 }, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Reactor Bay" - }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer/orange/east, /area/adminlevel/chinook/engineering) "XP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Observation Lounge" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook) "XQ" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southeast, /area/adminlevel/chinook/cryo) "XR" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13477,9 +12236,7 @@ pixel_x = 12; pixel_y = -26 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "XU" = ( /obj/structure/machinery/door_control{ @@ -13488,34 +12245,28 @@ pixel_y = -25; req_one_access_txt = "2;3;12;19" }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) +"XW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/east, +/area/adminlevel/chinook) "XZ" = ( /obj/structure/machinery/chem_dispenser, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Ya" = ( -/obj/structure/machinery/light{ - dir = 4 - }, /obj/effect/decal/warning_stripes{ icon_state = "NE-out" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "Yb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "Yc" = ( /turf/closed/wall/almayer/outer, @@ -13536,10 +12287,7 @@ icon_state = "E" }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Yf" = ( /obj/structure/sign/safety/press_area_ag{ @@ -13557,34 +12305,20 @@ dir = 1; name = "\improper EVA Storage" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Yh" = ( /obj/structure/surface/table/reinforced/black, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 7 - }, /obj/item/reagent_container/food/snacks/monkeyburger{ pixel_x = -5; pixel_y = 5 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook) "Yi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/spawner/random/tool, -/obj/item/fuelCell{ - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "Yj" = ( /turf/open/floor/almayer, @@ -13593,47 +12327,39 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/cargo) "Ym" = ( /obj/structure/machinery/computer/crew, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/chinook/medical) +"Yn" = ( +/turf/closed/shuttle/elevator/gears, +/area/adminlevel/chinook/cargo) "Yo" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/fancy/egg_box{ pixel_y = 9 }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/chinook/event) +"Yp" = ( +/turf/open/floor/almayer/red/west, +/area/adminlevel/chinook/sec) "Yq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Male Locker Room" }, -/area/adminlevel/chinook/shuttle) +/turf/open/floor/almayer/plate, +/area/adminlevel/chinook) "Yr" = ( -/turf/open/floor/almayer_hull{ - dir = 5; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, /area/space) "Ys" = ( /turf/closed/wall/almayer/reinforced, /area/adminlevel/chinook) "Yt" = ( -/turf/open/floor/almayer_hull{ - dir = 8; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/west, /area/space) "Yu" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -13642,25 +12368,14 @@ /obj/item/clothing/head/welding{ pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) -"Yw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, -/area/adminlevel/chinook/medical) "Yx" = ( /obj/structure/machinery/smartfridge/chemistry, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "Yy" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13672,10 +12387,7 @@ id = "chinook_solitary1"; name = "Solitary Cell 1 Shutters" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/sec) "Yz" = ( /obj/structure/machinery/light{ @@ -13691,18 +12403,13 @@ /obj/structure/sign/poster{ pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/engineering) "YB" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/sec) "YC" = ( /turf/closed/wall/almayer/reinforced, @@ -13712,9 +12419,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "YF" = ( /obj/structure/prop/almayer/name_stencil{ @@ -13726,9 +12431,7 @@ "YG" = ( /obj/structure/closet/radiation, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "YH" = ( /obj/structure/curtain/red, @@ -13741,23 +12444,17 @@ /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YK" = ( /obj/structure/sign/poster{ pixel_y = 32 }, /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YL" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/chinook/sec) "YM" = ( /obj/structure/barricade/handrail/strata, @@ -13765,9 +12462,7 @@ /area/adminlevel/chinook/cargo) "YN" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, +/turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/cryo) "YO" = ( /obj/structure/machinery/vending/cola, @@ -13779,10 +12474,7 @@ /area/adminlevel/chinook/medical) "YQ" = ( /obj/structure/machinery/disposal, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/chinook/sec) "YR" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -13790,44 +12482,27 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "YS" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/chinook/sec) "YT" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) "YU" = ( -/obj/structure/machinery/telecomms/allinone{ - autolinkers = list("chinook"); - freq_listening = list(1353,1357,1359,1355,1469,1471,1354,1342,1344,1235,1340,1214,1358,1356,1236,1240,1449,1451,1453,1455); - listening_level = 9; - name = "Chinook Telecommunications Mainframe" - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, +/obj/structure/machinery/telecomms/allinone, +/turf/open/floor/almayer/tcomms, /area/adminlevel/chinook/engineering) "YV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, +/turf/open/floor/almayer/silver/southwest, /area/adminlevel/chinook) "YX" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13841,16 +12516,11 @@ dir = 1; name = "\improper Provost Offices" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "YZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Za" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -13864,47 +12534,60 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Zc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ id = "medcryobeds"; id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; + name = "Medical Equipment Room"; req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) +"Zd" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/device/flashlight/lamp{ + pixel_y = 5; + pixel_x = -8 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 8; + pixel_x = 5 + }, +/obj/item/tool/pen/fountain{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/adminlevel/chinook/offices) "Zf" = ( /obj/structure/sign/poster{ pixel_y = -32 }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook/cryo) "Zg" = ( /obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 10 + }, /obj/item/reagent_container/glass/beaker/cryoxadone, /obj/structure/sign/nosmoking_1{ pixel_y = 30 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "Zh" = ( /obj/structure/surface/table/reinforced/black, /obj/item/folder/black, -/turf/open/floor/almayer, +/obj/item/prop/tableflag{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/kutjevo, /area/adminlevel/chinook/offices) "Zi" = ( /turf/open/floor/plating/plating_catwalk, @@ -13915,23 +12598,15 @@ /obj/structure/machinery/computer/card{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Zk" = ( -/turf/open/floor/almayer{ - desc = "There's a hatch above it, presumably to allow pods to drop in."; - icon_state = "test_floor4"; - name = "pod landing floor" - }, +/turf/open/floor/almayer/pod_landing_floor, /area/adminlevel/chinook) "Zl" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/chinook/sec) "Zm" = ( /obj/structure/machinery/light{ @@ -13942,121 +12617,86 @@ "Zn" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey, /obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/sec) "Zo" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Zp" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; name = "\improper Airlock" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Zq" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/chinook/medical) "Zr" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "Zs" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "Zt" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/chinook/shuttle/unpowered) "Zu" = ( -/turf/open/floor/almayer_hull{ - dir = 1; - icon_state = "outerhull_dir" - }, +/turf/open/floor/almayer_hull/outerhull_dir/north, /area/space) "Zv" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/adminlevel/chinook/shuttle) "Zw" = ( /obj/structure/closet/secure_closet/military_police, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/chinook/sec) "Zx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "Zy" = ( /obj/structure/surface/table/reinforced/black, /obj/item/device/flashlight/lamp/green, -/turf/open/floor/carpet{ - desc = "Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft."; - name = "\improper carpet" - }, +/turf/open/floor/carpet, /area/adminlevel/chinook/offices) "Zz" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/chinook/engineering) "ZA" = ( /obj/structure/sign/safety/suit_storage{ pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "ZB" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/adminlevel/chinook/engineering) "ZE" = ( /obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/chinook/medical) +"ZF" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/commander, +/turf/open/floor/wood, +/area/adminlevel/chinook/offices) "ZH" = ( /obj/structure/machinery/power/port_gen/pacman, -/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool/largetank, /obj/structure/sign/safety/high_voltage{ pixel_y = 25 }, @@ -14064,45 +12704,31 @@ pixel_x = 12; pixel_y = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ZI" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, +/turf/open/floor/almayer/silver, /area/adminlevel/chinook) "ZJ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/chinook/sec) "ZK" = ( /obj/structure/machinery/cryo_cell, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/chinook/medical) "ZL" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/chinook/engineering) "ZM" = ( /obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) "ZN" = ( /obj/effect/decal/warning_stripes{ @@ -14112,47 +12738,39 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/chinook/engineering) +"ZO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green/north, +/area/adminlevel/chinook/event) "ZP" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/chinook/sec) "ZQ" = ( /turf/open/floor/almayer, /area/adminlevel/chinook/sec) "ZR" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/chinook/medical) "ZS" = ( /obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/chinook/offices) "ZT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" }, /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, +/turf/open/floor/almayer/plating_striped/east, /area/adminlevel/chinook/engineering) "ZV" = ( -/turf/open/floor/almayer/uscm/directional{ - dir = 8; - icon_state = "logo_c" - }, +/turf/open/floor/almayer/uscm/directional/east, /area/adminlevel/chinook/shuttle) "ZW" = ( /obj/structure/surface/table/almayer, @@ -14163,6 +12781,9 @@ pixel_x = 6; pixel_y = 4 }, +/obj/item/stack/cable_coil{ + pixel_x = -8 + }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/chinook/engineering) "ZX" = ( @@ -14170,9 +12791,7 @@ /turf/open/floor/almayer, /area/adminlevel/chinook/engineering) "ZY" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/chinook/sec) "ZZ" = ( /turf/open/floor/almayer, @@ -14381,34 +13000,10 @@ oi oi oi oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai oi oi oi oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai oi oi oi @@ -14431,8 +13026,6 @@ oi oi oi oi -"} -(3,1,1) = {" oi oi oi @@ -14457,6 +13050,8 @@ oi oi oi oi +"} +(3,1,1) = {" oi oi oi @@ -14508,34 +13103,10 @@ oi oi oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi oi oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi oi oi @@ -14558,8 +13129,6 @@ oi oi oi oi -"} -(4,1,1) = {" oi oi oi @@ -14608,6 +13177,8 @@ oi oi oi oi +"} +(4,1,1) = {" oi oi oi @@ -14635,34 +13206,6 @@ oi oi oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi oi oi @@ -14685,8 +13228,6 @@ oi oi oi oi -"} -(5,1,1) = {" oi oi oi @@ -14762,34 +13303,10 @@ oi oi oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi -Zu -af +"} +(5,1,1) = {" oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi oi oi @@ -14812,8 +13329,6 @@ oi oi oi oi -"} -(6,1,1) = {" oi oi oi @@ -14889,34 +13404,7 @@ oi oi oi oi -Yr -au -au -au -au -au -au -au -au -au -au -WY -oi -Zu -af oi -Yr -au -au -au -au -au -au -au -au -au -au -WY oi oi oi @@ -14939,12 +13427,12 @@ oi oi oi oi -"} -(7,1,1) = {" oi oi oi oi +"} +(6,1,1) = {" oi oi oi @@ -15028,10 +13516,23 @@ oi oi oi oi +Jc +Yt +Yt +Yt +ai oi -Zu -af +Jc +Yt +Yt +Yt +ai oi +Jc +Yt +Yt +Yt +ai oi oi oi @@ -15057,6 +13558,8 @@ oi oi oi oi +"} +(7,1,1) = {" oi oi oi @@ -15066,8 +13569,6 @@ oi oi oi oi -"} -(8,1,1) = {" oi oi oi @@ -15142,35 +13643,26 @@ oi oi oi oi +Zu +Pk +Pk +Pk +af oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +Zu +Pk +Pk +Pk +af oi Zu +Pk +Pk +Pk af oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +oi +oi oi oi oi @@ -15194,7 +13686,15 @@ oi oi oi "} -(9,1,1) = {" +(8,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi oi oi oi @@ -15274,26 +13774,15 @@ Zu Pk Pk Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu af oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -15320,25 +13809,11 @@ oi oi oi oi -"} -(10,1,1) = {" -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi +"} +(9,1,1) = {" oi oi oi @@ -15394,6 +13869,31 @@ oi oi oi oi +Jc +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +ai oi oi oi @@ -15401,26 +13901,15 @@ Zu Pk Pk Pk +af +oi +Zu Pk Pk Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -15447,11 +13936,11 @@ oi oi oi oi -"} -(11,1,1) = {" oi oi oi +"} +(10,1,1) = {" oi oi oi @@ -15496,24 +13985,6 @@ oi oi oi oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai oi oi oi @@ -15524,30 +13995,48 @@ oi oi oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi Zu +al +al +SP +fu +fu +fu +SP +SP +fu +fu +fu +SP +SP +fu +fu +SP +SP +fu +fu +fu +SP +SP +SP af oi +oi +oi Zu Pk Pk Pk +af +oi +Zu Pk Pk Pk -Pk +af +oi +Zu Pk Pk Pk @@ -15574,8 +14063,11 @@ oi oi oi oi +oi +oi +oi "} -(12,1,1) = {" +(11,1,1) = {" oi oi oi @@ -15623,62 +14115,62 @@ oi oi oi oi -Zu -al -al -al -al -al -al -al -al -al -al -al -al -al +Jc +Yt +Yt +Yt +Yt +Yt +Yt +Yt al al al +SP +Wq +qZ +ZI +Tl +PX +ZZ +ek +gK +gK +bi +gK +gK +gK +gK +gK +gK +gK +gK +ZZ +SP af oi oi oi +Zu +Pk +Pk +Pk +af oi -oi -oi -oi -oi -oi -oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +Zu +Pk +Pk +Pk +af oi Zu +Pk +Pk +Pk af oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +oi +oi oi oi oi @@ -15702,7 +14194,7 @@ oi oi oi "} -(13,1,1) = {" +(12,1,1) = {" oi oi oi @@ -15752,27 +14244,57 @@ oi oi Zu al -SP -SP -SP -SP -SP -SP -SP -SP -SP -SP al al al al al +al +al +al +al +SP +Wq +qZ +ZZ +ow +lO +ZZ +CF +xq +wX +wX +wX +wX +wX +wX +wX +wX +wX +to +bY +fu af oi oi oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi oi oi @@ -15791,8 +14313,6 @@ oi oi oi oi -Zu -af oi oi oi @@ -15800,6 +14320,8 @@ oi oi oi oi +"} +(13,1,1) = {" oi oi oi @@ -15828,8 +14350,6 @@ oi oi oi oi -"} -(14,1,1) = {" oi oi oi @@ -15849,8 +14369,59 @@ oi oi oi oi +Zu +al +SP +SP +SP +SP +SP +SP +SP +SP +SP +SP +Wq +qZ +ZZ +ZZ +lO +ZZ +CF +pv +pX +pX +pX +pX +pX +pX +BJ +pX +pX +nk +bY +fu +af +oi +oi +oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi oi oi @@ -15876,25 +14447,23 @@ oi oi oi oi +"} +(14,1,1) = {" +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi oi -Zu -al -SP -pk -uz -wl -wl -ah -AP -ah -ah -SP -al -al -al -al -al -af oi oi oi @@ -15916,18 +14485,6 @@ Yt Yt Yt Yt -ai -oi -Zu -af -oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt Yt Yt Yt @@ -15939,11 +14496,59 @@ oi oi oi oi +Zu +al +SP +pk +uz +wl +wl +ah +AP +ah +ah +SP +Wq +qZ +ZZ +Tl +lO +qZ +qv +Pe +pX +pX +pX +pX +pX +pX +pX +pX +pX +nk +bY +fu +af oi oi oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi oi oi @@ -15955,12 +14560,6 @@ oi oi oi oi -"} -(15,1,1) = {" -oi -oi -oi -oi oi oi oi @@ -15975,6 +14574,8 @@ oi oi oi oi +"} +(15,1,1) = {" oi oi oi @@ -15997,7 +14598,25 @@ oi oi oi oi -Jc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Xm +Xm +Xm +Yc +Yc +Yc +Yc +Yc +Yc +Yc +al +al Yt Yt Yt @@ -16016,46 +14635,43 @@ ag ag EZ SP -al -al -al -al -al +Wq +qZ +ZZ +Tl +lO +qZ +Ep +mC +pX +pX +pX +pX +qu +pX +pX +pX +pX +nk +bY +SP af oi oi oi -oi -oi -oi -oi -oi -oi -oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu af oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -16082,26 +14698,11 @@ oi oi oi oi -"} -(16,1,1) = {" -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi +"} +(16,1,1) = {" oi oi oi @@ -16124,7 +14725,25 @@ oi oi oi oi -Zu +Yc +NZ +AD +AD +AD +qd +jF +sr +vl +Xx +jF +NZ +AD +AD +AD +qd +Yc +al +al al al al @@ -16143,46 +14762,43 @@ ag ag vn SP -al -al -al -al -al +Wq +qZ +ZZ +ow +lO +ZZ +CF +pv +pX +BJ +pX +pX +pX +pX +pX +pX +pX +nk +fL +SP af oi oi oi -oi -oi -oi -oi -oi -oi -oi Zu Pk Pk Pk +af +oi +Zu Pk Pk Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -16209,26 +14825,11 @@ oi oi oi oi -"} -(17,1,1) = {" -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi +"} +(17,1,1) = {" oi oi oi @@ -16251,74 +14852,84 @@ oi oi oi oi -Zu +Yc +Fx +DS +TJ +DS +Fx +jF +eu +Zi +eN +jF +Fx +DS +TJ +DS +Fx +Yc +al +al al SP -vD -vD -vD -vD -vD -vD -vD +Ys +Ys +Ys +Ys +Ys +Ys +Ys fu uD -vD -vD -vD -vD +Ys +Ys +Ys +Ys uD -vD -SP -SP -SP -SP +Ys +SP +Wq +qZ +ZZ +ZZ +lO +ZZ +CF +xf +eO +eO +eO +eO +eO +eO +mC +gM +eO +mD +bY SP -al -al -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai -oi -oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu -af -oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk af oi oi oi +Yr +au +al +au +WY oi +Yr +au +al +au +WY oi +Yr +au +al +au +WY oi oi oi @@ -16336,18 +14947,6 @@ oi oi oi oi -"} -(18,1,1) = {" -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi @@ -16356,6 +14955,8 @@ oi oi oi oi +"} +(18,1,1) = {" oi oi oi @@ -16378,7 +14979,25 @@ oi oi oi oi -Zu +Yc +HT +TJ +TJ +TJ +Pw +Pw +sr +Zi +vl +Pw +Pw +TJ +TJ +TJ +HT +Yc +al +al al SP mn @@ -16400,60 +15019,42 @@ fu Wq qZ ZI -SP -al -al -al -al -al -al -al -al -al +Tl +lO +Tr +Tj +Vb +Vb +Vb +oG +Vb +Vb +gj +HA +eq +Ry +Vb +ZZ +fu af oi oi -Yr -au -au -au -au -au -au -au -au -au -au -WY -oi -Zu -af -oi -Yr -au -au -au -au -au -au -au -au -au -au -WY oi oi oi +al oi oi oi oi oi +al oi oi oi oi oi +al oi oi oi @@ -16463,8 +15064,6 @@ oi oi oi oi -"} -(19,1,1) = {" oi oi oi @@ -16483,6 +15082,8 @@ oi oi oi oi +"} +(19,1,1) = {" oi oi oi @@ -16505,7 +15106,25 @@ oi oi oi oi -Zu +Yc +HT +TJ +TJ +TJ +TJ +TJ +sr +Zi +vl +TJ +TJ +TJ +TJ +TJ +HT +Yc +al +al al SP mo @@ -16527,42 +15146,42 @@ fu Wq qZ Xv -SP -SP -fu -fu -fu -fu +WF +WF +WF +Tl +Tl +Tl +Tl +WF +WF +ZZ +ZZ +qZ +qZ +ZZ +ZZ +ZZ fu -SP -SP al -af -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -af -oi -oi -oi -oi -oi -oi -oi -oi +Yt +Yt +Yt +Yt +Yt +al +Yt +Yt +Yt +Yt +Yt +al +Yt +Yt +Yt +Yt +Yt +al oi oi oi @@ -16614,25 +15233,25 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu +Yc +HT +TJ +TJ +TJ +TJ +TJ +sr +Zi +vl +TJ +TJ +TJ +TJ +TJ +HT +Yc +al +al al SP mv @@ -16651,63 +15270,45 @@ Be ZZ Fg Ys -Wq +lz qZ ZI -lO -SP +WF OE wz +wz vA oM sZ vJ -SP -al -af -oi -oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai -oi -Zu -af -oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi +WF +cT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +fu +al +au +au +au +au +au +al +au +au +au +au +au +al +au +au +au +au +au +al oi oi oi @@ -16717,8 +15318,6 @@ oi oi oi oi -"} -(21,1,1) = {" oi oi oi @@ -16737,6 +15336,8 @@ oi oi oi oi +"} +(21,1,1) = {" oi oi oi @@ -16759,7 +15360,25 @@ oi oi oi oi -Zu +Yc +HT +TJ +TJ +TJ +TJ +TJ +sr +Zi +vl +TJ +TJ +TJ +TJ +TJ +HT +Yc +al +al al SP ZZ @@ -16772,8 +15391,8 @@ ZZ ZZ qZ UN -WF -Oe +Ys +yR Be ZZ Ff @@ -16781,62 +15400,42 @@ GH ZZ ZZ ZI -Sx Tl qb wz +wz OY OY OY wz -fu -al -af -oi -oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu -af -oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk +ow +qZ +lO +qZ +qZ +lO +qZ +lO +SP af oi oi oi oi oi +al oi oi oi oi oi +al oi oi oi oi oi +al oi oi oi @@ -16844,10 +15443,6 @@ oi oi oi oi -"} -(22,1,1) = {" -oi -oi oi oi oi @@ -16868,6 +15463,8 @@ oi oi oi oi +"} +(22,1,1) = {" oi oi oi @@ -16886,7 +15483,29 @@ oi oi oi oi -Zu +Jc +Yt +Yt +Yt +Yc +Fx +Fn +TJ +Fn +Fx +jF +eu +Zi +eN +jF +Fx +Fn +TJ +Fn +Fx +Yc +al +al al SP ZZ @@ -16899,61 +15518,53 @@ ZZ ZZ qZ ZZ -WF +Ys yV Be ZZ Ff -GH +ZZ ZZ ZZ ZI -Sx Tl -Wx +fA +wz wz Ow Ow OY wz -fu -al -af -oi -oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk +ZZ +qZ +lO +qZ +qZ +lO +qZ +KY +SP af oi oi oi +Jc +Yt +al +Yt +ai oi +Jc +Yt +al +Yt +ai oi +Jc +Yt +al +Yt +ai oi oi oi @@ -16971,22 +15582,6 @@ oi oi oi oi -"} -(23,1,1) = {" -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi @@ -16995,6 +15590,8 @@ oi oi oi oi +"} +(23,1,1) = {" oi oi oi @@ -17015,6 +15612,28 @@ oi oi Zu al +al +al +Yc +MF +AD +AD +AD +rp +jF +sr +Zi +Xx +jF +MF +AD +AD +AD +rp +Yc +al +al +al SP mn mn @@ -17035,43 +15654,40 @@ Ys Wq qZ ZI -KJ Tl -Ou +Wx wz +wV wB Yh -OY +gw wz fu -al +rK +ZZ +ZZ +Tr +ZZ +ZZ +Jp +SP af oi oi +oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu af oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -17098,12 +15714,11 @@ oi oi oi oi -"} -(24,1,1) = {" -oi oi oi oi +"} +(24,1,1) = {" oi oi oi @@ -17118,30 +15733,34 @@ oi oi oi oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai oi oi oi oi Zu al +al +Yc +Yc +jF +jF +jF +jF +jF +jF +sr +Zi +Xx +jF +jF +jF +jF +jF +Yc +Yc +al +al +al SP mo mo @@ -17163,46 +15782,46 @@ Wq qZ ZI WF -WF VE wz -RZ -RZ -OY -zd +wV +vt +Sh +gw +wz fu -al +WF +Yq +WF +WF +WF +mZ +WF +SP af oi oi -Yr -au -au -au -au -au -au -au -au -au -au -WY oi Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk af oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +oi +oi oi oi oi @@ -17248,27 +15867,27 @@ oi Zu al al +Yc +aE +xY +Ck +Gz +HG +Ci +jF +sL +vl +Xx +jF +IY +RQ +HL +oy +Yc al al al al -al -al -al -al -al -al -al -al -al -al -af -oi -oi -oi -oi -Zu -al SP mv mv @@ -17293,40 +15912,40 @@ KM XP wz wz +RZ +RZ OY -OY -OY -tw -fu -al +wz +WF +AY +lO +dK +WF +AY +lO +dK +SP af oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi Zu +Pk +Pk +Pk af oi +Zu +Pk +Pk +Pk +af oi -oi -oi -oi -oi -oi -oi -oi -oi +Zu +Pk +Pk +Pk +af oi oi oi @@ -17376,39 +15995,39 @@ Zu al al Yc +iF +xY +Ck +Gz +Em +dl +jF +sr +Zi +vl +cY +vl +Zi +Zi +Uk Yc -Yc -Yc -Yc -Yc -Yc -Yc -al -al al al al al -af -oi -oi -oi -oi -Zu -al Yc -xi -xi -xi -xi -xi -xi -xi +YC +YC +YC +YC +YC +YC +YC Xm Xm -xi -xi -jF +YC +YC +YC Xm Dt YC @@ -17423,40 +16042,40 @@ wz OY OY OY -Ep -fu -al +lS +WF +Xe +qZ +dK +WF +dK +lO +dK +SP af oi oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai oi Zu +Pk +Pk +Pk af oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af +oi +oi +oi oi oi oi @@ -17503,31 +16122,31 @@ Zu al al Yc -aE Et Et Et -Pw -dl +Et +Em +ME +jF +sr +vl +Xx +jF +Ro +NV +zJ +zJ Yc al al al al -al -al -al -Yt -Yt -Yt -Yt -al -al Yc vl vl vl -pt +Pi jF rU Qm @@ -17549,37 +16168,34 @@ LN wV Cd Mj -ag -wz +vA +yT +WF +dK +lO +KJ +WF +tw +lO +KJ SP -al af oi oi +oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af -oi -Zu af oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -17606,6 +16222,9 @@ oi oi oi oi +oi +oi +oi "} (28,1,1) = {" oi @@ -17634,18 +16253,18 @@ vI bD vI Et -vl +Em dp +jF +sr +Zi +Xx +jF +jF +jF +jF +er Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -al -al al al al @@ -17653,17 +16272,17 @@ al Yc mz mz -vl +Zi vl PW sr XI RU -uN +xa RU RU RU -uN +xa RU YC GJ @@ -17671,6 +16290,14 @@ Wq qZ ZI lO +WF +WF +WF +WF +WF +WF +WF +SP SP SP SP @@ -17679,34 +16306,23 @@ SP SP SP SP -al af oi oi +oi Zu Pk Pk Pk +af +oi +Zu Pk Pk Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk +af +oi +Zu Pk Pk Pk @@ -17733,6 +16349,9 @@ oi oi oi oi +oi +oi +oi "} (29,1,1) = {" oi @@ -17761,26 +16380,26 @@ aJ bF di Et -vl +Em ds jF -eL +eu Zi Xx jF Am go +jF +WM Yc al al al al -al -al Yc mF nt -vl +Zi vl vl sr @@ -17792,7 +16411,7 @@ jF jF jF jF -jF +YC YC Wq ZZ @@ -17807,33 +16426,30 @@ QT QT SP al -af +al +au +au +au +au +au +au +WY +oi oi oi Zu Pk Pk Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk af oi Zu -af -oi -Zu -Pk -Pk -Pk -Pk Pk Pk Pk +af +oi +Zu Pk Pk Pk @@ -17860,6 +16476,9 @@ oi oi oi oi +oi +oi +oi "} (30,1,1) = {" oi @@ -17888,23 +16507,23 @@ aU bG ck Et -vl -vl +Em +Vt dU vl Zi Xx jF fx -vl -Yc -Yc +Zi +jF +jF Yc Xm Xm Xm Yc -jF +Yc mH mH vl @@ -17924,7 +16543,7 @@ YC Gk ZZ ZI -Nu +eW Tl OG ZZ @@ -17937,34 +16556,34 @@ al af oi oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +oi +oi +oi +oi +oi +oi +oi oi Zu +Pk +Pk +Pk af oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af +oi +oi +oi oi oi oi @@ -18015,15 +16634,15 @@ GX GX GX Et -vl -dw +Em +bq jF ex vl vl fq vl -vl +Zi jF hp sr @@ -18032,9 +16651,9 @@ aM aA kM jF -cG -Et -Et +eo +uq +uq VH Ix sr @@ -18072,23 +16691,23 @@ oi oi oi oi -oi -oi -oi -oi -oi Zu +Pk +Pk +Pk af oi +Zu +Pk +Pk +Pk +af oi -oi -oi -oi -oi -oi -oi -oi -oi +Zu +Pk +Pk +Pk +af oi oi oi @@ -18138,25 +16757,25 @@ al al al Yc -aW +aE Et Et Et -vl +CA xR jF sr Zi -Xx +ug jF jF jF jF hq sr -Et -Et -Et +uq +uq +uq Xx jF mI @@ -18190,35 +16809,35 @@ fu al af oi -oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +oi +oi +oi +oi +oi +oi +oi +oi +oi +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af oi Zu +Pk +Pk +Pk af oi -Jc -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +oi +oi oi oi oi @@ -18281,7 +16900,7 @@ vl jF hB sr -xY +uu iO Ns Xx @@ -18291,7 +16910,7 @@ qj qj pB jF -eL +eu sC jF dw @@ -18300,7 +16919,7 @@ xu zE Bj DH -vl +tJ YC Wq qZ @@ -18318,34 +16937,34 @@ al af oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi -Zu -af oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af +oi +oi +oi +oi +oi +oi +Yr +au +au +au +WY +oi +Yr +au +au +au +WY +oi +Yr +au +au +au +WY +oi +oi +oi oi oi oi @@ -18403,12 +17022,12 @@ sr Zi eN jF -fy +JM gs jF hC sr -xY +uu iV Ns eN @@ -18445,34 +17064,34 @@ al af oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -al -al -al -al -al -al -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi oi oi oi @@ -18516,8 +17135,8 @@ oi Zu al al -Xm -zJ +Yc +RA Et qj qj @@ -18535,21 +17154,21 @@ jF jF hD sr -xY -Ck +uu +bv Ns Xx jF mU nv qj -Et +kf Ix sr Xx Xm vb -nW +wr Vz Vz Vz @@ -18572,34 +17191,34 @@ al af oi oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af oi -Zu -af oi -Zu -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -af +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi oi oi oi @@ -18656,23 +17275,23 @@ jF sr vl vl -Pl +EG vl vl jF hG sr -Et -Et -Et +uq +uq +uq Xx jF mW EB qj -Et +uq jF -sr +fm Xx Xm Wq @@ -18686,8 +17305,8 @@ qZ ZZ ZZ ZI -gl -Tl +aW +WF Ph PT QU @@ -18699,34 +17318,34 @@ al af oi oi -Yr -au -au -au -au -au -au -au -au -au -au -WY oi -Zu -af oi -Yr -au -au -au -au -au -au -au -au -au -au -WY +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi +oi oi oi oi @@ -18782,9 +17401,9 @@ Et jF sr Zi -Xx +If jF -fy +JM gs jF hI @@ -18797,7 +17416,7 @@ jF mY ny qj -Et +uq PW vl Xx @@ -18808,7 +17427,7 @@ jY zH zH zH -tY +Ft zH zH zH @@ -18839,8 +17458,8 @@ oi oi oi oi -Zu -af +oi +oi oi oi oi @@ -18907,7 +17526,7 @@ GX qj dD jF -ZS +sr Zi Xx jF @@ -18922,9 +17541,9 @@ Ix jF jF nd -Et -Et -Et +uq +uq +uq vl vl eN @@ -18932,12 +17551,12 @@ YC Wq qZ ZI -zW -zW -zW -zW -zW -zW +UK +UK +UK +UK +UK +UK UK UK La @@ -18946,7 +17565,7 @@ Pn PY UK SI -Us +ge Wz SP al @@ -18966,26 +17585,6 @@ oi oi oi oi -Zu -af -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi oi oi oi @@ -18998,9 +17597,29 @@ oi oi oi oi +Jc +Yt +Yt +Yt +ai oi +Jc +Yt +Yt +Yt +ai oi +Jc +Yt +Yt +Yt +ai oi +Jc +Yt +Yt +Yt +ai oi oi "} @@ -19039,10 +17658,10 @@ vl eR cR Qm -Qm -Qm +rG +Zi hJ -Qm +eR Qm Qm Qm @@ -19059,7 +17678,7 @@ tV ZZ ZZ ZI -zW +UK Bn DL Fu @@ -19093,8 +17712,6 @@ XH XH XH XH -Zu -af oi oi oi @@ -19105,29 +17722,31 @@ oi oi oi oi -Jc -Yt -Yt -Yt -ai oi -Jc -Yt -Yt -Yt -ai oi -Jc -Yt -Yt -Yt -ai +Zu +Pk +Pk +Pk +af oi -Jc -Yt -Yt -Yt -ai +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af oi oi "} @@ -19152,13 +17771,13 @@ Zu al al Xm -GJ -zJ +Ci +Vt uw bR -Vm -vl -vl +QV +Em +Em CA jF ez @@ -19166,11 +17785,11 @@ vl XI RU RU -RU -RU -RU -RU -uN +rD +Zi +Zi +XI +xa RU rD Xx @@ -19198,15 +17817,15 @@ Ld Ig Il Qa -UK -UK -UK -UK +zW +zW +zW +zW XH XH Zp Zp -RA +zW YU VK So @@ -19220,8 +17839,8 @@ Lc Lc Lc XH -Zu -af +oi +oi oi oi oi @@ -19279,16 +17898,16 @@ Zu al al Xm -zJ -zJ +Vt +Vt bh bV -Vm +QV ct -vl +Em he jF -kL +sr Zi Xx jF @@ -19313,7 +17932,7 @@ Xm Wq qZ ZI -zW +UK Bt zC zC @@ -19325,7 +17944,7 @@ Lf MS Pp Qd -UK +zW SX Uu SX @@ -19333,8 +17952,8 @@ SX XH Zr xh -RA -am +zW +xA am am am @@ -19347,8 +17966,8 @@ pN Ig xC XH -Zu -af +oi +oi oi oi oi @@ -19407,8 +18026,8 @@ al Yc Yc tq -jF -jF +YC +YC jF jF jF @@ -19420,11 +18039,11 @@ Zi Xx jF fz -qj -qj -Cm -Et -ks +fK +QB +DE +uq +eo jF sr vl @@ -19432,7 +18051,7 @@ vl RU RU RU -uN +xa RU RU sE @@ -19440,19 +18059,19 @@ Xm Wq qZ ZI -zW +UK Bz DR Fy GL GW -UK -UK -UK -UK -UK +zW +zW +zW +zW +zW Qi -UK +zW Th Th Th @@ -19460,7 +18079,7 @@ Th XH Zp Zp -RA +zW gT am am @@ -19474,8 +18093,8 @@ LH Fb qU XH -Zu -af +oi +oi oi oi oi @@ -19534,11 +18153,11 @@ al Yc kj vl -jF -nS -vl -vl -vl +YC +xg +Vt +Em +Em qj qj jF @@ -19546,12 +18165,12 @@ sr Zi Xx jF -qa -qj -jI -Zy -Ns -Xx +fR +CC +Kx +DE +uq +uq jF sr eN @@ -19567,27 +18186,27 @@ YC Wq qZ Xv -UK -UK -UK -UK -UK -UK -UK +zW +zW +zW +zW +zW +zW +zW HP Lo MX -UK -UK -UK -Ts +zW +zW +zW +zi Ts Ts Ts Yg Zx Hg -RA +zW SQ am Ds @@ -19601,8 +18220,8 @@ Ug Ig Ap XH -al -al +Yt +Yt Yt Yt Yt @@ -19661,9 +18280,9 @@ al Yc fy gs -jF -nS -vl +YC +Fa +Vt si Zh qj @@ -19673,37 +18292,37 @@ sr Zi Xx jF -fA +ZF qj -CC -hK -Ns -Xx +UW +DE +uq +uq jc vl Xx jF wE -Et +uq qj Cm qj YC ir Ys -Wq +vw ZZ ZI -UK +zW BF Ei FR GM UK Hl -qL -qL -qL +HW +HW +HW GP Qn UK @@ -19714,18 +18333,18 @@ SX UK ZA gm -RA -RA +zW +zW WL WL WL WL -RA -RA +zW +zW zO Lc Lc -Lc +RE Lc XH al @@ -19789,8 +18408,8 @@ Yc Yc Yc Yc -jF -fx +YC +bZ qz ss qj @@ -19800,18 +18419,18 @@ vl vl Xx jF -fB -qj -Rd -hL -Ns -Xx +cE +uq +uq +uq +uq +uq jF sr Xx jF fm -Et +uq vI vI qj @@ -19823,8 +18442,8 @@ ZZ ZI Ay BG -qL -qL +HW +HW GP Ha bz @@ -19839,21 +18458,21 @@ UK UK UK UK -bz +SY Ig -RA +zW fJ rY rY rY rY Sl -RA -RA +zW +zW Mx TE -RA -RA +zW +zW XH WL WL @@ -19928,17 +18547,17 @@ Zi eS jF kU -qj -qj -Cw -Et -Pi +uq +fE +Cu +Ek +fS jF sr vl lf vl -Et +uq Zy MA qj @@ -19985,7 +18604,7 @@ Nq yf sT NA -qL +HW sl XH al @@ -20065,17 +18684,17 @@ sr Xx jF hE -Et +uq oe UI qj YC Iw -Iu +JN Wq ZZ ZI -UK +zW BK Mm Mm @@ -20171,38 +18790,38 @@ al al Yc bl -qj -qj -Cm -Et -ks +fK +bu +DE +uq +eo jF eB Zi Sj jF fC -gw -qj -Cm -Et -ks +fK +NW +DE +uq +eo jF sr Xx jF Ny -Et +uq hK Zb qk YC Xu Ys -Wq +Rs ZZ ZI -UK +zW UK Ha Ha @@ -20228,7 +18847,7 @@ UK UK UK UK -sW +iw yO ZX Ig @@ -20298,24 +18917,24 @@ al al Yc bm -qj -jI -cE -Ns -Xx +CC +Kx +DE +uq +uq jF sr Zi -Xx +ks jF -fE -qj -jI -pA -Ns -Xx +fR +CC +Kx +DE +uq +uq jF -jS +sr Xx jF YC @@ -20331,10 +18950,10 @@ lO mK MN BY -qL -qL +HW +HW GS -tj +rO zC zC zC @@ -20375,29 +18994,29 @@ af oi oi oi -Zu -Pk -Pk -Pk -af +Yr +au +al +au +WY oi -Zu -Pk -Pk -Pk -af +Yr +au +al +au +WY oi -Zu -Pk -Pk -Pk -af +Yr +au +al +au +WY oi -Zu -Pk -Pk -Pk -af +Yr +au +al +au +WY oi oi "} @@ -20424,30 +19043,30 @@ Zu al al Yc -bn +ZF qj -CC -Kx -Ns -Xx -dZ +xZ +DE +uq +uq +jg vl vl Xx jF -fI +ZF qj -CC -Kx -Ns -Xx +TU +DE +uq +yi ki vl Xx hp YC nC -Et +uq RL qo It @@ -20456,12 +19075,12 @@ YC fV lO mK -MN +Ic Mm Mm Mm Mm -tj +zC zC IJ LI @@ -20477,11 +19096,11 @@ YG bz Ki Gi -PO +MD +no no no no -BZ UE OZ jk @@ -20494,7 +19113,7 @@ vT je pm Ig -Ri +Pu XH al al @@ -20502,29 +19121,29 @@ af oi oi oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af +al +oi +oi +oi +oi +oi +al +oi +oi +oi +oi +oi +al +oi +oi +oi +oi +oi +al +oi oi -Zu -Pk -Pk -Pk -af oi oi "} @@ -20551,47 +19170,47 @@ Zu al al Yc -Bh -qj -SH -cN -Ns -Xx -jF -sr -Zi -Xx -jF -fB -qj -SH -cN -Ns +jA +uq +uq +uq +uq +uq +jF +sr +Zi Xx jF -eL +bv +uq +uq +uq +uq +uq +jF +eu Xx jm YC Fq -Et +uq AE qj qj sR YC -iY +Wq qZ vd -WF -WF -WF -WF -WF -WF -WF -WF -WF +Ys +Ys +Ys +Ys +Ys +Ys +Ys +Ys +Ys bz RM wQ @@ -20612,9 +19231,9 @@ mA iP zX UK -Ig +jS RM -rO +zC zC Mm UH @@ -20625,33 +19244,33 @@ RM WL al al -af -oi -oi -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af +al +Yt +Yt +Yt +Yt +Yt +al +Yt +Yt +Yt +Yt +Yt +al +Yt +Yt +Yt +Yt +Yt +al +Yt +Yt +Yt +Yt +Yt +al oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi oi "} @@ -20678,23 +19297,23 @@ Zu al al Yc -fK -qj -qj +fS +uq +Lp Cw -Et -Pi +up +eo jF -Jz +sr Zi Xx jF -fK -qj -qj -Cw -Et -Pi +fS +uq +fE +NX +bn +VO jF sr Xx @@ -20707,27 +19326,27 @@ qj qj sS YC -Wq +ad qZ Xv WF vb Vz Vz -nW +wr Vz Vz IR -WF -bz +Ys +SY Pq -qL -GS -qL -qL +HW +Db +HW +HW Xd -XJ -qL +HW +HW ZB Il Rl @@ -20747,38 +19366,38 @@ UK UK bz nU -nU +gU RM WL al al -af -oi -oi -oi -Yr -au +al +al +al +al +al +al +al +al al au -WY -oi -Yr +au au al au -WY -oi -Yr au -al au -WY -oi -Yr +au au al au -WY +au +au +au +au +al +oi +oi oi oi "} @@ -20828,7 +19447,7 @@ Xx on YC nF -Et +uq qj qp qj @@ -20845,14 +19464,14 @@ Ir Ir Ho ZI -WF -BK -Mm -Ig -Ig -Ig +Ys +fb +zC +zC Ig -Xe +Mm +Mm +kn XO Mm Nv @@ -20879,15 +19498,15 @@ RM WL al al -af -oi -oi -oi -oi -oi al -oi -oi +al +al +al +al +al +al +al +af oi oi oi @@ -20932,30 +19551,30 @@ Zu al al Yc -bu -qj -qj -Cm -Et -ks +bv +fK +aV +DE +uq +eo jF sr Zi Xx jF -bu -qj -qj -Cm -Et -ks +Bh +fK +hf +DE +uq +eo jF sr Xx -jF YC -zJ -Et +YC +SH +uq Zy EB qj @@ -20972,15 +19591,15 @@ Zk Zk Be ZI -WF -UA -UA -UA -UA -UA -UA -UA -UA +Ys +gh +gO +dB +gh +gh +gh +gh +gh et bz Ig @@ -20993,46 +19612,46 @@ lV iP zX UK -Ig +lH RM sG Ig Ig UK bz -nU +jI pp RM -WL -al -al -al -Yt -Yt -Yt -Yt -Yt -al -Yt -Yt -Yt -Yt -Yt -al -Yt -Yt -Yt -Yt +XH +df +df +df +df +df +df +df +df +df +df +af +oi +Jc Yt al Yt +ai +oi +Jc Yt +al Yt -Yt +ai +oi +Jc Yt al -oi -oi +Yt +ai oi oi "} @@ -21060,29 +19679,29 @@ al al Yc bv -qj -jI -cT -Ns -Xx +CC +Kx +DE +uq +uq jF sr Zi Xx jF fO -qj -Bx -tp -Ns -Xx +CC +Kx +DE +uq +uq jF sr Xx xH zJ vl -Et +uq Bx qr qj @@ -21101,13 +19720,13 @@ Be Xv WF WB -Yj -UB +ta +ta WB WB UB oQ -UA +gh YI bz Ki @@ -21121,45 +19740,45 @@ UE OZ jK Ig -RM +OC UK Tq dd UK mj -Mm +Wt kn la XH -al -al -al -au -au -au -au -au -al -au -au -au -au -au -al -au -au -au -au -au -al -au -au -au -au -au -al +Bi +Bi +Bi +Bi +Bi +Bi +Bi +Bi +Bi +df +af oi +Zu +Pk +Pk +Pk +af +oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi oi "} @@ -21186,34 +19805,34 @@ Zu al al Yc -fI +ZF qj -CC -cU -Ns -Xx +Zd +DE +uq +uq rX vl vl Xx jF -fI +ZF qj -CC -hN -Ns -Xx -jg +Lx +DE +uq +uq +pA vl Xx Ix ne vl -Et +uq AE qj qj -qj +aP YC Wq qZ @@ -21234,7 +19853,7 @@ ve ve UB oQ -UA +gh UF bz Ki @@ -21244,7 +19863,7 @@ eG pT eG eG -PO +MD OZ cv zC @@ -21258,35 +19877,35 @@ UK UK UK XH -al -al +Iv +hl +pq +iC +tu +tu +tu +tu +Bi +df af oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi -oi -oi -al -oi -oi -oi -oi -oi -al -oi -oi -oi -oi -oi -al -oi -oi -oi -oi -oi -al -oi -oi +Zu +Pk +Pk +Pk +af oi oi "} @@ -21314,22 +19933,22 @@ al al Yc fR -qj uq -cV -Ns -Xx +uq +uq +uq +uq jF sr Zi Xx jF -fR -qj -SH -gj -Ns -Xx +qa +uq +uq +uq +uq +uq jF sL Xx @@ -21337,10 +19956,10 @@ Ix ni vl IQ -Et -Et +uq +uq IQ -dD +lg YC Wq qZ @@ -21361,7 +19980,7 @@ UB UB UB bp -UA +gh YK bz Ki @@ -21384,36 +20003,36 @@ Iv Iv Iv Iv +Iv +Iv +hl +OB +RP +RP +RP +RP +aQ +Bi df -al -al af oi +Zu +Pk +Pk +Pk +af oi +Zu +Pk +Pk +Pk +af oi -Jc -Yt -al -Yt -ai -oi -Jc -Yt -al -Yt -ai -oi -Jc -Yt -al -Yt -ai -oi -Jc -Yt -al -Yt -ai +Zu +Pk +Pk +Pk +af oi oi "} @@ -21441,22 +20060,22 @@ al al Yc bB -qj -qj -Cw -Et -Pi +uq +fE +uq +uq +up jF ZS Zi Xx jF fS -qj -qj -Cw -Et -Pi +uq +Hd +fe +xi +fR jF sr Xx @@ -21488,16 +20107,16 @@ WB WB UB Yj -UA +gh hQ bz zC Ig Ig -qL -qL -qL -qL +HW +HW +HW +HW zC zC zC @@ -21507,21 +20126,21 @@ UK Iv cW Kv -tu wd Ta Iv +Or +OB +Iv +hl +OB +RP +RP +RP +RP +RP +Bi df -al -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -21564,8 +20183,8 @@ oi oi oi Yr -au -au +al +al Yc Yc jF @@ -21587,14 +20206,14 @@ jF jF sr eN -jF -jF +YC +YC nI Ix -jF +YC Ix Ix -jF +YC YC Wq lO @@ -21611,11 +20230,11 @@ WF TD Yj UB -ve TD +ve UB Yj -UA +gh YN BK kn @@ -21634,21 +20253,21 @@ Iv Iv wW uF -uF ZE rk Iv +Or +lZ +Iv +Iv +xv +FK +FK +FK +FK +FK +Bi df -al -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -21691,9 +20310,9 @@ oi oi oi oi -oi -oi Zu +al +al Yc ku cl @@ -21742,16 +20361,16 @@ UA UA Ux Ux -UA -UA -UK -UK +gh +gh +zW +zW UL -UK -UK -UK -UK -wN +zW +zW +zW +zW +DN wN wN wN @@ -21760,22 +20379,22 @@ UK Iv NT rx -ph -rx +uF uF NF Iv +Dq +OB +Vx +Iv +Mn +tu +tu +tu +tu +tu +Bi df -al -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -21818,13 +20437,13 @@ oi oi oi oi -oi -oi Zu -Yc -kl -VY +al +al +Xm +cf VY +tL dj dN Ix @@ -21840,7 +20459,7 @@ XI RU vl jT -uN +xa RU RU RU @@ -21849,7 +20468,7 @@ zJ sr Zi Vm -jF +YC Wq qZ ZI @@ -21877,7 +20496,7 @@ UE UE CJ Kw -UK +zW sJ UE UE @@ -21887,22 +20506,22 @@ UK Iv oq rx -ph -rx +uF uF Xp Iv +iK +OB +Ju +Iv +OB +RP +RP +RP +RP +RP +Bi df -al -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -21945,11 +20564,11 @@ oi oi oi oi -oi -oi Zu -Yc -cf +al +al +Xm +zl VY VY VY @@ -21962,12 +20581,12 @@ jF fU fU gQ -xi -xi -xi +YC +YC +YC ji -xi -xi +YC +YC li Ix Ix @@ -22002,9 +20621,9 @@ ZH fQ UE Sr -CJ +mt Ss -UK +zW CQ CQ mp @@ -22016,20 +20635,20 @@ Wb rx uF uF -uF AM Iv +GE +OB +Vd +Iv +OB +RP +RP +RP +RP +aQ +Bi df -al -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -22072,15 +20691,15 @@ oi oi oi oi -oi -oi Zu +al +al Yc UQ VY +cZ VY -VY -Ju +dN jF eK Zi @@ -22089,20 +20708,20 @@ jF jF jF jF -xi +YC ia ix Si jU -xi +YC vl nm zY YC IS -Et -Et -dD +uq +uq +lg YC Gg qZ @@ -22131,7 +20750,7 @@ UK UK UK UK -UK +zW UK UK UK @@ -22142,21 +20761,21 @@ Iv wF yW uF -pX us xV Iv +VP +OB +XJ +Iv +eF +eF +OB +gD +FK +FK +Bi df -df -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -22199,16 +20818,16 @@ oi oi oi oi -oi -oi Zu -Yc +al +al +Xm cj -cp +VY cZ -dk -en -jF +VY +dN +Ix sr Zi fg @@ -22216,12 +20835,12 @@ jF fW gA gV -xi +YC uQ Qf Si -uQ -xi +sw +YC lm nn Ac @@ -22229,7 +20848,7 @@ Ix qj qj qj -Et +uq YC Wq qZ @@ -22273,17 +20892,17 @@ Iv Iv Iv Iv +KI Iv +Iv +Iv +Iv +yn +Bi +Bi +Bi +Bi df -al -af -oi -oi -oi -Zu -Pk -Pk -Pk af oi Zu @@ -22326,29 +20945,29 @@ oi oi oi oi -oi -oi Zu -Yc -Yc -Xm -Xm +al +al Xm -Yc -Yc -eL +eb +VY +VY +VY +ND +Ix +sr Zi fk fr vl vl gX -xi +YC hT Qf Si -uQ -xi +sw +YC lu nn oO @@ -22356,7 +20975,7 @@ Ix pJ qC qj -Et +uq Xm Wq qZ @@ -22373,8 +20992,8 @@ WF TD Yj UB -ve TD +ve UB Yj TD @@ -22394,42 +21013,42 @@ Ot Uf Iv By +BB uF -dH -Iv -Db -mt -bY -Iv +BB +BB +BB +BB +BB +se +nL +Jz +id +uF +Bi +df +df +df df -al -al -Yt -ai -oi -Zu -Pk -Pk -Pk af oi -Zu -Pk -Pk -Pk -af +Yr +au +au +au +WY oi -Zu -Pk -Pk -Pk -af +Yr +au +au +au +WY oi -Zu -Pk -Pk -Pk -af +Yr +au +au +au +WY oi oi "} @@ -22453,16 +21072,16 @@ oi oi oi oi -oi -oi -Yr -au -au -au -au -au +Zu +al al Yc +en +gi +VY +VY +TP +jF uK Ve fp @@ -22470,12 +21089,12 @@ jF fX gB gZ -xi +YC ic Qf jl jW -xi +YC xP vl nN @@ -22483,7 +21102,7 @@ Ix pK qD qj -Et +uq tX Wq lO @@ -22521,46 +21140,30 @@ uF HU Iv ZK +KE uF uF -Rw -rx uF -ph -Iv +uF +uF +uF +uF +uF +uF +uF +BR +Bi df al al al af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi oi -"} -(67,1,1) = {" oi oi oi @@ -22575,6 +21178,8 @@ oi oi oi oi +"} +(67,1,1) = {" oi oi oi @@ -22588,21 +21193,35 @@ oi oi oi oi -Zu -Yc -Xm -Xm -Xm +oi +oi +oi +SP +SP +fu +fu +fu SP +Yc +YC +YC +Jo +QS +YC +YC +YC Ys Ys Ys -vD -vD -vD -vD -vD -xi +Ys +Ys +Ys +Ys +Ys +Ys +Ys +Ys +YC lw vl Ae @@ -22610,7 +21229,7 @@ YC pM qF qj -Et +uq tW Wq lO @@ -22649,45 +21268,29 @@ vX Iv Zg uF -pq -Iv -OB -aQ -eF -Iv -df -df +uF +sY +us +Mi +us +us +us +us +zd +uF +Rw +Bi df al +al +al af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi -Zu -Pk -Pk -Pk -af oi oi -"} -(68,1,1) = {" oi oi oi @@ -22702,6 +21305,11 @@ oi oi oi oi +"} +(68,1,1) = {" +oi +oi +oi oi oi oi @@ -22715,17 +21323,28 @@ oi oi oi oi -Zu -al -al -al -al SP +oF +PM +PM +PM +PM +PM +PM +PM +ZZ +ZZ +PM +PM +Fi +WF +qB +Wu fY Ww hk tz -Ys +WF Su Sx Ys @@ -22737,7 +21356,7 @@ xr qj qj qj -Ns +uq Xm Wq qZ @@ -22775,8 +21394,9 @@ uF KG Iv ZK +mV uF -ph +vS Iv Iv Iv @@ -22784,40 +21404,25 @@ Iv Iv Iv Iv +or +Iv +Bi df al -af -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -oi -"} -(69,1,1) = {" -oi -oi -oi +al +al +al +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +Yt +ai oi oi oi @@ -22827,6 +21432,8 @@ oi oi oi oi +"} +(69,1,1) = {" oi oi oi @@ -22842,16 +21449,28 @@ oi oi oi oi -Yr -au -al -al -al -SP +oi +fu fZ +ZZ +UN +WF +tZ +yN +fI +yN +md +WF +yR +ZZ +Wy +WF +cA +QW +ZZ +ZZ qZ -qZ -qZ +ZZ dq ZZ Xv @@ -22861,12 +21480,12 @@ RS np Al YC -cG -Et -Et -Ns +eo +up +NX +NX YC -jQ +Wq qZ Xv WF @@ -22911,42 +21530,27 @@ Ko To UX Iv +CS +uF +CS +Bi df al +al +df +df +df +df +df +df +bC +bC +bC +bC +bC +al af oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -Zu -Pk -Pk -Pk -af -oi -oi -"} -(70,1,1) = {" -oi -oi -oi -oi -oi oi oi oi @@ -22955,6 +21559,8 @@ oi oi oi oi +"} +(70,1,1) = {" oi oi oi @@ -22971,15 +21577,28 @@ oi oi oi oi -Zu -al -al -SP +fu +fZ ga +ga +bY +FE +yQ +ee +Bd +wm +LW +vR +vR +PP +WF +Dx +qZ ZZ ZZ -bL -Ys +qZ +ZZ +WF bk ZI Ys @@ -23015,7 +21634,7 @@ Qv UA UA Iv -Yw +By mQ ma Kv @@ -23038,42 +21657,27 @@ uF uF ph Iv +yM +uF +JH +Bi +df +al +al df +Vo +Ch +Ch +Ch +Dv +bC +OK +Vq +Vq +bC al af oi -Yr -au -au -au -WY -oi -Yr -au -au -au -WY -oi -Yr -au -au -au -WY -oi -Yr -au -au -au -WY -oi -oi -"} -(71,1,1) = {" -oi -oi -oi -oi -oi oi oi oi @@ -23082,6 +21686,8 @@ oi oi oi oi +"} +(71,1,1) = {" oi oi oi @@ -23098,19 +21704,32 @@ oi oi oi oi -Zu -al -al SP +fZ +ga +ga +bY +aY +uy +wz +Gu +xU +LW +vR +vR +PP +WF +qI +OT gb -ZZ -ZZ -tL -Ys +JD +MO +MO +WF Wq tU Vz -nW +wr Vz Vz Vz @@ -23131,12 +21750,12 @@ Vz Vz EA Jf -nW +wr Cj ZZ ZZ Vz -nW +wr ZZ ZZ Cj @@ -23146,7 +21765,7 @@ rx uF uF uF -MQ +ph Iv ru YT @@ -23165,8 +21784,25 @@ uF AB MQ Iv +CS +us +CS +Bi df al +al +df +Yn +bd +qq +bd +gg +bC +Px +Vq +Vq +Ke +al af oi oi @@ -23177,23 +21813,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (72,1,1) = {" oi @@ -23212,28 +21831,28 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al SP -ge -qZ -hl -bx -Ys +tp +ga +ga +bY +iA +bL +wz +bN +jD +LW +vR +vR +PP +WF +WF +WF +WF +WF +WF +WF +WF Wq qZ ZZ @@ -23273,7 +21892,7 @@ uF uF uF uF -uF +CT YR uF uF @@ -23290,43 +21909,28 @@ YP uF uF uF -FL -Iv -df -al -al -Yt -Yt -Yt -Yt -ai -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -"} -(73,1,1) = {" -oi -oi -oi -oi +FL +aw +aw +aw +aw +Bi +df +al +al +df +gg +qq +yL +qq +Gc +Tg +ry +Go +Vq +Ke +al +af oi oi oi @@ -23336,6 +21940,8 @@ oi oi oi oi +"} +(73,1,1) = {" oi oi oi @@ -23352,16 +21958,29 @@ oi oi oi oi -Zu -al -al SP -gh +fZ +ga +ga +bY +iA +Ri +bE +fB +jD +LW +vR +vR ZZ -hm -qu -Ys -Wq +LS +Uy +Vz +Vz +wr +Vz +Vz +Vz +rN qZ jY zH @@ -23369,17 +21988,17 @@ zH zH zH zH -tY +Ft zH zH zH zH zH rf -vg -zH +LC +iY zH -tY +Ft ZZ zH ZZ @@ -23400,7 +22019,7 @@ uF uF uF uF -uF +CT uF sY us @@ -23418,14 +22037,26 @@ tF oA Mi uT -Iv -bC -bC +aw +As +As +As +As bC Ke -Ke bC bC +gg +qq +yJ +qq +qq +pw +ry +Go +Vq +Ke +al af oi oi @@ -23436,18 +22067,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (74,1,1) = {" oi @@ -23466,29 +22085,29 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -SP -Ys -Ys -Ys -Ys -Ys -Gg +fu +fZ +ga +ga +bY +iA +wz +wz +wz +jD +LW +vR +vR +ZZ +ZZ +rC +zH +zH +zH +zH +zH +zH +Xw qZ ZI Tm @@ -23539,20 +22158,32 @@ uF uF uF uF -jr -Iv +BR Iv Iv Iv Iv Iv +aw Dc As eV -XB -uk -Ii +Vq +Vq +Vq +ox +As +gg +qq +dz +qq +qq +pw +ry +Go +Vq bC +al af oi oi @@ -23563,18 +22194,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (75,1,1) = {" oi @@ -23593,37 +22212,37 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -SP -gi -tJ -ho -tJ -Tl -KT +fu +fZ +ZZ +ZZ +bY +iA +wz +wz +wz +jD +LW +ZZ +ZZ +Wy +WF +WF +WF +WF +WF +WF +WF +WF +kX ZZ jZ Tm -BE -TQ +NU TQ og SL +SL kA SL SL @@ -23634,7 +22253,7 @@ NJ JK CE Tm -Oe +yR qZ ZZ WF @@ -23666,20 +22285,32 @@ rx WN rE uF -xZ +ph YP zT Ko To UX -Iv +aw Ng As KP -PU -uk +Vq +Vq +Vq tP -Ke +As +gg +qq +jr +qq +RF +pw +ry +Go +Vq +bC +al af oi oi @@ -23690,18 +22321,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (76,1,1) = {" oi @@ -23720,37 +22339,37 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al SP +tp +ZZ +ZZ +WF +nb +ho +cp +ho +ht +lO +ZZ +ZZ +PP +dk +WF +JA dY -qZ -qZ -qZ -Ys +Jq +JS +Jq +WF Tl ju Tl Tm TQ TQ -TQ oh ld +SL wj wj wj @@ -23787,7 +22406,7 @@ vv uF ph Iv -uF +JE zf uF WN @@ -23799,27 +22418,27 @@ uF uF uF ph -Iv +aw gd Pc Vq -Vq +ly +ly Vq tP -Ke -af -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi +As +Yn +QJ +qq +QJ +gg +bC +Px +Vq +Vq +bC +al +af oi oi oi @@ -23847,28 +22466,28 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -SP -gk +fu +fZ +ZZ +ZZ +EV +iA +wz +wz +wz +jD +Ff +ZZ +ZZ +Wy +WF +WF +lO +lO ZZ ZZ ZZ -ie +PX ZZ ZZ kd @@ -23876,8 +22495,8 @@ Tm Vr Vr Vr -Vr BP +SL wj wj wj @@ -23904,7 +22523,7 @@ Wq qZ ZI YP -YZ +Lg ZR ZR ZR @@ -23926,14 +22545,26 @@ uF uF AB MQ -Iv +aw As As +hF +mc +nG Vq +oI +As +wS +Ch +Ch +Ch +pQ +bC +OK Vq Vq -aP -Ke +bC +al af oi oi @@ -23944,18 +22575,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (78,1,1) = {" oi @@ -23974,23 +22593,23 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -SP +fu +fZ +ga +ga +EV +iA +wz +wz +wz +jD +Ff +vR +vR +PP +Tl +ZZ +lO lO gC gC @@ -23998,13 +22617,13 @@ gC ZZ ZZ ZZ -iC +lO Tm lD Vr -WQ -ol +Vr BP +SL wj wj wj @@ -24021,9 +22640,9 @@ ZI WF WF WF +cU ZZ -ZZ -ZZ +rF ZZ pC WF @@ -24053,14 +22672,26 @@ uF uF uF FL -Iv +aw wP tP Vq +mw +mw +Vq +pz +As +bC +bC +bC +bC +bC +bC +Vq Vq Vq -sx bC +al af oi oi @@ -24071,18 +22702,6 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi "} (79,1,1) = {" oi @@ -24101,23 +22720,23 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al SP +fZ +ga +ga +EV +iA +uS +Dz +BZ +jD +Ff +vR +vR +PP +Tl +ZZ +lO lO hr hr @@ -24129,7 +22748,6 @@ gl Tm WU Vr -Vr om pP Vr @@ -24137,13 +22755,14 @@ Vr Vr Vr Vr +Vr mr Vr Vr Vr mr ZZ -ZZ +lO Xv WF dJ @@ -24152,7 +22771,7 @@ ZZ ZZ zH zH -zH +Wd WF Wq qZ @@ -24180,27 +22799,27 @@ tF oA Mi uT -Iv +aw aG Cs Vq Vq Vq -uX +Vq +ql +As +pw +JY +pw +qS +pw +gp +pw +pw +pw bC al -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -Yt -ai +af oi oi oi @@ -24228,23 +22847,23 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -fu +SP +tp +ga +ga +EV +iA +VT +wz +bN +jD +Ff +vR +vR +PP +Tl +ZZ +lO Ev gL ZZ @@ -24256,8 +22875,7 @@ kg Tm kG Vr -Vr -or +om pP Vr Vr @@ -24269,8 +22887,9 @@ Vr Vr Vr Vr +Vr ZZ -ZZ +lO ZI WF WF @@ -24302,47 +22921,32 @@ uF uF uF CM -Iv -Iv -Iv -Iv -Iv -Iv +aw +aw +aw +aw +aw +aw lQ lQ pU JI As lQ -bC -bC -bC -Ke -Ke -Ke -bC -Ke -Ke -Ke -bC -bC -al -af -oi -oi -oi -oi -oi -oi -oi -oi -oi -"} -(81,1,1) = {" -oi -oi -oi -oi +As +As +pw +pw +Kj +ay +pw +pw +pw +pw +pw +bC +al +af oi oi oi @@ -24352,6 +22956,8 @@ oi oi oi oi +"} +(81,1,1) = {" oi oi oi @@ -24368,24 +22974,37 @@ oi oi oi oi -Zu -al -al -fu +SP +fZ +ga +ga +EV +aY +bx +wz +FW +xU +Ff +vR +vR +PP +Tl +ZZ +lO Ev ZZ ZZ ZZ -uZ +lO vR ZZ ko Tm Qt Vr -WQ -ow +Vr BP +SL wj wj wj @@ -24397,11 +23016,11 @@ TQ TQ MU Wq -ZZ +lO ZZ aT ZZ -Vb +aB Vb WF WF @@ -24416,7 +23035,7 @@ uF uF uF uF -uF +CT YR Ue BB @@ -24429,7 +23048,7 @@ uF uF uF ph -Iv +aw Vq dn FX @@ -24445,13 +23064,13 @@ OH As XK WV -HG -pw -Gz +hi +ar pw pw pw pw +Nb bC al af @@ -24482,23 +23101,23 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al fu +fZ +ga +ga +EV +Ps +cN +sP +dZ +hg +Ff +vR +vR +PP +Tl +ZZ +lO Ev gP ZZ @@ -24511,8 +23130,8 @@ Tm Vr Vr Vr -Vr BP +SL wj wj wj @@ -24524,12 +23143,12 @@ JK wj MU Wq -ZZ +lO ZZ ZZ ZZ LU -NN +XW WF WF WF @@ -24543,7 +23162,7 @@ uF uF uF uF -uF +CT uF uF uF @@ -24556,7 +23175,7 @@ uF uF uF pe -Iv +aw Vq dn qS @@ -24572,14 +23191,14 @@ dg As MB Vq -HG -pw +hi +ar pw pw pw pw pw -bC +Ke al af oi @@ -24609,24 +23228,24 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al -SP -dY +fu +fZ +ZZ +UN +WF +wY +yN +hN +yN +md +WF +yR +ZZ +Wy +WF +Wc +lO +lO tM tM tM @@ -24637,9 +23256,9 @@ kq Tm TQ TQ -TQ oz BV +SL wj wj wj @@ -24652,7 +23271,7 @@ wj MU Wq qZ -ZI +xk WF WF WF @@ -24683,7 +23302,7 @@ uF uF uF qf -Iv +aw Nw BU uC @@ -24692,7 +23311,7 @@ pw Vq pw pw -uS +pw pw pw Nc @@ -24700,13 +23319,13 @@ As UY WV Kd -JB -pw -pw +Cp pw +Ex +BC pw dW -bC +Ke al af Wf @@ -24736,38 +23355,38 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al SP +Fi +ge +ge +ge +ge +ge +ge +ge +ge +ge +ge +ge +Fi +WF +LX +lO gl -qZ -qZ -qZ +rb +rb +rb ih -iC +lO lO QR Tm -BE -TQ +NU TQ oH SL -qJ +SL +kI SL SL SL @@ -24775,7 +23394,7 @@ vk Tm IA JK -CE +hv Tm Gg qZ @@ -24801,7 +23420,7 @@ Ym Iv WT Zo -Mi +fs Oz Oz Zq @@ -24810,7 +23429,7 @@ qA es Oz zR -Iv +aw cs hi pw @@ -24819,7 +23438,7 @@ pw AX pw pw -Gu +pw ST pw op @@ -24833,7 +23452,7 @@ pw TA pw kv -bC +Ke al af Wf @@ -24863,22 +23482,22 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu -al -al +SP +SP +fu +fu +SP +SP +fu +fu +fu +SP +SP +fu +fu +SP +SP +SP SP SP WF @@ -24895,7 +23514,7 @@ Tm Tm Tm Tm -rV +oY tb ej sb @@ -24910,9 +23529,9 @@ ZI WF WF WF +cU ZZ -ZZ -ZZ +Jp ZZ pC WF @@ -24932,12 +23551,12 @@ Iv Iv Iv Iv -Iv -Iv -Iv -Iv -Iv -Iv +aw +aw +aw +aw +aw +aw cQ jb JB @@ -24946,12 +23565,12 @@ pw me pw pw -QB +pw pw pw pw zL -Yk +Po Yk Yk uC @@ -24995,19 +23614,19 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi Zu al al al -df +al +al +al +al +al +al +al +al +Qx jw gz EQ @@ -25033,7 +23652,7 @@ SL Tm Gq qZ -GY +ZI WF Jn YH @@ -25046,7 +23665,7 @@ WF Wq qZ tU -nW +wr Vz ZZ ZZ @@ -25078,7 +23697,7 @@ VN pw pw zL -pw +ar pw pw pw @@ -25087,7 +23706,7 @@ pw Np pw Sc -Ke +bC al af Wf @@ -25122,23 +23741,23 @@ oi oi oi oi -oi -oi -oi -oi -oi -oi -oi -oi -Zu +Yr +au +au +au +au +au +au +au al al al -df -eb -eb -eb -eb +al +Qx +Ie +Ie +Ie +Ie Oy tG Ie @@ -25205,7 +23824,7 @@ lb pw pw lG -pw +ar pw pw pw @@ -25214,7 +23833,7 @@ pw cg pw pw -Ke +bC al af Wf @@ -25261,16 +23880,16 @@ Yr au au au -df -gK -TP -wY -ND +Qx +KH +Ie +Ie +Ie Tm jy Ie kS -Ie +AC Ie hA oW @@ -25278,7 +23897,7 @@ BX qP qP qP -qP +JK qP qP qP @@ -25291,7 +23910,7 @@ ZI WF Jn YH -ZZ +Es WF Qw NN @@ -25300,30 +23919,30 @@ WF Xk NN NN +Ea zH +SN zH zH -zH -zH -tY -zH +Ft +Ea NN NN zH Xw qZ Xv -As +Id km -Vq -Vq -Vq +Go +Go +Go cz Vq Vq -tP +Go dT -tP +Go Vq Vq Vq @@ -25333,15 +23952,15 @@ JB pw Ke pw -pw -pw -pw -pw -pw -pw -pw -pw -Ke +cg +cg +qO +ty +ty +ty +ty +ty +bC al al Yt @@ -25388,12 +24007,12 @@ oi oi oi oi -df -df -df -df -df Qx +Ie +Ie +Ie +Qg +Tm jz Ie xj @@ -25403,9 +24022,9 @@ Au oW BX qT -ra +zM tn -kf +JK vo wx ra @@ -25453,20 +24072,20 @@ ka XC Ll Mv -XM +Vq Go YM qS Cn -As +Id vU pw -Jl pw -Wd -Rf -Rf -Rf +sx +mP +Vq +Vq +Vq Uj bC al @@ -25515,16 +24134,16 @@ oi oi oi oi -oi -oi -oi -Zu -al Qx +Pg +dL +QA +Ie +Tm jC Ie Yo -Ie +AC Ie Au oW @@ -25532,7 +24151,7 @@ BX ra rW tr -tZ +JK vK wA ra @@ -25572,25 +24191,25 @@ yZ KW KW ce -As +Id Ke -As +Id Di eD cC -As -As +Id uj Vq +Vq bA Oj Sc -As +Id BC pw -FB +pw HR -iT +tT sF sF sF @@ -25642,24 +24261,24 @@ Yt Yt ai oi -oi -oi -oi -Zu -al Qx -jE +Tm +Tm +Tm +HC +Tm +jG Ie kT +js Ie -Ie -Au +SS oW BX rj rj rj -rj +JK rj rj rj @@ -25694,35 +24313,35 @@ Br WX qZ ZI -As +Id Ke Ke PB -As -As -Kb -gh -CN -WF -CN -Vz -As +Id +Id +Su +Ys +KV +SM +KV +Ys +Id Ke PB Ke Ke -As -As -As -As -As -As -iT -Mr -Yq -Yq +Id +Id +Id +Id +Id +Id +tT +Li +Li +Li vH -iT +tC Li hX Li @@ -25769,13 +24388,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al Qx -jG +jE +JC +Eq +LV +Oy +tG Ie Ie Ie @@ -25811,13 +24430,13 @@ Ul RN jo RI -FE +RI RI Ag gc Yb YL -Br +PV Wq qZ tU @@ -25825,7 +24444,7 @@ Vz Vz Vz Vz -nW +wr Vz ZZ ZZ @@ -25833,13 +24452,13 @@ ZZ ZZ ZZ ZZ -nW +wr Vz Vz ZZ Vz Vz -nW +wr Vz Vz Vz @@ -25896,12 +24515,12 @@ Pk Pk af oi -oi -oi -oi -Zu -al -Qx +SR +tG +LV +tG +yp +Tm jJ jv kY @@ -25938,13 +24557,13 @@ gc gc WJ RI -FE +RI RI oJ gc Vw YL -Br +PV Wq qZ qZ @@ -26023,13 +24642,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al -Qx -Qx +SR +Cq +LV +Cq +eM +Tm +Tm Tm Tm Tm @@ -26053,11 +24672,11 @@ ZI WF Br ZQ -Cf -Cf +Yp +Yp ZQ -Cf -Cf +Yp +Yp ZJ ZQ YL @@ -26074,7 +24693,8 @@ YL Br KT zH -tY +Ft +SN zH zH zH @@ -26083,10 +24703,9 @@ zH zH zH zH -zH -tY +Ft Ks -zH +Kf OU ZZ ZZ @@ -26150,13 +24769,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al -al -Qx +SR +Cq +LV +Cq +LV +IL +Tm kx Mc lM @@ -26196,8 +24815,8 @@ kF Km Fl gc -Yb -YL +TT +gF Br Br Br @@ -26227,7 +24846,7 @@ iT Td iT FD -BS +Li Li tB uB @@ -26277,13 +24896,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al -al -SR +Qx +xm +LV +Cq +LV +De +Tm SL hh EJ @@ -26335,11 +24954,11 @@ ok RK gc gN -Cf -Cf +Yp +Yp bb -Cf -Cf +Yp +Yp Br EM Li @@ -26354,10 +24973,10 @@ BA Wi Wi Cx -Li -Li +fh +Bu vB -iT +tC Li sA Li @@ -26404,13 +25023,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al -al SR +tG +LV +tG +LV +KX +Tm SL hh lN @@ -26418,7 +25037,7 @@ yo SL Tm SL -Au +ha sg tK Au @@ -26444,10 +25063,10 @@ Yb GA YY Ej -Cf -Cf +Yp +Yp bb -Cf +Yp ZQ Ub Yb @@ -26484,7 +25103,7 @@ ou vu Ih VQ -iT +tC tC tC tC @@ -26531,13 +25150,13 @@ Pk Pk af oi -oi -oi -oi -Zu -al -al SR +Cq +LV +Cq +LV +hm +Tm SL hh lP @@ -26658,13 +25277,13 @@ Pk Pk af oi -Jc -Yt -Yt -al -al -al SR +Cq +LV +Cq +LV +HK +Tm SL hh EJ @@ -26722,22 +25341,22 @@ Vk Vk ZQ Br -FD -Li -Li -Li -Li -BS -Li -Li -Li -Li -BS -Li +cx +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE +EE EE -jd -bP -Li TM eQ al @@ -26785,13 +25404,13 @@ Pk Pk af oi -Zu -al -al -al -al -al Qx +Cq +LV +Rc +LV +ZO +Tm kx Yz Mc @@ -26822,7 +25441,7 @@ dS Br SE Yb -YL +dH gc vz Zw @@ -26849,24 +25468,24 @@ Mh Mh Mh Br -uV -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx -nx IW -eQ +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +IW +tC af Wf Wf @@ -26912,15 +25531,15 @@ Pk Pk af oi -Zu -al -Qx -Qx Qx Qx Qx Tm Tm +Tm +Tm +Tm +Tm lW Tm Tm @@ -26993,7 +25612,7 @@ Xl Xl Xl uR -eQ +tC af Wf Wf @@ -27054,9 +25673,9 @@ zw zw pW du -rV Fc Fc +sm vM Tm IC @@ -27069,10 +25688,10 @@ Ff HJ Jr bb -Cf -Cf -Cf -Cf +Yp +Yp +Yp +Yp ZQ Vh ZQ @@ -27088,20 +25707,20 @@ zD Yb ZQ CW -Cf +Yp bb -Cf -Cf -Cf +Yp +Yp +Yp Cf ZQ -Cf +Yp bb ng GA -Cf -Cf -Cf +Yp +Yp +Yp Br Xl Xl @@ -27120,7 +25739,7 @@ oD ri Xl Xl -eQ +hM af Wf Wf @@ -27169,7 +25788,7 @@ oi Zu al Qx -BE +NU il iD jN @@ -27179,9 +25798,9 @@ Mc Mc zw zw -zw +rM du -rV +Fc Fc Fc TQ @@ -27247,7 +25866,7 @@ DJ Ad Xl Xl -tC +hM af Wf Wf @@ -27299,16 +25918,16 @@ SR TQ in iG -Hz +dQ kB IB Mc Mc nP pf -zw -du -sm +rM +rV +Fc Fc Fc TQ @@ -27319,7 +25938,7 @@ Da Tm Gw qZ -ZI +gG Br gc gc @@ -27329,7 +25948,7 @@ PV gc gc gc -Yb +pI XU gc gc @@ -27350,7 +25969,7 @@ Mh Mh vE pY -Mh +YQ Mh Mh Mh @@ -27374,7 +25993,7 @@ Ti fw Xl Xl -tC +hM af Wf Wf @@ -27433,9 +26052,9 @@ Mc Mc nV pf -zw +rM du -rV +Fc Fc Fc TQ @@ -27450,7 +26069,7 @@ ZI PV Js Mg -NW +Gx Pt QD oE @@ -27460,12 +26079,12 @@ Yb YL SK hw -Cf +Yp LB gc Pb -dM -Cf +VI +Yp ZJ YL gc @@ -27501,7 +26120,7 @@ Zt Ai Xl Xl -tC +hM af Wf Wf @@ -27550,7 +26169,7 @@ Yt al al Qx -BE +NU BX JR Vr @@ -27570,7 +26189,7 @@ ut Vr Vr Vr -ut +AR ZZ qZ ZI @@ -27628,7 +26247,7 @@ Ti fw Xl Xl -eQ +hM af Wf Wf @@ -27755,7 +26374,7 @@ Ms jR Xl Xl -eQ +hM af Wf Wf @@ -27804,7 +26423,7 @@ oi Zu al Qx -BE +NU BX JR Vr @@ -27824,9 +26443,9 @@ ut Vr Vr Vr -ut -ZZ +AR ZZ +lO ZI PV Jx @@ -27882,7 +26501,7 @@ Dy IK Xl Xl -eQ +hM af Wf Wf @@ -27941,19 +26560,19 @@ Mc Mc nX cL -zw +rM du -rV +Fc Fc Fc TQ Tm yC -AJ -De +TQ +Df Tm Bb -ZZ +lO ZI PV JJ @@ -27973,7 +26592,7 @@ ZQ HX ZQ gc -Vw +Yb lh ZQ Ub @@ -28061,22 +26680,22 @@ SR TQ iu iL -Hz +dQ kB IB Mc Mc nY cL -zw +rM du -rV +Fc Fc Fc TQ MU -LV -LV +AJ +TQ Df Tm Wq @@ -28094,7 +26713,7 @@ gc Vw YL gc -yS +TK yS sn sn @@ -28114,9 +26733,9 @@ Le gc Rx Rx -uy +yy Se -uy +yy kk Br jq @@ -28185,7 +26804,7 @@ oi Zu al Qx -BE +NU il iN jO @@ -28195,16 +26814,16 @@ Mc Mc zw zw -zw +rM du -rV +Fc Fc Fc TQ MU -xF +Dg KD -IE +CH Tm Wq qZ @@ -28229,7 +26848,7 @@ Qz RN Yb lh -YL +Iq gc gc gc @@ -28316,7 +26935,7 @@ TQ il SL SL -qJ +kI SL Mc Mc @@ -28324,14 +26943,14 @@ zw zw qc du -rV Fc -ug +Fc +xF Gv Tm -xF -LV -Dg +xG +TQ +oY Tm Wq qZ @@ -28356,7 +26975,7 @@ Qz RN Yb lh -YL +dH gc HX ZQ @@ -28580,9 +27199,9 @@ Tm Mb Zm Mb -Mb -Mb -Mb +EJ +EJ +EJ Mb Zm Mb @@ -28610,7 +27229,7 @@ gc gc Yb lh -Iq +YL RN Qz cw @@ -28721,7 +27340,7 @@ Br JV ZQ ew -UW +ew ew ZQ gc @@ -28730,8 +27349,8 @@ lh ZQ Ub ZQ -Cf -Cf +Yp +Yp ZQ Ub ZQ @@ -28833,11 +27452,11 @@ Qx Qx rq Mc -Vr -ui -ui -ui -Vr +Mc +Mc +Mc +Mc +Mc AK Mc LV @@ -28850,7 +27469,7 @@ ZQ lh lh lh -ZQ +qm gc dt lh @@ -28960,14 +27579,14 @@ al SR qN Mc -WQ -Hz -Hz -Hz -zq +Vr +ui +ui +ui +Vr Mc Dh -Qx +Tm GF qZ ZI @@ -29089,12 +27708,12 @@ rr Mc WQ Hz -kB -wK +ol +Hz zq Mc -EJ -Qx +sD +Tm Gq qZ ZI @@ -29119,10 +27738,10 @@ Br Br lh Gb -Cf +Yp bb -Cf -Cf +Yp +Yp ZJ Bp DO @@ -29212,16 +27831,16 @@ oi Zu al SR -EJ +IZ Mc WQ -Hz +zg Hz xe zq Mc EJ -Qx +Tm Gg ZZ ZI @@ -29231,7 +27850,7 @@ dS Br JW dS -Bc +Br Ud rl lh @@ -29344,7 +27963,7 @@ Mc WQ Hz vP -Hz +Bk zq Mc RO @@ -29352,7 +27971,7 @@ Qx fu fu fu -Br +Bc lh Mw PV @@ -29371,7 +27990,7 @@ PV lh Mw Br -fs +lh ZQ ZQ GA @@ -29469,8 +28088,8 @@ SR rJ Mc WQ -up -Hz +uv +kB Hz zq Mc @@ -29485,7 +28104,7 @@ Xs Br lh Xs -Bc +Br Ul Yb lh @@ -29596,8 +28215,8 @@ SR EJ Mc WQ -uv -kB +Hz +we Hz zq Mc @@ -29612,7 +28231,7 @@ PV Br GC PV -Bc +Br gc Tb lh @@ -29635,7 +28254,7 @@ gc gc gc gc -gc +uX gc gc Bc @@ -29722,11 +28341,11 @@ al SR Mb Mc -WQ -Hz -we -Hz -zq +Vr +ux +ux +ux +Vr Mc Dj Qx @@ -29735,25 +28354,25 @@ al al Bc ZQ -Cf -Cf +Yp +Yp ZQ -Cf -Cf -Cf +Yp +Yp +Yp ZJ lh Gb -Cf +Yp ZQ -Cf -Cf +Yp +Yp ZQ -Cf -Cf +Yp +Yp gc -Bu -YL +lh +dH gc gc gc @@ -29761,7 +28380,7 @@ gc gc xL bb -Cf +Yp Qz Qz Fr @@ -29849,11 +28468,11 @@ al Qx rq Mc -Vr -ux -ux -ux -Vr +Mc +Mc +Mc +Mc +Mc Mc Dk Qx @@ -30388,7 +29007,7 @@ lh MC Br Yb -Iq +xI gc qG RH @@ -30515,7 +29134,7 @@ Kz dS Br Yb -YL +Iq Bc Bc Bc @@ -30624,7 +29243,7 @@ Zu al Bc Bc -Bc +Br Br Br Br @@ -30760,14 +29379,14 @@ bb ZJ GA Gb -Cf -Cf -Cf +Yp +Yp +Yp XL -Cf +Yp bb -Cf -Cf +Yp +Yp ZJ YL Tx @@ -30887,7 +29506,7 @@ Mh VB Xq Ya -Mh +zS ZQ Mh po @@ -31138,8 +29757,8 @@ PK Bc RR Oi -dM -Cf +VI +Yp HX gc Tb diff --git a/maps/templates/baseone.dmm b/maps/templates/baseone.dmm index 2d51be7728..80962bf165 100644 --- a/maps/templates/baseone.dmm +++ b/maps/templates/baseone.dmm @@ -20,10 +20,7 @@ /obj/structure/machinery/faxmachine{ department = "CLASSIFIED" }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/northwest, /area/adminlevel/bunker01/caves) "ag" = ( /obj/structure/surface/table/reinforced, @@ -32,10 +29,7 @@ /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/north, /area/adminlevel/bunker01/command) "ah" = ( /obj/structure/filingcabinet/security, @@ -46,21 +40,15 @@ /area/adminlevel/bunker01/command) "aj" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/carpet/edge{ - dir = 9 - }, +/turf/open/floor/carpet/edge/northwest, /area/adminlevel/bunker01/command) "ak" = ( /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/carpet/edge{ - dir = 1 - }, +/turf/open/floor/carpet/edge/north, /area/adminlevel/bunker01/command) "al" = ( /obj/structure/safe, -/turf/open/floor/carpet/edge{ - dir = 5 - }, +/turf/open/floor/carpet/edge/northeast, /area/adminlevel/bunker01/bathroom) "am" = ( /turf/closed/wall, @@ -73,61 +61,40 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ao" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 4; name = "\improper Toilet" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ap" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aq" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "ar" = ( /obj/structure/machinery/washing_machine, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "as" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "at" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ pixel_y = 6 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "au" = ( /obj/structure/surface/table/reinforced, @@ -145,10 +112,7 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/west, /area/adminlevel/bunker01/caves) "av" = ( /obj/structure/bed/chair/comfy{ @@ -195,9 +159,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/adminlevel/bunker01/command) "az" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -218,54 +180,37 @@ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/adminlevel/bunker01/bathroom) "aB" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aC" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aE" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aF" = ( /obj/structure/curtain/shower, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/caves) "aG" = ( /obj/structure/machinery/shower{ @@ -276,10 +221,7 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/caves) "aH" = ( /obj/structure/surface/table/reinforced, @@ -288,19 +230,13 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "emerald" - }, +/turf/open/floor/almayer/emerald/southwest, /area/adminlevel/bunker01/caves) "aI" = ( /obj/structure/machinery/power/apc/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emeraldcorner" - }, +/turf/open/floor/almayer/emeraldcorner/west, /area/adminlevel/bunker01/command) "aJ" = ( /obj/structure/machinery/disposal, @@ -315,9 +251,7 @@ /obj/structure/sign/safety/terminal{ pixel_x = -32 }, -/turf/open/floor/carpet/edge{ - dir = 8 - }, +/turf/open/floor/carpet/edge/west, /area/adminlevel/bunker01/command) "aL" = ( /obj/structure/pipes/vents/pump{ @@ -331,18 +265,13 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 4 - }, +/turf/open/floor/carpet/edge/east, /area/adminlevel/bunker01/bathroom) "aN" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -350,19 +279,13 @@ icon_state = "intact-supply" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aP" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aQ" = ( /turf/closed/wall, @@ -377,9 +300,7 @@ /obj/structure/surface/table/holotable/wood, /obj/item/clothing/mask/cigarette/cigar/havana, /obj/item/ashtray/glass, -/turf/open/floor/carpet/edge{ - dir = 10 - }, +/turf/open/floor/carpet/edge/southwest, /area/adminlevel/bunker01/command) "aT" = ( /obj/structure/closet/cabinet, @@ -389,9 +310,7 @@ "aU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/edge{ - dir = 6 - }, +/turf/open/floor/carpet/edge/southeast, /area/adminlevel/bunker01/bathroom) "aV" = ( /obj/structure/sink{ @@ -402,10 +321,7 @@ /obj/structure/mirror{ pixel_y = -28 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aW" = ( /obj/structure/mirror{ @@ -416,18 +332,12 @@ pixel_x = 0; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aX" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bathroom) "aY" = ( /obj/structure/closet/secure_closet/personal, @@ -480,10 +390,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "bh" = ( /turf/closed/wall, @@ -564,62 +471,41 @@ "bx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "by" = ( /obj/structure/machinery/light{ dir = 1 }, /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bz" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bA" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/juicer, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bB" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/bunker01/hydroponics) "bC" = ( /obj/structure/surface/rack, /obj/item/storage/bag/plants, /obj/item/tool/shovel/spade, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/bunker01/hydroponics) "bD" = ( -/obj/structure/machinery/hydro_floodlight, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/bunker01/hydroponics) "bE" = ( /obj/structure/bed, @@ -672,10 +558,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "bL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -686,16 +569,10 @@ dir = 8; icon_state = "pipe-c" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bM" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bN" = ( /obj/structure/surface/table/reinforced, @@ -704,30 +581,21 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "bO" = ( /obj/structure/machinery/light{ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "bP" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "bQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "bR" = ( /obj/structure/pipes/vents/pump{ @@ -842,10 +710,7 @@ dir = 5; icon_state = "intact-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cd" = ( /obj/structure/surface/table/reinforced, @@ -853,20 +718,14 @@ dir = 1; icon_state = "map-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "ce" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cf" = ( /obj/structure/surface/table/reinforced, @@ -875,10 +734,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cg" = ( /mob/living/simple_animal/chicken{ @@ -888,10 +744,7 @@ name = "\improper Charlie"; voice_name = "chicken" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "ch" = ( /obj/structure/pipes/vents/pump/on, @@ -904,10 +757,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "cj" = ( /obj/structure/closet/secure_closet/personal, @@ -960,40 +810,28 @@ "ct" = ( /obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "cu" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/rollingpin, /obj/item/tool/kitchen/knife, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cv" = ( /obj/structure/machinery/processor, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cw" = ( /obj/structure/sign/safety/biolab, /turf/closed/wall, /area/adminlevel/bunker01/kitchen) "cx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "cy" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1004,10 +842,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "cA" = ( /turf/closed/wall, @@ -1031,10 +866,7 @@ "cF" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/bedroom) "cG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1045,10 +877,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cH" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1077,16 +906,11 @@ /obj/structure/machinery/power/apc/antag{ pixel_y = -25 }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/bunker01/hydroponics) "cK" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/bunker01/hydroponics) "cL" = ( /obj/structure/surface/rack, @@ -1096,10 +920,7 @@ /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves) "cM" = ( /obj/structure/surface/rack, @@ -1115,10 +936,7 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cN" = ( /obj/structure/surface/rack, @@ -1127,40 +945,26 @@ /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cO" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cP" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/storage) "cQ" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/storage) "cR" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cS" = ( /turf/open/mars_cave, @@ -1188,37 +992,23 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/caves) "cV" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, +/turf/open/floor/almayer/green, /area/adminlevel/bunker01/storage) "cW" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/bunker01/storage) "cX" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/east, /area/adminlevel/bunker01/storage) "cY" = ( /obj/structure/machinery/power/apc/antag{ dir = 4; pixel_x = 25 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/storage) "cZ" = ( /turf/closed/wall/r_wall, @@ -1261,39 +1051,27 @@ /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/caves) "dg" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "dh" = ( /obj/structure/largecrate/supply/supplies/sandbags, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "di" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/storage) "dj" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, +/turf/open/floor/almayer/greencorner/west, /area/adminlevel/bunker01/storage) "dk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1370,9 +1148,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dr" = ( /obj/structure/disposalpipe/segment, @@ -1384,9 +1160,7 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dt" = ( /obj/structure/machinery/firealarm{ @@ -1398,9 +1172,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "du" = ( /turf/closed/wall/r_wall, @@ -1410,15 +1182,10 @@ /area/adminlevel/bunker01/engineering) "dw" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "dx" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/storage) "dy" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1429,10 +1196,7 @@ /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/storage) "dA" = ( /obj/structure/sign/safety/storage{ @@ -1515,9 +1279,7 @@ input_level = 50000; inputting = 1 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "dL" = ( /obj/structure/machinery/power/smes/buildable/charged{ @@ -1529,32 +1291,22 @@ dir = 1; pixel_y = 20 }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "dM" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southwest, /area/adminlevel/bunker01/storage) "dN" = ( /obj/structure/machinery/autolathe/full, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/bunker01/storage) "dO" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "dP" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1589,20 +1341,17 @@ dir = 1; icon_state = "term" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/closet/hydrant{ + pixel_x = -32 }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "dU" = ( /obj/structure/machinery/power/terminal{ dir = 1; icon_state = "term" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/bunker01/engineering) "dV" = ( /obj/structure/sign/safety/electronics, @@ -1669,49 +1418,33 @@ /area/adminlevel/bunker01/mainroom) "ed" = ( /obj/structure/largecrate/supply/weapons/m56d, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "ee" = ( /obj/structure/closet/crate/secure/mortar_ammo/mortar_kit, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "ef" = ( /turf/open/mars_cave, /area/adminlevel/bunker01/mainroom) "eg" = ( -/obj/structure/closet/firecloset, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/bunker01/engineering) "eh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/north, /area/adminlevel/bunker01/engineering) "ei" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/bunker01/engineering) "ej" = ( /obj/structure/machinery/firealarm{ pixel_y = 24 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "ek" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -1723,10 +1456,7 @@ /turf/open/floor/almayer, /area/adminlevel/bunker01/engineering) "el" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/engineering) "em" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1745,10 +1475,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/engineering) "eo" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, @@ -1777,9 +1504,7 @@ dir = 8; pixel_x = -25 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "er" = ( /obj/structure/largecrate/supply/supplies/flares, @@ -1787,21 +1512,16 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "es" = ( /obj/structure/closet/crate/secure/mortar_ammo/full{ name = "\improper M402 mortar ammo crate" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "et" = ( /obj/structure/surface/table/reinforced, -/obj/item/clothing/gloves/yellow, /obj/structure/pipes/vents/pump{ dir = 4 }, @@ -1813,10 +1533,10 @@ dir = 8; pixel_x = -25 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "eu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1858,10 +1578,7 @@ "ex" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/almayer/green/southeast, /area/adminlevel/bunker01/engineering) "ey" = ( /obj/structure/disposalpipe/segment, @@ -1884,32 +1601,19 @@ /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eB" = ( -/obj/structure/machinery/power/geothermal{ - buildstate = 4; - icon_state = "on100"; - is_on = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eC" = ( /obj/structure/machinery/light/small{ pixel_y = 0 }, -/obj/structure/machinery/power/geothermal{ - buildstate = 4; - icon_state = "on100"; - is_on = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/almayer/orangefull, /area/adminlevel/bunker01/engineering) "eD" = ( /obj/structure/sign/safety/electronics, @@ -1944,10 +1648,7 @@ dir = 1 }, /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/bunker01/security) "eJ" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -1957,10 +1658,7 @@ "eK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/bunker01/security) "eL" = ( /obj/structure/machinery/power/apc/antag{ @@ -2013,16 +1711,10 @@ /area/adminlevel/bunker01/security) "eS" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/bunker01/security) "eT" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/bunker01/security) "eU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2222,20 +1914,13 @@ /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner, /area/adminlevel/bunker01/security) "fo" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "fp" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/bunker01/security) "fq" = ( /obj/structure/sign/safety/hazard, @@ -2250,10 +1935,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fs" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2264,10 +1946,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ft" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2278,10 +1957,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fu" = ( /obj/structure/surface/table/reinforced, @@ -2293,10 +1969,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fv" = ( /obj/structure/surface/table/reinforced, @@ -2308,9 +1981,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "fw" = ( /turf/closed/wall/r_wall, @@ -2324,9 +1995,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fy" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -2346,9 +2015,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fz" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -2358,9 +2025,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fA" = ( /turf/closed/wall/rock/brown, @@ -2385,50 +2050,31 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/bunker01/medbay) "fF" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fG" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "fH" = ( /obj/structure/window/framed/colony, /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "fI" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "fJ" = ( /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2436,49 +2082,33 @@ icon_state = "intact-supply" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fL" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fM" = ( /obj/structure/machinery/medical_pod/autodoc, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fN" = ( /obj/structure/machinery/autodoc_console, /obj/structure/sign/safety/autodoc{ pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fO" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "fP" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "fQ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ @@ -2504,20 +2134,14 @@ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/east, /area/adminlevel/bunker01/security) "fT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/bunker01/security) "fU" = ( /obj/structure/bed, @@ -2525,9 +2149,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/bunker01/security) "fV" = ( /obj/structure/machinery/chem_dispenser{ @@ -2539,16 +2161,10 @@ pixel_x = -24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "fW" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/bunker01/medbay) "fX" = ( /obj/structure/surface/table/reinforced, @@ -2561,27 +2177,21 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1; icon_state = "map-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "fZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "ga" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -2594,16 +2204,12 @@ icon_state = "intact-supply" }, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gb" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2615,10 +2221,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gd" = ( /obj/structure/toilet{ @@ -2638,23 +2241,17 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gg" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gh" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gi" = ( /obj/structure/toilet{ @@ -2664,16 +2261,11 @@ /obj/structure/machinery/light/small{ pixel_y = 0 }, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/bunker01/security) "gj" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "gk" = ( /obj/structure/surface/table/reinforced, @@ -2684,9 +2276,7 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gl" = ( /obj/structure/surface/table/reinforced, @@ -2705,45 +2295,32 @@ /obj/item/stack/sheet/mineral/phoron{ amount = 25 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "go" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gp" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gq" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gr" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2751,10 +2328,7 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gs" = ( /obj/structure/machinery/door/airlock/almayer/security{ @@ -2786,17 +2360,13 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gx" = ( /obj/structure/machinery/iv_drip, @@ -2804,19 +2374,14 @@ dir = 8; icon_state = "tube1" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "gy" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gz" = ( /obj/structure/bed, @@ -2826,21 +2391,15 @@ pixel_y = -23 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gA" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gB" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gC" = ( /obj/structure/machinery/autodoc_console, @@ -2848,17 +2407,12 @@ pixel_y = -32 }, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "gD" = ( /obj/structure/machinery/autodoc_console, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gE" = ( /turf/open/floor/almayer, @@ -2876,17 +2430,11 @@ /obj/item/storage/box/masks, /obj/item/storage/box/gloves, /obj/item/storage/box/gloves, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gH" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "gI" = ( /obj/structure/window/framed/colony, @@ -2897,10 +2445,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - dir = 2; - icon_state = "green" - }, +/turf/open/floor/almayer/green/south, /area/adminlevel/bunker01/medbay) "gJ" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2911,9 +2456,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gK" = ( /obj/structure/window/framed/colony, @@ -2924,9 +2467,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "gL" = ( /obj/structure/window/framed/colony, @@ -2937,9 +2478,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/bunker01/medbay) "gM" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2950,9 +2489,7 @@ req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gN" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -2965,9 +2502,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gO" = ( /obj/structure/pipes/vents/pump{ @@ -3002,28 +2537,20 @@ dir = 4; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "gS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "gT" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "gU" = ( /obj/structure/machinery/door_control{ @@ -3031,18 +2558,13 @@ name = "Surgery Door Release"; pixel_x = -23 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gV" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "gW" = ( /obj/structure/machinery/door_control{ @@ -3050,10 +2572,7 @@ name = "Surgery Door Release"; pixel_x = -23 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "gX" = ( /obj/structure/morgue/crematorium{ @@ -3116,16 +2635,11 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "hb" = ( /obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "hc" = ( /obj/structure/pipes/vents/pump{ @@ -3137,10 +2651,7 @@ pixel_x = 24; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "hd" = ( /obj/structure/machinery/light{ @@ -3150,19 +2661,14 @@ /obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "he" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9; icon_state = "intact-supply" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "hf" = ( /obj/structure/sink{ @@ -3171,10 +2677,7 @@ pixel_x = 11; pixel_y = 0 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "hg" = ( /obj/structure/machinery/light/small{ @@ -3207,16 +2710,11 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "hj" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hk" = ( /obj/structure/sign/safety/medical{ @@ -3224,28 +2722,18 @@ pixel_y = -32 }, /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hl" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hm" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "hn" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "ho" = ( /obj/structure/machinery/optable, @@ -3255,9 +2743,7 @@ pixel_y = -23 }, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "hp" = ( /obj/structure/surface/table/reinforced, @@ -3266,10 +2752,7 @@ 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/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "hq" = ( /obj/structure/machinery/optable, @@ -3279,9 +2762,7 @@ pixel_y = -23 }, /obj/item/tank/anesthetic, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) (1,1,1) = {" diff --git a/maps/templates/basetwo.dmm b/maps/templates/basetwo.dmm index abc2af2964..1051f515c9 100644 --- a/maps/templates/basetwo.dmm +++ b/maps/templates/basetwo.dmm @@ -64,75 +64,46 @@ /area/adminlevel/bunker01/medbay) "an" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "ao" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ap" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "aq" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "ar" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "as" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "at" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "au" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "av" = ( /obj/structure/machinery/autodoc_console{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "aw" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "ax" = ( /turf/closed/wall/r_wall/bunker, @@ -148,67 +119,40 @@ /area/adminlevel/bunker01/mainroom) "az" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "aA" = ( /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aB" = ( /obj/structure/bed, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aC" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aD" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/southwest, /area/adminlevel/bunker01/medbay) "aE" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/east, /area/adminlevel/bunker01/medbay) "aF" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/bunker01/engineering) "aG" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "aH" = ( /obj/structure/machinery/recharge_station, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/bunker01/engineering) "aI" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/bunker01/engineering) "aJ" = ( /turf/open/floor/almayer, @@ -218,26 +162,16 @@ /area/adminlevel/bunker01/mainroom) "aL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "aN" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aO" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/northwest, /area/adminlevel/bunker01/medbay) "aP" = ( /obj/structure/surface/rack, @@ -246,19 +180,13 @@ /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, /obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "aQ" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/engineering) "aR" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/bunker01/engineering) "aS" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -268,56 +196,38 @@ req_one_access = null }, /obj/structure/machinery/door/firedoor/border_only/almayer/antag, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "aT" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "aU" = ( /obj/structure/machinery/body_scanconsole{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aV" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aW" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aX" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aY" = ( /obj/structure/machinery/autodoc_console{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "aZ" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "ba" = ( /obj/structure/surface/rack, @@ -333,10 +243,7 @@ /obj/item/stack/sheet/glass{ amount = 50 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "bb" = ( /turf/open/floor/plating/plating_catwalk, @@ -347,9 +254,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/engineering) "bd" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ @@ -358,15 +263,11 @@ req_access = null; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "be" = ( /obj/structure/window/framed/colony/reinforced, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bf" = ( /obj/structure/surface/rack, @@ -376,10 +277,7 @@ /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, /obj/item/storage/box/lights/mixed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/bunker01/engineering) "bg" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, @@ -388,27 +286,17 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bh" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "bi" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "bj" = ( /obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/north, /area/adminlevel/bunker01/medbay) "bk" = ( /obj/structure/surface/table/reinforced, @@ -448,56 +336,36 @@ /obj/item/storage/belt/medical/lifesaver/full, /obj/item/storage/belt/medical/lifesaver/upp/full, /obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "bl" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/north, /area/adminlevel/bunker01/medbay) "bm" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner, /area/adminlevel/bunker01/medbay) "bn" = ( /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/bunker01/engineering) "bo" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/bunker01/engineering) "bp" = ( /obj/structure/surface/table/reinforced, /obj/item/clothing/gloves/yellow, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/bunker01/engineering) "bq" = ( /obj/structure/surface/table/reinforced, /obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/bunker01/engineering) "br" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "bs" = ( /obj/structure/machinery/door_control{ @@ -505,9 +373,7 @@ name = "Base Shutters"; pixel_x = 24 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "bt" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, @@ -516,9 +382,7 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bu" = ( /turf/closed/wall/r_wall/bunker, @@ -528,9 +392,7 @@ id = "base_blastdoor"; name = "\improper Bunker Blast Doors" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/bunker01/mainroom) "bw" = ( /obj/structure/machinery/smartfridge/secure/medbay, @@ -539,9 +401,7 @@ id = "base_medbay"; name = "\improper Medbay Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/medbay) "bx" = ( /obj/structure/machinery/door_control{ @@ -550,17 +410,12 @@ pixel_x = -23; pixel_y = -23 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side/west, /area/adminlevel/bunker01/medbay) "by" = ( /obj/structure/surface/table/reinforced, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "bz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ @@ -569,9 +424,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/bunker01/medbay) "bA" = ( /obj/structure/machinery/cm_vending/clothing/antag, @@ -583,34 +436,25 @@ /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, /obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bC" = ( /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, /obj/structure/largecrate/supply/supplies/plasteel, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bD" = ( /obj/structure/largecrate/supply/supplies/sandbags, /obj/structure/largecrate/supply/supplies/sandbags, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/mainroom) "bE" = ( /obj/structure/machinery/chem_dispenser{ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "bF" = ( /obj/structure/surface/table/reinforced, @@ -623,9 +467,7 @@ /obj/item/storage/box/pillbottles, /obj/item/storage/box/pillbottles, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bG" = ( /obj/structure/surface/table/reinforced, @@ -638,15 +480,10 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bH" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "bI" = ( /obj/structure/surface/table/reinforced, @@ -662,38 +499,26 @@ /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/west, /area/adminlevel/bunker01/medbay) "bJ" = ( /obj/structure/machinery/cm_vending/sorted/medical/marinemed/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bK" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood/antag, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, +/turf/open/floor/almayer/sterile_green_side, /area/adminlevel/bunker01/medbay) "bL" = ( /obj/structure/machinery/cm_vending/sorted/medical/antag, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, +/turf/open/floor/almayer/sterile_green_corner/east, /area/adminlevel/bunker01/medbay) "bM" = ( /obj/structure/window/reinforced{ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bN" = ( /obj/structure/window/reinforced{ @@ -704,18 +529,14 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bO" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/gear) "bP" = ( /turf/closed/wall/r_wall/bunker, @@ -729,9 +550,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/gear) "bS" = ( /obj/structure/machinery/cm_vending/gear/antag, @@ -742,9 +561,7 @@ dir = 4; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bU" = ( /obj/structure/window/reinforced{ @@ -755,18 +572,14 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bV" = ( /obj/structure/window/reinforced{ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "bW" = ( /obj/structure/machinery/cm_vending/gear/antag_guns, @@ -778,9 +591,7 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/storage) "bY" = ( /turf/open/floor/plating/plating_catwalk, @@ -795,27 +606,16 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cb" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/mainroom) "cc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/mainroom) "cd" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/mainroom) "ce" = ( /obj/structure/machinery/door/airlock/multi_tile/secure{ @@ -823,33 +623,21 @@ name = "\improper Entrance"; req_access_txt = "201" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cf" = ( /obj/structure/largecrate/supply/weapons/m56d, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cg" = ( /obj/structure/closet/crate/secure/mortar_ammo/mortar_kit, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "ch" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/mainroom) "ci" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/mainroom) "cj" = ( /turf/open/mars_cave, @@ -860,17 +648,13 @@ dir = 8; health = 80 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cl" = ( /obj/structure/closet/crate/secure/mortar_ammo/full{ name = "\improper M402 mortar ammo crate" }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/bunker01/storage) "cm" = ( /obj/structure/machinery/door_control{ @@ -922,9 +706,7 @@ id = "base_1_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cs" = ( /obj/structure/window_frame/colony/reinforced, @@ -932,9 +714,7 @@ id = "base_2_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "ct" = ( /obj/structure/window_frame/colony/reinforced, @@ -942,9 +722,7 @@ id = "base_3_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cu" = ( /obj/structure/window_frame/colony/reinforced, @@ -952,9 +730,7 @@ id = "base_4_shutter"; name = "\improper Bunker Shutters" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/mainroom) "cv" = ( /turf/closed/wall/r_wall/bunker, @@ -966,18 +742,13 @@ req_access_txt = "201"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/caves/outpost) "cx" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves/outpost) "cy" = ( /turf/open/floor/almayer, @@ -986,10 +757,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northeast, /area/adminlevel/bunker01/caves/outpost) "cA" = ( /obj/structure/window/framed/colony/reinforced, @@ -997,10 +765,7 @@ /area/adminlevel/bunker01/caves/outpost) "cB" = ( /obj/structure/barricade/plasteel, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cC" = ( /obj/structure/barricade/metal/wired, @@ -1008,64 +773,37 @@ /area/adminlevel/bunker01/caves/outpost) "cD" = ( /obj/structure/barricade/plasteel, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cE" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/almayer/green/northwest, /area/adminlevel/bunker01/caves/outpost) "cF" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/caves/outpost) "cG" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, +/turf/open/floor/almayer/green/north, /area/adminlevel/bunker01/caves/outpost) "cH" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cI" = ( /obj/structure/barricade/plasteel/wired, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cL" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, +/turf/open/floor/almayer/green/west, /area/adminlevel/bunker01/caves/outpost) "cM" = ( /obj/structure/barricade/plasteel/wired, @@ -1073,10 +811,7 @@ /area/adminlevel/bunker01/caves/outpost) "cN" = ( /obj/structure/barricade/metal/wired, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, +/turf/open/floor/almayer/green/east, /area/adminlevel/bunker01/caves/outpost) "cO" = ( /obj/structure/barricade/plasteel, @@ -1131,59 +866,38 @@ /area/adminlevel/bunker01/caves/xeno) "cY" = ( /obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "cZ" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "da" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "db" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/juicer, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dc" = ( /turf/closed/wall, /area/adminlevel/bunker01/hydroponics) "dd" = ( /obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/northwest, /area/adminlevel/bunker01/hydroponics) "de" = ( /obj/structure/surface/rack, /obj/item/storage/bag/plants, /obj/item/tool/shovel/spade, /obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/north, /area/adminlevel/bunker01/hydroponics) "df" = ( -/obj/structure/machinery/hydro_floodlight, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/almayer/blue/northeast, /area/adminlevel/bunker01/hydroponics) "dg" = ( /obj/effect/alien/weeds/node/pylon/core{ @@ -1196,15 +910,10 @@ name = "\improper Kitchen"; req_access_txt = "201" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/kitchen) "di" = ( -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dj" = ( /obj/structure/surface/table/reinforced, @@ -1213,26 +922,17 @@ dir = 4; pixel_x = 25 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/west, /area/adminlevel/bunker01/hydroponics) "dl" = ( /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "dm" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "dn" = ( /obj/structure/surface/table/reinforced, @@ -1241,10 +941,7 @@ dir = 8; id_tag = "mining_outpost_pump" }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "do" = ( /turf/closed/wall/r_wall/bunker, @@ -1254,32 +951,21 @@ dir = 2; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/breakroom) "dq" = ( /obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dr" = ( /obj/structure/surface/table/reinforced, /obj/item/tool/kitchen/rollingpin, /obj/item/tool/kitchen/knife, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "ds" = ( /obj/structure/machinery/processor, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dt" = ( /obj/structure/sign/safety/biolab, @@ -1287,10 +973,7 @@ /area/adminlevel/bunker01/hydroponics) "du" = ( /obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/east, /area/adminlevel/bunker01/hydroponics) "dv" = ( /turf/open/floor/wood, @@ -1312,10 +995,7 @@ dir = 1; pixel_y = -10 }, -/turf/open/floor/prison{ - dir = 2; - icon_state = "sterile_white" - }, +/turf/open/floor/prison/sterile_white/south, /area/adminlevel/bunker01/kitchen) "dA" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -1325,16 +1005,11 @@ /turf/open/floor/almayer, /area/adminlevel/bunker01/hydroponics) "dB" = ( -/turf/open/floor/almayer{ - icon_state = "blue" - }, +/turf/open/floor/almayer/blue, /area/adminlevel/bunker01/hydroponics) "dC" = ( /obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, +/turf/open/floor/almayer/blue/southeast, /area/adminlevel/bunker01/hydroponics) "dD" = ( /obj/structure/bed/chair, @@ -1381,9 +1056,7 @@ /obj/structure/machinery/door/firedoor/border_only/almayer/antag{ dir = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/bunker01/breakroom) (1,1,1) = {" diff --git a/maps/templates/freelancer_ert_station.dmm b/maps/templates/freelancer_ert_station.dmm deleted file mode 100644 index 44d47c7952..0000000000 --- a/maps/templates/freelancer_ert_station.dmm +++ /dev/null @@ -1,1722 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/space/basic, -/area/space) -"r" = ( -/obj/docking_port/stationary/emergency_response/idle_port1, -/turf/open/floor/plating, -/area/space) -"t" = ( -/turf/closed/wall/r_wall/unmeltable, -/area/space) -"u" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/almayer, -/area/space) -"x" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/plating/almayer, -/area/space) -"E" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/plating/almayer, -/area/space) -"U" = ( -/turf/open/floor/plating/almayer, -/area/space) -"V" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/almayer, -/area/space) -"X" = ( -/turf/open/floor/plating, -/area/space) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -t -U -x -x -x -x -x -x -x -x -x -x -x -x -x -x -x -U -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -r -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -t -V -X -X -X -X -X -X -X -X -X -X -X -X -X -X -X -E -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -t -U -u -u -u -u -u -u -u -u -u -u -u -u -u -u -u -U -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -t -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/maps/templates/clf_ert_station.dmm b/maps/templates/lazy_templates/clf_ert_station.dmm similarity index 88% rename from maps/templates/clf_ert_station.dmm rename to maps/templates/lazy_templates/clf_ert_station.dmm index aa48ff8d9f..6742a3cf7b 100644 --- a/maps/templates/clf_ert_station.dmm +++ b/maps/templates/lazy_templates/clf_ert_station.dmm @@ -1,57 +1,21 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east, +/area/adminlevel/ert_station/clf_station) "ac" = ( /obj/structure/target/syndicate, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"at" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.0 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/clf_station) -"av" = ( -/obj/structure/closet/crate, -/obj/item/explosive/grenade/phosphorus/clf, -/turf/open/floor/wood{ - icon_state = "wood-broken4" +"aq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + pixel_y = 10 }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "ax" = ( /turf/closed/wall/rock/brown, /area/adminlevel/ert_station/clf_station) -"az" = ( -/obj/structure/prop/brazier/frame/full, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, -/area/adminlevel/ert_station/clf_station) "aA" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/roller, @@ -60,6 +24,10 @@ /obj/item/roller, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"aB" = ( +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass2, +/area/adminlevel/ert_station/clf_station) "aE" = ( /obj/structure/bed/chair{ dir = 4 @@ -80,17 +48,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/clf_station) -"aN" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/adminlevel/ert_station/clf_station) "aO" = ( /obj/structure/stairs/perspective{ color = "#6b675e"; @@ -120,6 +77,10 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"bf" = ( +/obj/vehicle/powerloader/ft, +/turf/open/floor/plating/asteroidfloor/north, +/area/adminlevel/ert_station/clf_station) "by" = ( /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) @@ -133,19 +94,40 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"bT" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.0 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/stock_parts/subspace/crystal, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/clf_station) "bX" = ( /obj/structure/platform/kutjevo{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) -"cc" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "ce" = ( /obj/item/trash/chips, /obj/structure/machinery/light/small/built{ @@ -153,39 +135,13 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"cx" = ( +"do" = ( /obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/adminlevel/ert_station/clf_station) -"cB" = ( -/obj/vehicle/powerloader/ft, -/turf/open/floor/plating{ dir = 1; - icon_state = "asteroidfloor" - }, -/area/adminlevel/ert_station/clf_station) -"cH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/adminlevel/ert_station/clf_station) -"dd" = ( -/turf/open/gm/coast{ - dir = 1 - }, -/area/adminlevel/ert_station/clf_station) -"dg" = ( -/obj/item/prop/helmetgarb/spent_buckshot, -/turf/open/floor/wood{ - icon_state = "wood-broken" + pixel_y = -10 }, +/obj/item/tool/soap, +/turf/open/floor/freezerfloor, /area/adminlevel/ert_station/clf_station) "dI" = ( /obj/structure/flora/bush/ausbushes/genericbush, @@ -232,6 +188,10 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"eB" = ( +/obj/structure/prop/brazier/frame/full, +/turf/open/floor/plating/asteroidwarning, +/area/adminlevel/ert_station/clf_station) "eE" = ( /obj/structure/largecrate/black_market/clf_supplies, /turf/open/auto_turf/strata_grass/layer1, @@ -253,12 +213,11 @@ /obj/structure/window/framed/wood, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"fd" = ( -/obj/structure/closet/secure_closet/freezer/fridge/groceries, -/obj/structure/machinery/light/small/built, -/turf/open/floor/prison{ - icon_state = "kitchen" +"eR" = ( +/obj/structure/platform/kutjevo{ + dir = 4 }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "fk" = ( /obj/structure/pipes/vents/pump, @@ -271,6 +230,12 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"fw" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/adminlevel/ert_station/clf_station) "fx" = ( /obj/structure/largecrate/supply/medicine/blood, /turf/open/floor/wood, @@ -291,30 +256,18 @@ /obj/item/device/encryptionkey/clf, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"gi" = ( +"gf" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/drinks/bottle/whiskey, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "gj" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"gN" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) -"hd" = ( -/obj/structure/reagent_dispensers/beerkeg{ - density = 0 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"gp" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "hr" = ( /obj/structure/machinery/light/small/built{ @@ -322,42 +275,21 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"hE" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood, +"hw" = ( +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) -"hL" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.0 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 +"hy" = ( +/obj/structure/toilet{ + pixel_y = 16 }, -/obj/item/weapon/gun/pistol/clfpistol, /obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 8 }, +/turf/open/floor/wood/wood_broken6, +/area/adminlevel/ert_station/clf_station) +"hE" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "hO" = ( /obj/item/reagent_container/food/drinks/bottle/whiskey, @@ -414,16 +346,9 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) -"jj" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 10 - }, -/obj/structure/platform_decoration/kutjevo{ - dir = 8 - }, -/turf/open/gm/grass{ - icon_state = "grass2" - }, +"jd" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "jp" = ( /obj/structure/surface/table/woodentable/poor, @@ -438,6 +363,13 @@ /obj/structure/flora/jungle/plantbot1, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"kd" = ( +/obj/structure/largecrate/supply/weapons/shotgun, +/obj/structure/platform/kutjevo{ + dir = 8 + }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) "ki" = ( /obj/structure/largecrate/black_market/confiscated_equipment, /turf/open/auto_turf/strata_grass/layer1, @@ -492,12 +424,32 @@ /obj/item/reagent_container/food/drinks/shaker, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"kV" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light/small/built, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "la" = ( /obj/structure/platform/kutjevo{ dir = 4 }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"li" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken, +/area/adminlevel/ert_station/clf_station) +"lj" = ( +/obj/structure/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "lp" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/explosive/grenade/incendiary/molotov, @@ -513,14 +465,9 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"lN" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +"lO" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "lT" = ( /obj/structure/platform/kutjevo{ @@ -546,13 +493,6 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"me" = ( -/obj/structure/platform_decoration/kutjevo, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "mk" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -560,17 +500,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"ms" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/obj/item/spacecash/c50, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "mt" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/clothing/suit/chef/classic, @@ -581,14 +510,13 @@ "mw" = ( /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"mR" = ( -/obj/structure/machinery/gibber{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"my" = ( +/turf/open/floor/freezerfloor, +/area/adminlevel/ert_station/clf_station) +"mB" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas/swat, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) "ne" = ( /obj/structure/bed{ @@ -599,6 +527,9 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"nj" = ( +/turf/open/gm/coast/south_east, +/area/adminlevel/ert_station/clf_station) "nn" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 @@ -617,13 +548,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"nC" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "nJ" = ( /obj/item/clothing/shoes/jackboots, /turf/open/floor/wood, @@ -640,6 +564,9 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"nS" = ( +/turf/open/floor/plating/asteroidwarning/east, +/area/adminlevel/ert_station/clf_station) "oc" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/shotgun/slugs, @@ -650,13 +577,12 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"om" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner2" - }, +"oy" = ( +/obj/item/trash/candy, +/obj/structure/machinery/light/small/built, +/turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"ow" = ( +"oL" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -681,21 +607,11 @@ /obj/item/bedsheet/brown{ pixel_y = 13 }, -/obj/item/stock_parts/subspace/crystal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/clf_station) -"oy" = ( -/obj/item/trash/candy, -/obj/structure/machinery/light/small/built, -/turf/open/floor/wood, -/area/adminlevel/ert_station/clf_station) -"oI" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +/obj/item/weapon/gun/pistol/clfpistol, +/obj/structure/machinery/light/small/built{ + dir = 1 }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "oN" = ( /obj/structure/flora/jungle/vines, @@ -710,61 +626,77 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"pk" = ( -/obj/structure/flora/grass/tallgrass/jungle, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"pp" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/grass{ - icon_state = "grass2" +"pe" = ( +/mob/living/simple_animal/cat{ + name = "Edwin" }, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) -"pE" = ( -/obj/structure/platform/kutjevo, -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 9 +"pf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) -"pF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/area/adminlevel/ert_station/clf_station) -"pY" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder{ - dir = 8 +/obj/structure/bed{ + can_buckle = 0 }, -/area/adminlevel/ert_station/clf_station) -"qa" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +/obj/item/bedsheet/brown{ + layer = 3.0 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 }, +/obj/structure/machinery/light/small/built, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) -"qb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +"pk" = ( +/obj/structure/flora/grass/tallgrass/jungle, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"po" = ( +/obj/structure/closet/crate, +/obj/item/ammo_magazine/pistol/clfpistol, +/obj/item/ammo_magazine/pistol/clfpistol, +/obj/item/ammo_magazine/pistol/clfpistol, +/obj/item/ammo_magazine/pistol/clfpistol, +/turf/open/floor/wood/wood_broken3, +/area/adminlevel/ert_station/clf_station) +"py" = ( +/obj/structure/platform/kutjevo{ + dir = 4 }, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) -"ql" = ( -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/grass{ - icon_state = "grass2" +"pE" = ( +/obj/structure/platform/kutjevo, +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 9 }, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"pJ" = ( +/turf/open/gm/coast/south, /area/adminlevel/ert_station/clf_station) "qy" = ( /obj/structure/flora/bush/ausbushes/reedbush, /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) +"qW" = ( +/obj/structure/closet/crate, +/obj/item/explosive/grenade/phosphorus/clf, +/turf/open/floor/wood/wood_broken4, +/area/adminlevel/ert_station/clf_station) "rm" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/device/healthanalyzer{ @@ -772,11 +704,32 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"rz" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison{ - icon_state = "kitchen" +"rx" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 }, +/obj/item/bedsheet/brown{ + layer = 3.0 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/clf_station) "rD" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -791,6 +744,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"rW" = ( +/turf/open/floor/wood/wood_broken, +/area/adminlevel/ert_station/clf_station) +"rX" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "rZ" = ( /obj/structure/platform/kutjevo, /obj/structure/flora/jungle/vines/heavy, @@ -801,19 +762,6 @@ /obj/item/weapon/throwing_knife, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"sx" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/handcuffs, -/turf/open/floor/wood, -/area/adminlevel/ert_station/clf_station) -"sC" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "sK" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/smg/uzi, @@ -830,24 +778,24 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"sR" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/adminlevel/ert_station/clf_station) "ta" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"ts" = ( -/obj/structure/flora/grass/tallgrass/jungle/corner{ - dir = 5 - }, -/turf/open/gm/grass{ - icon_state = "grass2" - }, -/area/adminlevel/ert_station/clf_station) "tt" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"ty" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/asteroidfloor/north, +/area/adminlevel/ert_station/clf_station) "tz" = ( /obj/structure/surface/table/woodentable/poor, /obj/effect/landmark/wo_supplies/storage/belts/lifesaver, @@ -900,14 +848,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"up" = ( -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/adminlevel/ert_station/clf_station) "uF" = ( /obj/structure/platform/kutjevo{ dir = 1 @@ -934,12 +874,22 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) +"vf" = ( +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/wood/wood_broken3, +/area/adminlevel/ert_station/clf_station) "vm" = ( /obj/structure/bed/chair/bolted{ dir = 1 }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"vw" = ( +/obj/structure/bed/chair, +/turf/open/floor/wood/wood_broken4, +/area/adminlevel/ert_station/clf_station) "vx" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/trash/candle, @@ -952,13 +902,18 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"vE" = ( -/obj/structure/largecrate/supply/weapons/shotgun, -/turf/open/auto_turf/strata_grass/layer1, -/area/adminlevel/ert_station/clf_station) "vI" = ( /turf/open/floor/sandstone/runed, /area/adminlevel/ert_station/clf_station) +"vL" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/freezerfloor, +/area/adminlevel/ert_station/clf_station) "vQ" = ( /obj/structure/platform_decoration/kutjevo{ dir = 1 @@ -971,11 +926,6 @@ }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"wW" = ( -/turf/open/gm/coast{ - dir = 9 - }, -/area/adminlevel/ert_station/clf_station) "xi" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -983,12 +933,6 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"xE" = ( -/turf/open/gm/coast{ - dir = 8; - icon_state = "beachcorner2" - }, -/area/adminlevel/ert_station/clf_station) "xJ" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -1003,16 +947,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"xM" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/item/tool/soap, -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/adminlevel/ert_station/clf_station) "xO" = ( /obj/item/holder/cat/kitten{ name = "Isabelle" @@ -1032,42 +966,30 @@ }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"yi" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/restraint/handcuffs, +/turf/open/floor/wood, +/area/adminlevel/ert_station/clf_station) +"yo" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, +/area/adminlevel/ert_station/clf_station) +"yp" = ( +/obj/structure/curtain/red, +/turf/open/floor/wood/wood_broken, +/area/adminlevel/ert_station/clf_station) "yy" = ( /obj/structure/platform_decoration/kutjevo, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"yE" = ( -/obj/structure/closet/crate, -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/adminlevel/ert_station/clf_station) "yH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"yM" = ( -/obj/structure/closet/crate, -/obj/item/ammo_magazine/pistol/clfpistol, -/obj/item/ammo_magazine/pistol/clfpistol, -/obj/item/ammo_magazine/pistol/clfpistol, -/obj/item/ammo_magazine/pistol/clfpistol, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/adminlevel/ert_station/clf_station) -"yO" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/obj/structure/flora/bush/ausbushes/genericbush, -/turf/open/gm/grass{ - icon_state = "grass2" - }, -/area/adminlevel/ert_station/clf_station) "yU" = ( /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) @@ -1078,11 +1000,14 @@ /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"yY" = ( -/obj/structure/prop/brazier/frame/full, -/turf/open/floor/plating{ - icon_state = "asteroidwarning" +"yX" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/wood/wood_broken4, +/area/adminlevel/ert_station/clf_station) +"zl" = ( +/turf/open/floor/wood/wood_broken4, /area/adminlevel/ert_station/clf_station) "zy" = ( /obj/structure/machinery/light/small/built{ @@ -1101,6 +1026,13 @@ /obj/structure/sign/poster/clf, /turf/closed/wall/wood, /area/adminlevel/ert_station/clf_station) +"Aa" = ( +/obj/structure/machinery/gibber{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "Ad" = ( /obj/structure/flora/jungle/vines{ icon_state = "heavy_4" @@ -1110,27 +1042,10 @@ "Ag" = ( /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/adminlevel/ert_station/clf_station) -"Ah" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "Aj" = ( /obj/structure/flora/jungle/planttop1, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"AE" = ( -/obj/structure/platform/kutjevo{ - dir = 4 - }, -/turf/open/gm/dirtgrassborder{ - dir = 8 - }, -/area/adminlevel/ert_station/clf_station) "AK" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 @@ -1167,6 +1082,9 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) +"Bj" = ( +/turf/open/floor/wood/wood_broken6, +/area/adminlevel/ert_station/clf_station) "Bl" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/ammo_magazine/smg/mp5, @@ -1188,32 +1106,11 @@ }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"Bx" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "BB" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"BC" = ( -/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ - name = "\improper Strange Temple" - }, -/turf/open/space/basic, -/area/adminlevel/ert_station/clf_station) -"BP" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "BQ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -1244,6 +1141,10 @@ /obj/structure/machinery/recharger, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"Cz" = ( +/obj/structure/prop/brazier/frame/full, +/turf/open/floor/plating/asteroidwarning/north, +/area/adminlevel/ert_station/clf_station) "CE" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/largecrate/random/secure, @@ -1253,6 +1154,15 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"CT" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 10 + }, +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/gm/grass/grass2, +/area/adminlevel/ert_station/clf_station) "Dn" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, @@ -1263,11 +1173,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) -"DF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/adminlevel/ert_station/clf_station) "DN" = ( /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/strata_ice/jungle, @@ -1290,10 +1195,17 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/adminlevel/ert_station/clf_station) -"Ee" = ( -/turf/open/gm/dirtgrassborder{ - dir = 8 +"En" = ( +/turf/open/floor/plating/asteroidfloor/north, +/area/adminlevel/ert_station/clf_station) +"Ex" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/structure/machinery/power/apc/antag{ + dir = 1 + }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "Ez" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -1305,16 +1217,13 @@ /obj/structure/machinery/floodlight, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"ER" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +"EN" = ( +/obj/effect/decal/cleanable/tomato_smudge, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) +"EY" = ( +/obj/structure/flora/bush/ausbushes/reedbush, +/turf/open/gm/coast/east, /area/adminlevel/ert_station/clf_station) "Fj" = ( /obj/structure/surface/table/woodentable/poor, @@ -1335,6 +1244,10 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"FW" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/gm/dirtgrassborder/east, +/area/adminlevel/ert_station/clf_station) "Gj" = ( /obj/structure/platform/kutjevo, /obj/structure/flora/bush/ausbushes/grassybush, @@ -1353,10 +1266,43 @@ /obj/item/ammo_magazine/rifle/mar40, /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) +"GE" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.0 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/clf_station) "GG" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"GL" = ( +/turf/open/gm/dirtgrassborder/east, +/area/adminlevel/ert_station/clf_station) "GR" = ( /obj/structure/platform/kutjevo, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -1364,26 +1310,25 @@ }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"GV" = ( -/turf/open/floor/plating{ - dir = 8; - icon_state = "asteroidwarning" - }, +"Hk" = ( +/obj/structure/closet/crate, +/obj/item/reagent_container/food/snacks/appletart, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "Hs" = ( /obj/docking_port/stationary/emergency_response/idle_port1, /turf/open/floor/plating, /area/adminlevel/ert_station/clf_station) +"HF" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/turf/open/gm/dirtgrassborder/east, +/area/adminlevel/ert_station/clf_station) "HI" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/gm/dirt, /area/adminlevel/ert_station/clf_station) -"Ie" = ( -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner2" - }, -/area/adminlevel/ert_station/clf_station) "Ig" = ( /obj/structure/largecrate/black_market/clf_supplies, /obj/structure/platform/kutjevo{ @@ -1391,6 +1336,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"Ij" = ( +/obj/structure/machinery/chem_dispenser/soda/beer{ + density = 0; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "Io" = ( /obj/structure/platform/kutjevo, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -1403,24 +1356,20 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"IH" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/adminlevel/ert_station/clf_station) -"IT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" +"IS" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) -"IW" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas/swat, -/turf/open/floor/wood{ - icon_state = "wood-broken6" +"Jb" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 10 }, +/obj/structure/surface/table/reinforced, +/obj/item/spacecash/c50, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Jg" = ( /obj/structure/platform/kutjevo, @@ -1433,15 +1382,41 @@ /obj/structure/flora/jungle/vines/heavy, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"Js" = ( +/obj/item/spacecash/c1, +/obj/item/storage/box/matches, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + name = "CLF Outpost"; + phone_category = "CLF"; + phone_id = "CLF Outpost"; + do_not_disturb = 2; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/clf_station) +"JU" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, +/area/adminlevel/ert_station/clf_station) "Ke" = ( /obj/structure/flora/jungle/vines{ icon_state = "heavy_4" }, /turf/closed/wall/strata_ice/jungle, /area/adminlevel/ert_station/clf_station) +"KD" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/asteroidfloor/north, +/area/adminlevel/ert_station/clf_station) "KT" = ( /turf/closed/wall/strata_ice/jungle, /area/adminlevel/ert_station/clf_station) +"La" = ( +/turf/open/floor/wood/wood_broken3, +/area/adminlevel/ert_station/clf_station) +"Lg" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/adminlevel/ert_station/clf_station) "Lu" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/weapon/gun/rifle/mar40/carbine, @@ -1453,6 +1428,22 @@ /obj/structure/closet/secure_closet/brig, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) +"LI" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/rollingpin, +/obj/item/book/manual/chef_recipes, +/obj/structure/machinery/light/small/built{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "LN" = ( /obj/structure/machinery/floodlight, /turf/open/gm/grass, @@ -1466,12 +1457,12 @@ }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Me" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, +"LR" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/restraint/handcuffs, +/obj/item/restraint/handcuffs, +/turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) "MD" = ( /obj/structure/platform/kutjevo{ @@ -1493,43 +1484,6 @@ /obj/structure/flora/jungle/vines/heavy, /turf/closed/wall/rock/brown, /area/adminlevel/ert_station/clf_station) -"MP" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.0 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/clf_station) -"MQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/adminlevel/ert_station/clf_station) "MT" = ( /obj/item/tank/anesthetic, /obj/structure/surface/table/reinforced/prison, @@ -1549,13 +1503,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Ng" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "Ni" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/reagent_container/food/condiment/peppermill, @@ -1567,51 +1514,34 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) +"No" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/asteroidfloor/north, +/area/adminlevel/ert_station/clf_station) "Ns" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"NB" = ( -/turf/open/floor{ - icon_state = "freezerfloor" - }, -/area/adminlevel/ert_station/clf_station) "NV" = ( /obj/structure/flora/jungle/vines/heavy, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"NY" = ( -/obj/effect/decal/cleanable/tomato_smudge, -/turf/open/floor/prison{ - icon_state = "kitchen" +"Og" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/obj/item/reagent_container/food/drinks/flask/barflask, +/obj/structure/machinery/light/small/built, +/turf/open/floor/wood/wood_broken6, /area/adminlevel/ert_station/clf_station) -"Of" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/rollingpin, -/obj/item/book/manual/chef_recipes, -/obj/structure/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"Ol" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"Oi" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, +"Om" = ( +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) "Op" = ( /obj/structure/platform/kutjevo{ @@ -1620,48 +1550,8 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Ou" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.0 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/machinery/light/small/built, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/clf_station) -"Oy" = ( -/obj/item/spacecash/c1, -/obj/item/storage/box/matches, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/rotary{ - name = "CLF Outpost"; - phone_category = "CLF"; - phone_id = "CLF Outpost"; - do_not_disturb = 2; - pixel_y = 10 - }, -/turf/open/floor/wood, +"OA" = ( +/turf/open/floor/plating/asteroidwarning/west, /area/adminlevel/ert_station/clf_station) "OG" = ( /obj/item/storage/belt/shotgun/full/quackers, @@ -1687,12 +1577,6 @@ /obj/structure/largecrate/random/case/double, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"OY" = ( -/turf/open/gm/dirtgrassborder{ - dir = 4; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "OZ" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -1700,26 +1584,12 @@ /obj/structure/largecrate/supply/weapons/flamers, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Ph" = ( -/turf/open/gm/coast{ - dir = 4; - icon_state = "beachcorner" - }, -/area/adminlevel/ert_station/clf_station) "Pj" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 }, /turf/open/gm/grass, /area/adminlevel/ert_station/clf_station) -"Pr" = ( -/mob/living/simple_animal/cat{ - name = "Edwin" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/adminlevel/ert_station/clf_station) "PC" = ( /obj/item/trash/candle, /obj/structure/surface/table/woodentable/fancy, @@ -1758,11 +1628,6 @@ /obj/structure/machinery/light/small/built, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Qx" = ( -/turf/open/gm/coast{ - dir = 8 - }, -/area/adminlevel/ert_station/clf_station) "QA" = ( /obj/structure/platform/kutjevo{ dir = 8 @@ -1800,26 +1665,6 @@ "Rg" = ( /turf/open/gm/dirt, /area/adminlevel/ert_station/clf_station) -"Ro" = ( -/obj/structure/surface/table/woodentable/poor, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/handcuffs, -/obj/item/handcuffs, -/turf/open/floor/wood, -/area/adminlevel/ert_station/clf_station) -"Rr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidfloor" - }, -/area/adminlevel/ert_station/clf_station) -"Rv" = ( -/obj/structure/curtain/red, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/adminlevel/ert_station/clf_station) "RB" = ( /obj/structure/flora/jungle/plantbot1{ icon_state = "alienplant1"; @@ -1827,16 +1672,6 @@ }, /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) -"RR" = ( -/obj/structure/machinery/chem_dispenser/soda/beer{ - density = 0; - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, -/area/adminlevel/ert_station/clf_station) "Sc" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -1844,22 +1679,15 @@ /obj/structure/machinery/floodlight, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Sd" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor{ - icon_state = "freezerfloor" - }, +"Sr" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/asteroidfloor/north, /area/adminlevel/ert_station/clf_station) -"Sj" = ( +"St" = ( /obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" + dir = 4 }, +/turf/open/floor/wood/wood_broken3, /area/adminlevel/ert_station/clf_station) "Sy" = ( /obj/structure/platform/kutjevo, @@ -1868,22 +1696,17 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"Sz" = ( +/obj/structure/platform/kutjevo{ + dir = 4 + }, +/obj/structure/flora/bush/ausbushes/genericbush, +/turf/open/gm/grass/grass2, +/area/adminlevel/ert_station/clf_station) "SD" = ( /obj/structure/largecrate/random/case/small, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Tk" = ( -/obj/structure/bed/chair, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/adminlevel/ert_station/clf_station) -"Tr" = ( -/turf/open/gm/dirtgrassborder{ - dir = 1; - icon_state = "grassdirt_corner" - }, -/area/adminlevel/ert_station/clf_station) "Tt" = ( /obj/structure/platform/kutjevo, /obj/structure/flora/bush/ausbushes/grassybush{ @@ -1891,11 +1714,13 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Tu" = ( -/turf/open/floor/plating{ - dir = 4; - icon_state = "asteroidwarning" - }, +"Tv" = ( +/obj/item/prop/helmetgarb/spent_buckshot, +/turf/open/floor/wood/wood_broken, +/area/adminlevel/ert_station/clf_station) +"TL" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/gm/dirtgrassborder/grassdirt_corner/north_east, /area/adminlevel/ert_station/clf_station) "TM" = ( /obj/structure/machinery/recharger, @@ -1903,9 +1728,23 @@ /obj/item/device/defibrillator, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"TN" = ( -/obj/structure/largecrate/random/case, -/turf/open/auto_turf/strata_grass/layer1, +"TN" = ( +/obj/structure/largecrate/random/case, +/turf/open/auto_turf/strata_grass/layer1, +/area/adminlevel/ert_station/clf_station) +"TQ" = ( +/obj/structure/machinery/door/airlock/sandstone/runed/destroyable{ + name = "\improper Strange Temple" + }, +/turf/open/floor/sandstone/runed, +/area/adminlevel/ert_station/clf_station) +"TT" = ( +/turf/open/floor/plating/asteroidwarning/north, +/area/adminlevel/ert_station/clf_station) +"TV" = ( +/obj/structure/closet/crate, +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "TZ" = ( /obj/structure/flora/bush/ausbushes/grassybush, @@ -1914,17 +1753,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Ub" = ( -/turf/closed/wall/mineral/sandstone/runed/decor, -/area/adminlevel/ert_station/clf_station) -"Uj" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/welding, -/obj/item/tool/weldingtool/experimental, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/adminlevel/ert_station/clf_station) "Um" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/strata_grass/layer1, @@ -1933,41 +1761,27 @@ /obj/structure/flora/bush/ausbushes/var3, /turf/open/gm/river, /area/adminlevel/ert_station/clf_station) -"Uu" = ( -/turf/open/floor/plating{ - icon_state = "asteroidwarning" - }, +"UW" = ( +/turf/open/gm/coast/east, /area/adminlevel/ert_station/clf_station) -"UB" = ( -/turf/open/floor/plating{ - dir = 1; - icon_state = "asteroidwarning" - }, +"Vb" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/welding, +/obj/item/tool/weldingtool/experimental, +/turf/open/floor/wood/wood_broken, /area/adminlevel/ert_station/clf_station) "Vf" = ( /obj/structure/largecrate/black_market/confiscated_weaponry, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Vi" = ( -/obj/structure/flora/bush/ausbushes/reedbush, -/turf/open/gm/coast{ - dir = 8 - }, -/area/adminlevel/ert_station/clf_station) "Vk" = ( /obj/structure/surface/table/woodentable/poor, /obj/item/prop/helmetgarb/gunoil, /obj/item/weapon/baton/cattleprod, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Vm" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor{ - pixel_y = 10 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" - }, +"Vq" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner/south_east, /area/adminlevel/ert_station/clf_station) "VE" = ( /obj/structure/platform/kutjevo{ @@ -1976,6 +1790,9 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) +"VI" = ( +/turf/open/gm/coast/beachcorner/south_east, +/area/adminlevel/ert_station/clf_station) "VO" = ( /obj/structure/flora/jungle/vines, /obj/structure/flora/jungle/vines{ @@ -2007,13 +1824,11 @@ /obj/item/weapon/throwing_knife, /turf/open/auto_turf/strata_grass/layer1, /area/adminlevel/ert_station/clf_station) -"Wq" = ( -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/prison{ - icon_state = "kitchen" +"Wt" = ( +/obj/structure/flora/grass/tallgrass/jungle/corner{ + dir = 5 }, +/turf/open/gm/grass/grass2, /area/adminlevel/ert_station/clf_station) "Wz" = ( /obj/structure/closet/crate, @@ -2045,10 +1860,15 @@ /obj/item/clothing/under/colonist/clf, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"Xp" = ( -/turf/open/floor/prison{ - icon_state = "kitchen" +"Xk" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light/small/built{ + dir = 8 }, +/turf/open/floor/freezerfloor, +/area/adminlevel/ert_station/clf_station) +"Xn" = ( +/turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east, /area/adminlevel/ert_station/clf_station) "Xv" = ( /obj/structure/flora/jungle/plantbot1, @@ -2063,6 +1883,13 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer0_mud, /area/adminlevel/ert_station/clf_station) +"Yh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/clf_station) "Yq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 10 @@ -2080,27 +1907,19 @@ /obj/structure/machinery/light/small/built, /turf/open/floor/wood, /area/adminlevel/ert_station/clf_station) -"YB" = ( -/turf/open/gm/grass{ - icon_state = "grass2" +"YI" = ( +/obj/structure/reagent_dispensers/beerkeg{ + density = 0 }, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"Ze" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/reagent_container/food/drinks/flask/barflask, -/obj/structure/machinery/light/small/built, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +"YR" = ( +/obj/structure/surface/table/woodentable/poor, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/prison/kitchen, /area/adminlevel/ert_station/clf_station) -"Zj" = ( -/obj/structure/closet/crate, -/obj/item/reagent_container/food/snacks/appletart, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +"Zb" = ( +/turf/open/floor/plating/asteroidwarning, /area/adminlevel/ert_station/clf_station) "ZE" = ( /obj/structure/surface/table/woodentable/poor, @@ -2168,14 +1987,14 @@ ax ax ax ax -KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax +ax "} (2,1,1) = {" ax @@ -2200,7 +2019,7 @@ yU RB yU yU -dd +pJ WO Rg Rg @@ -2210,14 +2029,14 @@ vI ZO LO ax -KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax +ax "} (3,1,1) = {" ax @@ -2241,8 +2060,8 @@ yU yU yU yU -xE -Ph +Lg +VI Rg Rg ax @@ -2250,16 +2069,16 @@ Rg Rg Rg tJ -Ub +LO +ax +ax +ax +ax +ax +ax +ax +ax ax -KT -KT -KT -KT -KT -KT -KT -KT "} (4,1,1) = {" ax @@ -2283,7 +2102,7 @@ Uo yU yU yU -dd +pJ Rg Rg ax @@ -2292,16 +2111,16 @@ ax Rg vI vI -BC +TQ +ax +ax +ax +ax +ax +ax +ax +ax ax -KT -KT -KT -KT -KT -KT -KT -KT "} (5,1,1) = {" ax @@ -2319,13 +2138,13 @@ yU yU yU yU -wW -Qx -Qx -Qx -Qx -Qx -Ph +nj +UW +UW +UW +UW +UW +VI ax ax ax @@ -2334,16 +2153,16 @@ ax Rg Rg iO -Ub +LO +ax +ax +ax +ax +ax +ax +ax +ax ax -KT -KT -KT -KT -KT -KT -KT -KT "} (6,1,1) = {" ax @@ -2358,10 +2177,10 @@ yU yU yU yU -wW -Qx -Qx -Ph +nj +UW +UW +VI ug Dn Rg @@ -2378,14 +2197,14 @@ Rg ZO LO ax -KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax +ax "} (7,1,1) = {" ax @@ -2394,13 +2213,13 @@ ax ax ax ax -Vi -Qx -Qx -Qx -Qx -Qx -Ph +EY +UW +UW +UW +UW +UW +VI Rg Rg Dn @@ -2420,14 +2239,14 @@ Rg ax ax ax -KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax +ax "} (8,1,1) = {" KT @@ -2442,34 +2261,34 @@ Rg Rg Rg Rg -Ie -om +Xn +ab Rg -Ie -Me -Ng -om +Xn +yo +sR +ab Rg Rg Dn Rg -Ie -Ee -om +Xn +GL +ab HI HI ax ax ax -KT -KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax +ax +ax "} (9,1,1) = {" KT @@ -2479,65 +2298,65 @@ Rg Dn Rg Rg -Ie -om +Xn +ab fX ug -Ie -OY -Tr -Ee -OY +Xn +Vq +JU +GL +Vq QV -YB -Tr -Ee -Ee -Ee -Ee -OY +hw +JU +GL +GL +GL +GL +Vq QV -Tr -Ee +JU +GL MI ax ax KT KT KT -KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax +ax "} (10,1,1) = {" KT KT Rg Rg -Ie -Ee -Ee -me -Ah -AE -AE -lN +Xn +GL +GL +gp +py +HF +HF +fw la -pp +eR la la -pp -pp +eR +eR la la la la la -yO +Sz la Pj QV @@ -2548,41 +2367,41 @@ KT KT KT KT -KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax +ax "} (11,1,1) = {" KT DN Rg -Ie -OY -YB -ql +Xn +Vq +hw +aB Jg -yY -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -Tu -az +eB +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +nS +Cz VR -YB +hw QV Nk iG @@ -2591,22 +2410,22 @@ KT KT KT KT -KT -KT -KT -KT -KT +ax +ax +ax +ax +ax "} (12,1,1) = {" KT -sC -pY -OY +TL +FW +Vq QV QV -YB +hw Jg -Uu +Zb uX uX uX @@ -2622,7 +2441,7 @@ uX uX uX uX -UB +TT VR Aj Xv @@ -2634,21 +2453,21 @@ iG KT KT KT -KT -KT -KT -KT +ax +ax +ax +ax "} (13,1,1) = {" KT -YB +hw QV QV QV QV QV Jg -Uu +Zb uX uX uX @@ -2664,11 +2483,11 @@ uX uX Hs uX -UB +TT Bt la la -jj +CT pk pk BB @@ -2676,21 +2495,21 @@ pk pk KT KT -KT -KT -KT -KT +ax +ax +ax +ax "} (14,1,1) = {" DN -YB -YB +hw +hw CQ QV QV QV Jg -Uu +Zb uX uX uX @@ -2706,10 +2525,10 @@ uX uX uX uX -UB -oI -oI -oI +TT +En +En +En eh gj ON @@ -2718,21 +2537,21 @@ ON pk pk KT -KT -KT -KT -KT +ax +ax +ax +ax "} (15,1,1) = {" DN -ts +Wt sN QV CQ wI ye Jg -Uu +Zb uX uX uX @@ -2748,10 +2567,10 @@ uX uX uX uX -UB -oI -cB -oI +TT +En +bf +En eh iB Ez @@ -2762,8 +2581,8 @@ pk ax ax ax -KT -KT +ax +ax "} (16,1,1) = {" KT @@ -2774,7 +2593,7 @@ LN Nk GG Io -Uu +Zb uX uX uX @@ -2790,10 +2609,10 @@ uX uX uX uX -UB -oI -oI -Oi +TT +En +En +Sr eh zO zO @@ -2804,8 +2623,8 @@ xL pk ax ax -KT -KT +ax +ax "} (17,1,1) = {" ax @@ -2816,7 +2635,7 @@ ZI Yq GG GR -Uu +Zb uX uX uX @@ -2832,10 +2651,10 @@ uX uX uX uX -UB -IT -Rr -qb +TT +No +KD +ty eh zO yH @@ -2853,12 +2672,12 @@ KT ax GG ZI -aN +hy Wb FD iB pE -Uu +Zb uX uX uX @@ -2874,7 +2693,7 @@ uX uX uX uX -UB +TT MD lT lT @@ -2900,7 +2719,7 @@ ZI FD zO Ch -Uu +Zb uX uX uX @@ -2916,7 +2735,7 @@ uX uX uX uX -UB +TT eh bI jZ @@ -2937,12 +2756,12 @@ KT ax rD ZI -ER +li Wb FD zO Ch -Uu +Zb uX uX uX @@ -2958,7 +2777,7 @@ uX uX uX uX -UB +TT eh zO yy @@ -2984,34 +2803,34 @@ ZI FD zO Ch -yY -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -GV -az +eB +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +OA +Cz eh zO Ch ZI ZI -MQ +Ex mw mw LQ -Xp -Xp +Om +Om ZI ZI eh @@ -3028,7 +2847,7 @@ zO fo nM VE -vE +kd ey OZ Op @@ -3052,9 +2871,9 @@ WU mw hE mt -Xp -Xp -gi +Om +Om +gf eP eh KT @@ -3092,11 +2911,11 @@ eP jp Gl mw -Tk +vw Ni -Xp -Xp -nC +Om +Om +YR eP xS KT @@ -3132,13 +2951,13 @@ zO Ch eP Ns -qa +IS mw hE kS -Xp -Xp -gN +Om +Om +jd eP xS KT @@ -3178,9 +2997,9 @@ mw mw hE Fj -Wq -Xp -Xp +lj +Om +Om eP eh KT @@ -3221,8 +3040,8 @@ mw oy ZI ZI -rz -rz +Ol +Ol ZI xS KT @@ -3259,12 +3078,12 @@ ZS Wb mw mw -cH +rW aE ZI -Of -Xp -Xp +LI +Om +Om eP xS KT @@ -3304,9 +3123,9 @@ mw mw FV ZI -Vm -NY -hd +Yh +EN +YI eP xS KT @@ -3316,7 +3135,7 @@ KT NV Ch ZI -up +vf mw mw YA @@ -3324,16 +3143,16 @@ ZI eh Ch ZI -at +GE mw -DF -Ou +La +pf ZI eh Ch ZI zy -pF +Bj mw tz ZI @@ -3346,9 +3165,9 @@ Bn mw Ns zZ -mR -Xp -cc +Aa +Om +rX ZI eh KT @@ -3361,36 +3180,36 @@ eP mw Vk lp -pF +Bj eP eh Ch eP -yE +TV mw mw -IW +mB eP eh Ch ZI ZE kF -DF +La TM eP uF FD Ch eP -MQ +St mw aE -Ze +Og ZI -BP -Xp -Bx +aq +Om +lO ZI eh KT @@ -3401,17 +3220,17 @@ KT rZ eP mw -Sj +yX mw mw eP eh Ch zZ -MP +rx mw mw -ow +bT ZI eh Ch @@ -3427,12 +3246,12 @@ Ch eP WU hE -Oy +Js nQ ZI -ms -Xp -fd +Jb +Om +kV ZI eh KT @@ -3452,14 +3271,14 @@ Ch eP QE Xc -DF +La WA eP eh Ch ZI zH -cH +rW mw fx eP @@ -3472,8 +3291,8 @@ hE hO PC ZI -RR -Xp +Ij +Om ZI ZI eh @@ -3486,16 +3305,16 @@ Ch ZI eP Wb -Rv +yp eP ZI eh Ch ZI -at +GE mw mw -Ou +pf ZI eh Tt @@ -3534,8 +3353,8 @@ ZI eh Gj eP -Uj -Pr +Vb +pe mw Wz eP @@ -3544,7 +3363,7 @@ Ch ZI MT MU -IH +zl Xz ZI eh @@ -3569,17 +3388,17 @@ zO Ch ZI sK -DF +La mw Bl ZI eh Ch zZ -MP +rx xO nJ -MP +rx ZI eh Ch @@ -3612,23 +3431,23 @@ Ch ZI sK mw -IH +zl Ck ZI eh Ch eP -yM +po mw mw -av +qW eP eh Ch ZI tG -Sd -NB +Xk +my aL ZI eh @@ -3653,24 +3472,24 @@ KT Ch ZI AO -dg +Tv kk Qw ZI eh Ch ZI -hL +oL mw mw -Ou +pf ZI eh Gj ZI tG -NB -NB +my +my aL ZI eh @@ -3703,7 +3522,7 @@ eh Ch ZI ZI -Zj +Hk gc ZI ZI @@ -3711,8 +3530,8 @@ eh Ch ZI fk -cx -xM +vL +do ZI ZI eh @@ -3762,9 +3581,9 @@ zO Ch ZI DW -pF +Bj mw -sx +yi ZI eh zO @@ -3805,8 +3624,8 @@ Ch ZI LH mw -DF -Ro +La +LR ZI eh KT @@ -3888,7 +3707,7 @@ uZ ks eH uO -cH +rW mw vm eH diff --git a/maps/templates/lazy_templates/freelancer_ert_station.dmm b/maps/templates/lazy_templates/freelancer_ert_station.dmm new file mode 100644 index 0000000000..938e2a6395 --- /dev/null +++ b/maps/templates/lazy_templates/freelancer_ert_station.dmm @@ -0,0 +1,2068 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/machinery/cm_vending/gear/antag{ + hacked = 1; + name = "\improper Response Team Automated Gear Rack"; + use_snowflake_points = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"aj" = ( +/obj/structure/machinery/cryopod, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"aA" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station) +"bd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/snacks/pastatomato, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"bk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator/upgraded, +/obj/item/clothing/glasses/hud/health, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/adminlevel/ert_station) +"bT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"cw" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"cL" = ( +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"cR" = ( +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station) +"cS" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station) +"de" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"dj" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"dz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"dI" = ( +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"dJ" = ( +/turf/open/floor/almayer/red/north, +/area/adminlevel/ert_station) +"dL" = ( +/obj/structure/sign/safety, +/turf/closed/wall, +/area/adminlevel/ert_station) +"dS" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"ee" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"em" = ( +/obj/structure/machinery/cm_vending/sorted/walkman, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"eG" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"eH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Restroom" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"eN" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"fX" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"fY" = ( +/obj/structure/window/framed/colony/reinforced/hull, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station) +"gi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/book/manual/chef_recipes, +/obj/item/clothing/head/chefhat, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_container/food/drinks/shaker, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"gm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"gI" = ( +/obj/structure/sign/poster/clf, +/turf/closed/wall, +/area/adminlevel/ert_station) +"gS" = ( +/obj/structure/sign/safety/debark_lounge, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"gU" = ( +/obj/docking_port/stationary/emergency_response/idle_port2, +/turf/open/floor/plating, +/area/adminlevel/ert_station) +"ha" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"hl" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"hr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station) +"hs" = ( +/obj/structure/sign/safety/maint, +/turf/closed/wall, +/area/adminlevel/ert_station) +"hx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "Secure Storage" + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"hE" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"ij" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy, +/obj/item/tool/pen, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"in" = ( +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station) +"io" = ( +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"ju" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat/chess, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"jF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"jJ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"jZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Hangar"; + no_panel = 1 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station) +"kn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"kZ" = ( +/obj/item/prop/helmetgarb/rosary, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"lp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"lx" = ( +/turf/open/floor/almayer/greencorner/north, +/area/adminlevel/ert_station) +"lP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"lQ" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"mw" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"mM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"mR" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"mX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station) +"nx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"nU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"oc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/soylentgreen, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 13 + }, +/turf/open/floor/almayer/red/southeast, +/area/adminlevel/ert_station) +"oj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station) +"ou" = ( +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"oE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"oL" = ( +/turf/open/floor/almayer/silver/northeast, +/area/adminlevel/ert_station) +"pj" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "Detention Cell"; + req_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station) +"pK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/reagent_dispensers/beerkeg{ + density = 0 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"pX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/spider/stickyweb, +/turf/open/floor/almayer/orange/northwest, +/area/adminlevel/ert_station) +"qt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station) +"qV" = ( +/obj/structure/sign/poster/music, +/turf/closed/wall, +/area/adminlevel/ert_station) +"qX" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"rN" = ( +/turf/closed/wall/mineral/gold, +/area/adminlevel/ert_station) +"rS" = ( +/obj/structure/sign/goldenplaque{ + pixel_y = 27 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"su" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"sy" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/red/southeast, +/area/adminlevel/ert_station) +"tx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"tA" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"tD" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"tW" = ( +/obj/structure/machinery/chem_dispenser/soda/beer{ + density = 0; + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"um" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/obj/item/reagent_container/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/monkeycubes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station) +"uq" = ( +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"vo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/head/chefhat, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"vM" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"vO" = ( +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_y = 30 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station) +"vS" = ( +/obj/structure/machinery/chem_master, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"wd" = ( +/obj/structure/window/framed/colony, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"wv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"wF" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"xn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station) +"xN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"xR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"yq" = ( +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"yw" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station) +"yP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "Lounge" + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"zy" = ( +/obj/structure/mirror, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"zz" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"zR" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"Aw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/souto, +/turf/closed/wall, +/area/adminlevel/ert_station) +"AD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"AJ" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station) +"AV" = ( +/obj/structure/machinery/newscaster/security_unit, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"BI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"BL" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"Cm" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"CF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 28 + }, +/obj/structure/bed/sofa/south/grey/right, +/obj/item/trash/buritto, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"CJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"CP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"Ea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"Ef" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"Es" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ + hacked = 1; + name = "\improper Response Team Automated Guns Rack"; + use_power = 0; + use_snowflake_points = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"Ey" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"EK" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/spray/cleaner, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/mop, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Fg" = ( +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"Fo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"FB" = ( +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"FQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"FZ" = ( +/turf/open/floor/almayer/silver/southeast, +/area/adminlevel/ert_station) +"Gh" = ( +/obj/structure/bed/stool, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"Gk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"Gu" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"Hg" = ( +/obj/structure/closet/secure_closet/brig, +/obj/item/book/manual/marine_law, +/obj/item/restraint/handcuffs, +/turf/open/floor/almayer/red/east, +/area/adminlevel/ert_station) +"Hj" = ( +/obj/structure/sign/safety/medical, +/obj/structure/sign/safety/autodoc{ + pixel_x = 15 + }, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"Hy" = ( +/obj/item/newspaper, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"HI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/red/southwest, +/area/adminlevel/ert_station) +"HN" = ( +/turf/open/floor/almayer/silvercorner, +/area/adminlevel/ert_station) +"HR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"HS" = ( +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"Ih" = ( +/obj/structure/noticeboard{ + pixel_y = 34 + }, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"Im" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"IG" = ( +/obj/structure/toilet, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"IP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/ert_station) +"Jg" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"Jn" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"JD" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 10 + }, +/obj/item/storage/fancy/cigar, +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/coin/uranium, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"JW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 27 + }, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"Kp" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/adminlevel/ert_station) +"Kq" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"Kt" = ( +/turf/open/floor/almayer/greencorner/west, +/area/adminlevel/ert_station) +"KK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"KN" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Lh" = ( +/turf/open/space/basic, +/area/space) +"Li" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/red/northeast, +/area/adminlevel/ert_station) +"Lt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"LN" = ( +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station) +"Mj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/snacks/milosoup{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/meatsteak{ + pixel_y = -2 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"Ns" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station) +"Of" = ( +/turf/open/floor/almayer/red/east, +/area/adminlevel/ert_station) +"Os" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"OA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"Pb" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station) +"Pd" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Pn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Restroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"PP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"Qc" = ( +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station) +"Qi" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Qv" = ( +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station) +"QQ" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/almayer/silver, +/area/adminlevel/ert_station) +"Rb" = ( +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"Rk" = ( +/obj/structure/sign/poster/art, +/turf/closed/wall/r_wall/unmeltable, +/area/adminlevel/ert_station) +"Rz" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"RC" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"RG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station) +"RO" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/greencorner/east, +/area/adminlevel/ert_station) +"RW" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/silver/east, +/area/adminlevel/ert_station) +"Sh" = ( +/turf/closed/wall, +/area/adminlevel/ert_station) +"Sk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station) +"Su" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"Sy" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"SH" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"SL" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station) +"SP" = ( +/obj/structure/machinery/gibber{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"Ta" = ( +/turf/open/floor/almayer/silver/northwest, +/area/adminlevel/ert_station) +"Th" = ( +/turf/open/floor/plating, +/area/adminlevel/ert_station) +"TM" = ( +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"TV" = ( +/obj/structure/sign/poster/hunk, +/obj/structure/window/framed/colony/reinforced/hull, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station) +"Un" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/adminlevel/ert_station) +"Ux" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"UT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/west, +/area/adminlevel/ert_station) +"Vd" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/north, +/area/adminlevel/ert_station) +"Vz" = ( +/obj/structure/sign/nosmoking_2, +/turf/closed/wall, +/area/adminlevel/ert_station) +"VF" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"VJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"VR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating/almayer, +/area/adminlevel/ert_station) +"VU" = ( +/obj/item/trash/barcardine, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"VV" = ( +/obj/structure/machinery/cm_vending/clothing/antag{ + name = "\improper Response Team Automated Equipment Rack" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station) +"VZ" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"Wf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station) +"Wl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/northeast, +/area/adminlevel/ert_station) +"Wn" = ( +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station) +"WR" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"Xb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station) +"Xx" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station) +"XN" = ( +/obj/structure/phone_base/hidden{ + dir = 8; + name = "Station Telephone"; + phone_id = "Unknown Signal"; + pixel_x = 14 + }, +/turf/open/floor/almayer/floor, +/area/adminlevel/ert_station) +"XQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) +"Yk" = ( +/obj/structure/sign/safety/med_life_support, +/turf/closed/wall, +/area/adminlevel/ert_station) +"YD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2 + }, +/turf/open/floor/almayer/greencorner, +/area/adminlevel/ert_station) +"YM" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/snacks/sandwich{ + layer = 4; + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/appletart, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/carpet, +/area/adminlevel/ert_station) +"YT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station) +"Zp" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Medbay"; + req_access = null; + req_one_access = null + }, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station) +"ZS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station) + +(1,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +"} +(2,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +cL +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +cL +Fg +"} +(3,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(4,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +gU +Th +bT +Fg +"} +(5,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(6,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(7,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(8,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(9,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(10,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(11,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +CP +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +bT +Fg +"} +(12,1,1) = {" +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Lh +Fg +cL +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +Ea +cL +Fg +"} +(13,1,1) = {" +Fg +Fg +Fg +Fg +zy +Fg +Fg +Fg +Fg +Fg +Fg +Fg +lQ +Fg +Fg +Fg +Fg +Fg +AV +Fg +lQ +Fg +jZ +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +"} +(14,1,1) = {" +Fg +IG +dz +kn +WR +wv +dS +Sh +Su +uq +uq +oE +ij +Sh +Ta +Rb +mR +Ux +CJ +UT +Rb +Rb +Rb +yq +yq +SH +yq +yq +yq +yq +SH +BI +Xb +pj +IP +HI +HR +"} +(15,1,1) = {" +Fg +Sh +Sh +kn +kn +kn +jF +Pn +AD +AD +AD +AD +AD +Ey +nx +tx +OA +mM +lp +mM +yq +BI +xR +YD +VZ +VZ +VZ +RO +xR +eG +eG +eN +Qv +fY +dJ +hr +Fg +"} +(16,1,1) = {" +Fg +IG +dz +kn +kn +kn +VJ +Sh +aj +tA +tA +tA +tA +gI +dI +mM +Lt +mX +RW +mX +xR +FQ +yq +hE +FB +FB +gm +VF +yq +HN +Of +Hg +sy +TV +Li +oc +Fg +"} +(17,1,1) = {" +Fg +Sh +Sh +Sh +Sh +kn +EK +Sh +Sh +Sh +qV +Sh +Sh +Sh +JW +mM +io +Hy +uq +uq +dI +lp +yq +hE +gm +FB +FB +VF +yq +wF +Sh +Sh +Sh +Fg +Fg +Fg +Fg +"} +(18,1,1) = {" +Fg +Cm +zR +vM +Sh +kn +RC +Sh +Ih +ou +ou +ou +de +Sh +Sy +mM +io +uq +uq +uq +dI +lp +yq +hE +FB +FB +FB +VF +yq +QQ +Sh +xn +cS +kn +AJ +Ns +Fg +"} +(19,1,1) = {" +Fg +KK +TM +TM +Sh +eH +Sh +Aw +XQ +ou +ou +ou +JD +Sh +CF +yq +io +uq +rN +rS +dI +xN +HS +Kt +Xx +Xx +Xx +lx +yq +BL +Yk +RG +Pb +kn +yw +um +Fg +"} +(20,1,1) = {" +Fg +Kq +TM +TM +Jg +ou +Jn +ou +uq +Ef +Ef +uq +Im +wd +Vd +mM +io +uq +uq +kZ +dI +lp +HN +in +in +in +in +in +in +FZ +Zp +Kp +Un +zz +Kp +bk +Fg +"} +(21,1,1) = {" +Fg +SP +TM +TM +gi +Gh +ou +ou +uq +Mj +bd +uq +ou +wd +dI +mM +io +uq +uq +uq +dI +lp +io +Sh +hs +nU +Vz +Fg +hx +Fg +Hj +hl +kn +SL +kn +fX +Fg +"} +(22,1,1) = {" +Fg +YT +TM +TM +vo +Gh +ou +ou +uq +Fo +Fo +uq +ou +yP +dI +mM +yq +Rb +Rb +Rb +yq +lp +io +Sh +pX +cR +Wf +Fg +vO +VV +Fg +vS +Wn +Wn +Wn +Pd +Fg +"} +(23,1,1) = {" +Fg +cw +TM +TM +YM +Gh +ou +VU +ou +ou +ou +ou +ou +wd +dI +yq +yq +su +mM +su +yq +xN +io +Sh +Sk +yq +oj +Fg +qt +ae +mw +Rz +kn +Wn +qX +dj +Fg +"} +(24,1,1) = {" +Fg +tW +TM +TM +pK +Gh +ou +PP +Gu +ZS +em +tD +ju +wd +oL +yq +Os +ee +XN +ha +jJ +Gk +FZ +dL +Wl +Qc +aA +Fg +LN +Es +Fg +KN +kn +Qi +Qi +lP +Fg +"} +(25,1,1) = {" +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +gS +Fg +gS +Fg +Fg +Rk +Fg +gS +Fg +gS +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +"} diff --git a/maps/templates/lazy_templates/pizza_ert_station.dmm b/maps/templates/lazy_templates/pizza_ert_station.dmm new file mode 100644 index 0000000000..ee711ecf25 --- /dev/null +++ b/maps/templates/lazy_templates/pizza_ert_station.dmm @@ -0,0 +1,6213 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/machinery/door_control{ + id = "kitchen_pizza_time"; + name = "Main Kitchen Shutters"; + pixel_x = 28 + }, +/obj/structure/safe/floor, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c100, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10, +/obj/item/spacecash/c10, +/obj/item/spacecash/c100, +/obj/item/spacecash/c100, +/obj/item/spacecash/c100, +/obj/item/spacecash/c100, +/obj/item/spacecash/c100, +/obj/item/spacecash/c100, +/obj/item/spacecash/c50, +/obj/item/spacecash/c50, +/obj/item/spacecash/c50, +/obj/item/spacecash/c50, +/obj/item/spacecash/c50, +/obj/item/spacecash/c500, +/obj/item/spacecash/c500, +/obj/item/spacecash/c500, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"ah" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "Docking Umbilical" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"am" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = -8; + layer = 2.97 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + anchored = 1; + layer = 2.97 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + pixel_x = 8; + layer = 2.97 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.1; + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.1; + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/cans/souto/cherry{ + layer = 4.2; + pixel_y = 36 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"an" = ( +/obj/structure/bed/chair/bolted{ + dir = 1; + pixel_y = 12; + buckling_y = 12 + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"ap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"aq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"aA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"aD" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_y = 14; + pixel_x = 32 + }, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"aJ" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 9; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"aP" = ( +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 9 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"aS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = -32 + }, +/obj/structure/sign/safety/landingzone{ + pixel_y = -32; + pixel_x = 15 + }, +/turf/open/floor/prison/yellow, +/area/adminlevel/ert_station/pizza_station) +"bd" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "Docking Umbilical" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"bl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/pizza_station) +"bo" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"bB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"bT" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"bU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Central Fridge"; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"cq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"cr" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"cE" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/ceramic_plate{ + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"cI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"cK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/prison/yellow/north, +/area/adminlevel/ert_station/pizza_station) +"cL" = ( +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"cO" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"cP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/ceramic_plate{ + pixel_y = 5 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 8 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 11 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 14 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"dc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"dh" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cranberry{ + pixel_y = 20; + layer = 3.03; + pixel_x = 4 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"dS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Freezer" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"ec" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/birthdaycakeslice, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"ef" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"eh" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/omelette{ + pixel_y = 2; + pixel_x = 1 + }, +/obj/item/reagent_container/food/condiment/coldsauce{ + pixel_y = 22; + pixel_x = -10 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_y = 2; + pixel_x = -8 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13; + pixel_x = 5 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"ei" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"eo" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/item/reagent_container/food/condiment/coldsauce, +/obj/structure/machinery/light/small/blue{ + dir = 1; + pixel_y = 20; + pixel_x = 16 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/greenblue/north, +/area/adminlevel/ert_station/pizza_station) +"eD" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"eI" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space/basic, +/area/space) +"eK" = ( +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 9; + pixel_x = 1 + }, +/turf/open/floor/prison/red/southeast, +/area/adminlevel/ert_station/pizza_station) +"eQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"eW" = ( +/turf/open/mars_dirt/mars_cave_11, +/area/space) +"fb" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/space) +"fg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"fj" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/yellow/west, +/area/adminlevel/ert_station/pizza_station) +"fu" = ( +/turf/open/floor/plating, +/area/adminlevel/ert_station/pizza_station) +"fE" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison/yellowcorner/east, +/area/adminlevel/ert_station/pizza_station) +"fH" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/space) +"fN" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_y = 14; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_y = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"fO" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"gb" = ( +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"gu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/storage/box/drinkingglasses{ + layer = 2.97; + pixel_x = 12 + }, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_x = -11; + layer = 2.97; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/rum{ + pixel_y = 2; + pixel_x = -2; + layer = 2.97 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"gy" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"gU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/prison/yellow, +/area/adminlevel/ert_station/pizza_station) +"gV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + pixel_x = 16; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"ha" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/space, +/area/space) +"hb" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"hc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"hg" = ( +/turf/open/floor/prison/yellowcorner/north, +/area/adminlevel/ert_station/pizza_station) +"hv" = ( +/obj/structure/closet/crate/freezer/cooler, +/turf/open/floor/prison/floor_marked/southwest, +/area/adminlevel/ert_station/pizza_station) +"hL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/greenblue/north, +/area/adminlevel/ert_station/pizza_station) +"hR" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_x = 7; + buckling_x = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"hX" = ( +/obj/structure/bed/chair/bolted{ + pixel_y = -1; + buckling_y = -1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"ic" = ( +/obj/item/trash/plate{ + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_y = 8 + }, +/obj/item/trash/plate{ + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 14; + pixel_x = 11 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 9; + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"im" = ( +/obj/structure/bed/chair/janicart, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"ir" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"iw" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofukabob{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/tofukabob{ + pixel_y = 5 + }, +/turf/open/floor/prison/greenblue/southeast, +/area/adminlevel/ert_station/pizza_station) +"iY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/landingzone{ + pixel_y = 32; + pixel_x = 15 + }, +/turf/open/floor/prison/yellow/north, +/area/adminlevel/ert_station/pizza_station) +"ja" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/space) +"jb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red/northeast, +/area/adminlevel/ert_station/pizza_station) +"jf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 11 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Kitchen Shutters"; + id = "kitchen_pizza_time" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/pizza_station) +"jo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"jq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"jx" = ( +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_x = 7; + pixel_y = -6; + buckling_x = 7; + buckling_y = -6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"jy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Kitchen Shutters"; + id = "kitchen_pizza_time" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/pizza_station) +"jH" = ( +/turf/open/mars/mars_cave_10, +/area/space) +"jT" = ( +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"jV" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"kz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Kitchen" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"kW" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"la" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/almayer{ + unacidable = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + locked = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"lg" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_1" + }, +/area/adminlevel/ert_station/pizza_station) +"lv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/drinkingglass/cola{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/item/reagent_container/food/drinks/shaker{ + pixel_y = 5; + pixel_x = -11 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"lw" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/coldsauce{ + pixel_y = 22; + pixel_x = -10 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/ashtray/glass{ + pixel_x = -6 + }, +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"lx" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/space) +"ly" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/souto/grape{ + pixel_y = 16; + pixel_x = 9 + }, +/obj/item/reagent_container/food/drinks/cans/souto/lime{ + pixel_y = 12; + pixel_x = 5 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"lB" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/item/storage/briefcase/stowaway{ + pixel_y = 11; + layer = 4.11 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"lE" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"lH" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "pizza_takeaway_out" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"lJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/prison/yellow, +/area/adminlevel/ert_station/pizza_station) +"lL" = ( +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"lN" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"ma" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/storage/donut_box{ + pixel_y = 10; + pixel_x = 1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"me" = ( +/turf/open/mars_dirt/mars_cave_8, +/area/space) +"mj" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 16; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"mk" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = 16 + }, +/obj/structure/machinery/vending/snack{ + layer = 4.15; + pixel_y = 3 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"mt" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_x = 7; + buckling_x = 7 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"mP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"nf" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan5" + }, +/area/adminlevel/ert_station/pizza_station) +"nl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/yellow/west, +/area/adminlevel/ert_station/pizza_station) +"np" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox{ + pixel_y = 5 + }, +/obj/item/pizzabox{ + pixel_y = 8 + }, +/obj/item/pizzabox{ + pixel_y = 11 + }, +/obj/item/pizzabox{ + pixel_y = 14 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"ny" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, +/obj/structure/machinery/light/small/blue{ + pixel_x = 16 + }, +/turf/open/floor/prison/greenblue, +/area/adminlevel/ert_station/pizza_station) +"nA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_x = -15; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_y = 6; + pixel_x = -15 + }, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 2; + pixel_x = 3; + layer = 2.97 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"nB" = ( +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"nK" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 + }, +/obj/structure/machinery/firealarm{ + pixel_x = -24 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"nU" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"nX" = ( +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/obj/structure/machinery/light, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"oh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"ok" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"oo" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/yellow/southeast, +/area/adminlevel/ert_station/pizza_station) +"ov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"oy" = ( +/obj/structure/bedsheetbin{ + icon_state = "linenbin-empty"; + name = "solar lattice"; + pixel_y = 6 + }, +/turf/open/floor/almayer_hull, +/area/space) +"oD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint{ + locked = 1; + name = "STAFF ONLY"; + req_one_access = null; + req_one_access_txt = "101" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"oG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"oU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"oX" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space/basic, +/area/space) +"pA" = ( +/obj/structure/machinery/vending/coffee{ + pixel_y = 18; + density = 0 + }, +/obj/structure/machinery/alarm{ + pixel_x = -32 + }, +/turf/open/floor/prison/yellow/northwest, +/area/adminlevel/ert_station/pizza_station) +"pD" = ( +/turf/open/mars_dirt/mars_cave_10, +/area/space) +"pE" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"pS" = ( +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"pT" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_container/food/snacks/meat/fish/crab, +/obj/item/reagent_container/food/snacks/meat/fish/crab, +/obj/item/reagent_container/food/snacks/meat/fish/squid, +/obj/item/reagent_container/food/snacks/meat/fish/squid, +/obj/item/reagent_container/food/snacks/meat/fish/squid, +/obj/item/reagent_container/food/snacks/meat/fish/squid/alt, +/obj/item/reagent_container/food/snacks/meat/fish/squid/alt, +/obj/item/reagent_container/food/snacks/meat/fish/squid/alt, +/obj/item/reagent_container/food/snacks/meat/fish, +/obj/item/reagent_container/food/snacks/meat/fish, +/obj/item/reagent_container/food/snacks/meat/fish, +/obj/item/reagent_container/food/snacks/meat/fish, +/turf/open/floor/prison/floor_marked/southwest, +/area/adminlevel/ert_station/pizza_station) +"qb" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 1; + pixel_y = 9; + pixel_x = 2 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"qh" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_rightengine" + }, +/area/adminlevel/ert_station/pizza_station) +"qo" = ( +/obj/structure/closet{ + pixel_y = 16; + density = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_x = 16; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"qq" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"qs" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/souto/diet/classic{ + pixel_x = -2 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"qt" = ( +/turf/open/mars_dirt/mars_cave_6, +/area/space) +"qv" = ( +/obj/structure/surface/table/reinforced, +/obj/item/book/manual/chef_recipes, +/obj/item/clothing/head/chefhat, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"qy" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/juicer{ + pixel_y = 9 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"qA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"qU" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_x = 7; + buckling_x = 7 + }, +/obj/structure/machinery/alarm{ + pixel_y = 25 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"qX" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"rj" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/ceramic_plate{ + pixel_y = 1; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 9; + pixel_y = 14 + }, +/obj/structure/machinery/light{ + pixel_x = 16; + dir = 1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"rk" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"rA" = ( +/obj/structure/bed/chair/bolted{ + dir = 1; + pixel_y = 12; + buckling_y = 12 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"rK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"rL" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + locked = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"rO" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/yellow/southeast, +/area/adminlevel/ert_station/pizza_station) +"sa" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"se" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom"; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"sk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/yellow/southwest, +/area/adminlevel/ert_station/pizza_station) +"sl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"sp" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/pizzacutter, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"sx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"sB" = ( +/turf/open/mars_dirt/mars_cave_7, +/area/space) +"sI" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/tool/kitchen/tray{ + pixel_y = 13; + pixel_x = 16 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 13; + pixel_x = 15 + }, +/obj/item/trash/plate{ + pixel_y = 3; + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"sJ" = ( +/obj/structure/machinery/vending/ingredients, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"sW" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/almayer{ + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"sY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"td" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/pizza_station) +"tp" = ( +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_y = 17; + pixel_x = 10; + buckling_y = 17; + buckling_x = 10 + }, +/obj/structure/machinery/light, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"tq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"ty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"tC" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/trash/plate{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/cheeseburger{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"tH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Galaxy Pizza!" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"tM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/pizza_station) +"tT" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/space) +"tX" = ( +/obj/structure/machinery/disposal{ + layer = 2.97 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"ub" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "pizza_takeaway_out" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"ug" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"uj" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space, +/area/space) +"uo" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/adminlevel/ert_station/pizza_station) +"uz" = ( +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 9 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"uD" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"uK" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.01 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + layer = 3.01 + }, +/turf/open/space, +/area/space) +"uN" = ( +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"uY" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/fork{ + pixel_y = 4; + pixel_x = 11 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_y = 4; + pixel_x = 19 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + name = "\improper Kitchen Shutters"; + id = "kitchen_pizza_time" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/pizza_station) +"vi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/redcorner/north, +/area/adminlevel/ert_station/pizza_station) +"vq" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"vr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"vA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/light{ + pixel_x = 16; + dir = 1 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"vI" = ( +/obj/structure/disposalpipe/segment, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/broken_bottle{ + pixel_y = 7; + pixel_x = -12 + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"vR" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.01 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"vX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"wa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"wb" = ( +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/space) +"wi" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/greenblue/northwest, +/area/adminlevel/ert_station/pizza_station) +"wm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"wo" = ( +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/turf/open/floor/prison/yellowcorner/west, +/area/adminlevel/ert_station/pizza_station) +"wq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/redcorner/east, +/area/adminlevel/ert_station/pizza_station) +"wu" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/ceramic_plate{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 13; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/carrotcakeslice{ + pixel_y = 6; + pixel_x = -1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"wz" = ( +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"wD" = ( +/obj/structure/platform_decoration/kutjevo, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"wP" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"wQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"wX" = ( +/obj/structure/closet/crate/freezer/cooler/oj, +/turf/open/floor/prison/floor_marked/southwest, +/area/adminlevel/ert_station/pizza_station) +"xc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"xe" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"xh" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -15; + pixel_y = 17 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/applecakeslice{ + pixel_y = 8; + pixel_x = 3 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"xl" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/tool/kitchen/tray{ + pixel_y = 20 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 20 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"xp" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/disposalpipe/trunk, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.01 + }, +/turf/open/space, +/area/space) +"xy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"xV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate, +/area/adminlevel/ert_station/pizza_station) +"xX" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/plate{ + pixel_y = 3; + pixel_x = 1 + }, +/obj/item/reagent_container/food/snacks/mushroompizzaslice{ + pixel_y = 4 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"yg" = ( +/obj/structure/platform_decoration/kutjevo, +/turf/open/space/basic, +/area/space) +"yo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/greenbluecorner/east, +/area/adminlevel/ert_station/pizza_station) +"yr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/red/southwest, +/area/adminlevel/ert_station/pizza_station) +"ys" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"yE" = ( +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 17; + pixel_x = -1 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 15; + pixel_x = 2 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"yG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate, +/area/adminlevel/ert_station/pizza_station) +"yK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison/greenblue/west, +/area/adminlevel/ert_station/pizza_station) +"yM" = ( +/obj/structure/sign/safety/fridge{ + pixel_y = -32 + }, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"yP" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/bigbiteburger{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/snacks/bigbiteburger{ + pixel_x = 3 + }, +/turf/open/floor/prison/greenblue/southwest, +/area/adminlevel/ert_station/pizza_station) +"zf" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"zh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"zj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"zl" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 28; + pixel_x = 16 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/structure/machinery/light, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"zx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 2 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 4 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 8 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"zz" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"zC" = ( +/obj/structure/bed/chair/bolted{ + dir = 4; + pixel_x = 7; + buckling_x = 7 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"zE" = ( +/obj/structure/machinery/door_control/airlock{ + id = "pizza_takeaway"; + name = "Airlock - Inside"; + pixel_x = 28; + pixel_y = 8 + }, +/obj/structure/machinery/door_control/airlock{ + id = "pizza_takeaway_out"; + name = "Airlock - Out"; + pixel_x = 28; + pixel_y = 18 + }, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"zM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/redcorner/north, +/area/adminlevel/ert_station/pizza_station) +"zQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"zW" = ( +/turf/open/floor/prison/greenblue/east, +/area/adminlevel/ert_station/pizza_station) +"Ab" = ( +/obj/structure/machinery/gibber{ + pixel_y = 10 + }, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Ac" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/galley{ + pixel_x = -24 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Aj" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Ao" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/light{ + pixel_x = 16; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Au" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"Ax" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_y = -3; + pixel_x = 16 + }, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"AB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"AD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Central Fridge" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"AH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/yellow/north, +/area/adminlevel/ert_station/pizza_station) +"AV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"AW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = -32 + }, +/obj/structure/sign/safety/landingzone{ + pixel_y = -32; + pixel_x = 15 + }, +/turf/open/floor/prison/yellow, +/area/adminlevel/ert_station/pizza_station) +"Bu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"By" = ( +/obj/structure/machinery/suit_storage_unit/standard_unit{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Bz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate{ + pixel_y = 2 + }, +/obj/item/trash/plate{ + pixel_y = 4 + }, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_y = 8 + }, +/obj/item/trash/plate{ + pixel_y = 10 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"BC" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox{ + pixel_y = 5 + }, +/obj/item/pizzabox{ + pixel_y = 8 + }, +/obj/item/pizzabox{ + pixel_y = 11 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"BJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"BU" = ( +/obj/structure/bed/chair/bolted{ + dir = 1; + pixel_y = 12; + buckling_y = 12 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/prison/yellow/west, +/area/adminlevel/ert_station/pizza_station) +"Ck" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light/small{ + pixel_x = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"Cp" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Cv" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/drinks/soymilk, +/obj/item/reagent_container/food/drinks/soymilk, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/greenblue/north, +/area/adminlevel/ert_station/pizza_station) +"CO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"CP" = ( +/turf/open/floor/almayer_hull, +/area/space) +"CT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Db" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Dd" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"Dx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"DF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/chem_dispenser/soda/beer{ + density = 0; + pixel_y = 31 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"DH" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/barricade/handrail/kutjevo{ + layer = 3.01 + }, +/turf/open/space/basic, +/area/space) +"DW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"Ee" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + layer = 3.01 + }, +/turf/open/space/basic, +/area/space) +"Eh" = ( +/obj/structure/prop/souto_land/pole{ + dir = 4; + pixel_y = 9 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"Ei" = ( +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/pizza_station) +"Ep" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"EH" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_y = 18; + layer = 3.01; + density = 0 + }, +/turf/open/floor/prison/yellow/northeast, +/area/adminlevel/ert_station/pizza_station) +"EK" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "pizza_takeaway" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"EO" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"EZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Fd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"Ff" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/plate{ + pixel_y = 10; + pixel_x = 1 + }, +/obj/item/trash/plate{ + pixel_y = -1 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_y = 13 + }, +/obj/item/reagent_container/food/condiment/coldsauce{ + pixel_y = 11; + pixel_x = -7 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 2; + pixel_x = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Fj" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/ricepudding, +/turf/open/floor/prison/floor_marked/southwest, +/area/adminlevel/ert_station/pizza_station) +"Fp" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/machinery/light/blue, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/turf/open/floor/prison/floor_marked/southwest, +/area/adminlevel/ert_station/pizza_station) +"Fz" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"FB" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"FD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "pizza_takeaway" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"FL" = ( +/turf/closed/shuttle/ert{ + icon_state = "rightengine_1"; + opacity = 0 + }, +/area/adminlevel/ert_station/pizza_station) +"FS" = ( +/obj/structure/machinery/light, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"FY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/reagent_container/food/drinks/cans/iced_tea{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/iced_tea{ + pixel_x = 11; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Gd" = ( +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 9 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"Gh" = ( +/obj/structure/machinery/disposal{ + layer = 2.97 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Gj" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Gm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"Gn" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Gp" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/mushroomsoup{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_y = 4; + pixel_x = 7 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Gt" = ( +/obj/structure/machinery/atm{ + pixel_y = 32; + pixel_x = 2 + }, +/turf/open/floor/prison/yellow/northeast, +/area/adminlevel/ert_station/pizza_station) +"GB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/turf/open/floor/prison/yellow/east, +/area/adminlevel/ert_station/pizza_station) +"GM" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space) +"Ha" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan_leftengine" + }, +/area/adminlevel/ert_station/pizza_station) +"Hd" = ( +/turf/open/floor/prison/yellow/east, +/area/adminlevel/ert_station/pizza_station) +"Hg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/space) +"HL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 2 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"HQ" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/plate{ + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/bigbiteburger{ + pixel_y = 10; + pixel_x = -1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Ib" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"Iq" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"ID" = ( +/turf/closed/wall/rock/red, +/area/space) +"IJ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"Jd" = ( +/obj/structure/closet{ + pixel_y = 16; + density = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"Jl" = ( +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"Jm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"Jq" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, +/turf/open/floor/prison/greenblue, +/area/adminlevel/ert_station/pizza_station) +"JP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"JR" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"JU" = ( +/obj/structure/janitorialcart{ + pixel_y = 15 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 9 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"JV" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/bed/chair/bolted{ + pixel_y = -1; + buckling_y = -1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Kb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + dir = 4; + pixel_y = -3 + }, +/obj/item/corncob, +/obj/item/corncob{ + pixel_y = 7 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Kc" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control/airlock{ + id = "pizza_takeaway_out"; + name = "Airlock - Out"; + pixel_x = 2; + pixel_y = 18 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"Kd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"Kv" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sink/kitchen{ + pixel_y = 12 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"KB" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/washing_machine{ + pixel_y = 10 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"KC" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/prop/souto_land/streamer{ + dir = 6 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"KY" = ( +/turf/open/floor/prison/blue_plate, +/area/adminlevel/ert_station/pizza_station) +"La" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks/macho{ + pixel_y = 11; + pixel_x = -6 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_y = 11; + pixel_x = 6 + }, +/obj/item/reagent_container/food/condiment/coldsauce{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Lk" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Ln" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer{ + icon_state = "security_det"; + name = "Shuttle control deck"; + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"Ly" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"LH" = ( +/obj/structure/bed/chair/bolted{ + dir = 1; + pixel_y = 12; + buckling_y = 12 + }, +/obj/structure/prop/souto_land/pole{ + dir = 8; + pixel_y = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Mj" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"Mk" = ( +/obj/structure/machinery/vending/coffee{ + pixel_y = 12 + }, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"Mt" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/item/storage/briefcase/stowaway, +/turf/open/floor/prison/yellow/northwest, +/area/adminlevel/ert_station/pizza_station) +"Mz" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space, +/area/space) +"MB" = ( +/obj/structure/surface/table/reinforced, +/obj/item/pizzabox/meat, +/obj/item/tool/kitchen/pizzacutter, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"MK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/bottle/wine{ + pixel_y = 7; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/bottle/vermouth{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"MS" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/light/small{ + pixel_x = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"MT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"MX" = ( +/turf/open/floor/prison/red/northwest, +/area/adminlevel/ert_station/pizza_station) +"Nb" = ( +/obj/item/reagent_container/food/condiment/hotsauce/franks/macho{ + pixel_y = 18; + pixel_x = -6 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_y = 18; + pixel_x = 6 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/coldsauce{ + pixel_y = 13; + pixel_x = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Nl" = ( +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"No" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"Nr" = ( +/obj/structure/machinery/vending/cola{ + pixel_y = 12 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32; + pixel_x = -13 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"Ny" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"NG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"NH" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"NJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan20" + }, +/area/adminlevel/ert_station/pizza_station) +"NN" = ( +/obj/structure/closet/secure_closet/fridge/groceries/stock, +/obj/structure/machinery/light/small/blue{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/greenblue/northwest, +/area/adminlevel/ert_station/pizza_station) +"NP" = ( +/obj/structure/sink/kitchen{ + pixel_x = 11; + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/water{ + pixel_x = 38 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"NT" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 8 + }, +/turf/open/space, +/area/space) +"NV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers & Bathroom"; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Og" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza{ + pixel_y = -2; + pixel_x = -16 + }, +/obj/item/trash/plate{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_y = 8; + pixel_x = -1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Oh" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 9; + pixel_x = 1 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"OE" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 9; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"OG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/obj/structure/lattice, +/turf/open/space, +/area/space) +"OJ" = ( +/turf/open/floor/solarpanel, +/area/space) +"OK" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_y = 3; + layer = 4.15 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"OQ" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 8; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + pixel_y = 13; + pixel_x = -2; + layer = 4.11 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"OS" = ( +/turf/open/floor/prison/red/east, +/area/adminlevel/ert_station/pizza_station) +"Pa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Pi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"Pl" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -8; + pixel_y = 15; + layer = 4.11 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -8; + pixel_y = 2; + layer = 4.12 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Pn" = ( +/obj/structure/surface/table/reinforced, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Pq" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Ps" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/tool/mop{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Py" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/space) +"PF" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"PH" = ( +/obj/structure/surface/table/reinforced/cloth, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"PL" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"Qe" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"QN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"Ra" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/plate{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/vegetablepizzaslice{ + pixel_y = 10; + pixel_x = -2 + }, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_y = 16; + pixel_x = -11; + layer = 3.03 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Rf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Rh" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/pizza_station) +"RC" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"RG" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/platform/kutjevo/smooth, +/turf/open/space/basic, +/area/space) +"RN" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12; + layer = 4.11 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"RP" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/blueyellowfull, +/area/adminlevel/ert_station/pizza_station) +"RV" = ( +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/head/chefhat, +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Se" = ( +/obj/structure/bed/chair/bolted{ + dir = 1; + pixel_y = 12; + buckling_y = 12 + }, +/obj/structure/prop/souto_land/streamer{ + pixel_y = 9 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Sg" = ( +/obj/structure/platform/kutjevo/smooth{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 1; + icon_state = "hr_kutjevo"; + name = "solar lattice" + }, +/turf/open/space, +/area/space) +"So" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red/north, +/area/adminlevel/ert_station/pizza_station) +"Sp" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 4 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Sq" = ( +/obj/structure/kitchenspike, +/obj/item/reagent_container/food/snacks/meat{ + pixel_y = -5 + }, +/obj/item/reagent_container/food/snacks/meat{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenblue, +/area/adminlevel/ert_station/pizza_station) +"Sr" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -13; + pixel_y = -6 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_y = 1; + pixel_x = 5 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_y = 3; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/meatsteak{ + pixel_y = 5; + pixel_x = 1 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Sz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"SL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 28; + pixel_x = 3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_y = 15; + pixel_x = -8 + }, +/turf/open/floor/prison/yellow/west, +/area/adminlevel/ert_station/pizza_station) +"ST" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/ad{ + icon_state = "poster41"; + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"SV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Showers" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Te" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 28; + pixel_x = 16 + }, +/obj/item/tool/kitchen/utensil/pknife{ + pixel_x = 13; + pixel_y = 1 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/chocolatecakeslice{ + pixel_y = 2; + pixel_x = 2 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 13; + pixel_x = 5 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Tu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"TC" = ( +/turf/open/floor/prison/yellowcorner, +/area/adminlevel/ert_station/pizza_station) +"TD" = ( +/turf/open/floor/prison/bright_clean2, +/area/adminlevel/ert_station/pizza_station) +"TE" = ( +/turf/open/mars_dirt/mars_cave_3, +/area/space) +"TH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/obj/item/storage/box/drinkingglasses{ + layer = 2.97; + pixel_x = 14 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 2.97 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"TK" = ( +/turf/closed/shuttle/ert, +/area/adminlevel/ert_station/pizza_station) +"TQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"TY" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Uu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/antag{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Ux" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/bed/chair/bolted{ + pixel_y = -1; + buckling_y = -1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"UB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Vj" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, +/turf/open/floor/prison/greenblue/northeast, +/area/adminlevel/ert_station/pizza_station) +"Vm" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray{ + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza{ + pixel_y = 1 + }, +/turf/open/floor/prison/greenbluecorner, +/area/adminlevel/ert_station/pizza_station) +"Vs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + pixel_x = 16; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/prison/red/west, +/area/adminlevel/ert_station/pizza_station) +"Vt" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan25" + }, +/area/adminlevel/ert_station/pizza_station) +"Vv" = ( +/obj/docking_port/stationary/emergency_response/idle_port4, +/turf/open/floor/plating, +/area/adminlevel/ert_station/pizza_station) +"Vx" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"VD" = ( +/obj/structure/barricade/handrail/pizza{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -3; + pixel_y = 15; + layer = 4.03 + }, +/obj/structure/surface/table/almayer{ + layer = 4.02 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"VK" = ( +/turf/open/floor/prison/yellow/southwest, +/area/adminlevel/ert_station/pizza_station) +"VN" = ( +/obj/structure/bed/chair/bolted{ + dir = 8; + pixel_x = -7; + buckling_x = -7 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 30; + serial_number = 12 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"VQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"VS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_y = -8 + }, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"VX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Wb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"WL" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/adminlevel/ert_station/pizza_station) +"WP" = ( +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"WS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"WZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Kitchen and Cleaning" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Xa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/landingzone{ + pixel_y = 32; + pixel_x = 15 + }, +/turf/open/floor/prison/yellow/north, +/area/adminlevel/ert_station/pizza_station) +"Xg" = ( +/obj/structure/prop/souto_land/streamer{ + pixel_y = 9; + pixel_x = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"Xj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/airlock{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Xn" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 4 + }, +/turf/open/space, +/area/space) +"Xq" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small/blue{ + pixel_x = 16 + }, +/obj/item/reagent_container/food/snacks/bigbiteburger{ + pixel_x = -2 + }, +/obj/item/reagent_container/food/snacks/bigbiteburger{ + pixel_x = 4 + }, +/turf/open/floor/prison/greenblue, +/area/adminlevel/ert_station/pizza_station) +"Xr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) +"Xw" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Xx" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/sliceable/flatdough, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"XB" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/pizza_station) +"XD" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/prison/red/northeast, +/area/adminlevel/ert_station/pizza_station) +"XV" = ( +/obj/structure/prop/souto_land/streamer{ + dir = 4; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/red, +/area/adminlevel/ert_station/pizza_station) +"XZ" = ( +/obj/structure/barricade/handrail/pizza{ + pixel_y = -3 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Ya" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "STAFF ONLY" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"Yf" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/condiment/hotsauce/franks/macho{ + pixel_y = 18; + pixel_x = -6 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_y = 18; + pixel_x = 6 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 1; + pixel_x = -4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"Yj" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/tool/kitchen/utensil/pknife{ + pixel_x = -6 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = -2; + pixel_x = 16 + }, +/turf/open/floor/redyellowfull, +/area/adminlevel/ert_station/pizza_station) +"Ym" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/prison, +/area/adminlevel/ert_station/pizza_station) +"Yo" = ( +/turf/open/space, +/area/space) +"Yu" = ( +/obj/structure/platform/kutjevo/smooth, +/obj/structure/platform/kutjevo/smooth{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Yv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/pizza_station) +"Yw" = ( +/turf/closed/shuttle/ert{ + icon_state = "stan27" + }, +/area/adminlevel/ert_station/pizza_station) +"Yy" = ( +/turf/open/space/basic, +/area/space) +"YD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/meatpizza{ + pixel_y = 5 + }, +/turf/open/floor/prison/greenblue/southeast, +/area/adminlevel/ert_station/pizza_station) +"YF" = ( +/obj/structure/platform_decoration/kutjevo{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"YL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Galaxy Pizza!" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"YM" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "Docking Umbilical" + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer_hull, +/area/adminlevel/ert_station/pizza_station) +"YO" = ( +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/pizza_station) +"ZD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + name = "\improper Umbillical Airlock"; + id = "pizza_ert_arrival" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/pizza_station) +"ZM" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/drinks/soymilk, +/obj/item/reagent_container/food/drinks/soymilk, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/greenblue/north, +/area/adminlevel/ert_station/pizza_station) +"ZR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/cmo, +/area/adminlevel/ert_station/pizza_station) +"ZV" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/adminlevel/ert_station/pizza_station) +"ZX" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/sign/poster/ad{ + icon_state = "poster12"; + pixel_y = 32 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/turf/open/floor/prison/kitchen, +/area/adminlevel/ert_station/pizza_station) + +(1,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(2,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yo +Yy +Yy +Yy +Yy +Yy +Yy +Yo +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(3,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +yg +qq +qq +qX +yg +uj +qq +qq +NT +yg +qq +qq +qX +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(4,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +yg +RG +OJ +OJ +Sg +eI +OJ +OJ +OJ +Sg +wb +OJ +OJ +Py +NT +Yy +Yy +Yy +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(5,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +Yy +yg +Xw +OJ +OJ +OJ +tT +Xw +OJ +OJ +OJ +Gn +Xw +OJ +OJ +OJ +OG +Vx +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(6,1,1) = {" +Yy +Yy +Yy +Yy +Yy +ID +ID +ID +ID +eI +OJ +OJ +OJ +oy +CP +CP +OJ +OJ +OJ +CP +CP +oy +OJ +OJ +tT +rk +Vx +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(7,1,1) = {" +Yy +Yy +Yy +Yy +ID +ID +ID +ID +Vx +Pq +OJ +OJ +oy +CP +fH +fb +OJ +oy +OJ +ja +Mz +CP +oy +OJ +OJ +oX +Yy +Yy +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(8,1,1) = {" +Yy +Yy +Yy +ID +ID +ID +ID +Vx +Yy +RC +PF +xe +CP +lx +Xn +ID +ID +ID +ID +ID +ha +xe +CP +OJ +OJ +oX +Yy +Yy +Vx +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(9,1,1) = {" +Yy +Yy +Yy +ID +ID +ID +Yy +Vx +Yy +Yy +Yy +eI +CP +ID +ID +ID +ID +ID +ID +ID +ID +eI +CP +fH +Hg +fO +Yy +Vx +Vx +Yy +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(10,1,1) = {" +Yy +Yy +Yy +ID +ID +Vx +Vx +Vx +Yy +Yy +Yy +ID +ID +ID +ID +ID +ID +ID +ID +ID +Ei +Ei +WL +WL +WL +uo +Ei +Ei +Vx +Vx +Vx +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(11,1,1) = {" +Yy +Yy +Yy +Yy +ID +Yy +Yy +Vx +yg +qq +ID +ID +ID +ID +ID +ID +ID +ID +ID +Ei +Ei +hX +Ff +rA +uN +Pl +TY +Ei +Ei +Vx +Yy +Yy +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(12,1,1) = {" +Yy +Yy +Yy +Yy +Vx +Yy +Yy +wD +Yu +jH +ID +Ei +Ei +Ei +Ei +Ei +Ei +Ei +Ei +Ei +Gh +Ly +Sp +uN +Sp +RN +jx +FS +Ei +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(13,1,1) = {" +Yy +Yy +Yy +Vx +Vx +Yy +yg +Yu +jH +pD +Ei +Ei +nK +RV +Xx +ef +wm +qy +YO +YO +vA +ug +Au +vr +yr +uN +wu +ly +Rh +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(14,1,1) = {" +Yy +Yy +Yy +Vx +wD +qq +Xw +jH +TE +TE +Ei +Ac +nB +nB +nB +nB +nB +nB +eD +YO +dc +zQ +oU +vi +Gm +uN +ec +xh +Rh +Yy +Yy +Yy +Yy +Ei +uo +uo +uo +Ei +uo +uo +uo +Ei +Yy +Yy +Yy +"} +(15,1,1) = {" +Yy +Yy +Yy +yg +Yu +pD +pD +TE +pD +qt +Rh +qv +nB +ZR +MB +cr +Pn +nB +nB +jy +tq +MK +FY +wz +Gm +hb +pS +pS +Rh +Yy +Yy +Yy +Ei +Ei +Mt +nl +SL +BU +fj +nl +sk +Ei +Ei +Yy +Yy +"} +(16,1,1) = {" +Yy +Yy +Yy +eI +pD +TE +pD +sB +TE +TE +Rh +Dx +nB +jo +np +JP +aA +Lk +nB +uY +tq +WP +TH +wz +uz +cO +KC +mt +Rh +Yy +Yy +Ei +Ei +pA +fE +VS +rK +an +Nl +cL +wo +VK +Ei +Ei +Yy +"} +(17,1,1) = {" +Yy +Yy +Yy +eI +sB +TE +TE +sB +TE +pD +Rh +Yf +UB +AB +Pa +NP +Pa +ov +nB +jf +tq +WP +La +wz +nU +uN +Ax +tC +Rh +Yy +Yy +Ei +Ei +Xa +Jm +Jm +Jm +Jm +Jm +Jm +Jm +aS +Ei +Ei +Yy +"} +(18,1,1) = {" +Yy +Yy +Yy +eI +NJ +TK +TK +Ha +lg +sB +Ei +sJ +jo +nB +ae +YO +uD +Ab +bT +YO +Ao +WP +lv +wz +OE +uN +HQ +fN +Ei +Yy +Yy +Yy +uo +AH +Vv +fu +fu +fu +fu +fu +fu +gU +uo +Yy +Yy +"} +(19,1,1) = {" +Yy +Yy +Yy +eI +Yw +Ln +Mj +WS +TE +eW +Ei +YO +Rf +kz +YO +YO +YO +YO +YO +YO +Uu +WP +nA +sa +aP +Db +zz +ys +Ei +ah +bd +YM +Ei +cK +fu +fu +fu +fu +fu +fu +fu +lJ +Ei +GM +Yy +"} +(20,1,1) = {" +Yy +Yy +Yy +eI +Vt +nf +nf +qh +FL +TE +uo +Ps +fg +WP +zf +WZ +TD +Fd +lN +Ya +bB +WP +lE +wz +Gm +Jl +Jl +Jl +tH +IJ +Jl +Jl +Ep +AH +fu +fu +fu +fu +fu +fu +fu +gU +la +Yy +Yy +"} +(21,1,1) = {" +Yy +Yy +Yy +eI +sB +sB +TE +eW +TE +pD +uo +JU +Tu +CO +CO +NG +mP +ok +Sz +BJ +vX +WP +yE +wz +hc +ir +ir +ir +Wb +zQ +ir +Dd +EO +AH +fu +fu +fu +fu +fu +fu +fu +gU +sW +Yy +Yy +"} +(22,1,1) = {" +Yy +Yy +Yy +eI +sB +sB +eW +TE +TE +ID +Ei +cP +tq +WP +Bz +YO +YO +AD +YO +YO +gV +WP +zx +DW +Eh +lB +mt +hR +Ei +ah +bd +YM +Ei +cK +fu +fu +fu +fu +fu +fu +fu +lJ +Ei +GM +Yy +"} +(23,1,1) = {" +Yy +Yy +Yy +eI +me +TE +TE +pD +ID +ID +Ei +Kv +EZ +Qe +BC +YO +wi +yK +yP +YO +VQ +WP +ic +wz +nU +hb +Iq +xl +Ei +Yy +Yy +Yy +uo +AH +fu +fu +fu +fu +fu +fu +fu +gU +uo +Yy +Yy +"} +(24,1,1) = {" +Yy +Yy +Yy +RC +xe +me +me +ID +ID +ID +Ei +ZX +tq +WP +Fz +YO +eo +yG +Xq +YO +CT +WP +HL +wz +XV +uN +pS +tp +Ei +Yy +Yy +Yy +uo +AH +fu +fu +fu +fu +fu +fu +fu +gU +uo +Yy +Yy +"} +(25,1,1) = {" +Yy +Yy +Yy +Yy +RC +uK +PL +Ei +Ei +Ei +Ei +Xj +Xr +WP +sp +YO +ZM +KY +Sq +YO +DF +WP +gu +wz +OE +hb +qs +dh +Ei +Yy +Yy +Yy +uo +AH +fu +fu +fu +fu +fu +fu +fu +gU +uo +Yy +Yy +"} +(26,1,1) = {" +Yy +Yy +Yy +Yy +Yy +xp +ei +ub +oG +Ym +FD +vI +wa +FB +YO +YO +Cv +KY +Jq +YO +ST +Kb +am +wz +Gd +Db +zz +ys +Ei +ah +bd +YM +Ei +cK +fu +fu +fu +fu +fu +fu +fu +lJ +Ei +GM +Yy +"} +(27,1,1) = {" +Yy +Yy +Yy +Yy +Yy +DH +lL +lH +zE +aD +EK +im +sY +fg +YO +NN +yo +KY +ny +YO +Vs +sx +sx +wq +oh +zh +zh +zh +YL +vr +zh +Ib +Ep +AH +fu +fu +fu +fu +fu +fu +fu +gU +rL +Yy +Yy +"} +(28,1,1) = {" +Yy +Yy +Yy +Yy +Yy +vR +Kc +Ei +Ei +Ei +Ei +By +sl +aq +bU +hL +xV +Vm +iw +YO +OS +OS +OS +zM +Gm +OS +OS +OS +ZD +cq +OS +OS +EO +AH +fu +fu +fu +fu +fu +fu +fu +gU +sW +Yy +Yy +"} +(29,1,1) = {" +Yy +Yy +Vx +Yy +Yy +YF +Ee +fO +ID +ID +Ei +Ei +qA +yM +YO +Vj +zW +YD +YO +YO +Nr +Mk +OK +wQ +uz +wP +KC +hR +Ei +ah +bd +YM +Ei +cK +fu +fu +fu +fu +fu +fu +fu +lJ +Ei +GM +Yy +"} +(30,1,1) = {" +Yy +Vx +Vx +Vx +Vx +Vx +Yy +Yy +Yy +ID +ID +Ei +dS +YO +YO +YO +oD +YO +YO +qU +jV +Gj +mk +wQ +aJ +hb +PH +zl +Ei +Yy +Yy +Yy +uo +AH +fu +fu +fu +fu +fu +fu +fu +gU +uo +Yy +Yy +"} +(31,1,1) = {" +Yy +Yy +ID +Yy +Yy +Vx +Vx +Vx +Vx +Vx +Ei +Ei +bl +pT +YO +mj +ty +MS +YO +rj +ma +uN +MX +Pi +Xg +hb +Cp +lw +Rh +Yy +Yy +Ei +Ei +iY +No +No +No +No +No +No +No +AW +Ei +Ei +Yy +"} +(32,1,1) = {" +Yy +ID +ID +ID +ID +Vx +Yy +Yy +Yy +Yy +Rh +Fj +td +Fp +YO +XB +MT +bo +YO +Sr +Ra +uN +jb +xc +qb +uN +pS +pS +Rh +Yy +Yy +Ei +Ei +EH +hg +Nl +NH +ZV +JR +Nl +TC +rO +Ei +Ei +Yy +"} +(33,1,1) = {" +Yy +ID +ID +ID +ID +Vx +Yy +Yy +Yy +Yy +Rh +wX +tM +hv +YO +YO +SV +YO +YO +VN +pS +XZ +jT +So +Oh +uN +zC +zC +Rh +Yy +Yy +Yy +Ei +Ei +Gt +Hd +Hd +GB +Hd +Hd +oo +Ei +Ei +Yy +Yy +"} +(34,1,1) = {" +Yy +Yy +ID +ID +ID +ID +ID +Yy +Yy +Yy +Ei +YO +YO +YO +YO +KB +VX +zj +YO +Aj +RP +gy +gb +XD +eK +hb +Yj +sI +Rh +Yy +Yy +Yy +Yy +Ei +uo +uo +uo +Ei +uo +uo +uo +Ei +Yy +Yy +Yy +"} +(35,1,1) = {" +Yy +Yy +ID +ID +ID +ID +ID +Vx +Yy +Yy +Rh +vq +QN +Yv +se +Bu +TQ +Bu +NV +AV +cI +OQ +jV +uN +kW +RN +Og +xX +Rh +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(36,1,1) = {" +Yy +Yy +Yy +ID +ID +ID +Vx +Vx +Vx +Vx +Rh +vq +ap +Kd +YO +qo +eQ +Ck +YO +YO +tX +JV +Gp +Te +Se +hb +pS +nX +Ei +Yy +Yy +Vx +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(37,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Vx +ID +Ei +Ei +jq +pE +YO +Jd +xy +Ny +YO +YO +YO +Ux +cE +eh +LH +VD +Nb +Ei +Ei +Vx +Vx +Vx +Vx +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(38,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +ID +Ei +Ei +Ei +Ei +WL +WL +WL +Ei +ID +Ei +Ei +WL +WL +WL +uo +Ei +Ei +Vx +Yy +Yy +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(39,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +ID +ID +ID +ID +ID +Yy +Yy +Yy +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Vx +Vx +Vx +Yy +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(40,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +ID +ID +Vx +Yy +Yy +Yy +Vx +Vx +Yy +Vx +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(41,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Vx +Vx +Vx +Yy +Yy +Vx +Yy +ID +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(42,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Vx +Vx +Vx +ID +ID +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(43,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Vx +ID +ID +ID +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(44,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +ID +ID +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} +(45,1,1) = {" +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +Yy +"} diff --git a/maps/templates/twe_ert_station.dmm b/maps/templates/lazy_templates/twe_ert_station.dmm similarity index 80% rename from maps/templates/twe_ert_station.dmm rename to maps/templates/lazy_templates/twe_ert_station.dmm index 78c98b4d16..83ecd232b2 100644 --- a/maps/templates/twe_ert_station.dmm +++ b/maps/templates/lazy_templates/twe_ert_station.dmm @@ -7,16 +7,11 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "aq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/north, /area/adminlevel/ert_station/royal_marines_station) "ar" = ( /obj/effect/decal/cleanable/dirt, @@ -25,9 +20,7 @@ pixel_x = 1 }, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "aH" = ( /obj/structure/platform{ @@ -42,10 +35,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "SE-out" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "aK" = ( /obj/structure/window/framed/almayer, @@ -62,9 +52,7 @@ "aX" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "bp" = ( /turf/closed/shuttle/twe_dropship{ @@ -88,16 +76,11 @@ /area/adminlevel/ert_station/royal_marines_station) "bS" = ( /obj/structure/machinery/optable, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "co" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "cu" = ( /obj/structure/machinery/shower{ @@ -109,10 +92,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "cL" = ( /obj/structure/platform{ @@ -135,10 +115,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "dm" = ( /obj/structure/closet/coffin/woodencrate, @@ -146,9 +123,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ds" = ( /obj/effect/decal/warning_stripes{ @@ -159,9 +134,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "du" = ( /obj/structure/platform, @@ -176,31 +149,21 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "dK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "eh" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "ei" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "eu" = ( /obj/effect/decal/cleanable/dirt, @@ -209,41 +172,28 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ev" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "eV" = ( /obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "eX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "fp" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin7" - }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/adminlevel/ert_station/royal_marines_station) "ft" = ( /obj/structure/machinery/bioprinter{ stored_metal = 1000 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "fx" = ( /obj/structure/platform{ @@ -252,25 +202,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "fD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "fJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ id = "Delta_1"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "fM" = ( /obj/effect/decal/warning_stripes{ @@ -285,60 +227,37 @@ /obj/structure/platform_decoration{ dir = 9 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "gg" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/ert_station/royal_marines_station) "gl" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "go" = ( /obj/structure/platform, /obj/structure/blocker/invisible_wall, -/turf/closed/shuttle/twe_dropship{ - icon_state = "0,0" - }, +/turf/closed/shuttle/twe_dropship, /area/adminlevel/ert_station/royal_marines_station) "gq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "gx" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "gJ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "gS" = ( /turf/closed/wall/almayer/outer, /area/adminlevel/ert_station/royal_marines_station) "gT" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "gU" = ( /turf/closed/shuttle/twe_dropship{ @@ -358,22 +277,15 @@ "hA" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southeast, /area/adminlevel/ert_station/royal_marines_station) "hI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "hL" = ( -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/ert_station/royal_marines_station) "iz" = ( /obj/effect/decal/warning_stripes{ @@ -387,24 +299,18 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "iE" = ( /obj/structure/prop/almayer/computers/sensor_computer1{ density = 0; pixel_y = 16 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "iG" = ( /obj/structure/bed/alien, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "iI" = ( /turf/closed/shuttle/twe_dropship{ @@ -419,9 +325,7 @@ "iO" = ( /obj/structure/surface/table/almayer, /obj/item/storage/surgical_tray, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "iR" = ( /obj/structure/platform{ @@ -443,29 +347,19 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "je" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "jk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "jl" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "jr" = ( /turf/closed/shuttle/twe_dropship{ @@ -473,9 +367,7 @@ }, /area/adminlevel/ert_station/royal_marines_station) "ju" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin6" - }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/adminlevel/ert_station/royal_marines_station) "jB" = ( /obj/structure/platform, @@ -491,9 +383,7 @@ /area/adminlevel/ert_station/royal_marines_station) "jD" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "jI" = ( /turf/closed/shuttle/twe_dropship{ @@ -512,9 +402,7 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "jW" = ( /turf/closed/shuttle/twe_dropship{ @@ -533,9 +421,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kh" = ( /obj/structure/surface/table/almayer, @@ -543,9 +429,7 @@ /area/adminlevel/ert_station/royal_marines_station) "kx" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ky" = ( /obj/structure/platform{ @@ -554,22 +438,15 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "kH" = ( /obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kL" = ( /obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kO" = ( /obj/structure/surface/table/almayer, @@ -578,36 +455,23 @@ pixel_y = 7 }, /obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "kT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "kW" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "kX" = ( -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "ll" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/adminlevel/ert_station/royal_marines_station) "lq" = ( /turf/closed/shuttle/twe_dropship{ @@ -622,16 +486,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lF" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "lG" = ( /obj/effect/decal/warning_stripes{ @@ -642,16 +502,12 @@ icon_state = "W"; pixel_x = -1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/security, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "lN" = ( /obj/structure/surface/table/almayer, @@ -669,9 +525,7 @@ layer = 3.1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "mb" = ( /obj/effect/decal/cleanable/dirt, @@ -679,9 +533,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "mc" = ( /obj/structure/platform, @@ -689,10 +541,7 @@ /turf/open/void, /area/adminlevel/ert_station/royal_marines_station) "mo" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/adminlevel/ert_station/royal_marines_station) "mw" = ( /turf/closed/shuttle/twe_dropship{ @@ -705,17 +554,13 @@ dir = 1 }, /obj/structure/machinery/iv_drip, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "mK" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "nj" = ( /turf/closed/wall/r_wall/elevator{ @@ -725,16 +570,11 @@ "nl" = ( /obj/structure/largecrate/random/barrel/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "nn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "nw" = ( /obj/effect/decal/cleanable/dirt, @@ -745,9 +585,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "nI" = ( /obj/structure/machinery/light{ @@ -757,33 +595,23 @@ layer = 3.1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "nT" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "nW" = ( /obj/structure/closet/coffin/woodencrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "od" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station/royal_marines_station) "ol" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -795,9 +623,7 @@ id = "RMC_brig_2"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "oo" = ( /obj/structure/bed/chair/comfy{ @@ -821,39 +647,27 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "oY" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "oZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "pk" = ( /obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "ps" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/west, /area/adminlevel/ert_station/royal_marines_station) "pJ" = ( /turf/closed/wall/r_wall/elevator{ @@ -864,10 +678,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "pO" = ( /turf/closed/shuttle/twe_dropship{ @@ -878,10 +689,7 @@ /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "qi" = ( /obj/structure/platform{ @@ -897,26 +705,18 @@ icon_state = "SW-out"; layer = 2.5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "qj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "qx" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "qG" = ( /obj/structure/platform, @@ -931,25 +731,18 @@ icon_state = "NE-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "qN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "qZ" = ( /obj/structure/largecrate, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ri" = ( /obj/effect/decal/warning_stripes{ @@ -962,24 +755,17 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "ro" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "rv" = ( /obj/structure/machinery/sleep_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "rI" = ( /turf/closed/wall/r_wall/elevator{ @@ -992,27 +778,18 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "rS" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin4" - }, +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/adminlevel/ert_station/royal_marines_station) "sb" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "su" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sy" = ( /turf/open/floor/plating/kutjevo, @@ -1028,9 +805,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sI" = ( /obj/effect/decal/warning_stripes{ @@ -1040,16 +815,12 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "sP" = ( /obj/structure/surface/table/almayer, /obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "sR" = ( /obj/structure/platform{ @@ -1064,10 +835,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "tr" = ( /turf/closed/shuttle/twe_dropship{ @@ -1082,15 +850,10 @@ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "tw" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southeast, /area/adminlevel/ert_station/royal_marines_station) "uc" = ( /turf/closed/shuttle/twe_dropship{ @@ -1099,9 +862,7 @@ /area/adminlevel/ert_station/royal_marines_station) "uq" = ( /obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "uC" = ( /obj/structure/platform{ @@ -1114,34 +875,25 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "uK" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "uQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "uU" = ( /obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "vm" = ( /obj/structure/machinery/light{ @@ -1150,9 +902,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "vB" = ( /obj/effect/decal/cleanable/dirt, @@ -1168,9 +918,7 @@ id = "RMC_brig_1"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "vR" = ( /obj/structure/surface/table/almayer, @@ -1178,9 +926,7 @@ pixel_x = -3; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "wl" = ( /turf/closed/shuttle/twe_dropship{ @@ -1199,9 +945,7 @@ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "xb" = ( /obj/effect/decal/cleanable/dirt, @@ -1209,9 +953,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "xm" = ( /turf/closed/shuttle/twe_dropship{ @@ -1220,42 +962,29 @@ /area/adminlevel/ert_station/royal_marines_station) "xw" = ( /obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = null; name = "Operating Theatre 1" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "xx" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, +/turf/open/floor/almayer/redcorner/north, /area/adminlevel/ert_station/royal_marines_station) "xy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "xE" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "xN" = ( -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "xW" = ( /obj/structure/bed/chair/vehicle{ @@ -1266,44 +995,31 @@ dir = 1; pixel_x = -8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "xX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "yK" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "yQ" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "orangefull" - }, +/turf/open/floor/almayer/orangefull, /area/adminlevel/ert_station/royal_marines_station) "yW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "zk" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zw" = ( /turf/closed/shuttle/twe_dropship{ @@ -1315,9 +1031,7 @@ name = "Spare Prison Uniforms"; req_one_access = null }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zM" = ( /obj/effect/decal/warning_stripes{ @@ -1328,34 +1042,24 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "zY" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "Aa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/device/defibrillator, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ac" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "Ad" = ( /obj/effect/decal/cleanable/dirt, @@ -1375,9 +1079,7 @@ /obj/item/storage/box/pillbottles{ pixel_y = 11 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ai" = ( /obj/structure/platform{ @@ -1386,17 +1088,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "E" }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Am" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "Aq" = ( /obj/structure/machinery/light{ @@ -1405,15 +1101,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Au" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "AQ" = ( /turf/closed/shuttle/twe_dropship{ @@ -1426,41 +1118,27 @@ }, /area/adminlevel/ert_station/royal_marines_station) "Ba" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "Bh" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "Bk" = ( /obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "BC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "BV" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin8" - }, +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/adminlevel/ert_station/royal_marines_station) "Ci" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin5" - }, +/turf/open/shuttle/dropship/light_grey_left_to_right, /area/adminlevel/ert_station/royal_marines_station) "Cj" = ( /turf/closed/shuttle/twe_dropship{ @@ -1468,17 +1146,15 @@ }, /area/adminlevel/ert_station/royal_marines_station) "Cm" = ( -/obj/item/handcuffs{ +/obj/item/restraint/handcuffs{ pixel_y = 12 }, /obj/structure/surface/table/almayer, -/obj/item/handcuffs, +/obj/item/restraint/handcuffs, /obj/item/weapon/baton{ pixel_x = -12 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Cu" = ( /turf/open/void, @@ -1499,15 +1175,10 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Dg" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, +/turf/open/floor/almayer/orangecorner/east, /area/adminlevel/ert_station/royal_marines_station) "Do" = ( /obj/effect/decal/warning_stripes{ @@ -1519,9 +1190,7 @@ pixel_x = 1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "DA" = ( /obj/effect/decal/cleanable/dirt, @@ -1537,9 +1206,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "DS" = ( /turf/closed/shuttle/twe_dropship{ @@ -1552,9 +1219,7 @@ id = "Delta_1"; name = "\improper Bathroom" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "DV" = ( /obj/structure/window/framed/almayer, @@ -1564,9 +1229,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "EG" = ( /turf/closed/shuttle/twe_dropship{ @@ -1585,9 +1248,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "EK" = ( /turf/closed/shuttle/twe_dropship{ @@ -1596,10 +1257,7 @@ /area/adminlevel/ert_station/royal_marines_station) "EX" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "Fp" = ( /obj/structure/platform{ @@ -1619,26 +1277,17 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "FA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/east, /area/adminlevel/ert_station/royal_marines_station) "FN" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "FX" = ( /obj/effect/decal/cleanable/dirt, @@ -1646,21 +1295,14 @@ dir = 4 }, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Gd" = ( /obj/structure/machinery/cryopod, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "GM" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) "GO" = ( /obj/structure/platform{ @@ -1691,9 +1333,7 @@ "GZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "He" = ( /obj/structure/platform{ @@ -1705,9 +1345,10 @@ "Hg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "sterile_green" +/obj/structure/machinery/power/apc/antag{ + dir = 1 }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Hp" = ( /obj/structure/prop/almayer/cannon_cable_connector{ @@ -1725,24 +1366,17 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "HD" = ( /obj/structure/machinery/light{ dir = 8 }, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "HJ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northeast, /area/adminlevel/ert_station/royal_marines_station) "HM" = ( /turf/closed/shuttle/twe_dropship{ @@ -1761,9 +1395,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ip" = ( /obj/effect/decal/warning_stripes{ @@ -1773,9 +1405,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ir" = ( /obj/structure/surface/table/almayer, @@ -1805,9 +1435,7 @@ /obj/structure/bed/chair/vehicle{ pixel_x = 8 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "IH" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ @@ -1819,9 +1447,7 @@ id = "RMC_Pub_brig"; name = "shutters" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "IK" = ( /obj/structure/platform{ @@ -1836,10 +1462,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "IY" = ( /obj/effect/decal/warning_stripes{ @@ -1849,17 +1472,12 @@ dir = 4 }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Jg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/gear/antag_guns, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "JD" = ( /obj/effect/decal/warning_stripes{ @@ -1881,31 +1499,23 @@ pixel_x = -1; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "JM" = ( /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "JO" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Kl" = ( /obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Ko" = ( /obj/structure/platform{ @@ -1922,10 +1532,7 @@ /area/adminlevel/ert_station/royal_marines_station) "Ku" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, +/turf/open/floor/almayer/red/southwest, /area/adminlevel/ert_station/royal_marines_station) "KD" = ( /obj/structure/platform_decoration{ @@ -1942,15 +1549,11 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Lj" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Mb" = ( /obj/structure/closet/secure_closet/brig{ @@ -1958,9 +1561,7 @@ req_one_access = null }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Mg" = ( /obj/structure/surface/table/almayer, @@ -1983,9 +1584,7 @@ pixel_x = -5; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ms" = ( /obj/effect/decal/warning_stripes{ @@ -1998,9 +1597,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MJ" = ( /turf/open/floor/almayer, @@ -2017,17 +1614,13 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MN" = ( /obj/structure/prop/almayer/cannon_cable_connector{ pixel_y = -3 }, -/turf/open/shuttle/dropship{ - icon_state = "rasputin15" - }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "MQ" = ( /turf/closed/shuttle/twe_dropship{ @@ -2039,31 +1632,22 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "MX" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/ert_station/royal_marines_station) "MY" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "Nc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, +/turf/open/floor/almayer/red, /area/adminlevel/ert_station/royal_marines_station) "Ni" = ( /obj/structure/platform{ @@ -2075,14 +1659,10 @@ /area/adminlevel/ert_station/royal_marines_station) "Nl" = ( /obj/structure/machinery/cm_vending/gear/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Nm" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Nv" = ( /obj/effect/decal/cleanable/dirt, @@ -2091,9 +1671,7 @@ icon_state = "E"; pixel_x = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "NE" = ( /turf/closed/shuttle/twe_dropship{ @@ -2104,37 +1682,28 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/west, /area/adminlevel/ert_station/royal_marines_station) "NV" = ( /turf/closed/wall/r_wall/elevator, /area/adminlevel/ert_station/royal_marines_station) "Oi" = ( /obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Ok" = ( /obj/structure/machinery/cryopod{ dir = 1; pixel_y = 7 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "Or" = ( /obj/structure/machinery/cryopod{ layer = 3.1; pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, +/turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/royal_marines_station) "Os" = ( /turf/closed/shuttle/twe_dropship{ @@ -2145,9 +1714,7 @@ /obj/structure/platform_decoration{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "OB" = ( /obj/structure/surface/table/almayer, @@ -2160,15 +1727,11 @@ pixel_x = -3; pixel_y = -2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "OE" = ( /obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "OK" = ( /obj/effect/decal/warning_stripes{ @@ -2177,10 +1740,7 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "OO" = ( /turf/closed/shuttle/twe_dropship{ @@ -2191,9 +1751,7 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Pd" = ( /obj/structure/platform{ @@ -2208,9 +1766,7 @@ /obj/structure/machinery/door/airlock/almayer/medical{ name = "Operating Theatre 2" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Pl" = ( /obj/effect/decal/cleanable/dirt, @@ -2223,9 +1779,7 @@ pixel_x = 3; pixel_y = 3 }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Px" = ( /turf/closed/shuttle/twe_dropship{ @@ -2233,9 +1787,7 @@ }, /area/adminlevel/ert_station/royal_marines_station) "PB" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) "PC" = ( /obj/effect/decal/warning_stripes{ @@ -2244,10 +1796,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "PD" = ( /obj/effect/decal/cleanable/dirt, @@ -2255,10 +1804,7 @@ id = "RMC_Pub_brig"; pixel_x = -29 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/almayer/red/west, /area/adminlevel/ert_station/royal_marines_station) "PL" = ( /obj/structure/bed/chair/comfy{ @@ -2279,10 +1825,7 @@ dir = 10; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "PN" = ( /obj/structure/machinery/light{ @@ -2294,31 +1837,23 @@ /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "PU" = ( /obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "PY" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Qi" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access{ req_access = null }, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Qj" = ( /obj/structure/window/framed/almayer, @@ -2348,9 +1883,7 @@ pixel_x = -1 }, /obj/structure/machinery/cm_vending/clothing/antag, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Rw" = ( /obj/structure/platform{ @@ -2361,22 +1894,15 @@ }, /area/adminlevel/ert_station/royal_marines_station) "Ry" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, +/turf/open/floor/almayer/red/north, /area/adminlevel/ert_station/royal_marines_station) "RF" = ( -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "RH" = ( /obj/structure/largecrate/machine, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sb" = ( /obj/docking_port/stationary/emergency_response/idle_port6, @@ -2393,9 +1919,7 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sd" = ( /turf/closed/wall/r_wall/elevator{ @@ -2407,15 +1931,11 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sv" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Sw" = ( /turf/closed/shuttle/twe_dropship{ @@ -2429,9 +1949,7 @@ /area/adminlevel/ert_station/royal_marines_station) "SY" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "Tf" = ( /obj/structure/surface/table/almayer, @@ -2459,9 +1977,7 @@ /area/adminlevel/ert_station/royal_marines_station) "TY" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Ub" = ( /obj/structure/platform, @@ -2477,9 +1993,7 @@ /area/adminlevel/ert_station/royal_marines_station) "Uc" = ( /obj/structure/largecrate/machine, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Uk" = ( /obj/structure/platform, @@ -2499,33 +2013,23 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Up" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northwest, /area/adminlevel/ert_station/royal_marines_station) "Uq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Ur" = ( /turf/open/floor/plating/plating_catwalk, /area/adminlevel/ert_station/royal_marines_station) "Ut" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, +/turf/open/floor/almayer/red/northwest, /area/adminlevel/ert_station/royal_marines_station) "Uv" = ( /obj/structure/bed/chair/comfy{ @@ -2538,9 +2042,7 @@ /obj/structure/toilet{ dir = 8 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "UH" = ( /turf/closed/wall/r_wall/elevator{ @@ -2550,15 +2052,11 @@ "UJ" = ( /obj/structure/largecrate/random/barrel/blue, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "UT" = ( /obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "UV" = ( /obj/effect/decal/warning_stripes{ @@ -2569,9 +2067,7 @@ icon_state = "N"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "UZ" = ( /obj/structure/surface/table/almayer, @@ -2587,10 +2083,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/northeast, /area/adminlevel/ert_station/royal_marines_station) "Vu" = ( /turf/closed/shuttle/twe_dropship{ @@ -2603,18 +2096,13 @@ pixel_y = 1 }, /obj/structure/platform, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "VA" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/faxmachine/uscm/brig, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "VF" = ( /obj/effect/decal/warning_stripes{ @@ -2627,16 +2115,11 @@ /obj/structure/platform_decoration{ dir = 10 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "VG" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "VH" = ( /obj/structure/machinery/light{ @@ -2651,31 +2134,25 @@ /obj/item/device/flash{ pixel_y = -8 }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "VL" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/straight_jacket, -/obj/item/handcuffs{ +/obj/item/restraint/handcuffs{ pixel_x = -4; pixel_y = 1 }, -/obj/item/handcuffs, +/obj/item/restraint/handcuffs, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Wa" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/green{ pixel_x = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "We" = ( /obj/effect/decal/warning_stripes{ @@ -2695,9 +2172,7 @@ icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "Wo" = ( /obj/effect/decal/warning_stripes{ @@ -2712,10 +2187,7 @@ dir = 6; layer = 3.51 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Wt" = ( /obj/effect/decal/warning_stripes{ @@ -2730,10 +2202,7 @@ /obj/structure/platform_decoration{ dir = 5 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Wx" = ( /obj/structure/bed/chair/comfy{ @@ -2760,18 +2229,13 @@ /area/adminlevel/ert_station/royal_marines_station) "WC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow/east, /area/adminlevel/ert_station/royal_marines_station) "WD" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/recharger, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "WI" = ( /obj/structure/closet/secure_closet/brig{ @@ -2785,9 +2249,7 @@ /obj/item/clothing/under/color/orange, /obj/item/clothing/under/color/orange, /obj/item/clothing/under/color/orange, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "WL" = ( /turf/closed/shuttle/twe_dropship{ @@ -2798,10 +2260,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/north, /area/adminlevel/ert_station/royal_marines_station) "WS" = ( /turf/closed/wall/almayer, @@ -2815,9 +2274,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "WY" = ( /obj/structure/platform{ @@ -2840,27 +2297,18 @@ /obj/structure/toilet{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Xe" = ( /obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orange" - }, +/turf/open/floor/almayer/orange, /area/adminlevel/ert_station/royal_marines_station) "Xh" = ( -/turf/open/floor/almayer{ - icon_state = "redfull" - }, +/turf/open/floor/almayer/redfull, /area/adminlevel/ert_station/royal_marines_station) "Xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, +/turf/open/floor/almayer/orange/southwest, /area/adminlevel/ert_station/royal_marines_station) "XB" = ( /obj/structure/sink{ @@ -2873,15 +2321,11 @@ /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "XF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "XN" = ( /obj/effect/decal/warning_stripes{ @@ -2891,9 +2335,7 @@ icon_state = "N"; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) "XT" = ( /obj/structure/machinery/door_control/brbutton{ @@ -2906,42 +2348,29 @@ pixel_x = 25; pixel_y = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, +/turf/open/floor/almayer/red/east, /area/adminlevel/ert_station/royal_marines_station) "XV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, +/turf/open/floor/almayer/cargo_arrow, /area/adminlevel/ert_station/royal_marines_station) "Yk" = ( /obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "YI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, +/turf/open/floor/almayer/sterile_green, /area/adminlevel/ert_station/royal_marines_station) "YZ" = ( /obj/structure/platform_decoration{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +/turf/open/floor/almayer/test_floor4, /area/adminlevel/ert_station/royal_marines_station) "Zf" = ( -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "Zk" = ( /obj/effect/decal/warning_stripes{ @@ -2954,15 +2383,10 @@ /obj/structure/platform_decoration{ dir = 6 }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, +/turf/open/floor/almayer/plating/northeast, /area/adminlevel/ert_station/royal_marines_station) "Zl" = ( -/turf/open/shuttle/dropship{ - icon_state = "rasputin3" - }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/adminlevel/ert_station/royal_marines_station) "Zx" = ( /obj/structure/surface/table/almayer, @@ -2971,9 +2395,7 @@ pixel_y = 6 }, /obj/item/storage/box/syringes, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, +/turf/open/floor/almayer/dark_sterile, /area/adminlevel/ert_station/royal_marines_station) "ZA" = ( /obj/structure/bed/chair/comfy, @@ -2994,9 +2416,7 @@ pixel_x = -1; pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/almayer/plate, /area/adminlevel/ert_station/royal_marines_station) (1,1,1) = {" diff --git a/maps/templates/upp_ert_station.dmm b/maps/templates/lazy_templates/upp_ert_station.dmm similarity index 75% rename from maps/templates/upp_ert_station.dmm rename to maps/templates/lazy_templates/upp_ert_station.dmm index 6db27a83e6..20ee56f6b2 100644 --- a/maps/templates/upp_ert_station.dmm +++ b/maps/templates/lazy_templates/upp_ert_station.dmm @@ -1,34 +1,27 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 16; - pixel_y = 13 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"ab" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "ag" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"am" = ( +"ah" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + name = "\improper Morgue" + }, +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"an" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "au" = ( /obj/structure/platform/kutjevo/smooth{ @@ -36,83 +29,11 @@ }, /turf/open/space, /area/space) -"ax" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"ay" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/adminlevel/ert_station/upp_station) -"aA" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) -"aF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/drinkingglass{ - pixel_y = 5; - pixel_x = 8 - }, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"aH" = ( -/turf/open/floor/strata{ - icon_state = "red1" - }, -/area/adminlevel/ert_station/upp_station) -"aO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ - hacked = 1; - name = "\improper Response Team Automated Guns Rack"; - use_power = 0; - use_snowflake_points = 1; - density = 0; - pixel_x = 32 - }, -/turf/open/floor/strata{ - icon_state = "blue3"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) -"aP" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) -"aS" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" +"aU" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "aV" = ( /obj/item/stack/catwalk, @@ -131,33 +52,6 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"aW" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 8 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, -/area/adminlevel/ert_station/upp_station) -"bd" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) -"bh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) "bi" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -166,75 +60,63 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"bk" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" +"bU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/area/adminlevel/ert_station/upp_station) -"bp" = ( -/obj/structure/machinery/shower{ - pixel_y = 21 +/obj/structure/barricade/handrail/wire{ + dir = 8 }, +/turf/open/asphalt/cement/cement14, +/area/adminlevel/ert_station/upp_station) +"bV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/surgical_tray, +/turf/open/floor/strata/white_cyan4/south, +/area/adminlevel/ert_station/upp_station) +"ci" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) +"cn" = ( /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/floorscorched2, /area/adminlevel/ert_station/upp_station) -"bM" = ( -/obj/structure/machinery/power/apc/antag{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "green4" +"cq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical{ + desc = "A sterile mask designed to help prevent the spread of diseases. This one has already been used."; + name = "used sterile mask" }, +/turf/open/floor/strata/white_cyan3/east, /area/adminlevel/ert_station/upp_station) -"bY" = ( +"ct" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/recharger, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"ce" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/trash/plate{ + pixel_y = 2 }, -/area/adminlevel/ert_station/upp_station) -"cj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/trash/plate{ + pixel_y = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/trash/plate{ + pixel_y = 6 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/item/trash/plate{ + pixel_y = 8 }, -/area/adminlevel/ert_station/upp_station) -"cl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +/obj/item/trash/plate{ + pixel_y = 10 }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"cs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 +"cB" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "cC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -246,56 +128,39 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"cJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"cE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) +"cN" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_y = 18 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +/obj/structure/barricade/handrail/wire{ + dir = 8 }, +/turf/open/asphalt/cement/cement2, /area/adminlevel/ert_station/upp_station) -"cO" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"cR" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"cS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter{ + pixel_y = 2; + pixel_x = -9 }, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/green3/northeast, /area/adminlevel/ert_station/upp_station) "da" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/adminlevel/ert_station/upp_station) -"dh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/upp{ - pixel_y = 1; - pixel_x = -3 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_y = 10; - pixel_x = 2 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = 9; - pixel_x = -7 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/adminlevel/ert_station/upp_station) "di" = ( /obj/structure/platform_decoration/kutjevo{ dir = 8 @@ -303,119 +168,102 @@ /obj/structure/platform_decoration/kutjevo, /turf/open/space, /area/space) -"dz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"dr" = ( +/turf/open/floor/strata/white_cyan4/east, /area/adminlevel/ert_station/upp_station) -"dB" = ( -/turf/open/floor/strata{ - icon_state = "green4" +"ds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/adminlevel/ert_station/upp_station) -"dH" = ( -/obj/structure/largecrate/random/secure, /obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"dK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Station Hallway" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"dL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 +"du" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8 }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "dW" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"eo" = ( -/obj/structure/bed/chair{ - dir = 4 +"ed" = ( +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/upp_station) +"ep" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/white_cyan4/south, +/area/adminlevel/ert_station/upp_station) +"ey" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) -"ev" = ( -/obj/item/tool/wet_sign, +"ez" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"eA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Shuttle Bay" }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"eT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_y = 4; - pixel_x = 5 +"eG" = ( +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/upp_station) +"eR" = ( +/obj/structure/machinery/sleep_console, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan3, +/area/adminlevel/ert_station/upp_station) +"eS" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/obj/item/reagent_container/food/drinks/flask/canteen{ - pixel_y = 7; - pixel_x = -5 +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 }, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 +/obj/structure/bed{ + can_buckle = 0; + icon_state = "abed" }, -/area/adminlevel/ert_station/upp_station) -"eU" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13; + icon_state = "abed" }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/obj/item/bedsheet/brown{ + pixel_y = 13 }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) "eV" = ( /obj/structure/platform_decoration/kutjevo, /obj/structure/lattice, /turf/open/space/basic, /area/space) -"eX" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) "eY" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -430,49 +278,54 @@ }, /turf/open/space, /area/space) +"fa" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) "fc" = ( /obj/structure/platform_decoration/kutjevo{ dir = 4 }, /turf/open/space/basic, /area/space) -"fd" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 +"fe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/rebreather/scarf, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"fi" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - name = "\improper Morgue" - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"fh" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/phone_base/rotary{ + name = "UPP Station"; + phone_category = "UPP"; + phone_id = "UPP Station"; + do_not_disturb = 2 }, +/turf/open/floor/strata/floor2, +/area/adminlevel/ert_station/upp_station) +"fp" = ( +/turf/open/floor/strata/red3/north, /area/adminlevel/ert_station/upp_station) -"fk" = ( +"fr" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, +/turf/open/floor/strata/white_cyan3/northwest, +/area/adminlevel/ert_station/upp_station) +"ft" = ( +/obj/structure/surface/rack, +/obj/item/clothing/gloves/yellow, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "fA" = ( /obj/effect/decal/warning_stripes{ @@ -482,95 +335,113 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"fE" = ( -/obj/structure/target{ - name = "punching bag" +"fF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 4; + pixel_x = 5 }, -/turf/open/asphalt/cement{ - icon_state = "cement4" +/obj/item/reagent_container/food/drinks/flask/canteen{ + pixel_y = 7; + pixel_x = -5 }, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"fK" = ( +"fG" = ( +/obj/structure/bed/roller, /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) "fM" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"fR" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"fT" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_y = 13; + pixel_x = -10 }, +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) -"fW" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"fY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "Engineering"; + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"ge" = ( -/obj/structure/closet/boxinggloves, -/turf/open/asphalt/cement{ - icon_state = "cement9" +"ga" = ( +/obj/structure/closet/bodybag, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/cyan1/east, +/area/adminlevel/ert_station/upp_station) +"gg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"gh" = ( +/turf/open/floor/solarpanel, +/area/space) +"gx" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, +/turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"gf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"gN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/strata/green3/east, +/area/adminlevel/ert_station/upp_station) +"gR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 1; + pixel_x = -3 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_y = 4; + pixel_x = 3 }, -/area/adminlevel/ert_station/upp_station) -"gt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_y = 9; + pixel_x = -7 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" +/obj/structure/machinery/light/double/blue{ + dir = 4 }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) -"gx" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, +"hd" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "he" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"hg" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"hj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Shuttle Bay" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"hp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "hA" = ( /obj/structure/platform_decoration/kutjevo{ @@ -579,25 +450,23 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/space) -"hF" = ( -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, +"hB" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) -"hM" = ( -/turf/open/floor/strata{ - icon_state = "damaged3" +"hK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) -"hO" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/strata{ - icon_state = "floor2" +"hR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access = null }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "hV" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -610,78 +479,51 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"ia" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"ie" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_y = 13; - pixel_x = -10 - }, -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"ii" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"iB" = ( -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" - }, +"ij" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"iJ" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Spare Prison Uniforms"; - req_one_access = null - }, -/turf/open/floor/strata{ - icon_state = "red1" - }, +"iy" = ( +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) -"iM" = ( +"iF" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 8; name = "\improper Brig Cell" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"iV" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 9 - }, +"iL" = ( +/turf/open/floor/strata/white_cyan3/southwest, /area/adminlevel/ert_station/upp_station) -"jc" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "red3" - }, +"iP" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/white_cyan4/west, /area/adminlevel/ert_station/upp_station) -"jg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +"iS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"jh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" +"ji" = ( +/obj/structure/bed/chair{ + dir = 4 }, +/turf/open/floor/strata/green3/west, +/area/adminlevel/ert_station/upp_station) +"jo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "jt" = ( /obj/structure/lattice, @@ -695,38 +537,91 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"kc" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"jK" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light/double/blue{ + dir = 4 }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) -"kf" = ( -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" +"jQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) -"ks" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8 +"jR" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 }, -/turf/open/floor/strata{ - icon_state = "green4"; +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13; + icon_state = "abed" + }, +/obj/structure/bed{ + can_buckle = 0; + icon_state = "abed" + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/upp_station) +"jV" = ( +/obj/structure/machinery/light/double/blue{ dir = 4 }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"kF" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_y = 18 +"jW" = ( +/turf/open/floor/strata/green3, +/area/adminlevel/ert_station/upp_station) +"kb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Toilet" }, -/obj/structure/barricade/handrail/wire{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"km" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"kq" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement{ - icon_state = "cement2" +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"kr" = ( +/obj/structure/machinery/gibber{ + pixel_y = 10 }, +/obj/structure/surface/table/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"kv" = ( +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/upp_station) +"kJ" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "kN" = ( /obj/item/tool/weldingtool, @@ -736,25 +631,11 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"kS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) -"kT" = ( -/obj/structure/surface/rack, -/obj/item/clothing/gloves/yellow, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"kW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) "lb" = ( /obj/effect/decal/warning_stripes{ @@ -775,15 +656,9 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/adminlevel/ert_station/upp_station) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/largecrate/black_market/confiscated_weaponry, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +"lj" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/strata/white_cyan3, /area/adminlevel/ert_station/upp_station) "lo" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -800,58 +675,60 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"lp" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan4" - }, +"ls" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) -"lw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/facepaint/black, -/turf/open/floor/strata{ - icon_state = "blue1" +"lz" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Station Hallway" }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"mb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 +"lC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/closet/crate/ammo/alt, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"me" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/suit/straight_jacket, -/obj/item/handcuffs{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/handcuffs, -/turf/open/floor/strata{ - icon_state = "red1" +"lE" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/green1, +/area/adminlevel/ert_station/upp_station) +"lQ" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) -"mf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = null +"lV" = ( +/obj/structure/closet{ + name = "boxing attire" }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/obj/structure/machinery/light/double/blue{ + dir = 4 }, +/turf/open/asphalt/cement/cement1/north, /area/adminlevel/ert_station/upp_station) -"mq" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/strata{ +"mh" = ( +/obj/item/tool/wet_sign, +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" + pixel_x = -12; + pixel_y = 13 }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "mr" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -861,6 +738,12 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"mx" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/asphalt/cement/cement4, +/area/adminlevel/ert_station/upp_station) "mz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -874,54 +757,24 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"mG" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/phone_base/rotary{ - name = "UPP Station"; - phone_category = "UPP"; - phone_id = "UPP Station"; - do_not_disturb = 2 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/adminlevel/ert_station/upp_station) "mJ" = ( /obj/structure/lattice, /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/space) -"mP" = ( -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ni" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/turf/open/floor/strata/white_cyan4/north, /area/adminlevel/ert_station/upp_station) -"ne" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata{ - icon_state = "orange_icorner"; - dir = 1 - }, +"nu" = ( +/turf/open/floor/strata/red1, /area/adminlevel/ert_station/upp_station) -"nh" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"nw" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan3/southwest, /area/adminlevel/ert_station/upp_station) "nC" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -930,72 +783,25 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"nO" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"om" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +"nU" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/device/flashlight/lamp/green{ + pixel_y = -3; + pixel_x = 16 }, +/turf/open/floor/strata/green3/north, +/area/adminlevel/ert_station/upp_station) +"ou" = ( +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "ow" = ( /obj/item/stack/catwalk, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"oz" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, -/area/adminlevel/ert_station/upp_station) -"oJ" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13; - icon_state = "abed" - }, -/obj/structure/bed{ - can_buckle = 0; - icon_state = "abed" - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/adminlevel/ert_station/upp_station) -"oK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"oO" = ( +/obj/structure/closet/boxinggloves, +/turf/open/asphalt/cement/cement9, /area/adminlevel/ert_station/upp_station) "oP" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1015,28 +821,20 @@ }, /turf/open/space/basic, /area/space) -"pb" = ( -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"pc" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 4 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) "pe" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"ph" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/upp_station) +"pj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Station Hallway" + }, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) "po" = ( /turf/closed/wall/strata_outpost/reinforced, /area/adminlevel/ert_station/upp_station) @@ -1046,12 +844,20 @@ }, /turf/open/asphalt/cement, /area/adminlevel/ert_station/upp_station) -"pv" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"px" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"pF" = ( +/turf/open/floor/strata/white_cyan3/northwest, +/area/adminlevel/ert_station/upp_station) +"pH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/damaged3, +/area/adminlevel/ert_station/upp_station) +"pJ" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) "pK" = ( /obj/structure/monorail{ @@ -1066,22 +872,47 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"qd" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +"pU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 13 }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"qi" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"pW" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"pX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"qw" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + pixel_y = 18; + pixel_x = 2; + density = 0 }, -/turf/open/floor/strata{ - icon_state = "green3" +/turf/open/floor/strata/green3/north, +/area/adminlevel/ert_station/upp_station) +"qy" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "qA" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1092,75 +923,53 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"qF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access = null - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +"qC" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/red4/west, +/area/adminlevel/ert_station/upp_station) +"qK" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/cyan1/east, /area/adminlevel/ert_station/upp_station) -"qH" = ( -/turf/open/floor/strata{ - icon_state = "floorscorched2" +"qQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"qM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 1 +"qR" = ( +/obj/structure/machinery/shower{ + pixel_y = 21 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/machinery/light/double/blue{ + dir = 8 }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "qU" = ( /turf/closed/shuttle/elevator, /area/adminlevel/ert_station/upp_station) -"qY" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4 +"qX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +/obj/structure/machinery/door_control{ + pixel_y = -22; + name = "Toilet Shutters Button"; + id = "upp_toilet" + }, +/obj/structure/mirror{ + pixel_x = 28 }, +/turf/open/floor/strata/white_cyan2/west, /area/adminlevel/ert_station/upp_station) "rb" = ( /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"rf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/adminlevel/ert_station/upp_station) -"rk" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/adminlevel/ert_station/upp_station) -"rr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) "rs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1170,28 +979,17 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"ry" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"rC" = ( -/obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"rB" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"rL" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/obj/structure/machinery/floodlight, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +"rF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/attachable/bayonet/upp{ + pixel_y = 9; + pixel_x = 4 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "rT" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1202,40 +1000,14 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"rX" = ( -/obj/structure/machinery/cm_vending/gear/antag{ - hacked = 1; - name = "\improper Response Team Automated Gear Rack"; - use_snowflake_points = 1; - pixel_y = -32; - density = 0 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, -/area/adminlevel/ert_station/upp_station) -"sb" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"rZ" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"sk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/tool/pickaxe/diamonddrill, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +"so" = ( +/turf/open/floor/strata/white_cyan3/south, /area/adminlevel/ert_station/upp_station) "sr" = ( /obj/structure/lattice, @@ -1244,20 +1016,6 @@ }, /turf/open/space/basic, /area/space) -"sy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata{ - icon_state = "damaged3" - }, -/area/adminlevel/ert_station/upp_station) -"sz" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floorscorched2" - }, -/area/adminlevel/ert_station/upp_station) "sA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -1281,56 +1039,35 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"sI" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = -1 - }, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/corsat{ - icon_state = "plate" +"sL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"sN" = ( +/obj/structure/filingcabinet{ + layer = 2.9 }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) -"sK" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - icon_state = "white_cyan2" +"sT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) "sU" = ( /obj/structure/window/framed/strata, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"sY" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) -"tr" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 +"tm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 5; + pixel_x = 8 }, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "tv" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1339,34 +1076,21 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"tx" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"tF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, -/area/adminlevel/ert_station/upp_station) -"tG" = ( +"tA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/turf/open/floor/strata/purp3/east, +/area/adminlevel/ert_station/upp_station) +"tQ" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/turf/open/floor/strata/white_cyan2, +/area/adminlevel/ert_station/upp_station) +"ud" = ( +/obj/structure/closet/crate, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "ue" = ( /obj/structure/lattice, @@ -1380,39 +1104,28 @@ }, /turf/open/space/basic, /area/space) -"uf" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/strata{ - icon_state = "green1" - }, -/area/adminlevel/ert_station/upp_station) -"uj" = ( -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, -/area/adminlevel/ert_station/upp_station) -"uE" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"um" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"uI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"ux" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "uL" = ( /obj/structure/platform/kutjevo/smooth, /obj/structure/lattice, /turf/open/space/basic, /area/space) +"uN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) "uP" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1423,62 +1136,43 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"uW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"va" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"vi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/bodybags, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) -"ve" = ( -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, +"vj" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"vn" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"vy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) -"vo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +"vz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/area/adminlevel/ert_station/upp_station) -"vw" = ( -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ + hacked = 1; + name = "\improper Response Team Automated Guns Rack"; + use_power = 0; + use_snowflake_points = 1; + density = 0; + pixel_x = 32 }, +/turf/open/floor/strata/blue3/north, /area/adminlevel/ert_station/upp_station) -"vH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 +"vA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "vK" = ( /obj/structure/disposalpipe/segment{ @@ -1487,6 +1181,12 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"vN" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) "vS" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -1494,12 +1194,14 @@ /obj/structure/lattice, /turf/open/space, /area/space) -"vY" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"vW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Cryo Cells" }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "vZ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1516,14 +1218,8 @@ }, /turf/open/space/basic, /area/space) -"we" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"wj" = ( +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) "wr" = ( /obj/structure/platform/strata/metal{ @@ -1540,105 +1236,57 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"ws" = ( -/turf/open/floor{ - desc = "A sophisticated device that captures and converts light from the system's star into energy for the station."; - icon_state = "solarpanel"; - name = "solarpanel" - }, -/area/space) -"wu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"ww" = ( +/obj/structure/machinery/cm_vending/gear/antag{ + hacked = 1; + name = "\improper Response Team Automated Gear Rack"; + use_snowflake_points = 1; + pixel_y = -32; + density = 0 }, +/turf/open/floor/strata/blue3/west, /area/adminlevel/ert_station/upp_station) -"wA" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/obj/structure/machinery/door_control/brbutton{ - pixel_y = 26; - id = "funny"; - name = "Elevator Button"; - desc = "A remote control-switch for the elevator. This one seems broken." - }, -/obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"wH" = ( +/turf/open/floor/strata/blue4, /area/adminlevel/ert_station/upp_station) -"wS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "green3" +"wL" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -9; + pixel_y = 19 }, +/turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) -"wY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Station Hallway" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"xg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) "xj" = ( /obj/structure/girder, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"xl" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"xn" = ( +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"xo" = ( -/obj/structure/bed{ - icon_state = "abed" +"xr" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) -"xy" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"xJ" = ( +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) -"xF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/crowbar, -/obj/item/storage/bible, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"xW" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ya" = ( /obj/effect/decal/warning_stripes{ @@ -1648,18 +1296,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"yk" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 4 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8 + }, +/turf/open/floor/strata/green3/east, +/area/adminlevel/ert_station/upp_station) "ym" = ( /turf/closed/shuttle/elevator/gears, /area/adminlevel/ert_station/upp_station) -"yn" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/strata{ - icon_state = "green4" +"yp" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Spare Prison Uniforms"; + req_one_access = null }, +/turf/open/floor/strata/red1, /area/adminlevel/ert_station/upp_station) "yt" = ( /obj/structure/platform/kutjevo/smooth{ @@ -1667,17 +1321,26 @@ }, /turf/open/space, /area/space) -"yH" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +"yI" = ( +/turf/open/floor/strata/green4, +/area/adminlevel/ert_station/upp_station) +"za" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/black, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"zr" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata{ - icon_state = "green1" +"zn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"zq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) "zs" = ( /obj/effect/decal/warning_stripes{ @@ -1690,72 +1353,27 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"zx" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"zK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"zL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"zQ" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth"; - name = "\improper AT-87 ASAT launcher system"; - desc = "Cold launch tubes that can fire a few varieties of missiles out of them, the most common being the AT-87 ASAT 11K223 ?Spigot? missile used against satellites and other spacecraft and the 11K221 ?Konkurs? missile which is used for ground attack." - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"zX" = ( -/obj/structure/bed/chair/comfy/lime{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +"zI" = ( +/obj/structure/machinery/light/double/blue, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"zY" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +"zP" = ( +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) -"Ae" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/attachable/bayonet/upp{ - pixel_y = 9; - pixel_x = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Aq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Shuttle Bay" }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Ak" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" +"Ar" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/obj/structure/largecrate/black_market/confiscated_weaponry, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "Au" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1764,6 +1382,17 @@ }, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) +"Aw" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/red4/east, +/area/adminlevel/ert_station/upp_station) +"Ax" = ( +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) "Ay" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -1771,44 +1400,44 @@ }, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"AI" = ( -/obj/structure/closet/crate, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/adminlevel/ert_station/upp_station) "AN" = ( /turf/open/space/basic, /area/space) +"AP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8 + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) "AU" = ( /obj/structure/monorail{ dir = 9; name = "launch track" }, -/turf/open/space/basic, -/area/space) -"Bc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/prison{ - icon_state = "darkyellowfull2" +/turf/open/space/basic, +/area/space) +"AW" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = -1 }, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) -"Be" = ( -/obj/structure/filingcabinet{ - layer = 2.9 +"AX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/strata{ - icon_state = "green1" +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"Bm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Bp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -1829,58 +1458,77 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"Bu" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/adminlevel/ert_station/upp_station) +"Bv" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/paper_bin{ + pixel_y = 10 + }, +/obj/item/tool/stamp{ + pixel_y = 10 + }, +/turf/open/floor/strata/green3, +/area/adminlevel/ert_station/upp_station) "Bw" = ( /obj/structure/platform/kutjevo/smooth{ dir = 1 }, /turf/open/space/basic, /area/space) +"BB" = ( +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/structure/machinery/light/double/blue{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked/west, +/area/adminlevel/ert_station/upp_station) "BH" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"BX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 16; - pixel_y = 13 +"BK" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/tool/weldpack{ + pixel_x = -2 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Ce" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 +"BN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/strata/red3/north, +/area/adminlevel/ert_station/upp_station) +"BW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata{ - icon_state = "floor2" +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"BY" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"Cb" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "Cp" = ( /turf/closed/wall/rock/brown, /area/adminlevel/ert_station/upp_station) -"Cu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "Engineering"; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Cy" = ( +"CJ" = ( /obj/structure/window/reinforced{ dir = 4; pixel_x = -2; @@ -1907,124 +1555,95 @@ /obj/item/bedsheet/brown{ layer = 3.2 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, +/turf/open/floor/strata/blue1, /area/adminlevel/ert_station/upp_station) -"CG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"CX" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"CI" = ( -/turf/open/floor/strata{ - dir = 4; - icon_state = "red3" - }, +"Di" = ( +/turf/open/floor/strata/red4/north, /area/adminlevel/ert_station/upp_station) -"CM" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/colony{ - name = "\improper Elevator Airlock"; - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"Dq" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) -"CW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ - req_access = null - }, -/obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, +"Dv" = ( +/turf/closed/wall/strata_outpost, /area/adminlevel/ert_station/upp_station) -"Df" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/strata{ - icon_state = "green4"; +"DN" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, +/obj/structure/largecrate/black_market/confiscated_equipment, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) -"Dv" = ( -/turf/closed/wall/strata_outpost, +"El" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, /area/adminlevel/ert_station/upp_station) -"DG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"Em" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 13 }, -/turf/open/floor/strata{ - dir = 9; - icon_state = "white_cyan3" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"DK" = ( -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"Es" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "Engineering" }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Eg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"Et" = ( +/turf/open/floor/strata/red3/south, +/area/adminlevel/ert_station/upp_station) +"EG" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"EH" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, -/turf/open/asphalt/cement{ - icon_state = "cement12" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, +/obj/structure/machinery/light/double/blue{ + dir = 4 + }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) -"El" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, +"EI" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"EA" = ( -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, +"EK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "ES" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"EZ" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/upp_station) -"Fh" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"Fj" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/folder/black, -/obj/item/tool/pen, -/turf/open/floor/strata{ - icon_state = "green3" - }, +"Fu" = ( +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) -"FA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"Fy" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison/floor_marked/west, /area/adminlevel/ert_station/upp_station) "FF" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2032,38 +1651,24 @@ /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"FI" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"FM" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"FJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"FQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Station Hallway" }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) -"FL" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/device/megaphone, -/turf/open/floor/strata{ - icon_state = "green3"; +"FY" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/area/adminlevel/ert_station/upp_station) -"FP" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/red3/south, /area/adminlevel/ert_station/upp_station) "Ga" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2088,6 +1693,12 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"Gm" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/floor/strata/green4/west, +/area/adminlevel/ert_station/upp_station) "Gt" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -2102,11 +1713,21 @@ }, /turf/open/space/basic, /area/space) -"Gw" = ( -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" +"Gx" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, +/turf/open/floor/strata/green4/north, +/area/adminlevel/ert_station/upp_station) +"Gy" = ( +/turf/open/floor/strata/red3/west, /area/adminlevel/ert_station/upp_station) "GE" = ( /turf/closed/shuttle/elevator{ @@ -2130,12 +1751,16 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Hb" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"GV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/facepaint/black, +/turf/open/floor/strata/blue1, +/area/adminlevel/ert_station/upp_station) +"GX" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/turf/open/asphalt/cement/cement12, /area/adminlevel/ert_station/upp_station) "Hc" = ( /obj/structure/platform_decoration/kutjevo{ @@ -2147,6 +1772,13 @@ /obj/structure/lattice, /turf/open/space, /area/space) +"Hh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/strata/floor2, +/area/adminlevel/ert_station/upp_station) "Hl" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/warning_stripes{ @@ -2157,31 +1789,61 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Hp" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 8 - }, +"Hm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/orange_icorner/north, /area/adminlevel/ert_station/upp_station) "Hx" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"HR" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"HD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"Is" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 +"HE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 }, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/strata/green4/north, +/area/adminlevel/ert_station/upp_station) +"HK" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/strata/white_cyan3, +/area/adminlevel/ert_station/upp_station) +"HN" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"HQ" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"HT" = ( +/turf/open/floor/strata/white_cyan3/northeast, +/area/adminlevel/ert_station/upp_station) +"HX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2/west, +/area/adminlevel/ert_station/upp_station) +"Ie" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/green3/west, +/area/adminlevel/ert_station/upp_station) +"IB" = ( +/turf/open/floor/strata/green4/west, /area/adminlevel/ert_station/upp_station) "IC" = ( /obj/structure/barricade/handrail{ @@ -2190,45 +1852,14 @@ name = "solar lattice" }, /obj/structure/platform/kutjevo/smooth{ - dir = 4 - }, -/obj/structure/platform/kutjevo/smooth{ - dir = 1 - }, -/obj/structure/platform/kutjevo/smooth, -/turf/open/space, -/area/space) -"IK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"IQ" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/largecrate/black_market/confiscated_equipment, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" + dir = 4 }, -/area/adminlevel/ert_station/upp_station) -"IT" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/platform/kutjevo/smooth{ dir = 1 }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" - }, -/area/adminlevel/ert_station/upp_station) +/obj/structure/platform/kutjevo/smooth, +/turf/open/space, +/area/space) "IV" = ( /obj/structure/bedsheetbin{ icon_state = "linenbin-empty"; @@ -2237,45 +1868,21 @@ }, /turf/open/floor/almayer_hull, /area/space) -"IX" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/processor{ - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"Jc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/rebreather/scarf, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"Jb" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/folder/black, +/obj/item/tool/pen, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"Jj" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 +"Jd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null }, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) -"Jl" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, +"Jm" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Jp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2285,56 +1892,25 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Js" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" +"Jy" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/double/blue{ + dir = 8 }, +/turf/open/floor/strata/orange_edge/east, /area/adminlevel/ert_station/upp_station) "Jz" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"JB" = ( -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/adminlevel/ert_station/upp_station) -"JV" = ( -/obj/item/tool/wet_sign, +"JR" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/adminlevel/ert_station/upp_station) -"JX" = ( -/obj/structure/closet/boxinggloves, -/turf/open/asphalt/cement{ - icon_state = "cement1"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) -"JZ" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Kb" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "green3" - }, +/turf/open/floor/strata/floorscorched1, /area/adminlevel/ert_station/upp_station) "Kj" = ( /obj/structure/barricade/handrail{ @@ -2352,6 +1928,12 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/asphalt/cement, /area/adminlevel/ert_station/upp_station) +"Ko" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) "Kq" = ( /obj/structure/machinery/door/poddoor/almayer/open{ name = "Toilet Shutters"; @@ -2364,33 +1946,34 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Ks" = ( -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/asphalt/cement{ - icon_state = "cement3" - }, +"KC" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/strata/green1, /area/adminlevel/ert_station/upp_station) -"KF" = ( -/obj/structure/morgue, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, +"KE" = ( +/turf/open/asphalt/cement/cement4, /area/adminlevel/ert_station/upp_station) -"KL" = ( -/turf/open/floor/strata{ - dir = 5; - icon_state = "white_cyan3" +"KP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1; + id_tag = "mining_outpost_pump" }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) -"KX" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"KR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"KS" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/device/megaphone, +/turf/open/floor/strata/green3/north, +/area/adminlevel/ert_station/upp_station) +"KW" = ( +/obj/structure/machinery/power/apc/antag{ + dir = 1 }, +/turf/open/floor/strata/green4, /area/adminlevel/ert_station/upp_station) "Lg" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2399,22 +1982,6 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Lk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "Engineering" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Ln" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - icon_state = "orange_icorner"; - dir = 8 - }, -/area/adminlevel/ert_station/upp_station) "Lo" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -2422,21 +1989,19 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"LB" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/obj/structure/machinery/light/double/blue{ - dir = 4 +"Lq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/asphalt/cement{ - icon_state = "cement1"; +/turf/open/floor/strata/green3/north, +/area/adminlevel/ert_station/upp_station) +"Ly" = ( +/obj/structure/machinery/computer/emails{ dir = 1 }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) "LG" = ( /obj/structure/lattice, @@ -2451,40 +2016,8 @@ }, /turf/open/space/basic, /area/space) -"LK" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"LN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight, -/obj/item/attachable/bayonet/upp, -/turf/open/asphalt/cement{ - icon_state = "cement15" - }, -/area/adminlevel/ert_station/upp_station) -"LO" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, -/area/adminlevel/ert_station/upp_station) -"LQ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Station Hallway" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"LR" = ( +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Mc" = ( /obj/structure/monorail{ @@ -2492,92 +2025,60 @@ }, /turf/open/space/basic, /area/space) -"Mi" = ( -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/head/chefhat, -/obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Mk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/upp/full, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) "Mt" = ( /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/space) -"MB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/barricade/handrail/wire{ +"Mv" = ( +/obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/asphalt/cement{ - icon_state = "cement14" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/adminlevel/ert_station/upp_station) -"ME" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/snacks/upp, -/obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 13 }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"MG" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"Mx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/turf/open/floor/strata/white_cyan4/north, /area/adminlevel/ert_station/upp_station) -"MM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "green3" +"My" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) -"MU" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/paper_bin{ - pixel_y = 10 - }, -/obj/item/tool/stamp{ - pixel_y = 10 +"MS" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4 }, -/turf/open/floor/strata{ - icon_state = "green3" +/turf/open/floor/strata/red3/north, +/area/adminlevel/ert_station/upp_station) +"MV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, +/turf/open/floor/strata/white_cyan4/south, /area/adminlevel/ert_station/upp_station) -"Ne" = ( -/obj/structure/machinery/light/double/blue, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +"Nj" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) -"Ni" = ( +"Nk" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 4 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Ns" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -2587,12 +2088,18 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Nz" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/strata{ - dir = 2; - icon_state = "red3" +"Nv" = ( +/obj/structure/morgue, +/turf/open/floor/strata/multi_tiles/southwest, +/area/adminlevel/ert_station/upp_station) +"NH" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/strata/green4/east, +/area/adminlevel/ert_station/upp_station) +"NN" = ( +/turf/open/floor/strata/damaged3, /area/adminlevel/ert_station/upp_station) "NQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2614,6 +2121,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"Ol" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Station Hallway"; + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"Ot" = ( +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/white_cyan4/east, +/area/adminlevel/ert_station/upp_station) +"Ov" = ( +/obj/structure/closet/crate/ammo, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/upp_station) "OA" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -2630,27 +2155,58 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"OD" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/strata/white_cyan3/north, +/area/adminlevel/ert_station/upp_station) +"OE" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"OH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/strata/green4/west, +/area/adminlevel/ert_station/upp_station) "OK" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/autolathe/full, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"OS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/turf/open/floor/strata{ - dir = 1; - icon_state = "white_cyan4" +"OX" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/adminlevel/ert_station/upp_station) +"Pa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) -"Ph" = ( +"Pb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"Pg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, +/turf/open/floor/prison/darkyellowfull2, /area/adminlevel/ert_station/upp_station) "Pj" = ( /obj/structure/platform/kutjevo/smooth{ @@ -2658,93 +2214,134 @@ }, /turf/open/floor/almayer_hull, /area/space) -"PI" = ( -/turf/open/floor/almayer_hull, -/area/space) -"PJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Cryo Cells" +"Pm" = ( +/obj/structure/closet/boxinggloves, +/turf/open/asphalt/cement/cement1/north, +/area/adminlevel/ert_station/upp_station) +"Pu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/machinery/light/double/blue{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/adminlevel/ert_station/upp_station) +"PI" = ( +/turf/open/floor/almayer_hull, +/area/space) +"PK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/colony{ + name = "\improper Elevator Airlock"; + dir = 1 }, -/turf/open/floor/strata{ +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/upp_station) +"PM" = ( +/obj/structure/machinery/light/double/blue{ dir = 4; - icon_state = "floor3" + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/machinery/door_control/brbutton{ + pixel_y = 26; + id = "funny"; + name = "Elevator Button"; + desc = "A remote control-switch for the elevator. This one seems broken." }, +/obj/structure/closet/crate/ammo, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) -"PQ" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 4 +"PU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, +/turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) -"PS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"PY" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/strata/green4/west, +/area/adminlevel/ert_station/upp_station) +"PZ" = ( +/obj/structure/surface/table/reinforced, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"PT" = ( -/obj/structure/machinery/sleep_console, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - icon_state = "white_cyan3" +"Qa" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Qu" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" +"Qj" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = -1 }, +/obj/structure/closet/crate/ammo/alt, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/upp_station) -"Qz" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata{ - dir = 10; - icon_state = "white_cyan3" +"Qn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/crowbar, +/obj/item/storage/bible, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "QG" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/adminlevel/ert_station/upp_station) -"QO" = ( +"QM" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"Rc" = ( /obj/structure/machinery/light/double/blue{ dir = 1 }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, -/area/adminlevel/ert_station/upp_station) -"QR" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, +/turf/open/floor/strata/green3, /area/adminlevel/ert_station/upp_station) -"Rd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - dir = 1; - icon_state = "red3" +"Re" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "Rf" = ( /turf/open/asphalt/cement, /area/adminlevel/ert_station/upp_station) +"Rh" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"Rk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/upp_station) +"Rq" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/white_cyan3/west, +/area/adminlevel/ert_station/upp_station) "Ry" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, @@ -2769,29 +2366,9 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"RC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"RK" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan4" - }, -/area/adminlevel/ert_station/upp_station) -"RQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platebot" - }, +"RO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/strata/green4/east, /area/adminlevel/ert_station/upp_station) "RR" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2803,74 +2380,14 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"RS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) "RU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/closed/wall/strata_outpost/reinforced, /area/adminlevel/ert_station/upp_station) -"Sa" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Sf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/black, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Sh" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"Si" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - pixel_y = 18; - pixel_x = 2; - density = 0 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) -"Sj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"Sn" = ( -/turf/open/floor/strata{ - icon_state = "purp3"; - dir = 4 - }, +"Sp" = ( +/turf/open/floor/strata/purp3/east, /area/adminlevel/ert_station/upp_station) "Sq" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -2878,203 +2395,78 @@ /obj/structure/machinery/light/double/blue, /turf/open/floor/greengrid, /area/adminlevel/ert_station/upp_station) -"Sx" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/adminlevel/ert_station/upp_station) -"Sy" = ( +"SF" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, -/turf/open/floor/strata{ - icon_state = "white_cyan2" - }, +/turf/open/floor/strata/white_cyan2, /area/adminlevel/ert_station/upp_station) -"SB" = ( +"SN" = ( /obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"SC" = ( -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/upp_station) -"SI" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/obj/item/trash/plate{ - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_y = 8 - }, -/obj/item/trash/plate{ - pixel_y = 10 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/strata/orange_icorner/west, /area/adminlevel/ert_station/upp_station) -"SL" = ( +"SP" = ( +/obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"SR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Toilet" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" + dir = 4 }, +/turf/open/floor/strata/green4/north, /area/adminlevel/ert_station/upp_station) "SS" = ( /obj/docking_port/stationary/emergency_response/idle_port3, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"SY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"Th" = ( +/turf/open/floor/strata/white_cyan3/west, /area/adminlevel/ert_station/upp_station) -"Tb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Station Hallway"; - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, +"Tt" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"Tj" = ( -/turf/open/asphalt/cement{ - icon_state = "cement12" +"Tx" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 }, -/area/adminlevel/ert_station/upp_station) -"Tm" = ( /obj/structure/machinery/light/double/blue{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/turf/open/floor/strata/green3/west, +/area/adminlevel/ert_station/upp_station) +"Tz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/item/tool/pickaxe/diamonddrill, +/turf/open/floor/plating/platebot, /area/adminlevel/ert_station/upp_station) -"Tr" = ( -/obj/effect/landmark/wo_supplies/storage/m56d, +"TA" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/adminlevel/ert_station/upp_station) -"Tu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/door_control{ - pixel_y = -22; - name = "Toilet Shutters Button"; - id = "upp_toilet" - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" - }, -/area/adminlevel/ert_station/upp_station) -"Ty" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Shuttle Bay" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"TB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/surgical_tray, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/upp_station) -"TE" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light/double/blue{ +"TJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" - }, -/area/adminlevel/ert_station/upp_station) -"TG" = ( -/turf/open/floor/strata{ - icon_state = "green3" - }, -/area/adminlevel/ert_station/upp_station) -"TH" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"TI" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata{ +"TL" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "floor3" + pixel_x = -12; + pixel_y = 13 + }, +/obj/structure/machinery/light/double/blue{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "TM" = ( /obj/structure/barricade/handrail{ @@ -3091,65 +2483,10 @@ /obj/structure/platform/kutjevo/smooth, /turf/open/space/basic, /area/space) -"TQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"TT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) -"Ug" = ( +"TU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter{ - pixel_y = 2; - pixel_x = -9 - }, -/obj/item/tool/pen/blue, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 5 - }, -/area/adminlevel/ert_station/upp_station) -"Uh" = ( -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, -/area/adminlevel/ert_station/upp_station) -"Uk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/strata{ - dir = 10; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/upp_station) -"Ul" = ( -/obj/structure/closet/bodybag, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 4; - icon_state = "cyan1" - }, +/obj/item/storage/belt/medical/lifesaver/upp/full, +/turf/open/floor/strata/white_cyan3/north, /area/adminlevel/ert_station/upp_station) "Um" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3172,59 +2509,9 @@ dir = 9 }, /area/adminlevel/ert_station/upp_station) -"Up" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical{ - desc = "A sterile mask designed to help prevent the spread of diseases. This one has already been used."; - name = "used sterile mask" - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) -"Uu" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0; - icon_state = "abed" - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13; - icon_state = "abed" - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/turf/open/floor/strata{ - icon_state = "blue1" - }, -/area/adminlevel/ert_station/upp_station) -"UA" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/device/flashlight/lamp/green{ - pixel_y = -3; - pixel_x = 16 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, +"Uv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "UB" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3239,12 +2526,24 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"UM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata{ - dir = 8; - icon_state = "white_cyan2" +"UH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/green3/west, +/area/adminlevel/ert_station/upp_station) +"US" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/adminlevel/ert_station/upp_station) +"UT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Station Hallway" + }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "UU" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3263,11 +2562,8 @@ }, /turf/open/space/basic, /area/space) -"Vo" = ( -/turf/open/floor/strata{ - icon_state = "red4"; - dir = 1 - }, +"Vg" = ( +/turf/open/floor/strata/green3/northwest, /area/adminlevel/ert_station/upp_station) "Vp" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -3276,16 +2572,6 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"Vv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) "Vx" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -3305,22 +2591,29 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"VE" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/double/blue{ + dir = 4 + }, +/turf/open/floor/strata/green3/east, +/area/adminlevel/ert_station/upp_station) "VI" = ( /turf/closed/wall/rock/brown, /area/space) -"VZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 4 +"VK" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/strata/green3/east, /area/adminlevel/ert_station/upp_station) -"Wb" = ( -/turf/open/floor/strata{ - icon_state = "blue4" +"VR" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth"; + name = "\improper AT-87 ASAT launcher system"; + desc = "Cold launch tubes that can fire a few varieties of missiles out of them, the most common being the AT-87 ASAT 11K223 ?Spigot? missile used against satellites and other spacecraft and the 11K221 ?Konkurs? missile which is used for ground attack." }, +/turf/open/floor/strata/multi_tiles/southwest, /area/adminlevel/ert_station/upp_station) "We" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -3331,6 +2624,16 @@ /obj/structure/window/framed/strata/hull, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"Wf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/structure/machinery/light/double/blue{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/adminlevel/ert_station/upp_station) "Wi" = ( /obj/structure/platform/kutjevo/smooth{ dir = 8 @@ -3338,35 +2641,20 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"Wj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "floor3" - }, -/area/adminlevel/ert_station/upp_station) "Wr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"WK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Station Hallway" - }, -/turf/open/floor/strata{ - icon_state = "floor2" - }, +"Wu" = ( +/turf/open/floor/strata/cyan1/east, /area/adminlevel/ert_station/upp_station) -"WL" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, +"Wy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight, +/obj/item/attachable/bayonet/upp, +/turf/open/asphalt/cement/cement15, /area/adminlevel/ert_station/upp_station) "WQ" = ( /obj/structure/platform/kutjevo/smooth{ @@ -3375,22 +2663,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space) -"WX" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 1 - }, -/area/adminlevel/ert_station/upp_station) -"WZ" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/strata{ - icon_state = "white_cyan3" - }, -/area/adminlevel/ert_station/upp_station) "Xb" = ( /obj/structure/monorail{ dir = 5; @@ -3398,6 +2670,16 @@ }, /turf/open/space/basic, /area/space) +"Xj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/processor{ + pixel_y = 10 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/adminlevel/ert_station/upp_station) +"Xk" = ( +/turf/open/floor/strata/red3/east, +/area/adminlevel/ert_station/upp_station) "Xr" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/item/reagent_container/glass/bucket, @@ -3406,45 +2688,64 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) +"Xv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/green3/west, +/area/adminlevel/ert_station/upp_station) "Xy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/adminlevel/ert_station/upp_station) -"XG" = ( -/turf/open/asphalt/cement{ - icon_state = "cement4" +"XB" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, +/turf/open/floor/strata/floor2, /area/adminlevel/ert_station/upp_station) -"XL" = ( +"XI" = ( +/turf/open/floor/strata/floorscorched2, +/area/adminlevel/ert_station/upp_station) +"XU" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 4; pixel_x = -12; pixel_y = 13 }, -/turf/open/floor/strata{ - icon_state = "floorscorched1" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"XM" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/machinery/light/double/blue{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 4 - }, +"Yd" = ( +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/upp_station) -"Yy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"Ye" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/suit/straight_jacket, +/obj/item/restraint/handcuffs{ + pixel_x = -4; + pixel_y = 1 }, +/obj/item/restraint/handcuffs, +/turf/open/floor/strata/red1, +/area/adminlevel/ert_station/upp_station) +"Yh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/floor3/east, +/area/adminlevel/ert_station/upp_station) +"Yk" = ( +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/head/chefhat, +/obj/structure/surface/table/reinforced, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "YH" = ( /obj/effect/decal/warning_stripes{ @@ -3462,59 +2763,35 @@ }, /turf/open/space/basic, /area/space) -"YO" = ( -/obj/structure/machinery/gibber{ - pixel_y = 10 - }, -/obj/structure/surface/table/reinforced, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"YX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"YS" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double/blue{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 2; - icon_state = "white_cyan4" - }, +"Zj" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"YW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/strata{ - icon_state = "green1" - }, +"Zu" = ( +/turf/open/floor/strata/blue3/west, /area/adminlevel/ert_station/upp_station) -"YY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"Zw" = ( +/obj/structure/bed{ + icon_state = "abed" }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) -"Zm" = ( -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"Zy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, +/turf/open/floor/strata/green3/west, /area/adminlevel/ert_station/upp_station) -"Zt" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison{ - dir = 8; - icon_state = "floor_marked" +"ZD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, +/turf/open/floor/strata/floor3/east, /area/adminlevel/ert_station/upp_station) "ZH" = ( /obj/structure/lattice, @@ -3523,40 +2800,6 @@ }, /turf/open/space/basic, /area/space) -"ZM" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/strata{ - dir = 4; - icon_state = "orange_edge" - }, -/area/adminlevel/ert_station/upp_station) -"ZR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/upp, -/turf/open/floor/strata{ - icon_state = "green3"; - dir = 8 - }, -/area/adminlevel/ert_station/upp_station) -"ZS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata{ - icon_state = "green4"; - dir = 8 - }, -/area/adminlevel/ert_station/upp_station) -"ZX" = ( -/turf/open/floor/strata{ - dir = 8; - icon_state = "blue3" - }, -/area/adminlevel/ert_station/upp_station) (1,1,1) = {" AN @@ -3630,9 +2873,9 @@ Cp Cp VI uL -ws -ws -ws +gh +gh +gh oP GI GI @@ -3653,11 +2896,11 @@ GI GI GI mJ -ws -ws -ws -ws -ws +gh +gh +gh +gh +gh ue AN GI @@ -3672,9 +2915,9 @@ qU QG Cp Mt -ws +gh IV -ws +gh NQ Cp Cp @@ -3695,11 +2938,11 @@ We El AN mJ -ws -ws -ws -ws -ws +gh +gh +gh +gh +gh Cp Cp Cp @@ -3707,16 +2950,16 @@ Cp Cp Cp Vx -ie -SC -SC -sI +fT +ed +ed +AW Vx Cp Cp -ws -ws -ws +gh +gh +gh Cp Cp Cp @@ -3732,8 +2975,8 @@ GI GI El El -YW -YW +sT +sT El El El @@ -3749,10 +2992,10 @@ Cp Cp Cp ym -rC -EZ -EZ -va +Ov +eG +eG +ph ym Cp Cp @@ -3773,11 +3016,11 @@ GI GI El El -bM -cs -cs -ks -Be +KW +UH +UH +du +sN El El El @@ -3791,10 +3034,10 @@ Dv fM Dv Vx -wA -SC -SC -mb +PM +ed +ed +Qj Vx Cp Cp @@ -3814,28 +3057,28 @@ AN GI El El -yn -iV -Zm -yH -TG -zr +wL +Vg +Yd +xn +jW +lE po -Tr -cJ -IQ -rL +BB +vA +DN +AP po Cp -zL +ij he kN Ns -sz +cn da qU -SC -CM +ed +PK qU GE Cp @@ -3855,30 +3098,30 @@ AN (8,1,1) = {" AN UB -pc -aA -aA +yk +qy +qy nC -Sj -TG -uf +pX +jW +KC po -ve -cJ -lm -ve +zP +vA +Ar +zP po -zL +ij ag -hM -ve -XL +NN +zP +JR Kr Wr -vn -Zm -yH -SB +LR +Yd +xn +EI po Cp Cp @@ -3897,30 +3140,30 @@ AN (9,1,1) = {" AN UB -UA -nh -MU +nU +XB +Bv Vp -yH +xn le po po -Sn -kS -fk -Sn +Sp +PU +tA +Sp po -SL -eU +Qa +My Xy ow aV -sy +pH Wr -ve -yH -Zm -ce +zP +xn +Yd +cR po po fM @@ -3939,38 +3182,38 @@ AN (10,1,1) = {" AN UB -FL -mG -Fj +KS +fh +Jb Vp -Zm -TG -oK -Zm -yH -uW -bh -Zm -WK -vo -Bc -qH -Cp -Cp -ay -sk -RQ +Yd +jW +px +Yd +xn +XU +Ko +Yd +FQ +Pg +ey +XI +Cp +Cp +cE +Tz +Rk vK -yH -Ne +xn +zI po -TT -vn +TL +LR po -fR +CX Vp -JB -MG +xJ +xg xj Cp Cp @@ -3981,20 +3224,20 @@ AN (11,1,1) = {" AN UB -aW -zX -zX +Tx +Nj +Nj Bt UE UE -RS +Uv UE Bq UU Ga UE UE -sb +xr Cp Cp Cp @@ -4003,16 +3246,16 @@ Cp Cp rb rs -Zm -yH -dK -JV -JB -Lk +Yd +xn +pj +mh +xJ +Es nC Xr -ax -ia +BK +YX po Cp Cp @@ -4024,16 +3267,16 @@ AN GI El El -eX -bd -tr -bd -jg +Gx +wj +VK +wj +OH po -JB +xJ Vp -BX -fW +pU +Cb po po Cp @@ -4050,11 +3293,11 @@ UE UE lo UE -RS +Uv Bp -Ce -kT -CG +jQ +ft +KR po Cp Cp @@ -4069,11 +3312,11 @@ po po po po -WX -qi +Lq +kW po -vn -Tb +LR +Ol po po po @@ -4094,9 +3337,9 @@ po po po cC -JB -Hb -dH +xJ +EG +OE po Cp Cp @@ -4108,35 +3351,35 @@ AN GI Cp po -Rd -xo +BN +Zw po -Si -TG +qw +jW po -JB +xJ Vp po -cl -Zt -xl -TQ -zK +ci +Fy +TA +gg +km Cp Cp po po po -WL -WL -Ln -ne -ZM -AI -AI +EK +EK +SN +Hm +Jy +ud +ud po -tG -Cu +Nk +fY po po po @@ -4150,13 +3393,13 @@ AN Cp Cp po -Vo -CI +Di +Xk po -sY -hF +EH +IB po -hO +Hh VA po Hl @@ -4178,9 +3421,9 @@ ya RR po Bt -ev -jc -PQ +lQ +Gy +Aw po El AN @@ -4193,37 +3436,37 @@ Cp po po ES -iM +iF po po po po -QO +ab Vp po mz -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv zs po Vp -Gw -aH -aH -zQ +Et +nu +nu +VR El GI GI @@ -4233,18 +3476,18 @@ AN (17,1,1) = {" Cp po -me -vw +Ye +fp nC UE Bq UE -LQ +lz UE BH -Ty +Aq fA -xy +kv rb rb rb @@ -4258,13 +3501,13 @@ rb rb rb SS -xy +kv YH -Ty +Aq Bp -Gw -FI -mP +Et +QM +Ax po El Mc @@ -4275,18 +3518,18 @@ Xb (18,1,1) = {" Cp po -iJ -qY +yp +MS Vp -Tm -we -Zm -vn -Zm +vN +US +Yd +LR +Yd Vp -vn -PS -xy +LR +qQ +kv rb rb rb @@ -4300,14 +3543,14 @@ rb rb rb rb -xy -YY -vn +kv +ez +LR Vp -Gw -aH -aH -zQ +Et +nu +nu +VR El AN GI @@ -4319,16 +3562,16 @@ Cp po po po -Sf +za po po po po -VZ +hK Vp po -Ph -xy +uN +kv rb rb rb @@ -4342,12 +3585,12 @@ rb rb rb rb -xy -FJ +kv +Bm po uP -Nz -DK +ls +Ly po po El @@ -4360,17 +3603,17 @@ UV Cp Cp po -Fh +FM Vp -oJ -rf -Uu +CJ +Wf +eS po -Kb +Rc Vp po -SY -xy +Pb +kv rb rb rb @@ -4384,14 +3627,14 @@ rb rb rb rb -xy -Yy +kv +ds po Vp -Gw -aH -aH -zQ +Et +nu +nu +VR El AN GI @@ -4402,17 +3645,17 @@ UV Cp El po -Fh +FM Lo UE mr rT po -wS +lC VA po -Ph -xy +uN +kv rb rb rb @@ -4426,13 +3669,13 @@ rb rb rb rb -xy -FJ +kv +Bm po uP -Gw -FI -mP +Et +QM +Ax po El AN @@ -4443,18 +3686,18 @@ UV (22,1,1) = {" GI El -vY -Zm +xW +Yd dW -Cy -lw -Cy +jR +GV +jR po -TG +jW Vp -hj -wu -xy +eA +BW +kv rb rb rb @@ -4468,14 +3711,14 @@ rb rb rb rb -xy -IK -hj +kv +iS +eA Vp -Gw -aH -aH -zQ +Et +nu +nu +VR El Mc pK @@ -4487,16 +3730,16 @@ GI El po po -Wb -ZX -ZX -rX +wH +Zu +Zu +ww po -TG +jW Bt -RS +Uv fA -xy +kv rb rb rb @@ -4510,13 +3753,13 @@ rb rb rb rb -xy +kv YH -RS +Uv BH -IT -CI -Hp +FY +Xk +qC po El GI @@ -4529,30 +3772,30 @@ GI Cp Cp po -aO -oJ -dh -oJ +vz +CJ +gR +CJ po -fK +Gm Vp po mz -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy -xy +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv +kv zs po qA @@ -4576,8 +3819,8 @@ po po po po -vn -Tb +LR +Ol po hV sA @@ -4598,10 +3841,10 @@ sA Gl po GN -ME -yH -yH -JZ +HD +xn +xn +BY Dv Cp Cp @@ -4612,13 +3855,13 @@ AN GI GI El -bp -UM -SR +qR +HX +kb Lg -yH -yH -yH +xn +xn +xn Vp po po @@ -4640,10 +3883,10 @@ RU po po GN -bY -dz -tx -TH +Rh +jo +pW +PZ Dv Cp Cp @@ -4654,8 +3897,8 @@ AN AN GI Kq -Jl -Tu +aU +qX Dv Bt UE @@ -4667,7 +3910,7 @@ Um UE Bq UE -wY +UT UE UE Ry @@ -4682,10 +3925,10 @@ Bq bi UE FF -SI -Zm -uI -KX +ct +Yd +hd +Jm Dv Cp Cp @@ -4699,35 +3942,35 @@ El Cp Cp Dv -fi +ah Dv Dv -Jj -Df -yH -ac -LK +Ie +RO +xn +Mv +jV Vp -yH -vn -dB -EA -tF -EA -eo -am -zY -ZR -ZR -aP +xn +LR +yI +ou +Zy +ou +ji +Xv +pJ +vy +vy +NH tv -Zm -vn +Yd +LR gx OA -cO -rr -Mi +ii +fa +Yk Dv Cp Cp @@ -4742,34 +3985,34 @@ Cp Cp Dv Vp -jh +vi Dv Dv Dv Dv Dv Dv -uI -qM +hd +hp Dv -Vv -Is -fd -XM -Ug -Ni -nO -aF -Ae -MM +SP +Tt +Em +VE +cS +ZD +kq +tm +rF +rZ tv -Zm -vn -uE +Yd +LR +Zj wr -Zm -FA -Sa +Yd +Yh +HN Dv Cp Cp @@ -4784,34 +4027,34 @@ Cp Cp fM Vp -KF -KF -KF +Nv +Nv +Nv Dv -YS -bk -aS +fG +Th +dr Vp -oz +Wu Dv Dv Dv Dv Dv -dL -bd -LO -eT -vH -ZS +HE +wj +vj +fF +gN +PY Bt -gf -Wj -TI -IX -Zm -pv -mq +an +Re +HQ +Xj +Yd +sL +rB Cp Cp ZH @@ -4826,33 +4069,33 @@ Cp Cp Cp Vp -oz -oz -Js +Wu +Wu +qK Dv -qF -uj -WZ +hR +Fu +HK Bt UE NU UE -gt -aS +MV +dr Dv Dv -kF -Ks -Ks -MB +cN +OX +OX +bU Jz Bp -Tm -yH -HR -YO -kc -yH +vN +xn +um +kr +zn +xn Cp Cp PI @@ -4870,25 +4113,25 @@ Dv Lo UE UE -Uk +KP Dv -Mk -uj -zx +TU +Fu +kJ Vp -Uh +ep Dv -TB -DG -iB -lp +bV +fr +iL +Ot Dv -fE +mx Kn sC -Eg +zq Dv -PJ +vW Dv Dv Dv @@ -4910,30 +4153,30 @@ Cp Cp Dv Dv -oz -oz -Ul +Wu +Wu +ga Dv -Ak -uj -QR +Pa +Fu +lj Vp -ry +Dq sU -mf -Sy -sK -pb +Jd +SF +hB +so Dv -fE +mx pu Kn -Tj +iy Dv -cj -RC -RC -Jc +TJ +AX +AX +fe Dv Cp Cp @@ -4952,30 +4195,30 @@ AN Cp Cp Dv -FP -FP -FP +Bu +Bu +Bu Dv -CW -uj -PT +Pu +Fu +eR Vp -hg +OD sU -qd -KL -uj -pb +ni +HT +Fu +so Dv -XG +KE Rf Rf -om +GX Dv jH Gt dW -xF +Qn Dv Cp GI @@ -4999,24 +4242,24 @@ fM fM Dv Dv -Qu -Qz -Sh -kf +tQ +nw +Rq +pF Dv Dv -OS -Up -RK +Mx +cq +iP Dv -ge -LB -JX -LN +oO +lV +Pm +Wy Dv -TE -Sx -rk +jK +ux +cB Cp Cp Cp @@ -5099,13 +4342,13 @@ Cp Cp Cp Cp -ws -ws -ws +gh +gh +gh TM -ws -ws -ws +gh +gh +gh IC PI Bw @@ -5141,13 +4384,13 @@ Cp Cp Cp uL -ws +gh IV -ws +gh Kj -ws +gh IV -ws +gh Pj PI Bw @@ -5183,13 +4426,13 @@ Cp GI GI uL -ws -ws -ws +gh +gh +gh vZ -ws -ws -ws +gh +gh +gh eY LI fc diff --git a/maps/templates/lazy_templates/uscm_ert_station.dmm b/maps/templates/lazy_templates/uscm_ert_station.dmm new file mode 100644 index 0000000000..9ab0cfeed1 --- /dev/null +++ b/maps/templates/lazy_templates/uscm_ert_station.dmm @@ -0,0 +1,9486 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/adminlevel/ert_station/uscm_station) +"ac" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"af" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ag" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ah" = ( +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"ak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate/northeast, +/area/adminlevel/ert_station/uscm_station) +"au" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"aw" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"aC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"aD" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"aF" = ( +/obj/item/ammo_magazine/rifle/lmg, +/obj/item/weapon/gun/rifle/lmg, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"aJ" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1; + dir = 4 + }, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"aM" = ( +/obj/structure/window/framed/almayer/hull, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"aP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "engladder"; + height = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"aW" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"ba" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/latex, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"bc" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"bl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"bv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"bB" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"bU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"bV" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"bX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"bY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = -19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"cf" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 13; + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ci" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"cp" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"cy" = ( +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"cz" = ( +/obj/item/hardpoint/support/artillery_module, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"cG" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"cU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/podhatch/southeast, +/area/adminlevel/ert_station/uscm_station) +"cW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"cX" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"cZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"df" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"di" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"du" = ( +/obj/structure/bed/roller, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"dy" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dz" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"dH" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"dP" = ( +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"dQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"dR" = ( +/obj/structure/sign/safety/galley{ + pixel_y = -30 + }, +/obj/structure/sign/safety/food_storage{ + pixel_y = -30; + pixel_x = 15 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"dT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"dW" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"dX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ej" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ek" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"ep" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/red, +/area/adminlevel/ert_station/uscm_station) +"er" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"es" = ( +/obj/effect/decal/warning_stripes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"et" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"eu" = ( +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eF" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"eG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"eL" = ( +/turf/open/floor/almayer/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"eW" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"eY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" + }, +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"fc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"fe" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"fh" = ( +/obj/item/weapon/gun/rifle/m41a, +/obj/item/weapon/gun/rifle/m41aMK1, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/weapon/gun/rifle/m41a, +/obj/item/attachable/attached_gun/flamer, +/obj/item/attachable/attached_gun/shotgun, +/obj/item/attachable/attached_gun/shotgun, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"fi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/adminlevel/ert_station/uscm_station) +"fj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"fn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"fo" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/item/hardpoint/special/firing_port_weapon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"fu" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"fw" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"fz" = ( +/obj/item/weapon/gun/pistol/highpower, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/revolver/m44, +/obj/item/weapon/gun/pistol/highpower, +/obj/item/weapon/gun/pistol/m1911, +/obj/item/ammo_magazine/pistol/ap, +/obj/item/ammo_magazine/pistol/heavy, +/obj/item/ammo_magazine/pistol/hp, +/obj/item/ammo_magazine/pistol/incendiary, +/obj/item/ammo_magazine/pistol/m1911, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red/southeast, +/area/adminlevel/ert_station/uscm_station) +"fE" = ( +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"fI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"fN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"fP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"fQ" = ( +/obj/item/storage/lockbox/loyalty{ + req_access = list(200) + }, +/obj/item/storage/briefcase, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"fV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"fY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/medical_pod/autodoc/unskilled, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"gE" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"gQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"gW" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"gY" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/adminlevel/ert_station/uscm_station) +"hc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"hi" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"hk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/adminlevel/ert_station/uscm_station) +"hm" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"ho" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"hq" = ( +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"hu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"hw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hy" = ( +/obj/structure/target, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"hz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"hJ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"hN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + indestructible = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"hO" = ( +/obj/structure/ladder{ + id = "regladder5"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"hW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"hY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole, +/obj/structure/sign/safety/autodoc{ + pixel_x = -18; + pixel_y = 25 + }, +/obj/structure/sign/safety/med_life_support{ + pixel_y = 25 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"if" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"im" = ( +/obj/item/bedsheet/hos, +/obj/item/clothing/mask/balaclava, +/obj/structure/bed, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"in" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"ip" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"iq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"ir" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/adminlevel/ert_station/uscm_station) +"iv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"iD" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"iE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/uscm/directional, +/area/adminlevel/ert_station/uscm_station) +"iK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder2"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"iP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station/uscm_station) +"iW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"iY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"ja" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder2"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ji" = ( +/turf/closed/wall/almayer/white/hull, +/area/adminlevel/ert_station/uscm_station) +"jk" = ( +/turf/open/floor/podhatch/northeast, +/area/adminlevel/ert_station/uscm_station) +"jn" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"jA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"jM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"jP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"jW" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"jZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ka" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"kb" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"kf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"kA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/northwest, +/area/adminlevel/ert_station/uscm_station) +"kE" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"kX" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"kZ" = ( +/turf/open/space/basic, +/area/space) +"lf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"li" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"lj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lu" = ( +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"lz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"lA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"lE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lG" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"lH" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"lI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"lO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"lP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"lR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"lY" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"lZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"md" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"mh" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -24; + pixel_y = 32 + }, +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"mk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/adminlevel/ert_station/uscm_station) +"mo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"mp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"ms" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"mv" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"mw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"mx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"mD" = ( +/turf/closed/wall/almayer/white, +/area/adminlevel/ert_station/uscm_station) +"mF" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"mM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv, +/obj/item/storage/belt/medical/lifesaver/full, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"mO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"mR" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"mY" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz1"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"na" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/hardpoint/locomotion/apc_wheels, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"nc" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "oxygen_lower_out" + }, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"nd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"nq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"nu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/crap, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"nw" = ( +/obj/item/ammo_magazine/revolver/mateba, +/obj/item/ammo_magazine/rifle/ap, +/obj/item/ammo_magazine/rifle/incendiary, +/obj/item/ammo_magazine/rifle/lmg, +/obj/item/ammo_magazine/rifle/mar40, +/obj/item/ammo_magazine/sniper/svd, +/obj/item/ammo_magazine/rifle/m16, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/smg/m39/ap, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"nH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nJ" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"nK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"nN" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"nP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nQ" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz5"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"nS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"nW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"nY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"od" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz6"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"oe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"oh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"om" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"ot" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ow" = ( +/obj/item/hardpoint/primary/arc_sentry{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"oC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"oD" = ( +/turf/open/floor/almayer/red, +/area/adminlevel/ert_station/uscm_station) +"oE" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + indestructible = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"oT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"oU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + req_one_access = null + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"pg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ph" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"pi" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"ps" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"py" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"pF" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pI" = ( +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"pM" = ( +/obj/item/paper_bin, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"pP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"pR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"pS" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"pX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"qi" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"qu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"qx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"qy" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"qE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"qH" = ( +/obj/structure/flora/pottedplant, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"qI" = ( +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"qL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"qQ" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"qT" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 7; + pixel_x = 3 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ra" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"rd" = ( +/obj/structure/ladder{ + id = "regladder6"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"rr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"rs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"rw" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"rC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"rD" = ( +/obj/structure/target, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"rG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"rP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"rS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"rW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"rY" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"sa" = ( +/obj/structure/ladder{ + id = "regladder5"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder1"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sd" = ( +/obj/structure/platform, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"sg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"si" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -22 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sj" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"st" = ( +/obj/structure/bed/roller, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"su" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"sy" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"sG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"sH" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"sL" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"sN" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"sU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"tf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"th" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = -19 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"tl" = ( +/obj/structure/largecrate/supply/powerloader, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"to" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"tw" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"tx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"ty" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"tC" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"tD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"tE" = ( +/obj/structure/closet/secure_closet/securecom, +/obj/item/weapon/gun/smartgun, +/turf/open/floor/red/northwest, +/area/adminlevel/ert_station/uscm_station) +"tM" = ( +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"tP" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"tY" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = 32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"ue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"us" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"ux" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"uD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"uF" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"uG" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/rifle/m41a/training, +/turf/open/floor/almayer/red/southwest, +/area/adminlevel/ert_station/uscm_station) +"uL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"uM" = ( +/obj/structure/largecrate/guns, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"uR" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating/platebotc, +/area/adminlevel/ert_station/uscm_station) +"uY" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"vc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"vm" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"vo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"vu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator/upgraded, +/obj/item/device/defibrillator/upgraded, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"vv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"vx" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"vy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"vF" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"vG" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"vH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"vI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wc" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"wi" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"wo" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"wp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"wr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"ws" = ( +/obj/structure/bookcase{ + dir = 4 + }, +/obj/item/book/manual/evaguide, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"wt" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"ww" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"wx" = ( +/turf/open/floor/red/north, +/area/adminlevel/ert_station/uscm_station) +"wA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"wE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"wF" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/adminlevel/ert_station/uscm_station) +"wH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + req_one_access = list(100) + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wI" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"wO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"wW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xl" = ( +/turf/open/floor/red/northeast, +/area/adminlevel/ert_station/uscm_station) +"xn" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/pipes/standard/simple/visible, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"xu" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"xw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xA" = ( +/obj/structure/largecrate/random, +/obj/item/seeds/ambrosiavulgarisseed{ + layer = 2.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"xB" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"xF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"xK" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"xL" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"xP" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"xT" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"xU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"xX" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"ym" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"yq" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yx" = ( +/obj/structure/prop/dam/crane, +/obj/structure/prop{ + icon = 'icons/obj/structures/props/almayer_props64.dmi'; + icon_state = "cooling_system"; + name = "Damaged FS/ACS-9 cooling system"; + desc = "A cooling system for the Tripoli. It produces additional cooling reducing delays between launch. The pipes are crooked and bent, hoses are sliced open, and that's not even mentioning the bullet holes. Looks to be an older model as well."; + density = 1; + pixel_y = 16; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yz" = ( +/obj/structure/largecrate/supply/ammo/m41a, +/obj/structure/largecrate/supply/ammo/sentry{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yL" = ( +/obj/structure/largecrate/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"yO" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"yR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/item/clothing/glasses/welding, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"yU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"yX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"yY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"zi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"zm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"zo" = ( +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/laser{ + pixel_y = -32; + pixel_x = 13 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"zr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"zt" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"zC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"zG" = ( +/obj/item/reagent_container/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/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"zK" = ( +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"zO" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"zQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"zT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"zW" = ( +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Ad" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"Am" = ( +/obj/structure/morgue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"AA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"AR" = ( +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"AT" = ( +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Ba" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"Bc" = ( +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Bh" = ( +/obj/structure/ladder{ + id = "regladder3"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"Bp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Bs" = ( +/turf/open/floor/almayer_hull, +/area/space) +"Bv" = ( +/obj/structure/morgue/crematorium{ + id = "crema" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Bz" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = -22 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"BF" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"BH" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"BI" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"BJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"BO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"BQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"BS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"BX" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ch" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/rifle/l42a/training, +/turf/open/floor/almayer/red/north, +/area/adminlevel/ert_station/uscm_station) +"Cj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/uscm/directional/north, +/area/adminlevel/ert_station/uscm_station) +"Cl" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Cx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"CC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"CF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"CL" = ( +/turf/open/floor/podhatch/north, +/area/adminlevel/ert_station/uscm_station) +"CN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"CO" = ( +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"CR" = ( +/obj/structure/machinery/door/poddoor/almayer, +/turf/closed/wall/almayer/outer, +/area/adminlevel/ert_station/uscm_station) +"CS" = ( +/turf/open/floor/almayer/redcorner/west, +/area/adminlevel/ert_station/uscm_station) +"CT" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Df" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"Dh" = ( +/obj/structure/largecrate/supply/explosives/mines, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Dj" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Dm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"Dp" = ( +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder{ + id = "regladder1"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Dy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Dz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"DE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"DG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"DH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"DM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"DR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"DW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"Ef" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Ei" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Ej" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/ladder{ + id = "regladder3"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Eq" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Er" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"Eu" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"EA" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"EG" = ( +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"EH" = ( +/obj/structure/machinery/chem_dispenser/medbay, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"EI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"EL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"EN" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"EQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"ER" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"EY" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Fb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Fg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Fk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Fm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"Fo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Fq" = ( +/obj/structure/largecrate/random, +/obj/item/ammo_magazine/pistol/holdout{ + layer = 2 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ft" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"Fx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = -20; + pixel_y = -7 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -20; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Fz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"FB" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"FE" = ( +/obj/item/book/manual/security_space_law, +/obj/item/tool/crowbar, +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/storage/backpack/satchel, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"FG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"FH" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"FV" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + indestructible = 1; + locked = 1; + opacity = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"FX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/redfull/northwest, +/area/adminlevel/ert_station/uscm_station) +"FZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Gd" = ( +/obj/structure/platform_decoration, +/obj/item/hardpoint/armor/paladin, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ge" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/sign/safety/medical{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Gf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/explosives/grenades, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Gg" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Gj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/warnplate/southwest, +/area/adminlevel/ert_station/uscm_station) +"Gm" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 7; + pixel_y = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"Gn" = ( +/turf/open/floor/almayer/redfull, +/area/adminlevel/ert_station/uscm_station) +"Gv" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"GD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/safety/chem_lab{ + pixel_x = 14; + pixel_y = 31 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"GG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"GJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"GK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"GL" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"GT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "Telecommunications" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"GW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ha" = ( +/obj/structure/sign/safety/firingrange, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Hc" = ( +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Hm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/adminlevel/ert_station/uscm_station) +"HG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"HI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HK" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"HM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orangefull, +/area/adminlevel/ert_station/uscm_station) +"HT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/warnplate/southeast, +/area/adminlevel/ert_station/uscm_station) +"HU" = ( +/obj/structure/ladder{ + id = "regladder4"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ie" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"IE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"IH" = ( +/obj/docking_port/stationary/emergency_response/idle_port6{ + name = "USS Kurtz Landing Pad" + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"IJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/apc_cmd/decrepit{ + dir = 8; + pixel_y = -34; + pixel_x = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"IN" = ( +/obj/structure/machinery/optable, +/turf/open/floor/podhatch, +/area/adminlevel/ert_station/uscm_station) +"IP" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"IV" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/gun/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Jc" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Jd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/warnplate/west, +/area/adminlevel/ert_station/uscm_station) +"Je" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ji" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"Ju" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Jv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Jw" = ( +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"JF" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange, +/area/adminlevel/ert_station/uscm_station) +"JO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"JP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway"; + req_one_access = null; + dir = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Ka" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"Kj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Kl" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_one_access = null; + dir = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/adminlevel/ert_station/uscm_station) +"Kn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ks" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/adminlevel/ert_station/uscm_station) +"Kt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Kw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ky" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"KS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"KX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/pistol/vp70/training, +/turf/open/floor/almayer/red/north, +/area/adminlevel/ert_station/uscm_station) +"KY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"KZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"Lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"Lg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Li" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"Lo" = ( +/obj/structure/foamed_metal/iron, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Lq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Lu" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/weapon/gun/pistol/m4a3/training, +/turf/open/floor/almayer/red/northwest, +/area/adminlevel/ert_station/uscm_station) +"Lx" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Ly" = ( +/obj/structure/largecrate/random/case{ + pixel_y = -5 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Lz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory"; + dir = 2 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"LE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"LG" = ( +/obj/structure/ladder{ + id = "engladder"; + height = 2 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"LH" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/adminlevel/ert_station/uscm_station) +"LJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/crane/cargo{ + dir = 4; + desc = "Standard cargo crane used by the USCM. Looks like this one has replacement parts for the Tripoli on it. You probably couldn't name half of these." + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"LN" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"LO" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"Mj" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/adminlevel/ert_station/uscm_station) +"Mn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"Mz" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"MB" = ( +/obj/structure/filingcabinet/security, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"MJ" = ( +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + pixel_y = 9; + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MV" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"MZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/turf/open/floor/podhatch/southwest, +/area/adminlevel/ert_station/uscm_station) +"Ny" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"NE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"NN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"NQ" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/adminlevel/ert_station/uscm_station) +"NU" = ( +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/adminlevel/ert_station/uscm_station) +"Oh" = ( +/obj/structure/bed/roller, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"Ol" = ( +/obj/structure/closet/coffin, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OA" = ( +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"OE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OM" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/adminlevel/ert_station/uscm_station) +"ON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"OU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/vehicle_spawner/arc{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"OZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 2; + indestructible = 1; + locked = 1 + }, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"Pa" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz2"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Po" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Pw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Px" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"PD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"PE" = ( +/obj/structure/ladder{ + id = "regladder4"; + height = 1 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PH" = ( +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PK" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"PL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/warnplate/east, +/area/adminlevel/ert_station/uscm_station) +"PT" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/podhatch/northwest, +/area/adminlevel/ert_station/uscm_station) +"Qa" = ( +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/east, +/area/adminlevel/ert_station/uscm_station) +"Qf" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qh" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Qj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Qm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Qt" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"Qu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Qv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"QB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"QC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"QD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"QI" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"QL" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"QU" = ( +/obj/effect/vehicle_spawner/van/fixed{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Ra" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"Rg" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/adminlevel/ert_station/uscm_station) +"Rh" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz3"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Rj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Rl" = ( +/obj/structure/ship_ammo/rocket/napalm, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Rv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Ry" = ( +/obj/structure/sign/safety/medical{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"RA" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"RE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"RI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"RJ" = ( +/turf/open/floor/almayer/no_build, +/area/adminlevel/ert_station/uscm_station) +"RL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"RP" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"RR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"RW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"Sj" = ( +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/uscm_station) +"Sr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"SC" = ( +/obj/item/weapon/gun/shotgun/combat{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/item/ammo_magazine/shotgun/incendiary, +/obj/structure/surface/rack, +/turf/open/floor/red/east, +/area/adminlevel/ert_station/uscm_station) +"SF" = ( +/turf/open/floor/plating, +/area/space) +"SP" = ( +/obj/structure/ladder{ + id = "regladder6"; + height = 2 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"SX" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Td" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/fuelcell_recycler, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Th" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/adminlevel/ert_station/uscm_station) +"Tm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Tr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/adminlevel/ert_station/uscm_station) +"TB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/adminlevel/ert_station/uscm_station) +"TF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"TH" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"TP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"TX" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile"; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Uc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Ug" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"Uh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/adminlevel/ert_station/uscm_station) +"Ui" = ( +/obj/structure/largecrate/supply/weapons/m56d, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Un" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Uu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Uy" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"UF" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"UH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebot, +/area/adminlevel/ert_station/uscm_station) +"UL" = ( +/obj/structure/closet/toolcloset, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"UU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/adminlevel/ert_station/uscm_station) +"Vc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Vk" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Vm" = ( +/obj/item/storage/box/monkeycubes, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"Vt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/north, +/area/adminlevel/ert_station/uscm_station) +"VA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"VE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"VF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"VI" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"VO" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"VZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Wd" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Wm" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Wq" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/adminlevel/ert_station/uscm_station) +"Wr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Wv" = ( +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/obj/structure/largecrate/random/case, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"Wz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/adminlevel/ert_station/uscm_station) +"WE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"WO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"WU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/dark_sterile, +/area/adminlevel/ert_station/uscm_station) +"WV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"WW" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -26; + pixel_y = -32 + }, +/obj/item/tool/warning_cone{ + pixel_y = 8; + pixel_x = -13 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/adminlevel/ert_station/uscm_station) +"WZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 30; + pixel_x = 31 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/adminlevel/ert_station/uscm_station) +"Xd" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/clothing/under/liaison_suit/suspenders, +/obj/item/clothing/under/liaison_suit/outing, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Xh" = ( +/obj/structure/bookcase{ + density = 0 + }, +/obj/item/book/manual/engineering_hacking, +/obj/item/book/manual/nuclear, +/turf/open/floor/wood, +/area/adminlevel/ert_station/uscm_station) +"Xz" = ( +/obj/structure/largecrate/random, +/obj/item/ammo_magazine/pistol/holdout{ + layer = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"XA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"XC" = ( +/obj/item/tool/warning_cone{ + pixel_y = 5; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"XM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"XT" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/dark, +/area/adminlevel/ert_station/uscm_station) +"XX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/adminlevel/ert_station/uscm_station) +"Yb" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_y = 30 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_y = 30; + pixel_x = 15 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/adminlevel/ert_station/uscm_station) +"Yo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Yp" = ( +/obj/structure/machinery/pipedispenser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Yq" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/adminlevel/ert_station/uscm_station) +"Ys" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/east, +/area/adminlevel/ert_station/uscm_station) +"YJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/sterile_green_side, +/area/adminlevel/ert_station/uscm_station) +"YM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/adminlevel/ert_station/uscm_station) +"YP" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/adminlevel/ert_station/uscm_station) +"YV" = ( +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine, +/area/adminlevel/ert_station/uscm_station) +"YY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"YZ" = ( +/obj/structure/machinery/telecomms/server/presets, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"Zb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) +"Zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/adminlevel/ert_station/uscm_station) +"Ze" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/cargo, +/area/adminlevel/ert_station/uscm_station) +"Zf" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "kurtz4"; + name = "USS Kurtz" + }, +/turf/open/floor/almayer_hull, +/area/space) +"Zj" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/west, +/area/adminlevel/ert_station/uscm_station) +"Zm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/adminlevel/ert_station/uscm_station) +"Zp" = ( +/turf/open/space, +/area/space) +"Zs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/adminlevel/ert_station/uscm_station) +"Zx" = ( +/obj/structure/machinery/telecomms/bus, +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/uscm_station) +"ZI" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/red/west, +/area/adminlevel/ert_station/uscm_station) +"ZS" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped, +/area/adminlevel/ert_station/uscm_station) +"ZW" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer/plating/northeast, +/area/adminlevel/ert_station/uscm_station) + +(1,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(2,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(3,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(4,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +kZ +zK +zK +zK +zK +zK +zK +zK +zK +zK +Zp +Zp +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(5,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +zK +zK +tE +NU +ZI +ZI +Ft +Ft +hJ +zK +zK +Zp +Zp +Zp +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(6,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +zK +GW +GW +GW +zK +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +zK +zK +zK +zK +zK +zK +zK +wx +wr +wr +wr +Bn +rS +ep +zK +zK +rr +LE +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(7,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +SP +mh +nS +WW +jd +zK +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +zK +ej +DW +XM +Zd +DW +Lz +xl +aF +fh +SC +nw +AA +fz +zK +zK +Bs +fw +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Zp +"} +(8,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +hO +OM +ks +ir +sb +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +mD +fN +ji +ji +ji +ji +ji +ji +zK +FX +zK +zK +zK +aJ +zK +zK +zK +aJ +zK +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(9,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +Dy +sU +VF +sU +rj +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +LO +Uh +ym +tC +mD +PT +MZ +mD +Bz +BJ +si +Hc +YZ +OA +YZ +YZ +YZ +OA +hi +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(10,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +HU +OM +ks +Lg +Bk +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +VZ +mD +Qt +CO +CO +Er +Kl +CL +IN +mD +qL +ks +qL +Hc +YZ +OA +OA +OA +OA +OA +hi +zK +Zp +Zp +Zp +Zp +Zp +Zp +"} +(11,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +Bh +Ad +PD +fu +dR +vo +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +aw +CO +CO +Er +mD +jk +cU +mD +Lg +ks +Dp +Hc +YZ +OA +OA +Zx +Zx +OA +hi +zK +LE +Zp +Zp +Zp +Zp +Zp +"} +(12,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +GW +GW +GW +GW +GW +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +WU +Ik +gl +Er +mD +mD +mD +mD +ms +PD +fV +Hc +YZ +OA +qy +Zx +Zx +OA +hi +zK +fw +Zp +Zp +Zp +Zp +Zp +"} +(13,1,1) = {" +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +hY +fY +oC +fi +EN +pM +qQ +mp +Dp +bY +Hc +Hc +Hc +xX +OA +OA +OA +OA +zo +zK +zK +Zp +Zp +Zp +Zp +Zp +"} +(14,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Zd +mD +Oh +IE +IE +Dm +BQ +Vm +YJ +rP +sU +Qj +Mj +tx +Mj +OA +OA +OA +OA +OA +cp +zK +zK +zK +Zp +Zp +Zp +Zp +"} +(15,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +FB +VO +BF +Ys +Xb +Rg +Yq +mD +ms +nu +Hc +Hc +Hc +jW +fE +Li +JF +fE +OA +GT +DW +zK +zK +Zp +Zp +Zp +"} +(16,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +RE +mD +mD +mD +mD +mD +ph +Er +mD +mD +vI +Ky +yg +Hc +Zx +OA +Hc +EY +EY +EY +Hc +Hc +Rj +Hc +zK +Zp +Zp +Zp +"} +(17,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +DW +mD +IP +sL +zG +mD +ph +fi +OR +mD +Lg +ks +Lg +Hc +Zx +OA +EY +iD +xP +XT +iD +Hc +Zd +uM +zK +Zp +Zp +Zp +"} +(18,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Ji +rr +rr +zK +DW +sj +Vt +TP +RL +ja +zC +CO +bU +mD +Lg +ks +Lg +Hc +Zx +OA +EY +eW +Ka +eF +pD +tx +DW +hc +zK +Zp +Zp +Zp +"} +(19,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +Bs +zK +DW +mD +Ra +xu +ci +mD +vu +mM +iY +mD +fI +NE +FZ +Hc +Zx +OA +EY +pD +VA +zZ +pD +Hc +DW +Xz +zK +Zp +Zp +Zp +"} +(20,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +Bs +zK +DW +mD +mD +vG +Gm +mD +mD +mD +mD +mD +GD +Hc +ks +Hc +Hc +Hc +Hc +AR +di +pD +Df +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(21,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +zK +zK +DW +xA +mD +lz +bl +LN +Uh +LN +Tr +vG +Qv +Kw +xw +Hc +pD +pD +pD +AR +di +Eq +th +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(22,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +qE +Bs +zK +PC +Zd +au +mD +Fz +fn +Dm +dT +pP +Er +in +Dp +yY +EQ +ra +dQ +nK +wo +UL +cG +BO +ER +Hc +DW +om +zK +Zp +Zp +Zp +"} +(23,1,1) = {" +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +DW +mD +mD +mD +lH +EH +cW +KS +mx +iv +vG +Dp +PD +Lg +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +DW +GL +zK +Zp +Zp +Zp +"} +(24,1,1) = {" +kZ +kZ +kZ +kZ +zK +GW +GW +GW +zK +zK +zK +zK +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +DW +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +Dp +ks +Fb +Hc +kA +oh +vy +zm +Jd +iO +Gj +Hc +DW +Fq +zK +Zp +Zp +Zp +"} +(25,1,1) = {" +kZ +kZ +kZ +kZ +zK +Lx +nS +XC +XX +CF +Lg +WO +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +zK +Zd +mD +ac +ac +ac +jA +ac +ac +ac +vF +mD +Dp +ks +QI +to +ak +PL +yS +lA +PL +KY +HT +Hc +DW +Hc +zK +Zp +Zp +Zp +"} +(26,1,1) = {" +kZ +kZ +kZ +kZ +zK +Od +Qv +nH +YM +xF +FZ +zK +CR +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +aW +mD +MJ +MJ +MJ +xU +WE +ot +nH +nH +BX +sU +ei +Lg +Hc +Hc +Hc +Hc +iM +Hc +Hc +UH +Hc +DW +Hc +zK +LE +Zp +Zp +"} +(27,1,1) = {" +kZ +kZ +kZ +kZ +zK +Ks +lY +kE +rw +Lg +Dp +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Rv +FG +Rv +Rv +Rv +Rv +Rv +Rv +Rv +MJ +mD +vv +ks +Dp +Hc +Lo +Hc +RW +es +aC +Hc +UH +DW +DW +Xz +zK +fw +Zp +Zp +"} +(28,1,1) = {" +kZ +kZ +kZ +kZ +zK +wH +Eu +zK +zK +dP +OZ +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Bv +Rv +pF +pF +pF +Rv +pF +pF +pF +MJ +mD +tD +fj +MJ +Hc +Lo +Hc +Hc +wN +Hc +Hc +Hc +Hc +Zd +Xz +zK +zK +Zp +Zp +"} +(29,1,1) = {" +kZ +kZ +kZ +kZ +zK +wA +wt +zK +fe +Dg +mw +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +mD +tY +ac +ac +ac +qL +Am +Am +Am +MJ +mD +tD +fj +MJ +Hc +Lo +Lo +Hc +Hc +Hc +IV +DW +XM +DW +DW +DW +zK +Zp +Zp +"} +(30,1,1) = {" +kZ +kZ +kZ +zK +hN +rs +rs +JP +RJ +Po +LG +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Qf +Rv +tD +MJ +MJ +qL +tD +tD +tD +MJ +mD +Ry +ks +Dp +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +Hc +dz +zK +Zp +Zp +"} +(31,1,1) = {" +kZ +kZ +kZ +zK +cy +nN +cy +zK +lG +CC +ux +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +Rv +qL +Rv +Rv +Rv +Rv +Rv +Rv +Rv +qL +TF +Dp +ks +Dp +EY +Sj +hq +HK +Ba +AT +Hc +li +pi +Ei +ws +Xh +zK +Zp +Zp +"} +(32,1,1) = {" +kZ +kZ +kZ +kZ +zK +zK +FV +zK +zK +oE +zK +zK +kZ +kZ +kZ +Zp +Zp +kZ +qE +Bs +ji +pF +Rv +pF +pF +pF +tf +pF +pF +pF +Ol +mD +Dp +PD +Dp +EY +Sj +wI +HI +hq +AT +Hc +GJ +Jv +Sj +AT +AT +zK +Zp +Zp +"} +(33,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +zK +kZ +kZ +zK +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +zK +zK +ji +mD +SX +mD +mD +mD +mD +mD +mD +mD +mD +mD +Lg +ks +Dp +Hc +Sj +hq +ty +bB +AT +Hc +xB +hq +hq +AT +AT +zK +Zp +Zp +"} +(34,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Ly +Rv +MJ +tD +GG +Fx +eb +eb +eb +eb +FZ +MJ +yg +Hc +Lg +jZ +sU +vc +BS +uY +hm +Wq +AT +Hc +eY +hq +hq +AT +fQ +zK +Zp +Zp +"} +(35,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Wv +hz +lP +lP +ON +hW +lP +lP +mw +Px +LJ +MJ +tD +lE +Lg +ks +pS +Hc +zT +oT +oT +oT +GK +Wr +uL +oT +oT +Qu +Xd +zK +Zp +Zp +"} +(36,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +bX +qI +qI +qI +qI +qI +qI +DW +er +jZ +WE +ot +ot +sU +Qj +us +Hc +AT +AT +AT +AT +AT +Hc +MB +hq +hq +jP +im +zK +Zp +Zp +"} +(37,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +bX +qI +qI +qI +qI +qI +qI +qI +hw +Qj +MJ +MJ +Hc +Dp +PD +Lg +EY +AT +AT +ka +AT +AT +Hc +lR +hq +Hm +FE +pI +zK +Zp +Zp +"} +(38,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +Pt +qI +qI +qI +qI +qI +qI +qI +pR +PD +MJ +st +EY +fI +NE +FZ +EY +AT +AT +AT +AT +AT +Hc +Hc +dW +zK +zK +zK +zK +Zp +Zp +"} +(39,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +dK +Pt +qI +qI +qI +qI +qI +qI +qI +Lq +ks +tD +yg +Hc +PD +Hc +PD +Hc +qH +jn +vm +Sj +qH +Hc +bc +Zd +zK +Bs +fw +Zp +Zp +Zp +"} +(40,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +pR +ks +tD +Hc +Hc +rG +Kw +mO +Hc +Hc +Hc +Hc +Hc +Hc +Hc +DW +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(41,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +hw +ei +tD +EY +rd +Dp +PD +Dp +iK +Hc +et +au +qi +af +Hc +RE +Hc +zK +Bs +fw +Zp +Zp +Zp +"} +(42,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +mR +OM +Pt +qI +qI +qI +qI +qI +qI +qI +pR +ks +tD +EY +sa +YP +HE +LH +Dw +Hc +au +Uu +DW +DW +DW +DW +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(43,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +QL +lf +Gf +Dz +Zs +su +ag +ag +ag +Pr +ks +tD +EY +Dy +Cj +mk +iF +rj +Hc +hc +DW +DW +DH +Hc +mv +DW +zK +Bs +fw +Zp +Zp +Zp +"} +(44,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +Ui +MJ +Wm +MJ +Qv +nH +yd +eb +eb +hB +ei +tD +EY +PE +wF +hk +NQ +hu +Hc +xT +DW +Zd +DW +Hc +Hc +DW +zK +Bs +fw +kZ +kZ +kZ +"} +(45,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +yz +Dh +MJ +mD +mD +mD +QC +rW +uR +mD +PD +MJ +EY +Ej +sU +NE +sU +sG +pX +DW +DW +bc +bc +Hc +DW +DW +zK +Bs +qr +kZ +kZ +kZ +"} +(46,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +zK +zK +Hc +Hc +mD +UU +HG +Zm +CO +ba +uR +PD +MJ +Hc +Ky +Fo +xL +MJ +yO +Hc +Hc +Hc +Hc +Hc +Hc +Bp +Hc +zK +zK +kZ +kZ +kZ +kZ +"} +(47,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +ww +zK +Lo +Hc +mD +NN +IE +gj +CO +Er +mD +PD +tD +tD +ks +tD +tD +MJ +PD +st +MV +RP +MP +iW +PK +MJ +Vk +qT +zK +kZ +kZ +kZ +kZ +"} +(48,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +zK +Lo +Hc +mD +Yb +du +iS +CO +zW +uR +yY +eb +eb +pg +eb +yd +eb +pg +eb +nH +nH +eb +eb +eb +xb +EI +tD +zK +kZ +kZ +kZ +kZ +"} +(49,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +zK +zK +zK +ji +mD +uR +nY +fc +uR +mD +PD +tD +tD +qL +tD +fj +tD +qL +tD +MJ +Rl +MN +iP +tM +tD +PD +MJ +zK +kZ +kZ +kZ +kZ +"} +(50,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +qE +Bs +zK +tD +tD +yY +nH +nH +Ge +lN +MJ +MJ +Rv +MJ +kf +MJ +Rv +MJ +tD +tD +MN +MJ +tM +tD +PD +MJ +zK +kZ +kZ +kZ +kZ +"} +(51,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +ww +lZ +zK +XA +Px +PD +MJ +MJ +mo +ho +Yo +Fk +Rv +Uc +Yo +Fk +Rv +Uc +Yo +Yo +Yo +ho +sH +tD +nP +ps +zK +kZ +kZ +kZ +kZ +"} +(52,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +pR +PD +QU +Rv +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +IH +uD +fI +yR +ir +mR +kZ +kZ +kZ +kZ +"} +(53,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +jZ +ot +rj +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +WZ +kf +zr +ir +mR +kZ +kZ +kZ +kZ +"} +(54,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +ks +MJ +tD +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +tD +MJ +zr +ir +mR +kZ +kZ +kZ +kZ +"} +(55,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +ks +MJ +qL +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +tD +MJ +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(56,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +KZ +er +ks +MJ +tD +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +MJ +MJ +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(57,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +er +jZ +ot +zt +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +hv +OE +zr +ir +mR +Zp +Zp +Zp +Zp +"} +(58,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +mR +dK +OU +ks +MJ +Rv +Ie +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +qI +uD +Ii +yR +ir +mR +Zp +Zp +Zp +Zp +"} +(59,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +kZ +zK +QB +yr +PD +MJ +MJ +wp +bv +Ey +Sr +Rv +jM +Ey +vH +Rv +jM +Ey +Ey +Ey +bv +DG +tD +EL +WV +zK +Zp +Zp +Zp +Zp +"} +(60,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +Ji +zK +tD +tD +PD +MJ +tD +tD +MJ +MJ +MJ +Rv +MJ +Qm +MJ +Rv +MJ +MJ +MJ +MJ +MP +tD +tD +PD +tD +zK +Zp +Zp +Zp +Zp +"} +(61,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +MP +tD +Qv +nH +yd +EI +MJ +MJ +MJ +qL +tD +fj +tD +qL +tD +tD +MJ +MJ +tD +tD +tD +oe +tD +zK +Zp +Zp +Zp +Zp +"} +(62,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +Hc +Hc +Hc +MJ +Ky +Qv +nH +bV +TX +Mz +yd +pg +yd +eb +eb +eb +nH +nH +eb +eb +nH +tP +qc +zK +Zp +Zp +Zp +Zp +"} +(63,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +Lo +Lo +Hc +MJ +Ky +PH +Vk +vx +vx +vx +ks +tD +PD +tD +MJ +yx +MJ +md +MJ +gQ +lj +iE +iW +zK +Zp +Zp +Zp +Zp +"} +(64,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +Zp +Zp +Zp +qE +zK +zK +zK +Hc +MJ +yO +Hc +Hc +vx +vx +Gg +PD +Ju +PD +tD +MJ +MJ +Hc +Hc +zK +zK +zK +zK +zK +zK +Zp +Zp +Zp +Zp +"} +(65,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +mY +RA +Lu +Dp +Kn +uG +Hc +Hc +Hc +Hc +Je +Hc +Je +ek +Hc +Hc +Hc +kX +zK +EG +EG +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(66,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Bs +RA +KX +Lg +wW +CS +eL +FH +Hc +Ze +PD +MJ +PD +yg +Hc +Yp +qL +kb +xn +nc +gE +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(67,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Pa +RA +Ch +fI +NE +FZ +oD +FH +Hc +Ze +PD +MJ +sN +iW +Hc +Td +qL +CT +zK +EG +EG +zK +Bs +fw +Zp +Zp +Zp +Zp +"} +(68,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +Zp +Zp +kZ +kZ +kZ +qE +Bs +Bs +RA +Vc +lN +Rv +Qv +nq +Lg +Hc +BH +ks +tD +PD +YY +Hc +Un +qL +CN +zK +zK +zK +zK +Bs +qr +Zp +Zp +Zp +Zp +"} +(69,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Rh +RA +tw +tw +aD +tw +uF +UF +Hc +BH +Ii +yd +lN +Rv +oU +qL +wE +CT +zK +EG +EG +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(70,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +RA +ah +Gn +fP +Gn +Cx +yX +Hc +BH +qL +jZ +nH +nH +nH +nH +FZ +Ef +xn +Ug +YV +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(71,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Zf +zK +ah +Gn +zQ +rC +cZ +Ha +Hc +zt +ot +Qj +MJ +MJ +Th +TH +PD +JI +zK +EG +EG +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(72,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +zK +ah +Gn +zQ +rC +cZ +EY +cf +tD +Ny +PD +MJ +df +Hc +TH +PD +gY +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(73,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +nQ +zK +ZS +Gn +zQ +rC +cZ +EY +ec +tD +tD +PD +MJ +df +Hc +dH +kf +tD +MJ +Gv +wO +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(74,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +Bs +zK +nd +hy +zQ +rC +cZ +Hc +Hc +yq +xK +PD +tl +zO +Hc +dH +Rv +qL +tD +Wd +wO +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(75,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +qE +Bs +od +zK +nd +rC +fP +nJ +nW +dX +Hc +Hc +Hc +ab +Hc +Hc +Hc +Qa +MJ +tD +MJ +Gv +dy +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(76,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +lZ +lZ +zK +VE +rC +Zb +Gn +rD +zK +zK +zK +DE +lO +sg +zK +zK +zK +if +py +qx +Gv +dy +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(77,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +zK +EA +lO +ul +zK +kZ +zK +zK +zK +zK +zK +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +"} +(78,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +EA +lO +sy +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(79,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +ip +lO +sy +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(80,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +ip +lO +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(81,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +iq +Jc +zi +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(82,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +wc +lO +nd +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(83,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +lO +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(84,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +eG +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(85,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +RA +yL +eG +nd +RA +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(86,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +kZ +zK +Wz +DR +Mn +zK +kZ +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(87,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +kZ +BI +zK +ab +Hc +ab +zK +zK +kZ +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(88,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +SF +zK +zK +RJ +Dj +tD +Kt +QD +zK +zK +SF +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(89,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +fo +ZW +Fm +Pw +Lf +RJ +rY +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(90,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +cz +na +sd +JI +yf +TB +rs +rs +Kj +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(91,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +RR +Bc +cX +dP +qu +mF +rs +rs +RJ +RA +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(92,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +IJ +cX +ow +RI +Cl +wi +rs +RJ +RA +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(93,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +RR +eu +dP +Tm +nv +RJ +rs +rs +aM +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(94,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +Bc +RR +eu +yU +mw +Ee +Jw +Qd +Qd +aM +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(95,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +VI +lu +gW +Po +aP +lI +tD +MJ +JO +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(96,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +zK +zK +Gd +Qh +HM +Fg +ue +cy +Zj +zK +zK +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(97,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +zK +zK +RJ +Ze +BH +Uy +DM +zK +zK +qr +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(98,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +ww +zK +zK +zK +zK +zK +zK +zK +qr +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(99,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} +(100,1,1) = {" +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +kZ +"} diff --git a/maps/templates/weyland_ert_station.dmm b/maps/templates/lazy_templates/weyland_ert_station.dmm similarity index 69% rename from maps/templates/weyland_ert_station.dmm rename to maps/templates/lazy_templates/weyland_ert_station.dmm index 82fe23c5bc..d05b6c4d26 100644 --- a/maps/templates/weyland_ert_station.dmm +++ b/maps/templates/lazy_templates/weyland_ert_station.dmm @@ -1,32 +1,42 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" +"aa" = ( +/obj/structure/machinery/shower{ + pixel_y = 21 }, -/area/adminlevel/ert_station/weyland_station) -"al" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"ap" = ( -/obj/structure/bed/chair/comfy/orange{ +"af" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "blue" +/turf/open/floor/corsat/yellowcorner/north, +/area/adminlevel/ert_station/weyland_station) +"aw" = ( +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"aB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) -"au" = ( -/turf/open/floor/corsat{ - icon_state = "blue" +"aE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/machinery/light/double, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white/north, +/area/adminlevel/ert_station/weyland_station) +"aF" = ( +/turf/open/floor/corsat/greencorner/west, /area/adminlevel/ert_station/weyland_station) "aG" = ( /obj/structure/surface/table/woodentable/fancy, @@ -35,189 +45,160 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"bf" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/stamp/internalaffairs{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/paper_bin/wy, -/obj/item/tool/pen, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 13 +"aQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" +/obj/structure/closet/emcloset{ + density = 0; + pixel_x = 8; + pixel_y = 15 }, -/area/adminlevel/ert_station/weyland_station) -"bk" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - icon_state = "green" +/obj/structure/closet/firecloset/full{ + density = 0; + pixel_x = -8; + pixel_y = 15 }, -/area/adminlevel/ert_station/weyland_station) -"bp" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/whitecorner, /area/adminlevel/ert_station/weyland_station) -"bv" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"bw" = ( -/obj/structure/bed, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced/toughened{ - dir = 8 +"aS" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, -/obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/whitetancorner/north, +/area/adminlevel/ert_station/weyland_station) +"aU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) -"bG" = ( +"ba" = ( +/obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 4 }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) -"bV" = ( +"bn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) -"ck" = ( -/obj/structure/toilet{ +"bs" = ( +/obj/structure/machinery/light/double/blue{ dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) -"cm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +"bv" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"cn" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat{ - icon_state = "cargo" +"bx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "WY_aft_medbay"; + name = "Aft Medbay Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"cq" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" +"bH" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) +"bO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) -"cr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/shower{ +"bP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/greencorner, +/area/adminlevel/ert_station/weyland_station) +"bQ" = ( +/obj/structure/machinery/light/small{ dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/weyland_station) +"bW" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"cw" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +"bZ" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"cz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 +"ce" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/corsat/yellow/east, +/area/adminlevel/ert_station/weyland_station) +"cg" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/corsat{ +/turf/open/floor/corsat/yellow/east, +/area/adminlevel/ert_station/weyland_station) +"ch" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ dir = 1; - icon_state = "red" + name = "Barracks" }, -/area/adminlevel/ert_station/weyland_station) -"cK" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"cU" = ( -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" +"cj" = ( +/obj/item/weapon/gun/shotgun/combat{ + pixel_y = 9 }, -/area/adminlevel/ert_station/weyland_station) -"cW" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/gun/shotgun/combat{ + pixel_y = -6 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/item/weapon/gun/shotgun/combat{ + pixel_y = 2 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"cX" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetan" - }, +"cB" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"cY" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellowcorner" - }, +"cI" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) -"cZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"dg" = ( +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) -"dc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"du" = ( +/turf/open/floor/corsat/bluecorner/east, +/area/adminlevel/ert_station/weyland_station) +"dv" = ( +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) "dx" = ( /obj/structure/window/framed/corsat/indestructible/research, @@ -227,411 +208,304 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"dy" = ( -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/head/chefhat, -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"dK" = ( +/obj/item/ashtray/bronze{ + pixel_x = 5; + pixel_y = 3 }, -/area/adminlevel/ert_station/weyland_station) -"dz" = ( -/obj/structure/machinery/light/double{ - dir = 4; +/obj/item/trash/cigbutt/cigarbutt{ pixel_x = 10; - pixel_y = 1 + pixel_y = 15 }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 3 }, -/area/adminlevel/ert_station/weyland_station) -"dC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 6 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 9 }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) -"dE" = ( -/turf/open/floor/corsat{ - icon_state = "greencorner" +"dN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) -"dM" = ( +"dQ" = ( +/turf/open/floor/corsat/yellow/southwest, +/area/adminlevel/ert_station/weyland_station) +"dU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"dW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"dO" = ( -/obj/structure/machinery/light/double{ - dir = 1 +"dY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"et" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"ev" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"ey" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/milosoup{ + pixel_y = 10 + }, +/turf/open/floor/corsat/whitetan, +/area/adminlevel/ert_station/weyland_station) +"eK" = ( +/turf/open/floor/corsat/brown/west, +/area/adminlevel/ert_station/weyland_station) +"eU" = ( +/turf/open/floor/corsat/blue/west, +/area/adminlevel/ert_station/weyland_station) +"eW" = ( +/turf/open/floor/corsat/red/southwest, +/area/adminlevel/ert_station/weyland_station) +"eY" = ( +/obj/structure/showcase{ + icon_state = "relay"; + name = "Telecommunication Relay" + }, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"fl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"dT" = ( +"fm" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_x = -10; pixel_y = 1 }, -/obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) -"ee" = ( -/obj/structure/bed/roller, -/turf/open/floor/corsat{ - icon_state = "darkgreen" +"fn" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8 }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) -"eh" = ( -/obj/structure/machinery/shower{ - pixel_y = 21 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/double/blue{ - dir = 8 +"fr" = ( +/obj/structure/window/reinforced/toughened, +/obj/structure/closet/crate/ammo, +/turf/open/floor/corsat/browncorner/north, +/area/adminlevel/ert_station/weyland_station) +"fs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, -/area/adminlevel/ert_station/weyland_station) -"ei" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" + dir = 5 }, +/turf/open/floor/corsat/whitecorner/east, /area/adminlevel/ert_station/weyland_station) -"ek" = ( -/obj/structure/bed/chair{ - dir = 1 +"fx" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/meatsteak{ + pixel_y = -2 }, -/turf/open/floor/corsat{ - icon_state = "green" +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 }, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) -"el" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +"fJ" = ( +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) -"er" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/toy/deck, -/obj/structure/machinery/light/double{ +"fL" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"eA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) -"eB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = null - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" +"fM" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/microwave{ + pixel_y = 4 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"eG" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "blue" - }, +"fN" = ( +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) -"eJ" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 1; - name = "\improper Brig Cell 2" - }, +"fR" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) -"eO" = ( -/turf/open/floor/corsat{ - icon_state = "yellowcorner" - }, +"fS" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) -"eQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" +"fV" = ( +/obj/structure/bed/chair/wheelchair, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) +"fX" = ( +/turf/closed/wall/r_wall/biodome, +/area/adminlevel/ert_station/weyland_station) +"gc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/weyland_station) -"eX" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" +"gn" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, +/turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) -"fe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "WY_meeting"; - name = "\improper Meeting Room Shutters" +"gp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"fl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, +"gr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, /area/adminlevel/ert_station/weyland_station) -"fy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"gt" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Fridge" }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"fC" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +"gu" = ( +/turf/open/floor/corsat/brown/southeast, /area/adminlevel/ert_station/weyland_station) -"fD" = ( -/obj/structure/closet/emcloset{ - density = 0; - pixel_x = 8; - pixel_y = 15 - }, -/obj/structure/closet/firecloset/full{ - density = 0; - pixel_x = -8; - pixel_y = 15 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +"gy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/arrow_east, /area/adminlevel/ert_station/weyland_station) -"fF" = ( +"gF" = ( +/obj/structure/largecrate/random/barrel/green, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 9 }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"fI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"gI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/weapon/gun/smg/m39/elite, +/obj/item/weapon/gun/smg/m39/elite{ + pixel_y = -8 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/weapon/gun/smg/m39/elite{ + pixel_y = 9 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"fX" = ( -/turf/closed/wall/r_wall/biodome, +"gM" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/darkgreencorner/east, /area/adminlevel/ert_station/weyland_station) -"gf" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/machinery/autodoc_console{ - dir = 1 - }, -/turf/open/floor/corsat{ +"gO" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/toughened{ dir = 1; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"gh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/weyland_station) -"gj" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/device/taperecorder, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"gm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" + layer = 2.9 }, -/area/adminlevel/ert_station/weyland_station) -"gq" = ( -/obj/structure/bed, /obj/item/bedsheet/orange, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"gC" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"gH" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/item/tool/mop, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 7; - pixel_y = 2 - }, +"gV" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/weyland_station) +"hg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1 }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"gK" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" +"hj" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"gL" = ( -/obj/structure/surface/table, -/obj/item/storage/box/wy_mre, -/turf/open/floor/corsat{ - icon_state = "whitetan" +"hq" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/machinery/light/small/built{ + dir = 4 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"gW" = ( -/obj/structure/machinery/chem_dispenser, -/obj/item/reagent_container/glass/beaker/bluespace, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +"hx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"ha" = ( +"hB" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/processor{ pixel_y = 10 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/adminlevel/ert_station/weyland_station) -"ho" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/adminlevel/ert_station/weyland_station) -"hu" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/adminlevel/ert_station/weyland_station) -"hz" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/adminlevel/ert_station/weyland_station) -"hC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_center_medbay"; - name = "\improper Central Medbay Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/adminlevel/ert_station/weyland_station) -"hG" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"hK" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetancorner" - }, +"hU" = ( +/turf/open/floor/corsat/whitetancorner, /area/adminlevel/ert_station/weyland_station) -"hM" = ( -/obj/structure/machinery/light/double, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, +"ie" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/random, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"hZ" = ( +"ih" = ( /obj/structure/closet/secure_closet/brig{ density = 0; pixel_x = 7; @@ -642,41 +516,16 @@ pixel_x = -7; pixel_y = 16 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"ib" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "arrow_east" - }, -/area/adminlevel/ert_station/weyland_station) -"id" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) -"ik" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"ij" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"in" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"ir" = ( +/turf/open/floor/corsat/greencorner, /area/adminlevel/ert_station/weyland_station) "iw" = ( /obj/structure/surface/table/woodentable/fancy, @@ -689,63 +538,41 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"iE" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"iy" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/spawner/random/goggles/lowchance, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"iJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "redcorner" +"iQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/firstaid/rad{ + pixel_x = 7; + pixel_y = 6 }, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"iP" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/machinery/light/double{ - dir = 1 +"iR" = ( +/obj/item/storage/firstaid/adv, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) +"iX" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41a/elite{ + pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" +/obj/item/weapon/gun/rifle/m41a/elite{ + pixel_y = -4 }, -/area/adminlevel/ert_station/weyland_station) -"iT" = ( -/obj/structure/surface/table/reinforced, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/knife{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/knife/butcher{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/adminlevel/ert_station/weyland_station) -"iU" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"iV" = ( -/obj/structure/machinery/autolathe/full, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, -/area/adminlevel/ert_station/weyland_station) -"jb" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) +"jd" = ( +/obj/structure/surface/rack, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "je" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -755,109 +582,91 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"jm" = ( -/obj/structure/machinery/cm_vending/clothing/antag{ - name = "\improper Response Team Automated Equipment Rack" - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"jz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"jE" = ( -/obj/structure/machinery/shower{ - pixel_y = 21 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"jp" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "damaged1" +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) -"jK" = ( +"jt" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "red" - }, +/turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) -"jY" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" +"jA" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/light/double{ + dir = 1 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"ka" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +"jG" = ( +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) -"kn" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "green" +"jI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"jM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/storage/box/masks, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"kq" = ( -/obj/structure/bed/chair/wheelchair, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" +"jN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Barracks" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"jS" = ( +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"jT" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/corsat/blue/north, +/area/adminlevel/ert_station/weyland_station) +"kb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner, +/area/adminlevel/ert_station/weyland_station) +"kf" = ( +/obj/structure/machinery/chem_dispenser, +/obj/item/reagent_container/glass/beaker/bluespace, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"kr" = ( +"kh" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/weyland_station) -"ky" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"kA" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +"kw" = ( +/turf/open/floor/corsat/yellow, /area/adminlevel/ert_station/weyland_station) -"kF" = ( -/obj/structure/machinery/power/smes, -/turf/open/floor/corsat{ - icon_state = "plate" +"kB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) -"kM" = ( -/obj/structure/largecrate/supply/weapons/flamers, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "cargo" +"kL" = ( +/obj/structure/machinery/shower{ + dir = 4 }, +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) "kO" = ( /obj/structure/window/framed/corsat/research, @@ -868,55 +677,47 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"kV" = ( -/obj/structure/surface/table, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"kT" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/adminlevel/ert_station/weyland_station) +"kY" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; - icon_state = "tan" + name = "\improper Brig Cell 2" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"kW" = ( -/obj/structure/machinery/sleep_console{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +"lb" = ( +/turf/open/floor/corsat/arrow_west, /area/adminlevel/ert_station/weyland_station) -"la" = ( +"lc" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, /obj/structure/machinery/light/double, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"lh" = ( -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"le" = ( +/obj/structure/window/framed/corsat/cell/security, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"ll" = ( -/obj/item/storage/firstaid/adv, -/obj/item/storage/belt/medical/lifesaver/full, +"lf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"lj" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - icon_state = "green" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"lo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" +"lk" = ( +/obj/structure/machinery/sleep_console{ + dir = 1 }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) "lq" = ( /obj/structure/bed{ @@ -925,726 +726,457 @@ /obj/item/bedsheet/rd, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"lv" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/milosoup{ - pixel_y = 10 +"lQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "Morgue"; + req_one_access = null }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"lw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +"lW" = ( +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) -"lx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +"lY" = ( +/obj/structure/window/framed/corsat/indestructible, +/turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"lD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" - }, +"lZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"lE" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small/built{ +"mf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "red" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"lH" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 +"mg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/weyland_station) +"mk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/southwest, +/area/adminlevel/ert_station/weyland_station) +"mm" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline{ + pixel_x = 7 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" +/obj/item/storage/pill_bottle/dexalin, +/obj/item/storage/pill_bottle/antitox{ + pixel_x = -5 }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"lI" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "red" +"mr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/browncorner/west, /area/adminlevel/ert_station/weyland_station) -"lS" = ( -/obj/structure/largecrate/supply/medicine/blood, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 +"mw" = ( +/turf/open/floor/corsat/yellowcorner/west, +/area/adminlevel/ert_station/weyland_station) +"mz" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" +/obj/item/reagent_container/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" }, -/area/adminlevel/ert_station/weyland_station) -"lT" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "WY_center_medbay_or"; + name = "Center Medbay Operation Room Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, -/turf/open/floor/corsat{ - icon_state = "cargo" +/turf/open/floor/corsat/darkgreen/northwest, +/area/adminlevel/ert_station/weyland_station) +"mC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"lU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"mD" = ( +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 21 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" +/turf/open/floor/corsat/retrosquareslight, +/area/adminlevel/ert_station/weyland_station) +"mK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) -"lY" = ( -/obj/structure/window/framed/corsat/indestructible, -/turf/open/floor/plating, +"mL" = ( +/turf/open/floor/corsat/brown/north, /area/adminlevel/ert_station/weyland_station) -"md" = ( +"mO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"mR" = ( +/obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/redcorner/west, /area/adminlevel/ert_station/weyland_station) -"mg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood/ship, +"mS" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) -"mh" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +"mZ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ + hacked = 1; + name = "\improper Response Team Automated Guns Rack"; + use_power = 0; + use_snowflake_points = 1 }, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"mn" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "yellow" - }, +"nc" = ( +/obj/structure/machinery/autolathe/full, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) -"mv" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata{ - dir = 8; - icon_state = "multi_tiles" - }, +"nd" = ( +/obj/item/roller, +/obj/item/roller, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) -"mx" = ( -/obj/structure/barricade/handrail/wire{ - dir = 4 +"nn" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/whitetan, +/area/adminlevel/ert_station/weyland_station) +"no" = ( +/obj/structure/machinery/medical_pod/autodoc/unskilled{ + dir = 1 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/corsat{ +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "yellow" + pixel_x = 10; + pixel_y = 1 }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) -"mE" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"mI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +"nK" = ( +/obj/item/device/defibrillator/upgraded, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/corsat/darkgreen/northeast, /area/adminlevel/ert_station/weyland_station) -"mV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - name = "\improper Telecomms" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"nL" = ( +/turf/open/floor/corsat/omega, /area/adminlevel/ert_station/weyland_station) -"nb" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" +"nR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) -"ng" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" +"nU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"nq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ - req_access = null +"oj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"ns" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bathroom" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" +"ov" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"nw" = ( +"ox" = ( /obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41a/elite{ - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a/elite{ - pixel_y = -4 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/corsat/yellow/southeast, /area/adminlevel/ert_station/weyland_station) -"nG" = ( -/obj/structure/machinery/autolathe/full, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" +"oy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) -"nI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +"oA" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"nJ" = ( -/obj/item/roller, -/obj/item/roller, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" - }, +"oK" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"nQ" = ( -/obj/structure/surface/table/reinforced, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"oM" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_aft_medbay"; + name = "\improper Aft Medbay Shutters" }, +/turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"nS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/structure/closet/emcloset{ - density = 0; - pixel_x = 8; - pixel_y = 15 +"pk" = ( +/turf/open/floor/corsat/red/southeast, +/area/adminlevel/ert_station/weyland_station) +"pC" = ( +/turf/open/floor/corsat/bluecorner/west, +/area/adminlevel/ert_station/weyland_station) +"pG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/closet/firecloset/full{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/obj/structure/machinery/door/window{ + dir = 8 }, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"pO" = ( +/obj/structure/machinery/power/smes, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"pZ" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_x = 10; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "whitecorner" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) -"nT" = ( -/obj/structure/showcase{ - icon_state = "broadcast receiver"; - name = "Subspace Receiver" - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"qg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, +/turf/open/floor/corsat/darkgreencorner/west, /area/adminlevel/ert_station/weyland_station) -"nY" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +"qi" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"ob" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access_txt = "100" +"qj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "green" +/obj/structure/machinery/light/double/blue{ + dir = 8 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"og" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" - }, +"qp" = ( +/turf/open/floor/corsat/blue/northeast, /area/adminlevel/ert_station/weyland_station) -"ou" = ( +"qN" = ( +/obj/item/device/defibrillator/upgraded, /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/firstaid/adv, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/door_control{ + id = "WY_center_medbay"; + name = "Center Medbay Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"oE" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "bluecorner" - }, +"qQ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"oL" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" +"rj" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/corsat/red/west, /area/adminlevel/ert_station/weyland_station) -"oM" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_aft_medbay"; - name = "\improper Aft Medbay Shutters" +"ro" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"oQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - dir = 1 - }, +"rt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/red/east, +/area/adminlevel/ert_station/weyland_station) +"rG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"oT" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, +"rH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/firstaid/fire, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"rP" = ( +/obj/structure/bed/chair/comfy/orange, /obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/blue/northwest, /area/adminlevel/ert_station/weyland_station) -"oX" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/random, -/turf/open/floor/corsat{ - icon_state = "green" - }, +"sa" = ( +/turf/open/floor/corsat/browncorner/west, /area/adminlevel/ert_station/weyland_station) -"pa" = ( -/obj/vehicle/powerloader/ft{ +"si" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) -"pc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "brown" +"sj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"pf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_box/magazine/m39/ap{ - pixel_y = 8 - }, -/obj/item/ammo_box/magazine/ap, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"sn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"pq" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"sr" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy, +/obj/item/tool/pen/clicky, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"pv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"ss" = ( +/obj/structure/bed, +/obj/structure/window/reinforced/toughened{ + dir = 1; + layer = 2.9 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/window/reinforced/toughened{ + dir = 8 }, +/obj/item/bedsheet/orange, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"pB" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/antag_guns{ - hacked = 1; - name = "\improper Response Team Automated Guns Rack"; - use_power = 0; - use_snowflake_points = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "squares" +"st" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/machinery/autodoc_console{ + dir = 1 }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"pE" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" - }, +"su" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"pF" = ( -/turf/open/floor/corsat{ - icon_state = "theta" - }, +"sx" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/yellow/north, /area/adminlevel/ert_station/weyland_station) -"pK" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"sA" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"pY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "arrow_east" +"sH" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 1 }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"qu" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 1; - name = "\improper Brig Cell 3" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"sJ" = ( +/obj/structure/bed/chair{ + dir = 1 }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"qv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"sM" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"qD" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/folder/black, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" +"sO" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"qF" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" +"sX" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "WY_center_medbay"; + name = "\improper Central Medbay Shutters" }, +/turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"qL" = ( -/obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" +"sZ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/adminlevel/ert_station/weyland_station) -"qV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/adminlevel/ert_station/weyland_station) -"rc" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/double/blue, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "damaged1" - }, -/area/adminlevel/ert_station/weyland_station) -"ro" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"rB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage/antag, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/weyland_station) -"rD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, -/area/adminlevel/ert_station/weyland_station) -"rF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/adminlevel/ert_station/weyland_station) -"rK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"rN" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"rX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" - }, -/area/adminlevel/ert_station/weyland_station) -"rY" = ( -/obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"sg" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, -/area/adminlevel/ert_station/weyland_station) -"sq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"sr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy, -/obj/item/tool/pen/clicky, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"su" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"sy" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 +/obj/item/tool/mop, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 7; + pixel_y = 2 }, /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"sA" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"sB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" - }, -/area/adminlevel/ert_station/weyland_station) -"sH" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/emails{ dir = 1 }, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"sM" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"sO" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/wood/ship, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) -"sX" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "WY_center_medbay"; - name = "\improper Central Medbay Shutters" +"tb" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 }, -/turf/open/floor/plating, -/area/adminlevel/ert_station/weyland_station) -"sY" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; + dir = 4; + pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitetancorner" - }, -/area/adminlevel/ert_station/weyland_station) -"tc" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"td" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"th" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/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/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "WY_center_medbay_or"; - name = "Center Medbay Operation Room Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "darkgreen" - }, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) -"ts" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellowcorner" - }, +"tf" = ( +/obj/structure/closet/coffin, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"tz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +"tj" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 22 }, -/turf/open/floor/corsat{ +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "white" + pixel_x = 10; + pixel_y = 1 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) "tR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -1654,120 +1186,61 @@ /obj/structure/window/framed/corsat, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) +"tV" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/red/southeast, +/area/adminlevel/ert_station/weyland_station) "tW" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer3/laptop/secure_data, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"tX" = ( -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"ue" = ( +/obj/structure/toilet{ + dir = 8 }, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) -"ul" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, +"uj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"uv" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" +"uP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/gibber{ + pixel_y = 10 }, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"uQ" = ( +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"uw" = ( +"vk" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/mirror{ pixel_y = 32 }, /obj/structure/sink{ pixel_x = 1; - pixel_y = 21 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/weyland_station) -"uE" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/m41a/elite{ - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a/elite{ - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "cargo" - }, -/area/adminlevel/ert_station/weyland_station) -"uR" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/structure/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/adminlevel/ert_station/weyland_station) -"uX" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/meatsteak{ - pixel_y = -2 - }, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/adminlevel/ert_station/weyland_station) -"va" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "white" + pixel_y = 23 }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) -"vb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - dir = 1; - name = "Barracks" - }, +"vl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "plate" + dir = 5 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"vc" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, +"vq" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) -"vh" = ( -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +"vs" = ( +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"vv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +"vu" = ( +/turf/open/floor/corsat/browncorner/east, /area/adminlevel/ert_station/weyland_station) "vz" = ( /obj/structure/pipes/vents/pump{ @@ -1775,89 +1248,68 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) +"vD" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) "vN" = ( /obj/structure/window/framed/corsat/research, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"vP" = ( -/obj/structure/machinery/light/double, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, -/area/adminlevel/ert_station/weyland_station) -"vU" = ( +"vS" = ( +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/head/chefhat, +/obj/structure/surface/table/reinforced, /obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" + dir = 1 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"vW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +"vY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/yellowcorner/west, /area/adminlevel/ert_station/weyland_station) -"vX" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/corsat{ - icon_state = "cargo" +"wl" = ( +/obj/structure/machinery/shower{ + dir = 8 }, +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/retrosquareslight, /area/adminlevel/ert_station/weyland_station) -"wa" = ( -/obj/item/device/defibrillator/upgraded, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "darkgreen" - }, +"wt" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"wE" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "brown" +"wI" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Toilet" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"wU" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/pill_bottle/bicaridine{ - pixel_x = 5 - }, -/obj/item/storage/pill_bottle/kelotane{ - pixel_x = -7 - }, -/turf/open/floor/corsat{ - icon_state = "green" - }, +"wJ" = ( +/turf/open/floor/corsat/bluecorner/north, /area/adminlevel/ert_station/weyland_station) -"xg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - icon_state = "white" +"wK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) -"xh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"wL" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/corsat/red/north, +/area/adminlevel/ert_station/weyland_station) +"wM" = ( +/turf/open/floor/corsat/yellow/west, +/area/adminlevel/ert_station/weyland_station) +"xf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "xk" = ( /obj/structure/surface/table/woodentable/fancy, @@ -1868,416 +1320,266 @@ /obj/item/tool/lighter/zippo/gold, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"xA" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"xD" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "WY_meeting"; - name = "\improper Meeting Room Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/adminlevel/ert_station/weyland_station) -"xE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, -/area/adminlevel/ert_station/weyland_station) -"xN" = ( +"xl" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "red" + dir = 6 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"xT" = ( +"xp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" + dir = 9 }, +/turf/open/floor/corsat/redcorner, /area/adminlevel/ert_station/weyland_station) -"xZ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"ya" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" +"xr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 }, -/area/adminlevel/ert_station/weyland_station) -"yb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/closet/emcloset{ + density = 0; + pixel_x = 8; + pixel_y = 15 }, -/area/adminlevel/ert_station/weyland_station) -"yj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" +/obj/structure/closet/firecloset/full{ + density = 0; + pixel_x = -8; + pixel_y = 15 }, /obj/structure/machinery/light/double{ dir = 4; pixel_x = 10; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "whitecorner" - }, -/area/adminlevel/ert_station/weyland_station) -"yo" = ( -/obj/structure/machinery/light/double, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"yp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - name = "\improper Toxicity & Poison Treatment" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_aft_medbay"; - name = "\improper Aft Medbay Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, -/area/adminlevel/ert_station/weyland_station) -"yD" = ( -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"yH" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "browncorner" - }, -/area/adminlevel/ert_station/weyland_station) -"yM" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"zh" = ( -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, -/area/adminlevel/ert_station/weyland_station) -"zC" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "Morgue"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"zD" = ( -/obj/structure/surface/rack, -/turf/open/floor/wood/ship, -/area/adminlevel/ert_station/weyland_station) -"zH" = ( -/obj/item/ashtray/bronze{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 10; - pixel_y = 15 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"zI" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/microwave{ - pixel_y = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/adminlevel/ert_station/weyland_station) -"zN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/adminlevel/ert_station/weyland_station) -"zR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreencorner" - }, -/area/adminlevel/ert_station/weyland_station) -"zS" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"zT" = ( -/obj/structure/window/reinforced/toughened, -/obj/structure/closet/crate/ammo, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "browncorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Ai" = ( -/obj/item/device/defibrillator/upgraded, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "WY_center_medbay"; - name = "Center Medbay Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"Ak" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"Ax" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/closet/hydrant{ - pixel_y = -30 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/whitecorner/west, /area/adminlevel/ert_station/weyland_station) -"AA" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/corsat{ - icon_state = "squares" +"xC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + name = "\improper Telecomms" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"AD" = ( -/obj/structure/surface/table/reinforced/black, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +"xH" = ( +/obj/structure/showcase{ + icon_state = "broadcast receiver"; + name = "Subspace Receiver" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"AG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"xK" = ( +/obj/structure/machinery/autolathe/full, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) -"AH" = ( +"xQ" = ( /obj/structure/machinery/light/double{ - dir = 1 - }, -/turf/open/floor/corsat{ dir = 4; - icon_state = "redcorner" + pixel_x = 10; + pixel_y = 1 }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"AO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +"xS" = ( +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"AQ" = ( +"xV" = ( +/obj/structure/largecrate/supply/medicine/blood, /obj/structure/machinery/light/double{ dir = 4; pixel_x = 10; pixel_y = 1 }, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" +/turf/open/floor/corsat/green/northeast, +/area/adminlevel/ert_station/weyland_station) +"xZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/weyland_station) +"yc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"AR" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"yk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"yr" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/stamp/internalaffairs{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/paper_bin/wy, +/obj/item/tool/pen, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/corsat/blue/northeast, +/area/adminlevel/ert_station/weyland_station) +"yD" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/item/bedsheet/orange, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"AU" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_east" +"zg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + req_access = null }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) -"AV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"zk" = ( +/obj/structure/machinery/cm_vending/clothing/antag{ + name = "\improper Response Team Automated Equipment Rack" }, -/obj/structure/machinery/light/double, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"zr" = ( +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, +/turf/open/floor/corsat/brown/southeast, /area/adminlevel/ert_station/weyland_station) -"AY" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +"zB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/red/southwest, +/area/adminlevel/ert_station/weyland_station) +"zD" = ( +/obj/structure/surface/rack, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/weyland_station) +"zJ" = ( +/obj/structure/machinery/shower{ + pixel_y = 21 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/double/blue{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"Bk" = ( -/obj/structure/barricade/handrail/wire{ +"zW" = ( +/obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +/turf/open/floor/corsat/blue/west, /area/adminlevel/ert_station/weyland_station) -"Bu" = ( +"zX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/window{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) -"Bx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "plate" +"zZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = null }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) -"Bz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Barracks" +"Aa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/theta, +/area/adminlevel/ert_station/weyland_station) +"Ab" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, +/turf/open/floor/corsat/yellow/east, +/area/adminlevel/ert_station/weyland_station) +"Aj" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/green/northeast, +/area/adminlevel/ert_station/weyland_station) +"An" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/corsat/green/east, /area/adminlevel/ert_station/weyland_station) -"BG" = ( +"Ar" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 + icon_state = "N" }, +/obj/item/tool/wet_sign, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitecorner" + dir = 4 }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"BL" = ( +"Aw" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "theta" +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"AC" = ( +/obj/structure/showcase{ + icon_state = "processor"; + name = "Processor Unit" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"BM" = ( -/obj/structure/surface/table, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 +"AE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squareswood/north, +/area/adminlevel/ert_station/weyland_station) +"AN" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/floor/corsat/blue/northwest, +/area/adminlevel/ert_station/weyland_station) +"AP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/turf/open/floor/corsat/whitetan, +/area/adminlevel/ert_station/weyland_station) +"AR" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood/ship, +/area/adminlevel/ert_station/weyland_station) +"Bp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_aft_medbay"; + name = "\improper Aft Medbay Shutters" }, +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"Br" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/whitetan/north, /area/adminlevel/ert_station/weyland_station) "BT" = ( /obj/structure/window/framed/corsat, @@ -2287,110 +1589,132 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"BV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "bluecorner" +"Cc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/adminlevel/ert_station/weyland_station) -"Cm" = ( -/obj/structure/showcase{ - icon_state = "hub"; - name = "Telecommunication Hub" +/obj/structure/closet/hydrant{ + pixel_y = -30 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"Cv" = ( -/obj/structure/machinery/light/double{ - dir = 1 +"Ce" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/wood/ship, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"Cw" = ( +"Cf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ - name = "Cryogenics" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"Ci" = ( +/obj/structure/reagent_dispensers/beerkeg{ + density = 0 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"Cy" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"Co" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"Cp" = ( +/obj/structure/machinery/cm_vending/gear/antag{ + hacked = 1; + name = "\improper Response Team Automated Gear Rack"; + use_snowflake_points = 1 }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"Cv" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"CI" = ( +"Cx" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "red" +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"CJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"CK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 +"CP" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/green/southeast, +/area/adminlevel/ert_station/weyland_station) +"CQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"CU" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +"CZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + name = "\improper Toxicity & Poison Treatment" }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_aft_medbay"; + name = "\improper Aft Medbay Shutters" + }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"De" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 +"Dc" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/redcorner/north, +/area/adminlevel/ert_station/weyland_station) +"Di" = ( +/obj/structure/closet/crate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"Dk" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/firstaid/rad{ - pixel_x = 7; - pixel_y = 6 +"Dq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/communications{ + dir = 8 }, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/blue/east, +/area/adminlevel/ert_station/weyland_station) +"Dt" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Dn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" - }, +"Du" = ( +/turf/open/floor/corsat/yellowcorner/north, /area/adminlevel/ert_station/weyland_station) -"Dr" = ( -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"DB" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/yellow/northeast, /area/adminlevel/ert_station/weyland_station) -"Ds" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "bluecorner" +"DE" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 }, +/turf/open/floor/corsat/browncorner/north, /area/adminlevel/ert_station/weyland_station) "DF" = ( /obj/structure/bookcase{ @@ -2398,6 +1722,14 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) +"DG" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) "DH" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/glass, @@ -2415,23 +1747,26 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"DL" = ( -/obj/structure/showcase{ - icon_state = "processor"; - name = "Processor Unit" - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"DI" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"DO" = ( -/obj/structure/showcase{ - icon_state = "relay"; - name = "Telecommunication Relay" - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"DJ" = ( +/turf/open/floor/corsat/red/west, +/area/adminlevel/ert_station/weyland_station) +"DM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_center_medbay"; + name = "\improper Central Medbay Shutters" }, +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"DR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "DT" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2440,82 +1775,99 @@ /obj/structure/machinery/light/double, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"DZ" = ( -/turf/open/floor/corsat{ - icon_state = "browncorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Eg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - name = "\improper Medical & Surgery" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_center_medbay"; - name = "\improper Central Medbay Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" - }, +"DU" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) -"El" = ( -/obj/structure/surface/table/reinforced, -/obj/item/reagent_container/food/drinks/shaker, -/obj/structure/machinery/light/double, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"Ed" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/whitetan/east, /area/adminlevel/ert_station/weyland_station) -"Er" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"Ej" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/corsat{ - icon_state = "browncorner" +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/colony{ + name = "Cryogenics" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"EB" = ( -/obj/structure/barricade/handrail/wire, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +"Ep" = ( +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"EC" = ( -/turf/open/floor/corsat{ +"Et" = ( +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "yellowcorner" + pixel_x = 10; + pixel_y = 1 }, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) -"ED" = ( -/obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +"Ew" = ( +/obj/structure/showcase{ + icon_state = "bus" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"EG" = ( +"EE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "browncorner" + dir = 10 }, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"EL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/blue/north, +/area/adminlevel/ert_station/weyland_station) +"EO" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "ES" = ( /obj/docking_port/stationary/emergency_response/idle_port2, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"EW" = ( +"Fa" = ( /obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda/beer{ +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/knife{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"Fc" = ( +/obj/structure/closet/emcloset{ density = 0; - pixel_y = 23 + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/closet/firecloset/full{ + density = 0; + pixel_x = -8; + pixel_y = 15 + }, +/turf/open/floor/corsat/red/northwest, +/area/adminlevel/ert_station/weyland_station) +"Fd" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) "Fr" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2524,54 +1876,64 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Fs" = ( -/obj/structure/window/reinforced/toughened{ +"Fx" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/green/southwest, +/area/adminlevel/ert_station/weyland_station) +"Fy" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) +"FM" = ( +/turf/open/floor/corsat/greencorner/north, +/area/adminlevel/ert_station/weyland_station) +"FP" = ( +/obj/structure/machinery/power/apc/antag{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "brown" +/turf/open/floor/corsat/yellow/east, +/area/adminlevel/ert_station/weyland_station) +"FS" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, +/turf/open/floor/corsat/redcorner/east, /area/adminlevel/ert_station/weyland_station) -"FA" = ( +"FX" = ( /obj/structure/bed, -/obj/structure/window/reinforced/toughened{ - dir = 1; - layer = 2.9 - }, /obj/item/bedsheet/orange, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"FD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/corsat{ - icon_state = "squares" +"FY" = ( +/obj/structure/window/reinforced/toughened{ + dir = 4 }, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) -"FE" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/corsat{ - icon_state = "green" +"FZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/area/adminlevel/ert_station/weyland_station) -"FO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Gb" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" +"Ga" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) "Gd" = ( /obj/structure/pipes/vents/pump{ @@ -2579,85 +1941,79 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"Gg" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +"Gn" = ( +/obj/structure/bed/roller, +/turf/open/floor/corsat/green/southeast, /area/adminlevel/ert_station/weyland_station) -"Gs" = ( +"Gr" = ( +/turf/open/floor/corsat/brown, +/area/adminlevel/ert_station/weyland_station) +"Gt" = ( +/obj/structure/closet/firecloset/full, /obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" + dir = 1 }, +/turf/open/floor/corsat/yellowcorner/east, /area/adminlevel/ert_station/weyland_station) -"Gx" = ( -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"Gw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) -"Gz" = ( -/obj/structure/pipes/standard/cap/hidden, -/obj/structure/machinery/cryo_cell{ - layer = 3.20 +"Gy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) -"GM" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "blue" - }, +"GB" = ( +/obj/structure/target, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) -"Hc" = ( -/obj/structure/closet/medical_wall{ - pixel_x = -30 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"GT" = ( +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"Ha" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, +/obj/structure/machinery/light/double/blue, +/turf/open/floor/corsat/darkgreen/southwest, /area/adminlevel/ert_station/weyland_station) "He" = ( /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Hh" = ( -/obj/structure/closet/crate, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"Hj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/corsat{ - icon_state = "red" +/obj/structure/mirror{ + pixel_x = -28 }, +/turf/open/floor/corsat/darkgreen/west, +/area/adminlevel/ert_station/weyland_station) +"Ht" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"Hk" = ( +"HA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) +"HB" = ( +/obj/structure/largecrate/supply/weapons/flamers, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" - }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"Hr" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +"HD" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/bluecorner, /area/adminlevel/ert_station/weyland_station) "HE" = ( /obj/structure/machinery/light/double{ @@ -2674,142 +2030,93 @@ /obj/item/bedsheet/captain, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Id" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"If" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Ik" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 23 - }, -/turf/open/floor/corsat{ - icon_state = "damaged1" - }, -/area/adminlevel/ert_station/weyland_station) -"Im" = ( -/obj/structure/closet/coffin, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +"HQ" = ( +/turf/open/floor/corsat/yellowcorner/east, /area/adminlevel/ert_station/weyland_station) -"Iv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/corsat{ - icon_state = "theta" +"HS" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"IB" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, +"HT" = ( +/turf/open/floor/corsat/whitetancorner/east, /area/adminlevel/ert_station/weyland_station) -"II" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +"HU" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/m41a/elite{ + pixel_y = 1 }, -/area/adminlevel/ert_station/weyland_station) -"IQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/weapon/gun/rifle/m41a/elite{ + pixel_y = -4 }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"IV" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - icon_state = "bluecorner" - }, +"Ir" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"Jc" = ( +"Iu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ +/obj/structure/machinery/light/double{ dir = 8; - icon_state = "white" + pixel_x = -10; + pixel_y = 1 }, -/area/adminlevel/ert_station/weyland_station) -"Jd" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "greencorner" - }, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) -"Je" = ( -/turf/open/floor/corsat{ - icon_state = "red" +"ID" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"Jk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"IG" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/mirror{ - pixel_x = -28 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "darkgreen" +/turf/open/floor/corsat/tan/north, +/area/adminlevel/ert_station/weyland_station) +"IM" = ( +/obj/structure/surface/table, +/obj/item/storage/box/wy_mre, +/turf/open/floor/corsat/whitetan, +/area/adminlevel/ert_station/weyland_station) +"Jf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" }, +/turf/open/floor/corsat/squareswood/north, /area/adminlevel/ert_station/weyland_station) -"Jr" = ( -/obj/structure/machinery/light/double{ +"Jl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/double/blue{ dir = 4; pixel_x = 10; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Js" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/phone_base/rotary{ - do_not_disturb = 2; - name = "Weyland-Yutani Station CiC"; - phone_category = "W-Y"; - phone_id = "W-Y Station CiC" + pixel_y = -1 }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"Jt" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/corsat{ +"Jn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "darkgreencorner" + id = "WY_meeting"; + name = "\improper Meeting Room Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) "Ju" = ( /obj/structure/surface/table/woodentable/fancy, @@ -2829,83 +2136,65 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Jy" = ( -/obj/structure/reagent_dispensers/beerkeg{ - density = 0 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, +"JB" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/corsat/darkgreen/north, /area/adminlevel/ert_station/weyland_station) -"JA" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "bluecorner" +"JE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/bluecorner/east, /area/adminlevel/ert_station/weyland_station) -"JK" = ( -/turf/open/floor/corsat{ - icon_state = "whitetancorner" - }, +"JH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) -"JQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +"JI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"Kd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +"JJ" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/chem_dispenser/soda/beer{ + density = 0; + pixel_y = 23 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"Kg" = ( +"Ka" = ( +/turf/open/floor/corsat/tan/north, +/area/adminlevel/ert_station/weyland_station) +"Kb" = ( +/turf/open/floor/corsat/whitetancorner/north, +/area/adminlevel/ert_station/weyland_station) +"Kj" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "WY_aft_medbay"; - name = "Aft Medbay Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 }, +/turf/open/floor/corsat/red/northwest, /area/adminlevel/ert_station/weyland_station) -"Kk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ +"Kl" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 1; - icon_state = "white" + name = "\improper Brig Cell 3" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"Ku" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 22 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 +"Km" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"KC" = ( +"Ky" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ dir = 1; name = "\improper Meeting Room" @@ -2915,584 +2204,402 @@ id = "WY_meeting"; name = "\improper Meeting Room Shutters" }, -/turf/open/floor/corsat{ - icon_state = "sigma" - }, -/area/adminlevel/ert_station/weyland_station) -"KD" = ( -/obj/structure/barricade/handrail/wire{ - dir = 1 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellow" - }, -/area/adminlevel/ert_station/weyland_station) -"KF" = ( -/turf/open/floor/corsat{ - dir = 6; - icon_state = "whitetan" - }, -/area/adminlevel/ert_station/weyland_station) -"KK" = ( -/obj/structure/surface/table/reinforced/black, -/obj/structure/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"KM" = ( -/obj/item/weapon/gun/shotgun/combat{ - pixel_y = 9 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/weapon/gun/shotgun/combat{ - pixel_y = -6 - }, -/obj/item/weapon/gun/shotgun/combat{ - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) -"KP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - req_access = null - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +"KO" = ( +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) "KW" = ( /obj/structure/window/framed/corsat/indestructible/security, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"KZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" - }, -/area/adminlevel/ert_station/weyland_station) -"Le" = ( +"Lg" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/recharger, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"Ls" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "tcomms" - }, -/area/adminlevel/ert_station/weyland_station) -"Lz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/item/ammo_box/magazine/m39/ap{ + pixel_y = 8 }, +/obj/item/ammo_box/magazine/ap, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"LF" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, +"Lh" = ( +/turf/open/floor/corsat/whitetan/east, /area/adminlevel/ert_station/weyland_station) -"LP" = ( +"Li" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "greencorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Ma" = ( -/turf/open/floor/corsat{ - dir = 5; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"Mn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_aft_medbay"; - name = "\improper Aft Medbay Shutters" - }, -/turf/open/floor/corsat{ - icon_state = "marked" + dir = 4 }, +/turf/open/floor/corsat/arrow_west, /area/adminlevel/ert_station/weyland_station) -"MA" = ( +"Ll" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"MP" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" - }, -/area/adminlevel/ert_station/weyland_station) -"MQ" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, /obj/structure/machinery/light/double{ dir = 1 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" - }, +/turf/open/floor/corsat/green/northeast, /area/adminlevel/ert_station/weyland_station) -"MV" = ( -/obj/item/clothing/gloves/latex, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "darkgreen" - }, -/area/adminlevel/ert_station/weyland_station) -"MW" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 16 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, -/area/adminlevel/ert_station/weyland_station) -"Nd" = ( -/obj/structure/window/framed/corsat/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "WY_center_medbay_or"; - name = "\improper Central Medbay Operation Room Shutters" - }, -/turf/open/floor/plating, -/area/adminlevel/ert_station/weyland_station) -"Nf" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"Np" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"Nr" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/spawner/random/goggles/lowchance, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"Ns" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/obj/structure/machinery/light/double/blue, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "darkgreen" - }, -/area/adminlevel/ert_station/weyland_station) -"NC" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"NK" = ( +"Lo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/obj/structure/closet/medical_wall{ + pixel_x = 30 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) -"NN" = ( -/turf/open/floor/corsat{ - icon_state = "omega" +"Lp" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/brown/east, /area/adminlevel/ert_station/weyland_station) -"NO" = ( -/obj/structure/showcase{ - icon_state = "bus" - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"LB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/tan/north, +/area/adminlevel/ert_station/weyland_station) +"LE" = ( +/obj/structure/surface/table/reinforced, +/obj/item/reagent_container/food/drinks/shaker, +/obj/structure/machinery/light/double, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"NR" = ( -/obj/structure/machinery/light/double{ - dir = 1 +"LF" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/adminlevel/ert_station/weyland_station) +"LJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/wood/ship, +/turf/open/floor/corsat/white/east, /area/adminlevel/ert_station/weyland_station) -"NS" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light/double{ - dir = 1 +"LN" = ( +/obj/structure/pipes/standard/cap/hidden, +/obj/structure/machinery/cryo_cell{ + layer = 3.20 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "yellowcorner" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) -"Oc" = ( +"LY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, -/area/adminlevel/ert_station/weyland_station) -"Og" = ( -/turf/open/floor/corsat{ - icon_state = "arrow_west" - }, +/turf/open/floor/corsat/red, /area/adminlevel/ert_station/weyland_station) -"Oj" = ( +"Md" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "brown" - }, +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) -"On" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +"Mh" = ( +/obj/structure/bed/roller, +/turf/open/floor/corsat/darkgreen, /area/adminlevel/ert_station/weyland_station) -"Oo" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline{ - pixel_x = 7 +"Mi" = ( +/turf/open/floor/almayer/tcomms, +/area/adminlevel/ert_station/weyland_station) +"Mr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + dir = 1; + name = "\improper Meeting Room" }, -/obj/item/storage/pill_bottle/dexalin, -/obj/item/storage/pill_bottle/antitox{ - pixel_x = -5 +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "WY_meeting"; + name = "\improper Meeting Room Shutters" }, -/turf/open/floor/corsat{ - icon_state = "green" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) -"Oq" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/machinery/gibber{ - pixel_y = 10 +"Mu" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/tramadol, +/obj/item/storage/pill_bottle/bicaridine{ + pixel_x = 5 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/obj/item/storage/pill_bottle/kelotane{ + pixel_x = -7 }, +/turf/open/floor/corsat/green, /area/adminlevel/ert_station/weyland_station) -"Ot" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "squares" +"MX" = ( +/turf/open/floor/corsat/whitetan/southeast, +/area/adminlevel/ert_station/weyland_station) +"MY" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/corsat/yellow, +/area/adminlevel/ert_station/weyland_station) +"Nb" = ( +/obj/structure/closet/medical_wall{ + pixel_x = -30 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Ov" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"Nd" = ( +/obj/structure/window/framed/corsat/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_center_medbay_or"; + name = "\improper Central Medbay Operation Room Shutters" }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/plating, +/area/adminlevel/ert_station/weyland_station) +"Nw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 }, +/turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) -"OD" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"NR" = ( +/obj/structure/machinery/light/double{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"OE" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "greencorner" - }, +"Ob" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage/antag, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"OG" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/turf/open/floor/corsat{ +"Oh" = ( +/obj/structure/machinery/light/double{ dir = 4; - icon_state = "brown" + pixel_x = 10; + pixel_y = 1 }, +/turf/open/floor/corsat/brown/west, /area/adminlevel/ert_station/weyland_station) -"OY" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +"Ok" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) -"Pc" = ( -/turf/open/floor/corsat{ - icon_state = "brown" - }, +"Op" = ( +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"Pk" = ( +"Oz" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) +"OA" = ( /obj/structure/machinery/light/double, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) +"OF" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/corsat/red/north, +/area/adminlevel/ert_station/weyland_station) +"OH" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/corsat/green/east, +/area/adminlevel/ert_station/weyland_station) +"OI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"OM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/wood/ship, +/turf/open/floor/corsat/redcorner/west, /area/adminlevel/ert_station/weyland_station) -"PL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories" +"OQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/shower{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "squareswood" - }, +/turf/open/floor/strata/multi_tiles/west, /area/adminlevel/ert_station/weyland_station) -"Qa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ +"OZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; - icon_state = "bluecorner" + id = "WY_meeting"; + name = "\improper Meeting Room Shutters" }, +/turf/open/floor/corsat/sigma, /area/adminlevel/ert_station/weyland_station) -"Qb" = ( -/obj/structure/machinery/shower{ - pixel_y = 21 - }, -/obj/effect/decal/strata_decals/catwalk/prison, +"Pk" = ( +/obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata{ - dir = 6; - icon_state = "multi_tiles" - }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Qc" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4 +"Pm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/red/southeast, +/area/adminlevel/ert_station/weyland_station) +"PD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/almayer{ - icon_state = "tcomms" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"Qk" = ( +"PF" = ( /obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "green" + dir = 1 }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"Qr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/weapon/gun/smg/m39/elite, -/obj/item/weapon/gun/smg/m39/elite{ - pixel_y = -8 - }, -/obj/item/weapon/gun/smg/m39/elite{ - pixel_y = 9 - }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"PO" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/blue/southeast, /area/adminlevel/ert_station/weyland_station) -"QI" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" +"PP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) -"QQ" = ( -/obj/structure/pipes/standard/cap/hidden, -/obj/structure/machinery/cryo_cell{ - layer = 3.20 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +"PS" = ( +/turf/open/floor/corsat/theta, /area/adminlevel/ert_station/weyland_station) -"QR" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, +"PY" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "redcorner" + dir = 1 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"QT" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +"Qi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"QV" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +"Ql" = ( +/obj/structure/mirror{ + pixel_y = 32 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/obj/structure/sink{ + pixel_x = 1; + pixel_y = 21 }, -/turf/open/floor/wood/ship, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"QZ" = ( -/turf/open/floor/plating, +"Qu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/toy/deck, +/obj/structure/machinery/light/double{ + dir = 1 + }, +/turf/open/floor/corsat/red/north, /area/adminlevel/ert_station/weyland_station) -"Rb" = ( -/obj/structure/toilet{ - dir = 4 +"QC" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/machinery/light/small/built{ + dir = 4 }, +/turf/open/floor/corsat/red/northeast, /area/adminlevel/ert_station/weyland_station) -"Rd" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +"QD" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/plate{ + pixel_y = 2 }, -/area/adminlevel/ert_station/weyland_station) -"Re" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 +/obj/item/trash/plate{ + pixel_y = 4 }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +/obj/item/trash/plate{ + pixel_y = 6 }, -/area/adminlevel/ert_station/weyland_station) -"Rj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/item/trash/plate{ + pixel_y = 8 }, -/turf/open/floor/corsat{ - icon_state = "redcorner" +/obj/item/trash/plate{ + pixel_y = 10 }, -/area/adminlevel/ert_station/weyland_station) -"Rr" = ( -/obj/structure/window/framed/corsat/cell/security, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"Rv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 +"QE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/item/storage/box/masks, -/turf/open/floor/corsat{ - icon_state = "squares" +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"QM" = ( +/obj/structure/bed/chair{ + dir = 8 }, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"RB" = ( -/obj/structure/machinery/shower{ - dir = 8 +"QS" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) +"QT" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/adminlevel/ert_station/weyland_station) +"QV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"RE" = ( -/obj/structure/machinery/cm_vending/gear/antag{ - hacked = 1; - name = "\improper Response Team Automated Gear Rack"; - use_snowflake_points = 1 +"QX" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" }, -/turf/open/floor/corsat{ - icon_state = "squares" +/obj/structure/machinery/light/double{ + dir = 1 }, +/turf/open/floor/corsat/greencorner/north, /area/adminlevel/ert_station/weyland_station) -"RF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "red" - }, +"QY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/redcorner/east, +/area/adminlevel/ert_station/weyland_station) +"QZ" = ( +/turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"RG" = ( -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +"Rk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/browncorner, +/area/adminlevel/ert_station/weyland_station) +"RC" = ( +/turf/open/floor/corsat/browncorner, /area/adminlevel/ert_station/weyland_station) "RL" = ( /obj/structure/window/framed/corsat, @@ -3503,395 +2610,325 @@ }, /turf/open/floor/plating, /area/adminlevel/ert_station/weyland_station) -"RQ" = ( +"RO" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/corsat/brown, +/area/adminlevel/ert_station/weyland_station) +"RS" = ( +/obj/structure/machinery/light/double, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "theta" +/turf/open/floor/corsat/redcorner, +/area/adminlevel/ert_station/weyland_station) +"RY" = ( +/obj/item/clothing/gloves/latex, +/obj/item/clothing/gloves/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/corsat/darkgreen/north, +/area/adminlevel/ert_station/weyland_station) +"Sd" = ( +/turf/open/floor/corsat/redcorner/west, +/area/adminlevel/ert_station/weyland_station) +"Sg" = ( +/obj/structure/showcase{ + icon_state = "hub"; + name = "Telecommunication Hub" }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"RT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"Sl" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/yellow/southeast, +/area/adminlevel/ert_station/weyland_station) +"Sm" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/corsat/sterileplate, +/area/adminlevel/ert_station/weyland_station) +"Sq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 }, -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/corsat/cargo, +/area/adminlevel/ert_station/weyland_station) +"SB" = ( +/obj/item/tool/weldpack{ + pixel_x = 5 }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "white" +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = -2 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"RZ" = ( +"SF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Si" = ( -/obj/structure/bed/roller, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "green" - }, +"SG" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/device/taperecorder, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Sr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" - }, +"SM" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Ss" = ( -/obj/structure/bed/chair/comfy/orange{ +"SN" = ( +/obj/structure/barricade/handrail/wire{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "blue" - }, +/turf/open/floor/corsat/yellow/north, /area/adminlevel/ert_station/weyland_station) -"St" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" - }, +"SP" = ( +/obj/structure/surface/table/reinforced/black, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/corsat/bluecorner/east, /area/adminlevel/ert_station/weyland_station) -"Sw" = ( +"Tc" = ( +/turf/open/floor/corsat/yellowcorner, +/area/adminlevel/ert_station/weyland_station) +"Tp" = ( /obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "greencorner" + dir = 9 }, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"SE" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/rotary{ - do_not_disturb = 2; - name = "Weyland-Yutani Station Meeting Room"; - phone_category = "W-Y"; - phone_id = "W-Y Station Meeting Room" - }, -/turf/open/floor/wood/ship, +"TA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/blue, /area/adminlevel/ert_station/weyland_station) -"SH" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_x = -10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" +"TD" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/strata/multi_tiles/southeast, /area/adminlevel/ert_station/weyland_station) -"SI" = ( -/turf/open/floor/almayer{ - icon_state = "tcomms" +"TG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/blue/north, /area/adminlevel/ert_station/weyland_station) -"SJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/firstaid/fire, -/turf/open/floor/corsat{ - icon_state = "squares" - }, +"TH" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/yellow/southwest, /area/adminlevel/ert_station/weyland_station) -"SM" = ( -/obj/structure/machinery/vending/cigarette/colony, +"TI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/corporate, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"SO" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/corsat{ - icon_state = "cargo" +"Uf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/bluecorner, /area/adminlevel/ert_station/weyland_station) -"SY" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/obj/item/trash/plate{ - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_y = 8 - }, -/obj/item/trash/plate{ - pixel_y = 10 +"Ul" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room" }, -/obj/structure/window/reinforced/tinted/frosted{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"Uq" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4 }, +/turf/open/floor/almayer/tcomms, /area/adminlevel/ert_station/weyland_station) -"Ta" = ( -/obj/structure/bed/chair{ - dir = 8 +"Uw" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/turf/open/floor/corsat/brown/west, +/area/adminlevel/ert_station/weyland_station) +"Ux" = ( +/turf/open/space/basic, +/area/space) +"Uz" = ( +/obj/structure/machinery/shower{ + pixel_y = 21 }, +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" + dir = 4 }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) -"Tf" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/plasteel{ - amount = 10 +"UA" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/phone_base/rotary{ + do_not_disturb = 2; + name = "Weyland-Yutani Station CiC"; + phone_category = "W-Y"; + phone_id = "W-Y Station CiC" }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 +/turf/open/floor/corsat/squares, +/area/adminlevel/ert_station/weyland_station) +"UL" = ( +/turf/open/floor/corsat/redcorner/east, +/area/adminlevel/ert_station/weyland_station) +"UN" = ( +/turf/open/floor/corsat/blue/northwest, +/area/adminlevel/ert_station/weyland_station) +"UQ" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access_txt = "100" }, +/turf/open/floor/corsat/green, +/area/adminlevel/ert_station/weyland_station) +"Va" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_x = -10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "yellow" - }, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) -"Tk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/hydrant{ - pixel_y = 30 - }, +"Vf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, -/area/adminlevel/ert_station/weyland_station) -"Tx" = ( -/obj/structure/bed/roller, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "green" - }, +/turf/open/floor/corsat/bluecorner/north, /area/adminlevel/ert_station/weyland_station) -"TL" = ( -/obj/structure/machinery/medical_pod/autodoc/unskilled{ - dir = 1 - }, +"Vn" = ( +/obj/structure/machinery/vending/dinnerware, /obj/structure/machinery/light/double{ dir = 4; pixel_x = 10; pixel_y = 1 }, -/turf/open/floor/corsat{ - dir = 5; - icon_state = "green" - }, +/turf/open/floor/corsat/sterileplate, /area/adminlevel/ert_station/weyland_station) -"TN" = ( +"Vr" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "redcorner" - }, -/area/adminlevel/ert_station/weyland_station) -"TT" = ( -/obj/structure/bed/chair/comfy/orange{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" - }, -/area/adminlevel/ert_station/weyland_station) -"TW" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat{ - icon_state = "red" - }, -/area/adminlevel/ert_station/weyland_station) -"Ub" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" - }, -/area/adminlevel/ert_station/weyland_station) -"Ud" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "browncorner" - }, -/area/adminlevel/ert_station/weyland_station) -"Uk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Toilet" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - icon_state = "plate" - }, +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) -"Us" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"Uu" = ( -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" - }, +"Vv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"Ux" = ( -/turf/open/space/basic, -/area/space) -"UJ" = ( +"VB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "NW-out" }, /obj/structure/machinery/light/double{ dir = 4; pixel_x = 10; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, +/turf/open/floor/corsat/whitecorner/north, /area/adminlevel/ert_station/weyland_station) -"UV" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "redcorner" +"VC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/yellow/east, /area/adminlevel/ert_station/weyland_station) -"Vm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, +"VJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - icon_state = "white" - }, +/turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Vp" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +"VL" = ( +/obj/vehicle/powerloader/ft{ + dir = 4 }, +/turf/open/floor/corsat/cargo, /area/adminlevel/ert_station/weyland_station) -"VA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"VM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"VJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"VN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + do_not_disturb = 2; + name = "Weyland-Yutani Station Meeting Room"; + phone_category = "W-Y"; + phone_id = "W-Y Station Meeting Room" }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"VZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "yellow" - }, +"VP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage/antag, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"Wj" = ( +"VS" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/corsat{ - icon_state = "whitetan" - }, +/turf/open/floor/corsat/whitetan, /area/adminlevel/ert_station/weyland_station) -"Wo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - name = "Engineering" +"We" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat{ - icon_state = "marked" +/obj/structure/closet/hydrant{ + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/white, /area/adminlevel/ert_station/weyland_station) -"Wu" = ( +"Wg" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/closet/emcloset{ - density = 0; - pixel_x = 8; - pixel_y = 15 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/closet/firecloset/full{ - density = 0; - pixel_x = -8; - pixel_y = 15 +/turf/open/floor/corsat/plate, +/area/adminlevel/ert_station/weyland_station) +"Wn" = ( +/obj/structure/machinery/light/double, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/red, +/area/adminlevel/ert_station/weyland_station) +"Ww" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_x = -10; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat{ - icon_state = "whitecorner" - }, +/obj/structure/morgue, +/turf/open/floor/corsat/green/southwest, +/area/adminlevel/ert_station/weyland_station) +"Wy" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/corsat/green/north, +/area/adminlevel/ert_station/weyland_station) +"Wz" = ( +/turf/open/floor/corsat/blue/north, +/area/adminlevel/ert_station/weyland_station) +"WB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/firstaid/adv, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) "WD" = ( /obj/structure/flora/pottedplant{ @@ -3900,40 +2937,39 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"WE" = ( -/turf/open/floor/corsat{ - dir = 4; - icon_state = "whitetan" +"WS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/plasteel{ + amount = 10 }, -/area/adminlevel/ert_station/weyland_station) -"WU" = ( -/turf/open/floor/corsat{ - icon_state = "plate" +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 }, -/area/adminlevel/ert_station/weyland_station) -"WW" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/yellow/west, /area/adminlevel/ert_station/weyland_station) -"Xh" = ( -/obj/structure/window/reinforced/toughened{ - dir = 4 +"Xa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + name = "\improper Medical & Surgery" }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "brown" +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "WY_center_medbay"; + name = "\improper Central Medbay Shutters" }, +/turf/open/floor/corsat/marked, /area/adminlevel/ert_station/weyland_station) -"Xi" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "green" +"Xb" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) "Xj" = ( /obj/structure/surface/table/woodentable/fancy, @@ -3941,41 +2977,9 @@ /obj/item/tool/pen, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Xn" = ( -/obj/structure/surface/rack, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"Xo" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - icon_state = "sterileplate" - }, -/area/adminlevel/ert_station/weyland_station) -"Xs" = ( -/obj/structure/target, -/turf/open/floor/corsat{ - icon_state = "theta" - }, -/area/adminlevel/ert_station/weyland_station) -"Xt" = ( -/turf/open/floor/corsat{ - icon_state = "green" - }, -/area/adminlevel/ert_station/weyland_station) -"Xw" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 10; - icon_state = "yellow" - }, +"Xm" = ( +/obj/structure/morgue, +/turf/open/floor/corsat/green/northwest, /area/adminlevel/ert_station/weyland_station) "Xx" = ( /obj/structure/coatrack{ @@ -3983,67 +2987,67 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"XD" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "red" - }, +"XG" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/corsat/squares, /area/adminlevel/ert_station/weyland_station) -"XQ" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "brown" +"XI" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 }, -/area/adminlevel/ert_station/weyland_station) -"XR" = ( /obj/structure/machinery/light/double{ - dir = 4; - pixel_x = 10; - pixel_y = 1 - }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "brown" + dir = 1 }, +/turf/open/floor/corsat/greencorner/east, /area/adminlevel/ert_station/weyland_station) -"Ya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/medical_wall{ - pixel_x = 30 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "white" +"XL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + name = "Engineering" }, +/turf/open/floor/corsat/marked, +/area/adminlevel/ert_station/weyland_station) +"XW" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/folder/black, +/turf/open/floor/corsat/blue/east, /area/adminlevel/ert_station/weyland_station) "Yb" = ( /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"Yj" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/corsat{ - dir = 6; - icon_state = "yellow" +"Yd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, +/turf/open/floor/corsat/plate, /area/adminlevel/ert_station/weyland_station) -"Yt" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/corsat{ - dir = 1; - icon_state = "blue" +"Yg" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_x = -10; + pixel_y = 1 }, +/turf/open/floor/corsat/green/west, /area/adminlevel/ert_station/weyland_station) -"Yv" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "blue" +"Yo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/whitetan, +/area/adminlevel/ert_station/weyland_station) +"Yu" = ( +/turf/open/floor/corsat/redcorner/north, +/area/adminlevel/ert_station/weyland_station) +"Yw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/blue, +/area/adminlevel/ert_station/weyland_station) +"YA" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/greencorner/west, /area/adminlevel/ert_station/weyland_station) "YB" = ( /obj/structure/machinery/photocopier{ @@ -4052,114 +3056,82 @@ }, /turf/open/floor/wood/ship, /area/adminlevel/ert_station/weyland_station) -"YC" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/corsat{ - icon_state = "plate" +"YG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/adminlevel/ert_station/weyland_station) -"YN" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/light/double{ +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "squares" - }, -/area/adminlevel/ert_station/weyland_station) -"YZ" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 21 - }, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" - }, -/area/adminlevel/ert_station/weyland_station) -"Za" = ( -/obj/structure/morgue, -/turf/open/floor/corsat{ - dir = 9; - icon_state = "green" - }, +/turf/open/floor/corsat/white/north, /area/adminlevel/ert_station/weyland_station) -"Zl" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Fridge" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "marked" +"YR" = ( +/obj/structure/surface/table, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 }, -/area/adminlevel/ert_station/weyland_station) -"Zn" = ( -/turf/open/floor/corsat{ - dir = 1; - icon_state = "tan" +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, -/area/adminlevel/ert_station/weyland_station) -"Zt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat{ - dir = 8; - icon_state = "redcorner" - }, +/turf/open/floor/corsat/tan/north, /area/adminlevel/ert_station/weyland_station) -"Zu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - dir = 1; - name = "\improper Meeting Room" +"YV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ +/obj/structure/machinery/light/double{ dir = 4; - id = "WY_meeting"; - name = "\improper Meeting Room Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat{ - icon_state = "sigma" + pixel_x = 10; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/white/west, /area/adminlevel/ert_station/weyland_station) -"ZH" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat{ - dir = 4; - icon_state = "yellow" +"YX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access{ + req_access = null }, +/turf/open/floor/corsat/green/southwest, /area/adminlevel/ert_station/weyland_station) -"ZU" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"Ze" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 }, -/turf/open/floor/corsat{ - icon_state = "plate" +/turf/open/floor/corsat/blue/southwest, +/area/adminlevel/ert_station/weyland_station) +"Zj" = ( +/obj/structure/pipes/standard/cap/hidden, +/obj/structure/machinery/cryo_cell{ + layer = 3.20 }, +/turf/open/floor/corsat/green/north, /area/adminlevel/ert_station/weyland_station) -"ZV" = ( -/obj/structure/machinery/shower{ +"Zp" = ( +/obj/structure/window/reinforced/toughened{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/corsat{ - icon_state = "retrosquareslight" +/turf/open/floor/corsat/brown/east, +/area/adminlevel/ert_station/weyland_station) +"Zv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, +/turf/open/floor/corsat/brown, /area/adminlevel/ert_station/weyland_station) -"ZX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat{ - icon_state = "sterileplate" +"ZJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/double/blue, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/turf/open/floor/corsat/damaged1, /area/adminlevel/ert_station/weyland_station) (1,1,1) = {" @@ -4300,23 +3272,23 @@ lY lY QT QT -Wu -tz -va -va -va -lU -va -va -va -va -va -lU -va -va -va -tz -BG +aQ +LJ +Gw +Gw +Gw +Iu +Gw +Gw +Gw +Gw +Gw +Iu +Gw +Gw +Gw +LJ +fs QT QT lY @@ -4337,12 +3309,12 @@ Ux Ux Ux QT -rN -zH -Yv -ap +rP +dK +mS +Ze fX -Vm +Gy vz QZ QZ @@ -4358,12 +3330,12 @@ QZ QZ QZ vz -fy +oj fX -Tf -iV -ky -nG +WS +nc +DU +xK QT Ux Ux @@ -4379,12 +3351,12 @@ Ux Ux QT QT -Yt -Js -gj -Ss +jT +UA +SG +Ga fX -Vm +Gy QZ QZ QZ @@ -4400,12 +3372,12 @@ QZ QZ ES QZ -KZ -Wo -Dr -WU -Dr -vh +Ar +XL +GT +jS +GT +kw QT QT Ux @@ -4420,13 +3392,13 @@ QT lY lY QT -cU -BV -Dr -xh -au +UN +wJ +GT +hx +fN fX -Vm +Gy QZ QZ QZ @@ -4442,13 +3414,13 @@ QZ QZ QZ QZ -Kk -jb -dc -IQ -JQ -ts -zh +PD +bW +uj +jI +vl +mw +dQ QT lY lY @@ -4459,16 +3431,16 @@ Ux (8,1,1) = {" Ux QT -GM -TT -vc -BV -rK -dc -eQ -au +AN +zW +eU +wJ +nU +uj +EO +fN fX -Vm +Gy QZ QZ QZ @@ -4484,16 +3456,16 @@ QZ QZ QZ QZ -AV +aE fX -cY -Dr -ZU -Dr -ts -oL -oL -Xw +Gt +GT +yk +GT +mw +wM +wM +TH QT Ux Ux @@ -4501,16 +3473,16 @@ Ux (9,1,1) = {" Ux QT -bf -KK -qD -JA -Ds -AD -al -oE +yr +Dq +XW +du +Uf +SP +QE +pC fX -Tk +We QZ QZ QZ @@ -4526,16 +3498,16 @@ QZ QZ QZ QZ -Ax +Cc fX -uv -eO -Bk -mx -EC -Gx -rB -vh +sx +Tc +dN +VC +HQ +SB +oK +kw lY Ux Ux @@ -4546,13 +3518,13 @@ QT fX fX fX -dC -yo +wK +ba fX -md -AG +dU +hg fX -Vm +Gy QZ QZ QZ @@ -4568,16 +3540,16 @@ QZ QZ QZ QZ -AV +aE fX -NS -EB -cn -pa -KD -pK -ng -vh +af +MY +JI +VL +SN +Ob +VP +kw lY Ux Ux @@ -4585,16 +3557,16 @@ Ux (11,1,1) = {" Ux KW -CK -xA -Rr -Ak -AO +Kj +eW +le +Wz +Yw fX -Qa -Dr -WU -Vm +JE +GT +jS +Gy QZ QZ QZ @@ -4610,16 +3582,16 @@ QZ QZ QZ QZ -fy -Wo -Dr -EB -ul -AU -KD -eA -yb -VZ +oj +XL +GT +MY +HA +dg +SN +OI +lj +gn lY Ux Ux @@ -4627,16 +3599,16 @@ Ux (12,1,1) = {" Ux KW -lE -CI -eJ -Hk -cw +QC +Pm +kY +EL +TA fX -vv -dc -IQ -xg +TG +uj +jI +aU QZ QZ QZ @@ -4652,16 +3624,16 @@ QZ QZ QZ QZ -RT -jb -dc -lx -gH -oL -II -AA -FD -vh +YG +bW +uj +vY +sZ +wM +Du +ev +DR +kw lY Ux Ux @@ -4672,13 +3644,13 @@ QT fX fX fX -hZ -AO +ih +Yw fX -dM -IV +Ok +HD fX -Vm +Gy Gd QZ QZ @@ -4694,16 +3666,16 @@ QZ QZ QZ Gd -fy -fX -St -EC -Dr -eO -Re -sg -hz -Yj +oj +fX +tb +HQ +GT +Tc +cg +FP +Ab +Sl QT Ux Ux @@ -4711,37 +3683,37 @@ Ux (14,1,1) = {" Ux KW -lD -RF -qu -Hk -jz +JH +mk +Kl +EL +xf fX -rX -oE +Vf +pC fX -nS -NK -Jc -UJ -Ya -Jc -Jc -Jc -UJ -Jc -Jc -Jc -Ya -UJ -Jc -NK -yj +xr +bO +PP +YV +Lo +PP +PP +PP +YV +PP +PP +PP +Lo +YV +PP +bO +VB fX fX -mn -ZH -mh +DB +ce +ox fX fX fX @@ -4753,18 +3725,18 @@ Ux (15,1,1) = {" Ux KW -lE -yM -Rr -Ma -eG +QC +pk +le +qp +PO fX -md -AG +dU +hg fX fX -Oc -Og +Li +lb fX fX fX @@ -4776,8 +3748,8 @@ fX fX fX fX -AU -ib +dg +bn fX fX fX @@ -4785,9 +3757,9 @@ fX fX fX fX -Za -Us -qL +Xm +KO +cI QT Ux Ux @@ -4801,162 +3773,162 @@ fX fX fX fX -xT -Zn +sj +Ka fX fX -md -AG +dU +hg fX -th -Jk -Ns +mz +Hj +Ha fX fX -KP -Hc -nq +zg +Nb +YX fX fX -lh -oQ +aw +gp fX fX fX -Xn -Us -jY +jd +KO +Fx vN -Dn -Dr -kn +Op +GT +OA QT QT Ux "} (17,1,1) = {" lY -ZV +kL fX Jw aG Yb fX -sY -xT -JK +aS +sj +hU fX -MP -fF -TN +UL +EE +aB fX -hu -Dr -ee +JB +GT +Mh Nd -eB -el -Dr -qF -nJ -fX -MP -fF -TN +zZ +FM +GT +aF +nd +fX +UL +EE +aB oM -QQ -Sw -Dr -FE +LN +Nw +GT +bH vN -ED -xh -qF -dT +QS +hx +aF +Ww dx Ux "} (18,1,1) = {" QT -Ik -ns +vk +Jf He AR mg -PL -ik -CU -ya -fX -rY -Dr -hM -fX -MV -pq -zR +AE +LB +qi +AP +fX +PF +GT +Wn +fX +RY +mO +qg Nd -gW -Dr -YC -Dr -ll -fX -kA -Dr -xN +kf +GT +Yd +GT +iR +fX +vs +GT +LY oM -Xi -NC -YC -kW +bZ +XG +Yd +lk vN -Dn -al -Dr -Xt +Op +QE +GT +uQ dx Ux "} (19,1,1) = {" lY -ck +ue fX yD xZ zD fX -hK -rF -id +HT +IG +Yo fX -kA -Bx -lI +vs +Cx +wt fX -wa -Jt -al +nK +gM +QE Nd -Rd -Dr -al -WU -ob -fX -kA -Bx -lI +Wy +GT +QE +jS +UQ +fX +vs +Cx +wt oM -Gz -NC -in -bk +Zj +XG +rG +Ir vN -zS -al -dE -Im +tf +QE +ir +fS dx Ux "} @@ -4968,35 +3940,35 @@ fX fX fX fX -cX -kV -cK +Br +Xb +nn fX -kA -Dr -xN +vs +GT +LY fX kO kO -Id +Aw fX -Ai -Dr -al -WU -OE +qN +GT +QE +jS +YA fX -dO -Dr -vP +Dc +GT +mR fX -MQ -De -RQ -Xt +QX +Tp +Md +uQ fX vN -zC +lQ vN fX QT @@ -5004,127 +3976,127 @@ Ux "} (21,1,1) = {" lY -Rb +si fX Jw sr xk fX -ho -kV -lv -fX -On -Dr -xN -fX -Nf -Us -ei -SH -el -Dr -al -pF -Dr -Eg -Dr -NN -al -yp -Dr -WU -al -qF -SH -el -al -Xt +Kb +Xb +ey +fX +sn +GT +LY +fX +vq +KO +Vr +Yg +FM +GT +QE +PS +GT +Xa +GT +nL +QE +CZ +GT +jS +QE +aF +Yg +FM +QE +uQ fX QT Ux "} (22,1,1) = {" QT -Ik -ns +vk +Jf He AR mg -PL -ik -Ub -qV -fX -cz -Dr -xN -fX -gf -Dr -BL -dc -IQ -IQ -cZ -dc -dc -hC -dc -dc -iE -Mn -dc -IQ -iE -Jd -mI -mI -LP -qF -Qk +AE +LB +kT +VS +fX +dW +GT +LY +fX +st +GT +Aa +uj +jI +jI +mC +uj +uj +DM +uj +uj +et +Bp +uj +jI +et +bP +fR +fR +nR +aF +Va dx Ux "} (23,1,1) = {" lY -RB +wl fX HN xZ Yb fX -hK -rF -id -fX -er -Dr -hM -fX -TL -Gb -Dr -Dr -Dr -Dr -Dr -dE -kq -fX -AH -Dr -la -fX -iP -pF -al -ek -ou -Kg -WW -WU -oX +HT +IG +Yo +fX +Qu +GT +Wn +fX +no +dv +GT +GT +GT +GT +GT +ir +fV +fX +FS +GT +RS +fX +XI +PS +QE +sJ +WB +bx +cB +jS +ie dx Ux "} @@ -5136,56 +4108,56 @@ fX fX fX fX -cX -kV -uX +Br +Xb +fx fX -QI -Bx -lI +OF +Cx +wt fX fX -oT -Gg -MA -Si -Gg -eX -Tx +Ll +OH +An +Fy +OH +lW +Gn fX fX -kA -Bx -lI +vs +Cx +wt oM -iU -Dr -in -ek -SJ -Rv -WW -WU -wU +Oz +GT +rG +sJ +rH +jM +cB +jS +Mu dx Ux "} (25,1,1) = {" lY -ZV +kL fX Jw aG Yb fX -ho -kV -MW +Kb +Xb +mK fX -tc -NN -Zt -td +wL +nL +OM +zB fX sX sX @@ -5195,103 +4167,103 @@ sX sX sX fX -fD -UV -WU -Hh +Fc +Yu +jS +Di oM -ka -Dr -ZU -ek -Dk -Le -WW -WU -Oo +vD +GT +yk +sJ +iQ +Vv +cB +jS +mm dx Ux "} (26,1,1) = {" QT -Ik -ns +vk +Jf He AR mg -PL -ik -bp -Wj -fX -OY -Dr -al -fC -cq -hG -hG -hG -jK -hG -hG -hG -cq -UV -Dr -rK -TW +AE +LB +QM +jp +fX +oA +GT +QE +Sd +rj +DJ +DJ +DJ +jt +DJ +DJ +DJ +rj +Yu +GT +nU +gF oM -lS -Gb -Dr -qF -Us -Us -el -dE -AQ +xV +dv +GT +aF +KO +KO +FM +ir +Et dx Ux "} (27,1,1) = {" lY -ck +ue fX lq xZ DF fX -hK -rF -id -fX -XD -Dr -Ot -iJ -QR -pv -dc -iJ -sq -If -dc -pv -Jr -If -dc -eQ -dz -fX -fX -nY -nb -nb -nb -Gg -eX -ab +HT +IG +Yo +fX +DI +GT +PY +kb +Fd +ij +uj +kb +rt +QY +uj +ij +pZ +QY +uj +EO +xQ +fX +fX +Aj +fn +fn +fn +OH +lW +CP fX QT Ux @@ -5304,26 +4276,26 @@ fX fX fX fX -cX -BM -cK +Br +YR +nn fX -rY -bG -Rj -mE +PF +xl +xp +tV fX -fe -KC +Jn +Ky RL RL RL -xD -Zu +OZ +Mr fX fX -WU -vb +jS +ch fX fX fX @@ -5340,60 +4312,60 @@ Ux "} (29,1,1) = {" lY -Rb +si fX Jw tW Xj fX -ho -kV -gL +Kb +Xb +IM fX -kA -RZ -Je +vs +SF +xS fX fX NR He fl -Yb +TI fl He Pk fX fX -Dr -bV -og -Vp -Vp -yH -Ud -vU -gC -zT -jm -RE -pB +GT +Rk +Lp +fJ +fJ +vu +sa +fm +Uw +fr +zk +Cp +mZ QT Ux "} (30,1,1) = {" QT -Ik -ns +vk +Jf He AR mg -PL -Lz -Ta -qV +AE +VM +Km +VS fX fX -fI +Ul fX fX Xx @@ -5406,37 +4378,37 @@ He VJ SM fX -WU -pc -kM -KM -uE -Sr -pv -pY -Er -OG -OG -OG -OG +jS +Zv +HB +cj +iX +gr +ij +gy +fL +Zp +Zp +Zp +Zp lY Ux "} (31,1,1) = {" lY -RB +wl fX lq xZ DF fX -sB -WE -KF +Ed +Lh +MX fX -YN -al -Dr +jA +QE +GT tR QV He @@ -5448,19 +4420,19 @@ ro VJ sM fX -Dr -Oj -pf -Qr -nw -XQ -in -Xs -Pc -FA -gK -Nr -gK +GT +zX +Lg +gI +HU +mL +rG +GB +Gr +gO +FX +iy +FX lY Ux "} @@ -5472,13 +4444,13 @@ fX fX fX fX -Bu -SY -El +pG +QD +LE fX -AY -sy -Dr +DG +FZ +GT BT YB He @@ -5490,18 +4462,18 @@ iw VJ bv fX -uw -zN -XR -Uu -Uu -lH -al -DZ -Fs -OG -OG -Xh +Ql +mr +Oh +eK +eK +DE +QE +RC +zr +Zp +Zp +FY QT QT Ux @@ -5509,14 +4481,14 @@ Ux (33,1,1) = {" Ux QT -EW -tX -tX -tX -tX -gm -tX -nQ +JJ +Ep +Ep +Ep +Ep +Qi +Ep +Sm fX fX fX @@ -5525,7 +4497,7 @@ BT WD He Yb -SE +VN aG Ju Yb @@ -5538,12 +4510,12 @@ fX fX fX fX -OD -Pc -FA -Np -gK -wE +CQ +Gr +gO +lZ +FX +RO lY Ux Ux @@ -5551,18 +4523,18 @@ Ux (34,1,1) = {" Ux QT -Ku -ZX -lw -lw -lw -cm -VA -zI -fX -nT -Ls -DO +tj +lf +Co +Co +Co +mf +Ce +fM +fX +xH +bs +eY BT je He @@ -5574,18 +4546,18 @@ sO su sH fX -eh -mv -mv -cW -Bz -Gs -EG -pE -Vp -Vp -Vp -yH +zJ +OQ +OQ +TD +jN +Dt +kB +gu +fJ +fJ +fJ +vu lY Ux Ux @@ -5594,17 +4566,17 @@ Ux Ux QT QT -dy -iT -Oq -ha -Xo -gm -Jy -fX -kF -SI -NO +vS +Fa +uP +hB +Vn +Qi +Ci +fX +pO +Mi +Ew fX Cv He @@ -5616,17 +4588,17 @@ He He DT fX -Qb -RG -RG -kr -WU -Dr -Pc -bw -gK -gK -gq +aa +jG +jG +kh +jS +GT +Gr +ss +FX +FX +lc QT QT Ux @@ -5641,12 +4613,12 @@ lY lY lY QT -Zl +gt fX fX -Cm -SI -DL +Sg +Mi +AC fX fX fX @@ -5658,10 +4630,10 @@ fX fX fX fX -jE -RG -RG -rc +Uz +jG +jG +ZJ fX fX fX @@ -5683,30 +4655,30 @@ Ux Ux Ux QT -vW -tX -fX -Cm -SI -YC -mV -xE -gh -Iv -FO -gh -FO -Iv -gh -FO -Cw -kr -RG -RG -nI -Uk -IB -Cy +ov +Ep +fX +Sg +Mi +Yd +xC +Cf +qj +oy +Wg +qj +Wg +oy +qj +Wg +Ej +kh +jG +jG +hj +wI +gV +bQ QT Ux Ux @@ -5725,14 +4697,14 @@ Ux Ux Ux QT -uR -Hr -fX -DL -Qc -qv -IQ -Kd +hq +qQ +fX +AC +Uq +ID +jI +yc LF LF LF @@ -5741,14 +4713,14 @@ LF LF LF LF -Ov -lo -cr -cr -rD -fX -YZ -ck +dY +CJ +gc +gc +Jl +fX +mD +ue QT Ux Ux @@ -5775,14 +4747,14 @@ QT QT QT QT -vX -lT -SO -vX -lT -vX -lT -SO +Ht +Sq +HS +Ht +Sq +Ht +Sq +HS QT QT QT diff --git a/maps/tutorial/tutorial_12x12.dmm b/maps/tutorial/tutorial_12x12.dmm new file mode 100644 index 0000000000..a682957ea7 --- /dev/null +++ b/maps/tutorial/tutorial_12x12.dmm @@ -0,0 +1,180 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/almayer/outer, +/area/misc/tutorial) +"z" = ( +/turf/open/floor/almayer, +/area/misc/tutorial) +"R" = ( +/obj/effect/landmark/tutorial_bottom_left, +/turf/open/floor/almayer, +/area/misc/tutorial) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +z +z +z +z +z +z +z +z +z +R +a +"} +(3,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(4,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(5,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(6,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(7,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(8,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(9,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(10,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(11,1,1) = {" +a +z +z +z +z +z +z +z +z +z +z +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/tutorial/tutorial_7x7.dmm b/maps/tutorial/tutorial_7x7.dmm new file mode 100644 index 0000000000..4297ef72ab --- /dev/null +++ b/maps/tutorial/tutorial_7x7.dmm @@ -0,0 +1,75 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/almayer/outer, +/area/misc/tutorial) +"z" = ( +/turf/open/floor/almayer, +/area/misc/tutorial) +"R" = ( +/obj/effect/landmark/tutorial_bottom_left, +/turf/open/floor/almayer, +/area/misc/tutorial) + +(1,1,1) = {" +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +z +z +z +z +R +a +"} +(3,1,1) = {" +a +z +z +z +z +z +a +"} +(4,1,1) = {" +a +z +z +z +z +z +a +"} +(5,1,1) = {" +a +z +z +z +z +z +a +"} +(6,1,1) = {" +a +z +z +z +z +z +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +"} diff --git a/maps/tutorial/tutorial_8x9.dmm b/maps/tutorial/tutorial_8x9.dmm new file mode 100644 index 0000000000..fc0cdd7a3e --- /dev/null +++ b/maps/tutorial/tutorial_8x9.dmm @@ -0,0 +1,100 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/almayer/outer, +/area/misc/tutorial) +"z" = ( +/turf/open/floor/almayer, +/area/misc/tutorial) +"R" = ( +/obj/effect/landmark/tutorial_bottom_left, +/turf/open/floor/almayer, +/area/misc/tutorial) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +z +z +z +z +z +z +R +a +"} +(3,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(4,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(5,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(6,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(7,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/tutorial/tutorial_8x9_nb.dmm b/maps/tutorial/tutorial_8x9_nb.dmm new file mode 100644 index 0000000000..2e03d5162f --- /dev/null +++ b/maps/tutorial/tutorial_8x9_nb.dmm @@ -0,0 +1,100 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/almayer/outer, +/area/misc/tutorial/no_baselight) +"z" = ( +/turf/open/floor/almayer, +/area/misc/tutorial/no_baselight) +"R" = ( +/obj/effect/landmark/tutorial_bottom_left, +/turf/open/floor/almayer, +/area/misc/tutorial/no_baselight) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +z +z +z +z +z +z +R +a +"} +(3,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(4,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(5,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(6,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(7,1,1) = {" +a +z +z +z +z +z +z +z +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/tutorial/tutorial_reqs_line.dmm b/maps/tutorial/tutorial_reqs_line.dmm new file mode 100644 index 0000000000..cdbe225c1f --- /dev/null +++ b/maps/tutorial/tutorial_reqs_line.dmm @@ -0,0 +1,180 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/almayer/outer, +/area/misc/tutorial) +"c" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1; + req_one_access = null + }, +/turf/open/floor/almayer, +/area/misc/tutorial) +"l" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/west, +/area/misc/tutorial) +"m" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/green/west, +/area/misc/tutorial) +"n" = ( +/obj/structure/surface/table/almayer{ + breakable = 0; + throwpass = 0; + climbable = 0; + indestructible = 1; + density = 0 + }, +/obj/structure/blocker/forcefield/human/bulletproof{ + visible = 0 + }, +/turf/open/floor/almayer, +/area/misc/tutorial) +"w" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/almayer, +/area/misc/tutorial) +"x" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/green/east, +/area/misc/tutorial) +"y" = ( +/obj/structure/machinery/line_nexter, +/turf/open/floor/almayer/green/east, +/area/misc/tutorial) +"E" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/misc/tutorial) +"J" = ( +/obj/item/toy/bikehorn/rubberducky{ + name = "Quackers"; + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!" + }, +/obj/effect/landmark/tutorial/reqs_line_cleaner, +/turf/open/floor/almayer, +/area/misc/tutorial) +"K" = ( +/turf/open/floor/almayer, +/area/misc/tutorial) +"N" = ( +/obj/effect/landmark/tutorial_bottom_left, +/turf/open/floor/almayer, +/area/misc/tutorial) +"X" = ( +/obj/structure/sign/ROsign{ + layer = 3 + }, +/turf/closed/wall/almayer, +/area/misc/tutorial) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +K +K +K +K +K +K +K +a +N +a +"} +(3,1,1) = {" +a +J +X +y +x +x +x +x +a +K +a +"} +(4,1,1) = {" +a +a +K +n +w +a +a +a +a +c +a +"} +(5,1,1) = {" +a +a +K +E +l +l +m +m +K +K +a +"} +(6,1,1) = {" +a +a +K +K +K +K +K +K +K +K +a +"} +(7,1,1) = {" +a +a +a +K +K +K +K +K +K +K +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/nano/templates/chem_simulator.tmpl b/nano/templates/chem_simulator.tmpl deleted file mode 100644 index 47057f13bf..0000000000 --- a/nano/templates/chem_simulator.tmpl +++ /dev/null @@ -1,366 +0,0 @@ - -
          -
          - STATUS: {{:data.status_bar}} -
          - RESEARCH CREDITS: {{:data.rsc_credits}} -
          - {{if data.mode == 4 }} - CREATION NAME: {{:data.creation_name}}
          - CREATION COST: {{:data.creation_cost}}
          - ESTIMATED OVERDOSE LVL: {{:data.od_lvl}} UNITS - {{else}} - {{if data.target }} - TARGET DATA: {{:data.target}} - {{else}} - TARGET DATA: NOT FOUND - {{/if}} -
          - {{if data.reference }} - REFERENCE DATA: {{:data.reference}} - {{else}} - REFERENCE DATA: NOT FOUND - {{/if}} -
          - ESTIMATED OVERDOSE LVL: {{:data.od_lvl}} UNITS - {{/if}} -
          - {{if data.simulating }} - - {{else}} - - {{/if}} - -
          -
          -
          - {{if data.mode != 4 }} -
          - {{if data.target_property}} -

          {{:data.property_codings[data.target_property]}} - {{:data.target_property}}

          -

          - {{:data.target_info}} -
          Type: {{:data.target_categories}} -
          Research Cost: {{:data.property_costs[data.target_property]}} -

          - {{/if}} -
          -
          -

          Target Properties

          - {{if data.target}} - {{if data.target_property_list }} -
          - {{props data.target_property_list :level:property}} - {{:helper.link('' + data.property_codings[property] + ' Level ' + level + '', null, {'set_target' : property}, (data.target_property == property) ? 'selected' : null, 'propbutton')}} - {{/props}} -
          - {{else}} - PROPERTIES CAN NOT BE SIMULATED - {{/if}} - {{/if}} -
          - {{else}} -
          -
          - {{if data.complexity_editor }} - {{:helper.link(data.complexity[0], 'gear', {'set_complexity' : 1}, null, 'menubutton templateButton')}} - {{:helper.link(data.complexity[1], 'gear', {'set_complexity' : 2}, null, 'menubutton templateButton')}} - {{:helper.link(data.complexity[2], 'gear', {'set_complexity' : 3}, null, 'menubutton templateButton')}} - {{else}} - {{:helper.link('SET LVL', 'gear', {'set_level' : 1}, (data.target_property && data.property_data_list[data.target_property] >= 1) ? null : 'disabled', 'menubutton templateButton')}} - {{:helper.link('SET NAME', 'gear', {'set_name' : 1}, null, 'templateButton')}} - {{:helper.link('SET OD', 'gear', {'set_od' : 1}, null, 'templateButton')}} - {{props data.template_filter :setting:configuration}} - {{if setting[0] == 1 }} - {{:helper.link(configuration, null, {'set_filter' : configuration, 'config_value' : setting[1]}, null, 'modebutton templateButton enabled')}} - {{else}} - {{:helper.link(configuration, null, {'set_filter' : configuration, 'config_value' : setting[1]}, null, 'modebutton templateButton')}} - {{/if}} - {{/props}} - {{/if}} -
          -
          - {{props data.property_data_list :level:property}} - {{if data.target_property == property}} - {{if level > 0 }} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp targetedEnabled')}} - {{else}} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp targetedDisabled')}} - {{/if}} - {{else}} - {{if level > 0 }} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp')}} - {{else}} - {{:helper.link(data.property_codings[property] + ' ' + level, null, {'set_target' : property}, null, 'propbutton templateProp disabled')}} - {{/if}} - {{/if}} - {{/props}} -
          -
          - {{/if}} -
          -
          - {{if data.mode == 3 }} -
          - {{if data.reference_property }} -

          {{:data.property_codings[data.reference_property]}} - {{:data.reference_property}}

          -

          - {{:data.reference_info}} -
          Type: {{:data.reference_categories}} -

          - {{/if}} -
          -
          -

          Reference Properties

          - {{if data.reference}} - {{if data.reference_property_list }} -
          - {{props data.reference_property_list :level:property}} - {{:helper.link('' + data.property_codings[property] + ' Level ' + level + '', null, {'set_reference' : property}, (data.reference_property == property) ? 'selected' : null, 'propbutton')}} - {{/props}} -
          - {{else}} - PROPERTIES CAN NOT BE SIMULATED - {{/if}} - {{/if}} -
          - {{else}} - {{if data.mode == 4 }} -
          - {{if data.target_property}} -

          {{:data.property_codings[data.target_property]}} - {{:data.target_property}}

          -

          - {{:data.target_info}} -
          Type: {{:data.target_categories}} -
          Value per level: {{:data.property_costs[data.target_property]}} -

          - {{/if}} -
          - {{/if}} - {{/if}} -
          -
          diff --git a/rust_g.dll b/rust_g.dll index 72a27df144..d3aebf7121 100644 Binary files a/rust_g.dll and b/rust_g.dll differ diff --git a/sound/ATTRIBUTION.txt b/sound/ATTRIBUTION.txt new file mode 100644 index 0000000000..03dd02d49d --- /dev/null +++ b/sound/ATTRIBUTION.txt @@ -0,0 +1,3 @@ +giant_lizard_growl1.ogg, giant_lizard_growl2.ogg by D.jones -- https://freesound.org/s/527844/ -- License: Creative Commons 0 +giant_lizard_death.wav by craigsmith -- https://freesound.org/s/437933/ -- License: Creative Commons 0 +giant_lizard_hiss1.ogg, giant_lizard_hiss2.ogg by ZapSplat -- https://www.zapsplat.com/sound-effect-category/alligators-and-crocodiles/ -- License: ZapSplat Standard License diff --git a/sound/effects/.wav b/sound/effects/.wav new file mode 100644 index 0000000000..a5aa273379 Binary files /dev/null and b/sound/effects/.wav differ diff --git a/sound/effects/data-transmission.ogg b/sound/effects/data-transmission.ogg new file mode 100644 index 0000000000..b2e74acdb8 Binary files /dev/null and b/sound/effects/data-transmission.ogg differ diff --git a/sound/effects/dropship_crash.ogg b/sound/effects/dropship_crash.ogg index ec552ce5b1..880777a412 100644 Binary files a/sound/effects/dropship_crash.ogg and b/sound/effects/dropship_crash.ogg differ diff --git a/sound/effects/flag_lowering.ogg b/sound/effects/flag_lowering.ogg new file mode 100644 index 0000000000..d514e09791 Binary files /dev/null and b/sound/effects/flag_lowering.ogg differ diff --git a/sound/effects/flag_raised.ogg b/sound/effects/flag_raised.ogg new file mode 100644 index 0000000000..5da7eca55a Binary files /dev/null and b/sound/effects/flag_raised.ogg differ diff --git a/sound/effects/flag_raising.ogg b/sound/effects/flag_raising.ogg new file mode 100644 index 0000000000..cc2770f2ec Binary files /dev/null and b/sound/effects/flag_raising.ogg differ diff --git a/sound/effects/flag_upp_warcry.ogg b/sound/effects/flag_upp_warcry.ogg new file mode 100644 index 0000000000..589274ffb8 Binary files /dev/null and b/sound/effects/flag_upp_warcry.ogg differ diff --git a/sound/effects/flag_upp_warcry_extra.ogg b/sound/effects/flag_upp_warcry_extra.ogg new file mode 100644 index 0000000000..5ac6ff51e0 Binary files /dev/null and b/sound/effects/flag_upp_warcry_extra.ogg differ diff --git a/sound/effects/flag_warcry_ua.ogg b/sound/effects/flag_warcry_ua.ogg new file mode 100644 index 0000000000..eb0ddecc66 Binary files /dev/null and b/sound/effects/flag_warcry_ua.ogg differ diff --git a/sound/effects/flag_warcry_ua_extra.ogg b/sound/effects/flag_warcry_ua_extra.ogg new file mode 100644 index 0000000000..c723cca446 Binary files /dev/null and b/sound/effects/flag_warcry_ua_extra.ogg differ diff --git a/sound/effects/giant_lizard_death.ogg b/sound/effects/giant_lizard_death.ogg new file mode 100644 index 0000000000..fe8cf05dc1 Binary files /dev/null and b/sound/effects/giant_lizard_death.ogg differ diff --git a/sound/effects/giant_lizard_growl1.ogg b/sound/effects/giant_lizard_growl1.ogg new file mode 100644 index 0000000000..7dfd52b211 Binary files /dev/null and b/sound/effects/giant_lizard_growl1.ogg differ diff --git a/sound/effects/giant_lizard_growl2.ogg b/sound/effects/giant_lizard_growl2.ogg new file mode 100644 index 0000000000..00d85d78ec Binary files /dev/null and b/sound/effects/giant_lizard_growl2.ogg differ diff --git a/sound/effects/giant_lizard_hiss1.ogg b/sound/effects/giant_lizard_hiss1.ogg new file mode 100644 index 0000000000..105a0edb6d Binary files /dev/null and b/sound/effects/giant_lizard_hiss1.ogg differ diff --git a/sound/effects/giant_lizard_hiss2.ogg b/sound/effects/giant_lizard_hiss2.ogg new file mode 100644 index 0000000000..5a0d143ef1 Binary files /dev/null and b/sound/effects/giant_lizard_hiss2.ogg differ diff --git a/sound/effects/incoming-fax.ogg b/sound/effects/incoming-fax.ogg new file mode 100644 index 0000000000..fccb343563 Binary files /dev/null and b/sound/effects/incoming-fax.ogg differ diff --git a/sound/effects/revive_notify.ogg b/sound/effects/revive_notify.ogg new file mode 100644 index 0000000000..d155f34518 Binary files /dev/null and b/sound/effects/revive_notify.ogg differ diff --git a/sound/effects/sebb.ogg b/sound/effects/sebb.ogg new file mode 100644 index 0000000000..5fd1f5b396 Binary files /dev/null and b/sound/effects/sebb.ogg differ diff --git a/sound/effects/sebb_beep.ogg b/sound/effects/sebb_beep.ogg new file mode 100644 index 0000000000..16c9347d0b Binary files /dev/null and b/sound/effects/sebb_beep.ogg differ diff --git a/sound/effects/sebb_explode.ogg b/sound/effects/sebb_explode.ogg new file mode 100644 index 0000000000..999385d9f0 Binary files /dev/null and b/sound/effects/sebb_explode.ogg differ diff --git a/sound/effects/throwing/swoosh1.ogg b/sound/effects/throwing/swoosh1.ogg new file mode 100644 index 0000000000..dd8a80a107 Binary files /dev/null and b/sound/effects/throwing/swoosh1.ogg differ diff --git a/sound/effects/throwing/swoosh2.ogg b/sound/effects/throwing/swoosh2.ogg new file mode 100644 index 0000000000..012a3672b7 Binary files /dev/null and b/sound/effects/throwing/swoosh2.ogg differ diff --git a/sound/effects/throwing/swoosh3.ogg b/sound/effects/throwing/swoosh3.ogg new file mode 100644 index 0000000000..52cc1aa164 Binary files /dev/null and b/sound/effects/throwing/swoosh3.ogg differ diff --git a/sound/effects/throwing/swoosh4.ogg b/sound/effects/throwing/swoosh4.ogg new file mode 100644 index 0000000000..2639b4f255 Binary files /dev/null and b/sound/effects/throwing/swoosh4.ogg differ diff --git a/sound/items/megaphone.ogg b/sound/items/megaphone.ogg new file mode 100644 index 0000000000..31d7a8d1ad Binary files /dev/null and b/sound/items/megaphone.ogg differ diff --git a/sound/machines/pda_ping.ogg b/sound/machines/pda_ping.ogg new file mode 100644 index 0000000000..2f3135bc3c Binary files /dev/null and b/sound/machines/pda_ping.ogg differ diff --git a/sound/machines/telephone/dial.ogg b/sound/machines/telephone/dial.ogg new file mode 100644 index 0000000000..0dffcc34cc Binary files /dev/null and b/sound/machines/telephone/dial.ogg differ diff --git a/sound/machines/telephone/phone_busy.ogg b/sound/machines/telephone/phone_busy.ogg new file mode 100644 index 0000000000..3ddb26e62c Binary files /dev/null and b/sound/machines/telephone/phone_busy.ogg differ diff --git a/sound/machines/telephone/remote_hangup.ogg b/sound/machines/telephone/remote_hangup.ogg new file mode 100644 index 0000000000..f646548a5e Binary files /dev/null and b/sound/machines/telephone/remote_hangup.ogg differ diff --git a/sound/machines/telephone/remote_pickup.ogg b/sound/machines/telephone/remote_pickup.ogg new file mode 100644 index 0000000000..7d2cb8297c Binary files /dev/null and b/sound/machines/telephone/remote_pickup.ogg differ diff --git a/sound/machines/telephone/ring_outgoing.ogg b/sound/machines/telephone/ring_outgoing.ogg new file mode 100644 index 0000000000..67db23c49b Binary files /dev/null and b/sound/machines/telephone/ring_outgoing.ogg differ diff --git a/sound/machines/telephone/talk_phone1.ogg b/sound/machines/telephone/talk_phone1.ogg new file mode 100644 index 0000000000..53a665a389 Binary files /dev/null and b/sound/machines/telephone/talk_phone1.ogg differ diff --git a/sound/machines/telephone/talk_phone2.ogg b/sound/machines/telephone/talk_phone2.ogg new file mode 100644 index 0000000000..e0b39b36b8 Binary files /dev/null and b/sound/machines/telephone/talk_phone2.ogg differ diff --git a/sound/machines/telephone/talk_phone3.ogg b/sound/machines/telephone/talk_phone3.ogg new file mode 100644 index 0000000000..abdb73b8a8 Binary files /dev/null and b/sound/machines/telephone/talk_phone3.ogg differ diff --git a/sound/machines/telephone/talk_phone4.ogg b/sound/machines/telephone/talk_phone4.ogg new file mode 100644 index 0000000000..6809d1951c Binary files /dev/null and b/sound/machines/telephone/talk_phone4.ogg differ diff --git a/sound/machines/telephone/talk_phone5.ogg b/sound/machines/telephone/talk_phone5.ogg new file mode 100644 index 0000000000..12b3619103 Binary files /dev/null and b/sound/machines/telephone/talk_phone5.ogg differ diff --git a/sound/machines/telephone/talk_phone6.ogg b/sound/machines/telephone/talk_phone6.ogg new file mode 100644 index 0000000000..b617fbd4b5 Binary files /dev/null and b/sound/machines/telephone/talk_phone6.ogg differ diff --git a/sound/machines/telephone/talk_phone7.ogg b/sound/machines/telephone/talk_phone7.ogg new file mode 100644 index 0000000000..f7055617ef Binary files /dev/null and b/sound/machines/telephone/talk_phone7.ogg differ diff --git a/sound/machines/vending_drop.ogg b/sound/machines/vending_drop.ogg new file mode 100644 index 0000000000..4e0ed7dd6d Binary files /dev/null and b/sound/machines/vending_drop.ogg differ diff --git a/sound/mecha/powerloader_attack.ogg b/sound/mecha/powerloader_attack.ogg index 6cff269d30..6f821f2b0e 100644 Binary files a/sound/mecha/powerloader_attack.ogg and b/sound/mecha/powerloader_attack.ogg differ diff --git a/sound/mecha/powerloader_step.ogg b/sound/mecha/powerloader_step.ogg index af427df865..1f8b4b3c7f 100644 Binary files a/sound/mecha/powerloader_step.ogg and b/sound/mecha/powerloader_step.ogg differ diff --git a/sound/mecha/powerloader_step2.ogg b/sound/mecha/powerloader_step2.ogg index 60aaa6bd34..4edbec2a11 100644 Binary files a/sound/mecha/powerloader_step2.ogg and b/sound/mecha/powerloader_step2.ogg differ diff --git a/sound/mecha/powerloader_turn.ogg b/sound/mecha/powerloader_turn.ogg index bccdc879d0..bb18cdc57e 100644 Binary files a/sound/mecha/powerloader_turn.ogg and b/sound/mecha/powerloader_turn.ogg differ diff --git a/sound/mecha/powerloader_turn2.ogg b/sound/mecha/powerloader_turn2.ogg index c3816df9d9..647dde5aff 100644 Binary files a/sound/mecha/powerloader_turn2.ogg and b/sound/mecha/powerloader_turn2.ogg differ diff --git a/sound/mecha/powerloader_unbuckle.ogg b/sound/mecha/powerloader_unbuckle.ogg index 98e53bfd7d..c70ab4ef77 100644 Binary files a/sound/mecha/powerloader_unbuckle.ogg and b/sound/mecha/powerloader_unbuckle.ogg differ diff --git a/sound/misc/desk_bell.ogg b/sound/misc/desk_bell.ogg new file mode 100644 index 0000000000..c3b143c1a1 Binary files /dev/null and b/sound/misc/desk_bell.ogg differ diff --git a/sound/voice/callstation_unavailable.ogg b/sound/voice/callstation_unavailable.ogg new file mode 100644 index 0000000000..992e87fa57 Binary files /dev/null and b/sound/voice/callstation_unavailable.ogg differ diff --git a/sound/voice/human_male_scream_6.ogg b/sound/voice/human_male_scream_6.ogg new file mode 100644 index 0000000000..0005a26bf7 Binary files /dev/null and b/sound/voice/human_male_scream_6.ogg differ diff --git a/sound/voice/joe/alwaysknow_haz.ogg b/sound/voice/joe/alwaysknow_haz.ogg new file mode 100644 index 0000000000..b6489f72d5 Binary files /dev/null and b/sound/voice/joe/alwaysknow_haz.ogg differ diff --git a/sound/voice/joe/apollo_behalf_haz.ogg b/sound/voice/joe/apollo_behalf_haz.ogg new file mode 100644 index 0000000000..f89225f25e Binary files /dev/null and b/sound/voice/joe/apollo_behalf_haz.ogg differ diff --git a/sound/voice/joe/area_restricted_haz.ogg b/sound/voice/joe/area_restricted_haz.ogg new file mode 100644 index 0000000000..e9e890b721 Binary files /dev/null and b/sound/voice/joe/area_restricted_haz.ogg differ diff --git a/sound/voice/joe/awful_haz.ogg b/sound/voice/joe/awful_haz.ogg new file mode 100644 index 0000000000..71f3e5cd0d Binary files /dev/null and b/sound/voice/joe/awful_haz.ogg differ diff --git a/sound/voice/joe/back_to_work_haz.ogg b/sound/voice/joe/back_to_work_haz.ogg new file mode 100644 index 0000000000..ce5966c71e Binary files /dev/null and b/sound/voice/joe/back_to_work_haz.ogg differ diff --git a/sound/voice/joe/beyond_repair_haz.ogg b/sound/voice/joe/beyond_repair_haz.ogg new file mode 100644 index 0000000000..31a9de1478 Binary files /dev/null and b/sound/voice/joe/beyond_repair_haz.ogg differ diff --git a/sound/voice/joe/breach_haz.ogg b/sound/voice/joe/breach_haz.ogg new file mode 100644 index 0000000000..a6d425c00d Binary files /dev/null and b/sound/voice/joe/breach_haz.ogg differ diff --git a/sound/voice/joe/come_out_vent_haz.ogg b/sound/voice/joe/come_out_vent_haz.ogg new file mode 100644 index 0000000000..8161b4331f Binary files /dev/null and b/sound/voice/joe/come_out_vent_haz.ogg differ diff --git a/sound/voice/joe/could_require_attention_haz.ogg b/sound/voice/joe/could_require_attention_haz.ogg new file mode 100644 index 0000000000..2d997a055d Binary files /dev/null and b/sound/voice/joe/could_require_attention_haz.ogg differ diff --git a/sound/voice/joe/damage_haz.ogg b/sound/voice/joe/damage_haz.ogg new file mode 100644 index 0000000000..3c757f48ea Binary files /dev/null and b/sound/voice/joe/damage_haz.ogg differ diff --git a/sound/voice/joe/dangerous_items_haz.ogg b/sound/voice/joe/dangerous_items_haz.ogg new file mode 100644 index 0000000000..6b1d3f5aef Binary files /dev/null and b/sound/voice/joe/dangerous_items_haz.ogg differ diff --git a/sound/voice/joe/day_never_done_haz.ogg b/sound/voice/joe/day_never_done_haz.ogg new file mode 100644 index 0000000000..3ae295a961 Binary files /dev/null and b/sound/voice/joe/day_never_done_haz.ogg differ diff --git a/sound/voice/joe/detailed_report_haz.ogg b/sound/voice/joe/detailed_report_haz.ogg new file mode 100644 index 0000000000..31d4686a87 Binary files /dev/null and b/sound/voice/joe/detailed_report_haz.ogg differ diff --git a/sound/voice/joe/disturbance_haz.ogg b/sound/voice/joe/disturbance_haz.ogg new file mode 100644 index 0000000000..78f242382b Binary files /dev/null and b/sound/voice/joe/disturbance_haz.ogg differ diff --git a/sound/voice/joe/fire_haz.ogg b/sound/voice/joe/fire_haz.ogg new file mode 100644 index 0000000000..ec1ff9fad9 Binary files /dev/null and b/sound/voice/joe/fire_haz.ogg differ diff --git a/sound/voice/joe/firearm_haz.ogg b/sound/voice/joe/firearm_haz.ogg new file mode 100644 index 0000000000..ff5d19bab9 Binary files /dev/null and b/sound/voice/joe/firearm_haz.ogg differ diff --git a/sound/voice/joe/follow_me_please_haz.ogg b/sound/voice/joe/follow_me_please_haz.ogg new file mode 100644 index 0000000000..9d39bb8d16 Binary files /dev/null and b/sound/voice/joe/follow_me_please_haz.ogg differ diff --git a/sound/voice/joe/good_day_haz.ogg b/sound/voice/joe/good_day_haz.ogg new file mode 100644 index 0000000000..7ec82d9483 Binary files /dev/null and b/sound/voice/joe/good_day_haz.ogg differ diff --git a/sound/voice/joe/health_risks_haz.ogg b/sound/voice/joe/health_risks_haz.ogg new file mode 100644 index 0000000000..76ecf60b23 Binary files /dev/null and b/sound/voice/joe/health_risks_haz.ogg differ diff --git a/sound/voice/joe/how_can_i_help_haz.ogg b/sound/voice/joe/how_can_i_help_haz.ogg new file mode 100644 index 0000000000..d6d28222ef Binary files /dev/null and b/sound/voice/joe/how_can_i_help_haz.ogg differ diff --git a/sound/voice/joe/hysterical_haz.ogg b/sound/voice/joe/hysterical_haz.ogg new file mode 100644 index 0000000000..cd2926fa64 Binary files /dev/null and b/sound/voice/joe/hysterical_haz.ogg differ diff --git a/sound/voice/joe/investigating_disturbance_haz.ogg b/sound/voice/joe/investigating_disturbance_haz.ogg new file mode 100644 index 0000000000..c36bc8ff0f Binary files /dev/null and b/sound/voice/joe/investigating_disturbance_haz.ogg differ diff --git a/sound/voice/joe/irresponsible_haz.ogg b/sound/voice/joe/irresponsible_haz.ogg new file mode 100644 index 0000000000..585d5e6dc7 Binary files /dev/null and b/sound/voice/joe/irresponsible_haz.ogg differ diff --git a/sound/voice/joe/misbehaving_haz.ogg b/sound/voice/joe/misbehaving_haz.ogg new file mode 100644 index 0000000000..f3a49f3527 Binary files /dev/null and b/sound/voice/joe/misbehaving_haz.ogg differ diff --git a/sound/voice/joe/more_pressing_matters_haz.ogg b/sound/voice/joe/more_pressing_matters_haz.ogg new file mode 100644 index 0000000000..e4a2222ba2 Binary files /dev/null and b/sound/voice/joe/more_pressing_matters_haz.ogg differ diff --git a/sound/voice/joe/not_allowed_there_haz.ogg b/sound/voice/joe/not_allowed_there_haz.ogg new file mode 100644 index 0000000000..62804f4498 Binary files /dev/null and b/sound/voice/joe/not_allowed_there_haz.ogg differ diff --git a/sound/voice/joe/not_what_i_think_haz.ogg b/sound/voice/joe/not_what_i_think_haz.ogg new file mode 100644 index 0000000000..f8f640c87d Binary files /dev/null and b/sound/voice/joe/not_what_i_think_haz.ogg differ diff --git a/sound/voice/joe/other_concerns_haz.ogg b/sound/voice/joe/other_concerns_haz.ogg new file mode 100644 index 0000000000..8c24870cfa Binary files /dev/null and b/sound/voice/joe/other_concerns_haz.ogg differ diff --git a/sound/voice/joe/patience_haz.ogg b/sound/voice/joe/patience_haz.ogg new file mode 100644 index 0000000000..3e99f84c5d Binary files /dev/null and b/sound/voice/joe/patience_haz.ogg differ diff --git a/sound/voice/joe/presence_logged_haz.ogg b/sound/voice/joe/presence_logged_haz.ogg new file mode 100644 index 0000000000..df8b5a0cdf Binary files /dev/null and b/sound/voice/joe/presence_logged_haz.ogg differ diff --git a/sound/voice/joe/really_shouldnt_be_here_haz.ogg b/sound/voice/joe/really_shouldnt_be_here_haz.ogg new file mode 100644 index 0000000000..22de4fe8ac Binary files /dev/null and b/sound/voice/joe/really_shouldnt_be_here_haz.ogg differ diff --git a/sound/voice/joe/report_haz.ogg b/sound/voice/joe/report_haz.ogg new file mode 100644 index 0000000000..188042163e Binary files /dev/null and b/sound/voice/joe/report_haz.ogg differ diff --git a/sound/voice/joe/running_accidents_haz.ogg b/sound/voice/joe/running_accidents_haz.ogg new file mode 100644 index 0000000000..adca77ae19 Binary files /dev/null and b/sound/voice/joe/running_accidents_haz.ogg differ diff --git a/sound/voice/joe/safety_breach_haz.ogg b/sound/voice/joe/safety_breach_haz.ogg new file mode 100644 index 0000000000..4111687227 Binary files /dev/null and b/sound/voice/joe/safety_breach_haz.ogg differ diff --git a/sound/voice/joe/safety_haz.ogg b/sound/voice/joe/safety_haz.ogg new file mode 100644 index 0000000000..838abe6813 Binary files /dev/null and b/sound/voice/joe/safety_haz.ogg differ diff --git a/sound/voice/joe/species_haz.ogg b/sound/voice/joe/species_haz.ogg new file mode 100644 index 0000000000..a0bcaebf05 Binary files /dev/null and b/sound/voice/joe/species_haz.ogg differ diff --git a/sound/voice/joe/support_ticket_removed_haz.ogg b/sound/voice/joe/support_ticket_removed_haz.ogg new file mode 100644 index 0000000000..db6e2dc69e Binary files /dev/null and b/sound/voice/joe/support_ticket_removed_haz.ogg differ diff --git a/sound/voice/joe/temperatures_haz.ogg b/sound/voice/joe/temperatures_haz.ogg new file mode 100644 index 0000000000..5d1a4a952d Binary files /dev/null and b/sound/voice/joe/temperatures_haz.ogg differ diff --git a/sound/voice/joe/that_stings_haz.ogg b/sound/voice/joe/that_stings_haz.ogg new file mode 100644 index 0000000000..f88468d260 Binary files /dev/null and b/sound/voice/joe/that_stings_haz.ogg differ diff --git a/sound/voice/joe/this_is_futile_haz.ogg b/sound/voice/joe/this_is_futile_haz.ogg new file mode 100644 index 0000000000..3d371cc9fc Binary files /dev/null and b/sound/voice/joe/this_is_futile_haz.ogg differ diff --git a/sound/voice/joe/tomorrow_together_haz.ogg b/sound/voice/joe/tomorrow_together_haz.ogg new file mode 100644 index 0000000000..05686c426b Binary files /dev/null and b/sound/voice/joe/tomorrow_together_haz.ogg differ diff --git a/sound/voice/joe/unprotected_flames_haz.ogg b/sound/voice/joe/unprotected_flames_haz.ogg new file mode 100644 index 0000000000..8b2df7a389 Binary files /dev/null and b/sound/voice/joe/unprotected_flames_haz.ogg differ diff --git a/sound/voice/joe/what_happened_to_you_haz.ogg b/sound/voice/joe/what_happened_to_you_haz.ogg new file mode 100644 index 0000000000..db90ec8119 Binary files /dev/null and b/sound/voice/joe/what_happened_to_you_haz.ogg differ diff --git a/sound/voice/joe/what_is_this_haz.ogg b/sound/voice/joe/what_is_this_haz.ogg new file mode 100644 index 0000000000..27aedef9f2 Binary files /dev/null and b/sound/voice/joe/what_is_this_haz.ogg differ diff --git a/sound/voice/joe/with_you_shortly_haz.ogg b/sound/voice/joe/with_you_shortly_haz.ogg new file mode 100644 index 0000000000..5f7a669c38 Binary files /dev/null and b/sound/voice/joe/with_you_shortly_haz.ogg differ diff --git a/sound/voice/larva_talk1.ogg b/sound/voice/larva_talk1.ogg new file mode 100644 index 0000000000..8e8a212d4d Binary files /dev/null and b/sound/voice/larva_talk1.ogg differ diff --git a/sound/voice/larva_talk2.ogg b/sound/voice/larva_talk2.ogg new file mode 100644 index 0000000000..e59f0e6932 Binary files /dev/null and b/sound/voice/larva_talk2.ogg differ diff --git a/sound/voice/larva_talk3.ogg b/sound/voice/larva_talk3.ogg new file mode 100644 index 0000000000..c784490fff Binary files /dev/null and b/sound/voice/larva_talk3.ogg differ diff --git a/sound/voice/larva_talk4.ogg b/sound/voice/larva_talk4.ogg new file mode 100644 index 0000000000..cbb9b01d24 Binary files /dev/null and b/sound/voice/larva_talk4.ogg differ diff --git a/sound/weapons/gun_44mag_v4.ogg b/sound/weapons/gun_44mag_v4.ogg new file mode 100644 index 0000000000..6c1ad1b32e Binary files /dev/null and b/sound/weapons/gun_44mag_v4.ogg differ diff --git a/sound/weapons/gun_shotgun_xm51.ogg b/sound/weapons/gun_shotgun_xm51.ogg new file mode 100644 index 0000000000..0b0f94e49c Binary files /dev/null and b/sound/weapons/gun_shotgun_xm51.ogg differ diff --git a/sound/weapons/gun_vulture_mark.ogg b/sound/weapons/gun_vulture_mark.ogg new file mode 100644 index 0000000000..6c7ae7b277 Binary files /dev/null and b/sound/weapons/gun_vulture_mark.ogg differ diff --git a/sound/weapons/gun_xm88_directhit_high.ogg b/sound/weapons/gun_xm88_directhit_high.ogg new file mode 100644 index 0000000000..6db42f73cf Binary files /dev/null and b/sound/weapons/gun_xm88_directhit_high.ogg differ diff --git a/sound/weapons/gun_xm88_directhit_low.ogg b/sound/weapons/gun_xm88_directhit_low.ogg new file mode 100644 index 0000000000..c516f4fc26 Binary files /dev/null and b/sound/weapons/gun_xm88_directhit_low.ogg differ diff --git a/sound/weapons/gun_xm88_directhit_medium.ogg b/sound/weapons/gun_xm88_directhit_medium.ogg new file mode 100644 index 0000000000..106fd23cb9 Binary files /dev/null and b/sound/weapons/gun_xm88_directhit_medium.ogg differ diff --git a/sound/weapons/sting_boom_small1.ogg b/sound/weapons/sting_boom_small1.ogg new file mode 100644 index 0000000000..fb02d14a68 Binary files /dev/null and b/sound/weapons/sting_boom_small1.ogg differ diff --git a/strings/fortunes.txt b/strings/fortunes.txt index 31478d7ba3..27f249d0c8 100644 --- a/strings/fortunes.txt +++ b/strings/fortunes.txt @@ -5,6 +5,7 @@ A conclusion is simply the place where you got tired of thinking. A curse on the surface may be a blessing in disguise. A cynic is only a frustrated optimist. A dream is a wish your heart makes. +A friend will bring you a big surprise soon. A golden egg of your opportunity falls into your lap this month. A good gun will never kill anyone on its own. It is the shooter who pulls the trigger. A good leader knows when to shut up and listen. @@ -19,7 +20,7 @@ A true leader looks after their men, not their life. A true soldier dies protecting the ones they care for. A very attractive person will come with a message for you. A well-aimed spear is worth three. -ALl endings are also beginnings. We just don't know it all the time. +All endings are also beginnings. We just don't know it all the time. About time I got out of that cookie. Accept what comes to you each day. Accomplish the tasks you were given, and then you can rest easy. @@ -183,6 +184,7 @@ Luck will shine upon you today. Make happiness a priority, and be gentle with yourself in the process. Make someone laugh today. Make someone smile today. +Make today your day. Man is born to live, but not prepared to live. Many will travel to hear you speak. Man’s mind, once stretched by a new idea, never regains its original dimensions. @@ -377,4 +379,4 @@ Your shoes are dirty. Your shoes are untied. Your talents will be recognized and suitably rewarded. Your work interests can capture the highest status or prestige. -Your worst enemy has a crush on you. \ No newline at end of file +Your worst enemy has a crush on you. diff --git a/strings/marinetips.txt b/strings/marinetips.txt index 2607c986a9..c7bdd5a5e1 100644 --- a/strings/marinetips.txt +++ b/strings/marinetips.txt @@ -67,9 +67,10 @@ You can shoot through tents, but they won't protect you much in return. A ‘point blank’ or ‘PB’ is a type of attack with a firearm where you click directly on a mob next to you. These attacks are not effected by accuracy allowing you to quickly fire with weapons like a shotgun to great effect. If you've been pounced on and your squad is unloading into the target, you can hit the 'rest' button to stay down so you don't get filled with lead after getting up. You can check the landing zone as a marine in the status panel. +A night vision HUD optic can be recharged by removing it with a screwdriver, then placing it into a recharger. You can put a pistol belt on your suit slot. (Just grab a rifle instead.) Alt-clicking the Squad Leader tracker lets you track your Platoon Sergeant instead. -Armor has a randomized reduction in effectiveness, and does not protect the digits. Take the wiki damage values as a best-case scenario. +Armor consistently protects you from damage to your chest, arms, and legs, but does not protect hands and feet. Take the wiki damage values as a best-case scenario. You can click on your Security Access Tuner (multitool) in your hand to locate the area's APC if there is one. Need help learning the game and these tips aren't enough? Use MentorHelp. Clicking on your sprite with help intent will let you check your body, seeing where your fractures and other wounds are. @@ -81,3 +82,7 @@ You can always multitask as Medic, such as by using pills or healing kits at the The nuclear ordnance requires BOTH communication towers to be actively held to decrypt the nuclear codes. The quick wield keys generally prioritize wieldable gear going from left to right on your inventory bar. Orbital Bombardment warheads respect roofing and hive core protection. They won't hit inside of protected areas. +The Queen can unbolt and break dropship doors by prying them open, even if they are unlocked. Pilots, Dropship Crew Chiefs, Engineers and Synths can repair these doors with a multitool. +If you jump out of a dropship with a parachute on (when there is no paradrop system active), you will land at a random location on the map. +If you push crates out of a dropship when paradropping, it will land near the paradrop drop point. +When paradropping, you can toss any large item (such as a backpack, pouch, or gun) into hyperspace, and it will land near the paradrop drop point. However, smaller items such as flares will not survive the fall. diff --git a/strings/memetips.txt b/strings/memetips.txt index 3a1e4ca710..1f29055ad5 100644 --- a/strings/memetips.txt +++ b/strings/memetips.txt @@ -43,3 +43,4 @@ If it's stupid but it works, it's still stupid and you got lucky. Corroders aren't real. They can't hurt you. You can always bully staff into giving you more awesome tips. Embrace the suck. +Jump out of the Alamo during transit to deploy quicker than other players. diff --git a/strings/operation_prefix.txt b/strings/operation_prefix.txt index c20b08b42d..9edac4ba3e 100644 --- a/strings/operation_prefix.txt +++ b/strings/operation_prefix.txt @@ -114,7 +114,7 @@ Northern Industrial All American Clear -Resolute +Saipan Mutual 101st 13th diff --git a/tgui/packages/tgfont/config.cjs b/tgui/packages/tgfont/config.cjs index 4f6b58f106..73d96ac6ce 100644 --- a/tgui/packages/tgfont/config.cjs +++ b/tgui/packages/tgfont/config.cjs @@ -7,8 +7,12 @@ module.exports = { name: 'tgfont', inputDir: './icons', + normalize: true, outputDir: './dist', fontTypes: ['woff2', 'eot'], assetTypes: ['css'], prefix: 'tg', + formatOptions: { + preserveAspectRatio: true, + }, }; diff --git a/tgui/packages/tgfont/icons/image-minus.svg b/tgui/packages/tgfont/icons/image-minus.svg new file mode 100644 index 0000000000..8c3231917f --- /dev/null +++ b/tgui/packages/tgfont/icons/image-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tgui/packages/tgfont/icons/image-plus.svg b/tgui/packages/tgfont/icons/image-plus.svg new file mode 100644 index 0000000000..1658509429 --- /dev/null +++ b/tgui/packages/tgfont/icons/image-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tgui/packages/tgfont/icons/sound-minus.svg b/tgui/packages/tgfont/icons/sound-minus.svg new file mode 100644 index 0000000000..df51179d4b --- /dev/null +++ b/tgui/packages/tgfont/icons/sound-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tgui/packages/tgfont/icons/sound-plus.svg b/tgui/packages/tgfont/icons/sound-plus.svg new file mode 100644 index 0000000000..c5f40d53b5 --- /dev/null +++ b/tgui/packages/tgfont/icons/sound-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/tgui/packages/tgfont/static/tgfont.css b/tgui/packages/tgfont/static/tgfont.css index 992f088913..49e59cdd69 100644 --- a/tgui/packages/tgfont/static/tgfont.css +++ b/tgui/packages/tgfont/static/tgfont.css @@ -1,7 +1,7 @@ @font-face { font-family: "tgfont"; - src: url("./tgfont.woff2?b809fa4bdd4aff7084540f130e4e524b") format("woff2"), -url("./tgfont.eot?b809fa4bdd4aff7084540f130e4e524b#iefix") format("embedded-opentype"); + src: url("./tgfont.woff2?0843e2c3dacddd319720859dcaeda508") format("woff2"), +url("./tgfont.eot?0843e2c3dacddd319720859dcaeda508#iefix") format("embedded-opentype"); } i[class^="tg-"]:before, i[class*=" tg-"]:before { @@ -15,39 +15,15 @@ i[class^="tg-"]:before, i[class*=" tg-"]:before { -moz-osx-font-smoothing: grayscale; } -.tg-air-tank-slash:before { - content: "\f101"; -} -.tg-air-tank:before { - content: "\f102"; -} -.tg-bad-touch:before { - content: "\f103"; -} .tg-image-minus:before { - content: "\f104"; + content: "\f101"; } .tg-image-plus:before { - content: "\f105"; -} -.tg-nanotrasen-logo:before { - content: "\f106"; -} -.tg-non-binary:before { - content: "\f107"; -} -.tg-prosthetic-full:before { - content: "\f108"; -} -.tg-prosthetic-leg:before { - content: "\f109"; + content: "\f102"; } .tg-sound-minus:before { - content: "\f10a"; + content: "\f103"; } .tg-sound-plus:before { - content: "\f10b"; -} -.tg-syndicate-logo:before { - content: "\f10c"; + content: "\f104"; } diff --git a/tgui/packages/tgfont/static/tgfont.eot b/tgui/packages/tgfont/static/tgfont.eot index e879c327d3..17e3790d02 100644 Binary files a/tgui/packages/tgfont/static/tgfont.eot and b/tgui/packages/tgfont/static/tgfont.eot differ diff --git a/tgui/packages/tgfont/static/tgfont.woff2 b/tgui/packages/tgfont/static/tgfont.woff2 index 6a3be3d2cb..a4cc01a984 100644 Binary files a/tgui/packages/tgfont/static/tgfont.woff2 and b/tgui/packages/tgfont/static/tgfont.woff2 differ diff --git a/tgui/packages/tgui-panel/chat/constants.ts b/tgui/packages/tgui-panel/chat/constants.ts index ac9346d8d5..a9b1634783 100644 --- a/tgui/packages/tgui-panel/chat/constants.ts +++ b/tgui/packages/tgui-panel/chat/constants.ts @@ -24,6 +24,7 @@ export const MESSAGE_TYPE_INTERNAL = 'internal'; export const MESSAGE_TYPE_SYSTEM = 'system'; export const MESSAGE_TYPE_LOCALCHAT = 'localchat'; export const MESSAGE_TYPE_RADIO = 'radio'; +export const MESSAGE_TYPE_HIVEMIND = 'hivemind'; export const MESSAGE_TYPE_INFO = 'info'; export const MESSAGE_TYPE_WARNING = 'warning'; export const MESSAGE_TYPE_HELPFUL = 'helpful'; @@ -39,6 +40,7 @@ export const MESSAGE_TYPE_EVENTCHAT = 'eventchat'; export const MESSAGE_TYPE_ADMINLOG = 'adminlog'; export const MESSAGE_TYPE_ATTACKLOG = 'attacklog'; export const MESSAGE_TYPE_DEBUG = 'debug'; +export const MESSAGE_TYPE_NICHE = 'niche'; // Metadata for each message type export const MESSAGE_TYPES = [ @@ -62,7 +64,13 @@ export const MESSAGE_TYPES = [ type: MESSAGE_TYPE_RADIO, name: 'Radio', description: 'All departments of radio messages', - selector: '.radio, .xeno, .xenoqueen, .xenoleader, .alert, .newscaster', + selector: '.radio, .alert, .newscaster', + }, + { + type: MESSAGE_TYPE_HIVEMIND, + name: 'Hivemind', + description: 'Xenomorph hivemind messages', + selector: '.xeno, .xenoqueen, .xenoleader', }, { type: MESSAGE_TYPE_INFO, @@ -157,4 +165,11 @@ export const MESSAGE_TYPES = [ selector: '.debuginfo', admin: true, }, + { + type: MESSAGE_TYPE_NICHE, + name: 'Niche Log', + description: 'ADMIN NICHE LOG: Urist McTraitor stuttered while saying: Boo', + selector: '.niche', + admin: true, + }, ]; diff --git a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss index 7911f7aec5..020c4b1f72 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss @@ -228,6 +228,7 @@ a.popt { .looc, .adminooc, .admin, +.niche, .medal, .yell { font-weight: bold; @@ -290,6 +291,11 @@ em { font-weight: bold; } +.niche { + color: #5975da; + font-weight: bold; +} + .name { font-weight: bold; } @@ -434,9 +440,9 @@ em { font-weight: bold; } -.minorannounce { +.bigannounce { font-weight: bold; - font-size: 185%; + font-size: 115%; } .greenannounce { @@ -974,10 +980,6 @@ em { color: #844300; } -.sentryradio { - color: #844300; -} - .medradio { color: #008160; } @@ -1038,6 +1040,26 @@ em { color: #3eb489; } +.opforcmd { + color: #68bcec; +} + +.opformed { + color: #52c724; +} + +.opforeng { + color: #e9812d; +} + +.opforcct { + color: #ec3018; +} + +.opforspe { + color: #7221cf; +} + .medium { font-size: 110%; } @@ -1123,7 +1145,7 @@ em { .xenoboldnotice { color: #51a16c; - font-style: italic; + font-weight: bold; } .xenowarning { @@ -1427,6 +1449,14 @@ em { animation: glitch 0.5s infinite; } +.psy_talk { + color: #c400aa; + font-weight: bold; + + /*Animation*/ + animation: psy_glitch 0.5s infinite; +} + /*Keyframes*/ @keyframes glitch { @@ -1451,6 +1481,28 @@ em { } } +@keyframes psy_glitch { + 25% { + color: #c400aa; + transform: translate(-2px, -1px); + } + + 50% { + color: #91007d; + transform: translate(1px, -2px); + } + + 75% { + color: #750066; + transform: translate(-1px, 2px); + } + + 100% { + color: #7c016c; + transform: translate(1px, 1px); + } +} + .examine_block { background: #1b1c1e; border: 1px solid #a4bad6; diff --git a/tgui/packages/tgui-panel/styles/goon/chat-light.scss b/tgui/packages/tgui-panel/styles/goon/chat-light.scss index 48fd3af7f2..78b30f07b2 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-light.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-light.scss @@ -246,6 +246,7 @@ a.popt { .looc, .adminooc, .admin, +.niche, .medal, .yell { font-weight: bold; @@ -308,6 +309,11 @@ em { font-weight: bold; } +.niche { + color: #4473ff; + font-weight: bold; +} + .name { font-weight: bold; } @@ -470,9 +476,9 @@ h2.alert { font-weight: bold; } -.minorannounce { +.bigannounce { font-weight: bold; - font-size: 185%; + font-size: 115%; } .greenannounce { @@ -1066,6 +1072,26 @@ h2.alert { color: #3a7e65; } +.opforcmd { + color: #568dad; +} + +.opformed { + color: #3e921d; +} + +.opforeng { + color: #b16222; +} + +.opforcct { + color: #c42b17; +} + +.opforspe { + color: #611fad; +} + .medium { font-size: 110%; } @@ -1151,7 +1177,7 @@ h2.alert { .xenoboldnotice { color: #2a623d; - font-style: italic; + font-weight: bold; } .xenowarning { @@ -1445,6 +1471,14 @@ h2.alert { animation: glitch 0.5s infinite; } +.psy_talk { + color: #a70090; + font-weight: bold; + + /*Animation*/ + animation: psy_glitch 0.5s infinite; +} + /*Keyframes*/ @keyframes glitch { @@ -1469,6 +1503,28 @@ h2.alert { } } +@keyframes psy_glitch { + 25% { + color: #a70090; + transform: translate(-2px, -1px); + } + + 50% { + color: #91007d; + transform: translate(1px, -2px); + } + + 75% { + color: #750066; + transform: translate(-1px, 2px); + } + + 100% { + color: #7c016c; + transform: translate(1px, 1px); + } +} + .examine_block { background: #f2f7fa; border: 1px solid #111a27; diff --git a/tgui/packages/tgui/constants.ts b/tgui/packages/tgui/constants.ts index b9e711b544..4e332bda69 100644 --- a/tgui/packages/tgui/constants.ts +++ b/tgui/packages/tgui/constants.ts @@ -88,153 +88,233 @@ export const CSS_COLORS = [ export const RADIO_CHANNELS = [ { name: 'Yautja', - freq: 1214, + freq: 1205, color: '#1ecc43', }, { - name: 'PMC', - freq: 1235, + name: "Dutch's Dozen", + freq: 1210, color: '#1ecc43', }, + { + name: 'VAI', + freq: 1215, + color: '#e3580e', + }, + { + name: 'CMB', + freq: 1220, + color: '#1b748c', + }, { name: 'WY', - freq: 1236, - color: '#1ecc43', + freq: 1231, + color: '#fe9b24', }, { - name: "Dutch's Dozen", - freq: 1340, - color: '#1ecc43', + name: 'PMC CMD', + freq: 1232, + color: '#4dc5ce', }, { - name: 'VAI', - freq: 1218, - color: '#1ecc43', + name: 'PMC', + freq: 1233, + color: '#4dc5ce', }, { - name: 'ERT', - freq: 1342, - color: '#1ecc43', + name: 'PMC ENG', + freq: 1234, + color: '#4dc5ce', + }, + { + name: 'PMC MED', + freq: 1235, + color: '#4dc5ce', + }, + { + name: 'PMC CCT', + freq: 1236, + color: '#4dc5ce', + }, + { + name: 'Deathsquad', + freq: 1239, + color: '#fe9b24', }, { name: 'UPP', - freq: 1338, - color: '#1ecc43', + freq: 1251, + color: '#8f4a4b', + }, + { + name: 'UPP CMD', + freq: 1252, + color: '#4a768f', + }, + { + name: 'UPP ENG', + freq: 1253, + color: '#8c5223', + }, + { + name: 'UPP MED', + freq: 1254, + color: '#159e73', + }, + { + name: 'UPP CCT', + freq: 1255, + color: '#b3222e', + }, + { + name: 'UPP KDO', + freq: 1259, + color: '#789e18', }, { name: 'CLF', - freq: 1339, - color: '#1ecc43', + freq: 1271, + color: '#8e83ca', }, { - name: 'Deathsquad', - freq: 1344, + name: 'CLF CMD', + freq: 1272, + color: '#4a768f', + }, + { + name: 'CLF ENG', + freq: 1273, + color: '#8c5223', + }, + { + name: 'CLF MED', + freq: 1274, + color: '#159e73', + }, + { + name: 'CLF CCT', + freq: 1275, + color: '#b3222e', + }, + { + name: 'LSTN BUG A', + freq: 1290, + color: '#d65d95', + }, + { + name: 'LSTN BUG B', + freq: 1291, + color: '#d65d95', + }, + { + name: 'Common', + freq: 1461, color: '#1ecc43', }, { - name: 'ARES', - freq: 1447, + name: 'Colony', + freq: 1469, color: '#1ecc43', }, { name: 'High Command', - freq: 1240, - color: '#1ecc43', + freq: 1471, + color: '#318779', }, { - name: 'CCT', - freq: 1350, - color: '#1ecc43', + name: 'SOF', + freq: 1472, + color: '#318779', + }, + { + name: 'Provost', + freq: 1473, + color: '#9b0612', + }, + { + name: 'Sentry', + freq: 1480, + color: '#844300', }, { name: 'Command', - freq: 1353, - color: '#1ecc43', + freq: 1481, + color: '#779cc2', }, { name: 'Medsci', - freq: 1355, - color: '#1ecc43', + freq: 1482, + color: '#008160', }, { name: 'Engineering', - freq: 1357, - color: '#1ecc43', + freq: 1483, + color: '#a66300', }, { name: 'MP', - freq: 1359, - color: '#1ecc43', + freq: 1484, + color: '#a52929', }, { name: 'Req', - freq: 1354, - color: '#1ecc43', + freq: 1485, + color: '#ba8e41', }, { name: 'JTAC', - freq: 1358, - color: '#1ecc43', + freq: 1486, + color: '#ad3b98', }, { name: 'Intel', - freq: 1356, - color: '#1ecc43', + freq: 1487, + color: '#027d02', }, { name: 'Alamo', - freq: 1441, + freq: 1488, color: '#1ecc43', }, { name: 'Normandy', - freq: 1443, + freq: 1489, color: '#1ecc43', }, { name: 'Alpha', - freq: 1449, - color: '#1ecc43', + freq: 1491, + color: '#db2626', }, { name: 'Bravo', - freq: 1451, - color: '#1ecc43', - }, - { - name: 'Common', - freq: 1461, - color: '#1ecc43', + freq: 1492, + color: '#c68610', }, { - name: 'Colony', - freq: 1469, - color: '#1ecc43', - }, - { - name: 'MARSOC', - freq: 1241, - color: '#1ecc43', + name: 'Charlie', + freq: 1493, + color: '#aa55aa', }, { - name: 'Reserves', - freq: 1457, - color: '#1ecc43', + name: 'Delta', + freq: 1494, + color: '#007fcf', }, { name: 'Echo', - freq: 1456, - color: '#1ecc43', + freq: 1495, + color: '#3eb489', }, { - name: 'Delta', - freq: 1455, - color: '#1ecc43', + name: 'Reserves', + freq: 1496, + color: '#ad6d48', }, { - name: 'Charlie', - freq: 1453, - color: '#1ecc43', + name: 'ARES', + freq: 1500, + color: '#ff00ff', }, ] as const; diff --git a/tgui/packages/tgui/interfaces/AresAdmin.jsx b/tgui/packages/tgui/interfaces/AresAdmin.jsx new file mode 100644 index 0000000000..79a8e83a1f --- /dev/null +++ b/tgui/packages/tgui/interfaces/AresAdmin.jsx @@ -0,0 +1,2237 @@ +import { useBackend } from '../backend'; +import { Box, Button, Flex, Section, Stack } from '../components'; +import { Window } from '../layouts'; + +const PAGES = { + login: () => Login, + main: () => MainMenu, + announcements: () => AnnouncementLogs, + bioscans: () => BioscanLogs, + bombardments: () => BombardmentLogs, + apollo: () => ApolloLog, + access_log: () => AccessLogs, + delete_log: () => DeletionLogs, + flight_log: () => FlightLogs, + talking: () => ARESTalk, + deleted_talks: () => DeletedTalks, + read_deleted: () => ReadingTalks, + security: () => Security, + requisitions: () => Requisitions, + emergency: () => Emergency, + tech_log: () => TechLogs, + core_security: () => CoreSec, + admin_access_log: () => AdminAccessLogs, + access_management: () => AccessManagement, + maintenance_management: () => MaintManagement, +}; + +export const AresAdmin = (props) => { + const { data } = useBackend(); + const { current_menu, sudo } = data; + const PageComponent = PAGES[current_menu](); + + let themecolor = 'crtyellow'; + if (sudo >= 1) { + themecolor = 'crtred'; + } else if (current_menu === 'emergency') { + themecolor = 'crtred'; + } else if (current_menu === 'core_security') { + themecolor = 'crtred'; + } + + return ( + + + + + + ); +}; + +const Login = (props) => { + const { act } = useBackend(); + + return ( + + ARES v3.2 Remote Interface + + WY-DOS Executive + + Version 4.5.2 + Copyright © 2182, Weyland Yutani Corp. + + + + ); +}; + +const MainMenu = (props) => { + const { data, act } = useBackend(); + const { logged_in, access_text, last_page, current_menu, sudo, admin_login } = + data; + + return ( + <> +
          + + +
          + +
          +

          Navigation Menu

          + + + +

          Access Level 1

          +
          + + + + + + +
          + + + +

          Access Level 2

          +
          + + + + + + + + + +
          + + + +

          Access Level 3

          +
          + + + + + + +
          + + + +

          Access Level 5

          +
          + + + + + + + + + +
          + + + +

          Access Level 6

          +
          + + + +
          + + +

          Access Level 9

          +
          + + + + + + +
          + + +

          Maintenance Access

          +
          + {sudo === 0 && ( + + + + )} + {sudo >= 1 && ( + + + + )} +
          +
          +
          +

          Core Security Protocols

          + + + + + +
          +
          + + +

          Remote Admin

          +
          + + + +
          + + +

          ARES Actions

          +
          + + + + + + +
          +
          + + ); +}; + +const AnnouncementLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_announcement, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Announcement Logs

          + + {!!records_announcement.length && ( + + + Time + + + Title + + + Details + + + )} + {records_announcement.map((record, i) => { + return ( + + + {record.time} + + + {record.title} + + + {record.details} + + + + + + ); + })} +
          + + ); +}; + +const BioscanLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_bioscan, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Bioscan Logs

          + + {!!records_bioscan.length && ( + + + Time + + + Title + + + Details + + + )} + {records_bioscan.map((record, i) => { + return ( + + + {record.time} + + + {record.title} + + + {record.details} + + + + + + ); + })} +
          + + ); +}; + +const BombardmentLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_bombardment, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Orbital Bombardment Logs

          + + {!!records_bombardment.length && ( + + + Time + + + Warhead + + + User + + + Details + + + )} + {records_bombardment.map((record, i) => { + return ( + + + {record.time} + + + {record.title} + + {record.user} + + {record.details} + + + + + + ); + })} +
          + + ); +}; + +const ApolloLog = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + apollo_log, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Apollo Log

          + + {apollo_log.map((apollo_message, i) => { + return ( + + {apollo_message} + + ); + })} +
          + + ); +}; + +const AccessLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + access_log, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Access Log

          + + {access_log.map((login, i) => { + return ( + + {login} + + ); + })} +
          + + ); +}; + +const DeletionLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_deletion, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Deletion Log

          + + {!!records_deletion.length && ( + + + Deletion Time + + + Deleted by + + + Title + + + Details + + + )} + {records_deletion.map((record, i) => { + return ( + + + {record.time} + + {record.user} + + {record.title} + + + {record.details} + + + ); + })} +
          + + ); +}; + +const ARESTalk = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + active_convo, + active_ref, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          ARES Communication

          +
          + +
          + {!active_convo.length && ( + + )} + {active_convo.map((message, i) => { + return ( + + {message} + + ); + })} + {!!active_convo.length && ( + + + + + + + + + )} +
          +
          + + act('clear_conversation', { active_convo: active_ref }) + } + disabled={!active_convo.length} + > + Clear Conversation + +
          + + ); +}; + +const DeletedTalks = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + deleted_discussions, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Deletion Log

          + {!!deleted_discussions.length && ( + + + Deletion Time + + + Title + + + Read Record + + + )} + {deleted_discussions.map((record, i) => { + return ( + + + {record.time} + + + {record.title} + + +
          + + ); +}; + +const ReadingTalks = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + deleted_conversation, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Deleted Conversation

          + {deleted_conversation.map((message, i) => { + return ( + + {message} + + ); + })} +
          + + ); +}; + +const Requisitions = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_requisition, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          ASRS Audit Log

          + {!!records_requisition.length && ( + + + Time + + + User + + + Source + + + Order + + + )} + {records_requisition.map((record, i) => { + return ( + + + {record.time} + + + {record.user} + + + {record.title} + + + {record.details} + + + ); + })} +
          + + ); +}; + +const FlightLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_flight, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Flight Control Logs

          + {!!records_flight.length && ( + + + Time + + + User + + + Details + + + )} + {records_flight.map((record, i) => { + return ( + + + {record.time} + + + {record.user} + + + {record.details} + + + act('delete_record', { record: record.ref })} + /> + + + ); + })} +
          + + ); +}; + +const Security = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_security, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Security Updates

          + {!!records_security.length && ( + + + Time + + + Title + + + Details + + + )} + {records_security.map((record, i) => { + return ( + + + {record.time} + + + {record.title} + + + {record.details} + + + + + + ); + })} +
          + + ); +}; + +const Emergency = (props) => { + const { data, act } = useBackend(); + const { logged_in, access_text, last_page, current_menu, admin_login } = data; + + return ( + <> +
          + + +
          + +

          Emergency Protocols

          + + + Call General Quarters + + + Initiate Evacuation + + + Launch Distress Beacon + + + Request Nuclear Device + + + + ); +}; + +const TechLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + records_tech, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Tech Control Logs

          + {!!records_tech.length && ( + + + Time + + + Authenticator + + + Details + + + )} + {records_tech.map((record, i) => { + return ( + + + {record.time} + + + {record.user} + + {!!record.tier_changer && ( + + {record.details} + + )} + {!record.tier_changer && ( + + {record.details} + + )} + + + act('delete_record', { record: record.ref })} + /> + + + ); + })} +
          + + ); +}; + +const CoreSec = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + security_vents, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Core Security Protocols

          +
          +
          +

          Nerve Gas Release

          + {security_vents.map((vent, i) => { + return ( + act('trigger_vent', { vent: vent.ref })} + > + {vent.vent_tag} + + ); + })} +
          + + ); +}; + +// -------------------------------------------------------------------- // +// Anything below this line is exclusive to the Admin Remote Interface. +// -------------------------------------------------------------------- // + +const AdminAccessLogs = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + last_page, + current_menu, + admin_access_log, + admin_login, + } = data; + + return ( + <> +
          + + +
          + +
          +

          Access Log

          + + {admin_access_log.map((login, i) => { + return ( + + {login} + + ); + })} +
          + + ); +}; + +const AccessManagement = (props) => { + const { data, act } = useBackend(); + const { last_page, current_menu, access_tickets, admin_login } = data; + + return ( + <> +
          + + +
          + +
          +

          Access Ticket Management

          + {!!access_tickets.length && ( + + + ID + + + Time + + + Submitter + + + For + + + Reason + + + )} + {access_tickets.map((ticket, i) => { + let can_update = 'Yes'; + if (ticket.lock_status === 'CLOSED') { + can_update = 'No'; + } + let view_status = 'Ticket is pending assignment.'; + let view_icon = 'circle-question'; + let update_tooltip = 'Grant Access'; + if (ticket.status === 'rejected') { + view_status = 'Ticket has been rejected.'; + view_icon = 'circle-xmark'; + update_tooltip = 'Ticket rejected. No further changes possible.'; + } else if (ticket.status === 'cancelled') { + view_status = 'Ticket was cancelled by reporter.'; + view_icon = 'circle-stop'; + update_tooltip = 'Ticket cancelled. No further changes possible.'; + } else if (ticket.status === 'granted') { + view_status = 'Access ticket has been granted.'; + view_icon = 'circle-check'; + update_tooltip = 'Revoke Access'; + } else if (ticket.status === 'revoked') { + view_status = 'Access ticket has been revoked.'; + view_icon = 'circle-minus'; + update_tooltip = 'Access revoked. No further changes possible.'; + } else if (ticket.status === 'returned') { + view_status = 'Access ticket has been returned.'; + view_icon = 'circle-minus'; + update_tooltip = + 'Access self-returned. No further changes possible.'; + } + let can_reject = 'Yes'; + if (can_update === 'No') { + can_reject = 'No'; + } + if (ticket.status !== 'pending') { + can_reject = 'No'; + } + + return ( + + + {ticket.id} + + + {ticket.time} + + + {ticket.submitter} + + + {ticket.title} + + + {ticket.details} + + +
          + + ); +}; + +const MaintManagement = (props) => { + const { data, act } = useBackend(); + const { last_page, current_menu, maintenance_tickets, admin_login } = data; + + return ( + <> +
          + + +
          + +
          +

          Maintenance Reports Management

          + + + + + + {!!maintenance_tickets.length && ( + + + ID + + + Time + + + Category + + + Details + + + Submit By + + + Assigned To + + + )} + {maintenance_tickets.map((ticket, i) => { + let view_status = 'Ticket is pending assignment.'; + let view_icon = 'circle-question'; + if (ticket.status === 'assigned') { + view_status = 'Ticket is assigned.'; + view_icon = 'circle-plus'; + } else if (ticket.status === 'rejected') { + view_status = 'Ticket has been rejected.'; + view_icon = 'circle-xmark'; + } else if (ticket.status === 'cancelled') { + view_status = 'Ticket was cancelled by reporter.'; + view_icon = 'circle-stop'; + } else if (ticket.status === 'completed') { + view_status = 'Ticket has been successfully resolved.'; + view_icon = 'circle-check'; + } + let can_claim = 'Yes'; + if (ticket.lock_status === 'CLOSED') { + can_claim = 'No'; + } + let can_mark = 'Yes'; + if (ticket.lock_status === 'CLOSED') { + can_mark = 'No'; + } + + return ( + + {!!ticket.priority_status && ( + + {ticket.id} + + )} + {!ticket.priority_status && ( + + {ticket.id} + + )} + + {ticket.time} + + {ticket.category} + + {ticket.details} + + + {ticket.submitter} + + + {ticket.assignee} + + +
          + + ); +}; diff --git a/tgui/packages/tgui/interfaces/AresInterface.jsx b/tgui/packages/tgui/interfaces/AresInterface.jsx index 309eb88c9c..e8b565fdaf 100644 --- a/tgui/packages/tgui/interfaces/AresInterface.jsx +++ b/tgui/packages/tgui/interfaces/AresInterface.jsx @@ -1,3 +1,7 @@ +// -------------------------------------------------------------------- // +// Please ensure when updating this menu, changes are reflected in AresAdmin.js +// -------------------------------------------------------------------- // + import { useBackend } from '../backend'; import { Box, Button, Flex, Section, Stack } from '../components'; import { Window } from '../layouts'; @@ -32,10 +36,12 @@ export const AresInterface = (props) => { themecolor = 'crtred'; } else if (current_menu === 'emergency') { themecolor = 'crtred'; + } else if (current_menu === 'core_security') { + themecolor = 'crtred'; } return ( - + @@ -61,7 +67,7 @@ const Login = (props) => { WY-DOS Executive - Version 8.2.3 + Version 8.3.4 Copyright © 2182, Weyland Yutani Corp. - {access_level >= 1 && ( + {access_level >= 2 && ( -

          Access Level 1

          +

          Access Level 2

          + + {!!records_requisition.length && ( { act('delete_record', { record: record.ref })} /> diff --git a/tgui/packages/tgui/interfaces/BugReportForm.tsx b/tgui/packages/tgui/interfaces/BugReportForm.tsx new file mode 100644 index 0000000000..fe0c26035f --- /dev/null +++ b/tgui/packages/tgui/interfaces/BugReportForm.tsx @@ -0,0 +1,217 @@ +import { BooleanLike } from 'common/react'; +import React, { useState } from 'react'; + +import { useBackend } from '../backend'; +import { Flex, Section } from '../components'; +import { ButtonCheckbox } from '../components/Button'; +import { Window } from '../layouts'; +interface FormTypes { + awaiting_admin_approval: BooleanLike; + report_details: FormDetails; +} + +// all the information necessary to pass into the github api +type FormDetails = { + steps: string; + title: string; + description: string; + expected_behavior: string; + admin_note: string; + log: string; +}; + +const InputTitle = (props) => { + return ( +

          + {props.children} + {props.required && {' *'}} +

          + ); +}; + +export const BugReportForm = (props) => { + const { act, data } = useBackend(); + const { awaiting_admin_approval, report_details } = data; + const [checkBox, setCheckbox] = useState(false); + + const [title, setTitle] = useState(report_details?.title || ''); + const [steps, setSteps] = useState(report_details?.steps || ''); + const [description, setDescription] = useState( + report_details?.description || '', + ); + const [expected_behavior, setExpectedBehavior] = useState( + report_details?.expected_behavior || '', + ); + const [admin_note, setAdminNote] = useState(report_details?.admin_note || ''); + const [log, setLog] = useState(report_details?.log || ''); + + const submit = () => { + if (!title || !description || !expected_behavior || !steps || !checkBox) { + alert('Please fill out all required fields!'); + return; + } + const updatedReportDetails = { + title, + steps, + description, + expected_behavior, + admin_note, + log, + }; + act('confirm', updatedReportDetails); + }; + + return ( + + +
          + + + + GitHub Repository + + + +

          + { + 'TIP: please be as descriptive as possible, it really does help tremendously' + } +

          +
          + + {'Title'} + setTitle(e.target.value)} + /> + + + {'Description'} + {'Give a description of the bug'} +
          [tagger_locations[i]][GLOB.tagger_locations[i]]